From cea5497ca2aa602b4753307ac1495f4e0dc1bb74 Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Sat, 19 Sep 2026 09:42:03 -0400 Subject: [PATCH 1/4] bug: fix active stage --- .../tournaments/tournament_current_stage.sql | 30 +++++++++++++++++++ .../default/tables/public_tournaments.yaml | 8 +++++ 2 files changed, 38 insertions(+) create mode 100644 hasura/functions/tournaments/tournament_current_stage.sql diff --git a/hasura/functions/tournaments/tournament_current_stage.sql b/hasura/functions/tournaments/tournament_current_stage.sql new file mode 100644 index 00000000..1e45d5c6 --- /dev/null +++ b/hasura/functions/tournaments/tournament_current_stage.sql @@ -0,0 +1,30 @@ +-- The stage order a viewer should land on: the earliest stage still holding a +-- match to play, else the furthest stage teams reached, else the first stage. +CREATE OR REPLACE FUNCTION public.tournament_current_stage(tournament public.tournaments) +RETURNS integer +LANGUAGE sql STABLE +AS $$ + SELECT COALESCE( + ( + SELECT min(ts."order") + FROM tournament_stages ts + INNER JOIN tournament_brackets tb ON tb.tournament_stage_id = ts.id + WHERE ts.tournament_id = tournament.id + AND tb.finished = false + AND tb.bye = false + AND (tb.tournament_team_id_1 IS NOT NULL OR tb.tournament_team_id_2 IS NOT NULL) + ), + ( + SELECT max(ts."order") + FROM tournament_stages ts + INNER JOIN tournament_brackets tb ON tb.tournament_stage_id = ts.id + WHERE ts.tournament_id = tournament.id + AND (tb.tournament_team_id_1 IS NOT NULL OR tb.tournament_team_id_2 IS NOT NULL) + ), + ( + SELECT min(ts."order") + FROM tournament_stages ts + WHERE ts.tournament_id = tournament.id + ) + ); +$$; diff --git a/hasura/metadata/databases/default/tables/public_tournaments.yaml b/hasura/metadata/databases/default/tables/public_tournaments.yaml index d527f13a..1d56b896 100644 --- a/hasura/metadata/databases/default/tables/public_tournaments.yaml +++ b/hasura/metadata/databases/default/tables/public_tournaments.yaml @@ -174,6 +174,11 @@ computed_fields: function: name: tournament_check_in_started schema: public + - name: current_stage + definition: + function: + name: tournament_current_stage + schema: public - name: has_min_teams definition: function: @@ -369,6 +374,7 @@ select_permissions: - can_review_check_in - missed_check_in_count - registration_unlocked + - current_stage filter: status: _neq: Setup @@ -443,6 +449,7 @@ select_permissions: - can_review_check_in - missed_check_in_count - registration_unlocked + - current_stage filter: _or: - is_organizer: @@ -503,6 +510,7 @@ select_permissions: - can_review_check_in - missed_check_in_count - registration_unlocked + - current_stage filter: _or: - is_organizer: From 72cccb6008241d42201a91323a0c966cc5b998a6 Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Sat, 19 Sep 2026 09:50:46 -0400 Subject: [PATCH 2/4] wip --- .../tournaments/get_team_at_stage_rank.sql | 39 ++++++ test/tournament-current-stage.spec.ts | 126 ++++++++++++++++++ 2 files changed, 165 insertions(+) create mode 100644 hasura/functions/tournaments/get_team_at_stage_rank.sql create mode 100644 test/tournament-current-stage.spec.ts diff --git a/hasura/functions/tournaments/get_team_at_stage_rank.sql b/hasura/functions/tournaments/get_team_at_stage_rank.sql new file mode 100644 index 00000000..e1b837b0 --- /dev/null +++ b/hasura/functions/tournaments/get_team_at_stage_rank.sql @@ -0,0 +1,39 @@ +-- Returns the tournament_team_id of the team ranked `_rank` (1-indexed) within +-- the given stage group, considering only eligible teams (`eligible_at IS NOT +-- NULL`). The tiebreaker chain itself lives in v_team_stage_results so the UI +-- standings and bracket-progression seeding never disagree -- this function +-- just re-ranks within the eligible subset so disqualified teams don't take up +-- a seed slot in the next stage. +CREATE OR REPLACE FUNCTION public.get_team_at_stage_rank( + _stage_id uuid, + _group int, + _rank int +) RETURNS uuid +LANGUAGE plpgsql STABLE +AS $$ +DECLARE + result_team_id uuid; +BEGIN + WITH eligible_ranked AS ( + SELECT + vtsr.tournament_team_id, + vtsr.group_number, + ROW_NUMBER() OVER ( + PARTITION BY vtsr.group_number + ORDER BY vtsr.rank + ) as eligible_rank + FROM v_team_stage_results vtsr + INNER JOIN tournament_teams tt + ON tt.id = vtsr.tournament_team_id + AND tt.eligible_at IS NOT NULL + WHERE vtsr.tournament_stage_id = _stage_id + ) + SELECT tournament_team_id + INTO result_team_id + FROM eligible_ranked + WHERE group_number = _group + AND eligible_rank = _rank; + + RETURN result_team_id; +END; +$$; diff --git a/test/tournament-current-stage.spec.ts b/test/tournament-current-stage.spec.ts new file mode 100644 index 00000000..240462d5 --- /dev/null +++ b/test/tournament-current-stage.spec.ts @@ -0,0 +1,126 @@ +import { PostgresService } from "./../src/postgres/postgres.service"; +import { Fixtures } from "./utils/fixtures"; +import { TournamentFixtures } from "./utils/tournament-fixtures"; +import { + bootMigratedDb, + seedRegionWithServer, + SqlTestDb, +} from "./utils/sql-test-db"; + +// tournament_current_stage: the stage order the tournament page and cards +// land on, walked through a real two-stage playout. +describe("tournament current stage (SQL-driven)", () => { + let db: SqlTestDb; + let postgres: PostgresService; + let fx: Fixtures; + let tfx: TournamentFixtures; + + const TWO_STAGES = [ + { type: "RoundRobin", order: 1, minTeams: 4, maxTeams: 4 }, + { type: "SingleElimination", order: 2, minTeams: 2, maxTeams: 2 }, + ]; + + beforeAll(async () => { + db = await bootMigratedDb("TournamentCurrentStageTest"); + postgres = db.postgres; + fx = new Fixtures(postgres, 76561199310000000n); + tfx = new TournamentFixtures(postgres, fx); + await seedRegionWithServer(postgres, "TestA"); + }, 600_000); + + afterAll(async () => { + await db?.stop(); + }); + + beforeEach(async () => { + await postgres.query("DELETE FROM matches"); + await postgres.query("DELETE FROM tournaments"); + await postgres.query("DELETE FROM match_options"); + await postgres.query("DELETE FROM teams"); + await postgres.query("DELETE FROM players"); + }); + + async function currentStage(tournamentId: string): Promise { + const [row] = await postgres.query>( + `SELECT public.tournament_current_stage(t) AS stage + FROM tournaments t WHERE t.id = $1`, + [tournamentId], + ); + return row.stage; + } + + it("is null for a tournament with no stages", async () => { + const t = await tfx.createTournament([]); + + expect(await currentStage(t.id)).toBeNull(); + }); + + it("is the first stage before any team is seeded", async () => { + const t = await tfx.createTournament(TWO_STAGES); + + expect(await currentStage(t.id)).toBe(1); + }); + + it("stays on stage 1 while it still has matches to play", async () => { + const t = await tfx.launch(TWO_STAGES, 4); + expect(await currentStage(t.id)).toBe(1); + + await tfx.playRound(t.stageIds[0], 1); + + expect(await currentStage(t.id)).toBe(1); + }); + + it("moves to stage 2 once stage 1 is finished", async () => { + const t = await tfx.launch(TWO_STAGES, 4); + + await tfx.playStage(t.stageIds[0]); + + expect(await tfx.tournamentStatus(t.id)).toBe("Live"); + const [final] = await tfx.getBrackets(t.stageIds[1]); + expect(final.tournament_team_id_1).not.toBeNull(); + expect(final.tournament_team_id_2).not.toBeNull(); + expect(final.finished).toBe(false); + expect(await currentStage(t.id)).toBe(2); + }); + + it("holds on stage 1 while any of its matches is still open", async () => { + const t = await tfx.launch(TWO_STAGES, 4); + await tfx.playStage(t.stageIds[0]); + + const [reopened] = await tfx.getBrackets(t.stageIds[0]); + await postgres.query( + "UPDATE tournament_brackets SET finished = false WHERE id = $1", + [reopened.id], + ); + + expect(await currentStage(t.id)).toBe(1); + }); + + it("ignores byes and teamless brackets left open in an earlier stage", async () => { + const t = await tfx.launch(TWO_STAGES, 4); + await tfx.playStage(t.stageIds[0]); + + const [bye] = await tfx.getBrackets(t.stageIds[0]); + await postgres.query( + "UPDATE tournament_brackets SET bye = true, finished = false WHERE id = $1", + [bye.id], + ); + await postgres.query( + `INSERT INTO tournament_brackets (tournament_stage_id, round, match_number) + VALUES ($1, 99, 1)`, + [t.stageIds[0]], + ); + + expect(await currentStage(t.id)).toBe(2); + }); + + it("lands on the final stage once the tournament is finished", async () => { + const t = await tfx.launch(TWO_STAGES, 4); + + await tfx.playStage(t.stageIds[0]); + await tfx.playStage(t.stageIds[1]); + + expect(await tfx.tournamentStatus(t.id)).toBe("Finished"); + expect(await currentStage(t.id)).toBe(2); + }); +}); From 8419ff027c10a0fa2cb8d2fe83e359a9a2697222 Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Sat, 19 Sep 2026 09:53:00 -0400 Subject: [PATCH 3/4] wip --- generated/index.ts | 77 - generated/runtime/batcher.ts | 275 - generated/runtime/createClient.ts | 68 - generated/runtime/error.ts | 29 - generated/runtime/fetcher.ts | 97 - generated/runtime/generateGraphqlOperation.ts | 225 - generated/runtime/index.ts | 13 - generated/runtime/linkTypeMap.ts | 156 - generated/runtime/typeSelection.ts | 95 - generated/runtime/types.ts | 69 - generated/schema.graphql | 146870 ---------- generated/schema.ts | 157196 ---------- generated/types.ts | 221486 --------------- 13 files changed, 526656 deletions(-) delete mode 100644 generated/index.ts delete mode 100644 generated/runtime/batcher.ts delete mode 100644 generated/runtime/createClient.ts delete mode 100644 generated/runtime/error.ts delete mode 100644 generated/runtime/fetcher.ts delete mode 100644 generated/runtime/generateGraphqlOperation.ts delete mode 100644 generated/runtime/index.ts delete mode 100644 generated/runtime/linkTypeMap.ts delete mode 100644 generated/runtime/typeSelection.ts delete mode 100644 generated/runtime/types.ts delete mode 100644 generated/schema.graphql delete mode 100644 generated/schema.ts delete mode 100644 generated/types.ts diff --git a/generated/index.ts b/generated/index.ts deleted file mode 100644 index b4936677..00000000 --- a/generated/index.ts +++ /dev/null @@ -1,77 +0,0 @@ -// @ts-nocheck -import type { - query_rootGenqlSelection, - query_root, - mutation_rootGenqlSelection, - mutation_root, - subscription_rootGenqlSelection, - subscription_root, -} from './schema' -import { - linkTypeMap, - createClient as createClientOriginal, - generateGraphqlOperation, - type FieldsSelection, - type GraphqlOperation, - type ClientOptions, - GenqlError, -} from './runtime' -export type { FieldsSelection } from './runtime' -export { GenqlError } - -import types from './types' -export * from './schema' -const typeMap = linkTypeMap(types as any) - -export interface Client { - query( - request: R & { __name?: string }, - ): Promise> - - mutation( - request: R & { __name?: string }, - ): Promise> -} - -export const createClient = function (options?: ClientOptions): Client { - return createClientOriginal({ - url: 'http://hasura:8080/v1/graphql', - - ...options, - queryRoot: typeMap.Query!, - mutationRoot: typeMap.Mutation!, - subscriptionRoot: typeMap.Subscription!, - }) as any -} - -export const everything = { - __scalar: true, -} - -export type QueryResult = - FieldsSelection -export const generateQueryOp: ( - fields: query_rootGenqlSelection & { __name?: string }, -) => GraphqlOperation = function (fields) { - return generateGraphqlOperation('query', typeMap.Query!, fields as any) -} - -export type MutationResult = - FieldsSelection -export const generateMutationOp: ( - fields: mutation_rootGenqlSelection & { __name?: string }, -) => GraphqlOperation = function (fields) { - return generateGraphqlOperation('mutation', typeMap.Mutation!, fields as any) -} - -export type SubscriptionResult = - FieldsSelection -export const generateSubscriptionOp: ( - fields: subscription_rootGenqlSelection & { __name?: string }, -) => GraphqlOperation = function (fields) { - return generateGraphqlOperation( - 'subscription', - typeMap.Subscription!, - fields as any, - ) -} diff --git a/generated/runtime/batcher.ts b/generated/runtime/batcher.ts deleted file mode 100644 index c0925510..00000000 --- a/generated/runtime/batcher.ts +++ /dev/null @@ -1,275 +0,0 @@ -// @ts-nocheck -import type { GraphqlOperation } from './generateGraphqlOperation' -import { GenqlError } from './error' - -type Variables = Record - -type QueryError = Error & { - message: string - - locations?: Array<{ - line: number - column: number - }> - path?: any - rid: string - details?: Record -} -type Result = { - data: Record - errors: Array -} -type Fetcher = ( - batchedQuery: GraphqlOperation | Array, -) => Promise> -type Options = { - batchInterval?: number - shouldBatch?: boolean - maxBatchSize?: number -} -type Queue = Array<{ - request: GraphqlOperation - resolve: (...args: Array) => any - reject: (...args: Array) => any -}> - -/** - * takes a list of requests (queue) and batches them into a single server request. - * It will then resolve each individual requests promise with the appropriate data. - * @private - * @param {QueryBatcher} client - the client to use - * @param {Queue} queue - the list of requests to batch - */ -function dispatchQueueBatch(client: QueryBatcher, queue: Queue): void { - let batchedQuery: any = queue.map((item) => item.request) - - if (batchedQuery.length === 1) { - batchedQuery = batchedQuery[0] - } - (() => { - try { - return client.fetcher(batchedQuery); - } catch(e) { - return Promise.reject(e); - } - })().then((responses: any) => { - if (queue.length === 1 && !Array.isArray(responses)) { - if (responses.errors && responses.errors.length) { - queue[0].reject( - new GenqlError(responses.errors, responses.data), - ) - return - } - - queue[0].resolve(responses) - return - } else if (responses.length !== queue.length) { - throw new Error('response length did not match query length') - } - - for (let i = 0; i < queue.length; i++) { - if (responses[i].errors && responses[i].errors.length) { - queue[i].reject( - new GenqlError(responses[i].errors, responses[i].data), - ) - } else { - queue[i].resolve(responses[i]) - } - } - }) - .catch((e) => { - for (let i = 0; i < queue.length; i++) { - queue[i].reject(e) - } - }); -} - -/** - * creates a list of requests to batch according to max batch size. - * @private - * @param {QueryBatcher} client - the client to create list of requests from from - * @param {Options} options - the options for the batch - */ -function dispatchQueue(client: QueryBatcher, options: Options): void { - const queue = client._queue - const maxBatchSize = options.maxBatchSize || 0 - client._queue = [] - - if (maxBatchSize > 0 && maxBatchSize < queue.length) { - for (let i = 0; i < queue.length / maxBatchSize; i++) { - dispatchQueueBatch( - client, - queue.slice(i * maxBatchSize, (i + 1) * maxBatchSize), - ) - } - } else { - dispatchQueueBatch(client, queue) - } -} -/** - * Create a batcher client. - * @param {Fetcher} fetcher - A function that can handle the network requests to graphql endpoint - * @param {Options} options - the options to be used by client - * @param {boolean} options.shouldBatch - should the client batch requests. (default true) - * @param {integer} options.batchInterval - duration (in MS) of each batch window. (default 6) - * @param {integer} options.maxBatchSize - max number of requests in a batch. (default 0) - * @param {boolean} options.defaultHeaders - default headers to include with every request - * - * @example - * const fetcher = batchedQuery => fetch('path/to/graphql', { - * method: 'post', - * headers: { - * Accept: 'application/json', - * 'Content-Type': 'application/json', - * }, - * body: JSON.stringify(batchedQuery), - * credentials: 'include', - * }) - * .then(response => response.json()) - * - * const client = new QueryBatcher(fetcher, { maxBatchSize: 10 }) - */ - -export class QueryBatcher { - fetcher: Fetcher - _options: Options - _queue: Queue - - constructor( - fetcher: Fetcher, - { - batchInterval = 6, - shouldBatch = true, - maxBatchSize = 0, - }: Options = {}, - ) { - this.fetcher = fetcher - this._options = { - batchInterval, - shouldBatch, - maxBatchSize, - } - this._queue = [] - } - - /** - * Fetch will send a graphql request and return the parsed json. - * @param {string} query - the graphql query. - * @param {Variables} variables - any variables you wish to inject as key/value pairs. - * @param {[string]} operationName - the graphql operationName. - * @param {Options} overrides - the client options overrides. - * - * @return {promise} resolves to parsed json of server response - * - * @example - * client.fetch(` - * query getHuman($id: ID!) { - * human(id: $id) { - * name - * height - * } - * } - * `, { id: "1001" }, 'getHuman') - * .then(human => { - * // do something with human - * console.log(human); - * }); - */ - fetch( - query: string, - variables?: Variables, - operationName?: string, - overrides: Options = {}, - ): Promise { - const request: GraphqlOperation = { - query, - } - const options = Object.assign({}, this._options, overrides) - - if (variables) { - request.variables = variables - } - - if (operationName) { - request.operationName = operationName - } - - const promise = new Promise((resolve, reject) => { - this._queue.push({ - request, - resolve, - reject, - }) - - if (this._queue.length === 1) { - if (options.shouldBatch) { - setTimeout( - () => dispatchQueue(this, options), - options.batchInterval, - ) - } else { - dispatchQueue(this, options) - } - } - }) - return promise - } - - /** - * Fetch will send a graphql request and return the parsed json. - * @param {string} query - the graphql query. - * @param {Variables} variables - any variables you wish to inject as key/value pairs. - * @param {[string]} operationName - the graphql operationName. - * @param {Options} overrides - the client options overrides. - * - * @return {Promise>} resolves to parsed json of server response - * - * @example - * client.forceFetch(` - * query getHuman($id: ID!) { - * human(id: $id) { - * name - * height - * } - * } - * `, { id: "1001" }, 'getHuman') - * .then(human => { - * // do something with human - * console.log(human); - * }); - */ - forceFetch( - query: string, - variables?: Variables, - operationName?: string, - overrides: Options = {}, - ): Promise { - const request: GraphqlOperation = { - query, - } - const options = Object.assign({}, this._options, overrides, { - shouldBatch: false, - }) - - if (variables) { - request.variables = variables - } - - if (operationName) { - request.operationName = operationName - } - - const promise = new Promise((resolve, reject) => { - const client = new QueryBatcher(this.fetcher, this._options) - client._queue = [ - { - request, - resolve, - reject, - }, - ] - dispatchQueue(client, options) - }) - return promise - } -} diff --git a/generated/runtime/createClient.ts b/generated/runtime/createClient.ts deleted file mode 100644 index 755617ed..00000000 --- a/generated/runtime/createClient.ts +++ /dev/null @@ -1,68 +0,0 @@ -// @ts-nocheck - -import { type BatchOptions, createFetcher } from './fetcher' -import type { ExecutionResult, LinkedType } from './types' -import { - generateGraphqlOperation, - type GraphqlOperation, -} from './generateGraphqlOperation' - -export type Headers = - | HeadersInit - | (() => HeadersInit) - | (() => Promise) - -export type BaseFetcher = ( - operation: GraphqlOperation | GraphqlOperation[], -) => Promise - -export type ClientOptions = Omit & { - url?: string - batch?: BatchOptions | boolean - fetcher?: BaseFetcher - fetch?: Function - headers?: Headers -} - -export const createClient = ({ - queryRoot, - mutationRoot, - subscriptionRoot, - ...options -}: ClientOptions & { - queryRoot?: LinkedType - mutationRoot?: LinkedType - subscriptionRoot?: LinkedType -}) => { - const fetcher = createFetcher(options) - const client: { - query?: Function - mutation?: Function - } = {} - - if (queryRoot) { - client.query = (request: any) => { - if (!queryRoot) throw new Error('queryRoot argument is missing') - - const resultPromise = fetcher( - generateGraphqlOperation('query', queryRoot, request), - ) - - return resultPromise - } - } - if (mutationRoot) { - client.mutation = (request: any) => { - if (!mutationRoot) - throw new Error('mutationRoot argument is missing') - - const resultPromise = fetcher( - generateGraphqlOperation('mutation', mutationRoot, request), - ) - - return resultPromise - } - } - - return client as any -} diff --git a/generated/runtime/error.ts b/generated/runtime/error.ts deleted file mode 100644 index d9039ebe..00000000 --- a/generated/runtime/error.ts +++ /dev/null @@ -1,29 +0,0 @@ -// @ts-nocheck -export class GenqlError extends Error { - errors: Array = [] - /** - * Partial data returned by the server - */ - data?: any - constructor(errors: any[], data: any) { - let message = Array.isArray(errors) - ? errors.map((x) => x?.message || '').join('\n') - : '' - if (!message) { - message = 'GraphQL error' - } - super(message) - this.errors = errors - this.data = data - } -} - -interface GraphqlError { - message: string - locations?: Array<{ - line: number - column: number - }> - path?: string[] - extensions?: Record -} diff --git a/generated/runtime/fetcher.ts b/generated/runtime/fetcher.ts deleted file mode 100644 index 74e6d4ce..00000000 --- a/generated/runtime/fetcher.ts +++ /dev/null @@ -1,97 +0,0 @@ -// @ts-nocheck -import { QueryBatcher } from './batcher' - -import type { ClientOptions } from './createClient' -import type { GraphqlOperation } from './generateGraphqlOperation' -import { GenqlError } from './error' - -export interface Fetcher { - (gql: GraphqlOperation): Promise -} - -export type BatchOptions = { - batchInterval?: number // ms - maxBatchSize?: number -} - -const DEFAULT_BATCH_OPTIONS = { - maxBatchSize: 10, - batchInterval: 40, -} - -export const createFetcher = ({ - url, - headers = {}, - fetcher, - fetch: _fetch, - batch = false, - ...rest -}: ClientOptions): Fetcher => { - if (!url && !fetcher) { - throw new Error('url or fetcher is required') - } - - fetcher = fetcher || (async (body) => { - let headersObject = - typeof headers == 'function' ? await headers() : headers - headersObject = headersObject || {} - if (typeof fetch === 'undefined' && !_fetch) { - throw new Error( - 'Global `fetch` function is not available, pass a fetch polyfill to Genql `createClient`', - ) - } - let fetchImpl = _fetch || fetch - const res = await fetchImpl(url!, { - headers: { - 'Content-Type': 'application/json', - ...headersObject, - }, - method: 'POST', - body: JSON.stringify(body), - ...rest, - }) - if (!res.ok) { - throw new Error(`${res.statusText}: ${await res.text()}`) - } - const json = await res.json() - return json - }) - - if (!batch) { - return async (body) => { - const json = await fetcher!(body) - if (Array.isArray(json)) { - return json.map((json) => { - if (json?.errors?.length) { - throw new GenqlError(json.errors || [], json.data) - } - return json.data - }) - } else { - if (json?.errors?.length) { - throw new GenqlError(json.errors || [], json.data) - } - return json.data - } - } - } - - const batcher = new QueryBatcher( - async (batchedQuery) => { - // console.log(batchedQuery) // [{ query: 'query{user{age}}', variables: {} }, ...] - const json = await fetcher!(batchedQuery) - return json as any - }, - batch === true ? DEFAULT_BATCH_OPTIONS : batch, - ) - - return async ({ query, variables }) => { - const json = await batcher.fetch(query, variables) - if (json?.data) { - return json.data - } - throw new Error( - 'Genql batch fetcher returned unexpected result ' + JSON.stringify(json), - ) - } -} diff --git a/generated/runtime/generateGraphqlOperation.ts b/generated/runtime/generateGraphqlOperation.ts deleted file mode 100644 index c618019e..00000000 --- a/generated/runtime/generateGraphqlOperation.ts +++ /dev/null @@ -1,225 +0,0 @@ -// @ts-nocheck -import type { LinkedField, LinkedType } from './types' - -export interface Args { - [arg: string]: any | undefined -} - -export interface Fields { - [field: string]: Request -} - -export type Request = boolean | number | Fields - -export interface Variables { - [name: string]: { - value: any - typing: [LinkedType, string] - } -} - -export interface Context { - root: LinkedType - varCounter: number - variables: Variables - fragmentCounter: number - fragments: string[] -} - -export interface GraphqlOperation { - query: string - variables?: { [name: string]: any } - operationName?: string -} - -const parseRequest = ( - request: Request | undefined, - ctx: Context, - path: string[], -): string => { - if (typeof request === 'object' && '__args' in request) { - const args: any = request.__args - let fields: Request | undefined = { ...request } - delete fields.__args - const argNames = Object.keys(args) - - if (argNames.length === 0) { - return parseRequest(fields, ctx, path) - } - - const field = getFieldFromPath(ctx.root, path) - - const argStrings = argNames.map((argName) => { - ctx.varCounter++ - const varName = `v${ctx.varCounter}` - - const typing = field.args && field.args[argName] // typeMap used here, .args - - if (!typing) { - throw new Error( - `no typing defined for argument \`${argName}\` in path \`${path.join( - '.', - )}\``, - ) - } - - ctx.variables[varName] = { - value: args[argName], - typing, - } - - return `${argName}:$${varName}` - }) - return `(${argStrings})${parseRequest(fields, ctx, path)}` - } else if (typeof request === 'object' && Object.keys(request).length > 0) { - const fields = request - const fieldNames = Object.keys(fields).filter((k) => Boolean(fields[k])) - - if (fieldNames.length === 0) { - throw new Error( - `field selection should not be empty: ${path.join('.')}`, - ) - } - - const type = - path.length > 0 ? getFieldFromPath(ctx.root, path).type : ctx.root - const scalarFields = type.scalar - - let scalarFieldsFragment: string | undefined - - if (fieldNames.includes('__scalar')) { - const falsyFieldNames = new Set( - Object.keys(fields).filter((k) => !Boolean(fields[k])), - ) - if (scalarFields?.length) { - ctx.fragmentCounter++ - scalarFieldsFragment = `f${ctx.fragmentCounter}` - - ctx.fragments.push( - `fragment ${scalarFieldsFragment} on ${ - type.name - }{${scalarFields - .filter((f) => !falsyFieldNames.has(f)) - .join(',')}}`, - ) - } - } - - const fieldsSelection = fieldNames - .filter((f) => !['__scalar', '__name'].includes(f)) - .map((f) => { - const parsed = parseRequest(fields[f], ctx, [...path, f]) - - if (f.startsWith('on_')) { - ctx.fragmentCounter++ - const implementationFragment = `f${ctx.fragmentCounter}` - - const typeMatch = f.match(/^on_(.+)/) - - if (!typeMatch || !typeMatch[1]) - throw new Error('match failed') - - ctx.fragments.push( - `fragment ${implementationFragment} on ${typeMatch[1]}${parsed}`, - ) - - return `...${implementationFragment}` - } else { - return `${f}${parsed}` - } - }) - .concat(scalarFieldsFragment ? [`...${scalarFieldsFragment}`] : []) - .join(',') - - return `{${fieldsSelection}}` - } else { - return '' - } -} - -export const generateGraphqlOperation = ( - operation: 'query' | 'mutation' | 'subscription', - root: LinkedType, - fields?: Fields, -): GraphqlOperation => { - const ctx: Context = { - root: root, - varCounter: 0, - variables: {}, - fragmentCounter: 0, - fragments: [], - } - const result = parseRequest(fields, ctx, []) - - const varNames = Object.keys(ctx.variables) - - const varsString = - varNames.length > 0 - ? `(${varNames.map((v) => { - const variableType = ctx.variables[v].typing[1] - return `$${v}:${variableType}` - })})` - : '' - - const operationName = fields?.__name || '' - - return { - query: [ - `${operation} ${operationName}${varsString}${result}`, - ...ctx.fragments, - ].join(','), - variables: Object.keys(ctx.variables).reduce<{ [name: string]: any }>( - (r, v) => { - r[v] = ctx.variables[v].value - return r - }, - {}, - ), - ...(operationName ? { operationName: operationName.toString() } : {}), - } -} - -export const getFieldFromPath = ( - root: LinkedType | undefined, - path: string[], -) => { - let current: LinkedField | undefined - - if (!root) throw new Error('root type is not provided') - - if (path.length === 0) throw new Error(`path is empty`) - - path.forEach((f) => { - const type = current ? current.type : root - - if (!type.fields) - throw new Error(`type \`${type.name}\` does not have fields`) - - const possibleTypes = Object.keys(type.fields) - .filter((i) => i.startsWith('on_')) - .reduce( - (types, fieldName) => { - const field = type.fields && type.fields[fieldName] - if (field) types.push(field.type) - return types - }, - [type], - ) - - let field: LinkedField | null = null - - possibleTypes.forEach((type) => { - const found = type.fields && type.fields[f] - if (found) field = found - }) - - if (!field) - throw new Error( - `type \`${type.name}\` does not have a field \`${f}\``, - ) - - current = field - }) - - return current as LinkedField -} diff --git a/generated/runtime/index.ts b/generated/runtime/index.ts deleted file mode 100644 index 130ed4bf..00000000 --- a/generated/runtime/index.ts +++ /dev/null @@ -1,13 +0,0 @@ -// @ts-nocheck -export { createClient } from './createClient' -export type { ClientOptions } from './createClient' -export type { FieldsSelection } from './typeSelection' -export { generateGraphqlOperation } from './generateGraphqlOperation' -export type { GraphqlOperation } from './generateGraphqlOperation' -export { linkTypeMap } from './linkTypeMap' -// export { Observable } from 'zen-observable-ts' -export { createFetcher } from './fetcher' -export { GenqlError } from './error' -export const everything = { - __scalar: true, -} diff --git a/generated/runtime/linkTypeMap.ts b/generated/runtime/linkTypeMap.ts deleted file mode 100644 index 3e12c545..00000000 --- a/generated/runtime/linkTypeMap.ts +++ /dev/null @@ -1,156 +0,0 @@ -// @ts-nocheck -import type { - CompressedType, - CompressedTypeMap, - LinkedArgMap, - LinkedField, - LinkedType, - LinkedTypeMap, -} from './types' - -export interface PartialLinkedFieldMap { - [field: string]: { - type: string - args?: LinkedArgMap - } -} - -export const linkTypeMap = ( - typeMap: CompressedTypeMap, -): LinkedTypeMap => { - const indexToName: Record = Object.assign( - {}, - ...Object.keys(typeMap.types).map((k, i) => ({ [i]: k })), - ) - - let intermediaryTypeMap = Object.assign( - {}, - ...Object.keys(typeMap.types || {}).map( - (k): Record => { - const type: CompressedType = typeMap.types[k]! - const fields = type || {} - return { - [k]: { - name: k, - // type scalar properties - scalar: Object.keys(fields).filter((f) => { - const [type] = fields[f] || [] - - const isScalar = - type && typeMap.scalars.includes(type) - if (!isScalar) { - return false - } - const args = fields[f]?.[1] - const argTypes = Object.values(args || {}) - .map((x) => x?.[1]) - .filter(Boolean) - - const hasRequiredArgs = argTypes.some( - (str) => str && str.endsWith('!'), - ) - if (hasRequiredArgs) { - return false - } - return true - }), - // fields with corresponding `type` and `args` - fields: Object.assign( - {}, - ...Object.keys(fields).map( - (f): PartialLinkedFieldMap => { - const [typeIndex, args] = fields[f] || [] - if (typeIndex == null) { - return {} - } - return { - [f]: { - // replace index with type name - type: indexToName[typeIndex], - args: Object.assign( - {}, - ...Object.keys(args || {}).map( - (k) => { - // if argTypeString == argTypeName, argTypeString is missing, need to readd it - if (!args || !args[k]) { - return - } - const [ - argTypeName, - argTypeString, - ] = args[k] as any - return { - [k]: [ - indexToName[ - argTypeName - ], - argTypeString || - indexToName[ - argTypeName - ], - ], - } - }, - ), - ), - }, - } - }, - ), - ), - }, - } - }, - ), - ) - const res = resolveConcreteTypes(intermediaryTypeMap) - return res -} - -// replace typename with concrete type -export const resolveConcreteTypes = (linkedTypeMap: LinkedTypeMap) => { - Object.keys(linkedTypeMap).forEach((typeNameFromKey) => { - const type: LinkedType = linkedTypeMap[typeNameFromKey]! - // type.name = typeNameFromKey - if (!type.fields) { - return - } - - const fields = type.fields - - Object.keys(fields).forEach((f) => { - const field: LinkedField = fields[f]! - - if (field.args) { - const args = field.args - Object.keys(args).forEach((key) => { - const arg = args[key] - - if (arg) { - const [typeName] = arg - - if (typeof typeName === 'string') { - if (!linkedTypeMap[typeName]) { - linkedTypeMap[typeName] = { name: typeName } - } - - arg[0] = linkedTypeMap[typeName]! - } - } - }) - } - - const typeName = field.type as LinkedType | string - - if (typeof typeName === 'string') { - if (!linkedTypeMap[typeName]) { - linkedTypeMap[typeName] = { name: typeName } - } - - field.type = linkedTypeMap[typeName]! - } - }) - }) - - return linkedTypeMap -} diff --git a/generated/runtime/typeSelection.ts b/generated/runtime/typeSelection.ts deleted file mode 100644 index a021d00b..00000000 --- a/generated/runtime/typeSelection.ts +++ /dev/null @@ -1,95 +0,0 @@ -// @ts-nocheck -////////////////////////////////////////////////// - -// SOME THINGS TO KNOW BEFORE DIVING IN -/* -0. DST is the request type, SRC is the response type - -1. FieldsSelection uses an object because currently is impossible to make recursive types - -2. FieldsSelection is a recursive type that makes a type based on request type and fields - -3. HandleObject handles object types - -4. Handle__scalar adds all scalar properties excluding non scalar props -*/ - -export type FieldsSelection | undefined, DST> = { - scalar: SRC - union: Handle__isUnion - object: HandleObject - array: SRC extends Nil - ? never - : SRC extends Array - ? Array> - : never - __scalar: Handle__scalar - never: never -}[DST extends Nil - ? 'never' - : DST extends false | 0 - ? 'never' - : SRC extends Scalar - ? 'scalar' - : SRC extends any[] - ? 'array' - : SRC extends { __isUnion?: any } - ? 'union' - : DST extends { __scalar?: any } - ? '__scalar' - : DST extends {} - ? 'object' - : 'never'] - -type HandleObject, DST> = DST extends boolean - ? SRC - : SRC extends Nil - ? never - : Pick< - { - // using keyof SRC to maintain ?: relations of SRC type - [Key in keyof SRC]: Key extends keyof DST - ? FieldsSelection> - : SRC[Key] - }, - Exclude - // { - // // remove falsy values - // [Key in keyof DST]: DST[Key] extends false | 0 ? never : Key - // }[keyof DST] - > - -type Handle__scalar, DST> = SRC extends Nil - ? never - : Pick< - // continue processing fields that are in DST, directly pass SRC type if not in DST - { - [Key in keyof SRC]: Key extends keyof DST - ? FieldsSelection - : SRC[Key] - }, - // remove fields that are not scalars or are not in DST - { - [Key in keyof SRC]: SRC[Key] extends Nil - ? never - : Key extends FieldsToRemove - ? never - : SRC[Key] extends Scalar - ? Key - : Key extends keyof DST - ? Key - : never - }[keyof SRC] - > - -type Handle__isUnion, DST> = SRC extends Nil - ? never - : Omit // just return the union type - -type Scalar = string | number | Date | boolean | null | undefined - -type Anify = { [P in keyof T]?: any } - -type FieldsToRemove = '__isUnion' | '__scalar' | '__name' | '__args' - -type Nil = undefined | null diff --git a/generated/runtime/types.ts b/generated/runtime/types.ts deleted file mode 100644 index 3f0bc30b..00000000 --- a/generated/runtime/types.ts +++ /dev/null @@ -1,69 +0,0 @@ -// @ts-nocheck - -export interface ExecutionResult { - errors?: Array - data?: TData | null -} - -export interface ArgMap { - [arg: string]: [keyType, string] | [keyType] | undefined -} - -export type CompressedField = [ - type: keyType, - args?: ArgMap, -] - -export interface CompressedFieldMap { - [field: string]: CompressedField | undefined -} - -export type CompressedType = CompressedFieldMap - -export interface CompressedTypeMap { - scalars: Array - types: { - [type: string]: CompressedType | undefined - } -} - -// normal types -export type Field = { - type: keyType - args?: ArgMap -} - -export interface FieldMap { - [field: string]: Field | undefined -} - -export type Type = FieldMap - -export interface TypeMap { - scalars: Array - types: { - [type: string]: Type | undefined - } -} - -export interface LinkedArgMap { - [arg: string]: [LinkedType, string] | undefined -} -export interface LinkedField { - type: LinkedType - args?: LinkedArgMap -} - -export interface LinkedFieldMap { - [field: string]: LinkedField | undefined -} - -export interface LinkedType { - name: string - fields?: LinkedFieldMap - scalar?: string[] -} - -export interface LinkedTypeMap { - [type: string]: LinkedType | undefined -} diff --git a/generated/schema.graphql b/generated/schema.graphql deleted file mode 100644 index 750bc440..00000000 --- a/generated/schema.graphql +++ /dev/null @@ -1,146870 +0,0 @@ -schema { - query: query_root - mutation: mutation_root - subscription: subscription_root -} - -"""whether this query should be cached (Hasura Cloud only)""" -directive @cached( - """measured in seconds""" - ttl: Int! = 60 - - """refresh the cache entry""" - refresh: Boolean! = false -) on QUERY - -type ActiveConnection { - application_name: String - client_addr: String - pid: Int! - query: String! - query_start: timestamp - state: String - usename: String -} - -type ActiveQuery { - application_name: String - client_addr: String - duration_seconds: Float! - pid: Int! - query: String! - query_start: timestamp! - state: String! - usename: String! - wait_event: String - wait_event_type: String -} - -type AddCustomGamePluginOutput { - name: String! - runtime: String! - slug: String! - version: String! -} - -type ApiKeyResponse { - key: String! -} - -type Award { - allow_multiple: Boolean! - created_at: String! - created_by_steam_id: String - description: String - event_id: uuid - id: uuid! - image_url: String - league_season_id: uuid - name: String! - season_id: uuid - silhouette: Int - system_key: String - tier: String! - tournament_id: uuid - updated_at: String! -} - -type AwardRecipient { - award_id: uuid! - awarded_by_steam_id: String - created_at: String! - id: uuid! - note: String - placement: Int - player_steam_id: String - source: String! - team_id: uuid - tournament_id: uuid - tournament_team_id: uuid -} - -""" -Boolean expression to compare columns of type "Boolean". All fields are combined with logical 'AND'. -""" -input Boolean_comparison_exp { - _eq: Boolean - _gt: Boolean - _gte: Boolean - _in: [Boolean!] - _is_null: Boolean - _lt: Boolean - _lte: Boolean - _neq: Boolean - _nin: [Boolean!] -} - -input ClipAudioInput { - duck_game_audio: Boolean - fade_in_ms: Int - fade_out_ms: Int - track_url: String - volume: Float -} - -input ClipOutputInput { - format: String! - fps: Int! - resolution: String! -} - -input ClipOverlayInput { - end_ms: Int! - payload: jsonb - start_ms: Int! - type: String! -} - -input ClipSegmentInput { - end_tick: Int! - pov_steam_id: String - start_tick: Int! -} - -input ClipSpecInput { - audio: ClipAudioInput - destination: String! - match_map_id: uuid! - output: ClipOutputInput! - overlays: [ClipOverlayInput!] - segments: [ClipSegmentInput!]! - title: String -} - -type ConnectionByState { - count: Int! - state: String! - wait_event_type: String - waiting_count: Int! -} - -type ConnectionStats { - active: Int! - by_state: [ConnectionByState]! - idle: Int! - idle_in_transaction: Int! - total: Int! - waiting: Int! -} - -type CpuStat { - time: timestamp - total: bigint - used: bigint - window: Float -} - -type CreateClipRenderOutput { - job_id: uuid! - success: Boolean! -} - -type CreateDraftGameOutput { - draftGameId: uuid! -} - -type CreateScheduledMatchOutput { - matchId: uuid! -} - -type DatabaseStats { - blks_hit: Int! - blks_read: Int! - cache_hit_ratio: Float! - conflicts: Int! - datname: String! - deadlocks: Int! - numbackends: Int! - tup_deleted: Int! - tup_fetched: Int! - tup_inserted: Int! - tup_returned: Int! - tup_updated: Int! - xact_commit: Int! - xact_rollback: Int! -} - -type DbStats { - calls: Int! - local_blks_hit: Int! - local_blks_read: Int! - max_exec_time: Float! - mean_exec_time: Float! - min_exec_time: Float! - query: String! - queryid: String! - shared_blks_hit: Int! - shared_blks_read: Int! - total_exec_time: Float! - total_rows: Int! -} - -type DedicatedSeverInfo { - id: String! - lastPing: String! - map: String! - players: Int! -} - -type DeleteOrphansOutput { - bytes_freed: Float! - deleted: Int! - remaining_orphans: Int! - success: Boolean! -} - -type DiskStat { - available: String - filesystem: String - mountpoint: String - size: String - used: String - usedPercent: String -} - -type DiskStats { - disks: [DiskStat] - time: timestamp -} - -type DraftGamePreviewOutput { - accepted_count: Int - access: String - capacity: Int - host_avatar_url: String - host_name: String - host_steam_id: String - id: uuid! - mode: String - players: [DraftGamePreviewPlayer!]! - require_approval: Boolean - status: String - type: String -} - -type DraftGamePreviewPlayer { - avatar_url: String - name: String - status: String - steam_id: String! -} - -type FaceitTestOutput { - dataApi: FaceitTestResult! - downloadApi: FaceitTestResult! -} - -type FaceitTestResult { - detail: String! - ok: Boolean -} - -type FileContentResponse { - content: String! - path: String! - size: bigint! -} - -type FileItem { - isDirectory: Boolean! - modified: timestamp - name: String! - path: String! - size: bigint - type: String! -} - -type FileListResponse { - currentPath: String! - items: [FileItem!]! -} - -""" -Boolean expression to compare columns of type "Float". All fields are combined with logical 'AND'. -""" -input Float_comparison_exp { - _eq: Float - _gt: Float - _gte: Float - _in: [Float!] - _is_null: Boolean - _lt: Float - _lte: Float - _neq: Float - _nin: [Float!] -} - -type GetTestUploadResponse { - error: String - link: String -} - -type GpuDeviceStat { - index: Int - memory_mb: Int - memory_used_mb: Int - name: String - power_w: Int - temperature_c: Int - utilization_percent: Int -} - -type GpuStats { - devices: [GpuDeviceStat] - time: timestamp -} - -type HighlightPresetAvailability { - best_round: Boolean! - has_demo: Boolean! - knife: Boolean! - multikills: Boolean! - recap: Boolean! -} - -type HypertableInfo { - compression_enabled: Boolean! - hypertable_name: String! - num_chunks: Int! -} - -type IndexIOStat { - idx_blks_hit: Int! - idx_blks_read: Int! - indexname: String! - schemaname: String! - tablename: String! -} - -type IndexStat { - idx_scan: Int! - idx_tup_fetch: Int! - idx_tup_read: Int! - index_size: Int! - indexname: String! - schemaname: String! - table_size: Int! - tablename: String! -} - -""" -Boolean expression to compare columns of type "Int". All fields are combined with logical 'AND'. -""" -input Int_comparison_exp { - _eq: Int - _gt: Int - _gte: Int - _in: [Int!] - _is_null: Boolean - _lt: Int - _lte: Int - _neq: Int - _nin: [Int!] -} - -type KickResult { - kicked: Boolean! - message: String -} - -type LiveSpecGsi { - map_name: String - map_phase: String - round_number: Int - round_phase: String - spec_slots: [LiveSpecSlot!]! - spectated_steam_id: String - team_ct_name: String - team_ct_score: Int - team_t_name: String - team_t_score: Int -} - -type LiveSpecSlot { - alive: Boolean! - health: Int! - name: String - slot: Int! - steam_id: String! - team: String -} - -type LiveStreamSpecState { - gsi: LiveSpecGsi -} - -type LockInfo { - granted: Boolean! - locktype: String! - mode: String! - pid: Int! - query: String - relation: String - usename: String -} - -type MapCalloutSyncOutput { - callouts: Int! - maps: Int! -} - -type MeResponse { - avatar_url: String! - country: String - discord_id: String - language: String - name: String! - player: players - profile_url: String - role: String! - steam_id: String! -} - -type MemoryStat { - time: timestamp - total: bigint - used: bigint -} - -type NetworkStats { - nics: [NicStat] - time: timestamp -} - -type NewsPost { - author_steam_id: String - content_markdown: String! - cover_image_url: String - created_at: String! - id: uuid! - published_at: String - slug: String! - status: String! - teaser: String - title: String! - updated_at: String! - view_count: bigint! -} - -type NicStat { - name: String - rx: bigint - tx: bigint -} - -type NodeStats { - cpu: CpuStat - disks: [DiskStats] - gpu: [GpuStats] - memory: MemoryStat - network: [NetworkStats] - node: String! -} - -type OrphanObject { - key: String! - size: Float! -} - -type OrphanScanResultOutput { - bucket: String - clip_bytes: Float! - clip_objects: Int! - demo_bytes: Float! - demo_objects: Int! - found: Boolean! - orphan_bytes: Float! - orphan_objects: Int! - orphans: [OrphanObject!]! - other_bytes: Float! - other_objects: Int! - scanned_at: String - scanning: Boolean! - total_bytes: Float! - total_objects: Int! - tracked_bytes: Float! - tracked_objects: Int! -} - -type PendingMatchImportActionOutput { - error: String - success: Boolean! -} - -type PluginReadmeOutput { - content: String - format: String - repo: String - url: String -} - -type PodStats { - cpu: CpuStat - memory: MemoryStat - name: String! - node: String! -} - -type PreviewGameModeOutput { - cfg: String - enabledPlugins: String! - extraGameParams: String -} - -type PreviewTournamentMatchResetOutput { - impacts: [TournamentMatchResetImpact!]! -} - -type QueryDetail { - explain_plan: String - query: String! - queryid: String! - stats: QueryStat! -} - -type QueryStat { - cache_hit_ratio: Float - calls: Int! - local_blks_hit: Int! - local_blks_read: Int! - max_exec_time: Float! - mean_exec_time: Float! - min_exec_time: Float! - query: String! - queryid: String! - shared_blks_hit: Int! - shared_blks_read: Int! - stddev_exec_time: Float - temp_blks_written: Int! - total_exec_time: Float! - total_rows: Int! -} - -type RecomputeEloStartedOutput { - running: Boolean! - success: Boolean! -} - -type RecomputeEloStatusOutput { - canceled: Boolean! - completed: Int! - current_match_id: String - failed: Int! - finished_at: String - running: Boolean! - started_at: String - total: Int! -} - -type ReconcileNodePluginsOutput { - detected: Int! -} - -type ReindexStartedOutput { - running: Boolean! - success: Boolean! -} - -type ReindexStatusOutput { - canceled: Boolean! - completed: Int! - current_steam_id: String - failed: Int! - finished_at: String - running: Boolean! - started_at: String - total: Int! -} - -type ReparseAllStartedOutput { - running: Boolean! - success: Boolean! -} - -type ReparseAllStatusOutput { - canceled: Boolean! - completed: Int! - current_demo_id: String - failed: Int! - finished_at: String - running: Boolean! - started_at: String - total: Int! -} - -type SanctionResult { - enforced: Boolean! - id: String - message: String -} - -type ScanStartedOutput { - scanning: Boolean! - success: Boolean! -} - -input ScheduledLineupInput { - steam_ids: [String!] - team_id: String -} - -type SeasonBackfillStatusOutput { - canceled: Boolean! - completed: Int! - current_match_id: String - failed: Int! - finished_at: String - running: Boolean! - season_id: String - started_at: String - total: Int! -} - -type ServerPlayer { - name: String! - steam_id: String! -} - -type SetupGameServeOutput { - gameServerId: String! - link: String! -} - -type SteamMatchHistoryLinkOutput { - error: String - success: Boolean! -} - -type SteamMatchHistoryPollOutput { - collected: Int! - error: String - success: Boolean! -} - -type SteamPresenceAdminStatusOutput { - bots: [SteamPresenceBot!]! - enabled: Boolean! - pool: SteamPresencePool! -} - -type SteamPresenceBot { - assigned: Int! - capacity: Int! - guardLastWrong: Boolean! - guardType: String - id: String! - needs2fa: Boolean! - online: Boolean! - steamId: String - steamLevel: Int - username: String! - watching: Int! -} - -type SteamPresenceBotAssignment { - addUrl: String - enabled: Boolean! - status: String - steamId: String -} - -type SteamPresencePool { - bots: Int! - capacity: Int! - online: Int! - pending: Int! - watching: Int! -} - -type StorageStats { - summary: StorageSummary! - tables: [TableSizeInfo!]! -} - -type StorageSummary { - estimated_reclaimable_space: Float! - total_database_size: Float! - total_indexes_size: Float! - total_table_size: Float! -} - -""" -Boolean expression to compare columns of type "String". All fields are combined with logical 'AND'. -""" -input String_array_comparison_exp { - """is the array contained in the given array value""" - _contained_in: [String!] - - """does the array contain the given value""" - _contains: [String!] - _eq: [String!] - _gt: [String!] - _gte: [String!] - _in: [[String!]!] - _is_null: Boolean - _lt: [String!] - _lte: [String!] - _neq: [String!] - _nin: [[String!]!] -} - -""" -Boolean expression to compare columns of type "String". All fields are combined with logical 'AND'. -""" -input String_comparison_exp { - _eq: String - _gt: String - _gte: String - - """does the column match the given case-insensitive pattern""" - _ilike: String - _in: [String!] - - """ - does the column match the given POSIX regular expression, case insensitive - """ - _iregex: String - _is_null: Boolean - - """does the column match the given pattern""" - _like: String - _lt: String - _lte: String - _neq: String - - """does the column NOT match the given case-insensitive pattern""" - _nilike: String - _nin: [String!] - - """ - does the column NOT match the given POSIX regular expression, case insensitive - """ - _niregex: String - - """does the column NOT match the given pattern""" - _nlike: String - - """ - does the column NOT match the given POSIX regular expression, case sensitive - """ - _nregex: String - - """does the column NOT match the given SQL regular expression""" - _nsimilar: String - - """ - does the column match the given POSIX regular expression, case sensitive - """ - _regex: String - - """does the column match the given SQL regular expression""" - _similar: String -} - -type SuccessOutput { - success: Boolean! -} - -type SyncPluginRegistryOutput { - plugins: Int! - versions: Int! -} - -type TableIOStat { - cache_hit_ratio: Float - heap_blks_hit: Int! - heap_blks_read: Int! - idx_blks_hit: Int! - idx_blks_read: Int! - relname: String! - schemaname: String! -} - -type TableSizeInfo { - estimated_dead_tuple_bytes: Float! - indexes_size: Float! - n_dead_tup: Int! - n_live_tup: Int! - schemaname: String! - table_size: Float! - tablename: String! - total_size: Float! -} - -type TableStat { - idx_scan: Int - idx_tup_fetch: Int - last_analyze: timestamp - last_autoanalyze: timestamp - last_autovacuum: timestamp - last_vacuum: timestamp - n_dead_tup: Int! - n_live_tup: Int! - n_tup_del: Int! - n_tup_hot_upd: Int! - n_tup_ins: Int! - n_tup_upd: Int! - relname: String! - schemaname: String! - seq_scan: Int! - seq_tup_read: Int! -} - -type TeamCalendarOutput { - url: String! -} - -type TelemetryActivityPoint { - day: String! - installs: Int! - matches: Int! -} - -type TelemetryCountryCount { - country: String! - installs: Int! -} - -type TelemetryFeatureAdoption { - counted: Int! - enabled: Int! - flagged: Int! - installsUsing: Int! - key: String! - kind: String! - reporting: Int! - total: Int! -} - -type TelemetryFleetTotals { - appearancesReported: Int! - competitionReported: Int! - dedicatedServers: Int! - eventTeams: Int! - events: Int! - gameModes: Int! - gameModesEnabled: Int! - gameModesUnranked: Int! - gameServerNodes: Int! - gameServerNodesEnabled: Int! - gameServerNodesOnline: Int! - gpuNodes: Int! - leagueRegistrations: Int! - leagueSeasons: Int! - leagueSeasonsFinished: Int! - leagueTeams: Int! - mapsPlayed: Int! - matches: Int! - matchesAbandoned: Int! - matchesCreated: Int! - matchesFinished: Int! - matchesImported: Int! - matchesImportedMonth: Int! - matchesImportedYear: Int! - matchesLeague: Int! - matchesLive: Int! - matchesMonth: Int! - matchesScrim: Int! - matchesTournament: Int! - matchesWeek: Int! - matchesYear: Int! - outcomesReported: Int! - panels: Int! - playerAppearances: Int! - playersActive30d: Int! - playersActive7d: Int! - playersKnown: Int! - playersPlayed: Int! - playersRegistered: Int! - pluginsBySlug: jsonb - pluginsManual: Int! - pluginsReported: Int! - pluginsRequested: Int! - publicServers: Int! - regions: Int! - scrimRequests: Int! - servers: Int! - serversEnabled: Int! - teams: Int! - tournamentTeams: Int! - tournaments: Int! - tournamentsFinished: Int! -} - -type TelemetryGrowthPoint { - installs: Int! - month: String! -} - -type TelemetryInstallCounts { - active24h: Int! - active30d: Int! - active7d: Int! - new30d: Int! - retained180d: Int! - total: Int! -} - -type TelemetryMatchSourceCount { - matches: Int! - source: String! -} - -type TelemetryMatchTypeCount { - matches: Int! - type: String! -} - -type TelemetryRuntimeCount { - installs: Int! - runtime: String! -} - -type TelemetryStats { - activity: [TelemetryActivityPoint!]! - countries: [TelemetryCountryCount!]! - features: [TelemetryFeatureAdoption!]! - growth: [TelemetryGrowthPoint!]! - installs: TelemetryInstallCounts! - matchSources: [TelemetryMatchSourceCount!]! - matchTypes: [TelemetryMatchTypeCount!]! - online: Int! - runtimes: [TelemetryRuntimeCount!]! - totals: TelemetryFleetTotals! - utility: TelemetryUtilityTotals! - utilitySources: [TelemetryUtilitySourceCount!]! - utilityTypes: [TelemetryUtilityTypeCount!]! - versions: [TelemetryVersionCount!]! -} - -type TelemetryUtilitySourceCount { - lineups: Int! - source: String! -} - -type TelemetryUtilityTotals { - archived: Int! - attempts: Int! - authors: Int! - collections: Int! - demoThrows: Int! - demosMined: Int! - driftFlagged: Int! - driftScans: Int! - favorites: Int! - hosts: Int! - lineups: Int! - maps: Int! - mastered: Int! - metaLineups: Int! - month: Int! - pendingReview: Int! - playbookSteps: Int! - playbooks: Int! - practicing: Int! - previews: Int! - private: Int! - public: Int! - repairs: Int! - reported: Int! - sessions: Int! - sessionsFailed: Int! - sessionsMonth: Int! - sessionsWeek: Int! - successes: Int! - team: Int! - verified: Int! - votes: Int! - week: Int! -} - -type TelemetryUtilityTypeCount { - lineups: Int! - type: String! -} - -type TelemetryVersionCount { - installs: Int! - rank: Int! - since: String! - version: String! -} - -type TestUploadResponse { - error: String -} - -type TimescaleJob { - hypertable_name: String - job_id: Int! - job_type: String! - last_run_status: String - next_start: timestamp -} - -type TimescaleStats { - chunks_count: Int! - hypertables: [HypertableInfo]! - jobs: [TimescaleJob]! -} - -type TournamentAward { - award_id: uuid - custom_name: String - id: uuid! - image_url: String - placement: Int! - silhouette: Int - tournament_id: uuid! -} - -type TournamentDraftOutput { - teams_created: Int! -} - -type TournamentInviteCodeOutput { - code: String! - id: uuid! -} - -type TournamentMatchResetImpact { - bracket_id: uuid! - depth: Int! - is_source: Boolean! - match_id: uuid - match_number: Int! - match_status: String - path: String - round: Int! - stage_type: String! - will_delete_match: Boolean! -} - -type UtilityBlockingOutput { - degraded: Boolean - message: String - results: [UtilityBlockingResult!]! -} - -type UtilityBlockingResult { - blocked: Boolean! - depth: Float! - transmittance: Float! - utility_lineup_id: uuid! -} - -type UtilityCalibrationOutput { - detail: String - ready: Boolean! - status: String! -} - -type UtilityDriftScanOutput { - lineups: Int! - scan_id: uuid! -} - -type UtilityDrillLoadOutput { - map_name: String - queued: Int! - reason: String! - sent: Boolean! -} - -type UtilityImportError { - external_id: String - index: Int! - reason: String! -} - -type UtilityImportOutput { - dry_run: Boolean! - errors: [UtilityImportError!]! - failed: Int! - imported: Int! - total: Int! - updated: Int! -} - -type UtilityLaunchSeedBackfillOutput { - done: Boolean! - scanned: Int! - seeded: Int! - skipped: Int! -} - -type UtilityLineupOutput { - id: uuid! -} - -type UtilityLoadOutput { - map_name: String - reason: String! - sent: Boolean! -} - -type UtilityMissPatternOutput { - analysed: Boolean! - bias: String - mean_along: Float - mean_lateral: Float - mean_vertical: Float - message: String - players: Int! - samples: Int! -} - -type UtilityOneWayOutput { - degraded: Boolean - message: String - results: [UtilityOneWayResult!]! -} - -type UtilityOneWayResult { - cause: String - confidence: String! - contested: Boolean! - favors: String - index: Int! - one_way: Boolean! -} - -type UtilityPlaybookCoverageOutput { - degraded: Boolean - message: String - results: [UtilityPlaybookCoverageResult!]! -} - -type UtilityPlaybookCoverageResult { - by_step: Int - covered: Boolean! - depth: Float - index: Int! - transmittance: Float -} - -type UtilityPlaybookOutput { - id: uuid! -} - -input UtilityPlaybookStepInput { - assigned_steam_id: String - note: String - offset_ms: Int - utility_lineup_id: uuid! -} - -type UtilityPracticeMapChangeOutput { - map_name: String! - queued: Boolean! - success: Boolean! -} - -type UtilityPracticePlanEntry { - attempts: Int! - difficulty: String! - global_attempts: Int! - global_landing_rate: Float - global_players: Int! - mastered: Boolean! - meta_throwers: Int! - priority: Float! - reason: String! - successes: Int! - utility_lineup_id: uuid! -} - -type UtilityPracticePlanOutput { - analysed: Boolean! - entries: [UtilityPracticePlanEntry!]! - message: String -} - -type UtilityPracticeServer { - held_by: String - id: uuid! - in_use: Boolean! - label: String! - region: String! -} - -type UtilityPracticeServersOutput { - servers: [UtilityPracticeServer!]! -} - -type UtilityPracticeSessionOutput { - id: uuid! - invite_code: String - match_id: uuid - status: String -} - -type UtilityPracticeWhereOutput { - map_name: String - on_server: Boolean! - session_id: uuid - switching: Boolean! -} - -type UtilityPurgeOutput { - dry_run: Boolean! - lineups: Int! - origin_source: String! -} - -type UtilityRemineOutput { - demos: Int! - done: Boolean! - throws: Int! -} - -type UtilityRenderClearOutput { - cleared: Int! -} - -type UtilityRenderQueueOutput { - reason: String - render_id: uuid - status: String! - success: Boolean! -} - -input UtilityScratchLineupInput { - client_id: String! - eye_z: Float! - land_x: Float - land_y: Float - land_z: Float - map_name: String! - name: String! - origin_x: Float! - origin_y: Float! - origin_z: Float! - side: String! - technique: String! - throw_strength: String! - utility_type: String! - view_pitch: Float! - view_yaw: Float! -} - -type UtilitySightlineOutput { - degraded: Boolean - message: String - results: [UtilitySightlineResult!]! - threshold: Float! -} - -input UtilitySightlinePairInput { - from_x: Float! - from_y: Float! - from_z: Float! - to_x: Float! - to_y: Float! - to_z: Float! -} - -type UtilitySightlineResult { - blocked: Boolean! - blocked_by: String - depth: Float! - index: Int! - transmittance: Float! - world_blocked: Boolean! -} - -type UtilitySolveOutput { - accepted: Boolean! - message: String - status: String! -} - -type UtilityTeamUtilityEntry { - landed: Int! - players: Int! - thrown: Int! - utility_lineup_id: uuid! -} - -type UtilityTeamUtilityOutput { - analysed: Boolean! - entries: [UtilityTeamUtilityEntry!]! - message: String -} - -type UtilityUtilityReportOutput { - analysed: Boolean! - by_type: [UtilityUtilityTypeReport!]! - landed: Int! - matched_lineups: Int! - matched_meta: Int! - message: String - radius: Float! - steam_id: String! - throws: Int! -} - -type UtilityUtilityTypeReport { - landed: Int! - matched_lineups: Int! - matched_meta: Int! - throws: Int! - utility_type: String! -} - -type WatchDemoOutput { - match_map_id: String - session_id: String! - stream_url: String! - success: Boolean! -} - -type WebPushPlatformCount { - devices: Int! - platform: String! -} - -type WebPushStatusOutput { - active_7d: Int! - configured: Boolean! - last_delivered_at: timestamptz - managed_by_environment: Boolean! - never_delivered: Int! - new_7d: Int! - platforms: [WebPushPlatformCount!]! - players: Int! - subscriptions: Int! -} - -""" -columns and relationships of "_map_pool" -""" -type _map_pool { - map_id: uuid! - map_pool_id: uuid! -} - -""" -aggregated selection of "_map_pool" -""" -type _map_pool_aggregate { - aggregate: _map_pool_aggregate_fields - nodes: [_map_pool!]! -} - -""" -aggregate fields of "_map_pool" -""" -type _map_pool_aggregate_fields { - count(columns: [_map_pool_select_column!], distinct: Boolean): Int! - max: _map_pool_max_fields - min: _map_pool_min_fields -} - -""" -Boolean expression to filter rows from the table "_map_pool". All fields are combined with a logical 'AND'. -""" -input _map_pool_bool_exp { - _and: [_map_pool_bool_exp!] - _not: _map_pool_bool_exp - _or: [_map_pool_bool_exp!] - map_id: uuid_comparison_exp - map_pool_id: uuid_comparison_exp -} - -""" -unique or primary key constraints on table "_map_pool" -""" -enum _map_pool_constraint { - """ - unique or primary key constraint on columns "map_pool_id", "map_id" - """ - map_pool_pkey -} - -""" -input type for inserting data into table "_map_pool" -""" -input _map_pool_insert_input { - map_id: uuid - map_pool_id: uuid -} - -"""aggregate max on columns""" -type _map_pool_max_fields { - map_id: uuid - map_pool_id: uuid -} - -"""aggregate min on columns""" -type _map_pool_min_fields { - map_id: uuid - map_pool_id: uuid -} - -""" -response of any mutation on the table "_map_pool" -""" -type _map_pool_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [_map_pool!]! -} - -""" -on_conflict condition type for table "_map_pool" -""" -input _map_pool_on_conflict { - constraint: _map_pool_constraint! - update_columns: [_map_pool_update_column!]! = [] - where: _map_pool_bool_exp -} - -"""Ordering options when selecting data from "_map_pool".""" -input _map_pool_order_by { - map_id: order_by - map_pool_id: order_by -} - -"""primary key columns input for table: _map_pool""" -input _map_pool_pk_columns_input { - map_id: uuid! - map_pool_id: uuid! -} - -""" -select columns of table "_map_pool" -""" -enum _map_pool_select_column { - """column name""" - map_id - - """column name""" - map_pool_id -} - -""" -input type for updating data in table "_map_pool" -""" -input _map_pool_set_input { - map_id: uuid - map_pool_id: uuid -} - -""" -Streaming cursor of the table "_map_pool" -""" -input _map_pool_stream_cursor_input { - """Stream column input with initial value""" - initial_value: _map_pool_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input _map_pool_stream_cursor_value_input { - map_id: uuid - map_pool_id: uuid -} - -""" -update columns of table "_map_pool" -""" -enum _map_pool_update_column { - """column name""" - map_id - - """column name""" - map_pool_id -} - -input _map_pool_updates { - """sets the columns of the filtered rows to the given values""" - _set: _map_pool_set_input - - """filter the rows which have to be updated""" - where: _map_pool_bool_exp! -} - -scalar _uuid - -""" -columns and relationships of "abandoned_matches" -""" -type abandoned_matches { - abandoned_at: timestamptz! - id: uuid! - - """An object relationship""" - match: matches - match_id: uuid - steam_id: bigint! -} - -""" -aggregated selection of "abandoned_matches" -""" -type abandoned_matches_aggregate { - aggregate: abandoned_matches_aggregate_fields - nodes: [abandoned_matches!]! -} - -input abandoned_matches_aggregate_bool_exp { - count: abandoned_matches_aggregate_bool_exp_count -} - -input abandoned_matches_aggregate_bool_exp_count { - arguments: [abandoned_matches_select_column!] - distinct: Boolean - filter: abandoned_matches_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "abandoned_matches" -""" -type abandoned_matches_aggregate_fields { - avg: abandoned_matches_avg_fields - count(columns: [abandoned_matches_select_column!], distinct: Boolean): Int! - max: abandoned_matches_max_fields - min: abandoned_matches_min_fields - stddev: abandoned_matches_stddev_fields - stddev_pop: abandoned_matches_stddev_pop_fields - stddev_samp: abandoned_matches_stddev_samp_fields - sum: abandoned_matches_sum_fields - var_pop: abandoned_matches_var_pop_fields - var_samp: abandoned_matches_var_samp_fields - variance: abandoned_matches_variance_fields -} - -""" -order by aggregate values of table "abandoned_matches" -""" -input abandoned_matches_aggregate_order_by { - avg: abandoned_matches_avg_order_by - count: order_by - max: abandoned_matches_max_order_by - min: abandoned_matches_min_order_by - stddev: abandoned_matches_stddev_order_by - stddev_pop: abandoned_matches_stddev_pop_order_by - stddev_samp: abandoned_matches_stddev_samp_order_by - sum: abandoned_matches_sum_order_by - var_pop: abandoned_matches_var_pop_order_by - var_samp: abandoned_matches_var_samp_order_by - variance: abandoned_matches_variance_order_by -} - -""" -input type for inserting array relation for remote table "abandoned_matches" -""" -input abandoned_matches_arr_rel_insert_input { - data: [abandoned_matches_insert_input!]! - - """upsert condition""" - on_conflict: abandoned_matches_on_conflict -} - -"""aggregate avg on columns""" -type abandoned_matches_avg_fields { - steam_id: Float -} - -""" -order by avg() on columns of table "abandoned_matches" -""" -input abandoned_matches_avg_order_by { - steam_id: order_by -} - -""" -Boolean expression to filter rows from the table "abandoned_matches". All fields are combined with a logical 'AND'. -""" -input abandoned_matches_bool_exp { - _and: [abandoned_matches_bool_exp!] - _not: abandoned_matches_bool_exp - _or: [abandoned_matches_bool_exp!] - abandoned_at: timestamptz_comparison_exp - id: uuid_comparison_exp - match: matches_bool_exp - match_id: uuid_comparison_exp - steam_id: bigint_comparison_exp -} - -""" -unique or primary key constraints on table "abandoned_matches" -""" -enum abandoned_matches_constraint { - """ - unique or primary key constraint on columns "id" - """ - abandoned_matches_pkey - - """ - unique or primary key constraint on columns "match_id", "steam_id" - """ - abandoned_matches_steam_id_match_id_key -} - -""" -input type for incrementing numeric columns in table "abandoned_matches" -""" -input abandoned_matches_inc_input { - steam_id: bigint -} - -""" -input type for inserting data into table "abandoned_matches" -""" -input abandoned_matches_insert_input { - abandoned_at: timestamptz - id: uuid - match: matches_obj_rel_insert_input - match_id: uuid - steam_id: bigint -} - -"""aggregate max on columns""" -type abandoned_matches_max_fields { - abandoned_at: timestamptz - id: uuid - match_id: uuid - steam_id: bigint -} - -""" -order by max() on columns of table "abandoned_matches" -""" -input abandoned_matches_max_order_by { - abandoned_at: order_by - id: order_by - match_id: order_by - steam_id: order_by -} - -"""aggregate min on columns""" -type abandoned_matches_min_fields { - abandoned_at: timestamptz - id: uuid - match_id: uuid - steam_id: bigint -} - -""" -order by min() on columns of table "abandoned_matches" -""" -input abandoned_matches_min_order_by { - abandoned_at: order_by - id: order_by - match_id: order_by - steam_id: order_by -} - -""" -response of any mutation on the table "abandoned_matches" -""" -type abandoned_matches_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [abandoned_matches!]! -} - -""" -on_conflict condition type for table "abandoned_matches" -""" -input abandoned_matches_on_conflict { - constraint: abandoned_matches_constraint! - update_columns: [abandoned_matches_update_column!]! = [] - where: abandoned_matches_bool_exp -} - -"""Ordering options when selecting data from "abandoned_matches".""" -input abandoned_matches_order_by { - abandoned_at: order_by - id: order_by - match: matches_order_by - match_id: order_by - steam_id: order_by -} - -"""primary key columns input for table: abandoned_matches""" -input abandoned_matches_pk_columns_input { - id: uuid! -} - -""" -select columns of table "abandoned_matches" -""" -enum abandoned_matches_select_column { - """column name""" - abandoned_at - - """column name""" - id - - """column name""" - match_id - - """column name""" - steam_id -} - -""" -input type for updating data in table "abandoned_matches" -""" -input abandoned_matches_set_input { - abandoned_at: timestamptz - id: uuid - match_id: uuid - steam_id: bigint -} - -"""aggregate stddev on columns""" -type abandoned_matches_stddev_fields { - steam_id: Float -} - -""" -order by stddev() on columns of table "abandoned_matches" -""" -input abandoned_matches_stddev_order_by { - steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type abandoned_matches_stddev_pop_fields { - steam_id: Float -} - -""" -order by stddev_pop() on columns of table "abandoned_matches" -""" -input abandoned_matches_stddev_pop_order_by { - steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type abandoned_matches_stddev_samp_fields { - steam_id: Float -} - -""" -order by stddev_samp() on columns of table "abandoned_matches" -""" -input abandoned_matches_stddev_samp_order_by { - steam_id: order_by -} - -""" -Streaming cursor of the table "abandoned_matches" -""" -input abandoned_matches_stream_cursor_input { - """Stream column input with initial value""" - initial_value: abandoned_matches_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input abandoned_matches_stream_cursor_value_input { - abandoned_at: timestamptz - id: uuid - match_id: uuid - steam_id: bigint -} - -"""aggregate sum on columns""" -type abandoned_matches_sum_fields { - steam_id: bigint -} - -""" -order by sum() on columns of table "abandoned_matches" -""" -input abandoned_matches_sum_order_by { - steam_id: order_by -} - -""" -update columns of table "abandoned_matches" -""" -enum abandoned_matches_update_column { - """column name""" - abandoned_at - - """column name""" - id - - """column name""" - match_id - - """column name""" - steam_id -} - -input abandoned_matches_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: abandoned_matches_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: abandoned_matches_set_input - - """filter the rows which have to be updated""" - where: abandoned_matches_bool_exp! -} - -"""aggregate var_pop on columns""" -type abandoned_matches_var_pop_fields { - steam_id: Float -} - -""" -order by var_pop() on columns of table "abandoned_matches" -""" -input abandoned_matches_var_pop_order_by { - steam_id: order_by -} - -"""aggregate var_samp on columns""" -type abandoned_matches_var_samp_fields { - steam_id: Float -} - -""" -order by var_samp() on columns of table "abandoned_matches" -""" -input abandoned_matches_var_samp_order_by { - steam_id: order_by -} - -"""aggregate variance on columns""" -type abandoned_matches_variance_fields { - steam_id: Float -} - -""" -order by variance() on columns of table "abandoned_matches" -""" -input abandoned_matches_variance_order_by { - steam_id: order_by -} - -""" -columns and relationships of "api_keys" -""" -type api_keys { - created_at: timestamptz! - id: uuid! - label: String! - last_used_at: timestamptz - steam_id: bigint! -} - -""" -aggregated selection of "api_keys" -""" -type api_keys_aggregate { - aggregate: api_keys_aggregate_fields - nodes: [api_keys!]! -} - -""" -aggregate fields of "api_keys" -""" -type api_keys_aggregate_fields { - avg: api_keys_avg_fields - count(columns: [api_keys_select_column!], distinct: Boolean): Int! - max: api_keys_max_fields - min: api_keys_min_fields - stddev: api_keys_stddev_fields - stddev_pop: api_keys_stddev_pop_fields - stddev_samp: api_keys_stddev_samp_fields - sum: api_keys_sum_fields - var_pop: api_keys_var_pop_fields - var_samp: api_keys_var_samp_fields - variance: api_keys_variance_fields -} - -"""aggregate avg on columns""" -type api_keys_avg_fields { - steam_id: Float -} - -""" -Boolean expression to filter rows from the table "api_keys". All fields are combined with a logical 'AND'. -""" -input api_keys_bool_exp { - _and: [api_keys_bool_exp!] - _not: api_keys_bool_exp - _or: [api_keys_bool_exp!] - created_at: timestamptz_comparison_exp - id: uuid_comparison_exp - label: String_comparison_exp - last_used_at: timestamptz_comparison_exp - steam_id: bigint_comparison_exp -} - -""" -unique or primary key constraints on table "api_keys" -""" -enum api_keys_constraint { - """ - unique or primary key constraint on columns "id" - """ - api_keys_pkey -} - -""" -input type for incrementing numeric columns in table "api_keys" -""" -input api_keys_inc_input { - steam_id: bigint -} - -""" -input type for inserting data into table "api_keys" -""" -input api_keys_insert_input { - created_at: timestamptz - id: uuid - label: String - last_used_at: timestamptz - steam_id: bigint -} - -"""aggregate max on columns""" -type api_keys_max_fields { - created_at: timestamptz - id: uuid - label: String - last_used_at: timestamptz - steam_id: bigint -} - -"""aggregate min on columns""" -type api_keys_min_fields { - created_at: timestamptz - id: uuid - label: String - last_used_at: timestamptz - steam_id: bigint -} - -""" -response of any mutation on the table "api_keys" -""" -type api_keys_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [api_keys!]! -} - -""" -on_conflict condition type for table "api_keys" -""" -input api_keys_on_conflict { - constraint: api_keys_constraint! - update_columns: [api_keys_update_column!]! = [] - where: api_keys_bool_exp -} - -"""Ordering options when selecting data from "api_keys".""" -input api_keys_order_by { - created_at: order_by - id: order_by - label: order_by - last_used_at: order_by - steam_id: order_by -} - -"""primary key columns input for table: api_keys""" -input api_keys_pk_columns_input { - id: uuid! -} - -""" -select columns of table "api_keys" -""" -enum api_keys_select_column { - """column name""" - created_at - - """column name""" - id - - """column name""" - label - - """column name""" - last_used_at - - """column name""" - steam_id -} - -""" -input type for updating data in table "api_keys" -""" -input api_keys_set_input { - created_at: timestamptz - id: uuid - label: String - last_used_at: timestamptz - steam_id: bigint -} - -"""aggregate stddev on columns""" -type api_keys_stddev_fields { - steam_id: Float -} - -"""aggregate stddev_pop on columns""" -type api_keys_stddev_pop_fields { - steam_id: Float -} - -"""aggregate stddev_samp on columns""" -type api_keys_stddev_samp_fields { - steam_id: Float -} - -""" -Streaming cursor of the table "api_keys" -""" -input api_keys_stream_cursor_input { - """Stream column input with initial value""" - initial_value: api_keys_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input api_keys_stream_cursor_value_input { - created_at: timestamptz - id: uuid - label: String - last_used_at: timestamptz - steam_id: bigint -} - -"""aggregate sum on columns""" -type api_keys_sum_fields { - steam_id: bigint -} - -""" -update columns of table "api_keys" -""" -enum api_keys_update_column { - """column name""" - created_at - - """column name""" - id - - """column name""" - label - - """column name""" - last_used_at - - """column name""" - steam_id -} - -input api_keys_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: api_keys_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: api_keys_set_input - - """filter the rows which have to be updated""" - where: api_keys_bool_exp! -} - -"""aggregate var_pop on columns""" -type api_keys_var_pop_fields { - steam_id: Float -} - -"""aggregate var_samp on columns""" -type api_keys_var_samp_fields { - steam_id: Float -} - -"""aggregate variance on columns""" -type api_keys_variance_fields { - steam_id: Float -} - -input approve_league_season_movements_args { - _league_season_id: uuid -} - -""" -columns and relationships of "award_recipients" -""" -type award_recipients { - """An object relationship""" - award: awards! - award_id: uuid! - - """An object relationship""" - awarded_by: players - awarded_by_steam_id: bigint - created_at: timestamptz! - - """An object relationship""" - event: events - event_id: uuid - id: uuid! - - """An object relationship""" - league_season: league_seasons - league_season_id: uuid - note: String - placement: Int - placement_tier: String - - """An object relationship""" - player: players - player_steam_id: bigint - - """An object relationship""" - season: seasons - season_id: uuid - source: e_award_sources_enum! - - """An object relationship""" - team: teams - team_id: uuid - - """An object relationship""" - tournament: tournaments - - """An object relationship""" - tournament_award: tournament_awards - tournament_id: uuid - - """An object relationship""" - tournament_team: tournament_teams - tournament_team_id: uuid -} - -""" -aggregated selection of "award_recipients" -""" -type award_recipients_aggregate { - aggregate: award_recipients_aggregate_fields - nodes: [award_recipients!]! -} - -input award_recipients_aggregate_bool_exp { - count: award_recipients_aggregate_bool_exp_count -} - -input award_recipients_aggregate_bool_exp_count { - arguments: [award_recipients_select_column!] - distinct: Boolean - filter: award_recipients_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "award_recipients" -""" -type award_recipients_aggregate_fields { - avg: award_recipients_avg_fields - count(columns: [award_recipients_select_column!], distinct: Boolean): Int! - max: award_recipients_max_fields - min: award_recipients_min_fields - stddev: award_recipients_stddev_fields - stddev_pop: award_recipients_stddev_pop_fields - stddev_samp: award_recipients_stddev_samp_fields - sum: award_recipients_sum_fields - var_pop: award_recipients_var_pop_fields - var_samp: award_recipients_var_samp_fields - variance: award_recipients_variance_fields -} - -""" -order by aggregate values of table "award_recipients" -""" -input award_recipients_aggregate_order_by { - avg: award_recipients_avg_order_by - count: order_by - max: award_recipients_max_order_by - min: award_recipients_min_order_by - stddev: award_recipients_stddev_order_by - stddev_pop: award_recipients_stddev_pop_order_by - stddev_samp: award_recipients_stddev_samp_order_by - sum: award_recipients_sum_order_by - var_pop: award_recipients_var_pop_order_by - var_samp: award_recipients_var_samp_order_by - variance: award_recipients_variance_order_by -} - -""" -input type for inserting array relation for remote table "award_recipients" -""" -input award_recipients_arr_rel_insert_input { - data: [award_recipients_insert_input!]! - - """upsert condition""" - on_conflict: award_recipients_on_conflict -} - -"""aggregate avg on columns""" -type award_recipients_avg_fields { - awarded_by_steam_id: Float - placement: Float - player_steam_id: Float -} - -""" -order by avg() on columns of table "award_recipients" -""" -input award_recipients_avg_order_by { - awarded_by_steam_id: order_by - placement: order_by - player_steam_id: order_by -} - -""" -Boolean expression to filter rows from the table "award_recipients". All fields are combined with a logical 'AND'. -""" -input award_recipients_bool_exp { - _and: [award_recipients_bool_exp!] - _not: award_recipients_bool_exp - _or: [award_recipients_bool_exp!] - award: awards_bool_exp - award_id: uuid_comparison_exp - awarded_by: players_bool_exp - awarded_by_steam_id: bigint_comparison_exp - created_at: timestamptz_comparison_exp - event: events_bool_exp - event_id: uuid_comparison_exp - id: uuid_comparison_exp - league_season: league_seasons_bool_exp - league_season_id: uuid_comparison_exp - note: String_comparison_exp - placement: Int_comparison_exp - placement_tier: String_comparison_exp - player: players_bool_exp - player_steam_id: bigint_comparison_exp - season: seasons_bool_exp - season_id: uuid_comparison_exp - source: e_award_sources_enum_comparison_exp - team: teams_bool_exp - team_id: uuid_comparison_exp - tournament: tournaments_bool_exp - tournament_award: tournament_awards_bool_exp - tournament_id: uuid_comparison_exp - tournament_team: tournament_teams_bool_exp - tournament_team_id: uuid_comparison_exp -} - -""" -unique or primary key constraints on table "award_recipients" -""" -enum award_recipients_constraint { - """ - unique or primary key constraint on columns "tournament_id" - """ - award_recipients_one_mvp_per_tournament - - """ - unique or primary key constraint on columns "id" - """ - award_recipients_pkey - - """ - unique or primary key constraint on columns "player_steam_id", "placement", "tournament_team_id", "tournament_id" - """ - award_recipients_player_recipient_key - - """ - unique or primary key constraint on columns "player_steam_id", "placement", "season_id" - """ - award_recipients_season_player_key - - """ - unique or primary key constraint on columns "placement", "tournament_team_id", "tournament_id", "team_id" - """ - award_recipients_team_recipient_key -} - -""" -input type for incrementing numeric columns in table "award_recipients" -""" -input award_recipients_inc_input { - awarded_by_steam_id: bigint - placement: Int - player_steam_id: bigint -} - -""" -input type for inserting data into table "award_recipients" -""" -input award_recipients_insert_input { - award: awards_obj_rel_insert_input - award_id: uuid - awarded_by: players_obj_rel_insert_input - awarded_by_steam_id: bigint - created_at: timestamptz - event: events_obj_rel_insert_input - event_id: uuid - id: uuid - league_season: league_seasons_obj_rel_insert_input - league_season_id: uuid - note: String - placement: Int - player: players_obj_rel_insert_input - player_steam_id: bigint - season: seasons_obj_rel_insert_input - season_id: uuid - source: e_award_sources_enum - team: teams_obj_rel_insert_input - team_id: uuid - tournament: tournaments_obj_rel_insert_input - tournament_award: tournament_awards_obj_rel_insert_input - tournament_id: uuid - tournament_team: tournament_teams_obj_rel_insert_input - tournament_team_id: uuid -} - -"""aggregate max on columns""" -type award_recipients_max_fields { - award_id: uuid - awarded_by_steam_id: bigint - created_at: timestamptz - event_id: uuid - id: uuid - league_season_id: uuid - note: String - placement: Int - placement_tier: String - player_steam_id: bigint - season_id: uuid - team_id: uuid - tournament_id: uuid - tournament_team_id: uuid -} - -""" -order by max() on columns of table "award_recipients" -""" -input award_recipients_max_order_by { - award_id: order_by - awarded_by_steam_id: order_by - created_at: order_by - event_id: order_by - id: order_by - league_season_id: order_by - note: order_by - placement: order_by - placement_tier: order_by - player_steam_id: order_by - season_id: order_by - team_id: order_by - tournament_id: order_by - tournament_team_id: order_by -} - -"""aggregate min on columns""" -type award_recipients_min_fields { - award_id: uuid - awarded_by_steam_id: bigint - created_at: timestamptz - event_id: uuid - id: uuid - league_season_id: uuid - note: String - placement: Int - placement_tier: String - player_steam_id: bigint - season_id: uuid - team_id: uuid - tournament_id: uuid - tournament_team_id: uuid -} - -""" -order by min() on columns of table "award_recipients" -""" -input award_recipients_min_order_by { - award_id: order_by - awarded_by_steam_id: order_by - created_at: order_by - event_id: order_by - id: order_by - league_season_id: order_by - note: order_by - placement: order_by - placement_tier: order_by - player_steam_id: order_by - season_id: order_by - team_id: order_by - tournament_id: order_by - tournament_team_id: order_by -} - -""" -response of any mutation on the table "award_recipients" -""" -type award_recipients_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [award_recipients!]! -} - -""" -on_conflict condition type for table "award_recipients" -""" -input award_recipients_on_conflict { - constraint: award_recipients_constraint! - update_columns: [award_recipients_update_column!]! = [] - where: award_recipients_bool_exp -} - -"""Ordering options when selecting data from "award_recipients".""" -input award_recipients_order_by { - award: awards_order_by - award_id: order_by - awarded_by: players_order_by - awarded_by_steam_id: order_by - created_at: order_by - event: events_order_by - event_id: order_by - id: order_by - league_season: league_seasons_order_by - league_season_id: order_by - note: order_by - placement: order_by - placement_tier: order_by - player: players_order_by - player_steam_id: order_by - season: seasons_order_by - season_id: order_by - source: order_by - team: teams_order_by - team_id: order_by - tournament: tournaments_order_by - tournament_award: tournament_awards_order_by - tournament_id: order_by - tournament_team: tournament_teams_order_by - tournament_team_id: order_by -} - -"""primary key columns input for table: award_recipients""" -input award_recipients_pk_columns_input { - id: uuid! -} - -""" -select columns of table "award_recipients" -""" -enum award_recipients_select_column { - """column name""" - award_id - - """column name""" - awarded_by_steam_id - - """column name""" - created_at - - """column name""" - event_id - - """column name""" - id - - """column name""" - league_season_id - - """column name""" - note - - """column name""" - placement - - """column name""" - placement_tier - - """column name""" - player_steam_id - - """column name""" - season_id - - """column name""" - source - - """column name""" - team_id - - """column name""" - tournament_id - - """column name""" - tournament_team_id -} - -""" -input type for updating data in table "award_recipients" -""" -input award_recipients_set_input { - award_id: uuid - awarded_by_steam_id: bigint - created_at: timestamptz - event_id: uuid - id: uuid - league_season_id: uuid - note: String - placement: Int - player_steam_id: bigint - season_id: uuid - source: e_award_sources_enum - team_id: uuid - tournament_id: uuid - tournament_team_id: uuid -} - -"""aggregate stddev on columns""" -type award_recipients_stddev_fields { - awarded_by_steam_id: Float - placement: Float - player_steam_id: Float -} - -""" -order by stddev() on columns of table "award_recipients" -""" -input award_recipients_stddev_order_by { - awarded_by_steam_id: order_by - placement: order_by - player_steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type award_recipients_stddev_pop_fields { - awarded_by_steam_id: Float - placement: Float - player_steam_id: Float -} - -""" -order by stddev_pop() on columns of table "award_recipients" -""" -input award_recipients_stddev_pop_order_by { - awarded_by_steam_id: order_by - placement: order_by - player_steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type award_recipients_stddev_samp_fields { - awarded_by_steam_id: Float - placement: Float - player_steam_id: Float -} - -""" -order by stddev_samp() on columns of table "award_recipients" -""" -input award_recipients_stddev_samp_order_by { - awarded_by_steam_id: order_by - placement: order_by - player_steam_id: order_by -} - -""" -Streaming cursor of the table "award_recipients" -""" -input award_recipients_stream_cursor_input { - """Stream column input with initial value""" - initial_value: award_recipients_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input award_recipients_stream_cursor_value_input { - award_id: uuid - awarded_by_steam_id: bigint - created_at: timestamptz - event_id: uuid - id: uuid - league_season_id: uuid - note: String - placement: Int - placement_tier: String - player_steam_id: bigint - season_id: uuid - source: e_award_sources_enum - team_id: uuid - tournament_id: uuid - tournament_team_id: uuid -} - -"""aggregate sum on columns""" -type award_recipients_sum_fields { - awarded_by_steam_id: bigint - placement: Int - player_steam_id: bigint -} - -""" -order by sum() on columns of table "award_recipients" -""" -input award_recipients_sum_order_by { - awarded_by_steam_id: order_by - placement: order_by - player_steam_id: order_by -} - -""" -update columns of table "award_recipients" -""" -enum award_recipients_update_column { - """column name""" - award_id - - """column name""" - awarded_by_steam_id - - """column name""" - created_at - - """column name""" - event_id - - """column name""" - id - - """column name""" - league_season_id - - """column name""" - note - - """column name""" - placement - - """column name""" - player_steam_id - - """column name""" - season_id - - """column name""" - source - - """column name""" - team_id - - """column name""" - tournament_id - - """column name""" - tournament_team_id -} - -input award_recipients_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: award_recipients_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: award_recipients_set_input - - """filter the rows which have to be updated""" - where: award_recipients_bool_exp! -} - -"""aggregate var_pop on columns""" -type award_recipients_var_pop_fields { - awarded_by_steam_id: Float - placement: Float - player_steam_id: Float -} - -""" -order by var_pop() on columns of table "award_recipients" -""" -input award_recipients_var_pop_order_by { - awarded_by_steam_id: order_by - placement: order_by - player_steam_id: order_by -} - -"""aggregate var_samp on columns""" -type award_recipients_var_samp_fields { - awarded_by_steam_id: Float - placement: Float - player_steam_id: Float -} - -""" -order by var_samp() on columns of table "award_recipients" -""" -input award_recipients_var_samp_order_by { - awarded_by_steam_id: order_by - placement: order_by - player_steam_id: order_by -} - -"""aggregate variance on columns""" -type award_recipients_variance_fields { - awarded_by_steam_id: Float - placement: Float - player_steam_id: Float -} - -""" -order by variance() on columns of table "award_recipients" -""" -input award_recipients_variance_order_by { - awarded_by_steam_id: order_by - placement: order_by - player_steam_id: order_by -} - -""" -columns and relationships of "awards" -""" -type awards { - allow_multiple: Boolean! - created_at: timestamptz! - - """An object relationship""" - created_by: players - created_by_steam_id: bigint - description: String - - """An object relationship""" - event: events - event_id: uuid - id: uuid! - image_url: String - - """An object relationship""" - league_season: league_seasons - league_season_id: uuid - name: String! - - """An array relationship""" - recipients( - """distinct select on columns""" - distinct_on: [award_recipients_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: [award_recipients_order_by!] - - """filter the rows returned""" - where: award_recipients_bool_exp - ): [award_recipients!]! - - """An aggregate relationship""" - recipients_aggregate( - """distinct select on columns""" - distinct_on: [award_recipients_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: [award_recipients_order_by!] - - """filter the rows returned""" - where: award_recipients_bool_exp - ): award_recipients_aggregate! - - """An object relationship""" - season: seasons - season_id: uuid - silhouette: Int - system_key: String - tier: e_award_tiers_enum! - - """An object relationship""" - tournament: tournaments - - """An array relationship""" - tournament_configs( - """distinct select on columns""" - distinct_on: [tournament_awards_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_awards_order_by!] - - """filter the rows returned""" - where: tournament_awards_bool_exp - ): [tournament_awards!]! - - """An aggregate relationship""" - tournament_configs_aggregate( - """distinct select on columns""" - distinct_on: [tournament_awards_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_awards_order_by!] - - """filter the rows returned""" - where: tournament_awards_bool_exp - ): tournament_awards_aggregate! - tournament_id: uuid - updated_at: timestamptz! -} - -""" -aggregated selection of "awards" -""" -type awards_aggregate { - aggregate: awards_aggregate_fields - nodes: [awards!]! -} - -""" -aggregate fields of "awards" -""" -type awards_aggregate_fields { - avg: awards_avg_fields - count(columns: [awards_select_column!], distinct: Boolean): Int! - max: awards_max_fields - min: awards_min_fields - stddev: awards_stddev_fields - stddev_pop: awards_stddev_pop_fields - stddev_samp: awards_stddev_samp_fields - sum: awards_sum_fields - var_pop: awards_var_pop_fields - var_samp: awards_var_samp_fields - variance: awards_variance_fields -} - -"""aggregate avg on columns""" -type awards_avg_fields { - created_by_steam_id: Float - silhouette: Float -} - -""" -Boolean expression to filter rows from the table "awards". All fields are combined with a logical 'AND'. -""" -input awards_bool_exp { - _and: [awards_bool_exp!] - _not: awards_bool_exp - _or: [awards_bool_exp!] - allow_multiple: Boolean_comparison_exp - created_at: timestamptz_comparison_exp - created_by: players_bool_exp - created_by_steam_id: bigint_comparison_exp - description: String_comparison_exp - event: events_bool_exp - event_id: uuid_comparison_exp - id: uuid_comparison_exp - image_url: String_comparison_exp - league_season: league_seasons_bool_exp - league_season_id: uuid_comparison_exp - name: String_comparison_exp - recipients: award_recipients_bool_exp - recipients_aggregate: award_recipients_aggregate_bool_exp - season: seasons_bool_exp - season_id: uuid_comparison_exp - silhouette: Int_comparison_exp - system_key: String_comparison_exp - tier: e_award_tiers_enum_comparison_exp - tournament: tournaments_bool_exp - tournament_configs: tournament_awards_bool_exp - tournament_configs_aggregate: tournament_awards_aggregate_bool_exp - tournament_id: uuid_comparison_exp - updated_at: timestamptz_comparison_exp -} - -""" -unique or primary key constraints on table "awards" -""" -enum awards_constraint { - """ - unique or primary key constraint on columns "id" - """ - awards_pkey - - """ - unique or primary key constraint on columns "system_key" - """ - awards_system_key_key -} - -""" -input type for incrementing numeric columns in table "awards" -""" -input awards_inc_input { - created_by_steam_id: bigint - silhouette: Int -} - -""" -input type for inserting data into table "awards" -""" -input awards_insert_input { - allow_multiple: Boolean - created_at: timestamptz - created_by: players_obj_rel_insert_input - created_by_steam_id: bigint - description: String - event: events_obj_rel_insert_input - event_id: uuid - id: uuid - image_url: String - league_season: league_seasons_obj_rel_insert_input - league_season_id: uuid - name: String - recipients: award_recipients_arr_rel_insert_input - season: seasons_obj_rel_insert_input - season_id: uuid - silhouette: Int - system_key: String - tier: e_award_tiers_enum - tournament: tournaments_obj_rel_insert_input - tournament_configs: tournament_awards_arr_rel_insert_input - tournament_id: uuid - updated_at: timestamptz -} - -"""aggregate max on columns""" -type awards_max_fields { - created_at: timestamptz - created_by_steam_id: bigint - description: String - event_id: uuid - id: uuid - image_url: String - league_season_id: uuid - name: String - season_id: uuid - silhouette: Int - system_key: String - tournament_id: uuid - updated_at: timestamptz -} - -"""aggregate min on columns""" -type awards_min_fields { - created_at: timestamptz - created_by_steam_id: bigint - description: String - event_id: uuid - id: uuid - image_url: String - league_season_id: uuid - name: String - season_id: uuid - silhouette: Int - system_key: String - tournament_id: uuid - updated_at: timestamptz -} - -""" -response of any mutation on the table "awards" -""" -type awards_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [awards!]! -} - -""" -input type for inserting object relation for remote table "awards" -""" -input awards_obj_rel_insert_input { - data: awards_insert_input! - - """upsert condition""" - on_conflict: awards_on_conflict -} - -""" -on_conflict condition type for table "awards" -""" -input awards_on_conflict { - constraint: awards_constraint! - update_columns: [awards_update_column!]! = [] - where: awards_bool_exp -} - -"""Ordering options when selecting data from "awards".""" -input awards_order_by { - allow_multiple: order_by - created_at: order_by - created_by: players_order_by - created_by_steam_id: order_by - description: order_by - event: events_order_by - event_id: order_by - id: order_by - image_url: order_by - league_season: league_seasons_order_by - league_season_id: order_by - name: order_by - recipients_aggregate: award_recipients_aggregate_order_by - season: seasons_order_by - season_id: order_by - silhouette: order_by - system_key: order_by - tier: order_by - tournament: tournaments_order_by - tournament_configs_aggregate: tournament_awards_aggregate_order_by - tournament_id: order_by - updated_at: order_by -} - -"""primary key columns input for table: awards""" -input awards_pk_columns_input { - id: uuid! -} - -""" -select columns of table "awards" -""" -enum awards_select_column { - """column name""" - allow_multiple - - """column name""" - created_at - - """column name""" - created_by_steam_id - - """column name""" - description - - """column name""" - event_id - - """column name""" - id - - """column name""" - image_url - - """column name""" - league_season_id - - """column name""" - name - - """column name""" - season_id - - """column name""" - silhouette - - """column name""" - system_key - - """column name""" - tier - - """column name""" - tournament_id - - """column name""" - updated_at -} - -""" -input type for updating data in table "awards" -""" -input awards_set_input { - allow_multiple: Boolean - created_at: timestamptz - created_by_steam_id: bigint - description: String - event_id: uuid - id: uuid - image_url: String - league_season_id: uuid - name: String - season_id: uuid - silhouette: Int - system_key: String - tier: e_award_tiers_enum - tournament_id: uuid - updated_at: timestamptz -} - -"""aggregate stddev on columns""" -type awards_stddev_fields { - created_by_steam_id: Float - silhouette: Float -} - -"""aggregate stddev_pop on columns""" -type awards_stddev_pop_fields { - created_by_steam_id: Float - silhouette: Float -} - -"""aggregate stddev_samp on columns""" -type awards_stddev_samp_fields { - created_by_steam_id: Float - silhouette: Float -} - -""" -Streaming cursor of the table "awards" -""" -input awards_stream_cursor_input { - """Stream column input with initial value""" - initial_value: awards_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input awards_stream_cursor_value_input { - allow_multiple: Boolean - created_at: timestamptz - created_by_steam_id: bigint - description: String - event_id: uuid - id: uuid - image_url: String - league_season_id: uuid - name: String - season_id: uuid - silhouette: Int - system_key: String - tier: e_award_tiers_enum - tournament_id: uuid - updated_at: timestamptz -} - -"""aggregate sum on columns""" -type awards_sum_fields { - created_by_steam_id: bigint - silhouette: Int -} - -""" -update columns of table "awards" -""" -enum awards_update_column { - """column name""" - allow_multiple - - """column name""" - created_at - - """column name""" - created_by_steam_id - - """column name""" - description - - """column name""" - event_id - - """column name""" - id - - """column name""" - image_url - - """column name""" - league_season_id - - """column name""" - name - - """column name""" - season_id - - """column name""" - silhouette - - """column name""" - system_key - - """column name""" - tier - - """column name""" - tournament_id - - """column name""" - updated_at -} - -input awards_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: awards_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: awards_set_input - - """filter the rows which have to be updated""" - where: awards_bool_exp! -} - -"""aggregate var_pop on columns""" -type awards_var_pop_fields { - created_by_steam_id: Float - silhouette: Float -} - -"""aggregate var_samp on columns""" -type awards_var_samp_fields { - created_by_steam_id: Float - silhouette: Float -} - -"""aggregate variance on columns""" -type awards_variance_fields { - created_by_steam_id: Float - silhouette: Float -} - -scalar bigint - -""" -Boolean expression to compare columns of type "bigint". All fields are combined with logical 'AND'. -""" -input bigint_array_comparison_exp { - """is the array contained in the given array value""" - _contained_in: [bigint!] - - """does the array contain the given value""" - _contains: [bigint!] - _eq: [bigint!] - _gt: [bigint!] - _gte: [bigint!] - _in: [[bigint!]!] - _is_null: Boolean - _lt: [bigint!] - _lte: [bigint!] - _neq: [bigint!] - _nin: [[bigint!]!] -} - -""" -Boolean expression to compare columns of type "bigint". All fields are combined with logical 'AND'. -""" -input bigint_comparison_exp { - _eq: bigint - _gt: bigint - _gte: bigint - _in: [bigint!] - _is_null: Boolean - _lt: bigint - _lte: bigint - _neq: bigint - _nin: [bigint!] -} - -scalar bytea - -""" -Boolean expression to compare columns of type "bytea". All fields are combined with logical 'AND'. -""" -input bytea_comparison_exp { - _eq: bytea - _gt: bytea - _gte: bytea - _in: [bytea!] - _is_null: Boolean - _lt: bytea - _lte: bytea - _neq: bytea - _nin: [bytea!] -} - -""" -columns and relationships of "chat_read_state" -""" -type chat_read_state { - last_read_at: timestamptz! - steam_id: bigint! - thread: String! -} - -""" -aggregated selection of "chat_read_state" -""" -type chat_read_state_aggregate { - aggregate: chat_read_state_aggregate_fields - nodes: [chat_read_state!]! -} - -""" -aggregate fields of "chat_read_state" -""" -type chat_read_state_aggregate_fields { - avg: chat_read_state_avg_fields - count(columns: [chat_read_state_select_column!], distinct: Boolean): Int! - max: chat_read_state_max_fields - min: chat_read_state_min_fields - stddev: chat_read_state_stddev_fields - stddev_pop: chat_read_state_stddev_pop_fields - stddev_samp: chat_read_state_stddev_samp_fields - sum: chat_read_state_sum_fields - var_pop: chat_read_state_var_pop_fields - var_samp: chat_read_state_var_samp_fields - variance: chat_read_state_variance_fields -} - -"""aggregate avg on columns""" -type chat_read_state_avg_fields { - steam_id: Float -} - -""" -Boolean expression to filter rows from the table "chat_read_state". All fields are combined with a logical 'AND'. -""" -input chat_read_state_bool_exp { - _and: [chat_read_state_bool_exp!] - _not: chat_read_state_bool_exp - _or: [chat_read_state_bool_exp!] - last_read_at: timestamptz_comparison_exp - steam_id: bigint_comparison_exp - thread: String_comparison_exp -} - -""" -unique or primary key constraints on table "chat_read_state" -""" -enum chat_read_state_constraint { - """ - unique or primary key constraint on columns "steam_id", "thread" - """ - chat_read_state_pkey -} - -""" -input type for incrementing numeric columns in table "chat_read_state" -""" -input chat_read_state_inc_input { - steam_id: bigint -} - -""" -input type for inserting data into table "chat_read_state" -""" -input chat_read_state_insert_input { - last_read_at: timestamptz - steam_id: bigint - thread: String -} - -"""aggregate max on columns""" -type chat_read_state_max_fields { - last_read_at: timestamptz - steam_id: bigint - thread: String -} - -"""aggregate min on columns""" -type chat_read_state_min_fields { - last_read_at: timestamptz - steam_id: bigint - thread: String -} - -""" -response of any mutation on the table "chat_read_state" -""" -type chat_read_state_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [chat_read_state!]! -} - -""" -on_conflict condition type for table "chat_read_state" -""" -input chat_read_state_on_conflict { - constraint: chat_read_state_constraint! - update_columns: [chat_read_state_update_column!]! = [] - where: chat_read_state_bool_exp -} - -"""Ordering options when selecting data from "chat_read_state".""" -input chat_read_state_order_by { - last_read_at: order_by - steam_id: order_by - thread: order_by -} - -"""primary key columns input for table: chat_read_state""" -input chat_read_state_pk_columns_input { - steam_id: bigint! - thread: String! -} - -""" -select columns of table "chat_read_state" -""" -enum chat_read_state_select_column { - """column name""" - last_read_at - - """column name""" - steam_id - - """column name""" - thread -} - -""" -input type for updating data in table "chat_read_state" -""" -input chat_read_state_set_input { - last_read_at: timestamptz - steam_id: bigint - thread: String -} - -"""aggregate stddev on columns""" -type chat_read_state_stddev_fields { - steam_id: Float -} - -"""aggregate stddev_pop on columns""" -type chat_read_state_stddev_pop_fields { - steam_id: Float -} - -"""aggregate stddev_samp on columns""" -type chat_read_state_stddev_samp_fields { - steam_id: Float -} - -""" -Streaming cursor of the table "chat_read_state" -""" -input 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 -} - -"""Initial value of the column from where the streaming should start""" -input chat_read_state_stream_cursor_value_input { - last_read_at: timestamptz - steam_id: bigint - thread: String -} - -"""aggregate sum on columns""" -type chat_read_state_sum_fields { - steam_id: bigint -} - -""" -update columns of table "chat_read_state" -""" -enum chat_read_state_update_column { - """column name""" - last_read_at - - """column name""" - steam_id - - """column name""" - thread -} - -input chat_read_state_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: chat_read_state_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: chat_read_state_set_input - - """filter the rows which have to be updated""" - where: chat_read_state_bool_exp! -} - -"""aggregate var_pop on columns""" -type chat_read_state_var_pop_fields { - steam_id: Float -} - -"""aggregate var_samp on columns""" -type chat_read_state_var_samp_fields { - steam_id: Float -} - -"""aggregate variance on columns""" -type chat_read_state_variance_fields { - steam_id: Float -} - -""" -columns and relationships of "clip_render_jobs" -""" -type clip_render_jobs { - """An object relationship""" - clip: match_clips - clip_id: uuid - created_at: timestamptz! - error_message: String - - """An object relationship""" - game_server_node: game_server_nodes - game_server_node_id: String - id: uuid! - k8s_job_name: String! - last_status_at: timestamptz! - - """An object relationship""" - match_map: match_maps! - - """An object relationship""" - match_map_demo: match_map_demos - match_map_demo_id: uuid - match_map_id: uuid! - paused: Boolean! - progress: numeric - session_token: String! - sort_index: Int! - spec( - """JSON select path""" - path: String - ): jsonb! - status: String! - status_history( - """JSON select path""" - path: String - ): jsonb! - - """An object relationship""" - user: players - user_steam_id: bigint -} - -""" -aggregated selection of "clip_render_jobs" -""" -type clip_render_jobs_aggregate { - aggregate: clip_render_jobs_aggregate_fields - nodes: [clip_render_jobs!]! -} - -input clip_render_jobs_aggregate_bool_exp { - bool_and: clip_render_jobs_aggregate_bool_exp_bool_and - bool_or: clip_render_jobs_aggregate_bool_exp_bool_or - count: clip_render_jobs_aggregate_bool_exp_count -} - -input 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: Boolean - filter: clip_render_jobs_bool_exp - predicate: Boolean_comparison_exp! -} - -input 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: Boolean - filter: clip_render_jobs_bool_exp - predicate: Boolean_comparison_exp! -} - -input clip_render_jobs_aggregate_bool_exp_count { - arguments: [clip_render_jobs_select_column!] - distinct: Boolean - filter: clip_render_jobs_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "clip_render_jobs" -""" -type clip_render_jobs_aggregate_fields { - avg: clip_render_jobs_avg_fields - count(columns: [clip_render_jobs_select_column!], distinct: Boolean): Int! - max: clip_render_jobs_max_fields - min: clip_render_jobs_min_fields - stddev: clip_render_jobs_stddev_fields - stddev_pop: clip_render_jobs_stddev_pop_fields - stddev_samp: clip_render_jobs_stddev_samp_fields - sum: clip_render_jobs_sum_fields - var_pop: clip_render_jobs_var_pop_fields - var_samp: clip_render_jobs_var_samp_fields - variance: clip_render_jobs_variance_fields -} - -""" -order by aggregate values of table "clip_render_jobs" -""" -input clip_render_jobs_aggregate_order_by { - avg: clip_render_jobs_avg_order_by - count: order_by - max: clip_render_jobs_max_order_by - min: clip_render_jobs_min_order_by - stddev: clip_render_jobs_stddev_order_by - stddev_pop: clip_render_jobs_stddev_pop_order_by - stddev_samp: clip_render_jobs_stddev_samp_order_by - sum: clip_render_jobs_sum_order_by - var_pop: clip_render_jobs_var_pop_order_by - var_samp: clip_render_jobs_var_samp_order_by - variance: clip_render_jobs_variance_order_by -} - -"""append existing jsonb value of filtered columns with new jsonb value""" -input clip_render_jobs_append_input { - spec: jsonb - status_history: jsonb -} - -""" -input type for inserting array relation for remote table "clip_render_jobs" -""" -input clip_render_jobs_arr_rel_insert_input { - data: [clip_render_jobs_insert_input!]! - - """upsert condition""" - on_conflict: clip_render_jobs_on_conflict -} - -"""aggregate avg on columns""" -type clip_render_jobs_avg_fields { - progress: Float - sort_index: Float - user_steam_id: Float -} - -""" -order by avg() on columns of table "clip_render_jobs" -""" -input clip_render_jobs_avg_order_by { - progress: order_by - sort_index: order_by - user_steam_id: order_by -} - -""" -Boolean expression to filter rows from the table "clip_render_jobs". All fields are combined with a logical 'AND'. -""" -input clip_render_jobs_bool_exp { - _and: [clip_render_jobs_bool_exp!] - _not: clip_render_jobs_bool_exp - _or: [clip_render_jobs_bool_exp!] - clip: match_clips_bool_exp - clip_id: uuid_comparison_exp - created_at: timestamptz_comparison_exp - error_message: String_comparison_exp - game_server_node: game_server_nodes_bool_exp - game_server_node_id: String_comparison_exp - id: uuid_comparison_exp - k8s_job_name: String_comparison_exp - last_status_at: timestamptz_comparison_exp - match_map: match_maps_bool_exp - match_map_demo: match_map_demos_bool_exp - match_map_demo_id: uuid_comparison_exp - match_map_id: uuid_comparison_exp - paused: Boolean_comparison_exp - progress: numeric_comparison_exp - session_token: String_comparison_exp - sort_index: Int_comparison_exp - spec: jsonb_comparison_exp - status: String_comparison_exp - status_history: jsonb_comparison_exp - user: players_bool_exp - user_steam_id: bigint_comparison_exp -} - -""" -unique or primary key constraints on table "clip_render_jobs" -""" -enum clip_render_jobs_constraint { - """ - unique or primary key constraint on columns "id" - """ - clip_render_jobs_pkey -} - -""" -delete the field or element with specified path (for JSON arrays, negative integers count from the end) -""" -input clip_render_jobs_delete_at_path_input { - spec: [String!] - status_history: [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 clip_render_jobs_delete_elem_input { - spec: Int - status_history: Int -} - -""" -delete key/value pair or string element. key/value pairs are matched based on their key value -""" -input clip_render_jobs_delete_key_input { - spec: String - status_history: String -} - -""" -input type for incrementing numeric columns in table "clip_render_jobs" -""" -input clip_render_jobs_inc_input { - progress: numeric - sort_index: Int - user_steam_id: bigint -} - -""" -input type for inserting data into table "clip_render_jobs" -""" -input clip_render_jobs_insert_input { - clip: match_clips_obj_rel_insert_input - clip_id: uuid - created_at: timestamptz - error_message: String - game_server_node: game_server_nodes_obj_rel_insert_input - game_server_node_id: String - id: uuid - k8s_job_name: String - last_status_at: timestamptz - match_map: match_maps_obj_rel_insert_input - match_map_demo: match_map_demos_obj_rel_insert_input - match_map_demo_id: uuid - match_map_id: uuid - paused: Boolean - progress: numeric - session_token: String - sort_index: Int - spec: jsonb - status: String - status_history: jsonb - user: players_obj_rel_insert_input - user_steam_id: bigint -} - -"""aggregate max on columns""" -type clip_render_jobs_max_fields { - clip_id: uuid - created_at: timestamptz - error_message: String - game_server_node_id: String - id: uuid - k8s_job_name: String - last_status_at: timestamptz - match_map_demo_id: uuid - match_map_id: uuid - progress: numeric - session_token: String - sort_index: Int - status: String - user_steam_id: bigint -} - -""" -order by max() on columns of table "clip_render_jobs" -""" -input clip_render_jobs_max_order_by { - clip_id: order_by - created_at: order_by - error_message: order_by - game_server_node_id: order_by - id: order_by - k8s_job_name: order_by - last_status_at: order_by - match_map_demo_id: order_by - match_map_id: order_by - progress: order_by - session_token: order_by - sort_index: order_by - status: order_by - user_steam_id: order_by -} - -"""aggregate min on columns""" -type clip_render_jobs_min_fields { - clip_id: uuid - created_at: timestamptz - error_message: String - game_server_node_id: String - id: uuid - k8s_job_name: String - last_status_at: timestamptz - match_map_demo_id: uuid - match_map_id: uuid - progress: numeric - session_token: String - sort_index: Int - status: String - user_steam_id: bigint -} - -""" -order by min() on columns of table "clip_render_jobs" -""" -input clip_render_jobs_min_order_by { - clip_id: order_by - created_at: order_by - error_message: order_by - game_server_node_id: order_by - id: order_by - k8s_job_name: order_by - last_status_at: order_by - match_map_demo_id: order_by - match_map_id: order_by - progress: order_by - session_token: order_by - sort_index: order_by - status: order_by - user_steam_id: order_by -} - -""" -response of any mutation on the table "clip_render_jobs" -""" -type clip_render_jobs_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [clip_render_jobs!]! -} - -""" -on_conflict condition type for table "clip_render_jobs" -""" -input clip_render_jobs_on_conflict { - constraint: clip_render_jobs_constraint! - update_columns: [clip_render_jobs_update_column!]! = [] - where: clip_render_jobs_bool_exp -} - -"""Ordering options when selecting data from "clip_render_jobs".""" -input clip_render_jobs_order_by { - clip: match_clips_order_by - clip_id: order_by - created_at: order_by - error_message: order_by - game_server_node: game_server_nodes_order_by - game_server_node_id: order_by - id: order_by - k8s_job_name: order_by - last_status_at: order_by - match_map: match_maps_order_by - match_map_demo: match_map_demos_order_by - match_map_demo_id: order_by - match_map_id: order_by - paused: order_by - progress: order_by - session_token: order_by - sort_index: order_by - spec: order_by - status: order_by - status_history: order_by - user: players_order_by - user_steam_id: order_by -} - -"""primary key columns input for table: clip_render_jobs""" -input clip_render_jobs_pk_columns_input { - id: uuid! -} - -"""prepend existing jsonb value of filtered columns with new jsonb value""" -input clip_render_jobs_prepend_input { - spec: jsonb - status_history: jsonb -} - -""" -select columns of table "clip_render_jobs" -""" -enum clip_render_jobs_select_column { - """column name""" - clip_id - - """column name""" - created_at - - """column name""" - error_message - - """column name""" - game_server_node_id - - """column name""" - id - - """column name""" - k8s_job_name - - """column name""" - last_status_at - - """column name""" - match_map_demo_id - - """column name""" - match_map_id - - """column name""" - paused - - """column name""" - progress - - """column name""" - session_token - - """column name""" - sort_index - - """column name""" - spec - - """column name""" - status - - """column name""" - status_history - - """column name""" - user_steam_id -} - -""" -select "clip_render_jobs_aggregate_bool_exp_bool_and_arguments_columns" columns of table "clip_render_jobs" -""" -enum clip_render_jobs_select_column_clip_render_jobs_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - paused -} - -""" -select "clip_render_jobs_aggregate_bool_exp_bool_or_arguments_columns" columns of table "clip_render_jobs" -""" -enum clip_render_jobs_select_column_clip_render_jobs_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - paused -} - -""" -input type for updating data in table "clip_render_jobs" -""" -input clip_render_jobs_set_input { - clip_id: uuid - created_at: timestamptz - error_message: String - game_server_node_id: String - id: uuid - k8s_job_name: String - last_status_at: timestamptz - match_map_demo_id: uuid - match_map_id: uuid - paused: Boolean - progress: numeric - session_token: String - sort_index: Int - spec: jsonb - status: String - status_history: jsonb - user_steam_id: bigint -} - -"""aggregate stddev on columns""" -type clip_render_jobs_stddev_fields { - progress: Float - sort_index: Float - user_steam_id: Float -} - -""" -order by stddev() on columns of table "clip_render_jobs" -""" -input clip_render_jobs_stddev_order_by { - progress: order_by - sort_index: order_by - user_steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type clip_render_jobs_stddev_pop_fields { - progress: Float - sort_index: Float - user_steam_id: Float -} - -""" -order by stddev_pop() on columns of table "clip_render_jobs" -""" -input clip_render_jobs_stddev_pop_order_by { - progress: order_by - sort_index: order_by - user_steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type clip_render_jobs_stddev_samp_fields { - progress: Float - sort_index: Float - user_steam_id: Float -} - -""" -order by stddev_samp() on columns of table "clip_render_jobs" -""" -input clip_render_jobs_stddev_samp_order_by { - progress: order_by - sort_index: order_by - user_steam_id: order_by -} - -""" -Streaming cursor of the table "clip_render_jobs" -""" -input clip_render_jobs_stream_cursor_input { - """Stream column input with initial value""" - initial_value: clip_render_jobs_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input clip_render_jobs_stream_cursor_value_input { - clip_id: uuid - created_at: timestamptz - error_message: String - game_server_node_id: String - id: uuid - k8s_job_name: String - last_status_at: timestamptz - match_map_demo_id: uuid - match_map_id: uuid - paused: Boolean - progress: numeric - session_token: String - sort_index: Int - spec: jsonb - status: String - status_history: jsonb - user_steam_id: bigint -} - -"""aggregate sum on columns""" -type clip_render_jobs_sum_fields { - progress: numeric - sort_index: Int - user_steam_id: bigint -} - -""" -order by sum() on columns of table "clip_render_jobs" -""" -input clip_render_jobs_sum_order_by { - progress: order_by - sort_index: order_by - user_steam_id: order_by -} - -""" -update columns of table "clip_render_jobs" -""" -enum clip_render_jobs_update_column { - """column name""" - clip_id - - """column name""" - created_at - - """column name""" - error_message - - """column name""" - game_server_node_id - - """column name""" - id - - """column name""" - k8s_job_name - - """column name""" - last_status_at - - """column name""" - match_map_demo_id - - """column name""" - match_map_id - - """column name""" - paused - - """column name""" - progress - - """column name""" - session_token - - """column name""" - sort_index - - """column name""" - spec - - """column name""" - status - - """column name""" - status_history - - """column name""" - user_steam_id -} - -input clip_render_jobs_updates { - """append existing jsonb value of filtered columns with new jsonb value""" - _append: clip_render_jobs_append_input - - """ - 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 - - """ - 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 - - """ - 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 - - """increments the numeric columns with given value of the filtered values""" - _inc: clip_render_jobs_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: clip_render_jobs_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: clip_render_jobs_set_input - - """filter the rows which have to be updated""" - where: clip_render_jobs_bool_exp! -} - -"""aggregate var_pop on columns""" -type clip_render_jobs_var_pop_fields { - progress: Float - sort_index: Float - user_steam_id: Float -} - -""" -order by var_pop() on columns of table "clip_render_jobs" -""" -input clip_render_jobs_var_pop_order_by { - progress: order_by - sort_index: order_by - user_steam_id: order_by -} - -"""aggregate var_samp on columns""" -type clip_render_jobs_var_samp_fields { - progress: Float - sort_index: Float - user_steam_id: Float -} - -""" -order by var_samp() on columns of table "clip_render_jobs" -""" -input clip_render_jobs_var_samp_order_by { - progress: order_by - sort_index: order_by - user_steam_id: order_by -} - -"""aggregate variance on columns""" -type clip_render_jobs_variance_fields { - progress: Float - sort_index: Float - user_steam_id: Float -} - -""" -order by variance() on columns of table "clip_render_jobs" -""" -input clip_render_jobs_variance_order_by { - progress: order_by - sort_index: order_by - user_steam_id: order_by -} - -input clone_league_season_args { - _league_season_id: uuid -} - -"""ordering argument of a cursor""" -enum cursor_ordering { - """ascending ordering of the cursor""" - ASC - - """descending ordering of the cursor""" - DESC -} - -""" -columns and relationships of "custom_pages" -""" -type custom_pages { - created_at: timestamptz! - deployments( - """JSON select path""" - path: String - ): jsonb! - enabled: Boolean! - exposed_module: String! - icon: String - id: uuid! - is_default: Boolean! - manifest_url: String - nav_group: String - nav_order: Int! - plugin_slug: String - profile_tab_label: String - remote_entry_url: String! - remote_scope: String! - required_role: e_player_roles_enum - slug: String! - title: String! - updated_at: timestamptz! -} - -""" -aggregated selection of "custom_pages" -""" -type custom_pages_aggregate { - aggregate: custom_pages_aggregate_fields - nodes: [custom_pages!]! -} - -""" -aggregate fields of "custom_pages" -""" -type custom_pages_aggregate_fields { - avg: custom_pages_avg_fields - count(columns: [custom_pages_select_column!], distinct: Boolean): Int! - max: custom_pages_max_fields - min: custom_pages_min_fields - stddev: custom_pages_stddev_fields - stddev_pop: custom_pages_stddev_pop_fields - stddev_samp: custom_pages_stddev_samp_fields - sum: custom_pages_sum_fields - var_pop: custom_pages_var_pop_fields - var_samp: custom_pages_var_samp_fields - variance: custom_pages_variance_fields -} - -"""append existing jsonb value of filtered columns with new jsonb value""" -input custom_pages_append_input { - deployments: jsonb -} - -"""aggregate avg on columns""" -type custom_pages_avg_fields { - nav_order: Float -} - -""" -Boolean expression to filter rows from the table "custom_pages". All fields are combined with a logical 'AND'. -""" -input custom_pages_bool_exp { - _and: [custom_pages_bool_exp!] - _not: custom_pages_bool_exp - _or: [custom_pages_bool_exp!] - created_at: timestamptz_comparison_exp - deployments: jsonb_comparison_exp - enabled: Boolean_comparison_exp - exposed_module: String_comparison_exp - icon: String_comparison_exp - id: uuid_comparison_exp - is_default: Boolean_comparison_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 - required_role: e_player_roles_enum_comparison_exp - slug: String_comparison_exp - title: String_comparison_exp - updated_at: timestamptz_comparison_exp -} - -""" -unique or primary key constraints on table "custom_pages" -""" -enum custom_pages_constraint { - """ - unique or primary key constraint on columns "id" - """ - custom_pages_pkey - - """ - unique or primary key constraint on columns "plugin_slug" - """ - custom_pages_plugin_slug_idx - - """ - unique or primary key constraint on columns "is_default" - """ - custom_pages_single_default_idx - - """ - unique or primary key constraint on columns "slug" - """ - custom_pages_slug_key -} - -""" -delete the field or element with specified path (for JSON arrays, negative integers count from the end) -""" -input custom_pages_delete_at_path_input { - deployments: [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 custom_pages_delete_elem_input { - deployments: Int -} - -""" -delete key/value pair or string element. key/value pairs are matched based on their key value -""" -input custom_pages_delete_key_input { - deployments: String -} - -""" -input type for incrementing numeric columns in table "custom_pages" -""" -input custom_pages_inc_input { - nav_order: Int -} - -""" -input type for inserting data into table "custom_pages" -""" -input custom_pages_insert_input { - created_at: timestamptz - deployments: jsonb - enabled: Boolean - exposed_module: String - icon: String - id: uuid - is_default: Boolean - manifest_url: String - nav_group: String - nav_order: Int - plugin_slug: String - profile_tab_label: String - remote_entry_url: String - remote_scope: String - required_role: e_player_roles_enum - slug: String - title: String - updated_at: timestamptz -} - -"""aggregate max on columns""" -type custom_pages_max_fields { - created_at: timestamptz - exposed_module: String - icon: String - id: uuid - manifest_url: String - nav_group: String - nav_order: Int - plugin_slug: String - profile_tab_label: String - remote_entry_url: String - remote_scope: String - slug: String - title: String - updated_at: timestamptz -} - -"""aggregate min on columns""" -type custom_pages_min_fields { - created_at: timestamptz - exposed_module: String - icon: String - id: uuid - manifest_url: String - nav_group: String - nav_order: Int - plugin_slug: String - profile_tab_label: String - remote_entry_url: String - remote_scope: String - slug: String - title: String - updated_at: timestamptz -} - -""" -response of any mutation on the table "custom_pages" -""" -type custom_pages_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [custom_pages!]! -} - -""" -on_conflict condition type for table "custom_pages" -""" -input custom_pages_on_conflict { - constraint: custom_pages_constraint! - update_columns: [custom_pages_update_column!]! = [] - where: custom_pages_bool_exp -} - -"""Ordering options when selecting data from "custom_pages".""" -input custom_pages_order_by { - created_at: order_by - deployments: order_by - enabled: order_by - exposed_module: order_by - icon: order_by - id: order_by - is_default: 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 - required_role: order_by - slug: order_by - title: order_by - updated_at: order_by -} - -"""primary key columns input for table: custom_pages""" -input custom_pages_pk_columns_input { - id: uuid! -} - -"""prepend existing jsonb value of filtered columns with new jsonb value""" -input custom_pages_prepend_input { - deployments: jsonb -} - -""" -select columns of table "custom_pages" -""" -enum custom_pages_select_column { - """column name""" - created_at - - """column name""" - deployments - - """column name""" - enabled - - """column name""" - exposed_module - - """column name""" - icon - - """column name""" - id - - """column name""" - is_default - - """column name""" - manifest_url - - """column name""" - nav_group - - """column name""" - nav_order - - """column name""" - plugin_slug - - """column name""" - profile_tab_label - - """column name""" - remote_entry_url - - """column name""" - remote_scope - - """column name""" - required_role - - """column name""" - slug - - """column name""" - title - - """column name""" - updated_at -} - -""" -input type for updating data in table "custom_pages" -""" -input custom_pages_set_input { - created_at: timestamptz - deployments: jsonb - enabled: Boolean - exposed_module: String - icon: String - id: uuid - is_default: Boolean - manifest_url: String - nav_group: String - nav_order: Int - plugin_slug: String - profile_tab_label: String - remote_entry_url: String - remote_scope: String - required_role: e_player_roles_enum - slug: String - title: String - updated_at: timestamptz -} - -"""aggregate stddev on columns""" -type custom_pages_stddev_fields { - nav_order: Float -} - -"""aggregate stddev_pop on columns""" -type custom_pages_stddev_pop_fields { - nav_order: Float -} - -"""aggregate stddev_samp on columns""" -type custom_pages_stddev_samp_fields { - nav_order: Float -} - -""" -Streaming cursor of the table "custom_pages" -""" -input custom_pages_stream_cursor_input { - """Stream column input with initial value""" - initial_value: custom_pages_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input custom_pages_stream_cursor_value_input { - created_at: timestamptz - deployments: jsonb - enabled: Boolean - exposed_module: String - icon: String - id: uuid - is_default: Boolean - manifest_url: String - nav_group: String - nav_order: Int - plugin_slug: String - profile_tab_label: String - remote_entry_url: String - remote_scope: String - required_role: e_player_roles_enum - slug: String - title: String - updated_at: timestamptz -} - -"""aggregate sum on columns""" -type custom_pages_sum_fields { - nav_order: Int -} - -""" -update columns of table "custom_pages" -""" -enum custom_pages_update_column { - """column name""" - created_at - - """column name""" - deployments - - """column name""" - enabled - - """column name""" - exposed_module - - """column name""" - icon - - """column name""" - id - - """column name""" - is_default - - """column name""" - manifest_url - - """column name""" - nav_group - - """column name""" - nav_order - - """column name""" - plugin_slug - - """column name""" - profile_tab_label - - """column name""" - remote_entry_url - - """column name""" - remote_scope - - """column name""" - required_role - - """column name""" - slug - - """column name""" - title - - """column name""" - updated_at -} - -input custom_pages_updates { - """append existing jsonb value of filtered columns with new jsonb value""" - _append: custom_pages_append_input - - """ - 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 - - """ - 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 - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: custom_pages_delete_key_input - - """increments the numeric columns with given value of the filtered values""" - _inc: custom_pages_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: custom_pages_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: custom_pages_set_input - - """filter the rows which have to be updated""" - where: custom_pages_bool_exp! -} - -"""aggregate var_pop on columns""" -type custom_pages_var_pop_fields { - nav_order: Float -} - -"""aggregate var_samp on columns""" -type custom_pages_var_samp_fields { - nav_order: Float -} - -"""aggregate variance on columns""" -type custom_pages_variance_fields { - nav_order: Float -} - -""" -columns and relationships of "db_backups" -""" -type db_backups { - created_at: timestamptz! - id: uuid! - name: String! - size: Int! -} - -""" -aggregated selection of "db_backups" -""" -type db_backups_aggregate { - aggregate: db_backups_aggregate_fields - nodes: [db_backups!]! -} - -""" -aggregate fields of "db_backups" -""" -type db_backups_aggregate_fields { - avg: db_backups_avg_fields - count(columns: [db_backups_select_column!], distinct: Boolean): Int! - max: db_backups_max_fields - min: db_backups_min_fields - stddev: db_backups_stddev_fields - stddev_pop: db_backups_stddev_pop_fields - stddev_samp: db_backups_stddev_samp_fields - sum: db_backups_sum_fields - var_pop: db_backups_var_pop_fields - var_samp: db_backups_var_samp_fields - variance: db_backups_variance_fields -} - -"""aggregate avg on columns""" -type db_backups_avg_fields { - size: Float -} - -""" -Boolean expression to filter rows from the table "db_backups". All fields are combined with a logical 'AND'. -""" -input db_backups_bool_exp { - _and: [db_backups_bool_exp!] - _not: db_backups_bool_exp - _or: [db_backups_bool_exp!] - created_at: timestamptz_comparison_exp - id: uuid_comparison_exp - name: String_comparison_exp - size: Int_comparison_exp -} - -""" -unique or primary key constraints on table "db_backups" -""" -enum db_backups_constraint { - """ - unique or primary key constraint on columns "id" - """ - db_backups_pkey -} - -""" -input type for incrementing numeric columns in table "db_backups" -""" -input db_backups_inc_input { - size: Int -} - -""" -input type for inserting data into table "db_backups" -""" -input db_backups_insert_input { - created_at: timestamptz - id: uuid - name: String - size: Int -} - -"""aggregate max on columns""" -type db_backups_max_fields { - created_at: timestamptz - id: uuid - name: String - size: Int -} - -"""aggregate min on columns""" -type db_backups_min_fields { - created_at: timestamptz - id: uuid - name: String - size: Int -} - -""" -response of any mutation on the table "db_backups" -""" -type db_backups_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [db_backups!]! -} - -""" -on_conflict condition type for table "db_backups" -""" -input db_backups_on_conflict { - constraint: db_backups_constraint! - update_columns: [db_backups_update_column!]! = [] - where: db_backups_bool_exp -} - -"""Ordering options when selecting data from "db_backups".""" -input db_backups_order_by { - created_at: order_by - id: order_by - name: order_by - size: order_by -} - -"""primary key columns input for table: db_backups""" -input db_backups_pk_columns_input { - id: uuid! -} - -""" -select columns of table "db_backups" -""" -enum db_backups_select_column { - """column name""" - created_at - - """column name""" - id - - """column name""" - name - - """column name""" - size -} - -""" -input type for updating data in table "db_backups" -""" -input db_backups_set_input { - created_at: timestamptz - id: uuid - name: String - size: Int -} - -"""aggregate stddev on columns""" -type db_backups_stddev_fields { - size: Float -} - -"""aggregate stddev_pop on columns""" -type db_backups_stddev_pop_fields { - size: Float -} - -"""aggregate stddev_samp on columns""" -type db_backups_stddev_samp_fields { - size: Float -} - -""" -Streaming cursor of the table "db_backups" -""" -input db_backups_stream_cursor_input { - """Stream column input with initial value""" - initial_value: db_backups_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input db_backups_stream_cursor_value_input { - created_at: timestamptz - id: uuid - name: String - size: Int -} - -"""aggregate sum on columns""" -type db_backups_sum_fields { - size: Int -} - -""" -update columns of table "db_backups" -""" -enum db_backups_update_column { - """column name""" - created_at - - """column name""" - id - - """column name""" - name - - """column name""" - size -} - -input db_backups_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: db_backups_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: db_backups_set_input - - """filter the rows which have to be updated""" - where: db_backups_bool_exp! -} - -"""aggregate var_pop on columns""" -type db_backups_var_pop_fields { - size: Float -} - -"""aggregate var_samp on columns""" -type db_backups_var_samp_fields { - size: Float -} - -"""aggregate variance on columns""" -type db_backups_variance_fields { - size: Float -} - -""" -columns and relationships of "direct_conversations" -""" -type direct_conversations { - is_open: Boolean! - last_message_at: timestamptz! - position: Int! - room_id: String! - steam_id: bigint! -} - -""" -aggregated selection of "direct_conversations" -""" -type direct_conversations_aggregate { - aggregate: direct_conversations_aggregate_fields - nodes: [direct_conversations!]! -} - -""" -aggregate fields of "direct_conversations" -""" -type direct_conversations_aggregate_fields { - avg: direct_conversations_avg_fields - count(columns: [direct_conversations_select_column!], distinct: Boolean): Int! - max: direct_conversations_max_fields - min: direct_conversations_min_fields - stddev: direct_conversations_stddev_fields - stddev_pop: direct_conversations_stddev_pop_fields - stddev_samp: direct_conversations_stddev_samp_fields - sum: direct_conversations_sum_fields - var_pop: direct_conversations_var_pop_fields - var_samp: direct_conversations_var_samp_fields - variance: direct_conversations_variance_fields -} - -"""aggregate avg on columns""" -type direct_conversations_avg_fields { - position: Float - steam_id: Float -} - -""" -Boolean expression to filter rows from the table "direct_conversations". All fields are combined with a logical 'AND'. -""" -input direct_conversations_bool_exp { - _and: [direct_conversations_bool_exp!] - _not: direct_conversations_bool_exp - _or: [direct_conversations_bool_exp!] - is_open: Boolean_comparison_exp - last_message_at: timestamptz_comparison_exp - position: Int_comparison_exp - room_id: String_comparison_exp - steam_id: bigint_comparison_exp -} - -""" -unique or primary key constraints on table "direct_conversations" -""" -enum direct_conversations_constraint { - """ - unique or primary key constraint on columns "steam_id", "room_id" - """ - direct_conversations_pkey -} - -""" -input type for incrementing numeric columns in table "direct_conversations" -""" -input direct_conversations_inc_input { - position: Int - steam_id: bigint -} - -""" -input type for inserting data into table "direct_conversations" -""" -input direct_conversations_insert_input { - is_open: Boolean - last_message_at: timestamptz - position: Int - room_id: String - steam_id: bigint -} - -"""aggregate max on columns""" -type direct_conversations_max_fields { - last_message_at: timestamptz - position: Int - room_id: String - steam_id: bigint -} - -"""aggregate min on columns""" -type direct_conversations_min_fields { - last_message_at: timestamptz - position: Int - room_id: String - steam_id: bigint -} - -""" -response of any mutation on the table "direct_conversations" -""" -type direct_conversations_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [direct_conversations!]! -} - -""" -on_conflict condition type for table "direct_conversations" -""" -input direct_conversations_on_conflict { - constraint: direct_conversations_constraint! - update_columns: [direct_conversations_update_column!]! = [] - where: direct_conversations_bool_exp -} - -"""Ordering options when selecting data from "direct_conversations".""" -input direct_conversations_order_by { - is_open: order_by - last_message_at: order_by - position: order_by - room_id: order_by - steam_id: order_by -} - -"""primary key columns input for table: direct_conversations""" -input direct_conversations_pk_columns_input { - room_id: String! - steam_id: bigint! -} - -""" -select columns of table "direct_conversations" -""" -enum direct_conversations_select_column { - """column name""" - is_open - - """column name""" - last_message_at - - """column name""" - position - - """column name""" - room_id - - """column name""" - steam_id -} - -""" -input type for updating data in table "direct_conversations" -""" -input direct_conversations_set_input { - is_open: Boolean - last_message_at: timestamptz - position: Int - room_id: String - steam_id: bigint -} - -"""aggregate stddev on columns""" -type direct_conversations_stddev_fields { - position: Float - steam_id: Float -} - -"""aggregate stddev_pop on columns""" -type direct_conversations_stddev_pop_fields { - position: Float - steam_id: Float -} - -"""aggregate stddev_samp on columns""" -type direct_conversations_stddev_samp_fields { - position: Float - steam_id: Float -} - -""" -Streaming cursor of the table "direct_conversations" -""" -input direct_conversations_stream_cursor_input { - """Stream column input with initial value""" - initial_value: direct_conversations_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input direct_conversations_stream_cursor_value_input { - is_open: Boolean - last_message_at: timestamptz - position: Int - room_id: String - steam_id: bigint -} - -"""aggregate sum on columns""" -type direct_conversations_sum_fields { - position: Int - steam_id: bigint -} - -""" -update columns of table "direct_conversations" -""" -enum direct_conversations_update_column { - """column name""" - is_open - - """column name""" - last_message_at - - """column name""" - position - - """column name""" - room_id - - """column name""" - steam_id -} - -input direct_conversations_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: direct_conversations_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: direct_conversations_set_input - - """filter the rows which have to be updated""" - where: direct_conversations_bool_exp! -} - -"""aggregate var_pop on columns""" -type direct_conversations_var_pop_fields { - position: Float - steam_id: Float -} - -"""aggregate var_samp on columns""" -type direct_conversations_var_samp_fields { - position: Float - steam_id: Float -} - -"""aggregate variance on columns""" -type direct_conversations_variance_fields { - position: Float - steam_id: Float -} - -""" -columns and relationships of "direct_messages" -""" -type direct_messages { - created_at: timestamptz! - from_steam_id: bigint! - id: uuid! - message: String! - room_id: String! - seq: bigint! -} - -""" -aggregated selection of "direct_messages" -""" -type direct_messages_aggregate { - aggregate: direct_messages_aggregate_fields - nodes: [direct_messages!]! -} - -""" -aggregate fields of "direct_messages" -""" -type direct_messages_aggregate_fields { - avg: direct_messages_avg_fields - count(columns: [direct_messages_select_column!], distinct: Boolean): Int! - max: direct_messages_max_fields - min: direct_messages_min_fields - stddev: direct_messages_stddev_fields - stddev_pop: direct_messages_stddev_pop_fields - stddev_samp: direct_messages_stddev_samp_fields - sum: direct_messages_sum_fields - var_pop: direct_messages_var_pop_fields - var_samp: direct_messages_var_samp_fields - variance: direct_messages_variance_fields -} - -"""aggregate avg on columns""" -type direct_messages_avg_fields { - from_steam_id: Float - seq: Float -} - -""" -Boolean expression to filter rows from the table "direct_messages". All fields are combined with a logical 'AND'. -""" -input direct_messages_bool_exp { - _and: [direct_messages_bool_exp!] - _not: direct_messages_bool_exp - _or: [direct_messages_bool_exp!] - created_at: timestamptz_comparison_exp - from_steam_id: bigint_comparison_exp - id: uuid_comparison_exp - message: String_comparison_exp - room_id: String_comparison_exp - seq: bigint_comparison_exp -} - -""" -unique or primary key constraints on table "direct_messages" -""" -enum direct_messages_constraint { - """ - unique or primary key constraint on columns "id" - """ - direct_messages_pkey -} - -""" -input type for incrementing numeric columns in table "direct_messages" -""" -input direct_messages_inc_input { - from_steam_id: bigint - seq: bigint -} - -""" -input type for inserting data into table "direct_messages" -""" -input direct_messages_insert_input { - created_at: timestamptz - from_steam_id: bigint - id: uuid - message: String - room_id: String - seq: bigint -} - -"""aggregate max on columns""" -type direct_messages_max_fields { - created_at: timestamptz - from_steam_id: bigint - id: uuid - message: String - room_id: String - seq: bigint -} - -"""aggregate min on columns""" -type direct_messages_min_fields { - created_at: timestamptz - from_steam_id: bigint - id: uuid - message: String - room_id: String - seq: bigint -} - -""" -response of any mutation on the table "direct_messages" -""" -type direct_messages_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [direct_messages!]! -} - -""" -on_conflict condition type for table "direct_messages" -""" -input direct_messages_on_conflict { - constraint: direct_messages_constraint! - update_columns: [direct_messages_update_column!]! = [] - where: direct_messages_bool_exp -} - -"""Ordering options when selecting data from "direct_messages".""" -input direct_messages_order_by { - created_at: order_by - from_steam_id: order_by - id: order_by - message: order_by - room_id: order_by - seq: order_by -} - -"""primary key columns input for table: direct_messages""" -input direct_messages_pk_columns_input { - id: uuid! -} - -""" -select columns of table "direct_messages" -""" -enum direct_messages_select_column { - """column name""" - created_at - - """column name""" - from_steam_id - - """column name""" - id - - """column name""" - message - - """column name""" - room_id - - """column name""" - seq -} - -""" -input type for updating data in table "direct_messages" -""" -input direct_messages_set_input { - created_at: timestamptz - from_steam_id: bigint - id: uuid - message: String - room_id: String - seq: bigint -} - -"""aggregate stddev on columns""" -type direct_messages_stddev_fields { - from_steam_id: Float - seq: Float -} - -"""aggregate stddev_pop on columns""" -type direct_messages_stddev_pop_fields { - from_steam_id: Float - seq: Float -} - -"""aggregate stddev_samp on columns""" -type direct_messages_stddev_samp_fields { - from_steam_id: Float - seq: Float -} - -""" -Streaming cursor of the table "direct_messages" -""" -input direct_messages_stream_cursor_input { - """Stream column input with initial value""" - initial_value: direct_messages_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input direct_messages_stream_cursor_value_input { - created_at: timestamptz - from_steam_id: bigint - id: uuid - message: String - room_id: String - seq: bigint -} - -"""aggregate sum on columns""" -type direct_messages_sum_fields { - from_steam_id: bigint - seq: bigint -} - -""" -update columns of table "direct_messages" -""" -enum direct_messages_update_column { - """column name""" - created_at - - """column name""" - from_steam_id - - """column name""" - id - - """column name""" - message - - """column name""" - room_id - - """column name""" - seq -} - -input direct_messages_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: direct_messages_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: direct_messages_set_input - - """filter the rows which have to be updated""" - where: direct_messages_bool_exp! -} - -"""aggregate var_pop on columns""" -type direct_messages_var_pop_fields { - from_steam_id: Float - seq: Float -} - -"""aggregate var_samp on columns""" -type direct_messages_var_samp_fields { - from_steam_id: Float - seq: Float -} - -"""aggregate variance on columns""" -type direct_messages_variance_fields { - from_steam_id: Float - seq: Float -} - -""" -columns and relationships of "draft_game_picks" -""" -type draft_game_picks { - auto_picked: Boolean! - - """An object relationship""" - captain: players! - captain_steam_id: bigint! - created_at: timestamptz! - - """An object relationship""" - draft_game: draft_games! - draft_game_id: uuid! - id: uuid! - is_organizer: Boolean - lineup: Int! - - """An object relationship""" - picked: players! - picked_steam_id: bigint! -} - -""" -aggregated selection of "draft_game_picks" -""" -type draft_game_picks_aggregate { - aggregate: draft_game_picks_aggregate_fields - nodes: [draft_game_picks!]! -} - -input draft_game_picks_aggregate_bool_exp { - bool_and: draft_game_picks_aggregate_bool_exp_bool_and - bool_or: draft_game_picks_aggregate_bool_exp_bool_or - count: draft_game_picks_aggregate_bool_exp_count -} - -input 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: Boolean - filter: draft_game_picks_bool_exp - predicate: Boolean_comparison_exp! -} - -input 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: Boolean - filter: draft_game_picks_bool_exp - predicate: Boolean_comparison_exp! -} - -input draft_game_picks_aggregate_bool_exp_count { - arguments: [draft_game_picks_select_column!] - distinct: Boolean - filter: draft_game_picks_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "draft_game_picks" -""" -type draft_game_picks_aggregate_fields { - avg: draft_game_picks_avg_fields - count(columns: [draft_game_picks_select_column!], distinct: Boolean): Int! - max: draft_game_picks_max_fields - min: draft_game_picks_min_fields - stddev: draft_game_picks_stddev_fields - stddev_pop: draft_game_picks_stddev_pop_fields - stddev_samp: draft_game_picks_stddev_samp_fields - sum: draft_game_picks_sum_fields - var_pop: draft_game_picks_var_pop_fields - var_samp: draft_game_picks_var_samp_fields - variance: draft_game_picks_variance_fields -} - -""" -order by aggregate values of table "draft_game_picks" -""" -input draft_game_picks_aggregate_order_by { - avg: draft_game_picks_avg_order_by - count: order_by - max: draft_game_picks_max_order_by - min: draft_game_picks_min_order_by - stddev: draft_game_picks_stddev_order_by - stddev_pop: draft_game_picks_stddev_pop_order_by - stddev_samp: draft_game_picks_stddev_samp_order_by - sum: draft_game_picks_sum_order_by - var_pop: draft_game_picks_var_pop_order_by - var_samp: draft_game_picks_var_samp_order_by - variance: draft_game_picks_variance_order_by -} - -""" -input type for inserting array relation for remote table "draft_game_picks" -""" -input draft_game_picks_arr_rel_insert_input { - data: [draft_game_picks_insert_input!]! - - """upsert condition""" - on_conflict: draft_game_picks_on_conflict -} - -"""aggregate avg on columns""" -type draft_game_picks_avg_fields { - captain_steam_id: Float - lineup: Float - picked_steam_id: Float -} - -""" -order by avg() on columns of table "draft_game_picks" -""" -input draft_game_picks_avg_order_by { - captain_steam_id: order_by - lineup: order_by - picked_steam_id: order_by -} - -""" -Boolean expression to filter rows from the table "draft_game_picks". All fields are combined with a logical 'AND'. -""" -input draft_game_picks_bool_exp { - _and: [draft_game_picks_bool_exp!] - _not: draft_game_picks_bool_exp - _or: [draft_game_picks_bool_exp!] - auto_picked: Boolean_comparison_exp - captain: players_bool_exp - captain_steam_id: bigint_comparison_exp - created_at: timestamptz_comparison_exp - draft_game: draft_games_bool_exp - draft_game_id: uuid_comparison_exp - id: uuid_comparison_exp - is_organizer: Boolean_comparison_exp - lineup: Int_comparison_exp - picked: players_bool_exp - picked_steam_id: bigint_comparison_exp -} - -""" -unique or primary key constraints on table "draft_game_picks" -""" -enum draft_game_picks_constraint { - """ - unique or primary key constraint on columns "id" - """ - draft_game_picks_pkey -} - -""" -input type for incrementing numeric columns in table "draft_game_picks" -""" -input draft_game_picks_inc_input { - captain_steam_id: bigint - lineup: Int - picked_steam_id: bigint -} - -""" -input type for inserting data into table "draft_game_picks" -""" -input draft_game_picks_insert_input { - auto_picked: Boolean - captain: players_obj_rel_insert_input - captain_steam_id: bigint - created_at: timestamptz - draft_game: draft_games_obj_rel_insert_input - draft_game_id: uuid - id: uuid - lineup: Int - picked: players_obj_rel_insert_input - picked_steam_id: bigint -} - -"""aggregate max on columns""" -type draft_game_picks_max_fields { - captain_steam_id: bigint - created_at: timestamptz - draft_game_id: uuid - id: uuid - lineup: Int - picked_steam_id: bigint -} - -""" -order by max() on columns of table "draft_game_picks" -""" -input draft_game_picks_max_order_by { - captain_steam_id: order_by - created_at: order_by - draft_game_id: order_by - id: order_by - lineup: order_by - picked_steam_id: order_by -} - -"""aggregate min on columns""" -type draft_game_picks_min_fields { - captain_steam_id: bigint - created_at: timestamptz - draft_game_id: uuid - id: uuid - lineup: Int - picked_steam_id: bigint -} - -""" -order by min() on columns of table "draft_game_picks" -""" -input draft_game_picks_min_order_by { - captain_steam_id: order_by - created_at: order_by - draft_game_id: order_by - id: order_by - lineup: order_by - picked_steam_id: order_by -} - -""" -response of any mutation on the table "draft_game_picks" -""" -type draft_game_picks_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [draft_game_picks!]! -} - -""" -on_conflict condition type for table "draft_game_picks" -""" -input draft_game_picks_on_conflict { - constraint: draft_game_picks_constraint! - update_columns: [draft_game_picks_update_column!]! = [] - where: draft_game_picks_bool_exp -} - -"""Ordering options when selecting data from "draft_game_picks".""" -input draft_game_picks_order_by { - auto_picked: order_by - captain: players_order_by - captain_steam_id: order_by - created_at: order_by - draft_game: draft_games_order_by - draft_game_id: order_by - id: order_by - is_organizer: order_by - lineup: order_by - picked: players_order_by - picked_steam_id: order_by -} - -"""primary key columns input for table: draft_game_picks""" -input draft_game_picks_pk_columns_input { - id: uuid! -} - -""" -select columns of table "draft_game_picks" -""" -enum draft_game_picks_select_column { - """column name""" - auto_picked - - """column name""" - captain_steam_id - - """column name""" - created_at - - """column name""" - draft_game_id - - """column name""" - id - - """column name""" - lineup - - """column name""" - picked_steam_id -} - -""" -select "draft_game_picks_aggregate_bool_exp_bool_and_arguments_columns" columns of table "draft_game_picks" -""" -enum draft_game_picks_select_column_draft_game_picks_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - auto_picked -} - -""" -select "draft_game_picks_aggregate_bool_exp_bool_or_arguments_columns" columns of table "draft_game_picks" -""" -enum draft_game_picks_select_column_draft_game_picks_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - auto_picked -} - -""" -input type for updating data in table "draft_game_picks" -""" -input draft_game_picks_set_input { - auto_picked: Boolean - captain_steam_id: bigint - created_at: timestamptz - draft_game_id: uuid - id: uuid - lineup: Int - picked_steam_id: bigint -} - -"""aggregate stddev on columns""" -type draft_game_picks_stddev_fields { - captain_steam_id: Float - lineup: Float - picked_steam_id: Float -} - -""" -order by stddev() on columns of table "draft_game_picks" -""" -input draft_game_picks_stddev_order_by { - captain_steam_id: order_by - lineup: order_by - picked_steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type draft_game_picks_stddev_pop_fields { - captain_steam_id: Float - lineup: Float - picked_steam_id: Float -} - -""" -order by stddev_pop() on columns of table "draft_game_picks" -""" -input draft_game_picks_stddev_pop_order_by { - captain_steam_id: order_by - lineup: order_by - picked_steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type draft_game_picks_stddev_samp_fields { - captain_steam_id: Float - lineup: Float - picked_steam_id: Float -} - -""" -order by stddev_samp() on columns of table "draft_game_picks" -""" -input draft_game_picks_stddev_samp_order_by { - captain_steam_id: order_by - lineup: order_by - picked_steam_id: order_by -} - -""" -Streaming cursor of the table "draft_game_picks" -""" -input 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 -} - -"""Initial value of the column from where the streaming should start""" -input draft_game_picks_stream_cursor_value_input { - auto_picked: Boolean - captain_steam_id: bigint - created_at: timestamptz - draft_game_id: uuid - id: uuid - lineup: Int - picked_steam_id: bigint -} - -"""aggregate sum on columns""" -type draft_game_picks_sum_fields { - captain_steam_id: bigint - lineup: Int - picked_steam_id: bigint -} - -""" -order by sum() on columns of table "draft_game_picks" -""" -input draft_game_picks_sum_order_by { - captain_steam_id: order_by - lineup: order_by - picked_steam_id: order_by -} - -""" -update columns of table "draft_game_picks" -""" -enum draft_game_picks_update_column { - """column name""" - auto_picked - - """column name""" - captain_steam_id - - """column name""" - created_at - - """column name""" - draft_game_id - - """column name""" - id - - """column name""" - lineup - - """column name""" - picked_steam_id -} - -input draft_game_picks_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: draft_game_picks_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: draft_game_picks_set_input - - """filter the rows which have to be updated""" - where: draft_game_picks_bool_exp! -} - -"""aggregate var_pop on columns""" -type draft_game_picks_var_pop_fields { - captain_steam_id: Float - lineup: Float - picked_steam_id: Float -} - -""" -order by var_pop() on columns of table "draft_game_picks" -""" -input draft_game_picks_var_pop_order_by { - captain_steam_id: order_by - lineup: order_by - picked_steam_id: order_by -} - -"""aggregate var_samp on columns""" -type draft_game_picks_var_samp_fields { - captain_steam_id: Float - lineup: Float - picked_steam_id: Float -} - -""" -order by var_samp() on columns of table "draft_game_picks" -""" -input draft_game_picks_var_samp_order_by { - captain_steam_id: order_by - lineup: order_by - picked_steam_id: order_by -} - -"""aggregate variance on columns""" -type draft_game_picks_variance_fields { - captain_steam_id: Float - lineup: Float - picked_steam_id: Float -} - -""" -order by variance() on columns of table "draft_game_picks" -""" -input draft_game_picks_variance_order_by { - captain_steam_id: order_by - lineup: order_by - picked_steam_id: order_by -} - -""" -columns and relationships of "draft_game_players" -""" -type draft_game_players { - """An object relationship""" - draft_game: draft_games! - draft_game_id: uuid! - - """An object relationship""" - e_draft_game_player_status: e_draft_game_player_status! - elo_snapshot: Int - is_captain: Boolean! - is_organizer: Boolean - joined_at: timestamptz! - lineup: Int - pick_order: Int - - """An object relationship""" - player: players! - status: e_draft_game_player_status_enum! - steam_id: bigint! -} - -""" -aggregated selection of "draft_game_players" -""" -type draft_game_players_aggregate { - aggregate: draft_game_players_aggregate_fields - nodes: [draft_game_players!]! -} - -input draft_game_players_aggregate_bool_exp { - bool_and: draft_game_players_aggregate_bool_exp_bool_and - bool_or: draft_game_players_aggregate_bool_exp_bool_or - count: draft_game_players_aggregate_bool_exp_count -} - -input 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: Boolean - filter: draft_game_players_bool_exp - predicate: Boolean_comparison_exp! -} - -input 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: Boolean - filter: draft_game_players_bool_exp - predicate: Boolean_comparison_exp! -} - -input draft_game_players_aggregate_bool_exp_count { - arguments: [draft_game_players_select_column!] - distinct: Boolean - filter: draft_game_players_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "draft_game_players" -""" -type draft_game_players_aggregate_fields { - avg: draft_game_players_avg_fields - count(columns: [draft_game_players_select_column!], distinct: Boolean): Int! - max: draft_game_players_max_fields - min: draft_game_players_min_fields - stddev: draft_game_players_stddev_fields - stddev_pop: draft_game_players_stddev_pop_fields - stddev_samp: draft_game_players_stddev_samp_fields - sum: draft_game_players_sum_fields - var_pop: draft_game_players_var_pop_fields - var_samp: draft_game_players_var_samp_fields - variance: draft_game_players_variance_fields -} - -""" -order by aggregate values of table "draft_game_players" -""" -input draft_game_players_aggregate_order_by { - avg: draft_game_players_avg_order_by - count: order_by - max: draft_game_players_max_order_by - min: draft_game_players_min_order_by - stddev: draft_game_players_stddev_order_by - stddev_pop: draft_game_players_stddev_pop_order_by - stddev_samp: draft_game_players_stddev_samp_order_by - sum: draft_game_players_sum_order_by - var_pop: draft_game_players_var_pop_order_by - var_samp: draft_game_players_var_samp_order_by - variance: draft_game_players_variance_order_by -} - -""" -input type for inserting array relation for remote table "draft_game_players" -""" -input draft_game_players_arr_rel_insert_input { - data: [draft_game_players_insert_input!]! - - """upsert condition""" - on_conflict: draft_game_players_on_conflict -} - -"""aggregate avg on columns""" -type draft_game_players_avg_fields { - elo_snapshot: Float - lineup: Float - pick_order: Float - steam_id: Float -} - -""" -order by avg() on columns of table "draft_game_players" -""" -input draft_game_players_avg_order_by { - elo_snapshot: order_by - lineup: order_by - pick_order: order_by - steam_id: order_by -} - -""" -Boolean expression to filter rows from the table "draft_game_players". All fields are combined with a logical 'AND'. -""" -input draft_game_players_bool_exp { - _and: [draft_game_players_bool_exp!] - _not: draft_game_players_bool_exp - _or: [draft_game_players_bool_exp!] - draft_game: draft_games_bool_exp - draft_game_id: uuid_comparison_exp - e_draft_game_player_status: e_draft_game_player_status_bool_exp - elo_snapshot: Int_comparison_exp - is_captain: Boolean_comparison_exp - is_organizer: Boolean_comparison_exp - joined_at: timestamptz_comparison_exp - lineup: Int_comparison_exp - pick_order: Int_comparison_exp - player: players_bool_exp - status: e_draft_game_player_status_enum_comparison_exp - steam_id: bigint_comparison_exp -} - -""" -unique or primary key constraints on table "draft_game_players" -""" -enum draft_game_players_constraint { - """ - unique or primary key constraint on columns "draft_game_id", "steam_id" - """ - draft_game_players_pkey -} - -""" -input type for incrementing numeric columns in table "draft_game_players" -""" -input draft_game_players_inc_input { - elo_snapshot: Int - lineup: Int - pick_order: Int - steam_id: bigint -} - -""" -input type for inserting data into table "draft_game_players" -""" -input draft_game_players_insert_input { - draft_game: draft_games_obj_rel_insert_input - draft_game_id: uuid - e_draft_game_player_status: e_draft_game_player_status_obj_rel_insert_input - elo_snapshot: Int - is_captain: Boolean - joined_at: timestamptz - lineup: Int - pick_order: Int - player: players_obj_rel_insert_input - status: e_draft_game_player_status_enum - steam_id: bigint -} - -"""aggregate max on columns""" -type draft_game_players_max_fields { - draft_game_id: uuid - elo_snapshot: Int - joined_at: timestamptz - lineup: Int - pick_order: Int - steam_id: bigint -} - -""" -order by max() on columns of table "draft_game_players" -""" -input draft_game_players_max_order_by { - draft_game_id: order_by - elo_snapshot: order_by - joined_at: order_by - lineup: order_by - pick_order: order_by - steam_id: order_by -} - -"""aggregate min on columns""" -type draft_game_players_min_fields { - draft_game_id: uuid - elo_snapshot: Int - joined_at: timestamptz - lineup: Int - pick_order: Int - steam_id: bigint -} - -""" -order by min() on columns of table "draft_game_players" -""" -input draft_game_players_min_order_by { - draft_game_id: order_by - elo_snapshot: order_by - joined_at: order_by - lineup: order_by - pick_order: order_by - steam_id: order_by -} - -""" -response of any mutation on the table "draft_game_players" -""" -type draft_game_players_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [draft_game_players!]! -} - -""" -on_conflict condition type for table "draft_game_players" -""" -input draft_game_players_on_conflict { - constraint: draft_game_players_constraint! - update_columns: [draft_game_players_update_column!]! = [] - where: draft_game_players_bool_exp -} - -"""Ordering options when selecting data from "draft_game_players".""" -input draft_game_players_order_by { - draft_game: draft_games_order_by - draft_game_id: order_by - e_draft_game_player_status: e_draft_game_player_status_order_by - elo_snapshot: order_by - is_captain: order_by - is_organizer: order_by - joined_at: order_by - lineup: order_by - pick_order: order_by - player: players_order_by - status: order_by - steam_id: order_by -} - -"""primary key columns input for table: draft_game_players""" -input draft_game_players_pk_columns_input { - draft_game_id: uuid! - steam_id: bigint! -} - -""" -select columns of table "draft_game_players" -""" -enum draft_game_players_select_column { - """column name""" - draft_game_id - - """column name""" - elo_snapshot - - """column name""" - is_captain - - """column name""" - joined_at - - """column name""" - lineup - - """column name""" - pick_order - - """column name""" - status - - """column name""" - steam_id -} - -""" -select "draft_game_players_aggregate_bool_exp_bool_and_arguments_columns" columns of table "draft_game_players" -""" -enum draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - is_captain -} - -""" -select "draft_game_players_aggregate_bool_exp_bool_or_arguments_columns" columns of table "draft_game_players" -""" -enum draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - is_captain -} - -""" -input type for updating data in table "draft_game_players" -""" -input draft_game_players_set_input { - draft_game_id: uuid - elo_snapshot: Int - is_captain: Boolean - joined_at: timestamptz - lineup: Int - pick_order: Int - status: e_draft_game_player_status_enum - steam_id: bigint -} - -"""aggregate stddev on columns""" -type draft_game_players_stddev_fields { - elo_snapshot: Float - lineup: Float - pick_order: Float - steam_id: Float -} - -""" -order by stddev() on columns of table "draft_game_players" -""" -input draft_game_players_stddev_order_by { - elo_snapshot: order_by - lineup: order_by - pick_order: order_by - steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type draft_game_players_stddev_pop_fields { - elo_snapshot: Float - lineup: Float - pick_order: Float - steam_id: Float -} - -""" -order by stddev_pop() on columns of table "draft_game_players" -""" -input draft_game_players_stddev_pop_order_by { - elo_snapshot: order_by - lineup: order_by - pick_order: order_by - steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type draft_game_players_stddev_samp_fields { - elo_snapshot: Float - lineup: Float - pick_order: Float - steam_id: Float -} - -""" -order by stddev_samp() on columns of table "draft_game_players" -""" -input draft_game_players_stddev_samp_order_by { - elo_snapshot: order_by - lineup: order_by - pick_order: order_by - steam_id: order_by -} - -""" -Streaming cursor of the table "draft_game_players" -""" -input draft_game_players_stream_cursor_input { - """Stream column input with initial value""" - initial_value: draft_game_players_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input draft_game_players_stream_cursor_value_input { - draft_game_id: uuid - elo_snapshot: Int - is_captain: Boolean - joined_at: timestamptz - lineup: Int - pick_order: Int - status: e_draft_game_player_status_enum - steam_id: bigint -} - -"""aggregate sum on columns""" -type draft_game_players_sum_fields { - elo_snapshot: Int - lineup: Int - pick_order: Int - steam_id: bigint -} - -""" -order by sum() on columns of table "draft_game_players" -""" -input draft_game_players_sum_order_by { - elo_snapshot: order_by - lineup: order_by - pick_order: order_by - steam_id: order_by -} - -""" -update columns of table "draft_game_players" -""" -enum draft_game_players_update_column { - """column name""" - draft_game_id - - """column name""" - elo_snapshot - - """column name""" - is_captain - - """column name""" - joined_at - - """column name""" - lineup - - """column name""" - pick_order - - """column name""" - status - - """column name""" - steam_id -} - -input draft_game_players_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: draft_game_players_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: draft_game_players_set_input - - """filter the rows which have to be updated""" - where: draft_game_players_bool_exp! -} - -"""aggregate var_pop on columns""" -type draft_game_players_var_pop_fields { - elo_snapshot: Float - lineup: Float - pick_order: Float - steam_id: Float -} - -""" -order by var_pop() on columns of table "draft_game_players" -""" -input draft_game_players_var_pop_order_by { - elo_snapshot: order_by - lineup: order_by - pick_order: order_by - steam_id: order_by -} - -"""aggregate var_samp on columns""" -type draft_game_players_var_samp_fields { - elo_snapshot: Float - lineup: Float - pick_order: Float - steam_id: Float -} - -""" -order by var_samp() on columns of table "draft_game_players" -""" -input draft_game_players_var_samp_order_by { - elo_snapshot: order_by - lineup: order_by - pick_order: order_by - steam_id: order_by -} - -"""aggregate variance on columns""" -type draft_game_players_variance_fields { - elo_snapshot: Float - lineup: Float - pick_order: Float - steam_id: Float -} - -""" -order by variance() on columns of table "draft_game_players" -""" -input draft_game_players_variance_order_by { - elo_snapshot: order_by - lineup: order_by - pick_order: order_by - steam_id: order_by -} - -""" -columns and relationships of "draft_games" -""" -type draft_games { - access: e_lobby_access_enum! - capacity: Int! - captain_selection: e_draft_game_captain_selection_enum! - created_at: timestamptz! - current_pick_lineup: Int - draft_order: e_draft_game_draft_order_enum! - - """An object relationship""" - e_draft_game_captain_selection: e_draft_game_captain_selection! - - """An object relationship""" - e_draft_game_draft_order: e_draft_game_draft_order! - - """An object relationship""" - e_draft_game_mode: e_draft_game_mode! - - """An object relationship""" - e_draft_game_status: e_draft_game_status! - - """An object relationship""" - e_lobby_access: e_lobby_access! - expires_at: timestamptz - - """An object relationship""" - host: players! - host_steam_id: bigint! - id: uuid! - inner_squad: Boolean! - invite_code: uuid! - is_organizer: Boolean - - """An object relationship""" - map_pool: map_pools - map_pool_id: uuid - - """An object relationship""" - match: matches - match_id: uuid - match_options_id: uuid - max_elo: Int - min_elo: Int - mode: e_draft_game_mode_enum! - - """An object relationship""" - options: match_options - - """Turn order (lineup 1/2) for each remaining non-captain pick.""" - pattern( - """JSON select path""" - path: String - ): jsonb - pick_deadline: timestamptz - - """An array relationship""" - picks( - """distinct select on columns""" - distinct_on: [draft_game_picks_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [draft_game_picks_order_by!] - - """filter the rows returned""" - where: draft_game_picks_bool_exp - ): [draft_game_picks!]! - - """An aggregate relationship""" - picks_aggregate( - """distinct select on columns""" - distinct_on: [draft_game_picks_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [draft_game_picks_order_by!] - - """filter the rows returned""" - where: draft_game_picks_bool_exp - ): draft_game_picks_aggregate! - - """An array relationship""" - players( - """distinct select on columns""" - distinct_on: [draft_game_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [draft_game_players_order_by!] - - """filter the rows returned""" - where: draft_game_players_bool_exp - ): [draft_game_players!]! - - """An aggregate relationship""" - players_aggregate( - """distinct select on columns""" - distinct_on: [draft_game_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [draft_game_players_order_by!] - - """filter the rows returned""" - where: draft_game_players_bool_exp - ): draft_game_players_aggregate! - regions: [String!]! - require_approval: Boolean! - scheduled_at: timestamptz - status: e_draft_game_status_enum! - - """An object relationship""" - team_1: teams - team_1_id: uuid - - """An object relationship""" - team_2: teams - team_2_id: uuid - type: e_match_types_enum! - updated_at: timestamptz! -} - -""" -aggregated selection of "draft_games" -""" -type draft_games_aggregate { - aggregate: draft_games_aggregate_fields - nodes: [draft_games!]! -} - -input draft_games_aggregate_bool_exp { - bool_and: draft_games_aggregate_bool_exp_bool_and - bool_or: draft_games_aggregate_bool_exp_bool_or - count: draft_games_aggregate_bool_exp_count -} - -input draft_games_aggregate_bool_exp_bool_and { - arguments: draft_games_select_column_draft_games_aggregate_bool_exp_bool_and_arguments_columns! - distinct: Boolean - filter: draft_games_bool_exp - predicate: Boolean_comparison_exp! -} - -input draft_games_aggregate_bool_exp_bool_or { - arguments: draft_games_select_column_draft_games_aggregate_bool_exp_bool_or_arguments_columns! - distinct: Boolean - filter: draft_games_bool_exp - predicate: Boolean_comparison_exp! -} - -input draft_games_aggregate_bool_exp_count { - arguments: [draft_games_select_column!] - distinct: Boolean - filter: draft_games_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "draft_games" -""" -type draft_games_aggregate_fields { - avg: draft_games_avg_fields - count(columns: [draft_games_select_column!], distinct: Boolean): Int! - max: draft_games_max_fields - min: draft_games_min_fields - stddev: draft_games_stddev_fields - stddev_pop: draft_games_stddev_pop_fields - stddev_samp: draft_games_stddev_samp_fields - sum: draft_games_sum_fields - var_pop: draft_games_var_pop_fields - var_samp: draft_games_var_samp_fields - variance: draft_games_variance_fields -} - -""" -order by aggregate values of table "draft_games" -""" -input draft_games_aggregate_order_by { - avg: draft_games_avg_order_by - count: order_by - max: draft_games_max_order_by - min: draft_games_min_order_by - stddev: draft_games_stddev_order_by - stddev_pop: draft_games_stddev_pop_order_by - stddev_samp: draft_games_stddev_samp_order_by - sum: draft_games_sum_order_by - var_pop: draft_games_var_pop_order_by - var_samp: draft_games_var_samp_order_by - variance: draft_games_variance_order_by -} - -""" -input type for inserting array relation for remote table "draft_games" -""" -input draft_games_arr_rel_insert_input { - data: [draft_games_insert_input!]! - - """upsert condition""" - on_conflict: draft_games_on_conflict -} - -"""aggregate avg on columns""" -type draft_games_avg_fields { - capacity: Float - current_pick_lineup: Float - host_steam_id: Float - max_elo: Float - min_elo: Float -} - -""" -order by avg() on columns of table "draft_games" -""" -input draft_games_avg_order_by { - capacity: order_by - current_pick_lineup: order_by - host_steam_id: order_by - max_elo: order_by - min_elo: order_by -} - -""" -Boolean expression to filter rows from the table "draft_games". All fields are combined with a logical 'AND'. -""" -input draft_games_bool_exp { - _and: [draft_games_bool_exp!] - _not: draft_games_bool_exp - _or: [draft_games_bool_exp!] - access: e_lobby_access_enum_comparison_exp - capacity: Int_comparison_exp - captain_selection: e_draft_game_captain_selection_enum_comparison_exp - created_at: timestamptz_comparison_exp - current_pick_lineup: Int_comparison_exp - draft_order: e_draft_game_draft_order_enum_comparison_exp - e_draft_game_captain_selection: e_draft_game_captain_selection_bool_exp - e_draft_game_draft_order: e_draft_game_draft_order_bool_exp - e_draft_game_mode: e_draft_game_mode_bool_exp - e_draft_game_status: e_draft_game_status_bool_exp - e_lobby_access: e_lobby_access_bool_exp - expires_at: timestamptz_comparison_exp - host: players_bool_exp - host_steam_id: bigint_comparison_exp - id: uuid_comparison_exp - inner_squad: Boolean_comparison_exp - invite_code: uuid_comparison_exp - is_organizer: Boolean_comparison_exp - map_pool: map_pools_bool_exp - map_pool_id: uuid_comparison_exp - match: matches_bool_exp - match_id: uuid_comparison_exp - match_options_id: uuid_comparison_exp - max_elo: Int_comparison_exp - min_elo: Int_comparison_exp - mode: e_draft_game_mode_enum_comparison_exp - options: match_options_bool_exp - pattern: jsonb_comparison_exp - pick_deadline: timestamptz_comparison_exp - picks: draft_game_picks_bool_exp - picks_aggregate: draft_game_picks_aggregate_bool_exp - players: draft_game_players_bool_exp - players_aggregate: draft_game_players_aggregate_bool_exp - regions: String_array_comparison_exp - require_approval: Boolean_comparison_exp - scheduled_at: timestamptz_comparison_exp - status: e_draft_game_status_enum_comparison_exp - team_1: teams_bool_exp - team_1_id: uuid_comparison_exp - team_2: teams_bool_exp - team_2_id: uuid_comparison_exp - type: e_match_types_enum_comparison_exp - updated_at: timestamptz_comparison_exp -} - -""" -unique or primary key constraints on table "draft_games" -""" -enum draft_games_constraint { - """ - unique or primary key constraint on columns "id" - """ - draft_games_pkey -} - -""" -input type for incrementing numeric columns in table "draft_games" -""" -input draft_games_inc_input { - capacity: Int - current_pick_lineup: Int - host_steam_id: bigint - max_elo: Int - min_elo: Int -} - -""" -input type for inserting data into table "draft_games" -""" -input draft_games_insert_input { - access: e_lobby_access_enum - capacity: Int - captain_selection: e_draft_game_captain_selection_enum - created_at: timestamptz - current_pick_lineup: Int - draft_order: e_draft_game_draft_order_enum - e_draft_game_captain_selection: e_draft_game_captain_selection_obj_rel_insert_input - e_draft_game_draft_order: e_draft_game_draft_order_obj_rel_insert_input - e_draft_game_mode: e_draft_game_mode_obj_rel_insert_input - e_draft_game_status: e_draft_game_status_obj_rel_insert_input - e_lobby_access: e_lobby_access_obj_rel_insert_input - expires_at: timestamptz - host: players_obj_rel_insert_input - host_steam_id: bigint - id: uuid - inner_squad: Boolean - invite_code: uuid - map_pool: map_pools_obj_rel_insert_input - map_pool_id: uuid - match: matches_obj_rel_insert_input - match_id: uuid - match_options_id: uuid - max_elo: Int - min_elo: Int - mode: e_draft_game_mode_enum - options: match_options_obj_rel_insert_input - pick_deadline: timestamptz - picks: draft_game_picks_arr_rel_insert_input - players: draft_game_players_arr_rel_insert_input - regions: [String!] - require_approval: Boolean - scheduled_at: timestamptz - status: e_draft_game_status_enum - team_1: teams_obj_rel_insert_input - team_1_id: uuid - team_2: teams_obj_rel_insert_input - team_2_id: uuid - type: e_match_types_enum - updated_at: timestamptz -} - -"""aggregate max on columns""" -type draft_games_max_fields { - capacity: Int - created_at: timestamptz - current_pick_lineup: Int - expires_at: timestamptz - host_steam_id: bigint - id: uuid - invite_code: uuid - map_pool_id: uuid - match_id: uuid - match_options_id: uuid - max_elo: Int - min_elo: Int - pick_deadline: timestamptz - regions: [String!] - scheduled_at: timestamptz - team_1_id: uuid - team_2_id: uuid - updated_at: timestamptz -} - -""" -order by max() on columns of table "draft_games" -""" -input draft_games_max_order_by { - capacity: order_by - created_at: order_by - current_pick_lineup: order_by - expires_at: order_by - host_steam_id: order_by - id: order_by - invite_code: order_by - map_pool_id: order_by - match_id: order_by - match_options_id: order_by - max_elo: order_by - min_elo: order_by - pick_deadline: order_by - regions: order_by - scheduled_at: order_by - team_1_id: order_by - team_2_id: order_by - updated_at: order_by -} - -"""aggregate min on columns""" -type draft_games_min_fields { - capacity: Int - created_at: timestamptz - current_pick_lineup: Int - expires_at: timestamptz - host_steam_id: bigint - id: uuid - invite_code: uuid - map_pool_id: uuid - match_id: uuid - match_options_id: uuid - max_elo: Int - min_elo: Int - pick_deadline: timestamptz - regions: [String!] - scheduled_at: timestamptz - team_1_id: uuid - team_2_id: uuid - updated_at: timestamptz -} - -""" -order by min() on columns of table "draft_games" -""" -input draft_games_min_order_by { - capacity: order_by - created_at: order_by - current_pick_lineup: order_by - expires_at: order_by - host_steam_id: order_by - id: order_by - invite_code: order_by - map_pool_id: order_by - match_id: order_by - match_options_id: order_by - max_elo: order_by - min_elo: order_by - pick_deadline: order_by - regions: order_by - scheduled_at: order_by - team_1_id: order_by - team_2_id: order_by - updated_at: order_by -} - -""" -response of any mutation on the table "draft_games" -""" -type draft_games_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [draft_games!]! -} - -""" -input type for inserting object relation for remote table "draft_games" -""" -input draft_games_obj_rel_insert_input { - data: draft_games_insert_input! - - """upsert condition""" - on_conflict: draft_games_on_conflict -} - -""" -on_conflict condition type for table "draft_games" -""" -input draft_games_on_conflict { - constraint: draft_games_constraint! - update_columns: [draft_games_update_column!]! = [] - where: draft_games_bool_exp -} - -"""Ordering options when selecting data from "draft_games".""" -input draft_games_order_by { - access: order_by - capacity: order_by - captain_selection: order_by - created_at: order_by - current_pick_lineup: order_by - draft_order: order_by - e_draft_game_captain_selection: e_draft_game_captain_selection_order_by - e_draft_game_draft_order: e_draft_game_draft_order_order_by - e_draft_game_mode: e_draft_game_mode_order_by - e_draft_game_status: e_draft_game_status_order_by - e_lobby_access: e_lobby_access_order_by - expires_at: order_by - host: players_order_by - host_steam_id: order_by - id: order_by - inner_squad: order_by - invite_code: order_by - is_organizer: order_by - map_pool: map_pools_order_by - map_pool_id: order_by - match: matches_order_by - match_id: order_by - match_options_id: order_by - max_elo: order_by - min_elo: order_by - mode: order_by - options: match_options_order_by - pattern: order_by - pick_deadline: order_by - picks_aggregate: draft_game_picks_aggregate_order_by - players_aggregate: draft_game_players_aggregate_order_by - regions: order_by - require_approval: order_by - scheduled_at: order_by - status: order_by - team_1: teams_order_by - team_1_id: order_by - team_2: teams_order_by - team_2_id: order_by - type: order_by - updated_at: order_by -} - -"""primary key columns input for table: draft_games""" -input draft_games_pk_columns_input { - id: uuid! -} - -""" -select columns of table "draft_games" -""" -enum draft_games_select_column { - """column name""" - access - - """column name""" - capacity - - """column name""" - captain_selection - - """column name""" - created_at - - """column name""" - current_pick_lineup - - """column name""" - draft_order - - """column name""" - expires_at - - """column name""" - host_steam_id - - """column name""" - id - - """column name""" - inner_squad - - """column name""" - invite_code - - """column name""" - map_pool_id - - """column name""" - match_id - - """column name""" - match_options_id - - """column name""" - max_elo - - """column name""" - min_elo - - """column name""" - mode - - """column name""" - pick_deadline - - """column name""" - regions - - """column name""" - require_approval - - """column name""" - scheduled_at - - """column name""" - status - - """column name""" - team_1_id - - """column name""" - team_2_id - - """column name""" - type - - """column name""" - updated_at -} - -""" -select "draft_games_aggregate_bool_exp_bool_and_arguments_columns" columns of table "draft_games" -""" -enum draft_games_select_column_draft_games_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - inner_squad - - """column name""" - require_approval -} - -""" -select "draft_games_aggregate_bool_exp_bool_or_arguments_columns" columns of table "draft_games" -""" -enum draft_games_select_column_draft_games_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - inner_squad - - """column name""" - require_approval -} - -""" -input type for updating data in table "draft_games" -""" -input draft_games_set_input { - access: e_lobby_access_enum - capacity: Int - captain_selection: e_draft_game_captain_selection_enum - created_at: timestamptz - current_pick_lineup: Int - draft_order: e_draft_game_draft_order_enum - expires_at: timestamptz - host_steam_id: bigint - id: uuid - inner_squad: Boolean - invite_code: uuid - map_pool_id: uuid - match_id: uuid - match_options_id: uuid - max_elo: Int - min_elo: Int - mode: e_draft_game_mode_enum - pick_deadline: timestamptz - regions: [String!] - require_approval: Boolean - scheduled_at: timestamptz - status: e_draft_game_status_enum - team_1_id: uuid - team_2_id: uuid - type: e_match_types_enum - updated_at: timestamptz -} - -"""aggregate stddev on columns""" -type draft_games_stddev_fields { - capacity: Float - current_pick_lineup: Float - host_steam_id: Float - max_elo: Float - min_elo: Float -} - -""" -order by stddev() on columns of table "draft_games" -""" -input draft_games_stddev_order_by { - capacity: order_by - current_pick_lineup: order_by - host_steam_id: order_by - max_elo: order_by - min_elo: order_by -} - -"""aggregate stddev_pop on columns""" -type draft_games_stddev_pop_fields { - capacity: Float - current_pick_lineup: Float - host_steam_id: Float - max_elo: Float - min_elo: Float -} - -""" -order by stddev_pop() on columns of table "draft_games" -""" -input draft_games_stddev_pop_order_by { - capacity: order_by - current_pick_lineup: order_by - host_steam_id: order_by - max_elo: order_by - min_elo: order_by -} - -"""aggregate stddev_samp on columns""" -type draft_games_stddev_samp_fields { - capacity: Float - current_pick_lineup: Float - host_steam_id: Float - max_elo: Float - min_elo: Float -} - -""" -order by stddev_samp() on columns of table "draft_games" -""" -input draft_games_stddev_samp_order_by { - capacity: order_by - current_pick_lineup: order_by - host_steam_id: order_by - max_elo: order_by - min_elo: order_by -} - -""" -Streaming cursor of the table "draft_games" -""" -input draft_games_stream_cursor_input { - """Stream column input with initial value""" - initial_value: draft_games_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input draft_games_stream_cursor_value_input { - access: e_lobby_access_enum - capacity: Int - captain_selection: e_draft_game_captain_selection_enum - created_at: timestamptz - current_pick_lineup: Int - draft_order: e_draft_game_draft_order_enum - expires_at: timestamptz - host_steam_id: bigint - id: uuid - inner_squad: Boolean - invite_code: uuid - map_pool_id: uuid - match_id: uuid - match_options_id: uuid - max_elo: Int - min_elo: Int - mode: e_draft_game_mode_enum - pick_deadline: timestamptz - regions: [String!] - require_approval: Boolean - scheduled_at: timestamptz - status: e_draft_game_status_enum - team_1_id: uuid - team_2_id: uuid - type: e_match_types_enum - updated_at: timestamptz -} - -"""aggregate sum on columns""" -type draft_games_sum_fields { - capacity: Int - current_pick_lineup: Int - host_steam_id: bigint - max_elo: Int - min_elo: Int -} - -""" -order by sum() on columns of table "draft_games" -""" -input draft_games_sum_order_by { - capacity: order_by - current_pick_lineup: order_by - host_steam_id: order_by - max_elo: order_by - min_elo: order_by -} - -""" -update columns of table "draft_games" -""" -enum draft_games_update_column { - """column name""" - access - - """column name""" - capacity - - """column name""" - captain_selection - - """column name""" - created_at - - """column name""" - current_pick_lineup - - """column name""" - draft_order - - """column name""" - expires_at - - """column name""" - host_steam_id - - """column name""" - id - - """column name""" - inner_squad - - """column name""" - invite_code - - """column name""" - map_pool_id - - """column name""" - match_id - - """column name""" - match_options_id - - """column name""" - max_elo - - """column name""" - min_elo - - """column name""" - mode - - """column name""" - pick_deadline - - """column name""" - regions - - """column name""" - require_approval - - """column name""" - scheduled_at - - """column name""" - status - - """column name""" - team_1_id - - """column name""" - team_2_id - - """column name""" - type - - """column name""" - updated_at -} - -input draft_games_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: draft_games_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: draft_games_set_input - - """filter the rows which have to be updated""" - where: draft_games_bool_exp! -} - -"""aggregate var_pop on columns""" -type draft_games_var_pop_fields { - capacity: Float - current_pick_lineup: Float - host_steam_id: Float - max_elo: Float - min_elo: Float -} - -""" -order by var_pop() on columns of table "draft_games" -""" -input draft_games_var_pop_order_by { - capacity: order_by - current_pick_lineup: order_by - host_steam_id: order_by - max_elo: order_by - min_elo: order_by -} - -"""aggregate var_samp on columns""" -type draft_games_var_samp_fields { - capacity: Float - current_pick_lineup: Float - host_steam_id: Float - max_elo: Float - min_elo: Float -} - -""" -order by var_samp() on columns of table "draft_games" -""" -input draft_games_var_samp_order_by { - capacity: order_by - current_pick_lineup: order_by - host_steam_id: order_by - max_elo: order_by - min_elo: order_by -} - -"""aggregate variance on columns""" -type draft_games_variance_fields { - capacity: Float - current_pick_lineup: Float - host_steam_id: Float - max_elo: Float - min_elo: Float -} - -""" -order by variance() on columns of table "draft_games" -""" -input draft_games_variance_order_by { - capacity: order_by - current_pick_lineup: order_by - host_steam_id: order_by - max_elo: order_by - min_elo: order_by -} - -""" -columns and relationships of "e_award_sources" -""" -type e_award_sources { - description: String! - value: String! -} - -""" -aggregated selection of "e_award_sources" -""" -type e_award_sources_aggregate { - aggregate: e_award_sources_aggregate_fields - nodes: [e_award_sources!]! -} - -""" -aggregate fields of "e_award_sources" -""" -type e_award_sources_aggregate_fields { - count(columns: [e_award_sources_select_column!], distinct: Boolean): Int! - max: e_award_sources_max_fields - min: e_award_sources_min_fields -} - -""" -Boolean expression to filter rows from the table "e_award_sources". All fields are combined with a logical 'AND'. -""" -input e_award_sources_bool_exp { - _and: [e_award_sources_bool_exp!] - _not: e_award_sources_bool_exp - _or: [e_award_sources_bool_exp!] - description: String_comparison_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_award_sources" -""" -enum e_award_sources_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_award_sources_pkey -} - -enum e_award_sources_enum { - """Granted by hand""" - manual - - """Calculated from a season standing""" - season - - """Calculated from a tournament placement""" - tournament -} - -""" -Boolean expression to compare columns of type "e_award_sources_enum". All fields are combined with logical 'AND'. -""" -input e_award_sources_enum_comparison_exp { - _eq: e_award_sources_enum - _in: [e_award_sources_enum!] - _is_null: Boolean - _neq: e_award_sources_enum - _nin: [e_award_sources_enum!] -} - -""" -input type for inserting data into table "e_award_sources" -""" -input e_award_sources_insert_input { - description: String - value: String -} - -"""aggregate max on columns""" -type e_award_sources_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_award_sources_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_award_sources" -""" -type e_award_sources_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_award_sources!]! -} - -""" -on_conflict condition type for table "e_award_sources" -""" -input e_award_sources_on_conflict { - constraint: e_award_sources_constraint! - update_columns: [e_award_sources_update_column!]! = [] - where: e_award_sources_bool_exp -} - -"""Ordering options when selecting data from "e_award_sources".""" -input e_award_sources_order_by { - description: order_by - value: order_by -} - -"""primary key columns input for table: e_award_sources""" -input e_award_sources_pk_columns_input { - value: String! -} - -""" -select columns of table "e_award_sources" -""" -enum e_award_sources_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_award_sources" -""" -input e_award_sources_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_award_sources" -""" -input 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 -} - -"""Initial value of the column from where the streaming should start""" -input e_award_sources_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_award_sources" -""" -enum e_award_sources_update_column { - """column name""" - description - - """column name""" - value -} - -input e_award_sources_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_award_sources_set_input - - """filter the rows which have to be updated""" - where: e_award_sources_bool_exp! -} - -""" -columns and relationships of "e_award_tiers" -""" -type e_award_tiers { - description: String! - value: String! -} - -""" -aggregated selection of "e_award_tiers" -""" -type e_award_tiers_aggregate { - aggregate: e_award_tiers_aggregate_fields - nodes: [e_award_tiers!]! -} - -""" -aggregate fields of "e_award_tiers" -""" -type e_award_tiers_aggregate_fields { - count(columns: [e_award_tiers_select_column!], distinct: Boolean): Int! - max: e_award_tiers_max_fields - min: e_award_tiers_min_fields -} - -""" -Boolean expression to filter rows from the table "e_award_tiers". All fields are combined with a logical 'AND'. -""" -input e_award_tiers_bool_exp { - _and: [e_award_tiers_bool_exp!] - _not: e_award_tiers_bool_exp - _or: [e_award_tiers_bool_exp!] - description: String_comparison_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_award_tiers" -""" -enum e_award_tiers_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_award_tiers_pkey -} - -enum e_award_tiers_enum { - """Third place""" - bronze - - """First place""" - gold - - """Most valuable player""" - mvp - - """Second place""" - silver - - """Standalone award""" - special -} - -""" -Boolean expression to compare columns of type "e_award_tiers_enum". All fields are combined with logical 'AND'. -""" -input e_award_tiers_enum_comparison_exp { - _eq: e_award_tiers_enum - _in: [e_award_tiers_enum!] - _is_null: Boolean - _neq: e_award_tiers_enum - _nin: [e_award_tiers_enum!] -} - -""" -input type for inserting data into table "e_award_tiers" -""" -input e_award_tiers_insert_input { - description: String - value: String -} - -"""aggregate max on columns""" -type e_award_tiers_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_award_tiers_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_award_tiers" -""" -type e_award_tiers_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_award_tiers!]! -} - -""" -on_conflict condition type for table "e_award_tiers" -""" -input e_award_tiers_on_conflict { - constraint: e_award_tiers_constraint! - update_columns: [e_award_tiers_update_column!]! = [] - where: e_award_tiers_bool_exp -} - -"""Ordering options when selecting data from "e_award_tiers".""" -input e_award_tiers_order_by { - description: order_by - value: order_by -} - -"""primary key columns input for table: e_award_tiers""" -input e_award_tiers_pk_columns_input { - value: String! -} - -""" -select columns of table "e_award_tiers" -""" -enum e_award_tiers_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_award_tiers" -""" -input e_award_tiers_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_award_tiers" -""" -input 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 -} - -"""Initial value of the column from where the streaming should start""" -input e_award_tiers_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_award_tiers" -""" -enum e_award_tiers_update_column { - """column name""" - description - - """column name""" - value -} - -input e_award_tiers_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_award_tiers_set_input - - """filter the rows which have to be updated""" - where: e_award_tiers_bool_exp! -} - -""" -columns and relationships of "e_check_in_settings" -""" -type e_check_in_settings { - description: String! - value: String! -} - -""" -aggregated selection of "e_check_in_settings" -""" -type e_check_in_settings_aggregate { - aggregate: e_check_in_settings_aggregate_fields - nodes: [e_check_in_settings!]! -} - -""" -aggregate fields of "e_check_in_settings" -""" -type e_check_in_settings_aggregate_fields { - count(columns: [e_check_in_settings_select_column!], distinct: Boolean): Int! - max: e_check_in_settings_max_fields - min: e_check_in_settings_min_fields -} - -""" -Boolean expression to filter rows from the table "e_check_in_settings". All fields are combined with a logical 'AND'. -""" -input e_check_in_settings_bool_exp { - _and: [e_check_in_settings_bool_exp!] - _not: e_check_in_settings_bool_exp - _or: [e_check_in_settings_bool_exp!] - description: String_comparison_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_check_in_settings" -""" -enum e_check_in_settings_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_check_in_settings_pkey -} - -enum e_check_in_settings_enum { - """Admins Only""" - Admin - - """Captains Only""" - Captains - - """All Players""" - Players -} - -""" -Boolean expression to compare columns of type "e_check_in_settings_enum". All fields are combined with logical 'AND'. -""" -input e_check_in_settings_enum_comparison_exp { - _eq: e_check_in_settings_enum - _in: [e_check_in_settings_enum!] - _is_null: Boolean - _neq: e_check_in_settings_enum - _nin: [e_check_in_settings_enum!] -} - -""" -input type for inserting data into table "e_check_in_settings" -""" -input e_check_in_settings_insert_input { - description: String - value: String -} - -"""aggregate max on columns""" -type e_check_in_settings_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_check_in_settings_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_check_in_settings" -""" -type e_check_in_settings_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_check_in_settings!]! -} - -""" -on_conflict condition type for table "e_check_in_settings" -""" -input 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 -} - -"""Ordering options when selecting data from "e_check_in_settings".""" -input e_check_in_settings_order_by { - description: order_by - value: order_by -} - -"""primary key columns input for table: e_check_in_settings""" -input e_check_in_settings_pk_columns_input { - value: String! -} - -""" -select columns of table "e_check_in_settings" -""" -enum e_check_in_settings_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_check_in_settings" -""" -input e_check_in_settings_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_check_in_settings" -""" -input 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 -} - -"""Initial value of the column from where the streaming should start""" -input e_check_in_settings_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_check_in_settings" -""" -enum e_check_in_settings_update_column { - """column name""" - description - - """column name""" - value -} - -input e_check_in_settings_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_check_in_settings_set_input - - """filter the rows which have to be updated""" - where: e_check_in_settings_bool_exp! -} - -""" -columns and relationships of "e_draft_game_captain_selection" -""" -type e_draft_game_captain_selection { - description: String! - value: String! -} - -""" -aggregated selection of "e_draft_game_captain_selection" -""" -type e_draft_game_captain_selection_aggregate { - aggregate: e_draft_game_captain_selection_aggregate_fields - nodes: [e_draft_game_captain_selection!]! -} - -""" -aggregate fields of "e_draft_game_captain_selection" -""" -type e_draft_game_captain_selection_aggregate_fields { - count(columns: [e_draft_game_captain_selection_select_column!], distinct: Boolean): Int! - max: e_draft_game_captain_selection_max_fields - min: e_draft_game_captain_selection_min_fields -} - -""" -Boolean expression to filter rows from the table "e_draft_game_captain_selection". All fields are combined with a logical 'AND'. -""" -input e_draft_game_captain_selection_bool_exp { - _and: [e_draft_game_captain_selection_bool_exp!] - _not: e_draft_game_captain_selection_bool_exp - _or: [e_draft_game_captain_selection_bool_exp!] - description: String_comparison_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_draft_game_captain_selection" -""" -enum e_draft_game_captain_selection_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_draft_game_captain_selection_pkey -} - -enum e_draft_game_captain_selection_enum { - """Host and Next Highest""" - HostAndNext - - """Host Picks Captains""" - Manual - - """Random Two""" - RandomTwo - - """Top 2 by Rank""" - TopEloTwo -} - -""" -Boolean expression to compare columns of type "e_draft_game_captain_selection_enum". All fields are combined with logical 'AND'. -""" -input e_draft_game_captain_selection_enum_comparison_exp { - _eq: e_draft_game_captain_selection_enum - _in: [e_draft_game_captain_selection_enum!] - _is_null: Boolean - _neq: e_draft_game_captain_selection_enum - _nin: [e_draft_game_captain_selection_enum!] -} - -""" -input type for inserting data into table "e_draft_game_captain_selection" -""" -input e_draft_game_captain_selection_insert_input { - description: String - value: String -} - -"""aggregate max on columns""" -type e_draft_game_captain_selection_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_draft_game_captain_selection_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_draft_game_captain_selection" -""" -type e_draft_game_captain_selection_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_draft_game_captain_selection!]! -} - -""" -input type for inserting object relation for remote table "e_draft_game_captain_selection" -""" -input 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 -} - -""" -on_conflict condition type for table "e_draft_game_captain_selection" -""" -input 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 -} - -""" -Ordering options when selecting data from "e_draft_game_captain_selection". -""" -input e_draft_game_captain_selection_order_by { - description: order_by - value: order_by -} - -"""primary key columns input for table: e_draft_game_captain_selection""" -input e_draft_game_captain_selection_pk_columns_input { - value: String! -} - -""" -select columns of table "e_draft_game_captain_selection" -""" -enum e_draft_game_captain_selection_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_draft_game_captain_selection" -""" -input e_draft_game_captain_selection_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_draft_game_captain_selection" -""" -input 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 -} - -"""Initial value of the column from where the streaming should start""" -input e_draft_game_captain_selection_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_draft_game_captain_selection" -""" -enum e_draft_game_captain_selection_update_column { - """column name""" - description - - """column name""" - value -} - -input 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 - - """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" -""" -type e_draft_game_draft_order { - description: String! - value: String! -} - -""" -aggregated selection of "e_draft_game_draft_order" -""" -type e_draft_game_draft_order_aggregate { - aggregate: e_draft_game_draft_order_aggregate_fields - nodes: [e_draft_game_draft_order!]! -} - -""" -aggregate fields of "e_draft_game_draft_order" -""" -type e_draft_game_draft_order_aggregate_fields { - count(columns: [e_draft_game_draft_order_select_column!], distinct: Boolean): Int! - max: e_draft_game_draft_order_max_fields - min: e_draft_game_draft_order_min_fields -} - -""" -Boolean expression to filter rows from the table "e_draft_game_draft_order". All fields are combined with a logical 'AND'. -""" -input e_draft_game_draft_order_bool_exp { - _and: [e_draft_game_draft_order_bool_exp!] - _not: e_draft_game_draft_order_bool_exp - _or: [e_draft_game_draft_order_bool_exp!] - description: String_comparison_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_draft_game_draft_order" -""" -enum e_draft_game_draft_order_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_draft_game_draft_order_pkey -} - -enum e_draft_game_draft_order_enum { - """Alternating (1-2-1-2)""" - Alternating - - """Front-Loaded (1-2-2-1-2-1)""" - FrontLoaded - - """Snake (1-2-2-1)""" - Snake -} - -""" -Boolean expression to compare columns of type "e_draft_game_draft_order_enum". All fields are combined with logical 'AND'. -""" -input e_draft_game_draft_order_enum_comparison_exp { - _eq: e_draft_game_draft_order_enum - _in: [e_draft_game_draft_order_enum!] - _is_null: Boolean - _neq: e_draft_game_draft_order_enum - _nin: [e_draft_game_draft_order_enum!] -} - -""" -input type for inserting data into table "e_draft_game_draft_order" -""" -input e_draft_game_draft_order_insert_input { - description: String - value: String -} - -"""aggregate max on columns""" -type e_draft_game_draft_order_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_draft_game_draft_order_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_draft_game_draft_order" -""" -type e_draft_game_draft_order_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_draft_game_draft_order!]! -} - -""" -input type for inserting object relation for remote table "e_draft_game_draft_order" -""" -input 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 -} - -""" -on_conflict condition type for table "e_draft_game_draft_order" -""" -input 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 -} - -"""Ordering options when selecting data from "e_draft_game_draft_order".""" -input e_draft_game_draft_order_order_by { - description: order_by - value: order_by -} - -"""primary key columns input for table: e_draft_game_draft_order""" -input e_draft_game_draft_order_pk_columns_input { - value: String! -} - -""" -select columns of table "e_draft_game_draft_order" -""" -enum e_draft_game_draft_order_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_draft_game_draft_order" -""" -input e_draft_game_draft_order_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_draft_game_draft_order" -""" -input e_draft_game_draft_order_stream_cursor_input { - """Stream column input with initial value""" - initial_value: e_draft_game_draft_order_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input e_draft_game_draft_order_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_draft_game_draft_order" -""" -enum e_draft_game_draft_order_update_column { - """column name""" - description - - """column name""" - value -} - -input e_draft_game_draft_order_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_draft_game_draft_order_set_input - - """filter the rows which have to be updated""" - where: e_draft_game_draft_order_bool_exp! -} - -""" -columns and relationships of "e_draft_game_mode" -""" -type e_draft_game_mode { - description: String! - value: String! -} - -""" -aggregated selection of "e_draft_game_mode" -""" -type e_draft_game_mode_aggregate { - aggregate: e_draft_game_mode_aggregate_fields - nodes: [e_draft_game_mode!]! -} - -""" -aggregate fields of "e_draft_game_mode" -""" -type e_draft_game_mode_aggregate_fields { - count(columns: [e_draft_game_mode_select_column!], distinct: Boolean): Int! - max: e_draft_game_mode_max_fields - min: e_draft_game_mode_min_fields -} - -""" -Boolean expression to filter rows from the table "e_draft_game_mode". All fields are combined with a logical 'AND'. -""" -input e_draft_game_mode_bool_exp { - _and: [e_draft_game_mode_bool_exp!] - _not: e_draft_game_mode_bool_exp - _or: [e_draft_game_mode_bool_exp!] - description: String_comparison_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_draft_game_mode" -""" -enum e_draft_game_mode_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_draft_game_mode_pkey -} - -enum e_draft_game_mode_enum { - """Two Captains Draft""" - Captains - - """Host Assigns Teams""" - Host - - """Auto-Split Teams""" - Pug - - """Pre-Made Teams""" - Teams -} - -""" -Boolean expression to compare columns of type "e_draft_game_mode_enum". All fields are combined with logical 'AND'. -""" -input e_draft_game_mode_enum_comparison_exp { - _eq: e_draft_game_mode_enum - _in: [e_draft_game_mode_enum!] - _is_null: Boolean - _neq: e_draft_game_mode_enum - _nin: [e_draft_game_mode_enum!] -} - -""" -input type for inserting data into table "e_draft_game_mode" -""" -input e_draft_game_mode_insert_input { - description: String - value: String -} - -"""aggregate max on columns""" -type e_draft_game_mode_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_draft_game_mode_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_draft_game_mode" -""" -type e_draft_game_mode_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_draft_game_mode!]! -} - -""" -input type for inserting object relation for remote table "e_draft_game_mode" -""" -input 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 -} - -""" -on_conflict condition type for table "e_draft_game_mode" -""" -input 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 -} - -"""Ordering options when selecting data from "e_draft_game_mode".""" -input e_draft_game_mode_order_by { - description: order_by - value: order_by -} - -"""primary key columns input for table: e_draft_game_mode""" -input e_draft_game_mode_pk_columns_input { - value: String! -} - -""" -select columns of table "e_draft_game_mode" -""" -enum e_draft_game_mode_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_draft_game_mode" -""" -input e_draft_game_mode_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_draft_game_mode" -""" -input 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 -} - -"""Initial value of the column from where the streaming should start""" -input e_draft_game_mode_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_draft_game_mode" -""" -enum e_draft_game_mode_update_column { - """column name""" - description - - """column name""" - value -} - -input e_draft_game_mode_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_draft_game_mode_set_input - - """filter the rows which have to be updated""" - where: e_draft_game_mode_bool_exp! -} - -""" -columns and relationships of "e_draft_game_player_status" -""" -type e_draft_game_player_status { - description: String! - value: String! -} - -""" -aggregated selection of "e_draft_game_player_status" -""" -type e_draft_game_player_status_aggregate { - aggregate: e_draft_game_player_status_aggregate_fields - nodes: [e_draft_game_player_status!]! -} - -""" -aggregate fields of "e_draft_game_player_status" -""" -type e_draft_game_player_status_aggregate_fields { - count(columns: [e_draft_game_player_status_select_column!], distinct: Boolean): Int! - max: e_draft_game_player_status_max_fields - min: e_draft_game_player_status_min_fields -} - -""" -Boolean expression to filter rows from the table "e_draft_game_player_status". All fields are combined with a logical 'AND'. -""" -input e_draft_game_player_status_bool_exp { - _and: [e_draft_game_player_status_bool_exp!] - _not: e_draft_game_player_status_bool_exp - _or: [e_draft_game_player_status_bool_exp!] - description: String_comparison_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_draft_game_player_status" -""" -enum e_draft_game_player_status_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_draft_game_player_status_pkey -} - -enum e_draft_game_player_status_enum { - """Player Accepted Into Game""" - Accepted - - """Player Invited To Join""" - Invited - - """Player Requested To Join""" - Requested - - """Player On Waitlist""" - Waitlist -} - -""" -Boolean expression to compare columns of type "e_draft_game_player_status_enum". All fields are combined with logical 'AND'. -""" -input e_draft_game_player_status_enum_comparison_exp { - _eq: e_draft_game_player_status_enum - _in: [e_draft_game_player_status_enum!] - _is_null: Boolean - _neq: e_draft_game_player_status_enum - _nin: [e_draft_game_player_status_enum!] -} - -""" -input type for inserting data into table "e_draft_game_player_status" -""" -input e_draft_game_player_status_insert_input { - description: String - value: String -} - -"""aggregate max on columns""" -type e_draft_game_player_status_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_draft_game_player_status_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_draft_game_player_status" -""" -type e_draft_game_player_status_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_draft_game_player_status!]! -} - -""" -input type for inserting object relation for remote table "e_draft_game_player_status" -""" -input 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 -} - -""" -on_conflict condition type for table "e_draft_game_player_status" -""" -input 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 -} - -""" -Ordering options when selecting data from "e_draft_game_player_status". -""" -input e_draft_game_player_status_order_by { - description: order_by - value: order_by -} - -"""primary key columns input for table: e_draft_game_player_status""" -input e_draft_game_player_status_pk_columns_input { - value: String! -} - -""" -select columns of table "e_draft_game_player_status" -""" -enum e_draft_game_player_status_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_draft_game_player_status" -""" -input e_draft_game_player_status_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_draft_game_player_status" -""" -input 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 -} - -"""Initial value of the column from where the streaming should start""" -input e_draft_game_player_status_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_draft_game_player_status" -""" -enum e_draft_game_player_status_update_column { - """column name""" - description - - """column name""" - value -} - -input e_draft_game_player_status_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_draft_game_player_status_set_input - - """filter the rows which have to be updated""" - where: e_draft_game_player_status_bool_exp! -} - -""" -columns and relationships of "e_draft_game_status" -""" -type e_draft_game_status { - description: String! - value: String! -} - -""" -aggregated selection of "e_draft_game_status" -""" -type e_draft_game_status_aggregate { - aggregate: e_draft_game_status_aggregate_fields - nodes: [e_draft_game_status!]! -} - -""" -aggregate fields of "e_draft_game_status" -""" -type e_draft_game_status_aggregate_fields { - count(columns: [e_draft_game_status_select_column!], distinct: Boolean): Int! - max: e_draft_game_status_max_fields - min: e_draft_game_status_min_fields -} - -""" -Boolean expression to filter rows from the table "e_draft_game_status". All fields are combined with a logical 'AND'. -""" -input e_draft_game_status_bool_exp { - _and: [e_draft_game_status_bool_exp!] - _not: e_draft_game_status_bool_exp - _or: [e_draft_game_status_bool_exp!] - description: String_comparison_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_draft_game_status" -""" -enum e_draft_game_status_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_draft_game_status_pkey -} - -enum e_draft_game_status_enum { - """Canceled""" - Canceled - - """Completed""" - Completed - - """Creating Match""" - CreatingMatch - - """Drafting Players""" - Drafting - - """Lobby Full""" - Filled - - """Accepting Players""" - Open - - """Selecting Captains""" - SelectingCaptains -} - -""" -Boolean expression to compare columns of type "e_draft_game_status_enum". All fields are combined with logical 'AND'. -""" -input e_draft_game_status_enum_comparison_exp { - _eq: e_draft_game_status_enum - _in: [e_draft_game_status_enum!] - _is_null: Boolean - _neq: e_draft_game_status_enum - _nin: [e_draft_game_status_enum!] -} - -""" -input type for inserting data into table "e_draft_game_status" -""" -input e_draft_game_status_insert_input { - description: String - value: String -} - -"""aggregate max on columns""" -type e_draft_game_status_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_draft_game_status_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_draft_game_status" -""" -type e_draft_game_status_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_draft_game_status!]! -} - -""" -input type for inserting object relation for remote table "e_draft_game_status" -""" -input 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 -} - -""" -on_conflict condition type for table "e_draft_game_status" -""" -input 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 -} - -"""Ordering options when selecting data from "e_draft_game_status".""" -input e_draft_game_status_order_by { - description: order_by - value: order_by -} - -"""primary key columns input for table: e_draft_game_status""" -input e_draft_game_status_pk_columns_input { - value: String! -} - -""" -select columns of table "e_draft_game_status" -""" -enum e_draft_game_status_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_draft_game_status" -""" -input e_draft_game_status_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_draft_game_status" -""" -input 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 -} - -"""Initial value of the column from where the streaming should start""" -input e_draft_game_status_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_draft_game_status" -""" -enum e_draft_game_status_update_column { - """column name""" - description - - """column name""" - value -} - -input e_draft_game_status_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_draft_game_status_set_input - - """filter the rows which have to be updated""" - where: e_draft_game_status_bool_exp! -} - -""" -columns and relationships of "e_event_media_access" -""" -type e_event_media_access { - description: String! - value: String! -} - -""" -aggregated selection of "e_event_media_access" -""" -type e_event_media_access_aggregate { - aggregate: e_event_media_access_aggregate_fields - nodes: [e_event_media_access!]! -} - -""" -aggregate fields of "e_event_media_access" -""" -type e_event_media_access_aggregate_fields { - count(columns: [e_event_media_access_select_column!], distinct: Boolean): Int! - max: e_event_media_access_max_fields - min: e_event_media_access_min_fields -} - -""" -Boolean expression to filter rows from the table "e_event_media_access". All fields are combined with a logical 'AND'. -""" -input e_event_media_access_bool_exp { - _and: [e_event_media_access_bool_exp!] - _not: e_event_media_access_bool_exp - _or: [e_event_media_access_bool_exp!] - description: String_comparison_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_event_media_access" -""" -enum e_event_media_access_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_event_media_access_pkey -} - -enum e_event_media_access_enum { - """Anyone involved in the event""" - Involved - - """Organizers only""" - Organizers -} - -""" -Boolean expression to compare columns of type "e_event_media_access_enum". All fields are combined with logical 'AND'. -""" -input e_event_media_access_enum_comparison_exp { - _eq: e_event_media_access_enum - _in: [e_event_media_access_enum!] - _is_null: Boolean - _neq: e_event_media_access_enum - _nin: [e_event_media_access_enum!] -} - -""" -input type for inserting data into table "e_event_media_access" -""" -input e_event_media_access_insert_input { - description: String - value: String -} - -"""aggregate max on columns""" -type e_event_media_access_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_event_media_access_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_event_media_access" -""" -type e_event_media_access_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_event_media_access!]! -} - -""" -on_conflict condition type for table "e_event_media_access" -""" -input e_event_media_access_on_conflict { - constraint: e_event_media_access_constraint! - update_columns: [e_event_media_access_update_column!]! = [] - where: e_event_media_access_bool_exp -} - -"""Ordering options when selecting data from "e_event_media_access".""" -input e_event_media_access_order_by { - description: order_by - value: order_by -} - -"""primary key columns input for table: e_event_media_access""" -input e_event_media_access_pk_columns_input { - value: String! -} - -""" -select columns of table "e_event_media_access" -""" -enum e_event_media_access_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_event_media_access" -""" -input e_event_media_access_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_event_media_access" -""" -input e_event_media_access_stream_cursor_input { - """Stream column input with initial value""" - initial_value: e_event_media_access_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input e_event_media_access_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_event_media_access" -""" -enum e_event_media_access_update_column { - """column name""" - description - - """column name""" - value -} - -input e_event_media_access_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_event_media_access_set_input - - """filter the rows which have to be updated""" - where: e_event_media_access_bool_exp! -} - -""" -columns and relationships of "e_event_visibility" -""" -type e_event_visibility { - description: String! - value: String! -} - -""" -aggregated selection of "e_event_visibility" -""" -type e_event_visibility_aggregate { - aggregate: e_event_visibility_aggregate_fields - nodes: [e_event_visibility!]! -} - -""" -aggregate fields of "e_event_visibility" -""" -type e_event_visibility_aggregate_fields { - count(columns: [e_event_visibility_select_column!], distinct: Boolean): Int! - max: e_event_visibility_max_fields - min: e_event_visibility_min_fields -} - -""" -Boolean expression to filter rows from the table "e_event_visibility". All fields are combined with a logical 'AND'. -""" -input e_event_visibility_bool_exp { - _and: [e_event_visibility_bool_exp!] - _not: e_event_visibility_bool_exp - _or: [e_event_visibility_bool_exp!] - description: String_comparison_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_event_visibility" -""" -enum e_event_visibility_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_event_visibility_pkey -} - -enum e_event_visibility_enum { - """Involved people and their friends""" - Friends - - """Only people involved in the event""" - Private - - """Anyone""" - Public -} - -""" -Boolean expression to compare columns of type "e_event_visibility_enum". All fields are combined with logical 'AND'. -""" -input e_event_visibility_enum_comparison_exp { - _eq: e_event_visibility_enum - _in: [e_event_visibility_enum!] - _is_null: Boolean - _neq: e_event_visibility_enum - _nin: [e_event_visibility_enum!] -} - -""" -input type for inserting data into table "e_event_visibility" -""" -input e_event_visibility_insert_input { - description: String - value: String -} - -"""aggregate max on columns""" -type e_event_visibility_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_event_visibility_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_event_visibility" -""" -type e_event_visibility_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_event_visibility!]! -} - -""" -on_conflict condition type for table "e_event_visibility" -""" -input e_event_visibility_on_conflict { - constraint: e_event_visibility_constraint! - update_columns: [e_event_visibility_update_column!]! = [] - where: e_event_visibility_bool_exp -} - -"""Ordering options when selecting data from "e_event_visibility".""" -input e_event_visibility_order_by { - description: order_by - value: order_by -} - -"""primary key columns input for table: e_event_visibility""" -input e_event_visibility_pk_columns_input { - value: String! -} - -""" -select columns of table "e_event_visibility" -""" -enum e_event_visibility_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_event_visibility" -""" -input e_event_visibility_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_event_visibility" -""" -input e_event_visibility_stream_cursor_input { - """Stream column input with initial value""" - initial_value: e_event_visibility_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input e_event_visibility_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_event_visibility" -""" -enum e_event_visibility_update_column { - """column name""" - description - - """column name""" - value -} - -input e_event_visibility_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_event_visibility_set_input - - """filter the rows which have to be updated""" - where: e_event_visibility_bool_exp! -} - -""" -columns and relationships of "e_friend_status" -""" -type e_friend_status { - description: String! - value: String! -} - -""" -aggregated selection of "e_friend_status" -""" -type e_friend_status_aggregate { - aggregate: e_friend_status_aggregate_fields - nodes: [e_friend_status!]! -} - -""" -aggregate fields of "e_friend_status" -""" -type e_friend_status_aggregate_fields { - count(columns: [e_friend_status_select_column!], distinct: Boolean): Int! - max: e_friend_status_max_fields - min: e_friend_status_min_fields -} - -""" -Boolean expression to filter rows from the table "e_friend_status". All fields are combined with a logical 'AND'. -""" -input e_friend_status_bool_exp { - _and: [e_friend_status_bool_exp!] - _not: e_friend_status_bool_exp - _or: [e_friend_status_bool_exp!] - description: String_comparison_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_friend_status" -""" -enum e_friend_status_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_friend_status_pkey -} - -enum e_friend_status_enum { - """Accepted""" - Accepted - - """Pending""" - Pending -} - -""" -Boolean expression to compare columns of type "e_friend_status_enum". All fields are combined with logical 'AND'. -""" -input e_friend_status_enum_comparison_exp { - _eq: e_friend_status_enum - _in: [e_friend_status_enum!] - _is_null: Boolean - _neq: e_friend_status_enum - _nin: [e_friend_status_enum!] -} - -""" -input type for inserting data into table "e_friend_status" -""" -input e_friend_status_insert_input { - description: String - value: String -} - -"""aggregate max on columns""" -type e_friend_status_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_friend_status_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_friend_status" -""" -type e_friend_status_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_friend_status!]! -} - -""" -input type for inserting object relation for remote table "e_friend_status" -""" -input e_friend_status_obj_rel_insert_input { - data: e_friend_status_insert_input! - - """upsert condition""" - on_conflict: e_friend_status_on_conflict -} - -""" -on_conflict condition type for table "e_friend_status" -""" -input e_friend_status_on_conflict { - constraint: e_friend_status_constraint! - update_columns: [e_friend_status_update_column!]! = [] - where: e_friend_status_bool_exp -} - -"""Ordering options when selecting data from "e_friend_status".""" -input e_friend_status_order_by { - description: order_by - value: order_by -} - -"""primary key columns input for table: e_friend_status""" -input e_friend_status_pk_columns_input { - value: String! -} - -""" -select columns of table "e_friend_status" -""" -enum e_friend_status_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_friend_status" -""" -input e_friend_status_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_friend_status" -""" -input 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 -} - -"""Initial value of the column from where the streaming should start""" -input e_friend_status_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_friend_status" -""" -enum e_friend_status_update_column { - """column name""" - description - - """column name""" - value -} - -input e_friend_status_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_friend_status_set_input - - """filter the rows which have to be updated""" - where: e_friend_status_bool_exp! -} - -""" -columns and relationships of "e_game_cfg_types" -""" -type e_game_cfg_types { - description: String! - value: String! -} - -""" -aggregated selection of "e_game_cfg_types" -""" -type e_game_cfg_types_aggregate { - aggregate: e_game_cfg_types_aggregate_fields - nodes: [e_game_cfg_types!]! -} - -""" -aggregate fields of "e_game_cfg_types" -""" -type e_game_cfg_types_aggregate_fields { - count(columns: [e_game_cfg_types_select_column!], distinct: Boolean): Int! - max: e_game_cfg_types_max_fields - min: e_game_cfg_types_min_fields -} - -""" -Boolean expression to filter rows from the table "e_game_cfg_types". All fields are combined with a logical 'AND'. -""" -input e_game_cfg_types_bool_exp { - _and: [e_game_cfg_types_bool_exp!] - _not: e_game_cfg_types_bool_exp - _or: [e_game_cfg_types_bool_exp!] - description: String_comparison_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_game_cfg_types" -""" -enum e_game_cfg_types_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_game_cfg_types_pkey -} - -enum e_game_cfg_types_enum { - """Base game configuration""" - Base - - """Competitive game configuration""" - Competitive - - """Duel game configuration""" - Duel - - """Applies to every match, on top of the type configuration""" - Global - - """Lan game configuration""" - Lan - - """Live game configuration""" - Live - - """Wingman game configuration""" - Wingman -} - -""" -Boolean expression to compare columns of type "e_game_cfg_types_enum". All fields are combined with logical 'AND'. -""" -input e_game_cfg_types_enum_comparison_exp { - _eq: e_game_cfg_types_enum - _in: [e_game_cfg_types_enum!] - _is_null: Boolean - _neq: e_game_cfg_types_enum - _nin: [e_game_cfg_types_enum!] -} - -""" -input type for inserting data into table "e_game_cfg_types" -""" -input e_game_cfg_types_insert_input { - description: String - value: String -} - -"""aggregate max on columns""" -type e_game_cfg_types_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_game_cfg_types_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_game_cfg_types" -""" -type e_game_cfg_types_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_game_cfg_types!]! -} - -""" -on_conflict condition type for table "e_game_cfg_types" -""" -input 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 -} - -"""Ordering options when selecting data from "e_game_cfg_types".""" -input e_game_cfg_types_order_by { - description: order_by - value: order_by -} - -"""primary key columns input for table: e_game_cfg_types""" -input e_game_cfg_types_pk_columns_input { - value: String! -} - -""" -select columns of table "e_game_cfg_types" -""" -enum e_game_cfg_types_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_game_cfg_types" -""" -input e_game_cfg_types_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_game_cfg_types" -""" -input 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 -} - -"""Initial value of the column from where the streaming should start""" -input e_game_cfg_types_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_game_cfg_types" -""" -enum e_game_cfg_types_update_column { - """column name""" - description - - """column name""" - value -} - -input e_game_cfg_types_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_game_cfg_types_set_input - - """filter the rows which have to be updated""" - 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" -""" -type e_game_server_node_statuses { - description: String! - value: String! -} - -""" -aggregated selection of "e_game_server_node_statuses" -""" -type e_game_server_node_statuses_aggregate { - aggregate: e_game_server_node_statuses_aggregate_fields - nodes: [e_game_server_node_statuses!]! -} - -""" -aggregate fields of "e_game_server_node_statuses" -""" -type e_game_server_node_statuses_aggregate_fields { - count(columns: [e_game_server_node_statuses_select_column!], distinct: Boolean): Int! - max: e_game_server_node_statuses_max_fields - min: e_game_server_node_statuses_min_fields -} - -""" -Boolean expression to filter rows from the table "e_game_server_node_statuses". All fields are combined with a logical 'AND'. -""" -input e_game_server_node_statuses_bool_exp { - _and: [e_game_server_node_statuses_bool_exp!] - _not: e_game_server_node_statuses_bool_exp - _or: [e_game_server_node_statuses_bool_exp!] - description: String_comparison_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_game_server_node_statuses" -""" -enum e_game_server_node_statuses_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_game_server_node_statuses_pkey -} - -enum e_game_server_node_statuses_enum { - """Not Accepting New Matches""" - NotAcceptingNewMatches - - """Offline""" - Offline - - """Online""" - Online - - """Waiting to Setup""" - Setup -} - -""" -Boolean expression to compare columns of type "e_game_server_node_statuses_enum". All fields are combined with logical 'AND'. -""" -input e_game_server_node_statuses_enum_comparison_exp { - _eq: e_game_server_node_statuses_enum - _in: [e_game_server_node_statuses_enum!] - _is_null: Boolean - _neq: e_game_server_node_statuses_enum - _nin: [e_game_server_node_statuses_enum!] -} - -""" -input type for inserting data into table "e_game_server_node_statuses" -""" -input e_game_server_node_statuses_insert_input { - description: String - value: String -} - -"""aggregate max on columns""" -type e_game_server_node_statuses_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_game_server_node_statuses_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_game_server_node_statuses" -""" -type e_game_server_node_statuses_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_game_server_node_statuses!]! -} - -""" -input type for inserting object relation for remote table "e_game_server_node_statuses" -""" -input e_game_server_node_statuses_obj_rel_insert_input { - data: e_game_server_node_statuses_insert_input! - - """upsert condition""" - on_conflict: e_game_server_node_statuses_on_conflict -} - -""" -on_conflict condition type for table "e_game_server_node_statuses" -""" -input 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 -} - -""" -Ordering options when selecting data from "e_game_server_node_statuses". -""" -input e_game_server_node_statuses_order_by { - description: order_by - value: order_by -} - -"""primary key columns input for table: e_game_server_node_statuses""" -input e_game_server_node_statuses_pk_columns_input { - value: String! -} - -""" -select columns of table "e_game_server_node_statuses" -""" -enum e_game_server_node_statuses_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_game_server_node_statuses" -""" -input e_game_server_node_statuses_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_game_server_node_statuses" -""" -input e_game_server_node_statuses_stream_cursor_input { - """Stream column input with initial value""" - initial_value: e_game_server_node_statuses_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input e_game_server_node_statuses_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_game_server_node_statuses" -""" -enum e_game_server_node_statuses_update_column { - """column name""" - description - - """column name""" - value -} - -input e_game_server_node_statuses_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_game_server_node_statuses_set_input - - """filter the rows which have to be updated""" - where: e_game_server_node_statuses_bool_exp! -} - -""" -columns and relationships of "e_league_movement_types" -""" -type e_league_movement_types { - description: String! - value: String! -} - -""" -aggregated selection of "e_league_movement_types" -""" -type e_league_movement_types_aggregate { - aggregate: e_league_movement_types_aggregate_fields - nodes: [e_league_movement_types!]! -} - -""" -aggregate fields of "e_league_movement_types" -""" -type e_league_movement_types_aggregate_fields { - count(columns: [e_league_movement_types_select_column!], distinct: Boolean): Int! - max: e_league_movement_types_max_fields - min: e_league_movement_types_min_fields -} - -""" -Boolean expression to filter rows from the table "e_league_movement_types". All fields are combined with a logical 'AND'. -""" -input e_league_movement_types_bool_exp { - _and: [e_league_movement_types_bool_exp!] - _not: e_league_movement_types_bool_exp - _or: [e_league_movement_types_bool_exp!] - description: String_comparison_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_league_movement_types" -""" -enum e_league_movement_types_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_league_movement_types_pkey -} - -enum e_league_movement_types_enum { - """Promoted directly to a higher division""" - DirectPromote - - """Relegated directly to a lower division""" - DirectRelegate - - """Holds its division""" - Hold - - """Promoted to a higher division""" - Promote - - """Relegated to a lower division""" - Relegate - - """Plays a relegation playoff to keep its division""" - RelegationDown - - """Plays a relegation playoff for a higher-division spot""" - RelegationUp - - """Removed from the league""" - Remove - - """Stays in the same division""" - Stay -} - -""" -Boolean expression to compare columns of type "e_league_movement_types_enum". All fields are combined with logical 'AND'. -""" -input e_league_movement_types_enum_comparison_exp { - _eq: e_league_movement_types_enum - _in: [e_league_movement_types_enum!] - _is_null: Boolean - _neq: e_league_movement_types_enum - _nin: [e_league_movement_types_enum!] -} - -""" -input type for inserting data into table "e_league_movement_types" -""" -input e_league_movement_types_insert_input { - description: String - value: String -} - -"""aggregate max on columns""" -type e_league_movement_types_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_league_movement_types_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_league_movement_types" -""" -type e_league_movement_types_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_league_movement_types!]! -} - -""" -input type for inserting object relation for remote table "e_league_movement_types" -""" -input 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 -} - -""" -on_conflict condition type for table "e_league_movement_types" -""" -input 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 -} - -"""Ordering options when selecting data from "e_league_movement_types".""" -input e_league_movement_types_order_by { - description: order_by - value: order_by -} - -"""primary key columns input for table: e_league_movement_types""" -input e_league_movement_types_pk_columns_input { - value: String! -} - -""" -select columns of table "e_league_movement_types" -""" -enum e_league_movement_types_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_league_movement_types" -""" -input e_league_movement_types_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_league_movement_types" -""" -input e_league_movement_types_stream_cursor_input { - """Stream column input with initial value""" - initial_value: e_league_movement_types_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input e_league_movement_types_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_league_movement_types" -""" -enum e_league_movement_types_update_column { - """column name""" - description - - """column name""" - value -} - -input e_league_movement_types_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_league_movement_types_set_input - - """filter the rows which have to be updated""" - where: e_league_movement_types_bool_exp! -} - -""" -columns and relationships of "e_league_proposal_statuses" -""" -type e_league_proposal_statuses { - description: String! - value: String! -} - -""" -aggregated selection of "e_league_proposal_statuses" -""" -type e_league_proposal_statuses_aggregate { - aggregate: e_league_proposal_statuses_aggregate_fields - nodes: [e_league_proposal_statuses!]! -} - -""" -aggregate fields of "e_league_proposal_statuses" -""" -type e_league_proposal_statuses_aggregate_fields { - count(columns: [e_league_proposal_statuses_select_column!], distinct: Boolean): Int! - max: e_league_proposal_statuses_max_fields - min: e_league_proposal_statuses_min_fields -} - -""" -Boolean expression to filter rows from the table "e_league_proposal_statuses". All fields are combined with a logical 'AND'. -""" -input e_league_proposal_statuses_bool_exp { - _and: [e_league_proposal_statuses_bool_exp!] - _not: e_league_proposal_statuses_bool_exp - _or: [e_league_proposal_statuses_bool_exp!] - description: String_comparison_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_league_proposal_statuses" -""" -enum e_league_proposal_statuses_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_league_proposal_statuses_pkey -} - -enum e_league_proposal_statuses_enum { - """Accepted""" - Accepted - - """Countered with a new time""" - Countered - - """Declined""" - Declined - - """Expired""" - Expired - - """Pending response""" - Pending - - """Superseded by another proposal""" - Superseded -} - -""" -Boolean expression to compare columns of type "e_league_proposal_statuses_enum". All fields are combined with logical 'AND'. -""" -input e_league_proposal_statuses_enum_comparison_exp { - _eq: e_league_proposal_statuses_enum - _in: [e_league_proposal_statuses_enum!] - _is_null: Boolean - _neq: e_league_proposal_statuses_enum - _nin: [e_league_proposal_statuses_enum!] -} - -""" -input type for inserting data into table "e_league_proposal_statuses" -""" -input e_league_proposal_statuses_insert_input { - description: String - value: String -} - -"""aggregate max on columns""" -type e_league_proposal_statuses_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_league_proposal_statuses_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_league_proposal_statuses" -""" -type e_league_proposal_statuses_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_league_proposal_statuses!]! -} - -""" -input type for inserting object relation for remote table "e_league_proposal_statuses" -""" -input 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 -} - -""" -on_conflict condition type for table "e_league_proposal_statuses" -""" -input 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 -} - -""" -Ordering options when selecting data from "e_league_proposal_statuses". -""" -input e_league_proposal_statuses_order_by { - description: order_by - value: order_by -} - -"""primary key columns input for table: e_league_proposal_statuses""" -input e_league_proposal_statuses_pk_columns_input { - value: String! -} - -""" -select columns of table "e_league_proposal_statuses" -""" -enum e_league_proposal_statuses_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_league_proposal_statuses" -""" -input e_league_proposal_statuses_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_league_proposal_statuses" -""" -input e_league_proposal_statuses_stream_cursor_input { - """Stream column input with initial value""" - initial_value: e_league_proposal_statuses_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input e_league_proposal_statuses_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_league_proposal_statuses" -""" -enum e_league_proposal_statuses_update_column { - """column name""" - description - - """column name""" - value -} - -input e_league_proposal_statuses_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_league_proposal_statuses_set_input - - """filter the rows which have to be updated""" - where: e_league_proposal_statuses_bool_exp! -} - -""" -columns and relationships of "e_league_registration_statuses" -""" -type e_league_registration_statuses { - description: String! - value: String! -} - -""" -aggregated selection of "e_league_registration_statuses" -""" -type e_league_registration_statuses_aggregate { - aggregate: e_league_registration_statuses_aggregate_fields - nodes: [e_league_registration_statuses!]! -} - -""" -aggregate fields of "e_league_registration_statuses" -""" -type e_league_registration_statuses_aggregate_fields { - count(columns: [e_league_registration_statuses_select_column!], distinct: Boolean): Int! - max: e_league_registration_statuses_max_fields - min: e_league_registration_statuses_min_fields -} - -""" -Boolean expression to filter rows from the table "e_league_registration_statuses". All fields are combined with a logical 'AND'. -""" -input e_league_registration_statuses_bool_exp { - _and: [e_league_registration_statuses_bool_exp!] - _not: e_league_registration_statuses_bool_exp - _or: [e_league_registration_statuses_bool_exp!] - description: String_comparison_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_league_registration_statuses" -""" -enum e_league_registration_statuses_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_league_registration_statuses_pkey -} - -enum e_league_registration_statuses_enum { - """Approved""" - Approved - - """Declined""" - Declined - - """Pending review""" - Pending - - """Waitlisted""" - Waitlisted - - """Withdrawn""" - Withdrawn -} - -""" -Boolean expression to compare columns of type "e_league_registration_statuses_enum". All fields are combined with logical 'AND'. -""" -input e_league_registration_statuses_enum_comparison_exp { - _eq: e_league_registration_statuses_enum - _in: [e_league_registration_statuses_enum!] - _is_null: Boolean - _neq: e_league_registration_statuses_enum - _nin: [e_league_registration_statuses_enum!] -} - -""" -input type for inserting data into table "e_league_registration_statuses" -""" -input e_league_registration_statuses_insert_input { - description: String - value: String -} - -"""aggregate max on columns""" -type e_league_registration_statuses_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_league_registration_statuses_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_league_registration_statuses" -""" -type e_league_registration_statuses_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_league_registration_statuses!]! -} - -""" -input type for inserting object relation for remote table "e_league_registration_statuses" -""" -input e_league_registration_statuses_obj_rel_insert_input { - data: e_league_registration_statuses_insert_input! - - """upsert condition""" - on_conflict: e_league_registration_statuses_on_conflict -} - -""" -on_conflict condition type for table "e_league_registration_statuses" -""" -input 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 -} - -""" -Ordering options when selecting data from "e_league_registration_statuses". -""" -input e_league_registration_statuses_order_by { - description: order_by - value: order_by -} - -"""primary key columns input for table: e_league_registration_statuses""" -input e_league_registration_statuses_pk_columns_input { - value: String! -} - -""" -select columns of table "e_league_registration_statuses" -""" -enum e_league_registration_statuses_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_league_registration_statuses" -""" -input e_league_registration_statuses_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_league_registration_statuses" -""" -input e_league_registration_statuses_stream_cursor_input { - """Stream column input with initial value""" - initial_value: e_league_registration_statuses_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input e_league_registration_statuses_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_league_registration_statuses" -""" -enum e_league_registration_statuses_update_column { - """column name""" - description - - """column name""" - value -} - -input e_league_registration_statuses_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_league_registration_statuses_set_input - - """filter the rows which have to be updated""" - where: e_league_registration_statuses_bool_exp! -} - -""" -columns and relationships of "e_league_season_statuses" -""" -type e_league_season_statuses { - description: String! - value: String! -} - -""" -aggregated selection of "e_league_season_statuses" -""" -type e_league_season_statuses_aggregate { - aggregate: e_league_season_statuses_aggregate_fields - nodes: [e_league_season_statuses!]! -} - -""" -aggregate fields of "e_league_season_statuses" -""" -type e_league_season_statuses_aggregate_fields { - count(columns: [e_league_season_statuses_select_column!], distinct: Boolean): Int! - max: e_league_season_statuses_max_fields - min: e_league_season_statuses_min_fields -} - -""" -Boolean expression to filter rows from the table "e_league_season_statuses". All fields are combined with a logical 'AND'. -""" -input e_league_season_statuses_bool_exp { - _and: [e_league_season_statuses_bool_exp!] - _not: e_league_season_statuses_bool_exp - _or: [e_league_season_statuses_bool_exp!] - description: String_comparison_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_league_season_statuses" -""" -enum e_league_season_statuses_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_league_season_statuses_pkey -} - -enum e_league_season_statuses_enum { - """Canceled""" - Canceled - - """Finished""" - Finished - - """Live""" - Live - - """Playoffs""" - Playoffs - - """Registration Closed""" - RegistrationClosed - - """Registration Open""" - RegistrationOpen - - """Setup""" - Setup -} - -""" -Boolean expression to compare columns of type "e_league_season_statuses_enum". All fields are combined with logical 'AND'. -""" -input e_league_season_statuses_enum_comparison_exp { - _eq: e_league_season_statuses_enum - _in: [e_league_season_statuses_enum!] - _is_null: Boolean - _neq: e_league_season_statuses_enum - _nin: [e_league_season_statuses_enum!] -} - -""" -input type for inserting data into table "e_league_season_statuses" -""" -input e_league_season_statuses_insert_input { - description: String - value: String -} - -"""aggregate max on columns""" -type e_league_season_statuses_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_league_season_statuses_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_league_season_statuses" -""" -type e_league_season_statuses_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_league_season_statuses!]! -} - -""" -input type for inserting object relation for remote table "e_league_season_statuses" -""" -input e_league_season_statuses_obj_rel_insert_input { - data: e_league_season_statuses_insert_input! - - """upsert condition""" - on_conflict: e_league_season_statuses_on_conflict -} - -""" -on_conflict condition type for table "e_league_season_statuses" -""" -input 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 -} - -"""Ordering options when selecting data from "e_league_season_statuses".""" -input e_league_season_statuses_order_by { - description: order_by - value: order_by -} - -"""primary key columns input for table: e_league_season_statuses""" -input e_league_season_statuses_pk_columns_input { - value: String! -} - -""" -select columns of table "e_league_season_statuses" -""" -enum e_league_season_statuses_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_league_season_statuses" -""" -input e_league_season_statuses_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_league_season_statuses" -""" -input e_league_season_statuses_stream_cursor_input { - """Stream column input with initial value""" - initial_value: e_league_season_statuses_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input e_league_season_statuses_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_league_season_statuses" -""" -enum e_league_season_statuses_update_column { - """column name""" - description - - """column name""" - value -} - -input e_league_season_statuses_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_league_season_statuses_set_input - - """filter the rows which have to be updated""" - where: e_league_season_statuses_bool_exp! -} - -""" -columns and relationships of "e_lobby_access" -""" -type e_lobby_access { - description: String! - value: String! -} - -""" -aggregated selection of "e_lobby_access" -""" -type e_lobby_access_aggregate { - aggregate: e_lobby_access_aggregate_fields - nodes: [e_lobby_access!]! -} - -""" -aggregate fields of "e_lobby_access" -""" -type e_lobby_access_aggregate_fields { - count(columns: [e_lobby_access_select_column!], distinct: Boolean): Int! - max: e_lobby_access_max_fields - min: e_lobby_access_min_fields -} - -""" -Boolean expression to filter rows from the table "e_lobby_access". All fields are combined with a logical 'AND'. -""" -input e_lobby_access_bool_exp { - _and: [e_lobby_access_bool_exp!] - _not: e_lobby_access_bool_exp - _or: [e_lobby_access_bool_exp!] - description: String_comparison_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_lobby_access" -""" -enum e_lobby_access_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_lobby_access_pkey -} - -enum e_lobby_access_enum { - """Friends Only""" - Friends - - """Invite Only""" - Invite - - """Public""" - Open - - """Private""" - Private -} - -""" -Boolean expression to compare columns of type "e_lobby_access_enum". All fields are combined with logical 'AND'. -""" -input e_lobby_access_enum_comparison_exp { - _eq: e_lobby_access_enum - _in: [e_lobby_access_enum!] - _is_null: Boolean - _neq: e_lobby_access_enum - _nin: [e_lobby_access_enum!] -} - -""" -input type for inserting data into table "e_lobby_access" -""" -input e_lobby_access_insert_input { - description: String - value: String -} - -"""aggregate max on columns""" -type e_lobby_access_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_lobby_access_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_lobby_access" -""" -type e_lobby_access_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_lobby_access!]! -} - -""" -input type for inserting object relation for remote table "e_lobby_access" -""" -input e_lobby_access_obj_rel_insert_input { - data: e_lobby_access_insert_input! - - """upsert condition""" - on_conflict: e_lobby_access_on_conflict -} - -""" -on_conflict condition type for table "e_lobby_access" -""" -input e_lobby_access_on_conflict { - constraint: e_lobby_access_constraint! - update_columns: [e_lobby_access_update_column!]! = [] - where: e_lobby_access_bool_exp -} - -"""Ordering options when selecting data from "e_lobby_access".""" -input e_lobby_access_order_by { - description: order_by - value: order_by -} - -"""primary key columns input for table: e_lobby_access""" -input e_lobby_access_pk_columns_input { - value: String! -} - -""" -select columns of table "e_lobby_access" -""" -enum e_lobby_access_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_lobby_access" -""" -input e_lobby_access_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_lobby_access" -""" -input e_lobby_access_stream_cursor_input { - """Stream column input with initial value""" - initial_value: e_lobby_access_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input e_lobby_access_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_lobby_access" -""" -enum e_lobby_access_update_column { - """column name""" - description - - """column name""" - value -} - -input e_lobby_access_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_lobby_access_set_input - - """filter the rows which have to be updated""" - where: e_lobby_access_bool_exp! -} - -""" -columns and relationships of "e_lobby_player_status" -""" -type e_lobby_player_status { - description: String! - value: String! -} - -""" -aggregated selection of "e_lobby_player_status" -""" -type e_lobby_player_status_aggregate { - aggregate: e_lobby_player_status_aggregate_fields - nodes: [e_lobby_player_status!]! -} - -""" -aggregate fields of "e_lobby_player_status" -""" -type e_lobby_player_status_aggregate_fields { - count(columns: [e_lobby_player_status_select_column!], distinct: Boolean): Int! - max: e_lobby_player_status_max_fields - min: e_lobby_player_status_min_fields -} - -""" -Boolean expression to filter rows from the table "e_lobby_player_status". All fields are combined with a logical 'AND'. -""" -input e_lobby_player_status_bool_exp { - _and: [e_lobby_player_status_bool_exp!] - _not: e_lobby_player_status_bool_exp - _or: [e_lobby_player_status_bool_exp!] - description: String_comparison_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_lobby_player_status" -""" -enum e_lobby_player_status_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_lobby_player_status_pkey -} - -enum e_lobby_player_status_enum { - """Accepted""" - Accepted - - """Invited""" - Invited -} - -""" -Boolean expression to compare columns of type "e_lobby_player_status_enum". All fields are combined with logical 'AND'. -""" -input e_lobby_player_status_enum_comparison_exp { - _eq: e_lobby_player_status_enum - _in: [e_lobby_player_status_enum!] - _is_null: Boolean - _neq: e_lobby_player_status_enum - _nin: [e_lobby_player_status_enum!] -} - -""" -input type for inserting data into table "e_lobby_player_status" -""" -input e_lobby_player_status_insert_input { - description: String - value: String -} - -"""aggregate max on columns""" -type e_lobby_player_status_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_lobby_player_status_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_lobby_player_status" -""" -type e_lobby_player_status_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_lobby_player_status!]! -} - -""" -on_conflict condition type for table "e_lobby_player_status" -""" -input 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 -} - -"""Ordering options when selecting data from "e_lobby_player_status".""" -input e_lobby_player_status_order_by { - description: order_by - value: order_by -} - -"""primary key columns input for table: e_lobby_player_status""" -input e_lobby_player_status_pk_columns_input { - value: String! -} - -""" -select columns of table "e_lobby_player_status" -""" -enum e_lobby_player_status_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_lobby_player_status" -""" -input e_lobby_player_status_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_lobby_player_status" -""" -input e_lobby_player_status_stream_cursor_input { - """Stream column input with initial value""" - initial_value: e_lobby_player_status_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input e_lobby_player_status_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_lobby_player_status" -""" -enum e_lobby_player_status_update_column { - """column name""" - description - - """column name""" - value -} - -input e_lobby_player_status_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_lobby_player_status_set_input - - """filter the rows which have to be updated""" - where: e_lobby_player_status_bool_exp! -} - -""" -columns and relationships of "e_map_pool_types" -""" -type e_map_pool_types { - description: String - value: String! -} - -""" -aggregated selection of "e_map_pool_types" -""" -type e_map_pool_types_aggregate { - aggregate: e_map_pool_types_aggregate_fields - nodes: [e_map_pool_types!]! -} - -""" -aggregate fields of "e_map_pool_types" -""" -type e_map_pool_types_aggregate_fields { - count(columns: [e_map_pool_types_select_column!], distinct: Boolean): Int! - max: e_map_pool_types_max_fields - min: e_map_pool_types_min_fields -} - -""" -Boolean expression to filter rows from the table "e_map_pool_types". All fields are combined with a logical 'AND'. -""" -input e_map_pool_types_bool_exp { - _and: [e_map_pool_types_bool_exp!] - _not: e_map_pool_types_bool_exp - _or: [e_map_pool_types_bool_exp!] - description: String_comparison_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_map_pool_types" -""" -enum e_map_pool_types_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_map_pool_types_pkey -} - -enum e_map_pool_types_enum { - """5 vs 5""" - Competitive - - """Custom""" - Custom - - """1 vs 1""" - Duel - - """2 vs 2""" - Wingman -} - -""" -Boolean expression to compare columns of type "e_map_pool_types_enum". All fields are combined with logical 'AND'. -""" -input e_map_pool_types_enum_comparison_exp { - _eq: e_map_pool_types_enum - _in: [e_map_pool_types_enum!] - _is_null: Boolean - _neq: e_map_pool_types_enum - _nin: [e_map_pool_types_enum!] -} - -""" -input type for inserting data into table "e_map_pool_types" -""" -input e_map_pool_types_insert_input { - description: String - value: String -} - -"""aggregate max on columns""" -type e_map_pool_types_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_map_pool_types_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_map_pool_types" -""" -type e_map_pool_types_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_map_pool_types!]! -} - -""" -input type for inserting object relation for remote table "e_map_pool_types" -""" -input 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 -} - -""" -on_conflict condition type for table "e_map_pool_types" -""" -input 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 -} - -"""Ordering options when selecting data from "e_map_pool_types".""" -input e_map_pool_types_order_by { - description: order_by - value: order_by -} - -"""primary key columns input for table: e_map_pool_types""" -input e_map_pool_types_pk_columns_input { - value: String! -} - -""" -select columns of table "e_map_pool_types" -""" -enum e_map_pool_types_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_map_pool_types" -""" -input e_map_pool_types_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_map_pool_types" -""" -input e_map_pool_types_stream_cursor_input { - """Stream column input with initial value""" - initial_value: e_map_pool_types_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input e_map_pool_types_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_map_pool_types" -""" -enum e_map_pool_types_update_column { - """column name""" - description - - """column name""" - value -} - -input e_map_pool_types_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_map_pool_types_set_input - - """filter the rows which have to be updated""" - where: e_map_pool_types_bool_exp! -} - -""" -columns and relationships of "e_match_clip_visibility" -""" -type e_match_clip_visibility { - description: String! - - """An array relationship""" - match_clips( - """distinct select on columns""" - distinct_on: [match_clips_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_clips_order_by!] - - """filter the rows returned""" - where: match_clips_bool_exp - ): [match_clips!]! - - """An aggregate relationship""" - match_clips_aggregate( - """distinct select on columns""" - distinct_on: [match_clips_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_clips_order_by!] - - """filter the rows returned""" - where: match_clips_bool_exp - ): match_clips_aggregate! - value: String! -} - -""" -aggregated selection of "e_match_clip_visibility" -""" -type e_match_clip_visibility_aggregate { - aggregate: e_match_clip_visibility_aggregate_fields - nodes: [e_match_clip_visibility!]! -} - -""" -aggregate fields of "e_match_clip_visibility" -""" -type e_match_clip_visibility_aggregate_fields { - count(columns: [e_match_clip_visibility_select_column!], distinct: Boolean): Int! - max: e_match_clip_visibility_max_fields - min: e_match_clip_visibility_min_fields -} - -""" -Boolean expression to filter rows from the table "e_match_clip_visibility". All fields are combined with a logical 'AND'. -""" -input e_match_clip_visibility_bool_exp { - _and: [e_match_clip_visibility_bool_exp!] - _not: e_match_clip_visibility_bool_exp - _or: [e_match_clip_visibility_bool_exp!] - description: String_comparison_exp - match_clips: match_clips_bool_exp - match_clips_aggregate: match_clips_aggregate_bool_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_match_clip_visibility" -""" -enum e_match_clip_visibility_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_match_clip_visibility_pkey -} - -enum e_match_clip_visibility_enum { - """Visible to match participants and organizers""" - match - - """Only visible to the owner""" - private - - """Listed in the highlights feed""" - public -} - -""" -Boolean expression to compare columns of type "e_match_clip_visibility_enum". All fields are combined with logical 'AND'. -""" -input e_match_clip_visibility_enum_comparison_exp { - _eq: e_match_clip_visibility_enum - _in: [e_match_clip_visibility_enum!] - _is_null: Boolean - _neq: e_match_clip_visibility_enum - _nin: [e_match_clip_visibility_enum!] -} - -""" -input type for inserting data into table "e_match_clip_visibility" -""" -input e_match_clip_visibility_insert_input { - description: String - match_clips: match_clips_arr_rel_insert_input - value: String -} - -"""aggregate max on columns""" -type e_match_clip_visibility_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_match_clip_visibility_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_match_clip_visibility" -""" -type e_match_clip_visibility_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_match_clip_visibility!]! -} - -""" -on_conflict condition type for table "e_match_clip_visibility" -""" -input 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 -} - -"""Ordering options when selecting data from "e_match_clip_visibility".""" -input e_match_clip_visibility_order_by { - description: order_by - match_clips_aggregate: match_clips_aggregate_order_by - value: order_by -} - -"""primary key columns input for table: e_match_clip_visibility""" -input e_match_clip_visibility_pk_columns_input { - value: String! -} - -""" -select columns of table "e_match_clip_visibility" -""" -enum e_match_clip_visibility_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_match_clip_visibility" -""" -input e_match_clip_visibility_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_match_clip_visibility" -""" -input e_match_clip_visibility_stream_cursor_input { - """Stream column input with initial value""" - initial_value: e_match_clip_visibility_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input e_match_clip_visibility_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_match_clip_visibility" -""" -enum e_match_clip_visibility_update_column { - """column name""" - description - - """column name""" - value -} - -input e_match_clip_visibility_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_match_clip_visibility_set_input - - """filter the rows which have to be updated""" - where: e_match_clip_visibility_bool_exp! -} - -""" -columns and relationships of "e_match_map_status" -""" -type e_match_map_status { - description: String! - - """An array relationship""" - match_maps( - """distinct select on columns""" - distinct_on: [match_maps_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_maps_order_by!] - - """filter the rows returned""" - where: match_maps_bool_exp - ): [match_maps!]! - - """An aggregate relationship""" - match_maps_aggregate( - """distinct select on columns""" - distinct_on: [match_maps_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_maps_order_by!] - - """filter the rows returned""" - where: match_maps_bool_exp - ): match_maps_aggregate! - value: String! -} - -""" -aggregated selection of "e_match_map_status" -""" -type e_match_map_status_aggregate { - aggregate: e_match_map_status_aggregate_fields - nodes: [e_match_map_status!]! -} - -""" -aggregate fields of "e_match_map_status" -""" -type e_match_map_status_aggregate_fields { - count(columns: [e_match_map_status_select_column!], distinct: Boolean): Int! - max: e_match_map_status_max_fields - min: e_match_map_status_min_fields -} - -""" -Boolean expression to filter rows from the table "e_match_map_status". All fields are combined with a logical 'AND'. -""" -input e_match_map_status_bool_exp { - _and: [e_match_map_status_bool_exp!] - _not: e_match_map_status_bool_exp - _or: [e_match_map_status_bool_exp!] - description: String_comparison_exp - match_maps: match_maps_bool_exp - match_maps_aggregate: match_maps_aggregate_bool_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_match_map_status" -""" -enum e_match_map_status_constraint { - """ - unique or primary key constraint on columns "value" - """ - match_map_status_pkey -} - -enum e_match_map_status_enum { - """Canceled""" - Canceled - - """Finished""" - Finished - - """Knife""" - Knife - - """Live""" - Live - - """Overtime""" - Overtime - - """Paused""" - Paused - - """Scheduled""" - Scheduled - - """Surrendered""" - Surrendered - - """UploadingDemo""" - UploadingDemo - - """WaitingForTV""" - WaitingForTV - - """Warmup""" - Warmup -} - -""" -Boolean expression to compare columns of type "e_match_map_status_enum". All fields are combined with logical 'AND'. -""" -input e_match_map_status_enum_comparison_exp { - _eq: e_match_map_status_enum - _in: [e_match_map_status_enum!] - _is_null: Boolean - _neq: e_match_map_status_enum - _nin: [e_match_map_status_enum!] -} - -""" -input type for inserting data into table "e_match_map_status" -""" -input e_match_map_status_insert_input { - description: String - match_maps: match_maps_arr_rel_insert_input - value: String -} - -"""aggregate max on columns""" -type e_match_map_status_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_match_map_status_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_match_map_status" -""" -type e_match_map_status_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_match_map_status!]! -} - -""" -input type for inserting object relation for remote table "e_match_map_status" -""" -input 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 -} - -""" -on_conflict condition type for table "e_match_map_status" -""" -input 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 -} - -"""Ordering options when selecting data from "e_match_map_status".""" -input e_match_map_status_order_by { - description: order_by - match_maps_aggregate: match_maps_aggregate_order_by - value: order_by -} - -"""primary key columns input for table: e_match_map_status""" -input e_match_map_status_pk_columns_input { - value: String! -} - -""" -select columns of table "e_match_map_status" -""" -enum e_match_map_status_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_match_map_status" -""" -input e_match_map_status_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_match_map_status" -""" -input e_match_map_status_stream_cursor_input { - """Stream column input with initial value""" - initial_value: e_match_map_status_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input e_match_map_status_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_match_map_status" -""" -enum e_match_map_status_update_column { - """column name""" - description - - """column name""" - value -} - -input e_match_map_status_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_match_map_status_set_input - - """filter the rows which have to be updated""" - where: e_match_map_status_bool_exp! -} - -""" -columns and relationships of "e_match_mode" -""" -type e_match_mode { - description: String! - value: String! -} - -""" -aggregated selection of "e_match_mode" -""" -type e_match_mode_aggregate { - aggregate: e_match_mode_aggregate_fields - nodes: [e_match_mode!]! -} - -""" -aggregate fields of "e_match_mode" -""" -type e_match_mode_aggregate_fields { - count(columns: [e_match_mode_select_column!], distinct: Boolean): Int! - max: e_match_mode_max_fields - min: e_match_mode_min_fields -} - -""" -Boolean expression to filter rows from the table "e_match_mode". All fields are combined with a logical 'AND'. -""" -input e_match_mode_bool_exp { - _and: [e_match_mode_bool_exp!] - _not: e_match_mode_bool_exp - _or: [e_match_mode_bool_exp!] - description: String_comparison_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_match_mode" -""" -enum e_match_mode_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_match_mode_pkey -} - -enum e_match_mode_enum { - """Match must be scheduled and started by an admin user""" - admin - - """Match is automatically scheduled by the system""" - auto -} - -""" -Boolean expression to compare columns of type "e_match_mode_enum". All fields are combined with logical 'AND'. -""" -input e_match_mode_enum_comparison_exp { - _eq: e_match_mode_enum - _in: [e_match_mode_enum!] - _is_null: Boolean - _neq: e_match_mode_enum - _nin: [e_match_mode_enum!] -} - -""" -input type for inserting data into table "e_match_mode" -""" -input e_match_mode_insert_input { - description: String - value: String -} - -"""aggregate max on columns""" -type e_match_mode_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_match_mode_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_match_mode" -""" -type e_match_mode_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_match_mode!]! -} - -""" -on_conflict condition type for table "e_match_mode" -""" -input e_match_mode_on_conflict { - constraint: e_match_mode_constraint! - update_columns: [e_match_mode_update_column!]! = [] - where: e_match_mode_bool_exp -} - -"""Ordering options when selecting data from "e_match_mode".""" -input e_match_mode_order_by { - description: order_by - value: order_by -} - -"""primary key columns input for table: e_match_mode""" -input e_match_mode_pk_columns_input { - value: String! -} - -""" -select columns of table "e_match_mode" -""" -enum e_match_mode_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_match_mode" -""" -input e_match_mode_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_match_mode" -""" -input e_match_mode_stream_cursor_input { - """Stream column input with initial value""" - initial_value: e_match_mode_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input e_match_mode_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_match_mode" -""" -enum e_match_mode_update_column { - """column name""" - description - - """column name""" - value -} - -input e_match_mode_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_match_mode_set_input - - """filter the rows which have to be updated""" - where: e_match_mode_bool_exp! -} - -""" -columns and relationships of "e_match_party_sources" -""" -type e_match_party_sources { - description: String! - - """An array relationship""" - match_lineup_players( - """distinct select on columns""" - distinct_on: [match_lineup_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_lineup_players_order_by!] - - """filter the rows returned""" - where: match_lineup_players_bool_exp - ): [match_lineup_players!]! - - """An aggregate relationship""" - match_lineup_players_aggregate( - """distinct select on columns""" - distinct_on: [match_lineup_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_lineup_players_order_by!] - - """filter the rows returned""" - where: match_lineup_players_bool_exp - ): match_lineup_players_aggregate! - value: String! -} - -""" -aggregated selection of "e_match_party_sources" -""" -type e_match_party_sources_aggregate { - aggregate: e_match_party_sources_aggregate_fields - nodes: [e_match_party_sources!]! -} - -""" -aggregate fields of "e_match_party_sources" -""" -type e_match_party_sources_aggregate_fields { - count(columns: [e_match_party_sources_select_column!], distinct: Boolean): Int! - max: e_match_party_sources_max_fields - min: e_match_party_sources_min_fields -} - -""" -Boolean expression to filter rows from the table "e_match_party_sources". All fields are combined with a logical 'AND'. -""" -input e_match_party_sources_bool_exp { - _and: [e_match_party_sources_bool_exp!] - _not: e_match_party_sources_bool_exp - _or: [e_match_party_sources_bool_exp!] - description: String_comparison_exp - match_lineup_players: match_lineup_players_bool_exp - match_lineup_players_aggregate: match_lineup_players_aggregate_bool_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_match_party_sources" -""" -enum e_match_party_sources_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_match_party_sources_pkey -} - -enum e_match_party_sources_enum { - """FACEIT match room party""" - faceit - - """5stack matchmaking lobby""" - lobby - - """Valve matchmaking reservation""" - valve -} - -""" -Boolean expression to compare columns of type "e_match_party_sources_enum". All fields are combined with logical 'AND'. -""" -input e_match_party_sources_enum_comparison_exp { - _eq: e_match_party_sources_enum - _in: [e_match_party_sources_enum!] - _is_null: Boolean - _neq: e_match_party_sources_enum - _nin: [e_match_party_sources_enum!] -} - -""" -input type for inserting data into table "e_match_party_sources" -""" -input e_match_party_sources_insert_input { - description: String - match_lineup_players: match_lineup_players_arr_rel_insert_input - value: String -} - -"""aggregate max on columns""" -type e_match_party_sources_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_match_party_sources_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_match_party_sources" -""" -type e_match_party_sources_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_match_party_sources!]! -} - -""" -on_conflict condition type for table "e_match_party_sources" -""" -input 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 -} - -"""Ordering options when selecting data from "e_match_party_sources".""" -input e_match_party_sources_order_by { - description: order_by - match_lineup_players_aggregate: match_lineup_players_aggregate_order_by - value: order_by -} - -"""primary key columns input for table: e_match_party_sources""" -input e_match_party_sources_pk_columns_input { - value: String! -} - -""" -select columns of table "e_match_party_sources" -""" -enum e_match_party_sources_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_match_party_sources" -""" -input e_match_party_sources_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_match_party_sources" -""" -input e_match_party_sources_stream_cursor_input { - """Stream column input with initial value""" - initial_value: e_match_party_sources_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input e_match_party_sources_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_match_party_sources" -""" -enum e_match_party_sources_update_column { - """column name""" - description - - """column name""" - value -} - -input e_match_party_sources_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_match_party_sources_set_input - - """filter the rows which have to be updated""" - where: e_match_party_sources_bool_exp! -} - -""" -columns and relationships of "e_match_status" -""" -type e_match_status { - description: String! - - """An array relationship""" - matches( - """distinct select on columns""" - distinct_on: [matches_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: [matches_order_by!] - - """filter the rows returned""" - where: matches_bool_exp - ): [matches!]! - - """An aggregate relationship""" - matches_aggregate( - """distinct select on columns""" - distinct_on: [matches_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: [matches_order_by!] - - """filter the rows returned""" - where: matches_bool_exp - ): matches_aggregate! - value: String! -} - -""" -aggregated selection of "e_match_status" -""" -type e_match_status_aggregate { - aggregate: e_match_status_aggregate_fields - nodes: [e_match_status!]! -} - -""" -aggregate fields of "e_match_status" -""" -type e_match_status_aggregate_fields { - count(columns: [e_match_status_select_column!], distinct: Boolean): Int! - max: e_match_status_max_fields - min: e_match_status_min_fields -} - -""" -Boolean expression to filter rows from the table "e_match_status". All fields are combined with a logical 'AND'. -""" -input e_match_status_bool_exp { - _and: [e_match_status_bool_exp!] - _not: e_match_status_bool_exp - _or: [e_match_status_bool_exp!] - description: String_comparison_exp - matches: matches_bool_exp - matches_aggregate: matches_aggregate_bool_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_match_status" -""" -enum e_match_status_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_match_status_pkey -} - -enum e_match_status_enum { - """Canceled""" - Canceled - - """Finished""" - Finished - - """Forfeit""" - Forfeit - - """Live""" - Live - - """Picking Players""" - PickingPlayers - - """Scheduled""" - Scheduled - - """Surrendered""" - Surrendered - - """Tie""" - Tie - - """Veto""" - Veto - - """Waiting for Players to Check In""" - WaitingForCheckIn - - """Waiting for a Server to Become Available.""" - WaitingForServer -} - -""" -Boolean expression to compare columns of type "e_match_status_enum". All fields are combined with logical 'AND'. -""" -input e_match_status_enum_comparison_exp { - _eq: e_match_status_enum - _in: [e_match_status_enum!] - _is_null: Boolean - _neq: e_match_status_enum - _nin: [e_match_status_enum!] -} - -""" -input type for inserting data into table "e_match_status" -""" -input e_match_status_insert_input { - description: String - matches: matches_arr_rel_insert_input - value: String -} - -"""aggregate max on columns""" -type e_match_status_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_match_status_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_match_status" -""" -type e_match_status_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_match_status!]! -} - -""" -input type for inserting object relation for remote table "e_match_status" -""" -input e_match_status_obj_rel_insert_input { - data: e_match_status_insert_input! - - """upsert condition""" - on_conflict: e_match_status_on_conflict -} - -""" -on_conflict condition type for table "e_match_status" -""" -input e_match_status_on_conflict { - constraint: e_match_status_constraint! - update_columns: [e_match_status_update_column!]! = [] - where: e_match_status_bool_exp -} - -"""Ordering options when selecting data from "e_match_status".""" -input e_match_status_order_by { - description: order_by - matches_aggregate: matches_aggregate_order_by - value: order_by -} - -"""primary key columns input for table: e_match_status""" -input e_match_status_pk_columns_input { - value: String! -} - -""" -select columns of table "e_match_status" -""" -enum e_match_status_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_match_status" -""" -input e_match_status_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_match_status" -""" -input e_match_status_stream_cursor_input { - """Stream column input with initial value""" - initial_value: e_match_status_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input e_match_status_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_match_status" -""" -enum e_match_status_update_column { - """column name""" - description - - """column name""" - value -} - -input e_match_status_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_match_status_set_input - - """filter the rows which have to be updated""" - where: e_match_status_bool_exp! -} - -""" -columns and relationships of "e_match_types" -""" -type e_match_types { - description: String! - - """An array relationship""" - maps( - """distinct select on columns""" - distinct_on: [maps_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: [maps_order_by!] - - """filter the rows returned""" - where: maps_bool_exp - ): [maps!]! - - """An aggregate relationship""" - maps_aggregate( - """distinct select on columns""" - distinct_on: [maps_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: [maps_order_by!] - - """filter the rows returned""" - where: maps_bool_exp - ): maps_aggregate! - value: String! -} - -""" -aggregated selection of "e_match_types" -""" -type e_match_types_aggregate { - aggregate: e_match_types_aggregate_fields - nodes: [e_match_types!]! -} - -""" -aggregate fields of "e_match_types" -""" -type e_match_types_aggregate_fields { - count(columns: [e_match_types_select_column!], distinct: Boolean): Int! - max: e_match_types_max_fields - min: e_match_types_min_fields -} - -""" -Boolean expression to filter rows from the table "e_match_types". All fields are combined with a logical 'AND'. -""" -input e_match_types_bool_exp { - _and: [e_match_types_bool_exp!] - _not: e_match_types_bool_exp - _or: [e_match_types_bool_exp!] - description: String_comparison_exp - maps: maps_bool_exp - maps_aggregate: maps_aggregate_bool_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_match_types" -""" -enum e_match_types_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_match_types_pkey -} - -enum e_match_types_enum { - """The classic 5 vs 5 competitive experience with full team coordination""" - Competitive - - """ - A competitive 1 vs 1 experience, perfect for practicing individual skill - """ - Duel - - """FACEIT matchmaking — 5 vs 5 imported from FACEIT""" - Faceit - - """Valve Premier matchmaking — 5 vs 5 with CS Rating""" - Premier - - """Team up with a friend and compete in fast-paced 2v2 matches""" - Wingman -} - -""" -Boolean expression to compare columns of type "e_match_types_enum". All fields are combined with logical 'AND'. -""" -input e_match_types_enum_comparison_exp { - _eq: e_match_types_enum - _in: [e_match_types_enum!] - _is_null: Boolean - _neq: e_match_types_enum - _nin: [e_match_types_enum!] -} - -""" -input type for inserting data into table "e_match_types" -""" -input e_match_types_insert_input { - description: String - maps: maps_arr_rel_insert_input - value: String -} - -"""aggregate max on columns""" -type e_match_types_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_match_types_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_match_types" -""" -type e_match_types_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_match_types!]! -} - -""" -input type for inserting object relation for remote table "e_match_types" -""" -input e_match_types_obj_rel_insert_input { - data: e_match_types_insert_input! - - """upsert condition""" - on_conflict: e_match_types_on_conflict -} - -""" -on_conflict condition type for table "e_match_types" -""" -input e_match_types_on_conflict { - constraint: e_match_types_constraint! - update_columns: [e_match_types_update_column!]! = [] - where: e_match_types_bool_exp -} - -"""Ordering options when selecting data from "e_match_types".""" -input e_match_types_order_by { - description: order_by - maps_aggregate: maps_aggregate_order_by - value: order_by -} - -"""primary key columns input for table: e_match_types""" -input e_match_types_pk_columns_input { - value: String! -} - -""" -select columns of table "e_match_types" -""" -enum e_match_types_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_match_types" -""" -input e_match_types_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_match_types" -""" -input e_match_types_stream_cursor_input { - """Stream column input with initial value""" - initial_value: e_match_types_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input e_match_types_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_match_types" -""" -enum e_match_types_update_column { - """column name""" - description - - """column name""" - value -} - -input e_match_types_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_match_types_set_input - - """filter the rows which have to be updated""" - where: e_match_types_bool_exp! -} - -""" -columns and relationships of "e_notification_types" -""" -type e_notification_types { - description: String! - value: String! -} - -""" -aggregated selection of "e_notification_types" -""" -type e_notification_types_aggregate { - aggregate: e_notification_types_aggregate_fields - nodes: [e_notification_types!]! -} - -""" -aggregate fields of "e_notification_types" -""" -type e_notification_types_aggregate_fields { - count(columns: [e_notification_types_select_column!], distinct: Boolean): Int! - max: e_notification_types_max_fields - min: e_notification_types_min_fields -} - -""" -Boolean expression to filter rows from the table "e_notification_types". All fields are combined with a logical 'AND'. -""" -input e_notification_types_bool_exp { - _and: [e_notification_types_bool_exp!] - _not: e_notification_types_bool_exp - _or: [e_notification_types_bool_exp!] - description: String_comparison_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_notification_types" -""" -enum e_notification_types_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_notification_types_pkey -} - -enum e_notification_types_enum { - """You received an award""" - AwardGranted - - """A new message in a chat you are part of""" - ChatMessage - - """A clip you requested finished rendering""" - ClipReady - - """DedicatedServerRconStatus""" - DedicatedServerRconStatus - - """DedicatedServerStatus""" - DedicatedServerStatus - - """You were invited to a draft lobby""" - DraftInvite - - """Player ELO recompute finished""" - EloRecompute - - """An event you are attending starts soon""" - EventReminder - - """You frequently play with these players""" - FormTeamSuggestion - - """GameNodeStatus""" - GameNodeStatus - - """GameUpdate""" - GameUpdate - - """A league matchup is unscheduled and will default soon""" - LeagueMatchUnscheduled - - """Your league match time proposal was accepted""" - LeagueProposalAccepted - - """Your league match time proposal was declined""" - LeagueProposalDeclined - - """A league opponent proposed a match time""" - LeagueProposalReceived - - """Your league registration was reviewed""" - LeagueRegistrationDecision - - """Your league team no longer meets the minimum roster size""" - LeagueRosterUndersized - - """A player abandoned a match""" - MatchAbandoned - - """A new message in a match's chat""" - MatchChatMessage - - """A Valve match you played was imported to 5stack""" - MatchImported - - """Stats for a match you played are ready""" - MatchStatsReady - - """Match Status Change Notification""" - MatchStatusChange - - """MatchSupport""" - MatchSupport - - """A nade drift scan finished""" - NadeDriftScanFinished - - """You were invited to a nade practice session""" - NadePracticeInvite - - """Your nade practice server is ready""" - NadePracticeReady - - """Your name change request was approved""" - NameChangeApproved - - """Your name change request was denied""" - NameChangeDenied - - """NameChangeRequest""" - NameChangeRequest - - """A news article was published""" - NewsPublished - - """Player search reindex finished""" - PlayerReindex - - """A player you recently played with received a sanction""" - PlayerSanctioned - - """A team matching your scrim alert is available""" - ScrimAlertMatch - - """A scheduled scrim match was canceled""" - ScrimMatchCanceled - - """A scrim match has been scheduled""" - ScrimMatchScheduled - - """Your scrim request was accepted""" - ScrimRequestAccepted - - """A team proposed a different scrim time""" - ScrimRequestCountered - - """Your scrim request was declined""" - ScrimRequestDeclined - - """A scrim request expired without a response""" - ScrimRequestExpired - - """A team requested to scrim yours""" - ScrimRequestReceived - - """A scheduled scrim time changed""" - ScrimTimeChanged - - """A season has ended""" - SeasonEnded - - """Storage Scan""" - StorageScan - - """You were invited to a team""" - TeamInvite - - """Check-in for your tournament closes soon""" - TournamentCheckInClosing - - """Your team missed check-in and was not seeded""" - TournamentCheckInMissed - - """Check-in has opened for a tournament you are registered for""" - TournamentCheckInOpen - - """Registration opened for a tournament""" - TournamentCreated - - """You were invited to register for a tournament""" - TournamentInvite - - """Your lobby was signed up for a tournament as a free agent party""" - TournamentPartySignup - - """A tournament you are registered for starts soon""" - TournamentReminder - - """You were invited to play in a tournament""" - TournamentTeamInvite - - """A utility drift scan finished""" - UtilityDriftScanFinished - - """You were invited to a utility practice session""" - UtilityPracticeInvite - - """Your utility practice server is ready""" - UtilityPracticeReady -} - -""" -Boolean expression to compare columns of type "e_notification_types_enum". All fields are combined with logical 'AND'. -""" -input e_notification_types_enum_comparison_exp { - _eq: e_notification_types_enum - _in: [e_notification_types_enum!] - _is_null: Boolean - _neq: e_notification_types_enum - _nin: [e_notification_types_enum!] -} - -""" -input type for inserting data into table "e_notification_types" -""" -input e_notification_types_insert_input { - description: String - value: String -} - -"""aggregate max on columns""" -type e_notification_types_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_notification_types_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_notification_types" -""" -type e_notification_types_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_notification_types!]! -} - -""" -on_conflict condition type for table "e_notification_types" -""" -input e_notification_types_on_conflict { - constraint: e_notification_types_constraint! - update_columns: [e_notification_types_update_column!]! = [] - where: e_notification_types_bool_exp -} - -"""Ordering options when selecting data from "e_notification_types".""" -input e_notification_types_order_by { - description: order_by - value: order_by -} - -"""primary key columns input for table: e_notification_types""" -input e_notification_types_pk_columns_input { - value: String! -} - -""" -select columns of table "e_notification_types" -""" -enum e_notification_types_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_notification_types" -""" -input e_notification_types_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_notification_types" -""" -input e_notification_types_stream_cursor_input { - """Stream column input with initial value""" - initial_value: e_notification_types_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input e_notification_types_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_notification_types" -""" -enum e_notification_types_update_column { - """column name""" - description - - """column name""" - value -} - -input e_notification_types_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_notification_types_set_input - - """filter the rows which have to be updated""" - where: e_notification_types_bool_exp! -} - -""" -columns and relationships of "e_objective_types" -""" -type e_objective_types { - description: String! - - """An array relationship""" - player_objectives( - """distinct select on columns""" - distinct_on: [player_objectives_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: [player_objectives_order_by!] - - """filter the rows returned""" - where: player_objectives_bool_exp - ): [player_objectives!]! - - """An aggregate relationship""" - player_objectives_aggregate( - """distinct select on columns""" - distinct_on: [player_objectives_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: [player_objectives_order_by!] - - """filter the rows returned""" - where: player_objectives_bool_exp - ): player_objectives_aggregate! - value: String! -} - -""" -aggregated selection of "e_objective_types" -""" -type e_objective_types_aggregate { - aggregate: e_objective_types_aggregate_fields - nodes: [e_objective_types!]! -} - -""" -aggregate fields of "e_objective_types" -""" -type e_objective_types_aggregate_fields { - count(columns: [e_objective_types_select_column!], distinct: Boolean): Int! - max: e_objective_types_max_fields - min: e_objective_types_min_fields -} - -""" -Boolean expression to filter rows from the table "e_objective_types". All fields are combined with a logical 'AND'. -""" -input e_objective_types_bool_exp { - _and: [e_objective_types_bool_exp!] - _not: e_objective_types_bool_exp - _or: [e_objective_types_bool_exp!] - description: String_comparison_exp - player_objectives: player_objectives_bool_exp - player_objectives_aggregate: player_objectives_aggregate_bool_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_objective_types" -""" -enum e_objective_types_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_objective__pkey -} - -enum e_objective_types_enum { - """Defused""" - Defused - - """Exploded""" - Exploded - - """Planted""" - Planted -} - -""" -Boolean expression to compare columns of type "e_objective_types_enum". All fields are combined with logical 'AND'. -""" -input e_objective_types_enum_comparison_exp { - _eq: e_objective_types_enum - _in: [e_objective_types_enum!] - _is_null: Boolean - _neq: e_objective_types_enum - _nin: [e_objective_types_enum!] -} - -""" -input type for inserting data into table "e_objective_types" -""" -input e_objective_types_insert_input { - description: String - player_objectives: player_objectives_arr_rel_insert_input - value: String -} - -"""aggregate max on columns""" -type e_objective_types_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_objective_types_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_objective_types" -""" -type e_objective_types_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_objective_types!]! -} - -""" -on_conflict condition type for table "e_objective_types" -""" -input e_objective_types_on_conflict { - constraint: e_objective_types_constraint! - update_columns: [e_objective_types_update_column!]! = [] - where: e_objective_types_bool_exp -} - -"""Ordering options when selecting data from "e_objective_types".""" -input e_objective_types_order_by { - description: order_by - player_objectives_aggregate: player_objectives_aggregate_order_by - value: order_by -} - -"""primary key columns input for table: e_objective_types""" -input e_objective_types_pk_columns_input { - value: String! -} - -""" -select columns of table "e_objective_types" -""" -enum e_objective_types_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_objective_types" -""" -input e_objective_types_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_objective_types" -""" -input e_objective_types_stream_cursor_input { - """Stream column input with initial value""" - initial_value: e_objective_types_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input e_objective_types_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_objective_types" -""" -enum e_objective_types_update_column { - """column name""" - description - - """column name""" - value -} - -input e_objective_types_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_objective_types_set_input - - """filter the rows which have to be updated""" - where: e_objective_types_bool_exp! -} - -""" -columns and relationships of "e_player_roles" -""" -type e_player_roles { - description: String! - value: String! -} - -""" -aggregated selection of "e_player_roles" -""" -type e_player_roles_aggregate { - aggregate: e_player_roles_aggregate_fields - nodes: [e_player_roles!]! -} - -""" -aggregate fields of "e_player_roles" -""" -type e_player_roles_aggregate_fields { - count(columns: [e_player_roles_select_column!], distinct: Boolean): Int! - max: e_player_roles_max_fields - min: e_player_roles_min_fields -} - -""" -Boolean expression to filter rows from the table "e_player_roles". All fields are combined with a logical 'AND'. -""" -input e_player_roles_bool_exp { - _and: [e_player_roles_bool_exp!] - _not: e_player_roles_bool_exp - _or: [e_player_roles_bool_exp!] - description: String_comparison_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_player_roles" -""" -enum e_player_roles_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_player_roles_pkey -} - -enum e_player_roles_enum { - """Administrator""" - administrator - - """Ability Manage Matches and bypass restrictions""" - match_organizer - - """Ability to moderate public servers and players""" - moderator - - """Streamer""" - streamer - - """Ability Create and Manage Tournaments""" - tournament_organizer - - """Basic User""" - user - - """Verified User""" - verified_user -} - -""" -Boolean expression to compare columns of type "e_player_roles_enum". All fields are combined with logical 'AND'. -""" -input e_player_roles_enum_comparison_exp { - _eq: e_player_roles_enum - _in: [e_player_roles_enum!] - _is_null: Boolean - _neq: e_player_roles_enum - _nin: [e_player_roles_enum!] -} - -""" -input type for inserting data into table "e_player_roles" -""" -input e_player_roles_insert_input { - description: String - value: String -} - -"""aggregate max on columns""" -type e_player_roles_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_player_roles_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_player_roles" -""" -type e_player_roles_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_player_roles!]! -} - -""" -on_conflict condition type for table "e_player_roles" -""" -input e_player_roles_on_conflict { - constraint: e_player_roles_constraint! - update_columns: [e_player_roles_update_column!]! = [] - where: e_player_roles_bool_exp -} - -"""Ordering options when selecting data from "e_player_roles".""" -input e_player_roles_order_by { - description: order_by - value: order_by -} - -"""primary key columns input for table: e_player_roles""" -input e_player_roles_pk_columns_input { - value: String! -} - -""" -select columns of table "e_player_roles" -""" -enum e_player_roles_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_player_roles" -""" -input e_player_roles_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_player_roles" -""" -input e_player_roles_stream_cursor_input { - """Stream column input with initial value""" - initial_value: e_player_roles_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input e_player_roles_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_player_roles" -""" -enum e_player_roles_update_column { - """column name""" - description - - """column name""" - value -} - -input e_player_roles_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_player_roles_set_input - - """filter the rows which have to be updated""" - where: e_player_roles_bool_exp! -} - -""" -columns and relationships of "e_plugin_runtimes" -""" -type e_plugin_runtimes { - description: String! - value: String! -} - -""" -aggregated selection of "e_plugin_runtimes" -""" -type e_plugin_runtimes_aggregate { - aggregate: e_plugin_runtimes_aggregate_fields - nodes: [e_plugin_runtimes!]! -} - -""" -aggregate fields of "e_plugin_runtimes" -""" -type e_plugin_runtimes_aggregate_fields { - count(columns: [e_plugin_runtimes_select_column!], distinct: Boolean): Int! - max: e_plugin_runtimes_max_fields - min: e_plugin_runtimes_min_fields -} - -""" -Boolean expression to filter rows from the table "e_plugin_runtimes". All fields are combined with a logical 'AND'. -""" -input e_plugin_runtimes_bool_exp { - _and: [e_plugin_runtimes_bool_exp!] - _not: e_plugin_runtimes_bool_exp - _or: [e_plugin_runtimes_bool_exp!] - description: String_comparison_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_plugin_runtimes" -""" -enum e_plugin_runtimes_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_plugin_runtimes_pkey -} - -enum e_plugin_runtimes_enum { - """Plugin loads under Metamod and CounterStrikeSharp""" - counterstrikesharp - - """Plugin loads under the SwiftlyS2 framework""" - swiftlys2 -} - -""" -Boolean expression to compare columns of type "e_plugin_runtimes_enum". All fields are combined with logical 'AND'. -""" -input e_plugin_runtimes_enum_comparison_exp { - _eq: e_plugin_runtimes_enum - _in: [e_plugin_runtimes_enum!] - _is_null: Boolean - _neq: e_plugin_runtimes_enum - _nin: [e_plugin_runtimes_enum!] -} - -""" -input type for inserting data into table "e_plugin_runtimes" -""" -input e_plugin_runtimes_insert_input { - description: String - value: String -} - -"""aggregate max on columns""" -type e_plugin_runtimes_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_plugin_runtimes_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_plugin_runtimes" -""" -type e_plugin_runtimes_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_plugin_runtimes!]! -} - -""" -on_conflict condition type for table "e_plugin_runtimes" -""" -input e_plugin_runtimes_on_conflict { - constraint: e_plugin_runtimes_constraint! - update_columns: [e_plugin_runtimes_update_column!]! = [] - where: e_plugin_runtimes_bool_exp -} - -"""Ordering options when selecting data from "e_plugin_runtimes".""" -input e_plugin_runtimes_order_by { - description: order_by - value: order_by -} - -"""primary key columns input for table: e_plugin_runtimes""" -input e_plugin_runtimes_pk_columns_input { - value: String! -} - -""" -select columns of table "e_plugin_runtimes" -""" -enum e_plugin_runtimes_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_plugin_runtimes" -""" -input e_plugin_runtimes_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_plugin_runtimes" -""" -input e_plugin_runtimes_stream_cursor_input { - """Stream column input with initial value""" - initial_value: e_plugin_runtimes_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input e_plugin_runtimes_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_plugin_runtimes" -""" -enum e_plugin_runtimes_update_column { - """column name""" - description - - """column name""" - value -} - -input e_plugin_runtimes_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_plugin_runtimes_set_input - - """filter the rows which have to be updated""" - where: e_plugin_runtimes_bool_exp! -} - -""" -columns and relationships of "e_ready_settings" -""" -type e_ready_settings { - description: String! - value: String! -} - -""" -aggregated selection of "e_ready_settings" -""" -type e_ready_settings_aggregate { - aggregate: e_ready_settings_aggregate_fields - nodes: [e_ready_settings!]! -} - -""" -aggregate fields of "e_ready_settings" -""" -type e_ready_settings_aggregate_fields { - count(columns: [e_ready_settings_select_column!], distinct: Boolean): Int! - max: e_ready_settings_max_fields - min: e_ready_settings_min_fields -} - -""" -Boolean expression to filter rows from the table "e_ready_settings". All fields are combined with a logical 'AND'. -""" -input e_ready_settings_bool_exp { - _and: [e_ready_settings_bool_exp!] - _not: e_ready_settings_bool_exp - _or: [e_ready_settings_bool_exp!] - description: String_comparison_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_ready_settings" -""" -enum e_ready_settings_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_ready_settings_pkey -} - -enum e_ready_settings_enum { - """Admins Only""" - Admin - - """Captains Only""" - Captains - - """Coach Only""" - Coach - - """All Players""" - Players -} - -""" -Boolean expression to compare columns of type "e_ready_settings_enum". All fields are combined with logical 'AND'. -""" -input e_ready_settings_enum_comparison_exp { - _eq: e_ready_settings_enum - _in: [e_ready_settings_enum!] - _is_null: Boolean - _neq: e_ready_settings_enum - _nin: [e_ready_settings_enum!] -} - -""" -input type for inserting data into table "e_ready_settings" -""" -input e_ready_settings_insert_input { - description: String - value: String -} - -"""aggregate max on columns""" -type e_ready_settings_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_ready_settings_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_ready_settings" -""" -type e_ready_settings_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_ready_settings!]! -} - -""" -on_conflict condition type for table "e_ready_settings" -""" -input e_ready_settings_on_conflict { - constraint: e_ready_settings_constraint! - update_columns: [e_ready_settings_update_column!]! = [] - where: e_ready_settings_bool_exp -} - -"""Ordering options when selecting data from "e_ready_settings".""" -input e_ready_settings_order_by { - description: order_by - value: order_by -} - -"""primary key columns input for table: e_ready_settings""" -input e_ready_settings_pk_columns_input { - value: String! -} - -""" -select columns of table "e_ready_settings" -""" -enum e_ready_settings_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_ready_settings" -""" -input e_ready_settings_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_ready_settings" -""" -input e_ready_settings_stream_cursor_input { - """Stream column input with initial value""" - initial_value: e_ready_settings_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input e_ready_settings_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_ready_settings" -""" -enum e_ready_settings_update_column { - """column name""" - description - - """column name""" - value -} - -input e_ready_settings_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_ready_settings_set_input - - """filter the rows which have to be updated""" - where: e_ready_settings_bool_exp! -} - -""" -columns and relationships of "e_sanction_scopes" -""" -type e_sanction_scopes { - description: String! - value: String! -} - -""" -aggregated selection of "e_sanction_scopes" -""" -type e_sanction_scopes_aggregate { - aggregate: e_sanction_scopes_aggregate_fields - nodes: [e_sanction_scopes!]! -} - -""" -aggregate fields of "e_sanction_scopes" -""" -type e_sanction_scopes_aggregate_fields { - count(columns: [e_sanction_scopes_select_column!], distinct: Boolean): Int! - max: e_sanction_scopes_max_fields - min: e_sanction_scopes_min_fields -} - -""" -Boolean expression to filter rows from the table "e_sanction_scopes". All fields are combined with a logical 'AND'. -""" -input e_sanction_scopes_bool_exp { - _and: [e_sanction_scopes_bool_exp!] - _not: e_sanction_scopes_bool_exp - _or: [e_sanction_scopes_bool_exp!] - description: String_comparison_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_sanction_scopes" -""" -enum e_sanction_scopes_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_sanction_scopes_pkey -} - -""" -input type for inserting data into table "e_sanction_scopes" -""" -input e_sanction_scopes_insert_input { - description: String - value: String -} - -"""aggregate max on columns""" -type e_sanction_scopes_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_sanction_scopes_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_sanction_scopes" -""" -type e_sanction_scopes_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_sanction_scopes!]! -} - -""" -input type for inserting object relation for remote table "e_sanction_scopes" -""" -input e_sanction_scopes_obj_rel_insert_input { - data: e_sanction_scopes_insert_input! - - """upsert condition""" - on_conflict: e_sanction_scopes_on_conflict -} - -""" -on_conflict condition type for table "e_sanction_scopes" -""" -input e_sanction_scopes_on_conflict { - constraint: e_sanction_scopes_constraint! - update_columns: [e_sanction_scopes_update_column!]! = [] - where: e_sanction_scopes_bool_exp -} - -"""Ordering options when selecting data from "e_sanction_scopes".""" -input e_sanction_scopes_order_by { - description: order_by - value: order_by -} - -"""primary key columns input for table: e_sanction_scopes""" -input e_sanction_scopes_pk_columns_input { - value: String! -} - -""" -select columns of table "e_sanction_scopes" -""" -enum e_sanction_scopes_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_sanction_scopes" -""" -input e_sanction_scopes_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_sanction_scopes" -""" -input e_sanction_scopes_stream_cursor_input { - """Stream column input with initial value""" - initial_value: e_sanction_scopes_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input e_sanction_scopes_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_sanction_scopes" -""" -enum e_sanction_scopes_update_column { - """column name""" - description - - """column name""" - value -} - -input e_sanction_scopes_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_sanction_scopes_set_input - - """filter the rows which have to be updated""" - where: e_sanction_scopes_bool_exp! -} - -""" -columns and relationships of "e_sanction_sources" -""" -type e_sanction_sources { - """Comma separated ban durations in minutes, indexed by occurrence count""" - default_durations: String! - default_enabled: Boolean! - default_scope: String! - default_threshold: Int! - default_window_days: Int! - description: String! - - """An object relationship""" - e_sanction_scope: e_sanction_scopes! - value: String! - - """Source issues a player_sanctions ban row instead of a scoped cooldown""" - writes_platform_ban: Boolean! -} - -""" -aggregated selection of "e_sanction_sources" -""" -type e_sanction_sources_aggregate { - aggregate: e_sanction_sources_aggregate_fields - nodes: [e_sanction_sources!]! -} - -""" -aggregate fields of "e_sanction_sources" -""" -type e_sanction_sources_aggregate_fields { - avg: e_sanction_sources_avg_fields - count(columns: [e_sanction_sources_select_column!], distinct: Boolean): Int! - max: e_sanction_sources_max_fields - min: e_sanction_sources_min_fields - stddev: e_sanction_sources_stddev_fields - stddev_pop: e_sanction_sources_stddev_pop_fields - stddev_samp: e_sanction_sources_stddev_samp_fields - sum: e_sanction_sources_sum_fields - var_pop: e_sanction_sources_var_pop_fields - var_samp: e_sanction_sources_var_samp_fields - variance: e_sanction_sources_variance_fields -} - -"""aggregate avg on columns""" -type e_sanction_sources_avg_fields { - default_threshold: Float - default_window_days: Float -} - -""" -Boolean expression to filter rows from the table "e_sanction_sources". All fields are combined with a logical 'AND'. -""" -input e_sanction_sources_bool_exp { - _and: [e_sanction_sources_bool_exp!] - _not: e_sanction_sources_bool_exp - _or: [e_sanction_sources_bool_exp!] - default_durations: String_comparison_exp - default_enabled: Boolean_comparison_exp - default_scope: String_comparison_exp - default_threshold: Int_comparison_exp - default_window_days: Int_comparison_exp - description: String_comparison_exp - e_sanction_scope: e_sanction_scopes_bool_exp - value: String_comparison_exp - writes_platform_ban: Boolean_comparison_exp -} - -""" -unique or primary key constraints on table "e_sanction_sources" -""" -enum e_sanction_sources_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_sanction_sources_pkey -} - -""" -input type for incrementing numeric columns in table "e_sanction_sources" -""" -input e_sanction_sources_inc_input { - default_threshold: Int - default_window_days: Int -} - -""" -input type for inserting data into table "e_sanction_sources" -""" -input e_sanction_sources_insert_input { - """Comma separated ban durations in minutes, indexed by occurrence count""" - default_durations: String - default_enabled: Boolean - default_scope: String - default_threshold: Int - default_window_days: Int - description: String - e_sanction_scope: e_sanction_scopes_obj_rel_insert_input - value: String - - """Source issues a player_sanctions ban row instead of a scoped cooldown""" - writes_platform_ban: Boolean -} - -"""aggregate max on columns""" -type e_sanction_sources_max_fields { - """Comma separated ban durations in minutes, indexed by occurrence count""" - default_durations: String - default_scope: String - default_threshold: Int - default_window_days: Int - description: String - value: String -} - -"""aggregate min on columns""" -type e_sanction_sources_min_fields { - """Comma separated ban durations in minutes, indexed by occurrence count""" - default_durations: String - default_scope: String - default_threshold: Int - default_window_days: Int - description: String - value: String -} - -""" -response of any mutation on the table "e_sanction_sources" -""" -type e_sanction_sources_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_sanction_sources!]! -} - -""" -on_conflict condition type for table "e_sanction_sources" -""" -input e_sanction_sources_on_conflict { - constraint: e_sanction_sources_constraint! - update_columns: [e_sanction_sources_update_column!]! = [] - where: e_sanction_sources_bool_exp -} - -"""Ordering options when selecting data from "e_sanction_sources".""" -input e_sanction_sources_order_by { - default_durations: order_by - default_enabled: order_by - default_scope: order_by - default_threshold: order_by - default_window_days: order_by - description: order_by - e_sanction_scope: e_sanction_scopes_order_by - value: order_by - writes_platform_ban: order_by -} - -"""primary key columns input for table: e_sanction_sources""" -input e_sanction_sources_pk_columns_input { - value: String! -} - -""" -select columns of table "e_sanction_sources" -""" -enum e_sanction_sources_select_column { - """column name""" - default_durations - - """column name""" - default_enabled - - """column name""" - default_scope - - """column name""" - default_threshold - - """column name""" - default_window_days - - """column name""" - description - - """column name""" - value - - """column name""" - writes_platform_ban -} - -""" -input type for updating data in table "e_sanction_sources" -""" -input e_sanction_sources_set_input { - """Comma separated ban durations in minutes, indexed by occurrence count""" - default_durations: String - default_enabled: Boolean - default_scope: String - default_threshold: Int - default_window_days: Int - description: String - value: String - - """Source issues a player_sanctions ban row instead of a scoped cooldown""" - writes_platform_ban: Boolean -} - -"""aggregate stddev on columns""" -type e_sanction_sources_stddev_fields { - default_threshold: Float - default_window_days: Float -} - -"""aggregate stddev_pop on columns""" -type e_sanction_sources_stddev_pop_fields { - default_threshold: Float - default_window_days: Float -} - -"""aggregate stddev_samp on columns""" -type e_sanction_sources_stddev_samp_fields { - default_threshold: Float - default_window_days: Float -} - -""" -Streaming cursor of the table "e_sanction_sources" -""" -input e_sanction_sources_stream_cursor_input { - """Stream column input with initial value""" - initial_value: e_sanction_sources_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input e_sanction_sources_stream_cursor_value_input { - """Comma separated ban durations in minutes, indexed by occurrence count""" - default_durations: String - default_enabled: Boolean - default_scope: String - default_threshold: Int - default_window_days: Int - description: String - value: String - - """Source issues a player_sanctions ban row instead of a scoped cooldown""" - writes_platform_ban: Boolean -} - -"""aggregate sum on columns""" -type e_sanction_sources_sum_fields { - default_threshold: Int - default_window_days: Int -} - -""" -update columns of table "e_sanction_sources" -""" -enum e_sanction_sources_update_column { - """column name""" - default_durations - - """column name""" - default_enabled - - """column name""" - default_scope - - """column name""" - default_threshold - - """column name""" - default_window_days - - """column name""" - description - - """column name""" - value - - """column name""" - writes_platform_ban -} - -input e_sanction_sources_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: e_sanction_sources_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: e_sanction_sources_set_input - - """filter the rows which have to be updated""" - where: e_sanction_sources_bool_exp! -} - -"""aggregate var_pop on columns""" -type e_sanction_sources_var_pop_fields { - default_threshold: Float - default_window_days: Float -} - -"""aggregate var_samp on columns""" -type e_sanction_sources_var_samp_fields { - default_threshold: Float - default_window_days: Float -} - -"""aggregate variance on columns""" -type e_sanction_sources_variance_fields { - default_threshold: Float - default_window_days: Float -} - -""" -columns and relationships of "e_sanction_types" -""" -type e_sanction_types { - description: String! - value: String! -} - -""" -aggregated selection of "e_sanction_types" -""" -type e_sanction_types_aggregate { - aggregate: e_sanction_types_aggregate_fields - nodes: [e_sanction_types!]! -} - -""" -aggregate fields of "e_sanction_types" -""" -type e_sanction_types_aggregate_fields { - count(columns: [e_sanction_types_select_column!], distinct: Boolean): Int! - max: e_sanction_types_max_fields - min: e_sanction_types_min_fields -} - -""" -Boolean expression to filter rows from the table "e_sanction_types". All fields are combined with a logical 'AND'. -""" -input e_sanction_types_bool_exp { - _and: [e_sanction_types_bool_exp!] - _not: e_sanction_types_bool_exp - _or: [e_sanction_types_bool_exp!] - description: String_comparison_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_sanction_types" -""" -enum e_sanction_types_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_sanction_types_pkey -} - -enum e_sanction_types_enum { - """Player is not able to participate in any activity""" - ban - - """Player cannot use text chat in game""" - gag - - """Player cannot use voice chat in game""" - mute - - """Player muted and gagged""" - silence -} - -""" -Boolean expression to compare columns of type "e_sanction_types_enum". All fields are combined with logical 'AND'. -""" -input e_sanction_types_enum_comparison_exp { - _eq: e_sanction_types_enum - _in: [e_sanction_types_enum!] - _is_null: Boolean - _neq: e_sanction_types_enum - _nin: [e_sanction_types_enum!] -} - -""" -input type for inserting data into table "e_sanction_types" -""" -input e_sanction_types_insert_input { - description: String - value: String -} - -"""aggregate max on columns""" -type e_sanction_types_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_sanction_types_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_sanction_types" -""" -type e_sanction_types_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_sanction_types!]! -} - -""" -input type for inserting object relation for remote table "e_sanction_types" -""" -input e_sanction_types_obj_rel_insert_input { - data: e_sanction_types_insert_input! - - """upsert condition""" - on_conflict: e_sanction_types_on_conflict -} - -""" -on_conflict condition type for table "e_sanction_types" -""" -input e_sanction_types_on_conflict { - constraint: e_sanction_types_constraint! - update_columns: [e_sanction_types_update_column!]! = [] - where: e_sanction_types_bool_exp -} - -"""Ordering options when selecting data from "e_sanction_types".""" -input e_sanction_types_order_by { - description: order_by - value: order_by -} - -"""primary key columns input for table: e_sanction_types""" -input e_sanction_types_pk_columns_input { - value: String! -} - -""" -select columns of table "e_sanction_types" -""" -enum e_sanction_types_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_sanction_types" -""" -input e_sanction_types_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_sanction_types" -""" -input e_sanction_types_stream_cursor_input { - """Stream column input with initial value""" - initial_value: e_sanction_types_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input e_sanction_types_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_sanction_types" -""" -enum e_sanction_types_update_column { - """column name""" - description - - """column name""" - value -} - -input e_sanction_types_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_sanction_types_set_input - - """filter the rows which have to be updated""" - where: e_sanction_types_bool_exp! -} - -""" -columns and relationships of "e_scrim_request_statuses" -""" -type e_scrim_request_statuses { - description: String! - - """An array relationship""" - scrim_requests( - """distinct select on columns""" - distinct_on: [team_scrim_requests_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: [team_scrim_requests_order_by!] - - """filter the rows returned""" - where: team_scrim_requests_bool_exp - ): [team_scrim_requests!]! - - """An aggregate relationship""" - scrim_requests_aggregate( - """distinct select on columns""" - distinct_on: [team_scrim_requests_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: [team_scrim_requests_order_by!] - - """filter the rows returned""" - where: team_scrim_requests_bool_exp - ): team_scrim_requests_aggregate! - value: String! -} - -""" -aggregated selection of "e_scrim_request_statuses" -""" -type e_scrim_request_statuses_aggregate { - aggregate: e_scrim_request_statuses_aggregate_fields - nodes: [e_scrim_request_statuses!]! -} - -""" -aggregate fields of "e_scrim_request_statuses" -""" -type e_scrim_request_statuses_aggregate_fields { - count(columns: [e_scrim_request_statuses_select_column!], distinct: Boolean): Int! - max: e_scrim_request_statuses_max_fields - min: e_scrim_request_statuses_min_fields -} - -""" -Boolean expression to filter rows from the table "e_scrim_request_statuses". All fields are combined with a logical 'AND'. -""" -input e_scrim_request_statuses_bool_exp { - _and: [e_scrim_request_statuses_bool_exp!] - _not: e_scrim_request_statuses_bool_exp - _or: [e_scrim_request_statuses_bool_exp!] - description: String_comparison_exp - scrim_requests: team_scrim_requests_bool_exp - scrim_requests_aggregate: team_scrim_requests_aggregate_bool_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_scrim_request_statuses" -""" -enum e_scrim_request_statuses_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_scrim_request_statuses_pkey -} - -enum e_scrim_request_statuses_enum { - """Both teams agreed on a time""" - Accepted - - """The request was cancelled by the proposer""" - Cancelled - - """A new time was proposed and is awaiting the other team""" - Countered - - """The request was declined""" - Declined - - """The request expired before being answered""" - Expired - - """A hosted match was scheduled for this request""" - Matched - - """Awaiting the other team to accept, decline, or counter""" - Pending -} - -""" -Boolean expression to compare columns of type "e_scrim_request_statuses_enum". All fields are combined with logical 'AND'. -""" -input e_scrim_request_statuses_enum_comparison_exp { - _eq: e_scrim_request_statuses_enum - _in: [e_scrim_request_statuses_enum!] - _is_null: Boolean - _neq: e_scrim_request_statuses_enum - _nin: [e_scrim_request_statuses_enum!] -} - -""" -input type for inserting data into table "e_scrim_request_statuses" -""" -input e_scrim_request_statuses_insert_input { - description: String - scrim_requests: team_scrim_requests_arr_rel_insert_input - value: String -} - -"""aggregate max on columns""" -type e_scrim_request_statuses_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_scrim_request_statuses_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_scrim_request_statuses" -""" -type e_scrim_request_statuses_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_scrim_request_statuses!]! -} - -""" -on_conflict condition type for table "e_scrim_request_statuses" -""" -input 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 -} - -"""Ordering options when selecting data from "e_scrim_request_statuses".""" -input e_scrim_request_statuses_order_by { - description: order_by - scrim_requests_aggregate: team_scrim_requests_aggregate_order_by - value: order_by -} - -"""primary key columns input for table: e_scrim_request_statuses""" -input e_scrim_request_statuses_pk_columns_input { - value: String! -} - -""" -select columns of table "e_scrim_request_statuses" -""" -enum e_scrim_request_statuses_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_scrim_request_statuses" -""" -input e_scrim_request_statuses_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_scrim_request_statuses" -""" -input e_scrim_request_statuses_stream_cursor_input { - """Stream column input with initial value""" - initial_value: e_scrim_request_statuses_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input e_scrim_request_statuses_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_scrim_request_statuses" -""" -enum e_scrim_request_statuses_update_column { - """column name""" - description - - """column name""" - value -} - -input e_scrim_request_statuses_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_scrim_request_statuses_set_input - - """filter the rows which have to be updated""" - where: e_scrim_request_statuses_bool_exp! -} - -""" -columns and relationships of "e_server_types" -""" -type e_server_types { - description: String! - - """An array relationship""" - servers( - """distinct select on columns""" - distinct_on: [servers_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: [servers_order_by!] - - """filter the rows returned""" - where: servers_bool_exp - ): [servers!]! - - """An aggregate relationship""" - servers_aggregate( - """distinct select on columns""" - distinct_on: [servers_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: [servers_order_by!] - - """filter the rows returned""" - where: servers_bool_exp - ): servers_aggregate! - value: String! -} - -""" -aggregated selection of "e_server_types" -""" -type e_server_types_aggregate { - aggregate: e_server_types_aggregate_fields - nodes: [e_server_types!]! -} - -""" -aggregate fields of "e_server_types" -""" -type e_server_types_aggregate_fields { - count(columns: [e_server_types_select_column!], distinct: Boolean): Int! - max: e_server_types_max_fields - min: e_server_types_min_fields -} - -""" -Boolean expression to filter rows from the table "e_server_types". All fields are combined with a logical 'AND'. -""" -input e_server_types_bool_exp { - _and: [e_server_types_bool_exp!] - _not: e_server_types_bool_exp - _or: [e_server_types_bool_exp!] - description: String_comparison_exp - servers: servers_bool_exp - servers_aggregate: servers_aggregate_bool_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_server_types" -""" -enum e_server_types_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_server_types_pkey -} - -enum e_server_types_enum { - """Valve Arms Race""" - ArmsRace - - """Valve Casual""" - Casual - - """Valve Competitive""" - Competitive - - """Custom""" - Custom - - """Valve Deathmatch""" - Deathmatch - - """5Stack Practice Server""" - Practice - - """5Stack Ranked Server""" - Ranked - - """Valve Retake""" - Retake - - """Valve Wingman""" - Wingman -} - -""" -Boolean expression to compare columns of type "e_server_types_enum". All fields are combined with logical 'AND'. -""" -input e_server_types_enum_comparison_exp { - _eq: e_server_types_enum - _in: [e_server_types_enum!] - _is_null: Boolean - _neq: e_server_types_enum - _nin: [e_server_types_enum!] -} - -""" -input type for inserting data into table "e_server_types" -""" -input e_server_types_insert_input { - description: String - servers: servers_arr_rel_insert_input - value: String -} - -"""aggregate max on columns""" -type e_server_types_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_server_types_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_server_types" -""" -type e_server_types_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_server_types!]! -} - -""" -on_conflict condition type for table "e_server_types" -""" -input e_server_types_on_conflict { - constraint: e_server_types_constraint! - update_columns: [e_server_types_update_column!]! = [] - where: e_server_types_bool_exp -} - -"""Ordering options when selecting data from "e_server_types".""" -input e_server_types_order_by { - description: order_by - servers_aggregate: servers_aggregate_order_by - value: order_by -} - -"""primary key columns input for table: e_server_types""" -input e_server_types_pk_columns_input { - value: String! -} - -""" -select columns of table "e_server_types" -""" -enum e_server_types_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_server_types" -""" -input e_server_types_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_server_types" -""" -input e_server_types_stream_cursor_input { - """Stream column input with initial value""" - initial_value: e_server_types_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input e_server_types_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_server_types" -""" -enum e_server_types_update_column { - """column name""" - description - - """column name""" - value -} - -input e_server_types_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_server_types_set_input - - """filter the rows which have to be updated""" - where: e_server_types_bool_exp! -} - -""" -columns and relationships of "e_sides" -""" -type e_sides { - description: String! - - """An array relationship""" - match_map_lineup_1( - """distinct select on columns""" - distinct_on: [match_maps_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_maps_order_by!] - - """filter the rows returned""" - where: match_maps_bool_exp - ): [match_maps!]! - - """An aggregate relationship""" - match_map_lineup_1_aggregate( - """distinct select on columns""" - distinct_on: [match_maps_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_maps_order_by!] - - """filter the rows returned""" - where: match_maps_bool_exp - ): match_maps_aggregate! - - """An array relationship""" - match_map_lineup_2( - """distinct select on columns""" - distinct_on: [match_maps_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_maps_order_by!] - - """filter the rows returned""" - where: match_maps_bool_exp - ): [match_maps!]! - - """An aggregate relationship""" - match_map_lineup_2_aggregate( - """distinct select on columns""" - distinct_on: [match_maps_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_maps_order_by!] - - """filter the rows returned""" - where: match_maps_bool_exp - ): match_maps_aggregate! - value: String! -} - -""" -aggregated selection of "e_sides" -""" -type e_sides_aggregate { - aggregate: e_sides_aggregate_fields - nodes: [e_sides!]! -} - -""" -aggregate fields of "e_sides" -""" -type e_sides_aggregate_fields { - count(columns: [e_sides_select_column!], distinct: Boolean): Int! - max: e_sides_max_fields - min: e_sides_min_fields -} - -""" -Boolean expression to filter rows from the table "e_sides". All fields are combined with a logical 'AND'. -""" -input e_sides_bool_exp { - _and: [e_sides_bool_exp!] - _not: e_sides_bool_exp - _or: [e_sides_bool_exp!] - description: String_comparison_exp - match_map_lineup_1: match_maps_bool_exp - match_map_lineup_1_aggregate: match_maps_aggregate_bool_exp - match_map_lineup_2: match_maps_bool_exp - match_map_lineup_2_aggregate: match_maps_aggregate_bool_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_sides" -""" -enum e_sides_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_teams_pkey -} - -enum e_sides_enum { - """Counter Terrorist""" - CT - - """None""" - None - - """Spectator""" - Spectator - - """Terrorist""" - TERRORIST -} - -""" -Boolean expression to compare columns of type "e_sides_enum". All fields are combined with logical 'AND'. -""" -input e_sides_enum_comparison_exp { - _eq: e_sides_enum - _in: [e_sides_enum!] - _is_null: Boolean - _neq: e_sides_enum - _nin: [e_sides_enum!] -} - -""" -input type for inserting data into table "e_sides" -""" -input e_sides_insert_input { - description: String - match_map_lineup_1: match_maps_arr_rel_insert_input - match_map_lineup_2: match_maps_arr_rel_insert_input - value: String -} - -"""aggregate max on columns""" -type e_sides_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_sides_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_sides" -""" -type e_sides_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_sides!]! -} - -""" -on_conflict condition type for table "e_sides" -""" -input e_sides_on_conflict { - constraint: e_sides_constraint! - update_columns: [e_sides_update_column!]! = [] - where: e_sides_bool_exp -} - -"""Ordering options when selecting data from "e_sides".""" -input e_sides_order_by { - description: order_by - match_map_lineup_1_aggregate: match_maps_aggregate_order_by - match_map_lineup_2_aggregate: match_maps_aggregate_order_by - value: order_by -} - -"""primary key columns input for table: e_sides""" -input e_sides_pk_columns_input { - value: String! -} - -""" -select columns of table "e_sides" -""" -enum e_sides_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_sides" -""" -input e_sides_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_sides" -""" -input e_sides_stream_cursor_input { - """Stream column input with initial value""" - initial_value: e_sides_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input e_sides_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_sides" -""" -enum e_sides_update_column { - """column name""" - description - - """column name""" - value -} - -input e_sides_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_sides_set_input - - """filter the rows which have to be updated""" - where: e_sides_bool_exp! -} - -""" -columns and relationships of "e_system_alert_types" -""" -type e_system_alert_types { - description: String! - value: String! -} - -""" -aggregated selection of "e_system_alert_types" -""" -type e_system_alert_types_aggregate { - aggregate: e_system_alert_types_aggregate_fields - nodes: [e_system_alert_types!]! -} - -""" -aggregate fields of "e_system_alert_types" -""" -type e_system_alert_types_aggregate_fields { - count(columns: [e_system_alert_types_select_column!], distinct: Boolean): Int! - max: e_system_alert_types_max_fields - min: e_system_alert_types_min_fields -} - -""" -Boolean expression to filter rows from the table "e_system_alert_types". All fields are combined with a logical 'AND'. -""" -input e_system_alert_types_bool_exp { - _and: [e_system_alert_types_bool_exp!] - _not: e_system_alert_types_bool_exp - _or: [e_system_alert_types_bool_exp!] - description: String_comparison_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_system_alert_types" -""" -enum e_system_alert_types_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_system_alert_types_pkey -} - -enum e_system_alert_types_enum { - """Critical""" - critical - - """Informational""" - info - - """Warning""" - warning -} - -""" -Boolean expression to compare columns of type "e_system_alert_types_enum". All fields are combined with logical 'AND'. -""" -input e_system_alert_types_enum_comparison_exp { - _eq: e_system_alert_types_enum - _in: [e_system_alert_types_enum!] - _is_null: Boolean - _neq: e_system_alert_types_enum - _nin: [e_system_alert_types_enum!] -} - -""" -input type for inserting data into table "e_system_alert_types" -""" -input e_system_alert_types_insert_input { - description: String - value: String -} - -"""aggregate max on columns""" -type e_system_alert_types_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_system_alert_types_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_system_alert_types" -""" -type e_system_alert_types_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_system_alert_types!]! -} - -""" -on_conflict condition type for table "e_system_alert_types" -""" -input 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 -} - -"""Ordering options when selecting data from "e_system_alert_types".""" -input e_system_alert_types_order_by { - description: order_by - value: order_by -} - -"""primary key columns input for table: e_system_alert_types""" -input e_system_alert_types_pk_columns_input { - value: String! -} - -""" -select columns of table "e_system_alert_types" -""" -enum e_system_alert_types_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_system_alert_types" -""" -input e_system_alert_types_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_system_alert_types" -""" -input e_system_alert_types_stream_cursor_input { - """Stream column input with initial value""" - initial_value: e_system_alert_types_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input e_system_alert_types_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_system_alert_types" -""" -enum e_system_alert_types_update_column { - """column name""" - description - - """column name""" - value -} - -input e_system_alert_types_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_system_alert_types_set_input - - """filter the rows which have to be updated""" - where: e_system_alert_types_bool_exp! -} - -""" -columns and relationships of "e_team_roles" -""" -type e_team_roles { - description: String! - - """An array relationship""" - team_rosters( - """distinct select on columns""" - distinct_on: [team_roster_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: [team_roster_order_by!] - - """filter the rows returned""" - where: team_roster_bool_exp - ): [team_roster!]! - - """An aggregate relationship""" - team_rosters_aggregate( - """distinct select on columns""" - distinct_on: [team_roster_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: [team_roster_order_by!] - - """filter the rows returned""" - where: team_roster_bool_exp - ): team_roster_aggregate! - - """An array relationship""" - tournament_team_rosters( - """distinct select on columns""" - distinct_on: [tournament_team_roster_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_team_roster_order_by!] - - """filter the rows returned""" - where: tournament_team_roster_bool_exp - ): [tournament_team_roster!]! - - """An aggregate relationship""" - tournament_team_rosters_aggregate( - """distinct select on columns""" - distinct_on: [tournament_team_roster_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_team_roster_order_by!] - - """filter the rows returned""" - where: tournament_team_roster_bool_exp - ): tournament_team_roster_aggregate! - value: String! -} - -""" -aggregated selection of "e_team_roles" -""" -type e_team_roles_aggregate { - aggregate: e_team_roles_aggregate_fields - nodes: [e_team_roles!]! -} - -""" -aggregate fields of "e_team_roles" -""" -type e_team_roles_aggregate_fields { - count(columns: [e_team_roles_select_column!], distinct: Boolean): Int! - max: e_team_roles_max_fields - min: e_team_roles_min_fields -} - -""" -Boolean expression to filter rows from the table "e_team_roles". All fields are combined with a logical 'AND'. -""" -input e_team_roles_bool_exp { - _and: [e_team_roles_bool_exp!] - _not: e_team_roles_bool_exp - _or: [e_team_roles_bool_exp!] - description: String_comparison_exp - team_rosters: team_roster_bool_exp - team_rosters_aggregate: team_roster_aggregate_bool_exp - tournament_team_rosters: tournament_team_roster_bool_exp - tournament_team_rosters_aggregate: tournament_team_roster_aggregate_bool_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_team_roles" -""" -enum e_team_roles_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_team_roles_pkey -} - -enum e_team_roles_enum { - """Administrator""" - Admin - - """Ability Invite / Add Players""" - Invite - - """Basic Membership""" - Member -} - -""" -Boolean expression to compare columns of type "e_team_roles_enum". All fields are combined with logical 'AND'. -""" -input e_team_roles_enum_comparison_exp { - _eq: e_team_roles_enum - _in: [e_team_roles_enum!] - _is_null: Boolean - _neq: e_team_roles_enum - _nin: [e_team_roles_enum!] -} - -""" -input type for inserting data into table "e_team_roles" -""" -input e_team_roles_insert_input { - description: String - team_rosters: team_roster_arr_rel_insert_input - tournament_team_rosters: tournament_team_roster_arr_rel_insert_input - value: String -} - -"""aggregate max on columns""" -type e_team_roles_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_team_roles_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_team_roles" -""" -type e_team_roles_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_team_roles!]! -} - -""" -input type for inserting object relation for remote table "e_team_roles" -""" -input e_team_roles_obj_rel_insert_input { - data: e_team_roles_insert_input! - - """upsert condition""" - on_conflict: e_team_roles_on_conflict -} - -""" -on_conflict condition type for table "e_team_roles" -""" -input e_team_roles_on_conflict { - constraint: e_team_roles_constraint! - update_columns: [e_team_roles_update_column!]! = [] - where: e_team_roles_bool_exp -} - -"""Ordering options when selecting data from "e_team_roles".""" -input e_team_roles_order_by { - description: order_by - team_rosters_aggregate: team_roster_aggregate_order_by - tournament_team_rosters_aggregate: tournament_team_roster_aggregate_order_by - value: order_by -} - -"""primary key columns input for table: e_team_roles""" -input e_team_roles_pk_columns_input { - value: String! -} - -""" -select columns of table "e_team_roles" -""" -enum e_team_roles_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_team_roles" -""" -input e_team_roles_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_team_roles" -""" -input e_team_roles_stream_cursor_input { - """Stream column input with initial value""" - initial_value: e_team_roles_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input e_team_roles_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_team_roles" -""" -enum e_team_roles_update_column { - """column name""" - description - - """column name""" - value -} - -input e_team_roles_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_team_roles_set_input - - """filter the rows which have to be updated""" - where: e_team_roles_bool_exp! -} - -""" -columns and relationships of "e_team_roster_statuses" -""" -type e_team_roster_statuses { - description: String! - value: String! -} - -""" -aggregated selection of "e_team_roster_statuses" -""" -type e_team_roster_statuses_aggregate { - aggregate: e_team_roster_statuses_aggregate_fields - nodes: [e_team_roster_statuses!]! -} - -""" -aggregate fields of "e_team_roster_statuses" -""" -type e_team_roster_statuses_aggregate_fields { - count(columns: [e_team_roster_statuses_select_column!], distinct: Boolean): Int! - max: e_team_roster_statuses_max_fields - min: e_team_roster_statuses_min_fields -} - -""" -Boolean expression to filter rows from the table "e_team_roster_statuses". All fields are combined with a logical 'AND'. -""" -input e_team_roster_statuses_bool_exp { - _and: [e_team_roster_statuses_bool_exp!] - _not: e_team_roster_statuses_bool_exp - _or: [e_team_roster_statuses_bool_exp!] - description: String_comparison_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_team_roster_statuses" -""" -enum e_team_roster_statuses_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_team_roster_statuses_pkey -} - -enum e_team_roster_statuses_enum { - """Benched""" - Benched - - """Starter""" - Starter - - """Substitute""" - Substitute -} - -""" -Boolean expression to compare columns of type "e_team_roster_statuses_enum". All fields are combined with logical 'AND'. -""" -input e_team_roster_statuses_enum_comparison_exp { - _eq: e_team_roster_statuses_enum - _in: [e_team_roster_statuses_enum!] - _is_null: Boolean - _neq: e_team_roster_statuses_enum - _nin: [e_team_roster_statuses_enum!] -} - -""" -input type for inserting data into table "e_team_roster_statuses" -""" -input e_team_roster_statuses_insert_input { - description: String - value: String -} - -"""aggregate max on columns""" -type e_team_roster_statuses_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_team_roster_statuses_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_team_roster_statuses" -""" -type e_team_roster_statuses_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_team_roster_statuses!]! -} - -""" -on_conflict condition type for table "e_team_roster_statuses" -""" -input 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 -} - -"""Ordering options when selecting data from "e_team_roster_statuses".""" -input e_team_roster_statuses_order_by { - description: order_by - value: order_by -} - -"""primary key columns input for table: e_team_roster_statuses""" -input e_team_roster_statuses_pk_columns_input { - value: String! -} - -""" -select columns of table "e_team_roster_statuses" -""" -enum e_team_roster_statuses_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_team_roster_statuses" -""" -input e_team_roster_statuses_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_team_roster_statuses" -""" -input 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 -} - -"""Initial value of the column from where the streaming should start""" -input e_team_roster_statuses_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_team_roster_statuses" -""" -enum e_team_roster_statuses_update_column { - """column name""" - description - - """column name""" - value -} - -input e_team_roster_statuses_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_team_roster_statuses_set_input - - """filter the rows which have to be updated""" - where: e_team_roster_statuses_bool_exp! -} - -""" -columns and relationships of "e_timeout_settings" -""" -type e_timeout_settings { - description: String! - value: String! -} - -""" -aggregated selection of "e_timeout_settings" -""" -type e_timeout_settings_aggregate { - aggregate: e_timeout_settings_aggregate_fields - nodes: [e_timeout_settings!]! -} - -""" -aggregate fields of "e_timeout_settings" -""" -type e_timeout_settings_aggregate_fields { - count(columns: [e_timeout_settings_select_column!], distinct: Boolean): Int! - max: e_timeout_settings_max_fields - min: e_timeout_settings_min_fields -} - -""" -Boolean expression to filter rows from the table "e_timeout_settings". All fields are combined with a logical 'AND'. -""" -input e_timeout_settings_bool_exp { - _and: [e_timeout_settings_bool_exp!] - _not: e_timeout_settings_bool_exp - _or: [e_timeout_settings_bool_exp!] - description: String_comparison_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_timeout_settings" -""" -enum e_timeout_settings_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_timeout_settings_pkey -} - -enum e_timeout_settings_enum { - """Admins Only""" - Admin - - """Coach Only""" - Coach - - """Coach And Captains""" - CoachAndCaptains - - """Coach And Players""" - CoachAndPlayers -} - -""" -Boolean expression to compare columns of type "e_timeout_settings_enum". All fields are combined with logical 'AND'. -""" -input e_timeout_settings_enum_comparison_exp { - _eq: e_timeout_settings_enum - _in: [e_timeout_settings_enum!] - _is_null: Boolean - _neq: e_timeout_settings_enum - _nin: [e_timeout_settings_enum!] -} - -""" -input type for inserting data into table "e_timeout_settings" -""" -input e_timeout_settings_insert_input { - description: String - value: String -} - -"""aggregate max on columns""" -type e_timeout_settings_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_timeout_settings_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_timeout_settings" -""" -type e_timeout_settings_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_timeout_settings!]! -} - -""" -on_conflict condition type for table "e_timeout_settings" -""" -input e_timeout_settings_on_conflict { - constraint: e_timeout_settings_constraint! - update_columns: [e_timeout_settings_update_column!]! = [] - where: e_timeout_settings_bool_exp -} - -"""Ordering options when selecting data from "e_timeout_settings".""" -input e_timeout_settings_order_by { - description: order_by - value: order_by -} - -"""primary key columns input for table: e_timeout_settings""" -input e_timeout_settings_pk_columns_input { - value: String! -} - -""" -select columns of table "e_timeout_settings" -""" -enum e_timeout_settings_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_timeout_settings" -""" -input e_timeout_settings_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_timeout_settings" -""" -input 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 -} - -"""Initial value of the column from where the streaming should start""" -input e_timeout_settings_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_timeout_settings" -""" -enum e_timeout_settings_update_column { - """column name""" - description - - """column name""" - value -} - -input e_timeout_settings_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_timeout_settings_set_input - - """filter the rows which have to be updated""" - where: e_timeout_settings_bool_exp! -} - -""" -columns and relationships of "e_tournament_categories" -""" -type e_tournament_categories { - description: String! - - """An array relationship""" - tournament_categories( - """distinct select on columns""" - distinct_on: [tournament_categories_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_categories_order_by!] - - """filter the rows returned""" - where: tournament_categories_bool_exp - ): [tournament_categories!]! - - """An aggregate relationship""" - tournament_categories_aggregate( - """distinct select on columns""" - distinct_on: [tournament_categories_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_categories_order_by!] - - """filter the rows returned""" - where: tournament_categories_bool_exp - ): tournament_categories_aggregate! - value: String! -} - -""" -aggregated selection of "e_tournament_categories" -""" -type e_tournament_categories_aggregate { - aggregate: e_tournament_categories_aggregate_fields - nodes: [e_tournament_categories!]! -} - -""" -aggregate fields of "e_tournament_categories" -""" -type e_tournament_categories_aggregate_fields { - count(columns: [e_tournament_categories_select_column!], distinct: Boolean): Int! - max: e_tournament_categories_max_fields - min: e_tournament_categories_min_fields -} - -""" -Boolean expression to filter rows from the table "e_tournament_categories". All fields are combined with a logical 'AND'. -""" -input e_tournament_categories_bool_exp { - _and: [e_tournament_categories_bool_exp!] - _not: e_tournament_categories_bool_exp - _or: [e_tournament_categories_bool_exp!] - description: String_comparison_exp - tournament_categories: tournament_categories_bool_exp - tournament_categories_aggregate: tournament_categories_aggregate_bool_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_tournament_categories" -""" -enum e_tournament_categories_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_tournament_categories_pkey -} - -enum e_tournament_categories_enum { - """LAN""" - LAN - - """League""" - League - - """Location Event""" - LocationEvent - - """Online Event""" - OnlineEvent -} - -""" -Boolean expression to compare columns of type "e_tournament_categories_enum". All fields are combined with logical 'AND'. -""" -input e_tournament_categories_enum_comparison_exp { - _eq: e_tournament_categories_enum - _in: [e_tournament_categories_enum!] - _is_null: Boolean - _neq: e_tournament_categories_enum - _nin: [e_tournament_categories_enum!] -} - -""" -input type for inserting data into table "e_tournament_categories" -""" -input e_tournament_categories_insert_input { - description: String - tournament_categories: tournament_categories_arr_rel_insert_input - value: String -} - -"""aggregate max on columns""" -type e_tournament_categories_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_tournament_categories_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_tournament_categories" -""" -type e_tournament_categories_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_tournament_categories!]! -} - -""" -input type for inserting object relation for remote table "e_tournament_categories" -""" -input e_tournament_categories_obj_rel_insert_input { - data: e_tournament_categories_insert_input! - - """upsert condition""" - on_conflict: e_tournament_categories_on_conflict -} - -""" -on_conflict condition type for table "e_tournament_categories" -""" -input e_tournament_categories_on_conflict { - constraint: e_tournament_categories_constraint! - update_columns: [e_tournament_categories_update_column!]! = [] - where: e_tournament_categories_bool_exp -} - -"""Ordering options when selecting data from "e_tournament_categories".""" -input e_tournament_categories_order_by { - description: order_by - tournament_categories_aggregate: tournament_categories_aggregate_order_by - value: order_by -} - -"""primary key columns input for table: e_tournament_categories""" -input e_tournament_categories_pk_columns_input { - value: String! -} - -""" -select columns of table "e_tournament_categories" -""" -enum e_tournament_categories_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_tournament_categories" -""" -input e_tournament_categories_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_tournament_categories" -""" -input e_tournament_categories_stream_cursor_input { - """Stream column input with initial value""" - initial_value: e_tournament_categories_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input e_tournament_categories_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_tournament_categories" -""" -enum e_tournament_categories_update_column { - """column name""" - description - - """column name""" - value -} - -input e_tournament_categories_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_tournament_categories_set_input - - """filter the rows which have to be updated""" - where: e_tournament_categories_bool_exp! -} - -""" -columns and relationships of "e_tournament_free_agent_statuses" -""" -type e_tournament_free_agent_statuses { - description: String! - - """An array relationship""" - tournament_free_agents( - """distinct select on columns""" - distinct_on: [tournament_free_agents_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_free_agents_order_by!] - - """filter the rows returned""" - where: tournament_free_agents_bool_exp - ): [tournament_free_agents!]! - - """An aggregate relationship""" - tournament_free_agents_aggregate( - """distinct select on columns""" - distinct_on: [tournament_free_agents_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_free_agents_order_by!] - - """filter the rows returned""" - where: tournament_free_agents_bool_exp - ): tournament_free_agents_aggregate! - value: String! -} - -""" -aggregated selection of "e_tournament_free_agent_statuses" -""" -type e_tournament_free_agent_statuses_aggregate { - aggregate: e_tournament_free_agent_statuses_aggregate_fields - nodes: [e_tournament_free_agent_statuses!]! -} - -""" -aggregate fields of "e_tournament_free_agent_statuses" -""" -type e_tournament_free_agent_statuses_aggregate_fields { - count(columns: [e_tournament_free_agent_statuses_select_column!], distinct: Boolean): Int! - max: e_tournament_free_agent_statuses_max_fields - min: e_tournament_free_agent_statuses_min_fields -} - -""" -Boolean expression to filter rows from the table "e_tournament_free_agent_statuses". All fields are combined with a logical 'AND'. -""" -input e_tournament_free_agent_statuses_bool_exp { - _and: [e_tournament_free_agent_statuses_bool_exp!] - _not: e_tournament_free_agent_statuses_bool_exp - _or: [e_tournament_free_agent_statuses_bool_exp!] - description: String_comparison_exp - tournament_free_agents: tournament_free_agents_bool_exp - tournament_free_agents_aggregate: tournament_free_agents_aggregate_bool_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_tournament_free_agent_statuses" -""" -enum e_tournament_free_agent_statuses_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_tournament_free_agent_statuses_pkey -} - -enum e_tournament_free_agent_statuses_enum { - """Placed on a drafted team""" - drafted - - """Signed up and waiting for the draft""" - registered - - """Did not make the cut; first in line if a slot opens""" - waitlisted - - """Left the free agent pool""" - withdrawn -} - -""" -Boolean expression to compare columns of type "e_tournament_free_agent_statuses_enum". All fields are combined with logical 'AND'. -""" -input e_tournament_free_agent_statuses_enum_comparison_exp { - _eq: e_tournament_free_agent_statuses_enum - _in: [e_tournament_free_agent_statuses_enum!] - _is_null: Boolean - _neq: e_tournament_free_agent_statuses_enum - _nin: [e_tournament_free_agent_statuses_enum!] -} - -""" -input type for inserting data into table "e_tournament_free_agent_statuses" -""" -input e_tournament_free_agent_statuses_insert_input { - description: String - tournament_free_agents: tournament_free_agents_arr_rel_insert_input - value: String -} - -"""aggregate max on columns""" -type e_tournament_free_agent_statuses_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_tournament_free_agent_statuses_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_tournament_free_agent_statuses" -""" -type e_tournament_free_agent_statuses_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_tournament_free_agent_statuses!]! -} - -""" -input type for inserting object relation for remote table "e_tournament_free_agent_statuses" -""" -input e_tournament_free_agent_statuses_obj_rel_insert_input { - data: e_tournament_free_agent_statuses_insert_input! - - """upsert condition""" - on_conflict: e_tournament_free_agent_statuses_on_conflict -} - -""" -on_conflict condition type for table "e_tournament_free_agent_statuses" -""" -input e_tournament_free_agent_statuses_on_conflict { - constraint: e_tournament_free_agent_statuses_constraint! - update_columns: [e_tournament_free_agent_statuses_update_column!]! = [] - where: e_tournament_free_agent_statuses_bool_exp -} - -""" -Ordering options when selecting data from "e_tournament_free_agent_statuses". -""" -input e_tournament_free_agent_statuses_order_by { - description: order_by - tournament_free_agents_aggregate: tournament_free_agents_aggregate_order_by - value: order_by -} - -"""primary key columns input for table: e_tournament_free_agent_statuses""" -input e_tournament_free_agent_statuses_pk_columns_input { - value: String! -} - -""" -select columns of table "e_tournament_free_agent_statuses" -""" -enum e_tournament_free_agent_statuses_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_tournament_free_agent_statuses" -""" -input e_tournament_free_agent_statuses_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_tournament_free_agent_statuses" -""" -input e_tournament_free_agent_statuses_stream_cursor_input { - """Stream column input with initial value""" - initial_value: e_tournament_free_agent_statuses_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input e_tournament_free_agent_statuses_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_tournament_free_agent_statuses" -""" -enum e_tournament_free_agent_statuses_update_column { - """column name""" - description - - """column name""" - value -} - -input e_tournament_free_agent_statuses_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_tournament_free_agent_statuses_set_input - - """filter the rows which have to be updated""" - where: e_tournament_free_agent_statuses_bool_exp! -} - -""" -columns and relationships of "e_tournament_registration_types" -""" -type e_tournament_registration_types { - description: String! - - """An array relationship""" - tournaments( - """distinct select on columns""" - distinct_on: [tournaments_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournaments_order_by!] - - """filter the rows returned""" - where: tournaments_bool_exp - ): [tournaments!]! - - """An aggregate relationship""" - tournaments_aggregate( - """distinct select on columns""" - distinct_on: [tournaments_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournaments_order_by!] - - """filter the rows returned""" - where: tournaments_bool_exp - ): tournaments_aggregate! - value: String! -} - -""" -aggregated selection of "e_tournament_registration_types" -""" -type e_tournament_registration_types_aggregate { - aggregate: e_tournament_registration_types_aggregate_fields - nodes: [e_tournament_registration_types!]! -} - -""" -aggregate fields of "e_tournament_registration_types" -""" -type e_tournament_registration_types_aggregate_fields { - count(columns: [e_tournament_registration_types_select_column!], distinct: Boolean): Int! - max: e_tournament_registration_types_max_fields - min: e_tournament_registration_types_min_fields -} - -""" -Boolean expression to filter rows from the table "e_tournament_registration_types". All fields are combined with a logical 'AND'. -""" -input e_tournament_registration_types_bool_exp { - _and: [e_tournament_registration_types_bool_exp!] - _not: e_tournament_registration_types_bool_exp - _or: [e_tournament_registration_types_bool_exp!] - description: String_comparison_exp - tournaments: tournaments_bool_exp - tournaments_aggregate: tournaments_aggregate_bool_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_tournament_registration_types" -""" -enum e_tournament_registration_types_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_tournament_registration_types_pkey -} - -enum e_tournament_registration_types_enum { - """Pre-formed teams and individual free agents may both register""" - both - - """Only individual players may register; teams are drafted from the pool""" - free_agents - - """Only pre-formed teams may register""" - teams -} - -""" -Boolean expression to compare columns of type "e_tournament_registration_types_enum". All fields are combined with logical 'AND'. -""" -input e_tournament_registration_types_enum_comparison_exp { - _eq: e_tournament_registration_types_enum - _in: [e_tournament_registration_types_enum!] - _is_null: Boolean - _neq: e_tournament_registration_types_enum - _nin: [e_tournament_registration_types_enum!] -} - -""" -input type for inserting data into table "e_tournament_registration_types" -""" -input e_tournament_registration_types_insert_input { - description: String - tournaments: tournaments_arr_rel_insert_input - value: String -} - -"""aggregate max on columns""" -type e_tournament_registration_types_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_tournament_registration_types_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_tournament_registration_types" -""" -type e_tournament_registration_types_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_tournament_registration_types!]! -} - -""" -on_conflict condition type for table "e_tournament_registration_types" -""" -input e_tournament_registration_types_on_conflict { - constraint: e_tournament_registration_types_constraint! - update_columns: [e_tournament_registration_types_update_column!]! = [] - where: e_tournament_registration_types_bool_exp -} - -""" -Ordering options when selecting data from "e_tournament_registration_types". -""" -input e_tournament_registration_types_order_by { - description: order_by - tournaments_aggregate: tournaments_aggregate_order_by - value: order_by -} - -"""primary key columns input for table: e_tournament_registration_types""" -input e_tournament_registration_types_pk_columns_input { - value: String! -} - -""" -select columns of table "e_tournament_registration_types" -""" -enum e_tournament_registration_types_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_tournament_registration_types" -""" -input e_tournament_registration_types_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_tournament_registration_types" -""" -input e_tournament_registration_types_stream_cursor_input { - """Stream column input with initial value""" - initial_value: e_tournament_registration_types_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input e_tournament_registration_types_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_tournament_registration_types" -""" -enum e_tournament_registration_types_update_column { - """column name""" - description - - """column name""" - value -} - -input e_tournament_registration_types_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_tournament_registration_types_set_input - - """filter the rows which have to be updated""" - where: e_tournament_registration_types_bool_exp! -} - -""" -columns and relationships of "e_tournament_stage_types" -""" -type e_tournament_stage_types { - description: String! - - """An array relationship""" - tournament_stages( - """distinct select on columns""" - distinct_on: [tournament_stages_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_stages_order_by!] - - """filter the rows returned""" - where: tournament_stages_bool_exp - ): [tournament_stages!]! - - """An aggregate relationship""" - tournament_stages_aggregate( - """distinct select on columns""" - distinct_on: [tournament_stages_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_stages_order_by!] - - """filter the rows returned""" - where: tournament_stages_bool_exp - ): tournament_stages_aggregate! - value: String! -} - -""" -aggregated selection of "e_tournament_stage_types" -""" -type e_tournament_stage_types_aggregate { - aggregate: e_tournament_stage_types_aggregate_fields - nodes: [e_tournament_stage_types!]! -} - -""" -aggregate fields of "e_tournament_stage_types" -""" -type e_tournament_stage_types_aggregate_fields { - count(columns: [e_tournament_stage_types_select_column!], distinct: Boolean): Int! - max: e_tournament_stage_types_max_fields - min: e_tournament_stage_types_min_fields -} - -""" -Boolean expression to filter rows from the table "e_tournament_stage_types". All fields are combined with a logical 'AND'. -""" -input e_tournament_stage_types_bool_exp { - _and: [e_tournament_stage_types_bool_exp!] - _not: e_tournament_stage_types_bool_exp - _or: [e_tournament_stage_types_bool_exp!] - description: String_comparison_exp - tournament_stages: tournament_stages_bool_exp - tournament_stages_aggregate: tournament_stages_aggregate_bool_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_tournament_stage_types" -""" -enum e_tournament_stage_types_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_tournament_stage_types_pkey -} - -enum e_tournament_stage_types_enum { - """Double Elimination""" - DoubleElimination - - """Round Robin""" - RoundRobin - - """Single Elimination""" - SingleElimination - - """Swiss""" - Swiss -} - -""" -Boolean expression to compare columns of type "e_tournament_stage_types_enum". All fields are combined with logical 'AND'. -""" -input e_tournament_stage_types_enum_comparison_exp { - _eq: e_tournament_stage_types_enum - _in: [e_tournament_stage_types_enum!] - _is_null: Boolean - _neq: e_tournament_stage_types_enum - _nin: [e_tournament_stage_types_enum!] -} - -""" -input type for inserting data into table "e_tournament_stage_types" -""" -input e_tournament_stage_types_insert_input { - description: String - tournament_stages: tournament_stages_arr_rel_insert_input - value: String -} - -"""aggregate max on columns""" -type e_tournament_stage_types_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_tournament_stage_types_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_tournament_stage_types" -""" -type e_tournament_stage_types_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_tournament_stage_types!]! -} - -""" -input type for inserting object relation for remote table "e_tournament_stage_types" -""" -input 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 -} - -""" -on_conflict condition type for table "e_tournament_stage_types" -""" -input 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 -} - -"""Ordering options when selecting data from "e_tournament_stage_types".""" -input e_tournament_stage_types_order_by { - description: order_by - tournament_stages_aggregate: tournament_stages_aggregate_order_by - value: order_by -} - -"""primary key columns input for table: e_tournament_stage_types""" -input e_tournament_stage_types_pk_columns_input { - value: String! -} - -""" -select columns of table "e_tournament_stage_types" -""" -enum e_tournament_stage_types_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_tournament_stage_types" -""" -input e_tournament_stage_types_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_tournament_stage_types" -""" -input 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 -} - -"""Initial value of the column from where the streaming should start""" -input e_tournament_stage_types_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_tournament_stage_types" -""" -enum e_tournament_stage_types_update_column { - """column name""" - description - - """column name""" - value -} - -input e_tournament_stage_types_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_tournament_stage_types_set_input - - """filter the rows which have to be updated""" - where: e_tournament_stage_types_bool_exp! -} - -""" -columns and relationships of "e_tournament_status" -""" -type e_tournament_status { - description: String! - - """An array relationship""" - tournaments( - """distinct select on columns""" - distinct_on: [tournaments_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournaments_order_by!] - - """filter the rows returned""" - where: tournaments_bool_exp - ): [tournaments!]! - - """An aggregate relationship""" - tournaments_aggregate( - """distinct select on columns""" - distinct_on: [tournaments_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournaments_order_by!] - - """filter the rows returned""" - where: tournaments_bool_exp - ): tournaments_aggregate! - value: String! -} - -""" -aggregated selection of "e_tournament_status" -""" -type e_tournament_status_aggregate { - aggregate: e_tournament_status_aggregate_fields - nodes: [e_tournament_status!]! -} - -""" -aggregate fields of "e_tournament_status" -""" -type e_tournament_status_aggregate_fields { - count(columns: [e_tournament_status_select_column!], distinct: Boolean): Int! - max: e_tournament_status_max_fields - min: e_tournament_status_min_fields -} - -""" -Boolean expression to filter rows from the table "e_tournament_status". All fields are combined with a logical 'AND'. -""" -input e_tournament_status_bool_exp { - _and: [e_tournament_status_bool_exp!] - _not: e_tournament_status_bool_exp - _or: [e_tournament_status_bool_exp!] - description: String_comparison_exp - tournaments: tournaments_bool_exp - tournaments_aggregate: tournaments_aggregate_bool_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_tournament_status" -""" -enum e_tournament_status_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_tournament_status_pkey -} - -enum e_tournament_status_enum { - """Cancelled""" - Cancelled - - """Cancelled because it did not meet minimum number of teams""" - CancelledMinTeams - - """Check-in closed with teams missing; held for organizer review""" - CheckInReview - - """Finished""" - Finished - - """Live""" - Live - - """Paused""" - Paused - - """Registration Closed""" - RegistrationClosed - - """Registration Open""" - RegistrationOpen - - """Setup""" - Setup -} - -""" -Boolean expression to compare columns of type "e_tournament_status_enum". All fields are combined with logical 'AND'. -""" -input e_tournament_status_enum_comparison_exp { - _eq: e_tournament_status_enum - _in: [e_tournament_status_enum!] - _is_null: Boolean - _neq: e_tournament_status_enum - _nin: [e_tournament_status_enum!] -} - -""" -input type for inserting data into table "e_tournament_status" -""" -input e_tournament_status_insert_input { - description: String - tournaments: tournaments_arr_rel_insert_input - value: String -} - -"""aggregate max on columns""" -type e_tournament_status_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_tournament_status_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_tournament_status" -""" -type e_tournament_status_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_tournament_status!]! -} - -""" -input type for inserting object relation for remote table "e_tournament_status" -""" -input e_tournament_status_obj_rel_insert_input { - data: e_tournament_status_insert_input! - - """upsert condition""" - on_conflict: e_tournament_status_on_conflict -} - -""" -on_conflict condition type for table "e_tournament_status" -""" -input e_tournament_status_on_conflict { - constraint: e_tournament_status_constraint! - update_columns: [e_tournament_status_update_column!]! = [] - where: e_tournament_status_bool_exp -} - -"""Ordering options when selecting data from "e_tournament_status".""" -input e_tournament_status_order_by { - description: order_by - tournaments_aggregate: tournaments_aggregate_order_by - value: order_by -} - -"""primary key columns input for table: e_tournament_status""" -input e_tournament_status_pk_columns_input { - value: String! -} - -""" -select columns of table "e_tournament_status" -""" -enum e_tournament_status_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_tournament_status" -""" -input e_tournament_status_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_tournament_status" -""" -input 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 -} - -"""Initial value of the column from where the streaming should start""" -input e_tournament_status_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_tournament_status" -""" -enum e_tournament_status_update_column { - """column name""" - description - - """column name""" - value -} - -input e_tournament_status_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_tournament_status_set_input - - """filter the rows which have to be updated""" - where: e_tournament_status_bool_exp! -} - -""" -columns and relationships of "e_utility_practice_access" -""" -type e_utility_practice_access { - description: String! - - """An array relationship""" - utility_practice_sessions( - """distinct select on columns""" - distinct_on: [utility_practice_sessions_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: [utility_practice_sessions_order_by!] - - """filter the rows returned""" - where: utility_practice_sessions_bool_exp - ): [utility_practice_sessions!]! - - """An aggregate relationship""" - utility_practice_sessions_aggregate( - """distinct select on columns""" - distinct_on: [utility_practice_sessions_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: [utility_practice_sessions_order_by!] - - """filter the rows returned""" - where: utility_practice_sessions_bool_exp - ): utility_practice_sessions_aggregate! - value: String! -} - -""" -aggregated selection of "e_utility_practice_access" -""" -type e_utility_practice_access_aggregate { - aggregate: e_utility_practice_access_aggregate_fields - nodes: [e_utility_practice_access!]! -} - -""" -aggregate fields of "e_utility_practice_access" -""" -type e_utility_practice_access_aggregate_fields { - count(columns: [e_utility_practice_access_select_column!], distinct: Boolean): Int! - max: e_utility_practice_access_max_fields - min: e_utility_practice_access_min_fields -} - -""" -Boolean expression to filter rows from the table "e_utility_practice_access". All fields are combined with a logical 'AND'. -""" -input e_utility_practice_access_bool_exp { - _and: [e_utility_practice_access_bool_exp!] - _not: e_utility_practice_access_bool_exp - _or: [e_utility_practice_access_bool_exp!] - description: String_comparison_exp - utility_practice_sessions: utility_practice_sessions_bool_exp - utility_practice_sessions_aggregate: utility_practice_sessions_aggregate_bool_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_utility_practice_access" -""" -enum e_utility_practice_access_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_utility_practice_access_pkey -} - -enum e_utility_practice_access_enum { - """Friends of the host, their team, and invited players""" - Friends - - """Only invited players and the host's team""" - Invite - - """Anyone with the link can join""" - Open - - """Only the host""" - Private -} - -""" -Boolean expression to compare columns of type "e_utility_practice_access_enum". All fields are combined with logical 'AND'. -""" -input e_utility_practice_access_enum_comparison_exp { - _eq: e_utility_practice_access_enum - _in: [e_utility_practice_access_enum!] - _is_null: Boolean - _neq: e_utility_practice_access_enum - _nin: [e_utility_practice_access_enum!] -} - -""" -input type for inserting data into table "e_utility_practice_access" -""" -input e_utility_practice_access_insert_input { - description: String - utility_practice_sessions: utility_practice_sessions_arr_rel_insert_input - value: String -} - -"""aggregate max on columns""" -type e_utility_practice_access_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_utility_practice_access_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_utility_practice_access" -""" -type e_utility_practice_access_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_utility_practice_access!]! -} - -""" -on_conflict condition type for table "e_utility_practice_access" -""" -input e_utility_practice_access_on_conflict { - constraint: e_utility_practice_access_constraint! - update_columns: [e_utility_practice_access_update_column!]! = [] - where: e_utility_practice_access_bool_exp -} - -"""Ordering options when selecting data from "e_utility_practice_access".""" -input e_utility_practice_access_order_by { - description: order_by - utility_practice_sessions_aggregate: utility_practice_sessions_aggregate_order_by - value: order_by -} - -"""primary key columns input for table: e_utility_practice_access""" -input e_utility_practice_access_pk_columns_input { - value: String! -} - -""" -select columns of table "e_utility_practice_access" -""" -enum e_utility_practice_access_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_utility_practice_access" -""" -input e_utility_practice_access_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_utility_practice_access" -""" -input e_utility_practice_access_stream_cursor_input { - """Stream column input with initial value""" - initial_value: e_utility_practice_access_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input e_utility_practice_access_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_utility_practice_access" -""" -enum e_utility_practice_access_update_column { - """column name""" - description - - """column name""" - value -} - -input e_utility_practice_access_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_utility_practice_access_set_input - - """filter the rows which have to be updated""" - where: e_utility_practice_access_bool_exp! -} - -""" -columns and relationships of "e_utility_practice_statuses" -""" -type e_utility_practice_statuses { - description: String! - - """An array relationship""" - utility_practice_sessions( - """distinct select on columns""" - distinct_on: [utility_practice_sessions_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: [utility_practice_sessions_order_by!] - - """filter the rows returned""" - where: utility_practice_sessions_bool_exp - ): [utility_practice_sessions!]! - - """An aggregate relationship""" - utility_practice_sessions_aggregate( - """distinct select on columns""" - distinct_on: [utility_practice_sessions_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: [utility_practice_sessions_order_by!] - - """filter the rows returned""" - where: utility_practice_sessions_bool_exp - ): utility_practice_sessions_aggregate! - value: String! -} - -""" -aggregated selection of "e_utility_practice_statuses" -""" -type e_utility_practice_statuses_aggregate { - aggregate: e_utility_practice_statuses_aggregate_fields - nodes: [e_utility_practice_statuses!]! -} - -""" -aggregate fields of "e_utility_practice_statuses" -""" -type e_utility_practice_statuses_aggregate_fields { - count(columns: [e_utility_practice_statuses_select_column!], distinct: Boolean): Int! - max: e_utility_practice_statuses_max_fields - min: e_utility_practice_statuses_min_fields -} - -""" -Boolean expression to filter rows from the table "e_utility_practice_statuses". All fields are combined with a logical 'AND'. -""" -input e_utility_practice_statuses_bool_exp { - _and: [e_utility_practice_statuses_bool_exp!] - _not: e_utility_practice_statuses_bool_exp - _or: [e_utility_practice_statuses_bool_exp!] - description: String_comparison_exp - utility_practice_sessions: utility_practice_sessions_bool_exp - utility_practice_sessions_aggregate: utility_practice_sessions_aggregate_bool_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_utility_practice_statuses" -""" -enum e_utility_practice_statuses_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_utility_practice_statuses_pkey -} - -enum e_utility_practice_statuses_enum { - """Stopped normally""" - Ended - - """Never came up""" - Failed - - """Server is up and joinable""" - Ready - - """Waiting on a server""" - Starting -} - -""" -Boolean expression to compare columns of type "e_utility_practice_statuses_enum". All fields are combined with logical 'AND'. -""" -input e_utility_practice_statuses_enum_comparison_exp { - _eq: e_utility_practice_statuses_enum - _in: [e_utility_practice_statuses_enum!] - _is_null: Boolean - _neq: e_utility_practice_statuses_enum - _nin: [e_utility_practice_statuses_enum!] -} - -""" -input type for inserting data into table "e_utility_practice_statuses" -""" -input e_utility_practice_statuses_insert_input { - description: String - utility_practice_sessions: utility_practice_sessions_arr_rel_insert_input - value: String -} - -"""aggregate max on columns""" -type e_utility_practice_statuses_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_utility_practice_statuses_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_utility_practice_statuses" -""" -type e_utility_practice_statuses_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_utility_practice_statuses!]! -} - -""" -input type for inserting object relation for remote table "e_utility_practice_statuses" -""" -input e_utility_practice_statuses_obj_rel_insert_input { - data: e_utility_practice_statuses_insert_input! - - """upsert condition""" - on_conflict: e_utility_practice_statuses_on_conflict -} - -""" -on_conflict condition type for table "e_utility_practice_statuses" -""" -input e_utility_practice_statuses_on_conflict { - constraint: e_utility_practice_statuses_constraint! - update_columns: [e_utility_practice_statuses_update_column!]! = [] - where: e_utility_practice_statuses_bool_exp -} - -""" -Ordering options when selecting data from "e_utility_practice_statuses". -""" -input e_utility_practice_statuses_order_by { - description: order_by - utility_practice_sessions_aggregate: utility_practice_sessions_aggregate_order_by - value: order_by -} - -"""primary key columns input for table: e_utility_practice_statuses""" -input e_utility_practice_statuses_pk_columns_input { - value: String! -} - -""" -select columns of table "e_utility_practice_statuses" -""" -enum e_utility_practice_statuses_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_utility_practice_statuses" -""" -input e_utility_practice_statuses_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_utility_practice_statuses" -""" -input e_utility_practice_statuses_stream_cursor_input { - """Stream column input with initial value""" - initial_value: e_utility_practice_statuses_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input e_utility_practice_statuses_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_utility_practice_statuses" -""" -enum e_utility_practice_statuses_update_column { - """column name""" - description - - """column name""" - value -} - -input e_utility_practice_statuses_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_utility_practice_statuses_set_input - - """filter the rows which have to be updated""" - where: e_utility_practice_statuses_bool_exp! -} - -""" -columns and relationships of "e_utility_sources" -""" -type e_utility_sources { - description: String! - - """An array relationship""" - utility_lineups( - """distinct select on columns""" - distinct_on: [utility_lineups_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: [utility_lineups_order_by!] - - """filter the rows returned""" - where: utility_lineups_bool_exp - ): [utility_lineups!]! - - """An aggregate relationship""" - utility_lineups_aggregate( - """distinct select on columns""" - distinct_on: [utility_lineups_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: [utility_lineups_order_by!] - - """filter the rows returned""" - where: utility_lineups_bool_exp - ): utility_lineups_aggregate! - value: String! -} - -""" -aggregated selection of "e_utility_sources" -""" -type e_utility_sources_aggregate { - aggregate: e_utility_sources_aggregate_fields - nodes: [e_utility_sources!]! -} - -""" -aggregate fields of "e_utility_sources" -""" -type e_utility_sources_aggregate_fields { - count(columns: [e_utility_sources_select_column!], distinct: Boolean): Int! - max: e_utility_sources_max_fields - min: e_utility_sources_min_fields -} - -""" -Boolean expression to filter rows from the table "e_utility_sources". All fields are combined with a logical 'AND'. -""" -input e_utility_sources_bool_exp { - _and: [e_utility_sources_bool_exp!] - _not: e_utility_sources_bool_exp - _or: [e_utility_sources_bool_exp!] - description: String_comparison_exp - utility_lineups: utility_lineups_bool_exp - utility_lineups_aggregate: utility_lineups_aggregate_bool_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_utility_sources" -""" -enum e_utility_sources_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_utility_sources_pkey -} - -enum e_utility_sources_enum { - """Derived from a parsed match demo""" - demo - - """Placed by hand in the web editor""" - editor - - """Copied from another lineup in the library""" - fork - - """Imported from an external source""" - import - - """Recorded in game by the utility practice plugin""" - plugin -} - -""" -Boolean expression to compare columns of type "e_utility_sources_enum". All fields are combined with logical 'AND'. -""" -input e_utility_sources_enum_comparison_exp { - _eq: e_utility_sources_enum - _in: [e_utility_sources_enum!] - _is_null: Boolean - _neq: e_utility_sources_enum - _nin: [e_utility_sources_enum!] -} - -""" -input type for inserting data into table "e_utility_sources" -""" -input e_utility_sources_insert_input { - description: String - utility_lineups: utility_lineups_arr_rel_insert_input - value: String -} - -"""aggregate max on columns""" -type e_utility_sources_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_utility_sources_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_utility_sources" -""" -type e_utility_sources_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_utility_sources!]! -} - -""" -on_conflict condition type for table "e_utility_sources" -""" -input e_utility_sources_on_conflict { - constraint: e_utility_sources_constraint! - update_columns: [e_utility_sources_update_column!]! = [] - where: e_utility_sources_bool_exp -} - -"""Ordering options when selecting data from "e_utility_sources".""" -input e_utility_sources_order_by { - description: order_by - utility_lineups_aggregate: utility_lineups_aggregate_order_by - value: order_by -} - -"""primary key columns input for table: e_utility_sources""" -input e_utility_sources_pk_columns_input { - value: String! -} - -""" -select columns of table "e_utility_sources" -""" -enum e_utility_sources_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_utility_sources" -""" -input e_utility_sources_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_utility_sources" -""" -input e_utility_sources_stream_cursor_input { - """Stream column input with initial value""" - initial_value: e_utility_sources_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input e_utility_sources_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_utility_sources" -""" -enum e_utility_sources_update_column { - """column name""" - description - - """column name""" - value -} - -input e_utility_sources_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_utility_sources_set_input - - """filter the rows which have to be updated""" - where: e_utility_sources_bool_exp! -} - -""" -columns and relationships of "e_utility_techniques" -""" -type e_utility_techniques { - description: String! - - """An array relationship""" - utility_lineups( - """distinct select on columns""" - distinct_on: [utility_lineups_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: [utility_lineups_order_by!] - - """filter the rows returned""" - where: utility_lineups_bool_exp - ): [utility_lineups!]! - - """An aggregate relationship""" - utility_lineups_aggregate( - """distinct select on columns""" - distinct_on: [utility_lineups_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: [utility_lineups_order_by!] - - """filter the rows returned""" - where: utility_lineups_bool_exp - ): utility_lineups_aggregate! - value: String! -} - -""" -aggregated selection of "e_utility_techniques" -""" -type e_utility_techniques_aggregate { - aggregate: e_utility_techniques_aggregate_fields - nodes: [e_utility_techniques!]! -} - -""" -aggregate fields of "e_utility_techniques" -""" -type e_utility_techniques_aggregate_fields { - count(columns: [e_utility_techniques_select_column!], distinct: Boolean): Int! - max: e_utility_techniques_max_fields - min: e_utility_techniques_min_fields -} - -""" -Boolean expression to filter rows from the table "e_utility_techniques". All fields are combined with a logical 'AND'. -""" -input e_utility_techniques_bool_exp { - _and: [e_utility_techniques_bool_exp!] - _not: e_utility_techniques_bool_exp - _or: [e_utility_techniques_bool_exp!] - description: String_comparison_exp - utility_lineups: utility_lineups_bool_exp - utility_lineups_aggregate: utility_lineups_aggregate_bool_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_utility_techniques" -""" -enum e_utility_techniques_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_utility_techniques_pkey -} - -enum e_utility_techniques_enum { - """Crouched, standing still""" - Crouch - - """Crouched jump throw""" - CrouchJump - - """Jump throw from standstill""" - Jump - - """Running jump throw""" - RunJump - - """Running""" - Running - - """Standing still""" - Stationary - - """Walking jump throw""" - WalkJump - - """Holding walk""" - Walking -} - -""" -Boolean expression to compare columns of type "e_utility_techniques_enum". All fields are combined with logical 'AND'. -""" -input e_utility_techniques_enum_comparison_exp { - _eq: e_utility_techniques_enum - _in: [e_utility_techniques_enum!] - _is_null: Boolean - _neq: e_utility_techniques_enum - _nin: [e_utility_techniques_enum!] -} - -""" -input type for inserting data into table "e_utility_techniques" -""" -input e_utility_techniques_insert_input { - description: String - utility_lineups: utility_lineups_arr_rel_insert_input - value: String -} - -"""aggregate max on columns""" -type e_utility_techniques_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_utility_techniques_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_utility_techniques" -""" -type e_utility_techniques_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_utility_techniques!]! -} - -""" -on_conflict condition type for table "e_utility_techniques" -""" -input e_utility_techniques_on_conflict { - constraint: e_utility_techniques_constraint! - update_columns: [e_utility_techniques_update_column!]! = [] - where: e_utility_techniques_bool_exp -} - -"""Ordering options when selecting data from "e_utility_techniques".""" -input e_utility_techniques_order_by { - description: order_by - utility_lineups_aggregate: utility_lineups_aggregate_order_by - value: order_by -} - -"""primary key columns input for table: e_utility_techniques""" -input e_utility_techniques_pk_columns_input { - value: String! -} - -""" -select columns of table "e_utility_techniques" -""" -enum e_utility_techniques_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_utility_techniques" -""" -input e_utility_techniques_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_utility_techniques" -""" -input e_utility_techniques_stream_cursor_input { - """Stream column input with initial value""" - initial_value: e_utility_techniques_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input e_utility_techniques_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_utility_techniques" -""" -enum e_utility_techniques_update_column { - """column name""" - description - - """column name""" - value -} - -input e_utility_techniques_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_utility_techniques_set_input - - """filter the rows which have to be updated""" - where: e_utility_techniques_bool_exp! -} - -""" -columns and relationships of "e_utility_throw_strengths" -""" -type e_utility_throw_strengths { - description: String! - - """An array relationship""" - utility_lineups( - """distinct select on columns""" - distinct_on: [utility_lineups_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: [utility_lineups_order_by!] - - """filter the rows returned""" - where: utility_lineups_bool_exp - ): [utility_lineups!]! - - """An aggregate relationship""" - utility_lineups_aggregate( - """distinct select on columns""" - distinct_on: [utility_lineups_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: [utility_lineups_order_by!] - - """filter the rows returned""" - where: utility_lineups_bool_exp - ): utility_lineups_aggregate! - value: String! -} - -""" -aggregated selection of "e_utility_throw_strengths" -""" -type e_utility_throw_strengths_aggregate { - aggregate: e_utility_throw_strengths_aggregate_fields - nodes: [e_utility_throw_strengths!]! -} - -""" -aggregate fields of "e_utility_throw_strengths" -""" -type e_utility_throw_strengths_aggregate_fields { - count(columns: [e_utility_throw_strengths_select_column!], distinct: Boolean): Int! - max: e_utility_throw_strengths_max_fields - min: e_utility_throw_strengths_min_fields -} - -""" -Boolean expression to filter rows from the table "e_utility_throw_strengths". All fields are combined with a logical 'AND'. -""" -input e_utility_throw_strengths_bool_exp { - _and: [e_utility_throw_strengths_bool_exp!] - _not: e_utility_throw_strengths_bool_exp - _or: [e_utility_throw_strengths_bool_exp!] - description: String_comparison_exp - utility_lineups: utility_lineups_bool_exp - utility_lineups_aggregate: utility_lineups_aggregate_bool_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_utility_throw_strengths" -""" -enum e_utility_throw_strengths_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_utility_throw_strengths_pkey -} - -enum e_utility_throw_strengths_enum { - """Right click""" - Drop - - """Left click""" - Full - - """Left and right click together""" - Half -} - -""" -Boolean expression to compare columns of type "e_utility_throw_strengths_enum". All fields are combined with logical 'AND'. -""" -input e_utility_throw_strengths_enum_comparison_exp { - _eq: e_utility_throw_strengths_enum - _in: [e_utility_throw_strengths_enum!] - _is_null: Boolean - _neq: e_utility_throw_strengths_enum - _nin: [e_utility_throw_strengths_enum!] -} - -""" -input type for inserting data into table "e_utility_throw_strengths" -""" -input e_utility_throw_strengths_insert_input { - description: String - utility_lineups: utility_lineups_arr_rel_insert_input - value: String -} - -"""aggregate max on columns""" -type e_utility_throw_strengths_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_utility_throw_strengths_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_utility_throw_strengths" -""" -type e_utility_throw_strengths_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_utility_throw_strengths!]! -} - -""" -on_conflict condition type for table "e_utility_throw_strengths" -""" -input e_utility_throw_strengths_on_conflict { - constraint: e_utility_throw_strengths_constraint! - update_columns: [e_utility_throw_strengths_update_column!]! = [] - where: e_utility_throw_strengths_bool_exp -} - -"""Ordering options when selecting data from "e_utility_throw_strengths".""" -input e_utility_throw_strengths_order_by { - description: order_by - utility_lineups_aggregate: utility_lineups_aggregate_order_by - value: order_by -} - -"""primary key columns input for table: e_utility_throw_strengths""" -input e_utility_throw_strengths_pk_columns_input { - value: String! -} - -""" -select columns of table "e_utility_throw_strengths" -""" -enum e_utility_throw_strengths_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_utility_throw_strengths" -""" -input e_utility_throw_strengths_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_utility_throw_strengths" -""" -input e_utility_throw_strengths_stream_cursor_input { - """Stream column input with initial value""" - initial_value: e_utility_throw_strengths_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input e_utility_throw_strengths_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_utility_throw_strengths" -""" -enum e_utility_throw_strengths_update_column { - """column name""" - description - - """column name""" - value -} - -input e_utility_throw_strengths_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_utility_throw_strengths_set_input - - """filter the rows which have to be updated""" - where: e_utility_throw_strengths_bool_exp! -} - -""" -columns and relationships of "e_utility_types" -""" -type e_utility_types { - description: String! - - """An array relationship""" - player_utilities( - """distinct select on columns""" - distinct_on: [player_utility_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: [player_utility_order_by!] - - """filter the rows returned""" - where: player_utility_bool_exp - ): [player_utility!]! - - """An aggregate relationship""" - player_utilities_aggregate( - """distinct select on columns""" - distinct_on: [player_utility_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: [player_utility_order_by!] - - """filter the rows returned""" - where: player_utility_bool_exp - ): player_utility_aggregate! - value: String! -} - -""" -aggregated selection of "e_utility_types" -""" -type e_utility_types_aggregate { - aggregate: e_utility_types_aggregate_fields - nodes: [e_utility_types!]! -} - -""" -aggregate fields of "e_utility_types" -""" -type e_utility_types_aggregate_fields { - count(columns: [e_utility_types_select_column!], distinct: Boolean): Int! - max: e_utility_types_max_fields - min: e_utility_types_min_fields -} - -""" -Boolean expression to filter rows from the table "e_utility_types". All fields are combined with a logical 'AND'. -""" -input e_utility_types_bool_exp { - _and: [e_utility_types_bool_exp!] - _not: e_utility_types_bool_exp - _or: [e_utility_types_bool_exp!] - description: String_comparison_exp - player_utilities: player_utility_bool_exp - player_utilities_aggregate: player_utility_aggregate_bool_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_utility_types" -""" -enum e_utility_types_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_utility_types_pkey -} - -enum e_utility_types_enum { - """Decoy""" - Decoy - - """Flash""" - Flash - - """HighExplosive""" - HighExplosive - - """Molotov""" - Molotov - - """Smoke""" - Smoke -} - -""" -Boolean expression to compare columns of type "e_utility_types_enum". All fields are combined with logical 'AND'. -""" -input e_utility_types_enum_comparison_exp { - _eq: e_utility_types_enum - _in: [e_utility_types_enum!] - _is_null: Boolean - _neq: e_utility_types_enum - _nin: [e_utility_types_enum!] -} - -""" -input type for inserting data into table "e_utility_types" -""" -input e_utility_types_insert_input { - description: String - player_utilities: player_utility_arr_rel_insert_input - value: String -} - -"""aggregate max on columns""" -type e_utility_types_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_utility_types_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_utility_types" -""" -type e_utility_types_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_utility_types!]! -} - -""" -on_conflict condition type for table "e_utility_types" -""" -input e_utility_types_on_conflict { - constraint: e_utility_types_constraint! - update_columns: [e_utility_types_update_column!]! = [] - where: e_utility_types_bool_exp -} - -"""Ordering options when selecting data from "e_utility_types".""" -input e_utility_types_order_by { - description: order_by - player_utilities_aggregate: player_utility_aggregate_order_by - value: order_by -} - -"""primary key columns input for table: e_utility_types""" -input e_utility_types_pk_columns_input { - value: String! -} - -""" -select columns of table "e_utility_types" -""" -enum e_utility_types_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_utility_types" -""" -input e_utility_types_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_utility_types" -""" -input 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 -} - -"""Initial value of the column from where the streaming should start""" -input e_utility_types_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_utility_types" -""" -enum e_utility_types_update_column { - """column name""" - description - - """column name""" - value -} - -input e_utility_types_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_utility_types_set_input - - """filter the rows which have to be updated""" - where: e_utility_types_bool_exp! -} - -""" -columns and relationships of "e_utility_visibility" -""" -type e_utility_visibility { - description: String! - - """An array relationship""" - utility_lineups( - """distinct select on columns""" - distinct_on: [utility_lineups_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: [utility_lineups_order_by!] - - """filter the rows returned""" - where: utility_lineups_bool_exp - ): [utility_lineups!]! - - """An aggregate relationship""" - utility_lineups_aggregate( - """distinct select on columns""" - distinct_on: [utility_lineups_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: [utility_lineups_order_by!] - - """filter the rows returned""" - where: utility_lineups_bool_exp - ): utility_lineups_aggregate! - value: String! -} - -""" -aggregated selection of "e_utility_visibility" -""" -type e_utility_visibility_aggregate { - aggregate: e_utility_visibility_aggregate_fields - nodes: [e_utility_visibility!]! -} - -""" -aggregate fields of "e_utility_visibility" -""" -type e_utility_visibility_aggregate_fields { - count(columns: [e_utility_visibility_select_column!], distinct: Boolean): Int! - max: e_utility_visibility_max_fields - min: e_utility_visibility_min_fields -} - -""" -Boolean expression to filter rows from the table "e_utility_visibility". All fields are combined with a logical 'AND'. -""" -input e_utility_visibility_bool_exp { - _and: [e_utility_visibility_bool_exp!] - _not: e_utility_visibility_bool_exp - _or: [e_utility_visibility_bool_exp!] - description: String_comparison_exp - utility_lineups: utility_lineups_bool_exp - utility_lineups_aggregate: utility_lineups_aggregate_bool_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_utility_visibility" -""" -enum e_utility_visibility_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_utility_visibility_pkey -} - -enum e_utility_visibility_enum { - """Only the author""" - Private - - """Anyone""" - Public - - """The author and their team""" - Team -} - -""" -Boolean expression to compare columns of type "e_utility_visibility_enum". All fields are combined with logical 'AND'. -""" -input e_utility_visibility_enum_comparison_exp { - _eq: e_utility_visibility_enum - _in: [e_utility_visibility_enum!] - _is_null: Boolean - _neq: e_utility_visibility_enum - _nin: [e_utility_visibility_enum!] -} - -""" -input type for inserting data into table "e_utility_visibility" -""" -input e_utility_visibility_insert_input { - description: String - utility_lineups: utility_lineups_arr_rel_insert_input - value: String -} - -"""aggregate max on columns""" -type e_utility_visibility_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_utility_visibility_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_utility_visibility" -""" -type e_utility_visibility_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_utility_visibility!]! -} - -""" -on_conflict condition type for table "e_utility_visibility" -""" -input e_utility_visibility_on_conflict { - constraint: e_utility_visibility_constraint! - update_columns: [e_utility_visibility_update_column!]! = [] - where: e_utility_visibility_bool_exp -} - -"""Ordering options when selecting data from "e_utility_visibility".""" -input e_utility_visibility_order_by { - description: order_by - utility_lineups_aggregate: utility_lineups_aggregate_order_by - value: order_by -} - -"""primary key columns input for table: e_utility_visibility""" -input e_utility_visibility_pk_columns_input { - value: String! -} - -""" -select columns of table "e_utility_visibility" -""" -enum e_utility_visibility_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_utility_visibility" -""" -input e_utility_visibility_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_utility_visibility" -""" -input e_utility_visibility_stream_cursor_input { - """Stream column input with initial value""" - initial_value: e_utility_visibility_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input e_utility_visibility_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_utility_visibility" -""" -enum e_utility_visibility_update_column { - """column name""" - description - - """column name""" - value -} - -input e_utility_visibility_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_utility_visibility_set_input - - """filter the rows which have to be updated""" - where: e_utility_visibility_bool_exp! -} - -""" -columns and relationships of "e_veto_pick_types" -""" -type e_veto_pick_types { - description: String! - - """An array relationship""" - match_veto_picks( - """distinct select on columns""" - distinct_on: [match_map_veto_picks_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_map_veto_picks_order_by!] - - """filter the rows returned""" - where: match_map_veto_picks_bool_exp - ): [match_map_veto_picks!]! - - """An aggregate relationship""" - match_veto_picks_aggregate( - """distinct select on columns""" - distinct_on: [match_map_veto_picks_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_map_veto_picks_order_by!] - - """filter the rows returned""" - where: match_map_veto_picks_bool_exp - ): match_map_veto_picks_aggregate! - value: String! -} - -""" -aggregated selection of "e_veto_pick_types" -""" -type e_veto_pick_types_aggregate { - aggregate: e_veto_pick_types_aggregate_fields - nodes: [e_veto_pick_types!]! -} - -""" -aggregate fields of "e_veto_pick_types" -""" -type e_veto_pick_types_aggregate_fields { - count(columns: [e_veto_pick_types_select_column!], distinct: Boolean): Int! - max: e_veto_pick_types_max_fields - min: e_veto_pick_types_min_fields -} - -""" -Boolean expression to filter rows from the table "e_veto_pick_types". All fields are combined with a logical 'AND'. -""" -input e_veto_pick_types_bool_exp { - _and: [e_veto_pick_types_bool_exp!] - _not: e_veto_pick_types_bool_exp - _or: [e_veto_pick_types_bool_exp!] - description: String_comparison_exp - match_veto_picks: match_map_veto_picks_bool_exp - match_veto_picks_aggregate: match_map_veto_picks_aggregate_bool_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_veto_pick_types" -""" -enum e_veto_pick_types_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_veto_pick_type_pkey -} - -enum e_veto_pick_types_enum { - """Ban""" - Ban - - """Decider""" - Decider - - """Pick""" - Pick - - """Side""" - Side -} - -""" -Boolean expression to compare columns of type "e_veto_pick_types_enum". All fields are combined with logical 'AND'. -""" -input e_veto_pick_types_enum_comparison_exp { - _eq: e_veto_pick_types_enum - _in: [e_veto_pick_types_enum!] - _is_null: Boolean - _neq: e_veto_pick_types_enum - _nin: [e_veto_pick_types_enum!] -} - -""" -input type for inserting data into table "e_veto_pick_types" -""" -input e_veto_pick_types_insert_input { - description: String - match_veto_picks: match_map_veto_picks_arr_rel_insert_input - value: String -} - -"""aggregate max on columns""" -type e_veto_pick_types_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_veto_pick_types_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_veto_pick_types" -""" -type e_veto_pick_types_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_veto_pick_types!]! -} - -""" -on_conflict condition type for table "e_veto_pick_types" -""" -input e_veto_pick_types_on_conflict { - constraint: e_veto_pick_types_constraint! - update_columns: [e_veto_pick_types_update_column!]! = [] - where: e_veto_pick_types_bool_exp -} - -"""Ordering options when selecting data from "e_veto_pick_types".""" -input e_veto_pick_types_order_by { - description: order_by - match_veto_picks_aggregate: match_map_veto_picks_aggregate_order_by - value: order_by -} - -"""primary key columns input for table: e_veto_pick_types""" -input e_veto_pick_types_pk_columns_input { - value: String! -} - -""" -select columns of table "e_veto_pick_types" -""" -enum e_veto_pick_types_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_veto_pick_types" -""" -input e_veto_pick_types_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_veto_pick_types" -""" -input e_veto_pick_types_stream_cursor_input { - """Stream column input with initial value""" - initial_value: e_veto_pick_types_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input e_veto_pick_types_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_veto_pick_types" -""" -enum e_veto_pick_types_update_column { - """column name""" - description - - """column name""" - value -} - -input e_veto_pick_types_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_veto_pick_types_set_input - - """filter the rows which have to be updated""" - where: e_veto_pick_types_bool_exp! -} - -""" -columns and relationships of "e_winning_reasons" -""" -type e_winning_reasons { - description: String! - value: String! -} - -""" -aggregated selection of "e_winning_reasons" -""" -type e_winning_reasons_aggregate { - aggregate: e_winning_reasons_aggregate_fields - nodes: [e_winning_reasons!]! -} - -""" -aggregate fields of "e_winning_reasons" -""" -type e_winning_reasons_aggregate_fields { - count(columns: [e_winning_reasons_select_column!], distinct: Boolean): Int! - max: e_winning_reasons_max_fields - min: e_winning_reasons_min_fields -} - -""" -Boolean expression to filter rows from the table "e_winning_reasons". All fields are combined with a logical 'AND'. -""" -input e_winning_reasons_bool_exp { - _and: [e_winning_reasons_bool_exp!] - _not: e_winning_reasons_bool_exp - _or: [e_winning_reasons_bool_exp!] - description: String_comparison_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "e_winning_reasons" -""" -enum e_winning_reasons_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_winning_reasons_pkey -} - -enum e_winning_reasons_enum { - """Bomb Defused""" - BombDefused - - """Bomb Exploded""" - BombExploded - - """CTs Win""" - CTsWin - - """Terrorists Win""" - TerroristsWin - - """Time Ran Out""" - TimeRanOut - - """Unknown""" - Unknown -} - -""" -Boolean expression to compare columns of type "e_winning_reasons_enum". All fields are combined with logical 'AND'. -""" -input e_winning_reasons_enum_comparison_exp { - _eq: e_winning_reasons_enum - _in: [e_winning_reasons_enum!] - _is_null: Boolean - _neq: e_winning_reasons_enum - _nin: [e_winning_reasons_enum!] -} - -""" -input type for inserting data into table "e_winning_reasons" -""" -input e_winning_reasons_insert_input { - description: String - value: String -} - -"""aggregate max on columns""" -type e_winning_reasons_max_fields { - description: String - value: String -} - -"""aggregate min on columns""" -type e_winning_reasons_min_fields { - description: String - value: String -} - -""" -response of any mutation on the table "e_winning_reasons" -""" -type e_winning_reasons_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_winning_reasons!]! -} - -""" -on_conflict condition type for table "e_winning_reasons" -""" -input e_winning_reasons_on_conflict { - constraint: e_winning_reasons_constraint! - update_columns: [e_winning_reasons_update_column!]! = [] - where: e_winning_reasons_bool_exp -} - -"""Ordering options when selecting data from "e_winning_reasons".""" -input e_winning_reasons_order_by { - description: order_by - value: order_by -} - -"""primary key columns input for table: e_winning_reasons""" -input e_winning_reasons_pk_columns_input { - value: String! -} - -""" -select columns of table "e_winning_reasons" -""" -enum e_winning_reasons_select_column { - """column name""" - description - - """column name""" - value -} - -""" -input type for updating data in table "e_winning_reasons" -""" -input e_winning_reasons_set_input { - description: String - value: String -} - -""" -Streaming cursor of the table "e_winning_reasons" -""" -input e_winning_reasons_stream_cursor_input { - """Stream column input with initial value""" - initial_value: e_winning_reasons_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input e_winning_reasons_stream_cursor_value_input { - description: String - value: String -} - -""" -update columns of table "e_winning_reasons" -""" -enum e_winning_reasons_update_column { - """column name""" - description - - """column name""" - value -} - -input e_winning_reasons_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_winning_reasons_set_input - - """filter the rows which have to be updated""" - where: e_winning_reasons_bool_exp! -} - -""" -columns and relationships of "event_match_links" -""" -type event_match_links { - created_at: timestamptz! - - """An object relationship""" - event: events! - event_id: uuid! - - """An object relationship""" - match: matches! - match_id: uuid! -} - -""" -aggregated selection of "event_match_links" -""" -type event_match_links_aggregate { - aggregate: event_match_links_aggregate_fields - nodes: [event_match_links!]! -} - -""" -aggregate fields of "event_match_links" -""" -type event_match_links_aggregate_fields { - count(columns: [event_match_links_select_column!], distinct: Boolean): Int! - max: event_match_links_max_fields - min: event_match_links_min_fields -} - -""" -Boolean expression to filter rows from the table "event_match_links". All fields are combined with a logical 'AND'. -""" -input event_match_links_bool_exp { - _and: [event_match_links_bool_exp!] - _not: event_match_links_bool_exp - _or: [event_match_links_bool_exp!] - created_at: timestamptz_comparison_exp - event: events_bool_exp - event_id: uuid_comparison_exp - match: matches_bool_exp - match_id: uuid_comparison_exp -} - -""" -unique or primary key constraints on table "event_match_links" -""" -enum event_match_links_constraint { - """ - unique or primary key constraint on columns "event_id", "match_id" - """ - event_match_links_pkey -} - -""" -input type for inserting data into table "event_match_links" -""" -input event_match_links_insert_input { - created_at: timestamptz - event: events_obj_rel_insert_input - event_id: uuid - match: matches_obj_rel_insert_input - match_id: uuid -} - -"""aggregate max on columns""" -type event_match_links_max_fields { - created_at: timestamptz - event_id: uuid - match_id: uuid -} - -"""aggregate min on columns""" -type event_match_links_min_fields { - created_at: timestamptz - event_id: uuid - match_id: uuid -} - -""" -response of any mutation on the table "event_match_links" -""" -type event_match_links_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [event_match_links!]! -} - -""" -on_conflict condition type for table "event_match_links" -""" -input event_match_links_on_conflict { - constraint: event_match_links_constraint! - update_columns: [event_match_links_update_column!]! = [] - where: event_match_links_bool_exp -} - -"""Ordering options when selecting data from "event_match_links".""" -input event_match_links_order_by { - created_at: order_by - event: events_order_by - event_id: order_by - match: matches_order_by - match_id: order_by -} - -"""primary key columns input for table: event_match_links""" -input event_match_links_pk_columns_input { - event_id: uuid! - match_id: uuid! -} - -""" -select columns of table "event_match_links" -""" -enum event_match_links_select_column { - """column name""" - created_at - - """column name""" - event_id - - """column name""" - match_id -} - -""" -input type for updating data in table "event_match_links" -""" -input event_match_links_set_input { - created_at: timestamptz - event_id: uuid - match_id: uuid -} - -""" -Streaming cursor of the table "event_match_links" -""" -input event_match_links_stream_cursor_input { - """Stream column input with initial value""" - initial_value: event_match_links_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input event_match_links_stream_cursor_value_input { - created_at: timestamptz - event_id: uuid - match_id: uuid -} - -""" -update columns of table "event_match_links" -""" -enum event_match_links_update_column { - """column name""" - created_at - - """column name""" - event_id - - """column name""" - match_id -} - -input event_match_links_updates { - """sets the columns of the filtered rows to the given values""" - _set: event_match_links_set_input - - """filter the rows which have to be updated""" - where: event_match_links_bool_exp! -} - -""" -columns and relationships of "event_media" -""" -type event_media { - created_at: timestamptz! - - """An object relationship""" - event: events! - event_id: uuid! - external_url: String - filename: String - id: uuid! - mime_type: String - - """An array relationship""" - players( - """distinct select on columns""" - distinct_on: [event_media_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [event_media_players_order_by!] - - """filter the rows returned""" - where: event_media_players_bool_exp - ): [event_media_players!]! - - """An aggregate relationship""" - players_aggregate( - """distinct select on columns""" - distinct_on: [event_media_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [event_media_players_order_by!] - - """filter the rows returned""" - where: event_media_players_bool_exp - ): event_media_players_aggregate! - size: bigint! - thumbnail_filename: String - title: String - - """An object relationship""" - uploader: players! - uploader_steam_id: bigint! -} - -""" -aggregated selection of "event_media" -""" -type event_media_aggregate { - aggregate: event_media_aggregate_fields - nodes: [event_media!]! -} - -input event_media_aggregate_bool_exp { - count: event_media_aggregate_bool_exp_count -} - -input event_media_aggregate_bool_exp_count { - arguments: [event_media_select_column!] - distinct: Boolean - filter: event_media_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "event_media" -""" -type event_media_aggregate_fields { - avg: event_media_avg_fields - count(columns: [event_media_select_column!], distinct: Boolean): Int! - max: event_media_max_fields - min: event_media_min_fields - stddev: event_media_stddev_fields - stddev_pop: event_media_stddev_pop_fields - stddev_samp: event_media_stddev_samp_fields - sum: event_media_sum_fields - var_pop: event_media_var_pop_fields - var_samp: event_media_var_samp_fields - variance: event_media_variance_fields -} - -""" -order by aggregate values of table "event_media" -""" -input event_media_aggregate_order_by { - avg: event_media_avg_order_by - count: order_by - max: event_media_max_order_by - min: event_media_min_order_by - stddev: event_media_stddev_order_by - stddev_pop: event_media_stddev_pop_order_by - stddev_samp: event_media_stddev_samp_order_by - sum: event_media_sum_order_by - var_pop: event_media_var_pop_order_by - var_samp: event_media_var_samp_order_by - variance: event_media_variance_order_by -} - -""" -input type for inserting array relation for remote table "event_media" -""" -input event_media_arr_rel_insert_input { - data: [event_media_insert_input!]! - - """upsert condition""" - on_conflict: event_media_on_conflict -} - -"""aggregate avg on columns""" -type event_media_avg_fields { - size: Float - uploader_steam_id: Float -} - -""" -order by avg() on columns of table "event_media" -""" -input event_media_avg_order_by { - size: order_by - uploader_steam_id: order_by -} - -""" -Boolean expression to filter rows from the table "event_media". All fields are combined with a logical 'AND'. -""" -input event_media_bool_exp { - _and: [event_media_bool_exp!] - _not: event_media_bool_exp - _or: [event_media_bool_exp!] - created_at: timestamptz_comparison_exp - event: events_bool_exp - event_id: uuid_comparison_exp - external_url: String_comparison_exp - filename: String_comparison_exp - id: uuid_comparison_exp - mime_type: String_comparison_exp - players: event_media_players_bool_exp - players_aggregate: event_media_players_aggregate_bool_exp - size: bigint_comparison_exp - thumbnail_filename: String_comparison_exp - title: String_comparison_exp - uploader: players_bool_exp - uploader_steam_id: bigint_comparison_exp -} - -""" -unique or primary key constraints on table "event_media" -""" -enum event_media_constraint { - """ - unique or primary key constraint on columns "filename", "event_id" - """ - event_media_event_id_filename_key - - """ - unique or primary key constraint on columns "id" - """ - event_media_pkey -} - -""" -input type for incrementing numeric columns in table "event_media" -""" -input event_media_inc_input { - size: bigint - uploader_steam_id: bigint -} - -""" -input type for inserting data into table "event_media" -""" -input event_media_insert_input { - created_at: timestamptz - event: events_obj_rel_insert_input - event_id: uuid - external_url: String - filename: String - id: uuid - mime_type: String - players: event_media_players_arr_rel_insert_input - size: bigint - thumbnail_filename: String - title: String - uploader: players_obj_rel_insert_input - uploader_steam_id: bigint -} - -"""aggregate max on columns""" -type event_media_max_fields { - created_at: timestamptz - event_id: uuid - external_url: String - filename: String - id: uuid - mime_type: String - size: bigint - thumbnail_filename: String - title: String - uploader_steam_id: bigint -} - -""" -order by max() on columns of table "event_media" -""" -input event_media_max_order_by { - created_at: order_by - event_id: order_by - external_url: order_by - filename: order_by - id: order_by - mime_type: order_by - size: order_by - thumbnail_filename: order_by - title: order_by - uploader_steam_id: order_by -} - -"""aggregate min on columns""" -type event_media_min_fields { - created_at: timestamptz - event_id: uuid - external_url: String - filename: String - id: uuid - mime_type: String - size: bigint - thumbnail_filename: String - title: String - uploader_steam_id: bigint -} - -""" -order by min() on columns of table "event_media" -""" -input event_media_min_order_by { - created_at: order_by - event_id: order_by - external_url: order_by - filename: order_by - id: order_by - mime_type: order_by - size: order_by - thumbnail_filename: order_by - title: order_by - uploader_steam_id: order_by -} - -""" -response of any mutation on the table "event_media" -""" -type event_media_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [event_media!]! -} - -""" -input type for inserting object relation for remote table "event_media" -""" -input event_media_obj_rel_insert_input { - data: event_media_insert_input! - - """upsert condition""" - on_conflict: event_media_on_conflict -} - -""" -on_conflict condition type for table "event_media" -""" -input event_media_on_conflict { - constraint: event_media_constraint! - update_columns: [event_media_update_column!]! = [] - where: event_media_bool_exp -} - -"""Ordering options when selecting data from "event_media".""" -input event_media_order_by { - created_at: order_by - event: events_order_by - event_id: order_by - external_url: order_by - filename: order_by - id: order_by - mime_type: order_by - players_aggregate: event_media_players_aggregate_order_by - size: order_by - thumbnail_filename: order_by - title: order_by - uploader: players_order_by - uploader_steam_id: order_by -} - -"""primary key columns input for table: event_media""" -input event_media_pk_columns_input { - id: uuid! -} - -""" -columns and relationships of "event_media_players" -""" -type event_media_players { - created_at: timestamptz! - - """An object relationship""" - media: event_media! - media_id: uuid! - - """An object relationship""" - player: players! - steam_id: bigint! -} - -""" -aggregated selection of "event_media_players" -""" -type event_media_players_aggregate { - aggregate: event_media_players_aggregate_fields - nodes: [event_media_players!]! -} - -input event_media_players_aggregate_bool_exp { - count: event_media_players_aggregate_bool_exp_count -} - -input event_media_players_aggregate_bool_exp_count { - arguments: [event_media_players_select_column!] - distinct: Boolean - filter: event_media_players_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "event_media_players" -""" -type event_media_players_aggregate_fields { - avg: event_media_players_avg_fields - count(columns: [event_media_players_select_column!], distinct: Boolean): Int! - max: event_media_players_max_fields - min: event_media_players_min_fields - stddev: event_media_players_stddev_fields - stddev_pop: event_media_players_stddev_pop_fields - stddev_samp: event_media_players_stddev_samp_fields - sum: event_media_players_sum_fields - var_pop: event_media_players_var_pop_fields - var_samp: event_media_players_var_samp_fields - variance: event_media_players_variance_fields -} - -""" -order by aggregate values of table "event_media_players" -""" -input event_media_players_aggregate_order_by { - avg: event_media_players_avg_order_by - count: order_by - max: event_media_players_max_order_by - min: event_media_players_min_order_by - stddev: event_media_players_stddev_order_by - stddev_pop: event_media_players_stddev_pop_order_by - stddev_samp: event_media_players_stddev_samp_order_by - sum: event_media_players_sum_order_by - var_pop: event_media_players_var_pop_order_by - var_samp: event_media_players_var_samp_order_by - variance: event_media_players_variance_order_by -} - -""" -input type for inserting array relation for remote table "event_media_players" -""" -input event_media_players_arr_rel_insert_input { - data: [event_media_players_insert_input!]! - - """upsert condition""" - on_conflict: event_media_players_on_conflict -} - -"""aggregate avg on columns""" -type event_media_players_avg_fields { - steam_id: Float -} - -""" -order by avg() on columns of table "event_media_players" -""" -input event_media_players_avg_order_by { - steam_id: order_by -} - -""" -Boolean expression to filter rows from the table "event_media_players". All fields are combined with a logical 'AND'. -""" -input event_media_players_bool_exp { - _and: [event_media_players_bool_exp!] - _not: event_media_players_bool_exp - _or: [event_media_players_bool_exp!] - created_at: timestamptz_comparison_exp - media: event_media_bool_exp - media_id: uuid_comparison_exp - player: players_bool_exp - steam_id: bigint_comparison_exp -} - -""" -unique or primary key constraints on table "event_media_players" -""" -enum event_media_players_constraint { - """ - unique or primary key constraint on columns "steam_id", "media_id" - """ - event_media_players_pkey -} - -""" -input type for incrementing numeric columns in table "event_media_players" -""" -input event_media_players_inc_input { - steam_id: bigint -} - -""" -input type for inserting data into table "event_media_players" -""" -input event_media_players_insert_input { - created_at: timestamptz - media: event_media_obj_rel_insert_input - media_id: uuid - player: players_obj_rel_insert_input - steam_id: bigint -} - -"""aggregate max on columns""" -type event_media_players_max_fields { - created_at: timestamptz - media_id: uuid - steam_id: bigint -} - -""" -order by max() on columns of table "event_media_players" -""" -input event_media_players_max_order_by { - created_at: order_by - media_id: order_by - steam_id: order_by -} - -"""aggregate min on columns""" -type event_media_players_min_fields { - created_at: timestamptz - media_id: uuid - steam_id: bigint -} - -""" -order by min() on columns of table "event_media_players" -""" -input event_media_players_min_order_by { - created_at: order_by - media_id: order_by - steam_id: order_by -} - -""" -response of any mutation on the table "event_media_players" -""" -type event_media_players_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [event_media_players!]! -} - -""" -on_conflict condition type for table "event_media_players" -""" -input event_media_players_on_conflict { - constraint: event_media_players_constraint! - update_columns: [event_media_players_update_column!]! = [] - where: event_media_players_bool_exp -} - -"""Ordering options when selecting data from "event_media_players".""" -input event_media_players_order_by { - created_at: order_by - media: event_media_order_by - media_id: order_by - player: players_order_by - steam_id: order_by -} - -"""primary key columns input for table: event_media_players""" -input event_media_players_pk_columns_input { - media_id: uuid! - steam_id: bigint! -} - -""" -select columns of table "event_media_players" -""" -enum event_media_players_select_column { - """column name""" - created_at - - """column name""" - media_id - - """column name""" - steam_id -} - -""" -input type for updating data in table "event_media_players" -""" -input event_media_players_set_input { - created_at: timestamptz - media_id: uuid - steam_id: bigint -} - -"""aggregate stddev on columns""" -type event_media_players_stddev_fields { - steam_id: Float -} - -""" -order by stddev() on columns of table "event_media_players" -""" -input event_media_players_stddev_order_by { - steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type event_media_players_stddev_pop_fields { - steam_id: Float -} - -""" -order by stddev_pop() on columns of table "event_media_players" -""" -input event_media_players_stddev_pop_order_by { - steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type event_media_players_stddev_samp_fields { - steam_id: Float -} - -""" -order by stddev_samp() on columns of table "event_media_players" -""" -input event_media_players_stddev_samp_order_by { - steam_id: order_by -} - -""" -Streaming cursor of the table "event_media_players" -""" -input event_media_players_stream_cursor_input { - """Stream column input with initial value""" - initial_value: event_media_players_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input event_media_players_stream_cursor_value_input { - created_at: timestamptz - media_id: uuid - steam_id: bigint -} - -"""aggregate sum on columns""" -type event_media_players_sum_fields { - steam_id: bigint -} - -""" -order by sum() on columns of table "event_media_players" -""" -input event_media_players_sum_order_by { - steam_id: order_by -} - -""" -update columns of table "event_media_players" -""" -enum event_media_players_update_column { - """column name""" - created_at - - """column name""" - media_id - - """column name""" - steam_id -} - -input event_media_players_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: event_media_players_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: event_media_players_set_input - - """filter the rows which have to be updated""" - where: event_media_players_bool_exp! -} - -"""aggregate var_pop on columns""" -type event_media_players_var_pop_fields { - steam_id: Float -} - -""" -order by var_pop() on columns of table "event_media_players" -""" -input event_media_players_var_pop_order_by { - steam_id: order_by -} - -"""aggregate var_samp on columns""" -type event_media_players_var_samp_fields { - steam_id: Float -} - -""" -order by var_samp() on columns of table "event_media_players" -""" -input event_media_players_var_samp_order_by { - steam_id: order_by -} - -"""aggregate variance on columns""" -type event_media_players_variance_fields { - steam_id: Float -} - -""" -order by variance() on columns of table "event_media_players" -""" -input event_media_players_variance_order_by { - steam_id: order_by -} - -""" -select columns of table "event_media" -""" -enum event_media_select_column { - """column name""" - created_at - - """column name""" - event_id - - """column name""" - external_url - - """column name""" - filename - - """column name""" - id - - """column name""" - mime_type - - """column name""" - size - - """column name""" - thumbnail_filename - - """column name""" - title - - """column name""" - uploader_steam_id -} - -""" -input type for updating data in table "event_media" -""" -input event_media_set_input { - created_at: timestamptz - event_id: uuid - external_url: String - filename: String - id: uuid - mime_type: String - size: bigint - thumbnail_filename: String - title: String - uploader_steam_id: bigint -} - -"""aggregate stddev on columns""" -type event_media_stddev_fields { - size: Float - uploader_steam_id: Float -} - -""" -order by stddev() on columns of table "event_media" -""" -input event_media_stddev_order_by { - size: order_by - uploader_steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type event_media_stddev_pop_fields { - size: Float - uploader_steam_id: Float -} - -""" -order by stddev_pop() on columns of table "event_media" -""" -input event_media_stddev_pop_order_by { - size: order_by - uploader_steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type event_media_stddev_samp_fields { - size: Float - uploader_steam_id: Float -} - -""" -order by stddev_samp() on columns of table "event_media" -""" -input event_media_stddev_samp_order_by { - size: order_by - uploader_steam_id: order_by -} - -""" -Streaming cursor of the table "event_media" -""" -input event_media_stream_cursor_input { - """Stream column input with initial value""" - initial_value: event_media_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input event_media_stream_cursor_value_input { - created_at: timestamptz - event_id: uuid - external_url: String - filename: String - id: uuid - mime_type: String - size: bigint - thumbnail_filename: String - title: String - uploader_steam_id: bigint -} - -"""aggregate sum on columns""" -type event_media_sum_fields { - size: bigint - uploader_steam_id: bigint -} - -""" -order by sum() on columns of table "event_media" -""" -input event_media_sum_order_by { - size: order_by - uploader_steam_id: order_by -} - -""" -update columns of table "event_media" -""" -enum event_media_update_column { - """column name""" - created_at - - """column name""" - event_id - - """column name""" - external_url - - """column name""" - filename - - """column name""" - id - - """column name""" - mime_type - - """column name""" - size - - """column name""" - thumbnail_filename - - """column name""" - title - - """column name""" - uploader_steam_id -} - -input event_media_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: event_media_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: event_media_set_input - - """filter the rows which have to be updated""" - where: event_media_bool_exp! -} - -"""aggregate var_pop on columns""" -type event_media_var_pop_fields { - size: Float - uploader_steam_id: Float -} - -""" -order by var_pop() on columns of table "event_media" -""" -input event_media_var_pop_order_by { - size: order_by - uploader_steam_id: order_by -} - -"""aggregate var_samp on columns""" -type event_media_var_samp_fields { - size: Float - uploader_steam_id: Float -} - -""" -order by var_samp() on columns of table "event_media" -""" -input event_media_var_samp_order_by { - size: order_by - uploader_steam_id: order_by -} - -"""aggregate variance on columns""" -type event_media_variance_fields { - size: Float - uploader_steam_id: Float -} - -""" -order by variance() on columns of table "event_media" -""" -input event_media_variance_order_by { - size: order_by - uploader_steam_id: order_by -} - -""" -columns and relationships of "event_organizers" -""" -type event_organizers { - created_at: timestamptz! - - """An object relationship""" - event: events! - event_id: uuid! - - """An object relationship""" - organizer: players! - steam_id: bigint! -} - -""" -aggregated selection of "event_organizers" -""" -type event_organizers_aggregate { - aggregate: event_organizers_aggregate_fields - nodes: [event_organizers!]! -} - -input event_organizers_aggregate_bool_exp { - count: event_organizers_aggregate_bool_exp_count -} - -input event_organizers_aggregate_bool_exp_count { - arguments: [event_organizers_select_column!] - distinct: Boolean - filter: event_organizers_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "event_organizers" -""" -type event_organizers_aggregate_fields { - avg: event_organizers_avg_fields - count(columns: [event_organizers_select_column!], distinct: Boolean): Int! - max: event_organizers_max_fields - min: event_organizers_min_fields - stddev: event_organizers_stddev_fields - stddev_pop: event_organizers_stddev_pop_fields - stddev_samp: event_organizers_stddev_samp_fields - sum: event_organizers_sum_fields - var_pop: event_organizers_var_pop_fields - var_samp: event_organizers_var_samp_fields - variance: event_organizers_variance_fields -} - -""" -order by aggregate values of table "event_organizers" -""" -input event_organizers_aggregate_order_by { - avg: event_organizers_avg_order_by - count: order_by - max: event_organizers_max_order_by - min: event_organizers_min_order_by - stddev: event_organizers_stddev_order_by - stddev_pop: event_organizers_stddev_pop_order_by - stddev_samp: event_organizers_stddev_samp_order_by - sum: event_organizers_sum_order_by - var_pop: event_organizers_var_pop_order_by - var_samp: event_organizers_var_samp_order_by - variance: event_organizers_variance_order_by -} - -""" -input type for inserting array relation for remote table "event_organizers" -""" -input event_organizers_arr_rel_insert_input { - data: [event_organizers_insert_input!]! - - """upsert condition""" - on_conflict: event_organizers_on_conflict -} - -"""aggregate avg on columns""" -type event_organizers_avg_fields { - steam_id: Float -} - -""" -order by avg() on columns of table "event_organizers" -""" -input event_organizers_avg_order_by { - steam_id: order_by -} - -""" -Boolean expression to filter rows from the table "event_organizers". All fields are combined with a logical 'AND'. -""" -input event_organizers_bool_exp { - _and: [event_organizers_bool_exp!] - _not: event_organizers_bool_exp - _or: [event_organizers_bool_exp!] - created_at: timestamptz_comparison_exp - event: events_bool_exp - event_id: uuid_comparison_exp - organizer: players_bool_exp - steam_id: bigint_comparison_exp -} - -""" -unique or primary key constraints on table "event_organizers" -""" -enum event_organizers_constraint { - """ - unique or primary key constraint on columns "steam_id", "event_id" - """ - event_organizers_pkey -} - -""" -input type for incrementing numeric columns in table "event_organizers" -""" -input event_organizers_inc_input { - steam_id: bigint -} - -""" -input type for inserting data into table "event_organizers" -""" -input event_organizers_insert_input { - created_at: timestamptz - event: events_obj_rel_insert_input - event_id: uuid - organizer: players_obj_rel_insert_input - steam_id: bigint -} - -"""aggregate max on columns""" -type event_organizers_max_fields { - created_at: timestamptz - event_id: uuid - steam_id: bigint -} - -""" -order by max() on columns of table "event_organizers" -""" -input event_organizers_max_order_by { - created_at: order_by - event_id: order_by - steam_id: order_by -} - -"""aggregate min on columns""" -type event_organizers_min_fields { - created_at: timestamptz - event_id: uuid - steam_id: bigint -} - -""" -order by min() on columns of table "event_organizers" -""" -input event_organizers_min_order_by { - created_at: order_by - event_id: order_by - steam_id: order_by -} - -""" -response of any mutation on the table "event_organizers" -""" -type event_organizers_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [event_organizers!]! -} - -""" -on_conflict condition type for table "event_organizers" -""" -input event_organizers_on_conflict { - constraint: event_organizers_constraint! - update_columns: [event_organizers_update_column!]! = [] - where: event_organizers_bool_exp -} - -"""Ordering options when selecting data from "event_organizers".""" -input event_organizers_order_by { - created_at: order_by - event: events_order_by - event_id: order_by - organizer: players_order_by - steam_id: order_by -} - -"""primary key columns input for table: event_organizers""" -input event_organizers_pk_columns_input { - event_id: uuid! - steam_id: bigint! -} - -""" -select columns of table "event_organizers" -""" -enum event_organizers_select_column { - """column name""" - created_at - - """column name""" - event_id - - """column name""" - steam_id -} - -""" -input type for updating data in table "event_organizers" -""" -input event_organizers_set_input { - created_at: timestamptz - event_id: uuid - steam_id: bigint -} - -"""aggregate stddev on columns""" -type event_organizers_stddev_fields { - steam_id: Float -} - -""" -order by stddev() on columns of table "event_organizers" -""" -input event_organizers_stddev_order_by { - steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type event_organizers_stddev_pop_fields { - steam_id: Float -} - -""" -order by stddev_pop() on columns of table "event_organizers" -""" -input event_organizers_stddev_pop_order_by { - steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type event_organizers_stddev_samp_fields { - steam_id: Float -} - -""" -order by stddev_samp() on columns of table "event_organizers" -""" -input event_organizers_stddev_samp_order_by { - steam_id: order_by -} - -""" -Streaming cursor of the table "event_organizers" -""" -input event_organizers_stream_cursor_input { - """Stream column input with initial value""" - initial_value: event_organizers_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input event_organizers_stream_cursor_value_input { - created_at: timestamptz - event_id: uuid - steam_id: bigint -} - -"""aggregate sum on columns""" -type event_organizers_sum_fields { - steam_id: bigint -} - -""" -order by sum() on columns of table "event_organizers" -""" -input event_organizers_sum_order_by { - steam_id: order_by -} - -""" -update columns of table "event_organizers" -""" -enum event_organizers_update_column { - """column name""" - created_at - - """column name""" - event_id - - """column name""" - steam_id -} - -input event_organizers_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: event_organizers_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: event_organizers_set_input - - """filter the rows which have to be updated""" - where: event_organizers_bool_exp! -} - -"""aggregate var_pop on columns""" -type event_organizers_var_pop_fields { - steam_id: Float -} - -""" -order by var_pop() on columns of table "event_organizers" -""" -input event_organizers_var_pop_order_by { - steam_id: order_by -} - -"""aggregate var_samp on columns""" -type event_organizers_var_samp_fields { - steam_id: Float -} - -""" -order by var_samp() on columns of table "event_organizers" -""" -input event_organizers_var_samp_order_by { - steam_id: order_by -} - -"""aggregate variance on columns""" -type event_organizers_variance_fields { - steam_id: Float -} - -""" -order by variance() on columns of table "event_organizers" -""" -input event_organizers_variance_order_by { - steam_id: order_by -} - -""" -columns and relationships of "event_players" -""" -type event_players { - created_at: timestamptz! - - """An object relationship""" - event: events! - event_id: uuid! - - """An object relationship""" - player: players! - steam_id: bigint! -} - -""" -aggregated selection of "event_players" -""" -type event_players_aggregate { - aggregate: event_players_aggregate_fields - nodes: [event_players!]! -} - -input event_players_aggregate_bool_exp { - count: event_players_aggregate_bool_exp_count -} - -input event_players_aggregate_bool_exp_count { - arguments: [event_players_select_column!] - distinct: Boolean - filter: event_players_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "event_players" -""" -type event_players_aggregate_fields { - avg: event_players_avg_fields - count(columns: [event_players_select_column!], distinct: Boolean): Int! - max: event_players_max_fields - min: event_players_min_fields - stddev: event_players_stddev_fields - stddev_pop: event_players_stddev_pop_fields - stddev_samp: event_players_stddev_samp_fields - sum: event_players_sum_fields - var_pop: event_players_var_pop_fields - var_samp: event_players_var_samp_fields - variance: event_players_variance_fields -} - -""" -order by aggregate values of table "event_players" -""" -input event_players_aggregate_order_by { - avg: event_players_avg_order_by - count: order_by - max: event_players_max_order_by - min: event_players_min_order_by - stddev: event_players_stddev_order_by - stddev_pop: event_players_stddev_pop_order_by - stddev_samp: event_players_stddev_samp_order_by - sum: event_players_sum_order_by - var_pop: event_players_var_pop_order_by - var_samp: event_players_var_samp_order_by - variance: event_players_variance_order_by -} - -""" -input type for inserting array relation for remote table "event_players" -""" -input event_players_arr_rel_insert_input { - data: [event_players_insert_input!]! - - """upsert condition""" - on_conflict: event_players_on_conflict -} - -"""aggregate avg on columns""" -type event_players_avg_fields { - steam_id: Float -} - -""" -order by avg() on columns of table "event_players" -""" -input event_players_avg_order_by { - steam_id: order_by -} - -""" -Boolean expression to filter rows from the table "event_players". All fields are combined with a logical 'AND'. -""" -input event_players_bool_exp { - _and: [event_players_bool_exp!] - _not: event_players_bool_exp - _or: [event_players_bool_exp!] - created_at: timestamptz_comparison_exp - event: events_bool_exp - event_id: uuid_comparison_exp - player: players_bool_exp - steam_id: bigint_comparison_exp -} - -""" -unique or primary key constraints on table "event_players" -""" -enum event_players_constraint { - """ - unique or primary key constraint on columns "steam_id", "event_id" - """ - event_players_pkey -} - -""" -input type for incrementing numeric columns in table "event_players" -""" -input event_players_inc_input { - steam_id: bigint -} - -""" -input type for inserting data into table "event_players" -""" -input event_players_insert_input { - created_at: timestamptz - event: events_obj_rel_insert_input - event_id: uuid - player: players_obj_rel_insert_input - steam_id: bigint -} - -"""aggregate max on columns""" -type event_players_max_fields { - created_at: timestamptz - event_id: uuid - steam_id: bigint -} - -""" -order by max() on columns of table "event_players" -""" -input event_players_max_order_by { - created_at: order_by - event_id: order_by - steam_id: order_by -} - -"""aggregate min on columns""" -type event_players_min_fields { - created_at: timestamptz - event_id: uuid - steam_id: bigint -} - -""" -order by min() on columns of table "event_players" -""" -input event_players_min_order_by { - created_at: order_by - event_id: order_by - steam_id: order_by -} - -""" -response of any mutation on the table "event_players" -""" -type event_players_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [event_players!]! -} - -""" -on_conflict condition type for table "event_players" -""" -input event_players_on_conflict { - constraint: event_players_constraint! - update_columns: [event_players_update_column!]! = [] - where: event_players_bool_exp -} - -"""Ordering options when selecting data from "event_players".""" -input event_players_order_by { - created_at: order_by - event: events_order_by - event_id: order_by - player: players_order_by - steam_id: order_by -} - -"""primary key columns input for table: event_players""" -input event_players_pk_columns_input { - event_id: uuid! - steam_id: bigint! -} - -""" -select columns of table "event_players" -""" -enum event_players_select_column { - """column name""" - created_at - - """column name""" - event_id - - """column name""" - steam_id -} - -""" -input type for updating data in table "event_players" -""" -input event_players_set_input { - created_at: timestamptz - event_id: uuid - steam_id: bigint -} - -"""aggregate stddev on columns""" -type event_players_stddev_fields { - steam_id: Float -} - -""" -order by stddev() on columns of table "event_players" -""" -input event_players_stddev_order_by { - steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type event_players_stddev_pop_fields { - steam_id: Float -} - -""" -order by stddev_pop() on columns of table "event_players" -""" -input event_players_stddev_pop_order_by { - steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type event_players_stddev_samp_fields { - steam_id: Float -} - -""" -order by stddev_samp() on columns of table "event_players" -""" -input event_players_stddev_samp_order_by { - steam_id: order_by -} - -""" -Streaming cursor of the table "event_players" -""" -input event_players_stream_cursor_input { - """Stream column input with initial value""" - initial_value: event_players_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input event_players_stream_cursor_value_input { - created_at: timestamptz - event_id: uuid - steam_id: bigint -} - -"""aggregate sum on columns""" -type event_players_sum_fields { - steam_id: bigint -} - -""" -order by sum() on columns of table "event_players" -""" -input event_players_sum_order_by { - steam_id: order_by -} - -""" -update columns of table "event_players" -""" -enum event_players_update_column { - """column name""" - created_at - - """column name""" - event_id - - """column name""" - steam_id -} - -input event_players_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: event_players_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: event_players_set_input - - """filter the rows which have to be updated""" - where: event_players_bool_exp! -} - -"""aggregate var_pop on columns""" -type event_players_var_pop_fields { - steam_id: Float -} - -""" -order by var_pop() on columns of table "event_players" -""" -input event_players_var_pop_order_by { - steam_id: order_by -} - -"""aggregate var_samp on columns""" -type event_players_var_samp_fields { - steam_id: Float -} - -""" -order by var_samp() on columns of table "event_players" -""" -input event_players_var_samp_order_by { - steam_id: order_by -} - -"""aggregate variance on columns""" -type event_players_variance_fields { - steam_id: Float -} - -""" -order by variance() on columns of table "event_players" -""" -input event_players_variance_order_by { - steam_id: order_by -} - -""" -columns and relationships of "event_teams" -""" -type event_teams { - created_at: timestamptz! - - """An object relationship""" - event: events! - event_id: uuid! - - """An object relationship""" - team: teams! - team_id: uuid! -} - -""" -aggregated selection of "event_teams" -""" -type event_teams_aggregate { - aggregate: event_teams_aggregate_fields - nodes: [event_teams!]! -} - -input event_teams_aggregate_bool_exp { - count: event_teams_aggregate_bool_exp_count -} - -input event_teams_aggregate_bool_exp_count { - arguments: [event_teams_select_column!] - distinct: Boolean - filter: event_teams_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "event_teams" -""" -type event_teams_aggregate_fields { - count(columns: [event_teams_select_column!], distinct: Boolean): Int! - max: event_teams_max_fields - min: event_teams_min_fields -} - -""" -order by aggregate values of table "event_teams" -""" -input event_teams_aggregate_order_by { - count: order_by - max: event_teams_max_order_by - min: event_teams_min_order_by -} - -""" -input type for inserting array relation for remote table "event_teams" -""" -input event_teams_arr_rel_insert_input { - data: [event_teams_insert_input!]! - - """upsert condition""" - on_conflict: event_teams_on_conflict -} - -""" -Boolean expression to filter rows from the table "event_teams". All fields are combined with a logical 'AND'. -""" -input event_teams_bool_exp { - _and: [event_teams_bool_exp!] - _not: event_teams_bool_exp - _or: [event_teams_bool_exp!] - created_at: timestamptz_comparison_exp - event: events_bool_exp - event_id: uuid_comparison_exp - team: teams_bool_exp - team_id: uuid_comparison_exp -} - -""" -unique or primary key constraints on table "event_teams" -""" -enum event_teams_constraint { - """ - unique or primary key constraint on columns "event_id", "team_id" - """ - event_teams_pkey -} - -""" -input type for inserting data into table "event_teams" -""" -input event_teams_insert_input { - created_at: timestamptz - event: events_obj_rel_insert_input - event_id: uuid - team: teams_obj_rel_insert_input - team_id: uuid -} - -"""aggregate max on columns""" -type event_teams_max_fields { - created_at: timestamptz - event_id: uuid - team_id: uuid -} - -""" -order by max() on columns of table "event_teams" -""" -input event_teams_max_order_by { - created_at: order_by - event_id: order_by - team_id: order_by -} - -"""aggregate min on columns""" -type event_teams_min_fields { - created_at: timestamptz - event_id: uuid - team_id: uuid -} - -""" -order by min() on columns of table "event_teams" -""" -input event_teams_min_order_by { - created_at: order_by - event_id: order_by - team_id: order_by -} - -""" -response of any mutation on the table "event_teams" -""" -type event_teams_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [event_teams!]! -} - -""" -on_conflict condition type for table "event_teams" -""" -input event_teams_on_conflict { - constraint: event_teams_constraint! - update_columns: [event_teams_update_column!]! = [] - where: event_teams_bool_exp -} - -"""Ordering options when selecting data from "event_teams".""" -input event_teams_order_by { - created_at: order_by - event: events_order_by - event_id: order_by - team: teams_order_by - team_id: order_by -} - -"""primary key columns input for table: event_teams""" -input event_teams_pk_columns_input { - event_id: uuid! - team_id: uuid! -} - -""" -select columns of table "event_teams" -""" -enum event_teams_select_column { - """column name""" - created_at - - """column name""" - event_id - - """column name""" - team_id -} - -""" -input type for updating data in table "event_teams" -""" -input event_teams_set_input { - created_at: timestamptz - event_id: uuid - team_id: uuid -} - -""" -Streaming cursor of the table "event_teams" -""" -input event_teams_stream_cursor_input { - """Stream column input with initial value""" - initial_value: event_teams_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input event_teams_stream_cursor_value_input { - created_at: timestamptz - event_id: uuid - team_id: uuid -} - -""" -update columns of table "event_teams" -""" -enum event_teams_update_column { - """column name""" - created_at - - """column name""" - event_id - - """column name""" - team_id -} - -input event_teams_updates { - """sets the columns of the filtered rows to the given values""" - _set: event_teams_set_input - - """filter the rows which have to be updated""" - where: event_teams_bool_exp! -} - -""" -columns and relationships of "event_tournaments" -""" -type event_tournaments { - created_at: timestamptz! - - """An object relationship""" - event: events! - event_id: uuid! - - """An object relationship""" - tournament: tournaments! - tournament_id: uuid! -} - -""" -aggregated selection of "event_tournaments" -""" -type event_tournaments_aggregate { - aggregate: event_tournaments_aggregate_fields - nodes: [event_tournaments!]! -} - -input event_tournaments_aggregate_bool_exp { - count: event_tournaments_aggregate_bool_exp_count -} - -input event_tournaments_aggregate_bool_exp_count { - arguments: [event_tournaments_select_column!] - distinct: Boolean - filter: event_tournaments_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "event_tournaments" -""" -type event_tournaments_aggregate_fields { - count(columns: [event_tournaments_select_column!], distinct: Boolean): Int! - max: event_tournaments_max_fields - min: event_tournaments_min_fields -} - -""" -order by aggregate values of table "event_tournaments" -""" -input event_tournaments_aggregate_order_by { - count: order_by - max: event_tournaments_max_order_by - min: event_tournaments_min_order_by -} - -""" -input type for inserting array relation for remote table "event_tournaments" -""" -input event_tournaments_arr_rel_insert_input { - data: [event_tournaments_insert_input!]! - - """upsert condition""" - on_conflict: event_tournaments_on_conflict -} - -""" -Boolean expression to filter rows from the table "event_tournaments". All fields are combined with a logical 'AND'. -""" -input event_tournaments_bool_exp { - _and: [event_tournaments_bool_exp!] - _not: event_tournaments_bool_exp - _or: [event_tournaments_bool_exp!] - created_at: timestamptz_comparison_exp - event: events_bool_exp - event_id: uuid_comparison_exp - tournament: tournaments_bool_exp - tournament_id: uuid_comparison_exp -} - -""" -unique or primary key constraints on table "event_tournaments" -""" -enum event_tournaments_constraint { - """ - unique or primary key constraint on columns "tournament_id", "event_id" - """ - event_tournaments_pkey -} - -""" -input type for inserting data into table "event_tournaments" -""" -input event_tournaments_insert_input { - created_at: timestamptz - event: events_obj_rel_insert_input - event_id: uuid - tournament: tournaments_obj_rel_insert_input - tournament_id: uuid -} - -"""aggregate max on columns""" -type event_tournaments_max_fields { - created_at: timestamptz - event_id: uuid - tournament_id: uuid -} - -""" -order by max() on columns of table "event_tournaments" -""" -input event_tournaments_max_order_by { - created_at: order_by - event_id: order_by - tournament_id: order_by -} - -"""aggregate min on columns""" -type event_tournaments_min_fields { - created_at: timestamptz - event_id: uuid - tournament_id: uuid -} - -""" -order by min() on columns of table "event_tournaments" -""" -input event_tournaments_min_order_by { - created_at: order_by - event_id: order_by - tournament_id: order_by -} - -""" -response of any mutation on the table "event_tournaments" -""" -type event_tournaments_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [event_tournaments!]! -} - -""" -on_conflict condition type for table "event_tournaments" -""" -input event_tournaments_on_conflict { - constraint: event_tournaments_constraint! - update_columns: [event_tournaments_update_column!]! = [] - where: event_tournaments_bool_exp -} - -"""Ordering options when selecting data from "event_tournaments".""" -input event_tournaments_order_by { - created_at: order_by - event: events_order_by - event_id: order_by - tournament: tournaments_order_by - tournament_id: order_by -} - -"""primary key columns input for table: event_tournaments""" -input event_tournaments_pk_columns_input { - event_id: uuid! - tournament_id: uuid! -} - -""" -select columns of table "event_tournaments" -""" -enum event_tournaments_select_column { - """column name""" - created_at - - """column name""" - event_id - - """column name""" - tournament_id -} - -""" -input type for updating data in table "event_tournaments" -""" -input event_tournaments_set_input { - created_at: timestamptz - event_id: uuid - tournament_id: uuid -} - -""" -Streaming cursor of the table "event_tournaments" -""" -input event_tournaments_stream_cursor_input { - """Stream column input with initial value""" - initial_value: event_tournaments_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input event_tournaments_stream_cursor_value_input { - created_at: timestamptz - event_id: uuid - tournament_id: uuid -} - -""" -update columns of table "event_tournaments" -""" -enum event_tournaments_update_column { - """column name""" - created_at - - """column name""" - event_id - - """column name""" - tournament_id -} - -input event_tournaments_updates { - """sets the columns of the filtered rows to the given values""" - _set: event_tournaments_set_input - - """filter the rows which have to be updated""" - where: event_tournaments_bool_exp! -} - -""" -columns and relationships of "events" -""" -type events { - """An array relationship""" - awards( - """distinct select on columns""" - distinct_on: [award_recipients_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: [award_recipients_order_by!] - - """filter the rows returned""" - where: award_recipients_bool_exp - ): [award_recipients!]! - - """An aggregate relationship""" - awards_aggregate( - """distinct select on columns""" - distinct_on: [award_recipients_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: [award_recipients_order_by!] - - """filter the rows returned""" - where: award_recipients_bool_exp - ): award_recipients_aggregate! - - """An object relationship""" - banner: event_media - banner_media_id: uuid - - """ - A computed field, executes function "can_upload_event_media" - """ - can_upload_media: Boolean - - """ - A computed field, executes function "can_view_event" - """ - can_view: Boolean - created_at: timestamptz! - description: String - ends_at: timestamptz - hide_creator_organizer: Boolean! - id: uuid! - - """ - A computed field, executes function "is_event_organizer" - """ - is_organizer: Boolean - - """An array relationship""" - media( - """distinct select on columns""" - distinct_on: [event_media_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [event_media_order_by!] - - """filter the rows returned""" - where: event_media_bool_exp - ): [event_media!]! - media_access: e_event_media_access_enum! - - """An aggregate relationship""" - media_aggregate( - """distinct select on columns""" - distinct_on: [event_media_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [event_media_order_by!] - - """filter the rows returned""" - where: event_media_bool_exp - ): event_media_aggregate! - name: String! - - """An object relationship""" - organizer: players! - organizer_steam_id: bigint! - - """An array relationship""" - organizers( - """distinct select on columns""" - distinct_on: [event_organizers_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [event_organizers_order_by!] - - """filter the rows returned""" - where: event_organizers_bool_exp - ): [event_organizers!]! - - """An aggregate relationship""" - organizers_aggregate( - """distinct select on columns""" - distinct_on: [event_organizers_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [event_organizers_order_by!] - - """filter the rows returned""" - where: event_organizers_bool_exp - ): event_organizers_aggregate! - - """An array relationship""" - player_stats( - """distinct select on columns""" - distinct_on: [v_event_player_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_event_player_stats_order_by!] - - """filter the rows returned""" - where: v_event_player_stats_bool_exp - ): [v_event_player_stats!]! - - """An aggregate relationship""" - player_stats_aggregate( - """distinct select on columns""" - distinct_on: [v_event_player_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_event_player_stats_order_by!] - - """filter the rows returned""" - where: v_event_player_stats_bool_exp - ): v_event_player_stats_aggregate! - - """An array relationship""" - players( - """distinct select on columns""" - distinct_on: [event_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [event_players_order_by!] - - """filter the rows returned""" - where: event_players_bool_exp - ): [event_players!]! - - """An aggregate relationship""" - players_aggregate( - """distinct select on columns""" - distinct_on: [event_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [event_players_order_by!] - - """filter the rows returned""" - where: event_players_bool_exp - ): event_players_aggregate! - starts_at: timestamptz! - - """An array relationship""" - teams( - """distinct select on columns""" - distinct_on: [event_teams_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [event_teams_order_by!] - - """filter the rows returned""" - where: event_teams_bool_exp - ): [event_teams!]! - - """An aggregate relationship""" - teams_aggregate( - """distinct select on columns""" - distinct_on: [event_teams_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [event_teams_order_by!] - - """filter the rows returned""" - where: event_teams_bool_exp - ): event_teams_aggregate! - - """An array relationship""" - tournaments( - """distinct select on columns""" - distinct_on: [event_tournaments_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [event_tournaments_order_by!] - - """filter the rows returned""" - where: event_tournaments_bool_exp - ): [event_tournaments!]! - - """An aggregate relationship""" - tournaments_aggregate( - """distinct select on columns""" - distinct_on: [event_tournaments_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [event_tournaments_order_by!] - - """filter the rows returned""" - where: event_tournaments_bool_exp - ): event_tournaments_aggregate! - visibility: e_event_visibility_enum! -} - -""" -aggregated selection of "events" -""" -type events_aggregate { - aggregate: events_aggregate_fields - nodes: [events!]! -} - -""" -aggregate fields of "events" -""" -type events_aggregate_fields { - avg: events_avg_fields - count(columns: [events_select_column!], distinct: Boolean): Int! - max: events_max_fields - min: events_min_fields - stddev: events_stddev_fields - stddev_pop: events_stddev_pop_fields - stddev_samp: events_stddev_samp_fields - sum: events_sum_fields - var_pop: events_var_pop_fields - var_samp: events_var_samp_fields - variance: events_variance_fields -} - -"""aggregate avg on columns""" -type events_avg_fields { - organizer_steam_id: Float -} - -""" -Boolean expression to filter rows from the table "events". All fields are combined with a logical 'AND'. -""" -input events_bool_exp { - _and: [events_bool_exp!] - _not: events_bool_exp - _or: [events_bool_exp!] - awards: award_recipients_bool_exp - awards_aggregate: award_recipients_aggregate_bool_exp - banner: event_media_bool_exp - banner_media_id: uuid_comparison_exp - can_upload_media: Boolean_comparison_exp - can_view: Boolean_comparison_exp - created_at: timestamptz_comparison_exp - description: String_comparison_exp - ends_at: timestamptz_comparison_exp - hide_creator_organizer: Boolean_comparison_exp - id: uuid_comparison_exp - is_organizer: Boolean_comparison_exp - media: event_media_bool_exp - media_access: e_event_media_access_enum_comparison_exp - media_aggregate: event_media_aggregate_bool_exp - name: String_comparison_exp - organizer: players_bool_exp - organizer_steam_id: bigint_comparison_exp - organizers: event_organizers_bool_exp - organizers_aggregate: event_organizers_aggregate_bool_exp - player_stats: v_event_player_stats_bool_exp - player_stats_aggregate: v_event_player_stats_aggregate_bool_exp - players: event_players_bool_exp - players_aggregate: event_players_aggregate_bool_exp - starts_at: timestamptz_comparison_exp - teams: event_teams_bool_exp - teams_aggregate: event_teams_aggregate_bool_exp - tournaments: event_tournaments_bool_exp - tournaments_aggregate: event_tournaments_aggregate_bool_exp - visibility: e_event_visibility_enum_comparison_exp -} - -""" -unique or primary key constraints on table "events" -""" -enum events_constraint { - """ - unique or primary key constraint on columns "id" - """ - events_pkey -} - -""" -input type for incrementing numeric columns in table "events" -""" -input events_inc_input { - organizer_steam_id: bigint -} - -""" -input type for inserting data into table "events" -""" -input events_insert_input { - awards: award_recipients_arr_rel_insert_input - banner: event_media_obj_rel_insert_input - banner_media_id: uuid - created_at: timestamptz - description: String - ends_at: timestamptz - hide_creator_organizer: Boolean - id: uuid - media: event_media_arr_rel_insert_input - media_access: e_event_media_access_enum - name: String - organizer: players_obj_rel_insert_input - organizer_steam_id: bigint - organizers: event_organizers_arr_rel_insert_input - player_stats: v_event_player_stats_arr_rel_insert_input - players: event_players_arr_rel_insert_input - starts_at: timestamptz - teams: event_teams_arr_rel_insert_input - tournaments: event_tournaments_arr_rel_insert_input - visibility: e_event_visibility_enum -} - -"""aggregate max on columns""" -type events_max_fields { - banner_media_id: uuid - created_at: timestamptz - description: String - ends_at: timestamptz - id: uuid - name: String - organizer_steam_id: bigint - starts_at: timestamptz -} - -"""aggregate min on columns""" -type events_min_fields { - banner_media_id: uuid - created_at: timestamptz - description: String - ends_at: timestamptz - id: uuid - name: String - organizer_steam_id: bigint - starts_at: timestamptz -} - -""" -response of any mutation on the table "events" -""" -type events_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [events!]! -} - -""" -input type for inserting object relation for remote table "events" -""" -input events_obj_rel_insert_input { - data: events_insert_input! - - """upsert condition""" - on_conflict: events_on_conflict -} - -""" -on_conflict condition type for table "events" -""" -input events_on_conflict { - constraint: events_constraint! - update_columns: [events_update_column!]! = [] - where: events_bool_exp -} - -"""Ordering options when selecting data from "events".""" -input events_order_by { - awards_aggregate: award_recipients_aggregate_order_by - banner: event_media_order_by - banner_media_id: order_by - can_upload_media: order_by - can_view: order_by - created_at: order_by - description: order_by - ends_at: order_by - hide_creator_organizer: order_by - id: order_by - is_organizer: order_by - media_access: order_by - media_aggregate: event_media_aggregate_order_by - name: order_by - organizer: players_order_by - organizer_steam_id: order_by - organizers_aggregate: event_organizers_aggregate_order_by - player_stats_aggregate: v_event_player_stats_aggregate_order_by - players_aggregate: event_players_aggregate_order_by - starts_at: order_by - teams_aggregate: event_teams_aggregate_order_by - tournaments_aggregate: event_tournaments_aggregate_order_by - visibility: order_by -} - -"""primary key columns input for table: events""" -input events_pk_columns_input { - id: uuid! -} - -""" -select columns of table "events" -""" -enum events_select_column { - """column name""" - banner_media_id - - """column name""" - created_at - - """column name""" - description - - """column name""" - ends_at - - """column name""" - hide_creator_organizer - - """column name""" - id - - """column name""" - media_access - - """column name""" - name - - """column name""" - organizer_steam_id - - """column name""" - starts_at - - """column name""" - visibility -} - -""" -input type for updating data in table "events" -""" -input events_set_input { - banner_media_id: uuid - created_at: timestamptz - description: String - ends_at: timestamptz - hide_creator_organizer: Boolean - id: uuid - media_access: e_event_media_access_enum - name: String - organizer_steam_id: bigint - starts_at: timestamptz - visibility: e_event_visibility_enum -} - -"""aggregate stddev on columns""" -type events_stddev_fields { - organizer_steam_id: Float -} - -"""aggregate stddev_pop on columns""" -type events_stddev_pop_fields { - organizer_steam_id: Float -} - -"""aggregate stddev_samp on columns""" -type events_stddev_samp_fields { - organizer_steam_id: Float -} - -""" -Streaming cursor of the table "events" -""" -input events_stream_cursor_input { - """Stream column input with initial value""" - initial_value: events_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input events_stream_cursor_value_input { - banner_media_id: uuid - created_at: timestamptz - description: String - ends_at: timestamptz - hide_creator_organizer: Boolean - id: uuid - media_access: e_event_media_access_enum - name: String - organizer_steam_id: bigint - starts_at: timestamptz - visibility: e_event_visibility_enum -} - -"""aggregate sum on columns""" -type events_sum_fields { - organizer_steam_id: bigint -} - -""" -update columns of table "events" -""" -enum events_update_column { - """column name""" - banner_media_id - - """column name""" - created_at - - """column name""" - description - - """column name""" - ends_at - - """column name""" - hide_creator_organizer - - """column name""" - id - - """column name""" - media_access - - """column name""" - name - - """column name""" - organizer_steam_id - - """column name""" - starts_at - - """column name""" - visibility -} - -input events_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: events_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: events_set_input - - """filter the rows which have to be updated""" - where: events_bool_exp! -} - -"""aggregate var_pop on columns""" -type events_var_pop_fields { - organizer_steam_id: Float -} - -"""aggregate var_samp on columns""" -type events_var_samp_fields { - organizer_steam_id: Float -} - -"""aggregate variance on columns""" -type events_variance_fields { - organizer_steam_id: Float -} - -scalar float8 - -""" -Boolean expression to compare columns of type "float8". All fields are combined with logical 'AND'. -""" -input float8_comparison_exp { - _eq: float8 - _gt: float8 - _gte: float8 - _in: [float8!] - _is_null: Boolean - _lt: float8 - _lte: float8 - _neq: float8 - _nin: [float8!] -} - -""" -columns and relationships of "friends" -""" -type friends { - """An object relationship""" - e_status: e_friend_status! - other_player_steam_id: bigint! - player_steam_id: bigint! - status: e_friend_status_enum! -} - -""" -aggregated selection of "friends" -""" -type friends_aggregate { - aggregate: friends_aggregate_fields - nodes: [friends!]! -} - -""" -aggregate fields of "friends" -""" -type friends_aggregate_fields { - avg: friends_avg_fields - count(columns: [friends_select_column!], distinct: Boolean): Int! - max: friends_max_fields - min: friends_min_fields - stddev: friends_stddev_fields - stddev_pop: friends_stddev_pop_fields - stddev_samp: friends_stddev_samp_fields - sum: friends_sum_fields - var_pop: friends_var_pop_fields - var_samp: friends_var_samp_fields - variance: friends_variance_fields -} - -"""aggregate avg on columns""" -type friends_avg_fields { - other_player_steam_id: Float - player_steam_id: Float -} - -""" -Boolean expression to filter rows from the table "friends". All fields are combined with a logical 'AND'. -""" -input friends_bool_exp { - _and: [friends_bool_exp!] - _not: friends_bool_exp - _or: [friends_bool_exp!] - e_status: e_friend_status_bool_exp - other_player_steam_id: bigint_comparison_exp - player_steam_id: bigint_comparison_exp - status: e_friend_status_enum_comparison_exp -} - -""" -unique or primary key constraints on table "friends" -""" -enum friends_constraint { - """ - unique or primary key constraint on columns "player_steam_id", "other_player_steam_id" - """ - friends_pkey - - """ - unique or primary key constraint on columns "player_steam_id", "other_player_steam_id" - """ - friends_player_steam_id_other_player_steam_id_key -} - -""" -input type for incrementing numeric columns in table "friends" -""" -input friends_inc_input { - other_player_steam_id: bigint - player_steam_id: bigint -} - -""" -input type for inserting data into table "friends" -""" -input friends_insert_input { - e_status: e_friend_status_obj_rel_insert_input - other_player_steam_id: bigint - player_steam_id: bigint - status: e_friend_status_enum -} - -"""aggregate max on columns""" -type friends_max_fields { - other_player_steam_id: bigint - player_steam_id: bigint -} - -"""aggregate min on columns""" -type friends_min_fields { - other_player_steam_id: bigint - player_steam_id: bigint -} - -""" -response of any mutation on the table "friends" -""" -type friends_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [friends!]! -} - -""" -on_conflict condition type for table "friends" -""" -input friends_on_conflict { - constraint: friends_constraint! - update_columns: [friends_update_column!]! = [] - where: friends_bool_exp -} - -"""Ordering options when selecting data from "friends".""" -input friends_order_by { - e_status: e_friend_status_order_by - other_player_steam_id: order_by - player_steam_id: order_by - status: order_by -} - -"""primary key columns input for table: friends""" -input friends_pk_columns_input { - other_player_steam_id: bigint! - player_steam_id: bigint! -} - -""" -select columns of table "friends" -""" -enum friends_select_column { - """column name""" - other_player_steam_id - - """column name""" - player_steam_id - - """column name""" - status -} - -""" -input type for updating data in table "friends" -""" -input friends_set_input { - other_player_steam_id: bigint - player_steam_id: bigint - status: e_friend_status_enum -} - -"""aggregate stddev on columns""" -type friends_stddev_fields { - other_player_steam_id: Float - player_steam_id: Float -} - -"""aggregate stddev_pop on columns""" -type friends_stddev_pop_fields { - other_player_steam_id: Float - player_steam_id: Float -} - -"""aggregate stddev_samp on columns""" -type friends_stddev_samp_fields { - other_player_steam_id: Float - player_steam_id: Float -} - -""" -Streaming cursor of the table "friends" -""" -input friends_stream_cursor_input { - """Stream column input with initial value""" - initial_value: friends_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input friends_stream_cursor_value_input { - other_player_steam_id: bigint - player_steam_id: bigint - status: e_friend_status_enum -} - -"""aggregate sum on columns""" -type friends_sum_fields { - other_player_steam_id: bigint - player_steam_id: bigint -} - -""" -update columns of table "friends" -""" -enum friends_update_column { - """column name""" - other_player_steam_id - - """column name""" - player_steam_id - - """column name""" - status -} - -input friends_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: friends_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: friends_set_input - - """filter the rows which have to be updated""" - where: friends_bool_exp! -} - -"""aggregate var_pop on columns""" -type friends_var_pop_fields { - other_player_steam_id: Float - player_steam_id: Float -} - -"""aggregate var_samp on columns""" -type friends_var_samp_fields { - other_player_steam_id: Float - player_steam_id: Float -} - -"""aggregate variance on columns""" -type friends_variance_fields { - other_player_steam_id: Float - player_steam_id: Float -} - -""" -columns and relationships of "game_mode_plugins" -""" -type game_mode_plugins { - config( - """JSON select path""" - path: String - ): jsonb - - """An object relationship""" - game_mode: game_modes! - game_mode_id: uuid! - load_order: Int! - - """An object relationship""" - plugin: game_plugins! - plugin_slug: String! - required: Boolean! -} - -""" -aggregated selection of "game_mode_plugins" -""" -type game_mode_plugins_aggregate { - aggregate: game_mode_plugins_aggregate_fields - nodes: [game_mode_plugins!]! -} - -input game_mode_plugins_aggregate_bool_exp { - bool_and: game_mode_plugins_aggregate_bool_exp_bool_and - bool_or: game_mode_plugins_aggregate_bool_exp_bool_or - count: game_mode_plugins_aggregate_bool_exp_count -} - -input game_mode_plugins_aggregate_bool_exp_bool_and { - arguments: game_mode_plugins_select_column_game_mode_plugins_aggregate_bool_exp_bool_and_arguments_columns! - distinct: Boolean - filter: game_mode_plugins_bool_exp - predicate: Boolean_comparison_exp! -} - -input game_mode_plugins_aggregate_bool_exp_bool_or { - arguments: game_mode_plugins_select_column_game_mode_plugins_aggregate_bool_exp_bool_or_arguments_columns! - distinct: Boolean - filter: game_mode_plugins_bool_exp - predicate: Boolean_comparison_exp! -} - -input game_mode_plugins_aggregate_bool_exp_count { - arguments: [game_mode_plugins_select_column!] - distinct: Boolean - filter: game_mode_plugins_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "game_mode_plugins" -""" -type game_mode_plugins_aggregate_fields { - avg: game_mode_plugins_avg_fields - count(columns: [game_mode_plugins_select_column!], distinct: Boolean): Int! - max: game_mode_plugins_max_fields - min: game_mode_plugins_min_fields - stddev: game_mode_plugins_stddev_fields - stddev_pop: game_mode_plugins_stddev_pop_fields - stddev_samp: game_mode_plugins_stddev_samp_fields - sum: game_mode_plugins_sum_fields - var_pop: game_mode_plugins_var_pop_fields - var_samp: game_mode_plugins_var_samp_fields - variance: game_mode_plugins_variance_fields -} - -""" -order by aggregate values of table "game_mode_plugins" -""" -input game_mode_plugins_aggregate_order_by { - avg: game_mode_plugins_avg_order_by - count: order_by - max: game_mode_plugins_max_order_by - min: game_mode_plugins_min_order_by - stddev: game_mode_plugins_stddev_order_by - stddev_pop: game_mode_plugins_stddev_pop_order_by - stddev_samp: game_mode_plugins_stddev_samp_order_by - sum: game_mode_plugins_sum_order_by - var_pop: game_mode_plugins_var_pop_order_by - var_samp: game_mode_plugins_var_samp_order_by - variance: game_mode_plugins_variance_order_by -} - -"""append existing jsonb value of filtered columns with new jsonb value""" -input game_mode_plugins_append_input { - config: jsonb -} - -""" -input type for inserting array relation for remote table "game_mode_plugins" -""" -input game_mode_plugins_arr_rel_insert_input { - data: [game_mode_plugins_insert_input!]! - - """upsert condition""" - on_conflict: game_mode_plugins_on_conflict -} - -"""aggregate avg on columns""" -type game_mode_plugins_avg_fields { - load_order: Float -} - -""" -order by avg() on columns of table "game_mode_plugins" -""" -input game_mode_plugins_avg_order_by { - load_order: order_by -} - -""" -Boolean expression to filter rows from the table "game_mode_plugins". All fields are combined with a logical 'AND'. -""" -input game_mode_plugins_bool_exp { - _and: [game_mode_plugins_bool_exp!] - _not: game_mode_plugins_bool_exp - _or: [game_mode_plugins_bool_exp!] - config: jsonb_comparison_exp - game_mode: game_modes_bool_exp - game_mode_id: uuid_comparison_exp - load_order: Int_comparison_exp - plugin: game_plugins_bool_exp - plugin_slug: String_comparison_exp - required: Boolean_comparison_exp -} - -""" -unique or primary key constraints on table "game_mode_plugins" -""" -enum game_mode_plugins_constraint { - """ - unique or primary key constraint on columns "game_mode_id", "plugin_slug" - """ - game_mode_plugins_pkey -} - -""" -delete the field or element with specified path (for JSON arrays, negative integers count from the end) -""" -input game_mode_plugins_delete_at_path_input { - config: [String!] -} - -""" -delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array -""" -input game_mode_plugins_delete_elem_input { - config: Int -} - -""" -delete key/value pair or string element. key/value pairs are matched based on their key value -""" -input game_mode_plugins_delete_key_input { - config: String -} - -""" -input type for incrementing numeric columns in table "game_mode_plugins" -""" -input game_mode_plugins_inc_input { - load_order: Int -} - -""" -input type for inserting data into table "game_mode_plugins" -""" -input game_mode_plugins_insert_input { - config: jsonb - game_mode: game_modes_obj_rel_insert_input - game_mode_id: uuid - load_order: Int - plugin: game_plugins_obj_rel_insert_input - plugin_slug: String - required: Boolean -} - -"""aggregate max on columns""" -type game_mode_plugins_max_fields { - game_mode_id: uuid - load_order: Int - plugin_slug: String -} - -""" -order by max() on columns of table "game_mode_plugins" -""" -input game_mode_plugins_max_order_by { - game_mode_id: order_by - load_order: order_by - plugin_slug: order_by -} - -"""aggregate min on columns""" -type game_mode_plugins_min_fields { - game_mode_id: uuid - load_order: Int - plugin_slug: String -} - -""" -order by min() on columns of table "game_mode_plugins" -""" -input game_mode_plugins_min_order_by { - game_mode_id: order_by - load_order: order_by - plugin_slug: order_by -} - -""" -response of any mutation on the table "game_mode_plugins" -""" -type game_mode_plugins_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [game_mode_plugins!]! -} - -""" -on_conflict condition type for table "game_mode_plugins" -""" -input game_mode_plugins_on_conflict { - constraint: game_mode_plugins_constraint! - update_columns: [game_mode_plugins_update_column!]! = [] - where: game_mode_plugins_bool_exp -} - -"""Ordering options when selecting data from "game_mode_plugins".""" -input game_mode_plugins_order_by { - config: order_by - game_mode: game_modes_order_by - game_mode_id: order_by - load_order: order_by - plugin: game_plugins_order_by - plugin_slug: order_by - required: order_by -} - -"""primary key columns input for table: game_mode_plugins""" -input game_mode_plugins_pk_columns_input { - game_mode_id: uuid! - plugin_slug: String! -} - -"""prepend existing jsonb value of filtered columns with new jsonb value""" -input game_mode_plugins_prepend_input { - config: jsonb -} - -""" -select columns of table "game_mode_plugins" -""" -enum game_mode_plugins_select_column { - """column name""" - config - - """column name""" - game_mode_id - - """column name""" - load_order - - """column name""" - plugin_slug - - """column name""" - required -} - -""" -select "game_mode_plugins_aggregate_bool_exp_bool_and_arguments_columns" columns of table "game_mode_plugins" -""" -enum game_mode_plugins_select_column_game_mode_plugins_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - required -} - -""" -select "game_mode_plugins_aggregate_bool_exp_bool_or_arguments_columns" columns of table "game_mode_plugins" -""" -enum game_mode_plugins_select_column_game_mode_plugins_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - required -} - -""" -input type for updating data in table "game_mode_plugins" -""" -input game_mode_plugins_set_input { - config: jsonb - game_mode_id: uuid - load_order: Int - plugin_slug: String - required: Boolean -} - -"""aggregate stddev on columns""" -type game_mode_plugins_stddev_fields { - load_order: Float -} - -""" -order by stddev() on columns of table "game_mode_plugins" -""" -input game_mode_plugins_stddev_order_by { - load_order: order_by -} - -"""aggregate stddev_pop on columns""" -type game_mode_plugins_stddev_pop_fields { - load_order: Float -} - -""" -order by stddev_pop() on columns of table "game_mode_plugins" -""" -input game_mode_plugins_stddev_pop_order_by { - load_order: order_by -} - -"""aggregate stddev_samp on columns""" -type game_mode_plugins_stddev_samp_fields { - load_order: Float -} - -""" -order by stddev_samp() on columns of table "game_mode_plugins" -""" -input game_mode_plugins_stddev_samp_order_by { - load_order: order_by -} - -""" -Streaming cursor of the table "game_mode_plugins" -""" -input game_mode_plugins_stream_cursor_input { - """Stream column input with initial value""" - initial_value: game_mode_plugins_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input game_mode_plugins_stream_cursor_value_input { - config: jsonb - game_mode_id: uuid - load_order: Int - plugin_slug: String - required: Boolean -} - -"""aggregate sum on columns""" -type game_mode_plugins_sum_fields { - load_order: Int -} - -""" -order by sum() on columns of table "game_mode_plugins" -""" -input game_mode_plugins_sum_order_by { - load_order: order_by -} - -""" -update columns of table "game_mode_plugins" -""" -enum game_mode_plugins_update_column { - """column name""" - config - - """column name""" - game_mode_id - - """column name""" - load_order - - """column name""" - plugin_slug - - """column name""" - required -} - -input game_mode_plugins_updates { - """append existing jsonb value of filtered columns with new jsonb value""" - _append: game_mode_plugins_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: game_mode_plugins_delete_at_path_input - - """ - delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array - """ - _delete_elem: game_mode_plugins_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: game_mode_plugins_delete_key_input - - """increments the numeric columns with given value of the filtered values""" - _inc: game_mode_plugins_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: game_mode_plugins_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: game_mode_plugins_set_input - - """filter the rows which have to be updated""" - where: game_mode_plugins_bool_exp! -} - -"""aggregate var_pop on columns""" -type game_mode_plugins_var_pop_fields { - load_order: Float -} - -""" -order by var_pop() on columns of table "game_mode_plugins" -""" -input game_mode_plugins_var_pop_order_by { - load_order: order_by -} - -"""aggregate var_samp on columns""" -type game_mode_plugins_var_samp_fields { - load_order: Float -} - -""" -order by var_samp() on columns of table "game_mode_plugins" -""" -input game_mode_plugins_var_samp_order_by { - load_order: order_by -} - -"""aggregate variance on columns""" -type game_mode_plugins_variance_fields { - load_order: Float -} - -""" -order by variance() on columns of table "game_mode_plugins" -""" -input game_mode_plugins_variance_order_by { - load_order: order_by -} - -""" -columns and relationships of "game_modes" -""" -type game_modes { - archived_at: timestamptz - cfg: String - competitive_safe: Boolean! - created_at: timestamptz! - description: String - enabled: Boolean! - extra_game_params: String - icon: String - id: uuid! - - """An array relationship""" - match_options( - """distinct select on columns""" - distinct_on: [match_options_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_options_order_by!] - - """filter the rows returned""" - where: match_options_bool_exp - ): [match_options!]! - - """An aggregate relationship""" - match_options_aggregate( - """distinct select on columns""" - distinct_on: [match_options_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_options_order_by!] - - """filter the rows returned""" - where: match_options_bool_exp - ): match_options_aggregate! - name: String! - - """An array relationship""" - plugins( - """distinct select on columns""" - distinct_on: [game_mode_plugins_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [game_mode_plugins_order_by!] - - """filter the rows returned""" - where: game_mode_plugins_bool_exp - ): [game_mode_plugins!]! - - """An aggregate relationship""" - plugins_aggregate( - """distinct select on columns""" - distinct_on: [game_mode_plugins_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [game_mode_plugins_order_by!] - - """filter the rows returned""" - where: game_mode_plugins_bool_exp - ): game_mode_plugins_aggregate! - - """Plugins in this mode with no build for the deployment's runtime""" - runtime_conflicts( - """JSON select path""" - path: String - ): jsonb - slug: String! - - """ - Frameworks every plugin in this mode publishes for; empty means the selection cannot run - """ - supported_runtimes( - """JSON select path""" - path: String - ): jsonb - updated_at: timestamptz! -} - -""" -aggregated selection of "game_modes" -""" -type game_modes_aggregate { - aggregate: game_modes_aggregate_fields - nodes: [game_modes!]! -} - -""" -aggregate fields of "game_modes" -""" -type game_modes_aggregate_fields { - count(columns: [game_modes_select_column!], distinct: Boolean): Int! - max: game_modes_max_fields - min: game_modes_min_fields -} - -""" -Boolean expression to filter rows from the table "game_modes". All fields are combined with a logical 'AND'. -""" -input game_modes_bool_exp { - _and: [game_modes_bool_exp!] - _not: game_modes_bool_exp - _or: [game_modes_bool_exp!] - archived_at: timestamptz_comparison_exp - cfg: String_comparison_exp - competitive_safe: Boolean_comparison_exp - created_at: timestamptz_comparison_exp - description: String_comparison_exp - enabled: Boolean_comparison_exp - extra_game_params: String_comparison_exp - icon: String_comparison_exp - id: uuid_comparison_exp - match_options: match_options_bool_exp - match_options_aggregate: match_options_aggregate_bool_exp - name: String_comparison_exp - plugins: game_mode_plugins_bool_exp - plugins_aggregate: game_mode_plugins_aggregate_bool_exp - runtime_conflicts: jsonb_comparison_exp - slug: String_comparison_exp - supported_runtimes: jsonb_comparison_exp - updated_at: timestamptz_comparison_exp -} - -""" -unique or primary key constraints on table "game_modes" -""" -enum game_modes_constraint { - """ - unique or primary key constraint on columns "id" - """ - game_modes_pkey - - """ - unique or primary key constraint on columns "slug" - """ - game_modes_slug_key -} - -""" -input type for inserting data into table "game_modes" -""" -input game_modes_insert_input { - archived_at: timestamptz - cfg: String - competitive_safe: Boolean - created_at: timestamptz - description: String - enabled: Boolean - extra_game_params: String - icon: String - id: uuid - match_options: match_options_arr_rel_insert_input - name: String - plugins: game_mode_plugins_arr_rel_insert_input - slug: String - updated_at: timestamptz -} - -"""aggregate max on columns""" -type game_modes_max_fields { - archived_at: timestamptz - cfg: String - created_at: timestamptz - description: String - extra_game_params: String - icon: String - id: uuid - name: String - slug: String - updated_at: timestamptz -} - -"""aggregate min on columns""" -type game_modes_min_fields { - archived_at: timestamptz - cfg: String - created_at: timestamptz - description: String - extra_game_params: String - icon: String - id: uuid - name: String - slug: String - updated_at: timestamptz -} - -""" -response of any mutation on the table "game_modes" -""" -type game_modes_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [game_modes!]! -} - -""" -input type for inserting object relation for remote table "game_modes" -""" -input game_modes_obj_rel_insert_input { - data: game_modes_insert_input! - - """upsert condition""" - on_conflict: game_modes_on_conflict -} - -""" -on_conflict condition type for table "game_modes" -""" -input game_modes_on_conflict { - constraint: game_modes_constraint! - update_columns: [game_modes_update_column!]! = [] - where: game_modes_bool_exp -} - -"""Ordering options when selecting data from "game_modes".""" -input game_modes_order_by { - archived_at: order_by - cfg: order_by - competitive_safe: order_by - created_at: order_by - description: order_by - enabled: order_by - extra_game_params: order_by - icon: order_by - id: order_by - match_options_aggregate: match_options_aggregate_order_by - name: order_by - plugins_aggregate: game_mode_plugins_aggregate_order_by - runtime_conflicts: order_by - slug: order_by - supported_runtimes: order_by - updated_at: order_by -} - -"""primary key columns input for table: game_modes""" -input game_modes_pk_columns_input { - id: uuid! -} - -""" -select columns of table "game_modes" -""" -enum game_modes_select_column { - """column name""" - archived_at - - """column name""" - cfg - - """column name""" - competitive_safe - - """column name""" - created_at - - """column name""" - description - - """column name""" - enabled - - """column name""" - extra_game_params - - """column name""" - icon - - """column name""" - id - - """column name""" - name - - """column name""" - slug - - """column name""" - updated_at -} - -""" -input type for updating data in table "game_modes" -""" -input game_modes_set_input { - archived_at: timestamptz - cfg: String - competitive_safe: Boolean - created_at: timestamptz - description: String - enabled: Boolean - extra_game_params: String - icon: String - id: uuid - name: String - slug: String - updated_at: timestamptz -} - -""" -Streaming cursor of the table "game_modes" -""" -input game_modes_stream_cursor_input { - """Stream column input with initial value""" - initial_value: game_modes_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input game_modes_stream_cursor_value_input { - archived_at: timestamptz - cfg: String - competitive_safe: Boolean - created_at: timestamptz - description: String - enabled: Boolean - extra_game_params: String - icon: String - id: uuid - name: String - slug: String - updated_at: timestamptz -} - -""" -update columns of table "game_modes" -""" -enum game_modes_update_column { - """column name""" - archived_at - - """column name""" - cfg - - """column name""" - competitive_safe - - """column name""" - created_at - - """column name""" - description - - """column name""" - enabled - - """column name""" - extra_game_params - - """column name""" - icon - - """column name""" - id - - """column name""" - name - - """column name""" - slug - - """column name""" - updated_at -} - -input game_modes_updates { - """sets the columns of the filtered rows to the given values""" - _set: game_modes_set_input - - """filter the rows which have to be updated""" - where: game_modes_bool_exp! -} - -""" -columns and relationships of "game_plugin_installs" -""" -type game_plugin_installs { - cfg: String - channel: e_game_plugin_channels_enum! - created_at: timestamptz! - disable_server_guidelines: Boolean! - enabled: Boolean! - load_custom: Boolean! - load_ranked: Boolean! - load_tournaments: 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!] - cfg: String_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 - load_custom: Boolean_comparison_exp - load_ranked: Boolean_comparison_exp - load_tournaments: 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 { - cfg: String - channel: e_game_plugin_channels_enum - created_at: timestamptz - disable_server_guidelines: Boolean - enabled: Boolean - load_custom: Boolean - load_ranked: Boolean - load_tournaments: 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 { - cfg: String - created_at: timestamptz - plugin_slug: String - updated_at: timestamptz - version: String -} - -"""aggregate min on columns""" -type game_plugin_installs_min_fields { - cfg: String - 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 { - cfg: order_by - channel: order_by - created_at: order_by - disable_server_guidelines: order_by - enabled: order_by - load_custom: order_by - load_ranked: order_by - load_tournaments: 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""" - cfg - - """column name""" - channel - - """column name""" - created_at - - """column name""" - disable_server_guidelines - - """column name""" - enabled - - """column name""" - load_custom - - """column name""" - load_ranked - - """column name""" - load_tournaments - - """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 { - cfg: String - channel: e_game_plugin_channels_enum - created_at: timestamptz - disable_server_guidelines: Boolean - enabled: Boolean - load_custom: Boolean - load_ranked: Boolean - load_tournaments: 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 { - cfg: String - channel: e_game_plugin_channels_enum - created_at: timestamptz - disable_server_guidelines: Boolean - enabled: Boolean - load_custom: Boolean - load_ranked: Boolean - load_tournaments: Boolean - plugin_slug: String - updated_at: timestamptz - version: String -} - -""" -update columns of table "game_plugin_installs" -""" -enum game_plugin_installs_update_column { - """column name""" - cfg - - """column name""" - channel - - """column name""" - created_at - - """column name""" - disable_server_guidelines - - """column name""" - enabled - - """column name""" - load_custom - - """column name""" - load_ranked - - """column name""" - load_tournaments - - """column name""" - plugin_slug - - """column name""" - updated_at - - """column name""" - version -} - -input game_plugin_installs_updates { - """sets the columns of the filtered rows to the given values""" - _set: game_plugin_installs_set_input - - """filter the rows which have to be updated""" - where: game_plugin_installs_bool_exp! -} - -""" -columns and relationships of "game_plugin_versions" -""" -type game_plugin_versions { - install_path: String - layout: String! - - """An object relationship""" - plugin: game_plugins! - plugin_slug: String! - prerelease: Boolean! - published_at: timestamptz! - runtime: e_plugin_runtimes_enum! - sha256: String! - size: Int - url: String! - version: String! -} - -""" -aggregated selection of "game_plugin_versions" -""" -type game_plugin_versions_aggregate { - aggregate: game_plugin_versions_aggregate_fields - nodes: [game_plugin_versions!]! -} - -input game_plugin_versions_aggregate_bool_exp { - bool_and: game_plugin_versions_aggregate_bool_exp_bool_and - bool_or: game_plugin_versions_aggregate_bool_exp_bool_or - count: game_plugin_versions_aggregate_bool_exp_count -} - -input game_plugin_versions_aggregate_bool_exp_bool_and { - arguments: game_plugin_versions_select_column_game_plugin_versions_aggregate_bool_exp_bool_and_arguments_columns! - distinct: Boolean - filter: game_plugin_versions_bool_exp - predicate: Boolean_comparison_exp! -} - -input game_plugin_versions_aggregate_bool_exp_bool_or { - arguments: game_plugin_versions_select_column_game_plugin_versions_aggregate_bool_exp_bool_or_arguments_columns! - distinct: Boolean - filter: game_plugin_versions_bool_exp - predicate: Boolean_comparison_exp! -} - -input game_plugin_versions_aggregate_bool_exp_count { - arguments: [game_plugin_versions_select_column!] - distinct: Boolean - filter: game_plugin_versions_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "game_plugin_versions" -""" -type game_plugin_versions_aggregate_fields { - avg: game_plugin_versions_avg_fields - count(columns: [game_plugin_versions_select_column!], distinct: Boolean): Int! - max: game_plugin_versions_max_fields - min: game_plugin_versions_min_fields - stddev: game_plugin_versions_stddev_fields - stddev_pop: game_plugin_versions_stddev_pop_fields - stddev_samp: game_plugin_versions_stddev_samp_fields - sum: game_plugin_versions_sum_fields - var_pop: game_plugin_versions_var_pop_fields - var_samp: game_plugin_versions_var_samp_fields - variance: game_plugin_versions_variance_fields -} - -""" -order by aggregate values of table "game_plugin_versions" -""" -input game_plugin_versions_aggregate_order_by { - avg: game_plugin_versions_avg_order_by - count: order_by - max: game_plugin_versions_max_order_by - min: game_plugin_versions_min_order_by - stddev: game_plugin_versions_stddev_order_by - stddev_pop: game_plugin_versions_stddev_pop_order_by - stddev_samp: game_plugin_versions_stddev_samp_order_by - sum: game_plugin_versions_sum_order_by - var_pop: game_plugin_versions_var_pop_order_by - var_samp: game_plugin_versions_var_samp_order_by - variance: game_plugin_versions_variance_order_by -} - -""" -input type for inserting array relation for remote table "game_plugin_versions" -""" -input game_plugin_versions_arr_rel_insert_input { - data: [game_plugin_versions_insert_input!]! - - """upsert condition""" - on_conflict: game_plugin_versions_on_conflict -} - -"""aggregate avg on columns""" -type game_plugin_versions_avg_fields { - size: Float -} - -""" -order by avg() on columns of table "game_plugin_versions" -""" -input game_plugin_versions_avg_order_by { - size: order_by -} - -""" -Boolean expression to filter rows from the table "game_plugin_versions". All fields are combined with a logical 'AND'. -""" -input game_plugin_versions_bool_exp { - _and: [game_plugin_versions_bool_exp!] - _not: game_plugin_versions_bool_exp - _or: [game_plugin_versions_bool_exp!] - install_path: String_comparison_exp - layout: String_comparison_exp - plugin: game_plugins_bool_exp - plugin_slug: String_comparison_exp - prerelease: Boolean_comparison_exp - published_at: timestamptz_comparison_exp - runtime: e_plugin_runtimes_enum_comparison_exp - sha256: String_comparison_exp - size: Int_comparison_exp - url: String_comparison_exp - version: String_comparison_exp -} - -""" -unique or primary key constraints on table "game_plugin_versions" -""" -enum game_plugin_versions_constraint { - """ - unique or primary key constraint on columns "plugin_slug", "version", "runtime" - """ - game_plugin_versions_pkey -} - -""" -input type for incrementing numeric columns in table "game_plugin_versions" -""" -input game_plugin_versions_inc_input { - size: Int -} - -""" -input type for inserting data into table "game_plugin_versions" -""" -input game_plugin_versions_insert_input { - install_path: String - layout: String - plugin: game_plugins_obj_rel_insert_input - plugin_slug: String - prerelease: Boolean - published_at: timestamptz - runtime: e_plugin_runtimes_enum - sha256: String - size: Int - url: String - version: String -} - -"""aggregate max on columns""" -type game_plugin_versions_max_fields { - install_path: String - layout: String - plugin_slug: String - published_at: timestamptz - sha256: String - size: Int - url: String - version: String -} - -""" -order by max() on columns of table "game_plugin_versions" -""" -input game_plugin_versions_max_order_by { - install_path: order_by - layout: order_by - plugin_slug: order_by - published_at: order_by - sha256: order_by - size: order_by - url: order_by - version: order_by -} - -"""aggregate min on columns""" -type game_plugin_versions_min_fields { - install_path: String - layout: String - plugin_slug: String - published_at: timestamptz - sha256: String - size: Int - url: String - version: String -} - -""" -order by min() on columns of table "game_plugin_versions" -""" -input game_plugin_versions_min_order_by { - install_path: order_by - layout: order_by - plugin_slug: order_by - published_at: order_by - sha256: order_by - size: order_by - url: order_by - version: order_by -} - -""" -response of any mutation on the table "game_plugin_versions" -""" -type game_plugin_versions_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [game_plugin_versions!]! -} - -""" -on_conflict condition type for table "game_plugin_versions" -""" -input game_plugin_versions_on_conflict { - constraint: game_plugin_versions_constraint! - update_columns: [game_plugin_versions_update_column!]! = [] - where: game_plugin_versions_bool_exp -} - -"""Ordering options when selecting data from "game_plugin_versions".""" -input game_plugin_versions_order_by { - install_path: order_by - layout: order_by - plugin: game_plugins_order_by - plugin_slug: order_by - prerelease: order_by - published_at: order_by - runtime: order_by - sha256: order_by - size: order_by - url: order_by - version: order_by -} - -"""primary key columns input for table: game_plugin_versions""" -input game_plugin_versions_pk_columns_input { - plugin_slug: String! - runtime: e_plugin_runtimes_enum! - version: String! -} - -""" -select columns of table "game_plugin_versions" -""" -enum game_plugin_versions_select_column { - """column name""" - install_path - - """column name""" - layout - - """column name""" - plugin_slug - - """column name""" - prerelease - - """column name""" - published_at - - """column name""" - runtime - - """column name""" - sha256 - - """column name""" - size - - """column name""" - url - - """column name""" - version -} - -""" -select "game_plugin_versions_aggregate_bool_exp_bool_and_arguments_columns" columns of table "game_plugin_versions" -""" -enum game_plugin_versions_select_column_game_plugin_versions_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - prerelease -} - -""" -select "game_plugin_versions_aggregate_bool_exp_bool_or_arguments_columns" columns of table "game_plugin_versions" -""" -enum game_plugin_versions_select_column_game_plugin_versions_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - prerelease -} - -""" -input type for updating data in table "game_plugin_versions" -""" -input game_plugin_versions_set_input { - install_path: String - layout: String - plugin_slug: String - prerelease: Boolean - published_at: timestamptz - runtime: e_plugin_runtimes_enum - sha256: String - size: Int - url: String - version: String -} - -"""aggregate stddev on columns""" -type game_plugin_versions_stddev_fields { - size: Float -} - -""" -order by stddev() on columns of table "game_plugin_versions" -""" -input game_plugin_versions_stddev_order_by { - size: order_by -} - -"""aggregate stddev_pop on columns""" -type game_plugin_versions_stddev_pop_fields { - size: Float -} - -""" -order by stddev_pop() on columns of table "game_plugin_versions" -""" -input game_plugin_versions_stddev_pop_order_by { - size: order_by -} - -"""aggregate stddev_samp on columns""" -type game_plugin_versions_stddev_samp_fields { - size: Float -} - -""" -order by stddev_samp() on columns of table "game_plugin_versions" -""" -input game_plugin_versions_stddev_samp_order_by { - size: order_by -} - -""" -Streaming cursor of the table "game_plugin_versions" -""" -input game_plugin_versions_stream_cursor_input { - """Stream column input with initial value""" - initial_value: game_plugin_versions_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input game_plugin_versions_stream_cursor_value_input { - install_path: String - layout: String - plugin_slug: String - prerelease: Boolean - published_at: timestamptz - runtime: e_plugin_runtimes_enum - sha256: String - size: Int - url: String - version: String -} - -"""aggregate sum on columns""" -type game_plugin_versions_sum_fields { - size: Int -} - -""" -order by sum() on columns of table "game_plugin_versions" -""" -input game_plugin_versions_sum_order_by { - size: order_by -} - -""" -update columns of table "game_plugin_versions" -""" -enum game_plugin_versions_update_column { - """column name""" - install_path - - """column name""" - layout - - """column name""" - plugin_slug - - """column name""" - prerelease - - """column name""" - published_at - - """column name""" - runtime - - """column name""" - sha256 - - """column name""" - size - - """column name""" - url - - """column name""" - version -} - -input game_plugin_versions_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: game_plugin_versions_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: game_plugin_versions_set_input - - """filter the rows which have to be updated""" - where: game_plugin_versions_bool_exp! -} - -"""aggregate var_pop on columns""" -type game_plugin_versions_var_pop_fields { - size: Float -} - -""" -order by var_pop() on columns of table "game_plugin_versions" -""" -input game_plugin_versions_var_pop_order_by { - size: order_by -} - -"""aggregate var_samp on columns""" -type game_plugin_versions_var_samp_fields { - size: Float -} - -""" -order by var_samp() on columns of table "game_plugin_versions" -""" -input game_plugin_versions_var_samp_order_by { - size: order_by -} - -"""aggregate variance on columns""" -type game_plugin_versions_variance_fields { - size: Float -} - -""" -order by variance() on columns of table "game_plugin_versions" -""" -input game_plugin_versions_variance_order_by { - size: order_by -} - -""" -columns and relationships of "game_plugins" -""" -type game_plugins { - author: String! - config_path: String - config_schema( - """JSON select path""" - path: String - ): jsonb - cvars: [String!]! - description: String! - - """An array relationship""" - game_modes( - """distinct select on columns""" - distinct_on: [game_mode_plugins_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [game_mode_plugins_order_by!] - - """filter the rows returned""" - where: game_mode_plugins_bool_exp - ): [game_mode_plugins!]! - - """An aggregate relationship""" - game_modes_aggregate( - """distinct select on columns""" - distinct_on: [game_mode_plugins_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [game_mode_plugins_order_by!] - - """filter the rows returned""" - where: game_mode_plugins_bool_exp - ): game_mode_plugins_aggregate! - homepage: String - hot_swappable: Boolean! - - """Installed | Partial | Pending | Failed | Manual | NotInstalled""" - install_state: String - - """ - A computed field, executes function "game_plugin_installed_node_count" - """ - installed_node_count: Int - kind: e_game_plugin_kinds_enum! - name: String! - - """An array relationship""" - node_installs( - """distinct select on columns""" - distinct_on: [game_server_node_plugins_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [game_server_node_plugins_order_by!] - - """filter the rows returned""" - where: game_server_node_plugins_bool_exp - ): [game_server_node_plugins!]! - - """An aggregate relationship""" - node_installs_aggregate( - """distinct select on columns""" - distinct_on: [game_server_node_plugins_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [game_server_node_plugins_order_by!] - - """filter the rows returned""" - where: game_server_node_plugins_bool_exp - ): game_server_node_plugins_aggregate! - pairs_with: [String!]! - panel( - """JSON select path""" - path: String - ): jsonb - requires_server_guidelines_disabled: Boolean! - requires_service: String - slug: String! - source: String! - synced_at: timestamptz! - tags: [String!]! - - """ - A computed field, executes function "game_plugin_target_node_count" - """ - target_node_count: Int - verified: Boolean! - - """An array relationship""" - versions( - """distinct select on columns""" - distinct_on: [game_plugin_versions_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [game_plugin_versions_order_by!] - - """filter the rows returned""" - where: game_plugin_versions_bool_exp - ): [game_plugin_versions!]! - - """An aggregate relationship""" - versions_aggregate( - """distinct select on columns""" - distinct_on: [game_plugin_versions_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [game_plugin_versions_order_by!] - - """filter the rows returned""" - where: game_plugin_versions_bool_exp - ): game_plugin_versions_aggregate! - wiring( - """JSON select path""" - path: String - ): jsonb -} - -""" -aggregated selection of "game_plugins" -""" -type game_plugins_aggregate { - aggregate: game_plugins_aggregate_fields - nodes: [game_plugins!]! -} - -""" -aggregate fields of "game_plugins" -""" -type game_plugins_aggregate_fields { - avg: game_plugins_avg_fields - count(columns: [game_plugins_select_column!], distinct: Boolean): Int! - max: game_plugins_max_fields - min: game_plugins_min_fields - stddev: game_plugins_stddev_fields - stddev_pop: game_plugins_stddev_pop_fields - stddev_samp: game_plugins_stddev_samp_fields - sum: game_plugins_sum_fields - var_pop: game_plugins_var_pop_fields - var_samp: game_plugins_var_samp_fields - variance: game_plugins_variance_fields -} - -"""append existing jsonb value of filtered columns with new jsonb value""" -input game_plugins_append_input { - config_schema: jsonb - panel: jsonb - wiring: jsonb -} - -"""aggregate avg on columns""" -type game_plugins_avg_fields { - """ - A computed field, executes function "game_plugin_installed_node_count" - """ - installed_node_count: Int - - """ - A computed field, executes function "game_plugin_target_node_count" - """ - target_node_count: Int -} - -""" -Boolean expression to filter rows from the table "game_plugins". All fields are combined with a logical 'AND'. -""" -input game_plugins_bool_exp { - _and: [game_plugins_bool_exp!] - _not: game_plugins_bool_exp - _or: [game_plugins_bool_exp!] - author: String_comparison_exp - config_path: String_comparison_exp - config_schema: jsonb_comparison_exp - cvars: String_array_comparison_exp - description: String_comparison_exp - game_modes: game_mode_plugins_bool_exp - game_modes_aggregate: game_mode_plugins_aggregate_bool_exp - homepage: String_comparison_exp - hot_swappable: Boolean_comparison_exp - install_state: String_comparison_exp - installed_node_count: Int_comparison_exp - kind: e_game_plugin_kinds_enum_comparison_exp - name: String_comparison_exp - node_installs: game_server_node_plugins_bool_exp - node_installs_aggregate: game_server_node_plugins_aggregate_bool_exp - pairs_with: String_array_comparison_exp - panel: jsonb_comparison_exp - requires_server_guidelines_disabled: Boolean_comparison_exp - requires_service: String_comparison_exp - slug: String_comparison_exp - source: String_comparison_exp - synced_at: timestamptz_comparison_exp - tags: String_array_comparison_exp - target_node_count: Int_comparison_exp - verified: Boolean_comparison_exp - versions: game_plugin_versions_bool_exp - versions_aggregate: game_plugin_versions_aggregate_bool_exp - wiring: jsonb_comparison_exp -} - -""" -unique or primary key constraints on table "game_plugins" -""" -enum game_plugins_constraint { - """ - unique or primary key constraint on columns "slug" - """ - game_plugins_pkey -} - -""" -delete the field or element with specified path (for JSON arrays, negative integers count from the end) -""" -input game_plugins_delete_at_path_input { - config_schema: [String!] - panel: [String!] - wiring: [String!] -} - -""" -delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array -""" -input game_plugins_delete_elem_input { - config_schema: Int - panel: Int - wiring: Int -} - -""" -delete key/value pair or string element. key/value pairs are matched based on their key value -""" -input game_plugins_delete_key_input { - config_schema: String - panel: String - wiring: String -} - -""" -input type for inserting data into table "game_plugins" -""" -input game_plugins_insert_input { - author: String - config_path: String - config_schema: jsonb - cvars: [String!] - description: String - game_modes: game_mode_plugins_arr_rel_insert_input - homepage: String - hot_swappable: Boolean - kind: e_game_plugin_kinds_enum - name: String - node_installs: game_server_node_plugins_arr_rel_insert_input - pairs_with: [String!] - panel: jsonb - requires_server_guidelines_disabled: Boolean - requires_service: String - slug: String - source: String - synced_at: timestamptz - tags: [String!] - verified: Boolean - versions: game_plugin_versions_arr_rel_insert_input - wiring: jsonb -} - -"""aggregate max on columns""" -type game_plugins_max_fields { - author: String - config_path: String - cvars: [String!] - description: String - homepage: String - - """Installed | Partial | Pending | Failed | Manual | NotInstalled""" - install_state: String - - """ - A computed field, executes function "game_plugin_installed_node_count" - """ - installed_node_count: Int - name: String - pairs_with: [String!] - requires_service: String - slug: String - source: String - synced_at: timestamptz - tags: [String!] - - """ - A computed field, executes function "game_plugin_target_node_count" - """ - target_node_count: Int -} - -"""aggregate min on columns""" -type game_plugins_min_fields { - author: String - config_path: String - cvars: [String!] - description: String - homepage: String - - """Installed | Partial | Pending | Failed | Manual | NotInstalled""" - install_state: String - - """ - A computed field, executes function "game_plugin_installed_node_count" - """ - installed_node_count: Int - name: String - pairs_with: [String!] - requires_service: String - slug: String - source: String - synced_at: timestamptz - tags: [String!] - - """ - A computed field, executes function "game_plugin_target_node_count" - """ - target_node_count: Int -} - -""" -response of any mutation on the table "game_plugins" -""" -type game_plugins_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [game_plugins!]! -} - -""" -input type for inserting object relation for remote table "game_plugins" -""" -input game_plugins_obj_rel_insert_input { - data: game_plugins_insert_input! - - """upsert condition""" - on_conflict: game_plugins_on_conflict -} - -""" -on_conflict condition type for table "game_plugins" -""" -input game_plugins_on_conflict { - constraint: game_plugins_constraint! - update_columns: [game_plugins_update_column!]! = [] - where: game_plugins_bool_exp -} - -"""Ordering options when selecting data from "game_plugins".""" -input game_plugins_order_by { - author: order_by - config_path: order_by - config_schema: order_by - cvars: order_by - description: order_by - game_modes_aggregate: game_mode_plugins_aggregate_order_by - homepage: order_by - hot_swappable: order_by - install_state: order_by - installed_node_count: order_by - kind: order_by - name: order_by - node_installs_aggregate: game_server_node_plugins_aggregate_order_by - pairs_with: order_by - panel: order_by - requires_server_guidelines_disabled: order_by - requires_service: order_by - slug: order_by - source: order_by - synced_at: order_by - tags: order_by - target_node_count: order_by - verified: order_by - versions_aggregate: game_plugin_versions_aggregate_order_by - wiring: order_by -} - -"""primary key columns input for table: game_plugins""" -input game_plugins_pk_columns_input { - slug: String! -} - -"""prepend existing jsonb value of filtered columns with new jsonb value""" -input game_plugins_prepend_input { - config_schema: jsonb - panel: jsonb - wiring: jsonb -} - -""" -select columns of table "game_plugins" -""" -enum game_plugins_select_column { - """column name""" - author - - """column name""" - config_path - - """column name""" - config_schema - - """column name""" - cvars - - """column name""" - description - - """column name""" - homepage - - """column name""" - hot_swappable - - """column name""" - kind - - """column name""" - name - - """column name""" - pairs_with - - """column name""" - panel - - """column name""" - requires_server_guidelines_disabled - - """column name""" - requires_service - - """column name""" - slug - - """column name""" - source - - """column name""" - synced_at - - """column name""" - tags - - """column name""" - verified - - """column name""" - wiring -} - -""" -input type for updating data in table "game_plugins" -""" -input game_plugins_set_input { - author: String - config_path: String - config_schema: jsonb - cvars: [String!] - description: String - homepage: String - hot_swappable: Boolean - kind: e_game_plugin_kinds_enum - name: String - pairs_with: [String!] - panel: jsonb - requires_server_guidelines_disabled: Boolean - requires_service: String - slug: String - source: String - synced_at: timestamptz - tags: [String!] - verified: Boolean - wiring: jsonb -} - -"""aggregate stddev on columns""" -type game_plugins_stddev_fields { - """ - A computed field, executes function "game_plugin_installed_node_count" - """ - installed_node_count: Int - - """ - A computed field, executes function "game_plugin_target_node_count" - """ - target_node_count: Int -} - -"""aggregate stddev_pop on columns""" -type game_plugins_stddev_pop_fields { - """ - A computed field, executes function "game_plugin_installed_node_count" - """ - installed_node_count: Int - - """ - A computed field, executes function "game_plugin_target_node_count" - """ - target_node_count: Int -} - -"""aggregate stddev_samp on columns""" -type game_plugins_stddev_samp_fields { - """ - A computed field, executes function "game_plugin_installed_node_count" - """ - installed_node_count: Int - - """ - A computed field, executes function "game_plugin_target_node_count" - """ - target_node_count: Int -} - -""" -Streaming cursor of the table "game_plugins" -""" -input game_plugins_stream_cursor_input { - """Stream column input with initial value""" - initial_value: game_plugins_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input game_plugins_stream_cursor_value_input { - author: String - config_path: String - config_schema: jsonb - cvars: [String!] - description: String - homepage: String - hot_swappable: Boolean - kind: e_game_plugin_kinds_enum - name: String - pairs_with: [String!] - panel: jsonb - requires_server_guidelines_disabled: Boolean - requires_service: String - slug: String - source: String - synced_at: timestamptz - tags: [String!] - verified: Boolean - wiring: jsonb -} - -"""aggregate sum on columns""" -type game_plugins_sum_fields { - """ - A computed field, executes function "game_plugin_installed_node_count" - """ - installed_node_count: Int - - """ - A computed field, executes function "game_plugin_target_node_count" - """ - target_node_count: Int -} - -""" -update columns of table "game_plugins" -""" -enum game_plugins_update_column { - """column name""" - author - - """column name""" - config_path - - """column name""" - config_schema - - """column name""" - cvars - - """column name""" - description - - """column name""" - homepage - - """column name""" - hot_swappable - - """column name""" - kind - - """column name""" - name - - """column name""" - pairs_with - - """column name""" - panel - - """column name""" - requires_server_guidelines_disabled - - """column name""" - requires_service - - """column name""" - slug - - """column name""" - source - - """column name""" - synced_at - - """column name""" - tags - - """column name""" - verified - - """column name""" - wiring -} - -input game_plugins_updates { - """append existing jsonb value of filtered columns with new jsonb value""" - _append: game_plugins_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: game_plugins_delete_at_path_input - - """ - delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array - """ - _delete_elem: game_plugins_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: game_plugins_delete_key_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: game_plugins_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: game_plugins_set_input - - """filter the rows which have to be updated""" - where: game_plugins_bool_exp! -} - -"""aggregate var_pop on columns""" -type game_plugins_var_pop_fields { - """ - A computed field, executes function "game_plugin_installed_node_count" - """ - installed_node_count: Int - - """ - A computed field, executes function "game_plugin_target_node_count" - """ - target_node_count: Int -} - -"""aggregate var_samp on columns""" -type game_plugins_var_samp_fields { - """ - A computed field, executes function "game_plugin_installed_node_count" - """ - installed_node_count: Int - - """ - A computed field, executes function "game_plugin_target_node_count" - """ - target_node_count: Int -} - -"""aggregate variance on columns""" -type game_plugins_variance_fields { - """ - A computed field, executes function "game_plugin_installed_node_count" - """ - installed_node_count: Int - - """ - A computed field, executes function "game_plugin_target_node_count" - """ - target_node_count: Int -} - -""" -columns and relationships of "game_server_node_plugins" -""" -type game_server_node_plugins { - channel: e_game_plugin_channels_enum! - created_at: timestamptz! - detected: Boolean! - detected_version: String - - """An object relationship""" - game_server_node: game_server_nodes! - game_server_node_id: String! - id: uuid! - installed_at: timestamptz - last_error: String - path: String - - """An object relationship""" - plugin: game_plugins - plugin_slug: String! - previous_version: 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 - path: String_comparison_exp - plugin: game_plugins_bool_exp - plugin_slug: String_comparison_exp - previous_version: 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 - path: String - plugin: game_plugins_obj_rel_insert_input - plugin_slug: String - previous_version: 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 - path: String - plugin_slug: String - previous_version: 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 - path: order_by - plugin_slug: order_by - previous_version: 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 - path: String - plugin_slug: String - previous_version: 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 - path: order_by - plugin_slug: order_by - previous_version: 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 - path: order_by - plugin: game_plugins_order_by - plugin_slug: order_by - previous_version: 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""" - path - - """column name""" - plugin_slug - - """column name""" - previous_version - - """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 - path: String - plugin_slug: String - previous_version: 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 - path: String - plugin_slug: String - previous_version: 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""" - path - - """column name""" - plugin_slug - - """column name""" - previous_version - - """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" -""" -type game_server_nodes { - """ - A computed field, executes function "available_node_server_count" - """ - available_server_count: Int - build_id: Int - cpu_cores_per_socket: Int - cpu_frequency_info( - """JSON select path""" - path: String - ): jsonb - cpu_governor_info( - """JSON select path""" - path: String - ): jsonb - cpu_sockets: Int - cpu_threads_per_core: Int - cpu_warnings( - """JSON select path""" - path: String - ): jsonb - cs2_launch_options( - """JSON select path""" - path: String - ): jsonb! - cs2_video_settings( - """JSON select path""" - path: String - ): jsonb! - csgo_build_id: Int - demo_network_limiter: Int - disk_available_gb: Int - disk_used_percent: Int - - """An object relationship""" - e_region: server_regions - - """An object relationship""" - e_status: e_game_server_node_statuses - enabled: Boolean! - enabled_for_match_making: Boolean! - end_port_range: Int - gpu: Boolean! - gpu_demos_enabled: Boolean! - gpu_info( - """JSON select path""" - path: String - ): jsonb - gpu_rendering_enabled: Boolean! - gpu_streaming_enabled: Boolean! - id: String! - label: String - lan_ip: inet - node_ip: inet - offline_at: timestamptz - pin_build_id: Int - pin_plugin_runtime: String - pin_plugin_version: String - - """An object relationship""" - pinned_version: game_versions - - """ - 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 - - """An array relationship""" - servers( - """distinct select on columns""" - distinct_on: [servers_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: [servers_order_by!] - - """filter the rows returned""" - where: servers_bool_exp - ): [servers!]! - - """An aggregate relationship""" - servers_aggregate( - """distinct select on columns""" - distinct_on: [servers_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: [servers_order_by!] - - """filter the rows returned""" - where: servers_bool_exp - ): servers_aggregate! - shader_bake_progress: numeric - shader_bake_progress_stage: String - shader_bake_status: String - shader_bake_status_history( - """JSON select path""" - path: String - ): jsonb! - start_port_range: Int - status: e_game_server_node_statuses_enum - supports_cpu_pinning: Boolean! - supports_low_latency: Boolean! - token: String - - """ - A computed field, executes function "total_node_server_count" - """ - total_server_count: Int - update_status: String - - """An object relationship""" - version: game_versions -} - -""" -aggregated selection of "game_server_nodes" -""" -type game_server_nodes_aggregate { - aggregate: game_server_nodes_aggregate_fields - nodes: [game_server_nodes!]! -} - -input game_server_nodes_aggregate_bool_exp { - bool_and: game_server_nodes_aggregate_bool_exp_bool_and - bool_or: game_server_nodes_aggregate_bool_exp_bool_or - count: game_server_nodes_aggregate_bool_exp_count -} - -input game_server_nodes_aggregate_bool_exp_bool_and { - arguments: game_server_nodes_select_column_game_server_nodes_aggregate_bool_exp_bool_and_arguments_columns! - distinct: Boolean - filter: game_server_nodes_bool_exp - predicate: Boolean_comparison_exp! -} - -input game_server_nodes_aggregate_bool_exp_bool_or { - arguments: game_server_nodes_select_column_game_server_nodes_aggregate_bool_exp_bool_or_arguments_columns! - distinct: Boolean - filter: game_server_nodes_bool_exp - predicate: Boolean_comparison_exp! -} - -input game_server_nodes_aggregate_bool_exp_count { - arguments: [game_server_nodes_select_column!] - distinct: Boolean - filter: game_server_nodes_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "game_server_nodes" -""" -type game_server_nodes_aggregate_fields { - avg: game_server_nodes_avg_fields - count(columns: [game_server_nodes_select_column!], distinct: Boolean): Int! - max: game_server_nodes_max_fields - min: game_server_nodes_min_fields - stddev: game_server_nodes_stddev_fields - stddev_pop: game_server_nodes_stddev_pop_fields - stddev_samp: game_server_nodes_stddev_samp_fields - sum: game_server_nodes_sum_fields - var_pop: game_server_nodes_var_pop_fields - var_samp: game_server_nodes_var_samp_fields - variance: game_server_nodes_variance_fields -} - -""" -order by aggregate values of table "game_server_nodes" -""" -input game_server_nodes_aggregate_order_by { - avg: game_server_nodes_avg_order_by - count: order_by - max: game_server_nodes_max_order_by - min: game_server_nodes_min_order_by - stddev: game_server_nodes_stddev_order_by - stddev_pop: game_server_nodes_stddev_pop_order_by - stddev_samp: game_server_nodes_stddev_samp_order_by - sum: game_server_nodes_sum_order_by - var_pop: game_server_nodes_var_pop_order_by - var_samp: game_server_nodes_var_samp_order_by - variance: game_server_nodes_variance_order_by -} - -"""append existing jsonb value of filtered columns with new jsonb value""" -input game_server_nodes_append_input { - cpu_frequency_info: jsonb - cpu_governor_info: jsonb - cpu_warnings: jsonb - cs2_launch_options: jsonb - cs2_video_settings: jsonb - gpu_info: jsonb - shader_bake_status_history: jsonb -} - -""" -input type for inserting array relation for remote table "game_server_nodes" -""" -input game_server_nodes_arr_rel_insert_input { - data: [game_server_nodes_insert_input!]! - - """upsert condition""" - on_conflict: game_server_nodes_on_conflict -} - -"""aggregate avg on columns""" -type game_server_nodes_avg_fields { - """ - A computed field, executes function "available_node_server_count" - """ - available_server_count: Int - build_id: Float - cpu_cores_per_socket: Float - cpu_sockets: Float - cpu_threads_per_core: Float - csgo_build_id: Float - demo_network_limiter: Float - disk_available_gb: Float - disk_used_percent: Float - end_port_range: Float - pin_build_id: Float - shader_bake_progress: Float - start_port_range: Float - - """ - A computed field, executes function "total_node_server_count" - """ - total_server_count: Int -} - -""" -order by avg() on columns of table "game_server_nodes" -""" -input game_server_nodes_avg_order_by { - build_id: order_by - cpu_cores_per_socket: order_by - cpu_sockets: order_by - cpu_threads_per_core: order_by - csgo_build_id: order_by - demo_network_limiter: order_by - disk_available_gb: order_by - disk_used_percent: order_by - end_port_range: order_by - pin_build_id: order_by - shader_bake_progress: order_by - start_port_range: order_by -} - -""" -Boolean expression to filter rows from the table "game_server_nodes". All fields are combined with a logical 'AND'. -""" -input game_server_nodes_bool_exp { - _and: [game_server_nodes_bool_exp!] - _not: game_server_nodes_bool_exp - _or: [game_server_nodes_bool_exp!] - available_server_count: Int_comparison_exp - build_id: Int_comparison_exp - cpu_cores_per_socket: Int_comparison_exp - cpu_frequency_info: jsonb_comparison_exp - cpu_governor_info: jsonb_comparison_exp - cpu_sockets: Int_comparison_exp - cpu_threads_per_core: Int_comparison_exp - cpu_warnings: jsonb_comparison_exp - cs2_launch_options: jsonb_comparison_exp - cs2_video_settings: jsonb_comparison_exp - csgo_build_id: Int_comparison_exp - demo_network_limiter: Int_comparison_exp - disk_available_gb: Int_comparison_exp - disk_used_percent: Int_comparison_exp - e_region: server_regions_bool_exp - e_status: e_game_server_node_statuses_bool_exp - enabled: Boolean_comparison_exp - enabled_for_match_making: Boolean_comparison_exp - end_port_range: Int_comparison_exp - gpu: Boolean_comparison_exp - gpu_demos_enabled: Boolean_comparison_exp - gpu_info: jsonb_comparison_exp - gpu_rendering_enabled: Boolean_comparison_exp - gpu_streaming_enabled: Boolean_comparison_exp - id: String_comparison_exp - label: String_comparison_exp - lan_ip: inet_comparison_exp - node_ip: inet_comparison_exp - offline_at: timestamptz_comparison_exp - pin_build_id: Int_comparison_exp - pin_plugin_runtime: String_comparison_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 - servers_aggregate: servers_aggregate_bool_exp - shader_bake_progress: numeric_comparison_exp - shader_bake_progress_stage: String_comparison_exp - shader_bake_status: String_comparison_exp - shader_bake_status_history: jsonb_comparison_exp - start_port_range: Int_comparison_exp - status: e_game_server_node_statuses_enum_comparison_exp - supports_cpu_pinning: Boolean_comparison_exp - supports_low_latency: Boolean_comparison_exp - token: String_comparison_exp - total_server_count: Int_comparison_exp - update_status: String_comparison_exp - version: game_versions_bool_exp -} - -""" -unique or primary key constraints on table "game_server_nodes" -""" -enum game_server_nodes_constraint { - """ - unique or primary key constraint on columns "id" - """ - game_server_nodes_pkey -} - -""" -delete the field or element with specified path (for JSON arrays, negative integers count from the end) -""" -input game_server_nodes_delete_at_path_input { - cpu_frequency_info: [String!] - cpu_governor_info: [String!] - cpu_warnings: [String!] - cs2_launch_options: [String!] - cs2_video_settings: [String!] - gpu_info: [String!] - shader_bake_status_history: [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_server_nodes_delete_elem_input { - cpu_frequency_info: Int - cpu_governor_info: Int - cpu_warnings: Int - cs2_launch_options: Int - cs2_video_settings: Int - gpu_info: Int - shader_bake_status_history: Int -} - -""" -delete key/value pair or string element. key/value pairs are matched based on their key value -""" -input game_server_nodes_delete_key_input { - cpu_frequency_info: String - cpu_governor_info: String - cpu_warnings: String - cs2_launch_options: String - cs2_video_settings: String - gpu_info: String - shader_bake_status_history: String -} - -""" -input type for incrementing numeric columns in table "game_server_nodes" -""" -input game_server_nodes_inc_input { - build_id: Int - cpu_cores_per_socket: Int - cpu_sockets: Int - cpu_threads_per_core: Int - csgo_build_id: Int - demo_network_limiter: Int - disk_available_gb: Int - disk_used_percent: Int - end_port_range: Int - pin_build_id: Int - shader_bake_progress: numeric - start_port_range: Int -} - -""" -input type for inserting data into table "game_server_nodes" -""" -input game_server_nodes_insert_input { - build_id: Int - cpu_cores_per_socket: Int - cpu_frequency_info: jsonb - cpu_governor_info: jsonb - cpu_sockets: Int - cpu_threads_per_core: Int - cpu_warnings: jsonb - cs2_launch_options: jsonb - cs2_video_settings: jsonb - csgo_build_id: Int - demo_network_limiter: Int - disk_available_gb: Int - disk_used_percent: Int - e_region: server_regions_obj_rel_insert_input - e_status: e_game_server_node_statuses_obj_rel_insert_input - enabled: Boolean - enabled_for_match_making: Boolean - end_port_range: Int - gpu: Boolean - gpu_demos_enabled: Boolean - gpu_info: jsonb - gpu_rendering_enabled: Boolean - gpu_streaming_enabled: Boolean - id: String - label: String - lan_ip: inet - node_ip: inet - offline_at: timestamptz - pin_build_id: Int - 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 - shader_bake_progress: numeric - shader_bake_progress_stage: String - shader_bake_status: String - shader_bake_status_history: jsonb - start_port_range: Int - status: e_game_server_node_statuses_enum - supports_cpu_pinning: Boolean - supports_low_latency: Boolean - token: String - update_status: String - version: game_versions_obj_rel_insert_input -} - -"""aggregate max on columns""" -type game_server_nodes_max_fields { - """ - A computed field, executes function "available_node_server_count" - """ - available_server_count: Int - build_id: Int - cpu_cores_per_socket: Int - cpu_sockets: Int - cpu_threads_per_core: Int - csgo_build_id: Int - demo_network_limiter: Int - disk_available_gb: Int - disk_used_percent: Int - end_port_range: Int - id: String - label: String - offline_at: timestamptz - 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 - shader_bake_status: String - start_port_range: Int - token: String - - """ - A computed field, executes function "total_node_server_count" - """ - total_server_count: Int - update_status: String -} - -""" -order by max() on columns of table "game_server_nodes" -""" -input game_server_nodes_max_order_by { - build_id: order_by - cpu_cores_per_socket: order_by - cpu_sockets: order_by - cpu_threads_per_core: order_by - csgo_build_id: order_by - demo_network_limiter: order_by - disk_available_gb: order_by - disk_used_percent: order_by - end_port_range: order_by - id: order_by - label: order_by - offline_at: 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 - shader_bake_status: order_by - start_port_range: order_by - token: order_by - update_status: order_by -} - -"""aggregate min on columns""" -type game_server_nodes_min_fields { - """ - A computed field, executes function "available_node_server_count" - """ - available_server_count: Int - build_id: Int - cpu_cores_per_socket: Int - cpu_sockets: Int - cpu_threads_per_core: Int - csgo_build_id: Int - demo_network_limiter: Int - disk_available_gb: Int - disk_used_percent: Int - end_port_range: Int - id: String - label: String - offline_at: timestamptz - 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 - shader_bake_status: String - start_port_range: Int - token: String - - """ - A computed field, executes function "total_node_server_count" - """ - total_server_count: Int - update_status: String -} - -""" -order by min() on columns of table "game_server_nodes" -""" -input game_server_nodes_min_order_by { - build_id: order_by - cpu_cores_per_socket: order_by - cpu_sockets: order_by - cpu_threads_per_core: order_by - csgo_build_id: order_by - demo_network_limiter: order_by - disk_available_gb: order_by - disk_used_percent: order_by - end_port_range: order_by - id: order_by - label: order_by - offline_at: 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 - shader_bake_status: order_by - start_port_range: order_by - token: order_by - update_status: order_by -} - -""" -response of any mutation on the table "game_server_nodes" -""" -type game_server_nodes_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [game_server_nodes!]! -} - -""" -input type for inserting object relation for remote table "game_server_nodes" -""" -input game_server_nodes_obj_rel_insert_input { - data: game_server_nodes_insert_input! - - """upsert condition""" - on_conflict: game_server_nodes_on_conflict -} - -""" -on_conflict condition type for table "game_server_nodes" -""" -input game_server_nodes_on_conflict { - constraint: game_server_nodes_constraint! - update_columns: [game_server_nodes_update_column!]! = [] - where: game_server_nodes_bool_exp -} - -"""Ordering options when selecting data from "game_server_nodes".""" -input game_server_nodes_order_by { - available_server_count: order_by - build_id: order_by - cpu_cores_per_socket: order_by - cpu_frequency_info: order_by - cpu_governor_info: order_by - cpu_sockets: order_by - cpu_threads_per_core: order_by - cpu_warnings: order_by - cs2_launch_options: order_by - cs2_video_settings: order_by - csgo_build_id: order_by - demo_network_limiter: order_by - disk_available_gb: order_by - disk_used_percent: order_by - e_region: server_regions_order_by - e_status: e_game_server_node_statuses_order_by - enabled: order_by - enabled_for_match_making: order_by - end_port_range: order_by - gpu: order_by - gpu_demos_enabled: order_by - gpu_info: order_by - gpu_rendering_enabled: order_by - gpu_streaming_enabled: order_by - id: order_by - label: order_by - lan_ip: order_by - node_ip: order_by - offline_at: order_by - pin_build_id: order_by - pin_plugin_runtime: 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 - shader_bake_progress: order_by - shader_bake_progress_stage: order_by - shader_bake_status: order_by - shader_bake_status_history: order_by - start_port_range: order_by - status: order_by - supports_cpu_pinning: order_by - supports_low_latency: order_by - token: order_by - total_server_count: order_by - update_status: order_by - version: game_versions_order_by -} - -"""primary key columns input for table: game_server_nodes""" -input game_server_nodes_pk_columns_input { - id: String! -} - -"""prepend existing jsonb value of filtered columns with new jsonb value""" -input game_server_nodes_prepend_input { - cpu_frequency_info: jsonb - cpu_governor_info: jsonb - cpu_warnings: jsonb - cs2_launch_options: jsonb - cs2_video_settings: jsonb - gpu_info: jsonb - shader_bake_status_history: jsonb -} - -""" -select columns of table "game_server_nodes" -""" -enum game_server_nodes_select_column { - """column name""" - build_id - - """column name""" - cpu_cores_per_socket - - """column name""" - cpu_frequency_info - - """column name""" - cpu_governor_info - - """column name""" - cpu_sockets - - """column name""" - cpu_threads_per_core - - """column name""" - cpu_warnings - - """column name""" - cs2_launch_options - - """column name""" - cs2_video_settings - - """column name""" - csgo_build_id - - """column name""" - demo_network_limiter - - """column name""" - disk_available_gb - - """column name""" - disk_used_percent - - """column name""" - enabled - - """column name""" - enabled_for_match_making - - """column name""" - end_port_range - - """column name""" - gpu - - """column name""" - gpu_demos_enabled - - """column name""" - gpu_info - - """column name""" - gpu_rendering_enabled - - """column name""" - gpu_streaming_enabled - - """column name""" - id - - """column name""" - label - - """column name""" - lan_ip - - """column name""" - node_ip - - """column name""" - offline_at - - """column name""" - pin_build_id - - """column name""" - pin_plugin_runtime - - """column name""" - pin_plugin_version - - """column name""" - plugins_synced_at - - """column name""" - public_ip - - """column name""" - region - - """column name""" - shader_bake_progress - - """column name""" - shader_bake_progress_stage - - """column name""" - shader_bake_status - - """column name""" - shader_bake_status_history - - """column name""" - start_port_range - - """column name""" - status - - """column name""" - supports_cpu_pinning - - """column name""" - supports_low_latency - - """column name""" - token - - """column name""" - update_status -} - -""" -select "game_server_nodes_aggregate_bool_exp_bool_and_arguments_columns" columns of table "game_server_nodes" -""" -enum game_server_nodes_select_column_game_server_nodes_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - enabled - - """column name""" - enabled_for_match_making - - """column name""" - gpu - - """column name""" - gpu_demos_enabled - - """column name""" - gpu_rendering_enabled - - """column name""" - gpu_streaming_enabled - - """column name""" - supports_cpu_pinning - - """column name""" - supports_low_latency -} - -""" -select "game_server_nodes_aggregate_bool_exp_bool_or_arguments_columns" columns of table "game_server_nodes" -""" -enum game_server_nodes_select_column_game_server_nodes_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - enabled - - """column name""" - enabled_for_match_making - - """column name""" - gpu - - """column name""" - gpu_demos_enabled - - """column name""" - gpu_rendering_enabled - - """column name""" - gpu_streaming_enabled - - """column name""" - supports_cpu_pinning - - """column name""" - supports_low_latency -} - -""" -input type for updating data in table "game_server_nodes" -""" -input game_server_nodes_set_input { - build_id: Int - cpu_cores_per_socket: Int - cpu_frequency_info: jsonb - cpu_governor_info: jsonb - cpu_sockets: Int - cpu_threads_per_core: Int - cpu_warnings: jsonb - cs2_launch_options: jsonb - cs2_video_settings: jsonb - csgo_build_id: Int - demo_network_limiter: Int - disk_available_gb: Int - disk_used_percent: Int - enabled: Boolean - enabled_for_match_making: Boolean - end_port_range: Int - gpu: Boolean - gpu_demos_enabled: Boolean - gpu_info: jsonb - gpu_rendering_enabled: Boolean - gpu_streaming_enabled: Boolean - id: String - label: String - lan_ip: inet - node_ip: inet - offline_at: timestamptz - 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 - shader_bake_progress_stage: String - shader_bake_status: String - shader_bake_status_history: jsonb - start_port_range: Int - status: e_game_server_node_statuses_enum - supports_cpu_pinning: Boolean - supports_low_latency: Boolean - token: String - update_status: String -} - -"""aggregate stddev on columns""" -type game_server_nodes_stddev_fields { - """ - A computed field, executes function "available_node_server_count" - """ - available_server_count: Int - build_id: Float - cpu_cores_per_socket: Float - cpu_sockets: Float - cpu_threads_per_core: Float - csgo_build_id: Float - demo_network_limiter: Float - disk_available_gb: Float - disk_used_percent: Float - end_port_range: Float - pin_build_id: Float - shader_bake_progress: Float - start_port_range: Float - - """ - A computed field, executes function "total_node_server_count" - """ - total_server_count: Int -} - -""" -order by stddev() on columns of table "game_server_nodes" -""" -input game_server_nodes_stddev_order_by { - build_id: order_by - cpu_cores_per_socket: order_by - cpu_sockets: order_by - cpu_threads_per_core: order_by - csgo_build_id: order_by - demo_network_limiter: order_by - disk_available_gb: order_by - disk_used_percent: order_by - end_port_range: order_by - pin_build_id: order_by - shader_bake_progress: order_by - start_port_range: order_by -} - -"""aggregate stddev_pop on columns""" -type game_server_nodes_stddev_pop_fields { - """ - A computed field, executes function "available_node_server_count" - """ - available_server_count: Int - build_id: Float - cpu_cores_per_socket: Float - cpu_sockets: Float - cpu_threads_per_core: Float - csgo_build_id: Float - demo_network_limiter: Float - disk_available_gb: Float - disk_used_percent: Float - end_port_range: Float - pin_build_id: Float - shader_bake_progress: Float - start_port_range: Float - - """ - A computed field, executes function "total_node_server_count" - """ - total_server_count: Int -} - -""" -order by stddev_pop() on columns of table "game_server_nodes" -""" -input game_server_nodes_stddev_pop_order_by { - build_id: order_by - cpu_cores_per_socket: order_by - cpu_sockets: order_by - cpu_threads_per_core: order_by - csgo_build_id: order_by - demo_network_limiter: order_by - disk_available_gb: order_by - disk_used_percent: order_by - end_port_range: order_by - pin_build_id: order_by - shader_bake_progress: order_by - start_port_range: order_by -} - -"""aggregate stddev_samp on columns""" -type game_server_nodes_stddev_samp_fields { - """ - A computed field, executes function "available_node_server_count" - """ - available_server_count: Int - build_id: Float - cpu_cores_per_socket: Float - cpu_sockets: Float - cpu_threads_per_core: Float - csgo_build_id: Float - demo_network_limiter: Float - disk_available_gb: Float - disk_used_percent: Float - end_port_range: Float - pin_build_id: Float - shader_bake_progress: Float - start_port_range: Float - - """ - A computed field, executes function "total_node_server_count" - """ - total_server_count: Int -} - -""" -order by stddev_samp() on columns of table "game_server_nodes" -""" -input game_server_nodes_stddev_samp_order_by { - build_id: order_by - cpu_cores_per_socket: order_by - cpu_sockets: order_by - cpu_threads_per_core: order_by - csgo_build_id: order_by - demo_network_limiter: order_by - disk_available_gb: order_by - disk_used_percent: order_by - end_port_range: order_by - pin_build_id: order_by - shader_bake_progress: order_by - start_port_range: order_by -} - -""" -Streaming cursor of the table "game_server_nodes" -""" -input game_server_nodes_stream_cursor_input { - """Stream column input with initial value""" - initial_value: game_server_nodes_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input game_server_nodes_stream_cursor_value_input { - build_id: Int - cpu_cores_per_socket: Int - cpu_frequency_info: jsonb - cpu_governor_info: jsonb - cpu_sockets: Int - cpu_threads_per_core: Int - cpu_warnings: jsonb - cs2_launch_options: jsonb - cs2_video_settings: jsonb - csgo_build_id: Int - demo_network_limiter: Int - disk_available_gb: Int - disk_used_percent: Int - enabled: Boolean - enabled_for_match_making: Boolean - end_port_range: Int - gpu: Boolean - gpu_demos_enabled: Boolean - gpu_info: jsonb - gpu_rendering_enabled: Boolean - gpu_streaming_enabled: Boolean - id: String - label: String - lan_ip: inet - node_ip: inet - offline_at: timestamptz - 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 - shader_bake_progress_stage: String - shader_bake_status: String - shader_bake_status_history: jsonb - start_port_range: Int - status: e_game_server_node_statuses_enum - supports_cpu_pinning: Boolean - supports_low_latency: Boolean - token: String - update_status: String -} - -"""aggregate sum on columns""" -type game_server_nodes_sum_fields { - """ - A computed field, executes function "available_node_server_count" - """ - available_server_count: Int - build_id: Int - cpu_cores_per_socket: Int - cpu_sockets: Int - cpu_threads_per_core: Int - csgo_build_id: Int - demo_network_limiter: Int - disk_available_gb: Int - disk_used_percent: Int - end_port_range: Int - pin_build_id: Int - shader_bake_progress: numeric - start_port_range: Int - - """ - A computed field, executes function "total_node_server_count" - """ - total_server_count: Int -} - -""" -order by sum() on columns of table "game_server_nodes" -""" -input game_server_nodes_sum_order_by { - build_id: order_by - cpu_cores_per_socket: order_by - cpu_sockets: order_by - cpu_threads_per_core: order_by - csgo_build_id: order_by - demo_network_limiter: order_by - disk_available_gb: order_by - disk_used_percent: order_by - end_port_range: order_by - pin_build_id: order_by - shader_bake_progress: order_by - start_port_range: order_by -} - -""" -update columns of table "game_server_nodes" -""" -enum game_server_nodes_update_column { - """column name""" - build_id - - """column name""" - cpu_cores_per_socket - - """column name""" - cpu_frequency_info - - """column name""" - cpu_governor_info - - """column name""" - cpu_sockets - - """column name""" - cpu_threads_per_core - - """column name""" - cpu_warnings - - """column name""" - cs2_launch_options - - """column name""" - cs2_video_settings - - """column name""" - csgo_build_id - - """column name""" - demo_network_limiter - - """column name""" - disk_available_gb - - """column name""" - disk_used_percent - - """column name""" - enabled - - """column name""" - enabled_for_match_making - - """column name""" - end_port_range - - """column name""" - gpu - - """column name""" - gpu_demos_enabled - - """column name""" - gpu_info - - """column name""" - gpu_rendering_enabled - - """column name""" - gpu_streaming_enabled - - """column name""" - id - - """column name""" - label - - """column name""" - lan_ip - - """column name""" - node_ip - - """column name""" - offline_at - - """column name""" - pin_build_id - - """column name""" - pin_plugin_runtime - - """column name""" - pin_plugin_version - - """column name""" - plugins_synced_at - - """column name""" - public_ip - - """column name""" - region - - """column name""" - shader_bake_progress - - """column name""" - shader_bake_progress_stage - - """column name""" - shader_bake_status - - """column name""" - shader_bake_status_history - - """column name""" - start_port_range - - """column name""" - status - - """column name""" - supports_cpu_pinning - - """column name""" - supports_low_latency - - """column name""" - token - - """column name""" - update_status -} - -input game_server_nodes_updates { - """append existing jsonb value of filtered columns with new jsonb value""" - _append: game_server_nodes_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: game_server_nodes_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_server_nodes_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: game_server_nodes_delete_key_input - - """increments the numeric columns with given value of the filtered values""" - _inc: game_server_nodes_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: game_server_nodes_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: game_server_nodes_set_input - - """filter the rows which have to be updated""" - where: game_server_nodes_bool_exp! -} - -"""aggregate var_pop on columns""" -type game_server_nodes_var_pop_fields { - """ - A computed field, executes function "available_node_server_count" - """ - available_server_count: Int - build_id: Float - cpu_cores_per_socket: Float - cpu_sockets: Float - cpu_threads_per_core: Float - csgo_build_id: Float - demo_network_limiter: Float - disk_available_gb: Float - disk_used_percent: Float - end_port_range: Float - pin_build_id: Float - shader_bake_progress: Float - start_port_range: Float - - """ - A computed field, executes function "total_node_server_count" - """ - total_server_count: Int -} - -""" -order by var_pop() on columns of table "game_server_nodes" -""" -input game_server_nodes_var_pop_order_by { - build_id: order_by - cpu_cores_per_socket: order_by - cpu_sockets: order_by - cpu_threads_per_core: order_by - csgo_build_id: order_by - demo_network_limiter: order_by - disk_available_gb: order_by - disk_used_percent: order_by - end_port_range: order_by - pin_build_id: order_by - shader_bake_progress: order_by - start_port_range: order_by -} - -"""aggregate var_samp on columns""" -type game_server_nodes_var_samp_fields { - """ - A computed field, executes function "available_node_server_count" - """ - available_server_count: Int - build_id: Float - cpu_cores_per_socket: Float - cpu_sockets: Float - cpu_threads_per_core: Float - csgo_build_id: Float - demo_network_limiter: Float - disk_available_gb: Float - disk_used_percent: Float - end_port_range: Float - pin_build_id: Float - shader_bake_progress: Float - start_port_range: Float - - """ - A computed field, executes function "total_node_server_count" - """ - total_server_count: Int -} - -""" -order by var_samp() on columns of table "game_server_nodes" -""" -input game_server_nodes_var_samp_order_by { - build_id: order_by - cpu_cores_per_socket: order_by - cpu_sockets: order_by - cpu_threads_per_core: order_by - csgo_build_id: order_by - demo_network_limiter: order_by - disk_available_gb: order_by - disk_used_percent: order_by - end_port_range: order_by - pin_build_id: order_by - shader_bake_progress: order_by - start_port_range: order_by -} - -"""aggregate variance on columns""" -type game_server_nodes_variance_fields { - """ - A computed field, executes function "available_node_server_count" - """ - available_server_count: Int - build_id: Float - cpu_cores_per_socket: Float - cpu_sockets: Float - cpu_threads_per_core: Float - csgo_build_id: Float - demo_network_limiter: Float - disk_available_gb: Float - disk_used_percent: Float - end_port_range: Float - pin_build_id: Float - shader_bake_progress: Float - start_port_range: Float - - """ - A computed field, executes function "total_node_server_count" - """ - total_server_count: Int -} - -""" -order by variance() on columns of table "game_server_nodes" -""" -input game_server_nodes_variance_order_by { - build_id: order_by - cpu_cores_per_socket: order_by - cpu_sockets: order_by - cpu_threads_per_core: order_by - csgo_build_id: order_by - demo_network_limiter: order_by - disk_available_gb: order_by - disk_used_percent: order_by - end_port_range: order_by - pin_build_id: order_by - shader_bake_progress: order_by - start_port_range: order_by -} - -""" -columns and relationships of "game_versions" -""" -type game_versions { - build_id: Int! - current: Boolean - cvars: Boolean! - description: String! - downloads( - """JSON select path""" - path: String - ): jsonb - updated_at: timestamptz! - version: String! -} - -""" -aggregated selection of "game_versions" -""" -type game_versions_aggregate { - aggregate: game_versions_aggregate_fields - nodes: [game_versions!]! -} - -""" -aggregate fields of "game_versions" -""" -type game_versions_aggregate_fields { - avg: game_versions_avg_fields - count(columns: [game_versions_select_column!], distinct: Boolean): Int! - max: game_versions_max_fields - min: game_versions_min_fields - stddev: game_versions_stddev_fields - stddev_pop: game_versions_stddev_pop_fields - stddev_samp: game_versions_stddev_samp_fields - sum: game_versions_sum_fields - var_pop: game_versions_var_pop_fields - var_samp: game_versions_var_samp_fields - variance: game_versions_variance_fields -} - -"""append existing jsonb value of filtered columns with new jsonb value""" -input game_versions_append_input { - downloads: jsonb -} - -"""aggregate avg on columns""" -type game_versions_avg_fields { - build_id: Float -} - -""" -Boolean expression to filter rows from the table "game_versions". All fields are combined with a logical 'AND'. -""" -input game_versions_bool_exp { - _and: [game_versions_bool_exp!] - _not: game_versions_bool_exp - _or: [game_versions_bool_exp!] - build_id: Int_comparison_exp - current: Boolean_comparison_exp - cvars: Boolean_comparison_exp - description: String_comparison_exp - downloads: jsonb_comparison_exp - updated_at: timestamptz_comparison_exp - version: String_comparison_exp -} - -""" -unique or primary key constraints on table "game_versions" -""" -enum game_versions_constraint { - """ - unique or primary key constraint on columns "build_id" - """ - game_versions_pkey - - """ - unique or primary key constraint on columns "current" - """ - idx_game_versions_current -} - -""" -delete the field or element with specified path (for JSON arrays, negative integers count from the end) -""" -input game_versions_delete_at_path_input { - downloads: [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_versions_delete_elem_input { - downloads: Int -} - -""" -delete key/value pair or string element. key/value pairs are matched based on their key value -""" -input game_versions_delete_key_input { - downloads: String -} - -""" -input type for incrementing numeric columns in table "game_versions" -""" -input game_versions_inc_input { - build_id: Int -} - -""" -input type for inserting data into table "game_versions" -""" -input game_versions_insert_input { - build_id: Int - current: Boolean - cvars: Boolean - description: String - downloads: jsonb - updated_at: timestamptz - version: String -} - -"""aggregate max on columns""" -type game_versions_max_fields { - build_id: Int - description: String - updated_at: timestamptz - version: String -} - -"""aggregate min on columns""" -type game_versions_min_fields { - build_id: Int - description: String - updated_at: timestamptz - version: String -} - -""" -response of any mutation on the table "game_versions" -""" -type game_versions_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [game_versions!]! -} - -""" -input type for inserting object relation for remote table "game_versions" -""" -input game_versions_obj_rel_insert_input { - data: game_versions_insert_input! - - """upsert condition""" - on_conflict: game_versions_on_conflict -} - -""" -on_conflict condition type for table "game_versions" -""" -input game_versions_on_conflict { - constraint: game_versions_constraint! - update_columns: [game_versions_update_column!]! = [] - where: game_versions_bool_exp -} - -"""Ordering options when selecting data from "game_versions".""" -input game_versions_order_by { - build_id: order_by - current: order_by - cvars: order_by - description: order_by - downloads: order_by - updated_at: order_by - version: order_by -} - -"""primary key columns input for table: game_versions""" -input game_versions_pk_columns_input { - build_id: Int! -} - -"""prepend existing jsonb value of filtered columns with new jsonb value""" -input game_versions_prepend_input { - downloads: jsonb -} - -""" -select columns of table "game_versions" -""" -enum game_versions_select_column { - """column name""" - build_id - - """column name""" - current - - """column name""" - cvars - - """column name""" - description - - """column name""" - downloads - - """column name""" - updated_at - - """column name""" - version -} - -""" -input type for updating data in table "game_versions" -""" -input game_versions_set_input { - build_id: Int - current: Boolean - cvars: Boolean - description: String - downloads: jsonb - updated_at: timestamptz - version: String -} - -"""aggregate stddev on columns""" -type game_versions_stddev_fields { - build_id: Float -} - -"""aggregate stddev_pop on columns""" -type game_versions_stddev_pop_fields { - build_id: Float -} - -"""aggregate stddev_samp on columns""" -type game_versions_stddev_samp_fields { - build_id: Float -} - -""" -Streaming cursor of the table "game_versions" -""" -input game_versions_stream_cursor_input { - """Stream column input with initial value""" - initial_value: game_versions_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input game_versions_stream_cursor_value_input { - build_id: Int - current: Boolean - cvars: Boolean - description: String - downloads: jsonb - updated_at: timestamptz - version: String -} - -"""aggregate sum on columns""" -type game_versions_sum_fields { - build_id: Int -} - -""" -update columns of table "game_versions" -""" -enum game_versions_update_column { - """column name""" - build_id - - """column name""" - current - - """column name""" - cvars - - """column name""" - description - - """column name""" - downloads - - """column name""" - updated_at - - """column name""" - version -} - -input game_versions_updates { - """append existing jsonb value of filtered columns with new jsonb value""" - _append: game_versions_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: game_versions_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_versions_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: game_versions_delete_key_input - - """increments the numeric columns with given value of the filtered values""" - _inc: game_versions_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: game_versions_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: game_versions_set_input - - """filter the rows which have to be updated""" - where: game_versions_bool_exp! -} - -"""aggregate var_pop on columns""" -type game_versions_var_pop_fields { - build_id: Float -} - -"""aggregate var_samp on columns""" -type game_versions_var_samp_fields { - build_id: Float -} - -"""aggregate variance on columns""" -type game_versions_variance_fields { - build_id: Float -} - -""" -columns and relationships of "gamedata_signature_validations" -""" -type gamedata_signature_validations { - branch: String! - build_id: Int! - - """An object relationship""" - game_version: game_versions! - id: uuid! - results( - """JSON select path""" - path: String - ): jsonb - status: String! - validated_at: timestamptz! -} - -""" -aggregated selection of "gamedata_signature_validations" -""" -type gamedata_signature_validations_aggregate { - aggregate: gamedata_signature_validations_aggregate_fields - nodes: [gamedata_signature_validations!]! -} - -""" -aggregate fields of "gamedata_signature_validations" -""" -type gamedata_signature_validations_aggregate_fields { - avg: gamedata_signature_validations_avg_fields - count(columns: [gamedata_signature_validations_select_column!], distinct: Boolean): Int! - max: gamedata_signature_validations_max_fields - min: gamedata_signature_validations_min_fields - stddev: gamedata_signature_validations_stddev_fields - stddev_pop: gamedata_signature_validations_stddev_pop_fields - stddev_samp: gamedata_signature_validations_stddev_samp_fields - sum: gamedata_signature_validations_sum_fields - var_pop: gamedata_signature_validations_var_pop_fields - var_samp: gamedata_signature_validations_var_samp_fields - variance: gamedata_signature_validations_variance_fields -} - -"""append existing jsonb value of filtered columns with new jsonb value""" -input gamedata_signature_validations_append_input { - results: jsonb -} - -"""aggregate avg on columns""" -type gamedata_signature_validations_avg_fields { - build_id: Float -} - -""" -Boolean expression to filter rows from the table "gamedata_signature_validations". All fields are combined with a logical 'AND'. -""" -input gamedata_signature_validations_bool_exp { - _and: [gamedata_signature_validations_bool_exp!] - _not: gamedata_signature_validations_bool_exp - _or: [gamedata_signature_validations_bool_exp!] - branch: String_comparison_exp - build_id: Int_comparison_exp - game_version: game_versions_bool_exp - id: uuid_comparison_exp - results: jsonb_comparison_exp - status: String_comparison_exp - validated_at: timestamptz_comparison_exp -} - -""" -unique or primary key constraints on table "gamedata_signature_validations" -""" -enum gamedata_signature_validations_constraint { - """ - unique or primary key constraint on columns "build_id", "branch" - """ - gamedata_signature_validations_build_branch_idx - - """ - unique or primary key constraint on columns "id" - """ - gamedata_signature_validations_pkey -} - -""" -delete the field or element with specified path (for JSON arrays, negative integers count from the end) -""" -input gamedata_signature_validations_delete_at_path_input { - results: [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 gamedata_signature_validations_delete_elem_input { - results: Int -} - -""" -delete key/value pair or string element. key/value pairs are matched based on their key value -""" -input gamedata_signature_validations_delete_key_input { - results: String -} - -""" -input type for incrementing numeric columns in table "gamedata_signature_validations" -""" -input gamedata_signature_validations_inc_input { - build_id: Int -} - -""" -input type for inserting data into table "gamedata_signature_validations" -""" -input gamedata_signature_validations_insert_input { - branch: String - build_id: Int - game_version: game_versions_obj_rel_insert_input - id: uuid - results: jsonb - status: String - validated_at: timestamptz -} - -"""aggregate max on columns""" -type gamedata_signature_validations_max_fields { - branch: String - build_id: Int - id: uuid - status: String - validated_at: timestamptz -} - -"""aggregate min on columns""" -type gamedata_signature_validations_min_fields { - branch: String - build_id: Int - id: uuid - status: String - validated_at: timestamptz -} - -""" -response of any mutation on the table "gamedata_signature_validations" -""" -type gamedata_signature_validations_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [gamedata_signature_validations!]! -} - -""" -on_conflict condition type for table "gamedata_signature_validations" -""" -input gamedata_signature_validations_on_conflict { - constraint: gamedata_signature_validations_constraint! - update_columns: [gamedata_signature_validations_update_column!]! = [] - where: gamedata_signature_validations_bool_exp -} - -""" -Ordering options when selecting data from "gamedata_signature_validations". -""" -input gamedata_signature_validations_order_by { - branch: order_by - build_id: order_by - game_version: game_versions_order_by - id: order_by - results: order_by - status: order_by - validated_at: order_by -} - -"""primary key columns input for table: gamedata_signature_validations""" -input gamedata_signature_validations_pk_columns_input { - id: uuid! -} - -"""prepend existing jsonb value of filtered columns with new jsonb value""" -input gamedata_signature_validations_prepend_input { - results: jsonb -} - -""" -select columns of table "gamedata_signature_validations" -""" -enum gamedata_signature_validations_select_column { - """column name""" - branch - - """column name""" - build_id - - """column name""" - id - - """column name""" - results - - """column name""" - status - - """column name""" - validated_at -} - -""" -input type for updating data in table "gamedata_signature_validations" -""" -input gamedata_signature_validations_set_input { - branch: String - build_id: Int - id: uuid - results: jsonb - status: String - validated_at: timestamptz -} - -"""aggregate stddev on columns""" -type gamedata_signature_validations_stddev_fields { - build_id: Float -} - -"""aggregate stddev_pop on columns""" -type gamedata_signature_validations_stddev_pop_fields { - build_id: Float -} - -"""aggregate stddev_samp on columns""" -type gamedata_signature_validations_stddev_samp_fields { - build_id: Float -} - -""" -Streaming cursor of the table "gamedata_signature_validations" -""" -input gamedata_signature_validations_stream_cursor_input { - """Stream column input with initial value""" - initial_value: gamedata_signature_validations_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input gamedata_signature_validations_stream_cursor_value_input { - branch: String - build_id: Int - id: uuid - results: jsonb - status: String - validated_at: timestamptz -} - -"""aggregate sum on columns""" -type gamedata_signature_validations_sum_fields { - build_id: Int -} - -""" -update columns of table "gamedata_signature_validations" -""" -enum gamedata_signature_validations_update_column { - """column name""" - branch - - """column name""" - build_id - - """column name""" - id - - """column name""" - results - - """column name""" - status - - """column name""" - validated_at -} - -input gamedata_signature_validations_updates { - """append existing jsonb value of filtered columns with new jsonb value""" - _append: gamedata_signature_validations_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: gamedata_signature_validations_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: gamedata_signature_validations_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: gamedata_signature_validations_delete_key_input - - """increments the numeric columns with given value of the filtered values""" - _inc: gamedata_signature_validations_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: gamedata_signature_validations_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: gamedata_signature_validations_set_input - - """filter the rows which have to be updated""" - where: gamedata_signature_validations_bool_exp! -} - -"""aggregate var_pop on columns""" -type gamedata_signature_validations_var_pop_fields { - build_id: Float -} - -"""aggregate var_samp on columns""" -type gamedata_signature_validations_var_samp_fields { - build_id: Float -} - -"""aggregate variance on columns""" -type gamedata_signature_validations_variance_fields { - build_id: Float -} - -input get_event_leaderboard_args { - _category: String - _event_id: uuid - _match_type: String - _min_rounds: Int -} - -input get_leaderboard_args { - _category: String - _exclude_tournaments: Boolean - _match_type: String - _role: String - _season_id: uuid - _source: String - _window_days: Int -} - -input get_league_season_leaderboard_args { - _category: String - _league_season_id: uuid - _role: String -} - -input get_player_leaderboard_rank_args { - _category: String - _exclude_tournaments: Boolean - _match_type: String - _player_steam_id: String - _season_id: uuid - _source: String - _window_days: Int -} - -input get_tournament_leaderboard_args { - _tournament_id: uuid -} - -scalar inet - -""" -Boolean expression to compare columns of type "inet". All fields are combined with logical 'AND'. -""" -input inet_comparison_exp { - _eq: inet - _gt: inet - _gte: inet - _in: [inet!] - _is_null: Boolean - _lt: inet - _lte: inet - _neq: inet - _nin: [inet!] -} - -scalar json - -""" -Boolean expression to compare columns of type "json". All fields are combined with logical 'AND'. -""" -input json_comparison_exp { - _eq: json - _gt: json - _gte: json - _in: [json!] - _is_null: Boolean - _lt: json - _lte: json - _neq: json - _nin: [json!] -} - -scalar jsonb - -input jsonb_cast_exp { - String: String_comparison_exp -} - -""" -Boolean expression to compare columns of type "jsonb". All fields are combined with logical 'AND'. -""" -input jsonb_comparison_exp { - _cast: jsonb_cast_exp - - """is the column contained in the given json value""" - _contained_in: jsonb - - """does the column contain the given json value at the top level""" - _contains: jsonb - _eq: jsonb - _gt: jsonb - _gte: jsonb - - """does the string exist as a top-level key in the column""" - _has_key: String - - """do all of these strings exist as top-level keys in the column""" - _has_keys_all: [String!] - - """do any of these strings exist as top-level keys in the column""" - _has_keys_any: [String!] - _in: [jsonb!] - _is_null: Boolean - _lt: jsonb - _lte: jsonb - _neq: jsonb - _nin: [jsonb!] -} - -""" -columns and relationships of "leaderboard_entries" -""" -type leaderboard_entries { - matches_played: Int - player_avatar_url: String - player_country: String - player_custom_avatar_url: String - player_name: String! - player_steam_id: String! - secondary_value: float8 - tertiary_value: float8 - value: float8! -} - -type leaderboard_entries_aggregate { - aggregate: leaderboard_entries_aggregate_fields - nodes: [leaderboard_entries!]! -} - -""" -aggregate fields of "leaderboard_entries" -""" -type leaderboard_entries_aggregate_fields { - avg: leaderboard_entries_avg_fields - count(columns: [leaderboard_entries_select_column!], distinct: Boolean): Int! - max: leaderboard_entries_max_fields - min: leaderboard_entries_min_fields - stddev: leaderboard_entries_stddev_fields - stddev_pop: leaderboard_entries_stddev_pop_fields - stddev_samp: leaderboard_entries_stddev_samp_fields - sum: leaderboard_entries_sum_fields - var_pop: leaderboard_entries_var_pop_fields - var_samp: leaderboard_entries_var_samp_fields - variance: leaderboard_entries_variance_fields -} - -"""aggregate avg on columns""" -type leaderboard_entries_avg_fields { - matches_played: Float - secondary_value: Float - tertiary_value: Float - value: Float -} - -""" -Boolean expression to filter rows from the table "leaderboard_entries". All fields are combined with a logical 'AND'. -""" -input leaderboard_entries_bool_exp { - _and: [leaderboard_entries_bool_exp!] - _not: leaderboard_entries_bool_exp - _or: [leaderboard_entries_bool_exp!] - matches_played: Int_comparison_exp - player_avatar_url: String_comparison_exp - player_country: String_comparison_exp - player_custom_avatar_url: String_comparison_exp - player_name: String_comparison_exp - player_steam_id: String_comparison_exp - secondary_value: float8_comparison_exp - tertiary_value: float8_comparison_exp - value: float8_comparison_exp -} - -""" -input type for incrementing numeric columns in table "leaderboard_entries" -""" -input leaderboard_entries_inc_input { - matches_played: Int - secondary_value: float8 - tertiary_value: float8 - value: float8 -} - -""" -input type for inserting data into table "leaderboard_entries" -""" -input leaderboard_entries_insert_input { - matches_played: Int - player_avatar_url: String - player_country: String - player_custom_avatar_url: String - player_name: String - player_steam_id: String - secondary_value: float8 - tertiary_value: float8 - value: float8 -} - -"""aggregate max on columns""" -type leaderboard_entries_max_fields { - matches_played: Int - player_avatar_url: String - player_country: String - player_custom_avatar_url: String - player_name: String - player_steam_id: String - secondary_value: float8 - tertiary_value: float8 - value: float8 -} - -"""aggregate min on columns""" -type leaderboard_entries_min_fields { - matches_played: Int - player_avatar_url: String - player_country: String - player_custom_avatar_url: String - player_name: String - player_steam_id: String - secondary_value: float8 - tertiary_value: float8 - value: float8 -} - -""" -response of any mutation on the table "leaderboard_entries" -""" -type leaderboard_entries_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [leaderboard_entries!]! -} - -"""Ordering options when selecting data from "leaderboard_entries".""" -input leaderboard_entries_order_by { - matches_played: order_by - player_avatar_url: order_by - player_country: order_by - player_custom_avatar_url: order_by - player_name: order_by - player_steam_id: order_by - secondary_value: order_by - tertiary_value: order_by - value: order_by -} - -""" -select columns of table "leaderboard_entries" -""" -enum leaderboard_entries_select_column { - """column name""" - matches_played - - """column name""" - player_avatar_url - - """column name""" - player_country - - """column name""" - player_custom_avatar_url - - """column name""" - player_name - - """column name""" - player_steam_id - - """column name""" - secondary_value - - """column name""" - tertiary_value - - """column name""" - value -} - -""" -input type for updating data in table "leaderboard_entries" -""" -input leaderboard_entries_set_input { - matches_played: Int - player_avatar_url: String - player_country: String - player_custom_avatar_url: String - player_name: String - player_steam_id: String - secondary_value: float8 - tertiary_value: float8 - value: float8 -} - -"""aggregate stddev on columns""" -type leaderboard_entries_stddev_fields { - matches_played: Float - secondary_value: Float - tertiary_value: Float - value: Float -} - -"""aggregate stddev_pop on columns""" -type leaderboard_entries_stddev_pop_fields { - matches_played: Float - secondary_value: Float - tertiary_value: Float - value: Float -} - -"""aggregate stddev_samp on columns""" -type leaderboard_entries_stddev_samp_fields { - matches_played: Float - secondary_value: Float - tertiary_value: Float - value: Float -} - -""" -Streaming cursor of the table "leaderboard_entries" -""" -input leaderboard_entries_stream_cursor_input { - """Stream column input with initial value""" - initial_value: leaderboard_entries_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input leaderboard_entries_stream_cursor_value_input { - matches_played: Int - player_avatar_url: String - player_country: String - player_custom_avatar_url: String - player_name: String - player_steam_id: String - secondary_value: float8 - tertiary_value: float8 - value: float8 -} - -"""aggregate sum on columns""" -type leaderboard_entries_sum_fields { - matches_played: Int - secondary_value: float8 - tertiary_value: float8 - value: float8 -} - -input leaderboard_entries_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: leaderboard_entries_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: leaderboard_entries_set_input - - """filter the rows which have to be updated""" - where: leaderboard_entries_bool_exp! -} - -"""aggregate var_pop on columns""" -type leaderboard_entries_var_pop_fields { - matches_played: Float - secondary_value: Float - tertiary_value: Float - value: Float -} - -"""aggregate var_samp on columns""" -type leaderboard_entries_var_samp_fields { - matches_played: Float - secondary_value: Float - tertiary_value: Float - value: Float -} - -"""aggregate variance on columns""" -type leaderboard_entries_variance_fields { - matches_played: Float - secondary_value: Float - tertiary_value: Float - value: Float -} - -input league_award_forfeit_args { - _tournament_bracket_id: uuid - _winning_tournament_team_id: uuid -} - -""" -columns and relationships of "league_divisions" -""" -type league_divisions { - created_at: timestamptz! - id: uuid! - name: String! - - """An array relationship""" - season_divisions( - """distinct select on columns""" - distinct_on: [league_season_divisions_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: [league_season_divisions_order_by!] - - """filter the rows returned""" - where: league_season_divisions_bool_exp - ): [league_season_divisions!]! - - """An aggregate relationship""" - season_divisions_aggregate( - """distinct select on columns""" - distinct_on: [league_season_divisions_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: [league_season_divisions_order_by!] - - """filter the rows returned""" - where: league_season_divisions_bool_exp - ): league_season_divisions_aggregate! - tier: smallint! -} - -""" -aggregated selection of "league_divisions" -""" -type league_divisions_aggregate { - aggregate: league_divisions_aggregate_fields - nodes: [league_divisions!]! -} - -""" -aggregate fields of "league_divisions" -""" -type league_divisions_aggregate_fields { - avg: league_divisions_avg_fields - count(columns: [league_divisions_select_column!], distinct: Boolean): Int! - max: league_divisions_max_fields - min: league_divisions_min_fields - stddev: league_divisions_stddev_fields - stddev_pop: league_divisions_stddev_pop_fields - stddev_samp: league_divisions_stddev_samp_fields - sum: league_divisions_sum_fields - var_pop: league_divisions_var_pop_fields - var_samp: league_divisions_var_samp_fields - variance: league_divisions_variance_fields -} - -"""aggregate avg on columns""" -type league_divisions_avg_fields { - tier: Float -} - -""" -Boolean expression to filter rows from the table "league_divisions". All fields are combined with a logical 'AND'. -""" -input league_divisions_bool_exp { - _and: [league_divisions_bool_exp!] - _not: league_divisions_bool_exp - _or: [league_divisions_bool_exp!] - created_at: timestamptz_comparison_exp - id: uuid_comparison_exp - name: String_comparison_exp - season_divisions: league_season_divisions_bool_exp - season_divisions_aggregate: league_season_divisions_aggregate_bool_exp - tier: smallint_comparison_exp -} - -""" -unique or primary key constraints on table "league_divisions" -""" -enum league_divisions_constraint { - """ - unique or primary key constraint on columns "name" - """ - league_divisions_name_key - - """ - unique or primary key constraint on columns "id" - """ - league_divisions_pkey - - """ - unique or primary key constraint on columns "tier" - """ - league_divisions_tier_key -} - -""" -input type for incrementing numeric columns in table "league_divisions" -""" -input league_divisions_inc_input { - tier: smallint -} - -""" -input type for inserting data into table "league_divisions" -""" -input league_divisions_insert_input { - created_at: timestamptz - id: uuid - name: String - season_divisions: league_season_divisions_arr_rel_insert_input - tier: smallint -} - -"""aggregate max on columns""" -type league_divisions_max_fields { - created_at: timestamptz - id: uuid - name: String - tier: smallint -} - -"""aggregate min on columns""" -type league_divisions_min_fields { - created_at: timestamptz - id: uuid - name: String - tier: smallint -} - -""" -response of any mutation on the table "league_divisions" -""" -type league_divisions_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [league_divisions!]! -} - -""" -input type for inserting object relation for remote table "league_divisions" -""" -input league_divisions_obj_rel_insert_input { - data: league_divisions_insert_input! - - """upsert condition""" - on_conflict: league_divisions_on_conflict -} - -""" -on_conflict condition type for table "league_divisions" -""" -input league_divisions_on_conflict { - constraint: league_divisions_constraint! - update_columns: [league_divisions_update_column!]! = [] - where: league_divisions_bool_exp -} - -"""Ordering options when selecting data from "league_divisions".""" -input league_divisions_order_by { - created_at: order_by - id: order_by - name: order_by - season_divisions_aggregate: league_season_divisions_aggregate_order_by - tier: order_by -} - -"""primary key columns input for table: league_divisions""" -input league_divisions_pk_columns_input { - id: uuid! -} - -""" -select columns of table "league_divisions" -""" -enum league_divisions_select_column { - """column name""" - created_at - - """column name""" - id - - """column name""" - name - - """column name""" - tier -} - -""" -input type for updating data in table "league_divisions" -""" -input league_divisions_set_input { - created_at: timestamptz - id: uuid - name: String - tier: smallint -} - -"""aggregate stddev on columns""" -type league_divisions_stddev_fields { - tier: Float -} - -"""aggregate stddev_pop on columns""" -type league_divisions_stddev_pop_fields { - tier: Float -} - -"""aggregate stddev_samp on columns""" -type league_divisions_stddev_samp_fields { - tier: Float -} - -""" -Streaming cursor of the table "league_divisions" -""" -input league_divisions_stream_cursor_input { - """Stream column input with initial value""" - initial_value: league_divisions_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input league_divisions_stream_cursor_value_input { - created_at: timestamptz - id: uuid - name: String - tier: smallint -} - -"""aggregate sum on columns""" -type league_divisions_sum_fields { - tier: smallint -} - -""" -update columns of table "league_divisions" -""" -enum league_divisions_update_column { - """column name""" - created_at - - """column name""" - id - - """column name""" - name - - """column name""" - tier -} - -input league_divisions_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: league_divisions_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: league_divisions_set_input - - """filter the rows which have to be updated""" - where: league_divisions_bool_exp! -} - -"""aggregate var_pop on columns""" -type league_divisions_var_pop_fields { - tier: Float -} - -"""aggregate var_samp on columns""" -type league_divisions_var_samp_fields { - tier: Float -} - -"""aggregate variance on columns""" -type league_divisions_variance_fields { - tier: Float -} - -""" -columns and relationships of "league_match_weeks" -""" -type league_match_weeks { - closes_at: timestamptz! - created_at: timestamptz! - default_match_at: timestamptz! - id: uuid! - league_season_id: uuid! - opens_at: timestamptz! - - """An object relationship""" - season: league_seasons! - week_number: Int! -} - -""" -aggregated selection of "league_match_weeks" -""" -type league_match_weeks_aggregate { - aggregate: league_match_weeks_aggregate_fields - nodes: [league_match_weeks!]! -} - -input league_match_weeks_aggregate_bool_exp { - count: league_match_weeks_aggregate_bool_exp_count -} - -input league_match_weeks_aggregate_bool_exp_count { - arguments: [league_match_weeks_select_column!] - distinct: Boolean - filter: league_match_weeks_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "league_match_weeks" -""" -type league_match_weeks_aggregate_fields { - avg: league_match_weeks_avg_fields - count(columns: [league_match_weeks_select_column!], distinct: Boolean): Int! - max: league_match_weeks_max_fields - min: league_match_weeks_min_fields - stddev: league_match_weeks_stddev_fields - stddev_pop: league_match_weeks_stddev_pop_fields - stddev_samp: league_match_weeks_stddev_samp_fields - sum: league_match_weeks_sum_fields - var_pop: league_match_weeks_var_pop_fields - var_samp: league_match_weeks_var_samp_fields - variance: league_match_weeks_variance_fields -} - -""" -order by aggregate values of table "league_match_weeks" -""" -input league_match_weeks_aggregate_order_by { - avg: league_match_weeks_avg_order_by - count: order_by - max: league_match_weeks_max_order_by - min: league_match_weeks_min_order_by - stddev: league_match_weeks_stddev_order_by - stddev_pop: league_match_weeks_stddev_pop_order_by - stddev_samp: league_match_weeks_stddev_samp_order_by - sum: league_match_weeks_sum_order_by - var_pop: league_match_weeks_var_pop_order_by - var_samp: league_match_weeks_var_samp_order_by - variance: league_match_weeks_variance_order_by -} - -""" -input type for inserting array relation for remote table "league_match_weeks" -""" -input league_match_weeks_arr_rel_insert_input { - data: [league_match_weeks_insert_input!]! - - """upsert condition""" - on_conflict: league_match_weeks_on_conflict -} - -"""aggregate avg on columns""" -type league_match_weeks_avg_fields { - week_number: Float -} - -""" -order by avg() on columns of table "league_match_weeks" -""" -input league_match_weeks_avg_order_by { - week_number: order_by -} - -""" -Boolean expression to filter rows from the table "league_match_weeks". All fields are combined with a logical 'AND'. -""" -input league_match_weeks_bool_exp { - _and: [league_match_weeks_bool_exp!] - _not: league_match_weeks_bool_exp - _or: [league_match_weeks_bool_exp!] - closes_at: timestamptz_comparison_exp - created_at: timestamptz_comparison_exp - default_match_at: timestamptz_comparison_exp - id: uuid_comparison_exp - league_season_id: uuid_comparison_exp - opens_at: timestamptz_comparison_exp - season: league_seasons_bool_exp - week_number: Int_comparison_exp -} - -""" -unique or primary key constraints on table "league_match_weeks" -""" -enum league_match_weeks_constraint { - """ - unique or primary key constraint on columns "league_season_id", "week_number" - """ - league_match_weeks_league_season_id_week_number_key - - """ - unique or primary key constraint on columns "id" - """ - league_match_weeks_pkey -} - -""" -input type for incrementing numeric columns in table "league_match_weeks" -""" -input league_match_weeks_inc_input { - week_number: Int -} - -""" -input type for inserting data into table "league_match_weeks" -""" -input league_match_weeks_insert_input { - closes_at: timestamptz - created_at: timestamptz - default_match_at: timestamptz - id: uuid - league_season_id: uuid - opens_at: timestamptz - season: league_seasons_obj_rel_insert_input - week_number: Int -} - -"""aggregate max on columns""" -type league_match_weeks_max_fields { - closes_at: timestamptz - created_at: timestamptz - default_match_at: timestamptz - id: uuid - league_season_id: uuid - opens_at: timestamptz - week_number: Int -} - -""" -order by max() on columns of table "league_match_weeks" -""" -input league_match_weeks_max_order_by { - closes_at: order_by - created_at: order_by - default_match_at: order_by - id: order_by - league_season_id: order_by - opens_at: order_by - week_number: order_by -} - -"""aggregate min on columns""" -type league_match_weeks_min_fields { - closes_at: timestamptz - created_at: timestamptz - default_match_at: timestamptz - id: uuid - league_season_id: uuid - opens_at: timestamptz - week_number: Int -} - -""" -order by min() on columns of table "league_match_weeks" -""" -input league_match_weeks_min_order_by { - closes_at: order_by - created_at: order_by - default_match_at: order_by - id: order_by - league_season_id: order_by - opens_at: order_by - week_number: order_by -} - -""" -response of any mutation on the table "league_match_weeks" -""" -type league_match_weeks_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [league_match_weeks!]! -} - -""" -on_conflict condition type for table "league_match_weeks" -""" -input league_match_weeks_on_conflict { - constraint: league_match_weeks_constraint! - update_columns: [league_match_weeks_update_column!]! = [] - where: league_match_weeks_bool_exp -} - -"""Ordering options when selecting data from "league_match_weeks".""" -input league_match_weeks_order_by { - closes_at: order_by - created_at: order_by - default_match_at: order_by - id: order_by - league_season_id: order_by - opens_at: order_by - season: league_seasons_order_by - week_number: order_by -} - -"""primary key columns input for table: league_match_weeks""" -input league_match_weeks_pk_columns_input { - id: uuid! -} - -""" -select columns of table "league_match_weeks" -""" -enum league_match_weeks_select_column { - """column name""" - closes_at - - """column name""" - created_at - - """column name""" - default_match_at - - """column name""" - id - - """column name""" - league_season_id - - """column name""" - opens_at - - """column name""" - week_number -} - -""" -input type for updating data in table "league_match_weeks" -""" -input league_match_weeks_set_input { - closes_at: timestamptz - created_at: timestamptz - default_match_at: timestamptz - id: uuid - league_season_id: uuid - opens_at: timestamptz - week_number: Int -} - -"""aggregate stddev on columns""" -type league_match_weeks_stddev_fields { - week_number: Float -} - -""" -order by stddev() on columns of table "league_match_weeks" -""" -input league_match_weeks_stddev_order_by { - week_number: order_by -} - -"""aggregate stddev_pop on columns""" -type league_match_weeks_stddev_pop_fields { - week_number: Float -} - -""" -order by stddev_pop() on columns of table "league_match_weeks" -""" -input league_match_weeks_stddev_pop_order_by { - week_number: order_by -} - -"""aggregate stddev_samp on columns""" -type league_match_weeks_stddev_samp_fields { - week_number: Float -} - -""" -order by stddev_samp() on columns of table "league_match_weeks" -""" -input league_match_weeks_stddev_samp_order_by { - week_number: order_by -} - -""" -Streaming cursor of the table "league_match_weeks" -""" -input league_match_weeks_stream_cursor_input { - """Stream column input with initial value""" - initial_value: league_match_weeks_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input league_match_weeks_stream_cursor_value_input { - closes_at: timestamptz - created_at: timestamptz - default_match_at: timestamptz - id: uuid - league_season_id: uuid - opens_at: timestamptz - week_number: Int -} - -"""aggregate sum on columns""" -type league_match_weeks_sum_fields { - week_number: Int -} - -""" -order by sum() on columns of table "league_match_weeks" -""" -input league_match_weeks_sum_order_by { - week_number: order_by -} - -""" -update columns of table "league_match_weeks" -""" -enum league_match_weeks_update_column { - """column name""" - closes_at - - """column name""" - created_at - - """column name""" - default_match_at - - """column name""" - id - - """column name""" - league_season_id - - """column name""" - opens_at - - """column name""" - week_number -} - -input league_match_weeks_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: league_match_weeks_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: league_match_weeks_set_input - - """filter the rows which have to be updated""" - where: league_match_weeks_bool_exp! -} - -"""aggregate var_pop on columns""" -type league_match_weeks_var_pop_fields { - week_number: Float -} - -""" -order by var_pop() on columns of table "league_match_weeks" -""" -input league_match_weeks_var_pop_order_by { - week_number: order_by -} - -"""aggregate var_samp on columns""" -type league_match_weeks_var_samp_fields { - week_number: Float -} - -""" -order by var_samp() on columns of table "league_match_weeks" -""" -input league_match_weeks_var_samp_order_by { - week_number: order_by -} - -"""aggregate variance on columns""" -type league_match_weeks_variance_fields { - week_number: Float -} - -""" -order by variance() on columns of table "league_match_weeks" -""" -input league_match_weeks_variance_order_by { - week_number: order_by -} - -""" -columns and relationships of "league_relegation_playoffs" -""" -type league_relegation_playoffs { - created_at: timestamptz! - - """An object relationship""" - higher_division: league_divisions! - higher_division_id: uuid! - higher_slots: Int! - id: uuid! - league_season_id: uuid! - - """An object relationship""" - lower_division: league_divisions! - lower_division_id: uuid! - resolved_at: timestamptz - - """An object relationship""" - season: league_seasons! - - """An object relationship""" - tournament: tournaments - tournament_id: uuid -} - -""" -aggregated selection of "league_relegation_playoffs" -""" -type league_relegation_playoffs_aggregate { - aggregate: league_relegation_playoffs_aggregate_fields - nodes: [league_relegation_playoffs!]! -} - -input league_relegation_playoffs_aggregate_bool_exp { - count: league_relegation_playoffs_aggregate_bool_exp_count -} - -input league_relegation_playoffs_aggregate_bool_exp_count { - arguments: [league_relegation_playoffs_select_column!] - distinct: Boolean - filter: league_relegation_playoffs_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "league_relegation_playoffs" -""" -type league_relegation_playoffs_aggregate_fields { - avg: league_relegation_playoffs_avg_fields - count(columns: [league_relegation_playoffs_select_column!], distinct: Boolean): Int! - max: league_relegation_playoffs_max_fields - min: league_relegation_playoffs_min_fields - stddev: league_relegation_playoffs_stddev_fields - stddev_pop: league_relegation_playoffs_stddev_pop_fields - stddev_samp: league_relegation_playoffs_stddev_samp_fields - sum: league_relegation_playoffs_sum_fields - var_pop: league_relegation_playoffs_var_pop_fields - var_samp: league_relegation_playoffs_var_samp_fields - variance: league_relegation_playoffs_variance_fields -} - -""" -order by aggregate values of table "league_relegation_playoffs" -""" -input league_relegation_playoffs_aggregate_order_by { - avg: league_relegation_playoffs_avg_order_by - count: order_by - max: league_relegation_playoffs_max_order_by - min: league_relegation_playoffs_min_order_by - stddev: league_relegation_playoffs_stddev_order_by - stddev_pop: league_relegation_playoffs_stddev_pop_order_by - stddev_samp: league_relegation_playoffs_stddev_samp_order_by - sum: league_relegation_playoffs_sum_order_by - var_pop: league_relegation_playoffs_var_pop_order_by - var_samp: league_relegation_playoffs_var_samp_order_by - variance: league_relegation_playoffs_variance_order_by -} - -""" -input type for inserting array relation for remote table "league_relegation_playoffs" -""" -input league_relegation_playoffs_arr_rel_insert_input { - data: [league_relegation_playoffs_insert_input!]! - - """upsert condition""" - on_conflict: league_relegation_playoffs_on_conflict -} - -"""aggregate avg on columns""" -type league_relegation_playoffs_avg_fields { - higher_slots: Float -} - -""" -order by avg() on columns of table "league_relegation_playoffs" -""" -input league_relegation_playoffs_avg_order_by { - higher_slots: order_by -} - -""" -Boolean expression to filter rows from the table "league_relegation_playoffs". All fields are combined with a logical 'AND'. -""" -input league_relegation_playoffs_bool_exp { - _and: [league_relegation_playoffs_bool_exp!] - _not: league_relegation_playoffs_bool_exp - _or: [league_relegation_playoffs_bool_exp!] - created_at: timestamptz_comparison_exp - higher_division: league_divisions_bool_exp - higher_division_id: uuid_comparison_exp - higher_slots: Int_comparison_exp - id: uuid_comparison_exp - league_season_id: uuid_comparison_exp - lower_division: league_divisions_bool_exp - lower_division_id: uuid_comparison_exp - resolved_at: timestamptz_comparison_exp - season: league_seasons_bool_exp - tournament: tournaments_bool_exp - tournament_id: uuid_comparison_exp -} - -""" -unique or primary key constraints on table "league_relegation_playoffs" -""" -enum league_relegation_playoffs_constraint { - """ - unique or primary key constraint on columns "higher_division_id", "league_season_id", "lower_division_id" - """ - league_relegation_playoffs_league_season_id_higher_division_key - - """ - unique or primary key constraint on columns "id" - """ - league_relegation_playoffs_pkey -} - -""" -input type for incrementing numeric columns in table "league_relegation_playoffs" -""" -input league_relegation_playoffs_inc_input { - higher_slots: Int -} - -""" -input type for inserting data into table "league_relegation_playoffs" -""" -input league_relegation_playoffs_insert_input { - created_at: timestamptz - higher_division: league_divisions_obj_rel_insert_input - higher_division_id: uuid - higher_slots: Int - id: uuid - league_season_id: uuid - lower_division: league_divisions_obj_rel_insert_input - lower_division_id: uuid - resolved_at: timestamptz - season: league_seasons_obj_rel_insert_input - tournament: tournaments_obj_rel_insert_input - tournament_id: uuid -} - -"""aggregate max on columns""" -type league_relegation_playoffs_max_fields { - created_at: timestamptz - higher_division_id: uuid - higher_slots: Int - id: uuid - league_season_id: uuid - lower_division_id: uuid - resolved_at: timestamptz - tournament_id: uuid -} - -""" -order by max() on columns of table "league_relegation_playoffs" -""" -input league_relegation_playoffs_max_order_by { - created_at: order_by - higher_division_id: order_by - higher_slots: order_by - id: order_by - league_season_id: order_by - lower_division_id: order_by - resolved_at: order_by - tournament_id: order_by -} - -"""aggregate min on columns""" -type league_relegation_playoffs_min_fields { - created_at: timestamptz - higher_division_id: uuid - higher_slots: Int - id: uuid - league_season_id: uuid - lower_division_id: uuid - resolved_at: timestamptz - tournament_id: uuid -} - -""" -order by min() on columns of table "league_relegation_playoffs" -""" -input league_relegation_playoffs_min_order_by { - created_at: order_by - higher_division_id: order_by - higher_slots: order_by - id: order_by - league_season_id: order_by - lower_division_id: order_by - resolved_at: order_by - tournament_id: order_by -} - -""" -response of any mutation on the table "league_relegation_playoffs" -""" -type league_relegation_playoffs_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [league_relegation_playoffs!]! -} - -""" -on_conflict condition type for table "league_relegation_playoffs" -""" -input league_relegation_playoffs_on_conflict { - constraint: league_relegation_playoffs_constraint! - update_columns: [league_relegation_playoffs_update_column!]! = [] - where: league_relegation_playoffs_bool_exp -} - -""" -Ordering options when selecting data from "league_relegation_playoffs". -""" -input league_relegation_playoffs_order_by { - created_at: order_by - higher_division: league_divisions_order_by - higher_division_id: order_by - higher_slots: order_by - id: order_by - league_season_id: order_by - lower_division: league_divisions_order_by - lower_division_id: order_by - resolved_at: order_by - season: league_seasons_order_by - tournament: tournaments_order_by - tournament_id: order_by -} - -"""primary key columns input for table: league_relegation_playoffs""" -input league_relegation_playoffs_pk_columns_input { - id: uuid! -} - -""" -select columns of table "league_relegation_playoffs" -""" -enum league_relegation_playoffs_select_column { - """column name""" - created_at - - """column name""" - higher_division_id - - """column name""" - higher_slots - - """column name""" - id - - """column name""" - league_season_id - - """column name""" - lower_division_id - - """column name""" - resolved_at - - """column name""" - tournament_id -} - -""" -input type for updating data in table "league_relegation_playoffs" -""" -input league_relegation_playoffs_set_input { - created_at: timestamptz - higher_division_id: uuid - higher_slots: Int - id: uuid - league_season_id: uuid - lower_division_id: uuid - resolved_at: timestamptz - tournament_id: uuid -} - -"""aggregate stddev on columns""" -type league_relegation_playoffs_stddev_fields { - higher_slots: Float -} - -""" -order by stddev() on columns of table "league_relegation_playoffs" -""" -input league_relegation_playoffs_stddev_order_by { - higher_slots: order_by -} - -"""aggregate stddev_pop on columns""" -type league_relegation_playoffs_stddev_pop_fields { - higher_slots: Float -} - -""" -order by stddev_pop() on columns of table "league_relegation_playoffs" -""" -input league_relegation_playoffs_stddev_pop_order_by { - higher_slots: order_by -} - -"""aggregate stddev_samp on columns""" -type league_relegation_playoffs_stddev_samp_fields { - higher_slots: Float -} - -""" -order by stddev_samp() on columns of table "league_relegation_playoffs" -""" -input league_relegation_playoffs_stddev_samp_order_by { - higher_slots: order_by -} - -""" -Streaming cursor of the table "league_relegation_playoffs" -""" -input league_relegation_playoffs_stream_cursor_input { - """Stream column input with initial value""" - initial_value: league_relegation_playoffs_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input league_relegation_playoffs_stream_cursor_value_input { - created_at: timestamptz - higher_division_id: uuid - higher_slots: Int - id: uuid - league_season_id: uuid - lower_division_id: uuid - resolved_at: timestamptz - tournament_id: uuid -} - -"""aggregate sum on columns""" -type league_relegation_playoffs_sum_fields { - higher_slots: Int -} - -""" -order by sum() on columns of table "league_relegation_playoffs" -""" -input league_relegation_playoffs_sum_order_by { - higher_slots: order_by -} - -""" -update columns of table "league_relegation_playoffs" -""" -enum league_relegation_playoffs_update_column { - """column name""" - created_at - - """column name""" - higher_division_id - - """column name""" - higher_slots - - """column name""" - id - - """column name""" - league_season_id - - """column name""" - lower_division_id - - """column name""" - resolved_at - - """column name""" - tournament_id -} - -input league_relegation_playoffs_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: league_relegation_playoffs_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: league_relegation_playoffs_set_input - - """filter the rows which have to be updated""" - where: league_relegation_playoffs_bool_exp! -} - -"""aggregate var_pop on columns""" -type league_relegation_playoffs_var_pop_fields { - higher_slots: Float -} - -""" -order by var_pop() on columns of table "league_relegation_playoffs" -""" -input league_relegation_playoffs_var_pop_order_by { - higher_slots: order_by -} - -"""aggregate var_samp on columns""" -type league_relegation_playoffs_var_samp_fields { - higher_slots: Float -} - -""" -order by var_samp() on columns of table "league_relegation_playoffs" -""" -input league_relegation_playoffs_var_samp_order_by { - higher_slots: order_by -} - -"""aggregate variance on columns""" -type league_relegation_playoffs_variance_fields { - higher_slots: Float -} - -""" -order by variance() on columns of table "league_relegation_playoffs" -""" -input league_relegation_playoffs_variance_order_by { - higher_slots: order_by -} - -""" -columns and relationships of "league_scheduling_proposals" -""" -type league_scheduling_proposals { - """An object relationship""" - bracket: tournament_brackets! - created_at: timestamptz! - - """An object relationship""" - e_proposal_status: e_league_proposal_statuses! - id: uuid! - message: String - - """An object relationship""" - proposed_by: players! - proposed_by_league_team_season_id: uuid - proposed_by_steam_id: bigint! - proposed_time: timestamptz! - - """An object relationship""" - responded_by: players - responded_by_steam_id: bigint - status: e_league_proposal_statuses_enum! - - """An object relationship""" - team_season: league_team_seasons - tournament_bracket_id: uuid! -} - -""" -aggregated selection of "league_scheduling_proposals" -""" -type league_scheduling_proposals_aggregate { - aggregate: league_scheduling_proposals_aggregate_fields - nodes: [league_scheduling_proposals!]! -} - -input league_scheduling_proposals_aggregate_bool_exp { - count: league_scheduling_proposals_aggregate_bool_exp_count -} - -input league_scheduling_proposals_aggregate_bool_exp_count { - arguments: [league_scheduling_proposals_select_column!] - distinct: Boolean - filter: league_scheduling_proposals_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "league_scheduling_proposals" -""" -type league_scheduling_proposals_aggregate_fields { - avg: league_scheduling_proposals_avg_fields - count(columns: [league_scheduling_proposals_select_column!], distinct: Boolean): Int! - max: league_scheduling_proposals_max_fields - min: league_scheduling_proposals_min_fields - stddev: league_scheduling_proposals_stddev_fields - stddev_pop: league_scheduling_proposals_stddev_pop_fields - stddev_samp: league_scheduling_proposals_stddev_samp_fields - sum: league_scheduling_proposals_sum_fields - var_pop: league_scheduling_proposals_var_pop_fields - var_samp: league_scheduling_proposals_var_samp_fields - variance: league_scheduling_proposals_variance_fields -} - -""" -order by aggregate values of table "league_scheduling_proposals" -""" -input league_scheduling_proposals_aggregate_order_by { - avg: league_scheduling_proposals_avg_order_by - count: order_by - max: league_scheduling_proposals_max_order_by - min: league_scheduling_proposals_min_order_by - stddev: league_scheduling_proposals_stddev_order_by - stddev_pop: league_scheduling_proposals_stddev_pop_order_by - stddev_samp: league_scheduling_proposals_stddev_samp_order_by - sum: league_scheduling_proposals_sum_order_by - var_pop: league_scheduling_proposals_var_pop_order_by - var_samp: league_scheduling_proposals_var_samp_order_by - variance: league_scheduling_proposals_variance_order_by -} - -""" -input type for inserting array relation for remote table "league_scheduling_proposals" -""" -input league_scheduling_proposals_arr_rel_insert_input { - data: [league_scheduling_proposals_insert_input!]! - - """upsert condition""" - on_conflict: league_scheduling_proposals_on_conflict -} - -"""aggregate avg on columns""" -type league_scheduling_proposals_avg_fields { - proposed_by_steam_id: Float - responded_by_steam_id: Float -} - -""" -order by avg() on columns of table "league_scheduling_proposals" -""" -input league_scheduling_proposals_avg_order_by { - proposed_by_steam_id: order_by - responded_by_steam_id: order_by -} - -""" -Boolean expression to filter rows from the table "league_scheduling_proposals". All fields are combined with a logical 'AND'. -""" -input league_scheduling_proposals_bool_exp { - _and: [league_scheduling_proposals_bool_exp!] - _not: league_scheduling_proposals_bool_exp - _or: [league_scheduling_proposals_bool_exp!] - bracket: tournament_brackets_bool_exp - created_at: timestamptz_comparison_exp - e_proposal_status: e_league_proposal_statuses_bool_exp - id: uuid_comparison_exp - message: String_comparison_exp - proposed_by: players_bool_exp - proposed_by_league_team_season_id: uuid_comparison_exp - proposed_by_steam_id: bigint_comparison_exp - proposed_time: timestamptz_comparison_exp - responded_by: players_bool_exp - responded_by_steam_id: bigint_comparison_exp - status: e_league_proposal_statuses_enum_comparison_exp - team_season: league_team_seasons_bool_exp - tournament_bracket_id: uuid_comparison_exp -} - -""" -unique or primary key constraints on table "league_scheduling_proposals" -""" -enum league_scheduling_proposals_constraint { - """ - unique or primary key constraint on columns "id" - """ - league_scheduling_proposals_pkey -} - -""" -input type for incrementing numeric columns in table "league_scheduling_proposals" -""" -input league_scheduling_proposals_inc_input { - proposed_by_steam_id: bigint - responded_by_steam_id: bigint -} - -""" -input type for inserting data into table "league_scheduling_proposals" -""" -input league_scheduling_proposals_insert_input { - bracket: tournament_brackets_obj_rel_insert_input - created_at: timestamptz - e_proposal_status: e_league_proposal_statuses_obj_rel_insert_input - id: uuid - message: String - proposed_by: players_obj_rel_insert_input - proposed_by_league_team_season_id: uuid - proposed_by_steam_id: bigint - proposed_time: timestamptz - responded_by: players_obj_rel_insert_input - responded_by_steam_id: bigint - status: e_league_proposal_statuses_enum - team_season: league_team_seasons_obj_rel_insert_input - tournament_bracket_id: uuid -} - -"""aggregate max on columns""" -type league_scheduling_proposals_max_fields { - created_at: timestamptz - id: uuid - message: String - proposed_by_league_team_season_id: uuid - proposed_by_steam_id: bigint - proposed_time: timestamptz - responded_by_steam_id: bigint - tournament_bracket_id: uuid -} - -""" -order by max() on columns of table "league_scheduling_proposals" -""" -input league_scheduling_proposals_max_order_by { - created_at: order_by - id: order_by - message: order_by - proposed_by_league_team_season_id: order_by - proposed_by_steam_id: order_by - proposed_time: order_by - responded_by_steam_id: order_by - tournament_bracket_id: order_by -} - -"""aggregate min on columns""" -type league_scheduling_proposals_min_fields { - created_at: timestamptz - id: uuid - message: String - proposed_by_league_team_season_id: uuid - proposed_by_steam_id: bigint - proposed_time: timestamptz - responded_by_steam_id: bigint - tournament_bracket_id: uuid -} - -""" -order by min() on columns of table "league_scheduling_proposals" -""" -input league_scheduling_proposals_min_order_by { - created_at: order_by - id: order_by - message: order_by - proposed_by_league_team_season_id: order_by - proposed_by_steam_id: order_by - proposed_time: order_by - responded_by_steam_id: order_by - tournament_bracket_id: order_by -} - -""" -response of any mutation on the table "league_scheduling_proposals" -""" -type league_scheduling_proposals_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [league_scheduling_proposals!]! -} - -""" -on_conflict condition type for table "league_scheduling_proposals" -""" -input league_scheduling_proposals_on_conflict { - constraint: league_scheduling_proposals_constraint! - update_columns: [league_scheduling_proposals_update_column!]! = [] - where: league_scheduling_proposals_bool_exp -} - -""" -Ordering options when selecting data from "league_scheduling_proposals". -""" -input league_scheduling_proposals_order_by { - bracket: tournament_brackets_order_by - created_at: order_by - e_proposal_status: e_league_proposal_statuses_order_by - id: order_by - message: order_by - proposed_by: players_order_by - proposed_by_league_team_season_id: order_by - proposed_by_steam_id: order_by - proposed_time: order_by - responded_by: players_order_by - responded_by_steam_id: order_by - status: order_by - team_season: league_team_seasons_order_by - tournament_bracket_id: order_by -} - -"""primary key columns input for table: league_scheduling_proposals""" -input league_scheduling_proposals_pk_columns_input { - id: uuid! -} - -""" -select columns of table "league_scheduling_proposals" -""" -enum league_scheduling_proposals_select_column { - """column name""" - created_at - - """column name""" - id - - """column name""" - message - - """column name""" - proposed_by_league_team_season_id - - """column name""" - proposed_by_steam_id - - """column name""" - proposed_time - - """column name""" - responded_by_steam_id - - """column name""" - status - - """column name""" - tournament_bracket_id -} - -""" -input type for updating data in table "league_scheduling_proposals" -""" -input league_scheduling_proposals_set_input { - created_at: timestamptz - id: uuid - message: String - proposed_by_league_team_season_id: uuid - proposed_by_steam_id: bigint - proposed_time: timestamptz - responded_by_steam_id: bigint - status: e_league_proposal_statuses_enum - tournament_bracket_id: uuid -} - -"""aggregate stddev on columns""" -type league_scheduling_proposals_stddev_fields { - proposed_by_steam_id: Float - responded_by_steam_id: Float -} - -""" -order by stddev() on columns of table "league_scheduling_proposals" -""" -input league_scheduling_proposals_stddev_order_by { - proposed_by_steam_id: order_by - responded_by_steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type league_scheduling_proposals_stddev_pop_fields { - proposed_by_steam_id: Float - responded_by_steam_id: Float -} - -""" -order by stddev_pop() on columns of table "league_scheduling_proposals" -""" -input league_scheduling_proposals_stddev_pop_order_by { - proposed_by_steam_id: order_by - responded_by_steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type league_scheduling_proposals_stddev_samp_fields { - proposed_by_steam_id: Float - responded_by_steam_id: Float -} - -""" -order by stddev_samp() on columns of table "league_scheduling_proposals" -""" -input league_scheduling_proposals_stddev_samp_order_by { - proposed_by_steam_id: order_by - responded_by_steam_id: order_by -} - -""" -Streaming cursor of the table "league_scheduling_proposals" -""" -input league_scheduling_proposals_stream_cursor_input { - """Stream column input with initial value""" - initial_value: league_scheduling_proposals_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input league_scheduling_proposals_stream_cursor_value_input { - created_at: timestamptz - id: uuid - message: String - proposed_by_league_team_season_id: uuid - proposed_by_steam_id: bigint - proposed_time: timestamptz - responded_by_steam_id: bigint - status: e_league_proposal_statuses_enum - tournament_bracket_id: uuid -} - -"""aggregate sum on columns""" -type league_scheduling_proposals_sum_fields { - proposed_by_steam_id: bigint - responded_by_steam_id: bigint -} - -""" -order by sum() on columns of table "league_scheduling_proposals" -""" -input league_scheduling_proposals_sum_order_by { - proposed_by_steam_id: order_by - responded_by_steam_id: order_by -} - -""" -update columns of table "league_scheduling_proposals" -""" -enum league_scheduling_proposals_update_column { - """column name""" - created_at - - """column name""" - id - - """column name""" - message - - """column name""" - proposed_by_league_team_season_id - - """column name""" - proposed_by_steam_id - - """column name""" - proposed_time - - """column name""" - responded_by_steam_id - - """column name""" - status - - """column name""" - tournament_bracket_id -} - -input league_scheduling_proposals_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: league_scheduling_proposals_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: league_scheduling_proposals_set_input - - """filter the rows which have to be updated""" - where: league_scheduling_proposals_bool_exp! -} - -"""aggregate var_pop on columns""" -type league_scheduling_proposals_var_pop_fields { - proposed_by_steam_id: Float - responded_by_steam_id: Float -} - -""" -order by var_pop() on columns of table "league_scheduling_proposals" -""" -input league_scheduling_proposals_var_pop_order_by { - proposed_by_steam_id: order_by - responded_by_steam_id: order_by -} - -"""aggregate var_samp on columns""" -type league_scheduling_proposals_var_samp_fields { - proposed_by_steam_id: Float - responded_by_steam_id: Float -} - -""" -order by var_samp() on columns of table "league_scheduling_proposals" -""" -input league_scheduling_proposals_var_samp_order_by { - proposed_by_steam_id: order_by - responded_by_steam_id: order_by -} - -"""aggregate variance on columns""" -type league_scheduling_proposals_variance_fields { - proposed_by_steam_id: Float - responded_by_steam_id: Float -} - -""" -order by variance() on columns of table "league_scheduling_proposals" -""" -input league_scheduling_proposals_variance_order_by { - proposed_by_steam_id: order_by - responded_by_steam_id: order_by -} - -""" -columns and relationships of "league_season_divisions" -""" -type league_season_divisions { - created_at: timestamptz! - - """An object relationship""" - division: league_divisions! - id: uuid! - league_division_id: uuid! - league_season_id: uuid! - - """An object relationship""" - season: league_seasons! - - """An array relationship""" - standings( - """distinct select on columns""" - distinct_on: [v_league_division_standings_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_league_division_standings_order_by!] - - """filter the rows returned""" - where: v_league_division_standings_bool_exp - ): [v_league_division_standings!]! - - """An aggregate relationship""" - standings_aggregate( - """distinct select on columns""" - distinct_on: [v_league_division_standings_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_league_division_standings_order_by!] - - """filter the rows returned""" - where: v_league_division_standings_bool_exp - ): v_league_division_standings_aggregate! - - """An object relationship""" - tournament: tournaments - tournament_id: uuid -} - -""" -aggregated selection of "league_season_divisions" -""" -type league_season_divisions_aggregate { - aggregate: league_season_divisions_aggregate_fields - nodes: [league_season_divisions!]! -} - -input league_season_divisions_aggregate_bool_exp { - count: league_season_divisions_aggregate_bool_exp_count -} - -input league_season_divisions_aggregate_bool_exp_count { - arguments: [league_season_divisions_select_column!] - distinct: Boolean - filter: league_season_divisions_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "league_season_divisions" -""" -type league_season_divisions_aggregate_fields { - count(columns: [league_season_divisions_select_column!], distinct: Boolean): Int! - max: league_season_divisions_max_fields - min: league_season_divisions_min_fields -} - -""" -order by aggregate values of table "league_season_divisions" -""" -input league_season_divisions_aggregate_order_by { - count: order_by - max: league_season_divisions_max_order_by - min: league_season_divisions_min_order_by -} - -""" -input type for inserting array relation for remote table "league_season_divisions" -""" -input league_season_divisions_arr_rel_insert_input { - data: [league_season_divisions_insert_input!]! - - """upsert condition""" - on_conflict: league_season_divisions_on_conflict -} - -""" -Boolean expression to filter rows from the table "league_season_divisions". All fields are combined with a logical 'AND'. -""" -input league_season_divisions_bool_exp { - _and: [league_season_divisions_bool_exp!] - _not: league_season_divisions_bool_exp - _or: [league_season_divisions_bool_exp!] - created_at: timestamptz_comparison_exp - division: league_divisions_bool_exp - id: uuid_comparison_exp - league_division_id: uuid_comparison_exp - league_season_id: uuid_comparison_exp - season: league_seasons_bool_exp - standings: v_league_division_standings_bool_exp - standings_aggregate: v_league_division_standings_aggregate_bool_exp - tournament: tournaments_bool_exp - tournament_id: uuid_comparison_exp -} - -""" -unique or primary key constraints on table "league_season_divisions" -""" -enum league_season_divisions_constraint { - """ - unique or primary key constraint on columns "league_division_id", "league_season_id" - """ - league_season_divisions_league_season_id_league_division_id_key - - """ - unique or primary key constraint on columns "id" - """ - league_season_divisions_pkey - - """ - unique or primary key constraint on columns "tournament_id" - """ - league_season_divisions_tournament_id_key -} - -""" -input type for inserting data into table "league_season_divisions" -""" -input league_season_divisions_insert_input { - created_at: timestamptz - division: league_divisions_obj_rel_insert_input - id: uuid - league_division_id: uuid - league_season_id: uuid - season: league_seasons_obj_rel_insert_input - standings: v_league_division_standings_arr_rel_insert_input - tournament: tournaments_obj_rel_insert_input - tournament_id: uuid -} - -"""aggregate max on columns""" -type league_season_divisions_max_fields { - created_at: timestamptz - id: uuid - league_division_id: uuid - league_season_id: uuid - tournament_id: uuid -} - -""" -order by max() on columns of table "league_season_divisions" -""" -input league_season_divisions_max_order_by { - created_at: order_by - id: order_by - league_division_id: order_by - league_season_id: order_by - tournament_id: order_by -} - -"""aggregate min on columns""" -type league_season_divisions_min_fields { - created_at: timestamptz - id: uuid - league_division_id: uuid - league_season_id: uuid - tournament_id: uuid -} - -""" -order by min() on columns of table "league_season_divisions" -""" -input league_season_divisions_min_order_by { - created_at: order_by - id: order_by - league_division_id: order_by - league_season_id: order_by - tournament_id: order_by -} - -""" -response of any mutation on the table "league_season_divisions" -""" -type league_season_divisions_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [league_season_divisions!]! -} - -""" -input type for inserting object relation for remote table "league_season_divisions" -""" -input league_season_divisions_obj_rel_insert_input { - data: league_season_divisions_insert_input! - - """upsert condition""" - on_conflict: league_season_divisions_on_conflict -} - -""" -on_conflict condition type for table "league_season_divisions" -""" -input league_season_divisions_on_conflict { - constraint: league_season_divisions_constraint! - update_columns: [league_season_divisions_update_column!]! = [] - where: league_season_divisions_bool_exp -} - -"""Ordering options when selecting data from "league_season_divisions".""" -input league_season_divisions_order_by { - created_at: order_by - division: league_divisions_order_by - id: order_by - league_division_id: order_by - league_season_id: order_by - season: league_seasons_order_by - standings_aggregate: v_league_division_standings_aggregate_order_by - tournament: tournaments_order_by - tournament_id: order_by -} - -"""primary key columns input for table: league_season_divisions""" -input league_season_divisions_pk_columns_input { - id: uuid! -} - -""" -select columns of table "league_season_divisions" -""" -enum league_season_divisions_select_column { - """column name""" - created_at - - """column name""" - id - - """column name""" - league_division_id - - """column name""" - league_season_id - - """column name""" - tournament_id -} - -""" -input type for updating data in table "league_season_divisions" -""" -input league_season_divisions_set_input { - created_at: timestamptz - id: uuid - league_division_id: uuid - league_season_id: uuid - tournament_id: uuid -} - -""" -Streaming cursor of the table "league_season_divisions" -""" -input league_season_divisions_stream_cursor_input { - """Stream column input with initial value""" - initial_value: league_season_divisions_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input league_season_divisions_stream_cursor_value_input { - created_at: timestamptz - id: uuid - league_division_id: uuid - league_season_id: uuid - tournament_id: uuid -} - -""" -update columns of table "league_season_divisions" -""" -enum league_season_divisions_update_column { - """column name""" - created_at - - """column name""" - id - - """column name""" - league_division_id - - """column name""" - league_season_id - - """column name""" - tournament_id -} - -input league_season_divisions_updates { - """sets the columns of the filtered rows to the given values""" - _set: league_season_divisions_set_input - - """filter the rows which have to be updated""" - where: league_season_divisions_bool_exp! -} - -""" -columns and relationships of "league_seasons" -""" -type league_seasons { - auto_regular_season_format: Boolean! - - """An array relationship""" - awards( - """distinct select on columns""" - distinct_on: [award_recipients_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: [award_recipients_order_by!] - - """filter the rows returned""" - where: award_recipients_bool_exp - ): [award_recipients!]! - - """An aggregate relationship""" - awards_aggregate( - """distinct select on columns""" - distinct_on: [award_recipients_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: [award_recipients_order_by!] - - """filter the rows returned""" - where: award_recipients_bool_exp - ): award_recipients_aggregate! - - """ - A computed field, executes function "can_register_for_league_season" - """ - can_register: Boolean - created_at: timestamptz! - created_by_steam_id: bigint - default_best_of: Int! - direct_promote_count: Int! - direct_relegate_count: Int! - - """An object relationship""" - e_league_season_status: e_league_season_statuses! - games_per_week: Int! - id: uuid! - - """ - A computed field, executes function "is_league_season_admin" - """ - is_league_admin: Boolean - - """ - A computed field, executes function "league_season_is_roster_locked" - """ - is_roster_locked: Boolean - match_options_id: uuid - - """An array relationship""" - match_weeks( - """distinct select on columns""" - distinct_on: [league_match_weeks_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: [league_match_weeks_order_by!] - - """filter the rows returned""" - where: league_match_weeks_bool_exp - ): [league_match_weeks!]! - - """An aggregate relationship""" - match_weeks_aggregate( - """distinct select on columns""" - distinct_on: [league_match_weeks_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: [league_match_weeks_order_by!] - - """filter the rows returned""" - where: league_match_weeks_bool_exp - ): league_match_weeks_aggregate! - match_weeks_count: Int! - max_roster_size: Int - min_roster_size: Int! - - """An array relationship""" - movements( - """distinct select on columns""" - distinct_on: [league_team_movements_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: [league_team_movements_order_by!] - - """filter the rows returned""" - where: league_team_movements_bool_exp - ): [league_team_movements!]! - - """An aggregate relationship""" - movements_aggregate( - """distinct select on columns""" - distinct_on: [league_team_movements_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: [league_team_movements_order_by!] - - """filter the rows returned""" - where: league_team_movements_bool_exp - ): league_team_movements_aggregate! - - """ - A computed field, executes function "league_season_my_registration" - """ - my_registration( - """distinct select on columns""" - distinct_on: [league_team_seasons_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: [league_team_seasons_order_by!] - - """filter the rows returned""" - where: league_team_seasons_bool_exp - ): [league_team_seasons!] - name: String! - - """An object relationship""" - options: match_options - - """An array relationship""" - player_stats( - """distinct select on columns""" - distinct_on: [v_league_season_player_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_league_season_player_stats_order_by!] - - """filter the rows returned""" - where: v_league_season_player_stats_bool_exp - ): [v_league_season_player_stats!]! - - """An aggregate relationship""" - player_stats_aggregate( - """distinct select on columns""" - distinct_on: [v_league_season_player_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_league_season_player_stats_order_by!] - - """filter the rows returned""" - where: v_league_season_player_stats_bool_exp - ): v_league_season_player_stats_aggregate! - playoff_best_of: Int! - playoff_round_best_of( - """JSON select path""" - path: String - ): jsonb! - playoff_seats: Int! - playoff_stage_type: e_tournament_stage_types_enum! - playoff_third_place_match: Boolean! - promote_count: Int! - regular_season_stage_type: e_tournament_stage_types_enum! - relegate_count: Int! - relegation_down_count: Int! - - """An array relationship""" - relegation_playoffs( - """distinct select on columns""" - distinct_on: [league_relegation_playoffs_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: [league_relegation_playoffs_order_by!] - - """filter the rows returned""" - where: league_relegation_playoffs_bool_exp - ): [league_relegation_playoffs!]! - - """An aggregate relationship""" - relegation_playoffs_aggregate( - """distinct select on columns""" - distinct_on: [league_relegation_playoffs_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: [league_relegation_playoffs_order_by!] - - """filter the rows returned""" - where: league_relegation_playoffs_bool_exp - ): league_relegation_playoffs_aggregate! - relegation_up_count: Int! - roster_lock_at: timestamptz - - """An array relationship""" - season_divisions( - """distinct select on columns""" - distinct_on: [league_season_divisions_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: [league_season_divisions_order_by!] - - """filter the rows returned""" - where: league_season_divisions_bool_exp - ): [league_season_divisions!]! - - """An aggregate relationship""" - season_divisions_aggregate( - """distinct select on columns""" - distinct_on: [league_season_divisions_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: [league_season_divisions_order_by!] - - """filter the rows returned""" - where: league_season_divisions_bool_exp - ): league_season_divisions_aggregate! - season_number: Int - signup_closes_at: timestamptz - signup_opens_at: timestamptz - - """An array relationship""" - standings( - """distinct select on columns""" - distinct_on: [v_league_division_standings_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_league_division_standings_order_by!] - - """filter the rows returned""" - where: v_league_division_standings_bool_exp - ): [v_league_division_standings!]! - - """An aggregate relationship""" - standings_aggregate( - """distinct select on columns""" - distinct_on: [v_league_division_standings_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_league_division_standings_order_by!] - - """filter the rows returned""" - where: v_league_division_standings_bool_exp - ): v_league_division_standings_aggregate! - starts_at: timestamptz - status: e_league_season_statuses_enum! - - """An array relationship""" - team_seasons( - """distinct select on columns""" - distinct_on: [league_team_seasons_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: [league_team_seasons_order_by!] - - """filter the rows returned""" - where: league_team_seasons_bool_exp - ): [league_team_seasons!]! - - """An aggregate relationship""" - team_seasons_aggregate( - """distinct select on columns""" - distinct_on: [league_team_seasons_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: [league_team_seasons_order_by!] - - """filter the rows returned""" - where: league_team_seasons_bool_exp - ): league_team_seasons_aggregate! - week_best_of( - """JSON select path""" - path: String - ): jsonb! -} - -""" -aggregated selection of "league_seasons" -""" -type league_seasons_aggregate { - aggregate: league_seasons_aggregate_fields - nodes: [league_seasons!]! -} - -""" -aggregate fields of "league_seasons" -""" -type league_seasons_aggregate_fields { - avg: league_seasons_avg_fields - count(columns: [league_seasons_select_column!], distinct: Boolean): Int! - max: league_seasons_max_fields - min: league_seasons_min_fields - stddev: league_seasons_stddev_fields - stddev_pop: league_seasons_stddev_pop_fields - stddev_samp: league_seasons_stddev_samp_fields - sum: league_seasons_sum_fields - var_pop: league_seasons_var_pop_fields - var_samp: league_seasons_var_samp_fields - variance: league_seasons_variance_fields -} - -"""append existing jsonb value of filtered columns with new jsonb value""" -input league_seasons_append_input { - playoff_round_best_of: jsonb - week_best_of: jsonb -} - -"""aggregate avg on columns""" -type league_seasons_avg_fields { - created_by_steam_id: Float - default_best_of: Float - direct_promote_count: Float - direct_relegate_count: Float - games_per_week: Float - match_weeks_count: Float - max_roster_size: Float - min_roster_size: Float - playoff_best_of: Float - playoff_seats: Float - promote_count: Float - relegate_count: Float - relegation_down_count: Float - relegation_up_count: Float - season_number: Float -} - -""" -Boolean expression to filter rows from the table "league_seasons". All fields are combined with a logical 'AND'. -""" -input league_seasons_bool_exp { - _and: [league_seasons_bool_exp!] - _not: league_seasons_bool_exp - _or: [league_seasons_bool_exp!] - auto_regular_season_format: Boolean_comparison_exp - awards: award_recipients_bool_exp - awards_aggregate: award_recipients_aggregate_bool_exp - can_register: Boolean_comparison_exp - created_at: timestamptz_comparison_exp - created_by_steam_id: bigint_comparison_exp - default_best_of: Int_comparison_exp - direct_promote_count: Int_comparison_exp - direct_relegate_count: Int_comparison_exp - e_league_season_status: e_league_season_statuses_bool_exp - games_per_week: Int_comparison_exp - id: uuid_comparison_exp - is_league_admin: Boolean_comparison_exp - is_roster_locked: Boolean_comparison_exp - match_options_id: uuid_comparison_exp - match_weeks: league_match_weeks_bool_exp - match_weeks_aggregate: league_match_weeks_aggregate_bool_exp - match_weeks_count: Int_comparison_exp - max_roster_size: Int_comparison_exp - min_roster_size: Int_comparison_exp - movements: league_team_movements_bool_exp - movements_aggregate: league_team_movements_aggregate_bool_exp - my_registration: league_team_seasons_bool_exp - name: String_comparison_exp - options: match_options_bool_exp - player_stats: v_league_season_player_stats_bool_exp - player_stats_aggregate: v_league_season_player_stats_aggregate_bool_exp - playoff_best_of: Int_comparison_exp - playoff_round_best_of: jsonb_comparison_exp - playoff_seats: Int_comparison_exp - playoff_stage_type: e_tournament_stage_types_enum_comparison_exp - playoff_third_place_match: Boolean_comparison_exp - promote_count: Int_comparison_exp - regular_season_stage_type: e_tournament_stage_types_enum_comparison_exp - relegate_count: Int_comparison_exp - relegation_down_count: Int_comparison_exp - relegation_playoffs: league_relegation_playoffs_bool_exp - relegation_playoffs_aggregate: league_relegation_playoffs_aggregate_bool_exp - relegation_up_count: Int_comparison_exp - roster_lock_at: timestamptz_comparison_exp - season_divisions: league_season_divisions_bool_exp - season_divisions_aggregate: league_season_divisions_aggregate_bool_exp - season_number: Int_comparison_exp - signup_closes_at: timestamptz_comparison_exp - signup_opens_at: timestamptz_comparison_exp - standings: v_league_division_standings_bool_exp - standings_aggregate: v_league_division_standings_aggregate_bool_exp - starts_at: timestamptz_comparison_exp - status: e_league_season_statuses_enum_comparison_exp - team_seasons: league_team_seasons_bool_exp - team_seasons_aggregate: league_team_seasons_aggregate_bool_exp - week_best_of: jsonb_comparison_exp -} - -""" -unique or primary key constraints on table "league_seasons" -""" -enum league_seasons_constraint { - """ - unique or primary key constraint on columns "name" - """ - league_seasons_name_key - - """ - unique or primary key constraint on columns "id" - """ - league_seasons_pkey - - """ - unique or primary key constraint on columns "season_number" - """ - league_seasons_season_number_key -} - -""" -delete the field or element with specified path (for JSON arrays, negative integers count from the end) -""" -input league_seasons_delete_at_path_input { - playoff_round_best_of: [String!] - week_best_of: [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 league_seasons_delete_elem_input { - playoff_round_best_of: Int - week_best_of: Int -} - -""" -delete key/value pair or string element. key/value pairs are matched based on their key value -""" -input league_seasons_delete_key_input { - playoff_round_best_of: String - week_best_of: String -} - -""" -input type for incrementing numeric columns in table "league_seasons" -""" -input league_seasons_inc_input { - created_by_steam_id: bigint - default_best_of: Int - direct_promote_count: Int - direct_relegate_count: Int - games_per_week: Int - match_weeks_count: Int - max_roster_size: Int - min_roster_size: Int - playoff_best_of: Int - playoff_seats: Int - promote_count: Int - relegate_count: Int - relegation_down_count: Int - relegation_up_count: Int - season_number: Int -} - -""" -input type for inserting data into table "league_seasons" -""" -input league_seasons_insert_input { - auto_regular_season_format: Boolean - awards: award_recipients_arr_rel_insert_input - created_at: timestamptz - created_by_steam_id: bigint - default_best_of: Int - direct_promote_count: Int - direct_relegate_count: Int - e_league_season_status: e_league_season_statuses_obj_rel_insert_input - games_per_week: Int - id: uuid - match_options_id: uuid - match_weeks: league_match_weeks_arr_rel_insert_input - match_weeks_count: Int - max_roster_size: Int - min_roster_size: Int - movements: league_team_movements_arr_rel_insert_input - name: String - options: match_options_obj_rel_insert_input - player_stats: v_league_season_player_stats_arr_rel_insert_input - playoff_best_of: Int - playoff_round_best_of: jsonb - playoff_seats: Int - playoff_stage_type: e_tournament_stage_types_enum - playoff_third_place_match: Boolean - promote_count: Int - regular_season_stage_type: e_tournament_stage_types_enum - relegate_count: Int - relegation_down_count: Int - relegation_playoffs: league_relegation_playoffs_arr_rel_insert_input - relegation_up_count: Int - roster_lock_at: timestamptz - season_divisions: league_season_divisions_arr_rel_insert_input - season_number: Int - signup_closes_at: timestamptz - signup_opens_at: timestamptz - standings: v_league_division_standings_arr_rel_insert_input - starts_at: timestamptz - status: e_league_season_statuses_enum - team_seasons: league_team_seasons_arr_rel_insert_input - week_best_of: jsonb -} - -"""aggregate max on columns""" -type league_seasons_max_fields { - created_at: timestamptz - created_by_steam_id: bigint - default_best_of: Int - direct_promote_count: Int - direct_relegate_count: Int - games_per_week: Int - id: uuid - match_options_id: uuid - match_weeks_count: Int - max_roster_size: Int - min_roster_size: Int - name: String - playoff_best_of: Int - playoff_seats: Int - promote_count: Int - relegate_count: Int - relegation_down_count: Int - relegation_up_count: Int - roster_lock_at: timestamptz - season_number: Int - signup_closes_at: timestamptz - signup_opens_at: timestamptz - starts_at: timestamptz -} - -"""aggregate min on columns""" -type league_seasons_min_fields { - created_at: timestamptz - created_by_steam_id: bigint - default_best_of: Int - direct_promote_count: Int - direct_relegate_count: Int - games_per_week: Int - id: uuid - match_options_id: uuid - match_weeks_count: Int - max_roster_size: Int - min_roster_size: Int - name: String - playoff_best_of: Int - playoff_seats: Int - promote_count: Int - relegate_count: Int - relegation_down_count: Int - relegation_up_count: Int - roster_lock_at: timestamptz - season_number: Int - signup_closes_at: timestamptz - signup_opens_at: timestamptz - starts_at: timestamptz -} - -""" -response of any mutation on the table "league_seasons" -""" -type league_seasons_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [league_seasons!]! -} - -""" -input type for inserting object relation for remote table "league_seasons" -""" -input league_seasons_obj_rel_insert_input { - data: league_seasons_insert_input! - - """upsert condition""" - on_conflict: league_seasons_on_conflict -} - -""" -on_conflict condition type for table "league_seasons" -""" -input league_seasons_on_conflict { - constraint: league_seasons_constraint! - update_columns: [league_seasons_update_column!]! = [] - where: league_seasons_bool_exp -} - -"""Ordering options when selecting data from "league_seasons".""" -input league_seasons_order_by { - auto_regular_season_format: order_by - awards_aggregate: award_recipients_aggregate_order_by - can_register: order_by - created_at: order_by - created_by_steam_id: order_by - default_best_of: order_by - direct_promote_count: order_by - direct_relegate_count: order_by - e_league_season_status: e_league_season_statuses_order_by - games_per_week: order_by - id: order_by - is_league_admin: order_by - is_roster_locked: order_by - match_options_id: order_by - match_weeks_aggregate: league_match_weeks_aggregate_order_by - match_weeks_count: order_by - max_roster_size: order_by - min_roster_size: order_by - movements_aggregate: league_team_movements_aggregate_order_by - my_registration_aggregate: league_team_seasons_aggregate_order_by - name: order_by - options: match_options_order_by - player_stats_aggregate: v_league_season_player_stats_aggregate_order_by - playoff_best_of: order_by - playoff_round_best_of: order_by - playoff_seats: order_by - playoff_stage_type: order_by - playoff_third_place_match: order_by - promote_count: order_by - regular_season_stage_type: order_by - relegate_count: order_by - relegation_down_count: order_by - relegation_playoffs_aggregate: league_relegation_playoffs_aggregate_order_by - relegation_up_count: order_by - roster_lock_at: order_by - season_divisions_aggregate: league_season_divisions_aggregate_order_by - season_number: order_by - signup_closes_at: order_by - signup_opens_at: order_by - standings_aggregate: v_league_division_standings_aggregate_order_by - starts_at: order_by - status: order_by - team_seasons_aggregate: league_team_seasons_aggregate_order_by - week_best_of: order_by -} - -"""primary key columns input for table: league_seasons""" -input league_seasons_pk_columns_input { - id: uuid! -} - -"""prepend existing jsonb value of filtered columns with new jsonb value""" -input league_seasons_prepend_input { - playoff_round_best_of: jsonb - week_best_of: jsonb -} - -""" -select columns of table "league_seasons" -""" -enum league_seasons_select_column { - """column name""" - auto_regular_season_format - - """column name""" - created_at - - """column name""" - created_by_steam_id - - """column name""" - default_best_of - - """column name""" - direct_promote_count - - """column name""" - direct_relegate_count - - """column name""" - games_per_week - - """column name""" - id - - """column name""" - match_options_id - - """column name""" - match_weeks_count - - """column name""" - max_roster_size - - """column name""" - min_roster_size - - """column name""" - name - - """column name""" - playoff_best_of - - """column name""" - playoff_round_best_of - - """column name""" - playoff_seats - - """column name""" - playoff_stage_type - - """column name""" - playoff_third_place_match - - """column name""" - promote_count - - """column name""" - regular_season_stage_type - - """column name""" - relegate_count - - """column name""" - relegation_down_count - - """column name""" - relegation_up_count - - """column name""" - roster_lock_at - - """column name""" - season_number - - """column name""" - signup_closes_at - - """column name""" - signup_opens_at - - """column name""" - starts_at - - """column name""" - status - - """column name""" - week_best_of -} - -""" -input type for updating data in table "league_seasons" -""" -input league_seasons_set_input { - auto_regular_season_format: Boolean - created_at: timestamptz - created_by_steam_id: bigint - default_best_of: Int - direct_promote_count: Int - direct_relegate_count: Int - games_per_week: Int - id: uuid - match_options_id: uuid - match_weeks_count: Int - max_roster_size: Int - min_roster_size: Int - name: String - playoff_best_of: Int - playoff_round_best_of: jsonb - playoff_seats: Int - playoff_stage_type: e_tournament_stage_types_enum - playoff_third_place_match: Boolean - promote_count: Int - regular_season_stage_type: e_tournament_stage_types_enum - relegate_count: Int - relegation_down_count: Int - relegation_up_count: Int - roster_lock_at: timestamptz - season_number: Int - signup_closes_at: timestamptz - signup_opens_at: timestamptz - starts_at: timestamptz - status: e_league_season_statuses_enum - week_best_of: jsonb -} - -"""aggregate stddev on columns""" -type league_seasons_stddev_fields { - created_by_steam_id: Float - default_best_of: Float - direct_promote_count: Float - direct_relegate_count: Float - games_per_week: Float - match_weeks_count: Float - max_roster_size: Float - min_roster_size: Float - playoff_best_of: Float - playoff_seats: Float - promote_count: Float - relegate_count: Float - relegation_down_count: Float - relegation_up_count: Float - season_number: Float -} - -"""aggregate stddev_pop on columns""" -type league_seasons_stddev_pop_fields { - created_by_steam_id: Float - default_best_of: Float - direct_promote_count: Float - direct_relegate_count: Float - games_per_week: Float - match_weeks_count: Float - max_roster_size: Float - min_roster_size: Float - playoff_best_of: Float - playoff_seats: Float - promote_count: Float - relegate_count: Float - relegation_down_count: Float - relegation_up_count: Float - season_number: Float -} - -"""aggregate stddev_samp on columns""" -type league_seasons_stddev_samp_fields { - created_by_steam_id: Float - default_best_of: Float - direct_promote_count: Float - direct_relegate_count: Float - games_per_week: Float - match_weeks_count: Float - max_roster_size: Float - min_roster_size: Float - playoff_best_of: Float - playoff_seats: Float - promote_count: Float - relegate_count: Float - relegation_down_count: Float - relegation_up_count: Float - season_number: Float -} - -""" -Streaming cursor of the table "league_seasons" -""" -input league_seasons_stream_cursor_input { - """Stream column input with initial value""" - initial_value: league_seasons_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input league_seasons_stream_cursor_value_input { - auto_regular_season_format: Boolean - created_at: timestamptz - created_by_steam_id: bigint - default_best_of: Int - direct_promote_count: Int - direct_relegate_count: Int - games_per_week: Int - id: uuid - match_options_id: uuid - match_weeks_count: Int - max_roster_size: Int - min_roster_size: Int - name: String - playoff_best_of: Int - playoff_round_best_of: jsonb - playoff_seats: Int - playoff_stage_type: e_tournament_stage_types_enum - playoff_third_place_match: Boolean - promote_count: Int - regular_season_stage_type: e_tournament_stage_types_enum - relegate_count: Int - relegation_down_count: Int - relegation_up_count: Int - roster_lock_at: timestamptz - season_number: Int - signup_closes_at: timestamptz - signup_opens_at: timestamptz - starts_at: timestamptz - status: e_league_season_statuses_enum - week_best_of: jsonb -} - -"""aggregate sum on columns""" -type league_seasons_sum_fields { - created_by_steam_id: bigint - default_best_of: Int - direct_promote_count: Int - direct_relegate_count: Int - games_per_week: Int - match_weeks_count: Int - max_roster_size: Int - min_roster_size: Int - playoff_best_of: Int - playoff_seats: Int - promote_count: Int - relegate_count: Int - relegation_down_count: Int - relegation_up_count: Int - season_number: Int -} - -""" -update columns of table "league_seasons" -""" -enum league_seasons_update_column { - """column name""" - auto_regular_season_format - - """column name""" - created_at - - """column name""" - created_by_steam_id - - """column name""" - default_best_of - - """column name""" - direct_promote_count - - """column name""" - direct_relegate_count - - """column name""" - games_per_week - - """column name""" - id - - """column name""" - match_options_id - - """column name""" - match_weeks_count - - """column name""" - max_roster_size - - """column name""" - min_roster_size - - """column name""" - name - - """column name""" - playoff_best_of - - """column name""" - playoff_round_best_of - - """column name""" - playoff_seats - - """column name""" - playoff_stage_type - - """column name""" - playoff_third_place_match - - """column name""" - promote_count - - """column name""" - regular_season_stage_type - - """column name""" - relegate_count - - """column name""" - relegation_down_count - - """column name""" - relegation_up_count - - """column name""" - roster_lock_at - - """column name""" - season_number - - """column name""" - signup_closes_at - - """column name""" - signup_opens_at - - """column name""" - starts_at - - """column name""" - status - - """column name""" - week_best_of -} - -input league_seasons_updates { - """append existing jsonb value of filtered columns with new jsonb value""" - _append: league_seasons_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: league_seasons_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: league_seasons_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: league_seasons_delete_key_input - - """increments the numeric columns with given value of the filtered values""" - _inc: league_seasons_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: league_seasons_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: league_seasons_set_input - - """filter the rows which have to be updated""" - where: league_seasons_bool_exp! -} - -"""aggregate var_pop on columns""" -type league_seasons_var_pop_fields { - created_by_steam_id: Float - default_best_of: Float - direct_promote_count: Float - direct_relegate_count: Float - games_per_week: Float - match_weeks_count: Float - max_roster_size: Float - min_roster_size: Float - playoff_best_of: Float - playoff_seats: Float - promote_count: Float - relegate_count: Float - relegation_down_count: Float - relegation_up_count: Float - season_number: Float -} - -"""aggregate var_samp on columns""" -type league_seasons_var_samp_fields { - created_by_steam_id: Float - default_best_of: Float - direct_promote_count: Float - direct_relegate_count: Float - games_per_week: Float - match_weeks_count: Float - max_roster_size: Float - min_roster_size: Float - playoff_best_of: Float - playoff_seats: Float - promote_count: Float - relegate_count: Float - relegation_down_count: Float - relegation_up_count: Float - season_number: Float -} - -"""aggregate variance on columns""" -type league_seasons_variance_fields { - created_by_steam_id: Float - default_best_of: Float - direct_promote_count: Float - direct_relegate_count: Float - games_per_week: Float - match_weeks_count: Float - max_roster_size: Float - min_roster_size: Float - playoff_best_of: Float - playoff_seats: Float - promote_count: Float - relegate_count: Float - relegation_down_count: Float - relegation_up_count: Float - season_number: Float -} - -""" -columns and relationships of "league_team_movements" -""" -type league_team_movements { - approved_at: timestamptz - - """An object relationship""" - approved_by: players - approved_by_steam_id: bigint - - """An object relationship""" - computed_to_division: league_divisions - computed_to_division_id: uuid - created_at: timestamptz! - - """An object relationship""" - e_movement_type: e_league_movement_types! - final_rank: Int - - """An object relationship""" - final_to_division: league_divisions - final_to_division_id: uuid - - """An object relationship""" - from_division: league_divisions - from_division_id: uuid - id: uuid! - league_season_id: uuid! - - """An object relationship""" - league_team: league_teams! - league_team_id: uuid! - - """An object relationship""" - season: league_seasons! - type: e_league_movement_types_enum! -} - -""" -aggregated selection of "league_team_movements" -""" -type league_team_movements_aggregate { - aggregate: league_team_movements_aggregate_fields - nodes: [league_team_movements!]! -} - -input league_team_movements_aggregate_bool_exp { - count: league_team_movements_aggregate_bool_exp_count -} - -input league_team_movements_aggregate_bool_exp_count { - arguments: [league_team_movements_select_column!] - distinct: Boolean - filter: league_team_movements_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "league_team_movements" -""" -type league_team_movements_aggregate_fields { - avg: league_team_movements_avg_fields - count(columns: [league_team_movements_select_column!], distinct: Boolean): Int! - max: league_team_movements_max_fields - min: league_team_movements_min_fields - stddev: league_team_movements_stddev_fields - stddev_pop: league_team_movements_stddev_pop_fields - stddev_samp: league_team_movements_stddev_samp_fields - sum: league_team_movements_sum_fields - var_pop: league_team_movements_var_pop_fields - var_samp: league_team_movements_var_samp_fields - variance: league_team_movements_variance_fields -} - -""" -order by aggregate values of table "league_team_movements" -""" -input league_team_movements_aggregate_order_by { - avg: league_team_movements_avg_order_by - count: order_by - max: league_team_movements_max_order_by - min: league_team_movements_min_order_by - stddev: league_team_movements_stddev_order_by - stddev_pop: league_team_movements_stddev_pop_order_by - stddev_samp: league_team_movements_stddev_samp_order_by - sum: league_team_movements_sum_order_by - var_pop: league_team_movements_var_pop_order_by - var_samp: league_team_movements_var_samp_order_by - variance: league_team_movements_variance_order_by -} - -""" -input type for inserting array relation for remote table "league_team_movements" -""" -input league_team_movements_arr_rel_insert_input { - data: [league_team_movements_insert_input!]! - - """upsert condition""" - on_conflict: league_team_movements_on_conflict -} - -"""aggregate avg on columns""" -type league_team_movements_avg_fields { - approved_by_steam_id: Float - final_rank: Float -} - -""" -order by avg() on columns of table "league_team_movements" -""" -input league_team_movements_avg_order_by { - approved_by_steam_id: order_by - final_rank: order_by -} - -""" -Boolean expression to filter rows from the table "league_team_movements". All fields are combined with a logical 'AND'. -""" -input league_team_movements_bool_exp { - _and: [league_team_movements_bool_exp!] - _not: league_team_movements_bool_exp - _or: [league_team_movements_bool_exp!] - approved_at: timestamptz_comparison_exp - approved_by: players_bool_exp - approved_by_steam_id: bigint_comparison_exp - computed_to_division: league_divisions_bool_exp - computed_to_division_id: uuid_comparison_exp - created_at: timestamptz_comparison_exp - e_movement_type: e_league_movement_types_bool_exp - final_rank: Int_comparison_exp - final_to_division: league_divisions_bool_exp - final_to_division_id: uuid_comparison_exp - from_division: league_divisions_bool_exp - from_division_id: uuid_comparison_exp - id: uuid_comparison_exp - league_season_id: uuid_comparison_exp - league_team: league_teams_bool_exp - league_team_id: uuid_comparison_exp - season: league_seasons_bool_exp - type: e_league_movement_types_enum_comparison_exp -} - -""" -unique or primary key constraints on table "league_team_movements" -""" -enum league_team_movements_constraint { - """ - unique or primary key constraint on columns "league_season_id", "league_team_id" - """ - league_team_movements_league_season_id_league_team_id_key - - """ - unique or primary key constraint on columns "id" - """ - league_team_movements_pkey -} - -""" -input type for incrementing numeric columns in table "league_team_movements" -""" -input league_team_movements_inc_input { - approved_by_steam_id: bigint - final_rank: Int -} - -""" -input type for inserting data into table "league_team_movements" -""" -input league_team_movements_insert_input { - approved_at: timestamptz - approved_by: players_obj_rel_insert_input - approved_by_steam_id: bigint - computed_to_division: league_divisions_obj_rel_insert_input - computed_to_division_id: uuid - created_at: timestamptz - e_movement_type: e_league_movement_types_obj_rel_insert_input - final_rank: Int - final_to_division: league_divisions_obj_rel_insert_input - final_to_division_id: uuid - from_division: league_divisions_obj_rel_insert_input - from_division_id: uuid - id: uuid - league_season_id: uuid - league_team: league_teams_obj_rel_insert_input - league_team_id: uuid - season: league_seasons_obj_rel_insert_input - type: e_league_movement_types_enum -} - -"""aggregate max on columns""" -type league_team_movements_max_fields { - approved_at: timestamptz - approved_by_steam_id: bigint - computed_to_division_id: uuid - created_at: timestamptz - final_rank: Int - final_to_division_id: uuid - from_division_id: uuid - id: uuid - league_season_id: uuid - league_team_id: uuid -} - -""" -order by max() on columns of table "league_team_movements" -""" -input league_team_movements_max_order_by { - approved_at: order_by - approved_by_steam_id: order_by - computed_to_division_id: order_by - created_at: order_by - final_rank: order_by - final_to_division_id: order_by - from_division_id: order_by - id: order_by - league_season_id: order_by - league_team_id: order_by -} - -"""aggregate min on columns""" -type league_team_movements_min_fields { - approved_at: timestamptz - approved_by_steam_id: bigint - computed_to_division_id: uuid - created_at: timestamptz - final_rank: Int - final_to_division_id: uuid - from_division_id: uuid - id: uuid - league_season_id: uuid - league_team_id: uuid -} - -""" -order by min() on columns of table "league_team_movements" -""" -input league_team_movements_min_order_by { - approved_at: order_by - approved_by_steam_id: order_by - computed_to_division_id: order_by - created_at: order_by - final_rank: order_by - final_to_division_id: order_by - from_division_id: order_by - id: order_by - league_season_id: order_by - league_team_id: order_by -} - -""" -response of any mutation on the table "league_team_movements" -""" -type league_team_movements_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [league_team_movements!]! -} - -""" -on_conflict condition type for table "league_team_movements" -""" -input league_team_movements_on_conflict { - constraint: league_team_movements_constraint! - update_columns: [league_team_movements_update_column!]! = [] - where: league_team_movements_bool_exp -} - -"""Ordering options when selecting data from "league_team_movements".""" -input league_team_movements_order_by { - approved_at: order_by - approved_by: players_order_by - approved_by_steam_id: order_by - computed_to_division: league_divisions_order_by - computed_to_division_id: order_by - created_at: order_by - e_movement_type: e_league_movement_types_order_by - final_rank: order_by - final_to_division: league_divisions_order_by - final_to_division_id: order_by - from_division: league_divisions_order_by - from_division_id: order_by - id: order_by - league_season_id: order_by - league_team: league_teams_order_by - league_team_id: order_by - season: league_seasons_order_by - type: order_by -} - -"""primary key columns input for table: league_team_movements""" -input league_team_movements_pk_columns_input { - id: uuid! -} - -""" -select columns of table "league_team_movements" -""" -enum league_team_movements_select_column { - """column name""" - approved_at - - """column name""" - approved_by_steam_id - - """column name""" - computed_to_division_id - - """column name""" - created_at - - """column name""" - final_rank - - """column name""" - final_to_division_id - - """column name""" - from_division_id - - """column name""" - id - - """column name""" - league_season_id - - """column name""" - league_team_id - - """column name""" - type -} - -""" -input type for updating data in table "league_team_movements" -""" -input league_team_movements_set_input { - approved_at: timestamptz - approved_by_steam_id: bigint - computed_to_division_id: uuid - created_at: timestamptz - final_rank: Int - final_to_division_id: uuid - from_division_id: uuid - id: uuid - league_season_id: uuid - league_team_id: uuid - type: e_league_movement_types_enum -} - -"""aggregate stddev on columns""" -type league_team_movements_stddev_fields { - approved_by_steam_id: Float - final_rank: Float -} - -""" -order by stddev() on columns of table "league_team_movements" -""" -input league_team_movements_stddev_order_by { - approved_by_steam_id: order_by - final_rank: order_by -} - -"""aggregate stddev_pop on columns""" -type league_team_movements_stddev_pop_fields { - approved_by_steam_id: Float - final_rank: Float -} - -""" -order by stddev_pop() on columns of table "league_team_movements" -""" -input league_team_movements_stddev_pop_order_by { - approved_by_steam_id: order_by - final_rank: order_by -} - -"""aggregate stddev_samp on columns""" -type league_team_movements_stddev_samp_fields { - approved_by_steam_id: Float - final_rank: Float -} - -""" -order by stddev_samp() on columns of table "league_team_movements" -""" -input league_team_movements_stddev_samp_order_by { - approved_by_steam_id: order_by - final_rank: order_by -} - -""" -Streaming cursor of the table "league_team_movements" -""" -input league_team_movements_stream_cursor_input { - """Stream column input with initial value""" - initial_value: league_team_movements_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input league_team_movements_stream_cursor_value_input { - approved_at: timestamptz - approved_by_steam_id: bigint - computed_to_division_id: uuid - created_at: timestamptz - final_rank: Int - final_to_division_id: uuid - from_division_id: uuid - id: uuid - league_season_id: uuid - league_team_id: uuid - type: e_league_movement_types_enum -} - -"""aggregate sum on columns""" -type league_team_movements_sum_fields { - approved_by_steam_id: bigint - final_rank: Int -} - -""" -order by sum() on columns of table "league_team_movements" -""" -input league_team_movements_sum_order_by { - approved_by_steam_id: order_by - final_rank: order_by -} - -""" -update columns of table "league_team_movements" -""" -enum league_team_movements_update_column { - """column name""" - approved_at - - """column name""" - approved_by_steam_id - - """column name""" - computed_to_division_id - - """column name""" - created_at - - """column name""" - final_rank - - """column name""" - final_to_division_id - - """column name""" - from_division_id - - """column name""" - id - - """column name""" - league_season_id - - """column name""" - league_team_id - - """column name""" - type -} - -input league_team_movements_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: league_team_movements_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: league_team_movements_set_input - - """filter the rows which have to be updated""" - where: league_team_movements_bool_exp! -} - -"""aggregate var_pop on columns""" -type league_team_movements_var_pop_fields { - approved_by_steam_id: Float - final_rank: Float -} - -""" -order by var_pop() on columns of table "league_team_movements" -""" -input league_team_movements_var_pop_order_by { - approved_by_steam_id: order_by - final_rank: order_by -} - -"""aggregate var_samp on columns""" -type league_team_movements_var_samp_fields { - approved_by_steam_id: Float - final_rank: Float -} - -""" -order by var_samp() on columns of table "league_team_movements" -""" -input league_team_movements_var_samp_order_by { - approved_by_steam_id: order_by - final_rank: order_by -} - -"""aggregate variance on columns""" -type league_team_movements_variance_fields { - approved_by_steam_id: Float - final_rank: Float -} - -""" -order by variance() on columns of table "league_team_movements" -""" -input league_team_movements_variance_order_by { - approved_by_steam_id: order_by - final_rank: order_by -} - -""" -columns and relationships of "league_team_rosters" -""" -type league_team_rosters { - added_at: timestamptz! - league_team_season_id: uuid! - - """An object relationship""" - player: players! - player_steam_id: bigint! - removed_at: timestamptz - removed_reason: String - status: e_team_roster_statuses_enum! - - """An object relationship""" - team_season: league_team_seasons! -} - -""" -aggregated selection of "league_team_rosters" -""" -type league_team_rosters_aggregate { - aggregate: league_team_rosters_aggregate_fields - nodes: [league_team_rosters!]! -} - -input league_team_rosters_aggregate_bool_exp { - count: league_team_rosters_aggregate_bool_exp_count -} - -input league_team_rosters_aggregate_bool_exp_count { - arguments: [league_team_rosters_select_column!] - distinct: Boolean - filter: league_team_rosters_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "league_team_rosters" -""" -type league_team_rosters_aggregate_fields { - avg: league_team_rosters_avg_fields - count(columns: [league_team_rosters_select_column!], distinct: Boolean): Int! - max: league_team_rosters_max_fields - min: league_team_rosters_min_fields - stddev: league_team_rosters_stddev_fields - stddev_pop: league_team_rosters_stddev_pop_fields - stddev_samp: league_team_rosters_stddev_samp_fields - sum: league_team_rosters_sum_fields - var_pop: league_team_rosters_var_pop_fields - var_samp: league_team_rosters_var_samp_fields - variance: league_team_rosters_variance_fields -} - -""" -order by aggregate values of table "league_team_rosters" -""" -input league_team_rosters_aggregate_order_by { - avg: league_team_rosters_avg_order_by - count: order_by - max: league_team_rosters_max_order_by - min: league_team_rosters_min_order_by - stddev: league_team_rosters_stddev_order_by - stddev_pop: league_team_rosters_stddev_pop_order_by - stddev_samp: league_team_rosters_stddev_samp_order_by - sum: league_team_rosters_sum_order_by - var_pop: league_team_rosters_var_pop_order_by - var_samp: league_team_rosters_var_samp_order_by - variance: league_team_rosters_variance_order_by -} - -""" -input type for inserting array relation for remote table "league_team_rosters" -""" -input league_team_rosters_arr_rel_insert_input { - data: [league_team_rosters_insert_input!]! - - """upsert condition""" - on_conflict: league_team_rosters_on_conflict -} - -"""aggregate avg on columns""" -type league_team_rosters_avg_fields { - player_steam_id: Float -} - -""" -order by avg() on columns of table "league_team_rosters" -""" -input league_team_rosters_avg_order_by { - player_steam_id: order_by -} - -""" -Boolean expression to filter rows from the table "league_team_rosters". All fields are combined with a logical 'AND'. -""" -input league_team_rosters_bool_exp { - _and: [league_team_rosters_bool_exp!] - _not: league_team_rosters_bool_exp - _or: [league_team_rosters_bool_exp!] - added_at: timestamptz_comparison_exp - league_team_season_id: uuid_comparison_exp - player: players_bool_exp - player_steam_id: bigint_comparison_exp - removed_at: timestamptz_comparison_exp - removed_reason: String_comparison_exp - status: e_team_roster_statuses_enum_comparison_exp - team_season: league_team_seasons_bool_exp -} - -""" -unique or primary key constraints on table "league_team_rosters" -""" -enum league_team_rosters_constraint { - """ - unique or primary key constraint on columns "player_steam_id", "league_team_season_id" - """ - league_team_rosters_pkey -} - -""" -input type for incrementing numeric columns in table "league_team_rosters" -""" -input league_team_rosters_inc_input { - player_steam_id: bigint -} - -""" -input type for inserting data into table "league_team_rosters" -""" -input league_team_rosters_insert_input { - added_at: timestamptz - league_team_season_id: uuid - player: players_obj_rel_insert_input - player_steam_id: bigint - removed_at: timestamptz - removed_reason: String - status: e_team_roster_statuses_enum - team_season: league_team_seasons_obj_rel_insert_input -} - -"""aggregate max on columns""" -type league_team_rosters_max_fields { - added_at: timestamptz - league_team_season_id: uuid - player_steam_id: bigint - removed_at: timestamptz - removed_reason: String -} - -""" -order by max() on columns of table "league_team_rosters" -""" -input league_team_rosters_max_order_by { - added_at: order_by - league_team_season_id: order_by - player_steam_id: order_by - removed_at: order_by - removed_reason: order_by -} - -"""aggregate min on columns""" -type league_team_rosters_min_fields { - added_at: timestamptz - league_team_season_id: uuid - player_steam_id: bigint - removed_at: timestamptz - removed_reason: String -} - -""" -order by min() on columns of table "league_team_rosters" -""" -input league_team_rosters_min_order_by { - added_at: order_by - league_team_season_id: order_by - player_steam_id: order_by - removed_at: order_by - removed_reason: order_by -} - -""" -response of any mutation on the table "league_team_rosters" -""" -type league_team_rosters_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [league_team_rosters!]! -} - -""" -on_conflict condition type for table "league_team_rosters" -""" -input league_team_rosters_on_conflict { - constraint: league_team_rosters_constraint! - update_columns: [league_team_rosters_update_column!]! = [] - where: league_team_rosters_bool_exp -} - -"""Ordering options when selecting data from "league_team_rosters".""" -input league_team_rosters_order_by { - added_at: order_by - league_team_season_id: order_by - player: players_order_by - player_steam_id: order_by - removed_at: order_by - removed_reason: order_by - status: order_by - team_season: league_team_seasons_order_by -} - -"""primary key columns input for table: league_team_rosters""" -input league_team_rosters_pk_columns_input { - league_team_season_id: uuid! - player_steam_id: bigint! -} - -""" -select columns of table "league_team_rosters" -""" -enum league_team_rosters_select_column { - """column name""" - added_at - - """column name""" - league_team_season_id - - """column name""" - player_steam_id - - """column name""" - removed_at - - """column name""" - removed_reason - - """column name""" - status -} - -""" -input type for updating data in table "league_team_rosters" -""" -input league_team_rosters_set_input { - added_at: timestamptz - league_team_season_id: uuid - player_steam_id: bigint - removed_at: timestamptz - removed_reason: String - status: e_team_roster_statuses_enum -} - -"""aggregate stddev on columns""" -type league_team_rosters_stddev_fields { - player_steam_id: Float -} - -""" -order by stddev() on columns of table "league_team_rosters" -""" -input league_team_rosters_stddev_order_by { - player_steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type league_team_rosters_stddev_pop_fields { - player_steam_id: Float -} - -""" -order by stddev_pop() on columns of table "league_team_rosters" -""" -input league_team_rosters_stddev_pop_order_by { - player_steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type league_team_rosters_stddev_samp_fields { - player_steam_id: Float -} - -""" -order by stddev_samp() on columns of table "league_team_rosters" -""" -input league_team_rosters_stddev_samp_order_by { - player_steam_id: order_by -} - -""" -Streaming cursor of the table "league_team_rosters" -""" -input league_team_rosters_stream_cursor_input { - """Stream column input with initial value""" - initial_value: league_team_rosters_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input league_team_rosters_stream_cursor_value_input { - added_at: timestamptz - league_team_season_id: uuid - player_steam_id: bigint - removed_at: timestamptz - removed_reason: String - status: e_team_roster_statuses_enum -} - -"""aggregate sum on columns""" -type league_team_rosters_sum_fields { - player_steam_id: bigint -} - -""" -order by sum() on columns of table "league_team_rosters" -""" -input league_team_rosters_sum_order_by { - player_steam_id: order_by -} - -""" -update columns of table "league_team_rosters" -""" -enum league_team_rosters_update_column { - """column name""" - added_at - - """column name""" - league_team_season_id - - """column name""" - player_steam_id - - """column name""" - removed_at - - """column name""" - removed_reason - - """column name""" - status -} - -input league_team_rosters_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: league_team_rosters_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: league_team_rosters_set_input - - """filter the rows which have to be updated""" - where: league_team_rosters_bool_exp! -} - -"""aggregate var_pop on columns""" -type league_team_rosters_var_pop_fields { - player_steam_id: Float -} - -""" -order by var_pop() on columns of table "league_team_rosters" -""" -input league_team_rosters_var_pop_order_by { - player_steam_id: order_by -} - -"""aggregate var_samp on columns""" -type league_team_rosters_var_samp_fields { - player_steam_id: Float -} - -""" -order by var_samp() on columns of table "league_team_rosters" -""" -input league_team_rosters_var_samp_order_by { - player_steam_id: order_by -} - -"""aggregate variance on columns""" -type league_team_rosters_variance_fields { - player_steam_id: Float -} - -""" -order by variance() on columns of table "league_team_rosters" -""" -input league_team_rosters_variance_order_by { - player_steam_id: order_by -} - -""" -columns and relationships of "league_team_seasons" -""" -type league_team_seasons { - """An object relationship""" - assigned_division: league_divisions - assigned_division_id: uuid - - """An object relationship""" - captain: players - captain_steam_id: bigint - created_at: timestamptz! - decline_reason: String - - """An object relationship""" - e_registration_status: e_league_registration_statuses! - id: uuid! - league_season_id: uuid! - - """An object relationship""" - league_team: league_teams! - league_team_id: uuid! - - """An object relationship""" - registered_by: players - registered_by_steam_id: bigint - - """An object relationship""" - requested_division: league_divisions - requested_division_id: uuid - - """An array relationship""" - roster( - """distinct select on columns""" - distinct_on: [league_team_rosters_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: [league_team_rosters_order_by!] - - """filter the rows returned""" - where: league_team_rosters_bool_exp - ): [league_team_rosters!]! - - """An aggregate relationship""" - roster_aggregate( - """distinct select on columns""" - distinct_on: [league_team_rosters_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: [league_team_rosters_order_by!] - - """filter the rows returned""" - where: league_team_rosters_bool_exp - ): league_team_rosters_aggregate! - - """An object relationship""" - season: league_seasons! - seed: Int - status: e_league_registration_statuses_enum! - - """An object relationship""" - tournament_team: tournament_teams - tournament_team_id: uuid -} - -""" -aggregated selection of "league_team_seasons" -""" -type league_team_seasons_aggregate { - aggregate: league_team_seasons_aggregate_fields - nodes: [league_team_seasons!]! -} - -input league_team_seasons_aggregate_bool_exp { - count: league_team_seasons_aggregate_bool_exp_count -} - -input league_team_seasons_aggregate_bool_exp_count { - arguments: [league_team_seasons_select_column!] - distinct: Boolean - filter: league_team_seasons_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "league_team_seasons" -""" -type league_team_seasons_aggregate_fields { - avg: league_team_seasons_avg_fields - count(columns: [league_team_seasons_select_column!], distinct: Boolean): Int! - max: league_team_seasons_max_fields - min: league_team_seasons_min_fields - stddev: league_team_seasons_stddev_fields - stddev_pop: league_team_seasons_stddev_pop_fields - stddev_samp: league_team_seasons_stddev_samp_fields - sum: league_team_seasons_sum_fields - var_pop: league_team_seasons_var_pop_fields - var_samp: league_team_seasons_var_samp_fields - variance: league_team_seasons_variance_fields -} - -""" -order by aggregate values of table "league_team_seasons" -""" -input league_team_seasons_aggregate_order_by { - avg: league_team_seasons_avg_order_by - count: order_by - max: league_team_seasons_max_order_by - min: league_team_seasons_min_order_by - stddev: league_team_seasons_stddev_order_by - stddev_pop: league_team_seasons_stddev_pop_order_by - stddev_samp: league_team_seasons_stddev_samp_order_by - sum: league_team_seasons_sum_order_by - var_pop: league_team_seasons_var_pop_order_by - var_samp: league_team_seasons_var_samp_order_by - variance: league_team_seasons_variance_order_by -} - -""" -input type for inserting array relation for remote table "league_team_seasons" -""" -input league_team_seasons_arr_rel_insert_input { - data: [league_team_seasons_insert_input!]! - - """upsert condition""" - on_conflict: league_team_seasons_on_conflict -} - -"""aggregate avg on columns""" -type league_team_seasons_avg_fields { - captain_steam_id: Float - registered_by_steam_id: Float - seed: Float -} - -""" -order by avg() on columns of table "league_team_seasons" -""" -input league_team_seasons_avg_order_by { - captain_steam_id: order_by - registered_by_steam_id: order_by - seed: order_by -} - -""" -Boolean expression to filter rows from the table "league_team_seasons". All fields are combined with a logical 'AND'. -""" -input league_team_seasons_bool_exp { - _and: [league_team_seasons_bool_exp!] - _not: league_team_seasons_bool_exp - _or: [league_team_seasons_bool_exp!] - assigned_division: league_divisions_bool_exp - assigned_division_id: uuid_comparison_exp - captain: players_bool_exp - captain_steam_id: bigint_comparison_exp - created_at: timestamptz_comparison_exp - decline_reason: String_comparison_exp - e_registration_status: e_league_registration_statuses_bool_exp - id: uuid_comparison_exp - league_season_id: uuid_comparison_exp - league_team: league_teams_bool_exp - league_team_id: uuid_comparison_exp - registered_by: players_bool_exp - registered_by_steam_id: bigint_comparison_exp - requested_division: league_divisions_bool_exp - requested_division_id: uuid_comparison_exp - roster: league_team_rosters_bool_exp - roster_aggregate: league_team_rosters_aggregate_bool_exp - season: league_seasons_bool_exp - seed: Int_comparison_exp - status: e_league_registration_statuses_enum_comparison_exp - tournament_team: tournament_teams_bool_exp - tournament_team_id: uuid_comparison_exp -} - -""" -unique or primary key constraints on table "league_team_seasons" -""" -enum league_team_seasons_constraint { - """ - unique or primary key constraint on columns "league_season_id", "league_team_id" - """ - league_team_seasons_league_season_id_league_team_id_key - - """ - unique or primary key constraint on columns "id" - """ - league_team_seasons_pkey -} - -""" -input type for incrementing numeric columns in table "league_team_seasons" -""" -input league_team_seasons_inc_input { - captain_steam_id: bigint - registered_by_steam_id: bigint - seed: Int -} - -""" -input type for inserting data into table "league_team_seasons" -""" -input league_team_seasons_insert_input { - assigned_division: league_divisions_obj_rel_insert_input - assigned_division_id: uuid - captain: players_obj_rel_insert_input - captain_steam_id: bigint - created_at: timestamptz - decline_reason: String - e_registration_status: e_league_registration_statuses_obj_rel_insert_input - id: uuid - league_season_id: uuid - league_team: league_teams_obj_rel_insert_input - league_team_id: uuid - registered_by: players_obj_rel_insert_input - registered_by_steam_id: bigint - requested_division: league_divisions_obj_rel_insert_input - requested_division_id: uuid - roster: league_team_rosters_arr_rel_insert_input - season: league_seasons_obj_rel_insert_input - seed: Int - status: e_league_registration_statuses_enum - tournament_team: tournament_teams_obj_rel_insert_input - tournament_team_id: uuid -} - -"""aggregate max on columns""" -type league_team_seasons_max_fields { - assigned_division_id: uuid - captain_steam_id: bigint - created_at: timestamptz - decline_reason: String - id: uuid - league_season_id: uuid - league_team_id: uuid - registered_by_steam_id: bigint - requested_division_id: uuid - seed: Int - tournament_team_id: uuid -} - -""" -order by max() on columns of table "league_team_seasons" -""" -input league_team_seasons_max_order_by { - assigned_division_id: order_by - captain_steam_id: order_by - created_at: order_by - decline_reason: order_by - id: order_by - league_season_id: order_by - league_team_id: order_by - registered_by_steam_id: order_by - requested_division_id: order_by - seed: order_by - tournament_team_id: order_by -} - -"""aggregate min on columns""" -type league_team_seasons_min_fields { - assigned_division_id: uuid - captain_steam_id: bigint - created_at: timestamptz - decline_reason: String - id: uuid - league_season_id: uuid - league_team_id: uuid - registered_by_steam_id: bigint - requested_division_id: uuid - seed: Int - tournament_team_id: uuid -} - -""" -order by min() on columns of table "league_team_seasons" -""" -input league_team_seasons_min_order_by { - assigned_division_id: order_by - captain_steam_id: order_by - created_at: order_by - decline_reason: order_by - id: order_by - league_season_id: order_by - league_team_id: order_by - registered_by_steam_id: order_by - requested_division_id: order_by - seed: order_by - tournament_team_id: order_by -} - -""" -response of any mutation on the table "league_team_seasons" -""" -type league_team_seasons_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [league_team_seasons!]! -} - -""" -input type for inserting object relation for remote table "league_team_seasons" -""" -input league_team_seasons_obj_rel_insert_input { - data: league_team_seasons_insert_input! - - """upsert condition""" - on_conflict: league_team_seasons_on_conflict -} - -""" -on_conflict condition type for table "league_team_seasons" -""" -input league_team_seasons_on_conflict { - constraint: league_team_seasons_constraint! - update_columns: [league_team_seasons_update_column!]! = [] - where: league_team_seasons_bool_exp -} - -"""Ordering options when selecting data from "league_team_seasons".""" -input league_team_seasons_order_by { - assigned_division: league_divisions_order_by - assigned_division_id: order_by - captain: players_order_by - captain_steam_id: order_by - created_at: order_by - decline_reason: order_by - e_registration_status: e_league_registration_statuses_order_by - id: order_by - league_season_id: order_by - league_team: league_teams_order_by - league_team_id: order_by - registered_by: players_order_by - registered_by_steam_id: order_by - requested_division: league_divisions_order_by - requested_division_id: order_by - roster_aggregate: league_team_rosters_aggregate_order_by - season: league_seasons_order_by - seed: order_by - status: order_by - tournament_team: tournament_teams_order_by - tournament_team_id: order_by -} - -"""primary key columns input for table: league_team_seasons""" -input league_team_seasons_pk_columns_input { - id: uuid! -} - -""" -select columns of table "league_team_seasons" -""" -enum league_team_seasons_select_column { - """column name""" - assigned_division_id - - """column name""" - captain_steam_id - - """column name""" - created_at - - """column name""" - decline_reason - - """column name""" - id - - """column name""" - league_season_id - - """column name""" - league_team_id - - """column name""" - registered_by_steam_id - - """column name""" - requested_division_id - - """column name""" - seed - - """column name""" - status - - """column name""" - tournament_team_id -} - -""" -input type for updating data in table "league_team_seasons" -""" -input league_team_seasons_set_input { - assigned_division_id: uuid - captain_steam_id: bigint - created_at: timestamptz - decline_reason: String - id: uuid - league_season_id: uuid - league_team_id: uuid - registered_by_steam_id: bigint - requested_division_id: uuid - seed: Int - status: e_league_registration_statuses_enum - tournament_team_id: uuid -} - -"""aggregate stddev on columns""" -type league_team_seasons_stddev_fields { - captain_steam_id: Float - registered_by_steam_id: Float - seed: Float -} - -""" -order by stddev() on columns of table "league_team_seasons" -""" -input league_team_seasons_stddev_order_by { - captain_steam_id: order_by - registered_by_steam_id: order_by - seed: order_by -} - -"""aggregate stddev_pop on columns""" -type league_team_seasons_stddev_pop_fields { - captain_steam_id: Float - registered_by_steam_id: Float - seed: Float -} - -""" -order by stddev_pop() on columns of table "league_team_seasons" -""" -input league_team_seasons_stddev_pop_order_by { - captain_steam_id: order_by - registered_by_steam_id: order_by - seed: order_by -} - -"""aggregate stddev_samp on columns""" -type league_team_seasons_stddev_samp_fields { - captain_steam_id: Float - registered_by_steam_id: Float - seed: Float -} - -""" -order by stddev_samp() on columns of table "league_team_seasons" -""" -input league_team_seasons_stddev_samp_order_by { - captain_steam_id: order_by - registered_by_steam_id: order_by - seed: order_by -} - -""" -Streaming cursor of the table "league_team_seasons" -""" -input league_team_seasons_stream_cursor_input { - """Stream column input with initial value""" - initial_value: league_team_seasons_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input league_team_seasons_stream_cursor_value_input { - assigned_division_id: uuid - captain_steam_id: bigint - created_at: timestamptz - decline_reason: String - id: uuid - league_season_id: uuid - league_team_id: uuid - registered_by_steam_id: bigint - requested_division_id: uuid - seed: Int - status: e_league_registration_statuses_enum - tournament_team_id: uuid -} - -"""aggregate sum on columns""" -type league_team_seasons_sum_fields { - captain_steam_id: bigint - registered_by_steam_id: bigint - seed: Int -} - -""" -order by sum() on columns of table "league_team_seasons" -""" -input league_team_seasons_sum_order_by { - captain_steam_id: order_by - registered_by_steam_id: order_by - seed: order_by -} - -""" -update columns of table "league_team_seasons" -""" -enum league_team_seasons_update_column { - """column name""" - assigned_division_id - - """column name""" - captain_steam_id - - """column name""" - created_at - - """column name""" - decline_reason - - """column name""" - id - - """column name""" - league_season_id - - """column name""" - league_team_id - - """column name""" - registered_by_steam_id - - """column name""" - requested_division_id - - """column name""" - seed - - """column name""" - status - - """column name""" - tournament_team_id -} - -input league_team_seasons_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: league_team_seasons_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: league_team_seasons_set_input - - """filter the rows which have to be updated""" - where: league_team_seasons_bool_exp! -} - -"""aggregate var_pop on columns""" -type league_team_seasons_var_pop_fields { - captain_steam_id: Float - registered_by_steam_id: Float - seed: Float -} - -""" -order by var_pop() on columns of table "league_team_seasons" -""" -input league_team_seasons_var_pop_order_by { - captain_steam_id: order_by - registered_by_steam_id: order_by - seed: order_by -} - -"""aggregate var_samp on columns""" -type league_team_seasons_var_samp_fields { - captain_steam_id: Float - registered_by_steam_id: Float - seed: Float -} - -""" -order by var_samp() on columns of table "league_team_seasons" -""" -input league_team_seasons_var_samp_order_by { - captain_steam_id: order_by - registered_by_steam_id: order_by - seed: order_by -} - -"""aggregate variance on columns""" -type league_team_seasons_variance_fields { - captain_steam_id: Float - registered_by_steam_id: Float - seed: Float -} - -""" -order by variance() on columns of table "league_team_seasons" -""" -input league_team_seasons_variance_order_by { - captain_steam_id: order_by - registered_by_steam_id: order_by - seed: order_by -} - -""" -columns and relationships of "league_teams" -""" -type league_teams { - created_at: timestamptz! - id: uuid! - - """An array relationship""" - movements( - """distinct select on columns""" - distinct_on: [league_team_movements_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: [league_team_movements_order_by!] - - """filter the rows returned""" - where: league_team_movements_bool_exp - ): [league_team_movements!]! - - """An aggregate relationship""" - movements_aggregate( - """distinct select on columns""" - distinct_on: [league_team_movements_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: [league_team_movements_order_by!] - - """filter the rows returned""" - where: league_team_movements_bool_exp - ): league_team_movements_aggregate! - - """An object relationship""" - team: teams! - team_id: uuid! - - """An array relationship""" - team_seasons( - """distinct select on columns""" - distinct_on: [league_team_seasons_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: [league_team_seasons_order_by!] - - """filter the rows returned""" - where: league_team_seasons_bool_exp - ): [league_team_seasons!]! - - """An aggregate relationship""" - team_seasons_aggregate( - """distinct select on columns""" - distinct_on: [league_team_seasons_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: [league_team_seasons_order_by!] - - """filter the rows returned""" - where: league_team_seasons_bool_exp - ): league_team_seasons_aggregate! -} - -""" -aggregated selection of "league_teams" -""" -type league_teams_aggregate { - aggregate: league_teams_aggregate_fields - nodes: [league_teams!]! -} - -""" -aggregate fields of "league_teams" -""" -type league_teams_aggregate_fields { - count(columns: [league_teams_select_column!], distinct: Boolean): Int! - max: league_teams_max_fields - min: league_teams_min_fields -} - -""" -Boolean expression to filter rows from the table "league_teams". All fields are combined with a logical 'AND'. -""" -input league_teams_bool_exp { - _and: [league_teams_bool_exp!] - _not: league_teams_bool_exp - _or: [league_teams_bool_exp!] - created_at: timestamptz_comparison_exp - id: uuid_comparison_exp - movements: league_team_movements_bool_exp - movements_aggregate: league_team_movements_aggregate_bool_exp - team: teams_bool_exp - team_id: uuid_comparison_exp - team_seasons: league_team_seasons_bool_exp - team_seasons_aggregate: league_team_seasons_aggregate_bool_exp -} - -""" -unique or primary key constraints on table "league_teams" -""" -enum league_teams_constraint { - """ - unique or primary key constraint on columns "id" - """ - league_teams_pkey - - """ - unique or primary key constraint on columns "team_id" - """ - league_teams_team_id_key -} - -""" -input type for inserting data into table "league_teams" -""" -input league_teams_insert_input { - created_at: timestamptz - id: uuid - movements: league_team_movements_arr_rel_insert_input - team: teams_obj_rel_insert_input - team_id: uuid - team_seasons: league_team_seasons_arr_rel_insert_input -} - -"""aggregate max on columns""" -type league_teams_max_fields { - created_at: timestamptz - id: uuid - team_id: uuid -} - -"""aggregate min on columns""" -type league_teams_min_fields { - created_at: timestamptz - id: uuid - team_id: uuid -} - -""" -response of any mutation on the table "league_teams" -""" -type league_teams_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [league_teams!]! -} - -""" -input type for inserting object relation for remote table "league_teams" -""" -input league_teams_obj_rel_insert_input { - data: league_teams_insert_input! - - """upsert condition""" - on_conflict: league_teams_on_conflict -} - -""" -on_conflict condition type for table "league_teams" -""" -input league_teams_on_conflict { - constraint: league_teams_constraint! - update_columns: [league_teams_update_column!]! = [] - where: league_teams_bool_exp -} - -"""Ordering options when selecting data from "league_teams".""" -input league_teams_order_by { - created_at: order_by - id: order_by - movements_aggregate: league_team_movements_aggregate_order_by - team: teams_order_by - team_id: order_by - team_seasons_aggregate: league_team_seasons_aggregate_order_by -} - -"""primary key columns input for table: league_teams""" -input league_teams_pk_columns_input { - id: uuid! -} - -""" -select columns of table "league_teams" -""" -enum league_teams_select_column { - """column name""" - created_at - - """column name""" - id - - """column name""" - team_id -} - -""" -input type for updating data in table "league_teams" -""" -input league_teams_set_input { - created_at: timestamptz - id: uuid - team_id: uuid -} - -""" -Streaming cursor of the table "league_teams" -""" -input league_teams_stream_cursor_input { - """Stream column input with initial value""" - initial_value: league_teams_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input league_teams_stream_cursor_value_input { - created_at: timestamptz - id: uuid - team_id: uuid -} - -""" -update columns of table "league_teams" -""" -enum league_teams_update_column { - """column name""" - created_at - - """column name""" - id - - """column name""" - team_id -} - -input league_teams_updates { - """sets the columns of the filtered rows to the given values""" - _set: league_teams_set_input - - """filter the rows which have to be updated""" - where: league_teams_bool_exp! -} - -""" -columns and relationships of "lobbies" -""" -type lobbies { - access: e_lobby_access_enum! - created_at: timestamptz! - - """An object relationship""" - e_lobby_access: e_lobby_access! - id: uuid! - - """An array relationship""" - players( - """distinct select on columns""" - distinct_on: [lobby_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [lobby_players_order_by!] - - """filter the rows returned""" - where: lobby_players_bool_exp - ): [lobby_players!]! - - """An aggregate relationship""" - players_aggregate( - """distinct select on columns""" - distinct_on: [lobby_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [lobby_players_order_by!] - - """filter the rows returned""" - where: lobby_players_bool_exp - ): lobby_players_aggregate! -} - -""" -aggregated selection of "lobbies" -""" -type lobbies_aggregate { - aggregate: lobbies_aggregate_fields - nodes: [lobbies!]! -} - -""" -aggregate fields of "lobbies" -""" -type lobbies_aggregate_fields { - count(columns: [lobbies_select_column!], distinct: Boolean): Int! - max: lobbies_max_fields - min: lobbies_min_fields -} - -""" -Boolean expression to filter rows from the table "lobbies". All fields are combined with a logical 'AND'. -""" -input lobbies_bool_exp { - _and: [lobbies_bool_exp!] - _not: lobbies_bool_exp - _or: [lobbies_bool_exp!] - access: e_lobby_access_enum_comparison_exp - created_at: timestamptz_comparison_exp - e_lobby_access: e_lobby_access_bool_exp - id: uuid_comparison_exp - players: lobby_players_bool_exp - players_aggregate: lobby_players_aggregate_bool_exp -} - -""" -unique or primary key constraints on table "lobbies" -""" -enum lobbies_constraint { - """ - unique or primary key constraint on columns "id" - """ - lobbies_pkey -} - -""" -input type for inserting data into table "lobbies" -""" -input lobbies_insert_input { - access: e_lobby_access_enum - created_at: timestamptz - e_lobby_access: e_lobby_access_obj_rel_insert_input - id: uuid - players: lobby_players_arr_rel_insert_input -} - -"""aggregate max on columns""" -type lobbies_max_fields { - created_at: timestamptz - id: uuid -} - -"""aggregate min on columns""" -type lobbies_min_fields { - created_at: timestamptz - id: uuid -} - -""" -response of any mutation on the table "lobbies" -""" -type lobbies_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [lobbies!]! -} - -""" -input type for inserting object relation for remote table "lobbies" -""" -input lobbies_obj_rel_insert_input { - data: lobbies_insert_input! - - """upsert condition""" - on_conflict: lobbies_on_conflict -} - -""" -on_conflict condition type for table "lobbies" -""" -input lobbies_on_conflict { - constraint: lobbies_constraint! - update_columns: [lobbies_update_column!]! = [] - where: lobbies_bool_exp -} - -"""Ordering options when selecting data from "lobbies".""" -input lobbies_order_by { - access: order_by - created_at: order_by - e_lobby_access: e_lobby_access_order_by - id: order_by - players_aggregate: lobby_players_aggregate_order_by -} - -"""primary key columns input for table: lobbies""" -input lobbies_pk_columns_input { - id: uuid! -} - -""" -select columns of table "lobbies" -""" -enum lobbies_select_column { - """column name""" - access - - """column name""" - created_at - - """column name""" - id -} - -""" -input type for updating data in table "lobbies" -""" -input lobbies_set_input { - access: e_lobby_access_enum - created_at: timestamptz - id: uuid -} - -""" -Streaming cursor of the table "lobbies" -""" -input lobbies_stream_cursor_input { - """Stream column input with initial value""" - initial_value: lobbies_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input lobbies_stream_cursor_value_input { - access: e_lobby_access_enum - created_at: timestamptz - id: uuid -} - -""" -update columns of table "lobbies" -""" -enum lobbies_update_column { - """column name""" - access - - """column name""" - created_at - - """column name""" - id -} - -input lobbies_updates { - """sets the columns of the filtered rows to the given values""" - _set: lobbies_set_input - - """filter the rows which have to be updated""" - where: lobbies_bool_exp! -} - -""" -columns and relationships of "lobby_players" -""" -type lobby_players { - captain: Boolean! - invited_by_steam_id: bigint - - """An object relationship""" - lobby: lobbies! - lobby_id: uuid! - - """An object relationship""" - player: players! - status: e_lobby_player_status_enum! - steam_id: bigint! -} - -""" -aggregated selection of "lobby_players" -""" -type lobby_players_aggregate { - aggregate: lobby_players_aggregate_fields - nodes: [lobby_players!]! -} - -input lobby_players_aggregate_bool_exp { - bool_and: lobby_players_aggregate_bool_exp_bool_and - bool_or: lobby_players_aggregate_bool_exp_bool_or - count: lobby_players_aggregate_bool_exp_count -} - -input lobby_players_aggregate_bool_exp_bool_and { - arguments: lobby_players_select_column_lobby_players_aggregate_bool_exp_bool_and_arguments_columns! - distinct: Boolean - filter: lobby_players_bool_exp - predicate: Boolean_comparison_exp! -} - -input lobby_players_aggregate_bool_exp_bool_or { - arguments: lobby_players_select_column_lobby_players_aggregate_bool_exp_bool_or_arguments_columns! - distinct: Boolean - filter: lobby_players_bool_exp - predicate: Boolean_comparison_exp! -} - -input lobby_players_aggregate_bool_exp_count { - arguments: [lobby_players_select_column!] - distinct: Boolean - filter: lobby_players_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "lobby_players" -""" -type lobby_players_aggregate_fields { - avg: lobby_players_avg_fields - count(columns: [lobby_players_select_column!], distinct: Boolean): Int! - max: lobby_players_max_fields - min: lobby_players_min_fields - stddev: lobby_players_stddev_fields - stddev_pop: lobby_players_stddev_pop_fields - stddev_samp: lobby_players_stddev_samp_fields - sum: lobby_players_sum_fields - var_pop: lobby_players_var_pop_fields - var_samp: lobby_players_var_samp_fields - variance: lobby_players_variance_fields -} - -""" -order by aggregate values of table "lobby_players" -""" -input lobby_players_aggregate_order_by { - avg: lobby_players_avg_order_by - count: order_by - max: lobby_players_max_order_by - min: lobby_players_min_order_by - stddev: lobby_players_stddev_order_by - stddev_pop: lobby_players_stddev_pop_order_by - stddev_samp: lobby_players_stddev_samp_order_by - sum: lobby_players_sum_order_by - var_pop: lobby_players_var_pop_order_by - var_samp: lobby_players_var_samp_order_by - variance: lobby_players_variance_order_by -} - -""" -input type for inserting array relation for remote table "lobby_players" -""" -input lobby_players_arr_rel_insert_input { - data: [lobby_players_insert_input!]! - - """upsert condition""" - on_conflict: lobby_players_on_conflict -} - -"""aggregate avg on columns""" -type lobby_players_avg_fields { - invited_by_steam_id: Float - steam_id: Float -} - -""" -order by avg() on columns of table "lobby_players" -""" -input lobby_players_avg_order_by { - invited_by_steam_id: order_by - steam_id: order_by -} - -""" -Boolean expression to filter rows from the table "lobby_players". All fields are combined with a logical 'AND'. -""" -input lobby_players_bool_exp { - _and: [lobby_players_bool_exp!] - _not: lobby_players_bool_exp - _or: [lobby_players_bool_exp!] - captain: Boolean_comparison_exp - invited_by_steam_id: bigint_comparison_exp - lobby: lobbies_bool_exp - lobby_id: uuid_comparison_exp - player: players_bool_exp - status: e_lobby_player_status_enum_comparison_exp - steam_id: bigint_comparison_exp -} - -""" -unique or primary key constraints on table "lobby_players" -""" -enum lobby_players_constraint { - """ - unique or primary key constraint on columns "lobby_id", "steam_id" - """ - lobby_players_pkey -} - -""" -input type for incrementing numeric columns in table "lobby_players" -""" -input lobby_players_inc_input { - invited_by_steam_id: bigint - steam_id: bigint -} - -""" -input type for inserting data into table "lobby_players" -""" -input lobby_players_insert_input { - captain: Boolean - invited_by_steam_id: bigint - lobby: lobbies_obj_rel_insert_input - lobby_id: uuid - player: players_obj_rel_insert_input - status: e_lobby_player_status_enum - steam_id: bigint -} - -"""aggregate max on columns""" -type lobby_players_max_fields { - invited_by_steam_id: bigint - lobby_id: uuid - steam_id: bigint -} - -""" -order by max() on columns of table "lobby_players" -""" -input lobby_players_max_order_by { - invited_by_steam_id: order_by - lobby_id: order_by - steam_id: order_by -} - -"""aggregate min on columns""" -type lobby_players_min_fields { - invited_by_steam_id: bigint - lobby_id: uuid - steam_id: bigint -} - -""" -order by min() on columns of table "lobby_players" -""" -input lobby_players_min_order_by { - invited_by_steam_id: order_by - lobby_id: order_by - steam_id: order_by -} - -""" -response of any mutation on the table "lobby_players" -""" -type lobby_players_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [lobby_players!]! -} - -""" -on_conflict condition type for table "lobby_players" -""" -input lobby_players_on_conflict { - constraint: lobby_players_constraint! - update_columns: [lobby_players_update_column!]! = [] - where: lobby_players_bool_exp -} - -"""Ordering options when selecting data from "lobby_players".""" -input lobby_players_order_by { - captain: order_by - invited_by_steam_id: order_by - lobby: lobbies_order_by - lobby_id: order_by - player: players_order_by - status: order_by - steam_id: order_by -} - -"""primary key columns input for table: lobby_players""" -input lobby_players_pk_columns_input { - lobby_id: uuid! - steam_id: bigint! -} - -""" -select columns of table "lobby_players" -""" -enum lobby_players_select_column { - """column name""" - captain - - """column name""" - invited_by_steam_id - - """column name""" - lobby_id - - """column name""" - status - - """column name""" - steam_id -} - -""" -select "lobby_players_aggregate_bool_exp_bool_and_arguments_columns" columns of table "lobby_players" -""" -enum lobby_players_select_column_lobby_players_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - captain -} - -""" -select "lobby_players_aggregate_bool_exp_bool_or_arguments_columns" columns of table "lobby_players" -""" -enum lobby_players_select_column_lobby_players_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - captain -} - -""" -input type for updating data in table "lobby_players" -""" -input lobby_players_set_input { - captain: Boolean - invited_by_steam_id: bigint - lobby_id: uuid - status: e_lobby_player_status_enum - steam_id: bigint -} - -"""aggregate stddev on columns""" -type lobby_players_stddev_fields { - invited_by_steam_id: Float - steam_id: Float -} - -""" -order by stddev() on columns of table "lobby_players" -""" -input lobby_players_stddev_order_by { - invited_by_steam_id: order_by - steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type lobby_players_stddev_pop_fields { - invited_by_steam_id: Float - steam_id: Float -} - -""" -order by stddev_pop() on columns of table "lobby_players" -""" -input lobby_players_stddev_pop_order_by { - invited_by_steam_id: order_by - steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type lobby_players_stddev_samp_fields { - invited_by_steam_id: Float - steam_id: Float -} - -""" -order by stddev_samp() on columns of table "lobby_players" -""" -input lobby_players_stddev_samp_order_by { - invited_by_steam_id: order_by - steam_id: order_by -} - -""" -Streaming cursor of the table "lobby_players" -""" -input lobby_players_stream_cursor_input { - """Stream column input with initial value""" - initial_value: lobby_players_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input lobby_players_stream_cursor_value_input { - captain: Boolean - invited_by_steam_id: bigint - lobby_id: uuid - status: e_lobby_player_status_enum - steam_id: bigint -} - -"""aggregate sum on columns""" -type lobby_players_sum_fields { - invited_by_steam_id: bigint - steam_id: bigint -} - -""" -order by sum() on columns of table "lobby_players" -""" -input lobby_players_sum_order_by { - invited_by_steam_id: order_by - steam_id: order_by -} - -""" -update columns of table "lobby_players" -""" -enum lobby_players_update_column { - """column name""" - captain - - """column name""" - invited_by_steam_id - - """column name""" - lobby_id - - """column name""" - status - - """column name""" - steam_id -} - -input lobby_players_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: lobby_players_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: lobby_players_set_input - - """filter the rows which have to be updated""" - where: lobby_players_bool_exp! -} - -"""aggregate var_pop on columns""" -type lobby_players_var_pop_fields { - invited_by_steam_id: Float - steam_id: Float -} - -""" -order by var_pop() on columns of table "lobby_players" -""" -input lobby_players_var_pop_order_by { - invited_by_steam_id: order_by - steam_id: order_by -} - -"""aggregate var_samp on columns""" -type lobby_players_var_samp_fields { - invited_by_steam_id: Float - steam_id: Float -} - -""" -order by var_samp() on columns of table "lobby_players" -""" -input lobby_players_var_samp_order_by { - invited_by_steam_id: order_by - steam_id: order_by -} - -"""aggregate variance on columns""" -type lobby_players_variance_fields { - invited_by_steam_id: Float - steam_id: Float -} - -""" -order by variance() on columns of table "lobby_players" -""" -input lobby_players_variance_order_by { - invited_by_steam_id: order_by - steam_id: order_by -} - -""" -columns and relationships of "map_callouts" -""" -type map_callouts { - boxes( - """JSON select path""" - path: String - ): jsonb! - map_name: String! - name: String! - source: String! - updated_at: timestamptz! -} - -""" -aggregated selection of "map_callouts" -""" -type map_callouts_aggregate { - aggregate: map_callouts_aggregate_fields - nodes: [map_callouts!]! -} - -""" -aggregate fields of "map_callouts" -""" -type map_callouts_aggregate_fields { - count(columns: [map_callouts_select_column!], distinct: Boolean): Int! - max: map_callouts_max_fields - min: map_callouts_min_fields -} - -"""append existing jsonb value of filtered columns with new jsonb value""" -input map_callouts_append_input { - boxes: jsonb -} - -""" -Boolean expression to filter rows from the table "map_callouts". All fields are combined with a logical 'AND'. -""" -input map_callouts_bool_exp { - _and: [map_callouts_bool_exp!] - _not: map_callouts_bool_exp - _or: [map_callouts_bool_exp!] - boxes: jsonb_comparison_exp - map_name: String_comparison_exp - name: String_comparison_exp - source: String_comparison_exp - updated_at: timestamptz_comparison_exp -} - -""" -unique or primary key constraints on table "map_callouts" -""" -enum map_callouts_constraint { - """ - unique or primary key constraint on columns "name", "map_name" - """ - map_callouts_pkey -} - -""" -delete the field or element with specified path (for JSON arrays, negative integers count from the end) -""" -input map_callouts_delete_at_path_input { - boxes: [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 map_callouts_delete_elem_input { - boxes: Int -} - -""" -delete key/value pair or string element. key/value pairs are matched based on their key value -""" -input map_callouts_delete_key_input { - boxes: String -} - -""" -input type for inserting data into table "map_callouts" -""" -input map_callouts_insert_input { - boxes: jsonb - map_name: String - name: String - source: String - updated_at: timestamptz -} - -"""aggregate max on columns""" -type map_callouts_max_fields { - map_name: String - name: String - source: String - updated_at: timestamptz -} - -"""aggregate min on columns""" -type map_callouts_min_fields { - map_name: String - name: String - source: String - updated_at: timestamptz -} - -""" -response of any mutation on the table "map_callouts" -""" -type map_callouts_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [map_callouts!]! -} - -""" -on_conflict condition type for table "map_callouts" -""" -input map_callouts_on_conflict { - constraint: map_callouts_constraint! - update_columns: [map_callouts_update_column!]! = [] - where: map_callouts_bool_exp -} - -"""Ordering options when selecting data from "map_callouts".""" -input map_callouts_order_by { - boxes: order_by - map_name: order_by - name: order_by - source: order_by - updated_at: order_by -} - -"""primary key columns input for table: map_callouts""" -input map_callouts_pk_columns_input { - map_name: String! - name: String! -} - -"""prepend existing jsonb value of filtered columns with new jsonb value""" -input map_callouts_prepend_input { - boxes: jsonb -} - -""" -select columns of table "map_callouts" -""" -enum map_callouts_select_column { - """column name""" - boxes - - """column name""" - map_name - - """column name""" - name - - """column name""" - source - - """column name""" - updated_at -} - -""" -input type for updating data in table "map_callouts" -""" -input map_callouts_set_input { - boxes: jsonb - map_name: String - name: String - source: String - updated_at: timestamptz -} - -""" -Streaming cursor of the table "map_callouts" -""" -input map_callouts_stream_cursor_input { - """Stream column input with initial value""" - initial_value: map_callouts_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input map_callouts_stream_cursor_value_input { - boxes: jsonb - map_name: String - name: String - source: String - updated_at: timestamptz -} - -""" -update columns of table "map_callouts" -""" -enum map_callouts_update_column { - """column name""" - boxes - - """column name""" - map_name - - """column name""" - name - - """column name""" - source - - """column name""" - updated_at -} - -input map_callouts_updates { - """append existing jsonb value of filtered columns with new jsonb value""" - _append: map_callouts_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: map_callouts_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: map_callouts_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: map_callouts_delete_key_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: map_callouts_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: map_callouts_set_input - - """filter the rows which have to be updated""" - where: map_callouts_bool_exp! -} - -""" -columns and relationships of "map_pools" -""" -type map_pools { - """An object relationship""" - e_type: e_map_pool_types! - enabled: Boolean! - id: uuid! - - """An array relationship""" - maps( - """distinct select on columns""" - distinct_on: [v_pool_maps_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_pool_maps_order_by!] - - """filter the rows returned""" - where: v_pool_maps_bool_exp - ): [v_pool_maps!]! - - """An aggregate relationship""" - maps_aggregate( - """distinct select on columns""" - distinct_on: [v_pool_maps_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_pool_maps_order_by!] - - """filter the rows returned""" - where: v_pool_maps_bool_exp - ): v_pool_maps_aggregate! - seed: Boolean! - type: e_map_pool_types_enum! -} - -""" -aggregated selection of "map_pools" -""" -type map_pools_aggregate { - aggregate: map_pools_aggregate_fields - nodes: [map_pools!]! -} - -""" -aggregate fields of "map_pools" -""" -type map_pools_aggregate_fields { - count(columns: [map_pools_select_column!], distinct: Boolean): Int! - max: map_pools_max_fields - min: map_pools_min_fields -} - -""" -Boolean expression to filter rows from the table "map_pools". All fields are combined with a logical 'AND'. -""" -input map_pools_bool_exp { - _and: [map_pools_bool_exp!] - _not: map_pools_bool_exp - _or: [map_pools_bool_exp!] - e_type: e_map_pool_types_bool_exp - enabled: Boolean_comparison_exp - id: uuid_comparison_exp - maps: v_pool_maps_bool_exp - maps_aggregate: v_pool_maps_aggregate_bool_exp - seed: Boolean_comparison_exp - type: e_map_pool_types_enum_comparison_exp -} - -""" -unique or primary key constraints on table "map_pools" -""" -enum map_pools_constraint { - """ - unique or primary key constraint on columns "id" - """ - map_pools_pkey -} - -""" -input type for inserting data into table "map_pools" -""" -input map_pools_insert_input { - e_type: e_map_pool_types_obj_rel_insert_input - enabled: Boolean - id: uuid - maps: v_pool_maps_arr_rel_insert_input - seed: Boolean - type: e_map_pool_types_enum -} - -"""aggregate max on columns""" -type map_pools_max_fields { - id: uuid -} - -"""aggregate min on columns""" -type map_pools_min_fields { - id: uuid -} - -""" -response of any mutation on the table "map_pools" -""" -type map_pools_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [map_pools!]! -} - -""" -input type for inserting object relation for remote table "map_pools" -""" -input map_pools_obj_rel_insert_input { - data: map_pools_insert_input! - - """upsert condition""" - on_conflict: map_pools_on_conflict -} - -""" -on_conflict condition type for table "map_pools" -""" -input map_pools_on_conflict { - constraint: map_pools_constraint! - update_columns: [map_pools_update_column!]! = [] - where: map_pools_bool_exp -} - -"""Ordering options when selecting data from "map_pools".""" -input map_pools_order_by { - e_type: e_map_pool_types_order_by - enabled: order_by - id: order_by - maps_aggregate: v_pool_maps_aggregate_order_by - seed: order_by - type: order_by -} - -"""primary key columns input for table: map_pools""" -input map_pools_pk_columns_input { - id: uuid! -} - -""" -select columns of table "map_pools" -""" -enum map_pools_select_column { - """column name""" - enabled - - """column name""" - id - - """column name""" - seed - - """column name""" - type -} - -""" -input type for updating data in table "map_pools" -""" -input map_pools_set_input { - enabled: Boolean - id: uuid - seed: Boolean - type: e_map_pool_types_enum -} - -""" -Streaming cursor of the table "map_pools" -""" -input map_pools_stream_cursor_input { - """Stream column input with initial value""" - initial_value: map_pools_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input map_pools_stream_cursor_value_input { - enabled: Boolean - id: uuid - seed: Boolean - type: e_map_pool_types_enum -} - -""" -update columns of table "map_pools" -""" -enum map_pools_update_column { - """column name""" - enabled - - """column name""" - id - - """column name""" - seed - - """column name""" - type -} - -input map_pools_updates { - """sets the columns of the filtered rows to the given values""" - _set: map_pools_set_input - - """filter the rows which have to be updated""" - where: map_pools_bool_exp! -} - -""" -columns and relationships of "maps" -""" -type maps { - active_pool: Boolean! - deleted_at: timestamptz - - """An object relationship""" - e_match_type: e_match_types! - enabled: Boolean! - id: uuid! - label: String - - """An array relationship""" - match_maps( - """distinct select on columns""" - distinct_on: [match_maps_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_maps_order_by!] - - """filter the rows returned""" - where: match_maps_bool_exp - ): [match_maps!]! - - """An aggregate relationship""" - match_maps_aggregate( - """distinct select on columns""" - distinct_on: [match_maps_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_maps_order_by!] - - """filter the rows returned""" - where: match_maps_bool_exp - ): match_maps_aggregate! - - """An array relationship""" - match_veto_picks( - """distinct select on columns""" - distinct_on: [match_map_veto_picks_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_map_veto_picks_order_by!] - - """filter the rows returned""" - where: match_map_veto_picks_bool_exp - ): [match_map_veto_picks!]! - - """An aggregate relationship""" - match_veto_picks_aggregate( - """distinct select on columns""" - distinct_on: [match_map_veto_picks_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_map_veto_picks_order_by!] - - """filter the rows returned""" - where: match_map_veto_picks_bool_exp - ): match_map_veto_picks_aggregate! - name: String! - patch: String - poster: String - type: e_match_types_enum! - workshop_map_id: String -} - -""" -aggregated selection of "maps" -""" -type maps_aggregate { - aggregate: maps_aggregate_fields - nodes: [maps!]! -} - -input maps_aggregate_bool_exp { - bool_and: maps_aggregate_bool_exp_bool_and - bool_or: maps_aggregate_bool_exp_bool_or - count: maps_aggregate_bool_exp_count -} - -input maps_aggregate_bool_exp_bool_and { - arguments: maps_select_column_maps_aggregate_bool_exp_bool_and_arguments_columns! - distinct: Boolean - filter: maps_bool_exp - predicate: Boolean_comparison_exp! -} - -input maps_aggregate_bool_exp_bool_or { - arguments: maps_select_column_maps_aggregate_bool_exp_bool_or_arguments_columns! - distinct: Boolean - filter: maps_bool_exp - predicate: Boolean_comparison_exp! -} - -input maps_aggregate_bool_exp_count { - arguments: [maps_select_column!] - distinct: Boolean - filter: maps_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "maps" -""" -type maps_aggregate_fields { - count(columns: [maps_select_column!], distinct: Boolean): Int! - max: maps_max_fields - min: maps_min_fields -} - -""" -order by aggregate values of table "maps" -""" -input maps_aggregate_order_by { - count: order_by - max: maps_max_order_by - min: maps_min_order_by -} - -""" -input type for inserting array relation for remote table "maps" -""" -input maps_arr_rel_insert_input { - data: [maps_insert_input!]! - - """upsert condition""" - on_conflict: maps_on_conflict -} - -""" -Boolean expression to filter rows from the table "maps". All fields are combined with a logical 'AND'. -""" -input maps_bool_exp { - _and: [maps_bool_exp!] - _not: maps_bool_exp - _or: [maps_bool_exp!] - active_pool: Boolean_comparison_exp - deleted_at: timestamptz_comparison_exp - e_match_type: e_match_types_bool_exp - enabled: Boolean_comparison_exp - id: uuid_comparison_exp - label: String_comparison_exp - match_maps: match_maps_bool_exp - match_maps_aggregate: match_maps_aggregate_bool_exp - match_veto_picks: match_map_veto_picks_bool_exp - match_veto_picks_aggregate: match_map_veto_picks_aggregate_bool_exp - name: String_comparison_exp - patch: String_comparison_exp - poster: String_comparison_exp - type: e_match_types_enum_comparison_exp - workshop_map_id: String_comparison_exp -} - -""" -unique or primary key constraints on table "maps" -""" -enum maps_constraint { - """ - unique or primary key constraint on columns "type", "name" - """ - maps_name_type_key - - """ - unique or primary key constraint on columns "id" - """ - maps_pkey -} - -""" -input type for inserting data into table "maps" -""" -input maps_insert_input { - active_pool: Boolean - deleted_at: timestamptz - e_match_type: e_match_types_obj_rel_insert_input - enabled: Boolean - id: uuid - label: String - match_maps: match_maps_arr_rel_insert_input - match_veto_picks: match_map_veto_picks_arr_rel_insert_input - name: String - patch: String - poster: String - type: e_match_types_enum - workshop_map_id: String -} - -"""aggregate max on columns""" -type maps_max_fields { - deleted_at: timestamptz - id: uuid - label: String - name: String - patch: String - poster: String - workshop_map_id: String -} - -""" -order by max() on columns of table "maps" -""" -input maps_max_order_by { - deleted_at: order_by - id: order_by - label: order_by - name: order_by - patch: order_by - poster: order_by - workshop_map_id: order_by -} - -"""aggregate min on columns""" -type maps_min_fields { - deleted_at: timestamptz - id: uuid - label: String - name: String - patch: String - poster: String - workshop_map_id: String -} - -""" -order by min() on columns of table "maps" -""" -input maps_min_order_by { - deleted_at: order_by - id: order_by - label: order_by - name: order_by - patch: order_by - poster: order_by - workshop_map_id: order_by -} - -""" -response of any mutation on the table "maps" -""" -type maps_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [maps!]! -} - -""" -input type for inserting object relation for remote table "maps" -""" -input maps_obj_rel_insert_input { - data: maps_insert_input! - - """upsert condition""" - on_conflict: maps_on_conflict -} - -""" -on_conflict condition type for table "maps" -""" -input maps_on_conflict { - constraint: maps_constraint! - update_columns: [maps_update_column!]! = [] - where: maps_bool_exp -} - -"""Ordering options when selecting data from "maps".""" -input maps_order_by { - active_pool: order_by - deleted_at: order_by - e_match_type: e_match_types_order_by - enabled: order_by - id: order_by - label: order_by - match_maps_aggregate: match_maps_aggregate_order_by - match_veto_picks_aggregate: match_map_veto_picks_aggregate_order_by - name: order_by - patch: order_by - poster: order_by - type: order_by - workshop_map_id: order_by -} - -"""primary key columns input for table: maps""" -input maps_pk_columns_input { - id: uuid! -} - -""" -select columns of table "maps" -""" -enum maps_select_column { - """column name""" - active_pool - - """column name""" - deleted_at - - """column name""" - enabled - - """column name""" - id - - """column name""" - label - - """column name""" - name - - """column name""" - patch - - """column name""" - poster - - """column name""" - type - - """column name""" - workshop_map_id -} - -""" -select "maps_aggregate_bool_exp_bool_and_arguments_columns" columns of table "maps" -""" -enum maps_select_column_maps_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - active_pool - - """column name""" - enabled -} - -""" -select "maps_aggregate_bool_exp_bool_or_arguments_columns" columns of table "maps" -""" -enum maps_select_column_maps_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - active_pool - - """column name""" - enabled -} - -""" -input type for updating data in table "maps" -""" -input maps_set_input { - active_pool: Boolean - deleted_at: timestamptz - enabled: Boolean - id: uuid - label: String - name: String - patch: String - poster: String - type: e_match_types_enum - workshop_map_id: String -} - -""" -Streaming cursor of the table "maps" -""" -input maps_stream_cursor_input { - """Stream column input with initial value""" - initial_value: maps_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input maps_stream_cursor_value_input { - active_pool: Boolean - deleted_at: timestamptz - enabled: Boolean - id: uuid - label: String - name: String - patch: String - poster: String - type: e_match_types_enum - workshop_map_id: String -} - -""" -update columns of table "maps" -""" -enum maps_update_column { - """column name""" - active_pool - - """column name""" - deleted_at - - """column name""" - enabled - - """column name""" - id - - """column name""" - label - - """column name""" - name - - """column name""" - patch - - """column name""" - poster - - """column name""" - type - - """column name""" - workshop_map_id -} - -input maps_updates { - """sets the columns of the filtered rows to the given values""" - _set: maps_set_input - - """filter the rows which have to be updated""" - where: maps_bool_exp! -} - -""" -columns and relationships of "match_clips" -""" -type match_clips { - created_at: timestamptz! - - """ - A computed field, executes function "clip_download_url" - """ - download_url: String - duration_ms: Int - file: String - id: uuid! - kills_count: Int - - """An object relationship""" - match_map: match_maps! - - """An object relationship""" - match_map_demo: match_map_demos - match_map_demo_id: uuid - match_map_id: uuid! - - """An array relationship""" - render_jobs( - """distinct select on columns""" - distinct_on: [clip_render_jobs_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: [clip_render_jobs_order_by!] - - """filter the rows returned""" - where: clip_render_jobs_bool_exp - ): [clip_render_jobs!]! - - """An aggregate relationship""" - render_jobs_aggregate( - """distinct select on columns""" - distinct_on: [clip_render_jobs_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: [clip_render_jobs_order_by!] - - """filter the rows returned""" - where: clip_render_jobs_bool_exp - ): clip_render_jobs_aggregate! - round: Int - size: bigint! - - """An object relationship""" - target: players - target_steam_id: bigint - - """ - A computed field, executes function "clip_thumbnail_download_url" - """ - thumbnail_download_url: String - thumbnail_url: String - title: String - - """An object relationship""" - user: players - user_steam_id: bigint - views_count: Int! - visibility: e_match_clip_visibility_enum! -} - -""" -aggregated selection of "match_clips" -""" -type match_clips_aggregate { - aggregate: match_clips_aggregate_fields - nodes: [match_clips!]! -} - -input match_clips_aggregate_bool_exp { - count: match_clips_aggregate_bool_exp_count -} - -input match_clips_aggregate_bool_exp_count { - arguments: [match_clips_select_column!] - distinct: Boolean - filter: match_clips_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "match_clips" -""" -type match_clips_aggregate_fields { - avg: match_clips_avg_fields - count(columns: [match_clips_select_column!], distinct: Boolean): Int! - max: match_clips_max_fields - min: match_clips_min_fields - stddev: match_clips_stddev_fields - stddev_pop: match_clips_stddev_pop_fields - stddev_samp: match_clips_stddev_samp_fields - sum: match_clips_sum_fields - var_pop: match_clips_var_pop_fields - var_samp: match_clips_var_samp_fields - variance: match_clips_variance_fields -} - -""" -order by aggregate values of table "match_clips" -""" -input match_clips_aggregate_order_by { - avg: match_clips_avg_order_by - count: order_by - max: match_clips_max_order_by - min: match_clips_min_order_by - stddev: match_clips_stddev_order_by - stddev_pop: match_clips_stddev_pop_order_by - stddev_samp: match_clips_stddev_samp_order_by - sum: match_clips_sum_order_by - var_pop: match_clips_var_pop_order_by - var_samp: match_clips_var_samp_order_by - variance: match_clips_variance_order_by -} - -""" -input type for inserting array relation for remote table "match_clips" -""" -input match_clips_arr_rel_insert_input { - data: [match_clips_insert_input!]! - - """upsert condition""" - on_conflict: match_clips_on_conflict -} - -"""aggregate avg on columns""" -type match_clips_avg_fields { - duration_ms: Float - kills_count: Float - round: Float - size: Float - target_steam_id: Float - user_steam_id: Float - views_count: Float -} - -""" -order by avg() on columns of table "match_clips" -""" -input match_clips_avg_order_by { - duration_ms: order_by - kills_count: order_by - round: order_by - size: order_by - target_steam_id: order_by - user_steam_id: order_by - views_count: order_by -} - -""" -Boolean expression to filter rows from the table "match_clips". All fields are combined with a logical 'AND'. -""" -input match_clips_bool_exp { - _and: [match_clips_bool_exp!] - _not: match_clips_bool_exp - _or: [match_clips_bool_exp!] - created_at: timestamptz_comparison_exp - download_url: String_comparison_exp - duration_ms: Int_comparison_exp - file: String_comparison_exp - id: uuid_comparison_exp - kills_count: Int_comparison_exp - match_map: match_maps_bool_exp - match_map_demo: match_map_demos_bool_exp - match_map_demo_id: uuid_comparison_exp - match_map_id: uuid_comparison_exp - render_jobs: clip_render_jobs_bool_exp - render_jobs_aggregate: clip_render_jobs_aggregate_bool_exp - round: Int_comparison_exp - size: bigint_comparison_exp - target: players_bool_exp - target_steam_id: bigint_comparison_exp - thumbnail_download_url: String_comparison_exp - thumbnail_url: String_comparison_exp - title: String_comparison_exp - user: players_bool_exp - user_steam_id: bigint_comparison_exp - views_count: Int_comparison_exp - visibility: e_match_clip_visibility_enum_comparison_exp -} - -""" -unique or primary key constraints on table "match_clips" -""" -enum match_clips_constraint { - """ - unique or primary key constraint on columns "id" - """ - match_clips_pkey -} - -""" -input type for incrementing numeric columns in table "match_clips" -""" -input match_clips_inc_input { - duration_ms: Int - kills_count: Int - round: Int - size: bigint - target_steam_id: bigint - user_steam_id: bigint - views_count: Int -} - -""" -input type for inserting data into table "match_clips" -""" -input match_clips_insert_input { - created_at: timestamptz - duration_ms: Int - file: String - id: uuid - kills_count: Int - match_map: match_maps_obj_rel_insert_input - match_map_demo: match_map_demos_obj_rel_insert_input - match_map_demo_id: uuid - match_map_id: uuid - render_jobs: clip_render_jobs_arr_rel_insert_input - round: Int - size: bigint - target: players_obj_rel_insert_input - target_steam_id: bigint - thumbnail_url: String - title: String - user: players_obj_rel_insert_input - user_steam_id: bigint - views_count: Int - visibility: e_match_clip_visibility_enum -} - -"""aggregate max on columns""" -type match_clips_max_fields { - created_at: timestamptz - - """ - A computed field, executes function "clip_download_url" - """ - download_url: String - duration_ms: Int - file: String - id: uuid - kills_count: Int - match_map_demo_id: uuid - match_map_id: uuid - round: Int - size: bigint - target_steam_id: bigint - - """ - A computed field, executes function "clip_thumbnail_download_url" - """ - thumbnail_download_url: String - thumbnail_url: String - title: String - user_steam_id: bigint - views_count: Int -} - -""" -order by max() on columns of table "match_clips" -""" -input match_clips_max_order_by { - created_at: order_by - duration_ms: order_by - file: order_by - id: order_by - kills_count: order_by - match_map_demo_id: order_by - match_map_id: order_by - round: order_by - size: order_by - target_steam_id: order_by - thumbnail_url: order_by - title: order_by - user_steam_id: order_by - views_count: order_by -} - -"""aggregate min on columns""" -type match_clips_min_fields { - created_at: timestamptz - - """ - A computed field, executes function "clip_download_url" - """ - download_url: String - duration_ms: Int - file: String - id: uuid - kills_count: Int - match_map_demo_id: uuid - match_map_id: uuid - round: Int - size: bigint - target_steam_id: bigint - - """ - A computed field, executes function "clip_thumbnail_download_url" - """ - thumbnail_download_url: String - thumbnail_url: String - title: String - user_steam_id: bigint - views_count: Int -} - -""" -order by min() on columns of table "match_clips" -""" -input match_clips_min_order_by { - created_at: order_by - duration_ms: order_by - file: order_by - id: order_by - kills_count: order_by - match_map_demo_id: order_by - match_map_id: order_by - round: order_by - size: order_by - target_steam_id: order_by - thumbnail_url: order_by - title: order_by - user_steam_id: order_by - views_count: order_by -} - -""" -response of any mutation on the table "match_clips" -""" -type match_clips_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [match_clips!]! -} - -""" -input type for inserting object relation for remote table "match_clips" -""" -input match_clips_obj_rel_insert_input { - data: match_clips_insert_input! - - """upsert condition""" - on_conflict: match_clips_on_conflict -} - -""" -on_conflict condition type for table "match_clips" -""" -input match_clips_on_conflict { - constraint: match_clips_constraint! - update_columns: [match_clips_update_column!]! = [] - where: match_clips_bool_exp -} - -"""Ordering options when selecting data from "match_clips".""" -input match_clips_order_by { - created_at: order_by - download_url: order_by - duration_ms: order_by - file: order_by - id: order_by - kills_count: order_by - match_map: match_maps_order_by - match_map_demo: match_map_demos_order_by - match_map_demo_id: order_by - match_map_id: order_by - render_jobs_aggregate: clip_render_jobs_aggregate_order_by - round: order_by - size: order_by - target: players_order_by - target_steam_id: order_by - thumbnail_download_url: order_by - thumbnail_url: order_by - title: order_by - user: players_order_by - user_steam_id: order_by - views_count: order_by - visibility: order_by -} - -"""primary key columns input for table: match_clips""" -input match_clips_pk_columns_input { - id: uuid! -} - -""" -select columns of table "match_clips" -""" -enum match_clips_select_column { - """column name""" - created_at - - """column name""" - duration_ms - - """column name""" - file - - """column name""" - id - - """column name""" - kills_count - - """column name""" - match_map_demo_id - - """column name""" - match_map_id - - """column name""" - round - - """column name""" - size - - """column name""" - target_steam_id - - """column name""" - thumbnail_url - - """column name""" - title - - """column name""" - user_steam_id - - """column name""" - views_count - - """column name""" - visibility -} - -""" -input type for updating data in table "match_clips" -""" -input match_clips_set_input { - created_at: timestamptz - duration_ms: Int - file: String - id: uuid - kills_count: Int - match_map_demo_id: uuid - match_map_id: uuid - round: Int - size: bigint - target_steam_id: bigint - thumbnail_url: String - title: String - user_steam_id: bigint - views_count: Int - visibility: e_match_clip_visibility_enum -} - -"""aggregate stddev on columns""" -type match_clips_stddev_fields { - duration_ms: Float - kills_count: Float - round: Float - size: Float - target_steam_id: Float - user_steam_id: Float - views_count: Float -} - -""" -order by stddev() on columns of table "match_clips" -""" -input match_clips_stddev_order_by { - duration_ms: order_by - kills_count: order_by - round: order_by - size: order_by - target_steam_id: order_by - user_steam_id: order_by - views_count: order_by -} - -"""aggregate stddev_pop on columns""" -type match_clips_stddev_pop_fields { - duration_ms: Float - kills_count: Float - round: Float - size: Float - target_steam_id: Float - user_steam_id: Float - views_count: Float -} - -""" -order by stddev_pop() on columns of table "match_clips" -""" -input match_clips_stddev_pop_order_by { - duration_ms: order_by - kills_count: order_by - round: order_by - size: order_by - target_steam_id: order_by - user_steam_id: order_by - views_count: order_by -} - -"""aggregate stddev_samp on columns""" -type match_clips_stddev_samp_fields { - duration_ms: Float - kills_count: Float - round: Float - size: Float - target_steam_id: Float - user_steam_id: Float - views_count: Float -} - -""" -order by stddev_samp() on columns of table "match_clips" -""" -input match_clips_stddev_samp_order_by { - duration_ms: order_by - kills_count: order_by - round: order_by - size: order_by - target_steam_id: order_by - user_steam_id: order_by - views_count: order_by -} - -""" -Streaming cursor of the table "match_clips" -""" -input match_clips_stream_cursor_input { - """Stream column input with initial value""" - initial_value: match_clips_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input match_clips_stream_cursor_value_input { - created_at: timestamptz - duration_ms: Int - file: String - id: uuid - kills_count: Int - match_map_demo_id: uuid - match_map_id: uuid - round: Int - size: bigint - target_steam_id: bigint - thumbnail_url: String - title: String - user_steam_id: bigint - views_count: Int - visibility: e_match_clip_visibility_enum -} - -"""aggregate sum on columns""" -type match_clips_sum_fields { - duration_ms: Int - kills_count: Int - round: Int - size: bigint - target_steam_id: bigint - user_steam_id: bigint - views_count: Int -} - -""" -order by sum() on columns of table "match_clips" -""" -input match_clips_sum_order_by { - duration_ms: order_by - kills_count: order_by - round: order_by - size: order_by - target_steam_id: order_by - user_steam_id: order_by - views_count: order_by -} - -""" -update columns of table "match_clips" -""" -enum match_clips_update_column { - """column name""" - created_at - - """column name""" - duration_ms - - """column name""" - file - - """column name""" - id - - """column name""" - kills_count - - """column name""" - match_map_demo_id - - """column name""" - match_map_id - - """column name""" - round - - """column name""" - size - - """column name""" - target_steam_id - - """column name""" - thumbnail_url - - """column name""" - title - - """column name""" - user_steam_id - - """column name""" - views_count - - """column name""" - visibility -} - -input match_clips_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: match_clips_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: match_clips_set_input - - """filter the rows which have to be updated""" - where: match_clips_bool_exp! -} - -"""aggregate var_pop on columns""" -type match_clips_var_pop_fields { - duration_ms: Float - kills_count: Float - round: Float - size: Float - target_steam_id: Float - user_steam_id: Float - views_count: Float -} - -""" -order by var_pop() on columns of table "match_clips" -""" -input match_clips_var_pop_order_by { - duration_ms: order_by - kills_count: order_by - round: order_by - size: order_by - target_steam_id: order_by - user_steam_id: order_by - views_count: order_by -} - -"""aggregate var_samp on columns""" -type match_clips_var_samp_fields { - duration_ms: Float - kills_count: Float - round: Float - size: Float - target_steam_id: Float - user_steam_id: Float - views_count: Float -} - -""" -order by var_samp() on columns of table "match_clips" -""" -input match_clips_var_samp_order_by { - duration_ms: order_by - kills_count: order_by - round: order_by - size: order_by - target_steam_id: order_by - user_steam_id: order_by - views_count: order_by -} - -"""aggregate variance on columns""" -type match_clips_variance_fields { - duration_ms: Float - kills_count: Float - round: Float - size: Float - target_steam_id: Float - user_steam_id: Float - views_count: Float -} - -""" -order by variance() on columns of table "match_clips" -""" -input match_clips_variance_order_by { - duration_ms: order_by - kills_count: order_by - round: order_by - size: order_by - target_steam_id: order_by - user_steam_id: order_by - views_count: order_by -} - -""" -columns and relationships of "match_demo_sessions" -""" -type match_demo_sessions { - created_at: timestamptz! - error_message: String - - """An object relationship""" - game_server_node: game_server_nodes - game_server_node_id: String - id: uuid! - k8s_job_name: String! - last_activity_at: timestamptz! - last_status_at: timestamptz! - - """An object relationship""" - match: matches! - match_id: uuid! - - """An object relationship""" - match_map: match_maps! - - """An object relationship""" - match_map_demo: match_map_demos - match_map_demo_id: uuid - match_map_id: uuid! - status: String! - status_history( - """JSON select path""" - path: String - ): jsonb! - stream_url: String - - """An object relationship""" - watcher: players! - watcher_steam_id: bigint! -} - -""" -aggregated selection of "match_demo_sessions" -""" -type match_demo_sessions_aggregate { - aggregate: match_demo_sessions_aggregate_fields - nodes: [match_demo_sessions!]! -} - -input match_demo_sessions_aggregate_bool_exp { - count: match_demo_sessions_aggregate_bool_exp_count -} - -input match_demo_sessions_aggregate_bool_exp_count { - arguments: [match_demo_sessions_select_column!] - distinct: Boolean - filter: match_demo_sessions_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "match_demo_sessions" -""" -type match_demo_sessions_aggregate_fields { - avg: match_demo_sessions_avg_fields - count(columns: [match_demo_sessions_select_column!], distinct: Boolean): Int! - max: match_demo_sessions_max_fields - min: match_demo_sessions_min_fields - stddev: match_demo_sessions_stddev_fields - stddev_pop: match_demo_sessions_stddev_pop_fields - stddev_samp: match_demo_sessions_stddev_samp_fields - sum: match_demo_sessions_sum_fields - var_pop: match_demo_sessions_var_pop_fields - var_samp: match_demo_sessions_var_samp_fields - variance: match_demo_sessions_variance_fields -} - -""" -order by aggregate values of table "match_demo_sessions" -""" -input match_demo_sessions_aggregate_order_by { - avg: match_demo_sessions_avg_order_by - count: order_by - max: match_demo_sessions_max_order_by - min: match_demo_sessions_min_order_by - stddev: match_demo_sessions_stddev_order_by - stddev_pop: match_demo_sessions_stddev_pop_order_by - stddev_samp: match_demo_sessions_stddev_samp_order_by - sum: match_demo_sessions_sum_order_by - var_pop: match_demo_sessions_var_pop_order_by - var_samp: match_demo_sessions_var_samp_order_by - variance: match_demo_sessions_variance_order_by -} - -"""append existing jsonb value of filtered columns with new jsonb value""" -input match_demo_sessions_append_input { - status_history: jsonb -} - -""" -input type for inserting array relation for remote table "match_demo_sessions" -""" -input match_demo_sessions_arr_rel_insert_input { - data: [match_demo_sessions_insert_input!]! - - """upsert condition""" - on_conflict: match_demo_sessions_on_conflict -} - -"""aggregate avg on columns""" -type match_demo_sessions_avg_fields { - watcher_steam_id: Float -} - -""" -order by avg() on columns of table "match_demo_sessions" -""" -input match_demo_sessions_avg_order_by { - watcher_steam_id: order_by -} - -""" -Boolean expression to filter rows from the table "match_demo_sessions". All fields are combined with a logical 'AND'. -""" -input match_demo_sessions_bool_exp { - _and: [match_demo_sessions_bool_exp!] - _not: match_demo_sessions_bool_exp - _or: [match_demo_sessions_bool_exp!] - created_at: timestamptz_comparison_exp - error_message: String_comparison_exp - game_server_node: game_server_nodes_bool_exp - game_server_node_id: String_comparison_exp - id: uuid_comparison_exp - k8s_job_name: String_comparison_exp - last_activity_at: timestamptz_comparison_exp - last_status_at: timestamptz_comparison_exp - match: matches_bool_exp - match_id: uuid_comparison_exp - match_map: match_maps_bool_exp - match_map_demo: match_map_demos_bool_exp - match_map_demo_id: uuid_comparison_exp - match_map_id: uuid_comparison_exp - status: String_comparison_exp - status_history: jsonb_comparison_exp - stream_url: String_comparison_exp - watcher: players_bool_exp - watcher_steam_id: bigint_comparison_exp -} - -""" -unique or primary key constraints on table "match_demo_sessions" -""" -enum match_demo_sessions_constraint { - """ - unique or primary key constraint on columns "match_map_id", "watcher_steam_id" - """ - match_demo_sessions_per_user_per_map_uniq - - """ - unique or primary key constraint on columns "id" - """ - match_demo_sessions_pkey -} - -""" -delete the field or element with specified path (for JSON arrays, negative integers count from the end) -""" -input match_demo_sessions_delete_at_path_input { - status_history: [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 match_demo_sessions_delete_elem_input { - status_history: Int -} - -""" -delete key/value pair or string element. key/value pairs are matched based on their key value -""" -input match_demo_sessions_delete_key_input { - status_history: String -} - -""" -input type for incrementing numeric columns in table "match_demo_sessions" -""" -input match_demo_sessions_inc_input { - watcher_steam_id: bigint -} - -""" -input type for inserting data into table "match_demo_sessions" -""" -input match_demo_sessions_insert_input { - created_at: timestamptz - error_message: String - game_server_node: game_server_nodes_obj_rel_insert_input - game_server_node_id: String - id: uuid - k8s_job_name: String - last_activity_at: timestamptz - last_status_at: timestamptz - match: matches_obj_rel_insert_input - match_id: uuid - match_map: match_maps_obj_rel_insert_input - match_map_demo: match_map_demos_obj_rel_insert_input - match_map_demo_id: uuid - match_map_id: uuid - status: String - status_history: jsonb - stream_url: String - watcher: players_obj_rel_insert_input - watcher_steam_id: bigint -} - -"""aggregate max on columns""" -type match_demo_sessions_max_fields { - created_at: timestamptz - error_message: String - game_server_node_id: String - id: uuid - k8s_job_name: String - last_activity_at: timestamptz - last_status_at: timestamptz - match_id: uuid - match_map_demo_id: uuid - match_map_id: uuid - status: String - stream_url: String - watcher_steam_id: bigint -} - -""" -order by max() on columns of table "match_demo_sessions" -""" -input match_demo_sessions_max_order_by { - created_at: order_by - error_message: order_by - game_server_node_id: order_by - id: order_by - k8s_job_name: order_by - last_activity_at: order_by - last_status_at: order_by - match_id: order_by - match_map_demo_id: order_by - match_map_id: order_by - status: order_by - stream_url: order_by - watcher_steam_id: order_by -} - -"""aggregate min on columns""" -type match_demo_sessions_min_fields { - created_at: timestamptz - error_message: String - game_server_node_id: String - id: uuid - k8s_job_name: String - last_activity_at: timestamptz - last_status_at: timestamptz - match_id: uuid - match_map_demo_id: uuid - match_map_id: uuid - status: String - stream_url: String - watcher_steam_id: bigint -} - -""" -order by min() on columns of table "match_demo_sessions" -""" -input match_demo_sessions_min_order_by { - created_at: order_by - error_message: order_by - game_server_node_id: order_by - id: order_by - k8s_job_name: order_by - last_activity_at: order_by - last_status_at: order_by - match_id: order_by - match_map_demo_id: order_by - match_map_id: order_by - status: order_by - stream_url: order_by - watcher_steam_id: order_by -} - -""" -response of any mutation on the table "match_demo_sessions" -""" -type match_demo_sessions_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [match_demo_sessions!]! -} - -""" -on_conflict condition type for table "match_demo_sessions" -""" -input match_demo_sessions_on_conflict { - constraint: match_demo_sessions_constraint! - update_columns: [match_demo_sessions_update_column!]! = [] - where: match_demo_sessions_bool_exp -} - -"""Ordering options when selecting data from "match_demo_sessions".""" -input match_demo_sessions_order_by { - created_at: order_by - error_message: order_by - game_server_node: game_server_nodes_order_by - game_server_node_id: order_by - id: order_by - k8s_job_name: order_by - last_activity_at: order_by - last_status_at: order_by - match: matches_order_by - match_id: order_by - match_map: match_maps_order_by - match_map_demo: match_map_demos_order_by - match_map_demo_id: order_by - match_map_id: order_by - status: order_by - status_history: order_by - stream_url: order_by - watcher: players_order_by - watcher_steam_id: order_by -} - -"""primary key columns input for table: match_demo_sessions""" -input match_demo_sessions_pk_columns_input { - id: uuid! -} - -"""prepend existing jsonb value of filtered columns with new jsonb value""" -input match_demo_sessions_prepend_input { - status_history: jsonb -} - -""" -select columns of table "match_demo_sessions" -""" -enum match_demo_sessions_select_column { - """column name""" - created_at - - """column name""" - error_message - - """column name""" - game_server_node_id - - """column name""" - id - - """column name""" - k8s_job_name - - """column name""" - last_activity_at - - """column name""" - last_status_at - - """column name""" - match_id - - """column name""" - match_map_demo_id - - """column name""" - match_map_id - - """column name""" - status - - """column name""" - status_history - - """column name""" - stream_url - - """column name""" - watcher_steam_id -} - -""" -input type for updating data in table "match_demo_sessions" -""" -input match_demo_sessions_set_input { - created_at: timestamptz - error_message: String - game_server_node_id: String - id: uuid - k8s_job_name: String - last_activity_at: timestamptz - last_status_at: timestamptz - match_id: uuid - match_map_demo_id: uuid - match_map_id: uuid - status: String - status_history: jsonb - stream_url: String - watcher_steam_id: bigint -} - -"""aggregate stddev on columns""" -type match_demo_sessions_stddev_fields { - watcher_steam_id: Float -} - -""" -order by stddev() on columns of table "match_demo_sessions" -""" -input match_demo_sessions_stddev_order_by { - watcher_steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type match_demo_sessions_stddev_pop_fields { - watcher_steam_id: Float -} - -""" -order by stddev_pop() on columns of table "match_demo_sessions" -""" -input match_demo_sessions_stddev_pop_order_by { - watcher_steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type match_demo_sessions_stddev_samp_fields { - watcher_steam_id: Float -} - -""" -order by stddev_samp() on columns of table "match_demo_sessions" -""" -input match_demo_sessions_stddev_samp_order_by { - watcher_steam_id: order_by -} - -""" -Streaming cursor of the table "match_demo_sessions" -""" -input match_demo_sessions_stream_cursor_input { - """Stream column input with initial value""" - initial_value: match_demo_sessions_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input match_demo_sessions_stream_cursor_value_input { - created_at: timestamptz - error_message: String - game_server_node_id: String - id: uuid - k8s_job_name: String - last_activity_at: timestamptz - last_status_at: timestamptz - match_id: uuid - match_map_demo_id: uuid - match_map_id: uuid - status: String - status_history: jsonb - stream_url: String - watcher_steam_id: bigint -} - -"""aggregate sum on columns""" -type match_demo_sessions_sum_fields { - watcher_steam_id: bigint -} - -""" -order by sum() on columns of table "match_demo_sessions" -""" -input match_demo_sessions_sum_order_by { - watcher_steam_id: order_by -} - -""" -update columns of table "match_demo_sessions" -""" -enum match_demo_sessions_update_column { - """column name""" - created_at - - """column name""" - error_message - - """column name""" - game_server_node_id - - """column name""" - id - - """column name""" - k8s_job_name - - """column name""" - last_activity_at - - """column name""" - last_status_at - - """column name""" - match_id - - """column name""" - match_map_demo_id - - """column name""" - match_map_id - - """column name""" - status - - """column name""" - status_history - - """column name""" - stream_url - - """column name""" - watcher_steam_id -} - -input match_demo_sessions_updates { - """append existing jsonb value of filtered columns with new jsonb value""" - _append: match_demo_sessions_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: match_demo_sessions_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: match_demo_sessions_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: match_demo_sessions_delete_key_input - - """increments the numeric columns with given value of the filtered values""" - _inc: match_demo_sessions_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: match_demo_sessions_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: match_demo_sessions_set_input - - """filter the rows which have to be updated""" - where: match_demo_sessions_bool_exp! -} - -"""aggregate var_pop on columns""" -type match_demo_sessions_var_pop_fields { - watcher_steam_id: Float -} - -""" -order by var_pop() on columns of table "match_demo_sessions" -""" -input match_demo_sessions_var_pop_order_by { - watcher_steam_id: order_by -} - -"""aggregate var_samp on columns""" -type match_demo_sessions_var_samp_fields { - watcher_steam_id: Float -} - -""" -order by var_samp() on columns of table "match_demo_sessions" -""" -input match_demo_sessions_var_samp_order_by { - watcher_steam_id: order_by -} - -"""aggregate variance on columns""" -type match_demo_sessions_variance_fields { - watcher_steam_id: Float -} - -""" -order by variance() on columns of table "match_demo_sessions" -""" -input match_demo_sessions_variance_order_by { - watcher_steam_id: order_by -} - -"""relational table for assigning a players to a match and lineup""" -type match_lineup_players { - captain: Boolean! - checked_in: Boolean! - discord_id: String - id: uuid! - is_connected: Boolean! - - """An object relationship""" - lineup: match_lineups! - match_lineup_id: uuid! - party_id: uuid - party_source: e_match_party_sources_enum - placeholder_name: String - - """An object relationship""" - player: players - steam_id: bigint -} - -""" -aggregated selection of "match_lineup_players" -""" -type match_lineup_players_aggregate { - aggregate: match_lineup_players_aggregate_fields - nodes: [match_lineup_players!]! -} - -input match_lineup_players_aggregate_bool_exp { - bool_and: match_lineup_players_aggregate_bool_exp_bool_and - bool_or: match_lineup_players_aggregate_bool_exp_bool_or - count: match_lineup_players_aggregate_bool_exp_count -} - -input match_lineup_players_aggregate_bool_exp_bool_and { - arguments: match_lineup_players_select_column_match_lineup_players_aggregate_bool_exp_bool_and_arguments_columns! - distinct: Boolean - filter: match_lineup_players_bool_exp - predicate: Boolean_comparison_exp! -} - -input match_lineup_players_aggregate_bool_exp_bool_or { - arguments: match_lineup_players_select_column_match_lineup_players_aggregate_bool_exp_bool_or_arguments_columns! - distinct: Boolean - filter: match_lineup_players_bool_exp - predicate: Boolean_comparison_exp! -} - -input match_lineup_players_aggregate_bool_exp_count { - arguments: [match_lineup_players_select_column!] - distinct: Boolean - filter: match_lineup_players_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "match_lineup_players" -""" -type match_lineup_players_aggregate_fields { - avg: match_lineup_players_avg_fields - count(columns: [match_lineup_players_select_column!], distinct: Boolean): Int! - max: match_lineup_players_max_fields - min: match_lineup_players_min_fields - stddev: match_lineup_players_stddev_fields - stddev_pop: match_lineup_players_stddev_pop_fields - stddev_samp: match_lineup_players_stddev_samp_fields - sum: match_lineup_players_sum_fields - var_pop: match_lineup_players_var_pop_fields - var_samp: match_lineup_players_var_samp_fields - variance: match_lineup_players_variance_fields -} - -""" -order by aggregate values of table "match_lineup_players" -""" -input match_lineup_players_aggregate_order_by { - avg: match_lineup_players_avg_order_by - count: order_by - max: match_lineup_players_max_order_by - min: match_lineup_players_min_order_by - stddev: match_lineup_players_stddev_order_by - stddev_pop: match_lineup_players_stddev_pop_order_by - stddev_samp: match_lineup_players_stddev_samp_order_by - sum: match_lineup_players_sum_order_by - var_pop: match_lineup_players_var_pop_order_by - var_samp: match_lineup_players_var_samp_order_by - variance: match_lineup_players_variance_order_by -} - -""" -input type for inserting array relation for remote table "match_lineup_players" -""" -input match_lineup_players_arr_rel_insert_input { - data: [match_lineup_players_insert_input!]! - - """upsert condition""" - on_conflict: match_lineup_players_on_conflict -} - -"""aggregate avg on columns""" -type match_lineup_players_avg_fields { - steam_id: Float -} - -""" -order by avg() on columns of table "match_lineup_players" -""" -input match_lineup_players_avg_order_by { - steam_id: order_by -} - -""" -Boolean expression to filter rows from the table "match_lineup_players". All fields are combined with a logical 'AND'. -""" -input match_lineup_players_bool_exp { - _and: [match_lineup_players_bool_exp!] - _not: match_lineup_players_bool_exp - _or: [match_lineup_players_bool_exp!] - captain: Boolean_comparison_exp - checked_in: Boolean_comparison_exp - discord_id: String_comparison_exp - id: uuid_comparison_exp - is_connected: Boolean_comparison_exp - lineup: match_lineups_bool_exp - match_lineup_id: uuid_comparison_exp - party_id: uuid_comparison_exp - party_source: e_match_party_sources_enum_comparison_exp - placeholder_name: String_comparison_exp - player: players_bool_exp - steam_id: bigint_comparison_exp -} - -""" -unique or primary key constraints on table "match_lineup_players" -""" -enum match_lineup_players_constraint { - """ - unique or primary key constraint on columns "placeholder_name", "match_lineup_id" - """ - match_lineup_players_match_lineup_id_placeholder_name_key - - """ - unique or primary key constraint on columns "steam_id", "match_lineup_id" - """ - match_lineup_players_match_lineup_id_steam_id_key - - """ - unique or primary key constraint on columns "id" - """ - match_members_pkey -} - -""" -input type for incrementing numeric columns in table "match_lineup_players" -""" -input match_lineup_players_inc_input { - steam_id: bigint -} - -""" -input type for inserting data into table "match_lineup_players" -""" -input match_lineup_players_insert_input { - captain: Boolean - checked_in: Boolean - discord_id: String - id: uuid - is_connected: Boolean - lineup: match_lineups_obj_rel_insert_input - match_lineup_id: uuid - party_id: uuid - party_source: e_match_party_sources_enum - placeholder_name: String - player: players_obj_rel_insert_input - steam_id: bigint -} - -"""aggregate max on columns""" -type match_lineup_players_max_fields { - discord_id: String - id: uuid - match_lineup_id: uuid - party_id: uuid - placeholder_name: String - steam_id: bigint -} - -""" -order by max() on columns of table "match_lineup_players" -""" -input match_lineup_players_max_order_by { - discord_id: order_by - id: order_by - match_lineup_id: order_by - party_id: order_by - placeholder_name: order_by - steam_id: order_by -} - -"""aggregate min on columns""" -type match_lineup_players_min_fields { - discord_id: String - id: uuid - match_lineup_id: uuid - party_id: uuid - placeholder_name: String - steam_id: bigint -} - -""" -order by min() on columns of table "match_lineup_players" -""" -input match_lineup_players_min_order_by { - discord_id: order_by - id: order_by - match_lineup_id: order_by - party_id: order_by - placeholder_name: order_by - steam_id: order_by -} - -""" -response of any mutation on the table "match_lineup_players" -""" -type match_lineup_players_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [match_lineup_players!]! -} - -""" -on_conflict condition type for table "match_lineup_players" -""" -input match_lineup_players_on_conflict { - constraint: match_lineup_players_constraint! - update_columns: [match_lineup_players_update_column!]! = [] - where: match_lineup_players_bool_exp -} - -"""Ordering options when selecting data from "match_lineup_players".""" -input match_lineup_players_order_by { - captain: order_by - checked_in: order_by - discord_id: order_by - id: order_by - is_connected: order_by - lineup: match_lineups_order_by - match_lineup_id: order_by - party_id: order_by - party_source: order_by - placeholder_name: order_by - player: players_order_by - steam_id: order_by -} - -"""primary key columns input for table: match_lineup_players""" -input match_lineup_players_pk_columns_input { - id: uuid! -} - -""" -select columns of table "match_lineup_players" -""" -enum match_lineup_players_select_column { - """column name""" - captain - - """column name""" - checked_in - - """column name""" - discord_id - - """column name""" - id - - """column name""" - is_connected - - """column name""" - match_lineup_id - - """column name""" - party_id - - """column name""" - party_source - - """column name""" - placeholder_name - - """column name""" - steam_id -} - -""" -select "match_lineup_players_aggregate_bool_exp_bool_and_arguments_columns" columns of table "match_lineup_players" -""" -enum match_lineup_players_select_column_match_lineup_players_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - captain - - """column name""" - checked_in - - """column name""" - is_connected -} - -""" -select "match_lineup_players_aggregate_bool_exp_bool_or_arguments_columns" columns of table "match_lineup_players" -""" -enum match_lineup_players_select_column_match_lineup_players_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - captain - - """column name""" - checked_in - - """column name""" - is_connected -} - -""" -input type for updating data in table "match_lineup_players" -""" -input match_lineup_players_set_input { - captain: Boolean - checked_in: Boolean - discord_id: String - id: uuid - is_connected: Boolean - match_lineup_id: uuid - party_id: uuid - party_source: e_match_party_sources_enum - placeholder_name: String - steam_id: bigint -} - -"""aggregate stddev on columns""" -type match_lineup_players_stddev_fields { - steam_id: Float -} - -""" -order by stddev() on columns of table "match_lineup_players" -""" -input match_lineup_players_stddev_order_by { - steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type match_lineup_players_stddev_pop_fields { - steam_id: Float -} - -""" -order by stddev_pop() on columns of table "match_lineup_players" -""" -input match_lineup_players_stddev_pop_order_by { - steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type match_lineup_players_stddev_samp_fields { - steam_id: Float -} - -""" -order by stddev_samp() on columns of table "match_lineup_players" -""" -input match_lineup_players_stddev_samp_order_by { - steam_id: order_by -} - -""" -Streaming cursor of the table "match_lineup_players" -""" -input match_lineup_players_stream_cursor_input { - """Stream column input with initial value""" - initial_value: match_lineup_players_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input match_lineup_players_stream_cursor_value_input { - captain: Boolean - checked_in: Boolean - discord_id: String - id: uuid - is_connected: Boolean - match_lineup_id: uuid - party_id: uuid - party_source: e_match_party_sources_enum - placeholder_name: String - steam_id: bigint -} - -"""aggregate sum on columns""" -type match_lineup_players_sum_fields { - steam_id: bigint -} - -""" -order by sum() on columns of table "match_lineup_players" -""" -input match_lineup_players_sum_order_by { - steam_id: order_by -} - -""" -update columns of table "match_lineup_players" -""" -enum match_lineup_players_update_column { - """column name""" - captain - - """column name""" - checked_in - - """column name""" - discord_id - - """column name""" - id - - """column name""" - is_connected - - """column name""" - match_lineup_id - - """column name""" - party_id - - """column name""" - party_source - - """column name""" - placeholder_name - - """column name""" - steam_id -} - -input match_lineup_players_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: match_lineup_players_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: match_lineup_players_set_input - - """filter the rows which have to be updated""" - where: match_lineup_players_bool_exp! -} - -"""aggregate var_pop on columns""" -type match_lineup_players_var_pop_fields { - steam_id: Float -} - -""" -order by var_pop() on columns of table "match_lineup_players" -""" -input match_lineup_players_var_pop_order_by { - steam_id: order_by -} - -"""aggregate var_samp on columns""" -type match_lineup_players_var_samp_fields { - steam_id: Float -} - -""" -order by var_samp() on columns of table "match_lineup_players" -""" -input match_lineup_players_var_samp_order_by { - steam_id: order_by -} - -"""aggregate variance on columns""" -type match_lineup_players_variance_fields { - steam_id: Float -} - -""" -order by variance() on columns of table "match_lineup_players" -""" -input match_lineup_players_variance_order_by { - steam_id: order_by -} - -"""relational table for assigning a team to a match and lineup""" -type match_lineups { - """ - A computed field, executes function "can_pick_map_veto" - """ - can_pick_map_veto: Boolean - - """ - A computed field, executes function "can_pick_region_veto" - """ - can_pick_region_veto: Boolean - - """ - A computed field, executes function "can_update_lineup" - """ - can_update_lineup: Boolean - - """An object relationship""" - captain: v_match_captains - - """An object relationship""" - coach: players - coach_steam_id: bigint - id: uuid! - - """ - A computed field, executes function "is_on_lineup" - """ - is_on_lineup: Boolean - - """ - A computed field, executes function "lineup_is_picking_map_veto" - """ - is_picking_map_veto: Boolean - - """ - A computed field, executes function "lineup_is_picking_region_veto" - """ - is_picking_region_veto: Boolean - - """ - A computed field, executes function "is_match_lineup_ready" - """ - is_ready: Boolean - - """An array relationship""" - lineup_players( - """distinct select on columns""" - distinct_on: [match_lineup_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_lineup_players_order_by!] - - """filter the rows returned""" - where: match_lineup_players_bool_exp - ): [match_lineup_players!]! - - """An aggregate relationship""" - lineup_players_aggregate( - """distinct select on columns""" - distinct_on: [match_lineup_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_lineup_players_order_by!] - - """filter the rows returned""" - where: match_lineup_players_bool_exp - ): match_lineup_players_aggregate! - - """An object relationship""" - match: matches - match_id: uuid - - """An array relationship""" - match_veto_picks( - """distinct select on columns""" - distinct_on: [match_map_veto_picks_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_map_veto_picks_order_by!] - - """filter the rows returned""" - where: match_map_veto_picks_bool_exp - ): [match_map_veto_picks!]! - - """An aggregate relationship""" - match_veto_picks_aggregate( - """distinct select on columns""" - distinct_on: [match_map_veto_picks_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_map_veto_picks_order_by!] - - """filter the rows returned""" - where: match_map_veto_picks_bool_exp - ): match_map_veto_picks_aggregate! - - """ - A computed field, executes function "get_team_name" - """ - name: String - - """An object relationship""" - team: teams - team_id: uuid - team_name: String -} - -""" -aggregated selection of "match_lineups" -""" -type match_lineups_aggregate { - aggregate: match_lineups_aggregate_fields - nodes: [match_lineups!]! -} - -input match_lineups_aggregate_bool_exp { - count: match_lineups_aggregate_bool_exp_count -} - -input match_lineups_aggregate_bool_exp_count { - arguments: [match_lineups_select_column!] - distinct: Boolean - filter: match_lineups_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "match_lineups" -""" -type match_lineups_aggregate_fields { - avg: match_lineups_avg_fields - count(columns: [match_lineups_select_column!], distinct: Boolean): Int! - max: match_lineups_max_fields - min: match_lineups_min_fields - stddev: match_lineups_stddev_fields - stddev_pop: match_lineups_stddev_pop_fields - stddev_samp: match_lineups_stddev_samp_fields - sum: match_lineups_sum_fields - var_pop: match_lineups_var_pop_fields - var_samp: match_lineups_var_samp_fields - variance: match_lineups_variance_fields -} - -""" -order by aggregate values of table "match_lineups" -""" -input match_lineups_aggregate_order_by { - avg: match_lineups_avg_order_by - count: order_by - max: match_lineups_max_order_by - min: match_lineups_min_order_by - stddev: match_lineups_stddev_order_by - stddev_pop: match_lineups_stddev_pop_order_by - stddev_samp: match_lineups_stddev_samp_order_by - sum: match_lineups_sum_order_by - var_pop: match_lineups_var_pop_order_by - var_samp: match_lineups_var_samp_order_by - variance: match_lineups_variance_order_by -} - -""" -input type for inserting array relation for remote table "match_lineups" -""" -input match_lineups_arr_rel_insert_input { - data: [match_lineups_insert_input!]! - - """upsert condition""" - on_conflict: match_lineups_on_conflict -} - -"""aggregate avg on columns""" -type match_lineups_avg_fields { - coach_steam_id: Float -} - -""" -order by avg() on columns of table "match_lineups" -""" -input match_lineups_avg_order_by { - coach_steam_id: order_by -} - -""" -Boolean expression to filter rows from the table "match_lineups". All fields are combined with a logical 'AND'. -""" -input match_lineups_bool_exp { - _and: [match_lineups_bool_exp!] - _not: match_lineups_bool_exp - _or: [match_lineups_bool_exp!] - can_pick_map_veto: Boolean_comparison_exp - can_pick_region_veto: Boolean_comparison_exp - can_update_lineup: Boolean_comparison_exp - captain: v_match_captains_bool_exp - coach: players_bool_exp - coach_steam_id: bigint_comparison_exp - id: uuid_comparison_exp - is_on_lineup: Boolean_comparison_exp - is_picking_map_veto: Boolean_comparison_exp - is_picking_region_veto: Boolean_comparison_exp - is_ready: Boolean_comparison_exp - lineup_players: match_lineup_players_bool_exp - lineup_players_aggregate: match_lineup_players_aggregate_bool_exp - match: matches_bool_exp - match_id: uuid_comparison_exp - match_veto_picks: match_map_veto_picks_bool_exp - match_veto_picks_aggregate: match_map_veto_picks_aggregate_bool_exp - name: String_comparison_exp - team: teams_bool_exp - team_id: uuid_comparison_exp - team_name: String_comparison_exp -} - -""" -unique or primary key constraints on table "match_lineups" -""" -enum match_lineups_constraint { - """ - unique or primary key constraint on columns "id" - """ - match_teams_pkey -} - -""" -input type for incrementing numeric columns in table "match_lineups" -""" -input match_lineups_inc_input { - coach_steam_id: bigint -} - -""" -input type for inserting data into table "match_lineups" -""" -input match_lineups_insert_input { - captain: v_match_captains_obj_rel_insert_input - coach: players_obj_rel_insert_input - coach_steam_id: bigint - id: uuid - lineup_players: match_lineup_players_arr_rel_insert_input - match: matches_obj_rel_insert_input - match_id: uuid - match_veto_picks: match_map_veto_picks_arr_rel_insert_input - team: teams_obj_rel_insert_input - team_id: uuid - team_name: String -} - -"""aggregate max on columns""" -type match_lineups_max_fields { - coach_steam_id: bigint - id: uuid - match_id: uuid - - """ - A computed field, executes function "get_team_name" - """ - name: String - team_id: uuid - team_name: String -} - -""" -order by max() on columns of table "match_lineups" -""" -input match_lineups_max_order_by { - coach_steam_id: order_by - id: order_by - match_id: order_by - team_id: order_by - team_name: order_by -} - -"""aggregate min on columns""" -type match_lineups_min_fields { - coach_steam_id: bigint - id: uuid - match_id: uuid - - """ - A computed field, executes function "get_team_name" - """ - name: String - team_id: uuid - team_name: String -} - -""" -order by min() on columns of table "match_lineups" -""" -input match_lineups_min_order_by { - coach_steam_id: order_by - id: order_by - match_id: order_by - team_id: order_by - team_name: order_by -} - -""" -response of any mutation on the table "match_lineups" -""" -type match_lineups_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [match_lineups!]! -} - -""" -input type for inserting object relation for remote table "match_lineups" -""" -input match_lineups_obj_rel_insert_input { - data: match_lineups_insert_input! - - """upsert condition""" - on_conflict: match_lineups_on_conflict -} - -""" -on_conflict condition type for table "match_lineups" -""" -input match_lineups_on_conflict { - constraint: match_lineups_constraint! - update_columns: [match_lineups_update_column!]! = [] - where: match_lineups_bool_exp -} - -"""Ordering options when selecting data from "match_lineups".""" -input match_lineups_order_by { - can_pick_map_veto: order_by - can_pick_region_veto: order_by - can_update_lineup: order_by - captain: v_match_captains_order_by - coach: players_order_by - coach_steam_id: order_by - id: order_by - is_on_lineup: order_by - is_picking_map_veto: order_by - is_picking_region_veto: order_by - is_ready: order_by - lineup_players_aggregate: match_lineup_players_aggregate_order_by - match: matches_order_by - match_id: order_by - match_veto_picks_aggregate: match_map_veto_picks_aggregate_order_by - name: order_by - team: teams_order_by - team_id: order_by - team_name: order_by -} - -"""primary key columns input for table: match_lineups""" -input match_lineups_pk_columns_input { - id: uuid! -} - -""" -select columns of table "match_lineups" -""" -enum match_lineups_select_column { - """column name""" - coach_steam_id - - """column name""" - id - - """column name""" - match_id - - """column name""" - team_id - - """column name""" - team_name -} - -""" -input type for updating data in table "match_lineups" -""" -input match_lineups_set_input { - coach_steam_id: bigint - id: uuid - match_id: uuid - team_id: uuid - team_name: String -} - -"""aggregate stddev on columns""" -type match_lineups_stddev_fields { - coach_steam_id: Float -} - -""" -order by stddev() on columns of table "match_lineups" -""" -input match_lineups_stddev_order_by { - coach_steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type match_lineups_stddev_pop_fields { - coach_steam_id: Float -} - -""" -order by stddev_pop() on columns of table "match_lineups" -""" -input match_lineups_stddev_pop_order_by { - coach_steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type match_lineups_stddev_samp_fields { - coach_steam_id: Float -} - -""" -order by stddev_samp() on columns of table "match_lineups" -""" -input match_lineups_stddev_samp_order_by { - coach_steam_id: order_by -} - -""" -Streaming cursor of the table "match_lineups" -""" -input match_lineups_stream_cursor_input { - """Stream column input with initial value""" - initial_value: match_lineups_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input match_lineups_stream_cursor_value_input { - coach_steam_id: bigint - id: uuid - match_id: uuid - team_id: uuid - team_name: String -} - -"""aggregate sum on columns""" -type match_lineups_sum_fields { - coach_steam_id: bigint -} - -""" -order by sum() on columns of table "match_lineups" -""" -input match_lineups_sum_order_by { - coach_steam_id: order_by -} - -""" -update columns of table "match_lineups" -""" -enum match_lineups_update_column { - """column name""" - coach_steam_id - - """column name""" - id - - """column name""" - match_id - - """column name""" - team_id - - """column name""" - team_name -} - -input match_lineups_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: match_lineups_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: match_lineups_set_input - - """filter the rows which have to be updated""" - where: match_lineups_bool_exp! -} - -"""aggregate var_pop on columns""" -type match_lineups_var_pop_fields { - coach_steam_id: Float -} - -""" -order by var_pop() on columns of table "match_lineups" -""" -input match_lineups_var_pop_order_by { - coach_steam_id: order_by -} - -"""aggregate var_samp on columns""" -type match_lineups_var_samp_fields { - coach_steam_id: Float -} - -""" -order by var_samp() on columns of table "match_lineups" -""" -input match_lineups_var_samp_order_by { - coach_steam_id: order_by -} - -"""aggregate variance on columns""" -type match_lineups_variance_fields { - coach_steam_id: Float -} - -""" -order by variance() on columns of table "match_lineups" -""" -input match_lineups_variance_order_by { - coach_steam_id: order_by -} - -""" -columns and relationships of "match_map_demos" -""" -type match_map_demos { - bombs( - """JSON select path""" - path: String - ): jsonb - - """An array relationship""" - clip_render_jobs( - """distinct select on columns""" - distinct_on: [clip_render_jobs_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: [clip_render_jobs_order_by!] - - """filter the rows returned""" - where: clip_render_jobs_bool_exp - ): [clip_render_jobs!]! - - """An aggregate relationship""" - clip_render_jobs_aggregate( - """distinct select on columns""" - distinct_on: [clip_render_jobs_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: [clip_render_jobs_order_by!] - - """filter the rows returned""" - where: clip_render_jobs_bool_exp - ): clip_render_jobs_aggregate! - created_at: timestamptz! - cs2_build: String - - """An array relationship""" - demo_sessions( - """distinct select on columns""" - distinct_on: [match_demo_sessions_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_demo_sessions_order_by!] - - """filter the rows returned""" - where: match_demo_sessions_bool_exp - ): [match_demo_sessions!]! - - """An aggregate relationship""" - demo_sessions_aggregate( - """distinct select on columns""" - distinct_on: [match_demo_sessions_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_demo_sessions_order_by!] - - """filter the rows returned""" - where: match_demo_sessions_bool_exp - ): match_demo_sessions_aggregate! - - """ - A computed field, executes function "demo_download_url" - """ - download_url: String - duration_seconds: Float - file: String! - geometry_validated: Boolean - id: uuid! - kills( - """JSON select path""" - path: String - ): jsonb - map_name: String - - """An object relationship""" - match: matches! - - """An array relationship""" - match_clips( - """distinct select on columns""" - distinct_on: [match_clips_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_clips_order_by!] - - """filter the rows returned""" - where: match_clips_bool_exp - ): [match_clips!]! - - """An aggregate relationship""" - match_clips_aggregate( - """distinct select on columns""" - distinct_on: [match_clips_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_clips_order_by!] - - """filter the rows returned""" - where: match_clips_bool_exp - ): match_clips_aggregate! - match_id: uuid! - - """An object relationship""" - match_map: match_maps! - match_map_id: uuid! - metadata_parsed_at: timestamptz - parser_version: Int - playback_file: String - playback_size: Int - - """ - A computed field, executes function "demo_playback_url" - """ - playback_url: String - playback_version: Int - players( - """JSON select path""" - path: String - ): jsonb - round_ticks( - """JSON select path""" - path: String - ): jsonb - size: Int - tick_rate: Float - total_ticks: Int - workshop_id: String -} - -""" -aggregated selection of "match_map_demos" -""" -type match_map_demos_aggregate { - aggregate: match_map_demos_aggregate_fields - nodes: [match_map_demos!]! -} - -input match_map_demos_aggregate_bool_exp { - bool_and: match_map_demos_aggregate_bool_exp_bool_and - bool_or: match_map_demos_aggregate_bool_exp_bool_or - count: match_map_demos_aggregate_bool_exp_count -} - -input match_map_demos_aggregate_bool_exp_bool_and { - arguments: match_map_demos_select_column_match_map_demos_aggregate_bool_exp_bool_and_arguments_columns! - distinct: Boolean - filter: match_map_demos_bool_exp - predicate: Boolean_comparison_exp! -} - -input match_map_demos_aggregate_bool_exp_bool_or { - arguments: match_map_demos_select_column_match_map_demos_aggregate_bool_exp_bool_or_arguments_columns! - distinct: Boolean - filter: match_map_demos_bool_exp - predicate: Boolean_comparison_exp! -} - -input match_map_demos_aggregate_bool_exp_count { - arguments: [match_map_demos_select_column!] - distinct: Boolean - filter: match_map_demos_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "match_map_demos" -""" -type match_map_demos_aggregate_fields { - avg: match_map_demos_avg_fields - count(columns: [match_map_demos_select_column!], distinct: Boolean): Int! - max: match_map_demos_max_fields - min: match_map_demos_min_fields - stddev: match_map_demos_stddev_fields - stddev_pop: match_map_demos_stddev_pop_fields - stddev_samp: match_map_demos_stddev_samp_fields - sum: match_map_demos_sum_fields - var_pop: match_map_demos_var_pop_fields - var_samp: match_map_demos_var_samp_fields - variance: match_map_demos_variance_fields -} - -""" -order by aggregate values of table "match_map_demos" -""" -input match_map_demos_aggregate_order_by { - avg: match_map_demos_avg_order_by - count: order_by - max: match_map_demos_max_order_by - min: match_map_demos_min_order_by - stddev: match_map_demos_stddev_order_by - stddev_pop: match_map_demos_stddev_pop_order_by - stddev_samp: match_map_demos_stddev_samp_order_by - sum: match_map_demos_sum_order_by - var_pop: match_map_demos_var_pop_order_by - var_samp: match_map_demos_var_samp_order_by - variance: match_map_demos_variance_order_by -} - -"""append existing jsonb value of filtered columns with new jsonb value""" -input match_map_demos_append_input { - bombs: jsonb - kills: jsonb - players: jsonb - round_ticks: jsonb -} - -""" -input type for inserting array relation for remote table "match_map_demos" -""" -input match_map_demos_arr_rel_insert_input { - data: [match_map_demos_insert_input!]! - - """upsert condition""" - on_conflict: match_map_demos_on_conflict -} - -"""aggregate avg on columns""" -type match_map_demos_avg_fields { - duration_seconds: Float - parser_version: Float - playback_size: Float - playback_version: Float - size: Float - tick_rate: Float - total_ticks: Float -} - -""" -order by avg() on columns of table "match_map_demos" -""" -input match_map_demos_avg_order_by { - duration_seconds: order_by - parser_version: order_by - playback_size: order_by - playback_version: order_by - size: order_by - tick_rate: order_by - total_ticks: order_by -} - -""" -Boolean expression to filter rows from the table "match_map_demos". All fields are combined with a logical 'AND'. -""" -input match_map_demos_bool_exp { - _and: [match_map_demos_bool_exp!] - _not: match_map_demos_bool_exp - _or: [match_map_demos_bool_exp!] - bombs: jsonb_comparison_exp - clip_render_jobs: clip_render_jobs_bool_exp - clip_render_jobs_aggregate: clip_render_jobs_aggregate_bool_exp - created_at: timestamptz_comparison_exp - cs2_build: String_comparison_exp - demo_sessions: match_demo_sessions_bool_exp - demo_sessions_aggregate: match_demo_sessions_aggregate_bool_exp - download_url: String_comparison_exp - duration_seconds: Float_comparison_exp - file: String_comparison_exp - geometry_validated: Boolean_comparison_exp - id: uuid_comparison_exp - kills: jsonb_comparison_exp - map_name: String_comparison_exp - match: matches_bool_exp - match_clips: match_clips_bool_exp - match_clips_aggregate: match_clips_aggregate_bool_exp - match_id: uuid_comparison_exp - match_map: match_maps_bool_exp - match_map_id: uuid_comparison_exp - metadata_parsed_at: timestamptz_comparison_exp - parser_version: Int_comparison_exp - playback_file: String_comparison_exp - playback_size: Int_comparison_exp - playback_url: String_comparison_exp - playback_version: Int_comparison_exp - players: jsonb_comparison_exp - round_ticks: jsonb_comparison_exp - size: Int_comparison_exp - tick_rate: Float_comparison_exp - total_ticks: Int_comparison_exp - workshop_id: String_comparison_exp -} - -""" -unique or primary key constraints on table "match_map_demos" -""" -enum match_map_demos_constraint { - """ - unique or primary key constraint on columns "id" - """ - match_demos_pkey - - """ - unique or primary key constraint on columns "file", "match_map_id" - """ - match_map_demos_match_map_id_file_key -} - -""" -delete the field or element with specified path (for JSON arrays, negative integers count from the end) -""" -input match_map_demos_delete_at_path_input { - bombs: [String!] - kills: [String!] - players: [String!] - round_ticks: [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 match_map_demos_delete_elem_input { - bombs: Int - kills: Int - players: Int - round_ticks: Int -} - -""" -delete key/value pair or string element. key/value pairs are matched based on their key value -""" -input match_map_demos_delete_key_input { - bombs: String - kills: String - players: String - round_ticks: String -} - -""" -input type for incrementing numeric columns in table "match_map_demos" -""" -input match_map_demos_inc_input { - parser_version: Int - playback_size: Int - playback_version: Int - size: Int - tick_rate: Float - total_ticks: Int -} - -""" -input type for inserting data into table "match_map_demos" -""" -input match_map_demos_insert_input { - bombs: jsonb - clip_render_jobs: clip_render_jobs_arr_rel_insert_input - created_at: timestamptz - cs2_build: String - demo_sessions: match_demo_sessions_arr_rel_insert_input - file: String - geometry_validated: Boolean - id: uuid - kills: jsonb - map_name: String - match: matches_obj_rel_insert_input - match_clips: match_clips_arr_rel_insert_input - match_id: uuid - match_map: match_maps_obj_rel_insert_input - match_map_id: uuid - metadata_parsed_at: timestamptz - parser_version: Int - playback_file: String - playback_size: Int - playback_version: Int - players: jsonb - round_ticks: jsonb - size: Int - tick_rate: Float - total_ticks: Int - workshop_id: String -} - -"""aggregate max on columns""" -type match_map_demos_max_fields { - created_at: timestamptz - cs2_build: String - - """ - A computed field, executes function "demo_download_url" - """ - download_url: String - duration_seconds: Float - file: String - id: uuid - map_name: String - match_id: uuid - match_map_id: uuid - metadata_parsed_at: timestamptz - parser_version: Int - playback_file: String - playback_size: Int - - """ - A computed field, executes function "demo_playback_url" - """ - playback_url: String - playback_version: Int - size: Int - tick_rate: Float - total_ticks: Int - workshop_id: String -} - -""" -order by max() on columns of table "match_map_demos" -""" -input match_map_demos_max_order_by { - created_at: order_by - cs2_build: order_by - duration_seconds: order_by - file: order_by - id: order_by - map_name: order_by - match_id: order_by - match_map_id: order_by - metadata_parsed_at: order_by - parser_version: order_by - playback_file: order_by - playback_size: order_by - playback_version: order_by - size: order_by - tick_rate: order_by - total_ticks: order_by - workshop_id: order_by -} - -"""aggregate min on columns""" -type match_map_demos_min_fields { - created_at: timestamptz - cs2_build: String - - """ - A computed field, executes function "demo_download_url" - """ - download_url: String - duration_seconds: Float - file: String - id: uuid - map_name: String - match_id: uuid - match_map_id: uuid - metadata_parsed_at: timestamptz - parser_version: Int - playback_file: String - playback_size: Int - - """ - A computed field, executes function "demo_playback_url" - """ - playback_url: String - playback_version: Int - size: Int - tick_rate: Float - total_ticks: Int - workshop_id: String -} - -""" -order by min() on columns of table "match_map_demos" -""" -input match_map_demos_min_order_by { - created_at: order_by - cs2_build: order_by - duration_seconds: order_by - file: order_by - id: order_by - map_name: order_by - match_id: order_by - match_map_id: order_by - metadata_parsed_at: order_by - parser_version: order_by - playback_file: order_by - playback_size: order_by - playback_version: order_by - size: order_by - tick_rate: order_by - total_ticks: order_by - workshop_id: order_by -} - -""" -response of any mutation on the table "match_map_demos" -""" -type match_map_demos_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [match_map_demos!]! -} - -""" -input type for inserting object relation for remote table "match_map_demos" -""" -input match_map_demos_obj_rel_insert_input { - data: match_map_demos_insert_input! - - """upsert condition""" - on_conflict: match_map_demos_on_conflict -} - -""" -on_conflict condition type for table "match_map_demos" -""" -input match_map_demos_on_conflict { - constraint: match_map_demos_constraint! - update_columns: [match_map_demos_update_column!]! = [] - where: match_map_demos_bool_exp -} - -"""Ordering options when selecting data from "match_map_demos".""" -input match_map_demos_order_by { - bombs: order_by - clip_render_jobs_aggregate: clip_render_jobs_aggregate_order_by - created_at: order_by - cs2_build: order_by - demo_sessions_aggregate: match_demo_sessions_aggregate_order_by - download_url: order_by - duration_seconds: order_by - file: order_by - geometry_validated: order_by - id: order_by - kills: order_by - map_name: order_by - match: matches_order_by - match_clips_aggregate: match_clips_aggregate_order_by - match_id: order_by - match_map: match_maps_order_by - match_map_id: order_by - metadata_parsed_at: order_by - parser_version: order_by - playback_file: order_by - playback_size: order_by - playback_url: order_by - playback_version: order_by - players: order_by - round_ticks: order_by - size: order_by - tick_rate: order_by - total_ticks: order_by - workshop_id: order_by -} - -"""primary key columns input for table: match_map_demos""" -input match_map_demos_pk_columns_input { - id: uuid! -} - -"""prepend existing jsonb value of filtered columns with new jsonb value""" -input match_map_demos_prepend_input { - bombs: jsonb - kills: jsonb - players: jsonb - round_ticks: jsonb -} - -""" -select columns of table "match_map_demos" -""" -enum match_map_demos_select_column { - """column name""" - bombs - - """column name""" - created_at - - """column name""" - cs2_build - - """column name""" - duration_seconds - - """column name""" - file - - """column name""" - geometry_validated - - """column name""" - id - - """column name""" - kills - - """column name""" - map_name - - """column name""" - match_id - - """column name""" - match_map_id - - """column name""" - metadata_parsed_at - - """column name""" - parser_version - - """column name""" - playback_file - - """column name""" - playback_size - - """column name""" - playback_version - - """column name""" - players - - """column name""" - round_ticks - - """column name""" - size - - """column name""" - tick_rate - - """column name""" - total_ticks - - """column name""" - workshop_id -} - -""" -select "match_map_demos_aggregate_bool_exp_bool_and_arguments_columns" columns of table "match_map_demos" -""" -enum match_map_demos_select_column_match_map_demos_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - geometry_validated -} - -""" -select "match_map_demos_aggregate_bool_exp_bool_or_arguments_columns" columns of table "match_map_demos" -""" -enum match_map_demos_select_column_match_map_demos_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - geometry_validated -} - -""" -input type for updating data in table "match_map_demos" -""" -input match_map_demos_set_input { - bombs: jsonb - created_at: timestamptz - cs2_build: String - file: String - geometry_validated: Boolean - id: uuid - kills: jsonb - map_name: String - match_id: uuid - match_map_id: uuid - metadata_parsed_at: timestamptz - parser_version: Int - playback_file: String - playback_size: Int - playback_version: Int - players: jsonb - round_ticks: jsonb - size: Int - tick_rate: Float - total_ticks: Int - workshop_id: String -} - -"""aggregate stddev on columns""" -type match_map_demos_stddev_fields { - duration_seconds: Float - parser_version: Float - playback_size: Float - playback_version: Float - size: Float - tick_rate: Float - total_ticks: Float -} - -""" -order by stddev() on columns of table "match_map_demos" -""" -input match_map_demos_stddev_order_by { - duration_seconds: order_by - parser_version: order_by - playback_size: order_by - playback_version: order_by - size: order_by - tick_rate: order_by - total_ticks: order_by -} - -"""aggregate stddev_pop on columns""" -type match_map_demos_stddev_pop_fields { - duration_seconds: Float - parser_version: Float - playback_size: Float - playback_version: Float - size: Float - tick_rate: Float - total_ticks: Float -} - -""" -order by stddev_pop() on columns of table "match_map_demos" -""" -input match_map_demos_stddev_pop_order_by { - duration_seconds: order_by - parser_version: order_by - playback_size: order_by - playback_version: order_by - size: order_by - tick_rate: order_by - total_ticks: order_by -} - -"""aggregate stddev_samp on columns""" -type match_map_demos_stddev_samp_fields { - duration_seconds: Float - parser_version: Float - playback_size: Float - playback_version: Float - size: Float - tick_rate: Float - total_ticks: Float -} - -""" -order by stddev_samp() on columns of table "match_map_demos" -""" -input match_map_demos_stddev_samp_order_by { - duration_seconds: order_by - parser_version: order_by - playback_size: order_by - playback_version: order_by - size: order_by - tick_rate: order_by - total_ticks: order_by -} - -""" -Streaming cursor of the table "match_map_demos" -""" -input match_map_demos_stream_cursor_input { - """Stream column input with initial value""" - initial_value: match_map_demos_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input match_map_demos_stream_cursor_value_input { - bombs: jsonb - created_at: timestamptz - cs2_build: String - duration_seconds: Float - file: String - geometry_validated: Boolean - id: uuid - kills: jsonb - map_name: String - match_id: uuid - match_map_id: uuid - metadata_parsed_at: timestamptz - parser_version: Int - playback_file: String - playback_size: Int - playback_version: Int - players: jsonb - round_ticks: jsonb - size: Int - tick_rate: Float - total_ticks: Int - workshop_id: String -} - -"""aggregate sum on columns""" -type match_map_demos_sum_fields { - duration_seconds: Float - parser_version: Int - playback_size: Int - playback_version: Int - size: Int - tick_rate: Float - total_ticks: Int -} - -""" -order by sum() on columns of table "match_map_demos" -""" -input match_map_demos_sum_order_by { - duration_seconds: order_by - parser_version: order_by - playback_size: order_by - playback_version: order_by - size: order_by - tick_rate: order_by - total_ticks: order_by -} - -""" -update columns of table "match_map_demos" -""" -enum match_map_demos_update_column { - """column name""" - bombs - - """column name""" - created_at - - """column name""" - cs2_build - - """column name""" - file - - """column name""" - geometry_validated - - """column name""" - id - - """column name""" - kills - - """column name""" - map_name - - """column name""" - match_id - - """column name""" - match_map_id - - """column name""" - metadata_parsed_at - - """column name""" - parser_version - - """column name""" - playback_file - - """column name""" - playback_size - - """column name""" - playback_version - - """column name""" - players - - """column name""" - round_ticks - - """column name""" - size - - """column name""" - tick_rate - - """column name""" - total_ticks - - """column name""" - workshop_id -} - -input match_map_demos_updates { - """append existing jsonb value of filtered columns with new jsonb value""" - _append: match_map_demos_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: match_map_demos_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: match_map_demos_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: match_map_demos_delete_key_input - - """increments the numeric columns with given value of the filtered values""" - _inc: match_map_demos_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: match_map_demos_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: match_map_demos_set_input - - """filter the rows which have to be updated""" - where: match_map_demos_bool_exp! -} - -"""aggregate var_pop on columns""" -type match_map_demos_var_pop_fields { - duration_seconds: Float - parser_version: Float - playback_size: Float - playback_version: Float - size: Float - tick_rate: Float - total_ticks: Float -} - -""" -order by var_pop() on columns of table "match_map_demos" -""" -input match_map_demos_var_pop_order_by { - duration_seconds: order_by - parser_version: order_by - playback_size: order_by - playback_version: order_by - size: order_by - tick_rate: order_by - total_ticks: order_by -} - -"""aggregate var_samp on columns""" -type match_map_demos_var_samp_fields { - duration_seconds: Float - parser_version: Float - playback_size: Float - playback_version: Float - size: Float - tick_rate: Float - total_ticks: Float -} - -""" -order by var_samp() on columns of table "match_map_demos" -""" -input match_map_demos_var_samp_order_by { - duration_seconds: order_by - parser_version: order_by - playback_size: order_by - playback_version: order_by - size: order_by - tick_rate: order_by - total_ticks: order_by -} - -"""aggregate variance on columns""" -type match_map_demos_variance_fields { - duration_seconds: Float - parser_version: Float - playback_size: Float - playback_version: Float - size: Float - tick_rate: Float - total_ticks: Float -} - -""" -order by variance() on columns of table "match_map_demos" -""" -input match_map_demos_variance_order_by { - duration_seconds: order_by - parser_version: order_by - playback_size: order_by - playback_version: order_by - size: order_by - tick_rate: order_by - total_ticks: order_by -} - -""" -columns and relationships of "match_map_rounds" -""" -type match_map_rounds { - """An array relationship""" - assists( - """distinct select on columns""" - distinct_on: [player_assists_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: [player_assists_order_by!] - - """filter the rows returned""" - where: player_assists_bool_exp - ): [player_assists!]! - - """An aggregate relationship""" - assists_aggregate( - """distinct select on columns""" - distinct_on: [player_assists_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: [player_assists_order_by!] - - """filter the rows returned""" - where: player_assists_bool_exp - ): player_assists_aggregate! - backup_file: String - created_at: timestamptz! - deleted_at: timestamptz - - """ - A computed field, executes function "has_backup_file" - """ - has_backup_file: Boolean - id: uuid! - - """An array relationship""" - kills( - """distinct select on columns""" - distinct_on: [player_kills_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: [player_kills_order_by!] - - """filter the rows returned""" - where: player_kills_bool_exp - ): [player_kills!]! - - """An aggregate relationship""" - kills_aggregate( - """distinct select on columns""" - distinct_on: [player_kills_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: [player_kills_order_by!] - - """filter the rows returned""" - where: player_kills_bool_exp - ): player_kills_aggregate! - lineup_1_money: Int! - lineup_1_score: Int! - lineup_1_side: e_sides_enum! - lineup_1_timeouts_available: Int! - lineup_2_money: Int! - lineup_2_score: Int! - lineup_2_side: e_sides_enum! - lineup_2_timeouts_available: Int! - - """An object relationship""" - match_map: match_maps! - match_map_id: uuid! - round: Int! - time: timestamptz! - winning_reason: e_winning_reasons_enum - winning_side: String! -} - -""" -aggregated selection of "match_map_rounds" -""" -type match_map_rounds_aggregate { - aggregate: match_map_rounds_aggregate_fields - nodes: [match_map_rounds!]! -} - -input match_map_rounds_aggregate_bool_exp { - count: match_map_rounds_aggregate_bool_exp_count -} - -input match_map_rounds_aggregate_bool_exp_count { - arguments: [match_map_rounds_select_column!] - distinct: Boolean - filter: match_map_rounds_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "match_map_rounds" -""" -type match_map_rounds_aggregate_fields { - avg: match_map_rounds_avg_fields - count(columns: [match_map_rounds_select_column!], distinct: Boolean): Int! - max: match_map_rounds_max_fields - min: match_map_rounds_min_fields - stddev: match_map_rounds_stddev_fields - stddev_pop: match_map_rounds_stddev_pop_fields - stddev_samp: match_map_rounds_stddev_samp_fields - sum: match_map_rounds_sum_fields - var_pop: match_map_rounds_var_pop_fields - var_samp: match_map_rounds_var_samp_fields - variance: match_map_rounds_variance_fields -} - -""" -order by aggregate values of table "match_map_rounds" -""" -input match_map_rounds_aggregate_order_by { - avg: match_map_rounds_avg_order_by - count: order_by - max: match_map_rounds_max_order_by - min: match_map_rounds_min_order_by - stddev: match_map_rounds_stddev_order_by - stddev_pop: match_map_rounds_stddev_pop_order_by - stddev_samp: match_map_rounds_stddev_samp_order_by - sum: match_map_rounds_sum_order_by - var_pop: match_map_rounds_var_pop_order_by - var_samp: match_map_rounds_var_samp_order_by - variance: match_map_rounds_variance_order_by -} - -""" -input type for inserting array relation for remote table "match_map_rounds" -""" -input match_map_rounds_arr_rel_insert_input { - data: [match_map_rounds_insert_input!]! - - """upsert condition""" - on_conflict: match_map_rounds_on_conflict -} - -"""aggregate avg on columns""" -type match_map_rounds_avg_fields { - lineup_1_money: Float - lineup_1_score: Float - lineup_1_timeouts_available: Float - lineup_2_money: Float - lineup_2_score: Float - lineup_2_timeouts_available: Float - round: Float -} - -""" -order by avg() on columns of table "match_map_rounds" -""" -input match_map_rounds_avg_order_by { - lineup_1_money: order_by - lineup_1_score: order_by - lineup_1_timeouts_available: order_by - lineup_2_money: order_by - lineup_2_score: order_by - lineup_2_timeouts_available: order_by - round: order_by -} - -""" -Boolean expression to filter rows from the table "match_map_rounds". All fields are combined with a logical 'AND'. -""" -input match_map_rounds_bool_exp { - _and: [match_map_rounds_bool_exp!] - _not: match_map_rounds_bool_exp - _or: [match_map_rounds_bool_exp!] - assists: player_assists_bool_exp - assists_aggregate: player_assists_aggregate_bool_exp - backup_file: String_comparison_exp - created_at: timestamptz_comparison_exp - deleted_at: timestamptz_comparison_exp - has_backup_file: Boolean_comparison_exp - id: uuid_comparison_exp - kills: player_kills_bool_exp - kills_aggregate: player_kills_aggregate_bool_exp - lineup_1_money: Int_comparison_exp - lineup_1_score: Int_comparison_exp - lineup_1_side: e_sides_enum_comparison_exp - lineup_1_timeouts_available: Int_comparison_exp - lineup_2_money: Int_comparison_exp - lineup_2_score: Int_comparison_exp - lineup_2_side: e_sides_enum_comparison_exp - lineup_2_timeouts_available: Int_comparison_exp - match_map: match_maps_bool_exp - match_map_id: uuid_comparison_exp - round: Int_comparison_exp - time: timestamptz_comparison_exp - winning_reason: e_winning_reasons_enum_comparison_exp - winning_side: String_comparison_exp -} - -""" -unique or primary key constraints on table "match_map_rounds" -""" -enum match_map_rounds_constraint { - """ - unique or primary key constraint on columns "id" - """ - match_rounds__id_key - - """ - unique or primary key constraint on columns "match_map_id", "round" - """ - match_rounds_match_id_round_key - - """ - unique or primary key constraint on columns "id" - """ - match_rounds_pkey -} - -""" -input type for incrementing numeric columns in table "match_map_rounds" -""" -input match_map_rounds_inc_input { - lineup_1_money: Int - lineup_1_score: Int - lineup_1_timeouts_available: Int - lineup_2_money: Int - lineup_2_score: Int - lineup_2_timeouts_available: Int - round: Int -} - -""" -input type for inserting data into table "match_map_rounds" -""" -input match_map_rounds_insert_input { - assists: player_assists_arr_rel_insert_input - backup_file: String - created_at: timestamptz - deleted_at: timestamptz - id: uuid - kills: player_kills_arr_rel_insert_input - lineup_1_money: Int - lineup_1_score: Int - lineup_1_side: e_sides_enum - lineup_1_timeouts_available: Int - lineup_2_money: Int - lineup_2_score: Int - lineup_2_side: e_sides_enum - lineup_2_timeouts_available: Int - match_map: match_maps_obj_rel_insert_input - match_map_id: uuid - round: Int - time: timestamptz - winning_reason: e_winning_reasons_enum - winning_side: String -} - -"""aggregate max on columns""" -type match_map_rounds_max_fields { - backup_file: String - created_at: timestamptz - deleted_at: timestamptz - id: uuid - lineup_1_money: Int - lineup_1_score: Int - lineup_1_timeouts_available: Int - lineup_2_money: Int - lineup_2_score: Int - lineup_2_timeouts_available: Int - match_map_id: uuid - round: Int - time: timestamptz - winning_side: String -} - -""" -order by max() on columns of table "match_map_rounds" -""" -input match_map_rounds_max_order_by { - backup_file: order_by - created_at: order_by - deleted_at: order_by - id: order_by - lineup_1_money: order_by - lineup_1_score: order_by - lineup_1_timeouts_available: order_by - lineup_2_money: order_by - lineup_2_score: order_by - lineup_2_timeouts_available: order_by - match_map_id: order_by - round: order_by - time: order_by - winning_side: order_by -} - -"""aggregate min on columns""" -type match_map_rounds_min_fields { - backup_file: String - created_at: timestamptz - deleted_at: timestamptz - id: uuid - lineup_1_money: Int - lineup_1_score: Int - lineup_1_timeouts_available: Int - lineup_2_money: Int - lineup_2_score: Int - lineup_2_timeouts_available: Int - match_map_id: uuid - round: Int - time: timestamptz - winning_side: String -} - -""" -order by min() on columns of table "match_map_rounds" -""" -input match_map_rounds_min_order_by { - backup_file: order_by - created_at: order_by - deleted_at: order_by - id: order_by - lineup_1_money: order_by - lineup_1_score: order_by - lineup_1_timeouts_available: order_by - lineup_2_money: order_by - lineup_2_score: order_by - lineup_2_timeouts_available: order_by - match_map_id: order_by - round: order_by - time: order_by - winning_side: order_by -} - -""" -response of any mutation on the table "match_map_rounds" -""" -type match_map_rounds_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [match_map_rounds!]! -} - -""" -on_conflict condition type for table "match_map_rounds" -""" -input match_map_rounds_on_conflict { - constraint: match_map_rounds_constraint! - update_columns: [match_map_rounds_update_column!]! = [] - where: match_map_rounds_bool_exp -} - -"""Ordering options when selecting data from "match_map_rounds".""" -input match_map_rounds_order_by { - assists_aggregate: player_assists_aggregate_order_by - backup_file: order_by - created_at: order_by - deleted_at: order_by - has_backup_file: order_by - id: order_by - kills_aggregate: player_kills_aggregate_order_by - lineup_1_money: order_by - lineup_1_score: order_by - lineup_1_side: order_by - lineup_1_timeouts_available: order_by - lineup_2_money: order_by - lineup_2_score: order_by - lineup_2_side: order_by - lineup_2_timeouts_available: order_by - match_map: match_maps_order_by - match_map_id: order_by - round: order_by - time: order_by - winning_reason: order_by - winning_side: order_by -} - -"""primary key columns input for table: match_map_rounds""" -input match_map_rounds_pk_columns_input { - id: uuid! -} - -""" -select columns of table "match_map_rounds" -""" -enum match_map_rounds_select_column { - """column name""" - backup_file - - """column name""" - created_at - - """column name""" - deleted_at - - """column name""" - id - - """column name""" - lineup_1_money - - """column name""" - lineup_1_score - - """column name""" - lineup_1_side - - """column name""" - lineup_1_timeouts_available - - """column name""" - lineup_2_money - - """column name""" - lineup_2_score - - """column name""" - lineup_2_side - - """column name""" - lineup_2_timeouts_available - - """column name""" - match_map_id - - """column name""" - round - - """column name""" - time - - """column name""" - winning_reason - - """column name""" - winning_side -} - -""" -input type for updating data in table "match_map_rounds" -""" -input match_map_rounds_set_input { - backup_file: String - created_at: timestamptz - deleted_at: timestamptz - id: uuid - lineup_1_money: Int - lineup_1_score: Int - lineup_1_side: e_sides_enum - lineup_1_timeouts_available: Int - lineup_2_money: Int - lineup_2_score: Int - lineup_2_side: e_sides_enum - lineup_2_timeouts_available: Int - match_map_id: uuid - round: Int - time: timestamptz - winning_reason: e_winning_reasons_enum - winning_side: String -} - -"""aggregate stddev on columns""" -type match_map_rounds_stddev_fields { - lineup_1_money: Float - lineup_1_score: Float - lineup_1_timeouts_available: Float - lineup_2_money: Float - lineup_2_score: Float - lineup_2_timeouts_available: Float - round: Float -} - -""" -order by stddev() on columns of table "match_map_rounds" -""" -input match_map_rounds_stddev_order_by { - lineup_1_money: order_by - lineup_1_score: order_by - lineup_1_timeouts_available: order_by - lineup_2_money: order_by - lineup_2_score: order_by - lineup_2_timeouts_available: order_by - round: order_by -} - -"""aggregate stddev_pop on columns""" -type match_map_rounds_stddev_pop_fields { - lineup_1_money: Float - lineup_1_score: Float - lineup_1_timeouts_available: Float - lineup_2_money: Float - lineup_2_score: Float - lineup_2_timeouts_available: Float - round: Float -} - -""" -order by stddev_pop() on columns of table "match_map_rounds" -""" -input match_map_rounds_stddev_pop_order_by { - lineup_1_money: order_by - lineup_1_score: order_by - lineup_1_timeouts_available: order_by - lineup_2_money: order_by - lineup_2_score: order_by - lineup_2_timeouts_available: order_by - round: order_by -} - -"""aggregate stddev_samp on columns""" -type match_map_rounds_stddev_samp_fields { - lineup_1_money: Float - lineup_1_score: Float - lineup_1_timeouts_available: Float - lineup_2_money: Float - lineup_2_score: Float - lineup_2_timeouts_available: Float - round: Float -} - -""" -order by stddev_samp() on columns of table "match_map_rounds" -""" -input match_map_rounds_stddev_samp_order_by { - lineup_1_money: order_by - lineup_1_score: order_by - lineup_1_timeouts_available: order_by - lineup_2_money: order_by - lineup_2_score: order_by - lineup_2_timeouts_available: order_by - round: order_by -} - -""" -Streaming cursor of the table "match_map_rounds" -""" -input match_map_rounds_stream_cursor_input { - """Stream column input with initial value""" - initial_value: match_map_rounds_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input match_map_rounds_stream_cursor_value_input { - backup_file: String - created_at: timestamptz - deleted_at: timestamptz - id: uuid - lineup_1_money: Int - lineup_1_score: Int - lineup_1_side: e_sides_enum - lineup_1_timeouts_available: Int - lineup_2_money: Int - lineup_2_score: Int - lineup_2_side: e_sides_enum - lineup_2_timeouts_available: Int - match_map_id: uuid - round: Int - time: timestamptz - winning_reason: e_winning_reasons_enum - winning_side: String -} - -"""aggregate sum on columns""" -type match_map_rounds_sum_fields { - lineup_1_money: Int - lineup_1_score: Int - lineup_1_timeouts_available: Int - lineup_2_money: Int - lineup_2_score: Int - lineup_2_timeouts_available: Int - round: Int -} - -""" -order by sum() on columns of table "match_map_rounds" -""" -input match_map_rounds_sum_order_by { - lineup_1_money: order_by - lineup_1_score: order_by - lineup_1_timeouts_available: order_by - lineup_2_money: order_by - lineup_2_score: order_by - lineup_2_timeouts_available: order_by - round: order_by -} - -""" -update columns of table "match_map_rounds" -""" -enum match_map_rounds_update_column { - """column name""" - backup_file - - """column name""" - created_at - - """column name""" - deleted_at - - """column name""" - id - - """column name""" - lineup_1_money - - """column name""" - lineup_1_score - - """column name""" - lineup_1_side - - """column name""" - lineup_1_timeouts_available - - """column name""" - lineup_2_money - - """column name""" - lineup_2_score - - """column name""" - lineup_2_side - - """column name""" - lineup_2_timeouts_available - - """column name""" - match_map_id - - """column name""" - round - - """column name""" - time - - """column name""" - winning_reason - - """column name""" - winning_side -} - -input match_map_rounds_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: match_map_rounds_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: match_map_rounds_set_input - - """filter the rows which have to be updated""" - where: match_map_rounds_bool_exp! -} - -"""aggregate var_pop on columns""" -type match_map_rounds_var_pop_fields { - lineup_1_money: Float - lineup_1_score: Float - lineup_1_timeouts_available: Float - lineup_2_money: Float - lineup_2_score: Float - lineup_2_timeouts_available: Float - round: Float -} - -""" -order by var_pop() on columns of table "match_map_rounds" -""" -input match_map_rounds_var_pop_order_by { - lineup_1_money: order_by - lineup_1_score: order_by - lineup_1_timeouts_available: order_by - lineup_2_money: order_by - lineup_2_score: order_by - lineup_2_timeouts_available: order_by - round: order_by -} - -"""aggregate var_samp on columns""" -type match_map_rounds_var_samp_fields { - lineup_1_money: Float - lineup_1_score: Float - lineup_1_timeouts_available: Float - lineup_2_money: Float - lineup_2_score: Float - lineup_2_timeouts_available: Float - round: Float -} - -""" -order by var_samp() on columns of table "match_map_rounds" -""" -input match_map_rounds_var_samp_order_by { - lineup_1_money: order_by - lineup_1_score: order_by - lineup_1_timeouts_available: order_by - lineup_2_money: order_by - lineup_2_score: order_by - lineup_2_timeouts_available: order_by - round: order_by -} - -"""aggregate variance on columns""" -type match_map_rounds_variance_fields { - lineup_1_money: Float - lineup_1_score: Float - lineup_1_timeouts_available: Float - lineup_2_money: Float - lineup_2_score: Float - lineup_2_timeouts_available: Float - round: Float -} - -""" -order by variance() on columns of table "match_map_rounds" -""" -input match_map_rounds_variance_order_by { - lineup_1_money: order_by - lineup_1_score: order_by - lineup_1_timeouts_available: order_by - lineup_2_money: order_by - lineup_2_score: order_by - lineup_2_timeouts_available: order_by - round: order_by -} - -""" -columns and relationships of "match_map_veto_picks" -""" -type match_map_veto_picks { - auto_picked: Boolean! - created_at: timestamptz! - id: uuid! - - """An object relationship""" - map: maps! - map_id: uuid! - - """An object relationship""" - match: matches! - match_id: uuid! - - """An object relationship""" - match_lineup: match_lineups! - match_lineup_id: uuid! - side: String - type: e_veto_pick_types_enum! -} - -""" -aggregated selection of "match_map_veto_picks" -""" -type match_map_veto_picks_aggregate { - aggregate: match_map_veto_picks_aggregate_fields - nodes: [match_map_veto_picks!]! -} - -input match_map_veto_picks_aggregate_bool_exp { - bool_and: match_map_veto_picks_aggregate_bool_exp_bool_and - bool_or: match_map_veto_picks_aggregate_bool_exp_bool_or - count: match_map_veto_picks_aggregate_bool_exp_count -} - -input match_map_veto_picks_aggregate_bool_exp_bool_and { - arguments: match_map_veto_picks_select_column_match_map_veto_picks_aggregate_bool_exp_bool_and_arguments_columns! - distinct: Boolean - filter: match_map_veto_picks_bool_exp - predicate: Boolean_comparison_exp! -} - -input match_map_veto_picks_aggregate_bool_exp_bool_or { - arguments: match_map_veto_picks_select_column_match_map_veto_picks_aggregate_bool_exp_bool_or_arguments_columns! - distinct: Boolean - filter: match_map_veto_picks_bool_exp - predicate: Boolean_comparison_exp! -} - -input match_map_veto_picks_aggregate_bool_exp_count { - arguments: [match_map_veto_picks_select_column!] - distinct: Boolean - filter: match_map_veto_picks_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "match_map_veto_picks" -""" -type match_map_veto_picks_aggregate_fields { - count(columns: [match_map_veto_picks_select_column!], distinct: Boolean): Int! - max: match_map_veto_picks_max_fields - min: match_map_veto_picks_min_fields -} - -""" -order by aggregate values of table "match_map_veto_picks" -""" -input match_map_veto_picks_aggregate_order_by { - count: order_by - max: match_map_veto_picks_max_order_by - min: match_map_veto_picks_min_order_by -} - -""" -input type for inserting array relation for remote table "match_map_veto_picks" -""" -input match_map_veto_picks_arr_rel_insert_input { - data: [match_map_veto_picks_insert_input!]! - - """upsert condition""" - on_conflict: match_map_veto_picks_on_conflict -} - -""" -Boolean expression to filter rows from the table "match_map_veto_picks". All fields are combined with a logical 'AND'. -""" -input match_map_veto_picks_bool_exp { - _and: [match_map_veto_picks_bool_exp!] - _not: match_map_veto_picks_bool_exp - _or: [match_map_veto_picks_bool_exp!] - auto_picked: Boolean_comparison_exp - created_at: timestamptz_comparison_exp - id: uuid_comparison_exp - map: maps_bool_exp - map_id: uuid_comparison_exp - match: matches_bool_exp - match_id: uuid_comparison_exp - match_lineup: match_lineups_bool_exp - match_lineup_id: uuid_comparison_exp - side: String_comparison_exp - type: e_veto_pick_types_enum_comparison_exp -} - -""" -unique or primary key constraints on table "match_map_veto_picks" -""" -enum match_map_veto_picks_constraint { - """ - unique or primary key constraint on columns "type", "match_id", "map_id" - """ - match_map_veto_picks_map_id_match_id_type_key - - """ - unique or primary key constraint on columns "id" - """ - match_map_veto_picks_pkey -} - -""" -input type for inserting data into table "match_map_veto_picks" -""" -input match_map_veto_picks_insert_input { - auto_picked: Boolean - created_at: timestamptz - id: uuid - map: maps_obj_rel_insert_input - map_id: uuid - match: matches_obj_rel_insert_input - match_id: uuid - match_lineup: match_lineups_obj_rel_insert_input - match_lineup_id: uuid - side: String - type: e_veto_pick_types_enum -} - -"""aggregate max on columns""" -type match_map_veto_picks_max_fields { - created_at: timestamptz - id: uuid - map_id: uuid - match_id: uuid - match_lineup_id: uuid - side: String -} - -""" -order by max() on columns of table "match_map_veto_picks" -""" -input match_map_veto_picks_max_order_by { - created_at: order_by - id: order_by - map_id: order_by - match_id: order_by - match_lineup_id: order_by - side: order_by -} - -"""aggregate min on columns""" -type match_map_veto_picks_min_fields { - created_at: timestamptz - id: uuid - map_id: uuid - match_id: uuid - match_lineup_id: uuid - side: String -} - -""" -order by min() on columns of table "match_map_veto_picks" -""" -input match_map_veto_picks_min_order_by { - created_at: order_by - id: order_by - map_id: order_by - match_id: order_by - match_lineup_id: order_by - side: order_by -} - -""" -response of any mutation on the table "match_map_veto_picks" -""" -type match_map_veto_picks_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [match_map_veto_picks!]! -} - -""" -on_conflict condition type for table "match_map_veto_picks" -""" -input match_map_veto_picks_on_conflict { - constraint: match_map_veto_picks_constraint! - update_columns: [match_map_veto_picks_update_column!]! = [] - where: match_map_veto_picks_bool_exp -} - -"""Ordering options when selecting data from "match_map_veto_picks".""" -input match_map_veto_picks_order_by { - auto_picked: order_by - created_at: order_by - id: order_by - map: maps_order_by - map_id: order_by - match: matches_order_by - match_id: order_by - match_lineup: match_lineups_order_by - match_lineup_id: order_by - side: order_by - type: order_by -} - -"""primary key columns input for table: match_map_veto_picks""" -input match_map_veto_picks_pk_columns_input { - id: uuid! -} - -""" -select columns of table "match_map_veto_picks" -""" -enum match_map_veto_picks_select_column { - """column name""" - auto_picked - - """column name""" - created_at - - """column name""" - id - - """column name""" - map_id - - """column name""" - match_id - - """column name""" - match_lineup_id - - """column name""" - side - - """column name""" - type -} - -""" -select "match_map_veto_picks_aggregate_bool_exp_bool_and_arguments_columns" columns of table "match_map_veto_picks" -""" -enum match_map_veto_picks_select_column_match_map_veto_picks_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - auto_picked -} - -""" -select "match_map_veto_picks_aggregate_bool_exp_bool_or_arguments_columns" columns of table "match_map_veto_picks" -""" -enum match_map_veto_picks_select_column_match_map_veto_picks_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - auto_picked -} - -""" -input type for updating data in table "match_map_veto_picks" -""" -input match_map_veto_picks_set_input { - auto_picked: Boolean - created_at: timestamptz - id: uuid - map_id: uuid - match_id: uuid - match_lineup_id: uuid - side: String - type: e_veto_pick_types_enum -} - -""" -Streaming cursor of the table "match_map_veto_picks" -""" -input match_map_veto_picks_stream_cursor_input { - """Stream column input with initial value""" - initial_value: match_map_veto_picks_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input match_map_veto_picks_stream_cursor_value_input { - auto_picked: Boolean - created_at: timestamptz - id: uuid - map_id: uuid - match_id: uuid - match_lineup_id: uuid - side: String - type: e_veto_pick_types_enum -} - -""" -update columns of table "match_map_veto_picks" -""" -enum match_map_veto_picks_update_column { - """column name""" - auto_picked - - """column name""" - created_at - - """column name""" - id - - """column name""" - map_id - - """column name""" - match_id - - """column name""" - match_lineup_id - - """column name""" - side - - """column name""" - type -} - -input match_map_veto_picks_updates { - """sets the columns of the filtered rows to the given values""" - _set: match_map_veto_picks_set_input - - """filter the rows which have to be updated""" - where: match_map_veto_picks_bool_exp! -} - -""" -columns and relationships of "match_maps" -""" -type match_maps { - clips_count: Int! - created_at: timestamptz! - demo_processing_started_at: timestamptz - - """An array relationship""" - demos( - """distinct select on columns""" - distinct_on: [match_map_demos_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_map_demos_order_by!] - - """filter the rows returned""" - where: match_map_demos_bool_exp - ): [match_map_demos!]! - - """An aggregate relationship""" - demos_aggregate( - """distinct select on columns""" - distinct_on: [match_map_demos_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_map_demos_order_by!] - - """filter the rows returned""" - where: match_map_demos_bool_exp - ): match_map_demos_aggregate! - - """ - A computed field, executes function "match_map_demo_download_url" - """ - demos_download_url: String - - """ - A computed field, executes function "match_map_demo_total_size" - """ - demos_total_size: Int - - """An object relationship""" - e_match_map_status: e_match_map_status! - ended_at: timestamptz - - """An array relationship""" - flashes( - """distinct select on columns""" - distinct_on: [player_flashes_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: [player_flashes_order_by!] - - """filter the rows returned""" - where: player_flashes_bool_exp - ): [player_flashes!]! - - """An aggregate relationship""" - flashes_aggregate( - """distinct select on columns""" - distinct_on: [player_flashes_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: [player_flashes_order_by!] - - """filter the rows returned""" - where: player_flashes_bool_exp - ): player_flashes_aggregate! - id: uuid! - - """ - A computed field, executes function "is_current_match_map" - """ - is_current_map: Boolean - latest_clip_at: timestamptz - - """ - A computed field, executes function "lineup_1_score" - """ - lineup_1_score: Int - lineup_1_side: e_sides_enum! - lineup_1_timeouts_available: Int! - - """ - A computed field, executes function "lineup_2_score" - """ - lineup_2_score: Int - lineup_2_side: e_sides_enum - lineup_2_timeouts_available: Int! - - """An object relationship""" - map: maps! - map_id: uuid! - - """An object relationship""" - match: matches! - - """An array relationship""" - match_clips( - """distinct select on columns""" - distinct_on: [match_clips_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_clips_order_by!] - - """filter the rows returned""" - where: match_clips_bool_exp - ): [match_clips!]! - - """An aggregate relationship""" - match_clips_aggregate( - """distinct select on columns""" - distinct_on: [match_clips_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_clips_order_by!] - - """filter the rows returned""" - where: match_clips_bool_exp - ): match_clips_aggregate! - match_id: uuid! - - """An array relationship""" - objectives( - """distinct select on columns""" - distinct_on: [player_objectives_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: [player_objectives_order_by!] - - """filter the rows returned""" - where: player_objectives_bool_exp - ): [player_objectives!]! - - """An aggregate relationship""" - objectives_aggregate( - """distinct select on columns""" - distinct_on: [player_objectives_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: [player_objectives_order_by!] - - """filter the rows returned""" - where: player_objectives_bool_exp - ): player_objectives_aggregate! - order: Int! - - """An array relationship""" - player_assists( - """distinct select on columns""" - distinct_on: [player_assists_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: [player_assists_order_by!] - - """filter the rows returned""" - where: player_assists_bool_exp - ): [player_assists!]! - - """An aggregate relationship""" - player_assists_aggregate( - """distinct select on columns""" - distinct_on: [player_assists_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: [player_assists_order_by!] - - """filter the rows returned""" - where: player_assists_bool_exp - ): player_assists_aggregate! - - """An array relationship""" - player_damages( - """distinct select on columns""" - distinct_on: [player_damages_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: [player_damages_order_by!] - - """filter the rows returned""" - where: player_damages_bool_exp - ): [player_damages!]! - - """An aggregate relationship""" - player_damages_aggregate( - """distinct select on columns""" - distinct_on: [player_damages_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: [player_damages_order_by!] - - """filter the rows returned""" - where: player_damages_bool_exp - ): player_damages_aggregate! - - """An array relationship""" - player_kills( - """distinct select on columns""" - distinct_on: [player_kills_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: [player_kills_order_by!] - - """filter the rows returned""" - where: player_kills_bool_exp - ): [player_kills!]! - - """An aggregate relationship""" - player_kills_aggregate( - """distinct select on columns""" - distinct_on: [player_kills_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: [player_kills_order_by!] - - """filter the rows returned""" - where: player_kills_bool_exp - ): player_kills_aggregate! - - """An array relationship""" - player_unused_utilities( - """distinct select on columns""" - distinct_on: [player_unused_utility_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: [player_unused_utility_order_by!] - - """filter the rows returned""" - where: player_unused_utility_bool_exp - ): [player_unused_utility!]! - - """An aggregate relationship""" - player_unused_utilities_aggregate( - """distinct select on columns""" - distinct_on: [player_unused_utility_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: [player_unused_utility_order_by!] - - """filter the rows returned""" - where: player_unused_utility_bool_exp - ): player_unused_utility_aggregate! - public_clips_count: Int! - public_latest_clip_at: timestamptz - - """An array relationship""" - rounds( - """distinct select on columns""" - distinct_on: [match_map_rounds_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_map_rounds_order_by!] - - """filter the rows returned""" - where: match_map_rounds_bool_exp - ): [match_map_rounds!]! - - """An aggregate relationship""" - rounds_aggregate( - """distinct select on columns""" - distinct_on: [match_map_rounds_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_map_rounds_order_by!] - - """filter the rows returned""" - where: match_map_rounds_bool_exp - ): match_map_rounds_aggregate! - started_at: timestamptz - status: e_match_map_status_enum! - - """An array relationship""" - utility( - """distinct select on columns""" - distinct_on: [player_utility_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: [player_utility_order_by!] - - """filter the rows returned""" - where: player_utility_bool_exp - ): [player_utility!]! - - """An aggregate relationship""" - utility_aggregate( - """distinct select on columns""" - distinct_on: [player_utility_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: [player_utility_order_by!] - - """filter the rows returned""" - where: player_utility_bool_exp - ): player_utility_aggregate! - - """An array relationship""" - vetos( - """distinct select on columns""" - distinct_on: [match_map_veto_picks_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_map_veto_picks_order_by!] - - """filter the rows returned""" - where: match_map_veto_picks_bool_exp - ): [match_map_veto_picks!]! - - """An aggregate relationship""" - vetos_aggregate( - """distinct select on columns""" - distinct_on: [match_map_veto_picks_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_map_veto_picks_order_by!] - - """filter the rows returned""" - where: match_map_veto_picks_bool_exp - ): match_map_veto_picks_aggregate! - winning_lineup_id: uuid -} - -""" -aggregated selection of "match_maps" -""" -type match_maps_aggregate { - aggregate: match_maps_aggregate_fields - nodes: [match_maps!]! -} - -input match_maps_aggregate_bool_exp { - count: match_maps_aggregate_bool_exp_count -} - -input match_maps_aggregate_bool_exp_count { - arguments: [match_maps_select_column!] - distinct: Boolean - filter: match_maps_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "match_maps" -""" -type match_maps_aggregate_fields { - avg: match_maps_avg_fields - count(columns: [match_maps_select_column!], distinct: Boolean): Int! - max: match_maps_max_fields - min: match_maps_min_fields - stddev: match_maps_stddev_fields - stddev_pop: match_maps_stddev_pop_fields - stddev_samp: match_maps_stddev_samp_fields - sum: match_maps_sum_fields - var_pop: match_maps_var_pop_fields - var_samp: match_maps_var_samp_fields - variance: match_maps_variance_fields -} - -""" -order by aggregate values of table "match_maps" -""" -input match_maps_aggregate_order_by { - avg: match_maps_avg_order_by - count: order_by - max: match_maps_max_order_by - min: match_maps_min_order_by - stddev: match_maps_stddev_order_by - stddev_pop: match_maps_stddev_pop_order_by - stddev_samp: match_maps_stddev_samp_order_by - sum: match_maps_sum_order_by - var_pop: match_maps_var_pop_order_by - var_samp: match_maps_var_samp_order_by - variance: match_maps_variance_order_by -} - -""" -input type for inserting array relation for remote table "match_maps" -""" -input match_maps_arr_rel_insert_input { - data: [match_maps_insert_input!]! - - """upsert condition""" - on_conflict: match_maps_on_conflict -} - -"""aggregate avg on columns""" -type match_maps_avg_fields { - clips_count: Float - - """ - A computed field, executes function "match_map_demo_total_size" - """ - demos_total_size: Int - - """ - A computed field, executes function "lineup_1_score" - """ - lineup_1_score: Int - lineup_1_timeouts_available: Float - - """ - A computed field, executes function "lineup_2_score" - """ - lineup_2_score: Int - lineup_2_timeouts_available: Float - order: Float - public_clips_count: Float -} - -""" -order by avg() on columns of table "match_maps" -""" -input match_maps_avg_order_by { - clips_count: order_by - lineup_1_timeouts_available: order_by - lineup_2_timeouts_available: order_by - order: order_by - public_clips_count: order_by -} - -""" -Boolean expression to filter rows from the table "match_maps". All fields are combined with a logical 'AND'. -""" -input match_maps_bool_exp { - _and: [match_maps_bool_exp!] - _not: match_maps_bool_exp - _or: [match_maps_bool_exp!] - clips_count: Int_comparison_exp - created_at: timestamptz_comparison_exp - demo_processing_started_at: timestamptz_comparison_exp - demos: match_map_demos_bool_exp - demos_aggregate: match_map_demos_aggregate_bool_exp - demos_download_url: String_comparison_exp - demos_total_size: Int_comparison_exp - e_match_map_status: e_match_map_status_bool_exp - ended_at: timestamptz_comparison_exp - flashes: player_flashes_bool_exp - flashes_aggregate: player_flashes_aggregate_bool_exp - id: uuid_comparison_exp - is_current_map: Boolean_comparison_exp - latest_clip_at: timestamptz_comparison_exp - lineup_1_score: Int_comparison_exp - lineup_1_side: e_sides_enum_comparison_exp - lineup_1_timeouts_available: Int_comparison_exp - lineup_2_score: Int_comparison_exp - lineup_2_side: e_sides_enum_comparison_exp - lineup_2_timeouts_available: Int_comparison_exp - map: maps_bool_exp - map_id: uuid_comparison_exp - match: matches_bool_exp - match_clips: match_clips_bool_exp - match_clips_aggregate: match_clips_aggregate_bool_exp - match_id: uuid_comparison_exp - objectives: player_objectives_bool_exp - objectives_aggregate: player_objectives_aggregate_bool_exp - order: Int_comparison_exp - player_assists: player_assists_bool_exp - player_assists_aggregate: player_assists_aggregate_bool_exp - player_damages: player_damages_bool_exp - player_damages_aggregate: player_damages_aggregate_bool_exp - player_kills: player_kills_bool_exp - player_kills_aggregate: player_kills_aggregate_bool_exp - player_unused_utilities: player_unused_utility_bool_exp - player_unused_utilities_aggregate: player_unused_utility_aggregate_bool_exp - public_clips_count: Int_comparison_exp - public_latest_clip_at: timestamptz_comparison_exp - rounds: match_map_rounds_bool_exp - rounds_aggregate: match_map_rounds_aggregate_bool_exp - started_at: timestamptz_comparison_exp - status: e_match_map_status_enum_comparison_exp - utility: player_utility_bool_exp - utility_aggregate: player_utility_aggregate_bool_exp - vetos: match_map_veto_picks_bool_exp - vetos_aggregate: match_map_veto_picks_aggregate_bool_exp - winning_lineup_id: uuid_comparison_exp -} - -""" -unique or primary key constraints on table "match_maps" -""" -enum match_maps_constraint { - """ - unique or primary key constraint on columns "order", "match_id" - """ - match_maps_match_id_order_key - - """ - unique or primary key constraint on columns "id" - """ - match_maps_pkey -} - -""" -input type for incrementing numeric columns in table "match_maps" -""" -input match_maps_inc_input { - clips_count: Int - lineup_1_timeouts_available: Int - lineup_2_timeouts_available: Int - order: Int - public_clips_count: Int -} - -""" -input type for inserting data into table "match_maps" -""" -input match_maps_insert_input { - clips_count: Int - created_at: timestamptz - demo_processing_started_at: timestamptz - demos: match_map_demos_arr_rel_insert_input - e_match_map_status: e_match_map_status_obj_rel_insert_input - ended_at: timestamptz - flashes: player_flashes_arr_rel_insert_input - id: uuid - latest_clip_at: timestamptz - lineup_1_side: e_sides_enum - lineup_1_timeouts_available: Int - lineup_2_side: e_sides_enum - lineup_2_timeouts_available: Int - map: maps_obj_rel_insert_input - map_id: uuid - match: matches_obj_rel_insert_input - match_clips: match_clips_arr_rel_insert_input - match_id: uuid - objectives: player_objectives_arr_rel_insert_input - order: Int - player_assists: player_assists_arr_rel_insert_input - player_damages: player_damages_arr_rel_insert_input - player_kills: player_kills_arr_rel_insert_input - player_unused_utilities: player_unused_utility_arr_rel_insert_input - public_clips_count: Int - public_latest_clip_at: timestamptz - rounds: match_map_rounds_arr_rel_insert_input - started_at: timestamptz - status: e_match_map_status_enum - utility: player_utility_arr_rel_insert_input - vetos: match_map_veto_picks_arr_rel_insert_input - winning_lineup_id: uuid -} - -"""aggregate max on columns""" -type match_maps_max_fields { - clips_count: Int - created_at: timestamptz - demo_processing_started_at: timestamptz - - """ - A computed field, executes function "match_map_demo_download_url" - """ - demos_download_url: String - - """ - A computed field, executes function "match_map_demo_total_size" - """ - demos_total_size: Int - ended_at: timestamptz - id: uuid - latest_clip_at: timestamptz - - """ - A computed field, executes function "lineup_1_score" - """ - lineup_1_score: Int - lineup_1_timeouts_available: Int - - """ - A computed field, executes function "lineup_2_score" - """ - lineup_2_score: Int - lineup_2_timeouts_available: Int - map_id: uuid - match_id: uuid - order: Int - public_clips_count: Int - public_latest_clip_at: timestamptz - started_at: timestamptz - winning_lineup_id: uuid -} - -""" -order by max() on columns of table "match_maps" -""" -input match_maps_max_order_by { - clips_count: order_by - created_at: order_by - demo_processing_started_at: order_by - ended_at: order_by - id: order_by - latest_clip_at: order_by - lineup_1_timeouts_available: order_by - lineup_2_timeouts_available: order_by - map_id: order_by - match_id: order_by - order: order_by - public_clips_count: order_by - public_latest_clip_at: order_by - started_at: order_by - winning_lineup_id: order_by -} - -"""aggregate min on columns""" -type match_maps_min_fields { - clips_count: Int - created_at: timestamptz - demo_processing_started_at: timestamptz - - """ - A computed field, executes function "match_map_demo_download_url" - """ - demos_download_url: String - - """ - A computed field, executes function "match_map_demo_total_size" - """ - demos_total_size: Int - ended_at: timestamptz - id: uuid - latest_clip_at: timestamptz - - """ - A computed field, executes function "lineup_1_score" - """ - lineup_1_score: Int - lineup_1_timeouts_available: Int - - """ - A computed field, executes function "lineup_2_score" - """ - lineup_2_score: Int - lineup_2_timeouts_available: Int - map_id: uuid - match_id: uuid - order: Int - public_clips_count: Int - public_latest_clip_at: timestamptz - started_at: timestamptz - winning_lineup_id: uuid -} - -""" -order by min() on columns of table "match_maps" -""" -input match_maps_min_order_by { - clips_count: order_by - created_at: order_by - demo_processing_started_at: order_by - ended_at: order_by - id: order_by - latest_clip_at: order_by - lineup_1_timeouts_available: order_by - lineup_2_timeouts_available: order_by - map_id: order_by - match_id: order_by - order: order_by - public_clips_count: order_by - public_latest_clip_at: order_by - started_at: order_by - winning_lineup_id: order_by -} - -""" -response of any mutation on the table "match_maps" -""" -type match_maps_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [match_maps!]! -} - -""" -input type for inserting object relation for remote table "match_maps" -""" -input match_maps_obj_rel_insert_input { - data: match_maps_insert_input! - - """upsert condition""" - on_conflict: match_maps_on_conflict -} - -""" -on_conflict condition type for table "match_maps" -""" -input match_maps_on_conflict { - constraint: match_maps_constraint! - update_columns: [match_maps_update_column!]! = [] - where: match_maps_bool_exp -} - -"""Ordering options when selecting data from "match_maps".""" -input match_maps_order_by { - clips_count: order_by - created_at: order_by - demo_processing_started_at: order_by - demos_aggregate: match_map_demos_aggregate_order_by - demos_download_url: order_by - demos_total_size: order_by - e_match_map_status: e_match_map_status_order_by - ended_at: order_by - flashes_aggregate: player_flashes_aggregate_order_by - id: order_by - is_current_map: order_by - latest_clip_at: order_by - lineup_1_score: order_by - lineup_1_side: order_by - lineup_1_timeouts_available: order_by - lineup_2_score: order_by - lineup_2_side: order_by - lineup_2_timeouts_available: order_by - map: maps_order_by - map_id: order_by - match: matches_order_by - match_clips_aggregate: match_clips_aggregate_order_by - match_id: order_by - objectives_aggregate: player_objectives_aggregate_order_by - order: order_by - player_assists_aggregate: player_assists_aggregate_order_by - player_damages_aggregate: player_damages_aggregate_order_by - player_kills_aggregate: player_kills_aggregate_order_by - player_unused_utilities_aggregate: player_unused_utility_aggregate_order_by - public_clips_count: order_by - public_latest_clip_at: order_by - rounds_aggregate: match_map_rounds_aggregate_order_by - started_at: order_by - status: order_by - utility_aggregate: player_utility_aggregate_order_by - vetos_aggregate: match_map_veto_picks_aggregate_order_by - winning_lineup_id: order_by -} - -"""primary key columns input for table: match_maps""" -input match_maps_pk_columns_input { - id: uuid! -} - -""" -select columns of table "match_maps" -""" -enum match_maps_select_column { - """column name""" - clips_count - - """column name""" - created_at - - """column name""" - demo_processing_started_at - - """column name""" - ended_at - - """column name""" - id - - """column name""" - latest_clip_at - - """column name""" - lineup_1_side - - """column name""" - lineup_1_timeouts_available - - """column name""" - lineup_2_side - - """column name""" - lineup_2_timeouts_available - - """column name""" - map_id - - """column name""" - match_id - - """column name""" - order - - """column name""" - public_clips_count - - """column name""" - public_latest_clip_at - - """column name""" - started_at - - """column name""" - status - - """column name""" - winning_lineup_id -} - -""" -input type for updating data in table "match_maps" -""" -input match_maps_set_input { - clips_count: Int - created_at: timestamptz - demo_processing_started_at: timestamptz - ended_at: timestamptz - id: uuid - latest_clip_at: timestamptz - lineup_1_side: e_sides_enum - lineup_1_timeouts_available: Int - lineup_2_side: e_sides_enum - lineup_2_timeouts_available: Int - map_id: uuid - match_id: uuid - order: Int - public_clips_count: Int - public_latest_clip_at: timestamptz - started_at: timestamptz - status: e_match_map_status_enum - winning_lineup_id: uuid -} - -"""aggregate stddev on columns""" -type match_maps_stddev_fields { - clips_count: Float - - """ - A computed field, executes function "match_map_demo_total_size" - """ - demos_total_size: Int - - """ - A computed field, executes function "lineup_1_score" - """ - lineup_1_score: Int - lineup_1_timeouts_available: Float - - """ - A computed field, executes function "lineup_2_score" - """ - lineup_2_score: Int - lineup_2_timeouts_available: Float - order: Float - public_clips_count: Float -} - -""" -order by stddev() on columns of table "match_maps" -""" -input match_maps_stddev_order_by { - clips_count: order_by - lineup_1_timeouts_available: order_by - lineup_2_timeouts_available: order_by - order: order_by - public_clips_count: order_by -} - -"""aggregate stddev_pop on columns""" -type match_maps_stddev_pop_fields { - clips_count: Float - - """ - A computed field, executes function "match_map_demo_total_size" - """ - demos_total_size: Int - - """ - A computed field, executes function "lineup_1_score" - """ - lineup_1_score: Int - lineup_1_timeouts_available: Float - - """ - A computed field, executes function "lineup_2_score" - """ - lineup_2_score: Int - lineup_2_timeouts_available: Float - order: Float - public_clips_count: Float -} - -""" -order by stddev_pop() on columns of table "match_maps" -""" -input match_maps_stddev_pop_order_by { - clips_count: order_by - lineup_1_timeouts_available: order_by - lineup_2_timeouts_available: order_by - order: order_by - public_clips_count: order_by -} - -"""aggregate stddev_samp on columns""" -type match_maps_stddev_samp_fields { - clips_count: Float - - """ - A computed field, executes function "match_map_demo_total_size" - """ - demos_total_size: Int - - """ - A computed field, executes function "lineup_1_score" - """ - lineup_1_score: Int - lineup_1_timeouts_available: Float - - """ - A computed field, executes function "lineup_2_score" - """ - lineup_2_score: Int - lineup_2_timeouts_available: Float - order: Float - public_clips_count: Float -} - -""" -order by stddev_samp() on columns of table "match_maps" -""" -input match_maps_stddev_samp_order_by { - clips_count: order_by - lineup_1_timeouts_available: order_by - lineup_2_timeouts_available: order_by - order: order_by - public_clips_count: order_by -} - -""" -Streaming cursor of the table "match_maps" -""" -input match_maps_stream_cursor_input { - """Stream column input with initial value""" - initial_value: match_maps_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input match_maps_stream_cursor_value_input { - clips_count: Int - created_at: timestamptz - demo_processing_started_at: timestamptz - ended_at: timestamptz - id: uuid - latest_clip_at: timestamptz - lineup_1_side: e_sides_enum - lineup_1_timeouts_available: Int - lineup_2_side: e_sides_enum - lineup_2_timeouts_available: Int - map_id: uuid - match_id: uuid - order: Int - public_clips_count: Int - public_latest_clip_at: timestamptz - started_at: timestamptz - status: e_match_map_status_enum - winning_lineup_id: uuid -} - -"""aggregate sum on columns""" -type match_maps_sum_fields { - clips_count: Int - - """ - A computed field, executes function "match_map_demo_total_size" - """ - demos_total_size: Int - - """ - A computed field, executes function "lineup_1_score" - """ - lineup_1_score: Int - lineup_1_timeouts_available: Int - - """ - A computed field, executes function "lineup_2_score" - """ - lineup_2_score: Int - lineup_2_timeouts_available: Int - order: Int - public_clips_count: Int -} - -""" -order by sum() on columns of table "match_maps" -""" -input match_maps_sum_order_by { - clips_count: order_by - lineup_1_timeouts_available: order_by - lineup_2_timeouts_available: order_by - order: order_by - public_clips_count: order_by -} - -""" -update columns of table "match_maps" -""" -enum match_maps_update_column { - """column name""" - clips_count - - """column name""" - created_at - - """column name""" - demo_processing_started_at - - """column name""" - ended_at - - """column name""" - id - - """column name""" - latest_clip_at - - """column name""" - lineup_1_side - - """column name""" - lineup_1_timeouts_available - - """column name""" - lineup_2_side - - """column name""" - lineup_2_timeouts_available - - """column name""" - map_id - - """column name""" - match_id - - """column name""" - order - - """column name""" - public_clips_count - - """column name""" - public_latest_clip_at - - """column name""" - started_at - - """column name""" - status - - """column name""" - winning_lineup_id -} - -input match_maps_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: match_maps_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: match_maps_set_input - - """filter the rows which have to be updated""" - where: match_maps_bool_exp! -} - -"""aggregate var_pop on columns""" -type match_maps_var_pop_fields { - clips_count: Float - - """ - A computed field, executes function "match_map_demo_total_size" - """ - demos_total_size: Int - - """ - A computed field, executes function "lineup_1_score" - """ - lineup_1_score: Int - lineup_1_timeouts_available: Float - - """ - A computed field, executes function "lineup_2_score" - """ - lineup_2_score: Int - lineup_2_timeouts_available: Float - order: Float - public_clips_count: Float -} - -""" -order by var_pop() on columns of table "match_maps" -""" -input match_maps_var_pop_order_by { - clips_count: order_by - lineup_1_timeouts_available: order_by - lineup_2_timeouts_available: order_by - order: order_by - public_clips_count: order_by -} - -"""aggregate var_samp on columns""" -type match_maps_var_samp_fields { - clips_count: Float - - """ - A computed field, executes function "match_map_demo_total_size" - """ - demos_total_size: Int - - """ - A computed field, executes function "lineup_1_score" - """ - lineup_1_score: Int - lineup_1_timeouts_available: Float - - """ - A computed field, executes function "lineup_2_score" - """ - lineup_2_score: Int - lineup_2_timeouts_available: Float - order: Float - public_clips_count: Float -} - -""" -order by var_samp() on columns of table "match_maps" -""" -input match_maps_var_samp_order_by { - clips_count: order_by - lineup_1_timeouts_available: order_by - lineup_2_timeouts_available: order_by - order: order_by - public_clips_count: order_by -} - -"""aggregate variance on columns""" -type match_maps_variance_fields { - clips_count: Float - - """ - A computed field, executes function "match_map_demo_total_size" - """ - demos_total_size: Int - - """ - A computed field, executes function "lineup_1_score" - """ - lineup_1_score: Int - lineup_1_timeouts_available: Float - - """ - A computed field, executes function "lineup_2_score" - """ - lineup_2_score: Int - lineup_2_timeouts_available: Float - order: Float - public_clips_count: Float -} - -""" -order by variance() on columns of table "match_maps" -""" -input match_maps_variance_order_by { - clips_count: order_by - lineup_1_timeouts_available: order_by - lineup_2_timeouts_available: order_by - order: order_by - public_clips_count: order_by -} - -""" -columns and relationships of "match_options" -""" -type match_options { - auto_cancel_duration: Int - auto_cancellation: Boolean! - best_of: Int! - camera_allow_teammates: Boolean! - camera_required: Boolean! - 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! - - """ - A computed field, executes function "has_active_matches" - """ - has_active_matches: Boolean - id: uuid! - invite_code: String - knife_round: Boolean! - live_match_timeout: Int - - """An object relationship""" - map_pool: map_pools! - map_pool_id: uuid! - map_veto: Boolean! - match_mode: e_match_mode_enum! - - """An array relationship""" - matches( - """distinct select on columns""" - distinct_on: [matches_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: [matches_order_by!] - - """filter the rows returned""" - where: matches_bool_exp - ): [matches!]! - - """An aggregate relationship""" - matches_aggregate( - """distinct select on columns""" - distinct_on: [matches_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: [matches_order_by!] - - """filter the rows returned""" - where: matches_bool_exp - ): matches_aggregate! - mr: Int! - number_of_substitutes: Int! - overtime: Boolean! - prefer_dedicated_server: Boolean! - ready_setting: e_ready_settings_enum! - region_veto: Boolean! - regions: [String!] - round_restart_delay: Int - tech_timeout_setting: e_timeout_settings_enum! - timeout_setting: e_timeout_settings_enum! - - """An object relationship""" - tournament: tournaments - - """An object relationship""" - tournament_bracket: tournament_brackets - - """An object relationship""" - tournament_stage: tournament_stages - tv_delay: Int! - type: e_match_types_enum! - veto_pick_timeout: Int! -} - -""" -aggregated selection of "match_options" -""" -type match_options_aggregate { - aggregate: match_options_aggregate_fields - 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" -""" -type match_options_aggregate_fields { - avg: match_options_avg_fields - count(columns: [match_options_select_column!], distinct: Boolean): Int! - max: match_options_max_fields - min: match_options_min_fields - stddev: match_options_stddev_fields - stddev_pop: match_options_stddev_pop_fields - stddev_samp: match_options_stddev_samp_fields - sum: match_options_sum_fields - var_pop: match_options_var_pop_fields - var_samp: match_options_var_samp_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 - best_of: Float - live_match_timeout: Float - mr: Float - number_of_substitutes: Float - round_restart_delay: Float - tv_delay: Float - 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'. -""" -input match_options_bool_exp { - _and: [match_options_bool_exp!] - _not: match_options_bool_exp - _or: [match_options_bool_exp!] - auto_cancel_duration: Int_comparison_exp - auto_cancellation: Boolean_comparison_exp - best_of: Int_comparison_exp - camera_allow_teammates: Boolean_comparison_exp - camera_required: Boolean_comparison_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 - invite_code: String_comparison_exp - knife_round: Boolean_comparison_exp - live_match_timeout: Int_comparison_exp - map_pool: map_pools_bool_exp - map_pool_id: uuid_comparison_exp - map_veto: Boolean_comparison_exp - match_mode: e_match_mode_enum_comparison_exp - matches: matches_bool_exp - matches_aggregate: matches_aggregate_bool_exp - mr: Int_comparison_exp - number_of_substitutes: Int_comparison_exp - overtime: Boolean_comparison_exp - prefer_dedicated_server: Boolean_comparison_exp - ready_setting: e_ready_settings_enum_comparison_exp - region_veto: Boolean_comparison_exp - regions: String_array_comparison_exp - round_restart_delay: Int_comparison_exp - tech_timeout_setting: e_timeout_settings_enum_comparison_exp - timeout_setting: e_timeout_settings_enum_comparison_exp - tournament: tournaments_bool_exp - tournament_bracket: tournament_brackets_bool_exp - tournament_stage: tournament_stages_bool_exp - tv_delay: Int_comparison_exp - type: e_match_types_enum_comparison_exp - veto_pick_timeout: Int_comparison_exp -} - -""" -unique or primary key constraints on table "match_options" -""" -enum match_options_constraint { - """ - unique or primary key constraint on columns "id" - """ - match_options_pkey -} - -""" -input type for incrementing numeric columns in table "match_options" -""" -input match_options_inc_input { - auto_cancel_duration: Int - best_of: Int - live_match_timeout: Int - mr: Int - number_of_substitutes: Int - round_restart_delay: Int - tv_delay: Int - veto_pick_timeout: Int -} - -""" -input type for inserting data into table "match_options" -""" -input match_options_insert_input { - auto_cancel_duration: Int - auto_cancellation: Boolean - best_of: Int - camera_allow_teammates: Boolean - camera_required: Boolean - 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 - knife_round: Boolean - live_match_timeout: Int - map_pool: map_pools_obj_rel_insert_input - map_pool_id: uuid - map_veto: Boolean - match_mode: e_match_mode_enum - matches: matches_arr_rel_insert_input - mr: Int - number_of_substitutes: Int - overtime: Boolean - prefer_dedicated_server: Boolean - ready_setting: e_ready_settings_enum - region_veto: Boolean - regions: [String!] - round_restart_delay: Int - tech_timeout_setting: e_timeout_settings_enum - timeout_setting: e_timeout_settings_enum - tournament: tournaments_obj_rel_insert_input - tournament_bracket: tournament_brackets_obj_rel_insert_input - tournament_stage: tournament_stages_obj_rel_insert_input - tv_delay: Int - type: e_match_types_enum - veto_pick_timeout: Int -} - -"""aggregate max on columns""" -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 - map_pool_id: uuid - mr: Int - number_of_substitutes: Int - regions: [String!] - round_restart_delay: Int - tv_delay: Int - 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 - map_pool_id: uuid - mr: Int - number_of_substitutes: Int - regions: [String!] - round_restart_delay: Int - tv_delay: Int - 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" -""" -type match_options_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [match_options!]! -} - -""" -input type for inserting object relation for remote table "match_options" -""" -input match_options_obj_rel_insert_input { - data: match_options_insert_input! - - """upsert condition""" - on_conflict: match_options_on_conflict -} - -""" -on_conflict condition type for table "match_options" -""" -input match_options_on_conflict { - constraint: match_options_constraint! - update_columns: [match_options_update_column!]! = [] - where: match_options_bool_exp -} - -"""Ordering options when selecting data from "match_options".""" -input match_options_order_by { - auto_cancel_duration: order_by - auto_cancellation: order_by - best_of: order_by - camera_allow_teammates: order_by - camera_required: 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 - invite_code: order_by - knife_round: order_by - live_match_timeout: order_by - map_pool: map_pools_order_by - map_pool_id: order_by - map_veto: order_by - match_mode: order_by - matches_aggregate: matches_aggregate_order_by - mr: order_by - number_of_substitutes: order_by - overtime: order_by - prefer_dedicated_server: order_by - ready_setting: order_by - region_veto: order_by - regions: order_by - round_restart_delay: order_by - tech_timeout_setting: order_by - timeout_setting: order_by - tournament: tournaments_order_by - tournament_bracket: tournament_brackets_order_by - tournament_stage: tournament_stages_order_by - tv_delay: order_by - type: order_by - veto_pick_timeout: order_by -} - -"""primary key columns input for table: match_options""" -input match_options_pk_columns_input { - id: uuid! -} - -""" -select columns of table "match_options" -""" -enum match_options_select_column { - """column name""" - auto_cancel_duration - - """column name""" - auto_cancellation - - """column name""" - best_of - - """column name""" - camera_allow_teammates - - """column name""" - camera_required - - """column name""" - check_in_setting - - """column name""" - coaches - - """column name""" - default_models - - """column name""" - game_mode_id - - """column name""" - halftime_pausematch - - """column name""" - id - - """column name""" - invite_code - - """column name""" - knife_round - - """column name""" - live_match_timeout - - """column name""" - map_pool_id - - """column name""" - map_veto - - """column name""" - match_mode - - """column name""" - mr - - """column name""" - number_of_substitutes - - """column name""" - overtime - - """column name""" - prefer_dedicated_server - - """column name""" - ready_setting - - """column name""" - region_veto - - """column name""" - regions - - """column name""" - round_restart_delay - - """column name""" - tech_timeout_setting - - """column name""" - timeout_setting - - """column name""" - tv_delay - - """column name""" - type - - """column name""" - 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" -""" -input match_options_set_input { - auto_cancel_duration: Int - auto_cancellation: Boolean - best_of: Int - camera_allow_teammates: Boolean - camera_required: Boolean - 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 - knife_round: Boolean - live_match_timeout: Int - map_pool_id: uuid - map_veto: Boolean - match_mode: e_match_mode_enum - mr: Int - number_of_substitutes: Int - overtime: Boolean - prefer_dedicated_server: Boolean - ready_setting: e_ready_settings_enum - region_veto: Boolean - regions: [String!] - round_restart_delay: Int - tech_timeout_setting: e_timeout_settings_enum - timeout_setting: e_timeout_settings_enum - tv_delay: Int - type: e_match_types_enum - veto_pick_timeout: Int -} - -"""aggregate stddev on columns""" -type match_options_stddev_fields { - auto_cancel_duration: Float - best_of: Float - live_match_timeout: Float - mr: Float - number_of_substitutes: Float - round_restart_delay: Float - tv_delay: Float - 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 - best_of: Float - live_match_timeout: Float - mr: Float - number_of_substitutes: Float - round_restart_delay: Float - tv_delay: Float - 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 - best_of: Float - live_match_timeout: Float - mr: Float - number_of_substitutes: Float - round_restart_delay: Float - tv_delay: Float - 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" -""" -input match_options_stream_cursor_input { - """Stream column input with initial value""" - initial_value: match_options_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input match_options_stream_cursor_value_input { - auto_cancel_duration: Int - auto_cancellation: Boolean - best_of: Int - camera_allow_teammates: Boolean - camera_required: Boolean - 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 - knife_round: Boolean - live_match_timeout: Int - map_pool_id: uuid - map_veto: Boolean - match_mode: e_match_mode_enum - mr: Int - number_of_substitutes: Int - overtime: Boolean - prefer_dedicated_server: Boolean - ready_setting: e_ready_settings_enum - region_veto: Boolean - regions: [String!] - round_restart_delay: Int - tech_timeout_setting: e_timeout_settings_enum - timeout_setting: e_timeout_settings_enum - tv_delay: Int - type: e_match_types_enum - veto_pick_timeout: Int -} - -"""aggregate sum on columns""" -type match_options_sum_fields { - auto_cancel_duration: Int - best_of: Int - live_match_timeout: Int - mr: Int - number_of_substitutes: Int - round_restart_delay: Int - tv_delay: Int - 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" -""" -enum match_options_update_column { - """column name""" - auto_cancel_duration - - """column name""" - auto_cancellation - - """column name""" - best_of - - """column name""" - camera_allow_teammates - - """column name""" - camera_required - - """column name""" - check_in_setting - - """column name""" - coaches - - """column name""" - default_models - - """column name""" - game_mode_id - - """column name""" - halftime_pausematch - - """column name""" - id - - """column name""" - invite_code - - """column name""" - knife_round - - """column name""" - live_match_timeout - - """column name""" - map_pool_id - - """column name""" - map_veto - - """column name""" - match_mode - - """column name""" - mr - - """column name""" - number_of_substitutes - - """column name""" - overtime - - """column name""" - prefer_dedicated_server - - """column name""" - ready_setting - - """column name""" - region_veto - - """column name""" - regions - - """column name""" - round_restart_delay - - """column name""" - tech_timeout_setting - - """column name""" - timeout_setting - - """column name""" - tv_delay - - """column name""" - type - - """column name""" - veto_pick_timeout -} - -input match_options_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: match_options_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: match_options_set_input - - """filter the rows which have to be updated""" - where: match_options_bool_exp! -} - -"""aggregate var_pop on columns""" -type match_options_var_pop_fields { - auto_cancel_duration: Float - best_of: Float - live_match_timeout: Float - mr: Float - number_of_substitutes: Float - round_restart_delay: Float - tv_delay: Float - 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 - best_of: Float - live_match_timeout: Float - mr: Float - number_of_substitutes: Float - round_restart_delay: Float - tv_delay: Float - 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 - best_of: Float - live_match_timeout: Float - mr: Float - number_of_substitutes: Float - round_restart_delay: Float - tv_delay: Float - 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" -""" -type match_region_veto_picks { - auto_picked: Boolean! - created_at: timestamptz! - id: uuid! - - """An object relationship""" - match: matches! - match_id: uuid! - - """An object relationship""" - match_lineup: match_lineups! - match_lineup_id: uuid! - region: String! - type: e_veto_pick_types_enum! -} - -""" -aggregated selection of "match_region_veto_picks" -""" -type match_region_veto_picks_aggregate { - aggregate: match_region_veto_picks_aggregate_fields - nodes: [match_region_veto_picks!]! -} - -input match_region_veto_picks_aggregate_bool_exp { - bool_and: match_region_veto_picks_aggregate_bool_exp_bool_and - bool_or: match_region_veto_picks_aggregate_bool_exp_bool_or - count: match_region_veto_picks_aggregate_bool_exp_count -} - -input match_region_veto_picks_aggregate_bool_exp_bool_and { - arguments: match_region_veto_picks_select_column_match_region_veto_picks_aggregate_bool_exp_bool_and_arguments_columns! - distinct: Boolean - filter: match_region_veto_picks_bool_exp - predicate: Boolean_comparison_exp! -} - -input match_region_veto_picks_aggregate_bool_exp_bool_or { - arguments: match_region_veto_picks_select_column_match_region_veto_picks_aggregate_bool_exp_bool_or_arguments_columns! - distinct: Boolean - filter: match_region_veto_picks_bool_exp - predicate: Boolean_comparison_exp! -} - -input match_region_veto_picks_aggregate_bool_exp_count { - arguments: [match_region_veto_picks_select_column!] - distinct: Boolean - filter: match_region_veto_picks_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "match_region_veto_picks" -""" -type match_region_veto_picks_aggregate_fields { - count(columns: [match_region_veto_picks_select_column!], distinct: Boolean): Int! - max: match_region_veto_picks_max_fields - min: match_region_veto_picks_min_fields -} - -""" -order by aggregate values of table "match_region_veto_picks" -""" -input match_region_veto_picks_aggregate_order_by { - count: order_by - max: match_region_veto_picks_max_order_by - min: match_region_veto_picks_min_order_by -} - -""" -input type for inserting array relation for remote table "match_region_veto_picks" -""" -input match_region_veto_picks_arr_rel_insert_input { - data: [match_region_veto_picks_insert_input!]! - - """upsert condition""" - on_conflict: match_region_veto_picks_on_conflict -} - -""" -Boolean expression to filter rows from the table "match_region_veto_picks". All fields are combined with a logical 'AND'. -""" -input match_region_veto_picks_bool_exp { - _and: [match_region_veto_picks_bool_exp!] - _not: match_region_veto_picks_bool_exp - _or: [match_region_veto_picks_bool_exp!] - auto_picked: Boolean_comparison_exp - created_at: timestamptz_comparison_exp - id: uuid_comparison_exp - match: matches_bool_exp - match_id: uuid_comparison_exp - match_lineup: match_lineups_bool_exp - match_lineup_id: uuid_comparison_exp - region: String_comparison_exp - type: e_veto_pick_types_enum_comparison_exp -} - -""" -unique or primary key constraints on table "match_region_veto_picks" -""" -enum match_region_veto_picks_constraint { - """ - unique or primary key constraint on columns "region", "match_id" - """ - match_region_veto_picks_match_id_region_key - - """ - unique or primary key constraint on columns "id" - """ - match_region_veto_picks_pkey -} - -""" -input type for inserting data into table "match_region_veto_picks" -""" -input match_region_veto_picks_insert_input { - auto_picked: Boolean - created_at: timestamptz - id: uuid - match: matches_obj_rel_insert_input - match_id: uuid - match_lineup: match_lineups_obj_rel_insert_input - match_lineup_id: uuid - region: String - type: e_veto_pick_types_enum -} - -"""aggregate max on columns""" -type match_region_veto_picks_max_fields { - created_at: timestamptz - id: uuid - match_id: uuid - match_lineup_id: uuid - region: String -} - -""" -order by max() on columns of table "match_region_veto_picks" -""" -input match_region_veto_picks_max_order_by { - created_at: order_by - id: order_by - match_id: order_by - match_lineup_id: order_by - region: order_by -} - -"""aggregate min on columns""" -type match_region_veto_picks_min_fields { - created_at: timestamptz - id: uuid - match_id: uuid - match_lineup_id: uuid - region: String -} - -""" -order by min() on columns of table "match_region_veto_picks" -""" -input match_region_veto_picks_min_order_by { - created_at: order_by - id: order_by - match_id: order_by - match_lineup_id: order_by - region: order_by -} - -""" -response of any mutation on the table "match_region_veto_picks" -""" -type match_region_veto_picks_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [match_region_veto_picks!]! -} - -""" -on_conflict condition type for table "match_region_veto_picks" -""" -input match_region_veto_picks_on_conflict { - constraint: match_region_veto_picks_constraint! - update_columns: [match_region_veto_picks_update_column!]! = [] - where: match_region_veto_picks_bool_exp -} - -"""Ordering options when selecting data from "match_region_veto_picks".""" -input match_region_veto_picks_order_by { - auto_picked: order_by - created_at: order_by - id: order_by - match: matches_order_by - match_id: order_by - match_lineup: match_lineups_order_by - match_lineup_id: order_by - region: order_by - type: order_by -} - -"""primary key columns input for table: match_region_veto_picks""" -input match_region_veto_picks_pk_columns_input { - id: uuid! -} - -""" -select columns of table "match_region_veto_picks" -""" -enum match_region_veto_picks_select_column { - """column name""" - auto_picked - - """column name""" - created_at - - """column name""" - id - - """column name""" - match_id - - """column name""" - match_lineup_id - - """column name""" - region - - """column name""" - type -} - -""" -select "match_region_veto_picks_aggregate_bool_exp_bool_and_arguments_columns" columns of table "match_region_veto_picks" -""" -enum match_region_veto_picks_select_column_match_region_veto_picks_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - auto_picked -} - -""" -select "match_region_veto_picks_aggregate_bool_exp_bool_or_arguments_columns" columns of table "match_region_veto_picks" -""" -enum match_region_veto_picks_select_column_match_region_veto_picks_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - auto_picked -} - -""" -input type for updating data in table "match_region_veto_picks" -""" -input match_region_veto_picks_set_input { - auto_picked: Boolean - created_at: timestamptz - id: uuid - match_id: uuid - match_lineup_id: uuid - region: String - type: e_veto_pick_types_enum -} - -""" -Streaming cursor of the table "match_region_veto_picks" -""" -input match_region_veto_picks_stream_cursor_input { - """Stream column input with initial value""" - initial_value: match_region_veto_picks_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input match_region_veto_picks_stream_cursor_value_input { - auto_picked: Boolean - created_at: timestamptz - id: uuid - match_id: uuid - match_lineup_id: uuid - region: String - type: e_veto_pick_types_enum -} - -""" -update columns of table "match_region_veto_picks" -""" -enum match_region_veto_picks_update_column { - """column name""" - auto_picked - - """column name""" - created_at - - """column name""" - id - - """column name""" - match_id - - """column name""" - match_lineup_id - - """column name""" - region - - """column name""" - type -} - -input match_region_veto_picks_updates { - """sets the columns of the filtered rows to the given values""" - _set: match_region_veto_picks_set_input - - """filter the rows which have to be updated""" - where: match_region_veto_picks_bool_exp! -} - -""" -columns and relationships of "match_streams" -""" -type match_streams { - autodirector: Boolean! - error_message: String - - """An object relationship""" - game_server_node: game_server_nodes - game_server_node_id: String - id: uuid! - is_game_streamer: Boolean! - is_live: Boolean! - k8s_service_name: String - last_status_at: timestamptz - link: String! - - """An object relationship""" - match: matches! - match_id: uuid! - mode: String! - priority: Int! - status: String - status_history( - """JSON select path""" - path: String - ): jsonb! - stream_url: String - title: String! -} - -""" -aggregated selection of "match_streams" -""" -type match_streams_aggregate { - aggregate: match_streams_aggregate_fields - nodes: [match_streams!]! -} - -input match_streams_aggregate_bool_exp { - bool_and: match_streams_aggregate_bool_exp_bool_and - bool_or: match_streams_aggregate_bool_exp_bool_or - count: match_streams_aggregate_bool_exp_count -} - -input match_streams_aggregate_bool_exp_bool_and { - arguments: match_streams_select_column_match_streams_aggregate_bool_exp_bool_and_arguments_columns! - distinct: Boolean - filter: match_streams_bool_exp - predicate: Boolean_comparison_exp! -} - -input match_streams_aggregate_bool_exp_bool_or { - arguments: match_streams_select_column_match_streams_aggregate_bool_exp_bool_or_arguments_columns! - distinct: Boolean - filter: match_streams_bool_exp - predicate: Boolean_comparison_exp! -} - -input match_streams_aggregate_bool_exp_count { - arguments: [match_streams_select_column!] - distinct: Boolean - filter: match_streams_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "match_streams" -""" -type match_streams_aggregate_fields { - avg: match_streams_avg_fields - count(columns: [match_streams_select_column!], distinct: Boolean): Int! - max: match_streams_max_fields - min: match_streams_min_fields - stddev: match_streams_stddev_fields - stddev_pop: match_streams_stddev_pop_fields - stddev_samp: match_streams_stddev_samp_fields - sum: match_streams_sum_fields - var_pop: match_streams_var_pop_fields - var_samp: match_streams_var_samp_fields - variance: match_streams_variance_fields -} - -""" -order by aggregate values of table "match_streams" -""" -input match_streams_aggregate_order_by { - avg: match_streams_avg_order_by - count: order_by - max: match_streams_max_order_by - min: match_streams_min_order_by - stddev: match_streams_stddev_order_by - stddev_pop: match_streams_stddev_pop_order_by - stddev_samp: match_streams_stddev_samp_order_by - sum: match_streams_sum_order_by - var_pop: match_streams_var_pop_order_by - var_samp: match_streams_var_samp_order_by - variance: match_streams_variance_order_by -} - -"""append existing jsonb value of filtered columns with new jsonb value""" -input match_streams_append_input { - status_history: jsonb -} - -""" -input type for inserting array relation for remote table "match_streams" -""" -input match_streams_arr_rel_insert_input { - data: [match_streams_insert_input!]! - - """upsert condition""" - on_conflict: match_streams_on_conflict -} - -"""aggregate avg on columns""" -type match_streams_avg_fields { - priority: Float -} - -""" -order by avg() on columns of table "match_streams" -""" -input match_streams_avg_order_by { - priority: order_by -} - -""" -Boolean expression to filter rows from the table "match_streams". All fields are combined with a logical 'AND'. -""" -input match_streams_bool_exp { - _and: [match_streams_bool_exp!] - _not: match_streams_bool_exp - _or: [match_streams_bool_exp!] - autodirector: Boolean_comparison_exp - error_message: String_comparison_exp - game_server_node: game_server_nodes_bool_exp - game_server_node_id: String_comparison_exp - id: uuid_comparison_exp - is_game_streamer: Boolean_comparison_exp - is_live: Boolean_comparison_exp - k8s_service_name: String_comparison_exp - last_status_at: timestamptz_comparison_exp - link: String_comparison_exp - match: matches_bool_exp - match_id: uuid_comparison_exp - mode: String_comparison_exp - priority: Int_comparison_exp - status: String_comparison_exp - status_history: jsonb_comparison_exp - stream_url: String_comparison_exp - title: String_comparison_exp -} - -""" -unique or primary key constraints on table "match_streams" -""" -enum match_streams_constraint { - """ - unique or primary key constraint on columns "id" - """ - match_streams_pkey -} - -""" -delete the field or element with specified path (for JSON arrays, negative integers count from the end) -""" -input match_streams_delete_at_path_input { - status_history: [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 match_streams_delete_elem_input { - status_history: Int -} - -""" -delete key/value pair or string element. key/value pairs are matched based on their key value -""" -input match_streams_delete_key_input { - status_history: String -} - -""" -input type for incrementing numeric columns in table "match_streams" -""" -input match_streams_inc_input { - priority: Int -} - -""" -input type for inserting data into table "match_streams" -""" -input match_streams_insert_input { - autodirector: Boolean - error_message: String - game_server_node: game_server_nodes_obj_rel_insert_input - game_server_node_id: String - id: uuid - is_game_streamer: Boolean - is_live: Boolean - k8s_service_name: String - last_status_at: timestamptz - link: String - match: matches_obj_rel_insert_input - match_id: uuid - mode: String - priority: Int - status: String - status_history: jsonb - stream_url: String - title: String -} - -"""aggregate max on columns""" -type match_streams_max_fields { - error_message: String - game_server_node_id: String - id: uuid - k8s_service_name: String - last_status_at: timestamptz - link: String - match_id: uuid - mode: String - priority: Int - status: String - stream_url: String - title: String -} - -""" -order by max() on columns of table "match_streams" -""" -input match_streams_max_order_by { - error_message: order_by - game_server_node_id: order_by - id: order_by - k8s_service_name: order_by - last_status_at: order_by - link: order_by - match_id: order_by - mode: order_by - priority: order_by - status: order_by - stream_url: order_by - title: order_by -} - -"""aggregate min on columns""" -type match_streams_min_fields { - error_message: String - game_server_node_id: String - id: uuid - k8s_service_name: String - last_status_at: timestamptz - link: String - match_id: uuid - mode: String - priority: Int - status: String - stream_url: String - title: String -} - -""" -order by min() on columns of table "match_streams" -""" -input match_streams_min_order_by { - error_message: order_by - game_server_node_id: order_by - id: order_by - k8s_service_name: order_by - last_status_at: order_by - link: order_by - match_id: order_by - mode: order_by - priority: order_by - status: order_by - stream_url: order_by - title: order_by -} - -""" -response of any mutation on the table "match_streams" -""" -type match_streams_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [match_streams!]! -} - -""" -on_conflict condition type for table "match_streams" -""" -input match_streams_on_conflict { - constraint: match_streams_constraint! - update_columns: [match_streams_update_column!]! = [] - where: match_streams_bool_exp -} - -"""Ordering options when selecting data from "match_streams".""" -input match_streams_order_by { - autodirector: order_by - error_message: order_by - game_server_node: game_server_nodes_order_by - game_server_node_id: order_by - id: order_by - is_game_streamer: order_by - is_live: order_by - k8s_service_name: order_by - last_status_at: order_by - link: order_by - match: matches_order_by - match_id: order_by - mode: order_by - priority: order_by - status: order_by - status_history: order_by - stream_url: order_by - title: order_by -} - -"""primary key columns input for table: match_streams""" -input match_streams_pk_columns_input { - id: uuid! -} - -"""prepend existing jsonb value of filtered columns with new jsonb value""" -input match_streams_prepend_input { - status_history: jsonb -} - -""" -select columns of table "match_streams" -""" -enum match_streams_select_column { - """column name""" - autodirector - - """column name""" - error_message - - """column name""" - game_server_node_id - - """column name""" - id - - """column name""" - is_game_streamer - - """column name""" - is_live - - """column name""" - k8s_service_name - - """column name""" - last_status_at - - """column name""" - link - - """column name""" - match_id - - """column name""" - mode - - """column name""" - priority - - """column name""" - status - - """column name""" - status_history - - """column name""" - stream_url - - """column name""" - title -} - -""" -select "match_streams_aggregate_bool_exp_bool_and_arguments_columns" columns of table "match_streams" -""" -enum match_streams_select_column_match_streams_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - autodirector - - """column name""" - is_game_streamer - - """column name""" - is_live -} - -""" -select "match_streams_aggregate_bool_exp_bool_or_arguments_columns" columns of table "match_streams" -""" -enum match_streams_select_column_match_streams_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - autodirector - - """column name""" - is_game_streamer - - """column name""" - is_live -} - -""" -input type for updating data in table "match_streams" -""" -input match_streams_set_input { - autodirector: Boolean - error_message: String - game_server_node_id: String - id: uuid - is_game_streamer: Boolean - is_live: Boolean - k8s_service_name: String - last_status_at: timestamptz - link: String - match_id: uuid - mode: String - priority: Int - status: String - status_history: jsonb - stream_url: String - title: String -} - -"""aggregate stddev on columns""" -type match_streams_stddev_fields { - priority: Float -} - -""" -order by stddev() on columns of table "match_streams" -""" -input match_streams_stddev_order_by { - priority: order_by -} - -"""aggregate stddev_pop on columns""" -type match_streams_stddev_pop_fields { - priority: Float -} - -""" -order by stddev_pop() on columns of table "match_streams" -""" -input match_streams_stddev_pop_order_by { - priority: order_by -} - -"""aggregate stddev_samp on columns""" -type match_streams_stddev_samp_fields { - priority: Float -} - -""" -order by stddev_samp() on columns of table "match_streams" -""" -input match_streams_stddev_samp_order_by { - priority: order_by -} - -""" -Streaming cursor of the table "match_streams" -""" -input match_streams_stream_cursor_input { - """Stream column input with initial value""" - initial_value: match_streams_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input match_streams_stream_cursor_value_input { - autodirector: Boolean - error_message: String - game_server_node_id: String - id: uuid - is_game_streamer: Boolean - is_live: Boolean - k8s_service_name: String - last_status_at: timestamptz - link: String - match_id: uuid - mode: String - priority: Int - status: String - status_history: jsonb - stream_url: String - title: String -} - -"""aggregate sum on columns""" -type match_streams_sum_fields { - priority: Int -} - -""" -order by sum() on columns of table "match_streams" -""" -input match_streams_sum_order_by { - priority: order_by -} - -""" -update columns of table "match_streams" -""" -enum match_streams_update_column { - """column name""" - autodirector - - """column name""" - error_message - - """column name""" - game_server_node_id - - """column name""" - id - - """column name""" - is_game_streamer - - """column name""" - is_live - - """column name""" - k8s_service_name - - """column name""" - last_status_at - - """column name""" - link - - """column name""" - match_id - - """column name""" - mode - - """column name""" - priority - - """column name""" - status - - """column name""" - status_history - - """column name""" - stream_url - - """column name""" - title -} - -input match_streams_updates { - """append existing jsonb value of filtered columns with new jsonb value""" - _append: match_streams_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: match_streams_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: match_streams_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: match_streams_delete_key_input - - """increments the numeric columns with given value of the filtered values""" - _inc: match_streams_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: match_streams_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: match_streams_set_input - - """filter the rows which have to be updated""" - where: match_streams_bool_exp! -} - -"""aggregate var_pop on columns""" -type match_streams_var_pop_fields { - priority: Float -} - -""" -order by var_pop() on columns of table "match_streams" -""" -input match_streams_var_pop_order_by { - priority: order_by -} - -"""aggregate var_samp on columns""" -type match_streams_var_samp_fields { - priority: Float -} - -""" -order by var_samp() on columns of table "match_streams" -""" -input match_streams_var_samp_order_by { - priority: order_by -} - -"""aggregate variance on columns""" -type match_streams_variance_fields { - priority: Float -} - -""" -order by variance() on columns of table "match_streams" -""" -input match_streams_variance_order_by { - priority: order_by -} - -""" -columns and relationships of "match_type_cfgs" -""" -type match_type_cfgs { - cfg: String! - type: e_game_cfg_types_enum! -} - -""" -aggregated selection of "match_type_cfgs" -""" -type match_type_cfgs_aggregate { - aggregate: match_type_cfgs_aggregate_fields - nodes: [match_type_cfgs!]! -} - -""" -aggregate fields of "match_type_cfgs" -""" -type match_type_cfgs_aggregate_fields { - count(columns: [match_type_cfgs_select_column!], distinct: Boolean): Int! - max: match_type_cfgs_max_fields - min: match_type_cfgs_min_fields -} - -""" -Boolean expression to filter rows from the table "match_type_cfgs". All fields are combined with a logical 'AND'. -""" -input match_type_cfgs_bool_exp { - _and: [match_type_cfgs_bool_exp!] - _not: match_type_cfgs_bool_exp - _or: [match_type_cfgs_bool_exp!] - cfg: String_comparison_exp - type: e_game_cfg_types_enum_comparison_exp -} - -""" -unique or primary key constraints on table "match_type_cfgs" -""" -enum match_type_cfgs_constraint { - """ - unique or primary key constraint on columns "type" - """ - match_type_cfgs_pkey -} - -""" -input type for inserting data into table "match_type_cfgs" -""" -input match_type_cfgs_insert_input { - cfg: String - type: e_game_cfg_types_enum -} - -"""aggregate max on columns""" -type match_type_cfgs_max_fields { - cfg: String -} - -"""aggregate min on columns""" -type match_type_cfgs_min_fields { - cfg: String -} - -""" -response of any mutation on the table "match_type_cfgs" -""" -type match_type_cfgs_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [match_type_cfgs!]! -} - -""" -on_conflict condition type for table "match_type_cfgs" -""" -input match_type_cfgs_on_conflict { - constraint: match_type_cfgs_constraint! - update_columns: [match_type_cfgs_update_column!]! = [] - where: match_type_cfgs_bool_exp -} - -"""Ordering options when selecting data from "match_type_cfgs".""" -input match_type_cfgs_order_by { - cfg: order_by - type: order_by -} - -"""primary key columns input for table: match_type_cfgs""" -input match_type_cfgs_pk_columns_input { - type: e_game_cfg_types_enum! -} - -""" -select columns of table "match_type_cfgs" -""" -enum match_type_cfgs_select_column { - """column name""" - cfg - - """column name""" - type -} - -""" -input type for updating data in table "match_type_cfgs" -""" -input match_type_cfgs_set_input { - cfg: String - type: e_game_cfg_types_enum -} - -""" -Streaming cursor of the table "match_type_cfgs" -""" -input match_type_cfgs_stream_cursor_input { - """Stream column input with initial value""" - initial_value: match_type_cfgs_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input match_type_cfgs_stream_cursor_value_input { - cfg: String - type: e_game_cfg_types_enum -} - -""" -update columns of table "match_type_cfgs" -""" -enum match_type_cfgs_update_column { - """column name""" - cfg - - """column name""" - type -} - -input match_type_cfgs_updates { - """sets the columns of the filtered rows to the given values""" - _set: match_type_cfgs_set_input - - """filter the rows which have to be updated""" - where: match_type_cfgs_bool_exp! -} - -""" -columns and relationships of "matches" -""" -type matches { - """ - A computed field, executes function "can_assign_server_to_match" - """ - can_assign_server: Boolean - - """ - A computed field, executes function "can_cancel_match" - """ - can_cancel: Boolean - - """ - A computed field, executes function "can_check_in" - """ - can_check_in: Boolean - - """ - A computed field, executes function "can_reassign_winner" - """ - can_reassign_winner: Boolean - - """ - A computed field, executes function "can_schedule_match" - """ - can_schedule: Boolean - - """ - A computed field, executes function "can_start_match" - """ - can_start: Boolean - - """ - A computed field, executes function "can_stream_live" - """ - can_stream_live: Boolean - - """ - A computed field, executes function "can_stream_tv" - """ - can_stream_tv: Boolean - cancels_at: timestamptz - - """An array relationship""" - clutches( - """distinct select on columns""" - distinct_on: [v_match_clutches_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_match_clutches_order_by!] - - """filter the rows returned""" - where: v_match_clutches_bool_exp - ): [v_match_clutches!]! - - """An aggregate relationship""" - clutches_aggregate( - """distinct select on columns""" - distinct_on: [v_match_clutches_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_match_clutches_order_by!] - - """filter the rows returned""" - where: v_match_clutches_bool_exp - ): v_match_clutches_aggregate! - - """ - A computed field, executes function "get_match_connection_link" - """ - connection_link: String - - """ - A computed field, executes function "get_match_connection_string" - """ - connection_string: String - counts_toward_ranking: Boolean! - created_at: timestamptz! - - """ - A computed field, executes function "get_current_match_map" - """ - current_match_map_id: uuid - - """An array relationship""" - demos( - """distinct select on columns""" - distinct_on: [match_map_demos_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_map_demos_order_by!] - - """filter the rows returned""" - where: match_map_demos_bool_exp - ): [match_map_demos!]! - - """An aggregate relationship""" - demos_aggregate( - """distinct select on columns""" - distinct_on: [match_map_demos_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_map_demos_order_by!] - - """filter the rows returned""" - where: match_map_demos_bool_exp - ): match_map_demos_aggregate! - - """An array relationship""" - draft_games( - """distinct select on columns""" - distinct_on: [draft_games_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: [draft_games_order_by!] - - """filter the rows returned""" - where: draft_games_bool_exp - ): [draft_games!]! - - """An aggregate relationship""" - draft_games_aggregate( - """distinct select on columns""" - distinct_on: [draft_games_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: [draft_games_order_by!] - - """filter the rows returned""" - where: draft_games_bool_exp - ): draft_games_aggregate! - - """An object relationship""" - e_match_status: e_match_status! - - """An object relationship""" - e_region: server_regions - effective_at: timestamptz - - """An array relationship""" - elo_changes( - """distinct select on columns""" - distinct_on: [v_player_elo_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_elo_order_by!] - - """filter the rows returned""" - where: v_player_elo_bool_exp - ): [v_player_elo!]! - - """An aggregate relationship""" - elo_changes_aggregate( - """distinct select on columns""" - distinct_on: [v_player_elo_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_elo_order_by!] - - """filter the rows returned""" - where: v_player_elo_bool_exp - ): v_player_elo_aggregate! - ended_at: timestamptz - external_id: String - id: uuid! - - """ - A computed field, executes function "match_invite_code" - """ - invite_code: String - - """ - A computed field, executes function "is_captain" - """ - is_captain: Boolean - - """ - A computed field, executes function "is_coach" - """ - is_coach: Boolean - - """ - A computed field, executes function "is_friend_in_match_lineup" - """ - is_friend_in_match_lineup: Boolean - - """ - A computed field, executes function "is_in_lineup" - """ - is_in_lineup: Boolean - - """ - A computed field, executes function "is_match_server_available" - """ - is_match_server_available: Boolean - - """ - A computed field, executes function "is_match_organizer" - """ - is_organizer: Boolean - - """ - A computed field, executes function "is_server_online" - """ - is_server_online: Boolean - - """ - A computed field, executes function "is_tournament_match" - """ - is_tournament_match: Boolean - label: String - - """An object relationship""" - lineup_1: match_lineups! - lineup_1_id: uuid! - - """An object relationship""" - lineup_2: match_lineups! - lineup_2_id: uuid! - - """ - A computed field, executes function "get_lineup_counts" - """ - lineup_counts( - """JSON select path""" - path: String - ): json - - """ - A computed field, executes function "get_map_veto_picking_lineup_id" - """ - map_veto_picking_lineup_id: uuid - - """An array relationship""" - map_veto_picks( - """distinct select on columns""" - distinct_on: [match_map_veto_picks_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_map_veto_picks_order_by!] - - """filter the rows returned""" - where: match_map_veto_picks_bool_exp - ): [match_map_veto_picks!]! - - """An aggregate relationship""" - map_veto_picks_aggregate( - """distinct select on columns""" - distinct_on: [match_map_veto_picks_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_map_veto_picks_order_by!] - - """filter the rows returned""" - where: match_map_veto_picks_bool_exp - ): match_map_veto_picks_aggregate! - - """ - A computed field, executes function "get_map_veto_type" - """ - map_veto_type: String - - """An array relationship""" - match_maps( - """distinct select on columns""" - distinct_on: [match_maps_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_maps_order_by!] - - """filter the rows returned""" - where: match_maps_bool_exp - ): [match_maps!]! - - """An aggregate relationship""" - match_maps_aggregate( - """distinct select on columns""" - distinct_on: [match_maps_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_maps_order_by!] - - """filter the rows returned""" - where: match_maps_bool_exp - ): match_maps_aggregate! - match_options_id: uuid - - """ - A computed field, executes function "match_max_players_per_lineup" - """ - max_players_per_lineup: Int - - """ - A computed field, executes function "match_min_players_per_lineup" - """ - min_players_per_lineup: Int - - """An array relationship""" - opening_duels( - """distinct select on columns""" - distinct_on: [v_match_player_opening_duels_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_match_player_opening_duels_order_by!] - - """filter the rows returned""" - where: v_match_player_opening_duels_bool_exp - ): [v_match_player_opening_duels!]! - - """An aggregate relationship""" - opening_duels_aggregate( - """distinct select on columns""" - distinct_on: [v_match_player_opening_duels_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_match_player_opening_duels_order_by!] - - """filter the rows returned""" - where: v_match_player_opening_duels_bool_exp - ): v_match_player_opening_duels_aggregate! - - """An object relationship""" - options: match_options - - """An object relationship""" - organizer: players - organizer_steam_id: bigint - password: String! - - """An array relationship""" - player_assists( - """distinct select on columns""" - distinct_on: [player_assists_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: [player_assists_order_by!] - - """filter the rows returned""" - where: player_assists_bool_exp - ): [player_assists!]! - - """An aggregate relationship""" - player_assists_aggregate( - """distinct select on columns""" - distinct_on: [player_assists_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: [player_assists_order_by!] - - """filter the rows returned""" - where: player_assists_bool_exp - ): player_assists_aggregate! - - """An array relationship""" - player_damages( - """distinct select on columns""" - distinct_on: [player_damages_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: [player_damages_order_by!] - - """filter the rows returned""" - where: player_damages_bool_exp - ): [player_damages!]! - - """An aggregate relationship""" - player_damages_aggregate( - """distinct select on columns""" - distinct_on: [player_damages_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: [player_damages_order_by!] - - """filter the rows returned""" - where: player_damages_bool_exp - ): player_damages_aggregate! - - """An array relationship""" - player_flashes( - """distinct select on columns""" - distinct_on: [player_flashes_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: [player_flashes_order_by!] - - """filter the rows returned""" - where: player_flashes_bool_exp - ): [player_flashes!]! - - """An aggregate relationship""" - player_flashes_aggregate( - """distinct select on columns""" - distinct_on: [player_flashes_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: [player_flashes_order_by!] - - """filter the rows returned""" - where: player_flashes_bool_exp - ): player_flashes_aggregate! - - """An array relationship""" - player_kills( - """distinct select on columns""" - distinct_on: [player_kills_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: [player_kills_order_by!] - - """filter the rows returned""" - where: player_kills_bool_exp - ): [player_kills!]! - - """An aggregate relationship""" - player_kills_aggregate( - """distinct select on columns""" - distinct_on: [player_kills_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: [player_kills_order_by!] - - """filter the rows returned""" - where: player_kills_bool_exp - ): player_kills_aggregate! - - """An array relationship""" - player_objectives( - """distinct select on columns""" - distinct_on: [player_objectives_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: [player_objectives_order_by!] - - """filter the rows returned""" - where: player_objectives_bool_exp - ): [player_objectives!]! - - """An aggregate relationship""" - player_objectives_aggregate( - """distinct select on columns""" - distinct_on: [player_objectives_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: [player_objectives_order_by!] - - """filter the rows returned""" - where: player_objectives_bool_exp - ): player_objectives_aggregate! - - """An array relationship""" - player_unused_utilities( - """distinct select on columns""" - distinct_on: [player_unused_utility_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: [player_unused_utility_order_by!] - - """filter the rows returned""" - where: player_unused_utility_bool_exp - ): [player_unused_utility!]! - - """An aggregate relationship""" - player_unused_utilities_aggregate( - """distinct select on columns""" - distinct_on: [player_unused_utility_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: [player_unused_utility_order_by!] - - """filter the rows returned""" - where: player_unused_utility_bool_exp - ): player_unused_utility_aggregate! - - """An array relationship""" - player_utility( - """distinct select on columns""" - distinct_on: [player_utility_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: [player_utility_order_by!] - - """filter the rows returned""" - where: player_utility_bool_exp - ): [player_utility!]! - - """An aggregate relationship""" - player_utility_aggregate( - """distinct select on columns""" - distinct_on: [player_utility_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: [player_utility_order_by!] - - """filter the rows returned""" - where: player_utility_bool_exp - ): player_utility_aggregate! - region: String - - """ - A computed field, executes function "get_region_veto_picking_lineup_id" - """ - region_veto_picking_lineup_id: uuid - - """An array relationship""" - region_veto_picks( - """distinct select on columns""" - distinct_on: [match_region_veto_picks_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_region_veto_picks_order_by!] - - """filter the rows returned""" - where: match_region_veto_picks_bool_exp - ): [match_region_veto_picks!]! - - """An aggregate relationship""" - region_veto_picks_aggregate( - """distinct select on columns""" - distinct_on: [match_region_veto_picks_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_region_veto_picks_order_by!] - - """filter the rows returned""" - where: match_region_veto_picks_bool_exp - ): match_region_veto_picks_aggregate! - - """ - A computed field, executes function "match_requested_organizer" - """ - requested_organizer: Boolean - scheduled_at: timestamptz - - """An object relationship""" - server: servers - server_error: String - server_id: uuid - - """ - A computed field, executes function "get_match_server_plugin_runtime" - """ - server_plugin_runtime: String - - """ - A computed field, executes function "get_match_server_region" - """ - server_region: String - - """ - A computed field, executes function "get_match_server_type" - """ - server_type: String - share_code: String - source: String! - started_at: timestamptz - status: e_match_status_enum! - - """An array relationship""" - streams( - """distinct select on columns""" - distinct_on: [match_streams_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_streams_order_by!] - - """filter the rows returned""" - where: match_streams_bool_exp - ): [match_streams!]! - - """An aggregate relationship""" - streams_aggregate( - """distinct select on columns""" - distinct_on: [match_streams_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_streams_order_by!] - - """filter the rows returned""" - where: match_streams_bool_exp - ): match_streams_aggregate! - - """ - A computed field, executes function "get_match_teams" - """ - teams( - """distinct select on columns""" - distinct_on: [teams_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [teams_order_by!] - - """filter the rows returned""" - where: teams_bool_exp - ): [teams!] - - """An array relationship""" - tournament_brackets( - """distinct select on columns""" - distinct_on: [tournament_brackets_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_brackets_order_by!] - - """filter the rows returned""" - where: tournament_brackets_bool_exp - ): [tournament_brackets!]! - - """An aggregate relationship""" - tournament_brackets_aggregate( - """distinct select on columns""" - distinct_on: [tournament_brackets_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_brackets_order_by!] - - """filter the rows returned""" - where: tournament_brackets_bool_exp - ): tournament_brackets_aggregate! - - """ - A computed field, executes function "get_match_tv_connection_string" - """ - tv_connection_string: String - veto_pick_expires_at: timestamptz - - """An object relationship""" - winner: match_lineups - winning_lineup_id: uuid -} - -""" -aggregated selection of "matches" -""" -type matches_aggregate { - aggregate: matches_aggregate_fields - nodes: [matches!]! -} - -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 - filter: matches_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "matches" -""" -type matches_aggregate_fields { - avg: matches_avg_fields - count(columns: [matches_select_column!], distinct: Boolean): Int! - max: matches_max_fields - min: matches_min_fields - stddev: matches_stddev_fields - stddev_pop: matches_stddev_pop_fields - stddev_samp: matches_stddev_samp_fields - sum: matches_sum_fields - var_pop: matches_var_pop_fields - var_samp: matches_var_samp_fields - variance: matches_variance_fields -} - -""" -order by aggregate values of table "matches" -""" -input matches_aggregate_order_by { - avg: matches_avg_order_by - count: order_by - max: matches_max_order_by - min: matches_min_order_by - stddev: matches_stddev_order_by - stddev_pop: matches_stddev_pop_order_by - stddev_samp: matches_stddev_samp_order_by - sum: matches_sum_order_by - var_pop: matches_var_pop_order_by - var_samp: matches_var_samp_order_by - variance: matches_variance_order_by -} - -""" -input type for inserting array relation for remote table "matches" -""" -input matches_arr_rel_insert_input { - data: [matches_insert_input!]! - - """upsert condition""" - on_conflict: matches_on_conflict -} - -"""aggregate avg on columns""" -type matches_avg_fields { - """ - A computed field, executes function "match_max_players_per_lineup" - """ - max_players_per_lineup: Int - - """ - A computed field, executes function "match_min_players_per_lineup" - """ - min_players_per_lineup: Int - organizer_steam_id: Float -} - -""" -order by avg() on columns of table "matches" -""" -input matches_avg_order_by { - organizer_steam_id: order_by -} - -""" -Boolean expression to filter rows from the table "matches". All fields are combined with a logical 'AND'. -""" -input matches_bool_exp { - _and: [matches_bool_exp!] - _not: matches_bool_exp - _or: [matches_bool_exp!] - can_assign_server: Boolean_comparison_exp - can_cancel: Boolean_comparison_exp - can_check_in: Boolean_comparison_exp - can_reassign_winner: Boolean_comparison_exp - can_schedule: Boolean_comparison_exp - can_start: Boolean_comparison_exp - can_stream_live: Boolean_comparison_exp - can_stream_tv: Boolean_comparison_exp - cancels_at: timestamptz_comparison_exp - clutches: v_match_clutches_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 - demos_aggregate: match_map_demos_aggregate_bool_exp - draft_games: draft_games_bool_exp - draft_games_aggregate: draft_games_aggregate_bool_exp - e_match_status: e_match_status_bool_exp - e_region: server_regions_bool_exp - effective_at: timestamptz_comparison_exp - elo_changes: v_player_elo_bool_exp - elo_changes_aggregate: v_player_elo_aggregate_bool_exp - ended_at: timestamptz_comparison_exp - external_id: String_comparison_exp - id: uuid_comparison_exp - invite_code: String_comparison_exp - is_captain: Boolean_comparison_exp - is_coach: Boolean_comparison_exp - is_friend_in_match_lineup: Boolean_comparison_exp - is_in_lineup: Boolean_comparison_exp - is_match_server_available: Boolean_comparison_exp - is_organizer: Boolean_comparison_exp - is_server_online: Boolean_comparison_exp - is_tournament_match: Boolean_comparison_exp - label: String_comparison_exp - lineup_1: match_lineups_bool_exp - lineup_1_id: uuid_comparison_exp - lineup_2: match_lineups_bool_exp - lineup_2_id: uuid_comparison_exp - lineup_counts: json_comparison_exp - map_veto_picking_lineup_id: uuid_comparison_exp - map_veto_picks: match_map_veto_picks_bool_exp - map_veto_picks_aggregate: match_map_veto_picks_aggregate_bool_exp - map_veto_type: String_comparison_exp - match_maps: match_maps_bool_exp - match_maps_aggregate: match_maps_aggregate_bool_exp - match_options_id: uuid_comparison_exp - max_players_per_lineup: Int_comparison_exp - min_players_per_lineup: Int_comparison_exp - opening_duels: v_match_player_opening_duels_bool_exp - opening_duels_aggregate: v_match_player_opening_duels_aggregate_bool_exp - options: match_options_bool_exp - organizer: players_bool_exp - organizer_steam_id: bigint_comparison_exp - password: String_comparison_exp - player_assists: player_assists_bool_exp - player_assists_aggregate: player_assists_aggregate_bool_exp - player_damages: player_damages_bool_exp - player_damages_aggregate: player_damages_aggregate_bool_exp - player_flashes: player_flashes_bool_exp - player_flashes_aggregate: player_flashes_aggregate_bool_exp - player_kills: player_kills_bool_exp - player_kills_aggregate: player_kills_aggregate_bool_exp - player_objectives: player_objectives_bool_exp - player_objectives_aggregate: player_objectives_aggregate_bool_exp - player_unused_utilities: player_unused_utility_bool_exp - player_unused_utilities_aggregate: player_unused_utility_aggregate_bool_exp - player_utility: player_utility_bool_exp - player_utility_aggregate: player_utility_aggregate_bool_exp - region: String_comparison_exp - region_veto_picking_lineup_id: uuid_comparison_exp - region_veto_picks: match_region_veto_picks_bool_exp - region_veto_picks_aggregate: match_region_veto_picks_aggregate_bool_exp - requested_organizer: Boolean_comparison_exp - scheduled_at: timestamptz_comparison_exp - server: servers_bool_exp - server_error: String_comparison_exp - server_id: uuid_comparison_exp - server_plugin_runtime: String_comparison_exp - server_region: String_comparison_exp - server_type: String_comparison_exp - share_code: String_comparison_exp - source: String_comparison_exp - started_at: timestamptz_comparison_exp - status: e_match_status_enum_comparison_exp - streams: match_streams_bool_exp - streams_aggregate: match_streams_aggregate_bool_exp - teams: teams_bool_exp - tournament_brackets: tournament_brackets_bool_exp - tournament_brackets_aggregate: tournament_brackets_aggregate_bool_exp - tv_connection_string: String_comparison_exp - veto_pick_expires_at: timestamptz_comparison_exp - winner: match_lineups_bool_exp - winning_lineup_id: uuid_comparison_exp -} - -""" -unique or primary key constraints on table "matches" -""" -enum matches_constraint { - """ - unique or primary key constraint on columns "lineup_1_id" - """ - matches_lineup_1_id_key - - """ - unique or primary key constraint on columns "lineup_2_id", "lineup_1_id" - """ - matches_lineup_1_id_lineup_2_id_key - - """ - unique or primary key constraint on columns "lineup_2_id" - """ - matches_lineup_2_id_key - - """ - unique or primary key constraint on columns "id" - """ - matches_pkey - - """ - unique or primary key constraint on columns "external_id", "source" - """ - uq_matches_source_external_id -} - -""" -input type for incrementing numeric columns in table "matches" -""" -input matches_inc_input { - organizer_steam_id: bigint -} - -""" -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 - e_match_status: e_match_status_obj_rel_insert_input - e_region: server_regions_obj_rel_insert_input - elo_changes: v_player_elo_arr_rel_insert_input - ended_at: timestamptz - external_id: String - id: uuid - label: String - lineup_1: match_lineups_obj_rel_insert_input - lineup_1_id: uuid - lineup_2: match_lineups_obj_rel_insert_input - lineup_2_id: uuid - map_veto_picks: match_map_veto_picks_arr_rel_insert_input - match_maps: match_maps_arr_rel_insert_input - match_options_id: uuid - opening_duels: v_match_player_opening_duels_arr_rel_insert_input - options: match_options_obj_rel_insert_input - organizer: players_obj_rel_insert_input - organizer_steam_id: bigint - password: String - player_assists: player_assists_arr_rel_insert_input - player_damages: player_damages_arr_rel_insert_input - player_flashes: player_flashes_arr_rel_insert_input - player_kills: player_kills_arr_rel_insert_input - player_objectives: player_objectives_arr_rel_insert_input - player_unused_utilities: player_unused_utility_arr_rel_insert_input - player_utility: player_utility_arr_rel_insert_input - region: String - region_veto_picks: match_region_veto_picks_arr_rel_insert_input - scheduled_at: timestamptz - server: servers_obj_rel_insert_input - server_error: String - server_id: uuid - share_code: String - source: String - started_at: timestamptz - status: e_match_status_enum - streams: match_streams_arr_rel_insert_input - tournament_brackets: tournament_brackets_arr_rel_insert_input - veto_pick_expires_at: timestamptz - winner: match_lineups_obj_rel_insert_input - winning_lineup_id: uuid -} - -"""aggregate max on columns""" -type matches_max_fields { - cancels_at: timestamptz - - """ - A computed field, executes function "get_match_connection_link" - """ - connection_link: String - - """ - A computed field, executes function "get_match_connection_string" - """ - connection_string: String - created_at: timestamptz - - """ - A computed field, executes function "get_current_match_map" - """ - current_match_map_id: uuid - effective_at: timestamptz - ended_at: timestamptz - external_id: String - id: uuid - - """ - A computed field, executes function "match_invite_code" - """ - invite_code: String - label: String - lineup_1_id: uuid - lineup_2_id: uuid - - """ - A computed field, executes function "get_map_veto_picking_lineup_id" - """ - map_veto_picking_lineup_id: uuid - - """ - A computed field, executes function "get_map_veto_type" - """ - map_veto_type: String - match_options_id: uuid - - """ - A computed field, executes function "match_max_players_per_lineup" - """ - max_players_per_lineup: Int - - """ - A computed field, executes function "match_min_players_per_lineup" - """ - min_players_per_lineup: Int - organizer_steam_id: bigint - password: String - region: String - - """ - A computed field, executes function "get_region_veto_picking_lineup_id" - """ - region_veto_picking_lineup_id: uuid - scheduled_at: timestamptz - server_error: String - server_id: uuid - - """ - A computed field, executes function "get_match_server_plugin_runtime" - """ - server_plugin_runtime: String - - """ - A computed field, executes function "get_match_server_region" - """ - server_region: String - - """ - A computed field, executes function "get_match_server_type" - """ - server_type: String - share_code: String - source: String - started_at: timestamptz - - """ - A computed field, executes function "get_match_tv_connection_string" - """ - tv_connection_string: String - veto_pick_expires_at: timestamptz - winning_lineup_id: uuid -} - -""" -order by max() on columns of table "matches" -""" -input matches_max_order_by { - cancels_at: order_by - created_at: order_by - effective_at: order_by - ended_at: order_by - external_id: order_by - id: order_by - label: order_by - lineup_1_id: order_by - lineup_2_id: order_by - match_options_id: order_by - organizer_steam_id: order_by - password: order_by - region: order_by - scheduled_at: order_by - server_error: order_by - server_id: order_by - share_code: order_by - source: order_by - started_at: order_by - veto_pick_expires_at: order_by - winning_lineup_id: order_by -} - -"""aggregate min on columns""" -type matches_min_fields { - cancels_at: timestamptz - - """ - A computed field, executes function "get_match_connection_link" - """ - connection_link: String - - """ - A computed field, executes function "get_match_connection_string" - """ - connection_string: String - created_at: timestamptz - - """ - A computed field, executes function "get_current_match_map" - """ - current_match_map_id: uuid - effective_at: timestamptz - ended_at: timestamptz - external_id: String - id: uuid - - """ - A computed field, executes function "match_invite_code" - """ - invite_code: String - label: String - lineup_1_id: uuid - lineup_2_id: uuid - - """ - A computed field, executes function "get_map_veto_picking_lineup_id" - """ - map_veto_picking_lineup_id: uuid - - """ - A computed field, executes function "get_map_veto_type" - """ - map_veto_type: String - match_options_id: uuid - - """ - A computed field, executes function "match_max_players_per_lineup" - """ - max_players_per_lineup: Int - - """ - A computed field, executes function "match_min_players_per_lineup" - """ - min_players_per_lineup: Int - organizer_steam_id: bigint - password: String - region: String - - """ - A computed field, executes function "get_region_veto_picking_lineup_id" - """ - region_veto_picking_lineup_id: uuid - scheduled_at: timestamptz - server_error: String - server_id: uuid - - """ - A computed field, executes function "get_match_server_plugin_runtime" - """ - server_plugin_runtime: String - - """ - A computed field, executes function "get_match_server_region" - """ - server_region: String - - """ - A computed field, executes function "get_match_server_type" - """ - server_type: String - share_code: String - source: String - started_at: timestamptz - - """ - A computed field, executes function "get_match_tv_connection_string" - """ - tv_connection_string: String - veto_pick_expires_at: timestamptz - winning_lineup_id: uuid -} - -""" -order by min() on columns of table "matches" -""" -input matches_min_order_by { - cancels_at: order_by - created_at: order_by - effective_at: order_by - ended_at: order_by - external_id: order_by - id: order_by - label: order_by - lineup_1_id: order_by - lineup_2_id: order_by - match_options_id: order_by - organizer_steam_id: order_by - password: order_by - region: order_by - scheduled_at: order_by - server_error: order_by - server_id: order_by - share_code: order_by - source: order_by - started_at: order_by - veto_pick_expires_at: order_by - winning_lineup_id: order_by -} - -""" -response of any mutation on the table "matches" -""" -type matches_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [matches!]! -} - -""" -input type for inserting object relation for remote table "matches" -""" -input matches_obj_rel_insert_input { - data: matches_insert_input! - - """upsert condition""" - on_conflict: matches_on_conflict -} - -""" -on_conflict condition type for table "matches" -""" -input matches_on_conflict { - constraint: matches_constraint! - update_columns: [matches_update_column!]! = [] - where: matches_bool_exp -} - -"""Ordering options when selecting data from "matches".""" -input matches_order_by { - can_assign_server: order_by - can_cancel: order_by - can_check_in: order_by - can_reassign_winner: order_by - can_schedule: order_by - can_start: order_by - can_stream_live: order_by - can_stream_tv: order_by - cancels_at: 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 - draft_games_aggregate: draft_games_aggregate_order_by - e_match_status: e_match_status_order_by - e_region: server_regions_order_by - effective_at: order_by - elo_changes_aggregate: v_player_elo_aggregate_order_by - ended_at: order_by - external_id: order_by - id: order_by - invite_code: order_by - is_captain: order_by - is_coach: order_by - is_friend_in_match_lineup: order_by - is_in_lineup: order_by - is_match_server_available: order_by - is_organizer: order_by - is_server_online: order_by - is_tournament_match: order_by - label: order_by - lineup_1: match_lineups_order_by - lineup_1_id: order_by - lineup_2: match_lineups_order_by - lineup_2_id: order_by - lineup_counts: order_by - map_veto_picking_lineup_id: order_by - map_veto_picks_aggregate: match_map_veto_picks_aggregate_order_by - map_veto_type: order_by - match_maps_aggregate: match_maps_aggregate_order_by - match_options_id: order_by - max_players_per_lineup: order_by - min_players_per_lineup: order_by - opening_duels_aggregate: v_match_player_opening_duels_aggregate_order_by - options: match_options_order_by - organizer: players_order_by - organizer_steam_id: order_by - password: order_by - player_assists_aggregate: player_assists_aggregate_order_by - player_damages_aggregate: player_damages_aggregate_order_by - player_flashes_aggregate: player_flashes_aggregate_order_by - player_kills_aggregate: player_kills_aggregate_order_by - player_objectives_aggregate: player_objectives_aggregate_order_by - player_unused_utilities_aggregate: player_unused_utility_aggregate_order_by - player_utility_aggregate: player_utility_aggregate_order_by - region: order_by - region_veto_picking_lineup_id: order_by - region_veto_picks_aggregate: match_region_veto_picks_aggregate_order_by - requested_organizer: order_by - scheduled_at: order_by - server: servers_order_by - server_error: order_by - server_id: order_by - server_plugin_runtime: order_by - server_region: order_by - server_type: order_by - share_code: order_by - source: order_by - started_at: order_by - status: order_by - streams_aggregate: match_streams_aggregate_order_by - teams_aggregate: teams_aggregate_order_by - tournament_brackets_aggregate: tournament_brackets_aggregate_order_by - tv_connection_string: order_by - veto_pick_expires_at: order_by - winner: match_lineups_order_by - winning_lineup_id: order_by -} - -"""primary key columns input for table: matches""" -input matches_pk_columns_input { - id: uuid! -} - -""" -select columns of table "matches" -""" -enum matches_select_column { - """column name""" - cancels_at - - """column name""" - counts_toward_ranking - - """column name""" - created_at - - """column name""" - effective_at - - """column name""" - ended_at - - """column name""" - external_id - - """column name""" - id - - """column name""" - label - - """column name""" - lineup_1_id - - """column name""" - lineup_2_id - - """column name""" - match_options_id - - """column name""" - organizer_steam_id - - """column name""" - password - - """column name""" - region - - """column name""" - scheduled_at - - """column name""" - server_error - - """column name""" - server_id - - """column name""" - share_code - - """column name""" - source - - """column name""" - started_at - - """column name""" - status - - """column name""" - veto_pick_expires_at - - """column name""" - 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 - id: uuid - label: String - lineup_1_id: uuid - lineup_2_id: uuid - match_options_id: uuid - organizer_steam_id: bigint - password: String - region: String - scheduled_at: timestamptz - server_error: String - server_id: uuid - share_code: String - source: String - started_at: timestamptz - status: e_match_status_enum - veto_pick_expires_at: timestamptz - winning_lineup_id: uuid -} - -"""aggregate stddev on columns""" -type matches_stddev_fields { - """ - A computed field, executes function "match_max_players_per_lineup" - """ - max_players_per_lineup: Int - - """ - A computed field, executes function "match_min_players_per_lineup" - """ - min_players_per_lineup: Int - organizer_steam_id: Float -} - -""" -order by stddev() on columns of table "matches" -""" -input matches_stddev_order_by { - organizer_steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type matches_stddev_pop_fields { - """ - A computed field, executes function "match_max_players_per_lineup" - """ - max_players_per_lineup: Int - - """ - A computed field, executes function "match_min_players_per_lineup" - """ - min_players_per_lineup: Int - organizer_steam_id: Float -} - -""" -order by stddev_pop() on columns of table "matches" -""" -input matches_stddev_pop_order_by { - organizer_steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type matches_stddev_samp_fields { - """ - A computed field, executes function "match_max_players_per_lineup" - """ - max_players_per_lineup: Int - - """ - A computed field, executes function "match_min_players_per_lineup" - """ - min_players_per_lineup: Int - organizer_steam_id: Float -} - -""" -order by stddev_samp() on columns of table "matches" -""" -input matches_stddev_samp_order_by { - organizer_steam_id: order_by -} - -""" -Streaming cursor of the table "matches" -""" -input matches_stream_cursor_input { - """Stream column input with initial value""" - initial_value: matches_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""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 - external_id: String - id: uuid - label: String - lineup_1_id: uuid - lineup_2_id: uuid - match_options_id: uuid - organizer_steam_id: bigint - password: String - region: String - scheduled_at: timestamptz - server_error: String - server_id: uuid - share_code: String - source: String - started_at: timestamptz - status: e_match_status_enum - veto_pick_expires_at: timestamptz - winning_lineup_id: uuid -} - -"""aggregate sum on columns""" -type matches_sum_fields { - """ - A computed field, executes function "match_max_players_per_lineup" - """ - max_players_per_lineup: Int - - """ - A computed field, executes function "match_min_players_per_lineup" - """ - min_players_per_lineup: Int - organizer_steam_id: bigint -} - -""" -order by sum() on columns of table "matches" -""" -input matches_sum_order_by { - organizer_steam_id: order_by -} - -""" -update columns of table "matches" -""" -enum matches_update_column { - """column name""" - cancels_at - - """column name""" - counts_toward_ranking - - """column name""" - created_at - - """column name""" - ended_at - - """column name""" - external_id - - """column name""" - id - - """column name""" - label - - """column name""" - lineup_1_id - - """column name""" - lineup_2_id - - """column name""" - match_options_id - - """column name""" - organizer_steam_id - - """column name""" - password - - """column name""" - region - - """column name""" - scheduled_at - - """column name""" - server_error - - """column name""" - server_id - - """column name""" - share_code - - """column name""" - source - - """column name""" - started_at - - """column name""" - status - - """column name""" - veto_pick_expires_at - - """column name""" - winning_lineup_id -} - -input matches_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: matches_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: matches_set_input - - """filter the rows which have to be updated""" - where: matches_bool_exp! -} - -"""aggregate var_pop on columns""" -type matches_var_pop_fields { - """ - A computed field, executes function "match_max_players_per_lineup" - """ - max_players_per_lineup: Int - - """ - A computed field, executes function "match_min_players_per_lineup" - """ - min_players_per_lineup: Int - organizer_steam_id: Float -} - -""" -order by var_pop() on columns of table "matches" -""" -input matches_var_pop_order_by { - organizer_steam_id: order_by -} - -"""aggregate var_samp on columns""" -type matches_var_samp_fields { - """ - A computed field, executes function "match_max_players_per_lineup" - """ - max_players_per_lineup: Int - - """ - A computed field, executes function "match_min_players_per_lineup" - """ - min_players_per_lineup: Int - organizer_steam_id: Float -} - -""" -order by var_samp() on columns of table "matches" -""" -input matches_var_samp_order_by { - organizer_steam_id: order_by -} - -"""aggregate variance on columns""" -type matches_variance_fields { - """ - A computed field, executes function "match_max_players_per_lineup" - """ - max_players_per_lineup: Int - - """ - A computed field, executes function "match_min_players_per_lineup" - """ - min_players_per_lineup: Int - organizer_steam_id: Float -} - -""" -order by variance() on columns of table "matches" -""" -input matches_variance_order_by { - organizer_steam_id: order_by -} - -""" -columns and relationships of "migration_hashes.hashes" -""" -type migration_hashes_hashes { - hash: String! - name: String! -} - -""" -aggregated selection of "migration_hashes.hashes" -""" -type migration_hashes_hashes_aggregate { - aggregate: migration_hashes_hashes_aggregate_fields - nodes: [migration_hashes_hashes!]! -} - -""" -aggregate fields of "migration_hashes.hashes" -""" -type migration_hashes_hashes_aggregate_fields { - count(columns: [migration_hashes_hashes_select_column!], distinct: Boolean): Int! - max: migration_hashes_hashes_max_fields - min: migration_hashes_hashes_min_fields -} - -""" -Boolean expression to filter rows from the table "migration_hashes.hashes". All fields are combined with a logical 'AND'. -""" -input migration_hashes_hashes_bool_exp { - _and: [migration_hashes_hashes_bool_exp!] - _not: migration_hashes_hashes_bool_exp - _or: [migration_hashes_hashes_bool_exp!] - hash: String_comparison_exp - name: String_comparison_exp -} - -""" -unique or primary key constraints on table "migration_hashes.hashes" -""" -enum migration_hashes_hashes_constraint { - """ - unique or primary key constraint on columns "name" - """ - hashes_pkey -} - -""" -input type for inserting data into table "migration_hashes.hashes" -""" -input migration_hashes_hashes_insert_input { - hash: String - name: String -} - -"""aggregate max on columns""" -type migration_hashes_hashes_max_fields { - hash: String - name: String -} - -"""aggregate min on columns""" -type migration_hashes_hashes_min_fields { - hash: String - name: String -} - -""" -response of any mutation on the table "migration_hashes.hashes" -""" -type migration_hashes_hashes_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [migration_hashes_hashes!]! -} - -""" -on_conflict condition type for table "migration_hashes.hashes" -""" -input migration_hashes_hashes_on_conflict { - constraint: migration_hashes_hashes_constraint! - update_columns: [migration_hashes_hashes_update_column!]! = [] - where: migration_hashes_hashes_bool_exp -} - -"""Ordering options when selecting data from "migration_hashes.hashes".""" -input migration_hashes_hashes_order_by { - hash: order_by - name: order_by -} - -"""primary key columns input for table: migration_hashes.hashes""" -input migration_hashes_hashes_pk_columns_input { - name: String! -} - -""" -select columns of table "migration_hashes.hashes" -""" -enum migration_hashes_hashes_select_column { - """column name""" - hash - - """column name""" - name -} - -""" -input type for updating data in table "migration_hashes.hashes" -""" -input migration_hashes_hashes_set_input { - hash: String - name: String -} - -""" -Streaming cursor of the table "migration_hashes_hashes" -""" -input migration_hashes_hashes_stream_cursor_input { - """Stream column input with initial value""" - initial_value: migration_hashes_hashes_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input migration_hashes_hashes_stream_cursor_value_input { - hash: String - name: String -} - -""" -update columns of table "migration_hashes.hashes" -""" -enum migration_hashes_hashes_update_column { - """column name""" - hash - - """column name""" - name -} - -input migration_hashes_hashes_updates { - """sets the columns of the filtered rows to the given values""" - _set: migration_hashes_hashes_set_input - - """filter the rows which have to be updated""" - where: migration_hashes_hashes_bool_exp! -} - -"""mutation root""" -type mutation_root { - PreviewTournamentMatchReset(match_id: uuid!): PreviewTournamentMatchResetOutput! - ResetTournamentMatch(match_id: uuid!, reset_status: String, scheduled_at: timestamptz, winning_lineup_id: uuid): SuccessOutput - - """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 - - """Add a friends-role presence bot account to the pool""" - addSteamPresenceBotAccount(bot_secret: String!, friend_capacity: Int, username: String!): SuccessOutput - approveNameChange(name: String!, steam_id: bigint!): SuccessOutput - - """ - execute VOLATILE function "approve_league_season_movements" which returns "league_team_movements" - """ - approve_league_season_movements( - """ - input parameters for function "approve_league_season_movements" - """ - args: approve_league_season_movements_args! - - """distinct select on columns""" - distinct_on: [league_team_movements_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: [league_team_movements_order_by!] - - """filter the rows returned""" - where: league_team_movements_bool_exp - ): [league_team_movements!]! - - """Assign the presence bot a user should add as a friend""" - assignSteamPresenceBot: SteamPresenceBotAssignment - - """ - Dev-only — attach the demo player to a standing dev game-streamer pod (no Job boot) - """ - attachDemo: WatchDemoOutput - - """ - Rebuild a season's ELO + stats from the matches inside its date range (admin only). Runs in the background; track via backfillSeasonEloStatus. - """ - backfillSeasonElo(season_id: String!): RecomputeEloStartedOutput - - """Return the progress of the season ELO backfill run (admin only).""" - backfillSeasonEloStatus: SeasonBackfillStatusOutput - - """Recover launch seeds from recorded trajectories, one batch per call""" - backfillUtilityLaunchSeeds(limit: Int): UtilityLaunchSeedBackfillOutput - - """Launch a Vulkan shader pre-bake Job on a GPU node""" - bakeShaders(game_server_node_id: uuid!): SuccessOutput - - """callForOrganizer""" - callForOrganizer(match_id: String!): SuccessOutput - - """ - Request cancellation of the in-progress season ELO backfill (admin only). Stops after the current match. - """ - cancelBackfillSeasonElo: SuccessOutput - - """ - Cancel an in-progress or stuck Vulkan shader pre-bake Job on a GPU node - """ - cancelBakeShaders(game_server_node_id: uuid!): SuccessOutput - - """Cancel an in-flight clip render and tear down the K8s job""" - cancelClipRender(job_id: uuid!): SuccessOutput - - """Cancel an entire match_map's render queue + tear down the pod.""" - cancelClipRenderBatch(match_map_id: uuid!): SuccessOutput - - """cancelMatch""" - cancelMatch(match_id: uuid!): SuccessOutput - - """ - Request cancellation of the in-progress ELO recompute (admin only). Stops after the current match. - """ - cancelRecomputePlayerElo: SuccessOutput - - """ - Request cancellation of the in-progress player reindex (admin only). Stops after the current player. - """ - cancelRefreshAllPlayers: SuccessOutput - - """ - Request cancellation of the in-progress reparse-all-demos run (admin only). Stops after the current demo finishes. - """ - cancelReparseAllDemos: SuccessOutput - - """cancelScrimRequest""" - cancelScrimRequest(request_id: uuid!): SuccessOutput - - """Cancel an in-flight lineup preview render""" - cancelUtilityLineupRender(render_id: uuid!): SuccessOutput - changeUtilityPracticeMap(lineup_id: uuid, lineup_ids: [uuid!], map_name: String!, scratch: UtilityScratchLineupInput, session_id: uuid!): UtilityPracticeMapChangeOutput - - """checkIntoMatch""" - checkIntoMatch(match_id: uuid!): SuccessOutput - - """Confirm a check-in, enforcing the tournament's check_in_setting""" - checkIntoTournament(tournament_id: uuid!, tournament_team_id: uuid): SuccessOutput - - """ - Delete terminal-state clip_render_jobs rows for a single match_map batch. - """ - clearClipRenderBatch(match_map_id: uuid!): SuccessOutput - - """Delete all terminal-state clip_render_jobs rows platform-wide.""" - clearFinishedClipRenders: SuccessOutput - - """Drop every finished row from the lineup preview queue""" - clearFinishedUtilityLineupRenders: UtilityRenderClearOutput - clearPendingMatchImport(valve_match_id: String!): PendingMatchImportActionOutput - - """ - execute VOLATILE function "clone_league_season" which returns "league_seasons" - """ - clone_league_season( - """ - input parameters for function "clone_league_season" - """ - args: clone_league_season_args! - - """distinct select on columns""" - distinct_on: [league_seasons_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: [league_seasons_order_by!] - - """filter the rows returned""" - where: league_seasons_bool_exp - ): [league_seasons!]! - - """Organizer proceeds without the teams that missed check-in""" - continueTournamentCheckIn(tournament_id: uuid!): SuccessOutput - - """counterScrimRequest""" - counterScrimRequest(proposed_scheduled_at: timestamptz!, request_id: uuid!): SuccessOutput - createApiKey(label: String!): ApiKeyResponse - - """ - Build a multi-segment ClipSpec from a player+preset and dispatch render - """ - createClipFromPreset(fps: Int, match_map_id: uuid!, preset: String!, resolution: String, target_name: String, target_steam_id: String!, title: String): CreateClipRenderOutput - - """ - Spawn a clip-render pod that produces an mp4 from a demo and uploads it - """ - createClipRender(spec: ClipSpecInput!): CreateClipRenderOutput - createClips(match_id: uuid!): SuccessOutput - - """createDraftGame""" - createDraftGame(settings: jsonb!): CreateDraftGameOutput - - """createScheduledMatch""" - createScheduledMatch(lineup_1: ScheduledLineupInput!, lineup_2: ScheduledLineupInput!, options: jsonb!, scheduled_at: String!): CreateScheduledMatchOutput - - """Create directory on game server""" - createServerDirectory(dir_path: String!, node_id: String!, server_id: String): SuccessOutput - - """Organizer mints an expiring, use capped invite link for a tournament""" - createTournamentInviteCode(expires_in_minutes: Int, max_uses: Int, tournament_id: uuid!): TournamentInviteCodeOutput - - """Delete a catalog award""" - deleteAward(id: uuid!): SuccessOutput - - """Delete a saved clip and its underlying S3 object""" - deleteClip(clip_id: uuid!): SuccessOutput - deleteMatch(match_id: String!): SuccessOutput - - """ - Delete a news post. Caller role is verified against public.post_news_role. - """ - deleteNewsPost(id: uuid!): SuccessOutput - - """ - Delete orphaned S3 objects found by the last scan (admin only). Each key is re-verified against the database before removal. - """ - deleteOrphanedDemos(keys: [String!]): DeleteOrphansOutput - - """Delete file or directory on game server""" - deleteServerItem(node_id: String!, path: String!, server_id: String): SuccessOutput - - """Delete a tournament and clean up demo files""" - deleteTournament(tournament_id: uuid!): SuccessOutput - - """Delete a render and its preview clip""" - deleteUtilityLineupRender(render_id: uuid!): SuccessOutput - - """Delete a utility playbook""" - deleteUtilityPlaybook(playbook_id: uuid!): SuccessOutput - - """ - delete data from the table: "_map_pool" - """ - delete__map_pool( - """filter the rows which have to be deleted""" - where: _map_pool_bool_exp! - ): _map_pool_mutation_response - - """ - delete single row from the table: "_map_pool" - """ - delete__map_pool_by_pk(map_id: uuid!, map_pool_id: uuid!): _map_pool - - """ - delete data from the table: "abandoned_matches" - """ - delete_abandoned_matches( - """filter the rows which have to be deleted""" - where: abandoned_matches_bool_exp! - ): abandoned_matches_mutation_response - - """ - delete single row from the table: "abandoned_matches" - """ - delete_abandoned_matches_by_pk(id: uuid!): abandoned_matches - - """ - delete data from the table: "api_keys" - """ - delete_api_keys( - """filter the rows which have to be deleted""" - where: api_keys_bool_exp! - ): api_keys_mutation_response - - """ - delete single row from the table: "api_keys" - """ - delete_api_keys_by_pk(id: uuid!): api_keys - - """ - delete data from the table: "award_recipients" - """ - delete_award_recipients( - """filter the rows which have to be deleted""" - where: award_recipients_bool_exp! - ): award_recipients_mutation_response - - """ - delete single row from the table: "award_recipients" - """ - delete_award_recipients_by_pk(id: uuid!): award_recipients - - """ - delete data from the table: "awards" - """ - delete_awards( - """filter the rows which have to be deleted""" - where: awards_bool_exp! - ): awards_mutation_response - - """ - delete single row from the table: "awards" - """ - delete_awards_by_pk(id: uuid!): awards - - """ - delete data from the table: "chat_read_state" - """ - delete_chat_read_state( - """filter the rows which have to be deleted""" - where: chat_read_state_bool_exp! - ): chat_read_state_mutation_response - - """ - delete single row from the table: "chat_read_state" - """ - delete_chat_read_state_by_pk(steam_id: bigint!, thread: String!): chat_read_state - - """ - delete data from the table: "clip_render_jobs" - """ - delete_clip_render_jobs( - """filter the rows which have to be deleted""" - where: clip_render_jobs_bool_exp! - ): clip_render_jobs_mutation_response - - """ - delete single row from the table: "clip_render_jobs" - """ - delete_clip_render_jobs_by_pk(id: uuid!): clip_render_jobs - - """ - delete data from the table: "custom_pages" - """ - delete_custom_pages( - """filter the rows which have to be deleted""" - where: custom_pages_bool_exp! - ): custom_pages_mutation_response - - """ - delete single row from the table: "custom_pages" - """ - delete_custom_pages_by_pk(id: uuid!): custom_pages - - """ - delete data from the table: "db_backups" - """ - delete_db_backups( - """filter the rows which have to be deleted""" - where: db_backups_bool_exp! - ): db_backups_mutation_response - - """ - delete single row from the table: "db_backups" - """ - delete_db_backups_by_pk(id: uuid!): db_backups - - """ - delete data from the table: "direct_conversations" - """ - delete_direct_conversations( - """filter the rows which have to be deleted""" - where: direct_conversations_bool_exp! - ): direct_conversations_mutation_response - - """ - delete single row from the table: "direct_conversations" - """ - delete_direct_conversations_by_pk(room_id: String!, steam_id: bigint!): direct_conversations - - """ - delete data from the table: "direct_messages" - """ - delete_direct_messages( - """filter the rows which have to be deleted""" - where: direct_messages_bool_exp! - ): direct_messages_mutation_response - - """ - delete single row from the table: "direct_messages" - """ - delete_direct_messages_by_pk(id: uuid!): direct_messages - - """ - delete data from the table: "draft_game_picks" - """ - delete_draft_game_picks( - """filter the rows which have to be deleted""" - where: draft_game_picks_bool_exp! - ): draft_game_picks_mutation_response - - """ - delete single row from the table: "draft_game_picks" - """ - delete_draft_game_picks_by_pk(id: uuid!): draft_game_picks - - """ - delete data from the table: "draft_game_players" - """ - delete_draft_game_players( - """filter the rows which have to be deleted""" - where: draft_game_players_bool_exp! - ): draft_game_players_mutation_response - - """ - delete single row from the table: "draft_game_players" - """ - delete_draft_game_players_by_pk(draft_game_id: uuid!, steam_id: bigint!): draft_game_players - - """ - delete data from the table: "draft_games" - """ - delete_draft_games( - """filter the rows which have to be deleted""" - where: draft_games_bool_exp! - ): draft_games_mutation_response - - """ - delete single row from the table: "draft_games" - """ - delete_draft_games_by_pk(id: uuid!): draft_games - - """ - delete data from the table: "e_award_sources" - """ - delete_e_award_sources( - """filter the rows which have to be deleted""" - where: e_award_sources_bool_exp! - ): e_award_sources_mutation_response - - """ - delete single row from the table: "e_award_sources" - """ - delete_e_award_sources_by_pk(value: String!): e_award_sources - - """ - delete data from the table: "e_award_tiers" - """ - delete_e_award_tiers( - """filter the rows which have to be deleted""" - where: e_award_tiers_bool_exp! - ): e_award_tiers_mutation_response - - """ - delete single row from the table: "e_award_tiers" - """ - delete_e_award_tiers_by_pk(value: String!): e_award_tiers - - """ - delete data from the table: "e_check_in_settings" - """ - delete_e_check_in_settings( - """filter the rows which have to be deleted""" - where: e_check_in_settings_bool_exp! - ): e_check_in_settings_mutation_response - - """ - delete single row from the table: "e_check_in_settings" - """ - delete_e_check_in_settings_by_pk(value: String!): e_check_in_settings - - """ - delete data from the table: "e_draft_game_captain_selection" - """ - delete_e_draft_game_captain_selection( - """filter the rows which have to be deleted""" - where: e_draft_game_captain_selection_bool_exp! - ): e_draft_game_captain_selection_mutation_response - - """ - delete single row from the table: "e_draft_game_captain_selection" - """ - delete_e_draft_game_captain_selection_by_pk(value: String!): e_draft_game_captain_selection - - """ - delete data from the table: "e_draft_game_draft_order" - """ - delete_e_draft_game_draft_order( - """filter the rows which have to be deleted""" - where: e_draft_game_draft_order_bool_exp! - ): e_draft_game_draft_order_mutation_response - - """ - delete single row from the table: "e_draft_game_draft_order" - """ - delete_e_draft_game_draft_order_by_pk(value: String!): e_draft_game_draft_order - - """ - delete data from the table: "e_draft_game_mode" - """ - delete_e_draft_game_mode( - """filter the rows which have to be deleted""" - where: e_draft_game_mode_bool_exp! - ): e_draft_game_mode_mutation_response - - """ - delete single row from the table: "e_draft_game_mode" - """ - delete_e_draft_game_mode_by_pk(value: String!): e_draft_game_mode - - """ - delete data from the table: "e_draft_game_player_status" - """ - delete_e_draft_game_player_status( - """filter the rows which have to be deleted""" - where: e_draft_game_player_status_bool_exp! - ): e_draft_game_player_status_mutation_response - - """ - delete single row from the table: "e_draft_game_player_status" - """ - delete_e_draft_game_player_status_by_pk(value: String!): e_draft_game_player_status - - """ - delete data from the table: "e_draft_game_status" - """ - delete_e_draft_game_status( - """filter the rows which have to be deleted""" - where: e_draft_game_status_bool_exp! - ): e_draft_game_status_mutation_response - - """ - delete single row from the table: "e_draft_game_status" - """ - delete_e_draft_game_status_by_pk(value: String!): e_draft_game_status - - """ - delete data from the table: "e_event_media_access" - """ - delete_e_event_media_access( - """filter the rows which have to be deleted""" - where: e_event_media_access_bool_exp! - ): e_event_media_access_mutation_response - - """ - delete single row from the table: "e_event_media_access" - """ - delete_e_event_media_access_by_pk(value: String!): e_event_media_access - - """ - delete data from the table: "e_event_visibility" - """ - delete_e_event_visibility( - """filter the rows which have to be deleted""" - where: e_event_visibility_bool_exp! - ): e_event_visibility_mutation_response - - """ - delete single row from the table: "e_event_visibility" - """ - delete_e_event_visibility_by_pk(value: String!): e_event_visibility - - """ - delete data from the table: "e_friend_status" - """ - delete_e_friend_status( - """filter the rows which have to be deleted""" - where: e_friend_status_bool_exp! - ): e_friend_status_mutation_response - - """ - delete single row from the table: "e_friend_status" - """ - delete_e_friend_status_by_pk(value: String!): e_friend_status - - """ - delete data from the table: "e_game_cfg_types" - """ - delete_e_game_cfg_types( - """filter the rows which have to be deleted""" - where: e_game_cfg_types_bool_exp! - ): e_game_cfg_types_mutation_response - - """ - delete single row from the table: "e_game_cfg_types" - """ - 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" - """ - delete_e_game_server_node_statuses( - """filter the rows which have to be deleted""" - where: e_game_server_node_statuses_bool_exp! - ): e_game_server_node_statuses_mutation_response - - """ - delete single row from the table: "e_game_server_node_statuses" - """ - delete_e_game_server_node_statuses_by_pk(value: String!): e_game_server_node_statuses - - """ - delete data from the table: "e_league_movement_types" - """ - delete_e_league_movement_types( - """filter the rows which have to be deleted""" - where: e_league_movement_types_bool_exp! - ): e_league_movement_types_mutation_response - - """ - delete single row from the table: "e_league_movement_types" - """ - delete_e_league_movement_types_by_pk(value: String!): e_league_movement_types - - """ - delete data from the table: "e_league_proposal_statuses" - """ - delete_e_league_proposal_statuses( - """filter the rows which have to be deleted""" - where: e_league_proposal_statuses_bool_exp! - ): e_league_proposal_statuses_mutation_response - - """ - delete single row from the table: "e_league_proposal_statuses" - """ - delete_e_league_proposal_statuses_by_pk(value: String!): e_league_proposal_statuses - - """ - delete data from the table: "e_league_registration_statuses" - """ - delete_e_league_registration_statuses( - """filter the rows which have to be deleted""" - where: e_league_registration_statuses_bool_exp! - ): e_league_registration_statuses_mutation_response - - """ - delete single row from the table: "e_league_registration_statuses" - """ - delete_e_league_registration_statuses_by_pk(value: String!): e_league_registration_statuses - - """ - delete data from the table: "e_league_season_statuses" - """ - delete_e_league_season_statuses( - """filter the rows which have to be deleted""" - where: e_league_season_statuses_bool_exp! - ): e_league_season_statuses_mutation_response - - """ - delete single row from the table: "e_league_season_statuses" - """ - delete_e_league_season_statuses_by_pk(value: String!): e_league_season_statuses - - """ - delete data from the table: "e_lobby_access" - """ - delete_e_lobby_access( - """filter the rows which have to be deleted""" - where: e_lobby_access_bool_exp! - ): e_lobby_access_mutation_response - - """ - delete single row from the table: "e_lobby_access" - """ - delete_e_lobby_access_by_pk(value: String!): e_lobby_access - - """ - delete data from the table: "e_lobby_player_status" - """ - delete_e_lobby_player_status( - """filter the rows which have to be deleted""" - where: e_lobby_player_status_bool_exp! - ): e_lobby_player_status_mutation_response - - """ - delete single row from the table: "e_lobby_player_status" - """ - delete_e_lobby_player_status_by_pk(value: String!): e_lobby_player_status - - """ - delete data from the table: "e_map_pool_types" - """ - delete_e_map_pool_types( - """filter the rows which have to be deleted""" - where: e_map_pool_types_bool_exp! - ): e_map_pool_types_mutation_response - - """ - delete single row from the table: "e_map_pool_types" - """ - delete_e_map_pool_types_by_pk(value: String!): e_map_pool_types - - """ - delete data from the table: "e_match_clip_visibility" - """ - delete_e_match_clip_visibility( - """filter the rows which have to be deleted""" - where: e_match_clip_visibility_bool_exp! - ): e_match_clip_visibility_mutation_response - - """ - delete single row from the table: "e_match_clip_visibility" - """ - delete_e_match_clip_visibility_by_pk(value: String!): e_match_clip_visibility - - """ - delete data from the table: "e_match_map_status" - """ - delete_e_match_map_status( - """filter the rows which have to be deleted""" - where: e_match_map_status_bool_exp! - ): e_match_map_status_mutation_response - - """ - delete single row from the table: "e_match_map_status" - """ - delete_e_match_map_status_by_pk(value: String!): e_match_map_status - - """ - delete data from the table: "e_match_mode" - """ - delete_e_match_mode( - """filter the rows which have to be deleted""" - where: e_match_mode_bool_exp! - ): e_match_mode_mutation_response - - """ - delete single row from the table: "e_match_mode" - """ - delete_e_match_mode_by_pk(value: String!): e_match_mode - - """ - delete data from the table: "e_match_party_sources" - """ - delete_e_match_party_sources( - """filter the rows which have to be deleted""" - where: e_match_party_sources_bool_exp! - ): e_match_party_sources_mutation_response - - """ - delete single row from the table: "e_match_party_sources" - """ - delete_e_match_party_sources_by_pk(value: String!): e_match_party_sources - - """ - delete data from the table: "e_match_status" - """ - delete_e_match_status( - """filter the rows which have to be deleted""" - where: e_match_status_bool_exp! - ): e_match_status_mutation_response - - """ - delete single row from the table: "e_match_status" - """ - delete_e_match_status_by_pk(value: String!): e_match_status - - """ - delete data from the table: "e_match_types" - """ - delete_e_match_types( - """filter the rows which have to be deleted""" - where: e_match_types_bool_exp! - ): e_match_types_mutation_response - - """ - delete single row from the table: "e_match_types" - """ - delete_e_match_types_by_pk(value: String!): e_match_types - - """ - delete data from the table: "e_notification_types" - """ - delete_e_notification_types( - """filter the rows which have to be deleted""" - where: e_notification_types_bool_exp! - ): e_notification_types_mutation_response - - """ - delete single row from the table: "e_notification_types" - """ - delete_e_notification_types_by_pk(value: String!): e_notification_types - - """ - delete data from the table: "e_objective_types" - """ - delete_e_objective_types( - """filter the rows which have to be deleted""" - where: e_objective_types_bool_exp! - ): e_objective_types_mutation_response - - """ - delete single row from the table: "e_objective_types" - """ - delete_e_objective_types_by_pk(value: String!): e_objective_types - - """ - delete data from the table: "e_player_roles" - """ - delete_e_player_roles( - """filter the rows which have to be deleted""" - where: e_player_roles_bool_exp! - ): e_player_roles_mutation_response - - """ - delete single row from the table: "e_player_roles" - """ - delete_e_player_roles_by_pk(value: String!): e_player_roles - - """ - delete data from the table: "e_plugin_runtimes" - """ - delete_e_plugin_runtimes( - """filter the rows which have to be deleted""" - where: e_plugin_runtimes_bool_exp! - ): e_plugin_runtimes_mutation_response - - """ - delete single row from the table: "e_plugin_runtimes" - """ - delete_e_plugin_runtimes_by_pk(value: String!): e_plugin_runtimes - - """ - delete data from the table: "e_ready_settings" - """ - delete_e_ready_settings( - """filter the rows which have to be deleted""" - where: e_ready_settings_bool_exp! - ): e_ready_settings_mutation_response - - """ - delete single row from the table: "e_ready_settings" - """ - delete_e_ready_settings_by_pk(value: String!): e_ready_settings - - """ - delete data from the table: "e_sanction_scopes" - """ - delete_e_sanction_scopes( - """filter the rows which have to be deleted""" - where: e_sanction_scopes_bool_exp! - ): e_sanction_scopes_mutation_response - - """ - delete single row from the table: "e_sanction_scopes" - """ - delete_e_sanction_scopes_by_pk(value: String!): e_sanction_scopes - - """ - delete data from the table: "e_sanction_sources" - """ - delete_e_sanction_sources( - """filter the rows which have to be deleted""" - where: e_sanction_sources_bool_exp! - ): e_sanction_sources_mutation_response - - """ - delete single row from the table: "e_sanction_sources" - """ - delete_e_sanction_sources_by_pk(value: String!): e_sanction_sources - - """ - delete data from the table: "e_sanction_types" - """ - delete_e_sanction_types( - """filter the rows which have to be deleted""" - where: e_sanction_types_bool_exp! - ): e_sanction_types_mutation_response - - """ - delete single row from the table: "e_sanction_types" - """ - delete_e_sanction_types_by_pk(value: String!): e_sanction_types - - """ - delete data from the table: "e_scrim_request_statuses" - """ - delete_e_scrim_request_statuses( - """filter the rows which have to be deleted""" - where: e_scrim_request_statuses_bool_exp! - ): e_scrim_request_statuses_mutation_response - - """ - delete single row from the table: "e_scrim_request_statuses" - """ - delete_e_scrim_request_statuses_by_pk(value: String!): e_scrim_request_statuses - - """ - delete data from the table: "e_server_types" - """ - delete_e_server_types( - """filter the rows which have to be deleted""" - where: e_server_types_bool_exp! - ): e_server_types_mutation_response - - """ - delete single row from the table: "e_server_types" - """ - delete_e_server_types_by_pk(value: String!): e_server_types - - """ - delete data from the table: "e_sides" - """ - delete_e_sides( - """filter the rows which have to be deleted""" - where: e_sides_bool_exp! - ): e_sides_mutation_response - - """ - delete single row from the table: "e_sides" - """ - delete_e_sides_by_pk(value: String!): e_sides - - """ - delete data from the table: "e_system_alert_types" - """ - delete_e_system_alert_types( - """filter the rows which have to be deleted""" - where: e_system_alert_types_bool_exp! - ): e_system_alert_types_mutation_response - - """ - delete single row from the table: "e_system_alert_types" - """ - delete_e_system_alert_types_by_pk(value: String!): e_system_alert_types - - """ - delete data from the table: "e_team_roles" - """ - delete_e_team_roles( - """filter the rows which have to be deleted""" - where: e_team_roles_bool_exp! - ): e_team_roles_mutation_response - - """ - delete single row from the table: "e_team_roles" - """ - delete_e_team_roles_by_pk(value: String!): e_team_roles - - """ - delete data from the table: "e_team_roster_statuses" - """ - delete_e_team_roster_statuses( - """filter the rows which have to be deleted""" - where: e_team_roster_statuses_bool_exp! - ): e_team_roster_statuses_mutation_response - - """ - delete single row from the table: "e_team_roster_statuses" - """ - delete_e_team_roster_statuses_by_pk(value: String!): e_team_roster_statuses - - """ - delete data from the table: "e_timeout_settings" - """ - delete_e_timeout_settings( - """filter the rows which have to be deleted""" - where: e_timeout_settings_bool_exp! - ): e_timeout_settings_mutation_response - - """ - delete single row from the table: "e_timeout_settings" - """ - delete_e_timeout_settings_by_pk(value: String!): e_timeout_settings - - """ - delete data from the table: "e_tournament_categories" - """ - delete_e_tournament_categories( - """filter the rows which have to be deleted""" - where: e_tournament_categories_bool_exp! - ): e_tournament_categories_mutation_response - - """ - delete single row from the table: "e_tournament_categories" - """ - delete_e_tournament_categories_by_pk(value: String!): e_tournament_categories - - """ - delete data from the table: "e_tournament_free_agent_statuses" - """ - delete_e_tournament_free_agent_statuses( - """filter the rows which have to be deleted""" - where: e_tournament_free_agent_statuses_bool_exp! - ): e_tournament_free_agent_statuses_mutation_response - - """ - delete single row from the table: "e_tournament_free_agent_statuses" - """ - delete_e_tournament_free_agent_statuses_by_pk(value: String!): e_tournament_free_agent_statuses - - """ - delete data from the table: "e_tournament_registration_types" - """ - delete_e_tournament_registration_types( - """filter the rows which have to be deleted""" - where: e_tournament_registration_types_bool_exp! - ): e_tournament_registration_types_mutation_response - - """ - delete single row from the table: "e_tournament_registration_types" - """ - delete_e_tournament_registration_types_by_pk(value: String!): e_tournament_registration_types - - """ - delete data from the table: "e_tournament_stage_types" - """ - delete_e_tournament_stage_types( - """filter the rows which have to be deleted""" - where: e_tournament_stage_types_bool_exp! - ): e_tournament_stage_types_mutation_response - - """ - delete single row from the table: "e_tournament_stage_types" - """ - delete_e_tournament_stage_types_by_pk(value: String!): e_tournament_stage_types - - """ - delete data from the table: "e_tournament_status" - """ - delete_e_tournament_status( - """filter the rows which have to be deleted""" - where: e_tournament_status_bool_exp! - ): e_tournament_status_mutation_response - - """ - delete single row from the table: "e_tournament_status" - """ - delete_e_tournament_status_by_pk(value: String!): e_tournament_status - - """ - delete data from the table: "e_utility_practice_access" - """ - delete_e_utility_practice_access( - """filter the rows which have to be deleted""" - where: e_utility_practice_access_bool_exp! - ): e_utility_practice_access_mutation_response - - """ - delete single row from the table: "e_utility_practice_access" - """ - delete_e_utility_practice_access_by_pk(value: String!): e_utility_practice_access - - """ - delete data from the table: "e_utility_practice_statuses" - """ - delete_e_utility_practice_statuses( - """filter the rows which have to be deleted""" - where: e_utility_practice_statuses_bool_exp! - ): e_utility_practice_statuses_mutation_response - - """ - delete single row from the table: "e_utility_practice_statuses" - """ - delete_e_utility_practice_statuses_by_pk(value: String!): e_utility_practice_statuses - - """ - delete data from the table: "e_utility_sources" - """ - delete_e_utility_sources( - """filter the rows which have to be deleted""" - where: e_utility_sources_bool_exp! - ): e_utility_sources_mutation_response - - """ - delete single row from the table: "e_utility_sources" - """ - delete_e_utility_sources_by_pk(value: String!): e_utility_sources - - """ - delete data from the table: "e_utility_techniques" - """ - delete_e_utility_techniques( - """filter the rows which have to be deleted""" - where: e_utility_techniques_bool_exp! - ): e_utility_techniques_mutation_response - - """ - delete single row from the table: "e_utility_techniques" - """ - delete_e_utility_techniques_by_pk(value: String!): e_utility_techniques - - """ - delete data from the table: "e_utility_throw_strengths" - """ - delete_e_utility_throw_strengths( - """filter the rows which have to be deleted""" - where: e_utility_throw_strengths_bool_exp! - ): e_utility_throw_strengths_mutation_response - - """ - delete single row from the table: "e_utility_throw_strengths" - """ - delete_e_utility_throw_strengths_by_pk(value: String!): e_utility_throw_strengths - - """ - delete data from the table: "e_utility_types" - """ - delete_e_utility_types( - """filter the rows which have to be deleted""" - where: e_utility_types_bool_exp! - ): e_utility_types_mutation_response - - """ - delete single row from the table: "e_utility_types" - """ - delete_e_utility_types_by_pk(value: String!): e_utility_types - - """ - delete data from the table: "e_utility_visibility" - """ - delete_e_utility_visibility( - """filter the rows which have to be deleted""" - where: e_utility_visibility_bool_exp! - ): e_utility_visibility_mutation_response - - """ - delete single row from the table: "e_utility_visibility" - """ - delete_e_utility_visibility_by_pk(value: String!): e_utility_visibility - - """ - delete data from the table: "e_veto_pick_types" - """ - delete_e_veto_pick_types( - """filter the rows which have to be deleted""" - where: e_veto_pick_types_bool_exp! - ): e_veto_pick_types_mutation_response - - """ - delete single row from the table: "e_veto_pick_types" - """ - delete_e_veto_pick_types_by_pk(value: String!): e_veto_pick_types - - """ - delete data from the table: "e_winning_reasons" - """ - delete_e_winning_reasons( - """filter the rows which have to be deleted""" - where: e_winning_reasons_bool_exp! - ): e_winning_reasons_mutation_response - - """ - delete single row from the table: "e_winning_reasons" - """ - delete_e_winning_reasons_by_pk(value: String!): e_winning_reasons - - """ - delete data from the table: "event_match_links" - """ - delete_event_match_links( - """filter the rows which have to be deleted""" - where: event_match_links_bool_exp! - ): event_match_links_mutation_response - - """ - delete single row from the table: "event_match_links" - """ - delete_event_match_links_by_pk(event_id: uuid!, match_id: uuid!): event_match_links - - """ - delete data from the table: "event_media" - """ - delete_event_media( - """filter the rows which have to be deleted""" - where: event_media_bool_exp! - ): event_media_mutation_response - - """ - delete single row from the table: "event_media" - """ - delete_event_media_by_pk(id: uuid!): event_media - - """ - delete data from the table: "event_media_players" - """ - delete_event_media_players( - """filter the rows which have to be deleted""" - where: event_media_players_bool_exp! - ): event_media_players_mutation_response - - """ - delete single row from the table: "event_media_players" - """ - delete_event_media_players_by_pk(media_id: uuid!, steam_id: bigint!): event_media_players - - """ - delete data from the table: "event_organizers" - """ - delete_event_organizers( - """filter the rows which have to be deleted""" - where: event_organizers_bool_exp! - ): event_organizers_mutation_response - - """ - delete single row from the table: "event_organizers" - """ - delete_event_organizers_by_pk(event_id: uuid!, steam_id: bigint!): event_organizers - - """ - delete data from the table: "event_players" - """ - delete_event_players( - """filter the rows which have to be deleted""" - where: event_players_bool_exp! - ): event_players_mutation_response - - """ - delete single row from the table: "event_players" - """ - delete_event_players_by_pk(event_id: uuid!, steam_id: bigint!): event_players - - """ - delete data from the table: "event_teams" - """ - delete_event_teams( - """filter the rows which have to be deleted""" - where: event_teams_bool_exp! - ): event_teams_mutation_response - - """ - delete single row from the table: "event_teams" - """ - delete_event_teams_by_pk(event_id: uuid!, team_id: uuid!): event_teams - - """ - delete data from the table: "event_tournaments" - """ - delete_event_tournaments( - """filter the rows which have to be deleted""" - where: event_tournaments_bool_exp! - ): event_tournaments_mutation_response - - """ - delete single row from the table: "event_tournaments" - """ - delete_event_tournaments_by_pk(event_id: uuid!, tournament_id: uuid!): event_tournaments - - """ - delete data from the table: "events" - """ - delete_events( - """filter the rows which have to be deleted""" - where: events_bool_exp! - ): events_mutation_response - - """ - delete single row from the table: "events" - """ - delete_events_by_pk(id: uuid!): events - - """ - delete data from the table: "friends" - """ - delete_friends( - """filter the rows which have to be deleted""" - where: friends_bool_exp! - ): friends_mutation_response - - """ - delete single row from the table: "friends" - """ - 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" - """ - delete_game_server_nodes( - """filter the rows which have to be deleted""" - where: game_server_nodes_bool_exp! - ): game_server_nodes_mutation_response - - """ - delete single row from the table: "game_server_nodes" - """ - delete_game_server_nodes_by_pk(id: String!): game_server_nodes - - """ - delete data from the table: "game_versions" - """ - delete_game_versions( - """filter the rows which have to be deleted""" - where: game_versions_bool_exp! - ): game_versions_mutation_response - - """ - delete single row from the table: "game_versions" - """ - delete_game_versions_by_pk(build_id: Int!): game_versions - - """ - delete data from the table: "gamedata_signature_validations" - """ - delete_gamedata_signature_validations( - """filter the rows which have to be deleted""" - where: gamedata_signature_validations_bool_exp! - ): gamedata_signature_validations_mutation_response - - """ - delete single row from the table: "gamedata_signature_validations" - """ - delete_gamedata_signature_validations_by_pk(id: uuid!): gamedata_signature_validations - - """ - delete data from the table: "leaderboard_entries" - """ - delete_leaderboard_entries( - """filter the rows which have to be deleted""" - where: leaderboard_entries_bool_exp! - ): leaderboard_entries_mutation_response - - """ - delete data from the table: "league_divisions" - """ - delete_league_divisions( - """filter the rows which have to be deleted""" - where: league_divisions_bool_exp! - ): league_divisions_mutation_response - - """ - delete single row from the table: "league_divisions" - """ - delete_league_divisions_by_pk(id: uuid!): league_divisions - - """ - delete data from the table: "league_match_weeks" - """ - delete_league_match_weeks( - """filter the rows which have to be deleted""" - where: league_match_weeks_bool_exp! - ): league_match_weeks_mutation_response - - """ - delete single row from the table: "league_match_weeks" - """ - delete_league_match_weeks_by_pk(id: uuid!): league_match_weeks - - """ - delete data from the table: "league_relegation_playoffs" - """ - delete_league_relegation_playoffs( - """filter the rows which have to be deleted""" - where: league_relegation_playoffs_bool_exp! - ): league_relegation_playoffs_mutation_response - - """ - delete single row from the table: "league_relegation_playoffs" - """ - delete_league_relegation_playoffs_by_pk(id: uuid!): league_relegation_playoffs - - """ - delete data from the table: "league_scheduling_proposals" - """ - delete_league_scheduling_proposals( - """filter the rows which have to be deleted""" - where: league_scheduling_proposals_bool_exp! - ): league_scheduling_proposals_mutation_response - - """ - delete single row from the table: "league_scheduling_proposals" - """ - delete_league_scheduling_proposals_by_pk(id: uuid!): league_scheduling_proposals - - """ - delete data from the table: "league_season_divisions" - """ - delete_league_season_divisions( - """filter the rows which have to be deleted""" - where: league_season_divisions_bool_exp! - ): league_season_divisions_mutation_response - - """ - delete single row from the table: "league_season_divisions" - """ - delete_league_season_divisions_by_pk(id: uuid!): league_season_divisions - - """ - delete data from the table: "league_seasons" - """ - delete_league_seasons( - """filter the rows which have to be deleted""" - where: league_seasons_bool_exp! - ): league_seasons_mutation_response - - """ - delete single row from the table: "league_seasons" - """ - delete_league_seasons_by_pk(id: uuid!): league_seasons - - """ - delete data from the table: "league_team_movements" - """ - delete_league_team_movements( - """filter the rows which have to be deleted""" - where: league_team_movements_bool_exp! - ): league_team_movements_mutation_response - - """ - delete single row from the table: "league_team_movements" - """ - delete_league_team_movements_by_pk(id: uuid!): league_team_movements - - """ - delete data from the table: "league_team_rosters" - """ - delete_league_team_rosters( - """filter the rows which have to be deleted""" - where: league_team_rosters_bool_exp! - ): league_team_rosters_mutation_response - - """ - delete single row from the table: "league_team_rosters" - """ - delete_league_team_rosters_by_pk(league_team_season_id: uuid!, player_steam_id: bigint!): league_team_rosters - - """ - delete data from the table: "league_team_seasons" - """ - delete_league_team_seasons( - """filter the rows which have to be deleted""" - where: league_team_seasons_bool_exp! - ): league_team_seasons_mutation_response - - """ - delete single row from the table: "league_team_seasons" - """ - delete_league_team_seasons_by_pk(id: uuid!): league_team_seasons - - """ - delete data from the table: "league_teams" - """ - delete_league_teams( - """filter the rows which have to be deleted""" - where: league_teams_bool_exp! - ): league_teams_mutation_response - - """ - delete single row from the table: "league_teams" - """ - delete_league_teams_by_pk(id: uuid!): league_teams - - """ - delete data from the table: "lobbies" - """ - delete_lobbies( - """filter the rows which have to be deleted""" - where: lobbies_bool_exp! - ): lobbies_mutation_response - - """ - delete single row from the table: "lobbies" - """ - delete_lobbies_by_pk(id: uuid!): lobbies - - """ - delete data from the table: "lobby_players" - """ - delete_lobby_players( - """filter the rows which have to be deleted""" - where: lobby_players_bool_exp! - ): lobby_players_mutation_response - - """ - delete single row from the table: "lobby_players" - """ - delete_lobby_players_by_pk(lobby_id: uuid!, steam_id: bigint!): lobby_players - - """ - delete data from the table: "map_callouts" - """ - delete_map_callouts( - """filter the rows which have to be deleted""" - where: map_callouts_bool_exp! - ): map_callouts_mutation_response - - """ - delete single row from the table: "map_callouts" - """ - delete_map_callouts_by_pk(map_name: String!, name: String!): map_callouts - - """ - delete data from the table: "map_pools" - """ - delete_map_pools( - """filter the rows which have to be deleted""" - where: map_pools_bool_exp! - ): map_pools_mutation_response - - """ - delete single row from the table: "map_pools" - """ - delete_map_pools_by_pk(id: uuid!): map_pools - - """ - delete data from the table: "maps" - """ - delete_maps( - """filter the rows which have to be deleted""" - where: maps_bool_exp! - ): maps_mutation_response - - """ - delete single row from the table: "maps" - """ - delete_maps_by_pk(id: uuid!): maps - - """ - delete data from the table: "match_clips" - """ - delete_match_clips( - """filter the rows which have to be deleted""" - where: match_clips_bool_exp! - ): match_clips_mutation_response - - """ - delete single row from the table: "match_clips" - """ - delete_match_clips_by_pk(id: uuid!): match_clips - - """ - delete data from the table: "match_demo_sessions" - """ - delete_match_demo_sessions( - """filter the rows which have to be deleted""" - where: match_demo_sessions_bool_exp! - ): match_demo_sessions_mutation_response - - """ - delete single row from the table: "match_demo_sessions" - """ - delete_match_demo_sessions_by_pk(id: uuid!): match_demo_sessions - - """ - delete data from the table: "match_lineup_players" - """ - delete_match_lineup_players( - """filter the rows which have to be deleted""" - where: match_lineup_players_bool_exp! - ): match_lineup_players_mutation_response - - """ - delete single row from the table: "match_lineup_players" - """ - delete_match_lineup_players_by_pk(id: uuid!): match_lineup_players - - """ - delete data from the table: "match_lineups" - """ - delete_match_lineups( - """filter the rows which have to be deleted""" - where: match_lineups_bool_exp! - ): match_lineups_mutation_response - - """ - delete single row from the table: "match_lineups" - """ - delete_match_lineups_by_pk(id: uuid!): match_lineups - - """ - delete data from the table: "match_map_demos" - """ - delete_match_map_demos( - """filter the rows which have to be deleted""" - where: match_map_demos_bool_exp! - ): match_map_demos_mutation_response - - """ - delete single row from the table: "match_map_demos" - """ - delete_match_map_demos_by_pk(id: uuid!): match_map_demos - - """ - delete data from the table: "match_map_rounds" - """ - delete_match_map_rounds( - """filter the rows which have to be deleted""" - where: match_map_rounds_bool_exp! - ): match_map_rounds_mutation_response - - """ - delete single row from the table: "match_map_rounds" - """ - delete_match_map_rounds_by_pk(id: uuid!): match_map_rounds - - """ - delete data from the table: "match_map_veto_picks" - """ - delete_match_map_veto_picks( - """filter the rows which have to be deleted""" - where: match_map_veto_picks_bool_exp! - ): match_map_veto_picks_mutation_response - - """ - delete single row from the table: "match_map_veto_picks" - """ - delete_match_map_veto_picks_by_pk(id: uuid!): match_map_veto_picks - - """ - delete data from the table: "match_maps" - """ - delete_match_maps( - """filter the rows which have to be deleted""" - where: match_maps_bool_exp! - ): match_maps_mutation_response - - """ - delete single row from the table: "match_maps" - """ - delete_match_maps_by_pk(id: uuid!): match_maps - - """ - delete data from the table: "match_options" - """ - delete_match_options( - """filter the rows which have to be deleted""" - where: match_options_bool_exp! - ): match_options_mutation_response - - """ - delete single row from the table: "match_options" - """ - delete_match_options_by_pk(id: uuid!): match_options - - """ - delete data from the table: "match_region_veto_picks" - """ - delete_match_region_veto_picks( - """filter the rows which have to be deleted""" - where: match_region_veto_picks_bool_exp! - ): match_region_veto_picks_mutation_response - - """ - delete single row from the table: "match_region_veto_picks" - """ - delete_match_region_veto_picks_by_pk(id: uuid!): match_region_veto_picks - - """ - delete data from the table: "match_streams" - """ - delete_match_streams( - """filter the rows which have to be deleted""" - where: match_streams_bool_exp! - ): match_streams_mutation_response - - """ - delete single row from the table: "match_streams" - """ - delete_match_streams_by_pk(id: uuid!): match_streams - - """ - delete data from the table: "match_type_cfgs" - """ - delete_match_type_cfgs( - """filter the rows which have to be deleted""" - where: match_type_cfgs_bool_exp! - ): match_type_cfgs_mutation_response - - """ - delete single row from the table: "match_type_cfgs" - """ - delete_match_type_cfgs_by_pk(type: e_game_cfg_types_enum!): match_type_cfgs - - """ - delete data from the table: "matches" - """ - delete_matches( - """filter the rows which have to be deleted""" - where: matches_bool_exp! - ): matches_mutation_response - - """ - delete single row from the table: "matches" - """ - delete_matches_by_pk(id: uuid!): matches - - """ - delete data from the table: "migration_hashes.hashes" - """ - delete_migration_hashes_hashes( - """filter the rows which have to be deleted""" - where: migration_hashes_hashes_bool_exp! - ): migration_hashes_hashes_mutation_response - - """ - delete single row from the table: "migration_hashes.hashes" - """ - delete_migration_hashes_hashes_by_pk(name: String!): migration_hashes_hashes - - """ - delete data from the table: "v_my_friends" - """ - delete_my_friends( - """filter the rows which have to be deleted""" - where: my_friends_bool_exp! - ): my_friends_mutation_response - - """ - delete data from the table: "news_articles" - """ - delete_news_articles( - """filter the rows which have to be deleted""" - where: news_articles_bool_exp! - ): news_articles_mutation_response - - """ - delete single row from the table: "news_articles" - """ - delete_news_articles_by_pk(id: uuid!): news_articles - - """ - delete data from the table: "notification_preferences" - """ - delete_notification_preferences( - """filter the rows which have to be deleted""" - where: notification_preferences_bool_exp! - ): notification_preferences_mutation_response - - """ - delete single row from the table: "notification_preferences" - """ - delete_notification_preferences_by_pk(channel: String!, key: String!, steam_id: bigint!): notification_preferences - - """ - delete data from the table: "notifications" - """ - delete_notifications( - """filter the rows which have to be deleted""" - where: notifications_bool_exp! - ): notifications_mutation_response - - """ - delete single row from the table: "notifications" - """ - delete_notifications_by_pk(id: uuid!): notifications - - """ - delete data from the table: "pending_match_import_players" - """ - delete_pending_match_import_players( - """filter the rows which have to be deleted""" - where: pending_match_import_players_bool_exp! - ): pending_match_import_players_mutation_response - - """ - delete single row from the table: "pending_match_import_players" - """ - delete_pending_match_import_players_by_pk(steam_id: bigint!, valve_match_id: numeric!): pending_match_import_players - - """ - delete data from the table: "pending_match_imports" - """ - delete_pending_match_imports( - """filter the rows which have to be deleted""" - where: pending_match_imports_bool_exp! - ): pending_match_imports_mutation_response - - """ - delete single row from the table: "pending_match_imports" - """ - delete_pending_match_imports_by_pk(valve_match_id: numeric!): pending_match_imports - - """ - delete data from the table: "player_aim_stats_demo" - """ - delete_player_aim_stats_demo( - """filter the rows which have to be deleted""" - where: player_aim_stats_demo_bool_exp! - ): player_aim_stats_demo_mutation_response - - """ - delete single row from the table: "player_aim_stats_demo" - """ - delete_player_aim_stats_demo_by_pk(attacker_steam_id: bigint!, match_map_id: uuid!): player_aim_stats_demo - - """ - delete data from the table: "player_aim_weapon_stats" - """ - delete_player_aim_weapon_stats( - """filter the rows which have to be deleted""" - where: player_aim_weapon_stats_bool_exp! - ): player_aim_weapon_stats_mutation_response - - """ - delete single row from the table: "player_aim_weapon_stats" - """ - delete_player_aim_weapon_stats_by_pk(match_map_id: uuid!, steam_id: bigint!, weapon_class: String!): player_aim_weapon_stats - - """ - delete data from the table: "player_assists" - """ - delete_player_assists( - """filter the rows which have to be deleted""" - where: player_assists_bool_exp! - ): player_assists_mutation_response - - """ - delete single row from the table: "player_assists" - """ - delete_player_assists_by_pk(attacked_steam_id: bigint!, attacker_steam_id: bigint!, match_map_id: uuid!, time: timestamptz!): player_assists - - """ - delete data from the table: "player_damages" - """ - delete_player_damages( - """filter the rows which have to be deleted""" - where: player_damages_bool_exp! - ): player_damages_mutation_response - - """ - delete single row from the table: "player_damages" - """ - delete_player_damages_by_pk(id: uuid!, match_map_id: uuid!, time: timestamptz!): player_damages - - """ - delete data from the table: "player_elo" - """ - delete_player_elo( - """filter the rows which have to be deleted""" - where: player_elo_bool_exp! - ): player_elo_mutation_response - - """ - delete single row from the table: "player_elo" - """ - delete_player_elo_by_pk(match_id: uuid!, steam_id: bigint!, type: e_match_types_enum!): player_elo - - """ - delete data from the table: "player_faceit_rank_history" - """ - delete_player_faceit_rank_history( - """filter the rows which have to be deleted""" - where: player_faceit_rank_history_bool_exp! - ): player_faceit_rank_history_mutation_response - - """ - delete single row from the table: "player_faceit_rank_history" - """ - delete_player_faceit_rank_history_by_pk(id: uuid!): player_faceit_rank_history - - """ - delete data from the table: "player_flashes" - """ - delete_player_flashes( - """filter the rows which have to be deleted""" - where: player_flashes_bool_exp! - ): player_flashes_mutation_response - - """ - delete single row from the table: "player_flashes" - """ - delete_player_flashes_by_pk(attacked_steam_id: bigint!, attacker_steam_id: bigint!, match_map_id: uuid!, time: timestamptz!): player_flashes - - """ - delete data from the table: "player_kills" - """ - delete_player_kills( - """filter the rows which have to be deleted""" - where: player_kills_bool_exp! - ): player_kills_mutation_response - - """ - delete single row from the table: "player_kills" - """ - delete_player_kills_by_pk(attacked_steam_id: bigint!, attacker_steam_id: bigint!, match_map_id: uuid!, time: timestamptz!): player_kills - - """ - delete data from the table: "player_kills_by_weapon" - """ - delete_player_kills_by_weapon( - """filter the rows which have to be deleted""" - where: player_kills_by_weapon_bool_exp! - ): player_kills_by_weapon_mutation_response - - """ - delete single row from the table: "player_kills_by_weapon" - """ - delete_player_kills_by_weapon_by_pk(player_steam_id: bigint!, with: String!): player_kills_by_weapon - - """ - delete data from the table: "player_leaderboard_rank" - """ - delete_player_leaderboard_rank( - """filter the rows which have to be deleted""" - where: player_leaderboard_rank_bool_exp! - ): player_leaderboard_rank_mutation_response - - """ - delete data from the table: "player_match_map_stats" - """ - delete_player_match_map_stats( - """filter the rows which have to be deleted""" - where: player_match_map_stats_bool_exp! - ): player_match_map_stats_mutation_response - - """ - delete single row from the table: "player_match_map_stats" - """ - delete_player_match_map_stats_by_pk(match_map_id: uuid!, steam_id: bigint!): player_match_map_stats - - """ - delete data from the table: "player_objectives" - """ - delete_player_objectives( - """filter the rows which have to be deleted""" - where: player_objectives_bool_exp! - ): player_objectives_mutation_response - - """ - delete single row from the table: "player_objectives" - """ - delete_player_objectives_by_pk(match_map_id: uuid!, player_steam_id: bigint!, time: timestamptz!): player_objectives - - """ - delete data from the table: "player_premier_rank_history" - """ - delete_player_premier_rank_history( - """filter the rows which have to be deleted""" - where: player_premier_rank_history_bool_exp! - ): player_premier_rank_history_mutation_response - - """ - delete single row from the table: "player_premier_rank_history" - """ - delete_player_premier_rank_history_by_pk(id: uuid!): player_premier_rank_history - - """ - delete data from the table: "player_sanctions" - """ - delete_player_sanctions( - """filter the rows which have to be deleted""" - where: player_sanctions_bool_exp! - ): player_sanctions_mutation_response - - """ - delete single row from the table: "player_sanctions" - """ - delete_player_sanctions_by_pk(created_at: timestamptz!, id: uuid!): player_sanctions - - """ - delete data from the table: "player_season_stats" - """ - delete_player_season_stats( - """filter the rows which have to be deleted""" - where: player_season_stats_bool_exp! - ): player_season_stats_mutation_response - - """ - delete single row from the table: "player_season_stats" - """ - delete_player_season_stats_by_pk(player_steam_id: bigint!, season_id: uuid!): player_season_stats - - """ - delete data from the table: "player_stats" - """ - delete_player_stats( - """filter the rows which have to be deleted""" - where: player_stats_bool_exp! - ): player_stats_mutation_response - - """ - delete single row from the table: "player_stats" - """ - delete_player_stats_by_pk(player_steam_id: bigint!): player_stats - - """ - delete data from the table: "player_steam_bot_friend" - """ - delete_player_steam_bot_friend( - """filter the rows which have to be deleted""" - where: player_steam_bot_friend_bool_exp! - ): player_steam_bot_friend_mutation_response - - """ - delete single row from the table: "player_steam_bot_friend" - """ - delete_player_steam_bot_friend_by_pk(steam_id: bigint!): player_steam_bot_friend - - """ - delete data from the table: "player_steam_match_auth" - """ - delete_player_steam_match_auth( - """filter the rows which have to be deleted""" - where: player_steam_match_auth_bool_exp! - ): player_steam_match_auth_mutation_response - - """ - delete single row from the table: "player_steam_match_auth" - """ - delete_player_steam_match_auth_by_pk(steam_id: bigint!): player_steam_match_auth - - """ - delete data from the table: "player_unused_utility" - """ - delete_player_unused_utility( - """filter the rows which have to be deleted""" - where: player_unused_utility_bool_exp! - ): player_unused_utility_mutation_response - - """ - delete single row from the table: "player_unused_utility" - """ - delete_player_unused_utility_by_pk(match_map_id: uuid!, player_steam_id: bigint!): player_unused_utility - - """ - delete data from the table: "player_utility" - """ - delete_player_utility( - """filter the rows which have to be deleted""" - where: player_utility_bool_exp! - ): player_utility_mutation_response - - """ - delete single row from the table: "player_utility" - """ - delete_player_utility_by_pk(attacker_steam_id: bigint!, match_map_id: uuid!, time: timestamptz!): player_utility - - """ - delete data from the table: "players" - """ - delete_players( - """filter the rows which have to be deleted""" - where: players_bool_exp! - ): players_mutation_response - - """ - delete single row from the table: "players" - """ - delete_players_by_pk(steam_id: bigint!): players - - """ - delete data from the table: "plugin_versions" - """ - delete_plugin_versions( - """filter the rows which have to be deleted""" - where: plugin_versions_bool_exp! - ): plugin_versions_mutation_response - - """ - delete single row from the table: "plugin_versions" - """ - delete_plugin_versions_by_pk(runtime: e_plugin_runtimes_enum!, version: String!): plugin_versions - - """ - delete data from the table: "push_subscriptions" - """ - delete_push_subscriptions( - """filter the rows which have to be deleted""" - where: push_subscriptions_bool_exp! - ): push_subscriptions_mutation_response - - """ - delete single row from the table: "push_subscriptions" - """ - delete_push_subscriptions_by_pk(id: uuid!): push_subscriptions - - """ - delete data from the table: "v_role_permissions" - """ - delete_role_permissions( - """filter the rows which have to be deleted""" - where: role_permissions_bool_exp! - ): role_permissions_mutation_response - - """ - delete data from the table: "seasons" - """ - delete_seasons( - """filter the rows which have to be deleted""" - where: seasons_bool_exp! - ): seasons_mutation_response - - """ - delete single row from the table: "seasons" - """ - delete_seasons_by_pk(id: uuid!): seasons - - """ - delete data from the table: "server_regions" - """ - delete_server_regions( - """filter the rows which have to be deleted""" - where: server_regions_bool_exp! - ): server_regions_mutation_response - - """ - delete single row from the table: "server_regions" - """ - delete_server_regions_by_pk(value: String!): server_regions - - """ - delete data from the table: "servers" - """ - delete_servers( - """filter the rows which have to be deleted""" - where: servers_bool_exp! - ): servers_mutation_response - - """ - delete single row from the table: "servers" - """ - delete_servers_by_pk(id: uuid!): servers - - """ - delete data from the table: "settings" - """ - delete_settings( - """filter the rows which have to be deleted""" - where: settings_bool_exp! - ): settings_mutation_response - - """ - delete single row from the table: "settings" - """ - delete_settings_by_pk(name: String!): settings - - """ - delete data from the table: "steam_account_claims" - """ - delete_steam_account_claims( - """filter the rows which have to be deleted""" - where: steam_account_claims_bool_exp! - ): steam_account_claims_mutation_response - - """ - delete single row from the table: "steam_account_claims" - """ - delete_steam_account_claims_by_pk(id: uuid!): steam_account_claims - - """ - delete data from the table: "steam_accounts" - """ - delete_steam_accounts( - """filter the rows which have to be deleted""" - where: steam_accounts_bool_exp! - ): steam_accounts_mutation_response - - """ - delete single row from the table: "steam_accounts" - """ - delete_steam_accounts_by_pk(id: uuid!): steam_accounts - - """ - delete data from the table: "system_alerts" - """ - delete_system_alerts( - """filter the rows which have to be deleted""" - where: system_alerts_bool_exp! - ): system_alerts_mutation_response - - """ - delete single row from the table: "system_alerts" - """ - delete_system_alerts_by_pk(id: uuid!): system_alerts - - """ - delete data from the table: "team_invites" - """ - delete_team_invites( - """filter the rows which have to be deleted""" - where: team_invites_bool_exp! - ): team_invites_mutation_response - - """ - delete single row from the table: "team_invites" - """ - delete_team_invites_by_pk(id: uuid!): team_invites - - """ - delete data from the table: "team_roster" - """ - delete_team_roster( - """filter the rows which have to be deleted""" - where: team_roster_bool_exp! - ): team_roster_mutation_response - - """ - delete single row from the table: "team_roster" - """ - delete_team_roster_by_pk(player_steam_id: bigint!, team_id: uuid!): team_roster - - """ - delete data from the table: "team_scrim_alerts" - """ - delete_team_scrim_alerts( - """filter the rows which have to be deleted""" - where: team_scrim_alerts_bool_exp! - ): team_scrim_alerts_mutation_response - - """ - delete single row from the table: "team_scrim_alerts" - """ - delete_team_scrim_alerts_by_pk(id: uuid!): team_scrim_alerts - - """ - delete data from the table: "team_scrim_availability" - """ - delete_team_scrim_availability( - """filter the rows which have to be deleted""" - where: team_scrim_availability_bool_exp! - ): team_scrim_availability_mutation_response - - """ - delete single row from the table: "team_scrim_availability" - """ - delete_team_scrim_availability_by_pk(id: uuid!): team_scrim_availability - - """ - delete data from the table: "team_scrim_request_proposals" - """ - delete_team_scrim_request_proposals( - """filter the rows which have to be deleted""" - where: team_scrim_request_proposals_bool_exp! - ): team_scrim_request_proposals_mutation_response - - """ - delete single row from the table: "team_scrim_request_proposals" - """ - delete_team_scrim_request_proposals_by_pk(id: uuid!): team_scrim_request_proposals - - """ - delete data from the table: "team_scrim_requests" - """ - delete_team_scrim_requests( - """filter the rows which have to be deleted""" - where: team_scrim_requests_bool_exp! - ): team_scrim_requests_mutation_response - - """ - delete single row from the table: "team_scrim_requests" - """ - delete_team_scrim_requests_by_pk(id: uuid!): team_scrim_requests - - """ - delete data from the table: "team_scrim_settings" - """ - delete_team_scrim_settings( - """filter the rows which have to be deleted""" - where: team_scrim_settings_bool_exp! - ): team_scrim_settings_mutation_response - - """ - delete single row from the table: "team_scrim_settings" - """ - delete_team_scrim_settings_by_pk(id: uuid!): team_scrim_settings - - """ - delete data from the table: "team_suggestions" - """ - delete_team_suggestions( - """filter the rows which have to be deleted""" - where: team_suggestions_bool_exp! - ): team_suggestions_mutation_response - - """ - delete single row from the table: "team_suggestions" - """ - delete_team_suggestions_by_pk(id: uuid!): team_suggestions - - """ - delete data from the table: "teams" - """ - delete_teams( - """filter the rows which have to be deleted""" - where: teams_bool_exp! - ): teams_mutation_response - - """ - delete single row from the table: "teams" - """ - delete_teams_by_pk(id: uuid!): teams - - """ - delete data from the table: "tournament_awards" - """ - delete_tournament_awards( - """filter the rows which have to be deleted""" - where: tournament_awards_bool_exp! - ): tournament_awards_mutation_response - - """ - delete single row from the table: "tournament_awards" - """ - delete_tournament_awards_by_pk(id: uuid!): tournament_awards - - """ - delete data from the table: "tournament_brackets" - """ - delete_tournament_brackets( - """filter the rows which have to be deleted""" - where: tournament_brackets_bool_exp! - ): tournament_brackets_mutation_response - - """ - delete single row from the table: "tournament_brackets" - """ - delete_tournament_brackets_by_pk(id: uuid!): tournament_brackets - - """ - delete data from the table: "tournament_categories" - """ - delete_tournament_categories( - """filter the rows which have to be deleted""" - where: tournament_categories_bool_exp! - ): tournament_categories_mutation_response - - """ - delete single row from the table: "tournament_categories" - """ - delete_tournament_categories_by_pk(category: e_tournament_categories_enum!, tournament_id: uuid!): tournament_categories - - """ - delete data from the table: "tournament_free_agents" - """ - delete_tournament_free_agents( - """filter the rows which have to be deleted""" - where: tournament_free_agents_bool_exp! - ): tournament_free_agents_mutation_response - - """ - delete single row from the table: "tournament_free_agents" - """ - delete_tournament_free_agents_by_pk(id: uuid!): tournament_free_agents - - """ - delete data from the table: "tournament_invite_code_uses" - """ - delete_tournament_invite_code_uses( - """filter the rows which have to be deleted""" - where: tournament_invite_code_uses_bool_exp! - ): tournament_invite_code_uses_mutation_response - - """ - delete single row from the table: "tournament_invite_code_uses" - """ - delete_tournament_invite_code_uses_by_pk(invite_code_id: uuid!, player_steam_id: bigint!): tournament_invite_code_uses - - """ - delete data from the table: "tournament_invite_codes" - """ - delete_tournament_invite_codes( - """filter the rows which have to be deleted""" - where: tournament_invite_codes_bool_exp! - ): tournament_invite_codes_mutation_response - - """ - delete single row from the table: "tournament_invite_codes" - """ - delete_tournament_invite_codes_by_pk(id: uuid!): tournament_invite_codes - - """ - delete data from the table: "tournament_invites" - """ - delete_tournament_invites( - """filter the rows which have to be deleted""" - where: tournament_invites_bool_exp! - ): tournament_invites_mutation_response - - """ - delete single row from the table: "tournament_invites" - """ - delete_tournament_invites_by_pk(id: uuid!): tournament_invites - - """ - delete data from the table: "tournament_leaderboard_entries" - """ - delete_tournament_leaderboard_entries( - """filter the rows which have to be deleted""" - where: tournament_leaderboard_entries_bool_exp! - ): tournament_leaderboard_entries_mutation_response - - """ - delete data from the table: "tournament_no_shows" - """ - delete_tournament_no_shows( - """filter the rows which have to be deleted""" - where: tournament_no_shows_bool_exp! - ): tournament_no_shows_mutation_response - - """ - delete single row from the table: "tournament_no_shows" - """ - delete_tournament_no_shows_by_pk(id: uuid!): tournament_no_shows - - """ - delete data from the table: "tournament_organizer_teams" - """ - delete_tournament_organizer_teams( - """filter the rows which have to be deleted""" - where: tournament_organizer_teams_bool_exp! - ): tournament_organizer_teams_mutation_response - - """ - delete single row from the table: "tournament_organizer_teams" - """ - delete_tournament_organizer_teams_by_pk(team_id: uuid!, tournament_id: uuid!): tournament_organizer_teams - - """ - delete data from the table: "tournament_organizers" - """ - delete_tournament_organizers( - """filter the rows which have to be deleted""" - where: tournament_organizers_bool_exp! - ): tournament_organizers_mutation_response - - """ - delete single row from the table: "tournament_organizers" - """ - delete_tournament_organizers_by_pk(steam_id: bigint!, tournament_id: uuid!): tournament_organizers - - """ - delete data from the table: "tournament_prizes" - """ - delete_tournament_prizes( - """filter the rows which have to be deleted""" - where: tournament_prizes_bool_exp! - ): tournament_prizes_mutation_response - - """ - delete single row from the table: "tournament_prizes" - """ - delete_tournament_prizes_by_pk(id: uuid!): tournament_prizes - - """ - delete data from the table: "tournament_registration_unlocks" - """ - delete_tournament_registration_unlocks( - """filter the rows which have to be deleted""" - where: tournament_registration_unlocks_bool_exp! - ): tournament_registration_unlocks_mutation_response - - """ - delete data from the table: "tournament_stage_windows" - """ - delete_tournament_stage_windows( - """filter the rows which have to be deleted""" - where: tournament_stage_windows_bool_exp! - ): tournament_stage_windows_mutation_response - - """ - delete single row from the table: "tournament_stage_windows" - """ - delete_tournament_stage_windows_by_pk(id: uuid!): tournament_stage_windows - - """ - delete data from the table: "tournament_stages" - """ - delete_tournament_stages( - """filter the rows which have to be deleted""" - where: tournament_stages_bool_exp! - ): tournament_stages_mutation_response - - """ - delete single row from the table: "tournament_stages" - """ - delete_tournament_stages_by_pk(id: uuid!): tournament_stages - - """ - delete data from the table: "tournament_team_invites" - """ - delete_tournament_team_invites( - """filter the rows which have to be deleted""" - where: tournament_team_invites_bool_exp! - ): tournament_team_invites_mutation_response - - """ - delete single row from the table: "tournament_team_invites" - """ - delete_tournament_team_invites_by_pk(id: uuid!): tournament_team_invites - - """ - delete data from the table: "tournament_team_roster" - """ - delete_tournament_team_roster( - """filter the rows which have to be deleted""" - where: tournament_team_roster_bool_exp! - ): tournament_team_roster_mutation_response - - """ - delete single row from the table: "tournament_team_roster" - """ - delete_tournament_team_roster_by_pk(player_steam_id: bigint!, tournament_id: uuid!): tournament_team_roster - - """ - delete data from the table: "tournament_teams" - """ - delete_tournament_teams( - """filter the rows which have to be deleted""" - where: tournament_teams_bool_exp! - ): tournament_teams_mutation_response - - """ - delete single row from the table: "tournament_teams" - """ - delete_tournament_teams_by_pk(id: uuid!): tournament_teams - - """ - delete data from the table: "tournaments" - """ - delete_tournaments( - """filter the rows which have to be deleted""" - where: tournaments_bool_exp! - ): tournaments_mutation_response - - """ - delete single row from the table: "tournaments" - """ - delete_tournaments_by_pk(id: uuid!): tournaments - - """ - delete data from the table: "utility_collection_items" - """ - delete_utility_collection_items( - """filter the rows which have to be deleted""" - where: utility_collection_items_bool_exp! - ): utility_collection_items_mutation_response - - """ - delete single row from the table: "utility_collection_items" - """ - delete_utility_collection_items_by_pk(collection_id: uuid!, utility_lineup_id: uuid!): utility_collection_items - - """ - delete data from the table: "utility_collections" - """ - delete_utility_collections( - """filter the rows which have to be deleted""" - where: utility_collections_bool_exp! - ): utility_collections_mutation_response - - """ - delete single row from the table: "utility_collections" - """ - delete_utility_collections_by_pk(id: uuid!): utility_collections - - """ - delete data from the table: "utility_demo_mines" - """ - delete_utility_demo_mines( - """filter the rows which have to be deleted""" - where: utility_demo_mines_bool_exp! - ): utility_demo_mines_mutation_response - - """ - delete single row from the table: "utility_demo_mines" - """ - delete_utility_demo_mines_by_pk(match_map_demo_id: uuid!): utility_demo_mines - - """ - delete data from the table: "utility_demo_throws" - """ - delete_utility_demo_throws( - """filter the rows which have to be deleted""" - where: utility_demo_throws_bool_exp! - ): utility_demo_throws_mutation_response - - """ - delete single row from the table: "utility_demo_throws" - """ - delete_utility_demo_throws_by_pk(grenade_id: Int!, match_map_demo_id: uuid!): utility_demo_throws - - """ - delete data from the table: "utility_drift_results" - """ - delete_utility_drift_results( - """filter the rows which have to be deleted""" - where: utility_drift_results_bool_exp! - ): utility_drift_results_mutation_response - - """ - delete single row from the table: "utility_drift_results" - """ - delete_utility_drift_results_by_pk(utility_drift_scan_id: uuid!, utility_lineup_id: uuid!): utility_drift_results - - """ - delete data from the table: "utility_drift_scans" - """ - delete_utility_drift_scans( - """filter the rows which have to be deleted""" - where: utility_drift_scans_bool_exp! - ): utility_drift_scans_mutation_response - - """ - delete single row from the table: "utility_drift_scans" - """ - delete_utility_drift_scans_by_pk(id: uuid!): utility_drift_scans - - """ - delete data from the table: "utility_lineup_favorites" - """ - delete_utility_lineup_favorites( - """filter the rows which have to be deleted""" - where: utility_lineup_favorites_bool_exp! - ): utility_lineup_favorites_mutation_response - - """ - delete single row from the table: "utility_lineup_favorites" - """ - delete_utility_lineup_favorites_by_pk(steam_id: bigint!, utility_lineup_id: uuid!): utility_lineup_favorites - - """ - delete data from the table: "utility_lineup_progress" - """ - delete_utility_lineup_progress( - """filter the rows which have to be deleted""" - where: utility_lineup_progress_bool_exp! - ): utility_lineup_progress_mutation_response - - """ - delete single row from the table: "utility_lineup_progress" - """ - delete_utility_lineup_progress_by_pk(steam_id: bigint!, utility_lineup_id: uuid!): utility_lineup_progress - - """ - delete data from the table: "utility_lineup_renders" - """ - delete_utility_lineup_renders( - """filter the rows which have to be deleted""" - where: utility_lineup_renders_bool_exp! - ): utility_lineup_renders_mutation_response - - """ - delete single row from the table: "utility_lineup_renders" - """ - delete_utility_lineup_renders_by_pk(id: uuid!): utility_lineup_renders - - """ - delete data from the table: "utility_lineup_repairs" - """ - delete_utility_lineup_repairs( - """filter the rows which have to be deleted""" - where: utility_lineup_repairs_bool_exp! - ): utility_lineup_repairs_mutation_response - - """ - delete single row from the table: "utility_lineup_repairs" - """ - delete_utility_lineup_repairs_by_pk(id: uuid!): utility_lineup_repairs - - """ - delete data from the table: "utility_lineup_votes" - """ - delete_utility_lineup_votes( - """filter the rows which have to be deleted""" - where: utility_lineup_votes_bool_exp! - ): utility_lineup_votes_mutation_response - - """ - delete single row from the table: "utility_lineup_votes" - """ - delete_utility_lineup_votes_by_pk(steam_id: bigint!, utility_lineup_id: uuid!): utility_lineup_votes - - """ - delete data from the table: "utility_lineups" - """ - delete_utility_lineups( - """filter the rows which have to be deleted""" - where: utility_lineups_bool_exp! - ): utility_lineups_mutation_response - - """ - delete single row from the table: "utility_lineups" - """ - delete_utility_lineups_by_pk(id: uuid!): utility_lineups - - """ - delete data from the table: "utility_meta_lineups" - """ - delete_utility_meta_lineups( - """filter the rows which have to be deleted""" - where: utility_meta_lineups_bool_exp! - ): utility_meta_lineups_mutation_response - - """ - delete single row from the table: "utility_meta_lineups" - """ - delete_utility_meta_lineups_by_pk(lineup_bucket: String!): utility_meta_lineups - - """ - delete data from the table: "utility_playbook_steps" - """ - delete_utility_playbook_steps( - """filter the rows which have to be deleted""" - where: utility_playbook_steps_bool_exp! - ): utility_playbook_steps_mutation_response - - """ - delete single row from the table: "utility_playbook_steps" - """ - delete_utility_playbook_steps_by_pk(id: uuid!): utility_playbook_steps - - """ - delete data from the table: "utility_playbooks" - """ - delete_utility_playbooks( - """filter the rows which have to be deleted""" - where: utility_playbooks_bool_exp! - ): utility_playbooks_mutation_response - - """ - delete single row from the table: "utility_playbooks" - """ - delete_utility_playbooks_by_pk(id: uuid!): utility_playbooks - - """ - delete data from the table: "utility_practice_invites" - """ - delete_utility_practice_invites( - """filter the rows which have to be deleted""" - where: utility_practice_invites_bool_exp! - ): utility_practice_invites_mutation_response - - """ - delete single row from the table: "utility_practice_invites" - """ - delete_utility_practice_invites_by_pk(steam_id: bigint!, utility_practice_session_id: uuid!): utility_practice_invites - - """ - delete data from the table: "utility_practice_sessions" - """ - delete_utility_practice_sessions( - """filter the rows which have to be deleted""" - where: utility_practice_sessions_bool_exp! - ): utility_practice_sessions_mutation_response - - """ - delete single row from the table: "utility_practice_sessions" - """ - delete_utility_practice_sessions_by_pk(id: uuid!): utility_practice_sessions - - """ - delete data from the table: "v_match_captains" - """ - delete_v_match_captains( - """filter the rows which have to be deleted""" - where: v_match_captains_bool_exp! - ): v_match_captains_mutation_response - - """ - delete data from the table: "v_match_map_backup_rounds" - """ - delete_v_match_map_backup_rounds( - """filter the rows which have to be deleted""" - where: v_match_map_backup_rounds_bool_exp! - ): v_match_map_backup_rounds_mutation_response - - """ - delete data from the table: "v_player_match_map_hltv" - """ - delete_v_player_match_map_hltv( - """filter the rows which have to be deleted""" - where: v_player_match_map_hltv_bool_exp! - ): v_player_match_map_hltv_mutation_response - - """ - delete data from the table: "v_pool_maps" - """ - delete_v_pool_maps( - """filter the rows which have to be deleted""" - where: v_pool_maps_bool_exp! - ): v_pool_maps_mutation_response - - """ - delete data from the table: "v_team_stage_results" - """ - delete_v_team_stage_results( - """filter the rows which have to be deleted""" - where: v_team_stage_results_bool_exp! - ): v_team_stage_results_mutation_response - - """ - delete single row from the table: "v_team_stage_results" - """ - delete_v_team_stage_results_by_pk(tournament_stage_id: uuid!, tournament_team_id: uuid!): v_team_stage_results - denyInvite(invite_id: uuid!, type: String!): SuccessOutput - denyNameChange(name: String!, steam_id: bigint!): SuccessOutput - - """Organizer regenerates the free agent teams and re-seeds""" - draftTournamentTeams(tournament_id: uuid!): TournamentDraftOutput - - """Organizer pushes the check-in deadline out and reopens registration""" - extendTournamentCheckIn(minutes: Int!, tournament_id: uuid!): SuccessOutput - forfeitMatch(match_id: uuid!, winning_lineup_id: uuid!): SuccessOutput - - """Copy a lineup you can see into your own library""" - forkUtilityLineup(collection_id: uuid, name: String, utility_lineup_id: uuid!): UtilityLineupOutput - - """ - 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""" - grantAward(award_id: uuid!, event_id: uuid, league_season_id: uuid, note: String, player_steam_id: String, season_id: uuid, team_id: uuid, tournament_id: uuid): AwardRecipient - - """Seed the utility library from an operator-supplied payload""" - importUtilityLineups(dry_run: Boolean, payload: jsonb!): UtilityImportOutput - - """ - insert data into the table: "_map_pool" - """ - insert__map_pool( - """the rows to be inserted""" - objects: [_map_pool_insert_input!]! - - """upsert condition""" - on_conflict: _map_pool_on_conflict - ): _map_pool_mutation_response - - """ - insert a single row into the table: "_map_pool" - """ - insert__map_pool_one( - """the row to be inserted""" - object: _map_pool_insert_input! - - """upsert condition""" - on_conflict: _map_pool_on_conflict - ): _map_pool - - """ - insert data into the table: "abandoned_matches" - """ - insert_abandoned_matches( - """the rows to be inserted""" - objects: [abandoned_matches_insert_input!]! - - """upsert condition""" - on_conflict: abandoned_matches_on_conflict - ): abandoned_matches_mutation_response - - """ - insert a single row into the table: "abandoned_matches" - """ - insert_abandoned_matches_one( - """the row to be inserted""" - object: abandoned_matches_insert_input! - - """upsert condition""" - on_conflict: abandoned_matches_on_conflict - ): abandoned_matches - - """ - insert data into the table: "api_keys" - """ - insert_api_keys( - """the rows to be inserted""" - objects: [api_keys_insert_input!]! - - """upsert condition""" - on_conflict: api_keys_on_conflict - ): api_keys_mutation_response - - """ - insert a single row into the table: "api_keys" - """ - insert_api_keys_one( - """the row to be inserted""" - object: api_keys_insert_input! - - """upsert condition""" - on_conflict: api_keys_on_conflict - ): api_keys - - """ - insert data into the table: "award_recipients" - """ - insert_award_recipients( - """the rows to be inserted""" - objects: [award_recipients_insert_input!]! - - """upsert condition""" - on_conflict: award_recipients_on_conflict - ): award_recipients_mutation_response - - """ - insert a single row into the table: "award_recipients" - """ - insert_award_recipients_one( - """the row to be inserted""" - object: award_recipients_insert_input! - - """upsert condition""" - on_conflict: award_recipients_on_conflict - ): award_recipients - - """ - insert data into the table: "awards" - """ - insert_awards( - """the rows to be inserted""" - objects: [awards_insert_input!]! - - """upsert condition""" - on_conflict: awards_on_conflict - ): awards_mutation_response - - """ - insert a single row into the table: "awards" - """ - insert_awards_one( - """the row to be inserted""" - object: awards_insert_input! - - """upsert condition""" - on_conflict: awards_on_conflict - ): awards - - """ - insert data into the table: "chat_read_state" - """ - insert_chat_read_state( - """the rows to be inserted""" - objects: [chat_read_state_insert_input!]! - - """upsert condition""" - on_conflict: chat_read_state_on_conflict - ): chat_read_state_mutation_response - - """ - insert a single row into the table: "chat_read_state" - """ - insert_chat_read_state_one( - """the row to be inserted""" - object: chat_read_state_insert_input! - - """upsert condition""" - on_conflict: chat_read_state_on_conflict - ): chat_read_state - - """ - insert data into the table: "clip_render_jobs" - """ - insert_clip_render_jobs( - """the rows to be inserted""" - objects: [clip_render_jobs_insert_input!]! - - """upsert condition""" - on_conflict: clip_render_jobs_on_conflict - ): clip_render_jobs_mutation_response - - """ - insert a single row into the table: "clip_render_jobs" - """ - insert_clip_render_jobs_one( - """the row to be inserted""" - object: clip_render_jobs_insert_input! - - """upsert condition""" - on_conflict: clip_render_jobs_on_conflict - ): clip_render_jobs - - """ - insert data into the table: "custom_pages" - """ - insert_custom_pages( - """the rows to be inserted""" - objects: [custom_pages_insert_input!]! - - """upsert condition""" - on_conflict: custom_pages_on_conflict - ): custom_pages_mutation_response - - """ - insert a single row into the table: "custom_pages" - """ - insert_custom_pages_one( - """the row to be inserted""" - object: custom_pages_insert_input! - - """upsert condition""" - on_conflict: custom_pages_on_conflict - ): custom_pages - - """ - insert data into the table: "db_backups" - """ - insert_db_backups( - """the rows to be inserted""" - objects: [db_backups_insert_input!]! - - """upsert condition""" - on_conflict: db_backups_on_conflict - ): db_backups_mutation_response - - """ - insert a single row into the table: "db_backups" - """ - insert_db_backups_one( - """the row to be inserted""" - object: db_backups_insert_input! - - """upsert condition""" - on_conflict: db_backups_on_conflict - ): db_backups - - """ - insert data into the table: "direct_conversations" - """ - insert_direct_conversations( - """the rows to be inserted""" - objects: [direct_conversations_insert_input!]! - - """upsert condition""" - on_conflict: direct_conversations_on_conflict - ): direct_conversations_mutation_response - - """ - insert a single row into the table: "direct_conversations" - """ - insert_direct_conversations_one( - """the row to be inserted""" - object: direct_conversations_insert_input! - - """upsert condition""" - on_conflict: direct_conversations_on_conflict - ): direct_conversations - - """ - insert data into the table: "direct_messages" - """ - insert_direct_messages( - """the rows to be inserted""" - objects: [direct_messages_insert_input!]! - - """upsert condition""" - on_conflict: direct_messages_on_conflict - ): direct_messages_mutation_response - - """ - insert a single row into the table: "direct_messages" - """ - insert_direct_messages_one( - """the row to be inserted""" - object: direct_messages_insert_input! - - """upsert condition""" - on_conflict: direct_messages_on_conflict - ): direct_messages - - """ - insert data into the table: "draft_game_picks" - """ - insert_draft_game_picks( - """the rows to be inserted""" - objects: [draft_game_picks_insert_input!]! - - """upsert condition""" - on_conflict: draft_game_picks_on_conflict - ): draft_game_picks_mutation_response - - """ - insert a single row into the table: "draft_game_picks" - """ - insert_draft_game_picks_one( - """the row to be inserted""" - object: draft_game_picks_insert_input! - - """upsert condition""" - on_conflict: draft_game_picks_on_conflict - ): draft_game_picks - - """ - insert data into the table: "draft_game_players" - """ - insert_draft_game_players( - """the rows to be inserted""" - objects: [draft_game_players_insert_input!]! - - """upsert condition""" - on_conflict: draft_game_players_on_conflict - ): draft_game_players_mutation_response - - """ - insert a single row into the table: "draft_game_players" - """ - insert_draft_game_players_one( - """the row to be inserted""" - object: draft_game_players_insert_input! - - """upsert condition""" - on_conflict: draft_game_players_on_conflict - ): draft_game_players - - """ - insert data into the table: "draft_games" - """ - insert_draft_games( - """the rows to be inserted""" - objects: [draft_games_insert_input!]! - - """upsert condition""" - on_conflict: draft_games_on_conflict - ): draft_games_mutation_response - - """ - insert a single row into the table: "draft_games" - """ - insert_draft_games_one( - """the row to be inserted""" - object: draft_games_insert_input! - - """upsert condition""" - on_conflict: draft_games_on_conflict - ): draft_games - - """ - insert data into the table: "e_award_sources" - """ - insert_e_award_sources( - """the rows to be inserted""" - objects: [e_award_sources_insert_input!]! - - """upsert condition""" - on_conflict: e_award_sources_on_conflict - ): e_award_sources_mutation_response - - """ - insert a single row into the table: "e_award_sources" - """ - insert_e_award_sources_one( - """the row to be inserted""" - object: e_award_sources_insert_input! - - """upsert condition""" - on_conflict: e_award_sources_on_conflict - ): e_award_sources - - """ - insert data into the table: "e_award_tiers" - """ - insert_e_award_tiers( - """the rows to be inserted""" - objects: [e_award_tiers_insert_input!]! - - """upsert condition""" - on_conflict: e_award_tiers_on_conflict - ): e_award_tiers_mutation_response - - """ - insert a single row into the table: "e_award_tiers" - """ - insert_e_award_tiers_one( - """the row to be inserted""" - object: e_award_tiers_insert_input! - - """upsert condition""" - on_conflict: e_award_tiers_on_conflict - ): e_award_tiers - - """ - insert data into the table: "e_check_in_settings" - """ - insert_e_check_in_settings( - """the rows to be inserted""" - objects: [e_check_in_settings_insert_input!]! - - """upsert condition""" - on_conflict: e_check_in_settings_on_conflict - ): e_check_in_settings_mutation_response - - """ - insert a single row into the table: "e_check_in_settings" - """ - insert_e_check_in_settings_one( - """the row to be inserted""" - object: e_check_in_settings_insert_input! - - """upsert condition""" - on_conflict: e_check_in_settings_on_conflict - ): e_check_in_settings - - """ - insert data into the table: "e_draft_game_captain_selection" - """ - insert_e_draft_game_captain_selection( - """the rows to be inserted""" - objects: [e_draft_game_captain_selection_insert_input!]! - - """upsert condition""" - on_conflict: e_draft_game_captain_selection_on_conflict - ): e_draft_game_captain_selection_mutation_response - - """ - insert a single row into the table: "e_draft_game_captain_selection" - """ - insert_e_draft_game_captain_selection_one( - """the row to be inserted""" - object: e_draft_game_captain_selection_insert_input! - - """upsert condition""" - on_conflict: e_draft_game_captain_selection_on_conflict - ): e_draft_game_captain_selection - - """ - insert data into the table: "e_draft_game_draft_order" - """ - insert_e_draft_game_draft_order( - """the rows to be inserted""" - objects: [e_draft_game_draft_order_insert_input!]! - - """upsert condition""" - on_conflict: e_draft_game_draft_order_on_conflict - ): e_draft_game_draft_order_mutation_response - - """ - insert a single row into the table: "e_draft_game_draft_order" - """ - insert_e_draft_game_draft_order_one( - """the row to be inserted""" - object: e_draft_game_draft_order_insert_input! - - """upsert condition""" - on_conflict: e_draft_game_draft_order_on_conflict - ): e_draft_game_draft_order - - """ - insert data into the table: "e_draft_game_mode" - """ - insert_e_draft_game_mode( - """the rows to be inserted""" - objects: [e_draft_game_mode_insert_input!]! - - """upsert condition""" - on_conflict: e_draft_game_mode_on_conflict - ): e_draft_game_mode_mutation_response - - """ - insert a single row into the table: "e_draft_game_mode" - """ - insert_e_draft_game_mode_one( - """the row to be inserted""" - object: e_draft_game_mode_insert_input! - - """upsert condition""" - on_conflict: e_draft_game_mode_on_conflict - ): e_draft_game_mode - - """ - insert data into the table: "e_draft_game_player_status" - """ - insert_e_draft_game_player_status( - """the rows to be inserted""" - objects: [e_draft_game_player_status_insert_input!]! - - """upsert condition""" - on_conflict: e_draft_game_player_status_on_conflict - ): e_draft_game_player_status_mutation_response - - """ - insert a single row into the table: "e_draft_game_player_status" - """ - insert_e_draft_game_player_status_one( - """the row to be inserted""" - object: e_draft_game_player_status_insert_input! - - """upsert condition""" - on_conflict: e_draft_game_player_status_on_conflict - ): e_draft_game_player_status - - """ - insert data into the table: "e_draft_game_status" - """ - insert_e_draft_game_status( - """the rows to be inserted""" - objects: [e_draft_game_status_insert_input!]! - - """upsert condition""" - on_conflict: e_draft_game_status_on_conflict - ): e_draft_game_status_mutation_response - - """ - insert a single row into the table: "e_draft_game_status" - """ - insert_e_draft_game_status_one( - """the row to be inserted""" - object: e_draft_game_status_insert_input! - - """upsert condition""" - on_conflict: e_draft_game_status_on_conflict - ): e_draft_game_status - - """ - insert data into the table: "e_event_media_access" - """ - insert_e_event_media_access( - """the rows to be inserted""" - objects: [e_event_media_access_insert_input!]! - - """upsert condition""" - on_conflict: e_event_media_access_on_conflict - ): e_event_media_access_mutation_response - - """ - insert a single row into the table: "e_event_media_access" - """ - insert_e_event_media_access_one( - """the row to be inserted""" - object: e_event_media_access_insert_input! - - """upsert condition""" - on_conflict: e_event_media_access_on_conflict - ): e_event_media_access - - """ - insert data into the table: "e_event_visibility" - """ - insert_e_event_visibility( - """the rows to be inserted""" - objects: [e_event_visibility_insert_input!]! - - """upsert condition""" - on_conflict: e_event_visibility_on_conflict - ): e_event_visibility_mutation_response - - """ - insert a single row into the table: "e_event_visibility" - """ - insert_e_event_visibility_one( - """the row to be inserted""" - object: e_event_visibility_insert_input! - - """upsert condition""" - on_conflict: e_event_visibility_on_conflict - ): e_event_visibility - - """ - insert data into the table: "e_friend_status" - """ - insert_e_friend_status( - """the rows to be inserted""" - objects: [e_friend_status_insert_input!]! - - """upsert condition""" - on_conflict: e_friend_status_on_conflict - ): e_friend_status_mutation_response - - """ - insert a single row into the table: "e_friend_status" - """ - insert_e_friend_status_one( - """the row to be inserted""" - object: e_friend_status_insert_input! - - """upsert condition""" - on_conflict: e_friend_status_on_conflict - ): e_friend_status - - """ - insert data into the table: "e_game_cfg_types" - """ - insert_e_game_cfg_types( - """the rows to be inserted""" - objects: [e_game_cfg_types_insert_input!]! - - """upsert condition""" - on_conflict: e_game_cfg_types_on_conflict - ): e_game_cfg_types_mutation_response - - """ - insert a single row into the table: "e_game_cfg_types" - """ - insert_e_game_cfg_types_one( - """the row to be inserted""" - object: e_game_cfg_types_insert_input! - - """upsert condition""" - 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" - """ - insert_e_game_server_node_statuses( - """the rows to be inserted""" - objects: [e_game_server_node_statuses_insert_input!]! - - """upsert condition""" - on_conflict: e_game_server_node_statuses_on_conflict - ): e_game_server_node_statuses_mutation_response - - """ - insert a single row into the table: "e_game_server_node_statuses" - """ - insert_e_game_server_node_statuses_one( - """the row to be inserted""" - object: e_game_server_node_statuses_insert_input! - - """upsert condition""" - on_conflict: e_game_server_node_statuses_on_conflict - ): e_game_server_node_statuses - - """ - insert data into the table: "e_league_movement_types" - """ - insert_e_league_movement_types( - """the rows to be inserted""" - objects: [e_league_movement_types_insert_input!]! - - """upsert condition""" - on_conflict: e_league_movement_types_on_conflict - ): e_league_movement_types_mutation_response - - """ - insert a single row into the table: "e_league_movement_types" - """ - insert_e_league_movement_types_one( - """the row to be inserted""" - object: e_league_movement_types_insert_input! - - """upsert condition""" - on_conflict: e_league_movement_types_on_conflict - ): e_league_movement_types - - """ - insert data into the table: "e_league_proposal_statuses" - """ - insert_e_league_proposal_statuses( - """the rows to be inserted""" - objects: [e_league_proposal_statuses_insert_input!]! - - """upsert condition""" - on_conflict: e_league_proposal_statuses_on_conflict - ): e_league_proposal_statuses_mutation_response - - """ - insert a single row into the table: "e_league_proposal_statuses" - """ - insert_e_league_proposal_statuses_one( - """the row to be inserted""" - object: e_league_proposal_statuses_insert_input! - - """upsert condition""" - on_conflict: e_league_proposal_statuses_on_conflict - ): e_league_proposal_statuses - - """ - insert data into the table: "e_league_registration_statuses" - """ - insert_e_league_registration_statuses( - """the rows to be inserted""" - objects: [e_league_registration_statuses_insert_input!]! - - """upsert condition""" - on_conflict: e_league_registration_statuses_on_conflict - ): e_league_registration_statuses_mutation_response - - """ - insert a single row into the table: "e_league_registration_statuses" - """ - insert_e_league_registration_statuses_one( - """the row to be inserted""" - object: e_league_registration_statuses_insert_input! - - """upsert condition""" - on_conflict: e_league_registration_statuses_on_conflict - ): e_league_registration_statuses - - """ - insert data into the table: "e_league_season_statuses" - """ - insert_e_league_season_statuses( - """the rows to be inserted""" - objects: [e_league_season_statuses_insert_input!]! - - """upsert condition""" - on_conflict: e_league_season_statuses_on_conflict - ): e_league_season_statuses_mutation_response - - """ - insert a single row into the table: "e_league_season_statuses" - """ - insert_e_league_season_statuses_one( - """the row to be inserted""" - object: e_league_season_statuses_insert_input! - - """upsert condition""" - on_conflict: e_league_season_statuses_on_conflict - ): e_league_season_statuses - - """ - insert data into the table: "e_lobby_access" - """ - insert_e_lobby_access( - """the rows to be inserted""" - objects: [e_lobby_access_insert_input!]! - - """upsert condition""" - on_conflict: e_lobby_access_on_conflict - ): e_lobby_access_mutation_response - - """ - insert a single row into the table: "e_lobby_access" - """ - insert_e_lobby_access_one( - """the row to be inserted""" - object: e_lobby_access_insert_input! - - """upsert condition""" - on_conflict: e_lobby_access_on_conflict - ): e_lobby_access - - """ - insert data into the table: "e_lobby_player_status" - """ - insert_e_lobby_player_status( - """the rows to be inserted""" - objects: [e_lobby_player_status_insert_input!]! - - """upsert condition""" - on_conflict: e_lobby_player_status_on_conflict - ): e_lobby_player_status_mutation_response - - """ - insert a single row into the table: "e_lobby_player_status" - """ - insert_e_lobby_player_status_one( - """the row to be inserted""" - object: e_lobby_player_status_insert_input! - - """upsert condition""" - on_conflict: e_lobby_player_status_on_conflict - ): e_lobby_player_status - - """ - insert data into the table: "e_map_pool_types" - """ - insert_e_map_pool_types( - """the rows to be inserted""" - objects: [e_map_pool_types_insert_input!]! - - """upsert condition""" - on_conflict: e_map_pool_types_on_conflict - ): e_map_pool_types_mutation_response - - """ - insert a single row into the table: "e_map_pool_types" - """ - insert_e_map_pool_types_one( - """the row to be inserted""" - object: e_map_pool_types_insert_input! - - """upsert condition""" - on_conflict: e_map_pool_types_on_conflict - ): e_map_pool_types - - """ - insert data into the table: "e_match_clip_visibility" - """ - insert_e_match_clip_visibility( - """the rows to be inserted""" - objects: [e_match_clip_visibility_insert_input!]! - - """upsert condition""" - on_conflict: e_match_clip_visibility_on_conflict - ): e_match_clip_visibility_mutation_response - - """ - insert a single row into the table: "e_match_clip_visibility" - """ - insert_e_match_clip_visibility_one( - """the row to be inserted""" - object: e_match_clip_visibility_insert_input! - - """upsert condition""" - on_conflict: e_match_clip_visibility_on_conflict - ): e_match_clip_visibility - - """ - insert data into the table: "e_match_map_status" - """ - insert_e_match_map_status( - """the rows to be inserted""" - objects: [e_match_map_status_insert_input!]! - - """upsert condition""" - on_conflict: e_match_map_status_on_conflict - ): e_match_map_status_mutation_response - - """ - insert a single row into the table: "e_match_map_status" - """ - insert_e_match_map_status_one( - """the row to be inserted""" - object: e_match_map_status_insert_input! - - """upsert condition""" - on_conflict: e_match_map_status_on_conflict - ): e_match_map_status - - """ - insert data into the table: "e_match_mode" - """ - insert_e_match_mode( - """the rows to be inserted""" - objects: [e_match_mode_insert_input!]! - - """upsert condition""" - on_conflict: e_match_mode_on_conflict - ): e_match_mode_mutation_response - - """ - insert a single row into the table: "e_match_mode" - """ - insert_e_match_mode_one( - """the row to be inserted""" - object: e_match_mode_insert_input! - - """upsert condition""" - on_conflict: e_match_mode_on_conflict - ): e_match_mode - - """ - insert data into the table: "e_match_party_sources" - """ - insert_e_match_party_sources( - """the rows to be inserted""" - objects: [e_match_party_sources_insert_input!]! - - """upsert condition""" - on_conflict: e_match_party_sources_on_conflict - ): e_match_party_sources_mutation_response - - """ - insert a single row into the table: "e_match_party_sources" - """ - insert_e_match_party_sources_one( - """the row to be inserted""" - object: e_match_party_sources_insert_input! - - """upsert condition""" - on_conflict: e_match_party_sources_on_conflict - ): e_match_party_sources - - """ - insert data into the table: "e_match_status" - """ - insert_e_match_status( - """the rows to be inserted""" - objects: [e_match_status_insert_input!]! - - """upsert condition""" - on_conflict: e_match_status_on_conflict - ): e_match_status_mutation_response - - """ - insert a single row into the table: "e_match_status" - """ - insert_e_match_status_one( - """the row to be inserted""" - object: e_match_status_insert_input! - - """upsert condition""" - on_conflict: e_match_status_on_conflict - ): e_match_status - - """ - insert data into the table: "e_match_types" - """ - insert_e_match_types( - """the rows to be inserted""" - objects: [e_match_types_insert_input!]! - - """upsert condition""" - on_conflict: e_match_types_on_conflict - ): e_match_types_mutation_response - - """ - insert a single row into the table: "e_match_types" - """ - insert_e_match_types_one( - """the row to be inserted""" - object: e_match_types_insert_input! - - """upsert condition""" - on_conflict: e_match_types_on_conflict - ): e_match_types - - """ - insert data into the table: "e_notification_types" - """ - insert_e_notification_types( - """the rows to be inserted""" - objects: [e_notification_types_insert_input!]! - - """upsert condition""" - on_conflict: e_notification_types_on_conflict - ): e_notification_types_mutation_response - - """ - insert a single row into the table: "e_notification_types" - """ - insert_e_notification_types_one( - """the row to be inserted""" - object: e_notification_types_insert_input! - - """upsert condition""" - on_conflict: e_notification_types_on_conflict - ): e_notification_types - - """ - insert data into the table: "e_objective_types" - """ - insert_e_objective_types( - """the rows to be inserted""" - objects: [e_objective_types_insert_input!]! - - """upsert condition""" - on_conflict: e_objective_types_on_conflict - ): e_objective_types_mutation_response - - """ - insert a single row into the table: "e_objective_types" - """ - insert_e_objective_types_one( - """the row to be inserted""" - object: e_objective_types_insert_input! - - """upsert condition""" - on_conflict: e_objective_types_on_conflict - ): e_objective_types - - """ - insert data into the table: "e_player_roles" - """ - insert_e_player_roles( - """the rows to be inserted""" - objects: [e_player_roles_insert_input!]! - - """upsert condition""" - on_conflict: e_player_roles_on_conflict - ): e_player_roles_mutation_response - - """ - insert a single row into the table: "e_player_roles" - """ - insert_e_player_roles_one( - """the row to be inserted""" - object: e_player_roles_insert_input! - - """upsert condition""" - on_conflict: e_player_roles_on_conflict - ): e_player_roles - - """ - insert data into the table: "e_plugin_runtimes" - """ - insert_e_plugin_runtimes( - """the rows to be inserted""" - objects: [e_plugin_runtimes_insert_input!]! - - """upsert condition""" - on_conflict: e_plugin_runtimes_on_conflict - ): e_plugin_runtimes_mutation_response - - """ - insert a single row into the table: "e_plugin_runtimes" - """ - insert_e_plugin_runtimes_one( - """the row to be inserted""" - object: e_plugin_runtimes_insert_input! - - """upsert condition""" - on_conflict: e_plugin_runtimes_on_conflict - ): e_plugin_runtimes - - """ - insert data into the table: "e_ready_settings" - """ - insert_e_ready_settings( - """the rows to be inserted""" - objects: [e_ready_settings_insert_input!]! - - """upsert condition""" - on_conflict: e_ready_settings_on_conflict - ): e_ready_settings_mutation_response - - """ - insert a single row into the table: "e_ready_settings" - """ - insert_e_ready_settings_one( - """the row to be inserted""" - object: e_ready_settings_insert_input! - - """upsert condition""" - on_conflict: e_ready_settings_on_conflict - ): e_ready_settings - - """ - insert data into the table: "e_sanction_scopes" - """ - insert_e_sanction_scopes( - """the rows to be inserted""" - objects: [e_sanction_scopes_insert_input!]! - - """upsert condition""" - on_conflict: e_sanction_scopes_on_conflict - ): e_sanction_scopes_mutation_response - - """ - insert a single row into the table: "e_sanction_scopes" - """ - insert_e_sanction_scopes_one( - """the row to be inserted""" - object: e_sanction_scopes_insert_input! - - """upsert condition""" - on_conflict: e_sanction_scopes_on_conflict - ): e_sanction_scopes - - """ - insert data into the table: "e_sanction_sources" - """ - insert_e_sanction_sources( - """the rows to be inserted""" - objects: [e_sanction_sources_insert_input!]! - - """upsert condition""" - on_conflict: e_sanction_sources_on_conflict - ): e_sanction_sources_mutation_response - - """ - insert a single row into the table: "e_sanction_sources" - """ - insert_e_sanction_sources_one( - """the row to be inserted""" - object: e_sanction_sources_insert_input! - - """upsert condition""" - on_conflict: e_sanction_sources_on_conflict - ): e_sanction_sources - - """ - insert data into the table: "e_sanction_types" - """ - insert_e_sanction_types( - """the rows to be inserted""" - objects: [e_sanction_types_insert_input!]! - - """upsert condition""" - on_conflict: e_sanction_types_on_conflict - ): e_sanction_types_mutation_response - - """ - insert a single row into the table: "e_sanction_types" - """ - insert_e_sanction_types_one( - """the row to be inserted""" - object: e_sanction_types_insert_input! - - """upsert condition""" - on_conflict: e_sanction_types_on_conflict - ): e_sanction_types - - """ - insert data into the table: "e_scrim_request_statuses" - """ - insert_e_scrim_request_statuses( - """the rows to be inserted""" - objects: [e_scrim_request_statuses_insert_input!]! - - """upsert condition""" - on_conflict: e_scrim_request_statuses_on_conflict - ): e_scrim_request_statuses_mutation_response - - """ - insert a single row into the table: "e_scrim_request_statuses" - """ - insert_e_scrim_request_statuses_one( - """the row to be inserted""" - object: e_scrim_request_statuses_insert_input! - - """upsert condition""" - on_conflict: e_scrim_request_statuses_on_conflict - ): e_scrim_request_statuses - - """ - insert data into the table: "e_server_types" - """ - insert_e_server_types( - """the rows to be inserted""" - objects: [e_server_types_insert_input!]! - - """upsert condition""" - on_conflict: e_server_types_on_conflict - ): e_server_types_mutation_response - - """ - insert a single row into the table: "e_server_types" - """ - insert_e_server_types_one( - """the row to be inserted""" - object: e_server_types_insert_input! - - """upsert condition""" - on_conflict: e_server_types_on_conflict - ): e_server_types - - """ - insert data into the table: "e_sides" - """ - insert_e_sides( - """the rows to be inserted""" - objects: [e_sides_insert_input!]! - - """upsert condition""" - on_conflict: e_sides_on_conflict - ): e_sides_mutation_response - - """ - insert a single row into the table: "e_sides" - """ - insert_e_sides_one( - """the row to be inserted""" - object: e_sides_insert_input! - - """upsert condition""" - on_conflict: e_sides_on_conflict - ): e_sides - - """ - insert data into the table: "e_system_alert_types" - """ - insert_e_system_alert_types( - """the rows to be inserted""" - objects: [e_system_alert_types_insert_input!]! - - """upsert condition""" - on_conflict: e_system_alert_types_on_conflict - ): e_system_alert_types_mutation_response - - """ - insert a single row into the table: "e_system_alert_types" - """ - insert_e_system_alert_types_one( - """the row to be inserted""" - object: e_system_alert_types_insert_input! - - """upsert condition""" - on_conflict: e_system_alert_types_on_conflict - ): e_system_alert_types - - """ - insert data into the table: "e_team_roles" - """ - insert_e_team_roles( - """the rows to be inserted""" - objects: [e_team_roles_insert_input!]! - - """upsert condition""" - on_conflict: e_team_roles_on_conflict - ): e_team_roles_mutation_response - - """ - insert a single row into the table: "e_team_roles" - """ - insert_e_team_roles_one( - """the row to be inserted""" - object: e_team_roles_insert_input! - - """upsert condition""" - on_conflict: e_team_roles_on_conflict - ): e_team_roles - - """ - insert data into the table: "e_team_roster_statuses" - """ - insert_e_team_roster_statuses( - """the rows to be inserted""" - objects: [e_team_roster_statuses_insert_input!]! - - """upsert condition""" - on_conflict: e_team_roster_statuses_on_conflict - ): e_team_roster_statuses_mutation_response - - """ - insert a single row into the table: "e_team_roster_statuses" - """ - insert_e_team_roster_statuses_one( - """the row to be inserted""" - object: e_team_roster_statuses_insert_input! - - """upsert condition""" - on_conflict: e_team_roster_statuses_on_conflict - ): e_team_roster_statuses - - """ - insert data into the table: "e_timeout_settings" - """ - insert_e_timeout_settings( - """the rows to be inserted""" - objects: [e_timeout_settings_insert_input!]! - - """upsert condition""" - on_conflict: e_timeout_settings_on_conflict - ): e_timeout_settings_mutation_response - - """ - insert a single row into the table: "e_timeout_settings" - """ - insert_e_timeout_settings_one( - """the row to be inserted""" - object: e_timeout_settings_insert_input! - - """upsert condition""" - on_conflict: e_timeout_settings_on_conflict - ): e_timeout_settings - - """ - insert data into the table: "e_tournament_categories" - """ - insert_e_tournament_categories( - """the rows to be inserted""" - objects: [e_tournament_categories_insert_input!]! - - """upsert condition""" - on_conflict: e_tournament_categories_on_conflict - ): e_tournament_categories_mutation_response - - """ - insert a single row into the table: "e_tournament_categories" - """ - insert_e_tournament_categories_one( - """the row to be inserted""" - object: e_tournament_categories_insert_input! - - """upsert condition""" - on_conflict: e_tournament_categories_on_conflict - ): e_tournament_categories - - """ - insert data into the table: "e_tournament_free_agent_statuses" - """ - insert_e_tournament_free_agent_statuses( - """the rows to be inserted""" - objects: [e_tournament_free_agent_statuses_insert_input!]! - - """upsert condition""" - on_conflict: e_tournament_free_agent_statuses_on_conflict - ): e_tournament_free_agent_statuses_mutation_response - - """ - insert a single row into the table: "e_tournament_free_agent_statuses" - """ - insert_e_tournament_free_agent_statuses_one( - """the row to be inserted""" - object: e_tournament_free_agent_statuses_insert_input! - - """upsert condition""" - on_conflict: e_tournament_free_agent_statuses_on_conflict - ): e_tournament_free_agent_statuses - - """ - insert data into the table: "e_tournament_registration_types" - """ - insert_e_tournament_registration_types( - """the rows to be inserted""" - objects: [e_tournament_registration_types_insert_input!]! - - """upsert condition""" - on_conflict: e_tournament_registration_types_on_conflict - ): e_tournament_registration_types_mutation_response - - """ - insert a single row into the table: "e_tournament_registration_types" - """ - insert_e_tournament_registration_types_one( - """the row to be inserted""" - object: e_tournament_registration_types_insert_input! - - """upsert condition""" - on_conflict: e_tournament_registration_types_on_conflict - ): e_tournament_registration_types - - """ - insert data into the table: "e_tournament_stage_types" - """ - insert_e_tournament_stage_types( - """the rows to be inserted""" - objects: [e_tournament_stage_types_insert_input!]! - - """upsert condition""" - on_conflict: e_tournament_stage_types_on_conflict - ): e_tournament_stage_types_mutation_response - - """ - insert a single row into the table: "e_tournament_stage_types" - """ - insert_e_tournament_stage_types_one( - """the row to be inserted""" - object: e_tournament_stage_types_insert_input! - - """upsert condition""" - on_conflict: e_tournament_stage_types_on_conflict - ): e_tournament_stage_types - - """ - insert data into the table: "e_tournament_status" - """ - insert_e_tournament_status( - """the rows to be inserted""" - objects: [e_tournament_status_insert_input!]! - - """upsert condition""" - on_conflict: e_tournament_status_on_conflict - ): e_tournament_status_mutation_response - - """ - insert a single row into the table: "e_tournament_status" - """ - insert_e_tournament_status_one( - """the row to be inserted""" - object: e_tournament_status_insert_input! - - """upsert condition""" - on_conflict: e_tournament_status_on_conflict - ): e_tournament_status - - """ - insert data into the table: "e_utility_practice_access" - """ - insert_e_utility_practice_access( - """the rows to be inserted""" - objects: [e_utility_practice_access_insert_input!]! - - """upsert condition""" - on_conflict: e_utility_practice_access_on_conflict - ): e_utility_practice_access_mutation_response - - """ - insert a single row into the table: "e_utility_practice_access" - """ - insert_e_utility_practice_access_one( - """the row to be inserted""" - object: e_utility_practice_access_insert_input! - - """upsert condition""" - on_conflict: e_utility_practice_access_on_conflict - ): e_utility_practice_access - - """ - insert data into the table: "e_utility_practice_statuses" - """ - insert_e_utility_practice_statuses( - """the rows to be inserted""" - objects: [e_utility_practice_statuses_insert_input!]! - - """upsert condition""" - on_conflict: e_utility_practice_statuses_on_conflict - ): e_utility_practice_statuses_mutation_response - - """ - insert a single row into the table: "e_utility_practice_statuses" - """ - insert_e_utility_practice_statuses_one( - """the row to be inserted""" - object: e_utility_practice_statuses_insert_input! - - """upsert condition""" - on_conflict: e_utility_practice_statuses_on_conflict - ): e_utility_practice_statuses - - """ - insert data into the table: "e_utility_sources" - """ - insert_e_utility_sources( - """the rows to be inserted""" - objects: [e_utility_sources_insert_input!]! - - """upsert condition""" - on_conflict: e_utility_sources_on_conflict - ): e_utility_sources_mutation_response - - """ - insert a single row into the table: "e_utility_sources" - """ - insert_e_utility_sources_one( - """the row to be inserted""" - object: e_utility_sources_insert_input! - - """upsert condition""" - on_conflict: e_utility_sources_on_conflict - ): e_utility_sources - - """ - insert data into the table: "e_utility_techniques" - """ - insert_e_utility_techniques( - """the rows to be inserted""" - objects: [e_utility_techniques_insert_input!]! - - """upsert condition""" - on_conflict: e_utility_techniques_on_conflict - ): e_utility_techniques_mutation_response - - """ - insert a single row into the table: "e_utility_techniques" - """ - insert_e_utility_techniques_one( - """the row to be inserted""" - object: e_utility_techniques_insert_input! - - """upsert condition""" - on_conflict: e_utility_techniques_on_conflict - ): e_utility_techniques - - """ - insert data into the table: "e_utility_throw_strengths" - """ - insert_e_utility_throw_strengths( - """the rows to be inserted""" - objects: [e_utility_throw_strengths_insert_input!]! - - """upsert condition""" - on_conflict: e_utility_throw_strengths_on_conflict - ): e_utility_throw_strengths_mutation_response - - """ - insert a single row into the table: "e_utility_throw_strengths" - """ - insert_e_utility_throw_strengths_one( - """the row to be inserted""" - object: e_utility_throw_strengths_insert_input! - - """upsert condition""" - on_conflict: e_utility_throw_strengths_on_conflict - ): e_utility_throw_strengths - - """ - insert data into the table: "e_utility_types" - """ - insert_e_utility_types( - """the rows to be inserted""" - objects: [e_utility_types_insert_input!]! - - """upsert condition""" - on_conflict: e_utility_types_on_conflict - ): e_utility_types_mutation_response - - """ - insert a single row into the table: "e_utility_types" - """ - insert_e_utility_types_one( - """the row to be inserted""" - object: e_utility_types_insert_input! - - """upsert condition""" - on_conflict: e_utility_types_on_conflict - ): e_utility_types - - """ - insert data into the table: "e_utility_visibility" - """ - insert_e_utility_visibility( - """the rows to be inserted""" - objects: [e_utility_visibility_insert_input!]! - - """upsert condition""" - on_conflict: e_utility_visibility_on_conflict - ): e_utility_visibility_mutation_response - - """ - insert a single row into the table: "e_utility_visibility" - """ - insert_e_utility_visibility_one( - """the row to be inserted""" - object: e_utility_visibility_insert_input! - - """upsert condition""" - on_conflict: e_utility_visibility_on_conflict - ): e_utility_visibility - - """ - insert data into the table: "e_veto_pick_types" - """ - insert_e_veto_pick_types( - """the rows to be inserted""" - objects: [e_veto_pick_types_insert_input!]! - - """upsert condition""" - on_conflict: e_veto_pick_types_on_conflict - ): e_veto_pick_types_mutation_response - - """ - insert a single row into the table: "e_veto_pick_types" - """ - insert_e_veto_pick_types_one( - """the row to be inserted""" - object: e_veto_pick_types_insert_input! - - """upsert condition""" - on_conflict: e_veto_pick_types_on_conflict - ): e_veto_pick_types - - """ - insert data into the table: "e_winning_reasons" - """ - insert_e_winning_reasons( - """the rows to be inserted""" - objects: [e_winning_reasons_insert_input!]! - - """upsert condition""" - on_conflict: e_winning_reasons_on_conflict - ): e_winning_reasons_mutation_response - - """ - insert a single row into the table: "e_winning_reasons" - """ - insert_e_winning_reasons_one( - """the row to be inserted""" - object: e_winning_reasons_insert_input! - - """upsert condition""" - on_conflict: e_winning_reasons_on_conflict - ): e_winning_reasons - - """ - insert data into the table: "event_match_links" - """ - insert_event_match_links( - """the rows to be inserted""" - objects: [event_match_links_insert_input!]! - - """upsert condition""" - on_conflict: event_match_links_on_conflict - ): event_match_links_mutation_response - - """ - insert a single row into the table: "event_match_links" - """ - insert_event_match_links_one( - """the row to be inserted""" - object: event_match_links_insert_input! - - """upsert condition""" - on_conflict: event_match_links_on_conflict - ): event_match_links - - """ - insert data into the table: "event_media" - """ - insert_event_media( - """the rows to be inserted""" - objects: [event_media_insert_input!]! - - """upsert condition""" - on_conflict: event_media_on_conflict - ): event_media_mutation_response - - """ - insert a single row into the table: "event_media" - """ - insert_event_media_one( - """the row to be inserted""" - object: event_media_insert_input! - - """upsert condition""" - on_conflict: event_media_on_conflict - ): event_media - - """ - insert data into the table: "event_media_players" - """ - insert_event_media_players( - """the rows to be inserted""" - objects: [event_media_players_insert_input!]! - - """upsert condition""" - on_conflict: event_media_players_on_conflict - ): event_media_players_mutation_response - - """ - insert a single row into the table: "event_media_players" - """ - insert_event_media_players_one( - """the row to be inserted""" - object: event_media_players_insert_input! - - """upsert condition""" - on_conflict: event_media_players_on_conflict - ): event_media_players - - """ - insert data into the table: "event_organizers" - """ - insert_event_organizers( - """the rows to be inserted""" - objects: [event_organizers_insert_input!]! - - """upsert condition""" - on_conflict: event_organizers_on_conflict - ): event_organizers_mutation_response - - """ - insert a single row into the table: "event_organizers" - """ - insert_event_organizers_one( - """the row to be inserted""" - object: event_organizers_insert_input! - - """upsert condition""" - on_conflict: event_organizers_on_conflict - ): event_organizers - - """ - insert data into the table: "event_players" - """ - insert_event_players( - """the rows to be inserted""" - objects: [event_players_insert_input!]! - - """upsert condition""" - on_conflict: event_players_on_conflict - ): event_players_mutation_response - - """ - insert a single row into the table: "event_players" - """ - insert_event_players_one( - """the row to be inserted""" - object: event_players_insert_input! - - """upsert condition""" - on_conflict: event_players_on_conflict - ): event_players - - """ - insert data into the table: "event_teams" - """ - insert_event_teams( - """the rows to be inserted""" - objects: [event_teams_insert_input!]! - - """upsert condition""" - on_conflict: event_teams_on_conflict - ): event_teams_mutation_response - - """ - insert a single row into the table: "event_teams" - """ - insert_event_teams_one( - """the row to be inserted""" - object: event_teams_insert_input! - - """upsert condition""" - on_conflict: event_teams_on_conflict - ): event_teams - - """ - insert data into the table: "event_tournaments" - """ - insert_event_tournaments( - """the rows to be inserted""" - objects: [event_tournaments_insert_input!]! - - """upsert condition""" - on_conflict: event_tournaments_on_conflict - ): event_tournaments_mutation_response - - """ - insert a single row into the table: "event_tournaments" - """ - insert_event_tournaments_one( - """the row to be inserted""" - object: event_tournaments_insert_input! - - """upsert condition""" - on_conflict: event_tournaments_on_conflict - ): event_tournaments - - """ - insert data into the table: "events" - """ - insert_events( - """the rows to be inserted""" - objects: [events_insert_input!]! - - """upsert condition""" - on_conflict: events_on_conflict - ): events_mutation_response - - """ - insert a single row into the table: "events" - """ - insert_events_one( - """the row to be inserted""" - object: events_insert_input! - - """upsert condition""" - on_conflict: events_on_conflict - ): events - - """ - insert data into the table: "friends" - """ - insert_friends( - """the rows to be inserted""" - objects: [friends_insert_input!]! - - """upsert condition""" - on_conflict: friends_on_conflict - ): friends_mutation_response - - """ - insert a single row into the table: "friends" - """ - insert_friends_one( - """the row to be inserted""" - object: friends_insert_input! - - """upsert condition""" - 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" - """ - insert_game_server_nodes( - """the rows to be inserted""" - objects: [game_server_nodes_insert_input!]! - - """upsert condition""" - on_conflict: game_server_nodes_on_conflict - ): game_server_nodes_mutation_response - - """ - insert a single row into the table: "game_server_nodes" - """ - insert_game_server_nodes_one( - """the row to be inserted""" - object: game_server_nodes_insert_input! - - """upsert condition""" - on_conflict: game_server_nodes_on_conflict - ): game_server_nodes - - """ - insert data into the table: "game_versions" - """ - insert_game_versions( - """the rows to be inserted""" - objects: [game_versions_insert_input!]! - - """upsert condition""" - on_conflict: game_versions_on_conflict - ): game_versions_mutation_response - - """ - insert a single row into the table: "game_versions" - """ - insert_game_versions_one( - """the row to be inserted""" - object: game_versions_insert_input! - - """upsert condition""" - on_conflict: game_versions_on_conflict - ): game_versions - - """ - insert data into the table: "gamedata_signature_validations" - """ - insert_gamedata_signature_validations( - """the rows to be inserted""" - objects: [gamedata_signature_validations_insert_input!]! - - """upsert condition""" - on_conflict: gamedata_signature_validations_on_conflict - ): gamedata_signature_validations_mutation_response - - """ - insert a single row into the table: "gamedata_signature_validations" - """ - insert_gamedata_signature_validations_one( - """the row to be inserted""" - object: gamedata_signature_validations_insert_input! - - """upsert condition""" - on_conflict: gamedata_signature_validations_on_conflict - ): gamedata_signature_validations - - """ - insert data into the table: "leaderboard_entries" - """ - insert_leaderboard_entries( - """the rows to be inserted""" - objects: [leaderboard_entries_insert_input!]! - ): leaderboard_entries_mutation_response - - """ - insert a single row into the table: "leaderboard_entries" - """ - insert_leaderboard_entries_one( - """the row to be inserted""" - object: leaderboard_entries_insert_input! - ): leaderboard_entries - - """ - insert data into the table: "league_divisions" - """ - insert_league_divisions( - """the rows to be inserted""" - objects: [league_divisions_insert_input!]! - - """upsert condition""" - on_conflict: league_divisions_on_conflict - ): league_divisions_mutation_response - - """ - insert a single row into the table: "league_divisions" - """ - insert_league_divisions_one( - """the row to be inserted""" - object: league_divisions_insert_input! - - """upsert condition""" - on_conflict: league_divisions_on_conflict - ): league_divisions - - """ - insert data into the table: "league_match_weeks" - """ - insert_league_match_weeks( - """the rows to be inserted""" - objects: [league_match_weeks_insert_input!]! - - """upsert condition""" - on_conflict: league_match_weeks_on_conflict - ): league_match_weeks_mutation_response - - """ - insert a single row into the table: "league_match_weeks" - """ - insert_league_match_weeks_one( - """the row to be inserted""" - object: league_match_weeks_insert_input! - - """upsert condition""" - on_conflict: league_match_weeks_on_conflict - ): league_match_weeks - - """ - insert data into the table: "league_relegation_playoffs" - """ - insert_league_relegation_playoffs( - """the rows to be inserted""" - objects: [league_relegation_playoffs_insert_input!]! - - """upsert condition""" - on_conflict: league_relegation_playoffs_on_conflict - ): league_relegation_playoffs_mutation_response - - """ - insert a single row into the table: "league_relegation_playoffs" - """ - insert_league_relegation_playoffs_one( - """the row to be inserted""" - object: league_relegation_playoffs_insert_input! - - """upsert condition""" - on_conflict: league_relegation_playoffs_on_conflict - ): league_relegation_playoffs - - """ - insert data into the table: "league_scheduling_proposals" - """ - insert_league_scheduling_proposals( - """the rows to be inserted""" - objects: [league_scheduling_proposals_insert_input!]! - - """upsert condition""" - on_conflict: league_scheduling_proposals_on_conflict - ): league_scheduling_proposals_mutation_response - - """ - insert a single row into the table: "league_scheduling_proposals" - """ - insert_league_scheduling_proposals_one( - """the row to be inserted""" - object: league_scheduling_proposals_insert_input! - - """upsert condition""" - on_conflict: league_scheduling_proposals_on_conflict - ): league_scheduling_proposals - - """ - insert data into the table: "league_season_divisions" - """ - insert_league_season_divisions( - """the rows to be inserted""" - objects: [league_season_divisions_insert_input!]! - - """upsert condition""" - on_conflict: league_season_divisions_on_conflict - ): league_season_divisions_mutation_response - - """ - insert a single row into the table: "league_season_divisions" - """ - insert_league_season_divisions_one( - """the row to be inserted""" - object: league_season_divisions_insert_input! - - """upsert condition""" - on_conflict: league_season_divisions_on_conflict - ): league_season_divisions - - """ - insert data into the table: "league_seasons" - """ - insert_league_seasons( - """the rows to be inserted""" - objects: [league_seasons_insert_input!]! - - """upsert condition""" - on_conflict: league_seasons_on_conflict - ): league_seasons_mutation_response - - """ - insert a single row into the table: "league_seasons" - """ - insert_league_seasons_one( - """the row to be inserted""" - object: league_seasons_insert_input! - - """upsert condition""" - on_conflict: league_seasons_on_conflict - ): league_seasons - - """ - insert data into the table: "league_team_movements" - """ - insert_league_team_movements( - """the rows to be inserted""" - objects: [league_team_movements_insert_input!]! - - """upsert condition""" - on_conflict: league_team_movements_on_conflict - ): league_team_movements_mutation_response - - """ - insert a single row into the table: "league_team_movements" - """ - insert_league_team_movements_one( - """the row to be inserted""" - object: league_team_movements_insert_input! - - """upsert condition""" - on_conflict: league_team_movements_on_conflict - ): league_team_movements - - """ - insert data into the table: "league_team_rosters" - """ - insert_league_team_rosters( - """the rows to be inserted""" - objects: [league_team_rosters_insert_input!]! - - """upsert condition""" - on_conflict: league_team_rosters_on_conflict - ): league_team_rosters_mutation_response - - """ - insert a single row into the table: "league_team_rosters" - """ - insert_league_team_rosters_one( - """the row to be inserted""" - object: league_team_rosters_insert_input! - - """upsert condition""" - on_conflict: league_team_rosters_on_conflict - ): league_team_rosters - - """ - insert data into the table: "league_team_seasons" - """ - insert_league_team_seasons( - """the rows to be inserted""" - objects: [league_team_seasons_insert_input!]! - - """upsert condition""" - on_conflict: league_team_seasons_on_conflict - ): league_team_seasons_mutation_response - - """ - insert a single row into the table: "league_team_seasons" - """ - insert_league_team_seasons_one( - """the row to be inserted""" - object: league_team_seasons_insert_input! - - """upsert condition""" - on_conflict: league_team_seasons_on_conflict - ): league_team_seasons - - """ - insert data into the table: "league_teams" - """ - insert_league_teams( - """the rows to be inserted""" - objects: [league_teams_insert_input!]! - - """upsert condition""" - on_conflict: league_teams_on_conflict - ): league_teams_mutation_response - - """ - insert a single row into the table: "league_teams" - """ - insert_league_teams_one( - """the row to be inserted""" - object: league_teams_insert_input! - - """upsert condition""" - on_conflict: league_teams_on_conflict - ): league_teams - - """ - insert data into the table: "lobbies" - """ - insert_lobbies( - """the rows to be inserted""" - objects: [lobbies_insert_input!]! - - """upsert condition""" - on_conflict: lobbies_on_conflict - ): lobbies_mutation_response - - """ - insert a single row into the table: "lobbies" - """ - insert_lobbies_one( - """the row to be inserted""" - object: lobbies_insert_input! - - """upsert condition""" - on_conflict: lobbies_on_conflict - ): lobbies - - """ - insert data into the table: "lobby_players" - """ - insert_lobby_players( - """the rows to be inserted""" - objects: [lobby_players_insert_input!]! - - """upsert condition""" - on_conflict: lobby_players_on_conflict - ): lobby_players_mutation_response - - """ - insert a single row into the table: "lobby_players" - """ - insert_lobby_players_one( - """the row to be inserted""" - object: lobby_players_insert_input! - - """upsert condition""" - on_conflict: lobby_players_on_conflict - ): lobby_players - - """ - insert data into the table: "map_callouts" - """ - insert_map_callouts( - """the rows to be inserted""" - objects: [map_callouts_insert_input!]! - - """upsert condition""" - on_conflict: map_callouts_on_conflict - ): map_callouts_mutation_response - - """ - insert a single row into the table: "map_callouts" - """ - insert_map_callouts_one( - """the row to be inserted""" - object: map_callouts_insert_input! - - """upsert condition""" - on_conflict: map_callouts_on_conflict - ): map_callouts - - """ - insert data into the table: "map_pools" - """ - insert_map_pools( - """the rows to be inserted""" - objects: [map_pools_insert_input!]! - - """upsert condition""" - on_conflict: map_pools_on_conflict - ): map_pools_mutation_response - - """ - insert a single row into the table: "map_pools" - """ - insert_map_pools_one( - """the row to be inserted""" - object: map_pools_insert_input! - - """upsert condition""" - on_conflict: map_pools_on_conflict - ): map_pools - - """ - insert data into the table: "maps" - """ - insert_maps( - """the rows to be inserted""" - objects: [maps_insert_input!]! - - """upsert condition""" - on_conflict: maps_on_conflict - ): maps_mutation_response - - """ - insert a single row into the table: "maps" - """ - insert_maps_one( - """the row to be inserted""" - object: maps_insert_input! - - """upsert condition""" - on_conflict: maps_on_conflict - ): maps - - """ - insert data into the table: "match_clips" - """ - insert_match_clips( - """the rows to be inserted""" - objects: [match_clips_insert_input!]! - - """upsert condition""" - on_conflict: match_clips_on_conflict - ): match_clips_mutation_response - - """ - insert a single row into the table: "match_clips" - """ - insert_match_clips_one( - """the row to be inserted""" - object: match_clips_insert_input! - - """upsert condition""" - on_conflict: match_clips_on_conflict - ): match_clips - - """ - insert data into the table: "match_demo_sessions" - """ - insert_match_demo_sessions( - """the rows to be inserted""" - objects: [match_demo_sessions_insert_input!]! - - """upsert condition""" - on_conflict: match_demo_sessions_on_conflict - ): match_demo_sessions_mutation_response - - """ - insert a single row into the table: "match_demo_sessions" - """ - insert_match_demo_sessions_one( - """the row to be inserted""" - object: match_demo_sessions_insert_input! - - """upsert condition""" - on_conflict: match_demo_sessions_on_conflict - ): match_demo_sessions - - """ - insert data into the table: "match_lineup_players" - """ - insert_match_lineup_players( - """the rows to be inserted""" - objects: [match_lineup_players_insert_input!]! - - """upsert condition""" - on_conflict: match_lineup_players_on_conflict - ): match_lineup_players_mutation_response - - """ - insert a single row into the table: "match_lineup_players" - """ - insert_match_lineup_players_one( - """the row to be inserted""" - object: match_lineup_players_insert_input! - - """upsert condition""" - on_conflict: match_lineup_players_on_conflict - ): match_lineup_players - - """ - insert data into the table: "match_lineups" - """ - insert_match_lineups( - """the rows to be inserted""" - objects: [match_lineups_insert_input!]! - - """upsert condition""" - on_conflict: match_lineups_on_conflict - ): match_lineups_mutation_response - - """ - insert a single row into the table: "match_lineups" - """ - insert_match_lineups_one( - """the row to be inserted""" - object: match_lineups_insert_input! - - """upsert condition""" - on_conflict: match_lineups_on_conflict - ): match_lineups - - """ - insert data into the table: "match_map_demos" - """ - insert_match_map_demos( - """the rows to be inserted""" - objects: [match_map_demos_insert_input!]! - - """upsert condition""" - on_conflict: match_map_demos_on_conflict - ): match_map_demos_mutation_response - - """ - insert a single row into the table: "match_map_demos" - """ - insert_match_map_demos_one( - """the row to be inserted""" - object: match_map_demos_insert_input! - - """upsert condition""" - on_conflict: match_map_demos_on_conflict - ): match_map_demos - - """ - insert data into the table: "match_map_rounds" - """ - insert_match_map_rounds( - """the rows to be inserted""" - objects: [match_map_rounds_insert_input!]! - - """upsert condition""" - on_conflict: match_map_rounds_on_conflict - ): match_map_rounds_mutation_response - - """ - insert a single row into the table: "match_map_rounds" - """ - insert_match_map_rounds_one( - """the row to be inserted""" - object: match_map_rounds_insert_input! - - """upsert condition""" - on_conflict: match_map_rounds_on_conflict - ): match_map_rounds - - """ - insert data into the table: "match_map_veto_picks" - """ - insert_match_map_veto_picks( - """the rows to be inserted""" - objects: [match_map_veto_picks_insert_input!]! - - """upsert condition""" - on_conflict: match_map_veto_picks_on_conflict - ): match_map_veto_picks_mutation_response - - """ - insert a single row into the table: "match_map_veto_picks" - """ - insert_match_map_veto_picks_one( - """the row to be inserted""" - object: match_map_veto_picks_insert_input! - - """upsert condition""" - on_conflict: match_map_veto_picks_on_conflict - ): match_map_veto_picks - - """ - insert data into the table: "match_maps" - """ - insert_match_maps( - """the rows to be inserted""" - objects: [match_maps_insert_input!]! - - """upsert condition""" - on_conflict: match_maps_on_conflict - ): match_maps_mutation_response - - """ - insert a single row into the table: "match_maps" - """ - insert_match_maps_one( - """the row to be inserted""" - object: match_maps_insert_input! - - """upsert condition""" - on_conflict: match_maps_on_conflict - ): match_maps - - """ - insert data into the table: "match_options" - """ - insert_match_options( - """the rows to be inserted""" - objects: [match_options_insert_input!]! - - """upsert condition""" - on_conflict: match_options_on_conflict - ): match_options_mutation_response - - """ - insert a single row into the table: "match_options" - """ - insert_match_options_one( - """the row to be inserted""" - object: match_options_insert_input! - - """upsert condition""" - on_conflict: match_options_on_conflict - ): match_options - - """ - insert data into the table: "match_region_veto_picks" - """ - insert_match_region_veto_picks( - """the rows to be inserted""" - objects: [match_region_veto_picks_insert_input!]! - - """upsert condition""" - on_conflict: match_region_veto_picks_on_conflict - ): match_region_veto_picks_mutation_response - - """ - insert a single row into the table: "match_region_veto_picks" - """ - insert_match_region_veto_picks_one( - """the row to be inserted""" - object: match_region_veto_picks_insert_input! - - """upsert condition""" - on_conflict: match_region_veto_picks_on_conflict - ): match_region_veto_picks - - """ - insert data into the table: "match_streams" - """ - insert_match_streams( - """the rows to be inserted""" - objects: [match_streams_insert_input!]! - - """upsert condition""" - on_conflict: match_streams_on_conflict - ): match_streams_mutation_response - - """ - insert a single row into the table: "match_streams" - """ - insert_match_streams_one( - """the row to be inserted""" - object: match_streams_insert_input! - - """upsert condition""" - on_conflict: match_streams_on_conflict - ): match_streams - - """ - insert data into the table: "match_type_cfgs" - """ - insert_match_type_cfgs( - """the rows to be inserted""" - objects: [match_type_cfgs_insert_input!]! - - """upsert condition""" - on_conflict: match_type_cfgs_on_conflict - ): match_type_cfgs_mutation_response - - """ - insert a single row into the table: "match_type_cfgs" - """ - insert_match_type_cfgs_one( - """the row to be inserted""" - object: match_type_cfgs_insert_input! - - """upsert condition""" - on_conflict: match_type_cfgs_on_conflict - ): match_type_cfgs - - """ - insert data into the table: "matches" - """ - insert_matches( - """the rows to be inserted""" - objects: [matches_insert_input!]! - - """upsert condition""" - on_conflict: matches_on_conflict - ): matches_mutation_response - - """ - insert a single row into the table: "matches" - """ - insert_matches_one( - """the row to be inserted""" - object: matches_insert_input! - - """upsert condition""" - on_conflict: matches_on_conflict - ): matches - - """ - insert data into the table: "migration_hashes.hashes" - """ - insert_migration_hashes_hashes( - """the rows to be inserted""" - objects: [migration_hashes_hashes_insert_input!]! - - """upsert condition""" - on_conflict: migration_hashes_hashes_on_conflict - ): migration_hashes_hashes_mutation_response - - """ - insert a single row into the table: "migration_hashes.hashes" - """ - insert_migration_hashes_hashes_one( - """the row to be inserted""" - object: migration_hashes_hashes_insert_input! - - """upsert condition""" - on_conflict: migration_hashes_hashes_on_conflict - ): migration_hashes_hashes - - """ - insert data into the table: "v_my_friends" - """ - insert_my_friends( - """the rows to be inserted""" - objects: [my_friends_insert_input!]! - ): my_friends_mutation_response - - """ - insert a single row into the table: "v_my_friends" - """ - insert_my_friends_one( - """the row to be inserted""" - object: my_friends_insert_input! - ): my_friends - - """ - insert data into the table: "news_articles" - """ - insert_news_articles( - """the rows to be inserted""" - objects: [news_articles_insert_input!]! - - """upsert condition""" - on_conflict: news_articles_on_conflict - ): news_articles_mutation_response - - """ - insert a single row into the table: "news_articles" - """ - insert_news_articles_one( - """the row to be inserted""" - object: news_articles_insert_input! - - """upsert condition""" - on_conflict: news_articles_on_conflict - ): news_articles - - """ - insert data into the table: "notification_preferences" - """ - insert_notification_preferences( - """the rows to be inserted""" - objects: [notification_preferences_insert_input!]! - - """upsert condition""" - on_conflict: notification_preferences_on_conflict - ): notification_preferences_mutation_response - - """ - insert a single row into the table: "notification_preferences" - """ - insert_notification_preferences_one( - """the row to be inserted""" - object: notification_preferences_insert_input! - - """upsert condition""" - on_conflict: notification_preferences_on_conflict - ): notification_preferences - - """ - insert data into the table: "notifications" - """ - insert_notifications( - """the rows to be inserted""" - objects: [notifications_insert_input!]! - - """upsert condition""" - on_conflict: notifications_on_conflict - ): notifications_mutation_response - - """ - insert a single row into the table: "notifications" - """ - insert_notifications_one( - """the row to be inserted""" - object: notifications_insert_input! - - """upsert condition""" - on_conflict: notifications_on_conflict - ): notifications - - """ - insert data into the table: "pending_match_import_players" - """ - insert_pending_match_import_players( - """the rows to be inserted""" - objects: [pending_match_import_players_insert_input!]! - - """upsert condition""" - on_conflict: pending_match_import_players_on_conflict - ): pending_match_import_players_mutation_response - - """ - insert a single row into the table: "pending_match_import_players" - """ - insert_pending_match_import_players_one( - """the row to be inserted""" - object: pending_match_import_players_insert_input! - - """upsert condition""" - on_conflict: pending_match_import_players_on_conflict - ): pending_match_import_players - - """ - insert data into the table: "pending_match_imports" - """ - insert_pending_match_imports( - """the rows to be inserted""" - objects: [pending_match_imports_insert_input!]! - - """upsert condition""" - on_conflict: pending_match_imports_on_conflict - ): pending_match_imports_mutation_response - - """ - insert a single row into the table: "pending_match_imports" - """ - insert_pending_match_imports_one( - """the row to be inserted""" - object: pending_match_imports_insert_input! - - """upsert condition""" - on_conflict: pending_match_imports_on_conflict - ): pending_match_imports - - """ - insert data into the table: "player_aim_stats_demo" - """ - insert_player_aim_stats_demo( - """the rows to be inserted""" - objects: [player_aim_stats_demo_insert_input!]! - - """upsert condition""" - on_conflict: player_aim_stats_demo_on_conflict - ): player_aim_stats_demo_mutation_response - - """ - insert a single row into the table: "player_aim_stats_demo" - """ - insert_player_aim_stats_demo_one( - """the row to be inserted""" - object: player_aim_stats_demo_insert_input! - - """upsert condition""" - on_conflict: player_aim_stats_demo_on_conflict - ): player_aim_stats_demo - - """ - insert data into the table: "player_aim_weapon_stats" - """ - insert_player_aim_weapon_stats( - """the rows to be inserted""" - objects: [player_aim_weapon_stats_insert_input!]! - - """upsert condition""" - on_conflict: player_aim_weapon_stats_on_conflict - ): player_aim_weapon_stats_mutation_response - - """ - insert a single row into the table: "player_aim_weapon_stats" - """ - insert_player_aim_weapon_stats_one( - """the row to be inserted""" - object: player_aim_weapon_stats_insert_input! - - """upsert condition""" - on_conflict: player_aim_weapon_stats_on_conflict - ): player_aim_weapon_stats - - """ - insert data into the table: "player_assists" - """ - insert_player_assists( - """the rows to be inserted""" - objects: [player_assists_insert_input!]! - - """upsert condition""" - on_conflict: player_assists_on_conflict - ): player_assists_mutation_response - - """ - insert a single row into the table: "player_assists" - """ - insert_player_assists_one( - """the row to be inserted""" - object: player_assists_insert_input! - - """upsert condition""" - on_conflict: player_assists_on_conflict - ): player_assists - - """ - insert data into the table: "player_damages" - """ - insert_player_damages( - """the rows to be inserted""" - objects: [player_damages_insert_input!]! - - """upsert condition""" - on_conflict: player_damages_on_conflict - ): player_damages_mutation_response - - """ - insert a single row into the table: "player_damages" - """ - insert_player_damages_one( - """the row to be inserted""" - object: player_damages_insert_input! - - """upsert condition""" - on_conflict: player_damages_on_conflict - ): player_damages - - """ - insert data into the table: "player_elo" - """ - insert_player_elo( - """the rows to be inserted""" - objects: [player_elo_insert_input!]! - - """upsert condition""" - on_conflict: player_elo_on_conflict - ): player_elo_mutation_response - - """ - insert a single row into the table: "player_elo" - """ - insert_player_elo_one( - """the row to be inserted""" - object: player_elo_insert_input! - - """upsert condition""" - on_conflict: player_elo_on_conflict - ): player_elo - - """ - insert data into the table: "player_faceit_rank_history" - """ - insert_player_faceit_rank_history( - """the rows to be inserted""" - objects: [player_faceit_rank_history_insert_input!]! - - """upsert condition""" - on_conflict: player_faceit_rank_history_on_conflict - ): player_faceit_rank_history_mutation_response - - """ - insert a single row into the table: "player_faceit_rank_history" - """ - insert_player_faceit_rank_history_one( - """the row to be inserted""" - object: player_faceit_rank_history_insert_input! - - """upsert condition""" - on_conflict: player_faceit_rank_history_on_conflict - ): player_faceit_rank_history - - """ - insert data into the table: "player_flashes" - """ - insert_player_flashes( - """the rows to be inserted""" - objects: [player_flashes_insert_input!]! - - """upsert condition""" - on_conflict: player_flashes_on_conflict - ): player_flashes_mutation_response - - """ - insert a single row into the table: "player_flashes" - """ - insert_player_flashes_one( - """the row to be inserted""" - object: player_flashes_insert_input! - - """upsert condition""" - on_conflict: player_flashes_on_conflict - ): player_flashes - - """ - insert data into the table: "player_kills" - """ - insert_player_kills( - """the rows to be inserted""" - objects: [player_kills_insert_input!]! - - """upsert condition""" - on_conflict: player_kills_on_conflict - ): player_kills_mutation_response - - """ - insert data into the table: "player_kills_by_weapon" - """ - insert_player_kills_by_weapon( - """the rows to be inserted""" - objects: [player_kills_by_weapon_insert_input!]! - - """upsert condition""" - on_conflict: player_kills_by_weapon_on_conflict - ): player_kills_by_weapon_mutation_response - - """ - insert a single row into the table: "player_kills_by_weapon" - """ - insert_player_kills_by_weapon_one( - """the row to be inserted""" - object: player_kills_by_weapon_insert_input! - - """upsert condition""" - on_conflict: player_kills_by_weapon_on_conflict - ): player_kills_by_weapon - - """ - insert a single row into the table: "player_kills" - """ - insert_player_kills_one( - """the row to be inserted""" - object: player_kills_insert_input! - - """upsert condition""" - on_conflict: player_kills_on_conflict - ): player_kills - - """ - insert data into the table: "player_leaderboard_rank" - """ - insert_player_leaderboard_rank( - """the rows to be inserted""" - objects: [player_leaderboard_rank_insert_input!]! - ): player_leaderboard_rank_mutation_response - - """ - insert a single row into the table: "player_leaderboard_rank" - """ - insert_player_leaderboard_rank_one( - """the row to be inserted""" - object: player_leaderboard_rank_insert_input! - ): player_leaderboard_rank - - """ - insert data into the table: "player_match_map_stats" - """ - insert_player_match_map_stats( - """the rows to be inserted""" - objects: [player_match_map_stats_insert_input!]! - - """upsert condition""" - on_conflict: player_match_map_stats_on_conflict - ): player_match_map_stats_mutation_response - - """ - insert a single row into the table: "player_match_map_stats" - """ - insert_player_match_map_stats_one( - """the row to be inserted""" - object: player_match_map_stats_insert_input! - - """upsert condition""" - on_conflict: player_match_map_stats_on_conflict - ): player_match_map_stats - - """ - insert data into the table: "player_objectives" - """ - insert_player_objectives( - """the rows to be inserted""" - objects: [player_objectives_insert_input!]! - - """upsert condition""" - on_conflict: player_objectives_on_conflict - ): player_objectives_mutation_response - - """ - insert a single row into the table: "player_objectives" - """ - insert_player_objectives_one( - """the row to be inserted""" - object: player_objectives_insert_input! - - """upsert condition""" - on_conflict: player_objectives_on_conflict - ): player_objectives - - """ - insert data into the table: "player_premier_rank_history" - """ - insert_player_premier_rank_history( - """the rows to be inserted""" - objects: [player_premier_rank_history_insert_input!]! - - """upsert condition""" - on_conflict: player_premier_rank_history_on_conflict - ): player_premier_rank_history_mutation_response - - """ - insert a single row into the table: "player_premier_rank_history" - """ - insert_player_premier_rank_history_one( - """the row to be inserted""" - object: player_premier_rank_history_insert_input! - - """upsert condition""" - on_conflict: player_premier_rank_history_on_conflict - ): player_premier_rank_history - - """ - insert data into the table: "player_sanctions" - """ - insert_player_sanctions( - """the rows to be inserted""" - objects: [player_sanctions_insert_input!]! - - """upsert condition""" - on_conflict: player_sanctions_on_conflict - ): player_sanctions_mutation_response - - """ - insert a single row into the table: "player_sanctions" - """ - insert_player_sanctions_one( - """the row to be inserted""" - object: player_sanctions_insert_input! - - """upsert condition""" - on_conflict: player_sanctions_on_conflict - ): player_sanctions - - """ - insert data into the table: "player_season_stats" - """ - insert_player_season_stats( - """the rows to be inserted""" - objects: [player_season_stats_insert_input!]! - - """upsert condition""" - on_conflict: player_season_stats_on_conflict - ): player_season_stats_mutation_response - - """ - insert a single row into the table: "player_season_stats" - """ - insert_player_season_stats_one( - """the row to be inserted""" - object: player_season_stats_insert_input! - - """upsert condition""" - on_conflict: player_season_stats_on_conflict - ): player_season_stats - - """ - insert data into the table: "player_stats" - """ - insert_player_stats( - """the rows to be inserted""" - objects: [player_stats_insert_input!]! - - """upsert condition""" - on_conflict: player_stats_on_conflict - ): player_stats_mutation_response - - """ - insert a single row into the table: "player_stats" - """ - insert_player_stats_one( - """the row to be inserted""" - object: player_stats_insert_input! - - """upsert condition""" - on_conflict: player_stats_on_conflict - ): player_stats - - """ - insert data into the table: "player_steam_bot_friend" - """ - insert_player_steam_bot_friend( - """the rows to be inserted""" - objects: [player_steam_bot_friend_insert_input!]! - - """upsert condition""" - on_conflict: player_steam_bot_friend_on_conflict - ): player_steam_bot_friend_mutation_response - - """ - insert a single row into the table: "player_steam_bot_friend" - """ - insert_player_steam_bot_friend_one( - """the row to be inserted""" - object: player_steam_bot_friend_insert_input! - - """upsert condition""" - on_conflict: player_steam_bot_friend_on_conflict - ): player_steam_bot_friend - - """ - insert data into the table: "player_steam_match_auth" - """ - insert_player_steam_match_auth( - """the rows to be inserted""" - objects: [player_steam_match_auth_insert_input!]! - - """upsert condition""" - on_conflict: player_steam_match_auth_on_conflict - ): player_steam_match_auth_mutation_response - - """ - insert a single row into the table: "player_steam_match_auth" - """ - insert_player_steam_match_auth_one( - """the row to be inserted""" - object: player_steam_match_auth_insert_input! - - """upsert condition""" - on_conflict: player_steam_match_auth_on_conflict - ): player_steam_match_auth - - """ - insert data into the table: "player_unused_utility" - """ - insert_player_unused_utility( - """the rows to be inserted""" - objects: [player_unused_utility_insert_input!]! - - """upsert condition""" - on_conflict: player_unused_utility_on_conflict - ): player_unused_utility_mutation_response - - """ - insert a single row into the table: "player_unused_utility" - """ - insert_player_unused_utility_one( - """the row to be inserted""" - object: player_unused_utility_insert_input! - - """upsert condition""" - on_conflict: player_unused_utility_on_conflict - ): player_unused_utility - - """ - insert data into the table: "player_utility" - """ - insert_player_utility( - """the rows to be inserted""" - objects: [player_utility_insert_input!]! - - """upsert condition""" - on_conflict: player_utility_on_conflict - ): player_utility_mutation_response - - """ - insert a single row into the table: "player_utility" - """ - insert_player_utility_one( - """the row to be inserted""" - object: player_utility_insert_input! - - """upsert condition""" - on_conflict: player_utility_on_conflict - ): player_utility - - """ - insert data into the table: "players" - """ - insert_players( - """the rows to be inserted""" - objects: [players_insert_input!]! - - """upsert condition""" - on_conflict: players_on_conflict - ): players_mutation_response - - """ - insert a single row into the table: "players" - """ - insert_players_one( - """the row to be inserted""" - object: players_insert_input! - - """upsert condition""" - on_conflict: players_on_conflict - ): players - - """ - insert data into the table: "plugin_versions" - """ - insert_plugin_versions( - """the rows to be inserted""" - objects: [plugin_versions_insert_input!]! - - """upsert condition""" - on_conflict: plugin_versions_on_conflict - ): plugin_versions_mutation_response - - """ - insert a single row into the table: "plugin_versions" - """ - insert_plugin_versions_one( - """the row to be inserted""" - object: plugin_versions_insert_input! - - """upsert condition""" - on_conflict: plugin_versions_on_conflict - ): plugin_versions - - """ - insert data into the table: "push_subscriptions" - """ - insert_push_subscriptions( - """the rows to be inserted""" - objects: [push_subscriptions_insert_input!]! - - """upsert condition""" - on_conflict: push_subscriptions_on_conflict - ): push_subscriptions_mutation_response - - """ - insert a single row into the table: "push_subscriptions" - """ - insert_push_subscriptions_one( - """the row to be inserted""" - object: push_subscriptions_insert_input! - - """upsert condition""" - on_conflict: push_subscriptions_on_conflict - ): push_subscriptions - - """ - insert data into the table: "v_role_permissions" - """ - insert_role_permissions( - """the rows to be inserted""" - objects: [role_permissions_insert_input!]! - ): role_permissions_mutation_response - - """ - insert a single row into the table: "v_role_permissions" - """ - insert_role_permissions_one( - """the row to be inserted""" - object: role_permissions_insert_input! - ): role_permissions - - """ - insert data into the table: "seasons" - """ - insert_seasons( - """the rows to be inserted""" - objects: [seasons_insert_input!]! - - """upsert condition""" - on_conflict: seasons_on_conflict - ): seasons_mutation_response - - """ - insert a single row into the table: "seasons" - """ - insert_seasons_one( - """the row to be inserted""" - object: seasons_insert_input! - - """upsert condition""" - on_conflict: seasons_on_conflict - ): seasons - - """ - insert data into the table: "server_regions" - """ - insert_server_regions( - """the rows to be inserted""" - objects: [server_regions_insert_input!]! - - """upsert condition""" - on_conflict: server_regions_on_conflict - ): server_regions_mutation_response - - """ - insert a single row into the table: "server_regions" - """ - insert_server_regions_one( - """the row to be inserted""" - object: server_regions_insert_input! - - """upsert condition""" - on_conflict: server_regions_on_conflict - ): server_regions - - """ - insert data into the table: "servers" - """ - insert_servers( - """the rows to be inserted""" - objects: [servers_insert_input!]! - - """upsert condition""" - on_conflict: servers_on_conflict - ): servers_mutation_response - - """ - insert a single row into the table: "servers" - """ - insert_servers_one( - """the row to be inserted""" - object: servers_insert_input! - - """upsert condition""" - on_conflict: servers_on_conflict - ): servers - - """ - insert data into the table: "settings" - """ - insert_settings( - """the rows to be inserted""" - objects: [settings_insert_input!]! - - """upsert condition""" - on_conflict: settings_on_conflict - ): settings_mutation_response - - """ - insert a single row into the table: "settings" - """ - insert_settings_one( - """the row to be inserted""" - object: settings_insert_input! - - """upsert condition""" - on_conflict: settings_on_conflict - ): settings - - """ - insert data into the table: "steam_account_claims" - """ - insert_steam_account_claims( - """the rows to be inserted""" - objects: [steam_account_claims_insert_input!]! - - """upsert condition""" - on_conflict: steam_account_claims_on_conflict - ): steam_account_claims_mutation_response - - """ - insert a single row into the table: "steam_account_claims" - """ - insert_steam_account_claims_one( - """the row to be inserted""" - object: steam_account_claims_insert_input! - - """upsert condition""" - on_conflict: steam_account_claims_on_conflict - ): steam_account_claims - - """ - insert data into the table: "steam_accounts" - """ - insert_steam_accounts( - """the rows to be inserted""" - objects: [steam_accounts_insert_input!]! - - """upsert condition""" - on_conflict: steam_accounts_on_conflict - ): steam_accounts_mutation_response - - """ - insert a single row into the table: "steam_accounts" - """ - insert_steam_accounts_one( - """the row to be inserted""" - object: steam_accounts_insert_input! - - """upsert condition""" - on_conflict: steam_accounts_on_conflict - ): steam_accounts - - """ - insert data into the table: "system_alerts" - """ - insert_system_alerts( - """the rows to be inserted""" - objects: [system_alerts_insert_input!]! - - """upsert condition""" - on_conflict: system_alerts_on_conflict - ): system_alerts_mutation_response - - """ - insert a single row into the table: "system_alerts" - """ - insert_system_alerts_one( - """the row to be inserted""" - object: system_alerts_insert_input! - - """upsert condition""" - on_conflict: system_alerts_on_conflict - ): system_alerts - - """ - insert data into the table: "team_invites" - """ - insert_team_invites( - """the rows to be inserted""" - objects: [team_invites_insert_input!]! - - """upsert condition""" - on_conflict: team_invites_on_conflict - ): team_invites_mutation_response - - """ - insert a single row into the table: "team_invites" - """ - insert_team_invites_one( - """the row to be inserted""" - object: team_invites_insert_input! - - """upsert condition""" - on_conflict: team_invites_on_conflict - ): team_invites - - """ - insert data into the table: "team_roster" - """ - insert_team_roster( - """the rows to be inserted""" - objects: [team_roster_insert_input!]! - - """upsert condition""" - on_conflict: team_roster_on_conflict - ): team_roster_mutation_response - - """ - insert a single row into the table: "team_roster" - """ - insert_team_roster_one( - """the row to be inserted""" - object: team_roster_insert_input! - - """upsert condition""" - on_conflict: team_roster_on_conflict - ): team_roster - - """ - insert data into the table: "team_scrim_alerts" - """ - insert_team_scrim_alerts( - """the rows to be inserted""" - objects: [team_scrim_alerts_insert_input!]! - - """upsert condition""" - on_conflict: team_scrim_alerts_on_conflict - ): team_scrim_alerts_mutation_response - - """ - insert a single row into the table: "team_scrim_alerts" - """ - insert_team_scrim_alerts_one( - """the row to be inserted""" - object: team_scrim_alerts_insert_input! - - """upsert condition""" - on_conflict: team_scrim_alerts_on_conflict - ): team_scrim_alerts - - """ - insert data into the table: "team_scrim_availability" - """ - insert_team_scrim_availability( - """the rows to be inserted""" - objects: [team_scrim_availability_insert_input!]! - - """upsert condition""" - on_conflict: team_scrim_availability_on_conflict - ): team_scrim_availability_mutation_response - - """ - insert a single row into the table: "team_scrim_availability" - """ - insert_team_scrim_availability_one( - """the row to be inserted""" - object: team_scrim_availability_insert_input! - - """upsert condition""" - on_conflict: team_scrim_availability_on_conflict - ): team_scrim_availability - - """ - insert data into the table: "team_scrim_request_proposals" - """ - insert_team_scrim_request_proposals( - """the rows to be inserted""" - objects: [team_scrim_request_proposals_insert_input!]! - - """upsert condition""" - on_conflict: team_scrim_request_proposals_on_conflict - ): team_scrim_request_proposals_mutation_response - - """ - insert a single row into the table: "team_scrim_request_proposals" - """ - insert_team_scrim_request_proposals_one( - """the row to be inserted""" - object: team_scrim_request_proposals_insert_input! - - """upsert condition""" - on_conflict: team_scrim_request_proposals_on_conflict - ): team_scrim_request_proposals - - """ - insert data into the table: "team_scrim_requests" - """ - insert_team_scrim_requests( - """the rows to be inserted""" - objects: [team_scrim_requests_insert_input!]! - - """upsert condition""" - on_conflict: team_scrim_requests_on_conflict - ): team_scrim_requests_mutation_response - - """ - insert a single row into the table: "team_scrim_requests" - """ - insert_team_scrim_requests_one( - """the row to be inserted""" - object: team_scrim_requests_insert_input! - - """upsert condition""" - on_conflict: team_scrim_requests_on_conflict - ): team_scrim_requests - - """ - insert data into the table: "team_scrim_settings" - """ - insert_team_scrim_settings( - """the rows to be inserted""" - objects: [team_scrim_settings_insert_input!]! - - """upsert condition""" - on_conflict: team_scrim_settings_on_conflict - ): team_scrim_settings_mutation_response - - """ - insert a single row into the table: "team_scrim_settings" - """ - insert_team_scrim_settings_one( - """the row to be inserted""" - object: team_scrim_settings_insert_input! - - """upsert condition""" - on_conflict: team_scrim_settings_on_conflict - ): team_scrim_settings - - """ - insert data into the table: "team_suggestions" - """ - insert_team_suggestions( - """the rows to be inserted""" - objects: [team_suggestions_insert_input!]! - - """upsert condition""" - on_conflict: team_suggestions_on_conflict - ): team_suggestions_mutation_response - - """ - insert a single row into the table: "team_suggestions" - """ - insert_team_suggestions_one( - """the row to be inserted""" - object: team_suggestions_insert_input! - - """upsert condition""" - on_conflict: team_suggestions_on_conflict - ): team_suggestions - - """ - insert data into the table: "teams" - """ - insert_teams( - """the rows to be inserted""" - objects: [teams_insert_input!]! - - """upsert condition""" - on_conflict: teams_on_conflict - ): teams_mutation_response - - """ - insert a single row into the table: "teams" - """ - insert_teams_one( - """the row to be inserted""" - object: teams_insert_input! - - """upsert condition""" - on_conflict: teams_on_conflict - ): teams - - """ - insert data into the table: "tournament_awards" - """ - insert_tournament_awards( - """the rows to be inserted""" - objects: [tournament_awards_insert_input!]! - - """upsert condition""" - on_conflict: tournament_awards_on_conflict - ): tournament_awards_mutation_response - - """ - insert a single row into the table: "tournament_awards" - """ - insert_tournament_awards_one( - """the row to be inserted""" - object: tournament_awards_insert_input! - - """upsert condition""" - on_conflict: tournament_awards_on_conflict - ): tournament_awards - - """ - insert data into the table: "tournament_brackets" - """ - insert_tournament_brackets( - """the rows to be inserted""" - objects: [tournament_brackets_insert_input!]! - - """upsert condition""" - on_conflict: tournament_brackets_on_conflict - ): tournament_brackets_mutation_response - - """ - insert a single row into the table: "tournament_brackets" - """ - insert_tournament_brackets_one( - """the row to be inserted""" - object: tournament_brackets_insert_input! - - """upsert condition""" - on_conflict: tournament_brackets_on_conflict - ): tournament_brackets - - """ - insert data into the table: "tournament_categories" - """ - insert_tournament_categories( - """the rows to be inserted""" - objects: [tournament_categories_insert_input!]! - - """upsert condition""" - on_conflict: tournament_categories_on_conflict - ): tournament_categories_mutation_response - - """ - insert a single row into the table: "tournament_categories" - """ - insert_tournament_categories_one( - """the row to be inserted""" - object: tournament_categories_insert_input! - - """upsert condition""" - on_conflict: tournament_categories_on_conflict - ): tournament_categories - - """ - insert data into the table: "tournament_free_agents" - """ - insert_tournament_free_agents( - """the rows to be inserted""" - objects: [tournament_free_agents_insert_input!]! - - """upsert condition""" - on_conflict: tournament_free_agents_on_conflict - ): tournament_free_agents_mutation_response - - """ - insert a single row into the table: "tournament_free_agents" - """ - insert_tournament_free_agents_one( - """the row to be inserted""" - object: tournament_free_agents_insert_input! - - """upsert condition""" - on_conflict: tournament_free_agents_on_conflict - ): tournament_free_agents - - """ - insert data into the table: "tournament_invite_code_uses" - """ - insert_tournament_invite_code_uses( - """the rows to be inserted""" - objects: [tournament_invite_code_uses_insert_input!]! - - """upsert condition""" - on_conflict: tournament_invite_code_uses_on_conflict - ): tournament_invite_code_uses_mutation_response - - """ - insert a single row into the table: "tournament_invite_code_uses" - """ - insert_tournament_invite_code_uses_one( - """the row to be inserted""" - object: tournament_invite_code_uses_insert_input! - - """upsert condition""" - on_conflict: tournament_invite_code_uses_on_conflict - ): tournament_invite_code_uses - - """ - insert data into the table: "tournament_invite_codes" - """ - insert_tournament_invite_codes( - """the rows to be inserted""" - objects: [tournament_invite_codes_insert_input!]! - - """upsert condition""" - on_conflict: tournament_invite_codes_on_conflict - ): tournament_invite_codes_mutation_response - - """ - insert a single row into the table: "tournament_invite_codes" - """ - insert_tournament_invite_codes_one( - """the row to be inserted""" - object: tournament_invite_codes_insert_input! - - """upsert condition""" - on_conflict: tournament_invite_codes_on_conflict - ): tournament_invite_codes - - """ - insert data into the table: "tournament_invites" - """ - insert_tournament_invites( - """the rows to be inserted""" - objects: [tournament_invites_insert_input!]! - - """upsert condition""" - on_conflict: tournament_invites_on_conflict - ): tournament_invites_mutation_response - - """ - insert a single row into the table: "tournament_invites" - """ - insert_tournament_invites_one( - """the row to be inserted""" - object: tournament_invites_insert_input! - - """upsert condition""" - on_conflict: tournament_invites_on_conflict - ): tournament_invites - - """ - insert data into the table: "tournament_leaderboard_entries" - """ - insert_tournament_leaderboard_entries( - """the rows to be inserted""" - objects: [tournament_leaderboard_entries_insert_input!]! - ): tournament_leaderboard_entries_mutation_response - - """ - insert a single row into the table: "tournament_leaderboard_entries" - """ - insert_tournament_leaderboard_entries_one( - """the row to be inserted""" - object: tournament_leaderboard_entries_insert_input! - ): tournament_leaderboard_entries - - """ - insert data into the table: "tournament_no_shows" - """ - insert_tournament_no_shows( - """the rows to be inserted""" - objects: [tournament_no_shows_insert_input!]! - - """upsert condition""" - on_conflict: tournament_no_shows_on_conflict - ): tournament_no_shows_mutation_response - - """ - insert a single row into the table: "tournament_no_shows" - """ - insert_tournament_no_shows_one( - """the row to be inserted""" - object: tournament_no_shows_insert_input! - - """upsert condition""" - on_conflict: tournament_no_shows_on_conflict - ): tournament_no_shows - - """ - insert data into the table: "tournament_organizer_teams" - """ - insert_tournament_organizer_teams( - """the rows to be inserted""" - objects: [tournament_organizer_teams_insert_input!]! - - """upsert condition""" - on_conflict: tournament_organizer_teams_on_conflict - ): tournament_organizer_teams_mutation_response - - """ - insert a single row into the table: "tournament_organizer_teams" - """ - insert_tournament_organizer_teams_one( - """the row to be inserted""" - object: tournament_organizer_teams_insert_input! - - """upsert condition""" - on_conflict: tournament_organizer_teams_on_conflict - ): tournament_organizer_teams - - """ - insert data into the table: "tournament_organizers" - """ - insert_tournament_organizers( - """the rows to be inserted""" - objects: [tournament_organizers_insert_input!]! - - """upsert condition""" - on_conflict: tournament_organizers_on_conflict - ): tournament_organizers_mutation_response - - """ - insert a single row into the table: "tournament_organizers" - """ - insert_tournament_organizers_one( - """the row to be inserted""" - object: tournament_organizers_insert_input! - - """upsert condition""" - on_conflict: tournament_organizers_on_conflict - ): tournament_organizers - - """ - insert data into the table: "tournament_prizes" - """ - insert_tournament_prizes( - """the rows to be inserted""" - objects: [tournament_prizes_insert_input!]! - - """upsert condition""" - on_conflict: tournament_prizes_on_conflict - ): tournament_prizes_mutation_response - - """ - insert a single row into the table: "tournament_prizes" - """ - insert_tournament_prizes_one( - """the row to be inserted""" - object: tournament_prizes_insert_input! - - """upsert condition""" - on_conflict: tournament_prizes_on_conflict - ): tournament_prizes - - """ - insert data into the table: "tournament_registration_unlocks" - """ - insert_tournament_registration_unlocks( - """the rows to be inserted""" - objects: [tournament_registration_unlocks_insert_input!]! - - """upsert condition""" - on_conflict: tournament_registration_unlocks_on_conflict - ): tournament_registration_unlocks_mutation_response - - """ - insert a single row into the table: "tournament_registration_unlocks" - """ - insert_tournament_registration_unlocks_one( - """the row to be inserted""" - object: tournament_registration_unlocks_insert_input! - - """upsert condition""" - on_conflict: tournament_registration_unlocks_on_conflict - ): tournament_registration_unlocks - - """ - insert data into the table: "tournament_stage_windows" - """ - insert_tournament_stage_windows( - """the rows to be inserted""" - objects: [tournament_stage_windows_insert_input!]! - - """upsert condition""" - on_conflict: tournament_stage_windows_on_conflict - ): tournament_stage_windows_mutation_response - - """ - insert a single row into the table: "tournament_stage_windows" - """ - insert_tournament_stage_windows_one( - """the row to be inserted""" - object: tournament_stage_windows_insert_input! - - """upsert condition""" - on_conflict: tournament_stage_windows_on_conflict - ): tournament_stage_windows - - """ - insert data into the table: "tournament_stages" - """ - insert_tournament_stages( - """the rows to be inserted""" - objects: [tournament_stages_insert_input!]! - - """upsert condition""" - on_conflict: tournament_stages_on_conflict - ): tournament_stages_mutation_response - - """ - insert a single row into the table: "tournament_stages" - """ - insert_tournament_stages_one( - """the row to be inserted""" - object: tournament_stages_insert_input! - - """upsert condition""" - on_conflict: tournament_stages_on_conflict - ): tournament_stages - - """ - insert data into the table: "tournament_team_invites" - """ - insert_tournament_team_invites( - """the rows to be inserted""" - objects: [tournament_team_invites_insert_input!]! - - """upsert condition""" - on_conflict: tournament_team_invites_on_conflict - ): tournament_team_invites_mutation_response - - """ - insert a single row into the table: "tournament_team_invites" - """ - insert_tournament_team_invites_one( - """the row to be inserted""" - object: tournament_team_invites_insert_input! - - """upsert condition""" - on_conflict: tournament_team_invites_on_conflict - ): tournament_team_invites - - """ - insert data into the table: "tournament_team_roster" - """ - insert_tournament_team_roster( - """the rows to be inserted""" - objects: [tournament_team_roster_insert_input!]! - - """upsert condition""" - on_conflict: tournament_team_roster_on_conflict - ): tournament_team_roster_mutation_response - - """ - insert a single row into the table: "tournament_team_roster" - """ - insert_tournament_team_roster_one( - """the row to be inserted""" - object: tournament_team_roster_insert_input! - - """upsert condition""" - on_conflict: tournament_team_roster_on_conflict - ): tournament_team_roster - - """ - insert data into the table: "tournament_teams" - """ - insert_tournament_teams( - """the rows to be inserted""" - objects: [tournament_teams_insert_input!]! - - """upsert condition""" - on_conflict: tournament_teams_on_conflict - ): tournament_teams_mutation_response - - """ - insert a single row into the table: "tournament_teams" - """ - insert_tournament_teams_one( - """the row to be inserted""" - object: tournament_teams_insert_input! - - """upsert condition""" - on_conflict: tournament_teams_on_conflict - ): tournament_teams - - """ - insert data into the table: "tournaments" - """ - insert_tournaments( - """the rows to be inserted""" - objects: [tournaments_insert_input!]! - - """upsert condition""" - on_conflict: tournaments_on_conflict - ): tournaments_mutation_response - - """ - insert a single row into the table: "tournaments" - """ - insert_tournaments_one( - """the row to be inserted""" - object: tournaments_insert_input! - - """upsert condition""" - on_conflict: tournaments_on_conflict - ): tournaments - - """ - insert data into the table: "utility_collection_items" - """ - insert_utility_collection_items( - """the rows to be inserted""" - objects: [utility_collection_items_insert_input!]! - - """upsert condition""" - on_conflict: utility_collection_items_on_conflict - ): utility_collection_items_mutation_response - - """ - insert a single row into the table: "utility_collection_items" - """ - insert_utility_collection_items_one( - """the row to be inserted""" - object: utility_collection_items_insert_input! - - """upsert condition""" - on_conflict: utility_collection_items_on_conflict - ): utility_collection_items - - """ - insert data into the table: "utility_collections" - """ - insert_utility_collections( - """the rows to be inserted""" - objects: [utility_collections_insert_input!]! - - """upsert condition""" - on_conflict: utility_collections_on_conflict - ): utility_collections_mutation_response - - """ - insert a single row into the table: "utility_collections" - """ - insert_utility_collections_one( - """the row to be inserted""" - object: utility_collections_insert_input! - - """upsert condition""" - on_conflict: utility_collections_on_conflict - ): utility_collections - - """ - insert data into the table: "utility_demo_mines" - """ - insert_utility_demo_mines( - """the rows to be inserted""" - objects: [utility_demo_mines_insert_input!]! - - """upsert condition""" - on_conflict: utility_demo_mines_on_conflict - ): utility_demo_mines_mutation_response - - """ - insert a single row into the table: "utility_demo_mines" - """ - insert_utility_demo_mines_one( - """the row to be inserted""" - object: utility_demo_mines_insert_input! - - """upsert condition""" - on_conflict: utility_demo_mines_on_conflict - ): utility_demo_mines - - """ - insert data into the table: "utility_demo_throws" - """ - insert_utility_demo_throws( - """the rows to be inserted""" - objects: [utility_demo_throws_insert_input!]! - - """upsert condition""" - on_conflict: utility_demo_throws_on_conflict - ): utility_demo_throws_mutation_response - - """ - insert a single row into the table: "utility_demo_throws" - """ - insert_utility_demo_throws_one( - """the row to be inserted""" - object: utility_demo_throws_insert_input! - - """upsert condition""" - on_conflict: utility_demo_throws_on_conflict - ): utility_demo_throws - - """ - insert data into the table: "utility_drift_results" - """ - insert_utility_drift_results( - """the rows to be inserted""" - objects: [utility_drift_results_insert_input!]! - - """upsert condition""" - on_conflict: utility_drift_results_on_conflict - ): utility_drift_results_mutation_response - - """ - insert a single row into the table: "utility_drift_results" - """ - insert_utility_drift_results_one( - """the row to be inserted""" - object: utility_drift_results_insert_input! - - """upsert condition""" - on_conflict: utility_drift_results_on_conflict - ): utility_drift_results - - """ - insert data into the table: "utility_drift_scans" - """ - insert_utility_drift_scans( - """the rows to be inserted""" - objects: [utility_drift_scans_insert_input!]! - - """upsert condition""" - on_conflict: utility_drift_scans_on_conflict - ): utility_drift_scans_mutation_response - - """ - insert a single row into the table: "utility_drift_scans" - """ - insert_utility_drift_scans_one( - """the row to be inserted""" - object: utility_drift_scans_insert_input! - - """upsert condition""" - on_conflict: utility_drift_scans_on_conflict - ): utility_drift_scans - - """ - insert data into the table: "utility_lineup_favorites" - """ - insert_utility_lineup_favorites( - """the rows to be inserted""" - objects: [utility_lineup_favorites_insert_input!]! - - """upsert condition""" - on_conflict: utility_lineup_favorites_on_conflict - ): utility_lineup_favorites_mutation_response - - """ - insert a single row into the table: "utility_lineup_favorites" - """ - insert_utility_lineup_favorites_one( - """the row to be inserted""" - object: utility_lineup_favorites_insert_input! - - """upsert condition""" - on_conflict: utility_lineup_favorites_on_conflict - ): utility_lineup_favorites - - """ - insert data into the table: "utility_lineup_progress" - """ - insert_utility_lineup_progress( - """the rows to be inserted""" - objects: [utility_lineup_progress_insert_input!]! - - """upsert condition""" - on_conflict: utility_lineup_progress_on_conflict - ): utility_lineup_progress_mutation_response - - """ - insert a single row into the table: "utility_lineup_progress" - """ - insert_utility_lineup_progress_one( - """the row to be inserted""" - object: utility_lineup_progress_insert_input! - - """upsert condition""" - on_conflict: utility_lineup_progress_on_conflict - ): utility_lineup_progress - - """ - insert data into the table: "utility_lineup_renders" - """ - insert_utility_lineup_renders( - """the rows to be inserted""" - objects: [utility_lineup_renders_insert_input!]! - - """upsert condition""" - on_conflict: utility_lineup_renders_on_conflict - ): utility_lineup_renders_mutation_response - - """ - insert a single row into the table: "utility_lineup_renders" - """ - insert_utility_lineup_renders_one( - """the row to be inserted""" - object: utility_lineup_renders_insert_input! - - """upsert condition""" - on_conflict: utility_lineup_renders_on_conflict - ): utility_lineup_renders - - """ - insert data into the table: "utility_lineup_repairs" - """ - insert_utility_lineup_repairs( - """the rows to be inserted""" - objects: [utility_lineup_repairs_insert_input!]! - - """upsert condition""" - on_conflict: utility_lineup_repairs_on_conflict - ): utility_lineup_repairs_mutation_response - - """ - insert a single row into the table: "utility_lineup_repairs" - """ - insert_utility_lineup_repairs_one( - """the row to be inserted""" - object: utility_lineup_repairs_insert_input! - - """upsert condition""" - on_conflict: utility_lineup_repairs_on_conflict - ): utility_lineup_repairs - - """ - insert data into the table: "utility_lineup_votes" - """ - insert_utility_lineup_votes( - """the rows to be inserted""" - objects: [utility_lineup_votes_insert_input!]! - - """upsert condition""" - on_conflict: utility_lineup_votes_on_conflict - ): utility_lineup_votes_mutation_response - - """ - insert a single row into the table: "utility_lineup_votes" - """ - insert_utility_lineup_votes_one( - """the row to be inserted""" - object: utility_lineup_votes_insert_input! - - """upsert condition""" - on_conflict: utility_lineup_votes_on_conflict - ): utility_lineup_votes - - """ - insert data into the table: "utility_lineups" - """ - insert_utility_lineups( - """the rows to be inserted""" - objects: [utility_lineups_insert_input!]! - - """upsert condition""" - on_conflict: utility_lineups_on_conflict - ): utility_lineups_mutation_response - - """ - insert a single row into the table: "utility_lineups" - """ - insert_utility_lineups_one( - """the row to be inserted""" - object: utility_lineups_insert_input! - - """upsert condition""" - on_conflict: utility_lineups_on_conflict - ): utility_lineups - - """ - insert data into the table: "utility_meta_lineups" - """ - insert_utility_meta_lineups( - """the rows to be inserted""" - objects: [utility_meta_lineups_insert_input!]! - - """upsert condition""" - on_conflict: utility_meta_lineups_on_conflict - ): utility_meta_lineups_mutation_response - - """ - insert a single row into the table: "utility_meta_lineups" - """ - insert_utility_meta_lineups_one( - """the row to be inserted""" - object: utility_meta_lineups_insert_input! - - """upsert condition""" - on_conflict: utility_meta_lineups_on_conflict - ): utility_meta_lineups - - """ - insert data into the table: "utility_playbook_steps" - """ - insert_utility_playbook_steps( - """the rows to be inserted""" - objects: [utility_playbook_steps_insert_input!]! - - """upsert condition""" - on_conflict: utility_playbook_steps_on_conflict - ): utility_playbook_steps_mutation_response - - """ - insert a single row into the table: "utility_playbook_steps" - """ - insert_utility_playbook_steps_one( - """the row to be inserted""" - object: utility_playbook_steps_insert_input! - - """upsert condition""" - on_conflict: utility_playbook_steps_on_conflict - ): utility_playbook_steps - - """ - insert data into the table: "utility_playbooks" - """ - insert_utility_playbooks( - """the rows to be inserted""" - objects: [utility_playbooks_insert_input!]! - - """upsert condition""" - on_conflict: utility_playbooks_on_conflict - ): utility_playbooks_mutation_response - - """ - insert a single row into the table: "utility_playbooks" - """ - insert_utility_playbooks_one( - """the row to be inserted""" - object: utility_playbooks_insert_input! - - """upsert condition""" - on_conflict: utility_playbooks_on_conflict - ): utility_playbooks - - """ - insert data into the table: "utility_practice_invites" - """ - insert_utility_practice_invites( - """the rows to be inserted""" - objects: [utility_practice_invites_insert_input!]! - - """upsert condition""" - on_conflict: utility_practice_invites_on_conflict - ): utility_practice_invites_mutation_response - - """ - insert a single row into the table: "utility_practice_invites" - """ - insert_utility_practice_invites_one( - """the row to be inserted""" - object: utility_practice_invites_insert_input! - - """upsert condition""" - on_conflict: utility_practice_invites_on_conflict - ): utility_practice_invites - - """ - insert data into the table: "utility_practice_sessions" - """ - insert_utility_practice_sessions( - """the rows to be inserted""" - objects: [utility_practice_sessions_insert_input!]! - - """upsert condition""" - on_conflict: utility_practice_sessions_on_conflict - ): utility_practice_sessions_mutation_response - - """ - insert a single row into the table: "utility_practice_sessions" - """ - insert_utility_practice_sessions_one( - """the row to be inserted""" - object: utility_practice_sessions_insert_input! - - """upsert condition""" - on_conflict: utility_practice_sessions_on_conflict - ): utility_practice_sessions - - """ - insert data into the table: "v_match_captains" - """ - insert_v_match_captains( - """the rows to be inserted""" - objects: [v_match_captains_insert_input!]! - ): v_match_captains_mutation_response - - """ - insert a single row into the table: "v_match_captains" - """ - insert_v_match_captains_one( - """the row to be inserted""" - object: v_match_captains_insert_input! - ): v_match_captains - - """ - insert data into the table: "v_match_map_backup_rounds" - """ - insert_v_match_map_backup_rounds( - """the rows to be inserted""" - objects: [v_match_map_backup_rounds_insert_input!]! - ): v_match_map_backup_rounds_mutation_response - - """ - insert a single row into the table: "v_match_map_backup_rounds" - """ - insert_v_match_map_backup_rounds_one( - """the row to be inserted""" - object: v_match_map_backup_rounds_insert_input! - ): v_match_map_backup_rounds - - """ - insert data into the table: "v_player_match_map_hltv" - """ - insert_v_player_match_map_hltv( - """the rows to be inserted""" - objects: [v_player_match_map_hltv_insert_input!]! - ): v_player_match_map_hltv_mutation_response - - """ - insert a single row into the table: "v_player_match_map_hltv" - """ - insert_v_player_match_map_hltv_one( - """the row to be inserted""" - object: v_player_match_map_hltv_insert_input! - ): v_player_match_map_hltv - - """ - insert data into the table: "v_pool_maps" - """ - insert_v_pool_maps( - """the rows to be inserted""" - objects: [v_pool_maps_insert_input!]! - ): v_pool_maps_mutation_response - - """ - insert a single row into the table: "v_pool_maps" - """ - insert_v_pool_maps_one( - """the row to be inserted""" - object: v_pool_maps_insert_input! - ): v_pool_maps - - """ - insert data into the table: "v_team_stage_results" - """ - insert_v_team_stage_results( - """the rows to be inserted""" - objects: [v_team_stage_results_insert_input!]! - - """upsert condition""" - on_conflict: v_team_stage_results_on_conflict - ): v_team_stage_results_mutation_response - - """ - insert a single row into the table: "v_team_stage_results" - """ - insert_v_team_stage_results_one( - """the row to be inserted""" - object: v_team_stage_results_insert_input! - - """upsert condition""" - 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 - - """Invite players to a utility practice session""" - inviteToUtilityPractice(session_id: uuid!, steam_ids: [String!]!): SuccessOutput - - """joinDraftGame""" - joinDraftGame(draftGameId: uuid!, inviteCode: String): SuccessOutput - - """joinDraftGameAsParty""" - joinDraftGameAsParty(draftGameId: uuid!, inviteCode: String): SuccessOutput - - """Register for a tournament that drafts teams, alone or with your lobby""" - joinTournamentAsFreeAgent(tournament_id: uuid!, with_party: Boolean): SuccessOutput - - """Join a utility practice session""" - joinUtilityPractice(invite_code: String, session_id: uuid): UtilityPracticeSessionOutput - kickServerPlayer(reason: String, serverId: String!, steam_id: String!): KickResult! - - """ - execute VOLATILE function "league_award_forfeit" which returns "matches" - """ - league_award_forfeit( - """ - input parameters for function "league_award_forfeit" - """ - args: league_award_forfeit_args! - - """distinct select on columns""" - distinct_on: [matches_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: [matches_order_by!] - - """filter the rows returned""" - where: matches_bool_exp - ): [matches!]! - leaveLineup(match_id: String!): SuccessOutput - - """Withdraw from a tournament's free agent pool""" - leaveTournamentAsFreeAgent(tournament_id: uuid!): SuccessOutput - - """Leave a utility practice session""" - leaveUtilityPractice(session_id: uuid!): SuccessOutput - linkSteamMatchHistory(auth_code: String!, share_code: String!): SteamMatchHistoryLinkOutput - - """Load dev fixture data (dev only)""" - loadFixtures: SuccessOutput - - """Load a utility playbook into a running practice session""" - loadUtilityPlaybookIntoSession(playbook_id: uuid, session_id: uuid!): SuccessOutput - - """logout""" - logout: SuccessOutput - - """Move file or directory on game server""" - moveServerItem(dest_path: String!, node_id: String!, server_id: String, source_path: String!): SuccessOutput - - """Return the latest S3 orphan-scan report (admin only).""" - orphanedDemosScanResult: OrphanScanResultOutput - - """ - Flag in-flight clip_render_jobs paused; pod halts after current highlight. - """ - pauseClipRenderBatch(match_map_id: uuid!): SuccessOutput - pollSteamMatchHistory: SteamMatchHistoryPollOutput - - """previewDraftGame""" - previewDraftGame(draftGameId: uuid!, inviteCode: String): DraftGamePreviewOutput - - """Resolve a game mode into the plugins and cfg a server would load""" - previewGameMode(gameModeId: uuid!): PreviewGameModeOutput - - """Delete every lineup that came from one origin source""" - purgeUtilityLineupSource(dry_run: Boolean, origin_source: String!): UtilityPurgeOutput - - """ - Build a multi-segment ClipSpec from a player+preset and queue it via the batch render path (no live demo session required) - """ - queueClipFromPreset(fps: Int, match_map_id: uuid!, preset: String!, resolution: String, target_name: String, target_steam_id: String!, title: String): CreateClipRenderOutput - randomizeTeams(match_id: uuid!): SuccessOutput - - """Organizer re-admits a team that missed check-in, then re-seeds""" - readmitTournamentTeam(tournament_id: uuid!, tournament_team_id: uuid!): SuccessOutput - rebootMatchServer(match_id: uuid!): SuccessOutput - - """ - execute VOLATILE function "recalculate_tournament_awards" which returns "award_recipients" - """ - recalculate_tournament_awards( - """ - input parameters for function "recalculate_tournament_awards" - """ - args: recalculate_tournament_awards_args! - - """distinct select on columns""" - distinct_on: [award_recipients_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: [award_recipients_order_by!] - - """filter the rows returned""" - where: award_recipients_bool_exp - ): [award_recipients!]! - - """ - Wipe and rebuild all player ELO from finished matches in chronological order (admin only). Runs in the background; track via recomputePlayerEloStatus. - """ - recomputePlayerElo: RecomputeEloStartedOutput - - """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 - - """ - Spend a tournament invite link for an unlock on an invite only tournament - """ - redeemTournamentInviteCode(code: String!, tournament_id: uuid!): SuccessOutput - - """ - Reindex every player into the Typesense search index (admin only). Runs in the background; track via refreshAllPlayersStatus. - """ - refreshAllPlayers: ReindexStartedOutput - - """Return the progress of the player reindex run (admin only).""" - refreshAllPlayersStatus: ReindexStatusOutput - refreshFaceitRank(steam_id: String!): SuccessOutput - refreshLiveHud(match_id: uuid!): SuccessOutput - registerName(name: String!): SuccessOutput - - """Re-mine one batch of demos after a miner change""" - remineUtilityMeta: UtilityRemineOutput - - """Remove dev fixture data (dev only)""" - removeFixtures: SuccessOutput - - """Remove a friends-role presence bot account""" - removeSteamPresenceBotAccount(account_id: String!): SuccessOutput - - """ - execute VOLATILE function "remove_league_team_from_season" which returns "league_team_seasons" - """ - remove_league_team_from_season( - """ - input parameters for function "remove_league_team_from_season" - """ - args: remove_league_team_from_season_args! - - """distinct select on columns""" - distinct_on: [league_team_seasons_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: [league_team_seasons_order_by!] - - """filter the rows returned""" - where: league_team_seasons_bool_exp - ): [league_team_seasons!]! - - """Rename file or directory on game server""" - renameServerItem(new_path: String!, node_id: String!, old_path: String!, server_id: String): SuccessOutput - - """Re-film a public lineup's preview clip""" - renderUtilityLineupPreview(utility_lineup_id: uuid!): UtilityRenderQueueOutput - - """ - execute VOLATILE function "reorder_league_divisions" which returns "league_divisions" - """ - reorder_league_divisions( - """ - input parameters for function "reorder_league_divisions" - """ - args: reorder_league_divisions_args! - - """distinct select on columns""" - distinct_on: [league_divisions_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: [league_divisions_order_by!] - - """filter the rows returned""" - where: league_divisions_bool_exp - ): [league_divisions!]! - - """Re-solve a lineup a drift scan says the map moved""" - repairUtilityLineup(session_id: uuid!, utility_lineup_id: uuid!): UtilitySolveOutput - - """ - Re-parse every demo in the system (admin only). Runs one demo at a time in the background; this can take a very long time. Track via reparseAllDemosStatus. - """ - reparseAllDemos: ReparseAllStartedOutput - - """Return the progress of the reparse-all-demos run (admin only).""" - reparseAllDemosStatus: ReparseAllStatusOutput - - """Re-parse demo metadata for a match map (admin only)""" - reparseDemo(match_map_id: uuid!): SuccessOutput - - """ - Re-parse all demos across every map for a match (admin only). Fires in the background and returns immediately. - """ - reparseMatchDemos(match_id: uuid!): SuccessOutput - requestNameChange(name: String!, steam_id: bigint!): SuccessOutput - - """ - Reset a terminal-state clip_render_jobs row back to queued and re-enqueue the batch worker (admin only). - """ - requeueClipRender(job_id: uuid!): SuccessOutput - - """respondDraftInvite""" - respondDraftInvite(accept: Boolean!, draftGameId: uuid!): SuccessOutput - - """respondToScrimRequest""" - respondToScrimRequest(accept: Boolean!, request_id: uuid!): SuccessOutput - restartService(service: String!): SuccessOutput - - """ - execute VOLATILE function "restart_league_season" which returns "league_seasons" - """ - restart_league_season( - """ - input parameters for function "restart_league_season" - """ - args: restart_league_season_args! - - """distinct select on columns""" - distinct_on: [league_seasons_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: [league_seasons_order_by!] - - """filter the rows returned""" - where: league_seasons_bool_exp - ): [league_seasons!]! - - """Clear paused flag and re-enqueue remaining queued clip_render_jobs.""" - resumeClipRenderBatch(match_map_id: uuid!): SuccessOutput - - """ - Delete terminal clip_render_jobs rows for a match_map (all or only failed/cancelled) and re-create them from their saved specs. - """ - retryClipRenderBatch(match_map_id: uuid!, only_failed: Boolean): SuccessOutput - retryPendingMatchImport(valve_match_id: String!): PendingMatchImportActionOutput - - """Revoke a hand-granted award""" - revokeAward(id: uuid!): SuccessOutput - - """ - Organizer kills a tournament invite link without losing who already used it - """ - revokeTournamentInviteCode(invite_code_id: uuid!): SuccessOutput - sanctionServerPlayer(duration: Float, reason: String, serverId: String, steam_id: String!, type: String!): SanctionResult! - - """Create or update a catalog award""" - saveAward(allow_multiple: Boolean, description: String, event_id: uuid, id: uuid, league_season_id: uuid, name: String!, season_id: uuid, silhouette: Int, tier: String!, tournament_id: uuid): Award - - """ - Create or update a first-party news post. Caller role is verified against public.post_news_role. - """ - saveNewsPost(content_markdown: String!, cover_image_url: String, id: uuid, teaser: String, title: String!): NewsPost - - """Mine a lineup out of a parsed demo""" - saveUtilityLineupFromDemo(collection_id: uuid, description: String, grenade_id: Int!, match_id: uuid!, match_map_id: uuid!, name: String!, tags: [String!], team_id: uuid, visibility: String): UtilityLineupOutput - - """Save a lineup recorded in a practice session""" - saveUtilityLineupFromPractice(collection_id: uuid, description: String, name: String!, session_id: uuid!, tags: [String!], team_id: uuid, utility_lineup_id: uuid!, visibility: String): UtilityLineupOutput - - """Create or update a utility playbook and its steps""" - saveUtilityPlaybook(description: String, map_name: String!, name: String!, playbook_id: uuid, side: String!, steps: [UtilityPlaybookStepInput!], team_id: uuid, visibility: String): UtilityPlaybookOutput - - """ - Scan S3 for objects not referenced in the database (admin only). Runs in the background; results land in the logs and orphanedDemosScanResult. - """ - scanOrphanedDemos: ScanStartedOutput - - """Scan all players who have been on a lineup for Steam VAC/game bans""" - scanSteamBans: SuccessOutput - - """scheduleMatch""" - scheduleMatch(match_id: uuid!, time: timestamptz): SuccessOutput - - """sendScrimRequest""" - sendScrimRequest(best_of: Int, from_team_id: uuid!, proposed_scheduled_at: timestamptz!, region: String, to_team_id: uuid!): SuccessOutput - sendUtilityDrillToServer(lineup_ids: [String!]!): UtilityDrillLoadOutput - sendUtilityLineupToServer(lineup_id: uuid!): UtilityLoadOutput - sendUtilityScratchToServer(lineup: UtilityScratchLineupInput!): UtilityLoadOutput - setGameNodeSchedulingState(enabled: Boolean!, game_server_node_id: String!): SuccessOutput - - """Track new releases of a game plugin, or pin it where it is""" - setGamePluginAutoUpdate(enabled: Boolean!, slug: String!): SuccessOutput - setHudMode(match_id: uuid!, mode: String!): SuccessOutput - - """setMapWinner""" - setMapWinner(match_id: uuid!, match_map_id: uuid!, winning_lineup_id: uuid!): SuccessOutput - - """setMatchWinner""" - setMatchWinner(match_id: uuid!, winning_lineup_id: uuid!): SuccessOutput - - """ - Publish or unpublish a news post. Caller role is verified against public.post_news_role. - """ - setNewsPostStatus(id: uuid!, status: String!): NewsPost - - """Map a tournament placement to an award""" - setTournamentAward(award_id: uuid, custom_name: String, placement: Int!, silhouette: Int, tournament_id: uuid!): TournamentAward - setUtilityPracticeAccess(access: String!, session_id: uuid!): SuccessOutput - setupGameServer: SetupGameServeOutput - skipShaders(match_id: uuid!): SuccessOutput - - """Ask a practice server to solve a throw onto a point""" - solveUtilityLineup(from_x: Float, from_y: Float, from_z: Float, name: String, session_id: uuid!, target_x: Float!, target_y: Float!, target_z: Float!, tolerance: Float, utility_type: String): UtilitySolveOutput - specAutodirector(enabled: Boolean!, match_id: uuid!): SuccessOutput - specClick(button: String!, match_id: uuid!): SuccessOutput - specHud(match_id: uuid!, visible: Boolean!): SuccessOutput - specHudSides(match_id: uuid!): SuccessOutput - specJump(match_id: uuid!): SuccessOutput - specPlayer(accountid: Int!, match_id: uuid!): SuccessOutput - specScoreboard(match_id: uuid!, show: Boolean!): SuccessOutput - specSlot(match_id: uuid!, slot: Int!): SuccessOutput - specXray(enabled: Boolean!, match_id: uuid!): SuccessOutput - startLive(match_id: uuid!, mode: String!): SuccessOutput - - """startMatch""" - startMatch(match_id: uuid!, server_id: uuid): SuccessOutput - - """Re-fly a map's lineups against two collision meshes""" - startUtilityDriftScan(from_revision: String, map_name: String!, to_revision: String): UtilityDriftScanOutput - - """Start a utility practice session""" - startUtilityPractice(access: String, collection_id: uuid, is_open: Boolean, map_name: String!, region: String, server_id: uuid, team_id: uuid): UtilityPracticeSessionOutput - stopGpuSession(game_server_node_id: uuid!): SuccessOutput - stopLive(match_id: uuid!): SuccessOutput - - """Stop a utility practice session""" - stopUtilityPractice(session_id: uuid!): SuccessOutput - stopWatchDemo(match_map_id: uuid!): SuccessOutput - - """Submit a Steam Guard code for a presence bot account""" - submitSteamPresenceSteamGuard(account_id: String!, code: String!): SuccessOutput - swapLineups(match_id: uuid!): SuccessOutput - switchLineup(match_id: String!): SuccessOutput - switchLiveMatch(from_match_id: uuid!, mode: String!, to_match_id: uuid!): SuccessOutput - - """Pull the published map callouts for every enabled map""" - syncMapCallouts: MapCalloutSyncOutput - - """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! - - """Owner-only patch for clip title / visibility / target_steam_id.""" - updateClip(clip_id: uuid!, target_steam_id: String, title: String, visibility: String): SuccessOutput - updateCs(game: String, game_server_node_id: uuid): SuccessOutput - - """updateDraftGame""" - updateDraftGame(draftGameId: uuid!, settings: jsonb!): SuccessOutput - updateServices: SuccessOutput - - """ - update data of the table: "_map_pool" - """ - update__map_pool( - """sets the columns of the filtered rows to the given values""" - _set: _map_pool_set_input - - """filter the rows which have to be updated""" - where: _map_pool_bool_exp! - ): _map_pool_mutation_response - - """ - update single row of the table: "_map_pool" - """ - update__map_pool_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: _map_pool_set_input - pk_columns: _map_pool_pk_columns_input! - ): _map_pool - - """ - update multiples rows of table: "_map_pool" - """ - update__map_pool_many( - """updates to execute, in order""" - updates: [_map_pool_updates!]! - ): [_map_pool_mutation_response] - - """ - update data of the table: "abandoned_matches" - """ - update_abandoned_matches( - """increments the numeric columns with given value of the filtered values""" - _inc: abandoned_matches_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: abandoned_matches_set_input - - """filter the rows which have to be updated""" - where: abandoned_matches_bool_exp! - ): abandoned_matches_mutation_response - - """ - update single row of the table: "abandoned_matches" - """ - update_abandoned_matches_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: abandoned_matches_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: abandoned_matches_set_input - pk_columns: abandoned_matches_pk_columns_input! - ): abandoned_matches - - """ - update multiples rows of table: "abandoned_matches" - """ - update_abandoned_matches_many( - """updates to execute, in order""" - updates: [abandoned_matches_updates!]! - ): [abandoned_matches_mutation_response] - - """ - update data of the table: "api_keys" - """ - update_api_keys( - """increments the numeric columns with given value of the filtered values""" - _inc: api_keys_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: api_keys_set_input - - """filter the rows which have to be updated""" - where: api_keys_bool_exp! - ): api_keys_mutation_response - - """ - update single row of the table: "api_keys" - """ - update_api_keys_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: api_keys_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: api_keys_set_input - pk_columns: api_keys_pk_columns_input! - ): api_keys - - """ - update multiples rows of table: "api_keys" - """ - update_api_keys_many( - """updates to execute, in order""" - updates: [api_keys_updates!]! - ): [api_keys_mutation_response] - - """ - update data of the table: "award_recipients" - """ - update_award_recipients( - """increments the numeric columns with given value of the filtered values""" - _inc: award_recipients_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: award_recipients_set_input - - """filter the rows which have to be updated""" - where: award_recipients_bool_exp! - ): award_recipients_mutation_response - - """ - update single row of the table: "award_recipients" - """ - update_award_recipients_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: award_recipients_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: award_recipients_set_input - pk_columns: award_recipients_pk_columns_input! - ): award_recipients - - """ - update multiples rows of table: "award_recipients" - """ - update_award_recipients_many( - """updates to execute, in order""" - updates: [award_recipients_updates!]! - ): [award_recipients_mutation_response] - - """ - update data of the table: "awards" - """ - update_awards( - """increments the numeric columns with given value of the filtered values""" - _inc: awards_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: awards_set_input - - """filter the rows which have to be updated""" - where: awards_bool_exp! - ): awards_mutation_response - - """ - update single row of the table: "awards" - """ - update_awards_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: awards_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: awards_set_input - pk_columns: awards_pk_columns_input! - ): awards - - """ - update multiples rows of table: "awards" - """ - update_awards_many( - """updates to execute, in order""" - updates: [awards_updates!]! - ): [awards_mutation_response] - - """ - update data of the table: "chat_read_state" - """ - update_chat_read_state( - """increments the numeric columns with given value of the filtered values""" - _inc: chat_read_state_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: chat_read_state_set_input - - """filter the rows which have to be updated""" - where: chat_read_state_bool_exp! - ): chat_read_state_mutation_response - - """ - update single row of the table: "chat_read_state" - """ - update_chat_read_state_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: chat_read_state_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: chat_read_state_set_input - pk_columns: chat_read_state_pk_columns_input! - ): chat_read_state - - """ - update multiples rows of table: "chat_read_state" - """ - update_chat_read_state_many( - """updates to execute, in order""" - updates: [chat_read_state_updates!]! - ): [chat_read_state_mutation_response] - - """ - update data of the table: "clip_render_jobs" - """ - update_clip_render_jobs( - """append existing jsonb value of filtered columns with new jsonb value""" - _append: clip_render_jobs_append_input - - """ - 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 - - """ - 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 - - """ - 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 - - """increments the numeric columns with given value of the filtered values""" - _inc: clip_render_jobs_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: clip_render_jobs_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: clip_render_jobs_set_input - - """filter the rows which have to be updated""" - where: clip_render_jobs_bool_exp! - ): clip_render_jobs_mutation_response - - """ - update single row of the table: "clip_render_jobs" - """ - update_clip_render_jobs_by_pk( - """append existing jsonb value of filtered columns with new jsonb value""" - _append: clip_render_jobs_append_input - - """ - 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 - - """ - 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 - - """ - 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 - - """increments the numeric columns with given value of the filtered values""" - _inc: clip_render_jobs_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: clip_render_jobs_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: clip_render_jobs_set_input - pk_columns: clip_render_jobs_pk_columns_input! - ): clip_render_jobs - - """ - update multiples rows of table: "clip_render_jobs" - """ - update_clip_render_jobs_many( - """updates to execute, in order""" - updates: [clip_render_jobs_updates!]! - ): [clip_render_jobs_mutation_response] - - """ - update data of the table: "custom_pages" - """ - update_custom_pages( - """append existing jsonb value of filtered columns with new jsonb value""" - _append: custom_pages_append_input - - """ - 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 - - """ - 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 - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: custom_pages_delete_key_input - - """increments the numeric columns with given value of the filtered values""" - _inc: custom_pages_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: custom_pages_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: custom_pages_set_input - - """filter the rows which have to be updated""" - where: custom_pages_bool_exp! - ): custom_pages_mutation_response - - """ - update single row of the table: "custom_pages" - """ - update_custom_pages_by_pk( - """append existing jsonb value of filtered columns with new jsonb value""" - _append: custom_pages_append_input - - """ - 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 - - """ - 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 - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: custom_pages_delete_key_input - - """increments the numeric columns with given value of the filtered values""" - _inc: custom_pages_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: custom_pages_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: custom_pages_set_input - pk_columns: custom_pages_pk_columns_input! - ): custom_pages - - """ - update multiples rows of table: "custom_pages" - """ - update_custom_pages_many( - """updates to execute, in order""" - updates: [custom_pages_updates!]! - ): [custom_pages_mutation_response] - - """ - update data of the table: "db_backups" - """ - update_db_backups( - """increments the numeric columns with given value of the filtered values""" - _inc: db_backups_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: db_backups_set_input - - """filter the rows which have to be updated""" - where: db_backups_bool_exp! - ): db_backups_mutation_response - - """ - update single row of the table: "db_backups" - """ - update_db_backups_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: db_backups_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: db_backups_set_input - pk_columns: db_backups_pk_columns_input! - ): db_backups - - """ - update multiples rows of table: "db_backups" - """ - update_db_backups_many( - """updates to execute, in order""" - updates: [db_backups_updates!]! - ): [db_backups_mutation_response] - - """ - update data of the table: "direct_conversations" - """ - update_direct_conversations( - """increments the numeric columns with given value of the filtered values""" - _inc: direct_conversations_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: direct_conversations_set_input - - """filter the rows which have to be updated""" - where: direct_conversations_bool_exp! - ): direct_conversations_mutation_response - - """ - update single row of the table: "direct_conversations" - """ - update_direct_conversations_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: direct_conversations_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: direct_conversations_set_input - pk_columns: direct_conversations_pk_columns_input! - ): direct_conversations - - """ - update multiples rows of table: "direct_conversations" - """ - update_direct_conversations_many( - """updates to execute, in order""" - updates: [direct_conversations_updates!]! - ): [direct_conversations_mutation_response] - - """ - update data of the table: "direct_messages" - """ - update_direct_messages( - """increments the numeric columns with given value of the filtered values""" - _inc: direct_messages_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: direct_messages_set_input - - """filter the rows which have to be updated""" - where: direct_messages_bool_exp! - ): direct_messages_mutation_response - - """ - update single row of the table: "direct_messages" - """ - update_direct_messages_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: direct_messages_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: direct_messages_set_input - pk_columns: direct_messages_pk_columns_input! - ): direct_messages - - """ - update multiples rows of table: "direct_messages" - """ - update_direct_messages_many( - """updates to execute, in order""" - updates: [direct_messages_updates!]! - ): [direct_messages_mutation_response] - - """ - update data of the table: "draft_game_picks" - """ - update_draft_game_picks( - """increments the numeric columns with given value of the filtered values""" - _inc: draft_game_picks_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: draft_game_picks_set_input - - """filter the rows which have to be updated""" - where: draft_game_picks_bool_exp! - ): draft_game_picks_mutation_response - - """ - update single row of the table: "draft_game_picks" - """ - update_draft_game_picks_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: draft_game_picks_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: draft_game_picks_set_input - pk_columns: draft_game_picks_pk_columns_input! - ): draft_game_picks - - """ - update multiples rows of table: "draft_game_picks" - """ - update_draft_game_picks_many( - """updates to execute, in order""" - updates: [draft_game_picks_updates!]! - ): [draft_game_picks_mutation_response] - - """ - update data of the table: "draft_game_players" - """ - update_draft_game_players( - """increments the numeric columns with given value of the filtered values""" - _inc: draft_game_players_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: draft_game_players_set_input - - """filter the rows which have to be updated""" - where: draft_game_players_bool_exp! - ): draft_game_players_mutation_response - - """ - update single row of the table: "draft_game_players" - """ - update_draft_game_players_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: draft_game_players_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: draft_game_players_set_input - pk_columns: draft_game_players_pk_columns_input! - ): draft_game_players - - """ - update multiples rows of table: "draft_game_players" - """ - update_draft_game_players_many( - """updates to execute, in order""" - updates: [draft_game_players_updates!]! - ): [draft_game_players_mutation_response] - - """ - update data of the table: "draft_games" - """ - update_draft_games( - """increments the numeric columns with given value of the filtered values""" - _inc: draft_games_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: draft_games_set_input - - """filter the rows which have to be updated""" - where: draft_games_bool_exp! - ): draft_games_mutation_response - - """ - update single row of the table: "draft_games" - """ - update_draft_games_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: draft_games_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: draft_games_set_input - pk_columns: draft_games_pk_columns_input! - ): draft_games - - """ - update multiples rows of table: "draft_games" - """ - update_draft_games_many( - """updates to execute, in order""" - updates: [draft_games_updates!]! - ): [draft_games_mutation_response] - - """ - update data of the table: "e_award_sources" - """ - update_e_award_sources( - """sets the columns of the filtered rows to the given values""" - _set: e_award_sources_set_input - - """filter the rows which have to be updated""" - where: e_award_sources_bool_exp! - ): e_award_sources_mutation_response - - """ - update single row of the table: "e_award_sources" - """ - update_e_award_sources_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_award_sources_set_input - pk_columns: e_award_sources_pk_columns_input! - ): e_award_sources - - """ - update multiples rows of table: "e_award_sources" - """ - update_e_award_sources_many( - """updates to execute, in order""" - updates: [e_award_sources_updates!]! - ): [e_award_sources_mutation_response] - - """ - update data of the table: "e_award_tiers" - """ - update_e_award_tiers( - """sets the columns of the filtered rows to the given values""" - _set: e_award_tiers_set_input - - """filter the rows which have to be updated""" - where: e_award_tiers_bool_exp! - ): e_award_tiers_mutation_response - - """ - update single row of the table: "e_award_tiers" - """ - update_e_award_tiers_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_award_tiers_set_input - pk_columns: e_award_tiers_pk_columns_input! - ): e_award_tiers - - """ - update multiples rows of table: "e_award_tiers" - """ - update_e_award_tiers_many( - """updates to execute, in order""" - updates: [e_award_tiers_updates!]! - ): [e_award_tiers_mutation_response] - - """ - update data of the table: "e_check_in_settings" - """ - update_e_check_in_settings( - """sets the columns of the filtered rows to the given values""" - _set: e_check_in_settings_set_input - - """filter the rows which have to be updated""" - where: e_check_in_settings_bool_exp! - ): e_check_in_settings_mutation_response - - """ - update single row of the table: "e_check_in_settings" - """ - update_e_check_in_settings_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_check_in_settings_set_input - pk_columns: e_check_in_settings_pk_columns_input! - ): e_check_in_settings - - """ - update multiples rows of table: "e_check_in_settings" - """ - update_e_check_in_settings_many( - """updates to execute, in order""" - updates: [e_check_in_settings_updates!]! - ): [e_check_in_settings_mutation_response] - - """ - update data of the table: "e_draft_game_captain_selection" - """ - update_e_draft_game_captain_selection( - """sets the columns of the filtered rows to the given values""" - _set: e_draft_game_captain_selection_set_input - - """filter the rows which have to be updated""" - where: e_draft_game_captain_selection_bool_exp! - ): e_draft_game_captain_selection_mutation_response - - """ - update single row of the table: "e_draft_game_captain_selection" - """ - update_e_draft_game_captain_selection_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_draft_game_captain_selection_set_input - pk_columns: e_draft_game_captain_selection_pk_columns_input! - ): e_draft_game_captain_selection - - """ - update multiples rows of table: "e_draft_game_captain_selection" - """ - update_e_draft_game_captain_selection_many( - """updates to execute, in order""" - updates: [e_draft_game_captain_selection_updates!]! - ): [e_draft_game_captain_selection_mutation_response] - - """ - update data of the table: "e_draft_game_draft_order" - """ - update_e_draft_game_draft_order( - """sets the columns of the filtered rows to the given values""" - _set: e_draft_game_draft_order_set_input - - """filter the rows which have to be updated""" - where: e_draft_game_draft_order_bool_exp! - ): e_draft_game_draft_order_mutation_response - - """ - update single row of the table: "e_draft_game_draft_order" - """ - update_e_draft_game_draft_order_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_draft_game_draft_order_set_input - pk_columns: e_draft_game_draft_order_pk_columns_input! - ): e_draft_game_draft_order - - """ - update multiples rows of table: "e_draft_game_draft_order" - """ - update_e_draft_game_draft_order_many( - """updates to execute, in order""" - updates: [e_draft_game_draft_order_updates!]! - ): [e_draft_game_draft_order_mutation_response] - - """ - update data of the table: "e_draft_game_mode" - """ - update_e_draft_game_mode( - """sets the columns of the filtered rows to the given values""" - _set: e_draft_game_mode_set_input - - """filter the rows which have to be updated""" - where: e_draft_game_mode_bool_exp! - ): e_draft_game_mode_mutation_response - - """ - update single row of the table: "e_draft_game_mode" - """ - update_e_draft_game_mode_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_draft_game_mode_set_input - pk_columns: e_draft_game_mode_pk_columns_input! - ): e_draft_game_mode - - """ - update multiples rows of table: "e_draft_game_mode" - """ - update_e_draft_game_mode_many( - """updates to execute, in order""" - updates: [e_draft_game_mode_updates!]! - ): [e_draft_game_mode_mutation_response] - - """ - update data of the table: "e_draft_game_player_status" - """ - update_e_draft_game_player_status( - """sets the columns of the filtered rows to the given values""" - _set: e_draft_game_player_status_set_input - - """filter the rows which have to be updated""" - where: e_draft_game_player_status_bool_exp! - ): e_draft_game_player_status_mutation_response - - """ - update single row of the table: "e_draft_game_player_status" - """ - update_e_draft_game_player_status_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_draft_game_player_status_set_input - pk_columns: e_draft_game_player_status_pk_columns_input! - ): e_draft_game_player_status - - """ - update multiples rows of table: "e_draft_game_player_status" - """ - update_e_draft_game_player_status_many( - """updates to execute, in order""" - updates: [e_draft_game_player_status_updates!]! - ): [e_draft_game_player_status_mutation_response] - - """ - update data of the table: "e_draft_game_status" - """ - update_e_draft_game_status( - """sets the columns of the filtered rows to the given values""" - _set: e_draft_game_status_set_input - - """filter the rows which have to be updated""" - where: e_draft_game_status_bool_exp! - ): e_draft_game_status_mutation_response - - """ - update single row of the table: "e_draft_game_status" - """ - update_e_draft_game_status_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_draft_game_status_set_input - pk_columns: e_draft_game_status_pk_columns_input! - ): e_draft_game_status - - """ - update multiples rows of table: "e_draft_game_status" - """ - update_e_draft_game_status_many( - """updates to execute, in order""" - updates: [e_draft_game_status_updates!]! - ): [e_draft_game_status_mutation_response] - - """ - update data of the table: "e_event_media_access" - """ - update_e_event_media_access( - """sets the columns of the filtered rows to the given values""" - _set: e_event_media_access_set_input - - """filter the rows which have to be updated""" - where: e_event_media_access_bool_exp! - ): e_event_media_access_mutation_response - - """ - update single row of the table: "e_event_media_access" - """ - update_e_event_media_access_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_event_media_access_set_input - pk_columns: e_event_media_access_pk_columns_input! - ): e_event_media_access - - """ - update multiples rows of table: "e_event_media_access" - """ - update_e_event_media_access_many( - """updates to execute, in order""" - updates: [e_event_media_access_updates!]! - ): [e_event_media_access_mutation_response] - - """ - update data of the table: "e_event_visibility" - """ - update_e_event_visibility( - """sets the columns of the filtered rows to the given values""" - _set: e_event_visibility_set_input - - """filter the rows which have to be updated""" - where: e_event_visibility_bool_exp! - ): e_event_visibility_mutation_response - - """ - update single row of the table: "e_event_visibility" - """ - update_e_event_visibility_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_event_visibility_set_input - pk_columns: e_event_visibility_pk_columns_input! - ): e_event_visibility - - """ - update multiples rows of table: "e_event_visibility" - """ - update_e_event_visibility_many( - """updates to execute, in order""" - updates: [e_event_visibility_updates!]! - ): [e_event_visibility_mutation_response] - - """ - update data of the table: "e_friend_status" - """ - update_e_friend_status( - """sets the columns of the filtered rows to the given values""" - _set: e_friend_status_set_input - - """filter the rows which have to be updated""" - where: e_friend_status_bool_exp! - ): e_friend_status_mutation_response - - """ - update single row of the table: "e_friend_status" - """ - update_e_friend_status_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_friend_status_set_input - pk_columns: e_friend_status_pk_columns_input! - ): e_friend_status - - """ - update multiples rows of table: "e_friend_status" - """ - update_e_friend_status_many( - """updates to execute, in order""" - updates: [e_friend_status_updates!]! - ): [e_friend_status_mutation_response] - - """ - update data of the table: "e_game_cfg_types" - """ - update_e_game_cfg_types( - """sets the columns of the filtered rows to the given values""" - _set: e_game_cfg_types_set_input - - """filter the rows which have to be updated""" - where: e_game_cfg_types_bool_exp! - ): e_game_cfg_types_mutation_response - - """ - update single row of the table: "e_game_cfg_types" - """ - update_e_game_cfg_types_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_game_cfg_types_set_input - pk_columns: e_game_cfg_types_pk_columns_input! - ): e_game_cfg_types - - """ - update multiples rows of table: "e_game_cfg_types" - """ - update_e_game_cfg_types_many( - """updates to execute, in order""" - 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" - """ - update_e_game_server_node_statuses( - """sets the columns of the filtered rows to the given values""" - _set: e_game_server_node_statuses_set_input - - """filter the rows which have to be updated""" - where: e_game_server_node_statuses_bool_exp! - ): e_game_server_node_statuses_mutation_response - - """ - update single row of the table: "e_game_server_node_statuses" - """ - update_e_game_server_node_statuses_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_game_server_node_statuses_set_input - pk_columns: e_game_server_node_statuses_pk_columns_input! - ): e_game_server_node_statuses - - """ - update multiples rows of table: "e_game_server_node_statuses" - """ - update_e_game_server_node_statuses_many( - """updates to execute, in order""" - updates: [e_game_server_node_statuses_updates!]! - ): [e_game_server_node_statuses_mutation_response] - - """ - update data of the table: "e_league_movement_types" - """ - update_e_league_movement_types( - """sets the columns of the filtered rows to the given values""" - _set: e_league_movement_types_set_input - - """filter the rows which have to be updated""" - where: e_league_movement_types_bool_exp! - ): e_league_movement_types_mutation_response - - """ - update single row of the table: "e_league_movement_types" - """ - update_e_league_movement_types_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_league_movement_types_set_input - pk_columns: e_league_movement_types_pk_columns_input! - ): e_league_movement_types - - """ - update multiples rows of table: "e_league_movement_types" - """ - update_e_league_movement_types_many( - """updates to execute, in order""" - updates: [e_league_movement_types_updates!]! - ): [e_league_movement_types_mutation_response] - - """ - update data of the table: "e_league_proposal_statuses" - """ - update_e_league_proposal_statuses( - """sets the columns of the filtered rows to the given values""" - _set: e_league_proposal_statuses_set_input - - """filter the rows which have to be updated""" - where: e_league_proposal_statuses_bool_exp! - ): e_league_proposal_statuses_mutation_response - - """ - update single row of the table: "e_league_proposal_statuses" - """ - update_e_league_proposal_statuses_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_league_proposal_statuses_set_input - pk_columns: e_league_proposal_statuses_pk_columns_input! - ): e_league_proposal_statuses - - """ - update multiples rows of table: "e_league_proposal_statuses" - """ - update_e_league_proposal_statuses_many( - """updates to execute, in order""" - updates: [e_league_proposal_statuses_updates!]! - ): [e_league_proposal_statuses_mutation_response] - - """ - update data of the table: "e_league_registration_statuses" - """ - update_e_league_registration_statuses( - """sets the columns of the filtered rows to the given values""" - _set: e_league_registration_statuses_set_input - - """filter the rows which have to be updated""" - where: e_league_registration_statuses_bool_exp! - ): e_league_registration_statuses_mutation_response - - """ - update single row of the table: "e_league_registration_statuses" - """ - update_e_league_registration_statuses_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_league_registration_statuses_set_input - pk_columns: e_league_registration_statuses_pk_columns_input! - ): e_league_registration_statuses - - """ - update multiples rows of table: "e_league_registration_statuses" - """ - update_e_league_registration_statuses_many( - """updates to execute, in order""" - updates: [e_league_registration_statuses_updates!]! - ): [e_league_registration_statuses_mutation_response] - - """ - update data of the table: "e_league_season_statuses" - """ - update_e_league_season_statuses( - """sets the columns of the filtered rows to the given values""" - _set: e_league_season_statuses_set_input - - """filter the rows which have to be updated""" - where: e_league_season_statuses_bool_exp! - ): e_league_season_statuses_mutation_response - - """ - update single row of the table: "e_league_season_statuses" - """ - update_e_league_season_statuses_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_league_season_statuses_set_input - pk_columns: e_league_season_statuses_pk_columns_input! - ): e_league_season_statuses - - """ - update multiples rows of table: "e_league_season_statuses" - """ - update_e_league_season_statuses_many( - """updates to execute, in order""" - updates: [e_league_season_statuses_updates!]! - ): [e_league_season_statuses_mutation_response] - - """ - update data of the table: "e_lobby_access" - """ - update_e_lobby_access( - """sets the columns of the filtered rows to the given values""" - _set: e_lobby_access_set_input - - """filter the rows which have to be updated""" - where: e_lobby_access_bool_exp! - ): e_lobby_access_mutation_response - - """ - update single row of the table: "e_lobby_access" - """ - update_e_lobby_access_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_lobby_access_set_input - pk_columns: e_lobby_access_pk_columns_input! - ): e_lobby_access - - """ - update multiples rows of table: "e_lobby_access" - """ - update_e_lobby_access_many( - """updates to execute, in order""" - updates: [e_lobby_access_updates!]! - ): [e_lobby_access_mutation_response] - - """ - update data of the table: "e_lobby_player_status" - """ - update_e_lobby_player_status( - """sets the columns of the filtered rows to the given values""" - _set: e_lobby_player_status_set_input - - """filter the rows which have to be updated""" - where: e_lobby_player_status_bool_exp! - ): e_lobby_player_status_mutation_response - - """ - update single row of the table: "e_lobby_player_status" - """ - update_e_lobby_player_status_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_lobby_player_status_set_input - pk_columns: e_lobby_player_status_pk_columns_input! - ): e_lobby_player_status - - """ - update multiples rows of table: "e_lobby_player_status" - """ - update_e_lobby_player_status_many( - """updates to execute, in order""" - updates: [e_lobby_player_status_updates!]! - ): [e_lobby_player_status_mutation_response] - - """ - update data of the table: "e_map_pool_types" - """ - update_e_map_pool_types( - """sets the columns of the filtered rows to the given values""" - _set: e_map_pool_types_set_input - - """filter the rows which have to be updated""" - where: e_map_pool_types_bool_exp! - ): e_map_pool_types_mutation_response - - """ - update single row of the table: "e_map_pool_types" - """ - update_e_map_pool_types_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_map_pool_types_set_input - pk_columns: e_map_pool_types_pk_columns_input! - ): e_map_pool_types - - """ - update multiples rows of table: "e_map_pool_types" - """ - update_e_map_pool_types_many( - """updates to execute, in order""" - updates: [e_map_pool_types_updates!]! - ): [e_map_pool_types_mutation_response] - - """ - update data of the table: "e_match_clip_visibility" - """ - update_e_match_clip_visibility( - """sets the columns of the filtered rows to the given values""" - _set: e_match_clip_visibility_set_input - - """filter the rows which have to be updated""" - where: e_match_clip_visibility_bool_exp! - ): e_match_clip_visibility_mutation_response - - """ - update single row of the table: "e_match_clip_visibility" - """ - update_e_match_clip_visibility_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_match_clip_visibility_set_input - pk_columns: e_match_clip_visibility_pk_columns_input! - ): e_match_clip_visibility - - """ - update multiples rows of table: "e_match_clip_visibility" - """ - update_e_match_clip_visibility_many( - """updates to execute, in order""" - updates: [e_match_clip_visibility_updates!]! - ): [e_match_clip_visibility_mutation_response] - - """ - update data of the table: "e_match_map_status" - """ - update_e_match_map_status( - """sets the columns of the filtered rows to the given values""" - _set: e_match_map_status_set_input - - """filter the rows which have to be updated""" - where: e_match_map_status_bool_exp! - ): e_match_map_status_mutation_response - - """ - update single row of the table: "e_match_map_status" - """ - update_e_match_map_status_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_match_map_status_set_input - pk_columns: e_match_map_status_pk_columns_input! - ): e_match_map_status - - """ - update multiples rows of table: "e_match_map_status" - """ - update_e_match_map_status_many( - """updates to execute, in order""" - updates: [e_match_map_status_updates!]! - ): [e_match_map_status_mutation_response] - - """ - update data of the table: "e_match_mode" - """ - update_e_match_mode( - """sets the columns of the filtered rows to the given values""" - _set: e_match_mode_set_input - - """filter the rows which have to be updated""" - where: e_match_mode_bool_exp! - ): e_match_mode_mutation_response - - """ - update single row of the table: "e_match_mode" - """ - update_e_match_mode_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_match_mode_set_input - pk_columns: e_match_mode_pk_columns_input! - ): e_match_mode - - """ - update multiples rows of table: "e_match_mode" - """ - update_e_match_mode_many( - """updates to execute, in order""" - updates: [e_match_mode_updates!]! - ): [e_match_mode_mutation_response] - - """ - update data of the table: "e_match_party_sources" - """ - update_e_match_party_sources( - """sets the columns of the filtered rows to the given values""" - _set: e_match_party_sources_set_input - - """filter the rows which have to be updated""" - where: e_match_party_sources_bool_exp! - ): e_match_party_sources_mutation_response - - """ - update single row of the table: "e_match_party_sources" - """ - update_e_match_party_sources_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_match_party_sources_set_input - pk_columns: e_match_party_sources_pk_columns_input! - ): e_match_party_sources - - """ - update multiples rows of table: "e_match_party_sources" - """ - update_e_match_party_sources_many( - """updates to execute, in order""" - updates: [e_match_party_sources_updates!]! - ): [e_match_party_sources_mutation_response] - - """ - update data of the table: "e_match_status" - """ - update_e_match_status( - """sets the columns of the filtered rows to the given values""" - _set: e_match_status_set_input - - """filter the rows which have to be updated""" - where: e_match_status_bool_exp! - ): e_match_status_mutation_response - - """ - update single row of the table: "e_match_status" - """ - update_e_match_status_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_match_status_set_input - pk_columns: e_match_status_pk_columns_input! - ): e_match_status - - """ - update multiples rows of table: "e_match_status" - """ - update_e_match_status_many( - """updates to execute, in order""" - updates: [e_match_status_updates!]! - ): [e_match_status_mutation_response] - - """ - update data of the table: "e_match_types" - """ - update_e_match_types( - """sets the columns of the filtered rows to the given values""" - _set: e_match_types_set_input - - """filter the rows which have to be updated""" - where: e_match_types_bool_exp! - ): e_match_types_mutation_response - - """ - update single row of the table: "e_match_types" - """ - update_e_match_types_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_match_types_set_input - pk_columns: e_match_types_pk_columns_input! - ): e_match_types - - """ - update multiples rows of table: "e_match_types" - """ - update_e_match_types_many( - """updates to execute, in order""" - updates: [e_match_types_updates!]! - ): [e_match_types_mutation_response] - - """ - update data of the table: "e_notification_types" - """ - update_e_notification_types( - """sets the columns of the filtered rows to the given values""" - _set: e_notification_types_set_input - - """filter the rows which have to be updated""" - where: e_notification_types_bool_exp! - ): e_notification_types_mutation_response - - """ - update single row of the table: "e_notification_types" - """ - update_e_notification_types_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_notification_types_set_input - pk_columns: e_notification_types_pk_columns_input! - ): e_notification_types - - """ - update multiples rows of table: "e_notification_types" - """ - update_e_notification_types_many( - """updates to execute, in order""" - updates: [e_notification_types_updates!]! - ): [e_notification_types_mutation_response] - - """ - update data of the table: "e_objective_types" - """ - update_e_objective_types( - """sets the columns of the filtered rows to the given values""" - _set: e_objective_types_set_input - - """filter the rows which have to be updated""" - where: e_objective_types_bool_exp! - ): e_objective_types_mutation_response - - """ - update single row of the table: "e_objective_types" - """ - update_e_objective_types_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_objective_types_set_input - pk_columns: e_objective_types_pk_columns_input! - ): e_objective_types - - """ - update multiples rows of table: "e_objective_types" - """ - update_e_objective_types_many( - """updates to execute, in order""" - updates: [e_objective_types_updates!]! - ): [e_objective_types_mutation_response] - - """ - update data of the table: "e_player_roles" - """ - update_e_player_roles( - """sets the columns of the filtered rows to the given values""" - _set: e_player_roles_set_input - - """filter the rows which have to be updated""" - where: e_player_roles_bool_exp! - ): e_player_roles_mutation_response - - """ - update single row of the table: "e_player_roles" - """ - update_e_player_roles_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_player_roles_set_input - pk_columns: e_player_roles_pk_columns_input! - ): e_player_roles - - """ - update multiples rows of table: "e_player_roles" - """ - update_e_player_roles_many( - """updates to execute, in order""" - updates: [e_player_roles_updates!]! - ): [e_player_roles_mutation_response] - - """ - update data of the table: "e_plugin_runtimes" - """ - update_e_plugin_runtimes( - """sets the columns of the filtered rows to the given values""" - _set: e_plugin_runtimes_set_input - - """filter the rows which have to be updated""" - where: e_plugin_runtimes_bool_exp! - ): e_plugin_runtimes_mutation_response - - """ - update single row of the table: "e_plugin_runtimes" - """ - update_e_plugin_runtimes_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_plugin_runtimes_set_input - pk_columns: e_plugin_runtimes_pk_columns_input! - ): e_plugin_runtimes - - """ - update multiples rows of table: "e_plugin_runtimes" - """ - update_e_plugin_runtimes_many( - """updates to execute, in order""" - updates: [e_plugin_runtimes_updates!]! - ): [e_plugin_runtimes_mutation_response] - - """ - update data of the table: "e_ready_settings" - """ - update_e_ready_settings( - """sets the columns of the filtered rows to the given values""" - _set: e_ready_settings_set_input - - """filter the rows which have to be updated""" - where: e_ready_settings_bool_exp! - ): e_ready_settings_mutation_response - - """ - update single row of the table: "e_ready_settings" - """ - update_e_ready_settings_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_ready_settings_set_input - pk_columns: e_ready_settings_pk_columns_input! - ): e_ready_settings - - """ - update multiples rows of table: "e_ready_settings" - """ - update_e_ready_settings_many( - """updates to execute, in order""" - updates: [e_ready_settings_updates!]! - ): [e_ready_settings_mutation_response] - - """ - update data of the table: "e_sanction_scopes" - """ - update_e_sanction_scopes( - """sets the columns of the filtered rows to the given values""" - _set: e_sanction_scopes_set_input - - """filter the rows which have to be updated""" - where: e_sanction_scopes_bool_exp! - ): e_sanction_scopes_mutation_response - - """ - update single row of the table: "e_sanction_scopes" - """ - update_e_sanction_scopes_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_sanction_scopes_set_input - pk_columns: e_sanction_scopes_pk_columns_input! - ): e_sanction_scopes - - """ - update multiples rows of table: "e_sanction_scopes" - """ - update_e_sanction_scopes_many( - """updates to execute, in order""" - updates: [e_sanction_scopes_updates!]! - ): [e_sanction_scopes_mutation_response] - - """ - update data of the table: "e_sanction_sources" - """ - update_e_sanction_sources( - """increments the numeric columns with given value of the filtered values""" - _inc: e_sanction_sources_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: e_sanction_sources_set_input - - """filter the rows which have to be updated""" - where: e_sanction_sources_bool_exp! - ): e_sanction_sources_mutation_response - - """ - update single row of the table: "e_sanction_sources" - """ - update_e_sanction_sources_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: e_sanction_sources_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: e_sanction_sources_set_input - pk_columns: e_sanction_sources_pk_columns_input! - ): e_sanction_sources - - """ - update multiples rows of table: "e_sanction_sources" - """ - update_e_sanction_sources_many( - """updates to execute, in order""" - updates: [e_sanction_sources_updates!]! - ): [e_sanction_sources_mutation_response] - - """ - update data of the table: "e_sanction_types" - """ - update_e_sanction_types( - """sets the columns of the filtered rows to the given values""" - _set: e_sanction_types_set_input - - """filter the rows which have to be updated""" - where: e_sanction_types_bool_exp! - ): e_sanction_types_mutation_response - - """ - update single row of the table: "e_sanction_types" - """ - update_e_sanction_types_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_sanction_types_set_input - pk_columns: e_sanction_types_pk_columns_input! - ): e_sanction_types - - """ - update multiples rows of table: "e_sanction_types" - """ - update_e_sanction_types_many( - """updates to execute, in order""" - updates: [e_sanction_types_updates!]! - ): [e_sanction_types_mutation_response] - - """ - update data of the table: "e_scrim_request_statuses" - """ - update_e_scrim_request_statuses( - """sets the columns of the filtered rows to the given values""" - _set: e_scrim_request_statuses_set_input - - """filter the rows which have to be updated""" - where: e_scrim_request_statuses_bool_exp! - ): e_scrim_request_statuses_mutation_response - - """ - update single row of the table: "e_scrim_request_statuses" - """ - update_e_scrim_request_statuses_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_scrim_request_statuses_set_input - pk_columns: e_scrim_request_statuses_pk_columns_input! - ): e_scrim_request_statuses - - """ - update multiples rows of table: "e_scrim_request_statuses" - """ - update_e_scrim_request_statuses_many( - """updates to execute, in order""" - updates: [e_scrim_request_statuses_updates!]! - ): [e_scrim_request_statuses_mutation_response] - - """ - update data of the table: "e_server_types" - """ - update_e_server_types( - """sets the columns of the filtered rows to the given values""" - _set: e_server_types_set_input - - """filter the rows which have to be updated""" - where: e_server_types_bool_exp! - ): e_server_types_mutation_response - - """ - update single row of the table: "e_server_types" - """ - update_e_server_types_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_server_types_set_input - pk_columns: e_server_types_pk_columns_input! - ): e_server_types - - """ - update multiples rows of table: "e_server_types" - """ - update_e_server_types_many( - """updates to execute, in order""" - updates: [e_server_types_updates!]! - ): [e_server_types_mutation_response] - - """ - update data of the table: "e_sides" - """ - update_e_sides( - """sets the columns of the filtered rows to the given values""" - _set: e_sides_set_input - - """filter the rows which have to be updated""" - where: e_sides_bool_exp! - ): e_sides_mutation_response - - """ - update single row of the table: "e_sides" - """ - update_e_sides_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_sides_set_input - pk_columns: e_sides_pk_columns_input! - ): e_sides - - """ - update multiples rows of table: "e_sides" - """ - update_e_sides_many( - """updates to execute, in order""" - updates: [e_sides_updates!]! - ): [e_sides_mutation_response] - - """ - update data of the table: "e_system_alert_types" - """ - update_e_system_alert_types( - """sets the columns of the filtered rows to the given values""" - _set: e_system_alert_types_set_input - - """filter the rows which have to be updated""" - where: e_system_alert_types_bool_exp! - ): e_system_alert_types_mutation_response - - """ - update single row of the table: "e_system_alert_types" - """ - update_e_system_alert_types_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_system_alert_types_set_input - pk_columns: e_system_alert_types_pk_columns_input! - ): e_system_alert_types - - """ - update multiples rows of table: "e_system_alert_types" - """ - update_e_system_alert_types_many( - """updates to execute, in order""" - updates: [e_system_alert_types_updates!]! - ): [e_system_alert_types_mutation_response] - - """ - update data of the table: "e_team_roles" - """ - update_e_team_roles( - """sets the columns of the filtered rows to the given values""" - _set: e_team_roles_set_input - - """filter the rows which have to be updated""" - where: e_team_roles_bool_exp! - ): e_team_roles_mutation_response - - """ - update single row of the table: "e_team_roles" - """ - update_e_team_roles_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_team_roles_set_input - pk_columns: e_team_roles_pk_columns_input! - ): e_team_roles - - """ - update multiples rows of table: "e_team_roles" - """ - update_e_team_roles_many( - """updates to execute, in order""" - updates: [e_team_roles_updates!]! - ): [e_team_roles_mutation_response] - - """ - update data of the table: "e_team_roster_statuses" - """ - update_e_team_roster_statuses( - """sets the columns of the filtered rows to the given values""" - _set: e_team_roster_statuses_set_input - - """filter the rows which have to be updated""" - where: e_team_roster_statuses_bool_exp! - ): e_team_roster_statuses_mutation_response - - """ - update single row of the table: "e_team_roster_statuses" - """ - update_e_team_roster_statuses_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_team_roster_statuses_set_input - pk_columns: e_team_roster_statuses_pk_columns_input! - ): e_team_roster_statuses - - """ - update multiples rows of table: "e_team_roster_statuses" - """ - update_e_team_roster_statuses_many( - """updates to execute, in order""" - updates: [e_team_roster_statuses_updates!]! - ): [e_team_roster_statuses_mutation_response] - - """ - update data of the table: "e_timeout_settings" - """ - update_e_timeout_settings( - """sets the columns of the filtered rows to the given values""" - _set: e_timeout_settings_set_input - - """filter the rows which have to be updated""" - where: e_timeout_settings_bool_exp! - ): e_timeout_settings_mutation_response - - """ - update single row of the table: "e_timeout_settings" - """ - update_e_timeout_settings_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_timeout_settings_set_input - pk_columns: e_timeout_settings_pk_columns_input! - ): e_timeout_settings - - """ - update multiples rows of table: "e_timeout_settings" - """ - update_e_timeout_settings_many( - """updates to execute, in order""" - updates: [e_timeout_settings_updates!]! - ): [e_timeout_settings_mutation_response] - - """ - update data of the table: "e_tournament_categories" - """ - update_e_tournament_categories( - """sets the columns of the filtered rows to the given values""" - _set: e_tournament_categories_set_input - - """filter the rows which have to be updated""" - where: e_tournament_categories_bool_exp! - ): e_tournament_categories_mutation_response - - """ - update single row of the table: "e_tournament_categories" - """ - update_e_tournament_categories_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_tournament_categories_set_input - pk_columns: e_tournament_categories_pk_columns_input! - ): e_tournament_categories - - """ - update multiples rows of table: "e_tournament_categories" - """ - update_e_tournament_categories_many( - """updates to execute, in order""" - updates: [e_tournament_categories_updates!]! - ): [e_tournament_categories_mutation_response] - - """ - update data of the table: "e_tournament_free_agent_statuses" - """ - update_e_tournament_free_agent_statuses( - """sets the columns of the filtered rows to the given values""" - _set: e_tournament_free_agent_statuses_set_input - - """filter the rows which have to be updated""" - where: e_tournament_free_agent_statuses_bool_exp! - ): e_tournament_free_agent_statuses_mutation_response - - """ - update single row of the table: "e_tournament_free_agent_statuses" - """ - update_e_tournament_free_agent_statuses_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_tournament_free_agent_statuses_set_input - pk_columns: e_tournament_free_agent_statuses_pk_columns_input! - ): e_tournament_free_agent_statuses - - """ - update multiples rows of table: "e_tournament_free_agent_statuses" - """ - update_e_tournament_free_agent_statuses_many( - """updates to execute, in order""" - updates: [e_tournament_free_agent_statuses_updates!]! - ): [e_tournament_free_agent_statuses_mutation_response] - - """ - update data of the table: "e_tournament_registration_types" - """ - update_e_tournament_registration_types( - """sets the columns of the filtered rows to the given values""" - _set: e_tournament_registration_types_set_input - - """filter the rows which have to be updated""" - where: e_tournament_registration_types_bool_exp! - ): e_tournament_registration_types_mutation_response - - """ - update single row of the table: "e_tournament_registration_types" - """ - update_e_tournament_registration_types_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_tournament_registration_types_set_input - pk_columns: e_tournament_registration_types_pk_columns_input! - ): e_tournament_registration_types - - """ - update multiples rows of table: "e_tournament_registration_types" - """ - update_e_tournament_registration_types_many( - """updates to execute, in order""" - updates: [e_tournament_registration_types_updates!]! - ): [e_tournament_registration_types_mutation_response] - - """ - update data of the table: "e_tournament_stage_types" - """ - update_e_tournament_stage_types( - """sets the columns of the filtered rows to the given values""" - _set: e_tournament_stage_types_set_input - - """filter the rows which have to be updated""" - where: e_tournament_stage_types_bool_exp! - ): e_tournament_stage_types_mutation_response - - """ - update single row of the table: "e_tournament_stage_types" - """ - update_e_tournament_stage_types_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_tournament_stage_types_set_input - pk_columns: e_tournament_stage_types_pk_columns_input! - ): e_tournament_stage_types - - """ - update multiples rows of table: "e_tournament_stage_types" - """ - update_e_tournament_stage_types_many( - """updates to execute, in order""" - updates: [e_tournament_stage_types_updates!]! - ): [e_tournament_stage_types_mutation_response] - - """ - update data of the table: "e_tournament_status" - """ - update_e_tournament_status( - """sets the columns of the filtered rows to the given values""" - _set: e_tournament_status_set_input - - """filter the rows which have to be updated""" - where: e_tournament_status_bool_exp! - ): e_tournament_status_mutation_response - - """ - update single row of the table: "e_tournament_status" - """ - update_e_tournament_status_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_tournament_status_set_input - pk_columns: e_tournament_status_pk_columns_input! - ): e_tournament_status - - """ - update multiples rows of table: "e_tournament_status" - """ - update_e_tournament_status_many( - """updates to execute, in order""" - updates: [e_tournament_status_updates!]! - ): [e_tournament_status_mutation_response] - - """ - update data of the table: "e_utility_practice_access" - """ - update_e_utility_practice_access( - """sets the columns of the filtered rows to the given values""" - _set: e_utility_practice_access_set_input - - """filter the rows which have to be updated""" - where: e_utility_practice_access_bool_exp! - ): e_utility_practice_access_mutation_response - - """ - update single row of the table: "e_utility_practice_access" - """ - update_e_utility_practice_access_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_utility_practice_access_set_input - pk_columns: e_utility_practice_access_pk_columns_input! - ): e_utility_practice_access - - """ - update multiples rows of table: "e_utility_practice_access" - """ - update_e_utility_practice_access_many( - """updates to execute, in order""" - updates: [e_utility_practice_access_updates!]! - ): [e_utility_practice_access_mutation_response] - - """ - update data of the table: "e_utility_practice_statuses" - """ - update_e_utility_practice_statuses( - """sets the columns of the filtered rows to the given values""" - _set: e_utility_practice_statuses_set_input - - """filter the rows which have to be updated""" - where: e_utility_practice_statuses_bool_exp! - ): e_utility_practice_statuses_mutation_response - - """ - update single row of the table: "e_utility_practice_statuses" - """ - update_e_utility_practice_statuses_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_utility_practice_statuses_set_input - pk_columns: e_utility_practice_statuses_pk_columns_input! - ): e_utility_practice_statuses - - """ - update multiples rows of table: "e_utility_practice_statuses" - """ - update_e_utility_practice_statuses_many( - """updates to execute, in order""" - updates: [e_utility_practice_statuses_updates!]! - ): [e_utility_practice_statuses_mutation_response] - - """ - update data of the table: "e_utility_sources" - """ - update_e_utility_sources( - """sets the columns of the filtered rows to the given values""" - _set: e_utility_sources_set_input - - """filter the rows which have to be updated""" - where: e_utility_sources_bool_exp! - ): e_utility_sources_mutation_response - - """ - update single row of the table: "e_utility_sources" - """ - update_e_utility_sources_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_utility_sources_set_input - pk_columns: e_utility_sources_pk_columns_input! - ): e_utility_sources - - """ - update multiples rows of table: "e_utility_sources" - """ - update_e_utility_sources_many( - """updates to execute, in order""" - updates: [e_utility_sources_updates!]! - ): [e_utility_sources_mutation_response] - - """ - update data of the table: "e_utility_techniques" - """ - update_e_utility_techniques( - """sets the columns of the filtered rows to the given values""" - _set: e_utility_techniques_set_input - - """filter the rows which have to be updated""" - where: e_utility_techniques_bool_exp! - ): e_utility_techniques_mutation_response - - """ - update single row of the table: "e_utility_techniques" - """ - update_e_utility_techniques_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_utility_techniques_set_input - pk_columns: e_utility_techniques_pk_columns_input! - ): e_utility_techniques - - """ - update multiples rows of table: "e_utility_techniques" - """ - update_e_utility_techniques_many( - """updates to execute, in order""" - updates: [e_utility_techniques_updates!]! - ): [e_utility_techniques_mutation_response] - - """ - update data of the table: "e_utility_throw_strengths" - """ - update_e_utility_throw_strengths( - """sets the columns of the filtered rows to the given values""" - _set: e_utility_throw_strengths_set_input - - """filter the rows which have to be updated""" - where: e_utility_throw_strengths_bool_exp! - ): e_utility_throw_strengths_mutation_response - - """ - update single row of the table: "e_utility_throw_strengths" - """ - update_e_utility_throw_strengths_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_utility_throw_strengths_set_input - pk_columns: e_utility_throw_strengths_pk_columns_input! - ): e_utility_throw_strengths - - """ - update multiples rows of table: "e_utility_throw_strengths" - """ - update_e_utility_throw_strengths_many( - """updates to execute, in order""" - updates: [e_utility_throw_strengths_updates!]! - ): [e_utility_throw_strengths_mutation_response] - - """ - update data of the table: "e_utility_types" - """ - update_e_utility_types( - """sets the columns of the filtered rows to the given values""" - _set: e_utility_types_set_input - - """filter the rows which have to be updated""" - where: e_utility_types_bool_exp! - ): e_utility_types_mutation_response - - """ - update single row of the table: "e_utility_types" - """ - update_e_utility_types_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_utility_types_set_input - pk_columns: e_utility_types_pk_columns_input! - ): e_utility_types - - """ - update multiples rows of table: "e_utility_types" - """ - update_e_utility_types_many( - """updates to execute, in order""" - updates: [e_utility_types_updates!]! - ): [e_utility_types_mutation_response] - - """ - update data of the table: "e_utility_visibility" - """ - update_e_utility_visibility( - """sets the columns of the filtered rows to the given values""" - _set: e_utility_visibility_set_input - - """filter the rows which have to be updated""" - where: e_utility_visibility_bool_exp! - ): e_utility_visibility_mutation_response - - """ - update single row of the table: "e_utility_visibility" - """ - update_e_utility_visibility_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_utility_visibility_set_input - pk_columns: e_utility_visibility_pk_columns_input! - ): e_utility_visibility - - """ - update multiples rows of table: "e_utility_visibility" - """ - update_e_utility_visibility_many( - """updates to execute, in order""" - updates: [e_utility_visibility_updates!]! - ): [e_utility_visibility_mutation_response] - - """ - update data of the table: "e_veto_pick_types" - """ - update_e_veto_pick_types( - """sets the columns of the filtered rows to the given values""" - _set: e_veto_pick_types_set_input - - """filter the rows which have to be updated""" - where: e_veto_pick_types_bool_exp! - ): e_veto_pick_types_mutation_response - - """ - update single row of the table: "e_veto_pick_types" - """ - update_e_veto_pick_types_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_veto_pick_types_set_input - pk_columns: e_veto_pick_types_pk_columns_input! - ): e_veto_pick_types - - """ - update multiples rows of table: "e_veto_pick_types" - """ - update_e_veto_pick_types_many( - """updates to execute, in order""" - updates: [e_veto_pick_types_updates!]! - ): [e_veto_pick_types_mutation_response] - - """ - update data of the table: "e_winning_reasons" - """ - update_e_winning_reasons( - """sets the columns of the filtered rows to the given values""" - _set: e_winning_reasons_set_input - - """filter the rows which have to be updated""" - where: e_winning_reasons_bool_exp! - ): e_winning_reasons_mutation_response - - """ - update single row of the table: "e_winning_reasons" - """ - update_e_winning_reasons_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: e_winning_reasons_set_input - pk_columns: e_winning_reasons_pk_columns_input! - ): e_winning_reasons - - """ - update multiples rows of table: "e_winning_reasons" - """ - update_e_winning_reasons_many( - """updates to execute, in order""" - updates: [e_winning_reasons_updates!]! - ): [e_winning_reasons_mutation_response] - - """ - update data of the table: "event_match_links" - """ - update_event_match_links( - """sets the columns of the filtered rows to the given values""" - _set: event_match_links_set_input - - """filter the rows which have to be updated""" - where: event_match_links_bool_exp! - ): event_match_links_mutation_response - - """ - update single row of the table: "event_match_links" - """ - update_event_match_links_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: event_match_links_set_input - pk_columns: event_match_links_pk_columns_input! - ): event_match_links - - """ - update multiples rows of table: "event_match_links" - """ - update_event_match_links_many( - """updates to execute, in order""" - updates: [event_match_links_updates!]! - ): [event_match_links_mutation_response] - - """ - update data of the table: "event_media" - """ - update_event_media( - """increments the numeric columns with given value of the filtered values""" - _inc: event_media_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: event_media_set_input - - """filter the rows which have to be updated""" - where: event_media_bool_exp! - ): event_media_mutation_response - - """ - update single row of the table: "event_media" - """ - update_event_media_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: event_media_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: event_media_set_input - pk_columns: event_media_pk_columns_input! - ): event_media - - """ - update multiples rows of table: "event_media" - """ - update_event_media_many( - """updates to execute, in order""" - updates: [event_media_updates!]! - ): [event_media_mutation_response] - - """ - update data of the table: "event_media_players" - """ - update_event_media_players( - """increments the numeric columns with given value of the filtered values""" - _inc: event_media_players_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: event_media_players_set_input - - """filter the rows which have to be updated""" - where: event_media_players_bool_exp! - ): event_media_players_mutation_response - - """ - update single row of the table: "event_media_players" - """ - update_event_media_players_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: event_media_players_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: event_media_players_set_input - pk_columns: event_media_players_pk_columns_input! - ): event_media_players - - """ - update multiples rows of table: "event_media_players" - """ - update_event_media_players_many( - """updates to execute, in order""" - updates: [event_media_players_updates!]! - ): [event_media_players_mutation_response] - - """ - update data of the table: "event_organizers" - """ - update_event_organizers( - """increments the numeric columns with given value of the filtered values""" - _inc: event_organizers_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: event_organizers_set_input - - """filter the rows which have to be updated""" - where: event_organizers_bool_exp! - ): event_organizers_mutation_response - - """ - update single row of the table: "event_organizers" - """ - update_event_organizers_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: event_organizers_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: event_organizers_set_input - pk_columns: event_organizers_pk_columns_input! - ): event_organizers - - """ - update multiples rows of table: "event_organizers" - """ - update_event_organizers_many( - """updates to execute, in order""" - updates: [event_organizers_updates!]! - ): [event_organizers_mutation_response] - - """ - update data of the table: "event_players" - """ - update_event_players( - """increments the numeric columns with given value of the filtered values""" - _inc: event_players_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: event_players_set_input - - """filter the rows which have to be updated""" - where: event_players_bool_exp! - ): event_players_mutation_response - - """ - update single row of the table: "event_players" - """ - update_event_players_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: event_players_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: event_players_set_input - pk_columns: event_players_pk_columns_input! - ): event_players - - """ - update multiples rows of table: "event_players" - """ - update_event_players_many( - """updates to execute, in order""" - updates: [event_players_updates!]! - ): [event_players_mutation_response] - - """ - update data of the table: "event_teams" - """ - update_event_teams( - """sets the columns of the filtered rows to the given values""" - _set: event_teams_set_input - - """filter the rows which have to be updated""" - where: event_teams_bool_exp! - ): event_teams_mutation_response - - """ - update single row of the table: "event_teams" - """ - update_event_teams_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: event_teams_set_input - pk_columns: event_teams_pk_columns_input! - ): event_teams - - """ - update multiples rows of table: "event_teams" - """ - update_event_teams_many( - """updates to execute, in order""" - updates: [event_teams_updates!]! - ): [event_teams_mutation_response] - - """ - update data of the table: "event_tournaments" - """ - update_event_tournaments( - """sets the columns of the filtered rows to the given values""" - _set: event_tournaments_set_input - - """filter the rows which have to be updated""" - where: event_tournaments_bool_exp! - ): event_tournaments_mutation_response - - """ - update single row of the table: "event_tournaments" - """ - update_event_tournaments_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: event_tournaments_set_input - pk_columns: event_tournaments_pk_columns_input! - ): event_tournaments - - """ - update multiples rows of table: "event_tournaments" - """ - update_event_tournaments_many( - """updates to execute, in order""" - updates: [event_tournaments_updates!]! - ): [event_tournaments_mutation_response] - - """ - update data of the table: "events" - """ - update_events( - """increments the numeric columns with given value of the filtered values""" - _inc: events_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: events_set_input - - """filter the rows which have to be updated""" - where: events_bool_exp! - ): events_mutation_response - - """ - update single row of the table: "events" - """ - update_events_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: events_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: events_set_input - pk_columns: events_pk_columns_input! - ): events - - """ - update multiples rows of table: "events" - """ - update_events_many( - """updates to execute, in order""" - updates: [events_updates!]! - ): [events_mutation_response] - - """ - update data of the table: "friends" - """ - update_friends( - """increments the numeric columns with given value of the filtered values""" - _inc: friends_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: friends_set_input - - """filter the rows which have to be updated""" - where: friends_bool_exp! - ): friends_mutation_response - - """ - update single row of the table: "friends" - """ - update_friends_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: friends_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: friends_set_input - pk_columns: friends_pk_columns_input! - ): friends - - """ - update multiples rows of table: "friends" - """ - update_friends_many( - """updates to execute, in order""" - updates: [friends_updates!]! - ): [friends_mutation_response] - - """ - update data of the table: "game_mode_plugins" - """ - update_game_mode_plugins( - """append existing jsonb value of filtered columns with new jsonb value""" - _append: game_mode_plugins_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: game_mode_plugins_delete_at_path_input - - """ - delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array - """ - _delete_elem: game_mode_plugins_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: game_mode_plugins_delete_key_input - - """increments the numeric columns with given value of the filtered values""" - _inc: game_mode_plugins_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: game_mode_plugins_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: game_mode_plugins_set_input - - """filter the rows which have to be updated""" - where: game_mode_plugins_bool_exp! - ): game_mode_plugins_mutation_response - - """ - update single row of the table: "game_mode_plugins" - """ - update_game_mode_plugins_by_pk( - """append existing jsonb value of filtered columns with new jsonb value""" - _append: game_mode_plugins_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: game_mode_plugins_delete_at_path_input - - """ - delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array - """ - _delete_elem: game_mode_plugins_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: game_mode_plugins_delete_key_input - - """increments the numeric columns with given value of the filtered values""" - _inc: game_mode_plugins_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: game_mode_plugins_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: game_mode_plugins_set_input - pk_columns: game_mode_plugins_pk_columns_input! - ): game_mode_plugins - - """ - update multiples rows of table: "game_mode_plugins" - """ - update_game_mode_plugins_many( - """updates to execute, in order""" - updates: [game_mode_plugins_updates!]! - ): [game_mode_plugins_mutation_response] - - """ - update data of the table: "game_modes" - """ - update_game_modes( - """sets the columns of the filtered rows to the given values""" - _set: game_modes_set_input - - """filter the rows which have to be updated""" - where: game_modes_bool_exp! - ): game_modes_mutation_response - - """ - update single row of the table: "game_modes" - """ - update_game_modes_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: game_modes_set_input - pk_columns: game_modes_pk_columns_input! - ): game_modes - - """ - update multiples rows of table: "game_modes" - """ - update_game_modes_many( - """updates to execute, in order""" - updates: [game_modes_updates!]! - ): [game_modes_mutation_response] - - """ - update data of the table: "game_plugin_installs" - """ - update_game_plugin_installs( - """sets the columns of the filtered rows to the given values""" - _set: game_plugin_installs_set_input - - """filter the rows which have to be updated""" - where: game_plugin_installs_bool_exp! - ): game_plugin_installs_mutation_response - - """ - update single row of the table: "game_plugin_installs" - """ - update_game_plugin_installs_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: game_plugin_installs_set_input - pk_columns: game_plugin_installs_pk_columns_input! - ): game_plugin_installs - - """ - update multiples rows of table: "game_plugin_installs" - """ - update_game_plugin_installs_many( - """updates to execute, in order""" - updates: [game_plugin_installs_updates!]! - ): [game_plugin_installs_mutation_response] - - """ - update data of the table: "game_plugin_versions" - """ - update_game_plugin_versions( - """increments the numeric columns with given value of the filtered values""" - _inc: game_plugin_versions_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: game_plugin_versions_set_input - - """filter the rows which have to be updated""" - where: game_plugin_versions_bool_exp! - ): game_plugin_versions_mutation_response - - """ - update single row of the table: "game_plugin_versions" - """ - update_game_plugin_versions_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: game_plugin_versions_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: game_plugin_versions_set_input - pk_columns: game_plugin_versions_pk_columns_input! - ): game_plugin_versions - - """ - update multiples rows of table: "game_plugin_versions" - """ - update_game_plugin_versions_many( - """updates to execute, in order""" - updates: [game_plugin_versions_updates!]! - ): [game_plugin_versions_mutation_response] - - """ - update data of the table: "game_plugins" - """ - update_game_plugins( - """append existing jsonb value of filtered columns with new jsonb value""" - _append: game_plugins_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: game_plugins_delete_at_path_input - - """ - delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array - """ - _delete_elem: game_plugins_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: game_plugins_delete_key_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: game_plugins_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: game_plugins_set_input - - """filter the rows which have to be updated""" - where: game_plugins_bool_exp! - ): game_plugins_mutation_response - - """ - update single row of the table: "game_plugins" - """ - update_game_plugins_by_pk( - """append existing jsonb value of filtered columns with new jsonb value""" - _append: game_plugins_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: game_plugins_delete_at_path_input - - """ - delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array - """ - _delete_elem: game_plugins_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: game_plugins_delete_key_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: game_plugins_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: game_plugins_set_input - pk_columns: game_plugins_pk_columns_input! - ): game_plugins - - """ - update multiples rows of table: "game_plugins" - """ - update_game_plugins_many( - """updates to execute, in order""" - updates: [game_plugins_updates!]! - ): [game_plugins_mutation_response] - - """ - update data of the table: "game_server_node_plugins" - """ - update_game_server_node_plugins( - """sets the columns of the filtered rows to the given values""" - _set: game_server_node_plugins_set_input - - """filter the rows which have to be updated""" - where: game_server_node_plugins_bool_exp! - ): game_server_node_plugins_mutation_response - - """ - update single row of the table: "game_server_node_plugins" - """ - update_game_server_node_plugins_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: game_server_node_plugins_set_input - pk_columns: game_server_node_plugins_pk_columns_input! - ): game_server_node_plugins - - """ - update multiples rows of table: "game_server_node_plugins" - """ - update_game_server_node_plugins_many( - """updates to execute, in order""" - updates: [game_server_node_plugins_updates!]! - ): [game_server_node_plugins_mutation_response] - - """ - update data of the table: "game_server_nodes" - """ - update_game_server_nodes( - """append existing jsonb value of filtered columns with new jsonb value""" - _append: game_server_nodes_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: game_server_nodes_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_server_nodes_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: game_server_nodes_delete_key_input - - """increments the numeric columns with given value of the filtered values""" - _inc: game_server_nodes_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: game_server_nodes_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: game_server_nodes_set_input - - """filter the rows which have to be updated""" - where: game_server_nodes_bool_exp! - ): game_server_nodes_mutation_response - - """ - update single row of the table: "game_server_nodes" - """ - update_game_server_nodes_by_pk( - """append existing jsonb value of filtered columns with new jsonb value""" - _append: game_server_nodes_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: game_server_nodes_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_server_nodes_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: game_server_nodes_delete_key_input - - """increments the numeric columns with given value of the filtered values""" - _inc: game_server_nodes_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: game_server_nodes_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: game_server_nodes_set_input - pk_columns: game_server_nodes_pk_columns_input! - ): game_server_nodes - - """ - update multiples rows of table: "game_server_nodes" - """ - update_game_server_nodes_many( - """updates to execute, in order""" - updates: [game_server_nodes_updates!]! - ): [game_server_nodes_mutation_response] - - """ - update data of the table: "game_versions" - """ - update_game_versions( - """append existing jsonb value of filtered columns with new jsonb value""" - _append: game_versions_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: game_versions_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_versions_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: game_versions_delete_key_input - - """increments the numeric columns with given value of the filtered values""" - _inc: game_versions_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: game_versions_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: game_versions_set_input - - """filter the rows which have to be updated""" - where: game_versions_bool_exp! - ): game_versions_mutation_response - - """ - update single row of the table: "game_versions" - """ - update_game_versions_by_pk( - """append existing jsonb value of filtered columns with new jsonb value""" - _append: game_versions_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: game_versions_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_versions_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: game_versions_delete_key_input - - """increments the numeric columns with given value of the filtered values""" - _inc: game_versions_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: game_versions_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: game_versions_set_input - pk_columns: game_versions_pk_columns_input! - ): game_versions - - """ - update multiples rows of table: "game_versions" - """ - update_game_versions_many( - """updates to execute, in order""" - updates: [game_versions_updates!]! - ): [game_versions_mutation_response] - - """ - update data of the table: "gamedata_signature_validations" - """ - update_gamedata_signature_validations( - """append existing jsonb value of filtered columns with new jsonb value""" - _append: gamedata_signature_validations_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: gamedata_signature_validations_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: gamedata_signature_validations_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: gamedata_signature_validations_delete_key_input - - """increments the numeric columns with given value of the filtered values""" - _inc: gamedata_signature_validations_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: gamedata_signature_validations_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: gamedata_signature_validations_set_input - - """filter the rows which have to be updated""" - where: gamedata_signature_validations_bool_exp! - ): gamedata_signature_validations_mutation_response - - """ - update single row of the table: "gamedata_signature_validations" - """ - update_gamedata_signature_validations_by_pk( - """append existing jsonb value of filtered columns with new jsonb value""" - _append: gamedata_signature_validations_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: gamedata_signature_validations_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: gamedata_signature_validations_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: gamedata_signature_validations_delete_key_input - - """increments the numeric columns with given value of the filtered values""" - _inc: gamedata_signature_validations_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: gamedata_signature_validations_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: gamedata_signature_validations_set_input - pk_columns: gamedata_signature_validations_pk_columns_input! - ): gamedata_signature_validations - - """ - update multiples rows of table: "gamedata_signature_validations" - """ - update_gamedata_signature_validations_many( - """updates to execute, in order""" - updates: [gamedata_signature_validations_updates!]! - ): [gamedata_signature_validations_mutation_response] - - """ - update data of the table: "leaderboard_entries" - """ - update_leaderboard_entries( - """increments the numeric columns with given value of the filtered values""" - _inc: leaderboard_entries_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: leaderboard_entries_set_input - - """filter the rows which have to be updated""" - where: leaderboard_entries_bool_exp! - ): leaderboard_entries_mutation_response - - """ - update multiples rows of table: "leaderboard_entries" - """ - update_leaderboard_entries_many( - """updates to execute, in order""" - updates: [leaderboard_entries_updates!]! - ): [leaderboard_entries_mutation_response] - - """ - update data of the table: "league_divisions" - """ - update_league_divisions( - """increments the numeric columns with given value of the filtered values""" - _inc: league_divisions_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: league_divisions_set_input - - """filter the rows which have to be updated""" - where: league_divisions_bool_exp! - ): league_divisions_mutation_response - - """ - update single row of the table: "league_divisions" - """ - update_league_divisions_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: league_divisions_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: league_divisions_set_input - pk_columns: league_divisions_pk_columns_input! - ): league_divisions - - """ - update multiples rows of table: "league_divisions" - """ - update_league_divisions_many( - """updates to execute, in order""" - updates: [league_divisions_updates!]! - ): [league_divisions_mutation_response] - - """ - update data of the table: "league_match_weeks" - """ - update_league_match_weeks( - """increments the numeric columns with given value of the filtered values""" - _inc: league_match_weeks_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: league_match_weeks_set_input - - """filter the rows which have to be updated""" - where: league_match_weeks_bool_exp! - ): league_match_weeks_mutation_response - - """ - update single row of the table: "league_match_weeks" - """ - update_league_match_weeks_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: league_match_weeks_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: league_match_weeks_set_input - pk_columns: league_match_weeks_pk_columns_input! - ): league_match_weeks - - """ - update multiples rows of table: "league_match_weeks" - """ - update_league_match_weeks_many( - """updates to execute, in order""" - updates: [league_match_weeks_updates!]! - ): [league_match_weeks_mutation_response] - - """ - update data of the table: "league_relegation_playoffs" - """ - update_league_relegation_playoffs( - """increments the numeric columns with given value of the filtered values""" - _inc: league_relegation_playoffs_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: league_relegation_playoffs_set_input - - """filter the rows which have to be updated""" - where: league_relegation_playoffs_bool_exp! - ): league_relegation_playoffs_mutation_response - - """ - update single row of the table: "league_relegation_playoffs" - """ - update_league_relegation_playoffs_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: league_relegation_playoffs_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: league_relegation_playoffs_set_input - pk_columns: league_relegation_playoffs_pk_columns_input! - ): league_relegation_playoffs - - """ - update multiples rows of table: "league_relegation_playoffs" - """ - update_league_relegation_playoffs_many( - """updates to execute, in order""" - updates: [league_relegation_playoffs_updates!]! - ): [league_relegation_playoffs_mutation_response] - - """ - update data of the table: "league_scheduling_proposals" - """ - update_league_scheduling_proposals( - """increments the numeric columns with given value of the filtered values""" - _inc: league_scheduling_proposals_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: league_scheduling_proposals_set_input - - """filter the rows which have to be updated""" - where: league_scheduling_proposals_bool_exp! - ): league_scheduling_proposals_mutation_response - - """ - update single row of the table: "league_scheduling_proposals" - """ - update_league_scheduling_proposals_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: league_scheduling_proposals_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: league_scheduling_proposals_set_input - pk_columns: league_scheduling_proposals_pk_columns_input! - ): league_scheduling_proposals - - """ - update multiples rows of table: "league_scheduling_proposals" - """ - update_league_scheduling_proposals_many( - """updates to execute, in order""" - updates: [league_scheduling_proposals_updates!]! - ): [league_scheduling_proposals_mutation_response] - - """ - update data of the table: "league_season_divisions" - """ - update_league_season_divisions( - """sets the columns of the filtered rows to the given values""" - _set: league_season_divisions_set_input - - """filter the rows which have to be updated""" - where: league_season_divisions_bool_exp! - ): league_season_divisions_mutation_response - - """ - update single row of the table: "league_season_divisions" - """ - update_league_season_divisions_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: league_season_divisions_set_input - pk_columns: league_season_divisions_pk_columns_input! - ): league_season_divisions - - """ - update multiples rows of table: "league_season_divisions" - """ - update_league_season_divisions_many( - """updates to execute, in order""" - updates: [league_season_divisions_updates!]! - ): [league_season_divisions_mutation_response] - - """ - update data of the table: "league_seasons" - """ - update_league_seasons( - """append existing jsonb value of filtered columns with new jsonb value""" - _append: league_seasons_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: league_seasons_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: league_seasons_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: league_seasons_delete_key_input - - """increments the numeric columns with given value of the filtered values""" - _inc: league_seasons_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: league_seasons_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: league_seasons_set_input - - """filter the rows which have to be updated""" - where: league_seasons_bool_exp! - ): league_seasons_mutation_response - - """ - update single row of the table: "league_seasons" - """ - update_league_seasons_by_pk( - """append existing jsonb value of filtered columns with new jsonb value""" - _append: league_seasons_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: league_seasons_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: league_seasons_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: league_seasons_delete_key_input - - """increments the numeric columns with given value of the filtered values""" - _inc: league_seasons_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: league_seasons_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: league_seasons_set_input - pk_columns: league_seasons_pk_columns_input! - ): league_seasons - - """ - update multiples rows of table: "league_seasons" - """ - update_league_seasons_many( - """updates to execute, in order""" - updates: [league_seasons_updates!]! - ): [league_seasons_mutation_response] - - """ - update data of the table: "league_team_movements" - """ - update_league_team_movements( - """increments the numeric columns with given value of the filtered values""" - _inc: league_team_movements_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: league_team_movements_set_input - - """filter the rows which have to be updated""" - where: league_team_movements_bool_exp! - ): league_team_movements_mutation_response - - """ - update single row of the table: "league_team_movements" - """ - update_league_team_movements_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: league_team_movements_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: league_team_movements_set_input - pk_columns: league_team_movements_pk_columns_input! - ): league_team_movements - - """ - update multiples rows of table: "league_team_movements" - """ - update_league_team_movements_many( - """updates to execute, in order""" - updates: [league_team_movements_updates!]! - ): [league_team_movements_mutation_response] - - """ - update data of the table: "league_team_rosters" - """ - update_league_team_rosters( - """increments the numeric columns with given value of the filtered values""" - _inc: league_team_rosters_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: league_team_rosters_set_input - - """filter the rows which have to be updated""" - where: league_team_rosters_bool_exp! - ): league_team_rosters_mutation_response - - """ - update single row of the table: "league_team_rosters" - """ - update_league_team_rosters_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: league_team_rosters_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: league_team_rosters_set_input - pk_columns: league_team_rosters_pk_columns_input! - ): league_team_rosters - - """ - update multiples rows of table: "league_team_rosters" - """ - update_league_team_rosters_many( - """updates to execute, in order""" - updates: [league_team_rosters_updates!]! - ): [league_team_rosters_mutation_response] - - """ - update data of the table: "league_team_seasons" - """ - update_league_team_seasons( - """increments the numeric columns with given value of the filtered values""" - _inc: league_team_seasons_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: league_team_seasons_set_input - - """filter the rows which have to be updated""" - where: league_team_seasons_bool_exp! - ): league_team_seasons_mutation_response - - """ - update single row of the table: "league_team_seasons" - """ - update_league_team_seasons_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: league_team_seasons_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: league_team_seasons_set_input - pk_columns: league_team_seasons_pk_columns_input! - ): league_team_seasons - - """ - update multiples rows of table: "league_team_seasons" - """ - update_league_team_seasons_many( - """updates to execute, in order""" - updates: [league_team_seasons_updates!]! - ): [league_team_seasons_mutation_response] - - """ - update data of the table: "league_teams" - """ - update_league_teams( - """sets the columns of the filtered rows to the given values""" - _set: league_teams_set_input - - """filter the rows which have to be updated""" - where: league_teams_bool_exp! - ): league_teams_mutation_response - - """ - update single row of the table: "league_teams" - """ - update_league_teams_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: league_teams_set_input - pk_columns: league_teams_pk_columns_input! - ): league_teams - - """ - update multiples rows of table: "league_teams" - """ - update_league_teams_many( - """updates to execute, in order""" - updates: [league_teams_updates!]! - ): [league_teams_mutation_response] - - """ - update data of the table: "lobbies" - """ - update_lobbies( - """sets the columns of the filtered rows to the given values""" - _set: lobbies_set_input - - """filter the rows which have to be updated""" - where: lobbies_bool_exp! - ): lobbies_mutation_response - - """ - update single row of the table: "lobbies" - """ - update_lobbies_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: lobbies_set_input - pk_columns: lobbies_pk_columns_input! - ): lobbies - - """ - update multiples rows of table: "lobbies" - """ - update_lobbies_many( - """updates to execute, in order""" - updates: [lobbies_updates!]! - ): [lobbies_mutation_response] - - """ - update data of the table: "lobby_players" - """ - update_lobby_players( - """increments the numeric columns with given value of the filtered values""" - _inc: lobby_players_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: lobby_players_set_input - - """filter the rows which have to be updated""" - where: lobby_players_bool_exp! - ): lobby_players_mutation_response - - """ - update single row of the table: "lobby_players" - """ - update_lobby_players_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: lobby_players_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: lobby_players_set_input - pk_columns: lobby_players_pk_columns_input! - ): lobby_players - - """ - update multiples rows of table: "lobby_players" - """ - update_lobby_players_many( - """updates to execute, in order""" - updates: [lobby_players_updates!]! - ): [lobby_players_mutation_response] - - """ - update data of the table: "map_callouts" - """ - update_map_callouts( - """append existing jsonb value of filtered columns with new jsonb value""" - _append: map_callouts_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: map_callouts_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: map_callouts_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: map_callouts_delete_key_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: map_callouts_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: map_callouts_set_input - - """filter the rows which have to be updated""" - where: map_callouts_bool_exp! - ): map_callouts_mutation_response - - """ - update single row of the table: "map_callouts" - """ - update_map_callouts_by_pk( - """append existing jsonb value of filtered columns with new jsonb value""" - _append: map_callouts_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: map_callouts_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: map_callouts_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: map_callouts_delete_key_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: map_callouts_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: map_callouts_set_input - pk_columns: map_callouts_pk_columns_input! - ): map_callouts - - """ - update multiples rows of table: "map_callouts" - """ - update_map_callouts_many( - """updates to execute, in order""" - updates: [map_callouts_updates!]! - ): [map_callouts_mutation_response] - - """ - update data of the table: "map_pools" - """ - update_map_pools( - """sets the columns of the filtered rows to the given values""" - _set: map_pools_set_input - - """filter the rows which have to be updated""" - where: map_pools_bool_exp! - ): map_pools_mutation_response - - """ - update single row of the table: "map_pools" - """ - update_map_pools_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: map_pools_set_input - pk_columns: map_pools_pk_columns_input! - ): map_pools - - """ - update multiples rows of table: "map_pools" - """ - update_map_pools_many( - """updates to execute, in order""" - updates: [map_pools_updates!]! - ): [map_pools_mutation_response] - - """ - update data of the table: "maps" - """ - update_maps( - """sets the columns of the filtered rows to the given values""" - _set: maps_set_input - - """filter the rows which have to be updated""" - where: maps_bool_exp! - ): maps_mutation_response - - """ - update single row of the table: "maps" - """ - update_maps_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: maps_set_input - pk_columns: maps_pk_columns_input! - ): maps - - """ - update multiples rows of table: "maps" - """ - update_maps_many( - """updates to execute, in order""" - updates: [maps_updates!]! - ): [maps_mutation_response] - - """ - update data of the table: "match_clips" - """ - update_match_clips( - """increments the numeric columns with given value of the filtered values""" - _inc: match_clips_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: match_clips_set_input - - """filter the rows which have to be updated""" - where: match_clips_bool_exp! - ): match_clips_mutation_response - - """ - update single row of the table: "match_clips" - """ - update_match_clips_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: match_clips_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: match_clips_set_input - pk_columns: match_clips_pk_columns_input! - ): match_clips - - """ - update multiples rows of table: "match_clips" - """ - update_match_clips_many( - """updates to execute, in order""" - updates: [match_clips_updates!]! - ): [match_clips_mutation_response] - - """ - update data of the table: "match_demo_sessions" - """ - update_match_demo_sessions( - """append existing jsonb value of filtered columns with new jsonb value""" - _append: match_demo_sessions_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: match_demo_sessions_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: match_demo_sessions_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: match_demo_sessions_delete_key_input - - """increments the numeric columns with given value of the filtered values""" - _inc: match_demo_sessions_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: match_demo_sessions_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: match_demo_sessions_set_input - - """filter the rows which have to be updated""" - where: match_demo_sessions_bool_exp! - ): match_demo_sessions_mutation_response - - """ - update single row of the table: "match_demo_sessions" - """ - update_match_demo_sessions_by_pk( - """append existing jsonb value of filtered columns with new jsonb value""" - _append: match_demo_sessions_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: match_demo_sessions_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: match_demo_sessions_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: match_demo_sessions_delete_key_input - - """increments the numeric columns with given value of the filtered values""" - _inc: match_demo_sessions_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: match_demo_sessions_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: match_demo_sessions_set_input - pk_columns: match_demo_sessions_pk_columns_input! - ): match_demo_sessions - - """ - update multiples rows of table: "match_demo_sessions" - """ - update_match_demo_sessions_many( - """updates to execute, in order""" - updates: [match_demo_sessions_updates!]! - ): [match_demo_sessions_mutation_response] - - """ - update data of the table: "match_lineup_players" - """ - update_match_lineup_players( - """increments the numeric columns with given value of the filtered values""" - _inc: match_lineup_players_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: match_lineup_players_set_input - - """filter the rows which have to be updated""" - where: match_lineup_players_bool_exp! - ): match_lineup_players_mutation_response - - """ - update single row of the table: "match_lineup_players" - """ - update_match_lineup_players_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: match_lineup_players_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: match_lineup_players_set_input - pk_columns: match_lineup_players_pk_columns_input! - ): match_lineup_players - - """ - update multiples rows of table: "match_lineup_players" - """ - update_match_lineup_players_many( - """updates to execute, in order""" - updates: [match_lineup_players_updates!]! - ): [match_lineup_players_mutation_response] - - """ - update data of the table: "match_lineups" - """ - update_match_lineups( - """increments the numeric columns with given value of the filtered values""" - _inc: match_lineups_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: match_lineups_set_input - - """filter the rows which have to be updated""" - where: match_lineups_bool_exp! - ): match_lineups_mutation_response - - """ - update single row of the table: "match_lineups" - """ - update_match_lineups_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: match_lineups_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: match_lineups_set_input - pk_columns: match_lineups_pk_columns_input! - ): match_lineups - - """ - update multiples rows of table: "match_lineups" - """ - update_match_lineups_many( - """updates to execute, in order""" - updates: [match_lineups_updates!]! - ): [match_lineups_mutation_response] - - """ - update data of the table: "match_map_demos" - """ - update_match_map_demos( - """append existing jsonb value of filtered columns with new jsonb value""" - _append: match_map_demos_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: match_map_demos_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: match_map_demos_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: match_map_demos_delete_key_input - - """increments the numeric columns with given value of the filtered values""" - _inc: match_map_demos_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: match_map_demos_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: match_map_demos_set_input - - """filter the rows which have to be updated""" - where: match_map_demos_bool_exp! - ): match_map_demos_mutation_response - - """ - update single row of the table: "match_map_demos" - """ - update_match_map_demos_by_pk( - """append existing jsonb value of filtered columns with new jsonb value""" - _append: match_map_demos_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: match_map_demos_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: match_map_demos_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: match_map_demos_delete_key_input - - """increments the numeric columns with given value of the filtered values""" - _inc: match_map_demos_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: match_map_demos_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: match_map_demos_set_input - pk_columns: match_map_demos_pk_columns_input! - ): match_map_demos - - """ - update multiples rows of table: "match_map_demos" - """ - update_match_map_demos_many( - """updates to execute, in order""" - updates: [match_map_demos_updates!]! - ): [match_map_demos_mutation_response] - - """ - update data of the table: "match_map_rounds" - """ - update_match_map_rounds( - """increments the numeric columns with given value of the filtered values""" - _inc: match_map_rounds_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: match_map_rounds_set_input - - """filter the rows which have to be updated""" - where: match_map_rounds_bool_exp! - ): match_map_rounds_mutation_response - - """ - update single row of the table: "match_map_rounds" - """ - update_match_map_rounds_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: match_map_rounds_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: match_map_rounds_set_input - pk_columns: match_map_rounds_pk_columns_input! - ): match_map_rounds - - """ - update multiples rows of table: "match_map_rounds" - """ - update_match_map_rounds_many( - """updates to execute, in order""" - updates: [match_map_rounds_updates!]! - ): [match_map_rounds_mutation_response] - - """ - update data of the table: "match_map_veto_picks" - """ - update_match_map_veto_picks( - """sets the columns of the filtered rows to the given values""" - _set: match_map_veto_picks_set_input - - """filter the rows which have to be updated""" - where: match_map_veto_picks_bool_exp! - ): match_map_veto_picks_mutation_response - - """ - update single row of the table: "match_map_veto_picks" - """ - update_match_map_veto_picks_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: match_map_veto_picks_set_input - pk_columns: match_map_veto_picks_pk_columns_input! - ): match_map_veto_picks - - """ - update multiples rows of table: "match_map_veto_picks" - """ - update_match_map_veto_picks_many( - """updates to execute, in order""" - updates: [match_map_veto_picks_updates!]! - ): [match_map_veto_picks_mutation_response] - - """ - update data of the table: "match_maps" - """ - update_match_maps( - """increments the numeric columns with given value of the filtered values""" - _inc: match_maps_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: match_maps_set_input - - """filter the rows which have to be updated""" - where: match_maps_bool_exp! - ): match_maps_mutation_response - - """ - update single row of the table: "match_maps" - """ - update_match_maps_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: match_maps_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: match_maps_set_input - pk_columns: match_maps_pk_columns_input! - ): match_maps - - """ - update multiples rows of table: "match_maps" - """ - update_match_maps_many( - """updates to execute, in order""" - updates: [match_maps_updates!]! - ): [match_maps_mutation_response] - - """ - update data of the table: "match_options" - """ - update_match_options( - """increments the numeric columns with given value of the filtered values""" - _inc: match_options_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: match_options_set_input - - """filter the rows which have to be updated""" - where: match_options_bool_exp! - ): match_options_mutation_response - - """ - update single row of the table: "match_options" - """ - update_match_options_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: match_options_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: match_options_set_input - pk_columns: match_options_pk_columns_input! - ): match_options - - """ - update multiples rows of table: "match_options" - """ - update_match_options_many( - """updates to execute, in order""" - updates: [match_options_updates!]! - ): [match_options_mutation_response] - - """ - update data of the table: "match_region_veto_picks" - """ - update_match_region_veto_picks( - """sets the columns of the filtered rows to the given values""" - _set: match_region_veto_picks_set_input - - """filter the rows which have to be updated""" - where: match_region_veto_picks_bool_exp! - ): match_region_veto_picks_mutation_response - - """ - update single row of the table: "match_region_veto_picks" - """ - update_match_region_veto_picks_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: match_region_veto_picks_set_input - pk_columns: match_region_veto_picks_pk_columns_input! - ): match_region_veto_picks - - """ - update multiples rows of table: "match_region_veto_picks" - """ - update_match_region_veto_picks_many( - """updates to execute, in order""" - updates: [match_region_veto_picks_updates!]! - ): [match_region_veto_picks_mutation_response] - - """ - update data of the table: "match_streams" - """ - update_match_streams( - """append existing jsonb value of filtered columns with new jsonb value""" - _append: match_streams_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: match_streams_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: match_streams_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: match_streams_delete_key_input - - """increments the numeric columns with given value of the filtered values""" - _inc: match_streams_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: match_streams_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: match_streams_set_input - - """filter the rows which have to be updated""" - where: match_streams_bool_exp! - ): match_streams_mutation_response - - """ - update single row of the table: "match_streams" - """ - update_match_streams_by_pk( - """append existing jsonb value of filtered columns with new jsonb value""" - _append: match_streams_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: match_streams_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: match_streams_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: match_streams_delete_key_input - - """increments the numeric columns with given value of the filtered values""" - _inc: match_streams_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: match_streams_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: match_streams_set_input - pk_columns: match_streams_pk_columns_input! - ): match_streams - - """ - update multiples rows of table: "match_streams" - """ - update_match_streams_many( - """updates to execute, in order""" - updates: [match_streams_updates!]! - ): [match_streams_mutation_response] - - """ - update data of the table: "match_type_cfgs" - """ - update_match_type_cfgs( - """sets the columns of the filtered rows to the given values""" - _set: match_type_cfgs_set_input - - """filter the rows which have to be updated""" - where: match_type_cfgs_bool_exp! - ): match_type_cfgs_mutation_response - - """ - update single row of the table: "match_type_cfgs" - """ - update_match_type_cfgs_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: match_type_cfgs_set_input - pk_columns: match_type_cfgs_pk_columns_input! - ): match_type_cfgs - - """ - update multiples rows of table: "match_type_cfgs" - """ - update_match_type_cfgs_many( - """updates to execute, in order""" - updates: [match_type_cfgs_updates!]! - ): [match_type_cfgs_mutation_response] - - """ - update data of the table: "matches" - """ - update_matches( - """increments the numeric columns with given value of the filtered values""" - _inc: matches_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: matches_set_input - - """filter the rows which have to be updated""" - where: matches_bool_exp! - ): matches_mutation_response - - """ - update single row of the table: "matches" - """ - update_matches_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: matches_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: matches_set_input - pk_columns: matches_pk_columns_input! - ): matches - - """ - update multiples rows of table: "matches" - """ - update_matches_many( - """updates to execute, in order""" - updates: [matches_updates!]! - ): [matches_mutation_response] - - """ - update data of the table: "migration_hashes.hashes" - """ - update_migration_hashes_hashes( - """sets the columns of the filtered rows to the given values""" - _set: migration_hashes_hashes_set_input - - """filter the rows which have to be updated""" - where: migration_hashes_hashes_bool_exp! - ): migration_hashes_hashes_mutation_response - - """ - update single row of the table: "migration_hashes.hashes" - """ - update_migration_hashes_hashes_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: migration_hashes_hashes_set_input - pk_columns: migration_hashes_hashes_pk_columns_input! - ): migration_hashes_hashes - - """ - update multiples rows of table: "migration_hashes.hashes" - """ - update_migration_hashes_hashes_many( - """updates to execute, in order""" - updates: [migration_hashes_hashes_updates!]! - ): [migration_hashes_hashes_mutation_response] - - """ - update data of the table: "v_my_friends" - """ - update_my_friends( - """append existing jsonb value of filtered columns with new jsonb value""" - _append: my_friends_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: my_friends_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: my_friends_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: my_friends_delete_key_input - - """increments the numeric columns with given value of the filtered values""" - _inc: my_friends_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: my_friends_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: my_friends_set_input - - """filter the rows which have to be updated""" - where: my_friends_bool_exp! - ): my_friends_mutation_response - - """ - update multiples rows of table: "v_my_friends" - """ - update_my_friends_many( - """updates to execute, in order""" - updates: [my_friends_updates!]! - ): [my_friends_mutation_response] - - """ - update data of the table: "news_articles" - """ - update_news_articles( - """increments the numeric columns with given value of the filtered values""" - _inc: news_articles_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: news_articles_set_input - - """filter the rows which have to be updated""" - where: news_articles_bool_exp! - ): news_articles_mutation_response - - """ - update single row of the table: "news_articles" - """ - update_news_articles_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: news_articles_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: news_articles_set_input - pk_columns: news_articles_pk_columns_input! - ): news_articles - - """ - update multiples rows of table: "news_articles" - """ - update_news_articles_many( - """updates to execute, in order""" - updates: [news_articles_updates!]! - ): [news_articles_mutation_response] - - """ - update data of the table: "notification_preferences" - """ - update_notification_preferences( - """increments the numeric columns with given value of the filtered values""" - _inc: notification_preferences_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: notification_preferences_set_input - - """filter the rows which have to be updated""" - where: notification_preferences_bool_exp! - ): notification_preferences_mutation_response - - """ - update single row of the table: "notification_preferences" - """ - update_notification_preferences_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: notification_preferences_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: notification_preferences_set_input - pk_columns: notification_preferences_pk_columns_input! - ): notification_preferences - - """ - update multiples rows of table: "notification_preferences" - """ - update_notification_preferences_many( - """updates to execute, in order""" - updates: [notification_preferences_updates!]! - ): [notification_preferences_mutation_response] - - """ - update data of the table: "notifications" - """ - update_notifications( - """append existing jsonb value of filtered columns with new jsonb value""" - _append: notifications_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: notifications_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: notifications_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: notifications_delete_key_input - - """increments the numeric columns with given value of the filtered values""" - _inc: notifications_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: notifications_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: notifications_set_input - - """filter the rows which have to be updated""" - where: notifications_bool_exp! - ): notifications_mutation_response - - """ - update single row of the table: "notifications" - """ - update_notifications_by_pk( - """append existing jsonb value of filtered columns with new jsonb value""" - _append: notifications_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: notifications_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: notifications_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: notifications_delete_key_input - - """increments the numeric columns with given value of the filtered values""" - _inc: notifications_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: notifications_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: notifications_set_input - pk_columns: notifications_pk_columns_input! - ): notifications - - """ - update multiples rows of table: "notifications" - """ - update_notifications_many( - """updates to execute, in order""" - updates: [notifications_updates!]! - ): [notifications_mutation_response] - - """ - update data of the table: "pending_match_import_players" - """ - update_pending_match_import_players( - """increments the numeric columns with given value of the filtered values""" - _inc: pending_match_import_players_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: pending_match_import_players_set_input - - """filter the rows which have to be updated""" - where: pending_match_import_players_bool_exp! - ): pending_match_import_players_mutation_response - - """ - update single row of the table: "pending_match_import_players" - """ - update_pending_match_import_players_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: pending_match_import_players_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: pending_match_import_players_set_input - pk_columns: pending_match_import_players_pk_columns_input! - ): pending_match_import_players - - """ - update multiples rows of table: "pending_match_import_players" - """ - update_pending_match_import_players_many( - """updates to execute, in order""" - updates: [pending_match_import_players_updates!]! - ): [pending_match_import_players_mutation_response] - - """ - update data of the table: "pending_match_imports" - """ - update_pending_match_imports( - """increments the numeric columns with given value of the filtered values""" - _inc: pending_match_imports_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: pending_match_imports_set_input - - """filter the rows which have to be updated""" - where: pending_match_imports_bool_exp! - ): pending_match_imports_mutation_response - - """ - update single row of the table: "pending_match_imports" - """ - update_pending_match_imports_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: pending_match_imports_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: pending_match_imports_set_input - pk_columns: pending_match_imports_pk_columns_input! - ): pending_match_imports - - """ - update multiples rows of table: "pending_match_imports" - """ - update_pending_match_imports_many( - """updates to execute, in order""" - updates: [pending_match_imports_updates!]! - ): [pending_match_imports_mutation_response] - - """ - update data of the table: "player_aim_stats_demo" - """ - update_player_aim_stats_demo( - """increments the numeric columns with given value of the filtered values""" - _inc: player_aim_stats_demo_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_aim_stats_demo_set_input - - """filter the rows which have to be updated""" - where: player_aim_stats_demo_bool_exp! - ): player_aim_stats_demo_mutation_response - - """ - update single row of the table: "player_aim_stats_demo" - """ - update_player_aim_stats_demo_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: player_aim_stats_demo_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_aim_stats_demo_set_input - pk_columns: player_aim_stats_demo_pk_columns_input! - ): player_aim_stats_demo - - """ - update multiples rows of table: "player_aim_stats_demo" - """ - update_player_aim_stats_demo_many( - """updates to execute, in order""" - updates: [player_aim_stats_demo_updates!]! - ): [player_aim_stats_demo_mutation_response] - - """ - update data of the table: "player_aim_weapon_stats" - """ - update_player_aim_weapon_stats( - """increments the numeric columns with given value of the filtered values""" - _inc: player_aim_weapon_stats_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_aim_weapon_stats_set_input - - """filter the rows which have to be updated""" - where: player_aim_weapon_stats_bool_exp! - ): player_aim_weapon_stats_mutation_response - - """ - update single row of the table: "player_aim_weapon_stats" - """ - update_player_aim_weapon_stats_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: player_aim_weapon_stats_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_aim_weapon_stats_set_input - pk_columns: player_aim_weapon_stats_pk_columns_input! - ): player_aim_weapon_stats - - """ - update multiples rows of table: "player_aim_weapon_stats" - """ - update_player_aim_weapon_stats_many( - """updates to execute, in order""" - updates: [player_aim_weapon_stats_updates!]! - ): [player_aim_weapon_stats_mutation_response] - - """ - update data of the table: "player_assists" - """ - update_player_assists( - """increments the numeric columns with given value of the filtered values""" - _inc: player_assists_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_assists_set_input - - """filter the rows which have to be updated""" - where: player_assists_bool_exp! - ): player_assists_mutation_response - - """ - update single row of the table: "player_assists" - """ - update_player_assists_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: player_assists_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_assists_set_input - pk_columns: player_assists_pk_columns_input! - ): player_assists - - """ - update multiples rows of table: "player_assists" - """ - update_player_assists_many( - """updates to execute, in order""" - updates: [player_assists_updates!]! - ): [player_assists_mutation_response] - - """ - update data of the table: "player_damages" - """ - update_player_damages( - """increments the numeric columns with given value of the filtered values""" - _inc: player_damages_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_damages_set_input - - """filter the rows which have to be updated""" - where: player_damages_bool_exp! - ): player_damages_mutation_response - - """ - update single row of the table: "player_damages" - """ - update_player_damages_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: player_damages_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_damages_set_input - pk_columns: player_damages_pk_columns_input! - ): player_damages - - """ - update multiples rows of table: "player_damages" - """ - update_player_damages_many( - """updates to execute, in order""" - updates: [player_damages_updates!]! - ): [player_damages_mutation_response] - - """ - update data of the table: "player_elo" - """ - update_player_elo( - """increments the numeric columns with given value of the filtered values""" - _inc: player_elo_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_elo_set_input - - """filter the rows which have to be updated""" - where: player_elo_bool_exp! - ): player_elo_mutation_response - - """ - update single row of the table: "player_elo" - """ - update_player_elo_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: player_elo_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_elo_set_input - pk_columns: player_elo_pk_columns_input! - ): player_elo - - """ - update multiples rows of table: "player_elo" - """ - update_player_elo_many( - """updates to execute, in order""" - updates: [player_elo_updates!]! - ): [player_elo_mutation_response] - - """ - update data of the table: "player_faceit_rank_history" - """ - update_player_faceit_rank_history( - """increments the numeric columns with given value of the filtered values""" - _inc: player_faceit_rank_history_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_faceit_rank_history_set_input - - """filter the rows which have to be updated""" - where: player_faceit_rank_history_bool_exp! - ): player_faceit_rank_history_mutation_response - - """ - update single row of the table: "player_faceit_rank_history" - """ - update_player_faceit_rank_history_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: player_faceit_rank_history_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_faceit_rank_history_set_input - pk_columns: player_faceit_rank_history_pk_columns_input! - ): player_faceit_rank_history - - """ - update multiples rows of table: "player_faceit_rank_history" - """ - update_player_faceit_rank_history_many( - """updates to execute, in order""" - updates: [player_faceit_rank_history_updates!]! - ): [player_faceit_rank_history_mutation_response] - - """ - update data of the table: "player_flashes" - """ - update_player_flashes( - """increments the numeric columns with given value of the filtered values""" - _inc: player_flashes_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_flashes_set_input - - """filter the rows which have to be updated""" - where: player_flashes_bool_exp! - ): player_flashes_mutation_response - - """ - update single row of the table: "player_flashes" - """ - update_player_flashes_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: player_flashes_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_flashes_set_input - pk_columns: player_flashes_pk_columns_input! - ): player_flashes - - """ - update multiples rows of table: "player_flashes" - """ - update_player_flashes_many( - """updates to execute, in order""" - updates: [player_flashes_updates!]! - ): [player_flashes_mutation_response] - - """ - update data of the table: "player_kills" - """ - update_player_kills( - """increments the numeric columns with given value of the filtered values""" - _inc: player_kills_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_kills_set_input - - """filter the rows which have to be updated""" - where: player_kills_bool_exp! - ): player_kills_mutation_response - - """ - update single row of the table: "player_kills" - """ - update_player_kills_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: player_kills_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_kills_set_input - pk_columns: player_kills_pk_columns_input! - ): player_kills - - """ - update data of the table: "player_kills_by_weapon" - """ - update_player_kills_by_weapon( - """increments the numeric columns with given value of the filtered values""" - _inc: player_kills_by_weapon_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_kills_by_weapon_set_input - - """filter the rows which have to be updated""" - where: player_kills_by_weapon_bool_exp! - ): player_kills_by_weapon_mutation_response - - """ - update single row of the table: "player_kills_by_weapon" - """ - update_player_kills_by_weapon_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: player_kills_by_weapon_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_kills_by_weapon_set_input - pk_columns: player_kills_by_weapon_pk_columns_input! - ): player_kills_by_weapon - - """ - update multiples rows of table: "player_kills_by_weapon" - """ - update_player_kills_by_weapon_many( - """updates to execute, in order""" - updates: [player_kills_by_weapon_updates!]! - ): [player_kills_by_weapon_mutation_response] - - """ - update multiples rows of table: "player_kills" - """ - update_player_kills_many( - """updates to execute, in order""" - updates: [player_kills_updates!]! - ): [player_kills_mutation_response] - - """ - update data of the table: "player_leaderboard_rank" - """ - update_player_leaderboard_rank( - """increments the numeric columns with given value of the filtered values""" - _inc: player_leaderboard_rank_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_leaderboard_rank_set_input - - """filter the rows which have to be updated""" - where: player_leaderboard_rank_bool_exp! - ): player_leaderboard_rank_mutation_response - - """ - update multiples rows of table: "player_leaderboard_rank" - """ - update_player_leaderboard_rank_many( - """updates to execute, in order""" - updates: [player_leaderboard_rank_updates!]! - ): [player_leaderboard_rank_mutation_response] - - """ - update data of the table: "player_match_map_stats" - """ - update_player_match_map_stats( - """increments the numeric columns with given value of the filtered values""" - _inc: player_match_map_stats_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_match_map_stats_set_input - - """filter the rows which have to be updated""" - where: player_match_map_stats_bool_exp! - ): player_match_map_stats_mutation_response - - """ - update single row of the table: "player_match_map_stats" - """ - update_player_match_map_stats_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: player_match_map_stats_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_match_map_stats_set_input - pk_columns: player_match_map_stats_pk_columns_input! - ): player_match_map_stats - - """ - update multiples rows of table: "player_match_map_stats" - """ - update_player_match_map_stats_many( - """updates to execute, in order""" - updates: [player_match_map_stats_updates!]! - ): [player_match_map_stats_mutation_response] - - """ - update data of the table: "player_objectives" - """ - update_player_objectives( - """increments the numeric columns with given value of the filtered values""" - _inc: player_objectives_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_objectives_set_input - - """filter the rows which have to be updated""" - where: player_objectives_bool_exp! - ): player_objectives_mutation_response - - """ - update single row of the table: "player_objectives" - """ - update_player_objectives_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: player_objectives_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_objectives_set_input - pk_columns: player_objectives_pk_columns_input! - ): player_objectives - - """ - update multiples rows of table: "player_objectives" - """ - update_player_objectives_many( - """updates to execute, in order""" - updates: [player_objectives_updates!]! - ): [player_objectives_mutation_response] - - """ - update data of the table: "player_premier_rank_history" - """ - update_player_premier_rank_history( - """increments the numeric columns with given value of the filtered values""" - _inc: player_premier_rank_history_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_premier_rank_history_set_input - - """filter the rows which have to be updated""" - where: player_premier_rank_history_bool_exp! - ): player_premier_rank_history_mutation_response - - """ - update single row of the table: "player_premier_rank_history" - """ - update_player_premier_rank_history_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: player_premier_rank_history_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_premier_rank_history_set_input - pk_columns: player_premier_rank_history_pk_columns_input! - ): player_premier_rank_history - - """ - update multiples rows of table: "player_premier_rank_history" - """ - update_player_premier_rank_history_many( - """updates to execute, in order""" - updates: [player_premier_rank_history_updates!]! - ): [player_premier_rank_history_mutation_response] - - """ - update data of the table: "player_sanctions" - """ - update_player_sanctions( - """increments the numeric columns with given value of the filtered values""" - _inc: player_sanctions_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_sanctions_set_input - - """filter the rows which have to be updated""" - where: player_sanctions_bool_exp! - ): player_sanctions_mutation_response - - """ - update single row of the table: "player_sanctions" - """ - update_player_sanctions_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: player_sanctions_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_sanctions_set_input - pk_columns: player_sanctions_pk_columns_input! - ): player_sanctions - - """ - update multiples rows of table: "player_sanctions" - """ - update_player_sanctions_many( - """updates to execute, in order""" - updates: [player_sanctions_updates!]! - ): [player_sanctions_mutation_response] - - """ - update data of the table: "player_season_stats" - """ - update_player_season_stats( - """increments the numeric columns with given value of the filtered values""" - _inc: player_season_stats_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_season_stats_set_input - - """filter the rows which have to be updated""" - where: player_season_stats_bool_exp! - ): player_season_stats_mutation_response - - """ - update single row of the table: "player_season_stats" - """ - update_player_season_stats_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: player_season_stats_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_season_stats_set_input - pk_columns: player_season_stats_pk_columns_input! - ): player_season_stats - - """ - update multiples rows of table: "player_season_stats" - """ - update_player_season_stats_many( - """updates to execute, in order""" - updates: [player_season_stats_updates!]! - ): [player_season_stats_mutation_response] - - """ - update data of the table: "player_stats" - """ - update_player_stats( - """increments the numeric columns with given value of the filtered values""" - _inc: player_stats_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_stats_set_input - - """filter the rows which have to be updated""" - where: player_stats_bool_exp! - ): player_stats_mutation_response - - """ - update single row of the table: "player_stats" - """ - update_player_stats_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: player_stats_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_stats_set_input - pk_columns: player_stats_pk_columns_input! - ): player_stats - - """ - update multiples rows of table: "player_stats" - """ - update_player_stats_many( - """updates to execute, in order""" - updates: [player_stats_updates!]! - ): [player_stats_mutation_response] - - """ - update data of the table: "player_steam_bot_friend" - """ - update_player_steam_bot_friend( - """append existing jsonb value of filtered columns with new jsonb value""" - _append: player_steam_bot_friend_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: player_steam_bot_friend_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: player_steam_bot_friend_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: player_steam_bot_friend_delete_key_input - - """increments the numeric columns with given value of the filtered values""" - _inc: player_steam_bot_friend_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: player_steam_bot_friend_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: player_steam_bot_friend_set_input - - """filter the rows which have to be updated""" - where: player_steam_bot_friend_bool_exp! - ): player_steam_bot_friend_mutation_response - - """ - update single row of the table: "player_steam_bot_friend" - """ - update_player_steam_bot_friend_by_pk( - """append existing jsonb value of filtered columns with new jsonb value""" - _append: player_steam_bot_friend_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: player_steam_bot_friend_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: player_steam_bot_friend_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: player_steam_bot_friend_delete_key_input - - """increments the numeric columns with given value of the filtered values""" - _inc: player_steam_bot_friend_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: player_steam_bot_friend_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: player_steam_bot_friend_set_input - pk_columns: player_steam_bot_friend_pk_columns_input! - ): player_steam_bot_friend - - """ - update multiples rows of table: "player_steam_bot_friend" - """ - update_player_steam_bot_friend_many( - """updates to execute, in order""" - updates: [player_steam_bot_friend_updates!]! - ): [player_steam_bot_friend_mutation_response] - - """ - update data of the table: "player_steam_match_auth" - """ - update_player_steam_match_auth( - """increments the numeric columns with given value of the filtered values""" - _inc: player_steam_match_auth_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_steam_match_auth_set_input - - """filter the rows which have to be updated""" - where: player_steam_match_auth_bool_exp! - ): player_steam_match_auth_mutation_response - - """ - update single row of the table: "player_steam_match_auth" - """ - update_player_steam_match_auth_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: player_steam_match_auth_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_steam_match_auth_set_input - pk_columns: player_steam_match_auth_pk_columns_input! - ): player_steam_match_auth - - """ - update multiples rows of table: "player_steam_match_auth" - """ - update_player_steam_match_auth_many( - """updates to execute, in order""" - updates: [player_steam_match_auth_updates!]! - ): [player_steam_match_auth_mutation_response] - - """ - update data of the table: "player_unused_utility" - """ - update_player_unused_utility( - """increments the numeric columns with given value of the filtered values""" - _inc: player_unused_utility_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_unused_utility_set_input - - """filter the rows which have to be updated""" - where: player_unused_utility_bool_exp! - ): player_unused_utility_mutation_response - - """ - update single row of the table: "player_unused_utility" - """ - update_player_unused_utility_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: player_unused_utility_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_unused_utility_set_input - pk_columns: player_unused_utility_pk_columns_input! - ): player_unused_utility - - """ - update multiples rows of table: "player_unused_utility" - """ - update_player_unused_utility_many( - """updates to execute, in order""" - updates: [player_unused_utility_updates!]! - ): [player_unused_utility_mutation_response] - - """ - update data of the table: "player_utility" - """ - update_player_utility( - """increments the numeric columns with given value of the filtered values""" - _inc: player_utility_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_utility_set_input - - """filter the rows which have to be updated""" - where: player_utility_bool_exp! - ): player_utility_mutation_response - - """ - update single row of the table: "player_utility" - """ - update_player_utility_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: player_utility_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_utility_set_input - pk_columns: player_utility_pk_columns_input! - ): player_utility - - """ - update multiples rows of table: "player_utility" - """ - update_player_utility_many( - """updates to execute, in order""" - updates: [player_utility_updates!]! - ): [player_utility_mutation_response] - - """ - update data of the table: "players" - """ - update_players( - """increments the numeric columns with given value of the filtered values""" - _inc: players_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: players_set_input - - """filter the rows which have to be updated""" - where: players_bool_exp! - ): players_mutation_response - - """ - update single row of the table: "players" - """ - update_players_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: players_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: players_set_input - pk_columns: players_pk_columns_input! - ): players - - """ - update multiples rows of table: "players" - """ - update_players_many( - """updates to execute, in order""" - updates: [players_updates!]! - ): [players_mutation_response] - - """ - update data of the table: "plugin_versions" - """ - update_plugin_versions( - """increments the numeric columns with given value of the filtered values""" - _inc: plugin_versions_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: plugin_versions_set_input - - """filter the rows which have to be updated""" - where: plugin_versions_bool_exp! - ): plugin_versions_mutation_response - - """ - update single row of the table: "plugin_versions" - """ - update_plugin_versions_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: plugin_versions_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: plugin_versions_set_input - pk_columns: plugin_versions_pk_columns_input! - ): plugin_versions - - """ - update multiples rows of table: "plugin_versions" - """ - update_plugin_versions_many( - """updates to execute, in order""" - updates: [plugin_versions_updates!]! - ): [plugin_versions_mutation_response] - - """ - update data of the table: "push_subscriptions" - """ - update_push_subscriptions( - """increments the numeric columns with given value of the filtered values""" - _inc: push_subscriptions_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: push_subscriptions_set_input - - """filter the rows which have to be updated""" - where: push_subscriptions_bool_exp! - ): push_subscriptions_mutation_response - - """ - update single row of the table: "push_subscriptions" - """ - update_push_subscriptions_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: push_subscriptions_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: push_subscriptions_set_input - pk_columns: push_subscriptions_pk_columns_input! - ): push_subscriptions - - """ - update multiples rows of table: "push_subscriptions" - """ - update_push_subscriptions_many( - """updates to execute, in order""" - updates: [push_subscriptions_updates!]! - ): [push_subscriptions_mutation_response] - - """ - update data of the table: "v_role_permissions" - """ - update_role_permissions( - """sets the columns of the filtered rows to the given values""" - _set: role_permissions_set_input - - """filter the rows which have to be updated""" - where: role_permissions_bool_exp! - ): role_permissions_mutation_response - - """ - update multiples rows of table: "v_role_permissions" - """ - update_role_permissions_many( - """updates to execute, in order""" - updates: [role_permissions_updates!]! - ): [role_permissions_mutation_response] - - """ - update data of the table: "seasons" - """ - update_seasons( - """increments the numeric columns with given value of the filtered values""" - _inc: seasons_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: seasons_set_input - - """filter the rows which have to be updated""" - where: seasons_bool_exp! - ): seasons_mutation_response - - """ - update single row of the table: "seasons" - """ - update_seasons_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: seasons_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: seasons_set_input - pk_columns: seasons_pk_columns_input! - ): seasons - - """ - update multiples rows of table: "seasons" - """ - update_seasons_many( - """updates to execute, in order""" - updates: [seasons_updates!]! - ): [seasons_mutation_response] - - """ - update data of the table: "server_regions" - """ - update_server_regions( - """sets the columns of the filtered rows to the given values""" - _set: server_regions_set_input - - """filter the rows which have to be updated""" - where: server_regions_bool_exp! - ): server_regions_mutation_response - - """ - update single row of the table: "server_regions" - """ - update_server_regions_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: server_regions_set_input - pk_columns: server_regions_pk_columns_input! - ): server_regions - - """ - update multiples rows of table: "server_regions" - """ - update_server_regions_many( - """updates to execute, in order""" - updates: [server_regions_updates!]! - ): [server_regions_mutation_response] - - """ - 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 - - """filter the rows which have to be updated""" - where: servers_bool_exp! - ): servers_mutation_response - - """ - 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! - ): servers - - """ - update multiples rows of table: "servers" - """ - update_servers_many( - """updates to execute, in order""" - updates: [servers_updates!]! - ): [servers_mutation_response] - - """ - update data of the table: "settings" - """ - update_settings( - """sets the columns of the filtered rows to the given values""" - _set: settings_set_input - - """filter the rows which have to be updated""" - where: settings_bool_exp! - ): settings_mutation_response - - """ - update single row of the table: "settings" - """ - update_settings_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: settings_set_input - pk_columns: settings_pk_columns_input! - ): settings - - """ - update multiples rows of table: "settings" - """ - update_settings_many( - """updates to execute, in order""" - updates: [settings_updates!]! - ): [settings_mutation_response] - - """ - update data of the table: "steam_account_claims" - """ - update_steam_account_claims( - """sets the columns of the filtered rows to the given values""" - _set: steam_account_claims_set_input - - """filter the rows which have to be updated""" - where: steam_account_claims_bool_exp! - ): steam_account_claims_mutation_response - - """ - update single row of the table: "steam_account_claims" - """ - update_steam_account_claims_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: steam_account_claims_set_input - pk_columns: steam_account_claims_pk_columns_input! - ): steam_account_claims - - """ - update multiples rows of table: "steam_account_claims" - """ - update_steam_account_claims_many( - """updates to execute, in order""" - updates: [steam_account_claims_updates!]! - ): [steam_account_claims_mutation_response] - - """ - update data of the table: "steam_accounts" - """ - update_steam_accounts( - """increments the numeric columns with given value of the filtered values""" - _inc: steam_accounts_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: steam_accounts_set_input - - """filter the rows which have to be updated""" - where: steam_accounts_bool_exp! - ): steam_accounts_mutation_response - - """ - update single row of the table: "steam_accounts" - """ - update_steam_accounts_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: steam_accounts_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: steam_accounts_set_input - pk_columns: steam_accounts_pk_columns_input! - ): steam_accounts - - """ - update multiples rows of table: "steam_accounts" - """ - update_steam_accounts_many( - """updates to execute, in order""" - updates: [steam_accounts_updates!]! - ): [steam_accounts_mutation_response] - - """ - update data of the table: "system_alerts" - """ - update_system_alerts( - """increments the numeric columns with given value of the filtered values""" - _inc: system_alerts_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: system_alerts_set_input - - """filter the rows which have to be updated""" - where: system_alerts_bool_exp! - ): system_alerts_mutation_response - - """ - update single row of the table: "system_alerts" - """ - update_system_alerts_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: system_alerts_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: system_alerts_set_input - pk_columns: system_alerts_pk_columns_input! - ): system_alerts - - """ - update multiples rows of table: "system_alerts" - """ - update_system_alerts_many( - """updates to execute, in order""" - updates: [system_alerts_updates!]! - ): [system_alerts_mutation_response] - - """ - update data of the table: "team_invites" - """ - update_team_invites( - """increments the numeric columns with given value of the filtered values""" - _inc: team_invites_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: team_invites_set_input - - """filter the rows which have to be updated""" - where: team_invites_bool_exp! - ): team_invites_mutation_response - - """ - update single row of the table: "team_invites" - """ - update_team_invites_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: team_invites_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: team_invites_set_input - pk_columns: team_invites_pk_columns_input! - ): team_invites - - """ - update multiples rows of table: "team_invites" - """ - update_team_invites_many( - """updates to execute, in order""" - updates: [team_invites_updates!]! - ): [team_invites_mutation_response] - - """ - update data of the table: "team_roster" - """ - update_team_roster( - """increments the numeric columns with given value of the filtered values""" - _inc: team_roster_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: team_roster_set_input - - """filter the rows which have to be updated""" - where: team_roster_bool_exp! - ): team_roster_mutation_response - - """ - update single row of the table: "team_roster" - """ - update_team_roster_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: team_roster_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: team_roster_set_input - pk_columns: team_roster_pk_columns_input! - ): team_roster - - """ - update multiples rows of table: "team_roster" - """ - update_team_roster_many( - """updates to execute, in order""" - updates: [team_roster_updates!]! - ): [team_roster_mutation_response] - - """ - update data of the table: "team_scrim_alerts" - """ - update_team_scrim_alerts( - """increments the numeric columns with given value of the filtered values""" - _inc: team_scrim_alerts_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: team_scrim_alerts_set_input - - """filter the rows which have to be updated""" - where: team_scrim_alerts_bool_exp! - ): team_scrim_alerts_mutation_response - - """ - update single row of the table: "team_scrim_alerts" - """ - update_team_scrim_alerts_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: team_scrim_alerts_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: team_scrim_alerts_set_input - pk_columns: team_scrim_alerts_pk_columns_input! - ): team_scrim_alerts - - """ - update multiples rows of table: "team_scrim_alerts" - """ - update_team_scrim_alerts_many( - """updates to execute, in order""" - updates: [team_scrim_alerts_updates!]! - ): [team_scrim_alerts_mutation_response] - - """ - update data of the table: "team_scrim_availability" - """ - update_team_scrim_availability( - """sets the columns of the filtered rows to the given values""" - _set: team_scrim_availability_set_input - - """filter the rows which have to be updated""" - where: team_scrim_availability_bool_exp! - ): team_scrim_availability_mutation_response - - """ - update single row of the table: "team_scrim_availability" - """ - update_team_scrim_availability_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: team_scrim_availability_set_input - pk_columns: team_scrim_availability_pk_columns_input! - ): team_scrim_availability - - """ - update multiples rows of table: "team_scrim_availability" - """ - update_team_scrim_availability_many( - """updates to execute, in order""" - updates: [team_scrim_availability_updates!]! - ): [team_scrim_availability_mutation_response] - - """ - update data of the table: "team_scrim_request_proposals" - """ - update_team_scrim_request_proposals( - """increments the numeric columns with given value of the filtered values""" - _inc: team_scrim_request_proposals_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: team_scrim_request_proposals_set_input - - """filter the rows which have to be updated""" - where: team_scrim_request_proposals_bool_exp! - ): team_scrim_request_proposals_mutation_response - - """ - update single row of the table: "team_scrim_request_proposals" - """ - update_team_scrim_request_proposals_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: team_scrim_request_proposals_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: team_scrim_request_proposals_set_input - pk_columns: team_scrim_request_proposals_pk_columns_input! - ): team_scrim_request_proposals - - """ - update multiples rows of table: "team_scrim_request_proposals" - """ - update_team_scrim_request_proposals_many( - """updates to execute, in order""" - updates: [team_scrim_request_proposals_updates!]! - ): [team_scrim_request_proposals_mutation_response] - - """ - update data of the table: "team_scrim_requests" - """ - update_team_scrim_requests( - """increments the numeric columns with given value of the filtered values""" - _inc: team_scrim_requests_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: team_scrim_requests_set_input - - """filter the rows which have to be updated""" - where: team_scrim_requests_bool_exp! - ): team_scrim_requests_mutation_response - - """ - update single row of the table: "team_scrim_requests" - """ - update_team_scrim_requests_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: team_scrim_requests_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: team_scrim_requests_set_input - pk_columns: team_scrim_requests_pk_columns_input! - ): team_scrim_requests - - """ - update multiples rows of table: "team_scrim_requests" - """ - update_team_scrim_requests_many( - """updates to execute, in order""" - updates: [team_scrim_requests_updates!]! - ): [team_scrim_requests_mutation_response] - - """ - update data of the table: "team_scrim_settings" - """ - update_team_scrim_settings( - """increments the numeric columns with given value of the filtered values""" - _inc: team_scrim_settings_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: team_scrim_settings_set_input - - """filter the rows which have to be updated""" - where: team_scrim_settings_bool_exp! - ): team_scrim_settings_mutation_response - - """ - update single row of the table: "team_scrim_settings" - """ - update_team_scrim_settings_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: team_scrim_settings_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: team_scrim_settings_set_input - pk_columns: team_scrim_settings_pk_columns_input! - ): team_scrim_settings - - """ - update multiples rows of table: "team_scrim_settings" - """ - update_team_scrim_settings_many( - """updates to execute, in order""" - updates: [team_scrim_settings_updates!]! - ): [team_scrim_settings_mutation_response] - - """ - update data of the table: "team_suggestions" - """ - update_team_suggestions( - """increments the numeric columns with given value of the filtered values""" - _inc: team_suggestions_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: team_suggestions_set_input - - """filter the rows which have to be updated""" - where: team_suggestions_bool_exp! - ): team_suggestions_mutation_response - - """ - update single row of the table: "team_suggestions" - """ - update_team_suggestions_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: team_suggestions_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: team_suggestions_set_input - pk_columns: team_suggestions_pk_columns_input! - ): team_suggestions - - """ - update multiples rows of table: "team_suggestions" - """ - update_team_suggestions_many( - """updates to execute, in order""" - updates: [team_suggestions_updates!]! - ): [team_suggestions_mutation_response] - - """ - update data of the table: "teams" - """ - update_teams( - """increments the numeric columns with given value of the filtered values""" - _inc: teams_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: teams_set_input - - """filter the rows which have to be updated""" - where: teams_bool_exp! - ): teams_mutation_response - - """ - update single row of the table: "teams" - """ - update_teams_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: teams_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: teams_set_input - pk_columns: teams_pk_columns_input! - ): teams - - """ - update multiples rows of table: "teams" - """ - update_teams_many( - """updates to execute, in order""" - updates: [teams_updates!]! - ): [teams_mutation_response] - - """ - update data of the table: "tournament_awards" - """ - update_tournament_awards( - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_awards_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_awards_set_input - - """filter the rows which have to be updated""" - where: tournament_awards_bool_exp! - ): tournament_awards_mutation_response - - """ - update single row of the table: "tournament_awards" - """ - update_tournament_awards_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_awards_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_awards_set_input - pk_columns: tournament_awards_pk_columns_input! - ): tournament_awards - - """ - update multiples rows of table: "tournament_awards" - """ - update_tournament_awards_many( - """updates to execute, in order""" - updates: [tournament_awards_updates!]! - ): [tournament_awards_mutation_response] - - """ - update data of the table: "tournament_brackets" - """ - update_tournament_brackets( - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_brackets_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_brackets_set_input - - """filter the rows which have to be updated""" - where: tournament_brackets_bool_exp! - ): tournament_brackets_mutation_response - - """ - update single row of the table: "tournament_brackets" - """ - update_tournament_brackets_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_brackets_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_brackets_set_input - pk_columns: tournament_brackets_pk_columns_input! - ): tournament_brackets - - """ - update multiples rows of table: "tournament_brackets" - """ - update_tournament_brackets_many( - """updates to execute, in order""" - updates: [tournament_brackets_updates!]! - ): [tournament_brackets_mutation_response] - - """ - update data of the table: "tournament_categories" - """ - update_tournament_categories( - """sets the columns of the filtered rows to the given values""" - _set: tournament_categories_set_input - - """filter the rows which have to be updated""" - where: tournament_categories_bool_exp! - ): tournament_categories_mutation_response - - """ - update single row of the table: "tournament_categories" - """ - update_tournament_categories_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: tournament_categories_set_input - pk_columns: tournament_categories_pk_columns_input! - ): tournament_categories - - """ - update multiples rows of table: "tournament_categories" - """ - update_tournament_categories_many( - """updates to execute, in order""" - updates: [tournament_categories_updates!]! - ): [tournament_categories_mutation_response] - - """ - update data of the table: "tournament_free_agents" - """ - update_tournament_free_agents( - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_free_agents_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_free_agents_set_input - - """filter the rows which have to be updated""" - where: tournament_free_agents_bool_exp! - ): tournament_free_agents_mutation_response - - """ - update single row of the table: "tournament_free_agents" - """ - update_tournament_free_agents_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_free_agents_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_free_agents_set_input - pk_columns: tournament_free_agents_pk_columns_input! - ): tournament_free_agents - - """ - update multiples rows of table: "tournament_free_agents" - """ - update_tournament_free_agents_many( - """updates to execute, in order""" - updates: [tournament_free_agents_updates!]! - ): [tournament_free_agents_mutation_response] - - """ - update data of the table: "tournament_invite_code_uses" - """ - update_tournament_invite_code_uses( - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_invite_code_uses_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_invite_code_uses_set_input - - """filter the rows which have to be updated""" - where: tournament_invite_code_uses_bool_exp! - ): tournament_invite_code_uses_mutation_response - - """ - update single row of the table: "tournament_invite_code_uses" - """ - update_tournament_invite_code_uses_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_invite_code_uses_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_invite_code_uses_set_input - pk_columns: tournament_invite_code_uses_pk_columns_input! - ): tournament_invite_code_uses - - """ - update multiples rows of table: "tournament_invite_code_uses" - """ - update_tournament_invite_code_uses_many( - """updates to execute, in order""" - updates: [tournament_invite_code_uses_updates!]! - ): [tournament_invite_code_uses_mutation_response] - - """ - update data of the table: "tournament_invite_codes" - """ - update_tournament_invite_codes( - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_invite_codes_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_invite_codes_set_input - - """filter the rows which have to be updated""" - where: tournament_invite_codes_bool_exp! - ): tournament_invite_codes_mutation_response - - """ - update single row of the table: "tournament_invite_codes" - """ - update_tournament_invite_codes_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_invite_codes_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_invite_codes_set_input - pk_columns: tournament_invite_codes_pk_columns_input! - ): tournament_invite_codes - - """ - update multiples rows of table: "tournament_invite_codes" - """ - update_tournament_invite_codes_many( - """updates to execute, in order""" - updates: [tournament_invite_codes_updates!]! - ): [tournament_invite_codes_mutation_response] - - """ - update data of the table: "tournament_invites" - """ - update_tournament_invites( - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_invites_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_invites_set_input - - """filter the rows which have to be updated""" - where: tournament_invites_bool_exp! - ): tournament_invites_mutation_response - - """ - update single row of the table: "tournament_invites" - """ - update_tournament_invites_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_invites_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_invites_set_input - pk_columns: tournament_invites_pk_columns_input! - ): tournament_invites - - """ - update multiples rows of table: "tournament_invites" - """ - update_tournament_invites_many( - """updates to execute, in order""" - updates: [tournament_invites_updates!]! - ): [tournament_invites_mutation_response] - - """ - update data of the table: "tournament_leaderboard_entries" - """ - update_tournament_leaderboard_entries( - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_leaderboard_entries_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_leaderboard_entries_set_input - - """filter the rows which have to be updated""" - where: tournament_leaderboard_entries_bool_exp! - ): tournament_leaderboard_entries_mutation_response - - """ - update multiples rows of table: "tournament_leaderboard_entries" - """ - update_tournament_leaderboard_entries_many( - """updates to execute, in order""" - updates: [tournament_leaderboard_entries_updates!]! - ): [tournament_leaderboard_entries_mutation_response] - - """ - update data of the table: "tournament_no_shows" - """ - update_tournament_no_shows( - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_no_shows_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_no_shows_set_input - - """filter the rows which have to be updated""" - where: tournament_no_shows_bool_exp! - ): tournament_no_shows_mutation_response - - """ - update single row of the table: "tournament_no_shows" - """ - update_tournament_no_shows_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_no_shows_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_no_shows_set_input - pk_columns: tournament_no_shows_pk_columns_input! - ): tournament_no_shows - - """ - update multiples rows of table: "tournament_no_shows" - """ - update_tournament_no_shows_many( - """updates to execute, in order""" - updates: [tournament_no_shows_updates!]! - ): [tournament_no_shows_mutation_response] - - """ - update data of the table: "tournament_organizer_teams" - """ - update_tournament_organizer_teams( - """sets the columns of the filtered rows to the given values""" - _set: tournament_organizer_teams_set_input - - """filter the rows which have to be updated""" - where: tournament_organizer_teams_bool_exp! - ): tournament_organizer_teams_mutation_response - - """ - update single row of the table: "tournament_organizer_teams" - """ - update_tournament_organizer_teams_by_pk( - """sets the columns of the filtered rows to the given values""" - _set: tournament_organizer_teams_set_input - pk_columns: tournament_organizer_teams_pk_columns_input! - ): tournament_organizer_teams - - """ - update multiples rows of table: "tournament_organizer_teams" - """ - update_tournament_organizer_teams_many( - """updates to execute, in order""" - updates: [tournament_organizer_teams_updates!]! - ): [tournament_organizer_teams_mutation_response] - - """ - update data of the table: "tournament_organizers" - """ - update_tournament_organizers( - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_organizers_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_organizers_set_input - - """filter the rows which have to be updated""" - where: tournament_organizers_bool_exp! - ): tournament_organizers_mutation_response - - """ - update single row of the table: "tournament_organizers" - """ - update_tournament_organizers_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_organizers_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_organizers_set_input - pk_columns: tournament_organizers_pk_columns_input! - ): tournament_organizers - - """ - update multiples rows of table: "tournament_organizers" - """ - update_tournament_organizers_many( - """updates to execute, in order""" - updates: [tournament_organizers_updates!]! - ): [tournament_organizers_mutation_response] - - """ - update data of the table: "tournament_prizes" - """ - update_tournament_prizes( - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_prizes_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_prizes_set_input - - """filter the rows which have to be updated""" - where: tournament_prizes_bool_exp! - ): tournament_prizes_mutation_response - - """ - update single row of the table: "tournament_prizes" - """ - update_tournament_prizes_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_prizes_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_prizes_set_input - pk_columns: tournament_prizes_pk_columns_input! - ): tournament_prizes - - """ - update multiples rows of table: "tournament_prizes" - """ - update_tournament_prizes_many( - """updates to execute, in order""" - updates: [tournament_prizes_updates!]! - ): [tournament_prizes_mutation_response] - - """ - update data of the table: "tournament_registration_unlocks" - """ - update_tournament_registration_unlocks( - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_registration_unlocks_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_registration_unlocks_set_input - - """filter the rows which have to be updated""" - where: tournament_registration_unlocks_bool_exp! - ): tournament_registration_unlocks_mutation_response - - """ - update multiples rows of table: "tournament_registration_unlocks" - """ - update_tournament_registration_unlocks_many( - """updates to execute, in order""" - updates: [tournament_registration_unlocks_updates!]! - ): [tournament_registration_unlocks_mutation_response] - - """ - update data of the table: "tournament_stage_windows" - """ - update_tournament_stage_windows( - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_stage_windows_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_stage_windows_set_input - - """filter the rows which have to be updated""" - where: tournament_stage_windows_bool_exp! - ): tournament_stage_windows_mutation_response - - """ - update single row of the table: "tournament_stage_windows" - """ - update_tournament_stage_windows_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_stage_windows_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_stage_windows_set_input - pk_columns: tournament_stage_windows_pk_columns_input! - ): tournament_stage_windows - - """ - update multiples rows of table: "tournament_stage_windows" - """ - update_tournament_stage_windows_many( - """updates to execute, in order""" - updates: [tournament_stage_windows_updates!]! - ): [tournament_stage_windows_mutation_response] - - """ - update data of the table: "tournament_stages" - """ - update_tournament_stages( - """append existing jsonb value of filtered columns with new jsonb value""" - _append: tournament_stages_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: tournament_stages_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: tournament_stages_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: tournament_stages_delete_key_input - - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_stages_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: tournament_stages_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_stages_set_input - - """filter the rows which have to be updated""" - where: tournament_stages_bool_exp! - ): tournament_stages_mutation_response - - """ - update single row of the table: "tournament_stages" - """ - update_tournament_stages_by_pk( - """append existing jsonb value of filtered columns with new jsonb value""" - _append: tournament_stages_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: tournament_stages_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: tournament_stages_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: tournament_stages_delete_key_input - - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_stages_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: tournament_stages_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_stages_set_input - pk_columns: tournament_stages_pk_columns_input! - ): tournament_stages - - """ - update multiples rows of table: "tournament_stages" - """ - update_tournament_stages_many( - """updates to execute, in order""" - updates: [tournament_stages_updates!]! - ): [tournament_stages_mutation_response] - - """ - update data of the table: "tournament_team_invites" - """ - update_tournament_team_invites( - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_team_invites_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_team_invites_set_input - - """filter the rows which have to be updated""" - where: tournament_team_invites_bool_exp! - ): tournament_team_invites_mutation_response - - """ - update single row of the table: "tournament_team_invites" - """ - update_tournament_team_invites_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_team_invites_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_team_invites_set_input - pk_columns: tournament_team_invites_pk_columns_input! - ): tournament_team_invites - - """ - update multiples rows of table: "tournament_team_invites" - """ - update_tournament_team_invites_many( - """updates to execute, in order""" - updates: [tournament_team_invites_updates!]! - ): [tournament_team_invites_mutation_response] - - """ - update data of the table: "tournament_team_roster" - """ - update_tournament_team_roster( - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_team_roster_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_team_roster_set_input - - """filter the rows which have to be updated""" - where: tournament_team_roster_bool_exp! - ): tournament_team_roster_mutation_response - - """ - update single row of the table: "tournament_team_roster" - """ - update_tournament_team_roster_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_team_roster_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_team_roster_set_input - pk_columns: tournament_team_roster_pk_columns_input! - ): tournament_team_roster - - """ - update multiples rows of table: "tournament_team_roster" - """ - update_tournament_team_roster_many( - """updates to execute, in order""" - updates: [tournament_team_roster_updates!]! - ): [tournament_team_roster_mutation_response] - - """ - update data of the table: "tournament_teams" - """ - update_tournament_teams( - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_teams_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_teams_set_input - - """filter the rows which have to be updated""" - where: tournament_teams_bool_exp! - ): tournament_teams_mutation_response - - """ - update single row of the table: "tournament_teams" - """ - update_tournament_teams_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_teams_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_teams_set_input - pk_columns: tournament_teams_pk_columns_input! - ): tournament_teams - - """ - update multiples rows of table: "tournament_teams" - """ - update_tournament_teams_many( - """updates to execute, in order""" - updates: [tournament_teams_updates!]! - ): [tournament_teams_mutation_response] - - """ - update data of the table: "tournaments" - """ - update_tournaments( - """increments the numeric columns with given value of the filtered values""" - _inc: tournaments_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournaments_set_input - - """filter the rows which have to be updated""" - where: tournaments_bool_exp! - ): tournaments_mutation_response - - """ - update single row of the table: "tournaments" - """ - update_tournaments_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: tournaments_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournaments_set_input - pk_columns: tournaments_pk_columns_input! - ): tournaments - - """ - update multiples rows of table: "tournaments" - """ - update_tournaments_many( - """updates to execute, in order""" - updates: [tournaments_updates!]! - ): [tournaments_mutation_response] - - """ - update data of the table: "utility_collection_items" - """ - update_utility_collection_items( - """increments the numeric columns with given value of the filtered values""" - _inc: utility_collection_items_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_collection_items_set_input - - """filter the rows which have to be updated""" - where: utility_collection_items_bool_exp! - ): utility_collection_items_mutation_response - - """ - update single row of the table: "utility_collection_items" - """ - update_utility_collection_items_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: utility_collection_items_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_collection_items_set_input - pk_columns: utility_collection_items_pk_columns_input! - ): utility_collection_items - - """ - update multiples rows of table: "utility_collection_items" - """ - update_utility_collection_items_many( - """updates to execute, in order""" - updates: [utility_collection_items_updates!]! - ): [utility_collection_items_mutation_response] - - """ - update data of the table: "utility_collections" - """ - update_utility_collections( - """increments the numeric columns with given value of the filtered values""" - _inc: utility_collections_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_collections_set_input - - """filter the rows which have to be updated""" - where: utility_collections_bool_exp! - ): utility_collections_mutation_response - - """ - update single row of the table: "utility_collections" - """ - update_utility_collections_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: utility_collections_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_collections_set_input - pk_columns: utility_collections_pk_columns_input! - ): utility_collections - - """ - update multiples rows of table: "utility_collections" - """ - update_utility_collections_many( - """updates to execute, in order""" - updates: [utility_collections_updates!]! - ): [utility_collections_mutation_response] - - """ - update data of the table: "utility_demo_mines" - """ - update_utility_demo_mines( - """increments the numeric columns with given value of the filtered values""" - _inc: utility_demo_mines_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_demo_mines_set_input - - """filter the rows which have to be updated""" - where: utility_demo_mines_bool_exp! - ): utility_demo_mines_mutation_response - - """ - update single row of the table: "utility_demo_mines" - """ - update_utility_demo_mines_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: utility_demo_mines_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_demo_mines_set_input - pk_columns: utility_demo_mines_pk_columns_input! - ): utility_demo_mines - - """ - update multiples rows of table: "utility_demo_mines" - """ - update_utility_demo_mines_many( - """updates to execute, in order""" - updates: [utility_demo_mines_updates!]! - ): [utility_demo_mines_mutation_response] - - """ - update data of the table: "utility_demo_throws" - """ - update_utility_demo_throws( - """increments the numeric columns with given value of the filtered values""" - _inc: utility_demo_throws_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_demo_throws_set_input - - """filter the rows which have to be updated""" - where: utility_demo_throws_bool_exp! - ): utility_demo_throws_mutation_response - - """ - update single row of the table: "utility_demo_throws" - """ - update_utility_demo_throws_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: utility_demo_throws_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_demo_throws_set_input - pk_columns: utility_demo_throws_pk_columns_input! - ): utility_demo_throws - - """ - update multiples rows of table: "utility_demo_throws" - """ - update_utility_demo_throws_many( - """updates to execute, in order""" - updates: [utility_demo_throws_updates!]! - ): [utility_demo_throws_mutation_response] - - """ - update data of the table: "utility_drift_results" - """ - update_utility_drift_results( - """increments the numeric columns with given value of the filtered values""" - _inc: utility_drift_results_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_drift_results_set_input - - """filter the rows which have to be updated""" - where: utility_drift_results_bool_exp! - ): utility_drift_results_mutation_response - - """ - update single row of the table: "utility_drift_results" - """ - update_utility_drift_results_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: utility_drift_results_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_drift_results_set_input - pk_columns: utility_drift_results_pk_columns_input! - ): utility_drift_results - - """ - update multiples rows of table: "utility_drift_results" - """ - update_utility_drift_results_many( - """updates to execute, in order""" - updates: [utility_drift_results_updates!]! - ): [utility_drift_results_mutation_response] - - """ - update data of the table: "utility_drift_scans" - """ - update_utility_drift_scans( - """increments the numeric columns with given value of the filtered values""" - _inc: utility_drift_scans_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_drift_scans_set_input - - """filter the rows which have to be updated""" - where: utility_drift_scans_bool_exp! - ): utility_drift_scans_mutation_response - - """ - update single row of the table: "utility_drift_scans" - """ - update_utility_drift_scans_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: utility_drift_scans_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_drift_scans_set_input - pk_columns: utility_drift_scans_pk_columns_input! - ): utility_drift_scans - - """ - update multiples rows of table: "utility_drift_scans" - """ - update_utility_drift_scans_many( - """updates to execute, in order""" - updates: [utility_drift_scans_updates!]! - ): [utility_drift_scans_mutation_response] - - """ - update data of the table: "utility_lineup_favorites" - """ - update_utility_lineup_favorites( - """increments the numeric columns with given value of the filtered values""" - _inc: utility_lineup_favorites_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_lineup_favorites_set_input - - """filter the rows which have to be updated""" - where: utility_lineup_favorites_bool_exp! - ): utility_lineup_favorites_mutation_response - - """ - update single row of the table: "utility_lineup_favorites" - """ - update_utility_lineup_favorites_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: utility_lineup_favorites_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_lineup_favorites_set_input - pk_columns: utility_lineup_favorites_pk_columns_input! - ): utility_lineup_favorites - - """ - update multiples rows of table: "utility_lineup_favorites" - """ - update_utility_lineup_favorites_many( - """updates to execute, in order""" - updates: [utility_lineup_favorites_updates!]! - ): [utility_lineup_favorites_mutation_response] - - """ - update data of the table: "utility_lineup_progress" - """ - update_utility_lineup_progress( - """increments the numeric columns with given value of the filtered values""" - _inc: utility_lineup_progress_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_lineup_progress_set_input - - """filter the rows which have to be updated""" - where: utility_lineup_progress_bool_exp! - ): utility_lineup_progress_mutation_response - - """ - update single row of the table: "utility_lineup_progress" - """ - update_utility_lineup_progress_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: utility_lineup_progress_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_lineup_progress_set_input - pk_columns: utility_lineup_progress_pk_columns_input! - ): utility_lineup_progress - - """ - update multiples rows of table: "utility_lineup_progress" - """ - update_utility_lineup_progress_many( - """updates to execute, in order""" - updates: [utility_lineup_progress_updates!]! - ): [utility_lineup_progress_mutation_response] - - """ - update data of the table: "utility_lineup_renders" - """ - update_utility_lineup_renders( - """append existing jsonb value of filtered columns with new jsonb value""" - _append: utility_lineup_renders_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: utility_lineup_renders_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: utility_lineup_renders_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: utility_lineup_renders_delete_key_input - - """increments the numeric columns with given value of the filtered values""" - _inc: utility_lineup_renders_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: utility_lineup_renders_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_lineup_renders_set_input - - """filter the rows which have to be updated""" - where: utility_lineup_renders_bool_exp! - ): utility_lineup_renders_mutation_response - - """ - update single row of the table: "utility_lineup_renders" - """ - update_utility_lineup_renders_by_pk( - """append existing jsonb value of filtered columns with new jsonb value""" - _append: utility_lineup_renders_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: utility_lineup_renders_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: utility_lineup_renders_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: utility_lineup_renders_delete_key_input - - """increments the numeric columns with given value of the filtered values""" - _inc: utility_lineup_renders_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: utility_lineup_renders_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_lineup_renders_set_input - pk_columns: utility_lineup_renders_pk_columns_input! - ): utility_lineup_renders - - """ - update multiples rows of table: "utility_lineup_renders" - """ - update_utility_lineup_renders_many( - """updates to execute, in order""" - updates: [utility_lineup_renders_updates!]! - ): [utility_lineup_renders_mutation_response] - - """ - update data of the table: "utility_lineup_repairs" - """ - update_utility_lineup_repairs( - """increments the numeric columns with given value of the filtered values""" - _inc: utility_lineup_repairs_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_lineup_repairs_set_input - - """filter the rows which have to be updated""" - where: utility_lineup_repairs_bool_exp! - ): utility_lineup_repairs_mutation_response - - """ - update single row of the table: "utility_lineup_repairs" - """ - update_utility_lineup_repairs_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: utility_lineup_repairs_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_lineup_repairs_set_input - pk_columns: utility_lineup_repairs_pk_columns_input! - ): utility_lineup_repairs - - """ - update multiples rows of table: "utility_lineup_repairs" - """ - update_utility_lineup_repairs_many( - """updates to execute, in order""" - updates: [utility_lineup_repairs_updates!]! - ): [utility_lineup_repairs_mutation_response] - - """ - update data of the table: "utility_lineup_votes" - """ - update_utility_lineup_votes( - """increments the numeric columns with given value of the filtered values""" - _inc: utility_lineup_votes_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_lineup_votes_set_input - - """filter the rows which have to be updated""" - where: utility_lineup_votes_bool_exp! - ): utility_lineup_votes_mutation_response - - """ - update single row of the table: "utility_lineup_votes" - """ - update_utility_lineup_votes_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: utility_lineup_votes_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_lineup_votes_set_input - pk_columns: utility_lineup_votes_pk_columns_input! - ): utility_lineup_votes - - """ - update multiples rows of table: "utility_lineup_votes" - """ - update_utility_lineup_votes_many( - """updates to execute, in order""" - updates: [utility_lineup_votes_updates!]! - ): [utility_lineup_votes_mutation_response] - - """ - update data of the table: "utility_lineups" - """ - update_utility_lineups( - """append existing jsonb value of filtered columns with new jsonb value""" - _append: utility_lineups_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: utility_lineups_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: utility_lineups_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: utility_lineups_delete_key_input - - """increments the numeric columns with given value of the filtered values""" - _inc: utility_lineups_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: utility_lineups_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_lineups_set_input - - """filter the rows which have to be updated""" - where: utility_lineups_bool_exp! - ): utility_lineups_mutation_response - - """ - update single row of the table: "utility_lineups" - """ - update_utility_lineups_by_pk( - """append existing jsonb value of filtered columns with new jsonb value""" - _append: utility_lineups_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: utility_lineups_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: utility_lineups_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: utility_lineups_delete_key_input - - """increments the numeric columns with given value of the filtered values""" - _inc: utility_lineups_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: utility_lineups_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_lineups_set_input - pk_columns: utility_lineups_pk_columns_input! - ): utility_lineups - - """ - update multiples rows of table: "utility_lineups" - """ - update_utility_lineups_many( - """updates to execute, in order""" - updates: [utility_lineups_updates!]! - ): [utility_lineups_mutation_response] - - """ - update data of the table: "utility_meta_lineups" - """ - update_utility_meta_lineups( - """increments the numeric columns with given value of the filtered values""" - _inc: utility_meta_lineups_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_meta_lineups_set_input - - """filter the rows which have to be updated""" - where: utility_meta_lineups_bool_exp! - ): utility_meta_lineups_mutation_response - - """ - update single row of the table: "utility_meta_lineups" - """ - update_utility_meta_lineups_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: utility_meta_lineups_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_meta_lineups_set_input - pk_columns: utility_meta_lineups_pk_columns_input! - ): utility_meta_lineups - - """ - update multiples rows of table: "utility_meta_lineups" - """ - update_utility_meta_lineups_many( - """updates to execute, in order""" - updates: [utility_meta_lineups_updates!]! - ): [utility_meta_lineups_mutation_response] - - """ - update data of the table: "utility_playbook_steps" - """ - update_utility_playbook_steps( - """increments the numeric columns with given value of the filtered values""" - _inc: utility_playbook_steps_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_playbook_steps_set_input - - """filter the rows which have to be updated""" - where: utility_playbook_steps_bool_exp! - ): utility_playbook_steps_mutation_response - - """ - update single row of the table: "utility_playbook_steps" - """ - update_utility_playbook_steps_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: utility_playbook_steps_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_playbook_steps_set_input - pk_columns: utility_playbook_steps_pk_columns_input! - ): utility_playbook_steps - - """ - update multiples rows of table: "utility_playbook_steps" - """ - update_utility_playbook_steps_many( - """updates to execute, in order""" - updates: [utility_playbook_steps_updates!]! - ): [utility_playbook_steps_mutation_response] - - """ - update data of the table: "utility_playbooks" - """ - update_utility_playbooks( - """increments the numeric columns with given value of the filtered values""" - _inc: utility_playbooks_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_playbooks_set_input - - """filter the rows which have to be updated""" - where: utility_playbooks_bool_exp! - ): utility_playbooks_mutation_response - - """ - update single row of the table: "utility_playbooks" - """ - update_utility_playbooks_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: utility_playbooks_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_playbooks_set_input - pk_columns: utility_playbooks_pk_columns_input! - ): utility_playbooks - - """ - update multiples rows of table: "utility_playbooks" - """ - update_utility_playbooks_many( - """updates to execute, in order""" - updates: [utility_playbooks_updates!]! - ): [utility_playbooks_mutation_response] - - """ - update data of the table: "utility_practice_invites" - """ - update_utility_practice_invites( - """increments the numeric columns with given value of the filtered values""" - _inc: utility_practice_invites_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_practice_invites_set_input - - """filter the rows which have to be updated""" - where: utility_practice_invites_bool_exp! - ): utility_practice_invites_mutation_response - - """ - update single row of the table: "utility_practice_invites" - """ - update_utility_practice_invites_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: utility_practice_invites_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_practice_invites_set_input - pk_columns: utility_practice_invites_pk_columns_input! - ): utility_practice_invites - - """ - update multiples rows of table: "utility_practice_invites" - """ - update_utility_practice_invites_many( - """updates to execute, in order""" - updates: [utility_practice_invites_updates!]! - ): [utility_practice_invites_mutation_response] - - """ - update data of the table: "utility_practice_sessions" - """ - update_utility_practice_sessions( - """increments the numeric columns with given value of the filtered values""" - _inc: utility_practice_sessions_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_practice_sessions_set_input - - """filter the rows which have to be updated""" - where: utility_practice_sessions_bool_exp! - ): utility_practice_sessions_mutation_response - - """ - update single row of the table: "utility_practice_sessions" - """ - update_utility_practice_sessions_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: utility_practice_sessions_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_practice_sessions_set_input - pk_columns: utility_practice_sessions_pk_columns_input! - ): utility_practice_sessions - - """ - update multiples rows of table: "utility_practice_sessions" - """ - update_utility_practice_sessions_many( - """updates to execute, in order""" - updates: [utility_practice_sessions_updates!]! - ): [utility_practice_sessions_mutation_response] - - """ - update data of the table: "v_match_captains" - """ - update_v_match_captains( - """increments the numeric columns with given value of the filtered values""" - _inc: v_match_captains_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: v_match_captains_set_input - - """filter the rows which have to be updated""" - where: v_match_captains_bool_exp! - ): v_match_captains_mutation_response - - """ - update multiples rows of table: "v_match_captains" - """ - update_v_match_captains_many( - """updates to execute, in order""" - updates: [v_match_captains_updates!]! - ): [v_match_captains_mutation_response] - - """ - update data of the table: "v_match_map_backup_rounds" - """ - update_v_match_map_backup_rounds( - """increments the numeric columns with given value of the filtered values""" - _inc: v_match_map_backup_rounds_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: v_match_map_backup_rounds_set_input - - """filter the rows which have to be updated""" - where: v_match_map_backup_rounds_bool_exp! - ): v_match_map_backup_rounds_mutation_response - - """ - update multiples rows of table: "v_match_map_backup_rounds" - """ - update_v_match_map_backup_rounds_many( - """updates to execute, in order""" - updates: [v_match_map_backup_rounds_updates!]! - ): [v_match_map_backup_rounds_mutation_response] - - """ - update data of the table: "v_player_match_map_hltv" - """ - update_v_player_match_map_hltv( - """increments the numeric columns with given value of the filtered values""" - _inc: v_player_match_map_hltv_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: v_player_match_map_hltv_set_input - - """filter the rows which have to be updated""" - where: v_player_match_map_hltv_bool_exp! - ): v_player_match_map_hltv_mutation_response - - """ - update multiples rows of table: "v_player_match_map_hltv" - """ - update_v_player_match_map_hltv_many( - """updates to execute, in order""" - updates: [v_player_match_map_hltv_updates!]! - ): [v_player_match_map_hltv_mutation_response] - - """ - update data of the table: "v_pool_maps" - """ - update_v_pool_maps( - """sets the columns of the filtered rows to the given values""" - _set: v_pool_maps_set_input - - """filter the rows which have to be updated""" - where: v_pool_maps_bool_exp! - ): v_pool_maps_mutation_response - - """ - update multiples rows of table: "v_pool_maps" - """ - update_v_pool_maps_many( - """updates to execute, in order""" - updates: [v_pool_maps_updates!]! - ): [v_pool_maps_mutation_response] - - """ - update data of the table: "v_team_stage_results" - """ - update_v_team_stage_results( - """increments the numeric columns with given value of the filtered values""" - _inc: v_team_stage_results_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: v_team_stage_results_set_input - - """filter the rows which have to be updated""" - where: v_team_stage_results_bool_exp! - ): v_team_stage_results_mutation_response - - """ - update single row of the table: "v_team_stage_results" - """ - update_v_team_stage_results_by_pk( - """increments the numeric columns with given value of the filtered values""" - _inc: v_team_stage_results_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: v_team_stage_results_set_input - pk_columns: v_team_stage_results_pk_columns_input! - ): v_team_stage_results - - """ - update multiples rows of table: "v_team_stage_results" - """ - update_v_team_stage_results_many( - """updates to execute, in order""" - updates: [v_team_stage_results_updates!]! - ): [v_team_stage_results_mutation_response] - - """ - Validate CS2 gamedata signatures/offsets on a node (5stack.gg test instance only) - """ - validateGamedata(game_server_node_id: uuid!): SuccessOutput - - """ - Spawn a per-user game-streamer pod to play back a finished match's demo - """ - watchDemo(match_map_demo_id: uuid, match_map_id: uuid!): WatchDemoOutput - - """Write content to file on game server""" - writeServerFile(content: String!, file_path: String!, node_id: String!, server_id: String): SuccessOutput -} - -""" -columns and relationships of "v_my_friends" -""" -type my_friends { - avatar_url: String - country: String - created_at: timestamptz - custom_avatar_url: String - days_since_last_ban: Int - discord_id: String - elo( - """JSON select path""" - path: String - ): jsonb - faceit_elo: Int - faceit_nickname: String - faceit_player_id: String - faceit_skill_level: Int - faceit_updated_at: timestamptz - faceit_url: String - friend_steam_id: bigint - game_ban_count: Int - invited_by_steam_id: bigint - language: String - last_presence_state( - """JSON select path""" - path: String - ): jsonb - last_read_news_at: timestamptz - last_sign_in_at: timestamptz - name: String - name_registered: Boolean - notification_timezone: String - - """An object relationship""" - player: players - premier_rank: Int - premier_rank_updated_at: timestamptz - presence_updated_at: timestamptz - profile_url: String - quiet_hours_end: time - quiet_hours_start: time - role: String - roster_image_url: String - show_match_ready_modal: Boolean - status: String - steam_bans_checked_at: timestamptz - steam_id: bigint - vac_ban_count: Int - vac_banned: Boolean -} - -""" -aggregated selection of "v_my_friends" -""" -type my_friends_aggregate { - aggregate: my_friends_aggregate_fields - nodes: [my_friends!]! -} - -input my_friends_aggregate_bool_exp { - bool_and: my_friends_aggregate_bool_exp_bool_and - bool_or: my_friends_aggregate_bool_exp_bool_or - count: my_friends_aggregate_bool_exp_count -} - -input my_friends_aggregate_bool_exp_bool_and { - arguments: my_friends_select_column_my_friends_aggregate_bool_exp_bool_and_arguments_columns! - distinct: Boolean - filter: my_friends_bool_exp - predicate: Boolean_comparison_exp! -} - -input my_friends_aggregate_bool_exp_bool_or { - arguments: my_friends_select_column_my_friends_aggregate_bool_exp_bool_or_arguments_columns! - distinct: Boolean - filter: my_friends_bool_exp - predicate: Boolean_comparison_exp! -} - -input my_friends_aggregate_bool_exp_count { - arguments: [my_friends_select_column!] - distinct: Boolean - filter: my_friends_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "v_my_friends" -""" -type my_friends_aggregate_fields { - avg: my_friends_avg_fields - count(columns: [my_friends_select_column!], distinct: Boolean): Int! - max: my_friends_max_fields - min: my_friends_min_fields - stddev: my_friends_stddev_fields - stddev_pop: my_friends_stddev_pop_fields - stddev_samp: my_friends_stddev_samp_fields - sum: my_friends_sum_fields - var_pop: my_friends_var_pop_fields - var_samp: my_friends_var_samp_fields - variance: my_friends_variance_fields -} - -""" -order by aggregate values of table "v_my_friends" -""" -input my_friends_aggregate_order_by { - avg: my_friends_avg_order_by - count: order_by - max: my_friends_max_order_by - min: my_friends_min_order_by - stddev: my_friends_stddev_order_by - stddev_pop: my_friends_stddev_pop_order_by - stddev_samp: my_friends_stddev_samp_order_by - sum: my_friends_sum_order_by - var_pop: my_friends_var_pop_order_by - var_samp: my_friends_var_samp_order_by - variance: my_friends_variance_order_by -} - -"""append existing jsonb value of filtered columns with new jsonb value""" -input my_friends_append_input { - elo: jsonb - last_presence_state: jsonb -} - -""" -input type for inserting array relation for remote table "v_my_friends" -""" -input my_friends_arr_rel_insert_input { - data: [my_friends_insert_input!]! -} - -"""aggregate avg on columns""" -type my_friends_avg_fields { - days_since_last_ban: Float - faceit_elo: Float - faceit_skill_level: Float - friend_steam_id: Float - game_ban_count: Float - invited_by_steam_id: Float - premier_rank: Float - steam_id: Float - vac_ban_count: Float -} - -""" -order by avg() on columns of table "v_my_friends" -""" -input my_friends_avg_order_by { - days_since_last_ban: order_by - faceit_elo: order_by - faceit_skill_level: order_by - friend_steam_id: order_by - game_ban_count: order_by - invited_by_steam_id: order_by - premier_rank: order_by - steam_id: order_by - vac_ban_count: order_by -} - -""" -Boolean expression to filter rows from the table "v_my_friends". All fields are combined with a logical 'AND'. -""" -input my_friends_bool_exp { - _and: [my_friends_bool_exp!] - _not: my_friends_bool_exp - _or: [my_friends_bool_exp!] - avatar_url: String_comparison_exp - country: String_comparison_exp - created_at: timestamptz_comparison_exp - custom_avatar_url: String_comparison_exp - days_since_last_ban: Int_comparison_exp - discord_id: String_comparison_exp - elo: jsonb_comparison_exp - faceit_elo: Int_comparison_exp - faceit_nickname: String_comparison_exp - faceit_player_id: String_comparison_exp - faceit_skill_level: Int_comparison_exp - faceit_updated_at: timestamptz_comparison_exp - faceit_url: String_comparison_exp - friend_steam_id: bigint_comparison_exp - game_ban_count: Int_comparison_exp - invited_by_steam_id: bigint_comparison_exp - language: String_comparison_exp - last_presence_state: jsonb_comparison_exp - last_read_news_at: timestamptz_comparison_exp - last_sign_in_at: timestamptz_comparison_exp - name: String_comparison_exp - name_registered: Boolean_comparison_exp - notification_timezone: String_comparison_exp - player: players_bool_exp - premier_rank: Int_comparison_exp - premier_rank_updated_at: timestamptz_comparison_exp - presence_updated_at: timestamptz_comparison_exp - profile_url: String_comparison_exp - quiet_hours_end: time_comparison_exp - quiet_hours_start: time_comparison_exp - role: String_comparison_exp - roster_image_url: String_comparison_exp - show_match_ready_modal: Boolean_comparison_exp - status: String_comparison_exp - steam_bans_checked_at: timestamptz_comparison_exp - steam_id: bigint_comparison_exp - vac_ban_count: Int_comparison_exp - vac_banned: Boolean_comparison_exp -} - -""" -delete the field or element with specified path (for JSON arrays, negative integers count from the end) -""" -input my_friends_delete_at_path_input { - elo: [String!] - last_presence_state: [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 my_friends_delete_elem_input { - elo: Int - last_presence_state: Int -} - -""" -delete key/value pair or string element. key/value pairs are matched based on their key value -""" -input my_friends_delete_key_input { - elo: String - last_presence_state: String -} - -""" -input type for incrementing numeric columns in table "v_my_friends" -""" -input my_friends_inc_input { - days_since_last_ban: Int - faceit_elo: Int - faceit_skill_level: Int - friend_steam_id: bigint - game_ban_count: Int - invited_by_steam_id: bigint - premier_rank: Int - steam_id: bigint - vac_ban_count: Int -} - -""" -input type for inserting data into table "v_my_friends" -""" -input my_friends_insert_input { - avatar_url: String - country: String - created_at: timestamptz - custom_avatar_url: String - days_since_last_ban: Int - discord_id: String - elo: jsonb - faceit_elo: Int - faceit_nickname: String - faceit_player_id: String - faceit_skill_level: Int - faceit_updated_at: timestamptz - faceit_url: String - friend_steam_id: bigint - game_ban_count: Int - invited_by_steam_id: bigint - language: String - last_presence_state: jsonb - last_read_news_at: timestamptz - last_sign_in_at: timestamptz - name: String - name_registered: Boolean - notification_timezone: String - player: players_obj_rel_insert_input - premier_rank: Int - premier_rank_updated_at: timestamptz - presence_updated_at: timestamptz - profile_url: String - quiet_hours_end: time - quiet_hours_start: time - role: String - roster_image_url: String - show_match_ready_modal: Boolean - status: String - steam_bans_checked_at: timestamptz - steam_id: bigint - vac_ban_count: Int - vac_banned: Boolean -} - -"""aggregate max on columns""" -type my_friends_max_fields { - avatar_url: String - country: String - created_at: timestamptz - custom_avatar_url: String - days_since_last_ban: Int - discord_id: String - faceit_elo: Int - faceit_nickname: String - faceit_player_id: String - faceit_skill_level: Int - faceit_updated_at: timestamptz - faceit_url: String - friend_steam_id: bigint - game_ban_count: Int - invited_by_steam_id: bigint - language: String - last_read_news_at: timestamptz - last_sign_in_at: timestamptz - name: String - notification_timezone: String - premier_rank: Int - premier_rank_updated_at: timestamptz - presence_updated_at: timestamptz - profile_url: String - role: String - roster_image_url: String - status: String - steam_bans_checked_at: timestamptz - steam_id: bigint - vac_ban_count: Int -} - -""" -order by max() on columns of table "v_my_friends" -""" -input my_friends_max_order_by { - avatar_url: order_by - country: order_by - created_at: order_by - custom_avatar_url: order_by - days_since_last_ban: order_by - discord_id: order_by - faceit_elo: order_by - faceit_nickname: order_by - faceit_player_id: order_by - faceit_skill_level: order_by - faceit_updated_at: order_by - faceit_url: order_by - friend_steam_id: order_by - game_ban_count: order_by - invited_by_steam_id: order_by - language: order_by - last_read_news_at: order_by - last_sign_in_at: order_by - name: order_by - notification_timezone: order_by - premier_rank: order_by - premier_rank_updated_at: order_by - presence_updated_at: order_by - profile_url: order_by - role: order_by - roster_image_url: order_by - status: order_by - steam_bans_checked_at: order_by - steam_id: order_by - vac_ban_count: order_by -} - -"""aggregate min on columns""" -type my_friends_min_fields { - avatar_url: String - country: String - created_at: timestamptz - custom_avatar_url: String - days_since_last_ban: Int - discord_id: String - faceit_elo: Int - faceit_nickname: String - faceit_player_id: String - faceit_skill_level: Int - faceit_updated_at: timestamptz - faceit_url: String - friend_steam_id: bigint - game_ban_count: Int - invited_by_steam_id: bigint - language: String - last_read_news_at: timestamptz - last_sign_in_at: timestamptz - name: String - notification_timezone: String - premier_rank: Int - premier_rank_updated_at: timestamptz - presence_updated_at: timestamptz - profile_url: String - role: String - roster_image_url: String - status: String - steam_bans_checked_at: timestamptz - steam_id: bigint - vac_ban_count: Int -} - -""" -order by min() on columns of table "v_my_friends" -""" -input my_friends_min_order_by { - avatar_url: order_by - country: order_by - created_at: order_by - custom_avatar_url: order_by - days_since_last_ban: order_by - discord_id: order_by - faceit_elo: order_by - faceit_nickname: order_by - faceit_player_id: order_by - faceit_skill_level: order_by - faceit_updated_at: order_by - faceit_url: order_by - friend_steam_id: order_by - game_ban_count: order_by - invited_by_steam_id: order_by - language: order_by - last_read_news_at: order_by - last_sign_in_at: order_by - name: order_by - notification_timezone: order_by - premier_rank: order_by - premier_rank_updated_at: order_by - presence_updated_at: order_by - profile_url: order_by - role: order_by - roster_image_url: order_by - status: order_by - steam_bans_checked_at: order_by - steam_id: order_by - vac_ban_count: order_by -} - -""" -response of any mutation on the table "v_my_friends" -""" -type my_friends_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [my_friends!]! -} - -"""Ordering options when selecting data from "v_my_friends".""" -input my_friends_order_by { - avatar_url: order_by - country: order_by - created_at: order_by - custom_avatar_url: order_by - days_since_last_ban: order_by - discord_id: order_by - elo: order_by - faceit_elo: order_by - faceit_nickname: order_by - faceit_player_id: order_by - faceit_skill_level: order_by - faceit_updated_at: order_by - faceit_url: order_by - friend_steam_id: order_by - game_ban_count: order_by - invited_by_steam_id: order_by - language: order_by - last_presence_state: order_by - last_read_news_at: order_by - last_sign_in_at: order_by - name: order_by - name_registered: order_by - notification_timezone: order_by - player: players_order_by - premier_rank: order_by - premier_rank_updated_at: order_by - presence_updated_at: order_by - profile_url: order_by - quiet_hours_end: order_by - quiet_hours_start: order_by - role: order_by - roster_image_url: order_by - show_match_ready_modal: order_by - status: order_by - steam_bans_checked_at: order_by - steam_id: order_by - vac_ban_count: order_by - vac_banned: order_by -} - -"""prepend existing jsonb value of filtered columns with new jsonb value""" -input my_friends_prepend_input { - elo: jsonb - last_presence_state: jsonb -} - -""" -select columns of table "v_my_friends" -""" -enum my_friends_select_column { - """column name""" - avatar_url - - """column name""" - country - - """column name""" - created_at - - """column name""" - custom_avatar_url - - """column name""" - days_since_last_ban - - """column name""" - discord_id - - """column name""" - elo - - """column name""" - faceit_elo - - """column name""" - faceit_nickname - - """column name""" - faceit_player_id - - """column name""" - faceit_skill_level - - """column name""" - faceit_updated_at - - """column name""" - faceit_url - - """column name""" - friend_steam_id - - """column name""" - game_ban_count - - """column name""" - invited_by_steam_id - - """column name""" - language - - """column name""" - last_presence_state - - """column name""" - last_read_news_at - - """column name""" - last_sign_in_at - - """column name""" - name - - """column name""" - name_registered - - """column name""" - notification_timezone - - """column name""" - premier_rank - - """column name""" - premier_rank_updated_at - - """column name""" - presence_updated_at - - """column name""" - profile_url - - """column name""" - quiet_hours_end - - """column name""" - quiet_hours_start - - """column name""" - role - - """column name""" - roster_image_url - - """column name""" - show_match_ready_modal - - """column name""" - status - - """column name""" - steam_bans_checked_at - - """column name""" - steam_id - - """column name""" - vac_ban_count - - """column name""" - vac_banned -} - -""" -select "my_friends_aggregate_bool_exp_bool_and_arguments_columns" columns of table "v_my_friends" -""" -enum my_friends_select_column_my_friends_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - name_registered - - """column name""" - show_match_ready_modal - - """column name""" - vac_banned -} - -""" -select "my_friends_aggregate_bool_exp_bool_or_arguments_columns" columns of table "v_my_friends" -""" -enum my_friends_select_column_my_friends_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - name_registered - - """column name""" - show_match_ready_modal - - """column name""" - vac_banned -} - -""" -input type for updating data in table "v_my_friends" -""" -input my_friends_set_input { - avatar_url: String - country: String - created_at: timestamptz - custom_avatar_url: String - days_since_last_ban: Int - discord_id: String - elo: jsonb - faceit_elo: Int - faceit_nickname: String - faceit_player_id: String - faceit_skill_level: Int - faceit_updated_at: timestamptz - faceit_url: String - friend_steam_id: bigint - game_ban_count: Int - invited_by_steam_id: bigint - language: String - last_presence_state: jsonb - last_read_news_at: timestamptz - last_sign_in_at: timestamptz - name: String - name_registered: Boolean - notification_timezone: String - premier_rank: Int - premier_rank_updated_at: timestamptz - presence_updated_at: timestamptz - profile_url: String - quiet_hours_end: time - quiet_hours_start: time - role: String - roster_image_url: String - show_match_ready_modal: Boolean - status: String - steam_bans_checked_at: timestamptz - steam_id: bigint - vac_ban_count: Int - vac_banned: Boolean -} - -"""aggregate stddev on columns""" -type my_friends_stddev_fields { - days_since_last_ban: Float - faceit_elo: Float - faceit_skill_level: Float - friend_steam_id: Float - game_ban_count: Float - invited_by_steam_id: Float - premier_rank: Float - steam_id: Float - vac_ban_count: Float -} - -""" -order by stddev() on columns of table "v_my_friends" -""" -input my_friends_stddev_order_by { - days_since_last_ban: order_by - faceit_elo: order_by - faceit_skill_level: order_by - friend_steam_id: order_by - game_ban_count: order_by - invited_by_steam_id: order_by - premier_rank: order_by - steam_id: order_by - vac_ban_count: order_by -} - -"""aggregate stddev_pop on columns""" -type my_friends_stddev_pop_fields { - days_since_last_ban: Float - faceit_elo: Float - faceit_skill_level: Float - friend_steam_id: Float - game_ban_count: Float - invited_by_steam_id: Float - premier_rank: Float - steam_id: Float - vac_ban_count: Float -} - -""" -order by stddev_pop() on columns of table "v_my_friends" -""" -input my_friends_stddev_pop_order_by { - days_since_last_ban: order_by - faceit_elo: order_by - faceit_skill_level: order_by - friend_steam_id: order_by - game_ban_count: order_by - invited_by_steam_id: order_by - premier_rank: order_by - steam_id: order_by - vac_ban_count: order_by -} - -"""aggregate stddev_samp on columns""" -type my_friends_stddev_samp_fields { - days_since_last_ban: Float - faceit_elo: Float - faceit_skill_level: Float - friend_steam_id: Float - game_ban_count: Float - invited_by_steam_id: Float - premier_rank: Float - steam_id: Float - vac_ban_count: Float -} - -""" -order by stddev_samp() on columns of table "v_my_friends" -""" -input my_friends_stddev_samp_order_by { - days_since_last_ban: order_by - faceit_elo: order_by - faceit_skill_level: order_by - friend_steam_id: order_by - game_ban_count: order_by - invited_by_steam_id: order_by - premier_rank: order_by - steam_id: order_by - vac_ban_count: order_by -} - -""" -Streaming cursor of the table "my_friends" -""" -input my_friends_stream_cursor_input { - """Stream column input with initial value""" - initial_value: my_friends_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input my_friends_stream_cursor_value_input { - avatar_url: String - country: String - created_at: timestamptz - custom_avatar_url: String - days_since_last_ban: Int - discord_id: String - elo: jsonb - faceit_elo: Int - faceit_nickname: String - faceit_player_id: String - faceit_skill_level: Int - faceit_updated_at: timestamptz - faceit_url: String - friend_steam_id: bigint - game_ban_count: Int - invited_by_steam_id: bigint - language: String - last_presence_state: jsonb - last_read_news_at: timestamptz - last_sign_in_at: timestamptz - name: String - name_registered: Boolean - notification_timezone: String - premier_rank: Int - premier_rank_updated_at: timestamptz - presence_updated_at: timestamptz - profile_url: String - quiet_hours_end: time - quiet_hours_start: time - role: String - roster_image_url: String - show_match_ready_modal: Boolean - status: String - steam_bans_checked_at: timestamptz - steam_id: bigint - vac_ban_count: Int - vac_banned: Boolean -} - -"""aggregate sum on columns""" -type my_friends_sum_fields { - days_since_last_ban: Int - faceit_elo: Int - faceit_skill_level: Int - friend_steam_id: bigint - game_ban_count: Int - invited_by_steam_id: bigint - premier_rank: Int - steam_id: bigint - vac_ban_count: Int -} - -""" -order by sum() on columns of table "v_my_friends" -""" -input my_friends_sum_order_by { - days_since_last_ban: order_by - faceit_elo: order_by - faceit_skill_level: order_by - friend_steam_id: order_by - game_ban_count: order_by - invited_by_steam_id: order_by - premier_rank: order_by - steam_id: order_by - vac_ban_count: order_by -} - -input my_friends_updates { - """append existing jsonb value of filtered columns with new jsonb value""" - _append: my_friends_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: my_friends_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: my_friends_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: my_friends_delete_key_input - - """increments the numeric columns with given value of the filtered values""" - _inc: my_friends_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: my_friends_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: my_friends_set_input - - """filter the rows which have to be updated""" - where: my_friends_bool_exp! -} - -"""aggregate var_pop on columns""" -type my_friends_var_pop_fields { - days_since_last_ban: Float - faceit_elo: Float - faceit_skill_level: Float - friend_steam_id: Float - game_ban_count: Float - invited_by_steam_id: Float - premier_rank: Float - steam_id: Float - vac_ban_count: Float -} - -""" -order by var_pop() on columns of table "v_my_friends" -""" -input my_friends_var_pop_order_by { - days_since_last_ban: order_by - faceit_elo: order_by - faceit_skill_level: order_by - friend_steam_id: order_by - game_ban_count: order_by - invited_by_steam_id: order_by - premier_rank: order_by - steam_id: order_by - vac_ban_count: order_by -} - -"""aggregate var_samp on columns""" -type my_friends_var_samp_fields { - days_since_last_ban: Float - faceit_elo: Float - faceit_skill_level: Float - friend_steam_id: Float - game_ban_count: Float - invited_by_steam_id: Float - premier_rank: Float - steam_id: Float - vac_ban_count: Float -} - -""" -order by var_samp() on columns of table "v_my_friends" -""" -input my_friends_var_samp_order_by { - days_since_last_ban: order_by - faceit_elo: order_by - faceit_skill_level: order_by - friend_steam_id: order_by - game_ban_count: order_by - invited_by_steam_id: order_by - premier_rank: order_by - steam_id: order_by - vac_ban_count: order_by -} - -"""aggregate variance on columns""" -type my_friends_variance_fields { - days_since_last_ban: Float - faceit_elo: Float - faceit_skill_level: Float - friend_steam_id: Float - game_ban_count: Float - invited_by_steam_id: Float - premier_rank: Float - steam_id: Float - vac_ban_count: Float -} - -""" -order by variance() on columns of table "v_my_friends" -""" -input my_friends_variance_order_by { - days_since_last_ban: order_by - faceit_elo: order_by - faceit_skill_level: order_by - friend_steam_id: order_by - game_ban_count: order_by - invited_by_steam_id: order_by - premier_rank: order_by - steam_id: order_by - vac_ban_count: order_by -} - -""" -columns and relationships of "news_articles" -""" -type news_articles { - """An object relationship""" - author: players - author_steam_id: bigint - content_markdown: String! - cover_image_url: String - created_at: timestamptz! - id: uuid! - published_at: timestamptz - slug: String! - status: String! - teaser: String - title: String! - updated_at: timestamptz! - view_count: bigint! -} - -""" -aggregated selection of "news_articles" -""" -type news_articles_aggregate { - aggregate: news_articles_aggregate_fields - nodes: [news_articles!]! -} - -""" -aggregate fields of "news_articles" -""" -type news_articles_aggregate_fields { - avg: news_articles_avg_fields - count(columns: [news_articles_select_column!], distinct: Boolean): Int! - max: news_articles_max_fields - min: news_articles_min_fields - stddev: news_articles_stddev_fields - stddev_pop: news_articles_stddev_pop_fields - stddev_samp: news_articles_stddev_samp_fields - sum: news_articles_sum_fields - var_pop: news_articles_var_pop_fields - var_samp: news_articles_var_samp_fields - variance: news_articles_variance_fields -} - -"""aggregate avg on columns""" -type news_articles_avg_fields { - author_steam_id: Float - view_count: Float -} - -""" -Boolean expression to filter rows from the table "news_articles". All fields are combined with a logical 'AND'. -""" -input news_articles_bool_exp { - _and: [news_articles_bool_exp!] - _not: news_articles_bool_exp - _or: [news_articles_bool_exp!] - author: players_bool_exp - author_steam_id: bigint_comparison_exp - content_markdown: String_comparison_exp - cover_image_url: String_comparison_exp - created_at: timestamptz_comparison_exp - id: uuid_comparison_exp - published_at: timestamptz_comparison_exp - slug: String_comparison_exp - status: String_comparison_exp - teaser: String_comparison_exp - title: String_comparison_exp - updated_at: timestamptz_comparison_exp - view_count: bigint_comparison_exp -} - -""" -unique or primary key constraints on table "news_articles" -""" -enum news_articles_constraint { - """ - unique or primary key constraint on columns "id" - """ - news_articles_pkey - - """ - unique or primary key constraint on columns "slug" - """ - news_articles_slug_key -} - -""" -input type for incrementing numeric columns in table "news_articles" -""" -input news_articles_inc_input { - author_steam_id: bigint - view_count: bigint -} - -""" -input type for inserting data into table "news_articles" -""" -input news_articles_insert_input { - author: players_obj_rel_insert_input - author_steam_id: bigint - content_markdown: String - cover_image_url: String - created_at: timestamptz - id: uuid - published_at: timestamptz - slug: String - status: String - teaser: String - title: String - updated_at: timestamptz - view_count: bigint -} - -"""aggregate max on columns""" -type news_articles_max_fields { - author_steam_id: bigint - content_markdown: String - cover_image_url: String - created_at: timestamptz - id: uuid - published_at: timestamptz - slug: String - status: String - teaser: String - title: String - updated_at: timestamptz - view_count: bigint -} - -"""aggregate min on columns""" -type news_articles_min_fields { - author_steam_id: bigint - content_markdown: String - cover_image_url: String - created_at: timestamptz - id: uuid - published_at: timestamptz - slug: String - status: String - teaser: String - title: String - updated_at: timestamptz - view_count: bigint -} - -""" -response of any mutation on the table "news_articles" -""" -type news_articles_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [news_articles!]! -} - -""" -on_conflict condition type for table "news_articles" -""" -input news_articles_on_conflict { - constraint: news_articles_constraint! - update_columns: [news_articles_update_column!]! = [] - where: news_articles_bool_exp -} - -"""Ordering options when selecting data from "news_articles".""" -input news_articles_order_by { - author: players_order_by - author_steam_id: order_by - content_markdown: order_by - cover_image_url: order_by - created_at: order_by - id: order_by - published_at: order_by - slug: order_by - status: order_by - teaser: order_by - title: order_by - updated_at: order_by - view_count: order_by -} - -"""primary key columns input for table: news_articles""" -input news_articles_pk_columns_input { - id: uuid! -} - -""" -select columns of table "news_articles" -""" -enum news_articles_select_column { - """column name""" - author_steam_id - - """column name""" - content_markdown - - """column name""" - cover_image_url - - """column name""" - created_at - - """column name""" - id - - """column name""" - published_at - - """column name""" - slug - - """column name""" - status - - """column name""" - teaser - - """column name""" - title - - """column name""" - updated_at - - """column name""" - view_count -} - -""" -input type for updating data in table "news_articles" -""" -input news_articles_set_input { - author_steam_id: bigint - content_markdown: String - cover_image_url: String - created_at: timestamptz - id: uuid - published_at: timestamptz - slug: String - status: String - teaser: String - title: String - updated_at: timestamptz - view_count: bigint -} - -"""aggregate stddev on columns""" -type news_articles_stddev_fields { - author_steam_id: Float - view_count: Float -} - -"""aggregate stddev_pop on columns""" -type news_articles_stddev_pop_fields { - author_steam_id: Float - view_count: Float -} - -"""aggregate stddev_samp on columns""" -type news_articles_stddev_samp_fields { - author_steam_id: Float - view_count: Float -} - -""" -Streaming cursor of the table "news_articles" -""" -input news_articles_stream_cursor_input { - """Stream column input with initial value""" - initial_value: news_articles_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input news_articles_stream_cursor_value_input { - author_steam_id: bigint - content_markdown: String - cover_image_url: String - created_at: timestamptz - id: uuid - published_at: timestamptz - slug: String - status: String - teaser: String - title: String - updated_at: timestamptz - view_count: bigint -} - -"""aggregate sum on columns""" -type news_articles_sum_fields { - author_steam_id: bigint - view_count: bigint -} - -""" -update columns of table "news_articles" -""" -enum news_articles_update_column { - """column name""" - author_steam_id - - """column name""" - content_markdown - - """column name""" - cover_image_url - - """column name""" - created_at - - """column name""" - id - - """column name""" - published_at - - """column name""" - slug - - """column name""" - status - - """column name""" - teaser - - """column name""" - title - - """column name""" - updated_at - - """column name""" - view_count -} - -input news_articles_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: news_articles_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: news_articles_set_input - - """filter the rows which have to be updated""" - where: news_articles_bool_exp! -} - -"""aggregate var_pop on columns""" -type news_articles_var_pop_fields { - author_steam_id: Float - view_count: Float -} - -"""aggregate var_samp on columns""" -type news_articles_var_samp_fields { - author_steam_id: Float - view_count: Float -} - -"""aggregate variance on columns""" -type news_articles_variance_fields { - author_steam_id: Float - view_count: Float -} - -""" -columns and relationships of "notification_preferences" -""" -type notification_preferences { - channel: String! - enabled: Boolean! - key: String! - steam_id: bigint! - updated_at: timestamptz! -} - -""" -aggregated selection of "notification_preferences" -""" -type notification_preferences_aggregate { - aggregate: notification_preferences_aggregate_fields - nodes: [notification_preferences!]! -} - -""" -aggregate fields of "notification_preferences" -""" -type notification_preferences_aggregate_fields { - avg: notification_preferences_avg_fields - count(columns: [notification_preferences_select_column!], distinct: Boolean): Int! - max: notification_preferences_max_fields - min: notification_preferences_min_fields - stddev: notification_preferences_stddev_fields - stddev_pop: notification_preferences_stddev_pop_fields - stddev_samp: notification_preferences_stddev_samp_fields - sum: notification_preferences_sum_fields - var_pop: notification_preferences_var_pop_fields - var_samp: notification_preferences_var_samp_fields - variance: notification_preferences_variance_fields -} - -"""aggregate avg on columns""" -type notification_preferences_avg_fields { - steam_id: Float -} - -""" -Boolean expression to filter rows from the table "notification_preferences". All fields are combined with a logical 'AND'. -""" -input notification_preferences_bool_exp { - _and: [notification_preferences_bool_exp!] - _not: notification_preferences_bool_exp - _or: [notification_preferences_bool_exp!] - channel: String_comparison_exp - enabled: Boolean_comparison_exp - key: String_comparison_exp - steam_id: bigint_comparison_exp - updated_at: timestamptz_comparison_exp -} - -""" -unique or primary key constraints on table "notification_preferences" -""" -enum notification_preferences_constraint { - """ - unique or primary key constraint on columns "key", "steam_id", "channel" - """ - notification_preferences_pkey -} - -""" -input type for incrementing numeric columns in table "notification_preferences" -""" -input notification_preferences_inc_input { - steam_id: bigint -} - -""" -input type for inserting data into table "notification_preferences" -""" -input notification_preferences_insert_input { - channel: String - enabled: Boolean - key: String - steam_id: bigint - updated_at: timestamptz -} - -"""aggregate max on columns""" -type notification_preferences_max_fields { - channel: String - key: String - steam_id: bigint - updated_at: timestamptz -} - -"""aggregate min on columns""" -type notification_preferences_min_fields { - channel: String - key: String - steam_id: bigint - updated_at: timestamptz -} - -""" -response of any mutation on the table "notification_preferences" -""" -type notification_preferences_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [notification_preferences!]! -} - -""" -on_conflict condition type for table "notification_preferences" -""" -input notification_preferences_on_conflict { - constraint: notification_preferences_constraint! - update_columns: [notification_preferences_update_column!]! = [] - where: notification_preferences_bool_exp -} - -"""Ordering options when selecting data from "notification_preferences".""" -input notification_preferences_order_by { - channel: order_by - enabled: order_by - key: order_by - steam_id: order_by - updated_at: order_by -} - -"""primary key columns input for table: notification_preferences""" -input notification_preferences_pk_columns_input { - channel: String! - key: String! - steam_id: bigint! -} - -""" -select columns of table "notification_preferences" -""" -enum notification_preferences_select_column { - """column name""" - channel - - """column name""" - enabled - - """column name""" - key - - """column name""" - steam_id - - """column name""" - updated_at -} - -""" -input type for updating data in table "notification_preferences" -""" -input notification_preferences_set_input { - channel: String - enabled: Boolean - key: String - steam_id: bigint - updated_at: timestamptz -} - -"""aggregate stddev on columns""" -type notification_preferences_stddev_fields { - steam_id: Float -} - -"""aggregate stddev_pop on columns""" -type notification_preferences_stddev_pop_fields { - steam_id: Float -} - -"""aggregate stddev_samp on columns""" -type notification_preferences_stddev_samp_fields { - steam_id: Float -} - -""" -Streaming cursor of the table "notification_preferences" -""" -input notification_preferences_stream_cursor_input { - """Stream column input with initial value""" - initial_value: notification_preferences_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input notification_preferences_stream_cursor_value_input { - channel: String - enabled: Boolean - key: String - steam_id: bigint - updated_at: timestamptz -} - -"""aggregate sum on columns""" -type notification_preferences_sum_fields { - steam_id: bigint -} - -""" -update columns of table "notification_preferences" -""" -enum notification_preferences_update_column { - """column name""" - channel - - """column name""" - enabled - - """column name""" - key - - """column name""" - steam_id - - """column name""" - updated_at -} - -input notification_preferences_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: notification_preferences_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: notification_preferences_set_input - - """filter the rows which have to be updated""" - where: notification_preferences_bool_exp! -} - -"""aggregate var_pop on columns""" -type notification_preferences_var_pop_fields { - steam_id: Float -} - -"""aggregate var_samp on columns""" -type notification_preferences_var_samp_fields { - steam_id: Float -} - -"""aggregate variance on columns""" -type notification_preferences_variance_fields { - steam_id: Float -} - -""" -columns and relationships of "notifications" -""" -type notifications { - actions( - """JSON select path""" - path: String - ): jsonb - created_at: timestamptz! - data( - """JSON select path""" - path: String - ): jsonb - deletable: Boolean! - deleted_at: timestamptz - entity_id: String - id: uuid! - in_app: Boolean! - is_read: Boolean! - message: String! - - """An object relationship""" - player: players - role: e_player_roles_enum! - steam_id: bigint - title: String! - type: e_notification_types_enum! -} - -""" -aggregated selection of "notifications" -""" -type notifications_aggregate { - aggregate: notifications_aggregate_fields - nodes: [notifications!]! -} - -input notifications_aggregate_bool_exp { - bool_and: notifications_aggregate_bool_exp_bool_and - bool_or: notifications_aggregate_bool_exp_bool_or - count: notifications_aggregate_bool_exp_count -} - -input notifications_aggregate_bool_exp_bool_and { - arguments: notifications_select_column_notifications_aggregate_bool_exp_bool_and_arguments_columns! - distinct: Boolean - filter: notifications_bool_exp - predicate: Boolean_comparison_exp! -} - -input notifications_aggregate_bool_exp_bool_or { - arguments: notifications_select_column_notifications_aggregate_bool_exp_bool_or_arguments_columns! - distinct: Boolean - filter: notifications_bool_exp - predicate: Boolean_comparison_exp! -} - -input notifications_aggregate_bool_exp_count { - arguments: [notifications_select_column!] - distinct: Boolean - filter: notifications_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "notifications" -""" -type notifications_aggregate_fields { - avg: notifications_avg_fields - count(columns: [notifications_select_column!], distinct: Boolean): Int! - max: notifications_max_fields - min: notifications_min_fields - stddev: notifications_stddev_fields - stddev_pop: notifications_stddev_pop_fields - stddev_samp: notifications_stddev_samp_fields - sum: notifications_sum_fields - var_pop: notifications_var_pop_fields - var_samp: notifications_var_samp_fields - variance: notifications_variance_fields -} - -""" -order by aggregate values of table "notifications" -""" -input notifications_aggregate_order_by { - avg: notifications_avg_order_by - count: order_by - max: notifications_max_order_by - min: notifications_min_order_by - stddev: notifications_stddev_order_by - stddev_pop: notifications_stddev_pop_order_by - stddev_samp: notifications_stddev_samp_order_by - sum: notifications_sum_order_by - var_pop: notifications_var_pop_order_by - var_samp: notifications_var_samp_order_by - variance: notifications_variance_order_by -} - -"""append existing jsonb value of filtered columns with new jsonb value""" -input notifications_append_input { - actions: jsonb - data: jsonb -} - -""" -input type for inserting array relation for remote table "notifications" -""" -input notifications_arr_rel_insert_input { - data: [notifications_insert_input!]! - - """upsert condition""" - on_conflict: notifications_on_conflict -} - -"""aggregate avg on columns""" -type notifications_avg_fields { - steam_id: Float -} - -""" -order by avg() on columns of table "notifications" -""" -input notifications_avg_order_by { - steam_id: order_by -} - -""" -Boolean expression to filter rows from the table "notifications". All fields are combined with a logical 'AND'. -""" -input notifications_bool_exp { - _and: [notifications_bool_exp!] - _not: notifications_bool_exp - _or: [notifications_bool_exp!] - actions: jsonb_comparison_exp - created_at: timestamptz_comparison_exp - data: jsonb_comparison_exp - deletable: Boolean_comparison_exp - deleted_at: timestamptz_comparison_exp - entity_id: String_comparison_exp - id: uuid_comparison_exp - in_app: Boolean_comparison_exp - is_read: Boolean_comparison_exp - message: String_comparison_exp - player: players_bool_exp - role: e_player_roles_enum_comparison_exp - steam_id: bigint_comparison_exp - title: String_comparison_exp - type: e_notification_types_enum_comparison_exp -} - -""" -unique or primary key constraints on table "notifications" -""" -enum notifications_constraint { - """ - unique or primary key constraint on columns "id" - """ - notifications_pkey -} - -""" -delete the field or element with specified path (for JSON arrays, negative integers count from the end) -""" -input notifications_delete_at_path_input { - actions: [String!] - data: [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 notifications_delete_elem_input { - actions: Int - data: Int -} - -""" -delete key/value pair or string element. key/value pairs are matched based on their key value -""" -input notifications_delete_key_input { - actions: String - data: String -} - -""" -input type for incrementing numeric columns in table "notifications" -""" -input notifications_inc_input { - steam_id: bigint -} - -""" -input type for inserting data into table "notifications" -""" -input notifications_insert_input { - actions: jsonb - created_at: timestamptz - data: jsonb - deletable: Boolean - deleted_at: timestamptz - entity_id: String - id: uuid - in_app: Boolean - is_read: Boolean - message: String - player: players_obj_rel_insert_input - role: e_player_roles_enum - steam_id: bigint - title: String - type: e_notification_types_enum -} - -"""aggregate max on columns""" -type notifications_max_fields { - created_at: timestamptz - deleted_at: timestamptz - entity_id: String - id: uuid - message: String - steam_id: bigint - title: String -} - -""" -order by max() on columns of table "notifications" -""" -input notifications_max_order_by { - created_at: order_by - deleted_at: order_by - entity_id: order_by - id: order_by - message: order_by - steam_id: order_by - title: order_by -} - -"""aggregate min on columns""" -type notifications_min_fields { - created_at: timestamptz - deleted_at: timestamptz - entity_id: String - id: uuid - message: String - steam_id: bigint - title: String -} - -""" -order by min() on columns of table "notifications" -""" -input notifications_min_order_by { - created_at: order_by - deleted_at: order_by - entity_id: order_by - id: order_by - message: order_by - steam_id: order_by - title: order_by -} - -""" -response of any mutation on the table "notifications" -""" -type notifications_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [notifications!]! -} - -""" -on_conflict condition type for table "notifications" -""" -input notifications_on_conflict { - constraint: notifications_constraint! - update_columns: [notifications_update_column!]! = [] - where: notifications_bool_exp -} - -"""Ordering options when selecting data from "notifications".""" -input notifications_order_by { - actions: order_by - created_at: order_by - data: order_by - deletable: order_by - deleted_at: order_by - entity_id: order_by - id: order_by - in_app: order_by - is_read: order_by - message: order_by - player: players_order_by - role: order_by - steam_id: order_by - title: order_by - type: order_by -} - -"""primary key columns input for table: notifications""" -input notifications_pk_columns_input { - id: uuid! -} - -"""prepend existing jsonb value of filtered columns with new jsonb value""" -input notifications_prepend_input { - actions: jsonb - data: jsonb -} - -""" -select columns of table "notifications" -""" -enum notifications_select_column { - """column name""" - actions - - """column name""" - created_at - - """column name""" - data - - """column name""" - deletable - - """column name""" - deleted_at - - """column name""" - entity_id - - """column name""" - id - - """column name""" - in_app - - """column name""" - is_read - - """column name""" - message - - """column name""" - role - - """column name""" - steam_id - - """column name""" - title - - """column name""" - type -} - -""" -select "notifications_aggregate_bool_exp_bool_and_arguments_columns" columns of table "notifications" -""" -enum notifications_select_column_notifications_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - deletable - - """column name""" - in_app - - """column name""" - is_read -} - -""" -select "notifications_aggregate_bool_exp_bool_or_arguments_columns" columns of table "notifications" -""" -enum notifications_select_column_notifications_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - deletable - - """column name""" - in_app - - """column name""" - is_read -} - -""" -input type for updating data in table "notifications" -""" -input notifications_set_input { - actions: jsonb - created_at: timestamptz - data: jsonb - deletable: Boolean - deleted_at: timestamptz - entity_id: String - id: uuid - in_app: Boolean - is_read: Boolean - message: String - role: e_player_roles_enum - steam_id: bigint - title: String - type: e_notification_types_enum -} - -"""aggregate stddev on columns""" -type notifications_stddev_fields { - steam_id: Float -} - -""" -order by stddev() on columns of table "notifications" -""" -input notifications_stddev_order_by { - steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type notifications_stddev_pop_fields { - steam_id: Float -} - -""" -order by stddev_pop() on columns of table "notifications" -""" -input notifications_stddev_pop_order_by { - steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type notifications_stddev_samp_fields { - steam_id: Float -} - -""" -order by stddev_samp() on columns of table "notifications" -""" -input notifications_stddev_samp_order_by { - steam_id: order_by -} - -""" -Streaming cursor of the table "notifications" -""" -input notifications_stream_cursor_input { - """Stream column input with initial value""" - initial_value: notifications_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input notifications_stream_cursor_value_input { - actions: jsonb - created_at: timestamptz - data: jsonb - deletable: Boolean - deleted_at: timestamptz - entity_id: String - id: uuid - in_app: Boolean - is_read: Boolean - message: String - role: e_player_roles_enum - steam_id: bigint - title: String - type: e_notification_types_enum -} - -"""aggregate sum on columns""" -type notifications_sum_fields { - steam_id: bigint -} - -""" -order by sum() on columns of table "notifications" -""" -input notifications_sum_order_by { - steam_id: order_by -} - -""" -update columns of table "notifications" -""" -enum notifications_update_column { - """column name""" - actions - - """column name""" - created_at - - """column name""" - data - - """column name""" - deletable - - """column name""" - deleted_at - - """column name""" - entity_id - - """column name""" - id - - """column name""" - in_app - - """column name""" - is_read - - """column name""" - message - - """column name""" - role - - """column name""" - steam_id - - """column name""" - title - - """column name""" - type -} - -input notifications_updates { - """append existing jsonb value of filtered columns with new jsonb value""" - _append: notifications_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: notifications_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: notifications_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: notifications_delete_key_input - - """increments the numeric columns with given value of the filtered values""" - _inc: notifications_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: notifications_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: notifications_set_input - - """filter the rows which have to be updated""" - where: notifications_bool_exp! -} - -"""aggregate var_pop on columns""" -type notifications_var_pop_fields { - steam_id: Float -} - -""" -order by var_pop() on columns of table "notifications" -""" -input notifications_var_pop_order_by { - steam_id: order_by -} - -"""aggregate var_samp on columns""" -type notifications_var_samp_fields { - steam_id: Float -} - -""" -order by var_samp() on columns of table "notifications" -""" -input notifications_var_samp_order_by { - steam_id: order_by -} - -"""aggregate variance on columns""" -type notifications_variance_fields { - steam_id: Float -} - -""" -order by variance() on columns of table "notifications" -""" -input notifications_variance_order_by { - steam_id: order_by -} - -scalar numeric - -""" -Boolean expression to compare columns of type "numeric". All fields are combined with logical 'AND'. -""" -input numeric_comparison_exp { - _eq: numeric - _gt: numeric - _gte: numeric - _in: [numeric!] - _is_null: Boolean - _lt: numeric - _lte: numeric - _neq: numeric - _nin: [numeric!] -} - -"""column ordering options""" -enum order_by { - """in ascending order, nulls last""" - asc - - """in ascending order, nulls first""" - asc_nulls_first - - """in ascending order, nulls last""" - asc_nulls_last - - """in descending order, nulls first""" - desc - - """in descending order, nulls first""" - desc_nulls_first - - """in descending order, nulls last""" - desc_nulls_last -} - -""" -columns and relationships of "pending_match_import_players" -""" -type pending_match_import_players { - created_at: timestamptz! - - """An object relationship""" - pending_match_import: pending_match_imports! - - """An object relationship""" - player: players! - steam_id: bigint! - valve_match_id: numeric! -} - -""" -aggregated selection of "pending_match_import_players" -""" -type pending_match_import_players_aggregate { - aggregate: pending_match_import_players_aggregate_fields - nodes: [pending_match_import_players!]! -} - -input pending_match_import_players_aggregate_bool_exp { - count: pending_match_import_players_aggregate_bool_exp_count -} - -input pending_match_import_players_aggregate_bool_exp_count { - arguments: [pending_match_import_players_select_column!] - distinct: Boolean - filter: pending_match_import_players_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pending_match_import_players" -""" -type pending_match_import_players_aggregate_fields { - avg: pending_match_import_players_avg_fields - count(columns: [pending_match_import_players_select_column!], distinct: Boolean): Int! - max: pending_match_import_players_max_fields - min: pending_match_import_players_min_fields - stddev: pending_match_import_players_stddev_fields - stddev_pop: pending_match_import_players_stddev_pop_fields - stddev_samp: pending_match_import_players_stddev_samp_fields - sum: pending_match_import_players_sum_fields - var_pop: pending_match_import_players_var_pop_fields - var_samp: pending_match_import_players_var_samp_fields - variance: pending_match_import_players_variance_fields -} - -""" -order by aggregate values of table "pending_match_import_players" -""" -input pending_match_import_players_aggregate_order_by { - avg: pending_match_import_players_avg_order_by - count: order_by - max: pending_match_import_players_max_order_by - min: pending_match_import_players_min_order_by - stddev: pending_match_import_players_stddev_order_by - stddev_pop: pending_match_import_players_stddev_pop_order_by - stddev_samp: pending_match_import_players_stddev_samp_order_by - sum: pending_match_import_players_sum_order_by - var_pop: pending_match_import_players_var_pop_order_by - var_samp: pending_match_import_players_var_samp_order_by - variance: pending_match_import_players_variance_order_by -} - -""" -input type for inserting array relation for remote table "pending_match_import_players" -""" -input pending_match_import_players_arr_rel_insert_input { - data: [pending_match_import_players_insert_input!]! - - """upsert condition""" - on_conflict: pending_match_import_players_on_conflict -} - -"""aggregate avg on columns""" -type pending_match_import_players_avg_fields { - steam_id: Float - valve_match_id: Float -} - -""" -order by avg() on columns of table "pending_match_import_players" -""" -input pending_match_import_players_avg_order_by { - steam_id: order_by - valve_match_id: order_by -} - -""" -Boolean expression to filter rows from the table "pending_match_import_players". All fields are combined with a logical 'AND'. -""" -input pending_match_import_players_bool_exp { - _and: [pending_match_import_players_bool_exp!] - _not: pending_match_import_players_bool_exp - _or: [pending_match_import_players_bool_exp!] - created_at: timestamptz_comparison_exp - pending_match_import: pending_match_imports_bool_exp - player: players_bool_exp - steam_id: bigint_comparison_exp - valve_match_id: numeric_comparison_exp -} - -""" -unique or primary key constraints on table "pending_match_import_players" -""" -enum pending_match_import_players_constraint { - """ - unique or primary key constraint on columns "steam_id", "valve_match_id" - """ - pending_match_import_players_pkey -} - -""" -input type for incrementing numeric columns in table "pending_match_import_players" -""" -input pending_match_import_players_inc_input { - steam_id: bigint - valve_match_id: numeric -} - -""" -input type for inserting data into table "pending_match_import_players" -""" -input pending_match_import_players_insert_input { - created_at: timestamptz - pending_match_import: pending_match_imports_obj_rel_insert_input - player: players_obj_rel_insert_input - steam_id: bigint - valve_match_id: numeric -} - -"""aggregate max on columns""" -type pending_match_import_players_max_fields { - created_at: timestamptz - steam_id: bigint - valve_match_id: numeric -} - -""" -order by max() on columns of table "pending_match_import_players" -""" -input pending_match_import_players_max_order_by { - created_at: order_by - steam_id: order_by - valve_match_id: order_by -} - -"""aggregate min on columns""" -type pending_match_import_players_min_fields { - created_at: timestamptz - steam_id: bigint - valve_match_id: numeric -} - -""" -order by min() on columns of table "pending_match_import_players" -""" -input pending_match_import_players_min_order_by { - created_at: order_by - steam_id: order_by - valve_match_id: order_by -} - -""" -response of any mutation on the table "pending_match_import_players" -""" -type pending_match_import_players_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [pending_match_import_players!]! -} - -""" -on_conflict condition type for table "pending_match_import_players" -""" -input pending_match_import_players_on_conflict { - constraint: pending_match_import_players_constraint! - update_columns: [pending_match_import_players_update_column!]! = [] - where: pending_match_import_players_bool_exp -} - -""" -Ordering options when selecting data from "pending_match_import_players". -""" -input pending_match_import_players_order_by { - created_at: order_by - pending_match_import: pending_match_imports_order_by - player: players_order_by - steam_id: order_by - valve_match_id: order_by -} - -"""primary key columns input for table: pending_match_import_players""" -input pending_match_import_players_pk_columns_input { - steam_id: bigint! - valve_match_id: numeric! -} - -""" -select columns of table "pending_match_import_players" -""" -enum pending_match_import_players_select_column { - """column name""" - created_at - - """column name""" - steam_id - - """column name""" - valve_match_id -} - -""" -input type for updating data in table "pending_match_import_players" -""" -input pending_match_import_players_set_input { - created_at: timestamptz - steam_id: bigint - valve_match_id: numeric -} - -"""aggregate stddev on columns""" -type pending_match_import_players_stddev_fields { - steam_id: Float - valve_match_id: Float -} - -""" -order by stddev() on columns of table "pending_match_import_players" -""" -input pending_match_import_players_stddev_order_by { - steam_id: order_by - valve_match_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pending_match_import_players_stddev_pop_fields { - steam_id: Float - valve_match_id: Float -} - -""" -order by stddev_pop() on columns of table "pending_match_import_players" -""" -input pending_match_import_players_stddev_pop_order_by { - steam_id: order_by - valve_match_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pending_match_import_players_stddev_samp_fields { - steam_id: Float - valve_match_id: Float -} - -""" -order by stddev_samp() on columns of table "pending_match_import_players" -""" -input pending_match_import_players_stddev_samp_order_by { - steam_id: order_by - valve_match_id: order_by -} - -""" -Streaming cursor of the table "pending_match_import_players" -""" -input pending_match_import_players_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pending_match_import_players_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pending_match_import_players_stream_cursor_value_input { - created_at: timestamptz - steam_id: bigint - valve_match_id: numeric -} - -"""aggregate sum on columns""" -type pending_match_import_players_sum_fields { - steam_id: bigint - valve_match_id: numeric -} - -""" -order by sum() on columns of table "pending_match_import_players" -""" -input pending_match_import_players_sum_order_by { - steam_id: order_by - valve_match_id: order_by -} - -""" -update columns of table "pending_match_import_players" -""" -enum pending_match_import_players_update_column { - """column name""" - created_at - - """column name""" - steam_id - - """column name""" - valve_match_id -} - -input pending_match_import_players_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: pending_match_import_players_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: pending_match_import_players_set_input - - """filter the rows which have to be updated""" - where: pending_match_import_players_bool_exp! -} - -"""aggregate var_pop on columns""" -type pending_match_import_players_var_pop_fields { - steam_id: Float - valve_match_id: Float -} - -""" -order by var_pop() on columns of table "pending_match_import_players" -""" -input pending_match_import_players_var_pop_order_by { - steam_id: order_by - valve_match_id: order_by -} - -"""aggregate var_samp on columns""" -type pending_match_import_players_var_samp_fields { - steam_id: Float - valve_match_id: Float -} - -""" -order by var_samp() on columns of table "pending_match_import_players" -""" -input pending_match_import_players_var_samp_order_by { - steam_id: order_by - valve_match_id: order_by -} - -"""aggregate variance on columns""" -type pending_match_import_players_variance_fields { - steam_id: Float - valve_match_id: Float -} - -""" -order by variance() on columns of table "pending_match_import_players" -""" -input pending_match_import_players_variance_order_by { - steam_id: order_by - valve_match_id: order_by -} - -""" -columns and relationships of "pending_match_imports" -""" -type pending_match_imports { - created_at: timestamptz! - demo_url: String - error: String - map_name: String - match_start_time: timestamptz - - """An array relationship""" - players( - """distinct select on columns""" - distinct_on: [pending_match_import_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pending_match_import_players_order_by!] - - """filter the rows returned""" - where: pending_match_import_players_bool_exp - ): [pending_match_import_players!]! - - """An aggregate relationship""" - players_aggregate( - """distinct select on columns""" - distinct_on: [pending_match_import_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pending_match_import_players_order_by!] - - """filter the rows returned""" - where: pending_match_import_players_bool_exp - ): pending_match_import_players_aggregate! - share_code: String! - status: String! - updated_at: timestamptz! - valve_match_id: numeric! -} - -""" -aggregated selection of "pending_match_imports" -""" -type pending_match_imports_aggregate { - aggregate: pending_match_imports_aggregate_fields - nodes: [pending_match_imports!]! -} - -""" -aggregate fields of "pending_match_imports" -""" -type pending_match_imports_aggregate_fields { - avg: pending_match_imports_avg_fields - count(columns: [pending_match_imports_select_column!], distinct: Boolean): Int! - max: pending_match_imports_max_fields - min: pending_match_imports_min_fields - stddev: pending_match_imports_stddev_fields - stddev_pop: pending_match_imports_stddev_pop_fields - stddev_samp: pending_match_imports_stddev_samp_fields - sum: pending_match_imports_sum_fields - var_pop: pending_match_imports_var_pop_fields - var_samp: pending_match_imports_var_samp_fields - variance: pending_match_imports_variance_fields -} - -"""aggregate avg on columns""" -type pending_match_imports_avg_fields { - valve_match_id: Float -} - -""" -Boolean expression to filter rows from the table "pending_match_imports". All fields are combined with a logical 'AND'. -""" -input pending_match_imports_bool_exp { - _and: [pending_match_imports_bool_exp!] - _not: pending_match_imports_bool_exp - _or: [pending_match_imports_bool_exp!] - created_at: timestamptz_comparison_exp - demo_url: String_comparison_exp - error: String_comparison_exp - map_name: String_comparison_exp - match_start_time: timestamptz_comparison_exp - players: pending_match_import_players_bool_exp - players_aggregate: pending_match_import_players_aggregate_bool_exp - share_code: String_comparison_exp - status: String_comparison_exp - updated_at: timestamptz_comparison_exp - valve_match_id: numeric_comparison_exp -} - -""" -unique or primary key constraints on table "pending_match_imports" -""" -enum pending_match_imports_constraint { - """ - unique or primary key constraint on columns "valve_match_id" - """ - pending_match_imports_pkey -} - -""" -input type for incrementing numeric columns in table "pending_match_imports" -""" -input pending_match_imports_inc_input { - valve_match_id: numeric -} - -""" -input type for inserting data into table "pending_match_imports" -""" -input pending_match_imports_insert_input { - created_at: timestamptz - demo_url: String - error: String - map_name: String - match_start_time: timestamptz - players: pending_match_import_players_arr_rel_insert_input - share_code: String - status: String - updated_at: timestamptz - valve_match_id: numeric -} - -"""aggregate max on columns""" -type pending_match_imports_max_fields { - created_at: timestamptz - demo_url: String - error: String - map_name: String - match_start_time: timestamptz - share_code: String - status: String - updated_at: timestamptz - valve_match_id: numeric -} - -"""aggregate min on columns""" -type pending_match_imports_min_fields { - created_at: timestamptz - demo_url: String - error: String - map_name: String - match_start_time: timestamptz - share_code: String - status: String - updated_at: timestamptz - valve_match_id: numeric -} - -""" -response of any mutation on the table "pending_match_imports" -""" -type pending_match_imports_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [pending_match_imports!]! -} - -""" -input type for inserting object relation for remote table "pending_match_imports" -""" -input pending_match_imports_obj_rel_insert_input { - data: pending_match_imports_insert_input! - - """upsert condition""" - on_conflict: pending_match_imports_on_conflict -} - -""" -on_conflict condition type for table "pending_match_imports" -""" -input pending_match_imports_on_conflict { - constraint: pending_match_imports_constraint! - update_columns: [pending_match_imports_update_column!]! = [] - where: pending_match_imports_bool_exp -} - -"""Ordering options when selecting data from "pending_match_imports".""" -input pending_match_imports_order_by { - created_at: order_by - demo_url: order_by - error: order_by - map_name: order_by - match_start_time: order_by - players_aggregate: pending_match_import_players_aggregate_order_by - share_code: order_by - status: order_by - updated_at: order_by - valve_match_id: order_by -} - -"""primary key columns input for table: pending_match_imports""" -input pending_match_imports_pk_columns_input { - valve_match_id: numeric! -} - -""" -select columns of table "pending_match_imports" -""" -enum pending_match_imports_select_column { - """column name""" - created_at - - """column name""" - demo_url - - """column name""" - error - - """column name""" - map_name - - """column name""" - match_start_time - - """column name""" - share_code - - """column name""" - status - - """column name""" - updated_at - - """column name""" - valve_match_id -} - -""" -input type for updating data in table "pending_match_imports" -""" -input pending_match_imports_set_input { - created_at: timestamptz - demo_url: String - error: String - map_name: String - match_start_time: timestamptz - share_code: String - status: String - updated_at: timestamptz - valve_match_id: numeric -} - -"""aggregate stddev on columns""" -type pending_match_imports_stddev_fields { - valve_match_id: Float -} - -"""aggregate stddev_pop on columns""" -type pending_match_imports_stddev_pop_fields { - valve_match_id: Float -} - -"""aggregate stddev_samp on columns""" -type pending_match_imports_stddev_samp_fields { - valve_match_id: Float -} - -""" -Streaming cursor of the table "pending_match_imports" -""" -input pending_match_imports_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pending_match_imports_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pending_match_imports_stream_cursor_value_input { - created_at: timestamptz - demo_url: String - error: String - map_name: String - match_start_time: timestamptz - share_code: String - status: String - updated_at: timestamptz - valve_match_id: numeric -} - -"""aggregate sum on columns""" -type pending_match_imports_sum_fields { - valve_match_id: numeric -} - -""" -update columns of table "pending_match_imports" -""" -enum pending_match_imports_update_column { - """column name""" - created_at - - """column name""" - demo_url - - """column name""" - error - - """column name""" - map_name - - """column name""" - match_start_time - - """column name""" - share_code - - """column name""" - status - - """column name""" - updated_at - - """column name""" - valve_match_id -} - -input pending_match_imports_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: pending_match_imports_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: pending_match_imports_set_input - - """filter the rows which have to be updated""" - where: pending_match_imports_bool_exp! -} - -"""aggregate var_pop on columns""" -type pending_match_imports_var_pop_fields { - valve_match_id: Float -} - -"""aggregate var_samp on columns""" -type pending_match_imports_var_samp_fields { - valve_match_id: Float -} - -"""aggregate variance on columns""" -type pending_match_imports_variance_fields { - valve_match_id: Float -} - -""" -columns and relationships of "player_aim_stats_demo" -""" -type player_aim_stats_demo { - """An object relationship""" - attacker: players - attacker_steam_id: bigint! - counter_strafe_eligible_shots: Int! - counter_strafed_shots: Int! - crosshair_angle_count: Int! - crosshair_angle_sum_deg: numeric! - first_bullet_hits: Int! - first_bullet_shots: Int! - headshot_hits: Int! - hits: Int! - hits_at_spotted: Int! - - """An object relationship""" - match: matches! - match_id: uuid! - - """An object relationship""" - match_map: match_maps! - match_map_id: uuid! - non_awp_hits: Int! - on_target_frames: Int! - shots_at_spotted: Int! - spray_hits: Int! - spray_shots: Int! - time_to_damage_count: Int! - time_to_damage_sum_s: numeric! - total_engagement_frames: Int! -} - -""" -aggregated selection of "player_aim_stats_demo" -""" -type player_aim_stats_demo_aggregate { - aggregate: player_aim_stats_demo_aggregate_fields - nodes: [player_aim_stats_demo!]! -} - -""" -aggregate fields of "player_aim_stats_demo" -""" -type player_aim_stats_demo_aggregate_fields { - avg: player_aim_stats_demo_avg_fields - count(columns: [player_aim_stats_demo_select_column!], distinct: Boolean): Int! - max: player_aim_stats_demo_max_fields - min: player_aim_stats_demo_min_fields - stddev: player_aim_stats_demo_stddev_fields - stddev_pop: player_aim_stats_demo_stddev_pop_fields - stddev_samp: player_aim_stats_demo_stddev_samp_fields - sum: player_aim_stats_demo_sum_fields - var_pop: player_aim_stats_demo_var_pop_fields - var_samp: player_aim_stats_demo_var_samp_fields - variance: player_aim_stats_demo_variance_fields -} - -"""aggregate avg on columns""" -type player_aim_stats_demo_avg_fields { - attacker_steam_id: Float - counter_strafe_eligible_shots: Float - counter_strafed_shots: Float - crosshair_angle_count: Float - crosshair_angle_sum_deg: Float - first_bullet_hits: Float - first_bullet_shots: Float - headshot_hits: Float - hits: Float - hits_at_spotted: Float - non_awp_hits: Float - on_target_frames: Float - shots_at_spotted: Float - spray_hits: Float - spray_shots: Float - time_to_damage_count: Float - time_to_damage_sum_s: Float - total_engagement_frames: Float -} - -""" -Boolean expression to filter rows from the table "player_aim_stats_demo". All fields are combined with a logical 'AND'. -""" -input player_aim_stats_demo_bool_exp { - _and: [player_aim_stats_demo_bool_exp!] - _not: player_aim_stats_demo_bool_exp - _or: [player_aim_stats_demo_bool_exp!] - attacker: players_bool_exp - attacker_steam_id: bigint_comparison_exp - counter_strafe_eligible_shots: Int_comparison_exp - counter_strafed_shots: Int_comparison_exp - crosshair_angle_count: Int_comparison_exp - crosshair_angle_sum_deg: numeric_comparison_exp - first_bullet_hits: Int_comparison_exp - first_bullet_shots: Int_comparison_exp - headshot_hits: Int_comparison_exp - hits: Int_comparison_exp - hits_at_spotted: Int_comparison_exp - match: matches_bool_exp - match_id: uuid_comparison_exp - match_map: match_maps_bool_exp - match_map_id: uuid_comparison_exp - non_awp_hits: Int_comparison_exp - on_target_frames: Int_comparison_exp - shots_at_spotted: Int_comparison_exp - spray_hits: Int_comparison_exp - spray_shots: Int_comparison_exp - time_to_damage_count: Int_comparison_exp - time_to_damage_sum_s: numeric_comparison_exp - total_engagement_frames: Int_comparison_exp -} - -""" -unique or primary key constraints on table "player_aim_stats_demo" -""" -enum player_aim_stats_demo_constraint { - """ - unique or primary key constraint on columns "attacker_steam_id", "match_map_id" - """ - player_aim_stats_demo_pkey -} - -""" -input type for incrementing numeric columns in table "player_aim_stats_demo" -""" -input player_aim_stats_demo_inc_input { - attacker_steam_id: bigint - counter_strafe_eligible_shots: Int - counter_strafed_shots: Int - crosshair_angle_count: Int - crosshair_angle_sum_deg: numeric - first_bullet_hits: Int - first_bullet_shots: Int - headshot_hits: Int - hits: Int - hits_at_spotted: Int - non_awp_hits: Int - on_target_frames: Int - shots_at_spotted: Int - spray_hits: Int - spray_shots: Int - time_to_damage_count: Int - time_to_damage_sum_s: numeric - total_engagement_frames: Int -} - -""" -input type for inserting data into table "player_aim_stats_demo" -""" -input player_aim_stats_demo_insert_input { - attacker: players_obj_rel_insert_input - attacker_steam_id: bigint - counter_strafe_eligible_shots: Int - counter_strafed_shots: Int - crosshair_angle_count: Int - crosshair_angle_sum_deg: numeric - first_bullet_hits: Int - first_bullet_shots: Int - headshot_hits: Int - hits: Int - hits_at_spotted: Int - match: matches_obj_rel_insert_input - match_id: uuid - match_map: match_maps_obj_rel_insert_input - match_map_id: uuid - non_awp_hits: Int - on_target_frames: Int - shots_at_spotted: Int - spray_hits: Int - spray_shots: Int - time_to_damage_count: Int - time_to_damage_sum_s: numeric - total_engagement_frames: Int -} - -"""aggregate max on columns""" -type player_aim_stats_demo_max_fields { - attacker_steam_id: bigint - counter_strafe_eligible_shots: Int - counter_strafed_shots: Int - crosshair_angle_count: Int - crosshair_angle_sum_deg: numeric - first_bullet_hits: Int - first_bullet_shots: Int - headshot_hits: Int - hits: Int - hits_at_spotted: Int - match_id: uuid - match_map_id: uuid - non_awp_hits: Int - on_target_frames: Int - shots_at_spotted: Int - spray_hits: Int - spray_shots: Int - time_to_damage_count: Int - time_to_damage_sum_s: numeric - total_engagement_frames: Int -} - -"""aggregate min on columns""" -type player_aim_stats_demo_min_fields { - attacker_steam_id: bigint - counter_strafe_eligible_shots: Int - counter_strafed_shots: Int - crosshair_angle_count: Int - crosshair_angle_sum_deg: numeric - first_bullet_hits: Int - first_bullet_shots: Int - headshot_hits: Int - hits: Int - hits_at_spotted: Int - match_id: uuid - match_map_id: uuid - non_awp_hits: Int - on_target_frames: Int - shots_at_spotted: Int - spray_hits: Int - spray_shots: Int - time_to_damage_count: Int - time_to_damage_sum_s: numeric - total_engagement_frames: Int -} - -""" -response of any mutation on the table "player_aim_stats_demo" -""" -type player_aim_stats_demo_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [player_aim_stats_demo!]! -} - -""" -on_conflict condition type for table "player_aim_stats_demo" -""" -input player_aim_stats_demo_on_conflict { - constraint: player_aim_stats_demo_constraint! - update_columns: [player_aim_stats_demo_update_column!]! = [] - where: player_aim_stats_demo_bool_exp -} - -"""Ordering options when selecting data from "player_aim_stats_demo".""" -input player_aim_stats_demo_order_by { - attacker: players_order_by - attacker_steam_id: order_by - counter_strafe_eligible_shots: order_by - counter_strafed_shots: order_by - crosshair_angle_count: order_by - crosshair_angle_sum_deg: order_by - first_bullet_hits: order_by - first_bullet_shots: order_by - headshot_hits: order_by - hits: order_by - hits_at_spotted: order_by - match: matches_order_by - match_id: order_by - match_map: match_maps_order_by - match_map_id: order_by - non_awp_hits: order_by - on_target_frames: order_by - shots_at_spotted: order_by - spray_hits: order_by - spray_shots: order_by - time_to_damage_count: order_by - time_to_damage_sum_s: order_by - total_engagement_frames: order_by -} - -"""primary key columns input for table: player_aim_stats_demo""" -input player_aim_stats_demo_pk_columns_input { - attacker_steam_id: bigint! - match_map_id: uuid! -} - -""" -select columns of table "player_aim_stats_demo" -""" -enum player_aim_stats_demo_select_column { - """column name""" - attacker_steam_id - - """column name""" - counter_strafe_eligible_shots - - """column name""" - counter_strafed_shots - - """column name""" - crosshair_angle_count - - """column name""" - crosshair_angle_sum_deg - - """column name""" - first_bullet_hits - - """column name""" - first_bullet_shots - - """column name""" - headshot_hits - - """column name""" - hits - - """column name""" - hits_at_spotted - - """column name""" - match_id - - """column name""" - match_map_id - - """column name""" - non_awp_hits - - """column name""" - on_target_frames - - """column name""" - shots_at_spotted - - """column name""" - spray_hits - - """column name""" - spray_shots - - """column name""" - time_to_damage_count - - """column name""" - time_to_damage_sum_s - - """column name""" - total_engagement_frames -} - -""" -input type for updating data in table "player_aim_stats_demo" -""" -input player_aim_stats_demo_set_input { - attacker_steam_id: bigint - counter_strafe_eligible_shots: Int - counter_strafed_shots: Int - crosshair_angle_count: Int - crosshair_angle_sum_deg: numeric - first_bullet_hits: Int - first_bullet_shots: Int - headshot_hits: Int - hits: Int - hits_at_spotted: Int - match_id: uuid - match_map_id: uuid - non_awp_hits: Int - on_target_frames: Int - shots_at_spotted: Int - spray_hits: Int - spray_shots: Int - time_to_damage_count: Int - time_to_damage_sum_s: numeric - total_engagement_frames: Int -} - -"""aggregate stddev on columns""" -type player_aim_stats_demo_stddev_fields { - attacker_steam_id: Float - counter_strafe_eligible_shots: Float - counter_strafed_shots: Float - crosshair_angle_count: Float - crosshair_angle_sum_deg: Float - first_bullet_hits: Float - first_bullet_shots: Float - headshot_hits: Float - hits: Float - hits_at_spotted: Float - non_awp_hits: Float - on_target_frames: Float - shots_at_spotted: Float - spray_hits: Float - spray_shots: Float - time_to_damage_count: Float - time_to_damage_sum_s: Float - total_engagement_frames: Float -} - -"""aggregate stddev_pop on columns""" -type player_aim_stats_demo_stddev_pop_fields { - attacker_steam_id: Float - counter_strafe_eligible_shots: Float - counter_strafed_shots: Float - crosshair_angle_count: Float - crosshair_angle_sum_deg: Float - first_bullet_hits: Float - first_bullet_shots: Float - headshot_hits: Float - hits: Float - hits_at_spotted: Float - non_awp_hits: Float - on_target_frames: Float - shots_at_spotted: Float - spray_hits: Float - spray_shots: Float - time_to_damage_count: Float - time_to_damage_sum_s: Float - total_engagement_frames: Float -} - -"""aggregate stddev_samp on columns""" -type player_aim_stats_demo_stddev_samp_fields { - attacker_steam_id: Float - counter_strafe_eligible_shots: Float - counter_strafed_shots: Float - crosshair_angle_count: Float - crosshair_angle_sum_deg: Float - first_bullet_hits: Float - first_bullet_shots: Float - headshot_hits: Float - hits: Float - hits_at_spotted: Float - non_awp_hits: Float - on_target_frames: Float - shots_at_spotted: Float - spray_hits: Float - spray_shots: Float - time_to_damage_count: Float - time_to_damage_sum_s: Float - total_engagement_frames: Float -} - -""" -Streaming cursor of the table "player_aim_stats_demo" -""" -input player_aim_stats_demo_stream_cursor_input { - """Stream column input with initial value""" - initial_value: player_aim_stats_demo_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input player_aim_stats_demo_stream_cursor_value_input { - attacker_steam_id: bigint - counter_strafe_eligible_shots: Int - counter_strafed_shots: Int - crosshair_angle_count: Int - crosshair_angle_sum_deg: numeric - first_bullet_hits: Int - first_bullet_shots: Int - headshot_hits: Int - hits: Int - hits_at_spotted: Int - match_id: uuid - match_map_id: uuid - non_awp_hits: Int - on_target_frames: Int - shots_at_spotted: Int - spray_hits: Int - spray_shots: Int - time_to_damage_count: Int - time_to_damage_sum_s: numeric - total_engagement_frames: Int -} - -"""aggregate sum on columns""" -type player_aim_stats_demo_sum_fields { - attacker_steam_id: bigint - counter_strafe_eligible_shots: Int - counter_strafed_shots: Int - crosshair_angle_count: Int - crosshair_angle_sum_deg: numeric - first_bullet_hits: Int - first_bullet_shots: Int - headshot_hits: Int - hits: Int - hits_at_spotted: Int - non_awp_hits: Int - on_target_frames: Int - shots_at_spotted: Int - spray_hits: Int - spray_shots: Int - time_to_damage_count: Int - time_to_damage_sum_s: numeric - total_engagement_frames: Int -} - -""" -update columns of table "player_aim_stats_demo" -""" -enum player_aim_stats_demo_update_column { - """column name""" - attacker_steam_id - - """column name""" - counter_strafe_eligible_shots - - """column name""" - counter_strafed_shots - - """column name""" - crosshair_angle_count - - """column name""" - crosshair_angle_sum_deg - - """column name""" - first_bullet_hits - - """column name""" - first_bullet_shots - - """column name""" - headshot_hits - - """column name""" - hits - - """column name""" - hits_at_spotted - - """column name""" - match_id - - """column name""" - match_map_id - - """column name""" - non_awp_hits - - """column name""" - on_target_frames - - """column name""" - shots_at_spotted - - """column name""" - spray_hits - - """column name""" - spray_shots - - """column name""" - time_to_damage_count - - """column name""" - time_to_damage_sum_s - - """column name""" - total_engagement_frames -} - -input player_aim_stats_demo_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: player_aim_stats_demo_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_aim_stats_demo_set_input - - """filter the rows which have to be updated""" - where: player_aim_stats_demo_bool_exp! -} - -"""aggregate var_pop on columns""" -type player_aim_stats_demo_var_pop_fields { - attacker_steam_id: Float - counter_strafe_eligible_shots: Float - counter_strafed_shots: Float - crosshair_angle_count: Float - crosshair_angle_sum_deg: Float - first_bullet_hits: Float - first_bullet_shots: Float - headshot_hits: Float - hits: Float - hits_at_spotted: Float - non_awp_hits: Float - on_target_frames: Float - shots_at_spotted: Float - spray_hits: Float - spray_shots: Float - time_to_damage_count: Float - time_to_damage_sum_s: Float - total_engagement_frames: Float -} - -"""aggregate var_samp on columns""" -type player_aim_stats_demo_var_samp_fields { - attacker_steam_id: Float - counter_strafe_eligible_shots: Float - counter_strafed_shots: Float - crosshair_angle_count: Float - crosshair_angle_sum_deg: Float - first_bullet_hits: Float - first_bullet_shots: Float - headshot_hits: Float - hits: Float - hits_at_spotted: Float - non_awp_hits: Float - on_target_frames: Float - shots_at_spotted: Float - spray_hits: Float - spray_shots: Float - time_to_damage_count: Float - time_to_damage_sum_s: Float - total_engagement_frames: Float -} - -"""aggregate variance on columns""" -type player_aim_stats_demo_variance_fields { - attacker_steam_id: Float - counter_strafe_eligible_shots: Float - counter_strafed_shots: Float - crosshair_angle_count: Float - crosshair_angle_sum_deg: Float - first_bullet_hits: Float - first_bullet_shots: Float - headshot_hits: Float - hits: Float - hits_at_spotted: Float - non_awp_hits: Float - on_target_frames: Float - shots_at_spotted: Float - spray_hits: Float - spray_shots: Float - time_to_damage_count: Float - time_to_damage_sum_s: Float - total_engagement_frames: Float -} - -""" -columns and relationships of "player_aim_weapon_stats" -""" -type player_aim_weapon_stats { - first_bullet_hits: Int! - first_bullet_shots: Int! - hits: Int! - hits_spotted: Int! - - """An object relationship""" - match: matches! - match_id: uuid! - - """An object relationship""" - match_map: match_maps! - match_map_id: uuid! - - """An object relationship""" - player: players - shots: Int! - shots_spotted: Int! - steam_id: bigint! - weapon_class: String! -} - -""" -aggregated selection of "player_aim_weapon_stats" -""" -type player_aim_weapon_stats_aggregate { - aggregate: player_aim_weapon_stats_aggregate_fields - nodes: [player_aim_weapon_stats!]! -} - -input player_aim_weapon_stats_aggregate_bool_exp { - count: player_aim_weapon_stats_aggregate_bool_exp_count -} - -input player_aim_weapon_stats_aggregate_bool_exp_count { - arguments: [player_aim_weapon_stats_select_column!] - distinct: Boolean - filter: player_aim_weapon_stats_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "player_aim_weapon_stats" -""" -type player_aim_weapon_stats_aggregate_fields { - avg: player_aim_weapon_stats_avg_fields - count(columns: [player_aim_weapon_stats_select_column!], distinct: Boolean): Int! - max: player_aim_weapon_stats_max_fields - min: player_aim_weapon_stats_min_fields - stddev: player_aim_weapon_stats_stddev_fields - stddev_pop: player_aim_weapon_stats_stddev_pop_fields - stddev_samp: player_aim_weapon_stats_stddev_samp_fields - sum: player_aim_weapon_stats_sum_fields - var_pop: player_aim_weapon_stats_var_pop_fields - var_samp: player_aim_weapon_stats_var_samp_fields - variance: player_aim_weapon_stats_variance_fields -} - -""" -order by aggregate values of table "player_aim_weapon_stats" -""" -input player_aim_weapon_stats_aggregate_order_by { - avg: player_aim_weapon_stats_avg_order_by - count: order_by - max: player_aim_weapon_stats_max_order_by - min: player_aim_weapon_stats_min_order_by - stddev: player_aim_weapon_stats_stddev_order_by - stddev_pop: player_aim_weapon_stats_stddev_pop_order_by - stddev_samp: player_aim_weapon_stats_stddev_samp_order_by - sum: player_aim_weapon_stats_sum_order_by - var_pop: player_aim_weapon_stats_var_pop_order_by - var_samp: player_aim_weapon_stats_var_samp_order_by - variance: player_aim_weapon_stats_variance_order_by -} - -""" -input type for inserting array relation for remote table "player_aim_weapon_stats" -""" -input player_aim_weapon_stats_arr_rel_insert_input { - data: [player_aim_weapon_stats_insert_input!]! - - """upsert condition""" - on_conflict: player_aim_weapon_stats_on_conflict -} - -"""aggregate avg on columns""" -type player_aim_weapon_stats_avg_fields { - first_bullet_hits: Float - first_bullet_shots: Float - hits: Float - hits_spotted: Float - shots: Float - shots_spotted: Float - steam_id: Float -} - -""" -order by avg() on columns of table "player_aim_weapon_stats" -""" -input player_aim_weapon_stats_avg_order_by { - first_bullet_hits: order_by - first_bullet_shots: order_by - hits: order_by - hits_spotted: order_by - shots: order_by - shots_spotted: order_by - steam_id: order_by -} - -""" -Boolean expression to filter rows from the table "player_aim_weapon_stats". All fields are combined with a logical 'AND'. -""" -input player_aim_weapon_stats_bool_exp { - _and: [player_aim_weapon_stats_bool_exp!] - _not: player_aim_weapon_stats_bool_exp - _or: [player_aim_weapon_stats_bool_exp!] - first_bullet_hits: Int_comparison_exp - first_bullet_shots: Int_comparison_exp - hits: Int_comparison_exp - hits_spotted: Int_comparison_exp - match: matches_bool_exp - match_id: uuid_comparison_exp - match_map: match_maps_bool_exp - match_map_id: uuid_comparison_exp - player: players_bool_exp - shots: Int_comparison_exp - shots_spotted: Int_comparison_exp - steam_id: bigint_comparison_exp - weapon_class: String_comparison_exp -} - -""" -unique or primary key constraints on table "player_aim_weapon_stats" -""" -enum player_aim_weapon_stats_constraint { - """ - unique or primary key constraint on columns "steam_id", "weapon_class", "match_map_id" - """ - player_aim_weapon_stats_pkey -} - -""" -input type for incrementing numeric columns in table "player_aim_weapon_stats" -""" -input player_aim_weapon_stats_inc_input { - first_bullet_hits: Int - first_bullet_shots: Int - hits: Int - hits_spotted: Int - shots: Int - shots_spotted: Int - steam_id: bigint -} - -""" -input type for inserting data into table "player_aim_weapon_stats" -""" -input player_aim_weapon_stats_insert_input { - first_bullet_hits: Int - first_bullet_shots: Int - hits: Int - hits_spotted: Int - match: matches_obj_rel_insert_input - match_id: uuid - match_map: match_maps_obj_rel_insert_input - match_map_id: uuid - player: players_obj_rel_insert_input - shots: Int - shots_spotted: Int - steam_id: bigint - weapon_class: String -} - -"""aggregate max on columns""" -type player_aim_weapon_stats_max_fields { - first_bullet_hits: Int - first_bullet_shots: Int - hits: Int - hits_spotted: Int - match_id: uuid - match_map_id: uuid - shots: Int - shots_spotted: Int - steam_id: bigint - weapon_class: String -} - -""" -order by max() on columns of table "player_aim_weapon_stats" -""" -input player_aim_weapon_stats_max_order_by { - first_bullet_hits: order_by - first_bullet_shots: order_by - hits: order_by - hits_spotted: order_by - match_id: order_by - match_map_id: order_by - shots: order_by - shots_spotted: order_by - steam_id: order_by - weapon_class: order_by -} - -"""aggregate min on columns""" -type player_aim_weapon_stats_min_fields { - first_bullet_hits: Int - first_bullet_shots: Int - hits: Int - hits_spotted: Int - match_id: uuid - match_map_id: uuid - shots: Int - shots_spotted: Int - steam_id: bigint - weapon_class: String -} - -""" -order by min() on columns of table "player_aim_weapon_stats" -""" -input player_aim_weapon_stats_min_order_by { - first_bullet_hits: order_by - first_bullet_shots: order_by - hits: order_by - hits_spotted: order_by - match_id: order_by - match_map_id: order_by - shots: order_by - shots_spotted: order_by - steam_id: order_by - weapon_class: order_by -} - -""" -response of any mutation on the table "player_aim_weapon_stats" -""" -type player_aim_weapon_stats_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [player_aim_weapon_stats!]! -} - -""" -on_conflict condition type for table "player_aim_weapon_stats" -""" -input player_aim_weapon_stats_on_conflict { - constraint: player_aim_weapon_stats_constraint! - update_columns: [player_aim_weapon_stats_update_column!]! = [] - where: player_aim_weapon_stats_bool_exp -} - -"""Ordering options when selecting data from "player_aim_weapon_stats".""" -input player_aim_weapon_stats_order_by { - first_bullet_hits: order_by - first_bullet_shots: order_by - hits: order_by - hits_spotted: order_by - match: matches_order_by - match_id: order_by - match_map: match_maps_order_by - match_map_id: order_by - player: players_order_by - shots: order_by - shots_spotted: order_by - steam_id: order_by - weapon_class: order_by -} - -"""primary key columns input for table: player_aim_weapon_stats""" -input player_aim_weapon_stats_pk_columns_input { - match_map_id: uuid! - steam_id: bigint! - weapon_class: String! -} - -""" -select columns of table "player_aim_weapon_stats" -""" -enum player_aim_weapon_stats_select_column { - """column name""" - first_bullet_hits - - """column name""" - first_bullet_shots - - """column name""" - hits - - """column name""" - hits_spotted - - """column name""" - match_id - - """column name""" - match_map_id - - """column name""" - shots - - """column name""" - shots_spotted - - """column name""" - steam_id - - """column name""" - weapon_class -} - -""" -input type for updating data in table "player_aim_weapon_stats" -""" -input player_aim_weapon_stats_set_input { - first_bullet_hits: Int - first_bullet_shots: Int - hits: Int - hits_spotted: Int - match_id: uuid - match_map_id: uuid - shots: Int - shots_spotted: Int - steam_id: bigint - weapon_class: String -} - -"""aggregate stddev on columns""" -type player_aim_weapon_stats_stddev_fields { - first_bullet_hits: Float - first_bullet_shots: Float - hits: Float - hits_spotted: Float - shots: Float - shots_spotted: Float - steam_id: Float -} - -""" -order by stddev() on columns of table "player_aim_weapon_stats" -""" -input player_aim_weapon_stats_stddev_order_by { - first_bullet_hits: order_by - first_bullet_shots: order_by - hits: order_by - hits_spotted: order_by - shots: order_by - shots_spotted: order_by - steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type player_aim_weapon_stats_stddev_pop_fields { - first_bullet_hits: Float - first_bullet_shots: Float - hits: Float - hits_spotted: Float - shots: Float - shots_spotted: Float - steam_id: Float -} - -""" -order by stddev_pop() on columns of table "player_aim_weapon_stats" -""" -input player_aim_weapon_stats_stddev_pop_order_by { - first_bullet_hits: order_by - first_bullet_shots: order_by - hits: order_by - hits_spotted: order_by - shots: order_by - shots_spotted: order_by - steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type player_aim_weapon_stats_stddev_samp_fields { - first_bullet_hits: Float - first_bullet_shots: Float - hits: Float - hits_spotted: Float - shots: Float - shots_spotted: Float - steam_id: Float -} - -""" -order by stddev_samp() on columns of table "player_aim_weapon_stats" -""" -input player_aim_weapon_stats_stddev_samp_order_by { - first_bullet_hits: order_by - first_bullet_shots: order_by - hits: order_by - hits_spotted: order_by - shots: order_by - shots_spotted: order_by - steam_id: order_by -} - -""" -Streaming cursor of the table "player_aim_weapon_stats" -""" -input player_aim_weapon_stats_stream_cursor_input { - """Stream column input with initial value""" - initial_value: player_aim_weapon_stats_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input player_aim_weapon_stats_stream_cursor_value_input { - first_bullet_hits: Int - first_bullet_shots: Int - hits: Int - hits_spotted: Int - match_id: uuid - match_map_id: uuid - shots: Int - shots_spotted: Int - steam_id: bigint - weapon_class: String -} - -"""aggregate sum on columns""" -type player_aim_weapon_stats_sum_fields { - first_bullet_hits: Int - first_bullet_shots: Int - hits: Int - hits_spotted: Int - shots: Int - shots_spotted: Int - steam_id: bigint -} - -""" -order by sum() on columns of table "player_aim_weapon_stats" -""" -input player_aim_weapon_stats_sum_order_by { - first_bullet_hits: order_by - first_bullet_shots: order_by - hits: order_by - hits_spotted: order_by - shots: order_by - shots_spotted: order_by - steam_id: order_by -} - -""" -update columns of table "player_aim_weapon_stats" -""" -enum player_aim_weapon_stats_update_column { - """column name""" - first_bullet_hits - - """column name""" - first_bullet_shots - - """column name""" - hits - - """column name""" - hits_spotted - - """column name""" - match_id - - """column name""" - match_map_id - - """column name""" - shots - - """column name""" - shots_spotted - - """column name""" - steam_id - - """column name""" - weapon_class -} - -input player_aim_weapon_stats_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: player_aim_weapon_stats_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_aim_weapon_stats_set_input - - """filter the rows which have to be updated""" - where: player_aim_weapon_stats_bool_exp! -} - -"""aggregate var_pop on columns""" -type player_aim_weapon_stats_var_pop_fields { - first_bullet_hits: Float - first_bullet_shots: Float - hits: Float - hits_spotted: Float - shots: Float - shots_spotted: Float - steam_id: Float -} - -""" -order by var_pop() on columns of table "player_aim_weapon_stats" -""" -input player_aim_weapon_stats_var_pop_order_by { - first_bullet_hits: order_by - first_bullet_shots: order_by - hits: order_by - hits_spotted: order_by - shots: order_by - shots_spotted: order_by - steam_id: order_by -} - -"""aggregate var_samp on columns""" -type player_aim_weapon_stats_var_samp_fields { - first_bullet_hits: Float - first_bullet_shots: Float - hits: Float - hits_spotted: Float - shots: Float - shots_spotted: Float - steam_id: Float -} - -""" -order by var_samp() on columns of table "player_aim_weapon_stats" -""" -input player_aim_weapon_stats_var_samp_order_by { - first_bullet_hits: order_by - first_bullet_shots: order_by - hits: order_by - hits_spotted: order_by - shots: order_by - shots_spotted: order_by - steam_id: order_by -} - -"""aggregate variance on columns""" -type player_aim_weapon_stats_variance_fields { - first_bullet_hits: Float - first_bullet_shots: Float - hits: Float - hits_spotted: Float - shots: Float - shots_spotted: Float - steam_id: Float -} - -""" -order by variance() on columns of table "player_aim_weapon_stats" -""" -input player_aim_weapon_stats_variance_order_by { - first_bullet_hits: order_by - first_bullet_shots: order_by - hits: order_by - hits_spotted: order_by - shots: order_by - shots_spotted: order_by - steam_id: order_by -} - -""" -columns and relationships of "player_assists" -""" -type player_assists { - """An object relationship""" - attacked_player: players! - attacked_steam_id: bigint! - attacked_team: String! - attacker_steam_id: bigint! - attacker_team: String! - deleted_at: timestamptz - flash: Boolean! - - """ - A computed field, executes function "is_team_assist" - """ - is_team_assist: Boolean - - """An object relationship""" - match: matches! - match_id: uuid! - - """An object relationship""" - match_map: match_maps! - match_map_id: uuid! - - """An object relationship""" - player: players! - round: Int! - time: timestamptz! -} - -""" -aggregated selection of "player_assists" -""" -type player_assists_aggregate { - aggregate: player_assists_aggregate_fields - nodes: [player_assists!]! -} - -input player_assists_aggregate_bool_exp { - bool_and: player_assists_aggregate_bool_exp_bool_and - bool_or: player_assists_aggregate_bool_exp_bool_or - count: player_assists_aggregate_bool_exp_count -} - -input player_assists_aggregate_bool_exp_bool_and { - arguments: player_assists_select_column_player_assists_aggregate_bool_exp_bool_and_arguments_columns! - distinct: Boolean - filter: player_assists_bool_exp - predicate: Boolean_comparison_exp! -} - -input player_assists_aggregate_bool_exp_bool_or { - arguments: player_assists_select_column_player_assists_aggregate_bool_exp_bool_or_arguments_columns! - distinct: Boolean - filter: player_assists_bool_exp - predicate: Boolean_comparison_exp! -} - -input player_assists_aggregate_bool_exp_count { - arguments: [player_assists_select_column!] - distinct: Boolean - filter: player_assists_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "player_assists" -""" -type player_assists_aggregate_fields { - avg: player_assists_avg_fields - count(columns: [player_assists_select_column!], distinct: Boolean): Int! - max: player_assists_max_fields - min: player_assists_min_fields - stddev: player_assists_stddev_fields - stddev_pop: player_assists_stddev_pop_fields - stddev_samp: player_assists_stddev_samp_fields - sum: player_assists_sum_fields - var_pop: player_assists_var_pop_fields - var_samp: player_assists_var_samp_fields - variance: player_assists_variance_fields -} - -""" -order by aggregate values of table "player_assists" -""" -input player_assists_aggregate_order_by { - avg: player_assists_avg_order_by - count: order_by - max: player_assists_max_order_by - min: player_assists_min_order_by - stddev: player_assists_stddev_order_by - stddev_pop: player_assists_stddev_pop_order_by - stddev_samp: player_assists_stddev_samp_order_by - sum: player_assists_sum_order_by - var_pop: player_assists_var_pop_order_by - var_samp: player_assists_var_samp_order_by - variance: player_assists_variance_order_by -} - -""" -input type for inserting array relation for remote table "player_assists" -""" -input player_assists_arr_rel_insert_input { - data: [player_assists_insert_input!]! - - """upsert condition""" - on_conflict: player_assists_on_conflict -} - -"""aggregate avg on columns""" -type player_assists_avg_fields { - attacked_steam_id: Float - attacker_steam_id: Float - round: Float -} - -""" -order by avg() on columns of table "player_assists" -""" -input player_assists_avg_order_by { - attacked_steam_id: order_by - attacker_steam_id: order_by - round: order_by -} - -""" -Boolean expression to filter rows from the table "player_assists". All fields are combined with a logical 'AND'. -""" -input player_assists_bool_exp { - _and: [player_assists_bool_exp!] - _not: player_assists_bool_exp - _or: [player_assists_bool_exp!] - attacked_player: players_bool_exp - attacked_steam_id: bigint_comparison_exp - attacked_team: String_comparison_exp - attacker_steam_id: bigint_comparison_exp - attacker_team: String_comparison_exp - deleted_at: timestamptz_comparison_exp - flash: Boolean_comparison_exp - is_team_assist: Boolean_comparison_exp - match: matches_bool_exp - match_id: uuid_comparison_exp - match_map: match_maps_bool_exp - match_map_id: uuid_comparison_exp - player: players_bool_exp - round: Int_comparison_exp - time: timestamptz_comparison_exp -} - -""" -unique or primary key constraints on table "player_assists" -""" -enum player_assists_constraint { - """ - unique or primary key constraint on columns "attacker_steam_id", "attacked_steam_id", "time", "match_map_id" - """ - player_assists_pkey -} - -""" -input type for incrementing numeric columns in table "player_assists" -""" -input player_assists_inc_input { - attacked_steam_id: bigint - attacker_steam_id: bigint - round: Int -} - -""" -input type for inserting data into table "player_assists" -""" -input player_assists_insert_input { - attacked_player: players_obj_rel_insert_input - attacked_steam_id: bigint - attacked_team: String - attacker_steam_id: bigint - attacker_team: String - deleted_at: timestamptz - flash: Boolean - match: matches_obj_rel_insert_input - match_id: uuid - match_map: match_maps_obj_rel_insert_input - match_map_id: uuid - player: players_obj_rel_insert_input - round: Int - time: timestamptz -} - -"""aggregate max on columns""" -type player_assists_max_fields { - attacked_steam_id: bigint - attacked_team: String - attacker_steam_id: bigint - attacker_team: String - deleted_at: timestamptz - match_id: uuid - match_map_id: uuid - round: Int - time: timestamptz -} - -""" -order by max() on columns of table "player_assists" -""" -input player_assists_max_order_by { - attacked_steam_id: order_by - attacked_team: order_by - attacker_steam_id: order_by - attacker_team: order_by - deleted_at: order_by - match_id: order_by - match_map_id: order_by - round: order_by - time: order_by -} - -"""aggregate min on columns""" -type player_assists_min_fields { - attacked_steam_id: bigint - attacked_team: String - attacker_steam_id: bigint - attacker_team: String - deleted_at: timestamptz - match_id: uuid - match_map_id: uuid - round: Int - time: timestamptz -} - -""" -order by min() on columns of table "player_assists" -""" -input player_assists_min_order_by { - attacked_steam_id: order_by - attacked_team: order_by - attacker_steam_id: order_by - attacker_team: order_by - deleted_at: order_by - match_id: order_by - match_map_id: order_by - round: order_by - time: order_by -} - -""" -response of any mutation on the table "player_assists" -""" -type player_assists_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [player_assists!]! -} - -""" -on_conflict condition type for table "player_assists" -""" -input player_assists_on_conflict { - constraint: player_assists_constraint! - update_columns: [player_assists_update_column!]! = [] - where: player_assists_bool_exp -} - -"""Ordering options when selecting data from "player_assists".""" -input player_assists_order_by { - attacked_player: players_order_by - attacked_steam_id: order_by - attacked_team: order_by - attacker_steam_id: order_by - attacker_team: order_by - deleted_at: order_by - flash: order_by - is_team_assist: order_by - match: matches_order_by - match_id: order_by - match_map: match_maps_order_by - match_map_id: order_by - player: players_order_by - round: order_by - time: order_by -} - -"""primary key columns input for table: player_assists""" -input player_assists_pk_columns_input { - attacked_steam_id: bigint! - attacker_steam_id: bigint! - match_map_id: uuid! - time: timestamptz! -} - -""" -select columns of table "player_assists" -""" -enum player_assists_select_column { - """column name""" - attacked_steam_id - - """column name""" - attacked_team - - """column name""" - attacker_steam_id - - """column name""" - attacker_team - - """column name""" - deleted_at - - """column name""" - flash - - """column name""" - match_id - - """column name""" - match_map_id - - """column name""" - round - - """column name""" - time -} - -""" -select "player_assists_aggregate_bool_exp_bool_and_arguments_columns" columns of table "player_assists" -""" -enum player_assists_select_column_player_assists_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - flash -} - -""" -select "player_assists_aggregate_bool_exp_bool_or_arguments_columns" columns of table "player_assists" -""" -enum player_assists_select_column_player_assists_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - flash -} - -""" -input type for updating data in table "player_assists" -""" -input player_assists_set_input { - attacked_steam_id: bigint - attacked_team: String - attacker_steam_id: bigint - attacker_team: String - deleted_at: timestamptz - flash: Boolean - match_id: uuid - match_map_id: uuid - round: Int - time: timestamptz -} - -"""aggregate stddev on columns""" -type player_assists_stddev_fields { - attacked_steam_id: Float - attacker_steam_id: Float - round: Float -} - -""" -order by stddev() on columns of table "player_assists" -""" -input player_assists_stddev_order_by { - attacked_steam_id: order_by - attacker_steam_id: order_by - round: order_by -} - -"""aggregate stddev_pop on columns""" -type player_assists_stddev_pop_fields { - attacked_steam_id: Float - attacker_steam_id: Float - round: Float -} - -""" -order by stddev_pop() on columns of table "player_assists" -""" -input player_assists_stddev_pop_order_by { - attacked_steam_id: order_by - attacker_steam_id: order_by - round: order_by -} - -"""aggregate stddev_samp on columns""" -type player_assists_stddev_samp_fields { - attacked_steam_id: Float - attacker_steam_id: Float - round: Float -} - -""" -order by stddev_samp() on columns of table "player_assists" -""" -input player_assists_stddev_samp_order_by { - attacked_steam_id: order_by - attacker_steam_id: order_by - round: order_by -} - -""" -Streaming cursor of the table "player_assists" -""" -input player_assists_stream_cursor_input { - """Stream column input with initial value""" - initial_value: player_assists_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input player_assists_stream_cursor_value_input { - attacked_steam_id: bigint - attacked_team: String - attacker_steam_id: bigint - attacker_team: String - deleted_at: timestamptz - flash: Boolean - match_id: uuid - match_map_id: uuid - round: Int - time: timestamptz -} - -"""aggregate sum on columns""" -type player_assists_sum_fields { - attacked_steam_id: bigint - attacker_steam_id: bigint - round: Int -} - -""" -order by sum() on columns of table "player_assists" -""" -input player_assists_sum_order_by { - attacked_steam_id: order_by - attacker_steam_id: order_by - round: order_by -} - -""" -update columns of table "player_assists" -""" -enum player_assists_update_column { - """column name""" - attacked_steam_id - - """column name""" - attacked_team - - """column name""" - attacker_steam_id - - """column name""" - attacker_team - - """column name""" - deleted_at - - """column name""" - flash - - """column name""" - match_id - - """column name""" - match_map_id - - """column name""" - round - - """column name""" - time -} - -input player_assists_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: player_assists_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_assists_set_input - - """filter the rows which have to be updated""" - where: player_assists_bool_exp! -} - -"""aggregate var_pop on columns""" -type player_assists_var_pop_fields { - attacked_steam_id: Float - attacker_steam_id: Float - round: Float -} - -""" -order by var_pop() on columns of table "player_assists" -""" -input player_assists_var_pop_order_by { - attacked_steam_id: order_by - attacker_steam_id: order_by - round: order_by -} - -"""aggregate var_samp on columns""" -type player_assists_var_samp_fields { - attacked_steam_id: Float - attacker_steam_id: Float - round: Float -} - -""" -order by var_samp() on columns of table "player_assists" -""" -input player_assists_var_samp_order_by { - attacked_steam_id: order_by - attacker_steam_id: order_by - round: order_by -} - -"""aggregate variance on columns""" -type player_assists_variance_fields { - attacked_steam_id: Float - attacker_steam_id: Float - round: Float -} - -""" -order by variance() on columns of table "player_assists" -""" -input player_assists_variance_order_by { - attacked_steam_id: order_by - attacker_steam_id: order_by - round: order_by -} - -""" -columns and relationships of "player_career_stats_v" -""" -type player_career_stats_v { - accuracy: numeric - accuracy_spotted: numeric - counter_strafe_pct: numeric - crosshair_deg: numeric - enemy_blind_pr: numeric - flash_assists_pr: numeric - hs_pct: numeric - kast_pct: numeric - maps: Int - premier_rank: Int - rounds: Int - steam_id: bigint - survival_pct: numeric - time_to_damage_s: numeric - traded_death_pct: numeric - util_efficiency: numeric -} - -""" -aggregated selection of "player_career_stats_v" -""" -type player_career_stats_v_aggregate { - aggregate: player_career_stats_v_aggregate_fields - nodes: [player_career_stats_v!]! -} - -""" -aggregate fields of "player_career_stats_v" -""" -type player_career_stats_v_aggregate_fields { - avg: player_career_stats_v_avg_fields - count(columns: [player_career_stats_v_select_column!], distinct: Boolean): Int! - max: player_career_stats_v_max_fields - min: player_career_stats_v_min_fields - stddev: player_career_stats_v_stddev_fields - stddev_pop: player_career_stats_v_stddev_pop_fields - stddev_samp: player_career_stats_v_stddev_samp_fields - sum: player_career_stats_v_sum_fields - var_pop: player_career_stats_v_var_pop_fields - var_samp: player_career_stats_v_var_samp_fields - variance: player_career_stats_v_variance_fields -} - -"""aggregate avg on columns""" -type player_career_stats_v_avg_fields { - accuracy: Float - accuracy_spotted: Float - counter_strafe_pct: Float - crosshair_deg: Float - enemy_blind_pr: Float - flash_assists_pr: Float - hs_pct: Float - kast_pct: Float - maps: Float - premier_rank: Float - rounds: Float - steam_id: Float - survival_pct: Float - time_to_damage_s: Float - traded_death_pct: Float - util_efficiency: Float -} - -""" -Boolean expression to filter rows from the table "player_career_stats_v". All fields are combined with a logical 'AND'. -""" -input player_career_stats_v_bool_exp { - _and: [player_career_stats_v_bool_exp!] - _not: player_career_stats_v_bool_exp - _or: [player_career_stats_v_bool_exp!] - accuracy: numeric_comparison_exp - accuracy_spotted: numeric_comparison_exp - counter_strafe_pct: numeric_comparison_exp - crosshair_deg: numeric_comparison_exp - enemy_blind_pr: numeric_comparison_exp - flash_assists_pr: numeric_comparison_exp - hs_pct: numeric_comparison_exp - kast_pct: numeric_comparison_exp - maps: Int_comparison_exp - premier_rank: Int_comparison_exp - rounds: Int_comparison_exp - steam_id: bigint_comparison_exp - survival_pct: numeric_comparison_exp - time_to_damage_s: numeric_comparison_exp - traded_death_pct: numeric_comparison_exp - util_efficiency: numeric_comparison_exp -} - -"""aggregate max on columns""" -type player_career_stats_v_max_fields { - accuracy: numeric - accuracy_spotted: numeric - counter_strafe_pct: numeric - crosshair_deg: numeric - enemy_blind_pr: numeric - flash_assists_pr: numeric - hs_pct: numeric - kast_pct: numeric - maps: Int - premier_rank: Int - rounds: Int - steam_id: bigint - survival_pct: numeric - time_to_damage_s: numeric - traded_death_pct: numeric - util_efficiency: numeric -} - -"""aggregate min on columns""" -type player_career_stats_v_min_fields { - accuracy: numeric - accuracy_spotted: numeric - counter_strafe_pct: numeric - crosshair_deg: numeric - enemy_blind_pr: numeric - flash_assists_pr: numeric - hs_pct: numeric - kast_pct: numeric - maps: Int - premier_rank: Int - rounds: Int - steam_id: bigint - survival_pct: numeric - time_to_damage_s: numeric - traded_death_pct: numeric - util_efficiency: numeric -} - -"""Ordering options when selecting data from "player_career_stats_v".""" -input player_career_stats_v_order_by { - accuracy: order_by - accuracy_spotted: order_by - counter_strafe_pct: order_by - crosshair_deg: order_by - enemy_blind_pr: order_by - flash_assists_pr: order_by - hs_pct: order_by - kast_pct: order_by - maps: order_by - premier_rank: order_by - rounds: order_by - steam_id: order_by - survival_pct: order_by - time_to_damage_s: order_by - traded_death_pct: order_by - util_efficiency: order_by -} - -""" -select columns of table "player_career_stats_v" -""" -enum player_career_stats_v_select_column { - """column name""" - accuracy - - """column name""" - accuracy_spotted - - """column name""" - counter_strafe_pct - - """column name""" - crosshair_deg - - """column name""" - enemy_blind_pr - - """column name""" - flash_assists_pr - - """column name""" - hs_pct - - """column name""" - kast_pct - - """column name""" - maps - - """column name""" - premier_rank - - """column name""" - rounds - - """column name""" - steam_id - - """column name""" - survival_pct - - """column name""" - time_to_damage_s - - """column name""" - traded_death_pct - - """column name""" - util_efficiency -} - -"""aggregate stddev on columns""" -type player_career_stats_v_stddev_fields { - accuracy: Float - accuracy_spotted: Float - counter_strafe_pct: Float - crosshair_deg: Float - enemy_blind_pr: Float - flash_assists_pr: Float - hs_pct: Float - kast_pct: Float - maps: Float - premier_rank: Float - rounds: Float - steam_id: Float - survival_pct: Float - time_to_damage_s: Float - traded_death_pct: Float - util_efficiency: Float -} - -"""aggregate stddev_pop on columns""" -type player_career_stats_v_stddev_pop_fields { - accuracy: Float - accuracy_spotted: Float - counter_strafe_pct: Float - crosshair_deg: Float - enemy_blind_pr: Float - flash_assists_pr: Float - hs_pct: Float - kast_pct: Float - maps: Float - premier_rank: Float - rounds: Float - steam_id: Float - survival_pct: Float - time_to_damage_s: Float - traded_death_pct: Float - util_efficiency: Float -} - -"""aggregate stddev_samp on columns""" -type player_career_stats_v_stddev_samp_fields { - accuracy: Float - accuracy_spotted: Float - counter_strafe_pct: Float - crosshair_deg: Float - enemy_blind_pr: Float - flash_assists_pr: Float - hs_pct: Float - kast_pct: Float - maps: Float - premier_rank: Float - rounds: Float - steam_id: Float - survival_pct: Float - time_to_damage_s: Float - traded_death_pct: Float - util_efficiency: Float -} - -""" -Streaming cursor of the table "player_career_stats_v" -""" -input player_career_stats_v_stream_cursor_input { - """Stream column input with initial value""" - initial_value: player_career_stats_v_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input player_career_stats_v_stream_cursor_value_input { - accuracy: numeric - accuracy_spotted: numeric - counter_strafe_pct: numeric - crosshair_deg: numeric - enemy_blind_pr: numeric - flash_assists_pr: numeric - hs_pct: numeric - kast_pct: numeric - maps: Int - premier_rank: Int - rounds: Int - steam_id: bigint - survival_pct: numeric - time_to_damage_s: numeric - traded_death_pct: numeric - util_efficiency: numeric -} - -"""aggregate sum on columns""" -type player_career_stats_v_sum_fields { - accuracy: numeric - accuracy_spotted: numeric - counter_strafe_pct: numeric - crosshair_deg: numeric - enemy_blind_pr: numeric - flash_assists_pr: numeric - hs_pct: numeric - kast_pct: numeric - maps: Int - premier_rank: Int - rounds: Int - steam_id: bigint - survival_pct: numeric - time_to_damage_s: numeric - traded_death_pct: numeric - util_efficiency: numeric -} - -"""aggregate var_pop on columns""" -type player_career_stats_v_var_pop_fields { - accuracy: Float - accuracy_spotted: Float - counter_strafe_pct: Float - crosshair_deg: Float - enemy_blind_pr: Float - flash_assists_pr: Float - hs_pct: Float - kast_pct: Float - maps: Float - premier_rank: Float - rounds: Float - steam_id: Float - survival_pct: Float - time_to_damage_s: Float - traded_death_pct: Float - util_efficiency: Float -} - -"""aggregate var_samp on columns""" -type player_career_stats_v_var_samp_fields { - accuracy: Float - accuracy_spotted: Float - counter_strafe_pct: Float - crosshair_deg: Float - enemy_blind_pr: Float - flash_assists_pr: Float - hs_pct: Float - kast_pct: Float - maps: Float - premier_rank: Float - rounds: Float - steam_id: Float - survival_pct: Float - time_to_damage_s: Float - traded_death_pct: Float - util_efficiency: Float -} - -"""aggregate variance on columns""" -type player_career_stats_v_variance_fields { - accuracy: Float - accuracy_spotted: Float - counter_strafe_pct: Float - crosshair_deg: Float - enemy_blind_pr: Float - flash_assists_pr: Float - hs_pct: Float - kast_pct: Float - maps: Float - premier_rank: Float - rounds: Float - steam_id: Float - survival_pct: Float - time_to_damage_s: Float - traded_death_pct: Float - util_efficiency: Float -} - -""" -columns and relationships of "player_damages" -""" -type player_damages { - armor: Int! - attacked_location: String! - attacked_location_coordinates: String - - """An object relationship""" - attacked_player: players! - attacked_steam_id: bigint! - attacked_team: String! - attacker_location: String - attacker_location_coordinates: String - attacker_steam_id: bigint - attacker_team: String - damage: Int! - damage_armor: Int! - deleted_at: timestamptz - health: Int! - hitgroup: String! - id: uuid! - - """An object relationship""" - match: matches! - match_id: uuid! - - """An object relationship""" - match_map: match_maps! - match_map_id: uuid! - - """An object relationship""" - player: players - round: numeric! - - """ - A computed field, executes function "is_team_damage" - """ - team_damage: Boolean - time: timestamptz! - with: String -} - -""" -aggregated selection of "player_damages" -""" -type player_damages_aggregate { - aggregate: player_damages_aggregate_fields - nodes: [player_damages!]! -} - -input player_damages_aggregate_bool_exp { - count: player_damages_aggregate_bool_exp_count -} - -input player_damages_aggregate_bool_exp_count { - arguments: [player_damages_select_column!] - distinct: Boolean - filter: player_damages_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "player_damages" -""" -type player_damages_aggregate_fields { - avg: player_damages_avg_fields - count(columns: [player_damages_select_column!], distinct: Boolean): Int! - max: player_damages_max_fields - min: player_damages_min_fields - stddev: player_damages_stddev_fields - stddev_pop: player_damages_stddev_pop_fields - stddev_samp: player_damages_stddev_samp_fields - sum: player_damages_sum_fields - var_pop: player_damages_var_pop_fields - var_samp: player_damages_var_samp_fields - variance: player_damages_variance_fields -} - -""" -order by aggregate values of table "player_damages" -""" -input player_damages_aggregate_order_by { - avg: player_damages_avg_order_by - count: order_by - max: player_damages_max_order_by - min: player_damages_min_order_by - stddev: player_damages_stddev_order_by - stddev_pop: player_damages_stddev_pop_order_by - stddev_samp: player_damages_stddev_samp_order_by - sum: player_damages_sum_order_by - var_pop: player_damages_var_pop_order_by - var_samp: player_damages_var_samp_order_by - variance: player_damages_variance_order_by -} - -""" -input type for inserting array relation for remote table "player_damages" -""" -input player_damages_arr_rel_insert_input { - data: [player_damages_insert_input!]! - - """upsert condition""" - on_conflict: player_damages_on_conflict -} - -"""aggregate avg on columns""" -type player_damages_avg_fields { - armor: Float - attacked_steam_id: Float - attacker_steam_id: Float - damage: Float - damage_armor: Float - health: Float - round: Float -} - -""" -order by avg() on columns of table "player_damages" -""" -input player_damages_avg_order_by { - armor: order_by - attacked_steam_id: order_by - attacker_steam_id: order_by - damage: order_by - damage_armor: order_by - health: order_by - round: order_by -} - -""" -Boolean expression to filter rows from the table "player_damages". All fields are combined with a logical 'AND'. -""" -input player_damages_bool_exp { - _and: [player_damages_bool_exp!] - _not: player_damages_bool_exp - _or: [player_damages_bool_exp!] - armor: Int_comparison_exp - attacked_location: String_comparison_exp - attacked_location_coordinates: String_comparison_exp - attacked_player: players_bool_exp - attacked_steam_id: bigint_comparison_exp - attacked_team: String_comparison_exp - attacker_location: String_comparison_exp - attacker_location_coordinates: String_comparison_exp - attacker_steam_id: bigint_comparison_exp - attacker_team: String_comparison_exp - damage: Int_comparison_exp - damage_armor: Int_comparison_exp - deleted_at: timestamptz_comparison_exp - health: Int_comparison_exp - hitgroup: String_comparison_exp - id: uuid_comparison_exp - match: matches_bool_exp - match_id: uuid_comparison_exp - match_map: match_maps_bool_exp - match_map_id: uuid_comparison_exp - player: players_bool_exp - round: numeric_comparison_exp - team_damage: Boolean_comparison_exp - time: timestamptz_comparison_exp - with: String_comparison_exp -} - -""" -unique or primary key constraints on table "player_damages" -""" -enum player_damages_constraint { - """ - unique or primary key constraint on columns "id", "time", "match_map_id" - """ - player_damages_pkey -} - -""" -input type for incrementing numeric columns in table "player_damages" -""" -input player_damages_inc_input { - armor: Int - attacked_steam_id: bigint - attacker_steam_id: bigint - damage: Int - damage_armor: Int - health: Int - round: numeric -} - -""" -input type for inserting data into table "player_damages" -""" -input player_damages_insert_input { - armor: Int - attacked_location: String - attacked_location_coordinates: String - attacked_player: players_obj_rel_insert_input - attacked_steam_id: bigint - attacked_team: String - attacker_location: String - attacker_location_coordinates: String - attacker_steam_id: bigint - attacker_team: String - damage: Int - damage_armor: Int - deleted_at: timestamptz - health: Int - hitgroup: String - id: uuid - match: matches_obj_rel_insert_input - match_id: uuid - match_map: match_maps_obj_rel_insert_input - match_map_id: uuid - player: players_obj_rel_insert_input - round: numeric - time: timestamptz - with: String -} - -"""aggregate max on columns""" -type player_damages_max_fields { - armor: Int - attacked_location: String - attacked_location_coordinates: String - attacked_steam_id: bigint - attacked_team: String - attacker_location: String - attacker_location_coordinates: String - attacker_steam_id: bigint - attacker_team: String - damage: Int - damage_armor: Int - deleted_at: timestamptz - health: Int - hitgroup: String - id: uuid - match_id: uuid - match_map_id: uuid - round: numeric - time: timestamptz - with: String -} - -""" -order by max() on columns of table "player_damages" -""" -input player_damages_max_order_by { - armor: order_by - attacked_location: order_by - attacked_location_coordinates: order_by - attacked_steam_id: order_by - attacked_team: order_by - attacker_location: order_by - attacker_location_coordinates: order_by - attacker_steam_id: order_by - attacker_team: order_by - damage: order_by - damage_armor: order_by - deleted_at: order_by - health: order_by - hitgroup: order_by - id: order_by - match_id: order_by - match_map_id: order_by - round: order_by - time: order_by - with: order_by -} - -"""aggregate min on columns""" -type player_damages_min_fields { - armor: Int - attacked_location: String - attacked_location_coordinates: String - attacked_steam_id: bigint - attacked_team: String - attacker_location: String - attacker_location_coordinates: String - attacker_steam_id: bigint - attacker_team: String - damage: Int - damage_armor: Int - deleted_at: timestamptz - health: Int - hitgroup: String - id: uuid - match_id: uuid - match_map_id: uuid - round: numeric - time: timestamptz - with: String -} - -""" -order by min() on columns of table "player_damages" -""" -input player_damages_min_order_by { - armor: order_by - attacked_location: order_by - attacked_location_coordinates: order_by - attacked_steam_id: order_by - attacked_team: order_by - attacker_location: order_by - attacker_location_coordinates: order_by - attacker_steam_id: order_by - attacker_team: order_by - damage: order_by - damage_armor: order_by - deleted_at: order_by - health: order_by - hitgroup: order_by - id: order_by - match_id: order_by - match_map_id: order_by - round: order_by - time: order_by - with: order_by -} - -""" -response of any mutation on the table "player_damages" -""" -type player_damages_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [player_damages!]! -} - -""" -on_conflict condition type for table "player_damages" -""" -input player_damages_on_conflict { - constraint: player_damages_constraint! - update_columns: [player_damages_update_column!]! = [] - where: player_damages_bool_exp -} - -"""Ordering options when selecting data from "player_damages".""" -input player_damages_order_by { - armor: order_by - attacked_location: order_by - attacked_location_coordinates: order_by - attacked_player: players_order_by - attacked_steam_id: order_by - attacked_team: order_by - attacker_location: order_by - attacker_location_coordinates: order_by - attacker_steam_id: order_by - attacker_team: order_by - damage: order_by - damage_armor: order_by - deleted_at: order_by - health: order_by - hitgroup: order_by - id: order_by - match: matches_order_by - match_id: order_by - match_map: match_maps_order_by - match_map_id: order_by - player: players_order_by - round: order_by - team_damage: order_by - time: order_by - with: order_by -} - -"""primary key columns input for table: player_damages""" -input player_damages_pk_columns_input { - id: uuid! - match_map_id: uuid! - time: timestamptz! -} - -""" -select columns of table "player_damages" -""" -enum player_damages_select_column { - """column name""" - armor - - """column name""" - attacked_location - - """column name""" - attacked_location_coordinates - - """column name""" - attacked_steam_id - - """column name""" - attacked_team - - """column name""" - attacker_location - - """column name""" - attacker_location_coordinates - - """column name""" - attacker_steam_id - - """column name""" - attacker_team - - """column name""" - damage - - """column name""" - damage_armor - - """column name""" - deleted_at - - """column name""" - health - - """column name""" - hitgroup - - """column name""" - id - - """column name""" - match_id - - """column name""" - match_map_id - - """column name""" - round - - """column name""" - time - - """column name""" - with -} - -""" -input type for updating data in table "player_damages" -""" -input player_damages_set_input { - armor: Int - attacked_location: String - attacked_location_coordinates: String - attacked_steam_id: bigint - attacked_team: String - attacker_location: String - attacker_location_coordinates: String - attacker_steam_id: bigint - attacker_team: String - damage: Int - damage_armor: Int - deleted_at: timestamptz - health: Int - hitgroup: String - id: uuid - match_id: uuid - match_map_id: uuid - round: numeric - time: timestamptz - with: String -} - -"""aggregate stddev on columns""" -type player_damages_stddev_fields { - armor: Float - attacked_steam_id: Float - attacker_steam_id: Float - damage: Float - damage_armor: Float - health: Float - round: Float -} - -""" -order by stddev() on columns of table "player_damages" -""" -input player_damages_stddev_order_by { - armor: order_by - attacked_steam_id: order_by - attacker_steam_id: order_by - damage: order_by - damage_armor: order_by - health: order_by - round: order_by -} - -"""aggregate stddev_pop on columns""" -type player_damages_stddev_pop_fields { - armor: Float - attacked_steam_id: Float - attacker_steam_id: Float - damage: Float - damage_armor: Float - health: Float - round: Float -} - -""" -order by stddev_pop() on columns of table "player_damages" -""" -input player_damages_stddev_pop_order_by { - armor: order_by - attacked_steam_id: order_by - attacker_steam_id: order_by - damage: order_by - damage_armor: order_by - health: order_by - round: order_by -} - -"""aggregate stddev_samp on columns""" -type player_damages_stddev_samp_fields { - armor: Float - attacked_steam_id: Float - attacker_steam_id: Float - damage: Float - damage_armor: Float - health: Float - round: Float -} - -""" -order by stddev_samp() on columns of table "player_damages" -""" -input player_damages_stddev_samp_order_by { - armor: order_by - attacked_steam_id: order_by - attacker_steam_id: order_by - damage: order_by - damage_armor: order_by - health: order_by - round: order_by -} - -""" -Streaming cursor of the table "player_damages" -""" -input player_damages_stream_cursor_input { - """Stream column input with initial value""" - initial_value: player_damages_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input player_damages_stream_cursor_value_input { - armor: Int - attacked_location: String - attacked_location_coordinates: String - attacked_steam_id: bigint - attacked_team: String - attacker_location: String - attacker_location_coordinates: String - attacker_steam_id: bigint - attacker_team: String - damage: Int - damage_armor: Int - deleted_at: timestamptz - health: Int - hitgroup: String - id: uuid - match_id: uuid - match_map_id: uuid - round: numeric - time: timestamptz - with: String -} - -"""aggregate sum on columns""" -type player_damages_sum_fields { - armor: Int - attacked_steam_id: bigint - attacker_steam_id: bigint - damage: Int - damage_armor: Int - health: Int - round: numeric -} - -""" -order by sum() on columns of table "player_damages" -""" -input player_damages_sum_order_by { - armor: order_by - attacked_steam_id: order_by - attacker_steam_id: order_by - damage: order_by - damage_armor: order_by - health: order_by - round: order_by -} - -""" -update columns of table "player_damages" -""" -enum player_damages_update_column { - """column name""" - armor - - """column name""" - attacked_location - - """column name""" - attacked_location_coordinates - - """column name""" - attacked_steam_id - - """column name""" - attacked_team - - """column name""" - attacker_location - - """column name""" - attacker_location_coordinates - - """column name""" - attacker_steam_id - - """column name""" - attacker_team - - """column name""" - damage - - """column name""" - damage_armor - - """column name""" - deleted_at - - """column name""" - health - - """column name""" - hitgroup - - """column name""" - id - - """column name""" - match_id - - """column name""" - match_map_id - - """column name""" - round - - """column name""" - time - - """column name""" - with -} - -input player_damages_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: player_damages_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_damages_set_input - - """filter the rows which have to be updated""" - where: player_damages_bool_exp! -} - -"""aggregate var_pop on columns""" -type player_damages_var_pop_fields { - armor: Float - attacked_steam_id: Float - attacker_steam_id: Float - damage: Float - damage_armor: Float - health: Float - round: Float -} - -""" -order by var_pop() on columns of table "player_damages" -""" -input player_damages_var_pop_order_by { - armor: order_by - attacked_steam_id: order_by - attacker_steam_id: order_by - damage: order_by - damage_armor: order_by - health: order_by - round: order_by -} - -"""aggregate var_samp on columns""" -type player_damages_var_samp_fields { - armor: Float - attacked_steam_id: Float - attacker_steam_id: Float - damage: Float - damage_armor: Float - health: Float - round: Float -} - -""" -order by var_samp() on columns of table "player_damages" -""" -input player_damages_var_samp_order_by { - armor: order_by - attacked_steam_id: order_by - attacker_steam_id: order_by - damage: order_by - damage_armor: order_by - health: order_by - round: order_by -} - -"""aggregate variance on columns""" -type player_damages_variance_fields { - armor: Float - attacked_steam_id: Float - attacker_steam_id: Float - damage: Float - damage_armor: Float - health: Float - round: Float -} - -""" -order by variance() on columns of table "player_damages" -""" -input player_damages_variance_order_by { - armor: order_by - attacked_steam_id: order_by - attacker_steam_id: order_by - damage: order_by - damage_armor: order_by - health: order_by - round: order_by -} - -""" -columns and relationships of "player_elo" -""" -type player_elo { - actual_score: float8 - assists: Int - change: numeric! - created_at: timestamptz! - current: numeric! - damage: Int - damage_percent: float8 - deaths: Int - expected_score: float8 - impact: numeric - k_factor: Int - kda: float8 - kills: Int - map_losses: Int - map_wins: Int - - """An object relationship""" - match: matches! - match_id: uuid! - opponent_team_elo_avg: float8 - performance_multiplier: float8 - - """An object relationship""" - player: players! - player_team_elo_avg: float8 - rating_for_expected: float8 - - """An object relationship""" - season: seasons - season_id: uuid - series_multiplier: Int - steam_id: bigint! - team_avg_kda: float8 - type: e_match_types_enum! -} - -""" -aggregated selection of "player_elo" -""" -type player_elo_aggregate { - aggregate: player_elo_aggregate_fields - nodes: [player_elo!]! -} - -""" -aggregate fields of "player_elo" -""" -type player_elo_aggregate_fields { - avg: player_elo_avg_fields - count(columns: [player_elo_select_column!], distinct: Boolean): Int! - max: player_elo_max_fields - min: player_elo_min_fields - stddev: player_elo_stddev_fields - stddev_pop: player_elo_stddev_pop_fields - stddev_samp: player_elo_stddev_samp_fields - sum: player_elo_sum_fields - var_pop: player_elo_var_pop_fields - var_samp: player_elo_var_samp_fields - variance: player_elo_variance_fields -} - -"""aggregate avg on columns""" -type player_elo_avg_fields { - actual_score: Float - assists: Float - change: Float - current: Float - damage: Float - damage_percent: Float - deaths: Float - expected_score: Float - impact: Float - k_factor: Float - kda: Float - kills: Float - map_losses: Float - map_wins: Float - opponent_team_elo_avg: Float - performance_multiplier: Float - player_team_elo_avg: Float - rating_for_expected: Float - series_multiplier: Float - steam_id: Float - team_avg_kda: Float -} - -""" -Boolean expression to filter rows from the table "player_elo". All fields are combined with a logical 'AND'. -""" -input player_elo_bool_exp { - _and: [player_elo_bool_exp!] - _not: player_elo_bool_exp - _or: [player_elo_bool_exp!] - actual_score: float8_comparison_exp - assists: Int_comparison_exp - change: numeric_comparison_exp - created_at: timestamptz_comparison_exp - current: numeric_comparison_exp - damage: Int_comparison_exp - damage_percent: float8_comparison_exp - deaths: Int_comparison_exp - expected_score: float8_comparison_exp - impact: numeric_comparison_exp - k_factor: Int_comparison_exp - kda: float8_comparison_exp - kills: Int_comparison_exp - map_losses: Int_comparison_exp - map_wins: Int_comparison_exp - match: matches_bool_exp - match_id: uuid_comparison_exp - opponent_team_elo_avg: float8_comparison_exp - performance_multiplier: float8_comparison_exp - player: players_bool_exp - player_team_elo_avg: float8_comparison_exp - rating_for_expected: float8_comparison_exp - season: seasons_bool_exp - season_id: uuid_comparison_exp - series_multiplier: Int_comparison_exp - steam_id: bigint_comparison_exp - team_avg_kda: float8_comparison_exp - type: e_match_types_enum_comparison_exp -} - -""" -unique or primary key constraints on table "player_elo" -""" -enum player_elo_constraint { - """ - unique or primary key constraint on columns "steam_id", "type", "match_id" - """ - player_elo_pkey -} - -""" -input type for incrementing numeric columns in table "player_elo" -""" -input player_elo_inc_input { - actual_score: float8 - assists: Int - change: numeric - current: numeric - damage: Int - damage_percent: float8 - deaths: Int - expected_score: float8 - impact: numeric - k_factor: Int - kda: float8 - kills: Int - map_losses: Int - map_wins: Int - opponent_team_elo_avg: float8 - performance_multiplier: float8 - player_team_elo_avg: float8 - rating_for_expected: float8 - series_multiplier: Int - steam_id: bigint - team_avg_kda: float8 -} - -""" -input type for inserting data into table "player_elo" -""" -input player_elo_insert_input { - actual_score: float8 - assists: Int - change: numeric - created_at: timestamptz - current: numeric - damage: Int - damage_percent: float8 - deaths: Int - expected_score: float8 - impact: numeric - k_factor: Int - kda: float8 - kills: Int - map_losses: Int - map_wins: Int - match: matches_obj_rel_insert_input - match_id: uuid - opponent_team_elo_avg: float8 - performance_multiplier: float8 - player: players_obj_rel_insert_input - player_team_elo_avg: float8 - rating_for_expected: float8 - season: seasons_obj_rel_insert_input - season_id: uuid - series_multiplier: Int - steam_id: bigint - team_avg_kda: float8 - type: e_match_types_enum -} - -"""aggregate max on columns""" -type player_elo_max_fields { - actual_score: float8 - assists: Int - change: numeric - created_at: timestamptz - current: numeric - damage: Int - damage_percent: float8 - deaths: Int - expected_score: float8 - impact: numeric - k_factor: Int - kda: float8 - kills: Int - map_losses: Int - map_wins: Int - match_id: uuid - opponent_team_elo_avg: float8 - performance_multiplier: float8 - player_team_elo_avg: float8 - rating_for_expected: float8 - season_id: uuid - series_multiplier: Int - steam_id: bigint - team_avg_kda: float8 -} - -"""aggregate min on columns""" -type player_elo_min_fields { - actual_score: float8 - assists: Int - change: numeric - created_at: timestamptz - current: numeric - damage: Int - damage_percent: float8 - deaths: Int - expected_score: float8 - impact: numeric - k_factor: Int - kda: float8 - kills: Int - map_losses: Int - map_wins: Int - match_id: uuid - opponent_team_elo_avg: float8 - performance_multiplier: float8 - player_team_elo_avg: float8 - rating_for_expected: float8 - season_id: uuid - series_multiplier: Int - steam_id: bigint - team_avg_kda: float8 -} - -""" -response of any mutation on the table "player_elo" -""" -type player_elo_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [player_elo!]! -} - -""" -on_conflict condition type for table "player_elo" -""" -input player_elo_on_conflict { - constraint: player_elo_constraint! - update_columns: [player_elo_update_column!]! = [] - where: player_elo_bool_exp -} - -"""Ordering options when selecting data from "player_elo".""" -input player_elo_order_by { - actual_score: order_by - assists: order_by - change: order_by - created_at: order_by - current: order_by - damage: order_by - damage_percent: order_by - deaths: order_by - expected_score: order_by - impact: order_by - k_factor: order_by - kda: order_by - kills: order_by - map_losses: order_by - map_wins: order_by - match: matches_order_by - match_id: order_by - opponent_team_elo_avg: order_by - performance_multiplier: order_by - player: players_order_by - player_team_elo_avg: order_by - rating_for_expected: order_by - season: seasons_order_by - season_id: order_by - series_multiplier: order_by - steam_id: order_by - team_avg_kda: order_by - type: order_by -} - -"""primary key columns input for table: player_elo""" -input player_elo_pk_columns_input { - match_id: uuid! - steam_id: bigint! - type: e_match_types_enum! -} - -""" -select columns of table "player_elo" -""" -enum player_elo_select_column { - """column name""" - actual_score - - """column name""" - assists - - """column name""" - change - - """column name""" - created_at - - """column name""" - current - - """column name""" - damage - - """column name""" - damage_percent - - """column name""" - deaths - - """column name""" - expected_score - - """column name""" - impact - - """column name""" - k_factor - - """column name""" - kda - - """column name""" - kills - - """column name""" - map_losses - - """column name""" - map_wins - - """column name""" - match_id - - """column name""" - opponent_team_elo_avg - - """column name""" - performance_multiplier - - """column name""" - player_team_elo_avg - - """column name""" - rating_for_expected - - """column name""" - season_id - - """column name""" - series_multiplier - - """column name""" - steam_id - - """column name""" - team_avg_kda - - """column name""" - type -} - -""" -input type for updating data in table "player_elo" -""" -input player_elo_set_input { - actual_score: float8 - assists: Int - change: numeric - created_at: timestamptz - current: numeric - damage: Int - damage_percent: float8 - deaths: Int - expected_score: float8 - impact: numeric - k_factor: Int - kda: float8 - kills: Int - map_losses: Int - map_wins: Int - match_id: uuid - opponent_team_elo_avg: float8 - performance_multiplier: float8 - player_team_elo_avg: float8 - rating_for_expected: float8 - season_id: uuid - series_multiplier: Int - steam_id: bigint - team_avg_kda: float8 - type: e_match_types_enum -} - -"""aggregate stddev on columns""" -type player_elo_stddev_fields { - actual_score: Float - assists: Float - change: Float - current: Float - damage: Float - damage_percent: Float - deaths: Float - expected_score: Float - impact: Float - k_factor: Float - kda: Float - kills: Float - map_losses: Float - map_wins: Float - opponent_team_elo_avg: Float - performance_multiplier: Float - player_team_elo_avg: Float - rating_for_expected: Float - series_multiplier: Float - steam_id: Float - team_avg_kda: Float -} - -"""aggregate stddev_pop on columns""" -type player_elo_stddev_pop_fields { - actual_score: Float - assists: Float - change: Float - current: Float - damage: Float - damage_percent: Float - deaths: Float - expected_score: Float - impact: Float - k_factor: Float - kda: Float - kills: Float - map_losses: Float - map_wins: Float - opponent_team_elo_avg: Float - performance_multiplier: Float - player_team_elo_avg: Float - rating_for_expected: Float - series_multiplier: Float - steam_id: Float - team_avg_kda: Float -} - -"""aggregate stddev_samp on columns""" -type player_elo_stddev_samp_fields { - actual_score: Float - assists: Float - change: Float - current: Float - damage: Float - damage_percent: Float - deaths: Float - expected_score: Float - impact: Float - k_factor: Float - kda: Float - kills: Float - map_losses: Float - map_wins: Float - opponent_team_elo_avg: Float - performance_multiplier: Float - player_team_elo_avg: Float - rating_for_expected: Float - series_multiplier: Float - steam_id: Float - team_avg_kda: Float -} - -""" -Streaming cursor of the table "player_elo" -""" -input player_elo_stream_cursor_input { - """Stream column input with initial value""" - initial_value: player_elo_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input player_elo_stream_cursor_value_input { - actual_score: float8 - assists: Int - change: numeric - created_at: timestamptz - current: numeric - damage: Int - damage_percent: float8 - deaths: Int - expected_score: float8 - impact: numeric - k_factor: Int - kda: float8 - kills: Int - map_losses: Int - map_wins: Int - match_id: uuid - opponent_team_elo_avg: float8 - performance_multiplier: float8 - player_team_elo_avg: float8 - rating_for_expected: float8 - season_id: uuid - series_multiplier: Int - steam_id: bigint - team_avg_kda: float8 - type: e_match_types_enum -} - -"""aggregate sum on columns""" -type player_elo_sum_fields { - actual_score: float8 - assists: Int - change: numeric - current: numeric - damage: Int - damage_percent: float8 - deaths: Int - expected_score: float8 - impact: numeric - k_factor: Int - kda: float8 - kills: Int - map_losses: Int - map_wins: Int - opponent_team_elo_avg: float8 - performance_multiplier: float8 - player_team_elo_avg: float8 - rating_for_expected: float8 - series_multiplier: Int - steam_id: bigint - team_avg_kda: float8 -} - -""" -update columns of table "player_elo" -""" -enum player_elo_update_column { - """column name""" - actual_score - - """column name""" - assists - - """column name""" - change - - """column name""" - created_at - - """column name""" - current - - """column name""" - damage - - """column name""" - damage_percent - - """column name""" - deaths - - """column name""" - expected_score - - """column name""" - impact - - """column name""" - k_factor - - """column name""" - kda - - """column name""" - kills - - """column name""" - map_losses - - """column name""" - map_wins - - """column name""" - match_id - - """column name""" - opponent_team_elo_avg - - """column name""" - performance_multiplier - - """column name""" - player_team_elo_avg - - """column name""" - rating_for_expected - - """column name""" - season_id - - """column name""" - series_multiplier - - """column name""" - steam_id - - """column name""" - team_avg_kda - - """column name""" - type -} - -input player_elo_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: player_elo_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_elo_set_input - - """filter the rows which have to be updated""" - where: player_elo_bool_exp! -} - -"""aggregate var_pop on columns""" -type player_elo_var_pop_fields { - actual_score: Float - assists: Float - change: Float - current: Float - damage: Float - damage_percent: Float - deaths: Float - expected_score: Float - impact: Float - k_factor: Float - kda: Float - kills: Float - map_losses: Float - map_wins: Float - opponent_team_elo_avg: Float - performance_multiplier: Float - player_team_elo_avg: Float - rating_for_expected: Float - series_multiplier: Float - steam_id: Float - team_avg_kda: Float -} - -"""aggregate var_samp on columns""" -type player_elo_var_samp_fields { - actual_score: Float - assists: Float - change: Float - current: Float - damage: Float - damage_percent: Float - deaths: Float - expected_score: Float - impact: Float - k_factor: Float - kda: Float - kills: Float - map_losses: Float - map_wins: Float - opponent_team_elo_avg: Float - performance_multiplier: Float - player_team_elo_avg: Float - rating_for_expected: Float - series_multiplier: Float - steam_id: Float - team_avg_kda: Float -} - -"""aggregate variance on columns""" -type player_elo_variance_fields { - actual_score: Float - assists: Float - change: Float - current: Float - damage: Float - damage_percent: Float - deaths: Float - expected_score: Float - impact: Float - k_factor: Float - kda: Float - kills: Float - map_losses: Float - map_wins: Float - opponent_team_elo_avg: Float - performance_multiplier: Float - player_team_elo_avg: Float - rating_for_expected: Float - series_multiplier: Float - steam_id: Float - team_avg_kda: Float -} - -""" -columns and relationships of "player_faceit_rank_history" -""" -type player_faceit_rank_history { - elo: Int - id: uuid! - - """An object relationship""" - match: matches! - match_id: uuid! - observed_at: timestamptz! - - """An object relationship""" - player: players! - previous_rank: Int - skill_level: Int! - steam_id: bigint! -} - -""" -aggregated selection of "player_faceit_rank_history" -""" -type player_faceit_rank_history_aggregate { - aggregate: player_faceit_rank_history_aggregate_fields - nodes: [player_faceit_rank_history!]! -} - -input player_faceit_rank_history_aggregate_bool_exp { - count: player_faceit_rank_history_aggregate_bool_exp_count -} - -input player_faceit_rank_history_aggregate_bool_exp_count { - arguments: [player_faceit_rank_history_select_column!] - distinct: Boolean - filter: player_faceit_rank_history_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "player_faceit_rank_history" -""" -type player_faceit_rank_history_aggregate_fields { - avg: player_faceit_rank_history_avg_fields - count(columns: [player_faceit_rank_history_select_column!], distinct: Boolean): Int! - max: player_faceit_rank_history_max_fields - min: player_faceit_rank_history_min_fields - stddev: player_faceit_rank_history_stddev_fields - stddev_pop: player_faceit_rank_history_stddev_pop_fields - stddev_samp: player_faceit_rank_history_stddev_samp_fields - sum: player_faceit_rank_history_sum_fields - var_pop: player_faceit_rank_history_var_pop_fields - var_samp: player_faceit_rank_history_var_samp_fields - variance: player_faceit_rank_history_variance_fields -} - -""" -order by aggregate values of table "player_faceit_rank_history" -""" -input player_faceit_rank_history_aggregate_order_by { - avg: player_faceit_rank_history_avg_order_by - count: order_by - max: player_faceit_rank_history_max_order_by - min: player_faceit_rank_history_min_order_by - stddev: player_faceit_rank_history_stddev_order_by - stddev_pop: player_faceit_rank_history_stddev_pop_order_by - stddev_samp: player_faceit_rank_history_stddev_samp_order_by - sum: player_faceit_rank_history_sum_order_by - var_pop: player_faceit_rank_history_var_pop_order_by - var_samp: player_faceit_rank_history_var_samp_order_by - variance: player_faceit_rank_history_variance_order_by -} - -""" -input type for inserting array relation for remote table "player_faceit_rank_history" -""" -input player_faceit_rank_history_arr_rel_insert_input { - data: [player_faceit_rank_history_insert_input!]! - - """upsert condition""" - on_conflict: player_faceit_rank_history_on_conflict -} - -"""aggregate avg on columns""" -type player_faceit_rank_history_avg_fields { - elo: Float - previous_rank: Float - skill_level: Float - steam_id: Float -} - -""" -order by avg() on columns of table "player_faceit_rank_history" -""" -input player_faceit_rank_history_avg_order_by { - elo: order_by - previous_rank: order_by - skill_level: order_by - steam_id: order_by -} - -""" -Boolean expression to filter rows from the table "player_faceit_rank_history". All fields are combined with a logical 'AND'. -""" -input player_faceit_rank_history_bool_exp { - _and: [player_faceit_rank_history_bool_exp!] - _not: player_faceit_rank_history_bool_exp - _or: [player_faceit_rank_history_bool_exp!] - elo: Int_comparison_exp - id: uuid_comparison_exp - match: matches_bool_exp - match_id: uuid_comparison_exp - observed_at: timestamptz_comparison_exp - player: players_bool_exp - previous_rank: Int_comparison_exp - skill_level: Int_comparison_exp - steam_id: bigint_comparison_exp -} - -""" -unique or primary key constraints on table "player_faceit_rank_history" -""" -enum player_faceit_rank_history_constraint { - """ - unique or primary key constraint on columns "id" - """ - player_faceit_rank_history_pkey - - """ - unique or primary key constraint on columns "steam_id", "match_id" - """ - uq_player_faceit_rank_history_steam_match -} - -""" -input type for incrementing numeric columns in table "player_faceit_rank_history" -""" -input player_faceit_rank_history_inc_input { - elo: Int - previous_rank: Int - skill_level: Int - steam_id: bigint -} - -""" -input type for inserting data into table "player_faceit_rank_history" -""" -input player_faceit_rank_history_insert_input { - elo: Int - id: uuid - match: matches_obj_rel_insert_input - match_id: uuid - observed_at: timestamptz - player: players_obj_rel_insert_input - previous_rank: Int - skill_level: Int - steam_id: bigint -} - -"""aggregate max on columns""" -type player_faceit_rank_history_max_fields { - elo: Int - id: uuid - match_id: uuid - observed_at: timestamptz - previous_rank: Int - skill_level: Int - steam_id: bigint -} - -""" -order by max() on columns of table "player_faceit_rank_history" -""" -input player_faceit_rank_history_max_order_by { - elo: order_by - id: order_by - match_id: order_by - observed_at: order_by - previous_rank: order_by - skill_level: order_by - steam_id: order_by -} - -"""aggregate min on columns""" -type player_faceit_rank_history_min_fields { - elo: Int - id: uuid - match_id: uuid - observed_at: timestamptz - previous_rank: Int - skill_level: Int - steam_id: bigint -} - -""" -order by min() on columns of table "player_faceit_rank_history" -""" -input player_faceit_rank_history_min_order_by { - elo: order_by - id: order_by - match_id: order_by - observed_at: order_by - previous_rank: order_by - skill_level: order_by - steam_id: order_by -} - -""" -response of any mutation on the table "player_faceit_rank_history" -""" -type player_faceit_rank_history_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [player_faceit_rank_history!]! -} - -""" -on_conflict condition type for table "player_faceit_rank_history" -""" -input player_faceit_rank_history_on_conflict { - constraint: player_faceit_rank_history_constraint! - update_columns: [player_faceit_rank_history_update_column!]! = [] - where: player_faceit_rank_history_bool_exp -} - -""" -Ordering options when selecting data from "player_faceit_rank_history". -""" -input player_faceit_rank_history_order_by { - elo: order_by - id: order_by - match: matches_order_by - match_id: order_by - observed_at: order_by - player: players_order_by - previous_rank: order_by - skill_level: order_by - steam_id: order_by -} - -"""primary key columns input for table: player_faceit_rank_history""" -input player_faceit_rank_history_pk_columns_input { - id: uuid! -} - -""" -select columns of table "player_faceit_rank_history" -""" -enum player_faceit_rank_history_select_column { - """column name""" - elo - - """column name""" - id - - """column name""" - match_id - - """column name""" - observed_at - - """column name""" - previous_rank - - """column name""" - skill_level - - """column name""" - steam_id -} - -""" -input type for updating data in table "player_faceit_rank_history" -""" -input player_faceit_rank_history_set_input { - elo: Int - id: uuid - match_id: uuid - observed_at: timestamptz - previous_rank: Int - skill_level: Int - steam_id: bigint -} - -"""aggregate stddev on columns""" -type player_faceit_rank_history_stddev_fields { - elo: Float - previous_rank: Float - skill_level: Float - steam_id: Float -} - -""" -order by stddev() on columns of table "player_faceit_rank_history" -""" -input player_faceit_rank_history_stddev_order_by { - elo: order_by - previous_rank: order_by - skill_level: order_by - steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type player_faceit_rank_history_stddev_pop_fields { - elo: Float - previous_rank: Float - skill_level: Float - steam_id: Float -} - -""" -order by stddev_pop() on columns of table "player_faceit_rank_history" -""" -input player_faceit_rank_history_stddev_pop_order_by { - elo: order_by - previous_rank: order_by - skill_level: order_by - steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type player_faceit_rank_history_stddev_samp_fields { - elo: Float - previous_rank: Float - skill_level: Float - steam_id: Float -} - -""" -order by stddev_samp() on columns of table "player_faceit_rank_history" -""" -input player_faceit_rank_history_stddev_samp_order_by { - elo: order_by - previous_rank: order_by - skill_level: order_by - steam_id: order_by -} - -""" -Streaming cursor of the table "player_faceit_rank_history" -""" -input player_faceit_rank_history_stream_cursor_input { - """Stream column input with initial value""" - initial_value: player_faceit_rank_history_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input player_faceit_rank_history_stream_cursor_value_input { - elo: Int - id: uuid - match_id: uuid - observed_at: timestamptz - previous_rank: Int - skill_level: Int - steam_id: bigint -} - -"""aggregate sum on columns""" -type player_faceit_rank_history_sum_fields { - elo: Int - previous_rank: Int - skill_level: Int - steam_id: bigint -} - -""" -order by sum() on columns of table "player_faceit_rank_history" -""" -input player_faceit_rank_history_sum_order_by { - elo: order_by - previous_rank: order_by - skill_level: order_by - steam_id: order_by -} - -""" -update columns of table "player_faceit_rank_history" -""" -enum player_faceit_rank_history_update_column { - """column name""" - elo - - """column name""" - id - - """column name""" - match_id - - """column name""" - observed_at - - """column name""" - previous_rank - - """column name""" - skill_level - - """column name""" - steam_id -} - -input player_faceit_rank_history_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: player_faceit_rank_history_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_faceit_rank_history_set_input - - """filter the rows which have to be updated""" - where: player_faceit_rank_history_bool_exp! -} - -"""aggregate var_pop on columns""" -type player_faceit_rank_history_var_pop_fields { - elo: Float - previous_rank: Float - skill_level: Float - steam_id: Float -} - -""" -order by var_pop() on columns of table "player_faceit_rank_history" -""" -input player_faceit_rank_history_var_pop_order_by { - elo: order_by - previous_rank: order_by - skill_level: order_by - steam_id: order_by -} - -"""aggregate var_samp on columns""" -type player_faceit_rank_history_var_samp_fields { - elo: Float - previous_rank: Float - skill_level: Float - steam_id: Float -} - -""" -order by var_samp() on columns of table "player_faceit_rank_history" -""" -input player_faceit_rank_history_var_samp_order_by { - elo: order_by - previous_rank: order_by - skill_level: order_by - steam_id: order_by -} - -"""aggregate variance on columns""" -type player_faceit_rank_history_variance_fields { - elo: Float - previous_rank: Float - skill_level: Float - steam_id: Float -} - -""" -order by variance() on columns of table "player_faceit_rank_history" -""" -input player_faceit_rank_history_variance_order_by { - elo: order_by - previous_rank: order_by - skill_level: order_by - steam_id: order_by -} - -""" -columns and relationships of "player_flashes" -""" -type player_flashes { - attacked_steam_id: bigint! - attacker_steam_id: bigint! - - """An object relationship""" - blinded: players! - deleted_at: timestamptz - duration: numeric! - - """An object relationship""" - match: matches! - match_id: uuid! - - """An object relationship""" - match_map: match_maps! - match_map_id: uuid! - round: Int! - team_flash: Boolean! - - """An object relationship""" - thrown_by: players! - time: timestamptz! -} - -""" -aggregated selection of "player_flashes" -""" -type player_flashes_aggregate { - aggregate: player_flashes_aggregate_fields - nodes: [player_flashes!]! -} - -input player_flashes_aggregate_bool_exp { - bool_and: player_flashes_aggregate_bool_exp_bool_and - bool_or: player_flashes_aggregate_bool_exp_bool_or - count: player_flashes_aggregate_bool_exp_count -} - -input player_flashes_aggregate_bool_exp_bool_and { - arguments: player_flashes_select_column_player_flashes_aggregate_bool_exp_bool_and_arguments_columns! - distinct: Boolean - filter: player_flashes_bool_exp - predicate: Boolean_comparison_exp! -} - -input player_flashes_aggregate_bool_exp_bool_or { - arguments: player_flashes_select_column_player_flashes_aggregate_bool_exp_bool_or_arguments_columns! - distinct: Boolean - filter: player_flashes_bool_exp - predicate: Boolean_comparison_exp! -} - -input player_flashes_aggregate_bool_exp_count { - arguments: [player_flashes_select_column!] - distinct: Boolean - filter: player_flashes_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "player_flashes" -""" -type player_flashes_aggregate_fields { - avg: player_flashes_avg_fields - count(columns: [player_flashes_select_column!], distinct: Boolean): Int! - max: player_flashes_max_fields - min: player_flashes_min_fields - stddev: player_flashes_stddev_fields - stddev_pop: player_flashes_stddev_pop_fields - stddev_samp: player_flashes_stddev_samp_fields - sum: player_flashes_sum_fields - var_pop: player_flashes_var_pop_fields - var_samp: player_flashes_var_samp_fields - variance: player_flashes_variance_fields -} - -""" -order by aggregate values of table "player_flashes" -""" -input player_flashes_aggregate_order_by { - avg: player_flashes_avg_order_by - count: order_by - max: player_flashes_max_order_by - min: player_flashes_min_order_by - stddev: player_flashes_stddev_order_by - stddev_pop: player_flashes_stddev_pop_order_by - stddev_samp: player_flashes_stddev_samp_order_by - sum: player_flashes_sum_order_by - var_pop: player_flashes_var_pop_order_by - var_samp: player_flashes_var_samp_order_by - variance: player_flashes_variance_order_by -} - -""" -input type for inserting array relation for remote table "player_flashes" -""" -input player_flashes_arr_rel_insert_input { - data: [player_flashes_insert_input!]! - - """upsert condition""" - on_conflict: player_flashes_on_conflict -} - -"""aggregate avg on columns""" -type player_flashes_avg_fields { - attacked_steam_id: Float - attacker_steam_id: Float - duration: Float - round: Float -} - -""" -order by avg() on columns of table "player_flashes" -""" -input player_flashes_avg_order_by { - attacked_steam_id: order_by - attacker_steam_id: order_by - duration: order_by - round: order_by -} - -""" -Boolean expression to filter rows from the table "player_flashes". All fields are combined with a logical 'AND'. -""" -input player_flashes_bool_exp { - _and: [player_flashes_bool_exp!] - _not: player_flashes_bool_exp - _or: [player_flashes_bool_exp!] - attacked_steam_id: bigint_comparison_exp - attacker_steam_id: bigint_comparison_exp - blinded: players_bool_exp - deleted_at: timestamptz_comparison_exp - duration: numeric_comparison_exp - match: matches_bool_exp - match_id: uuid_comparison_exp - match_map: match_maps_bool_exp - match_map_id: uuid_comparison_exp - round: Int_comparison_exp - team_flash: Boolean_comparison_exp - thrown_by: players_bool_exp - time: timestamptz_comparison_exp -} - -""" -unique or primary key constraints on table "player_flashes" -""" -enum player_flashes_constraint { - """ - unique or primary key constraint on columns "attacker_steam_id", "attacked_steam_id", "time", "match_map_id" - """ - player_flashes_pkey -} - -""" -input type for incrementing numeric columns in table "player_flashes" -""" -input player_flashes_inc_input { - attacked_steam_id: bigint - attacker_steam_id: bigint - duration: numeric - round: Int -} - -""" -input type for inserting data into table "player_flashes" -""" -input player_flashes_insert_input { - attacked_steam_id: bigint - attacker_steam_id: bigint - blinded: players_obj_rel_insert_input - deleted_at: timestamptz - duration: numeric - match: matches_obj_rel_insert_input - match_id: uuid - match_map: match_maps_obj_rel_insert_input - match_map_id: uuid - round: Int - team_flash: Boolean - thrown_by: players_obj_rel_insert_input - time: timestamptz -} - -"""aggregate max on columns""" -type player_flashes_max_fields { - attacked_steam_id: bigint - attacker_steam_id: bigint - deleted_at: timestamptz - duration: numeric - match_id: uuid - match_map_id: uuid - round: Int - time: timestamptz -} - -""" -order by max() on columns of table "player_flashes" -""" -input player_flashes_max_order_by { - attacked_steam_id: order_by - attacker_steam_id: order_by - deleted_at: order_by - duration: order_by - match_id: order_by - match_map_id: order_by - round: order_by - time: order_by -} - -"""aggregate min on columns""" -type player_flashes_min_fields { - attacked_steam_id: bigint - attacker_steam_id: bigint - deleted_at: timestamptz - duration: numeric - match_id: uuid - match_map_id: uuid - round: Int - time: timestamptz -} - -""" -order by min() on columns of table "player_flashes" -""" -input player_flashes_min_order_by { - attacked_steam_id: order_by - attacker_steam_id: order_by - deleted_at: order_by - duration: order_by - match_id: order_by - match_map_id: order_by - round: order_by - time: order_by -} - -""" -response of any mutation on the table "player_flashes" -""" -type player_flashes_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [player_flashes!]! -} - -""" -on_conflict condition type for table "player_flashes" -""" -input player_flashes_on_conflict { - constraint: player_flashes_constraint! - update_columns: [player_flashes_update_column!]! = [] - where: player_flashes_bool_exp -} - -"""Ordering options when selecting data from "player_flashes".""" -input player_flashes_order_by { - attacked_steam_id: order_by - attacker_steam_id: order_by - blinded: players_order_by - deleted_at: order_by - duration: order_by - match: matches_order_by - match_id: order_by - match_map: match_maps_order_by - match_map_id: order_by - round: order_by - team_flash: order_by - thrown_by: players_order_by - time: order_by -} - -"""primary key columns input for table: player_flashes""" -input player_flashes_pk_columns_input { - attacked_steam_id: bigint! - attacker_steam_id: bigint! - match_map_id: uuid! - time: timestamptz! -} - -""" -select columns of table "player_flashes" -""" -enum player_flashes_select_column { - """column name""" - attacked_steam_id - - """column name""" - attacker_steam_id - - """column name""" - deleted_at - - """column name""" - duration - - """column name""" - match_id - - """column name""" - match_map_id - - """column name""" - round - - """column name""" - team_flash - - """column name""" - time -} - -""" -select "player_flashes_aggregate_bool_exp_bool_and_arguments_columns" columns of table "player_flashes" -""" -enum player_flashes_select_column_player_flashes_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - team_flash -} - -""" -select "player_flashes_aggregate_bool_exp_bool_or_arguments_columns" columns of table "player_flashes" -""" -enum player_flashes_select_column_player_flashes_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - team_flash -} - -""" -input type for updating data in table "player_flashes" -""" -input player_flashes_set_input { - attacked_steam_id: bigint - attacker_steam_id: bigint - deleted_at: timestamptz - duration: numeric - match_id: uuid - match_map_id: uuid - round: Int - team_flash: Boolean - time: timestamptz -} - -"""aggregate stddev on columns""" -type player_flashes_stddev_fields { - attacked_steam_id: Float - attacker_steam_id: Float - duration: Float - round: Float -} - -""" -order by stddev() on columns of table "player_flashes" -""" -input player_flashes_stddev_order_by { - attacked_steam_id: order_by - attacker_steam_id: order_by - duration: order_by - round: order_by -} - -"""aggregate stddev_pop on columns""" -type player_flashes_stddev_pop_fields { - attacked_steam_id: Float - attacker_steam_id: Float - duration: Float - round: Float -} - -""" -order by stddev_pop() on columns of table "player_flashes" -""" -input player_flashes_stddev_pop_order_by { - attacked_steam_id: order_by - attacker_steam_id: order_by - duration: order_by - round: order_by -} - -"""aggregate stddev_samp on columns""" -type player_flashes_stddev_samp_fields { - attacked_steam_id: Float - attacker_steam_id: Float - duration: Float - round: Float -} - -""" -order by stddev_samp() on columns of table "player_flashes" -""" -input player_flashes_stddev_samp_order_by { - attacked_steam_id: order_by - attacker_steam_id: order_by - duration: order_by - round: order_by -} - -""" -Streaming cursor of the table "player_flashes" -""" -input player_flashes_stream_cursor_input { - """Stream column input with initial value""" - initial_value: player_flashes_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input player_flashes_stream_cursor_value_input { - attacked_steam_id: bigint - attacker_steam_id: bigint - deleted_at: timestamptz - duration: numeric - match_id: uuid - match_map_id: uuid - round: Int - team_flash: Boolean - time: timestamptz -} - -"""aggregate sum on columns""" -type player_flashes_sum_fields { - attacked_steam_id: bigint - attacker_steam_id: bigint - duration: numeric - round: Int -} - -""" -order by sum() on columns of table "player_flashes" -""" -input player_flashes_sum_order_by { - attacked_steam_id: order_by - attacker_steam_id: order_by - duration: order_by - round: order_by -} - -""" -update columns of table "player_flashes" -""" -enum player_flashes_update_column { - """column name""" - attacked_steam_id - - """column name""" - attacker_steam_id - - """column name""" - deleted_at - - """column name""" - duration - - """column name""" - match_id - - """column name""" - match_map_id - - """column name""" - round - - """column name""" - team_flash - - """column name""" - time -} - -input player_flashes_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: player_flashes_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_flashes_set_input - - """filter the rows which have to be updated""" - where: player_flashes_bool_exp! -} - -"""aggregate var_pop on columns""" -type player_flashes_var_pop_fields { - attacked_steam_id: Float - attacker_steam_id: Float - duration: Float - round: Float -} - -""" -order by var_pop() on columns of table "player_flashes" -""" -input player_flashes_var_pop_order_by { - attacked_steam_id: order_by - attacker_steam_id: order_by - duration: order_by - round: order_by -} - -"""aggregate var_samp on columns""" -type player_flashes_var_samp_fields { - attacked_steam_id: Float - attacker_steam_id: Float - duration: Float - round: Float -} - -""" -order by var_samp() on columns of table "player_flashes" -""" -input player_flashes_var_samp_order_by { - attacked_steam_id: order_by - attacker_steam_id: order_by - duration: order_by - round: order_by -} - -"""aggregate variance on columns""" -type player_flashes_variance_fields { - attacked_steam_id: Float - attacker_steam_id: Float - duration: Float - round: Float -} - -""" -order by variance() on columns of table "player_flashes" -""" -input player_flashes_variance_order_by { - attacked_steam_id: order_by - attacker_steam_id: order_by - duration: order_by - round: order_by -} - -""" -columns and relationships of "player_kills" -""" -type player_kills { - assisted: Boolean! - attacked_location: String! - attacked_location_coordinates: String - - """An object relationship""" - attacked_player: players! - attacked_steam_id: bigint! - attacked_team: String! - attacker_location: String - attacker_location_coordinates: String - attacker_steam_id: bigint! - attacker_team: String - blinded: Boolean! - deleted_at: timestamptz - headshot: Boolean! - hitgroup: String! - in_air: Boolean! - - """ - A computed field, executes function "is_suicide" - """ - is_suicide: Boolean - - """An object relationship""" - match: matches! - match_id: uuid! - - """An object relationship""" - match_map: match_maps! - match_map_id: uuid! - no_scope: Boolean! - - """An object relationship""" - player: players! - round: Int! - - """ - A computed field, executes function "is_team_kill" - """ - team_kill: Boolean - thru_smoke: Boolean! - thru_wall: Boolean! - time: timestamptz! - with: String -} - -""" -aggregated selection of "player_kills" -""" -type player_kills_aggregate { - aggregate: player_kills_aggregate_fields - nodes: [player_kills!]! -} - -input player_kills_aggregate_bool_exp { - bool_and: player_kills_aggregate_bool_exp_bool_and - bool_or: player_kills_aggregate_bool_exp_bool_or - count: player_kills_aggregate_bool_exp_count -} - -input player_kills_aggregate_bool_exp_bool_and { - arguments: player_kills_select_column_player_kills_aggregate_bool_exp_bool_and_arguments_columns! - distinct: Boolean - filter: player_kills_bool_exp - predicate: Boolean_comparison_exp! -} - -input player_kills_aggregate_bool_exp_bool_or { - arguments: player_kills_select_column_player_kills_aggregate_bool_exp_bool_or_arguments_columns! - distinct: Boolean - filter: player_kills_bool_exp - predicate: Boolean_comparison_exp! -} - -input player_kills_aggregate_bool_exp_count { - arguments: [player_kills_select_column!] - distinct: Boolean - filter: player_kills_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "player_kills" -""" -type player_kills_aggregate_fields { - avg: player_kills_avg_fields - count(columns: [player_kills_select_column!], distinct: Boolean): Int! - max: player_kills_max_fields - min: player_kills_min_fields - stddev: player_kills_stddev_fields - stddev_pop: player_kills_stddev_pop_fields - stddev_samp: player_kills_stddev_samp_fields - sum: player_kills_sum_fields - var_pop: player_kills_var_pop_fields - var_samp: player_kills_var_samp_fields - variance: player_kills_variance_fields -} - -""" -order by aggregate values of table "player_kills" -""" -input player_kills_aggregate_order_by { - avg: player_kills_avg_order_by - count: order_by - max: player_kills_max_order_by - min: player_kills_min_order_by - stddev: player_kills_stddev_order_by - stddev_pop: player_kills_stddev_pop_order_by - stddev_samp: player_kills_stddev_samp_order_by - sum: player_kills_sum_order_by - var_pop: player_kills_var_pop_order_by - var_samp: player_kills_var_samp_order_by - variance: player_kills_variance_order_by -} - -""" -input type for inserting array relation for remote table "player_kills" -""" -input player_kills_arr_rel_insert_input { - data: [player_kills_insert_input!]! - - """upsert condition""" - on_conflict: player_kills_on_conflict -} - -"""aggregate avg on columns""" -type player_kills_avg_fields { - attacked_steam_id: Float - attacker_steam_id: Float - round: Float -} - -""" -order by avg() on columns of table "player_kills" -""" -input player_kills_avg_order_by { - attacked_steam_id: order_by - attacker_steam_id: order_by - round: order_by -} - -""" -Boolean expression to filter rows from the table "player_kills". All fields are combined with a logical 'AND'. -""" -input player_kills_bool_exp { - _and: [player_kills_bool_exp!] - _not: player_kills_bool_exp - _or: [player_kills_bool_exp!] - assisted: Boolean_comparison_exp - attacked_location: String_comparison_exp - attacked_location_coordinates: String_comparison_exp - attacked_player: players_bool_exp - attacked_steam_id: bigint_comparison_exp - attacked_team: String_comparison_exp - attacker_location: String_comparison_exp - attacker_location_coordinates: String_comparison_exp - attacker_steam_id: bigint_comparison_exp - attacker_team: String_comparison_exp - blinded: Boolean_comparison_exp - deleted_at: timestamptz_comparison_exp - headshot: Boolean_comparison_exp - hitgroup: String_comparison_exp - in_air: Boolean_comparison_exp - is_suicide: Boolean_comparison_exp - match: matches_bool_exp - match_id: uuid_comparison_exp - match_map: match_maps_bool_exp - match_map_id: uuid_comparison_exp - no_scope: Boolean_comparison_exp - player: players_bool_exp - round: Int_comparison_exp - team_kill: Boolean_comparison_exp - thru_smoke: Boolean_comparison_exp - thru_wall: Boolean_comparison_exp - time: timestamptz_comparison_exp - with: String_comparison_exp -} - -""" -columns and relationships of "player_kills_by_weapon" -""" -type player_kills_by_weapon { - kill_count: bigint! - - """An object relationship""" - player: players! - player_steam_id: bigint! - with: String! -} - -""" -aggregated selection of "player_kills_by_weapon" -""" -type player_kills_by_weapon_aggregate { - aggregate: player_kills_by_weapon_aggregate_fields - nodes: [player_kills_by_weapon!]! -} - -input player_kills_by_weapon_aggregate_bool_exp { - count: player_kills_by_weapon_aggregate_bool_exp_count -} - -input player_kills_by_weapon_aggregate_bool_exp_count { - arguments: [player_kills_by_weapon_select_column!] - distinct: Boolean - filter: player_kills_by_weapon_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "player_kills_by_weapon" -""" -type player_kills_by_weapon_aggregate_fields { - avg: player_kills_by_weapon_avg_fields - count(columns: [player_kills_by_weapon_select_column!], distinct: Boolean): Int! - max: player_kills_by_weapon_max_fields - min: player_kills_by_weapon_min_fields - stddev: player_kills_by_weapon_stddev_fields - stddev_pop: player_kills_by_weapon_stddev_pop_fields - stddev_samp: player_kills_by_weapon_stddev_samp_fields - sum: player_kills_by_weapon_sum_fields - var_pop: player_kills_by_weapon_var_pop_fields - var_samp: player_kills_by_weapon_var_samp_fields - variance: player_kills_by_weapon_variance_fields -} - -""" -order by aggregate values of table "player_kills_by_weapon" -""" -input player_kills_by_weapon_aggregate_order_by { - avg: player_kills_by_weapon_avg_order_by - count: order_by - max: player_kills_by_weapon_max_order_by - min: player_kills_by_weapon_min_order_by - stddev: player_kills_by_weapon_stddev_order_by - stddev_pop: player_kills_by_weapon_stddev_pop_order_by - stddev_samp: player_kills_by_weapon_stddev_samp_order_by - sum: player_kills_by_weapon_sum_order_by - var_pop: player_kills_by_weapon_var_pop_order_by - var_samp: player_kills_by_weapon_var_samp_order_by - variance: player_kills_by_weapon_variance_order_by -} - -""" -input type for inserting array relation for remote table "player_kills_by_weapon" -""" -input player_kills_by_weapon_arr_rel_insert_input { - data: [player_kills_by_weapon_insert_input!]! - - """upsert condition""" - on_conflict: player_kills_by_weapon_on_conflict -} - -"""aggregate avg on columns""" -type player_kills_by_weapon_avg_fields { - kill_count: Float - player_steam_id: Float -} - -""" -order by avg() on columns of table "player_kills_by_weapon" -""" -input player_kills_by_weapon_avg_order_by { - kill_count: order_by - player_steam_id: order_by -} - -""" -Boolean expression to filter rows from the table "player_kills_by_weapon". All fields are combined with a logical 'AND'. -""" -input player_kills_by_weapon_bool_exp { - _and: [player_kills_by_weapon_bool_exp!] - _not: player_kills_by_weapon_bool_exp - _or: [player_kills_by_weapon_bool_exp!] - kill_count: bigint_comparison_exp - player: players_bool_exp - player_steam_id: bigint_comparison_exp - with: String_comparison_exp -} - -""" -unique or primary key constraints on table "player_kills_by_weapon" -""" -enum player_kills_by_weapon_constraint { - """ - unique or primary key constraint on columns "player_steam_id", "with" - """ - player_kills_by_weapon_pkey -} - -""" -input type for incrementing numeric columns in table "player_kills_by_weapon" -""" -input player_kills_by_weapon_inc_input { - kill_count: bigint - player_steam_id: bigint -} - -""" -input type for inserting data into table "player_kills_by_weapon" -""" -input player_kills_by_weapon_insert_input { - kill_count: bigint - player: players_obj_rel_insert_input - player_steam_id: bigint - with: String -} - -"""aggregate max on columns""" -type player_kills_by_weapon_max_fields { - kill_count: bigint - player_steam_id: bigint - with: String -} - -""" -order by max() on columns of table "player_kills_by_weapon" -""" -input player_kills_by_weapon_max_order_by { - kill_count: order_by - player_steam_id: order_by - with: order_by -} - -"""aggregate min on columns""" -type player_kills_by_weapon_min_fields { - kill_count: bigint - player_steam_id: bigint - with: String -} - -""" -order by min() on columns of table "player_kills_by_weapon" -""" -input player_kills_by_weapon_min_order_by { - kill_count: order_by - player_steam_id: order_by - with: order_by -} - -""" -response of any mutation on the table "player_kills_by_weapon" -""" -type player_kills_by_weapon_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [player_kills_by_weapon!]! -} - -""" -on_conflict condition type for table "player_kills_by_weapon" -""" -input player_kills_by_weapon_on_conflict { - constraint: player_kills_by_weapon_constraint! - update_columns: [player_kills_by_weapon_update_column!]! = [] - where: player_kills_by_weapon_bool_exp -} - -"""Ordering options when selecting data from "player_kills_by_weapon".""" -input player_kills_by_weapon_order_by { - kill_count: order_by - player: players_order_by - player_steam_id: order_by - with: order_by -} - -"""primary key columns input for table: player_kills_by_weapon""" -input player_kills_by_weapon_pk_columns_input { - player_steam_id: bigint! - with: String! -} - -""" -select columns of table "player_kills_by_weapon" -""" -enum player_kills_by_weapon_select_column { - """column name""" - kill_count - - """column name""" - player_steam_id - - """column name""" - with -} - -""" -input type for updating data in table "player_kills_by_weapon" -""" -input player_kills_by_weapon_set_input { - kill_count: bigint - player_steam_id: bigint - with: String -} - -"""aggregate stddev on columns""" -type player_kills_by_weapon_stddev_fields { - kill_count: Float - player_steam_id: Float -} - -""" -order by stddev() on columns of table "player_kills_by_weapon" -""" -input player_kills_by_weapon_stddev_order_by { - kill_count: order_by - player_steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type player_kills_by_weapon_stddev_pop_fields { - kill_count: Float - player_steam_id: Float -} - -""" -order by stddev_pop() on columns of table "player_kills_by_weapon" -""" -input player_kills_by_weapon_stddev_pop_order_by { - kill_count: order_by - player_steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type player_kills_by_weapon_stddev_samp_fields { - kill_count: Float - player_steam_id: Float -} - -""" -order by stddev_samp() on columns of table "player_kills_by_weapon" -""" -input player_kills_by_weapon_stddev_samp_order_by { - kill_count: order_by - player_steam_id: order_by -} - -""" -Streaming cursor of the table "player_kills_by_weapon" -""" -input player_kills_by_weapon_stream_cursor_input { - """Stream column input with initial value""" - initial_value: player_kills_by_weapon_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input player_kills_by_weapon_stream_cursor_value_input { - kill_count: bigint - player_steam_id: bigint - with: String -} - -"""aggregate sum on columns""" -type player_kills_by_weapon_sum_fields { - kill_count: bigint - player_steam_id: bigint -} - -""" -order by sum() on columns of table "player_kills_by_weapon" -""" -input player_kills_by_weapon_sum_order_by { - kill_count: order_by - player_steam_id: order_by -} - -""" -update columns of table "player_kills_by_weapon" -""" -enum player_kills_by_weapon_update_column { - """column name""" - kill_count - - """column name""" - player_steam_id - - """column name""" - with -} - -input player_kills_by_weapon_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: player_kills_by_weapon_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_kills_by_weapon_set_input - - """filter the rows which have to be updated""" - where: player_kills_by_weapon_bool_exp! -} - -"""aggregate var_pop on columns""" -type player_kills_by_weapon_var_pop_fields { - kill_count: Float - player_steam_id: Float -} - -""" -order by var_pop() on columns of table "player_kills_by_weapon" -""" -input player_kills_by_weapon_var_pop_order_by { - kill_count: order_by - player_steam_id: order_by -} - -"""aggregate var_samp on columns""" -type player_kills_by_weapon_var_samp_fields { - kill_count: Float - player_steam_id: Float -} - -""" -order by var_samp() on columns of table "player_kills_by_weapon" -""" -input player_kills_by_weapon_var_samp_order_by { - kill_count: order_by - player_steam_id: order_by -} - -"""aggregate variance on columns""" -type player_kills_by_weapon_variance_fields { - kill_count: Float - player_steam_id: Float -} - -""" -order by variance() on columns of table "player_kills_by_weapon" -""" -input player_kills_by_weapon_variance_order_by { - kill_count: order_by - player_steam_id: order_by -} - -""" -unique or primary key constraints on table "player_kills" -""" -enum player_kills_constraint { - """ - unique or primary key constraint on columns "attacker_steam_id", "attacked_steam_id", "time", "match_map_id" - """ - player_kills_pkey -} - -""" -input type for incrementing numeric columns in table "player_kills" -""" -input player_kills_inc_input { - attacked_steam_id: bigint - attacker_steam_id: bigint - round: Int -} - -""" -input type for inserting data into table "player_kills" -""" -input player_kills_insert_input { - assisted: Boolean - attacked_location: String - attacked_location_coordinates: String - attacked_player: players_obj_rel_insert_input - attacked_steam_id: bigint - attacked_team: String - attacker_location: String - attacker_location_coordinates: String - attacker_steam_id: bigint - attacker_team: String - blinded: Boolean - deleted_at: timestamptz - headshot: Boolean - hitgroup: String - in_air: Boolean - match: matches_obj_rel_insert_input - match_id: uuid - match_map: match_maps_obj_rel_insert_input - match_map_id: uuid - no_scope: Boolean - player: players_obj_rel_insert_input - round: Int - thru_smoke: Boolean - thru_wall: Boolean - time: timestamptz - with: String -} - -"""aggregate max on columns""" -type player_kills_max_fields { - attacked_location: String - attacked_location_coordinates: String - attacked_steam_id: bigint - attacked_team: String - attacker_location: String - attacker_location_coordinates: String - attacker_steam_id: bigint - attacker_team: String - deleted_at: timestamptz - hitgroup: String - match_id: uuid - match_map_id: uuid - round: Int - time: timestamptz - with: String -} - -""" -order by max() on columns of table "player_kills" -""" -input player_kills_max_order_by { - attacked_location: order_by - attacked_location_coordinates: order_by - attacked_steam_id: order_by - attacked_team: order_by - attacker_location: order_by - attacker_location_coordinates: order_by - attacker_steam_id: order_by - attacker_team: order_by - deleted_at: order_by - hitgroup: order_by - match_id: order_by - match_map_id: order_by - round: order_by - time: order_by - with: order_by -} - -"""aggregate min on columns""" -type player_kills_min_fields { - attacked_location: String - attacked_location_coordinates: String - attacked_steam_id: bigint - attacked_team: String - attacker_location: String - attacker_location_coordinates: String - attacker_steam_id: bigint - attacker_team: String - deleted_at: timestamptz - hitgroup: String - match_id: uuid - match_map_id: uuid - round: Int - time: timestamptz - with: String -} - -""" -order by min() on columns of table "player_kills" -""" -input player_kills_min_order_by { - attacked_location: order_by - attacked_location_coordinates: order_by - attacked_steam_id: order_by - attacked_team: order_by - attacker_location: order_by - attacker_location_coordinates: order_by - attacker_steam_id: order_by - attacker_team: order_by - deleted_at: order_by - hitgroup: order_by - match_id: order_by - match_map_id: order_by - round: order_by - time: order_by - with: order_by -} - -""" -response of any mutation on the table "player_kills" -""" -type player_kills_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [player_kills!]! -} - -""" -on_conflict condition type for table "player_kills" -""" -input player_kills_on_conflict { - constraint: player_kills_constraint! - update_columns: [player_kills_update_column!]! = [] - where: player_kills_bool_exp -} - -"""Ordering options when selecting data from "player_kills".""" -input player_kills_order_by { - assisted: order_by - attacked_location: order_by - attacked_location_coordinates: order_by - attacked_player: players_order_by - attacked_steam_id: order_by - attacked_team: order_by - attacker_location: order_by - attacker_location_coordinates: order_by - attacker_steam_id: order_by - attacker_team: order_by - blinded: order_by - deleted_at: order_by - headshot: order_by - hitgroup: order_by - in_air: order_by - is_suicide: order_by - match: matches_order_by - match_id: order_by - match_map: match_maps_order_by - match_map_id: order_by - no_scope: order_by - player: players_order_by - round: order_by - team_kill: order_by - thru_smoke: order_by - thru_wall: order_by - time: order_by - with: order_by -} - -"""primary key columns input for table: player_kills""" -input player_kills_pk_columns_input { - attacked_steam_id: bigint! - attacker_steam_id: bigint! - match_map_id: uuid! - time: timestamptz! -} - -""" -select columns of table "player_kills" -""" -enum player_kills_select_column { - """column name""" - assisted - - """column name""" - attacked_location - - """column name""" - attacked_location_coordinates - - """column name""" - attacked_steam_id - - """column name""" - attacked_team - - """column name""" - attacker_location - - """column name""" - attacker_location_coordinates - - """column name""" - attacker_steam_id - - """column name""" - attacker_team - - """column name""" - blinded - - """column name""" - deleted_at - - """column name""" - headshot - - """column name""" - hitgroup - - """column name""" - in_air - - """column name""" - match_id - - """column name""" - match_map_id - - """column name""" - no_scope - - """column name""" - round - - """column name""" - thru_smoke - - """column name""" - thru_wall - - """column name""" - time - - """column name""" - with -} - -""" -select "player_kills_aggregate_bool_exp_bool_and_arguments_columns" columns of table "player_kills" -""" -enum player_kills_select_column_player_kills_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - assisted - - """column name""" - blinded - - """column name""" - headshot - - """column name""" - in_air - - """column name""" - no_scope - - """column name""" - thru_smoke - - """column name""" - thru_wall -} - -""" -select "player_kills_aggregate_bool_exp_bool_or_arguments_columns" columns of table "player_kills" -""" -enum player_kills_select_column_player_kills_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - assisted - - """column name""" - blinded - - """column name""" - headshot - - """column name""" - in_air - - """column name""" - no_scope - - """column name""" - thru_smoke - - """column name""" - thru_wall -} - -""" -input type for updating data in table "player_kills" -""" -input player_kills_set_input { - assisted: Boolean - attacked_location: String - attacked_location_coordinates: String - attacked_steam_id: bigint - attacked_team: String - attacker_location: String - attacker_location_coordinates: String - attacker_steam_id: bigint - attacker_team: String - blinded: Boolean - deleted_at: timestamptz - headshot: Boolean - hitgroup: String - in_air: Boolean - match_id: uuid - match_map_id: uuid - no_scope: Boolean - round: Int - thru_smoke: Boolean - thru_wall: Boolean - time: timestamptz - with: String -} - -"""aggregate stddev on columns""" -type player_kills_stddev_fields { - attacked_steam_id: Float - attacker_steam_id: Float - round: Float -} - -""" -order by stddev() on columns of table "player_kills" -""" -input player_kills_stddev_order_by { - attacked_steam_id: order_by - attacker_steam_id: order_by - round: order_by -} - -"""aggregate stddev_pop on columns""" -type player_kills_stddev_pop_fields { - attacked_steam_id: Float - attacker_steam_id: Float - round: Float -} - -""" -order by stddev_pop() on columns of table "player_kills" -""" -input player_kills_stddev_pop_order_by { - attacked_steam_id: order_by - attacker_steam_id: order_by - round: order_by -} - -"""aggregate stddev_samp on columns""" -type player_kills_stddev_samp_fields { - attacked_steam_id: Float - attacker_steam_id: Float - round: Float -} - -""" -order by stddev_samp() on columns of table "player_kills" -""" -input player_kills_stddev_samp_order_by { - attacked_steam_id: order_by - attacker_steam_id: order_by - round: order_by -} - -""" -Streaming cursor of the table "player_kills" -""" -input player_kills_stream_cursor_input { - """Stream column input with initial value""" - initial_value: player_kills_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input player_kills_stream_cursor_value_input { - assisted: Boolean - attacked_location: String - attacked_location_coordinates: String - attacked_steam_id: bigint - attacked_team: String - attacker_location: String - attacker_location_coordinates: String - attacker_steam_id: bigint - attacker_team: String - blinded: Boolean - deleted_at: timestamptz - headshot: Boolean - hitgroup: String - in_air: Boolean - match_id: uuid - match_map_id: uuid - no_scope: Boolean - round: Int - thru_smoke: Boolean - thru_wall: Boolean - time: timestamptz - with: String -} - -"""aggregate sum on columns""" -type player_kills_sum_fields { - attacked_steam_id: bigint - attacker_steam_id: bigint - round: Int -} - -""" -order by sum() on columns of table "player_kills" -""" -input player_kills_sum_order_by { - attacked_steam_id: order_by - attacker_steam_id: order_by - round: order_by -} - -""" -update columns of table "player_kills" -""" -enum player_kills_update_column { - """column name""" - assisted - - """column name""" - attacked_location - - """column name""" - attacked_location_coordinates - - """column name""" - attacked_steam_id - - """column name""" - attacked_team - - """column name""" - attacker_location - - """column name""" - attacker_location_coordinates - - """column name""" - attacker_steam_id - - """column name""" - attacker_team - - """column name""" - blinded - - """column name""" - deleted_at - - """column name""" - headshot - - """column name""" - hitgroup - - """column name""" - in_air - - """column name""" - match_id - - """column name""" - match_map_id - - """column name""" - no_scope - - """column name""" - round - - """column name""" - thru_smoke - - """column name""" - thru_wall - - """column name""" - time - - """column name""" - with -} - -input player_kills_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: player_kills_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_kills_set_input - - """filter the rows which have to be updated""" - where: player_kills_bool_exp! -} - -"""aggregate var_pop on columns""" -type player_kills_var_pop_fields { - attacked_steam_id: Float - attacker_steam_id: Float - round: Float -} - -""" -order by var_pop() on columns of table "player_kills" -""" -input player_kills_var_pop_order_by { - attacked_steam_id: order_by - attacker_steam_id: order_by - round: order_by -} - -"""aggregate var_samp on columns""" -type player_kills_var_samp_fields { - attacked_steam_id: Float - attacker_steam_id: Float - round: Float -} - -""" -order by var_samp() on columns of table "player_kills" -""" -input player_kills_var_samp_order_by { - attacked_steam_id: order_by - attacker_steam_id: order_by - round: order_by -} - -"""aggregate variance on columns""" -type player_kills_variance_fields { - attacked_steam_id: Float - attacker_steam_id: Float - round: Float -} - -""" -order by variance() on columns of table "player_kills" -""" -input player_kills_variance_order_by { - attacked_steam_id: order_by - attacker_steam_id: order_by - round: order_by -} - -""" -columns and relationships of "player_leaderboard_rank" -""" -type player_leaderboard_rank { - player_steam_id: String! - rank: Int! - total: Int! - value: float8! -} - -type player_leaderboard_rank_aggregate { - aggregate: player_leaderboard_rank_aggregate_fields - nodes: [player_leaderboard_rank!]! -} - -""" -aggregate fields of "player_leaderboard_rank" -""" -type player_leaderboard_rank_aggregate_fields { - avg: player_leaderboard_rank_avg_fields - count(columns: [player_leaderboard_rank_select_column!], distinct: Boolean): Int! - max: player_leaderboard_rank_max_fields - min: player_leaderboard_rank_min_fields - stddev: player_leaderboard_rank_stddev_fields - stddev_pop: player_leaderboard_rank_stddev_pop_fields - stddev_samp: player_leaderboard_rank_stddev_samp_fields - sum: player_leaderboard_rank_sum_fields - var_pop: player_leaderboard_rank_var_pop_fields - var_samp: player_leaderboard_rank_var_samp_fields - variance: player_leaderboard_rank_variance_fields -} - -"""aggregate avg on columns""" -type player_leaderboard_rank_avg_fields { - rank: Float - total: Float - value: Float -} - -""" -Boolean expression to filter rows from the table "player_leaderboard_rank". All fields are combined with a logical 'AND'. -""" -input player_leaderboard_rank_bool_exp { - _and: [player_leaderboard_rank_bool_exp!] - _not: player_leaderboard_rank_bool_exp - _or: [player_leaderboard_rank_bool_exp!] - player_steam_id: String_comparison_exp - rank: Int_comparison_exp - total: Int_comparison_exp - value: float8_comparison_exp -} - -""" -input type for incrementing numeric columns in table "player_leaderboard_rank" -""" -input player_leaderboard_rank_inc_input { - rank: Int - total: Int - value: float8 -} - -""" -input type for inserting data into table "player_leaderboard_rank" -""" -input player_leaderboard_rank_insert_input { - player_steam_id: String - rank: Int - total: Int - value: float8 -} - -"""aggregate max on columns""" -type player_leaderboard_rank_max_fields { - player_steam_id: String - rank: Int - total: Int - value: float8 -} - -"""aggregate min on columns""" -type player_leaderboard_rank_min_fields { - player_steam_id: String - rank: Int - total: Int - value: float8 -} - -""" -response of any mutation on the table "player_leaderboard_rank" -""" -type player_leaderboard_rank_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [player_leaderboard_rank!]! -} - -"""Ordering options when selecting data from "player_leaderboard_rank".""" -input player_leaderboard_rank_order_by { - player_steam_id: order_by - rank: order_by - total: order_by - value: order_by -} - -""" -select columns of table "player_leaderboard_rank" -""" -enum player_leaderboard_rank_select_column { - """column name""" - player_steam_id - - """column name""" - rank - - """column name""" - total - - """column name""" - value -} - -""" -input type for updating data in table "player_leaderboard_rank" -""" -input player_leaderboard_rank_set_input { - player_steam_id: String - rank: Int - total: Int - value: float8 -} - -"""aggregate stddev on columns""" -type player_leaderboard_rank_stddev_fields { - rank: Float - total: Float - value: Float -} - -"""aggregate stddev_pop on columns""" -type player_leaderboard_rank_stddev_pop_fields { - rank: Float - total: Float - value: Float -} - -"""aggregate stddev_samp on columns""" -type player_leaderboard_rank_stddev_samp_fields { - rank: Float - total: Float - value: Float -} - -""" -Streaming cursor of the table "player_leaderboard_rank" -""" -input player_leaderboard_rank_stream_cursor_input { - """Stream column input with initial value""" - initial_value: player_leaderboard_rank_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input player_leaderboard_rank_stream_cursor_value_input { - player_steam_id: String - rank: Int - total: Int - value: float8 -} - -"""aggregate sum on columns""" -type player_leaderboard_rank_sum_fields { - rank: Int - total: Int - value: float8 -} - -input player_leaderboard_rank_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: player_leaderboard_rank_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_leaderboard_rank_set_input - - """filter the rows which have to be updated""" - where: player_leaderboard_rank_bool_exp! -} - -"""aggregate var_pop on columns""" -type player_leaderboard_rank_var_pop_fields { - rank: Float - total: Float - value: Float -} - -"""aggregate var_samp on columns""" -type player_leaderboard_rank_var_samp_fields { - rank: Float - total: Float - value: Float -} - -"""aggregate variance on columns""" -type player_leaderboard_rank_variance_fields { - rank: Float - total: Float - value: Float -} - -""" -columns and relationships of "player_match_map_stats" -""" -type player_match_map_stats { - assists: Int! - assists_ct: Int! - assists_t: Int! - counter_strafe_eligible_shots: Int! - counter_strafed_shots: Int! - crosshair_angle_count: Int! - crosshair_angle_sum_deg: numeric! - damage: Int! - damage_ct: Int! - damage_t: Int! - deaths: Int! - deaths_ct: Int! - deaths_t: Int! - decoy_throws: Int! - enemies_flashed: Int! - first_bullet_hits: Int! - first_bullet_shots: Int! - five_kill_rounds: Int! - flash_assists: Int! - flash_duration_count: Int! - flash_duration_sum: numeric! - flashes_thrown: Int! - four_kill_rounds: Int! - he_damage: Int! - he_team_damage: Int! - he_throws: Int! - headshot_hits: Int! - hits: Int! - hits_at_spotted: Int! - hs_kills: Int! - hs_kills_ct: Int! - hs_kills_t: Int! - kast_rounds: Int! - kast_total_rounds: Int! - kills: Int! - kills_ct: Int! - kills_t: Int! - knife_kills: Int! - - """An object relationship""" - match: matches! - match_id: uuid! - - """An object relationship""" - match_map: match_maps! - match_map_id: uuid! - molotov_damage: Int! - molotov_throws: Int! - non_awp_hits: Int! - on_target_frames: Int! - - """An object relationship""" - player: players! - rounds_ct: Int! - rounds_played: Int! - rounds_t: Int! - shots_at_spotted: Int! - shots_fired: Int! - smoke_throws: Int! - spotted_count: Int! - spotted_with_damage_count: Int! - spray_hits: Int! - spray_shots: Int! - steam_id: bigint! - team_damage: Int! - team_flashed: Int! - three_kill_rounds: Int! - time_to_damage_count: Int! - time_to_damage_sum_s: numeric! - total_engagement_frames: Int! - trade_kill_attempts: Int! - trade_kill_opportunities: Int! - trade_kill_successes: Int! - traded_death_attempts: Int! - traded_death_opportunities: Int! - traded_death_successes: Int! - two_kill_rounds: Int! - unused_utility_value: Int! - updated_at: timestamptz! - util_on_death_count: Int! - util_on_death_sum: Int! - wasted_magazine_shots: Int! - zeus_kills: Int! -} - -""" -aggregated selection of "player_match_map_stats" -""" -type player_match_map_stats_aggregate { - aggregate: player_match_map_stats_aggregate_fields - nodes: [player_match_map_stats!]! -} - -input player_match_map_stats_aggregate_bool_exp { - count: player_match_map_stats_aggregate_bool_exp_count -} - -input player_match_map_stats_aggregate_bool_exp_count { - arguments: [player_match_map_stats_select_column!] - distinct: Boolean - filter: player_match_map_stats_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "player_match_map_stats" -""" -type player_match_map_stats_aggregate_fields { - avg: player_match_map_stats_avg_fields - count(columns: [player_match_map_stats_select_column!], distinct: Boolean): Int! - max: player_match_map_stats_max_fields - min: player_match_map_stats_min_fields - stddev: player_match_map_stats_stddev_fields - stddev_pop: player_match_map_stats_stddev_pop_fields - stddev_samp: player_match_map_stats_stddev_samp_fields - sum: player_match_map_stats_sum_fields - var_pop: player_match_map_stats_var_pop_fields - var_samp: player_match_map_stats_var_samp_fields - variance: player_match_map_stats_variance_fields -} - -""" -order by aggregate values of table "player_match_map_stats" -""" -input player_match_map_stats_aggregate_order_by { - avg: player_match_map_stats_avg_order_by - count: order_by - max: player_match_map_stats_max_order_by - min: player_match_map_stats_min_order_by - stddev: player_match_map_stats_stddev_order_by - stddev_pop: player_match_map_stats_stddev_pop_order_by - stddev_samp: player_match_map_stats_stddev_samp_order_by - sum: player_match_map_stats_sum_order_by - var_pop: player_match_map_stats_var_pop_order_by - var_samp: player_match_map_stats_var_samp_order_by - variance: player_match_map_stats_variance_order_by -} - -""" -input type for inserting array relation for remote table "player_match_map_stats" -""" -input player_match_map_stats_arr_rel_insert_input { - data: [player_match_map_stats_insert_input!]! - - """upsert condition""" - on_conflict: player_match_map_stats_on_conflict -} - -"""aggregate avg on columns""" -type player_match_map_stats_avg_fields { - assists: Float - assists_ct: Float - assists_t: Float - counter_strafe_eligible_shots: Float - counter_strafed_shots: Float - crosshair_angle_count: Float - crosshair_angle_sum_deg: Float - damage: Float - damage_ct: Float - damage_t: Float - deaths: Float - deaths_ct: Float - deaths_t: Float - decoy_throws: Float - enemies_flashed: Float - first_bullet_hits: Float - first_bullet_shots: Float - five_kill_rounds: Float - flash_assists: Float - flash_duration_count: Float - flash_duration_sum: Float - flashes_thrown: Float - four_kill_rounds: Float - he_damage: Float - he_team_damage: Float - he_throws: Float - headshot_hits: Float - hits: Float - hits_at_spotted: Float - hs_kills: Float - hs_kills_ct: Float - hs_kills_t: Float - kast_rounds: Float - kast_total_rounds: Float - kills: Float - kills_ct: Float - kills_t: Float - knife_kills: Float - molotov_damage: Float - molotov_throws: Float - non_awp_hits: Float - on_target_frames: Float - rounds_ct: Float - rounds_played: Float - rounds_t: Float - shots_at_spotted: Float - shots_fired: Float - smoke_throws: Float - spotted_count: Float - spotted_with_damage_count: Float - spray_hits: Float - spray_shots: Float - steam_id: Float - team_damage: Float - team_flashed: Float - three_kill_rounds: Float - time_to_damage_count: Float - time_to_damage_sum_s: Float - total_engagement_frames: Float - trade_kill_attempts: Float - trade_kill_opportunities: Float - trade_kill_successes: Float - traded_death_attempts: Float - traded_death_opportunities: Float - traded_death_successes: Float - two_kill_rounds: Float - unused_utility_value: Float - util_on_death_count: Float - util_on_death_sum: Float - wasted_magazine_shots: Float - zeus_kills: Float -} - -""" -order by avg() on columns of table "player_match_map_stats" -""" -input player_match_map_stats_avg_order_by { - assists: order_by - assists_ct: order_by - assists_t: order_by - counter_strafe_eligible_shots: order_by - counter_strafed_shots: order_by - crosshair_angle_count: order_by - crosshair_angle_sum_deg: order_by - damage: order_by - damage_ct: order_by - damage_t: order_by - deaths: order_by - deaths_ct: order_by - deaths_t: order_by - decoy_throws: order_by - enemies_flashed: order_by - first_bullet_hits: order_by - first_bullet_shots: order_by - five_kill_rounds: order_by - flash_assists: order_by - flash_duration_count: order_by - flash_duration_sum: order_by - flashes_thrown: order_by - four_kill_rounds: order_by - he_damage: order_by - he_team_damage: order_by - he_throws: order_by - headshot_hits: order_by - hits: order_by - hits_at_spotted: order_by - hs_kills: order_by - hs_kills_ct: order_by - hs_kills_t: order_by - kast_rounds: order_by - kast_total_rounds: order_by - kills: order_by - kills_ct: order_by - kills_t: order_by - knife_kills: order_by - molotov_damage: order_by - molotov_throws: order_by - non_awp_hits: order_by - on_target_frames: order_by - rounds_ct: order_by - rounds_played: order_by - rounds_t: order_by - shots_at_spotted: order_by - shots_fired: order_by - smoke_throws: order_by - spotted_count: order_by - spotted_with_damage_count: order_by - spray_hits: order_by - spray_shots: order_by - steam_id: order_by - team_damage: order_by - team_flashed: order_by - three_kill_rounds: order_by - time_to_damage_count: order_by - time_to_damage_sum_s: order_by - total_engagement_frames: order_by - trade_kill_attempts: order_by - trade_kill_opportunities: order_by - trade_kill_successes: order_by - traded_death_attempts: order_by - traded_death_opportunities: order_by - traded_death_successes: order_by - two_kill_rounds: order_by - unused_utility_value: order_by - util_on_death_count: order_by - util_on_death_sum: order_by - wasted_magazine_shots: order_by - zeus_kills: order_by -} - -""" -Boolean expression to filter rows from the table "player_match_map_stats". All fields are combined with a logical 'AND'. -""" -input player_match_map_stats_bool_exp { - _and: [player_match_map_stats_bool_exp!] - _not: player_match_map_stats_bool_exp - _or: [player_match_map_stats_bool_exp!] - assists: Int_comparison_exp - assists_ct: Int_comparison_exp - assists_t: Int_comparison_exp - counter_strafe_eligible_shots: Int_comparison_exp - counter_strafed_shots: Int_comparison_exp - crosshair_angle_count: Int_comparison_exp - crosshair_angle_sum_deg: numeric_comparison_exp - damage: Int_comparison_exp - damage_ct: Int_comparison_exp - damage_t: Int_comparison_exp - deaths: Int_comparison_exp - deaths_ct: Int_comparison_exp - deaths_t: Int_comparison_exp - decoy_throws: Int_comparison_exp - enemies_flashed: Int_comparison_exp - first_bullet_hits: Int_comparison_exp - first_bullet_shots: Int_comparison_exp - five_kill_rounds: Int_comparison_exp - flash_assists: Int_comparison_exp - flash_duration_count: Int_comparison_exp - flash_duration_sum: numeric_comparison_exp - flashes_thrown: Int_comparison_exp - four_kill_rounds: Int_comparison_exp - he_damage: Int_comparison_exp - he_team_damage: Int_comparison_exp - he_throws: Int_comparison_exp - headshot_hits: Int_comparison_exp - hits: Int_comparison_exp - hits_at_spotted: Int_comparison_exp - hs_kills: Int_comparison_exp - hs_kills_ct: Int_comparison_exp - hs_kills_t: Int_comparison_exp - kast_rounds: Int_comparison_exp - kast_total_rounds: Int_comparison_exp - kills: Int_comparison_exp - kills_ct: Int_comparison_exp - kills_t: Int_comparison_exp - knife_kills: Int_comparison_exp - match: matches_bool_exp - match_id: uuid_comparison_exp - match_map: match_maps_bool_exp - match_map_id: uuid_comparison_exp - molotov_damage: Int_comparison_exp - molotov_throws: Int_comparison_exp - non_awp_hits: Int_comparison_exp - on_target_frames: Int_comparison_exp - player: players_bool_exp - rounds_ct: Int_comparison_exp - rounds_played: Int_comparison_exp - rounds_t: Int_comparison_exp - shots_at_spotted: Int_comparison_exp - shots_fired: Int_comparison_exp - smoke_throws: Int_comparison_exp - spotted_count: Int_comparison_exp - spotted_with_damage_count: Int_comparison_exp - spray_hits: Int_comparison_exp - spray_shots: Int_comparison_exp - steam_id: bigint_comparison_exp - team_damage: Int_comparison_exp - team_flashed: Int_comparison_exp - three_kill_rounds: Int_comparison_exp - time_to_damage_count: Int_comparison_exp - time_to_damage_sum_s: numeric_comparison_exp - total_engagement_frames: Int_comparison_exp - trade_kill_attempts: Int_comparison_exp - trade_kill_opportunities: Int_comparison_exp - trade_kill_successes: Int_comparison_exp - traded_death_attempts: Int_comparison_exp - traded_death_opportunities: Int_comparison_exp - traded_death_successes: Int_comparison_exp - two_kill_rounds: Int_comparison_exp - unused_utility_value: Int_comparison_exp - updated_at: timestamptz_comparison_exp - util_on_death_count: Int_comparison_exp - util_on_death_sum: Int_comparison_exp - wasted_magazine_shots: Int_comparison_exp - zeus_kills: Int_comparison_exp -} - -""" -unique or primary key constraints on table "player_match_map_stats" -""" -enum player_match_map_stats_constraint { - """ - unique or primary key constraint on columns "steam_id", "match_map_id" - """ - player_match_map_stats_pkey -} - -""" -input type for incrementing numeric columns in table "player_match_map_stats" -""" -input player_match_map_stats_inc_input { - assists: Int - assists_ct: Int - assists_t: Int - counter_strafe_eligible_shots: Int - counter_strafed_shots: Int - crosshair_angle_count: Int - crosshair_angle_sum_deg: numeric - damage: Int - damage_ct: Int - damage_t: Int - deaths: Int - deaths_ct: Int - deaths_t: Int - decoy_throws: Int - enemies_flashed: Int - first_bullet_hits: Int - first_bullet_shots: Int - five_kill_rounds: Int - flash_assists: Int - flash_duration_count: Int - flash_duration_sum: numeric - flashes_thrown: Int - four_kill_rounds: Int - he_damage: Int - he_team_damage: Int - he_throws: Int - headshot_hits: Int - hits: Int - hits_at_spotted: Int - hs_kills: Int - hs_kills_ct: Int - hs_kills_t: Int - kast_rounds: Int - kast_total_rounds: Int - kills: Int - kills_ct: Int - kills_t: Int - knife_kills: Int - molotov_damage: Int - molotov_throws: Int - non_awp_hits: Int - on_target_frames: Int - rounds_ct: Int - rounds_played: Int - rounds_t: Int - shots_at_spotted: Int - shots_fired: Int - smoke_throws: Int - spotted_count: Int - spotted_with_damage_count: Int - spray_hits: Int - spray_shots: Int - steam_id: bigint - team_damage: Int - team_flashed: Int - three_kill_rounds: Int - time_to_damage_count: Int - time_to_damage_sum_s: numeric - total_engagement_frames: Int - trade_kill_attempts: Int - trade_kill_opportunities: Int - trade_kill_successes: Int - traded_death_attempts: Int - traded_death_opportunities: Int - traded_death_successes: Int - two_kill_rounds: Int - unused_utility_value: Int - util_on_death_count: Int - util_on_death_sum: Int - wasted_magazine_shots: Int - zeus_kills: Int -} - -""" -input type for inserting data into table "player_match_map_stats" -""" -input player_match_map_stats_insert_input { - assists: Int - assists_ct: Int - assists_t: Int - counter_strafe_eligible_shots: Int - counter_strafed_shots: Int - crosshair_angle_count: Int - crosshair_angle_sum_deg: numeric - damage: Int - damage_ct: Int - damage_t: Int - deaths: Int - deaths_ct: Int - deaths_t: Int - decoy_throws: Int - enemies_flashed: Int - first_bullet_hits: Int - first_bullet_shots: Int - five_kill_rounds: Int - flash_assists: Int - flash_duration_count: Int - flash_duration_sum: numeric - flashes_thrown: Int - four_kill_rounds: Int - he_damage: Int - he_team_damage: Int - he_throws: Int - headshot_hits: Int - hits: Int - hits_at_spotted: Int - hs_kills: Int - hs_kills_ct: Int - hs_kills_t: Int - kast_rounds: Int - kast_total_rounds: Int - kills: Int - kills_ct: Int - kills_t: Int - knife_kills: Int - match: matches_obj_rel_insert_input - match_id: uuid - match_map: match_maps_obj_rel_insert_input - match_map_id: uuid - molotov_damage: Int - molotov_throws: Int - non_awp_hits: Int - on_target_frames: Int - player: players_obj_rel_insert_input - rounds_ct: Int - rounds_played: Int - rounds_t: Int - shots_at_spotted: Int - shots_fired: Int - smoke_throws: Int - spotted_count: Int - spotted_with_damage_count: Int - spray_hits: Int - spray_shots: Int - steam_id: bigint - team_damage: Int - team_flashed: Int - three_kill_rounds: Int - time_to_damage_count: Int - time_to_damage_sum_s: numeric - total_engagement_frames: Int - trade_kill_attempts: Int - trade_kill_opportunities: Int - trade_kill_successes: Int - traded_death_attempts: Int - traded_death_opportunities: Int - traded_death_successes: Int - two_kill_rounds: Int - unused_utility_value: Int - updated_at: timestamptz - util_on_death_count: Int - util_on_death_sum: Int - wasted_magazine_shots: Int - zeus_kills: Int -} - -"""aggregate max on columns""" -type player_match_map_stats_max_fields { - assists: Int - assists_ct: Int - assists_t: Int - counter_strafe_eligible_shots: Int - counter_strafed_shots: Int - crosshair_angle_count: Int - crosshair_angle_sum_deg: numeric - damage: Int - damage_ct: Int - damage_t: Int - deaths: Int - deaths_ct: Int - deaths_t: Int - decoy_throws: Int - enemies_flashed: Int - first_bullet_hits: Int - first_bullet_shots: Int - five_kill_rounds: Int - flash_assists: Int - flash_duration_count: Int - flash_duration_sum: numeric - flashes_thrown: Int - four_kill_rounds: Int - he_damage: Int - he_team_damage: Int - he_throws: Int - headshot_hits: Int - hits: Int - hits_at_spotted: Int - hs_kills: Int - hs_kills_ct: Int - hs_kills_t: Int - kast_rounds: Int - kast_total_rounds: Int - kills: Int - kills_ct: Int - kills_t: Int - knife_kills: Int - match_id: uuid - match_map_id: uuid - molotov_damage: Int - molotov_throws: Int - non_awp_hits: Int - on_target_frames: Int - rounds_ct: Int - rounds_played: Int - rounds_t: Int - shots_at_spotted: Int - shots_fired: Int - smoke_throws: Int - spotted_count: Int - spotted_with_damage_count: Int - spray_hits: Int - spray_shots: Int - steam_id: bigint - team_damage: Int - team_flashed: Int - three_kill_rounds: Int - time_to_damage_count: Int - time_to_damage_sum_s: numeric - total_engagement_frames: Int - trade_kill_attempts: Int - trade_kill_opportunities: Int - trade_kill_successes: Int - traded_death_attempts: Int - traded_death_opportunities: Int - traded_death_successes: Int - two_kill_rounds: Int - unused_utility_value: Int - updated_at: timestamptz - util_on_death_count: Int - util_on_death_sum: Int - wasted_magazine_shots: Int - zeus_kills: Int -} - -""" -order by max() on columns of table "player_match_map_stats" -""" -input player_match_map_stats_max_order_by { - assists: order_by - assists_ct: order_by - assists_t: order_by - counter_strafe_eligible_shots: order_by - counter_strafed_shots: order_by - crosshair_angle_count: order_by - crosshair_angle_sum_deg: order_by - damage: order_by - damage_ct: order_by - damage_t: order_by - deaths: order_by - deaths_ct: order_by - deaths_t: order_by - decoy_throws: order_by - enemies_flashed: order_by - first_bullet_hits: order_by - first_bullet_shots: order_by - five_kill_rounds: order_by - flash_assists: order_by - flash_duration_count: order_by - flash_duration_sum: order_by - flashes_thrown: order_by - four_kill_rounds: order_by - he_damage: order_by - he_team_damage: order_by - he_throws: order_by - headshot_hits: order_by - hits: order_by - hits_at_spotted: order_by - hs_kills: order_by - hs_kills_ct: order_by - hs_kills_t: order_by - kast_rounds: order_by - kast_total_rounds: order_by - kills: order_by - kills_ct: order_by - kills_t: order_by - knife_kills: order_by - match_id: order_by - match_map_id: order_by - molotov_damage: order_by - molotov_throws: order_by - non_awp_hits: order_by - on_target_frames: order_by - rounds_ct: order_by - rounds_played: order_by - rounds_t: order_by - shots_at_spotted: order_by - shots_fired: order_by - smoke_throws: order_by - spotted_count: order_by - spotted_with_damage_count: order_by - spray_hits: order_by - spray_shots: order_by - steam_id: order_by - team_damage: order_by - team_flashed: order_by - three_kill_rounds: order_by - time_to_damage_count: order_by - time_to_damage_sum_s: order_by - total_engagement_frames: order_by - trade_kill_attempts: order_by - trade_kill_opportunities: order_by - trade_kill_successes: order_by - traded_death_attempts: order_by - traded_death_opportunities: order_by - traded_death_successes: order_by - two_kill_rounds: order_by - unused_utility_value: order_by - updated_at: order_by - util_on_death_count: order_by - util_on_death_sum: order_by - wasted_magazine_shots: order_by - zeus_kills: order_by -} - -"""aggregate min on columns""" -type player_match_map_stats_min_fields { - assists: Int - assists_ct: Int - assists_t: Int - counter_strafe_eligible_shots: Int - counter_strafed_shots: Int - crosshair_angle_count: Int - crosshair_angle_sum_deg: numeric - damage: Int - damage_ct: Int - damage_t: Int - deaths: Int - deaths_ct: Int - deaths_t: Int - decoy_throws: Int - enemies_flashed: Int - first_bullet_hits: Int - first_bullet_shots: Int - five_kill_rounds: Int - flash_assists: Int - flash_duration_count: Int - flash_duration_sum: numeric - flashes_thrown: Int - four_kill_rounds: Int - he_damage: Int - he_team_damage: Int - he_throws: Int - headshot_hits: Int - hits: Int - hits_at_spotted: Int - hs_kills: Int - hs_kills_ct: Int - hs_kills_t: Int - kast_rounds: Int - kast_total_rounds: Int - kills: Int - kills_ct: Int - kills_t: Int - knife_kills: Int - match_id: uuid - match_map_id: uuid - molotov_damage: Int - molotov_throws: Int - non_awp_hits: Int - on_target_frames: Int - rounds_ct: Int - rounds_played: Int - rounds_t: Int - shots_at_spotted: Int - shots_fired: Int - smoke_throws: Int - spotted_count: Int - spotted_with_damage_count: Int - spray_hits: Int - spray_shots: Int - steam_id: bigint - team_damage: Int - team_flashed: Int - three_kill_rounds: Int - time_to_damage_count: Int - time_to_damage_sum_s: numeric - total_engagement_frames: Int - trade_kill_attempts: Int - trade_kill_opportunities: Int - trade_kill_successes: Int - traded_death_attempts: Int - traded_death_opportunities: Int - traded_death_successes: Int - two_kill_rounds: Int - unused_utility_value: Int - updated_at: timestamptz - util_on_death_count: Int - util_on_death_sum: Int - wasted_magazine_shots: Int - zeus_kills: Int -} - -""" -order by min() on columns of table "player_match_map_stats" -""" -input player_match_map_stats_min_order_by { - assists: order_by - assists_ct: order_by - assists_t: order_by - counter_strafe_eligible_shots: order_by - counter_strafed_shots: order_by - crosshair_angle_count: order_by - crosshair_angle_sum_deg: order_by - damage: order_by - damage_ct: order_by - damage_t: order_by - deaths: order_by - deaths_ct: order_by - deaths_t: order_by - decoy_throws: order_by - enemies_flashed: order_by - first_bullet_hits: order_by - first_bullet_shots: order_by - five_kill_rounds: order_by - flash_assists: order_by - flash_duration_count: order_by - flash_duration_sum: order_by - flashes_thrown: order_by - four_kill_rounds: order_by - he_damage: order_by - he_team_damage: order_by - he_throws: order_by - headshot_hits: order_by - hits: order_by - hits_at_spotted: order_by - hs_kills: order_by - hs_kills_ct: order_by - hs_kills_t: order_by - kast_rounds: order_by - kast_total_rounds: order_by - kills: order_by - kills_ct: order_by - kills_t: order_by - knife_kills: order_by - match_id: order_by - match_map_id: order_by - molotov_damage: order_by - molotov_throws: order_by - non_awp_hits: order_by - on_target_frames: order_by - rounds_ct: order_by - rounds_played: order_by - rounds_t: order_by - shots_at_spotted: order_by - shots_fired: order_by - smoke_throws: order_by - spotted_count: order_by - spotted_with_damage_count: order_by - spray_hits: order_by - spray_shots: order_by - steam_id: order_by - team_damage: order_by - team_flashed: order_by - three_kill_rounds: order_by - time_to_damage_count: order_by - time_to_damage_sum_s: order_by - total_engagement_frames: order_by - trade_kill_attempts: order_by - trade_kill_opportunities: order_by - trade_kill_successes: order_by - traded_death_attempts: order_by - traded_death_opportunities: order_by - traded_death_successes: order_by - two_kill_rounds: order_by - unused_utility_value: order_by - updated_at: order_by - util_on_death_count: order_by - util_on_death_sum: order_by - wasted_magazine_shots: order_by - zeus_kills: order_by -} - -""" -response of any mutation on the table "player_match_map_stats" -""" -type player_match_map_stats_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [player_match_map_stats!]! -} - -""" -on_conflict condition type for table "player_match_map_stats" -""" -input player_match_map_stats_on_conflict { - constraint: player_match_map_stats_constraint! - update_columns: [player_match_map_stats_update_column!]! = [] - where: player_match_map_stats_bool_exp -} - -"""Ordering options when selecting data from "player_match_map_stats".""" -input player_match_map_stats_order_by { - assists: order_by - assists_ct: order_by - assists_t: order_by - counter_strafe_eligible_shots: order_by - counter_strafed_shots: order_by - crosshair_angle_count: order_by - crosshair_angle_sum_deg: order_by - damage: order_by - damage_ct: order_by - damage_t: order_by - deaths: order_by - deaths_ct: order_by - deaths_t: order_by - decoy_throws: order_by - enemies_flashed: order_by - first_bullet_hits: order_by - first_bullet_shots: order_by - five_kill_rounds: order_by - flash_assists: order_by - flash_duration_count: order_by - flash_duration_sum: order_by - flashes_thrown: order_by - four_kill_rounds: order_by - he_damage: order_by - he_team_damage: order_by - he_throws: order_by - headshot_hits: order_by - hits: order_by - hits_at_spotted: order_by - hs_kills: order_by - hs_kills_ct: order_by - hs_kills_t: order_by - kast_rounds: order_by - kast_total_rounds: order_by - kills: order_by - kills_ct: order_by - kills_t: order_by - knife_kills: order_by - match: matches_order_by - match_id: order_by - match_map: match_maps_order_by - match_map_id: order_by - molotov_damage: order_by - molotov_throws: order_by - non_awp_hits: order_by - on_target_frames: order_by - player: players_order_by - rounds_ct: order_by - rounds_played: order_by - rounds_t: order_by - shots_at_spotted: order_by - shots_fired: order_by - smoke_throws: order_by - spotted_count: order_by - spotted_with_damage_count: order_by - spray_hits: order_by - spray_shots: order_by - steam_id: order_by - team_damage: order_by - team_flashed: order_by - three_kill_rounds: order_by - time_to_damage_count: order_by - time_to_damage_sum_s: order_by - total_engagement_frames: order_by - trade_kill_attempts: order_by - trade_kill_opportunities: order_by - trade_kill_successes: order_by - traded_death_attempts: order_by - traded_death_opportunities: order_by - traded_death_successes: order_by - two_kill_rounds: order_by - unused_utility_value: order_by - updated_at: order_by - util_on_death_count: order_by - util_on_death_sum: order_by - wasted_magazine_shots: order_by - zeus_kills: order_by -} - -"""primary key columns input for table: player_match_map_stats""" -input player_match_map_stats_pk_columns_input { - match_map_id: uuid! - steam_id: bigint! -} - -""" -select columns of table "player_match_map_stats" -""" -enum player_match_map_stats_select_column { - """column name""" - assists - - """column name""" - assists_ct - - """column name""" - assists_t - - """column name""" - counter_strafe_eligible_shots - - """column name""" - counter_strafed_shots - - """column name""" - crosshair_angle_count - - """column name""" - crosshair_angle_sum_deg - - """column name""" - damage - - """column name""" - damage_ct - - """column name""" - damage_t - - """column name""" - deaths - - """column name""" - deaths_ct - - """column name""" - deaths_t - - """column name""" - decoy_throws - - """column name""" - enemies_flashed - - """column name""" - first_bullet_hits - - """column name""" - first_bullet_shots - - """column name""" - five_kill_rounds - - """column name""" - flash_assists - - """column name""" - flash_duration_count - - """column name""" - flash_duration_sum - - """column name""" - flashes_thrown - - """column name""" - four_kill_rounds - - """column name""" - he_damage - - """column name""" - he_team_damage - - """column name""" - he_throws - - """column name""" - headshot_hits - - """column name""" - hits - - """column name""" - hits_at_spotted - - """column name""" - hs_kills - - """column name""" - hs_kills_ct - - """column name""" - hs_kills_t - - """column name""" - kast_rounds - - """column name""" - kast_total_rounds - - """column name""" - kills - - """column name""" - kills_ct - - """column name""" - kills_t - - """column name""" - knife_kills - - """column name""" - match_id - - """column name""" - match_map_id - - """column name""" - molotov_damage - - """column name""" - molotov_throws - - """column name""" - non_awp_hits - - """column name""" - on_target_frames - - """column name""" - rounds_ct - - """column name""" - rounds_played - - """column name""" - rounds_t - - """column name""" - shots_at_spotted - - """column name""" - shots_fired - - """column name""" - smoke_throws - - """column name""" - spotted_count - - """column name""" - spotted_with_damage_count - - """column name""" - spray_hits - - """column name""" - spray_shots - - """column name""" - steam_id - - """column name""" - team_damage - - """column name""" - team_flashed - - """column name""" - three_kill_rounds - - """column name""" - time_to_damage_count - - """column name""" - time_to_damage_sum_s - - """column name""" - total_engagement_frames - - """column name""" - trade_kill_attempts - - """column name""" - trade_kill_opportunities - - """column name""" - trade_kill_successes - - """column name""" - traded_death_attempts - - """column name""" - traded_death_opportunities - - """column name""" - traded_death_successes - - """column name""" - two_kill_rounds - - """column name""" - unused_utility_value - - """column name""" - updated_at - - """column name""" - util_on_death_count - - """column name""" - util_on_death_sum - - """column name""" - wasted_magazine_shots - - """column name""" - zeus_kills -} - -""" -input type for updating data in table "player_match_map_stats" -""" -input player_match_map_stats_set_input { - assists: Int - assists_ct: Int - assists_t: Int - counter_strafe_eligible_shots: Int - counter_strafed_shots: Int - crosshair_angle_count: Int - crosshair_angle_sum_deg: numeric - damage: Int - damage_ct: Int - damage_t: Int - deaths: Int - deaths_ct: Int - deaths_t: Int - decoy_throws: Int - enemies_flashed: Int - first_bullet_hits: Int - first_bullet_shots: Int - five_kill_rounds: Int - flash_assists: Int - flash_duration_count: Int - flash_duration_sum: numeric - flashes_thrown: Int - four_kill_rounds: Int - he_damage: Int - he_team_damage: Int - he_throws: Int - headshot_hits: Int - hits: Int - hits_at_spotted: Int - hs_kills: Int - hs_kills_ct: Int - hs_kills_t: Int - kast_rounds: Int - kast_total_rounds: Int - kills: Int - kills_ct: Int - kills_t: Int - knife_kills: Int - match_id: uuid - match_map_id: uuid - molotov_damage: Int - molotov_throws: Int - non_awp_hits: Int - on_target_frames: Int - rounds_ct: Int - rounds_played: Int - rounds_t: Int - shots_at_spotted: Int - shots_fired: Int - smoke_throws: Int - spotted_count: Int - spotted_with_damage_count: Int - spray_hits: Int - spray_shots: Int - steam_id: bigint - team_damage: Int - team_flashed: Int - three_kill_rounds: Int - time_to_damage_count: Int - time_to_damage_sum_s: numeric - total_engagement_frames: Int - trade_kill_attempts: Int - trade_kill_opportunities: Int - trade_kill_successes: Int - traded_death_attempts: Int - traded_death_opportunities: Int - traded_death_successes: Int - two_kill_rounds: Int - unused_utility_value: Int - updated_at: timestamptz - util_on_death_count: Int - util_on_death_sum: Int - wasted_magazine_shots: Int - zeus_kills: Int -} - -"""aggregate stddev on columns""" -type player_match_map_stats_stddev_fields { - assists: Float - assists_ct: Float - assists_t: Float - counter_strafe_eligible_shots: Float - counter_strafed_shots: Float - crosshair_angle_count: Float - crosshair_angle_sum_deg: Float - damage: Float - damage_ct: Float - damage_t: Float - deaths: Float - deaths_ct: Float - deaths_t: Float - decoy_throws: Float - enemies_flashed: Float - first_bullet_hits: Float - first_bullet_shots: Float - five_kill_rounds: Float - flash_assists: Float - flash_duration_count: Float - flash_duration_sum: Float - flashes_thrown: Float - four_kill_rounds: Float - he_damage: Float - he_team_damage: Float - he_throws: Float - headshot_hits: Float - hits: Float - hits_at_spotted: Float - hs_kills: Float - hs_kills_ct: Float - hs_kills_t: Float - kast_rounds: Float - kast_total_rounds: Float - kills: Float - kills_ct: Float - kills_t: Float - knife_kills: Float - molotov_damage: Float - molotov_throws: Float - non_awp_hits: Float - on_target_frames: Float - rounds_ct: Float - rounds_played: Float - rounds_t: Float - shots_at_spotted: Float - shots_fired: Float - smoke_throws: Float - spotted_count: Float - spotted_with_damage_count: Float - spray_hits: Float - spray_shots: Float - steam_id: Float - team_damage: Float - team_flashed: Float - three_kill_rounds: Float - time_to_damage_count: Float - time_to_damage_sum_s: Float - total_engagement_frames: Float - trade_kill_attempts: Float - trade_kill_opportunities: Float - trade_kill_successes: Float - traded_death_attempts: Float - traded_death_opportunities: Float - traded_death_successes: Float - two_kill_rounds: Float - unused_utility_value: Float - util_on_death_count: Float - util_on_death_sum: Float - wasted_magazine_shots: Float - zeus_kills: Float -} - -""" -order by stddev() on columns of table "player_match_map_stats" -""" -input player_match_map_stats_stddev_order_by { - assists: order_by - assists_ct: order_by - assists_t: order_by - counter_strafe_eligible_shots: order_by - counter_strafed_shots: order_by - crosshair_angle_count: order_by - crosshair_angle_sum_deg: order_by - damage: order_by - damage_ct: order_by - damage_t: order_by - deaths: order_by - deaths_ct: order_by - deaths_t: order_by - decoy_throws: order_by - enemies_flashed: order_by - first_bullet_hits: order_by - first_bullet_shots: order_by - five_kill_rounds: order_by - flash_assists: order_by - flash_duration_count: order_by - flash_duration_sum: order_by - flashes_thrown: order_by - four_kill_rounds: order_by - he_damage: order_by - he_team_damage: order_by - he_throws: order_by - headshot_hits: order_by - hits: order_by - hits_at_spotted: order_by - hs_kills: order_by - hs_kills_ct: order_by - hs_kills_t: order_by - kast_rounds: order_by - kast_total_rounds: order_by - kills: order_by - kills_ct: order_by - kills_t: order_by - knife_kills: order_by - molotov_damage: order_by - molotov_throws: order_by - non_awp_hits: order_by - on_target_frames: order_by - rounds_ct: order_by - rounds_played: order_by - rounds_t: order_by - shots_at_spotted: order_by - shots_fired: order_by - smoke_throws: order_by - spotted_count: order_by - spotted_with_damage_count: order_by - spray_hits: order_by - spray_shots: order_by - steam_id: order_by - team_damage: order_by - team_flashed: order_by - three_kill_rounds: order_by - time_to_damage_count: order_by - time_to_damage_sum_s: order_by - total_engagement_frames: order_by - trade_kill_attempts: order_by - trade_kill_opportunities: order_by - trade_kill_successes: order_by - traded_death_attempts: order_by - traded_death_opportunities: order_by - traded_death_successes: order_by - two_kill_rounds: order_by - unused_utility_value: order_by - util_on_death_count: order_by - util_on_death_sum: order_by - wasted_magazine_shots: order_by - zeus_kills: order_by -} - -"""aggregate stddev_pop on columns""" -type player_match_map_stats_stddev_pop_fields { - assists: Float - assists_ct: Float - assists_t: Float - counter_strafe_eligible_shots: Float - counter_strafed_shots: Float - crosshair_angle_count: Float - crosshair_angle_sum_deg: Float - damage: Float - damage_ct: Float - damage_t: Float - deaths: Float - deaths_ct: Float - deaths_t: Float - decoy_throws: Float - enemies_flashed: Float - first_bullet_hits: Float - first_bullet_shots: Float - five_kill_rounds: Float - flash_assists: Float - flash_duration_count: Float - flash_duration_sum: Float - flashes_thrown: Float - four_kill_rounds: Float - he_damage: Float - he_team_damage: Float - he_throws: Float - headshot_hits: Float - hits: Float - hits_at_spotted: Float - hs_kills: Float - hs_kills_ct: Float - hs_kills_t: Float - kast_rounds: Float - kast_total_rounds: Float - kills: Float - kills_ct: Float - kills_t: Float - knife_kills: Float - molotov_damage: Float - molotov_throws: Float - non_awp_hits: Float - on_target_frames: Float - rounds_ct: Float - rounds_played: Float - rounds_t: Float - shots_at_spotted: Float - shots_fired: Float - smoke_throws: Float - spotted_count: Float - spotted_with_damage_count: Float - spray_hits: Float - spray_shots: Float - steam_id: Float - team_damage: Float - team_flashed: Float - three_kill_rounds: Float - time_to_damage_count: Float - time_to_damage_sum_s: Float - total_engagement_frames: Float - trade_kill_attempts: Float - trade_kill_opportunities: Float - trade_kill_successes: Float - traded_death_attempts: Float - traded_death_opportunities: Float - traded_death_successes: Float - two_kill_rounds: Float - unused_utility_value: Float - util_on_death_count: Float - util_on_death_sum: Float - wasted_magazine_shots: Float - zeus_kills: Float -} - -""" -order by stddev_pop() on columns of table "player_match_map_stats" -""" -input player_match_map_stats_stddev_pop_order_by { - assists: order_by - assists_ct: order_by - assists_t: order_by - counter_strafe_eligible_shots: order_by - counter_strafed_shots: order_by - crosshair_angle_count: order_by - crosshair_angle_sum_deg: order_by - damage: order_by - damage_ct: order_by - damage_t: order_by - deaths: order_by - deaths_ct: order_by - deaths_t: order_by - decoy_throws: order_by - enemies_flashed: order_by - first_bullet_hits: order_by - first_bullet_shots: order_by - five_kill_rounds: order_by - flash_assists: order_by - flash_duration_count: order_by - flash_duration_sum: order_by - flashes_thrown: order_by - four_kill_rounds: order_by - he_damage: order_by - he_team_damage: order_by - he_throws: order_by - headshot_hits: order_by - hits: order_by - hits_at_spotted: order_by - hs_kills: order_by - hs_kills_ct: order_by - hs_kills_t: order_by - kast_rounds: order_by - kast_total_rounds: order_by - kills: order_by - kills_ct: order_by - kills_t: order_by - knife_kills: order_by - molotov_damage: order_by - molotov_throws: order_by - non_awp_hits: order_by - on_target_frames: order_by - rounds_ct: order_by - rounds_played: order_by - rounds_t: order_by - shots_at_spotted: order_by - shots_fired: order_by - smoke_throws: order_by - spotted_count: order_by - spotted_with_damage_count: order_by - spray_hits: order_by - spray_shots: order_by - steam_id: order_by - team_damage: order_by - team_flashed: order_by - three_kill_rounds: order_by - time_to_damage_count: order_by - time_to_damage_sum_s: order_by - total_engagement_frames: order_by - trade_kill_attempts: order_by - trade_kill_opportunities: order_by - trade_kill_successes: order_by - traded_death_attempts: order_by - traded_death_opportunities: order_by - traded_death_successes: order_by - two_kill_rounds: order_by - unused_utility_value: order_by - util_on_death_count: order_by - util_on_death_sum: order_by - wasted_magazine_shots: order_by - zeus_kills: order_by -} - -"""aggregate stddev_samp on columns""" -type player_match_map_stats_stddev_samp_fields { - assists: Float - assists_ct: Float - assists_t: Float - counter_strafe_eligible_shots: Float - counter_strafed_shots: Float - crosshair_angle_count: Float - crosshair_angle_sum_deg: Float - damage: Float - damage_ct: Float - damage_t: Float - deaths: Float - deaths_ct: Float - deaths_t: Float - decoy_throws: Float - enemies_flashed: Float - first_bullet_hits: Float - first_bullet_shots: Float - five_kill_rounds: Float - flash_assists: Float - flash_duration_count: Float - flash_duration_sum: Float - flashes_thrown: Float - four_kill_rounds: Float - he_damage: Float - he_team_damage: Float - he_throws: Float - headshot_hits: Float - hits: Float - hits_at_spotted: Float - hs_kills: Float - hs_kills_ct: Float - hs_kills_t: Float - kast_rounds: Float - kast_total_rounds: Float - kills: Float - kills_ct: Float - kills_t: Float - knife_kills: Float - molotov_damage: Float - molotov_throws: Float - non_awp_hits: Float - on_target_frames: Float - rounds_ct: Float - rounds_played: Float - rounds_t: Float - shots_at_spotted: Float - shots_fired: Float - smoke_throws: Float - spotted_count: Float - spotted_with_damage_count: Float - spray_hits: Float - spray_shots: Float - steam_id: Float - team_damage: Float - team_flashed: Float - three_kill_rounds: Float - time_to_damage_count: Float - time_to_damage_sum_s: Float - total_engagement_frames: Float - trade_kill_attempts: Float - trade_kill_opportunities: Float - trade_kill_successes: Float - traded_death_attempts: Float - traded_death_opportunities: Float - traded_death_successes: Float - two_kill_rounds: Float - unused_utility_value: Float - util_on_death_count: Float - util_on_death_sum: Float - wasted_magazine_shots: Float - zeus_kills: Float -} - -""" -order by stddev_samp() on columns of table "player_match_map_stats" -""" -input player_match_map_stats_stddev_samp_order_by { - assists: order_by - assists_ct: order_by - assists_t: order_by - counter_strafe_eligible_shots: order_by - counter_strafed_shots: order_by - crosshair_angle_count: order_by - crosshair_angle_sum_deg: order_by - damage: order_by - damage_ct: order_by - damage_t: order_by - deaths: order_by - deaths_ct: order_by - deaths_t: order_by - decoy_throws: order_by - enemies_flashed: order_by - first_bullet_hits: order_by - first_bullet_shots: order_by - five_kill_rounds: order_by - flash_assists: order_by - flash_duration_count: order_by - flash_duration_sum: order_by - flashes_thrown: order_by - four_kill_rounds: order_by - he_damage: order_by - he_team_damage: order_by - he_throws: order_by - headshot_hits: order_by - hits: order_by - hits_at_spotted: order_by - hs_kills: order_by - hs_kills_ct: order_by - hs_kills_t: order_by - kast_rounds: order_by - kast_total_rounds: order_by - kills: order_by - kills_ct: order_by - kills_t: order_by - knife_kills: order_by - molotov_damage: order_by - molotov_throws: order_by - non_awp_hits: order_by - on_target_frames: order_by - rounds_ct: order_by - rounds_played: order_by - rounds_t: order_by - shots_at_spotted: order_by - shots_fired: order_by - smoke_throws: order_by - spotted_count: order_by - spotted_with_damage_count: order_by - spray_hits: order_by - spray_shots: order_by - steam_id: order_by - team_damage: order_by - team_flashed: order_by - three_kill_rounds: order_by - time_to_damage_count: order_by - time_to_damage_sum_s: order_by - total_engagement_frames: order_by - trade_kill_attempts: order_by - trade_kill_opportunities: order_by - trade_kill_successes: order_by - traded_death_attempts: order_by - traded_death_opportunities: order_by - traded_death_successes: order_by - two_kill_rounds: order_by - unused_utility_value: order_by - util_on_death_count: order_by - util_on_death_sum: order_by - wasted_magazine_shots: order_by - zeus_kills: order_by -} - -""" -Streaming cursor of the table "player_match_map_stats" -""" -input player_match_map_stats_stream_cursor_input { - """Stream column input with initial value""" - initial_value: player_match_map_stats_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input player_match_map_stats_stream_cursor_value_input { - assists: Int - assists_ct: Int - assists_t: Int - counter_strafe_eligible_shots: Int - counter_strafed_shots: Int - crosshair_angle_count: Int - crosshair_angle_sum_deg: numeric - damage: Int - damage_ct: Int - damage_t: Int - deaths: Int - deaths_ct: Int - deaths_t: Int - decoy_throws: Int - enemies_flashed: Int - first_bullet_hits: Int - first_bullet_shots: Int - five_kill_rounds: Int - flash_assists: Int - flash_duration_count: Int - flash_duration_sum: numeric - flashes_thrown: Int - four_kill_rounds: Int - he_damage: Int - he_team_damage: Int - he_throws: Int - headshot_hits: Int - hits: Int - hits_at_spotted: Int - hs_kills: Int - hs_kills_ct: Int - hs_kills_t: Int - kast_rounds: Int - kast_total_rounds: Int - kills: Int - kills_ct: Int - kills_t: Int - knife_kills: Int - match_id: uuid - match_map_id: uuid - molotov_damage: Int - molotov_throws: Int - non_awp_hits: Int - on_target_frames: Int - rounds_ct: Int - rounds_played: Int - rounds_t: Int - shots_at_spotted: Int - shots_fired: Int - smoke_throws: Int - spotted_count: Int - spotted_with_damage_count: Int - spray_hits: Int - spray_shots: Int - steam_id: bigint - team_damage: Int - team_flashed: Int - three_kill_rounds: Int - time_to_damage_count: Int - time_to_damage_sum_s: numeric - total_engagement_frames: Int - trade_kill_attempts: Int - trade_kill_opportunities: Int - trade_kill_successes: Int - traded_death_attempts: Int - traded_death_opportunities: Int - traded_death_successes: Int - two_kill_rounds: Int - unused_utility_value: Int - updated_at: timestamptz - util_on_death_count: Int - util_on_death_sum: Int - wasted_magazine_shots: Int - zeus_kills: Int -} - -"""aggregate sum on columns""" -type player_match_map_stats_sum_fields { - assists: Int - assists_ct: Int - assists_t: Int - counter_strafe_eligible_shots: Int - counter_strafed_shots: Int - crosshair_angle_count: Int - crosshair_angle_sum_deg: numeric - damage: Int - damage_ct: Int - damage_t: Int - deaths: Int - deaths_ct: Int - deaths_t: Int - decoy_throws: Int - enemies_flashed: Int - first_bullet_hits: Int - first_bullet_shots: Int - five_kill_rounds: Int - flash_assists: Int - flash_duration_count: Int - flash_duration_sum: numeric - flashes_thrown: Int - four_kill_rounds: Int - he_damage: Int - he_team_damage: Int - he_throws: Int - headshot_hits: Int - hits: Int - hits_at_spotted: Int - hs_kills: Int - hs_kills_ct: Int - hs_kills_t: Int - kast_rounds: Int - kast_total_rounds: Int - kills: Int - kills_ct: Int - kills_t: Int - knife_kills: Int - molotov_damage: Int - molotov_throws: Int - non_awp_hits: Int - on_target_frames: Int - rounds_ct: Int - rounds_played: Int - rounds_t: Int - shots_at_spotted: Int - shots_fired: Int - smoke_throws: Int - spotted_count: Int - spotted_with_damage_count: Int - spray_hits: Int - spray_shots: Int - steam_id: bigint - team_damage: Int - team_flashed: Int - three_kill_rounds: Int - time_to_damage_count: Int - time_to_damage_sum_s: numeric - total_engagement_frames: Int - trade_kill_attempts: Int - trade_kill_opportunities: Int - trade_kill_successes: Int - traded_death_attempts: Int - traded_death_opportunities: Int - traded_death_successes: Int - two_kill_rounds: Int - unused_utility_value: Int - util_on_death_count: Int - util_on_death_sum: Int - wasted_magazine_shots: Int - zeus_kills: Int -} - -""" -order by sum() on columns of table "player_match_map_stats" -""" -input player_match_map_stats_sum_order_by { - assists: order_by - assists_ct: order_by - assists_t: order_by - counter_strafe_eligible_shots: order_by - counter_strafed_shots: order_by - crosshair_angle_count: order_by - crosshair_angle_sum_deg: order_by - damage: order_by - damage_ct: order_by - damage_t: order_by - deaths: order_by - deaths_ct: order_by - deaths_t: order_by - decoy_throws: order_by - enemies_flashed: order_by - first_bullet_hits: order_by - first_bullet_shots: order_by - five_kill_rounds: order_by - flash_assists: order_by - flash_duration_count: order_by - flash_duration_sum: order_by - flashes_thrown: order_by - four_kill_rounds: order_by - he_damage: order_by - he_team_damage: order_by - he_throws: order_by - headshot_hits: order_by - hits: order_by - hits_at_spotted: order_by - hs_kills: order_by - hs_kills_ct: order_by - hs_kills_t: order_by - kast_rounds: order_by - kast_total_rounds: order_by - kills: order_by - kills_ct: order_by - kills_t: order_by - knife_kills: order_by - molotov_damage: order_by - molotov_throws: order_by - non_awp_hits: order_by - on_target_frames: order_by - rounds_ct: order_by - rounds_played: order_by - rounds_t: order_by - shots_at_spotted: order_by - shots_fired: order_by - smoke_throws: order_by - spotted_count: order_by - spotted_with_damage_count: order_by - spray_hits: order_by - spray_shots: order_by - steam_id: order_by - team_damage: order_by - team_flashed: order_by - three_kill_rounds: order_by - time_to_damage_count: order_by - time_to_damage_sum_s: order_by - total_engagement_frames: order_by - trade_kill_attempts: order_by - trade_kill_opportunities: order_by - trade_kill_successes: order_by - traded_death_attempts: order_by - traded_death_opportunities: order_by - traded_death_successes: order_by - two_kill_rounds: order_by - unused_utility_value: order_by - util_on_death_count: order_by - util_on_death_sum: order_by - wasted_magazine_shots: order_by - zeus_kills: order_by -} - -""" -update columns of table "player_match_map_stats" -""" -enum player_match_map_stats_update_column { - """column name""" - assists - - """column name""" - assists_ct - - """column name""" - assists_t - - """column name""" - counter_strafe_eligible_shots - - """column name""" - counter_strafed_shots - - """column name""" - crosshair_angle_count - - """column name""" - crosshair_angle_sum_deg - - """column name""" - damage - - """column name""" - damage_ct - - """column name""" - damage_t - - """column name""" - deaths - - """column name""" - deaths_ct - - """column name""" - deaths_t - - """column name""" - decoy_throws - - """column name""" - enemies_flashed - - """column name""" - first_bullet_hits - - """column name""" - first_bullet_shots - - """column name""" - five_kill_rounds - - """column name""" - flash_assists - - """column name""" - flash_duration_count - - """column name""" - flash_duration_sum - - """column name""" - flashes_thrown - - """column name""" - four_kill_rounds - - """column name""" - he_damage - - """column name""" - he_team_damage - - """column name""" - he_throws - - """column name""" - headshot_hits - - """column name""" - hits - - """column name""" - hits_at_spotted - - """column name""" - hs_kills - - """column name""" - hs_kills_ct - - """column name""" - hs_kills_t - - """column name""" - kast_rounds - - """column name""" - kast_total_rounds - - """column name""" - kills - - """column name""" - kills_ct - - """column name""" - kills_t - - """column name""" - knife_kills - - """column name""" - match_id - - """column name""" - match_map_id - - """column name""" - molotov_damage - - """column name""" - molotov_throws - - """column name""" - non_awp_hits - - """column name""" - on_target_frames - - """column name""" - rounds_ct - - """column name""" - rounds_played - - """column name""" - rounds_t - - """column name""" - shots_at_spotted - - """column name""" - shots_fired - - """column name""" - smoke_throws - - """column name""" - spotted_count - - """column name""" - spotted_with_damage_count - - """column name""" - spray_hits - - """column name""" - spray_shots - - """column name""" - steam_id - - """column name""" - team_damage - - """column name""" - team_flashed - - """column name""" - three_kill_rounds - - """column name""" - time_to_damage_count - - """column name""" - time_to_damage_sum_s - - """column name""" - total_engagement_frames - - """column name""" - trade_kill_attempts - - """column name""" - trade_kill_opportunities - - """column name""" - trade_kill_successes - - """column name""" - traded_death_attempts - - """column name""" - traded_death_opportunities - - """column name""" - traded_death_successes - - """column name""" - two_kill_rounds - - """column name""" - unused_utility_value - - """column name""" - updated_at - - """column name""" - util_on_death_count - - """column name""" - util_on_death_sum - - """column name""" - wasted_magazine_shots - - """column name""" - zeus_kills -} - -input player_match_map_stats_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: player_match_map_stats_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_match_map_stats_set_input - - """filter the rows which have to be updated""" - where: player_match_map_stats_bool_exp! -} - -"""aggregate var_pop on columns""" -type player_match_map_stats_var_pop_fields { - assists: Float - assists_ct: Float - assists_t: Float - counter_strafe_eligible_shots: Float - counter_strafed_shots: Float - crosshair_angle_count: Float - crosshair_angle_sum_deg: Float - damage: Float - damage_ct: Float - damage_t: Float - deaths: Float - deaths_ct: Float - deaths_t: Float - decoy_throws: Float - enemies_flashed: Float - first_bullet_hits: Float - first_bullet_shots: Float - five_kill_rounds: Float - flash_assists: Float - flash_duration_count: Float - flash_duration_sum: Float - flashes_thrown: Float - four_kill_rounds: Float - he_damage: Float - he_team_damage: Float - he_throws: Float - headshot_hits: Float - hits: Float - hits_at_spotted: Float - hs_kills: Float - hs_kills_ct: Float - hs_kills_t: Float - kast_rounds: Float - kast_total_rounds: Float - kills: Float - kills_ct: Float - kills_t: Float - knife_kills: Float - molotov_damage: Float - molotov_throws: Float - non_awp_hits: Float - on_target_frames: Float - rounds_ct: Float - rounds_played: Float - rounds_t: Float - shots_at_spotted: Float - shots_fired: Float - smoke_throws: Float - spotted_count: Float - spotted_with_damage_count: Float - spray_hits: Float - spray_shots: Float - steam_id: Float - team_damage: Float - team_flashed: Float - three_kill_rounds: Float - time_to_damage_count: Float - time_to_damage_sum_s: Float - total_engagement_frames: Float - trade_kill_attempts: Float - trade_kill_opportunities: Float - trade_kill_successes: Float - traded_death_attempts: Float - traded_death_opportunities: Float - traded_death_successes: Float - two_kill_rounds: Float - unused_utility_value: Float - util_on_death_count: Float - util_on_death_sum: Float - wasted_magazine_shots: Float - zeus_kills: Float -} - -""" -order by var_pop() on columns of table "player_match_map_stats" -""" -input player_match_map_stats_var_pop_order_by { - assists: order_by - assists_ct: order_by - assists_t: order_by - counter_strafe_eligible_shots: order_by - counter_strafed_shots: order_by - crosshair_angle_count: order_by - crosshair_angle_sum_deg: order_by - damage: order_by - damage_ct: order_by - damage_t: order_by - deaths: order_by - deaths_ct: order_by - deaths_t: order_by - decoy_throws: order_by - enemies_flashed: order_by - first_bullet_hits: order_by - first_bullet_shots: order_by - five_kill_rounds: order_by - flash_assists: order_by - flash_duration_count: order_by - flash_duration_sum: order_by - flashes_thrown: order_by - four_kill_rounds: order_by - he_damage: order_by - he_team_damage: order_by - he_throws: order_by - headshot_hits: order_by - hits: order_by - hits_at_spotted: order_by - hs_kills: order_by - hs_kills_ct: order_by - hs_kills_t: order_by - kast_rounds: order_by - kast_total_rounds: order_by - kills: order_by - kills_ct: order_by - kills_t: order_by - knife_kills: order_by - molotov_damage: order_by - molotov_throws: order_by - non_awp_hits: order_by - on_target_frames: order_by - rounds_ct: order_by - rounds_played: order_by - rounds_t: order_by - shots_at_spotted: order_by - shots_fired: order_by - smoke_throws: order_by - spotted_count: order_by - spotted_with_damage_count: order_by - spray_hits: order_by - spray_shots: order_by - steam_id: order_by - team_damage: order_by - team_flashed: order_by - three_kill_rounds: order_by - time_to_damage_count: order_by - time_to_damage_sum_s: order_by - total_engagement_frames: order_by - trade_kill_attempts: order_by - trade_kill_opportunities: order_by - trade_kill_successes: order_by - traded_death_attempts: order_by - traded_death_opportunities: order_by - traded_death_successes: order_by - two_kill_rounds: order_by - unused_utility_value: order_by - util_on_death_count: order_by - util_on_death_sum: order_by - wasted_magazine_shots: order_by - zeus_kills: order_by -} - -"""aggregate var_samp on columns""" -type player_match_map_stats_var_samp_fields { - assists: Float - assists_ct: Float - assists_t: Float - counter_strafe_eligible_shots: Float - counter_strafed_shots: Float - crosshair_angle_count: Float - crosshair_angle_sum_deg: Float - damage: Float - damage_ct: Float - damage_t: Float - deaths: Float - deaths_ct: Float - deaths_t: Float - decoy_throws: Float - enemies_flashed: Float - first_bullet_hits: Float - first_bullet_shots: Float - five_kill_rounds: Float - flash_assists: Float - flash_duration_count: Float - flash_duration_sum: Float - flashes_thrown: Float - four_kill_rounds: Float - he_damage: Float - he_team_damage: Float - he_throws: Float - headshot_hits: Float - hits: Float - hits_at_spotted: Float - hs_kills: Float - hs_kills_ct: Float - hs_kills_t: Float - kast_rounds: Float - kast_total_rounds: Float - kills: Float - kills_ct: Float - kills_t: Float - knife_kills: Float - molotov_damage: Float - molotov_throws: Float - non_awp_hits: Float - on_target_frames: Float - rounds_ct: Float - rounds_played: Float - rounds_t: Float - shots_at_spotted: Float - shots_fired: Float - smoke_throws: Float - spotted_count: Float - spotted_with_damage_count: Float - spray_hits: Float - spray_shots: Float - steam_id: Float - team_damage: Float - team_flashed: Float - three_kill_rounds: Float - time_to_damage_count: Float - time_to_damage_sum_s: Float - total_engagement_frames: Float - trade_kill_attempts: Float - trade_kill_opportunities: Float - trade_kill_successes: Float - traded_death_attempts: Float - traded_death_opportunities: Float - traded_death_successes: Float - two_kill_rounds: Float - unused_utility_value: Float - util_on_death_count: Float - util_on_death_sum: Float - wasted_magazine_shots: Float - zeus_kills: Float -} - -""" -order by var_samp() on columns of table "player_match_map_stats" -""" -input player_match_map_stats_var_samp_order_by { - assists: order_by - assists_ct: order_by - assists_t: order_by - counter_strafe_eligible_shots: order_by - counter_strafed_shots: order_by - crosshair_angle_count: order_by - crosshair_angle_sum_deg: order_by - damage: order_by - damage_ct: order_by - damage_t: order_by - deaths: order_by - deaths_ct: order_by - deaths_t: order_by - decoy_throws: order_by - enemies_flashed: order_by - first_bullet_hits: order_by - first_bullet_shots: order_by - five_kill_rounds: order_by - flash_assists: order_by - flash_duration_count: order_by - flash_duration_sum: order_by - flashes_thrown: order_by - four_kill_rounds: order_by - he_damage: order_by - he_team_damage: order_by - he_throws: order_by - headshot_hits: order_by - hits: order_by - hits_at_spotted: order_by - hs_kills: order_by - hs_kills_ct: order_by - hs_kills_t: order_by - kast_rounds: order_by - kast_total_rounds: order_by - kills: order_by - kills_ct: order_by - kills_t: order_by - knife_kills: order_by - molotov_damage: order_by - molotov_throws: order_by - non_awp_hits: order_by - on_target_frames: order_by - rounds_ct: order_by - rounds_played: order_by - rounds_t: order_by - shots_at_spotted: order_by - shots_fired: order_by - smoke_throws: order_by - spotted_count: order_by - spotted_with_damage_count: order_by - spray_hits: order_by - spray_shots: order_by - steam_id: order_by - team_damage: order_by - team_flashed: order_by - three_kill_rounds: order_by - time_to_damage_count: order_by - time_to_damage_sum_s: order_by - total_engagement_frames: order_by - trade_kill_attempts: order_by - trade_kill_opportunities: order_by - trade_kill_successes: order_by - traded_death_attempts: order_by - traded_death_opportunities: order_by - traded_death_successes: order_by - two_kill_rounds: order_by - unused_utility_value: order_by - util_on_death_count: order_by - util_on_death_sum: order_by - wasted_magazine_shots: order_by - zeus_kills: order_by -} - -"""aggregate variance on columns""" -type player_match_map_stats_variance_fields { - assists: Float - assists_ct: Float - assists_t: Float - counter_strafe_eligible_shots: Float - counter_strafed_shots: Float - crosshair_angle_count: Float - crosshair_angle_sum_deg: Float - damage: Float - damage_ct: Float - damage_t: Float - deaths: Float - deaths_ct: Float - deaths_t: Float - decoy_throws: Float - enemies_flashed: Float - first_bullet_hits: Float - first_bullet_shots: Float - five_kill_rounds: Float - flash_assists: Float - flash_duration_count: Float - flash_duration_sum: Float - flashes_thrown: Float - four_kill_rounds: Float - he_damage: Float - he_team_damage: Float - he_throws: Float - headshot_hits: Float - hits: Float - hits_at_spotted: Float - hs_kills: Float - hs_kills_ct: Float - hs_kills_t: Float - kast_rounds: Float - kast_total_rounds: Float - kills: Float - kills_ct: Float - kills_t: Float - knife_kills: Float - molotov_damage: Float - molotov_throws: Float - non_awp_hits: Float - on_target_frames: Float - rounds_ct: Float - rounds_played: Float - rounds_t: Float - shots_at_spotted: Float - shots_fired: Float - smoke_throws: Float - spotted_count: Float - spotted_with_damage_count: Float - spray_hits: Float - spray_shots: Float - steam_id: Float - team_damage: Float - team_flashed: Float - three_kill_rounds: Float - time_to_damage_count: Float - time_to_damage_sum_s: Float - total_engagement_frames: Float - trade_kill_attempts: Float - trade_kill_opportunities: Float - trade_kill_successes: Float - traded_death_attempts: Float - traded_death_opportunities: Float - traded_death_successes: Float - two_kill_rounds: Float - unused_utility_value: Float - util_on_death_count: Float - util_on_death_sum: Float - wasted_magazine_shots: Float - zeus_kills: Float -} - -""" -order by variance() on columns of table "player_match_map_stats" -""" -input player_match_map_stats_variance_order_by { - assists: order_by - assists_ct: order_by - assists_t: order_by - counter_strafe_eligible_shots: order_by - counter_strafed_shots: order_by - crosshair_angle_count: order_by - crosshair_angle_sum_deg: order_by - damage: order_by - damage_ct: order_by - damage_t: order_by - deaths: order_by - deaths_ct: order_by - deaths_t: order_by - decoy_throws: order_by - enemies_flashed: order_by - first_bullet_hits: order_by - first_bullet_shots: order_by - five_kill_rounds: order_by - flash_assists: order_by - flash_duration_count: order_by - flash_duration_sum: order_by - flashes_thrown: order_by - four_kill_rounds: order_by - he_damage: order_by - he_team_damage: order_by - he_throws: order_by - headshot_hits: order_by - hits: order_by - hits_at_spotted: order_by - hs_kills: order_by - hs_kills_ct: order_by - hs_kills_t: order_by - kast_rounds: order_by - kast_total_rounds: order_by - kills: order_by - kills_ct: order_by - kills_t: order_by - knife_kills: order_by - molotov_damage: order_by - molotov_throws: order_by - non_awp_hits: order_by - on_target_frames: order_by - rounds_ct: order_by - rounds_played: order_by - rounds_t: order_by - shots_at_spotted: order_by - shots_fired: order_by - smoke_throws: order_by - spotted_count: order_by - spotted_with_damage_count: order_by - spray_hits: order_by - spray_shots: order_by - steam_id: order_by - team_damage: order_by - team_flashed: order_by - three_kill_rounds: order_by - time_to_damage_count: order_by - time_to_damage_sum_s: order_by - total_engagement_frames: order_by - trade_kill_attempts: order_by - trade_kill_opportunities: order_by - trade_kill_successes: order_by - traded_death_attempts: order_by - traded_death_opportunities: order_by - traded_death_successes: order_by - two_kill_rounds: order_by - unused_utility_value: order_by - util_on_death_count: order_by - util_on_death_sum: order_by - wasted_magazine_shots: order_by - zeus_kills: order_by -} - -""" -columns and relationships of "player_match_performance_v" -""" -type player_match_performance_v { - accuracy: numeric - accuracy_spotted: numeric - aim_rating: float8 - counter_strafe_pct: numeric - enemy_blind_pr: numeric - flash_assists_pr: numeric - hs_pct: numeric - kast_pct: numeric - match_id: uuid - overall_rating: float8 - played_at: timestamptz - positioning_rating: float8 - rounds: Int - source: String - steam_id: bigint - survival_pct: numeric - traded_death_pct: numeric - util_efficiency: numeric - utility_rating: float8 -} - -""" -aggregated selection of "player_match_performance_v" -""" -type player_match_performance_v_aggregate { - aggregate: player_match_performance_v_aggregate_fields - nodes: [player_match_performance_v!]! -} - -""" -aggregate fields of "player_match_performance_v" -""" -type player_match_performance_v_aggregate_fields { - avg: player_match_performance_v_avg_fields - count(columns: [player_match_performance_v_select_column!], distinct: Boolean): Int! - max: player_match_performance_v_max_fields - min: player_match_performance_v_min_fields - stddev: player_match_performance_v_stddev_fields - stddev_pop: player_match_performance_v_stddev_pop_fields - stddev_samp: player_match_performance_v_stddev_samp_fields - sum: player_match_performance_v_sum_fields - var_pop: player_match_performance_v_var_pop_fields - var_samp: player_match_performance_v_var_samp_fields - variance: player_match_performance_v_variance_fields -} - -"""aggregate avg on columns""" -type player_match_performance_v_avg_fields { - accuracy: Float - accuracy_spotted: Float - aim_rating: Float - counter_strafe_pct: Float - enemy_blind_pr: Float - flash_assists_pr: Float - hs_pct: Float - kast_pct: Float - overall_rating: Float - positioning_rating: Float - rounds: Float - steam_id: Float - survival_pct: Float - traded_death_pct: Float - util_efficiency: Float - utility_rating: Float -} - -""" -Boolean expression to filter rows from the table "player_match_performance_v". All fields are combined with a logical 'AND'. -""" -input player_match_performance_v_bool_exp { - _and: [player_match_performance_v_bool_exp!] - _not: player_match_performance_v_bool_exp - _or: [player_match_performance_v_bool_exp!] - accuracy: numeric_comparison_exp - accuracy_spotted: numeric_comparison_exp - aim_rating: float8_comparison_exp - counter_strafe_pct: numeric_comparison_exp - enemy_blind_pr: numeric_comparison_exp - flash_assists_pr: numeric_comparison_exp - hs_pct: numeric_comparison_exp - kast_pct: numeric_comparison_exp - match_id: uuid_comparison_exp - overall_rating: float8_comparison_exp - played_at: timestamptz_comparison_exp - positioning_rating: float8_comparison_exp - rounds: Int_comparison_exp - source: String_comparison_exp - steam_id: bigint_comparison_exp - survival_pct: numeric_comparison_exp - traded_death_pct: numeric_comparison_exp - util_efficiency: numeric_comparison_exp - utility_rating: float8_comparison_exp -} - -"""aggregate max on columns""" -type player_match_performance_v_max_fields { - accuracy: numeric - accuracy_spotted: numeric - aim_rating: float8 - counter_strafe_pct: numeric - enemy_blind_pr: numeric - flash_assists_pr: numeric - hs_pct: numeric - kast_pct: numeric - match_id: uuid - overall_rating: float8 - played_at: timestamptz - positioning_rating: float8 - rounds: Int - source: String - steam_id: bigint - survival_pct: numeric - traded_death_pct: numeric - util_efficiency: numeric - utility_rating: float8 -} - -"""aggregate min on columns""" -type player_match_performance_v_min_fields { - accuracy: numeric - accuracy_spotted: numeric - aim_rating: float8 - counter_strafe_pct: numeric - enemy_blind_pr: numeric - flash_assists_pr: numeric - hs_pct: numeric - kast_pct: numeric - match_id: uuid - overall_rating: float8 - played_at: timestamptz - positioning_rating: float8 - rounds: Int - source: String - steam_id: bigint - survival_pct: numeric - traded_death_pct: numeric - util_efficiency: numeric - utility_rating: float8 -} - -""" -Ordering options when selecting data from "player_match_performance_v". -""" -input player_match_performance_v_order_by { - accuracy: order_by - accuracy_spotted: order_by - aim_rating: order_by - counter_strafe_pct: order_by - enemy_blind_pr: order_by - flash_assists_pr: order_by - hs_pct: order_by - kast_pct: order_by - match_id: order_by - overall_rating: order_by - played_at: order_by - positioning_rating: order_by - rounds: order_by - source: order_by - steam_id: order_by - survival_pct: order_by - traded_death_pct: order_by - util_efficiency: order_by - utility_rating: order_by -} - -""" -select columns of table "player_match_performance_v" -""" -enum player_match_performance_v_select_column { - """column name""" - accuracy - - """column name""" - accuracy_spotted - - """column name""" - aim_rating - - """column name""" - counter_strafe_pct - - """column name""" - enemy_blind_pr - - """column name""" - flash_assists_pr - - """column name""" - hs_pct - - """column name""" - kast_pct - - """column name""" - match_id - - """column name""" - overall_rating - - """column name""" - played_at - - """column name""" - positioning_rating - - """column name""" - rounds - - """column name""" - source - - """column name""" - steam_id - - """column name""" - survival_pct - - """column name""" - traded_death_pct - - """column name""" - util_efficiency - - """column name""" - utility_rating -} - -"""aggregate stddev on columns""" -type player_match_performance_v_stddev_fields { - accuracy: Float - accuracy_spotted: Float - aim_rating: Float - counter_strafe_pct: Float - enemy_blind_pr: Float - flash_assists_pr: Float - hs_pct: Float - kast_pct: Float - overall_rating: Float - positioning_rating: Float - rounds: Float - steam_id: Float - survival_pct: Float - traded_death_pct: Float - util_efficiency: Float - utility_rating: Float -} - -"""aggregate stddev_pop on columns""" -type player_match_performance_v_stddev_pop_fields { - accuracy: Float - accuracy_spotted: Float - aim_rating: Float - counter_strafe_pct: Float - enemy_blind_pr: Float - flash_assists_pr: Float - hs_pct: Float - kast_pct: Float - overall_rating: Float - positioning_rating: Float - rounds: Float - steam_id: Float - survival_pct: Float - traded_death_pct: Float - util_efficiency: Float - utility_rating: Float -} - -"""aggregate stddev_samp on columns""" -type player_match_performance_v_stddev_samp_fields { - accuracy: Float - accuracy_spotted: Float - aim_rating: Float - counter_strafe_pct: Float - enemy_blind_pr: Float - flash_assists_pr: Float - hs_pct: Float - kast_pct: Float - overall_rating: Float - positioning_rating: Float - rounds: Float - steam_id: Float - survival_pct: Float - traded_death_pct: Float - util_efficiency: Float - utility_rating: Float -} - -""" -Streaming cursor of the table "player_match_performance_v" -""" -input player_match_performance_v_stream_cursor_input { - """Stream column input with initial value""" - initial_value: player_match_performance_v_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input player_match_performance_v_stream_cursor_value_input { - accuracy: numeric - accuracy_spotted: numeric - aim_rating: float8 - counter_strafe_pct: numeric - enemy_blind_pr: numeric - flash_assists_pr: numeric - hs_pct: numeric - kast_pct: numeric - match_id: uuid - overall_rating: float8 - played_at: timestamptz - positioning_rating: float8 - rounds: Int - source: String - steam_id: bigint - survival_pct: numeric - traded_death_pct: numeric - util_efficiency: numeric - utility_rating: float8 -} - -"""aggregate sum on columns""" -type player_match_performance_v_sum_fields { - accuracy: numeric - accuracy_spotted: numeric - aim_rating: float8 - counter_strafe_pct: numeric - enemy_blind_pr: numeric - flash_assists_pr: numeric - hs_pct: numeric - kast_pct: numeric - overall_rating: float8 - positioning_rating: float8 - rounds: Int - steam_id: bigint - survival_pct: numeric - traded_death_pct: numeric - util_efficiency: numeric - utility_rating: float8 -} - -"""aggregate var_pop on columns""" -type player_match_performance_v_var_pop_fields { - accuracy: Float - accuracy_spotted: Float - aim_rating: Float - counter_strafe_pct: Float - enemy_blind_pr: Float - flash_assists_pr: Float - hs_pct: Float - kast_pct: Float - overall_rating: Float - positioning_rating: Float - rounds: Float - steam_id: Float - survival_pct: Float - traded_death_pct: Float - util_efficiency: Float - utility_rating: Float -} - -"""aggregate var_samp on columns""" -type player_match_performance_v_var_samp_fields { - accuracy: Float - accuracy_spotted: Float - aim_rating: Float - counter_strafe_pct: Float - enemy_blind_pr: Float - flash_assists_pr: Float - hs_pct: Float - kast_pct: Float - overall_rating: Float - positioning_rating: Float - rounds: Float - steam_id: Float - survival_pct: Float - traded_death_pct: Float - util_efficiency: Float - utility_rating: Float -} - -"""aggregate variance on columns""" -type player_match_performance_v_variance_fields { - accuracy: Float - accuracy_spotted: Float - aim_rating: Float - counter_strafe_pct: Float - enemy_blind_pr: Float - flash_assists_pr: Float - hs_pct: Float - kast_pct: Float - overall_rating: Float - positioning_rating: Float - rounds: Float - steam_id: Float - survival_pct: Float - traded_death_pct: Float - util_efficiency: Float - utility_rating: Float -} - -""" -columns and relationships of "player_match_stats_v" -""" -type player_match_stats_v { - assists: Int - assists_ct: Int - assists_t: Int - avg_crosshair_angle_deg: numeric - avg_flash_duration: numeric - avg_time_to_damage_s: numeric - counter_strafe_eligible_shots: Int - counter_strafed_shots: Int - damage: Int - damage_ct: Int - damage_t: Int - deaths: Int - deaths_ct: Int - deaths_t: Int - decoy_throws: Int - enemies_flashed: Int - first_bullet_hits: Int - first_bullet_shots: Int - five_kill_rounds: Int - flash_assists: Int - flashes_thrown: Int - four_kill_rounds: Int - he_damage: Int - he_team_damage: Int - he_throws: Int - headshot_hits: Int - hits: Int - hits_at_spotted: Int - hs_kills: Int - hs_kills_ct: Int - hs_kills_t: Int - kills: Int - kills_ct: Int - kills_t: Int - knife_kills: Int - match_id: uuid - molotov_damage: Int - molotov_throws: Int - non_awp_hits: Int - on_target_frames: Int - rounds_ct: Int - rounds_played: Int - rounds_t: Int - shots_at_spotted: Int - shots_fired: Int - smoke_throws: Int - spotted_count: Int - spotted_with_damage_count: Int - spray_hits: Int - spray_shots: Int - steam_id: bigint - team_damage: Int - team_flashed: Int - three_kill_rounds: Int - total_engagement_frames: Int - trade_kill_attempts: Int - trade_kill_opportunities: Int - trade_kill_successes: Int - traded_death_attempts: Int - traded_death_opportunities: Int - traded_death_successes: Int - two_kill_rounds: Int - unused_utility_value: Int - utility_on_death: numeric - wasted_magazine_shots: Int - zeus_kills: Int -} - -""" -aggregated selection of "player_match_stats_v" -""" -type player_match_stats_v_aggregate { - aggregate: player_match_stats_v_aggregate_fields - nodes: [player_match_stats_v!]! -} - -input player_match_stats_v_aggregate_bool_exp { - count: player_match_stats_v_aggregate_bool_exp_count -} - -input player_match_stats_v_aggregate_bool_exp_count { - arguments: [player_match_stats_v_select_column!] - distinct: Boolean - filter: player_match_stats_v_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "player_match_stats_v" -""" -type player_match_stats_v_aggregate_fields { - avg: player_match_stats_v_avg_fields - count(columns: [player_match_stats_v_select_column!], distinct: Boolean): Int! - max: player_match_stats_v_max_fields - min: player_match_stats_v_min_fields - stddev: player_match_stats_v_stddev_fields - stddev_pop: player_match_stats_v_stddev_pop_fields - stddev_samp: player_match_stats_v_stddev_samp_fields - sum: player_match_stats_v_sum_fields - var_pop: player_match_stats_v_var_pop_fields - var_samp: player_match_stats_v_var_samp_fields - variance: player_match_stats_v_variance_fields -} - -""" -order by aggregate values of table "player_match_stats_v" -""" -input player_match_stats_v_aggregate_order_by { - avg: player_match_stats_v_avg_order_by - count: order_by - max: player_match_stats_v_max_order_by - min: player_match_stats_v_min_order_by - stddev: player_match_stats_v_stddev_order_by - stddev_pop: player_match_stats_v_stddev_pop_order_by - stddev_samp: player_match_stats_v_stddev_samp_order_by - sum: player_match_stats_v_sum_order_by - var_pop: player_match_stats_v_var_pop_order_by - var_samp: player_match_stats_v_var_samp_order_by - variance: player_match_stats_v_variance_order_by -} - -""" -input type for inserting array relation for remote table "player_match_stats_v" -""" -input player_match_stats_v_arr_rel_insert_input { - data: [player_match_stats_v_insert_input!]! -} - -"""aggregate avg on columns""" -type player_match_stats_v_avg_fields { - assists: Float - assists_ct: Float - assists_t: Float - avg_crosshair_angle_deg: Float - avg_flash_duration: Float - avg_time_to_damage_s: Float - counter_strafe_eligible_shots: Float - counter_strafed_shots: Float - damage: Float - damage_ct: Float - damage_t: Float - deaths: Float - deaths_ct: Float - deaths_t: Float - decoy_throws: Float - enemies_flashed: Float - first_bullet_hits: Float - first_bullet_shots: Float - five_kill_rounds: Float - flash_assists: Float - flashes_thrown: Float - four_kill_rounds: Float - he_damage: Float - he_team_damage: Float - he_throws: Float - headshot_hits: Float - hits: Float - hits_at_spotted: Float - hs_kills: Float - hs_kills_ct: Float - hs_kills_t: Float - kills: Float - kills_ct: Float - kills_t: Float - knife_kills: Float - molotov_damage: Float - molotov_throws: Float - non_awp_hits: Float - on_target_frames: Float - rounds_ct: Float - rounds_played: Float - rounds_t: Float - shots_at_spotted: Float - shots_fired: Float - smoke_throws: Float - spotted_count: Float - spotted_with_damage_count: Float - spray_hits: Float - spray_shots: Float - steam_id: Float - team_damage: Float - team_flashed: Float - three_kill_rounds: Float - total_engagement_frames: Float - trade_kill_attempts: Float - trade_kill_opportunities: Float - trade_kill_successes: Float - traded_death_attempts: Float - traded_death_opportunities: Float - traded_death_successes: Float - two_kill_rounds: Float - unused_utility_value: Float - utility_on_death: Float - wasted_magazine_shots: Float - zeus_kills: Float -} - -""" -order by avg() on columns of table "player_match_stats_v" -""" -input player_match_stats_v_avg_order_by { - assists: order_by - assists_ct: order_by - assists_t: order_by - avg_crosshair_angle_deg: order_by - avg_flash_duration: order_by - avg_time_to_damage_s: order_by - counter_strafe_eligible_shots: order_by - counter_strafed_shots: order_by - damage: order_by - damage_ct: order_by - damage_t: order_by - deaths: order_by - deaths_ct: order_by - deaths_t: order_by - decoy_throws: order_by - enemies_flashed: order_by - first_bullet_hits: order_by - first_bullet_shots: order_by - five_kill_rounds: order_by - flash_assists: order_by - flashes_thrown: order_by - four_kill_rounds: order_by - he_damage: order_by - he_team_damage: order_by - he_throws: order_by - headshot_hits: order_by - hits: order_by - hits_at_spotted: order_by - hs_kills: order_by - hs_kills_ct: order_by - hs_kills_t: order_by - kills: order_by - kills_ct: order_by - kills_t: order_by - knife_kills: order_by - molotov_damage: order_by - molotov_throws: order_by - non_awp_hits: order_by - on_target_frames: order_by - rounds_ct: order_by - rounds_played: order_by - rounds_t: order_by - shots_at_spotted: order_by - shots_fired: order_by - smoke_throws: order_by - spotted_count: order_by - spotted_with_damage_count: order_by - spray_hits: order_by - spray_shots: order_by - steam_id: order_by - team_damage: order_by - team_flashed: order_by - three_kill_rounds: order_by - total_engagement_frames: order_by - trade_kill_attempts: order_by - trade_kill_opportunities: order_by - trade_kill_successes: order_by - traded_death_attempts: order_by - traded_death_opportunities: order_by - traded_death_successes: order_by - two_kill_rounds: order_by - unused_utility_value: order_by - utility_on_death: order_by - wasted_magazine_shots: order_by - zeus_kills: order_by -} - -""" -Boolean expression to filter rows from the table "player_match_stats_v". All fields are combined with a logical 'AND'. -""" -input player_match_stats_v_bool_exp { - _and: [player_match_stats_v_bool_exp!] - _not: player_match_stats_v_bool_exp - _or: [player_match_stats_v_bool_exp!] - assists: Int_comparison_exp - assists_ct: Int_comparison_exp - assists_t: Int_comparison_exp - avg_crosshair_angle_deg: numeric_comparison_exp - avg_flash_duration: numeric_comparison_exp - avg_time_to_damage_s: numeric_comparison_exp - counter_strafe_eligible_shots: Int_comparison_exp - counter_strafed_shots: Int_comparison_exp - damage: Int_comparison_exp - damage_ct: Int_comparison_exp - damage_t: Int_comparison_exp - deaths: Int_comparison_exp - deaths_ct: Int_comparison_exp - deaths_t: Int_comparison_exp - decoy_throws: Int_comparison_exp - enemies_flashed: Int_comparison_exp - first_bullet_hits: Int_comparison_exp - first_bullet_shots: Int_comparison_exp - five_kill_rounds: Int_comparison_exp - flash_assists: Int_comparison_exp - flashes_thrown: Int_comparison_exp - four_kill_rounds: Int_comparison_exp - he_damage: Int_comparison_exp - he_team_damage: Int_comparison_exp - he_throws: Int_comparison_exp - headshot_hits: Int_comparison_exp - hits: Int_comparison_exp - hits_at_spotted: Int_comparison_exp - hs_kills: Int_comparison_exp - hs_kills_ct: Int_comparison_exp - hs_kills_t: Int_comparison_exp - kills: Int_comparison_exp - kills_ct: Int_comparison_exp - kills_t: Int_comparison_exp - knife_kills: Int_comparison_exp - match_id: uuid_comparison_exp - molotov_damage: Int_comparison_exp - molotov_throws: Int_comparison_exp - non_awp_hits: Int_comparison_exp - on_target_frames: Int_comparison_exp - rounds_ct: Int_comparison_exp - rounds_played: Int_comparison_exp - rounds_t: Int_comparison_exp - shots_at_spotted: Int_comparison_exp - shots_fired: Int_comparison_exp - smoke_throws: Int_comparison_exp - spotted_count: Int_comparison_exp - spotted_with_damage_count: Int_comparison_exp - spray_hits: Int_comparison_exp - spray_shots: Int_comparison_exp - steam_id: bigint_comparison_exp - team_damage: Int_comparison_exp - team_flashed: Int_comparison_exp - three_kill_rounds: Int_comparison_exp - total_engagement_frames: Int_comparison_exp - trade_kill_attempts: Int_comparison_exp - trade_kill_opportunities: Int_comparison_exp - trade_kill_successes: Int_comparison_exp - traded_death_attempts: Int_comparison_exp - traded_death_opportunities: Int_comparison_exp - traded_death_successes: Int_comparison_exp - two_kill_rounds: Int_comparison_exp - unused_utility_value: Int_comparison_exp - utility_on_death: numeric_comparison_exp - wasted_magazine_shots: Int_comparison_exp - zeus_kills: Int_comparison_exp -} - -""" -input type for inserting data into table "player_match_stats_v" -""" -input player_match_stats_v_insert_input { - assists: Int - assists_ct: Int - assists_t: Int - avg_crosshair_angle_deg: numeric - avg_flash_duration: numeric - avg_time_to_damage_s: numeric - counter_strafe_eligible_shots: Int - counter_strafed_shots: Int - damage: Int - damage_ct: Int - damage_t: Int - deaths: Int - deaths_ct: Int - deaths_t: Int - decoy_throws: Int - enemies_flashed: Int - first_bullet_hits: Int - first_bullet_shots: Int - five_kill_rounds: Int - flash_assists: Int - flashes_thrown: Int - four_kill_rounds: Int - he_damage: Int - he_team_damage: Int - he_throws: Int - headshot_hits: Int - hits: Int - hits_at_spotted: Int - hs_kills: Int - hs_kills_ct: Int - hs_kills_t: Int - kills: Int - kills_ct: Int - kills_t: Int - knife_kills: Int - match_id: uuid - molotov_damage: Int - molotov_throws: Int - non_awp_hits: Int - on_target_frames: Int - rounds_ct: Int - rounds_played: Int - rounds_t: Int - shots_at_spotted: Int - shots_fired: Int - smoke_throws: Int - spotted_count: Int - spotted_with_damage_count: Int - spray_hits: Int - spray_shots: Int - steam_id: bigint - team_damage: Int - team_flashed: Int - three_kill_rounds: Int - total_engagement_frames: Int - trade_kill_attempts: Int - trade_kill_opportunities: Int - trade_kill_successes: Int - traded_death_attempts: Int - traded_death_opportunities: Int - traded_death_successes: Int - two_kill_rounds: Int - unused_utility_value: Int - utility_on_death: numeric - wasted_magazine_shots: Int - zeus_kills: Int -} - -"""aggregate max on columns""" -type player_match_stats_v_max_fields { - assists: Int - assists_ct: Int - assists_t: Int - avg_crosshair_angle_deg: numeric - avg_flash_duration: numeric - avg_time_to_damage_s: numeric - counter_strafe_eligible_shots: Int - counter_strafed_shots: Int - damage: Int - damage_ct: Int - damage_t: Int - deaths: Int - deaths_ct: Int - deaths_t: Int - decoy_throws: Int - enemies_flashed: Int - first_bullet_hits: Int - first_bullet_shots: Int - five_kill_rounds: Int - flash_assists: Int - flashes_thrown: Int - four_kill_rounds: Int - he_damage: Int - he_team_damage: Int - he_throws: Int - headshot_hits: Int - hits: Int - hits_at_spotted: Int - hs_kills: Int - hs_kills_ct: Int - hs_kills_t: Int - kills: Int - kills_ct: Int - kills_t: Int - knife_kills: Int - match_id: uuid - molotov_damage: Int - molotov_throws: Int - non_awp_hits: Int - on_target_frames: Int - rounds_ct: Int - rounds_played: Int - rounds_t: Int - shots_at_spotted: Int - shots_fired: Int - smoke_throws: Int - spotted_count: Int - spotted_with_damage_count: Int - spray_hits: Int - spray_shots: Int - steam_id: bigint - team_damage: Int - team_flashed: Int - three_kill_rounds: Int - total_engagement_frames: Int - trade_kill_attempts: Int - trade_kill_opportunities: Int - trade_kill_successes: Int - traded_death_attempts: Int - traded_death_opportunities: Int - traded_death_successes: Int - two_kill_rounds: Int - unused_utility_value: Int - utility_on_death: numeric - wasted_magazine_shots: Int - zeus_kills: Int -} - -""" -order by max() on columns of table "player_match_stats_v" -""" -input player_match_stats_v_max_order_by { - assists: order_by - assists_ct: order_by - assists_t: order_by - avg_crosshair_angle_deg: order_by - avg_flash_duration: order_by - avg_time_to_damage_s: order_by - counter_strafe_eligible_shots: order_by - counter_strafed_shots: order_by - damage: order_by - damage_ct: order_by - damage_t: order_by - deaths: order_by - deaths_ct: order_by - deaths_t: order_by - decoy_throws: order_by - enemies_flashed: order_by - first_bullet_hits: order_by - first_bullet_shots: order_by - five_kill_rounds: order_by - flash_assists: order_by - flashes_thrown: order_by - four_kill_rounds: order_by - he_damage: order_by - he_team_damage: order_by - he_throws: order_by - headshot_hits: order_by - hits: order_by - hits_at_spotted: order_by - hs_kills: order_by - hs_kills_ct: order_by - hs_kills_t: order_by - kills: order_by - kills_ct: order_by - kills_t: order_by - knife_kills: order_by - match_id: order_by - molotov_damage: order_by - molotov_throws: order_by - non_awp_hits: order_by - on_target_frames: order_by - rounds_ct: order_by - rounds_played: order_by - rounds_t: order_by - shots_at_spotted: order_by - shots_fired: order_by - smoke_throws: order_by - spotted_count: order_by - spotted_with_damage_count: order_by - spray_hits: order_by - spray_shots: order_by - steam_id: order_by - team_damage: order_by - team_flashed: order_by - three_kill_rounds: order_by - total_engagement_frames: order_by - trade_kill_attempts: order_by - trade_kill_opportunities: order_by - trade_kill_successes: order_by - traded_death_attempts: order_by - traded_death_opportunities: order_by - traded_death_successes: order_by - two_kill_rounds: order_by - unused_utility_value: order_by - utility_on_death: order_by - wasted_magazine_shots: order_by - zeus_kills: order_by -} - -"""aggregate min on columns""" -type player_match_stats_v_min_fields { - assists: Int - assists_ct: Int - assists_t: Int - avg_crosshair_angle_deg: numeric - avg_flash_duration: numeric - avg_time_to_damage_s: numeric - counter_strafe_eligible_shots: Int - counter_strafed_shots: Int - damage: Int - damage_ct: Int - damage_t: Int - deaths: Int - deaths_ct: Int - deaths_t: Int - decoy_throws: Int - enemies_flashed: Int - first_bullet_hits: Int - first_bullet_shots: Int - five_kill_rounds: Int - flash_assists: Int - flashes_thrown: Int - four_kill_rounds: Int - he_damage: Int - he_team_damage: Int - he_throws: Int - headshot_hits: Int - hits: Int - hits_at_spotted: Int - hs_kills: Int - hs_kills_ct: Int - hs_kills_t: Int - kills: Int - kills_ct: Int - kills_t: Int - knife_kills: Int - match_id: uuid - molotov_damage: Int - molotov_throws: Int - non_awp_hits: Int - on_target_frames: Int - rounds_ct: Int - rounds_played: Int - rounds_t: Int - shots_at_spotted: Int - shots_fired: Int - smoke_throws: Int - spotted_count: Int - spotted_with_damage_count: Int - spray_hits: Int - spray_shots: Int - steam_id: bigint - team_damage: Int - team_flashed: Int - three_kill_rounds: Int - total_engagement_frames: Int - trade_kill_attempts: Int - trade_kill_opportunities: Int - trade_kill_successes: Int - traded_death_attempts: Int - traded_death_opportunities: Int - traded_death_successes: Int - two_kill_rounds: Int - unused_utility_value: Int - utility_on_death: numeric - wasted_magazine_shots: Int - zeus_kills: Int -} - -""" -order by min() on columns of table "player_match_stats_v" -""" -input player_match_stats_v_min_order_by { - assists: order_by - assists_ct: order_by - assists_t: order_by - avg_crosshair_angle_deg: order_by - avg_flash_duration: order_by - avg_time_to_damage_s: order_by - counter_strafe_eligible_shots: order_by - counter_strafed_shots: order_by - damage: order_by - damage_ct: order_by - damage_t: order_by - deaths: order_by - deaths_ct: order_by - deaths_t: order_by - decoy_throws: order_by - enemies_flashed: order_by - first_bullet_hits: order_by - first_bullet_shots: order_by - five_kill_rounds: order_by - flash_assists: order_by - flashes_thrown: order_by - four_kill_rounds: order_by - he_damage: order_by - he_team_damage: order_by - he_throws: order_by - headshot_hits: order_by - hits: order_by - hits_at_spotted: order_by - hs_kills: order_by - hs_kills_ct: order_by - hs_kills_t: order_by - kills: order_by - kills_ct: order_by - kills_t: order_by - knife_kills: order_by - match_id: order_by - molotov_damage: order_by - molotov_throws: order_by - non_awp_hits: order_by - on_target_frames: order_by - rounds_ct: order_by - rounds_played: order_by - rounds_t: order_by - shots_at_spotted: order_by - shots_fired: order_by - smoke_throws: order_by - spotted_count: order_by - spotted_with_damage_count: order_by - spray_hits: order_by - spray_shots: order_by - steam_id: order_by - team_damage: order_by - team_flashed: order_by - three_kill_rounds: order_by - total_engagement_frames: order_by - trade_kill_attempts: order_by - trade_kill_opportunities: order_by - trade_kill_successes: order_by - traded_death_attempts: order_by - traded_death_opportunities: order_by - traded_death_successes: order_by - two_kill_rounds: order_by - unused_utility_value: order_by - utility_on_death: order_by - wasted_magazine_shots: order_by - zeus_kills: order_by -} - -"""Ordering options when selecting data from "player_match_stats_v".""" -input player_match_stats_v_order_by { - assists: order_by - assists_ct: order_by - assists_t: order_by - avg_crosshair_angle_deg: order_by - avg_flash_duration: order_by - avg_time_to_damage_s: order_by - counter_strafe_eligible_shots: order_by - counter_strafed_shots: order_by - damage: order_by - damage_ct: order_by - damage_t: order_by - deaths: order_by - deaths_ct: order_by - deaths_t: order_by - decoy_throws: order_by - enemies_flashed: order_by - first_bullet_hits: order_by - first_bullet_shots: order_by - five_kill_rounds: order_by - flash_assists: order_by - flashes_thrown: order_by - four_kill_rounds: order_by - he_damage: order_by - he_team_damage: order_by - he_throws: order_by - headshot_hits: order_by - hits: order_by - hits_at_spotted: order_by - hs_kills: order_by - hs_kills_ct: order_by - hs_kills_t: order_by - kills: order_by - kills_ct: order_by - kills_t: order_by - knife_kills: order_by - match_id: order_by - molotov_damage: order_by - molotov_throws: order_by - non_awp_hits: order_by - on_target_frames: order_by - rounds_ct: order_by - rounds_played: order_by - rounds_t: order_by - shots_at_spotted: order_by - shots_fired: order_by - smoke_throws: order_by - spotted_count: order_by - spotted_with_damage_count: order_by - spray_hits: order_by - spray_shots: order_by - steam_id: order_by - team_damage: order_by - team_flashed: order_by - three_kill_rounds: order_by - total_engagement_frames: order_by - trade_kill_attempts: order_by - trade_kill_opportunities: order_by - trade_kill_successes: order_by - traded_death_attempts: order_by - traded_death_opportunities: order_by - traded_death_successes: order_by - two_kill_rounds: order_by - unused_utility_value: order_by - utility_on_death: order_by - wasted_magazine_shots: order_by - zeus_kills: order_by -} - -""" -select columns of table "player_match_stats_v" -""" -enum player_match_stats_v_select_column { - """column name""" - assists - - """column name""" - assists_ct - - """column name""" - assists_t - - """column name""" - avg_crosshair_angle_deg - - """column name""" - avg_flash_duration - - """column name""" - avg_time_to_damage_s - - """column name""" - counter_strafe_eligible_shots - - """column name""" - counter_strafed_shots - - """column name""" - damage - - """column name""" - damage_ct - - """column name""" - damage_t - - """column name""" - deaths - - """column name""" - deaths_ct - - """column name""" - deaths_t - - """column name""" - decoy_throws - - """column name""" - enemies_flashed - - """column name""" - first_bullet_hits - - """column name""" - first_bullet_shots - - """column name""" - five_kill_rounds - - """column name""" - flash_assists - - """column name""" - flashes_thrown - - """column name""" - four_kill_rounds - - """column name""" - he_damage - - """column name""" - he_team_damage - - """column name""" - he_throws - - """column name""" - headshot_hits - - """column name""" - hits - - """column name""" - hits_at_spotted - - """column name""" - hs_kills - - """column name""" - hs_kills_ct - - """column name""" - hs_kills_t - - """column name""" - kills - - """column name""" - kills_ct - - """column name""" - kills_t - - """column name""" - knife_kills - - """column name""" - match_id - - """column name""" - molotov_damage - - """column name""" - molotov_throws - - """column name""" - non_awp_hits - - """column name""" - on_target_frames - - """column name""" - rounds_ct - - """column name""" - rounds_played - - """column name""" - rounds_t - - """column name""" - shots_at_spotted - - """column name""" - shots_fired - - """column name""" - smoke_throws - - """column name""" - spotted_count - - """column name""" - spotted_with_damage_count - - """column name""" - spray_hits - - """column name""" - spray_shots - - """column name""" - steam_id - - """column name""" - team_damage - - """column name""" - team_flashed - - """column name""" - three_kill_rounds - - """column name""" - total_engagement_frames - - """column name""" - trade_kill_attempts - - """column name""" - trade_kill_opportunities - - """column name""" - trade_kill_successes - - """column name""" - traded_death_attempts - - """column name""" - traded_death_opportunities - - """column name""" - traded_death_successes - - """column name""" - two_kill_rounds - - """column name""" - unused_utility_value - - """column name""" - utility_on_death - - """column name""" - wasted_magazine_shots - - """column name""" - zeus_kills -} - -"""aggregate stddev on columns""" -type player_match_stats_v_stddev_fields { - assists: Float - assists_ct: Float - assists_t: Float - avg_crosshair_angle_deg: Float - avg_flash_duration: Float - avg_time_to_damage_s: Float - counter_strafe_eligible_shots: Float - counter_strafed_shots: Float - damage: Float - damage_ct: Float - damage_t: Float - deaths: Float - deaths_ct: Float - deaths_t: Float - decoy_throws: Float - enemies_flashed: Float - first_bullet_hits: Float - first_bullet_shots: Float - five_kill_rounds: Float - flash_assists: Float - flashes_thrown: Float - four_kill_rounds: Float - he_damage: Float - he_team_damage: Float - he_throws: Float - headshot_hits: Float - hits: Float - hits_at_spotted: Float - hs_kills: Float - hs_kills_ct: Float - hs_kills_t: Float - kills: Float - kills_ct: Float - kills_t: Float - knife_kills: Float - molotov_damage: Float - molotov_throws: Float - non_awp_hits: Float - on_target_frames: Float - rounds_ct: Float - rounds_played: Float - rounds_t: Float - shots_at_spotted: Float - shots_fired: Float - smoke_throws: Float - spotted_count: Float - spotted_with_damage_count: Float - spray_hits: Float - spray_shots: Float - steam_id: Float - team_damage: Float - team_flashed: Float - three_kill_rounds: Float - total_engagement_frames: Float - trade_kill_attempts: Float - trade_kill_opportunities: Float - trade_kill_successes: Float - traded_death_attempts: Float - traded_death_opportunities: Float - traded_death_successes: Float - two_kill_rounds: Float - unused_utility_value: Float - utility_on_death: Float - wasted_magazine_shots: Float - zeus_kills: Float -} - -""" -order by stddev() on columns of table "player_match_stats_v" -""" -input player_match_stats_v_stddev_order_by { - assists: order_by - assists_ct: order_by - assists_t: order_by - avg_crosshair_angle_deg: order_by - avg_flash_duration: order_by - avg_time_to_damage_s: order_by - counter_strafe_eligible_shots: order_by - counter_strafed_shots: order_by - damage: order_by - damage_ct: order_by - damage_t: order_by - deaths: order_by - deaths_ct: order_by - deaths_t: order_by - decoy_throws: order_by - enemies_flashed: order_by - first_bullet_hits: order_by - first_bullet_shots: order_by - five_kill_rounds: order_by - flash_assists: order_by - flashes_thrown: order_by - four_kill_rounds: order_by - he_damage: order_by - he_team_damage: order_by - he_throws: order_by - headshot_hits: order_by - hits: order_by - hits_at_spotted: order_by - hs_kills: order_by - hs_kills_ct: order_by - hs_kills_t: order_by - kills: order_by - kills_ct: order_by - kills_t: order_by - knife_kills: order_by - molotov_damage: order_by - molotov_throws: order_by - non_awp_hits: order_by - on_target_frames: order_by - rounds_ct: order_by - rounds_played: order_by - rounds_t: order_by - shots_at_spotted: order_by - shots_fired: order_by - smoke_throws: order_by - spotted_count: order_by - spotted_with_damage_count: order_by - spray_hits: order_by - spray_shots: order_by - steam_id: order_by - team_damage: order_by - team_flashed: order_by - three_kill_rounds: order_by - total_engagement_frames: order_by - trade_kill_attempts: order_by - trade_kill_opportunities: order_by - trade_kill_successes: order_by - traded_death_attempts: order_by - traded_death_opportunities: order_by - traded_death_successes: order_by - two_kill_rounds: order_by - unused_utility_value: order_by - utility_on_death: order_by - wasted_magazine_shots: order_by - zeus_kills: order_by -} - -"""aggregate stddev_pop on columns""" -type player_match_stats_v_stddev_pop_fields { - assists: Float - assists_ct: Float - assists_t: Float - avg_crosshair_angle_deg: Float - avg_flash_duration: Float - avg_time_to_damage_s: Float - counter_strafe_eligible_shots: Float - counter_strafed_shots: Float - damage: Float - damage_ct: Float - damage_t: Float - deaths: Float - deaths_ct: Float - deaths_t: Float - decoy_throws: Float - enemies_flashed: Float - first_bullet_hits: Float - first_bullet_shots: Float - five_kill_rounds: Float - flash_assists: Float - flashes_thrown: Float - four_kill_rounds: Float - he_damage: Float - he_team_damage: Float - he_throws: Float - headshot_hits: Float - hits: Float - hits_at_spotted: Float - hs_kills: Float - hs_kills_ct: Float - hs_kills_t: Float - kills: Float - kills_ct: Float - kills_t: Float - knife_kills: Float - molotov_damage: Float - molotov_throws: Float - non_awp_hits: Float - on_target_frames: Float - rounds_ct: Float - rounds_played: Float - rounds_t: Float - shots_at_spotted: Float - shots_fired: Float - smoke_throws: Float - spotted_count: Float - spotted_with_damage_count: Float - spray_hits: Float - spray_shots: Float - steam_id: Float - team_damage: Float - team_flashed: Float - three_kill_rounds: Float - total_engagement_frames: Float - trade_kill_attempts: Float - trade_kill_opportunities: Float - trade_kill_successes: Float - traded_death_attempts: Float - traded_death_opportunities: Float - traded_death_successes: Float - two_kill_rounds: Float - unused_utility_value: Float - utility_on_death: Float - wasted_magazine_shots: Float - zeus_kills: Float -} - -""" -order by stddev_pop() on columns of table "player_match_stats_v" -""" -input player_match_stats_v_stddev_pop_order_by { - assists: order_by - assists_ct: order_by - assists_t: order_by - avg_crosshair_angle_deg: order_by - avg_flash_duration: order_by - avg_time_to_damage_s: order_by - counter_strafe_eligible_shots: order_by - counter_strafed_shots: order_by - damage: order_by - damage_ct: order_by - damage_t: order_by - deaths: order_by - deaths_ct: order_by - deaths_t: order_by - decoy_throws: order_by - enemies_flashed: order_by - first_bullet_hits: order_by - first_bullet_shots: order_by - five_kill_rounds: order_by - flash_assists: order_by - flashes_thrown: order_by - four_kill_rounds: order_by - he_damage: order_by - he_team_damage: order_by - he_throws: order_by - headshot_hits: order_by - hits: order_by - hits_at_spotted: order_by - hs_kills: order_by - hs_kills_ct: order_by - hs_kills_t: order_by - kills: order_by - kills_ct: order_by - kills_t: order_by - knife_kills: order_by - molotov_damage: order_by - molotov_throws: order_by - non_awp_hits: order_by - on_target_frames: order_by - rounds_ct: order_by - rounds_played: order_by - rounds_t: order_by - shots_at_spotted: order_by - shots_fired: order_by - smoke_throws: order_by - spotted_count: order_by - spotted_with_damage_count: order_by - spray_hits: order_by - spray_shots: order_by - steam_id: order_by - team_damage: order_by - team_flashed: order_by - three_kill_rounds: order_by - total_engagement_frames: order_by - trade_kill_attempts: order_by - trade_kill_opportunities: order_by - trade_kill_successes: order_by - traded_death_attempts: order_by - traded_death_opportunities: order_by - traded_death_successes: order_by - two_kill_rounds: order_by - unused_utility_value: order_by - utility_on_death: order_by - wasted_magazine_shots: order_by - zeus_kills: order_by -} - -"""aggregate stddev_samp on columns""" -type player_match_stats_v_stddev_samp_fields { - assists: Float - assists_ct: Float - assists_t: Float - avg_crosshair_angle_deg: Float - avg_flash_duration: Float - avg_time_to_damage_s: Float - counter_strafe_eligible_shots: Float - counter_strafed_shots: Float - damage: Float - damage_ct: Float - damage_t: Float - deaths: Float - deaths_ct: Float - deaths_t: Float - decoy_throws: Float - enemies_flashed: Float - first_bullet_hits: Float - first_bullet_shots: Float - five_kill_rounds: Float - flash_assists: Float - flashes_thrown: Float - four_kill_rounds: Float - he_damage: Float - he_team_damage: Float - he_throws: Float - headshot_hits: Float - hits: Float - hits_at_spotted: Float - hs_kills: Float - hs_kills_ct: Float - hs_kills_t: Float - kills: Float - kills_ct: Float - kills_t: Float - knife_kills: Float - molotov_damage: Float - molotov_throws: Float - non_awp_hits: Float - on_target_frames: Float - rounds_ct: Float - rounds_played: Float - rounds_t: Float - shots_at_spotted: Float - shots_fired: Float - smoke_throws: Float - spotted_count: Float - spotted_with_damage_count: Float - spray_hits: Float - spray_shots: Float - steam_id: Float - team_damage: Float - team_flashed: Float - three_kill_rounds: Float - total_engagement_frames: Float - trade_kill_attempts: Float - trade_kill_opportunities: Float - trade_kill_successes: Float - traded_death_attempts: Float - traded_death_opportunities: Float - traded_death_successes: Float - two_kill_rounds: Float - unused_utility_value: Float - utility_on_death: Float - wasted_magazine_shots: Float - zeus_kills: Float -} - -""" -order by stddev_samp() on columns of table "player_match_stats_v" -""" -input player_match_stats_v_stddev_samp_order_by { - assists: order_by - assists_ct: order_by - assists_t: order_by - avg_crosshair_angle_deg: order_by - avg_flash_duration: order_by - avg_time_to_damage_s: order_by - counter_strafe_eligible_shots: order_by - counter_strafed_shots: order_by - damage: order_by - damage_ct: order_by - damage_t: order_by - deaths: order_by - deaths_ct: order_by - deaths_t: order_by - decoy_throws: order_by - enemies_flashed: order_by - first_bullet_hits: order_by - first_bullet_shots: order_by - five_kill_rounds: order_by - flash_assists: order_by - flashes_thrown: order_by - four_kill_rounds: order_by - he_damage: order_by - he_team_damage: order_by - he_throws: order_by - headshot_hits: order_by - hits: order_by - hits_at_spotted: order_by - hs_kills: order_by - hs_kills_ct: order_by - hs_kills_t: order_by - kills: order_by - kills_ct: order_by - kills_t: order_by - knife_kills: order_by - molotov_damage: order_by - molotov_throws: order_by - non_awp_hits: order_by - on_target_frames: order_by - rounds_ct: order_by - rounds_played: order_by - rounds_t: order_by - shots_at_spotted: order_by - shots_fired: order_by - smoke_throws: order_by - spotted_count: order_by - spotted_with_damage_count: order_by - spray_hits: order_by - spray_shots: order_by - steam_id: order_by - team_damage: order_by - team_flashed: order_by - three_kill_rounds: order_by - total_engagement_frames: order_by - trade_kill_attempts: order_by - trade_kill_opportunities: order_by - trade_kill_successes: order_by - traded_death_attempts: order_by - traded_death_opportunities: order_by - traded_death_successes: order_by - two_kill_rounds: order_by - unused_utility_value: order_by - utility_on_death: order_by - wasted_magazine_shots: order_by - zeus_kills: order_by -} - -""" -Streaming cursor of the table "player_match_stats_v" -""" -input player_match_stats_v_stream_cursor_input { - """Stream column input with initial value""" - initial_value: player_match_stats_v_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input player_match_stats_v_stream_cursor_value_input { - assists: Int - assists_ct: Int - assists_t: Int - avg_crosshair_angle_deg: numeric - avg_flash_duration: numeric - avg_time_to_damage_s: numeric - counter_strafe_eligible_shots: Int - counter_strafed_shots: Int - damage: Int - damage_ct: Int - damage_t: Int - deaths: Int - deaths_ct: Int - deaths_t: Int - decoy_throws: Int - enemies_flashed: Int - first_bullet_hits: Int - first_bullet_shots: Int - five_kill_rounds: Int - flash_assists: Int - flashes_thrown: Int - four_kill_rounds: Int - he_damage: Int - he_team_damage: Int - he_throws: Int - headshot_hits: Int - hits: Int - hits_at_spotted: Int - hs_kills: Int - hs_kills_ct: Int - hs_kills_t: Int - kills: Int - kills_ct: Int - kills_t: Int - knife_kills: Int - match_id: uuid - molotov_damage: Int - molotov_throws: Int - non_awp_hits: Int - on_target_frames: Int - rounds_ct: Int - rounds_played: Int - rounds_t: Int - shots_at_spotted: Int - shots_fired: Int - smoke_throws: Int - spotted_count: Int - spotted_with_damage_count: Int - spray_hits: Int - spray_shots: Int - steam_id: bigint - team_damage: Int - team_flashed: Int - three_kill_rounds: Int - total_engagement_frames: Int - trade_kill_attempts: Int - trade_kill_opportunities: Int - trade_kill_successes: Int - traded_death_attempts: Int - traded_death_opportunities: Int - traded_death_successes: Int - two_kill_rounds: Int - unused_utility_value: Int - utility_on_death: numeric - wasted_magazine_shots: Int - zeus_kills: Int -} - -"""aggregate sum on columns""" -type player_match_stats_v_sum_fields { - assists: Int - assists_ct: Int - assists_t: Int - avg_crosshair_angle_deg: numeric - avg_flash_duration: numeric - avg_time_to_damage_s: numeric - counter_strafe_eligible_shots: Int - counter_strafed_shots: Int - damage: Int - damage_ct: Int - damage_t: Int - deaths: Int - deaths_ct: Int - deaths_t: Int - decoy_throws: Int - enemies_flashed: Int - first_bullet_hits: Int - first_bullet_shots: Int - five_kill_rounds: Int - flash_assists: Int - flashes_thrown: Int - four_kill_rounds: Int - he_damage: Int - he_team_damage: Int - he_throws: Int - headshot_hits: Int - hits: Int - hits_at_spotted: Int - hs_kills: Int - hs_kills_ct: Int - hs_kills_t: Int - kills: Int - kills_ct: Int - kills_t: Int - knife_kills: Int - molotov_damage: Int - molotov_throws: Int - non_awp_hits: Int - on_target_frames: Int - rounds_ct: Int - rounds_played: Int - rounds_t: Int - shots_at_spotted: Int - shots_fired: Int - smoke_throws: Int - spotted_count: Int - spotted_with_damage_count: Int - spray_hits: Int - spray_shots: Int - steam_id: bigint - team_damage: Int - team_flashed: Int - three_kill_rounds: Int - total_engagement_frames: Int - trade_kill_attempts: Int - trade_kill_opportunities: Int - trade_kill_successes: Int - traded_death_attempts: Int - traded_death_opportunities: Int - traded_death_successes: Int - two_kill_rounds: Int - unused_utility_value: Int - utility_on_death: numeric - wasted_magazine_shots: Int - zeus_kills: Int -} - -""" -order by sum() on columns of table "player_match_stats_v" -""" -input player_match_stats_v_sum_order_by { - assists: order_by - assists_ct: order_by - assists_t: order_by - avg_crosshair_angle_deg: order_by - avg_flash_duration: order_by - avg_time_to_damage_s: order_by - counter_strafe_eligible_shots: order_by - counter_strafed_shots: order_by - damage: order_by - damage_ct: order_by - damage_t: order_by - deaths: order_by - deaths_ct: order_by - deaths_t: order_by - decoy_throws: order_by - enemies_flashed: order_by - first_bullet_hits: order_by - first_bullet_shots: order_by - five_kill_rounds: order_by - flash_assists: order_by - flashes_thrown: order_by - four_kill_rounds: order_by - he_damage: order_by - he_team_damage: order_by - he_throws: order_by - headshot_hits: order_by - hits: order_by - hits_at_spotted: order_by - hs_kills: order_by - hs_kills_ct: order_by - hs_kills_t: order_by - kills: order_by - kills_ct: order_by - kills_t: order_by - knife_kills: order_by - molotov_damage: order_by - molotov_throws: order_by - non_awp_hits: order_by - on_target_frames: order_by - rounds_ct: order_by - rounds_played: order_by - rounds_t: order_by - shots_at_spotted: order_by - shots_fired: order_by - smoke_throws: order_by - spotted_count: order_by - spotted_with_damage_count: order_by - spray_hits: order_by - spray_shots: order_by - steam_id: order_by - team_damage: order_by - team_flashed: order_by - three_kill_rounds: order_by - total_engagement_frames: order_by - trade_kill_attempts: order_by - trade_kill_opportunities: order_by - trade_kill_successes: order_by - traded_death_attempts: order_by - traded_death_opportunities: order_by - traded_death_successes: order_by - two_kill_rounds: order_by - unused_utility_value: order_by - utility_on_death: order_by - wasted_magazine_shots: order_by - zeus_kills: order_by -} - -"""aggregate var_pop on columns""" -type player_match_stats_v_var_pop_fields { - assists: Float - assists_ct: Float - assists_t: Float - avg_crosshair_angle_deg: Float - avg_flash_duration: Float - avg_time_to_damage_s: Float - counter_strafe_eligible_shots: Float - counter_strafed_shots: Float - damage: Float - damage_ct: Float - damage_t: Float - deaths: Float - deaths_ct: Float - deaths_t: Float - decoy_throws: Float - enemies_flashed: Float - first_bullet_hits: Float - first_bullet_shots: Float - five_kill_rounds: Float - flash_assists: Float - flashes_thrown: Float - four_kill_rounds: Float - he_damage: Float - he_team_damage: Float - he_throws: Float - headshot_hits: Float - hits: Float - hits_at_spotted: Float - hs_kills: Float - hs_kills_ct: Float - hs_kills_t: Float - kills: Float - kills_ct: Float - kills_t: Float - knife_kills: Float - molotov_damage: Float - molotov_throws: Float - non_awp_hits: Float - on_target_frames: Float - rounds_ct: Float - rounds_played: Float - rounds_t: Float - shots_at_spotted: Float - shots_fired: Float - smoke_throws: Float - spotted_count: Float - spotted_with_damage_count: Float - spray_hits: Float - spray_shots: Float - steam_id: Float - team_damage: Float - team_flashed: Float - three_kill_rounds: Float - total_engagement_frames: Float - trade_kill_attempts: Float - trade_kill_opportunities: Float - trade_kill_successes: Float - traded_death_attempts: Float - traded_death_opportunities: Float - traded_death_successes: Float - two_kill_rounds: Float - unused_utility_value: Float - utility_on_death: Float - wasted_magazine_shots: Float - zeus_kills: Float -} - -""" -order by var_pop() on columns of table "player_match_stats_v" -""" -input player_match_stats_v_var_pop_order_by { - assists: order_by - assists_ct: order_by - assists_t: order_by - avg_crosshair_angle_deg: order_by - avg_flash_duration: order_by - avg_time_to_damage_s: order_by - counter_strafe_eligible_shots: order_by - counter_strafed_shots: order_by - damage: order_by - damage_ct: order_by - damage_t: order_by - deaths: order_by - deaths_ct: order_by - deaths_t: order_by - decoy_throws: order_by - enemies_flashed: order_by - first_bullet_hits: order_by - first_bullet_shots: order_by - five_kill_rounds: order_by - flash_assists: order_by - flashes_thrown: order_by - four_kill_rounds: order_by - he_damage: order_by - he_team_damage: order_by - he_throws: order_by - headshot_hits: order_by - hits: order_by - hits_at_spotted: order_by - hs_kills: order_by - hs_kills_ct: order_by - hs_kills_t: order_by - kills: order_by - kills_ct: order_by - kills_t: order_by - knife_kills: order_by - molotov_damage: order_by - molotov_throws: order_by - non_awp_hits: order_by - on_target_frames: order_by - rounds_ct: order_by - rounds_played: order_by - rounds_t: order_by - shots_at_spotted: order_by - shots_fired: order_by - smoke_throws: order_by - spotted_count: order_by - spotted_with_damage_count: order_by - spray_hits: order_by - spray_shots: order_by - steam_id: order_by - team_damage: order_by - team_flashed: order_by - three_kill_rounds: order_by - total_engagement_frames: order_by - trade_kill_attempts: order_by - trade_kill_opportunities: order_by - trade_kill_successes: order_by - traded_death_attempts: order_by - traded_death_opportunities: order_by - traded_death_successes: order_by - two_kill_rounds: order_by - unused_utility_value: order_by - utility_on_death: order_by - wasted_magazine_shots: order_by - zeus_kills: order_by -} - -"""aggregate var_samp on columns""" -type player_match_stats_v_var_samp_fields { - assists: Float - assists_ct: Float - assists_t: Float - avg_crosshair_angle_deg: Float - avg_flash_duration: Float - avg_time_to_damage_s: Float - counter_strafe_eligible_shots: Float - counter_strafed_shots: Float - damage: Float - damage_ct: Float - damage_t: Float - deaths: Float - deaths_ct: Float - deaths_t: Float - decoy_throws: Float - enemies_flashed: Float - first_bullet_hits: Float - first_bullet_shots: Float - five_kill_rounds: Float - flash_assists: Float - flashes_thrown: Float - four_kill_rounds: Float - he_damage: Float - he_team_damage: Float - he_throws: Float - headshot_hits: Float - hits: Float - hits_at_spotted: Float - hs_kills: Float - hs_kills_ct: Float - hs_kills_t: Float - kills: Float - kills_ct: Float - kills_t: Float - knife_kills: Float - molotov_damage: Float - molotov_throws: Float - non_awp_hits: Float - on_target_frames: Float - rounds_ct: Float - rounds_played: Float - rounds_t: Float - shots_at_spotted: Float - shots_fired: Float - smoke_throws: Float - spotted_count: Float - spotted_with_damage_count: Float - spray_hits: Float - spray_shots: Float - steam_id: Float - team_damage: Float - team_flashed: Float - three_kill_rounds: Float - total_engagement_frames: Float - trade_kill_attempts: Float - trade_kill_opportunities: Float - trade_kill_successes: Float - traded_death_attempts: Float - traded_death_opportunities: Float - traded_death_successes: Float - two_kill_rounds: Float - unused_utility_value: Float - utility_on_death: Float - wasted_magazine_shots: Float - zeus_kills: Float -} - -""" -order by var_samp() on columns of table "player_match_stats_v" -""" -input player_match_stats_v_var_samp_order_by { - assists: order_by - assists_ct: order_by - assists_t: order_by - avg_crosshair_angle_deg: order_by - avg_flash_duration: order_by - avg_time_to_damage_s: order_by - counter_strafe_eligible_shots: order_by - counter_strafed_shots: order_by - damage: order_by - damage_ct: order_by - damage_t: order_by - deaths: order_by - deaths_ct: order_by - deaths_t: order_by - decoy_throws: order_by - enemies_flashed: order_by - first_bullet_hits: order_by - first_bullet_shots: order_by - five_kill_rounds: order_by - flash_assists: order_by - flashes_thrown: order_by - four_kill_rounds: order_by - he_damage: order_by - he_team_damage: order_by - he_throws: order_by - headshot_hits: order_by - hits: order_by - hits_at_spotted: order_by - hs_kills: order_by - hs_kills_ct: order_by - hs_kills_t: order_by - kills: order_by - kills_ct: order_by - kills_t: order_by - knife_kills: order_by - molotov_damage: order_by - molotov_throws: order_by - non_awp_hits: order_by - on_target_frames: order_by - rounds_ct: order_by - rounds_played: order_by - rounds_t: order_by - shots_at_spotted: order_by - shots_fired: order_by - smoke_throws: order_by - spotted_count: order_by - spotted_with_damage_count: order_by - spray_hits: order_by - spray_shots: order_by - steam_id: order_by - team_damage: order_by - team_flashed: order_by - three_kill_rounds: order_by - total_engagement_frames: order_by - trade_kill_attempts: order_by - trade_kill_opportunities: order_by - trade_kill_successes: order_by - traded_death_attempts: order_by - traded_death_opportunities: order_by - traded_death_successes: order_by - two_kill_rounds: order_by - unused_utility_value: order_by - utility_on_death: order_by - wasted_magazine_shots: order_by - zeus_kills: order_by -} - -"""aggregate variance on columns""" -type player_match_stats_v_variance_fields { - assists: Float - assists_ct: Float - assists_t: Float - avg_crosshair_angle_deg: Float - avg_flash_duration: Float - avg_time_to_damage_s: Float - counter_strafe_eligible_shots: Float - counter_strafed_shots: Float - damage: Float - damage_ct: Float - damage_t: Float - deaths: Float - deaths_ct: Float - deaths_t: Float - decoy_throws: Float - enemies_flashed: Float - first_bullet_hits: Float - first_bullet_shots: Float - five_kill_rounds: Float - flash_assists: Float - flashes_thrown: Float - four_kill_rounds: Float - he_damage: Float - he_team_damage: Float - he_throws: Float - headshot_hits: Float - hits: Float - hits_at_spotted: Float - hs_kills: Float - hs_kills_ct: Float - hs_kills_t: Float - kills: Float - kills_ct: Float - kills_t: Float - knife_kills: Float - molotov_damage: Float - molotov_throws: Float - non_awp_hits: Float - on_target_frames: Float - rounds_ct: Float - rounds_played: Float - rounds_t: Float - shots_at_spotted: Float - shots_fired: Float - smoke_throws: Float - spotted_count: Float - spotted_with_damage_count: Float - spray_hits: Float - spray_shots: Float - steam_id: Float - team_damage: Float - team_flashed: Float - three_kill_rounds: Float - total_engagement_frames: Float - trade_kill_attempts: Float - trade_kill_opportunities: Float - trade_kill_successes: Float - traded_death_attempts: Float - traded_death_opportunities: Float - traded_death_successes: Float - two_kill_rounds: Float - unused_utility_value: Float - utility_on_death: Float - wasted_magazine_shots: Float - zeus_kills: Float -} - -""" -order by variance() on columns of table "player_match_stats_v" -""" -input player_match_stats_v_variance_order_by { - assists: order_by - assists_ct: order_by - assists_t: order_by - avg_crosshair_angle_deg: order_by - avg_flash_duration: order_by - avg_time_to_damage_s: order_by - counter_strafe_eligible_shots: order_by - counter_strafed_shots: order_by - damage: order_by - damage_ct: order_by - damage_t: order_by - deaths: order_by - deaths_ct: order_by - deaths_t: order_by - decoy_throws: order_by - enemies_flashed: order_by - first_bullet_hits: order_by - first_bullet_shots: order_by - five_kill_rounds: order_by - flash_assists: order_by - flashes_thrown: order_by - four_kill_rounds: order_by - he_damage: order_by - he_team_damage: order_by - he_throws: order_by - headshot_hits: order_by - hits: order_by - hits_at_spotted: order_by - hs_kills: order_by - hs_kills_ct: order_by - hs_kills_t: order_by - kills: order_by - kills_ct: order_by - kills_t: order_by - knife_kills: order_by - molotov_damage: order_by - molotov_throws: order_by - non_awp_hits: order_by - on_target_frames: order_by - rounds_ct: order_by - rounds_played: order_by - rounds_t: order_by - shots_at_spotted: order_by - shots_fired: order_by - smoke_throws: order_by - spotted_count: order_by - spotted_with_damage_count: order_by - spray_hits: order_by - spray_shots: order_by - steam_id: order_by - team_damage: order_by - team_flashed: order_by - three_kill_rounds: order_by - total_engagement_frames: order_by - trade_kill_attempts: order_by - trade_kill_opportunities: order_by - trade_kill_successes: order_by - traded_death_attempts: order_by - traded_death_opportunities: order_by - traded_death_successes: order_by - two_kill_rounds: order_by - unused_utility_value: order_by - utility_on_death: order_by - wasted_magazine_shots: order_by - zeus_kills: order_by -} - -""" -columns and relationships of "player_objectives" -""" -type player_objectives { - deleted_at: timestamptz - - """An object relationship""" - match: matches! - match_id: uuid! - - """An object relationship""" - match_map: match_maps! - match_map_id: uuid! - - """An object relationship""" - player: players! - player_steam_id: bigint! - round: Int! - time: timestamptz! - type: e_objective_types_enum! -} - -""" -aggregated selection of "player_objectives" -""" -type player_objectives_aggregate { - aggregate: player_objectives_aggregate_fields - nodes: [player_objectives!]! -} - -input player_objectives_aggregate_bool_exp { - count: player_objectives_aggregate_bool_exp_count -} - -input player_objectives_aggregate_bool_exp_count { - arguments: [player_objectives_select_column!] - distinct: Boolean - filter: player_objectives_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "player_objectives" -""" -type player_objectives_aggregate_fields { - avg: player_objectives_avg_fields - count(columns: [player_objectives_select_column!], distinct: Boolean): Int! - max: player_objectives_max_fields - min: player_objectives_min_fields - stddev: player_objectives_stddev_fields - stddev_pop: player_objectives_stddev_pop_fields - stddev_samp: player_objectives_stddev_samp_fields - sum: player_objectives_sum_fields - var_pop: player_objectives_var_pop_fields - var_samp: player_objectives_var_samp_fields - variance: player_objectives_variance_fields -} - -""" -order by aggregate values of table "player_objectives" -""" -input player_objectives_aggregate_order_by { - avg: player_objectives_avg_order_by - count: order_by - max: player_objectives_max_order_by - min: player_objectives_min_order_by - stddev: player_objectives_stddev_order_by - stddev_pop: player_objectives_stddev_pop_order_by - stddev_samp: player_objectives_stddev_samp_order_by - sum: player_objectives_sum_order_by - var_pop: player_objectives_var_pop_order_by - var_samp: player_objectives_var_samp_order_by - variance: player_objectives_variance_order_by -} - -""" -input type for inserting array relation for remote table "player_objectives" -""" -input player_objectives_arr_rel_insert_input { - data: [player_objectives_insert_input!]! - - """upsert condition""" - on_conflict: player_objectives_on_conflict -} - -"""aggregate avg on columns""" -type player_objectives_avg_fields { - player_steam_id: Float - round: Float -} - -""" -order by avg() on columns of table "player_objectives" -""" -input player_objectives_avg_order_by { - player_steam_id: order_by - round: order_by -} - -""" -Boolean expression to filter rows from the table "player_objectives". All fields are combined with a logical 'AND'. -""" -input player_objectives_bool_exp { - _and: [player_objectives_bool_exp!] - _not: player_objectives_bool_exp - _or: [player_objectives_bool_exp!] - deleted_at: timestamptz_comparison_exp - match: matches_bool_exp - match_id: uuid_comparison_exp - match_map: match_maps_bool_exp - match_map_id: uuid_comparison_exp - player: players_bool_exp - player_steam_id: bigint_comparison_exp - round: Int_comparison_exp - time: timestamptz_comparison_exp - type: e_objective_types_enum_comparison_exp -} - -""" -unique or primary key constraints on table "player_objectives" -""" -enum player_objectives_constraint { - """ - unique or primary key constraint on columns "player_steam_id", "time", "match_map_id" - """ - player_objectives_pkey -} - -""" -input type for incrementing numeric columns in table "player_objectives" -""" -input player_objectives_inc_input { - player_steam_id: bigint - round: Int -} - -""" -input type for inserting data into table "player_objectives" -""" -input player_objectives_insert_input { - deleted_at: timestamptz - match: matches_obj_rel_insert_input - match_id: uuid - match_map: match_maps_obj_rel_insert_input - match_map_id: uuid - player: players_obj_rel_insert_input - player_steam_id: bigint - round: Int - time: timestamptz - type: e_objective_types_enum -} - -"""aggregate max on columns""" -type player_objectives_max_fields { - deleted_at: timestamptz - match_id: uuid - match_map_id: uuid - player_steam_id: bigint - round: Int - time: timestamptz -} - -""" -order by max() on columns of table "player_objectives" -""" -input player_objectives_max_order_by { - deleted_at: order_by - match_id: order_by - match_map_id: order_by - player_steam_id: order_by - round: order_by - time: order_by -} - -"""aggregate min on columns""" -type player_objectives_min_fields { - deleted_at: timestamptz - match_id: uuid - match_map_id: uuid - player_steam_id: bigint - round: Int - time: timestamptz -} - -""" -order by min() on columns of table "player_objectives" -""" -input player_objectives_min_order_by { - deleted_at: order_by - match_id: order_by - match_map_id: order_by - player_steam_id: order_by - round: order_by - time: order_by -} - -""" -response of any mutation on the table "player_objectives" -""" -type player_objectives_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [player_objectives!]! -} - -""" -on_conflict condition type for table "player_objectives" -""" -input player_objectives_on_conflict { - constraint: player_objectives_constraint! - update_columns: [player_objectives_update_column!]! = [] - where: player_objectives_bool_exp -} - -"""Ordering options when selecting data from "player_objectives".""" -input player_objectives_order_by { - deleted_at: order_by - match: matches_order_by - match_id: order_by - match_map: match_maps_order_by - match_map_id: order_by - player: players_order_by - player_steam_id: order_by - round: order_by - time: order_by - type: order_by -} - -"""primary key columns input for table: player_objectives""" -input player_objectives_pk_columns_input { - match_map_id: uuid! - player_steam_id: bigint! - time: timestamptz! -} - -""" -select columns of table "player_objectives" -""" -enum player_objectives_select_column { - """column name""" - deleted_at - - """column name""" - match_id - - """column name""" - match_map_id - - """column name""" - player_steam_id - - """column name""" - round - - """column name""" - time - - """column name""" - type -} - -""" -input type for updating data in table "player_objectives" -""" -input player_objectives_set_input { - deleted_at: timestamptz - match_id: uuid - match_map_id: uuid - player_steam_id: bigint - round: Int - time: timestamptz - type: e_objective_types_enum -} - -"""aggregate stddev on columns""" -type player_objectives_stddev_fields { - player_steam_id: Float - round: Float -} - -""" -order by stddev() on columns of table "player_objectives" -""" -input player_objectives_stddev_order_by { - player_steam_id: order_by - round: order_by -} - -"""aggregate stddev_pop on columns""" -type player_objectives_stddev_pop_fields { - player_steam_id: Float - round: Float -} - -""" -order by stddev_pop() on columns of table "player_objectives" -""" -input player_objectives_stddev_pop_order_by { - player_steam_id: order_by - round: order_by -} - -"""aggregate stddev_samp on columns""" -type player_objectives_stddev_samp_fields { - player_steam_id: Float - round: Float -} - -""" -order by stddev_samp() on columns of table "player_objectives" -""" -input player_objectives_stddev_samp_order_by { - player_steam_id: order_by - round: order_by -} - -""" -Streaming cursor of the table "player_objectives" -""" -input player_objectives_stream_cursor_input { - """Stream column input with initial value""" - initial_value: player_objectives_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input player_objectives_stream_cursor_value_input { - deleted_at: timestamptz - match_id: uuid - match_map_id: uuid - player_steam_id: bigint - round: Int - time: timestamptz - type: e_objective_types_enum -} - -"""aggregate sum on columns""" -type player_objectives_sum_fields { - player_steam_id: bigint - round: Int -} - -""" -order by sum() on columns of table "player_objectives" -""" -input player_objectives_sum_order_by { - player_steam_id: order_by - round: order_by -} - -""" -update columns of table "player_objectives" -""" -enum player_objectives_update_column { - """column name""" - deleted_at - - """column name""" - match_id - - """column name""" - match_map_id - - """column name""" - player_steam_id - - """column name""" - round - - """column name""" - time - - """column name""" - type -} - -input player_objectives_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: player_objectives_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_objectives_set_input - - """filter the rows which have to be updated""" - where: player_objectives_bool_exp! -} - -"""aggregate var_pop on columns""" -type player_objectives_var_pop_fields { - player_steam_id: Float - round: Float -} - -""" -order by var_pop() on columns of table "player_objectives" -""" -input player_objectives_var_pop_order_by { - player_steam_id: order_by - round: order_by -} - -"""aggregate var_samp on columns""" -type player_objectives_var_samp_fields { - player_steam_id: Float - round: Float -} - -""" -order by var_samp() on columns of table "player_objectives" -""" -input player_objectives_var_samp_order_by { - player_steam_id: order_by - round: order_by -} - -"""aggregate variance on columns""" -type player_objectives_variance_fields { - player_steam_id: Float - round: Float -} - -""" -order by variance() on columns of table "player_objectives" -""" -input player_objectives_variance_order_by { - player_steam_id: order_by - round: order_by -} - -""" -columns and relationships of "player_performance_v" -""" -type player_performance_v { - accuracy_score: float8 - aim_goal: float8 - aim_rating: float8 - band: Int - band_sample: bigint - blind_score: float8 - counter_strafe_score: float8 - crosshair_score: float8 - flash_assists_score: float8 - hs_score: float8 - kast_score: float8 - maps: Int - positioning_goal: float8 - positioning_rating: float8 - premier_rank: Int - rounds: Int - spotted_score: float8 - steam_id: bigint - survival_score: float8 - traded_score: float8 - ttd_score: float8 - util_eff_score: float8 - utility_goal: float8 - utility_rating: float8 -} - -""" -aggregated selection of "player_performance_v" -""" -type player_performance_v_aggregate { - aggregate: player_performance_v_aggregate_fields - nodes: [player_performance_v!]! -} - -""" -aggregate fields of "player_performance_v" -""" -type player_performance_v_aggregate_fields { - avg: player_performance_v_avg_fields - count(columns: [player_performance_v_select_column!], distinct: Boolean): Int! - max: player_performance_v_max_fields - min: player_performance_v_min_fields - stddev: player_performance_v_stddev_fields - stddev_pop: player_performance_v_stddev_pop_fields - stddev_samp: player_performance_v_stddev_samp_fields - sum: player_performance_v_sum_fields - var_pop: player_performance_v_var_pop_fields - var_samp: player_performance_v_var_samp_fields - variance: player_performance_v_variance_fields -} - -"""aggregate avg on columns""" -type player_performance_v_avg_fields { - accuracy_score: Float - aim_goal: Float - aim_rating: Float - band: Float - band_sample: Float - blind_score: Float - counter_strafe_score: Float - crosshair_score: Float - flash_assists_score: Float - hs_score: Float - kast_score: Float - maps: Float - positioning_goal: Float - positioning_rating: Float - premier_rank: Float - rounds: Float - spotted_score: Float - steam_id: Float - survival_score: Float - traded_score: Float - ttd_score: Float - util_eff_score: Float - utility_goal: Float - utility_rating: Float -} - -""" -Boolean expression to filter rows from the table "player_performance_v". All fields are combined with a logical 'AND'. -""" -input player_performance_v_bool_exp { - _and: [player_performance_v_bool_exp!] - _not: player_performance_v_bool_exp - _or: [player_performance_v_bool_exp!] - accuracy_score: float8_comparison_exp - aim_goal: float8_comparison_exp - aim_rating: float8_comparison_exp - band: Int_comparison_exp - band_sample: bigint_comparison_exp - blind_score: float8_comparison_exp - counter_strafe_score: float8_comparison_exp - crosshair_score: float8_comparison_exp - flash_assists_score: float8_comparison_exp - hs_score: float8_comparison_exp - kast_score: float8_comparison_exp - maps: Int_comparison_exp - positioning_goal: float8_comparison_exp - positioning_rating: float8_comparison_exp - premier_rank: Int_comparison_exp - rounds: Int_comparison_exp - spotted_score: float8_comparison_exp - steam_id: bigint_comparison_exp - survival_score: float8_comparison_exp - traded_score: float8_comparison_exp - ttd_score: float8_comparison_exp - util_eff_score: float8_comparison_exp - utility_goal: float8_comparison_exp - utility_rating: float8_comparison_exp -} - -"""aggregate max on columns""" -type player_performance_v_max_fields { - accuracy_score: float8 - aim_goal: float8 - aim_rating: float8 - band: Int - band_sample: bigint - blind_score: float8 - counter_strafe_score: float8 - crosshair_score: float8 - flash_assists_score: float8 - hs_score: float8 - kast_score: float8 - maps: Int - positioning_goal: float8 - positioning_rating: float8 - premier_rank: Int - rounds: Int - spotted_score: float8 - steam_id: bigint - survival_score: float8 - traded_score: float8 - ttd_score: float8 - util_eff_score: float8 - utility_goal: float8 - utility_rating: float8 -} - -"""aggregate min on columns""" -type player_performance_v_min_fields { - accuracy_score: float8 - aim_goal: float8 - aim_rating: float8 - band: Int - band_sample: bigint - blind_score: float8 - counter_strafe_score: float8 - crosshair_score: float8 - flash_assists_score: float8 - hs_score: float8 - kast_score: float8 - maps: Int - positioning_goal: float8 - positioning_rating: float8 - premier_rank: Int - rounds: Int - spotted_score: float8 - steam_id: bigint - survival_score: float8 - traded_score: float8 - ttd_score: float8 - util_eff_score: float8 - utility_goal: float8 - utility_rating: float8 -} - -"""Ordering options when selecting data from "player_performance_v".""" -input player_performance_v_order_by { - accuracy_score: order_by - aim_goal: order_by - aim_rating: order_by - band: order_by - band_sample: order_by - blind_score: order_by - counter_strafe_score: order_by - crosshair_score: order_by - flash_assists_score: order_by - hs_score: order_by - kast_score: order_by - maps: order_by - positioning_goal: order_by - positioning_rating: order_by - premier_rank: order_by - rounds: order_by - spotted_score: order_by - steam_id: order_by - survival_score: order_by - traded_score: order_by - ttd_score: order_by - util_eff_score: order_by - utility_goal: order_by - utility_rating: order_by -} - -""" -select columns of table "player_performance_v" -""" -enum player_performance_v_select_column { - """column name""" - accuracy_score - - """column name""" - aim_goal - - """column name""" - aim_rating - - """column name""" - band - - """column name""" - band_sample - - """column name""" - blind_score - - """column name""" - counter_strafe_score - - """column name""" - crosshair_score - - """column name""" - flash_assists_score - - """column name""" - hs_score - - """column name""" - kast_score - - """column name""" - maps - - """column name""" - positioning_goal - - """column name""" - positioning_rating - - """column name""" - premier_rank - - """column name""" - rounds - - """column name""" - spotted_score - - """column name""" - steam_id - - """column name""" - survival_score - - """column name""" - traded_score - - """column name""" - ttd_score - - """column name""" - util_eff_score - - """column name""" - utility_goal - - """column name""" - utility_rating -} - -"""aggregate stddev on columns""" -type player_performance_v_stddev_fields { - accuracy_score: Float - aim_goal: Float - aim_rating: Float - band: Float - band_sample: Float - blind_score: Float - counter_strafe_score: Float - crosshair_score: Float - flash_assists_score: Float - hs_score: Float - kast_score: Float - maps: Float - positioning_goal: Float - positioning_rating: Float - premier_rank: Float - rounds: Float - spotted_score: Float - steam_id: Float - survival_score: Float - traded_score: Float - ttd_score: Float - util_eff_score: Float - utility_goal: Float - utility_rating: Float -} - -"""aggregate stddev_pop on columns""" -type player_performance_v_stddev_pop_fields { - accuracy_score: Float - aim_goal: Float - aim_rating: Float - band: Float - band_sample: Float - blind_score: Float - counter_strafe_score: Float - crosshair_score: Float - flash_assists_score: Float - hs_score: Float - kast_score: Float - maps: Float - positioning_goal: Float - positioning_rating: Float - premier_rank: Float - rounds: Float - spotted_score: Float - steam_id: Float - survival_score: Float - traded_score: Float - ttd_score: Float - util_eff_score: Float - utility_goal: Float - utility_rating: Float -} - -"""aggregate stddev_samp on columns""" -type player_performance_v_stddev_samp_fields { - accuracy_score: Float - aim_goal: Float - aim_rating: Float - band: Float - band_sample: Float - blind_score: Float - counter_strafe_score: Float - crosshair_score: Float - flash_assists_score: Float - hs_score: Float - kast_score: Float - maps: Float - positioning_goal: Float - positioning_rating: Float - premier_rank: Float - rounds: Float - spotted_score: Float - steam_id: Float - survival_score: Float - traded_score: Float - ttd_score: Float - util_eff_score: Float - utility_goal: Float - utility_rating: Float -} - -""" -Streaming cursor of the table "player_performance_v" -""" -input player_performance_v_stream_cursor_input { - """Stream column input with initial value""" - initial_value: player_performance_v_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input player_performance_v_stream_cursor_value_input { - accuracy_score: float8 - aim_goal: float8 - aim_rating: float8 - band: Int - band_sample: bigint - blind_score: float8 - counter_strafe_score: float8 - crosshair_score: float8 - flash_assists_score: float8 - hs_score: float8 - kast_score: float8 - maps: Int - positioning_goal: float8 - positioning_rating: float8 - premier_rank: Int - rounds: Int - spotted_score: float8 - steam_id: bigint - survival_score: float8 - traded_score: float8 - ttd_score: float8 - util_eff_score: float8 - utility_goal: float8 - utility_rating: float8 -} - -"""aggregate sum on columns""" -type player_performance_v_sum_fields { - accuracy_score: float8 - aim_goal: float8 - aim_rating: float8 - band: Int - band_sample: bigint - blind_score: float8 - counter_strafe_score: float8 - crosshair_score: float8 - flash_assists_score: float8 - hs_score: float8 - kast_score: float8 - maps: Int - positioning_goal: float8 - positioning_rating: float8 - premier_rank: Int - rounds: Int - spotted_score: float8 - steam_id: bigint - survival_score: float8 - traded_score: float8 - ttd_score: float8 - util_eff_score: float8 - utility_goal: float8 - utility_rating: float8 -} - -"""aggregate var_pop on columns""" -type player_performance_v_var_pop_fields { - accuracy_score: Float - aim_goal: Float - aim_rating: Float - band: Float - band_sample: Float - blind_score: Float - counter_strafe_score: Float - crosshair_score: Float - flash_assists_score: Float - hs_score: Float - kast_score: Float - maps: Float - positioning_goal: Float - positioning_rating: Float - premier_rank: Float - rounds: Float - spotted_score: Float - steam_id: Float - survival_score: Float - traded_score: Float - ttd_score: Float - util_eff_score: Float - utility_goal: Float - utility_rating: Float -} - -"""aggregate var_samp on columns""" -type player_performance_v_var_samp_fields { - accuracy_score: Float - aim_goal: Float - aim_rating: Float - band: Float - band_sample: Float - blind_score: Float - counter_strafe_score: Float - crosshair_score: Float - flash_assists_score: Float - hs_score: Float - kast_score: Float - maps: Float - positioning_goal: Float - positioning_rating: Float - premier_rank: Float - rounds: Float - spotted_score: Float - steam_id: Float - survival_score: Float - traded_score: Float - ttd_score: Float - util_eff_score: Float - utility_goal: Float - utility_rating: Float -} - -"""aggregate variance on columns""" -type player_performance_v_variance_fields { - accuracy_score: Float - aim_goal: Float - aim_rating: Float - band: Float - band_sample: Float - blind_score: Float - counter_strafe_score: Float - crosshair_score: Float - flash_assists_score: Float - hs_score: Float - kast_score: Float - maps: Float - positioning_goal: Float - positioning_rating: Float - premier_rank: Float - rounds: Float - spotted_score: Float - steam_id: Float - survival_score: Float - traded_score: Float - ttd_score: Float - util_eff_score: Float - utility_goal: Float - utility_rating: Float -} - -""" -columns and relationships of "player_premier_rank_history" -""" -type player_premier_rank_history { - id: uuid! - - """An object relationship""" - map: maps - map_id: uuid - - """An object relationship""" - match: matches! - match_id: uuid! - observed_at: timestamptz! - - """An object relationship""" - player: players! - previous_rank: Int - rank: Int! - rank_type: Int! - steam_id: bigint! -} - -""" -aggregated selection of "player_premier_rank_history" -""" -type player_premier_rank_history_aggregate { - aggregate: player_premier_rank_history_aggregate_fields - nodes: [player_premier_rank_history!]! -} - -input player_premier_rank_history_aggregate_bool_exp { - count: player_premier_rank_history_aggregate_bool_exp_count -} - -input player_premier_rank_history_aggregate_bool_exp_count { - arguments: [player_premier_rank_history_select_column!] - distinct: Boolean - filter: player_premier_rank_history_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "player_premier_rank_history" -""" -type player_premier_rank_history_aggregate_fields { - avg: player_premier_rank_history_avg_fields - count(columns: [player_premier_rank_history_select_column!], distinct: Boolean): Int! - max: player_premier_rank_history_max_fields - min: player_premier_rank_history_min_fields - stddev: player_premier_rank_history_stddev_fields - stddev_pop: player_premier_rank_history_stddev_pop_fields - stddev_samp: player_premier_rank_history_stddev_samp_fields - sum: player_premier_rank_history_sum_fields - var_pop: player_premier_rank_history_var_pop_fields - var_samp: player_premier_rank_history_var_samp_fields - variance: player_premier_rank_history_variance_fields -} - -""" -order by aggregate values of table "player_premier_rank_history" -""" -input player_premier_rank_history_aggregate_order_by { - avg: player_premier_rank_history_avg_order_by - count: order_by - max: player_premier_rank_history_max_order_by - min: player_premier_rank_history_min_order_by - stddev: player_premier_rank_history_stddev_order_by - stddev_pop: player_premier_rank_history_stddev_pop_order_by - stddev_samp: player_premier_rank_history_stddev_samp_order_by - sum: player_premier_rank_history_sum_order_by - var_pop: player_premier_rank_history_var_pop_order_by - var_samp: player_premier_rank_history_var_samp_order_by - variance: player_premier_rank_history_variance_order_by -} - -""" -input type for inserting array relation for remote table "player_premier_rank_history" -""" -input player_premier_rank_history_arr_rel_insert_input { - data: [player_premier_rank_history_insert_input!]! - - """upsert condition""" - on_conflict: player_premier_rank_history_on_conflict -} - -"""aggregate avg on columns""" -type player_premier_rank_history_avg_fields { - previous_rank: Float - rank: Float - rank_type: Float - steam_id: Float -} - -""" -order by avg() on columns of table "player_premier_rank_history" -""" -input player_premier_rank_history_avg_order_by { - previous_rank: order_by - rank: order_by - rank_type: order_by - steam_id: order_by -} - -""" -Boolean expression to filter rows from the table "player_premier_rank_history". All fields are combined with a logical 'AND'. -""" -input player_premier_rank_history_bool_exp { - _and: [player_premier_rank_history_bool_exp!] - _not: player_premier_rank_history_bool_exp - _or: [player_premier_rank_history_bool_exp!] - id: uuid_comparison_exp - map: maps_bool_exp - map_id: uuid_comparison_exp - match: matches_bool_exp - match_id: uuid_comparison_exp - observed_at: timestamptz_comparison_exp - player: players_bool_exp - previous_rank: Int_comparison_exp - rank: Int_comparison_exp - rank_type: Int_comparison_exp - steam_id: bigint_comparison_exp -} - -""" -unique or primary key constraints on table "player_premier_rank_history" -""" -enum player_premier_rank_history_constraint { - """ - unique or primary key constraint on columns "id" - """ - player_premier_rank_history_pkey - - """ - unique or primary key constraint on columns "steam_id", "rank_type", "match_id" - """ - uq_player_premier_rank_history_steam_match_type -} - -""" -input type for incrementing numeric columns in table "player_premier_rank_history" -""" -input player_premier_rank_history_inc_input { - previous_rank: Int - rank: Int - rank_type: Int - steam_id: bigint -} - -""" -input type for inserting data into table "player_premier_rank_history" -""" -input player_premier_rank_history_insert_input { - id: uuid - map: maps_obj_rel_insert_input - map_id: uuid - match: matches_obj_rel_insert_input - match_id: uuid - observed_at: timestamptz - player: players_obj_rel_insert_input - previous_rank: Int - rank: Int - rank_type: Int - steam_id: bigint -} - -"""aggregate max on columns""" -type player_premier_rank_history_max_fields { - id: uuid - map_id: uuid - match_id: uuid - observed_at: timestamptz - previous_rank: Int - rank: Int - rank_type: Int - steam_id: bigint -} - -""" -order by max() on columns of table "player_premier_rank_history" -""" -input player_premier_rank_history_max_order_by { - id: order_by - map_id: order_by - match_id: order_by - observed_at: order_by - previous_rank: order_by - rank: order_by - rank_type: order_by - steam_id: order_by -} - -"""aggregate min on columns""" -type player_premier_rank_history_min_fields { - id: uuid - map_id: uuid - match_id: uuid - observed_at: timestamptz - previous_rank: Int - rank: Int - rank_type: Int - steam_id: bigint -} - -""" -order by min() on columns of table "player_premier_rank_history" -""" -input player_premier_rank_history_min_order_by { - id: order_by - map_id: order_by - match_id: order_by - observed_at: order_by - previous_rank: order_by - rank: order_by - rank_type: order_by - steam_id: order_by -} - -""" -response of any mutation on the table "player_premier_rank_history" -""" -type player_premier_rank_history_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [player_premier_rank_history!]! -} - -""" -on_conflict condition type for table "player_premier_rank_history" -""" -input player_premier_rank_history_on_conflict { - constraint: player_premier_rank_history_constraint! - update_columns: [player_premier_rank_history_update_column!]! = [] - where: player_premier_rank_history_bool_exp -} - -""" -Ordering options when selecting data from "player_premier_rank_history". -""" -input player_premier_rank_history_order_by { - id: order_by - map: maps_order_by - map_id: order_by - match: matches_order_by - match_id: order_by - observed_at: order_by - player: players_order_by - previous_rank: order_by - rank: order_by - rank_type: order_by - steam_id: order_by -} - -"""primary key columns input for table: player_premier_rank_history""" -input player_premier_rank_history_pk_columns_input { - id: uuid! -} - -""" -select columns of table "player_premier_rank_history" -""" -enum player_premier_rank_history_select_column { - """column name""" - id - - """column name""" - map_id - - """column name""" - match_id - - """column name""" - observed_at - - """column name""" - previous_rank - - """column name""" - rank - - """column name""" - rank_type - - """column name""" - steam_id -} - -""" -input type for updating data in table "player_premier_rank_history" -""" -input player_premier_rank_history_set_input { - id: uuid - map_id: uuid - match_id: uuid - observed_at: timestamptz - previous_rank: Int - rank: Int - rank_type: Int - steam_id: bigint -} - -"""aggregate stddev on columns""" -type player_premier_rank_history_stddev_fields { - previous_rank: Float - rank: Float - rank_type: Float - steam_id: Float -} - -""" -order by stddev() on columns of table "player_premier_rank_history" -""" -input player_premier_rank_history_stddev_order_by { - previous_rank: order_by - rank: order_by - rank_type: order_by - steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type player_premier_rank_history_stddev_pop_fields { - previous_rank: Float - rank: Float - rank_type: Float - steam_id: Float -} - -""" -order by stddev_pop() on columns of table "player_premier_rank_history" -""" -input player_premier_rank_history_stddev_pop_order_by { - previous_rank: order_by - rank: order_by - rank_type: order_by - steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type player_premier_rank_history_stddev_samp_fields { - previous_rank: Float - rank: Float - rank_type: Float - steam_id: Float -} - -""" -order by stddev_samp() on columns of table "player_premier_rank_history" -""" -input player_premier_rank_history_stddev_samp_order_by { - previous_rank: order_by - rank: order_by - rank_type: order_by - steam_id: order_by -} - -""" -Streaming cursor of the table "player_premier_rank_history" -""" -input player_premier_rank_history_stream_cursor_input { - """Stream column input with initial value""" - initial_value: player_premier_rank_history_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input player_premier_rank_history_stream_cursor_value_input { - id: uuid - map_id: uuid - match_id: uuid - observed_at: timestamptz - previous_rank: Int - rank: Int - rank_type: Int - steam_id: bigint -} - -"""aggregate sum on columns""" -type player_premier_rank_history_sum_fields { - previous_rank: Int - rank: Int - rank_type: Int - steam_id: bigint -} - -""" -order by sum() on columns of table "player_premier_rank_history" -""" -input player_premier_rank_history_sum_order_by { - previous_rank: order_by - rank: order_by - rank_type: order_by - steam_id: order_by -} - -""" -update columns of table "player_premier_rank_history" -""" -enum player_premier_rank_history_update_column { - """column name""" - id - - """column name""" - map_id - - """column name""" - match_id - - """column name""" - observed_at - - """column name""" - previous_rank - - """column name""" - rank - - """column name""" - rank_type - - """column name""" - steam_id -} - -input player_premier_rank_history_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: player_premier_rank_history_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_premier_rank_history_set_input - - """filter the rows which have to be updated""" - where: player_premier_rank_history_bool_exp! -} - -"""aggregate var_pop on columns""" -type player_premier_rank_history_var_pop_fields { - previous_rank: Float - rank: Float - rank_type: Float - steam_id: Float -} - -""" -order by var_pop() on columns of table "player_premier_rank_history" -""" -input player_premier_rank_history_var_pop_order_by { - previous_rank: order_by - rank: order_by - rank_type: order_by - steam_id: order_by -} - -"""aggregate var_samp on columns""" -type player_premier_rank_history_var_samp_fields { - previous_rank: Float - rank: Float - rank_type: Float - steam_id: Float -} - -""" -order by var_samp() on columns of table "player_premier_rank_history" -""" -input player_premier_rank_history_var_samp_order_by { - previous_rank: order_by - rank: order_by - rank_type: order_by - steam_id: order_by -} - -"""aggregate variance on columns""" -type player_premier_rank_history_variance_fields { - previous_rank: Float - rank: Float - rank_type: Float - steam_id: Float -} - -""" -order by variance() on columns of table "player_premier_rank_history" -""" -input player_premier_rank_history_variance_order_by { - previous_rank: order_by - rank: order_by - rank_type: order_by - steam_id: order_by -} - -""" -columns and relationships of "player_sanctions" -""" -type player_sanctions { - created_at: timestamptz! - deleted_at: timestamptz - - """An object relationship""" - e_sanction_type: e_sanction_types! - id: uuid! - - """An object relationship""" - player: players! - player_steam_id: bigint! - reason: String - remove_sanction_date: timestamptz - - """An object relationship""" - sanctioned_by: players - sanctioned_by_steam_id: bigint - type: e_sanction_types_enum! -} - -""" -aggregated selection of "player_sanctions" -""" -type player_sanctions_aggregate { - aggregate: player_sanctions_aggregate_fields - nodes: [player_sanctions!]! -} - -input player_sanctions_aggregate_bool_exp { - count: player_sanctions_aggregate_bool_exp_count -} - -input player_sanctions_aggregate_bool_exp_count { - arguments: [player_sanctions_select_column!] - distinct: Boolean - filter: player_sanctions_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "player_sanctions" -""" -type player_sanctions_aggregate_fields { - avg: player_sanctions_avg_fields - count(columns: [player_sanctions_select_column!], distinct: Boolean): Int! - max: player_sanctions_max_fields - min: player_sanctions_min_fields - stddev: player_sanctions_stddev_fields - stddev_pop: player_sanctions_stddev_pop_fields - stddev_samp: player_sanctions_stddev_samp_fields - sum: player_sanctions_sum_fields - var_pop: player_sanctions_var_pop_fields - var_samp: player_sanctions_var_samp_fields - variance: player_sanctions_variance_fields -} - -""" -order by aggregate values of table "player_sanctions" -""" -input player_sanctions_aggregate_order_by { - avg: player_sanctions_avg_order_by - count: order_by - max: player_sanctions_max_order_by - min: player_sanctions_min_order_by - stddev: player_sanctions_stddev_order_by - stddev_pop: player_sanctions_stddev_pop_order_by - stddev_samp: player_sanctions_stddev_samp_order_by - sum: player_sanctions_sum_order_by - var_pop: player_sanctions_var_pop_order_by - var_samp: player_sanctions_var_samp_order_by - variance: player_sanctions_variance_order_by -} - -""" -input type for inserting array relation for remote table "player_sanctions" -""" -input player_sanctions_arr_rel_insert_input { - data: [player_sanctions_insert_input!]! - - """upsert condition""" - on_conflict: player_sanctions_on_conflict -} - -"""aggregate avg on columns""" -type player_sanctions_avg_fields { - player_steam_id: Float - sanctioned_by_steam_id: Float -} - -""" -order by avg() on columns of table "player_sanctions" -""" -input player_sanctions_avg_order_by { - player_steam_id: order_by - sanctioned_by_steam_id: order_by -} - -""" -Boolean expression to filter rows from the table "player_sanctions". All fields are combined with a logical 'AND'. -""" -input player_sanctions_bool_exp { - _and: [player_sanctions_bool_exp!] - _not: player_sanctions_bool_exp - _or: [player_sanctions_bool_exp!] - created_at: timestamptz_comparison_exp - deleted_at: timestamptz_comparison_exp - e_sanction_type: e_sanction_types_bool_exp - id: uuid_comparison_exp - player: players_bool_exp - player_steam_id: bigint_comparison_exp - reason: String_comparison_exp - remove_sanction_date: timestamptz_comparison_exp - sanctioned_by: players_bool_exp - sanctioned_by_steam_id: bigint_comparison_exp - type: e_sanction_types_enum_comparison_exp -} - -""" -unique or primary key constraints on table "player_sanctions" -""" -enum player_sanctions_constraint { - """ - unique or primary key constraint on columns "id", "created_at" - """ - player_sanctions_pkey -} - -""" -input type for incrementing numeric columns in table "player_sanctions" -""" -input player_sanctions_inc_input { - player_steam_id: bigint - sanctioned_by_steam_id: bigint -} - -""" -input type for inserting data into table "player_sanctions" -""" -input player_sanctions_insert_input { - created_at: timestamptz - deleted_at: timestamptz - e_sanction_type: e_sanction_types_obj_rel_insert_input - id: uuid - player: players_obj_rel_insert_input - player_steam_id: bigint - reason: String - remove_sanction_date: timestamptz - sanctioned_by: players_obj_rel_insert_input - sanctioned_by_steam_id: bigint - type: e_sanction_types_enum -} - -"""aggregate max on columns""" -type player_sanctions_max_fields { - created_at: timestamptz - deleted_at: timestamptz - id: uuid - player_steam_id: bigint - reason: String - remove_sanction_date: timestamptz - sanctioned_by_steam_id: bigint -} - -""" -order by max() on columns of table "player_sanctions" -""" -input player_sanctions_max_order_by { - created_at: order_by - deleted_at: order_by - id: order_by - player_steam_id: order_by - reason: order_by - remove_sanction_date: order_by - sanctioned_by_steam_id: order_by -} - -"""aggregate min on columns""" -type player_sanctions_min_fields { - created_at: timestamptz - deleted_at: timestamptz - id: uuid - player_steam_id: bigint - reason: String - remove_sanction_date: timestamptz - sanctioned_by_steam_id: bigint -} - -""" -order by min() on columns of table "player_sanctions" -""" -input player_sanctions_min_order_by { - created_at: order_by - deleted_at: order_by - id: order_by - player_steam_id: order_by - reason: order_by - remove_sanction_date: order_by - sanctioned_by_steam_id: order_by -} - -""" -response of any mutation on the table "player_sanctions" -""" -type player_sanctions_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [player_sanctions!]! -} - -""" -on_conflict condition type for table "player_sanctions" -""" -input player_sanctions_on_conflict { - constraint: player_sanctions_constraint! - update_columns: [player_sanctions_update_column!]! = [] - where: player_sanctions_bool_exp -} - -"""Ordering options when selecting data from "player_sanctions".""" -input player_sanctions_order_by { - created_at: order_by - deleted_at: order_by - e_sanction_type: e_sanction_types_order_by - id: order_by - player: players_order_by - player_steam_id: order_by - reason: order_by - remove_sanction_date: order_by - sanctioned_by: players_order_by - sanctioned_by_steam_id: order_by - type: order_by -} - -"""primary key columns input for table: player_sanctions""" -input player_sanctions_pk_columns_input { - created_at: timestamptz! - id: uuid! -} - -""" -select columns of table "player_sanctions" -""" -enum player_sanctions_select_column { - """column name""" - created_at - - """column name""" - deleted_at - - """column name""" - id - - """column name""" - player_steam_id - - """column name""" - reason - - """column name""" - remove_sanction_date - - """column name""" - sanctioned_by_steam_id - - """column name""" - type -} - -""" -input type for updating data in table "player_sanctions" -""" -input player_sanctions_set_input { - created_at: timestamptz - deleted_at: timestamptz - id: uuid - player_steam_id: bigint - reason: String - remove_sanction_date: timestamptz - sanctioned_by_steam_id: bigint - type: e_sanction_types_enum -} - -"""aggregate stddev on columns""" -type player_sanctions_stddev_fields { - player_steam_id: Float - sanctioned_by_steam_id: Float -} - -""" -order by stddev() on columns of table "player_sanctions" -""" -input player_sanctions_stddev_order_by { - player_steam_id: order_by - sanctioned_by_steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type player_sanctions_stddev_pop_fields { - player_steam_id: Float - sanctioned_by_steam_id: Float -} - -""" -order by stddev_pop() on columns of table "player_sanctions" -""" -input player_sanctions_stddev_pop_order_by { - player_steam_id: order_by - sanctioned_by_steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type player_sanctions_stddev_samp_fields { - player_steam_id: Float - sanctioned_by_steam_id: Float -} - -""" -order by stddev_samp() on columns of table "player_sanctions" -""" -input player_sanctions_stddev_samp_order_by { - player_steam_id: order_by - sanctioned_by_steam_id: order_by -} - -""" -Streaming cursor of the table "player_sanctions" -""" -input player_sanctions_stream_cursor_input { - """Stream column input with initial value""" - initial_value: player_sanctions_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input player_sanctions_stream_cursor_value_input { - created_at: timestamptz - deleted_at: timestamptz - id: uuid - player_steam_id: bigint - reason: String - remove_sanction_date: timestamptz - sanctioned_by_steam_id: bigint - type: e_sanction_types_enum -} - -"""aggregate sum on columns""" -type player_sanctions_sum_fields { - player_steam_id: bigint - sanctioned_by_steam_id: bigint -} - -""" -order by sum() on columns of table "player_sanctions" -""" -input player_sanctions_sum_order_by { - player_steam_id: order_by - sanctioned_by_steam_id: order_by -} - -""" -update columns of table "player_sanctions" -""" -enum player_sanctions_update_column { - """column name""" - created_at - - """column name""" - deleted_at - - """column name""" - id - - """column name""" - player_steam_id - - """column name""" - reason - - """column name""" - remove_sanction_date - - """column name""" - sanctioned_by_steam_id - - """column name""" - type -} - -input player_sanctions_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: player_sanctions_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_sanctions_set_input - - """filter the rows which have to be updated""" - where: player_sanctions_bool_exp! -} - -"""aggregate var_pop on columns""" -type player_sanctions_var_pop_fields { - player_steam_id: Float - sanctioned_by_steam_id: Float -} - -""" -order by var_pop() on columns of table "player_sanctions" -""" -input player_sanctions_var_pop_order_by { - player_steam_id: order_by - sanctioned_by_steam_id: order_by -} - -"""aggregate var_samp on columns""" -type player_sanctions_var_samp_fields { - player_steam_id: Float - sanctioned_by_steam_id: Float -} - -""" -order by var_samp() on columns of table "player_sanctions" -""" -input player_sanctions_var_samp_order_by { - player_steam_id: order_by - sanctioned_by_steam_id: order_by -} - -"""aggregate variance on columns""" -type player_sanctions_variance_fields { - player_steam_id: Float - sanctioned_by_steam_id: Float -} - -""" -order by variance() on columns of table "player_sanctions" -""" -input player_sanctions_variance_order_by { - player_steam_id: order_by - sanctioned_by_steam_id: order_by -} - -""" -columns and relationships of "player_season_stats" -""" -type player_season_stats { - assists: bigint! - deaths: bigint! - headshot_percentage: float8! - headshots: bigint! - kills: bigint! - - """An object relationship""" - player: players! - player_steam_id: bigint! - - """An object relationship""" - season: seasons! - season_id: uuid! -} - -""" -aggregated selection of "player_season_stats" -""" -type player_season_stats_aggregate { - aggregate: player_season_stats_aggregate_fields - nodes: [player_season_stats!]! -} - -input player_season_stats_aggregate_bool_exp { - avg: player_season_stats_aggregate_bool_exp_avg - corr: player_season_stats_aggregate_bool_exp_corr - count: player_season_stats_aggregate_bool_exp_count - covar_samp: player_season_stats_aggregate_bool_exp_covar_samp - max: player_season_stats_aggregate_bool_exp_max - min: player_season_stats_aggregate_bool_exp_min - stddev_samp: player_season_stats_aggregate_bool_exp_stddev_samp - sum: player_season_stats_aggregate_bool_exp_sum - var_samp: player_season_stats_aggregate_bool_exp_var_samp -} - -input player_season_stats_aggregate_bool_exp_avg { - arguments: player_season_stats_select_column_player_season_stats_aggregate_bool_exp_avg_arguments_columns! - distinct: Boolean - filter: player_season_stats_bool_exp - predicate: float8_comparison_exp! -} - -input player_season_stats_aggregate_bool_exp_corr { - arguments: player_season_stats_aggregate_bool_exp_corr_arguments! - distinct: Boolean - filter: player_season_stats_bool_exp - predicate: float8_comparison_exp! -} - -input player_season_stats_aggregate_bool_exp_corr_arguments { - X: player_season_stats_select_column_player_season_stats_aggregate_bool_exp_corr_arguments_columns! - Y: player_season_stats_select_column_player_season_stats_aggregate_bool_exp_corr_arguments_columns! -} - -input player_season_stats_aggregate_bool_exp_count { - arguments: [player_season_stats_select_column!] - distinct: Boolean - filter: player_season_stats_bool_exp - predicate: Int_comparison_exp! -} - -input player_season_stats_aggregate_bool_exp_covar_samp { - arguments: player_season_stats_aggregate_bool_exp_covar_samp_arguments! - distinct: Boolean - filter: player_season_stats_bool_exp - predicate: float8_comparison_exp! -} - -input player_season_stats_aggregate_bool_exp_covar_samp_arguments { - X: player_season_stats_select_column_player_season_stats_aggregate_bool_exp_covar_samp_arguments_columns! - Y: player_season_stats_select_column_player_season_stats_aggregate_bool_exp_covar_samp_arguments_columns! -} - -input player_season_stats_aggregate_bool_exp_max { - arguments: player_season_stats_select_column_player_season_stats_aggregate_bool_exp_max_arguments_columns! - distinct: Boolean - filter: player_season_stats_bool_exp - predicate: float8_comparison_exp! -} - -input player_season_stats_aggregate_bool_exp_min { - arguments: player_season_stats_select_column_player_season_stats_aggregate_bool_exp_min_arguments_columns! - distinct: Boolean - filter: player_season_stats_bool_exp - predicate: float8_comparison_exp! -} - -input player_season_stats_aggregate_bool_exp_stddev_samp { - arguments: player_season_stats_select_column_player_season_stats_aggregate_bool_exp_stddev_samp_arguments_columns! - distinct: Boolean - filter: player_season_stats_bool_exp - predicate: float8_comparison_exp! -} - -input player_season_stats_aggregate_bool_exp_sum { - arguments: player_season_stats_select_column_player_season_stats_aggregate_bool_exp_sum_arguments_columns! - distinct: Boolean - filter: player_season_stats_bool_exp - predicate: float8_comparison_exp! -} - -input player_season_stats_aggregate_bool_exp_var_samp { - arguments: player_season_stats_select_column_player_season_stats_aggregate_bool_exp_var_samp_arguments_columns! - distinct: Boolean - filter: player_season_stats_bool_exp - predicate: float8_comparison_exp! -} - -""" -aggregate fields of "player_season_stats" -""" -type player_season_stats_aggregate_fields { - avg: player_season_stats_avg_fields - count(columns: [player_season_stats_select_column!], distinct: Boolean): Int! - max: player_season_stats_max_fields - min: player_season_stats_min_fields - stddev: player_season_stats_stddev_fields - stddev_pop: player_season_stats_stddev_pop_fields - stddev_samp: player_season_stats_stddev_samp_fields - sum: player_season_stats_sum_fields - var_pop: player_season_stats_var_pop_fields - var_samp: player_season_stats_var_samp_fields - variance: player_season_stats_variance_fields -} - -""" -order by aggregate values of table "player_season_stats" -""" -input player_season_stats_aggregate_order_by { - avg: player_season_stats_avg_order_by - count: order_by - max: player_season_stats_max_order_by - min: player_season_stats_min_order_by - stddev: player_season_stats_stddev_order_by - stddev_pop: player_season_stats_stddev_pop_order_by - stddev_samp: player_season_stats_stddev_samp_order_by - sum: player_season_stats_sum_order_by - var_pop: player_season_stats_var_pop_order_by - var_samp: player_season_stats_var_samp_order_by - variance: player_season_stats_variance_order_by -} - -""" -input type for inserting array relation for remote table "player_season_stats" -""" -input player_season_stats_arr_rel_insert_input { - data: [player_season_stats_insert_input!]! - - """upsert condition""" - on_conflict: player_season_stats_on_conflict -} - -"""aggregate avg on columns""" -type player_season_stats_avg_fields { - assists: Float - deaths: Float - headshot_percentage: Float - headshots: Float - kills: Float - player_steam_id: Float -} - -""" -order by avg() on columns of table "player_season_stats" -""" -input player_season_stats_avg_order_by { - assists: order_by - deaths: order_by - headshot_percentage: order_by - headshots: order_by - kills: order_by - player_steam_id: order_by -} - -""" -Boolean expression to filter rows from the table "player_season_stats". All fields are combined with a logical 'AND'. -""" -input player_season_stats_bool_exp { - _and: [player_season_stats_bool_exp!] - _not: player_season_stats_bool_exp - _or: [player_season_stats_bool_exp!] - assists: bigint_comparison_exp - deaths: bigint_comparison_exp - headshot_percentage: float8_comparison_exp - headshots: bigint_comparison_exp - kills: bigint_comparison_exp - player: players_bool_exp - player_steam_id: bigint_comparison_exp - season: seasons_bool_exp - season_id: uuid_comparison_exp -} - -""" -unique or primary key constraints on table "player_season_stats" -""" -enum player_season_stats_constraint { - """ - unique or primary key constraint on columns "player_steam_id", "season_id" - """ - player_season_stats_pkey -} - -""" -input type for incrementing numeric columns in table "player_season_stats" -""" -input player_season_stats_inc_input { - assists: bigint - deaths: bigint - headshot_percentage: float8 - headshots: bigint - kills: bigint - player_steam_id: bigint -} - -""" -input type for inserting data into table "player_season_stats" -""" -input player_season_stats_insert_input { - assists: bigint - deaths: bigint - headshot_percentage: float8 - headshots: bigint - kills: bigint - player: players_obj_rel_insert_input - player_steam_id: bigint - season: seasons_obj_rel_insert_input - season_id: uuid -} - -"""aggregate max on columns""" -type player_season_stats_max_fields { - assists: bigint - deaths: bigint - headshot_percentage: float8 - headshots: bigint - kills: bigint - player_steam_id: bigint - season_id: uuid -} - -""" -order by max() on columns of table "player_season_stats" -""" -input player_season_stats_max_order_by { - assists: order_by - deaths: order_by - headshot_percentage: order_by - headshots: order_by - kills: order_by - player_steam_id: order_by - season_id: order_by -} - -"""aggregate min on columns""" -type player_season_stats_min_fields { - assists: bigint - deaths: bigint - headshot_percentage: float8 - headshots: bigint - kills: bigint - player_steam_id: bigint - season_id: uuid -} - -""" -order by min() on columns of table "player_season_stats" -""" -input player_season_stats_min_order_by { - assists: order_by - deaths: order_by - headshot_percentage: order_by - headshots: order_by - kills: order_by - player_steam_id: order_by - season_id: order_by -} - -""" -response of any mutation on the table "player_season_stats" -""" -type player_season_stats_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [player_season_stats!]! -} - -""" -on_conflict condition type for table "player_season_stats" -""" -input player_season_stats_on_conflict { - constraint: player_season_stats_constraint! - update_columns: [player_season_stats_update_column!]! = [] - where: player_season_stats_bool_exp -} - -"""Ordering options when selecting data from "player_season_stats".""" -input player_season_stats_order_by { - assists: order_by - deaths: order_by - headshot_percentage: order_by - headshots: order_by - kills: order_by - player: players_order_by - player_steam_id: order_by - season: seasons_order_by - season_id: order_by -} - -"""primary key columns input for table: player_season_stats""" -input player_season_stats_pk_columns_input { - player_steam_id: bigint! - season_id: uuid! -} - -""" -select columns of table "player_season_stats" -""" -enum player_season_stats_select_column { - """column name""" - assists - - """column name""" - deaths - - """column name""" - headshot_percentage - - """column name""" - headshots - - """column name""" - kills - - """column name""" - player_steam_id - - """column name""" - season_id -} - -""" -select "player_season_stats_aggregate_bool_exp_avg_arguments_columns" columns of table "player_season_stats" -""" -enum player_season_stats_select_column_player_season_stats_aggregate_bool_exp_avg_arguments_columns { - """column name""" - headshot_percentage -} - -""" -select "player_season_stats_aggregate_bool_exp_corr_arguments_columns" columns of table "player_season_stats" -""" -enum player_season_stats_select_column_player_season_stats_aggregate_bool_exp_corr_arguments_columns { - """column name""" - headshot_percentage -} - -""" -select "player_season_stats_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "player_season_stats" -""" -enum player_season_stats_select_column_player_season_stats_aggregate_bool_exp_covar_samp_arguments_columns { - """column name""" - headshot_percentage -} - -""" -select "player_season_stats_aggregate_bool_exp_max_arguments_columns" columns of table "player_season_stats" -""" -enum player_season_stats_select_column_player_season_stats_aggregate_bool_exp_max_arguments_columns { - """column name""" - headshot_percentage -} - -""" -select "player_season_stats_aggregate_bool_exp_min_arguments_columns" columns of table "player_season_stats" -""" -enum player_season_stats_select_column_player_season_stats_aggregate_bool_exp_min_arguments_columns { - """column name""" - headshot_percentage -} - -""" -select "player_season_stats_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "player_season_stats" -""" -enum player_season_stats_select_column_player_season_stats_aggregate_bool_exp_stddev_samp_arguments_columns { - """column name""" - headshot_percentage -} - -""" -select "player_season_stats_aggregate_bool_exp_sum_arguments_columns" columns of table "player_season_stats" -""" -enum player_season_stats_select_column_player_season_stats_aggregate_bool_exp_sum_arguments_columns { - """column name""" - headshot_percentage -} - -""" -select "player_season_stats_aggregate_bool_exp_var_samp_arguments_columns" columns of table "player_season_stats" -""" -enum player_season_stats_select_column_player_season_stats_aggregate_bool_exp_var_samp_arguments_columns { - """column name""" - headshot_percentage -} - -""" -input type for updating data in table "player_season_stats" -""" -input player_season_stats_set_input { - assists: bigint - deaths: bigint - headshot_percentage: float8 - headshots: bigint - kills: bigint - player_steam_id: bigint - season_id: uuid -} - -"""aggregate stddev on columns""" -type player_season_stats_stddev_fields { - assists: Float - deaths: Float - headshot_percentage: Float - headshots: Float - kills: Float - player_steam_id: Float -} - -""" -order by stddev() on columns of table "player_season_stats" -""" -input player_season_stats_stddev_order_by { - assists: order_by - deaths: order_by - headshot_percentage: order_by - headshots: order_by - kills: order_by - player_steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type player_season_stats_stddev_pop_fields { - assists: Float - deaths: Float - headshot_percentage: Float - headshots: Float - kills: Float - player_steam_id: Float -} - -""" -order by stddev_pop() on columns of table "player_season_stats" -""" -input player_season_stats_stddev_pop_order_by { - assists: order_by - deaths: order_by - headshot_percentage: order_by - headshots: order_by - kills: order_by - player_steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type player_season_stats_stddev_samp_fields { - assists: Float - deaths: Float - headshot_percentage: Float - headshots: Float - kills: Float - player_steam_id: Float -} - -""" -order by stddev_samp() on columns of table "player_season_stats" -""" -input player_season_stats_stddev_samp_order_by { - assists: order_by - deaths: order_by - headshot_percentage: order_by - headshots: order_by - kills: order_by - player_steam_id: order_by -} - -""" -Streaming cursor of the table "player_season_stats" -""" -input player_season_stats_stream_cursor_input { - """Stream column input with initial value""" - initial_value: player_season_stats_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input player_season_stats_stream_cursor_value_input { - assists: bigint - deaths: bigint - headshot_percentage: float8 - headshots: bigint - kills: bigint - player_steam_id: bigint - season_id: uuid -} - -"""aggregate sum on columns""" -type player_season_stats_sum_fields { - assists: bigint - deaths: bigint - headshot_percentage: float8 - headshots: bigint - kills: bigint - player_steam_id: bigint -} - -""" -order by sum() on columns of table "player_season_stats" -""" -input player_season_stats_sum_order_by { - assists: order_by - deaths: order_by - headshot_percentage: order_by - headshots: order_by - kills: order_by - player_steam_id: order_by -} - -""" -update columns of table "player_season_stats" -""" -enum player_season_stats_update_column { - """column name""" - assists - - """column name""" - deaths - - """column name""" - headshot_percentage - - """column name""" - headshots - - """column name""" - kills - - """column name""" - player_steam_id - - """column name""" - season_id -} - -input player_season_stats_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: player_season_stats_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_season_stats_set_input - - """filter the rows which have to be updated""" - where: player_season_stats_bool_exp! -} - -"""aggregate var_pop on columns""" -type player_season_stats_var_pop_fields { - assists: Float - deaths: Float - headshot_percentage: Float - headshots: Float - kills: Float - player_steam_id: Float -} - -""" -order by var_pop() on columns of table "player_season_stats" -""" -input player_season_stats_var_pop_order_by { - assists: order_by - deaths: order_by - headshot_percentage: order_by - headshots: order_by - kills: order_by - player_steam_id: order_by -} - -"""aggregate var_samp on columns""" -type player_season_stats_var_samp_fields { - assists: Float - deaths: Float - headshot_percentage: Float - headshots: Float - kills: Float - player_steam_id: Float -} - -""" -order by var_samp() on columns of table "player_season_stats" -""" -input player_season_stats_var_samp_order_by { - assists: order_by - deaths: order_by - headshot_percentage: order_by - headshots: order_by - kills: order_by - player_steam_id: order_by -} - -"""aggregate variance on columns""" -type player_season_stats_variance_fields { - assists: Float - deaths: Float - headshot_percentage: Float - headshots: Float - kills: Float - player_steam_id: Float -} - -""" -order by variance() on columns of table "player_season_stats" -""" -input player_season_stats_variance_order_by { - assists: order_by - deaths: order_by - headshot_percentage: order_by - headshots: order_by - kills: order_by - player_steam_id: order_by -} - -""" -columns and relationships of "player_stats" -""" -type player_stats { - assists: bigint! - deaths: bigint! - headshot_percentage: float8! - headshots: bigint! - kills: bigint! - - """An object relationship""" - player: players! - player_steam_id: bigint! -} - -""" -aggregated selection of "player_stats" -""" -type player_stats_aggregate { - aggregate: player_stats_aggregate_fields - nodes: [player_stats!]! -} - -""" -aggregate fields of "player_stats" -""" -type player_stats_aggregate_fields { - avg: player_stats_avg_fields - count(columns: [player_stats_select_column!], distinct: Boolean): Int! - max: player_stats_max_fields - min: player_stats_min_fields - stddev: player_stats_stddev_fields - stddev_pop: player_stats_stddev_pop_fields - stddev_samp: player_stats_stddev_samp_fields - sum: player_stats_sum_fields - var_pop: player_stats_var_pop_fields - var_samp: player_stats_var_samp_fields - variance: player_stats_variance_fields -} - -"""aggregate avg on columns""" -type player_stats_avg_fields { - assists: Float - deaths: Float - headshot_percentage: Float - headshots: Float - kills: Float - player_steam_id: Float -} - -""" -Boolean expression to filter rows from the table "player_stats". All fields are combined with a logical 'AND'. -""" -input player_stats_bool_exp { - _and: [player_stats_bool_exp!] - _not: player_stats_bool_exp - _or: [player_stats_bool_exp!] - assists: bigint_comparison_exp - deaths: bigint_comparison_exp - headshot_percentage: float8_comparison_exp - headshots: bigint_comparison_exp - kills: bigint_comparison_exp - player: players_bool_exp - player_steam_id: bigint_comparison_exp -} - -""" -unique or primary key constraints on table "player_stats" -""" -enum player_stats_constraint { - """ - unique or primary key constraint on columns "player_steam_id" - """ - player_stats_pkey -} - -""" -input type for incrementing numeric columns in table "player_stats" -""" -input player_stats_inc_input { - assists: bigint - deaths: bigint - headshot_percentage: float8 - headshots: bigint - kills: bigint - player_steam_id: bigint -} - -""" -input type for inserting data into table "player_stats" -""" -input player_stats_insert_input { - assists: bigint - deaths: bigint - headshot_percentage: float8 - headshots: bigint - kills: bigint - player: players_obj_rel_insert_input - player_steam_id: bigint -} - -"""aggregate max on columns""" -type player_stats_max_fields { - assists: bigint - deaths: bigint - headshot_percentage: float8 - headshots: bigint - kills: bigint - player_steam_id: bigint -} - -"""aggregate min on columns""" -type player_stats_min_fields { - assists: bigint - deaths: bigint - headshot_percentage: float8 - headshots: bigint - kills: bigint - player_steam_id: bigint -} - -""" -response of any mutation on the table "player_stats" -""" -type player_stats_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [player_stats!]! -} - -""" -input type for inserting object relation for remote table "player_stats" -""" -input player_stats_obj_rel_insert_input { - data: player_stats_insert_input! - - """upsert condition""" - on_conflict: player_stats_on_conflict -} - -""" -on_conflict condition type for table "player_stats" -""" -input player_stats_on_conflict { - constraint: player_stats_constraint! - update_columns: [player_stats_update_column!]! = [] - where: player_stats_bool_exp -} - -"""Ordering options when selecting data from "player_stats".""" -input player_stats_order_by { - assists: order_by - deaths: order_by - headshot_percentage: order_by - headshots: order_by - kills: order_by - player: players_order_by - player_steam_id: order_by -} - -"""primary key columns input for table: player_stats""" -input player_stats_pk_columns_input { - player_steam_id: bigint! -} - -""" -select columns of table "player_stats" -""" -enum player_stats_select_column { - """column name""" - assists - - """column name""" - deaths - - """column name""" - headshot_percentage - - """column name""" - headshots - - """column name""" - kills - - """column name""" - player_steam_id -} - -""" -input type for updating data in table "player_stats" -""" -input player_stats_set_input { - assists: bigint - deaths: bigint - headshot_percentage: float8 - headshots: bigint - kills: bigint - player_steam_id: bigint -} - -"""aggregate stddev on columns""" -type player_stats_stddev_fields { - assists: Float - deaths: Float - headshot_percentage: Float - headshots: Float - kills: Float - player_steam_id: Float -} - -"""aggregate stddev_pop on columns""" -type player_stats_stddev_pop_fields { - assists: Float - deaths: Float - headshot_percentage: Float - headshots: Float - kills: Float - player_steam_id: Float -} - -"""aggregate stddev_samp on columns""" -type player_stats_stddev_samp_fields { - assists: Float - deaths: Float - headshot_percentage: Float - headshots: Float - kills: Float - player_steam_id: Float -} - -""" -Streaming cursor of the table "player_stats" -""" -input player_stats_stream_cursor_input { - """Stream column input with initial value""" - initial_value: player_stats_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input player_stats_stream_cursor_value_input { - assists: bigint - deaths: bigint - headshot_percentage: float8 - headshots: bigint - kills: bigint - player_steam_id: bigint -} - -"""aggregate sum on columns""" -type player_stats_sum_fields { - assists: bigint - deaths: bigint - headshot_percentage: float8 - headshots: bigint - kills: bigint - player_steam_id: bigint -} - -""" -update columns of table "player_stats" -""" -enum player_stats_update_column { - """column name""" - assists - - """column name""" - deaths - - """column name""" - headshot_percentage - - """column name""" - headshots - - """column name""" - kills - - """column name""" - player_steam_id -} - -input player_stats_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: player_stats_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_stats_set_input - - """filter the rows which have to be updated""" - where: player_stats_bool_exp! -} - -"""aggregate var_pop on columns""" -type player_stats_var_pop_fields { - assists: Float - deaths: Float - headshot_percentage: Float - headshots: Float - kills: Float - player_steam_id: Float -} - -"""aggregate var_samp on columns""" -type player_stats_var_samp_fields { - assists: Float - deaths: Float - headshot_percentage: Float - headshots: Float - kills: Float - player_steam_id: Float -} - -"""aggregate variance on columns""" -type player_stats_variance_fields { - assists: Float - deaths: Float - headshot_percentage: Float - headshots: Float - kills: Float - player_steam_id: Float -} - -""" -columns and relationships of "player_steam_bot_friend" -""" -type player_steam_bot_friend { - bot_steam_account_id: uuid - bot_steamid64: bigint - created_at: timestamptz! - friended_at: timestamptz - last_presence_state( - """JSON select path""" - path: String - ): jsonb - - """An object relationship""" - player: players! - status: String! - steam_id: bigint! - updated_at: timestamptz! -} - -""" -aggregated selection of "player_steam_bot_friend" -""" -type player_steam_bot_friend_aggregate { - aggregate: player_steam_bot_friend_aggregate_fields - nodes: [player_steam_bot_friend!]! -} - -""" -aggregate fields of "player_steam_bot_friend" -""" -type player_steam_bot_friend_aggregate_fields { - avg: player_steam_bot_friend_avg_fields - count(columns: [player_steam_bot_friend_select_column!], distinct: Boolean): Int! - max: player_steam_bot_friend_max_fields - min: player_steam_bot_friend_min_fields - stddev: player_steam_bot_friend_stddev_fields - stddev_pop: player_steam_bot_friend_stddev_pop_fields - stddev_samp: player_steam_bot_friend_stddev_samp_fields - sum: player_steam_bot_friend_sum_fields - var_pop: player_steam_bot_friend_var_pop_fields - var_samp: player_steam_bot_friend_var_samp_fields - variance: player_steam_bot_friend_variance_fields -} - -"""append existing jsonb value of filtered columns with new jsonb value""" -input player_steam_bot_friend_append_input { - last_presence_state: jsonb -} - -"""aggregate avg on columns""" -type player_steam_bot_friend_avg_fields { - bot_steamid64: Float - steam_id: Float -} - -""" -Boolean expression to filter rows from the table "player_steam_bot_friend". All fields are combined with a logical 'AND'. -""" -input player_steam_bot_friend_bool_exp { - _and: [player_steam_bot_friend_bool_exp!] - _not: player_steam_bot_friend_bool_exp - _or: [player_steam_bot_friend_bool_exp!] - bot_steam_account_id: uuid_comparison_exp - bot_steamid64: bigint_comparison_exp - created_at: timestamptz_comparison_exp - friended_at: timestamptz_comparison_exp - last_presence_state: jsonb_comparison_exp - player: players_bool_exp - status: String_comparison_exp - steam_id: bigint_comparison_exp - updated_at: timestamptz_comparison_exp -} - -""" -unique or primary key constraints on table "player_steam_bot_friend" -""" -enum player_steam_bot_friend_constraint { - """ - unique or primary key constraint on columns "steam_id" - """ - player_steam_bot_friend_pkey -} - -""" -delete the field or element with specified path (for JSON arrays, negative integers count from the end) -""" -input player_steam_bot_friend_delete_at_path_input { - last_presence_state: [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 player_steam_bot_friend_delete_elem_input { - last_presence_state: Int -} - -""" -delete key/value pair or string element. key/value pairs are matched based on their key value -""" -input player_steam_bot_friend_delete_key_input { - last_presence_state: String -} - -""" -input type for incrementing numeric columns in table "player_steam_bot_friend" -""" -input player_steam_bot_friend_inc_input { - bot_steamid64: bigint - steam_id: bigint -} - -""" -input type for inserting data into table "player_steam_bot_friend" -""" -input player_steam_bot_friend_insert_input { - bot_steam_account_id: uuid - bot_steamid64: bigint - created_at: timestamptz - friended_at: timestamptz - last_presence_state: jsonb - player: players_obj_rel_insert_input - status: String - steam_id: bigint - updated_at: timestamptz -} - -"""aggregate max on columns""" -type player_steam_bot_friend_max_fields { - bot_steam_account_id: uuid - bot_steamid64: bigint - created_at: timestamptz - friended_at: timestamptz - status: String - steam_id: bigint - updated_at: timestamptz -} - -"""aggregate min on columns""" -type player_steam_bot_friend_min_fields { - bot_steam_account_id: uuid - bot_steamid64: bigint - created_at: timestamptz - friended_at: timestamptz - status: String - steam_id: bigint - updated_at: timestamptz -} - -""" -response of any mutation on the table "player_steam_bot_friend" -""" -type player_steam_bot_friend_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [player_steam_bot_friend!]! -} - -""" -on_conflict condition type for table "player_steam_bot_friend" -""" -input player_steam_bot_friend_on_conflict { - constraint: player_steam_bot_friend_constraint! - update_columns: [player_steam_bot_friend_update_column!]! = [] - where: player_steam_bot_friend_bool_exp -} - -"""Ordering options when selecting data from "player_steam_bot_friend".""" -input player_steam_bot_friend_order_by { - bot_steam_account_id: order_by - bot_steamid64: order_by - created_at: order_by - friended_at: order_by - last_presence_state: order_by - player: players_order_by - status: order_by - steam_id: order_by - updated_at: order_by -} - -"""primary key columns input for table: player_steam_bot_friend""" -input player_steam_bot_friend_pk_columns_input { - steam_id: bigint! -} - -"""prepend existing jsonb value of filtered columns with new jsonb value""" -input player_steam_bot_friend_prepend_input { - last_presence_state: jsonb -} - -""" -select columns of table "player_steam_bot_friend" -""" -enum player_steam_bot_friend_select_column { - """column name""" - bot_steam_account_id - - """column name""" - bot_steamid64 - - """column name""" - created_at - - """column name""" - friended_at - - """column name""" - last_presence_state - - """column name""" - status - - """column name""" - steam_id - - """column name""" - updated_at -} - -""" -input type for updating data in table "player_steam_bot_friend" -""" -input player_steam_bot_friend_set_input { - bot_steam_account_id: uuid - bot_steamid64: bigint - created_at: timestamptz - friended_at: timestamptz - last_presence_state: jsonb - status: String - steam_id: bigint - updated_at: timestamptz -} - -"""aggregate stddev on columns""" -type player_steam_bot_friend_stddev_fields { - bot_steamid64: Float - steam_id: Float -} - -"""aggregate stddev_pop on columns""" -type player_steam_bot_friend_stddev_pop_fields { - bot_steamid64: Float - steam_id: Float -} - -"""aggregate stddev_samp on columns""" -type player_steam_bot_friend_stddev_samp_fields { - bot_steamid64: Float - steam_id: Float -} - -""" -Streaming cursor of the table "player_steam_bot_friend" -""" -input player_steam_bot_friend_stream_cursor_input { - """Stream column input with initial value""" - initial_value: player_steam_bot_friend_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input player_steam_bot_friend_stream_cursor_value_input { - bot_steam_account_id: uuid - bot_steamid64: bigint - created_at: timestamptz - friended_at: timestamptz - last_presence_state: jsonb - status: String - steam_id: bigint - updated_at: timestamptz -} - -"""aggregate sum on columns""" -type player_steam_bot_friend_sum_fields { - bot_steamid64: bigint - steam_id: bigint -} - -""" -update columns of table "player_steam_bot_friend" -""" -enum player_steam_bot_friend_update_column { - """column name""" - bot_steam_account_id - - """column name""" - bot_steamid64 - - """column name""" - created_at - - """column name""" - friended_at - - """column name""" - last_presence_state - - """column name""" - status - - """column name""" - steam_id - - """column name""" - updated_at -} - -input player_steam_bot_friend_updates { - """append existing jsonb value of filtered columns with new jsonb value""" - _append: player_steam_bot_friend_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: player_steam_bot_friend_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: player_steam_bot_friend_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: player_steam_bot_friend_delete_key_input - - """increments the numeric columns with given value of the filtered values""" - _inc: player_steam_bot_friend_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: player_steam_bot_friend_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: player_steam_bot_friend_set_input - - """filter the rows which have to be updated""" - where: player_steam_bot_friend_bool_exp! -} - -"""aggregate var_pop on columns""" -type player_steam_bot_friend_var_pop_fields { - bot_steamid64: Float - steam_id: Float -} - -"""aggregate var_samp on columns""" -type player_steam_bot_friend_var_samp_fields { - bot_steamid64: Float - steam_id: Float -} - -"""aggregate variance on columns""" -type player_steam_bot_friend_variance_fields { - bot_steamid64: Float - steam_id: Float -} - -""" -columns and relationships of "player_steam_match_auth" -""" -type player_steam_match_auth { - auth_code: String! - created_at: timestamptz! - last_error: String - last_known_share_code: String! - last_polled_at: timestamptz - - """An object relationship""" - player: players! - steam_id: bigint! - updated_at: timestamptz! -} - -""" -aggregated selection of "player_steam_match_auth" -""" -type player_steam_match_auth_aggregate { - aggregate: player_steam_match_auth_aggregate_fields - nodes: [player_steam_match_auth!]! -} - -""" -aggregate fields of "player_steam_match_auth" -""" -type player_steam_match_auth_aggregate_fields { - avg: player_steam_match_auth_avg_fields - count(columns: [player_steam_match_auth_select_column!], distinct: Boolean): Int! - max: player_steam_match_auth_max_fields - min: player_steam_match_auth_min_fields - stddev: player_steam_match_auth_stddev_fields - stddev_pop: player_steam_match_auth_stddev_pop_fields - stddev_samp: player_steam_match_auth_stddev_samp_fields - sum: player_steam_match_auth_sum_fields - var_pop: player_steam_match_auth_var_pop_fields - var_samp: player_steam_match_auth_var_samp_fields - variance: player_steam_match_auth_variance_fields -} - -"""aggregate avg on columns""" -type player_steam_match_auth_avg_fields { - steam_id: Float -} - -""" -Boolean expression to filter rows from the table "player_steam_match_auth". All fields are combined with a logical 'AND'. -""" -input player_steam_match_auth_bool_exp { - _and: [player_steam_match_auth_bool_exp!] - _not: player_steam_match_auth_bool_exp - _or: [player_steam_match_auth_bool_exp!] - auth_code: String_comparison_exp - created_at: timestamptz_comparison_exp - last_error: String_comparison_exp - last_known_share_code: String_comparison_exp - last_polled_at: timestamptz_comparison_exp - player: players_bool_exp - steam_id: bigint_comparison_exp - updated_at: timestamptz_comparison_exp -} - -""" -unique or primary key constraints on table "player_steam_match_auth" -""" -enum player_steam_match_auth_constraint { - """ - unique or primary key constraint on columns "steam_id" - """ - player_steam_match_auth_pkey -} - -""" -input type for incrementing numeric columns in table "player_steam_match_auth" -""" -input player_steam_match_auth_inc_input { - steam_id: bigint -} - -""" -input type for inserting data into table "player_steam_match_auth" -""" -input player_steam_match_auth_insert_input { - auth_code: String - created_at: timestamptz - last_error: String - last_known_share_code: String - last_polled_at: timestamptz - player: players_obj_rel_insert_input - steam_id: bigint - updated_at: timestamptz -} - -"""aggregate max on columns""" -type player_steam_match_auth_max_fields { - auth_code: String - created_at: timestamptz - last_error: String - last_known_share_code: String - last_polled_at: timestamptz - steam_id: bigint - updated_at: timestamptz -} - -"""aggregate min on columns""" -type player_steam_match_auth_min_fields { - auth_code: String - created_at: timestamptz - last_error: String - last_known_share_code: String - last_polled_at: timestamptz - steam_id: bigint - updated_at: timestamptz -} - -""" -response of any mutation on the table "player_steam_match_auth" -""" -type player_steam_match_auth_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [player_steam_match_auth!]! -} - -""" -on_conflict condition type for table "player_steam_match_auth" -""" -input player_steam_match_auth_on_conflict { - constraint: player_steam_match_auth_constraint! - update_columns: [player_steam_match_auth_update_column!]! = [] - where: player_steam_match_auth_bool_exp -} - -"""Ordering options when selecting data from "player_steam_match_auth".""" -input player_steam_match_auth_order_by { - auth_code: order_by - created_at: order_by - last_error: order_by - last_known_share_code: order_by - last_polled_at: order_by - player: players_order_by - steam_id: order_by - updated_at: order_by -} - -"""primary key columns input for table: player_steam_match_auth""" -input player_steam_match_auth_pk_columns_input { - steam_id: bigint! -} - -""" -select columns of table "player_steam_match_auth" -""" -enum player_steam_match_auth_select_column { - """column name""" - auth_code - - """column name""" - created_at - - """column name""" - last_error - - """column name""" - last_known_share_code - - """column name""" - last_polled_at - - """column name""" - steam_id - - """column name""" - updated_at -} - -""" -input type for updating data in table "player_steam_match_auth" -""" -input player_steam_match_auth_set_input { - auth_code: String - created_at: timestamptz - last_error: String - last_known_share_code: String - last_polled_at: timestamptz - steam_id: bigint - updated_at: timestamptz -} - -"""aggregate stddev on columns""" -type player_steam_match_auth_stddev_fields { - steam_id: Float -} - -"""aggregate stddev_pop on columns""" -type player_steam_match_auth_stddev_pop_fields { - steam_id: Float -} - -"""aggregate stddev_samp on columns""" -type player_steam_match_auth_stddev_samp_fields { - steam_id: Float -} - -""" -Streaming cursor of the table "player_steam_match_auth" -""" -input player_steam_match_auth_stream_cursor_input { - """Stream column input with initial value""" - initial_value: player_steam_match_auth_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input player_steam_match_auth_stream_cursor_value_input { - auth_code: String - created_at: timestamptz - last_error: String - last_known_share_code: String - last_polled_at: timestamptz - steam_id: bigint - updated_at: timestamptz -} - -"""aggregate sum on columns""" -type player_steam_match_auth_sum_fields { - steam_id: bigint -} - -""" -update columns of table "player_steam_match_auth" -""" -enum player_steam_match_auth_update_column { - """column name""" - auth_code - - """column name""" - created_at - - """column name""" - last_error - - """column name""" - last_known_share_code - - """column name""" - last_polled_at - - """column name""" - steam_id - - """column name""" - updated_at -} - -input player_steam_match_auth_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: player_steam_match_auth_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_steam_match_auth_set_input - - """filter the rows which have to be updated""" - where: player_steam_match_auth_bool_exp! -} - -"""aggregate var_pop on columns""" -type player_steam_match_auth_var_pop_fields { - steam_id: Float -} - -"""aggregate var_samp on columns""" -type player_steam_match_auth_var_samp_fields { - steam_id: Float -} - -"""aggregate variance on columns""" -type player_steam_match_auth_variance_fields { - steam_id: Float -} - -""" -columns and relationships of "player_unused_utility" -""" -type player_unused_utility { - deleted_at: timestamptz - - """An object relationship""" - match: matches! - match_id: uuid! - - """An object relationship""" - match_map: match_maps! - match_map_id: uuid! - - """An object relationship""" - player: players! - player_steam_id: bigint! - round: Int! - unused: Int! -} - -""" -aggregated selection of "player_unused_utility" -""" -type player_unused_utility_aggregate { - aggregate: player_unused_utility_aggregate_fields - nodes: [player_unused_utility!]! -} - -input player_unused_utility_aggregate_bool_exp { - count: player_unused_utility_aggregate_bool_exp_count -} - -input player_unused_utility_aggregate_bool_exp_count { - arguments: [player_unused_utility_select_column!] - distinct: Boolean - filter: player_unused_utility_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "player_unused_utility" -""" -type player_unused_utility_aggregate_fields { - avg: player_unused_utility_avg_fields - count(columns: [player_unused_utility_select_column!], distinct: Boolean): Int! - max: player_unused_utility_max_fields - min: player_unused_utility_min_fields - stddev: player_unused_utility_stddev_fields - stddev_pop: player_unused_utility_stddev_pop_fields - stddev_samp: player_unused_utility_stddev_samp_fields - sum: player_unused_utility_sum_fields - var_pop: player_unused_utility_var_pop_fields - var_samp: player_unused_utility_var_samp_fields - variance: player_unused_utility_variance_fields -} - -""" -order by aggregate values of table "player_unused_utility" -""" -input player_unused_utility_aggregate_order_by { - avg: player_unused_utility_avg_order_by - count: order_by - max: player_unused_utility_max_order_by - min: player_unused_utility_min_order_by - stddev: player_unused_utility_stddev_order_by - stddev_pop: player_unused_utility_stddev_pop_order_by - stddev_samp: player_unused_utility_stddev_samp_order_by - sum: player_unused_utility_sum_order_by - var_pop: player_unused_utility_var_pop_order_by - var_samp: player_unused_utility_var_samp_order_by - variance: player_unused_utility_variance_order_by -} - -""" -input type for inserting array relation for remote table "player_unused_utility" -""" -input player_unused_utility_arr_rel_insert_input { - data: [player_unused_utility_insert_input!]! - - """upsert condition""" - on_conflict: player_unused_utility_on_conflict -} - -"""aggregate avg on columns""" -type player_unused_utility_avg_fields { - player_steam_id: Float - round: Float - unused: Float -} - -""" -order by avg() on columns of table "player_unused_utility" -""" -input player_unused_utility_avg_order_by { - player_steam_id: order_by - round: order_by - unused: order_by -} - -""" -Boolean expression to filter rows from the table "player_unused_utility". All fields are combined with a logical 'AND'. -""" -input player_unused_utility_bool_exp { - _and: [player_unused_utility_bool_exp!] - _not: player_unused_utility_bool_exp - _or: [player_unused_utility_bool_exp!] - deleted_at: timestamptz_comparison_exp - match: matches_bool_exp - match_id: uuid_comparison_exp - match_map: match_maps_bool_exp - match_map_id: uuid_comparison_exp - player: players_bool_exp - player_steam_id: bigint_comparison_exp - round: Int_comparison_exp - unused: Int_comparison_exp -} - -""" -unique or primary key constraints on table "player_unused_utility" -""" -enum player_unused_utility_constraint { - """ - unique or primary key constraint on columns "player_steam_id", "match_map_id" - """ - player_unused_utility_pkey -} - -""" -input type for incrementing numeric columns in table "player_unused_utility" -""" -input player_unused_utility_inc_input { - player_steam_id: bigint - round: Int - unused: Int -} - -""" -input type for inserting data into table "player_unused_utility" -""" -input player_unused_utility_insert_input { - deleted_at: timestamptz - match: matches_obj_rel_insert_input - match_id: uuid - match_map: match_maps_obj_rel_insert_input - match_map_id: uuid - player: players_obj_rel_insert_input - player_steam_id: bigint - round: Int - unused: Int -} - -"""aggregate max on columns""" -type player_unused_utility_max_fields { - deleted_at: timestamptz - match_id: uuid - match_map_id: uuid - player_steam_id: bigint - round: Int - unused: Int -} - -""" -order by max() on columns of table "player_unused_utility" -""" -input player_unused_utility_max_order_by { - deleted_at: order_by - match_id: order_by - match_map_id: order_by - player_steam_id: order_by - round: order_by - unused: order_by -} - -"""aggregate min on columns""" -type player_unused_utility_min_fields { - deleted_at: timestamptz - match_id: uuid - match_map_id: uuid - player_steam_id: bigint - round: Int - unused: Int -} - -""" -order by min() on columns of table "player_unused_utility" -""" -input player_unused_utility_min_order_by { - deleted_at: order_by - match_id: order_by - match_map_id: order_by - player_steam_id: order_by - round: order_by - unused: order_by -} - -""" -response of any mutation on the table "player_unused_utility" -""" -type player_unused_utility_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [player_unused_utility!]! -} - -""" -on_conflict condition type for table "player_unused_utility" -""" -input player_unused_utility_on_conflict { - constraint: player_unused_utility_constraint! - update_columns: [player_unused_utility_update_column!]! = [] - where: player_unused_utility_bool_exp -} - -"""Ordering options when selecting data from "player_unused_utility".""" -input player_unused_utility_order_by { - deleted_at: order_by - match: matches_order_by - match_id: order_by - match_map: match_maps_order_by - match_map_id: order_by - player: players_order_by - player_steam_id: order_by - round: order_by - unused: order_by -} - -"""primary key columns input for table: player_unused_utility""" -input player_unused_utility_pk_columns_input { - match_map_id: uuid! - player_steam_id: bigint! -} - -""" -select columns of table "player_unused_utility" -""" -enum player_unused_utility_select_column { - """column name""" - deleted_at - - """column name""" - match_id - - """column name""" - match_map_id - - """column name""" - player_steam_id - - """column name""" - round - - """column name""" - unused -} - -""" -input type for updating data in table "player_unused_utility" -""" -input player_unused_utility_set_input { - deleted_at: timestamptz - match_id: uuid - match_map_id: uuid - player_steam_id: bigint - round: Int - unused: Int -} - -"""aggregate stddev on columns""" -type player_unused_utility_stddev_fields { - player_steam_id: Float - round: Float - unused: Float -} - -""" -order by stddev() on columns of table "player_unused_utility" -""" -input player_unused_utility_stddev_order_by { - player_steam_id: order_by - round: order_by - unused: order_by -} - -"""aggregate stddev_pop on columns""" -type player_unused_utility_stddev_pop_fields { - player_steam_id: Float - round: Float - unused: Float -} - -""" -order by stddev_pop() on columns of table "player_unused_utility" -""" -input player_unused_utility_stddev_pop_order_by { - player_steam_id: order_by - round: order_by - unused: order_by -} - -"""aggregate stddev_samp on columns""" -type player_unused_utility_stddev_samp_fields { - player_steam_id: Float - round: Float - unused: Float -} - -""" -order by stddev_samp() on columns of table "player_unused_utility" -""" -input player_unused_utility_stddev_samp_order_by { - player_steam_id: order_by - round: order_by - unused: order_by -} - -""" -Streaming cursor of the table "player_unused_utility" -""" -input player_unused_utility_stream_cursor_input { - """Stream column input with initial value""" - initial_value: player_unused_utility_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input player_unused_utility_stream_cursor_value_input { - deleted_at: timestamptz - match_id: uuid - match_map_id: uuid - player_steam_id: bigint - round: Int - unused: Int -} - -"""aggregate sum on columns""" -type player_unused_utility_sum_fields { - player_steam_id: bigint - round: Int - unused: Int -} - -""" -order by sum() on columns of table "player_unused_utility" -""" -input player_unused_utility_sum_order_by { - player_steam_id: order_by - round: order_by - unused: order_by -} - -""" -update columns of table "player_unused_utility" -""" -enum player_unused_utility_update_column { - """column name""" - deleted_at - - """column name""" - match_id - - """column name""" - match_map_id - - """column name""" - player_steam_id - - """column name""" - round - - """column name""" - unused -} - -input player_unused_utility_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: player_unused_utility_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_unused_utility_set_input - - """filter the rows which have to be updated""" - where: player_unused_utility_bool_exp! -} - -"""aggregate var_pop on columns""" -type player_unused_utility_var_pop_fields { - player_steam_id: Float - round: Float - unused: Float -} - -""" -order by var_pop() on columns of table "player_unused_utility" -""" -input player_unused_utility_var_pop_order_by { - player_steam_id: order_by - round: order_by - unused: order_by -} - -"""aggregate var_samp on columns""" -type player_unused_utility_var_samp_fields { - player_steam_id: Float - round: Float - unused: Float -} - -""" -order by var_samp() on columns of table "player_unused_utility" -""" -input player_unused_utility_var_samp_order_by { - player_steam_id: order_by - round: order_by - unused: order_by -} - -"""aggregate variance on columns""" -type player_unused_utility_variance_fields { - player_steam_id: Float - round: Float - unused: Float -} - -""" -order by variance() on columns of table "player_unused_utility" -""" -input player_unused_utility_variance_order_by { - player_steam_id: order_by - round: order_by - unused: order_by -} - -""" -columns and relationships of "player_utility" -""" -type player_utility { - attacker_location_coordinates: String - attacker_steam_id: bigint! - deleted_at: timestamptz - - """An object relationship""" - match: matches! - match_id: uuid! - - """An object relationship""" - match_map: match_maps! - match_map_id: uuid! - - """An object relationship""" - player: players! - round: Int! - time: timestamptz! - type: e_utility_types_enum! -} - -""" -aggregated selection of "player_utility" -""" -type player_utility_aggregate { - aggregate: player_utility_aggregate_fields - nodes: [player_utility!]! -} - -input player_utility_aggregate_bool_exp { - count: player_utility_aggregate_bool_exp_count -} - -input player_utility_aggregate_bool_exp_count { - arguments: [player_utility_select_column!] - distinct: Boolean - filter: player_utility_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "player_utility" -""" -type player_utility_aggregate_fields { - avg: player_utility_avg_fields - count(columns: [player_utility_select_column!], distinct: Boolean): Int! - max: player_utility_max_fields - min: player_utility_min_fields - stddev: player_utility_stddev_fields - stddev_pop: player_utility_stddev_pop_fields - stddev_samp: player_utility_stddev_samp_fields - sum: player_utility_sum_fields - var_pop: player_utility_var_pop_fields - var_samp: player_utility_var_samp_fields - variance: player_utility_variance_fields -} - -""" -order by aggregate values of table "player_utility" -""" -input player_utility_aggregate_order_by { - avg: player_utility_avg_order_by - count: order_by - max: player_utility_max_order_by - min: player_utility_min_order_by - stddev: player_utility_stddev_order_by - stddev_pop: player_utility_stddev_pop_order_by - stddev_samp: player_utility_stddev_samp_order_by - sum: player_utility_sum_order_by - var_pop: player_utility_var_pop_order_by - var_samp: player_utility_var_samp_order_by - variance: player_utility_variance_order_by -} - -""" -input type for inserting array relation for remote table "player_utility" -""" -input player_utility_arr_rel_insert_input { - data: [player_utility_insert_input!]! - - """upsert condition""" - on_conflict: player_utility_on_conflict -} - -"""aggregate avg on columns""" -type player_utility_avg_fields { - attacker_steam_id: Float - round: Float -} - -""" -order by avg() on columns of table "player_utility" -""" -input player_utility_avg_order_by { - attacker_steam_id: order_by - round: order_by -} - -""" -Boolean expression to filter rows from the table "player_utility". All fields are combined with a logical 'AND'. -""" -input player_utility_bool_exp { - _and: [player_utility_bool_exp!] - _not: player_utility_bool_exp - _or: [player_utility_bool_exp!] - attacker_location_coordinates: String_comparison_exp - attacker_steam_id: bigint_comparison_exp - deleted_at: timestamptz_comparison_exp - match: matches_bool_exp - match_id: uuid_comparison_exp - match_map: match_maps_bool_exp - match_map_id: uuid_comparison_exp - player: players_bool_exp - round: Int_comparison_exp - time: timestamptz_comparison_exp - type: e_utility_types_enum_comparison_exp -} - -""" -unique or primary key constraints on table "player_utility" -""" -enum player_utility_constraint { - """ - unique or primary key constraint on columns "attacker_steam_id", "time", "match_map_id" - """ - player_utility_pkey -} - -""" -input type for incrementing numeric columns in table "player_utility" -""" -input player_utility_inc_input { - attacker_steam_id: bigint - round: Int -} - -""" -input type for inserting data into table "player_utility" -""" -input player_utility_insert_input { - attacker_location_coordinates: String - attacker_steam_id: bigint - deleted_at: timestamptz - match: matches_obj_rel_insert_input - match_id: uuid - match_map: match_maps_obj_rel_insert_input - match_map_id: uuid - player: players_obj_rel_insert_input - round: Int - time: timestamptz - type: e_utility_types_enum -} - -"""aggregate max on columns""" -type player_utility_max_fields { - attacker_location_coordinates: String - attacker_steam_id: bigint - deleted_at: timestamptz - match_id: uuid - match_map_id: uuid - round: Int - time: timestamptz -} - -""" -order by max() on columns of table "player_utility" -""" -input player_utility_max_order_by { - attacker_location_coordinates: order_by - attacker_steam_id: order_by - deleted_at: order_by - match_id: order_by - match_map_id: order_by - round: order_by - time: order_by -} - -"""aggregate min on columns""" -type player_utility_min_fields { - attacker_location_coordinates: String - attacker_steam_id: bigint - deleted_at: timestamptz - match_id: uuid - match_map_id: uuid - round: Int - time: timestamptz -} - -""" -order by min() on columns of table "player_utility" -""" -input player_utility_min_order_by { - attacker_location_coordinates: order_by - attacker_steam_id: order_by - deleted_at: order_by - match_id: order_by - match_map_id: order_by - round: order_by - time: order_by -} - -""" -response of any mutation on the table "player_utility" -""" -type player_utility_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [player_utility!]! -} - -""" -on_conflict condition type for table "player_utility" -""" -input player_utility_on_conflict { - constraint: player_utility_constraint! - update_columns: [player_utility_update_column!]! = [] - where: player_utility_bool_exp -} - -"""Ordering options when selecting data from "player_utility".""" -input player_utility_order_by { - attacker_location_coordinates: order_by - attacker_steam_id: order_by - deleted_at: order_by - match: matches_order_by - match_id: order_by - match_map: match_maps_order_by - match_map_id: order_by - player: players_order_by - round: order_by - time: order_by - type: order_by -} - -"""primary key columns input for table: player_utility""" -input player_utility_pk_columns_input { - attacker_steam_id: bigint! - match_map_id: uuid! - time: timestamptz! -} - -""" -select columns of table "player_utility" -""" -enum player_utility_select_column { - """column name""" - attacker_location_coordinates - - """column name""" - attacker_steam_id - - """column name""" - deleted_at - - """column name""" - match_id - - """column name""" - match_map_id - - """column name""" - round - - """column name""" - time - - """column name""" - type -} - -""" -input type for updating data in table "player_utility" -""" -input player_utility_set_input { - attacker_location_coordinates: String - attacker_steam_id: bigint - deleted_at: timestamptz - match_id: uuid - match_map_id: uuid - round: Int - time: timestamptz - type: e_utility_types_enum -} - -"""aggregate stddev on columns""" -type player_utility_stddev_fields { - attacker_steam_id: Float - round: Float -} - -""" -order by stddev() on columns of table "player_utility" -""" -input player_utility_stddev_order_by { - attacker_steam_id: order_by - round: order_by -} - -"""aggregate stddev_pop on columns""" -type player_utility_stddev_pop_fields { - attacker_steam_id: Float - round: Float -} - -""" -order by stddev_pop() on columns of table "player_utility" -""" -input player_utility_stddev_pop_order_by { - attacker_steam_id: order_by - round: order_by -} - -"""aggregate stddev_samp on columns""" -type player_utility_stddev_samp_fields { - attacker_steam_id: Float - round: Float -} - -""" -order by stddev_samp() on columns of table "player_utility" -""" -input player_utility_stddev_samp_order_by { - attacker_steam_id: order_by - round: order_by -} - -""" -Streaming cursor of the table "player_utility" -""" -input player_utility_stream_cursor_input { - """Stream column input with initial value""" - initial_value: player_utility_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input player_utility_stream_cursor_value_input { - attacker_location_coordinates: String - attacker_steam_id: bigint - deleted_at: timestamptz - match_id: uuid - match_map_id: uuid - round: Int - time: timestamptz - type: e_utility_types_enum -} - -"""aggregate sum on columns""" -type player_utility_sum_fields { - attacker_steam_id: bigint - round: Int -} - -""" -order by sum() on columns of table "player_utility" -""" -input player_utility_sum_order_by { - attacker_steam_id: order_by - round: order_by -} - -""" -update columns of table "player_utility" -""" -enum player_utility_update_column { - """column name""" - attacker_location_coordinates - - """column name""" - attacker_steam_id - - """column name""" - deleted_at - - """column name""" - match_id - - """column name""" - match_map_id - - """column name""" - round - - """column name""" - time - - """column name""" - type -} - -input player_utility_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: player_utility_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: player_utility_set_input - - """filter the rows which have to be updated""" - where: player_utility_bool_exp! -} - -"""aggregate var_pop on columns""" -type player_utility_var_pop_fields { - attacker_steam_id: Float - round: Float -} - -""" -order by var_pop() on columns of table "player_utility" -""" -input player_utility_var_pop_order_by { - attacker_steam_id: order_by - round: order_by -} - -"""aggregate var_samp on columns""" -type player_utility_var_samp_fields { - attacker_steam_id: Float - round: Float -} - -""" -order by var_samp() on columns of table "player_utility" -""" -input player_utility_var_samp_order_by { - attacker_steam_id: order_by - round: order_by -} - -"""aggregate variance on columns""" -type player_utility_variance_fields { - attacker_steam_id: Float - round: Float -} - -""" -order by variance() on columns of table "player_utility" -""" -input player_utility_variance_order_by { - attacker_steam_id: order_by - round: order_by -} - -""" -columns and relationships of "player_weapon_stats_v" -""" -type player_weapon_stats_v { - first_bullet_hits: Int - first_bullet_shots: Int - hits: Int - hits_spotted: Int - match_id: uuid - shots: Int - shots_spotted: Int - steam_id: bigint - weapon_class: String -} - -""" -aggregated selection of "player_weapon_stats_v" -""" -type player_weapon_stats_v_aggregate { - aggregate: player_weapon_stats_v_aggregate_fields - nodes: [player_weapon_stats_v!]! -} - -input player_weapon_stats_v_aggregate_bool_exp { - count: player_weapon_stats_v_aggregate_bool_exp_count -} - -input player_weapon_stats_v_aggregate_bool_exp_count { - arguments: [player_weapon_stats_v_select_column!] - distinct: Boolean - filter: player_weapon_stats_v_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "player_weapon_stats_v" -""" -type player_weapon_stats_v_aggregate_fields { - avg: player_weapon_stats_v_avg_fields - count(columns: [player_weapon_stats_v_select_column!], distinct: Boolean): Int! - max: player_weapon_stats_v_max_fields - min: player_weapon_stats_v_min_fields - stddev: player_weapon_stats_v_stddev_fields - stddev_pop: player_weapon_stats_v_stddev_pop_fields - stddev_samp: player_weapon_stats_v_stddev_samp_fields - sum: player_weapon_stats_v_sum_fields - var_pop: player_weapon_stats_v_var_pop_fields - var_samp: player_weapon_stats_v_var_samp_fields - variance: player_weapon_stats_v_variance_fields -} - -""" -order by aggregate values of table "player_weapon_stats_v" -""" -input player_weapon_stats_v_aggregate_order_by { - avg: player_weapon_stats_v_avg_order_by - count: order_by - max: player_weapon_stats_v_max_order_by - min: player_weapon_stats_v_min_order_by - stddev: player_weapon_stats_v_stddev_order_by - stddev_pop: player_weapon_stats_v_stddev_pop_order_by - stddev_samp: player_weapon_stats_v_stddev_samp_order_by - sum: player_weapon_stats_v_sum_order_by - var_pop: player_weapon_stats_v_var_pop_order_by - var_samp: player_weapon_stats_v_var_samp_order_by - variance: player_weapon_stats_v_variance_order_by -} - -""" -input type for inserting array relation for remote table "player_weapon_stats_v" -""" -input player_weapon_stats_v_arr_rel_insert_input { - data: [player_weapon_stats_v_insert_input!]! -} - -"""aggregate avg on columns""" -type player_weapon_stats_v_avg_fields { - first_bullet_hits: Float - first_bullet_shots: Float - hits: Float - hits_spotted: Float - shots: Float - shots_spotted: Float - steam_id: Float -} - -""" -order by avg() on columns of table "player_weapon_stats_v" -""" -input player_weapon_stats_v_avg_order_by { - first_bullet_hits: order_by - first_bullet_shots: order_by - hits: order_by - hits_spotted: order_by - shots: order_by - shots_spotted: order_by - steam_id: order_by -} - -""" -Boolean expression to filter rows from the table "player_weapon_stats_v". All fields are combined with a logical 'AND'. -""" -input player_weapon_stats_v_bool_exp { - _and: [player_weapon_stats_v_bool_exp!] - _not: player_weapon_stats_v_bool_exp - _or: [player_weapon_stats_v_bool_exp!] - first_bullet_hits: Int_comparison_exp - first_bullet_shots: Int_comparison_exp - hits: Int_comparison_exp - hits_spotted: Int_comparison_exp - match_id: uuid_comparison_exp - shots: Int_comparison_exp - shots_spotted: Int_comparison_exp - steam_id: bigint_comparison_exp - weapon_class: String_comparison_exp -} - -""" -input type for inserting data into table "player_weapon_stats_v" -""" -input player_weapon_stats_v_insert_input { - first_bullet_hits: Int - first_bullet_shots: Int - hits: Int - hits_spotted: Int - match_id: uuid - shots: Int - shots_spotted: Int - steam_id: bigint - weapon_class: String -} - -"""aggregate max on columns""" -type player_weapon_stats_v_max_fields { - first_bullet_hits: Int - first_bullet_shots: Int - hits: Int - hits_spotted: Int - match_id: uuid - shots: Int - shots_spotted: Int - steam_id: bigint - weapon_class: String -} - -""" -order by max() on columns of table "player_weapon_stats_v" -""" -input player_weapon_stats_v_max_order_by { - first_bullet_hits: order_by - first_bullet_shots: order_by - hits: order_by - hits_spotted: order_by - match_id: order_by - shots: order_by - shots_spotted: order_by - steam_id: order_by - weapon_class: order_by -} - -"""aggregate min on columns""" -type player_weapon_stats_v_min_fields { - first_bullet_hits: Int - first_bullet_shots: Int - hits: Int - hits_spotted: Int - match_id: uuid - shots: Int - shots_spotted: Int - steam_id: bigint - weapon_class: String -} - -""" -order by min() on columns of table "player_weapon_stats_v" -""" -input player_weapon_stats_v_min_order_by { - first_bullet_hits: order_by - first_bullet_shots: order_by - hits: order_by - hits_spotted: order_by - match_id: order_by - shots: order_by - shots_spotted: order_by - steam_id: order_by - weapon_class: order_by -} - -"""Ordering options when selecting data from "player_weapon_stats_v".""" -input player_weapon_stats_v_order_by { - first_bullet_hits: order_by - first_bullet_shots: order_by - hits: order_by - hits_spotted: order_by - match_id: order_by - shots: order_by - shots_spotted: order_by - steam_id: order_by - weapon_class: order_by -} - -""" -select columns of table "player_weapon_stats_v" -""" -enum player_weapon_stats_v_select_column { - """column name""" - first_bullet_hits - - """column name""" - first_bullet_shots - - """column name""" - hits - - """column name""" - hits_spotted - - """column name""" - match_id - - """column name""" - shots - - """column name""" - shots_spotted - - """column name""" - steam_id - - """column name""" - weapon_class -} - -"""aggregate stddev on columns""" -type player_weapon_stats_v_stddev_fields { - first_bullet_hits: Float - first_bullet_shots: Float - hits: Float - hits_spotted: Float - shots: Float - shots_spotted: Float - steam_id: Float -} - -""" -order by stddev() on columns of table "player_weapon_stats_v" -""" -input player_weapon_stats_v_stddev_order_by { - first_bullet_hits: order_by - first_bullet_shots: order_by - hits: order_by - hits_spotted: order_by - shots: order_by - shots_spotted: order_by - steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type player_weapon_stats_v_stddev_pop_fields { - first_bullet_hits: Float - first_bullet_shots: Float - hits: Float - hits_spotted: Float - shots: Float - shots_spotted: Float - steam_id: Float -} - -""" -order by stddev_pop() on columns of table "player_weapon_stats_v" -""" -input player_weapon_stats_v_stddev_pop_order_by { - first_bullet_hits: order_by - first_bullet_shots: order_by - hits: order_by - hits_spotted: order_by - shots: order_by - shots_spotted: order_by - steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type player_weapon_stats_v_stddev_samp_fields { - first_bullet_hits: Float - first_bullet_shots: Float - hits: Float - hits_spotted: Float - shots: Float - shots_spotted: Float - steam_id: Float -} - -""" -order by stddev_samp() on columns of table "player_weapon_stats_v" -""" -input player_weapon_stats_v_stddev_samp_order_by { - first_bullet_hits: order_by - first_bullet_shots: order_by - hits: order_by - hits_spotted: order_by - shots: order_by - shots_spotted: order_by - steam_id: order_by -} - -""" -Streaming cursor of the table "player_weapon_stats_v" -""" -input player_weapon_stats_v_stream_cursor_input { - """Stream column input with initial value""" - initial_value: player_weapon_stats_v_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input player_weapon_stats_v_stream_cursor_value_input { - first_bullet_hits: Int - first_bullet_shots: Int - hits: Int - hits_spotted: Int - match_id: uuid - shots: Int - shots_spotted: Int - steam_id: bigint - weapon_class: String -} - -"""aggregate sum on columns""" -type player_weapon_stats_v_sum_fields { - first_bullet_hits: Int - first_bullet_shots: Int - hits: Int - hits_spotted: Int - shots: Int - shots_spotted: Int - steam_id: bigint -} - -""" -order by sum() on columns of table "player_weapon_stats_v" -""" -input player_weapon_stats_v_sum_order_by { - first_bullet_hits: order_by - first_bullet_shots: order_by - hits: order_by - hits_spotted: order_by - shots: order_by - shots_spotted: order_by - steam_id: order_by -} - -"""aggregate var_pop on columns""" -type player_weapon_stats_v_var_pop_fields { - first_bullet_hits: Float - first_bullet_shots: Float - hits: Float - hits_spotted: Float - shots: Float - shots_spotted: Float - steam_id: Float -} - -""" -order by var_pop() on columns of table "player_weapon_stats_v" -""" -input player_weapon_stats_v_var_pop_order_by { - first_bullet_hits: order_by - first_bullet_shots: order_by - hits: order_by - hits_spotted: order_by - shots: order_by - shots_spotted: order_by - steam_id: order_by -} - -"""aggregate var_samp on columns""" -type player_weapon_stats_v_var_samp_fields { - first_bullet_hits: Float - first_bullet_shots: Float - hits: Float - hits_spotted: Float - shots: Float - shots_spotted: Float - steam_id: Float -} - -""" -order by var_samp() on columns of table "player_weapon_stats_v" -""" -input player_weapon_stats_v_var_samp_order_by { - first_bullet_hits: order_by - first_bullet_shots: order_by - hits: order_by - hits_spotted: order_by - shots: order_by - shots_spotted: order_by - steam_id: order_by -} - -"""aggregate variance on columns""" -type player_weapon_stats_v_variance_fields { - first_bullet_hits: Float - first_bullet_shots: Float - hits: Float - hits_spotted: Float - shots: Float - shots_spotted: Float - steam_id: Float -} - -""" -order by variance() on columns of table "player_weapon_stats_v" -""" -input player_weapon_stats_v_variance_order_by { - first_bullet_hits: order_by - first_bullet_shots: order_by - hits: order_by - hits_spotted: order_by - shots: order_by - shots_spotted: order_by - steam_id: order_by -} - -""" -columns and relationships of "players" -""" -type players { - """An array relationship""" - abandoned_matches( - """distinct select on columns""" - distinct_on: [abandoned_matches_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: [abandoned_matches_order_by!] - - """filter the rows returned""" - where: abandoned_matches_bool_exp - ): [abandoned_matches!]! - - """An aggregate relationship""" - abandoned_matches_aggregate( - """distinct select on columns""" - distinct_on: [abandoned_matches_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: [abandoned_matches_order_by!] - - """filter the rows returned""" - where: abandoned_matches_bool_exp - ): abandoned_matches_aggregate! - - """An array relationship""" - aim_weapon_stats( - """distinct select on columns""" - distinct_on: [player_aim_weapon_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [player_aim_weapon_stats_order_by!] - - """filter the rows returned""" - where: player_aim_weapon_stats_bool_exp - ): [player_aim_weapon_stats!]! - - """An aggregate relationship""" - aim_weapon_stats_aggregate( - """distinct select on columns""" - distinct_on: [player_aim_weapon_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [player_aim_weapon_stats_order_by!] - - """filter the rows returned""" - where: player_aim_weapon_stats_bool_exp - ): player_aim_weapon_stats_aggregate! - - """An array relationship""" - assists( - """distinct select on columns""" - distinct_on: [player_assists_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: [player_assists_order_by!] - - """filter the rows returned""" - where: player_assists_bool_exp - ): [player_assists!]! - - """An aggregate relationship""" - assists_aggregate( - """distinct select on columns""" - distinct_on: [player_assists_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: [player_assists_order_by!] - - """filter the rows returned""" - where: player_assists_bool_exp - ): player_assists_aggregate! - - """An array relationship""" - assited_by_players( - """distinct select on columns""" - distinct_on: [player_assists_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: [player_assists_order_by!] - - """filter the rows returned""" - where: player_assists_bool_exp - ): [player_assists!]! - - """An aggregate relationship""" - assited_by_players_aggregate( - """distinct select on columns""" - distinct_on: [player_assists_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: [player_assists_order_by!] - - """filter the rows returned""" - where: player_assists_bool_exp - ): player_assists_aggregate! - avatar_url: String - - """An array relationship""" - awards( - """distinct select on columns""" - distinct_on: [award_recipients_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: [award_recipients_order_by!] - - """filter the rows returned""" - where: award_recipients_bool_exp - ): [award_recipients!]! - - """An aggregate relationship""" - awards_aggregate( - """distinct select on columns""" - distinct_on: [award_recipients_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: [award_recipients_order_by!] - - """filter the rows returned""" - where: award_recipients_bool_exp - ): award_recipients_aggregate! - - """ - A computed field, executes function "banned_until" - """ - banned_until: timestamptz - - """An array relationship""" - coach_lineups( - """distinct select on columns""" - distinct_on: [match_lineups_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_lineups_order_by!] - - """filter the rows returned""" - where: match_lineups_bool_exp - ): [match_lineups!]! - - """An aggregate relationship""" - coach_lineups_aggregate( - """distinct select on columns""" - distinct_on: [match_lineups_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_lineups_order_by!] - - """filter the rows returned""" - where: match_lineups_bool_exp - ): match_lineups_aggregate! - country: String - created_at: timestamptz - - """ - A computed field, executes function "get_player_current_lobby_id" - """ - current_lobby_id: uuid - custom_avatar_url: String - - """An array relationship""" - damage_dealt( - """distinct select on columns""" - distinct_on: [player_damages_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: [player_damages_order_by!] - - """filter the rows returned""" - where: player_damages_bool_exp - ): [player_damages!]! - - """An aggregate relationship""" - damage_dealt_aggregate( - """distinct select on columns""" - distinct_on: [player_damages_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: [player_damages_order_by!] - - """filter the rows returned""" - where: player_damages_bool_exp - ): player_damages_aggregate! - - """An array relationship""" - damage_taken( - """distinct select on columns""" - distinct_on: [player_damages_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: [player_damages_order_by!] - - """filter the rows returned""" - where: player_damages_bool_exp - ): [player_damages!]! - - """An aggregate relationship""" - damage_taken_aggregate( - """distinct select on columns""" - distinct_on: [player_damages_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: [player_damages_order_by!] - - """filter the rows returned""" - where: player_damages_bool_exp - ): player_damages_aggregate! - days_since_last_ban: Int - - """An array relationship""" - deaths( - """distinct select on columns""" - distinct_on: [player_kills_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: [player_kills_order_by!] - - """filter the rows returned""" - where: player_kills_bool_exp - ): [player_kills!]! - - """An aggregate relationship""" - deaths_aggregate( - """distinct select on columns""" - distinct_on: [player_kills_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: [player_kills_order_by!] - - """filter the rows returned""" - where: player_kills_bool_exp - ): player_kills_aggregate! - discord_id: String - - """An array relationship""" - draft_game_players( - """distinct select on columns""" - distinct_on: [draft_game_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [draft_game_players_order_by!] - - """filter the rows returned""" - where: draft_game_players_bool_exp - ): [draft_game_players!]! - - """An aggregate relationship""" - draft_game_players_aggregate( - """distinct select on columns""" - distinct_on: [draft_game_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [draft_game_players_order_by!] - - """filter the rows returned""" - where: draft_game_players_bool_exp - ): draft_game_players_aggregate! - - """ - A computed field, executes function "get_player_elo" - """ - elo( - """JSON select path""" - path: String - ): jsonb - - """An array relationship""" - elo_history( - """distinct select on columns""" - distinct_on: [v_player_elo_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_elo_order_by!] - - """filter the rows returned""" - where: v_player_elo_bool_exp - ): [v_player_elo!]! - - """An aggregate relationship""" - elo_history_aggregate( - """distinct select on columns""" - distinct_on: [v_player_elo_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_elo_order_by!] - - """filter the rows returned""" - where: v_player_elo_bool_exp - ): v_player_elo_aggregate! - faceit_elo: Int - faceit_nickname: String - faceit_player_id: String - - """An array relationship""" - faceit_rank_history( - """distinct select on columns""" - distinct_on: [player_faceit_rank_history_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: [player_faceit_rank_history_order_by!] - - """filter the rows returned""" - where: player_faceit_rank_history_bool_exp - ): [player_faceit_rank_history!]! - - """An aggregate relationship""" - faceit_rank_history_aggregate( - """distinct select on columns""" - distinct_on: [player_faceit_rank_history_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: [player_faceit_rank_history_order_by!] - - """filter the rows returned""" - where: player_faceit_rank_history_bool_exp - ): player_faceit_rank_history_aggregate! - faceit_skill_level: Int - faceit_updated_at: timestamptz - faceit_url: String - - """An array relationship""" - flashed_by_players( - """distinct select on columns""" - distinct_on: [player_flashes_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: [player_flashes_order_by!] - - """filter the rows returned""" - where: player_flashes_bool_exp - ): [player_flashes!]! - - """An aggregate relationship""" - flashed_by_players_aggregate( - """distinct select on columns""" - distinct_on: [player_flashes_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: [player_flashes_order_by!] - - """filter the rows returned""" - where: player_flashes_bool_exp - ): player_flashes_aggregate! - - """An array relationship""" - flashed_players( - """distinct select on columns""" - distinct_on: [player_flashes_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: [player_flashes_order_by!] - - """filter the rows returned""" - where: player_flashes_bool_exp - ): [player_flashes!]! - - """An aggregate relationship""" - flashed_players_aggregate( - """distinct select on columns""" - distinct_on: [player_flashes_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: [player_flashes_order_by!] - - """filter the rows returned""" - where: player_flashes_bool_exp - ): player_flashes_aggregate! - - """An array relationship""" - friends( - """distinct select on columns""" - distinct_on: [my_friends_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: [my_friends_order_by!] - - """filter the rows returned""" - where: my_friends_bool_exp - ): [my_friends!]! - - """An aggregate relationship""" - friends_aggregate( - """distinct select on columns""" - distinct_on: [my_friends_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: [my_friends_order_by!] - - """filter the rows returned""" - where: my_friends_bool_exp - ): my_friends_aggregate! - game_ban_count: Int! - - """An array relationship""" - invited_players( - """distinct select on columns""" - distinct_on: [team_invites_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: [team_invites_order_by!] - - """filter the rows returned""" - where: team_invites_bool_exp - ): [team_invites!]! - - """An aggregate relationship""" - invited_players_aggregate( - """distinct select on columns""" - distinct_on: [team_invites_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: [team_invites_order_by!] - - """filter the rows returned""" - where: team_invites_bool_exp - ): team_invites_aggregate! - - """ - A computed field, executes function "is_admin_sanctioned" - """ - is_admin_sanctioned: Boolean - - """ - A computed field, executes function "is_banned" - """ - is_banned: Boolean - - """ - A computed field, executes function "is_gagged" - """ - is_gagged: Boolean - - """ - A computed field, executes function "is_in_another_match" - """ - is_in_another_match: Boolean - - """ - A computed field, executes function "is_in_draft" - """ - is_in_draft: Boolean - - """ - A computed field, executes function "is_in_lobby" - """ - is_in_lobby: Boolean - - """ - A computed field, executes function "is_muted" - """ - is_muted: Boolean - - """ - A computed field, executes function "is_registered" - """ - is_registered: Boolean - - """An array relationship""" - kills( - """distinct select on columns""" - distinct_on: [player_kills_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: [player_kills_order_by!] - - """filter the rows returned""" - where: player_kills_bool_exp - ): [player_kills!]! - - """An aggregate relationship""" - kills_aggregate( - """distinct select on columns""" - distinct_on: [player_kills_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: [player_kills_order_by!] - - """filter the rows returned""" - where: player_kills_bool_exp - ): player_kills_aggregate! - - """An array relationship""" - kills_by_weapons( - """distinct select on columns""" - distinct_on: [player_kills_by_weapon_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: [player_kills_by_weapon_order_by!] - - """filter the rows returned""" - where: player_kills_by_weapon_bool_exp - ): [player_kills_by_weapon!]! - - """An aggregate relationship""" - kills_by_weapons_aggregate( - """distinct select on columns""" - distinct_on: [player_kills_by_weapon_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: [player_kills_by_weapon_order_by!] - - """filter the rows returned""" - where: player_kills_by_weapon_bool_exp - ): player_kills_by_weapon_aggregate! - language: String - last_read_news_at: timestamptz - last_sign_in_at: timestamptz - - """An array relationship""" - lobby_players( - """distinct select on columns""" - distinct_on: [lobby_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [lobby_players_order_by!] - - """filter the rows returned""" - where: lobby_players_bool_exp - ): [lobby_players!]! - - """An aggregate relationship""" - lobby_players_aggregate( - """distinct select on columns""" - distinct_on: [lobby_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [lobby_players_order_by!] - - """filter the rows returned""" - where: lobby_players_bool_exp - ): lobby_players_aggregate! - - """ - A computed field, executes function "get_total_player_losses" - """ - losses: Int - - """ - A computed field, executes function "get_total_player_losses_competitive" - """ - losses_competitive: Int - - """ - A computed field, executes function "get_total_player_losses_duel" - """ - losses_duel: Int - - """ - A computed field, executes function "get_total_player_losses_wingman" - """ - losses_wingman: Int - - """An array relationship""" - match_map_hltv( - """distinct select on columns""" - distinct_on: [v_player_match_map_hltv_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_match_map_hltv_order_by!] - - """filter the rows returned""" - where: v_player_match_map_hltv_bool_exp - ): [v_player_match_map_hltv!]! - - """An aggregate relationship""" - match_map_hltv_aggregate( - """distinct select on columns""" - distinct_on: [v_player_match_map_hltv_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_match_map_hltv_order_by!] - - """filter the rows returned""" - where: v_player_match_map_hltv_bool_exp - ): v_player_match_map_hltv_aggregate! - - """An array relationship""" - match_map_stats( - """distinct select on columns""" - distinct_on: [player_match_map_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [player_match_map_stats_order_by!] - - """filter the rows returned""" - where: player_match_map_stats_bool_exp - ): [player_match_map_stats!]! - - """An aggregate relationship""" - match_map_stats_aggregate( - """distinct select on columns""" - distinct_on: [player_match_map_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [player_match_map_stats_order_by!] - - """filter the rows returned""" - where: player_match_map_stats_bool_exp - ): player_match_map_stats_aggregate! - - """An array relationship""" - match_stats( - """distinct select on columns""" - distinct_on: [player_match_stats_v_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: [player_match_stats_v_order_by!] - - """filter the rows returned""" - where: player_match_stats_v_bool_exp - ): [player_match_stats_v!]! - - """An aggregate relationship""" - match_stats_aggregate( - """distinct select on columns""" - distinct_on: [player_match_stats_v_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: [player_match_stats_v_order_by!] - - """filter the rows returned""" - where: player_match_stats_v_bool_exp - ): player_match_stats_v_aggregate! - - """ - A computed field, executes function "get_player_matches" - """ - matches( - """distinct select on columns""" - distinct_on: [matches_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: [matches_order_by!] - - """filter the rows returned""" - where: matches_bool_exp - ): [matches!] - - """ - A computed field, executes function "get_player_matchmaking_cooldown" - """ - matchmaking_cooldown: timestamptz - - """An array relationship""" - multi_kills( - """distinct select on columns""" - distinct_on: [v_player_multi_kills_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_multi_kills_order_by!] - - """filter the rows returned""" - where: v_player_multi_kills_bool_exp - ): [v_player_multi_kills!]! - - """An aggregate relationship""" - multi_kills_aggregate( - """distinct select on columns""" - distinct_on: [v_player_multi_kills_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_multi_kills_order_by!] - - """filter the rows returned""" - where: v_player_multi_kills_bool_exp - ): v_player_multi_kills_aggregate! - name: String! - name_registered: Boolean! - notification_timezone: String - - """An array relationship""" - notifications( - """distinct select on columns""" - distinct_on: [notifications_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: [notifications_order_by!] - - """filter the rows returned""" - where: notifications_bool_exp - ): [notifications!]! - - """An aggregate relationship""" - notifications_aggregate( - """distinct select on columns""" - distinct_on: [notifications_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: [notifications_order_by!] - - """filter the rows returned""" - where: notifications_bool_exp - ): notifications_aggregate! - - """An array relationship""" - objectives( - """distinct select on columns""" - distinct_on: [player_objectives_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: [player_objectives_order_by!] - - """filter the rows returned""" - where: player_objectives_bool_exp - ): [player_objectives!]! - - """An aggregate relationship""" - objectives_aggregate( - """distinct select on columns""" - distinct_on: [player_objectives_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: [player_objectives_order_by!] - - """filter the rows returned""" - where: player_objectives_bool_exp - ): player_objectives_aggregate! - - """An array relationship""" - owned_teams( - """distinct select on columns""" - distinct_on: [teams_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [teams_order_by!] - - """filter the rows returned""" - where: teams_bool_exp - ): [teams!]! - - """An aggregate relationship""" - owned_teams_aggregate( - """distinct select on columns""" - distinct_on: [teams_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [teams_order_by!] - - """filter the rows returned""" - where: teams_bool_exp - ): teams_aggregate! - - """ - A computed field, executes function "get_player_peak_elo" - """ - peak_elo( - """JSON select path""" - path: String - ): jsonb - - """An array relationship""" - pending_match_imports( - """distinct select on columns""" - distinct_on: [pending_match_import_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pending_match_import_players_order_by!] - - """filter the rows returned""" - where: pending_match_import_players_bool_exp - ): [pending_match_import_players!]! - - """An aggregate relationship""" - pending_match_imports_aggregate( - """distinct select on columns""" - distinct_on: [pending_match_import_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pending_match_import_players_order_by!] - - """filter the rows returned""" - where: pending_match_import_players_bool_exp - ): pending_match_import_players_aggregate! - - """An array relationship""" - player_lineup( - """distinct select on columns""" - distinct_on: [match_lineup_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_lineup_players_order_by!] - - """filter the rows returned""" - where: match_lineup_players_bool_exp - ): [match_lineup_players!]! - - """An aggregate relationship""" - player_lineup_aggregate( - """distinct select on columns""" - distinct_on: [match_lineup_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_lineup_players_order_by!] - - """filter the rows returned""" - where: match_lineup_players_bool_exp - ): match_lineup_players_aggregate! - - """An array relationship""" - player_unused_utilities( - """distinct select on columns""" - distinct_on: [player_unused_utility_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: [player_unused_utility_order_by!] - - """filter the rows returned""" - where: player_unused_utility_bool_exp - ): [player_unused_utility!]! - - """An aggregate relationship""" - player_unused_utilities_aggregate( - """distinct select on columns""" - distinct_on: [player_unused_utility_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: [player_unused_utility_order_by!] - - """filter the rows returned""" - where: player_unused_utility_bool_exp - ): player_unused_utility_aggregate! - premier_rank: Int - - """An array relationship""" - premier_rank_history( - """distinct select on columns""" - distinct_on: [player_premier_rank_history_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: [player_premier_rank_history_order_by!] - - """filter the rows returned""" - where: player_premier_rank_history_bool_exp - ): [player_premier_rank_history!]! - - """An aggregate relationship""" - premier_rank_history_aggregate( - """distinct select on columns""" - distinct_on: [player_premier_rank_history_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: [player_premier_rank_history_order_by!] - - """filter the rows returned""" - where: player_premier_rank_history_bool_exp - ): player_premier_rank_history_aggregate! - premier_rank_updated_at: timestamptz - profile_url: String - quiet_hours_end: time - quiet_hours_start: time - role: e_player_roles_enum! - roster_image_url: String - - """An array relationship""" - sanctions( - """distinct select on columns""" - distinct_on: [player_sanctions_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: [player_sanctions_order_by!] - - """filter the rows returned""" - where: player_sanctions_bool_exp - ): [player_sanctions!]! - - """An aggregate relationship""" - sanctions_aggregate( - """distinct select on columns""" - distinct_on: [player_sanctions_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: [player_sanctions_order_by!] - - """filter the rows returned""" - where: player_sanctions_bool_exp - ): player_sanctions_aggregate! - - """An array relationship""" - season_stats( - """distinct select on columns""" - distinct_on: [player_season_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [player_season_stats_order_by!] - - """filter the rows returned""" - where: player_season_stats_bool_exp - ): [player_season_stats!]! - - """An aggregate relationship""" - season_stats_aggregate( - """distinct select on columns""" - distinct_on: [player_season_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [player_season_stats_order_by!] - - """filter the rows returned""" - where: player_season_stats_bool_exp - ): player_season_stats_aggregate! - show_match_ready_modal: Boolean! - - """An object relationship""" - stats: player_stats - steam_bans_checked_at: timestamptz - steam_id: bigint! - - """An array relationship""" - team_invites( - """distinct select on columns""" - distinct_on: [team_invites_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: [team_invites_order_by!] - - """filter the rows returned""" - where: team_invites_bool_exp - ): [team_invites!]! - - """An aggregate relationship""" - team_invites_aggregate( - """distinct select on columns""" - distinct_on: [team_invites_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: [team_invites_order_by!] - - """filter the rows returned""" - where: team_invites_bool_exp - ): team_invites_aggregate! - - """An array relationship""" - team_members( - """distinct select on columns""" - distinct_on: [team_roster_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: [team_roster_order_by!] - - """filter the rows returned""" - where: team_roster_bool_exp - ): [team_roster!]! - - """An aggregate relationship""" - team_members_aggregate( - """distinct select on columns""" - distinct_on: [team_roster_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: [team_roster_order_by!] - - """filter the rows returned""" - where: team_roster_bool_exp - ): team_roster_aggregate! - - """ - A computed field, executes function "get_player_teams" - """ - teams( - """distinct select on columns""" - distinct_on: [teams_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [teams_order_by!] - - """filter the rows returned""" - where: teams_bool_exp - ): [teams!] - - """ - A computed field, executes function "get_total_player_matches" - """ - total_matches: Int - - """ - A computed field, executes function "get_player_tournament_cooldown" - """ - tournament_cooldown: timestamptz - - """An array relationship""" - tournament_organizers( - """distinct select on columns""" - distinct_on: [tournament_organizers_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_organizers_order_by!] - - """filter the rows returned""" - where: tournament_organizers_bool_exp - ): [tournament_organizers!]! - - """An aggregate relationship""" - tournament_organizers_aggregate( - """distinct select on columns""" - distinct_on: [tournament_organizers_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_organizers_order_by!] - - """filter the rows returned""" - where: tournament_organizers_bool_exp - ): tournament_organizers_aggregate! - - """An array relationship""" - tournament_rosters( - """distinct select on columns""" - distinct_on: [tournament_team_roster_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_team_roster_order_by!] - - """filter the rows returned""" - where: tournament_team_roster_bool_exp - ): [tournament_team_roster!]! - - """An aggregate relationship""" - tournament_rosters_aggregate( - """distinct select on columns""" - distinct_on: [tournament_team_roster_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_team_roster_order_by!] - - """filter the rows returned""" - where: tournament_team_roster_bool_exp - ): tournament_team_roster_aggregate! - - """An array relationship""" - tournaments( - """distinct select on columns""" - distinct_on: [tournaments_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournaments_order_by!] - - """filter the rows returned""" - where: tournaments_bool_exp - ): [tournaments!]! - - """An aggregate relationship""" - tournaments_aggregate( - """distinct select on columns""" - distinct_on: [tournaments_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournaments_order_by!] - - """filter the rows returned""" - where: tournaments_bool_exp - ): tournaments_aggregate! - - """An array relationship""" - utility_thrown( - """distinct select on columns""" - distinct_on: [player_utility_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: [player_utility_order_by!] - - """filter the rows returned""" - where: player_utility_bool_exp - ): [player_utility!]! - - """An aggregate relationship""" - utility_thrown_aggregate( - """distinct select on columns""" - distinct_on: [player_utility_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: [player_utility_order_by!] - - """filter the rows returned""" - where: player_utility_bool_exp - ): player_utility_aggregate! - vac_ban_count: Int! - vac_banned: Boolean! - - """An array relationship""" - weapon_stats( - """distinct select on columns""" - distinct_on: [player_weapon_stats_v_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: [player_weapon_stats_v_order_by!] - - """filter the rows returned""" - where: player_weapon_stats_v_bool_exp - ): [player_weapon_stats_v!]! - - """An aggregate relationship""" - weapon_stats_aggregate( - """distinct select on columns""" - distinct_on: [player_weapon_stats_v_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: [player_weapon_stats_v_order_by!] - - """filter the rows returned""" - where: player_weapon_stats_v_bool_exp - ): player_weapon_stats_v_aggregate! - - """ - A computed field, executes function "get_total_player_wins" - """ - wins: Int - - """ - A computed field, executes function "get_total_player_wins_competitive" - """ - wins_competitive: Int - - """ - A computed field, executes function "get_total_player_wins_duel" - """ - wins_duel: Int - - """ - A computed field, executes function "get_total_player_wins_wingman" - """ - wins_wingman: Int -} - -""" -aggregated selection of "players" -""" -type players_aggregate { - aggregate: players_aggregate_fields - nodes: [players!]! -} - -""" -aggregate fields of "players" -""" -type players_aggregate_fields { - avg: players_avg_fields - count(columns: [players_select_column!], distinct: Boolean): Int! - max: players_max_fields - min: players_min_fields - stddev: players_stddev_fields - stddev_pop: players_stddev_pop_fields - stddev_samp: players_stddev_samp_fields - sum: players_sum_fields - var_pop: players_var_pop_fields - var_samp: players_var_samp_fields - variance: players_variance_fields -} - -"""aggregate avg on columns""" -type players_avg_fields { - days_since_last_ban: Float - faceit_elo: Float - faceit_skill_level: Float - game_ban_count: Float - - """ - A computed field, executes function "get_total_player_losses" - """ - losses: Int - - """ - A computed field, executes function "get_total_player_losses_competitive" - """ - losses_competitive: Int - - """ - A computed field, executes function "get_total_player_losses_duel" - """ - losses_duel: Int - - """ - A computed field, executes function "get_total_player_losses_wingman" - """ - losses_wingman: Int - premier_rank: Float - steam_id: Float - - """ - A computed field, executes function "get_total_player_matches" - """ - total_matches: Int - vac_ban_count: Float - - """ - A computed field, executes function "get_total_player_wins" - """ - wins: Int - - """ - A computed field, executes function "get_total_player_wins_competitive" - """ - wins_competitive: Int - - """ - A computed field, executes function "get_total_player_wins_duel" - """ - wins_duel: Int - - """ - A computed field, executes function "get_total_player_wins_wingman" - """ - wins_wingman: Int -} - -""" -Boolean expression to filter rows from the table "players". All fields are combined with a logical 'AND'. -""" -input players_bool_exp { - _and: [players_bool_exp!] - _not: players_bool_exp - _or: [players_bool_exp!] - abandoned_matches: abandoned_matches_bool_exp - abandoned_matches_aggregate: abandoned_matches_aggregate_bool_exp - aim_weapon_stats: player_aim_weapon_stats_bool_exp - aim_weapon_stats_aggregate: player_aim_weapon_stats_aggregate_bool_exp - assists: player_assists_bool_exp - assists_aggregate: player_assists_aggregate_bool_exp - assited_by_players: player_assists_bool_exp - assited_by_players_aggregate: player_assists_aggregate_bool_exp - avatar_url: String_comparison_exp - awards: award_recipients_bool_exp - awards_aggregate: award_recipients_aggregate_bool_exp - banned_until: timestamptz_comparison_exp - coach_lineups: match_lineups_bool_exp - coach_lineups_aggregate: match_lineups_aggregate_bool_exp - country: String_comparison_exp - created_at: timestamptz_comparison_exp - current_lobby_id: uuid_comparison_exp - custom_avatar_url: String_comparison_exp - damage_dealt: player_damages_bool_exp - damage_dealt_aggregate: player_damages_aggregate_bool_exp - damage_taken: player_damages_bool_exp - damage_taken_aggregate: player_damages_aggregate_bool_exp - days_since_last_ban: Int_comparison_exp - deaths: player_kills_bool_exp - deaths_aggregate: player_kills_aggregate_bool_exp - discord_id: String_comparison_exp - draft_game_players: draft_game_players_bool_exp - draft_game_players_aggregate: draft_game_players_aggregate_bool_exp - elo: jsonb_comparison_exp - elo_history: v_player_elo_bool_exp - elo_history_aggregate: v_player_elo_aggregate_bool_exp - faceit_elo: Int_comparison_exp - faceit_nickname: String_comparison_exp - faceit_player_id: String_comparison_exp - faceit_rank_history: player_faceit_rank_history_bool_exp - faceit_rank_history_aggregate: player_faceit_rank_history_aggregate_bool_exp - faceit_skill_level: Int_comparison_exp - faceit_updated_at: timestamptz_comparison_exp - faceit_url: String_comparison_exp - flashed_by_players: player_flashes_bool_exp - flashed_by_players_aggregate: player_flashes_aggregate_bool_exp - flashed_players: player_flashes_bool_exp - flashed_players_aggregate: player_flashes_aggregate_bool_exp - friends: my_friends_bool_exp - friends_aggregate: my_friends_aggregate_bool_exp - game_ban_count: Int_comparison_exp - invited_players: team_invites_bool_exp - invited_players_aggregate: team_invites_aggregate_bool_exp - is_admin_sanctioned: Boolean_comparison_exp - is_banned: Boolean_comparison_exp - is_gagged: Boolean_comparison_exp - is_in_another_match: Boolean_comparison_exp - is_in_draft: Boolean_comparison_exp - is_in_lobby: Boolean_comparison_exp - is_muted: Boolean_comparison_exp - is_registered: Boolean_comparison_exp - kills: player_kills_bool_exp - kills_aggregate: player_kills_aggregate_bool_exp - kills_by_weapons: player_kills_by_weapon_bool_exp - kills_by_weapons_aggregate: player_kills_by_weapon_aggregate_bool_exp - language: String_comparison_exp - last_read_news_at: timestamptz_comparison_exp - last_sign_in_at: timestamptz_comparison_exp - lobby_players: lobby_players_bool_exp - lobby_players_aggregate: lobby_players_aggregate_bool_exp - losses: Int_comparison_exp - losses_competitive: Int_comparison_exp - losses_duel: Int_comparison_exp - losses_wingman: Int_comparison_exp - match_map_hltv: v_player_match_map_hltv_bool_exp - match_map_hltv_aggregate: v_player_match_map_hltv_aggregate_bool_exp - match_map_stats: player_match_map_stats_bool_exp - match_map_stats_aggregate: player_match_map_stats_aggregate_bool_exp - match_stats: player_match_stats_v_bool_exp - match_stats_aggregate: player_match_stats_v_aggregate_bool_exp - matches: matches_bool_exp - matchmaking_cooldown: timestamptz_comparison_exp - multi_kills: v_player_multi_kills_bool_exp - multi_kills_aggregate: v_player_multi_kills_aggregate_bool_exp - name: String_comparison_exp - name_registered: Boolean_comparison_exp - notification_timezone: String_comparison_exp - notifications: notifications_bool_exp - notifications_aggregate: notifications_aggregate_bool_exp - objectives: player_objectives_bool_exp - objectives_aggregate: player_objectives_aggregate_bool_exp - owned_teams: teams_bool_exp - owned_teams_aggregate: teams_aggregate_bool_exp - peak_elo: jsonb_comparison_exp - pending_match_imports: pending_match_import_players_bool_exp - pending_match_imports_aggregate: pending_match_import_players_aggregate_bool_exp - player_lineup: match_lineup_players_bool_exp - player_lineup_aggregate: match_lineup_players_aggregate_bool_exp - player_unused_utilities: player_unused_utility_bool_exp - player_unused_utilities_aggregate: player_unused_utility_aggregate_bool_exp - premier_rank: Int_comparison_exp - premier_rank_history: player_premier_rank_history_bool_exp - premier_rank_history_aggregate: player_premier_rank_history_aggregate_bool_exp - premier_rank_updated_at: timestamptz_comparison_exp - profile_url: String_comparison_exp - quiet_hours_end: time_comparison_exp - quiet_hours_start: time_comparison_exp - role: e_player_roles_enum_comparison_exp - roster_image_url: String_comparison_exp - sanctions: player_sanctions_bool_exp - sanctions_aggregate: player_sanctions_aggregate_bool_exp - season_stats: player_season_stats_bool_exp - season_stats_aggregate: player_season_stats_aggregate_bool_exp - show_match_ready_modal: Boolean_comparison_exp - stats: player_stats_bool_exp - steam_bans_checked_at: timestamptz_comparison_exp - steam_id: bigint_comparison_exp - team_invites: team_invites_bool_exp - team_invites_aggregate: team_invites_aggregate_bool_exp - team_members: team_roster_bool_exp - team_members_aggregate: team_roster_aggregate_bool_exp - teams: teams_bool_exp - total_matches: Int_comparison_exp - tournament_cooldown: timestamptz_comparison_exp - tournament_organizers: tournament_organizers_bool_exp - tournament_organizers_aggregate: tournament_organizers_aggregate_bool_exp - tournament_rosters: tournament_team_roster_bool_exp - tournament_rosters_aggregate: tournament_team_roster_aggregate_bool_exp - tournaments: tournaments_bool_exp - tournaments_aggregate: tournaments_aggregate_bool_exp - utility_thrown: player_utility_bool_exp - utility_thrown_aggregate: player_utility_aggregate_bool_exp - vac_ban_count: Int_comparison_exp - vac_banned: Boolean_comparison_exp - weapon_stats: player_weapon_stats_v_bool_exp - weapon_stats_aggregate: player_weapon_stats_v_aggregate_bool_exp - wins: Int_comparison_exp - wins_competitive: Int_comparison_exp - wins_duel: Int_comparison_exp - wins_wingman: Int_comparison_exp -} - -""" -unique or primary key constraints on table "players" -""" -enum players_constraint { - """ - unique or primary key constraint on columns "discord_id" - """ - players_discord_id_key - - """ - unique or primary key constraint on columns "steam_id" - """ - players_pkey - - """ - unique or primary key constraint on columns "steam_id" - """ - players_steam_id_key -} - -""" -input type for incrementing numeric columns in table "players" -""" -input players_inc_input { - days_since_last_ban: Int - faceit_elo: Int - faceit_skill_level: Int - game_ban_count: Int - premier_rank: Int - steam_id: bigint - vac_ban_count: Int -} - -""" -input type for inserting data into table "players" -""" -input players_insert_input { - abandoned_matches: abandoned_matches_arr_rel_insert_input - aim_weapon_stats: player_aim_weapon_stats_arr_rel_insert_input - assists: player_assists_arr_rel_insert_input - assited_by_players: player_assists_arr_rel_insert_input - avatar_url: String - awards: award_recipients_arr_rel_insert_input - coach_lineups: match_lineups_arr_rel_insert_input - country: String - created_at: timestamptz - custom_avatar_url: String - damage_dealt: player_damages_arr_rel_insert_input - damage_taken: player_damages_arr_rel_insert_input - days_since_last_ban: Int - deaths: player_kills_arr_rel_insert_input - discord_id: String - draft_game_players: draft_game_players_arr_rel_insert_input - elo_history: v_player_elo_arr_rel_insert_input - faceit_elo: Int - faceit_nickname: String - faceit_player_id: String - faceit_rank_history: player_faceit_rank_history_arr_rel_insert_input - faceit_skill_level: Int - faceit_updated_at: timestamptz - faceit_url: String - flashed_by_players: player_flashes_arr_rel_insert_input - flashed_players: player_flashes_arr_rel_insert_input - friends: my_friends_arr_rel_insert_input - game_ban_count: Int - invited_players: team_invites_arr_rel_insert_input - kills: player_kills_arr_rel_insert_input - kills_by_weapons: player_kills_by_weapon_arr_rel_insert_input - language: String - last_read_news_at: timestamptz - last_sign_in_at: timestamptz - lobby_players: lobby_players_arr_rel_insert_input - match_map_hltv: v_player_match_map_hltv_arr_rel_insert_input - match_map_stats: player_match_map_stats_arr_rel_insert_input - match_stats: player_match_stats_v_arr_rel_insert_input - multi_kills: v_player_multi_kills_arr_rel_insert_input - name: String - name_registered: Boolean - notification_timezone: String - notifications: notifications_arr_rel_insert_input - objectives: player_objectives_arr_rel_insert_input - owned_teams: teams_arr_rel_insert_input - pending_match_imports: pending_match_import_players_arr_rel_insert_input - player_lineup: match_lineup_players_arr_rel_insert_input - player_unused_utilities: player_unused_utility_arr_rel_insert_input - premier_rank: Int - premier_rank_history: player_premier_rank_history_arr_rel_insert_input - premier_rank_updated_at: timestamptz - profile_url: String - quiet_hours_end: time - quiet_hours_start: time - role: e_player_roles_enum - roster_image_url: String - sanctions: player_sanctions_arr_rel_insert_input - season_stats: player_season_stats_arr_rel_insert_input - show_match_ready_modal: Boolean - stats: player_stats_obj_rel_insert_input - steam_bans_checked_at: timestamptz - steam_id: bigint - team_invites: team_invites_arr_rel_insert_input - team_members: team_roster_arr_rel_insert_input - tournament_organizers: tournament_organizers_arr_rel_insert_input - tournament_rosters: tournament_team_roster_arr_rel_insert_input - tournaments: tournaments_arr_rel_insert_input - utility_thrown: player_utility_arr_rel_insert_input - vac_ban_count: Int - vac_banned: Boolean - weapon_stats: player_weapon_stats_v_arr_rel_insert_input -} - -"""aggregate max on columns""" -type players_max_fields { - avatar_url: String - - """ - A computed field, executes function "banned_until" - """ - banned_until: timestamptz - country: String - created_at: timestamptz - - """ - A computed field, executes function "get_player_current_lobby_id" - """ - current_lobby_id: uuid - custom_avatar_url: String - days_since_last_ban: Int - discord_id: String - faceit_elo: Int - faceit_nickname: String - faceit_player_id: String - faceit_skill_level: Int - faceit_updated_at: timestamptz - faceit_url: String - game_ban_count: Int - language: String - last_read_news_at: timestamptz - last_sign_in_at: timestamptz - - """ - A computed field, executes function "get_total_player_losses" - """ - losses: Int - - """ - A computed field, executes function "get_total_player_losses_competitive" - """ - losses_competitive: Int - - """ - A computed field, executes function "get_total_player_losses_duel" - """ - losses_duel: Int - - """ - A computed field, executes function "get_total_player_losses_wingman" - """ - losses_wingman: Int - - """ - A computed field, executes function "get_player_matchmaking_cooldown" - """ - matchmaking_cooldown: timestamptz - name: String - notification_timezone: String - premier_rank: Int - premier_rank_updated_at: timestamptz - profile_url: String - roster_image_url: String - steam_bans_checked_at: timestamptz - steam_id: bigint - - """ - A computed field, executes function "get_total_player_matches" - """ - total_matches: Int - - """ - A computed field, executes function "get_player_tournament_cooldown" - """ - tournament_cooldown: timestamptz - vac_ban_count: Int - - """ - A computed field, executes function "get_total_player_wins" - """ - wins: Int - - """ - A computed field, executes function "get_total_player_wins_competitive" - """ - wins_competitive: Int - - """ - A computed field, executes function "get_total_player_wins_duel" - """ - wins_duel: Int - - """ - A computed field, executes function "get_total_player_wins_wingman" - """ - wins_wingman: Int -} - -"""aggregate min on columns""" -type players_min_fields { - avatar_url: String - - """ - A computed field, executes function "banned_until" - """ - banned_until: timestamptz - country: String - created_at: timestamptz - - """ - A computed field, executes function "get_player_current_lobby_id" - """ - current_lobby_id: uuid - custom_avatar_url: String - days_since_last_ban: Int - discord_id: String - faceit_elo: Int - faceit_nickname: String - faceit_player_id: String - faceit_skill_level: Int - faceit_updated_at: timestamptz - faceit_url: String - game_ban_count: Int - language: String - last_read_news_at: timestamptz - last_sign_in_at: timestamptz - - """ - A computed field, executes function "get_total_player_losses" - """ - losses: Int - - """ - A computed field, executes function "get_total_player_losses_competitive" - """ - losses_competitive: Int - - """ - A computed field, executes function "get_total_player_losses_duel" - """ - losses_duel: Int - - """ - A computed field, executes function "get_total_player_losses_wingman" - """ - losses_wingman: Int - - """ - A computed field, executes function "get_player_matchmaking_cooldown" - """ - matchmaking_cooldown: timestamptz - name: String - notification_timezone: String - premier_rank: Int - premier_rank_updated_at: timestamptz - profile_url: String - roster_image_url: String - steam_bans_checked_at: timestamptz - steam_id: bigint - - """ - A computed field, executes function "get_total_player_matches" - """ - total_matches: Int - - """ - A computed field, executes function "get_player_tournament_cooldown" - """ - tournament_cooldown: timestamptz - vac_ban_count: Int - - """ - A computed field, executes function "get_total_player_wins" - """ - wins: Int - - """ - A computed field, executes function "get_total_player_wins_competitive" - """ - wins_competitive: Int - - """ - A computed field, executes function "get_total_player_wins_duel" - """ - wins_duel: Int - - """ - A computed field, executes function "get_total_player_wins_wingman" - """ - wins_wingman: Int -} - -""" -response of any mutation on the table "players" -""" -type players_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [players!]! -} - -""" -input type for inserting object relation for remote table "players" -""" -input players_obj_rel_insert_input { - data: players_insert_input! - - """upsert condition""" - on_conflict: players_on_conflict -} - -""" -on_conflict condition type for table "players" -""" -input players_on_conflict { - constraint: players_constraint! - update_columns: [players_update_column!]! = [] - where: players_bool_exp -} - -"""Ordering options when selecting data from "players".""" -input players_order_by { - abandoned_matches_aggregate: abandoned_matches_aggregate_order_by - aim_weapon_stats_aggregate: player_aim_weapon_stats_aggregate_order_by - assists_aggregate: player_assists_aggregate_order_by - assited_by_players_aggregate: player_assists_aggregate_order_by - avatar_url: order_by - awards_aggregate: award_recipients_aggregate_order_by - banned_until: order_by - coach_lineups_aggregate: match_lineups_aggregate_order_by - country: order_by - created_at: order_by - current_lobby_id: order_by - custom_avatar_url: order_by - damage_dealt_aggregate: player_damages_aggregate_order_by - damage_taken_aggregate: player_damages_aggregate_order_by - days_since_last_ban: order_by - deaths_aggregate: player_kills_aggregate_order_by - discord_id: order_by - draft_game_players_aggregate: draft_game_players_aggregate_order_by - elo: order_by - elo_history_aggregate: v_player_elo_aggregate_order_by - faceit_elo: order_by - faceit_nickname: order_by - faceit_player_id: order_by - faceit_rank_history_aggregate: player_faceit_rank_history_aggregate_order_by - faceit_skill_level: order_by - faceit_updated_at: order_by - faceit_url: order_by - flashed_by_players_aggregate: player_flashes_aggregate_order_by - flashed_players_aggregate: player_flashes_aggregate_order_by - friends_aggregate: my_friends_aggregate_order_by - game_ban_count: order_by - invited_players_aggregate: team_invites_aggregate_order_by - is_admin_sanctioned: order_by - is_banned: order_by - is_gagged: order_by - is_in_another_match: order_by - is_in_draft: order_by - is_in_lobby: order_by - is_muted: order_by - is_registered: order_by - kills_aggregate: player_kills_aggregate_order_by - kills_by_weapons_aggregate: player_kills_by_weapon_aggregate_order_by - language: order_by - last_read_news_at: order_by - last_sign_in_at: order_by - lobby_players_aggregate: lobby_players_aggregate_order_by - losses: order_by - losses_competitive: order_by - losses_duel: order_by - losses_wingman: order_by - match_map_hltv_aggregate: v_player_match_map_hltv_aggregate_order_by - match_map_stats_aggregate: player_match_map_stats_aggregate_order_by - match_stats_aggregate: player_match_stats_v_aggregate_order_by - matches_aggregate: matches_aggregate_order_by - matchmaking_cooldown: order_by - multi_kills_aggregate: v_player_multi_kills_aggregate_order_by - name: order_by - name_registered: order_by - notification_timezone: order_by - notifications_aggregate: notifications_aggregate_order_by - objectives_aggregate: player_objectives_aggregate_order_by - owned_teams_aggregate: teams_aggregate_order_by - peak_elo: order_by - pending_match_imports_aggregate: pending_match_import_players_aggregate_order_by - player_lineup_aggregate: match_lineup_players_aggregate_order_by - player_unused_utilities_aggregate: player_unused_utility_aggregate_order_by - premier_rank: order_by - premier_rank_history_aggregate: player_premier_rank_history_aggregate_order_by - premier_rank_updated_at: order_by - profile_url: order_by - quiet_hours_end: order_by - quiet_hours_start: order_by - role: order_by - roster_image_url: order_by - sanctions_aggregate: player_sanctions_aggregate_order_by - season_stats_aggregate: player_season_stats_aggregate_order_by - show_match_ready_modal: order_by - stats: player_stats_order_by - steam_bans_checked_at: order_by - steam_id: order_by - team_invites_aggregate: team_invites_aggregate_order_by - team_members_aggregate: team_roster_aggregate_order_by - teams_aggregate: teams_aggregate_order_by - total_matches: order_by - tournament_cooldown: order_by - tournament_organizers_aggregate: tournament_organizers_aggregate_order_by - tournament_rosters_aggregate: tournament_team_roster_aggregate_order_by - tournaments_aggregate: tournaments_aggregate_order_by - utility_thrown_aggregate: player_utility_aggregate_order_by - vac_ban_count: order_by - vac_banned: order_by - weapon_stats_aggregate: player_weapon_stats_v_aggregate_order_by - wins: order_by - wins_competitive: order_by - wins_duel: order_by - wins_wingman: order_by -} - -"""primary key columns input for table: players""" -input players_pk_columns_input { - steam_id: bigint! -} - -""" -select columns of table "players" -""" -enum players_select_column { - """column name""" - avatar_url - - """column name""" - country - - """column name""" - created_at - - """column name""" - custom_avatar_url - - """column name""" - days_since_last_ban - - """column name""" - discord_id - - """column name""" - faceit_elo - - """column name""" - faceit_nickname - - """column name""" - faceit_player_id - - """column name""" - faceit_skill_level - - """column name""" - faceit_updated_at - - """column name""" - faceit_url - - """column name""" - game_ban_count - - """column name""" - language - - """column name""" - last_read_news_at - - """column name""" - last_sign_in_at - - """column name""" - name - - """column name""" - name_registered - - """column name""" - notification_timezone - - """column name""" - premier_rank - - """column name""" - premier_rank_updated_at - - """column name""" - profile_url - - """column name""" - quiet_hours_end - - """column name""" - quiet_hours_start - - """column name""" - role - - """column name""" - roster_image_url - - """column name""" - show_match_ready_modal - - """column name""" - steam_bans_checked_at - - """column name""" - steam_id - - """column name""" - vac_ban_count - - """column name""" - vac_banned -} - -""" -input type for updating data in table "players" -""" -input players_set_input { - avatar_url: String - country: String - created_at: timestamptz - custom_avatar_url: String - days_since_last_ban: Int - discord_id: String - faceit_elo: Int - faceit_nickname: String - faceit_player_id: String - faceit_skill_level: Int - faceit_updated_at: timestamptz - faceit_url: String - game_ban_count: Int - language: String - last_read_news_at: timestamptz - last_sign_in_at: timestamptz - name: String - name_registered: Boolean - notification_timezone: String - premier_rank: Int - premier_rank_updated_at: timestamptz - profile_url: String - quiet_hours_end: time - quiet_hours_start: time - role: e_player_roles_enum - roster_image_url: String - show_match_ready_modal: Boolean - steam_bans_checked_at: timestamptz - steam_id: bigint - vac_ban_count: Int - vac_banned: Boolean -} - -"""aggregate stddev on columns""" -type players_stddev_fields { - days_since_last_ban: Float - faceit_elo: Float - faceit_skill_level: Float - game_ban_count: Float - - """ - A computed field, executes function "get_total_player_losses" - """ - losses: Int - - """ - A computed field, executes function "get_total_player_losses_competitive" - """ - losses_competitive: Int - - """ - A computed field, executes function "get_total_player_losses_duel" - """ - losses_duel: Int - - """ - A computed field, executes function "get_total_player_losses_wingman" - """ - losses_wingman: Int - premier_rank: Float - steam_id: Float - - """ - A computed field, executes function "get_total_player_matches" - """ - total_matches: Int - vac_ban_count: Float - - """ - A computed field, executes function "get_total_player_wins" - """ - wins: Int - - """ - A computed field, executes function "get_total_player_wins_competitive" - """ - wins_competitive: Int - - """ - A computed field, executes function "get_total_player_wins_duel" - """ - wins_duel: Int - - """ - A computed field, executes function "get_total_player_wins_wingman" - """ - wins_wingman: Int -} - -"""aggregate stddev_pop on columns""" -type players_stddev_pop_fields { - days_since_last_ban: Float - faceit_elo: Float - faceit_skill_level: Float - game_ban_count: Float - - """ - A computed field, executes function "get_total_player_losses" - """ - losses: Int - - """ - A computed field, executes function "get_total_player_losses_competitive" - """ - losses_competitive: Int - - """ - A computed field, executes function "get_total_player_losses_duel" - """ - losses_duel: Int - - """ - A computed field, executes function "get_total_player_losses_wingman" - """ - losses_wingman: Int - premier_rank: Float - steam_id: Float - - """ - A computed field, executes function "get_total_player_matches" - """ - total_matches: Int - vac_ban_count: Float - - """ - A computed field, executes function "get_total_player_wins" - """ - wins: Int - - """ - A computed field, executes function "get_total_player_wins_competitive" - """ - wins_competitive: Int - - """ - A computed field, executes function "get_total_player_wins_duel" - """ - wins_duel: Int - - """ - A computed field, executes function "get_total_player_wins_wingman" - """ - wins_wingman: Int -} - -"""aggregate stddev_samp on columns""" -type players_stddev_samp_fields { - days_since_last_ban: Float - faceit_elo: Float - faceit_skill_level: Float - game_ban_count: Float - - """ - A computed field, executes function "get_total_player_losses" - """ - losses: Int - - """ - A computed field, executes function "get_total_player_losses_competitive" - """ - losses_competitive: Int - - """ - A computed field, executes function "get_total_player_losses_duel" - """ - losses_duel: Int - - """ - A computed field, executes function "get_total_player_losses_wingman" - """ - losses_wingman: Int - premier_rank: Float - steam_id: Float - - """ - A computed field, executes function "get_total_player_matches" - """ - total_matches: Int - vac_ban_count: Float - - """ - A computed field, executes function "get_total_player_wins" - """ - wins: Int - - """ - A computed field, executes function "get_total_player_wins_competitive" - """ - wins_competitive: Int - - """ - A computed field, executes function "get_total_player_wins_duel" - """ - wins_duel: Int - - """ - A computed field, executes function "get_total_player_wins_wingman" - """ - wins_wingman: Int -} - -""" -Streaming cursor of the table "players" -""" -input players_stream_cursor_input { - """Stream column input with initial value""" - initial_value: players_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input players_stream_cursor_value_input { - avatar_url: String - country: String - created_at: timestamptz - custom_avatar_url: String - days_since_last_ban: Int - discord_id: String - faceit_elo: Int - faceit_nickname: String - faceit_player_id: String - faceit_skill_level: Int - faceit_updated_at: timestamptz - faceit_url: String - game_ban_count: Int - language: String - last_read_news_at: timestamptz - last_sign_in_at: timestamptz - name: String - name_registered: Boolean - notification_timezone: String - premier_rank: Int - premier_rank_updated_at: timestamptz - profile_url: String - quiet_hours_end: time - quiet_hours_start: time - role: e_player_roles_enum - roster_image_url: String - show_match_ready_modal: Boolean - steam_bans_checked_at: timestamptz - steam_id: bigint - vac_ban_count: Int - vac_banned: Boolean -} - -"""aggregate sum on columns""" -type players_sum_fields { - days_since_last_ban: Int - faceit_elo: Int - faceit_skill_level: Int - game_ban_count: Int - - """ - A computed field, executes function "get_total_player_losses" - """ - losses: Int - - """ - A computed field, executes function "get_total_player_losses_competitive" - """ - losses_competitive: Int - - """ - A computed field, executes function "get_total_player_losses_duel" - """ - losses_duel: Int - - """ - A computed field, executes function "get_total_player_losses_wingman" - """ - losses_wingman: Int - premier_rank: Int - steam_id: bigint - - """ - A computed field, executes function "get_total_player_matches" - """ - total_matches: Int - vac_ban_count: Int - - """ - A computed field, executes function "get_total_player_wins" - """ - wins: Int - - """ - A computed field, executes function "get_total_player_wins_competitive" - """ - wins_competitive: Int - - """ - A computed field, executes function "get_total_player_wins_duel" - """ - wins_duel: Int - - """ - A computed field, executes function "get_total_player_wins_wingman" - """ - wins_wingman: Int -} - -""" -update columns of table "players" -""" -enum players_update_column { - """column name""" - avatar_url - - """column name""" - country - - """column name""" - created_at - - """column name""" - custom_avatar_url - - """column name""" - days_since_last_ban - - """column name""" - discord_id - - """column name""" - faceit_elo - - """column name""" - faceit_nickname - - """column name""" - faceit_player_id - - """column name""" - faceit_skill_level - - """column name""" - faceit_updated_at - - """column name""" - faceit_url - - """column name""" - game_ban_count - - """column name""" - language - - """column name""" - last_read_news_at - - """column name""" - last_sign_in_at - - """column name""" - name - - """column name""" - name_registered - - """column name""" - notification_timezone - - """column name""" - premier_rank - - """column name""" - premier_rank_updated_at - - """column name""" - profile_url - - """column name""" - quiet_hours_end - - """column name""" - quiet_hours_start - - """column name""" - role - - """column name""" - roster_image_url - - """column name""" - show_match_ready_modal - - """column name""" - steam_bans_checked_at - - """column name""" - steam_id - - """column name""" - vac_ban_count - - """column name""" - vac_banned -} - -input players_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: players_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: players_set_input - - """filter the rows which have to be updated""" - where: players_bool_exp! -} - -"""aggregate var_pop on columns""" -type players_var_pop_fields { - days_since_last_ban: Float - faceit_elo: Float - faceit_skill_level: Float - game_ban_count: Float - - """ - A computed field, executes function "get_total_player_losses" - """ - losses: Int - - """ - A computed field, executes function "get_total_player_losses_competitive" - """ - losses_competitive: Int - - """ - A computed field, executes function "get_total_player_losses_duel" - """ - losses_duel: Int - - """ - A computed field, executes function "get_total_player_losses_wingman" - """ - losses_wingman: Int - premier_rank: Float - steam_id: Float - - """ - A computed field, executes function "get_total_player_matches" - """ - total_matches: Int - vac_ban_count: Float - - """ - A computed field, executes function "get_total_player_wins" - """ - wins: Int - - """ - A computed field, executes function "get_total_player_wins_competitive" - """ - wins_competitive: Int - - """ - A computed field, executes function "get_total_player_wins_duel" - """ - wins_duel: Int - - """ - A computed field, executes function "get_total_player_wins_wingman" - """ - wins_wingman: Int -} - -"""aggregate var_samp on columns""" -type players_var_samp_fields { - days_since_last_ban: Float - faceit_elo: Float - faceit_skill_level: Float - game_ban_count: Float - - """ - A computed field, executes function "get_total_player_losses" - """ - losses: Int - - """ - A computed field, executes function "get_total_player_losses_competitive" - """ - losses_competitive: Int - - """ - A computed field, executes function "get_total_player_losses_duel" - """ - losses_duel: Int - - """ - A computed field, executes function "get_total_player_losses_wingman" - """ - losses_wingman: Int - premier_rank: Float - steam_id: Float - - """ - A computed field, executes function "get_total_player_matches" - """ - total_matches: Int - vac_ban_count: Float - - """ - A computed field, executes function "get_total_player_wins" - """ - wins: Int - - """ - A computed field, executes function "get_total_player_wins_competitive" - """ - wins_competitive: Int - - """ - A computed field, executes function "get_total_player_wins_duel" - """ - wins_duel: Int - - """ - A computed field, executes function "get_total_player_wins_wingman" - """ - wins_wingman: Int -} - -"""aggregate variance on columns""" -type players_variance_fields { - days_since_last_ban: Float - faceit_elo: Float - faceit_skill_level: Float - game_ban_count: Float - - """ - A computed field, executes function "get_total_player_losses" - """ - losses: Int - - """ - A computed field, executes function "get_total_player_losses_competitive" - """ - losses_competitive: Int - - """ - A computed field, executes function "get_total_player_losses_duel" - """ - losses_duel: Int - - """ - A computed field, executes function "get_total_player_losses_wingman" - """ - losses_wingman: Int - premier_rank: Float - steam_id: Float - - """ - A computed field, executes function "get_total_player_matches" - """ - total_matches: Int - vac_ban_count: Float - - """ - A computed field, executes function "get_total_player_wins" - """ - wins: Int - - """ - A computed field, executes function "get_total_player_wins_competitive" - """ - wins_competitive: Int - - """ - A computed field, executes function "get_total_player_wins_duel" - """ - wins_duel: Int - - """ - A computed field, executes function "get_total_player_wins_wingman" - """ - wins_wingman: Int -} - -""" -columns and relationships of "plugin_versions" -""" -type plugin_versions { - min_game_build_id: Int - published_at: timestamptz! - runtime: e_plugin_runtimes_enum! - version: String! -} - -""" -aggregated selection of "plugin_versions" -""" -type plugin_versions_aggregate { - aggregate: plugin_versions_aggregate_fields - nodes: [plugin_versions!]! -} - -""" -aggregate fields of "plugin_versions" -""" -type plugin_versions_aggregate_fields { - avg: plugin_versions_avg_fields - count(columns: [plugin_versions_select_column!], distinct: Boolean): Int! - max: plugin_versions_max_fields - min: plugin_versions_min_fields - stddev: plugin_versions_stddev_fields - stddev_pop: plugin_versions_stddev_pop_fields - stddev_samp: plugin_versions_stddev_samp_fields - sum: plugin_versions_sum_fields - var_pop: plugin_versions_var_pop_fields - var_samp: plugin_versions_var_samp_fields - variance: plugin_versions_variance_fields -} - -"""aggregate avg on columns""" -type plugin_versions_avg_fields { - min_game_build_id: Float -} - -""" -Boolean expression to filter rows from the table "plugin_versions". All fields are combined with a logical 'AND'. -""" -input plugin_versions_bool_exp { - _and: [plugin_versions_bool_exp!] - _not: plugin_versions_bool_exp - _or: [plugin_versions_bool_exp!] - min_game_build_id: Int_comparison_exp - published_at: timestamptz_comparison_exp - runtime: e_plugin_runtimes_enum_comparison_exp - version: String_comparison_exp -} - -""" -unique or primary key constraints on table "plugin_versions" -""" -enum plugin_versions_constraint { - """ - unique or primary key constraint on columns "version", "runtime" - """ - plugin_versions_pkey -} - -""" -input type for incrementing numeric columns in table "plugin_versions" -""" -input plugin_versions_inc_input { - min_game_build_id: Int -} - -""" -input type for inserting data into table "plugin_versions" -""" -input plugin_versions_insert_input { - min_game_build_id: Int - published_at: timestamptz - runtime: e_plugin_runtimes_enum - version: String -} - -"""aggregate max on columns""" -type plugin_versions_max_fields { - min_game_build_id: Int - published_at: timestamptz - version: String -} - -"""aggregate min on columns""" -type plugin_versions_min_fields { - min_game_build_id: Int - published_at: timestamptz - version: String -} - -""" -response of any mutation on the table "plugin_versions" -""" -type plugin_versions_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [plugin_versions!]! -} - -""" -on_conflict condition type for table "plugin_versions" -""" -input plugin_versions_on_conflict { - constraint: plugin_versions_constraint! - update_columns: [plugin_versions_update_column!]! = [] - where: plugin_versions_bool_exp -} - -"""Ordering options when selecting data from "plugin_versions".""" -input plugin_versions_order_by { - min_game_build_id: order_by - published_at: order_by - runtime: order_by - version: order_by -} - -"""primary key columns input for table: plugin_versions""" -input plugin_versions_pk_columns_input { - runtime: e_plugin_runtimes_enum! - version: String! -} - -""" -select columns of table "plugin_versions" -""" -enum plugin_versions_select_column { - """column name""" - min_game_build_id - - """column name""" - published_at - - """column name""" - runtime - - """column name""" - version -} - -""" -input type for updating data in table "plugin_versions" -""" -input plugin_versions_set_input { - min_game_build_id: Int - published_at: timestamptz - runtime: e_plugin_runtimes_enum - version: String -} - -"""aggregate stddev on columns""" -type plugin_versions_stddev_fields { - min_game_build_id: Float -} - -"""aggregate stddev_pop on columns""" -type plugin_versions_stddev_pop_fields { - min_game_build_id: Float -} - -"""aggregate stddev_samp on columns""" -type plugin_versions_stddev_samp_fields { - min_game_build_id: Float -} - -""" -Streaming cursor of the table "plugin_versions" -""" -input plugin_versions_stream_cursor_input { - """Stream column input with initial value""" - initial_value: plugin_versions_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input plugin_versions_stream_cursor_value_input { - min_game_build_id: Int - published_at: timestamptz - runtime: e_plugin_runtimes_enum - version: String -} - -"""aggregate sum on columns""" -type plugin_versions_sum_fields { - min_game_build_id: Int -} - -""" -update columns of table "plugin_versions" -""" -enum plugin_versions_update_column { - """column name""" - min_game_build_id - - """column name""" - published_at - - """column name""" - runtime - - """column name""" - version -} - -input plugin_versions_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: plugin_versions_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: plugin_versions_set_input - - """filter the rows which have to be updated""" - where: plugin_versions_bool_exp! -} - -"""aggregate var_pop on columns""" -type plugin_versions_var_pop_fields { - min_game_build_id: Float -} - -"""aggregate var_samp on columns""" -type plugin_versions_var_samp_fields { - min_game_build_id: Float -} - -"""aggregate variance on columns""" -type plugin_versions_variance_fields { - min_game_build_id: Float -} - -""" -columns and relationships of "push_subscriptions" -""" -type push_subscriptions { - auth: String! - created_at: timestamptz! - endpoint: String! - id: uuid! - last_used_at: timestamptz - p256dh: String! - steam_id: bigint! - user_agent: String -} - -""" -aggregated selection of "push_subscriptions" -""" -type push_subscriptions_aggregate { - aggregate: push_subscriptions_aggregate_fields - nodes: [push_subscriptions!]! -} - -""" -aggregate fields of "push_subscriptions" -""" -type push_subscriptions_aggregate_fields { - avg: push_subscriptions_avg_fields - count(columns: [push_subscriptions_select_column!], distinct: Boolean): Int! - max: push_subscriptions_max_fields - min: push_subscriptions_min_fields - stddev: push_subscriptions_stddev_fields - stddev_pop: push_subscriptions_stddev_pop_fields - stddev_samp: push_subscriptions_stddev_samp_fields - sum: push_subscriptions_sum_fields - var_pop: push_subscriptions_var_pop_fields - var_samp: push_subscriptions_var_samp_fields - variance: push_subscriptions_variance_fields -} - -"""aggregate avg on columns""" -type push_subscriptions_avg_fields { - steam_id: Float -} - -""" -Boolean expression to filter rows from the table "push_subscriptions". All fields are combined with a logical 'AND'. -""" -input push_subscriptions_bool_exp { - _and: [push_subscriptions_bool_exp!] - _not: push_subscriptions_bool_exp - _or: [push_subscriptions_bool_exp!] - auth: String_comparison_exp - created_at: timestamptz_comparison_exp - endpoint: String_comparison_exp - id: uuid_comparison_exp - last_used_at: timestamptz_comparison_exp - p256dh: String_comparison_exp - steam_id: bigint_comparison_exp - user_agent: String_comparison_exp -} - -""" -unique or primary key constraints on table "push_subscriptions" -""" -enum push_subscriptions_constraint { - """ - unique or primary key constraint on columns "endpoint" - """ - push_subscriptions_endpoint_key - - """ - unique or primary key constraint on columns "id" - """ - push_subscriptions_pkey -} - -""" -input type for incrementing numeric columns in table "push_subscriptions" -""" -input push_subscriptions_inc_input { - steam_id: bigint -} - -""" -input type for inserting data into table "push_subscriptions" -""" -input push_subscriptions_insert_input { - auth: String - created_at: timestamptz - endpoint: String - id: uuid - last_used_at: timestamptz - p256dh: String - steam_id: bigint - user_agent: String -} - -"""aggregate max on columns""" -type push_subscriptions_max_fields { - auth: String - created_at: timestamptz - endpoint: String - id: uuid - last_used_at: timestamptz - p256dh: String - steam_id: bigint - user_agent: String -} - -"""aggregate min on columns""" -type push_subscriptions_min_fields { - auth: String - created_at: timestamptz - endpoint: String - id: uuid - last_used_at: timestamptz - p256dh: String - steam_id: bigint - user_agent: String -} - -""" -response of any mutation on the table "push_subscriptions" -""" -type push_subscriptions_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [push_subscriptions!]! -} - -""" -on_conflict condition type for table "push_subscriptions" -""" -input push_subscriptions_on_conflict { - constraint: push_subscriptions_constraint! - update_columns: [push_subscriptions_update_column!]! = [] - where: push_subscriptions_bool_exp -} - -"""Ordering options when selecting data from "push_subscriptions".""" -input push_subscriptions_order_by { - auth: order_by - created_at: order_by - endpoint: order_by - id: order_by - last_used_at: order_by - p256dh: order_by - steam_id: order_by - user_agent: order_by -} - -"""primary key columns input for table: push_subscriptions""" -input push_subscriptions_pk_columns_input { - id: uuid! -} - -""" -select columns of table "push_subscriptions" -""" -enum push_subscriptions_select_column { - """column name""" - auth - - """column name""" - created_at - - """column name""" - endpoint - - """column name""" - id - - """column name""" - last_used_at - - """column name""" - p256dh - - """column name""" - steam_id - - """column name""" - user_agent -} - -""" -input type for updating data in table "push_subscriptions" -""" -input push_subscriptions_set_input { - auth: String - created_at: timestamptz - endpoint: String - id: uuid - last_used_at: timestamptz - p256dh: String - steam_id: bigint - user_agent: String -} - -"""aggregate stddev on columns""" -type push_subscriptions_stddev_fields { - steam_id: Float -} - -"""aggregate stddev_pop on columns""" -type push_subscriptions_stddev_pop_fields { - steam_id: Float -} - -"""aggregate stddev_samp on columns""" -type push_subscriptions_stddev_samp_fields { - steam_id: Float -} - -""" -Streaming cursor of the table "push_subscriptions" -""" -input push_subscriptions_stream_cursor_input { - """Stream column input with initial value""" - initial_value: push_subscriptions_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input push_subscriptions_stream_cursor_value_input { - auth: String - created_at: timestamptz - endpoint: String - id: uuid - last_used_at: timestamptz - p256dh: String - steam_id: bigint - user_agent: String -} - -"""aggregate sum on columns""" -type push_subscriptions_sum_fields { - steam_id: bigint -} - -""" -update columns of table "push_subscriptions" -""" -enum push_subscriptions_update_column { - """column name""" - auth - - """column name""" - created_at - - """column name""" - endpoint - - """column name""" - id - - """column name""" - last_used_at - - """column name""" - p256dh - - """column name""" - steam_id - - """column name""" - user_agent -} - -input push_subscriptions_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: push_subscriptions_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: push_subscriptions_set_input - - """filter the rows which have to be updated""" - where: push_subscriptions_bool_exp! -} - -"""aggregate var_pop on columns""" -type push_subscriptions_var_pop_fields { - steam_id: Float -} - -"""aggregate var_samp on columns""" -type push_subscriptions_var_samp_fields { - steam_id: Float -} - -"""aggregate variance on columns""" -type push_subscriptions_variance_fields { - steam_id: Float -} - -type query_root { - """ - fetch data from the table: "_map_pool" - """ - _map_pool( - """distinct select on columns""" - distinct_on: [_map_pool_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: [_map_pool_order_by!] - - """filter the rows returned""" - where: _map_pool_bool_exp - ): [_map_pool!]! - - """ - fetch aggregated fields from the table: "_map_pool" - """ - _map_pool_aggregate( - """distinct select on columns""" - distinct_on: [_map_pool_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: [_map_pool_order_by!] - - """filter the rows returned""" - where: _map_pool_bool_exp - ): _map_pool_aggregate! - - """fetch data from the table: "_map_pool" using primary key columns""" - _map_pool_by_pk(map_id: uuid!, map_pool_id: uuid!): _map_pool - - """An array relationship""" - abandoned_matches( - """distinct select on columns""" - distinct_on: [abandoned_matches_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: [abandoned_matches_order_by!] - - """filter the rows returned""" - where: abandoned_matches_bool_exp - ): [abandoned_matches!]! - - """An aggregate relationship""" - abandoned_matches_aggregate( - """distinct select on columns""" - distinct_on: [abandoned_matches_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: [abandoned_matches_order_by!] - - """filter the rows returned""" - where: abandoned_matches_bool_exp - ): abandoned_matches_aggregate! - - """ - fetch data from the table: "abandoned_matches" using primary key columns - """ - abandoned_matches_by_pk(id: uuid!): abandoned_matches - - """Ask which sightlines a playbook's smokes leave open""" - analyseUtilityPlaybookCoverage(pairs: [UtilitySightlinePairInput!]!, playbook_id: uuid!): UtilityPlaybookCoverageOutput - - """ - fetch data from the table: "api_keys" - """ - api_keys( - """distinct select on columns""" - distinct_on: [api_keys_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: [api_keys_order_by!] - - """filter the rows returned""" - where: api_keys_bool_exp - ): [api_keys!]! - - """ - fetch aggregated fields from the table: "api_keys" - """ - api_keys_aggregate( - """distinct select on columns""" - distinct_on: [api_keys_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: [api_keys_order_by!] - - """filter the rows returned""" - where: api_keys_bool_exp - ): api_keys_aggregate! - - """fetch data from the table: "api_keys" using primary key columns""" - api_keys_by_pk(id: uuid!): api_keys - - """ - fetch data from the table: "award_recipients" - """ - award_recipients( - """distinct select on columns""" - distinct_on: [award_recipients_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: [award_recipients_order_by!] - - """filter the rows returned""" - where: award_recipients_bool_exp - ): [award_recipients!]! - - """ - fetch aggregated fields from the table: "award_recipients" - """ - award_recipients_aggregate( - """distinct select on columns""" - distinct_on: [award_recipients_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: [award_recipients_order_by!] - - """filter the rows returned""" - where: award_recipients_bool_exp - ): award_recipients_aggregate! - - """ - fetch data from the table: "award_recipients" using primary key columns - """ - award_recipients_by_pk(id: uuid!): award_recipients - - """ - fetch data from the table: "awards" - """ - awards( - """distinct select on columns""" - distinct_on: [awards_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: [awards_order_by!] - - """filter the rows returned""" - where: awards_bool_exp - ): [awards!]! - - """ - fetch aggregated fields from the table: "awards" - """ - awards_aggregate( - """distinct select on columns""" - distinct_on: [awards_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: [awards_order_by!] - - """filter the rows returned""" - where: awards_bool_exp - ): awards_aggregate! - - """fetch data from the table: "awards" using primary key columns""" - awards_by_pk(id: uuid!): awards - - """ - fetch data from the table: "chat_read_state" - """ - chat_read_state( - """distinct select on columns""" - distinct_on: [chat_read_state_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: [chat_read_state_order_by!] - - """filter the rows returned""" - where: chat_read_state_bool_exp - ): [chat_read_state!]! - - """ - fetch aggregated fields from the table: "chat_read_state" - """ - chat_read_state_aggregate( - """distinct select on columns""" - distinct_on: [chat_read_state_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: [chat_read_state_order_by!] - - """filter the rows returned""" - where: chat_read_state_bool_exp - ): chat_read_state_aggregate! - - """fetch data from the table: "chat_read_state" using primary key columns""" - chat_read_state_by_pk(steam_id: bigint!, thread: String!): chat_read_state - - """Ask whether a lineup's smoke makes an angle one-way""" - checkUtilityOneWay(lineup_id: uuid!, pairs: [UtilitySightlinePairInput!]!): UtilityOneWayOutput - - """Ask whether a lineup's smoke blocks a set of sightlines""" - checkUtilitySightlines(lineup_id: uuid!, pairs: [UtilitySightlinePairInput!]!, threshold: Float): UtilitySightlineOutput - - """An array relationship""" - clip_render_jobs( - """distinct select on columns""" - distinct_on: [clip_render_jobs_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: [clip_render_jobs_order_by!] - - """filter the rows returned""" - where: clip_render_jobs_bool_exp - ): [clip_render_jobs!]! - - """An aggregate relationship""" - clip_render_jobs_aggregate( - """distinct select on columns""" - distinct_on: [clip_render_jobs_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: [clip_render_jobs_order_by!] - - """filter the rows returned""" - where: clip_render_jobs_bool_exp - ): clip_render_jobs_aggregate! - - """ - fetch data from the table: "clip_render_jobs" using primary key columns - """ - clip_render_jobs_by_pk(id: uuid!): clip_render_jobs - - """ - fetch data from the table: "custom_pages" - """ - custom_pages( - """distinct select on columns""" - distinct_on: [custom_pages_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [custom_pages_order_by!] - - """filter the rows returned""" - where: custom_pages_bool_exp - ): [custom_pages!]! - - """ - fetch aggregated fields from the table: "custom_pages" - """ - custom_pages_aggregate( - """distinct select on columns""" - distinct_on: [custom_pages_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [custom_pages_order_by!] - - """filter the rows returned""" - where: custom_pages_bool_exp - ): custom_pages_aggregate! - - """fetch data from the table: "custom_pages" using primary key columns""" - custom_pages_by_pk(id: uuid!): custom_pages - dbStats: [DbStats] - - """ - fetch data from the table: "db_backups" - """ - db_backups( - """distinct select on columns""" - distinct_on: [db_backups_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: [db_backups_order_by!] - - """filter the rows returned""" - where: db_backups_bool_exp - ): [db_backups!]! - - """ - fetch aggregated fields from the table: "db_backups" - """ - db_backups_aggregate( - """distinct select on columns""" - distinct_on: [db_backups_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: [db_backups_order_by!] - - """filter the rows returned""" - where: db_backups_bool_exp - ): db_backups_aggregate! - - """fetch data from the table: "db_backups" using primary key columns""" - db_backups_by_pk(id: uuid!): db_backups - - """ - fetch data from the table: "direct_conversations" - """ - direct_conversations( - """distinct select on columns""" - distinct_on: [direct_conversations_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: [direct_conversations_order_by!] - - """filter the rows returned""" - where: direct_conversations_bool_exp - ): [direct_conversations!]! - - """ - fetch aggregated fields from the table: "direct_conversations" - """ - direct_conversations_aggregate( - """distinct select on columns""" - distinct_on: [direct_conversations_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: [direct_conversations_order_by!] - - """filter the rows returned""" - where: direct_conversations_bool_exp - ): direct_conversations_aggregate! - - """ - fetch data from the table: "direct_conversations" using primary key columns - """ - direct_conversations_by_pk(room_id: String!, steam_id: bigint!): direct_conversations - - """ - fetch data from the table: "direct_messages" - """ - direct_messages( - """distinct select on columns""" - distinct_on: [direct_messages_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: [direct_messages_order_by!] - - """filter the rows returned""" - where: direct_messages_bool_exp - ): [direct_messages!]! - - """ - fetch aggregated fields from the table: "direct_messages" - """ - direct_messages_aggregate( - """distinct select on columns""" - distinct_on: [direct_messages_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: [direct_messages_order_by!] - - """filter the rows returned""" - where: direct_messages_bool_exp - ): direct_messages_aggregate! - - """fetch data from the table: "direct_messages" using primary key columns""" - direct_messages_by_pk(id: uuid!): direct_messages - - """ - fetch data from the table: "draft_game_picks" - """ - draft_game_picks( - """distinct select on columns""" - distinct_on: [draft_game_picks_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [draft_game_picks_order_by!] - - """filter the rows returned""" - where: draft_game_picks_bool_exp - ): [draft_game_picks!]! - - """ - fetch aggregated fields from the table: "draft_game_picks" - """ - draft_game_picks_aggregate( - """distinct select on columns""" - distinct_on: [draft_game_picks_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [draft_game_picks_order_by!] - - """filter the rows returned""" - where: draft_game_picks_bool_exp - ): draft_game_picks_aggregate! - - """ - fetch data from the table: "draft_game_picks" using primary key columns - """ - draft_game_picks_by_pk(id: uuid!): draft_game_picks - - """An array relationship""" - draft_game_players( - """distinct select on columns""" - distinct_on: [draft_game_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [draft_game_players_order_by!] - - """filter the rows returned""" - where: draft_game_players_bool_exp - ): [draft_game_players!]! - - """An aggregate relationship""" - draft_game_players_aggregate( - """distinct select on columns""" - distinct_on: [draft_game_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [draft_game_players_order_by!] - - """filter the rows returned""" - where: draft_game_players_bool_exp - ): draft_game_players_aggregate! - - """ - fetch data from the table: "draft_game_players" using primary key columns - """ - draft_game_players_by_pk(draft_game_id: uuid!, steam_id: bigint!): draft_game_players - - """An array relationship""" - draft_games( - """distinct select on columns""" - distinct_on: [draft_games_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: [draft_games_order_by!] - - """filter the rows returned""" - where: draft_games_bool_exp - ): [draft_games!]! - - """An aggregate relationship""" - draft_games_aggregate( - """distinct select on columns""" - distinct_on: [draft_games_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: [draft_games_order_by!] - - """filter the rows returned""" - where: draft_games_bool_exp - ): draft_games_aggregate! - - """fetch data from the table: "draft_games" using primary key columns""" - draft_games_by_pk(id: uuid!): draft_games - - """ - fetch data from the table: "e_award_sources" - """ - e_award_sources( - """distinct select on columns""" - distinct_on: [e_award_sources_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_award_sources_order_by!] - - """filter the rows returned""" - where: e_award_sources_bool_exp - ): [e_award_sources!]! - - """ - fetch aggregated fields from the table: "e_award_sources" - """ - e_award_sources_aggregate( - """distinct select on columns""" - distinct_on: [e_award_sources_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_award_sources_order_by!] - - """filter the rows returned""" - where: e_award_sources_bool_exp - ): e_award_sources_aggregate! - - """fetch data from the table: "e_award_sources" using primary key columns""" - e_award_sources_by_pk(value: String!): e_award_sources - - """ - fetch data from the table: "e_award_tiers" - """ - e_award_tiers( - """distinct select on columns""" - distinct_on: [e_award_tiers_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_award_tiers_order_by!] - - """filter the rows returned""" - where: e_award_tiers_bool_exp - ): [e_award_tiers!]! - - """ - fetch aggregated fields from the table: "e_award_tiers" - """ - e_award_tiers_aggregate( - """distinct select on columns""" - distinct_on: [e_award_tiers_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_award_tiers_order_by!] - - """filter the rows returned""" - where: e_award_tiers_bool_exp - ): e_award_tiers_aggregate! - - """fetch data from the table: "e_award_tiers" using primary key columns""" - e_award_tiers_by_pk(value: String!): e_award_tiers - - """ - fetch data from the table: "e_check_in_settings" - """ - e_check_in_settings( - """distinct select on columns""" - distinct_on: [e_check_in_settings_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_check_in_settings_order_by!] - - """filter the rows returned""" - where: e_check_in_settings_bool_exp - ): [e_check_in_settings!]! - - """ - fetch aggregated fields from the table: "e_check_in_settings" - """ - e_check_in_settings_aggregate( - """distinct select on columns""" - distinct_on: [e_check_in_settings_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_check_in_settings_order_by!] - - """filter the rows returned""" - where: e_check_in_settings_bool_exp - ): e_check_in_settings_aggregate! - - """ - fetch data from the table: "e_check_in_settings" using primary key columns - """ - e_check_in_settings_by_pk(value: String!): e_check_in_settings - - """ - fetch data from the table: "e_draft_game_captain_selection" - """ - e_draft_game_captain_selection( - """distinct select on columns""" - distinct_on: [e_draft_game_captain_selection_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_draft_game_captain_selection_order_by!] - - """filter the rows returned""" - where: e_draft_game_captain_selection_bool_exp - ): [e_draft_game_captain_selection!]! - - """ - fetch aggregated fields from the table: "e_draft_game_captain_selection" - """ - e_draft_game_captain_selection_aggregate( - """distinct select on columns""" - distinct_on: [e_draft_game_captain_selection_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_draft_game_captain_selection_order_by!] - - """filter the rows returned""" - where: e_draft_game_captain_selection_bool_exp - ): e_draft_game_captain_selection_aggregate! - - """ - fetch data from the table: "e_draft_game_captain_selection" using primary key columns - """ - e_draft_game_captain_selection_by_pk(value: String!): e_draft_game_captain_selection - - """ - fetch data from the table: "e_draft_game_draft_order" - """ - e_draft_game_draft_order( - """distinct select on columns""" - distinct_on: [e_draft_game_draft_order_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_draft_game_draft_order_order_by!] - - """filter the rows returned""" - where: e_draft_game_draft_order_bool_exp - ): [e_draft_game_draft_order!]! - - """ - fetch aggregated fields from the table: "e_draft_game_draft_order" - """ - e_draft_game_draft_order_aggregate( - """distinct select on columns""" - distinct_on: [e_draft_game_draft_order_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_draft_game_draft_order_order_by!] - - """filter the rows returned""" - where: e_draft_game_draft_order_bool_exp - ): e_draft_game_draft_order_aggregate! - - """ - fetch data from the table: "e_draft_game_draft_order" using primary key columns - """ - e_draft_game_draft_order_by_pk(value: String!): e_draft_game_draft_order - - """ - fetch data from the table: "e_draft_game_mode" - """ - e_draft_game_mode( - """distinct select on columns""" - distinct_on: [e_draft_game_mode_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_draft_game_mode_order_by!] - - """filter the rows returned""" - where: e_draft_game_mode_bool_exp - ): [e_draft_game_mode!]! - - """ - fetch aggregated fields from the table: "e_draft_game_mode" - """ - e_draft_game_mode_aggregate( - """distinct select on columns""" - distinct_on: [e_draft_game_mode_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_draft_game_mode_order_by!] - - """filter the rows returned""" - where: e_draft_game_mode_bool_exp - ): e_draft_game_mode_aggregate! - - """ - fetch data from the table: "e_draft_game_mode" using primary key columns - """ - e_draft_game_mode_by_pk(value: String!): e_draft_game_mode - - """ - fetch data from the table: "e_draft_game_player_status" - """ - e_draft_game_player_status( - """distinct select on columns""" - distinct_on: [e_draft_game_player_status_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_draft_game_player_status_order_by!] - - """filter the rows returned""" - where: e_draft_game_player_status_bool_exp - ): [e_draft_game_player_status!]! - - """ - fetch aggregated fields from the table: "e_draft_game_player_status" - """ - e_draft_game_player_status_aggregate( - """distinct select on columns""" - distinct_on: [e_draft_game_player_status_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_draft_game_player_status_order_by!] - - """filter the rows returned""" - where: e_draft_game_player_status_bool_exp - ): e_draft_game_player_status_aggregate! - - """ - fetch data from the table: "e_draft_game_player_status" using primary key columns - """ - e_draft_game_player_status_by_pk(value: String!): e_draft_game_player_status - - """ - fetch data from the table: "e_draft_game_status" - """ - e_draft_game_status( - """distinct select on columns""" - distinct_on: [e_draft_game_status_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_draft_game_status_order_by!] - - """filter the rows returned""" - where: e_draft_game_status_bool_exp - ): [e_draft_game_status!]! - - """ - fetch aggregated fields from the table: "e_draft_game_status" - """ - e_draft_game_status_aggregate( - """distinct select on columns""" - distinct_on: [e_draft_game_status_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_draft_game_status_order_by!] - - """filter the rows returned""" - where: e_draft_game_status_bool_exp - ): e_draft_game_status_aggregate! - - """ - fetch data from the table: "e_draft_game_status" using primary key columns - """ - e_draft_game_status_by_pk(value: String!): e_draft_game_status - - """ - fetch data from the table: "e_event_media_access" - """ - e_event_media_access( - """distinct select on columns""" - distinct_on: [e_event_media_access_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [e_event_media_access_order_by!] - - """filter the rows returned""" - where: e_event_media_access_bool_exp - ): [e_event_media_access!]! - - """ - fetch aggregated fields from the table: "e_event_media_access" - """ - e_event_media_access_aggregate( - """distinct select on columns""" - distinct_on: [e_event_media_access_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [e_event_media_access_order_by!] - - """filter the rows returned""" - where: e_event_media_access_bool_exp - ): e_event_media_access_aggregate! - - """ - fetch data from the table: "e_event_media_access" using primary key columns - """ - e_event_media_access_by_pk(value: String!): e_event_media_access - - """ - fetch data from the table: "e_event_visibility" - """ - e_event_visibility( - """distinct select on columns""" - distinct_on: [e_event_visibility_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [e_event_visibility_order_by!] - - """filter the rows returned""" - where: e_event_visibility_bool_exp - ): [e_event_visibility!]! - - """ - fetch aggregated fields from the table: "e_event_visibility" - """ - e_event_visibility_aggregate( - """distinct select on columns""" - distinct_on: [e_event_visibility_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [e_event_visibility_order_by!] - - """filter the rows returned""" - where: e_event_visibility_bool_exp - ): e_event_visibility_aggregate! - - """ - fetch data from the table: "e_event_visibility" using primary key columns - """ - e_event_visibility_by_pk(value: String!): e_event_visibility - - """ - fetch data from the table: "e_friend_status" - """ - e_friend_status( - """distinct select on columns""" - distinct_on: [e_friend_status_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_friend_status_order_by!] - - """filter the rows returned""" - where: e_friend_status_bool_exp - ): [e_friend_status!]! - - """ - fetch aggregated fields from the table: "e_friend_status" - """ - e_friend_status_aggregate( - """distinct select on columns""" - distinct_on: [e_friend_status_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_friend_status_order_by!] - - """filter the rows returned""" - where: e_friend_status_bool_exp - ): e_friend_status_aggregate! - - """fetch data from the table: "e_friend_status" using primary key columns""" - e_friend_status_by_pk(value: String!): e_friend_status - - """ - fetch data from the table: "e_game_cfg_types" - """ - e_game_cfg_types( - """distinct select on columns""" - distinct_on: [e_game_cfg_types_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_cfg_types_order_by!] - - """filter the rows returned""" - where: e_game_cfg_types_bool_exp - ): [e_game_cfg_types!]! - - """ - fetch aggregated fields from the table: "e_game_cfg_types" - """ - e_game_cfg_types_aggregate( - """distinct select on columns""" - distinct_on: [e_game_cfg_types_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_cfg_types_order_by!] - - """filter the rows returned""" - where: e_game_cfg_types_bool_exp - ): e_game_cfg_types_aggregate! - - """ - fetch data from the table: "e_game_cfg_types" using primary key columns - """ - 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" - """ - e_game_server_node_statuses( - """distinct select on columns""" - distinct_on: [e_game_server_node_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_server_node_statuses_order_by!] - - """filter the rows returned""" - where: e_game_server_node_statuses_bool_exp - ): [e_game_server_node_statuses!]! - - """ - fetch aggregated fields from the table: "e_game_server_node_statuses" - """ - e_game_server_node_statuses_aggregate( - """distinct select on columns""" - distinct_on: [e_game_server_node_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_server_node_statuses_order_by!] - - """filter the rows returned""" - where: e_game_server_node_statuses_bool_exp - ): e_game_server_node_statuses_aggregate! - - """ - fetch data from the table: "e_game_server_node_statuses" using primary key columns - """ - e_game_server_node_statuses_by_pk(value: String!): e_game_server_node_statuses - - """ - fetch data from the table: "e_league_movement_types" - """ - e_league_movement_types( - """distinct select on columns""" - distinct_on: [e_league_movement_types_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_league_movement_types_order_by!] - - """filter the rows returned""" - where: e_league_movement_types_bool_exp - ): [e_league_movement_types!]! - - """ - fetch aggregated fields from the table: "e_league_movement_types" - """ - e_league_movement_types_aggregate( - """distinct select on columns""" - distinct_on: [e_league_movement_types_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_league_movement_types_order_by!] - - """filter the rows returned""" - where: e_league_movement_types_bool_exp - ): e_league_movement_types_aggregate! - - """ - fetch data from the table: "e_league_movement_types" using primary key columns - """ - e_league_movement_types_by_pk(value: String!): e_league_movement_types - - """ - fetch data from the table: "e_league_proposal_statuses" - """ - e_league_proposal_statuses( - """distinct select on columns""" - distinct_on: [e_league_proposal_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_league_proposal_statuses_order_by!] - - """filter the rows returned""" - where: e_league_proposal_statuses_bool_exp - ): [e_league_proposal_statuses!]! - - """ - fetch aggregated fields from the table: "e_league_proposal_statuses" - """ - e_league_proposal_statuses_aggregate( - """distinct select on columns""" - distinct_on: [e_league_proposal_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_league_proposal_statuses_order_by!] - - """filter the rows returned""" - where: e_league_proposal_statuses_bool_exp - ): e_league_proposal_statuses_aggregate! - - """ - fetch data from the table: "e_league_proposal_statuses" using primary key columns - """ - e_league_proposal_statuses_by_pk(value: String!): e_league_proposal_statuses - - """ - fetch data from the table: "e_league_registration_statuses" - """ - e_league_registration_statuses( - """distinct select on columns""" - distinct_on: [e_league_registration_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_league_registration_statuses_order_by!] - - """filter the rows returned""" - where: e_league_registration_statuses_bool_exp - ): [e_league_registration_statuses!]! - - """ - fetch aggregated fields from the table: "e_league_registration_statuses" - """ - e_league_registration_statuses_aggregate( - """distinct select on columns""" - distinct_on: [e_league_registration_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_league_registration_statuses_order_by!] - - """filter the rows returned""" - where: e_league_registration_statuses_bool_exp - ): e_league_registration_statuses_aggregate! - - """ - fetch data from the table: "e_league_registration_statuses" using primary key columns - """ - e_league_registration_statuses_by_pk(value: String!): e_league_registration_statuses - - """ - fetch data from the table: "e_league_season_statuses" - """ - e_league_season_statuses( - """distinct select on columns""" - distinct_on: [e_league_season_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_league_season_statuses_order_by!] - - """filter the rows returned""" - where: e_league_season_statuses_bool_exp - ): [e_league_season_statuses!]! - - """ - fetch aggregated fields from the table: "e_league_season_statuses" - """ - e_league_season_statuses_aggregate( - """distinct select on columns""" - distinct_on: [e_league_season_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_league_season_statuses_order_by!] - - """filter the rows returned""" - where: e_league_season_statuses_bool_exp - ): e_league_season_statuses_aggregate! - - """ - fetch data from the table: "e_league_season_statuses" using primary key columns - """ - e_league_season_statuses_by_pk(value: String!): e_league_season_statuses - - """ - fetch data from the table: "e_lobby_access" - """ - e_lobby_access( - """distinct select on columns""" - distinct_on: [e_lobby_access_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [e_lobby_access_order_by!] - - """filter the rows returned""" - where: e_lobby_access_bool_exp - ): [e_lobby_access!]! - - """ - fetch aggregated fields from the table: "e_lobby_access" - """ - e_lobby_access_aggregate( - """distinct select on columns""" - distinct_on: [e_lobby_access_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [e_lobby_access_order_by!] - - """filter the rows returned""" - where: e_lobby_access_bool_exp - ): e_lobby_access_aggregate! - - """fetch data from the table: "e_lobby_access" using primary key columns""" - e_lobby_access_by_pk(value: String!): e_lobby_access - - """ - fetch data from the table: "e_lobby_player_status" - """ - e_lobby_player_status( - """distinct select on columns""" - distinct_on: [e_lobby_player_status_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_lobby_player_status_order_by!] - - """filter the rows returned""" - where: e_lobby_player_status_bool_exp - ): [e_lobby_player_status!]! - - """ - fetch aggregated fields from the table: "e_lobby_player_status" - """ - e_lobby_player_status_aggregate( - """distinct select on columns""" - distinct_on: [e_lobby_player_status_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_lobby_player_status_order_by!] - - """filter the rows returned""" - where: e_lobby_player_status_bool_exp - ): e_lobby_player_status_aggregate! - - """ - fetch data from the table: "e_lobby_player_status" using primary key columns - """ - e_lobby_player_status_by_pk(value: String!): e_lobby_player_status - - """ - fetch data from the table: "e_map_pool_types" - """ - e_map_pool_types( - """distinct select on columns""" - distinct_on: [e_map_pool_types_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_map_pool_types_order_by!] - - """filter the rows returned""" - where: e_map_pool_types_bool_exp - ): [e_map_pool_types!]! - - """ - fetch aggregated fields from the table: "e_map_pool_types" - """ - e_map_pool_types_aggregate( - """distinct select on columns""" - distinct_on: [e_map_pool_types_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_map_pool_types_order_by!] - - """filter the rows returned""" - where: e_map_pool_types_bool_exp - ): e_map_pool_types_aggregate! - - """ - fetch data from the table: "e_map_pool_types" using primary key columns - """ - e_map_pool_types_by_pk(value: String!): e_map_pool_types - - """ - fetch data from the table: "e_match_clip_visibility" - """ - e_match_clip_visibility( - """distinct select on columns""" - distinct_on: [e_match_clip_visibility_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [e_match_clip_visibility_order_by!] - - """filter the rows returned""" - where: e_match_clip_visibility_bool_exp - ): [e_match_clip_visibility!]! - - """ - fetch aggregated fields from the table: "e_match_clip_visibility" - """ - e_match_clip_visibility_aggregate( - """distinct select on columns""" - distinct_on: [e_match_clip_visibility_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [e_match_clip_visibility_order_by!] - - """filter the rows returned""" - where: e_match_clip_visibility_bool_exp - ): e_match_clip_visibility_aggregate! - - """ - fetch data from the table: "e_match_clip_visibility" using primary key columns - """ - e_match_clip_visibility_by_pk(value: String!): e_match_clip_visibility - - """ - fetch data from the table: "e_match_map_status" - """ - e_match_map_status( - """distinct select on columns""" - distinct_on: [e_match_map_status_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_match_map_status_order_by!] - - """filter the rows returned""" - where: e_match_map_status_bool_exp - ): [e_match_map_status!]! - - """ - fetch aggregated fields from the table: "e_match_map_status" - """ - e_match_map_status_aggregate( - """distinct select on columns""" - distinct_on: [e_match_map_status_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_match_map_status_order_by!] - - """filter the rows returned""" - where: e_match_map_status_bool_exp - ): e_match_map_status_aggregate! - - """ - fetch data from the table: "e_match_map_status" using primary key columns - """ - e_match_map_status_by_pk(value: String!): e_match_map_status - - """ - fetch data from the table: "e_match_mode" - """ - e_match_mode( - """distinct select on columns""" - distinct_on: [e_match_mode_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_match_mode_order_by!] - - """filter the rows returned""" - where: e_match_mode_bool_exp - ): [e_match_mode!]! - - """ - fetch aggregated fields from the table: "e_match_mode" - """ - e_match_mode_aggregate( - """distinct select on columns""" - distinct_on: [e_match_mode_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_match_mode_order_by!] - - """filter the rows returned""" - where: e_match_mode_bool_exp - ): e_match_mode_aggregate! - - """fetch data from the table: "e_match_mode" using primary key columns""" - e_match_mode_by_pk(value: String!): e_match_mode - - """ - fetch data from the table: "e_match_party_sources" - """ - e_match_party_sources( - """distinct select on columns""" - distinct_on: [e_match_party_sources_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_match_party_sources_order_by!] - - """filter the rows returned""" - where: e_match_party_sources_bool_exp - ): [e_match_party_sources!]! - - """ - fetch aggregated fields from the table: "e_match_party_sources" - """ - e_match_party_sources_aggregate( - """distinct select on columns""" - distinct_on: [e_match_party_sources_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_match_party_sources_order_by!] - - """filter the rows returned""" - where: e_match_party_sources_bool_exp - ): e_match_party_sources_aggregate! - - """ - fetch data from the table: "e_match_party_sources" using primary key columns - """ - e_match_party_sources_by_pk(value: String!): e_match_party_sources - - """ - fetch data from the table: "e_match_status" - """ - e_match_status( - """distinct select on columns""" - distinct_on: [e_match_status_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_match_status_order_by!] - - """filter the rows returned""" - where: e_match_status_bool_exp - ): [e_match_status!]! - - """ - fetch aggregated fields from the table: "e_match_status" - """ - e_match_status_aggregate( - """distinct select on columns""" - distinct_on: [e_match_status_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_match_status_order_by!] - - """filter the rows returned""" - where: e_match_status_bool_exp - ): e_match_status_aggregate! - - """fetch data from the table: "e_match_status" using primary key columns""" - e_match_status_by_pk(value: String!): e_match_status - - """ - fetch data from the table: "e_match_types" - """ - e_match_types( - """distinct select on columns""" - distinct_on: [e_match_types_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_match_types_order_by!] - - """filter the rows returned""" - where: e_match_types_bool_exp - ): [e_match_types!]! - - """ - fetch aggregated fields from the table: "e_match_types" - """ - e_match_types_aggregate( - """distinct select on columns""" - distinct_on: [e_match_types_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_match_types_order_by!] - - """filter the rows returned""" - where: e_match_types_bool_exp - ): e_match_types_aggregate! - - """fetch data from the table: "e_match_types" using primary key columns""" - e_match_types_by_pk(value: String!): e_match_types - - """ - fetch data from the table: "e_notification_types" - """ - e_notification_types( - """distinct select on columns""" - distinct_on: [e_notification_types_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_notification_types_order_by!] - - """filter the rows returned""" - where: e_notification_types_bool_exp - ): [e_notification_types!]! - - """ - fetch aggregated fields from the table: "e_notification_types" - """ - e_notification_types_aggregate( - """distinct select on columns""" - distinct_on: [e_notification_types_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_notification_types_order_by!] - - """filter the rows returned""" - where: e_notification_types_bool_exp - ): e_notification_types_aggregate! - - """ - fetch data from the table: "e_notification_types" using primary key columns - """ - e_notification_types_by_pk(value: String!): e_notification_types - - """ - fetch data from the table: "e_objective_types" - """ - e_objective_types( - """distinct select on columns""" - distinct_on: [e_objective_types_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_objective_types_order_by!] - - """filter the rows returned""" - where: e_objective_types_bool_exp - ): [e_objective_types!]! - - """ - fetch aggregated fields from the table: "e_objective_types" - """ - e_objective_types_aggregate( - """distinct select on columns""" - distinct_on: [e_objective_types_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_objective_types_order_by!] - - """filter the rows returned""" - where: e_objective_types_bool_exp - ): e_objective_types_aggregate! - - """ - fetch data from the table: "e_objective_types" using primary key columns - """ - e_objective_types_by_pk(value: String!): e_objective_types - - """ - fetch data from the table: "e_player_roles" - """ - e_player_roles( - """distinct select on columns""" - distinct_on: [e_player_roles_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_player_roles_order_by!] - - """filter the rows returned""" - where: e_player_roles_bool_exp - ): [e_player_roles!]! - - """ - fetch aggregated fields from the table: "e_player_roles" - """ - e_player_roles_aggregate( - """distinct select on columns""" - distinct_on: [e_player_roles_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_player_roles_order_by!] - - """filter the rows returned""" - where: e_player_roles_bool_exp - ): e_player_roles_aggregate! - - """fetch data from the table: "e_player_roles" using primary key columns""" - e_player_roles_by_pk(value: String!): e_player_roles - - """ - fetch data from the table: "e_plugin_runtimes" - """ - e_plugin_runtimes( - """distinct select on columns""" - distinct_on: [e_plugin_runtimes_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_plugin_runtimes_order_by!] - - """filter the rows returned""" - where: e_plugin_runtimes_bool_exp - ): [e_plugin_runtimes!]! - - """ - fetch aggregated fields from the table: "e_plugin_runtimes" - """ - e_plugin_runtimes_aggregate( - """distinct select on columns""" - distinct_on: [e_plugin_runtimes_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_plugin_runtimes_order_by!] - - """filter the rows returned""" - where: e_plugin_runtimes_bool_exp - ): e_plugin_runtimes_aggregate! - - """ - fetch data from the table: "e_plugin_runtimes" using primary key columns - """ - e_plugin_runtimes_by_pk(value: String!): e_plugin_runtimes - - """ - fetch data from the table: "e_ready_settings" - """ - e_ready_settings( - """distinct select on columns""" - distinct_on: [e_ready_settings_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_ready_settings_order_by!] - - """filter the rows returned""" - where: e_ready_settings_bool_exp - ): [e_ready_settings!]! - - """ - fetch aggregated fields from the table: "e_ready_settings" - """ - e_ready_settings_aggregate( - """distinct select on columns""" - distinct_on: [e_ready_settings_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_ready_settings_order_by!] - - """filter the rows returned""" - where: e_ready_settings_bool_exp - ): e_ready_settings_aggregate! - - """ - fetch data from the table: "e_ready_settings" using primary key columns - """ - e_ready_settings_by_pk(value: String!): e_ready_settings - - """ - fetch data from the table: "e_sanction_scopes" - """ - e_sanction_scopes( - """distinct select on columns""" - distinct_on: [e_sanction_scopes_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_sanction_scopes_order_by!] - - """filter the rows returned""" - where: e_sanction_scopes_bool_exp - ): [e_sanction_scopes!]! - - """ - fetch aggregated fields from the table: "e_sanction_scopes" - """ - e_sanction_scopes_aggregate( - """distinct select on columns""" - distinct_on: [e_sanction_scopes_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_sanction_scopes_order_by!] - - """filter the rows returned""" - where: e_sanction_scopes_bool_exp - ): e_sanction_scopes_aggregate! - - """ - fetch data from the table: "e_sanction_scopes" using primary key columns - """ - e_sanction_scopes_by_pk(value: String!): e_sanction_scopes - - """ - fetch data from the table: "e_sanction_sources" - """ - e_sanction_sources( - """distinct select on columns""" - distinct_on: [e_sanction_sources_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_sanction_sources_order_by!] - - """filter the rows returned""" - where: e_sanction_sources_bool_exp - ): [e_sanction_sources!]! - - """ - fetch aggregated fields from the table: "e_sanction_sources" - """ - e_sanction_sources_aggregate( - """distinct select on columns""" - distinct_on: [e_sanction_sources_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_sanction_sources_order_by!] - - """filter the rows returned""" - where: e_sanction_sources_bool_exp - ): e_sanction_sources_aggregate! - - """ - fetch data from the table: "e_sanction_sources" using primary key columns - """ - e_sanction_sources_by_pk(value: String!): e_sanction_sources - - """ - fetch data from the table: "e_sanction_types" - """ - e_sanction_types( - """distinct select on columns""" - distinct_on: [e_sanction_types_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_sanction_types_order_by!] - - """filter the rows returned""" - where: e_sanction_types_bool_exp - ): [e_sanction_types!]! - - """ - fetch aggregated fields from the table: "e_sanction_types" - """ - e_sanction_types_aggregate( - """distinct select on columns""" - distinct_on: [e_sanction_types_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_sanction_types_order_by!] - - """filter the rows returned""" - where: e_sanction_types_bool_exp - ): e_sanction_types_aggregate! - - """ - fetch data from the table: "e_sanction_types" using primary key columns - """ - e_sanction_types_by_pk(value: String!): e_sanction_types - - """ - fetch data from the table: "e_scrim_request_statuses" - """ - e_scrim_request_statuses( - """distinct select on columns""" - distinct_on: [e_scrim_request_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_scrim_request_statuses_order_by!] - - """filter the rows returned""" - where: e_scrim_request_statuses_bool_exp - ): [e_scrim_request_statuses!]! - - """ - fetch aggregated fields from the table: "e_scrim_request_statuses" - """ - e_scrim_request_statuses_aggregate( - """distinct select on columns""" - distinct_on: [e_scrim_request_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_scrim_request_statuses_order_by!] - - """filter the rows returned""" - where: e_scrim_request_statuses_bool_exp - ): e_scrim_request_statuses_aggregate! - - """ - fetch data from the table: "e_scrim_request_statuses" using primary key columns - """ - e_scrim_request_statuses_by_pk(value: String!): e_scrim_request_statuses - - """ - fetch data from the table: "e_server_types" - """ - e_server_types( - """distinct select on columns""" - distinct_on: [e_server_types_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_server_types_order_by!] - - """filter the rows returned""" - where: e_server_types_bool_exp - ): [e_server_types!]! - - """ - fetch aggregated fields from the table: "e_server_types" - """ - e_server_types_aggregate( - """distinct select on columns""" - distinct_on: [e_server_types_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_server_types_order_by!] - - """filter the rows returned""" - where: e_server_types_bool_exp - ): e_server_types_aggregate! - - """fetch data from the table: "e_server_types" using primary key columns""" - e_server_types_by_pk(value: String!): e_server_types - - """ - fetch data from the table: "e_sides" - """ - e_sides( - """distinct select on columns""" - distinct_on: [e_sides_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_sides_order_by!] - - """filter the rows returned""" - where: e_sides_bool_exp - ): [e_sides!]! - - """ - fetch aggregated fields from the table: "e_sides" - """ - e_sides_aggregate( - """distinct select on columns""" - distinct_on: [e_sides_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_sides_order_by!] - - """filter the rows returned""" - where: e_sides_bool_exp - ): e_sides_aggregate! - - """fetch data from the table: "e_sides" using primary key columns""" - e_sides_by_pk(value: String!): e_sides - - """ - fetch data from the table: "e_system_alert_types" - """ - e_system_alert_types( - """distinct select on columns""" - distinct_on: [e_system_alert_types_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_system_alert_types_order_by!] - - """filter the rows returned""" - where: e_system_alert_types_bool_exp - ): [e_system_alert_types!]! - - """ - fetch aggregated fields from the table: "e_system_alert_types" - """ - e_system_alert_types_aggregate( - """distinct select on columns""" - distinct_on: [e_system_alert_types_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_system_alert_types_order_by!] - - """filter the rows returned""" - where: e_system_alert_types_bool_exp - ): e_system_alert_types_aggregate! - - """ - fetch data from the table: "e_system_alert_types" using primary key columns - """ - e_system_alert_types_by_pk(value: String!): e_system_alert_types - - """ - fetch data from the table: "e_team_roles" - """ - e_team_roles( - """distinct select on columns""" - distinct_on: [e_team_roles_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_team_roles_order_by!] - - """filter the rows returned""" - where: e_team_roles_bool_exp - ): [e_team_roles!]! - - """ - fetch aggregated fields from the table: "e_team_roles" - """ - e_team_roles_aggregate( - """distinct select on columns""" - distinct_on: [e_team_roles_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_team_roles_order_by!] - - """filter the rows returned""" - where: e_team_roles_bool_exp - ): e_team_roles_aggregate! - - """fetch data from the table: "e_team_roles" using primary key columns""" - e_team_roles_by_pk(value: String!): e_team_roles - - """ - fetch data from the table: "e_team_roster_statuses" - """ - e_team_roster_statuses( - """distinct select on columns""" - distinct_on: [e_team_roster_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_team_roster_statuses_order_by!] - - """filter the rows returned""" - where: e_team_roster_statuses_bool_exp - ): [e_team_roster_statuses!]! - - """ - fetch aggregated fields from the table: "e_team_roster_statuses" - """ - e_team_roster_statuses_aggregate( - """distinct select on columns""" - distinct_on: [e_team_roster_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_team_roster_statuses_order_by!] - - """filter the rows returned""" - where: e_team_roster_statuses_bool_exp - ): e_team_roster_statuses_aggregate! - - """ - fetch data from the table: "e_team_roster_statuses" using primary key columns - """ - e_team_roster_statuses_by_pk(value: String!): e_team_roster_statuses - - """ - fetch data from the table: "e_timeout_settings" - """ - e_timeout_settings( - """distinct select on columns""" - distinct_on: [e_timeout_settings_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_timeout_settings_order_by!] - - """filter the rows returned""" - where: e_timeout_settings_bool_exp - ): [e_timeout_settings!]! - - """ - fetch aggregated fields from the table: "e_timeout_settings" - """ - e_timeout_settings_aggregate( - """distinct select on columns""" - distinct_on: [e_timeout_settings_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_timeout_settings_order_by!] - - """filter the rows returned""" - where: e_timeout_settings_bool_exp - ): e_timeout_settings_aggregate! - - """ - fetch data from the table: "e_timeout_settings" using primary key columns - """ - e_timeout_settings_by_pk(value: String!): e_timeout_settings - - """ - fetch data from the table: "e_tournament_categories" - """ - e_tournament_categories( - """distinct select on columns""" - distinct_on: [e_tournament_categories_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [e_tournament_categories_order_by!] - - """filter the rows returned""" - where: e_tournament_categories_bool_exp - ): [e_tournament_categories!]! - - """ - fetch aggregated fields from the table: "e_tournament_categories" - """ - e_tournament_categories_aggregate( - """distinct select on columns""" - distinct_on: [e_tournament_categories_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [e_tournament_categories_order_by!] - - """filter the rows returned""" - where: e_tournament_categories_bool_exp - ): e_tournament_categories_aggregate! - - """ - fetch data from the table: "e_tournament_categories" using primary key columns - """ - e_tournament_categories_by_pk(value: String!): e_tournament_categories - - """ - fetch data from the table: "e_tournament_free_agent_statuses" - """ - e_tournament_free_agent_statuses( - """distinct select on columns""" - distinct_on: [e_tournament_free_agent_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_tournament_free_agent_statuses_order_by!] - - """filter the rows returned""" - where: e_tournament_free_agent_statuses_bool_exp - ): [e_tournament_free_agent_statuses!]! - - """ - fetch aggregated fields from the table: "e_tournament_free_agent_statuses" - """ - e_tournament_free_agent_statuses_aggregate( - """distinct select on columns""" - distinct_on: [e_tournament_free_agent_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_tournament_free_agent_statuses_order_by!] - - """filter the rows returned""" - where: e_tournament_free_agent_statuses_bool_exp - ): e_tournament_free_agent_statuses_aggregate! - - """ - fetch data from the table: "e_tournament_free_agent_statuses" using primary key columns - """ - e_tournament_free_agent_statuses_by_pk(value: String!): e_tournament_free_agent_statuses - - """ - fetch data from the table: "e_tournament_registration_types" - """ - e_tournament_registration_types( - """distinct select on columns""" - distinct_on: [e_tournament_registration_types_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [e_tournament_registration_types_order_by!] - - """filter the rows returned""" - where: e_tournament_registration_types_bool_exp - ): [e_tournament_registration_types!]! - - """ - fetch aggregated fields from the table: "e_tournament_registration_types" - """ - e_tournament_registration_types_aggregate( - """distinct select on columns""" - distinct_on: [e_tournament_registration_types_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [e_tournament_registration_types_order_by!] - - """filter the rows returned""" - where: e_tournament_registration_types_bool_exp - ): e_tournament_registration_types_aggregate! - - """ - fetch data from the table: "e_tournament_registration_types" using primary key columns - """ - e_tournament_registration_types_by_pk(value: String!): e_tournament_registration_types - - """ - fetch data from the table: "e_tournament_stage_types" - """ - e_tournament_stage_types( - """distinct select on columns""" - distinct_on: [e_tournament_stage_types_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [e_tournament_stage_types_order_by!] - - """filter the rows returned""" - where: e_tournament_stage_types_bool_exp - ): [e_tournament_stage_types!]! - - """ - fetch aggregated fields from the table: "e_tournament_stage_types" - """ - e_tournament_stage_types_aggregate( - """distinct select on columns""" - distinct_on: [e_tournament_stage_types_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [e_tournament_stage_types_order_by!] - - """filter the rows returned""" - where: e_tournament_stage_types_bool_exp - ): e_tournament_stage_types_aggregate! - - """ - fetch data from the table: "e_tournament_stage_types" using primary key columns - """ - e_tournament_stage_types_by_pk(value: String!): e_tournament_stage_types - - """ - fetch data from the table: "e_tournament_status" - """ - e_tournament_status( - """distinct select on columns""" - distinct_on: [e_tournament_status_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [e_tournament_status_order_by!] - - """filter the rows returned""" - where: e_tournament_status_bool_exp - ): [e_tournament_status!]! - - """ - fetch aggregated fields from the table: "e_tournament_status" - """ - e_tournament_status_aggregate( - """distinct select on columns""" - distinct_on: [e_tournament_status_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [e_tournament_status_order_by!] - - """filter the rows returned""" - where: e_tournament_status_bool_exp - ): e_tournament_status_aggregate! - - """ - fetch data from the table: "e_tournament_status" using primary key columns - """ - e_tournament_status_by_pk(value: String!): e_tournament_status - - """ - fetch data from the table: "e_utility_practice_access" - """ - e_utility_practice_access( - """distinct select on columns""" - distinct_on: [e_utility_practice_access_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [e_utility_practice_access_order_by!] - - """filter the rows returned""" - where: e_utility_practice_access_bool_exp - ): [e_utility_practice_access!]! - - """ - fetch aggregated fields from the table: "e_utility_practice_access" - """ - e_utility_practice_access_aggregate( - """distinct select on columns""" - distinct_on: [e_utility_practice_access_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [e_utility_practice_access_order_by!] - - """filter the rows returned""" - where: e_utility_practice_access_bool_exp - ): e_utility_practice_access_aggregate! - - """ - fetch data from the table: "e_utility_practice_access" using primary key columns - """ - e_utility_practice_access_by_pk(value: String!): e_utility_practice_access - - """ - fetch data from the table: "e_utility_practice_statuses" - """ - e_utility_practice_statuses( - """distinct select on columns""" - distinct_on: [e_utility_practice_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_utility_practice_statuses_order_by!] - - """filter the rows returned""" - where: e_utility_practice_statuses_bool_exp - ): [e_utility_practice_statuses!]! - - """ - fetch aggregated fields from the table: "e_utility_practice_statuses" - """ - e_utility_practice_statuses_aggregate( - """distinct select on columns""" - distinct_on: [e_utility_practice_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_utility_practice_statuses_order_by!] - - """filter the rows returned""" - where: e_utility_practice_statuses_bool_exp - ): e_utility_practice_statuses_aggregate! - - """ - fetch data from the table: "e_utility_practice_statuses" using primary key columns - """ - e_utility_practice_statuses_by_pk(value: String!): e_utility_practice_statuses - - """ - fetch data from the table: "e_utility_sources" - """ - e_utility_sources( - """distinct select on columns""" - distinct_on: [e_utility_sources_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_utility_sources_order_by!] - - """filter the rows returned""" - where: e_utility_sources_bool_exp - ): [e_utility_sources!]! - - """ - fetch aggregated fields from the table: "e_utility_sources" - """ - e_utility_sources_aggregate( - """distinct select on columns""" - distinct_on: [e_utility_sources_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_utility_sources_order_by!] - - """filter the rows returned""" - where: e_utility_sources_bool_exp - ): e_utility_sources_aggregate! - - """ - fetch data from the table: "e_utility_sources" using primary key columns - """ - e_utility_sources_by_pk(value: String!): e_utility_sources - - """ - fetch data from the table: "e_utility_techniques" - """ - e_utility_techniques( - """distinct select on columns""" - distinct_on: [e_utility_techniques_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_utility_techniques_order_by!] - - """filter the rows returned""" - where: e_utility_techniques_bool_exp - ): [e_utility_techniques!]! - - """ - fetch aggregated fields from the table: "e_utility_techniques" - """ - e_utility_techniques_aggregate( - """distinct select on columns""" - distinct_on: [e_utility_techniques_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_utility_techniques_order_by!] - - """filter the rows returned""" - where: e_utility_techniques_bool_exp - ): e_utility_techniques_aggregate! - - """ - fetch data from the table: "e_utility_techniques" using primary key columns - """ - e_utility_techniques_by_pk(value: String!): e_utility_techniques - - """ - fetch data from the table: "e_utility_throw_strengths" - """ - e_utility_throw_strengths( - """distinct select on columns""" - distinct_on: [e_utility_throw_strengths_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_utility_throw_strengths_order_by!] - - """filter the rows returned""" - where: e_utility_throw_strengths_bool_exp - ): [e_utility_throw_strengths!]! - - """ - fetch aggregated fields from the table: "e_utility_throw_strengths" - """ - e_utility_throw_strengths_aggregate( - """distinct select on columns""" - distinct_on: [e_utility_throw_strengths_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_utility_throw_strengths_order_by!] - - """filter the rows returned""" - where: e_utility_throw_strengths_bool_exp - ): e_utility_throw_strengths_aggregate! - - """ - fetch data from the table: "e_utility_throw_strengths" using primary key columns - """ - e_utility_throw_strengths_by_pk(value: String!): e_utility_throw_strengths - - """ - fetch data from the table: "e_utility_types" - """ - e_utility_types( - """distinct select on columns""" - distinct_on: [e_utility_types_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_utility_types_order_by!] - - """filter the rows returned""" - where: e_utility_types_bool_exp - ): [e_utility_types!]! - - """ - fetch aggregated fields from the table: "e_utility_types" - """ - e_utility_types_aggregate( - """distinct select on columns""" - distinct_on: [e_utility_types_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_utility_types_order_by!] - - """filter the rows returned""" - where: e_utility_types_bool_exp - ): e_utility_types_aggregate! - - """fetch data from the table: "e_utility_types" using primary key columns""" - e_utility_types_by_pk(value: String!): e_utility_types - - """ - fetch data from the table: "e_utility_visibility" - """ - e_utility_visibility( - """distinct select on columns""" - distinct_on: [e_utility_visibility_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [e_utility_visibility_order_by!] - - """filter the rows returned""" - where: e_utility_visibility_bool_exp - ): [e_utility_visibility!]! - - """ - fetch aggregated fields from the table: "e_utility_visibility" - """ - e_utility_visibility_aggregate( - """distinct select on columns""" - distinct_on: [e_utility_visibility_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [e_utility_visibility_order_by!] - - """filter the rows returned""" - where: e_utility_visibility_bool_exp - ): e_utility_visibility_aggregate! - - """ - fetch data from the table: "e_utility_visibility" using primary key columns - """ - e_utility_visibility_by_pk(value: String!): e_utility_visibility - - """ - fetch data from the table: "e_veto_pick_types" - """ - e_veto_pick_types( - """distinct select on columns""" - distinct_on: [e_veto_pick_types_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_veto_pick_types_order_by!] - - """filter the rows returned""" - where: e_veto_pick_types_bool_exp - ): [e_veto_pick_types!]! - - """ - fetch aggregated fields from the table: "e_veto_pick_types" - """ - e_veto_pick_types_aggregate( - """distinct select on columns""" - distinct_on: [e_veto_pick_types_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_veto_pick_types_order_by!] - - """filter the rows returned""" - where: e_veto_pick_types_bool_exp - ): e_veto_pick_types_aggregate! - - """ - fetch data from the table: "e_veto_pick_types" using primary key columns - """ - e_veto_pick_types_by_pk(value: String!): e_veto_pick_types - - """ - fetch data from the table: "e_winning_reasons" - """ - e_winning_reasons( - """distinct select on columns""" - distinct_on: [e_winning_reasons_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_winning_reasons_order_by!] - - """filter the rows returned""" - where: e_winning_reasons_bool_exp - ): [e_winning_reasons!]! - - """ - fetch aggregated fields from the table: "e_winning_reasons" - """ - e_winning_reasons_aggregate( - """distinct select on columns""" - distinct_on: [e_winning_reasons_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_winning_reasons_order_by!] - - """filter the rows returned""" - where: e_winning_reasons_bool_exp - ): e_winning_reasons_aggregate! - - """ - fetch data from the table: "e_winning_reasons" using primary key columns - """ - e_winning_reasons_by_pk(value: String!): e_winning_reasons - - """ - fetch data from the table: "event_match_links" - """ - event_match_links( - """distinct select on columns""" - distinct_on: [event_match_links_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [event_match_links_order_by!] - - """filter the rows returned""" - where: event_match_links_bool_exp - ): [event_match_links!]! - - """ - fetch aggregated fields from the table: "event_match_links" - """ - event_match_links_aggregate( - """distinct select on columns""" - distinct_on: [event_match_links_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [event_match_links_order_by!] - - """filter the rows returned""" - where: event_match_links_bool_exp - ): event_match_links_aggregate! - - """ - fetch data from the table: "event_match_links" using primary key columns - """ - event_match_links_by_pk(event_id: uuid!, match_id: uuid!): event_match_links - - """ - fetch data from the table: "event_media" - """ - event_media( - """distinct select on columns""" - distinct_on: [event_media_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [event_media_order_by!] - - """filter the rows returned""" - where: event_media_bool_exp - ): [event_media!]! - - """ - fetch aggregated fields from the table: "event_media" - """ - event_media_aggregate( - """distinct select on columns""" - distinct_on: [event_media_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [event_media_order_by!] - - """filter the rows returned""" - where: event_media_bool_exp - ): event_media_aggregate! - - """fetch data from the table: "event_media" using primary key columns""" - event_media_by_pk(id: uuid!): event_media - - """ - fetch data from the table: "event_media_players" - """ - event_media_players( - """distinct select on columns""" - distinct_on: [event_media_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [event_media_players_order_by!] - - """filter the rows returned""" - where: event_media_players_bool_exp - ): [event_media_players!]! - - """ - fetch aggregated fields from the table: "event_media_players" - """ - event_media_players_aggregate( - """distinct select on columns""" - distinct_on: [event_media_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [event_media_players_order_by!] - - """filter the rows returned""" - where: event_media_players_bool_exp - ): event_media_players_aggregate! - - """ - fetch data from the table: "event_media_players" using primary key columns - """ - event_media_players_by_pk(media_id: uuid!, steam_id: bigint!): event_media_players - - """ - fetch data from the table: "event_organizers" - """ - event_organizers( - """distinct select on columns""" - distinct_on: [event_organizers_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [event_organizers_order_by!] - - """filter the rows returned""" - where: event_organizers_bool_exp - ): [event_organizers!]! - - """ - fetch aggregated fields from the table: "event_organizers" - """ - event_organizers_aggregate( - """distinct select on columns""" - distinct_on: [event_organizers_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [event_organizers_order_by!] - - """filter the rows returned""" - where: event_organizers_bool_exp - ): event_organizers_aggregate! - - """ - fetch data from the table: "event_organizers" using primary key columns - """ - event_organizers_by_pk(event_id: uuid!, steam_id: bigint!): event_organizers - - """ - fetch data from the table: "event_players" - """ - event_players( - """distinct select on columns""" - distinct_on: [event_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [event_players_order_by!] - - """filter the rows returned""" - where: event_players_bool_exp - ): [event_players!]! - - """ - fetch aggregated fields from the table: "event_players" - """ - event_players_aggregate( - """distinct select on columns""" - distinct_on: [event_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [event_players_order_by!] - - """filter the rows returned""" - where: event_players_bool_exp - ): event_players_aggregate! - - """fetch data from the table: "event_players" using primary key columns""" - event_players_by_pk(event_id: uuid!, steam_id: bigint!): event_players - - """ - fetch data from the table: "event_teams" - """ - event_teams( - """distinct select on columns""" - distinct_on: [event_teams_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [event_teams_order_by!] - - """filter the rows returned""" - where: event_teams_bool_exp - ): [event_teams!]! - - """ - fetch aggregated fields from the table: "event_teams" - """ - event_teams_aggregate( - """distinct select on columns""" - distinct_on: [event_teams_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [event_teams_order_by!] - - """filter the rows returned""" - where: event_teams_bool_exp - ): event_teams_aggregate! - - """fetch data from the table: "event_teams" using primary key columns""" - event_teams_by_pk(event_id: uuid!, team_id: uuid!): event_teams - - """ - fetch data from the table: "event_tournaments" - """ - event_tournaments( - """distinct select on columns""" - distinct_on: [event_tournaments_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [event_tournaments_order_by!] - - """filter the rows returned""" - where: event_tournaments_bool_exp - ): [event_tournaments!]! - - """ - fetch aggregated fields from the table: "event_tournaments" - """ - event_tournaments_aggregate( - """distinct select on columns""" - distinct_on: [event_tournaments_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [event_tournaments_order_by!] - - """filter the rows returned""" - where: event_tournaments_bool_exp - ): event_tournaments_aggregate! - - """ - fetch data from the table: "event_tournaments" using primary key columns - """ - event_tournaments_by_pk(event_id: uuid!, tournament_id: uuid!): event_tournaments - - """ - fetch data from the table: "events" - """ - events( - """distinct select on columns""" - distinct_on: [events_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [events_order_by!] - - """filter the rows returned""" - where: events_bool_exp - ): [events!]! - - """ - fetch aggregated fields from the table: "events" - """ - events_aggregate( - """distinct select on columns""" - distinct_on: [events_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [events_order_by!] - - """filter the rows returned""" - where: events_bool_exp - ): events_aggregate! - - """fetch data from the table: "events" using primary key columns""" - events_by_pk(id: uuid!): events - - """Find the saved smokes that close a given sightline""" - findUtilityLineupsBlocking(from_x: Float!, from_y: Float!, from_z: Float!, limit: Int, map_name: String!, side: String, to_x: Float!, to_y: Float!, to_z: Float!): UtilityBlockingOutput - - """ - fetch data from the table: "friends" - """ - friends( - """distinct select on columns""" - distinct_on: [friends_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: [friends_order_by!] - - """filter the rows returned""" - where: friends_bool_exp - ): [friends!]! - - """ - fetch aggregated fields from the table: "friends" - """ - friends_aggregate( - """distinct select on columns""" - distinct_on: [friends_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: [friends_order_by!] - - """filter the rows returned""" - where: friends_bool_exp - ): friends_aggregate! - - """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""" - distinct_on: [game_server_nodes_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_nodes_order_by!] - - """filter the rows returned""" - where: game_server_nodes_bool_exp - ): [game_server_nodes!]! - - """An aggregate relationship""" - game_server_nodes_aggregate( - """distinct select on columns""" - distinct_on: [game_server_nodes_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_nodes_order_by!] - - """filter the rows returned""" - where: game_server_nodes_bool_exp - ): game_server_nodes_aggregate! - - """ - fetch data from the table: "game_server_nodes" using primary key columns - """ - game_server_nodes_by_pk(id: String!): game_server_nodes - - """ - fetch data from the table: "game_versions" - """ - game_versions( - """distinct select on columns""" - distinct_on: [game_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_versions_order_by!] - - """filter the rows returned""" - where: game_versions_bool_exp - ): [game_versions!]! - - """ - fetch aggregated fields from the table: "game_versions" - """ - game_versions_aggregate( - """distinct select on columns""" - distinct_on: [game_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_versions_order_by!] - - """filter the rows returned""" - where: game_versions_bool_exp - ): game_versions_aggregate! - - """fetch data from the table: "game_versions" using primary key columns""" - game_versions_by_pk(build_id: Int!): game_versions - - """ - fetch data from the table: "gamedata_signature_validations" - """ - gamedata_signature_validations( - """distinct select on columns""" - distinct_on: [gamedata_signature_validations_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: [gamedata_signature_validations_order_by!] - - """filter the rows returned""" - where: gamedata_signature_validations_bool_exp - ): [gamedata_signature_validations!]! - - """ - fetch aggregated fields from the table: "gamedata_signature_validations" - """ - gamedata_signature_validations_aggregate( - """distinct select on columns""" - distinct_on: [gamedata_signature_validations_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: [gamedata_signature_validations_order_by!] - - """filter the rows returned""" - where: gamedata_signature_validations_bool_exp - ): gamedata_signature_validations_aggregate! - - """ - fetch data from the table: "gamedata_signature_validations" using primary key columns - """ - gamedata_signature_validations_by_pk(id: uuid!): gamedata_signature_validations - - """Get list of active connections""" - getActiveConnections: [ActiveConnection]! - - """Get currently executing queries""" - getActiveQueries: [ActiveQuery]! - - """Get connection statistics""" - getConnectionStats: ConnectionStats! - - """Get current database locks""" - getCurrentLocks: [LockInfo]! - - """Get database-wide statistics""" - getDatabaseStats: DatabaseStats! - getDedicatedServerInfo: [DedicatedSeverInfo]! - getDedicatedServerPlayers(serverId: String!): [ServerPlayer!]! - - """Which highlight presets have content for a player on a map's demo""" - getHighlightPresetAvailability(match_map_id: uuid!, target_steam_id: String!): HighlightPresetAvailability - - """Get index I/O statistics""" - getIndexIOStats(schemas: [String!]): [IndexIOStat]! - - """Get index usage statistics""" - getIndexStats(schemas: [String!]): [IndexStat]! - getNodeStats(node: String!): NodeStats! - - """Get detailed query analysis with EXPLAIN plan""" - getQueryDetail(queryid: String!): QueryDetail - - """Get enhanced query performance statistics""" - getQueryStats: [QueryStat]! - - """Get available database schemas""" - getSchemas: String! - getServiceStats: [PodStats]! - - """Get database storage statistics and reclaimable space""" - getStorageStats(schemas: [String!]): StorageStats! - - """Get table I/O statistics""" - getTableIOStats(schemas: [String!]): [TableIOStat]! - - """Get table access statistics""" - getTableStats(schemas: [String!]): [TableStat]! - - """Get TimescaleDB statistics""" - getTimescaleStats: TimescaleStats! - - """ - execute function "get_event_leaderboard" which returns "leaderboard_entries" - """ - get_event_leaderboard( - """ - input parameters for function "get_event_leaderboard" - """ - args: get_event_leaderboard_args! - - """distinct select on columns""" - distinct_on: [leaderboard_entries_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [leaderboard_entries_order_by!] - - """filter the rows returned""" - where: leaderboard_entries_bool_exp - ): [leaderboard_entries!]! - - """ - execute function "get_event_leaderboard" and query aggregates on result of table type "leaderboard_entries" - """ - get_event_leaderboard_aggregate( - """ - input parameters for function "get_event_leaderboard_aggregate" - """ - args: get_event_leaderboard_args! - - """distinct select on columns""" - distinct_on: [leaderboard_entries_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [leaderboard_entries_order_by!] - - """filter the rows returned""" - where: leaderboard_entries_bool_exp - ): leaderboard_entries_aggregate! - - """ - execute function "get_leaderboard" which returns "leaderboard_entries" - """ - get_leaderboard( - """ - input parameters for function "get_leaderboard" - """ - args: get_leaderboard_args! - - """distinct select on columns""" - distinct_on: [leaderboard_entries_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [leaderboard_entries_order_by!] - - """filter the rows returned""" - where: leaderboard_entries_bool_exp - ): [leaderboard_entries!]! - - """ - execute function "get_leaderboard" and query aggregates on result of table type "leaderboard_entries" - """ - get_leaderboard_aggregate( - """ - input parameters for function "get_leaderboard_aggregate" - """ - args: get_leaderboard_args! - - """distinct select on columns""" - distinct_on: [leaderboard_entries_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [leaderboard_entries_order_by!] - - """filter the rows returned""" - where: leaderboard_entries_bool_exp - ): leaderboard_entries_aggregate! - - """ - execute function "get_league_season_leaderboard" which returns "leaderboard_entries" - """ - get_league_season_leaderboard( - """ - input parameters for function "get_league_season_leaderboard" - """ - args: get_league_season_leaderboard_args! - - """distinct select on columns""" - distinct_on: [leaderboard_entries_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [leaderboard_entries_order_by!] - - """filter the rows returned""" - where: leaderboard_entries_bool_exp - ): [leaderboard_entries!]! - - """ - execute function "get_league_season_leaderboard" and query aggregates on result of table type "leaderboard_entries" - """ - get_league_season_leaderboard_aggregate( - """ - input parameters for function "get_league_season_leaderboard_aggregate" - """ - args: get_league_season_leaderboard_args! - - """distinct select on columns""" - distinct_on: [leaderboard_entries_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [leaderboard_entries_order_by!] - - """filter the rows returned""" - where: leaderboard_entries_bool_exp - ): leaderboard_entries_aggregate! - - """ - execute function "get_player_leaderboard_rank" which returns "player_leaderboard_rank" - """ - get_player_leaderboard_rank( - """ - input parameters for function "get_player_leaderboard_rank" - """ - args: get_player_leaderboard_rank_args! - - """distinct select on columns""" - distinct_on: [player_leaderboard_rank_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: [player_leaderboard_rank_order_by!] - - """filter the rows returned""" - where: player_leaderboard_rank_bool_exp - ): [player_leaderboard_rank!]! - - """ - execute function "get_player_leaderboard_rank" and query aggregates on result of table type "player_leaderboard_rank" - """ - get_player_leaderboard_rank_aggregate( - """ - input parameters for function "get_player_leaderboard_rank_aggregate" - """ - args: get_player_leaderboard_rank_args! - - """distinct select on columns""" - distinct_on: [player_leaderboard_rank_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: [player_leaderboard_rank_order_by!] - - """filter the rows returned""" - where: player_leaderboard_rank_bool_exp - ): player_leaderboard_rank_aggregate! - - """ - execute function "get_tournament_leaderboard" which returns "tournament_leaderboard_entries" - """ - get_tournament_leaderboard( - """ - input parameters for function "get_tournament_leaderboard" - """ - args: get_tournament_leaderboard_args! - - """distinct select on columns""" - distinct_on: [tournament_leaderboard_entries_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_leaderboard_entries_order_by!] - - """filter the rows returned""" - where: tournament_leaderboard_entries_bool_exp - ): [tournament_leaderboard_entries!]! - - """ - execute function "get_tournament_leaderboard" and query aggregates on result of table type "tournament_leaderboard_entries" - """ - get_tournament_leaderboard_aggregate( - """ - input parameters for function "get_tournament_leaderboard_aggregate" - """ - args: get_tournament_leaderboard_args! - - """distinct select on columns""" - distinct_on: [tournament_leaderboard_entries_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_leaderboard_entries_order_by!] - - """filter the rows returned""" - where: tournament_leaderboard_entries_bool_exp - ): tournament_leaderboard_entries_aggregate! - - """ - fetch data from the table: "leaderboard_entries" - """ - leaderboard_entries( - """distinct select on columns""" - distinct_on: [leaderboard_entries_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [leaderboard_entries_order_by!] - - """filter the rows returned""" - where: leaderboard_entries_bool_exp - ): [leaderboard_entries!]! - - """ - fetch aggregated fields from the table: "leaderboard_entries" - """ - leaderboard_entries_aggregate( - """distinct select on columns""" - distinct_on: [leaderboard_entries_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [leaderboard_entries_order_by!] - - """filter the rows returned""" - where: leaderboard_entries_bool_exp - ): leaderboard_entries_aggregate! - - """ - fetch data from the table: "league_divisions" - """ - league_divisions( - """distinct select on columns""" - distinct_on: [league_divisions_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: [league_divisions_order_by!] - - """filter the rows returned""" - where: league_divisions_bool_exp - ): [league_divisions!]! - - """ - fetch aggregated fields from the table: "league_divisions" - """ - league_divisions_aggregate( - """distinct select on columns""" - distinct_on: [league_divisions_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: [league_divisions_order_by!] - - """filter the rows returned""" - where: league_divisions_bool_exp - ): league_divisions_aggregate! - - """ - fetch data from the table: "league_divisions" using primary key columns - """ - league_divisions_by_pk(id: uuid!): league_divisions - - """ - fetch data from the table: "league_match_weeks" - """ - league_match_weeks( - """distinct select on columns""" - distinct_on: [league_match_weeks_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: [league_match_weeks_order_by!] - - """filter the rows returned""" - where: league_match_weeks_bool_exp - ): [league_match_weeks!]! - - """ - fetch aggregated fields from the table: "league_match_weeks" - """ - league_match_weeks_aggregate( - """distinct select on columns""" - distinct_on: [league_match_weeks_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: [league_match_weeks_order_by!] - - """filter the rows returned""" - where: league_match_weeks_bool_exp - ): league_match_weeks_aggregate! - - """ - fetch data from the table: "league_match_weeks" using primary key columns - """ - league_match_weeks_by_pk(id: uuid!): league_match_weeks - - """ - fetch data from the table: "league_relegation_playoffs" - """ - league_relegation_playoffs( - """distinct select on columns""" - distinct_on: [league_relegation_playoffs_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: [league_relegation_playoffs_order_by!] - - """filter the rows returned""" - where: league_relegation_playoffs_bool_exp - ): [league_relegation_playoffs!]! - - """ - fetch aggregated fields from the table: "league_relegation_playoffs" - """ - league_relegation_playoffs_aggregate( - """distinct select on columns""" - distinct_on: [league_relegation_playoffs_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: [league_relegation_playoffs_order_by!] - - """filter the rows returned""" - where: league_relegation_playoffs_bool_exp - ): league_relegation_playoffs_aggregate! - - """ - fetch data from the table: "league_relegation_playoffs" using primary key columns - """ - league_relegation_playoffs_by_pk(id: uuid!): league_relegation_playoffs - - """ - fetch data from the table: "league_scheduling_proposals" - """ - league_scheduling_proposals( - """distinct select on columns""" - distinct_on: [league_scheduling_proposals_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: [league_scheduling_proposals_order_by!] - - """filter the rows returned""" - where: league_scheduling_proposals_bool_exp - ): [league_scheduling_proposals!]! - - """ - fetch aggregated fields from the table: "league_scheduling_proposals" - """ - league_scheduling_proposals_aggregate( - """distinct select on columns""" - distinct_on: [league_scheduling_proposals_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: [league_scheduling_proposals_order_by!] - - """filter the rows returned""" - where: league_scheduling_proposals_bool_exp - ): league_scheduling_proposals_aggregate! - - """ - fetch data from the table: "league_scheduling_proposals" using primary key columns - """ - league_scheduling_proposals_by_pk(id: uuid!): league_scheduling_proposals - - """ - fetch data from the table: "league_season_divisions" - """ - league_season_divisions( - """distinct select on columns""" - distinct_on: [league_season_divisions_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: [league_season_divisions_order_by!] - - """filter the rows returned""" - where: league_season_divisions_bool_exp - ): [league_season_divisions!]! - - """ - fetch aggregated fields from the table: "league_season_divisions" - """ - league_season_divisions_aggregate( - """distinct select on columns""" - distinct_on: [league_season_divisions_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: [league_season_divisions_order_by!] - - """filter the rows returned""" - where: league_season_divisions_bool_exp - ): league_season_divisions_aggregate! - - """ - fetch data from the table: "league_season_divisions" using primary key columns - """ - league_season_divisions_by_pk(id: uuid!): league_season_divisions - - """ - fetch data from the table: "league_seasons" - """ - league_seasons( - """distinct select on columns""" - distinct_on: [league_seasons_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: [league_seasons_order_by!] - - """filter the rows returned""" - where: league_seasons_bool_exp - ): [league_seasons!]! - - """ - fetch aggregated fields from the table: "league_seasons" - """ - league_seasons_aggregate( - """distinct select on columns""" - distinct_on: [league_seasons_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: [league_seasons_order_by!] - - """filter the rows returned""" - where: league_seasons_bool_exp - ): league_seasons_aggregate! - - """fetch data from the table: "league_seasons" using primary key columns""" - league_seasons_by_pk(id: uuid!): league_seasons - - """ - fetch data from the table: "league_team_movements" - """ - league_team_movements( - """distinct select on columns""" - distinct_on: [league_team_movements_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: [league_team_movements_order_by!] - - """filter the rows returned""" - where: league_team_movements_bool_exp - ): [league_team_movements!]! - - """ - fetch aggregated fields from the table: "league_team_movements" - """ - league_team_movements_aggregate( - """distinct select on columns""" - distinct_on: [league_team_movements_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: [league_team_movements_order_by!] - - """filter the rows returned""" - where: league_team_movements_bool_exp - ): league_team_movements_aggregate! - - """ - fetch data from the table: "league_team_movements" using primary key columns - """ - league_team_movements_by_pk(id: uuid!): league_team_movements - - """ - fetch data from the table: "league_team_rosters" - """ - league_team_rosters( - """distinct select on columns""" - distinct_on: [league_team_rosters_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: [league_team_rosters_order_by!] - - """filter the rows returned""" - where: league_team_rosters_bool_exp - ): [league_team_rosters!]! - - """ - fetch aggregated fields from the table: "league_team_rosters" - """ - league_team_rosters_aggregate( - """distinct select on columns""" - distinct_on: [league_team_rosters_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: [league_team_rosters_order_by!] - - """filter the rows returned""" - where: league_team_rosters_bool_exp - ): league_team_rosters_aggregate! - - """ - fetch data from the table: "league_team_rosters" using primary key columns - """ - league_team_rosters_by_pk(league_team_season_id: uuid!, player_steam_id: bigint!): league_team_rosters - - """ - fetch data from the table: "league_team_seasons" - """ - league_team_seasons( - """distinct select on columns""" - distinct_on: [league_team_seasons_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: [league_team_seasons_order_by!] - - """filter the rows returned""" - where: league_team_seasons_bool_exp - ): [league_team_seasons!]! - - """ - fetch aggregated fields from the table: "league_team_seasons" - """ - league_team_seasons_aggregate( - """distinct select on columns""" - distinct_on: [league_team_seasons_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: [league_team_seasons_order_by!] - - """filter the rows returned""" - where: league_team_seasons_bool_exp - ): league_team_seasons_aggregate! - - """ - fetch data from the table: "league_team_seasons" using primary key columns - """ - league_team_seasons_by_pk(id: uuid!): league_team_seasons - - """ - fetch data from the table: "league_teams" - """ - league_teams( - """distinct select on columns""" - distinct_on: [league_teams_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [league_teams_order_by!] - - """filter the rows returned""" - where: league_teams_bool_exp - ): [league_teams!]! - - """ - fetch aggregated fields from the table: "league_teams" - """ - league_teams_aggregate( - """distinct select on columns""" - distinct_on: [league_teams_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [league_teams_order_by!] - - """filter the rows returned""" - where: league_teams_bool_exp - ): league_teams_aggregate! - - """fetch data from the table: "league_teams" using primary key columns""" - league_teams_by_pk(id: uuid!): league_teams - - """List files in game server directory""" - listServerFiles(node_id: String!, path: String, server_id: String): FileListResponse! - - """ - fetch data from the table: "lobbies" - """ - lobbies( - """distinct select on columns""" - distinct_on: [lobbies_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: [lobbies_order_by!] - - """filter the rows returned""" - where: lobbies_bool_exp - ): [lobbies!]! - - """ - fetch aggregated fields from the table: "lobbies" - """ - lobbies_aggregate( - """distinct select on columns""" - distinct_on: [lobbies_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: [lobbies_order_by!] - - """filter the rows returned""" - where: lobbies_bool_exp - ): lobbies_aggregate! - - """fetch data from the table: "lobbies" using primary key columns""" - lobbies_by_pk(id: uuid!): lobbies - - """An array relationship""" - lobby_players( - """distinct select on columns""" - distinct_on: [lobby_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [lobby_players_order_by!] - - """filter the rows returned""" - where: lobby_players_bool_exp - ): [lobby_players!]! - - """An aggregate relationship""" - lobby_players_aggregate( - """distinct select on columns""" - distinct_on: [lobby_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [lobby_players_order_by!] - - """filter the rows returned""" - where: lobby_players_bool_exp - ): lobby_players_aggregate! - - """fetch data from the table: "lobby_players" using primary key columns""" - lobby_players_by_pk(lobby_id: uuid!, steam_id: bigint!): lobby_players - - """ - fetch data from the table: "map_callouts" - """ - map_callouts( - """distinct select on columns""" - distinct_on: [map_callouts_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: [map_callouts_order_by!] - - """filter the rows returned""" - where: map_callouts_bool_exp - ): [map_callouts!]! - - """ - fetch aggregated fields from the table: "map_callouts" - """ - map_callouts_aggregate( - """distinct select on columns""" - distinct_on: [map_callouts_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: [map_callouts_order_by!] - - """filter the rows returned""" - where: map_callouts_bool_exp - ): map_callouts_aggregate! - - """fetch data from the table: "map_callouts" using primary key columns""" - map_callouts_by_pk(map_name: String!, name: String!): map_callouts - - """ - fetch data from the table: "map_pools" - """ - map_pools( - """distinct select on columns""" - distinct_on: [map_pools_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: [map_pools_order_by!] - - """filter the rows returned""" - where: map_pools_bool_exp - ): [map_pools!]! - - """ - fetch aggregated fields from the table: "map_pools" - """ - map_pools_aggregate( - """distinct select on columns""" - distinct_on: [map_pools_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: [map_pools_order_by!] - - """filter the rows returned""" - where: map_pools_bool_exp - ): map_pools_aggregate! - - """fetch data from the table: "map_pools" using primary key columns""" - map_pools_by_pk(id: uuid!): map_pools - - """An array relationship""" - maps( - """distinct select on columns""" - distinct_on: [maps_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: [maps_order_by!] - - """filter the rows returned""" - where: maps_bool_exp - ): [maps!]! - - """An aggregate relationship""" - maps_aggregate( - """distinct select on columns""" - distinct_on: [maps_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: [maps_order_by!] - - """filter the rows returned""" - where: maps_bool_exp - ): maps_aggregate! - - """fetch data from the table: "maps" using primary key columns""" - maps_by_pk(id: uuid!): maps - - """An array relationship""" - match_clips( - """distinct select on columns""" - distinct_on: [match_clips_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_clips_order_by!] - - """filter the rows returned""" - where: match_clips_bool_exp - ): [match_clips!]! - - """An aggregate relationship""" - match_clips_aggregate( - """distinct select on columns""" - distinct_on: [match_clips_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_clips_order_by!] - - """filter the rows returned""" - where: match_clips_bool_exp - ): match_clips_aggregate! - - """fetch data from the table: "match_clips" using primary key columns""" - match_clips_by_pk(id: uuid!): match_clips - - """ - fetch data from the table: "match_demo_sessions" - """ - match_demo_sessions( - """distinct select on columns""" - distinct_on: [match_demo_sessions_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_demo_sessions_order_by!] - - """filter the rows returned""" - where: match_demo_sessions_bool_exp - ): [match_demo_sessions!]! - - """ - fetch aggregated fields from the table: "match_demo_sessions" - """ - match_demo_sessions_aggregate( - """distinct select on columns""" - distinct_on: [match_demo_sessions_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_demo_sessions_order_by!] - - """filter the rows returned""" - where: match_demo_sessions_bool_exp - ): match_demo_sessions_aggregate! - - """ - fetch data from the table: "match_demo_sessions" using primary key columns - """ - match_demo_sessions_by_pk(id: uuid!): match_demo_sessions - - """An array relationship""" - match_lineup_players( - """distinct select on columns""" - distinct_on: [match_lineup_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_lineup_players_order_by!] - - """filter the rows returned""" - where: match_lineup_players_bool_exp - ): [match_lineup_players!]! - - """An aggregate relationship""" - match_lineup_players_aggregate( - """distinct select on columns""" - distinct_on: [match_lineup_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_lineup_players_order_by!] - - """filter the rows returned""" - where: match_lineup_players_bool_exp - ): match_lineup_players_aggregate! - - """ - fetch data from the table: "match_lineup_players" using primary key columns - """ - match_lineup_players_by_pk(id: uuid!): match_lineup_players - - """An array relationship""" - match_lineups( - """distinct select on columns""" - distinct_on: [match_lineups_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_lineups_order_by!] - - """filter the rows returned""" - where: match_lineups_bool_exp - ): [match_lineups!]! - - """An aggregate relationship""" - match_lineups_aggregate( - """distinct select on columns""" - distinct_on: [match_lineups_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_lineups_order_by!] - - """filter the rows returned""" - where: match_lineups_bool_exp - ): match_lineups_aggregate! - - """fetch data from the table: "match_lineups" using primary key columns""" - match_lineups_by_pk(id: uuid!): match_lineups - - """ - fetch data from the table: "match_map_demos" - """ - match_map_demos( - """distinct select on columns""" - distinct_on: [match_map_demos_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_map_demos_order_by!] - - """filter the rows returned""" - where: match_map_demos_bool_exp - ): [match_map_demos!]! - - """ - fetch aggregated fields from the table: "match_map_demos" - """ - match_map_demos_aggregate( - """distinct select on columns""" - distinct_on: [match_map_demos_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_map_demos_order_by!] - - """filter the rows returned""" - where: match_map_demos_bool_exp - ): match_map_demos_aggregate! - - """fetch data from the table: "match_map_demos" using primary key columns""" - match_map_demos_by_pk(id: uuid!): match_map_demos - - """ - fetch data from the table: "match_map_rounds" - """ - match_map_rounds( - """distinct select on columns""" - distinct_on: [match_map_rounds_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_map_rounds_order_by!] - - """filter the rows returned""" - where: match_map_rounds_bool_exp - ): [match_map_rounds!]! - - """ - fetch aggregated fields from the table: "match_map_rounds" - """ - match_map_rounds_aggregate( - """distinct select on columns""" - distinct_on: [match_map_rounds_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_map_rounds_order_by!] - - """filter the rows returned""" - where: match_map_rounds_bool_exp - ): match_map_rounds_aggregate! - - """ - fetch data from the table: "match_map_rounds" using primary key columns - """ - match_map_rounds_by_pk(id: uuid!): match_map_rounds - - """ - fetch data from the table: "match_map_veto_picks" - """ - match_map_veto_picks( - """distinct select on columns""" - distinct_on: [match_map_veto_picks_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_map_veto_picks_order_by!] - - """filter the rows returned""" - where: match_map_veto_picks_bool_exp - ): [match_map_veto_picks!]! - - """ - fetch aggregated fields from the table: "match_map_veto_picks" - """ - match_map_veto_picks_aggregate( - """distinct select on columns""" - distinct_on: [match_map_veto_picks_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_map_veto_picks_order_by!] - - """filter the rows returned""" - where: match_map_veto_picks_bool_exp - ): match_map_veto_picks_aggregate! - - """ - fetch data from the table: "match_map_veto_picks" using primary key columns - """ - match_map_veto_picks_by_pk(id: uuid!): match_map_veto_picks - - """An array relationship""" - match_maps( - """distinct select on columns""" - distinct_on: [match_maps_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_maps_order_by!] - - """filter the rows returned""" - where: match_maps_bool_exp - ): [match_maps!]! - - """An aggregate relationship""" - match_maps_aggregate( - """distinct select on columns""" - distinct_on: [match_maps_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_maps_order_by!] - - """filter the rows returned""" - where: match_maps_bool_exp - ): match_maps_aggregate! - - """fetch data from the table: "match_maps" using primary key columns""" - match_maps_by_pk(id: uuid!): match_maps - - """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! - - """fetch data from the table: "match_options" using primary key columns""" - match_options_by_pk(id: uuid!): match_options - - """ - fetch data from the table: "match_region_veto_picks" - """ - match_region_veto_picks( - """distinct select on columns""" - distinct_on: [match_region_veto_picks_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_region_veto_picks_order_by!] - - """filter the rows returned""" - where: match_region_veto_picks_bool_exp - ): [match_region_veto_picks!]! - - """ - fetch aggregated fields from the table: "match_region_veto_picks" - """ - match_region_veto_picks_aggregate( - """distinct select on columns""" - distinct_on: [match_region_veto_picks_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_region_veto_picks_order_by!] - - """filter the rows returned""" - where: match_region_veto_picks_bool_exp - ): match_region_veto_picks_aggregate! - - """ - fetch data from the table: "match_region_veto_picks" using primary key columns - """ - match_region_veto_picks_by_pk(id: uuid!): match_region_veto_picks - - """ - fetch data from the table: "match_streams" - """ - match_streams( - """distinct select on columns""" - distinct_on: [match_streams_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_streams_order_by!] - - """filter the rows returned""" - where: match_streams_bool_exp - ): [match_streams!]! - - """ - fetch aggregated fields from the table: "match_streams" - """ - match_streams_aggregate( - """distinct select on columns""" - distinct_on: [match_streams_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_streams_order_by!] - - """filter the rows returned""" - where: match_streams_bool_exp - ): match_streams_aggregate! - - """fetch data from the table: "match_streams" using primary key columns""" - match_streams_by_pk(id: uuid!): match_streams - - """ - fetch data from the table: "match_type_cfgs" - """ - match_type_cfgs( - """distinct select on columns""" - distinct_on: [match_type_cfgs_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_type_cfgs_order_by!] - - """filter the rows returned""" - where: match_type_cfgs_bool_exp - ): [match_type_cfgs!]! - - """ - fetch aggregated fields from the table: "match_type_cfgs" - """ - match_type_cfgs_aggregate( - """distinct select on columns""" - distinct_on: [match_type_cfgs_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_type_cfgs_order_by!] - - """filter the rows returned""" - where: match_type_cfgs_bool_exp - ): match_type_cfgs_aggregate! - - """fetch data from the table: "match_type_cfgs" using primary key columns""" - match_type_cfgs_by_pk(type: e_game_cfg_types_enum!): match_type_cfgs - - """An array relationship""" - matches( - """distinct select on columns""" - distinct_on: [matches_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: [matches_order_by!] - - """filter the rows returned""" - where: matches_bool_exp - ): [matches!]! - - """An aggregate relationship""" - matches_aggregate( - """distinct select on columns""" - distinct_on: [matches_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: [matches_order_by!] - - """filter the rows returned""" - where: matches_bool_exp - ): matches_aggregate! - - """fetch data from the table: "matches" using primary key columns""" - matches_by_pk(id: uuid!): matches - - """Gets Current User""" - me: MeResponse! - - """ - fetch data from the table: "migration_hashes.hashes" - """ - migration_hashes_hashes( - """distinct select on columns""" - distinct_on: [migration_hashes_hashes_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: [migration_hashes_hashes_order_by!] - - """filter the rows returned""" - where: migration_hashes_hashes_bool_exp - ): [migration_hashes_hashes!]! - - """ - fetch aggregated fields from the table: "migration_hashes.hashes" - """ - migration_hashes_hashes_aggregate( - """distinct select on columns""" - distinct_on: [migration_hashes_hashes_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: [migration_hashes_hashes_order_by!] - - """filter the rows returned""" - where: migration_hashes_hashes_bool_exp - ): migration_hashes_hashes_aggregate! - - """ - fetch data from the table: "migration_hashes.hashes" using primary key columns - """ - migration_hashes_hashes_by_pk(name: String!): migration_hashes_hashes - - """ - fetch data from the table: "v_my_friends" - """ - my_friends( - """distinct select on columns""" - distinct_on: [my_friends_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: [my_friends_order_by!] - - """filter the rows returned""" - where: my_friends_bool_exp - ): [my_friends!]! - - """ - fetch aggregated fields from the table: "v_my_friends" - """ - my_friends_aggregate( - """distinct select on columns""" - distinct_on: [my_friends_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: [my_friends_order_by!] - - """filter the rows returned""" - where: my_friends_bool_exp - ): my_friends_aggregate! - - """ - Fetch a single news post including draft content for editing. Caller role is verified against public.post_news_role. - """ - newsPostAdmin(id: uuid!): NewsPost - - """ - List all news posts including drafts for the management area. Caller role is verified against public.post_news_role. - """ - newsPostsAdmin: [NewsPost!] - - """ - fetch data from the table: "news_articles" - """ - news_articles( - """distinct select on columns""" - distinct_on: [news_articles_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: [news_articles_order_by!] - - """filter the rows returned""" - where: news_articles_bool_exp - ): [news_articles!]! - - """ - fetch aggregated fields from the table: "news_articles" - """ - news_articles_aggregate( - """distinct select on columns""" - distinct_on: [news_articles_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: [news_articles_order_by!] - - """filter the rows returned""" - where: news_articles_bool_exp - ): news_articles_aggregate! - - """fetch data from the table: "news_articles" using primary key columns""" - news_articles_by_pk(id: uuid!): news_articles - - """ - fetch data from the table: "notification_preferences" - """ - notification_preferences( - """distinct select on columns""" - distinct_on: [notification_preferences_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: [notification_preferences_order_by!] - - """filter the rows returned""" - where: notification_preferences_bool_exp - ): [notification_preferences!]! - - """ - fetch aggregated fields from the table: "notification_preferences" - """ - notification_preferences_aggregate( - """distinct select on columns""" - distinct_on: [notification_preferences_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: [notification_preferences_order_by!] - - """filter the rows returned""" - where: notification_preferences_bool_exp - ): notification_preferences_aggregate! - - """ - fetch data from the table: "notification_preferences" using primary key columns - """ - notification_preferences_by_pk(channel: String!, key: String!, steam_id: bigint!): notification_preferences - - """An array relationship""" - notifications( - """distinct select on columns""" - distinct_on: [notifications_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: [notifications_order_by!] - - """filter the rows returned""" - where: notifications_bool_exp - ): [notifications!]! - - """An aggregate relationship""" - notifications_aggregate( - """distinct select on columns""" - distinct_on: [notifications_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: [notifications_order_by!] - - """filter the rows returned""" - where: notifications_bool_exp - ): notifications_aggregate! - - """fetch data from the table: "notifications" using primary key columns""" - notifications_by_pk(id: uuid!): notifications - - """ - fetch data from the table: "pending_match_import_players" - """ - pending_match_import_players( - """distinct select on columns""" - distinct_on: [pending_match_import_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pending_match_import_players_order_by!] - - """filter the rows returned""" - where: pending_match_import_players_bool_exp - ): [pending_match_import_players!]! - - """ - fetch aggregated fields from the table: "pending_match_import_players" - """ - pending_match_import_players_aggregate( - """distinct select on columns""" - distinct_on: [pending_match_import_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pending_match_import_players_order_by!] - - """filter the rows returned""" - where: pending_match_import_players_bool_exp - ): pending_match_import_players_aggregate! - - """ - fetch data from the table: "pending_match_import_players" using primary key columns - """ - pending_match_import_players_by_pk(steam_id: bigint!, valve_match_id: numeric!): pending_match_import_players - - """ - fetch data from the table: "pending_match_imports" - """ - pending_match_imports( - """distinct select on columns""" - distinct_on: [pending_match_imports_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: [pending_match_imports_order_by!] - - """filter the rows returned""" - where: pending_match_imports_bool_exp - ): [pending_match_imports!]! - - """ - fetch aggregated fields from the table: "pending_match_imports" - """ - pending_match_imports_aggregate( - """distinct select on columns""" - distinct_on: [pending_match_imports_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: [pending_match_imports_order_by!] - - """filter the rows returned""" - where: pending_match_imports_bool_exp - ): pending_match_imports_aggregate! - - """ - fetch data from the table: "pending_match_imports" using primary key columns - """ - pending_match_imports_by_pk(valve_match_id: numeric!): pending_match_imports - - """ - fetch data from the table: "player_aim_stats_demo" - """ - player_aim_stats_demo( - """distinct select on columns""" - distinct_on: [player_aim_stats_demo_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: [player_aim_stats_demo_order_by!] - - """filter the rows returned""" - where: player_aim_stats_demo_bool_exp - ): [player_aim_stats_demo!]! - - """ - fetch aggregated fields from the table: "player_aim_stats_demo" - """ - player_aim_stats_demo_aggregate( - """distinct select on columns""" - distinct_on: [player_aim_stats_demo_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: [player_aim_stats_demo_order_by!] - - """filter the rows returned""" - where: player_aim_stats_demo_bool_exp - ): player_aim_stats_demo_aggregate! - - """ - fetch data from the table: "player_aim_stats_demo" using primary key columns - """ - player_aim_stats_demo_by_pk(attacker_steam_id: bigint!, match_map_id: uuid!): player_aim_stats_demo - - """ - fetch data from the table: "player_aim_weapon_stats" - """ - player_aim_weapon_stats( - """distinct select on columns""" - distinct_on: [player_aim_weapon_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [player_aim_weapon_stats_order_by!] - - """filter the rows returned""" - where: player_aim_weapon_stats_bool_exp - ): [player_aim_weapon_stats!]! - - """ - fetch aggregated fields from the table: "player_aim_weapon_stats" - """ - player_aim_weapon_stats_aggregate( - """distinct select on columns""" - distinct_on: [player_aim_weapon_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [player_aim_weapon_stats_order_by!] - - """filter the rows returned""" - where: player_aim_weapon_stats_bool_exp - ): player_aim_weapon_stats_aggregate! - - """ - fetch data from the table: "player_aim_weapon_stats" using primary key columns - """ - player_aim_weapon_stats_by_pk(match_map_id: uuid!, steam_id: bigint!, weapon_class: String!): player_aim_weapon_stats - - """An array relationship""" - player_assists( - """distinct select on columns""" - distinct_on: [player_assists_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: [player_assists_order_by!] - - """filter the rows returned""" - where: player_assists_bool_exp - ): [player_assists!]! - - """An aggregate relationship""" - player_assists_aggregate( - """distinct select on columns""" - distinct_on: [player_assists_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: [player_assists_order_by!] - - """filter the rows returned""" - where: player_assists_bool_exp - ): player_assists_aggregate! - - """fetch data from the table: "player_assists" using primary key columns""" - player_assists_by_pk(attacked_steam_id: bigint!, attacker_steam_id: bigint!, match_map_id: uuid!, time: timestamptz!): player_assists - - """ - fetch data from the table: "player_career_stats_v" - """ - player_career_stats_v( - """distinct select on columns""" - distinct_on: [player_career_stats_v_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: [player_career_stats_v_order_by!] - - """filter the rows returned""" - where: player_career_stats_v_bool_exp - ): [player_career_stats_v!]! - - """ - fetch aggregated fields from the table: "player_career_stats_v" - """ - player_career_stats_v_aggregate( - """distinct select on columns""" - distinct_on: [player_career_stats_v_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: [player_career_stats_v_order_by!] - - """filter the rows returned""" - where: player_career_stats_v_bool_exp - ): player_career_stats_v_aggregate! - - """An array relationship""" - player_damages( - """distinct select on columns""" - distinct_on: [player_damages_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: [player_damages_order_by!] - - """filter the rows returned""" - where: player_damages_bool_exp - ): [player_damages!]! - - """An aggregate relationship""" - player_damages_aggregate( - """distinct select on columns""" - distinct_on: [player_damages_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: [player_damages_order_by!] - - """filter the rows returned""" - where: player_damages_bool_exp - ): player_damages_aggregate! - - """fetch data from the table: "player_damages" using primary key columns""" - player_damages_by_pk(id: uuid!, match_map_id: uuid!, time: timestamptz!): player_damages - - """ - fetch data from the table: "player_elo" - """ - player_elo( - """distinct select on columns""" - distinct_on: [player_elo_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: [player_elo_order_by!] - - """filter the rows returned""" - where: player_elo_bool_exp - ): [player_elo!]! - - """ - fetch aggregated fields from the table: "player_elo" - """ - player_elo_aggregate( - """distinct select on columns""" - distinct_on: [player_elo_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: [player_elo_order_by!] - - """filter the rows returned""" - where: player_elo_bool_exp - ): player_elo_aggregate! - - """fetch data from the table: "player_elo" using primary key columns""" - player_elo_by_pk(match_id: uuid!, steam_id: bigint!, type: e_match_types_enum!): player_elo - - """ - fetch data from the table: "player_faceit_rank_history" - """ - player_faceit_rank_history( - """distinct select on columns""" - distinct_on: [player_faceit_rank_history_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: [player_faceit_rank_history_order_by!] - - """filter the rows returned""" - where: player_faceit_rank_history_bool_exp - ): [player_faceit_rank_history!]! - - """ - fetch aggregated fields from the table: "player_faceit_rank_history" - """ - player_faceit_rank_history_aggregate( - """distinct select on columns""" - distinct_on: [player_faceit_rank_history_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: [player_faceit_rank_history_order_by!] - - """filter the rows returned""" - where: player_faceit_rank_history_bool_exp - ): player_faceit_rank_history_aggregate! - - """ - fetch data from the table: "player_faceit_rank_history" using primary key columns - """ - player_faceit_rank_history_by_pk(id: uuid!): player_faceit_rank_history - - """An array relationship""" - player_flashes( - """distinct select on columns""" - distinct_on: [player_flashes_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: [player_flashes_order_by!] - - """filter the rows returned""" - where: player_flashes_bool_exp - ): [player_flashes!]! - - """An aggregate relationship""" - player_flashes_aggregate( - """distinct select on columns""" - distinct_on: [player_flashes_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: [player_flashes_order_by!] - - """filter the rows returned""" - where: player_flashes_bool_exp - ): player_flashes_aggregate! - - """fetch data from the table: "player_flashes" using primary key columns""" - player_flashes_by_pk(attacked_steam_id: bigint!, attacker_steam_id: bigint!, match_map_id: uuid!, time: timestamptz!): player_flashes - - """An array relationship""" - player_kills( - """distinct select on columns""" - distinct_on: [player_kills_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: [player_kills_order_by!] - - """filter the rows returned""" - where: player_kills_bool_exp - ): [player_kills!]! - - """An aggregate relationship""" - player_kills_aggregate( - """distinct select on columns""" - distinct_on: [player_kills_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: [player_kills_order_by!] - - """filter the rows returned""" - where: player_kills_bool_exp - ): player_kills_aggregate! - - """fetch data from the table: "player_kills" using primary key columns""" - player_kills_by_pk(attacked_steam_id: bigint!, attacker_steam_id: bigint!, match_map_id: uuid!, time: timestamptz!): player_kills - - """ - fetch data from the table: "player_kills_by_weapon" - """ - player_kills_by_weapon( - """distinct select on columns""" - distinct_on: [player_kills_by_weapon_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: [player_kills_by_weapon_order_by!] - - """filter the rows returned""" - where: player_kills_by_weapon_bool_exp - ): [player_kills_by_weapon!]! - - """ - fetch aggregated fields from the table: "player_kills_by_weapon" - """ - player_kills_by_weapon_aggregate( - """distinct select on columns""" - distinct_on: [player_kills_by_weapon_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: [player_kills_by_weapon_order_by!] - - """filter the rows returned""" - where: player_kills_by_weapon_bool_exp - ): player_kills_by_weapon_aggregate! - - """ - fetch data from the table: "player_kills_by_weapon" using primary key columns - """ - player_kills_by_weapon_by_pk(player_steam_id: bigint!, with: String!): player_kills_by_weapon - - """ - fetch data from the table: "player_leaderboard_rank" - """ - player_leaderboard_rank( - """distinct select on columns""" - distinct_on: [player_leaderboard_rank_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: [player_leaderboard_rank_order_by!] - - """filter the rows returned""" - where: player_leaderboard_rank_bool_exp - ): [player_leaderboard_rank!]! - - """ - fetch aggregated fields from the table: "player_leaderboard_rank" - """ - player_leaderboard_rank_aggregate( - """distinct select on columns""" - distinct_on: [player_leaderboard_rank_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: [player_leaderboard_rank_order_by!] - - """filter the rows returned""" - where: player_leaderboard_rank_bool_exp - ): player_leaderboard_rank_aggregate! - - """ - fetch data from the table: "player_match_map_stats" - """ - player_match_map_stats( - """distinct select on columns""" - distinct_on: [player_match_map_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [player_match_map_stats_order_by!] - - """filter the rows returned""" - where: player_match_map_stats_bool_exp - ): [player_match_map_stats!]! - - """ - fetch aggregated fields from the table: "player_match_map_stats" - """ - player_match_map_stats_aggregate( - """distinct select on columns""" - distinct_on: [player_match_map_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [player_match_map_stats_order_by!] - - """filter the rows returned""" - where: player_match_map_stats_bool_exp - ): player_match_map_stats_aggregate! - - """ - fetch data from the table: "player_match_map_stats" using primary key columns - """ - player_match_map_stats_by_pk(match_map_id: uuid!, steam_id: bigint!): player_match_map_stats - - """ - fetch data from the table: "player_match_performance_v" - """ - player_match_performance_v( - """distinct select on columns""" - distinct_on: [player_match_performance_v_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: [player_match_performance_v_order_by!] - - """filter the rows returned""" - where: player_match_performance_v_bool_exp - ): [player_match_performance_v!]! - - """ - fetch aggregated fields from the table: "player_match_performance_v" - """ - player_match_performance_v_aggregate( - """distinct select on columns""" - distinct_on: [player_match_performance_v_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: [player_match_performance_v_order_by!] - - """filter the rows returned""" - where: player_match_performance_v_bool_exp - ): player_match_performance_v_aggregate! - - """ - fetch data from the table: "player_match_stats_v" - """ - player_match_stats_v( - """distinct select on columns""" - distinct_on: [player_match_stats_v_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: [player_match_stats_v_order_by!] - - """filter the rows returned""" - where: player_match_stats_v_bool_exp - ): [player_match_stats_v!]! - - """ - fetch aggregated fields from the table: "player_match_stats_v" - """ - player_match_stats_v_aggregate( - """distinct select on columns""" - distinct_on: [player_match_stats_v_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: [player_match_stats_v_order_by!] - - """filter the rows returned""" - where: player_match_stats_v_bool_exp - ): player_match_stats_v_aggregate! - - """An array relationship""" - player_objectives( - """distinct select on columns""" - distinct_on: [player_objectives_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: [player_objectives_order_by!] - - """filter the rows returned""" - where: player_objectives_bool_exp - ): [player_objectives!]! - - """An aggregate relationship""" - player_objectives_aggregate( - """distinct select on columns""" - distinct_on: [player_objectives_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: [player_objectives_order_by!] - - """filter the rows returned""" - where: player_objectives_bool_exp - ): player_objectives_aggregate! - - """ - fetch data from the table: "player_objectives" using primary key columns - """ - player_objectives_by_pk(match_map_id: uuid!, player_steam_id: bigint!, time: timestamptz!): player_objectives - - """ - fetch data from the table: "player_performance_v" - """ - player_performance_v( - """distinct select on columns""" - distinct_on: [player_performance_v_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: [player_performance_v_order_by!] - - """filter the rows returned""" - where: player_performance_v_bool_exp - ): [player_performance_v!]! - - """ - fetch aggregated fields from the table: "player_performance_v" - """ - player_performance_v_aggregate( - """distinct select on columns""" - distinct_on: [player_performance_v_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: [player_performance_v_order_by!] - - """filter the rows returned""" - where: player_performance_v_bool_exp - ): player_performance_v_aggregate! - - """ - fetch data from the table: "player_premier_rank_history" - """ - player_premier_rank_history( - """distinct select on columns""" - distinct_on: [player_premier_rank_history_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: [player_premier_rank_history_order_by!] - - """filter the rows returned""" - where: player_premier_rank_history_bool_exp - ): [player_premier_rank_history!]! - - """ - fetch aggregated fields from the table: "player_premier_rank_history" - """ - player_premier_rank_history_aggregate( - """distinct select on columns""" - distinct_on: [player_premier_rank_history_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: [player_premier_rank_history_order_by!] - - """filter the rows returned""" - where: player_premier_rank_history_bool_exp - ): player_premier_rank_history_aggregate! - - """ - fetch data from the table: "player_premier_rank_history" using primary key columns - """ - player_premier_rank_history_by_pk(id: uuid!): player_premier_rank_history - - """ - fetch data from the table: "player_sanctions" - """ - player_sanctions( - """distinct select on columns""" - distinct_on: [player_sanctions_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: [player_sanctions_order_by!] - - """filter the rows returned""" - where: player_sanctions_bool_exp - ): [player_sanctions!]! - - """ - fetch aggregated fields from the table: "player_sanctions" - """ - player_sanctions_aggregate( - """distinct select on columns""" - distinct_on: [player_sanctions_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: [player_sanctions_order_by!] - - """filter the rows returned""" - where: player_sanctions_bool_exp - ): player_sanctions_aggregate! - - """ - fetch data from the table: "player_sanctions" using primary key columns - """ - player_sanctions_by_pk(created_at: timestamptz!, id: uuid!): player_sanctions - - """An array relationship""" - player_season_stats( - """distinct select on columns""" - distinct_on: [player_season_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [player_season_stats_order_by!] - - """filter the rows returned""" - where: player_season_stats_bool_exp - ): [player_season_stats!]! - - """An aggregate relationship""" - player_season_stats_aggregate( - """distinct select on columns""" - distinct_on: [player_season_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [player_season_stats_order_by!] - - """filter the rows returned""" - where: player_season_stats_bool_exp - ): player_season_stats_aggregate! - - """ - fetch data from the table: "player_season_stats" using primary key columns - """ - player_season_stats_by_pk(player_steam_id: bigint!, season_id: uuid!): player_season_stats - - """ - fetch data from the table: "player_stats" - """ - player_stats( - """distinct select on columns""" - distinct_on: [player_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [player_stats_order_by!] - - """filter the rows returned""" - where: player_stats_bool_exp - ): [player_stats!]! - - """ - fetch aggregated fields from the table: "player_stats" - """ - player_stats_aggregate( - """distinct select on columns""" - distinct_on: [player_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [player_stats_order_by!] - - """filter the rows returned""" - where: player_stats_bool_exp - ): player_stats_aggregate! - - """fetch data from the table: "player_stats" using primary key columns""" - player_stats_by_pk(player_steam_id: bigint!): player_stats - - """ - fetch data from the table: "player_steam_bot_friend" - """ - player_steam_bot_friend( - """distinct select on columns""" - distinct_on: [player_steam_bot_friend_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: [player_steam_bot_friend_order_by!] - - """filter the rows returned""" - where: player_steam_bot_friend_bool_exp - ): [player_steam_bot_friend!]! - - """ - fetch aggregated fields from the table: "player_steam_bot_friend" - """ - player_steam_bot_friend_aggregate( - """distinct select on columns""" - distinct_on: [player_steam_bot_friend_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: [player_steam_bot_friend_order_by!] - - """filter the rows returned""" - where: player_steam_bot_friend_bool_exp - ): player_steam_bot_friend_aggregate! - - """ - fetch data from the table: "player_steam_bot_friend" using primary key columns - """ - player_steam_bot_friend_by_pk(steam_id: bigint!): player_steam_bot_friend - - """ - fetch data from the table: "player_steam_match_auth" - """ - player_steam_match_auth( - """distinct select on columns""" - distinct_on: [player_steam_match_auth_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: [player_steam_match_auth_order_by!] - - """filter the rows returned""" - where: player_steam_match_auth_bool_exp - ): [player_steam_match_auth!]! - - """ - fetch aggregated fields from the table: "player_steam_match_auth" - """ - player_steam_match_auth_aggregate( - """distinct select on columns""" - distinct_on: [player_steam_match_auth_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: [player_steam_match_auth_order_by!] - - """filter the rows returned""" - where: player_steam_match_auth_bool_exp - ): player_steam_match_auth_aggregate! - - """ - fetch data from the table: "player_steam_match_auth" using primary key columns - """ - player_steam_match_auth_by_pk(steam_id: bigint!): player_steam_match_auth - - """ - fetch data from the table: "player_unused_utility" - """ - player_unused_utility( - """distinct select on columns""" - distinct_on: [player_unused_utility_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: [player_unused_utility_order_by!] - - """filter the rows returned""" - where: player_unused_utility_bool_exp - ): [player_unused_utility!]! - - """ - fetch aggregated fields from the table: "player_unused_utility" - """ - player_unused_utility_aggregate( - """distinct select on columns""" - distinct_on: [player_unused_utility_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: [player_unused_utility_order_by!] - - """filter the rows returned""" - where: player_unused_utility_bool_exp - ): player_unused_utility_aggregate! - - """ - fetch data from the table: "player_unused_utility" using primary key columns - """ - player_unused_utility_by_pk(match_map_id: uuid!, player_steam_id: bigint!): player_unused_utility - - """An array relationship""" - player_utility( - """distinct select on columns""" - distinct_on: [player_utility_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: [player_utility_order_by!] - - """filter the rows returned""" - where: player_utility_bool_exp - ): [player_utility!]! - - """An aggregate relationship""" - player_utility_aggregate( - """distinct select on columns""" - distinct_on: [player_utility_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: [player_utility_order_by!] - - """filter the rows returned""" - where: player_utility_bool_exp - ): player_utility_aggregate! - - """fetch data from the table: "player_utility" using primary key columns""" - player_utility_by_pk(attacker_steam_id: bigint!, match_map_id: uuid!, time: timestamptz!): player_utility - - """ - fetch data from the table: "player_weapon_stats_v" - """ - player_weapon_stats_v( - """distinct select on columns""" - distinct_on: [player_weapon_stats_v_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: [player_weapon_stats_v_order_by!] - - """filter the rows returned""" - where: player_weapon_stats_v_bool_exp - ): [player_weapon_stats_v!]! - - """ - fetch aggregated fields from the table: "player_weapon_stats_v" - """ - player_weapon_stats_v_aggregate( - """distinct select on columns""" - distinct_on: [player_weapon_stats_v_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: [player_weapon_stats_v_order_by!] - - """filter the rows returned""" - where: player_weapon_stats_v_bool_exp - ): player_weapon_stats_v_aggregate! - - """ - fetch data from the table: "players" - """ - players( - """distinct select on columns""" - distinct_on: [players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [players_order_by!] - - """filter the rows returned""" - where: players_bool_exp - ): [players!]! - - """ - fetch aggregated fields from the table: "players" - """ - players_aggregate( - """distinct select on columns""" - distinct_on: [players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [players_order_by!] - - """filter the rows returned""" - where: players_bool_exp - ): players_aggregate! - - """fetch data from the table: "players" using primary key columns""" - players_by_pk(steam_id: bigint!): players - - """ - fetch data from the table: "plugin_versions" - """ - plugin_versions( - """distinct select on columns""" - distinct_on: [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: [plugin_versions_order_by!] - - """filter the rows returned""" - where: plugin_versions_bool_exp - ): [plugin_versions!]! - - """ - fetch aggregated fields from the table: "plugin_versions" - """ - plugin_versions_aggregate( - """distinct select on columns""" - distinct_on: [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: [plugin_versions_order_by!] - - """filter the rows returned""" - where: plugin_versions_bool_exp - ): plugin_versions_aggregate! - - """fetch data from the table: "plugin_versions" using primary key columns""" - plugin_versions_by_pk(runtime: e_plugin_runtimes_enum!, version: String!): plugin_versions - - """ - fetch data from the table: "push_subscriptions" - """ - push_subscriptions( - """distinct select on columns""" - distinct_on: [push_subscriptions_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: [push_subscriptions_order_by!] - - """filter the rows returned""" - where: push_subscriptions_bool_exp - ): [push_subscriptions!]! - - """ - fetch aggregated fields from the table: "push_subscriptions" - """ - push_subscriptions_aggregate( - """distinct select on columns""" - distinct_on: [push_subscriptions_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: [push_subscriptions_order_by!] - - """filter the rows returned""" - where: push_subscriptions_bool_exp - ): push_subscriptions_aggregate! - - """ - fetch data from the table: "push_subscriptions" using primary key columns - """ - push_subscriptions_by_pk(id: uuid!): push_subscriptions - - """Read file content from game server""" - readServerFile(file_path: String!, node_id: String!, server_id: String): FileContentResponse! - - """ - fetch data from the table: "v_role_permissions" - """ - role_permissions( - """distinct select on columns""" - distinct_on: [role_permissions_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: [role_permissions_order_by!] - - """filter the rows returned""" - where: role_permissions_bool_exp - ): [role_permissions!]! - - """ - fetch aggregated fields from the table: "v_role_permissions" - """ - role_permissions_aggregate( - """distinct select on columns""" - distinct_on: [role_permissions_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: [role_permissions_order_by!] - - """filter the rows returned""" - where: role_permissions_bool_exp - ): role_permissions_aggregate! - - """ - fetch data from the table: "seasons" - """ - seasons( - """distinct select on columns""" - distinct_on: [seasons_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: [seasons_order_by!] - - """filter the rows returned""" - where: seasons_bool_exp - ): [seasons!]! - - """ - fetch aggregated fields from the table: "seasons" - """ - seasons_aggregate( - """distinct select on columns""" - distinct_on: [seasons_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: [seasons_order_by!] - - """filter the rows returned""" - where: seasons_bool_exp - ): seasons_aggregate! - - """fetch data from the table: "seasons" using primary key columns""" - seasons_by_pk(id: uuid!): seasons - - """ - fetch data from the table: "server_regions" - """ - server_regions( - """distinct select on columns""" - distinct_on: [server_regions_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: [server_regions_order_by!] - - """filter the rows returned""" - where: server_regions_bool_exp - ): [server_regions!]! - - """ - fetch aggregated fields from the table: "server_regions" - """ - server_regions_aggregate( - """distinct select on columns""" - distinct_on: [server_regions_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: [server_regions_order_by!] - - """filter the rows returned""" - where: server_regions_bool_exp - ): server_regions_aggregate! - - """fetch data from the table: "server_regions" using primary key columns""" - server_regions_by_pk(value: String!): server_regions - - """An array relationship""" - servers( - """distinct select on columns""" - distinct_on: [servers_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: [servers_order_by!] - - """filter the rows returned""" - where: servers_bool_exp - ): [servers!]! - - """An aggregate relationship""" - servers_aggregate( - """distinct select on columns""" - distinct_on: [servers_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: [servers_order_by!] - - """filter the rows returned""" - where: servers_bool_exp - ): servers_aggregate! - - """fetch data from the table: "servers" using primary key columns""" - servers_by_pk(id: uuid!): servers - - """ - fetch data from the table: "settings" - """ - settings( - """distinct select on columns""" - distinct_on: [settings_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: [settings_order_by!] - - """filter the rows returned""" - where: settings_bool_exp - ): [settings!]! - - """ - fetch aggregated fields from the table: "settings" - """ - settings_aggregate( - """distinct select on columns""" - distinct_on: [settings_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: [settings_order_by!] - - """filter the rows returned""" - where: settings_bool_exp - ): settings_aggregate! - - """fetch data from the table: "settings" using primary key columns""" - settings_by_pk(name: String!): settings - - """Steam presence bot admin dashboard status""" - steamPresenceAdminStatus: SteamPresenceAdminStatusOutput! - - """ - fetch data from the table: "steam_account_claims" - """ - steam_account_claims( - """distinct select on columns""" - distinct_on: [steam_account_claims_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: [steam_account_claims_order_by!] - - """filter the rows returned""" - where: steam_account_claims_bool_exp - ): [steam_account_claims!]! - - """ - fetch aggregated fields from the table: "steam_account_claims" - """ - steam_account_claims_aggregate( - """distinct select on columns""" - distinct_on: [steam_account_claims_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: [steam_account_claims_order_by!] - - """filter the rows returned""" - where: steam_account_claims_bool_exp - ): steam_account_claims_aggregate! - - """ - fetch data from the table: "steam_account_claims" using primary key columns - """ - steam_account_claims_by_pk(id: uuid!): steam_account_claims - - """ - fetch data from the table: "steam_accounts" - """ - steam_accounts( - """distinct select on columns""" - distinct_on: [steam_accounts_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: [steam_accounts_order_by!] - - """filter the rows returned""" - where: steam_accounts_bool_exp - ): [steam_accounts!]! - - """ - fetch aggregated fields from the table: "steam_accounts" - """ - steam_accounts_aggregate( - """distinct select on columns""" - distinct_on: [steam_accounts_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: [steam_accounts_order_by!] - - """filter the rows returned""" - where: steam_accounts_bool_exp - ): steam_accounts_aggregate! - - """fetch data from the table: "steam_accounts" using primary key columns""" - steam_accounts_by_pk(id: uuid!): steam_accounts - - """ - fetch data from the table: "system_alerts" - """ - system_alerts( - """distinct select on columns""" - distinct_on: [system_alerts_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: [system_alerts_order_by!] - - """filter the rows returned""" - where: system_alerts_bool_exp - ): [system_alerts!]! - - """ - fetch aggregated fields from the table: "system_alerts" - """ - system_alerts_aggregate( - """distinct select on columns""" - distinct_on: [system_alerts_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: [system_alerts_order_by!] - - """filter the rows returned""" - where: system_alerts_bool_exp - ): system_alerts_aggregate! - - """fetch data from the table: "system_alerts" using primary key columns""" - system_alerts_by_pk(id: uuid!): system_alerts - - """teamCalendarUrl""" - teamCalendarUrl(team_id: uuid!): TeamCalendarOutput - - """An array relationship""" - team_invites( - """distinct select on columns""" - distinct_on: [team_invites_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: [team_invites_order_by!] - - """filter the rows returned""" - where: team_invites_bool_exp - ): [team_invites!]! - - """An aggregate relationship""" - team_invites_aggregate( - """distinct select on columns""" - distinct_on: [team_invites_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: [team_invites_order_by!] - - """filter the rows returned""" - where: team_invites_bool_exp - ): team_invites_aggregate! - - """fetch data from the table: "team_invites" using primary key columns""" - team_invites_by_pk(id: uuid!): team_invites - - """ - fetch data from the table: "team_roster" - """ - team_roster( - """distinct select on columns""" - distinct_on: [team_roster_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: [team_roster_order_by!] - - """filter the rows returned""" - where: team_roster_bool_exp - ): [team_roster!]! - - """ - fetch aggregated fields from the table: "team_roster" - """ - team_roster_aggregate( - """distinct select on columns""" - distinct_on: [team_roster_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: [team_roster_order_by!] - - """filter the rows returned""" - where: team_roster_bool_exp - ): team_roster_aggregate! - - """fetch data from the table: "team_roster" using primary key columns""" - team_roster_by_pk(player_steam_id: bigint!, team_id: uuid!): team_roster - - """ - fetch data from the table: "team_scrim_alerts" - """ - team_scrim_alerts( - """distinct select on columns""" - distinct_on: [team_scrim_alerts_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: [team_scrim_alerts_order_by!] - - """filter the rows returned""" - where: team_scrim_alerts_bool_exp - ): [team_scrim_alerts!]! - - """ - fetch aggregated fields from the table: "team_scrim_alerts" - """ - team_scrim_alerts_aggregate( - """distinct select on columns""" - distinct_on: [team_scrim_alerts_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: [team_scrim_alerts_order_by!] - - """filter the rows returned""" - where: team_scrim_alerts_bool_exp - ): team_scrim_alerts_aggregate! - - """ - fetch data from the table: "team_scrim_alerts" using primary key columns - """ - team_scrim_alerts_by_pk(id: uuid!): team_scrim_alerts - - """ - fetch data from the table: "team_scrim_availability" - """ - team_scrim_availability( - """distinct select on columns""" - distinct_on: [team_scrim_availability_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: [team_scrim_availability_order_by!] - - """filter the rows returned""" - where: team_scrim_availability_bool_exp - ): [team_scrim_availability!]! - - """ - fetch aggregated fields from the table: "team_scrim_availability" - """ - team_scrim_availability_aggregate( - """distinct select on columns""" - distinct_on: [team_scrim_availability_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: [team_scrim_availability_order_by!] - - """filter the rows returned""" - where: team_scrim_availability_bool_exp - ): team_scrim_availability_aggregate! - - """ - fetch data from the table: "team_scrim_availability" using primary key columns - """ - team_scrim_availability_by_pk(id: uuid!): team_scrim_availability - - """ - fetch data from the table: "team_scrim_request_proposals" - """ - team_scrim_request_proposals( - """distinct select on columns""" - distinct_on: [team_scrim_request_proposals_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: [team_scrim_request_proposals_order_by!] - - """filter the rows returned""" - where: team_scrim_request_proposals_bool_exp - ): [team_scrim_request_proposals!]! - - """ - fetch aggregated fields from the table: "team_scrim_request_proposals" - """ - team_scrim_request_proposals_aggregate( - """distinct select on columns""" - distinct_on: [team_scrim_request_proposals_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: [team_scrim_request_proposals_order_by!] - - """filter the rows returned""" - where: team_scrim_request_proposals_bool_exp - ): team_scrim_request_proposals_aggregate! - - """ - fetch data from the table: "team_scrim_request_proposals" using primary key columns - """ - team_scrim_request_proposals_by_pk(id: uuid!): team_scrim_request_proposals - - """ - fetch data from the table: "team_scrim_requests" - """ - team_scrim_requests( - """distinct select on columns""" - distinct_on: [team_scrim_requests_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: [team_scrim_requests_order_by!] - - """filter the rows returned""" - where: team_scrim_requests_bool_exp - ): [team_scrim_requests!]! - - """ - fetch aggregated fields from the table: "team_scrim_requests" - """ - team_scrim_requests_aggregate( - """distinct select on columns""" - distinct_on: [team_scrim_requests_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: [team_scrim_requests_order_by!] - - """filter the rows returned""" - where: team_scrim_requests_bool_exp - ): team_scrim_requests_aggregate! - - """ - fetch data from the table: "team_scrim_requests" using primary key columns - """ - team_scrim_requests_by_pk(id: uuid!): team_scrim_requests - - """ - fetch data from the table: "team_scrim_settings" - """ - team_scrim_settings( - """distinct select on columns""" - distinct_on: [team_scrim_settings_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: [team_scrim_settings_order_by!] - - """filter the rows returned""" - where: team_scrim_settings_bool_exp - ): [team_scrim_settings!]! - - """ - fetch aggregated fields from the table: "team_scrim_settings" - """ - team_scrim_settings_aggregate( - """distinct select on columns""" - distinct_on: [team_scrim_settings_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: [team_scrim_settings_order_by!] - - """filter the rows returned""" - where: team_scrim_settings_bool_exp - ): team_scrim_settings_aggregate! - - """ - fetch data from the table: "team_scrim_settings" using primary key columns - """ - team_scrim_settings_by_pk(id: uuid!): team_scrim_settings - - """ - fetch data from the table: "team_suggestions" - """ - team_suggestions( - """distinct select on columns""" - distinct_on: [team_suggestions_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: [team_suggestions_order_by!] - - """filter the rows returned""" - where: team_suggestions_bool_exp - ): [team_suggestions!]! - - """ - fetch aggregated fields from the table: "team_suggestions" - """ - team_suggestions_aggregate( - """distinct select on columns""" - distinct_on: [team_suggestions_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: [team_suggestions_order_by!] - - """filter the rows returned""" - where: team_suggestions_bool_exp - ): team_suggestions_aggregate! - - """ - fetch data from the table: "team_suggestions" using primary key columns - """ - team_suggestions_by_pk(id: uuid!): team_suggestions - - """ - fetch data from the table: "teams" - """ - teams( - """distinct select on columns""" - distinct_on: [teams_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [teams_order_by!] - - """filter the rows returned""" - where: teams_bool_exp - ): [teams!]! - - """ - fetch aggregated fields from the table: "teams" - """ - teams_aggregate( - """distinct select on columns""" - distinct_on: [teams_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [teams_order_by!] - - """filter the rows returned""" - where: teams_bool_exp - ): teams_aggregate! - - """fetch data from the table: "teams" using primary key columns""" - teams_by_pk(id: uuid!): teams - telemetryStats(includeSelf: Boolean): TelemetryStats! - - """ - fetch data from the table: "tournament_awards" - """ - tournament_awards( - """distinct select on columns""" - distinct_on: [tournament_awards_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_awards_order_by!] - - """filter the rows returned""" - where: tournament_awards_bool_exp - ): [tournament_awards!]! - - """ - fetch aggregated fields from the table: "tournament_awards" - """ - tournament_awards_aggregate( - """distinct select on columns""" - distinct_on: [tournament_awards_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_awards_order_by!] - - """filter the rows returned""" - where: tournament_awards_bool_exp - ): tournament_awards_aggregate! - - """ - fetch data from the table: "tournament_awards" using primary key columns - """ - tournament_awards_by_pk(id: uuid!): tournament_awards - - """An array relationship""" - tournament_brackets( - """distinct select on columns""" - distinct_on: [tournament_brackets_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_brackets_order_by!] - - """filter the rows returned""" - where: tournament_brackets_bool_exp - ): [tournament_brackets!]! - - """An aggregate relationship""" - tournament_brackets_aggregate( - """distinct select on columns""" - distinct_on: [tournament_brackets_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_brackets_order_by!] - - """filter the rows returned""" - where: tournament_brackets_bool_exp - ): tournament_brackets_aggregate! - - """ - fetch data from the table: "tournament_brackets" using primary key columns - """ - tournament_brackets_by_pk(id: uuid!): tournament_brackets - - """An array relationship""" - tournament_categories( - """distinct select on columns""" - distinct_on: [tournament_categories_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_categories_order_by!] - - """filter the rows returned""" - where: tournament_categories_bool_exp - ): [tournament_categories!]! - - """An aggregate relationship""" - tournament_categories_aggregate( - """distinct select on columns""" - distinct_on: [tournament_categories_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_categories_order_by!] - - """filter the rows returned""" - where: tournament_categories_bool_exp - ): tournament_categories_aggregate! - - """ - fetch data from the table: "tournament_categories" using primary key columns - """ - tournament_categories_by_pk(category: e_tournament_categories_enum!, tournament_id: uuid!): tournament_categories - - """An array relationship""" - tournament_free_agents( - """distinct select on columns""" - distinct_on: [tournament_free_agents_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_free_agents_order_by!] - - """filter the rows returned""" - where: tournament_free_agents_bool_exp - ): [tournament_free_agents!]! - - """An aggregate relationship""" - tournament_free_agents_aggregate( - """distinct select on columns""" - distinct_on: [tournament_free_agents_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_free_agents_order_by!] - - """filter the rows returned""" - where: tournament_free_agents_bool_exp - ): tournament_free_agents_aggregate! - - """ - fetch data from the table: "tournament_free_agents" using primary key columns - """ - tournament_free_agents_by_pk(id: uuid!): tournament_free_agents - - """ - fetch data from the table: "tournament_invite_code_uses" - """ - tournament_invite_code_uses( - """distinct select on columns""" - distinct_on: [tournament_invite_code_uses_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_invite_code_uses_order_by!] - - """filter the rows returned""" - where: tournament_invite_code_uses_bool_exp - ): [tournament_invite_code_uses!]! - - """ - fetch aggregated fields from the table: "tournament_invite_code_uses" - """ - tournament_invite_code_uses_aggregate( - """distinct select on columns""" - distinct_on: [tournament_invite_code_uses_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_invite_code_uses_order_by!] - - """filter the rows returned""" - where: tournament_invite_code_uses_bool_exp - ): tournament_invite_code_uses_aggregate! - - """ - fetch data from the table: "tournament_invite_code_uses" using primary key columns - """ - tournament_invite_code_uses_by_pk(invite_code_id: uuid!, player_steam_id: bigint!): tournament_invite_code_uses - - """ - fetch data from the table: "tournament_invite_codes" - """ - tournament_invite_codes( - """distinct select on columns""" - distinct_on: [tournament_invite_codes_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_invite_codes_order_by!] - - """filter the rows returned""" - where: tournament_invite_codes_bool_exp - ): [tournament_invite_codes!]! - - """ - fetch aggregated fields from the table: "tournament_invite_codes" - """ - tournament_invite_codes_aggregate( - """distinct select on columns""" - distinct_on: [tournament_invite_codes_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_invite_codes_order_by!] - - """filter the rows returned""" - where: tournament_invite_codes_bool_exp - ): tournament_invite_codes_aggregate! - - """ - fetch data from the table: "tournament_invite_codes" using primary key columns - """ - tournament_invite_codes_by_pk(id: uuid!): tournament_invite_codes - - """ - fetch data from the table: "tournament_invites" - """ - tournament_invites( - """distinct select on columns""" - distinct_on: [tournament_invites_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_invites_order_by!] - - """filter the rows returned""" - where: tournament_invites_bool_exp - ): [tournament_invites!]! - - """ - fetch aggregated fields from the table: "tournament_invites" - """ - tournament_invites_aggregate( - """distinct select on columns""" - distinct_on: [tournament_invites_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_invites_order_by!] - - """filter the rows returned""" - where: tournament_invites_bool_exp - ): tournament_invites_aggregate! - - """ - fetch data from the table: "tournament_invites" using primary key columns - """ - tournament_invites_by_pk(id: uuid!): tournament_invites - - """ - fetch data from the table: "tournament_leaderboard_entries" - """ - tournament_leaderboard_entries( - """distinct select on columns""" - distinct_on: [tournament_leaderboard_entries_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_leaderboard_entries_order_by!] - - """filter the rows returned""" - where: tournament_leaderboard_entries_bool_exp - ): [tournament_leaderboard_entries!]! - - """ - fetch aggregated fields from the table: "tournament_leaderboard_entries" - """ - tournament_leaderboard_entries_aggregate( - """distinct select on columns""" - distinct_on: [tournament_leaderboard_entries_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_leaderboard_entries_order_by!] - - """filter the rows returned""" - where: tournament_leaderboard_entries_bool_exp - ): tournament_leaderboard_entries_aggregate! - - """ - fetch data from the table: "tournament_no_shows" - """ - tournament_no_shows( - """distinct select on columns""" - distinct_on: [tournament_no_shows_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_no_shows_order_by!] - - """filter the rows returned""" - where: tournament_no_shows_bool_exp - ): [tournament_no_shows!]! - - """ - fetch aggregated fields from the table: "tournament_no_shows" - """ - tournament_no_shows_aggregate( - """distinct select on columns""" - distinct_on: [tournament_no_shows_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_no_shows_order_by!] - - """filter the rows returned""" - where: tournament_no_shows_bool_exp - ): tournament_no_shows_aggregate! - - """ - fetch data from the table: "tournament_no_shows" using primary key columns - """ - tournament_no_shows_by_pk(id: uuid!): tournament_no_shows - - """ - fetch data from the table: "tournament_organizer_teams" - """ - tournament_organizer_teams( - """distinct select on columns""" - distinct_on: [tournament_organizer_teams_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_organizer_teams_order_by!] - - """filter the rows returned""" - where: tournament_organizer_teams_bool_exp - ): [tournament_organizer_teams!]! - - """ - fetch aggregated fields from the table: "tournament_organizer_teams" - """ - tournament_organizer_teams_aggregate( - """distinct select on columns""" - distinct_on: [tournament_organizer_teams_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_organizer_teams_order_by!] - - """filter the rows returned""" - where: tournament_organizer_teams_bool_exp - ): tournament_organizer_teams_aggregate! - - """ - fetch data from the table: "tournament_organizer_teams" using primary key columns - """ - tournament_organizer_teams_by_pk(team_id: uuid!, tournament_id: uuid!): tournament_organizer_teams - - """An array relationship""" - tournament_organizers( - """distinct select on columns""" - distinct_on: [tournament_organizers_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_organizers_order_by!] - - """filter the rows returned""" - where: tournament_organizers_bool_exp - ): [tournament_organizers!]! - - """An aggregate relationship""" - tournament_organizers_aggregate( - """distinct select on columns""" - distinct_on: [tournament_organizers_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_organizers_order_by!] - - """filter the rows returned""" - where: tournament_organizers_bool_exp - ): tournament_organizers_aggregate! - - """ - fetch data from the table: "tournament_organizers" using primary key columns - """ - tournament_organizers_by_pk(steam_id: bigint!, tournament_id: uuid!): tournament_organizers - - """ - fetch data from the table: "tournament_prizes" - """ - tournament_prizes( - """distinct select on columns""" - distinct_on: [tournament_prizes_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_prizes_order_by!] - - """filter the rows returned""" - where: tournament_prizes_bool_exp - ): [tournament_prizes!]! - - """ - fetch aggregated fields from the table: "tournament_prizes" - """ - tournament_prizes_aggregate( - """distinct select on columns""" - distinct_on: [tournament_prizes_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_prizes_order_by!] - - """filter the rows returned""" - where: tournament_prizes_bool_exp - ): tournament_prizes_aggregate! - - """ - fetch data from the table: "tournament_prizes" using primary key columns - """ - tournament_prizes_by_pk(id: uuid!): tournament_prizes - - """ - fetch data from the table: "tournament_registration_unlocks" - """ - tournament_registration_unlocks( - """distinct select on columns""" - distinct_on: [tournament_registration_unlocks_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_registration_unlocks_order_by!] - - """filter the rows returned""" - where: tournament_registration_unlocks_bool_exp - ): [tournament_registration_unlocks!]! - - """ - fetch aggregated fields from the table: "tournament_registration_unlocks" - """ - tournament_registration_unlocks_aggregate( - """distinct select on columns""" - distinct_on: [tournament_registration_unlocks_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_registration_unlocks_order_by!] - - """filter the rows returned""" - where: tournament_registration_unlocks_bool_exp - ): tournament_registration_unlocks_aggregate! - - """ - fetch data from the table: "tournament_stage_windows" - """ - tournament_stage_windows( - """distinct select on columns""" - distinct_on: [tournament_stage_windows_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_stage_windows_order_by!] - - """filter the rows returned""" - where: tournament_stage_windows_bool_exp - ): [tournament_stage_windows!]! - - """ - fetch aggregated fields from the table: "tournament_stage_windows" - """ - tournament_stage_windows_aggregate( - """distinct select on columns""" - distinct_on: [tournament_stage_windows_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_stage_windows_order_by!] - - """filter the rows returned""" - where: tournament_stage_windows_bool_exp - ): tournament_stage_windows_aggregate! - - """ - fetch data from the table: "tournament_stage_windows" using primary key columns - """ - tournament_stage_windows_by_pk(id: uuid!): tournament_stage_windows - - """An array relationship""" - tournament_stages( - """distinct select on columns""" - distinct_on: [tournament_stages_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_stages_order_by!] - - """filter the rows returned""" - where: tournament_stages_bool_exp - ): [tournament_stages!]! - - """An aggregate relationship""" - tournament_stages_aggregate( - """distinct select on columns""" - distinct_on: [tournament_stages_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_stages_order_by!] - - """filter the rows returned""" - where: tournament_stages_bool_exp - ): tournament_stages_aggregate! - - """ - fetch data from the table: "tournament_stages" using primary key columns - """ - tournament_stages_by_pk(id: uuid!): tournament_stages - - """ - fetch data from the table: "tournament_team_invites" - """ - tournament_team_invites( - """distinct select on columns""" - distinct_on: [tournament_team_invites_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_team_invites_order_by!] - - """filter the rows returned""" - where: tournament_team_invites_bool_exp - ): [tournament_team_invites!]! - - """ - fetch aggregated fields from the table: "tournament_team_invites" - """ - tournament_team_invites_aggregate( - """distinct select on columns""" - distinct_on: [tournament_team_invites_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_team_invites_order_by!] - - """filter the rows returned""" - where: tournament_team_invites_bool_exp - ): tournament_team_invites_aggregate! - - """ - fetch data from the table: "tournament_team_invites" using primary key columns - """ - tournament_team_invites_by_pk(id: uuid!): tournament_team_invites - - """ - fetch data from the table: "tournament_team_roster" - """ - tournament_team_roster( - """distinct select on columns""" - distinct_on: [tournament_team_roster_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_team_roster_order_by!] - - """filter the rows returned""" - where: tournament_team_roster_bool_exp - ): [tournament_team_roster!]! - - """ - fetch aggregated fields from the table: "tournament_team_roster" - """ - tournament_team_roster_aggregate( - """distinct select on columns""" - distinct_on: [tournament_team_roster_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_team_roster_order_by!] - - """filter the rows returned""" - where: tournament_team_roster_bool_exp - ): tournament_team_roster_aggregate! - - """ - fetch data from the table: "tournament_team_roster" using primary key columns - """ - tournament_team_roster_by_pk(player_steam_id: bigint!, tournament_id: uuid!): tournament_team_roster - - """An array relationship""" - tournament_teams( - """distinct select on columns""" - distinct_on: [tournament_teams_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_teams_order_by!] - - """filter the rows returned""" - where: tournament_teams_bool_exp - ): [tournament_teams!]! - - """An aggregate relationship""" - tournament_teams_aggregate( - """distinct select on columns""" - distinct_on: [tournament_teams_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_teams_order_by!] - - """filter the rows returned""" - where: tournament_teams_bool_exp - ): tournament_teams_aggregate! - - """ - fetch data from the table: "tournament_teams" using primary key columns - """ - tournament_teams_by_pk(id: uuid!): tournament_teams - - """An array relationship""" - tournaments( - """distinct select on columns""" - distinct_on: [tournaments_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournaments_order_by!] - - """filter the rows returned""" - where: tournaments_bool_exp - ): [tournaments!]! - - """An aggregate relationship""" - tournaments_aggregate( - """distinct select on columns""" - distinct_on: [tournaments_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournaments_order_by!] - - """filter the rows returned""" - where: tournaments_bool_exp - ): tournaments_aggregate! - - """fetch data from the table: "tournaments" using primary key columns""" - tournaments_by_pk(id: uuid!): tournaments - - """Which way everybody misses one lineup, from their practice throws""" - utilityLineupMissPattern(utility_lineup_id: uuid!): UtilityMissPatternOutput - - """Report a player's mined utility throws for a match""" - utilityMatchUtilityReport(match_id: uuid!, steam_id: String): UtilityUtilityReportOutput - - """Rank what to practise next on a map from the mined meta""" - utilityPracticePlan(limit: Int, map_name: String!, order: String, side: String): UtilityPracticePlanOutput - - """Dedicated practice servers free to book right now""" - utilityPracticeServers: UtilityPracticeServersOutput - utilityPracticeWhereAmI: UtilityPracticeWhereOutput - - """Read the practice server solver's calibration gate""" - utilitySolverCalibration(session_id: uuid!): UtilityCalibrationOutput - - """Aggregate a team's mined utility throws against its saved lineups""" - utilityTeamUtilityReport(limit: Int, map_name: String, team_id: uuid!): UtilityTeamUtilityOutput - - """ - fetch data from the table: "utility_collection_items" - """ - utility_collection_items( - """distinct select on columns""" - distinct_on: [utility_collection_items_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: [utility_collection_items_order_by!] - - """filter the rows returned""" - where: utility_collection_items_bool_exp - ): [utility_collection_items!]! - - """ - fetch aggregated fields from the table: "utility_collection_items" - """ - utility_collection_items_aggregate( - """distinct select on columns""" - distinct_on: [utility_collection_items_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: [utility_collection_items_order_by!] - - """filter the rows returned""" - where: utility_collection_items_bool_exp - ): utility_collection_items_aggregate! - - """ - fetch data from the table: "utility_collection_items" using primary key columns - """ - utility_collection_items_by_pk(collection_id: uuid!, utility_lineup_id: uuid!): utility_collection_items - - """ - fetch data from the table: "utility_collections" - """ - utility_collections( - """distinct select on columns""" - distinct_on: [utility_collections_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: [utility_collections_order_by!] - - """filter the rows returned""" - where: utility_collections_bool_exp - ): [utility_collections!]! - - """ - fetch aggregated fields from the table: "utility_collections" - """ - utility_collections_aggregate( - """distinct select on columns""" - distinct_on: [utility_collections_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: [utility_collections_order_by!] - - """filter the rows returned""" - where: utility_collections_bool_exp - ): utility_collections_aggregate! - - """ - fetch data from the table: "utility_collections" using primary key columns - """ - utility_collections_by_pk(id: uuid!): utility_collections - - """ - fetch data from the table: "utility_demo_mines" - """ - utility_demo_mines( - """distinct select on columns""" - distinct_on: [utility_demo_mines_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: [utility_demo_mines_order_by!] - - """filter the rows returned""" - where: utility_demo_mines_bool_exp - ): [utility_demo_mines!]! - - """ - fetch aggregated fields from the table: "utility_demo_mines" - """ - utility_demo_mines_aggregate( - """distinct select on columns""" - distinct_on: [utility_demo_mines_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: [utility_demo_mines_order_by!] - - """filter the rows returned""" - where: utility_demo_mines_bool_exp - ): utility_demo_mines_aggregate! - - """ - fetch data from the table: "utility_demo_mines" using primary key columns - """ - utility_demo_mines_by_pk(match_map_demo_id: uuid!): utility_demo_mines - - """ - fetch data from the table: "utility_demo_throws" - """ - utility_demo_throws( - """distinct select on columns""" - distinct_on: [utility_demo_throws_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: [utility_demo_throws_order_by!] - - """filter the rows returned""" - where: utility_demo_throws_bool_exp - ): [utility_demo_throws!]! - - """ - fetch aggregated fields from the table: "utility_demo_throws" - """ - utility_demo_throws_aggregate( - """distinct select on columns""" - distinct_on: [utility_demo_throws_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: [utility_demo_throws_order_by!] - - """filter the rows returned""" - where: utility_demo_throws_bool_exp - ): utility_demo_throws_aggregate! - - """ - fetch data from the table: "utility_demo_throws" using primary key columns - """ - utility_demo_throws_by_pk(grenade_id: Int!, match_map_demo_id: uuid!): utility_demo_throws - - """ - fetch data from the table: "utility_drift_results" - """ - utility_drift_results( - """distinct select on columns""" - distinct_on: [utility_drift_results_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: [utility_drift_results_order_by!] - - """filter the rows returned""" - where: utility_drift_results_bool_exp - ): [utility_drift_results!]! - - """ - fetch aggregated fields from the table: "utility_drift_results" - """ - utility_drift_results_aggregate( - """distinct select on columns""" - distinct_on: [utility_drift_results_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: [utility_drift_results_order_by!] - - """filter the rows returned""" - where: utility_drift_results_bool_exp - ): utility_drift_results_aggregate! - - """ - fetch data from the table: "utility_drift_results" using primary key columns - """ - utility_drift_results_by_pk(utility_drift_scan_id: uuid!, utility_lineup_id: uuid!): utility_drift_results - - """ - fetch data from the table: "utility_drift_scans" - """ - utility_drift_scans( - """distinct select on columns""" - distinct_on: [utility_drift_scans_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: [utility_drift_scans_order_by!] - - """filter the rows returned""" - where: utility_drift_scans_bool_exp - ): [utility_drift_scans!]! - - """ - fetch aggregated fields from the table: "utility_drift_scans" - """ - utility_drift_scans_aggregate( - """distinct select on columns""" - distinct_on: [utility_drift_scans_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: [utility_drift_scans_order_by!] - - """filter the rows returned""" - where: utility_drift_scans_bool_exp - ): utility_drift_scans_aggregate! - - """ - fetch data from the table: "utility_drift_scans" using primary key columns - """ - utility_drift_scans_by_pk(id: uuid!): utility_drift_scans - - """ - fetch data from the table: "utility_lineup_favorites" - """ - utility_lineup_favorites( - """distinct select on columns""" - distinct_on: [utility_lineup_favorites_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: [utility_lineup_favorites_order_by!] - - """filter the rows returned""" - where: utility_lineup_favorites_bool_exp - ): [utility_lineup_favorites!]! - - """ - fetch aggregated fields from the table: "utility_lineup_favorites" - """ - utility_lineup_favorites_aggregate( - """distinct select on columns""" - distinct_on: [utility_lineup_favorites_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: [utility_lineup_favorites_order_by!] - - """filter the rows returned""" - where: utility_lineup_favorites_bool_exp - ): utility_lineup_favorites_aggregate! - - """ - fetch data from the table: "utility_lineup_favorites" using primary key columns - """ - utility_lineup_favorites_by_pk(steam_id: bigint!, utility_lineup_id: uuid!): utility_lineup_favorites - - """ - fetch data from the table: "utility_lineup_progress" - """ - utility_lineup_progress( - """distinct select on columns""" - distinct_on: [utility_lineup_progress_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: [utility_lineup_progress_order_by!] - - """filter the rows returned""" - where: utility_lineup_progress_bool_exp - ): [utility_lineup_progress!]! - - """ - fetch aggregated fields from the table: "utility_lineup_progress" - """ - utility_lineup_progress_aggregate( - """distinct select on columns""" - distinct_on: [utility_lineup_progress_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: [utility_lineup_progress_order_by!] - - """filter the rows returned""" - where: utility_lineup_progress_bool_exp - ): utility_lineup_progress_aggregate! - - """ - fetch data from the table: "utility_lineup_progress" using primary key columns - """ - utility_lineup_progress_by_pk(steam_id: bigint!, utility_lineup_id: uuid!): utility_lineup_progress - - """ - fetch data from the table: "utility_lineup_renders" - """ - utility_lineup_renders( - """distinct select on columns""" - distinct_on: [utility_lineup_renders_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: [utility_lineup_renders_order_by!] - - """filter the rows returned""" - where: utility_lineup_renders_bool_exp - ): [utility_lineup_renders!]! - - """ - fetch aggregated fields from the table: "utility_lineup_renders" - """ - utility_lineup_renders_aggregate( - """distinct select on columns""" - distinct_on: [utility_lineup_renders_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: [utility_lineup_renders_order_by!] - - """filter the rows returned""" - where: utility_lineup_renders_bool_exp - ): utility_lineup_renders_aggregate! - - """ - fetch data from the table: "utility_lineup_renders" using primary key columns - """ - utility_lineup_renders_by_pk(id: uuid!): utility_lineup_renders - - """ - fetch data from the table: "utility_lineup_repairs" - """ - utility_lineup_repairs( - """distinct select on columns""" - distinct_on: [utility_lineup_repairs_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: [utility_lineup_repairs_order_by!] - - """filter the rows returned""" - where: utility_lineup_repairs_bool_exp - ): [utility_lineup_repairs!]! - - """ - fetch aggregated fields from the table: "utility_lineup_repairs" - """ - utility_lineup_repairs_aggregate( - """distinct select on columns""" - distinct_on: [utility_lineup_repairs_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: [utility_lineup_repairs_order_by!] - - """filter the rows returned""" - where: utility_lineup_repairs_bool_exp - ): utility_lineup_repairs_aggregate! - - """ - fetch data from the table: "utility_lineup_repairs" using primary key columns - """ - utility_lineup_repairs_by_pk(id: uuid!): utility_lineup_repairs - - """ - fetch data from the table: "utility_lineup_votes" - """ - utility_lineup_votes( - """distinct select on columns""" - distinct_on: [utility_lineup_votes_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: [utility_lineup_votes_order_by!] - - """filter the rows returned""" - where: utility_lineup_votes_bool_exp - ): [utility_lineup_votes!]! - - """ - fetch aggregated fields from the table: "utility_lineup_votes" - """ - utility_lineup_votes_aggregate( - """distinct select on columns""" - distinct_on: [utility_lineup_votes_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: [utility_lineup_votes_order_by!] - - """filter the rows returned""" - where: utility_lineup_votes_bool_exp - ): utility_lineup_votes_aggregate! - - """ - fetch data from the table: "utility_lineup_votes" using primary key columns - """ - utility_lineup_votes_by_pk(steam_id: bigint!, utility_lineup_id: uuid!): utility_lineup_votes - - """An array relationship""" - utility_lineups( - """distinct select on columns""" - distinct_on: [utility_lineups_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: [utility_lineups_order_by!] - - """filter the rows returned""" - where: utility_lineups_bool_exp - ): [utility_lineups!]! - - """An aggregate relationship""" - utility_lineups_aggregate( - """distinct select on columns""" - distinct_on: [utility_lineups_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: [utility_lineups_order_by!] - - """filter the rows returned""" - where: utility_lineups_bool_exp - ): utility_lineups_aggregate! - - """fetch data from the table: "utility_lineups" using primary key columns""" - utility_lineups_by_pk(id: uuid!): utility_lineups - - """ - fetch data from the table: "utility_meta_lineups" - """ - utility_meta_lineups( - """distinct select on columns""" - distinct_on: [utility_meta_lineups_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: [utility_meta_lineups_order_by!] - - """filter the rows returned""" - where: utility_meta_lineups_bool_exp - ): [utility_meta_lineups!]! - - """ - fetch aggregated fields from the table: "utility_meta_lineups" - """ - utility_meta_lineups_aggregate( - """distinct select on columns""" - distinct_on: [utility_meta_lineups_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: [utility_meta_lineups_order_by!] - - """filter the rows returned""" - where: utility_meta_lineups_bool_exp - ): utility_meta_lineups_aggregate! - - """ - fetch data from the table: "utility_meta_lineups" using primary key columns - """ - utility_meta_lineups_by_pk(lineup_bucket: String!): utility_meta_lineups - - """ - fetch data from the table: "utility_playbook_steps" - """ - utility_playbook_steps( - """distinct select on columns""" - distinct_on: [utility_playbook_steps_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: [utility_playbook_steps_order_by!] - - """filter the rows returned""" - where: utility_playbook_steps_bool_exp - ): [utility_playbook_steps!]! - - """ - fetch aggregated fields from the table: "utility_playbook_steps" - """ - utility_playbook_steps_aggregate( - """distinct select on columns""" - distinct_on: [utility_playbook_steps_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: [utility_playbook_steps_order_by!] - - """filter the rows returned""" - where: utility_playbook_steps_bool_exp - ): utility_playbook_steps_aggregate! - - """ - fetch data from the table: "utility_playbook_steps" using primary key columns - """ - utility_playbook_steps_by_pk(id: uuid!): utility_playbook_steps - - """ - fetch data from the table: "utility_playbooks" - """ - utility_playbooks( - """distinct select on columns""" - distinct_on: [utility_playbooks_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: [utility_playbooks_order_by!] - - """filter the rows returned""" - where: utility_playbooks_bool_exp - ): [utility_playbooks!]! - - """ - fetch aggregated fields from the table: "utility_playbooks" - """ - utility_playbooks_aggregate( - """distinct select on columns""" - distinct_on: [utility_playbooks_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: [utility_playbooks_order_by!] - - """filter the rows returned""" - where: utility_playbooks_bool_exp - ): utility_playbooks_aggregate! - - """ - fetch data from the table: "utility_playbooks" using primary key columns - """ - utility_playbooks_by_pk(id: uuid!): utility_playbooks - - """ - fetch data from the table: "utility_practice_invites" - """ - utility_practice_invites( - """distinct select on columns""" - distinct_on: [utility_practice_invites_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: [utility_practice_invites_order_by!] - - """filter the rows returned""" - where: utility_practice_invites_bool_exp - ): [utility_practice_invites!]! - - """ - fetch aggregated fields from the table: "utility_practice_invites" - """ - utility_practice_invites_aggregate( - """distinct select on columns""" - distinct_on: [utility_practice_invites_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: [utility_practice_invites_order_by!] - - """filter the rows returned""" - where: utility_practice_invites_bool_exp - ): utility_practice_invites_aggregate! - - """ - fetch data from the table: "utility_practice_invites" using primary key columns - """ - utility_practice_invites_by_pk(steam_id: bigint!, utility_practice_session_id: uuid!): utility_practice_invites - - """An array relationship""" - utility_practice_sessions( - """distinct select on columns""" - distinct_on: [utility_practice_sessions_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: [utility_practice_sessions_order_by!] - - """filter the rows returned""" - where: utility_practice_sessions_bool_exp - ): [utility_practice_sessions!]! - - """An aggregate relationship""" - utility_practice_sessions_aggregate( - """distinct select on columns""" - distinct_on: [utility_practice_sessions_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: [utility_practice_sessions_order_by!] - - """filter the rows returned""" - where: utility_practice_sessions_bool_exp - ): utility_practice_sessions_aggregate! - - """ - fetch data from the table: "utility_practice_sessions" using primary key columns - """ - utility_practice_sessions_by_pk(id: uuid!): utility_practice_sessions - - """ - fetch data from the table: "v_event_player_stats" - """ - v_event_player_stats( - """distinct select on columns""" - distinct_on: [v_event_player_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_event_player_stats_order_by!] - - """filter the rows returned""" - where: v_event_player_stats_bool_exp - ): [v_event_player_stats!]! - - """ - fetch aggregated fields from the table: "v_event_player_stats" - """ - v_event_player_stats_aggregate( - """distinct select on columns""" - distinct_on: [v_event_player_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_event_player_stats_order_by!] - - """filter the rows returned""" - where: v_event_player_stats_bool_exp - ): v_event_player_stats_aggregate! - - """ - fetch data from the table: "v_gpu_pool_status" - """ - v_gpu_pool_status( - """distinct select on columns""" - distinct_on: [v_gpu_pool_status_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_gpu_pool_status_order_by!] - - """filter the rows returned""" - where: v_gpu_pool_status_bool_exp - ): [v_gpu_pool_status!]! - - """ - fetch aggregated fields from the table: "v_gpu_pool_status" - """ - v_gpu_pool_status_aggregate( - """distinct select on columns""" - distinct_on: [v_gpu_pool_status_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_gpu_pool_status_order_by!] - - """filter the rows returned""" - where: v_gpu_pool_status_bool_exp - ): v_gpu_pool_status_aggregate! - - """ - fetch data from the table: "v_league_division_standings" - """ - v_league_division_standings( - """distinct select on columns""" - distinct_on: [v_league_division_standings_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_league_division_standings_order_by!] - - """filter the rows returned""" - where: v_league_division_standings_bool_exp - ): [v_league_division_standings!]! - - """ - fetch aggregated fields from the table: "v_league_division_standings" - """ - v_league_division_standings_aggregate( - """distinct select on columns""" - distinct_on: [v_league_division_standings_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_league_division_standings_order_by!] - - """filter the rows returned""" - where: v_league_division_standings_bool_exp - ): v_league_division_standings_aggregate! - - """ - fetch data from the table: "v_league_season_player_stats" - """ - v_league_season_player_stats( - """distinct select on columns""" - distinct_on: [v_league_season_player_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_league_season_player_stats_order_by!] - - """filter the rows returned""" - where: v_league_season_player_stats_bool_exp - ): [v_league_season_player_stats!]! - - """ - fetch aggregated fields from the table: "v_league_season_player_stats" - """ - v_league_season_player_stats_aggregate( - """distinct select on columns""" - distinct_on: [v_league_season_player_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_league_season_player_stats_order_by!] - - """filter the rows returned""" - where: v_league_season_player_stats_bool_exp - ): v_league_season_player_stats_aggregate! - - """ - fetch data from the table: "v_match_captains" - """ - v_match_captains( - """distinct select on columns""" - distinct_on: [v_match_captains_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_match_captains_order_by!] - - """filter the rows returned""" - where: v_match_captains_bool_exp - ): [v_match_captains!]! - - """ - fetch aggregated fields from the table: "v_match_captains" - """ - v_match_captains_aggregate( - """distinct select on columns""" - distinct_on: [v_match_captains_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_match_captains_order_by!] - - """filter the rows returned""" - where: v_match_captains_bool_exp - ): v_match_captains_aggregate! - - """ - fetch data from the table: "v_match_clutches" - """ - v_match_clutches( - """distinct select on columns""" - distinct_on: [v_match_clutches_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_match_clutches_order_by!] - - """filter the rows returned""" - where: v_match_clutches_bool_exp - ): [v_match_clutches!]! - - """ - fetch aggregated fields from the table: "v_match_clutches" - """ - v_match_clutches_aggregate( - """distinct select on columns""" - distinct_on: [v_match_clutches_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_match_clutches_order_by!] - - """filter the rows returned""" - where: v_match_clutches_bool_exp - ): v_match_clutches_aggregate! - - """ - fetch data from the table: "v_match_kill_pairs" - """ - v_match_kill_pairs( - """distinct select on columns""" - distinct_on: [v_match_kill_pairs_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_match_kill_pairs_order_by!] - - """filter the rows returned""" - where: v_match_kill_pairs_bool_exp - ): [v_match_kill_pairs!]! - - """ - fetch aggregated fields from the table: "v_match_kill_pairs" - """ - v_match_kill_pairs_aggregate( - """distinct select on columns""" - distinct_on: [v_match_kill_pairs_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_match_kill_pairs_order_by!] - - """filter the rows returned""" - where: v_match_kill_pairs_bool_exp - ): v_match_kill_pairs_aggregate! - - """ - fetch data from the table: "v_match_lineup_buy_types" - """ - v_match_lineup_buy_types( - """distinct select on columns""" - distinct_on: [v_match_lineup_buy_types_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_match_lineup_buy_types_order_by!] - - """filter the rows returned""" - where: v_match_lineup_buy_types_bool_exp - ): [v_match_lineup_buy_types!]! - - """ - fetch aggregated fields from the table: "v_match_lineup_buy_types" - """ - v_match_lineup_buy_types_aggregate( - """distinct select on columns""" - distinct_on: [v_match_lineup_buy_types_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_match_lineup_buy_types_order_by!] - - """filter the rows returned""" - where: v_match_lineup_buy_types_bool_exp - ): v_match_lineup_buy_types_aggregate! - - """ - fetch data from the table: "v_match_lineup_map_stats" - """ - v_match_lineup_map_stats( - """distinct select on columns""" - distinct_on: [v_match_lineup_map_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_match_lineup_map_stats_order_by!] - - """filter the rows returned""" - where: v_match_lineup_map_stats_bool_exp - ): [v_match_lineup_map_stats!]! - - """ - fetch aggregated fields from the table: "v_match_lineup_map_stats" - """ - v_match_lineup_map_stats_aggregate( - """distinct select on columns""" - distinct_on: [v_match_lineup_map_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_match_lineup_map_stats_order_by!] - - """filter the rows returned""" - where: v_match_lineup_map_stats_bool_exp - ): v_match_lineup_map_stats_aggregate! - - """ - fetch data from the table: "v_match_map_backup_rounds" - """ - v_match_map_backup_rounds( - """distinct select on columns""" - distinct_on: [v_match_map_backup_rounds_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_match_map_backup_rounds_order_by!] - - """filter the rows returned""" - where: v_match_map_backup_rounds_bool_exp - ): [v_match_map_backup_rounds!]! - - """ - fetch aggregated fields from the table: "v_match_map_backup_rounds" - """ - v_match_map_backup_rounds_aggregate( - """distinct select on columns""" - distinct_on: [v_match_map_backup_rounds_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_match_map_backup_rounds_order_by!] - - """filter the rows returned""" - where: v_match_map_backup_rounds_bool_exp - ): v_match_map_backup_rounds_aggregate! - - """ - fetch data from the table: "v_match_player_buy_types" - """ - v_match_player_buy_types( - """distinct select on columns""" - distinct_on: [v_match_player_buy_types_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_match_player_buy_types_order_by!] - - """filter the rows returned""" - where: v_match_player_buy_types_bool_exp - ): [v_match_player_buy_types!]! - - """ - fetch aggregated fields from the table: "v_match_player_buy_types" - """ - v_match_player_buy_types_aggregate( - """distinct select on columns""" - distinct_on: [v_match_player_buy_types_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_match_player_buy_types_order_by!] - - """filter the rows returned""" - where: v_match_player_buy_types_bool_exp - ): v_match_player_buy_types_aggregate! - - """ - fetch data from the table: "v_match_player_opening_duels" - """ - v_match_player_opening_duels( - """distinct select on columns""" - distinct_on: [v_match_player_opening_duels_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_match_player_opening_duels_order_by!] - - """filter the rows returned""" - where: v_match_player_opening_duels_bool_exp - ): [v_match_player_opening_duels!]! - - """ - fetch aggregated fields from the table: "v_match_player_opening_duels" - """ - v_match_player_opening_duels_aggregate( - """distinct select on columns""" - distinct_on: [v_match_player_opening_duels_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_match_player_opening_duels_order_by!] - - """filter the rows returned""" - where: v_match_player_opening_duels_bool_exp - ): v_match_player_opening_duels_aggregate! - - """ - fetch data from the table: "v_player_arch_nemesis" - """ - v_player_arch_nemesis( - """distinct select on columns""" - distinct_on: [v_player_arch_nemesis_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_arch_nemesis_order_by!] - - """filter the rows returned""" - where: v_player_arch_nemesis_bool_exp - ): [v_player_arch_nemesis!]! - - """ - fetch aggregated fields from the table: "v_player_arch_nemesis" - """ - v_player_arch_nemesis_aggregate( - """distinct select on columns""" - distinct_on: [v_player_arch_nemesis_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_arch_nemesis_order_by!] - - """filter the rows returned""" - where: v_player_arch_nemesis_bool_exp - ): v_player_arch_nemesis_aggregate! - - """ - fetch data from the table: "v_player_damage" - """ - v_player_damage( - """distinct select on columns""" - distinct_on: [v_player_damage_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_damage_order_by!] - - """filter the rows returned""" - where: v_player_damage_bool_exp - ): [v_player_damage!]! - - """ - fetch aggregated fields from the table: "v_player_damage" - """ - v_player_damage_aggregate( - """distinct select on columns""" - distinct_on: [v_player_damage_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_damage_order_by!] - - """filter the rows returned""" - where: v_player_damage_bool_exp - ): v_player_damage_aggregate! - - """ - fetch data from the table: "v_player_elo" - """ - v_player_elo( - """distinct select on columns""" - distinct_on: [v_player_elo_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_elo_order_by!] - - """filter the rows returned""" - where: v_player_elo_bool_exp - ): [v_player_elo!]! - - """ - fetch aggregated fields from the table: "v_player_elo" - """ - v_player_elo_aggregate( - """distinct select on columns""" - distinct_on: [v_player_elo_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_elo_order_by!] - - """filter the rows returned""" - where: v_player_elo_bool_exp - ): v_player_elo_aggregate! - - """ - fetch data from the table: "v_player_map_losses" - """ - v_player_map_losses( - """distinct select on columns""" - distinct_on: [v_player_map_losses_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_map_losses_order_by!] - - """filter the rows returned""" - where: v_player_map_losses_bool_exp - ): [v_player_map_losses!]! - - """ - fetch aggregated fields from the table: "v_player_map_losses" - """ - v_player_map_losses_aggregate( - """distinct select on columns""" - distinct_on: [v_player_map_losses_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_map_losses_order_by!] - - """filter the rows returned""" - where: v_player_map_losses_bool_exp - ): v_player_map_losses_aggregate! - - """ - fetch data from the table: "v_player_map_wins" - """ - v_player_map_wins( - """distinct select on columns""" - distinct_on: [v_player_map_wins_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_map_wins_order_by!] - - """filter the rows returned""" - where: v_player_map_wins_bool_exp - ): [v_player_map_wins!]! - - """ - fetch aggregated fields from the table: "v_player_map_wins" - """ - v_player_map_wins_aggregate( - """distinct select on columns""" - distinct_on: [v_player_map_wins_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_map_wins_order_by!] - - """filter the rows returned""" - where: v_player_map_wins_bool_exp - ): v_player_map_wins_aggregate! - - """ - fetch data from the table: "v_player_match_head_to_head" - """ - v_player_match_head_to_head( - """distinct select on columns""" - distinct_on: [v_player_match_head_to_head_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_match_head_to_head_order_by!] - - """filter the rows returned""" - where: v_player_match_head_to_head_bool_exp - ): [v_player_match_head_to_head!]! - - """ - fetch aggregated fields from the table: "v_player_match_head_to_head" - """ - v_player_match_head_to_head_aggregate( - """distinct select on columns""" - distinct_on: [v_player_match_head_to_head_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_match_head_to_head_order_by!] - - """filter the rows returned""" - where: v_player_match_head_to_head_bool_exp - ): v_player_match_head_to_head_aggregate! - - """ - fetch data from the table: "v_player_match_map_hltv" - """ - v_player_match_map_hltv( - """distinct select on columns""" - distinct_on: [v_player_match_map_hltv_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_match_map_hltv_order_by!] - - """filter the rows returned""" - where: v_player_match_map_hltv_bool_exp - ): [v_player_match_map_hltv!]! - - """ - fetch aggregated fields from the table: "v_player_match_map_hltv" - """ - v_player_match_map_hltv_aggregate( - """distinct select on columns""" - distinct_on: [v_player_match_map_hltv_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_match_map_hltv_order_by!] - - """filter the rows returned""" - where: v_player_match_map_hltv_bool_exp - ): v_player_match_map_hltv_aggregate! - - """ - fetch data from the table: "v_player_match_map_roles" - """ - v_player_match_map_roles( - """distinct select on columns""" - distinct_on: [v_player_match_map_roles_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_match_map_roles_order_by!] - - """filter the rows returned""" - where: v_player_match_map_roles_bool_exp - ): [v_player_match_map_roles!]! - - """ - fetch aggregated fields from the table: "v_player_match_map_roles" - """ - v_player_match_map_roles_aggregate( - """distinct select on columns""" - distinct_on: [v_player_match_map_roles_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_match_map_roles_order_by!] - - """filter the rows returned""" - where: v_player_match_map_roles_bool_exp - ): v_player_match_map_roles_aggregate! - - """ - fetch data from the table: "v_player_match_performance" - """ - v_player_match_performance( - """distinct select on columns""" - distinct_on: [v_player_match_performance_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_match_performance_order_by!] - - """filter the rows returned""" - where: v_player_match_performance_bool_exp - ): [v_player_match_performance!]! - - """ - fetch aggregated fields from the table: "v_player_match_performance" - """ - v_player_match_performance_aggregate( - """distinct select on columns""" - distinct_on: [v_player_match_performance_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_match_performance_order_by!] - - """filter the rows returned""" - where: v_player_match_performance_bool_exp - ): v_player_match_performance_aggregate! - - """ - fetch data from the table: "v_player_match_rating" - """ - v_player_match_rating( - """distinct select on columns""" - distinct_on: [v_player_match_rating_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_match_rating_order_by!] - - """filter the rows returned""" - where: v_player_match_rating_bool_exp - ): [v_player_match_rating!]! - - """ - fetch aggregated fields from the table: "v_player_match_rating" - """ - v_player_match_rating_aggregate( - """distinct select on columns""" - distinct_on: [v_player_match_rating_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_match_rating_order_by!] - - """filter the rows returned""" - where: v_player_match_rating_bool_exp - ): v_player_match_rating_aggregate! - - """ - fetch data from the table: "v_player_multi_kills" - """ - v_player_multi_kills( - """distinct select on columns""" - distinct_on: [v_player_multi_kills_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_multi_kills_order_by!] - - """filter the rows returned""" - where: v_player_multi_kills_bool_exp - ): [v_player_multi_kills!]! - - """ - fetch aggregated fields from the table: "v_player_multi_kills" - """ - v_player_multi_kills_aggregate( - """distinct select on columns""" - distinct_on: [v_player_multi_kills_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_multi_kills_order_by!] - - """filter the rows returned""" - where: v_player_multi_kills_bool_exp - ): v_player_multi_kills_aggregate! - - """ - fetch data from the table: "v_player_queue_partners" - """ - v_player_queue_partners( - """distinct select on columns""" - distinct_on: [v_player_queue_partners_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_queue_partners_order_by!] - - """filter the rows returned""" - where: v_player_queue_partners_bool_exp - ): [v_player_queue_partners!]! - - """ - fetch aggregated fields from the table: "v_player_queue_partners" - """ - v_player_queue_partners_aggregate( - """distinct select on columns""" - distinct_on: [v_player_queue_partners_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_queue_partners_order_by!] - - """filter the rows returned""" - where: v_player_queue_partners_bool_exp - ): v_player_queue_partners_aggregate! - - """ - fetch data from the table: "v_player_weapon_damage" - """ - v_player_weapon_damage( - """distinct select on columns""" - distinct_on: [v_player_weapon_damage_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_weapon_damage_order_by!] - - """filter the rows returned""" - where: v_player_weapon_damage_bool_exp - ): [v_player_weapon_damage!]! - - """ - fetch aggregated fields from the table: "v_player_weapon_damage" - """ - v_player_weapon_damage_aggregate( - """distinct select on columns""" - distinct_on: [v_player_weapon_damage_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_weapon_damage_order_by!] - - """filter the rows returned""" - where: v_player_weapon_damage_bool_exp - ): v_player_weapon_damage_aggregate! - - """ - fetch data from the table: "v_player_weapon_kills" - """ - v_player_weapon_kills( - """distinct select on columns""" - distinct_on: [v_player_weapon_kills_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_weapon_kills_order_by!] - - """filter the rows returned""" - where: v_player_weapon_kills_bool_exp - ): [v_player_weapon_kills!]! - - """ - fetch aggregated fields from the table: "v_player_weapon_kills" - """ - v_player_weapon_kills_aggregate( - """distinct select on columns""" - distinct_on: [v_player_weapon_kills_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_weapon_kills_order_by!] - - """filter the rows returned""" - where: v_player_weapon_kills_bool_exp - ): v_player_weapon_kills_aggregate! - - """ - fetch data from the table: "v_pool_maps" - """ - v_pool_maps( - """distinct select on columns""" - distinct_on: [v_pool_maps_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_pool_maps_order_by!] - - """filter the rows returned""" - where: v_pool_maps_bool_exp - ): [v_pool_maps!]! - - """ - fetch aggregated fields from the table: "v_pool_maps" - """ - v_pool_maps_aggregate( - """distinct select on columns""" - distinct_on: [v_pool_maps_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_pool_maps_order_by!] - - """filter the rows returned""" - where: v_pool_maps_bool_exp - ): v_pool_maps_aggregate! - - """ - fetch data from the table: "v_steam_account_pool_status" - """ - v_steam_account_pool_status( - """distinct select on columns""" - distinct_on: [v_steam_account_pool_status_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_steam_account_pool_status_order_by!] - - """filter the rows returned""" - where: v_steam_account_pool_status_bool_exp - ): [v_steam_account_pool_status!]! - - """ - fetch aggregated fields from the table: "v_steam_account_pool_status" - """ - v_steam_account_pool_status_aggregate( - """distinct select on columns""" - distinct_on: [v_steam_account_pool_status_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_steam_account_pool_status_order_by!] - - """filter the rows returned""" - where: v_steam_account_pool_status_bool_exp - ): v_steam_account_pool_status_aggregate! - - """ - fetch data from the table: "v_team_ranks" - """ - v_team_ranks( - """distinct select on columns""" - distinct_on: [v_team_ranks_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_team_ranks_order_by!] - - """filter the rows returned""" - where: v_team_ranks_bool_exp - ): [v_team_ranks!]! - - """ - fetch aggregated fields from the table: "v_team_ranks" - """ - v_team_ranks_aggregate( - """distinct select on columns""" - distinct_on: [v_team_ranks_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_team_ranks_order_by!] - - """filter the rows returned""" - where: v_team_ranks_bool_exp - ): v_team_ranks_aggregate! - - """ - fetch data from the table: "v_team_reputation" - """ - v_team_reputation( - """distinct select on columns""" - distinct_on: [v_team_reputation_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_team_reputation_order_by!] - - """filter the rows returned""" - where: v_team_reputation_bool_exp - ): [v_team_reputation!]! - - """ - fetch aggregated fields from the table: "v_team_reputation" - """ - v_team_reputation_aggregate( - """distinct select on columns""" - distinct_on: [v_team_reputation_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_team_reputation_order_by!] - - """filter the rows returned""" - where: v_team_reputation_bool_exp - ): v_team_reputation_aggregate! - - """ - fetch data from the table: "v_team_stage_results" - """ - v_team_stage_results( - """distinct select on columns""" - distinct_on: [v_team_stage_results_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_team_stage_results_order_by!] - - """filter the rows returned""" - where: v_team_stage_results_bool_exp - ): [v_team_stage_results!]! - - """ - fetch aggregated fields from the table: "v_team_stage_results" - """ - v_team_stage_results_aggregate( - """distinct select on columns""" - distinct_on: [v_team_stage_results_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_team_stage_results_order_by!] - - """filter the rows returned""" - where: v_team_stage_results_bool_exp - ): v_team_stage_results_aggregate! - - """ - fetch data from the table: "v_team_stage_results" using primary key columns - """ - v_team_stage_results_by_pk(tournament_stage_id: uuid!, tournament_team_id: uuid!): v_team_stage_results - - """ - fetch data from the table: "v_team_tournament_results" - """ - v_team_tournament_results( - """distinct select on columns""" - distinct_on: [v_team_tournament_results_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_team_tournament_results_order_by!] - - """filter the rows returned""" - where: v_team_tournament_results_bool_exp - ): [v_team_tournament_results!]! - - """ - fetch aggregated fields from the table: "v_team_tournament_results" - """ - v_team_tournament_results_aggregate( - """distinct select on columns""" - distinct_on: [v_team_tournament_results_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_team_tournament_results_order_by!] - - """filter the rows returned""" - where: v_team_tournament_results_bool_exp - ): v_team_tournament_results_aggregate! - - """ - fetch data from the table: "v_tournament_player_stats" - """ - v_tournament_player_stats( - """distinct select on columns""" - distinct_on: [v_tournament_player_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_tournament_player_stats_order_by!] - - """filter the rows returned""" - where: v_tournament_player_stats_bool_exp - ): [v_tournament_player_stats!]! - - """ - fetch aggregated fields from the table: "v_tournament_player_stats" - """ - v_tournament_player_stats_aggregate( - """distinct select on columns""" - distinct_on: [v_tournament_player_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_tournament_player_stats_order_by!] - - """filter the rows returned""" - where: v_tournament_player_stats_bool_exp - ): v_tournament_player_stats_aggregate! - - """ - Web push setup status for the application settings page; never returns the private key - """ - webPushStatus: WebPushStatusOutput -} - -input recalculate_tournament_awards_args { - _tournament_id: uuid -} - -input remove_league_team_from_season_args { - _league_team_season_id: uuid -} - -input reorder_league_divisions_args { - _division_ids: _uuid -} - -input restart_league_season_args { - _league_season_id: uuid -} - -""" -columns and relationships of "v_role_permissions" -""" -type role_permissions { - can_create_events: Boolean - can_create_matches: Boolean - can_create_tournaments: Boolean - role: String -} - -""" -aggregated selection of "v_role_permissions" -""" -type role_permissions_aggregate { - aggregate: role_permissions_aggregate_fields - nodes: [role_permissions!]! -} - -""" -aggregate fields of "v_role_permissions" -""" -type role_permissions_aggregate_fields { - count(columns: [role_permissions_select_column!], distinct: Boolean): Int! - max: role_permissions_max_fields - min: role_permissions_min_fields -} - -""" -Boolean expression to filter rows from the table "v_role_permissions". All fields are combined with a logical 'AND'. -""" -input role_permissions_bool_exp { - _and: [role_permissions_bool_exp!] - _not: role_permissions_bool_exp - _or: [role_permissions_bool_exp!] - can_create_events: Boolean_comparison_exp - can_create_matches: Boolean_comparison_exp - can_create_tournaments: Boolean_comparison_exp - role: String_comparison_exp -} - -""" -input type for inserting data into table "v_role_permissions" -""" -input role_permissions_insert_input { - can_create_events: Boolean - can_create_matches: Boolean - can_create_tournaments: Boolean - role: String -} - -"""aggregate max on columns""" -type role_permissions_max_fields { - role: String -} - -"""aggregate min on columns""" -type role_permissions_min_fields { - role: String -} - -""" -response of any mutation on the table "v_role_permissions" -""" -type role_permissions_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [role_permissions!]! -} - -"""Ordering options when selecting data from "v_role_permissions".""" -input role_permissions_order_by { - can_create_events: order_by - can_create_matches: order_by - can_create_tournaments: order_by - role: order_by -} - -""" -select columns of table "v_role_permissions" -""" -enum role_permissions_select_column { - """column name""" - can_create_events - - """column name""" - can_create_matches - - """column name""" - can_create_tournaments - - """column name""" - role -} - -""" -input type for updating data in table "v_role_permissions" -""" -input role_permissions_set_input { - can_create_events: Boolean - can_create_matches: Boolean - can_create_tournaments: Boolean - role: String -} - -""" -Streaming cursor of the table "role_permissions" -""" -input role_permissions_stream_cursor_input { - """Stream column input with initial value""" - initial_value: role_permissions_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input role_permissions_stream_cursor_value_input { - can_create_events: Boolean - can_create_matches: Boolean - can_create_tournaments: Boolean - role: String -} - -input role_permissions_updates { - """sets the columns of the filtered rows to the given values""" - _set: role_permissions_set_input - - """filter the rows which have to be updated""" - where: role_permissions_bool_exp! -} - -""" -columns and relationships of "seasons" -""" -type seasons { - """An array relationship""" - awards( - """distinct select on columns""" - distinct_on: [award_recipients_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: [award_recipients_order_by!] - - """filter the rows returned""" - where: award_recipients_bool_exp - ): [award_recipients!]! - - """An aggregate relationship""" - awards_aggregate( - """distinct select on columns""" - distinct_on: [award_recipients_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: [award_recipients_order_by!] - - """filter the rows returned""" - where: award_recipients_bool_exp - ): award_recipients_aggregate! - created_at: timestamptz! - description: String - ends_at: timestamptz - id: uuid! - needs_rebuild: Boolean! - number: Int! - - """An array relationship""" - player_season_stats( - """distinct select on columns""" - distinct_on: [player_season_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [player_season_stats_order_by!] - - """filter the rows returned""" - where: player_season_stats_bool_exp - ): [player_season_stats!]! - - """An aggregate relationship""" - player_season_stats_aggregate( - """distinct select on columns""" - distinct_on: [player_season_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [player_season_stats_order_by!] - - """filter the rows returned""" - where: player_season_stats_bool_exp - ): player_season_stats_aggregate! - starts_at: timestamptz! -} - -""" -aggregated selection of "seasons" -""" -type seasons_aggregate { - aggregate: seasons_aggregate_fields - nodes: [seasons!]! -} - -""" -aggregate fields of "seasons" -""" -type seasons_aggregate_fields { - avg: seasons_avg_fields - count(columns: [seasons_select_column!], distinct: Boolean): Int! - max: seasons_max_fields - min: seasons_min_fields - stddev: seasons_stddev_fields - stddev_pop: seasons_stddev_pop_fields - stddev_samp: seasons_stddev_samp_fields - sum: seasons_sum_fields - var_pop: seasons_var_pop_fields - var_samp: seasons_var_samp_fields - variance: seasons_variance_fields -} - -"""aggregate avg on columns""" -type seasons_avg_fields { - number: Float -} - -""" -Boolean expression to filter rows from the table "seasons". All fields are combined with a logical 'AND'. -""" -input seasons_bool_exp { - _and: [seasons_bool_exp!] - _not: seasons_bool_exp - _or: [seasons_bool_exp!] - awards: award_recipients_bool_exp - awards_aggregate: award_recipients_aggregate_bool_exp - created_at: timestamptz_comparison_exp - description: String_comparison_exp - ends_at: timestamptz_comparison_exp - id: uuid_comparison_exp - needs_rebuild: Boolean_comparison_exp - number: Int_comparison_exp - player_season_stats: player_season_stats_bool_exp - player_season_stats_aggregate: player_season_stats_aggregate_bool_exp - starts_at: timestamptz_comparison_exp -} - -""" -unique or primary key constraints on table "seasons" -""" -enum seasons_constraint { - """ - unique or primary key constraint on columns "id" - """ - seasons_pkey -} - -""" -input type for incrementing numeric columns in table "seasons" -""" -input seasons_inc_input { - number: Int -} - -""" -input type for inserting data into table "seasons" -""" -input seasons_insert_input { - awards: award_recipients_arr_rel_insert_input - created_at: timestamptz - description: String - ends_at: timestamptz - id: uuid - needs_rebuild: Boolean - number: Int - player_season_stats: player_season_stats_arr_rel_insert_input - starts_at: timestamptz -} - -"""aggregate max on columns""" -type seasons_max_fields { - created_at: timestamptz - description: String - ends_at: timestamptz - id: uuid - number: Int - starts_at: timestamptz -} - -"""aggregate min on columns""" -type seasons_min_fields { - created_at: timestamptz - description: String - ends_at: timestamptz - id: uuid - number: Int - starts_at: timestamptz -} - -""" -response of any mutation on the table "seasons" -""" -type seasons_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [seasons!]! -} - -""" -input type for inserting object relation for remote table "seasons" -""" -input seasons_obj_rel_insert_input { - data: seasons_insert_input! - - """upsert condition""" - on_conflict: seasons_on_conflict -} - -""" -on_conflict condition type for table "seasons" -""" -input seasons_on_conflict { - constraint: seasons_constraint! - update_columns: [seasons_update_column!]! = [] - where: seasons_bool_exp -} - -"""Ordering options when selecting data from "seasons".""" -input seasons_order_by { - awards_aggregate: award_recipients_aggregate_order_by - created_at: order_by - description: order_by - ends_at: order_by - id: order_by - needs_rebuild: order_by - number: order_by - player_season_stats_aggregate: player_season_stats_aggregate_order_by - starts_at: order_by -} - -"""primary key columns input for table: seasons""" -input seasons_pk_columns_input { - id: uuid! -} - -""" -select columns of table "seasons" -""" -enum seasons_select_column { - """column name""" - created_at - - """column name""" - description - - """column name""" - ends_at - - """column name""" - id - - """column name""" - needs_rebuild - - """column name""" - number - - """column name""" - starts_at -} - -""" -input type for updating data in table "seasons" -""" -input seasons_set_input { - created_at: timestamptz - description: String - ends_at: timestamptz - id: uuid - needs_rebuild: Boolean - number: Int - starts_at: timestamptz -} - -"""aggregate stddev on columns""" -type seasons_stddev_fields { - number: Float -} - -"""aggregate stddev_pop on columns""" -type seasons_stddev_pop_fields { - number: Float -} - -"""aggregate stddev_samp on columns""" -type seasons_stddev_samp_fields { - number: Float -} - -""" -Streaming cursor of the table "seasons" -""" -input seasons_stream_cursor_input { - """Stream column input with initial value""" - initial_value: seasons_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input seasons_stream_cursor_value_input { - created_at: timestamptz - description: String - ends_at: timestamptz - id: uuid - needs_rebuild: Boolean - number: Int - starts_at: timestamptz -} - -"""aggregate sum on columns""" -type seasons_sum_fields { - number: Int -} - -""" -update columns of table "seasons" -""" -enum seasons_update_column { - """column name""" - created_at - - """column name""" - description - - """column name""" - ends_at - - """column name""" - id - - """column name""" - needs_rebuild - - """column name""" - number - - """column name""" - starts_at -} - -input seasons_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: seasons_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: seasons_set_input - - """filter the rows which have to be updated""" - where: seasons_bool_exp! -} - -"""aggregate var_pop on columns""" -type seasons_var_pop_fields { - number: Float -} - -"""aggregate var_samp on columns""" -type seasons_var_samp_fields { - number: Float -} - -"""aggregate variance on columns""" -type seasons_variance_fields { - number: Float -} - -""" -columns and relationships of "server_regions" -""" -type server_regions { - """ - A computed field, executes function "available_region_server_count" - """ - available_server_count: Int - description: String - - """An array relationship""" - game_server_nodes( - """distinct select on columns""" - distinct_on: [game_server_nodes_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_nodes_order_by!] - - """filter the rows returned""" - where: game_server_nodes_bool_exp - ): [game_server_nodes!]! - - """An aggregate relationship""" - game_server_nodes_aggregate( - """distinct select on columns""" - distinct_on: [game_server_nodes_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_nodes_order_by!] - - """filter the rows returned""" - where: game_server_nodes_bool_exp - ): game_server_nodes_aggregate! - - """ - A computed field, executes function "region_has_node" - """ - has_node: Boolean - is_lan: Boolean! - - """ - A computed field, executes function "region_status" - """ - status: String - steam_relay: Boolean! - - """ - A computed field, executes function "total_region_server_count" - """ - total_server_count: Int - value: String! -} - -""" -aggregated selection of "server_regions" -""" -type server_regions_aggregate { - aggregate: server_regions_aggregate_fields - nodes: [server_regions!]! -} - -""" -aggregate fields of "server_regions" -""" -type server_regions_aggregate_fields { - avg: server_regions_avg_fields - count(columns: [server_regions_select_column!], distinct: Boolean): Int! - max: server_regions_max_fields - min: server_regions_min_fields - stddev: server_regions_stddev_fields - stddev_pop: server_regions_stddev_pop_fields - stddev_samp: server_regions_stddev_samp_fields - sum: server_regions_sum_fields - var_pop: server_regions_var_pop_fields - var_samp: server_regions_var_samp_fields - variance: server_regions_variance_fields -} - -"""aggregate avg on columns""" -type server_regions_avg_fields { - """ - A computed field, executes function "available_region_server_count" - """ - available_server_count: Int - - """ - A computed field, executes function "total_region_server_count" - """ - total_server_count: Int -} - -""" -Boolean expression to filter rows from the table "server_regions". All fields are combined with a logical 'AND'. -""" -input server_regions_bool_exp { - _and: [server_regions_bool_exp!] - _not: server_regions_bool_exp - _or: [server_regions_bool_exp!] - available_server_count: Int_comparison_exp - description: String_comparison_exp - game_server_nodes: game_server_nodes_bool_exp - game_server_nodes_aggregate: game_server_nodes_aggregate_bool_exp - has_node: Boolean_comparison_exp - is_lan: Boolean_comparison_exp - status: String_comparison_exp - steam_relay: Boolean_comparison_exp - total_server_count: Int_comparison_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "server_regions" -""" -enum server_regions_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_server_regions_pkey -} - -""" -input type for inserting data into table "server_regions" -""" -input server_regions_insert_input { - description: String - game_server_nodes: game_server_nodes_arr_rel_insert_input - is_lan: Boolean - steam_relay: Boolean - value: String -} - -"""aggregate max on columns""" -type server_regions_max_fields { - """ - A computed field, executes function "available_region_server_count" - """ - available_server_count: Int - description: String - - """ - A computed field, executes function "region_status" - """ - status: String - - """ - A computed field, executes function "total_region_server_count" - """ - total_server_count: Int - value: String -} - -"""aggregate min on columns""" -type server_regions_min_fields { - """ - A computed field, executes function "available_region_server_count" - """ - available_server_count: Int - description: String - - """ - A computed field, executes function "region_status" - """ - status: String - - """ - A computed field, executes function "total_region_server_count" - """ - total_server_count: Int - value: String -} - -""" -response of any mutation on the table "server_regions" -""" -type server_regions_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [server_regions!]! -} - -""" -input type for inserting object relation for remote table "server_regions" -""" -input server_regions_obj_rel_insert_input { - data: server_regions_insert_input! - - """upsert condition""" - on_conflict: server_regions_on_conflict -} - -""" -on_conflict condition type for table "server_regions" -""" -input server_regions_on_conflict { - constraint: server_regions_constraint! - update_columns: [server_regions_update_column!]! = [] - where: server_regions_bool_exp -} - -"""Ordering options when selecting data from "server_regions".""" -input server_regions_order_by { - available_server_count: order_by - description: order_by - game_server_nodes_aggregate: game_server_nodes_aggregate_order_by - has_node: order_by - is_lan: order_by - status: order_by - steam_relay: order_by - total_server_count: order_by - value: order_by -} - -"""primary key columns input for table: server_regions""" -input server_regions_pk_columns_input { - value: String! -} - -""" -select columns of table "server_regions" -""" -enum server_regions_select_column { - """column name""" - description - - """column name""" - is_lan - - """column name""" - steam_relay - - """column name""" - value -} - -""" -input type for updating data in table "server_regions" -""" -input server_regions_set_input { - description: String - is_lan: Boolean - steam_relay: Boolean - value: String -} - -"""aggregate stddev on columns""" -type server_regions_stddev_fields { - """ - A computed field, executes function "available_region_server_count" - """ - available_server_count: Int - - """ - A computed field, executes function "total_region_server_count" - """ - total_server_count: Int -} - -"""aggregate stddev_pop on columns""" -type server_regions_stddev_pop_fields { - """ - A computed field, executes function "available_region_server_count" - """ - available_server_count: Int - - """ - A computed field, executes function "total_region_server_count" - """ - total_server_count: Int -} - -"""aggregate stddev_samp on columns""" -type server_regions_stddev_samp_fields { - """ - A computed field, executes function "available_region_server_count" - """ - available_server_count: Int - - """ - A computed field, executes function "total_region_server_count" - """ - total_server_count: Int -} - -""" -Streaming cursor of the table "server_regions" -""" -input server_regions_stream_cursor_input { - """Stream column input with initial value""" - initial_value: server_regions_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input server_regions_stream_cursor_value_input { - description: String - is_lan: Boolean - steam_relay: Boolean - value: String -} - -"""aggregate sum on columns""" -type server_regions_sum_fields { - """ - A computed field, executes function "available_region_server_count" - """ - available_server_count: Int - - """ - A computed field, executes function "total_region_server_count" - """ - total_server_count: Int -} - -""" -update columns of table "server_regions" -""" -enum server_regions_update_column { - """column name""" - description - - """column name""" - is_lan - - """column name""" - steam_relay - - """column name""" - value -} - -input server_regions_updates { - """sets the columns of the filtered rows to the given values""" - _set: server_regions_set_input - - """filter the rows which have to be updated""" - where: server_regions_bool_exp! -} - -"""aggregate var_pop on columns""" -type server_regions_var_pop_fields { - """ - A computed field, executes function "available_region_server_count" - """ - available_server_count: Int - - """ - A computed field, executes function "total_region_server_count" - """ - total_server_count: Int -} - -"""aggregate var_samp on columns""" -type server_regions_var_samp_fields { - """ - A computed field, executes function "available_region_server_count" - """ - available_server_count: Int - - """ - A computed field, executes function "total_region_server_count" - """ - total_server_count: Int -} - -"""aggregate variance on columns""" -type server_regions_variance_fields { - """ - A computed field, executes function "available_region_server_count" - """ - available_server_count: Int - - """ - A computed field, executes function "total_region_server_count" - """ - total_server_count: Int -} - -""" -columns and relationships of "servers" -""" -type servers { - api_password: uuid! - boot_status: String - boot_status_detail: String - connect_password: String - connected: Boolean! - - """ - A computed field, executes function "get_server_connection_link" - """ - connection_link: String - - """ - A computed field, executes function "get_server_connection_string" - """ - connection_string: String - - """An object relationship""" - current_match: matches - 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 - host: String! - id: uuid! - is_dedicated: Boolean! - label: String! - loaded_plugins( - """JSON select path""" - path: String - ): jsonb - - """An array relationship""" - matches( - """distinct select on columns""" - distinct_on: [matches_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: [matches_order_by!] - - """filter the rows returned""" - where: matches_bool_exp - ): [matches!]! - - """An aggregate relationship""" - matches_aggregate( - """distinct select on columns""" - distinct_on: [matches_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: [matches_order_by!] - - """filter the rows returned""" - where: matches_bool_exp - ): matches_aggregate! - 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 - region: String! - reserved_by_match_id: uuid - - """An object relationship""" - server_region: server_regions - steam_relay: String - tv_port: Int - type: e_server_types_enum! - updated_at: timestamptz -} - -""" -aggregated selection of "servers" -""" -type servers_aggregate { - aggregate: servers_aggregate_fields - nodes: [servers!]! -} - -input servers_aggregate_bool_exp { - bool_and: servers_aggregate_bool_exp_bool_and - bool_or: servers_aggregate_bool_exp_bool_or - count: servers_aggregate_bool_exp_count -} - -input servers_aggregate_bool_exp_bool_and { - arguments: servers_select_column_servers_aggregate_bool_exp_bool_and_arguments_columns! - distinct: Boolean - filter: servers_bool_exp - predicate: Boolean_comparison_exp! -} - -input servers_aggregate_bool_exp_bool_or { - arguments: servers_select_column_servers_aggregate_bool_exp_bool_or_arguments_columns! - distinct: Boolean - filter: servers_bool_exp - predicate: Boolean_comparison_exp! -} - -input servers_aggregate_bool_exp_count { - arguments: [servers_select_column!] - distinct: Boolean - filter: servers_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "servers" -""" -type servers_aggregate_fields { - avg: servers_avg_fields - count(columns: [servers_select_column!], distinct: Boolean): Int! - max: servers_max_fields - min: servers_min_fields - stddev: servers_stddev_fields - stddev_pop: servers_stddev_pop_fields - stddev_samp: servers_stddev_samp_fields - sum: servers_sum_fields - var_pop: servers_var_pop_fields - var_samp: servers_var_samp_fields - variance: servers_variance_fields -} - -""" -order by aggregate values of table "servers" -""" -input servers_aggregate_order_by { - avg: servers_avg_order_by - count: order_by - max: servers_max_order_by - min: servers_min_order_by - stddev: servers_stddev_order_by - stddev_pop: servers_stddev_pop_order_by - stddev_samp: servers_stddev_samp_order_by - sum: servers_sum_order_by - var_pop: servers_var_pop_order_by - var_samp: servers_var_samp_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" -""" -input servers_arr_rel_insert_input { - data: [servers_insert_input!]! - - """upsert condition""" - on_conflict: servers_on_conflict -} - -"""aggregate avg on columns""" -type servers_avg_fields { - max_players: Float - port: Float - tv_port: Float -} - -""" -order by avg() on columns of table "servers" -""" -input servers_avg_order_by { - max_players: order_by - port: order_by - tv_port: order_by -} - -""" -Boolean expression to filter rows from the table "servers". All fields are combined with a logical 'AND'. -""" -input servers_bool_exp { - _and: [servers_bool_exp!] - _not: servers_bool_exp - _or: [servers_bool_exp!] - api_password: uuid_comparison_exp - boot_status: String_comparison_exp - boot_status_detail: String_comparison_exp - connect_password: String_comparison_exp - connected: Boolean_comparison_exp - connection_link: String_comparison_exp - connection_string: String_comparison_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 - region: String_comparison_exp - reserved_by_match_id: uuid_comparison_exp - server_region: server_regions_bool_exp - steam_relay: String_comparison_exp - tv_port: Int_comparison_exp - type: e_server_types_enum_comparison_exp - updated_at: timestamptz_comparison_exp -} - -""" -unique or primary key constraints on table "servers" -""" -enum servers_constraint { - """ - unique or primary key constraint on columns "id" - """ - servers_pkey - - """ - unique or primary key constraint on columns "reserved_by_match_id" - """ - 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" -""" -input servers_inc_input { - max_players: Int - port: Int - tv_port: Int -} - -""" -input type for inserting data into table "servers" -""" -input servers_insert_input { - api_password: uuid - boot_status: String - boot_status_detail: String - connect_password: String - connected: Boolean - 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 - region: String - reserved_by_match_id: uuid - server_region: server_regions_obj_rel_insert_input - steam_relay: String - tv_port: Int - type: e_server_types_enum - updated_at: timestamptz -} - -"""aggregate max on columns""" -type servers_max_fields { - api_password: uuid - boot_status: String - boot_status_detail: String - connect_password: String - - """ - A computed field, executes function "get_server_connection_link" - """ - connection_link: String - - """ - A computed field, executes function "get_server_connection_string" - """ - connection_string: String - game: String - game_mode_id: uuid - game_server_node_id: String - host: String - id: uuid - label: String - max_players: Int - offline_at: timestamptz - plugin_version: String - plugins_checked_at: timestamptz - port: Int - region: String - reserved_by_match_id: uuid - steam_relay: String - tv_port: Int - updated_at: timestamptz -} - -""" -order by max() on columns of table "servers" -""" -input servers_max_order_by { - api_password: order_by - boot_status: 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 - label: 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 - steam_relay: order_by - tv_port: order_by - updated_at: order_by -} - -"""aggregate min on columns""" -type servers_min_fields { - api_password: uuid - boot_status: String - boot_status_detail: String - connect_password: String - - """ - A computed field, executes function "get_server_connection_link" - """ - connection_link: String - - """ - A computed field, executes function "get_server_connection_string" - """ - connection_string: String - game: String - game_mode_id: uuid - game_server_node_id: String - host: String - id: uuid - label: String - max_players: Int - offline_at: timestamptz - plugin_version: String - plugins_checked_at: timestamptz - port: Int - region: String - reserved_by_match_id: uuid - steam_relay: String - tv_port: Int - updated_at: timestamptz -} - -""" -order by min() on columns of table "servers" -""" -input servers_min_order_by { - api_password: order_by - boot_status: 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 - label: 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 - steam_relay: order_by - tv_port: order_by - updated_at: order_by -} - -""" -response of any mutation on the table "servers" -""" -type servers_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [servers!]! -} - -""" -input type for inserting object relation for remote table "servers" -""" -input servers_obj_rel_insert_input { - data: servers_insert_input! - - """upsert condition""" - on_conflict: servers_on_conflict -} - -""" -on_conflict condition type for table "servers" -""" -input servers_on_conflict { - constraint: servers_constraint! - update_columns: [servers_update_column!]! = [] - where: servers_bool_exp -} - -"""Ordering options when selecting data from "servers".""" -input servers_order_by { - api_password: order_by - boot_status: order_by - boot_status_detail: order_by - connect_password: order_by - connected: order_by - connection_link: order_by - connection_string: 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 - region: order_by - reserved_by_match_id: order_by - server_region: server_regions_order_by - steam_relay: order_by - tv_port: order_by - type: order_by - updated_at: order_by -} - -"""primary key columns input for table: servers""" -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" -""" -enum servers_select_column { - """column name""" - api_password - - """column name""" - boot_status - - """column name""" - boot_status_detail - - """column name""" - connect_password - - """column name""" - connected - - """column name""" - enabled - - """column name""" - game - - """column name""" - game_mode_id - - """column name""" - game_server_node_id - - """column name""" - host - - """column name""" - id - - """column name""" - is_dedicated - - """column name""" - label - - """column name""" - loaded_plugins - - """column name""" - max_players - - """column name""" - offline_at - - """column name""" - plugin_runtime - - """column name""" - plugin_version - - """column name""" - plugins_checked_at - - """column name""" - port - - """column name""" - rcon_password - - """column name""" - rcon_status - - """column name""" - region - - """column name""" - reserved_by_match_id - - """column name""" - steam_relay - - """column name""" - tv_port - - """column name""" - type - - """column name""" - updated_at -} - -""" -select "servers_aggregate_bool_exp_bool_and_arguments_columns" columns of table "servers" -""" -enum servers_select_column_servers_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - connected - - """column name""" - enabled - - """column name""" - is_dedicated - - """column name""" - rcon_status -} - -""" -select "servers_aggregate_bool_exp_bool_or_arguments_columns" columns of table "servers" -""" -enum servers_select_column_servers_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - connected - - """column name""" - enabled - - """column name""" - is_dedicated - - """column name""" - rcon_status -} - -""" -input type for updating data in table "servers" -""" -input servers_set_input { - api_password: uuid - boot_status: String - boot_status_detail: String - connect_password: String - 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 - region: String - reserved_by_match_id: uuid - steam_relay: String - tv_port: Int - type: e_server_types_enum - updated_at: timestamptz -} - -"""aggregate stddev on columns""" -type servers_stddev_fields { - max_players: Float - port: Float - tv_port: Float -} - -""" -order by stddev() on columns of table "servers" -""" -input servers_stddev_order_by { - max_players: order_by - port: order_by - tv_port: order_by -} - -"""aggregate stddev_pop on columns""" -type servers_stddev_pop_fields { - max_players: Float - port: Float - tv_port: Float -} - -""" -order by stddev_pop() on columns of table "servers" -""" -input servers_stddev_pop_order_by { - max_players: order_by - port: order_by - tv_port: order_by -} - -"""aggregate stddev_samp on columns""" -type servers_stddev_samp_fields { - max_players: Float - port: Float - tv_port: Float -} - -""" -order by stddev_samp() on columns of table "servers" -""" -input servers_stddev_samp_order_by { - max_players: order_by - port: order_by - tv_port: order_by -} - -""" -Streaming cursor of the table "servers" -""" -input servers_stream_cursor_input { - """Stream column input with initial value""" - initial_value: servers_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input servers_stream_cursor_value_input { - api_password: uuid - boot_status: String - boot_status_detail: String - connect_password: String - 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 - region: String - reserved_by_match_id: uuid - steam_relay: String - tv_port: Int - type: e_server_types_enum - updated_at: timestamptz -} - -"""aggregate sum on columns""" -type servers_sum_fields { - max_players: Int - port: Int - tv_port: Int -} - -""" -order by sum() on columns of table "servers" -""" -input servers_sum_order_by { - max_players: order_by - port: order_by - tv_port: order_by -} - -""" -update columns of table "servers" -""" -enum servers_update_column { - """column name""" - api_password - - """column name""" - boot_status - - """column name""" - boot_status_detail - - """column name""" - connect_password - - """column name""" - connected - - """column name""" - enabled - - """column name""" - game - - """column name""" - game_mode_id - - """column name""" - game_server_node_id - - """column name""" - host - - """column name""" - id - - """column name""" - is_dedicated - - """column name""" - label - - """column name""" - loaded_plugins - - """column name""" - max_players - - """column name""" - offline_at - - """column name""" - plugin_runtime - - """column name""" - plugin_version - - """column name""" - plugins_checked_at - - """column name""" - port - - """column name""" - rcon_password - - """column name""" - rcon_status - - """column name""" - region - - """column name""" - reserved_by_match_id - - """column name""" - steam_relay - - """column name""" - tv_port - - """column name""" - type - - """column name""" - updated_at -} - -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 - - """filter the rows which have to be updated""" - where: servers_bool_exp! -} - -"""aggregate var_pop on columns""" -type servers_var_pop_fields { - max_players: Float - port: Float - tv_port: Float -} - -""" -order by var_pop() on columns of table "servers" -""" -input servers_var_pop_order_by { - max_players: order_by - port: order_by - tv_port: order_by -} - -"""aggregate var_samp on columns""" -type servers_var_samp_fields { - max_players: Float - port: Float - tv_port: Float -} - -""" -order by var_samp() on columns of table "servers" -""" -input servers_var_samp_order_by { - max_players: order_by - port: order_by - tv_port: order_by -} - -"""aggregate variance on columns""" -type servers_variance_fields { - max_players: Float - port: Float - tv_port: Float -} - -""" -order by variance() on columns of table "servers" -""" -input servers_variance_order_by { - max_players: order_by - port: order_by - tv_port: order_by -} - -""" -columns and relationships of "settings" -""" -type settings { - name: String! - value: String -} - -""" -aggregated selection of "settings" -""" -type settings_aggregate { - aggregate: settings_aggregate_fields - nodes: [settings!]! -} - -""" -aggregate fields of "settings" -""" -type settings_aggregate_fields { - count(columns: [settings_select_column!], distinct: Boolean): Int! - max: settings_max_fields - min: settings_min_fields -} - -""" -Boolean expression to filter rows from the table "settings". All fields are combined with a logical 'AND'. -""" -input settings_bool_exp { - _and: [settings_bool_exp!] - _not: settings_bool_exp - _or: [settings_bool_exp!] - name: String_comparison_exp - value: String_comparison_exp -} - -""" -unique or primary key constraints on table "settings" -""" -enum settings_constraint { - """ - unique or primary key constraint on columns "name" - """ - settings_pkey -} - -""" -input type for inserting data into table "settings" -""" -input settings_insert_input { - name: String - value: String -} - -"""aggregate max on columns""" -type settings_max_fields { - name: String - value: String -} - -"""aggregate min on columns""" -type settings_min_fields { - name: String - value: String -} - -""" -response of any mutation on the table "settings" -""" -type settings_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [settings!]! -} - -""" -on_conflict condition type for table "settings" -""" -input settings_on_conflict { - constraint: settings_constraint! - update_columns: [settings_update_column!]! = [] - where: settings_bool_exp -} - -"""Ordering options when selecting data from "settings".""" -input settings_order_by { - name: order_by - value: order_by -} - -"""primary key columns input for table: settings""" -input settings_pk_columns_input { - name: String! -} - -""" -select columns of table "settings" -""" -enum settings_select_column { - """column name""" - name - - """column name""" - value -} - -""" -input type for updating data in table "settings" -""" -input settings_set_input { - name: String - value: String -} - -""" -Streaming cursor of the table "settings" -""" -input settings_stream_cursor_input { - """Stream column input with initial value""" - initial_value: settings_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input settings_stream_cursor_value_input { - name: String - value: String -} - -""" -update columns of table "settings" -""" -enum settings_update_column { - """column name""" - name - - """column name""" - value -} - -input settings_updates { - """sets the columns of the filtered rows to the given values""" - _set: settings_set_input - - """filter the rows which have to be updated""" - where: settings_bool_exp! -} - -scalar smallint - -""" -Boolean expression to compare columns of type "smallint". All fields are combined with logical 'AND'. -""" -input smallint_comparison_exp { - _eq: smallint - _gt: smallint - _gte: smallint - _in: [smallint!] - _is_null: Boolean - _lt: smallint - _lte: smallint - _neq: smallint - _nin: [smallint!] -} - -""" -columns and relationships of "steam_account_claims" -""" -type steam_account_claims { - created_at: timestamptz! - id: uuid! - k8s_job_name: String! - - """An object relationship""" - node: game_server_nodes - node_id: String - purpose: String! - - """An object relationship""" - steam_account: steam_accounts! - steam_account_id: uuid! -} - -""" -aggregated selection of "steam_account_claims" -""" -type steam_account_claims_aggregate { - aggregate: steam_account_claims_aggregate_fields - nodes: [steam_account_claims!]! -} - -input steam_account_claims_aggregate_bool_exp { - count: steam_account_claims_aggregate_bool_exp_count -} - -input steam_account_claims_aggregate_bool_exp_count { - arguments: [steam_account_claims_select_column!] - distinct: Boolean - filter: steam_account_claims_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "steam_account_claims" -""" -type steam_account_claims_aggregate_fields { - count(columns: [steam_account_claims_select_column!], distinct: Boolean): Int! - max: steam_account_claims_max_fields - min: steam_account_claims_min_fields -} - -""" -order by aggregate values of table "steam_account_claims" -""" -input steam_account_claims_aggregate_order_by { - count: order_by - max: steam_account_claims_max_order_by - min: steam_account_claims_min_order_by -} - -""" -input type for inserting array relation for remote table "steam_account_claims" -""" -input steam_account_claims_arr_rel_insert_input { - data: [steam_account_claims_insert_input!]! - - """upsert condition""" - on_conflict: steam_account_claims_on_conflict -} - -""" -Boolean expression to filter rows from the table "steam_account_claims". All fields are combined with a logical 'AND'. -""" -input steam_account_claims_bool_exp { - _and: [steam_account_claims_bool_exp!] - _not: steam_account_claims_bool_exp - _or: [steam_account_claims_bool_exp!] - created_at: timestamptz_comparison_exp - id: uuid_comparison_exp - k8s_job_name: String_comparison_exp - node: game_server_nodes_bool_exp - node_id: String_comparison_exp - purpose: String_comparison_exp - steam_account: steam_accounts_bool_exp - steam_account_id: uuid_comparison_exp -} - -""" -unique or primary key constraints on table "steam_account_claims" -""" -enum steam_account_claims_constraint { - """ - unique or primary key constraint on columns "k8s_job_name" - """ - steam_account_claims_k8s_job_name_key - - """ - unique or primary key constraint on columns "id" - """ - steam_account_claims_pkey -} - -""" -input type for inserting data into table "steam_account_claims" -""" -input steam_account_claims_insert_input { - created_at: timestamptz - id: uuid - k8s_job_name: String - node: game_server_nodes_obj_rel_insert_input - node_id: String - purpose: String - steam_account: steam_accounts_obj_rel_insert_input - steam_account_id: uuid -} - -"""aggregate max on columns""" -type steam_account_claims_max_fields { - created_at: timestamptz - id: uuid - k8s_job_name: String - node_id: String - purpose: String - steam_account_id: uuid -} - -""" -order by max() on columns of table "steam_account_claims" -""" -input steam_account_claims_max_order_by { - created_at: order_by - id: order_by - k8s_job_name: order_by - node_id: order_by - purpose: order_by - steam_account_id: order_by -} - -"""aggregate min on columns""" -type steam_account_claims_min_fields { - created_at: timestamptz - id: uuid - k8s_job_name: String - node_id: String - purpose: String - steam_account_id: uuid -} - -""" -order by min() on columns of table "steam_account_claims" -""" -input steam_account_claims_min_order_by { - created_at: order_by - id: order_by - k8s_job_name: order_by - node_id: order_by - purpose: order_by - steam_account_id: order_by -} - -""" -response of any mutation on the table "steam_account_claims" -""" -type steam_account_claims_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [steam_account_claims!]! -} - -""" -on_conflict condition type for table "steam_account_claims" -""" -input steam_account_claims_on_conflict { - constraint: steam_account_claims_constraint! - update_columns: [steam_account_claims_update_column!]! = [] - where: steam_account_claims_bool_exp -} - -"""Ordering options when selecting data from "steam_account_claims".""" -input steam_account_claims_order_by { - created_at: order_by - id: order_by - k8s_job_name: order_by - node: game_server_nodes_order_by - node_id: order_by - purpose: order_by - steam_account: steam_accounts_order_by - steam_account_id: order_by -} - -"""primary key columns input for table: steam_account_claims""" -input steam_account_claims_pk_columns_input { - id: uuid! -} - -""" -select columns of table "steam_account_claims" -""" -enum steam_account_claims_select_column { - """column name""" - created_at - - """column name""" - id - - """column name""" - k8s_job_name - - """column name""" - node_id - - """column name""" - purpose - - """column name""" - steam_account_id -} - -""" -input type for updating data in table "steam_account_claims" -""" -input steam_account_claims_set_input { - created_at: timestamptz - id: uuid - k8s_job_name: String - node_id: String - purpose: String - steam_account_id: uuid -} - -""" -Streaming cursor of the table "steam_account_claims" -""" -input steam_account_claims_stream_cursor_input { - """Stream column input with initial value""" - initial_value: steam_account_claims_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input steam_account_claims_stream_cursor_value_input { - created_at: timestamptz - id: uuid - k8s_job_name: String - node_id: String - purpose: String - steam_account_id: uuid -} - -""" -update columns of table "steam_account_claims" -""" -enum steam_account_claims_update_column { - """column name""" - created_at - - """column name""" - id - - """column name""" - k8s_job_name - - """column name""" - node_id - - """column name""" - purpose - - """column name""" - steam_account_id -} - -input steam_account_claims_updates { - """sets the columns of the filtered rows to the given values""" - _set: steam_account_claims_set_input - - """filter the rows which have to be updated""" - where: steam_account_claims_bool_exp! -} - -""" -columns and relationships of "steam_accounts" -""" -type steam_accounts { - """An array relationship""" - claims( - """distinct select on columns""" - distinct_on: [steam_account_claims_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: [steam_account_claims_order_by!] - - """filter the rows returned""" - where: steam_account_claims_bool_exp - ): [steam_account_claims!]! - - """An aggregate relationship""" - claims_aggregate( - """distinct select on columns""" - distinct_on: [steam_account_claims_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: [steam_account_claims_order_by!] - - """filter the rows returned""" - where: steam_account_claims_bool_exp - ): steam_account_claims_aggregate! - created_at: timestamptz! - friend_capacity: Int! - id: uuid! - - """An object relationship""" - last_node: game_server_nodes - last_node_id: String - password: String! - role: String! - steam_level: Int - steamid64: bigint - updated_at: timestamptz! - username: String! -} - -""" -aggregated selection of "steam_accounts" -""" -type steam_accounts_aggregate { - aggregate: steam_accounts_aggregate_fields - nodes: [steam_accounts!]! -} - -""" -aggregate fields of "steam_accounts" -""" -type steam_accounts_aggregate_fields { - avg: steam_accounts_avg_fields - count(columns: [steam_accounts_select_column!], distinct: Boolean): Int! - max: steam_accounts_max_fields - min: steam_accounts_min_fields - stddev: steam_accounts_stddev_fields - stddev_pop: steam_accounts_stddev_pop_fields - stddev_samp: steam_accounts_stddev_samp_fields - sum: steam_accounts_sum_fields - var_pop: steam_accounts_var_pop_fields - var_samp: steam_accounts_var_samp_fields - variance: steam_accounts_variance_fields -} - -"""aggregate avg on columns""" -type steam_accounts_avg_fields { - friend_capacity: Float - steam_level: Float - steamid64: Float -} - -""" -Boolean expression to filter rows from the table "steam_accounts". All fields are combined with a logical 'AND'. -""" -input steam_accounts_bool_exp { - _and: [steam_accounts_bool_exp!] - _not: steam_accounts_bool_exp - _or: [steam_accounts_bool_exp!] - claims: steam_account_claims_bool_exp - claims_aggregate: steam_account_claims_aggregate_bool_exp - created_at: timestamptz_comparison_exp - friend_capacity: Int_comparison_exp - id: uuid_comparison_exp - last_node: game_server_nodes_bool_exp - last_node_id: String_comparison_exp - password: String_comparison_exp - role: String_comparison_exp - steam_level: Int_comparison_exp - steamid64: bigint_comparison_exp - updated_at: timestamptz_comparison_exp - username: String_comparison_exp -} - -""" -unique or primary key constraints on table "steam_accounts" -""" -enum steam_accounts_constraint { - """ - unique or primary key constraint on columns "id" - """ - steam_accounts_pkey - - """ - unique or primary key constraint on columns "username" - """ - steam_accounts_username_key -} - -""" -input type for incrementing numeric columns in table "steam_accounts" -""" -input steam_accounts_inc_input { - friend_capacity: Int - steam_level: Int - steamid64: bigint -} - -""" -input type for inserting data into table "steam_accounts" -""" -input steam_accounts_insert_input { - claims: steam_account_claims_arr_rel_insert_input - created_at: timestamptz - friend_capacity: Int - id: uuid - last_node: game_server_nodes_obj_rel_insert_input - last_node_id: String - password: String - role: String - steam_level: Int - steamid64: bigint - updated_at: timestamptz - username: String -} - -"""aggregate max on columns""" -type steam_accounts_max_fields { - created_at: timestamptz - friend_capacity: Int - id: uuid - last_node_id: String - password: String - role: String - steam_level: Int - steamid64: bigint - updated_at: timestamptz - username: String -} - -"""aggregate min on columns""" -type steam_accounts_min_fields { - created_at: timestamptz - friend_capacity: Int - id: uuid - last_node_id: String - password: String - role: String - steam_level: Int - steamid64: bigint - updated_at: timestamptz - username: String -} - -""" -response of any mutation on the table "steam_accounts" -""" -type steam_accounts_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [steam_accounts!]! -} - -""" -input type for inserting object relation for remote table "steam_accounts" -""" -input steam_accounts_obj_rel_insert_input { - data: steam_accounts_insert_input! - - """upsert condition""" - on_conflict: steam_accounts_on_conflict -} - -""" -on_conflict condition type for table "steam_accounts" -""" -input steam_accounts_on_conflict { - constraint: steam_accounts_constraint! - update_columns: [steam_accounts_update_column!]! = [] - where: steam_accounts_bool_exp -} - -"""Ordering options when selecting data from "steam_accounts".""" -input steam_accounts_order_by { - claims_aggregate: steam_account_claims_aggregate_order_by - created_at: order_by - friend_capacity: order_by - id: order_by - last_node: game_server_nodes_order_by - last_node_id: order_by - password: order_by - role: order_by - steam_level: order_by - steamid64: order_by - updated_at: order_by - username: order_by -} - -"""primary key columns input for table: steam_accounts""" -input steam_accounts_pk_columns_input { - id: uuid! -} - -""" -select columns of table "steam_accounts" -""" -enum steam_accounts_select_column { - """column name""" - created_at - - """column name""" - friend_capacity - - """column name""" - id - - """column name""" - last_node_id - - """column name""" - password - - """column name""" - role - - """column name""" - steam_level - - """column name""" - steamid64 - - """column name""" - updated_at - - """column name""" - username -} - -""" -input type for updating data in table "steam_accounts" -""" -input steam_accounts_set_input { - created_at: timestamptz - friend_capacity: Int - id: uuid - last_node_id: String - password: String - role: String - steam_level: Int - steamid64: bigint - updated_at: timestamptz - username: String -} - -"""aggregate stddev on columns""" -type steam_accounts_stddev_fields { - friend_capacity: Float - steam_level: Float - steamid64: Float -} - -"""aggregate stddev_pop on columns""" -type steam_accounts_stddev_pop_fields { - friend_capacity: Float - steam_level: Float - steamid64: Float -} - -"""aggregate stddev_samp on columns""" -type steam_accounts_stddev_samp_fields { - friend_capacity: Float - steam_level: Float - steamid64: Float -} - -""" -Streaming cursor of the table "steam_accounts" -""" -input steam_accounts_stream_cursor_input { - """Stream column input with initial value""" - initial_value: steam_accounts_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input steam_accounts_stream_cursor_value_input { - created_at: timestamptz - friend_capacity: Int - id: uuid - last_node_id: String - password: String - role: String - steam_level: Int - steamid64: bigint - updated_at: timestamptz - username: String -} - -"""aggregate sum on columns""" -type steam_accounts_sum_fields { - friend_capacity: Int - steam_level: Int - steamid64: bigint -} - -""" -update columns of table "steam_accounts" -""" -enum steam_accounts_update_column { - """column name""" - created_at - - """column name""" - friend_capacity - - """column name""" - id - - """column name""" - last_node_id - - """column name""" - password - - """column name""" - role - - """column name""" - steam_level - - """column name""" - steamid64 - - """column name""" - updated_at - - """column name""" - username -} - -input steam_accounts_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: steam_accounts_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: steam_accounts_set_input - - """filter the rows which have to be updated""" - where: steam_accounts_bool_exp! -} - -"""aggregate var_pop on columns""" -type steam_accounts_var_pop_fields { - friend_capacity: Float - steam_level: Float - steamid64: Float -} - -"""aggregate var_samp on columns""" -type steam_accounts_var_samp_fields { - friend_capacity: Float - steam_level: Float - steamid64: Float -} - -"""aggregate variance on columns""" -type steam_accounts_variance_fields { - friend_capacity: Float - steam_level: Float - steamid64: Float -} - -type subscription_root { - """ - fetch data from the table: "_map_pool" - """ - _map_pool( - """distinct select on columns""" - distinct_on: [_map_pool_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: [_map_pool_order_by!] - - """filter the rows returned""" - where: _map_pool_bool_exp - ): [_map_pool!]! - - """ - fetch aggregated fields from the table: "_map_pool" - """ - _map_pool_aggregate( - """distinct select on columns""" - distinct_on: [_map_pool_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: [_map_pool_order_by!] - - """filter the rows returned""" - where: _map_pool_bool_exp - ): _map_pool_aggregate! - - """fetch data from the table: "_map_pool" using primary key columns""" - _map_pool_by_pk(map_id: uuid!, map_pool_id: uuid!): _map_pool - - """ - fetch data from the table in a streaming manner: "_map_pool" - """ - _map_pool_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [_map_pool_stream_cursor_input]! - - """filter the rows returned""" - where: _map_pool_bool_exp - ): [_map_pool!]! - - """An array relationship""" - abandoned_matches( - """distinct select on columns""" - distinct_on: [abandoned_matches_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: [abandoned_matches_order_by!] - - """filter the rows returned""" - where: abandoned_matches_bool_exp - ): [abandoned_matches!]! - - """An aggregate relationship""" - abandoned_matches_aggregate( - """distinct select on columns""" - distinct_on: [abandoned_matches_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: [abandoned_matches_order_by!] - - """filter the rows returned""" - where: abandoned_matches_bool_exp - ): abandoned_matches_aggregate! - - """ - fetch data from the table: "abandoned_matches" using primary key columns - """ - abandoned_matches_by_pk(id: uuid!): abandoned_matches - - """ - fetch data from the table in a streaming manner: "abandoned_matches" - """ - abandoned_matches_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [abandoned_matches_stream_cursor_input]! - - """filter the rows returned""" - where: abandoned_matches_bool_exp - ): [abandoned_matches!]! - - """ - fetch data from the table: "api_keys" - """ - api_keys( - """distinct select on columns""" - distinct_on: [api_keys_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: [api_keys_order_by!] - - """filter the rows returned""" - where: api_keys_bool_exp - ): [api_keys!]! - - """ - fetch aggregated fields from the table: "api_keys" - """ - api_keys_aggregate( - """distinct select on columns""" - distinct_on: [api_keys_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: [api_keys_order_by!] - - """filter the rows returned""" - where: api_keys_bool_exp - ): api_keys_aggregate! - - """fetch data from the table: "api_keys" using primary key columns""" - api_keys_by_pk(id: uuid!): api_keys - - """ - fetch data from the table in a streaming manner: "api_keys" - """ - api_keys_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [api_keys_stream_cursor_input]! - - """filter the rows returned""" - where: api_keys_bool_exp - ): [api_keys!]! - - """ - fetch data from the table: "award_recipients" - """ - award_recipients( - """distinct select on columns""" - distinct_on: [award_recipients_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: [award_recipients_order_by!] - - """filter the rows returned""" - where: award_recipients_bool_exp - ): [award_recipients!]! - - """ - fetch aggregated fields from the table: "award_recipients" - """ - award_recipients_aggregate( - """distinct select on columns""" - distinct_on: [award_recipients_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: [award_recipients_order_by!] - - """filter the rows returned""" - where: award_recipients_bool_exp - ): award_recipients_aggregate! - - """ - fetch data from the table: "award_recipients" using primary key columns - """ - award_recipients_by_pk(id: uuid!): award_recipients - - """ - fetch data from the table in a streaming manner: "award_recipients" - """ - award_recipients_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [award_recipients_stream_cursor_input]! - - """filter the rows returned""" - where: award_recipients_bool_exp - ): [award_recipients!]! - - """ - fetch data from the table: "awards" - """ - awards( - """distinct select on columns""" - distinct_on: [awards_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: [awards_order_by!] - - """filter the rows returned""" - where: awards_bool_exp - ): [awards!]! - - """ - fetch aggregated fields from the table: "awards" - """ - awards_aggregate( - """distinct select on columns""" - distinct_on: [awards_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: [awards_order_by!] - - """filter the rows returned""" - where: awards_bool_exp - ): awards_aggregate! - - """fetch data from the table: "awards" using primary key columns""" - awards_by_pk(id: uuid!): awards - - """ - fetch data from the table in a streaming manner: "awards" - """ - awards_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [awards_stream_cursor_input]! - - """filter the rows returned""" - where: awards_bool_exp - ): [awards!]! - - """ - fetch data from the table: "chat_read_state" - """ - chat_read_state( - """distinct select on columns""" - distinct_on: [chat_read_state_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: [chat_read_state_order_by!] - - """filter the rows returned""" - where: chat_read_state_bool_exp - ): [chat_read_state!]! - - """ - fetch aggregated fields from the table: "chat_read_state" - """ - chat_read_state_aggregate( - """distinct select on columns""" - distinct_on: [chat_read_state_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: [chat_read_state_order_by!] - - """filter the rows returned""" - where: chat_read_state_bool_exp - ): chat_read_state_aggregate! - - """fetch data from the table: "chat_read_state" using primary key columns""" - chat_read_state_by_pk(steam_id: bigint!, thread: String!): chat_read_state - - """ - fetch data from the table in a streaming manner: "chat_read_state" - """ - chat_read_state_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [chat_read_state_stream_cursor_input]! - - """filter the rows returned""" - where: chat_read_state_bool_exp - ): [chat_read_state!]! - - """An array relationship""" - clip_render_jobs( - """distinct select on columns""" - distinct_on: [clip_render_jobs_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: [clip_render_jobs_order_by!] - - """filter the rows returned""" - where: clip_render_jobs_bool_exp - ): [clip_render_jobs!]! - - """An aggregate relationship""" - clip_render_jobs_aggregate( - """distinct select on columns""" - distinct_on: [clip_render_jobs_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: [clip_render_jobs_order_by!] - - """filter the rows returned""" - where: clip_render_jobs_bool_exp - ): clip_render_jobs_aggregate! - - """ - fetch data from the table: "clip_render_jobs" using primary key columns - """ - clip_render_jobs_by_pk(id: uuid!): clip_render_jobs - - """ - fetch data from the table in a streaming manner: "clip_render_jobs" - """ - clip_render_jobs_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [clip_render_jobs_stream_cursor_input]! - - """filter the rows returned""" - where: clip_render_jobs_bool_exp - ): [clip_render_jobs!]! - - """ - fetch data from the table: "custom_pages" - """ - custom_pages( - """distinct select on columns""" - distinct_on: [custom_pages_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [custom_pages_order_by!] - - """filter the rows returned""" - where: custom_pages_bool_exp - ): [custom_pages!]! - - """ - fetch aggregated fields from the table: "custom_pages" - """ - custom_pages_aggregate( - """distinct select on columns""" - distinct_on: [custom_pages_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [custom_pages_order_by!] - - """filter the rows returned""" - where: custom_pages_bool_exp - ): custom_pages_aggregate! - - """fetch data from the table: "custom_pages" using primary key columns""" - custom_pages_by_pk(id: uuid!): custom_pages - - """ - fetch data from the table in a streaming manner: "custom_pages" - """ - custom_pages_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [custom_pages_stream_cursor_input]! - - """filter the rows returned""" - where: custom_pages_bool_exp - ): [custom_pages!]! - - """ - fetch data from the table: "db_backups" - """ - db_backups( - """distinct select on columns""" - distinct_on: [db_backups_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: [db_backups_order_by!] - - """filter the rows returned""" - where: db_backups_bool_exp - ): [db_backups!]! - - """ - fetch aggregated fields from the table: "db_backups" - """ - db_backups_aggregate( - """distinct select on columns""" - distinct_on: [db_backups_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: [db_backups_order_by!] - - """filter the rows returned""" - where: db_backups_bool_exp - ): db_backups_aggregate! - - """fetch data from the table: "db_backups" using primary key columns""" - db_backups_by_pk(id: uuid!): db_backups - - """ - fetch data from the table in a streaming manner: "db_backups" - """ - db_backups_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [db_backups_stream_cursor_input]! - - """filter the rows returned""" - where: db_backups_bool_exp - ): [db_backups!]! - - """ - fetch data from the table: "direct_conversations" - """ - direct_conversations( - """distinct select on columns""" - distinct_on: [direct_conversations_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: [direct_conversations_order_by!] - - """filter the rows returned""" - where: direct_conversations_bool_exp - ): [direct_conversations!]! - - """ - fetch aggregated fields from the table: "direct_conversations" - """ - direct_conversations_aggregate( - """distinct select on columns""" - distinct_on: [direct_conversations_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: [direct_conversations_order_by!] - - """filter the rows returned""" - where: direct_conversations_bool_exp - ): direct_conversations_aggregate! - - """ - fetch data from the table: "direct_conversations" using primary key columns - """ - direct_conversations_by_pk(room_id: String!, steam_id: bigint!): direct_conversations - - """ - fetch data from the table in a streaming manner: "direct_conversations" - """ - direct_conversations_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [direct_conversations_stream_cursor_input]! - - """filter the rows returned""" - where: direct_conversations_bool_exp - ): [direct_conversations!]! - - """ - fetch data from the table: "direct_messages" - """ - direct_messages( - """distinct select on columns""" - distinct_on: [direct_messages_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: [direct_messages_order_by!] - - """filter the rows returned""" - where: direct_messages_bool_exp - ): [direct_messages!]! - - """ - fetch aggregated fields from the table: "direct_messages" - """ - direct_messages_aggregate( - """distinct select on columns""" - distinct_on: [direct_messages_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: [direct_messages_order_by!] - - """filter the rows returned""" - where: direct_messages_bool_exp - ): direct_messages_aggregate! - - """fetch data from the table: "direct_messages" using primary key columns""" - direct_messages_by_pk(id: uuid!): direct_messages - - """ - fetch data from the table in a streaming manner: "direct_messages" - """ - direct_messages_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [direct_messages_stream_cursor_input]! - - """filter the rows returned""" - where: direct_messages_bool_exp - ): [direct_messages!]! - - """ - fetch data from the table: "draft_game_picks" - """ - draft_game_picks( - """distinct select on columns""" - distinct_on: [draft_game_picks_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [draft_game_picks_order_by!] - - """filter the rows returned""" - where: draft_game_picks_bool_exp - ): [draft_game_picks!]! - - """ - fetch aggregated fields from the table: "draft_game_picks" - """ - draft_game_picks_aggregate( - """distinct select on columns""" - distinct_on: [draft_game_picks_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [draft_game_picks_order_by!] - - """filter the rows returned""" - where: draft_game_picks_bool_exp - ): draft_game_picks_aggregate! - - """ - fetch data from the table: "draft_game_picks" using primary key columns - """ - draft_game_picks_by_pk(id: uuid!): draft_game_picks - - """ - fetch data from the table in a streaming manner: "draft_game_picks" - """ - draft_game_picks_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [draft_game_picks_stream_cursor_input]! - - """filter the rows returned""" - where: draft_game_picks_bool_exp - ): [draft_game_picks!]! - - """An array relationship""" - draft_game_players( - """distinct select on columns""" - distinct_on: [draft_game_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [draft_game_players_order_by!] - - """filter the rows returned""" - where: draft_game_players_bool_exp - ): [draft_game_players!]! - - """An aggregate relationship""" - draft_game_players_aggregate( - """distinct select on columns""" - distinct_on: [draft_game_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [draft_game_players_order_by!] - - """filter the rows returned""" - where: draft_game_players_bool_exp - ): draft_game_players_aggregate! - - """ - fetch data from the table: "draft_game_players" using primary key columns - """ - draft_game_players_by_pk(draft_game_id: uuid!, steam_id: bigint!): draft_game_players - - """ - fetch data from the table in a streaming manner: "draft_game_players" - """ - draft_game_players_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [draft_game_players_stream_cursor_input]! - - """filter the rows returned""" - where: draft_game_players_bool_exp - ): [draft_game_players!]! - - """An array relationship""" - draft_games( - """distinct select on columns""" - distinct_on: [draft_games_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: [draft_games_order_by!] - - """filter the rows returned""" - where: draft_games_bool_exp - ): [draft_games!]! - - """An aggregate relationship""" - draft_games_aggregate( - """distinct select on columns""" - distinct_on: [draft_games_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: [draft_games_order_by!] - - """filter the rows returned""" - where: draft_games_bool_exp - ): draft_games_aggregate! - - """fetch data from the table: "draft_games" using primary key columns""" - draft_games_by_pk(id: uuid!): draft_games - - """ - fetch data from the table in a streaming manner: "draft_games" - """ - draft_games_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [draft_games_stream_cursor_input]! - - """filter the rows returned""" - where: draft_games_bool_exp - ): [draft_games!]! - - """ - fetch data from the table: "e_award_sources" - """ - e_award_sources( - """distinct select on columns""" - distinct_on: [e_award_sources_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_award_sources_order_by!] - - """filter the rows returned""" - where: e_award_sources_bool_exp - ): [e_award_sources!]! - - """ - fetch aggregated fields from the table: "e_award_sources" - """ - e_award_sources_aggregate( - """distinct select on columns""" - distinct_on: [e_award_sources_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_award_sources_order_by!] - - """filter the rows returned""" - where: e_award_sources_bool_exp - ): e_award_sources_aggregate! - - """fetch data from the table: "e_award_sources" using primary key columns""" - e_award_sources_by_pk(value: String!): e_award_sources - - """ - fetch data from the table in a streaming manner: "e_award_sources" - """ - e_award_sources_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_award_sources_stream_cursor_input]! - - """filter the rows returned""" - where: e_award_sources_bool_exp - ): [e_award_sources!]! - - """ - fetch data from the table: "e_award_tiers" - """ - e_award_tiers( - """distinct select on columns""" - distinct_on: [e_award_tiers_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_award_tiers_order_by!] - - """filter the rows returned""" - where: e_award_tiers_bool_exp - ): [e_award_tiers!]! - - """ - fetch aggregated fields from the table: "e_award_tiers" - """ - e_award_tiers_aggregate( - """distinct select on columns""" - distinct_on: [e_award_tiers_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_award_tiers_order_by!] - - """filter the rows returned""" - where: e_award_tiers_bool_exp - ): e_award_tiers_aggregate! - - """fetch data from the table: "e_award_tiers" using primary key columns""" - e_award_tiers_by_pk(value: String!): e_award_tiers - - """ - fetch data from the table in a streaming manner: "e_award_tiers" - """ - e_award_tiers_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_award_tiers_stream_cursor_input]! - - """filter the rows returned""" - where: e_award_tiers_bool_exp - ): [e_award_tiers!]! - - """ - fetch data from the table: "e_check_in_settings" - """ - e_check_in_settings( - """distinct select on columns""" - distinct_on: [e_check_in_settings_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_check_in_settings_order_by!] - - """filter the rows returned""" - where: e_check_in_settings_bool_exp - ): [e_check_in_settings!]! - - """ - fetch aggregated fields from the table: "e_check_in_settings" - """ - e_check_in_settings_aggregate( - """distinct select on columns""" - distinct_on: [e_check_in_settings_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_check_in_settings_order_by!] - - """filter the rows returned""" - where: e_check_in_settings_bool_exp - ): e_check_in_settings_aggregate! - - """ - fetch data from the table: "e_check_in_settings" using primary key columns - """ - e_check_in_settings_by_pk(value: String!): e_check_in_settings - - """ - fetch data from the table in a streaming manner: "e_check_in_settings" - """ - e_check_in_settings_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_check_in_settings_stream_cursor_input]! - - """filter the rows returned""" - where: e_check_in_settings_bool_exp - ): [e_check_in_settings!]! - - """ - fetch data from the table: "e_draft_game_captain_selection" - """ - e_draft_game_captain_selection( - """distinct select on columns""" - distinct_on: [e_draft_game_captain_selection_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_draft_game_captain_selection_order_by!] - - """filter the rows returned""" - where: e_draft_game_captain_selection_bool_exp - ): [e_draft_game_captain_selection!]! - - """ - fetch aggregated fields from the table: "e_draft_game_captain_selection" - """ - e_draft_game_captain_selection_aggregate( - """distinct select on columns""" - distinct_on: [e_draft_game_captain_selection_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_draft_game_captain_selection_order_by!] - - """filter the rows returned""" - where: e_draft_game_captain_selection_bool_exp - ): e_draft_game_captain_selection_aggregate! - - """ - fetch data from the table: "e_draft_game_captain_selection" using primary key columns - """ - e_draft_game_captain_selection_by_pk(value: String!): e_draft_game_captain_selection - - """ - fetch data from the table in a streaming manner: "e_draft_game_captain_selection" - """ - e_draft_game_captain_selection_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_draft_game_captain_selection_stream_cursor_input]! - - """filter the rows returned""" - where: e_draft_game_captain_selection_bool_exp - ): [e_draft_game_captain_selection!]! - - """ - fetch data from the table: "e_draft_game_draft_order" - """ - e_draft_game_draft_order( - """distinct select on columns""" - distinct_on: [e_draft_game_draft_order_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_draft_game_draft_order_order_by!] - - """filter the rows returned""" - where: e_draft_game_draft_order_bool_exp - ): [e_draft_game_draft_order!]! - - """ - fetch aggregated fields from the table: "e_draft_game_draft_order" - """ - e_draft_game_draft_order_aggregate( - """distinct select on columns""" - distinct_on: [e_draft_game_draft_order_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_draft_game_draft_order_order_by!] - - """filter the rows returned""" - where: e_draft_game_draft_order_bool_exp - ): e_draft_game_draft_order_aggregate! - - """ - fetch data from the table: "e_draft_game_draft_order" using primary key columns - """ - e_draft_game_draft_order_by_pk(value: String!): e_draft_game_draft_order - - """ - fetch data from the table in a streaming manner: "e_draft_game_draft_order" - """ - e_draft_game_draft_order_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_draft_game_draft_order_stream_cursor_input]! - - """filter the rows returned""" - where: e_draft_game_draft_order_bool_exp - ): [e_draft_game_draft_order!]! - - """ - fetch data from the table: "e_draft_game_mode" - """ - e_draft_game_mode( - """distinct select on columns""" - distinct_on: [e_draft_game_mode_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_draft_game_mode_order_by!] - - """filter the rows returned""" - where: e_draft_game_mode_bool_exp - ): [e_draft_game_mode!]! - - """ - fetch aggregated fields from the table: "e_draft_game_mode" - """ - e_draft_game_mode_aggregate( - """distinct select on columns""" - distinct_on: [e_draft_game_mode_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_draft_game_mode_order_by!] - - """filter the rows returned""" - where: e_draft_game_mode_bool_exp - ): e_draft_game_mode_aggregate! - - """ - fetch data from the table: "e_draft_game_mode" using primary key columns - """ - e_draft_game_mode_by_pk(value: String!): e_draft_game_mode - - """ - fetch data from the table in a streaming manner: "e_draft_game_mode" - """ - e_draft_game_mode_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_draft_game_mode_stream_cursor_input]! - - """filter the rows returned""" - where: e_draft_game_mode_bool_exp - ): [e_draft_game_mode!]! - - """ - fetch data from the table: "e_draft_game_player_status" - """ - e_draft_game_player_status( - """distinct select on columns""" - distinct_on: [e_draft_game_player_status_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_draft_game_player_status_order_by!] - - """filter the rows returned""" - where: e_draft_game_player_status_bool_exp - ): [e_draft_game_player_status!]! - - """ - fetch aggregated fields from the table: "e_draft_game_player_status" - """ - e_draft_game_player_status_aggregate( - """distinct select on columns""" - distinct_on: [e_draft_game_player_status_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_draft_game_player_status_order_by!] - - """filter the rows returned""" - where: e_draft_game_player_status_bool_exp - ): e_draft_game_player_status_aggregate! - - """ - fetch data from the table: "e_draft_game_player_status" using primary key columns - """ - e_draft_game_player_status_by_pk(value: String!): e_draft_game_player_status - - """ - fetch data from the table in a streaming manner: "e_draft_game_player_status" - """ - e_draft_game_player_status_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_draft_game_player_status_stream_cursor_input]! - - """filter the rows returned""" - where: e_draft_game_player_status_bool_exp - ): [e_draft_game_player_status!]! - - """ - fetch data from the table: "e_draft_game_status" - """ - e_draft_game_status( - """distinct select on columns""" - distinct_on: [e_draft_game_status_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_draft_game_status_order_by!] - - """filter the rows returned""" - where: e_draft_game_status_bool_exp - ): [e_draft_game_status!]! - - """ - fetch aggregated fields from the table: "e_draft_game_status" - """ - e_draft_game_status_aggregate( - """distinct select on columns""" - distinct_on: [e_draft_game_status_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_draft_game_status_order_by!] - - """filter the rows returned""" - where: e_draft_game_status_bool_exp - ): e_draft_game_status_aggregate! - - """ - fetch data from the table: "e_draft_game_status" using primary key columns - """ - e_draft_game_status_by_pk(value: String!): e_draft_game_status - - """ - fetch data from the table in a streaming manner: "e_draft_game_status" - """ - e_draft_game_status_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_draft_game_status_stream_cursor_input]! - - """filter the rows returned""" - where: e_draft_game_status_bool_exp - ): [e_draft_game_status!]! - - """ - fetch data from the table: "e_event_media_access" - """ - e_event_media_access( - """distinct select on columns""" - distinct_on: [e_event_media_access_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [e_event_media_access_order_by!] - - """filter the rows returned""" - where: e_event_media_access_bool_exp - ): [e_event_media_access!]! - - """ - fetch aggregated fields from the table: "e_event_media_access" - """ - e_event_media_access_aggregate( - """distinct select on columns""" - distinct_on: [e_event_media_access_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [e_event_media_access_order_by!] - - """filter the rows returned""" - where: e_event_media_access_bool_exp - ): e_event_media_access_aggregate! - - """ - fetch data from the table: "e_event_media_access" using primary key columns - """ - e_event_media_access_by_pk(value: String!): e_event_media_access - - """ - fetch data from the table in a streaming manner: "e_event_media_access" - """ - e_event_media_access_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_event_media_access_stream_cursor_input]! - - """filter the rows returned""" - where: e_event_media_access_bool_exp - ): [e_event_media_access!]! - - """ - fetch data from the table: "e_event_visibility" - """ - e_event_visibility( - """distinct select on columns""" - distinct_on: [e_event_visibility_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [e_event_visibility_order_by!] - - """filter the rows returned""" - where: e_event_visibility_bool_exp - ): [e_event_visibility!]! - - """ - fetch aggregated fields from the table: "e_event_visibility" - """ - e_event_visibility_aggregate( - """distinct select on columns""" - distinct_on: [e_event_visibility_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [e_event_visibility_order_by!] - - """filter the rows returned""" - where: e_event_visibility_bool_exp - ): e_event_visibility_aggregate! - - """ - fetch data from the table: "e_event_visibility" using primary key columns - """ - e_event_visibility_by_pk(value: String!): e_event_visibility - - """ - fetch data from the table in a streaming manner: "e_event_visibility" - """ - e_event_visibility_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_event_visibility_stream_cursor_input]! - - """filter the rows returned""" - where: e_event_visibility_bool_exp - ): [e_event_visibility!]! - - """ - fetch data from the table: "e_friend_status" - """ - e_friend_status( - """distinct select on columns""" - distinct_on: [e_friend_status_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_friend_status_order_by!] - - """filter the rows returned""" - where: e_friend_status_bool_exp - ): [e_friend_status!]! - - """ - fetch aggregated fields from the table: "e_friend_status" - """ - e_friend_status_aggregate( - """distinct select on columns""" - distinct_on: [e_friend_status_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_friend_status_order_by!] - - """filter the rows returned""" - where: e_friend_status_bool_exp - ): e_friend_status_aggregate! - - """fetch data from the table: "e_friend_status" using primary key columns""" - e_friend_status_by_pk(value: String!): e_friend_status - - """ - fetch data from the table in a streaming manner: "e_friend_status" - """ - e_friend_status_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_friend_status_stream_cursor_input]! - - """filter the rows returned""" - where: e_friend_status_bool_exp - ): [e_friend_status!]! - - """ - fetch data from the table: "e_game_cfg_types" - """ - e_game_cfg_types( - """distinct select on columns""" - distinct_on: [e_game_cfg_types_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_cfg_types_order_by!] - - """filter the rows returned""" - where: e_game_cfg_types_bool_exp - ): [e_game_cfg_types!]! - - """ - fetch aggregated fields from the table: "e_game_cfg_types" - """ - e_game_cfg_types_aggregate( - """distinct select on columns""" - distinct_on: [e_game_cfg_types_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_cfg_types_order_by!] - - """filter the rows returned""" - where: e_game_cfg_types_bool_exp - ): e_game_cfg_types_aggregate! - - """ - fetch data from the table: "e_game_cfg_types" using primary key columns - """ - e_game_cfg_types_by_pk(value: String!): e_game_cfg_types - - """ - fetch data from the table in a streaming manner: "e_game_cfg_types" - """ - e_game_cfg_types_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_cfg_types_stream_cursor_input]! - - """filter the rows returned""" - 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" - """ - e_game_server_node_statuses( - """distinct select on columns""" - distinct_on: [e_game_server_node_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_server_node_statuses_order_by!] - - """filter the rows returned""" - where: e_game_server_node_statuses_bool_exp - ): [e_game_server_node_statuses!]! - - """ - fetch aggregated fields from the table: "e_game_server_node_statuses" - """ - e_game_server_node_statuses_aggregate( - """distinct select on columns""" - distinct_on: [e_game_server_node_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_server_node_statuses_order_by!] - - """filter the rows returned""" - where: e_game_server_node_statuses_bool_exp - ): e_game_server_node_statuses_aggregate! - - """ - fetch data from the table: "e_game_server_node_statuses" using primary key columns - """ - e_game_server_node_statuses_by_pk(value: String!): e_game_server_node_statuses - - """ - fetch data from the table in a streaming manner: "e_game_server_node_statuses" - """ - e_game_server_node_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_server_node_statuses_stream_cursor_input]! - - """filter the rows returned""" - where: e_game_server_node_statuses_bool_exp - ): [e_game_server_node_statuses!]! - - """ - fetch data from the table: "e_league_movement_types" - """ - e_league_movement_types( - """distinct select on columns""" - distinct_on: [e_league_movement_types_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_league_movement_types_order_by!] - - """filter the rows returned""" - where: e_league_movement_types_bool_exp - ): [e_league_movement_types!]! - - """ - fetch aggregated fields from the table: "e_league_movement_types" - """ - e_league_movement_types_aggregate( - """distinct select on columns""" - distinct_on: [e_league_movement_types_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_league_movement_types_order_by!] - - """filter the rows returned""" - where: e_league_movement_types_bool_exp - ): e_league_movement_types_aggregate! - - """ - fetch data from the table: "e_league_movement_types" using primary key columns - """ - e_league_movement_types_by_pk(value: String!): e_league_movement_types - - """ - fetch data from the table in a streaming manner: "e_league_movement_types" - """ - e_league_movement_types_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_league_movement_types_stream_cursor_input]! - - """filter the rows returned""" - where: e_league_movement_types_bool_exp - ): [e_league_movement_types!]! - - """ - fetch data from the table: "e_league_proposal_statuses" - """ - e_league_proposal_statuses( - """distinct select on columns""" - distinct_on: [e_league_proposal_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_league_proposal_statuses_order_by!] - - """filter the rows returned""" - where: e_league_proposal_statuses_bool_exp - ): [e_league_proposal_statuses!]! - - """ - fetch aggregated fields from the table: "e_league_proposal_statuses" - """ - e_league_proposal_statuses_aggregate( - """distinct select on columns""" - distinct_on: [e_league_proposal_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_league_proposal_statuses_order_by!] - - """filter the rows returned""" - where: e_league_proposal_statuses_bool_exp - ): e_league_proposal_statuses_aggregate! - - """ - fetch data from the table: "e_league_proposal_statuses" using primary key columns - """ - e_league_proposal_statuses_by_pk(value: String!): e_league_proposal_statuses - - """ - fetch data from the table in a streaming manner: "e_league_proposal_statuses" - """ - e_league_proposal_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_league_proposal_statuses_stream_cursor_input]! - - """filter the rows returned""" - where: e_league_proposal_statuses_bool_exp - ): [e_league_proposal_statuses!]! - - """ - fetch data from the table: "e_league_registration_statuses" - """ - e_league_registration_statuses( - """distinct select on columns""" - distinct_on: [e_league_registration_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_league_registration_statuses_order_by!] - - """filter the rows returned""" - where: e_league_registration_statuses_bool_exp - ): [e_league_registration_statuses!]! - - """ - fetch aggregated fields from the table: "e_league_registration_statuses" - """ - e_league_registration_statuses_aggregate( - """distinct select on columns""" - distinct_on: [e_league_registration_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_league_registration_statuses_order_by!] - - """filter the rows returned""" - where: e_league_registration_statuses_bool_exp - ): e_league_registration_statuses_aggregate! - - """ - fetch data from the table: "e_league_registration_statuses" using primary key columns - """ - e_league_registration_statuses_by_pk(value: String!): e_league_registration_statuses - - """ - fetch data from the table in a streaming manner: "e_league_registration_statuses" - """ - e_league_registration_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_league_registration_statuses_stream_cursor_input]! - - """filter the rows returned""" - where: e_league_registration_statuses_bool_exp - ): [e_league_registration_statuses!]! - - """ - fetch data from the table: "e_league_season_statuses" - """ - e_league_season_statuses( - """distinct select on columns""" - distinct_on: [e_league_season_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_league_season_statuses_order_by!] - - """filter the rows returned""" - where: e_league_season_statuses_bool_exp - ): [e_league_season_statuses!]! - - """ - fetch aggregated fields from the table: "e_league_season_statuses" - """ - e_league_season_statuses_aggregate( - """distinct select on columns""" - distinct_on: [e_league_season_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_league_season_statuses_order_by!] - - """filter the rows returned""" - where: e_league_season_statuses_bool_exp - ): e_league_season_statuses_aggregate! - - """ - fetch data from the table: "e_league_season_statuses" using primary key columns - """ - e_league_season_statuses_by_pk(value: String!): e_league_season_statuses - - """ - fetch data from the table in a streaming manner: "e_league_season_statuses" - """ - e_league_season_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_league_season_statuses_stream_cursor_input]! - - """filter the rows returned""" - where: e_league_season_statuses_bool_exp - ): [e_league_season_statuses!]! - - """ - fetch data from the table: "e_lobby_access" - """ - e_lobby_access( - """distinct select on columns""" - distinct_on: [e_lobby_access_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [e_lobby_access_order_by!] - - """filter the rows returned""" - where: e_lobby_access_bool_exp - ): [e_lobby_access!]! - - """ - fetch aggregated fields from the table: "e_lobby_access" - """ - e_lobby_access_aggregate( - """distinct select on columns""" - distinct_on: [e_lobby_access_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [e_lobby_access_order_by!] - - """filter the rows returned""" - where: e_lobby_access_bool_exp - ): e_lobby_access_aggregate! - - """fetch data from the table: "e_lobby_access" using primary key columns""" - e_lobby_access_by_pk(value: String!): e_lobby_access - - """ - fetch data from the table in a streaming manner: "e_lobby_access" - """ - e_lobby_access_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_lobby_access_stream_cursor_input]! - - """filter the rows returned""" - where: e_lobby_access_bool_exp - ): [e_lobby_access!]! - - """ - fetch data from the table: "e_lobby_player_status" - """ - e_lobby_player_status( - """distinct select on columns""" - distinct_on: [e_lobby_player_status_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_lobby_player_status_order_by!] - - """filter the rows returned""" - where: e_lobby_player_status_bool_exp - ): [e_lobby_player_status!]! - - """ - fetch aggregated fields from the table: "e_lobby_player_status" - """ - e_lobby_player_status_aggregate( - """distinct select on columns""" - distinct_on: [e_lobby_player_status_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_lobby_player_status_order_by!] - - """filter the rows returned""" - where: e_lobby_player_status_bool_exp - ): e_lobby_player_status_aggregate! - - """ - fetch data from the table: "e_lobby_player_status" using primary key columns - """ - e_lobby_player_status_by_pk(value: String!): e_lobby_player_status - - """ - fetch data from the table in a streaming manner: "e_lobby_player_status" - """ - e_lobby_player_status_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_lobby_player_status_stream_cursor_input]! - - """filter the rows returned""" - where: e_lobby_player_status_bool_exp - ): [e_lobby_player_status!]! - - """ - fetch data from the table: "e_map_pool_types" - """ - e_map_pool_types( - """distinct select on columns""" - distinct_on: [e_map_pool_types_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_map_pool_types_order_by!] - - """filter the rows returned""" - where: e_map_pool_types_bool_exp - ): [e_map_pool_types!]! - - """ - fetch aggregated fields from the table: "e_map_pool_types" - """ - e_map_pool_types_aggregate( - """distinct select on columns""" - distinct_on: [e_map_pool_types_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_map_pool_types_order_by!] - - """filter the rows returned""" - where: e_map_pool_types_bool_exp - ): e_map_pool_types_aggregate! - - """ - fetch data from the table: "e_map_pool_types" using primary key columns - """ - e_map_pool_types_by_pk(value: String!): e_map_pool_types - - """ - fetch data from the table in a streaming manner: "e_map_pool_types" - """ - e_map_pool_types_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_map_pool_types_stream_cursor_input]! - - """filter the rows returned""" - where: e_map_pool_types_bool_exp - ): [e_map_pool_types!]! - - """ - fetch data from the table: "e_match_clip_visibility" - """ - e_match_clip_visibility( - """distinct select on columns""" - distinct_on: [e_match_clip_visibility_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [e_match_clip_visibility_order_by!] - - """filter the rows returned""" - where: e_match_clip_visibility_bool_exp - ): [e_match_clip_visibility!]! - - """ - fetch aggregated fields from the table: "e_match_clip_visibility" - """ - e_match_clip_visibility_aggregate( - """distinct select on columns""" - distinct_on: [e_match_clip_visibility_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [e_match_clip_visibility_order_by!] - - """filter the rows returned""" - where: e_match_clip_visibility_bool_exp - ): e_match_clip_visibility_aggregate! - - """ - fetch data from the table: "e_match_clip_visibility" using primary key columns - """ - e_match_clip_visibility_by_pk(value: String!): e_match_clip_visibility - - """ - fetch data from the table in a streaming manner: "e_match_clip_visibility" - """ - e_match_clip_visibility_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_match_clip_visibility_stream_cursor_input]! - - """filter the rows returned""" - where: e_match_clip_visibility_bool_exp - ): [e_match_clip_visibility!]! - - """ - fetch data from the table: "e_match_map_status" - """ - e_match_map_status( - """distinct select on columns""" - distinct_on: [e_match_map_status_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_match_map_status_order_by!] - - """filter the rows returned""" - where: e_match_map_status_bool_exp - ): [e_match_map_status!]! - - """ - fetch aggregated fields from the table: "e_match_map_status" - """ - e_match_map_status_aggregate( - """distinct select on columns""" - distinct_on: [e_match_map_status_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_match_map_status_order_by!] - - """filter the rows returned""" - where: e_match_map_status_bool_exp - ): e_match_map_status_aggregate! - - """ - fetch data from the table: "e_match_map_status" using primary key columns - """ - e_match_map_status_by_pk(value: String!): e_match_map_status - - """ - fetch data from the table in a streaming manner: "e_match_map_status" - """ - e_match_map_status_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_match_map_status_stream_cursor_input]! - - """filter the rows returned""" - where: e_match_map_status_bool_exp - ): [e_match_map_status!]! - - """ - fetch data from the table: "e_match_mode" - """ - e_match_mode( - """distinct select on columns""" - distinct_on: [e_match_mode_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_match_mode_order_by!] - - """filter the rows returned""" - where: e_match_mode_bool_exp - ): [e_match_mode!]! - - """ - fetch aggregated fields from the table: "e_match_mode" - """ - e_match_mode_aggregate( - """distinct select on columns""" - distinct_on: [e_match_mode_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_match_mode_order_by!] - - """filter the rows returned""" - where: e_match_mode_bool_exp - ): e_match_mode_aggregate! - - """fetch data from the table: "e_match_mode" using primary key columns""" - e_match_mode_by_pk(value: String!): e_match_mode - - """ - fetch data from the table in a streaming manner: "e_match_mode" - """ - e_match_mode_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_match_mode_stream_cursor_input]! - - """filter the rows returned""" - where: e_match_mode_bool_exp - ): [e_match_mode!]! - - """ - fetch data from the table: "e_match_party_sources" - """ - e_match_party_sources( - """distinct select on columns""" - distinct_on: [e_match_party_sources_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_match_party_sources_order_by!] - - """filter the rows returned""" - where: e_match_party_sources_bool_exp - ): [e_match_party_sources!]! - - """ - fetch aggregated fields from the table: "e_match_party_sources" - """ - e_match_party_sources_aggregate( - """distinct select on columns""" - distinct_on: [e_match_party_sources_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_match_party_sources_order_by!] - - """filter the rows returned""" - where: e_match_party_sources_bool_exp - ): e_match_party_sources_aggregate! - - """ - fetch data from the table: "e_match_party_sources" using primary key columns - """ - e_match_party_sources_by_pk(value: String!): e_match_party_sources - - """ - fetch data from the table in a streaming manner: "e_match_party_sources" - """ - e_match_party_sources_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_match_party_sources_stream_cursor_input]! - - """filter the rows returned""" - where: e_match_party_sources_bool_exp - ): [e_match_party_sources!]! - - """ - fetch data from the table: "e_match_status" - """ - e_match_status( - """distinct select on columns""" - distinct_on: [e_match_status_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_match_status_order_by!] - - """filter the rows returned""" - where: e_match_status_bool_exp - ): [e_match_status!]! - - """ - fetch aggregated fields from the table: "e_match_status" - """ - e_match_status_aggregate( - """distinct select on columns""" - distinct_on: [e_match_status_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_match_status_order_by!] - - """filter the rows returned""" - where: e_match_status_bool_exp - ): e_match_status_aggregate! - - """fetch data from the table: "e_match_status" using primary key columns""" - e_match_status_by_pk(value: String!): e_match_status - - """ - fetch data from the table in a streaming manner: "e_match_status" - """ - e_match_status_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_match_status_stream_cursor_input]! - - """filter the rows returned""" - where: e_match_status_bool_exp - ): [e_match_status!]! - - """ - fetch data from the table: "e_match_types" - """ - e_match_types( - """distinct select on columns""" - distinct_on: [e_match_types_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_match_types_order_by!] - - """filter the rows returned""" - where: e_match_types_bool_exp - ): [e_match_types!]! - - """ - fetch aggregated fields from the table: "e_match_types" - """ - e_match_types_aggregate( - """distinct select on columns""" - distinct_on: [e_match_types_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_match_types_order_by!] - - """filter the rows returned""" - where: e_match_types_bool_exp - ): e_match_types_aggregate! - - """fetch data from the table: "e_match_types" using primary key columns""" - e_match_types_by_pk(value: String!): e_match_types - - """ - fetch data from the table in a streaming manner: "e_match_types" - """ - e_match_types_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_match_types_stream_cursor_input]! - - """filter the rows returned""" - where: e_match_types_bool_exp - ): [e_match_types!]! - - """ - fetch data from the table: "e_notification_types" - """ - e_notification_types( - """distinct select on columns""" - distinct_on: [e_notification_types_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_notification_types_order_by!] - - """filter the rows returned""" - where: e_notification_types_bool_exp - ): [e_notification_types!]! - - """ - fetch aggregated fields from the table: "e_notification_types" - """ - e_notification_types_aggregate( - """distinct select on columns""" - distinct_on: [e_notification_types_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_notification_types_order_by!] - - """filter the rows returned""" - where: e_notification_types_bool_exp - ): e_notification_types_aggregate! - - """ - fetch data from the table: "e_notification_types" using primary key columns - """ - e_notification_types_by_pk(value: String!): e_notification_types - - """ - fetch data from the table in a streaming manner: "e_notification_types" - """ - e_notification_types_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_notification_types_stream_cursor_input]! - - """filter the rows returned""" - where: e_notification_types_bool_exp - ): [e_notification_types!]! - - """ - fetch data from the table: "e_objective_types" - """ - e_objective_types( - """distinct select on columns""" - distinct_on: [e_objective_types_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_objective_types_order_by!] - - """filter the rows returned""" - where: e_objective_types_bool_exp - ): [e_objective_types!]! - - """ - fetch aggregated fields from the table: "e_objective_types" - """ - e_objective_types_aggregate( - """distinct select on columns""" - distinct_on: [e_objective_types_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_objective_types_order_by!] - - """filter the rows returned""" - where: e_objective_types_bool_exp - ): e_objective_types_aggregate! - - """ - fetch data from the table: "e_objective_types" using primary key columns - """ - e_objective_types_by_pk(value: String!): e_objective_types - - """ - fetch data from the table in a streaming manner: "e_objective_types" - """ - e_objective_types_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_objective_types_stream_cursor_input]! - - """filter the rows returned""" - where: e_objective_types_bool_exp - ): [e_objective_types!]! - - """ - fetch data from the table: "e_player_roles" - """ - e_player_roles( - """distinct select on columns""" - distinct_on: [e_player_roles_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_player_roles_order_by!] - - """filter the rows returned""" - where: e_player_roles_bool_exp - ): [e_player_roles!]! - - """ - fetch aggregated fields from the table: "e_player_roles" - """ - e_player_roles_aggregate( - """distinct select on columns""" - distinct_on: [e_player_roles_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_player_roles_order_by!] - - """filter the rows returned""" - where: e_player_roles_bool_exp - ): e_player_roles_aggregate! - - """fetch data from the table: "e_player_roles" using primary key columns""" - e_player_roles_by_pk(value: String!): e_player_roles - - """ - fetch data from the table in a streaming manner: "e_player_roles" - """ - e_player_roles_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_player_roles_stream_cursor_input]! - - """filter the rows returned""" - where: e_player_roles_bool_exp - ): [e_player_roles!]! - - """ - fetch data from the table: "e_plugin_runtimes" - """ - e_plugin_runtimes( - """distinct select on columns""" - distinct_on: [e_plugin_runtimes_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_plugin_runtimes_order_by!] - - """filter the rows returned""" - where: e_plugin_runtimes_bool_exp - ): [e_plugin_runtimes!]! - - """ - fetch aggregated fields from the table: "e_plugin_runtimes" - """ - e_plugin_runtimes_aggregate( - """distinct select on columns""" - distinct_on: [e_plugin_runtimes_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_plugin_runtimes_order_by!] - - """filter the rows returned""" - where: e_plugin_runtimes_bool_exp - ): e_plugin_runtimes_aggregate! - - """ - fetch data from the table: "e_plugin_runtimes" using primary key columns - """ - e_plugin_runtimes_by_pk(value: String!): e_plugin_runtimes - - """ - fetch data from the table in a streaming manner: "e_plugin_runtimes" - """ - e_plugin_runtimes_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_plugin_runtimes_stream_cursor_input]! - - """filter the rows returned""" - where: e_plugin_runtimes_bool_exp - ): [e_plugin_runtimes!]! - - """ - fetch data from the table: "e_ready_settings" - """ - e_ready_settings( - """distinct select on columns""" - distinct_on: [e_ready_settings_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_ready_settings_order_by!] - - """filter the rows returned""" - where: e_ready_settings_bool_exp - ): [e_ready_settings!]! - - """ - fetch aggregated fields from the table: "e_ready_settings" - """ - e_ready_settings_aggregate( - """distinct select on columns""" - distinct_on: [e_ready_settings_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_ready_settings_order_by!] - - """filter the rows returned""" - where: e_ready_settings_bool_exp - ): e_ready_settings_aggregate! - - """ - fetch data from the table: "e_ready_settings" using primary key columns - """ - e_ready_settings_by_pk(value: String!): e_ready_settings - - """ - fetch data from the table in a streaming manner: "e_ready_settings" - """ - e_ready_settings_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_ready_settings_stream_cursor_input]! - - """filter the rows returned""" - where: e_ready_settings_bool_exp - ): [e_ready_settings!]! - - """ - fetch data from the table: "e_sanction_scopes" - """ - e_sanction_scopes( - """distinct select on columns""" - distinct_on: [e_sanction_scopes_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_sanction_scopes_order_by!] - - """filter the rows returned""" - where: e_sanction_scopes_bool_exp - ): [e_sanction_scopes!]! - - """ - fetch aggregated fields from the table: "e_sanction_scopes" - """ - e_sanction_scopes_aggregate( - """distinct select on columns""" - distinct_on: [e_sanction_scopes_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_sanction_scopes_order_by!] - - """filter the rows returned""" - where: e_sanction_scopes_bool_exp - ): e_sanction_scopes_aggregate! - - """ - fetch data from the table: "e_sanction_scopes" using primary key columns - """ - e_sanction_scopes_by_pk(value: String!): e_sanction_scopes - - """ - fetch data from the table in a streaming manner: "e_sanction_scopes" - """ - e_sanction_scopes_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_sanction_scopes_stream_cursor_input]! - - """filter the rows returned""" - where: e_sanction_scopes_bool_exp - ): [e_sanction_scopes!]! - - """ - fetch data from the table: "e_sanction_sources" - """ - e_sanction_sources( - """distinct select on columns""" - distinct_on: [e_sanction_sources_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_sanction_sources_order_by!] - - """filter the rows returned""" - where: e_sanction_sources_bool_exp - ): [e_sanction_sources!]! - - """ - fetch aggregated fields from the table: "e_sanction_sources" - """ - e_sanction_sources_aggregate( - """distinct select on columns""" - distinct_on: [e_sanction_sources_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_sanction_sources_order_by!] - - """filter the rows returned""" - where: e_sanction_sources_bool_exp - ): e_sanction_sources_aggregate! - - """ - fetch data from the table: "e_sanction_sources" using primary key columns - """ - e_sanction_sources_by_pk(value: String!): e_sanction_sources - - """ - fetch data from the table in a streaming manner: "e_sanction_sources" - """ - e_sanction_sources_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_sanction_sources_stream_cursor_input]! - - """filter the rows returned""" - where: e_sanction_sources_bool_exp - ): [e_sanction_sources!]! - - """ - fetch data from the table: "e_sanction_types" - """ - e_sanction_types( - """distinct select on columns""" - distinct_on: [e_sanction_types_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_sanction_types_order_by!] - - """filter the rows returned""" - where: e_sanction_types_bool_exp - ): [e_sanction_types!]! - - """ - fetch aggregated fields from the table: "e_sanction_types" - """ - e_sanction_types_aggregate( - """distinct select on columns""" - distinct_on: [e_sanction_types_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_sanction_types_order_by!] - - """filter the rows returned""" - where: e_sanction_types_bool_exp - ): e_sanction_types_aggregate! - - """ - fetch data from the table: "e_sanction_types" using primary key columns - """ - e_sanction_types_by_pk(value: String!): e_sanction_types - - """ - fetch data from the table in a streaming manner: "e_sanction_types" - """ - e_sanction_types_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_sanction_types_stream_cursor_input]! - - """filter the rows returned""" - where: e_sanction_types_bool_exp - ): [e_sanction_types!]! - - """ - fetch data from the table: "e_scrim_request_statuses" - """ - e_scrim_request_statuses( - """distinct select on columns""" - distinct_on: [e_scrim_request_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_scrim_request_statuses_order_by!] - - """filter the rows returned""" - where: e_scrim_request_statuses_bool_exp - ): [e_scrim_request_statuses!]! - - """ - fetch aggregated fields from the table: "e_scrim_request_statuses" - """ - e_scrim_request_statuses_aggregate( - """distinct select on columns""" - distinct_on: [e_scrim_request_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_scrim_request_statuses_order_by!] - - """filter the rows returned""" - where: e_scrim_request_statuses_bool_exp - ): e_scrim_request_statuses_aggregate! - - """ - fetch data from the table: "e_scrim_request_statuses" using primary key columns - """ - e_scrim_request_statuses_by_pk(value: String!): e_scrim_request_statuses - - """ - fetch data from the table in a streaming manner: "e_scrim_request_statuses" - """ - e_scrim_request_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_scrim_request_statuses_stream_cursor_input]! - - """filter the rows returned""" - where: e_scrim_request_statuses_bool_exp - ): [e_scrim_request_statuses!]! - - """ - fetch data from the table: "e_server_types" - """ - e_server_types( - """distinct select on columns""" - distinct_on: [e_server_types_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_server_types_order_by!] - - """filter the rows returned""" - where: e_server_types_bool_exp - ): [e_server_types!]! - - """ - fetch aggregated fields from the table: "e_server_types" - """ - e_server_types_aggregate( - """distinct select on columns""" - distinct_on: [e_server_types_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_server_types_order_by!] - - """filter the rows returned""" - where: e_server_types_bool_exp - ): e_server_types_aggregate! - - """fetch data from the table: "e_server_types" using primary key columns""" - e_server_types_by_pk(value: String!): e_server_types - - """ - fetch data from the table in a streaming manner: "e_server_types" - """ - e_server_types_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_server_types_stream_cursor_input]! - - """filter the rows returned""" - where: e_server_types_bool_exp - ): [e_server_types!]! - - """ - fetch data from the table: "e_sides" - """ - e_sides( - """distinct select on columns""" - distinct_on: [e_sides_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_sides_order_by!] - - """filter the rows returned""" - where: e_sides_bool_exp - ): [e_sides!]! - - """ - fetch aggregated fields from the table: "e_sides" - """ - e_sides_aggregate( - """distinct select on columns""" - distinct_on: [e_sides_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_sides_order_by!] - - """filter the rows returned""" - where: e_sides_bool_exp - ): e_sides_aggregate! - - """fetch data from the table: "e_sides" using primary key columns""" - e_sides_by_pk(value: String!): e_sides - - """ - fetch data from the table in a streaming manner: "e_sides" - """ - e_sides_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_sides_stream_cursor_input]! - - """filter the rows returned""" - where: e_sides_bool_exp - ): [e_sides!]! - - """ - fetch data from the table: "e_system_alert_types" - """ - e_system_alert_types( - """distinct select on columns""" - distinct_on: [e_system_alert_types_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_system_alert_types_order_by!] - - """filter the rows returned""" - where: e_system_alert_types_bool_exp - ): [e_system_alert_types!]! - - """ - fetch aggregated fields from the table: "e_system_alert_types" - """ - e_system_alert_types_aggregate( - """distinct select on columns""" - distinct_on: [e_system_alert_types_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_system_alert_types_order_by!] - - """filter the rows returned""" - where: e_system_alert_types_bool_exp - ): e_system_alert_types_aggregate! - - """ - fetch data from the table: "e_system_alert_types" using primary key columns - """ - e_system_alert_types_by_pk(value: String!): e_system_alert_types - - """ - fetch data from the table in a streaming manner: "e_system_alert_types" - """ - e_system_alert_types_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_system_alert_types_stream_cursor_input]! - - """filter the rows returned""" - where: e_system_alert_types_bool_exp - ): [e_system_alert_types!]! - - """ - fetch data from the table: "e_team_roles" - """ - e_team_roles( - """distinct select on columns""" - distinct_on: [e_team_roles_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_team_roles_order_by!] - - """filter the rows returned""" - where: e_team_roles_bool_exp - ): [e_team_roles!]! - - """ - fetch aggregated fields from the table: "e_team_roles" - """ - e_team_roles_aggregate( - """distinct select on columns""" - distinct_on: [e_team_roles_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_team_roles_order_by!] - - """filter the rows returned""" - where: e_team_roles_bool_exp - ): e_team_roles_aggregate! - - """fetch data from the table: "e_team_roles" using primary key columns""" - e_team_roles_by_pk(value: String!): e_team_roles - - """ - fetch data from the table in a streaming manner: "e_team_roles" - """ - e_team_roles_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_team_roles_stream_cursor_input]! - - """filter the rows returned""" - where: e_team_roles_bool_exp - ): [e_team_roles!]! - - """ - fetch data from the table: "e_team_roster_statuses" - """ - e_team_roster_statuses( - """distinct select on columns""" - distinct_on: [e_team_roster_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_team_roster_statuses_order_by!] - - """filter the rows returned""" - where: e_team_roster_statuses_bool_exp - ): [e_team_roster_statuses!]! - - """ - fetch aggregated fields from the table: "e_team_roster_statuses" - """ - e_team_roster_statuses_aggregate( - """distinct select on columns""" - distinct_on: [e_team_roster_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_team_roster_statuses_order_by!] - - """filter the rows returned""" - where: e_team_roster_statuses_bool_exp - ): e_team_roster_statuses_aggregate! - - """ - fetch data from the table: "e_team_roster_statuses" using primary key columns - """ - e_team_roster_statuses_by_pk(value: String!): e_team_roster_statuses - - """ - fetch data from the table in a streaming manner: "e_team_roster_statuses" - """ - e_team_roster_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_team_roster_statuses_stream_cursor_input]! - - """filter the rows returned""" - where: e_team_roster_statuses_bool_exp - ): [e_team_roster_statuses!]! - - """ - fetch data from the table: "e_timeout_settings" - """ - e_timeout_settings( - """distinct select on columns""" - distinct_on: [e_timeout_settings_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_timeout_settings_order_by!] - - """filter the rows returned""" - where: e_timeout_settings_bool_exp - ): [e_timeout_settings!]! - - """ - fetch aggregated fields from the table: "e_timeout_settings" - """ - e_timeout_settings_aggregate( - """distinct select on columns""" - distinct_on: [e_timeout_settings_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_timeout_settings_order_by!] - - """filter the rows returned""" - where: e_timeout_settings_bool_exp - ): e_timeout_settings_aggregate! - - """ - fetch data from the table: "e_timeout_settings" using primary key columns - """ - e_timeout_settings_by_pk(value: String!): e_timeout_settings - - """ - fetch data from the table in a streaming manner: "e_timeout_settings" - """ - e_timeout_settings_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_timeout_settings_stream_cursor_input]! - - """filter the rows returned""" - where: e_timeout_settings_bool_exp - ): [e_timeout_settings!]! - - """ - fetch data from the table: "e_tournament_categories" - """ - e_tournament_categories( - """distinct select on columns""" - distinct_on: [e_tournament_categories_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [e_tournament_categories_order_by!] - - """filter the rows returned""" - where: e_tournament_categories_bool_exp - ): [e_tournament_categories!]! - - """ - fetch aggregated fields from the table: "e_tournament_categories" - """ - e_tournament_categories_aggregate( - """distinct select on columns""" - distinct_on: [e_tournament_categories_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [e_tournament_categories_order_by!] - - """filter the rows returned""" - where: e_tournament_categories_bool_exp - ): e_tournament_categories_aggregate! - - """ - fetch data from the table: "e_tournament_categories" using primary key columns - """ - e_tournament_categories_by_pk(value: String!): e_tournament_categories - - """ - fetch data from the table in a streaming manner: "e_tournament_categories" - """ - e_tournament_categories_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_tournament_categories_stream_cursor_input]! - - """filter the rows returned""" - where: e_tournament_categories_bool_exp - ): [e_tournament_categories!]! - - """ - fetch data from the table: "e_tournament_free_agent_statuses" - """ - e_tournament_free_agent_statuses( - """distinct select on columns""" - distinct_on: [e_tournament_free_agent_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_tournament_free_agent_statuses_order_by!] - - """filter the rows returned""" - where: e_tournament_free_agent_statuses_bool_exp - ): [e_tournament_free_agent_statuses!]! - - """ - fetch aggregated fields from the table: "e_tournament_free_agent_statuses" - """ - e_tournament_free_agent_statuses_aggregate( - """distinct select on columns""" - distinct_on: [e_tournament_free_agent_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_tournament_free_agent_statuses_order_by!] - - """filter the rows returned""" - where: e_tournament_free_agent_statuses_bool_exp - ): e_tournament_free_agent_statuses_aggregate! - - """ - fetch data from the table: "e_tournament_free_agent_statuses" using primary key columns - """ - e_tournament_free_agent_statuses_by_pk(value: String!): e_tournament_free_agent_statuses - - """ - fetch data from the table in a streaming manner: "e_tournament_free_agent_statuses" - """ - e_tournament_free_agent_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_tournament_free_agent_statuses_stream_cursor_input]! - - """filter the rows returned""" - where: e_tournament_free_agent_statuses_bool_exp - ): [e_tournament_free_agent_statuses!]! - - """ - fetch data from the table: "e_tournament_registration_types" - """ - e_tournament_registration_types( - """distinct select on columns""" - distinct_on: [e_tournament_registration_types_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [e_tournament_registration_types_order_by!] - - """filter the rows returned""" - where: e_tournament_registration_types_bool_exp - ): [e_tournament_registration_types!]! - - """ - fetch aggregated fields from the table: "e_tournament_registration_types" - """ - e_tournament_registration_types_aggregate( - """distinct select on columns""" - distinct_on: [e_tournament_registration_types_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [e_tournament_registration_types_order_by!] - - """filter the rows returned""" - where: e_tournament_registration_types_bool_exp - ): e_tournament_registration_types_aggregate! - - """ - fetch data from the table: "e_tournament_registration_types" using primary key columns - """ - e_tournament_registration_types_by_pk(value: String!): e_tournament_registration_types - - """ - fetch data from the table in a streaming manner: "e_tournament_registration_types" - """ - e_tournament_registration_types_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_tournament_registration_types_stream_cursor_input]! - - """filter the rows returned""" - where: e_tournament_registration_types_bool_exp - ): [e_tournament_registration_types!]! - - """ - fetch data from the table: "e_tournament_stage_types" - """ - e_tournament_stage_types( - """distinct select on columns""" - distinct_on: [e_tournament_stage_types_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [e_tournament_stage_types_order_by!] - - """filter the rows returned""" - where: e_tournament_stage_types_bool_exp - ): [e_tournament_stage_types!]! - - """ - fetch aggregated fields from the table: "e_tournament_stage_types" - """ - e_tournament_stage_types_aggregate( - """distinct select on columns""" - distinct_on: [e_tournament_stage_types_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [e_tournament_stage_types_order_by!] - - """filter the rows returned""" - where: e_tournament_stage_types_bool_exp - ): e_tournament_stage_types_aggregate! - - """ - fetch data from the table: "e_tournament_stage_types" using primary key columns - """ - e_tournament_stage_types_by_pk(value: String!): e_tournament_stage_types - - """ - fetch data from the table in a streaming manner: "e_tournament_stage_types" - """ - e_tournament_stage_types_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_tournament_stage_types_stream_cursor_input]! - - """filter the rows returned""" - where: e_tournament_stage_types_bool_exp - ): [e_tournament_stage_types!]! - - """ - fetch data from the table: "e_tournament_status" - """ - e_tournament_status( - """distinct select on columns""" - distinct_on: [e_tournament_status_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [e_tournament_status_order_by!] - - """filter the rows returned""" - where: e_tournament_status_bool_exp - ): [e_tournament_status!]! - - """ - fetch aggregated fields from the table: "e_tournament_status" - """ - e_tournament_status_aggregate( - """distinct select on columns""" - distinct_on: [e_tournament_status_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [e_tournament_status_order_by!] - - """filter the rows returned""" - where: e_tournament_status_bool_exp - ): e_tournament_status_aggregate! - - """ - fetch data from the table: "e_tournament_status" using primary key columns - """ - e_tournament_status_by_pk(value: String!): e_tournament_status - - """ - fetch data from the table in a streaming manner: "e_tournament_status" - """ - e_tournament_status_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_tournament_status_stream_cursor_input]! - - """filter the rows returned""" - where: e_tournament_status_bool_exp - ): [e_tournament_status!]! - - """ - fetch data from the table: "e_utility_practice_access" - """ - e_utility_practice_access( - """distinct select on columns""" - distinct_on: [e_utility_practice_access_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [e_utility_practice_access_order_by!] - - """filter the rows returned""" - where: e_utility_practice_access_bool_exp - ): [e_utility_practice_access!]! - - """ - fetch aggregated fields from the table: "e_utility_practice_access" - """ - e_utility_practice_access_aggregate( - """distinct select on columns""" - distinct_on: [e_utility_practice_access_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [e_utility_practice_access_order_by!] - - """filter the rows returned""" - where: e_utility_practice_access_bool_exp - ): e_utility_practice_access_aggregate! - - """ - fetch data from the table: "e_utility_practice_access" using primary key columns - """ - e_utility_practice_access_by_pk(value: String!): e_utility_practice_access - - """ - fetch data from the table in a streaming manner: "e_utility_practice_access" - """ - e_utility_practice_access_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_utility_practice_access_stream_cursor_input]! - - """filter the rows returned""" - where: e_utility_practice_access_bool_exp - ): [e_utility_practice_access!]! - - """ - fetch data from the table: "e_utility_practice_statuses" - """ - e_utility_practice_statuses( - """distinct select on columns""" - distinct_on: [e_utility_practice_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_utility_practice_statuses_order_by!] - - """filter the rows returned""" - where: e_utility_practice_statuses_bool_exp - ): [e_utility_practice_statuses!]! - - """ - fetch aggregated fields from the table: "e_utility_practice_statuses" - """ - e_utility_practice_statuses_aggregate( - """distinct select on columns""" - distinct_on: [e_utility_practice_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_utility_practice_statuses_order_by!] - - """filter the rows returned""" - where: e_utility_practice_statuses_bool_exp - ): e_utility_practice_statuses_aggregate! - - """ - fetch data from the table: "e_utility_practice_statuses" using primary key columns - """ - e_utility_practice_statuses_by_pk(value: String!): e_utility_practice_statuses - - """ - fetch data from the table in a streaming manner: "e_utility_practice_statuses" - """ - e_utility_practice_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_utility_practice_statuses_stream_cursor_input]! - - """filter the rows returned""" - where: e_utility_practice_statuses_bool_exp - ): [e_utility_practice_statuses!]! - - """ - fetch data from the table: "e_utility_sources" - """ - e_utility_sources( - """distinct select on columns""" - distinct_on: [e_utility_sources_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_utility_sources_order_by!] - - """filter the rows returned""" - where: e_utility_sources_bool_exp - ): [e_utility_sources!]! - - """ - fetch aggregated fields from the table: "e_utility_sources" - """ - e_utility_sources_aggregate( - """distinct select on columns""" - distinct_on: [e_utility_sources_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_utility_sources_order_by!] - - """filter the rows returned""" - where: e_utility_sources_bool_exp - ): e_utility_sources_aggregate! - - """ - fetch data from the table: "e_utility_sources" using primary key columns - """ - e_utility_sources_by_pk(value: String!): e_utility_sources - - """ - fetch data from the table in a streaming manner: "e_utility_sources" - """ - e_utility_sources_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_utility_sources_stream_cursor_input]! - - """filter the rows returned""" - where: e_utility_sources_bool_exp - ): [e_utility_sources!]! - - """ - fetch data from the table: "e_utility_techniques" - """ - e_utility_techniques( - """distinct select on columns""" - distinct_on: [e_utility_techniques_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_utility_techniques_order_by!] - - """filter the rows returned""" - where: e_utility_techniques_bool_exp - ): [e_utility_techniques!]! - - """ - fetch aggregated fields from the table: "e_utility_techniques" - """ - e_utility_techniques_aggregate( - """distinct select on columns""" - distinct_on: [e_utility_techniques_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_utility_techniques_order_by!] - - """filter the rows returned""" - where: e_utility_techniques_bool_exp - ): e_utility_techniques_aggregate! - - """ - fetch data from the table: "e_utility_techniques" using primary key columns - """ - e_utility_techniques_by_pk(value: String!): e_utility_techniques - - """ - fetch data from the table in a streaming manner: "e_utility_techniques" - """ - e_utility_techniques_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_utility_techniques_stream_cursor_input]! - - """filter the rows returned""" - where: e_utility_techniques_bool_exp - ): [e_utility_techniques!]! - - """ - fetch data from the table: "e_utility_throw_strengths" - """ - e_utility_throw_strengths( - """distinct select on columns""" - distinct_on: [e_utility_throw_strengths_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_utility_throw_strengths_order_by!] - - """filter the rows returned""" - where: e_utility_throw_strengths_bool_exp - ): [e_utility_throw_strengths!]! - - """ - fetch aggregated fields from the table: "e_utility_throw_strengths" - """ - e_utility_throw_strengths_aggregate( - """distinct select on columns""" - distinct_on: [e_utility_throw_strengths_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_utility_throw_strengths_order_by!] - - """filter the rows returned""" - where: e_utility_throw_strengths_bool_exp - ): e_utility_throw_strengths_aggregate! - - """ - fetch data from the table: "e_utility_throw_strengths" using primary key columns - """ - e_utility_throw_strengths_by_pk(value: String!): e_utility_throw_strengths - - """ - fetch data from the table in a streaming manner: "e_utility_throw_strengths" - """ - e_utility_throw_strengths_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_utility_throw_strengths_stream_cursor_input]! - - """filter the rows returned""" - where: e_utility_throw_strengths_bool_exp - ): [e_utility_throw_strengths!]! - - """ - fetch data from the table: "e_utility_types" - """ - e_utility_types( - """distinct select on columns""" - distinct_on: [e_utility_types_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_utility_types_order_by!] - - """filter the rows returned""" - where: e_utility_types_bool_exp - ): [e_utility_types!]! - - """ - fetch aggregated fields from the table: "e_utility_types" - """ - e_utility_types_aggregate( - """distinct select on columns""" - distinct_on: [e_utility_types_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_utility_types_order_by!] - - """filter the rows returned""" - where: e_utility_types_bool_exp - ): e_utility_types_aggregate! - - """fetch data from the table: "e_utility_types" using primary key columns""" - e_utility_types_by_pk(value: String!): e_utility_types - - """ - fetch data from the table in a streaming manner: "e_utility_types" - """ - e_utility_types_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_utility_types_stream_cursor_input]! - - """filter the rows returned""" - where: e_utility_types_bool_exp - ): [e_utility_types!]! - - """ - fetch data from the table: "e_utility_visibility" - """ - e_utility_visibility( - """distinct select on columns""" - distinct_on: [e_utility_visibility_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [e_utility_visibility_order_by!] - - """filter the rows returned""" - where: e_utility_visibility_bool_exp - ): [e_utility_visibility!]! - - """ - fetch aggregated fields from the table: "e_utility_visibility" - """ - e_utility_visibility_aggregate( - """distinct select on columns""" - distinct_on: [e_utility_visibility_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [e_utility_visibility_order_by!] - - """filter the rows returned""" - where: e_utility_visibility_bool_exp - ): e_utility_visibility_aggregate! - - """ - fetch data from the table: "e_utility_visibility" using primary key columns - """ - e_utility_visibility_by_pk(value: String!): e_utility_visibility - - """ - fetch data from the table in a streaming manner: "e_utility_visibility" - """ - e_utility_visibility_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_utility_visibility_stream_cursor_input]! - - """filter the rows returned""" - where: e_utility_visibility_bool_exp - ): [e_utility_visibility!]! - - """ - fetch data from the table: "e_veto_pick_types" - """ - e_veto_pick_types( - """distinct select on columns""" - distinct_on: [e_veto_pick_types_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_veto_pick_types_order_by!] - - """filter the rows returned""" - where: e_veto_pick_types_bool_exp - ): [e_veto_pick_types!]! - - """ - fetch aggregated fields from the table: "e_veto_pick_types" - """ - e_veto_pick_types_aggregate( - """distinct select on columns""" - distinct_on: [e_veto_pick_types_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_veto_pick_types_order_by!] - - """filter the rows returned""" - where: e_veto_pick_types_bool_exp - ): e_veto_pick_types_aggregate! - - """ - fetch data from the table: "e_veto_pick_types" using primary key columns - """ - e_veto_pick_types_by_pk(value: String!): e_veto_pick_types - - """ - fetch data from the table in a streaming manner: "e_veto_pick_types" - """ - e_veto_pick_types_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_veto_pick_types_stream_cursor_input]! - - """filter the rows returned""" - where: e_veto_pick_types_bool_exp - ): [e_veto_pick_types!]! - - """ - fetch data from the table: "e_winning_reasons" - """ - e_winning_reasons( - """distinct select on columns""" - distinct_on: [e_winning_reasons_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_winning_reasons_order_by!] - - """filter the rows returned""" - where: e_winning_reasons_bool_exp - ): [e_winning_reasons!]! - - """ - fetch aggregated fields from the table: "e_winning_reasons" - """ - e_winning_reasons_aggregate( - """distinct select on columns""" - distinct_on: [e_winning_reasons_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_winning_reasons_order_by!] - - """filter the rows returned""" - where: e_winning_reasons_bool_exp - ): e_winning_reasons_aggregate! - - """ - fetch data from the table: "e_winning_reasons" using primary key columns - """ - e_winning_reasons_by_pk(value: String!): e_winning_reasons - - """ - fetch data from the table in a streaming manner: "e_winning_reasons" - """ - e_winning_reasons_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [e_winning_reasons_stream_cursor_input]! - - """filter the rows returned""" - where: e_winning_reasons_bool_exp - ): [e_winning_reasons!]! - - """ - fetch data from the table: "event_match_links" - """ - event_match_links( - """distinct select on columns""" - distinct_on: [event_match_links_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [event_match_links_order_by!] - - """filter the rows returned""" - where: event_match_links_bool_exp - ): [event_match_links!]! - - """ - fetch aggregated fields from the table: "event_match_links" - """ - event_match_links_aggregate( - """distinct select on columns""" - distinct_on: [event_match_links_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [event_match_links_order_by!] - - """filter the rows returned""" - where: event_match_links_bool_exp - ): event_match_links_aggregate! - - """ - fetch data from the table: "event_match_links" using primary key columns - """ - event_match_links_by_pk(event_id: uuid!, match_id: uuid!): event_match_links - - """ - fetch data from the table in a streaming manner: "event_match_links" - """ - event_match_links_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [event_match_links_stream_cursor_input]! - - """filter the rows returned""" - where: event_match_links_bool_exp - ): [event_match_links!]! - - """ - fetch data from the table: "event_media" - """ - event_media( - """distinct select on columns""" - distinct_on: [event_media_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [event_media_order_by!] - - """filter the rows returned""" - where: event_media_bool_exp - ): [event_media!]! - - """ - fetch aggregated fields from the table: "event_media" - """ - event_media_aggregate( - """distinct select on columns""" - distinct_on: [event_media_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [event_media_order_by!] - - """filter the rows returned""" - where: event_media_bool_exp - ): event_media_aggregate! - - """fetch data from the table: "event_media" using primary key columns""" - event_media_by_pk(id: uuid!): event_media - - """ - fetch data from the table: "event_media_players" - """ - event_media_players( - """distinct select on columns""" - distinct_on: [event_media_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [event_media_players_order_by!] - - """filter the rows returned""" - where: event_media_players_bool_exp - ): [event_media_players!]! - - """ - fetch aggregated fields from the table: "event_media_players" - """ - event_media_players_aggregate( - """distinct select on columns""" - distinct_on: [event_media_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [event_media_players_order_by!] - - """filter the rows returned""" - where: event_media_players_bool_exp - ): event_media_players_aggregate! - - """ - fetch data from the table: "event_media_players" using primary key columns - """ - event_media_players_by_pk(media_id: uuid!, steam_id: bigint!): event_media_players - - """ - fetch data from the table in a streaming manner: "event_media_players" - """ - event_media_players_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [event_media_players_stream_cursor_input]! - - """filter the rows returned""" - where: event_media_players_bool_exp - ): [event_media_players!]! - - """ - fetch data from the table in a streaming manner: "event_media" - """ - event_media_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [event_media_stream_cursor_input]! - - """filter the rows returned""" - where: event_media_bool_exp - ): [event_media!]! - - """ - fetch data from the table: "event_organizers" - """ - event_organizers( - """distinct select on columns""" - distinct_on: [event_organizers_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [event_organizers_order_by!] - - """filter the rows returned""" - where: event_organizers_bool_exp - ): [event_organizers!]! - - """ - fetch aggregated fields from the table: "event_organizers" - """ - event_organizers_aggregate( - """distinct select on columns""" - distinct_on: [event_organizers_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [event_organizers_order_by!] - - """filter the rows returned""" - where: event_organizers_bool_exp - ): event_organizers_aggregate! - - """ - fetch data from the table: "event_organizers" using primary key columns - """ - event_organizers_by_pk(event_id: uuid!, steam_id: bigint!): event_organizers - - """ - fetch data from the table in a streaming manner: "event_organizers" - """ - event_organizers_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [event_organizers_stream_cursor_input]! - - """filter the rows returned""" - where: event_organizers_bool_exp - ): [event_organizers!]! - - """ - fetch data from the table: "event_players" - """ - event_players( - """distinct select on columns""" - distinct_on: [event_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [event_players_order_by!] - - """filter the rows returned""" - where: event_players_bool_exp - ): [event_players!]! - - """ - fetch aggregated fields from the table: "event_players" - """ - event_players_aggregate( - """distinct select on columns""" - distinct_on: [event_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [event_players_order_by!] - - """filter the rows returned""" - where: event_players_bool_exp - ): event_players_aggregate! - - """fetch data from the table: "event_players" using primary key columns""" - event_players_by_pk(event_id: uuid!, steam_id: bigint!): event_players - - """ - fetch data from the table in a streaming manner: "event_players" - """ - event_players_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [event_players_stream_cursor_input]! - - """filter the rows returned""" - where: event_players_bool_exp - ): [event_players!]! - - """ - fetch data from the table: "event_teams" - """ - event_teams( - """distinct select on columns""" - distinct_on: [event_teams_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [event_teams_order_by!] - - """filter the rows returned""" - where: event_teams_bool_exp - ): [event_teams!]! - - """ - fetch aggregated fields from the table: "event_teams" - """ - event_teams_aggregate( - """distinct select on columns""" - distinct_on: [event_teams_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [event_teams_order_by!] - - """filter the rows returned""" - where: event_teams_bool_exp - ): event_teams_aggregate! - - """fetch data from the table: "event_teams" using primary key columns""" - event_teams_by_pk(event_id: uuid!, team_id: uuid!): event_teams - - """ - fetch data from the table in a streaming manner: "event_teams" - """ - event_teams_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [event_teams_stream_cursor_input]! - - """filter the rows returned""" - where: event_teams_bool_exp - ): [event_teams!]! - - """ - fetch data from the table: "event_tournaments" - """ - event_tournaments( - """distinct select on columns""" - distinct_on: [event_tournaments_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [event_tournaments_order_by!] - - """filter the rows returned""" - where: event_tournaments_bool_exp - ): [event_tournaments!]! - - """ - fetch aggregated fields from the table: "event_tournaments" - """ - event_tournaments_aggregate( - """distinct select on columns""" - distinct_on: [event_tournaments_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [event_tournaments_order_by!] - - """filter the rows returned""" - where: event_tournaments_bool_exp - ): event_tournaments_aggregate! - - """ - fetch data from the table: "event_tournaments" using primary key columns - """ - event_tournaments_by_pk(event_id: uuid!, tournament_id: uuid!): event_tournaments - - """ - fetch data from the table in a streaming manner: "event_tournaments" - """ - event_tournaments_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [event_tournaments_stream_cursor_input]! - - """filter the rows returned""" - where: event_tournaments_bool_exp - ): [event_tournaments!]! - - """ - fetch data from the table: "events" - """ - events( - """distinct select on columns""" - distinct_on: [events_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [events_order_by!] - - """filter the rows returned""" - where: events_bool_exp - ): [events!]! - - """ - fetch aggregated fields from the table: "events" - """ - events_aggregate( - """distinct select on columns""" - distinct_on: [events_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [events_order_by!] - - """filter the rows returned""" - where: events_bool_exp - ): events_aggregate! - - """fetch data from the table: "events" using primary key columns""" - events_by_pk(id: uuid!): events - - """ - fetch data from the table in a streaming manner: "events" - """ - events_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [events_stream_cursor_input]! - - """filter the rows returned""" - where: events_bool_exp - ): [events!]! - - """ - fetch data from the table: "friends" - """ - friends( - """distinct select on columns""" - distinct_on: [friends_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: [friends_order_by!] - - """filter the rows returned""" - where: friends_bool_exp - ): [friends!]! - - """ - fetch aggregated fields from the table: "friends" - """ - friends_aggregate( - """distinct select on columns""" - distinct_on: [friends_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: [friends_order_by!] - - """filter the rows returned""" - where: friends_bool_exp - ): friends_aggregate! - - """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 in a streaming manner: "friends" - """ - friends_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [friends_stream_cursor_input]! - - """filter the rows returned""" - 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""" - distinct_on: [game_server_nodes_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_nodes_order_by!] - - """filter the rows returned""" - where: game_server_nodes_bool_exp - ): [game_server_nodes!]! - - """An aggregate relationship""" - game_server_nodes_aggregate( - """distinct select on columns""" - distinct_on: [game_server_nodes_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_nodes_order_by!] - - """filter the rows returned""" - where: game_server_nodes_bool_exp - ): game_server_nodes_aggregate! - - """ - fetch data from the table: "game_server_nodes" using primary key columns - """ - game_server_nodes_by_pk(id: String!): game_server_nodes - - """ - fetch data from the table in a streaming manner: "game_server_nodes" - """ - game_server_nodes_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_nodes_stream_cursor_input]! - - """filter the rows returned""" - where: game_server_nodes_bool_exp - ): [game_server_nodes!]! - - """ - fetch data from the table: "game_versions" - """ - game_versions( - """distinct select on columns""" - distinct_on: [game_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_versions_order_by!] - - """filter the rows returned""" - where: game_versions_bool_exp - ): [game_versions!]! - - """ - fetch aggregated fields from the table: "game_versions" - """ - game_versions_aggregate( - """distinct select on columns""" - distinct_on: [game_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_versions_order_by!] - - """filter the rows returned""" - where: game_versions_bool_exp - ): game_versions_aggregate! - - """fetch data from the table: "game_versions" using primary key columns""" - game_versions_by_pk(build_id: Int!): game_versions - - """ - fetch data from the table in a streaming manner: "game_versions" - """ - game_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_versions_stream_cursor_input]! - - """filter the rows returned""" - where: game_versions_bool_exp - ): [game_versions!]! - - """ - fetch data from the table: "gamedata_signature_validations" - """ - gamedata_signature_validations( - """distinct select on columns""" - distinct_on: [gamedata_signature_validations_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: [gamedata_signature_validations_order_by!] - - """filter the rows returned""" - where: gamedata_signature_validations_bool_exp - ): [gamedata_signature_validations!]! - - """ - fetch aggregated fields from the table: "gamedata_signature_validations" - """ - gamedata_signature_validations_aggregate( - """distinct select on columns""" - distinct_on: [gamedata_signature_validations_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: [gamedata_signature_validations_order_by!] - - """filter the rows returned""" - where: gamedata_signature_validations_bool_exp - ): gamedata_signature_validations_aggregate! - - """ - fetch data from the table: "gamedata_signature_validations" using primary key columns - """ - gamedata_signature_validations_by_pk(id: uuid!): gamedata_signature_validations - - """ - fetch data from the table in a streaming manner: "gamedata_signature_validations" - """ - gamedata_signature_validations_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [gamedata_signature_validations_stream_cursor_input]! - - """filter the rows returned""" - where: gamedata_signature_validations_bool_exp - ): [gamedata_signature_validations!]! - - """ - execute function "get_event_leaderboard" which returns "leaderboard_entries" - """ - get_event_leaderboard( - """ - input parameters for function "get_event_leaderboard" - """ - args: get_event_leaderboard_args! - - """distinct select on columns""" - distinct_on: [leaderboard_entries_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [leaderboard_entries_order_by!] - - """filter the rows returned""" - where: leaderboard_entries_bool_exp - ): [leaderboard_entries!]! - - """ - execute function "get_event_leaderboard" and query aggregates on result of table type "leaderboard_entries" - """ - get_event_leaderboard_aggregate( - """ - input parameters for function "get_event_leaderboard_aggregate" - """ - args: get_event_leaderboard_args! - - """distinct select on columns""" - distinct_on: [leaderboard_entries_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [leaderboard_entries_order_by!] - - """filter the rows returned""" - where: leaderboard_entries_bool_exp - ): leaderboard_entries_aggregate! - - """ - execute function "get_leaderboard" which returns "leaderboard_entries" - """ - get_leaderboard( - """ - input parameters for function "get_leaderboard" - """ - args: get_leaderboard_args! - - """distinct select on columns""" - distinct_on: [leaderboard_entries_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [leaderboard_entries_order_by!] - - """filter the rows returned""" - where: leaderboard_entries_bool_exp - ): [leaderboard_entries!]! - - """ - execute function "get_leaderboard" and query aggregates on result of table type "leaderboard_entries" - """ - get_leaderboard_aggregate( - """ - input parameters for function "get_leaderboard_aggregate" - """ - args: get_leaderboard_args! - - """distinct select on columns""" - distinct_on: [leaderboard_entries_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [leaderboard_entries_order_by!] - - """filter the rows returned""" - where: leaderboard_entries_bool_exp - ): leaderboard_entries_aggregate! - - """ - execute function "get_league_season_leaderboard" which returns "leaderboard_entries" - """ - get_league_season_leaderboard( - """ - input parameters for function "get_league_season_leaderboard" - """ - args: get_league_season_leaderboard_args! - - """distinct select on columns""" - distinct_on: [leaderboard_entries_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [leaderboard_entries_order_by!] - - """filter the rows returned""" - where: leaderboard_entries_bool_exp - ): [leaderboard_entries!]! - - """ - execute function "get_league_season_leaderboard" and query aggregates on result of table type "leaderboard_entries" - """ - get_league_season_leaderboard_aggregate( - """ - input parameters for function "get_league_season_leaderboard_aggregate" - """ - args: get_league_season_leaderboard_args! - - """distinct select on columns""" - distinct_on: [leaderboard_entries_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [leaderboard_entries_order_by!] - - """filter the rows returned""" - where: leaderboard_entries_bool_exp - ): leaderboard_entries_aggregate! - - """ - execute function "get_player_leaderboard_rank" which returns "player_leaderboard_rank" - """ - get_player_leaderboard_rank( - """ - input parameters for function "get_player_leaderboard_rank" - """ - args: get_player_leaderboard_rank_args! - - """distinct select on columns""" - distinct_on: [player_leaderboard_rank_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: [player_leaderboard_rank_order_by!] - - """filter the rows returned""" - where: player_leaderboard_rank_bool_exp - ): [player_leaderboard_rank!]! - - """ - execute function "get_player_leaderboard_rank" and query aggregates on result of table type "player_leaderboard_rank" - """ - get_player_leaderboard_rank_aggregate( - """ - input parameters for function "get_player_leaderboard_rank_aggregate" - """ - args: get_player_leaderboard_rank_args! - - """distinct select on columns""" - distinct_on: [player_leaderboard_rank_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: [player_leaderboard_rank_order_by!] - - """filter the rows returned""" - where: player_leaderboard_rank_bool_exp - ): player_leaderboard_rank_aggregate! - - """ - execute function "get_tournament_leaderboard" which returns "tournament_leaderboard_entries" - """ - get_tournament_leaderboard( - """ - input parameters for function "get_tournament_leaderboard" - """ - args: get_tournament_leaderboard_args! - - """distinct select on columns""" - distinct_on: [tournament_leaderboard_entries_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_leaderboard_entries_order_by!] - - """filter the rows returned""" - where: tournament_leaderboard_entries_bool_exp - ): [tournament_leaderboard_entries!]! - - """ - execute function "get_tournament_leaderboard" and query aggregates on result of table type "tournament_leaderboard_entries" - """ - get_tournament_leaderboard_aggregate( - """ - input parameters for function "get_tournament_leaderboard_aggregate" - """ - args: get_tournament_leaderboard_args! - - """distinct select on columns""" - distinct_on: [tournament_leaderboard_entries_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_leaderboard_entries_order_by!] - - """filter the rows returned""" - where: tournament_leaderboard_entries_bool_exp - ): tournament_leaderboard_entries_aggregate! - - """ - fetch data from the table: "leaderboard_entries" - """ - leaderboard_entries( - """distinct select on columns""" - distinct_on: [leaderboard_entries_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [leaderboard_entries_order_by!] - - """filter the rows returned""" - where: leaderboard_entries_bool_exp - ): [leaderboard_entries!]! - - """ - fetch aggregated fields from the table: "leaderboard_entries" - """ - leaderboard_entries_aggregate( - """distinct select on columns""" - distinct_on: [leaderboard_entries_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [leaderboard_entries_order_by!] - - """filter the rows returned""" - where: leaderboard_entries_bool_exp - ): leaderboard_entries_aggregate! - - """ - fetch data from the table in a streaming manner: "leaderboard_entries" - """ - leaderboard_entries_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [leaderboard_entries_stream_cursor_input]! - - """filter the rows returned""" - where: leaderboard_entries_bool_exp - ): [leaderboard_entries!]! - - """ - fetch data from the table: "league_divisions" - """ - league_divisions( - """distinct select on columns""" - distinct_on: [league_divisions_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: [league_divisions_order_by!] - - """filter the rows returned""" - where: league_divisions_bool_exp - ): [league_divisions!]! - - """ - fetch aggregated fields from the table: "league_divisions" - """ - league_divisions_aggregate( - """distinct select on columns""" - distinct_on: [league_divisions_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: [league_divisions_order_by!] - - """filter the rows returned""" - where: league_divisions_bool_exp - ): league_divisions_aggregate! - - """ - fetch data from the table: "league_divisions" using primary key columns - """ - league_divisions_by_pk(id: uuid!): league_divisions - - """ - fetch data from the table in a streaming manner: "league_divisions" - """ - league_divisions_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [league_divisions_stream_cursor_input]! - - """filter the rows returned""" - where: league_divisions_bool_exp - ): [league_divisions!]! - - """ - fetch data from the table: "league_match_weeks" - """ - league_match_weeks( - """distinct select on columns""" - distinct_on: [league_match_weeks_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: [league_match_weeks_order_by!] - - """filter the rows returned""" - where: league_match_weeks_bool_exp - ): [league_match_weeks!]! - - """ - fetch aggregated fields from the table: "league_match_weeks" - """ - league_match_weeks_aggregate( - """distinct select on columns""" - distinct_on: [league_match_weeks_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: [league_match_weeks_order_by!] - - """filter the rows returned""" - where: league_match_weeks_bool_exp - ): league_match_weeks_aggregate! - - """ - fetch data from the table: "league_match_weeks" using primary key columns - """ - league_match_weeks_by_pk(id: uuid!): league_match_weeks - - """ - fetch data from the table in a streaming manner: "league_match_weeks" - """ - league_match_weeks_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [league_match_weeks_stream_cursor_input]! - - """filter the rows returned""" - where: league_match_weeks_bool_exp - ): [league_match_weeks!]! - - """ - fetch data from the table: "league_relegation_playoffs" - """ - league_relegation_playoffs( - """distinct select on columns""" - distinct_on: [league_relegation_playoffs_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: [league_relegation_playoffs_order_by!] - - """filter the rows returned""" - where: league_relegation_playoffs_bool_exp - ): [league_relegation_playoffs!]! - - """ - fetch aggregated fields from the table: "league_relegation_playoffs" - """ - league_relegation_playoffs_aggregate( - """distinct select on columns""" - distinct_on: [league_relegation_playoffs_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: [league_relegation_playoffs_order_by!] - - """filter the rows returned""" - where: league_relegation_playoffs_bool_exp - ): league_relegation_playoffs_aggregate! - - """ - fetch data from the table: "league_relegation_playoffs" using primary key columns - """ - league_relegation_playoffs_by_pk(id: uuid!): league_relegation_playoffs - - """ - fetch data from the table in a streaming manner: "league_relegation_playoffs" - """ - league_relegation_playoffs_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [league_relegation_playoffs_stream_cursor_input]! - - """filter the rows returned""" - where: league_relegation_playoffs_bool_exp - ): [league_relegation_playoffs!]! - - """ - fetch data from the table: "league_scheduling_proposals" - """ - league_scheduling_proposals( - """distinct select on columns""" - distinct_on: [league_scheduling_proposals_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: [league_scheduling_proposals_order_by!] - - """filter the rows returned""" - where: league_scheduling_proposals_bool_exp - ): [league_scheduling_proposals!]! - - """ - fetch aggregated fields from the table: "league_scheduling_proposals" - """ - league_scheduling_proposals_aggregate( - """distinct select on columns""" - distinct_on: [league_scheduling_proposals_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: [league_scheduling_proposals_order_by!] - - """filter the rows returned""" - where: league_scheduling_proposals_bool_exp - ): league_scheduling_proposals_aggregate! - - """ - fetch data from the table: "league_scheduling_proposals" using primary key columns - """ - league_scheduling_proposals_by_pk(id: uuid!): league_scheduling_proposals - - """ - fetch data from the table in a streaming manner: "league_scheduling_proposals" - """ - league_scheduling_proposals_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [league_scheduling_proposals_stream_cursor_input]! - - """filter the rows returned""" - where: league_scheduling_proposals_bool_exp - ): [league_scheduling_proposals!]! - - """ - fetch data from the table: "league_season_divisions" - """ - league_season_divisions( - """distinct select on columns""" - distinct_on: [league_season_divisions_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: [league_season_divisions_order_by!] - - """filter the rows returned""" - where: league_season_divisions_bool_exp - ): [league_season_divisions!]! - - """ - fetch aggregated fields from the table: "league_season_divisions" - """ - league_season_divisions_aggregate( - """distinct select on columns""" - distinct_on: [league_season_divisions_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: [league_season_divisions_order_by!] - - """filter the rows returned""" - where: league_season_divisions_bool_exp - ): league_season_divisions_aggregate! - - """ - fetch data from the table: "league_season_divisions" using primary key columns - """ - league_season_divisions_by_pk(id: uuid!): league_season_divisions - - """ - fetch data from the table in a streaming manner: "league_season_divisions" - """ - league_season_divisions_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [league_season_divisions_stream_cursor_input]! - - """filter the rows returned""" - where: league_season_divisions_bool_exp - ): [league_season_divisions!]! - - """ - fetch data from the table: "league_seasons" - """ - league_seasons( - """distinct select on columns""" - distinct_on: [league_seasons_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: [league_seasons_order_by!] - - """filter the rows returned""" - where: league_seasons_bool_exp - ): [league_seasons!]! - - """ - fetch aggregated fields from the table: "league_seasons" - """ - league_seasons_aggregate( - """distinct select on columns""" - distinct_on: [league_seasons_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: [league_seasons_order_by!] - - """filter the rows returned""" - where: league_seasons_bool_exp - ): league_seasons_aggregate! - - """fetch data from the table: "league_seasons" using primary key columns""" - league_seasons_by_pk(id: uuid!): league_seasons - - """ - fetch data from the table in a streaming manner: "league_seasons" - """ - league_seasons_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [league_seasons_stream_cursor_input]! - - """filter the rows returned""" - where: league_seasons_bool_exp - ): [league_seasons!]! - - """ - fetch data from the table: "league_team_movements" - """ - league_team_movements( - """distinct select on columns""" - distinct_on: [league_team_movements_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: [league_team_movements_order_by!] - - """filter the rows returned""" - where: league_team_movements_bool_exp - ): [league_team_movements!]! - - """ - fetch aggregated fields from the table: "league_team_movements" - """ - league_team_movements_aggregate( - """distinct select on columns""" - distinct_on: [league_team_movements_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: [league_team_movements_order_by!] - - """filter the rows returned""" - where: league_team_movements_bool_exp - ): league_team_movements_aggregate! - - """ - fetch data from the table: "league_team_movements" using primary key columns - """ - league_team_movements_by_pk(id: uuid!): league_team_movements - - """ - fetch data from the table in a streaming manner: "league_team_movements" - """ - league_team_movements_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [league_team_movements_stream_cursor_input]! - - """filter the rows returned""" - where: league_team_movements_bool_exp - ): [league_team_movements!]! - - """ - fetch data from the table: "league_team_rosters" - """ - league_team_rosters( - """distinct select on columns""" - distinct_on: [league_team_rosters_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: [league_team_rosters_order_by!] - - """filter the rows returned""" - where: league_team_rosters_bool_exp - ): [league_team_rosters!]! - - """ - fetch aggregated fields from the table: "league_team_rosters" - """ - league_team_rosters_aggregate( - """distinct select on columns""" - distinct_on: [league_team_rosters_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: [league_team_rosters_order_by!] - - """filter the rows returned""" - where: league_team_rosters_bool_exp - ): league_team_rosters_aggregate! - - """ - fetch data from the table: "league_team_rosters" using primary key columns - """ - league_team_rosters_by_pk(league_team_season_id: uuid!, player_steam_id: bigint!): league_team_rosters - - """ - fetch data from the table in a streaming manner: "league_team_rosters" - """ - league_team_rosters_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [league_team_rosters_stream_cursor_input]! - - """filter the rows returned""" - where: league_team_rosters_bool_exp - ): [league_team_rosters!]! - - """ - fetch data from the table: "league_team_seasons" - """ - league_team_seasons( - """distinct select on columns""" - distinct_on: [league_team_seasons_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: [league_team_seasons_order_by!] - - """filter the rows returned""" - where: league_team_seasons_bool_exp - ): [league_team_seasons!]! - - """ - fetch aggregated fields from the table: "league_team_seasons" - """ - league_team_seasons_aggregate( - """distinct select on columns""" - distinct_on: [league_team_seasons_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: [league_team_seasons_order_by!] - - """filter the rows returned""" - where: league_team_seasons_bool_exp - ): league_team_seasons_aggregate! - - """ - fetch data from the table: "league_team_seasons" using primary key columns - """ - league_team_seasons_by_pk(id: uuid!): league_team_seasons - - """ - fetch data from the table in a streaming manner: "league_team_seasons" - """ - league_team_seasons_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [league_team_seasons_stream_cursor_input]! - - """filter the rows returned""" - where: league_team_seasons_bool_exp - ): [league_team_seasons!]! - - """ - fetch data from the table: "league_teams" - """ - league_teams( - """distinct select on columns""" - distinct_on: [league_teams_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [league_teams_order_by!] - - """filter the rows returned""" - where: league_teams_bool_exp - ): [league_teams!]! - - """ - fetch aggregated fields from the table: "league_teams" - """ - league_teams_aggregate( - """distinct select on columns""" - distinct_on: [league_teams_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [league_teams_order_by!] - - """filter the rows returned""" - where: league_teams_bool_exp - ): league_teams_aggregate! - - """fetch data from the table: "league_teams" using primary key columns""" - league_teams_by_pk(id: uuid!): league_teams - - """ - fetch data from the table in a streaming manner: "league_teams" - """ - league_teams_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [league_teams_stream_cursor_input]! - - """filter the rows returned""" - where: league_teams_bool_exp - ): [league_teams!]! - - """ - fetch data from the table: "lobbies" - """ - lobbies( - """distinct select on columns""" - distinct_on: [lobbies_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: [lobbies_order_by!] - - """filter the rows returned""" - where: lobbies_bool_exp - ): [lobbies!]! - - """ - fetch aggregated fields from the table: "lobbies" - """ - lobbies_aggregate( - """distinct select on columns""" - distinct_on: [lobbies_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: [lobbies_order_by!] - - """filter the rows returned""" - where: lobbies_bool_exp - ): lobbies_aggregate! - - """fetch data from the table: "lobbies" using primary key columns""" - lobbies_by_pk(id: uuid!): lobbies - - """ - fetch data from the table in a streaming manner: "lobbies" - """ - lobbies_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [lobbies_stream_cursor_input]! - - """filter the rows returned""" - where: lobbies_bool_exp - ): [lobbies!]! - - """An array relationship""" - lobby_players( - """distinct select on columns""" - distinct_on: [lobby_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [lobby_players_order_by!] - - """filter the rows returned""" - where: lobby_players_bool_exp - ): [lobby_players!]! - - """An aggregate relationship""" - lobby_players_aggregate( - """distinct select on columns""" - distinct_on: [lobby_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [lobby_players_order_by!] - - """filter the rows returned""" - where: lobby_players_bool_exp - ): lobby_players_aggregate! - - """fetch data from the table: "lobby_players" using primary key columns""" - lobby_players_by_pk(lobby_id: uuid!, steam_id: bigint!): lobby_players - - """ - fetch data from the table in a streaming manner: "lobby_players" - """ - lobby_players_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [lobby_players_stream_cursor_input]! - - """filter the rows returned""" - where: lobby_players_bool_exp - ): [lobby_players!]! - - """ - fetch data from the table: "map_callouts" - """ - map_callouts( - """distinct select on columns""" - distinct_on: [map_callouts_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: [map_callouts_order_by!] - - """filter the rows returned""" - where: map_callouts_bool_exp - ): [map_callouts!]! - - """ - fetch aggregated fields from the table: "map_callouts" - """ - map_callouts_aggregate( - """distinct select on columns""" - distinct_on: [map_callouts_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: [map_callouts_order_by!] - - """filter the rows returned""" - where: map_callouts_bool_exp - ): map_callouts_aggregate! - - """fetch data from the table: "map_callouts" using primary key columns""" - map_callouts_by_pk(map_name: String!, name: String!): map_callouts - - """ - fetch data from the table in a streaming manner: "map_callouts" - """ - map_callouts_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [map_callouts_stream_cursor_input]! - - """filter the rows returned""" - where: map_callouts_bool_exp - ): [map_callouts!]! - - """ - fetch data from the table: "map_pools" - """ - map_pools( - """distinct select on columns""" - distinct_on: [map_pools_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: [map_pools_order_by!] - - """filter the rows returned""" - where: map_pools_bool_exp - ): [map_pools!]! - - """ - fetch aggregated fields from the table: "map_pools" - """ - map_pools_aggregate( - """distinct select on columns""" - distinct_on: [map_pools_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: [map_pools_order_by!] - - """filter the rows returned""" - where: map_pools_bool_exp - ): map_pools_aggregate! - - """fetch data from the table: "map_pools" using primary key columns""" - map_pools_by_pk(id: uuid!): map_pools - - """ - fetch data from the table in a streaming manner: "map_pools" - """ - map_pools_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [map_pools_stream_cursor_input]! - - """filter the rows returned""" - where: map_pools_bool_exp - ): [map_pools!]! - - """An array relationship""" - maps( - """distinct select on columns""" - distinct_on: [maps_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: [maps_order_by!] - - """filter the rows returned""" - where: maps_bool_exp - ): [maps!]! - - """An aggregate relationship""" - maps_aggregate( - """distinct select on columns""" - distinct_on: [maps_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: [maps_order_by!] - - """filter the rows returned""" - where: maps_bool_exp - ): maps_aggregate! - - """fetch data from the table: "maps" using primary key columns""" - maps_by_pk(id: uuid!): maps - - """ - fetch data from the table in a streaming manner: "maps" - """ - maps_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [maps_stream_cursor_input]! - - """filter the rows returned""" - where: maps_bool_exp - ): [maps!]! - - """An array relationship""" - match_clips( - """distinct select on columns""" - distinct_on: [match_clips_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_clips_order_by!] - - """filter the rows returned""" - where: match_clips_bool_exp - ): [match_clips!]! - - """An aggregate relationship""" - match_clips_aggregate( - """distinct select on columns""" - distinct_on: [match_clips_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_clips_order_by!] - - """filter the rows returned""" - where: match_clips_bool_exp - ): match_clips_aggregate! - - """fetch data from the table: "match_clips" using primary key columns""" - match_clips_by_pk(id: uuid!): match_clips - - """ - fetch data from the table in a streaming manner: "match_clips" - """ - match_clips_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [match_clips_stream_cursor_input]! - - """filter the rows returned""" - where: match_clips_bool_exp - ): [match_clips!]! - - """ - fetch data from the table: "match_demo_sessions" - """ - match_demo_sessions( - """distinct select on columns""" - distinct_on: [match_demo_sessions_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_demo_sessions_order_by!] - - """filter the rows returned""" - where: match_demo_sessions_bool_exp - ): [match_demo_sessions!]! - - """ - fetch aggregated fields from the table: "match_demo_sessions" - """ - match_demo_sessions_aggregate( - """distinct select on columns""" - distinct_on: [match_demo_sessions_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_demo_sessions_order_by!] - - """filter the rows returned""" - where: match_demo_sessions_bool_exp - ): match_demo_sessions_aggregate! - - """ - fetch data from the table: "match_demo_sessions" using primary key columns - """ - match_demo_sessions_by_pk(id: uuid!): match_demo_sessions - - """ - fetch data from the table in a streaming manner: "match_demo_sessions" - """ - match_demo_sessions_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [match_demo_sessions_stream_cursor_input]! - - """filter the rows returned""" - where: match_demo_sessions_bool_exp - ): [match_demo_sessions!]! - - """An array relationship""" - match_lineup_players( - """distinct select on columns""" - distinct_on: [match_lineup_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_lineup_players_order_by!] - - """filter the rows returned""" - where: match_lineup_players_bool_exp - ): [match_lineup_players!]! - - """An aggregate relationship""" - match_lineup_players_aggregate( - """distinct select on columns""" - distinct_on: [match_lineup_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_lineup_players_order_by!] - - """filter the rows returned""" - where: match_lineup_players_bool_exp - ): match_lineup_players_aggregate! - - """ - fetch data from the table: "match_lineup_players" using primary key columns - """ - match_lineup_players_by_pk(id: uuid!): match_lineup_players - - """ - fetch data from the table in a streaming manner: "match_lineup_players" - """ - match_lineup_players_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [match_lineup_players_stream_cursor_input]! - - """filter the rows returned""" - where: match_lineup_players_bool_exp - ): [match_lineup_players!]! - - """An array relationship""" - match_lineups( - """distinct select on columns""" - distinct_on: [match_lineups_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_lineups_order_by!] - - """filter the rows returned""" - where: match_lineups_bool_exp - ): [match_lineups!]! - - """An aggregate relationship""" - match_lineups_aggregate( - """distinct select on columns""" - distinct_on: [match_lineups_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_lineups_order_by!] - - """filter the rows returned""" - where: match_lineups_bool_exp - ): match_lineups_aggregate! - - """fetch data from the table: "match_lineups" using primary key columns""" - match_lineups_by_pk(id: uuid!): match_lineups - - """ - fetch data from the table in a streaming manner: "match_lineups" - """ - match_lineups_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [match_lineups_stream_cursor_input]! - - """filter the rows returned""" - where: match_lineups_bool_exp - ): [match_lineups!]! - - """ - fetch data from the table: "match_map_demos" - """ - match_map_demos( - """distinct select on columns""" - distinct_on: [match_map_demos_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_map_demos_order_by!] - - """filter the rows returned""" - where: match_map_demos_bool_exp - ): [match_map_demos!]! - - """ - fetch aggregated fields from the table: "match_map_demos" - """ - match_map_demos_aggregate( - """distinct select on columns""" - distinct_on: [match_map_demos_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_map_demos_order_by!] - - """filter the rows returned""" - where: match_map_demos_bool_exp - ): match_map_demos_aggregate! - - """fetch data from the table: "match_map_demos" using primary key columns""" - match_map_demos_by_pk(id: uuid!): match_map_demos - - """ - fetch data from the table in a streaming manner: "match_map_demos" - """ - match_map_demos_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [match_map_demos_stream_cursor_input]! - - """filter the rows returned""" - where: match_map_demos_bool_exp - ): [match_map_demos!]! - - """ - fetch data from the table: "match_map_rounds" - """ - match_map_rounds( - """distinct select on columns""" - distinct_on: [match_map_rounds_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_map_rounds_order_by!] - - """filter the rows returned""" - where: match_map_rounds_bool_exp - ): [match_map_rounds!]! - - """ - fetch aggregated fields from the table: "match_map_rounds" - """ - match_map_rounds_aggregate( - """distinct select on columns""" - distinct_on: [match_map_rounds_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_map_rounds_order_by!] - - """filter the rows returned""" - where: match_map_rounds_bool_exp - ): match_map_rounds_aggregate! - - """ - fetch data from the table: "match_map_rounds" using primary key columns - """ - match_map_rounds_by_pk(id: uuid!): match_map_rounds - - """ - fetch data from the table in a streaming manner: "match_map_rounds" - """ - match_map_rounds_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [match_map_rounds_stream_cursor_input]! - - """filter the rows returned""" - where: match_map_rounds_bool_exp - ): [match_map_rounds!]! - - """ - fetch data from the table: "match_map_veto_picks" - """ - match_map_veto_picks( - """distinct select on columns""" - distinct_on: [match_map_veto_picks_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_map_veto_picks_order_by!] - - """filter the rows returned""" - where: match_map_veto_picks_bool_exp - ): [match_map_veto_picks!]! - - """ - fetch aggregated fields from the table: "match_map_veto_picks" - """ - match_map_veto_picks_aggregate( - """distinct select on columns""" - distinct_on: [match_map_veto_picks_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_map_veto_picks_order_by!] - - """filter the rows returned""" - where: match_map_veto_picks_bool_exp - ): match_map_veto_picks_aggregate! - - """ - fetch data from the table: "match_map_veto_picks" using primary key columns - """ - match_map_veto_picks_by_pk(id: uuid!): match_map_veto_picks - - """ - fetch data from the table in a streaming manner: "match_map_veto_picks" - """ - match_map_veto_picks_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [match_map_veto_picks_stream_cursor_input]! - - """filter the rows returned""" - where: match_map_veto_picks_bool_exp - ): [match_map_veto_picks!]! - - """An array relationship""" - match_maps( - """distinct select on columns""" - distinct_on: [match_maps_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_maps_order_by!] - - """filter the rows returned""" - where: match_maps_bool_exp - ): [match_maps!]! - - """An aggregate relationship""" - match_maps_aggregate( - """distinct select on columns""" - distinct_on: [match_maps_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_maps_order_by!] - - """filter the rows returned""" - where: match_maps_bool_exp - ): match_maps_aggregate! - - """fetch data from the table: "match_maps" using primary key columns""" - match_maps_by_pk(id: uuid!): match_maps - - """ - fetch data from the table in a streaming manner: "match_maps" - """ - match_maps_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [match_maps_stream_cursor_input]! - - """filter the rows returned""" - where: match_maps_bool_exp - ): [match_maps!]! - - """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! - - """fetch data from the table: "match_options" using primary key columns""" - match_options_by_pk(id: uuid!): match_options - - """ - fetch data from the table in a streaming manner: "match_options" - """ - match_options_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [match_options_stream_cursor_input]! - - """filter the rows returned""" - where: match_options_bool_exp - ): [match_options!]! - - """ - fetch data from the table: "match_region_veto_picks" - """ - match_region_veto_picks( - """distinct select on columns""" - distinct_on: [match_region_veto_picks_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_region_veto_picks_order_by!] - - """filter the rows returned""" - where: match_region_veto_picks_bool_exp - ): [match_region_veto_picks!]! - - """ - fetch aggregated fields from the table: "match_region_veto_picks" - """ - match_region_veto_picks_aggregate( - """distinct select on columns""" - distinct_on: [match_region_veto_picks_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [match_region_veto_picks_order_by!] - - """filter the rows returned""" - where: match_region_veto_picks_bool_exp - ): match_region_veto_picks_aggregate! - - """ - fetch data from the table: "match_region_veto_picks" using primary key columns - """ - match_region_veto_picks_by_pk(id: uuid!): match_region_veto_picks - - """ - fetch data from the table in a streaming manner: "match_region_veto_picks" - """ - match_region_veto_picks_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [match_region_veto_picks_stream_cursor_input]! - - """filter the rows returned""" - where: match_region_veto_picks_bool_exp - ): [match_region_veto_picks!]! - - """ - fetch data from the table: "match_streams" - """ - match_streams( - """distinct select on columns""" - distinct_on: [match_streams_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_streams_order_by!] - - """filter the rows returned""" - where: match_streams_bool_exp - ): [match_streams!]! - - """ - fetch aggregated fields from the table: "match_streams" - """ - match_streams_aggregate( - """distinct select on columns""" - distinct_on: [match_streams_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_streams_order_by!] - - """filter the rows returned""" - where: match_streams_bool_exp - ): match_streams_aggregate! - - """fetch data from the table: "match_streams" using primary key columns""" - match_streams_by_pk(id: uuid!): match_streams - - """ - fetch data from the table in a streaming manner: "match_streams" - """ - match_streams_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [match_streams_stream_cursor_input]! - - """filter the rows returned""" - where: match_streams_bool_exp - ): [match_streams!]! - - """ - fetch data from the table: "match_type_cfgs" - """ - match_type_cfgs( - """distinct select on columns""" - distinct_on: [match_type_cfgs_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_type_cfgs_order_by!] - - """filter the rows returned""" - where: match_type_cfgs_bool_exp - ): [match_type_cfgs!]! - - """ - fetch aggregated fields from the table: "match_type_cfgs" - """ - match_type_cfgs_aggregate( - """distinct select on columns""" - distinct_on: [match_type_cfgs_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_type_cfgs_order_by!] - - """filter the rows returned""" - where: match_type_cfgs_bool_exp - ): match_type_cfgs_aggregate! - - """fetch data from the table: "match_type_cfgs" using primary key columns""" - match_type_cfgs_by_pk(type: e_game_cfg_types_enum!): match_type_cfgs - - """ - fetch data from the table in a streaming manner: "match_type_cfgs" - """ - match_type_cfgs_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [match_type_cfgs_stream_cursor_input]! - - """filter the rows returned""" - where: match_type_cfgs_bool_exp - ): [match_type_cfgs!]! - - """An array relationship""" - matches( - """distinct select on columns""" - distinct_on: [matches_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: [matches_order_by!] - - """filter the rows returned""" - where: matches_bool_exp - ): [matches!]! - - """An aggregate relationship""" - matches_aggregate( - """distinct select on columns""" - distinct_on: [matches_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: [matches_order_by!] - - """filter the rows returned""" - where: matches_bool_exp - ): matches_aggregate! - - """fetch data from the table: "matches" using primary key columns""" - matches_by_pk(id: uuid!): matches - - """ - fetch data from the table in a streaming manner: "matches" - """ - matches_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [matches_stream_cursor_input]! - - """filter the rows returned""" - where: matches_bool_exp - ): [matches!]! - - """ - fetch data from the table: "migration_hashes.hashes" - """ - migration_hashes_hashes( - """distinct select on columns""" - distinct_on: [migration_hashes_hashes_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: [migration_hashes_hashes_order_by!] - - """filter the rows returned""" - where: migration_hashes_hashes_bool_exp - ): [migration_hashes_hashes!]! - - """ - fetch aggregated fields from the table: "migration_hashes.hashes" - """ - migration_hashes_hashes_aggregate( - """distinct select on columns""" - distinct_on: [migration_hashes_hashes_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: [migration_hashes_hashes_order_by!] - - """filter the rows returned""" - where: migration_hashes_hashes_bool_exp - ): migration_hashes_hashes_aggregate! - - """ - fetch data from the table: "migration_hashes.hashes" using primary key columns - """ - migration_hashes_hashes_by_pk(name: String!): migration_hashes_hashes - - """ - fetch data from the table in a streaming manner: "migration_hashes.hashes" - """ - migration_hashes_hashes_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [migration_hashes_hashes_stream_cursor_input]! - - """filter the rows returned""" - where: migration_hashes_hashes_bool_exp - ): [migration_hashes_hashes!]! - - """ - fetch data from the table: "v_my_friends" - """ - my_friends( - """distinct select on columns""" - distinct_on: [my_friends_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: [my_friends_order_by!] - - """filter the rows returned""" - where: my_friends_bool_exp - ): [my_friends!]! - - """ - fetch aggregated fields from the table: "v_my_friends" - """ - my_friends_aggregate( - """distinct select on columns""" - distinct_on: [my_friends_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: [my_friends_order_by!] - - """filter the rows returned""" - where: my_friends_bool_exp - ): my_friends_aggregate! - - """ - fetch data from the table in a streaming manner: "v_my_friends" - """ - my_friends_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [my_friends_stream_cursor_input]! - - """filter the rows returned""" - where: my_friends_bool_exp - ): [my_friends!]! - - """ - fetch data from the table: "news_articles" - """ - news_articles( - """distinct select on columns""" - distinct_on: [news_articles_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: [news_articles_order_by!] - - """filter the rows returned""" - where: news_articles_bool_exp - ): [news_articles!]! - - """ - fetch aggregated fields from the table: "news_articles" - """ - news_articles_aggregate( - """distinct select on columns""" - distinct_on: [news_articles_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: [news_articles_order_by!] - - """filter the rows returned""" - where: news_articles_bool_exp - ): news_articles_aggregate! - - """fetch data from the table: "news_articles" using primary key columns""" - news_articles_by_pk(id: uuid!): news_articles - - """ - fetch data from the table in a streaming manner: "news_articles" - """ - news_articles_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [news_articles_stream_cursor_input]! - - """filter the rows returned""" - where: news_articles_bool_exp - ): [news_articles!]! - - """ - fetch data from the table: "notification_preferences" - """ - notification_preferences( - """distinct select on columns""" - distinct_on: [notification_preferences_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: [notification_preferences_order_by!] - - """filter the rows returned""" - where: notification_preferences_bool_exp - ): [notification_preferences!]! - - """ - fetch aggregated fields from the table: "notification_preferences" - """ - notification_preferences_aggregate( - """distinct select on columns""" - distinct_on: [notification_preferences_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: [notification_preferences_order_by!] - - """filter the rows returned""" - where: notification_preferences_bool_exp - ): notification_preferences_aggregate! - - """ - fetch data from the table: "notification_preferences" using primary key columns - """ - notification_preferences_by_pk(channel: String!, key: String!, steam_id: bigint!): notification_preferences - - """ - fetch data from the table in a streaming manner: "notification_preferences" - """ - notification_preferences_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [notification_preferences_stream_cursor_input]! - - """filter the rows returned""" - where: notification_preferences_bool_exp - ): [notification_preferences!]! - - """An array relationship""" - notifications( - """distinct select on columns""" - distinct_on: [notifications_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: [notifications_order_by!] - - """filter the rows returned""" - where: notifications_bool_exp - ): [notifications!]! - - """An aggregate relationship""" - notifications_aggregate( - """distinct select on columns""" - distinct_on: [notifications_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: [notifications_order_by!] - - """filter the rows returned""" - where: notifications_bool_exp - ): notifications_aggregate! - - """fetch data from the table: "notifications" using primary key columns""" - notifications_by_pk(id: uuid!): notifications - - """ - fetch data from the table in a streaming manner: "notifications" - """ - notifications_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [notifications_stream_cursor_input]! - - """filter the rows returned""" - where: notifications_bool_exp - ): [notifications!]! - - """ - fetch data from the table: "pending_match_import_players" - """ - pending_match_import_players( - """distinct select on columns""" - distinct_on: [pending_match_import_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pending_match_import_players_order_by!] - - """filter the rows returned""" - where: pending_match_import_players_bool_exp - ): [pending_match_import_players!]! - - """ - fetch aggregated fields from the table: "pending_match_import_players" - """ - pending_match_import_players_aggregate( - """distinct select on columns""" - distinct_on: [pending_match_import_players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pending_match_import_players_order_by!] - - """filter the rows returned""" - where: pending_match_import_players_bool_exp - ): pending_match_import_players_aggregate! - - """ - fetch data from the table: "pending_match_import_players" using primary key columns - """ - pending_match_import_players_by_pk(steam_id: bigint!, valve_match_id: numeric!): pending_match_import_players - - """ - fetch data from the table in a streaming manner: "pending_match_import_players" - """ - pending_match_import_players_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pending_match_import_players_stream_cursor_input]! - - """filter the rows returned""" - where: pending_match_import_players_bool_exp - ): [pending_match_import_players!]! - - """ - fetch data from the table: "pending_match_imports" - """ - pending_match_imports( - """distinct select on columns""" - distinct_on: [pending_match_imports_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: [pending_match_imports_order_by!] - - """filter the rows returned""" - where: pending_match_imports_bool_exp - ): [pending_match_imports!]! - - """ - fetch aggregated fields from the table: "pending_match_imports" - """ - pending_match_imports_aggregate( - """distinct select on columns""" - distinct_on: [pending_match_imports_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: [pending_match_imports_order_by!] - - """filter the rows returned""" - where: pending_match_imports_bool_exp - ): pending_match_imports_aggregate! - - """ - fetch data from the table: "pending_match_imports" using primary key columns - """ - pending_match_imports_by_pk(valve_match_id: numeric!): pending_match_imports - - """ - fetch data from the table in a streaming manner: "pending_match_imports" - """ - pending_match_imports_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pending_match_imports_stream_cursor_input]! - - """filter the rows returned""" - where: pending_match_imports_bool_exp - ): [pending_match_imports!]! - - """ - fetch data from the table: "player_aim_stats_demo" - """ - player_aim_stats_demo( - """distinct select on columns""" - distinct_on: [player_aim_stats_demo_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: [player_aim_stats_demo_order_by!] - - """filter the rows returned""" - where: player_aim_stats_demo_bool_exp - ): [player_aim_stats_demo!]! - - """ - fetch aggregated fields from the table: "player_aim_stats_demo" - """ - player_aim_stats_demo_aggregate( - """distinct select on columns""" - distinct_on: [player_aim_stats_demo_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: [player_aim_stats_demo_order_by!] - - """filter the rows returned""" - where: player_aim_stats_demo_bool_exp - ): player_aim_stats_demo_aggregate! - - """ - fetch data from the table: "player_aim_stats_demo" using primary key columns - """ - player_aim_stats_demo_by_pk(attacker_steam_id: bigint!, match_map_id: uuid!): player_aim_stats_demo - - """ - fetch data from the table in a streaming manner: "player_aim_stats_demo" - """ - player_aim_stats_demo_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [player_aim_stats_demo_stream_cursor_input]! - - """filter the rows returned""" - where: player_aim_stats_demo_bool_exp - ): [player_aim_stats_demo!]! - - """ - fetch data from the table: "player_aim_weapon_stats" - """ - player_aim_weapon_stats( - """distinct select on columns""" - distinct_on: [player_aim_weapon_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [player_aim_weapon_stats_order_by!] - - """filter the rows returned""" - where: player_aim_weapon_stats_bool_exp - ): [player_aim_weapon_stats!]! - - """ - fetch aggregated fields from the table: "player_aim_weapon_stats" - """ - player_aim_weapon_stats_aggregate( - """distinct select on columns""" - distinct_on: [player_aim_weapon_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [player_aim_weapon_stats_order_by!] - - """filter the rows returned""" - where: player_aim_weapon_stats_bool_exp - ): player_aim_weapon_stats_aggregate! - - """ - fetch data from the table: "player_aim_weapon_stats" using primary key columns - """ - player_aim_weapon_stats_by_pk(match_map_id: uuid!, steam_id: bigint!, weapon_class: String!): player_aim_weapon_stats - - """ - fetch data from the table in a streaming manner: "player_aim_weapon_stats" - """ - player_aim_weapon_stats_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [player_aim_weapon_stats_stream_cursor_input]! - - """filter the rows returned""" - where: player_aim_weapon_stats_bool_exp - ): [player_aim_weapon_stats!]! - - """An array relationship""" - player_assists( - """distinct select on columns""" - distinct_on: [player_assists_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: [player_assists_order_by!] - - """filter the rows returned""" - where: player_assists_bool_exp - ): [player_assists!]! - - """An aggregate relationship""" - player_assists_aggregate( - """distinct select on columns""" - distinct_on: [player_assists_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: [player_assists_order_by!] - - """filter the rows returned""" - where: player_assists_bool_exp - ): player_assists_aggregate! - - """fetch data from the table: "player_assists" using primary key columns""" - player_assists_by_pk(attacked_steam_id: bigint!, attacker_steam_id: bigint!, match_map_id: uuid!, time: timestamptz!): player_assists - - """ - fetch data from the table in a streaming manner: "player_assists" - """ - player_assists_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [player_assists_stream_cursor_input]! - - """filter the rows returned""" - where: player_assists_bool_exp - ): [player_assists!]! - - """ - fetch data from the table: "player_career_stats_v" - """ - player_career_stats_v( - """distinct select on columns""" - distinct_on: [player_career_stats_v_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: [player_career_stats_v_order_by!] - - """filter the rows returned""" - where: player_career_stats_v_bool_exp - ): [player_career_stats_v!]! - - """ - fetch aggregated fields from the table: "player_career_stats_v" - """ - player_career_stats_v_aggregate( - """distinct select on columns""" - distinct_on: [player_career_stats_v_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: [player_career_stats_v_order_by!] - - """filter the rows returned""" - where: player_career_stats_v_bool_exp - ): player_career_stats_v_aggregate! - - """ - fetch data from the table in a streaming manner: "player_career_stats_v" - """ - player_career_stats_v_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [player_career_stats_v_stream_cursor_input]! - - """filter the rows returned""" - where: player_career_stats_v_bool_exp - ): [player_career_stats_v!]! - - """An array relationship""" - player_damages( - """distinct select on columns""" - distinct_on: [player_damages_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: [player_damages_order_by!] - - """filter the rows returned""" - where: player_damages_bool_exp - ): [player_damages!]! - - """An aggregate relationship""" - player_damages_aggregate( - """distinct select on columns""" - distinct_on: [player_damages_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: [player_damages_order_by!] - - """filter the rows returned""" - where: player_damages_bool_exp - ): player_damages_aggregate! - - """fetch data from the table: "player_damages" using primary key columns""" - player_damages_by_pk(id: uuid!, match_map_id: uuid!, time: timestamptz!): player_damages - - """ - fetch data from the table in a streaming manner: "player_damages" - """ - player_damages_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [player_damages_stream_cursor_input]! - - """filter the rows returned""" - where: player_damages_bool_exp - ): [player_damages!]! - - """ - fetch data from the table: "player_elo" - """ - player_elo( - """distinct select on columns""" - distinct_on: [player_elo_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: [player_elo_order_by!] - - """filter the rows returned""" - where: player_elo_bool_exp - ): [player_elo!]! - - """ - fetch aggregated fields from the table: "player_elo" - """ - player_elo_aggregate( - """distinct select on columns""" - distinct_on: [player_elo_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: [player_elo_order_by!] - - """filter the rows returned""" - where: player_elo_bool_exp - ): player_elo_aggregate! - - """fetch data from the table: "player_elo" using primary key columns""" - player_elo_by_pk(match_id: uuid!, steam_id: bigint!, type: e_match_types_enum!): player_elo - - """ - fetch data from the table in a streaming manner: "player_elo" - """ - player_elo_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [player_elo_stream_cursor_input]! - - """filter the rows returned""" - where: player_elo_bool_exp - ): [player_elo!]! - - """ - fetch data from the table: "player_faceit_rank_history" - """ - player_faceit_rank_history( - """distinct select on columns""" - distinct_on: [player_faceit_rank_history_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: [player_faceit_rank_history_order_by!] - - """filter the rows returned""" - where: player_faceit_rank_history_bool_exp - ): [player_faceit_rank_history!]! - - """ - fetch aggregated fields from the table: "player_faceit_rank_history" - """ - player_faceit_rank_history_aggregate( - """distinct select on columns""" - distinct_on: [player_faceit_rank_history_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: [player_faceit_rank_history_order_by!] - - """filter the rows returned""" - where: player_faceit_rank_history_bool_exp - ): player_faceit_rank_history_aggregate! - - """ - fetch data from the table: "player_faceit_rank_history" using primary key columns - """ - player_faceit_rank_history_by_pk(id: uuid!): player_faceit_rank_history - - """ - fetch data from the table in a streaming manner: "player_faceit_rank_history" - """ - player_faceit_rank_history_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [player_faceit_rank_history_stream_cursor_input]! - - """filter the rows returned""" - where: player_faceit_rank_history_bool_exp - ): [player_faceit_rank_history!]! - - """An array relationship""" - player_flashes( - """distinct select on columns""" - distinct_on: [player_flashes_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: [player_flashes_order_by!] - - """filter the rows returned""" - where: player_flashes_bool_exp - ): [player_flashes!]! - - """An aggregate relationship""" - player_flashes_aggregate( - """distinct select on columns""" - distinct_on: [player_flashes_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: [player_flashes_order_by!] - - """filter the rows returned""" - where: player_flashes_bool_exp - ): player_flashes_aggregate! - - """fetch data from the table: "player_flashes" using primary key columns""" - player_flashes_by_pk(attacked_steam_id: bigint!, attacker_steam_id: bigint!, match_map_id: uuid!, time: timestamptz!): player_flashes - - """ - fetch data from the table in a streaming manner: "player_flashes" - """ - player_flashes_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [player_flashes_stream_cursor_input]! - - """filter the rows returned""" - where: player_flashes_bool_exp - ): [player_flashes!]! - - """An array relationship""" - player_kills( - """distinct select on columns""" - distinct_on: [player_kills_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: [player_kills_order_by!] - - """filter the rows returned""" - where: player_kills_bool_exp - ): [player_kills!]! - - """An aggregate relationship""" - player_kills_aggregate( - """distinct select on columns""" - distinct_on: [player_kills_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: [player_kills_order_by!] - - """filter the rows returned""" - where: player_kills_bool_exp - ): player_kills_aggregate! - - """fetch data from the table: "player_kills" using primary key columns""" - player_kills_by_pk(attacked_steam_id: bigint!, attacker_steam_id: bigint!, match_map_id: uuid!, time: timestamptz!): player_kills - - """ - fetch data from the table: "player_kills_by_weapon" - """ - player_kills_by_weapon( - """distinct select on columns""" - distinct_on: [player_kills_by_weapon_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: [player_kills_by_weapon_order_by!] - - """filter the rows returned""" - where: player_kills_by_weapon_bool_exp - ): [player_kills_by_weapon!]! - - """ - fetch aggregated fields from the table: "player_kills_by_weapon" - """ - player_kills_by_weapon_aggregate( - """distinct select on columns""" - distinct_on: [player_kills_by_weapon_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: [player_kills_by_weapon_order_by!] - - """filter the rows returned""" - where: player_kills_by_weapon_bool_exp - ): player_kills_by_weapon_aggregate! - - """ - fetch data from the table: "player_kills_by_weapon" using primary key columns - """ - player_kills_by_weapon_by_pk(player_steam_id: bigint!, with: String!): player_kills_by_weapon - - """ - fetch data from the table in a streaming manner: "player_kills_by_weapon" - """ - player_kills_by_weapon_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [player_kills_by_weapon_stream_cursor_input]! - - """filter the rows returned""" - where: player_kills_by_weapon_bool_exp - ): [player_kills_by_weapon!]! - - """ - fetch data from the table in a streaming manner: "player_kills" - """ - player_kills_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [player_kills_stream_cursor_input]! - - """filter the rows returned""" - where: player_kills_bool_exp - ): [player_kills!]! - - """ - fetch data from the table: "player_leaderboard_rank" - """ - player_leaderboard_rank( - """distinct select on columns""" - distinct_on: [player_leaderboard_rank_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: [player_leaderboard_rank_order_by!] - - """filter the rows returned""" - where: player_leaderboard_rank_bool_exp - ): [player_leaderboard_rank!]! - - """ - fetch aggregated fields from the table: "player_leaderboard_rank" - """ - player_leaderboard_rank_aggregate( - """distinct select on columns""" - distinct_on: [player_leaderboard_rank_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: [player_leaderboard_rank_order_by!] - - """filter the rows returned""" - where: player_leaderboard_rank_bool_exp - ): player_leaderboard_rank_aggregate! - - """ - fetch data from the table in a streaming manner: "player_leaderboard_rank" - """ - player_leaderboard_rank_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [player_leaderboard_rank_stream_cursor_input]! - - """filter the rows returned""" - where: player_leaderboard_rank_bool_exp - ): [player_leaderboard_rank!]! - - """ - fetch data from the table: "player_match_map_stats" - """ - player_match_map_stats( - """distinct select on columns""" - distinct_on: [player_match_map_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [player_match_map_stats_order_by!] - - """filter the rows returned""" - where: player_match_map_stats_bool_exp - ): [player_match_map_stats!]! - - """ - fetch aggregated fields from the table: "player_match_map_stats" - """ - player_match_map_stats_aggregate( - """distinct select on columns""" - distinct_on: [player_match_map_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [player_match_map_stats_order_by!] - - """filter the rows returned""" - where: player_match_map_stats_bool_exp - ): player_match_map_stats_aggregate! - - """ - fetch data from the table: "player_match_map_stats" using primary key columns - """ - player_match_map_stats_by_pk(match_map_id: uuid!, steam_id: bigint!): player_match_map_stats - - """ - fetch data from the table in a streaming manner: "player_match_map_stats" - """ - player_match_map_stats_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [player_match_map_stats_stream_cursor_input]! - - """filter the rows returned""" - where: player_match_map_stats_bool_exp - ): [player_match_map_stats!]! - - """ - fetch data from the table: "player_match_performance_v" - """ - player_match_performance_v( - """distinct select on columns""" - distinct_on: [player_match_performance_v_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: [player_match_performance_v_order_by!] - - """filter the rows returned""" - where: player_match_performance_v_bool_exp - ): [player_match_performance_v!]! - - """ - fetch aggregated fields from the table: "player_match_performance_v" - """ - player_match_performance_v_aggregate( - """distinct select on columns""" - distinct_on: [player_match_performance_v_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: [player_match_performance_v_order_by!] - - """filter the rows returned""" - where: player_match_performance_v_bool_exp - ): player_match_performance_v_aggregate! - - """ - fetch data from the table in a streaming manner: "player_match_performance_v" - """ - player_match_performance_v_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [player_match_performance_v_stream_cursor_input]! - - """filter the rows returned""" - where: player_match_performance_v_bool_exp - ): [player_match_performance_v!]! - - """ - fetch data from the table: "player_match_stats_v" - """ - player_match_stats_v( - """distinct select on columns""" - distinct_on: [player_match_stats_v_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: [player_match_stats_v_order_by!] - - """filter the rows returned""" - where: player_match_stats_v_bool_exp - ): [player_match_stats_v!]! - - """ - fetch aggregated fields from the table: "player_match_stats_v" - """ - player_match_stats_v_aggregate( - """distinct select on columns""" - distinct_on: [player_match_stats_v_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: [player_match_stats_v_order_by!] - - """filter the rows returned""" - where: player_match_stats_v_bool_exp - ): player_match_stats_v_aggregate! - - """ - fetch data from the table in a streaming manner: "player_match_stats_v" - """ - player_match_stats_v_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [player_match_stats_v_stream_cursor_input]! - - """filter the rows returned""" - where: player_match_stats_v_bool_exp - ): [player_match_stats_v!]! - - """An array relationship""" - player_objectives( - """distinct select on columns""" - distinct_on: [player_objectives_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: [player_objectives_order_by!] - - """filter the rows returned""" - where: player_objectives_bool_exp - ): [player_objectives!]! - - """An aggregate relationship""" - player_objectives_aggregate( - """distinct select on columns""" - distinct_on: [player_objectives_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: [player_objectives_order_by!] - - """filter the rows returned""" - where: player_objectives_bool_exp - ): player_objectives_aggregate! - - """ - fetch data from the table: "player_objectives" using primary key columns - """ - player_objectives_by_pk(match_map_id: uuid!, player_steam_id: bigint!, time: timestamptz!): player_objectives - - """ - fetch data from the table in a streaming manner: "player_objectives" - """ - player_objectives_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [player_objectives_stream_cursor_input]! - - """filter the rows returned""" - where: player_objectives_bool_exp - ): [player_objectives!]! - - """ - fetch data from the table: "player_performance_v" - """ - player_performance_v( - """distinct select on columns""" - distinct_on: [player_performance_v_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: [player_performance_v_order_by!] - - """filter the rows returned""" - where: player_performance_v_bool_exp - ): [player_performance_v!]! - - """ - fetch aggregated fields from the table: "player_performance_v" - """ - player_performance_v_aggregate( - """distinct select on columns""" - distinct_on: [player_performance_v_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: [player_performance_v_order_by!] - - """filter the rows returned""" - where: player_performance_v_bool_exp - ): player_performance_v_aggregate! - - """ - fetch data from the table in a streaming manner: "player_performance_v" - """ - player_performance_v_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [player_performance_v_stream_cursor_input]! - - """filter the rows returned""" - where: player_performance_v_bool_exp - ): [player_performance_v!]! - - """ - fetch data from the table: "player_premier_rank_history" - """ - player_premier_rank_history( - """distinct select on columns""" - distinct_on: [player_premier_rank_history_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: [player_premier_rank_history_order_by!] - - """filter the rows returned""" - where: player_premier_rank_history_bool_exp - ): [player_premier_rank_history!]! - - """ - fetch aggregated fields from the table: "player_premier_rank_history" - """ - player_premier_rank_history_aggregate( - """distinct select on columns""" - distinct_on: [player_premier_rank_history_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: [player_premier_rank_history_order_by!] - - """filter the rows returned""" - where: player_premier_rank_history_bool_exp - ): player_premier_rank_history_aggregate! - - """ - fetch data from the table: "player_premier_rank_history" using primary key columns - """ - player_premier_rank_history_by_pk(id: uuid!): player_premier_rank_history - - """ - fetch data from the table in a streaming manner: "player_premier_rank_history" - """ - player_premier_rank_history_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [player_premier_rank_history_stream_cursor_input]! - - """filter the rows returned""" - where: player_premier_rank_history_bool_exp - ): [player_premier_rank_history!]! - - """ - fetch data from the table: "player_sanctions" - """ - player_sanctions( - """distinct select on columns""" - distinct_on: [player_sanctions_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: [player_sanctions_order_by!] - - """filter the rows returned""" - where: player_sanctions_bool_exp - ): [player_sanctions!]! - - """ - fetch aggregated fields from the table: "player_sanctions" - """ - player_sanctions_aggregate( - """distinct select on columns""" - distinct_on: [player_sanctions_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: [player_sanctions_order_by!] - - """filter the rows returned""" - where: player_sanctions_bool_exp - ): player_sanctions_aggregate! - - """ - fetch data from the table: "player_sanctions" using primary key columns - """ - player_sanctions_by_pk(created_at: timestamptz!, id: uuid!): player_sanctions - - """ - fetch data from the table in a streaming manner: "player_sanctions" - """ - player_sanctions_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [player_sanctions_stream_cursor_input]! - - """filter the rows returned""" - where: player_sanctions_bool_exp - ): [player_sanctions!]! - - """An array relationship""" - player_season_stats( - """distinct select on columns""" - distinct_on: [player_season_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [player_season_stats_order_by!] - - """filter the rows returned""" - where: player_season_stats_bool_exp - ): [player_season_stats!]! - - """An aggregate relationship""" - player_season_stats_aggregate( - """distinct select on columns""" - distinct_on: [player_season_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [player_season_stats_order_by!] - - """filter the rows returned""" - where: player_season_stats_bool_exp - ): player_season_stats_aggregate! - - """ - fetch data from the table: "player_season_stats" using primary key columns - """ - player_season_stats_by_pk(player_steam_id: bigint!, season_id: uuid!): player_season_stats - - """ - fetch data from the table in a streaming manner: "player_season_stats" - """ - player_season_stats_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [player_season_stats_stream_cursor_input]! - - """filter the rows returned""" - where: player_season_stats_bool_exp - ): [player_season_stats!]! - - """ - fetch data from the table: "player_stats" - """ - player_stats( - """distinct select on columns""" - distinct_on: [player_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [player_stats_order_by!] - - """filter the rows returned""" - where: player_stats_bool_exp - ): [player_stats!]! - - """ - fetch aggregated fields from the table: "player_stats" - """ - player_stats_aggregate( - """distinct select on columns""" - distinct_on: [player_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [player_stats_order_by!] - - """filter the rows returned""" - where: player_stats_bool_exp - ): player_stats_aggregate! - - """fetch data from the table: "player_stats" using primary key columns""" - player_stats_by_pk(player_steam_id: bigint!): player_stats - - """ - fetch data from the table in a streaming manner: "player_stats" - """ - player_stats_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [player_stats_stream_cursor_input]! - - """filter the rows returned""" - where: player_stats_bool_exp - ): [player_stats!]! - - """ - fetch data from the table: "player_steam_bot_friend" - """ - player_steam_bot_friend( - """distinct select on columns""" - distinct_on: [player_steam_bot_friend_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: [player_steam_bot_friend_order_by!] - - """filter the rows returned""" - where: player_steam_bot_friend_bool_exp - ): [player_steam_bot_friend!]! - - """ - fetch aggregated fields from the table: "player_steam_bot_friend" - """ - player_steam_bot_friend_aggregate( - """distinct select on columns""" - distinct_on: [player_steam_bot_friend_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: [player_steam_bot_friend_order_by!] - - """filter the rows returned""" - where: player_steam_bot_friend_bool_exp - ): player_steam_bot_friend_aggregate! - - """ - fetch data from the table: "player_steam_bot_friend" using primary key columns - """ - player_steam_bot_friend_by_pk(steam_id: bigint!): player_steam_bot_friend - - """ - fetch data from the table in a streaming manner: "player_steam_bot_friend" - """ - player_steam_bot_friend_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [player_steam_bot_friend_stream_cursor_input]! - - """filter the rows returned""" - where: player_steam_bot_friend_bool_exp - ): [player_steam_bot_friend!]! - - """ - fetch data from the table: "player_steam_match_auth" - """ - player_steam_match_auth( - """distinct select on columns""" - distinct_on: [player_steam_match_auth_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: [player_steam_match_auth_order_by!] - - """filter the rows returned""" - where: player_steam_match_auth_bool_exp - ): [player_steam_match_auth!]! - - """ - fetch aggregated fields from the table: "player_steam_match_auth" - """ - player_steam_match_auth_aggregate( - """distinct select on columns""" - distinct_on: [player_steam_match_auth_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: [player_steam_match_auth_order_by!] - - """filter the rows returned""" - where: player_steam_match_auth_bool_exp - ): player_steam_match_auth_aggregate! - - """ - fetch data from the table: "player_steam_match_auth" using primary key columns - """ - player_steam_match_auth_by_pk(steam_id: bigint!): player_steam_match_auth - - """ - fetch data from the table in a streaming manner: "player_steam_match_auth" - """ - player_steam_match_auth_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [player_steam_match_auth_stream_cursor_input]! - - """filter the rows returned""" - where: player_steam_match_auth_bool_exp - ): [player_steam_match_auth!]! - - """ - fetch data from the table: "player_unused_utility" - """ - player_unused_utility( - """distinct select on columns""" - distinct_on: [player_unused_utility_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: [player_unused_utility_order_by!] - - """filter the rows returned""" - where: player_unused_utility_bool_exp - ): [player_unused_utility!]! - - """ - fetch aggregated fields from the table: "player_unused_utility" - """ - player_unused_utility_aggregate( - """distinct select on columns""" - distinct_on: [player_unused_utility_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: [player_unused_utility_order_by!] - - """filter the rows returned""" - where: player_unused_utility_bool_exp - ): player_unused_utility_aggregate! - - """ - fetch data from the table: "player_unused_utility" using primary key columns - """ - player_unused_utility_by_pk(match_map_id: uuid!, player_steam_id: bigint!): player_unused_utility - - """ - fetch data from the table in a streaming manner: "player_unused_utility" - """ - player_unused_utility_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [player_unused_utility_stream_cursor_input]! - - """filter the rows returned""" - where: player_unused_utility_bool_exp - ): [player_unused_utility!]! - - """An array relationship""" - player_utility( - """distinct select on columns""" - distinct_on: [player_utility_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: [player_utility_order_by!] - - """filter the rows returned""" - where: player_utility_bool_exp - ): [player_utility!]! - - """An aggregate relationship""" - player_utility_aggregate( - """distinct select on columns""" - distinct_on: [player_utility_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: [player_utility_order_by!] - - """filter the rows returned""" - where: player_utility_bool_exp - ): player_utility_aggregate! - - """fetch data from the table: "player_utility" using primary key columns""" - player_utility_by_pk(attacker_steam_id: bigint!, match_map_id: uuid!, time: timestamptz!): player_utility - - """ - fetch data from the table in a streaming manner: "player_utility" - """ - player_utility_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [player_utility_stream_cursor_input]! - - """filter the rows returned""" - where: player_utility_bool_exp - ): [player_utility!]! - - """ - fetch data from the table: "player_weapon_stats_v" - """ - player_weapon_stats_v( - """distinct select on columns""" - distinct_on: [player_weapon_stats_v_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: [player_weapon_stats_v_order_by!] - - """filter the rows returned""" - where: player_weapon_stats_v_bool_exp - ): [player_weapon_stats_v!]! - - """ - fetch aggregated fields from the table: "player_weapon_stats_v" - """ - player_weapon_stats_v_aggregate( - """distinct select on columns""" - distinct_on: [player_weapon_stats_v_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: [player_weapon_stats_v_order_by!] - - """filter the rows returned""" - where: player_weapon_stats_v_bool_exp - ): player_weapon_stats_v_aggregate! - - """ - fetch data from the table in a streaming manner: "player_weapon_stats_v" - """ - player_weapon_stats_v_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [player_weapon_stats_v_stream_cursor_input]! - - """filter the rows returned""" - where: player_weapon_stats_v_bool_exp - ): [player_weapon_stats_v!]! - - """ - fetch data from the table: "players" - """ - players( - """distinct select on columns""" - distinct_on: [players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [players_order_by!] - - """filter the rows returned""" - where: players_bool_exp - ): [players!]! - - """ - fetch aggregated fields from the table: "players" - """ - players_aggregate( - """distinct select on columns""" - distinct_on: [players_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [players_order_by!] - - """filter the rows returned""" - where: players_bool_exp - ): players_aggregate! - - """fetch data from the table: "players" using primary key columns""" - players_by_pk(steam_id: bigint!): players - - """ - fetch data from the table in a streaming manner: "players" - """ - players_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [players_stream_cursor_input]! - - """filter the rows returned""" - where: players_bool_exp - ): [players!]! - - """ - fetch data from the table: "plugin_versions" - """ - plugin_versions( - """distinct select on columns""" - distinct_on: [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: [plugin_versions_order_by!] - - """filter the rows returned""" - where: plugin_versions_bool_exp - ): [plugin_versions!]! - - """ - fetch aggregated fields from the table: "plugin_versions" - """ - plugin_versions_aggregate( - """distinct select on columns""" - distinct_on: [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: [plugin_versions_order_by!] - - """filter the rows returned""" - where: plugin_versions_bool_exp - ): plugin_versions_aggregate! - - """fetch data from the table: "plugin_versions" using primary key columns""" - plugin_versions_by_pk(runtime: e_plugin_runtimes_enum!, version: String!): plugin_versions - - """ - fetch data from the table in a streaming manner: "plugin_versions" - """ - 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: [plugin_versions_stream_cursor_input]! - - """filter the rows returned""" - where: plugin_versions_bool_exp - ): [plugin_versions!]! - - """ - fetch data from the table: "push_subscriptions" - """ - push_subscriptions( - """distinct select on columns""" - distinct_on: [push_subscriptions_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: [push_subscriptions_order_by!] - - """filter the rows returned""" - where: push_subscriptions_bool_exp - ): [push_subscriptions!]! - - """ - fetch aggregated fields from the table: "push_subscriptions" - """ - push_subscriptions_aggregate( - """distinct select on columns""" - distinct_on: [push_subscriptions_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: [push_subscriptions_order_by!] - - """filter the rows returned""" - where: push_subscriptions_bool_exp - ): push_subscriptions_aggregate! - - """ - fetch data from the table: "push_subscriptions" using primary key columns - """ - push_subscriptions_by_pk(id: uuid!): push_subscriptions - - """ - fetch data from the table in a streaming manner: "push_subscriptions" - """ - push_subscriptions_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [push_subscriptions_stream_cursor_input]! - - """filter the rows returned""" - where: push_subscriptions_bool_exp - ): [push_subscriptions!]! - - """ - fetch data from the table: "v_role_permissions" - """ - role_permissions( - """distinct select on columns""" - distinct_on: [role_permissions_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: [role_permissions_order_by!] - - """filter the rows returned""" - where: role_permissions_bool_exp - ): [role_permissions!]! - - """ - fetch aggregated fields from the table: "v_role_permissions" - """ - role_permissions_aggregate( - """distinct select on columns""" - distinct_on: [role_permissions_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: [role_permissions_order_by!] - - """filter the rows returned""" - where: role_permissions_bool_exp - ): role_permissions_aggregate! - - """ - fetch data from the table in a streaming manner: "v_role_permissions" - """ - role_permissions_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [role_permissions_stream_cursor_input]! - - """filter the rows returned""" - where: role_permissions_bool_exp - ): [role_permissions!]! - - """ - fetch data from the table: "seasons" - """ - seasons( - """distinct select on columns""" - distinct_on: [seasons_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: [seasons_order_by!] - - """filter the rows returned""" - where: seasons_bool_exp - ): [seasons!]! - - """ - fetch aggregated fields from the table: "seasons" - """ - seasons_aggregate( - """distinct select on columns""" - distinct_on: [seasons_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: [seasons_order_by!] - - """filter the rows returned""" - where: seasons_bool_exp - ): seasons_aggregate! - - """fetch data from the table: "seasons" using primary key columns""" - seasons_by_pk(id: uuid!): seasons - - """ - fetch data from the table in a streaming manner: "seasons" - """ - seasons_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [seasons_stream_cursor_input]! - - """filter the rows returned""" - where: seasons_bool_exp - ): [seasons!]! - - """ - fetch data from the table: "server_regions" - """ - server_regions( - """distinct select on columns""" - distinct_on: [server_regions_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: [server_regions_order_by!] - - """filter the rows returned""" - where: server_regions_bool_exp - ): [server_regions!]! - - """ - fetch aggregated fields from the table: "server_regions" - """ - server_regions_aggregate( - """distinct select on columns""" - distinct_on: [server_regions_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: [server_regions_order_by!] - - """filter the rows returned""" - where: server_regions_bool_exp - ): server_regions_aggregate! - - """fetch data from the table: "server_regions" using primary key columns""" - server_regions_by_pk(value: String!): server_regions - - """ - fetch data from the table in a streaming manner: "server_regions" - """ - server_regions_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [server_regions_stream_cursor_input]! - - """filter the rows returned""" - where: server_regions_bool_exp - ): [server_regions!]! - - """An array relationship""" - servers( - """distinct select on columns""" - distinct_on: [servers_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: [servers_order_by!] - - """filter the rows returned""" - where: servers_bool_exp - ): [servers!]! - - """An aggregate relationship""" - servers_aggregate( - """distinct select on columns""" - distinct_on: [servers_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: [servers_order_by!] - - """filter the rows returned""" - where: servers_bool_exp - ): servers_aggregate! - - """fetch data from the table: "servers" using primary key columns""" - servers_by_pk(id: uuid!): servers - - """ - fetch data from the table in a streaming manner: "servers" - """ - servers_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [servers_stream_cursor_input]! - - """filter the rows returned""" - where: servers_bool_exp - ): [servers!]! - - """ - fetch data from the table: "settings" - """ - settings( - """distinct select on columns""" - distinct_on: [settings_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: [settings_order_by!] - - """filter the rows returned""" - where: settings_bool_exp - ): [settings!]! - - """ - fetch aggregated fields from the table: "settings" - """ - settings_aggregate( - """distinct select on columns""" - distinct_on: [settings_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: [settings_order_by!] - - """filter the rows returned""" - where: settings_bool_exp - ): settings_aggregate! - - """fetch data from the table: "settings" using primary key columns""" - settings_by_pk(name: String!): settings - - """ - fetch data from the table in a streaming manner: "settings" - """ - settings_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [settings_stream_cursor_input]! - - """filter the rows returned""" - where: settings_bool_exp - ): [settings!]! - - """ - fetch data from the table: "steam_account_claims" - """ - steam_account_claims( - """distinct select on columns""" - distinct_on: [steam_account_claims_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: [steam_account_claims_order_by!] - - """filter the rows returned""" - where: steam_account_claims_bool_exp - ): [steam_account_claims!]! - - """ - fetch aggregated fields from the table: "steam_account_claims" - """ - steam_account_claims_aggregate( - """distinct select on columns""" - distinct_on: [steam_account_claims_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: [steam_account_claims_order_by!] - - """filter the rows returned""" - where: steam_account_claims_bool_exp - ): steam_account_claims_aggregate! - - """ - fetch data from the table: "steam_account_claims" using primary key columns - """ - steam_account_claims_by_pk(id: uuid!): steam_account_claims - - """ - fetch data from the table in a streaming manner: "steam_account_claims" - """ - steam_account_claims_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [steam_account_claims_stream_cursor_input]! - - """filter the rows returned""" - where: steam_account_claims_bool_exp - ): [steam_account_claims!]! - - """ - fetch data from the table: "steam_accounts" - """ - steam_accounts( - """distinct select on columns""" - distinct_on: [steam_accounts_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: [steam_accounts_order_by!] - - """filter the rows returned""" - where: steam_accounts_bool_exp - ): [steam_accounts!]! - - """ - fetch aggregated fields from the table: "steam_accounts" - """ - steam_accounts_aggregate( - """distinct select on columns""" - distinct_on: [steam_accounts_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: [steam_accounts_order_by!] - - """filter the rows returned""" - where: steam_accounts_bool_exp - ): steam_accounts_aggregate! - - """fetch data from the table: "steam_accounts" using primary key columns""" - steam_accounts_by_pk(id: uuid!): steam_accounts - - """ - fetch data from the table in a streaming manner: "steam_accounts" - """ - steam_accounts_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [steam_accounts_stream_cursor_input]! - - """filter the rows returned""" - where: steam_accounts_bool_exp - ): [steam_accounts!]! - - """ - fetch data from the table: "system_alerts" - """ - system_alerts( - """distinct select on columns""" - distinct_on: [system_alerts_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: [system_alerts_order_by!] - - """filter the rows returned""" - where: system_alerts_bool_exp - ): [system_alerts!]! - - """ - fetch aggregated fields from the table: "system_alerts" - """ - system_alerts_aggregate( - """distinct select on columns""" - distinct_on: [system_alerts_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: [system_alerts_order_by!] - - """filter the rows returned""" - where: system_alerts_bool_exp - ): system_alerts_aggregate! - - """fetch data from the table: "system_alerts" using primary key columns""" - system_alerts_by_pk(id: uuid!): system_alerts - - """ - fetch data from the table in a streaming manner: "system_alerts" - """ - system_alerts_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [system_alerts_stream_cursor_input]! - - """filter the rows returned""" - where: system_alerts_bool_exp - ): [system_alerts!]! - - """An array relationship""" - team_invites( - """distinct select on columns""" - distinct_on: [team_invites_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: [team_invites_order_by!] - - """filter the rows returned""" - where: team_invites_bool_exp - ): [team_invites!]! - - """An aggregate relationship""" - team_invites_aggregate( - """distinct select on columns""" - distinct_on: [team_invites_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: [team_invites_order_by!] - - """filter the rows returned""" - where: team_invites_bool_exp - ): team_invites_aggregate! - - """fetch data from the table: "team_invites" using primary key columns""" - team_invites_by_pk(id: uuid!): team_invites - - """ - fetch data from the table in a streaming manner: "team_invites" - """ - team_invites_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [team_invites_stream_cursor_input]! - - """filter the rows returned""" - where: team_invites_bool_exp - ): [team_invites!]! - - """ - fetch data from the table: "team_roster" - """ - team_roster( - """distinct select on columns""" - distinct_on: [team_roster_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: [team_roster_order_by!] - - """filter the rows returned""" - where: team_roster_bool_exp - ): [team_roster!]! - - """ - fetch aggregated fields from the table: "team_roster" - """ - team_roster_aggregate( - """distinct select on columns""" - distinct_on: [team_roster_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: [team_roster_order_by!] - - """filter the rows returned""" - where: team_roster_bool_exp - ): team_roster_aggregate! - - """fetch data from the table: "team_roster" using primary key columns""" - team_roster_by_pk(player_steam_id: bigint!, team_id: uuid!): team_roster - - """ - fetch data from the table in a streaming manner: "team_roster" - """ - team_roster_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [team_roster_stream_cursor_input]! - - """filter the rows returned""" - where: team_roster_bool_exp - ): [team_roster!]! - - """ - fetch data from the table: "team_scrim_alerts" - """ - team_scrim_alerts( - """distinct select on columns""" - distinct_on: [team_scrim_alerts_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: [team_scrim_alerts_order_by!] - - """filter the rows returned""" - where: team_scrim_alerts_bool_exp - ): [team_scrim_alerts!]! - - """ - fetch aggregated fields from the table: "team_scrim_alerts" - """ - team_scrim_alerts_aggregate( - """distinct select on columns""" - distinct_on: [team_scrim_alerts_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: [team_scrim_alerts_order_by!] - - """filter the rows returned""" - where: team_scrim_alerts_bool_exp - ): team_scrim_alerts_aggregate! - - """ - fetch data from the table: "team_scrim_alerts" using primary key columns - """ - team_scrim_alerts_by_pk(id: uuid!): team_scrim_alerts - - """ - fetch data from the table in a streaming manner: "team_scrim_alerts" - """ - team_scrim_alerts_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [team_scrim_alerts_stream_cursor_input]! - - """filter the rows returned""" - where: team_scrim_alerts_bool_exp - ): [team_scrim_alerts!]! - - """ - fetch data from the table: "team_scrim_availability" - """ - team_scrim_availability( - """distinct select on columns""" - distinct_on: [team_scrim_availability_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: [team_scrim_availability_order_by!] - - """filter the rows returned""" - where: team_scrim_availability_bool_exp - ): [team_scrim_availability!]! - - """ - fetch aggregated fields from the table: "team_scrim_availability" - """ - team_scrim_availability_aggregate( - """distinct select on columns""" - distinct_on: [team_scrim_availability_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: [team_scrim_availability_order_by!] - - """filter the rows returned""" - where: team_scrim_availability_bool_exp - ): team_scrim_availability_aggregate! - - """ - fetch data from the table: "team_scrim_availability" using primary key columns - """ - team_scrim_availability_by_pk(id: uuid!): team_scrim_availability - - """ - fetch data from the table in a streaming manner: "team_scrim_availability" - """ - team_scrim_availability_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [team_scrim_availability_stream_cursor_input]! - - """filter the rows returned""" - where: team_scrim_availability_bool_exp - ): [team_scrim_availability!]! - - """ - fetch data from the table: "team_scrim_request_proposals" - """ - team_scrim_request_proposals( - """distinct select on columns""" - distinct_on: [team_scrim_request_proposals_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: [team_scrim_request_proposals_order_by!] - - """filter the rows returned""" - where: team_scrim_request_proposals_bool_exp - ): [team_scrim_request_proposals!]! - - """ - fetch aggregated fields from the table: "team_scrim_request_proposals" - """ - team_scrim_request_proposals_aggregate( - """distinct select on columns""" - distinct_on: [team_scrim_request_proposals_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: [team_scrim_request_proposals_order_by!] - - """filter the rows returned""" - where: team_scrim_request_proposals_bool_exp - ): team_scrim_request_proposals_aggregate! - - """ - fetch data from the table: "team_scrim_request_proposals" using primary key columns - """ - team_scrim_request_proposals_by_pk(id: uuid!): team_scrim_request_proposals - - """ - fetch data from the table in a streaming manner: "team_scrim_request_proposals" - """ - team_scrim_request_proposals_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [team_scrim_request_proposals_stream_cursor_input]! - - """filter the rows returned""" - where: team_scrim_request_proposals_bool_exp - ): [team_scrim_request_proposals!]! - - """ - fetch data from the table: "team_scrim_requests" - """ - team_scrim_requests( - """distinct select on columns""" - distinct_on: [team_scrim_requests_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: [team_scrim_requests_order_by!] - - """filter the rows returned""" - where: team_scrim_requests_bool_exp - ): [team_scrim_requests!]! - - """ - fetch aggregated fields from the table: "team_scrim_requests" - """ - team_scrim_requests_aggregate( - """distinct select on columns""" - distinct_on: [team_scrim_requests_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: [team_scrim_requests_order_by!] - - """filter the rows returned""" - where: team_scrim_requests_bool_exp - ): team_scrim_requests_aggregate! - - """ - fetch data from the table: "team_scrim_requests" using primary key columns - """ - team_scrim_requests_by_pk(id: uuid!): team_scrim_requests - - """ - fetch data from the table in a streaming manner: "team_scrim_requests" - """ - team_scrim_requests_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [team_scrim_requests_stream_cursor_input]! - - """filter the rows returned""" - where: team_scrim_requests_bool_exp - ): [team_scrim_requests!]! - - """ - fetch data from the table: "team_scrim_settings" - """ - team_scrim_settings( - """distinct select on columns""" - distinct_on: [team_scrim_settings_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: [team_scrim_settings_order_by!] - - """filter the rows returned""" - where: team_scrim_settings_bool_exp - ): [team_scrim_settings!]! - - """ - fetch aggregated fields from the table: "team_scrim_settings" - """ - team_scrim_settings_aggregate( - """distinct select on columns""" - distinct_on: [team_scrim_settings_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: [team_scrim_settings_order_by!] - - """filter the rows returned""" - where: team_scrim_settings_bool_exp - ): team_scrim_settings_aggregate! - - """ - fetch data from the table: "team_scrim_settings" using primary key columns - """ - team_scrim_settings_by_pk(id: uuid!): team_scrim_settings - - """ - fetch data from the table in a streaming manner: "team_scrim_settings" - """ - team_scrim_settings_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [team_scrim_settings_stream_cursor_input]! - - """filter the rows returned""" - where: team_scrim_settings_bool_exp - ): [team_scrim_settings!]! - - """ - fetch data from the table: "team_suggestions" - """ - team_suggestions( - """distinct select on columns""" - distinct_on: [team_suggestions_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: [team_suggestions_order_by!] - - """filter the rows returned""" - where: team_suggestions_bool_exp - ): [team_suggestions!]! - - """ - fetch aggregated fields from the table: "team_suggestions" - """ - team_suggestions_aggregate( - """distinct select on columns""" - distinct_on: [team_suggestions_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: [team_suggestions_order_by!] - - """filter the rows returned""" - where: team_suggestions_bool_exp - ): team_suggestions_aggregate! - - """ - fetch data from the table: "team_suggestions" using primary key columns - """ - team_suggestions_by_pk(id: uuid!): team_suggestions - - """ - fetch data from the table in a streaming manner: "team_suggestions" - """ - team_suggestions_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [team_suggestions_stream_cursor_input]! - - """filter the rows returned""" - where: team_suggestions_bool_exp - ): [team_suggestions!]! - - """ - fetch data from the table: "teams" - """ - teams( - """distinct select on columns""" - distinct_on: [teams_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [teams_order_by!] - - """filter the rows returned""" - where: teams_bool_exp - ): [teams!]! - - """ - fetch aggregated fields from the table: "teams" - """ - teams_aggregate( - """distinct select on columns""" - distinct_on: [teams_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [teams_order_by!] - - """filter the rows returned""" - where: teams_bool_exp - ): teams_aggregate! - - """fetch data from the table: "teams" using primary key columns""" - teams_by_pk(id: uuid!): teams - - """ - fetch data from the table in a streaming manner: "teams" - """ - teams_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [teams_stream_cursor_input]! - - """filter the rows returned""" - where: teams_bool_exp - ): [teams!]! - - """ - fetch data from the table: "tournament_awards" - """ - tournament_awards( - """distinct select on columns""" - distinct_on: [tournament_awards_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_awards_order_by!] - - """filter the rows returned""" - where: tournament_awards_bool_exp - ): [tournament_awards!]! - - """ - fetch aggregated fields from the table: "tournament_awards" - """ - tournament_awards_aggregate( - """distinct select on columns""" - distinct_on: [tournament_awards_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_awards_order_by!] - - """filter the rows returned""" - where: tournament_awards_bool_exp - ): tournament_awards_aggregate! - - """ - fetch data from the table: "tournament_awards" using primary key columns - """ - tournament_awards_by_pk(id: uuid!): tournament_awards - - """ - fetch data from the table in a streaming manner: "tournament_awards" - """ - tournament_awards_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [tournament_awards_stream_cursor_input]! - - """filter the rows returned""" - where: tournament_awards_bool_exp - ): [tournament_awards!]! - - """An array relationship""" - tournament_brackets( - """distinct select on columns""" - distinct_on: [tournament_brackets_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_brackets_order_by!] - - """filter the rows returned""" - where: tournament_brackets_bool_exp - ): [tournament_brackets!]! - - """An aggregate relationship""" - tournament_brackets_aggregate( - """distinct select on columns""" - distinct_on: [tournament_brackets_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_brackets_order_by!] - - """filter the rows returned""" - where: tournament_brackets_bool_exp - ): tournament_brackets_aggregate! - - """ - fetch data from the table: "tournament_brackets" using primary key columns - """ - tournament_brackets_by_pk(id: uuid!): tournament_brackets - - """ - fetch data from the table in a streaming manner: "tournament_brackets" - """ - tournament_brackets_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [tournament_brackets_stream_cursor_input]! - - """filter the rows returned""" - where: tournament_brackets_bool_exp - ): [tournament_brackets!]! - - """An array relationship""" - tournament_categories( - """distinct select on columns""" - distinct_on: [tournament_categories_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_categories_order_by!] - - """filter the rows returned""" - where: tournament_categories_bool_exp - ): [tournament_categories!]! - - """An aggregate relationship""" - tournament_categories_aggregate( - """distinct select on columns""" - distinct_on: [tournament_categories_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_categories_order_by!] - - """filter the rows returned""" - where: tournament_categories_bool_exp - ): tournament_categories_aggregate! - - """ - fetch data from the table: "tournament_categories" using primary key columns - """ - tournament_categories_by_pk(category: e_tournament_categories_enum!, tournament_id: uuid!): tournament_categories - - """ - fetch data from the table in a streaming manner: "tournament_categories" - """ - tournament_categories_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [tournament_categories_stream_cursor_input]! - - """filter the rows returned""" - where: tournament_categories_bool_exp - ): [tournament_categories!]! - - """An array relationship""" - tournament_free_agents( - """distinct select on columns""" - distinct_on: [tournament_free_agents_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_free_agents_order_by!] - - """filter the rows returned""" - where: tournament_free_agents_bool_exp - ): [tournament_free_agents!]! - - """An aggregate relationship""" - tournament_free_agents_aggregate( - """distinct select on columns""" - distinct_on: [tournament_free_agents_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_free_agents_order_by!] - - """filter the rows returned""" - where: tournament_free_agents_bool_exp - ): tournament_free_agents_aggregate! - - """ - fetch data from the table: "tournament_free_agents" using primary key columns - """ - tournament_free_agents_by_pk(id: uuid!): tournament_free_agents - - """ - fetch data from the table in a streaming manner: "tournament_free_agents" - """ - tournament_free_agents_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [tournament_free_agents_stream_cursor_input]! - - """filter the rows returned""" - where: tournament_free_agents_bool_exp - ): [tournament_free_agents!]! - - """ - fetch data from the table: "tournament_invite_code_uses" - """ - tournament_invite_code_uses( - """distinct select on columns""" - distinct_on: [tournament_invite_code_uses_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_invite_code_uses_order_by!] - - """filter the rows returned""" - where: tournament_invite_code_uses_bool_exp - ): [tournament_invite_code_uses!]! - - """ - fetch aggregated fields from the table: "tournament_invite_code_uses" - """ - tournament_invite_code_uses_aggregate( - """distinct select on columns""" - distinct_on: [tournament_invite_code_uses_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_invite_code_uses_order_by!] - - """filter the rows returned""" - where: tournament_invite_code_uses_bool_exp - ): tournament_invite_code_uses_aggregate! - - """ - fetch data from the table: "tournament_invite_code_uses" using primary key columns - """ - tournament_invite_code_uses_by_pk(invite_code_id: uuid!, player_steam_id: bigint!): tournament_invite_code_uses - - """ - fetch data from the table in a streaming manner: "tournament_invite_code_uses" - """ - tournament_invite_code_uses_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [tournament_invite_code_uses_stream_cursor_input]! - - """filter the rows returned""" - where: tournament_invite_code_uses_bool_exp - ): [tournament_invite_code_uses!]! - - """ - fetch data from the table: "tournament_invite_codes" - """ - tournament_invite_codes( - """distinct select on columns""" - distinct_on: [tournament_invite_codes_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_invite_codes_order_by!] - - """filter the rows returned""" - where: tournament_invite_codes_bool_exp - ): [tournament_invite_codes!]! - - """ - fetch aggregated fields from the table: "tournament_invite_codes" - """ - tournament_invite_codes_aggregate( - """distinct select on columns""" - distinct_on: [tournament_invite_codes_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_invite_codes_order_by!] - - """filter the rows returned""" - where: tournament_invite_codes_bool_exp - ): tournament_invite_codes_aggregate! - - """ - fetch data from the table: "tournament_invite_codes" using primary key columns - """ - tournament_invite_codes_by_pk(id: uuid!): tournament_invite_codes - - """ - fetch data from the table in a streaming manner: "tournament_invite_codes" - """ - tournament_invite_codes_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [tournament_invite_codes_stream_cursor_input]! - - """filter the rows returned""" - where: tournament_invite_codes_bool_exp - ): [tournament_invite_codes!]! - - """ - fetch data from the table: "tournament_invites" - """ - tournament_invites( - """distinct select on columns""" - distinct_on: [tournament_invites_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_invites_order_by!] - - """filter the rows returned""" - where: tournament_invites_bool_exp - ): [tournament_invites!]! - - """ - fetch aggregated fields from the table: "tournament_invites" - """ - tournament_invites_aggregate( - """distinct select on columns""" - distinct_on: [tournament_invites_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_invites_order_by!] - - """filter the rows returned""" - where: tournament_invites_bool_exp - ): tournament_invites_aggregate! - - """ - fetch data from the table: "tournament_invites" using primary key columns - """ - tournament_invites_by_pk(id: uuid!): tournament_invites - - """ - fetch data from the table in a streaming manner: "tournament_invites" - """ - tournament_invites_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [tournament_invites_stream_cursor_input]! - - """filter the rows returned""" - where: tournament_invites_bool_exp - ): [tournament_invites!]! - - """ - fetch data from the table: "tournament_leaderboard_entries" - """ - tournament_leaderboard_entries( - """distinct select on columns""" - distinct_on: [tournament_leaderboard_entries_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_leaderboard_entries_order_by!] - - """filter the rows returned""" - where: tournament_leaderboard_entries_bool_exp - ): [tournament_leaderboard_entries!]! - - """ - fetch aggregated fields from the table: "tournament_leaderboard_entries" - """ - tournament_leaderboard_entries_aggregate( - """distinct select on columns""" - distinct_on: [tournament_leaderboard_entries_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_leaderboard_entries_order_by!] - - """filter the rows returned""" - where: tournament_leaderboard_entries_bool_exp - ): tournament_leaderboard_entries_aggregate! - - """ - fetch data from the table in a streaming manner: "tournament_leaderboard_entries" - """ - tournament_leaderboard_entries_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [tournament_leaderboard_entries_stream_cursor_input]! - - """filter the rows returned""" - where: tournament_leaderboard_entries_bool_exp - ): [tournament_leaderboard_entries!]! - - """ - fetch data from the table: "tournament_no_shows" - """ - tournament_no_shows( - """distinct select on columns""" - distinct_on: [tournament_no_shows_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_no_shows_order_by!] - - """filter the rows returned""" - where: tournament_no_shows_bool_exp - ): [tournament_no_shows!]! - - """ - fetch aggregated fields from the table: "tournament_no_shows" - """ - tournament_no_shows_aggregate( - """distinct select on columns""" - distinct_on: [tournament_no_shows_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_no_shows_order_by!] - - """filter the rows returned""" - where: tournament_no_shows_bool_exp - ): tournament_no_shows_aggregate! - - """ - fetch data from the table: "tournament_no_shows" using primary key columns - """ - tournament_no_shows_by_pk(id: uuid!): tournament_no_shows - - """ - fetch data from the table in a streaming manner: "tournament_no_shows" - """ - tournament_no_shows_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [tournament_no_shows_stream_cursor_input]! - - """filter the rows returned""" - where: tournament_no_shows_bool_exp - ): [tournament_no_shows!]! - - """ - fetch data from the table: "tournament_organizer_teams" - """ - tournament_organizer_teams( - """distinct select on columns""" - distinct_on: [tournament_organizer_teams_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_organizer_teams_order_by!] - - """filter the rows returned""" - where: tournament_organizer_teams_bool_exp - ): [tournament_organizer_teams!]! - - """ - fetch aggregated fields from the table: "tournament_organizer_teams" - """ - tournament_organizer_teams_aggregate( - """distinct select on columns""" - distinct_on: [tournament_organizer_teams_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_organizer_teams_order_by!] - - """filter the rows returned""" - where: tournament_organizer_teams_bool_exp - ): tournament_organizer_teams_aggregate! - - """ - fetch data from the table: "tournament_organizer_teams" using primary key columns - """ - tournament_organizer_teams_by_pk(team_id: uuid!, tournament_id: uuid!): tournament_organizer_teams - - """ - fetch data from the table in a streaming manner: "tournament_organizer_teams" - """ - tournament_organizer_teams_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [tournament_organizer_teams_stream_cursor_input]! - - """filter the rows returned""" - where: tournament_organizer_teams_bool_exp - ): [tournament_organizer_teams!]! - - """An array relationship""" - tournament_organizers( - """distinct select on columns""" - distinct_on: [tournament_organizers_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_organizers_order_by!] - - """filter the rows returned""" - where: tournament_organizers_bool_exp - ): [tournament_organizers!]! - - """An aggregate relationship""" - tournament_organizers_aggregate( - """distinct select on columns""" - distinct_on: [tournament_organizers_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_organizers_order_by!] - - """filter the rows returned""" - where: tournament_organizers_bool_exp - ): tournament_organizers_aggregate! - - """ - fetch data from the table: "tournament_organizers" using primary key columns - """ - tournament_organizers_by_pk(steam_id: bigint!, tournament_id: uuid!): tournament_organizers - - """ - fetch data from the table in a streaming manner: "tournament_organizers" - """ - tournament_organizers_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [tournament_organizers_stream_cursor_input]! - - """filter the rows returned""" - where: tournament_organizers_bool_exp - ): [tournament_organizers!]! - - """ - fetch data from the table: "tournament_prizes" - """ - tournament_prizes( - """distinct select on columns""" - distinct_on: [tournament_prizes_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_prizes_order_by!] - - """filter the rows returned""" - where: tournament_prizes_bool_exp - ): [tournament_prizes!]! - - """ - fetch aggregated fields from the table: "tournament_prizes" - """ - tournament_prizes_aggregate( - """distinct select on columns""" - distinct_on: [tournament_prizes_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_prizes_order_by!] - - """filter the rows returned""" - where: tournament_prizes_bool_exp - ): tournament_prizes_aggregate! - - """ - fetch data from the table: "tournament_prizes" using primary key columns - """ - tournament_prizes_by_pk(id: uuid!): tournament_prizes - - """ - fetch data from the table in a streaming manner: "tournament_prizes" - """ - tournament_prizes_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [tournament_prizes_stream_cursor_input]! - - """filter the rows returned""" - where: tournament_prizes_bool_exp - ): [tournament_prizes!]! - - """ - fetch data from the table: "tournament_registration_unlocks" - """ - tournament_registration_unlocks( - """distinct select on columns""" - distinct_on: [tournament_registration_unlocks_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_registration_unlocks_order_by!] - - """filter the rows returned""" - where: tournament_registration_unlocks_bool_exp - ): [tournament_registration_unlocks!]! - - """ - fetch aggregated fields from the table: "tournament_registration_unlocks" - """ - tournament_registration_unlocks_aggregate( - """distinct select on columns""" - distinct_on: [tournament_registration_unlocks_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_registration_unlocks_order_by!] - - """filter the rows returned""" - where: tournament_registration_unlocks_bool_exp - ): tournament_registration_unlocks_aggregate! - - """ - fetch data from the table in a streaming manner: "tournament_registration_unlocks" - """ - tournament_registration_unlocks_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [tournament_registration_unlocks_stream_cursor_input]! - - """filter the rows returned""" - where: tournament_registration_unlocks_bool_exp - ): [tournament_registration_unlocks!]! - - """ - fetch data from the table: "tournament_stage_windows" - """ - tournament_stage_windows( - """distinct select on columns""" - distinct_on: [tournament_stage_windows_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_stage_windows_order_by!] - - """filter the rows returned""" - where: tournament_stage_windows_bool_exp - ): [tournament_stage_windows!]! - - """ - fetch aggregated fields from the table: "tournament_stage_windows" - """ - tournament_stage_windows_aggregate( - """distinct select on columns""" - distinct_on: [tournament_stage_windows_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_stage_windows_order_by!] - - """filter the rows returned""" - where: tournament_stage_windows_bool_exp - ): tournament_stage_windows_aggregate! - - """ - fetch data from the table: "tournament_stage_windows" using primary key columns - """ - tournament_stage_windows_by_pk(id: uuid!): tournament_stage_windows - - """ - fetch data from the table in a streaming manner: "tournament_stage_windows" - """ - tournament_stage_windows_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [tournament_stage_windows_stream_cursor_input]! - - """filter the rows returned""" - where: tournament_stage_windows_bool_exp - ): [tournament_stage_windows!]! - - """An array relationship""" - tournament_stages( - """distinct select on columns""" - distinct_on: [tournament_stages_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_stages_order_by!] - - """filter the rows returned""" - where: tournament_stages_bool_exp - ): [tournament_stages!]! - - """An aggregate relationship""" - tournament_stages_aggregate( - """distinct select on columns""" - distinct_on: [tournament_stages_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_stages_order_by!] - - """filter the rows returned""" - where: tournament_stages_bool_exp - ): tournament_stages_aggregate! - - """ - fetch data from the table: "tournament_stages" using primary key columns - """ - tournament_stages_by_pk(id: uuid!): tournament_stages - - """ - fetch data from the table in a streaming manner: "tournament_stages" - """ - tournament_stages_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [tournament_stages_stream_cursor_input]! - - """filter the rows returned""" - where: tournament_stages_bool_exp - ): [tournament_stages!]! - - """ - fetch data from the table: "tournament_team_invites" - """ - tournament_team_invites( - """distinct select on columns""" - distinct_on: [tournament_team_invites_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_team_invites_order_by!] - - """filter the rows returned""" - where: tournament_team_invites_bool_exp - ): [tournament_team_invites!]! - - """ - fetch aggregated fields from the table: "tournament_team_invites" - """ - tournament_team_invites_aggregate( - """distinct select on columns""" - distinct_on: [tournament_team_invites_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_team_invites_order_by!] - - """filter the rows returned""" - where: tournament_team_invites_bool_exp - ): tournament_team_invites_aggregate! - - """ - fetch data from the table: "tournament_team_invites" using primary key columns - """ - tournament_team_invites_by_pk(id: uuid!): tournament_team_invites - - """ - fetch data from the table in a streaming manner: "tournament_team_invites" - """ - tournament_team_invites_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [tournament_team_invites_stream_cursor_input]! - - """filter the rows returned""" - where: tournament_team_invites_bool_exp - ): [tournament_team_invites!]! - - """ - fetch data from the table: "tournament_team_roster" - """ - tournament_team_roster( - """distinct select on columns""" - distinct_on: [tournament_team_roster_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_team_roster_order_by!] - - """filter the rows returned""" - where: tournament_team_roster_bool_exp - ): [tournament_team_roster!]! - - """ - fetch aggregated fields from the table: "tournament_team_roster" - """ - tournament_team_roster_aggregate( - """distinct select on columns""" - distinct_on: [tournament_team_roster_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_team_roster_order_by!] - - """filter the rows returned""" - where: tournament_team_roster_bool_exp - ): tournament_team_roster_aggregate! - - """ - fetch data from the table: "tournament_team_roster" using primary key columns - """ - tournament_team_roster_by_pk(player_steam_id: bigint!, tournament_id: uuid!): tournament_team_roster - - """ - fetch data from the table in a streaming manner: "tournament_team_roster" - """ - tournament_team_roster_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [tournament_team_roster_stream_cursor_input]! - - """filter the rows returned""" - where: tournament_team_roster_bool_exp - ): [tournament_team_roster!]! - - """An array relationship""" - tournament_teams( - """distinct select on columns""" - distinct_on: [tournament_teams_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_teams_order_by!] - - """filter the rows returned""" - where: tournament_teams_bool_exp - ): [tournament_teams!]! - - """An aggregate relationship""" - tournament_teams_aggregate( - """distinct select on columns""" - distinct_on: [tournament_teams_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_teams_order_by!] - - """filter the rows returned""" - where: tournament_teams_bool_exp - ): tournament_teams_aggregate! - - """ - fetch data from the table: "tournament_teams" using primary key columns - """ - tournament_teams_by_pk(id: uuid!): tournament_teams - - """ - fetch data from the table in a streaming manner: "tournament_teams" - """ - tournament_teams_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [tournament_teams_stream_cursor_input]! - - """filter the rows returned""" - where: tournament_teams_bool_exp - ): [tournament_teams!]! - - """An array relationship""" - tournaments( - """distinct select on columns""" - distinct_on: [tournaments_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournaments_order_by!] - - """filter the rows returned""" - where: tournaments_bool_exp - ): [tournaments!]! - - """An aggregate relationship""" - tournaments_aggregate( - """distinct select on columns""" - distinct_on: [tournaments_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournaments_order_by!] - - """filter the rows returned""" - where: tournaments_bool_exp - ): tournaments_aggregate! - - """fetch data from the table: "tournaments" using primary key columns""" - tournaments_by_pk(id: uuid!): tournaments - - """ - fetch data from the table in a streaming manner: "tournaments" - """ - tournaments_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [tournaments_stream_cursor_input]! - - """filter the rows returned""" - where: tournaments_bool_exp - ): [tournaments!]! - - """ - fetch data from the table: "utility_collection_items" - """ - utility_collection_items( - """distinct select on columns""" - distinct_on: [utility_collection_items_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: [utility_collection_items_order_by!] - - """filter the rows returned""" - where: utility_collection_items_bool_exp - ): [utility_collection_items!]! - - """ - fetch aggregated fields from the table: "utility_collection_items" - """ - utility_collection_items_aggregate( - """distinct select on columns""" - distinct_on: [utility_collection_items_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: [utility_collection_items_order_by!] - - """filter the rows returned""" - where: utility_collection_items_bool_exp - ): utility_collection_items_aggregate! - - """ - fetch data from the table: "utility_collection_items" using primary key columns - """ - utility_collection_items_by_pk(collection_id: uuid!, utility_lineup_id: uuid!): utility_collection_items - - """ - fetch data from the table in a streaming manner: "utility_collection_items" - """ - utility_collection_items_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [utility_collection_items_stream_cursor_input]! - - """filter the rows returned""" - where: utility_collection_items_bool_exp - ): [utility_collection_items!]! - - """ - fetch data from the table: "utility_collections" - """ - utility_collections( - """distinct select on columns""" - distinct_on: [utility_collections_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: [utility_collections_order_by!] - - """filter the rows returned""" - where: utility_collections_bool_exp - ): [utility_collections!]! - - """ - fetch aggregated fields from the table: "utility_collections" - """ - utility_collections_aggregate( - """distinct select on columns""" - distinct_on: [utility_collections_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: [utility_collections_order_by!] - - """filter the rows returned""" - where: utility_collections_bool_exp - ): utility_collections_aggregate! - - """ - fetch data from the table: "utility_collections" using primary key columns - """ - utility_collections_by_pk(id: uuid!): utility_collections - - """ - fetch data from the table in a streaming manner: "utility_collections" - """ - utility_collections_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [utility_collections_stream_cursor_input]! - - """filter the rows returned""" - where: utility_collections_bool_exp - ): [utility_collections!]! - - """ - fetch data from the table: "utility_demo_mines" - """ - utility_demo_mines( - """distinct select on columns""" - distinct_on: [utility_demo_mines_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: [utility_demo_mines_order_by!] - - """filter the rows returned""" - where: utility_demo_mines_bool_exp - ): [utility_demo_mines!]! - - """ - fetch aggregated fields from the table: "utility_demo_mines" - """ - utility_demo_mines_aggregate( - """distinct select on columns""" - distinct_on: [utility_demo_mines_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: [utility_demo_mines_order_by!] - - """filter the rows returned""" - where: utility_demo_mines_bool_exp - ): utility_demo_mines_aggregate! - - """ - fetch data from the table: "utility_demo_mines" using primary key columns - """ - utility_demo_mines_by_pk(match_map_demo_id: uuid!): utility_demo_mines - - """ - fetch data from the table in a streaming manner: "utility_demo_mines" - """ - utility_demo_mines_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [utility_demo_mines_stream_cursor_input]! - - """filter the rows returned""" - where: utility_demo_mines_bool_exp - ): [utility_demo_mines!]! - - """ - fetch data from the table: "utility_demo_throws" - """ - utility_demo_throws( - """distinct select on columns""" - distinct_on: [utility_demo_throws_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: [utility_demo_throws_order_by!] - - """filter the rows returned""" - where: utility_demo_throws_bool_exp - ): [utility_demo_throws!]! - - """ - fetch aggregated fields from the table: "utility_demo_throws" - """ - utility_demo_throws_aggregate( - """distinct select on columns""" - distinct_on: [utility_demo_throws_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: [utility_demo_throws_order_by!] - - """filter the rows returned""" - where: utility_demo_throws_bool_exp - ): utility_demo_throws_aggregate! - - """ - fetch data from the table: "utility_demo_throws" using primary key columns - """ - utility_demo_throws_by_pk(grenade_id: Int!, match_map_demo_id: uuid!): utility_demo_throws - - """ - fetch data from the table in a streaming manner: "utility_demo_throws" - """ - utility_demo_throws_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [utility_demo_throws_stream_cursor_input]! - - """filter the rows returned""" - where: utility_demo_throws_bool_exp - ): [utility_demo_throws!]! - - """ - fetch data from the table: "utility_drift_results" - """ - utility_drift_results( - """distinct select on columns""" - distinct_on: [utility_drift_results_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: [utility_drift_results_order_by!] - - """filter the rows returned""" - where: utility_drift_results_bool_exp - ): [utility_drift_results!]! - - """ - fetch aggregated fields from the table: "utility_drift_results" - """ - utility_drift_results_aggregate( - """distinct select on columns""" - distinct_on: [utility_drift_results_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: [utility_drift_results_order_by!] - - """filter the rows returned""" - where: utility_drift_results_bool_exp - ): utility_drift_results_aggregate! - - """ - fetch data from the table: "utility_drift_results" using primary key columns - """ - utility_drift_results_by_pk(utility_drift_scan_id: uuid!, utility_lineup_id: uuid!): utility_drift_results - - """ - fetch data from the table in a streaming manner: "utility_drift_results" - """ - utility_drift_results_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [utility_drift_results_stream_cursor_input]! - - """filter the rows returned""" - where: utility_drift_results_bool_exp - ): [utility_drift_results!]! - - """ - fetch data from the table: "utility_drift_scans" - """ - utility_drift_scans( - """distinct select on columns""" - distinct_on: [utility_drift_scans_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: [utility_drift_scans_order_by!] - - """filter the rows returned""" - where: utility_drift_scans_bool_exp - ): [utility_drift_scans!]! - - """ - fetch aggregated fields from the table: "utility_drift_scans" - """ - utility_drift_scans_aggregate( - """distinct select on columns""" - distinct_on: [utility_drift_scans_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: [utility_drift_scans_order_by!] - - """filter the rows returned""" - where: utility_drift_scans_bool_exp - ): utility_drift_scans_aggregate! - - """ - fetch data from the table: "utility_drift_scans" using primary key columns - """ - utility_drift_scans_by_pk(id: uuid!): utility_drift_scans - - """ - fetch data from the table in a streaming manner: "utility_drift_scans" - """ - utility_drift_scans_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [utility_drift_scans_stream_cursor_input]! - - """filter the rows returned""" - where: utility_drift_scans_bool_exp - ): [utility_drift_scans!]! - - """ - fetch data from the table: "utility_lineup_favorites" - """ - utility_lineup_favorites( - """distinct select on columns""" - distinct_on: [utility_lineup_favorites_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: [utility_lineup_favorites_order_by!] - - """filter the rows returned""" - where: utility_lineup_favorites_bool_exp - ): [utility_lineup_favorites!]! - - """ - fetch aggregated fields from the table: "utility_lineup_favorites" - """ - utility_lineup_favorites_aggregate( - """distinct select on columns""" - distinct_on: [utility_lineup_favorites_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: [utility_lineup_favorites_order_by!] - - """filter the rows returned""" - where: utility_lineup_favorites_bool_exp - ): utility_lineup_favorites_aggregate! - - """ - fetch data from the table: "utility_lineup_favorites" using primary key columns - """ - utility_lineup_favorites_by_pk(steam_id: bigint!, utility_lineup_id: uuid!): utility_lineup_favorites - - """ - fetch data from the table in a streaming manner: "utility_lineup_favorites" - """ - utility_lineup_favorites_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [utility_lineup_favorites_stream_cursor_input]! - - """filter the rows returned""" - where: utility_lineup_favorites_bool_exp - ): [utility_lineup_favorites!]! - - """ - fetch data from the table: "utility_lineup_progress" - """ - utility_lineup_progress( - """distinct select on columns""" - distinct_on: [utility_lineup_progress_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: [utility_lineup_progress_order_by!] - - """filter the rows returned""" - where: utility_lineup_progress_bool_exp - ): [utility_lineup_progress!]! - - """ - fetch aggregated fields from the table: "utility_lineup_progress" - """ - utility_lineup_progress_aggregate( - """distinct select on columns""" - distinct_on: [utility_lineup_progress_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: [utility_lineup_progress_order_by!] - - """filter the rows returned""" - where: utility_lineup_progress_bool_exp - ): utility_lineup_progress_aggregate! - - """ - fetch data from the table: "utility_lineup_progress" using primary key columns - """ - utility_lineup_progress_by_pk(steam_id: bigint!, utility_lineup_id: uuid!): utility_lineup_progress - - """ - fetch data from the table in a streaming manner: "utility_lineup_progress" - """ - utility_lineup_progress_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [utility_lineup_progress_stream_cursor_input]! - - """filter the rows returned""" - where: utility_lineup_progress_bool_exp - ): [utility_lineup_progress!]! - - """ - fetch data from the table: "utility_lineup_renders" - """ - utility_lineup_renders( - """distinct select on columns""" - distinct_on: [utility_lineup_renders_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: [utility_lineup_renders_order_by!] - - """filter the rows returned""" - where: utility_lineup_renders_bool_exp - ): [utility_lineup_renders!]! - - """ - fetch aggregated fields from the table: "utility_lineup_renders" - """ - utility_lineup_renders_aggregate( - """distinct select on columns""" - distinct_on: [utility_lineup_renders_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: [utility_lineup_renders_order_by!] - - """filter the rows returned""" - where: utility_lineup_renders_bool_exp - ): utility_lineup_renders_aggregate! - - """ - fetch data from the table: "utility_lineup_renders" using primary key columns - """ - utility_lineup_renders_by_pk(id: uuid!): utility_lineup_renders - - """ - fetch data from the table in a streaming manner: "utility_lineup_renders" - """ - utility_lineup_renders_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [utility_lineup_renders_stream_cursor_input]! - - """filter the rows returned""" - where: utility_lineup_renders_bool_exp - ): [utility_lineup_renders!]! - - """ - fetch data from the table: "utility_lineup_repairs" - """ - utility_lineup_repairs( - """distinct select on columns""" - distinct_on: [utility_lineup_repairs_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: [utility_lineup_repairs_order_by!] - - """filter the rows returned""" - where: utility_lineup_repairs_bool_exp - ): [utility_lineup_repairs!]! - - """ - fetch aggregated fields from the table: "utility_lineup_repairs" - """ - utility_lineup_repairs_aggregate( - """distinct select on columns""" - distinct_on: [utility_lineup_repairs_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: [utility_lineup_repairs_order_by!] - - """filter the rows returned""" - where: utility_lineup_repairs_bool_exp - ): utility_lineup_repairs_aggregate! - - """ - fetch data from the table: "utility_lineup_repairs" using primary key columns - """ - utility_lineup_repairs_by_pk(id: uuid!): utility_lineup_repairs - - """ - fetch data from the table in a streaming manner: "utility_lineup_repairs" - """ - utility_lineup_repairs_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [utility_lineup_repairs_stream_cursor_input]! - - """filter the rows returned""" - where: utility_lineup_repairs_bool_exp - ): [utility_lineup_repairs!]! - - """ - fetch data from the table: "utility_lineup_votes" - """ - utility_lineup_votes( - """distinct select on columns""" - distinct_on: [utility_lineup_votes_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: [utility_lineup_votes_order_by!] - - """filter the rows returned""" - where: utility_lineup_votes_bool_exp - ): [utility_lineup_votes!]! - - """ - fetch aggregated fields from the table: "utility_lineup_votes" - """ - utility_lineup_votes_aggregate( - """distinct select on columns""" - distinct_on: [utility_lineup_votes_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: [utility_lineup_votes_order_by!] - - """filter the rows returned""" - where: utility_lineup_votes_bool_exp - ): utility_lineup_votes_aggregate! - - """ - fetch data from the table: "utility_lineup_votes" using primary key columns - """ - utility_lineup_votes_by_pk(steam_id: bigint!, utility_lineup_id: uuid!): utility_lineup_votes - - """ - fetch data from the table in a streaming manner: "utility_lineup_votes" - """ - utility_lineup_votes_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [utility_lineup_votes_stream_cursor_input]! - - """filter the rows returned""" - where: utility_lineup_votes_bool_exp - ): [utility_lineup_votes!]! - - """An array relationship""" - utility_lineups( - """distinct select on columns""" - distinct_on: [utility_lineups_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: [utility_lineups_order_by!] - - """filter the rows returned""" - where: utility_lineups_bool_exp - ): [utility_lineups!]! - - """An aggregate relationship""" - utility_lineups_aggregate( - """distinct select on columns""" - distinct_on: [utility_lineups_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: [utility_lineups_order_by!] - - """filter the rows returned""" - where: utility_lineups_bool_exp - ): utility_lineups_aggregate! - - """fetch data from the table: "utility_lineups" using primary key columns""" - utility_lineups_by_pk(id: uuid!): utility_lineups - - """ - fetch data from the table in a streaming manner: "utility_lineups" - """ - utility_lineups_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [utility_lineups_stream_cursor_input]! - - """filter the rows returned""" - where: utility_lineups_bool_exp - ): [utility_lineups!]! - - """ - fetch data from the table: "utility_meta_lineups" - """ - utility_meta_lineups( - """distinct select on columns""" - distinct_on: [utility_meta_lineups_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: [utility_meta_lineups_order_by!] - - """filter the rows returned""" - where: utility_meta_lineups_bool_exp - ): [utility_meta_lineups!]! - - """ - fetch aggregated fields from the table: "utility_meta_lineups" - """ - utility_meta_lineups_aggregate( - """distinct select on columns""" - distinct_on: [utility_meta_lineups_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: [utility_meta_lineups_order_by!] - - """filter the rows returned""" - where: utility_meta_lineups_bool_exp - ): utility_meta_lineups_aggregate! - - """ - fetch data from the table: "utility_meta_lineups" using primary key columns - """ - utility_meta_lineups_by_pk(lineup_bucket: String!): utility_meta_lineups - - """ - fetch data from the table in a streaming manner: "utility_meta_lineups" - """ - utility_meta_lineups_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [utility_meta_lineups_stream_cursor_input]! - - """filter the rows returned""" - where: utility_meta_lineups_bool_exp - ): [utility_meta_lineups!]! - - """ - fetch data from the table: "utility_playbook_steps" - """ - utility_playbook_steps( - """distinct select on columns""" - distinct_on: [utility_playbook_steps_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: [utility_playbook_steps_order_by!] - - """filter the rows returned""" - where: utility_playbook_steps_bool_exp - ): [utility_playbook_steps!]! - - """ - fetch aggregated fields from the table: "utility_playbook_steps" - """ - utility_playbook_steps_aggregate( - """distinct select on columns""" - distinct_on: [utility_playbook_steps_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: [utility_playbook_steps_order_by!] - - """filter the rows returned""" - where: utility_playbook_steps_bool_exp - ): utility_playbook_steps_aggregate! - - """ - fetch data from the table: "utility_playbook_steps" using primary key columns - """ - utility_playbook_steps_by_pk(id: uuid!): utility_playbook_steps - - """ - fetch data from the table in a streaming manner: "utility_playbook_steps" - """ - utility_playbook_steps_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [utility_playbook_steps_stream_cursor_input]! - - """filter the rows returned""" - where: utility_playbook_steps_bool_exp - ): [utility_playbook_steps!]! - - """ - fetch data from the table: "utility_playbooks" - """ - utility_playbooks( - """distinct select on columns""" - distinct_on: [utility_playbooks_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: [utility_playbooks_order_by!] - - """filter the rows returned""" - where: utility_playbooks_bool_exp - ): [utility_playbooks!]! - - """ - fetch aggregated fields from the table: "utility_playbooks" - """ - utility_playbooks_aggregate( - """distinct select on columns""" - distinct_on: [utility_playbooks_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: [utility_playbooks_order_by!] - - """filter the rows returned""" - where: utility_playbooks_bool_exp - ): utility_playbooks_aggregate! - - """ - fetch data from the table: "utility_playbooks" using primary key columns - """ - utility_playbooks_by_pk(id: uuid!): utility_playbooks - - """ - fetch data from the table in a streaming manner: "utility_playbooks" - """ - utility_playbooks_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [utility_playbooks_stream_cursor_input]! - - """filter the rows returned""" - where: utility_playbooks_bool_exp - ): [utility_playbooks!]! - - """ - fetch data from the table: "utility_practice_invites" - """ - utility_practice_invites( - """distinct select on columns""" - distinct_on: [utility_practice_invites_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: [utility_practice_invites_order_by!] - - """filter the rows returned""" - where: utility_practice_invites_bool_exp - ): [utility_practice_invites!]! - - """ - fetch aggregated fields from the table: "utility_practice_invites" - """ - utility_practice_invites_aggregate( - """distinct select on columns""" - distinct_on: [utility_practice_invites_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: [utility_practice_invites_order_by!] - - """filter the rows returned""" - where: utility_practice_invites_bool_exp - ): utility_practice_invites_aggregate! - - """ - fetch data from the table: "utility_practice_invites" using primary key columns - """ - utility_practice_invites_by_pk(steam_id: bigint!, utility_practice_session_id: uuid!): utility_practice_invites - - """ - fetch data from the table in a streaming manner: "utility_practice_invites" - """ - utility_practice_invites_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [utility_practice_invites_stream_cursor_input]! - - """filter the rows returned""" - where: utility_practice_invites_bool_exp - ): [utility_practice_invites!]! - - """An array relationship""" - utility_practice_sessions( - """distinct select on columns""" - distinct_on: [utility_practice_sessions_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: [utility_practice_sessions_order_by!] - - """filter the rows returned""" - where: utility_practice_sessions_bool_exp - ): [utility_practice_sessions!]! - - """An aggregate relationship""" - utility_practice_sessions_aggregate( - """distinct select on columns""" - distinct_on: [utility_practice_sessions_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: [utility_practice_sessions_order_by!] - - """filter the rows returned""" - where: utility_practice_sessions_bool_exp - ): utility_practice_sessions_aggregate! - - """ - fetch data from the table: "utility_practice_sessions" using primary key columns - """ - utility_practice_sessions_by_pk(id: uuid!): utility_practice_sessions - - """ - fetch data from the table in a streaming manner: "utility_practice_sessions" - """ - utility_practice_sessions_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [utility_practice_sessions_stream_cursor_input]! - - """filter the rows returned""" - where: utility_practice_sessions_bool_exp - ): [utility_practice_sessions!]! - - """ - fetch data from the table: "v_event_player_stats" - """ - v_event_player_stats( - """distinct select on columns""" - distinct_on: [v_event_player_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_event_player_stats_order_by!] - - """filter the rows returned""" - where: v_event_player_stats_bool_exp - ): [v_event_player_stats!]! - - """ - fetch aggregated fields from the table: "v_event_player_stats" - """ - v_event_player_stats_aggregate( - """distinct select on columns""" - distinct_on: [v_event_player_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_event_player_stats_order_by!] - - """filter the rows returned""" - where: v_event_player_stats_bool_exp - ): v_event_player_stats_aggregate! - - """ - fetch data from the table in a streaming manner: "v_event_player_stats" - """ - v_event_player_stats_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [v_event_player_stats_stream_cursor_input]! - - """filter the rows returned""" - where: v_event_player_stats_bool_exp - ): [v_event_player_stats!]! - - """ - fetch data from the table: "v_gpu_pool_status" - """ - v_gpu_pool_status( - """distinct select on columns""" - distinct_on: [v_gpu_pool_status_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_gpu_pool_status_order_by!] - - """filter the rows returned""" - where: v_gpu_pool_status_bool_exp - ): [v_gpu_pool_status!]! - - """ - fetch aggregated fields from the table: "v_gpu_pool_status" - """ - v_gpu_pool_status_aggregate( - """distinct select on columns""" - distinct_on: [v_gpu_pool_status_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_gpu_pool_status_order_by!] - - """filter the rows returned""" - where: v_gpu_pool_status_bool_exp - ): v_gpu_pool_status_aggregate! - - """ - fetch data from the table in a streaming manner: "v_gpu_pool_status" - """ - v_gpu_pool_status_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [v_gpu_pool_status_stream_cursor_input]! - - """filter the rows returned""" - where: v_gpu_pool_status_bool_exp - ): [v_gpu_pool_status!]! - - """ - fetch data from the table: "v_league_division_standings" - """ - v_league_division_standings( - """distinct select on columns""" - distinct_on: [v_league_division_standings_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_league_division_standings_order_by!] - - """filter the rows returned""" - where: v_league_division_standings_bool_exp - ): [v_league_division_standings!]! - - """ - fetch aggregated fields from the table: "v_league_division_standings" - """ - v_league_division_standings_aggregate( - """distinct select on columns""" - distinct_on: [v_league_division_standings_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_league_division_standings_order_by!] - - """filter the rows returned""" - where: v_league_division_standings_bool_exp - ): v_league_division_standings_aggregate! - - """ - fetch data from the table in a streaming manner: "v_league_division_standings" - """ - v_league_division_standings_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [v_league_division_standings_stream_cursor_input]! - - """filter the rows returned""" - where: v_league_division_standings_bool_exp - ): [v_league_division_standings!]! - - """ - fetch data from the table: "v_league_season_player_stats" - """ - v_league_season_player_stats( - """distinct select on columns""" - distinct_on: [v_league_season_player_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_league_season_player_stats_order_by!] - - """filter the rows returned""" - where: v_league_season_player_stats_bool_exp - ): [v_league_season_player_stats!]! - - """ - fetch aggregated fields from the table: "v_league_season_player_stats" - """ - v_league_season_player_stats_aggregate( - """distinct select on columns""" - distinct_on: [v_league_season_player_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_league_season_player_stats_order_by!] - - """filter the rows returned""" - where: v_league_season_player_stats_bool_exp - ): v_league_season_player_stats_aggregate! - - """ - fetch data from the table in a streaming manner: "v_league_season_player_stats" - """ - v_league_season_player_stats_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [v_league_season_player_stats_stream_cursor_input]! - - """filter the rows returned""" - where: v_league_season_player_stats_bool_exp - ): [v_league_season_player_stats!]! - - """ - fetch data from the table: "v_match_captains" - """ - v_match_captains( - """distinct select on columns""" - distinct_on: [v_match_captains_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_match_captains_order_by!] - - """filter the rows returned""" - where: v_match_captains_bool_exp - ): [v_match_captains!]! - - """ - fetch aggregated fields from the table: "v_match_captains" - """ - v_match_captains_aggregate( - """distinct select on columns""" - distinct_on: [v_match_captains_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_match_captains_order_by!] - - """filter the rows returned""" - where: v_match_captains_bool_exp - ): v_match_captains_aggregate! - - """ - fetch data from the table in a streaming manner: "v_match_captains" - """ - v_match_captains_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [v_match_captains_stream_cursor_input]! - - """filter the rows returned""" - where: v_match_captains_bool_exp - ): [v_match_captains!]! - - """ - fetch data from the table: "v_match_clutches" - """ - v_match_clutches( - """distinct select on columns""" - distinct_on: [v_match_clutches_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_match_clutches_order_by!] - - """filter the rows returned""" - where: v_match_clutches_bool_exp - ): [v_match_clutches!]! - - """ - fetch aggregated fields from the table: "v_match_clutches" - """ - v_match_clutches_aggregate( - """distinct select on columns""" - distinct_on: [v_match_clutches_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_match_clutches_order_by!] - - """filter the rows returned""" - where: v_match_clutches_bool_exp - ): v_match_clutches_aggregate! - - """ - fetch data from the table in a streaming manner: "v_match_clutches" - """ - v_match_clutches_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [v_match_clutches_stream_cursor_input]! - - """filter the rows returned""" - where: v_match_clutches_bool_exp - ): [v_match_clutches!]! - - """ - fetch data from the table: "v_match_kill_pairs" - """ - v_match_kill_pairs( - """distinct select on columns""" - distinct_on: [v_match_kill_pairs_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_match_kill_pairs_order_by!] - - """filter the rows returned""" - where: v_match_kill_pairs_bool_exp - ): [v_match_kill_pairs!]! - - """ - fetch aggregated fields from the table: "v_match_kill_pairs" - """ - v_match_kill_pairs_aggregate( - """distinct select on columns""" - distinct_on: [v_match_kill_pairs_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_match_kill_pairs_order_by!] - - """filter the rows returned""" - where: v_match_kill_pairs_bool_exp - ): v_match_kill_pairs_aggregate! - - """ - fetch data from the table in a streaming manner: "v_match_kill_pairs" - """ - v_match_kill_pairs_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [v_match_kill_pairs_stream_cursor_input]! - - """filter the rows returned""" - where: v_match_kill_pairs_bool_exp - ): [v_match_kill_pairs!]! - - """ - fetch data from the table: "v_match_lineup_buy_types" - """ - v_match_lineup_buy_types( - """distinct select on columns""" - distinct_on: [v_match_lineup_buy_types_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_match_lineup_buy_types_order_by!] - - """filter the rows returned""" - where: v_match_lineup_buy_types_bool_exp - ): [v_match_lineup_buy_types!]! - - """ - fetch aggregated fields from the table: "v_match_lineup_buy_types" - """ - v_match_lineup_buy_types_aggregate( - """distinct select on columns""" - distinct_on: [v_match_lineup_buy_types_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_match_lineup_buy_types_order_by!] - - """filter the rows returned""" - where: v_match_lineup_buy_types_bool_exp - ): v_match_lineup_buy_types_aggregate! - - """ - fetch data from the table in a streaming manner: "v_match_lineup_buy_types" - """ - v_match_lineup_buy_types_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [v_match_lineup_buy_types_stream_cursor_input]! - - """filter the rows returned""" - where: v_match_lineup_buy_types_bool_exp - ): [v_match_lineup_buy_types!]! - - """ - fetch data from the table: "v_match_lineup_map_stats" - """ - v_match_lineup_map_stats( - """distinct select on columns""" - distinct_on: [v_match_lineup_map_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_match_lineup_map_stats_order_by!] - - """filter the rows returned""" - where: v_match_lineup_map_stats_bool_exp - ): [v_match_lineup_map_stats!]! - - """ - fetch aggregated fields from the table: "v_match_lineup_map_stats" - """ - v_match_lineup_map_stats_aggregate( - """distinct select on columns""" - distinct_on: [v_match_lineup_map_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_match_lineup_map_stats_order_by!] - - """filter the rows returned""" - where: v_match_lineup_map_stats_bool_exp - ): v_match_lineup_map_stats_aggregate! - - """ - fetch data from the table in a streaming manner: "v_match_lineup_map_stats" - """ - v_match_lineup_map_stats_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [v_match_lineup_map_stats_stream_cursor_input]! - - """filter the rows returned""" - where: v_match_lineup_map_stats_bool_exp - ): [v_match_lineup_map_stats!]! - - """ - fetch data from the table: "v_match_map_backup_rounds" - """ - v_match_map_backup_rounds( - """distinct select on columns""" - distinct_on: [v_match_map_backup_rounds_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_match_map_backup_rounds_order_by!] - - """filter the rows returned""" - where: v_match_map_backup_rounds_bool_exp - ): [v_match_map_backup_rounds!]! - - """ - fetch aggregated fields from the table: "v_match_map_backup_rounds" - """ - v_match_map_backup_rounds_aggregate( - """distinct select on columns""" - distinct_on: [v_match_map_backup_rounds_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_match_map_backup_rounds_order_by!] - - """filter the rows returned""" - where: v_match_map_backup_rounds_bool_exp - ): v_match_map_backup_rounds_aggregate! - - """ - fetch data from the table in a streaming manner: "v_match_map_backup_rounds" - """ - v_match_map_backup_rounds_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [v_match_map_backup_rounds_stream_cursor_input]! - - """filter the rows returned""" - where: v_match_map_backup_rounds_bool_exp - ): [v_match_map_backup_rounds!]! - - """ - fetch data from the table: "v_match_player_buy_types" - """ - v_match_player_buy_types( - """distinct select on columns""" - distinct_on: [v_match_player_buy_types_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_match_player_buy_types_order_by!] - - """filter the rows returned""" - where: v_match_player_buy_types_bool_exp - ): [v_match_player_buy_types!]! - - """ - fetch aggregated fields from the table: "v_match_player_buy_types" - """ - v_match_player_buy_types_aggregate( - """distinct select on columns""" - distinct_on: [v_match_player_buy_types_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_match_player_buy_types_order_by!] - - """filter the rows returned""" - where: v_match_player_buy_types_bool_exp - ): v_match_player_buy_types_aggregate! - - """ - fetch data from the table in a streaming manner: "v_match_player_buy_types" - """ - v_match_player_buy_types_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [v_match_player_buy_types_stream_cursor_input]! - - """filter the rows returned""" - where: v_match_player_buy_types_bool_exp - ): [v_match_player_buy_types!]! - - """ - fetch data from the table: "v_match_player_opening_duels" - """ - v_match_player_opening_duels( - """distinct select on columns""" - distinct_on: [v_match_player_opening_duels_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_match_player_opening_duels_order_by!] - - """filter the rows returned""" - where: v_match_player_opening_duels_bool_exp - ): [v_match_player_opening_duels!]! - - """ - fetch aggregated fields from the table: "v_match_player_opening_duels" - """ - v_match_player_opening_duels_aggregate( - """distinct select on columns""" - distinct_on: [v_match_player_opening_duels_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_match_player_opening_duels_order_by!] - - """filter the rows returned""" - where: v_match_player_opening_duels_bool_exp - ): v_match_player_opening_duels_aggregate! - - """ - fetch data from the table in a streaming manner: "v_match_player_opening_duels" - """ - v_match_player_opening_duels_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [v_match_player_opening_duels_stream_cursor_input]! - - """filter the rows returned""" - where: v_match_player_opening_duels_bool_exp - ): [v_match_player_opening_duels!]! - - """ - fetch data from the table: "v_player_arch_nemesis" - """ - v_player_arch_nemesis( - """distinct select on columns""" - distinct_on: [v_player_arch_nemesis_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_arch_nemesis_order_by!] - - """filter the rows returned""" - where: v_player_arch_nemesis_bool_exp - ): [v_player_arch_nemesis!]! - - """ - fetch aggregated fields from the table: "v_player_arch_nemesis" - """ - v_player_arch_nemesis_aggregate( - """distinct select on columns""" - distinct_on: [v_player_arch_nemesis_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_arch_nemesis_order_by!] - - """filter the rows returned""" - where: v_player_arch_nemesis_bool_exp - ): v_player_arch_nemesis_aggregate! - - """ - fetch data from the table in a streaming manner: "v_player_arch_nemesis" - """ - v_player_arch_nemesis_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [v_player_arch_nemesis_stream_cursor_input]! - - """filter the rows returned""" - where: v_player_arch_nemesis_bool_exp - ): [v_player_arch_nemesis!]! - - """ - fetch data from the table: "v_player_damage" - """ - v_player_damage( - """distinct select on columns""" - distinct_on: [v_player_damage_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_damage_order_by!] - - """filter the rows returned""" - where: v_player_damage_bool_exp - ): [v_player_damage!]! - - """ - fetch aggregated fields from the table: "v_player_damage" - """ - v_player_damage_aggregate( - """distinct select on columns""" - distinct_on: [v_player_damage_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_damage_order_by!] - - """filter the rows returned""" - where: v_player_damage_bool_exp - ): v_player_damage_aggregate! - - """ - fetch data from the table in a streaming manner: "v_player_damage" - """ - v_player_damage_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [v_player_damage_stream_cursor_input]! - - """filter the rows returned""" - where: v_player_damage_bool_exp - ): [v_player_damage!]! - - """ - fetch data from the table: "v_player_elo" - """ - v_player_elo( - """distinct select on columns""" - distinct_on: [v_player_elo_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_elo_order_by!] - - """filter the rows returned""" - where: v_player_elo_bool_exp - ): [v_player_elo!]! - - """ - fetch aggregated fields from the table: "v_player_elo" - """ - v_player_elo_aggregate( - """distinct select on columns""" - distinct_on: [v_player_elo_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_elo_order_by!] - - """filter the rows returned""" - where: v_player_elo_bool_exp - ): v_player_elo_aggregate! - - """ - fetch data from the table in a streaming manner: "v_player_elo" - """ - v_player_elo_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [v_player_elo_stream_cursor_input]! - - """filter the rows returned""" - where: v_player_elo_bool_exp - ): [v_player_elo!]! - - """ - fetch data from the table: "v_player_map_losses" - """ - v_player_map_losses( - """distinct select on columns""" - distinct_on: [v_player_map_losses_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_map_losses_order_by!] - - """filter the rows returned""" - where: v_player_map_losses_bool_exp - ): [v_player_map_losses!]! - - """ - fetch aggregated fields from the table: "v_player_map_losses" - """ - v_player_map_losses_aggregate( - """distinct select on columns""" - distinct_on: [v_player_map_losses_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_map_losses_order_by!] - - """filter the rows returned""" - where: v_player_map_losses_bool_exp - ): v_player_map_losses_aggregate! - - """ - fetch data from the table in a streaming manner: "v_player_map_losses" - """ - v_player_map_losses_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [v_player_map_losses_stream_cursor_input]! - - """filter the rows returned""" - where: v_player_map_losses_bool_exp - ): [v_player_map_losses!]! - - """ - fetch data from the table: "v_player_map_wins" - """ - v_player_map_wins( - """distinct select on columns""" - distinct_on: [v_player_map_wins_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_map_wins_order_by!] - - """filter the rows returned""" - where: v_player_map_wins_bool_exp - ): [v_player_map_wins!]! - - """ - fetch aggregated fields from the table: "v_player_map_wins" - """ - v_player_map_wins_aggregate( - """distinct select on columns""" - distinct_on: [v_player_map_wins_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_map_wins_order_by!] - - """filter the rows returned""" - where: v_player_map_wins_bool_exp - ): v_player_map_wins_aggregate! - - """ - fetch data from the table in a streaming manner: "v_player_map_wins" - """ - v_player_map_wins_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [v_player_map_wins_stream_cursor_input]! - - """filter the rows returned""" - where: v_player_map_wins_bool_exp - ): [v_player_map_wins!]! - - """ - fetch data from the table: "v_player_match_head_to_head" - """ - v_player_match_head_to_head( - """distinct select on columns""" - distinct_on: [v_player_match_head_to_head_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_match_head_to_head_order_by!] - - """filter the rows returned""" - where: v_player_match_head_to_head_bool_exp - ): [v_player_match_head_to_head!]! - - """ - fetch aggregated fields from the table: "v_player_match_head_to_head" - """ - v_player_match_head_to_head_aggregate( - """distinct select on columns""" - distinct_on: [v_player_match_head_to_head_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_match_head_to_head_order_by!] - - """filter the rows returned""" - where: v_player_match_head_to_head_bool_exp - ): v_player_match_head_to_head_aggregate! - - """ - fetch data from the table in a streaming manner: "v_player_match_head_to_head" - """ - v_player_match_head_to_head_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [v_player_match_head_to_head_stream_cursor_input]! - - """filter the rows returned""" - where: v_player_match_head_to_head_bool_exp - ): [v_player_match_head_to_head!]! - - """ - fetch data from the table: "v_player_match_map_hltv" - """ - v_player_match_map_hltv( - """distinct select on columns""" - distinct_on: [v_player_match_map_hltv_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_match_map_hltv_order_by!] - - """filter the rows returned""" - where: v_player_match_map_hltv_bool_exp - ): [v_player_match_map_hltv!]! - - """ - fetch aggregated fields from the table: "v_player_match_map_hltv" - """ - v_player_match_map_hltv_aggregate( - """distinct select on columns""" - distinct_on: [v_player_match_map_hltv_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_match_map_hltv_order_by!] - - """filter the rows returned""" - where: v_player_match_map_hltv_bool_exp - ): v_player_match_map_hltv_aggregate! - - """ - fetch data from the table in a streaming manner: "v_player_match_map_hltv" - """ - v_player_match_map_hltv_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [v_player_match_map_hltv_stream_cursor_input]! - - """filter the rows returned""" - where: v_player_match_map_hltv_bool_exp - ): [v_player_match_map_hltv!]! - - """ - fetch data from the table: "v_player_match_map_roles" - """ - v_player_match_map_roles( - """distinct select on columns""" - distinct_on: [v_player_match_map_roles_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_match_map_roles_order_by!] - - """filter the rows returned""" - where: v_player_match_map_roles_bool_exp - ): [v_player_match_map_roles!]! - - """ - fetch aggregated fields from the table: "v_player_match_map_roles" - """ - v_player_match_map_roles_aggregate( - """distinct select on columns""" - distinct_on: [v_player_match_map_roles_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_match_map_roles_order_by!] - - """filter the rows returned""" - where: v_player_match_map_roles_bool_exp - ): v_player_match_map_roles_aggregate! - - """ - fetch data from the table in a streaming manner: "v_player_match_map_roles" - """ - v_player_match_map_roles_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [v_player_match_map_roles_stream_cursor_input]! - - """filter the rows returned""" - where: v_player_match_map_roles_bool_exp - ): [v_player_match_map_roles!]! - - """ - fetch data from the table: "v_player_match_performance" - """ - v_player_match_performance( - """distinct select on columns""" - distinct_on: [v_player_match_performance_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_match_performance_order_by!] - - """filter the rows returned""" - where: v_player_match_performance_bool_exp - ): [v_player_match_performance!]! - - """ - fetch aggregated fields from the table: "v_player_match_performance" - """ - v_player_match_performance_aggregate( - """distinct select on columns""" - distinct_on: [v_player_match_performance_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_match_performance_order_by!] - - """filter the rows returned""" - where: v_player_match_performance_bool_exp - ): v_player_match_performance_aggregate! - - """ - fetch data from the table in a streaming manner: "v_player_match_performance" - """ - v_player_match_performance_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [v_player_match_performance_stream_cursor_input]! - - """filter the rows returned""" - where: v_player_match_performance_bool_exp - ): [v_player_match_performance!]! - - """ - fetch data from the table: "v_player_match_rating" - """ - v_player_match_rating( - """distinct select on columns""" - distinct_on: [v_player_match_rating_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_match_rating_order_by!] - - """filter the rows returned""" - where: v_player_match_rating_bool_exp - ): [v_player_match_rating!]! - - """ - fetch aggregated fields from the table: "v_player_match_rating" - """ - v_player_match_rating_aggregate( - """distinct select on columns""" - distinct_on: [v_player_match_rating_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_match_rating_order_by!] - - """filter the rows returned""" - where: v_player_match_rating_bool_exp - ): v_player_match_rating_aggregate! - - """ - fetch data from the table in a streaming manner: "v_player_match_rating" - """ - v_player_match_rating_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [v_player_match_rating_stream_cursor_input]! - - """filter the rows returned""" - where: v_player_match_rating_bool_exp - ): [v_player_match_rating!]! - - """ - fetch data from the table: "v_player_multi_kills" - """ - v_player_multi_kills( - """distinct select on columns""" - distinct_on: [v_player_multi_kills_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_multi_kills_order_by!] - - """filter the rows returned""" - where: v_player_multi_kills_bool_exp - ): [v_player_multi_kills!]! - - """ - fetch aggregated fields from the table: "v_player_multi_kills" - """ - v_player_multi_kills_aggregate( - """distinct select on columns""" - distinct_on: [v_player_multi_kills_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_multi_kills_order_by!] - - """filter the rows returned""" - where: v_player_multi_kills_bool_exp - ): v_player_multi_kills_aggregate! - - """ - fetch data from the table in a streaming manner: "v_player_multi_kills" - """ - v_player_multi_kills_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [v_player_multi_kills_stream_cursor_input]! - - """filter the rows returned""" - where: v_player_multi_kills_bool_exp - ): [v_player_multi_kills!]! - - """ - fetch data from the table: "v_player_queue_partners" - """ - v_player_queue_partners( - """distinct select on columns""" - distinct_on: [v_player_queue_partners_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_queue_partners_order_by!] - - """filter the rows returned""" - where: v_player_queue_partners_bool_exp - ): [v_player_queue_partners!]! - - """ - fetch aggregated fields from the table: "v_player_queue_partners" - """ - v_player_queue_partners_aggregate( - """distinct select on columns""" - distinct_on: [v_player_queue_partners_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_queue_partners_order_by!] - - """filter the rows returned""" - where: v_player_queue_partners_bool_exp - ): v_player_queue_partners_aggregate! - - """ - fetch data from the table in a streaming manner: "v_player_queue_partners" - """ - v_player_queue_partners_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [v_player_queue_partners_stream_cursor_input]! - - """filter the rows returned""" - where: v_player_queue_partners_bool_exp - ): [v_player_queue_partners!]! - - """ - fetch data from the table: "v_player_weapon_damage" - """ - v_player_weapon_damage( - """distinct select on columns""" - distinct_on: [v_player_weapon_damage_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_weapon_damage_order_by!] - - """filter the rows returned""" - where: v_player_weapon_damage_bool_exp - ): [v_player_weapon_damage!]! - - """ - fetch aggregated fields from the table: "v_player_weapon_damage" - """ - v_player_weapon_damage_aggregate( - """distinct select on columns""" - distinct_on: [v_player_weapon_damage_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_weapon_damage_order_by!] - - """filter the rows returned""" - where: v_player_weapon_damage_bool_exp - ): v_player_weapon_damage_aggregate! - - """ - fetch data from the table in a streaming manner: "v_player_weapon_damage" - """ - v_player_weapon_damage_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [v_player_weapon_damage_stream_cursor_input]! - - """filter the rows returned""" - where: v_player_weapon_damage_bool_exp - ): [v_player_weapon_damage!]! - - """ - fetch data from the table: "v_player_weapon_kills" - """ - v_player_weapon_kills( - """distinct select on columns""" - distinct_on: [v_player_weapon_kills_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_weapon_kills_order_by!] - - """filter the rows returned""" - where: v_player_weapon_kills_bool_exp - ): [v_player_weapon_kills!]! - - """ - fetch aggregated fields from the table: "v_player_weapon_kills" - """ - v_player_weapon_kills_aggregate( - """distinct select on columns""" - distinct_on: [v_player_weapon_kills_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_player_weapon_kills_order_by!] - - """filter the rows returned""" - where: v_player_weapon_kills_bool_exp - ): v_player_weapon_kills_aggregate! - - """ - fetch data from the table in a streaming manner: "v_player_weapon_kills" - """ - v_player_weapon_kills_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [v_player_weapon_kills_stream_cursor_input]! - - """filter the rows returned""" - where: v_player_weapon_kills_bool_exp - ): [v_player_weapon_kills!]! - - """ - fetch data from the table: "v_pool_maps" - """ - v_pool_maps( - """distinct select on columns""" - distinct_on: [v_pool_maps_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_pool_maps_order_by!] - - """filter the rows returned""" - where: v_pool_maps_bool_exp - ): [v_pool_maps!]! - - """ - fetch aggregated fields from the table: "v_pool_maps" - """ - v_pool_maps_aggregate( - """distinct select on columns""" - distinct_on: [v_pool_maps_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_pool_maps_order_by!] - - """filter the rows returned""" - where: v_pool_maps_bool_exp - ): v_pool_maps_aggregate! - - """ - fetch data from the table in a streaming manner: "v_pool_maps" - """ - v_pool_maps_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [v_pool_maps_stream_cursor_input]! - - """filter the rows returned""" - where: v_pool_maps_bool_exp - ): [v_pool_maps!]! - - """ - fetch data from the table: "v_steam_account_pool_status" - """ - v_steam_account_pool_status( - """distinct select on columns""" - distinct_on: [v_steam_account_pool_status_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_steam_account_pool_status_order_by!] - - """filter the rows returned""" - where: v_steam_account_pool_status_bool_exp - ): [v_steam_account_pool_status!]! - - """ - fetch aggregated fields from the table: "v_steam_account_pool_status" - """ - v_steam_account_pool_status_aggregate( - """distinct select on columns""" - distinct_on: [v_steam_account_pool_status_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_steam_account_pool_status_order_by!] - - """filter the rows returned""" - where: v_steam_account_pool_status_bool_exp - ): v_steam_account_pool_status_aggregate! - - """ - fetch data from the table in a streaming manner: "v_steam_account_pool_status" - """ - v_steam_account_pool_status_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [v_steam_account_pool_status_stream_cursor_input]! - - """filter the rows returned""" - where: v_steam_account_pool_status_bool_exp - ): [v_steam_account_pool_status!]! - - """ - fetch data from the table: "v_team_ranks" - """ - v_team_ranks( - """distinct select on columns""" - distinct_on: [v_team_ranks_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_team_ranks_order_by!] - - """filter the rows returned""" - where: v_team_ranks_bool_exp - ): [v_team_ranks!]! - - """ - fetch aggregated fields from the table: "v_team_ranks" - """ - v_team_ranks_aggregate( - """distinct select on columns""" - distinct_on: [v_team_ranks_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_team_ranks_order_by!] - - """filter the rows returned""" - where: v_team_ranks_bool_exp - ): v_team_ranks_aggregate! - - """ - fetch data from the table in a streaming manner: "v_team_ranks" - """ - v_team_ranks_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [v_team_ranks_stream_cursor_input]! - - """filter the rows returned""" - where: v_team_ranks_bool_exp - ): [v_team_ranks!]! - - """ - fetch data from the table: "v_team_reputation" - """ - v_team_reputation( - """distinct select on columns""" - distinct_on: [v_team_reputation_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_team_reputation_order_by!] - - """filter the rows returned""" - where: v_team_reputation_bool_exp - ): [v_team_reputation!]! - - """ - fetch aggregated fields from the table: "v_team_reputation" - """ - v_team_reputation_aggregate( - """distinct select on columns""" - distinct_on: [v_team_reputation_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_team_reputation_order_by!] - - """filter the rows returned""" - where: v_team_reputation_bool_exp - ): v_team_reputation_aggregate! - - """ - fetch data from the table in a streaming manner: "v_team_reputation" - """ - v_team_reputation_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [v_team_reputation_stream_cursor_input]! - - """filter the rows returned""" - where: v_team_reputation_bool_exp - ): [v_team_reputation!]! - - """ - fetch data from the table: "v_team_stage_results" - """ - v_team_stage_results( - """distinct select on columns""" - distinct_on: [v_team_stage_results_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_team_stage_results_order_by!] - - """filter the rows returned""" - where: v_team_stage_results_bool_exp - ): [v_team_stage_results!]! - - """ - fetch aggregated fields from the table: "v_team_stage_results" - """ - v_team_stage_results_aggregate( - """distinct select on columns""" - distinct_on: [v_team_stage_results_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_team_stage_results_order_by!] - - """filter the rows returned""" - where: v_team_stage_results_bool_exp - ): v_team_stage_results_aggregate! - - """ - fetch data from the table: "v_team_stage_results" using primary key columns - """ - v_team_stage_results_by_pk(tournament_stage_id: uuid!, tournament_team_id: uuid!): v_team_stage_results - - """ - fetch data from the table in a streaming manner: "v_team_stage_results" - """ - v_team_stage_results_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [v_team_stage_results_stream_cursor_input]! - - """filter the rows returned""" - where: v_team_stage_results_bool_exp - ): [v_team_stage_results!]! - - """ - fetch data from the table: "v_team_tournament_results" - """ - v_team_tournament_results( - """distinct select on columns""" - distinct_on: [v_team_tournament_results_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_team_tournament_results_order_by!] - - """filter the rows returned""" - where: v_team_tournament_results_bool_exp - ): [v_team_tournament_results!]! - - """ - fetch aggregated fields from the table: "v_team_tournament_results" - """ - v_team_tournament_results_aggregate( - """distinct select on columns""" - distinct_on: [v_team_tournament_results_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_team_tournament_results_order_by!] - - """filter the rows returned""" - where: v_team_tournament_results_bool_exp - ): v_team_tournament_results_aggregate! - - """ - fetch data from the table in a streaming manner: "v_team_tournament_results" - """ - v_team_tournament_results_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [v_team_tournament_results_stream_cursor_input]! - - """filter the rows returned""" - where: v_team_tournament_results_bool_exp - ): [v_team_tournament_results!]! - - """ - fetch data from the table: "v_tournament_player_stats" - """ - v_tournament_player_stats( - """distinct select on columns""" - distinct_on: [v_tournament_player_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_tournament_player_stats_order_by!] - - """filter the rows returned""" - where: v_tournament_player_stats_bool_exp - ): [v_tournament_player_stats!]! - - """ - fetch aggregated fields from the table: "v_tournament_player_stats" - """ - v_tournament_player_stats_aggregate( - """distinct select on columns""" - distinct_on: [v_tournament_player_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_tournament_player_stats_order_by!] - - """filter the rows returned""" - where: v_tournament_player_stats_bool_exp - ): v_tournament_player_stats_aggregate! - - """ - fetch data from the table in a streaming manner: "v_tournament_player_stats" - """ - v_tournament_player_stats_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [v_tournament_player_stats_stream_cursor_input]! - - """filter the rows returned""" - where: v_tournament_player_stats_bool_exp - ): [v_tournament_player_stats!]! -} - -""" -columns and relationships of "system_alerts" -""" -type system_alerts { - created_at: timestamptz! - created_by: bigint - dismissible: Boolean! - expires_at: timestamptz - id: uuid! - is_active: Boolean! - message: String! - title: String - type: e_system_alert_types_enum! - updated_at: timestamptz! -} - -""" -aggregated selection of "system_alerts" -""" -type system_alerts_aggregate { - aggregate: system_alerts_aggregate_fields - nodes: [system_alerts!]! -} - -""" -aggregate fields of "system_alerts" -""" -type system_alerts_aggregate_fields { - avg: system_alerts_avg_fields - count(columns: [system_alerts_select_column!], distinct: Boolean): Int! - max: system_alerts_max_fields - min: system_alerts_min_fields - stddev: system_alerts_stddev_fields - stddev_pop: system_alerts_stddev_pop_fields - stddev_samp: system_alerts_stddev_samp_fields - sum: system_alerts_sum_fields - var_pop: system_alerts_var_pop_fields - var_samp: system_alerts_var_samp_fields - variance: system_alerts_variance_fields -} - -"""aggregate avg on columns""" -type system_alerts_avg_fields { - created_by: Float -} - -""" -Boolean expression to filter rows from the table "system_alerts". All fields are combined with a logical 'AND'. -""" -input system_alerts_bool_exp { - _and: [system_alerts_bool_exp!] - _not: system_alerts_bool_exp - _or: [system_alerts_bool_exp!] - created_at: timestamptz_comparison_exp - created_by: bigint_comparison_exp - dismissible: Boolean_comparison_exp - expires_at: timestamptz_comparison_exp - id: uuid_comparison_exp - is_active: Boolean_comparison_exp - message: String_comparison_exp - title: String_comparison_exp - type: e_system_alert_types_enum_comparison_exp - updated_at: timestamptz_comparison_exp -} - -""" -unique or primary key constraints on table "system_alerts" -""" -enum system_alerts_constraint { - """ - unique or primary key constraint on columns "id" - """ - system_alerts_pkey -} - -""" -input type for incrementing numeric columns in table "system_alerts" -""" -input system_alerts_inc_input { - created_by: bigint -} - -""" -input type for inserting data into table "system_alerts" -""" -input system_alerts_insert_input { - created_at: timestamptz - created_by: bigint - dismissible: Boolean - expires_at: timestamptz - id: uuid - is_active: Boolean - message: String - title: String - type: e_system_alert_types_enum - updated_at: timestamptz -} - -"""aggregate max on columns""" -type system_alerts_max_fields { - created_at: timestamptz - created_by: bigint - expires_at: timestamptz - id: uuid - message: String - title: String - updated_at: timestamptz -} - -"""aggregate min on columns""" -type system_alerts_min_fields { - created_at: timestamptz - created_by: bigint - expires_at: timestamptz - id: uuid - message: String - title: String - updated_at: timestamptz -} - -""" -response of any mutation on the table "system_alerts" -""" -type system_alerts_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [system_alerts!]! -} - -""" -on_conflict condition type for table "system_alerts" -""" -input system_alerts_on_conflict { - constraint: system_alerts_constraint! - update_columns: [system_alerts_update_column!]! = [] - where: system_alerts_bool_exp -} - -"""Ordering options when selecting data from "system_alerts".""" -input system_alerts_order_by { - created_at: order_by - created_by: order_by - dismissible: order_by - expires_at: order_by - id: order_by - is_active: order_by - message: order_by - title: order_by - type: order_by - updated_at: order_by -} - -"""primary key columns input for table: system_alerts""" -input system_alerts_pk_columns_input { - id: uuid! -} - -""" -select columns of table "system_alerts" -""" -enum system_alerts_select_column { - """column name""" - created_at - - """column name""" - created_by - - """column name""" - dismissible - - """column name""" - expires_at - - """column name""" - id - - """column name""" - is_active - - """column name""" - message - - """column name""" - title - - """column name""" - type - - """column name""" - updated_at -} - -""" -input type for updating data in table "system_alerts" -""" -input system_alerts_set_input { - created_at: timestamptz - created_by: bigint - dismissible: Boolean - expires_at: timestamptz - id: uuid - is_active: Boolean - message: String - title: String - type: e_system_alert_types_enum - updated_at: timestamptz -} - -"""aggregate stddev on columns""" -type system_alerts_stddev_fields { - created_by: Float -} - -"""aggregate stddev_pop on columns""" -type system_alerts_stddev_pop_fields { - created_by: Float -} - -"""aggregate stddev_samp on columns""" -type system_alerts_stddev_samp_fields { - created_by: Float -} - -""" -Streaming cursor of the table "system_alerts" -""" -input system_alerts_stream_cursor_input { - """Stream column input with initial value""" - initial_value: system_alerts_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input system_alerts_stream_cursor_value_input { - created_at: timestamptz - created_by: bigint - dismissible: Boolean - expires_at: timestamptz - id: uuid - is_active: Boolean - message: String - title: String - type: e_system_alert_types_enum - updated_at: timestamptz -} - -"""aggregate sum on columns""" -type system_alerts_sum_fields { - created_by: bigint -} - -""" -update columns of table "system_alerts" -""" -enum system_alerts_update_column { - """column name""" - created_at - - """column name""" - created_by - - """column name""" - dismissible - - """column name""" - expires_at - - """column name""" - id - - """column name""" - is_active - - """column name""" - message - - """column name""" - title - - """column name""" - type - - """column name""" - updated_at -} - -input system_alerts_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: system_alerts_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: system_alerts_set_input - - """filter the rows which have to be updated""" - where: system_alerts_bool_exp! -} - -"""aggregate var_pop on columns""" -type system_alerts_var_pop_fields { - created_by: Float -} - -"""aggregate var_samp on columns""" -type system_alerts_var_samp_fields { - created_by: Float -} - -"""aggregate variance on columns""" -type system_alerts_variance_fields { - created_by: Float -} - -""" -columns and relationships of "team_invites" -""" -type team_invites { - created_at: timestamptz! - id: uuid! - - """An object relationship""" - invited_by: players! - invited_by_player_steam_id: bigint! - - """An object relationship""" - player: players! - steam_id: bigint! - - """An object relationship""" - team: teams! - team_id: uuid! -} - -""" -aggregated selection of "team_invites" -""" -type team_invites_aggregate { - aggregate: team_invites_aggregate_fields - nodes: [team_invites!]! -} - -input team_invites_aggregate_bool_exp { - count: team_invites_aggregate_bool_exp_count -} - -input team_invites_aggregate_bool_exp_count { - arguments: [team_invites_select_column!] - distinct: Boolean - filter: team_invites_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "team_invites" -""" -type team_invites_aggregate_fields { - avg: team_invites_avg_fields - count(columns: [team_invites_select_column!], distinct: Boolean): Int! - max: team_invites_max_fields - min: team_invites_min_fields - stddev: team_invites_stddev_fields - stddev_pop: team_invites_stddev_pop_fields - stddev_samp: team_invites_stddev_samp_fields - sum: team_invites_sum_fields - var_pop: team_invites_var_pop_fields - var_samp: team_invites_var_samp_fields - variance: team_invites_variance_fields -} - -""" -order by aggregate values of table "team_invites" -""" -input team_invites_aggregate_order_by { - avg: team_invites_avg_order_by - count: order_by - max: team_invites_max_order_by - min: team_invites_min_order_by - stddev: team_invites_stddev_order_by - stddev_pop: team_invites_stddev_pop_order_by - stddev_samp: team_invites_stddev_samp_order_by - sum: team_invites_sum_order_by - var_pop: team_invites_var_pop_order_by - var_samp: team_invites_var_samp_order_by - variance: team_invites_variance_order_by -} - -""" -input type for inserting array relation for remote table "team_invites" -""" -input team_invites_arr_rel_insert_input { - data: [team_invites_insert_input!]! - - """upsert condition""" - on_conflict: team_invites_on_conflict -} - -"""aggregate avg on columns""" -type team_invites_avg_fields { - invited_by_player_steam_id: Float - steam_id: Float -} - -""" -order by avg() on columns of table "team_invites" -""" -input team_invites_avg_order_by { - invited_by_player_steam_id: order_by - steam_id: order_by -} - -""" -Boolean expression to filter rows from the table "team_invites". All fields are combined with a logical 'AND'. -""" -input team_invites_bool_exp { - _and: [team_invites_bool_exp!] - _not: team_invites_bool_exp - _or: [team_invites_bool_exp!] - created_at: timestamptz_comparison_exp - id: uuid_comparison_exp - invited_by: players_bool_exp - invited_by_player_steam_id: bigint_comparison_exp - player: players_bool_exp - steam_id: bigint_comparison_exp - team: teams_bool_exp - team_id: uuid_comparison_exp -} - -""" -unique or primary key constraints on table "team_invites" -""" -enum team_invites_constraint { - """ - unique or primary key constraint on columns "id" - """ - team_invites_pkey - - """ - unique or primary key constraint on columns "steam_id", "team_id" - """ - team_invites_team_id_steam_id_key -} - -""" -input type for incrementing numeric columns in table "team_invites" -""" -input team_invites_inc_input { - invited_by_player_steam_id: bigint - steam_id: bigint -} - -""" -input type for inserting data into table "team_invites" -""" -input team_invites_insert_input { - created_at: timestamptz - id: uuid - invited_by: players_obj_rel_insert_input - invited_by_player_steam_id: bigint - player: players_obj_rel_insert_input - steam_id: bigint - team: teams_obj_rel_insert_input - team_id: uuid -} - -"""aggregate max on columns""" -type team_invites_max_fields { - created_at: timestamptz - id: uuid - invited_by_player_steam_id: bigint - steam_id: bigint - team_id: uuid -} - -""" -order by max() on columns of table "team_invites" -""" -input team_invites_max_order_by { - created_at: order_by - id: order_by - invited_by_player_steam_id: order_by - steam_id: order_by - team_id: order_by -} - -"""aggregate min on columns""" -type team_invites_min_fields { - created_at: timestamptz - id: uuid - invited_by_player_steam_id: bigint - steam_id: bigint - team_id: uuid -} - -""" -order by min() on columns of table "team_invites" -""" -input team_invites_min_order_by { - created_at: order_by - id: order_by - invited_by_player_steam_id: order_by - steam_id: order_by - team_id: order_by -} - -""" -response of any mutation on the table "team_invites" -""" -type team_invites_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [team_invites!]! -} - -""" -on_conflict condition type for table "team_invites" -""" -input team_invites_on_conflict { - constraint: team_invites_constraint! - update_columns: [team_invites_update_column!]! = [] - where: team_invites_bool_exp -} - -"""Ordering options when selecting data from "team_invites".""" -input team_invites_order_by { - created_at: order_by - id: order_by - invited_by: players_order_by - invited_by_player_steam_id: order_by - player: players_order_by - steam_id: order_by - team: teams_order_by - team_id: order_by -} - -"""primary key columns input for table: team_invites""" -input team_invites_pk_columns_input { - id: uuid! -} - -""" -select columns of table "team_invites" -""" -enum team_invites_select_column { - """column name""" - created_at - - """column name""" - id - - """column name""" - invited_by_player_steam_id - - """column name""" - steam_id - - """column name""" - team_id -} - -""" -input type for updating data in table "team_invites" -""" -input team_invites_set_input { - created_at: timestamptz - id: uuid - invited_by_player_steam_id: bigint - steam_id: bigint - team_id: uuid -} - -"""aggregate stddev on columns""" -type team_invites_stddev_fields { - invited_by_player_steam_id: Float - steam_id: Float -} - -""" -order by stddev() on columns of table "team_invites" -""" -input team_invites_stddev_order_by { - invited_by_player_steam_id: order_by - steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type team_invites_stddev_pop_fields { - invited_by_player_steam_id: Float - steam_id: Float -} - -""" -order by stddev_pop() on columns of table "team_invites" -""" -input team_invites_stddev_pop_order_by { - invited_by_player_steam_id: order_by - steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type team_invites_stddev_samp_fields { - invited_by_player_steam_id: Float - steam_id: Float -} - -""" -order by stddev_samp() on columns of table "team_invites" -""" -input team_invites_stddev_samp_order_by { - invited_by_player_steam_id: order_by - steam_id: order_by -} - -""" -Streaming cursor of the table "team_invites" -""" -input team_invites_stream_cursor_input { - """Stream column input with initial value""" - initial_value: team_invites_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input team_invites_stream_cursor_value_input { - created_at: timestamptz - id: uuid - invited_by_player_steam_id: bigint - steam_id: bigint - team_id: uuid -} - -"""aggregate sum on columns""" -type team_invites_sum_fields { - invited_by_player_steam_id: bigint - steam_id: bigint -} - -""" -order by sum() on columns of table "team_invites" -""" -input team_invites_sum_order_by { - invited_by_player_steam_id: order_by - steam_id: order_by -} - -""" -update columns of table "team_invites" -""" -enum team_invites_update_column { - """column name""" - created_at - - """column name""" - id - - """column name""" - invited_by_player_steam_id - - """column name""" - steam_id - - """column name""" - team_id -} - -input team_invites_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: team_invites_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: team_invites_set_input - - """filter the rows which have to be updated""" - where: team_invites_bool_exp! -} - -"""aggregate var_pop on columns""" -type team_invites_var_pop_fields { - invited_by_player_steam_id: Float - steam_id: Float -} - -""" -order by var_pop() on columns of table "team_invites" -""" -input team_invites_var_pop_order_by { - invited_by_player_steam_id: order_by - steam_id: order_by -} - -"""aggregate var_samp on columns""" -type team_invites_var_samp_fields { - invited_by_player_steam_id: Float - steam_id: Float -} - -""" -order by var_samp() on columns of table "team_invites" -""" -input team_invites_var_samp_order_by { - invited_by_player_steam_id: order_by - steam_id: order_by -} - -"""aggregate variance on columns""" -type team_invites_variance_fields { - invited_by_player_steam_id: Float - steam_id: Float -} - -""" -order by variance() on columns of table "team_invites" -""" -input team_invites_variance_order_by { - invited_by_player_steam_id: order_by - steam_id: order_by -} - -""" -columns and relationships of "team_roster" -""" -type team_roster { - coach: Boolean! - - """An object relationship""" - player: players! - player_steam_id: bigint! - role: e_team_roles_enum! - roster_image_url: String - status: e_team_roster_statuses_enum! - - """An object relationship""" - team: teams! - team_id: uuid! -} - -""" -aggregated selection of "team_roster" -""" -type team_roster_aggregate { - aggregate: team_roster_aggregate_fields - nodes: [team_roster!]! -} - -input team_roster_aggregate_bool_exp { - bool_and: team_roster_aggregate_bool_exp_bool_and - bool_or: team_roster_aggregate_bool_exp_bool_or - count: team_roster_aggregate_bool_exp_count -} - -input team_roster_aggregate_bool_exp_bool_and { - arguments: team_roster_select_column_team_roster_aggregate_bool_exp_bool_and_arguments_columns! - distinct: Boolean - filter: team_roster_bool_exp - predicate: Boolean_comparison_exp! -} - -input team_roster_aggregate_bool_exp_bool_or { - arguments: team_roster_select_column_team_roster_aggregate_bool_exp_bool_or_arguments_columns! - distinct: Boolean - filter: team_roster_bool_exp - predicate: Boolean_comparison_exp! -} - -input team_roster_aggregate_bool_exp_count { - arguments: [team_roster_select_column!] - distinct: Boolean - filter: team_roster_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "team_roster" -""" -type team_roster_aggregate_fields { - avg: team_roster_avg_fields - count(columns: [team_roster_select_column!], distinct: Boolean): Int! - max: team_roster_max_fields - min: team_roster_min_fields - stddev: team_roster_stddev_fields - stddev_pop: team_roster_stddev_pop_fields - stddev_samp: team_roster_stddev_samp_fields - sum: team_roster_sum_fields - var_pop: team_roster_var_pop_fields - var_samp: team_roster_var_samp_fields - variance: team_roster_variance_fields -} - -""" -order by aggregate values of table "team_roster" -""" -input team_roster_aggregate_order_by { - avg: team_roster_avg_order_by - count: order_by - max: team_roster_max_order_by - min: team_roster_min_order_by - stddev: team_roster_stddev_order_by - stddev_pop: team_roster_stddev_pop_order_by - stddev_samp: team_roster_stddev_samp_order_by - sum: team_roster_sum_order_by - var_pop: team_roster_var_pop_order_by - var_samp: team_roster_var_samp_order_by - variance: team_roster_variance_order_by -} - -""" -input type for inserting array relation for remote table "team_roster" -""" -input team_roster_arr_rel_insert_input { - data: [team_roster_insert_input!]! - - """upsert condition""" - on_conflict: team_roster_on_conflict -} - -"""aggregate avg on columns""" -type team_roster_avg_fields { - player_steam_id: Float -} - -""" -order by avg() on columns of table "team_roster" -""" -input team_roster_avg_order_by { - player_steam_id: order_by -} - -""" -Boolean expression to filter rows from the table "team_roster". All fields are combined with a logical 'AND'. -""" -input team_roster_bool_exp { - _and: [team_roster_bool_exp!] - _not: team_roster_bool_exp - _or: [team_roster_bool_exp!] - coach: Boolean_comparison_exp - player: players_bool_exp - player_steam_id: bigint_comparison_exp - role: e_team_roles_enum_comparison_exp - roster_image_url: String_comparison_exp - status: e_team_roster_statuses_enum_comparison_exp - team: teams_bool_exp - team_id: uuid_comparison_exp -} - -""" -unique or primary key constraints on table "team_roster" -""" -enum team_roster_constraint { - """ - unique or primary key constraint on columns "player_steam_id", "team_id" - """ - team_members_pkey -} - -""" -input type for incrementing numeric columns in table "team_roster" -""" -input team_roster_inc_input { - player_steam_id: bigint -} - -""" -input type for inserting data into table "team_roster" -""" -input team_roster_insert_input { - coach: Boolean - player: players_obj_rel_insert_input - player_steam_id: bigint - role: e_team_roles_enum - roster_image_url: String - status: e_team_roster_statuses_enum - team: teams_obj_rel_insert_input - team_id: uuid -} - -"""aggregate max on columns""" -type team_roster_max_fields { - player_steam_id: bigint - roster_image_url: String - team_id: uuid -} - -""" -order by max() on columns of table "team_roster" -""" -input team_roster_max_order_by { - player_steam_id: order_by - roster_image_url: order_by - team_id: order_by -} - -"""aggregate min on columns""" -type team_roster_min_fields { - player_steam_id: bigint - roster_image_url: String - team_id: uuid -} - -""" -order by min() on columns of table "team_roster" -""" -input team_roster_min_order_by { - player_steam_id: order_by - roster_image_url: order_by - team_id: order_by -} - -""" -response of any mutation on the table "team_roster" -""" -type team_roster_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [team_roster!]! -} - -""" -on_conflict condition type for table "team_roster" -""" -input team_roster_on_conflict { - constraint: team_roster_constraint! - update_columns: [team_roster_update_column!]! = [] - where: team_roster_bool_exp -} - -"""Ordering options when selecting data from "team_roster".""" -input team_roster_order_by { - coach: order_by - player: players_order_by - player_steam_id: order_by - role: order_by - roster_image_url: order_by - status: order_by - team: teams_order_by - team_id: order_by -} - -"""primary key columns input for table: team_roster""" -input team_roster_pk_columns_input { - player_steam_id: bigint! - team_id: uuid! -} - -""" -select columns of table "team_roster" -""" -enum team_roster_select_column { - """column name""" - coach - - """column name""" - player_steam_id - - """column name""" - role - - """column name""" - roster_image_url - - """column name""" - status - - """column name""" - team_id -} - -""" -select "team_roster_aggregate_bool_exp_bool_and_arguments_columns" columns of table "team_roster" -""" -enum team_roster_select_column_team_roster_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - coach -} - -""" -select "team_roster_aggregate_bool_exp_bool_or_arguments_columns" columns of table "team_roster" -""" -enum team_roster_select_column_team_roster_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - coach -} - -""" -input type for updating data in table "team_roster" -""" -input team_roster_set_input { - coach: Boolean - player_steam_id: bigint - role: e_team_roles_enum - roster_image_url: String - status: e_team_roster_statuses_enum - team_id: uuid -} - -"""aggregate stddev on columns""" -type team_roster_stddev_fields { - player_steam_id: Float -} - -""" -order by stddev() on columns of table "team_roster" -""" -input team_roster_stddev_order_by { - player_steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type team_roster_stddev_pop_fields { - player_steam_id: Float -} - -""" -order by stddev_pop() on columns of table "team_roster" -""" -input team_roster_stddev_pop_order_by { - player_steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type team_roster_stddev_samp_fields { - player_steam_id: Float -} - -""" -order by stddev_samp() on columns of table "team_roster" -""" -input team_roster_stddev_samp_order_by { - player_steam_id: order_by -} - -""" -Streaming cursor of the table "team_roster" -""" -input team_roster_stream_cursor_input { - """Stream column input with initial value""" - initial_value: team_roster_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input team_roster_stream_cursor_value_input { - coach: Boolean - player_steam_id: bigint - role: e_team_roles_enum - roster_image_url: String - status: e_team_roster_statuses_enum - team_id: uuid -} - -"""aggregate sum on columns""" -type team_roster_sum_fields { - player_steam_id: bigint -} - -""" -order by sum() on columns of table "team_roster" -""" -input team_roster_sum_order_by { - player_steam_id: order_by -} - -""" -update columns of table "team_roster" -""" -enum team_roster_update_column { - """column name""" - coach - - """column name""" - player_steam_id - - """column name""" - role - - """column name""" - roster_image_url - - """column name""" - status - - """column name""" - team_id -} - -input team_roster_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: team_roster_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: team_roster_set_input - - """filter the rows which have to be updated""" - where: team_roster_bool_exp! -} - -"""aggregate var_pop on columns""" -type team_roster_var_pop_fields { - player_steam_id: Float -} - -""" -order by var_pop() on columns of table "team_roster" -""" -input team_roster_var_pop_order_by { - player_steam_id: order_by -} - -"""aggregate var_samp on columns""" -type team_roster_var_samp_fields { - player_steam_id: Float -} - -""" -order by var_samp() on columns of table "team_roster" -""" -input team_roster_var_samp_order_by { - player_steam_id: order_by -} - -"""aggregate variance on columns""" -type team_roster_variance_fields { - player_steam_id: Float -} - -""" -order by variance() on columns of table "team_roster" -""" -input team_roster_variance_order_by { - player_steam_id: order_by -} - -""" -columns and relationships of "team_scrim_alerts" -""" -type team_scrim_alerts { - created_at: timestamptz! - elo_max: Int - elo_min: Int - enabled: Boolean! - id: uuid! - last_notified_at: timestamptz - regions: [String!]! - - """An object relationship""" - team: teams! - team_id: uuid! -} - -""" -aggregated selection of "team_scrim_alerts" -""" -type team_scrim_alerts_aggregate { - aggregate: team_scrim_alerts_aggregate_fields - nodes: [team_scrim_alerts!]! -} - -""" -aggregate fields of "team_scrim_alerts" -""" -type team_scrim_alerts_aggregate_fields { - avg: team_scrim_alerts_avg_fields - count(columns: [team_scrim_alerts_select_column!], distinct: Boolean): Int! - max: team_scrim_alerts_max_fields - min: team_scrim_alerts_min_fields - stddev: team_scrim_alerts_stddev_fields - stddev_pop: team_scrim_alerts_stddev_pop_fields - stddev_samp: team_scrim_alerts_stddev_samp_fields - sum: team_scrim_alerts_sum_fields - var_pop: team_scrim_alerts_var_pop_fields - var_samp: team_scrim_alerts_var_samp_fields - variance: team_scrim_alerts_variance_fields -} - -"""aggregate avg on columns""" -type team_scrim_alerts_avg_fields { - elo_max: Float - elo_min: Float -} - -""" -Boolean expression to filter rows from the table "team_scrim_alerts". All fields are combined with a logical 'AND'. -""" -input team_scrim_alerts_bool_exp { - _and: [team_scrim_alerts_bool_exp!] - _not: team_scrim_alerts_bool_exp - _or: [team_scrim_alerts_bool_exp!] - created_at: timestamptz_comparison_exp - elo_max: Int_comparison_exp - elo_min: Int_comparison_exp - enabled: Boolean_comparison_exp - id: uuid_comparison_exp - last_notified_at: timestamptz_comparison_exp - regions: String_array_comparison_exp - team: teams_bool_exp - team_id: uuid_comparison_exp -} - -""" -unique or primary key constraints on table "team_scrim_alerts" -""" -enum team_scrim_alerts_constraint { - """ - unique or primary key constraint on columns "id" - """ - team_scrim_alerts_pkey -} - -""" -input type for incrementing numeric columns in table "team_scrim_alerts" -""" -input team_scrim_alerts_inc_input { - elo_max: Int - elo_min: Int -} - -""" -input type for inserting data into table "team_scrim_alerts" -""" -input team_scrim_alerts_insert_input { - created_at: timestamptz - elo_max: Int - elo_min: Int - enabled: Boolean - id: uuid - last_notified_at: timestamptz - regions: [String!] - team: teams_obj_rel_insert_input - team_id: uuid -} - -"""aggregate max on columns""" -type team_scrim_alerts_max_fields { - created_at: timestamptz - elo_max: Int - elo_min: Int - id: uuid - last_notified_at: timestamptz - regions: [String!] - team_id: uuid -} - -"""aggregate min on columns""" -type team_scrim_alerts_min_fields { - created_at: timestamptz - elo_max: Int - elo_min: Int - id: uuid - last_notified_at: timestamptz - regions: [String!] - team_id: uuid -} - -""" -response of any mutation on the table "team_scrim_alerts" -""" -type team_scrim_alerts_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [team_scrim_alerts!]! -} - -""" -on_conflict condition type for table "team_scrim_alerts" -""" -input team_scrim_alerts_on_conflict { - constraint: team_scrim_alerts_constraint! - update_columns: [team_scrim_alerts_update_column!]! = [] - where: team_scrim_alerts_bool_exp -} - -"""Ordering options when selecting data from "team_scrim_alerts".""" -input team_scrim_alerts_order_by { - created_at: order_by - elo_max: order_by - elo_min: order_by - enabled: order_by - id: order_by - last_notified_at: order_by - regions: order_by - team: teams_order_by - team_id: order_by -} - -"""primary key columns input for table: team_scrim_alerts""" -input team_scrim_alerts_pk_columns_input { - id: uuid! -} - -""" -select columns of table "team_scrim_alerts" -""" -enum team_scrim_alerts_select_column { - """column name""" - created_at - - """column name""" - elo_max - - """column name""" - elo_min - - """column name""" - enabled - - """column name""" - id - - """column name""" - last_notified_at - - """column name""" - regions - - """column name""" - team_id -} - -""" -input type for updating data in table "team_scrim_alerts" -""" -input team_scrim_alerts_set_input { - created_at: timestamptz - elo_max: Int - elo_min: Int - enabled: Boolean - id: uuid - last_notified_at: timestamptz - regions: [String!] - team_id: uuid -} - -"""aggregate stddev on columns""" -type team_scrim_alerts_stddev_fields { - elo_max: Float - elo_min: Float -} - -"""aggregate stddev_pop on columns""" -type team_scrim_alerts_stddev_pop_fields { - elo_max: Float - elo_min: Float -} - -"""aggregate stddev_samp on columns""" -type team_scrim_alerts_stddev_samp_fields { - elo_max: Float - elo_min: Float -} - -""" -Streaming cursor of the table "team_scrim_alerts" -""" -input team_scrim_alerts_stream_cursor_input { - """Stream column input with initial value""" - initial_value: team_scrim_alerts_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input team_scrim_alerts_stream_cursor_value_input { - created_at: timestamptz - elo_max: Int - elo_min: Int - enabled: Boolean - id: uuid - last_notified_at: timestamptz - regions: [String!] - team_id: uuid -} - -"""aggregate sum on columns""" -type team_scrim_alerts_sum_fields { - elo_max: Int - elo_min: Int -} - -""" -update columns of table "team_scrim_alerts" -""" -enum team_scrim_alerts_update_column { - """column name""" - created_at - - """column name""" - elo_max - - """column name""" - elo_min - - """column name""" - enabled - - """column name""" - id - - """column name""" - last_notified_at - - """column name""" - regions - - """column name""" - team_id -} - -input team_scrim_alerts_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: team_scrim_alerts_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: team_scrim_alerts_set_input - - """filter the rows which have to be updated""" - where: team_scrim_alerts_bool_exp! -} - -"""aggregate var_pop on columns""" -type team_scrim_alerts_var_pop_fields { - elo_max: Float - elo_min: Float -} - -"""aggregate var_samp on columns""" -type team_scrim_alerts_var_samp_fields { - elo_max: Float - elo_min: Float -} - -"""aggregate variance on columns""" -type team_scrim_alerts_variance_fields { - elo_max: Float - elo_min: Float -} - -""" -columns and relationships of "team_scrim_availability" -""" -type team_scrim_availability { - created_at: timestamptz! - ends_at: timestamptz! - id: uuid! - recurring_weekly: Boolean! - starts_at: timestamptz! - - """An object relationship""" - team: teams! - team_id: uuid! -} - -""" -aggregated selection of "team_scrim_availability" -""" -type team_scrim_availability_aggregate { - aggregate: team_scrim_availability_aggregate_fields - nodes: [team_scrim_availability!]! -} - -input team_scrim_availability_aggregate_bool_exp { - bool_and: team_scrim_availability_aggregate_bool_exp_bool_and - bool_or: team_scrim_availability_aggregate_bool_exp_bool_or - count: team_scrim_availability_aggregate_bool_exp_count -} - -input team_scrim_availability_aggregate_bool_exp_bool_and { - arguments: team_scrim_availability_select_column_team_scrim_availability_aggregate_bool_exp_bool_and_arguments_columns! - distinct: Boolean - filter: team_scrim_availability_bool_exp - predicate: Boolean_comparison_exp! -} - -input team_scrim_availability_aggregate_bool_exp_bool_or { - arguments: team_scrim_availability_select_column_team_scrim_availability_aggregate_bool_exp_bool_or_arguments_columns! - distinct: Boolean - filter: team_scrim_availability_bool_exp - predicate: Boolean_comparison_exp! -} - -input team_scrim_availability_aggregate_bool_exp_count { - arguments: [team_scrim_availability_select_column!] - distinct: Boolean - filter: team_scrim_availability_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "team_scrim_availability" -""" -type team_scrim_availability_aggregate_fields { - count(columns: [team_scrim_availability_select_column!], distinct: Boolean): Int! - max: team_scrim_availability_max_fields - min: team_scrim_availability_min_fields -} - -""" -order by aggregate values of table "team_scrim_availability" -""" -input team_scrim_availability_aggregate_order_by { - count: order_by - max: team_scrim_availability_max_order_by - min: team_scrim_availability_min_order_by -} - -""" -input type for inserting array relation for remote table "team_scrim_availability" -""" -input team_scrim_availability_arr_rel_insert_input { - data: [team_scrim_availability_insert_input!]! - - """upsert condition""" - on_conflict: team_scrim_availability_on_conflict -} - -""" -Boolean expression to filter rows from the table "team_scrim_availability". All fields are combined with a logical 'AND'. -""" -input team_scrim_availability_bool_exp { - _and: [team_scrim_availability_bool_exp!] - _not: team_scrim_availability_bool_exp - _or: [team_scrim_availability_bool_exp!] - created_at: timestamptz_comparison_exp - ends_at: timestamptz_comparison_exp - id: uuid_comparison_exp - recurring_weekly: Boolean_comparison_exp - starts_at: timestamptz_comparison_exp - team: teams_bool_exp - team_id: uuid_comparison_exp -} - -""" -unique or primary key constraints on table "team_scrim_availability" -""" -enum team_scrim_availability_constraint { - """ - unique or primary key constraint on columns "id" - """ - team_scrim_availability_pkey -} - -""" -input type for inserting data into table "team_scrim_availability" -""" -input team_scrim_availability_insert_input { - created_at: timestamptz - ends_at: timestamptz - id: uuid - recurring_weekly: Boolean - starts_at: timestamptz - team: teams_obj_rel_insert_input - team_id: uuid -} - -"""aggregate max on columns""" -type team_scrim_availability_max_fields { - created_at: timestamptz - ends_at: timestamptz - id: uuid - starts_at: timestamptz - team_id: uuid -} - -""" -order by max() on columns of table "team_scrim_availability" -""" -input team_scrim_availability_max_order_by { - created_at: order_by - ends_at: order_by - id: order_by - starts_at: order_by - team_id: order_by -} - -"""aggregate min on columns""" -type team_scrim_availability_min_fields { - created_at: timestamptz - ends_at: timestamptz - id: uuid - starts_at: timestamptz - team_id: uuid -} - -""" -order by min() on columns of table "team_scrim_availability" -""" -input team_scrim_availability_min_order_by { - created_at: order_by - ends_at: order_by - id: order_by - starts_at: order_by - team_id: order_by -} - -""" -response of any mutation on the table "team_scrim_availability" -""" -type team_scrim_availability_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [team_scrim_availability!]! -} - -""" -on_conflict condition type for table "team_scrim_availability" -""" -input team_scrim_availability_on_conflict { - constraint: team_scrim_availability_constraint! - update_columns: [team_scrim_availability_update_column!]! = [] - where: team_scrim_availability_bool_exp -} - -"""Ordering options when selecting data from "team_scrim_availability".""" -input team_scrim_availability_order_by { - created_at: order_by - ends_at: order_by - id: order_by - recurring_weekly: order_by - starts_at: order_by - team: teams_order_by - team_id: order_by -} - -"""primary key columns input for table: team_scrim_availability""" -input team_scrim_availability_pk_columns_input { - id: uuid! -} - -""" -select columns of table "team_scrim_availability" -""" -enum team_scrim_availability_select_column { - """column name""" - created_at - - """column name""" - ends_at - - """column name""" - id - - """column name""" - recurring_weekly - - """column name""" - starts_at - - """column name""" - team_id -} - -""" -select "team_scrim_availability_aggregate_bool_exp_bool_and_arguments_columns" columns of table "team_scrim_availability" -""" -enum team_scrim_availability_select_column_team_scrim_availability_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - recurring_weekly -} - -""" -select "team_scrim_availability_aggregate_bool_exp_bool_or_arguments_columns" columns of table "team_scrim_availability" -""" -enum team_scrim_availability_select_column_team_scrim_availability_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - recurring_weekly -} - -""" -input type for updating data in table "team_scrim_availability" -""" -input team_scrim_availability_set_input { - created_at: timestamptz - ends_at: timestamptz - id: uuid - recurring_weekly: Boolean - starts_at: timestamptz - team_id: uuid -} - -""" -Streaming cursor of the table "team_scrim_availability" -""" -input team_scrim_availability_stream_cursor_input { - """Stream column input with initial value""" - initial_value: team_scrim_availability_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input team_scrim_availability_stream_cursor_value_input { - created_at: timestamptz - ends_at: timestamptz - id: uuid - recurring_weekly: Boolean - starts_at: timestamptz - team_id: uuid -} - -""" -update columns of table "team_scrim_availability" -""" -enum team_scrim_availability_update_column { - """column name""" - created_at - - """column name""" - ends_at - - """column name""" - id - - """column name""" - recurring_weekly - - """column name""" - starts_at - - """column name""" - team_id -} - -input team_scrim_availability_updates { - """sets the columns of the filtered rows to the given values""" - _set: team_scrim_availability_set_input - - """filter the rows which have to be updated""" - where: team_scrim_availability_bool_exp! -} - -""" -columns and relationships of "team_scrim_request_proposals" -""" -type team_scrim_request_proposals { - created_at: timestamptz! - id: uuid! - - """An object relationship""" - proposed_by: players! - proposed_by_steam_id: bigint! - - """An object relationship""" - proposed_by_team: teams! - proposed_by_team_id: uuid! - proposed_scheduled_at: timestamptz! - - """An object relationship""" - request: team_scrim_requests! - request_id: uuid! -} - -""" -aggregated selection of "team_scrim_request_proposals" -""" -type team_scrim_request_proposals_aggregate { - aggregate: team_scrim_request_proposals_aggregate_fields - nodes: [team_scrim_request_proposals!]! -} - -input team_scrim_request_proposals_aggregate_bool_exp { - count: team_scrim_request_proposals_aggregate_bool_exp_count -} - -input team_scrim_request_proposals_aggregate_bool_exp_count { - arguments: [team_scrim_request_proposals_select_column!] - distinct: Boolean - filter: team_scrim_request_proposals_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "team_scrim_request_proposals" -""" -type team_scrim_request_proposals_aggregate_fields { - avg: team_scrim_request_proposals_avg_fields - count(columns: [team_scrim_request_proposals_select_column!], distinct: Boolean): Int! - max: team_scrim_request_proposals_max_fields - min: team_scrim_request_proposals_min_fields - stddev: team_scrim_request_proposals_stddev_fields - stddev_pop: team_scrim_request_proposals_stddev_pop_fields - stddev_samp: team_scrim_request_proposals_stddev_samp_fields - sum: team_scrim_request_proposals_sum_fields - var_pop: team_scrim_request_proposals_var_pop_fields - var_samp: team_scrim_request_proposals_var_samp_fields - variance: team_scrim_request_proposals_variance_fields -} - -""" -order by aggregate values of table "team_scrim_request_proposals" -""" -input team_scrim_request_proposals_aggregate_order_by { - avg: team_scrim_request_proposals_avg_order_by - count: order_by - max: team_scrim_request_proposals_max_order_by - min: team_scrim_request_proposals_min_order_by - stddev: team_scrim_request_proposals_stddev_order_by - stddev_pop: team_scrim_request_proposals_stddev_pop_order_by - stddev_samp: team_scrim_request_proposals_stddev_samp_order_by - sum: team_scrim_request_proposals_sum_order_by - var_pop: team_scrim_request_proposals_var_pop_order_by - var_samp: team_scrim_request_proposals_var_samp_order_by - variance: team_scrim_request_proposals_variance_order_by -} - -""" -input type for inserting array relation for remote table "team_scrim_request_proposals" -""" -input team_scrim_request_proposals_arr_rel_insert_input { - data: [team_scrim_request_proposals_insert_input!]! - - """upsert condition""" - on_conflict: team_scrim_request_proposals_on_conflict -} - -"""aggregate avg on columns""" -type team_scrim_request_proposals_avg_fields { - proposed_by_steam_id: Float -} - -""" -order by avg() on columns of table "team_scrim_request_proposals" -""" -input team_scrim_request_proposals_avg_order_by { - proposed_by_steam_id: order_by -} - -""" -Boolean expression to filter rows from the table "team_scrim_request_proposals". All fields are combined with a logical 'AND'. -""" -input team_scrim_request_proposals_bool_exp { - _and: [team_scrim_request_proposals_bool_exp!] - _not: team_scrim_request_proposals_bool_exp - _or: [team_scrim_request_proposals_bool_exp!] - created_at: timestamptz_comparison_exp - id: uuid_comparison_exp - proposed_by: players_bool_exp - proposed_by_steam_id: bigint_comparison_exp - proposed_by_team: teams_bool_exp - proposed_by_team_id: uuid_comparison_exp - proposed_scheduled_at: timestamptz_comparison_exp - request: team_scrim_requests_bool_exp - request_id: uuid_comparison_exp -} - -""" -unique or primary key constraints on table "team_scrim_request_proposals" -""" -enum team_scrim_request_proposals_constraint { - """ - unique or primary key constraint on columns "id" - """ - team_scrim_request_proposals_pkey -} - -""" -input type for incrementing numeric columns in table "team_scrim_request_proposals" -""" -input team_scrim_request_proposals_inc_input { - proposed_by_steam_id: bigint -} - -""" -input type for inserting data into table "team_scrim_request_proposals" -""" -input team_scrim_request_proposals_insert_input { - created_at: timestamptz - id: uuid - proposed_by: players_obj_rel_insert_input - proposed_by_steam_id: bigint - proposed_by_team: teams_obj_rel_insert_input - proposed_by_team_id: uuid - proposed_scheduled_at: timestamptz - request: team_scrim_requests_obj_rel_insert_input - request_id: uuid -} - -"""aggregate max on columns""" -type team_scrim_request_proposals_max_fields { - created_at: timestamptz - id: uuid - proposed_by_steam_id: bigint - proposed_by_team_id: uuid - proposed_scheduled_at: timestamptz - request_id: uuid -} - -""" -order by max() on columns of table "team_scrim_request_proposals" -""" -input team_scrim_request_proposals_max_order_by { - created_at: order_by - id: order_by - proposed_by_steam_id: order_by - proposed_by_team_id: order_by - proposed_scheduled_at: order_by - request_id: order_by -} - -"""aggregate min on columns""" -type team_scrim_request_proposals_min_fields { - created_at: timestamptz - id: uuid - proposed_by_steam_id: bigint - proposed_by_team_id: uuid - proposed_scheduled_at: timestamptz - request_id: uuid -} - -""" -order by min() on columns of table "team_scrim_request_proposals" -""" -input team_scrim_request_proposals_min_order_by { - created_at: order_by - id: order_by - proposed_by_steam_id: order_by - proposed_by_team_id: order_by - proposed_scheduled_at: order_by - request_id: order_by -} - -""" -response of any mutation on the table "team_scrim_request_proposals" -""" -type team_scrim_request_proposals_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [team_scrim_request_proposals!]! -} - -""" -on_conflict condition type for table "team_scrim_request_proposals" -""" -input team_scrim_request_proposals_on_conflict { - constraint: team_scrim_request_proposals_constraint! - update_columns: [team_scrim_request_proposals_update_column!]! = [] - where: team_scrim_request_proposals_bool_exp -} - -""" -Ordering options when selecting data from "team_scrim_request_proposals". -""" -input team_scrim_request_proposals_order_by { - created_at: order_by - id: order_by - proposed_by: players_order_by - proposed_by_steam_id: order_by - proposed_by_team: teams_order_by - proposed_by_team_id: order_by - proposed_scheduled_at: order_by - request: team_scrim_requests_order_by - request_id: order_by -} - -"""primary key columns input for table: team_scrim_request_proposals""" -input team_scrim_request_proposals_pk_columns_input { - id: uuid! -} - -""" -select columns of table "team_scrim_request_proposals" -""" -enum team_scrim_request_proposals_select_column { - """column name""" - created_at - - """column name""" - id - - """column name""" - proposed_by_steam_id - - """column name""" - proposed_by_team_id - - """column name""" - proposed_scheduled_at - - """column name""" - request_id -} - -""" -input type for updating data in table "team_scrim_request_proposals" -""" -input team_scrim_request_proposals_set_input { - created_at: timestamptz - id: uuid - proposed_by_steam_id: bigint - proposed_by_team_id: uuid - proposed_scheduled_at: timestamptz - request_id: uuid -} - -"""aggregate stddev on columns""" -type team_scrim_request_proposals_stddev_fields { - proposed_by_steam_id: Float -} - -""" -order by stddev() on columns of table "team_scrim_request_proposals" -""" -input team_scrim_request_proposals_stddev_order_by { - proposed_by_steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type team_scrim_request_proposals_stddev_pop_fields { - proposed_by_steam_id: Float -} - -""" -order by stddev_pop() on columns of table "team_scrim_request_proposals" -""" -input team_scrim_request_proposals_stddev_pop_order_by { - proposed_by_steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type team_scrim_request_proposals_stddev_samp_fields { - proposed_by_steam_id: Float -} - -""" -order by stddev_samp() on columns of table "team_scrim_request_proposals" -""" -input team_scrim_request_proposals_stddev_samp_order_by { - proposed_by_steam_id: order_by -} - -""" -Streaming cursor of the table "team_scrim_request_proposals" -""" -input team_scrim_request_proposals_stream_cursor_input { - """Stream column input with initial value""" - initial_value: team_scrim_request_proposals_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input team_scrim_request_proposals_stream_cursor_value_input { - created_at: timestamptz - id: uuid - proposed_by_steam_id: bigint - proposed_by_team_id: uuid - proposed_scheduled_at: timestamptz - request_id: uuid -} - -"""aggregate sum on columns""" -type team_scrim_request_proposals_sum_fields { - proposed_by_steam_id: bigint -} - -""" -order by sum() on columns of table "team_scrim_request_proposals" -""" -input team_scrim_request_proposals_sum_order_by { - proposed_by_steam_id: order_by -} - -""" -update columns of table "team_scrim_request_proposals" -""" -enum team_scrim_request_proposals_update_column { - """column name""" - created_at - - """column name""" - id - - """column name""" - proposed_by_steam_id - - """column name""" - proposed_by_team_id - - """column name""" - proposed_scheduled_at - - """column name""" - request_id -} - -input team_scrim_request_proposals_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: team_scrim_request_proposals_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: team_scrim_request_proposals_set_input - - """filter the rows which have to be updated""" - where: team_scrim_request_proposals_bool_exp! -} - -"""aggregate var_pop on columns""" -type team_scrim_request_proposals_var_pop_fields { - proposed_by_steam_id: Float -} - -""" -order by var_pop() on columns of table "team_scrim_request_proposals" -""" -input team_scrim_request_proposals_var_pop_order_by { - proposed_by_steam_id: order_by -} - -"""aggregate var_samp on columns""" -type team_scrim_request_proposals_var_samp_fields { - proposed_by_steam_id: Float -} - -""" -order by var_samp() on columns of table "team_scrim_request_proposals" -""" -input team_scrim_request_proposals_var_samp_order_by { - proposed_by_steam_id: order_by -} - -"""aggregate variance on columns""" -type team_scrim_request_proposals_variance_fields { - proposed_by_steam_id: Float -} - -""" -order by variance() on columns of table "team_scrim_request_proposals" -""" -input team_scrim_request_proposals_variance_order_by { - proposed_by_steam_id: order_by -} - -""" -columns and relationships of "team_scrim_requests" -""" -type team_scrim_requests { - auto_generated: Boolean! - - """An object relationship""" - awaiting_team: teams! - awaiting_team_id: uuid! - canceled_by_team_id: uuid - canceled_late: Boolean! - created_at: timestamptz! - expires_at: timestamptz! - - """An object relationship""" - from_team: teams! - from_team_checked_in: Boolean - from_team_id: uuid! - id: uuid! - - """An object relationship""" - match: matches - match_id: uuid - - """An object relationship""" - match_options: match_options - match_options_id: uuid - - """ - Terminal match status captured by tbd_match_cancel_scrim before the match row is deleted, so v_team_reputation survives canceled-match GC. - """ - match_outcome: String - - """An array relationship""" - proposals( - """distinct select on columns""" - distinct_on: [team_scrim_request_proposals_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: [team_scrim_request_proposals_order_by!] - - """filter the rows returned""" - where: team_scrim_request_proposals_bool_exp - ): [team_scrim_request_proposals!]! - - """An aggregate relationship""" - proposals_aggregate( - """distinct select on columns""" - distinct_on: [team_scrim_request_proposals_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: [team_scrim_request_proposals_order_by!] - - """filter the rows returned""" - where: team_scrim_request_proposals_bool_exp - ): team_scrim_request_proposals_aggregate! - proposed_scheduled_at: timestamptz! - region: String - - """An object relationship""" - requested_by: players! - requested_by_steam_id: bigint! - responded_at: timestamptz - status: e_scrim_request_statuses_enum! - - """An object relationship""" - to_team: teams! - to_team_checked_in: Boolean - to_team_id: uuid! -} - -""" -aggregated selection of "team_scrim_requests" -""" -type team_scrim_requests_aggregate { - aggregate: team_scrim_requests_aggregate_fields - nodes: [team_scrim_requests!]! -} - -input team_scrim_requests_aggregate_bool_exp { - bool_and: team_scrim_requests_aggregate_bool_exp_bool_and - bool_or: team_scrim_requests_aggregate_bool_exp_bool_or - count: team_scrim_requests_aggregate_bool_exp_count -} - -input team_scrim_requests_aggregate_bool_exp_bool_and { - arguments: team_scrim_requests_select_column_team_scrim_requests_aggregate_bool_exp_bool_and_arguments_columns! - distinct: Boolean - filter: team_scrim_requests_bool_exp - predicate: Boolean_comparison_exp! -} - -input team_scrim_requests_aggregate_bool_exp_bool_or { - arguments: team_scrim_requests_select_column_team_scrim_requests_aggregate_bool_exp_bool_or_arguments_columns! - distinct: Boolean - filter: team_scrim_requests_bool_exp - predicate: Boolean_comparison_exp! -} - -input team_scrim_requests_aggregate_bool_exp_count { - arguments: [team_scrim_requests_select_column!] - distinct: Boolean - filter: team_scrim_requests_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "team_scrim_requests" -""" -type team_scrim_requests_aggregate_fields { - avg: team_scrim_requests_avg_fields - count(columns: [team_scrim_requests_select_column!], distinct: Boolean): Int! - max: team_scrim_requests_max_fields - min: team_scrim_requests_min_fields - stddev: team_scrim_requests_stddev_fields - stddev_pop: team_scrim_requests_stddev_pop_fields - stddev_samp: team_scrim_requests_stddev_samp_fields - sum: team_scrim_requests_sum_fields - var_pop: team_scrim_requests_var_pop_fields - var_samp: team_scrim_requests_var_samp_fields - variance: team_scrim_requests_variance_fields -} - -""" -order by aggregate values of table "team_scrim_requests" -""" -input team_scrim_requests_aggregate_order_by { - avg: team_scrim_requests_avg_order_by - count: order_by - max: team_scrim_requests_max_order_by - min: team_scrim_requests_min_order_by - stddev: team_scrim_requests_stddev_order_by - stddev_pop: team_scrim_requests_stddev_pop_order_by - stddev_samp: team_scrim_requests_stddev_samp_order_by - sum: team_scrim_requests_sum_order_by - var_pop: team_scrim_requests_var_pop_order_by - var_samp: team_scrim_requests_var_samp_order_by - variance: team_scrim_requests_variance_order_by -} - -""" -input type for inserting array relation for remote table "team_scrim_requests" -""" -input team_scrim_requests_arr_rel_insert_input { - data: [team_scrim_requests_insert_input!]! - - """upsert condition""" - on_conflict: team_scrim_requests_on_conflict -} - -"""aggregate avg on columns""" -type team_scrim_requests_avg_fields { - requested_by_steam_id: Float -} - -""" -order by avg() on columns of table "team_scrim_requests" -""" -input team_scrim_requests_avg_order_by { - requested_by_steam_id: order_by -} - -""" -Boolean expression to filter rows from the table "team_scrim_requests". All fields are combined with a logical 'AND'. -""" -input team_scrim_requests_bool_exp { - _and: [team_scrim_requests_bool_exp!] - _not: team_scrim_requests_bool_exp - _or: [team_scrim_requests_bool_exp!] - auto_generated: Boolean_comparison_exp - awaiting_team: teams_bool_exp - awaiting_team_id: uuid_comparison_exp - canceled_by_team_id: uuid_comparison_exp - canceled_late: Boolean_comparison_exp - created_at: timestamptz_comparison_exp - expires_at: timestamptz_comparison_exp - from_team: teams_bool_exp - from_team_checked_in: Boolean_comparison_exp - from_team_id: uuid_comparison_exp - id: uuid_comparison_exp - match: matches_bool_exp - match_id: uuid_comparison_exp - match_options: match_options_bool_exp - match_options_id: uuid_comparison_exp - match_outcome: String_comparison_exp - proposals: team_scrim_request_proposals_bool_exp - proposals_aggregate: team_scrim_request_proposals_aggregate_bool_exp - proposed_scheduled_at: timestamptz_comparison_exp - region: String_comparison_exp - requested_by: players_bool_exp - requested_by_steam_id: bigint_comparison_exp - responded_at: timestamptz_comparison_exp - status: e_scrim_request_statuses_enum_comparison_exp - to_team: teams_bool_exp - to_team_checked_in: Boolean_comparison_exp - to_team_id: uuid_comparison_exp -} - -""" -unique or primary key constraints on table "team_scrim_requests" -""" -enum team_scrim_requests_constraint { - """ - unique or primary key constraint on columns "id" - """ - team_scrim_requests_pkey - - """unique or primary key constraint on columns """ - uq_scrim_req_open -} - -""" -input type for incrementing numeric columns in table "team_scrim_requests" -""" -input team_scrim_requests_inc_input { - requested_by_steam_id: bigint -} - -""" -input type for inserting data into table "team_scrim_requests" -""" -input team_scrim_requests_insert_input { - auto_generated: Boolean - awaiting_team: teams_obj_rel_insert_input - awaiting_team_id: uuid - canceled_by_team_id: uuid - canceled_late: Boolean - created_at: timestamptz - expires_at: timestamptz - from_team: teams_obj_rel_insert_input - from_team_checked_in: Boolean - from_team_id: uuid - id: uuid - match: matches_obj_rel_insert_input - match_id: uuid - match_options: match_options_obj_rel_insert_input - match_options_id: uuid - - """ - Terminal match status captured by tbd_match_cancel_scrim before the match row is deleted, so v_team_reputation survives canceled-match GC. - """ - match_outcome: String - proposals: team_scrim_request_proposals_arr_rel_insert_input - proposed_scheduled_at: timestamptz - region: String - requested_by: players_obj_rel_insert_input - requested_by_steam_id: bigint - responded_at: timestamptz - status: e_scrim_request_statuses_enum - to_team: teams_obj_rel_insert_input - to_team_checked_in: Boolean - to_team_id: uuid -} - -"""aggregate max on columns""" -type team_scrim_requests_max_fields { - awaiting_team_id: uuid - canceled_by_team_id: uuid - created_at: timestamptz - expires_at: timestamptz - from_team_id: uuid - id: uuid - match_id: uuid - match_options_id: uuid - - """ - Terminal match status captured by tbd_match_cancel_scrim before the match row is deleted, so v_team_reputation survives canceled-match GC. - """ - match_outcome: String - proposed_scheduled_at: timestamptz - region: String - requested_by_steam_id: bigint - responded_at: timestamptz - to_team_id: uuid -} - -""" -order by max() on columns of table "team_scrim_requests" -""" -input team_scrim_requests_max_order_by { - awaiting_team_id: order_by - canceled_by_team_id: order_by - created_at: order_by - expires_at: order_by - from_team_id: order_by - id: order_by - match_id: order_by - match_options_id: order_by - - """ - Terminal match status captured by tbd_match_cancel_scrim before the match row is deleted, so v_team_reputation survives canceled-match GC. - """ - match_outcome: order_by - proposed_scheduled_at: order_by - region: order_by - requested_by_steam_id: order_by - responded_at: order_by - to_team_id: order_by -} - -"""aggregate min on columns""" -type team_scrim_requests_min_fields { - awaiting_team_id: uuid - canceled_by_team_id: uuid - created_at: timestamptz - expires_at: timestamptz - from_team_id: uuid - id: uuid - match_id: uuid - match_options_id: uuid - - """ - Terminal match status captured by tbd_match_cancel_scrim before the match row is deleted, so v_team_reputation survives canceled-match GC. - """ - match_outcome: String - proposed_scheduled_at: timestamptz - region: String - requested_by_steam_id: bigint - responded_at: timestamptz - to_team_id: uuid -} - -""" -order by min() on columns of table "team_scrim_requests" -""" -input team_scrim_requests_min_order_by { - awaiting_team_id: order_by - canceled_by_team_id: order_by - created_at: order_by - expires_at: order_by - from_team_id: order_by - id: order_by - match_id: order_by - match_options_id: order_by - - """ - Terminal match status captured by tbd_match_cancel_scrim before the match row is deleted, so v_team_reputation survives canceled-match GC. - """ - match_outcome: order_by - proposed_scheduled_at: order_by - region: order_by - requested_by_steam_id: order_by - responded_at: order_by - to_team_id: order_by -} - -""" -response of any mutation on the table "team_scrim_requests" -""" -type team_scrim_requests_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [team_scrim_requests!]! -} - -""" -input type for inserting object relation for remote table "team_scrim_requests" -""" -input team_scrim_requests_obj_rel_insert_input { - data: team_scrim_requests_insert_input! - - """upsert condition""" - on_conflict: team_scrim_requests_on_conflict -} - -""" -on_conflict condition type for table "team_scrim_requests" -""" -input team_scrim_requests_on_conflict { - constraint: team_scrim_requests_constraint! - update_columns: [team_scrim_requests_update_column!]! = [] - where: team_scrim_requests_bool_exp -} - -"""Ordering options when selecting data from "team_scrim_requests".""" -input team_scrim_requests_order_by { - auto_generated: order_by - awaiting_team: teams_order_by - awaiting_team_id: order_by - canceled_by_team_id: order_by - canceled_late: order_by - created_at: order_by - expires_at: order_by - from_team: teams_order_by - from_team_checked_in: order_by - from_team_id: order_by - id: order_by - match: matches_order_by - match_id: order_by - match_options: match_options_order_by - match_options_id: order_by - match_outcome: order_by - proposals_aggregate: team_scrim_request_proposals_aggregate_order_by - proposed_scheduled_at: order_by - region: order_by - requested_by: players_order_by - requested_by_steam_id: order_by - responded_at: order_by - status: order_by - to_team: teams_order_by - to_team_checked_in: order_by - to_team_id: order_by -} - -"""primary key columns input for table: team_scrim_requests""" -input team_scrim_requests_pk_columns_input { - id: uuid! -} - -""" -select columns of table "team_scrim_requests" -""" -enum team_scrim_requests_select_column { - """column name""" - auto_generated - - """column name""" - awaiting_team_id - - """column name""" - canceled_by_team_id - - """column name""" - canceled_late - - """column name""" - created_at - - """column name""" - expires_at - - """column name""" - from_team_checked_in - - """column name""" - from_team_id - - """column name""" - id - - """column name""" - match_id - - """column name""" - match_options_id - - """column name""" - match_outcome - - """column name""" - proposed_scheduled_at - - """column name""" - region - - """column name""" - requested_by_steam_id - - """column name""" - responded_at - - """column name""" - status - - """column name""" - to_team_checked_in - - """column name""" - to_team_id -} - -""" -select "team_scrim_requests_aggregate_bool_exp_bool_and_arguments_columns" columns of table "team_scrim_requests" -""" -enum team_scrim_requests_select_column_team_scrim_requests_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - auto_generated - - """column name""" - canceled_late - - """column name""" - from_team_checked_in - - """column name""" - to_team_checked_in -} - -""" -select "team_scrim_requests_aggregate_bool_exp_bool_or_arguments_columns" columns of table "team_scrim_requests" -""" -enum team_scrim_requests_select_column_team_scrim_requests_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - auto_generated - - """column name""" - canceled_late - - """column name""" - from_team_checked_in - - """column name""" - to_team_checked_in -} - -""" -input type for updating data in table "team_scrim_requests" -""" -input team_scrim_requests_set_input { - auto_generated: Boolean - awaiting_team_id: uuid - canceled_by_team_id: uuid - canceled_late: Boolean - created_at: timestamptz - expires_at: timestamptz - from_team_checked_in: Boolean - from_team_id: uuid - id: uuid - match_id: uuid - match_options_id: uuid - - """ - Terminal match status captured by tbd_match_cancel_scrim before the match row is deleted, so v_team_reputation survives canceled-match GC. - """ - match_outcome: String - proposed_scheduled_at: timestamptz - region: String - requested_by_steam_id: bigint - responded_at: timestamptz - status: e_scrim_request_statuses_enum - to_team_checked_in: Boolean - to_team_id: uuid -} - -"""aggregate stddev on columns""" -type team_scrim_requests_stddev_fields { - requested_by_steam_id: Float -} - -""" -order by stddev() on columns of table "team_scrim_requests" -""" -input team_scrim_requests_stddev_order_by { - requested_by_steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type team_scrim_requests_stddev_pop_fields { - requested_by_steam_id: Float -} - -""" -order by stddev_pop() on columns of table "team_scrim_requests" -""" -input team_scrim_requests_stddev_pop_order_by { - requested_by_steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type team_scrim_requests_stddev_samp_fields { - requested_by_steam_id: Float -} - -""" -order by stddev_samp() on columns of table "team_scrim_requests" -""" -input team_scrim_requests_stddev_samp_order_by { - requested_by_steam_id: order_by -} - -""" -Streaming cursor of the table "team_scrim_requests" -""" -input team_scrim_requests_stream_cursor_input { - """Stream column input with initial value""" - initial_value: team_scrim_requests_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input team_scrim_requests_stream_cursor_value_input { - auto_generated: Boolean - awaiting_team_id: uuid - canceled_by_team_id: uuid - canceled_late: Boolean - created_at: timestamptz - expires_at: timestamptz - from_team_checked_in: Boolean - from_team_id: uuid - id: uuid - match_id: uuid - match_options_id: uuid - - """ - Terminal match status captured by tbd_match_cancel_scrim before the match row is deleted, so v_team_reputation survives canceled-match GC. - """ - match_outcome: String - proposed_scheduled_at: timestamptz - region: String - requested_by_steam_id: bigint - responded_at: timestamptz - status: e_scrim_request_statuses_enum - to_team_checked_in: Boolean - to_team_id: uuid -} - -"""aggregate sum on columns""" -type team_scrim_requests_sum_fields { - requested_by_steam_id: bigint -} - -""" -order by sum() on columns of table "team_scrim_requests" -""" -input team_scrim_requests_sum_order_by { - requested_by_steam_id: order_by -} - -""" -update columns of table "team_scrim_requests" -""" -enum team_scrim_requests_update_column { - """column name""" - auto_generated - - """column name""" - awaiting_team_id - - """column name""" - canceled_by_team_id - - """column name""" - canceled_late - - """column name""" - created_at - - """column name""" - expires_at - - """column name""" - from_team_checked_in - - """column name""" - from_team_id - - """column name""" - id - - """column name""" - match_id - - """column name""" - match_options_id - - """column name""" - match_outcome - - """column name""" - proposed_scheduled_at - - """column name""" - region - - """column name""" - requested_by_steam_id - - """column name""" - responded_at - - """column name""" - status - - """column name""" - to_team_checked_in - - """column name""" - to_team_id -} - -input team_scrim_requests_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: team_scrim_requests_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: team_scrim_requests_set_input - - """filter the rows which have to be updated""" - where: team_scrim_requests_bool_exp! -} - -"""aggregate var_pop on columns""" -type team_scrim_requests_var_pop_fields { - requested_by_steam_id: Float -} - -""" -order by var_pop() on columns of table "team_scrim_requests" -""" -input team_scrim_requests_var_pop_order_by { - requested_by_steam_id: order_by -} - -"""aggregate var_samp on columns""" -type team_scrim_requests_var_samp_fields { - requested_by_steam_id: Float -} - -""" -order by var_samp() on columns of table "team_scrim_requests" -""" -input team_scrim_requests_var_samp_order_by { - requested_by_steam_id: order_by -} - -"""aggregate variance on columns""" -type team_scrim_requests_variance_fields { - requested_by_steam_id: Float -} - -""" -order by variance() on columns of table "team_scrim_requests" -""" -input team_scrim_requests_variance_order_by { - requested_by_steam_id: order_by -} - -""" -columns and relationships of "team_scrim_settings" -""" -type team_scrim_settings { - allow_outside_availability: Boolean! - created_at: timestamptz! - elo_max: Int - elo_min: Int - enabled: Boolean! - id: uuid! - map_ids: [uuid!]! - notes: String - regions: [String!]! - - """An object relationship""" - team: teams! - team_id: uuid! - updated_at: timestamptz! -} - -""" -aggregated selection of "team_scrim_settings" -""" -type team_scrim_settings_aggregate { - aggregate: team_scrim_settings_aggregate_fields - nodes: [team_scrim_settings!]! -} - -""" -aggregate fields of "team_scrim_settings" -""" -type team_scrim_settings_aggregate_fields { - avg: team_scrim_settings_avg_fields - count(columns: [team_scrim_settings_select_column!], distinct: Boolean): Int! - max: team_scrim_settings_max_fields - min: team_scrim_settings_min_fields - stddev: team_scrim_settings_stddev_fields - stddev_pop: team_scrim_settings_stddev_pop_fields - stddev_samp: team_scrim_settings_stddev_samp_fields - sum: team_scrim_settings_sum_fields - var_pop: team_scrim_settings_var_pop_fields - var_samp: team_scrim_settings_var_samp_fields - variance: team_scrim_settings_variance_fields -} - -"""aggregate avg on columns""" -type team_scrim_settings_avg_fields { - elo_max: Float - elo_min: Float -} - -""" -Boolean expression to filter rows from the table "team_scrim_settings". All fields are combined with a logical 'AND'. -""" -input team_scrim_settings_bool_exp { - _and: [team_scrim_settings_bool_exp!] - _not: team_scrim_settings_bool_exp - _or: [team_scrim_settings_bool_exp!] - allow_outside_availability: Boolean_comparison_exp - created_at: timestamptz_comparison_exp - elo_max: Int_comparison_exp - elo_min: Int_comparison_exp - enabled: Boolean_comparison_exp - id: uuid_comparison_exp - map_ids: uuid_array_comparison_exp - notes: String_comparison_exp - regions: String_array_comparison_exp - team: teams_bool_exp - team_id: uuid_comparison_exp - updated_at: timestamptz_comparison_exp -} - -""" -unique or primary key constraints on table "team_scrim_settings" -""" -enum team_scrim_settings_constraint { - """ - unique or primary key constraint on columns "id" - """ - team_scrim_settings_pkey - - """ - unique or primary key constraint on columns "team_id" - """ - team_scrim_settings_team_id_key -} - -""" -input type for incrementing numeric columns in table "team_scrim_settings" -""" -input team_scrim_settings_inc_input { - elo_max: Int - elo_min: Int -} - -""" -input type for inserting data into table "team_scrim_settings" -""" -input team_scrim_settings_insert_input { - allow_outside_availability: Boolean - created_at: timestamptz - elo_max: Int - elo_min: Int - enabled: Boolean - id: uuid - map_ids: [uuid!] - notes: String - regions: [String!] - team: teams_obj_rel_insert_input - team_id: uuid - updated_at: timestamptz -} - -"""aggregate max on columns""" -type team_scrim_settings_max_fields { - created_at: timestamptz - elo_max: Int - elo_min: Int - id: uuid - map_ids: [uuid!] - notes: String - regions: [String!] - team_id: uuid - updated_at: timestamptz -} - -"""aggregate min on columns""" -type team_scrim_settings_min_fields { - created_at: timestamptz - elo_max: Int - elo_min: Int - id: uuid - map_ids: [uuid!] - notes: String - regions: [String!] - team_id: uuid - updated_at: timestamptz -} - -""" -response of any mutation on the table "team_scrim_settings" -""" -type team_scrim_settings_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [team_scrim_settings!]! -} - -""" -input type for inserting object relation for remote table "team_scrim_settings" -""" -input team_scrim_settings_obj_rel_insert_input { - data: team_scrim_settings_insert_input! - - """upsert condition""" - on_conflict: team_scrim_settings_on_conflict -} - -""" -on_conflict condition type for table "team_scrim_settings" -""" -input team_scrim_settings_on_conflict { - constraint: team_scrim_settings_constraint! - update_columns: [team_scrim_settings_update_column!]! = [] - where: team_scrim_settings_bool_exp -} - -"""Ordering options when selecting data from "team_scrim_settings".""" -input team_scrim_settings_order_by { - allow_outside_availability: order_by - created_at: order_by - elo_max: order_by - elo_min: order_by - enabled: order_by - id: order_by - map_ids: order_by - notes: order_by - regions: order_by - team: teams_order_by - team_id: order_by - updated_at: order_by -} - -"""primary key columns input for table: team_scrim_settings""" -input team_scrim_settings_pk_columns_input { - id: uuid! -} - -""" -select columns of table "team_scrim_settings" -""" -enum team_scrim_settings_select_column { - """column name""" - allow_outside_availability - - """column name""" - created_at - - """column name""" - elo_max - - """column name""" - elo_min - - """column name""" - enabled - - """column name""" - id - - """column name""" - map_ids - - """column name""" - notes - - """column name""" - regions - - """column name""" - team_id - - """column name""" - updated_at -} - -""" -input type for updating data in table "team_scrim_settings" -""" -input team_scrim_settings_set_input { - allow_outside_availability: Boolean - created_at: timestamptz - elo_max: Int - elo_min: Int - enabled: Boolean - id: uuid - map_ids: [uuid!] - notes: String - regions: [String!] - team_id: uuid - updated_at: timestamptz -} - -"""aggregate stddev on columns""" -type team_scrim_settings_stddev_fields { - elo_max: Float - elo_min: Float -} - -"""aggregate stddev_pop on columns""" -type team_scrim_settings_stddev_pop_fields { - elo_max: Float - elo_min: Float -} - -"""aggregate stddev_samp on columns""" -type team_scrim_settings_stddev_samp_fields { - elo_max: Float - elo_min: Float -} - -""" -Streaming cursor of the table "team_scrim_settings" -""" -input team_scrim_settings_stream_cursor_input { - """Stream column input with initial value""" - initial_value: team_scrim_settings_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input team_scrim_settings_stream_cursor_value_input { - allow_outside_availability: Boolean - created_at: timestamptz - elo_max: Int - elo_min: Int - enabled: Boolean - id: uuid - map_ids: [uuid!] - notes: String - regions: [String!] - team_id: uuid - updated_at: timestamptz -} - -"""aggregate sum on columns""" -type team_scrim_settings_sum_fields { - elo_max: Int - elo_min: Int -} - -""" -update columns of table "team_scrim_settings" -""" -enum team_scrim_settings_update_column { - """column name""" - allow_outside_availability - - """column name""" - created_at - - """column name""" - elo_max - - """column name""" - elo_min - - """column name""" - enabled - - """column name""" - id - - """column name""" - map_ids - - """column name""" - notes - - """column name""" - regions - - """column name""" - team_id - - """column name""" - updated_at -} - -input team_scrim_settings_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: team_scrim_settings_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: team_scrim_settings_set_input - - """filter the rows which have to be updated""" - where: team_scrim_settings_bool_exp! -} - -"""aggregate var_pop on columns""" -type team_scrim_settings_var_pop_fields { - elo_max: Float - elo_min: Float -} - -"""aggregate var_samp on columns""" -type team_scrim_settings_var_samp_fields { - elo_max: Float - elo_min: Float -} - -"""aggregate variance on columns""" -type team_scrim_settings_variance_fields { - elo_max: Float - elo_min: Float -} - -""" -columns and relationships of "team_suggestions" -""" -type team_suggestions { - created_at: timestamptz! - group_hash: String! - id: uuid! - last_notified_at: timestamptz - member_steam_ids: [bigint!]! - status: String! - together_count: Int! -} - -""" -aggregated selection of "team_suggestions" -""" -type team_suggestions_aggregate { - aggregate: team_suggestions_aggregate_fields - nodes: [team_suggestions!]! -} - -""" -aggregate fields of "team_suggestions" -""" -type team_suggestions_aggregate_fields { - avg: team_suggestions_avg_fields - count(columns: [team_suggestions_select_column!], distinct: Boolean): Int! - max: team_suggestions_max_fields - min: team_suggestions_min_fields - stddev: team_suggestions_stddev_fields - stddev_pop: team_suggestions_stddev_pop_fields - stddev_samp: team_suggestions_stddev_samp_fields - sum: team_suggestions_sum_fields - var_pop: team_suggestions_var_pop_fields - var_samp: team_suggestions_var_samp_fields - variance: team_suggestions_variance_fields -} - -"""aggregate avg on columns""" -type team_suggestions_avg_fields { - together_count: Float -} - -""" -Boolean expression to filter rows from the table "team_suggestions". All fields are combined with a logical 'AND'. -""" -input team_suggestions_bool_exp { - _and: [team_suggestions_bool_exp!] - _not: team_suggestions_bool_exp - _or: [team_suggestions_bool_exp!] - created_at: timestamptz_comparison_exp - group_hash: String_comparison_exp - id: uuid_comparison_exp - last_notified_at: timestamptz_comparison_exp - member_steam_ids: bigint_array_comparison_exp - status: String_comparison_exp - together_count: Int_comparison_exp -} - -""" -unique or primary key constraints on table "team_suggestions" -""" -enum team_suggestions_constraint { - """ - unique or primary key constraint on columns "group_hash" - """ - team_suggestions_group_hash_key - - """ - unique or primary key constraint on columns "id" - """ - team_suggestions_pkey -} - -""" -input type for incrementing numeric columns in table "team_suggestions" -""" -input team_suggestions_inc_input { - together_count: Int -} - -""" -input type for inserting data into table "team_suggestions" -""" -input team_suggestions_insert_input { - created_at: timestamptz - group_hash: String - id: uuid - last_notified_at: timestamptz - member_steam_ids: [bigint!] - status: String - together_count: Int -} - -"""aggregate max on columns""" -type team_suggestions_max_fields { - created_at: timestamptz - group_hash: String - id: uuid - last_notified_at: timestamptz - member_steam_ids: [bigint!] - status: String - together_count: Int -} - -"""aggregate min on columns""" -type team_suggestions_min_fields { - created_at: timestamptz - group_hash: String - id: uuid - last_notified_at: timestamptz - member_steam_ids: [bigint!] - status: String - together_count: Int -} - -""" -response of any mutation on the table "team_suggestions" -""" -type team_suggestions_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [team_suggestions!]! -} - -""" -on_conflict condition type for table "team_suggestions" -""" -input team_suggestions_on_conflict { - constraint: team_suggestions_constraint! - update_columns: [team_suggestions_update_column!]! = [] - where: team_suggestions_bool_exp -} - -"""Ordering options when selecting data from "team_suggestions".""" -input team_suggestions_order_by { - created_at: order_by - group_hash: order_by - id: order_by - last_notified_at: order_by - member_steam_ids: order_by - status: order_by - together_count: order_by -} - -"""primary key columns input for table: team_suggestions""" -input team_suggestions_pk_columns_input { - id: uuid! -} - -""" -select columns of table "team_suggestions" -""" -enum team_suggestions_select_column { - """column name""" - created_at - - """column name""" - group_hash - - """column name""" - id - - """column name""" - last_notified_at - - """column name""" - member_steam_ids - - """column name""" - status - - """column name""" - together_count -} - -""" -input type for updating data in table "team_suggestions" -""" -input team_suggestions_set_input { - created_at: timestamptz - group_hash: String - id: uuid - last_notified_at: timestamptz - member_steam_ids: [bigint!] - status: String - together_count: Int -} - -"""aggregate stddev on columns""" -type team_suggestions_stddev_fields { - together_count: Float -} - -"""aggregate stddev_pop on columns""" -type team_suggestions_stddev_pop_fields { - together_count: Float -} - -"""aggregate stddev_samp on columns""" -type team_suggestions_stddev_samp_fields { - together_count: Float -} - -""" -Streaming cursor of the table "team_suggestions" -""" -input team_suggestions_stream_cursor_input { - """Stream column input with initial value""" - initial_value: team_suggestions_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input team_suggestions_stream_cursor_value_input { - created_at: timestamptz - group_hash: String - id: uuid - last_notified_at: timestamptz - member_steam_ids: [bigint!] - status: String - together_count: Int -} - -"""aggregate sum on columns""" -type team_suggestions_sum_fields { - together_count: Int -} - -""" -update columns of table "team_suggestions" -""" -enum team_suggestions_update_column { - """column name""" - created_at - - """column name""" - group_hash - - """column name""" - id - - """column name""" - last_notified_at - - """column name""" - member_steam_ids - - """column name""" - status - - """column name""" - together_count -} - -input team_suggestions_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: team_suggestions_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: team_suggestions_set_input - - """filter the rows which have to be updated""" - where: team_suggestions_bool_exp! -} - -"""aggregate var_pop on columns""" -type team_suggestions_var_pop_fields { - together_count: Float -} - -"""aggregate var_samp on columns""" -type team_suggestions_var_samp_fields { - together_count: Float -} - -"""aggregate variance on columns""" -type team_suggestions_variance_fields { - together_count: Float -} - -""" -columns and relationships of "teams" -""" -type teams { - avatar_url: String - - """An array relationship""" - awards( - """distinct select on columns""" - distinct_on: [award_recipients_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: [award_recipients_order_by!] - - """filter the rows returned""" - where: award_recipients_bool_exp - ): [award_recipients!]! - - """An aggregate relationship""" - awards_aggregate( - """distinct select on columns""" - distinct_on: [award_recipients_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: [award_recipients_order_by!] - - """filter the rows returned""" - where: award_recipients_bool_exp - ): award_recipients_aggregate! - - """ - A computed field, executes function "can_change_team_role" - """ - can_change_role: Boolean - - """ - A computed field, executes function "can_invite_to_team" - """ - can_invite: Boolean - - """ - A computed field, executes function "can_manage_team_scrims" - """ - can_manage_scrims: Boolean - - """ - A computed field, executes function "can_remove_from_team" - """ - can_remove: Boolean - - """An object relationship""" - captain: players - captain_steam_id: bigint - id: uuid! - - """An array relationship""" - invites( - """distinct select on columns""" - distinct_on: [team_invites_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: [team_invites_order_by!] - - """filter the rows returned""" - where: team_invites_bool_exp - ): [team_invites!]! - - """An aggregate relationship""" - invites_aggregate( - """distinct select on columns""" - distinct_on: [team_invites_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: [team_invites_order_by!] - - """filter the rows returned""" - where: team_invites_bool_exp - ): team_invites_aggregate! - is_organization: Boolean! - - """An array relationship""" - match_lineups( - """distinct select on columns""" - distinct_on: [match_lineups_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_lineups_order_by!] - - """filter the rows returned""" - where: match_lineups_bool_exp - ): [match_lineups!]! - - """An aggregate relationship""" - match_lineups_aggregate( - """distinct select on columns""" - distinct_on: [match_lineups_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_lineups_order_by!] - - """filter the rows returned""" - where: match_lineups_bool_exp - ): match_lineups_aggregate! - - """ - A computed field, executes function "get_team_matches" - """ - matches( - """distinct select on columns""" - distinct_on: [matches_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: [matches_order_by!] - - """filter the rows returned""" - where: matches_bool_exp - ): [matches!] - name: String! - - """An object relationship""" - owner: players! - owner_steam_id: bigint! - - """An object relationship""" - ranks: v_team_ranks - - """An object relationship""" - reputation: v_team_reputation - - """ - A computed field, executes function "team_role" - """ - role: String - - """An array relationship""" - roster( - """distinct select on columns""" - distinct_on: [team_roster_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: [team_roster_order_by!] - - """filter the rows returned""" - where: team_roster_bool_exp - ): [team_roster!]! - - """An aggregate relationship""" - roster_aggregate( - """distinct select on columns""" - distinct_on: [team_roster_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: [team_roster_order_by!] - - """filter the rows returned""" - where: team_roster_bool_exp - ): team_roster_aggregate! - - """An array relationship""" - scrim_availability( - """distinct select on columns""" - distinct_on: [team_scrim_availability_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: [team_scrim_availability_order_by!] - - """filter the rows returned""" - where: team_scrim_availability_bool_exp - ): [team_scrim_availability!]! - - """An aggregate relationship""" - scrim_availability_aggregate( - """distinct select on columns""" - distinct_on: [team_scrim_availability_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: [team_scrim_availability_order_by!] - - """filter the rows returned""" - where: team_scrim_availability_bool_exp - ): team_scrim_availability_aggregate! - - """An object relationship""" - scrim_settings: team_scrim_settings - short_name: String! - - """An array relationship""" - tournament_teams( - """distinct select on columns""" - distinct_on: [tournament_teams_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_teams_order_by!] - - """filter the rows returned""" - where: tournament_teams_bool_exp - ): [tournament_teams!]! - - """An aggregate relationship""" - tournament_teams_aggregate( - """distinct select on columns""" - distinct_on: [tournament_teams_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_teams_order_by!] - - """filter the rows returned""" - where: tournament_teams_bool_exp - ): tournament_teams_aggregate! -} - -""" -aggregated selection of "teams" -""" -type teams_aggregate { - aggregate: teams_aggregate_fields - nodes: [teams!]! -} - -input teams_aggregate_bool_exp { - bool_and: teams_aggregate_bool_exp_bool_and - bool_or: teams_aggregate_bool_exp_bool_or - count: teams_aggregate_bool_exp_count -} - -input teams_aggregate_bool_exp_bool_and { - arguments: teams_select_column_teams_aggregate_bool_exp_bool_and_arguments_columns! - distinct: Boolean - filter: teams_bool_exp - predicate: Boolean_comparison_exp! -} - -input teams_aggregate_bool_exp_bool_or { - arguments: teams_select_column_teams_aggregate_bool_exp_bool_or_arguments_columns! - distinct: Boolean - filter: teams_bool_exp - predicate: Boolean_comparison_exp! -} - -input teams_aggregate_bool_exp_count { - arguments: [teams_select_column!] - distinct: Boolean - filter: teams_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "teams" -""" -type teams_aggregate_fields { - avg: teams_avg_fields - count(columns: [teams_select_column!], distinct: Boolean): Int! - max: teams_max_fields - min: teams_min_fields - stddev: teams_stddev_fields - stddev_pop: teams_stddev_pop_fields - stddev_samp: teams_stddev_samp_fields - sum: teams_sum_fields - var_pop: teams_var_pop_fields - var_samp: teams_var_samp_fields - variance: teams_variance_fields -} - -""" -order by aggregate values of table "teams" -""" -input teams_aggregate_order_by { - avg: teams_avg_order_by - count: order_by - max: teams_max_order_by - min: teams_min_order_by - stddev: teams_stddev_order_by - stddev_pop: teams_stddev_pop_order_by - stddev_samp: teams_stddev_samp_order_by - sum: teams_sum_order_by - var_pop: teams_var_pop_order_by - var_samp: teams_var_samp_order_by - variance: teams_variance_order_by -} - -""" -input type for inserting array relation for remote table "teams" -""" -input teams_arr_rel_insert_input { - data: [teams_insert_input!]! - - """upsert condition""" - on_conflict: teams_on_conflict -} - -"""aggregate avg on columns""" -type teams_avg_fields { - captain_steam_id: Float - owner_steam_id: Float -} - -""" -order by avg() on columns of table "teams" -""" -input teams_avg_order_by { - captain_steam_id: order_by - owner_steam_id: order_by -} - -""" -Boolean expression to filter rows from the table "teams". All fields are combined with a logical 'AND'. -""" -input teams_bool_exp { - _and: [teams_bool_exp!] - _not: teams_bool_exp - _or: [teams_bool_exp!] - avatar_url: String_comparison_exp - awards: award_recipients_bool_exp - awards_aggregate: award_recipients_aggregate_bool_exp - can_change_role: Boolean_comparison_exp - can_invite: Boolean_comparison_exp - can_manage_scrims: Boolean_comparison_exp - can_remove: Boolean_comparison_exp - captain: players_bool_exp - captain_steam_id: bigint_comparison_exp - id: uuid_comparison_exp - invites: team_invites_bool_exp - invites_aggregate: team_invites_aggregate_bool_exp - is_organization: Boolean_comparison_exp - match_lineups: match_lineups_bool_exp - match_lineups_aggregate: match_lineups_aggregate_bool_exp - matches: matches_bool_exp - name: String_comparison_exp - owner: players_bool_exp - owner_steam_id: bigint_comparison_exp - ranks: v_team_ranks_bool_exp - reputation: v_team_reputation_bool_exp - role: String_comparison_exp - roster: team_roster_bool_exp - roster_aggregate: team_roster_aggregate_bool_exp - scrim_availability: team_scrim_availability_bool_exp - scrim_availability_aggregate: team_scrim_availability_aggregate_bool_exp - scrim_settings: team_scrim_settings_bool_exp - short_name: String_comparison_exp - tournament_teams: tournament_teams_bool_exp - tournament_teams_aggregate: tournament_teams_aggregate_bool_exp -} - -""" -unique or primary key constraints on table "teams" -""" -enum teams_constraint { - """ - unique or primary key constraint on columns "name" - """ - teams_name_key - - """ - unique or primary key constraint on columns "id" - """ - teams_pkey -} - -""" -input type for incrementing numeric columns in table "teams" -""" -input teams_inc_input { - captain_steam_id: bigint - owner_steam_id: bigint -} - -""" -input type for inserting data into table "teams" -""" -input teams_insert_input { - avatar_url: String - awards: award_recipients_arr_rel_insert_input - captain: players_obj_rel_insert_input - captain_steam_id: bigint - id: uuid - invites: team_invites_arr_rel_insert_input - is_organization: Boolean - match_lineups: match_lineups_arr_rel_insert_input - name: String - owner: players_obj_rel_insert_input - owner_steam_id: bigint - ranks: v_team_ranks_obj_rel_insert_input - reputation: v_team_reputation_obj_rel_insert_input - roster: team_roster_arr_rel_insert_input - scrim_availability: team_scrim_availability_arr_rel_insert_input - scrim_settings: team_scrim_settings_obj_rel_insert_input - short_name: String - tournament_teams: tournament_teams_arr_rel_insert_input -} - -"""aggregate max on columns""" -type teams_max_fields { - avatar_url: String - captain_steam_id: bigint - id: uuid - name: String - owner_steam_id: bigint - - """ - A computed field, executes function "team_role" - """ - role: String - short_name: String -} - -""" -order by max() on columns of table "teams" -""" -input teams_max_order_by { - avatar_url: order_by - captain_steam_id: order_by - id: order_by - name: order_by - owner_steam_id: order_by - short_name: order_by -} - -"""aggregate min on columns""" -type teams_min_fields { - avatar_url: String - captain_steam_id: bigint - id: uuid - name: String - owner_steam_id: bigint - - """ - A computed field, executes function "team_role" - """ - role: String - short_name: String -} - -""" -order by min() on columns of table "teams" -""" -input teams_min_order_by { - avatar_url: order_by - captain_steam_id: order_by - id: order_by - name: order_by - owner_steam_id: order_by - short_name: order_by -} - -""" -response of any mutation on the table "teams" -""" -type teams_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [teams!]! -} - -""" -input type for inserting object relation for remote table "teams" -""" -input teams_obj_rel_insert_input { - data: teams_insert_input! - - """upsert condition""" - on_conflict: teams_on_conflict -} - -""" -on_conflict condition type for table "teams" -""" -input teams_on_conflict { - constraint: teams_constraint! - update_columns: [teams_update_column!]! = [] - where: teams_bool_exp -} - -"""Ordering options when selecting data from "teams".""" -input teams_order_by { - avatar_url: order_by - awards_aggregate: award_recipients_aggregate_order_by - can_change_role: order_by - can_invite: order_by - can_manage_scrims: order_by - can_remove: order_by - captain: players_order_by - captain_steam_id: order_by - id: order_by - invites_aggregate: team_invites_aggregate_order_by - is_organization: order_by - match_lineups_aggregate: match_lineups_aggregate_order_by - matches_aggregate: matches_aggregate_order_by - name: order_by - owner: players_order_by - owner_steam_id: order_by - ranks: v_team_ranks_order_by - reputation: v_team_reputation_order_by - role: order_by - roster_aggregate: team_roster_aggregate_order_by - scrim_availability_aggregate: team_scrim_availability_aggregate_order_by - scrim_settings: team_scrim_settings_order_by - short_name: order_by - tournament_teams_aggregate: tournament_teams_aggregate_order_by -} - -"""primary key columns input for table: teams""" -input teams_pk_columns_input { - id: uuid! -} - -""" -select columns of table "teams" -""" -enum teams_select_column { - """column name""" - avatar_url - - """column name""" - captain_steam_id - - """column name""" - id - - """column name""" - is_organization - - """column name""" - name - - """column name""" - owner_steam_id - - """column name""" - short_name -} - -""" -select "teams_aggregate_bool_exp_bool_and_arguments_columns" columns of table "teams" -""" -enum teams_select_column_teams_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - is_organization -} - -""" -select "teams_aggregate_bool_exp_bool_or_arguments_columns" columns of table "teams" -""" -enum teams_select_column_teams_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - is_organization -} - -""" -input type for updating data in table "teams" -""" -input teams_set_input { - avatar_url: String - captain_steam_id: bigint - id: uuid - is_organization: Boolean - name: String - owner_steam_id: bigint - short_name: String -} - -"""aggregate stddev on columns""" -type teams_stddev_fields { - captain_steam_id: Float - owner_steam_id: Float -} - -""" -order by stddev() on columns of table "teams" -""" -input teams_stddev_order_by { - captain_steam_id: order_by - owner_steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type teams_stddev_pop_fields { - captain_steam_id: Float - owner_steam_id: Float -} - -""" -order by stddev_pop() on columns of table "teams" -""" -input teams_stddev_pop_order_by { - captain_steam_id: order_by - owner_steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type teams_stddev_samp_fields { - captain_steam_id: Float - owner_steam_id: Float -} - -""" -order by stddev_samp() on columns of table "teams" -""" -input teams_stddev_samp_order_by { - captain_steam_id: order_by - owner_steam_id: order_by -} - -""" -Streaming cursor of the table "teams" -""" -input teams_stream_cursor_input { - """Stream column input with initial value""" - initial_value: teams_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input teams_stream_cursor_value_input { - avatar_url: String - captain_steam_id: bigint - id: uuid - is_organization: Boolean - name: String - owner_steam_id: bigint - short_name: String -} - -"""aggregate sum on columns""" -type teams_sum_fields { - captain_steam_id: bigint - owner_steam_id: bigint -} - -""" -order by sum() on columns of table "teams" -""" -input teams_sum_order_by { - captain_steam_id: order_by - owner_steam_id: order_by -} - -""" -update columns of table "teams" -""" -enum teams_update_column { - """column name""" - avatar_url - - """column name""" - captain_steam_id - - """column name""" - id - - """column name""" - is_organization - - """column name""" - name - - """column name""" - owner_steam_id - - """column name""" - short_name -} - -input teams_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: teams_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: teams_set_input - - """filter the rows which have to be updated""" - where: teams_bool_exp! -} - -"""aggregate var_pop on columns""" -type teams_var_pop_fields { - captain_steam_id: Float - owner_steam_id: Float -} - -""" -order by var_pop() on columns of table "teams" -""" -input teams_var_pop_order_by { - captain_steam_id: order_by - owner_steam_id: order_by -} - -"""aggregate var_samp on columns""" -type teams_var_samp_fields { - captain_steam_id: Float - owner_steam_id: Float -} - -""" -order by var_samp() on columns of table "teams" -""" -input teams_var_samp_order_by { - captain_steam_id: order_by - owner_steam_id: order_by -} - -"""aggregate variance on columns""" -type teams_variance_fields { - captain_steam_id: Float - owner_steam_id: Float -} - -""" -order by variance() on columns of table "teams" -""" -input teams_variance_order_by { - captain_steam_id: order_by - owner_steam_id: order_by -} - -scalar time - -""" -Boolean expression to compare columns of type "time". All fields are combined with logical 'AND'. -""" -input time_comparison_exp { - _eq: time - _gt: time - _gte: time - _in: [time!] - _is_null: Boolean - _lt: time - _lte: time - _neq: time - _nin: [time!] -} - -scalar timestamp - -scalar timestamptz - -""" -Boolean expression to compare columns of type "timestamptz". All fields are combined with logical 'AND'. -""" -input timestamptz_comparison_exp { - _eq: timestamptz - _gt: timestamptz - _gte: timestamptz - _in: [timestamptz!] - _is_null: Boolean - _lt: timestamptz - _lte: timestamptz - _neq: timestamptz - _nin: [timestamptz!] -} - -""" -columns and relationships of "tournament_awards" -""" -type tournament_awards { - """An object relationship""" - award: awards - award_id: uuid - created_at: timestamptz! - custom_name: String - id: uuid! - image_url: String - placement: Int! - silhouette: Int - - """An object relationship""" - tournament: tournaments! - tournament_id: uuid! - updated_at: timestamptz! -} - -""" -aggregated selection of "tournament_awards" -""" -type tournament_awards_aggregate { - aggregate: tournament_awards_aggregate_fields - nodes: [tournament_awards!]! -} - -input tournament_awards_aggregate_bool_exp { - count: tournament_awards_aggregate_bool_exp_count -} - -input tournament_awards_aggregate_bool_exp_count { - arguments: [tournament_awards_select_column!] - distinct: Boolean - filter: tournament_awards_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "tournament_awards" -""" -type tournament_awards_aggregate_fields { - avg: tournament_awards_avg_fields - count(columns: [tournament_awards_select_column!], distinct: Boolean): Int! - max: tournament_awards_max_fields - min: tournament_awards_min_fields - stddev: tournament_awards_stddev_fields - stddev_pop: tournament_awards_stddev_pop_fields - stddev_samp: tournament_awards_stddev_samp_fields - sum: tournament_awards_sum_fields - var_pop: tournament_awards_var_pop_fields - var_samp: tournament_awards_var_samp_fields - variance: tournament_awards_variance_fields -} - -""" -order by aggregate values of table "tournament_awards" -""" -input tournament_awards_aggregate_order_by { - avg: tournament_awards_avg_order_by - count: order_by - max: tournament_awards_max_order_by - min: tournament_awards_min_order_by - stddev: tournament_awards_stddev_order_by - stddev_pop: tournament_awards_stddev_pop_order_by - stddev_samp: tournament_awards_stddev_samp_order_by - sum: tournament_awards_sum_order_by - var_pop: tournament_awards_var_pop_order_by - var_samp: tournament_awards_var_samp_order_by - variance: tournament_awards_variance_order_by -} - -""" -input type for inserting array relation for remote table "tournament_awards" -""" -input tournament_awards_arr_rel_insert_input { - data: [tournament_awards_insert_input!]! - - """upsert condition""" - on_conflict: tournament_awards_on_conflict -} - -"""aggregate avg on columns""" -type tournament_awards_avg_fields { - placement: Float - silhouette: Float -} - -""" -order by avg() on columns of table "tournament_awards" -""" -input tournament_awards_avg_order_by { - placement: order_by - silhouette: order_by -} - -""" -Boolean expression to filter rows from the table "tournament_awards". All fields are combined with a logical 'AND'. -""" -input tournament_awards_bool_exp { - _and: [tournament_awards_bool_exp!] - _not: tournament_awards_bool_exp - _or: [tournament_awards_bool_exp!] - award: awards_bool_exp - award_id: uuid_comparison_exp - created_at: timestamptz_comparison_exp - custom_name: String_comparison_exp - id: uuid_comparison_exp - image_url: String_comparison_exp - placement: Int_comparison_exp - silhouette: Int_comparison_exp - tournament: tournaments_bool_exp - tournament_id: uuid_comparison_exp - updated_at: timestamptz_comparison_exp -} - -""" -unique or primary key constraints on table "tournament_awards" -""" -enum tournament_awards_constraint { - """ - unique or primary key constraint on columns "id" - """ - tournament_awards_pkey - - """ - unique or primary key constraint on columns "placement", "tournament_id" - """ - tournament_awards_tournament_id_placement_key -} - -""" -input type for incrementing numeric columns in table "tournament_awards" -""" -input tournament_awards_inc_input { - placement: Int - silhouette: Int -} - -""" -input type for inserting data into table "tournament_awards" -""" -input tournament_awards_insert_input { - award: awards_obj_rel_insert_input - award_id: uuid - created_at: timestamptz - custom_name: String - id: uuid - image_url: String - placement: Int - silhouette: Int - tournament: tournaments_obj_rel_insert_input - tournament_id: uuid - updated_at: timestamptz -} - -"""aggregate max on columns""" -type tournament_awards_max_fields { - award_id: uuid - created_at: timestamptz - custom_name: String - id: uuid - image_url: String - placement: Int - silhouette: Int - tournament_id: uuid - updated_at: timestamptz -} - -""" -order by max() on columns of table "tournament_awards" -""" -input tournament_awards_max_order_by { - award_id: order_by - created_at: order_by - custom_name: order_by - id: order_by - image_url: order_by - placement: order_by - silhouette: order_by - tournament_id: order_by - updated_at: order_by -} - -"""aggregate min on columns""" -type tournament_awards_min_fields { - award_id: uuid - created_at: timestamptz - custom_name: String - id: uuid - image_url: String - placement: Int - silhouette: Int - tournament_id: uuid - updated_at: timestamptz -} - -""" -order by min() on columns of table "tournament_awards" -""" -input tournament_awards_min_order_by { - award_id: order_by - created_at: order_by - custom_name: order_by - id: order_by - image_url: order_by - placement: order_by - silhouette: order_by - tournament_id: order_by - updated_at: order_by -} - -""" -response of any mutation on the table "tournament_awards" -""" -type tournament_awards_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [tournament_awards!]! -} - -""" -input type for inserting object relation for remote table "tournament_awards" -""" -input tournament_awards_obj_rel_insert_input { - data: tournament_awards_insert_input! - - """upsert condition""" - on_conflict: tournament_awards_on_conflict -} - -""" -on_conflict condition type for table "tournament_awards" -""" -input tournament_awards_on_conflict { - constraint: tournament_awards_constraint! - update_columns: [tournament_awards_update_column!]! = [] - where: tournament_awards_bool_exp -} - -"""Ordering options when selecting data from "tournament_awards".""" -input tournament_awards_order_by { - award: awards_order_by - award_id: order_by - created_at: order_by - custom_name: order_by - id: order_by - image_url: order_by - placement: order_by - silhouette: order_by - tournament: tournaments_order_by - tournament_id: order_by - updated_at: order_by -} - -"""primary key columns input for table: tournament_awards""" -input tournament_awards_pk_columns_input { - id: uuid! -} - -""" -select columns of table "tournament_awards" -""" -enum tournament_awards_select_column { - """column name""" - award_id - - """column name""" - created_at - - """column name""" - custom_name - - """column name""" - id - - """column name""" - image_url - - """column name""" - placement - - """column name""" - silhouette - - """column name""" - tournament_id - - """column name""" - updated_at -} - -""" -input type for updating data in table "tournament_awards" -""" -input tournament_awards_set_input { - award_id: uuid - created_at: timestamptz - custom_name: String - id: uuid - image_url: String - placement: Int - silhouette: Int - tournament_id: uuid - updated_at: timestamptz -} - -"""aggregate stddev on columns""" -type tournament_awards_stddev_fields { - placement: Float - silhouette: Float -} - -""" -order by stddev() on columns of table "tournament_awards" -""" -input tournament_awards_stddev_order_by { - placement: order_by - silhouette: order_by -} - -"""aggregate stddev_pop on columns""" -type tournament_awards_stddev_pop_fields { - placement: Float - silhouette: Float -} - -""" -order by stddev_pop() on columns of table "tournament_awards" -""" -input tournament_awards_stddev_pop_order_by { - placement: order_by - silhouette: order_by -} - -"""aggregate stddev_samp on columns""" -type tournament_awards_stddev_samp_fields { - placement: Float - silhouette: Float -} - -""" -order by stddev_samp() on columns of table "tournament_awards" -""" -input tournament_awards_stddev_samp_order_by { - placement: order_by - silhouette: order_by -} - -""" -Streaming cursor of the table "tournament_awards" -""" -input tournament_awards_stream_cursor_input { - """Stream column input with initial value""" - initial_value: tournament_awards_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input tournament_awards_stream_cursor_value_input { - award_id: uuid - created_at: timestamptz - custom_name: String - id: uuid - image_url: String - placement: Int - silhouette: Int - tournament_id: uuid - updated_at: timestamptz -} - -"""aggregate sum on columns""" -type tournament_awards_sum_fields { - placement: Int - silhouette: Int -} - -""" -order by sum() on columns of table "tournament_awards" -""" -input tournament_awards_sum_order_by { - placement: order_by - silhouette: order_by -} - -""" -update columns of table "tournament_awards" -""" -enum tournament_awards_update_column { - """column name""" - award_id - - """column name""" - created_at - - """column name""" - custom_name - - """column name""" - id - - """column name""" - image_url - - """column name""" - placement - - """column name""" - silhouette - - """column name""" - tournament_id - - """column name""" - updated_at -} - -input tournament_awards_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_awards_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_awards_set_input - - """filter the rows which have to be updated""" - where: tournament_awards_bool_exp! -} - -"""aggregate var_pop on columns""" -type tournament_awards_var_pop_fields { - placement: Float - silhouette: Float -} - -""" -order by var_pop() on columns of table "tournament_awards" -""" -input tournament_awards_var_pop_order_by { - placement: order_by - silhouette: order_by -} - -"""aggregate var_samp on columns""" -type tournament_awards_var_samp_fields { - placement: Float - silhouette: Float -} - -""" -order by var_samp() on columns of table "tournament_awards" -""" -input tournament_awards_var_samp_order_by { - placement: order_by - silhouette: order_by -} - -"""aggregate variance on columns""" -type tournament_awards_variance_fields { - placement: Float - silhouette: Float -} - -""" -order by variance() on columns of table "tournament_awards" -""" -input tournament_awards_variance_order_by { - placement: order_by - silhouette: order_by -} - -""" -columns and relationships of "tournament_brackets" -""" -type tournament_brackets { - bye: Boolean! - created_at: timestamptz! - - """ - A computed field, executes function "get_feeding_brackets" - """ - feeding_brackets( - """distinct select on columns""" - distinct_on: [tournament_brackets_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_brackets_order_by!] - - """filter the rows returned""" - where: tournament_brackets_bool_exp - ): [tournament_brackets!] - finished: Boolean! - group: numeric - id: uuid! - - """An object relationship""" - loser_bracket: tournament_brackets - loser_parent_bracket_id: uuid - - """An object relationship""" - match: matches - match_id: uuid - match_number: Int - match_options_id: uuid - - """An object relationship""" - options: match_options - - """An object relationship""" - parent_bracket: tournament_brackets - parent_bracket_id: uuid - path: String - round: Int! - scheduled_at: timestamptz - scheduled_eta: timestamptz - - """An array relationship""" - scheduling_proposals( - """distinct select on columns""" - distinct_on: [league_scheduling_proposals_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: [league_scheduling_proposals_order_by!] - - """filter the rows returned""" - where: league_scheduling_proposals_bool_exp - ): [league_scheduling_proposals!]! - - """An aggregate relationship""" - scheduling_proposals_aggregate( - """distinct select on columns""" - distinct_on: [league_scheduling_proposals_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: [league_scheduling_proposals_order_by!] - - """filter the rows returned""" - where: league_scheduling_proposals_bool_exp - ): league_scheduling_proposals_aggregate! - - """An object relationship""" - stage: tournament_stages! - - """An object relationship""" - team_1: tournament_teams - team_1_seed: Int - - """An object relationship""" - team_2: tournament_teams - team_2_seed: Int - tournament_stage_id: uuid! - tournament_team_id_1: uuid - tournament_team_id_2: uuid -} - -""" -aggregated selection of "tournament_brackets" -""" -type tournament_brackets_aggregate { - aggregate: tournament_brackets_aggregate_fields - nodes: [tournament_brackets!]! -} - -input tournament_brackets_aggregate_bool_exp { - bool_and: tournament_brackets_aggregate_bool_exp_bool_and - bool_or: tournament_brackets_aggregate_bool_exp_bool_or - count: tournament_brackets_aggregate_bool_exp_count -} - -input tournament_brackets_aggregate_bool_exp_bool_and { - arguments: tournament_brackets_select_column_tournament_brackets_aggregate_bool_exp_bool_and_arguments_columns! - distinct: Boolean - filter: tournament_brackets_bool_exp - predicate: Boolean_comparison_exp! -} - -input tournament_brackets_aggregate_bool_exp_bool_or { - arguments: tournament_brackets_select_column_tournament_brackets_aggregate_bool_exp_bool_or_arguments_columns! - distinct: Boolean - filter: tournament_brackets_bool_exp - predicate: Boolean_comparison_exp! -} - -input tournament_brackets_aggregate_bool_exp_count { - arguments: [tournament_brackets_select_column!] - distinct: Boolean - filter: tournament_brackets_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "tournament_brackets" -""" -type tournament_brackets_aggregate_fields { - avg: tournament_brackets_avg_fields - count(columns: [tournament_brackets_select_column!], distinct: Boolean): Int! - max: tournament_brackets_max_fields - min: tournament_brackets_min_fields - stddev: tournament_brackets_stddev_fields - stddev_pop: tournament_brackets_stddev_pop_fields - stddev_samp: tournament_brackets_stddev_samp_fields - sum: tournament_brackets_sum_fields - var_pop: tournament_brackets_var_pop_fields - var_samp: tournament_brackets_var_samp_fields - variance: tournament_brackets_variance_fields -} - -""" -order by aggregate values of table "tournament_brackets" -""" -input tournament_brackets_aggregate_order_by { - avg: tournament_brackets_avg_order_by - count: order_by - max: tournament_brackets_max_order_by - min: tournament_brackets_min_order_by - stddev: tournament_brackets_stddev_order_by - stddev_pop: tournament_brackets_stddev_pop_order_by - stddev_samp: tournament_brackets_stddev_samp_order_by - sum: tournament_brackets_sum_order_by - var_pop: tournament_brackets_var_pop_order_by - var_samp: tournament_brackets_var_samp_order_by - variance: tournament_brackets_variance_order_by -} - -""" -input type for inserting array relation for remote table "tournament_brackets" -""" -input tournament_brackets_arr_rel_insert_input { - data: [tournament_brackets_insert_input!]! - - """upsert condition""" - on_conflict: tournament_brackets_on_conflict -} - -"""aggregate avg on columns""" -type tournament_brackets_avg_fields { - group: Float - match_number: Float - round: Float - team_1_seed: Float - team_2_seed: Float -} - -""" -order by avg() on columns of table "tournament_brackets" -""" -input tournament_brackets_avg_order_by { - group: order_by - match_number: order_by - round: order_by - team_1_seed: order_by - team_2_seed: order_by -} - -""" -Boolean expression to filter rows from the table "tournament_brackets". All fields are combined with a logical 'AND'. -""" -input tournament_brackets_bool_exp { - _and: [tournament_brackets_bool_exp!] - _not: tournament_brackets_bool_exp - _or: [tournament_brackets_bool_exp!] - bye: Boolean_comparison_exp - created_at: timestamptz_comparison_exp - feeding_brackets: tournament_brackets_bool_exp - finished: Boolean_comparison_exp - group: numeric_comparison_exp - id: uuid_comparison_exp - loser_bracket: tournament_brackets_bool_exp - loser_parent_bracket_id: uuid_comparison_exp - match: matches_bool_exp - match_id: uuid_comparison_exp - match_number: Int_comparison_exp - match_options_id: uuid_comparison_exp - options: match_options_bool_exp - parent_bracket: tournament_brackets_bool_exp - parent_bracket_id: uuid_comparison_exp - path: String_comparison_exp - round: Int_comparison_exp - scheduled_at: timestamptz_comparison_exp - scheduled_eta: timestamptz_comparison_exp - scheduling_proposals: league_scheduling_proposals_bool_exp - scheduling_proposals_aggregate: league_scheduling_proposals_aggregate_bool_exp - stage: tournament_stages_bool_exp - team_1: tournament_teams_bool_exp - team_1_seed: Int_comparison_exp - team_2: tournament_teams_bool_exp - team_2_seed: Int_comparison_exp - tournament_stage_id: uuid_comparison_exp - tournament_team_id_1: uuid_comparison_exp - tournament_team_id_2: uuid_comparison_exp -} - -""" -unique or primary key constraints on table "tournament_brackets" -""" -enum tournament_brackets_constraint { - """ - unique or primary key constraint on columns "id" - """ - touarnment_brackets_pkey - - """ - unique or primary key constraint on columns "id", "tournament_team_id_1", "tournament_team_id_2" - """ - tournament_brackets_id_tournament_team_id_1_tournament_team_id_ -} - -""" -input type for incrementing numeric columns in table "tournament_brackets" -""" -input tournament_brackets_inc_input { - group: numeric - match_number: Int - round: Int - team_1_seed: Int - team_2_seed: Int -} - -""" -input type for inserting data into table "tournament_brackets" -""" -input tournament_brackets_insert_input { - bye: Boolean - created_at: timestamptz - finished: Boolean - group: numeric - id: uuid - loser_bracket: tournament_brackets_obj_rel_insert_input - loser_parent_bracket_id: uuid - match: matches_obj_rel_insert_input - match_id: uuid - match_number: Int - match_options_id: uuid - options: match_options_obj_rel_insert_input - parent_bracket: tournament_brackets_obj_rel_insert_input - parent_bracket_id: uuid - path: String - round: Int - scheduled_at: timestamptz - scheduled_eta: timestamptz - scheduling_proposals: league_scheduling_proposals_arr_rel_insert_input - stage: tournament_stages_obj_rel_insert_input - team_1: tournament_teams_obj_rel_insert_input - team_1_seed: Int - team_2: tournament_teams_obj_rel_insert_input - team_2_seed: Int - tournament_stage_id: uuid - tournament_team_id_1: uuid - tournament_team_id_2: uuid -} - -"""aggregate max on columns""" -type tournament_brackets_max_fields { - created_at: timestamptz - group: numeric - id: uuid - loser_parent_bracket_id: uuid - match_id: uuid - match_number: Int - match_options_id: uuid - parent_bracket_id: uuid - path: String - round: Int - scheduled_at: timestamptz - scheduled_eta: timestamptz - team_1_seed: Int - team_2_seed: Int - tournament_stage_id: uuid - tournament_team_id_1: uuid - tournament_team_id_2: uuid -} - -""" -order by max() on columns of table "tournament_brackets" -""" -input tournament_brackets_max_order_by { - created_at: order_by - group: order_by - id: order_by - loser_parent_bracket_id: order_by - match_id: order_by - match_number: order_by - match_options_id: order_by - parent_bracket_id: order_by - path: order_by - round: order_by - scheduled_at: order_by - scheduled_eta: order_by - team_1_seed: order_by - team_2_seed: order_by - tournament_stage_id: order_by - tournament_team_id_1: order_by - tournament_team_id_2: order_by -} - -"""aggregate min on columns""" -type tournament_brackets_min_fields { - created_at: timestamptz - group: numeric - id: uuid - loser_parent_bracket_id: uuid - match_id: uuid - match_number: Int - match_options_id: uuid - parent_bracket_id: uuid - path: String - round: Int - scheduled_at: timestamptz - scheduled_eta: timestamptz - team_1_seed: Int - team_2_seed: Int - tournament_stage_id: uuid - tournament_team_id_1: uuid - tournament_team_id_2: uuid -} - -""" -order by min() on columns of table "tournament_brackets" -""" -input tournament_brackets_min_order_by { - created_at: order_by - group: order_by - id: order_by - loser_parent_bracket_id: order_by - match_id: order_by - match_number: order_by - match_options_id: order_by - parent_bracket_id: order_by - path: order_by - round: order_by - scheduled_at: order_by - scheduled_eta: order_by - team_1_seed: order_by - team_2_seed: order_by - tournament_stage_id: order_by - tournament_team_id_1: order_by - tournament_team_id_2: order_by -} - -""" -response of any mutation on the table "tournament_brackets" -""" -type tournament_brackets_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [tournament_brackets!]! -} - -""" -input type for inserting object relation for remote table "tournament_brackets" -""" -input tournament_brackets_obj_rel_insert_input { - data: tournament_brackets_insert_input! - - """upsert condition""" - on_conflict: tournament_brackets_on_conflict -} - -""" -on_conflict condition type for table "tournament_brackets" -""" -input tournament_brackets_on_conflict { - constraint: tournament_brackets_constraint! - update_columns: [tournament_brackets_update_column!]! = [] - where: tournament_brackets_bool_exp -} - -"""Ordering options when selecting data from "tournament_brackets".""" -input tournament_brackets_order_by { - bye: order_by - created_at: order_by - feeding_brackets_aggregate: tournament_brackets_aggregate_order_by - finished: order_by - group: order_by - id: order_by - loser_bracket: tournament_brackets_order_by - loser_parent_bracket_id: order_by - match: matches_order_by - match_id: order_by - match_number: order_by - match_options_id: order_by - options: match_options_order_by - parent_bracket: tournament_brackets_order_by - parent_bracket_id: order_by - path: order_by - round: order_by - scheduled_at: order_by - scheduled_eta: order_by - scheduling_proposals_aggregate: league_scheduling_proposals_aggregate_order_by - stage: tournament_stages_order_by - team_1: tournament_teams_order_by - team_1_seed: order_by - team_2: tournament_teams_order_by - team_2_seed: order_by - tournament_stage_id: order_by - tournament_team_id_1: order_by - tournament_team_id_2: order_by -} - -"""primary key columns input for table: tournament_brackets""" -input tournament_brackets_pk_columns_input { - id: uuid! -} - -""" -select columns of table "tournament_brackets" -""" -enum tournament_brackets_select_column { - """column name""" - bye - - """column name""" - created_at - - """column name""" - finished - - """column name""" - group - - """column name""" - id - - """column name""" - loser_parent_bracket_id - - """column name""" - match_id - - """column name""" - match_number - - """column name""" - match_options_id - - """column name""" - parent_bracket_id - - """column name""" - path - - """column name""" - round - - """column name""" - scheduled_at - - """column name""" - scheduled_eta - - """column name""" - team_1_seed - - """column name""" - team_2_seed - - """column name""" - tournament_stage_id - - """column name""" - tournament_team_id_1 - - """column name""" - tournament_team_id_2 -} - -""" -select "tournament_brackets_aggregate_bool_exp_bool_and_arguments_columns" columns of table "tournament_brackets" -""" -enum tournament_brackets_select_column_tournament_brackets_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - bye - - """column name""" - finished -} - -""" -select "tournament_brackets_aggregate_bool_exp_bool_or_arguments_columns" columns of table "tournament_brackets" -""" -enum tournament_brackets_select_column_tournament_brackets_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - bye - - """column name""" - finished -} - -""" -input type for updating data in table "tournament_brackets" -""" -input tournament_brackets_set_input { - bye: Boolean - created_at: timestamptz - finished: Boolean - group: numeric - id: uuid - loser_parent_bracket_id: uuid - match_id: uuid - match_number: Int - match_options_id: uuid - parent_bracket_id: uuid - path: String - round: Int - scheduled_at: timestamptz - scheduled_eta: timestamptz - team_1_seed: Int - team_2_seed: Int - tournament_stage_id: uuid - tournament_team_id_1: uuid - tournament_team_id_2: uuid -} - -"""aggregate stddev on columns""" -type tournament_brackets_stddev_fields { - group: Float - match_number: Float - round: Float - team_1_seed: Float - team_2_seed: Float -} - -""" -order by stddev() on columns of table "tournament_brackets" -""" -input tournament_brackets_stddev_order_by { - group: order_by - match_number: order_by - round: order_by - team_1_seed: order_by - team_2_seed: order_by -} - -"""aggregate stddev_pop on columns""" -type tournament_brackets_stddev_pop_fields { - group: Float - match_number: Float - round: Float - team_1_seed: Float - team_2_seed: Float -} - -""" -order by stddev_pop() on columns of table "tournament_brackets" -""" -input tournament_brackets_stddev_pop_order_by { - group: order_by - match_number: order_by - round: order_by - team_1_seed: order_by - team_2_seed: order_by -} - -"""aggregate stddev_samp on columns""" -type tournament_brackets_stddev_samp_fields { - group: Float - match_number: Float - round: Float - team_1_seed: Float - team_2_seed: Float -} - -""" -order by stddev_samp() on columns of table "tournament_brackets" -""" -input tournament_brackets_stddev_samp_order_by { - group: order_by - match_number: order_by - round: order_by - team_1_seed: order_by - team_2_seed: order_by -} - -""" -Streaming cursor of the table "tournament_brackets" -""" -input tournament_brackets_stream_cursor_input { - """Stream column input with initial value""" - initial_value: tournament_brackets_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input tournament_brackets_stream_cursor_value_input { - bye: Boolean - created_at: timestamptz - finished: Boolean - group: numeric - id: uuid - loser_parent_bracket_id: uuid - match_id: uuid - match_number: Int - match_options_id: uuid - parent_bracket_id: uuid - path: String - round: Int - scheduled_at: timestamptz - scheduled_eta: timestamptz - team_1_seed: Int - team_2_seed: Int - tournament_stage_id: uuid - tournament_team_id_1: uuid - tournament_team_id_2: uuid -} - -"""aggregate sum on columns""" -type tournament_brackets_sum_fields { - group: numeric - match_number: Int - round: Int - team_1_seed: Int - team_2_seed: Int -} - -""" -order by sum() on columns of table "tournament_brackets" -""" -input tournament_brackets_sum_order_by { - group: order_by - match_number: order_by - round: order_by - team_1_seed: order_by - team_2_seed: order_by -} - -""" -update columns of table "tournament_brackets" -""" -enum tournament_brackets_update_column { - """column name""" - bye - - """column name""" - created_at - - """column name""" - finished - - """column name""" - group - - """column name""" - id - - """column name""" - loser_parent_bracket_id - - """column name""" - match_id - - """column name""" - match_number - - """column name""" - match_options_id - - """column name""" - parent_bracket_id - - """column name""" - path - - """column name""" - round - - """column name""" - scheduled_at - - """column name""" - scheduled_eta - - """column name""" - team_1_seed - - """column name""" - team_2_seed - - """column name""" - tournament_stage_id - - """column name""" - tournament_team_id_1 - - """column name""" - tournament_team_id_2 -} - -input tournament_brackets_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_brackets_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_brackets_set_input - - """filter the rows which have to be updated""" - where: tournament_brackets_bool_exp! -} - -"""aggregate var_pop on columns""" -type tournament_brackets_var_pop_fields { - group: Float - match_number: Float - round: Float - team_1_seed: Float - team_2_seed: Float -} - -""" -order by var_pop() on columns of table "tournament_brackets" -""" -input tournament_brackets_var_pop_order_by { - group: order_by - match_number: order_by - round: order_by - team_1_seed: order_by - team_2_seed: order_by -} - -"""aggregate var_samp on columns""" -type tournament_brackets_var_samp_fields { - group: Float - match_number: Float - round: Float - team_1_seed: Float - team_2_seed: Float -} - -""" -order by var_samp() on columns of table "tournament_brackets" -""" -input tournament_brackets_var_samp_order_by { - group: order_by - match_number: order_by - round: order_by - team_1_seed: order_by - team_2_seed: order_by -} - -"""aggregate variance on columns""" -type tournament_brackets_variance_fields { - group: Float - match_number: Float - round: Float - team_1_seed: Float - team_2_seed: Float -} - -""" -order by variance() on columns of table "tournament_brackets" -""" -input tournament_brackets_variance_order_by { - group: order_by - match_number: order_by - round: order_by - team_1_seed: order_by - team_2_seed: order_by -} - -""" -columns and relationships of "tournament_categories" -""" -type tournament_categories { - category: e_tournament_categories_enum! - - """An object relationship""" - e_tournament_category: e_tournament_categories! - - """An object relationship""" - tournament: tournaments! - tournament_id: uuid! -} - -""" -aggregated selection of "tournament_categories" -""" -type tournament_categories_aggregate { - aggregate: tournament_categories_aggregate_fields - nodes: [tournament_categories!]! -} - -input tournament_categories_aggregate_bool_exp { - count: tournament_categories_aggregate_bool_exp_count -} - -input tournament_categories_aggregate_bool_exp_count { - arguments: [tournament_categories_select_column!] - distinct: Boolean - filter: tournament_categories_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "tournament_categories" -""" -type tournament_categories_aggregate_fields { - count(columns: [tournament_categories_select_column!], distinct: Boolean): Int! - max: tournament_categories_max_fields - min: tournament_categories_min_fields -} - -""" -order by aggregate values of table "tournament_categories" -""" -input tournament_categories_aggregate_order_by { - count: order_by - max: tournament_categories_max_order_by - min: tournament_categories_min_order_by -} - -""" -input type for inserting array relation for remote table "tournament_categories" -""" -input tournament_categories_arr_rel_insert_input { - data: [tournament_categories_insert_input!]! - - """upsert condition""" - on_conflict: tournament_categories_on_conflict -} - -""" -Boolean expression to filter rows from the table "tournament_categories". All fields are combined with a logical 'AND'. -""" -input tournament_categories_bool_exp { - _and: [tournament_categories_bool_exp!] - _not: tournament_categories_bool_exp - _or: [tournament_categories_bool_exp!] - category: e_tournament_categories_enum_comparison_exp - e_tournament_category: e_tournament_categories_bool_exp - tournament: tournaments_bool_exp - tournament_id: uuid_comparison_exp -} - -""" -unique or primary key constraints on table "tournament_categories" -""" -enum tournament_categories_constraint { - """ - unique or primary key constraint on columns "tournament_id", "category" - """ - tournament_categories_pkey -} - -""" -input type for inserting data into table "tournament_categories" -""" -input tournament_categories_insert_input { - category: e_tournament_categories_enum - e_tournament_category: e_tournament_categories_obj_rel_insert_input - tournament: tournaments_obj_rel_insert_input - tournament_id: uuid -} - -"""aggregate max on columns""" -type tournament_categories_max_fields { - tournament_id: uuid -} - -""" -order by max() on columns of table "tournament_categories" -""" -input tournament_categories_max_order_by { - tournament_id: order_by -} - -"""aggregate min on columns""" -type tournament_categories_min_fields { - tournament_id: uuid -} - -""" -order by min() on columns of table "tournament_categories" -""" -input tournament_categories_min_order_by { - tournament_id: order_by -} - -""" -response of any mutation on the table "tournament_categories" -""" -type tournament_categories_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [tournament_categories!]! -} - -""" -on_conflict condition type for table "tournament_categories" -""" -input tournament_categories_on_conflict { - constraint: tournament_categories_constraint! - update_columns: [tournament_categories_update_column!]! = [] - where: tournament_categories_bool_exp -} - -"""Ordering options when selecting data from "tournament_categories".""" -input tournament_categories_order_by { - category: order_by - e_tournament_category: e_tournament_categories_order_by - tournament: tournaments_order_by - tournament_id: order_by -} - -"""primary key columns input for table: tournament_categories""" -input tournament_categories_pk_columns_input { - category: e_tournament_categories_enum! - tournament_id: uuid! -} - -""" -select columns of table "tournament_categories" -""" -enum tournament_categories_select_column { - """column name""" - category - - """column name""" - tournament_id -} - -""" -input type for updating data in table "tournament_categories" -""" -input tournament_categories_set_input { - category: e_tournament_categories_enum - tournament_id: uuid -} - -""" -Streaming cursor of the table "tournament_categories" -""" -input tournament_categories_stream_cursor_input { - """Stream column input with initial value""" - initial_value: tournament_categories_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input tournament_categories_stream_cursor_value_input { - category: e_tournament_categories_enum - tournament_id: uuid -} - -""" -update columns of table "tournament_categories" -""" -enum tournament_categories_update_column { - """column name""" - category - - """column name""" - tournament_id -} - -input tournament_categories_updates { - """sets the columns of the filtered rows to the given values""" - _set: tournament_categories_set_input - - """filter the rows which have to be updated""" - where: tournament_categories_bool_exp! -} - -""" -columns and relationships of "tournament_free_agents" -""" -type tournament_free_agents { - checked_in_at: timestamptz - - """Registration priority: decides who makes the cut""" - created_at: timestamptz! - - """An object relationship""" - e_tournament_free_agent_status: e_tournament_free_agent_statuses! - id: uuid! - party_id: uuid - - """An object relationship""" - player: players! - player_steam_id: bigint! - status: e_tournament_free_agent_statuses_enum! - - """An object relationship""" - tournament: tournaments! - tournament_id: uuid! - - """An object relationship""" - tournament_team: tournament_teams - tournament_team_id: uuid -} - -""" -aggregated selection of "tournament_free_agents" -""" -type tournament_free_agents_aggregate { - aggregate: tournament_free_agents_aggregate_fields - nodes: [tournament_free_agents!]! -} - -input tournament_free_agents_aggregate_bool_exp { - count: tournament_free_agents_aggregate_bool_exp_count -} - -input tournament_free_agents_aggregate_bool_exp_count { - arguments: [tournament_free_agents_select_column!] - distinct: Boolean - filter: tournament_free_agents_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "tournament_free_agents" -""" -type tournament_free_agents_aggregate_fields { - avg: tournament_free_agents_avg_fields - count(columns: [tournament_free_agents_select_column!], distinct: Boolean): Int! - max: tournament_free_agents_max_fields - min: tournament_free_agents_min_fields - stddev: tournament_free_agents_stddev_fields - stddev_pop: tournament_free_agents_stddev_pop_fields - stddev_samp: tournament_free_agents_stddev_samp_fields - sum: tournament_free_agents_sum_fields - var_pop: tournament_free_agents_var_pop_fields - var_samp: tournament_free_agents_var_samp_fields - variance: tournament_free_agents_variance_fields -} - -""" -order by aggregate values of table "tournament_free_agents" -""" -input tournament_free_agents_aggregate_order_by { - avg: tournament_free_agents_avg_order_by - count: order_by - max: tournament_free_agents_max_order_by - min: tournament_free_agents_min_order_by - stddev: tournament_free_agents_stddev_order_by - stddev_pop: tournament_free_agents_stddev_pop_order_by - stddev_samp: tournament_free_agents_stddev_samp_order_by - sum: tournament_free_agents_sum_order_by - var_pop: tournament_free_agents_var_pop_order_by - var_samp: tournament_free_agents_var_samp_order_by - variance: tournament_free_agents_variance_order_by -} - -""" -input type for inserting array relation for remote table "tournament_free_agents" -""" -input tournament_free_agents_arr_rel_insert_input { - data: [tournament_free_agents_insert_input!]! - - """upsert condition""" - on_conflict: tournament_free_agents_on_conflict -} - -"""aggregate avg on columns""" -type tournament_free_agents_avg_fields { - player_steam_id: Float -} - -""" -order by avg() on columns of table "tournament_free_agents" -""" -input tournament_free_agents_avg_order_by { - player_steam_id: order_by -} - -""" -Boolean expression to filter rows from the table "tournament_free_agents". All fields are combined with a logical 'AND'. -""" -input tournament_free_agents_bool_exp { - _and: [tournament_free_agents_bool_exp!] - _not: tournament_free_agents_bool_exp - _or: [tournament_free_agents_bool_exp!] - checked_in_at: timestamptz_comparison_exp - created_at: timestamptz_comparison_exp - e_tournament_free_agent_status: e_tournament_free_agent_statuses_bool_exp - id: uuid_comparison_exp - party_id: uuid_comparison_exp - player: players_bool_exp - player_steam_id: bigint_comparison_exp - status: e_tournament_free_agent_statuses_enum_comparison_exp - tournament: tournaments_bool_exp - tournament_id: uuid_comparison_exp - tournament_team: tournament_teams_bool_exp - tournament_team_id: uuid_comparison_exp -} - -""" -unique or primary key constraints on table "tournament_free_agents" -""" -enum tournament_free_agents_constraint { - """ - unique or primary key constraint on columns "id" - """ - tournament_free_agents_pkey - - """ - unique or primary key constraint on columns "player_steam_id", "tournament_id" - """ - tournament_free_agents_tournament_id_player_steam_id_key -} - -""" -input type for incrementing numeric columns in table "tournament_free_agents" -""" -input tournament_free_agents_inc_input { - player_steam_id: bigint -} - -""" -input type for inserting data into table "tournament_free_agents" -""" -input tournament_free_agents_insert_input { - checked_in_at: timestamptz - - """Registration priority: decides who makes the cut""" - created_at: timestamptz - e_tournament_free_agent_status: e_tournament_free_agent_statuses_obj_rel_insert_input - id: uuid - party_id: uuid - player: players_obj_rel_insert_input - player_steam_id: bigint - status: e_tournament_free_agent_statuses_enum - tournament: tournaments_obj_rel_insert_input - tournament_id: uuid - tournament_team: tournament_teams_obj_rel_insert_input - tournament_team_id: uuid -} - -"""aggregate max on columns""" -type tournament_free_agents_max_fields { - checked_in_at: timestamptz - - """Registration priority: decides who makes the cut""" - created_at: timestamptz - id: uuid - party_id: uuid - player_steam_id: bigint - tournament_id: uuid - tournament_team_id: uuid -} - -""" -order by max() on columns of table "tournament_free_agents" -""" -input tournament_free_agents_max_order_by { - checked_in_at: order_by - - """Registration priority: decides who makes the cut""" - created_at: order_by - id: order_by - party_id: order_by - player_steam_id: order_by - tournament_id: order_by - tournament_team_id: order_by -} - -"""aggregate min on columns""" -type tournament_free_agents_min_fields { - checked_in_at: timestamptz - - """Registration priority: decides who makes the cut""" - created_at: timestamptz - id: uuid - party_id: uuid - player_steam_id: bigint - tournament_id: uuid - tournament_team_id: uuid -} - -""" -order by min() on columns of table "tournament_free_agents" -""" -input tournament_free_agents_min_order_by { - checked_in_at: order_by - - """Registration priority: decides who makes the cut""" - created_at: order_by - id: order_by - party_id: order_by - player_steam_id: order_by - tournament_id: order_by - tournament_team_id: order_by -} - -""" -response of any mutation on the table "tournament_free_agents" -""" -type tournament_free_agents_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [tournament_free_agents!]! -} - -""" -on_conflict condition type for table "tournament_free_agents" -""" -input tournament_free_agents_on_conflict { - constraint: tournament_free_agents_constraint! - update_columns: [tournament_free_agents_update_column!]! = [] - where: tournament_free_agents_bool_exp -} - -"""Ordering options when selecting data from "tournament_free_agents".""" -input tournament_free_agents_order_by { - checked_in_at: order_by - created_at: order_by - e_tournament_free_agent_status: e_tournament_free_agent_statuses_order_by - id: order_by - party_id: order_by - player: players_order_by - player_steam_id: order_by - status: order_by - tournament: tournaments_order_by - tournament_id: order_by - tournament_team: tournament_teams_order_by - tournament_team_id: order_by -} - -"""primary key columns input for table: tournament_free_agents""" -input tournament_free_agents_pk_columns_input { - id: uuid! -} - -""" -select columns of table "tournament_free_agents" -""" -enum tournament_free_agents_select_column { - """column name""" - checked_in_at - - """column name""" - created_at - - """column name""" - id - - """column name""" - party_id - - """column name""" - player_steam_id - - """column name""" - status - - """column name""" - tournament_id - - """column name""" - tournament_team_id -} - -""" -input type for updating data in table "tournament_free_agents" -""" -input tournament_free_agents_set_input { - checked_in_at: timestamptz - - """Registration priority: decides who makes the cut""" - created_at: timestamptz - id: uuid - party_id: uuid - player_steam_id: bigint - status: e_tournament_free_agent_statuses_enum - tournament_id: uuid - tournament_team_id: uuid -} - -"""aggregate stddev on columns""" -type tournament_free_agents_stddev_fields { - player_steam_id: Float -} - -""" -order by stddev() on columns of table "tournament_free_agents" -""" -input tournament_free_agents_stddev_order_by { - player_steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type tournament_free_agents_stddev_pop_fields { - player_steam_id: Float -} - -""" -order by stddev_pop() on columns of table "tournament_free_agents" -""" -input tournament_free_agents_stddev_pop_order_by { - player_steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type tournament_free_agents_stddev_samp_fields { - player_steam_id: Float -} - -""" -order by stddev_samp() on columns of table "tournament_free_agents" -""" -input tournament_free_agents_stddev_samp_order_by { - player_steam_id: order_by -} - -""" -Streaming cursor of the table "tournament_free_agents" -""" -input tournament_free_agents_stream_cursor_input { - """Stream column input with initial value""" - initial_value: tournament_free_agents_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input tournament_free_agents_stream_cursor_value_input { - checked_in_at: timestamptz - - """Registration priority: decides who makes the cut""" - created_at: timestamptz - id: uuid - party_id: uuid - player_steam_id: bigint - status: e_tournament_free_agent_statuses_enum - tournament_id: uuid - tournament_team_id: uuid -} - -"""aggregate sum on columns""" -type tournament_free_agents_sum_fields { - player_steam_id: bigint -} - -""" -order by sum() on columns of table "tournament_free_agents" -""" -input tournament_free_agents_sum_order_by { - player_steam_id: order_by -} - -""" -update columns of table "tournament_free_agents" -""" -enum tournament_free_agents_update_column { - """column name""" - checked_in_at - - """column name""" - created_at - - """column name""" - id - - """column name""" - party_id - - """column name""" - player_steam_id - - """column name""" - status - - """column name""" - tournament_id - - """column name""" - tournament_team_id -} - -input tournament_free_agents_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_free_agents_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_free_agents_set_input - - """filter the rows which have to be updated""" - where: tournament_free_agents_bool_exp! -} - -"""aggregate var_pop on columns""" -type tournament_free_agents_var_pop_fields { - player_steam_id: Float -} - -""" -order by var_pop() on columns of table "tournament_free_agents" -""" -input tournament_free_agents_var_pop_order_by { - player_steam_id: order_by -} - -"""aggregate var_samp on columns""" -type tournament_free_agents_var_samp_fields { - player_steam_id: Float -} - -""" -order by var_samp() on columns of table "tournament_free_agents" -""" -input tournament_free_agents_var_samp_order_by { - player_steam_id: order_by -} - -"""aggregate variance on columns""" -type tournament_free_agents_variance_fields { - player_steam_id: Float -} - -""" -order by variance() on columns of table "tournament_free_agents" -""" -input tournament_free_agents_variance_order_by { - player_steam_id: order_by -} - -""" -columns and relationships of "tournament_invite_code_uses" -""" -type tournament_invite_code_uses { - """An object relationship""" - invite_code: tournament_invite_codes! - invite_code_id: uuid! - - """An object relationship""" - player: players! - player_steam_id: bigint! - - """An object relationship""" - team: teams - team_id: uuid - used_at: timestamptz! -} - -""" -aggregated selection of "tournament_invite_code_uses" -""" -type tournament_invite_code_uses_aggregate { - aggregate: tournament_invite_code_uses_aggregate_fields - nodes: [tournament_invite_code_uses!]! -} - -input tournament_invite_code_uses_aggregate_bool_exp { - count: tournament_invite_code_uses_aggregate_bool_exp_count -} - -input tournament_invite_code_uses_aggregate_bool_exp_count { - arguments: [tournament_invite_code_uses_select_column!] - distinct: Boolean - filter: tournament_invite_code_uses_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "tournament_invite_code_uses" -""" -type tournament_invite_code_uses_aggregate_fields { - avg: tournament_invite_code_uses_avg_fields - count(columns: [tournament_invite_code_uses_select_column!], distinct: Boolean): Int! - max: tournament_invite_code_uses_max_fields - min: tournament_invite_code_uses_min_fields - stddev: tournament_invite_code_uses_stddev_fields - stddev_pop: tournament_invite_code_uses_stddev_pop_fields - stddev_samp: tournament_invite_code_uses_stddev_samp_fields - sum: tournament_invite_code_uses_sum_fields - var_pop: tournament_invite_code_uses_var_pop_fields - var_samp: tournament_invite_code_uses_var_samp_fields - variance: tournament_invite_code_uses_variance_fields -} - -""" -order by aggregate values of table "tournament_invite_code_uses" -""" -input tournament_invite_code_uses_aggregate_order_by { - avg: tournament_invite_code_uses_avg_order_by - count: order_by - max: tournament_invite_code_uses_max_order_by - min: tournament_invite_code_uses_min_order_by - stddev: tournament_invite_code_uses_stddev_order_by - stddev_pop: tournament_invite_code_uses_stddev_pop_order_by - stddev_samp: tournament_invite_code_uses_stddev_samp_order_by - sum: tournament_invite_code_uses_sum_order_by - var_pop: tournament_invite_code_uses_var_pop_order_by - var_samp: tournament_invite_code_uses_var_samp_order_by - variance: tournament_invite_code_uses_variance_order_by -} - -""" -input type for inserting array relation for remote table "tournament_invite_code_uses" -""" -input tournament_invite_code_uses_arr_rel_insert_input { - data: [tournament_invite_code_uses_insert_input!]! - - """upsert condition""" - on_conflict: tournament_invite_code_uses_on_conflict -} - -"""aggregate avg on columns""" -type tournament_invite_code_uses_avg_fields { - player_steam_id: Float -} - -""" -order by avg() on columns of table "tournament_invite_code_uses" -""" -input tournament_invite_code_uses_avg_order_by { - player_steam_id: order_by -} - -""" -Boolean expression to filter rows from the table "tournament_invite_code_uses". All fields are combined with a logical 'AND'. -""" -input tournament_invite_code_uses_bool_exp { - _and: [tournament_invite_code_uses_bool_exp!] - _not: tournament_invite_code_uses_bool_exp - _or: [tournament_invite_code_uses_bool_exp!] - invite_code: tournament_invite_codes_bool_exp - invite_code_id: uuid_comparison_exp - player: players_bool_exp - player_steam_id: bigint_comparison_exp - team: teams_bool_exp - team_id: uuid_comparison_exp - used_at: timestamptz_comparison_exp -} - -""" -unique or primary key constraints on table "tournament_invite_code_uses" -""" -enum tournament_invite_code_uses_constraint { - """ - unique or primary key constraint on columns "player_steam_id", "invite_code_id" - """ - tournament_invite_code_uses_pkey -} - -""" -input type for incrementing numeric columns in table "tournament_invite_code_uses" -""" -input tournament_invite_code_uses_inc_input { - player_steam_id: bigint -} - -""" -input type for inserting data into table "tournament_invite_code_uses" -""" -input tournament_invite_code_uses_insert_input { - invite_code: tournament_invite_codes_obj_rel_insert_input - invite_code_id: uuid - player: players_obj_rel_insert_input - player_steam_id: bigint - team: teams_obj_rel_insert_input - team_id: uuid - used_at: timestamptz -} - -"""aggregate max on columns""" -type tournament_invite_code_uses_max_fields { - invite_code_id: uuid - player_steam_id: bigint - team_id: uuid - used_at: timestamptz -} - -""" -order by max() on columns of table "tournament_invite_code_uses" -""" -input tournament_invite_code_uses_max_order_by { - invite_code_id: order_by - player_steam_id: order_by - team_id: order_by - used_at: order_by -} - -"""aggregate min on columns""" -type tournament_invite_code_uses_min_fields { - invite_code_id: uuid - player_steam_id: bigint - team_id: uuid - used_at: timestamptz -} - -""" -order by min() on columns of table "tournament_invite_code_uses" -""" -input tournament_invite_code_uses_min_order_by { - invite_code_id: order_by - player_steam_id: order_by - team_id: order_by - used_at: order_by -} - -""" -response of any mutation on the table "tournament_invite_code_uses" -""" -type tournament_invite_code_uses_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [tournament_invite_code_uses!]! -} - -""" -on_conflict condition type for table "tournament_invite_code_uses" -""" -input tournament_invite_code_uses_on_conflict { - constraint: tournament_invite_code_uses_constraint! - update_columns: [tournament_invite_code_uses_update_column!]! = [] - where: tournament_invite_code_uses_bool_exp -} - -""" -Ordering options when selecting data from "tournament_invite_code_uses". -""" -input tournament_invite_code_uses_order_by { - invite_code: tournament_invite_codes_order_by - invite_code_id: order_by - player: players_order_by - player_steam_id: order_by - team: teams_order_by - team_id: order_by - used_at: order_by -} - -"""primary key columns input for table: tournament_invite_code_uses""" -input tournament_invite_code_uses_pk_columns_input { - invite_code_id: uuid! - player_steam_id: bigint! -} - -""" -select columns of table "tournament_invite_code_uses" -""" -enum tournament_invite_code_uses_select_column { - """column name""" - invite_code_id - - """column name""" - player_steam_id - - """column name""" - team_id - - """column name""" - used_at -} - -""" -input type for updating data in table "tournament_invite_code_uses" -""" -input tournament_invite_code_uses_set_input { - invite_code_id: uuid - player_steam_id: bigint - team_id: uuid - used_at: timestamptz -} - -"""aggregate stddev on columns""" -type tournament_invite_code_uses_stddev_fields { - player_steam_id: Float -} - -""" -order by stddev() on columns of table "tournament_invite_code_uses" -""" -input tournament_invite_code_uses_stddev_order_by { - player_steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type tournament_invite_code_uses_stddev_pop_fields { - player_steam_id: Float -} - -""" -order by stddev_pop() on columns of table "tournament_invite_code_uses" -""" -input tournament_invite_code_uses_stddev_pop_order_by { - player_steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type tournament_invite_code_uses_stddev_samp_fields { - player_steam_id: Float -} - -""" -order by stddev_samp() on columns of table "tournament_invite_code_uses" -""" -input tournament_invite_code_uses_stddev_samp_order_by { - player_steam_id: order_by -} - -""" -Streaming cursor of the table "tournament_invite_code_uses" -""" -input tournament_invite_code_uses_stream_cursor_input { - """Stream column input with initial value""" - initial_value: tournament_invite_code_uses_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input tournament_invite_code_uses_stream_cursor_value_input { - invite_code_id: uuid - player_steam_id: bigint - team_id: uuid - used_at: timestamptz -} - -"""aggregate sum on columns""" -type tournament_invite_code_uses_sum_fields { - player_steam_id: bigint -} - -""" -order by sum() on columns of table "tournament_invite_code_uses" -""" -input tournament_invite_code_uses_sum_order_by { - player_steam_id: order_by -} - -""" -update columns of table "tournament_invite_code_uses" -""" -enum tournament_invite_code_uses_update_column { - """column name""" - invite_code_id - - """column name""" - player_steam_id - - """column name""" - team_id - - """column name""" - used_at -} - -input tournament_invite_code_uses_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_invite_code_uses_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_invite_code_uses_set_input - - """filter the rows which have to be updated""" - where: tournament_invite_code_uses_bool_exp! -} - -"""aggregate var_pop on columns""" -type tournament_invite_code_uses_var_pop_fields { - player_steam_id: Float -} - -""" -order by var_pop() on columns of table "tournament_invite_code_uses" -""" -input tournament_invite_code_uses_var_pop_order_by { - player_steam_id: order_by -} - -"""aggregate var_samp on columns""" -type tournament_invite_code_uses_var_samp_fields { - player_steam_id: Float -} - -""" -order by var_samp() on columns of table "tournament_invite_code_uses" -""" -input tournament_invite_code_uses_var_samp_order_by { - player_steam_id: order_by -} - -"""aggregate variance on columns""" -type tournament_invite_code_uses_variance_fields { - player_steam_id: Float -} - -""" -order by variance() on columns of table "tournament_invite_code_uses" -""" -input tournament_invite_code_uses_variance_order_by { - player_steam_id: order_by -} - -""" -columns and relationships of "tournament_invite_codes" -""" -type tournament_invite_codes { - code: String! - created_at: timestamptz! - - """An object relationship""" - created_by: players! - created_by_player_steam_id: bigint! - expires_at: timestamptz - id: uuid! - max_uses: Int - revoked_at: timestamptz - - """An object relationship""" - tournament: tournaments! - tournament_id: uuid! - - """An array relationship""" - used_by( - """distinct select on columns""" - distinct_on: [tournament_invite_code_uses_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_invite_code_uses_order_by!] - - """filter the rows returned""" - where: tournament_invite_code_uses_bool_exp - ): [tournament_invite_code_uses!]! - - """An aggregate relationship""" - used_by_aggregate( - """distinct select on columns""" - distinct_on: [tournament_invite_code_uses_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_invite_code_uses_order_by!] - - """filter the rows returned""" - where: tournament_invite_code_uses_bool_exp - ): tournament_invite_code_uses_aggregate! - uses: Int! -} - -""" -aggregated selection of "tournament_invite_codes" -""" -type tournament_invite_codes_aggregate { - aggregate: tournament_invite_codes_aggregate_fields - nodes: [tournament_invite_codes!]! -} - -""" -aggregate fields of "tournament_invite_codes" -""" -type tournament_invite_codes_aggregate_fields { - avg: tournament_invite_codes_avg_fields - count(columns: [tournament_invite_codes_select_column!], distinct: Boolean): Int! - max: tournament_invite_codes_max_fields - min: tournament_invite_codes_min_fields - stddev: tournament_invite_codes_stddev_fields - stddev_pop: tournament_invite_codes_stddev_pop_fields - stddev_samp: tournament_invite_codes_stddev_samp_fields - sum: tournament_invite_codes_sum_fields - var_pop: tournament_invite_codes_var_pop_fields - var_samp: tournament_invite_codes_var_samp_fields - variance: tournament_invite_codes_variance_fields -} - -"""aggregate avg on columns""" -type tournament_invite_codes_avg_fields { - created_by_player_steam_id: Float - max_uses: Float - uses: Float -} - -""" -Boolean expression to filter rows from the table "tournament_invite_codes". All fields are combined with a logical 'AND'. -""" -input tournament_invite_codes_bool_exp { - _and: [tournament_invite_codes_bool_exp!] - _not: tournament_invite_codes_bool_exp - _or: [tournament_invite_codes_bool_exp!] - code: String_comparison_exp - created_at: timestamptz_comparison_exp - created_by: players_bool_exp - created_by_player_steam_id: bigint_comparison_exp - expires_at: timestamptz_comparison_exp - id: uuid_comparison_exp - max_uses: Int_comparison_exp - revoked_at: timestamptz_comparison_exp - tournament: tournaments_bool_exp - tournament_id: uuid_comparison_exp - used_by: tournament_invite_code_uses_bool_exp - used_by_aggregate: tournament_invite_code_uses_aggregate_bool_exp - uses: Int_comparison_exp -} - -""" -unique or primary key constraints on table "tournament_invite_codes" -""" -enum tournament_invite_codes_constraint { - """ - unique or primary key constraint on columns "code" - """ - tournament_invite_codes_code_key - - """ - unique or primary key constraint on columns "id" - """ - tournament_invite_codes_pkey -} - -""" -input type for incrementing numeric columns in table "tournament_invite_codes" -""" -input tournament_invite_codes_inc_input { - created_by_player_steam_id: bigint - max_uses: Int - uses: Int -} - -""" -input type for inserting data into table "tournament_invite_codes" -""" -input tournament_invite_codes_insert_input { - code: String - created_at: timestamptz - created_by: players_obj_rel_insert_input - created_by_player_steam_id: bigint - expires_at: timestamptz - id: uuid - max_uses: Int - revoked_at: timestamptz - tournament: tournaments_obj_rel_insert_input - tournament_id: uuid - used_by: tournament_invite_code_uses_arr_rel_insert_input - uses: Int -} - -"""aggregate max on columns""" -type tournament_invite_codes_max_fields { - code: String - created_at: timestamptz - created_by_player_steam_id: bigint - expires_at: timestamptz - id: uuid - max_uses: Int - revoked_at: timestamptz - tournament_id: uuid - uses: Int -} - -"""aggregate min on columns""" -type tournament_invite_codes_min_fields { - code: String - created_at: timestamptz - created_by_player_steam_id: bigint - expires_at: timestamptz - id: uuid - max_uses: Int - revoked_at: timestamptz - tournament_id: uuid - uses: Int -} - -""" -response of any mutation on the table "tournament_invite_codes" -""" -type tournament_invite_codes_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [tournament_invite_codes!]! -} - -""" -input type for inserting object relation for remote table "tournament_invite_codes" -""" -input tournament_invite_codes_obj_rel_insert_input { - data: tournament_invite_codes_insert_input! - - """upsert condition""" - on_conflict: tournament_invite_codes_on_conflict -} - -""" -on_conflict condition type for table "tournament_invite_codes" -""" -input tournament_invite_codes_on_conflict { - constraint: tournament_invite_codes_constraint! - update_columns: [tournament_invite_codes_update_column!]! = [] - where: tournament_invite_codes_bool_exp -} - -"""Ordering options when selecting data from "tournament_invite_codes".""" -input tournament_invite_codes_order_by { - code: order_by - created_at: order_by - created_by: players_order_by - created_by_player_steam_id: order_by - expires_at: order_by - id: order_by - max_uses: order_by - revoked_at: order_by - tournament: tournaments_order_by - tournament_id: order_by - used_by_aggregate: tournament_invite_code_uses_aggregate_order_by - uses: order_by -} - -"""primary key columns input for table: tournament_invite_codes""" -input tournament_invite_codes_pk_columns_input { - id: uuid! -} - -""" -select columns of table "tournament_invite_codes" -""" -enum tournament_invite_codes_select_column { - """column name""" - code - - """column name""" - created_at - - """column name""" - created_by_player_steam_id - - """column name""" - expires_at - - """column name""" - id - - """column name""" - max_uses - - """column name""" - revoked_at - - """column name""" - tournament_id - - """column name""" - uses -} - -""" -input type for updating data in table "tournament_invite_codes" -""" -input tournament_invite_codes_set_input { - code: String - created_at: timestamptz - created_by_player_steam_id: bigint - expires_at: timestamptz - id: uuid - max_uses: Int - revoked_at: timestamptz - tournament_id: uuid - uses: Int -} - -"""aggregate stddev on columns""" -type tournament_invite_codes_stddev_fields { - created_by_player_steam_id: Float - max_uses: Float - uses: Float -} - -"""aggregate stddev_pop on columns""" -type tournament_invite_codes_stddev_pop_fields { - created_by_player_steam_id: Float - max_uses: Float - uses: Float -} - -"""aggregate stddev_samp on columns""" -type tournament_invite_codes_stddev_samp_fields { - created_by_player_steam_id: Float - max_uses: Float - uses: Float -} - -""" -Streaming cursor of the table "tournament_invite_codes" -""" -input tournament_invite_codes_stream_cursor_input { - """Stream column input with initial value""" - initial_value: tournament_invite_codes_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input tournament_invite_codes_stream_cursor_value_input { - code: String - created_at: timestamptz - created_by_player_steam_id: bigint - expires_at: timestamptz - id: uuid - max_uses: Int - revoked_at: timestamptz - tournament_id: uuid - uses: Int -} - -"""aggregate sum on columns""" -type tournament_invite_codes_sum_fields { - created_by_player_steam_id: bigint - max_uses: Int - uses: Int -} - -""" -update columns of table "tournament_invite_codes" -""" -enum tournament_invite_codes_update_column { - """column name""" - code - - """column name""" - created_at - - """column name""" - created_by_player_steam_id - - """column name""" - expires_at - - """column name""" - id - - """column name""" - max_uses - - """column name""" - revoked_at - - """column name""" - tournament_id - - """column name""" - uses -} - -input tournament_invite_codes_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_invite_codes_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_invite_codes_set_input - - """filter the rows which have to be updated""" - where: tournament_invite_codes_bool_exp! -} - -"""aggregate var_pop on columns""" -type tournament_invite_codes_var_pop_fields { - created_by_player_steam_id: Float - max_uses: Float - uses: Float -} - -"""aggregate var_samp on columns""" -type tournament_invite_codes_var_samp_fields { - created_by_player_steam_id: Float - max_uses: Float - uses: Float -} - -"""aggregate variance on columns""" -type tournament_invite_codes_variance_fields { - created_by_player_steam_id: Float - max_uses: Float - uses: Float -} - -""" -columns and relationships of "tournament_invites" -""" -type tournament_invites { - created_at: timestamptz! - id: uuid! - - """An object relationship""" - invited_by: players! - invited_by_player_steam_id: bigint! - - """An object relationship""" - player: players - steam_id: bigint - - """An object relationship""" - team: teams - team_id: uuid - - """An object relationship""" - tournament: tournaments! - tournament_id: uuid! -} - -""" -aggregated selection of "tournament_invites" -""" -type tournament_invites_aggregate { - aggregate: tournament_invites_aggregate_fields - nodes: [tournament_invites!]! -} - -""" -aggregate fields of "tournament_invites" -""" -type tournament_invites_aggregate_fields { - avg: tournament_invites_avg_fields - count(columns: [tournament_invites_select_column!], distinct: Boolean): Int! - max: tournament_invites_max_fields - min: tournament_invites_min_fields - stddev: tournament_invites_stddev_fields - stddev_pop: tournament_invites_stddev_pop_fields - stddev_samp: tournament_invites_stddev_samp_fields - sum: tournament_invites_sum_fields - var_pop: tournament_invites_var_pop_fields - var_samp: tournament_invites_var_samp_fields - variance: tournament_invites_variance_fields -} - -"""aggregate avg on columns""" -type tournament_invites_avg_fields { - invited_by_player_steam_id: Float - steam_id: Float -} - -""" -Boolean expression to filter rows from the table "tournament_invites". All fields are combined with a logical 'AND'. -""" -input tournament_invites_bool_exp { - _and: [tournament_invites_bool_exp!] - _not: tournament_invites_bool_exp - _or: [tournament_invites_bool_exp!] - created_at: timestamptz_comparison_exp - id: uuid_comparison_exp - invited_by: players_bool_exp - invited_by_player_steam_id: bigint_comparison_exp - player: players_bool_exp - steam_id: bigint_comparison_exp - team: teams_bool_exp - team_id: uuid_comparison_exp - tournament: tournaments_bool_exp - tournament_id: uuid_comparison_exp -} - -""" -unique or primary key constraints on table "tournament_invites" -""" -enum tournament_invites_constraint { - """ - unique or primary key constraint on columns "steam_id", "tournament_id" - """ - idx_tournament_invites_player_unique - - """ - unique or primary key constraint on columns "tournament_id", "team_id" - """ - idx_tournament_invites_team_unique - - """ - unique or primary key constraint on columns "id" - """ - tournament_invites_pkey -} - -""" -input type for incrementing numeric columns in table "tournament_invites" -""" -input tournament_invites_inc_input { - invited_by_player_steam_id: bigint - steam_id: bigint -} - -""" -input type for inserting data into table "tournament_invites" -""" -input tournament_invites_insert_input { - created_at: timestamptz - id: uuid - invited_by: players_obj_rel_insert_input - invited_by_player_steam_id: bigint - player: players_obj_rel_insert_input - steam_id: bigint - team: teams_obj_rel_insert_input - team_id: uuid - tournament: tournaments_obj_rel_insert_input - tournament_id: uuid -} - -"""aggregate max on columns""" -type tournament_invites_max_fields { - created_at: timestamptz - id: uuid - invited_by_player_steam_id: bigint - steam_id: bigint - team_id: uuid - tournament_id: uuid -} - -"""aggregate min on columns""" -type tournament_invites_min_fields { - created_at: timestamptz - id: uuid - invited_by_player_steam_id: bigint - steam_id: bigint - team_id: uuid - tournament_id: uuid -} - -""" -response of any mutation on the table "tournament_invites" -""" -type tournament_invites_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [tournament_invites!]! -} - -""" -on_conflict condition type for table "tournament_invites" -""" -input tournament_invites_on_conflict { - constraint: tournament_invites_constraint! - update_columns: [tournament_invites_update_column!]! = [] - where: tournament_invites_bool_exp -} - -"""Ordering options when selecting data from "tournament_invites".""" -input tournament_invites_order_by { - created_at: order_by - id: order_by - invited_by: players_order_by - invited_by_player_steam_id: order_by - player: players_order_by - steam_id: order_by - team: teams_order_by - team_id: order_by - tournament: tournaments_order_by - tournament_id: order_by -} - -"""primary key columns input for table: tournament_invites""" -input tournament_invites_pk_columns_input { - id: uuid! -} - -""" -select columns of table "tournament_invites" -""" -enum tournament_invites_select_column { - """column name""" - created_at - - """column name""" - id - - """column name""" - invited_by_player_steam_id - - """column name""" - steam_id - - """column name""" - team_id - - """column name""" - tournament_id -} - -""" -input type for updating data in table "tournament_invites" -""" -input tournament_invites_set_input { - created_at: timestamptz - id: uuid - invited_by_player_steam_id: bigint - steam_id: bigint - team_id: uuid - tournament_id: uuid -} - -"""aggregate stddev on columns""" -type tournament_invites_stddev_fields { - invited_by_player_steam_id: Float - steam_id: Float -} - -"""aggregate stddev_pop on columns""" -type tournament_invites_stddev_pop_fields { - invited_by_player_steam_id: Float - steam_id: Float -} - -"""aggregate stddev_samp on columns""" -type tournament_invites_stddev_samp_fields { - invited_by_player_steam_id: Float - steam_id: Float -} - -""" -Streaming cursor of the table "tournament_invites" -""" -input tournament_invites_stream_cursor_input { - """Stream column input with initial value""" - initial_value: tournament_invites_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input tournament_invites_stream_cursor_value_input { - created_at: timestamptz - id: uuid - invited_by_player_steam_id: bigint - steam_id: bigint - team_id: uuid - tournament_id: uuid -} - -"""aggregate sum on columns""" -type tournament_invites_sum_fields { - invited_by_player_steam_id: bigint - steam_id: bigint -} - -""" -update columns of table "tournament_invites" -""" -enum tournament_invites_update_column { - """column name""" - created_at - - """column name""" - id - - """column name""" - invited_by_player_steam_id - - """column name""" - steam_id - - """column name""" - team_id - - """column name""" - tournament_id -} - -input tournament_invites_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_invites_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_invites_set_input - - """filter the rows which have to be updated""" - where: tournament_invites_bool_exp! -} - -"""aggregate var_pop on columns""" -type tournament_invites_var_pop_fields { - invited_by_player_steam_id: Float - steam_id: Float -} - -"""aggregate var_samp on columns""" -type tournament_invites_var_samp_fields { - invited_by_player_steam_id: Float - steam_id: Float -} - -"""aggregate variance on columns""" -type tournament_invites_variance_fields { - invited_by_player_steam_id: Float - steam_id: Float -} - -""" -columns and relationships of "tournament_leaderboard_entries" -""" -type tournament_leaderboard_entries { - adr: float8! - assists: Int! - deaths: Int! - headshot_percentage: float8! - kdr: float8! - kills: Int! - matches_played: Int! - player_avatar_url: String - player_country: String - player_custom_avatar_url: String - player_name: String! - player_steam_id: String! - rating: float8! - rounds_played: Int! - team_name: String - tournament_team_id: uuid -} - -type tournament_leaderboard_entries_aggregate { - aggregate: tournament_leaderboard_entries_aggregate_fields - nodes: [tournament_leaderboard_entries!]! -} - -""" -aggregate fields of "tournament_leaderboard_entries" -""" -type tournament_leaderboard_entries_aggregate_fields { - avg: tournament_leaderboard_entries_avg_fields - count(columns: [tournament_leaderboard_entries_select_column!], distinct: Boolean): Int! - max: tournament_leaderboard_entries_max_fields - min: tournament_leaderboard_entries_min_fields - stddev: tournament_leaderboard_entries_stddev_fields - stddev_pop: tournament_leaderboard_entries_stddev_pop_fields - stddev_samp: tournament_leaderboard_entries_stddev_samp_fields - sum: tournament_leaderboard_entries_sum_fields - var_pop: tournament_leaderboard_entries_var_pop_fields - var_samp: tournament_leaderboard_entries_var_samp_fields - variance: tournament_leaderboard_entries_variance_fields -} - -"""aggregate avg on columns""" -type tournament_leaderboard_entries_avg_fields { - adr: Float - assists: Float - deaths: Float - headshot_percentage: Float - kdr: Float - kills: Float - matches_played: Float - rating: Float - rounds_played: Float -} - -""" -Boolean expression to filter rows from the table "tournament_leaderboard_entries". All fields are combined with a logical 'AND'. -""" -input tournament_leaderboard_entries_bool_exp { - _and: [tournament_leaderboard_entries_bool_exp!] - _not: tournament_leaderboard_entries_bool_exp - _or: [tournament_leaderboard_entries_bool_exp!] - adr: float8_comparison_exp - assists: Int_comparison_exp - deaths: Int_comparison_exp - headshot_percentage: float8_comparison_exp - kdr: float8_comparison_exp - kills: Int_comparison_exp - matches_played: Int_comparison_exp - player_avatar_url: String_comparison_exp - player_country: String_comparison_exp - player_custom_avatar_url: String_comparison_exp - player_name: String_comparison_exp - player_steam_id: String_comparison_exp - rating: float8_comparison_exp - rounds_played: Int_comparison_exp - team_name: String_comparison_exp - tournament_team_id: uuid_comparison_exp -} - -""" -input type for incrementing numeric columns in table "tournament_leaderboard_entries" -""" -input tournament_leaderboard_entries_inc_input { - adr: float8 - assists: Int - deaths: Int - headshot_percentage: float8 - kdr: float8 - kills: Int - matches_played: Int - rating: float8 - rounds_played: Int -} - -""" -input type for inserting data into table "tournament_leaderboard_entries" -""" -input tournament_leaderboard_entries_insert_input { - adr: float8 - assists: Int - deaths: Int - headshot_percentage: float8 - kdr: float8 - kills: Int - matches_played: Int - player_avatar_url: String - player_country: String - player_custom_avatar_url: String - player_name: String - player_steam_id: String - rating: float8 - rounds_played: Int - team_name: String - tournament_team_id: uuid -} - -"""aggregate max on columns""" -type tournament_leaderboard_entries_max_fields { - adr: float8 - assists: Int - deaths: Int - headshot_percentage: float8 - kdr: float8 - kills: Int - matches_played: Int - player_avatar_url: String - player_country: String - player_custom_avatar_url: String - player_name: String - player_steam_id: String - rating: float8 - rounds_played: Int - team_name: String - tournament_team_id: uuid -} - -"""aggregate min on columns""" -type tournament_leaderboard_entries_min_fields { - adr: float8 - assists: Int - deaths: Int - headshot_percentage: float8 - kdr: float8 - kills: Int - matches_played: Int - player_avatar_url: String - player_country: String - player_custom_avatar_url: String - player_name: String - player_steam_id: String - rating: float8 - rounds_played: Int - team_name: String - tournament_team_id: uuid -} - -""" -response of any mutation on the table "tournament_leaderboard_entries" -""" -type tournament_leaderboard_entries_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [tournament_leaderboard_entries!]! -} - -""" -Ordering options when selecting data from "tournament_leaderboard_entries". -""" -input tournament_leaderboard_entries_order_by { - adr: order_by - assists: order_by - deaths: order_by - headshot_percentage: order_by - kdr: order_by - kills: order_by - matches_played: order_by - player_avatar_url: order_by - player_country: order_by - player_custom_avatar_url: order_by - player_name: order_by - player_steam_id: order_by - rating: order_by - rounds_played: order_by - team_name: order_by - tournament_team_id: order_by -} - -""" -select columns of table "tournament_leaderboard_entries" -""" -enum tournament_leaderboard_entries_select_column { - """column name""" - adr - - """column name""" - assists - - """column name""" - deaths - - """column name""" - headshot_percentage - - """column name""" - kdr - - """column name""" - kills - - """column name""" - matches_played - - """column name""" - player_avatar_url - - """column name""" - player_country - - """column name""" - player_custom_avatar_url - - """column name""" - player_name - - """column name""" - player_steam_id - - """column name""" - rating - - """column name""" - rounds_played - - """column name""" - team_name - - """column name""" - tournament_team_id -} - -""" -input type for updating data in table "tournament_leaderboard_entries" -""" -input tournament_leaderboard_entries_set_input { - adr: float8 - assists: Int - deaths: Int - headshot_percentage: float8 - kdr: float8 - kills: Int - matches_played: Int - player_avatar_url: String - player_country: String - player_custom_avatar_url: String - player_name: String - player_steam_id: String - rating: float8 - rounds_played: Int - team_name: String - tournament_team_id: uuid -} - -"""aggregate stddev on columns""" -type tournament_leaderboard_entries_stddev_fields { - adr: Float - assists: Float - deaths: Float - headshot_percentage: Float - kdr: Float - kills: Float - matches_played: Float - rating: Float - rounds_played: Float -} - -"""aggregate stddev_pop on columns""" -type tournament_leaderboard_entries_stddev_pop_fields { - adr: Float - assists: Float - deaths: Float - headshot_percentage: Float - kdr: Float - kills: Float - matches_played: Float - rating: Float - rounds_played: Float -} - -"""aggregate stddev_samp on columns""" -type tournament_leaderboard_entries_stddev_samp_fields { - adr: Float - assists: Float - deaths: Float - headshot_percentage: Float - kdr: Float - kills: Float - matches_played: Float - rating: Float - rounds_played: Float -} - -""" -Streaming cursor of the table "tournament_leaderboard_entries" -""" -input tournament_leaderboard_entries_stream_cursor_input { - """Stream column input with initial value""" - initial_value: tournament_leaderboard_entries_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input tournament_leaderboard_entries_stream_cursor_value_input { - adr: float8 - assists: Int - deaths: Int - headshot_percentage: float8 - kdr: float8 - kills: Int - matches_played: Int - player_avatar_url: String - player_country: String - player_custom_avatar_url: String - player_name: String - player_steam_id: String - rating: float8 - rounds_played: Int - team_name: String - tournament_team_id: uuid -} - -"""aggregate sum on columns""" -type tournament_leaderboard_entries_sum_fields { - adr: float8 - assists: Int - deaths: Int - headshot_percentage: float8 - kdr: float8 - kills: Int - matches_played: Int - rating: float8 - rounds_played: Int -} - -input tournament_leaderboard_entries_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_leaderboard_entries_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_leaderboard_entries_set_input - - """filter the rows which have to be updated""" - where: tournament_leaderboard_entries_bool_exp! -} - -"""aggregate var_pop on columns""" -type tournament_leaderboard_entries_var_pop_fields { - adr: Float - assists: Float - deaths: Float - headshot_percentage: Float - kdr: Float - kills: Float - matches_played: Float - rating: Float - rounds_played: Float -} - -"""aggregate var_samp on columns""" -type tournament_leaderboard_entries_var_samp_fields { - adr: Float - assists: Float - deaths: Float - headshot_percentage: Float - kdr: Float - kills: Float - matches_played: Float - rating: Float - rounds_played: Float -} - -"""aggregate variance on columns""" -type tournament_leaderboard_entries_variance_fields { - adr: Float - assists: Float - deaths: Float - headshot_percentage: Float - kdr: Float - kills: Float - matches_played: Float - rating: Float - rounds_played: Float -} - -""" -columns and relationships of "tournament_no_shows" -""" -type tournament_no_shows { - id: uuid! - occurred_at: timestamptz! - - """An object relationship""" - player: players! - player_steam_id: bigint! - - """An object relationship""" - tournament: tournaments! - tournament_id: uuid! - - """An object relationship""" - tournament_team: tournament_teams - tournament_team_id: uuid -} - -""" -aggregated selection of "tournament_no_shows" -""" -type tournament_no_shows_aggregate { - aggregate: tournament_no_shows_aggregate_fields - nodes: [tournament_no_shows!]! -} - -""" -aggregate fields of "tournament_no_shows" -""" -type tournament_no_shows_aggregate_fields { - avg: tournament_no_shows_avg_fields - count(columns: [tournament_no_shows_select_column!], distinct: Boolean): Int! - max: tournament_no_shows_max_fields - min: tournament_no_shows_min_fields - stddev: tournament_no_shows_stddev_fields - stddev_pop: tournament_no_shows_stddev_pop_fields - stddev_samp: tournament_no_shows_stddev_samp_fields - sum: tournament_no_shows_sum_fields - var_pop: tournament_no_shows_var_pop_fields - var_samp: tournament_no_shows_var_samp_fields - variance: tournament_no_shows_variance_fields -} - -"""aggregate avg on columns""" -type tournament_no_shows_avg_fields { - player_steam_id: Float -} - -""" -Boolean expression to filter rows from the table "tournament_no_shows". All fields are combined with a logical 'AND'. -""" -input tournament_no_shows_bool_exp { - _and: [tournament_no_shows_bool_exp!] - _not: tournament_no_shows_bool_exp - _or: [tournament_no_shows_bool_exp!] - id: uuid_comparison_exp - occurred_at: timestamptz_comparison_exp - player: players_bool_exp - player_steam_id: bigint_comparison_exp - tournament: tournaments_bool_exp - tournament_id: uuid_comparison_exp - tournament_team: tournament_teams_bool_exp - tournament_team_id: uuid_comparison_exp -} - -""" -unique or primary key constraints on table "tournament_no_shows" -""" -enum tournament_no_shows_constraint { - """ - unique or primary key constraint on columns "id" - """ - tournament_no_shows_pkey - - """ - unique or primary key constraint on columns "player_steam_id", "tournament_id" - """ - tournament_no_shows_tournament_player_key -} - -""" -input type for incrementing numeric columns in table "tournament_no_shows" -""" -input tournament_no_shows_inc_input { - player_steam_id: bigint -} - -""" -input type for inserting data into table "tournament_no_shows" -""" -input tournament_no_shows_insert_input { - id: uuid - occurred_at: timestamptz - player: players_obj_rel_insert_input - player_steam_id: bigint - tournament: tournaments_obj_rel_insert_input - tournament_id: uuid - tournament_team: tournament_teams_obj_rel_insert_input - tournament_team_id: uuid -} - -"""aggregate max on columns""" -type tournament_no_shows_max_fields { - id: uuid - occurred_at: timestamptz - player_steam_id: bigint - tournament_id: uuid - tournament_team_id: uuid -} - -"""aggregate min on columns""" -type tournament_no_shows_min_fields { - id: uuid - occurred_at: timestamptz - player_steam_id: bigint - tournament_id: uuid - tournament_team_id: uuid -} - -""" -response of any mutation on the table "tournament_no_shows" -""" -type tournament_no_shows_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [tournament_no_shows!]! -} - -""" -on_conflict condition type for table "tournament_no_shows" -""" -input tournament_no_shows_on_conflict { - constraint: tournament_no_shows_constraint! - update_columns: [tournament_no_shows_update_column!]! = [] - where: tournament_no_shows_bool_exp -} - -"""Ordering options when selecting data from "tournament_no_shows".""" -input tournament_no_shows_order_by { - id: order_by - occurred_at: order_by - player: players_order_by - player_steam_id: order_by - tournament: tournaments_order_by - tournament_id: order_by - tournament_team: tournament_teams_order_by - tournament_team_id: order_by -} - -"""primary key columns input for table: tournament_no_shows""" -input tournament_no_shows_pk_columns_input { - id: uuid! -} - -""" -select columns of table "tournament_no_shows" -""" -enum tournament_no_shows_select_column { - """column name""" - id - - """column name""" - occurred_at - - """column name""" - player_steam_id - - """column name""" - tournament_id - - """column name""" - tournament_team_id -} - -""" -input type for updating data in table "tournament_no_shows" -""" -input tournament_no_shows_set_input { - id: uuid - occurred_at: timestamptz - player_steam_id: bigint - tournament_id: uuid - tournament_team_id: uuid -} - -"""aggregate stddev on columns""" -type tournament_no_shows_stddev_fields { - player_steam_id: Float -} - -"""aggregate stddev_pop on columns""" -type tournament_no_shows_stddev_pop_fields { - player_steam_id: Float -} - -"""aggregate stddev_samp on columns""" -type tournament_no_shows_stddev_samp_fields { - player_steam_id: Float -} - -""" -Streaming cursor of the table "tournament_no_shows" -""" -input tournament_no_shows_stream_cursor_input { - """Stream column input with initial value""" - initial_value: tournament_no_shows_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input tournament_no_shows_stream_cursor_value_input { - id: uuid - occurred_at: timestamptz - player_steam_id: bigint - tournament_id: uuid - tournament_team_id: uuid -} - -"""aggregate sum on columns""" -type tournament_no_shows_sum_fields { - player_steam_id: bigint -} - -""" -update columns of table "tournament_no_shows" -""" -enum tournament_no_shows_update_column { - """column name""" - id - - """column name""" - occurred_at - - """column name""" - player_steam_id - - """column name""" - tournament_id - - """column name""" - tournament_team_id -} - -input tournament_no_shows_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_no_shows_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_no_shows_set_input - - """filter the rows which have to be updated""" - where: tournament_no_shows_bool_exp! -} - -"""aggregate var_pop on columns""" -type tournament_no_shows_var_pop_fields { - player_steam_id: Float -} - -"""aggregate var_samp on columns""" -type tournament_no_shows_var_samp_fields { - player_steam_id: Float -} - -"""aggregate variance on columns""" -type tournament_no_shows_variance_fields { - player_steam_id: Float -} - -""" -columns and relationships of "tournament_organizer_teams" -""" -type tournament_organizer_teams { - created_at: timestamptz! - - """An object relationship""" - team: teams! - team_id: uuid! - - """An object relationship""" - tournament: tournaments! - tournament_id: uuid! -} - -""" -aggregated selection of "tournament_organizer_teams" -""" -type tournament_organizer_teams_aggregate { - aggregate: tournament_organizer_teams_aggregate_fields - nodes: [tournament_organizer_teams!]! -} - -input tournament_organizer_teams_aggregate_bool_exp { - count: tournament_organizer_teams_aggregate_bool_exp_count -} - -input tournament_organizer_teams_aggregate_bool_exp_count { - arguments: [tournament_organizer_teams_select_column!] - distinct: Boolean - filter: tournament_organizer_teams_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "tournament_organizer_teams" -""" -type tournament_organizer_teams_aggregate_fields { - count(columns: [tournament_organizer_teams_select_column!], distinct: Boolean): Int! - max: tournament_organizer_teams_max_fields - min: tournament_organizer_teams_min_fields -} - -""" -order by aggregate values of table "tournament_organizer_teams" -""" -input tournament_organizer_teams_aggregate_order_by { - count: order_by - max: tournament_organizer_teams_max_order_by - min: tournament_organizer_teams_min_order_by -} - -""" -input type for inserting array relation for remote table "tournament_organizer_teams" -""" -input tournament_organizer_teams_arr_rel_insert_input { - data: [tournament_organizer_teams_insert_input!]! - - """upsert condition""" - on_conflict: tournament_organizer_teams_on_conflict -} - -""" -Boolean expression to filter rows from the table "tournament_organizer_teams". All fields are combined with a logical 'AND'. -""" -input tournament_organizer_teams_bool_exp { - _and: [tournament_organizer_teams_bool_exp!] - _not: tournament_organizer_teams_bool_exp - _or: [tournament_organizer_teams_bool_exp!] - created_at: timestamptz_comparison_exp - team: teams_bool_exp - team_id: uuid_comparison_exp - tournament: tournaments_bool_exp - tournament_id: uuid_comparison_exp -} - -""" -unique or primary key constraints on table "tournament_organizer_teams" -""" -enum tournament_organizer_teams_constraint { - """ - unique or primary key constraint on columns "tournament_id", "team_id" - """ - tournament_organizer_teams_pkey -} - -""" -input type for inserting data into table "tournament_organizer_teams" -""" -input tournament_organizer_teams_insert_input { - created_at: timestamptz - team: teams_obj_rel_insert_input - team_id: uuid - tournament: tournaments_obj_rel_insert_input - tournament_id: uuid -} - -"""aggregate max on columns""" -type tournament_organizer_teams_max_fields { - created_at: timestamptz - team_id: uuid - tournament_id: uuid -} - -""" -order by max() on columns of table "tournament_organizer_teams" -""" -input tournament_organizer_teams_max_order_by { - created_at: order_by - team_id: order_by - tournament_id: order_by -} - -"""aggregate min on columns""" -type tournament_organizer_teams_min_fields { - created_at: timestamptz - team_id: uuid - tournament_id: uuid -} - -""" -order by min() on columns of table "tournament_organizer_teams" -""" -input tournament_organizer_teams_min_order_by { - created_at: order_by - team_id: order_by - tournament_id: order_by -} - -""" -response of any mutation on the table "tournament_organizer_teams" -""" -type tournament_organizer_teams_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [tournament_organizer_teams!]! -} - -""" -on_conflict condition type for table "tournament_organizer_teams" -""" -input tournament_organizer_teams_on_conflict { - constraint: tournament_organizer_teams_constraint! - update_columns: [tournament_organizer_teams_update_column!]! = [] - where: tournament_organizer_teams_bool_exp -} - -""" -Ordering options when selecting data from "tournament_organizer_teams". -""" -input tournament_organizer_teams_order_by { - created_at: order_by - team: teams_order_by - team_id: order_by - tournament: tournaments_order_by - tournament_id: order_by -} - -"""primary key columns input for table: tournament_organizer_teams""" -input tournament_organizer_teams_pk_columns_input { - team_id: uuid! - tournament_id: uuid! -} - -""" -select columns of table "tournament_organizer_teams" -""" -enum tournament_organizer_teams_select_column { - """column name""" - created_at - - """column name""" - team_id - - """column name""" - tournament_id -} - -""" -input type for updating data in table "tournament_organizer_teams" -""" -input tournament_organizer_teams_set_input { - created_at: timestamptz - team_id: uuid - tournament_id: uuid -} - -""" -Streaming cursor of the table "tournament_organizer_teams" -""" -input tournament_organizer_teams_stream_cursor_input { - """Stream column input with initial value""" - initial_value: tournament_organizer_teams_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input tournament_organizer_teams_stream_cursor_value_input { - created_at: timestamptz - team_id: uuid - tournament_id: uuid -} - -""" -update columns of table "tournament_organizer_teams" -""" -enum tournament_organizer_teams_update_column { - """column name""" - created_at - - """column name""" - team_id - - """column name""" - tournament_id -} - -input tournament_organizer_teams_updates { - """sets the columns of the filtered rows to the given values""" - _set: tournament_organizer_teams_set_input - - """filter the rows which have to be updated""" - where: tournament_organizer_teams_bool_exp! -} - -""" -columns and relationships of "tournament_organizers" -""" -type tournament_organizers { - """An object relationship""" - organization_team: teams - organization_team_id: uuid - - """An object relationship""" - organizer: players! - steam_id: bigint! - - """An object relationship""" - tournament: tournaments! - tournament_id: uuid! -} - -""" -aggregated selection of "tournament_organizers" -""" -type tournament_organizers_aggregate { - aggregate: tournament_organizers_aggregate_fields - nodes: [tournament_organizers!]! -} - -input tournament_organizers_aggregate_bool_exp { - count: tournament_organizers_aggregate_bool_exp_count -} - -input tournament_organizers_aggregate_bool_exp_count { - arguments: [tournament_organizers_select_column!] - distinct: Boolean - filter: tournament_organizers_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "tournament_organizers" -""" -type tournament_organizers_aggregate_fields { - avg: tournament_organizers_avg_fields - count(columns: [tournament_organizers_select_column!], distinct: Boolean): Int! - max: tournament_organizers_max_fields - min: tournament_organizers_min_fields - stddev: tournament_organizers_stddev_fields - stddev_pop: tournament_organizers_stddev_pop_fields - stddev_samp: tournament_organizers_stddev_samp_fields - sum: tournament_organizers_sum_fields - var_pop: tournament_organizers_var_pop_fields - var_samp: tournament_organizers_var_samp_fields - variance: tournament_organizers_variance_fields -} - -""" -order by aggregate values of table "tournament_organizers" -""" -input tournament_organizers_aggregate_order_by { - avg: tournament_organizers_avg_order_by - count: order_by - max: tournament_organizers_max_order_by - min: tournament_organizers_min_order_by - stddev: tournament_organizers_stddev_order_by - stddev_pop: tournament_organizers_stddev_pop_order_by - stddev_samp: tournament_organizers_stddev_samp_order_by - sum: tournament_organizers_sum_order_by - var_pop: tournament_organizers_var_pop_order_by - var_samp: tournament_organizers_var_samp_order_by - variance: tournament_organizers_variance_order_by -} - -""" -input type for inserting array relation for remote table "tournament_organizers" -""" -input tournament_organizers_arr_rel_insert_input { - data: [tournament_organizers_insert_input!]! - - """upsert condition""" - on_conflict: tournament_organizers_on_conflict -} - -"""aggregate avg on columns""" -type tournament_organizers_avg_fields { - steam_id: Float -} - -""" -order by avg() on columns of table "tournament_organizers" -""" -input tournament_organizers_avg_order_by { - steam_id: order_by -} - -""" -Boolean expression to filter rows from the table "tournament_organizers". All fields are combined with a logical 'AND'. -""" -input tournament_organizers_bool_exp { - _and: [tournament_organizers_bool_exp!] - _not: tournament_organizers_bool_exp - _or: [tournament_organizers_bool_exp!] - organization_team: teams_bool_exp - organization_team_id: uuid_comparison_exp - organizer: players_bool_exp - steam_id: bigint_comparison_exp - tournament: tournaments_bool_exp - tournament_id: uuid_comparison_exp -} - -""" -unique or primary key constraints on table "tournament_organizers" -""" -enum tournament_organizers_constraint { - """ - unique or primary key constraint on columns "steam_id", "tournament_id" - """ - tournament_organizers_pkey -} - -""" -input type for incrementing numeric columns in table "tournament_organizers" -""" -input tournament_organizers_inc_input { - steam_id: bigint -} - -""" -input type for inserting data into table "tournament_organizers" -""" -input tournament_organizers_insert_input { - organization_team: teams_obj_rel_insert_input - organization_team_id: uuid - organizer: players_obj_rel_insert_input - steam_id: bigint - tournament: tournaments_obj_rel_insert_input - tournament_id: uuid -} - -"""aggregate max on columns""" -type tournament_organizers_max_fields { - organization_team_id: uuid - steam_id: bigint - tournament_id: uuid -} - -""" -order by max() on columns of table "tournament_organizers" -""" -input tournament_organizers_max_order_by { - organization_team_id: order_by - steam_id: order_by - tournament_id: order_by -} - -"""aggregate min on columns""" -type tournament_organizers_min_fields { - organization_team_id: uuid - steam_id: bigint - tournament_id: uuid -} - -""" -order by min() on columns of table "tournament_organizers" -""" -input tournament_organizers_min_order_by { - organization_team_id: order_by - steam_id: order_by - tournament_id: order_by -} - -""" -response of any mutation on the table "tournament_organizers" -""" -type tournament_organizers_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [tournament_organizers!]! -} - -""" -on_conflict condition type for table "tournament_organizers" -""" -input tournament_organizers_on_conflict { - constraint: tournament_organizers_constraint! - update_columns: [tournament_organizers_update_column!]! = [] - where: tournament_organizers_bool_exp -} - -"""Ordering options when selecting data from "tournament_organizers".""" -input tournament_organizers_order_by { - organization_team: teams_order_by - organization_team_id: order_by - organizer: players_order_by - steam_id: order_by - tournament: tournaments_order_by - tournament_id: order_by -} - -"""primary key columns input for table: tournament_organizers""" -input tournament_organizers_pk_columns_input { - steam_id: bigint! - tournament_id: uuid! -} - -""" -select columns of table "tournament_organizers" -""" -enum tournament_organizers_select_column { - """column name""" - organization_team_id - - """column name""" - steam_id - - """column name""" - tournament_id -} - -""" -input type for updating data in table "tournament_organizers" -""" -input tournament_organizers_set_input { - organization_team_id: uuid - steam_id: bigint - tournament_id: uuid -} - -"""aggregate stddev on columns""" -type tournament_organizers_stddev_fields { - steam_id: Float -} - -""" -order by stddev() on columns of table "tournament_organizers" -""" -input tournament_organizers_stddev_order_by { - steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type tournament_organizers_stddev_pop_fields { - steam_id: Float -} - -""" -order by stddev_pop() on columns of table "tournament_organizers" -""" -input tournament_organizers_stddev_pop_order_by { - steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type tournament_organizers_stddev_samp_fields { - steam_id: Float -} - -""" -order by stddev_samp() on columns of table "tournament_organizers" -""" -input tournament_organizers_stddev_samp_order_by { - steam_id: order_by -} - -""" -Streaming cursor of the table "tournament_organizers" -""" -input tournament_organizers_stream_cursor_input { - """Stream column input with initial value""" - initial_value: tournament_organizers_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input tournament_organizers_stream_cursor_value_input { - organization_team_id: uuid - steam_id: bigint - tournament_id: uuid -} - -"""aggregate sum on columns""" -type tournament_organizers_sum_fields { - steam_id: bigint -} - -""" -order by sum() on columns of table "tournament_organizers" -""" -input tournament_organizers_sum_order_by { - steam_id: order_by -} - -""" -update columns of table "tournament_organizers" -""" -enum tournament_organizers_update_column { - """column name""" - organization_team_id - - """column name""" - steam_id - - """column name""" - tournament_id -} - -input tournament_organizers_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_organizers_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_organizers_set_input - - """filter the rows which have to be updated""" - where: tournament_organizers_bool_exp! -} - -"""aggregate var_pop on columns""" -type tournament_organizers_var_pop_fields { - steam_id: Float -} - -""" -order by var_pop() on columns of table "tournament_organizers" -""" -input tournament_organizers_var_pop_order_by { - steam_id: order_by -} - -"""aggregate var_samp on columns""" -type tournament_organizers_var_samp_fields { - steam_id: Float -} - -""" -order by var_samp() on columns of table "tournament_organizers" -""" -input tournament_organizers_var_samp_order_by { - steam_id: order_by -} - -"""aggregate variance on columns""" -type tournament_organizers_variance_fields { - steam_id: Float -} - -""" -order by variance() on columns of table "tournament_organizers" -""" -input tournament_organizers_variance_order_by { - steam_id: order_by -} - -""" -columns and relationships of "tournament_prizes" -""" -type tournament_prizes { - created_at: timestamptz! - id: uuid! - order: Int! - place: String! - prize: String! - - """An object relationship""" - tournament: tournaments! - tournament_id: uuid! -} - -""" -aggregated selection of "tournament_prizes" -""" -type tournament_prizes_aggregate { - aggregate: tournament_prizes_aggregate_fields - nodes: [tournament_prizes!]! -} - -input tournament_prizes_aggregate_bool_exp { - count: tournament_prizes_aggregate_bool_exp_count -} - -input tournament_prizes_aggregate_bool_exp_count { - arguments: [tournament_prizes_select_column!] - distinct: Boolean - filter: tournament_prizes_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "tournament_prizes" -""" -type tournament_prizes_aggregate_fields { - avg: tournament_prizes_avg_fields - count(columns: [tournament_prizes_select_column!], distinct: Boolean): Int! - max: tournament_prizes_max_fields - min: tournament_prizes_min_fields - stddev: tournament_prizes_stddev_fields - stddev_pop: tournament_prizes_stddev_pop_fields - stddev_samp: tournament_prizes_stddev_samp_fields - sum: tournament_prizes_sum_fields - var_pop: tournament_prizes_var_pop_fields - var_samp: tournament_prizes_var_samp_fields - variance: tournament_prizes_variance_fields -} - -""" -order by aggregate values of table "tournament_prizes" -""" -input tournament_prizes_aggregate_order_by { - avg: tournament_prizes_avg_order_by - count: order_by - max: tournament_prizes_max_order_by - min: tournament_prizes_min_order_by - stddev: tournament_prizes_stddev_order_by - stddev_pop: tournament_prizes_stddev_pop_order_by - stddev_samp: tournament_prizes_stddev_samp_order_by - sum: tournament_prizes_sum_order_by - var_pop: tournament_prizes_var_pop_order_by - var_samp: tournament_prizes_var_samp_order_by - variance: tournament_prizes_variance_order_by -} - -""" -input type for inserting array relation for remote table "tournament_prizes" -""" -input tournament_prizes_arr_rel_insert_input { - data: [tournament_prizes_insert_input!]! - - """upsert condition""" - on_conflict: tournament_prizes_on_conflict -} - -"""aggregate avg on columns""" -type tournament_prizes_avg_fields { - order: Float -} - -""" -order by avg() on columns of table "tournament_prizes" -""" -input tournament_prizes_avg_order_by { - order: order_by -} - -""" -Boolean expression to filter rows from the table "tournament_prizes". All fields are combined with a logical 'AND'. -""" -input tournament_prizes_bool_exp { - _and: [tournament_prizes_bool_exp!] - _not: tournament_prizes_bool_exp - _or: [tournament_prizes_bool_exp!] - created_at: timestamptz_comparison_exp - id: uuid_comparison_exp - order: Int_comparison_exp - place: String_comparison_exp - prize: String_comparison_exp - tournament: tournaments_bool_exp - tournament_id: uuid_comparison_exp -} - -""" -unique or primary key constraints on table "tournament_prizes" -""" -enum tournament_prizes_constraint { - """ - unique or primary key constraint on columns "id" - """ - tournament_prizes_pkey -} - -""" -input type for incrementing numeric columns in table "tournament_prizes" -""" -input tournament_prizes_inc_input { - order: Int -} - -""" -input type for inserting data into table "tournament_prizes" -""" -input tournament_prizes_insert_input { - created_at: timestamptz - id: uuid - order: Int - place: String - prize: String - tournament: tournaments_obj_rel_insert_input - tournament_id: uuid -} - -"""aggregate max on columns""" -type tournament_prizes_max_fields { - created_at: timestamptz - id: uuid - order: Int - place: String - prize: String - tournament_id: uuid -} - -""" -order by max() on columns of table "tournament_prizes" -""" -input tournament_prizes_max_order_by { - created_at: order_by - id: order_by - order: order_by - place: order_by - prize: order_by - tournament_id: order_by -} - -"""aggregate min on columns""" -type tournament_prizes_min_fields { - created_at: timestamptz - id: uuid - order: Int - place: String - prize: String - tournament_id: uuid -} - -""" -order by min() on columns of table "tournament_prizes" -""" -input tournament_prizes_min_order_by { - created_at: order_by - id: order_by - order: order_by - place: order_by - prize: order_by - tournament_id: order_by -} - -""" -response of any mutation on the table "tournament_prizes" -""" -type tournament_prizes_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [tournament_prizes!]! -} - -""" -on_conflict condition type for table "tournament_prizes" -""" -input tournament_prizes_on_conflict { - constraint: tournament_prizes_constraint! - update_columns: [tournament_prizes_update_column!]! = [] - where: tournament_prizes_bool_exp -} - -"""Ordering options when selecting data from "tournament_prizes".""" -input tournament_prizes_order_by { - created_at: order_by - id: order_by - order: order_by - place: order_by - prize: order_by - tournament: tournaments_order_by - tournament_id: order_by -} - -"""primary key columns input for table: tournament_prizes""" -input tournament_prizes_pk_columns_input { - id: uuid! -} - -""" -select columns of table "tournament_prizes" -""" -enum tournament_prizes_select_column { - """column name""" - created_at - - """column name""" - id - - """column name""" - order - - """column name""" - place - - """column name""" - prize - - """column name""" - tournament_id -} - -""" -input type for updating data in table "tournament_prizes" -""" -input tournament_prizes_set_input { - created_at: timestamptz - id: uuid - order: Int - place: String - prize: String - tournament_id: uuid -} - -"""aggregate stddev on columns""" -type tournament_prizes_stddev_fields { - order: Float -} - -""" -order by stddev() on columns of table "tournament_prizes" -""" -input tournament_prizes_stddev_order_by { - order: order_by -} - -"""aggregate stddev_pop on columns""" -type tournament_prizes_stddev_pop_fields { - order: Float -} - -""" -order by stddev_pop() on columns of table "tournament_prizes" -""" -input tournament_prizes_stddev_pop_order_by { - order: order_by -} - -"""aggregate stddev_samp on columns""" -type tournament_prizes_stddev_samp_fields { - order: Float -} - -""" -order by stddev_samp() on columns of table "tournament_prizes" -""" -input tournament_prizes_stddev_samp_order_by { - order: order_by -} - -""" -Streaming cursor of the table "tournament_prizes" -""" -input tournament_prizes_stream_cursor_input { - """Stream column input with initial value""" - initial_value: tournament_prizes_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input tournament_prizes_stream_cursor_value_input { - created_at: timestamptz - id: uuid - order: Int - place: String - prize: String - tournament_id: uuid -} - -"""aggregate sum on columns""" -type tournament_prizes_sum_fields { - order: Int -} - -""" -order by sum() on columns of table "tournament_prizes" -""" -input tournament_prizes_sum_order_by { - order: order_by -} - -""" -update columns of table "tournament_prizes" -""" -enum tournament_prizes_update_column { - """column name""" - created_at - - """column name""" - id - - """column name""" - order - - """column name""" - place - - """column name""" - prize - - """column name""" - tournament_id -} - -input tournament_prizes_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_prizes_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_prizes_set_input - - """filter the rows which have to be updated""" - where: tournament_prizes_bool_exp! -} - -"""aggregate var_pop on columns""" -type tournament_prizes_var_pop_fields { - order: Float -} - -""" -order by var_pop() on columns of table "tournament_prizes" -""" -input tournament_prizes_var_pop_order_by { - order: order_by -} - -"""aggregate var_samp on columns""" -type tournament_prizes_var_samp_fields { - order: Float -} - -""" -order by var_samp() on columns of table "tournament_prizes" -""" -input tournament_prizes_var_samp_order_by { - order: order_by -} - -"""aggregate variance on columns""" -type tournament_prizes_variance_fields { - order: Float -} - -""" -order by variance() on columns of table "tournament_prizes" -""" -input tournament_prizes_variance_order_by { - order: order_by -} - -""" -columns and relationships of "tournament_registration_unlocks" -""" -type tournament_registration_unlocks { - created_at: timestamptz! - - """An object relationship""" - player: players - player_steam_id: bigint - - """An object relationship""" - team: teams - team_id: uuid - - """An object relationship""" - tournament: tournaments! - tournament_id: uuid! -} - -""" -aggregated selection of "tournament_registration_unlocks" -""" -type tournament_registration_unlocks_aggregate { - aggregate: tournament_registration_unlocks_aggregate_fields - nodes: [tournament_registration_unlocks!]! -} - -""" -aggregate fields of "tournament_registration_unlocks" -""" -type tournament_registration_unlocks_aggregate_fields { - avg: tournament_registration_unlocks_avg_fields - count(columns: [tournament_registration_unlocks_select_column!], distinct: Boolean): Int! - max: tournament_registration_unlocks_max_fields - min: tournament_registration_unlocks_min_fields - stddev: tournament_registration_unlocks_stddev_fields - stddev_pop: tournament_registration_unlocks_stddev_pop_fields - stddev_samp: tournament_registration_unlocks_stddev_samp_fields - sum: tournament_registration_unlocks_sum_fields - var_pop: tournament_registration_unlocks_var_pop_fields - var_samp: tournament_registration_unlocks_var_samp_fields - variance: tournament_registration_unlocks_variance_fields -} - -"""aggregate avg on columns""" -type tournament_registration_unlocks_avg_fields { - player_steam_id: Float -} - -""" -Boolean expression to filter rows from the table "tournament_registration_unlocks". All fields are combined with a logical 'AND'. -""" -input tournament_registration_unlocks_bool_exp { - _and: [tournament_registration_unlocks_bool_exp!] - _not: tournament_registration_unlocks_bool_exp - _or: [tournament_registration_unlocks_bool_exp!] - created_at: timestamptz_comparison_exp - player: players_bool_exp - player_steam_id: bigint_comparison_exp - team: teams_bool_exp - team_id: uuid_comparison_exp - tournament: tournaments_bool_exp - tournament_id: uuid_comparison_exp -} - -""" -unique or primary key constraints on table "tournament_registration_unlocks" -""" -enum tournament_registration_unlocks_constraint { - """ - unique or primary key constraint on columns "player_steam_id", "tournament_id" - """ - idx_tournament_registration_unlocks_player - - """ - unique or primary key constraint on columns "tournament_id", "team_id" - """ - idx_tournament_registration_unlocks_team -} - -""" -input type for incrementing numeric columns in table "tournament_registration_unlocks" -""" -input tournament_registration_unlocks_inc_input { - player_steam_id: bigint -} - -""" -input type for inserting data into table "tournament_registration_unlocks" -""" -input tournament_registration_unlocks_insert_input { - created_at: timestamptz - player: players_obj_rel_insert_input - player_steam_id: bigint - team: teams_obj_rel_insert_input - team_id: uuid - tournament: tournaments_obj_rel_insert_input - tournament_id: uuid -} - -"""aggregate max on columns""" -type tournament_registration_unlocks_max_fields { - created_at: timestamptz - player_steam_id: bigint - team_id: uuid - tournament_id: uuid -} - -"""aggregate min on columns""" -type tournament_registration_unlocks_min_fields { - created_at: timestamptz - player_steam_id: bigint - team_id: uuid - tournament_id: uuid -} - -""" -response of any mutation on the table "tournament_registration_unlocks" -""" -type tournament_registration_unlocks_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [tournament_registration_unlocks!]! -} - -""" -on_conflict condition type for table "tournament_registration_unlocks" -""" -input tournament_registration_unlocks_on_conflict { - constraint: tournament_registration_unlocks_constraint! - update_columns: [tournament_registration_unlocks_update_column!]! = [] - where: tournament_registration_unlocks_bool_exp -} - -""" -Ordering options when selecting data from "tournament_registration_unlocks". -""" -input tournament_registration_unlocks_order_by { - created_at: order_by - player: players_order_by - player_steam_id: order_by - team: teams_order_by - team_id: order_by - tournament: tournaments_order_by - tournament_id: order_by -} - -""" -select columns of table "tournament_registration_unlocks" -""" -enum tournament_registration_unlocks_select_column { - """column name""" - created_at - - """column name""" - player_steam_id - - """column name""" - team_id - - """column name""" - tournament_id -} - -""" -input type for updating data in table "tournament_registration_unlocks" -""" -input tournament_registration_unlocks_set_input { - created_at: timestamptz - player_steam_id: bigint - team_id: uuid - tournament_id: uuid -} - -"""aggregate stddev on columns""" -type tournament_registration_unlocks_stddev_fields { - player_steam_id: Float -} - -"""aggregate stddev_pop on columns""" -type tournament_registration_unlocks_stddev_pop_fields { - player_steam_id: Float -} - -"""aggregate stddev_samp on columns""" -type tournament_registration_unlocks_stddev_samp_fields { - player_steam_id: Float -} - -""" -Streaming cursor of the table "tournament_registration_unlocks" -""" -input tournament_registration_unlocks_stream_cursor_input { - """Stream column input with initial value""" - initial_value: tournament_registration_unlocks_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input tournament_registration_unlocks_stream_cursor_value_input { - created_at: timestamptz - player_steam_id: bigint - team_id: uuid - tournament_id: uuid -} - -"""aggregate sum on columns""" -type tournament_registration_unlocks_sum_fields { - player_steam_id: bigint -} - -""" -update columns of table "tournament_registration_unlocks" -""" -enum tournament_registration_unlocks_update_column { - """column name""" - created_at - - """column name""" - player_steam_id - - """column name""" - team_id - - """column name""" - tournament_id -} - -input tournament_registration_unlocks_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_registration_unlocks_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_registration_unlocks_set_input - - """filter the rows which have to be updated""" - where: tournament_registration_unlocks_bool_exp! -} - -"""aggregate var_pop on columns""" -type tournament_registration_unlocks_var_pop_fields { - player_steam_id: Float -} - -"""aggregate var_samp on columns""" -type tournament_registration_unlocks_var_samp_fields { - player_steam_id: Float -} - -"""aggregate variance on columns""" -type tournament_registration_unlocks_variance_fields { - player_steam_id: Float -} - -""" -columns and relationships of "tournament_stage_windows" -""" -type tournament_stage_windows { - closes_at: timestamptz - created_at: timestamptz! - default_match_at: timestamptz - id: uuid! - opens_at: timestamptz - round: Int! - - """An object relationship""" - stage: tournament_stages! - tournament_stage_id: uuid! -} - -""" -aggregated selection of "tournament_stage_windows" -""" -type tournament_stage_windows_aggregate { - aggregate: tournament_stage_windows_aggregate_fields - nodes: [tournament_stage_windows!]! -} - -input tournament_stage_windows_aggregate_bool_exp { - count: tournament_stage_windows_aggregate_bool_exp_count -} - -input tournament_stage_windows_aggregate_bool_exp_count { - arguments: [tournament_stage_windows_select_column!] - distinct: Boolean - filter: tournament_stage_windows_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "tournament_stage_windows" -""" -type tournament_stage_windows_aggregate_fields { - avg: tournament_stage_windows_avg_fields - count(columns: [tournament_stage_windows_select_column!], distinct: Boolean): Int! - max: tournament_stage_windows_max_fields - min: tournament_stage_windows_min_fields - stddev: tournament_stage_windows_stddev_fields - stddev_pop: tournament_stage_windows_stddev_pop_fields - stddev_samp: tournament_stage_windows_stddev_samp_fields - sum: tournament_stage_windows_sum_fields - var_pop: tournament_stage_windows_var_pop_fields - var_samp: tournament_stage_windows_var_samp_fields - variance: tournament_stage_windows_variance_fields -} - -""" -order by aggregate values of table "tournament_stage_windows" -""" -input tournament_stage_windows_aggregate_order_by { - avg: tournament_stage_windows_avg_order_by - count: order_by - max: tournament_stage_windows_max_order_by - min: tournament_stage_windows_min_order_by - stddev: tournament_stage_windows_stddev_order_by - stddev_pop: tournament_stage_windows_stddev_pop_order_by - stddev_samp: tournament_stage_windows_stddev_samp_order_by - sum: tournament_stage_windows_sum_order_by - var_pop: tournament_stage_windows_var_pop_order_by - var_samp: tournament_stage_windows_var_samp_order_by - variance: tournament_stage_windows_variance_order_by -} - -""" -input type for inserting array relation for remote table "tournament_stage_windows" -""" -input tournament_stage_windows_arr_rel_insert_input { - data: [tournament_stage_windows_insert_input!]! - - """upsert condition""" - on_conflict: tournament_stage_windows_on_conflict -} - -"""aggregate avg on columns""" -type tournament_stage_windows_avg_fields { - round: Float -} - -""" -order by avg() on columns of table "tournament_stage_windows" -""" -input tournament_stage_windows_avg_order_by { - round: order_by -} - -""" -Boolean expression to filter rows from the table "tournament_stage_windows". All fields are combined with a logical 'AND'. -""" -input tournament_stage_windows_bool_exp { - _and: [tournament_stage_windows_bool_exp!] - _not: tournament_stage_windows_bool_exp - _or: [tournament_stage_windows_bool_exp!] - closes_at: timestamptz_comparison_exp - created_at: timestamptz_comparison_exp - default_match_at: timestamptz_comparison_exp - id: uuid_comparison_exp - opens_at: timestamptz_comparison_exp - round: Int_comparison_exp - stage: tournament_stages_bool_exp - tournament_stage_id: uuid_comparison_exp -} - -""" -unique or primary key constraints on table "tournament_stage_windows" -""" -enum tournament_stage_windows_constraint { - """ - unique or primary key constraint on columns "id" - """ - tournament_stage_windows_pkey - - """ - unique or primary key constraint on columns "tournament_stage_id", "round" - """ - tournament_stage_windows_tournament_stage_id_round_key -} - -""" -input type for incrementing numeric columns in table "tournament_stage_windows" -""" -input tournament_stage_windows_inc_input { - round: Int -} - -""" -input type for inserting data into table "tournament_stage_windows" -""" -input tournament_stage_windows_insert_input { - closes_at: timestamptz - created_at: timestamptz - default_match_at: timestamptz - id: uuid - opens_at: timestamptz - round: Int - stage: tournament_stages_obj_rel_insert_input - tournament_stage_id: uuid -} - -"""aggregate max on columns""" -type tournament_stage_windows_max_fields { - closes_at: timestamptz - created_at: timestamptz - default_match_at: timestamptz - id: uuid - opens_at: timestamptz - round: Int - tournament_stage_id: uuid -} - -""" -order by max() on columns of table "tournament_stage_windows" -""" -input tournament_stage_windows_max_order_by { - closes_at: order_by - created_at: order_by - default_match_at: order_by - id: order_by - opens_at: order_by - round: order_by - tournament_stage_id: order_by -} - -"""aggregate min on columns""" -type tournament_stage_windows_min_fields { - closes_at: timestamptz - created_at: timestamptz - default_match_at: timestamptz - id: uuid - opens_at: timestamptz - round: Int - tournament_stage_id: uuid -} - -""" -order by min() on columns of table "tournament_stage_windows" -""" -input tournament_stage_windows_min_order_by { - closes_at: order_by - created_at: order_by - default_match_at: order_by - id: order_by - opens_at: order_by - round: order_by - tournament_stage_id: order_by -} - -""" -response of any mutation on the table "tournament_stage_windows" -""" -type tournament_stage_windows_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [tournament_stage_windows!]! -} - -""" -on_conflict condition type for table "tournament_stage_windows" -""" -input tournament_stage_windows_on_conflict { - constraint: tournament_stage_windows_constraint! - update_columns: [tournament_stage_windows_update_column!]! = [] - where: tournament_stage_windows_bool_exp -} - -"""Ordering options when selecting data from "tournament_stage_windows".""" -input tournament_stage_windows_order_by { - closes_at: order_by - created_at: order_by - default_match_at: order_by - id: order_by - opens_at: order_by - round: order_by - stage: tournament_stages_order_by - tournament_stage_id: order_by -} - -"""primary key columns input for table: tournament_stage_windows""" -input tournament_stage_windows_pk_columns_input { - id: uuid! -} - -""" -select columns of table "tournament_stage_windows" -""" -enum tournament_stage_windows_select_column { - """column name""" - closes_at - - """column name""" - created_at - - """column name""" - default_match_at - - """column name""" - id - - """column name""" - opens_at - - """column name""" - round - - """column name""" - tournament_stage_id -} - -""" -input type for updating data in table "tournament_stage_windows" -""" -input tournament_stage_windows_set_input { - closes_at: timestamptz - created_at: timestamptz - default_match_at: timestamptz - id: uuid - opens_at: timestamptz - round: Int - tournament_stage_id: uuid -} - -"""aggregate stddev on columns""" -type tournament_stage_windows_stddev_fields { - round: Float -} - -""" -order by stddev() on columns of table "tournament_stage_windows" -""" -input tournament_stage_windows_stddev_order_by { - round: order_by -} - -"""aggregate stddev_pop on columns""" -type tournament_stage_windows_stddev_pop_fields { - round: Float -} - -""" -order by stddev_pop() on columns of table "tournament_stage_windows" -""" -input tournament_stage_windows_stddev_pop_order_by { - round: order_by -} - -"""aggregate stddev_samp on columns""" -type tournament_stage_windows_stddev_samp_fields { - round: Float -} - -""" -order by stddev_samp() on columns of table "tournament_stage_windows" -""" -input tournament_stage_windows_stddev_samp_order_by { - round: order_by -} - -""" -Streaming cursor of the table "tournament_stage_windows" -""" -input tournament_stage_windows_stream_cursor_input { - """Stream column input with initial value""" - initial_value: tournament_stage_windows_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input tournament_stage_windows_stream_cursor_value_input { - closes_at: timestamptz - created_at: timestamptz - default_match_at: timestamptz - id: uuid - opens_at: timestamptz - round: Int - tournament_stage_id: uuid -} - -"""aggregate sum on columns""" -type tournament_stage_windows_sum_fields { - round: Int -} - -""" -order by sum() on columns of table "tournament_stage_windows" -""" -input tournament_stage_windows_sum_order_by { - round: order_by -} - -""" -update columns of table "tournament_stage_windows" -""" -enum tournament_stage_windows_update_column { - """column name""" - closes_at - - """column name""" - created_at - - """column name""" - default_match_at - - """column name""" - id - - """column name""" - opens_at - - """column name""" - round - - """column name""" - tournament_stage_id -} - -input tournament_stage_windows_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_stage_windows_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_stage_windows_set_input - - """filter the rows which have to be updated""" - where: tournament_stage_windows_bool_exp! -} - -"""aggregate var_pop on columns""" -type tournament_stage_windows_var_pop_fields { - round: Float -} - -""" -order by var_pop() on columns of table "tournament_stage_windows" -""" -input tournament_stage_windows_var_pop_order_by { - round: order_by -} - -"""aggregate var_samp on columns""" -type tournament_stage_windows_var_samp_fields { - round: Float -} - -""" -order by var_samp() on columns of table "tournament_stage_windows" -""" -input tournament_stage_windows_var_samp_order_by { - round: order_by -} - -"""aggregate variance on columns""" -type tournament_stage_windows_variance_fields { - round: Float -} - -""" -order by variance() on columns of table "tournament_stage_windows" -""" -input tournament_stage_windows_variance_order_by { - round: order_by -} - -""" -columns and relationships of "tournament_stages" -""" -type tournament_stages { - """An array relationship""" - brackets( - """distinct select on columns""" - distinct_on: [tournament_brackets_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_brackets_order_by!] - - """filter the rows returned""" - where: tournament_brackets_bool_exp - ): [tournament_brackets!]! - - """An aggregate relationship""" - brackets_aggregate( - """distinct select on columns""" - distinct_on: [tournament_brackets_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_brackets_order_by!] - - """filter the rows returned""" - where: tournament_brackets_bool_exp - ): tournament_brackets_aggregate! - decider_best_of: Int - default_best_of: Int! - - """An object relationship""" - e_tournament_stage_type: e_tournament_stage_types! - final_map_advantage: Int! - groups: Int - id: uuid! - match_options_id: uuid - max_rounds: Int - max_teams: Int! - min_teams: Int! - - """An object relationship""" - options: match_options - order: Int! - - """An array relationship""" - results( - """distinct select on columns""" - distinct_on: [v_team_stage_results_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_team_stage_results_order_by!] - - """filter the rows returned""" - where: v_team_stage_results_bool_exp - ): [v_team_stage_results!]! - - """An aggregate relationship""" - results_aggregate( - """distinct select on columns""" - distinct_on: [v_team_stage_results_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_team_stage_results_order_by!] - - """filter the rows returned""" - where: v_team_stage_results_bool_exp - ): v_team_stage_results_aggregate! - settings( - """JSON select path""" - path: String - ): jsonb - swiss_no_elimination: Boolean! - third_place_match: Boolean! - - """An object relationship""" - tournament: tournaments! - tournament_id: uuid! - type: e_tournament_stage_types_enum! - - """An array relationship""" - windows( - """distinct select on columns""" - distinct_on: [tournament_stage_windows_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_stage_windows_order_by!] - - """filter the rows returned""" - where: tournament_stage_windows_bool_exp - ): [tournament_stage_windows!]! - - """An aggregate relationship""" - windows_aggregate( - """distinct select on columns""" - distinct_on: [tournament_stage_windows_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_stage_windows_order_by!] - - """filter the rows returned""" - where: tournament_stage_windows_bool_exp - ): tournament_stage_windows_aggregate! -} - -""" -aggregated selection of "tournament_stages" -""" -type tournament_stages_aggregate { - aggregate: tournament_stages_aggregate_fields - nodes: [tournament_stages!]! -} - -input tournament_stages_aggregate_bool_exp { - bool_and: tournament_stages_aggregate_bool_exp_bool_and - bool_or: tournament_stages_aggregate_bool_exp_bool_or - count: tournament_stages_aggregate_bool_exp_count -} - -input tournament_stages_aggregate_bool_exp_bool_and { - arguments: tournament_stages_select_column_tournament_stages_aggregate_bool_exp_bool_and_arguments_columns! - distinct: Boolean - filter: tournament_stages_bool_exp - predicate: Boolean_comparison_exp! -} - -input tournament_stages_aggregate_bool_exp_bool_or { - arguments: tournament_stages_select_column_tournament_stages_aggregate_bool_exp_bool_or_arguments_columns! - distinct: Boolean - filter: tournament_stages_bool_exp - predicate: Boolean_comparison_exp! -} - -input tournament_stages_aggregate_bool_exp_count { - arguments: [tournament_stages_select_column!] - distinct: Boolean - filter: tournament_stages_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "tournament_stages" -""" -type tournament_stages_aggregate_fields { - avg: tournament_stages_avg_fields - count(columns: [tournament_stages_select_column!], distinct: Boolean): Int! - max: tournament_stages_max_fields - min: tournament_stages_min_fields - stddev: tournament_stages_stddev_fields - stddev_pop: tournament_stages_stddev_pop_fields - stddev_samp: tournament_stages_stddev_samp_fields - sum: tournament_stages_sum_fields - var_pop: tournament_stages_var_pop_fields - var_samp: tournament_stages_var_samp_fields - variance: tournament_stages_variance_fields -} - -""" -order by aggregate values of table "tournament_stages" -""" -input tournament_stages_aggregate_order_by { - avg: tournament_stages_avg_order_by - count: order_by - max: tournament_stages_max_order_by - min: tournament_stages_min_order_by - stddev: tournament_stages_stddev_order_by - stddev_pop: tournament_stages_stddev_pop_order_by - stddev_samp: tournament_stages_stddev_samp_order_by - sum: tournament_stages_sum_order_by - var_pop: tournament_stages_var_pop_order_by - var_samp: tournament_stages_var_samp_order_by - variance: tournament_stages_variance_order_by -} - -"""append existing jsonb value of filtered columns with new jsonb value""" -input tournament_stages_append_input { - settings: jsonb -} - -""" -input type for inserting array relation for remote table "tournament_stages" -""" -input tournament_stages_arr_rel_insert_input { - data: [tournament_stages_insert_input!]! - - """upsert condition""" - on_conflict: tournament_stages_on_conflict -} - -"""aggregate avg on columns""" -type tournament_stages_avg_fields { - decider_best_of: Float - default_best_of: Float - final_map_advantage: Float - groups: Float - max_rounds: Float - max_teams: Float - min_teams: Float - order: Float -} - -""" -order by avg() on columns of table "tournament_stages" -""" -input tournament_stages_avg_order_by { - decider_best_of: order_by - default_best_of: order_by - final_map_advantage: order_by - groups: order_by - max_rounds: order_by - max_teams: order_by - min_teams: order_by - order: order_by -} - -""" -Boolean expression to filter rows from the table "tournament_stages". All fields are combined with a logical 'AND'. -""" -input tournament_stages_bool_exp { - _and: [tournament_stages_bool_exp!] - _not: tournament_stages_bool_exp - _or: [tournament_stages_bool_exp!] - brackets: tournament_brackets_bool_exp - brackets_aggregate: tournament_brackets_aggregate_bool_exp - decider_best_of: Int_comparison_exp - default_best_of: Int_comparison_exp - e_tournament_stage_type: e_tournament_stage_types_bool_exp - final_map_advantage: Int_comparison_exp - groups: Int_comparison_exp - id: uuid_comparison_exp - match_options_id: uuid_comparison_exp - max_rounds: Int_comparison_exp - max_teams: Int_comparison_exp - min_teams: Int_comparison_exp - options: match_options_bool_exp - order: Int_comparison_exp - results: v_team_stage_results_bool_exp - results_aggregate: v_team_stage_results_aggregate_bool_exp - settings: jsonb_comparison_exp - swiss_no_elimination: Boolean_comparison_exp - third_place_match: Boolean_comparison_exp - tournament: tournaments_bool_exp - tournament_id: uuid_comparison_exp - type: e_tournament_stage_types_enum_comparison_exp - windows: tournament_stage_windows_bool_exp - windows_aggregate: tournament_stage_windows_aggregate_bool_exp -} - -""" -unique or primary key constraints on table "tournament_stages" -""" -enum tournament_stages_constraint { - """ - unique or primary key constraint on columns "id" - """ - tournament_stages_pkey -} - -""" -delete the field or element with specified path (for JSON arrays, negative integers count from the end) -""" -input tournament_stages_delete_at_path_input { - settings: [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 tournament_stages_delete_elem_input { - settings: Int -} - -""" -delete key/value pair or string element. key/value pairs are matched based on their key value -""" -input tournament_stages_delete_key_input { - settings: String -} - -""" -input type for incrementing numeric columns in table "tournament_stages" -""" -input tournament_stages_inc_input { - decider_best_of: Int - default_best_of: Int - final_map_advantage: Int - groups: Int - max_rounds: Int - max_teams: Int - min_teams: Int - order: Int -} - -""" -input type for inserting data into table "tournament_stages" -""" -input tournament_stages_insert_input { - brackets: tournament_brackets_arr_rel_insert_input - decider_best_of: Int - default_best_of: Int - e_tournament_stage_type: e_tournament_stage_types_obj_rel_insert_input - final_map_advantage: Int - groups: Int - id: uuid - match_options_id: uuid - max_rounds: Int - max_teams: Int - min_teams: Int - options: match_options_obj_rel_insert_input - order: Int - results: v_team_stage_results_arr_rel_insert_input - settings: jsonb - swiss_no_elimination: Boolean - third_place_match: Boolean - tournament: tournaments_obj_rel_insert_input - tournament_id: uuid - type: e_tournament_stage_types_enum - windows: tournament_stage_windows_arr_rel_insert_input -} - -"""aggregate max on columns""" -type tournament_stages_max_fields { - decider_best_of: Int - default_best_of: Int - final_map_advantage: Int - groups: Int - id: uuid - match_options_id: uuid - max_rounds: Int - max_teams: Int - min_teams: Int - order: Int - tournament_id: uuid -} - -""" -order by max() on columns of table "tournament_stages" -""" -input tournament_stages_max_order_by { - decider_best_of: order_by - default_best_of: order_by - final_map_advantage: order_by - groups: order_by - id: order_by - match_options_id: order_by - max_rounds: order_by - max_teams: order_by - min_teams: order_by - order: order_by - tournament_id: order_by -} - -"""aggregate min on columns""" -type tournament_stages_min_fields { - decider_best_of: Int - default_best_of: Int - final_map_advantage: Int - groups: Int - id: uuid - match_options_id: uuid - max_rounds: Int - max_teams: Int - min_teams: Int - order: Int - tournament_id: uuid -} - -""" -order by min() on columns of table "tournament_stages" -""" -input tournament_stages_min_order_by { - decider_best_of: order_by - default_best_of: order_by - final_map_advantage: order_by - groups: order_by - id: order_by - match_options_id: order_by - max_rounds: order_by - max_teams: order_by - min_teams: order_by - order: order_by - tournament_id: order_by -} - -""" -response of any mutation on the table "tournament_stages" -""" -type tournament_stages_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [tournament_stages!]! -} - -""" -input type for inserting object relation for remote table "tournament_stages" -""" -input tournament_stages_obj_rel_insert_input { - data: tournament_stages_insert_input! - - """upsert condition""" - on_conflict: tournament_stages_on_conflict -} - -""" -on_conflict condition type for table "tournament_stages" -""" -input tournament_stages_on_conflict { - constraint: tournament_stages_constraint! - update_columns: [tournament_stages_update_column!]! = [] - where: tournament_stages_bool_exp -} - -"""Ordering options when selecting data from "tournament_stages".""" -input tournament_stages_order_by { - brackets_aggregate: tournament_brackets_aggregate_order_by - decider_best_of: order_by - default_best_of: order_by - e_tournament_stage_type: e_tournament_stage_types_order_by - final_map_advantage: order_by - groups: order_by - id: order_by - match_options_id: order_by - max_rounds: order_by - max_teams: order_by - min_teams: order_by - options: match_options_order_by - order: order_by - results_aggregate: v_team_stage_results_aggregate_order_by - settings: order_by - swiss_no_elimination: order_by - third_place_match: order_by - tournament: tournaments_order_by - tournament_id: order_by - type: order_by - windows_aggregate: tournament_stage_windows_aggregate_order_by -} - -"""primary key columns input for table: tournament_stages""" -input tournament_stages_pk_columns_input { - id: uuid! -} - -"""prepend existing jsonb value of filtered columns with new jsonb value""" -input tournament_stages_prepend_input { - settings: jsonb -} - -""" -select columns of table "tournament_stages" -""" -enum tournament_stages_select_column { - """column name""" - decider_best_of - - """column name""" - default_best_of - - """column name""" - final_map_advantage - - """column name""" - groups - - """column name""" - id - - """column name""" - match_options_id - - """column name""" - max_rounds - - """column name""" - max_teams - - """column name""" - min_teams - - """column name""" - order - - """column name""" - settings - - """column name""" - swiss_no_elimination - - """column name""" - third_place_match - - """column name""" - tournament_id - - """column name""" - type -} - -""" -select "tournament_stages_aggregate_bool_exp_bool_and_arguments_columns" columns of table "tournament_stages" -""" -enum tournament_stages_select_column_tournament_stages_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - swiss_no_elimination - - """column name""" - third_place_match -} - -""" -select "tournament_stages_aggregate_bool_exp_bool_or_arguments_columns" columns of table "tournament_stages" -""" -enum tournament_stages_select_column_tournament_stages_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - swiss_no_elimination - - """column name""" - third_place_match -} - -""" -input type for updating data in table "tournament_stages" -""" -input tournament_stages_set_input { - decider_best_of: Int - default_best_of: Int - final_map_advantage: Int - groups: Int - id: uuid - match_options_id: uuid - max_rounds: Int - max_teams: Int - min_teams: Int - order: Int - settings: jsonb - swiss_no_elimination: Boolean - third_place_match: Boolean - tournament_id: uuid - type: e_tournament_stage_types_enum -} - -"""aggregate stddev on columns""" -type tournament_stages_stddev_fields { - decider_best_of: Float - default_best_of: Float - final_map_advantage: Float - groups: Float - max_rounds: Float - max_teams: Float - min_teams: Float - order: Float -} - -""" -order by stddev() on columns of table "tournament_stages" -""" -input tournament_stages_stddev_order_by { - decider_best_of: order_by - default_best_of: order_by - final_map_advantage: order_by - groups: order_by - max_rounds: order_by - max_teams: order_by - min_teams: order_by - order: order_by -} - -"""aggregate stddev_pop on columns""" -type tournament_stages_stddev_pop_fields { - decider_best_of: Float - default_best_of: Float - final_map_advantage: Float - groups: Float - max_rounds: Float - max_teams: Float - min_teams: Float - order: Float -} - -""" -order by stddev_pop() on columns of table "tournament_stages" -""" -input tournament_stages_stddev_pop_order_by { - decider_best_of: order_by - default_best_of: order_by - final_map_advantage: order_by - groups: order_by - max_rounds: order_by - max_teams: order_by - min_teams: order_by - order: order_by -} - -"""aggregate stddev_samp on columns""" -type tournament_stages_stddev_samp_fields { - decider_best_of: Float - default_best_of: Float - final_map_advantage: Float - groups: Float - max_rounds: Float - max_teams: Float - min_teams: Float - order: Float -} - -""" -order by stddev_samp() on columns of table "tournament_stages" -""" -input tournament_stages_stddev_samp_order_by { - decider_best_of: order_by - default_best_of: order_by - final_map_advantage: order_by - groups: order_by - max_rounds: order_by - max_teams: order_by - min_teams: order_by - order: order_by -} - -""" -Streaming cursor of the table "tournament_stages" -""" -input tournament_stages_stream_cursor_input { - """Stream column input with initial value""" - initial_value: tournament_stages_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input tournament_stages_stream_cursor_value_input { - decider_best_of: Int - default_best_of: Int - final_map_advantage: Int - groups: Int - id: uuid - match_options_id: uuid - max_rounds: Int - max_teams: Int - min_teams: Int - order: Int - settings: jsonb - swiss_no_elimination: Boolean - third_place_match: Boolean - tournament_id: uuid - type: e_tournament_stage_types_enum -} - -"""aggregate sum on columns""" -type tournament_stages_sum_fields { - decider_best_of: Int - default_best_of: Int - final_map_advantage: Int - groups: Int - max_rounds: Int - max_teams: Int - min_teams: Int - order: Int -} - -""" -order by sum() on columns of table "tournament_stages" -""" -input tournament_stages_sum_order_by { - decider_best_of: order_by - default_best_of: order_by - final_map_advantage: order_by - groups: order_by - max_rounds: order_by - max_teams: order_by - min_teams: order_by - order: order_by -} - -""" -update columns of table "tournament_stages" -""" -enum tournament_stages_update_column { - """column name""" - decider_best_of - - """column name""" - default_best_of - - """column name""" - final_map_advantage - - """column name""" - groups - - """column name""" - id - - """column name""" - match_options_id - - """column name""" - max_rounds - - """column name""" - max_teams - - """column name""" - min_teams - - """column name""" - order - - """column name""" - settings - - """column name""" - swiss_no_elimination - - """column name""" - third_place_match - - """column name""" - tournament_id - - """column name""" - type -} - -input tournament_stages_updates { - """append existing jsonb value of filtered columns with new jsonb value""" - _append: tournament_stages_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: tournament_stages_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: tournament_stages_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: tournament_stages_delete_key_input - - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_stages_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: tournament_stages_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_stages_set_input - - """filter the rows which have to be updated""" - where: tournament_stages_bool_exp! -} - -"""aggregate var_pop on columns""" -type tournament_stages_var_pop_fields { - decider_best_of: Float - default_best_of: Float - final_map_advantage: Float - groups: Float - max_rounds: Float - max_teams: Float - min_teams: Float - order: Float -} - -""" -order by var_pop() on columns of table "tournament_stages" -""" -input tournament_stages_var_pop_order_by { - decider_best_of: order_by - default_best_of: order_by - final_map_advantage: order_by - groups: order_by - max_rounds: order_by - max_teams: order_by - min_teams: order_by - order: order_by -} - -"""aggregate var_samp on columns""" -type tournament_stages_var_samp_fields { - decider_best_of: Float - default_best_of: Float - final_map_advantage: Float - groups: Float - max_rounds: Float - max_teams: Float - min_teams: Float - order: Float -} - -""" -order by var_samp() on columns of table "tournament_stages" -""" -input tournament_stages_var_samp_order_by { - decider_best_of: order_by - default_best_of: order_by - final_map_advantage: order_by - groups: order_by - max_rounds: order_by - max_teams: order_by - min_teams: order_by - order: order_by -} - -"""aggregate variance on columns""" -type tournament_stages_variance_fields { - decider_best_of: Float - default_best_of: Float - final_map_advantage: Float - groups: Float - max_rounds: Float - max_teams: Float - min_teams: Float - order: Float -} - -""" -order by variance() on columns of table "tournament_stages" -""" -input tournament_stages_variance_order_by { - decider_best_of: order_by - default_best_of: order_by - final_map_advantage: order_by - groups: order_by - max_rounds: order_by - max_teams: order_by - min_teams: order_by - order: order_by -} - -""" -columns and relationships of "tournament_team_invites" -""" -type tournament_team_invites { - created_at: timestamptz! - id: uuid! - - """An object relationship""" - invited_by: players! - invited_by_player_steam_id: bigint! - - """An object relationship""" - player: players! - steam_id: bigint! - - """An object relationship""" - team: tournament_teams! - tournament_team_id: uuid! -} - -""" -aggregated selection of "tournament_team_invites" -""" -type tournament_team_invites_aggregate { - aggregate: tournament_team_invites_aggregate_fields - nodes: [tournament_team_invites!]! -} - -input tournament_team_invites_aggregate_bool_exp { - count: tournament_team_invites_aggregate_bool_exp_count -} - -input tournament_team_invites_aggregate_bool_exp_count { - arguments: [tournament_team_invites_select_column!] - distinct: Boolean - filter: tournament_team_invites_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "tournament_team_invites" -""" -type tournament_team_invites_aggregate_fields { - avg: tournament_team_invites_avg_fields - count(columns: [tournament_team_invites_select_column!], distinct: Boolean): Int! - max: tournament_team_invites_max_fields - min: tournament_team_invites_min_fields - stddev: tournament_team_invites_stddev_fields - stddev_pop: tournament_team_invites_stddev_pop_fields - stddev_samp: tournament_team_invites_stddev_samp_fields - sum: tournament_team_invites_sum_fields - var_pop: tournament_team_invites_var_pop_fields - var_samp: tournament_team_invites_var_samp_fields - variance: tournament_team_invites_variance_fields -} - -""" -order by aggregate values of table "tournament_team_invites" -""" -input tournament_team_invites_aggregate_order_by { - avg: tournament_team_invites_avg_order_by - count: order_by - max: tournament_team_invites_max_order_by - min: tournament_team_invites_min_order_by - stddev: tournament_team_invites_stddev_order_by - stddev_pop: tournament_team_invites_stddev_pop_order_by - stddev_samp: tournament_team_invites_stddev_samp_order_by - sum: tournament_team_invites_sum_order_by - var_pop: tournament_team_invites_var_pop_order_by - var_samp: tournament_team_invites_var_samp_order_by - variance: tournament_team_invites_variance_order_by -} - -""" -input type for inserting array relation for remote table "tournament_team_invites" -""" -input tournament_team_invites_arr_rel_insert_input { - data: [tournament_team_invites_insert_input!]! - - """upsert condition""" - on_conflict: tournament_team_invites_on_conflict -} - -"""aggregate avg on columns""" -type tournament_team_invites_avg_fields { - invited_by_player_steam_id: Float - steam_id: Float -} - -""" -order by avg() on columns of table "tournament_team_invites" -""" -input tournament_team_invites_avg_order_by { - invited_by_player_steam_id: order_by - steam_id: order_by -} - -""" -Boolean expression to filter rows from the table "tournament_team_invites". All fields are combined with a logical 'AND'. -""" -input tournament_team_invites_bool_exp { - _and: [tournament_team_invites_bool_exp!] - _not: tournament_team_invites_bool_exp - _or: [tournament_team_invites_bool_exp!] - created_at: timestamptz_comparison_exp - id: uuid_comparison_exp - invited_by: players_bool_exp - invited_by_player_steam_id: bigint_comparison_exp - player: players_bool_exp - steam_id: bigint_comparison_exp - team: tournament_teams_bool_exp - tournament_team_id: uuid_comparison_exp -} - -""" -unique or primary key constraints on table "tournament_team_invites" -""" -enum tournament_team_invites_constraint { - """ - unique or primary key constraint on columns "id" - """ - tournament_team_invites_pkey - - """ - unique or primary key constraint on columns "steam_id", "tournament_team_id" - """ - tournament_team_invites_steam_id_tournament_team_id_key -} - -""" -input type for incrementing numeric columns in table "tournament_team_invites" -""" -input tournament_team_invites_inc_input { - invited_by_player_steam_id: bigint - steam_id: bigint -} - -""" -input type for inserting data into table "tournament_team_invites" -""" -input tournament_team_invites_insert_input { - created_at: timestamptz - id: uuid - invited_by: players_obj_rel_insert_input - invited_by_player_steam_id: bigint - player: players_obj_rel_insert_input - steam_id: bigint - team: tournament_teams_obj_rel_insert_input - tournament_team_id: uuid -} - -"""aggregate max on columns""" -type tournament_team_invites_max_fields { - created_at: timestamptz - id: uuid - invited_by_player_steam_id: bigint - steam_id: bigint - tournament_team_id: uuid -} - -""" -order by max() on columns of table "tournament_team_invites" -""" -input tournament_team_invites_max_order_by { - created_at: order_by - id: order_by - invited_by_player_steam_id: order_by - steam_id: order_by - tournament_team_id: order_by -} - -"""aggregate min on columns""" -type tournament_team_invites_min_fields { - created_at: timestamptz - id: uuid - invited_by_player_steam_id: bigint - steam_id: bigint - tournament_team_id: uuid -} - -""" -order by min() on columns of table "tournament_team_invites" -""" -input tournament_team_invites_min_order_by { - created_at: order_by - id: order_by - invited_by_player_steam_id: order_by - steam_id: order_by - tournament_team_id: order_by -} - -""" -response of any mutation on the table "tournament_team_invites" -""" -type tournament_team_invites_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [tournament_team_invites!]! -} - -""" -on_conflict condition type for table "tournament_team_invites" -""" -input tournament_team_invites_on_conflict { - constraint: tournament_team_invites_constraint! - update_columns: [tournament_team_invites_update_column!]! = [] - where: tournament_team_invites_bool_exp -} - -"""Ordering options when selecting data from "tournament_team_invites".""" -input tournament_team_invites_order_by { - created_at: order_by - id: order_by - invited_by: players_order_by - invited_by_player_steam_id: order_by - player: players_order_by - steam_id: order_by - team: tournament_teams_order_by - tournament_team_id: order_by -} - -"""primary key columns input for table: tournament_team_invites""" -input tournament_team_invites_pk_columns_input { - id: uuid! -} - -""" -select columns of table "tournament_team_invites" -""" -enum tournament_team_invites_select_column { - """column name""" - created_at - - """column name""" - id - - """column name""" - invited_by_player_steam_id - - """column name""" - steam_id - - """column name""" - tournament_team_id -} - -""" -input type for updating data in table "tournament_team_invites" -""" -input tournament_team_invites_set_input { - created_at: timestamptz - id: uuid - invited_by_player_steam_id: bigint - steam_id: bigint - tournament_team_id: uuid -} - -"""aggregate stddev on columns""" -type tournament_team_invites_stddev_fields { - invited_by_player_steam_id: Float - steam_id: Float -} - -""" -order by stddev() on columns of table "tournament_team_invites" -""" -input tournament_team_invites_stddev_order_by { - invited_by_player_steam_id: order_by - steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type tournament_team_invites_stddev_pop_fields { - invited_by_player_steam_id: Float - steam_id: Float -} - -""" -order by stddev_pop() on columns of table "tournament_team_invites" -""" -input tournament_team_invites_stddev_pop_order_by { - invited_by_player_steam_id: order_by - steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type tournament_team_invites_stddev_samp_fields { - invited_by_player_steam_id: Float - steam_id: Float -} - -""" -order by stddev_samp() on columns of table "tournament_team_invites" -""" -input tournament_team_invites_stddev_samp_order_by { - invited_by_player_steam_id: order_by - steam_id: order_by -} - -""" -Streaming cursor of the table "tournament_team_invites" -""" -input tournament_team_invites_stream_cursor_input { - """Stream column input with initial value""" - initial_value: tournament_team_invites_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input tournament_team_invites_stream_cursor_value_input { - created_at: timestamptz - id: uuid - invited_by_player_steam_id: bigint - steam_id: bigint - tournament_team_id: uuid -} - -"""aggregate sum on columns""" -type tournament_team_invites_sum_fields { - invited_by_player_steam_id: bigint - steam_id: bigint -} - -""" -order by sum() on columns of table "tournament_team_invites" -""" -input tournament_team_invites_sum_order_by { - invited_by_player_steam_id: order_by - steam_id: order_by -} - -""" -update columns of table "tournament_team_invites" -""" -enum tournament_team_invites_update_column { - """column name""" - created_at - - """column name""" - id - - """column name""" - invited_by_player_steam_id - - """column name""" - steam_id - - """column name""" - tournament_team_id -} - -input tournament_team_invites_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_team_invites_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_team_invites_set_input - - """filter the rows which have to be updated""" - where: tournament_team_invites_bool_exp! -} - -"""aggregate var_pop on columns""" -type tournament_team_invites_var_pop_fields { - invited_by_player_steam_id: Float - steam_id: Float -} - -""" -order by var_pop() on columns of table "tournament_team_invites" -""" -input tournament_team_invites_var_pop_order_by { - invited_by_player_steam_id: order_by - steam_id: order_by -} - -"""aggregate var_samp on columns""" -type tournament_team_invites_var_samp_fields { - invited_by_player_steam_id: Float - steam_id: Float -} - -""" -order by var_samp() on columns of table "tournament_team_invites" -""" -input tournament_team_invites_var_samp_order_by { - invited_by_player_steam_id: order_by - steam_id: order_by -} - -"""aggregate variance on columns""" -type tournament_team_invites_variance_fields { - invited_by_player_steam_id: Float - steam_id: Float -} - -""" -order by variance() on columns of table "tournament_team_invites" -""" -input tournament_team_invites_variance_order_by { - invited_by_player_steam_id: order_by - steam_id: order_by -} - -""" -columns and relationships of "tournament_team_roster" -""" -type tournament_team_roster { - checked_in_at: timestamptz - - """An object relationship""" - e_team_role: e_team_roles! - - """An object relationship""" - player: players! - player_steam_id: bigint! - role: e_team_roles_enum! - - """ - A computed field, executes function "tournament_team_roster_target_eligible" - """ - target_eligible: Boolean - - """An object relationship""" - tournament: tournaments! - tournament_id: uuid! - - """An object relationship""" - tournament_team: tournament_teams! - tournament_team_id: uuid! -} - -""" -aggregated selection of "tournament_team_roster" -""" -type tournament_team_roster_aggregate { - aggregate: tournament_team_roster_aggregate_fields - nodes: [tournament_team_roster!]! -} - -input tournament_team_roster_aggregate_bool_exp { - count: tournament_team_roster_aggregate_bool_exp_count -} - -input tournament_team_roster_aggregate_bool_exp_count { - arguments: [tournament_team_roster_select_column!] - distinct: Boolean - filter: tournament_team_roster_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "tournament_team_roster" -""" -type tournament_team_roster_aggregate_fields { - avg: tournament_team_roster_avg_fields - count(columns: [tournament_team_roster_select_column!], distinct: Boolean): Int! - max: tournament_team_roster_max_fields - min: tournament_team_roster_min_fields - stddev: tournament_team_roster_stddev_fields - stddev_pop: tournament_team_roster_stddev_pop_fields - stddev_samp: tournament_team_roster_stddev_samp_fields - sum: tournament_team_roster_sum_fields - var_pop: tournament_team_roster_var_pop_fields - var_samp: tournament_team_roster_var_samp_fields - variance: tournament_team_roster_variance_fields -} - -""" -order by aggregate values of table "tournament_team_roster" -""" -input tournament_team_roster_aggregate_order_by { - avg: tournament_team_roster_avg_order_by - count: order_by - max: tournament_team_roster_max_order_by - min: tournament_team_roster_min_order_by - stddev: tournament_team_roster_stddev_order_by - stddev_pop: tournament_team_roster_stddev_pop_order_by - stddev_samp: tournament_team_roster_stddev_samp_order_by - sum: tournament_team_roster_sum_order_by - var_pop: tournament_team_roster_var_pop_order_by - var_samp: tournament_team_roster_var_samp_order_by - variance: tournament_team_roster_variance_order_by -} - -""" -input type for inserting array relation for remote table "tournament_team_roster" -""" -input tournament_team_roster_arr_rel_insert_input { - data: [tournament_team_roster_insert_input!]! - - """upsert condition""" - on_conflict: tournament_team_roster_on_conflict -} - -"""aggregate avg on columns""" -type tournament_team_roster_avg_fields { - player_steam_id: Float -} - -""" -order by avg() on columns of table "tournament_team_roster" -""" -input tournament_team_roster_avg_order_by { - player_steam_id: order_by -} - -""" -Boolean expression to filter rows from the table "tournament_team_roster". All fields are combined with a logical 'AND'. -""" -input tournament_team_roster_bool_exp { - _and: [tournament_team_roster_bool_exp!] - _not: tournament_team_roster_bool_exp - _or: [tournament_team_roster_bool_exp!] - checked_in_at: timestamptz_comparison_exp - e_team_role: e_team_roles_bool_exp - player: players_bool_exp - player_steam_id: bigint_comparison_exp - role: e_team_roles_enum_comparison_exp - target_eligible: Boolean_comparison_exp - tournament: tournaments_bool_exp - tournament_id: uuid_comparison_exp - tournament_team: tournament_teams_bool_exp - tournament_team_id: uuid_comparison_exp -} - -""" -unique or primary key constraints on table "tournament_team_roster" -""" -enum tournament_team_roster_constraint { - """ - unique or primary key constraint on columns "player_steam_id", "tournament_id" - """ - tournament_roster_pkey - - """ - unique or primary key constraint on columns "player_steam_id", "tournament_id" - """ - tournament_roster_player_steam_id_tournament_id_key -} - -""" -input type for incrementing numeric columns in table "tournament_team_roster" -""" -input tournament_team_roster_inc_input { - player_steam_id: bigint -} - -""" -input type for inserting data into table "tournament_team_roster" -""" -input tournament_team_roster_insert_input { - checked_in_at: timestamptz - e_team_role: e_team_roles_obj_rel_insert_input - player: players_obj_rel_insert_input - player_steam_id: bigint - role: e_team_roles_enum - tournament: tournaments_obj_rel_insert_input - tournament_id: uuid - tournament_team: tournament_teams_obj_rel_insert_input - tournament_team_id: uuid -} - -"""aggregate max on columns""" -type tournament_team_roster_max_fields { - checked_in_at: timestamptz - player_steam_id: bigint - tournament_id: uuid - tournament_team_id: uuid -} - -""" -order by max() on columns of table "tournament_team_roster" -""" -input tournament_team_roster_max_order_by { - checked_in_at: order_by - player_steam_id: order_by - tournament_id: order_by - tournament_team_id: order_by -} - -"""aggregate min on columns""" -type tournament_team_roster_min_fields { - checked_in_at: timestamptz - player_steam_id: bigint - tournament_id: uuid - tournament_team_id: uuid -} - -""" -order by min() on columns of table "tournament_team_roster" -""" -input tournament_team_roster_min_order_by { - checked_in_at: order_by - player_steam_id: order_by - tournament_id: order_by - tournament_team_id: order_by -} - -""" -response of any mutation on the table "tournament_team_roster" -""" -type tournament_team_roster_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [tournament_team_roster!]! -} - -""" -on_conflict condition type for table "tournament_team_roster" -""" -input tournament_team_roster_on_conflict { - constraint: tournament_team_roster_constraint! - update_columns: [tournament_team_roster_update_column!]! = [] - where: tournament_team_roster_bool_exp -} - -"""Ordering options when selecting data from "tournament_team_roster".""" -input tournament_team_roster_order_by { - checked_in_at: order_by - e_team_role: e_team_roles_order_by - player: players_order_by - player_steam_id: order_by - role: order_by - target_eligible: order_by - tournament: tournaments_order_by - tournament_id: order_by - tournament_team: tournament_teams_order_by - tournament_team_id: order_by -} - -"""primary key columns input for table: tournament_team_roster""" -input tournament_team_roster_pk_columns_input { - player_steam_id: bigint! - tournament_id: uuid! -} - -""" -select columns of table "tournament_team_roster" -""" -enum tournament_team_roster_select_column { - """column name""" - checked_in_at - - """column name""" - player_steam_id - - """column name""" - role - - """column name""" - tournament_id - - """column name""" - tournament_team_id -} - -""" -input type for updating data in table "tournament_team_roster" -""" -input tournament_team_roster_set_input { - checked_in_at: timestamptz - player_steam_id: bigint - role: e_team_roles_enum - tournament_id: uuid - tournament_team_id: uuid -} - -"""aggregate stddev on columns""" -type tournament_team_roster_stddev_fields { - player_steam_id: Float -} - -""" -order by stddev() on columns of table "tournament_team_roster" -""" -input tournament_team_roster_stddev_order_by { - player_steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type tournament_team_roster_stddev_pop_fields { - player_steam_id: Float -} - -""" -order by stddev_pop() on columns of table "tournament_team_roster" -""" -input tournament_team_roster_stddev_pop_order_by { - player_steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type tournament_team_roster_stddev_samp_fields { - player_steam_id: Float -} - -""" -order by stddev_samp() on columns of table "tournament_team_roster" -""" -input tournament_team_roster_stddev_samp_order_by { - player_steam_id: order_by -} - -""" -Streaming cursor of the table "tournament_team_roster" -""" -input tournament_team_roster_stream_cursor_input { - """Stream column input with initial value""" - initial_value: tournament_team_roster_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input tournament_team_roster_stream_cursor_value_input { - checked_in_at: timestamptz - player_steam_id: bigint - role: e_team_roles_enum - tournament_id: uuid - tournament_team_id: uuid -} - -"""aggregate sum on columns""" -type tournament_team_roster_sum_fields { - player_steam_id: bigint -} - -""" -order by sum() on columns of table "tournament_team_roster" -""" -input tournament_team_roster_sum_order_by { - player_steam_id: order_by -} - -""" -update columns of table "tournament_team_roster" -""" -enum tournament_team_roster_update_column { - """column name""" - checked_in_at - - """column name""" - player_steam_id - - """column name""" - role - - """column name""" - tournament_id - - """column name""" - tournament_team_id -} - -input tournament_team_roster_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_team_roster_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_team_roster_set_input - - """filter the rows which have to be updated""" - where: tournament_team_roster_bool_exp! -} - -"""aggregate var_pop on columns""" -type tournament_team_roster_var_pop_fields { - player_steam_id: Float -} - -""" -order by var_pop() on columns of table "tournament_team_roster" -""" -input tournament_team_roster_var_pop_order_by { - player_steam_id: order_by -} - -"""aggregate var_samp on columns""" -type tournament_team_roster_var_samp_fields { - player_steam_id: Float -} - -""" -order by var_samp() on columns of table "tournament_team_roster" -""" -input tournament_team_roster_var_samp_order_by { - player_steam_id: order_by -} - -"""aggregate variance on columns""" -type tournament_team_roster_variance_fields { - player_steam_id: Float -} - -""" -order by variance() on columns of table "tournament_team_roster" -""" -input tournament_team_roster_variance_order_by { - player_steam_id: order_by -} - -""" -columns and relationships of "tournament_teams" -""" -type tournament_teams { - """ - A computed field, executes function "can_manage_tournament_team" - """ - can_manage: Boolean - - """An object relationship""" - captain: players - captain_steam_id: bigint - - """ - A computed field, executes function "tournament_team_checked_in" - """ - checked_in: Boolean - checked_in_at: timestamptz - created_at: timestamptz! - - """An object relationship""" - creator: players! - eligible_at: timestamptz - - """An array relationship""" - free_agents( - """distinct select on columns""" - distinct_on: [tournament_free_agents_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_free_agents_order_by!] - - """filter the rows returned""" - where: tournament_free_agents_bool_exp - ): [tournament_free_agents!]! - - """An aggregate relationship""" - free_agents_aggregate( - """distinct select on columns""" - distinct_on: [tournament_free_agents_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_free_agents_order_by!] - - """filter the rows returned""" - where: tournament_free_agents_bool_exp - ): tournament_free_agents_aggregate! - id: uuid! - - """An array relationship""" - invites( - """distinct select on columns""" - distinct_on: [tournament_team_invites_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_team_invites_order_by!] - - """filter the rows returned""" - where: tournament_team_invites_bool_exp - ): [tournament_team_invites!]! - - """An aggregate relationship""" - invites_aggregate( - """distinct select on columns""" - distinct_on: [tournament_team_invites_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_team_invites_order_by!] - - """filter the rows returned""" - where: tournament_team_invites_bool_exp - ): tournament_team_invites_aggregate! - - """Created by draft_tournament_free_agent_teams rather than registered""" - is_drafted: Boolean! - name: String - owner_steam_id: bigint! - - """An object relationship""" - results: v_team_stage_results - - """An array relationship""" - roster( - """distinct select on columns""" - distinct_on: [tournament_team_roster_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_team_roster_order_by!] - - """filter the rows returned""" - where: tournament_team_roster_bool_exp - ): [tournament_team_roster!]! - - """An aggregate relationship""" - roster_aggregate( - """distinct select on columns""" - distinct_on: [tournament_team_roster_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_team_roster_order_by!] - - """filter the rows returned""" - where: tournament_team_roster_bool_exp - ): tournament_team_roster_aggregate! - seed: Int - short_name: String - - """An object relationship""" - team: teams - team_id: uuid - - """An object relationship""" - tournament: tournaments! - tournament_id: uuid! -} - -""" -aggregated selection of "tournament_teams" -""" -type tournament_teams_aggregate { - aggregate: tournament_teams_aggregate_fields - nodes: [tournament_teams!]! -} - -input tournament_teams_aggregate_bool_exp { - bool_and: tournament_teams_aggregate_bool_exp_bool_and - bool_or: tournament_teams_aggregate_bool_exp_bool_or - count: tournament_teams_aggregate_bool_exp_count -} - -input tournament_teams_aggregate_bool_exp_bool_and { - arguments: tournament_teams_select_column_tournament_teams_aggregate_bool_exp_bool_and_arguments_columns! - distinct: Boolean - filter: tournament_teams_bool_exp - predicate: Boolean_comparison_exp! -} - -input tournament_teams_aggregate_bool_exp_bool_or { - arguments: tournament_teams_select_column_tournament_teams_aggregate_bool_exp_bool_or_arguments_columns! - distinct: Boolean - filter: tournament_teams_bool_exp - predicate: Boolean_comparison_exp! -} - -input tournament_teams_aggregate_bool_exp_count { - arguments: [tournament_teams_select_column!] - distinct: Boolean - filter: tournament_teams_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "tournament_teams" -""" -type tournament_teams_aggregate_fields { - avg: tournament_teams_avg_fields - count(columns: [tournament_teams_select_column!], distinct: Boolean): Int! - max: tournament_teams_max_fields - min: tournament_teams_min_fields - stddev: tournament_teams_stddev_fields - stddev_pop: tournament_teams_stddev_pop_fields - stddev_samp: tournament_teams_stddev_samp_fields - sum: tournament_teams_sum_fields - var_pop: tournament_teams_var_pop_fields - var_samp: tournament_teams_var_samp_fields - variance: tournament_teams_variance_fields -} - -""" -order by aggregate values of table "tournament_teams" -""" -input tournament_teams_aggregate_order_by { - avg: tournament_teams_avg_order_by - count: order_by - max: tournament_teams_max_order_by - min: tournament_teams_min_order_by - stddev: tournament_teams_stddev_order_by - stddev_pop: tournament_teams_stddev_pop_order_by - stddev_samp: tournament_teams_stddev_samp_order_by - sum: tournament_teams_sum_order_by - var_pop: tournament_teams_var_pop_order_by - var_samp: tournament_teams_var_samp_order_by - variance: tournament_teams_variance_order_by -} - -""" -input type for inserting array relation for remote table "tournament_teams" -""" -input tournament_teams_arr_rel_insert_input { - data: [tournament_teams_insert_input!]! - - """upsert condition""" - on_conflict: tournament_teams_on_conflict -} - -"""aggregate avg on columns""" -type tournament_teams_avg_fields { - captain_steam_id: Float - owner_steam_id: Float - seed: Float -} - -""" -order by avg() on columns of table "tournament_teams" -""" -input tournament_teams_avg_order_by { - captain_steam_id: order_by - owner_steam_id: order_by - seed: order_by -} - -""" -Boolean expression to filter rows from the table "tournament_teams". All fields are combined with a logical 'AND'. -""" -input tournament_teams_bool_exp { - _and: [tournament_teams_bool_exp!] - _not: tournament_teams_bool_exp - _or: [tournament_teams_bool_exp!] - can_manage: Boolean_comparison_exp - captain: players_bool_exp - captain_steam_id: bigint_comparison_exp - checked_in: Boolean_comparison_exp - checked_in_at: timestamptz_comparison_exp - created_at: timestamptz_comparison_exp - creator: players_bool_exp - eligible_at: timestamptz_comparison_exp - free_agents: tournament_free_agents_bool_exp - free_agents_aggregate: tournament_free_agents_aggregate_bool_exp - id: uuid_comparison_exp - invites: tournament_team_invites_bool_exp - invites_aggregate: tournament_team_invites_aggregate_bool_exp - is_drafted: Boolean_comparison_exp - name: String_comparison_exp - owner_steam_id: bigint_comparison_exp - results: v_team_stage_results_bool_exp - roster: tournament_team_roster_bool_exp - roster_aggregate: tournament_team_roster_aggregate_bool_exp - seed: Int_comparison_exp - short_name: String_comparison_exp - team: teams_bool_exp - team_id: uuid_comparison_exp - tournament: tournaments_bool_exp - tournament_id: uuid_comparison_exp -} - -""" -unique or primary key constraints on table "tournament_teams" -""" -enum tournament_teams_constraint { - """ - unique or primary key constraint on columns "tournament_id", "owner_steam_id" - """ - tournament_teams_creator_steam_id_tournament_id_key - - """ - unique or primary key constraint on columns "id" - """ - tournament_teams_pkey - - """ - unique or primary key constraint on columns "tournament_id", "name" - """ - tournament_teams_tournament_id_name_key - - """ - unique or primary key constraint on columns "tournament_id", "seed" - """ - tournament_teams_tournament_id_seed_key - - """ - unique or primary key constraint on columns "tournament_id", "team_id" - """ - tournament_teams_tournament_id_team_id_key -} - -""" -input type for incrementing numeric columns in table "tournament_teams" -""" -input tournament_teams_inc_input { - captain_steam_id: bigint - owner_steam_id: bigint - seed: Int -} - -""" -input type for inserting data into table "tournament_teams" -""" -input tournament_teams_insert_input { - captain: players_obj_rel_insert_input - captain_steam_id: bigint - checked_in_at: timestamptz - created_at: timestamptz - creator: players_obj_rel_insert_input - eligible_at: timestamptz - free_agents: tournament_free_agents_arr_rel_insert_input - id: uuid - invites: tournament_team_invites_arr_rel_insert_input - - """Created by draft_tournament_free_agent_teams rather than registered""" - is_drafted: Boolean - name: String - owner_steam_id: bigint - results: v_team_stage_results_obj_rel_insert_input - roster: tournament_team_roster_arr_rel_insert_input - seed: Int - short_name: String - team: teams_obj_rel_insert_input - team_id: uuid - tournament: tournaments_obj_rel_insert_input - tournament_id: uuid -} - -"""aggregate max on columns""" -type tournament_teams_max_fields { - captain_steam_id: bigint - checked_in_at: timestamptz - created_at: timestamptz - eligible_at: timestamptz - id: uuid - name: String - owner_steam_id: bigint - seed: Int - short_name: String - team_id: uuid - tournament_id: uuid -} - -""" -order by max() on columns of table "tournament_teams" -""" -input tournament_teams_max_order_by { - captain_steam_id: order_by - checked_in_at: order_by - created_at: order_by - eligible_at: order_by - id: order_by - name: order_by - owner_steam_id: order_by - seed: order_by - short_name: order_by - team_id: order_by - tournament_id: order_by -} - -"""aggregate min on columns""" -type tournament_teams_min_fields { - captain_steam_id: bigint - checked_in_at: timestamptz - created_at: timestamptz - eligible_at: timestamptz - id: uuid - name: String - owner_steam_id: bigint - seed: Int - short_name: String - team_id: uuid - tournament_id: uuid -} - -""" -order by min() on columns of table "tournament_teams" -""" -input tournament_teams_min_order_by { - captain_steam_id: order_by - checked_in_at: order_by - created_at: order_by - eligible_at: order_by - id: order_by - name: order_by - owner_steam_id: order_by - seed: order_by - short_name: order_by - team_id: order_by - tournament_id: order_by -} - -""" -response of any mutation on the table "tournament_teams" -""" -type tournament_teams_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [tournament_teams!]! -} - -""" -input type for inserting object relation for remote table "tournament_teams" -""" -input tournament_teams_obj_rel_insert_input { - data: tournament_teams_insert_input! - - """upsert condition""" - on_conflict: tournament_teams_on_conflict -} - -""" -on_conflict condition type for table "tournament_teams" -""" -input tournament_teams_on_conflict { - constraint: tournament_teams_constraint! - update_columns: [tournament_teams_update_column!]! = [] - where: tournament_teams_bool_exp -} - -"""Ordering options when selecting data from "tournament_teams".""" -input tournament_teams_order_by { - can_manage: order_by - captain: players_order_by - captain_steam_id: order_by - checked_in: order_by - checked_in_at: order_by - created_at: order_by - creator: players_order_by - eligible_at: order_by - free_agents_aggregate: tournament_free_agents_aggregate_order_by - id: order_by - invites_aggregate: tournament_team_invites_aggregate_order_by - is_drafted: order_by - name: order_by - owner_steam_id: order_by - results: v_team_stage_results_order_by - roster_aggregate: tournament_team_roster_aggregate_order_by - seed: order_by - short_name: order_by - team: teams_order_by - team_id: order_by - tournament: tournaments_order_by - tournament_id: order_by -} - -"""primary key columns input for table: tournament_teams""" -input tournament_teams_pk_columns_input { - id: uuid! -} - -""" -select columns of table "tournament_teams" -""" -enum tournament_teams_select_column { - """column name""" - captain_steam_id - - """column name""" - checked_in_at - - """column name""" - created_at - - """column name""" - eligible_at - - """column name""" - id - - """column name""" - is_drafted - - """column name""" - name - - """column name""" - owner_steam_id - - """column name""" - seed - - """column name""" - short_name - - """column name""" - team_id - - """column name""" - tournament_id -} - -""" -select "tournament_teams_aggregate_bool_exp_bool_and_arguments_columns" columns of table "tournament_teams" -""" -enum tournament_teams_select_column_tournament_teams_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - is_drafted -} - -""" -select "tournament_teams_aggregate_bool_exp_bool_or_arguments_columns" columns of table "tournament_teams" -""" -enum tournament_teams_select_column_tournament_teams_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - is_drafted -} - -""" -input type for updating data in table "tournament_teams" -""" -input tournament_teams_set_input { - captain_steam_id: bigint - checked_in_at: timestamptz - created_at: timestamptz - eligible_at: timestamptz - id: uuid - - """Created by draft_tournament_free_agent_teams rather than registered""" - is_drafted: Boolean - name: String - owner_steam_id: bigint - seed: Int - short_name: String - team_id: uuid - tournament_id: uuid -} - -"""aggregate stddev on columns""" -type tournament_teams_stddev_fields { - captain_steam_id: Float - owner_steam_id: Float - seed: Float -} - -""" -order by stddev() on columns of table "tournament_teams" -""" -input tournament_teams_stddev_order_by { - captain_steam_id: order_by - owner_steam_id: order_by - seed: order_by -} - -"""aggregate stddev_pop on columns""" -type tournament_teams_stddev_pop_fields { - captain_steam_id: Float - owner_steam_id: Float - seed: Float -} - -""" -order by stddev_pop() on columns of table "tournament_teams" -""" -input tournament_teams_stddev_pop_order_by { - captain_steam_id: order_by - owner_steam_id: order_by - seed: order_by -} - -"""aggregate stddev_samp on columns""" -type tournament_teams_stddev_samp_fields { - captain_steam_id: Float - owner_steam_id: Float - seed: Float -} - -""" -order by stddev_samp() on columns of table "tournament_teams" -""" -input tournament_teams_stddev_samp_order_by { - captain_steam_id: order_by - owner_steam_id: order_by - seed: order_by -} - -""" -Streaming cursor of the table "tournament_teams" -""" -input tournament_teams_stream_cursor_input { - """Stream column input with initial value""" - initial_value: tournament_teams_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input tournament_teams_stream_cursor_value_input { - captain_steam_id: bigint - checked_in_at: timestamptz - created_at: timestamptz - eligible_at: timestamptz - id: uuid - - """Created by draft_tournament_free_agent_teams rather than registered""" - is_drafted: Boolean - name: String - owner_steam_id: bigint - seed: Int - short_name: String - team_id: uuid - tournament_id: uuid -} - -"""aggregate sum on columns""" -type tournament_teams_sum_fields { - captain_steam_id: bigint - owner_steam_id: bigint - seed: Int -} - -""" -order by sum() on columns of table "tournament_teams" -""" -input tournament_teams_sum_order_by { - captain_steam_id: order_by - owner_steam_id: order_by - seed: order_by -} - -""" -update columns of table "tournament_teams" -""" -enum tournament_teams_update_column { - """column name""" - captain_steam_id - - """column name""" - checked_in_at - - """column name""" - created_at - - """column name""" - eligible_at - - """column name""" - id - - """column name""" - is_drafted - - """column name""" - name - - """column name""" - owner_steam_id - - """column name""" - seed - - """column name""" - short_name - - """column name""" - team_id - - """column name""" - tournament_id -} - -input tournament_teams_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: tournament_teams_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournament_teams_set_input - - """filter the rows which have to be updated""" - where: tournament_teams_bool_exp! -} - -"""aggregate var_pop on columns""" -type tournament_teams_var_pop_fields { - captain_steam_id: Float - owner_steam_id: Float - seed: Float -} - -""" -order by var_pop() on columns of table "tournament_teams" -""" -input tournament_teams_var_pop_order_by { - captain_steam_id: order_by - owner_steam_id: order_by - seed: order_by -} - -"""aggregate var_samp on columns""" -type tournament_teams_var_samp_fields { - captain_steam_id: Float - owner_steam_id: Float - seed: Float -} - -""" -order by var_samp() on columns of table "tournament_teams" -""" -input tournament_teams_var_samp_order_by { - captain_steam_id: order_by - owner_steam_id: order_by - seed: order_by -} - -"""aggregate variance on columns""" -type tournament_teams_variance_fields { - captain_steam_id: Float - owner_steam_id: Float - seed: Float -} - -""" -order by variance() on columns of table "tournament_teams" -""" -input tournament_teams_variance_order_by { - captain_steam_id: order_by - owner_steam_id: order_by - seed: order_by -} - -""" -columns and relationships of "tournaments" -""" -type tournaments { - """An object relationship""" - admin: players! - auto_start: Boolean! - - """An array relationship""" - award_configs( - """distinct select on columns""" - distinct_on: [tournament_awards_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_awards_order_by!] - - """filter the rows returned""" - where: tournament_awards_bool_exp - ): [tournament_awards!]! - - """An aggregate relationship""" - award_configs_aggregate( - """distinct select on columns""" - distinct_on: [tournament_awards_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_awards_order_by!] - - """filter the rows returned""" - where: tournament_awards_bool_exp - ): tournament_awards_aggregate! - - """An array relationship""" - awards( - """distinct select on columns""" - distinct_on: [award_recipients_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: [award_recipients_order_by!] - - """filter the rows returned""" - where: award_recipients_bool_exp - ): [award_recipients!]! - - """An aggregate relationship""" - awards_aggregate( - """distinct select on columns""" - distinct_on: [award_recipients_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: [award_recipients_order_by!] - - """filter the rows returned""" - where: award_recipients_bool_exp - ): award_recipients_aggregate! - awards_enabled: Boolean! - banner: String - - """ - A computed field, executes function "can_cancel_tournament" - """ - can_cancel: Boolean - - """ - A computed field, executes function "can_close_tournament_registration" - """ - can_close_registration: Boolean - - """ - A computed field, executes function "can_join_tournament" - """ - can_join: Boolean - - """ - A computed field, executes function "can_open_tournament_registration" - """ - can_open_registration: Boolean - - """ - A computed field, executes function "can_pause_tournament" - """ - can_pause: Boolean - - """ - A computed field, executes function "can_resume_tournament" - """ - can_resume: Boolean - - """ - A computed field, executes function "can_review_tournament_check_in" - """ - can_review_check_in: Boolean - - """ - A computed field, executes function "can_setup_tournament" - """ - can_setup: Boolean - - """ - A computed field, executes function "can_start_tournament" - """ - can_start: Boolean - - """An array relationship""" - categories( - """distinct select on columns""" - distinct_on: [tournament_categories_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_categories_order_by!] - - """filter the rows returned""" - where: tournament_categories_bool_exp - ): [tournament_categories!]! - - """An aggregate relationship""" - categories_aggregate( - """distinct select on columns""" - distinct_on: [tournament_categories_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_categories_order_by!] - - """filter the rows returned""" - where: tournament_categories_bool_exp - ): tournament_categories_aggregate! - - """The check_in_ends_at the close pass has already acted on""" - check_in_closed_for: timestamptz - check_in_closes_before_minutes: Int! - - """The check_in_ends_at the closing reminder was sent for""" - check_in_closing_notified_for: timestamptz - - """When the check-in window closes; NULL until it opens""" - check_in_ends_at: timestamptz - - """ - A computed field, executes function "tournament_check_in_open" - """ - check_in_open: Boolean - check_in_opens_before_minutes: Int! - check_in_required: Boolean! - - """ - Who confirms a team: Captains, every rostered Player, or the organizer (Admin) - """ - check_in_setting: e_check_in_settings_enum! - - """ - A computed field, executes function "tournament_check_in_started" - """ - check_in_started: Boolean - created_at: timestamptz - description: String - discord_guild_id: String - discord_notifications_enabled: Boolean - discord_notify_Canceled: Boolean - discord_notify_Finished: Boolean - discord_notify_Forfeit: Boolean - discord_notify_Live: Boolean - discord_notify_MapPaused: Boolean - discord_notify_PickingPlayers: Boolean - discord_notify_Scheduled: Boolean - discord_notify_Surrendered: Boolean - discord_notify_Tie: Boolean - discord_notify_Veto: Boolean - discord_notify_WaitingForCheckIn: Boolean - discord_notify_WaitingForServer: Boolean - discord_role_id: String - discord_voice_enabled: Boolean! - discord_webhook: String - - """An object relationship""" - e_tournament_status: e_tournament_status! - - """An array relationship""" - free_agents( - """distinct select on columns""" - distinct_on: [tournament_free_agents_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_free_agents_order_by!] - - """filter the rows returned""" - where: tournament_free_agents_bool_exp - ): [tournament_free_agents!]! - - """An aggregate relationship""" - free_agents_aggregate( - """distinct select on columns""" - distinct_on: [tournament_free_agents_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_free_agents_order_by!] - - """filter the rows returned""" - where: tournament_free_agents_bool_exp - ): tournament_free_agents_aggregate! - - """ - A computed field, executes function "tournament_has_min_teams" - """ - has_min_teams: Boolean - homepage: String - id: uuid! - invite_only: Boolean! - is_league: Boolean! - - """ - A computed field, executes function "is_tournament_organizer" - """ - is_organizer: Boolean - - """ - A computed field, executes function "joined_tournament" - """ - joined_tournament: Boolean - latitude: float8 - - """An object relationship""" - league_season_division: league_season_divisions - location: String - logo: String - longitude: float8 - match_options_id: uuid! - max_elo: Int - - """ - A computed field, executes function "tournament_max_players_per_lineup" - """ - max_players_per_lineup: Int - - """ - A computed field, executes function "meets_min_role" - """ - meets_min_role: Boolean - min_elo: Int - - """ - A computed field, executes function "tournament_min_players_per_lineup" - """ - min_players_per_lineup: Int - min_role: e_player_roles_enum - - """ - A computed field, executes function "tournament_missed_check_in_count" - """ - missed_check_in_count: Int - name: String! - - """An object relationship""" - options: match_options! - organizer_steam_id: bigint! - - """An array relationship""" - organizer_teams( - """distinct select on columns""" - distinct_on: [tournament_organizer_teams_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_organizer_teams_order_by!] - - """filter the rows returned""" - where: tournament_organizer_teams_bool_exp - ): [tournament_organizer_teams!]! - - """An aggregate relationship""" - organizer_teams_aggregate( - """distinct select on columns""" - distinct_on: [tournament_organizer_teams_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_organizer_teams_order_by!] - - """filter the rows returned""" - where: tournament_organizer_teams_bool_exp - ): tournament_organizer_teams_aggregate! - - """An array relationship""" - organizers( - """distinct select on columns""" - distinct_on: [tournament_organizers_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_organizers_order_by!] - - """filter the rows returned""" - where: tournament_organizers_bool_exp - ): [tournament_organizers!]! - - """An aggregate relationship""" - organizers_aggregate( - """distinct select on columns""" - distinct_on: [tournament_organizers_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_organizers_order_by!] - - """filter the rows returned""" - where: tournament_organizers_bool_exp - ): tournament_organizers_aggregate! - - """An array relationship""" - player_stats( - """distinct select on columns""" - distinct_on: [v_tournament_player_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_tournament_player_stats_order_by!] - - """filter the rows returned""" - where: v_tournament_player_stats_bool_exp - ): [v_tournament_player_stats!]! - - """An aggregate relationship""" - player_stats_aggregate( - """distinct select on columns""" - distinct_on: [v_tournament_player_stats_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_tournament_player_stats_order_by!] - - """filter the rows returned""" - where: v_tournament_player_stats_bool_exp - ): v_tournament_player_stats_aggregate! - - """An array relationship""" - prizes( - """distinct select on columns""" - distinct_on: [tournament_prizes_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_prizes_order_by!] - - """filter the rows returned""" - where: tournament_prizes_bool_exp - ): [tournament_prizes!]! - - """An aggregate relationship""" - prizes_aggregate( - """distinct select on columns""" - distinct_on: [tournament_prizes_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_prizes_order_by!] - - """filter the rows returned""" - where: tournament_prizes_bool_exp - ): tournament_prizes_aggregate! - - """Preferred server regions for hosted matches""" - regions: [String!]! - registration_type: e_tournament_registration_types_enum! - - """ - A computed field, executes function "tournament_registration_unlocked_for_session" - """ - registration_unlocked: Boolean - - """An array relationship""" - results( - """distinct select on columns""" - distinct_on: [v_team_tournament_results_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_team_tournament_results_order_by!] - - """filter the rows returned""" - where: v_team_tournament_results_bool_exp - ): [v_team_tournament_results!]! - - """An aggregate relationship""" - results_aggregate( - """distinct select on columns""" - distinct_on: [v_team_tournament_results_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [v_team_tournament_results_order_by!] - - """filter the rows returned""" - where: v_team_tournament_results_bool_exp - ): v_team_tournament_results_aggregate! - - """An array relationship""" - rosters( - """distinct select on columns""" - distinct_on: [tournament_team_roster_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_team_roster_order_by!] - - """filter the rows returned""" - where: tournament_team_roster_bool_exp - ): [tournament_team_roster!]! - - """An aggregate relationship""" - rosters_aggregate( - """distinct select on columns""" - distinct_on: [tournament_team_roster_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_team_roster_order_by!] - - """filter the rows returned""" - where: tournament_team_roster_bool_exp - ): tournament_team_roster_aggregate! - scheduling_mode: String! - - """An array relationship""" - stages( - """distinct select on columns""" - distinct_on: [tournament_stages_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_stages_order_by!] - - """filter the rows returned""" - where: tournament_stages_bool_exp - ): [tournament_stages!]! - - """An aggregate relationship""" - stages_aggregate( - """distinct select on columns""" - distinct_on: [tournament_stages_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_stages_order_by!] - - """filter the rows returned""" - where: tournament_stages_bool_exp - ): tournament_stages_aggregate! - start: timestamptz! - status: e_tournament_status_enum! - - """An array relationship""" - teams( - """distinct select on columns""" - distinct_on: [tournament_teams_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_teams_order_by!] - - """filter the rows returned""" - where: tournament_teams_bool_exp - ): [tournament_teams!]! - - """An aggregate relationship""" - teams_aggregate( - """distinct select on columns""" - distinct_on: [tournament_teams_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [tournament_teams_order_by!] - - """filter the rows returned""" - where: tournament_teams_bool_exp - ): tournament_teams_aggregate! -} - -""" -aggregated selection of "tournaments" -""" -type tournaments_aggregate { - aggregate: tournaments_aggregate_fields - nodes: [tournaments!]! -} - -input tournaments_aggregate_bool_exp { - avg: tournaments_aggregate_bool_exp_avg - bool_and: tournaments_aggregate_bool_exp_bool_and - bool_or: tournaments_aggregate_bool_exp_bool_or - corr: tournaments_aggregate_bool_exp_corr - count: tournaments_aggregate_bool_exp_count - covar_samp: tournaments_aggregate_bool_exp_covar_samp - max: tournaments_aggregate_bool_exp_max - min: tournaments_aggregate_bool_exp_min - stddev_samp: tournaments_aggregate_bool_exp_stddev_samp - sum: tournaments_aggregate_bool_exp_sum - var_samp: tournaments_aggregate_bool_exp_var_samp -} - -input tournaments_aggregate_bool_exp_avg { - arguments: tournaments_select_column_tournaments_aggregate_bool_exp_avg_arguments_columns! - distinct: Boolean - filter: tournaments_bool_exp - predicate: float8_comparison_exp! -} - -input tournaments_aggregate_bool_exp_bool_and { - arguments: tournaments_select_column_tournaments_aggregate_bool_exp_bool_and_arguments_columns! - distinct: Boolean - filter: tournaments_bool_exp - predicate: Boolean_comparison_exp! -} - -input tournaments_aggregate_bool_exp_bool_or { - arguments: tournaments_select_column_tournaments_aggregate_bool_exp_bool_or_arguments_columns! - distinct: Boolean - filter: tournaments_bool_exp - predicate: Boolean_comparison_exp! -} - -input tournaments_aggregate_bool_exp_corr { - arguments: tournaments_aggregate_bool_exp_corr_arguments! - distinct: Boolean - filter: tournaments_bool_exp - predicate: float8_comparison_exp! -} - -input tournaments_aggregate_bool_exp_corr_arguments { - X: tournaments_select_column_tournaments_aggregate_bool_exp_corr_arguments_columns! - Y: tournaments_select_column_tournaments_aggregate_bool_exp_corr_arguments_columns! -} - -input tournaments_aggregate_bool_exp_count { - arguments: [tournaments_select_column!] - distinct: Boolean - filter: tournaments_bool_exp - predicate: Int_comparison_exp! -} - -input tournaments_aggregate_bool_exp_covar_samp { - arguments: tournaments_aggregate_bool_exp_covar_samp_arguments! - distinct: Boolean - filter: tournaments_bool_exp - predicate: float8_comparison_exp! -} - -input tournaments_aggregate_bool_exp_covar_samp_arguments { - X: tournaments_select_column_tournaments_aggregate_bool_exp_covar_samp_arguments_columns! - Y: tournaments_select_column_tournaments_aggregate_bool_exp_covar_samp_arguments_columns! -} - -input tournaments_aggregate_bool_exp_max { - arguments: tournaments_select_column_tournaments_aggregate_bool_exp_max_arguments_columns! - distinct: Boolean - filter: tournaments_bool_exp - predicate: float8_comparison_exp! -} - -input tournaments_aggregate_bool_exp_min { - arguments: tournaments_select_column_tournaments_aggregate_bool_exp_min_arguments_columns! - distinct: Boolean - filter: tournaments_bool_exp - predicate: float8_comparison_exp! -} - -input tournaments_aggregate_bool_exp_stddev_samp { - arguments: tournaments_select_column_tournaments_aggregate_bool_exp_stddev_samp_arguments_columns! - distinct: Boolean - filter: tournaments_bool_exp - predicate: float8_comparison_exp! -} - -input tournaments_aggregate_bool_exp_sum { - arguments: tournaments_select_column_tournaments_aggregate_bool_exp_sum_arguments_columns! - distinct: Boolean - filter: tournaments_bool_exp - predicate: float8_comparison_exp! -} - -input tournaments_aggregate_bool_exp_var_samp { - arguments: tournaments_select_column_tournaments_aggregate_bool_exp_var_samp_arguments_columns! - distinct: Boolean - filter: tournaments_bool_exp - predicate: float8_comparison_exp! -} - -""" -aggregate fields of "tournaments" -""" -type tournaments_aggregate_fields { - avg: tournaments_avg_fields - count(columns: [tournaments_select_column!], distinct: Boolean): Int! - max: tournaments_max_fields - min: tournaments_min_fields - stddev: tournaments_stddev_fields - stddev_pop: tournaments_stddev_pop_fields - stddev_samp: tournaments_stddev_samp_fields - sum: tournaments_sum_fields - var_pop: tournaments_var_pop_fields - var_samp: tournaments_var_samp_fields - variance: tournaments_variance_fields -} - -""" -order by aggregate values of table "tournaments" -""" -input tournaments_aggregate_order_by { - avg: tournaments_avg_order_by - count: order_by - max: tournaments_max_order_by - min: tournaments_min_order_by - stddev: tournaments_stddev_order_by - stddev_pop: tournaments_stddev_pop_order_by - stddev_samp: tournaments_stddev_samp_order_by - sum: tournaments_sum_order_by - var_pop: tournaments_var_pop_order_by - var_samp: tournaments_var_samp_order_by - variance: tournaments_variance_order_by -} - -""" -input type for inserting array relation for remote table "tournaments" -""" -input tournaments_arr_rel_insert_input { - data: [tournaments_insert_input!]! - - """upsert condition""" - on_conflict: tournaments_on_conflict -} - -"""aggregate avg on columns""" -type tournaments_avg_fields { - check_in_closes_before_minutes: Float - check_in_opens_before_minutes: Float - latitude: Float - longitude: Float - max_elo: Float - - """ - A computed field, executes function "tournament_max_players_per_lineup" - """ - max_players_per_lineup: Int - min_elo: Float - - """ - A computed field, executes function "tournament_min_players_per_lineup" - """ - min_players_per_lineup: Int - - """ - A computed field, executes function "tournament_missed_check_in_count" - """ - missed_check_in_count: Int - organizer_steam_id: Float -} - -""" -order by avg() on columns of table "tournaments" -""" -input tournaments_avg_order_by { - check_in_closes_before_minutes: order_by - check_in_opens_before_minutes: order_by - latitude: order_by - longitude: order_by - max_elo: order_by - min_elo: order_by - organizer_steam_id: order_by -} - -""" -Boolean expression to filter rows from the table "tournaments". All fields are combined with a logical 'AND'. -""" -input tournaments_bool_exp { - _and: [tournaments_bool_exp!] - _not: tournaments_bool_exp - _or: [tournaments_bool_exp!] - admin: players_bool_exp - auto_start: Boolean_comparison_exp - award_configs: tournament_awards_bool_exp - award_configs_aggregate: tournament_awards_aggregate_bool_exp - awards: award_recipients_bool_exp - awards_aggregate: award_recipients_aggregate_bool_exp - awards_enabled: Boolean_comparison_exp - banner: String_comparison_exp - can_cancel: Boolean_comparison_exp - can_close_registration: Boolean_comparison_exp - can_join: Boolean_comparison_exp - can_open_registration: Boolean_comparison_exp - can_pause: Boolean_comparison_exp - can_resume: Boolean_comparison_exp - can_review_check_in: Boolean_comparison_exp - can_setup: Boolean_comparison_exp - can_start: Boolean_comparison_exp - categories: tournament_categories_bool_exp - categories_aggregate: tournament_categories_aggregate_bool_exp - check_in_closed_for: timestamptz_comparison_exp - check_in_closes_before_minutes: Int_comparison_exp - check_in_closing_notified_for: timestamptz_comparison_exp - check_in_ends_at: timestamptz_comparison_exp - check_in_open: Boolean_comparison_exp - check_in_opens_before_minutes: Int_comparison_exp - check_in_required: Boolean_comparison_exp - check_in_setting: e_check_in_settings_enum_comparison_exp - check_in_started: Boolean_comparison_exp - created_at: timestamptz_comparison_exp - description: String_comparison_exp - discord_guild_id: String_comparison_exp - discord_notifications_enabled: Boolean_comparison_exp - discord_notify_Canceled: Boolean_comparison_exp - discord_notify_Finished: Boolean_comparison_exp - discord_notify_Forfeit: Boolean_comparison_exp - discord_notify_Live: Boolean_comparison_exp - discord_notify_MapPaused: Boolean_comparison_exp - discord_notify_PickingPlayers: Boolean_comparison_exp - discord_notify_Scheduled: Boolean_comparison_exp - discord_notify_Surrendered: Boolean_comparison_exp - discord_notify_Tie: Boolean_comparison_exp - discord_notify_Veto: Boolean_comparison_exp - discord_notify_WaitingForCheckIn: Boolean_comparison_exp - discord_notify_WaitingForServer: Boolean_comparison_exp - discord_role_id: String_comparison_exp - discord_voice_enabled: Boolean_comparison_exp - discord_webhook: String_comparison_exp - e_tournament_status: e_tournament_status_bool_exp - free_agents: tournament_free_agents_bool_exp - free_agents_aggregate: tournament_free_agents_aggregate_bool_exp - has_min_teams: Boolean_comparison_exp - homepage: String_comparison_exp - id: uuid_comparison_exp - invite_only: Boolean_comparison_exp - is_league: Boolean_comparison_exp - is_organizer: Boolean_comparison_exp - joined_tournament: Boolean_comparison_exp - latitude: float8_comparison_exp - league_season_division: league_season_divisions_bool_exp - location: String_comparison_exp - logo: String_comparison_exp - longitude: float8_comparison_exp - match_options_id: uuid_comparison_exp - max_elo: Int_comparison_exp - max_players_per_lineup: Int_comparison_exp - meets_min_role: Boolean_comparison_exp - min_elo: Int_comparison_exp - min_players_per_lineup: Int_comparison_exp - min_role: e_player_roles_enum_comparison_exp - missed_check_in_count: Int_comparison_exp - name: String_comparison_exp - options: match_options_bool_exp - organizer_steam_id: bigint_comparison_exp - organizer_teams: tournament_organizer_teams_bool_exp - organizer_teams_aggregate: tournament_organizer_teams_aggregate_bool_exp - organizers: tournament_organizers_bool_exp - organizers_aggregate: tournament_organizers_aggregate_bool_exp - player_stats: v_tournament_player_stats_bool_exp - player_stats_aggregate: v_tournament_player_stats_aggregate_bool_exp - prizes: tournament_prizes_bool_exp - prizes_aggregate: tournament_prizes_aggregate_bool_exp - regions: String_array_comparison_exp - registration_type: e_tournament_registration_types_enum_comparison_exp - registration_unlocked: Boolean_comparison_exp - results: v_team_tournament_results_bool_exp - results_aggregate: v_team_tournament_results_aggregate_bool_exp - rosters: tournament_team_roster_bool_exp - rosters_aggregate: tournament_team_roster_aggregate_bool_exp - scheduling_mode: String_comparison_exp - stages: tournament_stages_bool_exp - stages_aggregate: tournament_stages_aggregate_bool_exp - start: timestamptz_comparison_exp - status: e_tournament_status_enum_comparison_exp - teams: tournament_teams_bool_exp - teams_aggregate: tournament_teams_aggregate_bool_exp -} - -""" -unique or primary key constraints on table "tournaments" -""" -enum tournaments_constraint { - """ - unique or primary key constraint on columns "match_options_id" - """ - tournaments_match_options_id_key - - """ - unique or primary key constraint on columns "id" - """ - tournaments_pkey -} - -""" -input type for incrementing numeric columns in table "tournaments" -""" -input tournaments_inc_input { - check_in_closes_before_minutes: Int - check_in_opens_before_minutes: Int - latitude: float8 - longitude: float8 - max_elo: Int - min_elo: Int - organizer_steam_id: bigint -} - -""" -input type for inserting data into table "tournaments" -""" -input tournaments_insert_input { - admin: players_obj_rel_insert_input - auto_start: Boolean - award_configs: tournament_awards_arr_rel_insert_input - awards: award_recipients_arr_rel_insert_input - awards_enabled: Boolean - banner: String - categories: tournament_categories_arr_rel_insert_input - - """The check_in_ends_at the close pass has already acted on""" - check_in_closed_for: timestamptz - check_in_closes_before_minutes: Int - - """The check_in_ends_at the closing reminder was sent for""" - check_in_closing_notified_for: timestamptz - - """When the check-in window closes; NULL until it opens""" - check_in_ends_at: timestamptz - check_in_opens_before_minutes: Int - check_in_required: Boolean - - """ - Who confirms a team: Captains, every rostered Player, or the organizer (Admin) - """ - check_in_setting: e_check_in_settings_enum - created_at: timestamptz - description: String - discord_guild_id: String - discord_notifications_enabled: Boolean - discord_notify_Canceled: Boolean - discord_notify_Finished: Boolean - discord_notify_Forfeit: Boolean - discord_notify_Live: Boolean - discord_notify_MapPaused: Boolean - discord_notify_PickingPlayers: Boolean - discord_notify_Scheduled: Boolean - discord_notify_Surrendered: Boolean - discord_notify_Tie: Boolean - discord_notify_Veto: Boolean - discord_notify_WaitingForCheckIn: Boolean - discord_notify_WaitingForServer: Boolean - discord_role_id: String - discord_voice_enabled: Boolean - discord_webhook: String - e_tournament_status: e_tournament_status_obj_rel_insert_input - free_agents: tournament_free_agents_arr_rel_insert_input - homepage: String - id: uuid - invite_only: Boolean - is_league: Boolean - latitude: float8 - league_season_division: league_season_divisions_obj_rel_insert_input - location: String - logo: String - longitude: float8 - match_options_id: uuid - max_elo: Int - min_elo: Int - min_role: e_player_roles_enum - name: String - options: match_options_obj_rel_insert_input - organizer_steam_id: bigint - organizer_teams: tournament_organizer_teams_arr_rel_insert_input - organizers: tournament_organizers_arr_rel_insert_input - player_stats: v_tournament_player_stats_arr_rel_insert_input - prizes: tournament_prizes_arr_rel_insert_input - - """Preferred server regions for hosted matches""" - regions: [String!] - registration_type: e_tournament_registration_types_enum - results: v_team_tournament_results_arr_rel_insert_input - rosters: tournament_team_roster_arr_rel_insert_input - scheduling_mode: String - stages: tournament_stages_arr_rel_insert_input - start: timestamptz - status: e_tournament_status_enum - teams: tournament_teams_arr_rel_insert_input -} - -"""aggregate max on columns""" -type tournaments_max_fields { - banner: String - - """The check_in_ends_at the close pass has already acted on""" - check_in_closed_for: timestamptz - check_in_closes_before_minutes: Int - - """The check_in_ends_at the closing reminder was sent for""" - check_in_closing_notified_for: timestamptz - - """When the check-in window closes; NULL until it opens""" - check_in_ends_at: timestamptz - check_in_opens_before_minutes: Int - created_at: timestamptz - description: String - discord_guild_id: String - discord_role_id: String - discord_webhook: String - homepage: String - id: uuid - latitude: float8 - location: String - logo: String - longitude: float8 - match_options_id: uuid - max_elo: Int - - """ - A computed field, executes function "tournament_max_players_per_lineup" - """ - max_players_per_lineup: Int - min_elo: Int - - """ - A computed field, executes function "tournament_min_players_per_lineup" - """ - min_players_per_lineup: Int - - """ - A computed field, executes function "tournament_missed_check_in_count" - """ - missed_check_in_count: Int - name: String - organizer_steam_id: bigint - - """Preferred server regions for hosted matches""" - regions: [String!] - scheduling_mode: String - start: timestamptz -} - -""" -order by max() on columns of table "tournaments" -""" -input tournaments_max_order_by { - banner: order_by - - """The check_in_ends_at the close pass has already acted on""" - check_in_closed_for: order_by - check_in_closes_before_minutes: order_by - - """The check_in_ends_at the closing reminder was sent for""" - check_in_closing_notified_for: order_by - - """When the check-in window closes; NULL until it opens""" - check_in_ends_at: order_by - check_in_opens_before_minutes: order_by - created_at: order_by - description: order_by - discord_guild_id: order_by - discord_role_id: order_by - discord_webhook: order_by - homepage: order_by - id: order_by - latitude: order_by - location: order_by - logo: order_by - longitude: order_by - match_options_id: order_by - max_elo: order_by - min_elo: order_by - name: order_by - organizer_steam_id: order_by - - """Preferred server regions for hosted matches""" - regions: order_by - scheduling_mode: order_by - start: order_by -} - -"""aggregate min on columns""" -type tournaments_min_fields { - banner: String - - """The check_in_ends_at the close pass has already acted on""" - check_in_closed_for: timestamptz - check_in_closes_before_minutes: Int - - """The check_in_ends_at the closing reminder was sent for""" - check_in_closing_notified_for: timestamptz - - """When the check-in window closes; NULL until it opens""" - check_in_ends_at: timestamptz - check_in_opens_before_minutes: Int - created_at: timestamptz - description: String - discord_guild_id: String - discord_role_id: String - discord_webhook: String - homepage: String - id: uuid - latitude: float8 - location: String - logo: String - longitude: float8 - match_options_id: uuid - max_elo: Int - - """ - A computed field, executes function "tournament_max_players_per_lineup" - """ - max_players_per_lineup: Int - min_elo: Int - - """ - A computed field, executes function "tournament_min_players_per_lineup" - """ - min_players_per_lineup: Int - - """ - A computed field, executes function "tournament_missed_check_in_count" - """ - missed_check_in_count: Int - name: String - organizer_steam_id: bigint - - """Preferred server regions for hosted matches""" - regions: [String!] - scheduling_mode: String - start: timestamptz -} - -""" -order by min() on columns of table "tournaments" -""" -input tournaments_min_order_by { - banner: order_by - - """The check_in_ends_at the close pass has already acted on""" - check_in_closed_for: order_by - check_in_closes_before_minutes: order_by - - """The check_in_ends_at the closing reminder was sent for""" - check_in_closing_notified_for: order_by - - """When the check-in window closes; NULL until it opens""" - check_in_ends_at: order_by - check_in_opens_before_minutes: order_by - created_at: order_by - description: order_by - discord_guild_id: order_by - discord_role_id: order_by - discord_webhook: order_by - homepage: order_by - id: order_by - latitude: order_by - location: order_by - logo: order_by - longitude: order_by - match_options_id: order_by - max_elo: order_by - min_elo: order_by - name: order_by - organizer_steam_id: order_by - - """Preferred server regions for hosted matches""" - regions: order_by - scheduling_mode: order_by - start: order_by -} - -""" -response of any mutation on the table "tournaments" -""" -type tournaments_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [tournaments!]! -} - -""" -input type for inserting object relation for remote table "tournaments" -""" -input tournaments_obj_rel_insert_input { - data: tournaments_insert_input! - - """upsert condition""" - on_conflict: tournaments_on_conflict -} - -""" -on_conflict condition type for table "tournaments" -""" -input tournaments_on_conflict { - constraint: tournaments_constraint! - update_columns: [tournaments_update_column!]! = [] - where: tournaments_bool_exp -} - -"""Ordering options when selecting data from "tournaments".""" -input tournaments_order_by { - admin: players_order_by - auto_start: order_by - award_configs_aggregate: tournament_awards_aggregate_order_by - awards_aggregate: award_recipients_aggregate_order_by - awards_enabled: order_by - banner: order_by - can_cancel: order_by - can_close_registration: order_by - can_join: order_by - can_open_registration: order_by - can_pause: order_by - can_resume: order_by - can_review_check_in: order_by - can_setup: order_by - can_start: order_by - categories_aggregate: tournament_categories_aggregate_order_by - check_in_closed_for: order_by - check_in_closes_before_minutes: order_by - check_in_closing_notified_for: order_by - check_in_ends_at: order_by - check_in_open: order_by - check_in_opens_before_minutes: order_by - check_in_required: order_by - check_in_setting: order_by - check_in_started: order_by - created_at: order_by - description: order_by - discord_guild_id: order_by - discord_notifications_enabled: order_by - discord_notify_Canceled: order_by - discord_notify_Finished: order_by - discord_notify_Forfeit: order_by - discord_notify_Live: order_by - discord_notify_MapPaused: order_by - discord_notify_PickingPlayers: order_by - discord_notify_Scheduled: order_by - discord_notify_Surrendered: order_by - discord_notify_Tie: order_by - discord_notify_Veto: order_by - discord_notify_WaitingForCheckIn: order_by - discord_notify_WaitingForServer: order_by - discord_role_id: order_by - discord_voice_enabled: order_by - discord_webhook: order_by - e_tournament_status: e_tournament_status_order_by - free_agents_aggregate: tournament_free_agents_aggregate_order_by - has_min_teams: order_by - homepage: order_by - id: order_by - invite_only: order_by - is_league: order_by - is_organizer: order_by - joined_tournament: order_by - latitude: order_by - league_season_division: league_season_divisions_order_by - location: order_by - logo: order_by - longitude: order_by - match_options_id: order_by - max_elo: order_by - max_players_per_lineup: order_by - meets_min_role: order_by - min_elo: order_by - min_players_per_lineup: order_by - min_role: order_by - missed_check_in_count: order_by - name: order_by - options: match_options_order_by - organizer_steam_id: order_by - organizer_teams_aggregate: tournament_organizer_teams_aggregate_order_by - organizers_aggregate: tournament_organizers_aggregate_order_by - player_stats_aggregate: v_tournament_player_stats_aggregate_order_by - prizes_aggregate: tournament_prizes_aggregate_order_by - regions: order_by - registration_type: order_by - registration_unlocked: order_by - results_aggregate: v_team_tournament_results_aggregate_order_by - rosters_aggregate: tournament_team_roster_aggregate_order_by - scheduling_mode: order_by - stages_aggregate: tournament_stages_aggregate_order_by - start: order_by - status: order_by - teams_aggregate: tournament_teams_aggregate_order_by -} - -"""primary key columns input for table: tournaments""" -input tournaments_pk_columns_input { - id: uuid! -} - -""" -select columns of table "tournaments" -""" -enum tournaments_select_column { - """column name""" - auto_start - - """column name""" - awards_enabled - - """column name""" - banner - - """column name""" - check_in_closed_for - - """column name""" - check_in_closes_before_minutes - - """column name""" - check_in_closing_notified_for - - """column name""" - check_in_ends_at - - """column name""" - check_in_opens_before_minutes - - """column name""" - check_in_required - - """column name""" - check_in_setting - - """column name""" - created_at - - """column name""" - description - - """column name""" - discord_guild_id - - """column name""" - discord_notifications_enabled - - """column name""" - discord_notify_Canceled - - """column name""" - discord_notify_Finished - - """column name""" - discord_notify_Forfeit - - """column name""" - discord_notify_Live - - """column name""" - discord_notify_MapPaused - - """column name""" - discord_notify_PickingPlayers - - """column name""" - discord_notify_Scheduled - - """column name""" - discord_notify_Surrendered - - """column name""" - discord_notify_Tie - - """column name""" - discord_notify_Veto - - """column name""" - discord_notify_WaitingForCheckIn - - """column name""" - discord_notify_WaitingForServer - - """column name""" - discord_role_id - - """column name""" - discord_voice_enabled - - """column name""" - discord_webhook - - """column name""" - homepage - - """column name""" - id - - """column name""" - invite_only - - """column name""" - is_league - - """column name""" - latitude - - """column name""" - location - - """column name""" - logo - - """column name""" - longitude - - """column name""" - match_options_id - - """column name""" - max_elo - - """column name""" - min_elo - - """column name""" - min_role - - """column name""" - name - - """column name""" - organizer_steam_id - - """column name""" - regions - - """column name""" - registration_type - - """column name""" - scheduling_mode - - """column name""" - start - - """column name""" - status -} - -""" -select "tournaments_aggregate_bool_exp_avg_arguments_columns" columns of table "tournaments" -""" -enum tournaments_select_column_tournaments_aggregate_bool_exp_avg_arguments_columns { - """column name""" - latitude - - """column name""" - longitude -} - -""" -select "tournaments_aggregate_bool_exp_bool_and_arguments_columns" columns of table "tournaments" -""" -enum tournaments_select_column_tournaments_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - auto_start - - """column name""" - awards_enabled - - """column name""" - check_in_required - - """column name""" - discord_notifications_enabled - - """column name""" - discord_notify_Canceled - - """column name""" - discord_notify_Finished - - """column name""" - discord_notify_Forfeit - - """column name""" - discord_notify_Live - - """column name""" - discord_notify_MapPaused - - """column name""" - discord_notify_PickingPlayers - - """column name""" - discord_notify_Scheduled - - """column name""" - discord_notify_Surrendered - - """column name""" - discord_notify_Tie - - """column name""" - discord_notify_Veto - - """column name""" - discord_notify_WaitingForCheckIn - - """column name""" - discord_notify_WaitingForServer - - """column name""" - discord_voice_enabled - - """column name""" - invite_only - - """column name""" - is_league -} - -""" -select "tournaments_aggregate_bool_exp_bool_or_arguments_columns" columns of table "tournaments" -""" -enum tournaments_select_column_tournaments_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - auto_start - - """column name""" - awards_enabled - - """column name""" - check_in_required - - """column name""" - discord_notifications_enabled - - """column name""" - discord_notify_Canceled - - """column name""" - discord_notify_Finished - - """column name""" - discord_notify_Forfeit - - """column name""" - discord_notify_Live - - """column name""" - discord_notify_MapPaused - - """column name""" - discord_notify_PickingPlayers - - """column name""" - discord_notify_Scheduled - - """column name""" - discord_notify_Surrendered - - """column name""" - discord_notify_Tie - - """column name""" - discord_notify_Veto - - """column name""" - discord_notify_WaitingForCheckIn - - """column name""" - discord_notify_WaitingForServer - - """column name""" - discord_voice_enabled - - """column name""" - invite_only - - """column name""" - is_league -} - -""" -select "tournaments_aggregate_bool_exp_corr_arguments_columns" columns of table "tournaments" -""" -enum tournaments_select_column_tournaments_aggregate_bool_exp_corr_arguments_columns { - """column name""" - latitude - - """column name""" - longitude -} - -""" -select "tournaments_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "tournaments" -""" -enum tournaments_select_column_tournaments_aggregate_bool_exp_covar_samp_arguments_columns { - """column name""" - latitude - - """column name""" - longitude -} - -""" -select "tournaments_aggregate_bool_exp_max_arguments_columns" columns of table "tournaments" -""" -enum tournaments_select_column_tournaments_aggregate_bool_exp_max_arguments_columns { - """column name""" - latitude - - """column name""" - longitude -} - -""" -select "tournaments_aggregate_bool_exp_min_arguments_columns" columns of table "tournaments" -""" -enum tournaments_select_column_tournaments_aggregate_bool_exp_min_arguments_columns { - """column name""" - latitude - - """column name""" - longitude -} - -""" -select "tournaments_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "tournaments" -""" -enum tournaments_select_column_tournaments_aggregate_bool_exp_stddev_samp_arguments_columns { - """column name""" - latitude - - """column name""" - longitude -} - -""" -select "tournaments_aggregate_bool_exp_sum_arguments_columns" columns of table "tournaments" -""" -enum tournaments_select_column_tournaments_aggregate_bool_exp_sum_arguments_columns { - """column name""" - latitude - - """column name""" - longitude -} - -""" -select "tournaments_aggregate_bool_exp_var_samp_arguments_columns" columns of table "tournaments" -""" -enum tournaments_select_column_tournaments_aggregate_bool_exp_var_samp_arguments_columns { - """column name""" - latitude - - """column name""" - longitude -} - -""" -input type for updating data in table "tournaments" -""" -input tournaments_set_input { - auto_start: Boolean - awards_enabled: Boolean - banner: String - - """The check_in_ends_at the close pass has already acted on""" - check_in_closed_for: timestamptz - check_in_closes_before_minutes: Int - - """The check_in_ends_at the closing reminder was sent for""" - check_in_closing_notified_for: timestamptz - - """When the check-in window closes; NULL until it opens""" - check_in_ends_at: timestamptz - check_in_opens_before_minutes: Int - check_in_required: Boolean - - """ - Who confirms a team: Captains, every rostered Player, or the organizer (Admin) - """ - check_in_setting: e_check_in_settings_enum - created_at: timestamptz - description: String - discord_guild_id: String - discord_notifications_enabled: Boolean - discord_notify_Canceled: Boolean - discord_notify_Finished: Boolean - discord_notify_Forfeit: Boolean - discord_notify_Live: Boolean - discord_notify_MapPaused: Boolean - discord_notify_PickingPlayers: Boolean - discord_notify_Scheduled: Boolean - discord_notify_Surrendered: Boolean - discord_notify_Tie: Boolean - discord_notify_Veto: Boolean - discord_notify_WaitingForCheckIn: Boolean - discord_notify_WaitingForServer: Boolean - discord_role_id: String - discord_voice_enabled: Boolean - discord_webhook: String - homepage: String - id: uuid - invite_only: Boolean - is_league: Boolean - latitude: float8 - location: String - logo: String - longitude: float8 - match_options_id: uuid - max_elo: Int - min_elo: Int - min_role: e_player_roles_enum - name: String - organizer_steam_id: bigint - - """Preferred server regions for hosted matches""" - regions: [String!] - registration_type: e_tournament_registration_types_enum - scheduling_mode: String - start: timestamptz - status: e_tournament_status_enum -} - -"""aggregate stddev on columns""" -type tournaments_stddev_fields { - check_in_closes_before_minutes: Float - check_in_opens_before_minutes: Float - latitude: Float - longitude: Float - max_elo: Float - - """ - A computed field, executes function "tournament_max_players_per_lineup" - """ - max_players_per_lineup: Int - min_elo: Float - - """ - A computed field, executes function "tournament_min_players_per_lineup" - """ - min_players_per_lineup: Int - - """ - A computed field, executes function "tournament_missed_check_in_count" - """ - missed_check_in_count: Int - organizer_steam_id: Float -} - -""" -order by stddev() on columns of table "tournaments" -""" -input tournaments_stddev_order_by { - check_in_closes_before_minutes: order_by - check_in_opens_before_minutes: order_by - latitude: order_by - longitude: order_by - max_elo: order_by - min_elo: order_by - organizer_steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type tournaments_stddev_pop_fields { - check_in_closes_before_minutes: Float - check_in_opens_before_minutes: Float - latitude: Float - longitude: Float - max_elo: Float - - """ - A computed field, executes function "tournament_max_players_per_lineup" - """ - max_players_per_lineup: Int - min_elo: Float - - """ - A computed field, executes function "tournament_min_players_per_lineup" - """ - min_players_per_lineup: Int - - """ - A computed field, executes function "tournament_missed_check_in_count" - """ - missed_check_in_count: Int - organizer_steam_id: Float -} - -""" -order by stddev_pop() on columns of table "tournaments" -""" -input tournaments_stddev_pop_order_by { - check_in_closes_before_minutes: order_by - check_in_opens_before_minutes: order_by - latitude: order_by - longitude: order_by - max_elo: order_by - min_elo: order_by - organizer_steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type tournaments_stddev_samp_fields { - check_in_closes_before_minutes: Float - check_in_opens_before_minutes: Float - latitude: Float - longitude: Float - max_elo: Float - - """ - A computed field, executes function "tournament_max_players_per_lineup" - """ - max_players_per_lineup: Int - min_elo: Float - - """ - A computed field, executes function "tournament_min_players_per_lineup" - """ - min_players_per_lineup: Int - - """ - A computed field, executes function "tournament_missed_check_in_count" - """ - missed_check_in_count: Int - organizer_steam_id: Float -} - -""" -order by stddev_samp() on columns of table "tournaments" -""" -input tournaments_stddev_samp_order_by { - check_in_closes_before_minutes: order_by - check_in_opens_before_minutes: order_by - latitude: order_by - longitude: order_by - max_elo: order_by - min_elo: order_by - organizer_steam_id: order_by -} - -""" -Streaming cursor of the table "tournaments" -""" -input tournaments_stream_cursor_input { - """Stream column input with initial value""" - initial_value: tournaments_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input tournaments_stream_cursor_value_input { - auto_start: Boolean - awards_enabled: Boolean - banner: String - - """The check_in_ends_at the close pass has already acted on""" - check_in_closed_for: timestamptz - check_in_closes_before_minutes: Int - - """The check_in_ends_at the closing reminder was sent for""" - check_in_closing_notified_for: timestamptz - - """When the check-in window closes; NULL until it opens""" - check_in_ends_at: timestamptz - check_in_opens_before_minutes: Int - check_in_required: Boolean - - """ - Who confirms a team: Captains, every rostered Player, or the organizer (Admin) - """ - check_in_setting: e_check_in_settings_enum - created_at: timestamptz - description: String - discord_guild_id: String - discord_notifications_enabled: Boolean - discord_notify_Canceled: Boolean - discord_notify_Finished: Boolean - discord_notify_Forfeit: Boolean - discord_notify_Live: Boolean - discord_notify_MapPaused: Boolean - discord_notify_PickingPlayers: Boolean - discord_notify_Scheduled: Boolean - discord_notify_Surrendered: Boolean - discord_notify_Tie: Boolean - discord_notify_Veto: Boolean - discord_notify_WaitingForCheckIn: Boolean - discord_notify_WaitingForServer: Boolean - discord_role_id: String - discord_voice_enabled: Boolean - discord_webhook: String - homepage: String - id: uuid - invite_only: Boolean - is_league: Boolean - latitude: float8 - location: String - logo: String - longitude: float8 - match_options_id: uuid - max_elo: Int - min_elo: Int - min_role: e_player_roles_enum - name: String - organizer_steam_id: bigint - - """Preferred server regions for hosted matches""" - regions: [String!] - registration_type: e_tournament_registration_types_enum - scheduling_mode: String - start: timestamptz - status: e_tournament_status_enum -} - -"""aggregate sum on columns""" -type tournaments_sum_fields { - check_in_closes_before_minutes: Int - check_in_opens_before_minutes: Int - latitude: float8 - longitude: float8 - max_elo: Int - - """ - A computed field, executes function "tournament_max_players_per_lineup" - """ - max_players_per_lineup: Int - min_elo: Int - - """ - A computed field, executes function "tournament_min_players_per_lineup" - """ - min_players_per_lineup: Int - - """ - A computed field, executes function "tournament_missed_check_in_count" - """ - missed_check_in_count: Int - organizer_steam_id: bigint -} - -""" -order by sum() on columns of table "tournaments" -""" -input tournaments_sum_order_by { - check_in_closes_before_minutes: order_by - check_in_opens_before_minutes: order_by - latitude: order_by - longitude: order_by - max_elo: order_by - min_elo: order_by - organizer_steam_id: order_by -} - -""" -update columns of table "tournaments" -""" -enum tournaments_update_column { - """column name""" - auto_start - - """column name""" - awards_enabled - - """column name""" - banner - - """column name""" - check_in_closed_for - - """column name""" - check_in_closes_before_minutes - - """column name""" - check_in_closing_notified_for - - """column name""" - check_in_ends_at - - """column name""" - check_in_opens_before_minutes - - """column name""" - check_in_required - - """column name""" - check_in_setting - - """column name""" - created_at - - """column name""" - description - - """column name""" - discord_guild_id - - """column name""" - discord_notifications_enabled - - """column name""" - discord_notify_Canceled - - """column name""" - discord_notify_Finished - - """column name""" - discord_notify_Forfeit - - """column name""" - discord_notify_Live - - """column name""" - discord_notify_MapPaused - - """column name""" - discord_notify_PickingPlayers - - """column name""" - discord_notify_Scheduled - - """column name""" - discord_notify_Surrendered - - """column name""" - discord_notify_Tie - - """column name""" - discord_notify_Veto - - """column name""" - discord_notify_WaitingForCheckIn - - """column name""" - discord_notify_WaitingForServer - - """column name""" - discord_role_id - - """column name""" - discord_voice_enabled - - """column name""" - discord_webhook - - """column name""" - homepage - - """column name""" - id - - """column name""" - invite_only - - """column name""" - is_league - - """column name""" - latitude - - """column name""" - location - - """column name""" - logo - - """column name""" - longitude - - """column name""" - match_options_id - - """column name""" - max_elo - - """column name""" - min_elo - - """column name""" - min_role - - """column name""" - name - - """column name""" - organizer_steam_id - - """column name""" - regions - - """column name""" - registration_type - - """column name""" - scheduling_mode - - """column name""" - start - - """column name""" - status -} - -input tournaments_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: tournaments_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: tournaments_set_input - - """filter the rows which have to be updated""" - where: tournaments_bool_exp! -} - -"""aggregate var_pop on columns""" -type tournaments_var_pop_fields { - check_in_closes_before_minutes: Float - check_in_opens_before_minutes: Float - latitude: Float - longitude: Float - max_elo: Float - - """ - A computed field, executes function "tournament_max_players_per_lineup" - """ - max_players_per_lineup: Int - min_elo: Float - - """ - A computed field, executes function "tournament_min_players_per_lineup" - """ - min_players_per_lineup: Int - - """ - A computed field, executes function "tournament_missed_check_in_count" - """ - missed_check_in_count: Int - organizer_steam_id: Float -} - -""" -order by var_pop() on columns of table "tournaments" -""" -input tournaments_var_pop_order_by { - check_in_closes_before_minutes: order_by - check_in_opens_before_minutes: order_by - latitude: order_by - longitude: order_by - max_elo: order_by - min_elo: order_by - organizer_steam_id: order_by -} - -"""aggregate var_samp on columns""" -type tournaments_var_samp_fields { - check_in_closes_before_minutes: Float - check_in_opens_before_minutes: Float - latitude: Float - longitude: Float - max_elo: Float - - """ - A computed field, executes function "tournament_max_players_per_lineup" - """ - max_players_per_lineup: Int - min_elo: Float - - """ - A computed field, executes function "tournament_min_players_per_lineup" - """ - min_players_per_lineup: Int - - """ - A computed field, executes function "tournament_missed_check_in_count" - """ - missed_check_in_count: Int - organizer_steam_id: Float -} - -""" -order by var_samp() on columns of table "tournaments" -""" -input tournaments_var_samp_order_by { - check_in_closes_before_minutes: order_by - check_in_opens_before_minutes: order_by - latitude: order_by - longitude: order_by - max_elo: order_by - min_elo: order_by - organizer_steam_id: order_by -} - -"""aggregate variance on columns""" -type tournaments_variance_fields { - check_in_closes_before_minutes: Float - check_in_opens_before_minutes: Float - latitude: Float - longitude: Float - max_elo: Float - - """ - A computed field, executes function "tournament_max_players_per_lineup" - """ - max_players_per_lineup: Int - min_elo: Float - - """ - A computed field, executes function "tournament_min_players_per_lineup" - """ - min_players_per_lineup: Int - - """ - A computed field, executes function "tournament_missed_check_in_count" - """ - missed_check_in_count: Int - organizer_steam_id: Float -} - -""" -order by variance() on columns of table "tournaments" -""" -input tournaments_variance_order_by { - check_in_closes_before_minutes: order_by - check_in_opens_before_minutes: order_by - latitude: order_by - longitude: order_by - max_elo: order_by - min_elo: order_by - organizer_steam_id: order_by -} - -""" -columns and relationships of "utility_collection_items" -""" -type utility_collection_items { - """An object relationship""" - collection: utility_collections! - collection_id: uuid! - created_at: timestamptz! - note: String - position: Int! - - """An object relationship""" - utility_lineup: utility_lineups! - utility_lineup_id: uuid! -} - -""" -aggregated selection of "utility_collection_items" -""" -type utility_collection_items_aggregate { - aggregate: utility_collection_items_aggregate_fields - nodes: [utility_collection_items!]! -} - -input utility_collection_items_aggregate_bool_exp { - count: utility_collection_items_aggregate_bool_exp_count -} - -input utility_collection_items_aggregate_bool_exp_count { - arguments: [utility_collection_items_select_column!] - distinct: Boolean - filter: utility_collection_items_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "utility_collection_items" -""" -type utility_collection_items_aggregate_fields { - avg: utility_collection_items_avg_fields - count(columns: [utility_collection_items_select_column!], distinct: Boolean): Int! - max: utility_collection_items_max_fields - min: utility_collection_items_min_fields - stddev: utility_collection_items_stddev_fields - stddev_pop: utility_collection_items_stddev_pop_fields - stddev_samp: utility_collection_items_stddev_samp_fields - sum: utility_collection_items_sum_fields - var_pop: utility_collection_items_var_pop_fields - var_samp: utility_collection_items_var_samp_fields - variance: utility_collection_items_variance_fields -} - -""" -order by aggregate values of table "utility_collection_items" -""" -input utility_collection_items_aggregate_order_by { - avg: utility_collection_items_avg_order_by - count: order_by - max: utility_collection_items_max_order_by - min: utility_collection_items_min_order_by - stddev: utility_collection_items_stddev_order_by - stddev_pop: utility_collection_items_stddev_pop_order_by - stddev_samp: utility_collection_items_stddev_samp_order_by - sum: utility_collection_items_sum_order_by - var_pop: utility_collection_items_var_pop_order_by - var_samp: utility_collection_items_var_samp_order_by - variance: utility_collection_items_variance_order_by -} - -""" -input type for inserting array relation for remote table "utility_collection_items" -""" -input utility_collection_items_arr_rel_insert_input { - data: [utility_collection_items_insert_input!]! - - """upsert condition""" - on_conflict: utility_collection_items_on_conflict -} - -"""aggregate avg on columns""" -type utility_collection_items_avg_fields { - position: Float -} - -""" -order by avg() on columns of table "utility_collection_items" -""" -input utility_collection_items_avg_order_by { - position: order_by -} - -""" -Boolean expression to filter rows from the table "utility_collection_items". All fields are combined with a logical 'AND'. -""" -input utility_collection_items_bool_exp { - _and: [utility_collection_items_bool_exp!] - _not: utility_collection_items_bool_exp - _or: [utility_collection_items_bool_exp!] - collection: utility_collections_bool_exp - collection_id: uuid_comparison_exp - created_at: timestamptz_comparison_exp - note: String_comparison_exp - position: Int_comparison_exp - utility_lineup: utility_lineups_bool_exp - utility_lineup_id: uuid_comparison_exp -} - -""" -unique or primary key constraints on table "utility_collection_items" -""" -enum utility_collection_items_constraint { - """ - unique or primary key constraint on columns "collection_id", "utility_lineup_id" - """ - utility_collection_items_pkey -} - -""" -input type for incrementing numeric columns in table "utility_collection_items" -""" -input utility_collection_items_inc_input { - position: Int -} - -""" -input type for inserting data into table "utility_collection_items" -""" -input utility_collection_items_insert_input { - collection: utility_collections_obj_rel_insert_input - collection_id: uuid - created_at: timestamptz - note: String - position: Int - utility_lineup: utility_lineups_obj_rel_insert_input - utility_lineup_id: uuid -} - -"""aggregate max on columns""" -type utility_collection_items_max_fields { - collection_id: uuid - created_at: timestamptz - note: String - position: Int - utility_lineup_id: uuid -} - -""" -order by max() on columns of table "utility_collection_items" -""" -input utility_collection_items_max_order_by { - collection_id: order_by - created_at: order_by - note: order_by - position: order_by - utility_lineup_id: order_by -} - -"""aggregate min on columns""" -type utility_collection_items_min_fields { - collection_id: uuid - created_at: timestamptz - note: String - position: Int - utility_lineup_id: uuid -} - -""" -order by min() on columns of table "utility_collection_items" -""" -input utility_collection_items_min_order_by { - collection_id: order_by - created_at: order_by - note: order_by - position: order_by - utility_lineup_id: order_by -} - -""" -response of any mutation on the table "utility_collection_items" -""" -type utility_collection_items_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [utility_collection_items!]! -} - -""" -on_conflict condition type for table "utility_collection_items" -""" -input utility_collection_items_on_conflict { - constraint: utility_collection_items_constraint! - update_columns: [utility_collection_items_update_column!]! = [] - where: utility_collection_items_bool_exp -} - -"""Ordering options when selecting data from "utility_collection_items".""" -input utility_collection_items_order_by { - collection: utility_collections_order_by - collection_id: order_by - created_at: order_by - note: order_by - position: order_by - utility_lineup: utility_lineups_order_by - utility_lineup_id: order_by -} - -"""primary key columns input for table: utility_collection_items""" -input utility_collection_items_pk_columns_input { - collection_id: uuid! - utility_lineup_id: uuid! -} - -""" -select columns of table "utility_collection_items" -""" -enum utility_collection_items_select_column { - """column name""" - collection_id - - """column name""" - created_at - - """column name""" - note - - """column name""" - position - - """column name""" - utility_lineup_id -} - -""" -input type for updating data in table "utility_collection_items" -""" -input utility_collection_items_set_input { - collection_id: uuid - created_at: timestamptz - note: String - position: Int - utility_lineup_id: uuid -} - -"""aggregate stddev on columns""" -type utility_collection_items_stddev_fields { - position: Float -} - -""" -order by stddev() on columns of table "utility_collection_items" -""" -input utility_collection_items_stddev_order_by { - position: order_by -} - -"""aggregate stddev_pop on columns""" -type utility_collection_items_stddev_pop_fields { - position: Float -} - -""" -order by stddev_pop() on columns of table "utility_collection_items" -""" -input utility_collection_items_stddev_pop_order_by { - position: order_by -} - -"""aggregate stddev_samp on columns""" -type utility_collection_items_stddev_samp_fields { - position: Float -} - -""" -order by stddev_samp() on columns of table "utility_collection_items" -""" -input utility_collection_items_stddev_samp_order_by { - position: order_by -} - -""" -Streaming cursor of the table "utility_collection_items" -""" -input utility_collection_items_stream_cursor_input { - """Stream column input with initial value""" - initial_value: utility_collection_items_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input utility_collection_items_stream_cursor_value_input { - collection_id: uuid - created_at: timestamptz - note: String - position: Int - utility_lineup_id: uuid -} - -"""aggregate sum on columns""" -type utility_collection_items_sum_fields { - position: Int -} - -""" -order by sum() on columns of table "utility_collection_items" -""" -input utility_collection_items_sum_order_by { - position: order_by -} - -""" -update columns of table "utility_collection_items" -""" -enum utility_collection_items_update_column { - """column name""" - collection_id - - """column name""" - created_at - - """column name""" - note - - """column name""" - position - - """column name""" - utility_lineup_id -} - -input utility_collection_items_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: utility_collection_items_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_collection_items_set_input - - """filter the rows which have to be updated""" - where: utility_collection_items_bool_exp! -} - -"""aggregate var_pop on columns""" -type utility_collection_items_var_pop_fields { - position: Float -} - -""" -order by var_pop() on columns of table "utility_collection_items" -""" -input utility_collection_items_var_pop_order_by { - position: order_by -} - -"""aggregate var_samp on columns""" -type utility_collection_items_var_samp_fields { - position: Float -} - -""" -order by var_samp() on columns of table "utility_collection_items" -""" -input utility_collection_items_var_samp_order_by { - position: order_by -} - -"""aggregate variance on columns""" -type utility_collection_items_variance_fields { - position: Float -} - -""" -order by variance() on columns of table "utility_collection_items" -""" -input utility_collection_items_variance_order_by { - position: order_by -} - -""" -columns and relationships of "utility_collections" -""" -type utility_collections { - """ - A computed field, executes function "can_edit_utility_collection" - """ - can_edit: Boolean - - """ - A computed field, executes function "can_view_utility_collection" - """ - can_view: Boolean - created_at: timestamptz! - description: String - id: uuid! - - """An array relationship""" - items( - """distinct select on columns""" - distinct_on: [utility_collection_items_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: [utility_collection_items_order_by!] - - """filter the rows returned""" - where: utility_collection_items_bool_exp - ): [utility_collection_items!]! - - """An aggregate relationship""" - items_aggregate( - """distinct select on columns""" - distinct_on: [utility_collection_items_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: [utility_collection_items_order_by!] - - """filter the rows returned""" - where: utility_collection_items_bool_exp - ): utility_collection_items_aggregate! - map_name: String - name: String! - - """An object relationship""" - owner: players! - owner_steam_id: bigint! - - """An object relationship""" - team: teams - team_id: uuid - updated_at: timestamptz! - visibility: e_utility_visibility_enum! -} - -""" -aggregated selection of "utility_collections" -""" -type utility_collections_aggregate { - aggregate: utility_collections_aggregate_fields - nodes: [utility_collections!]! -} - -""" -aggregate fields of "utility_collections" -""" -type utility_collections_aggregate_fields { - avg: utility_collections_avg_fields - count(columns: [utility_collections_select_column!], distinct: Boolean): Int! - max: utility_collections_max_fields - min: utility_collections_min_fields - stddev: utility_collections_stddev_fields - stddev_pop: utility_collections_stddev_pop_fields - stddev_samp: utility_collections_stddev_samp_fields - sum: utility_collections_sum_fields - var_pop: utility_collections_var_pop_fields - var_samp: utility_collections_var_samp_fields - variance: utility_collections_variance_fields -} - -"""aggregate avg on columns""" -type utility_collections_avg_fields { - owner_steam_id: Float -} - -""" -Boolean expression to filter rows from the table "utility_collections". All fields are combined with a logical 'AND'. -""" -input utility_collections_bool_exp { - _and: [utility_collections_bool_exp!] - _not: utility_collections_bool_exp - _or: [utility_collections_bool_exp!] - can_edit: Boolean_comparison_exp - can_view: Boolean_comparison_exp - created_at: timestamptz_comparison_exp - description: String_comparison_exp - id: uuid_comparison_exp - items: utility_collection_items_bool_exp - items_aggregate: utility_collection_items_aggregate_bool_exp - map_name: String_comparison_exp - name: String_comparison_exp - owner: players_bool_exp - owner_steam_id: bigint_comparison_exp - team: teams_bool_exp - team_id: uuid_comparison_exp - updated_at: timestamptz_comparison_exp - visibility: e_utility_visibility_enum_comparison_exp -} - -""" -unique or primary key constraints on table "utility_collections" -""" -enum utility_collections_constraint { - """ - unique or primary key constraint on columns "id" - """ - utility_collections_pkey -} - -""" -input type for incrementing numeric columns in table "utility_collections" -""" -input utility_collections_inc_input { - owner_steam_id: bigint -} - -""" -input type for inserting data into table "utility_collections" -""" -input utility_collections_insert_input { - created_at: timestamptz - description: String - id: uuid - items: utility_collection_items_arr_rel_insert_input - map_name: String - name: String - owner: players_obj_rel_insert_input - owner_steam_id: bigint - team: teams_obj_rel_insert_input - team_id: uuid - updated_at: timestamptz - visibility: e_utility_visibility_enum -} - -"""aggregate max on columns""" -type utility_collections_max_fields { - created_at: timestamptz - description: String - id: uuid - map_name: String - name: String - owner_steam_id: bigint - team_id: uuid - updated_at: timestamptz -} - -"""aggregate min on columns""" -type utility_collections_min_fields { - created_at: timestamptz - description: String - id: uuid - map_name: String - name: String - owner_steam_id: bigint - team_id: uuid - updated_at: timestamptz -} - -""" -response of any mutation on the table "utility_collections" -""" -type utility_collections_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [utility_collections!]! -} - -""" -input type for inserting object relation for remote table "utility_collections" -""" -input utility_collections_obj_rel_insert_input { - data: utility_collections_insert_input! - - """upsert condition""" - on_conflict: utility_collections_on_conflict -} - -""" -on_conflict condition type for table "utility_collections" -""" -input utility_collections_on_conflict { - constraint: utility_collections_constraint! - update_columns: [utility_collections_update_column!]! = [] - where: utility_collections_bool_exp -} - -"""Ordering options when selecting data from "utility_collections".""" -input utility_collections_order_by { - can_edit: order_by - can_view: order_by - created_at: order_by - description: order_by - id: order_by - items_aggregate: utility_collection_items_aggregate_order_by - map_name: order_by - name: order_by - owner: players_order_by - owner_steam_id: order_by - team: teams_order_by - team_id: order_by - updated_at: order_by - visibility: order_by -} - -"""primary key columns input for table: utility_collections""" -input utility_collections_pk_columns_input { - id: uuid! -} - -""" -select columns of table "utility_collections" -""" -enum utility_collections_select_column { - """column name""" - created_at - - """column name""" - description - - """column name""" - id - - """column name""" - map_name - - """column name""" - name - - """column name""" - owner_steam_id - - """column name""" - team_id - - """column name""" - updated_at - - """column name""" - visibility -} - -""" -input type for updating data in table "utility_collections" -""" -input utility_collections_set_input { - created_at: timestamptz - description: String - id: uuid - map_name: String - name: String - owner_steam_id: bigint - team_id: uuid - updated_at: timestamptz - visibility: e_utility_visibility_enum -} - -"""aggregate stddev on columns""" -type utility_collections_stddev_fields { - owner_steam_id: Float -} - -"""aggregate stddev_pop on columns""" -type utility_collections_stddev_pop_fields { - owner_steam_id: Float -} - -"""aggregate stddev_samp on columns""" -type utility_collections_stddev_samp_fields { - owner_steam_id: Float -} - -""" -Streaming cursor of the table "utility_collections" -""" -input utility_collections_stream_cursor_input { - """Stream column input with initial value""" - initial_value: utility_collections_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input utility_collections_stream_cursor_value_input { - created_at: timestamptz - description: String - id: uuid - map_name: String - name: String - owner_steam_id: bigint - team_id: uuid - updated_at: timestamptz - visibility: e_utility_visibility_enum -} - -"""aggregate sum on columns""" -type utility_collections_sum_fields { - owner_steam_id: bigint -} - -""" -update columns of table "utility_collections" -""" -enum utility_collections_update_column { - """column name""" - created_at - - """column name""" - description - - """column name""" - id - - """column name""" - map_name - - """column name""" - name - - """column name""" - owner_steam_id - - """column name""" - team_id - - """column name""" - updated_at - - """column name""" - visibility -} - -input utility_collections_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: utility_collections_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_collections_set_input - - """filter the rows which have to be updated""" - where: utility_collections_bool_exp! -} - -"""aggregate var_pop on columns""" -type utility_collections_var_pop_fields { - owner_steam_id: Float -} - -"""aggregate var_samp on columns""" -type utility_collections_var_samp_fields { - owner_steam_id: Float -} - -"""aggregate variance on columns""" -type utility_collections_variance_fields { - owner_steam_id: Float -} - -""" -columns and relationships of "utility_demo_mines" -""" -type utility_demo_mines { - failed_reason: String - match_map_demo_id: uuid! - mined_at: timestamptz! - throws: Int! - version: Int! -} - -""" -aggregated selection of "utility_demo_mines" -""" -type utility_demo_mines_aggregate { - aggregate: utility_demo_mines_aggregate_fields - nodes: [utility_demo_mines!]! -} - -""" -aggregate fields of "utility_demo_mines" -""" -type utility_demo_mines_aggregate_fields { - avg: utility_demo_mines_avg_fields - count(columns: [utility_demo_mines_select_column!], distinct: Boolean): Int! - max: utility_demo_mines_max_fields - min: utility_demo_mines_min_fields - stddev: utility_demo_mines_stddev_fields - stddev_pop: utility_demo_mines_stddev_pop_fields - stddev_samp: utility_demo_mines_stddev_samp_fields - sum: utility_demo_mines_sum_fields - var_pop: utility_demo_mines_var_pop_fields - var_samp: utility_demo_mines_var_samp_fields - variance: utility_demo_mines_variance_fields -} - -"""aggregate avg on columns""" -type utility_demo_mines_avg_fields { - throws: Float - version: Float -} - -""" -Boolean expression to filter rows from the table "utility_demo_mines". All fields are combined with a logical 'AND'. -""" -input utility_demo_mines_bool_exp { - _and: [utility_demo_mines_bool_exp!] - _not: utility_demo_mines_bool_exp - _or: [utility_demo_mines_bool_exp!] - failed_reason: String_comparison_exp - match_map_demo_id: uuid_comparison_exp - mined_at: timestamptz_comparison_exp - throws: Int_comparison_exp - version: Int_comparison_exp -} - -""" -unique or primary key constraints on table "utility_demo_mines" -""" -enum utility_demo_mines_constraint { - """ - unique or primary key constraint on columns "match_map_demo_id" - """ - utility_demo_mines_pkey -} - -""" -input type for incrementing numeric columns in table "utility_demo_mines" -""" -input utility_demo_mines_inc_input { - throws: Int - version: Int -} - -""" -input type for inserting data into table "utility_demo_mines" -""" -input utility_demo_mines_insert_input { - failed_reason: String - match_map_demo_id: uuid - mined_at: timestamptz - throws: Int - version: Int -} - -"""aggregate max on columns""" -type utility_demo_mines_max_fields { - failed_reason: String - match_map_demo_id: uuid - mined_at: timestamptz - throws: Int - version: Int -} - -"""aggregate min on columns""" -type utility_demo_mines_min_fields { - failed_reason: String - match_map_demo_id: uuid - mined_at: timestamptz - throws: Int - version: Int -} - -""" -response of any mutation on the table "utility_demo_mines" -""" -type utility_demo_mines_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [utility_demo_mines!]! -} - -""" -on_conflict condition type for table "utility_demo_mines" -""" -input utility_demo_mines_on_conflict { - constraint: utility_demo_mines_constraint! - update_columns: [utility_demo_mines_update_column!]! = [] - where: utility_demo_mines_bool_exp -} - -"""Ordering options when selecting data from "utility_demo_mines".""" -input utility_demo_mines_order_by { - failed_reason: order_by - match_map_demo_id: order_by - mined_at: order_by - throws: order_by - version: order_by -} - -"""primary key columns input for table: utility_demo_mines""" -input utility_demo_mines_pk_columns_input { - match_map_demo_id: uuid! -} - -""" -select columns of table "utility_demo_mines" -""" -enum utility_demo_mines_select_column { - """column name""" - failed_reason - - """column name""" - match_map_demo_id - - """column name""" - mined_at - - """column name""" - throws - - """column name""" - version -} - -""" -input type for updating data in table "utility_demo_mines" -""" -input utility_demo_mines_set_input { - failed_reason: String - match_map_demo_id: uuid - mined_at: timestamptz - throws: Int - version: Int -} - -"""aggregate stddev on columns""" -type utility_demo_mines_stddev_fields { - throws: Float - version: Float -} - -"""aggregate stddev_pop on columns""" -type utility_demo_mines_stddev_pop_fields { - throws: Float - version: Float -} - -"""aggregate stddev_samp on columns""" -type utility_demo_mines_stddev_samp_fields { - throws: Float - version: Float -} - -""" -Streaming cursor of the table "utility_demo_mines" -""" -input utility_demo_mines_stream_cursor_input { - """Stream column input with initial value""" - initial_value: utility_demo_mines_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input utility_demo_mines_stream_cursor_value_input { - failed_reason: String - match_map_demo_id: uuid - mined_at: timestamptz - throws: Int - version: Int -} - -"""aggregate sum on columns""" -type utility_demo_mines_sum_fields { - throws: Int - version: Int -} - -""" -update columns of table "utility_demo_mines" -""" -enum utility_demo_mines_update_column { - """column name""" - failed_reason - - """column name""" - match_map_demo_id - - """column name""" - mined_at - - """column name""" - throws - - """column name""" - version -} - -input utility_demo_mines_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: utility_demo_mines_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_demo_mines_set_input - - """filter the rows which have to be updated""" - where: utility_demo_mines_bool_exp! -} - -"""aggregate var_pop on columns""" -type utility_demo_mines_var_pop_fields { - throws: Float - version: Float -} - -"""aggregate var_samp on columns""" -type utility_demo_mines_var_samp_fields { - throws: Float - version: Float -} - -"""aggregate variance on columns""" -type utility_demo_mines_variance_fields { - throws: Float - version: Float -} - -""" -columns and relationships of "utility_demo_throws" -""" -type utility_demo_throws { - created_at: timestamptz! - flight_time_ms: Int - grenade_id: Int! - land_x: float8! - land_y: float8! - land_z: float8! - lineup_bucket: String - map_name: String! - - """An object relationship""" - match: matches - match_id: uuid - - """An object relationship""" - match_map: match_maps - match_map_demo_id: uuid! - match_map_id: uuid - origin_x: float8! - origin_y: float8! - origin_z: float8! - round: Int - side: e_sides_enum! - technique: e_utility_techniques_enum! - throw_strength: e_utility_throw_strengths_enum - thrower_steam_id: bigint - thrown_at: timestamptz - tick: Int - utility_type: e_utility_types_enum! - view_pitch: float8 - view_yaw: float8 -} - -""" -aggregated selection of "utility_demo_throws" -""" -type utility_demo_throws_aggregate { - aggregate: utility_demo_throws_aggregate_fields - nodes: [utility_demo_throws!]! -} - -""" -aggregate fields of "utility_demo_throws" -""" -type utility_demo_throws_aggregate_fields { - avg: utility_demo_throws_avg_fields - count(columns: [utility_demo_throws_select_column!], distinct: Boolean): Int! - max: utility_demo_throws_max_fields - min: utility_demo_throws_min_fields - stddev: utility_demo_throws_stddev_fields - stddev_pop: utility_demo_throws_stddev_pop_fields - stddev_samp: utility_demo_throws_stddev_samp_fields - sum: utility_demo_throws_sum_fields - var_pop: utility_demo_throws_var_pop_fields - var_samp: utility_demo_throws_var_samp_fields - variance: utility_demo_throws_variance_fields -} - -"""aggregate avg on columns""" -type utility_demo_throws_avg_fields { - flight_time_ms: Float - grenade_id: Float - land_x: Float - land_y: Float - land_z: Float - origin_x: Float - origin_y: Float - origin_z: Float - round: Float - thrower_steam_id: Float - tick: Float - view_pitch: Float - view_yaw: Float -} - -""" -Boolean expression to filter rows from the table "utility_demo_throws". All fields are combined with a logical 'AND'. -""" -input utility_demo_throws_bool_exp { - _and: [utility_demo_throws_bool_exp!] - _not: utility_demo_throws_bool_exp - _or: [utility_demo_throws_bool_exp!] - created_at: timestamptz_comparison_exp - flight_time_ms: Int_comparison_exp - grenade_id: Int_comparison_exp - land_x: float8_comparison_exp - land_y: float8_comparison_exp - land_z: float8_comparison_exp - lineup_bucket: String_comparison_exp - map_name: String_comparison_exp - match: matches_bool_exp - match_id: uuid_comparison_exp - match_map: match_maps_bool_exp - match_map_demo_id: uuid_comparison_exp - match_map_id: uuid_comparison_exp - origin_x: float8_comparison_exp - origin_y: float8_comparison_exp - origin_z: float8_comparison_exp - round: Int_comparison_exp - side: e_sides_enum_comparison_exp - technique: e_utility_techniques_enum_comparison_exp - throw_strength: e_utility_throw_strengths_enum_comparison_exp - thrower_steam_id: bigint_comparison_exp - thrown_at: timestamptz_comparison_exp - tick: Int_comparison_exp - utility_type: e_utility_types_enum_comparison_exp - view_pitch: float8_comparison_exp - view_yaw: float8_comparison_exp -} - -""" -unique or primary key constraints on table "utility_demo_throws" -""" -enum utility_demo_throws_constraint { - """ - unique or primary key constraint on columns "match_map_demo_id", "grenade_id" - """ - utility_demo_throws_pkey -} - -""" -input type for incrementing numeric columns in table "utility_demo_throws" -""" -input utility_demo_throws_inc_input { - flight_time_ms: Int - grenade_id: Int - land_x: float8 - land_y: float8 - land_z: float8 - origin_x: float8 - origin_y: float8 - origin_z: float8 - round: Int - thrower_steam_id: bigint - tick: Int - view_pitch: float8 - view_yaw: float8 -} - -""" -input type for inserting data into table "utility_demo_throws" -""" -input utility_demo_throws_insert_input { - created_at: timestamptz - flight_time_ms: Int - grenade_id: Int - land_x: float8 - land_y: float8 - land_z: float8 - map_name: String - match: matches_obj_rel_insert_input - match_id: uuid - match_map: match_maps_obj_rel_insert_input - match_map_demo_id: uuid - match_map_id: uuid - origin_x: float8 - origin_y: float8 - origin_z: float8 - round: Int - side: e_sides_enum - technique: e_utility_techniques_enum - throw_strength: e_utility_throw_strengths_enum - thrower_steam_id: bigint - thrown_at: timestamptz - tick: Int - utility_type: e_utility_types_enum - view_pitch: float8 - view_yaw: float8 -} - -"""aggregate max on columns""" -type utility_demo_throws_max_fields { - created_at: timestamptz - flight_time_ms: Int - grenade_id: Int - land_x: float8 - land_y: float8 - land_z: float8 - lineup_bucket: String - map_name: String - match_id: uuid - match_map_demo_id: uuid - match_map_id: uuid - origin_x: float8 - origin_y: float8 - origin_z: float8 - round: Int - thrower_steam_id: bigint - thrown_at: timestamptz - tick: Int - view_pitch: float8 - view_yaw: float8 -} - -"""aggregate min on columns""" -type utility_demo_throws_min_fields { - created_at: timestamptz - flight_time_ms: Int - grenade_id: Int - land_x: float8 - land_y: float8 - land_z: float8 - lineup_bucket: String - map_name: String - match_id: uuid - match_map_demo_id: uuid - match_map_id: uuid - origin_x: float8 - origin_y: float8 - origin_z: float8 - round: Int - thrower_steam_id: bigint - thrown_at: timestamptz - tick: Int - view_pitch: float8 - view_yaw: float8 -} - -""" -response of any mutation on the table "utility_demo_throws" -""" -type utility_demo_throws_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [utility_demo_throws!]! -} - -""" -on_conflict condition type for table "utility_demo_throws" -""" -input utility_demo_throws_on_conflict { - constraint: utility_demo_throws_constraint! - update_columns: [utility_demo_throws_update_column!]! = [] - where: utility_demo_throws_bool_exp -} - -"""Ordering options when selecting data from "utility_demo_throws".""" -input utility_demo_throws_order_by { - created_at: order_by - flight_time_ms: order_by - grenade_id: order_by - land_x: order_by - land_y: order_by - land_z: order_by - lineup_bucket: order_by - map_name: order_by - match: matches_order_by - match_id: order_by - match_map: match_maps_order_by - match_map_demo_id: order_by - match_map_id: order_by - origin_x: order_by - origin_y: order_by - origin_z: order_by - round: order_by - side: order_by - technique: order_by - throw_strength: order_by - thrower_steam_id: order_by - thrown_at: order_by - tick: order_by - utility_type: order_by - view_pitch: order_by - view_yaw: order_by -} - -"""primary key columns input for table: utility_demo_throws""" -input utility_demo_throws_pk_columns_input { - grenade_id: Int! - match_map_demo_id: uuid! -} - -""" -select columns of table "utility_demo_throws" -""" -enum utility_demo_throws_select_column { - """column name""" - created_at - - """column name""" - flight_time_ms - - """column name""" - grenade_id - - """column name""" - land_x - - """column name""" - land_y - - """column name""" - land_z - - """column name""" - lineup_bucket - - """column name""" - map_name - - """column name""" - match_id - - """column name""" - match_map_demo_id - - """column name""" - match_map_id - - """column name""" - origin_x - - """column name""" - origin_y - - """column name""" - origin_z - - """column name""" - round - - """column name""" - side - - """column name""" - technique - - """column name""" - throw_strength - - """column name""" - thrower_steam_id - - """column name""" - thrown_at - - """column name""" - tick - - """column name""" - utility_type - - """column name""" - view_pitch - - """column name""" - view_yaw -} - -""" -input type for updating data in table "utility_demo_throws" -""" -input utility_demo_throws_set_input { - created_at: timestamptz - flight_time_ms: Int - grenade_id: Int - land_x: float8 - land_y: float8 - land_z: float8 - map_name: String - match_id: uuid - match_map_demo_id: uuid - match_map_id: uuid - origin_x: float8 - origin_y: float8 - origin_z: float8 - round: Int - side: e_sides_enum - technique: e_utility_techniques_enum - throw_strength: e_utility_throw_strengths_enum - thrower_steam_id: bigint - thrown_at: timestamptz - tick: Int - utility_type: e_utility_types_enum - view_pitch: float8 - view_yaw: float8 -} - -"""aggregate stddev on columns""" -type utility_demo_throws_stddev_fields { - flight_time_ms: Float - grenade_id: Float - land_x: Float - land_y: Float - land_z: Float - origin_x: Float - origin_y: Float - origin_z: Float - round: Float - thrower_steam_id: Float - tick: Float - view_pitch: Float - view_yaw: Float -} - -"""aggregate stddev_pop on columns""" -type utility_demo_throws_stddev_pop_fields { - flight_time_ms: Float - grenade_id: Float - land_x: Float - land_y: Float - land_z: Float - origin_x: Float - origin_y: Float - origin_z: Float - round: Float - thrower_steam_id: Float - tick: Float - view_pitch: Float - view_yaw: Float -} - -"""aggregate stddev_samp on columns""" -type utility_demo_throws_stddev_samp_fields { - flight_time_ms: Float - grenade_id: Float - land_x: Float - land_y: Float - land_z: Float - origin_x: Float - origin_y: Float - origin_z: Float - round: Float - thrower_steam_id: Float - tick: Float - view_pitch: Float - view_yaw: Float -} - -""" -Streaming cursor of the table "utility_demo_throws" -""" -input utility_demo_throws_stream_cursor_input { - """Stream column input with initial value""" - initial_value: utility_demo_throws_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input utility_demo_throws_stream_cursor_value_input { - created_at: timestamptz - flight_time_ms: Int - grenade_id: Int - land_x: float8 - land_y: float8 - land_z: float8 - lineup_bucket: String - map_name: String - match_id: uuid - match_map_demo_id: uuid - match_map_id: uuid - origin_x: float8 - origin_y: float8 - origin_z: float8 - round: Int - side: e_sides_enum - technique: e_utility_techniques_enum - throw_strength: e_utility_throw_strengths_enum - thrower_steam_id: bigint - thrown_at: timestamptz - tick: Int - utility_type: e_utility_types_enum - view_pitch: float8 - view_yaw: float8 -} - -"""aggregate sum on columns""" -type utility_demo_throws_sum_fields { - flight_time_ms: Int - grenade_id: Int - land_x: float8 - land_y: float8 - land_z: float8 - origin_x: float8 - origin_y: float8 - origin_z: float8 - round: Int - thrower_steam_id: bigint - tick: Int - view_pitch: float8 - view_yaw: float8 -} - -""" -update columns of table "utility_demo_throws" -""" -enum utility_demo_throws_update_column { - """column name""" - created_at - - """column name""" - flight_time_ms - - """column name""" - grenade_id - - """column name""" - land_x - - """column name""" - land_y - - """column name""" - land_z - - """column name""" - map_name - - """column name""" - match_id - - """column name""" - match_map_demo_id - - """column name""" - match_map_id - - """column name""" - origin_x - - """column name""" - origin_y - - """column name""" - origin_z - - """column name""" - round - - """column name""" - side - - """column name""" - technique - - """column name""" - throw_strength - - """column name""" - thrower_steam_id - - """column name""" - thrown_at - - """column name""" - tick - - """column name""" - utility_type - - """column name""" - view_pitch - - """column name""" - view_yaw -} - -input utility_demo_throws_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: utility_demo_throws_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_demo_throws_set_input - - """filter the rows which have to be updated""" - where: utility_demo_throws_bool_exp! -} - -"""aggregate var_pop on columns""" -type utility_demo_throws_var_pop_fields { - flight_time_ms: Float - grenade_id: Float - land_x: Float - land_y: Float - land_z: Float - origin_x: Float - origin_y: Float - origin_z: Float - round: Float - thrower_steam_id: Float - tick: Float - view_pitch: Float - view_yaw: Float -} - -"""aggregate var_samp on columns""" -type utility_demo_throws_var_samp_fields { - flight_time_ms: Float - grenade_id: Float - land_x: Float - land_y: Float - land_z: Float - origin_x: Float - origin_y: Float - origin_z: Float - round: Float - thrower_steam_id: Float - tick: Float - view_pitch: Float - view_yaw: Float -} - -"""aggregate variance on columns""" -type utility_demo_throws_variance_fields { - flight_time_ms: Float - grenade_id: Float - land_x: Float - land_y: Float - land_z: Float - origin_x: Float - origin_y: Float - origin_z: Float - round: Float - thrower_steam_id: Float - tick: Float - view_pitch: Float - view_yaw: Float -} - -""" -columns and relationships of "utility_drift_results" -""" -type utility_drift_results { - created_at: timestamptz! - distance: float8 - distance_xy: float8 - distance_z: float8 - reason: String - - """An object relationship""" - scan: utility_drift_scans! - severity: String - utility_drift_scan_id: uuid! - - """An object relationship""" - utility_lineup: utility_lineups! - utility_lineup_id: uuid! - verdict: String! -} - -""" -aggregated selection of "utility_drift_results" -""" -type utility_drift_results_aggregate { - aggregate: utility_drift_results_aggregate_fields - nodes: [utility_drift_results!]! -} - -input utility_drift_results_aggregate_bool_exp { - avg: utility_drift_results_aggregate_bool_exp_avg - corr: utility_drift_results_aggregate_bool_exp_corr - count: utility_drift_results_aggregate_bool_exp_count - covar_samp: utility_drift_results_aggregate_bool_exp_covar_samp - max: utility_drift_results_aggregate_bool_exp_max - min: utility_drift_results_aggregate_bool_exp_min - stddev_samp: utility_drift_results_aggregate_bool_exp_stddev_samp - sum: utility_drift_results_aggregate_bool_exp_sum - var_samp: utility_drift_results_aggregate_bool_exp_var_samp -} - -input utility_drift_results_aggregate_bool_exp_avg { - arguments: utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_avg_arguments_columns! - distinct: Boolean - filter: utility_drift_results_bool_exp - predicate: float8_comparison_exp! -} - -input utility_drift_results_aggregate_bool_exp_corr { - arguments: utility_drift_results_aggregate_bool_exp_corr_arguments! - distinct: Boolean - filter: utility_drift_results_bool_exp - predicate: float8_comparison_exp! -} - -input utility_drift_results_aggregate_bool_exp_corr_arguments { - X: utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_corr_arguments_columns! - Y: utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_corr_arguments_columns! -} - -input utility_drift_results_aggregate_bool_exp_count { - arguments: [utility_drift_results_select_column!] - distinct: Boolean - filter: utility_drift_results_bool_exp - predicate: Int_comparison_exp! -} - -input utility_drift_results_aggregate_bool_exp_covar_samp { - arguments: utility_drift_results_aggregate_bool_exp_covar_samp_arguments! - distinct: Boolean - filter: utility_drift_results_bool_exp - predicate: float8_comparison_exp! -} - -input utility_drift_results_aggregate_bool_exp_covar_samp_arguments { - X: utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_covar_samp_arguments_columns! - Y: utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_covar_samp_arguments_columns! -} - -input utility_drift_results_aggregate_bool_exp_max { - arguments: utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_max_arguments_columns! - distinct: Boolean - filter: utility_drift_results_bool_exp - predicate: float8_comparison_exp! -} - -input utility_drift_results_aggregate_bool_exp_min { - arguments: utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_min_arguments_columns! - distinct: Boolean - filter: utility_drift_results_bool_exp - predicate: float8_comparison_exp! -} - -input utility_drift_results_aggregate_bool_exp_stddev_samp { - arguments: utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_stddev_samp_arguments_columns! - distinct: Boolean - filter: utility_drift_results_bool_exp - predicate: float8_comparison_exp! -} - -input utility_drift_results_aggregate_bool_exp_sum { - arguments: utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_sum_arguments_columns! - distinct: Boolean - filter: utility_drift_results_bool_exp - predicate: float8_comparison_exp! -} - -input utility_drift_results_aggregate_bool_exp_var_samp { - arguments: utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_var_samp_arguments_columns! - distinct: Boolean - filter: utility_drift_results_bool_exp - predicate: float8_comparison_exp! -} - -""" -aggregate fields of "utility_drift_results" -""" -type utility_drift_results_aggregate_fields { - avg: utility_drift_results_avg_fields - count(columns: [utility_drift_results_select_column!], distinct: Boolean): Int! - max: utility_drift_results_max_fields - min: utility_drift_results_min_fields - stddev: utility_drift_results_stddev_fields - stddev_pop: utility_drift_results_stddev_pop_fields - stddev_samp: utility_drift_results_stddev_samp_fields - sum: utility_drift_results_sum_fields - var_pop: utility_drift_results_var_pop_fields - var_samp: utility_drift_results_var_samp_fields - variance: utility_drift_results_variance_fields -} - -""" -order by aggregate values of table "utility_drift_results" -""" -input utility_drift_results_aggregate_order_by { - avg: utility_drift_results_avg_order_by - count: order_by - max: utility_drift_results_max_order_by - min: utility_drift_results_min_order_by - stddev: utility_drift_results_stddev_order_by - stddev_pop: utility_drift_results_stddev_pop_order_by - stddev_samp: utility_drift_results_stddev_samp_order_by - sum: utility_drift_results_sum_order_by - var_pop: utility_drift_results_var_pop_order_by - var_samp: utility_drift_results_var_samp_order_by - variance: utility_drift_results_variance_order_by -} - -""" -input type for inserting array relation for remote table "utility_drift_results" -""" -input utility_drift_results_arr_rel_insert_input { - data: [utility_drift_results_insert_input!]! - - """upsert condition""" - on_conflict: utility_drift_results_on_conflict -} - -"""aggregate avg on columns""" -type utility_drift_results_avg_fields { - distance: Float - distance_xy: Float - distance_z: Float -} - -""" -order by avg() on columns of table "utility_drift_results" -""" -input utility_drift_results_avg_order_by { - distance: order_by - distance_xy: order_by - distance_z: order_by -} - -""" -Boolean expression to filter rows from the table "utility_drift_results". All fields are combined with a logical 'AND'. -""" -input utility_drift_results_bool_exp { - _and: [utility_drift_results_bool_exp!] - _not: utility_drift_results_bool_exp - _or: [utility_drift_results_bool_exp!] - created_at: timestamptz_comparison_exp - distance: float8_comparison_exp - distance_xy: float8_comparison_exp - distance_z: float8_comparison_exp - reason: String_comparison_exp - scan: utility_drift_scans_bool_exp - severity: String_comparison_exp - utility_drift_scan_id: uuid_comparison_exp - utility_lineup: utility_lineups_bool_exp - utility_lineup_id: uuid_comparison_exp - verdict: String_comparison_exp -} - -""" -unique or primary key constraints on table "utility_drift_results" -""" -enum utility_drift_results_constraint { - """ - unique or primary key constraint on columns "utility_drift_scan_id", "utility_lineup_id" - """ - utility_drift_results_pkey -} - -""" -input type for incrementing numeric columns in table "utility_drift_results" -""" -input utility_drift_results_inc_input { - distance: float8 - distance_xy: float8 - distance_z: float8 -} - -""" -input type for inserting data into table "utility_drift_results" -""" -input utility_drift_results_insert_input { - created_at: timestamptz - distance: float8 - distance_xy: float8 - distance_z: float8 - reason: String - scan: utility_drift_scans_obj_rel_insert_input - severity: String - utility_drift_scan_id: uuid - utility_lineup: utility_lineups_obj_rel_insert_input - utility_lineup_id: uuid - verdict: String -} - -"""aggregate max on columns""" -type utility_drift_results_max_fields { - created_at: timestamptz - distance: float8 - distance_xy: float8 - distance_z: float8 - reason: String - severity: String - utility_drift_scan_id: uuid - utility_lineup_id: uuid - verdict: String -} - -""" -order by max() on columns of table "utility_drift_results" -""" -input utility_drift_results_max_order_by { - created_at: order_by - distance: order_by - distance_xy: order_by - distance_z: order_by - reason: order_by - severity: order_by - utility_drift_scan_id: order_by - utility_lineup_id: order_by - verdict: order_by -} - -"""aggregate min on columns""" -type utility_drift_results_min_fields { - created_at: timestamptz - distance: float8 - distance_xy: float8 - distance_z: float8 - reason: String - severity: String - utility_drift_scan_id: uuid - utility_lineup_id: uuid - verdict: String -} - -""" -order by min() on columns of table "utility_drift_results" -""" -input utility_drift_results_min_order_by { - created_at: order_by - distance: order_by - distance_xy: order_by - distance_z: order_by - reason: order_by - severity: order_by - utility_drift_scan_id: order_by - utility_lineup_id: order_by - verdict: order_by -} - -""" -response of any mutation on the table "utility_drift_results" -""" -type utility_drift_results_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [utility_drift_results!]! -} - -""" -on_conflict condition type for table "utility_drift_results" -""" -input utility_drift_results_on_conflict { - constraint: utility_drift_results_constraint! - update_columns: [utility_drift_results_update_column!]! = [] - where: utility_drift_results_bool_exp -} - -"""Ordering options when selecting data from "utility_drift_results".""" -input utility_drift_results_order_by { - created_at: order_by - distance: order_by - distance_xy: order_by - distance_z: order_by - reason: order_by - scan: utility_drift_scans_order_by - severity: order_by - utility_drift_scan_id: order_by - utility_lineup: utility_lineups_order_by - utility_lineup_id: order_by - verdict: order_by -} - -"""primary key columns input for table: utility_drift_results""" -input utility_drift_results_pk_columns_input { - utility_drift_scan_id: uuid! - utility_lineup_id: uuid! -} - -""" -select columns of table "utility_drift_results" -""" -enum utility_drift_results_select_column { - """column name""" - created_at - - """column name""" - distance - - """column name""" - distance_xy - - """column name""" - distance_z - - """column name""" - reason - - """column name""" - severity - - """column name""" - utility_drift_scan_id - - """column name""" - utility_lineup_id - - """column name""" - verdict -} - -""" -select "utility_drift_results_aggregate_bool_exp_avg_arguments_columns" columns of table "utility_drift_results" -""" -enum utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_avg_arguments_columns { - """column name""" - distance - - """column name""" - distance_xy - - """column name""" - distance_z -} - -""" -select "utility_drift_results_aggregate_bool_exp_corr_arguments_columns" columns of table "utility_drift_results" -""" -enum utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_corr_arguments_columns { - """column name""" - distance - - """column name""" - distance_xy - - """column name""" - distance_z -} - -""" -select "utility_drift_results_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "utility_drift_results" -""" -enum utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_covar_samp_arguments_columns { - """column name""" - distance - - """column name""" - distance_xy - - """column name""" - distance_z -} - -""" -select "utility_drift_results_aggregate_bool_exp_max_arguments_columns" columns of table "utility_drift_results" -""" -enum utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_max_arguments_columns { - """column name""" - distance - - """column name""" - distance_xy - - """column name""" - distance_z -} - -""" -select "utility_drift_results_aggregate_bool_exp_min_arguments_columns" columns of table "utility_drift_results" -""" -enum utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_min_arguments_columns { - """column name""" - distance - - """column name""" - distance_xy - - """column name""" - distance_z -} - -""" -select "utility_drift_results_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "utility_drift_results" -""" -enum utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_stddev_samp_arguments_columns { - """column name""" - distance - - """column name""" - distance_xy - - """column name""" - distance_z -} - -""" -select "utility_drift_results_aggregate_bool_exp_sum_arguments_columns" columns of table "utility_drift_results" -""" -enum utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_sum_arguments_columns { - """column name""" - distance - - """column name""" - distance_xy - - """column name""" - distance_z -} - -""" -select "utility_drift_results_aggregate_bool_exp_var_samp_arguments_columns" columns of table "utility_drift_results" -""" -enum utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_var_samp_arguments_columns { - """column name""" - distance - - """column name""" - distance_xy - - """column name""" - distance_z -} - -""" -input type for updating data in table "utility_drift_results" -""" -input utility_drift_results_set_input { - created_at: timestamptz - distance: float8 - distance_xy: float8 - distance_z: float8 - reason: String - severity: String - utility_drift_scan_id: uuid - utility_lineup_id: uuid - verdict: String -} - -"""aggregate stddev on columns""" -type utility_drift_results_stddev_fields { - distance: Float - distance_xy: Float - distance_z: Float -} - -""" -order by stddev() on columns of table "utility_drift_results" -""" -input utility_drift_results_stddev_order_by { - distance: order_by - distance_xy: order_by - distance_z: order_by -} - -"""aggregate stddev_pop on columns""" -type utility_drift_results_stddev_pop_fields { - distance: Float - distance_xy: Float - distance_z: Float -} - -""" -order by stddev_pop() on columns of table "utility_drift_results" -""" -input utility_drift_results_stddev_pop_order_by { - distance: order_by - distance_xy: order_by - distance_z: order_by -} - -"""aggregate stddev_samp on columns""" -type utility_drift_results_stddev_samp_fields { - distance: Float - distance_xy: Float - distance_z: Float -} - -""" -order by stddev_samp() on columns of table "utility_drift_results" -""" -input utility_drift_results_stddev_samp_order_by { - distance: order_by - distance_xy: order_by - distance_z: order_by -} - -""" -Streaming cursor of the table "utility_drift_results" -""" -input utility_drift_results_stream_cursor_input { - """Stream column input with initial value""" - initial_value: utility_drift_results_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input utility_drift_results_stream_cursor_value_input { - created_at: timestamptz - distance: float8 - distance_xy: float8 - distance_z: float8 - reason: String - severity: String - utility_drift_scan_id: uuid - utility_lineup_id: uuid - verdict: String -} - -"""aggregate sum on columns""" -type utility_drift_results_sum_fields { - distance: float8 - distance_xy: float8 - distance_z: float8 -} - -""" -order by sum() on columns of table "utility_drift_results" -""" -input utility_drift_results_sum_order_by { - distance: order_by - distance_xy: order_by - distance_z: order_by -} - -""" -update columns of table "utility_drift_results" -""" -enum utility_drift_results_update_column { - """column name""" - created_at - - """column name""" - distance - - """column name""" - distance_xy - - """column name""" - distance_z - - """column name""" - reason - - """column name""" - severity - - """column name""" - utility_drift_scan_id - - """column name""" - utility_lineup_id - - """column name""" - verdict -} - -input utility_drift_results_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: utility_drift_results_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_drift_results_set_input - - """filter the rows which have to be updated""" - where: utility_drift_results_bool_exp! -} - -"""aggregate var_pop on columns""" -type utility_drift_results_var_pop_fields { - distance: Float - distance_xy: Float - distance_z: Float -} - -""" -order by var_pop() on columns of table "utility_drift_results" -""" -input utility_drift_results_var_pop_order_by { - distance: order_by - distance_xy: order_by - distance_z: order_by -} - -"""aggregate var_samp on columns""" -type utility_drift_results_var_samp_fields { - distance: Float - distance_xy: Float - distance_z: Float -} - -""" -order by var_samp() on columns of table "utility_drift_results" -""" -input utility_drift_results_var_samp_order_by { - distance: order_by - distance_xy: order_by - distance_z: order_by -} - -"""aggregate variance on columns""" -type utility_drift_results_variance_fields { - distance: Float - distance_xy: Float - distance_z: Float -} - -""" -order by variance() on columns of table "utility_drift_results" -""" -input utility_drift_results_variance_order_by { - distance: order_by - distance_xy: order_by - distance_z: order_by -} - -""" -columns and relationships of "utility_drift_scans" -""" -type utility_drift_scans { - broken: Int! - created_at: timestamptz! - failure_reason: String - finished_at: timestamptz - from_revision: String - id: uuid! - lineups: Int! - map_name: String! - max_distance: float8 - moved: Int! - - """An object relationship""" - requested_by: players - requested_by_steam_id: bigint - - """An array relationship""" - results( - """distinct select on columns""" - distinct_on: [utility_drift_results_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: [utility_drift_results_order_by!] - - """filter the rows returned""" - where: utility_drift_results_bool_exp - ): [utility_drift_results!]! - - """An aggregate relationship""" - results_aggregate( - """distinct select on columns""" - distinct_on: [utility_drift_results_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: [utility_drift_results_order_by!] - - """filter the rows returned""" - where: utility_drift_results_bool_exp - ): utility_drift_results_aggregate! - scanned: Int! - started_at: timestamptz - status: String! - to_revision: String - unchanged: Int! - unsimulatable: Int! - updated_at: timestamptz! -} - -""" -aggregated selection of "utility_drift_scans" -""" -type utility_drift_scans_aggregate { - aggregate: utility_drift_scans_aggregate_fields - nodes: [utility_drift_scans!]! -} - -""" -aggregate fields of "utility_drift_scans" -""" -type utility_drift_scans_aggregate_fields { - avg: utility_drift_scans_avg_fields - count(columns: [utility_drift_scans_select_column!], distinct: Boolean): Int! - max: utility_drift_scans_max_fields - min: utility_drift_scans_min_fields - stddev: utility_drift_scans_stddev_fields - stddev_pop: utility_drift_scans_stddev_pop_fields - stddev_samp: utility_drift_scans_stddev_samp_fields - sum: utility_drift_scans_sum_fields - var_pop: utility_drift_scans_var_pop_fields - var_samp: utility_drift_scans_var_samp_fields - variance: utility_drift_scans_variance_fields -} - -"""aggregate avg on columns""" -type utility_drift_scans_avg_fields { - broken: Float - lineups: Float - max_distance: Float - moved: Float - requested_by_steam_id: Float - scanned: Float - unchanged: Float - unsimulatable: Float -} - -""" -Boolean expression to filter rows from the table "utility_drift_scans". All fields are combined with a logical 'AND'. -""" -input utility_drift_scans_bool_exp { - _and: [utility_drift_scans_bool_exp!] - _not: utility_drift_scans_bool_exp - _or: [utility_drift_scans_bool_exp!] - broken: Int_comparison_exp - created_at: timestamptz_comparison_exp - failure_reason: String_comparison_exp - finished_at: timestamptz_comparison_exp - from_revision: String_comparison_exp - id: uuid_comparison_exp - lineups: Int_comparison_exp - map_name: String_comparison_exp - max_distance: float8_comparison_exp - moved: Int_comparison_exp - requested_by: players_bool_exp - requested_by_steam_id: bigint_comparison_exp - results: utility_drift_results_bool_exp - results_aggregate: utility_drift_results_aggregate_bool_exp - scanned: Int_comparison_exp - started_at: timestamptz_comparison_exp - status: String_comparison_exp - to_revision: String_comparison_exp - unchanged: Int_comparison_exp - unsimulatable: Int_comparison_exp - updated_at: timestamptz_comparison_exp -} - -""" -unique or primary key constraints on table "utility_drift_scans" -""" -enum utility_drift_scans_constraint { - """ - unique or primary key constraint on columns "id" - """ - utility_drift_scans_pkey -} - -""" -input type for incrementing numeric columns in table "utility_drift_scans" -""" -input utility_drift_scans_inc_input { - broken: Int - lineups: Int - max_distance: float8 - moved: Int - requested_by_steam_id: bigint - scanned: Int - unchanged: Int - unsimulatable: Int -} - -""" -input type for inserting data into table "utility_drift_scans" -""" -input utility_drift_scans_insert_input { - broken: Int - created_at: timestamptz - failure_reason: String - finished_at: timestamptz - from_revision: String - id: uuid - lineups: Int - map_name: String - max_distance: float8 - moved: Int - requested_by: players_obj_rel_insert_input - requested_by_steam_id: bigint - results: utility_drift_results_arr_rel_insert_input - scanned: Int - started_at: timestamptz - status: String - to_revision: String - unchanged: Int - unsimulatable: Int - updated_at: timestamptz -} - -"""aggregate max on columns""" -type utility_drift_scans_max_fields { - broken: Int - created_at: timestamptz - failure_reason: String - finished_at: timestamptz - from_revision: String - id: uuid - lineups: Int - map_name: String - max_distance: float8 - moved: Int - requested_by_steam_id: bigint - scanned: Int - started_at: timestamptz - status: String - to_revision: String - unchanged: Int - unsimulatable: Int - updated_at: timestamptz -} - -"""aggregate min on columns""" -type utility_drift_scans_min_fields { - broken: Int - created_at: timestamptz - failure_reason: String - finished_at: timestamptz - from_revision: String - id: uuid - lineups: Int - map_name: String - max_distance: float8 - moved: Int - requested_by_steam_id: bigint - scanned: Int - started_at: timestamptz - status: String - to_revision: String - unchanged: Int - unsimulatable: Int - updated_at: timestamptz -} - -""" -response of any mutation on the table "utility_drift_scans" -""" -type utility_drift_scans_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [utility_drift_scans!]! -} - -""" -input type for inserting object relation for remote table "utility_drift_scans" -""" -input utility_drift_scans_obj_rel_insert_input { - data: utility_drift_scans_insert_input! - - """upsert condition""" - on_conflict: utility_drift_scans_on_conflict -} - -""" -on_conflict condition type for table "utility_drift_scans" -""" -input utility_drift_scans_on_conflict { - constraint: utility_drift_scans_constraint! - update_columns: [utility_drift_scans_update_column!]! = [] - where: utility_drift_scans_bool_exp -} - -"""Ordering options when selecting data from "utility_drift_scans".""" -input utility_drift_scans_order_by { - broken: order_by - created_at: order_by - failure_reason: order_by - finished_at: order_by - from_revision: order_by - id: order_by - lineups: order_by - map_name: order_by - max_distance: order_by - moved: order_by - requested_by: players_order_by - requested_by_steam_id: order_by - results_aggregate: utility_drift_results_aggregate_order_by - scanned: order_by - started_at: order_by - status: order_by - to_revision: order_by - unchanged: order_by - unsimulatable: order_by - updated_at: order_by -} - -"""primary key columns input for table: utility_drift_scans""" -input utility_drift_scans_pk_columns_input { - id: uuid! -} - -""" -select columns of table "utility_drift_scans" -""" -enum utility_drift_scans_select_column { - """column name""" - broken - - """column name""" - created_at - - """column name""" - failure_reason - - """column name""" - finished_at - - """column name""" - from_revision - - """column name""" - id - - """column name""" - lineups - - """column name""" - map_name - - """column name""" - max_distance - - """column name""" - moved - - """column name""" - requested_by_steam_id - - """column name""" - scanned - - """column name""" - started_at - - """column name""" - status - - """column name""" - to_revision - - """column name""" - unchanged - - """column name""" - unsimulatable - - """column name""" - updated_at -} - -""" -input type for updating data in table "utility_drift_scans" -""" -input utility_drift_scans_set_input { - broken: Int - created_at: timestamptz - failure_reason: String - finished_at: timestamptz - from_revision: String - id: uuid - lineups: Int - map_name: String - max_distance: float8 - moved: Int - requested_by_steam_id: bigint - scanned: Int - started_at: timestamptz - status: String - to_revision: String - unchanged: Int - unsimulatable: Int - updated_at: timestamptz -} - -"""aggregate stddev on columns""" -type utility_drift_scans_stddev_fields { - broken: Float - lineups: Float - max_distance: Float - moved: Float - requested_by_steam_id: Float - scanned: Float - unchanged: Float - unsimulatable: Float -} - -"""aggregate stddev_pop on columns""" -type utility_drift_scans_stddev_pop_fields { - broken: Float - lineups: Float - max_distance: Float - moved: Float - requested_by_steam_id: Float - scanned: Float - unchanged: Float - unsimulatable: Float -} - -"""aggregate stddev_samp on columns""" -type utility_drift_scans_stddev_samp_fields { - broken: Float - lineups: Float - max_distance: Float - moved: Float - requested_by_steam_id: Float - scanned: Float - unchanged: Float - unsimulatable: Float -} - -""" -Streaming cursor of the table "utility_drift_scans" -""" -input utility_drift_scans_stream_cursor_input { - """Stream column input with initial value""" - initial_value: utility_drift_scans_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input utility_drift_scans_stream_cursor_value_input { - broken: Int - created_at: timestamptz - failure_reason: String - finished_at: timestamptz - from_revision: String - id: uuid - lineups: Int - map_name: String - max_distance: float8 - moved: Int - requested_by_steam_id: bigint - scanned: Int - started_at: timestamptz - status: String - to_revision: String - unchanged: Int - unsimulatable: Int - updated_at: timestamptz -} - -"""aggregate sum on columns""" -type utility_drift_scans_sum_fields { - broken: Int - lineups: Int - max_distance: float8 - moved: Int - requested_by_steam_id: bigint - scanned: Int - unchanged: Int - unsimulatable: Int -} - -""" -update columns of table "utility_drift_scans" -""" -enum utility_drift_scans_update_column { - """column name""" - broken - - """column name""" - created_at - - """column name""" - failure_reason - - """column name""" - finished_at - - """column name""" - from_revision - - """column name""" - id - - """column name""" - lineups - - """column name""" - map_name - - """column name""" - max_distance - - """column name""" - moved - - """column name""" - requested_by_steam_id - - """column name""" - scanned - - """column name""" - started_at - - """column name""" - status - - """column name""" - to_revision - - """column name""" - unchanged - - """column name""" - unsimulatable - - """column name""" - updated_at -} - -input utility_drift_scans_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: utility_drift_scans_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_drift_scans_set_input - - """filter the rows which have to be updated""" - where: utility_drift_scans_bool_exp! -} - -"""aggregate var_pop on columns""" -type utility_drift_scans_var_pop_fields { - broken: Float - lineups: Float - max_distance: Float - moved: Float - requested_by_steam_id: Float - scanned: Float - unchanged: Float - unsimulatable: Float -} - -"""aggregate var_samp on columns""" -type utility_drift_scans_var_samp_fields { - broken: Float - lineups: Float - max_distance: Float - moved: Float - requested_by_steam_id: Float - scanned: Float - unchanged: Float - unsimulatable: Float -} - -"""aggregate variance on columns""" -type utility_drift_scans_variance_fields { - broken: Float - lineups: Float - max_distance: Float - moved: Float - requested_by_steam_id: Float - scanned: Float - unchanged: Float - unsimulatable: Float -} - -""" -columns and relationships of "utility_lineup_favorites" -""" -type utility_lineup_favorites { - created_at: timestamptz! - - """An object relationship""" - player: players! - steam_id: bigint! - - """An object relationship""" - utility_lineup: utility_lineups! - utility_lineup_id: uuid! -} - -""" -aggregated selection of "utility_lineup_favorites" -""" -type utility_lineup_favorites_aggregate { - aggregate: utility_lineup_favorites_aggregate_fields - nodes: [utility_lineup_favorites!]! -} - -input utility_lineup_favorites_aggregate_bool_exp { - count: utility_lineup_favorites_aggregate_bool_exp_count -} - -input utility_lineup_favorites_aggregate_bool_exp_count { - arguments: [utility_lineup_favorites_select_column!] - distinct: Boolean - filter: utility_lineup_favorites_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "utility_lineup_favorites" -""" -type utility_lineup_favorites_aggregate_fields { - avg: utility_lineup_favorites_avg_fields - count(columns: [utility_lineup_favorites_select_column!], distinct: Boolean): Int! - max: utility_lineup_favorites_max_fields - min: utility_lineup_favorites_min_fields - stddev: utility_lineup_favorites_stddev_fields - stddev_pop: utility_lineup_favorites_stddev_pop_fields - stddev_samp: utility_lineup_favorites_stddev_samp_fields - sum: utility_lineup_favorites_sum_fields - var_pop: utility_lineup_favorites_var_pop_fields - var_samp: utility_lineup_favorites_var_samp_fields - variance: utility_lineup_favorites_variance_fields -} - -""" -order by aggregate values of table "utility_lineup_favorites" -""" -input utility_lineup_favorites_aggregate_order_by { - avg: utility_lineup_favorites_avg_order_by - count: order_by - max: utility_lineup_favorites_max_order_by - min: utility_lineup_favorites_min_order_by - stddev: utility_lineup_favorites_stddev_order_by - stddev_pop: utility_lineup_favorites_stddev_pop_order_by - stddev_samp: utility_lineup_favorites_stddev_samp_order_by - sum: utility_lineup_favorites_sum_order_by - var_pop: utility_lineup_favorites_var_pop_order_by - var_samp: utility_lineup_favorites_var_samp_order_by - variance: utility_lineup_favorites_variance_order_by -} - -""" -input type for inserting array relation for remote table "utility_lineup_favorites" -""" -input utility_lineup_favorites_arr_rel_insert_input { - data: [utility_lineup_favorites_insert_input!]! - - """upsert condition""" - on_conflict: utility_lineup_favorites_on_conflict -} - -"""aggregate avg on columns""" -type utility_lineup_favorites_avg_fields { - steam_id: Float -} - -""" -order by avg() on columns of table "utility_lineup_favorites" -""" -input utility_lineup_favorites_avg_order_by { - steam_id: order_by -} - -""" -Boolean expression to filter rows from the table "utility_lineup_favorites". All fields are combined with a logical 'AND'. -""" -input utility_lineup_favorites_bool_exp { - _and: [utility_lineup_favorites_bool_exp!] - _not: utility_lineup_favorites_bool_exp - _or: [utility_lineup_favorites_bool_exp!] - created_at: timestamptz_comparison_exp - player: players_bool_exp - steam_id: bigint_comparison_exp - utility_lineup: utility_lineups_bool_exp - utility_lineup_id: uuid_comparison_exp -} - -""" -unique or primary key constraints on table "utility_lineup_favorites" -""" -enum utility_lineup_favorites_constraint { - """ - unique or primary key constraint on columns "steam_id", "utility_lineup_id" - """ - utility_lineup_favorites_pkey -} - -""" -input type for incrementing numeric columns in table "utility_lineup_favorites" -""" -input utility_lineup_favorites_inc_input { - steam_id: bigint -} - -""" -input type for inserting data into table "utility_lineup_favorites" -""" -input utility_lineup_favorites_insert_input { - created_at: timestamptz - player: players_obj_rel_insert_input - steam_id: bigint - utility_lineup: utility_lineups_obj_rel_insert_input - utility_lineup_id: uuid -} - -"""aggregate max on columns""" -type utility_lineup_favorites_max_fields { - created_at: timestamptz - steam_id: bigint - utility_lineup_id: uuid -} - -""" -order by max() on columns of table "utility_lineup_favorites" -""" -input utility_lineup_favorites_max_order_by { - created_at: order_by - steam_id: order_by - utility_lineup_id: order_by -} - -"""aggregate min on columns""" -type utility_lineup_favorites_min_fields { - created_at: timestamptz - steam_id: bigint - utility_lineup_id: uuid -} - -""" -order by min() on columns of table "utility_lineup_favorites" -""" -input utility_lineup_favorites_min_order_by { - created_at: order_by - steam_id: order_by - utility_lineup_id: order_by -} - -""" -response of any mutation on the table "utility_lineup_favorites" -""" -type utility_lineup_favorites_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [utility_lineup_favorites!]! -} - -""" -on_conflict condition type for table "utility_lineup_favorites" -""" -input utility_lineup_favorites_on_conflict { - constraint: utility_lineup_favorites_constraint! - update_columns: [utility_lineup_favorites_update_column!]! = [] - where: utility_lineup_favorites_bool_exp -} - -"""Ordering options when selecting data from "utility_lineup_favorites".""" -input utility_lineup_favorites_order_by { - created_at: order_by - player: players_order_by - steam_id: order_by - utility_lineup: utility_lineups_order_by - utility_lineup_id: order_by -} - -"""primary key columns input for table: utility_lineup_favorites""" -input utility_lineup_favorites_pk_columns_input { - steam_id: bigint! - utility_lineup_id: uuid! -} - -""" -select columns of table "utility_lineup_favorites" -""" -enum utility_lineup_favorites_select_column { - """column name""" - created_at - - """column name""" - steam_id - - """column name""" - utility_lineup_id -} - -""" -input type for updating data in table "utility_lineup_favorites" -""" -input utility_lineup_favorites_set_input { - created_at: timestamptz - steam_id: bigint - utility_lineup_id: uuid -} - -"""aggregate stddev on columns""" -type utility_lineup_favorites_stddev_fields { - steam_id: Float -} - -""" -order by stddev() on columns of table "utility_lineup_favorites" -""" -input utility_lineup_favorites_stddev_order_by { - steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type utility_lineup_favorites_stddev_pop_fields { - steam_id: Float -} - -""" -order by stddev_pop() on columns of table "utility_lineup_favorites" -""" -input utility_lineup_favorites_stddev_pop_order_by { - steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type utility_lineup_favorites_stddev_samp_fields { - steam_id: Float -} - -""" -order by stddev_samp() on columns of table "utility_lineup_favorites" -""" -input utility_lineup_favorites_stddev_samp_order_by { - steam_id: order_by -} - -""" -Streaming cursor of the table "utility_lineup_favorites" -""" -input utility_lineup_favorites_stream_cursor_input { - """Stream column input with initial value""" - initial_value: utility_lineup_favorites_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input utility_lineup_favorites_stream_cursor_value_input { - created_at: timestamptz - steam_id: bigint - utility_lineup_id: uuid -} - -"""aggregate sum on columns""" -type utility_lineup_favorites_sum_fields { - steam_id: bigint -} - -""" -order by sum() on columns of table "utility_lineup_favorites" -""" -input utility_lineup_favorites_sum_order_by { - steam_id: order_by -} - -""" -update columns of table "utility_lineup_favorites" -""" -enum utility_lineup_favorites_update_column { - """column name""" - created_at - - """column name""" - steam_id - - """column name""" - utility_lineup_id -} - -input utility_lineup_favorites_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: utility_lineup_favorites_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_lineup_favorites_set_input - - """filter the rows which have to be updated""" - where: utility_lineup_favorites_bool_exp! -} - -"""aggregate var_pop on columns""" -type utility_lineup_favorites_var_pop_fields { - steam_id: Float -} - -""" -order by var_pop() on columns of table "utility_lineup_favorites" -""" -input utility_lineup_favorites_var_pop_order_by { - steam_id: order_by -} - -"""aggregate var_samp on columns""" -type utility_lineup_favorites_var_samp_fields { - steam_id: Float -} - -""" -order by var_samp() on columns of table "utility_lineup_favorites" -""" -input utility_lineup_favorites_var_samp_order_by { - steam_id: order_by -} - -"""aggregate variance on columns""" -type utility_lineup_favorites_variance_fields { - steam_id: Float -} - -""" -order by variance() on columns of table "utility_lineup_favorites" -""" -input utility_lineup_favorites_variance_order_by { - steam_id: order_by -} - -""" -columns and relationships of "utility_lineup_progress" -""" -type utility_lineup_progress { - attempts: Int! - best_streak: Int! - current_streak: Int! - last_practiced_at: timestamptz - mastered_at: timestamptz - miss_along_sum: float8! - miss_lateral_sum: float8! - miss_samples: Int! - miss_vertical_sum: float8! - - """An object relationship""" - player: players! - steam_id: bigint! - successes: Int! - - """An object relationship""" - utility_lineup: utility_lineups! - utility_lineup_id: uuid! -} - -""" -aggregated selection of "utility_lineup_progress" -""" -type utility_lineup_progress_aggregate { - aggregate: utility_lineup_progress_aggregate_fields - nodes: [utility_lineup_progress!]! -} - -input utility_lineup_progress_aggregate_bool_exp { - avg: utility_lineup_progress_aggregate_bool_exp_avg - corr: utility_lineup_progress_aggregate_bool_exp_corr - count: utility_lineup_progress_aggregate_bool_exp_count - covar_samp: utility_lineup_progress_aggregate_bool_exp_covar_samp - max: utility_lineup_progress_aggregate_bool_exp_max - min: utility_lineup_progress_aggregate_bool_exp_min - stddev_samp: utility_lineup_progress_aggregate_bool_exp_stddev_samp - sum: utility_lineup_progress_aggregate_bool_exp_sum - var_samp: utility_lineup_progress_aggregate_bool_exp_var_samp -} - -input utility_lineup_progress_aggregate_bool_exp_avg { - arguments: utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_avg_arguments_columns! - distinct: Boolean - filter: utility_lineup_progress_bool_exp - predicate: float8_comparison_exp! -} - -input utility_lineup_progress_aggregate_bool_exp_corr { - arguments: utility_lineup_progress_aggregate_bool_exp_corr_arguments! - distinct: Boolean - filter: utility_lineup_progress_bool_exp - predicate: float8_comparison_exp! -} - -input utility_lineup_progress_aggregate_bool_exp_corr_arguments { - X: utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_corr_arguments_columns! - Y: utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_corr_arguments_columns! -} - -input utility_lineup_progress_aggregate_bool_exp_count { - arguments: [utility_lineup_progress_select_column!] - distinct: Boolean - filter: utility_lineup_progress_bool_exp - predicate: Int_comparison_exp! -} - -input utility_lineup_progress_aggregate_bool_exp_covar_samp { - arguments: utility_lineup_progress_aggregate_bool_exp_covar_samp_arguments! - distinct: Boolean - filter: utility_lineup_progress_bool_exp - predicate: float8_comparison_exp! -} - -input utility_lineup_progress_aggregate_bool_exp_covar_samp_arguments { - X: utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_covar_samp_arguments_columns! - Y: utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_covar_samp_arguments_columns! -} - -input utility_lineup_progress_aggregate_bool_exp_max { - arguments: utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_max_arguments_columns! - distinct: Boolean - filter: utility_lineup_progress_bool_exp - predicate: float8_comparison_exp! -} - -input utility_lineup_progress_aggregate_bool_exp_min { - arguments: utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_min_arguments_columns! - distinct: Boolean - filter: utility_lineup_progress_bool_exp - predicate: float8_comparison_exp! -} - -input utility_lineup_progress_aggregate_bool_exp_stddev_samp { - arguments: utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_stddev_samp_arguments_columns! - distinct: Boolean - filter: utility_lineup_progress_bool_exp - predicate: float8_comparison_exp! -} - -input utility_lineup_progress_aggregate_bool_exp_sum { - arguments: utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_sum_arguments_columns! - distinct: Boolean - filter: utility_lineup_progress_bool_exp - predicate: float8_comparison_exp! -} - -input utility_lineup_progress_aggregate_bool_exp_var_samp { - arguments: utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_var_samp_arguments_columns! - distinct: Boolean - filter: utility_lineup_progress_bool_exp - predicate: float8_comparison_exp! -} - -""" -aggregate fields of "utility_lineup_progress" -""" -type utility_lineup_progress_aggregate_fields { - avg: utility_lineup_progress_avg_fields - count(columns: [utility_lineup_progress_select_column!], distinct: Boolean): Int! - max: utility_lineup_progress_max_fields - min: utility_lineup_progress_min_fields - stddev: utility_lineup_progress_stddev_fields - stddev_pop: utility_lineup_progress_stddev_pop_fields - stddev_samp: utility_lineup_progress_stddev_samp_fields - sum: utility_lineup_progress_sum_fields - var_pop: utility_lineup_progress_var_pop_fields - var_samp: utility_lineup_progress_var_samp_fields - variance: utility_lineup_progress_variance_fields -} - -""" -order by aggregate values of table "utility_lineup_progress" -""" -input utility_lineup_progress_aggregate_order_by { - avg: utility_lineup_progress_avg_order_by - count: order_by - max: utility_lineup_progress_max_order_by - min: utility_lineup_progress_min_order_by - stddev: utility_lineup_progress_stddev_order_by - stddev_pop: utility_lineup_progress_stddev_pop_order_by - stddev_samp: utility_lineup_progress_stddev_samp_order_by - sum: utility_lineup_progress_sum_order_by - var_pop: utility_lineup_progress_var_pop_order_by - var_samp: utility_lineup_progress_var_samp_order_by - variance: utility_lineup_progress_variance_order_by -} - -""" -input type for inserting array relation for remote table "utility_lineup_progress" -""" -input utility_lineup_progress_arr_rel_insert_input { - data: [utility_lineup_progress_insert_input!]! - - """upsert condition""" - on_conflict: utility_lineup_progress_on_conflict -} - -"""aggregate avg on columns""" -type utility_lineup_progress_avg_fields { - attempts: Float - best_streak: Float - current_streak: Float - miss_along_sum: Float - miss_lateral_sum: Float - miss_samples: Float - miss_vertical_sum: Float - steam_id: Float - successes: Float -} - -""" -order by avg() on columns of table "utility_lineup_progress" -""" -input utility_lineup_progress_avg_order_by { - attempts: order_by - best_streak: order_by - current_streak: order_by - miss_along_sum: order_by - miss_lateral_sum: order_by - miss_samples: order_by - miss_vertical_sum: order_by - steam_id: order_by - successes: order_by -} - -""" -Boolean expression to filter rows from the table "utility_lineup_progress". All fields are combined with a logical 'AND'. -""" -input utility_lineup_progress_bool_exp { - _and: [utility_lineup_progress_bool_exp!] - _not: utility_lineup_progress_bool_exp - _or: [utility_lineup_progress_bool_exp!] - attempts: Int_comparison_exp - best_streak: Int_comparison_exp - current_streak: Int_comparison_exp - last_practiced_at: timestamptz_comparison_exp - mastered_at: timestamptz_comparison_exp - miss_along_sum: float8_comparison_exp - miss_lateral_sum: float8_comparison_exp - miss_samples: Int_comparison_exp - miss_vertical_sum: float8_comparison_exp - player: players_bool_exp - steam_id: bigint_comparison_exp - successes: Int_comparison_exp - utility_lineup: utility_lineups_bool_exp - utility_lineup_id: uuid_comparison_exp -} - -""" -unique or primary key constraints on table "utility_lineup_progress" -""" -enum utility_lineup_progress_constraint { - """ - unique or primary key constraint on columns "steam_id", "utility_lineup_id" - """ - utility_lineup_progress_pkey -} - -""" -input type for incrementing numeric columns in table "utility_lineup_progress" -""" -input utility_lineup_progress_inc_input { - attempts: Int - best_streak: Int - current_streak: Int - miss_along_sum: float8 - miss_lateral_sum: float8 - miss_samples: Int - miss_vertical_sum: float8 - steam_id: bigint - successes: Int -} - -""" -input type for inserting data into table "utility_lineup_progress" -""" -input utility_lineup_progress_insert_input { - attempts: Int - best_streak: Int - current_streak: Int - last_practiced_at: timestamptz - mastered_at: timestamptz - miss_along_sum: float8 - miss_lateral_sum: float8 - miss_samples: Int - miss_vertical_sum: float8 - player: players_obj_rel_insert_input - steam_id: bigint - successes: Int - utility_lineup: utility_lineups_obj_rel_insert_input - utility_lineup_id: uuid -} - -"""aggregate max on columns""" -type utility_lineup_progress_max_fields { - attempts: Int - best_streak: Int - current_streak: Int - last_practiced_at: timestamptz - mastered_at: timestamptz - miss_along_sum: float8 - miss_lateral_sum: float8 - miss_samples: Int - miss_vertical_sum: float8 - steam_id: bigint - successes: Int - utility_lineup_id: uuid -} - -""" -order by max() on columns of table "utility_lineup_progress" -""" -input utility_lineup_progress_max_order_by { - attempts: order_by - best_streak: order_by - current_streak: order_by - last_practiced_at: order_by - mastered_at: order_by - miss_along_sum: order_by - miss_lateral_sum: order_by - miss_samples: order_by - miss_vertical_sum: order_by - steam_id: order_by - successes: order_by - utility_lineup_id: order_by -} - -"""aggregate min on columns""" -type utility_lineup_progress_min_fields { - attempts: Int - best_streak: Int - current_streak: Int - last_practiced_at: timestamptz - mastered_at: timestamptz - miss_along_sum: float8 - miss_lateral_sum: float8 - miss_samples: Int - miss_vertical_sum: float8 - steam_id: bigint - successes: Int - utility_lineup_id: uuid -} - -""" -order by min() on columns of table "utility_lineup_progress" -""" -input utility_lineup_progress_min_order_by { - attempts: order_by - best_streak: order_by - current_streak: order_by - last_practiced_at: order_by - mastered_at: order_by - miss_along_sum: order_by - miss_lateral_sum: order_by - miss_samples: order_by - miss_vertical_sum: order_by - steam_id: order_by - successes: order_by - utility_lineup_id: order_by -} - -""" -response of any mutation on the table "utility_lineup_progress" -""" -type utility_lineup_progress_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [utility_lineup_progress!]! -} - -""" -on_conflict condition type for table "utility_lineup_progress" -""" -input utility_lineup_progress_on_conflict { - constraint: utility_lineup_progress_constraint! - update_columns: [utility_lineup_progress_update_column!]! = [] - where: utility_lineup_progress_bool_exp -} - -"""Ordering options when selecting data from "utility_lineup_progress".""" -input utility_lineup_progress_order_by { - attempts: order_by - best_streak: order_by - current_streak: order_by - last_practiced_at: order_by - mastered_at: order_by - miss_along_sum: order_by - miss_lateral_sum: order_by - miss_samples: order_by - miss_vertical_sum: order_by - player: players_order_by - steam_id: order_by - successes: order_by - utility_lineup: utility_lineups_order_by - utility_lineup_id: order_by -} - -"""primary key columns input for table: utility_lineup_progress""" -input utility_lineup_progress_pk_columns_input { - steam_id: bigint! - utility_lineup_id: uuid! -} - -""" -select columns of table "utility_lineup_progress" -""" -enum utility_lineup_progress_select_column { - """column name""" - attempts - - """column name""" - best_streak - - """column name""" - current_streak - - """column name""" - last_practiced_at - - """column name""" - mastered_at - - """column name""" - miss_along_sum - - """column name""" - miss_lateral_sum - - """column name""" - miss_samples - - """column name""" - miss_vertical_sum - - """column name""" - steam_id - - """column name""" - successes - - """column name""" - utility_lineup_id -} - -""" -select "utility_lineup_progress_aggregate_bool_exp_avg_arguments_columns" columns of table "utility_lineup_progress" -""" -enum utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_avg_arguments_columns { - """column name""" - miss_along_sum - - """column name""" - miss_lateral_sum - - """column name""" - miss_vertical_sum -} - -""" -select "utility_lineup_progress_aggregate_bool_exp_corr_arguments_columns" columns of table "utility_lineup_progress" -""" -enum utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_corr_arguments_columns { - """column name""" - miss_along_sum - - """column name""" - miss_lateral_sum - - """column name""" - miss_vertical_sum -} - -""" -select "utility_lineup_progress_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "utility_lineup_progress" -""" -enum utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_covar_samp_arguments_columns { - """column name""" - miss_along_sum - - """column name""" - miss_lateral_sum - - """column name""" - miss_vertical_sum -} - -""" -select "utility_lineup_progress_aggregate_bool_exp_max_arguments_columns" columns of table "utility_lineup_progress" -""" -enum utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_max_arguments_columns { - """column name""" - miss_along_sum - - """column name""" - miss_lateral_sum - - """column name""" - miss_vertical_sum -} - -""" -select "utility_lineup_progress_aggregate_bool_exp_min_arguments_columns" columns of table "utility_lineup_progress" -""" -enum utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_min_arguments_columns { - """column name""" - miss_along_sum - - """column name""" - miss_lateral_sum - - """column name""" - miss_vertical_sum -} - -""" -select "utility_lineup_progress_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "utility_lineup_progress" -""" -enum utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_stddev_samp_arguments_columns { - """column name""" - miss_along_sum - - """column name""" - miss_lateral_sum - - """column name""" - miss_vertical_sum -} - -""" -select "utility_lineup_progress_aggregate_bool_exp_sum_arguments_columns" columns of table "utility_lineup_progress" -""" -enum utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_sum_arguments_columns { - """column name""" - miss_along_sum - - """column name""" - miss_lateral_sum - - """column name""" - miss_vertical_sum -} - -""" -select "utility_lineup_progress_aggregate_bool_exp_var_samp_arguments_columns" columns of table "utility_lineup_progress" -""" -enum utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_var_samp_arguments_columns { - """column name""" - miss_along_sum - - """column name""" - miss_lateral_sum - - """column name""" - miss_vertical_sum -} - -""" -input type for updating data in table "utility_lineup_progress" -""" -input utility_lineup_progress_set_input { - attempts: Int - best_streak: Int - current_streak: Int - last_practiced_at: timestamptz - mastered_at: timestamptz - miss_along_sum: float8 - miss_lateral_sum: float8 - miss_samples: Int - miss_vertical_sum: float8 - steam_id: bigint - successes: Int - utility_lineup_id: uuid -} - -"""aggregate stddev on columns""" -type utility_lineup_progress_stddev_fields { - attempts: Float - best_streak: Float - current_streak: Float - miss_along_sum: Float - miss_lateral_sum: Float - miss_samples: Float - miss_vertical_sum: Float - steam_id: Float - successes: Float -} - -""" -order by stddev() on columns of table "utility_lineup_progress" -""" -input utility_lineup_progress_stddev_order_by { - attempts: order_by - best_streak: order_by - current_streak: order_by - miss_along_sum: order_by - miss_lateral_sum: order_by - miss_samples: order_by - miss_vertical_sum: order_by - steam_id: order_by - successes: order_by -} - -"""aggregate stddev_pop on columns""" -type utility_lineup_progress_stddev_pop_fields { - attempts: Float - best_streak: Float - current_streak: Float - miss_along_sum: Float - miss_lateral_sum: Float - miss_samples: Float - miss_vertical_sum: Float - steam_id: Float - successes: Float -} - -""" -order by stddev_pop() on columns of table "utility_lineup_progress" -""" -input utility_lineup_progress_stddev_pop_order_by { - attempts: order_by - best_streak: order_by - current_streak: order_by - miss_along_sum: order_by - miss_lateral_sum: order_by - miss_samples: order_by - miss_vertical_sum: order_by - steam_id: order_by - successes: order_by -} - -"""aggregate stddev_samp on columns""" -type utility_lineup_progress_stddev_samp_fields { - attempts: Float - best_streak: Float - current_streak: Float - miss_along_sum: Float - miss_lateral_sum: Float - miss_samples: Float - miss_vertical_sum: Float - steam_id: Float - successes: Float -} - -""" -order by stddev_samp() on columns of table "utility_lineup_progress" -""" -input utility_lineup_progress_stddev_samp_order_by { - attempts: order_by - best_streak: order_by - current_streak: order_by - miss_along_sum: order_by - miss_lateral_sum: order_by - miss_samples: order_by - miss_vertical_sum: order_by - steam_id: order_by - successes: order_by -} - -""" -Streaming cursor of the table "utility_lineup_progress" -""" -input utility_lineup_progress_stream_cursor_input { - """Stream column input with initial value""" - initial_value: utility_lineup_progress_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input utility_lineup_progress_stream_cursor_value_input { - attempts: Int - best_streak: Int - current_streak: Int - last_practiced_at: timestamptz - mastered_at: timestamptz - miss_along_sum: float8 - miss_lateral_sum: float8 - miss_samples: Int - miss_vertical_sum: float8 - steam_id: bigint - successes: Int - utility_lineup_id: uuid -} - -"""aggregate sum on columns""" -type utility_lineup_progress_sum_fields { - attempts: Int - best_streak: Int - current_streak: Int - miss_along_sum: float8 - miss_lateral_sum: float8 - miss_samples: Int - miss_vertical_sum: float8 - steam_id: bigint - successes: Int -} - -""" -order by sum() on columns of table "utility_lineup_progress" -""" -input utility_lineup_progress_sum_order_by { - attempts: order_by - best_streak: order_by - current_streak: order_by - miss_along_sum: order_by - miss_lateral_sum: order_by - miss_samples: order_by - miss_vertical_sum: order_by - steam_id: order_by - successes: order_by -} - -""" -update columns of table "utility_lineup_progress" -""" -enum utility_lineup_progress_update_column { - """column name""" - attempts - - """column name""" - best_streak - - """column name""" - current_streak - - """column name""" - last_practiced_at - - """column name""" - mastered_at - - """column name""" - miss_along_sum - - """column name""" - miss_lateral_sum - - """column name""" - miss_samples - - """column name""" - miss_vertical_sum - - """column name""" - steam_id - - """column name""" - successes - - """column name""" - utility_lineup_id -} - -input utility_lineup_progress_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: utility_lineup_progress_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_lineup_progress_set_input - - """filter the rows which have to be updated""" - where: utility_lineup_progress_bool_exp! -} - -"""aggregate var_pop on columns""" -type utility_lineup_progress_var_pop_fields { - attempts: Float - best_streak: Float - current_streak: Float - miss_along_sum: Float - miss_lateral_sum: Float - miss_samples: Float - miss_vertical_sum: Float - steam_id: Float - successes: Float -} - -""" -order by var_pop() on columns of table "utility_lineup_progress" -""" -input utility_lineup_progress_var_pop_order_by { - attempts: order_by - best_streak: order_by - current_streak: order_by - miss_along_sum: order_by - miss_lateral_sum: order_by - miss_samples: order_by - miss_vertical_sum: order_by - steam_id: order_by - successes: order_by -} - -"""aggregate var_samp on columns""" -type utility_lineup_progress_var_samp_fields { - attempts: Float - best_streak: Float - current_streak: Float - miss_along_sum: Float - miss_lateral_sum: Float - miss_samples: Float - miss_vertical_sum: Float - steam_id: Float - successes: Float -} - -""" -order by var_samp() on columns of table "utility_lineup_progress" -""" -input utility_lineup_progress_var_samp_order_by { - attempts: order_by - best_streak: order_by - current_streak: order_by - miss_along_sum: order_by - miss_lateral_sum: order_by - miss_samples: order_by - miss_vertical_sum: order_by - steam_id: order_by - successes: order_by -} - -"""aggregate variance on columns""" -type utility_lineup_progress_variance_fields { - attempts: Float - best_streak: Float - current_streak: Float - miss_along_sum: Float - miss_lateral_sum: Float - miss_samples: Float - miss_vertical_sum: Float - steam_id: Float - successes: Float -} - -""" -order by variance() on columns of table "utility_lineup_progress" -""" -input utility_lineup_progress_variance_order_by { - attempts: order_by - best_streak: order_by - current_streak: order_by - miss_along_sum: order_by - miss_lateral_sum: order_by - miss_samples: order_by - miss_vertical_sum: order_by - steam_id: order_by - successes: order_by -} - -""" -columns and relationships of "utility_lineup_renders" -""" -type utility_lineup_renders { - created_at: timestamptz! - duration_ms: Int - error_message: String - - """An object relationship""" - game_server_node: game_server_nodes - game_server_node_id: String - id: uuid! - k8s_job_name: String - last_status_at: timestamptz! - - """An object relationship""" - lineup: utility_lineups! - map_name: String! - paused: Boolean! - - """An object relationship""" - practice_session: utility_practice_sessions - progress: numeric - - """An object relationship""" - requested_by: players - requested_by_steam_id: bigint - session_token: String! - skip_reason: String - sort_index: Int! - spec( - """JSON select path""" - path: String - ): jsonb! - status: String! - status_history( - """JSON select path""" - path: String - ): jsonb! - utility_lineup_id: uuid! - utility_practice_session_id: uuid -} - -""" -aggregated selection of "utility_lineup_renders" -""" -type utility_lineup_renders_aggregate { - aggregate: utility_lineup_renders_aggregate_fields - nodes: [utility_lineup_renders!]! -} - -input utility_lineup_renders_aggregate_bool_exp { - bool_and: utility_lineup_renders_aggregate_bool_exp_bool_and - bool_or: utility_lineup_renders_aggregate_bool_exp_bool_or - count: utility_lineup_renders_aggregate_bool_exp_count -} - -input utility_lineup_renders_aggregate_bool_exp_bool_and { - arguments: utility_lineup_renders_select_column_utility_lineup_renders_aggregate_bool_exp_bool_and_arguments_columns! - distinct: Boolean - filter: utility_lineup_renders_bool_exp - predicate: Boolean_comparison_exp! -} - -input utility_lineup_renders_aggregate_bool_exp_bool_or { - arguments: utility_lineup_renders_select_column_utility_lineup_renders_aggregate_bool_exp_bool_or_arguments_columns! - distinct: Boolean - filter: utility_lineup_renders_bool_exp - predicate: Boolean_comparison_exp! -} - -input utility_lineup_renders_aggregate_bool_exp_count { - arguments: [utility_lineup_renders_select_column!] - distinct: Boolean - filter: utility_lineup_renders_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "utility_lineup_renders" -""" -type utility_lineup_renders_aggregate_fields { - avg: utility_lineup_renders_avg_fields - count(columns: [utility_lineup_renders_select_column!], distinct: Boolean): Int! - max: utility_lineup_renders_max_fields - min: utility_lineup_renders_min_fields - stddev: utility_lineup_renders_stddev_fields - stddev_pop: utility_lineup_renders_stddev_pop_fields - stddev_samp: utility_lineup_renders_stddev_samp_fields - sum: utility_lineup_renders_sum_fields - var_pop: utility_lineup_renders_var_pop_fields - var_samp: utility_lineup_renders_var_samp_fields - variance: utility_lineup_renders_variance_fields -} - -""" -order by aggregate values of table "utility_lineup_renders" -""" -input utility_lineup_renders_aggregate_order_by { - avg: utility_lineup_renders_avg_order_by - count: order_by - max: utility_lineup_renders_max_order_by - min: utility_lineup_renders_min_order_by - stddev: utility_lineup_renders_stddev_order_by - stddev_pop: utility_lineup_renders_stddev_pop_order_by - stddev_samp: utility_lineup_renders_stddev_samp_order_by - sum: utility_lineup_renders_sum_order_by - var_pop: utility_lineup_renders_var_pop_order_by - var_samp: utility_lineup_renders_var_samp_order_by - variance: utility_lineup_renders_variance_order_by -} - -"""append existing jsonb value of filtered columns with new jsonb value""" -input utility_lineup_renders_append_input { - spec: jsonb - status_history: jsonb -} - -""" -input type for inserting array relation for remote table "utility_lineup_renders" -""" -input utility_lineup_renders_arr_rel_insert_input { - data: [utility_lineup_renders_insert_input!]! - - """upsert condition""" - on_conflict: utility_lineup_renders_on_conflict -} - -"""aggregate avg on columns""" -type utility_lineup_renders_avg_fields { - duration_ms: Float - progress: Float - requested_by_steam_id: Float - sort_index: Float -} - -""" -order by avg() on columns of table "utility_lineup_renders" -""" -input utility_lineup_renders_avg_order_by { - duration_ms: order_by - progress: order_by - requested_by_steam_id: order_by - sort_index: order_by -} - -""" -Boolean expression to filter rows from the table "utility_lineup_renders". All fields are combined with a logical 'AND'. -""" -input utility_lineup_renders_bool_exp { - _and: [utility_lineup_renders_bool_exp!] - _not: utility_lineup_renders_bool_exp - _or: [utility_lineup_renders_bool_exp!] - created_at: timestamptz_comparison_exp - duration_ms: Int_comparison_exp - error_message: String_comparison_exp - game_server_node: game_server_nodes_bool_exp - game_server_node_id: String_comparison_exp - id: uuid_comparison_exp - k8s_job_name: String_comparison_exp - last_status_at: timestamptz_comparison_exp - lineup: utility_lineups_bool_exp - map_name: String_comparison_exp - paused: Boolean_comparison_exp - practice_session: utility_practice_sessions_bool_exp - progress: numeric_comparison_exp - requested_by: players_bool_exp - requested_by_steam_id: bigint_comparison_exp - session_token: String_comparison_exp - skip_reason: String_comparison_exp - sort_index: Int_comparison_exp - spec: jsonb_comparison_exp - status: String_comparison_exp - status_history: jsonb_comparison_exp - utility_lineup_id: uuid_comparison_exp - utility_practice_session_id: uuid_comparison_exp -} - -""" -unique or primary key constraints on table "utility_lineup_renders" -""" -enum utility_lineup_renders_constraint { - """ - unique or primary key constraint on columns "utility_lineup_id" - """ - utility_lineup_renders_one_in_flight_idx - - """ - unique or primary key constraint on columns "id" - """ - utility_lineup_renders_pkey -} - -""" -delete the field or element with specified path (for JSON arrays, negative integers count from the end) -""" -input utility_lineup_renders_delete_at_path_input { - spec: [String!] - status_history: [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 utility_lineup_renders_delete_elem_input { - spec: Int - status_history: Int -} - -""" -delete key/value pair or string element. key/value pairs are matched based on their key value -""" -input utility_lineup_renders_delete_key_input { - spec: String - status_history: String -} - -""" -input type for incrementing numeric columns in table "utility_lineup_renders" -""" -input utility_lineup_renders_inc_input { - duration_ms: Int - progress: numeric - requested_by_steam_id: bigint - sort_index: Int -} - -""" -input type for inserting data into table "utility_lineup_renders" -""" -input utility_lineup_renders_insert_input { - created_at: timestamptz - duration_ms: Int - error_message: String - game_server_node: game_server_nodes_obj_rel_insert_input - game_server_node_id: String - id: uuid - k8s_job_name: String - last_status_at: timestamptz - lineup: utility_lineups_obj_rel_insert_input - map_name: String - paused: Boolean - practice_session: utility_practice_sessions_obj_rel_insert_input - progress: numeric - requested_by: players_obj_rel_insert_input - requested_by_steam_id: bigint - session_token: String - skip_reason: String - sort_index: Int - spec: jsonb - status: String - status_history: jsonb - utility_lineup_id: uuid - utility_practice_session_id: uuid -} - -"""aggregate max on columns""" -type utility_lineup_renders_max_fields { - created_at: timestamptz - duration_ms: Int - error_message: String - game_server_node_id: String - id: uuid - k8s_job_name: String - last_status_at: timestamptz - map_name: String - progress: numeric - requested_by_steam_id: bigint - session_token: String - skip_reason: String - sort_index: Int - status: String - utility_lineup_id: uuid - utility_practice_session_id: uuid -} - -""" -order by max() on columns of table "utility_lineup_renders" -""" -input utility_lineup_renders_max_order_by { - created_at: order_by - duration_ms: order_by - error_message: order_by - game_server_node_id: order_by - id: order_by - k8s_job_name: order_by - last_status_at: order_by - map_name: order_by - progress: order_by - requested_by_steam_id: order_by - session_token: order_by - skip_reason: order_by - sort_index: order_by - status: order_by - utility_lineup_id: order_by - utility_practice_session_id: order_by -} - -"""aggregate min on columns""" -type utility_lineup_renders_min_fields { - created_at: timestamptz - duration_ms: Int - error_message: String - game_server_node_id: String - id: uuid - k8s_job_name: String - last_status_at: timestamptz - map_name: String - progress: numeric - requested_by_steam_id: bigint - session_token: String - skip_reason: String - sort_index: Int - status: String - utility_lineup_id: uuid - utility_practice_session_id: uuid -} - -""" -order by min() on columns of table "utility_lineup_renders" -""" -input utility_lineup_renders_min_order_by { - created_at: order_by - duration_ms: order_by - error_message: order_by - game_server_node_id: order_by - id: order_by - k8s_job_name: order_by - last_status_at: order_by - map_name: order_by - progress: order_by - requested_by_steam_id: order_by - session_token: order_by - skip_reason: order_by - sort_index: order_by - status: order_by - utility_lineup_id: order_by - utility_practice_session_id: order_by -} - -""" -response of any mutation on the table "utility_lineup_renders" -""" -type utility_lineup_renders_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [utility_lineup_renders!]! -} - -""" -on_conflict condition type for table "utility_lineup_renders" -""" -input utility_lineup_renders_on_conflict { - constraint: utility_lineup_renders_constraint! - update_columns: [utility_lineup_renders_update_column!]! = [] - where: utility_lineup_renders_bool_exp -} - -"""Ordering options when selecting data from "utility_lineup_renders".""" -input utility_lineup_renders_order_by { - created_at: order_by - duration_ms: order_by - error_message: order_by - game_server_node: game_server_nodes_order_by - game_server_node_id: order_by - id: order_by - k8s_job_name: order_by - last_status_at: order_by - lineup: utility_lineups_order_by - map_name: order_by - paused: order_by - practice_session: utility_practice_sessions_order_by - progress: order_by - requested_by: players_order_by - requested_by_steam_id: order_by - session_token: order_by - skip_reason: order_by - sort_index: order_by - spec: order_by - status: order_by - status_history: order_by - utility_lineup_id: order_by - utility_practice_session_id: order_by -} - -"""primary key columns input for table: utility_lineup_renders""" -input utility_lineup_renders_pk_columns_input { - id: uuid! -} - -"""prepend existing jsonb value of filtered columns with new jsonb value""" -input utility_lineup_renders_prepend_input { - spec: jsonb - status_history: jsonb -} - -""" -select columns of table "utility_lineup_renders" -""" -enum utility_lineup_renders_select_column { - """column name""" - created_at - - """column name""" - duration_ms - - """column name""" - error_message - - """column name""" - game_server_node_id - - """column name""" - id - - """column name""" - k8s_job_name - - """column name""" - last_status_at - - """column name""" - map_name - - """column name""" - paused - - """column name""" - progress - - """column name""" - requested_by_steam_id - - """column name""" - session_token - - """column name""" - skip_reason - - """column name""" - sort_index - - """column name""" - spec - - """column name""" - status - - """column name""" - status_history - - """column name""" - utility_lineup_id - - """column name""" - utility_practice_session_id -} - -""" -select "utility_lineup_renders_aggregate_bool_exp_bool_and_arguments_columns" columns of table "utility_lineup_renders" -""" -enum utility_lineup_renders_select_column_utility_lineup_renders_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - paused -} - -""" -select "utility_lineup_renders_aggregate_bool_exp_bool_or_arguments_columns" columns of table "utility_lineup_renders" -""" -enum utility_lineup_renders_select_column_utility_lineup_renders_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - paused -} - -""" -input type for updating data in table "utility_lineup_renders" -""" -input utility_lineup_renders_set_input { - created_at: timestamptz - duration_ms: Int - error_message: String - game_server_node_id: String - id: uuid - k8s_job_name: String - last_status_at: timestamptz - map_name: String - paused: Boolean - progress: numeric - requested_by_steam_id: bigint - session_token: String - skip_reason: String - sort_index: Int - spec: jsonb - status: String - status_history: jsonb - utility_lineup_id: uuid - utility_practice_session_id: uuid -} - -"""aggregate stddev on columns""" -type utility_lineup_renders_stddev_fields { - duration_ms: Float - progress: Float - requested_by_steam_id: Float - sort_index: Float -} - -""" -order by stddev() on columns of table "utility_lineup_renders" -""" -input utility_lineup_renders_stddev_order_by { - duration_ms: order_by - progress: order_by - requested_by_steam_id: order_by - sort_index: order_by -} - -"""aggregate stddev_pop on columns""" -type utility_lineup_renders_stddev_pop_fields { - duration_ms: Float - progress: Float - requested_by_steam_id: Float - sort_index: Float -} - -""" -order by stddev_pop() on columns of table "utility_lineup_renders" -""" -input utility_lineup_renders_stddev_pop_order_by { - duration_ms: order_by - progress: order_by - requested_by_steam_id: order_by - sort_index: order_by -} - -"""aggregate stddev_samp on columns""" -type utility_lineup_renders_stddev_samp_fields { - duration_ms: Float - progress: Float - requested_by_steam_id: Float - sort_index: Float -} - -""" -order by stddev_samp() on columns of table "utility_lineup_renders" -""" -input utility_lineup_renders_stddev_samp_order_by { - duration_ms: order_by - progress: order_by - requested_by_steam_id: order_by - sort_index: order_by -} - -""" -Streaming cursor of the table "utility_lineup_renders" -""" -input utility_lineup_renders_stream_cursor_input { - """Stream column input with initial value""" - initial_value: utility_lineup_renders_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input utility_lineup_renders_stream_cursor_value_input { - created_at: timestamptz - duration_ms: Int - error_message: String - game_server_node_id: String - id: uuid - k8s_job_name: String - last_status_at: timestamptz - map_name: String - paused: Boolean - progress: numeric - requested_by_steam_id: bigint - session_token: String - skip_reason: String - sort_index: Int - spec: jsonb - status: String - status_history: jsonb - utility_lineup_id: uuid - utility_practice_session_id: uuid -} - -"""aggregate sum on columns""" -type utility_lineup_renders_sum_fields { - duration_ms: Int - progress: numeric - requested_by_steam_id: bigint - sort_index: Int -} - -""" -order by sum() on columns of table "utility_lineup_renders" -""" -input utility_lineup_renders_sum_order_by { - duration_ms: order_by - progress: order_by - requested_by_steam_id: order_by - sort_index: order_by -} - -""" -update columns of table "utility_lineup_renders" -""" -enum utility_lineup_renders_update_column { - """column name""" - created_at - - """column name""" - duration_ms - - """column name""" - error_message - - """column name""" - game_server_node_id - - """column name""" - id - - """column name""" - k8s_job_name - - """column name""" - last_status_at - - """column name""" - map_name - - """column name""" - paused - - """column name""" - progress - - """column name""" - requested_by_steam_id - - """column name""" - session_token - - """column name""" - skip_reason - - """column name""" - sort_index - - """column name""" - spec - - """column name""" - status - - """column name""" - status_history - - """column name""" - utility_lineup_id - - """column name""" - utility_practice_session_id -} - -input utility_lineup_renders_updates { - """append existing jsonb value of filtered columns with new jsonb value""" - _append: utility_lineup_renders_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: utility_lineup_renders_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: utility_lineup_renders_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: utility_lineup_renders_delete_key_input - - """increments the numeric columns with given value of the filtered values""" - _inc: utility_lineup_renders_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: utility_lineup_renders_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_lineup_renders_set_input - - """filter the rows which have to be updated""" - where: utility_lineup_renders_bool_exp! -} - -"""aggregate var_pop on columns""" -type utility_lineup_renders_var_pop_fields { - duration_ms: Float - progress: Float - requested_by_steam_id: Float - sort_index: Float -} - -""" -order by var_pop() on columns of table "utility_lineup_renders" -""" -input utility_lineup_renders_var_pop_order_by { - duration_ms: order_by - progress: order_by - requested_by_steam_id: order_by - sort_index: order_by -} - -"""aggregate var_samp on columns""" -type utility_lineup_renders_var_samp_fields { - duration_ms: Float - progress: Float - requested_by_steam_id: Float - sort_index: Float -} - -""" -order by var_samp() on columns of table "utility_lineup_renders" -""" -input utility_lineup_renders_var_samp_order_by { - duration_ms: order_by - progress: order_by - requested_by_steam_id: order_by - sort_index: order_by -} - -"""aggregate variance on columns""" -type utility_lineup_renders_variance_fields { - duration_ms: Float - progress: Float - requested_by_steam_id: Float - sort_index: Float -} - -""" -order by variance() on columns of table "utility_lineup_renders" -""" -input utility_lineup_renders_variance_order_by { - duration_ms: order_by - progress: order_by - requested_by_steam_id: order_by - sort_index: order_by -} - -""" -columns and relationships of "utility_lineup_repairs" -""" -type utility_lineup_repairs { - created_at: timestamptz! - drift_distance: float8 - expires_at: timestamptz! - id: uuid! - repaired_at: timestamptz - - """An object relationship""" - repaired_utility_lineup: utility_lineups - repaired_utility_lineup_id: uuid - - """An object relationship""" - requested_by: players! - requested_by_steam_id: bigint! - status: String! - - """An object relationship""" - utility_drift_scan: utility_drift_scans - utility_drift_scan_id: uuid - - """An object relationship""" - utility_lineup: utility_lineups! - utility_lineup_id: uuid! - - """An object relationship""" - utility_practice_session: utility_practice_sessions - utility_practice_session_id: uuid -} - -""" -aggregated selection of "utility_lineup_repairs" -""" -type utility_lineup_repairs_aggregate { - aggregate: utility_lineup_repairs_aggregate_fields - nodes: [utility_lineup_repairs!]! -} - -input utility_lineup_repairs_aggregate_bool_exp { - avg: utility_lineup_repairs_aggregate_bool_exp_avg - corr: utility_lineup_repairs_aggregate_bool_exp_corr - count: utility_lineup_repairs_aggregate_bool_exp_count - covar_samp: utility_lineup_repairs_aggregate_bool_exp_covar_samp - max: utility_lineup_repairs_aggregate_bool_exp_max - min: utility_lineup_repairs_aggregate_bool_exp_min - stddev_samp: utility_lineup_repairs_aggregate_bool_exp_stddev_samp - sum: utility_lineup_repairs_aggregate_bool_exp_sum - var_samp: utility_lineup_repairs_aggregate_bool_exp_var_samp -} - -input utility_lineup_repairs_aggregate_bool_exp_avg { - arguments: utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_avg_arguments_columns! - distinct: Boolean - filter: utility_lineup_repairs_bool_exp - predicate: float8_comparison_exp! -} - -input utility_lineup_repairs_aggregate_bool_exp_corr { - arguments: utility_lineup_repairs_aggregate_bool_exp_corr_arguments! - distinct: Boolean - filter: utility_lineup_repairs_bool_exp - predicate: float8_comparison_exp! -} - -input utility_lineup_repairs_aggregate_bool_exp_corr_arguments { - X: utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_corr_arguments_columns! - Y: utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_corr_arguments_columns! -} - -input utility_lineup_repairs_aggregate_bool_exp_count { - arguments: [utility_lineup_repairs_select_column!] - distinct: Boolean - filter: utility_lineup_repairs_bool_exp - predicate: Int_comparison_exp! -} - -input utility_lineup_repairs_aggregate_bool_exp_covar_samp { - arguments: utility_lineup_repairs_aggregate_bool_exp_covar_samp_arguments! - distinct: Boolean - filter: utility_lineup_repairs_bool_exp - predicate: float8_comparison_exp! -} - -input utility_lineup_repairs_aggregate_bool_exp_covar_samp_arguments { - X: utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_covar_samp_arguments_columns! - Y: utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_covar_samp_arguments_columns! -} - -input utility_lineup_repairs_aggregate_bool_exp_max { - arguments: utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_max_arguments_columns! - distinct: Boolean - filter: utility_lineup_repairs_bool_exp - predicate: float8_comparison_exp! -} - -input utility_lineup_repairs_aggregate_bool_exp_min { - arguments: utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_min_arguments_columns! - distinct: Boolean - filter: utility_lineup_repairs_bool_exp - predicate: float8_comparison_exp! -} - -input utility_lineup_repairs_aggregate_bool_exp_stddev_samp { - arguments: utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_stddev_samp_arguments_columns! - distinct: Boolean - filter: utility_lineup_repairs_bool_exp - predicate: float8_comparison_exp! -} - -input utility_lineup_repairs_aggregate_bool_exp_sum { - arguments: utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_sum_arguments_columns! - distinct: Boolean - filter: utility_lineup_repairs_bool_exp - predicate: float8_comparison_exp! -} - -input utility_lineup_repairs_aggregate_bool_exp_var_samp { - arguments: utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_var_samp_arguments_columns! - distinct: Boolean - filter: utility_lineup_repairs_bool_exp - predicate: float8_comparison_exp! -} - -""" -aggregate fields of "utility_lineup_repairs" -""" -type utility_lineup_repairs_aggregate_fields { - avg: utility_lineup_repairs_avg_fields - count(columns: [utility_lineup_repairs_select_column!], distinct: Boolean): Int! - max: utility_lineup_repairs_max_fields - min: utility_lineup_repairs_min_fields - stddev: utility_lineup_repairs_stddev_fields - stddev_pop: utility_lineup_repairs_stddev_pop_fields - stddev_samp: utility_lineup_repairs_stddev_samp_fields - sum: utility_lineup_repairs_sum_fields - var_pop: utility_lineup_repairs_var_pop_fields - var_samp: utility_lineup_repairs_var_samp_fields - variance: utility_lineup_repairs_variance_fields -} - -""" -order by aggregate values of table "utility_lineup_repairs" -""" -input utility_lineup_repairs_aggregate_order_by { - avg: utility_lineup_repairs_avg_order_by - count: order_by - max: utility_lineup_repairs_max_order_by - min: utility_lineup_repairs_min_order_by - stddev: utility_lineup_repairs_stddev_order_by - stddev_pop: utility_lineup_repairs_stddev_pop_order_by - stddev_samp: utility_lineup_repairs_stddev_samp_order_by - sum: utility_lineup_repairs_sum_order_by - var_pop: utility_lineup_repairs_var_pop_order_by - var_samp: utility_lineup_repairs_var_samp_order_by - variance: utility_lineup_repairs_variance_order_by -} - -""" -input type for inserting array relation for remote table "utility_lineup_repairs" -""" -input utility_lineup_repairs_arr_rel_insert_input { - data: [utility_lineup_repairs_insert_input!]! - - """upsert condition""" - on_conflict: utility_lineup_repairs_on_conflict -} - -"""aggregate avg on columns""" -type utility_lineup_repairs_avg_fields { - drift_distance: Float - requested_by_steam_id: Float -} - -""" -order by avg() on columns of table "utility_lineup_repairs" -""" -input utility_lineup_repairs_avg_order_by { - drift_distance: order_by - requested_by_steam_id: order_by -} - -""" -Boolean expression to filter rows from the table "utility_lineup_repairs". All fields are combined with a logical 'AND'. -""" -input utility_lineup_repairs_bool_exp { - _and: [utility_lineup_repairs_bool_exp!] - _not: utility_lineup_repairs_bool_exp - _or: [utility_lineup_repairs_bool_exp!] - created_at: timestamptz_comparison_exp - drift_distance: float8_comparison_exp - expires_at: timestamptz_comparison_exp - id: uuid_comparison_exp - repaired_at: timestamptz_comparison_exp - repaired_utility_lineup: utility_lineups_bool_exp - repaired_utility_lineup_id: uuid_comparison_exp - requested_by: players_bool_exp - requested_by_steam_id: bigint_comparison_exp - status: String_comparison_exp - utility_drift_scan: utility_drift_scans_bool_exp - utility_drift_scan_id: uuid_comparison_exp - utility_lineup: utility_lineups_bool_exp - utility_lineup_id: uuid_comparison_exp - utility_practice_session: utility_practice_sessions_bool_exp - utility_practice_session_id: uuid_comparison_exp -} - -""" -unique or primary key constraints on table "utility_lineup_repairs" -""" -enum utility_lineup_repairs_constraint { - """ - unique or primary key constraint on columns "utility_lineup_id", "requested_by_steam_id" - """ - utility_lineup_repairs_open_idx - - """ - unique or primary key constraint on columns "id" - """ - utility_lineup_repairs_pkey -} - -""" -input type for incrementing numeric columns in table "utility_lineup_repairs" -""" -input utility_lineup_repairs_inc_input { - drift_distance: float8 - requested_by_steam_id: bigint -} - -""" -input type for inserting data into table "utility_lineup_repairs" -""" -input utility_lineup_repairs_insert_input { - created_at: timestamptz - drift_distance: float8 - expires_at: timestamptz - id: uuid - repaired_at: timestamptz - repaired_utility_lineup: utility_lineups_obj_rel_insert_input - repaired_utility_lineup_id: uuid - requested_by: players_obj_rel_insert_input - requested_by_steam_id: bigint - status: String - utility_drift_scan: utility_drift_scans_obj_rel_insert_input - utility_drift_scan_id: uuid - utility_lineup: utility_lineups_obj_rel_insert_input - utility_lineup_id: uuid - utility_practice_session: utility_practice_sessions_obj_rel_insert_input - utility_practice_session_id: uuid -} - -"""aggregate max on columns""" -type utility_lineup_repairs_max_fields { - created_at: timestamptz - drift_distance: float8 - expires_at: timestamptz - id: uuid - repaired_at: timestamptz - repaired_utility_lineup_id: uuid - requested_by_steam_id: bigint - status: String - utility_drift_scan_id: uuid - utility_lineup_id: uuid - utility_practice_session_id: uuid -} - -""" -order by max() on columns of table "utility_lineup_repairs" -""" -input utility_lineup_repairs_max_order_by { - created_at: order_by - drift_distance: order_by - expires_at: order_by - id: order_by - repaired_at: order_by - repaired_utility_lineup_id: order_by - requested_by_steam_id: order_by - status: order_by - utility_drift_scan_id: order_by - utility_lineup_id: order_by - utility_practice_session_id: order_by -} - -"""aggregate min on columns""" -type utility_lineup_repairs_min_fields { - created_at: timestamptz - drift_distance: float8 - expires_at: timestamptz - id: uuid - repaired_at: timestamptz - repaired_utility_lineup_id: uuid - requested_by_steam_id: bigint - status: String - utility_drift_scan_id: uuid - utility_lineup_id: uuid - utility_practice_session_id: uuid -} - -""" -order by min() on columns of table "utility_lineup_repairs" -""" -input utility_lineup_repairs_min_order_by { - created_at: order_by - drift_distance: order_by - expires_at: order_by - id: order_by - repaired_at: order_by - repaired_utility_lineup_id: order_by - requested_by_steam_id: order_by - status: order_by - utility_drift_scan_id: order_by - utility_lineup_id: order_by - utility_practice_session_id: order_by -} - -""" -response of any mutation on the table "utility_lineup_repairs" -""" -type utility_lineup_repairs_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [utility_lineup_repairs!]! -} - -""" -on_conflict condition type for table "utility_lineup_repairs" -""" -input utility_lineup_repairs_on_conflict { - constraint: utility_lineup_repairs_constraint! - update_columns: [utility_lineup_repairs_update_column!]! = [] - where: utility_lineup_repairs_bool_exp -} - -"""Ordering options when selecting data from "utility_lineup_repairs".""" -input utility_lineup_repairs_order_by { - created_at: order_by - drift_distance: order_by - expires_at: order_by - id: order_by - repaired_at: order_by - repaired_utility_lineup: utility_lineups_order_by - repaired_utility_lineup_id: order_by - requested_by: players_order_by - requested_by_steam_id: order_by - status: order_by - utility_drift_scan: utility_drift_scans_order_by - utility_drift_scan_id: order_by - utility_lineup: utility_lineups_order_by - utility_lineup_id: order_by - utility_practice_session: utility_practice_sessions_order_by - utility_practice_session_id: order_by -} - -"""primary key columns input for table: utility_lineup_repairs""" -input utility_lineup_repairs_pk_columns_input { - id: uuid! -} - -""" -select columns of table "utility_lineup_repairs" -""" -enum utility_lineup_repairs_select_column { - """column name""" - created_at - - """column name""" - drift_distance - - """column name""" - expires_at - - """column name""" - id - - """column name""" - repaired_at - - """column name""" - repaired_utility_lineup_id - - """column name""" - requested_by_steam_id - - """column name""" - status - - """column name""" - utility_drift_scan_id - - """column name""" - utility_lineup_id - - """column name""" - utility_practice_session_id -} - -""" -select "utility_lineup_repairs_aggregate_bool_exp_avg_arguments_columns" columns of table "utility_lineup_repairs" -""" -enum utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_avg_arguments_columns { - """column name""" - drift_distance -} - -""" -select "utility_lineup_repairs_aggregate_bool_exp_corr_arguments_columns" columns of table "utility_lineup_repairs" -""" -enum utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_corr_arguments_columns { - """column name""" - drift_distance -} - -""" -select "utility_lineup_repairs_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "utility_lineup_repairs" -""" -enum utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_covar_samp_arguments_columns { - """column name""" - drift_distance -} - -""" -select "utility_lineup_repairs_aggregate_bool_exp_max_arguments_columns" columns of table "utility_lineup_repairs" -""" -enum utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_max_arguments_columns { - """column name""" - drift_distance -} - -""" -select "utility_lineup_repairs_aggregate_bool_exp_min_arguments_columns" columns of table "utility_lineup_repairs" -""" -enum utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_min_arguments_columns { - """column name""" - drift_distance -} - -""" -select "utility_lineup_repairs_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "utility_lineup_repairs" -""" -enum utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_stddev_samp_arguments_columns { - """column name""" - drift_distance -} - -""" -select "utility_lineup_repairs_aggregate_bool_exp_sum_arguments_columns" columns of table "utility_lineup_repairs" -""" -enum utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_sum_arguments_columns { - """column name""" - drift_distance -} - -""" -select "utility_lineup_repairs_aggregate_bool_exp_var_samp_arguments_columns" columns of table "utility_lineup_repairs" -""" -enum utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_var_samp_arguments_columns { - """column name""" - drift_distance -} - -""" -input type for updating data in table "utility_lineup_repairs" -""" -input utility_lineup_repairs_set_input { - created_at: timestamptz - drift_distance: float8 - expires_at: timestamptz - id: uuid - repaired_at: timestamptz - repaired_utility_lineup_id: uuid - requested_by_steam_id: bigint - status: String - utility_drift_scan_id: uuid - utility_lineup_id: uuid - utility_practice_session_id: uuid -} - -"""aggregate stddev on columns""" -type utility_lineup_repairs_stddev_fields { - drift_distance: Float - requested_by_steam_id: Float -} - -""" -order by stddev() on columns of table "utility_lineup_repairs" -""" -input utility_lineup_repairs_stddev_order_by { - drift_distance: order_by - requested_by_steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type utility_lineup_repairs_stddev_pop_fields { - drift_distance: Float - requested_by_steam_id: Float -} - -""" -order by stddev_pop() on columns of table "utility_lineup_repairs" -""" -input utility_lineup_repairs_stddev_pop_order_by { - drift_distance: order_by - requested_by_steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type utility_lineup_repairs_stddev_samp_fields { - drift_distance: Float - requested_by_steam_id: Float -} - -""" -order by stddev_samp() on columns of table "utility_lineup_repairs" -""" -input utility_lineup_repairs_stddev_samp_order_by { - drift_distance: order_by - requested_by_steam_id: order_by -} - -""" -Streaming cursor of the table "utility_lineup_repairs" -""" -input utility_lineup_repairs_stream_cursor_input { - """Stream column input with initial value""" - initial_value: utility_lineup_repairs_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input utility_lineup_repairs_stream_cursor_value_input { - created_at: timestamptz - drift_distance: float8 - expires_at: timestamptz - id: uuid - repaired_at: timestamptz - repaired_utility_lineup_id: uuid - requested_by_steam_id: bigint - status: String - utility_drift_scan_id: uuid - utility_lineup_id: uuid - utility_practice_session_id: uuid -} - -"""aggregate sum on columns""" -type utility_lineup_repairs_sum_fields { - drift_distance: float8 - requested_by_steam_id: bigint -} - -""" -order by sum() on columns of table "utility_lineup_repairs" -""" -input utility_lineup_repairs_sum_order_by { - drift_distance: order_by - requested_by_steam_id: order_by -} - -""" -update columns of table "utility_lineup_repairs" -""" -enum utility_lineup_repairs_update_column { - """column name""" - created_at - - """column name""" - drift_distance - - """column name""" - expires_at - - """column name""" - id - - """column name""" - repaired_at - - """column name""" - repaired_utility_lineup_id - - """column name""" - requested_by_steam_id - - """column name""" - status - - """column name""" - utility_drift_scan_id - - """column name""" - utility_lineup_id - - """column name""" - utility_practice_session_id -} - -input utility_lineup_repairs_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: utility_lineup_repairs_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_lineup_repairs_set_input - - """filter the rows which have to be updated""" - where: utility_lineup_repairs_bool_exp! -} - -"""aggregate var_pop on columns""" -type utility_lineup_repairs_var_pop_fields { - drift_distance: Float - requested_by_steam_id: Float -} - -""" -order by var_pop() on columns of table "utility_lineup_repairs" -""" -input utility_lineup_repairs_var_pop_order_by { - drift_distance: order_by - requested_by_steam_id: order_by -} - -"""aggregate var_samp on columns""" -type utility_lineup_repairs_var_samp_fields { - drift_distance: Float - requested_by_steam_id: Float -} - -""" -order by var_samp() on columns of table "utility_lineup_repairs" -""" -input utility_lineup_repairs_var_samp_order_by { - drift_distance: order_by - requested_by_steam_id: order_by -} - -"""aggregate variance on columns""" -type utility_lineup_repairs_variance_fields { - drift_distance: Float - requested_by_steam_id: Float -} - -""" -order by variance() on columns of table "utility_lineup_repairs" -""" -input utility_lineup_repairs_variance_order_by { - drift_distance: order_by - requested_by_steam_id: order_by -} - -""" -columns and relationships of "utility_lineup_votes" -""" -type utility_lineup_votes { - created_at: timestamptz! - - """An object relationship""" - player: players! - steam_id: bigint! - - """An object relationship""" - utility_lineup: utility_lineups! - utility_lineup_id: uuid! - vote: smallint! -} - -""" -aggregated selection of "utility_lineup_votes" -""" -type utility_lineup_votes_aggregate { - aggregate: utility_lineup_votes_aggregate_fields - nodes: [utility_lineup_votes!]! -} - -input utility_lineup_votes_aggregate_bool_exp { - count: utility_lineup_votes_aggregate_bool_exp_count -} - -input utility_lineup_votes_aggregate_bool_exp_count { - arguments: [utility_lineup_votes_select_column!] - distinct: Boolean - filter: utility_lineup_votes_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "utility_lineup_votes" -""" -type utility_lineup_votes_aggregate_fields { - avg: utility_lineup_votes_avg_fields - count(columns: [utility_lineup_votes_select_column!], distinct: Boolean): Int! - max: utility_lineup_votes_max_fields - min: utility_lineup_votes_min_fields - stddev: utility_lineup_votes_stddev_fields - stddev_pop: utility_lineup_votes_stddev_pop_fields - stddev_samp: utility_lineup_votes_stddev_samp_fields - sum: utility_lineup_votes_sum_fields - var_pop: utility_lineup_votes_var_pop_fields - var_samp: utility_lineup_votes_var_samp_fields - variance: utility_lineup_votes_variance_fields -} - -""" -order by aggregate values of table "utility_lineup_votes" -""" -input utility_lineup_votes_aggregate_order_by { - avg: utility_lineup_votes_avg_order_by - count: order_by - max: utility_lineup_votes_max_order_by - min: utility_lineup_votes_min_order_by - stddev: utility_lineup_votes_stddev_order_by - stddev_pop: utility_lineup_votes_stddev_pop_order_by - stddev_samp: utility_lineup_votes_stddev_samp_order_by - sum: utility_lineup_votes_sum_order_by - var_pop: utility_lineup_votes_var_pop_order_by - var_samp: utility_lineup_votes_var_samp_order_by - variance: utility_lineup_votes_variance_order_by -} - -""" -input type for inserting array relation for remote table "utility_lineup_votes" -""" -input utility_lineup_votes_arr_rel_insert_input { - data: [utility_lineup_votes_insert_input!]! - - """upsert condition""" - on_conflict: utility_lineup_votes_on_conflict -} - -"""aggregate avg on columns""" -type utility_lineup_votes_avg_fields { - steam_id: Float - vote: Float -} - -""" -order by avg() on columns of table "utility_lineup_votes" -""" -input utility_lineup_votes_avg_order_by { - steam_id: order_by - vote: order_by -} - -""" -Boolean expression to filter rows from the table "utility_lineup_votes". All fields are combined with a logical 'AND'. -""" -input utility_lineup_votes_bool_exp { - _and: [utility_lineup_votes_bool_exp!] - _not: utility_lineup_votes_bool_exp - _or: [utility_lineup_votes_bool_exp!] - created_at: timestamptz_comparison_exp - player: players_bool_exp - steam_id: bigint_comparison_exp - utility_lineup: utility_lineups_bool_exp - utility_lineup_id: uuid_comparison_exp - vote: smallint_comparison_exp -} - -""" -unique or primary key constraints on table "utility_lineup_votes" -""" -enum utility_lineup_votes_constraint { - """ - unique or primary key constraint on columns "steam_id", "utility_lineup_id" - """ - utility_lineup_votes_pkey -} - -""" -input type for incrementing numeric columns in table "utility_lineup_votes" -""" -input utility_lineup_votes_inc_input { - steam_id: bigint - vote: smallint -} - -""" -input type for inserting data into table "utility_lineup_votes" -""" -input utility_lineup_votes_insert_input { - created_at: timestamptz - player: players_obj_rel_insert_input - steam_id: bigint - utility_lineup: utility_lineups_obj_rel_insert_input - utility_lineup_id: uuid - vote: smallint -} - -"""aggregate max on columns""" -type utility_lineup_votes_max_fields { - created_at: timestamptz - steam_id: bigint - utility_lineup_id: uuid - vote: smallint -} - -""" -order by max() on columns of table "utility_lineup_votes" -""" -input utility_lineup_votes_max_order_by { - created_at: order_by - steam_id: order_by - utility_lineup_id: order_by - vote: order_by -} - -"""aggregate min on columns""" -type utility_lineup_votes_min_fields { - created_at: timestamptz - steam_id: bigint - utility_lineup_id: uuid - vote: smallint -} - -""" -order by min() on columns of table "utility_lineup_votes" -""" -input utility_lineup_votes_min_order_by { - created_at: order_by - steam_id: order_by - utility_lineup_id: order_by - vote: order_by -} - -""" -response of any mutation on the table "utility_lineup_votes" -""" -type utility_lineup_votes_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [utility_lineup_votes!]! -} - -""" -on_conflict condition type for table "utility_lineup_votes" -""" -input utility_lineup_votes_on_conflict { - constraint: utility_lineup_votes_constraint! - update_columns: [utility_lineup_votes_update_column!]! = [] - where: utility_lineup_votes_bool_exp -} - -"""Ordering options when selecting data from "utility_lineup_votes".""" -input utility_lineup_votes_order_by { - created_at: order_by - player: players_order_by - steam_id: order_by - utility_lineup: utility_lineups_order_by - utility_lineup_id: order_by - vote: order_by -} - -"""primary key columns input for table: utility_lineup_votes""" -input utility_lineup_votes_pk_columns_input { - steam_id: bigint! - utility_lineup_id: uuid! -} - -""" -select columns of table "utility_lineup_votes" -""" -enum utility_lineup_votes_select_column { - """column name""" - created_at - - """column name""" - steam_id - - """column name""" - utility_lineup_id - - """column name""" - vote -} - -""" -input type for updating data in table "utility_lineup_votes" -""" -input utility_lineup_votes_set_input { - created_at: timestamptz - steam_id: bigint - utility_lineup_id: uuid - vote: smallint -} - -"""aggregate stddev on columns""" -type utility_lineup_votes_stddev_fields { - steam_id: Float - vote: Float -} - -""" -order by stddev() on columns of table "utility_lineup_votes" -""" -input utility_lineup_votes_stddev_order_by { - steam_id: order_by - vote: order_by -} - -"""aggregate stddev_pop on columns""" -type utility_lineup_votes_stddev_pop_fields { - steam_id: Float - vote: Float -} - -""" -order by stddev_pop() on columns of table "utility_lineup_votes" -""" -input utility_lineup_votes_stddev_pop_order_by { - steam_id: order_by - vote: order_by -} - -"""aggregate stddev_samp on columns""" -type utility_lineup_votes_stddev_samp_fields { - steam_id: Float - vote: Float -} - -""" -order by stddev_samp() on columns of table "utility_lineup_votes" -""" -input utility_lineup_votes_stddev_samp_order_by { - steam_id: order_by - vote: order_by -} - -""" -Streaming cursor of the table "utility_lineup_votes" -""" -input utility_lineup_votes_stream_cursor_input { - """Stream column input with initial value""" - initial_value: utility_lineup_votes_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input utility_lineup_votes_stream_cursor_value_input { - created_at: timestamptz - steam_id: bigint - utility_lineup_id: uuid - vote: smallint -} - -"""aggregate sum on columns""" -type utility_lineup_votes_sum_fields { - steam_id: bigint - vote: smallint -} - -""" -order by sum() on columns of table "utility_lineup_votes" -""" -input utility_lineup_votes_sum_order_by { - steam_id: order_by - vote: order_by -} - -""" -update columns of table "utility_lineup_votes" -""" -enum utility_lineup_votes_update_column { - """column name""" - created_at - - """column name""" - steam_id - - """column name""" - utility_lineup_id - - """column name""" - vote -} - -input utility_lineup_votes_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: utility_lineup_votes_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_lineup_votes_set_input - - """filter the rows which have to be updated""" - where: utility_lineup_votes_bool_exp! -} - -"""aggregate var_pop on columns""" -type utility_lineup_votes_var_pop_fields { - steam_id: Float - vote: Float -} - -""" -order by var_pop() on columns of table "utility_lineup_votes" -""" -input utility_lineup_votes_var_pop_order_by { - steam_id: order_by - vote: order_by -} - -"""aggregate var_samp on columns""" -type utility_lineup_votes_var_samp_fields { - steam_id: Float - vote: Float -} - -""" -order by var_samp() on columns of table "utility_lineup_votes" -""" -input utility_lineup_votes_var_samp_order_by { - steam_id: order_by - vote: order_by -} - -"""aggregate variance on columns""" -type utility_lineup_votes_variance_fields { - steam_id: Float - vote: Float -} - -""" -order by variance() on columns of table "utility_lineup_votes" -""" -input utility_lineup_votes_variance_order_by { - steam_id: order_by - vote: order_by -} - -""" -columns and relationships of "utility_lineups" -""" -type utility_lineups { - aim_tolerance: float8! - archived_at: timestamptz - - """An object relationship""" - author: players! - author_steam_id: bigint! - - """ - A computed field, executes function "can_edit_utility_lineup" - """ - can_edit: Boolean - - """ - A computed field, executes function "can_view_utility_lineup" - """ - can_view: Boolean - - """An array relationship""" - collection_items( - """distinct select on columns""" - distinct_on: [utility_collection_items_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: [utility_collection_items_order_by!] - - """filter the rows returned""" - where: utility_collection_items_bool_exp - ): [utility_collection_items!]! - - """An aggregate relationship""" - collection_items_aggregate( - """distinct select on columns""" - distinct_on: [utility_collection_items_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: [utility_collection_items_order_by!] - - """filter the rows returned""" - where: utility_collection_items_bool_exp - ): utility_collection_items_aggregate! - confidence: String! - created_at: timestamptz! - description: String - - """ - A computed field, executes function "utility_lineup_difficulty" - """ - difficulty: String - downvotes: Int! - external_id: String - eye_z: float8 - - """An array relationship""" - favorited_by( - """distinct select on columns""" - distinct_on: [utility_lineup_favorites_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: [utility_lineup_favorites_order_by!] - - """filter the rows returned""" - where: utility_lineup_favorites_bool_exp - ): [utility_lineup_favorites!]! - - """An aggregate relationship""" - favorited_by_aggregate( - """distinct select on columns""" - distinct_on: [utility_lineup_favorites_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: [utility_lineup_favorites_order_by!] - - """filter the rows returned""" - where: utility_lineup_favorites_bool_exp - ): utility_lineup_favorites_aggregate! - favorites: Int! - flight_time_ms: Int - - """An object relationship""" - forked_from: utility_lineups - forked_from_utility_lineup_id: uuid - id: uuid! - initial_pos_x: float8 - initial_pos_y: float8 - initial_pos_z: float8 - initial_vel_x: float8 - initial_vel_y: float8 - initial_vel_z: float8 - - """ - A computed field, executes function "utility_lineup_is_favorited" - """ - is_favorited: Boolean - jump_throw_bind: Boolean! - land_x: float8! - land_y: float8! - land_z: float8! - lineup_bucket: String - map_name: String! - - """ - A computed field, executes function "utility_lineup_my_vote" - """ - my_vote: smallint - name: String! - origin_source: e_utility_sources_enum! - origin_x: float8! - origin_y: float8! - origin_z: float8! - practice_attempts: Int! - practice_players: Int! - practice_successes: Int! - preview_duration_ms: Int - preview_file: String - preview_rendered_at: timestamptz - preview_thumbnail: String - - """ - A computed field, executes function "utility_lineup_preview_thumbnail_url" - """ - preview_thumbnail_url: String - - """ - A computed field, executes function "utility_lineup_preview_url" - """ - preview_url: String - - """An array relationship""" - progress( - """distinct select on columns""" - distinct_on: [utility_lineup_progress_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: [utility_lineup_progress_order_by!] - - """filter the rows returned""" - where: utility_lineup_progress_bool_exp - ): [utility_lineup_progress!]! - - """An aggregate relationship""" - progress_aggregate( - """distinct select on columns""" - distinct_on: [utility_lineup_progress_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: [utility_lineup_progress_order_by!] - - """filter the rows returned""" - where: utility_lineup_progress_bool_exp - ): utility_lineup_progress_aggregate! - public_requested_at: timestamptz - public_review_note: String - public_reviewed_at: timestamptz - public_reviewed_by: bigint - - """An array relationship""" - renders( - """distinct select on columns""" - distinct_on: [utility_lineup_renders_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: [utility_lineup_renders_order_by!] - - """filter the rows returned""" - where: utility_lineup_renders_bool_exp - ): [utility_lineup_renders!]! - - """An aggregate relationship""" - renders_aggregate( - """distinct select on columns""" - distinct_on: [utility_lineup_renders_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: [utility_lineup_renders_order_by!] - - """filter the rows returned""" - where: utility_lineup_renders_bool_exp - ): utility_lineup_renders_aggregate! - - """An array relationship""" - repairs( - """distinct select on columns""" - distinct_on: [utility_lineup_repairs_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: [utility_lineup_repairs_order_by!] - - """filter the rows returned""" - where: utility_lineup_repairs_bool_exp - ): [utility_lineup_repairs!]! - - """An aggregate relationship""" - repairs_aggregate( - """distinct select on columns""" - distinct_on: [utility_lineup_repairs_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: [utility_lineup_repairs_order_by!] - - """filter the rows returned""" - where: utility_lineup_repairs_bool_exp - ): utility_lineup_repairs_aggregate! - side: e_sides_enum! - source_grenade_id: Int - - """An object relationship""" - source_match: matches - source_match_id: uuid - - """An object relationship""" - source_match_map: match_maps - source_match_map_id: uuid - source_url: String - tags: [String!]! - - """An object relationship""" - team: teams - team_id: uuid - technique: e_utility_techniques_enum! - throw_strength: e_utility_throw_strengths_enum - trajectory_file: String - trajectory_preview( - """JSON select path""" - path: String - ): jsonb - trajectory_size: Int - updated_at: timestamptz! - upvotes: Int! - utility_type: e_utility_types_enum! - verified_at: timestamptz - view_pitch: float8! - view_pitch_delta: float8 - view_yaw: float8! - view_yaw_delta: float8 - visibility: e_utility_visibility_enum! - - """An array relationship""" - votes( - """distinct select on columns""" - distinct_on: [utility_lineup_votes_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: [utility_lineup_votes_order_by!] - - """filter the rows returned""" - where: utility_lineup_votes_bool_exp - ): [utility_lineup_votes!]! - - """An aggregate relationship""" - votes_aggregate( - """distinct select on columns""" - distinct_on: [utility_lineup_votes_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: [utility_lineup_votes_order_by!] - - """filter the rows returned""" - where: utility_lineup_votes_bool_exp - ): utility_lineup_votes_aggregate! - workshop_map_id: String -} - -""" -aggregated selection of "utility_lineups" -""" -type utility_lineups_aggregate { - aggregate: utility_lineups_aggregate_fields - nodes: [utility_lineups!]! -} - -input utility_lineups_aggregate_bool_exp { - avg: utility_lineups_aggregate_bool_exp_avg - bool_and: utility_lineups_aggregate_bool_exp_bool_and - bool_or: utility_lineups_aggregate_bool_exp_bool_or - corr: utility_lineups_aggregate_bool_exp_corr - count: utility_lineups_aggregate_bool_exp_count - covar_samp: utility_lineups_aggregate_bool_exp_covar_samp - max: utility_lineups_aggregate_bool_exp_max - min: utility_lineups_aggregate_bool_exp_min - stddev_samp: utility_lineups_aggregate_bool_exp_stddev_samp - sum: utility_lineups_aggregate_bool_exp_sum - var_samp: utility_lineups_aggregate_bool_exp_var_samp -} - -input utility_lineups_aggregate_bool_exp_avg { - arguments: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_avg_arguments_columns! - distinct: Boolean - filter: utility_lineups_bool_exp - predicate: float8_comparison_exp! -} - -input utility_lineups_aggregate_bool_exp_bool_and { - arguments: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_bool_and_arguments_columns! - distinct: Boolean - filter: utility_lineups_bool_exp - predicate: Boolean_comparison_exp! -} - -input utility_lineups_aggregate_bool_exp_bool_or { - arguments: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_bool_or_arguments_columns! - distinct: Boolean - filter: utility_lineups_bool_exp - predicate: Boolean_comparison_exp! -} - -input utility_lineups_aggregate_bool_exp_corr { - arguments: utility_lineups_aggregate_bool_exp_corr_arguments! - distinct: Boolean - filter: utility_lineups_bool_exp - predicate: float8_comparison_exp! -} - -input utility_lineups_aggregate_bool_exp_corr_arguments { - X: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_corr_arguments_columns! - Y: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_corr_arguments_columns! -} - -input utility_lineups_aggregate_bool_exp_count { - arguments: [utility_lineups_select_column!] - distinct: Boolean - filter: utility_lineups_bool_exp - predicate: Int_comparison_exp! -} - -input utility_lineups_aggregate_bool_exp_covar_samp { - arguments: utility_lineups_aggregate_bool_exp_covar_samp_arguments! - distinct: Boolean - filter: utility_lineups_bool_exp - predicate: float8_comparison_exp! -} - -input utility_lineups_aggregate_bool_exp_covar_samp_arguments { - X: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_covar_samp_arguments_columns! - Y: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_covar_samp_arguments_columns! -} - -input utility_lineups_aggregate_bool_exp_max { - arguments: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_max_arguments_columns! - distinct: Boolean - filter: utility_lineups_bool_exp - predicate: float8_comparison_exp! -} - -input utility_lineups_aggregate_bool_exp_min { - arguments: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_min_arguments_columns! - distinct: Boolean - filter: utility_lineups_bool_exp - predicate: float8_comparison_exp! -} - -input utility_lineups_aggregate_bool_exp_stddev_samp { - arguments: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_stddev_samp_arguments_columns! - distinct: Boolean - filter: utility_lineups_bool_exp - predicate: float8_comparison_exp! -} - -input utility_lineups_aggregate_bool_exp_sum { - arguments: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_sum_arguments_columns! - distinct: Boolean - filter: utility_lineups_bool_exp - predicate: float8_comparison_exp! -} - -input utility_lineups_aggregate_bool_exp_var_samp { - arguments: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_var_samp_arguments_columns! - distinct: Boolean - filter: utility_lineups_bool_exp - predicate: float8_comparison_exp! -} - -""" -aggregate fields of "utility_lineups" -""" -type utility_lineups_aggregate_fields { - avg: utility_lineups_avg_fields - count(columns: [utility_lineups_select_column!], distinct: Boolean): Int! - max: utility_lineups_max_fields - min: utility_lineups_min_fields - stddev: utility_lineups_stddev_fields - stddev_pop: utility_lineups_stddev_pop_fields - stddev_samp: utility_lineups_stddev_samp_fields - sum: utility_lineups_sum_fields - var_pop: utility_lineups_var_pop_fields - var_samp: utility_lineups_var_samp_fields - variance: utility_lineups_variance_fields -} - -""" -order by aggregate values of table "utility_lineups" -""" -input utility_lineups_aggregate_order_by { - avg: utility_lineups_avg_order_by - count: order_by - max: utility_lineups_max_order_by - min: utility_lineups_min_order_by - stddev: utility_lineups_stddev_order_by - stddev_pop: utility_lineups_stddev_pop_order_by - stddev_samp: utility_lineups_stddev_samp_order_by - sum: utility_lineups_sum_order_by - var_pop: utility_lineups_var_pop_order_by - var_samp: utility_lineups_var_samp_order_by - variance: utility_lineups_variance_order_by -} - -"""append existing jsonb value of filtered columns with new jsonb value""" -input utility_lineups_append_input { - trajectory_preview: jsonb -} - -""" -input type for inserting array relation for remote table "utility_lineups" -""" -input utility_lineups_arr_rel_insert_input { - data: [utility_lineups_insert_input!]! - - """upsert condition""" - on_conflict: utility_lineups_on_conflict -} - -"""aggregate avg on columns""" -type utility_lineups_avg_fields { - aim_tolerance: Float - author_steam_id: Float - downvotes: Float - eye_z: Float - favorites: Float - flight_time_ms: Float - initial_pos_x: Float - initial_pos_y: Float - initial_pos_z: Float - initial_vel_x: Float - initial_vel_y: Float - initial_vel_z: Float - land_x: Float - land_y: Float - land_z: Float - - """ - A computed field, executes function "utility_lineup_my_vote" - """ - my_vote: smallint - origin_x: Float - origin_y: Float - origin_z: Float - practice_attempts: Float - practice_players: Float - practice_successes: Float - preview_duration_ms: Float - public_reviewed_by: Float - source_grenade_id: Float - trajectory_size: Float - upvotes: Float - view_pitch: Float - view_pitch_delta: Float - view_yaw: Float - view_yaw_delta: Float -} - -""" -order by avg() on columns of table "utility_lineups" -""" -input utility_lineups_avg_order_by { - aim_tolerance: order_by - author_steam_id: order_by - downvotes: order_by - eye_z: order_by - favorites: order_by - flight_time_ms: order_by - initial_pos_x: order_by - initial_pos_y: order_by - initial_pos_z: order_by - initial_vel_x: order_by - initial_vel_y: order_by - initial_vel_z: order_by - land_x: order_by - land_y: order_by - land_z: order_by - origin_x: order_by - origin_y: order_by - origin_z: order_by - practice_attempts: order_by - practice_players: order_by - practice_successes: order_by - preview_duration_ms: order_by - public_reviewed_by: order_by - source_grenade_id: order_by - trajectory_size: order_by - upvotes: order_by - view_pitch: order_by - view_pitch_delta: order_by - view_yaw: order_by - view_yaw_delta: order_by -} - -""" -Boolean expression to filter rows from the table "utility_lineups". All fields are combined with a logical 'AND'. -""" -input utility_lineups_bool_exp { - _and: [utility_lineups_bool_exp!] - _not: utility_lineups_bool_exp - _or: [utility_lineups_bool_exp!] - aim_tolerance: float8_comparison_exp - archived_at: timestamptz_comparison_exp - author: players_bool_exp - author_steam_id: bigint_comparison_exp - can_edit: Boolean_comparison_exp - can_view: Boolean_comparison_exp - collection_items: utility_collection_items_bool_exp - collection_items_aggregate: utility_collection_items_aggregate_bool_exp - confidence: String_comparison_exp - created_at: timestamptz_comparison_exp - description: String_comparison_exp - difficulty: String_comparison_exp - downvotes: Int_comparison_exp - external_id: String_comparison_exp - eye_z: float8_comparison_exp - favorited_by: utility_lineup_favorites_bool_exp - favorited_by_aggregate: utility_lineup_favorites_aggregate_bool_exp - favorites: Int_comparison_exp - flight_time_ms: Int_comparison_exp - forked_from: utility_lineups_bool_exp - forked_from_utility_lineup_id: uuid_comparison_exp - id: uuid_comparison_exp - initial_pos_x: float8_comparison_exp - initial_pos_y: float8_comparison_exp - initial_pos_z: float8_comparison_exp - initial_vel_x: float8_comparison_exp - initial_vel_y: float8_comparison_exp - initial_vel_z: float8_comparison_exp - is_favorited: Boolean_comparison_exp - jump_throw_bind: Boolean_comparison_exp - land_x: float8_comparison_exp - land_y: float8_comparison_exp - land_z: float8_comparison_exp - lineup_bucket: String_comparison_exp - map_name: String_comparison_exp - my_vote: smallint_comparison_exp - name: String_comparison_exp - origin_source: e_utility_sources_enum_comparison_exp - origin_x: float8_comparison_exp - origin_y: float8_comparison_exp - origin_z: float8_comparison_exp - practice_attempts: Int_comparison_exp - practice_players: Int_comparison_exp - practice_successes: Int_comparison_exp - preview_duration_ms: Int_comparison_exp - preview_file: String_comparison_exp - preview_rendered_at: timestamptz_comparison_exp - preview_thumbnail: String_comparison_exp - preview_thumbnail_url: String_comparison_exp - preview_url: String_comparison_exp - progress: utility_lineup_progress_bool_exp - progress_aggregate: utility_lineup_progress_aggregate_bool_exp - public_requested_at: timestamptz_comparison_exp - public_review_note: String_comparison_exp - public_reviewed_at: timestamptz_comparison_exp - public_reviewed_by: bigint_comparison_exp - renders: utility_lineup_renders_bool_exp - renders_aggregate: utility_lineup_renders_aggregate_bool_exp - repairs: utility_lineup_repairs_bool_exp - repairs_aggregate: utility_lineup_repairs_aggregate_bool_exp - side: e_sides_enum_comparison_exp - source_grenade_id: Int_comparison_exp - source_match: matches_bool_exp - source_match_id: uuid_comparison_exp - source_match_map: match_maps_bool_exp - source_match_map_id: uuid_comparison_exp - source_url: String_comparison_exp - tags: String_array_comparison_exp - team: teams_bool_exp - team_id: uuid_comparison_exp - technique: e_utility_techniques_enum_comparison_exp - throw_strength: e_utility_throw_strengths_enum_comparison_exp - trajectory_file: String_comparison_exp - trajectory_preview: jsonb_comparison_exp - trajectory_size: Int_comparison_exp - updated_at: timestamptz_comparison_exp - upvotes: Int_comparison_exp - utility_type: e_utility_types_enum_comparison_exp - verified_at: timestamptz_comparison_exp - view_pitch: float8_comparison_exp - view_pitch_delta: float8_comparison_exp - view_yaw: float8_comparison_exp - view_yaw_delta: float8_comparison_exp - visibility: e_utility_visibility_enum_comparison_exp - votes: utility_lineup_votes_bool_exp - votes_aggregate: utility_lineup_votes_aggregate_bool_exp - workshop_map_id: String_comparison_exp -} - -""" -unique or primary key constraints on table "utility_lineups" -""" -enum utility_lineups_constraint { - """ - unique or primary key constraint on columns "origin_source", "external_id" - """ - utility_lineups_external_idx - - """ - unique or primary key constraint on columns "id" - """ - utility_lineups_pkey -} - -""" -delete the field or element with specified path (for JSON arrays, negative integers count from the end) -""" -input utility_lineups_delete_at_path_input { - trajectory_preview: [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 utility_lineups_delete_elem_input { - trajectory_preview: Int -} - -""" -delete key/value pair or string element. key/value pairs are matched based on their key value -""" -input utility_lineups_delete_key_input { - trajectory_preview: String -} - -""" -input type for incrementing numeric columns in table "utility_lineups" -""" -input utility_lineups_inc_input { - aim_tolerance: float8 - author_steam_id: bigint - downvotes: Int - eye_z: float8 - favorites: Int - flight_time_ms: Int - initial_pos_x: float8 - initial_pos_y: float8 - initial_pos_z: float8 - initial_vel_x: float8 - initial_vel_y: float8 - initial_vel_z: float8 - land_x: float8 - land_y: float8 - land_z: float8 - origin_x: float8 - origin_y: float8 - origin_z: float8 - practice_attempts: Int - practice_players: Int - practice_successes: Int - preview_duration_ms: Int - public_reviewed_by: bigint - source_grenade_id: Int - trajectory_size: Int - upvotes: Int - view_pitch: float8 - view_pitch_delta: float8 - view_yaw: float8 - view_yaw_delta: float8 -} - -""" -input type for inserting data into table "utility_lineups" -""" -input utility_lineups_insert_input { - aim_tolerance: float8 - archived_at: timestamptz - author: players_obj_rel_insert_input - author_steam_id: bigint - collection_items: utility_collection_items_arr_rel_insert_input - confidence: String - created_at: timestamptz - description: String - downvotes: Int - external_id: String - eye_z: float8 - favorited_by: utility_lineup_favorites_arr_rel_insert_input - favorites: Int - flight_time_ms: Int - forked_from: utility_lineups_obj_rel_insert_input - forked_from_utility_lineup_id: uuid - id: uuid - initial_pos_x: float8 - initial_pos_y: float8 - initial_pos_z: float8 - initial_vel_x: float8 - initial_vel_y: float8 - initial_vel_z: float8 - jump_throw_bind: Boolean - land_x: float8 - land_y: float8 - land_z: float8 - map_name: String - name: String - origin_source: e_utility_sources_enum - origin_x: float8 - origin_y: float8 - origin_z: float8 - practice_attempts: Int - practice_players: Int - practice_successes: Int - preview_duration_ms: Int - preview_file: String - preview_rendered_at: timestamptz - preview_thumbnail: String - progress: utility_lineup_progress_arr_rel_insert_input - public_requested_at: timestamptz - public_review_note: String - public_reviewed_at: timestamptz - public_reviewed_by: bigint - renders: utility_lineup_renders_arr_rel_insert_input - repairs: utility_lineup_repairs_arr_rel_insert_input - side: e_sides_enum - source_grenade_id: Int - source_match: matches_obj_rel_insert_input - source_match_id: uuid - source_match_map: match_maps_obj_rel_insert_input - source_match_map_id: uuid - source_url: String - tags: [String!] - team: teams_obj_rel_insert_input - team_id: uuid - technique: e_utility_techniques_enum - throw_strength: e_utility_throw_strengths_enum - trajectory_file: String - trajectory_preview: jsonb - trajectory_size: Int - updated_at: timestamptz - upvotes: Int - utility_type: e_utility_types_enum - verified_at: timestamptz - view_pitch: float8 - view_pitch_delta: float8 - view_yaw: float8 - view_yaw_delta: float8 - visibility: e_utility_visibility_enum - votes: utility_lineup_votes_arr_rel_insert_input - workshop_map_id: String -} - -"""aggregate max on columns""" -type utility_lineups_max_fields { - aim_tolerance: float8 - archived_at: timestamptz - author_steam_id: bigint - confidence: String - created_at: timestamptz - description: String - - """ - A computed field, executes function "utility_lineup_difficulty" - """ - difficulty: String - downvotes: Int - external_id: String - eye_z: float8 - favorites: Int - flight_time_ms: Int - forked_from_utility_lineup_id: uuid - id: uuid - initial_pos_x: float8 - initial_pos_y: float8 - initial_pos_z: float8 - initial_vel_x: float8 - initial_vel_y: float8 - initial_vel_z: float8 - land_x: float8 - land_y: float8 - land_z: float8 - lineup_bucket: String - map_name: String - - """ - A computed field, executes function "utility_lineup_my_vote" - """ - my_vote: smallint - name: String - origin_x: float8 - origin_y: float8 - origin_z: float8 - practice_attempts: Int - practice_players: Int - practice_successes: Int - preview_duration_ms: Int - preview_file: String - preview_rendered_at: timestamptz - preview_thumbnail: String - - """ - A computed field, executes function "utility_lineup_preview_thumbnail_url" - """ - preview_thumbnail_url: String - - """ - A computed field, executes function "utility_lineup_preview_url" - """ - preview_url: String - public_requested_at: timestamptz - public_review_note: String - public_reviewed_at: timestamptz - public_reviewed_by: bigint - source_grenade_id: Int - source_match_id: uuid - source_match_map_id: uuid - source_url: String - tags: [String!] - team_id: uuid - trajectory_file: String - trajectory_size: Int - updated_at: timestamptz - upvotes: Int - verified_at: timestamptz - view_pitch: float8 - view_pitch_delta: float8 - view_yaw: float8 - view_yaw_delta: float8 - workshop_map_id: String -} - -""" -order by max() on columns of table "utility_lineups" -""" -input utility_lineups_max_order_by { - aim_tolerance: order_by - archived_at: order_by - author_steam_id: order_by - confidence: order_by - created_at: order_by - description: order_by - downvotes: order_by - external_id: order_by - eye_z: order_by - favorites: order_by - flight_time_ms: order_by - forked_from_utility_lineup_id: order_by - id: order_by - initial_pos_x: order_by - initial_pos_y: order_by - initial_pos_z: order_by - initial_vel_x: order_by - initial_vel_y: order_by - initial_vel_z: order_by - land_x: order_by - land_y: order_by - land_z: order_by - lineup_bucket: order_by - map_name: order_by - name: order_by - origin_x: order_by - origin_y: order_by - origin_z: order_by - practice_attempts: order_by - practice_players: order_by - practice_successes: order_by - preview_duration_ms: order_by - preview_file: order_by - preview_rendered_at: order_by - preview_thumbnail: order_by - public_requested_at: order_by - public_review_note: order_by - public_reviewed_at: order_by - public_reviewed_by: order_by - source_grenade_id: order_by - source_match_id: order_by - source_match_map_id: order_by - source_url: order_by - tags: order_by - team_id: order_by - trajectory_file: order_by - trajectory_size: order_by - updated_at: order_by - upvotes: order_by - verified_at: order_by - view_pitch: order_by - view_pitch_delta: order_by - view_yaw: order_by - view_yaw_delta: order_by - workshop_map_id: order_by -} - -"""aggregate min on columns""" -type utility_lineups_min_fields { - aim_tolerance: float8 - archived_at: timestamptz - author_steam_id: bigint - confidence: String - created_at: timestamptz - description: String - - """ - A computed field, executes function "utility_lineup_difficulty" - """ - difficulty: String - downvotes: Int - external_id: String - eye_z: float8 - favorites: Int - flight_time_ms: Int - forked_from_utility_lineup_id: uuid - id: uuid - initial_pos_x: float8 - initial_pos_y: float8 - initial_pos_z: float8 - initial_vel_x: float8 - initial_vel_y: float8 - initial_vel_z: float8 - land_x: float8 - land_y: float8 - land_z: float8 - lineup_bucket: String - map_name: String - - """ - A computed field, executes function "utility_lineup_my_vote" - """ - my_vote: smallint - name: String - origin_x: float8 - origin_y: float8 - origin_z: float8 - practice_attempts: Int - practice_players: Int - practice_successes: Int - preview_duration_ms: Int - preview_file: String - preview_rendered_at: timestamptz - preview_thumbnail: String - - """ - A computed field, executes function "utility_lineup_preview_thumbnail_url" - """ - preview_thumbnail_url: String - - """ - A computed field, executes function "utility_lineup_preview_url" - """ - preview_url: String - public_requested_at: timestamptz - public_review_note: String - public_reviewed_at: timestamptz - public_reviewed_by: bigint - source_grenade_id: Int - source_match_id: uuid - source_match_map_id: uuid - source_url: String - tags: [String!] - team_id: uuid - trajectory_file: String - trajectory_size: Int - updated_at: timestamptz - upvotes: Int - verified_at: timestamptz - view_pitch: float8 - view_pitch_delta: float8 - view_yaw: float8 - view_yaw_delta: float8 - workshop_map_id: String -} - -""" -order by min() on columns of table "utility_lineups" -""" -input utility_lineups_min_order_by { - aim_tolerance: order_by - archived_at: order_by - author_steam_id: order_by - confidence: order_by - created_at: order_by - description: order_by - downvotes: order_by - external_id: order_by - eye_z: order_by - favorites: order_by - flight_time_ms: order_by - forked_from_utility_lineup_id: order_by - id: order_by - initial_pos_x: order_by - initial_pos_y: order_by - initial_pos_z: order_by - initial_vel_x: order_by - initial_vel_y: order_by - initial_vel_z: order_by - land_x: order_by - land_y: order_by - land_z: order_by - lineup_bucket: order_by - map_name: order_by - name: order_by - origin_x: order_by - origin_y: order_by - origin_z: order_by - practice_attempts: order_by - practice_players: order_by - practice_successes: order_by - preview_duration_ms: order_by - preview_file: order_by - preview_rendered_at: order_by - preview_thumbnail: order_by - public_requested_at: order_by - public_review_note: order_by - public_reviewed_at: order_by - public_reviewed_by: order_by - source_grenade_id: order_by - source_match_id: order_by - source_match_map_id: order_by - source_url: order_by - tags: order_by - team_id: order_by - trajectory_file: order_by - trajectory_size: order_by - updated_at: order_by - upvotes: order_by - verified_at: order_by - view_pitch: order_by - view_pitch_delta: order_by - view_yaw: order_by - view_yaw_delta: order_by - workshop_map_id: order_by -} - -""" -response of any mutation on the table "utility_lineups" -""" -type utility_lineups_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [utility_lineups!]! -} - -""" -input type for inserting object relation for remote table "utility_lineups" -""" -input utility_lineups_obj_rel_insert_input { - data: utility_lineups_insert_input! - - """upsert condition""" - on_conflict: utility_lineups_on_conflict -} - -""" -on_conflict condition type for table "utility_lineups" -""" -input utility_lineups_on_conflict { - constraint: utility_lineups_constraint! - update_columns: [utility_lineups_update_column!]! = [] - where: utility_lineups_bool_exp -} - -"""Ordering options when selecting data from "utility_lineups".""" -input utility_lineups_order_by { - aim_tolerance: order_by - archived_at: order_by - author: players_order_by - author_steam_id: order_by - can_edit: order_by - can_view: order_by - collection_items_aggregate: utility_collection_items_aggregate_order_by - confidence: order_by - created_at: order_by - description: order_by - difficulty: order_by - downvotes: order_by - external_id: order_by - eye_z: order_by - favorited_by_aggregate: utility_lineup_favorites_aggregate_order_by - favorites: order_by - flight_time_ms: order_by - forked_from: utility_lineups_order_by - forked_from_utility_lineup_id: order_by - id: order_by - initial_pos_x: order_by - initial_pos_y: order_by - initial_pos_z: order_by - initial_vel_x: order_by - initial_vel_y: order_by - initial_vel_z: order_by - is_favorited: order_by - jump_throw_bind: order_by - land_x: order_by - land_y: order_by - land_z: order_by - lineup_bucket: order_by - map_name: order_by - my_vote: order_by - name: order_by - origin_source: order_by - origin_x: order_by - origin_y: order_by - origin_z: order_by - practice_attempts: order_by - practice_players: order_by - practice_successes: order_by - preview_duration_ms: order_by - preview_file: order_by - preview_rendered_at: order_by - preview_thumbnail: order_by - preview_thumbnail_url: order_by - preview_url: order_by - progress_aggregate: utility_lineup_progress_aggregate_order_by - public_requested_at: order_by - public_review_note: order_by - public_reviewed_at: order_by - public_reviewed_by: order_by - renders_aggregate: utility_lineup_renders_aggregate_order_by - repairs_aggregate: utility_lineup_repairs_aggregate_order_by - side: order_by - source_grenade_id: order_by - source_match: matches_order_by - source_match_id: order_by - source_match_map: match_maps_order_by - source_match_map_id: order_by - source_url: order_by - tags: order_by - team: teams_order_by - team_id: order_by - technique: order_by - throw_strength: order_by - trajectory_file: order_by - trajectory_preview: order_by - trajectory_size: order_by - updated_at: order_by - upvotes: order_by - utility_type: order_by - verified_at: order_by - view_pitch: order_by - view_pitch_delta: order_by - view_yaw: order_by - view_yaw_delta: order_by - visibility: order_by - votes_aggregate: utility_lineup_votes_aggregate_order_by - workshop_map_id: order_by -} - -"""primary key columns input for table: utility_lineups""" -input utility_lineups_pk_columns_input { - id: uuid! -} - -"""prepend existing jsonb value of filtered columns with new jsonb value""" -input utility_lineups_prepend_input { - trajectory_preview: jsonb -} - -""" -select columns of table "utility_lineups" -""" -enum utility_lineups_select_column { - """column name""" - aim_tolerance - - """column name""" - archived_at - - """column name""" - author_steam_id - - """column name""" - confidence - - """column name""" - created_at - - """column name""" - description - - """column name""" - downvotes - - """column name""" - external_id - - """column name""" - eye_z - - """column name""" - favorites - - """column name""" - flight_time_ms - - """column name""" - forked_from_utility_lineup_id - - """column name""" - id - - """column name""" - initial_pos_x - - """column name""" - initial_pos_y - - """column name""" - initial_pos_z - - """column name""" - initial_vel_x - - """column name""" - initial_vel_y - - """column name""" - initial_vel_z - - """column name""" - jump_throw_bind - - """column name""" - land_x - - """column name""" - land_y - - """column name""" - land_z - - """column name""" - lineup_bucket - - """column name""" - map_name - - """column name""" - name - - """column name""" - origin_source - - """column name""" - origin_x - - """column name""" - origin_y - - """column name""" - origin_z - - """column name""" - practice_attempts - - """column name""" - practice_players - - """column name""" - practice_successes - - """column name""" - preview_duration_ms - - """column name""" - preview_file - - """column name""" - preview_rendered_at - - """column name""" - preview_thumbnail - - """column name""" - public_requested_at - - """column name""" - public_review_note - - """column name""" - public_reviewed_at - - """column name""" - public_reviewed_by - - """column name""" - side - - """column name""" - source_grenade_id - - """column name""" - source_match_id - - """column name""" - source_match_map_id - - """column name""" - source_url - - """column name""" - tags - - """column name""" - team_id - - """column name""" - technique - - """column name""" - throw_strength - - """column name""" - trajectory_file - - """column name""" - trajectory_preview - - """column name""" - trajectory_size - - """column name""" - updated_at - - """column name""" - upvotes - - """column name""" - utility_type - - """column name""" - verified_at - - """column name""" - view_pitch - - """column name""" - view_pitch_delta - - """column name""" - view_yaw - - """column name""" - view_yaw_delta - - """column name""" - visibility - - """column name""" - workshop_map_id -} - -""" -select "utility_lineups_aggregate_bool_exp_avg_arguments_columns" columns of table "utility_lineups" -""" -enum utility_lineups_select_column_utility_lineups_aggregate_bool_exp_avg_arguments_columns { - """column name""" - aim_tolerance - - """column name""" - eye_z - - """column name""" - initial_pos_x - - """column name""" - initial_pos_y - - """column name""" - initial_pos_z - - """column name""" - initial_vel_x - - """column name""" - initial_vel_y - - """column name""" - initial_vel_z - - """column name""" - land_x - - """column name""" - land_y - - """column name""" - land_z - - """column name""" - origin_x - - """column name""" - origin_y - - """column name""" - origin_z - - """column name""" - view_pitch - - """column name""" - view_pitch_delta - - """column name""" - view_yaw - - """column name""" - view_yaw_delta -} - -""" -select "utility_lineups_aggregate_bool_exp_bool_and_arguments_columns" columns of table "utility_lineups" -""" -enum utility_lineups_select_column_utility_lineups_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - jump_throw_bind -} - -""" -select "utility_lineups_aggregate_bool_exp_bool_or_arguments_columns" columns of table "utility_lineups" -""" -enum utility_lineups_select_column_utility_lineups_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - jump_throw_bind -} - -""" -select "utility_lineups_aggregate_bool_exp_corr_arguments_columns" columns of table "utility_lineups" -""" -enum utility_lineups_select_column_utility_lineups_aggregate_bool_exp_corr_arguments_columns { - """column name""" - aim_tolerance - - """column name""" - eye_z - - """column name""" - initial_pos_x - - """column name""" - initial_pos_y - - """column name""" - initial_pos_z - - """column name""" - initial_vel_x - - """column name""" - initial_vel_y - - """column name""" - initial_vel_z - - """column name""" - land_x - - """column name""" - land_y - - """column name""" - land_z - - """column name""" - origin_x - - """column name""" - origin_y - - """column name""" - origin_z - - """column name""" - view_pitch - - """column name""" - view_pitch_delta - - """column name""" - view_yaw - - """column name""" - view_yaw_delta -} - -""" -select "utility_lineups_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "utility_lineups" -""" -enum utility_lineups_select_column_utility_lineups_aggregate_bool_exp_covar_samp_arguments_columns { - """column name""" - aim_tolerance - - """column name""" - eye_z - - """column name""" - initial_pos_x - - """column name""" - initial_pos_y - - """column name""" - initial_pos_z - - """column name""" - initial_vel_x - - """column name""" - initial_vel_y - - """column name""" - initial_vel_z - - """column name""" - land_x - - """column name""" - land_y - - """column name""" - land_z - - """column name""" - origin_x - - """column name""" - origin_y - - """column name""" - origin_z - - """column name""" - view_pitch - - """column name""" - view_pitch_delta - - """column name""" - view_yaw - - """column name""" - view_yaw_delta -} - -""" -select "utility_lineups_aggregate_bool_exp_max_arguments_columns" columns of table "utility_lineups" -""" -enum utility_lineups_select_column_utility_lineups_aggregate_bool_exp_max_arguments_columns { - """column name""" - aim_tolerance - - """column name""" - eye_z - - """column name""" - initial_pos_x - - """column name""" - initial_pos_y - - """column name""" - initial_pos_z - - """column name""" - initial_vel_x - - """column name""" - initial_vel_y - - """column name""" - initial_vel_z - - """column name""" - land_x - - """column name""" - land_y - - """column name""" - land_z - - """column name""" - origin_x - - """column name""" - origin_y - - """column name""" - origin_z - - """column name""" - view_pitch - - """column name""" - view_pitch_delta - - """column name""" - view_yaw - - """column name""" - view_yaw_delta -} - -""" -select "utility_lineups_aggregate_bool_exp_min_arguments_columns" columns of table "utility_lineups" -""" -enum utility_lineups_select_column_utility_lineups_aggregate_bool_exp_min_arguments_columns { - """column name""" - aim_tolerance - - """column name""" - eye_z - - """column name""" - initial_pos_x - - """column name""" - initial_pos_y - - """column name""" - initial_pos_z - - """column name""" - initial_vel_x - - """column name""" - initial_vel_y - - """column name""" - initial_vel_z - - """column name""" - land_x - - """column name""" - land_y - - """column name""" - land_z - - """column name""" - origin_x - - """column name""" - origin_y - - """column name""" - origin_z - - """column name""" - view_pitch - - """column name""" - view_pitch_delta - - """column name""" - view_yaw - - """column name""" - view_yaw_delta -} - -""" -select "utility_lineups_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "utility_lineups" -""" -enum utility_lineups_select_column_utility_lineups_aggregate_bool_exp_stddev_samp_arguments_columns { - """column name""" - aim_tolerance - - """column name""" - eye_z - - """column name""" - initial_pos_x - - """column name""" - initial_pos_y - - """column name""" - initial_pos_z - - """column name""" - initial_vel_x - - """column name""" - initial_vel_y - - """column name""" - initial_vel_z - - """column name""" - land_x - - """column name""" - land_y - - """column name""" - land_z - - """column name""" - origin_x - - """column name""" - origin_y - - """column name""" - origin_z - - """column name""" - view_pitch - - """column name""" - view_pitch_delta - - """column name""" - view_yaw - - """column name""" - view_yaw_delta -} - -""" -select "utility_lineups_aggregate_bool_exp_sum_arguments_columns" columns of table "utility_lineups" -""" -enum utility_lineups_select_column_utility_lineups_aggregate_bool_exp_sum_arguments_columns { - """column name""" - aim_tolerance - - """column name""" - eye_z - - """column name""" - initial_pos_x - - """column name""" - initial_pos_y - - """column name""" - initial_pos_z - - """column name""" - initial_vel_x - - """column name""" - initial_vel_y - - """column name""" - initial_vel_z - - """column name""" - land_x - - """column name""" - land_y - - """column name""" - land_z - - """column name""" - origin_x - - """column name""" - origin_y - - """column name""" - origin_z - - """column name""" - view_pitch - - """column name""" - view_pitch_delta - - """column name""" - view_yaw - - """column name""" - view_yaw_delta -} - -""" -select "utility_lineups_aggregate_bool_exp_var_samp_arguments_columns" columns of table "utility_lineups" -""" -enum utility_lineups_select_column_utility_lineups_aggregate_bool_exp_var_samp_arguments_columns { - """column name""" - aim_tolerance - - """column name""" - eye_z - - """column name""" - initial_pos_x - - """column name""" - initial_pos_y - - """column name""" - initial_pos_z - - """column name""" - initial_vel_x - - """column name""" - initial_vel_y - - """column name""" - initial_vel_z - - """column name""" - land_x - - """column name""" - land_y - - """column name""" - land_z - - """column name""" - origin_x - - """column name""" - origin_y - - """column name""" - origin_z - - """column name""" - view_pitch - - """column name""" - view_pitch_delta - - """column name""" - view_yaw - - """column name""" - view_yaw_delta -} - -""" -input type for updating data in table "utility_lineups" -""" -input utility_lineups_set_input { - aim_tolerance: float8 - archived_at: timestamptz - author_steam_id: bigint - confidence: String - created_at: timestamptz - description: String - downvotes: Int - external_id: String - eye_z: float8 - favorites: Int - flight_time_ms: Int - forked_from_utility_lineup_id: uuid - id: uuid - initial_pos_x: float8 - initial_pos_y: float8 - initial_pos_z: float8 - initial_vel_x: float8 - initial_vel_y: float8 - initial_vel_z: float8 - jump_throw_bind: Boolean - land_x: float8 - land_y: float8 - land_z: float8 - map_name: String - name: String - origin_source: e_utility_sources_enum - origin_x: float8 - origin_y: float8 - origin_z: float8 - practice_attempts: Int - practice_players: Int - practice_successes: Int - preview_duration_ms: Int - preview_file: String - preview_rendered_at: timestamptz - preview_thumbnail: String - public_requested_at: timestamptz - public_review_note: String - public_reviewed_at: timestamptz - public_reviewed_by: bigint - side: e_sides_enum - source_grenade_id: Int - source_match_id: uuid - source_match_map_id: uuid - source_url: String - tags: [String!] - team_id: uuid - technique: e_utility_techniques_enum - throw_strength: e_utility_throw_strengths_enum - trajectory_file: String - trajectory_preview: jsonb - trajectory_size: Int - updated_at: timestamptz - upvotes: Int - utility_type: e_utility_types_enum - verified_at: timestamptz - view_pitch: float8 - view_pitch_delta: float8 - view_yaw: float8 - view_yaw_delta: float8 - visibility: e_utility_visibility_enum - workshop_map_id: String -} - -"""aggregate stddev on columns""" -type utility_lineups_stddev_fields { - aim_tolerance: Float - author_steam_id: Float - downvotes: Float - eye_z: Float - favorites: Float - flight_time_ms: Float - initial_pos_x: Float - initial_pos_y: Float - initial_pos_z: Float - initial_vel_x: Float - initial_vel_y: Float - initial_vel_z: Float - land_x: Float - land_y: Float - land_z: Float - - """ - A computed field, executes function "utility_lineup_my_vote" - """ - my_vote: smallint - origin_x: Float - origin_y: Float - origin_z: Float - practice_attempts: Float - practice_players: Float - practice_successes: Float - preview_duration_ms: Float - public_reviewed_by: Float - source_grenade_id: Float - trajectory_size: Float - upvotes: Float - view_pitch: Float - view_pitch_delta: Float - view_yaw: Float - view_yaw_delta: Float -} - -""" -order by stddev() on columns of table "utility_lineups" -""" -input utility_lineups_stddev_order_by { - aim_tolerance: order_by - author_steam_id: order_by - downvotes: order_by - eye_z: order_by - favorites: order_by - flight_time_ms: order_by - initial_pos_x: order_by - initial_pos_y: order_by - initial_pos_z: order_by - initial_vel_x: order_by - initial_vel_y: order_by - initial_vel_z: order_by - land_x: order_by - land_y: order_by - land_z: order_by - origin_x: order_by - origin_y: order_by - origin_z: order_by - practice_attempts: order_by - practice_players: order_by - practice_successes: order_by - preview_duration_ms: order_by - public_reviewed_by: order_by - source_grenade_id: order_by - trajectory_size: order_by - upvotes: order_by - view_pitch: order_by - view_pitch_delta: order_by - view_yaw: order_by - view_yaw_delta: order_by -} - -"""aggregate stddev_pop on columns""" -type utility_lineups_stddev_pop_fields { - aim_tolerance: Float - author_steam_id: Float - downvotes: Float - eye_z: Float - favorites: Float - flight_time_ms: Float - initial_pos_x: Float - initial_pos_y: Float - initial_pos_z: Float - initial_vel_x: Float - initial_vel_y: Float - initial_vel_z: Float - land_x: Float - land_y: Float - land_z: Float - - """ - A computed field, executes function "utility_lineup_my_vote" - """ - my_vote: smallint - origin_x: Float - origin_y: Float - origin_z: Float - practice_attempts: Float - practice_players: Float - practice_successes: Float - preview_duration_ms: Float - public_reviewed_by: Float - source_grenade_id: Float - trajectory_size: Float - upvotes: Float - view_pitch: Float - view_pitch_delta: Float - view_yaw: Float - view_yaw_delta: Float -} - -""" -order by stddev_pop() on columns of table "utility_lineups" -""" -input utility_lineups_stddev_pop_order_by { - aim_tolerance: order_by - author_steam_id: order_by - downvotes: order_by - eye_z: order_by - favorites: order_by - flight_time_ms: order_by - initial_pos_x: order_by - initial_pos_y: order_by - initial_pos_z: order_by - initial_vel_x: order_by - initial_vel_y: order_by - initial_vel_z: order_by - land_x: order_by - land_y: order_by - land_z: order_by - origin_x: order_by - origin_y: order_by - origin_z: order_by - practice_attempts: order_by - practice_players: order_by - practice_successes: order_by - preview_duration_ms: order_by - public_reviewed_by: order_by - source_grenade_id: order_by - trajectory_size: order_by - upvotes: order_by - view_pitch: order_by - view_pitch_delta: order_by - view_yaw: order_by - view_yaw_delta: order_by -} - -"""aggregate stddev_samp on columns""" -type utility_lineups_stddev_samp_fields { - aim_tolerance: Float - author_steam_id: Float - downvotes: Float - eye_z: Float - favorites: Float - flight_time_ms: Float - initial_pos_x: Float - initial_pos_y: Float - initial_pos_z: Float - initial_vel_x: Float - initial_vel_y: Float - initial_vel_z: Float - land_x: Float - land_y: Float - land_z: Float - - """ - A computed field, executes function "utility_lineup_my_vote" - """ - my_vote: smallint - origin_x: Float - origin_y: Float - origin_z: Float - practice_attempts: Float - practice_players: Float - practice_successes: Float - preview_duration_ms: Float - public_reviewed_by: Float - source_grenade_id: Float - trajectory_size: Float - upvotes: Float - view_pitch: Float - view_pitch_delta: Float - view_yaw: Float - view_yaw_delta: Float -} - -""" -order by stddev_samp() on columns of table "utility_lineups" -""" -input utility_lineups_stddev_samp_order_by { - aim_tolerance: order_by - author_steam_id: order_by - downvotes: order_by - eye_z: order_by - favorites: order_by - flight_time_ms: order_by - initial_pos_x: order_by - initial_pos_y: order_by - initial_pos_z: order_by - initial_vel_x: order_by - initial_vel_y: order_by - initial_vel_z: order_by - land_x: order_by - land_y: order_by - land_z: order_by - origin_x: order_by - origin_y: order_by - origin_z: order_by - practice_attempts: order_by - practice_players: order_by - practice_successes: order_by - preview_duration_ms: order_by - public_reviewed_by: order_by - source_grenade_id: order_by - trajectory_size: order_by - upvotes: order_by - view_pitch: order_by - view_pitch_delta: order_by - view_yaw: order_by - view_yaw_delta: order_by -} - -""" -Streaming cursor of the table "utility_lineups" -""" -input utility_lineups_stream_cursor_input { - """Stream column input with initial value""" - initial_value: utility_lineups_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input utility_lineups_stream_cursor_value_input { - aim_tolerance: float8 - archived_at: timestamptz - author_steam_id: bigint - confidence: String - created_at: timestamptz - description: String - downvotes: Int - external_id: String - eye_z: float8 - favorites: Int - flight_time_ms: Int - forked_from_utility_lineup_id: uuid - id: uuid - initial_pos_x: float8 - initial_pos_y: float8 - initial_pos_z: float8 - initial_vel_x: float8 - initial_vel_y: float8 - initial_vel_z: float8 - jump_throw_bind: Boolean - land_x: float8 - land_y: float8 - land_z: float8 - lineup_bucket: String - map_name: String - name: String - origin_source: e_utility_sources_enum - origin_x: float8 - origin_y: float8 - origin_z: float8 - practice_attempts: Int - practice_players: Int - practice_successes: Int - preview_duration_ms: Int - preview_file: String - preview_rendered_at: timestamptz - preview_thumbnail: String - public_requested_at: timestamptz - public_review_note: String - public_reviewed_at: timestamptz - public_reviewed_by: bigint - side: e_sides_enum - source_grenade_id: Int - source_match_id: uuid - source_match_map_id: uuid - source_url: String - tags: [String!] - team_id: uuid - technique: e_utility_techniques_enum - throw_strength: e_utility_throw_strengths_enum - trajectory_file: String - trajectory_preview: jsonb - trajectory_size: Int - updated_at: timestamptz - upvotes: Int - utility_type: e_utility_types_enum - verified_at: timestamptz - view_pitch: float8 - view_pitch_delta: float8 - view_yaw: float8 - view_yaw_delta: float8 - visibility: e_utility_visibility_enum - workshop_map_id: String -} - -"""aggregate sum on columns""" -type utility_lineups_sum_fields { - aim_tolerance: float8 - author_steam_id: bigint - downvotes: Int - eye_z: float8 - favorites: Int - flight_time_ms: Int - initial_pos_x: float8 - initial_pos_y: float8 - initial_pos_z: float8 - initial_vel_x: float8 - initial_vel_y: float8 - initial_vel_z: float8 - land_x: float8 - land_y: float8 - land_z: float8 - - """ - A computed field, executes function "utility_lineup_my_vote" - """ - my_vote: smallint - origin_x: float8 - origin_y: float8 - origin_z: float8 - practice_attempts: Int - practice_players: Int - practice_successes: Int - preview_duration_ms: Int - public_reviewed_by: bigint - source_grenade_id: Int - trajectory_size: Int - upvotes: Int - view_pitch: float8 - view_pitch_delta: float8 - view_yaw: float8 - view_yaw_delta: float8 -} - -""" -order by sum() on columns of table "utility_lineups" -""" -input utility_lineups_sum_order_by { - aim_tolerance: order_by - author_steam_id: order_by - downvotes: order_by - eye_z: order_by - favorites: order_by - flight_time_ms: order_by - initial_pos_x: order_by - initial_pos_y: order_by - initial_pos_z: order_by - initial_vel_x: order_by - initial_vel_y: order_by - initial_vel_z: order_by - land_x: order_by - land_y: order_by - land_z: order_by - origin_x: order_by - origin_y: order_by - origin_z: order_by - practice_attempts: order_by - practice_players: order_by - practice_successes: order_by - preview_duration_ms: order_by - public_reviewed_by: order_by - source_grenade_id: order_by - trajectory_size: order_by - upvotes: order_by - view_pitch: order_by - view_pitch_delta: order_by - view_yaw: order_by - view_yaw_delta: order_by -} - -""" -update columns of table "utility_lineups" -""" -enum utility_lineups_update_column { - """column name""" - aim_tolerance - - """column name""" - archived_at - - """column name""" - author_steam_id - - """column name""" - confidence - - """column name""" - created_at - - """column name""" - description - - """column name""" - downvotes - - """column name""" - external_id - - """column name""" - eye_z - - """column name""" - favorites - - """column name""" - flight_time_ms - - """column name""" - forked_from_utility_lineup_id - - """column name""" - id - - """column name""" - initial_pos_x - - """column name""" - initial_pos_y - - """column name""" - initial_pos_z - - """column name""" - initial_vel_x - - """column name""" - initial_vel_y - - """column name""" - initial_vel_z - - """column name""" - jump_throw_bind - - """column name""" - land_x - - """column name""" - land_y - - """column name""" - land_z - - """column name""" - map_name - - """column name""" - name - - """column name""" - origin_source - - """column name""" - origin_x - - """column name""" - origin_y - - """column name""" - origin_z - - """column name""" - practice_attempts - - """column name""" - practice_players - - """column name""" - practice_successes - - """column name""" - preview_duration_ms - - """column name""" - preview_file - - """column name""" - preview_rendered_at - - """column name""" - preview_thumbnail - - """column name""" - public_requested_at - - """column name""" - public_review_note - - """column name""" - public_reviewed_at - - """column name""" - public_reviewed_by - - """column name""" - side - - """column name""" - source_grenade_id - - """column name""" - source_match_id - - """column name""" - source_match_map_id - - """column name""" - source_url - - """column name""" - tags - - """column name""" - team_id - - """column name""" - technique - - """column name""" - throw_strength - - """column name""" - trajectory_file - - """column name""" - trajectory_preview - - """column name""" - trajectory_size - - """column name""" - updated_at - - """column name""" - upvotes - - """column name""" - utility_type - - """column name""" - verified_at - - """column name""" - view_pitch - - """column name""" - view_pitch_delta - - """column name""" - view_yaw - - """column name""" - view_yaw_delta - - """column name""" - visibility - - """column name""" - workshop_map_id -} - -input utility_lineups_updates { - """append existing jsonb value of filtered columns with new jsonb value""" - _append: utility_lineups_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: utility_lineups_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: utility_lineups_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: utility_lineups_delete_key_input - - """increments the numeric columns with given value of the filtered values""" - _inc: utility_lineups_inc_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: utility_lineups_prepend_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_lineups_set_input - - """filter the rows which have to be updated""" - where: utility_lineups_bool_exp! -} - -"""aggregate var_pop on columns""" -type utility_lineups_var_pop_fields { - aim_tolerance: Float - author_steam_id: Float - downvotes: Float - eye_z: Float - favorites: Float - flight_time_ms: Float - initial_pos_x: Float - initial_pos_y: Float - initial_pos_z: Float - initial_vel_x: Float - initial_vel_y: Float - initial_vel_z: Float - land_x: Float - land_y: Float - land_z: Float - - """ - A computed field, executes function "utility_lineup_my_vote" - """ - my_vote: smallint - origin_x: Float - origin_y: Float - origin_z: Float - practice_attempts: Float - practice_players: Float - practice_successes: Float - preview_duration_ms: Float - public_reviewed_by: Float - source_grenade_id: Float - trajectory_size: Float - upvotes: Float - view_pitch: Float - view_pitch_delta: Float - view_yaw: Float - view_yaw_delta: Float -} - -""" -order by var_pop() on columns of table "utility_lineups" -""" -input utility_lineups_var_pop_order_by { - aim_tolerance: order_by - author_steam_id: order_by - downvotes: order_by - eye_z: order_by - favorites: order_by - flight_time_ms: order_by - initial_pos_x: order_by - initial_pos_y: order_by - initial_pos_z: order_by - initial_vel_x: order_by - initial_vel_y: order_by - initial_vel_z: order_by - land_x: order_by - land_y: order_by - land_z: order_by - origin_x: order_by - origin_y: order_by - origin_z: order_by - practice_attempts: order_by - practice_players: order_by - practice_successes: order_by - preview_duration_ms: order_by - public_reviewed_by: order_by - source_grenade_id: order_by - trajectory_size: order_by - upvotes: order_by - view_pitch: order_by - view_pitch_delta: order_by - view_yaw: order_by - view_yaw_delta: order_by -} - -"""aggregate var_samp on columns""" -type utility_lineups_var_samp_fields { - aim_tolerance: Float - author_steam_id: Float - downvotes: Float - eye_z: Float - favorites: Float - flight_time_ms: Float - initial_pos_x: Float - initial_pos_y: Float - initial_pos_z: Float - initial_vel_x: Float - initial_vel_y: Float - initial_vel_z: Float - land_x: Float - land_y: Float - land_z: Float - - """ - A computed field, executes function "utility_lineup_my_vote" - """ - my_vote: smallint - origin_x: Float - origin_y: Float - origin_z: Float - practice_attempts: Float - practice_players: Float - practice_successes: Float - preview_duration_ms: Float - public_reviewed_by: Float - source_grenade_id: Float - trajectory_size: Float - upvotes: Float - view_pitch: Float - view_pitch_delta: Float - view_yaw: Float - view_yaw_delta: Float -} - -""" -order by var_samp() on columns of table "utility_lineups" -""" -input utility_lineups_var_samp_order_by { - aim_tolerance: order_by - author_steam_id: order_by - downvotes: order_by - eye_z: order_by - favorites: order_by - flight_time_ms: order_by - initial_pos_x: order_by - initial_pos_y: order_by - initial_pos_z: order_by - initial_vel_x: order_by - initial_vel_y: order_by - initial_vel_z: order_by - land_x: order_by - land_y: order_by - land_z: order_by - origin_x: order_by - origin_y: order_by - origin_z: order_by - practice_attempts: order_by - practice_players: order_by - practice_successes: order_by - preview_duration_ms: order_by - public_reviewed_by: order_by - source_grenade_id: order_by - trajectory_size: order_by - upvotes: order_by - view_pitch: order_by - view_pitch_delta: order_by - view_yaw: order_by - view_yaw_delta: order_by -} - -"""aggregate variance on columns""" -type utility_lineups_variance_fields { - aim_tolerance: Float - author_steam_id: Float - downvotes: Float - eye_z: Float - favorites: Float - flight_time_ms: Float - initial_pos_x: Float - initial_pos_y: Float - initial_pos_z: Float - initial_vel_x: Float - initial_vel_y: Float - initial_vel_z: Float - land_x: Float - land_y: Float - land_z: Float - - """ - A computed field, executes function "utility_lineup_my_vote" - """ - my_vote: smallint - origin_x: Float - origin_y: Float - origin_z: Float - practice_attempts: Float - practice_players: Float - practice_successes: Float - preview_duration_ms: Float - public_reviewed_by: Float - source_grenade_id: Float - trajectory_size: Float - upvotes: Float - view_pitch: Float - view_pitch_delta: Float - view_yaw: Float - view_yaw_delta: Float -} - -""" -order by variance() on columns of table "utility_lineups" -""" -input utility_lineups_variance_order_by { - aim_tolerance: order_by - author_steam_id: order_by - downvotes: order_by - eye_z: order_by - favorites: order_by - flight_time_ms: order_by - initial_pos_x: order_by - initial_pos_y: order_by - initial_pos_z: order_by - initial_vel_x: order_by - initial_vel_y: order_by - initial_vel_z: order_by - land_x: order_by - land_y: order_by - land_z: order_by - origin_x: order_by - origin_y: order_by - origin_z: order_by - practice_attempts: order_by - practice_players: order_by - practice_successes: order_by - preview_duration_ms: order_by - public_reviewed_by: order_by - source_grenade_id: order_by - trajectory_size: order_by - upvotes: order_by - view_pitch: order_by - view_pitch_delta: order_by - view_yaw: order_by - view_yaw_delta: order_by -} - -""" -columns and relationships of "utility_meta_lineups" -""" -type utility_meta_lineups { - first_seen_at: timestamptz - land_x: float8! - land_y: float8! - land_z: float8! - last_seen_at: timestamptz - lineup_bucket: String! - lineups: Int! - map_name: String! - matches: Int! - origin_x: float8! - origin_y: float8! - origin_z: float8! - refreshed_at: timestamptz! - side: e_sides_enum! - technique: e_utility_techniques_enum! - throw_strength: String - throwers: Int! - throws: Int! - utility_type: e_utility_types_enum! - view_pitch: float8 - view_yaw: float8 -} - -""" -aggregated selection of "utility_meta_lineups" -""" -type utility_meta_lineups_aggregate { - aggregate: utility_meta_lineups_aggregate_fields - nodes: [utility_meta_lineups!]! -} - -""" -aggregate fields of "utility_meta_lineups" -""" -type utility_meta_lineups_aggregate_fields { - avg: utility_meta_lineups_avg_fields - count(columns: [utility_meta_lineups_select_column!], distinct: Boolean): Int! - max: utility_meta_lineups_max_fields - min: utility_meta_lineups_min_fields - stddev: utility_meta_lineups_stddev_fields - stddev_pop: utility_meta_lineups_stddev_pop_fields - stddev_samp: utility_meta_lineups_stddev_samp_fields - sum: utility_meta_lineups_sum_fields - var_pop: utility_meta_lineups_var_pop_fields - var_samp: utility_meta_lineups_var_samp_fields - variance: utility_meta_lineups_variance_fields -} - -"""aggregate avg on columns""" -type utility_meta_lineups_avg_fields { - land_x: Float - land_y: Float - land_z: Float - lineups: Float - matches: Float - origin_x: Float - origin_y: Float - origin_z: Float - throwers: Float - throws: Float - view_pitch: Float - view_yaw: Float -} - -""" -Boolean expression to filter rows from the table "utility_meta_lineups". All fields are combined with a logical 'AND'. -""" -input utility_meta_lineups_bool_exp { - _and: [utility_meta_lineups_bool_exp!] - _not: utility_meta_lineups_bool_exp - _or: [utility_meta_lineups_bool_exp!] - first_seen_at: timestamptz_comparison_exp - land_x: float8_comparison_exp - land_y: float8_comparison_exp - land_z: float8_comparison_exp - last_seen_at: timestamptz_comparison_exp - lineup_bucket: String_comparison_exp - lineups: Int_comparison_exp - map_name: String_comparison_exp - matches: Int_comparison_exp - origin_x: float8_comparison_exp - origin_y: float8_comparison_exp - origin_z: float8_comparison_exp - refreshed_at: timestamptz_comparison_exp - side: e_sides_enum_comparison_exp - technique: e_utility_techniques_enum_comparison_exp - throw_strength: String_comparison_exp - throwers: Int_comparison_exp - throws: Int_comparison_exp - utility_type: e_utility_types_enum_comparison_exp - view_pitch: float8_comparison_exp - view_yaw: float8_comparison_exp -} - -""" -unique or primary key constraints on table "utility_meta_lineups" -""" -enum utility_meta_lineups_constraint { - """ - unique or primary key constraint on columns "lineup_bucket" - """ - utility_meta_lineups_pkey -} - -""" -input type for incrementing numeric columns in table "utility_meta_lineups" -""" -input utility_meta_lineups_inc_input { - land_x: float8 - land_y: float8 - land_z: float8 - lineups: Int - matches: Int - origin_x: float8 - origin_y: float8 - origin_z: float8 - throwers: Int - throws: Int - view_pitch: float8 - view_yaw: float8 -} - -""" -input type for inserting data into table "utility_meta_lineups" -""" -input utility_meta_lineups_insert_input { - first_seen_at: timestamptz - land_x: float8 - land_y: float8 - land_z: float8 - last_seen_at: timestamptz - lineup_bucket: String - lineups: Int - map_name: String - matches: Int - origin_x: float8 - origin_y: float8 - origin_z: float8 - refreshed_at: timestamptz - side: e_sides_enum - technique: e_utility_techniques_enum - throw_strength: String - throwers: Int - throws: Int - utility_type: e_utility_types_enum - view_pitch: float8 - view_yaw: float8 -} - -"""aggregate max on columns""" -type utility_meta_lineups_max_fields { - first_seen_at: timestamptz - land_x: float8 - land_y: float8 - land_z: float8 - last_seen_at: timestamptz - lineup_bucket: String - lineups: Int - map_name: String - matches: Int - origin_x: float8 - origin_y: float8 - origin_z: float8 - refreshed_at: timestamptz - throw_strength: String - throwers: Int - throws: Int - view_pitch: float8 - view_yaw: float8 -} - -"""aggregate min on columns""" -type utility_meta_lineups_min_fields { - first_seen_at: timestamptz - land_x: float8 - land_y: float8 - land_z: float8 - last_seen_at: timestamptz - lineup_bucket: String - lineups: Int - map_name: String - matches: Int - origin_x: float8 - origin_y: float8 - origin_z: float8 - refreshed_at: timestamptz - throw_strength: String - throwers: Int - throws: Int - view_pitch: float8 - view_yaw: float8 -} - -""" -response of any mutation on the table "utility_meta_lineups" -""" -type utility_meta_lineups_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [utility_meta_lineups!]! -} - -""" -on_conflict condition type for table "utility_meta_lineups" -""" -input utility_meta_lineups_on_conflict { - constraint: utility_meta_lineups_constraint! - update_columns: [utility_meta_lineups_update_column!]! = [] - where: utility_meta_lineups_bool_exp -} - -"""Ordering options when selecting data from "utility_meta_lineups".""" -input utility_meta_lineups_order_by { - first_seen_at: order_by - land_x: order_by - land_y: order_by - land_z: order_by - last_seen_at: order_by - lineup_bucket: order_by - lineups: order_by - map_name: order_by - matches: order_by - origin_x: order_by - origin_y: order_by - origin_z: order_by - refreshed_at: order_by - side: order_by - technique: order_by - throw_strength: order_by - throwers: order_by - throws: order_by - utility_type: order_by - view_pitch: order_by - view_yaw: order_by -} - -"""primary key columns input for table: utility_meta_lineups""" -input utility_meta_lineups_pk_columns_input { - lineup_bucket: String! -} - -""" -select columns of table "utility_meta_lineups" -""" -enum utility_meta_lineups_select_column { - """column name""" - first_seen_at - - """column name""" - land_x - - """column name""" - land_y - - """column name""" - land_z - - """column name""" - last_seen_at - - """column name""" - lineup_bucket - - """column name""" - lineups - - """column name""" - map_name - - """column name""" - matches - - """column name""" - origin_x - - """column name""" - origin_y - - """column name""" - origin_z - - """column name""" - refreshed_at - - """column name""" - side - - """column name""" - technique - - """column name""" - throw_strength - - """column name""" - throwers - - """column name""" - throws - - """column name""" - utility_type - - """column name""" - view_pitch - - """column name""" - view_yaw -} - -""" -input type for updating data in table "utility_meta_lineups" -""" -input utility_meta_lineups_set_input { - first_seen_at: timestamptz - land_x: float8 - land_y: float8 - land_z: float8 - last_seen_at: timestamptz - lineup_bucket: String - lineups: Int - map_name: String - matches: Int - origin_x: float8 - origin_y: float8 - origin_z: float8 - refreshed_at: timestamptz - side: e_sides_enum - technique: e_utility_techniques_enum - throw_strength: String - throwers: Int - throws: Int - utility_type: e_utility_types_enum - view_pitch: float8 - view_yaw: float8 -} - -"""aggregate stddev on columns""" -type utility_meta_lineups_stddev_fields { - land_x: Float - land_y: Float - land_z: Float - lineups: Float - matches: Float - origin_x: Float - origin_y: Float - origin_z: Float - throwers: Float - throws: Float - view_pitch: Float - view_yaw: Float -} - -"""aggregate stddev_pop on columns""" -type utility_meta_lineups_stddev_pop_fields { - land_x: Float - land_y: Float - land_z: Float - lineups: Float - matches: Float - origin_x: Float - origin_y: Float - origin_z: Float - throwers: Float - throws: Float - view_pitch: Float - view_yaw: Float -} - -"""aggregate stddev_samp on columns""" -type utility_meta_lineups_stddev_samp_fields { - land_x: Float - land_y: Float - land_z: Float - lineups: Float - matches: Float - origin_x: Float - origin_y: Float - origin_z: Float - throwers: Float - throws: Float - view_pitch: Float - view_yaw: Float -} - -""" -Streaming cursor of the table "utility_meta_lineups" -""" -input utility_meta_lineups_stream_cursor_input { - """Stream column input with initial value""" - initial_value: utility_meta_lineups_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input utility_meta_lineups_stream_cursor_value_input { - first_seen_at: timestamptz - land_x: float8 - land_y: float8 - land_z: float8 - last_seen_at: timestamptz - lineup_bucket: String - lineups: Int - map_name: String - matches: Int - origin_x: float8 - origin_y: float8 - origin_z: float8 - refreshed_at: timestamptz - side: e_sides_enum - technique: e_utility_techniques_enum - throw_strength: String - throwers: Int - throws: Int - utility_type: e_utility_types_enum - view_pitch: float8 - view_yaw: float8 -} - -"""aggregate sum on columns""" -type utility_meta_lineups_sum_fields { - land_x: float8 - land_y: float8 - land_z: float8 - lineups: Int - matches: Int - origin_x: float8 - origin_y: float8 - origin_z: float8 - throwers: Int - throws: Int - view_pitch: float8 - view_yaw: float8 -} - -""" -update columns of table "utility_meta_lineups" -""" -enum utility_meta_lineups_update_column { - """column name""" - first_seen_at - - """column name""" - land_x - - """column name""" - land_y - - """column name""" - land_z - - """column name""" - last_seen_at - - """column name""" - lineup_bucket - - """column name""" - lineups - - """column name""" - map_name - - """column name""" - matches - - """column name""" - origin_x - - """column name""" - origin_y - - """column name""" - origin_z - - """column name""" - refreshed_at - - """column name""" - side - - """column name""" - technique - - """column name""" - throw_strength - - """column name""" - throwers - - """column name""" - throws - - """column name""" - utility_type - - """column name""" - view_pitch - - """column name""" - view_yaw -} - -input utility_meta_lineups_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: utility_meta_lineups_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_meta_lineups_set_input - - """filter the rows which have to be updated""" - where: utility_meta_lineups_bool_exp! -} - -"""aggregate var_pop on columns""" -type utility_meta_lineups_var_pop_fields { - land_x: Float - land_y: Float - land_z: Float - lineups: Float - matches: Float - origin_x: Float - origin_y: Float - origin_z: Float - throwers: Float - throws: Float - view_pitch: Float - view_yaw: Float -} - -"""aggregate var_samp on columns""" -type utility_meta_lineups_var_samp_fields { - land_x: Float - land_y: Float - land_z: Float - lineups: Float - matches: Float - origin_x: Float - origin_y: Float - origin_z: Float - throwers: Float - throws: Float - view_pitch: Float - view_yaw: Float -} - -"""aggregate variance on columns""" -type utility_meta_lineups_variance_fields { - land_x: Float - land_y: Float - land_z: Float - lineups: Float - matches: Float - origin_x: Float - origin_y: Float - origin_z: Float - throwers: Float - throws: Float - view_pitch: Float - view_yaw: Float -} - -""" -columns and relationships of "utility_playbook_steps" -""" -type utility_playbook_steps { - """An object relationship""" - assigned_player: players - assigned_steam_id: bigint - created_at: timestamptz! - id: uuid! - note: String - offset_ms: Int! - - """An object relationship""" - playbook: utility_playbooks! - playbook_id: uuid! - step_order: Int! - - """An object relationship""" - utility_lineup: utility_lineups! - utility_lineup_id: uuid! -} - -""" -aggregated selection of "utility_playbook_steps" -""" -type utility_playbook_steps_aggregate { - aggregate: utility_playbook_steps_aggregate_fields - nodes: [utility_playbook_steps!]! -} - -input utility_playbook_steps_aggregate_bool_exp { - count: utility_playbook_steps_aggregate_bool_exp_count -} - -input utility_playbook_steps_aggregate_bool_exp_count { - arguments: [utility_playbook_steps_select_column!] - distinct: Boolean - filter: utility_playbook_steps_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "utility_playbook_steps" -""" -type utility_playbook_steps_aggregate_fields { - avg: utility_playbook_steps_avg_fields - count(columns: [utility_playbook_steps_select_column!], distinct: Boolean): Int! - max: utility_playbook_steps_max_fields - min: utility_playbook_steps_min_fields - stddev: utility_playbook_steps_stddev_fields - stddev_pop: utility_playbook_steps_stddev_pop_fields - stddev_samp: utility_playbook_steps_stddev_samp_fields - sum: utility_playbook_steps_sum_fields - var_pop: utility_playbook_steps_var_pop_fields - var_samp: utility_playbook_steps_var_samp_fields - variance: utility_playbook_steps_variance_fields -} - -""" -order by aggregate values of table "utility_playbook_steps" -""" -input utility_playbook_steps_aggregate_order_by { - avg: utility_playbook_steps_avg_order_by - count: order_by - max: utility_playbook_steps_max_order_by - min: utility_playbook_steps_min_order_by - stddev: utility_playbook_steps_stddev_order_by - stddev_pop: utility_playbook_steps_stddev_pop_order_by - stddev_samp: utility_playbook_steps_stddev_samp_order_by - sum: utility_playbook_steps_sum_order_by - var_pop: utility_playbook_steps_var_pop_order_by - var_samp: utility_playbook_steps_var_samp_order_by - variance: utility_playbook_steps_variance_order_by -} - -""" -input type for inserting array relation for remote table "utility_playbook_steps" -""" -input utility_playbook_steps_arr_rel_insert_input { - data: [utility_playbook_steps_insert_input!]! - - """upsert condition""" - on_conflict: utility_playbook_steps_on_conflict -} - -"""aggregate avg on columns""" -type utility_playbook_steps_avg_fields { - assigned_steam_id: Float - offset_ms: Float - step_order: Float -} - -""" -order by avg() on columns of table "utility_playbook_steps" -""" -input utility_playbook_steps_avg_order_by { - assigned_steam_id: order_by - offset_ms: order_by - step_order: order_by -} - -""" -Boolean expression to filter rows from the table "utility_playbook_steps". All fields are combined with a logical 'AND'. -""" -input utility_playbook_steps_bool_exp { - _and: [utility_playbook_steps_bool_exp!] - _not: utility_playbook_steps_bool_exp - _or: [utility_playbook_steps_bool_exp!] - assigned_player: players_bool_exp - assigned_steam_id: bigint_comparison_exp - created_at: timestamptz_comparison_exp - id: uuid_comparison_exp - note: String_comparison_exp - offset_ms: Int_comparison_exp - playbook: utility_playbooks_bool_exp - playbook_id: uuid_comparison_exp - step_order: Int_comparison_exp - utility_lineup: utility_lineups_bool_exp - utility_lineup_id: uuid_comparison_exp -} - -""" -unique or primary key constraints on table "utility_playbook_steps" -""" -enum utility_playbook_steps_constraint { - """ - unique or primary key constraint on columns "playbook_id", "step_order" - """ - utility_playbook_steps_order_key - - """ - unique or primary key constraint on columns "id" - """ - utility_playbook_steps_pkey -} - -""" -input type for incrementing numeric columns in table "utility_playbook_steps" -""" -input utility_playbook_steps_inc_input { - assigned_steam_id: bigint - offset_ms: Int - step_order: Int -} - -""" -input type for inserting data into table "utility_playbook_steps" -""" -input utility_playbook_steps_insert_input { - assigned_player: players_obj_rel_insert_input - assigned_steam_id: bigint - created_at: timestamptz - id: uuid - note: String - offset_ms: Int - playbook: utility_playbooks_obj_rel_insert_input - playbook_id: uuid - step_order: Int - utility_lineup: utility_lineups_obj_rel_insert_input - utility_lineup_id: uuid -} - -"""aggregate max on columns""" -type utility_playbook_steps_max_fields { - assigned_steam_id: bigint - created_at: timestamptz - id: uuid - note: String - offset_ms: Int - playbook_id: uuid - step_order: Int - utility_lineup_id: uuid -} - -""" -order by max() on columns of table "utility_playbook_steps" -""" -input utility_playbook_steps_max_order_by { - assigned_steam_id: order_by - created_at: order_by - id: order_by - note: order_by - offset_ms: order_by - playbook_id: order_by - step_order: order_by - utility_lineup_id: order_by -} - -"""aggregate min on columns""" -type utility_playbook_steps_min_fields { - assigned_steam_id: bigint - created_at: timestamptz - id: uuid - note: String - offset_ms: Int - playbook_id: uuid - step_order: Int - utility_lineup_id: uuid -} - -""" -order by min() on columns of table "utility_playbook_steps" -""" -input utility_playbook_steps_min_order_by { - assigned_steam_id: order_by - created_at: order_by - id: order_by - note: order_by - offset_ms: order_by - playbook_id: order_by - step_order: order_by - utility_lineup_id: order_by -} - -""" -response of any mutation on the table "utility_playbook_steps" -""" -type utility_playbook_steps_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [utility_playbook_steps!]! -} - -""" -on_conflict condition type for table "utility_playbook_steps" -""" -input utility_playbook_steps_on_conflict { - constraint: utility_playbook_steps_constraint! - update_columns: [utility_playbook_steps_update_column!]! = [] - where: utility_playbook_steps_bool_exp -} - -"""Ordering options when selecting data from "utility_playbook_steps".""" -input utility_playbook_steps_order_by { - assigned_player: players_order_by - assigned_steam_id: order_by - created_at: order_by - id: order_by - note: order_by - offset_ms: order_by - playbook: utility_playbooks_order_by - playbook_id: order_by - step_order: order_by - utility_lineup: utility_lineups_order_by - utility_lineup_id: order_by -} - -"""primary key columns input for table: utility_playbook_steps""" -input utility_playbook_steps_pk_columns_input { - id: uuid! -} - -""" -select columns of table "utility_playbook_steps" -""" -enum utility_playbook_steps_select_column { - """column name""" - assigned_steam_id - - """column name""" - created_at - - """column name""" - id - - """column name""" - note - - """column name""" - offset_ms - - """column name""" - playbook_id - - """column name""" - step_order - - """column name""" - utility_lineup_id -} - -""" -input type for updating data in table "utility_playbook_steps" -""" -input utility_playbook_steps_set_input { - assigned_steam_id: bigint - created_at: timestamptz - id: uuid - note: String - offset_ms: Int - playbook_id: uuid - step_order: Int - utility_lineup_id: uuid -} - -"""aggregate stddev on columns""" -type utility_playbook_steps_stddev_fields { - assigned_steam_id: Float - offset_ms: Float - step_order: Float -} - -""" -order by stddev() on columns of table "utility_playbook_steps" -""" -input utility_playbook_steps_stddev_order_by { - assigned_steam_id: order_by - offset_ms: order_by - step_order: order_by -} - -"""aggregate stddev_pop on columns""" -type utility_playbook_steps_stddev_pop_fields { - assigned_steam_id: Float - offset_ms: Float - step_order: Float -} - -""" -order by stddev_pop() on columns of table "utility_playbook_steps" -""" -input utility_playbook_steps_stddev_pop_order_by { - assigned_steam_id: order_by - offset_ms: order_by - step_order: order_by -} - -"""aggregate stddev_samp on columns""" -type utility_playbook_steps_stddev_samp_fields { - assigned_steam_id: Float - offset_ms: Float - step_order: Float -} - -""" -order by stddev_samp() on columns of table "utility_playbook_steps" -""" -input utility_playbook_steps_stddev_samp_order_by { - assigned_steam_id: order_by - offset_ms: order_by - step_order: order_by -} - -""" -Streaming cursor of the table "utility_playbook_steps" -""" -input utility_playbook_steps_stream_cursor_input { - """Stream column input with initial value""" - initial_value: utility_playbook_steps_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input utility_playbook_steps_stream_cursor_value_input { - assigned_steam_id: bigint - created_at: timestamptz - id: uuid - note: String - offset_ms: Int - playbook_id: uuid - step_order: Int - utility_lineup_id: uuid -} - -"""aggregate sum on columns""" -type utility_playbook_steps_sum_fields { - assigned_steam_id: bigint - offset_ms: Int - step_order: Int -} - -""" -order by sum() on columns of table "utility_playbook_steps" -""" -input utility_playbook_steps_sum_order_by { - assigned_steam_id: order_by - offset_ms: order_by - step_order: order_by -} - -""" -update columns of table "utility_playbook_steps" -""" -enum utility_playbook_steps_update_column { - """column name""" - assigned_steam_id - - """column name""" - created_at - - """column name""" - id - - """column name""" - note - - """column name""" - offset_ms - - """column name""" - playbook_id - - """column name""" - step_order - - """column name""" - utility_lineup_id -} - -input utility_playbook_steps_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: utility_playbook_steps_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_playbook_steps_set_input - - """filter the rows which have to be updated""" - where: utility_playbook_steps_bool_exp! -} - -"""aggregate var_pop on columns""" -type utility_playbook_steps_var_pop_fields { - assigned_steam_id: Float - offset_ms: Float - step_order: Float -} - -""" -order by var_pop() on columns of table "utility_playbook_steps" -""" -input utility_playbook_steps_var_pop_order_by { - assigned_steam_id: order_by - offset_ms: order_by - step_order: order_by -} - -"""aggregate var_samp on columns""" -type utility_playbook_steps_var_samp_fields { - assigned_steam_id: Float - offset_ms: Float - step_order: Float -} - -""" -order by var_samp() on columns of table "utility_playbook_steps" -""" -input utility_playbook_steps_var_samp_order_by { - assigned_steam_id: order_by - offset_ms: order_by - step_order: order_by -} - -"""aggregate variance on columns""" -type utility_playbook_steps_variance_fields { - assigned_steam_id: Float - offset_ms: Float - step_order: Float -} - -""" -order by variance() on columns of table "utility_playbook_steps" -""" -input utility_playbook_steps_variance_order_by { - assigned_steam_id: order_by - offset_ms: order_by - step_order: order_by -} - -""" -columns and relationships of "utility_playbooks" -""" -type utility_playbooks { - """ - A computed field, executes function "can_edit_utility_playbook" - """ - can_edit: Boolean - - """ - A computed field, executes function "can_view_utility_playbook" - """ - can_view: Boolean - created_at: timestamptz! - description: String - id: uuid! - map_name: String! - name: String! - - """An object relationship""" - owner: players! - owner_steam_id: bigint! - side: e_sides_enum! - - """An array relationship""" - steps( - """distinct select on columns""" - distinct_on: [utility_playbook_steps_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: [utility_playbook_steps_order_by!] - - """filter the rows returned""" - where: utility_playbook_steps_bool_exp - ): [utility_playbook_steps!]! - - """An aggregate relationship""" - steps_aggregate( - """distinct select on columns""" - distinct_on: [utility_playbook_steps_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: [utility_playbook_steps_order_by!] - - """filter the rows returned""" - where: utility_playbook_steps_bool_exp - ): utility_playbook_steps_aggregate! - - """An object relationship""" - team: teams - team_id: uuid - updated_at: timestamptz! - visibility: e_utility_visibility_enum! -} - -""" -aggregated selection of "utility_playbooks" -""" -type utility_playbooks_aggregate { - aggregate: utility_playbooks_aggregate_fields - nodes: [utility_playbooks!]! -} - -""" -aggregate fields of "utility_playbooks" -""" -type utility_playbooks_aggregate_fields { - avg: utility_playbooks_avg_fields - count(columns: [utility_playbooks_select_column!], distinct: Boolean): Int! - max: utility_playbooks_max_fields - min: utility_playbooks_min_fields - stddev: utility_playbooks_stddev_fields - stddev_pop: utility_playbooks_stddev_pop_fields - stddev_samp: utility_playbooks_stddev_samp_fields - sum: utility_playbooks_sum_fields - var_pop: utility_playbooks_var_pop_fields - var_samp: utility_playbooks_var_samp_fields - variance: utility_playbooks_variance_fields -} - -"""aggregate avg on columns""" -type utility_playbooks_avg_fields { - owner_steam_id: Float -} - -""" -Boolean expression to filter rows from the table "utility_playbooks". All fields are combined with a logical 'AND'. -""" -input utility_playbooks_bool_exp { - _and: [utility_playbooks_bool_exp!] - _not: utility_playbooks_bool_exp - _or: [utility_playbooks_bool_exp!] - can_edit: Boolean_comparison_exp - can_view: Boolean_comparison_exp - created_at: timestamptz_comparison_exp - description: String_comparison_exp - id: uuid_comparison_exp - map_name: String_comparison_exp - name: String_comparison_exp - owner: players_bool_exp - owner_steam_id: bigint_comparison_exp - side: e_sides_enum_comparison_exp - steps: utility_playbook_steps_bool_exp - steps_aggregate: utility_playbook_steps_aggregate_bool_exp - team: teams_bool_exp - team_id: uuid_comparison_exp - updated_at: timestamptz_comparison_exp - visibility: e_utility_visibility_enum_comparison_exp -} - -""" -unique or primary key constraints on table "utility_playbooks" -""" -enum utility_playbooks_constraint { - """ - unique or primary key constraint on columns "id" - """ - utility_playbooks_pkey -} - -""" -input type for incrementing numeric columns in table "utility_playbooks" -""" -input utility_playbooks_inc_input { - owner_steam_id: bigint -} - -""" -input type for inserting data into table "utility_playbooks" -""" -input utility_playbooks_insert_input { - created_at: timestamptz - description: String - id: uuid - map_name: String - name: String - owner: players_obj_rel_insert_input - owner_steam_id: bigint - side: e_sides_enum - steps: utility_playbook_steps_arr_rel_insert_input - team: teams_obj_rel_insert_input - team_id: uuid - updated_at: timestamptz - visibility: e_utility_visibility_enum -} - -"""aggregate max on columns""" -type utility_playbooks_max_fields { - created_at: timestamptz - description: String - id: uuid - map_name: String - name: String - owner_steam_id: bigint - team_id: uuid - updated_at: timestamptz -} - -"""aggregate min on columns""" -type utility_playbooks_min_fields { - created_at: timestamptz - description: String - id: uuid - map_name: String - name: String - owner_steam_id: bigint - team_id: uuid - updated_at: timestamptz -} - -""" -response of any mutation on the table "utility_playbooks" -""" -type utility_playbooks_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [utility_playbooks!]! -} - -""" -input type for inserting object relation for remote table "utility_playbooks" -""" -input utility_playbooks_obj_rel_insert_input { - data: utility_playbooks_insert_input! - - """upsert condition""" - on_conflict: utility_playbooks_on_conflict -} - -""" -on_conflict condition type for table "utility_playbooks" -""" -input utility_playbooks_on_conflict { - constraint: utility_playbooks_constraint! - update_columns: [utility_playbooks_update_column!]! = [] - where: utility_playbooks_bool_exp -} - -"""Ordering options when selecting data from "utility_playbooks".""" -input utility_playbooks_order_by { - can_edit: order_by - can_view: order_by - created_at: order_by - description: order_by - id: order_by - map_name: order_by - name: order_by - owner: players_order_by - owner_steam_id: order_by - side: order_by - steps_aggregate: utility_playbook_steps_aggregate_order_by - team: teams_order_by - team_id: order_by - updated_at: order_by - visibility: order_by -} - -"""primary key columns input for table: utility_playbooks""" -input utility_playbooks_pk_columns_input { - id: uuid! -} - -""" -select columns of table "utility_playbooks" -""" -enum utility_playbooks_select_column { - """column name""" - created_at - - """column name""" - description - - """column name""" - id - - """column name""" - map_name - - """column name""" - name - - """column name""" - owner_steam_id - - """column name""" - side - - """column name""" - team_id - - """column name""" - updated_at - - """column name""" - visibility -} - -""" -input type for updating data in table "utility_playbooks" -""" -input utility_playbooks_set_input { - created_at: timestamptz - description: String - id: uuid - map_name: String - name: String - owner_steam_id: bigint - side: e_sides_enum - team_id: uuid - updated_at: timestamptz - visibility: e_utility_visibility_enum -} - -"""aggregate stddev on columns""" -type utility_playbooks_stddev_fields { - owner_steam_id: Float -} - -"""aggregate stddev_pop on columns""" -type utility_playbooks_stddev_pop_fields { - owner_steam_id: Float -} - -"""aggregate stddev_samp on columns""" -type utility_playbooks_stddev_samp_fields { - owner_steam_id: Float -} - -""" -Streaming cursor of the table "utility_playbooks" -""" -input utility_playbooks_stream_cursor_input { - """Stream column input with initial value""" - initial_value: utility_playbooks_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input utility_playbooks_stream_cursor_value_input { - created_at: timestamptz - description: String - id: uuid - map_name: String - name: String - owner_steam_id: bigint - side: e_sides_enum - team_id: uuid - updated_at: timestamptz - visibility: e_utility_visibility_enum -} - -"""aggregate sum on columns""" -type utility_playbooks_sum_fields { - owner_steam_id: bigint -} - -""" -update columns of table "utility_playbooks" -""" -enum utility_playbooks_update_column { - """column name""" - created_at - - """column name""" - description - - """column name""" - id - - """column name""" - map_name - - """column name""" - name - - """column name""" - owner_steam_id - - """column name""" - side - - """column name""" - team_id - - """column name""" - updated_at - - """column name""" - visibility -} - -input utility_playbooks_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: utility_playbooks_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_playbooks_set_input - - """filter the rows which have to be updated""" - where: utility_playbooks_bool_exp! -} - -"""aggregate var_pop on columns""" -type utility_playbooks_var_pop_fields { - owner_steam_id: Float -} - -"""aggregate var_samp on columns""" -type utility_playbooks_var_samp_fields { - owner_steam_id: Float -} - -"""aggregate variance on columns""" -type utility_playbooks_variance_fields { - owner_steam_id: Float -} - -""" -columns and relationships of "utility_practice_invites" -""" -type utility_practice_invites { - created_at: timestamptz! - - """An object relationship""" - invited_by: players - invited_by_steam_id: bigint - - """An object relationship""" - player: players! - - """An object relationship""" - session: utility_practice_sessions! - steam_id: bigint! - utility_practice_session_id: uuid! -} - -""" -aggregated selection of "utility_practice_invites" -""" -type utility_practice_invites_aggregate { - aggregate: utility_practice_invites_aggregate_fields - nodes: [utility_practice_invites!]! -} - -input utility_practice_invites_aggregate_bool_exp { - count: utility_practice_invites_aggregate_bool_exp_count -} - -input utility_practice_invites_aggregate_bool_exp_count { - arguments: [utility_practice_invites_select_column!] - distinct: Boolean - filter: utility_practice_invites_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "utility_practice_invites" -""" -type utility_practice_invites_aggregate_fields { - avg: utility_practice_invites_avg_fields - count(columns: [utility_practice_invites_select_column!], distinct: Boolean): Int! - max: utility_practice_invites_max_fields - min: utility_practice_invites_min_fields - stddev: utility_practice_invites_stddev_fields - stddev_pop: utility_practice_invites_stddev_pop_fields - stddev_samp: utility_practice_invites_stddev_samp_fields - sum: utility_practice_invites_sum_fields - var_pop: utility_practice_invites_var_pop_fields - var_samp: utility_practice_invites_var_samp_fields - variance: utility_practice_invites_variance_fields -} - -""" -order by aggregate values of table "utility_practice_invites" -""" -input utility_practice_invites_aggregate_order_by { - avg: utility_practice_invites_avg_order_by - count: order_by - max: utility_practice_invites_max_order_by - min: utility_practice_invites_min_order_by - stddev: utility_practice_invites_stddev_order_by - stddev_pop: utility_practice_invites_stddev_pop_order_by - stddev_samp: utility_practice_invites_stddev_samp_order_by - sum: utility_practice_invites_sum_order_by - var_pop: utility_practice_invites_var_pop_order_by - var_samp: utility_practice_invites_var_samp_order_by - variance: utility_practice_invites_variance_order_by -} - -""" -input type for inserting array relation for remote table "utility_practice_invites" -""" -input utility_practice_invites_arr_rel_insert_input { - data: [utility_practice_invites_insert_input!]! - - """upsert condition""" - on_conflict: utility_practice_invites_on_conflict -} - -"""aggregate avg on columns""" -type utility_practice_invites_avg_fields { - invited_by_steam_id: Float - steam_id: Float -} - -""" -order by avg() on columns of table "utility_practice_invites" -""" -input utility_practice_invites_avg_order_by { - invited_by_steam_id: order_by - steam_id: order_by -} - -""" -Boolean expression to filter rows from the table "utility_practice_invites". All fields are combined with a logical 'AND'. -""" -input utility_practice_invites_bool_exp { - _and: [utility_practice_invites_bool_exp!] - _not: utility_practice_invites_bool_exp - _or: [utility_practice_invites_bool_exp!] - created_at: timestamptz_comparison_exp - invited_by: players_bool_exp - invited_by_steam_id: bigint_comparison_exp - player: players_bool_exp - session: utility_practice_sessions_bool_exp - steam_id: bigint_comparison_exp - utility_practice_session_id: uuid_comparison_exp -} - -""" -unique or primary key constraints on table "utility_practice_invites" -""" -enum utility_practice_invites_constraint { - """ - unique or primary key constraint on columns "steam_id", "utility_practice_session_id" - """ - utility_practice_invites_pkey -} - -""" -input type for incrementing numeric columns in table "utility_practice_invites" -""" -input utility_practice_invites_inc_input { - invited_by_steam_id: bigint - steam_id: bigint -} - -""" -input type for inserting data into table "utility_practice_invites" -""" -input utility_practice_invites_insert_input { - created_at: timestamptz - invited_by: players_obj_rel_insert_input - invited_by_steam_id: bigint - player: players_obj_rel_insert_input - session: utility_practice_sessions_obj_rel_insert_input - steam_id: bigint - utility_practice_session_id: uuid -} - -"""aggregate max on columns""" -type utility_practice_invites_max_fields { - created_at: timestamptz - invited_by_steam_id: bigint - steam_id: bigint - utility_practice_session_id: uuid -} - -""" -order by max() on columns of table "utility_practice_invites" -""" -input utility_practice_invites_max_order_by { - created_at: order_by - invited_by_steam_id: order_by - steam_id: order_by - utility_practice_session_id: order_by -} - -"""aggregate min on columns""" -type utility_practice_invites_min_fields { - created_at: timestamptz - invited_by_steam_id: bigint - steam_id: bigint - utility_practice_session_id: uuid -} - -""" -order by min() on columns of table "utility_practice_invites" -""" -input utility_practice_invites_min_order_by { - created_at: order_by - invited_by_steam_id: order_by - steam_id: order_by - utility_practice_session_id: order_by -} - -""" -response of any mutation on the table "utility_practice_invites" -""" -type utility_practice_invites_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [utility_practice_invites!]! -} - -""" -on_conflict condition type for table "utility_practice_invites" -""" -input utility_practice_invites_on_conflict { - constraint: utility_practice_invites_constraint! - update_columns: [utility_practice_invites_update_column!]! = [] - where: utility_practice_invites_bool_exp -} - -"""Ordering options when selecting data from "utility_practice_invites".""" -input utility_practice_invites_order_by { - created_at: order_by - invited_by: players_order_by - invited_by_steam_id: order_by - player: players_order_by - session: utility_practice_sessions_order_by - steam_id: order_by - utility_practice_session_id: order_by -} - -"""primary key columns input for table: utility_practice_invites""" -input utility_practice_invites_pk_columns_input { - steam_id: bigint! - utility_practice_session_id: uuid! -} - -""" -select columns of table "utility_practice_invites" -""" -enum utility_practice_invites_select_column { - """column name""" - created_at - - """column name""" - invited_by_steam_id - - """column name""" - steam_id - - """column name""" - utility_practice_session_id -} - -""" -input type for updating data in table "utility_practice_invites" -""" -input utility_practice_invites_set_input { - created_at: timestamptz - invited_by_steam_id: bigint - steam_id: bigint - utility_practice_session_id: uuid -} - -"""aggregate stddev on columns""" -type utility_practice_invites_stddev_fields { - invited_by_steam_id: Float - steam_id: Float -} - -""" -order by stddev() on columns of table "utility_practice_invites" -""" -input utility_practice_invites_stddev_order_by { - invited_by_steam_id: order_by - steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type utility_practice_invites_stddev_pop_fields { - invited_by_steam_id: Float - steam_id: Float -} - -""" -order by stddev_pop() on columns of table "utility_practice_invites" -""" -input utility_practice_invites_stddev_pop_order_by { - invited_by_steam_id: order_by - steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type utility_practice_invites_stddev_samp_fields { - invited_by_steam_id: Float - steam_id: Float -} - -""" -order by stddev_samp() on columns of table "utility_practice_invites" -""" -input utility_practice_invites_stddev_samp_order_by { - invited_by_steam_id: order_by - steam_id: order_by -} - -""" -Streaming cursor of the table "utility_practice_invites" -""" -input utility_practice_invites_stream_cursor_input { - """Stream column input with initial value""" - initial_value: utility_practice_invites_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input utility_practice_invites_stream_cursor_value_input { - created_at: timestamptz - invited_by_steam_id: bigint - steam_id: bigint - utility_practice_session_id: uuid -} - -"""aggregate sum on columns""" -type utility_practice_invites_sum_fields { - invited_by_steam_id: bigint - steam_id: bigint -} - -""" -order by sum() on columns of table "utility_practice_invites" -""" -input utility_practice_invites_sum_order_by { - invited_by_steam_id: order_by - steam_id: order_by -} - -""" -update columns of table "utility_practice_invites" -""" -enum utility_practice_invites_update_column { - """column name""" - created_at - - """column name""" - invited_by_steam_id - - """column name""" - steam_id - - """column name""" - utility_practice_session_id -} - -input utility_practice_invites_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: utility_practice_invites_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_practice_invites_set_input - - """filter the rows which have to be updated""" - where: utility_practice_invites_bool_exp! -} - -"""aggregate var_pop on columns""" -type utility_practice_invites_var_pop_fields { - invited_by_steam_id: Float - steam_id: Float -} - -""" -order by var_pop() on columns of table "utility_practice_invites" -""" -input utility_practice_invites_var_pop_order_by { - invited_by_steam_id: order_by - steam_id: order_by -} - -"""aggregate var_samp on columns""" -type utility_practice_invites_var_samp_fields { - invited_by_steam_id: Float - steam_id: Float -} - -""" -order by var_samp() on columns of table "utility_practice_invites" -""" -input utility_practice_invites_var_samp_order_by { - invited_by_steam_id: order_by - steam_id: order_by -} - -"""aggregate variance on columns""" -type utility_practice_invites_variance_fields { - invited_by_steam_id: Float - steam_id: Float -} - -""" -order by variance() on columns of table "utility_practice_invites" -""" -input utility_practice_invites_variance_order_by { - invited_by_steam_id: order_by - steam_id: order_by -} - -""" -columns and relationships of "utility_practice_sessions" -""" -type utility_practice_sessions { - access: e_utility_practice_access_enum! - - """ - A computed field, executes function "can_manage_utility_practice_session" - """ - can_manage: Boolean - - """ - A computed field, executes function "can_view_utility_practice_session" - """ - can_view: Boolean - - """An object relationship""" - collection: utility_collections - collection_id: uuid - - """ - A computed field, executes function "utility_practice_connection_link" - """ - connection_link: String - - """ - A computed field, executes function "utility_practice_connection_string" - """ - connection_string: String - created_at: timestamptz! - - """An object relationship""" - e_utility_practice_status: e_utility_practice_statuses! - empty_since: timestamptz - expires_at: timestamptz - failure_reason: String - first_joined_at: timestamptz - - """An object relationship""" - host: players - host_steam_id: bigint - id: uuid! - invite_code: String! - - """An array relationship""" - invites( - """distinct select on columns""" - distinct_on: [utility_practice_invites_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: [utility_practice_invites_order_by!] - - """filter the rows returned""" - where: utility_practice_invites_bool_exp - ): [utility_practice_invites!]! - - """An aggregate relationship""" - invites_aggregate( - """distinct select on columns""" - distinct_on: [utility_practice_invites_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: [utility_practice_invites_order_by!] - - """filter the rows returned""" - where: utility_practice_invites_bool_exp - ): utility_practice_invites_aggregate! - - """ - A computed field, executes function "is_utility_practice_member" - """ - is_member: Boolean - is_open: Boolean! - is_render: Boolean! - last_occupied_at: timestamptz - map_changing_at: timestamptz - map_name: String! - - """An object relationship""" - match: matches - match_id: uuid - notify_when_ready: Boolean! - - """An object relationship""" - playbook: utility_playbooks - playbook_id: uuid - region: String - status: e_utility_practice_statuses_enum! - - """An object relationship""" - team: teams - team_id: uuid - updated_at: timestamptz! -} - -""" -aggregated selection of "utility_practice_sessions" -""" -type utility_practice_sessions_aggregate { - aggregate: utility_practice_sessions_aggregate_fields - nodes: [utility_practice_sessions!]! -} - -input utility_practice_sessions_aggregate_bool_exp { - bool_and: utility_practice_sessions_aggregate_bool_exp_bool_and - bool_or: utility_practice_sessions_aggregate_bool_exp_bool_or - count: utility_practice_sessions_aggregate_bool_exp_count -} - -input utility_practice_sessions_aggregate_bool_exp_bool_and { - arguments: utility_practice_sessions_select_column_utility_practice_sessions_aggregate_bool_exp_bool_and_arguments_columns! - distinct: Boolean - filter: utility_practice_sessions_bool_exp - predicate: Boolean_comparison_exp! -} - -input utility_practice_sessions_aggregate_bool_exp_bool_or { - arguments: utility_practice_sessions_select_column_utility_practice_sessions_aggregate_bool_exp_bool_or_arguments_columns! - distinct: Boolean - filter: utility_practice_sessions_bool_exp - predicate: Boolean_comparison_exp! -} - -input utility_practice_sessions_aggregate_bool_exp_count { - arguments: [utility_practice_sessions_select_column!] - distinct: Boolean - filter: utility_practice_sessions_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "utility_practice_sessions" -""" -type utility_practice_sessions_aggregate_fields { - avg: utility_practice_sessions_avg_fields - count(columns: [utility_practice_sessions_select_column!], distinct: Boolean): Int! - max: utility_practice_sessions_max_fields - min: utility_practice_sessions_min_fields - stddev: utility_practice_sessions_stddev_fields - stddev_pop: utility_practice_sessions_stddev_pop_fields - stddev_samp: utility_practice_sessions_stddev_samp_fields - sum: utility_practice_sessions_sum_fields - var_pop: utility_practice_sessions_var_pop_fields - var_samp: utility_practice_sessions_var_samp_fields - variance: utility_practice_sessions_variance_fields -} - -""" -order by aggregate values of table "utility_practice_sessions" -""" -input utility_practice_sessions_aggregate_order_by { - avg: utility_practice_sessions_avg_order_by - count: order_by - max: utility_practice_sessions_max_order_by - min: utility_practice_sessions_min_order_by - stddev: utility_practice_sessions_stddev_order_by - stddev_pop: utility_practice_sessions_stddev_pop_order_by - stddev_samp: utility_practice_sessions_stddev_samp_order_by - sum: utility_practice_sessions_sum_order_by - var_pop: utility_practice_sessions_var_pop_order_by - var_samp: utility_practice_sessions_var_samp_order_by - variance: utility_practice_sessions_variance_order_by -} - -""" -input type for inserting array relation for remote table "utility_practice_sessions" -""" -input utility_practice_sessions_arr_rel_insert_input { - data: [utility_practice_sessions_insert_input!]! - - """upsert condition""" - on_conflict: utility_practice_sessions_on_conflict -} - -"""aggregate avg on columns""" -type utility_practice_sessions_avg_fields { - host_steam_id: Float -} - -""" -order by avg() on columns of table "utility_practice_sessions" -""" -input utility_practice_sessions_avg_order_by { - host_steam_id: order_by -} - -""" -Boolean expression to filter rows from the table "utility_practice_sessions". All fields are combined with a logical 'AND'. -""" -input utility_practice_sessions_bool_exp { - _and: [utility_practice_sessions_bool_exp!] - _not: utility_practice_sessions_bool_exp - _or: [utility_practice_sessions_bool_exp!] - access: e_utility_practice_access_enum_comparison_exp - can_manage: Boolean_comparison_exp - can_view: Boolean_comparison_exp - collection: utility_collections_bool_exp - collection_id: uuid_comparison_exp - connection_link: String_comparison_exp - connection_string: String_comparison_exp - created_at: timestamptz_comparison_exp - e_utility_practice_status: e_utility_practice_statuses_bool_exp - empty_since: timestamptz_comparison_exp - expires_at: timestamptz_comparison_exp - failure_reason: String_comparison_exp - first_joined_at: timestamptz_comparison_exp - host: players_bool_exp - host_steam_id: bigint_comparison_exp - id: uuid_comparison_exp - invite_code: String_comparison_exp - invites: utility_practice_invites_bool_exp - invites_aggregate: utility_practice_invites_aggregate_bool_exp - is_member: Boolean_comparison_exp - is_open: Boolean_comparison_exp - is_render: Boolean_comparison_exp - last_occupied_at: timestamptz_comparison_exp - map_changing_at: timestamptz_comparison_exp - map_name: String_comparison_exp - match: matches_bool_exp - match_id: uuid_comparison_exp - notify_when_ready: Boolean_comparison_exp - playbook: utility_playbooks_bool_exp - playbook_id: uuid_comparison_exp - region: String_comparison_exp - status: e_utility_practice_statuses_enum_comparison_exp - team: teams_bool_exp - team_id: uuid_comparison_exp - updated_at: timestamptz_comparison_exp -} - -""" -unique or primary key constraints on table "utility_practice_sessions" -""" -enum utility_practice_sessions_constraint { - """ - unique or primary key constraint on columns "invite_code" - """ - utility_practice_sessions_invite_code_idx - - """ - unique or primary key constraint on columns "match_id" - """ - utility_practice_sessions_match_key - - """ - unique or primary key constraint on columns "host_steam_id" - """ - utility_practice_sessions_one_live_per_host_idx - - """ - unique or primary key constraint on columns "id" - """ - utility_practice_sessions_pkey -} - -""" -input type for incrementing numeric columns in table "utility_practice_sessions" -""" -input utility_practice_sessions_inc_input { - host_steam_id: bigint -} - -""" -input type for inserting data into table "utility_practice_sessions" -""" -input utility_practice_sessions_insert_input { - access: e_utility_practice_access_enum - collection: utility_collections_obj_rel_insert_input - collection_id: uuid - created_at: timestamptz - e_utility_practice_status: e_utility_practice_statuses_obj_rel_insert_input - empty_since: timestamptz - expires_at: timestamptz - failure_reason: String - first_joined_at: timestamptz - host: players_obj_rel_insert_input - host_steam_id: bigint - id: uuid - invite_code: String - invites: utility_practice_invites_arr_rel_insert_input - is_open: Boolean - is_render: Boolean - last_occupied_at: timestamptz - map_changing_at: timestamptz - map_name: String - match: matches_obj_rel_insert_input - match_id: uuid - notify_when_ready: Boolean - playbook: utility_playbooks_obj_rel_insert_input - playbook_id: uuid - region: String - status: e_utility_practice_statuses_enum - team: teams_obj_rel_insert_input - team_id: uuid - updated_at: timestamptz -} - -"""aggregate max on columns""" -type utility_practice_sessions_max_fields { - collection_id: uuid - - """ - A computed field, executes function "utility_practice_connection_link" - """ - connection_link: String - - """ - A computed field, executes function "utility_practice_connection_string" - """ - connection_string: String - created_at: timestamptz - empty_since: timestamptz - expires_at: timestamptz - failure_reason: String - first_joined_at: timestamptz - host_steam_id: bigint - id: uuid - invite_code: String - last_occupied_at: timestamptz - map_changing_at: timestamptz - map_name: String - match_id: uuid - playbook_id: uuid - region: String - team_id: uuid - updated_at: timestamptz -} - -""" -order by max() on columns of table "utility_practice_sessions" -""" -input utility_practice_sessions_max_order_by { - collection_id: order_by - created_at: order_by - empty_since: order_by - expires_at: order_by - failure_reason: order_by - first_joined_at: order_by - host_steam_id: order_by - id: order_by - invite_code: order_by - last_occupied_at: order_by - map_changing_at: order_by - map_name: order_by - match_id: order_by - playbook_id: order_by - region: order_by - team_id: order_by - updated_at: order_by -} - -"""aggregate min on columns""" -type utility_practice_sessions_min_fields { - collection_id: uuid - - """ - A computed field, executes function "utility_practice_connection_link" - """ - connection_link: String - - """ - A computed field, executes function "utility_practice_connection_string" - """ - connection_string: String - created_at: timestamptz - empty_since: timestamptz - expires_at: timestamptz - failure_reason: String - first_joined_at: timestamptz - host_steam_id: bigint - id: uuid - invite_code: String - last_occupied_at: timestamptz - map_changing_at: timestamptz - map_name: String - match_id: uuid - playbook_id: uuid - region: String - team_id: uuid - updated_at: timestamptz -} - -""" -order by min() on columns of table "utility_practice_sessions" -""" -input utility_practice_sessions_min_order_by { - collection_id: order_by - created_at: order_by - empty_since: order_by - expires_at: order_by - failure_reason: order_by - first_joined_at: order_by - host_steam_id: order_by - id: order_by - invite_code: order_by - last_occupied_at: order_by - map_changing_at: order_by - map_name: order_by - match_id: order_by - playbook_id: order_by - region: order_by - team_id: order_by - updated_at: order_by -} - -""" -response of any mutation on the table "utility_practice_sessions" -""" -type utility_practice_sessions_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [utility_practice_sessions!]! -} - -""" -input type for inserting object relation for remote table "utility_practice_sessions" -""" -input utility_practice_sessions_obj_rel_insert_input { - data: utility_practice_sessions_insert_input! - - """upsert condition""" - on_conflict: utility_practice_sessions_on_conflict -} - -""" -on_conflict condition type for table "utility_practice_sessions" -""" -input utility_practice_sessions_on_conflict { - constraint: utility_practice_sessions_constraint! - update_columns: [utility_practice_sessions_update_column!]! = [] - where: utility_practice_sessions_bool_exp -} - -"""Ordering options when selecting data from "utility_practice_sessions".""" -input utility_practice_sessions_order_by { - access: order_by - can_manage: order_by - can_view: order_by - collection: utility_collections_order_by - collection_id: order_by - connection_link: order_by - connection_string: order_by - created_at: order_by - e_utility_practice_status: e_utility_practice_statuses_order_by - empty_since: order_by - expires_at: order_by - failure_reason: order_by - first_joined_at: order_by - host: players_order_by - host_steam_id: order_by - id: order_by - invite_code: order_by - invites_aggregate: utility_practice_invites_aggregate_order_by - is_member: order_by - is_open: order_by - is_render: order_by - last_occupied_at: order_by - map_changing_at: order_by - map_name: order_by - match: matches_order_by - match_id: order_by - notify_when_ready: order_by - playbook: utility_playbooks_order_by - playbook_id: order_by - region: order_by - status: order_by - team: teams_order_by - team_id: order_by - updated_at: order_by -} - -"""primary key columns input for table: utility_practice_sessions""" -input utility_practice_sessions_pk_columns_input { - id: uuid! -} - -""" -select columns of table "utility_practice_sessions" -""" -enum utility_practice_sessions_select_column { - """column name""" - access - - """column name""" - collection_id - - """column name""" - created_at - - """column name""" - empty_since - - """column name""" - expires_at - - """column name""" - failure_reason - - """column name""" - first_joined_at - - """column name""" - host_steam_id - - """column name""" - id - - """column name""" - invite_code - - """column name""" - is_open - - """column name""" - is_render - - """column name""" - last_occupied_at - - """column name""" - map_changing_at - - """column name""" - map_name - - """column name""" - match_id - - """column name""" - notify_when_ready - - """column name""" - playbook_id - - """column name""" - region - - """column name""" - status - - """column name""" - team_id - - """column name""" - updated_at -} - -""" -select "utility_practice_sessions_aggregate_bool_exp_bool_and_arguments_columns" columns of table "utility_practice_sessions" -""" -enum utility_practice_sessions_select_column_utility_practice_sessions_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - is_open - - """column name""" - is_render - - """column name""" - notify_when_ready -} - -""" -select "utility_practice_sessions_aggregate_bool_exp_bool_or_arguments_columns" columns of table "utility_practice_sessions" -""" -enum utility_practice_sessions_select_column_utility_practice_sessions_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - is_open - - """column name""" - is_render - - """column name""" - notify_when_ready -} - -""" -input type for updating data in table "utility_practice_sessions" -""" -input utility_practice_sessions_set_input { - access: e_utility_practice_access_enum - collection_id: uuid - created_at: timestamptz - empty_since: timestamptz - expires_at: timestamptz - failure_reason: String - first_joined_at: timestamptz - host_steam_id: bigint - id: uuid - invite_code: String - is_open: Boolean - is_render: Boolean - last_occupied_at: timestamptz - map_changing_at: timestamptz - map_name: String - match_id: uuid - notify_when_ready: Boolean - playbook_id: uuid - region: String - status: e_utility_practice_statuses_enum - team_id: uuid - updated_at: timestamptz -} - -"""aggregate stddev on columns""" -type utility_practice_sessions_stddev_fields { - host_steam_id: Float -} - -""" -order by stddev() on columns of table "utility_practice_sessions" -""" -input utility_practice_sessions_stddev_order_by { - host_steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type utility_practice_sessions_stddev_pop_fields { - host_steam_id: Float -} - -""" -order by stddev_pop() on columns of table "utility_practice_sessions" -""" -input utility_practice_sessions_stddev_pop_order_by { - host_steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type utility_practice_sessions_stddev_samp_fields { - host_steam_id: Float -} - -""" -order by stddev_samp() on columns of table "utility_practice_sessions" -""" -input utility_practice_sessions_stddev_samp_order_by { - host_steam_id: order_by -} - -""" -Streaming cursor of the table "utility_practice_sessions" -""" -input utility_practice_sessions_stream_cursor_input { - """Stream column input with initial value""" - initial_value: utility_practice_sessions_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input utility_practice_sessions_stream_cursor_value_input { - access: e_utility_practice_access_enum - collection_id: uuid - created_at: timestamptz - empty_since: timestamptz - expires_at: timestamptz - failure_reason: String - first_joined_at: timestamptz - host_steam_id: bigint - id: uuid - invite_code: String - is_open: Boolean - is_render: Boolean - last_occupied_at: timestamptz - map_changing_at: timestamptz - map_name: String - match_id: uuid - notify_when_ready: Boolean - playbook_id: uuid - region: String - status: e_utility_practice_statuses_enum - team_id: uuid - updated_at: timestamptz -} - -"""aggregate sum on columns""" -type utility_practice_sessions_sum_fields { - host_steam_id: bigint -} - -""" -order by sum() on columns of table "utility_practice_sessions" -""" -input utility_practice_sessions_sum_order_by { - host_steam_id: order_by -} - -""" -update columns of table "utility_practice_sessions" -""" -enum utility_practice_sessions_update_column { - """column name""" - access - - """column name""" - collection_id - - """column name""" - created_at - - """column name""" - empty_since - - """column name""" - expires_at - - """column name""" - failure_reason - - """column name""" - first_joined_at - - """column name""" - host_steam_id - - """column name""" - id - - """column name""" - invite_code - - """column name""" - is_open - - """column name""" - is_render - - """column name""" - last_occupied_at - - """column name""" - map_changing_at - - """column name""" - map_name - - """column name""" - match_id - - """column name""" - notify_when_ready - - """column name""" - playbook_id - - """column name""" - region - - """column name""" - status - - """column name""" - team_id - - """column name""" - updated_at -} - -input utility_practice_sessions_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: utility_practice_sessions_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: utility_practice_sessions_set_input - - """filter the rows which have to be updated""" - where: utility_practice_sessions_bool_exp! -} - -"""aggregate var_pop on columns""" -type utility_practice_sessions_var_pop_fields { - host_steam_id: Float -} - -""" -order by var_pop() on columns of table "utility_practice_sessions" -""" -input utility_practice_sessions_var_pop_order_by { - host_steam_id: order_by -} - -"""aggregate var_samp on columns""" -type utility_practice_sessions_var_samp_fields { - host_steam_id: Float -} - -""" -order by var_samp() on columns of table "utility_practice_sessions" -""" -input utility_practice_sessions_var_samp_order_by { - host_steam_id: order_by -} - -"""aggregate variance on columns""" -type utility_practice_sessions_variance_fields { - host_steam_id: Float -} - -""" -order by variance() on columns of table "utility_practice_sessions" -""" -input utility_practice_sessions_variance_order_by { - host_steam_id: order_by -} - -scalar uuid - -""" -Boolean expression to compare columns of type "uuid". All fields are combined with logical 'AND'. -""" -input uuid_array_comparison_exp { - """is the array contained in the given array value""" - _contained_in: [uuid!] - - """does the array contain the given value""" - _contains: [uuid!] - _eq: [uuid!] - _gt: [uuid!] - _gte: [uuid!] - _in: [[uuid!]!] - _is_null: Boolean - _lt: [uuid!] - _lte: [uuid!] - _neq: [uuid!] - _nin: [[uuid!]!] -} - -""" -Boolean expression to compare columns of type "uuid". All fields are combined with logical 'AND'. -""" -input uuid_comparison_exp { - _eq: uuid - _gt: uuid - _gte: uuid - _in: [uuid!] - _is_null: Boolean - _lt: uuid - _lte: uuid - _neq: uuid - _nin: [uuid!] -} - -""" -columns and relationships of "v_event_player_stats" -""" -type v_event_player_stats { - assists: Int - deaths: Int - - """An object relationship""" - event: events - event_id: uuid - headshot_percentage: float8 - headshots: Int - kdr: float8 - kills: Int - matches_played: Int - - """An object relationship""" - player: players - player_steam_id: bigint -} - -""" -aggregated selection of "v_event_player_stats" -""" -type v_event_player_stats_aggregate { - aggregate: v_event_player_stats_aggregate_fields - nodes: [v_event_player_stats!]! -} - -input v_event_player_stats_aggregate_bool_exp { - avg: v_event_player_stats_aggregate_bool_exp_avg - corr: v_event_player_stats_aggregate_bool_exp_corr - count: v_event_player_stats_aggregate_bool_exp_count - covar_samp: v_event_player_stats_aggregate_bool_exp_covar_samp - max: v_event_player_stats_aggregate_bool_exp_max - min: v_event_player_stats_aggregate_bool_exp_min - stddev_samp: v_event_player_stats_aggregate_bool_exp_stddev_samp - sum: v_event_player_stats_aggregate_bool_exp_sum - var_samp: v_event_player_stats_aggregate_bool_exp_var_samp -} - -input v_event_player_stats_aggregate_bool_exp_avg { - arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_avg_arguments_columns! - distinct: Boolean - filter: v_event_player_stats_bool_exp - predicate: float8_comparison_exp! -} - -input v_event_player_stats_aggregate_bool_exp_corr { - arguments: v_event_player_stats_aggregate_bool_exp_corr_arguments! - distinct: Boolean - filter: v_event_player_stats_bool_exp - predicate: float8_comparison_exp! -} - -input v_event_player_stats_aggregate_bool_exp_corr_arguments { - X: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_corr_arguments_columns! - Y: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_corr_arguments_columns! -} - -input v_event_player_stats_aggregate_bool_exp_count { - arguments: [v_event_player_stats_select_column!] - distinct: Boolean - filter: v_event_player_stats_bool_exp - predicate: Int_comparison_exp! -} - -input v_event_player_stats_aggregate_bool_exp_covar_samp { - arguments: v_event_player_stats_aggregate_bool_exp_covar_samp_arguments! - distinct: Boolean - filter: v_event_player_stats_bool_exp - predicate: float8_comparison_exp! -} - -input v_event_player_stats_aggregate_bool_exp_covar_samp_arguments { - X: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_covar_samp_arguments_columns! - Y: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_covar_samp_arguments_columns! -} - -input v_event_player_stats_aggregate_bool_exp_max { - arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_max_arguments_columns! - distinct: Boolean - filter: v_event_player_stats_bool_exp - predicate: float8_comparison_exp! -} - -input v_event_player_stats_aggregate_bool_exp_min { - arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_min_arguments_columns! - distinct: Boolean - filter: v_event_player_stats_bool_exp - predicate: float8_comparison_exp! -} - -input v_event_player_stats_aggregate_bool_exp_stddev_samp { - arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns! - distinct: Boolean - filter: v_event_player_stats_bool_exp - predicate: float8_comparison_exp! -} - -input v_event_player_stats_aggregate_bool_exp_sum { - arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_sum_arguments_columns! - distinct: Boolean - filter: v_event_player_stats_bool_exp - predicate: float8_comparison_exp! -} - -input v_event_player_stats_aggregate_bool_exp_var_samp { - arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_var_samp_arguments_columns! - distinct: Boolean - filter: v_event_player_stats_bool_exp - predicate: float8_comparison_exp! -} - -""" -aggregate fields of "v_event_player_stats" -""" -type v_event_player_stats_aggregate_fields { - avg: v_event_player_stats_avg_fields - count(columns: [v_event_player_stats_select_column!], distinct: Boolean): Int! - max: v_event_player_stats_max_fields - min: v_event_player_stats_min_fields - stddev: v_event_player_stats_stddev_fields - stddev_pop: v_event_player_stats_stddev_pop_fields - stddev_samp: v_event_player_stats_stddev_samp_fields - sum: v_event_player_stats_sum_fields - var_pop: v_event_player_stats_var_pop_fields - var_samp: v_event_player_stats_var_samp_fields - variance: v_event_player_stats_variance_fields -} - -""" -order by aggregate values of table "v_event_player_stats" -""" -input v_event_player_stats_aggregate_order_by { - avg: v_event_player_stats_avg_order_by - count: order_by - max: v_event_player_stats_max_order_by - min: v_event_player_stats_min_order_by - stddev: v_event_player_stats_stddev_order_by - stddev_pop: v_event_player_stats_stddev_pop_order_by - stddev_samp: v_event_player_stats_stddev_samp_order_by - sum: v_event_player_stats_sum_order_by - var_pop: v_event_player_stats_var_pop_order_by - var_samp: v_event_player_stats_var_samp_order_by - variance: v_event_player_stats_variance_order_by -} - -""" -input type for inserting array relation for remote table "v_event_player_stats" -""" -input v_event_player_stats_arr_rel_insert_input { - data: [v_event_player_stats_insert_input!]! -} - -"""aggregate avg on columns""" -type v_event_player_stats_avg_fields { - assists: Float - deaths: Float - headshot_percentage: Float - headshots: Float - kdr: Float - kills: Float - matches_played: Float - player_steam_id: Float -} - -""" -order by avg() on columns of table "v_event_player_stats" -""" -input v_event_player_stats_avg_order_by { - assists: order_by - deaths: order_by - headshot_percentage: order_by - headshots: order_by - kdr: order_by - kills: order_by - matches_played: order_by - player_steam_id: order_by -} - -""" -Boolean expression to filter rows from the table "v_event_player_stats". All fields are combined with a logical 'AND'. -""" -input v_event_player_stats_bool_exp { - _and: [v_event_player_stats_bool_exp!] - _not: v_event_player_stats_bool_exp - _or: [v_event_player_stats_bool_exp!] - assists: Int_comparison_exp - deaths: Int_comparison_exp - event: events_bool_exp - event_id: uuid_comparison_exp - headshot_percentage: float8_comparison_exp - headshots: Int_comparison_exp - kdr: float8_comparison_exp - kills: Int_comparison_exp - matches_played: Int_comparison_exp - player: players_bool_exp - player_steam_id: bigint_comparison_exp -} - -""" -input type for inserting data into table "v_event_player_stats" -""" -input v_event_player_stats_insert_input { - assists: Int - deaths: Int - event: events_obj_rel_insert_input - event_id: uuid - headshot_percentage: float8 - headshots: Int - kdr: float8 - kills: Int - matches_played: Int - player: players_obj_rel_insert_input - player_steam_id: bigint -} - -"""aggregate max on columns""" -type v_event_player_stats_max_fields { - assists: Int - deaths: Int - event_id: uuid - headshot_percentage: float8 - headshots: Int - kdr: float8 - kills: Int - matches_played: Int - player_steam_id: bigint -} - -""" -order by max() on columns of table "v_event_player_stats" -""" -input v_event_player_stats_max_order_by { - assists: order_by - deaths: order_by - event_id: order_by - headshot_percentage: order_by - headshots: order_by - kdr: order_by - kills: order_by - matches_played: order_by - player_steam_id: order_by -} - -"""aggregate min on columns""" -type v_event_player_stats_min_fields { - assists: Int - deaths: Int - event_id: uuid - headshot_percentage: float8 - headshots: Int - kdr: float8 - kills: Int - matches_played: Int - player_steam_id: bigint -} - -""" -order by min() on columns of table "v_event_player_stats" -""" -input v_event_player_stats_min_order_by { - assists: order_by - deaths: order_by - event_id: order_by - headshot_percentage: order_by - headshots: order_by - kdr: order_by - kills: order_by - matches_played: order_by - player_steam_id: order_by -} - -"""Ordering options when selecting data from "v_event_player_stats".""" -input v_event_player_stats_order_by { - assists: order_by - deaths: order_by - event: events_order_by - event_id: order_by - headshot_percentage: order_by - headshots: order_by - kdr: order_by - kills: order_by - matches_played: order_by - player: players_order_by - player_steam_id: order_by -} - -""" -select columns of table "v_event_player_stats" -""" -enum v_event_player_stats_select_column { - """column name""" - assists - - """column name""" - deaths - - """column name""" - event_id - - """column name""" - headshot_percentage - - """column name""" - headshots - - """column name""" - kdr - - """column name""" - kills - - """column name""" - matches_played - - """column name""" - player_steam_id -} - -""" -select "v_event_player_stats_aggregate_bool_exp_avg_arguments_columns" columns of table "v_event_player_stats" -""" -enum v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_avg_arguments_columns { - """column name""" - headshot_percentage - - """column name""" - kdr -} - -""" -select "v_event_player_stats_aggregate_bool_exp_corr_arguments_columns" columns of table "v_event_player_stats" -""" -enum v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_corr_arguments_columns { - """column name""" - headshot_percentage - - """column name""" - kdr -} - -""" -select "v_event_player_stats_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "v_event_player_stats" -""" -enum v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_covar_samp_arguments_columns { - """column name""" - headshot_percentage - - """column name""" - kdr -} - -""" -select "v_event_player_stats_aggregate_bool_exp_max_arguments_columns" columns of table "v_event_player_stats" -""" -enum v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_max_arguments_columns { - """column name""" - headshot_percentage - - """column name""" - kdr -} - -""" -select "v_event_player_stats_aggregate_bool_exp_min_arguments_columns" columns of table "v_event_player_stats" -""" -enum v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_min_arguments_columns { - """column name""" - headshot_percentage - - """column name""" - kdr -} - -""" -select "v_event_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "v_event_player_stats" -""" -enum v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns { - """column name""" - headshot_percentage - - """column name""" - kdr -} - -""" -select "v_event_player_stats_aggregate_bool_exp_sum_arguments_columns" columns of table "v_event_player_stats" -""" -enum v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_sum_arguments_columns { - """column name""" - headshot_percentage - - """column name""" - kdr -} - -""" -select "v_event_player_stats_aggregate_bool_exp_var_samp_arguments_columns" columns of table "v_event_player_stats" -""" -enum v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_var_samp_arguments_columns { - """column name""" - headshot_percentage - - """column name""" - kdr -} - -"""aggregate stddev on columns""" -type v_event_player_stats_stddev_fields { - assists: Float - deaths: Float - headshot_percentage: Float - headshots: Float - kdr: Float - kills: Float - matches_played: Float - player_steam_id: Float -} - -""" -order by stddev() on columns of table "v_event_player_stats" -""" -input v_event_player_stats_stddev_order_by { - assists: order_by - deaths: order_by - headshot_percentage: order_by - headshots: order_by - kdr: order_by - kills: order_by - matches_played: order_by - player_steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type v_event_player_stats_stddev_pop_fields { - assists: Float - deaths: Float - headshot_percentage: Float - headshots: Float - kdr: Float - kills: Float - matches_played: Float - player_steam_id: Float -} - -""" -order by stddev_pop() on columns of table "v_event_player_stats" -""" -input v_event_player_stats_stddev_pop_order_by { - assists: order_by - deaths: order_by - headshot_percentage: order_by - headshots: order_by - kdr: order_by - kills: order_by - matches_played: order_by - player_steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type v_event_player_stats_stddev_samp_fields { - assists: Float - deaths: Float - headshot_percentage: Float - headshots: Float - kdr: Float - kills: Float - matches_played: Float - player_steam_id: Float -} - -""" -order by stddev_samp() on columns of table "v_event_player_stats" -""" -input v_event_player_stats_stddev_samp_order_by { - assists: order_by - deaths: order_by - headshot_percentage: order_by - headshots: order_by - kdr: order_by - kills: order_by - matches_played: order_by - player_steam_id: order_by -} - -""" -Streaming cursor of the table "v_event_player_stats" -""" -input v_event_player_stats_stream_cursor_input { - """Stream column input with initial value""" - initial_value: v_event_player_stats_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input v_event_player_stats_stream_cursor_value_input { - assists: Int - deaths: Int - event_id: uuid - headshot_percentage: float8 - headshots: Int - kdr: float8 - kills: Int - matches_played: Int - player_steam_id: bigint -} - -"""aggregate sum on columns""" -type v_event_player_stats_sum_fields { - assists: Int - deaths: Int - headshot_percentage: float8 - headshots: Int - kdr: float8 - kills: Int - matches_played: Int - player_steam_id: bigint -} - -""" -order by sum() on columns of table "v_event_player_stats" -""" -input v_event_player_stats_sum_order_by { - assists: order_by - deaths: order_by - headshot_percentage: order_by - headshots: order_by - kdr: order_by - kills: order_by - matches_played: order_by - player_steam_id: order_by -} - -"""aggregate var_pop on columns""" -type v_event_player_stats_var_pop_fields { - assists: Float - deaths: Float - headshot_percentage: Float - headshots: Float - kdr: Float - kills: Float - matches_played: Float - player_steam_id: Float -} - -""" -order by var_pop() on columns of table "v_event_player_stats" -""" -input v_event_player_stats_var_pop_order_by { - assists: order_by - deaths: order_by - headshot_percentage: order_by - headshots: order_by - kdr: order_by - kills: order_by - matches_played: order_by - player_steam_id: order_by -} - -"""aggregate var_samp on columns""" -type v_event_player_stats_var_samp_fields { - assists: Float - deaths: Float - headshot_percentage: Float - headshots: Float - kdr: Float - kills: Float - matches_played: Float - player_steam_id: Float -} - -""" -order by var_samp() on columns of table "v_event_player_stats" -""" -input v_event_player_stats_var_samp_order_by { - assists: order_by - deaths: order_by - headshot_percentage: order_by - headshots: order_by - kdr: order_by - kills: order_by - matches_played: order_by - player_steam_id: order_by -} - -"""aggregate variance on columns""" -type v_event_player_stats_variance_fields { - assists: Float - deaths: Float - headshot_percentage: Float - headshots: Float - kdr: Float - kills: Float - matches_played: Float - player_steam_id: Float -} - -""" -order by variance() on columns of table "v_event_player_stats" -""" -input v_event_player_stats_variance_order_by { - assists: order_by - deaths: order_by - headshot_percentage: order_by - headshots: order_by - kdr: order_by - kills: order_by - matches_played: order_by - player_steam_id: order_by -} - -""" -columns and relationships of "v_gpu_pool_status" -""" -type v_gpu_pool_status { - demo_free_gpu_nodes: Int - demo_in_progress: Boolean - demo_total_gpu_nodes: Int - free_gpu_nodes: Int - free_gpu_nodes_for_batch: Int - highlights_in_progress: Boolean - id: Int - live_in_progress: Boolean - registered_gpu_nodes: Int - rendering_total_gpu_nodes: Int - renders_paused_for_active_match: Boolean - streaming_free_gpu_nodes: Int - streaming_total_gpu_nodes: Int - total_gpu_nodes: Int -} - -""" -aggregated selection of "v_gpu_pool_status" -""" -type v_gpu_pool_status_aggregate { - aggregate: v_gpu_pool_status_aggregate_fields - nodes: [v_gpu_pool_status!]! -} - -""" -aggregate fields of "v_gpu_pool_status" -""" -type v_gpu_pool_status_aggregate_fields { - avg: v_gpu_pool_status_avg_fields - count(columns: [v_gpu_pool_status_select_column!], distinct: Boolean): Int! - max: v_gpu_pool_status_max_fields - min: v_gpu_pool_status_min_fields - stddev: v_gpu_pool_status_stddev_fields - stddev_pop: v_gpu_pool_status_stddev_pop_fields - stddev_samp: v_gpu_pool_status_stddev_samp_fields - sum: v_gpu_pool_status_sum_fields - var_pop: v_gpu_pool_status_var_pop_fields - var_samp: v_gpu_pool_status_var_samp_fields - variance: v_gpu_pool_status_variance_fields -} - -"""aggregate avg on columns""" -type v_gpu_pool_status_avg_fields { - demo_free_gpu_nodes: Float - demo_total_gpu_nodes: Float - free_gpu_nodes: Float - free_gpu_nodes_for_batch: Float - id: Float - registered_gpu_nodes: Float - rendering_total_gpu_nodes: Float - streaming_free_gpu_nodes: Float - streaming_total_gpu_nodes: Float - total_gpu_nodes: Float -} - -""" -Boolean expression to filter rows from the table "v_gpu_pool_status". All fields are combined with a logical 'AND'. -""" -input v_gpu_pool_status_bool_exp { - _and: [v_gpu_pool_status_bool_exp!] - _not: v_gpu_pool_status_bool_exp - _or: [v_gpu_pool_status_bool_exp!] - demo_free_gpu_nodes: Int_comparison_exp - demo_in_progress: Boolean_comparison_exp - demo_total_gpu_nodes: Int_comparison_exp - free_gpu_nodes: Int_comparison_exp - free_gpu_nodes_for_batch: Int_comparison_exp - highlights_in_progress: Boolean_comparison_exp - id: Int_comparison_exp - live_in_progress: Boolean_comparison_exp - registered_gpu_nodes: Int_comparison_exp - rendering_total_gpu_nodes: Int_comparison_exp - renders_paused_for_active_match: Boolean_comparison_exp - streaming_free_gpu_nodes: Int_comparison_exp - streaming_total_gpu_nodes: Int_comparison_exp - total_gpu_nodes: Int_comparison_exp -} - -"""aggregate max on columns""" -type v_gpu_pool_status_max_fields { - demo_free_gpu_nodes: Int - demo_total_gpu_nodes: Int - free_gpu_nodes: Int - free_gpu_nodes_for_batch: Int - id: Int - registered_gpu_nodes: Int - rendering_total_gpu_nodes: Int - streaming_free_gpu_nodes: Int - streaming_total_gpu_nodes: Int - total_gpu_nodes: Int -} - -"""aggregate min on columns""" -type v_gpu_pool_status_min_fields { - demo_free_gpu_nodes: Int - demo_total_gpu_nodes: Int - free_gpu_nodes: Int - free_gpu_nodes_for_batch: Int - id: Int - registered_gpu_nodes: Int - rendering_total_gpu_nodes: Int - streaming_free_gpu_nodes: Int - streaming_total_gpu_nodes: Int - total_gpu_nodes: Int -} - -"""Ordering options when selecting data from "v_gpu_pool_status".""" -input v_gpu_pool_status_order_by { - demo_free_gpu_nodes: order_by - demo_in_progress: order_by - demo_total_gpu_nodes: order_by - free_gpu_nodes: order_by - free_gpu_nodes_for_batch: order_by - highlights_in_progress: order_by - id: order_by - live_in_progress: order_by - registered_gpu_nodes: order_by - rendering_total_gpu_nodes: order_by - renders_paused_for_active_match: order_by - streaming_free_gpu_nodes: order_by - streaming_total_gpu_nodes: order_by - total_gpu_nodes: order_by -} - -""" -select columns of table "v_gpu_pool_status" -""" -enum v_gpu_pool_status_select_column { - """column name""" - demo_free_gpu_nodes - - """column name""" - demo_in_progress - - """column name""" - demo_total_gpu_nodes - - """column name""" - free_gpu_nodes - - """column name""" - free_gpu_nodes_for_batch - - """column name""" - highlights_in_progress - - """column name""" - id - - """column name""" - live_in_progress - - """column name""" - registered_gpu_nodes - - """column name""" - rendering_total_gpu_nodes - - """column name""" - renders_paused_for_active_match - - """column name""" - streaming_free_gpu_nodes - - """column name""" - streaming_total_gpu_nodes - - """column name""" - total_gpu_nodes -} - -"""aggregate stddev on columns""" -type v_gpu_pool_status_stddev_fields { - demo_free_gpu_nodes: Float - demo_total_gpu_nodes: Float - free_gpu_nodes: Float - free_gpu_nodes_for_batch: Float - id: Float - registered_gpu_nodes: Float - rendering_total_gpu_nodes: Float - streaming_free_gpu_nodes: Float - streaming_total_gpu_nodes: Float - total_gpu_nodes: Float -} - -"""aggregate stddev_pop on columns""" -type v_gpu_pool_status_stddev_pop_fields { - demo_free_gpu_nodes: Float - demo_total_gpu_nodes: Float - free_gpu_nodes: Float - free_gpu_nodes_for_batch: Float - id: Float - registered_gpu_nodes: Float - rendering_total_gpu_nodes: Float - streaming_free_gpu_nodes: Float - streaming_total_gpu_nodes: Float - total_gpu_nodes: Float -} - -"""aggregate stddev_samp on columns""" -type v_gpu_pool_status_stddev_samp_fields { - demo_free_gpu_nodes: Float - demo_total_gpu_nodes: Float - free_gpu_nodes: Float - free_gpu_nodes_for_batch: Float - id: Float - registered_gpu_nodes: Float - rendering_total_gpu_nodes: Float - streaming_free_gpu_nodes: Float - streaming_total_gpu_nodes: Float - total_gpu_nodes: Float -} - -""" -Streaming cursor of the table "v_gpu_pool_status" -""" -input v_gpu_pool_status_stream_cursor_input { - """Stream column input with initial value""" - initial_value: v_gpu_pool_status_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input v_gpu_pool_status_stream_cursor_value_input { - demo_free_gpu_nodes: Int - demo_in_progress: Boolean - demo_total_gpu_nodes: Int - free_gpu_nodes: Int - free_gpu_nodes_for_batch: Int - highlights_in_progress: Boolean - id: Int - live_in_progress: Boolean - registered_gpu_nodes: Int - rendering_total_gpu_nodes: Int - renders_paused_for_active_match: Boolean - streaming_free_gpu_nodes: Int - streaming_total_gpu_nodes: Int - total_gpu_nodes: Int -} - -"""aggregate sum on columns""" -type v_gpu_pool_status_sum_fields { - demo_free_gpu_nodes: Int - demo_total_gpu_nodes: Int - free_gpu_nodes: Int - free_gpu_nodes_for_batch: Int - id: Int - registered_gpu_nodes: Int - rendering_total_gpu_nodes: Int - streaming_free_gpu_nodes: Int - streaming_total_gpu_nodes: Int - total_gpu_nodes: Int -} - -"""aggregate var_pop on columns""" -type v_gpu_pool_status_var_pop_fields { - demo_free_gpu_nodes: Float - demo_total_gpu_nodes: Float - free_gpu_nodes: Float - free_gpu_nodes_for_batch: Float - id: Float - registered_gpu_nodes: Float - rendering_total_gpu_nodes: Float - streaming_free_gpu_nodes: Float - streaming_total_gpu_nodes: Float - total_gpu_nodes: Float -} - -"""aggregate var_samp on columns""" -type v_gpu_pool_status_var_samp_fields { - demo_free_gpu_nodes: Float - demo_total_gpu_nodes: Float - free_gpu_nodes: Float - free_gpu_nodes_for_batch: Float - id: Float - registered_gpu_nodes: Float - rendering_total_gpu_nodes: Float - streaming_free_gpu_nodes: Float - streaming_total_gpu_nodes: Float - total_gpu_nodes: Float -} - -"""aggregate variance on columns""" -type v_gpu_pool_status_variance_fields { - demo_free_gpu_nodes: Float - demo_total_gpu_nodes: Float - free_gpu_nodes: Float - free_gpu_nodes_for_batch: Float - id: Float - registered_gpu_nodes: Float - rendering_total_gpu_nodes: Float - streaming_free_gpu_nodes: Float - streaming_total_gpu_nodes: Float - total_gpu_nodes: Float -} - -""" -columns and relationships of "v_league_division_standings" -""" -type v_league_division_standings { - head_to_head_match_wins: Int - head_to_head_rounds_won: Int - league_division_id: uuid - league_season_division_id: uuid - league_season_id: uuid - - """An object relationship""" - league_team: league_teams - league_team_id: uuid - league_team_season_id: uuid - losses: Int - maps_lost: Int - maps_won: Int - matches_played: Int - matches_remaining: Int - rank: Int - round_diff: Int - rounds_lost: Int - rounds_won: Int - - """An object relationship""" - season_division: league_season_divisions - - """An object relationship""" - team_season: league_team_seasons - tournament_team_id: uuid - wins: Int -} - -""" -aggregated selection of "v_league_division_standings" -""" -type v_league_division_standings_aggregate { - aggregate: v_league_division_standings_aggregate_fields - nodes: [v_league_division_standings!]! -} - -input v_league_division_standings_aggregate_bool_exp { - count: v_league_division_standings_aggregate_bool_exp_count -} - -input v_league_division_standings_aggregate_bool_exp_count { - arguments: [v_league_division_standings_select_column!] - distinct: Boolean - filter: v_league_division_standings_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "v_league_division_standings" -""" -type v_league_division_standings_aggregate_fields { - avg: v_league_division_standings_avg_fields - count(columns: [v_league_division_standings_select_column!], distinct: Boolean): Int! - max: v_league_division_standings_max_fields - min: v_league_division_standings_min_fields - stddev: v_league_division_standings_stddev_fields - stddev_pop: v_league_division_standings_stddev_pop_fields - stddev_samp: v_league_division_standings_stddev_samp_fields - sum: v_league_division_standings_sum_fields - var_pop: v_league_division_standings_var_pop_fields - var_samp: v_league_division_standings_var_samp_fields - variance: v_league_division_standings_variance_fields -} - -""" -order by aggregate values of table "v_league_division_standings" -""" -input v_league_division_standings_aggregate_order_by { - avg: v_league_division_standings_avg_order_by - count: order_by - max: v_league_division_standings_max_order_by - min: v_league_division_standings_min_order_by - stddev: v_league_division_standings_stddev_order_by - stddev_pop: v_league_division_standings_stddev_pop_order_by - stddev_samp: v_league_division_standings_stddev_samp_order_by - sum: v_league_division_standings_sum_order_by - var_pop: v_league_division_standings_var_pop_order_by - var_samp: v_league_division_standings_var_samp_order_by - variance: v_league_division_standings_variance_order_by -} - -""" -input type for inserting array relation for remote table "v_league_division_standings" -""" -input v_league_division_standings_arr_rel_insert_input { - data: [v_league_division_standings_insert_input!]! -} - -"""aggregate avg on columns""" -type v_league_division_standings_avg_fields { - head_to_head_match_wins: Float - head_to_head_rounds_won: Float - losses: Float - maps_lost: Float - maps_won: Float - matches_played: Float - matches_remaining: Float - rank: Float - round_diff: Float - rounds_lost: Float - rounds_won: Float - wins: Float -} - -""" -order by avg() on columns of table "v_league_division_standings" -""" -input v_league_division_standings_avg_order_by { - head_to_head_match_wins: order_by - head_to_head_rounds_won: order_by - losses: order_by - maps_lost: order_by - maps_won: order_by - matches_played: order_by - matches_remaining: order_by - rank: order_by - round_diff: order_by - rounds_lost: order_by - rounds_won: order_by - wins: order_by -} - -""" -Boolean expression to filter rows from the table "v_league_division_standings". All fields are combined with a logical 'AND'. -""" -input v_league_division_standings_bool_exp { - _and: [v_league_division_standings_bool_exp!] - _not: v_league_division_standings_bool_exp - _or: [v_league_division_standings_bool_exp!] - head_to_head_match_wins: Int_comparison_exp - head_to_head_rounds_won: Int_comparison_exp - league_division_id: uuid_comparison_exp - league_season_division_id: uuid_comparison_exp - league_season_id: uuid_comparison_exp - league_team: league_teams_bool_exp - league_team_id: uuid_comparison_exp - league_team_season_id: uuid_comparison_exp - losses: Int_comparison_exp - maps_lost: Int_comparison_exp - maps_won: Int_comparison_exp - matches_played: Int_comparison_exp - matches_remaining: Int_comparison_exp - rank: Int_comparison_exp - round_diff: Int_comparison_exp - rounds_lost: Int_comparison_exp - rounds_won: Int_comparison_exp - season_division: league_season_divisions_bool_exp - team_season: league_team_seasons_bool_exp - tournament_team_id: uuid_comparison_exp - wins: Int_comparison_exp -} - -""" -input type for inserting data into table "v_league_division_standings" -""" -input v_league_division_standings_insert_input { - head_to_head_match_wins: Int - head_to_head_rounds_won: Int - league_division_id: uuid - league_season_division_id: uuid - league_season_id: uuid - league_team: league_teams_obj_rel_insert_input - league_team_id: uuid - league_team_season_id: uuid - losses: Int - maps_lost: Int - maps_won: Int - matches_played: Int - matches_remaining: Int - rank: Int - round_diff: Int - rounds_lost: Int - rounds_won: Int - season_division: league_season_divisions_obj_rel_insert_input - team_season: league_team_seasons_obj_rel_insert_input - tournament_team_id: uuid - wins: Int -} - -"""aggregate max on columns""" -type v_league_division_standings_max_fields { - head_to_head_match_wins: Int - head_to_head_rounds_won: Int - league_division_id: uuid - league_season_division_id: uuid - league_season_id: uuid - league_team_id: uuid - league_team_season_id: uuid - losses: Int - maps_lost: Int - maps_won: Int - matches_played: Int - matches_remaining: Int - rank: Int - round_diff: Int - rounds_lost: Int - rounds_won: Int - tournament_team_id: uuid - wins: Int -} - -""" -order by max() on columns of table "v_league_division_standings" -""" -input v_league_division_standings_max_order_by { - head_to_head_match_wins: order_by - head_to_head_rounds_won: order_by - league_division_id: order_by - league_season_division_id: order_by - league_season_id: order_by - league_team_id: order_by - league_team_season_id: order_by - losses: order_by - maps_lost: order_by - maps_won: order_by - matches_played: order_by - matches_remaining: order_by - rank: order_by - round_diff: order_by - rounds_lost: order_by - rounds_won: order_by - tournament_team_id: order_by - wins: order_by -} - -"""aggregate min on columns""" -type v_league_division_standings_min_fields { - head_to_head_match_wins: Int - head_to_head_rounds_won: Int - league_division_id: uuid - league_season_division_id: uuid - league_season_id: uuid - league_team_id: uuid - league_team_season_id: uuid - losses: Int - maps_lost: Int - maps_won: Int - matches_played: Int - matches_remaining: Int - rank: Int - round_diff: Int - rounds_lost: Int - rounds_won: Int - tournament_team_id: uuid - wins: Int -} - -""" -order by min() on columns of table "v_league_division_standings" -""" -input v_league_division_standings_min_order_by { - head_to_head_match_wins: order_by - head_to_head_rounds_won: order_by - league_division_id: order_by - league_season_division_id: order_by - league_season_id: order_by - league_team_id: order_by - league_team_season_id: order_by - losses: order_by - maps_lost: order_by - maps_won: order_by - matches_played: order_by - matches_remaining: order_by - rank: order_by - round_diff: order_by - rounds_lost: order_by - rounds_won: order_by - tournament_team_id: order_by - wins: order_by -} - -""" -Ordering options when selecting data from "v_league_division_standings". -""" -input v_league_division_standings_order_by { - head_to_head_match_wins: order_by - head_to_head_rounds_won: order_by - league_division_id: order_by - league_season_division_id: order_by - league_season_id: order_by - league_team: league_teams_order_by - league_team_id: order_by - league_team_season_id: order_by - losses: order_by - maps_lost: order_by - maps_won: order_by - matches_played: order_by - matches_remaining: order_by - rank: order_by - round_diff: order_by - rounds_lost: order_by - rounds_won: order_by - season_division: league_season_divisions_order_by - team_season: league_team_seasons_order_by - tournament_team_id: order_by - wins: order_by -} - -""" -select columns of table "v_league_division_standings" -""" -enum v_league_division_standings_select_column { - """column name""" - head_to_head_match_wins - - """column name""" - head_to_head_rounds_won - - """column name""" - league_division_id - - """column name""" - league_season_division_id - - """column name""" - league_season_id - - """column name""" - league_team_id - - """column name""" - league_team_season_id - - """column name""" - losses - - """column name""" - maps_lost - - """column name""" - maps_won - - """column name""" - matches_played - - """column name""" - matches_remaining - - """column name""" - rank - - """column name""" - round_diff - - """column name""" - rounds_lost - - """column name""" - rounds_won - - """column name""" - tournament_team_id - - """column name""" - wins -} - -"""aggregate stddev on columns""" -type v_league_division_standings_stddev_fields { - head_to_head_match_wins: Float - head_to_head_rounds_won: Float - losses: Float - maps_lost: Float - maps_won: Float - matches_played: Float - matches_remaining: Float - rank: Float - round_diff: Float - rounds_lost: Float - rounds_won: Float - wins: Float -} - -""" -order by stddev() on columns of table "v_league_division_standings" -""" -input v_league_division_standings_stddev_order_by { - head_to_head_match_wins: order_by - head_to_head_rounds_won: order_by - losses: order_by - maps_lost: order_by - maps_won: order_by - matches_played: order_by - matches_remaining: order_by - rank: order_by - round_diff: order_by - rounds_lost: order_by - rounds_won: order_by - wins: order_by -} - -"""aggregate stddev_pop on columns""" -type v_league_division_standings_stddev_pop_fields { - head_to_head_match_wins: Float - head_to_head_rounds_won: Float - losses: Float - maps_lost: Float - maps_won: Float - matches_played: Float - matches_remaining: Float - rank: Float - round_diff: Float - rounds_lost: Float - rounds_won: Float - wins: Float -} - -""" -order by stddev_pop() on columns of table "v_league_division_standings" -""" -input v_league_division_standings_stddev_pop_order_by { - head_to_head_match_wins: order_by - head_to_head_rounds_won: order_by - losses: order_by - maps_lost: order_by - maps_won: order_by - matches_played: order_by - matches_remaining: order_by - rank: order_by - round_diff: order_by - rounds_lost: order_by - rounds_won: order_by - wins: order_by -} - -"""aggregate stddev_samp on columns""" -type v_league_division_standings_stddev_samp_fields { - head_to_head_match_wins: Float - head_to_head_rounds_won: Float - losses: Float - maps_lost: Float - maps_won: Float - matches_played: Float - matches_remaining: Float - rank: Float - round_diff: Float - rounds_lost: Float - rounds_won: Float - wins: Float -} - -""" -order by stddev_samp() on columns of table "v_league_division_standings" -""" -input v_league_division_standings_stddev_samp_order_by { - head_to_head_match_wins: order_by - head_to_head_rounds_won: order_by - losses: order_by - maps_lost: order_by - maps_won: order_by - matches_played: order_by - matches_remaining: order_by - rank: order_by - round_diff: order_by - rounds_lost: order_by - rounds_won: order_by - wins: order_by -} - -""" -Streaming cursor of the table "v_league_division_standings" -""" -input v_league_division_standings_stream_cursor_input { - """Stream column input with initial value""" - initial_value: v_league_division_standings_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input v_league_division_standings_stream_cursor_value_input { - head_to_head_match_wins: Int - head_to_head_rounds_won: Int - league_division_id: uuid - league_season_division_id: uuid - league_season_id: uuid - league_team_id: uuid - league_team_season_id: uuid - losses: Int - maps_lost: Int - maps_won: Int - matches_played: Int - matches_remaining: Int - rank: Int - round_diff: Int - rounds_lost: Int - rounds_won: Int - tournament_team_id: uuid - wins: Int -} - -"""aggregate sum on columns""" -type v_league_division_standings_sum_fields { - head_to_head_match_wins: Int - head_to_head_rounds_won: Int - losses: Int - maps_lost: Int - maps_won: Int - matches_played: Int - matches_remaining: Int - rank: Int - round_diff: Int - rounds_lost: Int - rounds_won: Int - wins: Int -} - -""" -order by sum() on columns of table "v_league_division_standings" -""" -input v_league_division_standings_sum_order_by { - head_to_head_match_wins: order_by - head_to_head_rounds_won: order_by - losses: order_by - maps_lost: order_by - maps_won: order_by - matches_played: order_by - matches_remaining: order_by - rank: order_by - round_diff: order_by - rounds_lost: order_by - rounds_won: order_by - wins: order_by -} - -"""aggregate var_pop on columns""" -type v_league_division_standings_var_pop_fields { - head_to_head_match_wins: Float - head_to_head_rounds_won: Float - losses: Float - maps_lost: Float - maps_won: Float - matches_played: Float - matches_remaining: Float - rank: Float - round_diff: Float - rounds_lost: Float - rounds_won: Float - wins: Float -} - -""" -order by var_pop() on columns of table "v_league_division_standings" -""" -input v_league_division_standings_var_pop_order_by { - head_to_head_match_wins: order_by - head_to_head_rounds_won: order_by - losses: order_by - maps_lost: order_by - maps_won: order_by - matches_played: order_by - matches_remaining: order_by - rank: order_by - round_diff: order_by - rounds_lost: order_by - rounds_won: order_by - wins: order_by -} - -"""aggregate var_samp on columns""" -type v_league_division_standings_var_samp_fields { - head_to_head_match_wins: Float - head_to_head_rounds_won: Float - losses: Float - maps_lost: Float - maps_won: Float - matches_played: Float - matches_remaining: Float - rank: Float - round_diff: Float - rounds_lost: Float - rounds_won: Float - wins: Float -} - -""" -order by var_samp() on columns of table "v_league_division_standings" -""" -input v_league_division_standings_var_samp_order_by { - head_to_head_match_wins: order_by - head_to_head_rounds_won: order_by - losses: order_by - maps_lost: order_by - maps_won: order_by - matches_played: order_by - matches_remaining: order_by - rank: order_by - round_diff: order_by - rounds_lost: order_by - rounds_won: order_by - wins: order_by -} - -"""aggregate variance on columns""" -type v_league_division_standings_variance_fields { - head_to_head_match_wins: Float - head_to_head_rounds_won: Float - losses: Float - maps_lost: Float - maps_won: Float - matches_played: Float - matches_remaining: Float - rank: Float - round_diff: Float - rounds_lost: Float - rounds_won: Float - wins: Float -} - -""" -order by variance() on columns of table "v_league_division_standings" -""" -input v_league_division_standings_variance_order_by { - head_to_head_match_wins: order_by - head_to_head_rounds_won: order_by - losses: order_by - maps_lost: order_by - maps_won: order_by - matches_played: order_by - matches_remaining: order_by - rank: order_by - round_diff: order_by - rounds_lost: order_by - rounds_won: order_by - wins: order_by -} - -""" -columns and relationships of "v_league_season_player_stats" -""" -type v_league_season_player_stats { - assists: Int - deaths: Int - headshot_percentage: float8 - headshots: Int - kdr: float8 - kills: Int - league_division_id: uuid - league_season_division_id: uuid - league_season_id: uuid - - """An object relationship""" - league_team: league_teams - league_team_id: uuid - league_team_season_id: uuid - matches_played: Int - - """An object relationship""" - player: players - player_steam_id: bigint -} - -""" -aggregated selection of "v_league_season_player_stats" -""" -type v_league_season_player_stats_aggregate { - aggregate: v_league_season_player_stats_aggregate_fields - nodes: [v_league_season_player_stats!]! -} - -input v_league_season_player_stats_aggregate_bool_exp { - avg: v_league_season_player_stats_aggregate_bool_exp_avg - corr: v_league_season_player_stats_aggregate_bool_exp_corr - count: v_league_season_player_stats_aggregate_bool_exp_count - covar_samp: v_league_season_player_stats_aggregate_bool_exp_covar_samp - max: v_league_season_player_stats_aggregate_bool_exp_max - min: v_league_season_player_stats_aggregate_bool_exp_min - stddev_samp: v_league_season_player_stats_aggregate_bool_exp_stddev_samp - sum: v_league_season_player_stats_aggregate_bool_exp_sum - var_samp: v_league_season_player_stats_aggregate_bool_exp_var_samp -} - -input v_league_season_player_stats_aggregate_bool_exp_avg { - arguments: v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_avg_arguments_columns! - distinct: Boolean - filter: v_league_season_player_stats_bool_exp - predicate: float8_comparison_exp! -} - -input v_league_season_player_stats_aggregate_bool_exp_corr { - arguments: v_league_season_player_stats_aggregate_bool_exp_corr_arguments! - distinct: Boolean - filter: v_league_season_player_stats_bool_exp - predicate: float8_comparison_exp! -} - -input v_league_season_player_stats_aggregate_bool_exp_corr_arguments { - X: v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_corr_arguments_columns! - Y: v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_corr_arguments_columns! -} - -input v_league_season_player_stats_aggregate_bool_exp_count { - arguments: [v_league_season_player_stats_select_column!] - distinct: Boolean - filter: v_league_season_player_stats_bool_exp - predicate: Int_comparison_exp! -} - -input v_league_season_player_stats_aggregate_bool_exp_covar_samp { - arguments: v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments! - distinct: Boolean - filter: v_league_season_player_stats_bool_exp - predicate: float8_comparison_exp! -} - -input v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments { - X: v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments_columns! - Y: v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments_columns! -} - -input v_league_season_player_stats_aggregate_bool_exp_max { - arguments: v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_max_arguments_columns! - distinct: Boolean - filter: v_league_season_player_stats_bool_exp - predicate: float8_comparison_exp! -} - -input v_league_season_player_stats_aggregate_bool_exp_min { - arguments: v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_min_arguments_columns! - distinct: Boolean - filter: v_league_season_player_stats_bool_exp - predicate: float8_comparison_exp! -} - -input v_league_season_player_stats_aggregate_bool_exp_stddev_samp { - arguments: v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns! - distinct: Boolean - filter: v_league_season_player_stats_bool_exp - predicate: float8_comparison_exp! -} - -input v_league_season_player_stats_aggregate_bool_exp_sum { - arguments: v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_sum_arguments_columns! - distinct: Boolean - filter: v_league_season_player_stats_bool_exp - predicate: float8_comparison_exp! -} - -input v_league_season_player_stats_aggregate_bool_exp_var_samp { - arguments: v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_var_samp_arguments_columns! - distinct: Boolean - filter: v_league_season_player_stats_bool_exp - predicate: float8_comparison_exp! -} - -""" -aggregate fields of "v_league_season_player_stats" -""" -type v_league_season_player_stats_aggregate_fields { - avg: v_league_season_player_stats_avg_fields - count(columns: [v_league_season_player_stats_select_column!], distinct: Boolean): Int! - max: v_league_season_player_stats_max_fields - min: v_league_season_player_stats_min_fields - stddev: v_league_season_player_stats_stddev_fields - stddev_pop: v_league_season_player_stats_stddev_pop_fields - stddev_samp: v_league_season_player_stats_stddev_samp_fields - sum: v_league_season_player_stats_sum_fields - var_pop: v_league_season_player_stats_var_pop_fields - var_samp: v_league_season_player_stats_var_samp_fields - variance: v_league_season_player_stats_variance_fields -} - -""" -order by aggregate values of table "v_league_season_player_stats" -""" -input v_league_season_player_stats_aggregate_order_by { - avg: v_league_season_player_stats_avg_order_by - count: order_by - max: v_league_season_player_stats_max_order_by - min: v_league_season_player_stats_min_order_by - stddev: v_league_season_player_stats_stddev_order_by - stddev_pop: v_league_season_player_stats_stddev_pop_order_by - stddev_samp: v_league_season_player_stats_stddev_samp_order_by - sum: v_league_season_player_stats_sum_order_by - var_pop: v_league_season_player_stats_var_pop_order_by - var_samp: v_league_season_player_stats_var_samp_order_by - variance: v_league_season_player_stats_variance_order_by -} - -""" -input type for inserting array relation for remote table "v_league_season_player_stats" -""" -input v_league_season_player_stats_arr_rel_insert_input { - data: [v_league_season_player_stats_insert_input!]! -} - -"""aggregate avg on columns""" -type v_league_season_player_stats_avg_fields { - assists: Float - deaths: Float - headshot_percentage: Float - headshots: Float - kdr: Float - kills: Float - matches_played: Float - player_steam_id: Float -} - -""" -order by avg() on columns of table "v_league_season_player_stats" -""" -input v_league_season_player_stats_avg_order_by { - assists: order_by - deaths: order_by - headshot_percentage: order_by - headshots: order_by - kdr: order_by - kills: order_by - matches_played: order_by - player_steam_id: order_by -} - -""" -Boolean expression to filter rows from the table "v_league_season_player_stats". All fields are combined with a logical 'AND'. -""" -input v_league_season_player_stats_bool_exp { - _and: [v_league_season_player_stats_bool_exp!] - _not: v_league_season_player_stats_bool_exp - _or: [v_league_season_player_stats_bool_exp!] - assists: Int_comparison_exp - deaths: Int_comparison_exp - headshot_percentage: float8_comparison_exp - headshots: Int_comparison_exp - kdr: float8_comparison_exp - kills: Int_comparison_exp - league_division_id: uuid_comparison_exp - league_season_division_id: uuid_comparison_exp - league_season_id: uuid_comparison_exp - league_team: league_teams_bool_exp - league_team_id: uuid_comparison_exp - league_team_season_id: uuid_comparison_exp - matches_played: Int_comparison_exp - player: players_bool_exp - player_steam_id: bigint_comparison_exp -} - -""" -input type for inserting data into table "v_league_season_player_stats" -""" -input v_league_season_player_stats_insert_input { - assists: Int - deaths: Int - headshot_percentage: float8 - headshots: Int - kdr: float8 - kills: Int - league_division_id: uuid - league_season_division_id: uuid - league_season_id: uuid - league_team: league_teams_obj_rel_insert_input - league_team_id: uuid - league_team_season_id: uuid - matches_played: Int - player: players_obj_rel_insert_input - player_steam_id: bigint -} - -"""aggregate max on columns""" -type v_league_season_player_stats_max_fields { - assists: Int - deaths: Int - headshot_percentage: float8 - headshots: Int - kdr: float8 - kills: Int - league_division_id: uuid - league_season_division_id: uuid - league_season_id: uuid - league_team_id: uuid - league_team_season_id: uuid - matches_played: Int - player_steam_id: bigint -} - -""" -order by max() on columns of table "v_league_season_player_stats" -""" -input v_league_season_player_stats_max_order_by { - assists: order_by - deaths: order_by - headshot_percentage: order_by - headshots: order_by - kdr: order_by - kills: order_by - league_division_id: order_by - league_season_division_id: order_by - league_season_id: order_by - league_team_id: order_by - league_team_season_id: order_by - matches_played: order_by - player_steam_id: order_by -} - -"""aggregate min on columns""" -type v_league_season_player_stats_min_fields { - assists: Int - deaths: Int - headshot_percentage: float8 - headshots: Int - kdr: float8 - kills: Int - league_division_id: uuid - league_season_division_id: uuid - league_season_id: uuid - league_team_id: uuid - league_team_season_id: uuid - matches_played: Int - player_steam_id: bigint -} - -""" -order by min() on columns of table "v_league_season_player_stats" -""" -input v_league_season_player_stats_min_order_by { - assists: order_by - deaths: order_by - headshot_percentage: order_by - headshots: order_by - kdr: order_by - kills: order_by - league_division_id: order_by - league_season_division_id: order_by - league_season_id: order_by - league_team_id: order_by - league_team_season_id: order_by - matches_played: order_by - player_steam_id: order_by -} - -""" -Ordering options when selecting data from "v_league_season_player_stats". -""" -input v_league_season_player_stats_order_by { - assists: order_by - deaths: order_by - headshot_percentage: order_by - headshots: order_by - kdr: order_by - kills: order_by - league_division_id: order_by - league_season_division_id: order_by - league_season_id: order_by - league_team: league_teams_order_by - league_team_id: order_by - league_team_season_id: order_by - matches_played: order_by - player: players_order_by - player_steam_id: order_by -} - -""" -select columns of table "v_league_season_player_stats" -""" -enum v_league_season_player_stats_select_column { - """column name""" - assists - - """column name""" - deaths - - """column name""" - headshot_percentage - - """column name""" - headshots - - """column name""" - kdr - - """column name""" - kills - - """column name""" - league_division_id - - """column name""" - league_season_division_id - - """column name""" - league_season_id - - """column name""" - league_team_id - - """column name""" - league_team_season_id - - """column name""" - matches_played - - """column name""" - player_steam_id -} - -""" -select "v_league_season_player_stats_aggregate_bool_exp_avg_arguments_columns" columns of table "v_league_season_player_stats" -""" -enum v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_avg_arguments_columns { - """column name""" - headshot_percentage - - """column name""" - kdr -} - -""" -select "v_league_season_player_stats_aggregate_bool_exp_corr_arguments_columns" columns of table "v_league_season_player_stats" -""" -enum v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_corr_arguments_columns { - """column name""" - headshot_percentage - - """column name""" - kdr -} - -""" -select "v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "v_league_season_player_stats" -""" -enum v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments_columns { - """column name""" - headshot_percentage - - """column name""" - kdr -} - -""" -select "v_league_season_player_stats_aggregate_bool_exp_max_arguments_columns" columns of table "v_league_season_player_stats" -""" -enum v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_max_arguments_columns { - """column name""" - headshot_percentage - - """column name""" - kdr -} - -""" -select "v_league_season_player_stats_aggregate_bool_exp_min_arguments_columns" columns of table "v_league_season_player_stats" -""" -enum v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_min_arguments_columns { - """column name""" - headshot_percentage - - """column name""" - kdr -} - -""" -select "v_league_season_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "v_league_season_player_stats" -""" -enum v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns { - """column name""" - headshot_percentage - - """column name""" - kdr -} - -""" -select "v_league_season_player_stats_aggregate_bool_exp_sum_arguments_columns" columns of table "v_league_season_player_stats" -""" -enum v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_sum_arguments_columns { - """column name""" - headshot_percentage - - """column name""" - kdr -} - -""" -select "v_league_season_player_stats_aggregate_bool_exp_var_samp_arguments_columns" columns of table "v_league_season_player_stats" -""" -enum v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_var_samp_arguments_columns { - """column name""" - headshot_percentage - - """column name""" - kdr -} - -"""aggregate stddev on columns""" -type v_league_season_player_stats_stddev_fields { - assists: Float - deaths: Float - headshot_percentage: Float - headshots: Float - kdr: Float - kills: Float - matches_played: Float - player_steam_id: Float -} - -""" -order by stddev() on columns of table "v_league_season_player_stats" -""" -input v_league_season_player_stats_stddev_order_by { - assists: order_by - deaths: order_by - headshot_percentage: order_by - headshots: order_by - kdr: order_by - kills: order_by - matches_played: order_by - player_steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type v_league_season_player_stats_stddev_pop_fields { - assists: Float - deaths: Float - headshot_percentage: Float - headshots: Float - kdr: Float - kills: Float - matches_played: Float - player_steam_id: Float -} - -""" -order by stddev_pop() on columns of table "v_league_season_player_stats" -""" -input v_league_season_player_stats_stddev_pop_order_by { - assists: order_by - deaths: order_by - headshot_percentage: order_by - headshots: order_by - kdr: order_by - kills: order_by - matches_played: order_by - player_steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type v_league_season_player_stats_stddev_samp_fields { - assists: Float - deaths: Float - headshot_percentage: Float - headshots: Float - kdr: Float - kills: Float - matches_played: Float - player_steam_id: Float -} - -""" -order by stddev_samp() on columns of table "v_league_season_player_stats" -""" -input v_league_season_player_stats_stddev_samp_order_by { - assists: order_by - deaths: order_by - headshot_percentage: order_by - headshots: order_by - kdr: order_by - kills: order_by - matches_played: order_by - player_steam_id: order_by -} - -""" -Streaming cursor of the table "v_league_season_player_stats" -""" -input v_league_season_player_stats_stream_cursor_input { - """Stream column input with initial value""" - initial_value: v_league_season_player_stats_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input v_league_season_player_stats_stream_cursor_value_input { - assists: Int - deaths: Int - headshot_percentage: float8 - headshots: Int - kdr: float8 - kills: Int - league_division_id: uuid - league_season_division_id: uuid - league_season_id: uuid - league_team_id: uuid - league_team_season_id: uuid - matches_played: Int - player_steam_id: bigint -} - -"""aggregate sum on columns""" -type v_league_season_player_stats_sum_fields { - assists: Int - deaths: Int - headshot_percentage: float8 - headshots: Int - kdr: float8 - kills: Int - matches_played: Int - player_steam_id: bigint -} - -""" -order by sum() on columns of table "v_league_season_player_stats" -""" -input v_league_season_player_stats_sum_order_by { - assists: order_by - deaths: order_by - headshot_percentage: order_by - headshots: order_by - kdr: order_by - kills: order_by - matches_played: order_by - player_steam_id: order_by -} - -"""aggregate var_pop on columns""" -type v_league_season_player_stats_var_pop_fields { - assists: Float - deaths: Float - headshot_percentage: Float - headshots: Float - kdr: Float - kills: Float - matches_played: Float - player_steam_id: Float -} - -""" -order by var_pop() on columns of table "v_league_season_player_stats" -""" -input v_league_season_player_stats_var_pop_order_by { - assists: order_by - deaths: order_by - headshot_percentage: order_by - headshots: order_by - kdr: order_by - kills: order_by - matches_played: order_by - player_steam_id: order_by -} - -"""aggregate var_samp on columns""" -type v_league_season_player_stats_var_samp_fields { - assists: Float - deaths: Float - headshot_percentage: Float - headshots: Float - kdr: Float - kills: Float - matches_played: Float - player_steam_id: Float -} - -""" -order by var_samp() on columns of table "v_league_season_player_stats" -""" -input v_league_season_player_stats_var_samp_order_by { - assists: order_by - deaths: order_by - headshot_percentage: order_by - headshots: order_by - kdr: order_by - kills: order_by - matches_played: order_by - player_steam_id: order_by -} - -"""aggregate variance on columns""" -type v_league_season_player_stats_variance_fields { - assists: Float - deaths: Float - headshot_percentage: Float - headshots: Float - kdr: Float - kills: Float - matches_played: Float - player_steam_id: Float -} - -""" -order by variance() on columns of table "v_league_season_player_stats" -""" -input v_league_season_player_stats_variance_order_by { - assists: order_by - deaths: order_by - headshot_percentage: order_by - headshots: order_by - kdr: order_by - kills: order_by - matches_played: order_by - player_steam_id: order_by -} - -""" -columns and relationships of "v_match_captains" -""" -type v_match_captains { - captain: Boolean - discord_id: String - id: uuid - - """An object relationship""" - lineup: match_lineups - match_lineup_id: uuid - placeholder_name: String - - """An object relationship""" - player: players - steam_id: bigint -} - -""" -aggregated selection of "v_match_captains" -""" -type v_match_captains_aggregate { - aggregate: v_match_captains_aggregate_fields - nodes: [v_match_captains!]! -} - -""" -aggregate fields of "v_match_captains" -""" -type v_match_captains_aggregate_fields { - avg: v_match_captains_avg_fields - count(columns: [v_match_captains_select_column!], distinct: Boolean): Int! - max: v_match_captains_max_fields - min: v_match_captains_min_fields - stddev: v_match_captains_stddev_fields - stddev_pop: v_match_captains_stddev_pop_fields - stddev_samp: v_match_captains_stddev_samp_fields - sum: v_match_captains_sum_fields - var_pop: v_match_captains_var_pop_fields - var_samp: v_match_captains_var_samp_fields - variance: v_match_captains_variance_fields -} - -"""aggregate avg on columns""" -type v_match_captains_avg_fields { - steam_id: Float -} - -""" -Boolean expression to filter rows from the table "v_match_captains". All fields are combined with a logical 'AND'. -""" -input v_match_captains_bool_exp { - _and: [v_match_captains_bool_exp!] - _not: v_match_captains_bool_exp - _or: [v_match_captains_bool_exp!] - captain: Boolean_comparison_exp - discord_id: String_comparison_exp - id: uuid_comparison_exp - lineup: match_lineups_bool_exp - match_lineup_id: uuid_comparison_exp - placeholder_name: String_comparison_exp - player: players_bool_exp - steam_id: bigint_comparison_exp -} - -""" -input type for incrementing numeric columns in table "v_match_captains" -""" -input v_match_captains_inc_input { - steam_id: bigint -} - -""" -input type for inserting data into table "v_match_captains" -""" -input v_match_captains_insert_input { - captain: Boolean - discord_id: String - id: uuid - lineup: match_lineups_obj_rel_insert_input - match_lineup_id: uuid - placeholder_name: String - player: players_obj_rel_insert_input - steam_id: bigint -} - -"""aggregate max on columns""" -type v_match_captains_max_fields { - discord_id: String - id: uuid - match_lineup_id: uuid - placeholder_name: String - steam_id: bigint -} - -"""aggregate min on columns""" -type v_match_captains_min_fields { - discord_id: String - id: uuid - match_lineup_id: uuid - placeholder_name: String - steam_id: bigint -} - -""" -response of any mutation on the table "v_match_captains" -""" -type v_match_captains_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [v_match_captains!]! -} - -""" -input type for inserting object relation for remote table "v_match_captains" -""" -input v_match_captains_obj_rel_insert_input { - data: v_match_captains_insert_input! -} - -"""Ordering options when selecting data from "v_match_captains".""" -input v_match_captains_order_by { - captain: order_by - discord_id: order_by - id: order_by - lineup: match_lineups_order_by - match_lineup_id: order_by - placeholder_name: order_by - player: players_order_by - steam_id: order_by -} - -""" -select columns of table "v_match_captains" -""" -enum v_match_captains_select_column { - """column name""" - captain - - """column name""" - discord_id - - """column name""" - id - - """column name""" - match_lineup_id - - """column name""" - placeholder_name - - """column name""" - steam_id -} - -""" -input type for updating data in table "v_match_captains" -""" -input v_match_captains_set_input { - captain: Boolean - discord_id: String - id: uuid - match_lineup_id: uuid - placeholder_name: String - steam_id: bigint -} - -"""aggregate stddev on columns""" -type v_match_captains_stddev_fields { - steam_id: Float -} - -"""aggregate stddev_pop on columns""" -type v_match_captains_stddev_pop_fields { - steam_id: Float -} - -"""aggregate stddev_samp on columns""" -type v_match_captains_stddev_samp_fields { - steam_id: Float -} - -""" -Streaming cursor of the table "v_match_captains" -""" -input v_match_captains_stream_cursor_input { - """Stream column input with initial value""" - initial_value: v_match_captains_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input v_match_captains_stream_cursor_value_input { - captain: Boolean - discord_id: String - id: uuid - match_lineup_id: uuid - placeholder_name: String - steam_id: bigint -} - -"""aggregate sum on columns""" -type v_match_captains_sum_fields { - steam_id: bigint -} - -input v_match_captains_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: v_match_captains_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: v_match_captains_set_input - - """filter the rows which have to be updated""" - where: v_match_captains_bool_exp! -} - -"""aggregate var_pop on columns""" -type v_match_captains_var_pop_fields { - steam_id: Float -} - -"""aggregate var_samp on columns""" -type v_match_captains_var_samp_fields { - steam_id: Float -} - -"""aggregate variance on columns""" -type v_match_captains_variance_fields { - steam_id: Float -} - -""" -columns and relationships of "v_match_clutches" -""" -type v_match_clutches { - against_count: Int - - """An object relationship""" - clutcher: players - clutcher_steam_id: bigint - kills_in_clutch: Int - - """An object relationship""" - match: matches - match_id: uuid - - """An object relationship""" - match_lineup: match_lineups - match_lineup_id: uuid - - """An object relationship""" - match_map: match_maps - match_map_id: uuid - outcome: String - round: Int - side: String -} - -""" -aggregated selection of "v_match_clutches" -""" -type v_match_clutches_aggregate { - aggregate: v_match_clutches_aggregate_fields - nodes: [v_match_clutches!]! -} - -input v_match_clutches_aggregate_bool_exp { - count: v_match_clutches_aggregate_bool_exp_count -} - -input v_match_clutches_aggregate_bool_exp_count { - arguments: [v_match_clutches_select_column!] - distinct: Boolean - filter: v_match_clutches_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "v_match_clutches" -""" -type v_match_clutches_aggregate_fields { - avg: v_match_clutches_avg_fields - count(columns: [v_match_clutches_select_column!], distinct: Boolean): Int! - max: v_match_clutches_max_fields - min: v_match_clutches_min_fields - stddev: v_match_clutches_stddev_fields - stddev_pop: v_match_clutches_stddev_pop_fields - stddev_samp: v_match_clutches_stddev_samp_fields - sum: v_match_clutches_sum_fields - var_pop: v_match_clutches_var_pop_fields - var_samp: v_match_clutches_var_samp_fields - variance: v_match_clutches_variance_fields -} - -""" -order by aggregate values of table "v_match_clutches" -""" -input v_match_clutches_aggregate_order_by { - avg: v_match_clutches_avg_order_by - count: order_by - max: v_match_clutches_max_order_by - min: v_match_clutches_min_order_by - stddev: v_match_clutches_stddev_order_by - stddev_pop: v_match_clutches_stddev_pop_order_by - stddev_samp: v_match_clutches_stddev_samp_order_by - sum: v_match_clutches_sum_order_by - var_pop: v_match_clutches_var_pop_order_by - var_samp: v_match_clutches_var_samp_order_by - variance: v_match_clutches_variance_order_by -} - -""" -input type for inserting array relation for remote table "v_match_clutches" -""" -input v_match_clutches_arr_rel_insert_input { - data: [v_match_clutches_insert_input!]! -} - -"""aggregate avg on columns""" -type v_match_clutches_avg_fields { - against_count: Float - clutcher_steam_id: Float - kills_in_clutch: Float - round: Float -} - -""" -order by avg() on columns of table "v_match_clutches" -""" -input v_match_clutches_avg_order_by { - against_count: order_by - clutcher_steam_id: order_by - kills_in_clutch: order_by - round: order_by -} - -""" -Boolean expression to filter rows from the table "v_match_clutches". All fields are combined with a logical 'AND'. -""" -input v_match_clutches_bool_exp { - _and: [v_match_clutches_bool_exp!] - _not: v_match_clutches_bool_exp - _or: [v_match_clutches_bool_exp!] - against_count: Int_comparison_exp - clutcher: players_bool_exp - clutcher_steam_id: bigint_comparison_exp - kills_in_clutch: Int_comparison_exp - match: matches_bool_exp - match_id: uuid_comparison_exp - match_lineup: match_lineups_bool_exp - match_lineup_id: uuid_comparison_exp - match_map: match_maps_bool_exp - match_map_id: uuid_comparison_exp - outcome: String_comparison_exp - round: Int_comparison_exp - side: String_comparison_exp -} - -""" -input type for inserting data into table "v_match_clutches" -""" -input v_match_clutches_insert_input { - against_count: Int - clutcher: players_obj_rel_insert_input - clutcher_steam_id: bigint - kills_in_clutch: Int - match: matches_obj_rel_insert_input - match_id: uuid - match_lineup: match_lineups_obj_rel_insert_input - match_lineup_id: uuid - match_map: match_maps_obj_rel_insert_input - match_map_id: uuid - outcome: String - round: Int - side: String -} - -"""aggregate max on columns""" -type v_match_clutches_max_fields { - against_count: Int - clutcher_steam_id: bigint - kills_in_clutch: Int - match_id: uuid - match_lineup_id: uuid - match_map_id: uuid - outcome: String - round: Int - side: String -} - -""" -order by max() on columns of table "v_match_clutches" -""" -input v_match_clutches_max_order_by { - against_count: order_by - clutcher_steam_id: order_by - kills_in_clutch: order_by - match_id: order_by - match_lineup_id: order_by - match_map_id: order_by - outcome: order_by - round: order_by - side: order_by -} - -"""aggregate min on columns""" -type v_match_clutches_min_fields { - against_count: Int - clutcher_steam_id: bigint - kills_in_clutch: Int - match_id: uuid - match_lineup_id: uuid - match_map_id: uuid - outcome: String - round: Int - side: String -} - -""" -order by min() on columns of table "v_match_clutches" -""" -input v_match_clutches_min_order_by { - against_count: order_by - clutcher_steam_id: order_by - kills_in_clutch: order_by - match_id: order_by - match_lineup_id: order_by - match_map_id: order_by - outcome: order_by - round: order_by - side: order_by -} - -"""Ordering options when selecting data from "v_match_clutches".""" -input v_match_clutches_order_by { - against_count: order_by - clutcher: players_order_by - clutcher_steam_id: order_by - kills_in_clutch: order_by - match: matches_order_by - match_id: order_by - match_lineup: match_lineups_order_by - match_lineup_id: order_by - match_map: match_maps_order_by - match_map_id: order_by - outcome: order_by - round: order_by - side: order_by -} - -""" -select columns of table "v_match_clutches" -""" -enum v_match_clutches_select_column { - """column name""" - against_count - - """column name""" - clutcher_steam_id - - """column name""" - kills_in_clutch - - """column name""" - match_id - - """column name""" - match_lineup_id - - """column name""" - match_map_id - - """column name""" - outcome - - """column name""" - round - - """column name""" - side -} - -"""aggregate stddev on columns""" -type v_match_clutches_stddev_fields { - against_count: Float - clutcher_steam_id: Float - kills_in_clutch: Float - round: Float -} - -""" -order by stddev() on columns of table "v_match_clutches" -""" -input v_match_clutches_stddev_order_by { - against_count: order_by - clutcher_steam_id: order_by - kills_in_clutch: order_by - round: order_by -} - -"""aggregate stddev_pop on columns""" -type v_match_clutches_stddev_pop_fields { - against_count: Float - clutcher_steam_id: Float - kills_in_clutch: Float - round: Float -} - -""" -order by stddev_pop() on columns of table "v_match_clutches" -""" -input v_match_clutches_stddev_pop_order_by { - against_count: order_by - clutcher_steam_id: order_by - kills_in_clutch: order_by - round: order_by -} - -"""aggregate stddev_samp on columns""" -type v_match_clutches_stddev_samp_fields { - against_count: Float - clutcher_steam_id: Float - kills_in_clutch: Float - round: Float -} - -""" -order by stddev_samp() on columns of table "v_match_clutches" -""" -input v_match_clutches_stddev_samp_order_by { - against_count: order_by - clutcher_steam_id: order_by - kills_in_clutch: order_by - round: order_by -} - -""" -Streaming cursor of the table "v_match_clutches" -""" -input v_match_clutches_stream_cursor_input { - """Stream column input with initial value""" - initial_value: v_match_clutches_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input v_match_clutches_stream_cursor_value_input { - against_count: Int - clutcher_steam_id: bigint - kills_in_clutch: Int - match_id: uuid - match_lineup_id: uuid - match_map_id: uuid - outcome: String - round: Int - side: String -} - -"""aggregate sum on columns""" -type v_match_clutches_sum_fields { - against_count: Int - clutcher_steam_id: bigint - kills_in_clutch: Int - round: Int -} - -""" -order by sum() on columns of table "v_match_clutches" -""" -input v_match_clutches_sum_order_by { - against_count: order_by - clutcher_steam_id: order_by - kills_in_clutch: order_by - round: order_by -} - -"""aggregate var_pop on columns""" -type v_match_clutches_var_pop_fields { - against_count: Float - clutcher_steam_id: Float - kills_in_clutch: Float - round: Float -} - -""" -order by var_pop() on columns of table "v_match_clutches" -""" -input v_match_clutches_var_pop_order_by { - against_count: order_by - clutcher_steam_id: order_by - kills_in_clutch: order_by - round: order_by -} - -"""aggregate var_samp on columns""" -type v_match_clutches_var_samp_fields { - against_count: Float - clutcher_steam_id: Float - kills_in_clutch: Float - round: Float -} - -""" -order by var_samp() on columns of table "v_match_clutches" -""" -input v_match_clutches_var_samp_order_by { - against_count: order_by - clutcher_steam_id: order_by - kills_in_clutch: order_by - round: order_by -} - -"""aggregate variance on columns""" -type v_match_clutches_variance_fields { - against_count: Float - clutcher_steam_id: Float - kills_in_clutch: Float - round: Float -} - -""" -order by variance() on columns of table "v_match_clutches" -""" -input v_match_clutches_variance_order_by { - against_count: order_by - clutcher_steam_id: order_by - kills_in_clutch: order_by - round: order_by -} - -""" -columns and relationships of "v_match_kill_pairs" -""" -type v_match_kill_pairs { - killer_side: String - killer_steam_id: bigint - kills: Int - - """An object relationship""" - match: matches - match_id: uuid - - """An object relationship""" - match_map: match_maps - match_map_id: uuid - victim_side: String - victim_steam_id: bigint - weapon: String -} - -""" -aggregated selection of "v_match_kill_pairs" -""" -type v_match_kill_pairs_aggregate { - aggregate: v_match_kill_pairs_aggregate_fields - nodes: [v_match_kill_pairs!]! -} - -""" -aggregate fields of "v_match_kill_pairs" -""" -type v_match_kill_pairs_aggregate_fields { - avg: v_match_kill_pairs_avg_fields - count(columns: [v_match_kill_pairs_select_column!], distinct: Boolean): Int! - max: v_match_kill_pairs_max_fields - min: v_match_kill_pairs_min_fields - stddev: v_match_kill_pairs_stddev_fields - stddev_pop: v_match_kill_pairs_stddev_pop_fields - stddev_samp: v_match_kill_pairs_stddev_samp_fields - sum: v_match_kill_pairs_sum_fields - var_pop: v_match_kill_pairs_var_pop_fields - var_samp: v_match_kill_pairs_var_samp_fields - variance: v_match_kill_pairs_variance_fields -} - -"""aggregate avg on columns""" -type v_match_kill_pairs_avg_fields { - killer_steam_id: Float - kills: Float - victim_steam_id: Float -} - -""" -Boolean expression to filter rows from the table "v_match_kill_pairs". All fields are combined with a logical 'AND'. -""" -input v_match_kill_pairs_bool_exp { - _and: [v_match_kill_pairs_bool_exp!] - _not: v_match_kill_pairs_bool_exp - _or: [v_match_kill_pairs_bool_exp!] - killer_side: String_comparison_exp - killer_steam_id: bigint_comparison_exp - kills: Int_comparison_exp - match: matches_bool_exp - match_id: uuid_comparison_exp - match_map: match_maps_bool_exp - match_map_id: uuid_comparison_exp - victim_side: String_comparison_exp - victim_steam_id: bigint_comparison_exp - weapon: String_comparison_exp -} - -"""aggregate max on columns""" -type v_match_kill_pairs_max_fields { - killer_side: String - killer_steam_id: bigint - kills: Int - match_id: uuid - match_map_id: uuid - victim_side: String - victim_steam_id: bigint - weapon: String -} - -"""aggregate min on columns""" -type v_match_kill_pairs_min_fields { - killer_side: String - killer_steam_id: bigint - kills: Int - match_id: uuid - match_map_id: uuid - victim_side: String - victim_steam_id: bigint - weapon: String -} - -"""Ordering options when selecting data from "v_match_kill_pairs".""" -input v_match_kill_pairs_order_by { - killer_side: order_by - killer_steam_id: order_by - kills: order_by - match: matches_order_by - match_id: order_by - match_map: match_maps_order_by - match_map_id: order_by - victim_side: order_by - victim_steam_id: order_by - weapon: order_by -} - -""" -select columns of table "v_match_kill_pairs" -""" -enum v_match_kill_pairs_select_column { - """column name""" - killer_side - - """column name""" - killer_steam_id - - """column name""" - kills - - """column name""" - match_id - - """column name""" - match_map_id - - """column name""" - victim_side - - """column name""" - victim_steam_id - - """column name""" - weapon -} - -"""aggregate stddev on columns""" -type v_match_kill_pairs_stddev_fields { - killer_steam_id: Float - kills: Float - victim_steam_id: Float -} - -"""aggregate stddev_pop on columns""" -type v_match_kill_pairs_stddev_pop_fields { - killer_steam_id: Float - kills: Float - victim_steam_id: Float -} - -"""aggregate stddev_samp on columns""" -type v_match_kill_pairs_stddev_samp_fields { - killer_steam_id: Float - kills: Float - victim_steam_id: Float -} - -""" -Streaming cursor of the table "v_match_kill_pairs" -""" -input v_match_kill_pairs_stream_cursor_input { - """Stream column input with initial value""" - initial_value: v_match_kill_pairs_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input v_match_kill_pairs_stream_cursor_value_input { - killer_side: String - killer_steam_id: bigint - kills: Int - match_id: uuid - match_map_id: uuid - victim_side: String - victim_steam_id: bigint - weapon: String -} - -"""aggregate sum on columns""" -type v_match_kill_pairs_sum_fields { - killer_steam_id: bigint - kills: Int - victim_steam_id: bigint -} - -"""aggregate var_pop on columns""" -type v_match_kill_pairs_var_pop_fields { - killer_steam_id: Float - kills: Float - victim_steam_id: Float -} - -"""aggregate var_samp on columns""" -type v_match_kill_pairs_var_samp_fields { - killer_steam_id: Float - kills: Float - victim_steam_id: Float -} - -"""aggregate variance on columns""" -type v_match_kill_pairs_variance_fields { - killer_steam_id: Float - kills: Float - victim_steam_id: Float -} - -""" -columns and relationships of "v_match_lineup_buy_types" -""" -type v_match_lineup_buy_types { - """An object relationship""" - match: matches - match_id: uuid - - """An object relationship""" - match_lineup: match_lineups - match_lineup_id: uuid - - """An object relationship""" - match_map: match_maps - match_map_id: uuid - matchup: String - rounds: Int - side: String - wins: Int -} - -""" -aggregated selection of "v_match_lineup_buy_types" -""" -type v_match_lineup_buy_types_aggregate { - aggregate: v_match_lineup_buy_types_aggregate_fields - nodes: [v_match_lineup_buy_types!]! -} - -""" -aggregate fields of "v_match_lineup_buy_types" -""" -type v_match_lineup_buy_types_aggregate_fields { - avg: v_match_lineup_buy_types_avg_fields - count(columns: [v_match_lineup_buy_types_select_column!], distinct: Boolean): Int! - max: v_match_lineup_buy_types_max_fields - min: v_match_lineup_buy_types_min_fields - stddev: v_match_lineup_buy_types_stddev_fields - stddev_pop: v_match_lineup_buy_types_stddev_pop_fields - stddev_samp: v_match_lineup_buy_types_stddev_samp_fields - sum: v_match_lineup_buy_types_sum_fields - var_pop: v_match_lineup_buy_types_var_pop_fields - var_samp: v_match_lineup_buy_types_var_samp_fields - variance: v_match_lineup_buy_types_variance_fields -} - -"""aggregate avg on columns""" -type v_match_lineup_buy_types_avg_fields { - rounds: Float - wins: Float -} - -""" -Boolean expression to filter rows from the table "v_match_lineup_buy_types". All fields are combined with a logical 'AND'. -""" -input v_match_lineup_buy_types_bool_exp { - _and: [v_match_lineup_buy_types_bool_exp!] - _not: v_match_lineup_buy_types_bool_exp - _or: [v_match_lineup_buy_types_bool_exp!] - match: matches_bool_exp - match_id: uuid_comparison_exp - match_lineup: match_lineups_bool_exp - match_lineup_id: uuid_comparison_exp - match_map: match_maps_bool_exp - match_map_id: uuid_comparison_exp - matchup: String_comparison_exp - rounds: Int_comparison_exp - side: String_comparison_exp - wins: Int_comparison_exp -} - -"""aggregate max on columns""" -type v_match_lineup_buy_types_max_fields { - match_id: uuid - match_lineup_id: uuid - match_map_id: uuid - matchup: String - rounds: Int - side: String - wins: Int -} - -"""aggregate min on columns""" -type v_match_lineup_buy_types_min_fields { - match_id: uuid - match_lineup_id: uuid - match_map_id: uuid - matchup: String - rounds: Int - side: String - wins: Int -} - -"""Ordering options when selecting data from "v_match_lineup_buy_types".""" -input v_match_lineup_buy_types_order_by { - match: matches_order_by - match_id: order_by - match_lineup: match_lineups_order_by - match_lineup_id: order_by - match_map: match_maps_order_by - match_map_id: order_by - matchup: order_by - rounds: order_by - side: order_by - wins: order_by -} - -""" -select columns of table "v_match_lineup_buy_types" -""" -enum v_match_lineup_buy_types_select_column { - """column name""" - match_id - - """column name""" - match_lineup_id - - """column name""" - match_map_id - - """column name""" - matchup - - """column name""" - rounds - - """column name""" - side - - """column name""" - wins -} - -"""aggregate stddev on columns""" -type v_match_lineup_buy_types_stddev_fields { - rounds: Float - wins: Float -} - -"""aggregate stddev_pop on columns""" -type v_match_lineup_buy_types_stddev_pop_fields { - rounds: Float - wins: Float -} - -"""aggregate stddev_samp on columns""" -type v_match_lineup_buy_types_stddev_samp_fields { - rounds: Float - wins: Float -} - -""" -Streaming cursor of the table "v_match_lineup_buy_types" -""" -input v_match_lineup_buy_types_stream_cursor_input { - """Stream column input with initial value""" - initial_value: v_match_lineup_buy_types_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input v_match_lineup_buy_types_stream_cursor_value_input { - match_id: uuid - match_lineup_id: uuid - match_map_id: uuid - matchup: String - rounds: Int - side: String - wins: Int -} - -"""aggregate sum on columns""" -type v_match_lineup_buy_types_sum_fields { - rounds: Int - wins: Int -} - -"""aggregate var_pop on columns""" -type v_match_lineup_buy_types_var_pop_fields { - rounds: Float - wins: Float -} - -"""aggregate var_samp on columns""" -type v_match_lineup_buy_types_var_samp_fields { - rounds: Float - wins: Float -} - -"""aggregate variance on columns""" -type v_match_lineup_buy_types_variance_fields { - rounds: Float - wins: Float -} - -""" -columns and relationships of "v_match_lineup_map_stats" -""" -type v_match_lineup_map_stats { - man_adv_rounds: Int - man_adv_wins: Int - man_dis_rounds: Int - man_dis_wins: Int - - """An object relationship""" - match: matches - match_id: uuid - - """An object relationship""" - match_lineup: match_lineups - match_lineup_id: uuid - - """An object relationship""" - match_map: match_maps - match_map_id: uuid - opening_attempts: Int - opening_wins: Int - pistol_rounds: Int - pistol_wins: Int - round_wins: Int - rounds: Int - side: String - won_buy_eco: Int - won_buy_force: Int - won_buy_full: Int - won_buy_pistol: Int -} - -""" -aggregated selection of "v_match_lineup_map_stats" -""" -type v_match_lineup_map_stats_aggregate { - aggregate: v_match_lineup_map_stats_aggregate_fields - nodes: [v_match_lineup_map_stats!]! -} - -""" -aggregate fields of "v_match_lineup_map_stats" -""" -type v_match_lineup_map_stats_aggregate_fields { - avg: v_match_lineup_map_stats_avg_fields - count(columns: [v_match_lineup_map_stats_select_column!], distinct: Boolean): Int! - max: v_match_lineup_map_stats_max_fields - min: v_match_lineup_map_stats_min_fields - stddev: v_match_lineup_map_stats_stddev_fields - stddev_pop: v_match_lineup_map_stats_stddev_pop_fields - stddev_samp: v_match_lineup_map_stats_stddev_samp_fields - sum: v_match_lineup_map_stats_sum_fields - var_pop: v_match_lineup_map_stats_var_pop_fields - var_samp: v_match_lineup_map_stats_var_samp_fields - variance: v_match_lineup_map_stats_variance_fields -} - -"""aggregate avg on columns""" -type v_match_lineup_map_stats_avg_fields { - man_adv_rounds: Float - man_adv_wins: Float - man_dis_rounds: Float - man_dis_wins: Float - opening_attempts: Float - opening_wins: Float - pistol_rounds: Float - pistol_wins: Float - round_wins: Float - rounds: Float - won_buy_eco: Float - won_buy_force: Float - won_buy_full: Float - won_buy_pistol: Float -} - -""" -Boolean expression to filter rows from the table "v_match_lineup_map_stats". All fields are combined with a logical 'AND'. -""" -input v_match_lineup_map_stats_bool_exp { - _and: [v_match_lineup_map_stats_bool_exp!] - _not: v_match_lineup_map_stats_bool_exp - _or: [v_match_lineup_map_stats_bool_exp!] - man_adv_rounds: Int_comparison_exp - man_adv_wins: Int_comparison_exp - man_dis_rounds: Int_comparison_exp - man_dis_wins: Int_comparison_exp - match: matches_bool_exp - match_id: uuid_comparison_exp - match_lineup: match_lineups_bool_exp - match_lineup_id: uuid_comparison_exp - match_map: match_maps_bool_exp - match_map_id: uuid_comparison_exp - opening_attempts: Int_comparison_exp - opening_wins: Int_comparison_exp - pistol_rounds: Int_comparison_exp - pistol_wins: Int_comparison_exp - round_wins: Int_comparison_exp - rounds: Int_comparison_exp - side: String_comparison_exp - won_buy_eco: Int_comparison_exp - won_buy_force: Int_comparison_exp - won_buy_full: Int_comparison_exp - won_buy_pistol: Int_comparison_exp -} - -"""aggregate max on columns""" -type v_match_lineup_map_stats_max_fields { - man_adv_rounds: Int - man_adv_wins: Int - man_dis_rounds: Int - man_dis_wins: Int - match_id: uuid - match_lineup_id: uuid - match_map_id: uuid - opening_attempts: Int - opening_wins: Int - pistol_rounds: Int - pistol_wins: Int - round_wins: Int - rounds: Int - side: String - won_buy_eco: Int - won_buy_force: Int - won_buy_full: Int - won_buy_pistol: Int -} - -"""aggregate min on columns""" -type v_match_lineup_map_stats_min_fields { - man_adv_rounds: Int - man_adv_wins: Int - man_dis_rounds: Int - man_dis_wins: Int - match_id: uuid - match_lineup_id: uuid - match_map_id: uuid - opening_attempts: Int - opening_wins: Int - pistol_rounds: Int - pistol_wins: Int - round_wins: Int - rounds: Int - side: String - won_buy_eco: Int - won_buy_force: Int - won_buy_full: Int - won_buy_pistol: Int -} - -"""Ordering options when selecting data from "v_match_lineup_map_stats".""" -input v_match_lineup_map_stats_order_by { - man_adv_rounds: order_by - man_adv_wins: order_by - man_dis_rounds: order_by - man_dis_wins: order_by - match: matches_order_by - match_id: order_by - match_lineup: match_lineups_order_by - match_lineup_id: order_by - match_map: match_maps_order_by - match_map_id: order_by - opening_attempts: order_by - opening_wins: order_by - pistol_rounds: order_by - pistol_wins: order_by - round_wins: order_by - rounds: order_by - side: order_by - won_buy_eco: order_by - won_buy_force: order_by - won_buy_full: order_by - won_buy_pistol: order_by -} - -""" -select columns of table "v_match_lineup_map_stats" -""" -enum v_match_lineup_map_stats_select_column { - """column name""" - man_adv_rounds - - """column name""" - man_adv_wins - - """column name""" - man_dis_rounds - - """column name""" - man_dis_wins - - """column name""" - match_id - - """column name""" - match_lineup_id - - """column name""" - match_map_id - - """column name""" - opening_attempts - - """column name""" - opening_wins - - """column name""" - pistol_rounds - - """column name""" - pistol_wins - - """column name""" - round_wins - - """column name""" - rounds - - """column name""" - side - - """column name""" - won_buy_eco - - """column name""" - won_buy_force - - """column name""" - won_buy_full - - """column name""" - won_buy_pistol -} - -"""aggregate stddev on columns""" -type v_match_lineup_map_stats_stddev_fields { - man_adv_rounds: Float - man_adv_wins: Float - man_dis_rounds: Float - man_dis_wins: Float - opening_attempts: Float - opening_wins: Float - pistol_rounds: Float - pistol_wins: Float - round_wins: Float - rounds: Float - won_buy_eco: Float - won_buy_force: Float - won_buy_full: Float - won_buy_pistol: Float -} - -"""aggregate stddev_pop on columns""" -type v_match_lineup_map_stats_stddev_pop_fields { - man_adv_rounds: Float - man_adv_wins: Float - man_dis_rounds: Float - man_dis_wins: Float - opening_attempts: Float - opening_wins: Float - pistol_rounds: Float - pistol_wins: Float - round_wins: Float - rounds: Float - won_buy_eco: Float - won_buy_force: Float - won_buy_full: Float - won_buy_pistol: Float -} - -"""aggregate stddev_samp on columns""" -type v_match_lineup_map_stats_stddev_samp_fields { - man_adv_rounds: Float - man_adv_wins: Float - man_dis_rounds: Float - man_dis_wins: Float - opening_attempts: Float - opening_wins: Float - pistol_rounds: Float - pistol_wins: Float - round_wins: Float - rounds: Float - won_buy_eco: Float - won_buy_force: Float - won_buy_full: Float - won_buy_pistol: Float -} - -""" -Streaming cursor of the table "v_match_lineup_map_stats" -""" -input v_match_lineup_map_stats_stream_cursor_input { - """Stream column input with initial value""" - initial_value: v_match_lineup_map_stats_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input v_match_lineup_map_stats_stream_cursor_value_input { - man_adv_rounds: Int - man_adv_wins: Int - man_dis_rounds: Int - man_dis_wins: Int - match_id: uuid - match_lineup_id: uuid - match_map_id: uuid - opening_attempts: Int - opening_wins: Int - pistol_rounds: Int - pistol_wins: Int - round_wins: Int - rounds: Int - side: String - won_buy_eco: Int - won_buy_force: Int - won_buy_full: Int - won_buy_pistol: Int -} - -"""aggregate sum on columns""" -type v_match_lineup_map_stats_sum_fields { - man_adv_rounds: Int - man_adv_wins: Int - man_dis_rounds: Int - man_dis_wins: Int - opening_attempts: Int - opening_wins: Int - pistol_rounds: Int - pistol_wins: Int - round_wins: Int - rounds: Int - won_buy_eco: Int - won_buy_force: Int - won_buy_full: Int - won_buy_pistol: Int -} - -"""aggregate var_pop on columns""" -type v_match_lineup_map_stats_var_pop_fields { - man_adv_rounds: Float - man_adv_wins: Float - man_dis_rounds: Float - man_dis_wins: Float - opening_attempts: Float - opening_wins: Float - pistol_rounds: Float - pistol_wins: Float - round_wins: Float - rounds: Float - won_buy_eco: Float - won_buy_force: Float - won_buy_full: Float - won_buy_pistol: Float -} - -"""aggregate var_samp on columns""" -type v_match_lineup_map_stats_var_samp_fields { - man_adv_rounds: Float - man_adv_wins: Float - man_dis_rounds: Float - man_dis_wins: Float - opening_attempts: Float - opening_wins: Float - pistol_rounds: Float - pistol_wins: Float - round_wins: Float - rounds: Float - won_buy_eco: Float - won_buy_force: Float - won_buy_full: Float - won_buy_pistol: Float -} - -"""aggregate variance on columns""" -type v_match_lineup_map_stats_variance_fields { - man_adv_rounds: Float - man_adv_wins: Float - man_dis_rounds: Float - man_dis_wins: Float - opening_attempts: Float - opening_wins: Float - pistol_rounds: Float - pistol_wins: Float - round_wins: Float - rounds: Float - won_buy_eco: Float - won_buy_force: Float - won_buy_full: Float - won_buy_pistol: Float -} - -""" -columns and relationships of "v_match_map_backup_rounds" -""" -type v_match_map_backup_rounds { - has_backup_file: Boolean - match_map_id: uuid - round: Int -} - -""" -aggregated selection of "v_match_map_backup_rounds" -""" -type v_match_map_backup_rounds_aggregate { - aggregate: v_match_map_backup_rounds_aggregate_fields - nodes: [v_match_map_backup_rounds!]! -} - -""" -aggregate fields of "v_match_map_backup_rounds" -""" -type v_match_map_backup_rounds_aggregate_fields { - avg: v_match_map_backup_rounds_avg_fields - count(columns: [v_match_map_backup_rounds_select_column!], distinct: Boolean): Int! - max: v_match_map_backup_rounds_max_fields - min: v_match_map_backup_rounds_min_fields - stddev: v_match_map_backup_rounds_stddev_fields - stddev_pop: v_match_map_backup_rounds_stddev_pop_fields - stddev_samp: v_match_map_backup_rounds_stddev_samp_fields - sum: v_match_map_backup_rounds_sum_fields - var_pop: v_match_map_backup_rounds_var_pop_fields - var_samp: v_match_map_backup_rounds_var_samp_fields - variance: v_match_map_backup_rounds_variance_fields -} - -"""aggregate avg on columns""" -type v_match_map_backup_rounds_avg_fields { - round: Float -} - -""" -Boolean expression to filter rows from the table "v_match_map_backup_rounds". All fields are combined with a logical 'AND'. -""" -input v_match_map_backup_rounds_bool_exp { - _and: [v_match_map_backup_rounds_bool_exp!] - _not: v_match_map_backup_rounds_bool_exp - _or: [v_match_map_backup_rounds_bool_exp!] - has_backup_file: Boolean_comparison_exp - match_map_id: uuid_comparison_exp - round: Int_comparison_exp -} - -""" -input type for incrementing numeric columns in table "v_match_map_backup_rounds" -""" -input v_match_map_backup_rounds_inc_input { - round: Int -} - -""" -input type for inserting data into table "v_match_map_backup_rounds" -""" -input v_match_map_backup_rounds_insert_input { - has_backup_file: Boolean - match_map_id: uuid - round: Int -} - -"""aggregate max on columns""" -type v_match_map_backup_rounds_max_fields { - match_map_id: uuid - round: Int -} - -"""aggregate min on columns""" -type v_match_map_backup_rounds_min_fields { - match_map_id: uuid - round: Int -} - -""" -response of any mutation on the table "v_match_map_backup_rounds" -""" -type v_match_map_backup_rounds_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [v_match_map_backup_rounds!]! -} - -"""Ordering options when selecting data from "v_match_map_backup_rounds".""" -input v_match_map_backup_rounds_order_by { - has_backup_file: order_by - match_map_id: order_by - round: order_by -} - -""" -select columns of table "v_match_map_backup_rounds" -""" -enum v_match_map_backup_rounds_select_column { - """column name""" - has_backup_file - - """column name""" - match_map_id - - """column name""" - round -} - -""" -input type for updating data in table "v_match_map_backup_rounds" -""" -input v_match_map_backup_rounds_set_input { - has_backup_file: Boolean - match_map_id: uuid - round: Int -} - -"""aggregate stddev on columns""" -type v_match_map_backup_rounds_stddev_fields { - round: Float -} - -"""aggregate stddev_pop on columns""" -type v_match_map_backup_rounds_stddev_pop_fields { - round: Float -} - -"""aggregate stddev_samp on columns""" -type v_match_map_backup_rounds_stddev_samp_fields { - round: Float -} - -""" -Streaming cursor of the table "v_match_map_backup_rounds" -""" -input v_match_map_backup_rounds_stream_cursor_input { - """Stream column input with initial value""" - initial_value: v_match_map_backup_rounds_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input v_match_map_backup_rounds_stream_cursor_value_input { - has_backup_file: Boolean - match_map_id: uuid - round: Int -} - -"""aggregate sum on columns""" -type v_match_map_backup_rounds_sum_fields { - round: Int -} - -input v_match_map_backup_rounds_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: v_match_map_backup_rounds_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: v_match_map_backup_rounds_set_input - - """filter the rows which have to be updated""" - where: v_match_map_backup_rounds_bool_exp! -} - -"""aggregate var_pop on columns""" -type v_match_map_backup_rounds_var_pop_fields { - round: Float -} - -"""aggregate var_samp on columns""" -type v_match_map_backup_rounds_var_samp_fields { - round: Float -} - -"""aggregate variance on columns""" -type v_match_map_backup_rounds_variance_fields { - round: Float -} - -""" -columns and relationships of "v_match_player_buy_types" -""" -type v_match_player_buy_types { - deaths: Int - kills: Int - - """An object relationship""" - match: matches - match_id: uuid - - """An object relationship""" - match_lineup: match_lineups - match_lineup_id: uuid - - """An object relationship""" - match_map: match_maps - match_map_id: uuid - matchup: String - - """An object relationship""" - player: players - rounds: Int - side: String - steam_id: bigint -} - -""" -aggregated selection of "v_match_player_buy_types" -""" -type v_match_player_buy_types_aggregate { - aggregate: v_match_player_buy_types_aggregate_fields - nodes: [v_match_player_buy_types!]! -} - -""" -aggregate fields of "v_match_player_buy_types" -""" -type v_match_player_buy_types_aggregate_fields { - avg: v_match_player_buy_types_avg_fields - count(columns: [v_match_player_buy_types_select_column!], distinct: Boolean): Int! - max: v_match_player_buy_types_max_fields - min: v_match_player_buy_types_min_fields - stddev: v_match_player_buy_types_stddev_fields - stddev_pop: v_match_player_buy_types_stddev_pop_fields - stddev_samp: v_match_player_buy_types_stddev_samp_fields - sum: v_match_player_buy_types_sum_fields - var_pop: v_match_player_buy_types_var_pop_fields - var_samp: v_match_player_buy_types_var_samp_fields - variance: v_match_player_buy_types_variance_fields -} - -"""aggregate avg on columns""" -type v_match_player_buy_types_avg_fields { - deaths: Float - kills: Float - rounds: Float - steam_id: Float -} - -""" -Boolean expression to filter rows from the table "v_match_player_buy_types". All fields are combined with a logical 'AND'. -""" -input v_match_player_buy_types_bool_exp { - _and: [v_match_player_buy_types_bool_exp!] - _not: v_match_player_buy_types_bool_exp - _or: [v_match_player_buy_types_bool_exp!] - deaths: Int_comparison_exp - kills: Int_comparison_exp - match: matches_bool_exp - match_id: uuid_comparison_exp - match_lineup: match_lineups_bool_exp - match_lineup_id: uuid_comparison_exp - match_map: match_maps_bool_exp - match_map_id: uuid_comparison_exp - matchup: String_comparison_exp - player: players_bool_exp - rounds: Int_comparison_exp - side: String_comparison_exp - steam_id: bigint_comparison_exp -} - -"""aggregate max on columns""" -type v_match_player_buy_types_max_fields { - deaths: Int - kills: Int - match_id: uuid - match_lineup_id: uuid - match_map_id: uuid - matchup: String - rounds: Int - side: String - steam_id: bigint -} - -"""aggregate min on columns""" -type v_match_player_buy_types_min_fields { - deaths: Int - kills: Int - match_id: uuid - match_lineup_id: uuid - match_map_id: uuid - matchup: String - rounds: Int - side: String - steam_id: bigint -} - -"""Ordering options when selecting data from "v_match_player_buy_types".""" -input v_match_player_buy_types_order_by { - deaths: order_by - kills: order_by - match: matches_order_by - match_id: order_by - match_lineup: match_lineups_order_by - match_lineup_id: order_by - match_map: match_maps_order_by - match_map_id: order_by - matchup: order_by - player: players_order_by - rounds: order_by - side: order_by - steam_id: order_by -} - -""" -select columns of table "v_match_player_buy_types" -""" -enum v_match_player_buy_types_select_column { - """column name""" - deaths - - """column name""" - kills - - """column name""" - match_id - - """column name""" - match_lineup_id - - """column name""" - match_map_id - - """column name""" - matchup - - """column name""" - rounds - - """column name""" - side - - """column name""" - steam_id -} - -"""aggregate stddev on columns""" -type v_match_player_buy_types_stddev_fields { - deaths: Float - kills: Float - rounds: Float - steam_id: Float -} - -"""aggregate stddev_pop on columns""" -type v_match_player_buy_types_stddev_pop_fields { - deaths: Float - kills: Float - rounds: Float - steam_id: Float -} - -"""aggregate stddev_samp on columns""" -type v_match_player_buy_types_stddev_samp_fields { - deaths: Float - kills: Float - rounds: Float - steam_id: Float -} - -""" -Streaming cursor of the table "v_match_player_buy_types" -""" -input v_match_player_buy_types_stream_cursor_input { - """Stream column input with initial value""" - initial_value: v_match_player_buy_types_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input v_match_player_buy_types_stream_cursor_value_input { - deaths: Int - kills: Int - match_id: uuid - match_lineup_id: uuid - match_map_id: uuid - matchup: String - rounds: Int - side: String - steam_id: bigint -} - -"""aggregate sum on columns""" -type v_match_player_buy_types_sum_fields { - deaths: Int - kills: Int - rounds: Int - steam_id: bigint -} - -"""aggregate var_pop on columns""" -type v_match_player_buy_types_var_pop_fields { - deaths: Float - kills: Float - rounds: Float - steam_id: Float -} - -"""aggregate var_samp on columns""" -type v_match_player_buy_types_var_samp_fields { - deaths: Float - kills: Float - rounds: Float - steam_id: Float -} - -"""aggregate variance on columns""" -type v_match_player_buy_types_variance_fields { - deaths: Float - kills: Float - rounds: Float - steam_id: Float -} - -""" -columns and relationships of "v_match_player_opening_duels" -""" -type v_match_player_opening_duels { - attempts: Int - deaths: Int - - """An object relationship""" - match: matches - match_id: uuid - - """An object relationship""" - match_lineup: match_lineups - match_lineup_id: uuid - - """An object relationship""" - match_map: match_maps - match_map_id: uuid - - """An object relationship""" - player: players - side: String - steam_id: bigint - traded_deaths: Int - wins: Int -} - -""" -aggregated selection of "v_match_player_opening_duels" -""" -type v_match_player_opening_duels_aggregate { - aggregate: v_match_player_opening_duels_aggregate_fields - nodes: [v_match_player_opening_duels!]! -} - -input v_match_player_opening_duels_aggregate_bool_exp { - count: v_match_player_opening_duels_aggregate_bool_exp_count -} - -input v_match_player_opening_duels_aggregate_bool_exp_count { - arguments: [v_match_player_opening_duels_select_column!] - distinct: Boolean - filter: v_match_player_opening_duels_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "v_match_player_opening_duels" -""" -type v_match_player_opening_duels_aggregate_fields { - avg: v_match_player_opening_duels_avg_fields - count(columns: [v_match_player_opening_duels_select_column!], distinct: Boolean): Int! - max: v_match_player_opening_duels_max_fields - min: v_match_player_opening_duels_min_fields - stddev: v_match_player_opening_duels_stddev_fields - stddev_pop: v_match_player_opening_duels_stddev_pop_fields - stddev_samp: v_match_player_opening_duels_stddev_samp_fields - sum: v_match_player_opening_duels_sum_fields - var_pop: v_match_player_opening_duels_var_pop_fields - var_samp: v_match_player_opening_duels_var_samp_fields - variance: v_match_player_opening_duels_variance_fields -} - -""" -order by aggregate values of table "v_match_player_opening_duels" -""" -input v_match_player_opening_duels_aggregate_order_by { - avg: v_match_player_opening_duels_avg_order_by - count: order_by - max: v_match_player_opening_duels_max_order_by - min: v_match_player_opening_duels_min_order_by - stddev: v_match_player_opening_duels_stddev_order_by - stddev_pop: v_match_player_opening_duels_stddev_pop_order_by - stddev_samp: v_match_player_opening_duels_stddev_samp_order_by - sum: v_match_player_opening_duels_sum_order_by - var_pop: v_match_player_opening_duels_var_pop_order_by - var_samp: v_match_player_opening_duels_var_samp_order_by - variance: v_match_player_opening_duels_variance_order_by -} - -""" -input type for inserting array relation for remote table "v_match_player_opening_duels" -""" -input v_match_player_opening_duels_arr_rel_insert_input { - data: [v_match_player_opening_duels_insert_input!]! -} - -"""aggregate avg on columns""" -type v_match_player_opening_duels_avg_fields { - attempts: Float - deaths: Float - steam_id: Float - traded_deaths: Float - wins: Float -} - -""" -order by avg() on columns of table "v_match_player_opening_duels" -""" -input v_match_player_opening_duels_avg_order_by { - attempts: order_by - deaths: order_by - steam_id: order_by - traded_deaths: order_by - wins: order_by -} - -""" -Boolean expression to filter rows from the table "v_match_player_opening_duels". All fields are combined with a logical 'AND'. -""" -input v_match_player_opening_duels_bool_exp { - _and: [v_match_player_opening_duels_bool_exp!] - _not: v_match_player_opening_duels_bool_exp - _or: [v_match_player_opening_duels_bool_exp!] - attempts: Int_comparison_exp - deaths: Int_comparison_exp - match: matches_bool_exp - match_id: uuid_comparison_exp - match_lineup: match_lineups_bool_exp - match_lineup_id: uuid_comparison_exp - match_map: match_maps_bool_exp - match_map_id: uuid_comparison_exp - player: players_bool_exp - side: String_comparison_exp - steam_id: bigint_comparison_exp - traded_deaths: Int_comparison_exp - wins: Int_comparison_exp -} - -""" -input type for inserting data into table "v_match_player_opening_duels" -""" -input v_match_player_opening_duels_insert_input { - attempts: Int - deaths: Int - match: matches_obj_rel_insert_input - match_id: uuid - match_lineup: match_lineups_obj_rel_insert_input - match_lineup_id: uuid - match_map: match_maps_obj_rel_insert_input - match_map_id: uuid - player: players_obj_rel_insert_input - side: String - steam_id: bigint - traded_deaths: Int - wins: Int -} - -"""aggregate max on columns""" -type v_match_player_opening_duels_max_fields { - attempts: Int - deaths: Int - match_id: uuid - match_lineup_id: uuid - match_map_id: uuid - side: String - steam_id: bigint - traded_deaths: Int - wins: Int -} - -""" -order by max() on columns of table "v_match_player_opening_duels" -""" -input v_match_player_opening_duels_max_order_by { - attempts: order_by - deaths: order_by - match_id: order_by - match_lineup_id: order_by - match_map_id: order_by - side: order_by - steam_id: order_by - traded_deaths: order_by - wins: order_by -} - -"""aggregate min on columns""" -type v_match_player_opening_duels_min_fields { - attempts: Int - deaths: Int - match_id: uuid - match_lineup_id: uuid - match_map_id: uuid - side: String - steam_id: bigint - traded_deaths: Int - wins: Int -} - -""" -order by min() on columns of table "v_match_player_opening_duels" -""" -input v_match_player_opening_duels_min_order_by { - attempts: order_by - deaths: order_by - match_id: order_by - match_lineup_id: order_by - match_map_id: order_by - side: order_by - steam_id: order_by - traded_deaths: order_by - wins: order_by -} - -""" -Ordering options when selecting data from "v_match_player_opening_duels". -""" -input v_match_player_opening_duels_order_by { - attempts: order_by - deaths: order_by - match: matches_order_by - match_id: order_by - match_lineup: match_lineups_order_by - match_lineup_id: order_by - match_map: match_maps_order_by - match_map_id: order_by - player: players_order_by - side: order_by - steam_id: order_by - traded_deaths: order_by - wins: order_by -} - -""" -select columns of table "v_match_player_opening_duels" -""" -enum v_match_player_opening_duels_select_column { - """column name""" - attempts - - """column name""" - deaths - - """column name""" - match_id - - """column name""" - match_lineup_id - - """column name""" - match_map_id - - """column name""" - side - - """column name""" - steam_id - - """column name""" - traded_deaths - - """column name""" - wins -} - -"""aggregate stddev on columns""" -type v_match_player_opening_duels_stddev_fields { - attempts: Float - deaths: Float - steam_id: Float - traded_deaths: Float - wins: Float -} - -""" -order by stddev() on columns of table "v_match_player_opening_duels" -""" -input v_match_player_opening_duels_stddev_order_by { - attempts: order_by - deaths: order_by - steam_id: order_by - traded_deaths: order_by - wins: order_by -} - -"""aggregate stddev_pop on columns""" -type v_match_player_opening_duels_stddev_pop_fields { - attempts: Float - deaths: Float - steam_id: Float - traded_deaths: Float - wins: Float -} - -""" -order by stddev_pop() on columns of table "v_match_player_opening_duels" -""" -input v_match_player_opening_duels_stddev_pop_order_by { - attempts: order_by - deaths: order_by - steam_id: order_by - traded_deaths: order_by - wins: order_by -} - -"""aggregate stddev_samp on columns""" -type v_match_player_opening_duels_stddev_samp_fields { - attempts: Float - deaths: Float - steam_id: Float - traded_deaths: Float - wins: Float -} - -""" -order by stddev_samp() on columns of table "v_match_player_opening_duels" -""" -input v_match_player_opening_duels_stddev_samp_order_by { - attempts: order_by - deaths: order_by - steam_id: order_by - traded_deaths: order_by - wins: order_by -} - -""" -Streaming cursor of the table "v_match_player_opening_duels" -""" -input v_match_player_opening_duels_stream_cursor_input { - """Stream column input with initial value""" - initial_value: v_match_player_opening_duels_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input v_match_player_opening_duels_stream_cursor_value_input { - attempts: Int - deaths: Int - match_id: uuid - match_lineup_id: uuid - match_map_id: uuid - side: String - steam_id: bigint - traded_deaths: Int - wins: Int -} - -"""aggregate sum on columns""" -type v_match_player_opening_duels_sum_fields { - attempts: Int - deaths: Int - steam_id: bigint - traded_deaths: Int - wins: Int -} - -""" -order by sum() on columns of table "v_match_player_opening_duels" -""" -input v_match_player_opening_duels_sum_order_by { - attempts: order_by - deaths: order_by - steam_id: order_by - traded_deaths: order_by - wins: order_by -} - -"""aggregate var_pop on columns""" -type v_match_player_opening_duels_var_pop_fields { - attempts: Float - deaths: Float - steam_id: Float - traded_deaths: Float - wins: Float -} - -""" -order by var_pop() on columns of table "v_match_player_opening_duels" -""" -input v_match_player_opening_duels_var_pop_order_by { - attempts: order_by - deaths: order_by - steam_id: order_by - traded_deaths: order_by - wins: order_by -} - -"""aggregate var_samp on columns""" -type v_match_player_opening_duels_var_samp_fields { - attempts: Float - deaths: Float - steam_id: Float - traded_deaths: Float - wins: Float -} - -""" -order by var_samp() on columns of table "v_match_player_opening_duels" -""" -input v_match_player_opening_duels_var_samp_order_by { - attempts: order_by - deaths: order_by - steam_id: order_by - traded_deaths: order_by - wins: order_by -} - -"""aggregate variance on columns""" -type v_match_player_opening_duels_variance_fields { - attempts: Float - deaths: Float - steam_id: Float - traded_deaths: Float - wins: Float -} - -""" -order by variance() on columns of table "v_match_player_opening_duels" -""" -input v_match_player_opening_duels_variance_order_by { - attempts: order_by - deaths: order_by - steam_id: order_by - traded_deaths: order_by - wins: order_by -} - -""" -columns and relationships of "v_player_arch_nemesis" -""" -type v_player_arch_nemesis { - attacker_id: bigint - kill_count: bigint - - """An object relationship""" - nemsis: players - - """An object relationship""" - player: players - victim_id: bigint -} - -""" -aggregated selection of "v_player_arch_nemesis" -""" -type v_player_arch_nemesis_aggregate { - aggregate: v_player_arch_nemesis_aggregate_fields - nodes: [v_player_arch_nemesis!]! -} - -""" -aggregate fields of "v_player_arch_nemesis" -""" -type v_player_arch_nemesis_aggregate_fields { - avg: v_player_arch_nemesis_avg_fields - count(columns: [v_player_arch_nemesis_select_column!], distinct: Boolean): Int! - max: v_player_arch_nemesis_max_fields - min: v_player_arch_nemesis_min_fields - stddev: v_player_arch_nemesis_stddev_fields - stddev_pop: v_player_arch_nemesis_stddev_pop_fields - stddev_samp: v_player_arch_nemesis_stddev_samp_fields - sum: v_player_arch_nemesis_sum_fields - var_pop: v_player_arch_nemesis_var_pop_fields - var_samp: v_player_arch_nemesis_var_samp_fields - variance: v_player_arch_nemesis_variance_fields -} - -"""aggregate avg on columns""" -type v_player_arch_nemesis_avg_fields { - attacker_id: Float - kill_count: Float - victim_id: Float -} - -""" -Boolean expression to filter rows from the table "v_player_arch_nemesis". All fields are combined with a logical 'AND'. -""" -input v_player_arch_nemesis_bool_exp { - _and: [v_player_arch_nemesis_bool_exp!] - _not: v_player_arch_nemesis_bool_exp - _or: [v_player_arch_nemesis_bool_exp!] - attacker_id: bigint_comparison_exp - kill_count: bigint_comparison_exp - nemsis: players_bool_exp - player: players_bool_exp - victim_id: bigint_comparison_exp -} - -"""aggregate max on columns""" -type v_player_arch_nemesis_max_fields { - attacker_id: bigint - kill_count: bigint - victim_id: bigint -} - -"""aggregate min on columns""" -type v_player_arch_nemesis_min_fields { - attacker_id: bigint - kill_count: bigint - victim_id: bigint -} - -"""Ordering options when selecting data from "v_player_arch_nemesis".""" -input v_player_arch_nemesis_order_by { - attacker_id: order_by - kill_count: order_by - nemsis: players_order_by - player: players_order_by - victim_id: order_by -} - -""" -select columns of table "v_player_arch_nemesis" -""" -enum v_player_arch_nemesis_select_column { - """column name""" - attacker_id - - """column name""" - kill_count - - """column name""" - victim_id -} - -"""aggregate stddev on columns""" -type v_player_arch_nemesis_stddev_fields { - attacker_id: Float - kill_count: Float - victim_id: Float -} - -"""aggregate stddev_pop on columns""" -type v_player_arch_nemesis_stddev_pop_fields { - attacker_id: Float - kill_count: Float - victim_id: Float -} - -"""aggregate stddev_samp on columns""" -type v_player_arch_nemesis_stddev_samp_fields { - attacker_id: Float - kill_count: Float - victim_id: Float -} - -""" -Streaming cursor of the table "v_player_arch_nemesis" -""" -input v_player_arch_nemesis_stream_cursor_input { - """Stream column input with initial value""" - initial_value: v_player_arch_nemesis_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input v_player_arch_nemesis_stream_cursor_value_input { - attacker_id: bigint - kill_count: bigint - victim_id: bigint -} - -"""aggregate sum on columns""" -type v_player_arch_nemesis_sum_fields { - attacker_id: bigint - kill_count: bigint - victim_id: bigint -} - -"""aggregate var_pop on columns""" -type v_player_arch_nemesis_var_pop_fields { - attacker_id: Float - kill_count: Float - victim_id: Float -} - -"""aggregate var_samp on columns""" -type v_player_arch_nemesis_var_samp_fields { - attacker_id: Float - kill_count: Float - victim_id: Float -} - -"""aggregate variance on columns""" -type v_player_arch_nemesis_variance_fields { - attacker_id: Float - kill_count: Float - victim_id: Float -} - -""" -columns and relationships of "v_player_damage" -""" -type v_player_damage { - avg_damage_per_round: bigint - - """An object relationship""" - player: players - player_steam_id: bigint - total_damage: bigint - total_rounds: bigint -} - -""" -aggregated selection of "v_player_damage" -""" -type v_player_damage_aggregate { - aggregate: v_player_damage_aggregate_fields - nodes: [v_player_damage!]! -} - -""" -aggregate fields of "v_player_damage" -""" -type v_player_damage_aggregate_fields { - avg: v_player_damage_avg_fields - count(columns: [v_player_damage_select_column!], distinct: Boolean): Int! - max: v_player_damage_max_fields - min: v_player_damage_min_fields - stddev: v_player_damage_stddev_fields - stddev_pop: v_player_damage_stddev_pop_fields - stddev_samp: v_player_damage_stddev_samp_fields - sum: v_player_damage_sum_fields - var_pop: v_player_damage_var_pop_fields - var_samp: v_player_damage_var_samp_fields - variance: v_player_damage_variance_fields -} - -"""aggregate avg on columns""" -type v_player_damage_avg_fields { - avg_damage_per_round: Float - player_steam_id: Float - total_damage: Float - total_rounds: Float -} - -""" -Boolean expression to filter rows from the table "v_player_damage". All fields are combined with a logical 'AND'. -""" -input v_player_damage_bool_exp { - _and: [v_player_damage_bool_exp!] - _not: v_player_damage_bool_exp - _or: [v_player_damage_bool_exp!] - avg_damage_per_round: bigint_comparison_exp - player: players_bool_exp - player_steam_id: bigint_comparison_exp - total_damage: bigint_comparison_exp - total_rounds: bigint_comparison_exp -} - -"""aggregate max on columns""" -type v_player_damage_max_fields { - avg_damage_per_round: bigint - player_steam_id: bigint - total_damage: bigint - total_rounds: bigint -} - -"""aggregate min on columns""" -type v_player_damage_min_fields { - avg_damage_per_round: bigint - player_steam_id: bigint - total_damage: bigint - total_rounds: bigint -} - -"""Ordering options when selecting data from "v_player_damage".""" -input v_player_damage_order_by { - avg_damage_per_round: order_by - player: players_order_by - player_steam_id: order_by - total_damage: order_by - total_rounds: order_by -} - -""" -select columns of table "v_player_damage" -""" -enum v_player_damage_select_column { - """column name""" - avg_damage_per_round - - """column name""" - player_steam_id - - """column name""" - total_damage - - """column name""" - total_rounds -} - -"""aggregate stddev on columns""" -type v_player_damage_stddev_fields { - avg_damage_per_round: Float - player_steam_id: Float - total_damage: Float - total_rounds: Float -} - -"""aggregate stddev_pop on columns""" -type v_player_damage_stddev_pop_fields { - avg_damage_per_round: Float - player_steam_id: Float - total_damage: Float - total_rounds: Float -} - -"""aggregate stddev_samp on columns""" -type v_player_damage_stddev_samp_fields { - avg_damage_per_round: Float - player_steam_id: Float - total_damage: Float - total_rounds: Float -} - -""" -Streaming cursor of the table "v_player_damage" -""" -input v_player_damage_stream_cursor_input { - """Stream column input with initial value""" - initial_value: v_player_damage_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input v_player_damage_stream_cursor_value_input { - avg_damage_per_round: bigint - player_steam_id: bigint - total_damage: bigint - total_rounds: bigint -} - -"""aggregate sum on columns""" -type v_player_damage_sum_fields { - avg_damage_per_round: bigint - player_steam_id: bigint - total_damage: bigint - total_rounds: bigint -} - -"""aggregate var_pop on columns""" -type v_player_damage_var_pop_fields { - avg_damage_per_round: Float - player_steam_id: Float - total_damage: Float - total_rounds: Float -} - -"""aggregate var_samp on columns""" -type v_player_damage_var_samp_fields { - avg_damage_per_round: Float - player_steam_id: Float - total_damage: Float - total_rounds: Float -} - -"""aggregate variance on columns""" -type v_player_damage_variance_fields { - avg_damage_per_round: Float - player_steam_id: Float - total_damage: Float - total_rounds: Float -} - -""" -columns and relationships of "v_player_elo" -""" -type v_player_elo { - actual_score: float8 - assists: Int - current_elo: Int - damage: Int - damage_percent: float8 - deaths: Int - elo_change: Int - expected_score: float8 - impact: float8 - k_factor: Int - kda: float8 - kills: Int - map_losses: Int - map_wins: Int - - """An object relationship""" - match: matches - match_created_at: timestamptz - match_id: uuid - match_result: String - opponent_team_elo_avg: float8 - performance_multiplier: float8 - player_name: String - player_steam_id: bigint - player_team_elo_avg: float8 - rating_for_expected: float8 - season_id: uuid - series_multiplier: Int - team_avg_kda: float8 - type: String - updated_elo: Int -} - -""" -aggregated selection of "v_player_elo" -""" -type v_player_elo_aggregate { - aggregate: v_player_elo_aggregate_fields - nodes: [v_player_elo!]! -} - -input v_player_elo_aggregate_bool_exp { - avg: v_player_elo_aggregate_bool_exp_avg - corr: v_player_elo_aggregate_bool_exp_corr - count: v_player_elo_aggregate_bool_exp_count - covar_samp: v_player_elo_aggregate_bool_exp_covar_samp - max: v_player_elo_aggregate_bool_exp_max - min: v_player_elo_aggregate_bool_exp_min - stddev_samp: v_player_elo_aggregate_bool_exp_stddev_samp - sum: v_player_elo_aggregate_bool_exp_sum - var_samp: v_player_elo_aggregate_bool_exp_var_samp -} - -input v_player_elo_aggregate_bool_exp_avg { - arguments: v_player_elo_select_column_v_player_elo_aggregate_bool_exp_avg_arguments_columns! - distinct: Boolean - filter: v_player_elo_bool_exp - predicate: float8_comparison_exp! -} - -input v_player_elo_aggregate_bool_exp_corr { - arguments: v_player_elo_aggregate_bool_exp_corr_arguments! - distinct: Boolean - filter: v_player_elo_bool_exp - predicate: float8_comparison_exp! -} - -input v_player_elo_aggregate_bool_exp_corr_arguments { - X: v_player_elo_select_column_v_player_elo_aggregate_bool_exp_corr_arguments_columns! - Y: v_player_elo_select_column_v_player_elo_aggregate_bool_exp_corr_arguments_columns! -} - -input v_player_elo_aggregate_bool_exp_count { - arguments: [v_player_elo_select_column!] - distinct: Boolean - filter: v_player_elo_bool_exp - predicate: Int_comparison_exp! -} - -input v_player_elo_aggregate_bool_exp_covar_samp { - arguments: v_player_elo_aggregate_bool_exp_covar_samp_arguments! - distinct: Boolean - filter: v_player_elo_bool_exp - predicate: float8_comparison_exp! -} - -input v_player_elo_aggregate_bool_exp_covar_samp_arguments { - X: v_player_elo_select_column_v_player_elo_aggregate_bool_exp_covar_samp_arguments_columns! - Y: v_player_elo_select_column_v_player_elo_aggregate_bool_exp_covar_samp_arguments_columns! -} - -input v_player_elo_aggregate_bool_exp_max { - arguments: v_player_elo_select_column_v_player_elo_aggregate_bool_exp_max_arguments_columns! - distinct: Boolean - filter: v_player_elo_bool_exp - predicate: float8_comparison_exp! -} - -input v_player_elo_aggregate_bool_exp_min { - arguments: v_player_elo_select_column_v_player_elo_aggregate_bool_exp_min_arguments_columns! - distinct: Boolean - filter: v_player_elo_bool_exp - predicate: float8_comparison_exp! -} - -input v_player_elo_aggregate_bool_exp_stddev_samp { - arguments: v_player_elo_select_column_v_player_elo_aggregate_bool_exp_stddev_samp_arguments_columns! - distinct: Boolean - filter: v_player_elo_bool_exp - predicate: float8_comparison_exp! -} - -input v_player_elo_aggregate_bool_exp_sum { - arguments: v_player_elo_select_column_v_player_elo_aggregate_bool_exp_sum_arguments_columns! - distinct: Boolean - filter: v_player_elo_bool_exp - predicate: float8_comparison_exp! -} - -input v_player_elo_aggregate_bool_exp_var_samp { - arguments: v_player_elo_select_column_v_player_elo_aggregate_bool_exp_var_samp_arguments_columns! - distinct: Boolean - filter: v_player_elo_bool_exp - predicate: float8_comparison_exp! -} - -""" -aggregate fields of "v_player_elo" -""" -type v_player_elo_aggregate_fields { - avg: v_player_elo_avg_fields - count(columns: [v_player_elo_select_column!], distinct: Boolean): Int! - max: v_player_elo_max_fields - min: v_player_elo_min_fields - stddev: v_player_elo_stddev_fields - stddev_pop: v_player_elo_stddev_pop_fields - stddev_samp: v_player_elo_stddev_samp_fields - sum: v_player_elo_sum_fields - var_pop: v_player_elo_var_pop_fields - var_samp: v_player_elo_var_samp_fields - variance: v_player_elo_variance_fields -} - -""" -order by aggregate values of table "v_player_elo" -""" -input v_player_elo_aggregate_order_by { - avg: v_player_elo_avg_order_by - count: order_by - max: v_player_elo_max_order_by - min: v_player_elo_min_order_by - stddev: v_player_elo_stddev_order_by - stddev_pop: v_player_elo_stddev_pop_order_by - stddev_samp: v_player_elo_stddev_samp_order_by - sum: v_player_elo_sum_order_by - var_pop: v_player_elo_var_pop_order_by - var_samp: v_player_elo_var_samp_order_by - variance: v_player_elo_variance_order_by -} - -""" -input type for inserting array relation for remote table "v_player_elo" -""" -input v_player_elo_arr_rel_insert_input { - data: [v_player_elo_insert_input!]! -} - -"""aggregate avg on columns""" -type v_player_elo_avg_fields { - actual_score: Float - assists: Float - current_elo: Float - damage: Float - damage_percent: Float - deaths: Float - elo_change: Float - expected_score: Float - impact: Float - k_factor: Float - kda: Float - kills: Float - map_losses: Float - map_wins: Float - opponent_team_elo_avg: Float - performance_multiplier: Float - player_steam_id: Float - player_team_elo_avg: Float - rating_for_expected: Float - series_multiplier: Float - team_avg_kda: Float - updated_elo: Float -} - -""" -order by avg() on columns of table "v_player_elo" -""" -input v_player_elo_avg_order_by { - actual_score: order_by - assists: order_by - current_elo: order_by - damage: order_by - damage_percent: order_by - deaths: order_by - elo_change: order_by - expected_score: order_by - impact: order_by - k_factor: order_by - kda: order_by - kills: order_by - map_losses: order_by - map_wins: order_by - opponent_team_elo_avg: order_by - performance_multiplier: order_by - player_steam_id: order_by - player_team_elo_avg: order_by - rating_for_expected: order_by - series_multiplier: order_by - team_avg_kda: order_by - updated_elo: order_by -} - -""" -Boolean expression to filter rows from the table "v_player_elo". All fields are combined with a logical 'AND'. -""" -input v_player_elo_bool_exp { - _and: [v_player_elo_bool_exp!] - _not: v_player_elo_bool_exp - _or: [v_player_elo_bool_exp!] - actual_score: float8_comparison_exp - assists: Int_comparison_exp - current_elo: Int_comparison_exp - damage: Int_comparison_exp - damage_percent: float8_comparison_exp - deaths: Int_comparison_exp - elo_change: Int_comparison_exp - expected_score: float8_comparison_exp - impact: float8_comparison_exp - k_factor: Int_comparison_exp - kda: float8_comparison_exp - kills: Int_comparison_exp - map_losses: Int_comparison_exp - map_wins: Int_comparison_exp - match: matches_bool_exp - match_created_at: timestamptz_comparison_exp - match_id: uuid_comparison_exp - match_result: String_comparison_exp - opponent_team_elo_avg: float8_comparison_exp - performance_multiplier: float8_comparison_exp - player_name: String_comparison_exp - player_steam_id: bigint_comparison_exp - player_team_elo_avg: float8_comparison_exp - rating_for_expected: float8_comparison_exp - season_id: uuid_comparison_exp - series_multiplier: Int_comparison_exp - team_avg_kda: float8_comparison_exp - type: String_comparison_exp - updated_elo: Int_comparison_exp -} - -""" -input type for inserting data into table "v_player_elo" -""" -input v_player_elo_insert_input { - actual_score: float8 - assists: Int - current_elo: Int - damage: Int - damage_percent: float8 - deaths: Int - elo_change: Int - expected_score: float8 - impact: float8 - k_factor: Int - kda: float8 - kills: Int - map_losses: Int - map_wins: Int - match: matches_obj_rel_insert_input - match_created_at: timestamptz - match_id: uuid - match_result: String - opponent_team_elo_avg: float8 - performance_multiplier: float8 - player_name: String - player_steam_id: bigint - player_team_elo_avg: float8 - rating_for_expected: float8 - season_id: uuid - series_multiplier: Int - team_avg_kda: float8 - type: String - updated_elo: Int -} - -"""aggregate max on columns""" -type v_player_elo_max_fields { - actual_score: float8 - assists: Int - current_elo: Int - damage: Int - damage_percent: float8 - deaths: Int - elo_change: Int - expected_score: float8 - impact: float8 - k_factor: Int - kda: float8 - kills: Int - map_losses: Int - map_wins: Int - match_created_at: timestamptz - match_id: uuid - match_result: String - opponent_team_elo_avg: float8 - performance_multiplier: float8 - player_name: String - player_steam_id: bigint - player_team_elo_avg: float8 - rating_for_expected: float8 - season_id: uuid - series_multiplier: Int - team_avg_kda: float8 - type: String - updated_elo: Int -} - -""" -order by max() on columns of table "v_player_elo" -""" -input v_player_elo_max_order_by { - actual_score: order_by - assists: order_by - current_elo: order_by - damage: order_by - damage_percent: order_by - deaths: order_by - elo_change: order_by - expected_score: order_by - impact: order_by - k_factor: order_by - kda: order_by - kills: order_by - map_losses: order_by - map_wins: order_by - match_created_at: order_by - match_id: order_by - match_result: order_by - opponent_team_elo_avg: order_by - performance_multiplier: order_by - player_name: order_by - player_steam_id: order_by - player_team_elo_avg: order_by - rating_for_expected: order_by - season_id: order_by - series_multiplier: order_by - team_avg_kda: order_by - type: order_by - updated_elo: order_by -} - -"""aggregate min on columns""" -type v_player_elo_min_fields { - actual_score: float8 - assists: Int - current_elo: Int - damage: Int - damage_percent: float8 - deaths: Int - elo_change: Int - expected_score: float8 - impact: float8 - k_factor: Int - kda: float8 - kills: Int - map_losses: Int - map_wins: Int - match_created_at: timestamptz - match_id: uuid - match_result: String - opponent_team_elo_avg: float8 - performance_multiplier: float8 - player_name: String - player_steam_id: bigint - player_team_elo_avg: float8 - rating_for_expected: float8 - season_id: uuid - series_multiplier: Int - team_avg_kda: float8 - type: String - updated_elo: Int -} - -""" -order by min() on columns of table "v_player_elo" -""" -input v_player_elo_min_order_by { - actual_score: order_by - assists: order_by - current_elo: order_by - damage: order_by - damage_percent: order_by - deaths: order_by - elo_change: order_by - expected_score: order_by - impact: order_by - k_factor: order_by - kda: order_by - kills: order_by - map_losses: order_by - map_wins: order_by - match_created_at: order_by - match_id: order_by - match_result: order_by - opponent_team_elo_avg: order_by - performance_multiplier: order_by - player_name: order_by - player_steam_id: order_by - player_team_elo_avg: order_by - rating_for_expected: order_by - season_id: order_by - series_multiplier: order_by - team_avg_kda: order_by - type: order_by - updated_elo: order_by -} - -"""Ordering options when selecting data from "v_player_elo".""" -input v_player_elo_order_by { - actual_score: order_by - assists: order_by - current_elo: order_by - damage: order_by - damage_percent: order_by - deaths: order_by - elo_change: order_by - expected_score: order_by - impact: order_by - k_factor: order_by - kda: order_by - kills: order_by - map_losses: order_by - map_wins: order_by - match: matches_order_by - match_created_at: order_by - match_id: order_by - match_result: order_by - opponent_team_elo_avg: order_by - performance_multiplier: order_by - player_name: order_by - player_steam_id: order_by - player_team_elo_avg: order_by - rating_for_expected: order_by - season_id: order_by - series_multiplier: order_by - team_avg_kda: order_by - type: order_by - updated_elo: order_by -} - -""" -select columns of table "v_player_elo" -""" -enum v_player_elo_select_column { - """column name""" - actual_score - - """column name""" - assists - - """column name""" - current_elo - - """column name""" - damage - - """column name""" - damage_percent - - """column name""" - deaths - - """column name""" - elo_change - - """column name""" - expected_score - - """column name""" - impact - - """column name""" - k_factor - - """column name""" - kda - - """column name""" - kills - - """column name""" - map_losses - - """column name""" - map_wins - - """column name""" - match_created_at - - """column name""" - match_id - - """column name""" - match_result - - """column name""" - opponent_team_elo_avg - - """column name""" - performance_multiplier - - """column name""" - player_name - - """column name""" - player_steam_id - - """column name""" - player_team_elo_avg - - """column name""" - rating_for_expected - - """column name""" - season_id - - """column name""" - series_multiplier - - """column name""" - team_avg_kda - - """column name""" - type - - """column name""" - updated_elo -} - -""" -select "v_player_elo_aggregate_bool_exp_avg_arguments_columns" columns of table "v_player_elo" -""" -enum v_player_elo_select_column_v_player_elo_aggregate_bool_exp_avg_arguments_columns { - """column name""" - actual_score - - """column name""" - damage_percent - - """column name""" - expected_score - - """column name""" - impact - - """column name""" - kda - - """column name""" - opponent_team_elo_avg - - """column name""" - performance_multiplier - - """column name""" - player_team_elo_avg - - """column name""" - rating_for_expected - - """column name""" - team_avg_kda -} - -""" -select "v_player_elo_aggregate_bool_exp_corr_arguments_columns" columns of table "v_player_elo" -""" -enum v_player_elo_select_column_v_player_elo_aggregate_bool_exp_corr_arguments_columns { - """column name""" - actual_score - - """column name""" - damage_percent - - """column name""" - expected_score - - """column name""" - impact - - """column name""" - kda - - """column name""" - opponent_team_elo_avg - - """column name""" - performance_multiplier - - """column name""" - player_team_elo_avg - - """column name""" - rating_for_expected - - """column name""" - team_avg_kda -} - -""" -select "v_player_elo_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "v_player_elo" -""" -enum v_player_elo_select_column_v_player_elo_aggregate_bool_exp_covar_samp_arguments_columns { - """column name""" - actual_score - - """column name""" - damage_percent - - """column name""" - expected_score - - """column name""" - impact - - """column name""" - kda - - """column name""" - opponent_team_elo_avg - - """column name""" - performance_multiplier - - """column name""" - player_team_elo_avg - - """column name""" - rating_for_expected - - """column name""" - team_avg_kda -} - -""" -select "v_player_elo_aggregate_bool_exp_max_arguments_columns" columns of table "v_player_elo" -""" -enum v_player_elo_select_column_v_player_elo_aggregate_bool_exp_max_arguments_columns { - """column name""" - actual_score - - """column name""" - damage_percent - - """column name""" - expected_score - - """column name""" - impact - - """column name""" - kda - - """column name""" - opponent_team_elo_avg - - """column name""" - performance_multiplier - - """column name""" - player_team_elo_avg - - """column name""" - rating_for_expected - - """column name""" - team_avg_kda -} - -""" -select "v_player_elo_aggregate_bool_exp_min_arguments_columns" columns of table "v_player_elo" -""" -enum v_player_elo_select_column_v_player_elo_aggregate_bool_exp_min_arguments_columns { - """column name""" - actual_score - - """column name""" - damage_percent - - """column name""" - expected_score - - """column name""" - impact - - """column name""" - kda - - """column name""" - opponent_team_elo_avg - - """column name""" - performance_multiplier - - """column name""" - player_team_elo_avg - - """column name""" - rating_for_expected - - """column name""" - team_avg_kda -} - -""" -select "v_player_elo_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "v_player_elo" -""" -enum v_player_elo_select_column_v_player_elo_aggregate_bool_exp_stddev_samp_arguments_columns { - """column name""" - actual_score - - """column name""" - damage_percent - - """column name""" - expected_score - - """column name""" - impact - - """column name""" - kda - - """column name""" - opponent_team_elo_avg - - """column name""" - performance_multiplier - - """column name""" - player_team_elo_avg - - """column name""" - rating_for_expected - - """column name""" - team_avg_kda -} - -""" -select "v_player_elo_aggregate_bool_exp_sum_arguments_columns" columns of table "v_player_elo" -""" -enum v_player_elo_select_column_v_player_elo_aggregate_bool_exp_sum_arguments_columns { - """column name""" - actual_score - - """column name""" - damage_percent - - """column name""" - expected_score - - """column name""" - impact - - """column name""" - kda - - """column name""" - opponent_team_elo_avg - - """column name""" - performance_multiplier - - """column name""" - player_team_elo_avg - - """column name""" - rating_for_expected - - """column name""" - team_avg_kda -} - -""" -select "v_player_elo_aggregate_bool_exp_var_samp_arguments_columns" columns of table "v_player_elo" -""" -enum v_player_elo_select_column_v_player_elo_aggregate_bool_exp_var_samp_arguments_columns { - """column name""" - actual_score - - """column name""" - damage_percent - - """column name""" - expected_score - - """column name""" - impact - - """column name""" - kda - - """column name""" - opponent_team_elo_avg - - """column name""" - performance_multiplier - - """column name""" - player_team_elo_avg - - """column name""" - rating_for_expected - - """column name""" - team_avg_kda -} - -"""aggregate stddev on columns""" -type v_player_elo_stddev_fields { - actual_score: Float - assists: Float - current_elo: Float - damage: Float - damage_percent: Float - deaths: Float - elo_change: Float - expected_score: Float - impact: Float - k_factor: Float - kda: Float - kills: Float - map_losses: Float - map_wins: Float - opponent_team_elo_avg: Float - performance_multiplier: Float - player_steam_id: Float - player_team_elo_avg: Float - rating_for_expected: Float - series_multiplier: Float - team_avg_kda: Float - updated_elo: Float -} - -""" -order by stddev() on columns of table "v_player_elo" -""" -input v_player_elo_stddev_order_by { - actual_score: order_by - assists: order_by - current_elo: order_by - damage: order_by - damage_percent: order_by - deaths: order_by - elo_change: order_by - expected_score: order_by - impact: order_by - k_factor: order_by - kda: order_by - kills: order_by - map_losses: order_by - map_wins: order_by - opponent_team_elo_avg: order_by - performance_multiplier: order_by - player_steam_id: order_by - player_team_elo_avg: order_by - rating_for_expected: order_by - series_multiplier: order_by - team_avg_kda: order_by - updated_elo: order_by -} - -"""aggregate stddev_pop on columns""" -type v_player_elo_stddev_pop_fields { - actual_score: Float - assists: Float - current_elo: Float - damage: Float - damage_percent: Float - deaths: Float - elo_change: Float - expected_score: Float - impact: Float - k_factor: Float - kda: Float - kills: Float - map_losses: Float - map_wins: Float - opponent_team_elo_avg: Float - performance_multiplier: Float - player_steam_id: Float - player_team_elo_avg: Float - rating_for_expected: Float - series_multiplier: Float - team_avg_kda: Float - updated_elo: Float -} - -""" -order by stddev_pop() on columns of table "v_player_elo" -""" -input v_player_elo_stddev_pop_order_by { - actual_score: order_by - assists: order_by - current_elo: order_by - damage: order_by - damage_percent: order_by - deaths: order_by - elo_change: order_by - expected_score: order_by - impact: order_by - k_factor: order_by - kda: order_by - kills: order_by - map_losses: order_by - map_wins: order_by - opponent_team_elo_avg: order_by - performance_multiplier: order_by - player_steam_id: order_by - player_team_elo_avg: order_by - rating_for_expected: order_by - series_multiplier: order_by - team_avg_kda: order_by - updated_elo: order_by -} - -"""aggregate stddev_samp on columns""" -type v_player_elo_stddev_samp_fields { - actual_score: Float - assists: Float - current_elo: Float - damage: Float - damage_percent: Float - deaths: Float - elo_change: Float - expected_score: Float - impact: Float - k_factor: Float - kda: Float - kills: Float - map_losses: Float - map_wins: Float - opponent_team_elo_avg: Float - performance_multiplier: Float - player_steam_id: Float - player_team_elo_avg: Float - rating_for_expected: Float - series_multiplier: Float - team_avg_kda: Float - updated_elo: Float -} - -""" -order by stddev_samp() on columns of table "v_player_elo" -""" -input v_player_elo_stddev_samp_order_by { - actual_score: order_by - assists: order_by - current_elo: order_by - damage: order_by - damage_percent: order_by - deaths: order_by - elo_change: order_by - expected_score: order_by - impact: order_by - k_factor: order_by - kda: order_by - kills: order_by - map_losses: order_by - map_wins: order_by - opponent_team_elo_avg: order_by - performance_multiplier: order_by - player_steam_id: order_by - player_team_elo_avg: order_by - rating_for_expected: order_by - series_multiplier: order_by - team_avg_kda: order_by - updated_elo: order_by -} - -""" -Streaming cursor of the table "v_player_elo" -""" -input v_player_elo_stream_cursor_input { - """Stream column input with initial value""" - initial_value: v_player_elo_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input v_player_elo_stream_cursor_value_input { - actual_score: float8 - assists: Int - current_elo: Int - damage: Int - damage_percent: float8 - deaths: Int - elo_change: Int - expected_score: float8 - impact: float8 - k_factor: Int - kda: float8 - kills: Int - map_losses: Int - map_wins: Int - match_created_at: timestamptz - match_id: uuid - match_result: String - opponent_team_elo_avg: float8 - performance_multiplier: float8 - player_name: String - player_steam_id: bigint - player_team_elo_avg: float8 - rating_for_expected: float8 - season_id: uuid - series_multiplier: Int - team_avg_kda: float8 - type: String - updated_elo: Int -} - -"""aggregate sum on columns""" -type v_player_elo_sum_fields { - actual_score: float8 - assists: Int - current_elo: Int - damage: Int - damage_percent: float8 - deaths: Int - elo_change: Int - expected_score: float8 - impact: float8 - k_factor: Int - kda: float8 - kills: Int - map_losses: Int - map_wins: Int - opponent_team_elo_avg: float8 - performance_multiplier: float8 - player_steam_id: bigint - player_team_elo_avg: float8 - rating_for_expected: float8 - series_multiplier: Int - team_avg_kda: float8 - updated_elo: Int -} - -""" -order by sum() on columns of table "v_player_elo" -""" -input v_player_elo_sum_order_by { - actual_score: order_by - assists: order_by - current_elo: order_by - damage: order_by - damage_percent: order_by - deaths: order_by - elo_change: order_by - expected_score: order_by - impact: order_by - k_factor: order_by - kda: order_by - kills: order_by - map_losses: order_by - map_wins: order_by - opponent_team_elo_avg: order_by - performance_multiplier: order_by - player_steam_id: order_by - player_team_elo_avg: order_by - rating_for_expected: order_by - series_multiplier: order_by - team_avg_kda: order_by - updated_elo: order_by -} - -"""aggregate var_pop on columns""" -type v_player_elo_var_pop_fields { - actual_score: Float - assists: Float - current_elo: Float - damage: Float - damage_percent: Float - deaths: Float - elo_change: Float - expected_score: Float - impact: Float - k_factor: Float - kda: Float - kills: Float - map_losses: Float - map_wins: Float - opponent_team_elo_avg: Float - performance_multiplier: Float - player_steam_id: Float - player_team_elo_avg: Float - rating_for_expected: Float - series_multiplier: Float - team_avg_kda: Float - updated_elo: Float -} - -""" -order by var_pop() on columns of table "v_player_elo" -""" -input v_player_elo_var_pop_order_by { - actual_score: order_by - assists: order_by - current_elo: order_by - damage: order_by - damage_percent: order_by - deaths: order_by - elo_change: order_by - expected_score: order_by - impact: order_by - k_factor: order_by - kda: order_by - kills: order_by - map_losses: order_by - map_wins: order_by - opponent_team_elo_avg: order_by - performance_multiplier: order_by - player_steam_id: order_by - player_team_elo_avg: order_by - rating_for_expected: order_by - series_multiplier: order_by - team_avg_kda: order_by - updated_elo: order_by -} - -"""aggregate var_samp on columns""" -type v_player_elo_var_samp_fields { - actual_score: Float - assists: Float - current_elo: Float - damage: Float - damage_percent: Float - deaths: Float - elo_change: Float - expected_score: Float - impact: Float - k_factor: Float - kda: Float - kills: Float - map_losses: Float - map_wins: Float - opponent_team_elo_avg: Float - performance_multiplier: Float - player_steam_id: Float - player_team_elo_avg: Float - rating_for_expected: Float - series_multiplier: Float - team_avg_kda: Float - updated_elo: Float -} - -""" -order by var_samp() on columns of table "v_player_elo" -""" -input v_player_elo_var_samp_order_by { - actual_score: order_by - assists: order_by - current_elo: order_by - damage: order_by - damage_percent: order_by - deaths: order_by - elo_change: order_by - expected_score: order_by - impact: order_by - k_factor: order_by - kda: order_by - kills: order_by - map_losses: order_by - map_wins: order_by - opponent_team_elo_avg: order_by - performance_multiplier: order_by - player_steam_id: order_by - player_team_elo_avg: order_by - rating_for_expected: order_by - series_multiplier: order_by - team_avg_kda: order_by - updated_elo: order_by -} - -"""aggregate variance on columns""" -type v_player_elo_variance_fields { - actual_score: Float - assists: Float - current_elo: Float - damage: Float - damage_percent: Float - deaths: Float - elo_change: Float - expected_score: Float - impact: Float - k_factor: Float - kda: Float - kills: Float - map_losses: Float - map_wins: Float - opponent_team_elo_avg: Float - performance_multiplier: Float - player_steam_id: Float - player_team_elo_avg: Float - rating_for_expected: Float - series_multiplier: Float - team_avg_kda: Float - updated_elo: Float -} - -""" -order by variance() on columns of table "v_player_elo" -""" -input v_player_elo_variance_order_by { - actual_score: order_by - assists: order_by - current_elo: order_by - damage: order_by - damage_percent: order_by - deaths: order_by - elo_change: order_by - expected_score: order_by - impact: order_by - k_factor: order_by - kda: order_by - kills: order_by - map_losses: order_by - map_wins: order_by - opponent_team_elo_avg: order_by - performance_multiplier: order_by - player_steam_id: order_by - player_team_elo_avg: order_by - rating_for_expected: order_by - series_multiplier: order_by - team_avg_kda: order_by - updated_elo: order_by -} - -""" -columns and relationships of "v_player_map_losses" -""" -type v_player_map_losses { - """An object relationship""" - map: maps - map_id: uuid - - """An object relationship""" - match: matches - match_id: uuid - started_at: timestamptz - steam_id: bigint -} - -""" -aggregated selection of "v_player_map_losses" -""" -type v_player_map_losses_aggregate { - aggregate: v_player_map_losses_aggregate_fields - nodes: [v_player_map_losses!]! -} - -""" -aggregate fields of "v_player_map_losses" -""" -type v_player_map_losses_aggregate_fields { - avg: v_player_map_losses_avg_fields - count(columns: [v_player_map_losses_select_column!], distinct: Boolean): Int! - max: v_player_map_losses_max_fields - min: v_player_map_losses_min_fields - stddev: v_player_map_losses_stddev_fields - stddev_pop: v_player_map_losses_stddev_pop_fields - stddev_samp: v_player_map_losses_stddev_samp_fields - sum: v_player_map_losses_sum_fields - var_pop: v_player_map_losses_var_pop_fields - var_samp: v_player_map_losses_var_samp_fields - variance: v_player_map_losses_variance_fields -} - -"""aggregate avg on columns""" -type v_player_map_losses_avg_fields { - steam_id: Float -} - -""" -Boolean expression to filter rows from the table "v_player_map_losses". All fields are combined with a logical 'AND'. -""" -input v_player_map_losses_bool_exp { - _and: [v_player_map_losses_bool_exp!] - _not: v_player_map_losses_bool_exp - _or: [v_player_map_losses_bool_exp!] - map: maps_bool_exp - map_id: uuid_comparison_exp - match: matches_bool_exp - match_id: uuid_comparison_exp - started_at: timestamptz_comparison_exp - steam_id: bigint_comparison_exp -} - -"""aggregate max on columns""" -type v_player_map_losses_max_fields { - map_id: uuid - match_id: uuid - started_at: timestamptz - steam_id: bigint -} - -"""aggregate min on columns""" -type v_player_map_losses_min_fields { - map_id: uuid - match_id: uuid - started_at: timestamptz - steam_id: bigint -} - -"""Ordering options when selecting data from "v_player_map_losses".""" -input v_player_map_losses_order_by { - map: maps_order_by - map_id: order_by - match: matches_order_by - match_id: order_by - started_at: order_by - steam_id: order_by -} - -""" -select columns of table "v_player_map_losses" -""" -enum v_player_map_losses_select_column { - """column name""" - map_id - - """column name""" - match_id - - """column name""" - started_at - - """column name""" - steam_id -} - -"""aggregate stddev on columns""" -type v_player_map_losses_stddev_fields { - steam_id: Float -} - -"""aggregate stddev_pop on columns""" -type v_player_map_losses_stddev_pop_fields { - steam_id: Float -} - -"""aggregate stddev_samp on columns""" -type v_player_map_losses_stddev_samp_fields { - steam_id: Float -} - -""" -Streaming cursor of the table "v_player_map_losses" -""" -input v_player_map_losses_stream_cursor_input { - """Stream column input with initial value""" - initial_value: v_player_map_losses_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input v_player_map_losses_stream_cursor_value_input { - map_id: uuid - match_id: uuid - started_at: timestamptz - steam_id: bigint -} - -"""aggregate sum on columns""" -type v_player_map_losses_sum_fields { - steam_id: bigint -} - -"""aggregate var_pop on columns""" -type v_player_map_losses_var_pop_fields { - steam_id: Float -} - -"""aggregate var_samp on columns""" -type v_player_map_losses_var_samp_fields { - steam_id: Float -} - -"""aggregate variance on columns""" -type v_player_map_losses_variance_fields { - steam_id: Float -} - -""" -columns and relationships of "v_player_map_wins" -""" -type v_player_map_wins { - """An object relationship""" - map: maps - map_id: uuid - - """An object relationship""" - match: matches - match_id: uuid - started_at: timestamptz - steam_id: bigint -} - -""" -aggregated selection of "v_player_map_wins" -""" -type v_player_map_wins_aggregate { - aggregate: v_player_map_wins_aggregate_fields - nodes: [v_player_map_wins!]! -} - -""" -aggregate fields of "v_player_map_wins" -""" -type v_player_map_wins_aggregate_fields { - avg: v_player_map_wins_avg_fields - count(columns: [v_player_map_wins_select_column!], distinct: Boolean): Int! - max: v_player_map_wins_max_fields - min: v_player_map_wins_min_fields - stddev: v_player_map_wins_stddev_fields - stddev_pop: v_player_map_wins_stddev_pop_fields - stddev_samp: v_player_map_wins_stddev_samp_fields - sum: v_player_map_wins_sum_fields - var_pop: v_player_map_wins_var_pop_fields - var_samp: v_player_map_wins_var_samp_fields - variance: v_player_map_wins_variance_fields -} - -"""aggregate avg on columns""" -type v_player_map_wins_avg_fields { - steam_id: Float -} - -""" -Boolean expression to filter rows from the table "v_player_map_wins". All fields are combined with a logical 'AND'. -""" -input v_player_map_wins_bool_exp { - _and: [v_player_map_wins_bool_exp!] - _not: v_player_map_wins_bool_exp - _or: [v_player_map_wins_bool_exp!] - map: maps_bool_exp - map_id: uuid_comparison_exp - match: matches_bool_exp - match_id: uuid_comparison_exp - started_at: timestamptz_comparison_exp - steam_id: bigint_comparison_exp -} - -"""aggregate max on columns""" -type v_player_map_wins_max_fields { - map_id: uuid - match_id: uuid - started_at: timestamptz - steam_id: bigint -} - -"""aggregate min on columns""" -type v_player_map_wins_min_fields { - map_id: uuid - match_id: uuid - started_at: timestamptz - steam_id: bigint -} - -"""Ordering options when selecting data from "v_player_map_wins".""" -input v_player_map_wins_order_by { - map: maps_order_by - map_id: order_by - match: matches_order_by - match_id: order_by - started_at: order_by - steam_id: order_by -} - -""" -select columns of table "v_player_map_wins" -""" -enum v_player_map_wins_select_column { - """column name""" - map_id - - """column name""" - match_id - - """column name""" - started_at - - """column name""" - steam_id -} - -"""aggregate stddev on columns""" -type v_player_map_wins_stddev_fields { - steam_id: Float -} - -"""aggregate stddev_pop on columns""" -type v_player_map_wins_stddev_pop_fields { - steam_id: Float -} - -"""aggregate stddev_samp on columns""" -type v_player_map_wins_stddev_samp_fields { - steam_id: Float -} - -""" -Streaming cursor of the table "v_player_map_wins" -""" -input v_player_map_wins_stream_cursor_input { - """Stream column input with initial value""" - initial_value: v_player_map_wins_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input v_player_map_wins_stream_cursor_value_input { - map_id: uuid - match_id: uuid - started_at: timestamptz - steam_id: bigint -} - -"""aggregate sum on columns""" -type v_player_map_wins_sum_fields { - steam_id: bigint -} - -"""aggregate var_pop on columns""" -type v_player_map_wins_var_pop_fields { - steam_id: Float -} - -"""aggregate var_samp on columns""" -type v_player_map_wins_var_samp_fields { - steam_id: Float -} - -"""aggregate variance on columns""" -type v_player_map_wins_variance_fields { - steam_id: Float -} - -""" -columns and relationships of "v_player_match_head_to_head" -""" -type v_player_match_head_to_head { - """An object relationship""" - attacked: players - attacked_steam_id: bigint - - """An object relationship""" - attacker: players - attacker_steam_id: bigint - damage_dealt: Int - flash_count: bigint - headshot_kills: bigint - hits: bigint - kills: bigint - - """An object relationship""" - match: matches - match_id: uuid -} - -""" -aggregated selection of "v_player_match_head_to_head" -""" -type v_player_match_head_to_head_aggregate { - aggregate: v_player_match_head_to_head_aggregate_fields - nodes: [v_player_match_head_to_head!]! -} - -""" -aggregate fields of "v_player_match_head_to_head" -""" -type v_player_match_head_to_head_aggregate_fields { - avg: v_player_match_head_to_head_avg_fields - count(columns: [v_player_match_head_to_head_select_column!], distinct: Boolean): Int! - max: v_player_match_head_to_head_max_fields - min: v_player_match_head_to_head_min_fields - stddev: v_player_match_head_to_head_stddev_fields - stddev_pop: v_player_match_head_to_head_stddev_pop_fields - stddev_samp: v_player_match_head_to_head_stddev_samp_fields - sum: v_player_match_head_to_head_sum_fields - var_pop: v_player_match_head_to_head_var_pop_fields - var_samp: v_player_match_head_to_head_var_samp_fields - variance: v_player_match_head_to_head_variance_fields -} - -"""aggregate avg on columns""" -type v_player_match_head_to_head_avg_fields { - attacked_steam_id: Float - attacker_steam_id: Float - damage_dealt: Float - flash_count: Float - headshot_kills: Float - hits: Float - kills: Float -} - -""" -Boolean expression to filter rows from the table "v_player_match_head_to_head". All fields are combined with a logical 'AND'. -""" -input v_player_match_head_to_head_bool_exp { - _and: [v_player_match_head_to_head_bool_exp!] - _not: v_player_match_head_to_head_bool_exp - _or: [v_player_match_head_to_head_bool_exp!] - attacked: players_bool_exp - attacked_steam_id: bigint_comparison_exp - attacker: players_bool_exp - attacker_steam_id: bigint_comparison_exp - damage_dealt: Int_comparison_exp - flash_count: bigint_comparison_exp - headshot_kills: bigint_comparison_exp - hits: bigint_comparison_exp - kills: bigint_comparison_exp - match: matches_bool_exp - match_id: uuid_comparison_exp -} - -"""aggregate max on columns""" -type v_player_match_head_to_head_max_fields { - attacked_steam_id: bigint - attacker_steam_id: bigint - damage_dealt: Int - flash_count: bigint - headshot_kills: bigint - hits: bigint - kills: bigint - match_id: uuid -} - -"""aggregate min on columns""" -type v_player_match_head_to_head_min_fields { - attacked_steam_id: bigint - attacker_steam_id: bigint - damage_dealt: Int - flash_count: bigint - headshot_kills: bigint - hits: bigint - kills: bigint - match_id: uuid -} - -""" -Ordering options when selecting data from "v_player_match_head_to_head". -""" -input v_player_match_head_to_head_order_by { - attacked: players_order_by - attacked_steam_id: order_by - attacker: players_order_by - attacker_steam_id: order_by - damage_dealt: order_by - flash_count: order_by - headshot_kills: order_by - hits: order_by - kills: order_by - match: matches_order_by - match_id: order_by -} - -""" -select columns of table "v_player_match_head_to_head" -""" -enum v_player_match_head_to_head_select_column { - """column name""" - attacked_steam_id - - """column name""" - attacker_steam_id - - """column name""" - damage_dealt - - """column name""" - flash_count - - """column name""" - headshot_kills - - """column name""" - hits - - """column name""" - kills - - """column name""" - match_id -} - -"""aggregate stddev on columns""" -type v_player_match_head_to_head_stddev_fields { - attacked_steam_id: Float - attacker_steam_id: Float - damage_dealt: Float - flash_count: Float - headshot_kills: Float - hits: Float - kills: Float -} - -"""aggregate stddev_pop on columns""" -type v_player_match_head_to_head_stddev_pop_fields { - attacked_steam_id: Float - attacker_steam_id: Float - damage_dealt: Float - flash_count: Float - headshot_kills: Float - hits: Float - kills: Float -} - -"""aggregate stddev_samp on columns""" -type v_player_match_head_to_head_stddev_samp_fields { - attacked_steam_id: Float - attacker_steam_id: Float - damage_dealt: Float - flash_count: Float - headshot_kills: Float - hits: Float - kills: Float -} - -""" -Streaming cursor of the table "v_player_match_head_to_head" -""" -input v_player_match_head_to_head_stream_cursor_input { - """Stream column input with initial value""" - initial_value: v_player_match_head_to_head_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input v_player_match_head_to_head_stream_cursor_value_input { - attacked_steam_id: bigint - attacker_steam_id: bigint - damage_dealt: Int - flash_count: bigint - headshot_kills: bigint - hits: bigint - kills: bigint - match_id: uuid -} - -"""aggregate sum on columns""" -type v_player_match_head_to_head_sum_fields { - attacked_steam_id: bigint - attacker_steam_id: bigint - damage_dealt: Int - flash_count: bigint - headshot_kills: bigint - hits: bigint - kills: bigint -} - -"""aggregate var_pop on columns""" -type v_player_match_head_to_head_var_pop_fields { - attacked_steam_id: Float - attacker_steam_id: Float - damage_dealt: Float - flash_count: Float - headshot_kills: Float - hits: Float - kills: Float -} - -"""aggregate var_samp on columns""" -type v_player_match_head_to_head_var_samp_fields { - attacked_steam_id: Float - attacker_steam_id: Float - damage_dealt: Float - flash_count: Float - headshot_kills: Float - hits: Float - kills: Float -} - -"""aggregate variance on columns""" -type v_player_match_head_to_head_variance_fields { - attacked_steam_id: Float - attacker_steam_id: Float - damage_dealt: Float - flash_count: Float - headshot_kills: Float - hits: Float - kills: Float -} - -""" -columns and relationships of "v_player_match_map_hltv" -""" -type v_player_match_map_hltv { - adr: numeric - apr: numeric - dpr: numeric - hltv_rating: numeric - kast_pct: numeric - kpr: numeric - - """An object relationship""" - match: matches - match_id: uuid - - """An object relationship""" - match_map: match_maps - match_map_id: uuid - - """An object relationship""" - player: players - rounds_played: Int - steam_id: bigint -} - -""" -aggregated selection of "v_player_match_map_hltv" -""" -type v_player_match_map_hltv_aggregate { - aggregate: v_player_match_map_hltv_aggregate_fields - nodes: [v_player_match_map_hltv!]! -} - -input v_player_match_map_hltv_aggregate_bool_exp { - count: v_player_match_map_hltv_aggregate_bool_exp_count -} - -input v_player_match_map_hltv_aggregate_bool_exp_count { - arguments: [v_player_match_map_hltv_select_column!] - distinct: Boolean - filter: v_player_match_map_hltv_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "v_player_match_map_hltv" -""" -type v_player_match_map_hltv_aggregate_fields { - avg: v_player_match_map_hltv_avg_fields - count(columns: [v_player_match_map_hltv_select_column!], distinct: Boolean): Int! - max: v_player_match_map_hltv_max_fields - min: v_player_match_map_hltv_min_fields - stddev: v_player_match_map_hltv_stddev_fields - stddev_pop: v_player_match_map_hltv_stddev_pop_fields - stddev_samp: v_player_match_map_hltv_stddev_samp_fields - sum: v_player_match_map_hltv_sum_fields - var_pop: v_player_match_map_hltv_var_pop_fields - var_samp: v_player_match_map_hltv_var_samp_fields - variance: v_player_match_map_hltv_variance_fields -} - -""" -order by aggregate values of table "v_player_match_map_hltv" -""" -input v_player_match_map_hltv_aggregate_order_by { - avg: v_player_match_map_hltv_avg_order_by - count: order_by - max: v_player_match_map_hltv_max_order_by - min: v_player_match_map_hltv_min_order_by - stddev: v_player_match_map_hltv_stddev_order_by - stddev_pop: v_player_match_map_hltv_stddev_pop_order_by - stddev_samp: v_player_match_map_hltv_stddev_samp_order_by - sum: v_player_match_map_hltv_sum_order_by - var_pop: v_player_match_map_hltv_var_pop_order_by - var_samp: v_player_match_map_hltv_var_samp_order_by - variance: v_player_match_map_hltv_variance_order_by -} - -""" -input type for inserting array relation for remote table "v_player_match_map_hltv" -""" -input v_player_match_map_hltv_arr_rel_insert_input { - data: [v_player_match_map_hltv_insert_input!]! -} - -"""aggregate avg on columns""" -type v_player_match_map_hltv_avg_fields { - adr: Float - apr: Float - dpr: Float - hltv_rating: Float - kast_pct: Float - kpr: Float - rounds_played: Float - steam_id: Float -} - -""" -order by avg() on columns of table "v_player_match_map_hltv" -""" -input v_player_match_map_hltv_avg_order_by { - adr: order_by - apr: order_by - dpr: order_by - hltv_rating: order_by - kast_pct: order_by - kpr: order_by - rounds_played: order_by - steam_id: order_by -} - -""" -Boolean expression to filter rows from the table "v_player_match_map_hltv". All fields are combined with a logical 'AND'. -""" -input v_player_match_map_hltv_bool_exp { - _and: [v_player_match_map_hltv_bool_exp!] - _not: v_player_match_map_hltv_bool_exp - _or: [v_player_match_map_hltv_bool_exp!] - adr: numeric_comparison_exp - apr: numeric_comparison_exp - dpr: numeric_comparison_exp - hltv_rating: numeric_comparison_exp - kast_pct: numeric_comparison_exp - kpr: numeric_comparison_exp - match: matches_bool_exp - match_id: uuid_comparison_exp - match_map: match_maps_bool_exp - match_map_id: uuid_comparison_exp - player: players_bool_exp - rounds_played: Int_comparison_exp - steam_id: bigint_comparison_exp -} - -""" -input type for incrementing numeric columns in table "v_player_match_map_hltv" -""" -input v_player_match_map_hltv_inc_input { - adr: numeric - apr: numeric - dpr: numeric - hltv_rating: numeric - kast_pct: numeric - kpr: numeric - rounds_played: Int - steam_id: bigint -} - -""" -input type for inserting data into table "v_player_match_map_hltv" -""" -input v_player_match_map_hltv_insert_input { - adr: numeric - apr: numeric - dpr: numeric - hltv_rating: numeric - kast_pct: numeric - kpr: numeric - match: matches_obj_rel_insert_input - match_id: uuid - match_map: match_maps_obj_rel_insert_input - match_map_id: uuid - player: players_obj_rel_insert_input - rounds_played: Int - steam_id: bigint -} - -"""aggregate max on columns""" -type v_player_match_map_hltv_max_fields { - adr: numeric - apr: numeric - dpr: numeric - hltv_rating: numeric - kast_pct: numeric - kpr: numeric - match_id: uuid - match_map_id: uuid - rounds_played: Int - steam_id: bigint -} - -""" -order by max() on columns of table "v_player_match_map_hltv" -""" -input v_player_match_map_hltv_max_order_by { - adr: order_by - apr: order_by - dpr: order_by - hltv_rating: order_by - kast_pct: order_by - kpr: order_by - match_id: order_by - match_map_id: order_by - rounds_played: order_by - steam_id: order_by -} - -"""aggregate min on columns""" -type v_player_match_map_hltv_min_fields { - adr: numeric - apr: numeric - dpr: numeric - hltv_rating: numeric - kast_pct: numeric - kpr: numeric - match_id: uuid - match_map_id: uuid - rounds_played: Int - steam_id: bigint -} - -""" -order by min() on columns of table "v_player_match_map_hltv" -""" -input v_player_match_map_hltv_min_order_by { - adr: order_by - apr: order_by - dpr: order_by - hltv_rating: order_by - kast_pct: order_by - kpr: order_by - match_id: order_by - match_map_id: order_by - rounds_played: order_by - steam_id: order_by -} - -""" -response of any mutation on the table "v_player_match_map_hltv" -""" -type v_player_match_map_hltv_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [v_player_match_map_hltv!]! -} - -"""Ordering options when selecting data from "v_player_match_map_hltv".""" -input v_player_match_map_hltv_order_by { - adr: order_by - apr: order_by - dpr: order_by - hltv_rating: order_by - kast_pct: order_by - kpr: order_by - match: matches_order_by - match_id: order_by - match_map: match_maps_order_by - match_map_id: order_by - player: players_order_by - rounds_played: order_by - steam_id: order_by -} - -""" -select columns of table "v_player_match_map_hltv" -""" -enum v_player_match_map_hltv_select_column { - """column name""" - adr - - """column name""" - apr - - """column name""" - dpr - - """column name""" - hltv_rating - - """column name""" - kast_pct - - """column name""" - kpr - - """column name""" - match_id - - """column name""" - match_map_id - - """column name""" - rounds_played - - """column name""" - steam_id -} - -""" -input type for updating data in table "v_player_match_map_hltv" -""" -input v_player_match_map_hltv_set_input { - adr: numeric - apr: numeric - dpr: numeric - hltv_rating: numeric - kast_pct: numeric - kpr: numeric - match_id: uuid - match_map_id: uuid - rounds_played: Int - steam_id: bigint -} - -"""aggregate stddev on columns""" -type v_player_match_map_hltv_stddev_fields { - adr: Float - apr: Float - dpr: Float - hltv_rating: Float - kast_pct: Float - kpr: Float - rounds_played: Float - steam_id: Float -} - -""" -order by stddev() on columns of table "v_player_match_map_hltv" -""" -input v_player_match_map_hltv_stddev_order_by { - adr: order_by - apr: order_by - dpr: order_by - hltv_rating: order_by - kast_pct: order_by - kpr: order_by - rounds_played: order_by - steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type v_player_match_map_hltv_stddev_pop_fields { - adr: Float - apr: Float - dpr: Float - hltv_rating: Float - kast_pct: Float - kpr: Float - rounds_played: Float - steam_id: Float -} - -""" -order by stddev_pop() on columns of table "v_player_match_map_hltv" -""" -input v_player_match_map_hltv_stddev_pop_order_by { - adr: order_by - apr: order_by - dpr: order_by - hltv_rating: order_by - kast_pct: order_by - kpr: order_by - rounds_played: order_by - steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type v_player_match_map_hltv_stddev_samp_fields { - adr: Float - apr: Float - dpr: Float - hltv_rating: Float - kast_pct: Float - kpr: Float - rounds_played: Float - steam_id: Float -} - -""" -order by stddev_samp() on columns of table "v_player_match_map_hltv" -""" -input v_player_match_map_hltv_stddev_samp_order_by { - adr: order_by - apr: order_by - dpr: order_by - hltv_rating: order_by - kast_pct: order_by - kpr: order_by - rounds_played: order_by - steam_id: order_by -} - -""" -Streaming cursor of the table "v_player_match_map_hltv" -""" -input v_player_match_map_hltv_stream_cursor_input { - """Stream column input with initial value""" - initial_value: v_player_match_map_hltv_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input v_player_match_map_hltv_stream_cursor_value_input { - adr: numeric - apr: numeric - dpr: numeric - hltv_rating: numeric - kast_pct: numeric - kpr: numeric - match_id: uuid - match_map_id: uuid - rounds_played: Int - steam_id: bigint -} - -"""aggregate sum on columns""" -type v_player_match_map_hltv_sum_fields { - adr: numeric - apr: numeric - dpr: numeric - hltv_rating: numeric - kast_pct: numeric - kpr: numeric - rounds_played: Int - steam_id: bigint -} - -""" -order by sum() on columns of table "v_player_match_map_hltv" -""" -input v_player_match_map_hltv_sum_order_by { - adr: order_by - apr: order_by - dpr: order_by - hltv_rating: order_by - kast_pct: order_by - kpr: order_by - rounds_played: order_by - steam_id: order_by -} - -input v_player_match_map_hltv_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: v_player_match_map_hltv_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: v_player_match_map_hltv_set_input - - """filter the rows which have to be updated""" - where: v_player_match_map_hltv_bool_exp! -} - -"""aggregate var_pop on columns""" -type v_player_match_map_hltv_var_pop_fields { - adr: Float - apr: Float - dpr: Float - hltv_rating: Float - kast_pct: Float - kpr: Float - rounds_played: Float - steam_id: Float -} - -""" -order by var_pop() on columns of table "v_player_match_map_hltv" -""" -input v_player_match_map_hltv_var_pop_order_by { - adr: order_by - apr: order_by - dpr: order_by - hltv_rating: order_by - kast_pct: order_by - kpr: order_by - rounds_played: order_by - steam_id: order_by -} - -"""aggregate var_samp on columns""" -type v_player_match_map_hltv_var_samp_fields { - adr: Float - apr: Float - dpr: Float - hltv_rating: Float - kast_pct: Float - kpr: Float - rounds_played: Float - steam_id: Float -} - -""" -order by var_samp() on columns of table "v_player_match_map_hltv" -""" -input v_player_match_map_hltv_var_samp_order_by { - adr: order_by - apr: order_by - dpr: order_by - hltv_rating: order_by - kast_pct: order_by - kpr: order_by - rounds_played: order_by - steam_id: order_by -} - -"""aggregate variance on columns""" -type v_player_match_map_hltv_variance_fields { - adr: Float - apr: Float - dpr: Float - hltv_rating: Float - kast_pct: Float - kpr: Float - rounds_played: Float - steam_id: Float -} - -""" -order by variance() on columns of table "v_player_match_map_hltv" -""" -input v_player_match_map_hltv_variance_order_by { - adr: order_by - apr: order_by - dpr: order_by - hltv_rating: order_by - kast_pct: order_by - kpr: order_by - rounds_played: order_by - steam_id: order_by -} - -""" -columns and relationships of "v_player_match_map_roles" -""" -type v_player_match_map_roles { - adr: numeric - awp_kills: Int - awp_share: numeric - deaths: Int - dpr: numeric - entry_rate: numeric - flash_assists: Int - hltv_rating: numeric - kast_pct: numeric - kills: Int - kpr: numeric - lineup_id: uuid - - """An object relationship""" - match: matches - match_id: uuid - - """An object relationship""" - match_map: match_maps - match_map_id: uuid - open_deaths: Int - open_kills: Int - opening_attempts: Int - - """An object relationship""" - player: players - role: String - rounds: Int - steam_id: bigint - support_idx: numeric - total_kills: Int - trade_kill_successes: Int - traded_death_successes: Int - util_damage: Int -} - -""" -aggregated selection of "v_player_match_map_roles" -""" -type v_player_match_map_roles_aggregate { - aggregate: v_player_match_map_roles_aggregate_fields - nodes: [v_player_match_map_roles!]! -} - -""" -aggregate fields of "v_player_match_map_roles" -""" -type v_player_match_map_roles_aggregate_fields { - avg: v_player_match_map_roles_avg_fields - count(columns: [v_player_match_map_roles_select_column!], distinct: Boolean): Int! - max: v_player_match_map_roles_max_fields - min: v_player_match_map_roles_min_fields - stddev: v_player_match_map_roles_stddev_fields - stddev_pop: v_player_match_map_roles_stddev_pop_fields - stddev_samp: v_player_match_map_roles_stddev_samp_fields - sum: v_player_match_map_roles_sum_fields - var_pop: v_player_match_map_roles_var_pop_fields - var_samp: v_player_match_map_roles_var_samp_fields - variance: v_player_match_map_roles_variance_fields -} - -"""aggregate avg on columns""" -type v_player_match_map_roles_avg_fields { - adr: Float - awp_kills: Float - awp_share: Float - deaths: Float - dpr: Float - entry_rate: Float - flash_assists: Float - hltv_rating: Float - kast_pct: Float - kills: Float - kpr: Float - open_deaths: Float - open_kills: Float - opening_attempts: Float - rounds: Float - steam_id: Float - support_idx: Float - total_kills: Float - trade_kill_successes: Float - traded_death_successes: Float - util_damage: Float -} - -""" -Boolean expression to filter rows from the table "v_player_match_map_roles". All fields are combined with a logical 'AND'. -""" -input v_player_match_map_roles_bool_exp { - _and: [v_player_match_map_roles_bool_exp!] - _not: v_player_match_map_roles_bool_exp - _or: [v_player_match_map_roles_bool_exp!] - adr: numeric_comparison_exp - awp_kills: Int_comparison_exp - awp_share: numeric_comparison_exp - deaths: Int_comparison_exp - dpr: numeric_comparison_exp - entry_rate: numeric_comparison_exp - flash_assists: Int_comparison_exp - hltv_rating: numeric_comparison_exp - kast_pct: numeric_comparison_exp - kills: Int_comparison_exp - kpr: numeric_comparison_exp - lineup_id: uuid_comparison_exp - match: matches_bool_exp - match_id: uuid_comparison_exp - match_map: match_maps_bool_exp - match_map_id: uuid_comparison_exp - open_deaths: Int_comparison_exp - open_kills: Int_comparison_exp - opening_attempts: Int_comparison_exp - player: players_bool_exp - role: String_comparison_exp - rounds: Int_comparison_exp - steam_id: bigint_comparison_exp - support_idx: numeric_comparison_exp - total_kills: Int_comparison_exp - trade_kill_successes: Int_comparison_exp - traded_death_successes: Int_comparison_exp - util_damage: Int_comparison_exp -} - -"""aggregate max on columns""" -type v_player_match_map_roles_max_fields { - adr: numeric - awp_kills: Int - awp_share: numeric - deaths: Int - dpr: numeric - entry_rate: numeric - flash_assists: Int - hltv_rating: numeric - kast_pct: numeric - kills: Int - kpr: numeric - lineup_id: uuid - match_id: uuid - match_map_id: uuid - open_deaths: Int - open_kills: Int - opening_attempts: Int - role: String - rounds: Int - steam_id: bigint - support_idx: numeric - total_kills: Int - trade_kill_successes: Int - traded_death_successes: Int - util_damage: Int -} - -"""aggregate min on columns""" -type v_player_match_map_roles_min_fields { - adr: numeric - awp_kills: Int - awp_share: numeric - deaths: Int - dpr: numeric - entry_rate: numeric - flash_assists: Int - hltv_rating: numeric - kast_pct: numeric - kills: Int - kpr: numeric - lineup_id: uuid - match_id: uuid - match_map_id: uuid - open_deaths: Int - open_kills: Int - opening_attempts: Int - role: String - rounds: Int - steam_id: bigint - support_idx: numeric - total_kills: Int - trade_kill_successes: Int - traded_death_successes: Int - util_damage: Int -} - -"""Ordering options when selecting data from "v_player_match_map_roles".""" -input v_player_match_map_roles_order_by { - adr: order_by - awp_kills: order_by - awp_share: order_by - deaths: order_by - dpr: order_by - entry_rate: order_by - flash_assists: order_by - hltv_rating: order_by - kast_pct: order_by - kills: order_by - kpr: order_by - lineup_id: order_by - match: matches_order_by - match_id: order_by - match_map: match_maps_order_by - match_map_id: order_by - open_deaths: order_by - open_kills: order_by - opening_attempts: order_by - player: players_order_by - role: order_by - rounds: order_by - steam_id: order_by - support_idx: order_by - total_kills: order_by - trade_kill_successes: order_by - traded_death_successes: order_by - util_damage: order_by -} - -""" -select columns of table "v_player_match_map_roles" -""" -enum v_player_match_map_roles_select_column { - """column name""" - adr - - """column name""" - awp_kills - - """column name""" - awp_share - - """column name""" - deaths - - """column name""" - dpr - - """column name""" - entry_rate - - """column name""" - flash_assists - - """column name""" - hltv_rating - - """column name""" - kast_pct - - """column name""" - kills - - """column name""" - kpr - - """column name""" - lineup_id - - """column name""" - match_id - - """column name""" - match_map_id - - """column name""" - open_deaths - - """column name""" - open_kills - - """column name""" - opening_attempts - - """column name""" - role - - """column name""" - rounds - - """column name""" - steam_id - - """column name""" - support_idx - - """column name""" - total_kills - - """column name""" - trade_kill_successes - - """column name""" - traded_death_successes - - """column name""" - util_damage -} - -"""aggregate stddev on columns""" -type v_player_match_map_roles_stddev_fields { - adr: Float - awp_kills: Float - awp_share: Float - deaths: Float - dpr: Float - entry_rate: Float - flash_assists: Float - hltv_rating: Float - kast_pct: Float - kills: Float - kpr: Float - open_deaths: Float - open_kills: Float - opening_attempts: Float - rounds: Float - steam_id: Float - support_idx: Float - total_kills: Float - trade_kill_successes: Float - traded_death_successes: Float - util_damage: Float -} - -"""aggregate stddev_pop on columns""" -type v_player_match_map_roles_stddev_pop_fields { - adr: Float - awp_kills: Float - awp_share: Float - deaths: Float - dpr: Float - entry_rate: Float - flash_assists: Float - hltv_rating: Float - kast_pct: Float - kills: Float - kpr: Float - open_deaths: Float - open_kills: Float - opening_attempts: Float - rounds: Float - steam_id: Float - support_idx: Float - total_kills: Float - trade_kill_successes: Float - traded_death_successes: Float - util_damage: Float -} - -"""aggregate stddev_samp on columns""" -type v_player_match_map_roles_stddev_samp_fields { - adr: Float - awp_kills: Float - awp_share: Float - deaths: Float - dpr: Float - entry_rate: Float - flash_assists: Float - hltv_rating: Float - kast_pct: Float - kills: Float - kpr: Float - open_deaths: Float - open_kills: Float - opening_attempts: Float - rounds: Float - steam_id: Float - support_idx: Float - total_kills: Float - trade_kill_successes: Float - traded_death_successes: Float - util_damage: Float -} - -""" -Streaming cursor of the table "v_player_match_map_roles" -""" -input v_player_match_map_roles_stream_cursor_input { - """Stream column input with initial value""" - initial_value: v_player_match_map_roles_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input v_player_match_map_roles_stream_cursor_value_input { - adr: numeric - awp_kills: Int - awp_share: numeric - deaths: Int - dpr: numeric - entry_rate: numeric - flash_assists: Int - hltv_rating: numeric - kast_pct: numeric - kills: Int - kpr: numeric - lineup_id: uuid - match_id: uuid - match_map_id: uuid - open_deaths: Int - open_kills: Int - opening_attempts: Int - role: String - rounds: Int - steam_id: bigint - support_idx: numeric - total_kills: Int - trade_kill_successes: Int - traded_death_successes: Int - util_damage: Int -} - -"""aggregate sum on columns""" -type v_player_match_map_roles_sum_fields { - adr: numeric - awp_kills: Int - awp_share: numeric - deaths: Int - dpr: numeric - entry_rate: numeric - flash_assists: Int - hltv_rating: numeric - kast_pct: numeric - kills: Int - kpr: numeric - open_deaths: Int - open_kills: Int - opening_attempts: Int - rounds: Int - steam_id: bigint - support_idx: numeric - total_kills: Int - trade_kill_successes: Int - traded_death_successes: Int - util_damage: Int -} - -"""aggregate var_pop on columns""" -type v_player_match_map_roles_var_pop_fields { - adr: Float - awp_kills: Float - awp_share: Float - deaths: Float - dpr: Float - entry_rate: Float - flash_assists: Float - hltv_rating: Float - kast_pct: Float - kills: Float - kpr: Float - open_deaths: Float - open_kills: Float - opening_attempts: Float - rounds: Float - steam_id: Float - support_idx: Float - total_kills: Float - trade_kill_successes: Float - traded_death_successes: Float - util_damage: Float -} - -"""aggregate var_samp on columns""" -type v_player_match_map_roles_var_samp_fields { - adr: Float - awp_kills: Float - awp_share: Float - deaths: Float - dpr: Float - entry_rate: Float - flash_assists: Float - hltv_rating: Float - kast_pct: Float - kills: Float - kpr: Float - open_deaths: Float - open_kills: Float - opening_attempts: Float - rounds: Float - steam_id: Float - support_idx: Float - total_kills: Float - trade_kill_successes: Float - traded_death_successes: Float - util_damage: Float -} - -"""aggregate variance on columns""" -type v_player_match_map_roles_variance_fields { - adr: Float - awp_kills: Float - awp_share: Float - deaths: Float - dpr: Float - entry_rate: Float - flash_assists: Float - hltv_rating: Float - kast_pct: Float - kills: Float - kpr: Float - open_deaths: Float - open_kills: Float - opening_attempts: Float - rounds: Float - steam_id: Float - support_idx: Float - total_kills: Float - trade_kill_successes: Float - traded_death_successes: Float - util_damage: Float -} - -""" -columns and relationships of "v_player_match_performance" -""" -type v_player_match_performance { - assists: Int - deaths: Int - kills: Int - - """An object relationship""" - map: maps - map_id: uuid - - """An object relationship""" - match: matches - match_created_at: timestamptz - match_id: uuid - match_result: String - player_steam_id: bigint - source: String - type: String -} - -""" -aggregated selection of "v_player_match_performance" -""" -type v_player_match_performance_aggregate { - aggregate: v_player_match_performance_aggregate_fields - nodes: [v_player_match_performance!]! -} - -""" -aggregate fields of "v_player_match_performance" -""" -type v_player_match_performance_aggregate_fields { - avg: v_player_match_performance_avg_fields - count(columns: [v_player_match_performance_select_column!], distinct: Boolean): Int! - max: v_player_match_performance_max_fields - min: v_player_match_performance_min_fields - stddev: v_player_match_performance_stddev_fields - stddev_pop: v_player_match_performance_stddev_pop_fields - stddev_samp: v_player_match_performance_stddev_samp_fields - sum: v_player_match_performance_sum_fields - var_pop: v_player_match_performance_var_pop_fields - var_samp: v_player_match_performance_var_samp_fields - variance: v_player_match_performance_variance_fields -} - -"""aggregate avg on columns""" -type v_player_match_performance_avg_fields { - assists: Float - deaths: Float - kills: Float - player_steam_id: Float -} - -""" -Boolean expression to filter rows from the table "v_player_match_performance". All fields are combined with a logical 'AND'. -""" -input v_player_match_performance_bool_exp { - _and: [v_player_match_performance_bool_exp!] - _not: v_player_match_performance_bool_exp - _or: [v_player_match_performance_bool_exp!] - assists: Int_comparison_exp - deaths: Int_comparison_exp - kills: Int_comparison_exp - map: maps_bool_exp - map_id: uuid_comparison_exp - match: matches_bool_exp - match_created_at: timestamptz_comparison_exp - match_id: uuid_comparison_exp - match_result: String_comparison_exp - player_steam_id: bigint_comparison_exp - source: String_comparison_exp - type: String_comparison_exp -} - -"""aggregate max on columns""" -type v_player_match_performance_max_fields { - assists: Int - deaths: Int - kills: Int - map_id: uuid - match_created_at: timestamptz - match_id: uuid - match_result: String - player_steam_id: bigint - source: String - type: String -} - -"""aggregate min on columns""" -type v_player_match_performance_min_fields { - assists: Int - deaths: Int - kills: Int - map_id: uuid - match_created_at: timestamptz - match_id: uuid - match_result: String - player_steam_id: bigint - source: String - type: String -} - -""" -Ordering options when selecting data from "v_player_match_performance". -""" -input v_player_match_performance_order_by { - assists: order_by - deaths: order_by - kills: order_by - map: maps_order_by - map_id: order_by - match: matches_order_by - match_created_at: order_by - match_id: order_by - match_result: order_by - player_steam_id: order_by - source: order_by - type: order_by -} - -""" -select columns of table "v_player_match_performance" -""" -enum v_player_match_performance_select_column { - """column name""" - assists - - """column name""" - deaths - - """column name""" - kills - - """column name""" - map_id - - """column name""" - match_created_at - - """column name""" - match_id - - """column name""" - match_result - - """column name""" - player_steam_id - - """column name""" - source - - """column name""" - type -} - -"""aggregate stddev on columns""" -type v_player_match_performance_stddev_fields { - assists: Float - deaths: Float - kills: Float - player_steam_id: Float -} - -"""aggregate stddev_pop on columns""" -type v_player_match_performance_stddev_pop_fields { - assists: Float - deaths: Float - kills: Float - player_steam_id: Float -} - -"""aggregate stddev_samp on columns""" -type v_player_match_performance_stddev_samp_fields { - assists: Float - deaths: Float - kills: Float - player_steam_id: Float -} - -""" -Streaming cursor of the table "v_player_match_performance" -""" -input v_player_match_performance_stream_cursor_input { - """Stream column input with initial value""" - initial_value: v_player_match_performance_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input v_player_match_performance_stream_cursor_value_input { - assists: Int - deaths: Int - kills: Int - map_id: uuid - match_created_at: timestamptz - match_id: uuid - match_result: String - player_steam_id: bigint - source: String - type: String -} - -"""aggregate sum on columns""" -type v_player_match_performance_sum_fields { - assists: Int - deaths: Int - kills: Int - player_steam_id: bigint -} - -"""aggregate var_pop on columns""" -type v_player_match_performance_var_pop_fields { - assists: Float - deaths: Float - kills: Float - player_steam_id: Float -} - -"""aggregate var_samp on columns""" -type v_player_match_performance_var_samp_fields { - assists: Float - deaths: Float - kills: Float - player_steam_id: Float -} - -"""aggregate variance on columns""" -type v_player_match_performance_variance_fields { - assists: Float - deaths: Float - kills: Float - player_steam_id: Float -} - -""" -columns and relationships of "v_player_match_rating" -""" -type v_player_match_rating { - adr: numeric - dpr: numeric - hltv_rating: numeric - kast_pct: numeric - kpr: numeric - - """An object relationship""" - match: matches - match_id: uuid - - """An object relationship""" - player: players - rounds_played: Int - steam_id: bigint -} - -""" -aggregated selection of "v_player_match_rating" -""" -type v_player_match_rating_aggregate { - aggregate: v_player_match_rating_aggregate_fields - nodes: [v_player_match_rating!]! -} - -""" -aggregate fields of "v_player_match_rating" -""" -type v_player_match_rating_aggregate_fields { - avg: v_player_match_rating_avg_fields - count(columns: [v_player_match_rating_select_column!], distinct: Boolean): Int! - max: v_player_match_rating_max_fields - min: v_player_match_rating_min_fields - stddev: v_player_match_rating_stddev_fields - stddev_pop: v_player_match_rating_stddev_pop_fields - stddev_samp: v_player_match_rating_stddev_samp_fields - sum: v_player_match_rating_sum_fields - var_pop: v_player_match_rating_var_pop_fields - var_samp: v_player_match_rating_var_samp_fields - variance: v_player_match_rating_variance_fields -} - -"""aggregate avg on columns""" -type v_player_match_rating_avg_fields { - adr: Float - dpr: Float - hltv_rating: Float - kast_pct: Float - kpr: Float - rounds_played: Float - steam_id: Float -} - -""" -Boolean expression to filter rows from the table "v_player_match_rating". All fields are combined with a logical 'AND'. -""" -input v_player_match_rating_bool_exp { - _and: [v_player_match_rating_bool_exp!] - _not: v_player_match_rating_bool_exp - _or: [v_player_match_rating_bool_exp!] - adr: numeric_comparison_exp - dpr: numeric_comparison_exp - hltv_rating: numeric_comparison_exp - kast_pct: numeric_comparison_exp - kpr: numeric_comparison_exp - match: matches_bool_exp - match_id: uuid_comparison_exp - player: players_bool_exp - rounds_played: Int_comparison_exp - steam_id: bigint_comparison_exp -} - -"""aggregate max on columns""" -type v_player_match_rating_max_fields { - adr: numeric - dpr: numeric - hltv_rating: numeric - kast_pct: numeric - kpr: numeric - match_id: uuid - rounds_played: Int - steam_id: bigint -} - -"""aggregate min on columns""" -type v_player_match_rating_min_fields { - adr: numeric - dpr: numeric - hltv_rating: numeric - kast_pct: numeric - kpr: numeric - match_id: uuid - rounds_played: Int - steam_id: bigint -} - -"""Ordering options when selecting data from "v_player_match_rating".""" -input v_player_match_rating_order_by { - adr: order_by - dpr: order_by - hltv_rating: order_by - kast_pct: order_by - kpr: order_by - match: matches_order_by - match_id: order_by - player: players_order_by - rounds_played: order_by - steam_id: order_by -} - -""" -select columns of table "v_player_match_rating" -""" -enum v_player_match_rating_select_column { - """column name""" - adr - - """column name""" - dpr - - """column name""" - hltv_rating - - """column name""" - kast_pct - - """column name""" - kpr - - """column name""" - match_id - - """column name""" - rounds_played - - """column name""" - steam_id -} - -"""aggregate stddev on columns""" -type v_player_match_rating_stddev_fields { - adr: Float - dpr: Float - hltv_rating: Float - kast_pct: Float - kpr: Float - rounds_played: Float - steam_id: Float -} - -"""aggregate stddev_pop on columns""" -type v_player_match_rating_stddev_pop_fields { - adr: Float - dpr: Float - hltv_rating: Float - kast_pct: Float - kpr: Float - rounds_played: Float - steam_id: Float -} - -"""aggregate stddev_samp on columns""" -type v_player_match_rating_stddev_samp_fields { - adr: Float - dpr: Float - hltv_rating: Float - kast_pct: Float - kpr: Float - rounds_played: Float - steam_id: Float -} - -""" -Streaming cursor of the table "v_player_match_rating" -""" -input v_player_match_rating_stream_cursor_input { - """Stream column input with initial value""" - initial_value: v_player_match_rating_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input v_player_match_rating_stream_cursor_value_input { - adr: numeric - dpr: numeric - hltv_rating: numeric - kast_pct: numeric - kpr: numeric - match_id: uuid - rounds_played: Int - steam_id: bigint -} - -"""aggregate sum on columns""" -type v_player_match_rating_sum_fields { - adr: numeric - dpr: numeric - hltv_rating: numeric - kast_pct: numeric - kpr: numeric - rounds_played: Int - steam_id: bigint -} - -"""aggregate var_pop on columns""" -type v_player_match_rating_var_pop_fields { - adr: Float - dpr: Float - hltv_rating: Float - kast_pct: Float - kpr: Float - rounds_played: Float - steam_id: Float -} - -"""aggregate var_samp on columns""" -type v_player_match_rating_var_samp_fields { - adr: Float - dpr: Float - hltv_rating: Float - kast_pct: Float - kpr: Float - rounds_played: Float - steam_id: Float -} - -"""aggregate variance on columns""" -type v_player_match_rating_variance_fields { - adr: Float - dpr: Float - hltv_rating: Float - kast_pct: Float - kpr: Float - rounds_played: Float - steam_id: Float -} - -""" -columns and relationships of "v_player_multi_kills" -""" -type v_player_multi_kills { - attacker_steam_id: bigint - kills: bigint - match_id: uuid - round: Int -} - -""" -aggregated selection of "v_player_multi_kills" -""" -type v_player_multi_kills_aggregate { - aggregate: v_player_multi_kills_aggregate_fields - nodes: [v_player_multi_kills!]! -} - -input v_player_multi_kills_aggregate_bool_exp { - count: v_player_multi_kills_aggregate_bool_exp_count -} - -input v_player_multi_kills_aggregate_bool_exp_count { - arguments: [v_player_multi_kills_select_column!] - distinct: Boolean - filter: v_player_multi_kills_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "v_player_multi_kills" -""" -type v_player_multi_kills_aggregate_fields { - avg: v_player_multi_kills_avg_fields - count(columns: [v_player_multi_kills_select_column!], distinct: Boolean): Int! - max: v_player_multi_kills_max_fields - min: v_player_multi_kills_min_fields - stddev: v_player_multi_kills_stddev_fields - stddev_pop: v_player_multi_kills_stddev_pop_fields - stddev_samp: v_player_multi_kills_stddev_samp_fields - sum: v_player_multi_kills_sum_fields - var_pop: v_player_multi_kills_var_pop_fields - var_samp: v_player_multi_kills_var_samp_fields - variance: v_player_multi_kills_variance_fields -} - -""" -order by aggregate values of table "v_player_multi_kills" -""" -input v_player_multi_kills_aggregate_order_by { - avg: v_player_multi_kills_avg_order_by - count: order_by - max: v_player_multi_kills_max_order_by - min: v_player_multi_kills_min_order_by - stddev: v_player_multi_kills_stddev_order_by - stddev_pop: v_player_multi_kills_stddev_pop_order_by - stddev_samp: v_player_multi_kills_stddev_samp_order_by - sum: v_player_multi_kills_sum_order_by - var_pop: v_player_multi_kills_var_pop_order_by - var_samp: v_player_multi_kills_var_samp_order_by - variance: v_player_multi_kills_variance_order_by -} - -""" -input type for inserting array relation for remote table "v_player_multi_kills" -""" -input v_player_multi_kills_arr_rel_insert_input { - data: [v_player_multi_kills_insert_input!]! -} - -"""aggregate avg on columns""" -type v_player_multi_kills_avg_fields { - attacker_steam_id: Float - kills: Float - round: Float -} - -""" -order by avg() on columns of table "v_player_multi_kills" -""" -input v_player_multi_kills_avg_order_by { - attacker_steam_id: order_by - kills: order_by - round: order_by -} - -""" -Boolean expression to filter rows from the table "v_player_multi_kills". All fields are combined with a logical 'AND'. -""" -input v_player_multi_kills_bool_exp { - _and: [v_player_multi_kills_bool_exp!] - _not: v_player_multi_kills_bool_exp - _or: [v_player_multi_kills_bool_exp!] - attacker_steam_id: bigint_comparison_exp - kills: bigint_comparison_exp - match_id: uuid_comparison_exp - round: Int_comparison_exp -} - -""" -input type for inserting data into table "v_player_multi_kills" -""" -input v_player_multi_kills_insert_input { - attacker_steam_id: bigint - kills: bigint - match_id: uuid - round: Int -} - -"""aggregate max on columns""" -type v_player_multi_kills_max_fields { - attacker_steam_id: bigint - kills: bigint - match_id: uuid - round: Int -} - -""" -order by max() on columns of table "v_player_multi_kills" -""" -input v_player_multi_kills_max_order_by { - attacker_steam_id: order_by - kills: order_by - match_id: order_by - round: order_by -} - -"""aggregate min on columns""" -type v_player_multi_kills_min_fields { - attacker_steam_id: bigint - kills: bigint - match_id: uuid - round: Int -} - -""" -order by min() on columns of table "v_player_multi_kills" -""" -input v_player_multi_kills_min_order_by { - attacker_steam_id: order_by - kills: order_by - match_id: order_by - round: order_by -} - -"""Ordering options when selecting data from "v_player_multi_kills".""" -input v_player_multi_kills_order_by { - attacker_steam_id: order_by - kills: order_by - match_id: order_by - round: order_by -} - -""" -select columns of table "v_player_multi_kills" -""" -enum v_player_multi_kills_select_column { - """column name""" - attacker_steam_id - - """column name""" - kills - - """column name""" - match_id - - """column name""" - round -} - -"""aggregate stddev on columns""" -type v_player_multi_kills_stddev_fields { - attacker_steam_id: Float - kills: Float - round: Float -} - -""" -order by stddev() on columns of table "v_player_multi_kills" -""" -input v_player_multi_kills_stddev_order_by { - attacker_steam_id: order_by - kills: order_by - round: order_by -} - -"""aggregate stddev_pop on columns""" -type v_player_multi_kills_stddev_pop_fields { - attacker_steam_id: Float - kills: Float - round: Float -} - -""" -order by stddev_pop() on columns of table "v_player_multi_kills" -""" -input v_player_multi_kills_stddev_pop_order_by { - attacker_steam_id: order_by - kills: order_by - round: order_by -} - -"""aggregate stddev_samp on columns""" -type v_player_multi_kills_stddev_samp_fields { - attacker_steam_id: Float - kills: Float - round: Float -} - -""" -order by stddev_samp() on columns of table "v_player_multi_kills" -""" -input v_player_multi_kills_stddev_samp_order_by { - attacker_steam_id: order_by - kills: order_by - round: order_by -} - -""" -Streaming cursor of the table "v_player_multi_kills" -""" -input v_player_multi_kills_stream_cursor_input { - """Stream column input with initial value""" - initial_value: v_player_multi_kills_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input v_player_multi_kills_stream_cursor_value_input { - attacker_steam_id: bigint - kills: bigint - match_id: uuid - round: Int -} - -"""aggregate sum on columns""" -type v_player_multi_kills_sum_fields { - attacker_steam_id: bigint - kills: bigint - round: Int -} - -""" -order by sum() on columns of table "v_player_multi_kills" -""" -input v_player_multi_kills_sum_order_by { - attacker_steam_id: order_by - kills: order_by - round: order_by -} - -"""aggregate var_pop on columns""" -type v_player_multi_kills_var_pop_fields { - attacker_steam_id: Float - kills: Float - round: Float -} - -""" -order by var_pop() on columns of table "v_player_multi_kills" -""" -input v_player_multi_kills_var_pop_order_by { - attacker_steam_id: order_by - kills: order_by - round: order_by -} - -"""aggregate var_samp on columns""" -type v_player_multi_kills_var_samp_fields { - attacker_steam_id: Float - kills: Float - round: Float -} - -""" -order by var_samp() on columns of table "v_player_multi_kills" -""" -input v_player_multi_kills_var_samp_order_by { - attacker_steam_id: order_by - kills: order_by - round: order_by -} - -"""aggregate variance on columns""" -type v_player_multi_kills_variance_fields { - attacker_steam_id: Float - kills: Float - round: Float -} - -""" -order by variance() on columns of table "v_player_multi_kills" -""" -input v_player_multi_kills_variance_order_by { - attacker_steam_id: order_by - kills: order_by - round: order_by -} - -""" -columns and relationships of "v_player_queue_partners" -""" -type v_player_queue_partners { - first_played_at: timestamptz - last_played_at: timestamptz - matches_together: Int - - """An object relationship""" - partner: players - partner_steam_id: bigint - - """An object relationship""" - player: players - steam_id: bigint - wins_together: Int -} - -""" -aggregated selection of "v_player_queue_partners" -""" -type v_player_queue_partners_aggregate { - aggregate: v_player_queue_partners_aggregate_fields - nodes: [v_player_queue_partners!]! -} - -""" -aggregate fields of "v_player_queue_partners" -""" -type v_player_queue_partners_aggregate_fields { - avg: v_player_queue_partners_avg_fields - count(columns: [v_player_queue_partners_select_column!], distinct: Boolean): Int! - max: v_player_queue_partners_max_fields - min: v_player_queue_partners_min_fields - stddev: v_player_queue_partners_stddev_fields - stddev_pop: v_player_queue_partners_stddev_pop_fields - stddev_samp: v_player_queue_partners_stddev_samp_fields - sum: v_player_queue_partners_sum_fields - var_pop: v_player_queue_partners_var_pop_fields - var_samp: v_player_queue_partners_var_samp_fields - variance: v_player_queue_partners_variance_fields -} - -"""aggregate avg on columns""" -type v_player_queue_partners_avg_fields { - matches_together: Float - partner_steam_id: Float - steam_id: Float - wins_together: Float -} - -""" -Boolean expression to filter rows from the table "v_player_queue_partners". All fields are combined with a logical 'AND'. -""" -input v_player_queue_partners_bool_exp { - _and: [v_player_queue_partners_bool_exp!] - _not: v_player_queue_partners_bool_exp - _or: [v_player_queue_partners_bool_exp!] - first_played_at: timestamptz_comparison_exp - last_played_at: timestamptz_comparison_exp - matches_together: Int_comparison_exp - partner: players_bool_exp - partner_steam_id: bigint_comparison_exp - player: players_bool_exp - steam_id: bigint_comparison_exp - wins_together: Int_comparison_exp -} - -"""aggregate max on columns""" -type v_player_queue_partners_max_fields { - first_played_at: timestamptz - last_played_at: timestamptz - matches_together: Int - partner_steam_id: bigint - steam_id: bigint - wins_together: Int -} - -"""aggregate min on columns""" -type v_player_queue_partners_min_fields { - first_played_at: timestamptz - last_played_at: timestamptz - matches_together: Int - partner_steam_id: bigint - steam_id: bigint - wins_together: Int -} - -"""Ordering options when selecting data from "v_player_queue_partners".""" -input v_player_queue_partners_order_by { - first_played_at: order_by - last_played_at: order_by - matches_together: order_by - partner: players_order_by - partner_steam_id: order_by - player: players_order_by - steam_id: order_by - wins_together: order_by -} - -""" -select columns of table "v_player_queue_partners" -""" -enum v_player_queue_partners_select_column { - """column name""" - first_played_at - - """column name""" - last_played_at - - """column name""" - matches_together - - """column name""" - partner_steam_id - - """column name""" - steam_id - - """column name""" - wins_together -} - -"""aggregate stddev on columns""" -type v_player_queue_partners_stddev_fields { - matches_together: Float - partner_steam_id: Float - steam_id: Float - wins_together: Float -} - -"""aggregate stddev_pop on columns""" -type v_player_queue_partners_stddev_pop_fields { - matches_together: Float - partner_steam_id: Float - steam_id: Float - wins_together: Float -} - -"""aggregate stddev_samp on columns""" -type v_player_queue_partners_stddev_samp_fields { - matches_together: Float - partner_steam_id: Float - steam_id: Float - wins_together: Float -} - -""" -Streaming cursor of the table "v_player_queue_partners" -""" -input v_player_queue_partners_stream_cursor_input { - """Stream column input with initial value""" - initial_value: v_player_queue_partners_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input v_player_queue_partners_stream_cursor_value_input { - first_played_at: timestamptz - last_played_at: timestamptz - matches_together: Int - partner_steam_id: bigint - steam_id: bigint - wins_together: Int -} - -"""aggregate sum on columns""" -type v_player_queue_partners_sum_fields { - matches_together: Int - partner_steam_id: bigint - steam_id: bigint - wins_together: Int -} - -"""aggregate var_pop on columns""" -type v_player_queue_partners_var_pop_fields { - matches_together: Float - partner_steam_id: Float - steam_id: Float - wins_together: Float -} - -"""aggregate var_samp on columns""" -type v_player_queue_partners_var_samp_fields { - matches_together: Float - partner_steam_id: Float - steam_id: Float - wins_together: Float -} - -"""aggregate variance on columns""" -type v_player_queue_partners_variance_fields { - matches_together: Float - partner_steam_id: Float - steam_id: Float - wins_together: Float -} - -""" -columns and relationships of "v_player_weapon_damage" -""" -type v_player_weapon_damage { - damage: bigint - hits: bigint - player_steam_id: bigint - source: String - type: String - with: String -} - -""" -aggregated selection of "v_player_weapon_damage" -""" -type v_player_weapon_damage_aggregate { - aggregate: v_player_weapon_damage_aggregate_fields - nodes: [v_player_weapon_damage!]! -} - -""" -aggregate fields of "v_player_weapon_damage" -""" -type v_player_weapon_damage_aggregate_fields { - avg: v_player_weapon_damage_avg_fields - count(columns: [v_player_weapon_damage_select_column!], distinct: Boolean): Int! - max: v_player_weapon_damage_max_fields - min: v_player_weapon_damage_min_fields - stddev: v_player_weapon_damage_stddev_fields - stddev_pop: v_player_weapon_damage_stddev_pop_fields - stddev_samp: v_player_weapon_damage_stddev_samp_fields - sum: v_player_weapon_damage_sum_fields - var_pop: v_player_weapon_damage_var_pop_fields - var_samp: v_player_weapon_damage_var_samp_fields - variance: v_player_weapon_damage_variance_fields -} - -"""aggregate avg on columns""" -type v_player_weapon_damage_avg_fields { - damage: Float - hits: Float - player_steam_id: Float -} - -""" -Boolean expression to filter rows from the table "v_player_weapon_damage". All fields are combined with a logical 'AND'. -""" -input v_player_weapon_damage_bool_exp { - _and: [v_player_weapon_damage_bool_exp!] - _not: v_player_weapon_damage_bool_exp - _or: [v_player_weapon_damage_bool_exp!] - damage: bigint_comparison_exp - hits: bigint_comparison_exp - player_steam_id: bigint_comparison_exp - source: String_comparison_exp - type: String_comparison_exp - with: String_comparison_exp -} - -"""aggregate max on columns""" -type v_player_weapon_damage_max_fields { - damage: bigint - hits: bigint - player_steam_id: bigint - source: String - type: String - with: String -} - -"""aggregate min on columns""" -type v_player_weapon_damage_min_fields { - damage: bigint - hits: bigint - player_steam_id: bigint - source: String - type: String - with: String -} - -"""Ordering options when selecting data from "v_player_weapon_damage".""" -input v_player_weapon_damage_order_by { - damage: order_by - hits: order_by - player_steam_id: order_by - source: order_by - type: order_by - with: order_by -} - -""" -select columns of table "v_player_weapon_damage" -""" -enum v_player_weapon_damage_select_column { - """column name""" - damage - - """column name""" - hits - - """column name""" - player_steam_id - - """column name""" - source - - """column name""" - type - - """column name""" - with -} - -"""aggregate stddev on columns""" -type v_player_weapon_damage_stddev_fields { - damage: Float - hits: Float - player_steam_id: Float -} - -"""aggregate stddev_pop on columns""" -type v_player_weapon_damage_stddev_pop_fields { - damage: Float - hits: Float - player_steam_id: Float -} - -"""aggregate stddev_samp on columns""" -type v_player_weapon_damage_stddev_samp_fields { - damage: Float - hits: Float - player_steam_id: Float -} - -""" -Streaming cursor of the table "v_player_weapon_damage" -""" -input v_player_weapon_damage_stream_cursor_input { - """Stream column input with initial value""" - initial_value: v_player_weapon_damage_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input v_player_weapon_damage_stream_cursor_value_input { - damage: bigint - hits: bigint - player_steam_id: bigint - source: String - type: String - with: String -} - -"""aggregate sum on columns""" -type v_player_weapon_damage_sum_fields { - damage: bigint - hits: bigint - player_steam_id: bigint -} - -"""aggregate var_pop on columns""" -type v_player_weapon_damage_var_pop_fields { - damage: Float - hits: Float - player_steam_id: Float -} - -"""aggregate var_samp on columns""" -type v_player_weapon_damage_var_samp_fields { - damage: Float - hits: Float - player_steam_id: Float -} - -"""aggregate variance on columns""" -type v_player_weapon_damage_variance_fields { - damage: Float - hits: Float - player_steam_id: Float -} - -""" -columns and relationships of "v_player_weapon_kills" -""" -type v_player_weapon_kills { - kill_count: bigint - player_steam_id: bigint - rounds: bigint - source: String - type: String - with: String -} - -""" -aggregated selection of "v_player_weapon_kills" -""" -type v_player_weapon_kills_aggregate { - aggregate: v_player_weapon_kills_aggregate_fields - nodes: [v_player_weapon_kills!]! -} - -""" -aggregate fields of "v_player_weapon_kills" -""" -type v_player_weapon_kills_aggregate_fields { - avg: v_player_weapon_kills_avg_fields - count(columns: [v_player_weapon_kills_select_column!], distinct: Boolean): Int! - max: v_player_weapon_kills_max_fields - min: v_player_weapon_kills_min_fields - stddev: v_player_weapon_kills_stddev_fields - stddev_pop: v_player_weapon_kills_stddev_pop_fields - stddev_samp: v_player_weapon_kills_stddev_samp_fields - sum: v_player_weapon_kills_sum_fields - var_pop: v_player_weapon_kills_var_pop_fields - var_samp: v_player_weapon_kills_var_samp_fields - variance: v_player_weapon_kills_variance_fields -} - -"""aggregate avg on columns""" -type v_player_weapon_kills_avg_fields { - kill_count: Float - player_steam_id: Float - rounds: Float -} - -""" -Boolean expression to filter rows from the table "v_player_weapon_kills". All fields are combined with a logical 'AND'. -""" -input v_player_weapon_kills_bool_exp { - _and: [v_player_weapon_kills_bool_exp!] - _not: v_player_weapon_kills_bool_exp - _or: [v_player_weapon_kills_bool_exp!] - kill_count: bigint_comparison_exp - player_steam_id: bigint_comparison_exp - rounds: bigint_comparison_exp - source: String_comparison_exp - type: String_comparison_exp - with: String_comparison_exp -} - -"""aggregate max on columns""" -type v_player_weapon_kills_max_fields { - kill_count: bigint - player_steam_id: bigint - rounds: bigint - source: String - type: String - with: String -} - -"""aggregate min on columns""" -type v_player_weapon_kills_min_fields { - kill_count: bigint - player_steam_id: bigint - rounds: bigint - source: String - type: String - with: String -} - -"""Ordering options when selecting data from "v_player_weapon_kills".""" -input v_player_weapon_kills_order_by { - kill_count: order_by - player_steam_id: order_by - rounds: order_by - source: order_by - type: order_by - with: order_by -} - -""" -select columns of table "v_player_weapon_kills" -""" -enum v_player_weapon_kills_select_column { - """column name""" - kill_count - - """column name""" - player_steam_id - - """column name""" - rounds - - """column name""" - source - - """column name""" - type - - """column name""" - with -} - -"""aggregate stddev on columns""" -type v_player_weapon_kills_stddev_fields { - kill_count: Float - player_steam_id: Float - rounds: Float -} - -"""aggregate stddev_pop on columns""" -type v_player_weapon_kills_stddev_pop_fields { - kill_count: Float - player_steam_id: Float - rounds: Float -} - -"""aggregate stddev_samp on columns""" -type v_player_weapon_kills_stddev_samp_fields { - kill_count: Float - player_steam_id: Float - rounds: Float -} - -""" -Streaming cursor of the table "v_player_weapon_kills" -""" -input v_player_weapon_kills_stream_cursor_input { - """Stream column input with initial value""" - initial_value: v_player_weapon_kills_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input v_player_weapon_kills_stream_cursor_value_input { - kill_count: bigint - player_steam_id: bigint - rounds: bigint - source: String - type: String - with: String -} - -"""aggregate sum on columns""" -type v_player_weapon_kills_sum_fields { - kill_count: bigint - player_steam_id: bigint - rounds: bigint -} - -"""aggregate var_pop on columns""" -type v_player_weapon_kills_var_pop_fields { - kill_count: Float - player_steam_id: Float - rounds: Float -} - -"""aggregate var_samp on columns""" -type v_player_weapon_kills_var_samp_fields { - kill_count: Float - player_steam_id: Float - rounds: Float -} - -"""aggregate variance on columns""" -type v_player_weapon_kills_variance_fields { - kill_count: Float - player_steam_id: Float - rounds: Float -} - -""" -columns and relationships of "v_pool_maps" -""" -type v_pool_maps { - active_pool: Boolean - id: uuid - label: String - - """An object relationship""" - map_pool: map_pools - map_pool_id: uuid - name: String - patch: String - poster: String - type: String - workshop_map_id: String -} - -""" -aggregated selection of "v_pool_maps" -""" -type v_pool_maps_aggregate { - aggregate: v_pool_maps_aggregate_fields - nodes: [v_pool_maps!]! -} - -input v_pool_maps_aggregate_bool_exp { - bool_and: v_pool_maps_aggregate_bool_exp_bool_and - bool_or: v_pool_maps_aggregate_bool_exp_bool_or - count: v_pool_maps_aggregate_bool_exp_count -} - -input v_pool_maps_aggregate_bool_exp_bool_and { - arguments: v_pool_maps_select_column_v_pool_maps_aggregate_bool_exp_bool_and_arguments_columns! - distinct: Boolean - filter: v_pool_maps_bool_exp - predicate: Boolean_comparison_exp! -} - -input v_pool_maps_aggregate_bool_exp_bool_or { - arguments: v_pool_maps_select_column_v_pool_maps_aggregate_bool_exp_bool_or_arguments_columns! - distinct: Boolean - filter: v_pool_maps_bool_exp - predicate: Boolean_comparison_exp! -} - -input v_pool_maps_aggregate_bool_exp_count { - arguments: [v_pool_maps_select_column!] - distinct: Boolean - filter: v_pool_maps_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "v_pool_maps" -""" -type v_pool_maps_aggregate_fields { - count(columns: [v_pool_maps_select_column!], distinct: Boolean): Int! - max: v_pool_maps_max_fields - min: v_pool_maps_min_fields -} - -""" -order by aggregate values of table "v_pool_maps" -""" -input v_pool_maps_aggregate_order_by { - count: order_by - max: v_pool_maps_max_order_by - min: v_pool_maps_min_order_by -} - -""" -input type for inserting array relation for remote table "v_pool_maps" -""" -input v_pool_maps_arr_rel_insert_input { - data: [v_pool_maps_insert_input!]! -} - -""" -Boolean expression to filter rows from the table "v_pool_maps". All fields are combined with a logical 'AND'. -""" -input v_pool_maps_bool_exp { - _and: [v_pool_maps_bool_exp!] - _not: v_pool_maps_bool_exp - _or: [v_pool_maps_bool_exp!] - active_pool: Boolean_comparison_exp - id: uuid_comparison_exp - label: String_comparison_exp - map_pool: map_pools_bool_exp - map_pool_id: uuid_comparison_exp - name: String_comparison_exp - patch: String_comparison_exp - poster: String_comparison_exp - type: String_comparison_exp - workshop_map_id: String_comparison_exp -} - -""" -input type for inserting data into table "v_pool_maps" -""" -input v_pool_maps_insert_input { - active_pool: Boolean - id: uuid - label: String - map_pool: map_pools_obj_rel_insert_input - map_pool_id: uuid - name: String - patch: String - poster: String - type: String - workshop_map_id: String -} - -"""aggregate max on columns""" -type v_pool_maps_max_fields { - id: uuid - label: String - map_pool_id: uuid - name: String - patch: String - poster: String - type: String - workshop_map_id: String -} - -""" -order by max() on columns of table "v_pool_maps" -""" -input v_pool_maps_max_order_by { - id: order_by - label: order_by - map_pool_id: order_by - name: order_by - patch: order_by - poster: order_by - type: order_by - workshop_map_id: order_by -} - -"""aggregate min on columns""" -type v_pool_maps_min_fields { - id: uuid - label: String - map_pool_id: uuid - name: String - patch: String - poster: String - type: String - workshop_map_id: String -} - -""" -order by min() on columns of table "v_pool_maps" -""" -input v_pool_maps_min_order_by { - id: order_by - label: order_by - map_pool_id: order_by - name: order_by - patch: order_by - poster: order_by - type: order_by - workshop_map_id: order_by -} - -""" -response of any mutation on the table "v_pool_maps" -""" -type v_pool_maps_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [v_pool_maps!]! -} - -"""Ordering options when selecting data from "v_pool_maps".""" -input v_pool_maps_order_by { - active_pool: order_by - id: order_by - label: order_by - map_pool: map_pools_order_by - map_pool_id: order_by - name: order_by - patch: order_by - poster: order_by - type: order_by - workshop_map_id: order_by -} - -""" -select columns of table "v_pool_maps" -""" -enum v_pool_maps_select_column { - """column name""" - active_pool - - """column name""" - id - - """column name""" - label - - """column name""" - map_pool_id - - """column name""" - name - - """column name""" - patch - - """column name""" - poster - - """column name""" - type - - """column name""" - workshop_map_id -} - -""" -select "v_pool_maps_aggregate_bool_exp_bool_and_arguments_columns" columns of table "v_pool_maps" -""" -enum v_pool_maps_select_column_v_pool_maps_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - active_pool -} - -""" -select "v_pool_maps_aggregate_bool_exp_bool_or_arguments_columns" columns of table "v_pool_maps" -""" -enum v_pool_maps_select_column_v_pool_maps_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - active_pool -} - -""" -input type for updating data in table "v_pool_maps" -""" -input v_pool_maps_set_input { - active_pool: Boolean - id: uuid - label: String - map_pool_id: uuid - name: String - patch: String - poster: String - type: String - workshop_map_id: String -} - -""" -Streaming cursor of the table "v_pool_maps" -""" -input v_pool_maps_stream_cursor_input { - """Stream column input with initial value""" - initial_value: v_pool_maps_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input v_pool_maps_stream_cursor_value_input { - active_pool: Boolean - id: uuid - label: String - map_pool_id: uuid - name: String - patch: String - poster: String - type: String - workshop_map_id: String -} - -input v_pool_maps_updates { - """sets the columns of the filtered rows to the given values""" - _set: v_pool_maps_set_input - - """filter the rows which have to be updated""" - where: v_pool_maps_bool_exp! -} - -""" -columns and relationships of "v_steam_account_pool_status" -""" -type v_steam_account_pool_status { - busy_accounts: Int - free_accounts: Int - id: Int - total_accounts: Int -} - -""" -aggregated selection of "v_steam_account_pool_status" -""" -type v_steam_account_pool_status_aggregate { - aggregate: v_steam_account_pool_status_aggregate_fields - nodes: [v_steam_account_pool_status!]! -} - -""" -aggregate fields of "v_steam_account_pool_status" -""" -type v_steam_account_pool_status_aggregate_fields { - avg: v_steam_account_pool_status_avg_fields - count(columns: [v_steam_account_pool_status_select_column!], distinct: Boolean): Int! - max: v_steam_account_pool_status_max_fields - min: v_steam_account_pool_status_min_fields - stddev: v_steam_account_pool_status_stddev_fields - stddev_pop: v_steam_account_pool_status_stddev_pop_fields - stddev_samp: v_steam_account_pool_status_stddev_samp_fields - sum: v_steam_account_pool_status_sum_fields - var_pop: v_steam_account_pool_status_var_pop_fields - var_samp: v_steam_account_pool_status_var_samp_fields - variance: v_steam_account_pool_status_variance_fields -} - -"""aggregate avg on columns""" -type v_steam_account_pool_status_avg_fields { - busy_accounts: Float - free_accounts: Float - id: Float - total_accounts: Float -} - -""" -Boolean expression to filter rows from the table "v_steam_account_pool_status". All fields are combined with a logical 'AND'. -""" -input v_steam_account_pool_status_bool_exp { - _and: [v_steam_account_pool_status_bool_exp!] - _not: v_steam_account_pool_status_bool_exp - _or: [v_steam_account_pool_status_bool_exp!] - busy_accounts: Int_comparison_exp - free_accounts: Int_comparison_exp - id: Int_comparison_exp - total_accounts: Int_comparison_exp -} - -"""aggregate max on columns""" -type v_steam_account_pool_status_max_fields { - busy_accounts: Int - free_accounts: Int - id: Int - total_accounts: Int -} - -"""aggregate min on columns""" -type v_steam_account_pool_status_min_fields { - busy_accounts: Int - free_accounts: Int - id: Int - total_accounts: Int -} - -""" -Ordering options when selecting data from "v_steam_account_pool_status". -""" -input v_steam_account_pool_status_order_by { - busy_accounts: order_by - free_accounts: order_by - id: order_by - total_accounts: order_by -} - -""" -select columns of table "v_steam_account_pool_status" -""" -enum v_steam_account_pool_status_select_column { - """column name""" - busy_accounts - - """column name""" - free_accounts - - """column name""" - id - - """column name""" - total_accounts -} - -"""aggregate stddev on columns""" -type v_steam_account_pool_status_stddev_fields { - busy_accounts: Float - free_accounts: Float - id: Float - total_accounts: Float -} - -"""aggregate stddev_pop on columns""" -type v_steam_account_pool_status_stddev_pop_fields { - busy_accounts: Float - free_accounts: Float - id: Float - total_accounts: Float -} - -"""aggregate stddev_samp on columns""" -type v_steam_account_pool_status_stddev_samp_fields { - busy_accounts: Float - free_accounts: Float - id: Float - total_accounts: Float -} - -""" -Streaming cursor of the table "v_steam_account_pool_status" -""" -input v_steam_account_pool_status_stream_cursor_input { - """Stream column input with initial value""" - initial_value: v_steam_account_pool_status_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input v_steam_account_pool_status_stream_cursor_value_input { - busy_accounts: Int - free_accounts: Int - id: Int - total_accounts: Int -} - -"""aggregate sum on columns""" -type v_steam_account_pool_status_sum_fields { - busy_accounts: Int - free_accounts: Int - id: Int - total_accounts: Int -} - -"""aggregate var_pop on columns""" -type v_steam_account_pool_status_var_pop_fields { - busy_accounts: Float - free_accounts: Float - id: Float - total_accounts: Float -} - -"""aggregate var_samp on columns""" -type v_steam_account_pool_status_var_samp_fields { - busy_accounts: Float - free_accounts: Float - id: Float - total_accounts: Float -} - -"""aggregate variance on columns""" -type v_steam_account_pool_status_variance_fields { - busy_accounts: Float - free_accounts: Float - id: Float - total_accounts: Float -} - -""" -columns and relationships of "v_team_ranks" -""" -type v_team_ranks { - avg_duel_elo: Int - avg_elo: Int - avg_faceit_elo: Int - avg_faceit_level: float8 - avg_premier: Int - avg_wingman_elo: Int - max_elo: Int - min_elo: Int - roster_size: bigint - - """An object relationship""" - team: teams - team_id: uuid -} - -""" -aggregated selection of "v_team_ranks" -""" -type v_team_ranks_aggregate { - aggregate: v_team_ranks_aggregate_fields - nodes: [v_team_ranks!]! -} - -""" -aggregate fields of "v_team_ranks" -""" -type v_team_ranks_aggregate_fields { - avg: v_team_ranks_avg_fields - count(columns: [v_team_ranks_select_column!], distinct: Boolean): Int! - max: v_team_ranks_max_fields - min: v_team_ranks_min_fields - stddev: v_team_ranks_stddev_fields - stddev_pop: v_team_ranks_stddev_pop_fields - stddev_samp: v_team_ranks_stddev_samp_fields - sum: v_team_ranks_sum_fields - var_pop: v_team_ranks_var_pop_fields - var_samp: v_team_ranks_var_samp_fields - variance: v_team_ranks_variance_fields -} - -"""aggregate avg on columns""" -type v_team_ranks_avg_fields { - avg_duel_elo: Float - avg_elo: Float - avg_faceit_elo: Float - avg_faceit_level: Float - avg_premier: Float - avg_wingman_elo: Float - max_elo: Float - min_elo: Float - roster_size: Float -} - -""" -Boolean expression to filter rows from the table "v_team_ranks". All fields are combined with a logical 'AND'. -""" -input v_team_ranks_bool_exp { - _and: [v_team_ranks_bool_exp!] - _not: v_team_ranks_bool_exp - _or: [v_team_ranks_bool_exp!] - avg_duel_elo: Int_comparison_exp - avg_elo: Int_comparison_exp - avg_faceit_elo: Int_comparison_exp - avg_faceit_level: float8_comparison_exp - avg_premier: Int_comparison_exp - avg_wingman_elo: Int_comparison_exp - max_elo: Int_comparison_exp - min_elo: Int_comparison_exp - roster_size: bigint_comparison_exp - team: teams_bool_exp - team_id: uuid_comparison_exp -} - -""" -input type for inserting data into table "v_team_ranks" -""" -input v_team_ranks_insert_input { - avg_duel_elo: Int - avg_elo: Int - avg_faceit_elo: Int - avg_faceit_level: float8 - avg_premier: Int - avg_wingman_elo: Int - max_elo: Int - min_elo: Int - roster_size: bigint - team: teams_obj_rel_insert_input - team_id: uuid -} - -"""aggregate max on columns""" -type v_team_ranks_max_fields { - avg_duel_elo: Int - avg_elo: Int - avg_faceit_elo: Int - avg_faceit_level: float8 - avg_premier: Int - avg_wingman_elo: Int - max_elo: Int - min_elo: Int - roster_size: bigint - team_id: uuid -} - -"""aggregate min on columns""" -type v_team_ranks_min_fields { - avg_duel_elo: Int - avg_elo: Int - avg_faceit_elo: Int - avg_faceit_level: float8 - avg_premier: Int - avg_wingman_elo: Int - max_elo: Int - min_elo: Int - roster_size: bigint - team_id: uuid -} - -""" -input type for inserting object relation for remote table "v_team_ranks" -""" -input v_team_ranks_obj_rel_insert_input { - data: v_team_ranks_insert_input! -} - -"""Ordering options when selecting data from "v_team_ranks".""" -input v_team_ranks_order_by { - avg_duel_elo: order_by - avg_elo: order_by - avg_faceit_elo: order_by - avg_faceit_level: order_by - avg_premier: order_by - avg_wingman_elo: order_by - max_elo: order_by - min_elo: order_by - roster_size: order_by - team: teams_order_by - team_id: order_by -} - -""" -select columns of table "v_team_ranks" -""" -enum v_team_ranks_select_column { - """column name""" - avg_duel_elo - - """column name""" - avg_elo - - """column name""" - avg_faceit_elo - - """column name""" - avg_faceit_level - - """column name""" - avg_premier - - """column name""" - avg_wingman_elo - - """column name""" - max_elo - - """column name""" - min_elo - - """column name""" - roster_size - - """column name""" - team_id -} - -"""aggregate stddev on columns""" -type v_team_ranks_stddev_fields { - avg_duel_elo: Float - avg_elo: Float - avg_faceit_elo: Float - avg_faceit_level: Float - avg_premier: Float - avg_wingman_elo: Float - max_elo: Float - min_elo: Float - roster_size: Float -} - -"""aggregate stddev_pop on columns""" -type v_team_ranks_stddev_pop_fields { - avg_duel_elo: Float - avg_elo: Float - avg_faceit_elo: Float - avg_faceit_level: Float - avg_premier: Float - avg_wingman_elo: Float - max_elo: Float - min_elo: Float - roster_size: Float -} - -"""aggregate stddev_samp on columns""" -type v_team_ranks_stddev_samp_fields { - avg_duel_elo: Float - avg_elo: Float - avg_faceit_elo: Float - avg_faceit_level: Float - avg_premier: Float - avg_wingman_elo: Float - max_elo: Float - min_elo: Float - roster_size: Float -} - -""" -Streaming cursor of the table "v_team_ranks" -""" -input v_team_ranks_stream_cursor_input { - """Stream column input with initial value""" - initial_value: v_team_ranks_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input v_team_ranks_stream_cursor_value_input { - avg_duel_elo: Int - avg_elo: Int - avg_faceit_elo: Int - avg_faceit_level: float8 - avg_premier: Int - avg_wingman_elo: Int - max_elo: Int - min_elo: Int - roster_size: bigint - team_id: uuid -} - -"""aggregate sum on columns""" -type v_team_ranks_sum_fields { - avg_duel_elo: Int - avg_elo: Int - avg_faceit_elo: Int - avg_faceit_level: float8 - avg_premier: Int - avg_wingman_elo: Int - max_elo: Int - min_elo: Int - roster_size: bigint -} - -"""aggregate var_pop on columns""" -type v_team_ranks_var_pop_fields { - avg_duel_elo: Float - avg_elo: Float - avg_faceit_elo: Float - avg_faceit_level: Float - avg_premier: Float - avg_wingman_elo: Float - max_elo: Float - min_elo: Float - roster_size: Float -} - -"""aggregate var_samp on columns""" -type v_team_ranks_var_samp_fields { - avg_duel_elo: Float - avg_elo: Float - avg_faceit_elo: Float - avg_faceit_level: Float - avg_premier: Float - avg_wingman_elo: Float - max_elo: Float - min_elo: Float - roster_size: Float -} - -"""aggregate variance on columns""" -type v_team_ranks_variance_fields { - avg_duel_elo: Float - avg_elo: Float - avg_faceit_elo: Float - avg_faceit_level: Float - avg_premier: Float - avg_wingman_elo: Float - max_elo: Float - min_elo: Float - roster_size: Float -} - -""" -columns and relationships of "v_team_reputation" -""" -type v_team_reputation { - late_cancels: bigint - no_shows: bigint - reliability_pct: numeric - scrims_completed: bigint - - """An object relationship""" - team: teams - team_id: uuid -} - -""" -aggregated selection of "v_team_reputation" -""" -type v_team_reputation_aggregate { - aggregate: v_team_reputation_aggregate_fields - nodes: [v_team_reputation!]! -} - -""" -aggregate fields of "v_team_reputation" -""" -type v_team_reputation_aggregate_fields { - avg: v_team_reputation_avg_fields - count(columns: [v_team_reputation_select_column!], distinct: Boolean): Int! - max: v_team_reputation_max_fields - min: v_team_reputation_min_fields - stddev: v_team_reputation_stddev_fields - stddev_pop: v_team_reputation_stddev_pop_fields - stddev_samp: v_team_reputation_stddev_samp_fields - sum: v_team_reputation_sum_fields - var_pop: v_team_reputation_var_pop_fields - var_samp: v_team_reputation_var_samp_fields - variance: v_team_reputation_variance_fields -} - -"""aggregate avg on columns""" -type v_team_reputation_avg_fields { - late_cancels: Float - no_shows: Float - reliability_pct: Float - scrims_completed: Float -} - -""" -Boolean expression to filter rows from the table "v_team_reputation". All fields are combined with a logical 'AND'. -""" -input v_team_reputation_bool_exp { - _and: [v_team_reputation_bool_exp!] - _not: v_team_reputation_bool_exp - _or: [v_team_reputation_bool_exp!] - late_cancels: bigint_comparison_exp - no_shows: bigint_comparison_exp - reliability_pct: numeric_comparison_exp - scrims_completed: bigint_comparison_exp - team: teams_bool_exp - team_id: uuid_comparison_exp -} - -""" -input type for inserting data into table "v_team_reputation" -""" -input v_team_reputation_insert_input { - late_cancels: bigint - no_shows: bigint - reliability_pct: numeric - scrims_completed: bigint - team: teams_obj_rel_insert_input - team_id: uuid -} - -"""aggregate max on columns""" -type v_team_reputation_max_fields { - late_cancels: bigint - no_shows: bigint - reliability_pct: numeric - scrims_completed: bigint - team_id: uuid -} - -"""aggregate min on columns""" -type v_team_reputation_min_fields { - late_cancels: bigint - no_shows: bigint - reliability_pct: numeric - scrims_completed: bigint - team_id: uuid -} - -""" -input type for inserting object relation for remote table "v_team_reputation" -""" -input v_team_reputation_obj_rel_insert_input { - data: v_team_reputation_insert_input! -} - -"""Ordering options when selecting data from "v_team_reputation".""" -input v_team_reputation_order_by { - late_cancels: order_by - no_shows: order_by - reliability_pct: order_by - scrims_completed: order_by - team: teams_order_by - team_id: order_by -} - -""" -select columns of table "v_team_reputation" -""" -enum v_team_reputation_select_column { - """column name""" - late_cancels - - """column name""" - no_shows - - """column name""" - reliability_pct - - """column name""" - scrims_completed - - """column name""" - team_id -} - -"""aggregate stddev on columns""" -type v_team_reputation_stddev_fields { - late_cancels: Float - no_shows: Float - reliability_pct: Float - scrims_completed: Float -} - -"""aggregate stddev_pop on columns""" -type v_team_reputation_stddev_pop_fields { - late_cancels: Float - no_shows: Float - reliability_pct: Float - scrims_completed: Float -} - -"""aggregate stddev_samp on columns""" -type v_team_reputation_stddev_samp_fields { - late_cancels: Float - no_shows: Float - reliability_pct: Float - scrims_completed: Float -} - -""" -Streaming cursor of the table "v_team_reputation" -""" -input v_team_reputation_stream_cursor_input { - """Stream column input with initial value""" - initial_value: v_team_reputation_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input v_team_reputation_stream_cursor_value_input { - late_cancels: bigint - no_shows: bigint - reliability_pct: numeric - scrims_completed: bigint - team_id: uuid -} - -"""aggregate sum on columns""" -type v_team_reputation_sum_fields { - late_cancels: bigint - no_shows: bigint - reliability_pct: numeric - scrims_completed: bigint -} - -"""aggregate var_pop on columns""" -type v_team_reputation_var_pop_fields { - late_cancels: Float - no_shows: Float - reliability_pct: Float - scrims_completed: Float -} - -"""aggregate var_samp on columns""" -type v_team_reputation_var_samp_fields { - late_cancels: Float - no_shows: Float - reliability_pct: Float - scrims_completed: Float -} - -"""aggregate variance on columns""" -type v_team_reputation_variance_fields { - late_cancels: Float - no_shows: Float - reliability_pct: Float - scrims_completed: Float -} - -""" -columns and relationships of "v_team_stage_results" -""" -type v_team_stage_results { - group_number: Int! - head_to_head_match_wins: Int! - head_to_head_rounds_won: Int! - losses: Int! - maps_lost: Int! - maps_won: Int! - matches_played: Int! - matches_remaining: Int! - placement: Int! - rank: Int! - rounds_lost: Int! - rounds_won: Int! - - """An object relationship""" - stage: tournament_stages - - """An object relationship""" - team: tournament_teams - team_kdr: float8! - total_deaths: Int! - total_kills: Int! - tournament_stage_id: uuid! - tournament_team_id: uuid! - wins: Int! -} - -""" -aggregated selection of "v_team_stage_results" -""" -type v_team_stage_results_aggregate { - aggregate: v_team_stage_results_aggregate_fields - nodes: [v_team_stage_results!]! -} - -input v_team_stage_results_aggregate_bool_exp { - avg: v_team_stage_results_aggregate_bool_exp_avg - corr: v_team_stage_results_aggregate_bool_exp_corr - count: v_team_stage_results_aggregate_bool_exp_count - covar_samp: v_team_stage_results_aggregate_bool_exp_covar_samp - max: v_team_stage_results_aggregate_bool_exp_max - min: v_team_stage_results_aggregate_bool_exp_min - stddev_samp: v_team_stage_results_aggregate_bool_exp_stddev_samp - sum: v_team_stage_results_aggregate_bool_exp_sum - var_samp: v_team_stage_results_aggregate_bool_exp_var_samp -} - -input v_team_stage_results_aggregate_bool_exp_avg { - arguments: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_avg_arguments_columns! - distinct: Boolean - filter: v_team_stage_results_bool_exp - predicate: float8_comparison_exp! -} - -input v_team_stage_results_aggregate_bool_exp_corr { - arguments: v_team_stage_results_aggregate_bool_exp_corr_arguments! - distinct: Boolean - filter: v_team_stage_results_bool_exp - predicate: float8_comparison_exp! -} - -input v_team_stage_results_aggregate_bool_exp_corr_arguments { - X: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_corr_arguments_columns! - Y: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_corr_arguments_columns! -} - -input v_team_stage_results_aggregate_bool_exp_count { - arguments: [v_team_stage_results_select_column!] - distinct: Boolean - filter: v_team_stage_results_bool_exp - predicate: Int_comparison_exp! -} - -input v_team_stage_results_aggregate_bool_exp_covar_samp { - arguments: v_team_stage_results_aggregate_bool_exp_covar_samp_arguments! - distinct: Boolean - filter: v_team_stage_results_bool_exp - predicate: float8_comparison_exp! -} - -input v_team_stage_results_aggregate_bool_exp_covar_samp_arguments { - X: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_covar_samp_arguments_columns! - Y: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_covar_samp_arguments_columns! -} - -input v_team_stage_results_aggregate_bool_exp_max { - arguments: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_max_arguments_columns! - distinct: Boolean - filter: v_team_stage_results_bool_exp - predicate: float8_comparison_exp! -} - -input v_team_stage_results_aggregate_bool_exp_min { - arguments: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_min_arguments_columns! - distinct: Boolean - filter: v_team_stage_results_bool_exp - predicate: float8_comparison_exp! -} - -input v_team_stage_results_aggregate_bool_exp_stddev_samp { - arguments: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_stddev_samp_arguments_columns! - distinct: Boolean - filter: v_team_stage_results_bool_exp - predicate: float8_comparison_exp! -} - -input v_team_stage_results_aggregate_bool_exp_sum { - arguments: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_sum_arguments_columns! - distinct: Boolean - filter: v_team_stage_results_bool_exp - predicate: float8_comparison_exp! -} - -input v_team_stage_results_aggregate_bool_exp_var_samp { - arguments: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_var_samp_arguments_columns! - distinct: Boolean - filter: v_team_stage_results_bool_exp - predicate: float8_comparison_exp! -} - -""" -aggregate fields of "v_team_stage_results" -""" -type v_team_stage_results_aggregate_fields { - avg: v_team_stage_results_avg_fields - count(columns: [v_team_stage_results_select_column!], distinct: Boolean): Int! - max: v_team_stage_results_max_fields - min: v_team_stage_results_min_fields - stddev: v_team_stage_results_stddev_fields - stddev_pop: v_team_stage_results_stddev_pop_fields - stddev_samp: v_team_stage_results_stddev_samp_fields - sum: v_team_stage_results_sum_fields - var_pop: v_team_stage_results_var_pop_fields - var_samp: v_team_stage_results_var_samp_fields - variance: v_team_stage_results_variance_fields -} - -""" -order by aggregate values of table "v_team_stage_results" -""" -input v_team_stage_results_aggregate_order_by { - avg: v_team_stage_results_avg_order_by - count: order_by - max: v_team_stage_results_max_order_by - min: v_team_stage_results_min_order_by - stddev: v_team_stage_results_stddev_order_by - stddev_pop: v_team_stage_results_stddev_pop_order_by - stddev_samp: v_team_stage_results_stddev_samp_order_by - sum: v_team_stage_results_sum_order_by - var_pop: v_team_stage_results_var_pop_order_by - var_samp: v_team_stage_results_var_samp_order_by - variance: v_team_stage_results_variance_order_by -} - -""" -input type for inserting array relation for remote table "v_team_stage_results" -""" -input v_team_stage_results_arr_rel_insert_input { - data: [v_team_stage_results_insert_input!]! - - """upsert condition""" - on_conflict: v_team_stage_results_on_conflict -} - -"""aggregate avg on columns""" -type v_team_stage_results_avg_fields { - group_number: Float - head_to_head_match_wins: Float - head_to_head_rounds_won: Float - losses: Float - maps_lost: Float - maps_won: Float - matches_played: Float - matches_remaining: Float - placement: Float - rank: Float - rounds_lost: Float - rounds_won: Float - team_kdr: Float - total_deaths: Float - total_kills: Float - wins: Float -} - -""" -order by avg() on columns of table "v_team_stage_results" -""" -input v_team_stage_results_avg_order_by { - group_number: order_by - head_to_head_match_wins: order_by - head_to_head_rounds_won: order_by - losses: order_by - maps_lost: order_by - maps_won: order_by - matches_played: order_by - matches_remaining: order_by - placement: order_by - rank: order_by - rounds_lost: order_by - rounds_won: order_by - team_kdr: order_by - total_deaths: order_by - total_kills: order_by - wins: order_by -} - -""" -Boolean expression to filter rows from the table "v_team_stage_results". All fields are combined with a logical 'AND'. -""" -input v_team_stage_results_bool_exp { - _and: [v_team_stage_results_bool_exp!] - _not: v_team_stage_results_bool_exp - _or: [v_team_stage_results_bool_exp!] - group_number: Int_comparison_exp - head_to_head_match_wins: Int_comparison_exp - head_to_head_rounds_won: Int_comparison_exp - losses: Int_comparison_exp - maps_lost: Int_comparison_exp - maps_won: Int_comparison_exp - matches_played: Int_comparison_exp - matches_remaining: Int_comparison_exp - placement: Int_comparison_exp - rank: Int_comparison_exp - rounds_lost: Int_comparison_exp - rounds_won: Int_comparison_exp - stage: tournament_stages_bool_exp - team: tournament_teams_bool_exp - team_kdr: float8_comparison_exp - total_deaths: Int_comparison_exp - total_kills: Int_comparison_exp - tournament_stage_id: uuid_comparison_exp - tournament_team_id: uuid_comparison_exp - wins: Int_comparison_exp -} - -""" -unique or primary key constraints on table "v_team_stage_results" -""" -enum v_team_stage_results_constraint { - """ - unique or primary key constraint on columns "tournament_team_id", "tournament_stage_id" - """ - v_team_stage_results_pkey -} - -""" -input type for incrementing numeric columns in table "v_team_stage_results" -""" -input v_team_stage_results_inc_input { - group_number: Int - head_to_head_match_wins: Int - head_to_head_rounds_won: Int - losses: Int - maps_lost: Int - maps_won: Int - matches_played: Int - matches_remaining: Int - placement: Int - rank: Int - rounds_lost: Int - rounds_won: Int - team_kdr: float8 - total_deaths: Int - total_kills: Int - wins: Int -} - -""" -input type for inserting data into table "v_team_stage_results" -""" -input v_team_stage_results_insert_input { - group_number: Int - head_to_head_match_wins: Int - head_to_head_rounds_won: Int - losses: Int - maps_lost: Int - maps_won: Int - matches_played: Int - matches_remaining: Int - placement: Int - rank: Int - rounds_lost: Int - rounds_won: Int - stage: tournament_stages_obj_rel_insert_input - team: tournament_teams_obj_rel_insert_input - team_kdr: float8 - total_deaths: Int - total_kills: Int - tournament_stage_id: uuid - tournament_team_id: uuid - wins: Int -} - -"""aggregate max on columns""" -type v_team_stage_results_max_fields { - group_number: Int - head_to_head_match_wins: Int - head_to_head_rounds_won: Int - losses: Int - maps_lost: Int - maps_won: Int - matches_played: Int - matches_remaining: Int - placement: Int - rank: Int - rounds_lost: Int - rounds_won: Int - team_kdr: float8 - total_deaths: Int - total_kills: Int - tournament_stage_id: uuid - tournament_team_id: uuid - wins: Int -} - -""" -order by max() on columns of table "v_team_stage_results" -""" -input v_team_stage_results_max_order_by { - group_number: order_by - head_to_head_match_wins: order_by - head_to_head_rounds_won: order_by - losses: order_by - maps_lost: order_by - maps_won: order_by - matches_played: order_by - matches_remaining: order_by - placement: order_by - rank: order_by - rounds_lost: order_by - rounds_won: order_by - team_kdr: order_by - total_deaths: order_by - total_kills: order_by - tournament_stage_id: order_by - tournament_team_id: order_by - wins: order_by -} - -"""aggregate min on columns""" -type v_team_stage_results_min_fields { - group_number: Int - head_to_head_match_wins: Int - head_to_head_rounds_won: Int - losses: Int - maps_lost: Int - maps_won: Int - matches_played: Int - matches_remaining: Int - placement: Int - rank: Int - rounds_lost: Int - rounds_won: Int - team_kdr: float8 - total_deaths: Int - total_kills: Int - tournament_stage_id: uuid - tournament_team_id: uuid - wins: Int -} - -""" -order by min() on columns of table "v_team_stage_results" -""" -input v_team_stage_results_min_order_by { - group_number: order_by - head_to_head_match_wins: order_by - head_to_head_rounds_won: order_by - losses: order_by - maps_lost: order_by - maps_won: order_by - matches_played: order_by - matches_remaining: order_by - placement: order_by - rank: order_by - rounds_lost: order_by - rounds_won: order_by - team_kdr: order_by - total_deaths: order_by - total_kills: order_by - tournament_stage_id: order_by - tournament_team_id: order_by - wins: order_by -} - -""" -response of any mutation on the table "v_team_stage_results" -""" -type v_team_stage_results_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [v_team_stage_results!]! -} - -""" -input type for inserting object relation for remote table "v_team_stage_results" -""" -input v_team_stage_results_obj_rel_insert_input { - data: v_team_stage_results_insert_input! - - """upsert condition""" - on_conflict: v_team_stage_results_on_conflict -} - -""" -on_conflict condition type for table "v_team_stage_results" -""" -input v_team_stage_results_on_conflict { - constraint: v_team_stage_results_constraint! - update_columns: [v_team_stage_results_update_column!]! = [] - where: v_team_stage_results_bool_exp -} - -"""Ordering options when selecting data from "v_team_stage_results".""" -input v_team_stage_results_order_by { - group_number: order_by - head_to_head_match_wins: order_by - head_to_head_rounds_won: order_by - losses: order_by - maps_lost: order_by - maps_won: order_by - matches_played: order_by - matches_remaining: order_by - placement: order_by - rank: order_by - rounds_lost: order_by - rounds_won: order_by - stage: tournament_stages_order_by - team: tournament_teams_order_by - team_kdr: order_by - total_deaths: order_by - total_kills: order_by - tournament_stage_id: order_by - tournament_team_id: order_by - wins: order_by -} - -"""primary key columns input for table: v_team_stage_results""" -input v_team_stage_results_pk_columns_input { - tournament_stage_id: uuid! - tournament_team_id: uuid! -} - -""" -select columns of table "v_team_stage_results" -""" -enum v_team_stage_results_select_column { - """column name""" - group_number - - """column name""" - head_to_head_match_wins - - """column name""" - head_to_head_rounds_won - - """column name""" - losses - - """column name""" - maps_lost - - """column name""" - maps_won - - """column name""" - matches_played - - """column name""" - matches_remaining - - """column name""" - placement - - """column name""" - rank - - """column name""" - rounds_lost - - """column name""" - rounds_won - - """column name""" - team_kdr - - """column name""" - total_deaths - - """column name""" - total_kills - - """column name""" - tournament_stage_id - - """column name""" - tournament_team_id - - """column name""" - wins -} - -""" -select "v_team_stage_results_aggregate_bool_exp_avg_arguments_columns" columns of table "v_team_stage_results" -""" -enum v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_avg_arguments_columns { - """column name""" - team_kdr -} - -""" -select "v_team_stage_results_aggregate_bool_exp_corr_arguments_columns" columns of table "v_team_stage_results" -""" -enum v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_corr_arguments_columns { - """column name""" - team_kdr -} - -""" -select "v_team_stage_results_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "v_team_stage_results" -""" -enum v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_covar_samp_arguments_columns { - """column name""" - team_kdr -} - -""" -select "v_team_stage_results_aggregate_bool_exp_max_arguments_columns" columns of table "v_team_stage_results" -""" -enum v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_max_arguments_columns { - """column name""" - team_kdr -} - -""" -select "v_team_stage_results_aggregate_bool_exp_min_arguments_columns" columns of table "v_team_stage_results" -""" -enum v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_min_arguments_columns { - """column name""" - team_kdr -} - -""" -select "v_team_stage_results_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "v_team_stage_results" -""" -enum v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_stddev_samp_arguments_columns { - """column name""" - team_kdr -} - -""" -select "v_team_stage_results_aggregate_bool_exp_sum_arguments_columns" columns of table "v_team_stage_results" -""" -enum v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_sum_arguments_columns { - """column name""" - team_kdr -} - -""" -select "v_team_stage_results_aggregate_bool_exp_var_samp_arguments_columns" columns of table "v_team_stage_results" -""" -enum v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_var_samp_arguments_columns { - """column name""" - team_kdr -} - -""" -input type for updating data in table "v_team_stage_results" -""" -input v_team_stage_results_set_input { - group_number: Int - head_to_head_match_wins: Int - head_to_head_rounds_won: Int - losses: Int - maps_lost: Int - maps_won: Int - matches_played: Int - matches_remaining: Int - placement: Int - rank: Int - rounds_lost: Int - rounds_won: Int - team_kdr: float8 - total_deaths: Int - total_kills: Int - tournament_stage_id: uuid - tournament_team_id: uuid - wins: Int -} - -"""aggregate stddev on columns""" -type v_team_stage_results_stddev_fields { - group_number: Float - head_to_head_match_wins: Float - head_to_head_rounds_won: Float - losses: Float - maps_lost: Float - maps_won: Float - matches_played: Float - matches_remaining: Float - placement: Float - rank: Float - rounds_lost: Float - rounds_won: Float - team_kdr: Float - total_deaths: Float - total_kills: Float - wins: Float -} - -""" -order by stddev() on columns of table "v_team_stage_results" -""" -input v_team_stage_results_stddev_order_by { - group_number: order_by - head_to_head_match_wins: order_by - head_to_head_rounds_won: order_by - losses: order_by - maps_lost: order_by - maps_won: order_by - matches_played: order_by - matches_remaining: order_by - placement: order_by - rank: order_by - rounds_lost: order_by - rounds_won: order_by - team_kdr: order_by - total_deaths: order_by - total_kills: order_by - wins: order_by -} - -"""aggregate stddev_pop on columns""" -type v_team_stage_results_stddev_pop_fields { - group_number: Float - head_to_head_match_wins: Float - head_to_head_rounds_won: Float - losses: Float - maps_lost: Float - maps_won: Float - matches_played: Float - matches_remaining: Float - placement: Float - rank: Float - rounds_lost: Float - rounds_won: Float - team_kdr: Float - total_deaths: Float - total_kills: Float - wins: Float -} - -""" -order by stddev_pop() on columns of table "v_team_stage_results" -""" -input v_team_stage_results_stddev_pop_order_by { - group_number: order_by - head_to_head_match_wins: order_by - head_to_head_rounds_won: order_by - losses: order_by - maps_lost: order_by - maps_won: order_by - matches_played: order_by - matches_remaining: order_by - placement: order_by - rank: order_by - rounds_lost: order_by - rounds_won: order_by - team_kdr: order_by - total_deaths: order_by - total_kills: order_by - wins: order_by -} - -"""aggregate stddev_samp on columns""" -type v_team_stage_results_stddev_samp_fields { - group_number: Float - head_to_head_match_wins: Float - head_to_head_rounds_won: Float - losses: Float - maps_lost: Float - maps_won: Float - matches_played: Float - matches_remaining: Float - placement: Float - rank: Float - rounds_lost: Float - rounds_won: Float - team_kdr: Float - total_deaths: Float - total_kills: Float - wins: Float -} - -""" -order by stddev_samp() on columns of table "v_team_stage_results" -""" -input v_team_stage_results_stddev_samp_order_by { - group_number: order_by - head_to_head_match_wins: order_by - head_to_head_rounds_won: order_by - losses: order_by - maps_lost: order_by - maps_won: order_by - matches_played: order_by - matches_remaining: order_by - placement: order_by - rank: order_by - rounds_lost: order_by - rounds_won: order_by - team_kdr: order_by - total_deaths: order_by - total_kills: order_by - wins: order_by -} - -""" -Streaming cursor of the table "v_team_stage_results" -""" -input v_team_stage_results_stream_cursor_input { - """Stream column input with initial value""" - initial_value: v_team_stage_results_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input v_team_stage_results_stream_cursor_value_input { - group_number: Int - head_to_head_match_wins: Int - head_to_head_rounds_won: Int - losses: Int - maps_lost: Int - maps_won: Int - matches_played: Int - matches_remaining: Int - placement: Int - rank: Int - rounds_lost: Int - rounds_won: Int - team_kdr: float8 - total_deaths: Int - total_kills: Int - tournament_stage_id: uuid - tournament_team_id: uuid - wins: Int -} - -"""aggregate sum on columns""" -type v_team_stage_results_sum_fields { - group_number: Int - head_to_head_match_wins: Int - head_to_head_rounds_won: Int - losses: Int - maps_lost: Int - maps_won: Int - matches_played: Int - matches_remaining: Int - placement: Int - rank: Int - rounds_lost: Int - rounds_won: Int - team_kdr: float8 - total_deaths: Int - total_kills: Int - wins: Int -} - -""" -order by sum() on columns of table "v_team_stage_results" -""" -input v_team_stage_results_sum_order_by { - group_number: order_by - head_to_head_match_wins: order_by - head_to_head_rounds_won: order_by - losses: order_by - maps_lost: order_by - maps_won: order_by - matches_played: order_by - matches_remaining: order_by - placement: order_by - rank: order_by - rounds_lost: order_by - rounds_won: order_by - team_kdr: order_by - total_deaths: order_by - total_kills: order_by - wins: order_by -} - -""" -update columns of table "v_team_stage_results" -""" -enum v_team_stage_results_update_column { - """column name""" - group_number - - """column name""" - head_to_head_match_wins - - """column name""" - head_to_head_rounds_won - - """column name""" - losses - - """column name""" - maps_lost - - """column name""" - maps_won - - """column name""" - matches_played - - """column name""" - matches_remaining - - """column name""" - placement - - """column name""" - rank - - """column name""" - rounds_lost - - """column name""" - rounds_won - - """column name""" - team_kdr - - """column name""" - total_deaths - - """column name""" - total_kills - - """column name""" - tournament_stage_id - - """column name""" - tournament_team_id - - """column name""" - wins -} - -input v_team_stage_results_updates { - """increments the numeric columns with given value of the filtered values""" - _inc: v_team_stage_results_inc_input - - """sets the columns of the filtered rows to the given values""" - _set: v_team_stage_results_set_input - - """filter the rows which have to be updated""" - where: v_team_stage_results_bool_exp! -} - -"""aggregate var_pop on columns""" -type v_team_stage_results_var_pop_fields { - group_number: Float - head_to_head_match_wins: Float - head_to_head_rounds_won: Float - losses: Float - maps_lost: Float - maps_won: Float - matches_played: Float - matches_remaining: Float - placement: Float - rank: Float - rounds_lost: Float - rounds_won: Float - team_kdr: Float - total_deaths: Float - total_kills: Float - wins: Float -} - -""" -order by var_pop() on columns of table "v_team_stage_results" -""" -input v_team_stage_results_var_pop_order_by { - group_number: order_by - head_to_head_match_wins: order_by - head_to_head_rounds_won: order_by - losses: order_by - maps_lost: order_by - maps_won: order_by - matches_played: order_by - matches_remaining: order_by - placement: order_by - rank: order_by - rounds_lost: order_by - rounds_won: order_by - team_kdr: order_by - total_deaths: order_by - total_kills: order_by - wins: order_by -} - -"""aggregate var_samp on columns""" -type v_team_stage_results_var_samp_fields { - group_number: Float - head_to_head_match_wins: Float - head_to_head_rounds_won: Float - losses: Float - maps_lost: Float - maps_won: Float - matches_played: Float - matches_remaining: Float - placement: Float - rank: Float - rounds_lost: Float - rounds_won: Float - team_kdr: Float - total_deaths: Float - total_kills: Float - wins: Float -} - -""" -order by var_samp() on columns of table "v_team_stage_results" -""" -input v_team_stage_results_var_samp_order_by { - group_number: order_by - head_to_head_match_wins: order_by - head_to_head_rounds_won: order_by - losses: order_by - maps_lost: order_by - maps_won: order_by - matches_played: order_by - matches_remaining: order_by - placement: order_by - rank: order_by - rounds_lost: order_by - rounds_won: order_by - team_kdr: order_by - total_deaths: order_by - total_kills: order_by - wins: order_by -} - -"""aggregate variance on columns""" -type v_team_stage_results_variance_fields { - group_number: Float - head_to_head_match_wins: Float - head_to_head_rounds_won: Float - losses: Float - maps_lost: Float - maps_won: Float - matches_played: Float - matches_remaining: Float - placement: Float - rank: Float - rounds_lost: Float - rounds_won: Float - team_kdr: Float - total_deaths: Float - total_kills: Float - wins: Float -} - -""" -order by variance() on columns of table "v_team_stage_results" -""" -input v_team_stage_results_variance_order_by { - group_number: order_by - head_to_head_match_wins: order_by - head_to_head_rounds_won: order_by - losses: order_by - maps_lost: order_by - maps_won: order_by - matches_played: order_by - matches_remaining: order_by - placement: order_by - rank: order_by - rounds_lost: order_by - rounds_won: order_by - team_kdr: order_by - total_deaths: order_by - total_kills: order_by - wins: order_by -} - -""" -columns and relationships of "v_team_tournament_results" -""" -type v_team_tournament_results { - head_to_head_match_wins: Int - head_to_head_rounds_won: Int - losses: Int - maps_lost: Int - maps_won: Int - matches_played: Int - matches_remaining: Int - rounds_lost: Int - rounds_won: Int - - """An object relationship""" - team: tournament_teams - team_kdr: float8 - total_deaths: Int - total_kills: Int - - """An object relationship""" - tournament: tournaments - tournament_id: uuid - tournament_team_id: uuid - wins: Int -} - -""" -aggregated selection of "v_team_tournament_results" -""" -type v_team_tournament_results_aggregate { - aggregate: v_team_tournament_results_aggregate_fields - nodes: [v_team_tournament_results!]! -} - -input v_team_tournament_results_aggregate_bool_exp { - avg: v_team_tournament_results_aggregate_bool_exp_avg - corr: v_team_tournament_results_aggregate_bool_exp_corr - count: v_team_tournament_results_aggregate_bool_exp_count - covar_samp: v_team_tournament_results_aggregate_bool_exp_covar_samp - max: v_team_tournament_results_aggregate_bool_exp_max - min: v_team_tournament_results_aggregate_bool_exp_min - stddev_samp: v_team_tournament_results_aggregate_bool_exp_stddev_samp - sum: v_team_tournament_results_aggregate_bool_exp_sum - var_samp: v_team_tournament_results_aggregate_bool_exp_var_samp -} - -input v_team_tournament_results_aggregate_bool_exp_avg { - arguments: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_avg_arguments_columns! - distinct: Boolean - filter: v_team_tournament_results_bool_exp - predicate: float8_comparison_exp! -} - -input v_team_tournament_results_aggregate_bool_exp_corr { - arguments: v_team_tournament_results_aggregate_bool_exp_corr_arguments! - distinct: Boolean - filter: v_team_tournament_results_bool_exp - predicate: float8_comparison_exp! -} - -input v_team_tournament_results_aggregate_bool_exp_corr_arguments { - X: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_corr_arguments_columns! - Y: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_corr_arguments_columns! -} - -input v_team_tournament_results_aggregate_bool_exp_count { - arguments: [v_team_tournament_results_select_column!] - distinct: Boolean - filter: v_team_tournament_results_bool_exp - predicate: Int_comparison_exp! -} - -input v_team_tournament_results_aggregate_bool_exp_covar_samp { - arguments: v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments! - distinct: Boolean - filter: v_team_tournament_results_bool_exp - predicate: float8_comparison_exp! -} - -input v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments { - X: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments_columns! - Y: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments_columns! -} - -input v_team_tournament_results_aggregate_bool_exp_max { - arguments: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_max_arguments_columns! - distinct: Boolean - filter: v_team_tournament_results_bool_exp - predicate: float8_comparison_exp! -} - -input v_team_tournament_results_aggregate_bool_exp_min { - arguments: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_min_arguments_columns! - distinct: Boolean - filter: v_team_tournament_results_bool_exp - predicate: float8_comparison_exp! -} - -input v_team_tournament_results_aggregate_bool_exp_stddev_samp { - arguments: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_stddev_samp_arguments_columns! - distinct: Boolean - filter: v_team_tournament_results_bool_exp - predicate: float8_comparison_exp! -} - -input v_team_tournament_results_aggregate_bool_exp_sum { - arguments: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_sum_arguments_columns! - distinct: Boolean - filter: v_team_tournament_results_bool_exp - predicate: float8_comparison_exp! -} - -input v_team_tournament_results_aggregate_bool_exp_var_samp { - arguments: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_var_samp_arguments_columns! - distinct: Boolean - filter: v_team_tournament_results_bool_exp - predicate: float8_comparison_exp! -} - -""" -aggregate fields of "v_team_tournament_results" -""" -type v_team_tournament_results_aggregate_fields { - avg: v_team_tournament_results_avg_fields - count(columns: [v_team_tournament_results_select_column!], distinct: Boolean): Int! - max: v_team_tournament_results_max_fields - min: v_team_tournament_results_min_fields - stddev: v_team_tournament_results_stddev_fields - stddev_pop: v_team_tournament_results_stddev_pop_fields - stddev_samp: v_team_tournament_results_stddev_samp_fields - sum: v_team_tournament_results_sum_fields - var_pop: v_team_tournament_results_var_pop_fields - var_samp: v_team_tournament_results_var_samp_fields - variance: v_team_tournament_results_variance_fields -} - -""" -order by aggregate values of table "v_team_tournament_results" -""" -input v_team_tournament_results_aggregate_order_by { - avg: v_team_tournament_results_avg_order_by - count: order_by - max: v_team_tournament_results_max_order_by - min: v_team_tournament_results_min_order_by - stddev: v_team_tournament_results_stddev_order_by - stddev_pop: v_team_tournament_results_stddev_pop_order_by - stddev_samp: v_team_tournament_results_stddev_samp_order_by - sum: v_team_tournament_results_sum_order_by - var_pop: v_team_tournament_results_var_pop_order_by - var_samp: v_team_tournament_results_var_samp_order_by - variance: v_team_tournament_results_variance_order_by -} - -""" -input type for inserting array relation for remote table "v_team_tournament_results" -""" -input v_team_tournament_results_arr_rel_insert_input { - data: [v_team_tournament_results_insert_input!]! -} - -"""aggregate avg on columns""" -type v_team_tournament_results_avg_fields { - head_to_head_match_wins: Float - head_to_head_rounds_won: Float - losses: Float - maps_lost: Float - maps_won: Float - matches_played: Float - matches_remaining: Float - rounds_lost: Float - rounds_won: Float - team_kdr: Float - total_deaths: Float - total_kills: Float - wins: Float -} - -""" -order by avg() on columns of table "v_team_tournament_results" -""" -input v_team_tournament_results_avg_order_by { - head_to_head_match_wins: order_by - head_to_head_rounds_won: order_by - losses: order_by - maps_lost: order_by - maps_won: order_by - matches_played: order_by - matches_remaining: order_by - rounds_lost: order_by - rounds_won: order_by - team_kdr: order_by - total_deaths: order_by - total_kills: order_by - wins: order_by -} - -""" -Boolean expression to filter rows from the table "v_team_tournament_results". All fields are combined with a logical 'AND'. -""" -input v_team_tournament_results_bool_exp { - _and: [v_team_tournament_results_bool_exp!] - _not: v_team_tournament_results_bool_exp - _or: [v_team_tournament_results_bool_exp!] - head_to_head_match_wins: Int_comparison_exp - head_to_head_rounds_won: Int_comparison_exp - losses: Int_comparison_exp - maps_lost: Int_comparison_exp - maps_won: Int_comparison_exp - matches_played: Int_comparison_exp - matches_remaining: Int_comparison_exp - rounds_lost: Int_comparison_exp - rounds_won: Int_comparison_exp - team: tournament_teams_bool_exp - team_kdr: float8_comparison_exp - total_deaths: Int_comparison_exp - total_kills: Int_comparison_exp - tournament: tournaments_bool_exp - tournament_id: uuid_comparison_exp - tournament_team_id: uuid_comparison_exp - wins: Int_comparison_exp -} - -""" -input type for inserting data into table "v_team_tournament_results" -""" -input v_team_tournament_results_insert_input { - head_to_head_match_wins: Int - head_to_head_rounds_won: Int - losses: Int - maps_lost: Int - maps_won: Int - matches_played: Int - matches_remaining: Int - rounds_lost: Int - rounds_won: Int - team: tournament_teams_obj_rel_insert_input - team_kdr: float8 - total_deaths: Int - total_kills: Int - tournament: tournaments_obj_rel_insert_input - tournament_id: uuid - tournament_team_id: uuid - wins: Int -} - -"""aggregate max on columns""" -type v_team_tournament_results_max_fields { - head_to_head_match_wins: Int - head_to_head_rounds_won: Int - losses: Int - maps_lost: Int - maps_won: Int - matches_played: Int - matches_remaining: Int - rounds_lost: Int - rounds_won: Int - team_kdr: float8 - total_deaths: Int - total_kills: Int - tournament_id: uuid - tournament_team_id: uuid - wins: Int -} - -""" -order by max() on columns of table "v_team_tournament_results" -""" -input v_team_tournament_results_max_order_by { - head_to_head_match_wins: order_by - head_to_head_rounds_won: order_by - losses: order_by - maps_lost: order_by - maps_won: order_by - matches_played: order_by - matches_remaining: order_by - rounds_lost: order_by - rounds_won: order_by - team_kdr: order_by - total_deaths: order_by - total_kills: order_by - tournament_id: order_by - tournament_team_id: order_by - wins: order_by -} - -"""aggregate min on columns""" -type v_team_tournament_results_min_fields { - head_to_head_match_wins: Int - head_to_head_rounds_won: Int - losses: Int - maps_lost: Int - maps_won: Int - matches_played: Int - matches_remaining: Int - rounds_lost: Int - rounds_won: Int - team_kdr: float8 - total_deaths: Int - total_kills: Int - tournament_id: uuid - tournament_team_id: uuid - wins: Int -} - -""" -order by min() on columns of table "v_team_tournament_results" -""" -input v_team_tournament_results_min_order_by { - head_to_head_match_wins: order_by - head_to_head_rounds_won: order_by - losses: order_by - maps_lost: order_by - maps_won: order_by - matches_played: order_by - matches_remaining: order_by - rounds_lost: order_by - rounds_won: order_by - team_kdr: order_by - total_deaths: order_by - total_kills: order_by - tournament_id: order_by - tournament_team_id: order_by - wins: order_by -} - -"""Ordering options when selecting data from "v_team_tournament_results".""" -input v_team_tournament_results_order_by { - head_to_head_match_wins: order_by - head_to_head_rounds_won: order_by - losses: order_by - maps_lost: order_by - maps_won: order_by - matches_played: order_by - matches_remaining: order_by - rounds_lost: order_by - rounds_won: order_by - team: tournament_teams_order_by - team_kdr: order_by - total_deaths: order_by - total_kills: order_by - tournament: tournaments_order_by - tournament_id: order_by - tournament_team_id: order_by - wins: order_by -} - -""" -select columns of table "v_team_tournament_results" -""" -enum v_team_tournament_results_select_column { - """column name""" - head_to_head_match_wins - - """column name""" - head_to_head_rounds_won - - """column name""" - losses - - """column name""" - maps_lost - - """column name""" - maps_won - - """column name""" - matches_played - - """column name""" - matches_remaining - - """column name""" - rounds_lost - - """column name""" - rounds_won - - """column name""" - team_kdr - - """column name""" - total_deaths - - """column name""" - total_kills - - """column name""" - tournament_id - - """column name""" - tournament_team_id - - """column name""" - wins -} - -""" -select "v_team_tournament_results_aggregate_bool_exp_avg_arguments_columns" columns of table "v_team_tournament_results" -""" -enum v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_avg_arguments_columns { - """column name""" - team_kdr -} - -""" -select "v_team_tournament_results_aggregate_bool_exp_corr_arguments_columns" columns of table "v_team_tournament_results" -""" -enum v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_corr_arguments_columns { - """column name""" - team_kdr -} - -""" -select "v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "v_team_tournament_results" -""" -enum v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments_columns { - """column name""" - team_kdr -} - -""" -select "v_team_tournament_results_aggregate_bool_exp_max_arguments_columns" columns of table "v_team_tournament_results" -""" -enum v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_max_arguments_columns { - """column name""" - team_kdr -} - -""" -select "v_team_tournament_results_aggregate_bool_exp_min_arguments_columns" columns of table "v_team_tournament_results" -""" -enum v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_min_arguments_columns { - """column name""" - team_kdr -} - -""" -select "v_team_tournament_results_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "v_team_tournament_results" -""" -enum v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_stddev_samp_arguments_columns { - """column name""" - team_kdr -} - -""" -select "v_team_tournament_results_aggregate_bool_exp_sum_arguments_columns" columns of table "v_team_tournament_results" -""" -enum v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_sum_arguments_columns { - """column name""" - team_kdr -} - -""" -select "v_team_tournament_results_aggregate_bool_exp_var_samp_arguments_columns" columns of table "v_team_tournament_results" -""" -enum v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_var_samp_arguments_columns { - """column name""" - team_kdr -} - -"""aggregate stddev on columns""" -type v_team_tournament_results_stddev_fields { - head_to_head_match_wins: Float - head_to_head_rounds_won: Float - losses: Float - maps_lost: Float - maps_won: Float - matches_played: Float - matches_remaining: Float - rounds_lost: Float - rounds_won: Float - team_kdr: Float - total_deaths: Float - total_kills: Float - wins: Float -} - -""" -order by stddev() on columns of table "v_team_tournament_results" -""" -input v_team_tournament_results_stddev_order_by { - head_to_head_match_wins: order_by - head_to_head_rounds_won: order_by - losses: order_by - maps_lost: order_by - maps_won: order_by - matches_played: order_by - matches_remaining: order_by - rounds_lost: order_by - rounds_won: order_by - team_kdr: order_by - total_deaths: order_by - total_kills: order_by - wins: order_by -} - -"""aggregate stddev_pop on columns""" -type v_team_tournament_results_stddev_pop_fields { - head_to_head_match_wins: Float - head_to_head_rounds_won: Float - losses: Float - maps_lost: Float - maps_won: Float - matches_played: Float - matches_remaining: Float - rounds_lost: Float - rounds_won: Float - team_kdr: Float - total_deaths: Float - total_kills: Float - wins: Float -} - -""" -order by stddev_pop() on columns of table "v_team_tournament_results" -""" -input v_team_tournament_results_stddev_pop_order_by { - head_to_head_match_wins: order_by - head_to_head_rounds_won: order_by - losses: order_by - maps_lost: order_by - maps_won: order_by - matches_played: order_by - matches_remaining: order_by - rounds_lost: order_by - rounds_won: order_by - team_kdr: order_by - total_deaths: order_by - total_kills: order_by - wins: order_by -} - -"""aggregate stddev_samp on columns""" -type v_team_tournament_results_stddev_samp_fields { - head_to_head_match_wins: Float - head_to_head_rounds_won: Float - losses: Float - maps_lost: Float - maps_won: Float - matches_played: Float - matches_remaining: Float - rounds_lost: Float - rounds_won: Float - team_kdr: Float - total_deaths: Float - total_kills: Float - wins: Float -} - -""" -order by stddev_samp() on columns of table "v_team_tournament_results" -""" -input v_team_tournament_results_stddev_samp_order_by { - head_to_head_match_wins: order_by - head_to_head_rounds_won: order_by - losses: order_by - maps_lost: order_by - maps_won: order_by - matches_played: order_by - matches_remaining: order_by - rounds_lost: order_by - rounds_won: order_by - team_kdr: order_by - total_deaths: order_by - total_kills: order_by - wins: order_by -} - -""" -Streaming cursor of the table "v_team_tournament_results" -""" -input v_team_tournament_results_stream_cursor_input { - """Stream column input with initial value""" - initial_value: v_team_tournament_results_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input v_team_tournament_results_stream_cursor_value_input { - head_to_head_match_wins: Int - head_to_head_rounds_won: Int - losses: Int - maps_lost: Int - maps_won: Int - matches_played: Int - matches_remaining: Int - rounds_lost: Int - rounds_won: Int - team_kdr: float8 - total_deaths: Int - total_kills: Int - tournament_id: uuid - tournament_team_id: uuid - wins: Int -} - -"""aggregate sum on columns""" -type v_team_tournament_results_sum_fields { - head_to_head_match_wins: Int - head_to_head_rounds_won: Int - losses: Int - maps_lost: Int - maps_won: Int - matches_played: Int - matches_remaining: Int - rounds_lost: Int - rounds_won: Int - team_kdr: float8 - total_deaths: Int - total_kills: Int - wins: Int -} - -""" -order by sum() on columns of table "v_team_tournament_results" -""" -input v_team_tournament_results_sum_order_by { - head_to_head_match_wins: order_by - head_to_head_rounds_won: order_by - losses: order_by - maps_lost: order_by - maps_won: order_by - matches_played: order_by - matches_remaining: order_by - rounds_lost: order_by - rounds_won: order_by - team_kdr: order_by - total_deaths: order_by - total_kills: order_by - wins: order_by -} - -"""aggregate var_pop on columns""" -type v_team_tournament_results_var_pop_fields { - head_to_head_match_wins: Float - head_to_head_rounds_won: Float - losses: Float - maps_lost: Float - maps_won: Float - matches_played: Float - matches_remaining: Float - rounds_lost: Float - rounds_won: Float - team_kdr: Float - total_deaths: Float - total_kills: Float - wins: Float -} - -""" -order by var_pop() on columns of table "v_team_tournament_results" -""" -input v_team_tournament_results_var_pop_order_by { - head_to_head_match_wins: order_by - head_to_head_rounds_won: order_by - losses: order_by - maps_lost: order_by - maps_won: order_by - matches_played: order_by - matches_remaining: order_by - rounds_lost: order_by - rounds_won: order_by - team_kdr: order_by - total_deaths: order_by - total_kills: order_by - wins: order_by -} - -"""aggregate var_samp on columns""" -type v_team_tournament_results_var_samp_fields { - head_to_head_match_wins: Float - head_to_head_rounds_won: Float - losses: Float - maps_lost: Float - maps_won: Float - matches_played: Float - matches_remaining: Float - rounds_lost: Float - rounds_won: Float - team_kdr: Float - total_deaths: Float - total_kills: Float - wins: Float -} - -""" -order by var_samp() on columns of table "v_team_tournament_results" -""" -input v_team_tournament_results_var_samp_order_by { - head_to_head_match_wins: order_by - head_to_head_rounds_won: order_by - losses: order_by - maps_lost: order_by - maps_won: order_by - matches_played: order_by - matches_remaining: order_by - rounds_lost: order_by - rounds_won: order_by - team_kdr: order_by - total_deaths: order_by - total_kills: order_by - wins: order_by -} - -"""aggregate variance on columns""" -type v_team_tournament_results_variance_fields { - head_to_head_match_wins: Float - head_to_head_rounds_won: Float - losses: Float - maps_lost: Float - maps_won: Float - matches_played: Float - matches_remaining: Float - rounds_lost: Float - rounds_won: Float - team_kdr: Float - total_deaths: Float - total_kills: Float - wins: Float -} - -""" -order by variance() on columns of table "v_team_tournament_results" -""" -input v_team_tournament_results_variance_order_by { - head_to_head_match_wins: order_by - head_to_head_rounds_won: order_by - losses: order_by - maps_lost: order_by - maps_won: order_by - matches_played: order_by - matches_remaining: order_by - rounds_lost: order_by - rounds_won: order_by - team_kdr: order_by - total_deaths: order_by - total_kills: order_by - wins: order_by -} - -""" -columns and relationships of "v_tournament_player_stats" -""" -type v_tournament_player_stats { - assists: Int - deaths: Int - headshot_percentage: float8 - headshots: Int - kdr: float8 - kills: Int - matches_played: Int - - """An object relationship""" - player: players - player_steam_id: bigint - - """An object relationship""" - tournament: tournaments - tournament_id: uuid -} - -""" -aggregated selection of "v_tournament_player_stats" -""" -type v_tournament_player_stats_aggregate { - aggregate: v_tournament_player_stats_aggregate_fields - nodes: [v_tournament_player_stats!]! -} - -input v_tournament_player_stats_aggregate_bool_exp { - avg: v_tournament_player_stats_aggregate_bool_exp_avg - corr: v_tournament_player_stats_aggregate_bool_exp_corr - count: v_tournament_player_stats_aggregate_bool_exp_count - covar_samp: v_tournament_player_stats_aggregate_bool_exp_covar_samp - max: v_tournament_player_stats_aggregate_bool_exp_max - min: v_tournament_player_stats_aggregate_bool_exp_min - stddev_samp: v_tournament_player_stats_aggregate_bool_exp_stddev_samp - sum: v_tournament_player_stats_aggregate_bool_exp_sum - var_samp: v_tournament_player_stats_aggregate_bool_exp_var_samp -} - -input v_tournament_player_stats_aggregate_bool_exp_avg { - arguments: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_avg_arguments_columns! - distinct: Boolean - filter: v_tournament_player_stats_bool_exp - predicate: float8_comparison_exp! -} - -input v_tournament_player_stats_aggregate_bool_exp_corr { - arguments: v_tournament_player_stats_aggregate_bool_exp_corr_arguments! - distinct: Boolean - filter: v_tournament_player_stats_bool_exp - predicate: float8_comparison_exp! -} - -input v_tournament_player_stats_aggregate_bool_exp_corr_arguments { - X: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_corr_arguments_columns! - Y: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_corr_arguments_columns! -} - -input v_tournament_player_stats_aggregate_bool_exp_count { - arguments: [v_tournament_player_stats_select_column!] - distinct: Boolean - filter: v_tournament_player_stats_bool_exp - predicate: Int_comparison_exp! -} - -input v_tournament_player_stats_aggregate_bool_exp_covar_samp { - arguments: v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments! - distinct: Boolean - filter: v_tournament_player_stats_bool_exp - predicate: float8_comparison_exp! -} - -input v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments { - X: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments_columns! - Y: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments_columns! -} - -input v_tournament_player_stats_aggregate_bool_exp_max { - arguments: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_max_arguments_columns! - distinct: Boolean - filter: v_tournament_player_stats_bool_exp - predicate: float8_comparison_exp! -} - -input v_tournament_player_stats_aggregate_bool_exp_min { - arguments: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_min_arguments_columns! - distinct: Boolean - filter: v_tournament_player_stats_bool_exp - predicate: float8_comparison_exp! -} - -input v_tournament_player_stats_aggregate_bool_exp_stddev_samp { - arguments: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns! - distinct: Boolean - filter: v_tournament_player_stats_bool_exp - predicate: float8_comparison_exp! -} - -input v_tournament_player_stats_aggregate_bool_exp_sum { - arguments: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_sum_arguments_columns! - distinct: Boolean - filter: v_tournament_player_stats_bool_exp - predicate: float8_comparison_exp! -} - -input v_tournament_player_stats_aggregate_bool_exp_var_samp { - arguments: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_var_samp_arguments_columns! - distinct: Boolean - filter: v_tournament_player_stats_bool_exp - predicate: float8_comparison_exp! -} - -""" -aggregate fields of "v_tournament_player_stats" -""" -type v_tournament_player_stats_aggregate_fields { - avg: v_tournament_player_stats_avg_fields - count(columns: [v_tournament_player_stats_select_column!], distinct: Boolean): Int! - max: v_tournament_player_stats_max_fields - min: v_tournament_player_stats_min_fields - stddev: v_tournament_player_stats_stddev_fields - stddev_pop: v_tournament_player_stats_stddev_pop_fields - stddev_samp: v_tournament_player_stats_stddev_samp_fields - sum: v_tournament_player_stats_sum_fields - var_pop: v_tournament_player_stats_var_pop_fields - var_samp: v_tournament_player_stats_var_samp_fields - variance: v_tournament_player_stats_variance_fields -} - -""" -order by aggregate values of table "v_tournament_player_stats" -""" -input v_tournament_player_stats_aggregate_order_by { - avg: v_tournament_player_stats_avg_order_by - count: order_by - max: v_tournament_player_stats_max_order_by - min: v_tournament_player_stats_min_order_by - stddev: v_tournament_player_stats_stddev_order_by - stddev_pop: v_tournament_player_stats_stddev_pop_order_by - stddev_samp: v_tournament_player_stats_stddev_samp_order_by - sum: v_tournament_player_stats_sum_order_by - var_pop: v_tournament_player_stats_var_pop_order_by - var_samp: v_tournament_player_stats_var_samp_order_by - variance: v_tournament_player_stats_variance_order_by -} - -""" -input type for inserting array relation for remote table "v_tournament_player_stats" -""" -input v_tournament_player_stats_arr_rel_insert_input { - data: [v_tournament_player_stats_insert_input!]! -} - -"""aggregate avg on columns""" -type v_tournament_player_stats_avg_fields { - assists: Float - deaths: Float - headshot_percentage: Float - headshots: Float - kdr: Float - kills: Float - matches_played: Float - player_steam_id: Float -} - -""" -order by avg() on columns of table "v_tournament_player_stats" -""" -input v_tournament_player_stats_avg_order_by { - assists: order_by - deaths: order_by - headshot_percentage: order_by - headshots: order_by - kdr: order_by - kills: order_by - matches_played: order_by - player_steam_id: order_by -} - -""" -Boolean expression to filter rows from the table "v_tournament_player_stats". All fields are combined with a logical 'AND'. -""" -input v_tournament_player_stats_bool_exp { - _and: [v_tournament_player_stats_bool_exp!] - _not: v_tournament_player_stats_bool_exp - _or: [v_tournament_player_stats_bool_exp!] - assists: Int_comparison_exp - deaths: Int_comparison_exp - headshot_percentage: float8_comparison_exp - headshots: Int_comparison_exp - kdr: float8_comparison_exp - kills: Int_comparison_exp - matches_played: Int_comparison_exp - player: players_bool_exp - player_steam_id: bigint_comparison_exp - tournament: tournaments_bool_exp - tournament_id: uuid_comparison_exp -} - -""" -input type for inserting data into table "v_tournament_player_stats" -""" -input v_tournament_player_stats_insert_input { - assists: Int - deaths: Int - headshot_percentage: float8 - headshots: Int - kdr: float8 - kills: Int - matches_played: Int - player: players_obj_rel_insert_input - player_steam_id: bigint - tournament: tournaments_obj_rel_insert_input - tournament_id: uuid -} - -"""aggregate max on columns""" -type v_tournament_player_stats_max_fields { - assists: Int - deaths: Int - headshot_percentage: float8 - headshots: Int - kdr: float8 - kills: Int - matches_played: Int - player_steam_id: bigint - tournament_id: uuid -} - -""" -order by max() on columns of table "v_tournament_player_stats" -""" -input v_tournament_player_stats_max_order_by { - assists: order_by - deaths: order_by - headshot_percentage: order_by - headshots: order_by - kdr: order_by - kills: order_by - matches_played: order_by - player_steam_id: order_by - tournament_id: order_by -} - -"""aggregate min on columns""" -type v_tournament_player_stats_min_fields { - assists: Int - deaths: Int - headshot_percentage: float8 - headshots: Int - kdr: float8 - kills: Int - matches_played: Int - player_steam_id: bigint - tournament_id: uuid -} - -""" -order by min() on columns of table "v_tournament_player_stats" -""" -input v_tournament_player_stats_min_order_by { - assists: order_by - deaths: order_by - headshot_percentage: order_by - headshots: order_by - kdr: order_by - kills: order_by - matches_played: order_by - player_steam_id: order_by - tournament_id: order_by -} - -"""Ordering options when selecting data from "v_tournament_player_stats".""" -input v_tournament_player_stats_order_by { - assists: order_by - deaths: order_by - headshot_percentage: order_by - headshots: order_by - kdr: order_by - kills: order_by - matches_played: order_by - player: players_order_by - player_steam_id: order_by - tournament: tournaments_order_by - tournament_id: order_by -} - -""" -select columns of table "v_tournament_player_stats" -""" -enum v_tournament_player_stats_select_column { - """column name""" - assists - - """column name""" - deaths - - """column name""" - headshot_percentage - - """column name""" - headshots - - """column name""" - kdr - - """column name""" - kills - - """column name""" - matches_played - - """column name""" - player_steam_id - - """column name""" - tournament_id -} - -""" -select "v_tournament_player_stats_aggregate_bool_exp_avg_arguments_columns" columns of table "v_tournament_player_stats" -""" -enum v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_avg_arguments_columns { - """column name""" - headshot_percentage - - """column name""" - kdr -} - -""" -select "v_tournament_player_stats_aggregate_bool_exp_corr_arguments_columns" columns of table "v_tournament_player_stats" -""" -enum v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_corr_arguments_columns { - """column name""" - headshot_percentage - - """column name""" - kdr -} - -""" -select "v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "v_tournament_player_stats" -""" -enum v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments_columns { - """column name""" - headshot_percentage - - """column name""" - kdr -} - -""" -select "v_tournament_player_stats_aggregate_bool_exp_max_arguments_columns" columns of table "v_tournament_player_stats" -""" -enum v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_max_arguments_columns { - """column name""" - headshot_percentage - - """column name""" - kdr -} - -""" -select "v_tournament_player_stats_aggregate_bool_exp_min_arguments_columns" columns of table "v_tournament_player_stats" -""" -enum v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_min_arguments_columns { - """column name""" - headshot_percentage - - """column name""" - kdr -} - -""" -select "v_tournament_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "v_tournament_player_stats" -""" -enum v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns { - """column name""" - headshot_percentage - - """column name""" - kdr -} - -""" -select "v_tournament_player_stats_aggregate_bool_exp_sum_arguments_columns" columns of table "v_tournament_player_stats" -""" -enum v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_sum_arguments_columns { - """column name""" - headshot_percentage - - """column name""" - kdr -} - -""" -select "v_tournament_player_stats_aggregate_bool_exp_var_samp_arguments_columns" columns of table "v_tournament_player_stats" -""" -enum v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_var_samp_arguments_columns { - """column name""" - headshot_percentage - - """column name""" - kdr -} - -"""aggregate stddev on columns""" -type v_tournament_player_stats_stddev_fields { - assists: Float - deaths: Float - headshot_percentage: Float - headshots: Float - kdr: Float - kills: Float - matches_played: Float - player_steam_id: Float -} - -""" -order by stddev() on columns of table "v_tournament_player_stats" -""" -input v_tournament_player_stats_stddev_order_by { - assists: order_by - deaths: order_by - headshot_percentage: order_by - headshots: order_by - kdr: order_by - kills: order_by - matches_played: order_by - player_steam_id: order_by -} - -"""aggregate stddev_pop on columns""" -type v_tournament_player_stats_stddev_pop_fields { - assists: Float - deaths: Float - headshot_percentage: Float - headshots: Float - kdr: Float - kills: Float - matches_played: Float - player_steam_id: Float -} - -""" -order by stddev_pop() on columns of table "v_tournament_player_stats" -""" -input v_tournament_player_stats_stddev_pop_order_by { - assists: order_by - deaths: order_by - headshot_percentage: order_by - headshots: order_by - kdr: order_by - kills: order_by - matches_played: order_by - player_steam_id: order_by -} - -"""aggregate stddev_samp on columns""" -type v_tournament_player_stats_stddev_samp_fields { - assists: Float - deaths: Float - headshot_percentage: Float - headshots: Float - kdr: Float - kills: Float - matches_played: Float - player_steam_id: Float -} - -""" -order by stddev_samp() on columns of table "v_tournament_player_stats" -""" -input v_tournament_player_stats_stddev_samp_order_by { - assists: order_by - deaths: order_by - headshot_percentage: order_by - headshots: order_by - kdr: order_by - kills: order_by - matches_played: order_by - player_steam_id: order_by -} - -""" -Streaming cursor of the table "v_tournament_player_stats" -""" -input v_tournament_player_stats_stream_cursor_input { - """Stream column input with initial value""" - initial_value: v_tournament_player_stats_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input v_tournament_player_stats_stream_cursor_value_input { - assists: Int - deaths: Int - headshot_percentage: float8 - headshots: Int - kdr: float8 - kills: Int - matches_played: Int - player_steam_id: bigint - tournament_id: uuid -} - -"""aggregate sum on columns""" -type v_tournament_player_stats_sum_fields { - assists: Int - deaths: Int - headshot_percentage: float8 - headshots: Int - kdr: float8 - kills: Int - matches_played: Int - player_steam_id: bigint -} - -""" -order by sum() on columns of table "v_tournament_player_stats" -""" -input v_tournament_player_stats_sum_order_by { - assists: order_by - deaths: order_by - headshot_percentage: order_by - headshots: order_by - kdr: order_by - kills: order_by - matches_played: order_by - player_steam_id: order_by -} - -"""aggregate var_pop on columns""" -type v_tournament_player_stats_var_pop_fields { - assists: Float - deaths: Float - headshot_percentage: Float - headshots: Float - kdr: Float - kills: Float - matches_played: Float - player_steam_id: Float -} - -""" -order by var_pop() on columns of table "v_tournament_player_stats" -""" -input v_tournament_player_stats_var_pop_order_by { - assists: order_by - deaths: order_by - headshot_percentage: order_by - headshots: order_by - kdr: order_by - kills: order_by - matches_played: order_by - player_steam_id: order_by -} - -"""aggregate var_samp on columns""" -type v_tournament_player_stats_var_samp_fields { - assists: Float - deaths: Float - headshot_percentage: Float - headshots: Float - kdr: Float - kills: Float - matches_played: Float - player_steam_id: Float -} - -""" -order by var_samp() on columns of table "v_tournament_player_stats" -""" -input v_tournament_player_stats_var_samp_order_by { - assists: order_by - deaths: order_by - headshot_percentage: order_by - headshots: order_by - kdr: order_by - kills: order_by - matches_played: order_by - player_steam_id: order_by -} - -"""aggregate variance on columns""" -type v_tournament_player_stats_variance_fields { - assists: Float - deaths: Float - headshot_percentage: Float - headshots: Float - kdr: Float - kills: Float - matches_played: Float - player_steam_id: Float -} - -""" -order by variance() on columns of table "v_tournament_player_stats" -""" -input v_tournament_player_stats_variance_order_by { - assists: order_by - deaths: order_by - headshot_percentage: order_by - headshots: order_by - kdr: order_by - kills: order_by - matches_played: order_by - player_steam_id: order_by -} \ No newline at end of file diff --git a/generated/schema.ts b/generated/schema.ts deleted file mode 100644 index 475b2be0..00000000 --- a/generated/schema.ts +++ /dev/null @@ -1,157196 +0,0 @@ -// @ts-nocheck -/* istanbul ignore file */ -/* tslint:disable */ -/* eslint-disable */ - -export type Scalars = { - Boolean: boolean, - Float: number, - Int: number, - String: string, - _uuid: any, - bigint: any, - bytea: any, - float8: any, - inet: any, - json: any, - jsonb: any, - numeric: any, - smallint: any, - time: any, - timestamp: any, - timestamptz: any, - uuid: any, -} - -export interface ActiveConnection { - application_name: (Scalars['String'] | null) - client_addr: (Scalars['String'] | null) - pid: Scalars['Int'] - query: Scalars['String'] - query_start: (Scalars['timestamp'] | null) - state: (Scalars['String'] | null) - usename: (Scalars['String'] | null) - __typename: 'ActiveConnection' -} - -export interface ActiveQuery { - application_name: (Scalars['String'] | null) - client_addr: (Scalars['String'] | null) - duration_seconds: Scalars['Float'] - pid: Scalars['Int'] - query: Scalars['String'] - query_start: Scalars['timestamp'] - state: Scalars['String'] - usename: Scalars['String'] - wait_event: (Scalars['String'] | null) - wait_event_type: (Scalars['String'] | null) - __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' -} - -export interface Award { - allow_multiple: Scalars['Boolean'] - created_at: Scalars['String'] - created_by_steam_id: (Scalars['String'] | null) - description: (Scalars['String'] | null) - event_id: (Scalars['uuid'] | null) - id: Scalars['uuid'] - image_url: (Scalars['String'] | null) - league_season_id: (Scalars['uuid'] | null) - name: Scalars['String'] - season_id: (Scalars['uuid'] | null) - silhouette: (Scalars['Int'] | null) - system_key: (Scalars['String'] | null) - tier: Scalars['String'] - tournament_id: (Scalars['uuid'] | null) - updated_at: Scalars['String'] - __typename: 'Award' -} - -export interface AwardRecipient { - award_id: Scalars['uuid'] - awarded_by_steam_id: (Scalars['String'] | null) - created_at: Scalars['String'] - id: Scalars['uuid'] - note: (Scalars['String'] | null) - placement: (Scalars['Int'] | null) - player_steam_id: (Scalars['String'] | null) - source: Scalars['String'] - team_id: (Scalars['uuid'] | null) - tournament_id: (Scalars['uuid'] | null) - tournament_team_id: (Scalars['uuid'] | null) - __typename: 'AwardRecipient' -} - -export interface ConnectionByState { - count: Scalars['Int'] - state: Scalars['String'] - wait_event_type: (Scalars['String'] | null) - waiting_count: Scalars['Int'] - __typename: 'ConnectionByState' -} - -export interface ConnectionStats { - active: Scalars['Int'] - by_state: (ConnectionByState | null)[] - idle: Scalars['Int'] - idle_in_transaction: Scalars['Int'] - total: Scalars['Int'] - waiting: Scalars['Int'] - __typename: 'ConnectionStats' -} - -export interface CpuStat { - time: (Scalars['timestamp'] | null) - total: (Scalars['bigint'] | null) - used: (Scalars['bigint'] | null) - window: (Scalars['Float'] | null) - __typename: 'CpuStat' -} - -export interface CreateClipRenderOutput { - job_id: Scalars['uuid'] - success: Scalars['Boolean'] - __typename: 'CreateClipRenderOutput' -} - -export interface CreateDraftGameOutput { - draftGameId: Scalars['uuid'] - __typename: 'CreateDraftGameOutput' -} - -export interface CreateScheduledMatchOutput { - matchId: Scalars['uuid'] - __typename: 'CreateScheduledMatchOutput' -} - -export interface DatabaseStats { - blks_hit: Scalars['Int'] - blks_read: Scalars['Int'] - cache_hit_ratio: Scalars['Float'] - conflicts: Scalars['Int'] - datname: Scalars['String'] - deadlocks: Scalars['Int'] - numbackends: Scalars['Int'] - tup_deleted: Scalars['Int'] - tup_fetched: Scalars['Int'] - tup_inserted: Scalars['Int'] - tup_returned: Scalars['Int'] - tup_updated: Scalars['Int'] - xact_commit: Scalars['Int'] - xact_rollback: Scalars['Int'] - __typename: 'DatabaseStats' -} - -export interface DbStats { - calls: Scalars['Int'] - local_blks_hit: Scalars['Int'] - local_blks_read: Scalars['Int'] - max_exec_time: Scalars['Float'] - mean_exec_time: Scalars['Float'] - min_exec_time: Scalars['Float'] - query: Scalars['String'] - queryid: Scalars['String'] - shared_blks_hit: Scalars['Int'] - shared_blks_read: Scalars['Int'] - total_exec_time: Scalars['Float'] - total_rows: Scalars['Int'] - __typename: 'DbStats' -} - -export interface DedicatedSeverInfo { - id: Scalars['String'] - lastPing: Scalars['String'] - map: Scalars['String'] - players: Scalars['Int'] - __typename: 'DedicatedSeverInfo' -} - -export interface DeleteOrphansOutput { - bytes_freed: Scalars['Float'] - deleted: Scalars['Int'] - remaining_orphans: Scalars['Int'] - success: Scalars['Boolean'] - __typename: 'DeleteOrphansOutput' -} - -export interface DiskStat { - available: (Scalars['String'] | null) - filesystem: (Scalars['String'] | null) - mountpoint: (Scalars['String'] | null) - size: (Scalars['String'] | null) - used: (Scalars['String'] | null) - usedPercent: (Scalars['String'] | null) - __typename: 'DiskStat' -} - -export interface DiskStats { - disks: ((DiskStat | null)[] | null) - time: (Scalars['timestamp'] | null) - __typename: 'DiskStats' -} - -export interface DraftGamePreviewOutput { - accepted_count: (Scalars['Int'] | null) - access: (Scalars['String'] | null) - capacity: (Scalars['Int'] | null) - host_avatar_url: (Scalars['String'] | null) - host_name: (Scalars['String'] | null) - host_steam_id: (Scalars['String'] | null) - id: Scalars['uuid'] - mode: (Scalars['String'] | null) - players: DraftGamePreviewPlayer[] - require_approval: (Scalars['Boolean'] | null) - status: (Scalars['String'] | null) - type: (Scalars['String'] | null) - __typename: 'DraftGamePreviewOutput' -} - -export interface DraftGamePreviewPlayer { - avatar_url: (Scalars['String'] | null) - name: (Scalars['String'] | null) - status: (Scalars['String'] | null) - steam_id: Scalars['String'] - __typename: 'DraftGamePreviewPlayer' -} - -export interface FaceitTestOutput { - dataApi: FaceitTestResult - downloadApi: FaceitTestResult - __typename: 'FaceitTestOutput' -} - -export interface FaceitTestResult { - detail: Scalars['String'] - ok: (Scalars['Boolean'] | null) - __typename: 'FaceitTestResult' -} - -export interface FileContentResponse { - content: Scalars['String'] - path: Scalars['String'] - size: Scalars['bigint'] - __typename: 'FileContentResponse' -} - -export interface FileItem { - isDirectory: Scalars['Boolean'] - modified: (Scalars['timestamp'] | null) - name: Scalars['String'] - path: Scalars['String'] - size: (Scalars['bigint'] | null) - type: Scalars['String'] - __typename: 'FileItem' -} - -export interface FileListResponse { - currentPath: Scalars['String'] - items: FileItem[] - __typename: 'FileListResponse' -} - -export interface GetTestUploadResponse { - error: (Scalars['String'] | null) - link: (Scalars['String'] | null) - __typename: 'GetTestUploadResponse' -} - -export interface GpuDeviceStat { - index: (Scalars['Int'] | null) - memory_mb: (Scalars['Int'] | null) - memory_used_mb: (Scalars['Int'] | null) - name: (Scalars['String'] | null) - power_w: (Scalars['Int'] | null) - temperature_c: (Scalars['Int'] | null) - utilization_percent: (Scalars['Int'] | null) - __typename: 'GpuDeviceStat' -} - -export interface GpuStats { - devices: ((GpuDeviceStat | null)[] | null) - time: (Scalars['timestamp'] | null) - __typename: 'GpuStats' -} - -export interface HighlightPresetAvailability { - best_round: Scalars['Boolean'] - has_demo: Scalars['Boolean'] - knife: Scalars['Boolean'] - multikills: Scalars['Boolean'] - recap: Scalars['Boolean'] - __typename: 'HighlightPresetAvailability' -} - -export interface HypertableInfo { - compression_enabled: Scalars['Boolean'] - hypertable_name: Scalars['String'] - num_chunks: Scalars['Int'] - __typename: 'HypertableInfo' -} - -export interface IndexIOStat { - idx_blks_hit: Scalars['Int'] - idx_blks_read: Scalars['Int'] - indexname: Scalars['String'] - schemaname: Scalars['String'] - tablename: Scalars['String'] - __typename: 'IndexIOStat' -} - -export interface IndexStat { - idx_scan: Scalars['Int'] - idx_tup_fetch: Scalars['Int'] - idx_tup_read: Scalars['Int'] - index_size: Scalars['Int'] - indexname: Scalars['String'] - schemaname: Scalars['String'] - table_size: Scalars['Int'] - tablename: Scalars['String'] - __typename: 'IndexStat' -} - -export interface KickResult { - kicked: Scalars['Boolean'] - message: (Scalars['String'] | null) - __typename: 'KickResult' -} - -export interface LiveSpecGsi { - map_name: (Scalars['String'] | null) - map_phase: (Scalars['String'] | null) - round_number: (Scalars['Int'] | null) - round_phase: (Scalars['String'] | null) - spec_slots: LiveSpecSlot[] - spectated_steam_id: (Scalars['String'] | null) - team_ct_name: (Scalars['String'] | null) - team_ct_score: (Scalars['Int'] | null) - team_t_name: (Scalars['String'] | null) - team_t_score: (Scalars['Int'] | null) - __typename: 'LiveSpecGsi' -} - -export interface LiveSpecSlot { - alive: Scalars['Boolean'] - health: Scalars['Int'] - name: (Scalars['String'] | null) - slot: Scalars['Int'] - steam_id: Scalars['String'] - team: (Scalars['String'] | null) - __typename: 'LiveSpecSlot' -} - -export interface LiveStreamSpecState { - gsi: (LiveSpecGsi | null) - __typename: 'LiveStreamSpecState' -} - -export interface LockInfo { - granted: Scalars['Boolean'] - locktype: Scalars['String'] - mode: Scalars['String'] - pid: Scalars['Int'] - query: (Scalars['String'] | null) - relation: (Scalars['String'] | null) - usename: (Scalars['String'] | null) - __typename: 'LockInfo' -} - -export interface MapCalloutSyncOutput { - callouts: Scalars['Int'] - maps: Scalars['Int'] - __typename: 'MapCalloutSyncOutput' -} - -export interface MeResponse { - avatar_url: Scalars['String'] - country: (Scalars['String'] | null) - discord_id: (Scalars['String'] | null) - language: (Scalars['String'] | null) - name: Scalars['String'] - player: (players | null) - profile_url: (Scalars['String'] | null) - role: Scalars['String'] - steam_id: Scalars['String'] - __typename: 'MeResponse' -} - -export interface MemoryStat { - time: (Scalars['timestamp'] | null) - total: (Scalars['bigint'] | null) - used: (Scalars['bigint'] | null) - __typename: 'MemoryStat' -} - -export interface NetworkStats { - nics: ((NicStat | null)[] | null) - time: (Scalars['timestamp'] | null) - __typename: 'NetworkStats' -} - -export interface NewsPost { - author_steam_id: (Scalars['String'] | null) - content_markdown: Scalars['String'] - cover_image_url: (Scalars['String'] | null) - created_at: Scalars['String'] - id: Scalars['uuid'] - published_at: (Scalars['String'] | null) - slug: Scalars['String'] - status: Scalars['String'] - teaser: (Scalars['String'] | null) - title: Scalars['String'] - updated_at: Scalars['String'] - view_count: Scalars['bigint'] - __typename: 'NewsPost' -} - -export interface NicStat { - name: (Scalars['String'] | null) - rx: (Scalars['bigint'] | null) - tx: (Scalars['bigint'] | null) - __typename: 'NicStat' -} - -export interface NodeStats { - cpu: (CpuStat | null) - disks: ((DiskStats | null)[] | null) - gpu: ((GpuStats | null)[] | null) - memory: (MemoryStat | null) - network: ((NetworkStats | null)[] | null) - node: Scalars['String'] - __typename: 'NodeStats' -} - -export interface OrphanObject { - key: Scalars['String'] - size: Scalars['Float'] - __typename: 'OrphanObject' -} - -export interface OrphanScanResultOutput { - bucket: (Scalars['String'] | null) - clip_bytes: Scalars['Float'] - clip_objects: Scalars['Int'] - demo_bytes: Scalars['Float'] - demo_objects: Scalars['Int'] - found: Scalars['Boolean'] - orphan_bytes: Scalars['Float'] - orphan_objects: Scalars['Int'] - orphans: OrphanObject[] - other_bytes: Scalars['Float'] - other_objects: Scalars['Int'] - scanned_at: (Scalars['String'] | null) - scanning: Scalars['Boolean'] - total_bytes: Scalars['Float'] - total_objects: Scalars['Int'] - tracked_bytes: Scalars['Float'] - tracked_objects: Scalars['Int'] - __typename: 'OrphanScanResultOutput' -} - -export interface PendingMatchImportActionOutput { - error: (Scalars['String'] | null) - success: Scalars['Boolean'] - __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) - name: Scalars['String'] - node: Scalars['String'] - __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' -} - -export interface QueryDetail { - explain_plan: (Scalars['String'] | null) - query: Scalars['String'] - queryid: Scalars['String'] - stats: QueryStat - __typename: 'QueryDetail' -} - -export interface QueryStat { - cache_hit_ratio: (Scalars['Float'] | null) - calls: Scalars['Int'] - local_blks_hit: Scalars['Int'] - local_blks_read: Scalars['Int'] - max_exec_time: Scalars['Float'] - mean_exec_time: Scalars['Float'] - min_exec_time: Scalars['Float'] - query: Scalars['String'] - queryid: Scalars['String'] - shared_blks_hit: Scalars['Int'] - shared_blks_read: Scalars['Int'] - stddev_exec_time: (Scalars['Float'] | null) - temp_blks_written: Scalars['Int'] - total_exec_time: Scalars['Float'] - total_rows: Scalars['Int'] - __typename: 'QueryStat' -} - -export interface RecomputeEloStartedOutput { - running: Scalars['Boolean'] - success: Scalars['Boolean'] - __typename: 'RecomputeEloStartedOutput' -} - -export interface RecomputeEloStatusOutput { - canceled: Scalars['Boolean'] - completed: Scalars['Int'] - current_match_id: (Scalars['String'] | null) - failed: Scalars['Int'] - finished_at: (Scalars['String'] | null) - running: Scalars['Boolean'] - started_at: (Scalars['String'] | null) - total: Scalars['Int'] - __typename: 'RecomputeEloStatusOutput' -} - -export interface ReconcileNodePluginsOutput { - detected: Scalars['Int'] - __typename: 'ReconcileNodePluginsOutput' -} - -export interface ReindexStartedOutput { - running: Scalars['Boolean'] - success: Scalars['Boolean'] - __typename: 'ReindexStartedOutput' -} - -export interface ReindexStatusOutput { - canceled: Scalars['Boolean'] - completed: Scalars['Int'] - current_steam_id: (Scalars['String'] | null) - failed: Scalars['Int'] - finished_at: (Scalars['String'] | null) - running: Scalars['Boolean'] - started_at: (Scalars['String'] | null) - total: Scalars['Int'] - __typename: 'ReindexStatusOutput' -} - -export interface ReparseAllStartedOutput { - running: Scalars['Boolean'] - success: Scalars['Boolean'] - __typename: 'ReparseAllStartedOutput' -} - -export interface ReparseAllStatusOutput { - canceled: Scalars['Boolean'] - completed: Scalars['Int'] - current_demo_id: (Scalars['String'] | null) - failed: Scalars['Int'] - finished_at: (Scalars['String'] | null) - running: Scalars['Boolean'] - started_at: (Scalars['String'] | null) - total: Scalars['Int'] - __typename: 'ReparseAllStatusOutput' -} - -export interface SanctionResult { - enforced: Scalars['Boolean'] - id: (Scalars['String'] | null) - message: (Scalars['String'] | null) - __typename: 'SanctionResult' -} - -export interface ScanStartedOutput { - scanning: Scalars['Boolean'] - success: Scalars['Boolean'] - __typename: 'ScanStartedOutput' -} - -export interface SeasonBackfillStatusOutput { - canceled: Scalars['Boolean'] - completed: Scalars['Int'] - current_match_id: (Scalars['String'] | null) - failed: Scalars['Int'] - finished_at: (Scalars['String'] | null) - running: Scalars['Boolean'] - season_id: (Scalars['String'] | null) - started_at: (Scalars['String'] | null) - total: Scalars['Int'] - __typename: 'SeasonBackfillStatusOutput' -} - -export interface ServerPlayer { - name: Scalars['String'] - steam_id: Scalars['String'] - __typename: 'ServerPlayer' -} - -export interface SetupGameServeOutput { - gameServerId: Scalars['String'] - link: Scalars['String'] - __typename: 'SetupGameServeOutput' -} - -export interface SteamMatchHistoryLinkOutput { - error: (Scalars['String'] | null) - success: Scalars['Boolean'] - __typename: 'SteamMatchHistoryLinkOutput' -} - -export interface SteamMatchHistoryPollOutput { - collected: Scalars['Int'] - error: (Scalars['String'] | null) - success: Scalars['Boolean'] - __typename: 'SteamMatchHistoryPollOutput' -} - -export interface SteamPresenceAdminStatusOutput { - bots: SteamPresenceBot[] - enabled: Scalars['Boolean'] - pool: SteamPresencePool - __typename: 'SteamPresenceAdminStatusOutput' -} - -export interface SteamPresenceBot { - assigned: Scalars['Int'] - capacity: Scalars['Int'] - guardLastWrong: Scalars['Boolean'] - guardType: (Scalars['String'] | null) - id: Scalars['String'] - needs2fa: Scalars['Boolean'] - online: Scalars['Boolean'] - steamId: (Scalars['String'] | null) - steamLevel: (Scalars['Int'] | null) - username: Scalars['String'] - watching: Scalars['Int'] - __typename: 'SteamPresenceBot' -} - -export interface SteamPresenceBotAssignment { - addUrl: (Scalars['String'] | null) - enabled: Scalars['Boolean'] - status: (Scalars['String'] | null) - steamId: (Scalars['String'] | null) - __typename: 'SteamPresenceBotAssignment' -} - -export interface SteamPresencePool { - bots: Scalars['Int'] - capacity: Scalars['Int'] - online: Scalars['Int'] - pending: Scalars['Int'] - watching: Scalars['Int'] - __typename: 'SteamPresencePool' -} - -export interface StorageStats { - summary: StorageSummary - tables: TableSizeInfo[] - __typename: 'StorageStats' -} - -export interface StorageSummary { - estimated_reclaimable_space: Scalars['Float'] - total_database_size: Scalars['Float'] - total_indexes_size: Scalars['Float'] - total_table_size: Scalars['Float'] - __typename: 'StorageSummary' -} - -export interface SuccessOutput { - success: Scalars['Boolean'] - __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'] - heap_blks_read: Scalars['Int'] - idx_blks_hit: Scalars['Int'] - idx_blks_read: Scalars['Int'] - relname: Scalars['String'] - schemaname: Scalars['String'] - __typename: 'TableIOStat' -} - -export interface TableSizeInfo { - estimated_dead_tuple_bytes: Scalars['Float'] - indexes_size: Scalars['Float'] - n_dead_tup: Scalars['Int'] - n_live_tup: Scalars['Int'] - schemaname: Scalars['String'] - table_size: Scalars['Float'] - tablename: Scalars['String'] - total_size: Scalars['Float'] - __typename: 'TableSizeInfo' -} - -export interface TableStat { - idx_scan: (Scalars['Int'] | null) - idx_tup_fetch: (Scalars['Int'] | null) - last_analyze: (Scalars['timestamp'] | null) - last_autoanalyze: (Scalars['timestamp'] | null) - last_autovacuum: (Scalars['timestamp'] | null) - last_vacuum: (Scalars['timestamp'] | null) - n_dead_tup: Scalars['Int'] - n_live_tup: Scalars['Int'] - n_tup_del: Scalars['Int'] - n_tup_hot_upd: Scalars['Int'] - n_tup_ins: Scalars['Int'] - n_tup_upd: Scalars['Int'] - relname: Scalars['String'] - schemaname: Scalars['String'] - seq_scan: Scalars['Int'] - seq_tup_read: Scalars['Int'] - __typename: 'TableStat' -} - -export interface TeamCalendarOutput { - url: Scalars['String'] - __typename: 'TeamCalendarOutput' -} - -export interface TelemetryActivityPoint { - day: Scalars['String'] - installs: Scalars['Int'] - matches: Scalars['Int'] - __typename: 'TelemetryActivityPoint' -} - -export interface TelemetryCountryCount { - country: Scalars['String'] - installs: Scalars['Int'] - __typename: 'TelemetryCountryCount' -} - -export interface TelemetryFeatureAdoption { - counted: Scalars['Int'] - enabled: Scalars['Int'] - flagged: Scalars['Int'] - installsUsing: Scalars['Int'] - key: Scalars['String'] - kind: Scalars['String'] - reporting: Scalars['Int'] - total: Scalars['Int'] - __typename: 'TelemetryFeatureAdoption' -} - -export interface TelemetryFleetTotals { - appearancesReported: Scalars['Int'] - competitionReported: Scalars['Int'] - 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'] - gpuNodes: Scalars['Int'] - leagueRegistrations: Scalars['Int'] - leagueSeasons: Scalars['Int'] - leagueSeasonsFinished: Scalars['Int'] - leagueTeams: Scalars['Int'] - mapsPlayed: Scalars['Int'] - matches: Scalars['Int'] - matchesAbandoned: Scalars['Int'] - matchesCreated: Scalars['Int'] - matchesFinished: Scalars['Int'] - matchesImported: Scalars['Int'] - matchesImportedMonth: Scalars['Int'] - matchesImportedYear: Scalars['Int'] - matchesLeague: Scalars['Int'] - matchesLive: Scalars['Int'] - matchesMonth: Scalars['Int'] - matchesScrim: Scalars['Int'] - matchesTournament: Scalars['Int'] - matchesWeek: Scalars['Int'] - matchesYear: Scalars['Int'] - outcomesReported: Scalars['Int'] - panels: Scalars['Int'] - playerAppearances: Scalars['Int'] - playersActive30d: Scalars['Int'] - playersActive7d: Scalars['Int'] - 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'] - servers: Scalars['Int'] - serversEnabled: Scalars['Int'] - teams: Scalars['Int'] - tournamentTeams: Scalars['Int'] - tournaments: Scalars['Int'] - tournamentsFinished: Scalars['Int'] - __typename: 'TelemetryFleetTotals' -} - -export interface TelemetryGrowthPoint { - installs: Scalars['Int'] - month: Scalars['String'] - __typename: 'TelemetryGrowthPoint' -} - -export interface TelemetryInstallCounts { - active24h: Scalars['Int'] - active30d: Scalars['Int'] - active7d: Scalars['Int'] - new30d: Scalars['Int'] - retained180d: Scalars['Int'] - total: Scalars['Int'] - __typename: 'TelemetryInstallCounts' -} - -export interface TelemetryMatchSourceCount { - matches: Scalars['Int'] - source: Scalars['String'] - __typename: 'TelemetryMatchSourceCount' -} - -export interface TelemetryMatchTypeCount { - matches: Scalars['Int'] - type: Scalars['String'] - __typename: 'TelemetryMatchTypeCount' -} - -export interface TelemetryRuntimeCount { - installs: Scalars['Int'] - runtime: Scalars['String'] - __typename: 'TelemetryRuntimeCount' -} - -export interface TelemetryStats { - activity: TelemetryActivityPoint[] - countries: TelemetryCountryCount[] - features: TelemetryFeatureAdoption[] - growth: TelemetryGrowthPoint[] - installs: TelemetryInstallCounts - matchSources: TelemetryMatchSourceCount[] - matchTypes: TelemetryMatchTypeCount[] - online: Scalars['Int'] - runtimes: TelemetryRuntimeCount[] - totals: TelemetryFleetTotals - utility: TelemetryUtilityTotals - utilitySources: TelemetryUtilitySourceCount[] - utilityTypes: TelemetryUtilityTypeCount[] - versions: TelemetryVersionCount[] - __typename: 'TelemetryStats' -} - -export interface TelemetryUtilitySourceCount { - lineups: Scalars['Int'] - source: Scalars['String'] - __typename: 'TelemetryUtilitySourceCount' -} - -export interface TelemetryUtilityTotals { - archived: Scalars['Int'] - attempts: Scalars['Int'] - authors: Scalars['Int'] - collections: Scalars['Int'] - demoThrows: Scalars['Int'] - demosMined: Scalars['Int'] - driftFlagged: Scalars['Int'] - driftScans: Scalars['Int'] - favorites: Scalars['Int'] - hosts: Scalars['Int'] - lineups: Scalars['Int'] - maps: Scalars['Int'] - mastered: Scalars['Int'] - metaLineups: Scalars['Int'] - month: Scalars['Int'] - pendingReview: Scalars['Int'] - playbookSteps: Scalars['Int'] - playbooks: Scalars['Int'] - practicing: Scalars['Int'] - previews: Scalars['Int'] - private: Scalars['Int'] - public: Scalars['Int'] - repairs: Scalars['Int'] - reported: Scalars['Int'] - sessions: Scalars['Int'] - sessionsFailed: Scalars['Int'] - sessionsMonth: Scalars['Int'] - sessionsWeek: Scalars['Int'] - successes: Scalars['Int'] - team: Scalars['Int'] - verified: Scalars['Int'] - votes: Scalars['Int'] - week: Scalars['Int'] - __typename: 'TelemetryUtilityTotals' -} - -export interface TelemetryUtilityTypeCount { - lineups: Scalars['Int'] - type: Scalars['String'] - __typename: 'TelemetryUtilityTypeCount' -} - -export interface TelemetryVersionCount { - installs: Scalars['Int'] - rank: Scalars['Int'] - since: Scalars['String'] - version: Scalars['String'] - __typename: 'TelemetryVersionCount' -} - -export interface TestUploadResponse { - error: (Scalars['String'] | null) - __typename: 'TestUploadResponse' -} - -export interface TimescaleJob { - hypertable_name: (Scalars['String'] | null) - job_id: Scalars['Int'] - job_type: Scalars['String'] - last_run_status: (Scalars['String'] | null) - next_start: (Scalars['timestamp'] | null) - __typename: 'TimescaleJob' -} - -export interface TimescaleStats { - chunks_count: Scalars['Int'] - hypertables: (HypertableInfo | null)[] - jobs: (TimescaleJob | null)[] - __typename: 'TimescaleStats' -} - -export interface TournamentAward { - award_id: (Scalars['uuid'] | null) - custom_name: (Scalars['String'] | null) - id: Scalars['uuid'] - image_url: (Scalars['String'] | null) - placement: Scalars['Int'] - silhouette: (Scalars['Int'] | null) - tournament_id: Scalars['uuid'] - __typename: 'TournamentAward' -} - -export interface TournamentDraftOutput { - teams_created: Scalars['Int'] - __typename: 'TournamentDraftOutput' -} - -export interface TournamentInviteCodeOutput { - code: Scalars['String'] - id: Scalars['uuid'] - __typename: 'TournamentInviteCodeOutput' -} - -export interface TournamentMatchResetImpact { - bracket_id: Scalars['uuid'] - depth: Scalars['Int'] - is_source: Scalars['Boolean'] - match_id: (Scalars['uuid'] | null) - match_number: Scalars['Int'] - match_status: (Scalars['String'] | null) - path: (Scalars['String'] | null) - round: Scalars['Int'] - stage_type: Scalars['String'] - will_delete_match: Scalars['Boolean'] - __typename: 'TournamentMatchResetImpact' -} - -export interface UtilityBlockingOutput { - degraded: (Scalars['Boolean'] | null) - message: (Scalars['String'] | null) - results: UtilityBlockingResult[] - __typename: 'UtilityBlockingOutput' -} - -export interface UtilityBlockingResult { - blocked: Scalars['Boolean'] - depth: Scalars['Float'] - transmittance: Scalars['Float'] - utility_lineup_id: Scalars['uuid'] - __typename: 'UtilityBlockingResult' -} - -export interface UtilityCalibrationOutput { - detail: (Scalars['String'] | null) - ready: Scalars['Boolean'] - status: Scalars['String'] - __typename: 'UtilityCalibrationOutput' -} - -export interface UtilityDriftScanOutput { - lineups: Scalars['Int'] - scan_id: Scalars['uuid'] - __typename: 'UtilityDriftScanOutput' -} - -export interface UtilityDrillLoadOutput { - map_name: (Scalars['String'] | null) - queued: Scalars['Int'] - reason: Scalars['String'] - sent: Scalars['Boolean'] - __typename: 'UtilityDrillLoadOutput' -} - -export interface UtilityImportError { - external_id: (Scalars['String'] | null) - index: Scalars['Int'] - reason: Scalars['String'] - __typename: 'UtilityImportError' -} - -export interface UtilityImportOutput { - dry_run: Scalars['Boolean'] - errors: UtilityImportError[] - failed: Scalars['Int'] - imported: Scalars['Int'] - total: Scalars['Int'] - updated: Scalars['Int'] - __typename: 'UtilityImportOutput' -} - -export interface UtilityLaunchSeedBackfillOutput { - done: Scalars['Boolean'] - scanned: Scalars['Int'] - seeded: Scalars['Int'] - skipped: Scalars['Int'] - __typename: 'UtilityLaunchSeedBackfillOutput' -} - -export interface UtilityLineupOutput { - id: Scalars['uuid'] - __typename: 'UtilityLineupOutput' -} - -export interface UtilityLoadOutput { - map_name: (Scalars['String'] | null) - reason: Scalars['String'] - sent: Scalars['Boolean'] - __typename: 'UtilityLoadOutput' -} - -export interface UtilityMissPatternOutput { - analysed: Scalars['Boolean'] - bias: (Scalars['String'] | null) - mean_along: (Scalars['Float'] | null) - mean_lateral: (Scalars['Float'] | null) - mean_vertical: (Scalars['Float'] | null) - message: (Scalars['String'] | null) - players: Scalars['Int'] - samples: Scalars['Int'] - __typename: 'UtilityMissPatternOutput' -} - -export interface UtilityOneWayOutput { - degraded: (Scalars['Boolean'] | null) - message: (Scalars['String'] | null) - results: UtilityOneWayResult[] - __typename: 'UtilityOneWayOutput' -} - -export interface UtilityOneWayResult { - cause: (Scalars['String'] | null) - confidence: Scalars['String'] - contested: Scalars['Boolean'] - favors: (Scalars['String'] | null) - index: Scalars['Int'] - one_way: Scalars['Boolean'] - __typename: 'UtilityOneWayResult' -} - -export interface UtilityPlaybookCoverageOutput { - degraded: (Scalars['Boolean'] | null) - message: (Scalars['String'] | null) - results: UtilityPlaybookCoverageResult[] - __typename: 'UtilityPlaybookCoverageOutput' -} - -export interface UtilityPlaybookCoverageResult { - by_step: (Scalars['Int'] | null) - covered: Scalars['Boolean'] - depth: (Scalars['Float'] | null) - index: Scalars['Int'] - transmittance: (Scalars['Float'] | null) - __typename: 'UtilityPlaybookCoverageResult' -} - -export interface UtilityPlaybookOutput { - id: Scalars['uuid'] - __typename: 'UtilityPlaybookOutput' -} - -export interface UtilityPracticeMapChangeOutput { - map_name: Scalars['String'] - queued: Scalars['Boolean'] - success: Scalars['Boolean'] - __typename: 'UtilityPracticeMapChangeOutput' -} - -export interface UtilityPracticePlanEntry { - attempts: Scalars['Int'] - difficulty: Scalars['String'] - global_attempts: Scalars['Int'] - global_landing_rate: (Scalars['Float'] | null) - global_players: Scalars['Int'] - mastered: Scalars['Boolean'] - meta_throwers: Scalars['Int'] - priority: Scalars['Float'] - reason: Scalars['String'] - successes: Scalars['Int'] - utility_lineup_id: Scalars['uuid'] - __typename: 'UtilityPracticePlanEntry' -} - -export interface UtilityPracticePlanOutput { - analysed: Scalars['Boolean'] - entries: UtilityPracticePlanEntry[] - message: (Scalars['String'] | null) - __typename: 'UtilityPracticePlanOutput' -} - -export interface UtilityPracticeServer { - held_by: (Scalars['String'] | null) - id: Scalars['uuid'] - in_use: Scalars['Boolean'] - label: Scalars['String'] - region: Scalars['String'] - __typename: 'UtilityPracticeServer' -} - -export interface UtilityPracticeServersOutput { - servers: UtilityPracticeServer[] - __typename: 'UtilityPracticeServersOutput' -} - -export interface UtilityPracticeSessionOutput { - id: Scalars['uuid'] - invite_code: (Scalars['String'] | null) - match_id: (Scalars['uuid'] | null) - status: (Scalars['String'] | null) - __typename: 'UtilityPracticeSessionOutput' -} - -export interface UtilityPracticeWhereOutput { - map_name: (Scalars['String'] | null) - on_server: Scalars['Boolean'] - session_id: (Scalars['uuid'] | null) - switching: Scalars['Boolean'] - __typename: 'UtilityPracticeWhereOutput' -} - -export interface UtilityPurgeOutput { - dry_run: Scalars['Boolean'] - lineups: Scalars['Int'] - origin_source: Scalars['String'] - __typename: 'UtilityPurgeOutput' -} - -export interface UtilityRemineOutput { - demos: Scalars['Int'] - done: Scalars['Boolean'] - throws: Scalars['Int'] - __typename: 'UtilityRemineOutput' -} - -export interface UtilityRenderClearOutput { - cleared: Scalars['Int'] - __typename: 'UtilityRenderClearOutput' -} - -export interface UtilityRenderQueueOutput { - reason: (Scalars['String'] | null) - render_id: (Scalars['uuid'] | null) - status: Scalars['String'] - success: Scalars['Boolean'] - __typename: 'UtilityRenderQueueOutput' -} - -export interface UtilitySightlineOutput { - degraded: (Scalars['Boolean'] | null) - message: (Scalars['String'] | null) - results: UtilitySightlineResult[] - threshold: Scalars['Float'] - __typename: 'UtilitySightlineOutput' -} - -export interface UtilitySightlineResult { - blocked: Scalars['Boolean'] - blocked_by: (Scalars['String'] | null) - depth: Scalars['Float'] - index: Scalars['Int'] - transmittance: Scalars['Float'] - world_blocked: Scalars['Boolean'] - __typename: 'UtilitySightlineResult' -} - -export interface UtilitySolveOutput { - accepted: Scalars['Boolean'] - message: (Scalars['String'] | null) - status: Scalars['String'] - __typename: 'UtilitySolveOutput' -} - -export interface UtilityTeamUtilityEntry { - landed: Scalars['Int'] - players: Scalars['Int'] - thrown: Scalars['Int'] - utility_lineup_id: Scalars['uuid'] - __typename: 'UtilityTeamUtilityEntry' -} - -export interface UtilityTeamUtilityOutput { - analysed: Scalars['Boolean'] - entries: UtilityTeamUtilityEntry[] - message: (Scalars['String'] | null) - __typename: 'UtilityTeamUtilityOutput' -} - -export interface UtilityUtilityReportOutput { - analysed: Scalars['Boolean'] - by_type: UtilityUtilityTypeReport[] - landed: Scalars['Int'] - matched_lineups: Scalars['Int'] - matched_meta: Scalars['Int'] - message: (Scalars['String'] | null) - radius: Scalars['Float'] - steam_id: Scalars['String'] - throws: Scalars['Int'] - __typename: 'UtilityUtilityReportOutput' -} - -export interface UtilityUtilityTypeReport { - landed: Scalars['Int'] - matched_lineups: Scalars['Int'] - matched_meta: Scalars['Int'] - throws: Scalars['Int'] - utility_type: Scalars['String'] - __typename: 'UtilityUtilityTypeReport' -} - -export interface WatchDemoOutput { - match_map_id: (Scalars['String'] | null) - session_id: Scalars['String'] - stream_url: Scalars['String'] - success: Scalars['Boolean'] - __typename: 'WatchDemoOutput' -} - -export interface WebPushPlatformCount { - devices: Scalars['Int'] - platform: Scalars['String'] - __typename: 'WebPushPlatformCount' -} - -export interface WebPushStatusOutput { - active_7d: Scalars['Int'] - configured: Scalars['Boolean'] - last_delivered_at: (Scalars['timestamptz'] | null) - managed_by_environment: Scalars['Boolean'] - never_delivered: Scalars['Int'] - new_7d: Scalars['Int'] - platforms: WebPushPlatformCount[] - players: Scalars['Int'] - subscriptions: Scalars['Int'] - __typename: 'WebPushStatusOutput' -} - - -/** columns and relationships of "_map_pool" */ -export interface _map_pool { - map_id: Scalars['uuid'] - map_pool_id: Scalars['uuid'] - __typename: '_map_pool' -} - - -/** aggregated selection of "_map_pool" */ -export interface _map_pool_aggregate { - aggregate: (_map_pool_aggregate_fields | null) - nodes: _map_pool[] - __typename: '_map_pool_aggregate' -} - - -/** aggregate fields of "_map_pool" */ -export interface _map_pool_aggregate_fields { - count: Scalars['Int'] - max: (_map_pool_max_fields | null) - min: (_map_pool_min_fields | null) - __typename: '_map_pool_aggregate_fields' -} - - -/** unique or primary key constraints on table "_map_pool" */ -export type _map_pool_constraint = 'map_pool_pkey' - - -/** aggregate max on columns */ -export interface _map_pool_max_fields { - map_id: (Scalars['uuid'] | null) - map_pool_id: (Scalars['uuid'] | null) - __typename: '_map_pool_max_fields' -} - - -/** aggregate min on columns */ -export interface _map_pool_min_fields { - map_id: (Scalars['uuid'] | null) - map_pool_id: (Scalars['uuid'] | null) - __typename: '_map_pool_min_fields' -} - - -/** response of any mutation on the table "_map_pool" */ -export interface _map_pool_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: _map_pool[] - __typename: '_map_pool_mutation_response' -} - - -/** select columns of table "_map_pool" */ -export type _map_pool_select_column = 'map_id' | 'map_pool_id' - - -/** update columns of table "_map_pool" */ -export type _map_pool_update_column = 'map_id' | 'map_pool_id' - - -/** columns and relationships of "abandoned_matches" */ -export interface abandoned_matches { - abandoned_at: Scalars['timestamptz'] - id: Scalars['uuid'] - /** An object relationship */ - match: (matches | null) - match_id: (Scalars['uuid'] | null) - steam_id: Scalars['bigint'] - __typename: 'abandoned_matches' -} - - -/** aggregated selection of "abandoned_matches" */ -export interface abandoned_matches_aggregate { - aggregate: (abandoned_matches_aggregate_fields | null) - nodes: abandoned_matches[] - __typename: 'abandoned_matches_aggregate' -} - - -/** aggregate fields of "abandoned_matches" */ -export interface abandoned_matches_aggregate_fields { - avg: (abandoned_matches_avg_fields | null) - count: Scalars['Int'] - max: (abandoned_matches_max_fields | null) - min: (abandoned_matches_min_fields | null) - stddev: (abandoned_matches_stddev_fields | null) - stddev_pop: (abandoned_matches_stddev_pop_fields | null) - stddev_samp: (abandoned_matches_stddev_samp_fields | null) - sum: (abandoned_matches_sum_fields | null) - var_pop: (abandoned_matches_var_pop_fields | null) - var_samp: (abandoned_matches_var_samp_fields | null) - variance: (abandoned_matches_variance_fields | null) - __typename: 'abandoned_matches_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface abandoned_matches_avg_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'abandoned_matches_avg_fields' -} - - -/** unique or primary key constraints on table "abandoned_matches" */ -export type abandoned_matches_constraint = 'abandoned_matches_pkey' | 'abandoned_matches_steam_id_match_id_key' - - -/** aggregate max on columns */ -export interface abandoned_matches_max_fields { - abandoned_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - match_id: (Scalars['uuid'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'abandoned_matches_max_fields' -} - - -/** aggregate min on columns */ -export interface abandoned_matches_min_fields { - abandoned_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - match_id: (Scalars['uuid'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'abandoned_matches_min_fields' -} - - -/** response of any mutation on the table "abandoned_matches" */ -export interface abandoned_matches_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: abandoned_matches[] - __typename: 'abandoned_matches_mutation_response' -} - - -/** select columns of table "abandoned_matches" */ -export type abandoned_matches_select_column = 'abandoned_at' | 'id' | 'match_id' | 'steam_id' - - -/** aggregate stddev on columns */ -export interface abandoned_matches_stddev_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'abandoned_matches_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface abandoned_matches_stddev_pop_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'abandoned_matches_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface abandoned_matches_stddev_samp_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'abandoned_matches_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface abandoned_matches_sum_fields { - steam_id: (Scalars['bigint'] | null) - __typename: 'abandoned_matches_sum_fields' -} - - -/** update columns of table "abandoned_matches" */ -export type abandoned_matches_update_column = 'abandoned_at' | 'id' | 'match_id' | 'steam_id' - - -/** aggregate var_pop on columns */ -export interface abandoned_matches_var_pop_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'abandoned_matches_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface abandoned_matches_var_samp_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'abandoned_matches_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface abandoned_matches_variance_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'abandoned_matches_variance_fields' -} - - -/** columns and relationships of "api_keys" */ -export interface api_keys { - created_at: Scalars['timestamptz'] - id: Scalars['uuid'] - label: Scalars['String'] - last_used_at: (Scalars['timestamptz'] | null) - steam_id: Scalars['bigint'] - __typename: 'api_keys' -} - - -/** aggregated selection of "api_keys" */ -export interface api_keys_aggregate { - aggregate: (api_keys_aggregate_fields | null) - nodes: api_keys[] - __typename: 'api_keys_aggregate' -} - - -/** aggregate fields of "api_keys" */ -export interface api_keys_aggregate_fields { - avg: (api_keys_avg_fields | null) - count: Scalars['Int'] - max: (api_keys_max_fields | null) - min: (api_keys_min_fields | null) - stddev: (api_keys_stddev_fields | null) - stddev_pop: (api_keys_stddev_pop_fields | null) - stddev_samp: (api_keys_stddev_samp_fields | null) - sum: (api_keys_sum_fields | null) - var_pop: (api_keys_var_pop_fields | null) - var_samp: (api_keys_var_samp_fields | null) - variance: (api_keys_variance_fields | null) - __typename: 'api_keys_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface api_keys_avg_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'api_keys_avg_fields' -} - - -/** unique or primary key constraints on table "api_keys" */ -export type api_keys_constraint = 'api_keys_pkey' - - -/** aggregate max on columns */ -export interface api_keys_max_fields { - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - label: (Scalars['String'] | null) - last_used_at: (Scalars['timestamptz'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'api_keys_max_fields' -} - - -/** aggregate min on columns */ -export interface api_keys_min_fields { - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - label: (Scalars['String'] | null) - last_used_at: (Scalars['timestamptz'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'api_keys_min_fields' -} - - -/** response of any mutation on the table "api_keys" */ -export interface api_keys_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: api_keys[] - __typename: 'api_keys_mutation_response' -} - - -/** select columns of table "api_keys" */ -export type api_keys_select_column = 'created_at' | 'id' | 'label' | 'last_used_at' | 'steam_id' - - -/** aggregate stddev on columns */ -export interface api_keys_stddev_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'api_keys_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface api_keys_stddev_pop_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'api_keys_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface api_keys_stddev_samp_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'api_keys_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface api_keys_sum_fields { - steam_id: (Scalars['bigint'] | null) - __typename: 'api_keys_sum_fields' -} - - -/** update columns of table "api_keys" */ -export type api_keys_update_column = 'created_at' | 'id' | 'label' | 'last_used_at' | 'steam_id' - - -/** aggregate var_pop on columns */ -export interface api_keys_var_pop_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'api_keys_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface api_keys_var_samp_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'api_keys_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface api_keys_variance_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'api_keys_variance_fields' -} - - -/** columns and relationships of "award_recipients" */ -export interface award_recipients { - /** An object relationship */ - award: awards - award_id: Scalars['uuid'] - /** An object relationship */ - awarded_by: (players | null) - awarded_by_steam_id: (Scalars['bigint'] | null) - created_at: Scalars['timestamptz'] - /** An object relationship */ - event: (events | null) - event_id: (Scalars['uuid'] | null) - id: Scalars['uuid'] - /** An object relationship */ - league_season: (league_seasons | null) - league_season_id: (Scalars['uuid'] | null) - note: (Scalars['String'] | null) - placement: (Scalars['Int'] | null) - placement_tier: (Scalars['String'] | null) - /** An object relationship */ - player: (players | null) - player_steam_id: (Scalars['bigint'] | null) - /** An object relationship */ - season: (seasons | null) - season_id: (Scalars['uuid'] | null) - source: e_award_sources_enum - /** An object relationship */ - team: (teams | null) - team_id: (Scalars['uuid'] | null) - /** An object relationship */ - tournament: (tournaments | null) - /** An object relationship */ - tournament_award: (tournament_awards | null) - tournament_id: (Scalars['uuid'] | null) - /** An object relationship */ - tournament_team: (tournament_teams | null) - tournament_team_id: (Scalars['uuid'] | null) - __typename: 'award_recipients' -} - - -/** aggregated selection of "award_recipients" */ -export interface award_recipients_aggregate { - aggregate: (award_recipients_aggregate_fields | null) - nodes: award_recipients[] - __typename: 'award_recipients_aggregate' -} - - -/** aggregate fields of "award_recipients" */ -export interface award_recipients_aggregate_fields { - avg: (award_recipients_avg_fields | null) - count: Scalars['Int'] - max: (award_recipients_max_fields | null) - min: (award_recipients_min_fields | null) - stddev: (award_recipients_stddev_fields | null) - stddev_pop: (award_recipients_stddev_pop_fields | null) - stddev_samp: (award_recipients_stddev_samp_fields | null) - sum: (award_recipients_sum_fields | null) - var_pop: (award_recipients_var_pop_fields | null) - var_samp: (award_recipients_var_samp_fields | null) - variance: (award_recipients_variance_fields | null) - __typename: 'award_recipients_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface award_recipients_avg_fields { - awarded_by_steam_id: (Scalars['Float'] | null) - placement: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'award_recipients_avg_fields' -} - - -/** unique or primary key constraints on table "award_recipients" */ -export type award_recipients_constraint = 'award_recipients_one_mvp_per_tournament' | 'award_recipients_pkey' | 'award_recipients_player_recipient_key' | 'award_recipients_season_player_key' | 'award_recipients_team_recipient_key' - - -/** aggregate max on columns */ -export interface award_recipients_max_fields { - 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) - team_id: (Scalars['uuid'] | null) - tournament_id: (Scalars['uuid'] | null) - tournament_team_id: (Scalars['uuid'] | null) - __typename: 'award_recipients_max_fields' -} - - -/** aggregate min on columns */ -export interface award_recipients_min_fields { - 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) - team_id: (Scalars['uuid'] | null) - tournament_id: (Scalars['uuid'] | null) - tournament_team_id: (Scalars['uuid'] | null) - __typename: 'award_recipients_min_fields' -} - - -/** response of any mutation on the table "award_recipients" */ -export interface award_recipients_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: award_recipients[] - __typename: 'award_recipients_mutation_response' -} - - -/** select columns of table "award_recipients" */ -export type award_recipients_select_column = 'award_id' | 'awarded_by_steam_id' | 'created_at' | 'event_id' | 'id' | 'league_season_id' | 'note' | 'placement' | 'placement_tier' | 'player_steam_id' | 'season_id' | 'source' | 'team_id' | 'tournament_id' | 'tournament_team_id' - - -/** aggregate stddev on columns */ -export interface award_recipients_stddev_fields { - awarded_by_steam_id: (Scalars['Float'] | null) - placement: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'award_recipients_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface award_recipients_stddev_pop_fields { - awarded_by_steam_id: (Scalars['Float'] | null) - placement: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'award_recipients_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface award_recipients_stddev_samp_fields { - awarded_by_steam_id: (Scalars['Float'] | null) - placement: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'award_recipients_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface award_recipients_sum_fields { - awarded_by_steam_id: (Scalars['bigint'] | null) - placement: (Scalars['Int'] | null) - player_steam_id: (Scalars['bigint'] | null) - __typename: 'award_recipients_sum_fields' -} - - -/** update columns of table "award_recipients" */ -export type award_recipients_update_column = 'award_id' | 'awarded_by_steam_id' | 'created_at' | 'event_id' | 'id' | 'league_season_id' | 'note' | 'placement' | 'player_steam_id' | 'season_id' | 'source' | 'team_id' | 'tournament_id' | 'tournament_team_id' - - -/** aggregate var_pop on columns */ -export interface award_recipients_var_pop_fields { - awarded_by_steam_id: (Scalars['Float'] | null) - placement: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'award_recipients_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface award_recipients_var_samp_fields { - awarded_by_steam_id: (Scalars['Float'] | null) - placement: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'award_recipients_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface award_recipients_variance_fields { - awarded_by_steam_id: (Scalars['Float'] | null) - placement: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'award_recipients_variance_fields' -} - - -/** columns and relationships of "awards" */ -export interface awards { - allow_multiple: Scalars['Boolean'] - created_at: Scalars['timestamptz'] - /** An object relationship */ - created_by: (players | null) - created_by_steam_id: (Scalars['bigint'] | null) - description: (Scalars['String'] | null) - /** An object relationship */ - event: (events | null) - event_id: (Scalars['uuid'] | null) - id: Scalars['uuid'] - image_url: (Scalars['String'] | null) - /** An object relationship */ - league_season: (league_seasons | null) - league_season_id: (Scalars['uuid'] | null) - name: Scalars['String'] - /** An array relationship */ - recipients: award_recipients[] - /** An aggregate relationship */ - recipients_aggregate: award_recipients_aggregate - /** An object relationship */ - season: (seasons | null) - season_id: (Scalars['uuid'] | null) - silhouette: (Scalars['Int'] | null) - system_key: (Scalars['String'] | null) - tier: e_award_tiers_enum - /** An object relationship */ - tournament: (tournaments | null) - /** An array relationship */ - tournament_configs: tournament_awards[] - /** An aggregate relationship */ - tournament_configs_aggregate: tournament_awards_aggregate - tournament_id: (Scalars['uuid'] | null) - updated_at: Scalars['timestamptz'] - __typename: 'awards' -} - - -/** aggregated selection of "awards" */ -export interface awards_aggregate { - aggregate: (awards_aggregate_fields | null) - nodes: awards[] - __typename: 'awards_aggregate' -} - - -/** aggregate fields of "awards" */ -export interface awards_aggregate_fields { - avg: (awards_avg_fields | null) - count: Scalars['Int'] - max: (awards_max_fields | null) - min: (awards_min_fields | null) - stddev: (awards_stddev_fields | null) - stddev_pop: (awards_stddev_pop_fields | null) - stddev_samp: (awards_stddev_samp_fields | null) - sum: (awards_sum_fields | null) - var_pop: (awards_var_pop_fields | null) - var_samp: (awards_var_samp_fields | null) - variance: (awards_variance_fields | null) - __typename: 'awards_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface awards_avg_fields { - created_by_steam_id: (Scalars['Float'] | null) - silhouette: (Scalars['Float'] | null) - __typename: 'awards_avg_fields' -} - - -/** unique or primary key constraints on table "awards" */ -export type awards_constraint = 'awards_pkey' | 'awards_system_key_key' - - -/** aggregate max on columns */ -export interface awards_max_fields { - 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) - tournament_id: (Scalars['uuid'] | null) - updated_at: (Scalars['timestamptz'] | null) - __typename: 'awards_max_fields' -} - - -/** aggregate min on columns */ -export interface awards_min_fields { - 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) - tournament_id: (Scalars['uuid'] | null) - updated_at: (Scalars['timestamptz'] | null) - __typename: 'awards_min_fields' -} - - -/** response of any mutation on the table "awards" */ -export interface awards_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: awards[] - __typename: 'awards_mutation_response' -} - - -/** select columns of table "awards" */ -export type awards_select_column = 'allow_multiple' | 'created_at' | 'created_by_steam_id' | 'description' | 'event_id' | 'id' | 'image_url' | 'league_season_id' | 'name' | 'season_id' | 'silhouette' | 'system_key' | 'tier' | 'tournament_id' | 'updated_at' - - -/** aggregate stddev on columns */ -export interface awards_stddev_fields { - created_by_steam_id: (Scalars['Float'] | null) - silhouette: (Scalars['Float'] | null) - __typename: 'awards_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface awards_stddev_pop_fields { - created_by_steam_id: (Scalars['Float'] | null) - silhouette: (Scalars['Float'] | null) - __typename: 'awards_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface awards_stddev_samp_fields { - created_by_steam_id: (Scalars['Float'] | null) - silhouette: (Scalars['Float'] | null) - __typename: 'awards_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface awards_sum_fields { - created_by_steam_id: (Scalars['bigint'] | null) - silhouette: (Scalars['Int'] | null) - __typename: 'awards_sum_fields' -} - - -/** update columns of table "awards" */ -export type awards_update_column = 'allow_multiple' | 'created_at' | 'created_by_steam_id' | 'description' | 'event_id' | 'id' | 'image_url' | 'league_season_id' | 'name' | 'season_id' | 'silhouette' | 'system_key' | 'tier' | 'tournament_id' | 'updated_at' - - -/** aggregate var_pop on columns */ -export interface awards_var_pop_fields { - created_by_steam_id: (Scalars['Float'] | null) - silhouette: (Scalars['Float'] | null) - __typename: 'awards_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface awards_var_samp_fields { - created_by_steam_id: (Scalars['Float'] | null) - silhouette: (Scalars['Float'] | null) - __typename: 'awards_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface awards_variance_fields { - created_by_steam_id: (Scalars['Float'] | null) - silhouette: (Scalars['Float'] | null) - __typename: 'awards_variance_fields' -} - - -/** columns and relationships of "chat_read_state" */ -export interface chat_read_state { - last_read_at: Scalars['timestamptz'] - steam_id: Scalars['bigint'] - thread: Scalars['String'] - __typename: 'chat_read_state' -} - - -/** aggregated selection of "chat_read_state" */ -export interface chat_read_state_aggregate { - aggregate: (chat_read_state_aggregate_fields | null) - nodes: chat_read_state[] - __typename: 'chat_read_state_aggregate' -} - - -/** aggregate fields of "chat_read_state" */ -export interface chat_read_state_aggregate_fields { - avg: (chat_read_state_avg_fields | null) - count: Scalars['Int'] - max: (chat_read_state_max_fields | null) - min: (chat_read_state_min_fields | null) - stddev: (chat_read_state_stddev_fields | null) - stddev_pop: (chat_read_state_stddev_pop_fields | null) - stddev_samp: (chat_read_state_stddev_samp_fields | null) - sum: (chat_read_state_sum_fields | null) - var_pop: (chat_read_state_var_pop_fields | null) - var_samp: (chat_read_state_var_samp_fields | null) - variance: (chat_read_state_variance_fields | null) - __typename: 'chat_read_state_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface chat_read_state_avg_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'chat_read_state_avg_fields' -} - - -/** unique or primary key constraints on table "chat_read_state" */ -export type chat_read_state_constraint = 'chat_read_state_pkey' - - -/** aggregate max on columns */ -export interface chat_read_state_max_fields { - last_read_at: (Scalars['timestamptz'] | null) - steam_id: (Scalars['bigint'] | null) - thread: (Scalars['String'] | null) - __typename: 'chat_read_state_max_fields' -} - - -/** aggregate min on columns */ -export interface chat_read_state_min_fields { - last_read_at: (Scalars['timestamptz'] | null) - steam_id: (Scalars['bigint'] | null) - thread: (Scalars['String'] | null) - __typename: 'chat_read_state_min_fields' -} - - -/** response of any mutation on the table "chat_read_state" */ -export interface chat_read_state_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: chat_read_state[] - __typename: 'chat_read_state_mutation_response' -} - - -/** select columns of table "chat_read_state" */ -export type chat_read_state_select_column = 'last_read_at' | 'steam_id' | 'thread' - - -/** aggregate stddev on columns */ -export interface chat_read_state_stddev_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'chat_read_state_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface chat_read_state_stddev_pop_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'chat_read_state_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface chat_read_state_stddev_samp_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'chat_read_state_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface chat_read_state_sum_fields { - steam_id: (Scalars['bigint'] | null) - __typename: 'chat_read_state_sum_fields' -} - - -/** update columns of table "chat_read_state" */ -export type chat_read_state_update_column = 'last_read_at' | 'steam_id' | 'thread' - - -/** aggregate var_pop on columns */ -export interface chat_read_state_var_pop_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'chat_read_state_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface chat_read_state_var_samp_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'chat_read_state_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface chat_read_state_variance_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'chat_read_state_variance_fields' -} - - -/** columns and relationships of "clip_render_jobs" */ -export interface clip_render_jobs { - /** An object relationship */ - clip: (match_clips | null) - clip_id: (Scalars['uuid'] | null) - 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_status_at: Scalars['timestamptz'] - /** 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'] - paused: Scalars['Boolean'] - progress: (Scalars['numeric'] | null) - session_token: Scalars['String'] - sort_index: Scalars['Int'] - spec: Scalars['jsonb'] - status: Scalars['String'] - status_history: Scalars['jsonb'] - /** An object relationship */ - user: (players | null) - user_steam_id: (Scalars['bigint'] | null) - __typename: 'clip_render_jobs' -} - - -/** aggregated selection of "clip_render_jobs" */ -export interface clip_render_jobs_aggregate { - aggregate: (clip_render_jobs_aggregate_fields | null) - nodes: clip_render_jobs[] - __typename: 'clip_render_jobs_aggregate' -} - - -/** aggregate fields of "clip_render_jobs" */ -export interface clip_render_jobs_aggregate_fields { - avg: (clip_render_jobs_avg_fields | null) - count: Scalars['Int'] - max: (clip_render_jobs_max_fields | null) - min: (clip_render_jobs_min_fields | null) - stddev: (clip_render_jobs_stddev_fields | null) - stddev_pop: (clip_render_jobs_stddev_pop_fields | null) - stddev_samp: (clip_render_jobs_stddev_samp_fields | null) - sum: (clip_render_jobs_sum_fields | null) - var_pop: (clip_render_jobs_var_pop_fields | null) - var_samp: (clip_render_jobs_var_samp_fields | null) - variance: (clip_render_jobs_variance_fields | null) - __typename: 'clip_render_jobs_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface clip_render_jobs_avg_fields { - progress: (Scalars['Float'] | null) - sort_index: (Scalars['Float'] | null) - user_steam_id: (Scalars['Float'] | null) - __typename: 'clip_render_jobs_avg_fields' -} - - -/** unique or primary key constraints on table "clip_render_jobs" */ -export type clip_render_jobs_constraint = 'clip_render_jobs_pkey' - - -/** aggregate max on columns */ -export interface clip_render_jobs_max_fields { - 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) - progress: (Scalars['numeric'] | null) - session_token: (Scalars['String'] | null) - sort_index: (Scalars['Int'] | null) - status: (Scalars['String'] | null) - user_steam_id: (Scalars['bigint'] | null) - __typename: 'clip_render_jobs_max_fields' -} - - -/** aggregate min on columns */ -export interface clip_render_jobs_min_fields { - 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) - progress: (Scalars['numeric'] | null) - session_token: (Scalars['String'] | null) - sort_index: (Scalars['Int'] | null) - status: (Scalars['String'] | null) - user_steam_id: (Scalars['bigint'] | null) - __typename: 'clip_render_jobs_min_fields' -} - - -/** response of any mutation on the table "clip_render_jobs" */ -export interface clip_render_jobs_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: clip_render_jobs[] - __typename: 'clip_render_jobs_mutation_response' -} - - -/** select columns of table "clip_render_jobs" */ -export type clip_render_jobs_select_column = 'clip_id' | 'created_at' | 'error_message' | 'game_server_node_id' | 'id' | 'k8s_job_name' | 'last_status_at' | 'match_map_demo_id' | 'match_map_id' | 'paused' | 'progress' | 'session_token' | 'sort_index' | 'spec' | 'status' | 'status_history' | 'user_steam_id' - - -/** select "clip_render_jobs_aggregate_bool_exp_bool_and_arguments_columns" columns of table "clip_render_jobs" */ -export type clip_render_jobs_select_column_clip_render_jobs_aggregate_bool_exp_bool_and_arguments_columns = 'paused' - - -/** select "clip_render_jobs_aggregate_bool_exp_bool_or_arguments_columns" columns of table "clip_render_jobs" */ -export type clip_render_jobs_select_column_clip_render_jobs_aggregate_bool_exp_bool_or_arguments_columns = 'paused' - - -/** aggregate stddev on columns */ -export interface clip_render_jobs_stddev_fields { - progress: (Scalars['Float'] | null) - sort_index: (Scalars['Float'] | null) - user_steam_id: (Scalars['Float'] | null) - __typename: 'clip_render_jobs_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface clip_render_jobs_stddev_pop_fields { - progress: (Scalars['Float'] | null) - sort_index: (Scalars['Float'] | null) - user_steam_id: (Scalars['Float'] | null) - __typename: 'clip_render_jobs_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface clip_render_jobs_stddev_samp_fields { - progress: (Scalars['Float'] | null) - sort_index: (Scalars['Float'] | null) - user_steam_id: (Scalars['Float'] | null) - __typename: 'clip_render_jobs_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface clip_render_jobs_sum_fields { - progress: (Scalars['numeric'] | null) - sort_index: (Scalars['Int'] | null) - user_steam_id: (Scalars['bigint'] | null) - __typename: 'clip_render_jobs_sum_fields' -} - - -/** update columns of table "clip_render_jobs" */ -export type clip_render_jobs_update_column = 'clip_id' | 'created_at' | 'error_message' | 'game_server_node_id' | 'id' | 'k8s_job_name' | 'last_status_at' | 'match_map_demo_id' | 'match_map_id' | 'paused' | 'progress' | 'session_token' | 'sort_index' | 'spec' | 'status' | 'status_history' | 'user_steam_id' - - -/** aggregate var_pop on columns */ -export interface clip_render_jobs_var_pop_fields { - progress: (Scalars['Float'] | null) - sort_index: (Scalars['Float'] | null) - user_steam_id: (Scalars['Float'] | null) - __typename: 'clip_render_jobs_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface clip_render_jobs_var_samp_fields { - progress: (Scalars['Float'] | null) - sort_index: (Scalars['Float'] | null) - user_steam_id: (Scalars['Float'] | null) - __typename: 'clip_render_jobs_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface clip_render_jobs_variance_fields { - progress: (Scalars['Float'] | null) - sort_index: (Scalars['Float'] | null) - user_steam_id: (Scalars['Float'] | null) - __typename: 'clip_render_jobs_variance_fields' -} - - -/** ordering argument of a cursor */ -export type cursor_ordering = 'ASC' | 'DESC' - - -/** columns and relationships of "custom_pages" */ -export interface custom_pages { - created_at: Scalars['timestamptz'] - deployments: Scalars['jsonb'] - enabled: Scalars['Boolean'] - exposed_module: Scalars['String'] - icon: (Scalars['String'] | null) - id: Scalars['uuid'] - is_default: Scalars['Boolean'] - 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'] - required_role: (e_player_roles_enum | null) - slug: Scalars['String'] - title: Scalars['String'] - updated_at: Scalars['timestamptz'] - __typename: 'custom_pages' -} - - -/** aggregated selection of "custom_pages" */ -export interface custom_pages_aggregate { - aggregate: (custom_pages_aggregate_fields | null) - nodes: custom_pages[] - __typename: 'custom_pages_aggregate' -} - - -/** aggregate fields of "custom_pages" */ -export interface custom_pages_aggregate_fields { - avg: (custom_pages_avg_fields | null) - count: Scalars['Int'] - max: (custom_pages_max_fields | null) - min: (custom_pages_min_fields | null) - stddev: (custom_pages_stddev_fields | null) - stddev_pop: (custom_pages_stddev_pop_fields | null) - stddev_samp: (custom_pages_stddev_samp_fields | null) - sum: (custom_pages_sum_fields | null) - var_pop: (custom_pages_var_pop_fields | null) - var_samp: (custom_pages_var_samp_fields | null) - variance: (custom_pages_variance_fields | null) - __typename: 'custom_pages_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface custom_pages_avg_fields { - nav_order: (Scalars['Float'] | null) - __typename: 'custom_pages_avg_fields' -} - - -/** unique or primary key constraints on table "custom_pages" */ -export type custom_pages_constraint = 'custom_pages_pkey' | 'custom_pages_plugin_slug_idx' | 'custom_pages_single_default_idx' | 'custom_pages_slug_key' - - -/** aggregate max on columns */ -export interface custom_pages_max_fields { - created_at: (Scalars['timestamptz'] | null) - exposed_module: (Scalars['String'] | null) - icon: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - 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) - slug: (Scalars['String'] | null) - title: (Scalars['String'] | null) - updated_at: (Scalars['timestamptz'] | null) - __typename: 'custom_pages_max_fields' -} - - -/** aggregate min on columns */ -export interface custom_pages_min_fields { - created_at: (Scalars['timestamptz'] | null) - exposed_module: (Scalars['String'] | null) - icon: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - 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) - slug: (Scalars['String'] | null) - title: (Scalars['String'] | null) - updated_at: (Scalars['timestamptz'] | null) - __typename: 'custom_pages_min_fields' -} - - -/** response of any mutation on the table "custom_pages" */ -export interface custom_pages_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: custom_pages[] - __typename: 'custom_pages_mutation_response' -} - - -/** select columns of table "custom_pages" */ -export type custom_pages_select_column = 'created_at' | '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 */ -export interface custom_pages_stddev_fields { - nav_order: (Scalars['Float'] | null) - __typename: 'custom_pages_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface custom_pages_stddev_pop_fields { - nav_order: (Scalars['Float'] | null) - __typename: 'custom_pages_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface custom_pages_stddev_samp_fields { - nav_order: (Scalars['Float'] | null) - __typename: 'custom_pages_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface custom_pages_sum_fields { - nav_order: (Scalars['Int'] | null) - __typename: 'custom_pages_sum_fields' -} - - -/** update columns of table "custom_pages" */ -export type custom_pages_update_column = 'created_at' | '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 */ -export interface custom_pages_var_pop_fields { - nav_order: (Scalars['Float'] | null) - __typename: 'custom_pages_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface custom_pages_var_samp_fields { - nav_order: (Scalars['Float'] | null) - __typename: 'custom_pages_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface custom_pages_variance_fields { - nav_order: (Scalars['Float'] | null) - __typename: 'custom_pages_variance_fields' -} - - -/** columns and relationships of "db_backups" */ -export interface db_backups { - created_at: Scalars['timestamptz'] - id: Scalars['uuid'] - name: Scalars['String'] - size: Scalars['Int'] - __typename: 'db_backups' -} - - -/** aggregated selection of "db_backups" */ -export interface db_backups_aggregate { - aggregate: (db_backups_aggregate_fields | null) - nodes: db_backups[] - __typename: 'db_backups_aggregate' -} - - -/** aggregate fields of "db_backups" */ -export interface db_backups_aggregate_fields { - avg: (db_backups_avg_fields | null) - count: Scalars['Int'] - max: (db_backups_max_fields | null) - min: (db_backups_min_fields | null) - stddev: (db_backups_stddev_fields | null) - stddev_pop: (db_backups_stddev_pop_fields | null) - stddev_samp: (db_backups_stddev_samp_fields | null) - sum: (db_backups_sum_fields | null) - var_pop: (db_backups_var_pop_fields | null) - var_samp: (db_backups_var_samp_fields | null) - variance: (db_backups_variance_fields | null) - __typename: 'db_backups_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface db_backups_avg_fields { - size: (Scalars['Float'] | null) - __typename: 'db_backups_avg_fields' -} - - -/** unique or primary key constraints on table "db_backups" */ -export type db_backups_constraint = 'db_backups_pkey' - - -/** aggregate max on columns */ -export interface db_backups_max_fields { - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - name: (Scalars['String'] | null) - size: (Scalars['Int'] | null) - __typename: 'db_backups_max_fields' -} - - -/** aggregate min on columns */ -export interface db_backups_min_fields { - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - name: (Scalars['String'] | null) - size: (Scalars['Int'] | null) - __typename: 'db_backups_min_fields' -} - - -/** response of any mutation on the table "db_backups" */ -export interface db_backups_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: db_backups[] - __typename: 'db_backups_mutation_response' -} - - -/** select columns of table "db_backups" */ -export type db_backups_select_column = 'created_at' | 'id' | 'name' | 'size' - - -/** aggregate stddev on columns */ -export interface db_backups_stddev_fields { - size: (Scalars['Float'] | null) - __typename: 'db_backups_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface db_backups_stddev_pop_fields { - size: (Scalars['Float'] | null) - __typename: 'db_backups_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface db_backups_stddev_samp_fields { - size: (Scalars['Float'] | null) - __typename: 'db_backups_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface db_backups_sum_fields { - size: (Scalars['Int'] | null) - __typename: 'db_backups_sum_fields' -} - - -/** update columns of table "db_backups" */ -export type db_backups_update_column = 'created_at' | 'id' | 'name' | 'size' - - -/** aggregate var_pop on columns */ -export interface db_backups_var_pop_fields { - size: (Scalars['Float'] | null) - __typename: 'db_backups_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface db_backups_var_samp_fields { - size: (Scalars['Float'] | null) - __typename: 'db_backups_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface db_backups_variance_fields { - size: (Scalars['Float'] | null) - __typename: 'db_backups_variance_fields' -} - - -/** columns and relationships of "direct_conversations" */ -export interface direct_conversations { - is_open: Scalars['Boolean'] - last_message_at: Scalars['timestamptz'] - position: Scalars['Int'] - room_id: Scalars['String'] - steam_id: Scalars['bigint'] - __typename: 'direct_conversations' -} - - -/** aggregated selection of "direct_conversations" */ -export interface direct_conversations_aggregate { - aggregate: (direct_conversations_aggregate_fields | null) - nodes: direct_conversations[] - __typename: 'direct_conversations_aggregate' -} - - -/** aggregate fields of "direct_conversations" */ -export interface direct_conversations_aggregate_fields { - avg: (direct_conversations_avg_fields | null) - count: Scalars['Int'] - max: (direct_conversations_max_fields | null) - min: (direct_conversations_min_fields | null) - stddev: (direct_conversations_stddev_fields | null) - stddev_pop: (direct_conversations_stddev_pop_fields | null) - stddev_samp: (direct_conversations_stddev_samp_fields | null) - sum: (direct_conversations_sum_fields | null) - var_pop: (direct_conversations_var_pop_fields | null) - var_samp: (direct_conversations_var_samp_fields | null) - variance: (direct_conversations_variance_fields | null) - __typename: 'direct_conversations_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface direct_conversations_avg_fields { - position: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'direct_conversations_avg_fields' -} - - -/** unique or primary key constraints on table "direct_conversations" */ -export type direct_conversations_constraint = 'direct_conversations_pkey' - - -/** aggregate max on columns */ -export interface direct_conversations_max_fields { - last_message_at: (Scalars['timestamptz'] | null) - position: (Scalars['Int'] | null) - room_id: (Scalars['String'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'direct_conversations_max_fields' -} - - -/** aggregate min on columns */ -export interface direct_conversations_min_fields { - last_message_at: (Scalars['timestamptz'] | null) - position: (Scalars['Int'] | null) - room_id: (Scalars['String'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'direct_conversations_min_fields' -} - - -/** response of any mutation on the table "direct_conversations" */ -export interface direct_conversations_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: direct_conversations[] - __typename: 'direct_conversations_mutation_response' -} - - -/** select columns of table "direct_conversations" */ -export type direct_conversations_select_column = 'is_open' | 'last_message_at' | 'position' | 'room_id' | 'steam_id' - - -/** aggregate stddev on columns */ -export interface direct_conversations_stddev_fields { - position: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'direct_conversations_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface direct_conversations_stddev_pop_fields { - position: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'direct_conversations_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface direct_conversations_stddev_samp_fields { - position: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'direct_conversations_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface direct_conversations_sum_fields { - position: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'direct_conversations_sum_fields' -} - - -/** update columns of table "direct_conversations" */ -export type direct_conversations_update_column = 'is_open' | 'last_message_at' | 'position' | 'room_id' | 'steam_id' - - -/** aggregate var_pop on columns */ -export interface direct_conversations_var_pop_fields { - position: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'direct_conversations_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface direct_conversations_var_samp_fields { - position: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'direct_conversations_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface direct_conversations_variance_fields { - position: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'direct_conversations_variance_fields' -} - - -/** columns and relationships of "direct_messages" */ -export interface direct_messages { - created_at: Scalars['timestamptz'] - from_steam_id: Scalars['bigint'] - id: Scalars['uuid'] - message: Scalars['String'] - room_id: Scalars['String'] - seq: Scalars['bigint'] - __typename: 'direct_messages' -} - - -/** aggregated selection of "direct_messages" */ -export interface direct_messages_aggregate { - aggregate: (direct_messages_aggregate_fields | null) - nodes: direct_messages[] - __typename: 'direct_messages_aggregate' -} - - -/** aggregate fields of "direct_messages" */ -export interface direct_messages_aggregate_fields { - avg: (direct_messages_avg_fields | null) - count: Scalars['Int'] - max: (direct_messages_max_fields | null) - min: (direct_messages_min_fields | null) - stddev: (direct_messages_stddev_fields | null) - stddev_pop: (direct_messages_stddev_pop_fields | null) - stddev_samp: (direct_messages_stddev_samp_fields | null) - sum: (direct_messages_sum_fields | null) - var_pop: (direct_messages_var_pop_fields | null) - var_samp: (direct_messages_var_samp_fields | null) - variance: (direct_messages_variance_fields | null) - __typename: 'direct_messages_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface direct_messages_avg_fields { - from_steam_id: (Scalars['Float'] | null) - seq: (Scalars['Float'] | null) - __typename: 'direct_messages_avg_fields' -} - - -/** unique or primary key constraints on table "direct_messages" */ -export type direct_messages_constraint = 'direct_messages_pkey' - - -/** aggregate max on columns */ -export interface direct_messages_max_fields { - 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) - __typename: 'direct_messages_max_fields' -} - - -/** aggregate min on columns */ -export interface direct_messages_min_fields { - 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) - __typename: 'direct_messages_min_fields' -} - - -/** response of any mutation on the table "direct_messages" */ -export interface direct_messages_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: direct_messages[] - __typename: 'direct_messages_mutation_response' -} - - -/** select columns of table "direct_messages" */ -export type direct_messages_select_column = 'created_at' | 'from_steam_id' | 'id' | 'message' | 'room_id' | 'seq' - - -/** aggregate stddev on columns */ -export interface direct_messages_stddev_fields { - from_steam_id: (Scalars['Float'] | null) - seq: (Scalars['Float'] | null) - __typename: 'direct_messages_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface direct_messages_stddev_pop_fields { - from_steam_id: (Scalars['Float'] | null) - seq: (Scalars['Float'] | null) - __typename: 'direct_messages_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface direct_messages_stddev_samp_fields { - from_steam_id: (Scalars['Float'] | null) - seq: (Scalars['Float'] | null) - __typename: 'direct_messages_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface direct_messages_sum_fields { - from_steam_id: (Scalars['bigint'] | null) - seq: (Scalars['bigint'] | null) - __typename: 'direct_messages_sum_fields' -} - - -/** update columns of table "direct_messages" */ -export type direct_messages_update_column = 'created_at' | 'from_steam_id' | 'id' | 'message' | 'room_id' | 'seq' - - -/** aggregate var_pop on columns */ -export interface direct_messages_var_pop_fields { - from_steam_id: (Scalars['Float'] | null) - seq: (Scalars['Float'] | null) - __typename: 'direct_messages_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface direct_messages_var_samp_fields { - from_steam_id: (Scalars['Float'] | null) - seq: (Scalars['Float'] | null) - __typename: 'direct_messages_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface direct_messages_variance_fields { - from_steam_id: (Scalars['Float'] | null) - seq: (Scalars['Float'] | null) - __typename: 'direct_messages_variance_fields' -} - - -/** columns and relationships of "draft_game_picks" */ -export interface draft_game_picks { - auto_picked: Scalars['Boolean'] - /** An object relationship */ - captain: players - captain_steam_id: Scalars['bigint'] - created_at: Scalars['timestamptz'] - /** An object relationship */ - draft_game: draft_games - draft_game_id: Scalars['uuid'] - id: Scalars['uuid'] - is_organizer: (Scalars['Boolean'] | null) - lineup: Scalars['Int'] - /** An object relationship */ - picked: players - picked_steam_id: Scalars['bigint'] - __typename: 'draft_game_picks' -} - - -/** aggregated selection of "draft_game_picks" */ -export interface draft_game_picks_aggregate { - aggregate: (draft_game_picks_aggregate_fields | null) - nodes: draft_game_picks[] - __typename: 'draft_game_picks_aggregate' -} - - -/** aggregate fields of "draft_game_picks" */ -export interface draft_game_picks_aggregate_fields { - avg: (draft_game_picks_avg_fields | null) - count: Scalars['Int'] - max: (draft_game_picks_max_fields | null) - min: (draft_game_picks_min_fields | null) - stddev: (draft_game_picks_stddev_fields | null) - stddev_pop: (draft_game_picks_stddev_pop_fields | null) - stddev_samp: (draft_game_picks_stddev_samp_fields | null) - sum: (draft_game_picks_sum_fields | null) - var_pop: (draft_game_picks_var_pop_fields | null) - var_samp: (draft_game_picks_var_samp_fields | null) - variance: (draft_game_picks_variance_fields | null) - __typename: 'draft_game_picks_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface draft_game_picks_avg_fields { - captain_steam_id: (Scalars['Float'] | null) - lineup: (Scalars['Float'] | null) - picked_steam_id: (Scalars['Float'] | null) - __typename: 'draft_game_picks_avg_fields' -} - - -/** unique or primary key constraints on table "draft_game_picks" */ -export type draft_game_picks_constraint = 'draft_game_picks_pkey' - - -/** aggregate max on columns */ -export interface draft_game_picks_max_fields { - 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) - __typename: 'draft_game_picks_max_fields' -} - - -/** aggregate min on columns */ -export interface draft_game_picks_min_fields { - 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) - __typename: 'draft_game_picks_min_fields' -} - - -/** response of any mutation on the table "draft_game_picks" */ -export interface draft_game_picks_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: draft_game_picks[] - __typename: 'draft_game_picks_mutation_response' -} - - -/** select columns of table "draft_game_picks" */ -export type draft_game_picks_select_column = 'auto_picked' | 'captain_steam_id' | 'created_at' | 'draft_game_id' | 'id' | 'lineup' | 'picked_steam_id' - - -/** select "draft_game_picks_aggregate_bool_exp_bool_and_arguments_columns" columns of table "draft_game_picks" */ -export type draft_game_picks_select_column_draft_game_picks_aggregate_bool_exp_bool_and_arguments_columns = 'auto_picked' - - -/** select "draft_game_picks_aggregate_bool_exp_bool_or_arguments_columns" columns of table "draft_game_picks" */ -export type draft_game_picks_select_column_draft_game_picks_aggregate_bool_exp_bool_or_arguments_columns = 'auto_picked' - - -/** aggregate stddev on columns */ -export interface draft_game_picks_stddev_fields { - captain_steam_id: (Scalars['Float'] | null) - lineup: (Scalars['Float'] | null) - picked_steam_id: (Scalars['Float'] | null) - __typename: 'draft_game_picks_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface draft_game_picks_stddev_pop_fields { - captain_steam_id: (Scalars['Float'] | null) - lineup: (Scalars['Float'] | null) - picked_steam_id: (Scalars['Float'] | null) - __typename: 'draft_game_picks_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface draft_game_picks_stddev_samp_fields { - captain_steam_id: (Scalars['Float'] | null) - lineup: (Scalars['Float'] | null) - picked_steam_id: (Scalars['Float'] | null) - __typename: 'draft_game_picks_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface draft_game_picks_sum_fields { - captain_steam_id: (Scalars['bigint'] | null) - lineup: (Scalars['Int'] | null) - picked_steam_id: (Scalars['bigint'] | null) - __typename: 'draft_game_picks_sum_fields' -} - - -/** update columns of table "draft_game_picks" */ -export type draft_game_picks_update_column = 'auto_picked' | 'captain_steam_id' | 'created_at' | 'draft_game_id' | 'id' | 'lineup' | 'picked_steam_id' - - -/** aggregate var_pop on columns */ -export interface draft_game_picks_var_pop_fields { - captain_steam_id: (Scalars['Float'] | null) - lineup: (Scalars['Float'] | null) - picked_steam_id: (Scalars['Float'] | null) - __typename: 'draft_game_picks_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface draft_game_picks_var_samp_fields { - captain_steam_id: (Scalars['Float'] | null) - lineup: (Scalars['Float'] | null) - picked_steam_id: (Scalars['Float'] | null) - __typename: 'draft_game_picks_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface draft_game_picks_variance_fields { - captain_steam_id: (Scalars['Float'] | null) - lineup: (Scalars['Float'] | null) - picked_steam_id: (Scalars['Float'] | null) - __typename: 'draft_game_picks_variance_fields' -} - - -/** columns and relationships of "draft_game_players" */ -export interface draft_game_players { - /** An object relationship */ - draft_game: draft_games - draft_game_id: Scalars['uuid'] - /** An object relationship */ - e_draft_game_player_status: e_draft_game_player_status - elo_snapshot: (Scalars['Int'] | null) - is_captain: Scalars['Boolean'] - is_organizer: (Scalars['Boolean'] | null) - joined_at: Scalars['timestamptz'] - lineup: (Scalars['Int'] | null) - pick_order: (Scalars['Int'] | null) - /** An object relationship */ - player: players - status: e_draft_game_player_status_enum - steam_id: Scalars['bigint'] - __typename: 'draft_game_players' -} - - -/** aggregated selection of "draft_game_players" */ -export interface draft_game_players_aggregate { - aggregate: (draft_game_players_aggregate_fields | null) - nodes: draft_game_players[] - __typename: 'draft_game_players_aggregate' -} - - -/** aggregate fields of "draft_game_players" */ -export interface draft_game_players_aggregate_fields { - avg: (draft_game_players_avg_fields | null) - count: Scalars['Int'] - max: (draft_game_players_max_fields | null) - min: (draft_game_players_min_fields | null) - stddev: (draft_game_players_stddev_fields | null) - stddev_pop: (draft_game_players_stddev_pop_fields | null) - stddev_samp: (draft_game_players_stddev_samp_fields | null) - sum: (draft_game_players_sum_fields | null) - var_pop: (draft_game_players_var_pop_fields | null) - var_samp: (draft_game_players_var_samp_fields | null) - variance: (draft_game_players_variance_fields | null) - __typename: 'draft_game_players_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface draft_game_players_avg_fields { - elo_snapshot: (Scalars['Float'] | null) - lineup: (Scalars['Float'] | null) - pick_order: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'draft_game_players_avg_fields' -} - - -/** unique or primary key constraints on table "draft_game_players" */ -export type draft_game_players_constraint = 'draft_game_players_pkey' - - -/** aggregate max on columns */ -export interface draft_game_players_max_fields { - draft_game_id: (Scalars['uuid'] | null) - elo_snapshot: (Scalars['Int'] | null) - joined_at: (Scalars['timestamptz'] | null) - lineup: (Scalars['Int'] | null) - pick_order: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'draft_game_players_max_fields' -} - - -/** aggregate min on columns */ -export interface draft_game_players_min_fields { - draft_game_id: (Scalars['uuid'] | null) - elo_snapshot: (Scalars['Int'] | null) - joined_at: (Scalars['timestamptz'] | null) - lineup: (Scalars['Int'] | null) - pick_order: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'draft_game_players_min_fields' -} - - -/** response of any mutation on the table "draft_game_players" */ -export interface draft_game_players_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: draft_game_players[] - __typename: 'draft_game_players_mutation_response' -} - - -/** select columns of table "draft_game_players" */ -export type draft_game_players_select_column = 'draft_game_id' | 'elo_snapshot' | 'is_captain' | 'joined_at' | 'lineup' | 'pick_order' | 'status' | 'steam_id' - - -/** select "draft_game_players_aggregate_bool_exp_bool_and_arguments_columns" columns of table "draft_game_players" */ -export type draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_and_arguments_columns = 'is_captain' - - -/** select "draft_game_players_aggregate_bool_exp_bool_or_arguments_columns" columns of table "draft_game_players" */ -export type draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_or_arguments_columns = 'is_captain' - - -/** aggregate stddev on columns */ -export interface draft_game_players_stddev_fields { - elo_snapshot: (Scalars['Float'] | null) - lineup: (Scalars['Float'] | null) - pick_order: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'draft_game_players_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface draft_game_players_stddev_pop_fields { - elo_snapshot: (Scalars['Float'] | null) - lineup: (Scalars['Float'] | null) - pick_order: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'draft_game_players_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface draft_game_players_stddev_samp_fields { - elo_snapshot: (Scalars['Float'] | null) - lineup: (Scalars['Float'] | null) - pick_order: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'draft_game_players_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface draft_game_players_sum_fields { - elo_snapshot: (Scalars['Int'] | null) - lineup: (Scalars['Int'] | null) - pick_order: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'draft_game_players_sum_fields' -} - - -/** update columns of table "draft_game_players" */ -export type draft_game_players_update_column = 'draft_game_id' | 'elo_snapshot' | 'is_captain' | 'joined_at' | 'lineup' | 'pick_order' | 'status' | 'steam_id' - - -/** aggregate var_pop on columns */ -export interface draft_game_players_var_pop_fields { - elo_snapshot: (Scalars['Float'] | null) - lineup: (Scalars['Float'] | null) - pick_order: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'draft_game_players_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface draft_game_players_var_samp_fields { - elo_snapshot: (Scalars['Float'] | null) - lineup: (Scalars['Float'] | null) - pick_order: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'draft_game_players_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface draft_game_players_variance_fields { - elo_snapshot: (Scalars['Float'] | null) - lineup: (Scalars['Float'] | null) - pick_order: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'draft_game_players_variance_fields' -} - - -/** columns and relationships of "draft_games" */ -export interface draft_games { - access: e_lobby_access_enum - capacity: Scalars['Int'] - captain_selection: e_draft_game_captain_selection_enum - created_at: Scalars['timestamptz'] - current_pick_lineup: (Scalars['Int'] | null) - draft_order: e_draft_game_draft_order_enum - /** An object relationship */ - e_draft_game_captain_selection: e_draft_game_captain_selection - /** An object relationship */ - e_draft_game_draft_order: e_draft_game_draft_order - /** An object relationship */ - e_draft_game_mode: e_draft_game_mode - /** An object relationship */ - e_draft_game_status: e_draft_game_status - /** An object relationship */ - e_lobby_access: e_lobby_access - expires_at: (Scalars['timestamptz'] | null) - /** An object relationship */ - host: players - host_steam_id: Scalars['bigint'] - id: Scalars['uuid'] - inner_squad: Scalars['Boolean'] - invite_code: Scalars['uuid'] - is_organizer: (Scalars['Boolean'] | null) - /** An object relationship */ - map_pool: (map_pools | null) - map_pool_id: (Scalars['uuid'] | null) - /** An object relationship */ - match: (matches | 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 - /** An object relationship */ - options: (match_options | null) - /** Turn order (lineup 1/2) for each remaining non-captain pick. */ - pattern: (Scalars['jsonb'] | null) - pick_deadline: (Scalars['timestamptz'] | null) - /** An array relationship */ - picks: draft_game_picks[] - /** An aggregate relationship */ - picks_aggregate: draft_game_picks_aggregate - /** An array relationship */ - players: draft_game_players[] - /** An aggregate relationship */ - players_aggregate: draft_game_players_aggregate - regions: Scalars['String'][] - require_approval: Scalars['Boolean'] - scheduled_at: (Scalars['timestamptz'] | null) - status: e_draft_game_status_enum - /** An object relationship */ - team_1: (teams | null) - team_1_id: (Scalars['uuid'] | null) - /** An object relationship */ - team_2: (teams | null) - team_2_id: (Scalars['uuid'] | null) - type: e_match_types_enum - updated_at: Scalars['timestamptz'] - __typename: 'draft_games' -} - - -/** aggregated selection of "draft_games" */ -export interface draft_games_aggregate { - aggregate: (draft_games_aggregate_fields | null) - nodes: draft_games[] - __typename: 'draft_games_aggregate' -} - - -/** aggregate fields of "draft_games" */ -export interface draft_games_aggregate_fields { - avg: (draft_games_avg_fields | null) - count: Scalars['Int'] - max: (draft_games_max_fields | null) - min: (draft_games_min_fields | null) - stddev: (draft_games_stddev_fields | null) - stddev_pop: (draft_games_stddev_pop_fields | null) - stddev_samp: (draft_games_stddev_samp_fields | null) - sum: (draft_games_sum_fields | null) - var_pop: (draft_games_var_pop_fields | null) - var_samp: (draft_games_var_samp_fields | null) - variance: (draft_games_variance_fields | null) - __typename: 'draft_games_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface draft_games_avg_fields { - capacity: (Scalars['Float'] | null) - current_pick_lineup: (Scalars['Float'] | null) - host_steam_id: (Scalars['Float'] | null) - max_elo: (Scalars['Float'] | null) - min_elo: (Scalars['Float'] | null) - __typename: 'draft_games_avg_fields' -} - - -/** unique or primary key constraints on table "draft_games" */ -export type draft_games_constraint = 'draft_games_pkey' - - -/** aggregate max on columns */ -export interface draft_games_max_fields { - capacity: (Scalars['Int'] | null) - created_at: (Scalars['timestamptz'] | null) - current_pick_lineup: (Scalars['Int'] | null) - expires_at: (Scalars['timestamptz'] | null) - host_steam_id: (Scalars['bigint'] | null) - id: (Scalars['uuid'] | 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) - pick_deadline: (Scalars['timestamptz'] | null) - regions: (Scalars['String'][] | null) - scheduled_at: (Scalars['timestamptz'] | null) - team_1_id: (Scalars['uuid'] | null) - team_2_id: (Scalars['uuid'] | null) - updated_at: (Scalars['timestamptz'] | null) - __typename: 'draft_games_max_fields' -} - - -/** aggregate min on columns */ -export interface draft_games_min_fields { - capacity: (Scalars['Int'] | null) - created_at: (Scalars['timestamptz'] | null) - current_pick_lineup: (Scalars['Int'] | null) - expires_at: (Scalars['timestamptz'] | null) - host_steam_id: (Scalars['bigint'] | null) - id: (Scalars['uuid'] | 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) - pick_deadline: (Scalars['timestamptz'] | null) - regions: (Scalars['String'][] | null) - scheduled_at: (Scalars['timestamptz'] | null) - team_1_id: (Scalars['uuid'] | null) - team_2_id: (Scalars['uuid'] | null) - updated_at: (Scalars['timestamptz'] | null) - __typename: 'draft_games_min_fields' -} - - -/** response of any mutation on the table "draft_games" */ -export interface draft_games_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: draft_games[] - __typename: 'draft_games_mutation_response' -} - - -/** select columns of table "draft_games" */ -export type draft_games_select_column = 'access' | 'capacity' | 'captain_selection' | 'created_at' | 'current_pick_lineup' | 'draft_order' | 'expires_at' | 'host_steam_id' | 'id' | 'inner_squad' | 'invite_code' | 'map_pool_id' | 'match_id' | 'match_options_id' | 'max_elo' | 'min_elo' | 'mode' | 'pick_deadline' | 'regions' | 'require_approval' | 'scheduled_at' | 'status' | 'team_1_id' | 'team_2_id' | 'type' | 'updated_at' - - -/** select "draft_games_aggregate_bool_exp_bool_and_arguments_columns" columns of table "draft_games" */ -export type draft_games_select_column_draft_games_aggregate_bool_exp_bool_and_arguments_columns = 'inner_squad' | 'require_approval' - - -/** select "draft_games_aggregate_bool_exp_bool_or_arguments_columns" columns of table "draft_games" */ -export type draft_games_select_column_draft_games_aggregate_bool_exp_bool_or_arguments_columns = 'inner_squad' | 'require_approval' - - -/** aggregate stddev on columns */ -export interface draft_games_stddev_fields { - capacity: (Scalars['Float'] | null) - current_pick_lineup: (Scalars['Float'] | null) - host_steam_id: (Scalars['Float'] | null) - max_elo: (Scalars['Float'] | null) - min_elo: (Scalars['Float'] | null) - __typename: 'draft_games_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface draft_games_stddev_pop_fields { - capacity: (Scalars['Float'] | null) - current_pick_lineup: (Scalars['Float'] | null) - host_steam_id: (Scalars['Float'] | null) - max_elo: (Scalars['Float'] | null) - min_elo: (Scalars['Float'] | null) - __typename: 'draft_games_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface draft_games_stddev_samp_fields { - capacity: (Scalars['Float'] | null) - current_pick_lineup: (Scalars['Float'] | null) - host_steam_id: (Scalars['Float'] | null) - max_elo: (Scalars['Float'] | null) - min_elo: (Scalars['Float'] | null) - __typename: 'draft_games_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface draft_games_sum_fields { - 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) - __typename: 'draft_games_sum_fields' -} - - -/** update columns of table "draft_games" */ -export type draft_games_update_column = 'access' | 'capacity' | 'captain_selection' | 'created_at' | 'current_pick_lineup' | 'draft_order' | 'expires_at' | 'host_steam_id' | 'id' | 'inner_squad' | 'invite_code' | 'map_pool_id' | 'match_id' | 'match_options_id' | 'max_elo' | 'min_elo' | 'mode' | 'pick_deadline' | 'regions' | 'require_approval' | 'scheduled_at' | 'status' | 'team_1_id' | 'team_2_id' | 'type' | 'updated_at' - - -/** aggregate var_pop on columns */ -export interface draft_games_var_pop_fields { - capacity: (Scalars['Float'] | null) - current_pick_lineup: (Scalars['Float'] | null) - host_steam_id: (Scalars['Float'] | null) - max_elo: (Scalars['Float'] | null) - min_elo: (Scalars['Float'] | null) - __typename: 'draft_games_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface draft_games_var_samp_fields { - capacity: (Scalars['Float'] | null) - current_pick_lineup: (Scalars['Float'] | null) - host_steam_id: (Scalars['Float'] | null) - max_elo: (Scalars['Float'] | null) - min_elo: (Scalars['Float'] | null) - __typename: 'draft_games_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface draft_games_variance_fields { - capacity: (Scalars['Float'] | null) - current_pick_lineup: (Scalars['Float'] | null) - host_steam_id: (Scalars['Float'] | null) - max_elo: (Scalars['Float'] | null) - min_elo: (Scalars['Float'] | null) - __typename: 'draft_games_variance_fields' -} - - -/** columns and relationships of "e_award_sources" */ -export interface e_award_sources { - description: Scalars['String'] - value: Scalars['String'] - __typename: 'e_award_sources' -} - - -/** aggregated selection of "e_award_sources" */ -export interface e_award_sources_aggregate { - aggregate: (e_award_sources_aggregate_fields | null) - nodes: e_award_sources[] - __typename: 'e_award_sources_aggregate' -} - - -/** aggregate fields of "e_award_sources" */ -export interface e_award_sources_aggregate_fields { - count: Scalars['Int'] - max: (e_award_sources_max_fields | null) - min: (e_award_sources_min_fields | null) - __typename: 'e_award_sources_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_award_sources" */ -export type e_award_sources_constraint = 'e_award_sources_pkey' - -export type e_award_sources_enum = 'manual' | 'season' | 'tournament' - - -/** aggregate max on columns */ -export interface e_award_sources_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_award_sources_max_fields' -} - - -/** aggregate min on columns */ -export interface e_award_sources_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_award_sources_min_fields' -} - - -/** response of any mutation on the table "e_award_sources" */ -export interface e_award_sources_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_award_sources[] - __typename: 'e_award_sources_mutation_response' -} - - -/** select columns of table "e_award_sources" */ -export type e_award_sources_select_column = 'description' | 'value' - - -/** update columns of table "e_award_sources" */ -export type e_award_sources_update_column = 'description' | 'value' - - -/** columns and relationships of "e_award_tiers" */ -export interface e_award_tiers { - description: Scalars['String'] - value: Scalars['String'] - __typename: 'e_award_tiers' -} - - -/** aggregated selection of "e_award_tiers" */ -export interface e_award_tiers_aggregate { - aggregate: (e_award_tiers_aggregate_fields | null) - nodes: e_award_tiers[] - __typename: 'e_award_tiers_aggregate' -} - - -/** aggregate fields of "e_award_tiers" */ -export interface e_award_tiers_aggregate_fields { - count: Scalars['Int'] - max: (e_award_tiers_max_fields | null) - min: (e_award_tiers_min_fields | null) - __typename: 'e_award_tiers_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_award_tiers" */ -export type e_award_tiers_constraint = 'e_award_tiers_pkey' - -export type e_award_tiers_enum = 'bronze' | 'gold' | 'mvp' | 'silver' | 'special' - - -/** aggregate max on columns */ -export interface e_award_tiers_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_award_tiers_max_fields' -} - - -/** aggregate min on columns */ -export interface e_award_tiers_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_award_tiers_min_fields' -} - - -/** response of any mutation on the table "e_award_tiers" */ -export interface e_award_tiers_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_award_tiers[] - __typename: 'e_award_tiers_mutation_response' -} - - -/** select columns of table "e_award_tiers" */ -export type e_award_tiers_select_column = 'description' | 'value' - - -/** update columns of table "e_award_tiers" */ -export type e_award_tiers_update_column = 'description' | 'value' - - -/** columns and relationships of "e_check_in_settings" */ -export interface e_check_in_settings { - description: Scalars['String'] - value: Scalars['String'] - __typename: 'e_check_in_settings' -} - - -/** aggregated selection of "e_check_in_settings" */ -export interface e_check_in_settings_aggregate { - aggregate: (e_check_in_settings_aggregate_fields | null) - nodes: e_check_in_settings[] - __typename: 'e_check_in_settings_aggregate' -} - - -/** aggregate fields of "e_check_in_settings" */ -export interface e_check_in_settings_aggregate_fields { - count: Scalars['Int'] - max: (e_check_in_settings_max_fields | null) - min: (e_check_in_settings_min_fields | null) - __typename: 'e_check_in_settings_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_check_in_settings" */ -export type e_check_in_settings_constraint = 'e_check_in_settings_pkey' - -export type e_check_in_settings_enum = 'Admin' | 'Captains' | 'Players' - - -/** aggregate max on columns */ -export interface e_check_in_settings_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_check_in_settings_max_fields' -} - - -/** aggregate min on columns */ -export interface e_check_in_settings_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_check_in_settings_min_fields' -} - - -/** response of any mutation on the table "e_check_in_settings" */ -export interface e_check_in_settings_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_check_in_settings[] - __typename: 'e_check_in_settings_mutation_response' -} - - -/** select columns of table "e_check_in_settings" */ -export type e_check_in_settings_select_column = 'description' | 'value' - - -/** update columns of table "e_check_in_settings" */ -export type e_check_in_settings_update_column = 'description' | 'value' - - -/** columns and relationships of "e_draft_game_captain_selection" */ -export interface e_draft_game_captain_selection { - description: Scalars['String'] - value: Scalars['String'] - __typename: 'e_draft_game_captain_selection' -} - - -/** aggregated selection of "e_draft_game_captain_selection" */ -export interface e_draft_game_captain_selection_aggregate { - aggregate: (e_draft_game_captain_selection_aggregate_fields | null) - nodes: e_draft_game_captain_selection[] - __typename: 'e_draft_game_captain_selection_aggregate' -} - - -/** aggregate fields of "e_draft_game_captain_selection" */ -export interface e_draft_game_captain_selection_aggregate_fields { - count: Scalars['Int'] - max: (e_draft_game_captain_selection_max_fields | null) - min: (e_draft_game_captain_selection_min_fields | null) - __typename: 'e_draft_game_captain_selection_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_draft_game_captain_selection" */ -export type e_draft_game_captain_selection_constraint = 'e_draft_game_captain_selection_pkey' - -export type e_draft_game_captain_selection_enum = 'HostAndNext' | 'Manual' | 'RandomTwo' | 'TopEloTwo' - - -/** aggregate max on columns */ -export interface e_draft_game_captain_selection_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_draft_game_captain_selection_max_fields' -} - - -/** aggregate min on columns */ -export interface e_draft_game_captain_selection_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_draft_game_captain_selection_min_fields' -} - - -/** response of any mutation on the table "e_draft_game_captain_selection" */ -export interface e_draft_game_captain_selection_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_draft_game_captain_selection[] - __typename: 'e_draft_game_captain_selection_mutation_response' -} - - -/** select columns of table "e_draft_game_captain_selection" */ -export type e_draft_game_captain_selection_select_column = 'description' | 'value' - - -/** update columns of table "e_draft_game_captain_selection" */ -export type e_draft_game_captain_selection_update_column = 'description' | 'value' - - -/** columns and relationships of "e_draft_game_draft_order" */ -export interface e_draft_game_draft_order { - description: Scalars['String'] - value: Scalars['String'] - __typename: 'e_draft_game_draft_order' -} - - -/** aggregated selection of "e_draft_game_draft_order" */ -export interface e_draft_game_draft_order_aggregate { - aggregate: (e_draft_game_draft_order_aggregate_fields | null) - nodes: e_draft_game_draft_order[] - __typename: 'e_draft_game_draft_order_aggregate' -} - - -/** aggregate fields of "e_draft_game_draft_order" */ -export interface e_draft_game_draft_order_aggregate_fields { - count: Scalars['Int'] - max: (e_draft_game_draft_order_max_fields | null) - min: (e_draft_game_draft_order_min_fields | null) - __typename: 'e_draft_game_draft_order_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_draft_game_draft_order" */ -export type e_draft_game_draft_order_constraint = 'e_draft_game_draft_order_pkey' - -export type e_draft_game_draft_order_enum = 'Alternating' | 'FrontLoaded' | 'Snake' - - -/** aggregate max on columns */ -export interface e_draft_game_draft_order_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_draft_game_draft_order_max_fields' -} - - -/** aggregate min on columns */ -export interface e_draft_game_draft_order_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_draft_game_draft_order_min_fields' -} - - -/** response of any mutation on the table "e_draft_game_draft_order" */ -export interface e_draft_game_draft_order_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_draft_game_draft_order[] - __typename: 'e_draft_game_draft_order_mutation_response' -} - - -/** select columns of table "e_draft_game_draft_order" */ -export type e_draft_game_draft_order_select_column = 'description' | 'value' - - -/** update columns of table "e_draft_game_draft_order" */ -export type e_draft_game_draft_order_update_column = 'description' | 'value' - - -/** columns and relationships of "e_draft_game_mode" */ -export interface e_draft_game_mode { - description: Scalars['String'] - value: Scalars['String'] - __typename: 'e_draft_game_mode' -} - - -/** aggregated selection of "e_draft_game_mode" */ -export interface e_draft_game_mode_aggregate { - aggregate: (e_draft_game_mode_aggregate_fields | null) - nodes: e_draft_game_mode[] - __typename: 'e_draft_game_mode_aggregate' -} - - -/** aggregate fields of "e_draft_game_mode" */ -export interface e_draft_game_mode_aggregate_fields { - count: Scalars['Int'] - max: (e_draft_game_mode_max_fields | null) - min: (e_draft_game_mode_min_fields | null) - __typename: 'e_draft_game_mode_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_draft_game_mode" */ -export type e_draft_game_mode_constraint = 'e_draft_game_mode_pkey' - -export type e_draft_game_mode_enum = 'Captains' | 'Host' | 'Pug' | 'Teams' - - -/** aggregate max on columns */ -export interface e_draft_game_mode_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_draft_game_mode_max_fields' -} - - -/** aggregate min on columns */ -export interface e_draft_game_mode_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_draft_game_mode_min_fields' -} - - -/** response of any mutation on the table "e_draft_game_mode" */ -export interface e_draft_game_mode_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_draft_game_mode[] - __typename: 'e_draft_game_mode_mutation_response' -} - - -/** select columns of table "e_draft_game_mode" */ -export type e_draft_game_mode_select_column = 'description' | 'value' - - -/** update columns of table "e_draft_game_mode" */ -export type e_draft_game_mode_update_column = 'description' | 'value' - - -/** columns and relationships of "e_draft_game_player_status" */ -export interface e_draft_game_player_status { - description: Scalars['String'] - value: Scalars['String'] - __typename: 'e_draft_game_player_status' -} - - -/** aggregated selection of "e_draft_game_player_status" */ -export interface e_draft_game_player_status_aggregate { - aggregate: (e_draft_game_player_status_aggregate_fields | null) - nodes: e_draft_game_player_status[] - __typename: 'e_draft_game_player_status_aggregate' -} - - -/** aggregate fields of "e_draft_game_player_status" */ -export interface e_draft_game_player_status_aggregate_fields { - count: Scalars['Int'] - max: (e_draft_game_player_status_max_fields | null) - min: (e_draft_game_player_status_min_fields | null) - __typename: 'e_draft_game_player_status_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_draft_game_player_status" */ -export type e_draft_game_player_status_constraint = 'e_draft_game_player_status_pkey' - -export type e_draft_game_player_status_enum = 'Accepted' | 'Invited' | 'Requested' | 'Waitlist' - - -/** aggregate max on columns */ -export interface e_draft_game_player_status_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_draft_game_player_status_max_fields' -} - - -/** aggregate min on columns */ -export interface e_draft_game_player_status_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_draft_game_player_status_min_fields' -} - - -/** response of any mutation on the table "e_draft_game_player_status" */ -export interface e_draft_game_player_status_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_draft_game_player_status[] - __typename: 'e_draft_game_player_status_mutation_response' -} - - -/** select columns of table "e_draft_game_player_status" */ -export type e_draft_game_player_status_select_column = 'description' | 'value' - - -/** update columns of table "e_draft_game_player_status" */ -export type e_draft_game_player_status_update_column = 'description' | 'value' - - -/** columns and relationships of "e_draft_game_status" */ -export interface e_draft_game_status { - description: Scalars['String'] - value: Scalars['String'] - __typename: 'e_draft_game_status' -} - - -/** aggregated selection of "e_draft_game_status" */ -export interface e_draft_game_status_aggregate { - aggregate: (e_draft_game_status_aggregate_fields | null) - nodes: e_draft_game_status[] - __typename: 'e_draft_game_status_aggregate' -} - - -/** aggregate fields of "e_draft_game_status" */ -export interface e_draft_game_status_aggregate_fields { - count: Scalars['Int'] - max: (e_draft_game_status_max_fields | null) - min: (e_draft_game_status_min_fields | null) - __typename: 'e_draft_game_status_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_draft_game_status" */ -export type e_draft_game_status_constraint = 'e_draft_game_status_pkey' - -export type e_draft_game_status_enum = 'Canceled' | 'Completed' | 'CreatingMatch' | 'Drafting' | 'Filled' | 'Open' | 'SelectingCaptains' - - -/** aggregate max on columns */ -export interface e_draft_game_status_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_draft_game_status_max_fields' -} - - -/** aggregate min on columns */ -export interface e_draft_game_status_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_draft_game_status_min_fields' -} - - -/** response of any mutation on the table "e_draft_game_status" */ -export interface e_draft_game_status_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_draft_game_status[] - __typename: 'e_draft_game_status_mutation_response' -} - - -/** select columns of table "e_draft_game_status" */ -export type e_draft_game_status_select_column = 'description' | 'value' - - -/** update columns of table "e_draft_game_status" */ -export type e_draft_game_status_update_column = 'description' | 'value' - - -/** columns and relationships of "e_event_media_access" */ -export interface e_event_media_access { - description: Scalars['String'] - value: Scalars['String'] - __typename: 'e_event_media_access' -} - - -/** aggregated selection of "e_event_media_access" */ -export interface e_event_media_access_aggregate { - aggregate: (e_event_media_access_aggregate_fields | null) - nodes: e_event_media_access[] - __typename: 'e_event_media_access_aggregate' -} - - -/** aggregate fields of "e_event_media_access" */ -export interface e_event_media_access_aggregate_fields { - count: Scalars['Int'] - max: (e_event_media_access_max_fields | null) - min: (e_event_media_access_min_fields | null) - __typename: 'e_event_media_access_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_event_media_access" */ -export type e_event_media_access_constraint = 'e_event_media_access_pkey' - -export type e_event_media_access_enum = 'Involved' | 'Organizers' - - -/** aggregate max on columns */ -export interface e_event_media_access_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_event_media_access_max_fields' -} - - -/** aggregate min on columns */ -export interface e_event_media_access_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_event_media_access_min_fields' -} - - -/** response of any mutation on the table "e_event_media_access" */ -export interface e_event_media_access_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_event_media_access[] - __typename: 'e_event_media_access_mutation_response' -} - - -/** select columns of table "e_event_media_access" */ -export type e_event_media_access_select_column = 'description' | 'value' - - -/** update columns of table "e_event_media_access" */ -export type e_event_media_access_update_column = 'description' | 'value' - - -/** columns and relationships of "e_event_visibility" */ -export interface e_event_visibility { - description: Scalars['String'] - value: Scalars['String'] - __typename: 'e_event_visibility' -} - - -/** aggregated selection of "e_event_visibility" */ -export interface e_event_visibility_aggregate { - aggregate: (e_event_visibility_aggregate_fields | null) - nodes: e_event_visibility[] - __typename: 'e_event_visibility_aggregate' -} - - -/** aggregate fields of "e_event_visibility" */ -export interface e_event_visibility_aggregate_fields { - count: Scalars['Int'] - max: (e_event_visibility_max_fields | null) - min: (e_event_visibility_min_fields | null) - __typename: 'e_event_visibility_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_event_visibility" */ -export type e_event_visibility_constraint = 'e_event_visibility_pkey' - -export type e_event_visibility_enum = 'Friends' | 'Private' | 'Public' - - -/** aggregate max on columns */ -export interface e_event_visibility_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_event_visibility_max_fields' -} - - -/** aggregate min on columns */ -export interface e_event_visibility_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_event_visibility_min_fields' -} - - -/** response of any mutation on the table "e_event_visibility" */ -export interface e_event_visibility_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_event_visibility[] - __typename: 'e_event_visibility_mutation_response' -} - - -/** select columns of table "e_event_visibility" */ -export type e_event_visibility_select_column = 'description' | 'value' - - -/** update columns of table "e_event_visibility" */ -export type e_event_visibility_update_column = 'description' | 'value' - - -/** columns and relationships of "e_friend_status" */ -export interface e_friend_status { - description: Scalars['String'] - value: Scalars['String'] - __typename: 'e_friend_status' -} - - -/** aggregated selection of "e_friend_status" */ -export interface e_friend_status_aggregate { - aggregate: (e_friend_status_aggregate_fields | null) - nodes: e_friend_status[] - __typename: 'e_friend_status_aggregate' -} - - -/** aggregate fields of "e_friend_status" */ -export interface e_friend_status_aggregate_fields { - count: Scalars['Int'] - max: (e_friend_status_max_fields | null) - min: (e_friend_status_min_fields | null) - __typename: 'e_friend_status_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_friend_status" */ -export type e_friend_status_constraint = 'e_friend_status_pkey' - -export type e_friend_status_enum = 'Accepted' | 'Pending' - - -/** aggregate max on columns */ -export interface e_friend_status_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_friend_status_max_fields' -} - - -/** aggregate min on columns */ -export interface e_friend_status_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_friend_status_min_fields' -} - - -/** response of any mutation on the table "e_friend_status" */ -export interface e_friend_status_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_friend_status[] - __typename: 'e_friend_status_mutation_response' -} - - -/** select columns of table "e_friend_status" */ -export type e_friend_status_select_column = 'description' | 'value' - - -/** update columns of table "e_friend_status" */ -export type e_friend_status_update_column = 'description' | 'value' - - -/** columns and relationships of "e_game_cfg_types" */ -export interface e_game_cfg_types { - description: Scalars['String'] - value: Scalars['String'] - __typename: 'e_game_cfg_types' -} - - -/** aggregated selection of "e_game_cfg_types" */ -export interface e_game_cfg_types_aggregate { - aggregate: (e_game_cfg_types_aggregate_fields | null) - nodes: e_game_cfg_types[] - __typename: 'e_game_cfg_types_aggregate' -} - - -/** aggregate fields of "e_game_cfg_types" */ -export interface e_game_cfg_types_aggregate_fields { - count: Scalars['Int'] - max: (e_game_cfg_types_max_fields | null) - min: (e_game_cfg_types_min_fields | null) - __typename: 'e_game_cfg_types_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_game_cfg_types" */ -export type e_game_cfg_types_constraint = 'e_game_cfg_types_pkey' - -export type e_game_cfg_types_enum = 'Base' | 'Competitive' | 'Duel' | 'Global' | 'Lan' | 'Live' | 'Wingman' - - -/** aggregate max on columns */ -export interface e_game_cfg_types_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_game_cfg_types_max_fields' -} - - -/** aggregate min on columns */ -export interface e_game_cfg_types_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_game_cfg_types_min_fields' -} - - -/** response of any mutation on the table "e_game_cfg_types" */ -export interface e_game_cfg_types_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_game_cfg_types[] - __typename: 'e_game_cfg_types_mutation_response' -} - - -/** select columns of table "e_game_cfg_types" */ -export type e_game_cfg_types_select_column = 'description' | 'value' - - -/** update columns of table "e_game_cfg_types" */ -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'] - value: Scalars['String'] - __typename: 'e_game_server_node_statuses' -} - - -/** aggregated selection of "e_game_server_node_statuses" */ -export interface e_game_server_node_statuses_aggregate { - aggregate: (e_game_server_node_statuses_aggregate_fields | null) - nodes: e_game_server_node_statuses[] - __typename: 'e_game_server_node_statuses_aggregate' -} - - -/** aggregate fields of "e_game_server_node_statuses" */ -export interface e_game_server_node_statuses_aggregate_fields { - count: Scalars['Int'] - max: (e_game_server_node_statuses_max_fields | null) - min: (e_game_server_node_statuses_min_fields | null) - __typename: 'e_game_server_node_statuses_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_game_server_node_statuses" */ -export type e_game_server_node_statuses_constraint = 'e_game_server_node_statuses_pkey' - -export type e_game_server_node_statuses_enum = 'NotAcceptingNewMatches' | 'Offline' | 'Online' | 'Setup' - - -/** aggregate max on columns */ -export interface e_game_server_node_statuses_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_game_server_node_statuses_max_fields' -} - - -/** aggregate min on columns */ -export interface e_game_server_node_statuses_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_game_server_node_statuses_min_fields' -} - - -/** response of any mutation on the table "e_game_server_node_statuses" */ -export interface e_game_server_node_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_server_node_statuses[] - __typename: 'e_game_server_node_statuses_mutation_response' -} - - -/** select columns of table "e_game_server_node_statuses" */ -export type e_game_server_node_statuses_select_column = 'description' | 'value' - - -/** update columns of table "e_game_server_node_statuses" */ -export type e_game_server_node_statuses_update_column = 'description' | 'value' - - -/** columns and relationships of "e_league_movement_types" */ -export interface e_league_movement_types { - description: Scalars['String'] - value: Scalars['String'] - __typename: 'e_league_movement_types' -} - - -/** aggregated selection of "e_league_movement_types" */ -export interface e_league_movement_types_aggregate { - aggregate: (e_league_movement_types_aggregate_fields | null) - nodes: e_league_movement_types[] - __typename: 'e_league_movement_types_aggregate' -} - - -/** aggregate fields of "e_league_movement_types" */ -export interface e_league_movement_types_aggregate_fields { - count: Scalars['Int'] - max: (e_league_movement_types_max_fields | null) - min: (e_league_movement_types_min_fields | null) - __typename: 'e_league_movement_types_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_league_movement_types" */ -export type e_league_movement_types_constraint = 'e_league_movement_types_pkey' - -export type e_league_movement_types_enum = 'DirectPromote' | 'DirectRelegate' | 'Hold' | 'Promote' | 'Relegate' | 'RelegationDown' | 'RelegationUp' | 'Remove' | 'Stay' - - -/** aggregate max on columns */ -export interface e_league_movement_types_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_league_movement_types_max_fields' -} - - -/** aggregate min on columns */ -export interface e_league_movement_types_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_league_movement_types_min_fields' -} - - -/** response of any mutation on the table "e_league_movement_types" */ -export interface e_league_movement_types_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_league_movement_types[] - __typename: 'e_league_movement_types_mutation_response' -} - - -/** select columns of table "e_league_movement_types" */ -export type e_league_movement_types_select_column = 'description' | 'value' - - -/** update columns of table "e_league_movement_types" */ -export type e_league_movement_types_update_column = 'description' | 'value' - - -/** columns and relationships of "e_league_proposal_statuses" */ -export interface e_league_proposal_statuses { - description: Scalars['String'] - value: Scalars['String'] - __typename: 'e_league_proposal_statuses' -} - - -/** aggregated selection of "e_league_proposal_statuses" */ -export interface e_league_proposal_statuses_aggregate { - aggregate: (e_league_proposal_statuses_aggregate_fields | null) - nodes: e_league_proposal_statuses[] - __typename: 'e_league_proposal_statuses_aggregate' -} - - -/** aggregate fields of "e_league_proposal_statuses" */ -export interface e_league_proposal_statuses_aggregate_fields { - count: Scalars['Int'] - max: (e_league_proposal_statuses_max_fields | null) - min: (e_league_proposal_statuses_min_fields | null) - __typename: 'e_league_proposal_statuses_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_league_proposal_statuses" */ -export type e_league_proposal_statuses_constraint = 'e_league_proposal_statuses_pkey' - -export type e_league_proposal_statuses_enum = 'Accepted' | 'Countered' | 'Declined' | 'Expired' | 'Pending' | 'Superseded' - - -/** aggregate max on columns */ -export interface e_league_proposal_statuses_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_league_proposal_statuses_max_fields' -} - - -/** aggregate min on columns */ -export interface e_league_proposal_statuses_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_league_proposal_statuses_min_fields' -} - - -/** response of any mutation on the table "e_league_proposal_statuses" */ -export interface e_league_proposal_statuses_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_league_proposal_statuses[] - __typename: 'e_league_proposal_statuses_mutation_response' -} - - -/** select columns of table "e_league_proposal_statuses" */ -export type e_league_proposal_statuses_select_column = 'description' | 'value' - - -/** update columns of table "e_league_proposal_statuses" */ -export type e_league_proposal_statuses_update_column = 'description' | 'value' - - -/** columns and relationships of "e_league_registration_statuses" */ -export interface e_league_registration_statuses { - description: Scalars['String'] - value: Scalars['String'] - __typename: 'e_league_registration_statuses' -} - - -/** aggregated selection of "e_league_registration_statuses" */ -export interface e_league_registration_statuses_aggregate { - aggregate: (e_league_registration_statuses_aggregate_fields | null) - nodes: e_league_registration_statuses[] - __typename: 'e_league_registration_statuses_aggregate' -} - - -/** aggregate fields of "e_league_registration_statuses" */ -export interface e_league_registration_statuses_aggregate_fields { - count: Scalars['Int'] - max: (e_league_registration_statuses_max_fields | null) - min: (e_league_registration_statuses_min_fields | null) - __typename: 'e_league_registration_statuses_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_league_registration_statuses" */ -export type e_league_registration_statuses_constraint = 'e_league_registration_statuses_pkey' - -export type e_league_registration_statuses_enum = 'Approved' | 'Declined' | 'Pending' | 'Waitlisted' | 'Withdrawn' - - -/** aggregate max on columns */ -export interface e_league_registration_statuses_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_league_registration_statuses_max_fields' -} - - -/** aggregate min on columns */ -export interface e_league_registration_statuses_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_league_registration_statuses_min_fields' -} - - -/** response of any mutation on the table "e_league_registration_statuses" */ -export interface e_league_registration_statuses_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_league_registration_statuses[] - __typename: 'e_league_registration_statuses_mutation_response' -} - - -/** select columns of table "e_league_registration_statuses" */ -export type e_league_registration_statuses_select_column = 'description' | 'value' - - -/** update columns of table "e_league_registration_statuses" */ -export type e_league_registration_statuses_update_column = 'description' | 'value' - - -/** columns and relationships of "e_league_season_statuses" */ -export interface e_league_season_statuses { - description: Scalars['String'] - value: Scalars['String'] - __typename: 'e_league_season_statuses' -} - - -/** aggregated selection of "e_league_season_statuses" */ -export interface e_league_season_statuses_aggregate { - aggregate: (e_league_season_statuses_aggregate_fields | null) - nodes: e_league_season_statuses[] - __typename: 'e_league_season_statuses_aggregate' -} - - -/** aggregate fields of "e_league_season_statuses" */ -export interface e_league_season_statuses_aggregate_fields { - count: Scalars['Int'] - max: (e_league_season_statuses_max_fields | null) - min: (e_league_season_statuses_min_fields | null) - __typename: 'e_league_season_statuses_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_league_season_statuses" */ -export type e_league_season_statuses_constraint = 'e_league_season_statuses_pkey' - -export type e_league_season_statuses_enum = 'Canceled' | 'Finished' | 'Live' | 'Playoffs' | 'RegistrationClosed' | 'RegistrationOpen' | 'Setup' - - -/** aggregate max on columns */ -export interface e_league_season_statuses_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_league_season_statuses_max_fields' -} - - -/** aggregate min on columns */ -export interface e_league_season_statuses_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_league_season_statuses_min_fields' -} - - -/** response of any mutation on the table "e_league_season_statuses" */ -export interface e_league_season_statuses_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_league_season_statuses[] - __typename: 'e_league_season_statuses_mutation_response' -} - - -/** select columns of table "e_league_season_statuses" */ -export type e_league_season_statuses_select_column = 'description' | 'value' - - -/** update columns of table "e_league_season_statuses" */ -export type e_league_season_statuses_update_column = 'description' | 'value' - - -/** columns and relationships of "e_lobby_access" */ -export interface e_lobby_access { - description: Scalars['String'] - value: Scalars['String'] - __typename: 'e_lobby_access' -} - - -/** aggregated selection of "e_lobby_access" */ -export interface e_lobby_access_aggregate { - aggregate: (e_lobby_access_aggregate_fields | null) - nodes: e_lobby_access[] - __typename: 'e_lobby_access_aggregate' -} - - -/** aggregate fields of "e_lobby_access" */ -export interface e_lobby_access_aggregate_fields { - count: Scalars['Int'] - max: (e_lobby_access_max_fields | null) - min: (e_lobby_access_min_fields | null) - __typename: 'e_lobby_access_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_lobby_access" */ -export type e_lobby_access_constraint = 'e_lobby_access_pkey' - -export type e_lobby_access_enum = 'Friends' | 'Invite' | 'Open' | 'Private' - - -/** aggregate max on columns */ -export interface e_lobby_access_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_lobby_access_max_fields' -} - - -/** aggregate min on columns */ -export interface e_lobby_access_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_lobby_access_min_fields' -} - - -/** response of any mutation on the table "e_lobby_access" */ -export interface e_lobby_access_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_lobby_access[] - __typename: 'e_lobby_access_mutation_response' -} - - -/** select columns of table "e_lobby_access" */ -export type e_lobby_access_select_column = 'description' | 'value' - - -/** update columns of table "e_lobby_access" */ -export type e_lobby_access_update_column = 'description' | 'value' - - -/** columns and relationships of "e_lobby_player_status" */ -export interface e_lobby_player_status { - description: Scalars['String'] - value: Scalars['String'] - __typename: 'e_lobby_player_status' -} - - -/** aggregated selection of "e_lobby_player_status" */ -export interface e_lobby_player_status_aggregate { - aggregate: (e_lobby_player_status_aggregate_fields | null) - nodes: e_lobby_player_status[] - __typename: 'e_lobby_player_status_aggregate' -} - - -/** aggregate fields of "e_lobby_player_status" */ -export interface e_lobby_player_status_aggregate_fields { - count: Scalars['Int'] - max: (e_lobby_player_status_max_fields | null) - min: (e_lobby_player_status_min_fields | null) - __typename: 'e_lobby_player_status_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_lobby_player_status" */ -export type e_lobby_player_status_constraint = 'e_lobby_player_status_pkey' - -export type e_lobby_player_status_enum = 'Accepted' | 'Invited' - - -/** aggregate max on columns */ -export interface e_lobby_player_status_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_lobby_player_status_max_fields' -} - - -/** aggregate min on columns */ -export interface e_lobby_player_status_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_lobby_player_status_min_fields' -} - - -/** response of any mutation on the table "e_lobby_player_status" */ -export interface e_lobby_player_status_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_lobby_player_status[] - __typename: 'e_lobby_player_status_mutation_response' -} - - -/** select columns of table "e_lobby_player_status" */ -export type e_lobby_player_status_select_column = 'description' | 'value' - - -/** update columns of table "e_lobby_player_status" */ -export type e_lobby_player_status_update_column = 'description' | 'value' - - -/** columns and relationships of "e_map_pool_types" */ -export interface e_map_pool_types { - description: (Scalars['String'] | null) - value: Scalars['String'] - __typename: 'e_map_pool_types' -} - - -/** aggregated selection of "e_map_pool_types" */ -export interface e_map_pool_types_aggregate { - aggregate: (e_map_pool_types_aggregate_fields | null) - nodes: e_map_pool_types[] - __typename: 'e_map_pool_types_aggregate' -} - - -/** aggregate fields of "e_map_pool_types" */ -export interface e_map_pool_types_aggregate_fields { - count: Scalars['Int'] - max: (e_map_pool_types_max_fields | null) - min: (e_map_pool_types_min_fields | null) - __typename: 'e_map_pool_types_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_map_pool_types" */ -export type e_map_pool_types_constraint = 'e_map_pool_types_pkey' - -export type e_map_pool_types_enum = 'Competitive' | 'Custom' | 'Duel' | 'Wingman' - - -/** aggregate max on columns */ -export interface e_map_pool_types_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_map_pool_types_max_fields' -} - - -/** aggregate min on columns */ -export interface e_map_pool_types_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_map_pool_types_min_fields' -} - - -/** response of any mutation on the table "e_map_pool_types" */ -export interface e_map_pool_types_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_map_pool_types[] - __typename: 'e_map_pool_types_mutation_response' -} - - -/** select columns of table "e_map_pool_types" */ -export type e_map_pool_types_select_column = 'description' | 'value' - - -/** update columns of table "e_map_pool_types" */ -export type e_map_pool_types_update_column = 'description' | 'value' - - -/** columns and relationships of "e_match_clip_visibility" */ -export interface e_match_clip_visibility { - description: Scalars['String'] - /** An array relationship */ - match_clips: match_clips[] - /** An aggregate relationship */ - match_clips_aggregate: match_clips_aggregate - value: Scalars['String'] - __typename: 'e_match_clip_visibility' -} - - -/** aggregated selection of "e_match_clip_visibility" */ -export interface e_match_clip_visibility_aggregate { - aggregate: (e_match_clip_visibility_aggregate_fields | null) - nodes: e_match_clip_visibility[] - __typename: 'e_match_clip_visibility_aggregate' -} - - -/** aggregate fields of "e_match_clip_visibility" */ -export interface e_match_clip_visibility_aggregate_fields { - count: Scalars['Int'] - max: (e_match_clip_visibility_max_fields | null) - min: (e_match_clip_visibility_min_fields | null) - __typename: 'e_match_clip_visibility_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_match_clip_visibility" */ -export type e_match_clip_visibility_constraint = 'e_match_clip_visibility_pkey' - -export type e_match_clip_visibility_enum = 'match' | 'private' | 'public' - - -/** aggregate max on columns */ -export interface e_match_clip_visibility_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_match_clip_visibility_max_fields' -} - - -/** aggregate min on columns */ -export interface e_match_clip_visibility_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_match_clip_visibility_min_fields' -} - - -/** response of any mutation on the table "e_match_clip_visibility" */ -export interface e_match_clip_visibility_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_match_clip_visibility[] - __typename: 'e_match_clip_visibility_mutation_response' -} - - -/** select columns of table "e_match_clip_visibility" */ -export type e_match_clip_visibility_select_column = 'description' | 'value' - - -/** update columns of table "e_match_clip_visibility" */ -export type e_match_clip_visibility_update_column = 'description' | 'value' - - -/** columns and relationships of "e_match_map_status" */ -export interface e_match_map_status { - description: Scalars['String'] - /** An array relationship */ - match_maps: match_maps[] - /** An aggregate relationship */ - match_maps_aggregate: match_maps_aggregate - value: Scalars['String'] - __typename: 'e_match_map_status' -} - - -/** aggregated selection of "e_match_map_status" */ -export interface e_match_map_status_aggregate { - aggregate: (e_match_map_status_aggregate_fields | null) - nodes: e_match_map_status[] - __typename: 'e_match_map_status_aggregate' -} - - -/** aggregate fields of "e_match_map_status" */ -export interface e_match_map_status_aggregate_fields { - count: Scalars['Int'] - max: (e_match_map_status_max_fields | null) - min: (e_match_map_status_min_fields | null) - __typename: 'e_match_map_status_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_match_map_status" */ -export type e_match_map_status_constraint = 'match_map_status_pkey' - -export type e_match_map_status_enum = 'Canceled' | 'Finished' | 'Knife' | 'Live' | 'Overtime' | 'Paused' | 'Scheduled' | 'Surrendered' | 'UploadingDemo' | 'WaitingForTV' | 'Warmup' - - -/** aggregate max on columns */ -export interface e_match_map_status_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_match_map_status_max_fields' -} - - -/** aggregate min on columns */ -export interface e_match_map_status_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_match_map_status_min_fields' -} - - -/** response of any mutation on the table "e_match_map_status" */ -export interface e_match_map_status_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_match_map_status[] - __typename: 'e_match_map_status_mutation_response' -} - - -/** select columns of table "e_match_map_status" */ -export type e_match_map_status_select_column = 'description' | 'value' - - -/** update columns of table "e_match_map_status" */ -export type e_match_map_status_update_column = 'description' | 'value' - - -/** columns and relationships of "e_match_mode" */ -export interface e_match_mode { - description: Scalars['String'] - value: Scalars['String'] - __typename: 'e_match_mode' -} - - -/** aggregated selection of "e_match_mode" */ -export interface e_match_mode_aggregate { - aggregate: (e_match_mode_aggregate_fields | null) - nodes: e_match_mode[] - __typename: 'e_match_mode_aggregate' -} - - -/** aggregate fields of "e_match_mode" */ -export interface e_match_mode_aggregate_fields { - count: Scalars['Int'] - max: (e_match_mode_max_fields | null) - min: (e_match_mode_min_fields | null) - __typename: 'e_match_mode_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_match_mode" */ -export type e_match_mode_constraint = 'e_match_mode_pkey' - -export type e_match_mode_enum = 'admin' | 'auto' - - -/** aggregate max on columns */ -export interface e_match_mode_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_match_mode_max_fields' -} - - -/** aggregate min on columns */ -export interface e_match_mode_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_match_mode_min_fields' -} - - -/** response of any mutation on the table "e_match_mode" */ -export interface e_match_mode_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_match_mode[] - __typename: 'e_match_mode_mutation_response' -} - - -/** select columns of table "e_match_mode" */ -export type e_match_mode_select_column = 'description' | 'value' - - -/** update columns of table "e_match_mode" */ -export type e_match_mode_update_column = 'description' | 'value' - - -/** columns and relationships of "e_match_party_sources" */ -export interface e_match_party_sources { - description: Scalars['String'] - /** An array relationship */ - match_lineup_players: match_lineup_players[] - /** An aggregate relationship */ - match_lineup_players_aggregate: match_lineup_players_aggregate - value: Scalars['String'] - __typename: 'e_match_party_sources' -} - - -/** aggregated selection of "e_match_party_sources" */ -export interface e_match_party_sources_aggregate { - aggregate: (e_match_party_sources_aggregate_fields | null) - nodes: e_match_party_sources[] - __typename: 'e_match_party_sources_aggregate' -} - - -/** aggregate fields of "e_match_party_sources" */ -export interface e_match_party_sources_aggregate_fields { - count: Scalars['Int'] - max: (e_match_party_sources_max_fields | null) - min: (e_match_party_sources_min_fields | null) - __typename: 'e_match_party_sources_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_match_party_sources" */ -export type e_match_party_sources_constraint = 'e_match_party_sources_pkey' - -export type e_match_party_sources_enum = 'faceit' | 'lobby' | 'valve' - - -/** aggregate max on columns */ -export interface e_match_party_sources_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_match_party_sources_max_fields' -} - - -/** aggregate min on columns */ -export interface e_match_party_sources_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_match_party_sources_min_fields' -} - - -/** response of any mutation on the table "e_match_party_sources" */ -export interface e_match_party_sources_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_match_party_sources[] - __typename: 'e_match_party_sources_mutation_response' -} - - -/** select columns of table "e_match_party_sources" */ -export type e_match_party_sources_select_column = 'description' | 'value' - - -/** update columns of table "e_match_party_sources" */ -export type e_match_party_sources_update_column = 'description' | 'value' - - -/** columns and relationships of "e_match_status" */ -export interface e_match_status { - description: Scalars['String'] - /** An array relationship */ - matches: matches[] - /** An aggregate relationship */ - matches_aggregate: matches_aggregate - value: Scalars['String'] - __typename: 'e_match_status' -} - - -/** aggregated selection of "e_match_status" */ -export interface e_match_status_aggregate { - aggregate: (e_match_status_aggregate_fields | null) - nodes: e_match_status[] - __typename: 'e_match_status_aggregate' -} - - -/** aggregate fields of "e_match_status" */ -export interface e_match_status_aggregate_fields { - count: Scalars['Int'] - max: (e_match_status_max_fields | null) - min: (e_match_status_min_fields | null) - __typename: 'e_match_status_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_match_status" */ -export type e_match_status_constraint = 'e_match_status_pkey' - -export type e_match_status_enum = 'Canceled' | 'Finished' | 'Forfeit' | 'Live' | 'PickingPlayers' | 'Scheduled' | 'Surrendered' | 'Tie' | 'Veto' | 'WaitingForCheckIn' | 'WaitingForServer' - - -/** aggregate max on columns */ -export interface e_match_status_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_match_status_max_fields' -} - - -/** aggregate min on columns */ -export interface e_match_status_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_match_status_min_fields' -} - - -/** response of any mutation on the table "e_match_status" */ -export interface e_match_status_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_match_status[] - __typename: 'e_match_status_mutation_response' -} - - -/** select columns of table "e_match_status" */ -export type e_match_status_select_column = 'description' | 'value' - - -/** update columns of table "e_match_status" */ -export type e_match_status_update_column = 'description' | 'value' - - -/** columns and relationships of "e_match_types" */ -export interface e_match_types { - description: Scalars['String'] - /** An array relationship */ - maps: maps[] - /** An aggregate relationship */ - maps_aggregate: maps_aggregate - value: Scalars['String'] - __typename: 'e_match_types' -} - - -/** aggregated selection of "e_match_types" */ -export interface e_match_types_aggregate { - aggregate: (e_match_types_aggregate_fields | null) - nodes: e_match_types[] - __typename: 'e_match_types_aggregate' -} - - -/** aggregate fields of "e_match_types" */ -export interface e_match_types_aggregate_fields { - count: Scalars['Int'] - max: (e_match_types_max_fields | null) - min: (e_match_types_min_fields | null) - __typename: 'e_match_types_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_match_types" */ -export type e_match_types_constraint = 'e_match_types_pkey' - -export type e_match_types_enum = 'Competitive' | 'Duel' | 'Faceit' | 'Premier' | 'Wingman' - - -/** aggregate max on columns */ -export interface e_match_types_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_match_types_max_fields' -} - - -/** aggregate min on columns */ -export interface e_match_types_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_match_types_min_fields' -} - - -/** response of any mutation on the table "e_match_types" */ -export interface e_match_types_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_match_types[] - __typename: 'e_match_types_mutation_response' -} - - -/** select columns of table "e_match_types" */ -export type e_match_types_select_column = 'description' | 'value' - - -/** update columns of table "e_match_types" */ -export type e_match_types_update_column = 'description' | 'value' - - -/** columns and relationships of "e_notification_types" */ -export interface e_notification_types { - description: Scalars['String'] - value: Scalars['String'] - __typename: 'e_notification_types' -} - - -/** aggregated selection of "e_notification_types" */ -export interface e_notification_types_aggregate { - aggregate: (e_notification_types_aggregate_fields | null) - nodes: e_notification_types[] - __typename: 'e_notification_types_aggregate' -} - - -/** aggregate fields of "e_notification_types" */ -export interface e_notification_types_aggregate_fields { - count: Scalars['Int'] - max: (e_notification_types_max_fields | null) - min: (e_notification_types_min_fields | null) - __typename: 'e_notification_types_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_notification_types" */ -export type e_notification_types_constraint = 'e_notification_types_pkey' - -export type e_notification_types_enum = 'AwardGranted' | 'ChatMessage' | 'ClipReady' | 'DedicatedServerRconStatus' | 'DedicatedServerStatus' | 'DraftInvite' | 'EloRecompute' | 'EventReminder' | 'FormTeamSuggestion' | 'GameNodeStatus' | 'GameUpdate' | 'LeagueMatchUnscheduled' | 'LeagueProposalAccepted' | 'LeagueProposalDeclined' | 'LeagueProposalReceived' | 'LeagueRegistrationDecision' | 'LeagueRosterUndersized' | 'MatchAbandoned' | 'MatchChatMessage' | 'MatchImported' | 'MatchStatsReady' | 'MatchStatusChange' | 'MatchSupport' | 'NadeDriftScanFinished' | 'NadePracticeInvite' | 'NadePracticeReady' | 'NameChangeApproved' | 'NameChangeDenied' | 'NameChangeRequest' | 'NewsPublished' | 'PlayerReindex' | 'PlayerSanctioned' | 'ScrimAlertMatch' | 'ScrimMatchCanceled' | 'ScrimMatchScheduled' | 'ScrimRequestAccepted' | 'ScrimRequestCountered' | 'ScrimRequestDeclined' | 'ScrimRequestExpired' | 'ScrimRequestReceived' | 'ScrimTimeChanged' | 'SeasonEnded' | 'StorageScan' | 'TeamInvite' | 'TournamentCheckInClosing' | 'TournamentCheckInMissed' | 'TournamentCheckInOpen' | 'TournamentCreated' | 'TournamentInvite' | 'TournamentPartySignup' | 'TournamentReminder' | 'TournamentTeamInvite' | 'UtilityDriftScanFinished' | 'UtilityPracticeInvite' | 'UtilityPracticeReady' - - -/** aggregate max on columns */ -export interface e_notification_types_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_notification_types_max_fields' -} - - -/** aggregate min on columns */ -export interface e_notification_types_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_notification_types_min_fields' -} - - -/** response of any mutation on the table "e_notification_types" */ -export interface e_notification_types_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_notification_types[] - __typename: 'e_notification_types_mutation_response' -} - - -/** select columns of table "e_notification_types" */ -export type e_notification_types_select_column = 'description' | 'value' - - -/** update columns of table "e_notification_types" */ -export type e_notification_types_update_column = 'description' | 'value' - - -/** columns and relationships of "e_objective_types" */ -export interface e_objective_types { - description: Scalars['String'] - /** An array relationship */ - player_objectives: player_objectives[] - /** An aggregate relationship */ - player_objectives_aggregate: player_objectives_aggregate - value: Scalars['String'] - __typename: 'e_objective_types' -} - - -/** aggregated selection of "e_objective_types" */ -export interface e_objective_types_aggregate { - aggregate: (e_objective_types_aggregate_fields | null) - nodes: e_objective_types[] - __typename: 'e_objective_types_aggregate' -} - - -/** aggregate fields of "e_objective_types" */ -export interface e_objective_types_aggregate_fields { - count: Scalars['Int'] - max: (e_objective_types_max_fields | null) - min: (e_objective_types_min_fields | null) - __typename: 'e_objective_types_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_objective_types" */ -export type e_objective_types_constraint = 'e_objective__pkey' - -export type e_objective_types_enum = 'Defused' | 'Exploded' | 'Planted' - - -/** aggregate max on columns */ -export interface e_objective_types_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_objective_types_max_fields' -} - - -/** aggregate min on columns */ -export interface e_objective_types_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_objective_types_min_fields' -} - - -/** response of any mutation on the table "e_objective_types" */ -export interface e_objective_types_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_objective_types[] - __typename: 'e_objective_types_mutation_response' -} - - -/** select columns of table "e_objective_types" */ -export type e_objective_types_select_column = 'description' | 'value' - - -/** update columns of table "e_objective_types" */ -export type e_objective_types_update_column = 'description' | 'value' - - -/** columns and relationships of "e_player_roles" */ -export interface e_player_roles { - description: Scalars['String'] - value: Scalars['String'] - __typename: 'e_player_roles' -} - - -/** aggregated selection of "e_player_roles" */ -export interface e_player_roles_aggregate { - aggregate: (e_player_roles_aggregate_fields | null) - nodes: e_player_roles[] - __typename: 'e_player_roles_aggregate' -} - - -/** aggregate fields of "e_player_roles" */ -export interface e_player_roles_aggregate_fields { - count: Scalars['Int'] - max: (e_player_roles_max_fields | null) - min: (e_player_roles_min_fields | null) - __typename: 'e_player_roles_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_player_roles" */ -export type e_player_roles_constraint = 'e_player_roles_pkey' - -export type e_player_roles_enum = 'administrator' | 'match_organizer' | 'moderator' | 'streamer' | 'tournament_organizer' | 'user' | 'verified_user' - - -/** aggregate max on columns */ -export interface e_player_roles_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_player_roles_max_fields' -} - - -/** aggregate min on columns */ -export interface e_player_roles_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_player_roles_min_fields' -} - - -/** response of any mutation on the table "e_player_roles" */ -export interface e_player_roles_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_player_roles[] - __typename: 'e_player_roles_mutation_response' -} - - -/** select columns of table "e_player_roles" */ -export type e_player_roles_select_column = 'description' | 'value' - - -/** update columns of table "e_player_roles" */ -export type e_player_roles_update_column = 'description' | 'value' - - -/** columns and relationships of "e_plugin_runtimes" */ -export interface e_plugin_runtimes { - description: Scalars['String'] - value: Scalars['String'] - __typename: 'e_plugin_runtimes' -} - - -/** aggregated selection of "e_plugin_runtimes" */ -export interface e_plugin_runtimes_aggregate { - aggregate: (e_plugin_runtimes_aggregate_fields | null) - nodes: e_plugin_runtimes[] - __typename: 'e_plugin_runtimes_aggregate' -} - - -/** aggregate fields of "e_plugin_runtimes" */ -export interface e_plugin_runtimes_aggregate_fields { - count: Scalars['Int'] - max: (e_plugin_runtimes_max_fields | null) - min: (e_plugin_runtimes_min_fields | null) - __typename: 'e_plugin_runtimes_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_plugin_runtimes" */ -export type e_plugin_runtimes_constraint = 'e_plugin_runtimes_pkey' - -export type e_plugin_runtimes_enum = 'counterstrikesharp' | 'swiftlys2' - - -/** aggregate max on columns */ -export interface e_plugin_runtimes_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_plugin_runtimes_max_fields' -} - - -/** aggregate min on columns */ -export interface e_plugin_runtimes_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_plugin_runtimes_min_fields' -} - - -/** response of any mutation on the table "e_plugin_runtimes" */ -export interface e_plugin_runtimes_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_plugin_runtimes[] - __typename: 'e_plugin_runtimes_mutation_response' -} - - -/** select columns of table "e_plugin_runtimes" */ -export type e_plugin_runtimes_select_column = 'description' | 'value' - - -/** update columns of table "e_plugin_runtimes" */ -export type e_plugin_runtimes_update_column = 'description' | 'value' - - -/** columns and relationships of "e_ready_settings" */ -export interface e_ready_settings { - description: Scalars['String'] - value: Scalars['String'] - __typename: 'e_ready_settings' -} - - -/** aggregated selection of "e_ready_settings" */ -export interface e_ready_settings_aggregate { - aggregate: (e_ready_settings_aggregate_fields | null) - nodes: e_ready_settings[] - __typename: 'e_ready_settings_aggregate' -} - - -/** aggregate fields of "e_ready_settings" */ -export interface e_ready_settings_aggregate_fields { - count: Scalars['Int'] - max: (e_ready_settings_max_fields | null) - min: (e_ready_settings_min_fields | null) - __typename: 'e_ready_settings_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_ready_settings" */ -export type e_ready_settings_constraint = 'e_ready_settings_pkey' - -export type e_ready_settings_enum = 'Admin' | 'Captains' | 'Coach' | 'Players' - - -/** aggregate max on columns */ -export interface e_ready_settings_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_ready_settings_max_fields' -} - - -/** aggregate min on columns */ -export interface e_ready_settings_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_ready_settings_min_fields' -} - - -/** response of any mutation on the table "e_ready_settings" */ -export interface e_ready_settings_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_ready_settings[] - __typename: 'e_ready_settings_mutation_response' -} - - -/** select columns of table "e_ready_settings" */ -export type e_ready_settings_select_column = 'description' | 'value' - - -/** update columns of table "e_ready_settings" */ -export type e_ready_settings_update_column = 'description' | 'value' - - -/** columns and relationships of "e_sanction_scopes" */ -export interface e_sanction_scopes { - description: Scalars['String'] - value: Scalars['String'] - __typename: 'e_sanction_scopes' -} - - -/** aggregated selection of "e_sanction_scopes" */ -export interface e_sanction_scopes_aggregate { - aggregate: (e_sanction_scopes_aggregate_fields | null) - nodes: e_sanction_scopes[] - __typename: 'e_sanction_scopes_aggregate' -} - - -/** aggregate fields of "e_sanction_scopes" */ -export interface e_sanction_scopes_aggregate_fields { - count: Scalars['Int'] - max: (e_sanction_scopes_max_fields | null) - min: (e_sanction_scopes_min_fields | null) - __typename: 'e_sanction_scopes_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_sanction_scopes" */ -export type e_sanction_scopes_constraint = 'e_sanction_scopes_pkey' - - -/** aggregate max on columns */ -export interface e_sanction_scopes_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_sanction_scopes_max_fields' -} - - -/** aggregate min on columns */ -export interface e_sanction_scopes_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_sanction_scopes_min_fields' -} - - -/** response of any mutation on the table "e_sanction_scopes" */ -export interface e_sanction_scopes_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_sanction_scopes[] - __typename: 'e_sanction_scopes_mutation_response' -} - - -/** select columns of table "e_sanction_scopes" */ -export type e_sanction_scopes_select_column = 'description' | 'value' - - -/** update columns of table "e_sanction_scopes" */ -export type e_sanction_scopes_update_column = 'description' | 'value' - - -/** columns and relationships of "e_sanction_sources" */ -export interface e_sanction_sources { - /** Comma separated ban durations in minutes, indexed by occurrence count */ - default_durations: Scalars['String'] - default_enabled: Scalars['Boolean'] - default_scope: Scalars['String'] - default_threshold: Scalars['Int'] - default_window_days: Scalars['Int'] - description: Scalars['String'] - /** An object relationship */ - e_sanction_scope: e_sanction_scopes - value: Scalars['String'] - /** Source issues a player_sanctions ban row instead of a scoped cooldown */ - writes_platform_ban: Scalars['Boolean'] - __typename: 'e_sanction_sources' -} - - -/** aggregated selection of "e_sanction_sources" */ -export interface e_sanction_sources_aggregate { - aggregate: (e_sanction_sources_aggregate_fields | null) - nodes: e_sanction_sources[] - __typename: 'e_sanction_sources_aggregate' -} - - -/** aggregate fields of "e_sanction_sources" */ -export interface e_sanction_sources_aggregate_fields { - avg: (e_sanction_sources_avg_fields | null) - count: Scalars['Int'] - max: (e_sanction_sources_max_fields | null) - min: (e_sanction_sources_min_fields | null) - stddev: (e_sanction_sources_stddev_fields | null) - stddev_pop: (e_sanction_sources_stddev_pop_fields | null) - stddev_samp: (e_sanction_sources_stddev_samp_fields | null) - sum: (e_sanction_sources_sum_fields | null) - var_pop: (e_sanction_sources_var_pop_fields | null) - var_samp: (e_sanction_sources_var_samp_fields | null) - variance: (e_sanction_sources_variance_fields | null) - __typename: 'e_sanction_sources_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface e_sanction_sources_avg_fields { - default_threshold: (Scalars['Float'] | null) - default_window_days: (Scalars['Float'] | null) - __typename: 'e_sanction_sources_avg_fields' -} - - -/** unique or primary key constraints on table "e_sanction_sources" */ -export type e_sanction_sources_constraint = 'e_sanction_sources_pkey' - - -/** aggregate max on columns */ -export interface e_sanction_sources_max_fields { - /** Comma separated ban durations in minutes, indexed by occurrence count */ - default_durations: (Scalars['String'] | null) - default_scope: (Scalars['String'] | null) - default_threshold: (Scalars['Int'] | null) - default_window_days: (Scalars['Int'] | null) - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_sanction_sources_max_fields' -} - - -/** aggregate min on columns */ -export interface e_sanction_sources_min_fields { - /** Comma separated ban durations in minutes, indexed by occurrence count */ - default_durations: (Scalars['String'] | null) - default_scope: (Scalars['String'] | null) - default_threshold: (Scalars['Int'] | null) - default_window_days: (Scalars['Int'] | null) - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_sanction_sources_min_fields' -} - - -/** response of any mutation on the table "e_sanction_sources" */ -export interface e_sanction_sources_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_sanction_sources[] - __typename: 'e_sanction_sources_mutation_response' -} - - -/** select columns of table "e_sanction_sources" */ -export type e_sanction_sources_select_column = 'default_durations' | 'default_enabled' | 'default_scope' | 'default_threshold' | 'default_window_days' | 'description' | 'value' | 'writes_platform_ban' - - -/** aggregate stddev on columns */ -export interface e_sanction_sources_stddev_fields { - default_threshold: (Scalars['Float'] | null) - default_window_days: (Scalars['Float'] | null) - __typename: 'e_sanction_sources_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface e_sanction_sources_stddev_pop_fields { - default_threshold: (Scalars['Float'] | null) - default_window_days: (Scalars['Float'] | null) - __typename: 'e_sanction_sources_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface e_sanction_sources_stddev_samp_fields { - default_threshold: (Scalars['Float'] | null) - default_window_days: (Scalars['Float'] | null) - __typename: 'e_sanction_sources_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface e_sanction_sources_sum_fields { - default_threshold: (Scalars['Int'] | null) - default_window_days: (Scalars['Int'] | null) - __typename: 'e_sanction_sources_sum_fields' -} - - -/** update columns of table "e_sanction_sources" */ -export type e_sanction_sources_update_column = 'default_durations' | 'default_enabled' | 'default_scope' | 'default_threshold' | 'default_window_days' | 'description' | 'value' | 'writes_platform_ban' - - -/** aggregate var_pop on columns */ -export interface e_sanction_sources_var_pop_fields { - default_threshold: (Scalars['Float'] | null) - default_window_days: (Scalars['Float'] | null) - __typename: 'e_sanction_sources_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface e_sanction_sources_var_samp_fields { - default_threshold: (Scalars['Float'] | null) - default_window_days: (Scalars['Float'] | null) - __typename: 'e_sanction_sources_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface e_sanction_sources_variance_fields { - default_threshold: (Scalars['Float'] | null) - default_window_days: (Scalars['Float'] | null) - __typename: 'e_sanction_sources_variance_fields' -} - - -/** columns and relationships of "e_sanction_types" */ -export interface e_sanction_types { - description: Scalars['String'] - value: Scalars['String'] - __typename: 'e_sanction_types' -} - - -/** aggregated selection of "e_sanction_types" */ -export interface e_sanction_types_aggregate { - aggregate: (e_sanction_types_aggregate_fields | null) - nodes: e_sanction_types[] - __typename: 'e_sanction_types_aggregate' -} - - -/** aggregate fields of "e_sanction_types" */ -export interface e_sanction_types_aggregate_fields { - count: Scalars['Int'] - max: (e_sanction_types_max_fields | null) - min: (e_sanction_types_min_fields | null) - __typename: 'e_sanction_types_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_sanction_types" */ -export type e_sanction_types_constraint = 'e_sanction_types_pkey' - -export type e_sanction_types_enum = 'ban' | 'gag' | 'mute' | 'silence' - - -/** aggregate max on columns */ -export interface e_sanction_types_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_sanction_types_max_fields' -} - - -/** aggregate min on columns */ -export interface e_sanction_types_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_sanction_types_min_fields' -} - - -/** response of any mutation on the table "e_sanction_types" */ -export interface e_sanction_types_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_sanction_types[] - __typename: 'e_sanction_types_mutation_response' -} - - -/** select columns of table "e_sanction_types" */ -export type e_sanction_types_select_column = 'description' | 'value' - - -/** update columns of table "e_sanction_types" */ -export type e_sanction_types_update_column = 'description' | 'value' - - -/** columns and relationships of "e_scrim_request_statuses" */ -export interface e_scrim_request_statuses { - description: Scalars['String'] - /** An array relationship */ - scrim_requests: team_scrim_requests[] - /** An aggregate relationship */ - scrim_requests_aggregate: team_scrim_requests_aggregate - value: Scalars['String'] - __typename: 'e_scrim_request_statuses' -} - - -/** aggregated selection of "e_scrim_request_statuses" */ -export interface e_scrim_request_statuses_aggregate { - aggregate: (e_scrim_request_statuses_aggregate_fields | null) - nodes: e_scrim_request_statuses[] - __typename: 'e_scrim_request_statuses_aggregate' -} - - -/** aggregate fields of "e_scrim_request_statuses" */ -export interface e_scrim_request_statuses_aggregate_fields { - count: Scalars['Int'] - max: (e_scrim_request_statuses_max_fields | null) - min: (e_scrim_request_statuses_min_fields | null) - __typename: 'e_scrim_request_statuses_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_scrim_request_statuses" */ -export type e_scrim_request_statuses_constraint = 'e_scrim_request_statuses_pkey' - -export type e_scrim_request_statuses_enum = 'Accepted' | 'Cancelled' | 'Countered' | 'Declined' | 'Expired' | 'Matched' | 'Pending' - - -/** aggregate max on columns */ -export interface e_scrim_request_statuses_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_scrim_request_statuses_max_fields' -} - - -/** aggregate min on columns */ -export interface e_scrim_request_statuses_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_scrim_request_statuses_min_fields' -} - - -/** response of any mutation on the table "e_scrim_request_statuses" */ -export interface e_scrim_request_statuses_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_scrim_request_statuses[] - __typename: 'e_scrim_request_statuses_mutation_response' -} - - -/** select columns of table "e_scrim_request_statuses" */ -export type e_scrim_request_statuses_select_column = 'description' | 'value' - - -/** update columns of table "e_scrim_request_statuses" */ -export type e_scrim_request_statuses_update_column = 'description' | 'value' - - -/** columns and relationships of "e_server_types" */ -export interface e_server_types { - description: Scalars['String'] - /** An array relationship */ - servers: servers[] - /** An aggregate relationship */ - servers_aggregate: servers_aggregate - value: Scalars['String'] - __typename: 'e_server_types' -} - - -/** aggregated selection of "e_server_types" */ -export interface e_server_types_aggregate { - aggregate: (e_server_types_aggregate_fields | null) - nodes: e_server_types[] - __typename: 'e_server_types_aggregate' -} - - -/** aggregate fields of "e_server_types" */ -export interface e_server_types_aggregate_fields { - count: Scalars['Int'] - max: (e_server_types_max_fields | null) - min: (e_server_types_min_fields | null) - __typename: 'e_server_types_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_server_types" */ -export type e_server_types_constraint = 'e_server_types_pkey' - -export type e_server_types_enum = 'ArmsRace' | 'Casual' | 'Competitive' | 'Custom' | 'Deathmatch' | 'Practice' | 'Ranked' | 'Retake' | 'Wingman' - - -/** aggregate max on columns */ -export interface e_server_types_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_server_types_max_fields' -} - - -/** aggregate min on columns */ -export interface e_server_types_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_server_types_min_fields' -} - - -/** response of any mutation on the table "e_server_types" */ -export interface e_server_types_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_server_types[] - __typename: 'e_server_types_mutation_response' -} - - -/** select columns of table "e_server_types" */ -export type e_server_types_select_column = 'description' | 'value' - - -/** update columns of table "e_server_types" */ -export type e_server_types_update_column = 'description' | 'value' - - -/** columns and relationships of "e_sides" */ -export interface e_sides { - description: Scalars['String'] - /** An array relationship */ - match_map_lineup_1: match_maps[] - /** An aggregate relationship */ - match_map_lineup_1_aggregate: match_maps_aggregate - /** An array relationship */ - match_map_lineup_2: match_maps[] - /** An aggregate relationship */ - match_map_lineup_2_aggregate: match_maps_aggregate - value: Scalars['String'] - __typename: 'e_sides' -} - - -/** aggregated selection of "e_sides" */ -export interface e_sides_aggregate { - aggregate: (e_sides_aggregate_fields | null) - nodes: e_sides[] - __typename: 'e_sides_aggregate' -} - - -/** aggregate fields of "e_sides" */ -export interface e_sides_aggregate_fields { - count: Scalars['Int'] - max: (e_sides_max_fields | null) - min: (e_sides_min_fields | null) - __typename: 'e_sides_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_sides" */ -export type e_sides_constraint = 'e_teams_pkey' - -export type e_sides_enum = 'CT' | 'None' | 'Spectator' | 'TERRORIST' - - -/** aggregate max on columns */ -export interface e_sides_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_sides_max_fields' -} - - -/** aggregate min on columns */ -export interface e_sides_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_sides_min_fields' -} - - -/** response of any mutation on the table "e_sides" */ -export interface e_sides_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_sides[] - __typename: 'e_sides_mutation_response' -} - - -/** select columns of table "e_sides" */ -export type e_sides_select_column = 'description' | 'value' - - -/** update columns of table "e_sides" */ -export type e_sides_update_column = 'description' | 'value' - - -/** columns and relationships of "e_system_alert_types" */ -export interface e_system_alert_types { - description: Scalars['String'] - value: Scalars['String'] - __typename: 'e_system_alert_types' -} - - -/** aggregated selection of "e_system_alert_types" */ -export interface e_system_alert_types_aggregate { - aggregate: (e_system_alert_types_aggregate_fields | null) - nodes: e_system_alert_types[] - __typename: 'e_system_alert_types_aggregate' -} - - -/** aggregate fields of "e_system_alert_types" */ -export interface e_system_alert_types_aggregate_fields { - count: Scalars['Int'] - max: (e_system_alert_types_max_fields | null) - min: (e_system_alert_types_min_fields | null) - __typename: 'e_system_alert_types_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_system_alert_types" */ -export type e_system_alert_types_constraint = 'e_system_alert_types_pkey' - -export type e_system_alert_types_enum = 'critical' | 'info' | 'warning' - - -/** aggregate max on columns */ -export interface e_system_alert_types_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_system_alert_types_max_fields' -} - - -/** aggregate min on columns */ -export interface e_system_alert_types_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_system_alert_types_min_fields' -} - - -/** response of any mutation on the table "e_system_alert_types" */ -export interface e_system_alert_types_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_system_alert_types[] - __typename: 'e_system_alert_types_mutation_response' -} - - -/** select columns of table "e_system_alert_types" */ -export type e_system_alert_types_select_column = 'description' | 'value' - - -/** update columns of table "e_system_alert_types" */ -export type e_system_alert_types_update_column = 'description' | 'value' - - -/** columns and relationships of "e_team_roles" */ -export interface e_team_roles { - description: Scalars['String'] - /** An array relationship */ - team_rosters: team_roster[] - /** An aggregate relationship */ - team_rosters_aggregate: team_roster_aggregate - /** An array relationship */ - tournament_team_rosters: tournament_team_roster[] - /** An aggregate relationship */ - tournament_team_rosters_aggregate: tournament_team_roster_aggregate - value: Scalars['String'] - __typename: 'e_team_roles' -} - - -/** aggregated selection of "e_team_roles" */ -export interface e_team_roles_aggregate { - aggregate: (e_team_roles_aggregate_fields | null) - nodes: e_team_roles[] - __typename: 'e_team_roles_aggregate' -} - - -/** aggregate fields of "e_team_roles" */ -export interface e_team_roles_aggregate_fields { - count: Scalars['Int'] - max: (e_team_roles_max_fields | null) - min: (e_team_roles_min_fields | null) - __typename: 'e_team_roles_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_team_roles" */ -export type e_team_roles_constraint = 'e_team_roles_pkey' - -export type e_team_roles_enum = 'Admin' | 'Invite' | 'Member' - - -/** aggregate max on columns */ -export interface e_team_roles_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_team_roles_max_fields' -} - - -/** aggregate min on columns */ -export interface e_team_roles_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_team_roles_min_fields' -} - - -/** response of any mutation on the table "e_team_roles" */ -export interface e_team_roles_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_team_roles[] - __typename: 'e_team_roles_mutation_response' -} - - -/** select columns of table "e_team_roles" */ -export type e_team_roles_select_column = 'description' | 'value' - - -/** update columns of table "e_team_roles" */ -export type e_team_roles_update_column = 'description' | 'value' - - -/** columns and relationships of "e_team_roster_statuses" */ -export interface e_team_roster_statuses { - description: Scalars['String'] - value: Scalars['String'] - __typename: 'e_team_roster_statuses' -} - - -/** aggregated selection of "e_team_roster_statuses" */ -export interface e_team_roster_statuses_aggregate { - aggregate: (e_team_roster_statuses_aggregate_fields | null) - nodes: e_team_roster_statuses[] - __typename: 'e_team_roster_statuses_aggregate' -} - - -/** aggregate fields of "e_team_roster_statuses" */ -export interface e_team_roster_statuses_aggregate_fields { - count: Scalars['Int'] - max: (e_team_roster_statuses_max_fields | null) - min: (e_team_roster_statuses_min_fields | null) - __typename: 'e_team_roster_statuses_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_team_roster_statuses" */ -export type e_team_roster_statuses_constraint = 'e_team_roster_statuses_pkey' - -export type e_team_roster_statuses_enum = 'Benched' | 'Starter' | 'Substitute' - - -/** aggregate max on columns */ -export interface e_team_roster_statuses_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_team_roster_statuses_max_fields' -} - - -/** aggregate min on columns */ -export interface e_team_roster_statuses_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_team_roster_statuses_min_fields' -} - - -/** response of any mutation on the table "e_team_roster_statuses" */ -export interface e_team_roster_statuses_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_team_roster_statuses[] - __typename: 'e_team_roster_statuses_mutation_response' -} - - -/** select columns of table "e_team_roster_statuses" */ -export type e_team_roster_statuses_select_column = 'description' | 'value' - - -/** update columns of table "e_team_roster_statuses" */ -export type e_team_roster_statuses_update_column = 'description' | 'value' - - -/** columns and relationships of "e_timeout_settings" */ -export interface e_timeout_settings { - description: Scalars['String'] - value: Scalars['String'] - __typename: 'e_timeout_settings' -} - - -/** aggregated selection of "e_timeout_settings" */ -export interface e_timeout_settings_aggregate { - aggregate: (e_timeout_settings_aggregate_fields | null) - nodes: e_timeout_settings[] - __typename: 'e_timeout_settings_aggregate' -} - - -/** aggregate fields of "e_timeout_settings" */ -export interface e_timeout_settings_aggregate_fields { - count: Scalars['Int'] - max: (e_timeout_settings_max_fields | null) - min: (e_timeout_settings_min_fields | null) - __typename: 'e_timeout_settings_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_timeout_settings" */ -export type e_timeout_settings_constraint = 'e_timeout_settings_pkey' - -export type e_timeout_settings_enum = 'Admin' | 'Coach' | 'CoachAndCaptains' | 'CoachAndPlayers' - - -/** aggregate max on columns */ -export interface e_timeout_settings_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_timeout_settings_max_fields' -} - - -/** aggregate min on columns */ -export interface e_timeout_settings_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_timeout_settings_min_fields' -} - - -/** response of any mutation on the table "e_timeout_settings" */ -export interface e_timeout_settings_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_timeout_settings[] - __typename: 'e_timeout_settings_mutation_response' -} - - -/** select columns of table "e_timeout_settings" */ -export type e_timeout_settings_select_column = 'description' | 'value' - - -/** update columns of table "e_timeout_settings" */ -export type e_timeout_settings_update_column = 'description' | 'value' - - -/** columns and relationships of "e_tournament_categories" */ -export interface e_tournament_categories { - description: Scalars['String'] - /** An array relationship */ - tournament_categories: tournament_categories[] - /** An aggregate relationship */ - tournament_categories_aggregate: tournament_categories_aggregate - value: Scalars['String'] - __typename: 'e_tournament_categories' -} - - -/** aggregated selection of "e_tournament_categories" */ -export interface e_tournament_categories_aggregate { - aggregate: (e_tournament_categories_aggregate_fields | null) - nodes: e_tournament_categories[] - __typename: 'e_tournament_categories_aggregate' -} - - -/** aggregate fields of "e_tournament_categories" */ -export interface e_tournament_categories_aggregate_fields { - count: Scalars['Int'] - max: (e_tournament_categories_max_fields | null) - min: (e_tournament_categories_min_fields | null) - __typename: 'e_tournament_categories_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_tournament_categories" */ -export type e_tournament_categories_constraint = 'e_tournament_categories_pkey' - -export type e_tournament_categories_enum = 'LAN' | 'League' | 'LocationEvent' | 'OnlineEvent' - - -/** aggregate max on columns */ -export interface e_tournament_categories_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_tournament_categories_max_fields' -} - - -/** aggregate min on columns */ -export interface e_tournament_categories_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_tournament_categories_min_fields' -} - - -/** response of any mutation on the table "e_tournament_categories" */ -export interface e_tournament_categories_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_tournament_categories[] - __typename: 'e_tournament_categories_mutation_response' -} - - -/** select columns of table "e_tournament_categories" */ -export type e_tournament_categories_select_column = 'description' | 'value' - - -/** update columns of table "e_tournament_categories" */ -export type e_tournament_categories_update_column = 'description' | 'value' - - -/** columns and relationships of "e_tournament_free_agent_statuses" */ -export interface e_tournament_free_agent_statuses { - description: Scalars['String'] - /** An array relationship */ - tournament_free_agents: tournament_free_agents[] - /** An aggregate relationship */ - tournament_free_agents_aggregate: tournament_free_agents_aggregate - value: Scalars['String'] - __typename: 'e_tournament_free_agent_statuses' -} - - -/** aggregated selection of "e_tournament_free_agent_statuses" */ -export interface e_tournament_free_agent_statuses_aggregate { - aggregate: (e_tournament_free_agent_statuses_aggregate_fields | null) - nodes: e_tournament_free_agent_statuses[] - __typename: 'e_tournament_free_agent_statuses_aggregate' -} - - -/** aggregate fields of "e_tournament_free_agent_statuses" */ -export interface e_tournament_free_agent_statuses_aggregate_fields { - count: Scalars['Int'] - max: (e_tournament_free_agent_statuses_max_fields | null) - min: (e_tournament_free_agent_statuses_min_fields | null) - __typename: 'e_tournament_free_agent_statuses_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_tournament_free_agent_statuses" */ -export type e_tournament_free_agent_statuses_constraint = 'e_tournament_free_agent_statuses_pkey' - -export type e_tournament_free_agent_statuses_enum = 'drafted' | 'registered' | 'waitlisted' | 'withdrawn' - - -/** aggregate max on columns */ -export interface e_tournament_free_agent_statuses_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_tournament_free_agent_statuses_max_fields' -} - - -/** aggregate min on columns */ -export interface e_tournament_free_agent_statuses_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_tournament_free_agent_statuses_min_fields' -} - - -/** response of any mutation on the table "e_tournament_free_agent_statuses" */ -export interface e_tournament_free_agent_statuses_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_tournament_free_agent_statuses[] - __typename: 'e_tournament_free_agent_statuses_mutation_response' -} - - -/** select columns of table "e_tournament_free_agent_statuses" */ -export type e_tournament_free_agent_statuses_select_column = 'description' | 'value' - - -/** update columns of table "e_tournament_free_agent_statuses" */ -export type e_tournament_free_agent_statuses_update_column = 'description' | 'value' - - -/** columns and relationships of "e_tournament_registration_types" */ -export interface e_tournament_registration_types { - description: Scalars['String'] - /** An array relationship */ - tournaments: tournaments[] - /** An aggregate relationship */ - tournaments_aggregate: tournaments_aggregate - value: Scalars['String'] - __typename: 'e_tournament_registration_types' -} - - -/** aggregated selection of "e_tournament_registration_types" */ -export interface e_tournament_registration_types_aggregate { - aggregate: (e_tournament_registration_types_aggregate_fields | null) - nodes: e_tournament_registration_types[] - __typename: 'e_tournament_registration_types_aggregate' -} - - -/** aggregate fields of "e_tournament_registration_types" */ -export interface e_tournament_registration_types_aggregate_fields { - count: Scalars['Int'] - max: (e_tournament_registration_types_max_fields | null) - min: (e_tournament_registration_types_min_fields | null) - __typename: 'e_tournament_registration_types_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_tournament_registration_types" */ -export type e_tournament_registration_types_constraint = 'e_tournament_registration_types_pkey' - -export type e_tournament_registration_types_enum = 'both' | 'free_agents' | 'teams' - - -/** aggregate max on columns */ -export interface e_tournament_registration_types_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_tournament_registration_types_max_fields' -} - - -/** aggregate min on columns */ -export interface e_tournament_registration_types_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_tournament_registration_types_min_fields' -} - - -/** response of any mutation on the table "e_tournament_registration_types" */ -export interface e_tournament_registration_types_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_tournament_registration_types[] - __typename: 'e_tournament_registration_types_mutation_response' -} - - -/** select columns of table "e_tournament_registration_types" */ -export type e_tournament_registration_types_select_column = 'description' | 'value' - - -/** update columns of table "e_tournament_registration_types" */ -export type e_tournament_registration_types_update_column = 'description' | 'value' - - -/** columns and relationships of "e_tournament_stage_types" */ -export interface e_tournament_stage_types { - description: Scalars['String'] - /** An array relationship */ - tournament_stages: tournament_stages[] - /** An aggregate relationship */ - tournament_stages_aggregate: tournament_stages_aggregate - value: Scalars['String'] - __typename: 'e_tournament_stage_types' -} - - -/** aggregated selection of "e_tournament_stage_types" */ -export interface e_tournament_stage_types_aggregate { - aggregate: (e_tournament_stage_types_aggregate_fields | null) - nodes: e_tournament_stage_types[] - __typename: 'e_tournament_stage_types_aggregate' -} - - -/** aggregate fields of "e_tournament_stage_types" */ -export interface e_tournament_stage_types_aggregate_fields { - count: Scalars['Int'] - max: (e_tournament_stage_types_max_fields | null) - min: (e_tournament_stage_types_min_fields | null) - __typename: 'e_tournament_stage_types_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_tournament_stage_types" */ -export type e_tournament_stage_types_constraint = 'e_tournament_stage_types_pkey' - -export type e_tournament_stage_types_enum = 'DoubleElimination' | 'RoundRobin' | 'SingleElimination' | 'Swiss' - - -/** aggregate max on columns */ -export interface e_tournament_stage_types_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_tournament_stage_types_max_fields' -} - - -/** aggregate min on columns */ -export interface e_tournament_stage_types_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_tournament_stage_types_min_fields' -} - - -/** response of any mutation on the table "e_tournament_stage_types" */ -export interface e_tournament_stage_types_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_tournament_stage_types[] - __typename: 'e_tournament_stage_types_mutation_response' -} - - -/** select columns of table "e_tournament_stage_types" */ -export type e_tournament_stage_types_select_column = 'description' | 'value' - - -/** update columns of table "e_tournament_stage_types" */ -export type e_tournament_stage_types_update_column = 'description' | 'value' - - -/** columns and relationships of "e_tournament_status" */ -export interface e_tournament_status { - description: Scalars['String'] - /** An array relationship */ - tournaments: tournaments[] - /** An aggregate relationship */ - tournaments_aggregate: tournaments_aggregate - value: Scalars['String'] - __typename: 'e_tournament_status' -} - - -/** aggregated selection of "e_tournament_status" */ -export interface e_tournament_status_aggregate { - aggregate: (e_tournament_status_aggregate_fields | null) - nodes: e_tournament_status[] - __typename: 'e_tournament_status_aggregate' -} - - -/** aggregate fields of "e_tournament_status" */ -export interface e_tournament_status_aggregate_fields { - count: Scalars['Int'] - max: (e_tournament_status_max_fields | null) - min: (e_tournament_status_min_fields | null) - __typename: 'e_tournament_status_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_tournament_status" */ -export type e_tournament_status_constraint = 'e_tournament_status_pkey' - -export type e_tournament_status_enum = 'Cancelled' | 'CancelledMinTeams' | 'CheckInReview' | 'Finished' | 'Live' | 'Paused' | 'RegistrationClosed' | 'RegistrationOpen' | 'Setup' - - -/** aggregate max on columns */ -export interface e_tournament_status_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_tournament_status_max_fields' -} - - -/** aggregate min on columns */ -export interface e_tournament_status_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_tournament_status_min_fields' -} - - -/** response of any mutation on the table "e_tournament_status" */ -export interface e_tournament_status_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_tournament_status[] - __typename: 'e_tournament_status_mutation_response' -} - - -/** select columns of table "e_tournament_status" */ -export type e_tournament_status_select_column = 'description' | 'value' - - -/** update columns of table "e_tournament_status" */ -export type e_tournament_status_update_column = 'description' | 'value' - - -/** columns and relationships of "e_utility_practice_access" */ -export interface e_utility_practice_access { - description: Scalars['String'] - /** An array relationship */ - utility_practice_sessions: utility_practice_sessions[] - /** An aggregate relationship */ - utility_practice_sessions_aggregate: utility_practice_sessions_aggregate - value: Scalars['String'] - __typename: 'e_utility_practice_access' -} - - -/** aggregated selection of "e_utility_practice_access" */ -export interface e_utility_practice_access_aggregate { - aggregate: (e_utility_practice_access_aggregate_fields | null) - nodes: e_utility_practice_access[] - __typename: 'e_utility_practice_access_aggregate' -} - - -/** aggregate fields of "e_utility_practice_access" */ -export interface e_utility_practice_access_aggregate_fields { - count: Scalars['Int'] - max: (e_utility_practice_access_max_fields | null) - min: (e_utility_practice_access_min_fields | null) - __typename: 'e_utility_practice_access_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_utility_practice_access" */ -export type e_utility_practice_access_constraint = 'e_utility_practice_access_pkey' - -export type e_utility_practice_access_enum = 'Friends' | 'Invite' | 'Open' | 'Private' - - -/** aggregate max on columns */ -export interface e_utility_practice_access_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_utility_practice_access_max_fields' -} - - -/** aggregate min on columns */ -export interface e_utility_practice_access_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_utility_practice_access_min_fields' -} - - -/** response of any mutation on the table "e_utility_practice_access" */ -export interface e_utility_practice_access_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_utility_practice_access[] - __typename: 'e_utility_practice_access_mutation_response' -} - - -/** select columns of table "e_utility_practice_access" */ -export type e_utility_practice_access_select_column = 'description' | 'value' - - -/** update columns of table "e_utility_practice_access" */ -export type e_utility_practice_access_update_column = 'description' | 'value' - - -/** columns and relationships of "e_utility_practice_statuses" */ -export interface e_utility_practice_statuses { - description: Scalars['String'] - /** An array relationship */ - utility_practice_sessions: utility_practice_sessions[] - /** An aggregate relationship */ - utility_practice_sessions_aggregate: utility_practice_sessions_aggregate - value: Scalars['String'] - __typename: 'e_utility_practice_statuses' -} - - -/** aggregated selection of "e_utility_practice_statuses" */ -export interface e_utility_practice_statuses_aggregate { - aggregate: (e_utility_practice_statuses_aggregate_fields | null) - nodes: e_utility_practice_statuses[] - __typename: 'e_utility_practice_statuses_aggregate' -} - - -/** aggregate fields of "e_utility_practice_statuses" */ -export interface e_utility_practice_statuses_aggregate_fields { - count: Scalars['Int'] - max: (e_utility_practice_statuses_max_fields | null) - min: (e_utility_practice_statuses_min_fields | null) - __typename: 'e_utility_practice_statuses_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_utility_practice_statuses" */ -export type e_utility_practice_statuses_constraint = 'e_utility_practice_statuses_pkey' - -export type e_utility_practice_statuses_enum = 'Ended' | 'Failed' | 'Ready' | 'Starting' - - -/** aggregate max on columns */ -export interface e_utility_practice_statuses_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_utility_practice_statuses_max_fields' -} - - -/** aggregate min on columns */ -export interface e_utility_practice_statuses_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_utility_practice_statuses_min_fields' -} - - -/** response of any mutation on the table "e_utility_practice_statuses" */ -export interface e_utility_practice_statuses_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_utility_practice_statuses[] - __typename: 'e_utility_practice_statuses_mutation_response' -} - - -/** select columns of table "e_utility_practice_statuses" */ -export type e_utility_practice_statuses_select_column = 'description' | 'value' - - -/** update columns of table "e_utility_practice_statuses" */ -export type e_utility_practice_statuses_update_column = 'description' | 'value' - - -/** columns and relationships of "e_utility_sources" */ -export interface e_utility_sources { - description: Scalars['String'] - /** An array relationship */ - utility_lineups: utility_lineups[] - /** An aggregate relationship */ - utility_lineups_aggregate: utility_lineups_aggregate - value: Scalars['String'] - __typename: 'e_utility_sources' -} - - -/** aggregated selection of "e_utility_sources" */ -export interface e_utility_sources_aggregate { - aggregate: (e_utility_sources_aggregate_fields | null) - nodes: e_utility_sources[] - __typename: 'e_utility_sources_aggregate' -} - - -/** aggregate fields of "e_utility_sources" */ -export interface e_utility_sources_aggregate_fields { - count: Scalars['Int'] - max: (e_utility_sources_max_fields | null) - min: (e_utility_sources_min_fields | null) - __typename: 'e_utility_sources_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_utility_sources" */ -export type e_utility_sources_constraint = 'e_utility_sources_pkey' - -export type e_utility_sources_enum = 'demo' | 'editor' | 'fork' | 'import' | 'plugin' - - -/** aggregate max on columns */ -export interface e_utility_sources_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_utility_sources_max_fields' -} - - -/** aggregate min on columns */ -export interface e_utility_sources_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_utility_sources_min_fields' -} - - -/** response of any mutation on the table "e_utility_sources" */ -export interface e_utility_sources_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_utility_sources[] - __typename: 'e_utility_sources_mutation_response' -} - - -/** select columns of table "e_utility_sources" */ -export type e_utility_sources_select_column = 'description' | 'value' - - -/** update columns of table "e_utility_sources" */ -export type e_utility_sources_update_column = 'description' | 'value' - - -/** columns and relationships of "e_utility_techniques" */ -export interface e_utility_techniques { - description: Scalars['String'] - /** An array relationship */ - utility_lineups: utility_lineups[] - /** An aggregate relationship */ - utility_lineups_aggregate: utility_lineups_aggregate - value: Scalars['String'] - __typename: 'e_utility_techniques' -} - - -/** aggregated selection of "e_utility_techniques" */ -export interface e_utility_techniques_aggregate { - aggregate: (e_utility_techniques_aggregate_fields | null) - nodes: e_utility_techniques[] - __typename: 'e_utility_techniques_aggregate' -} - - -/** aggregate fields of "e_utility_techniques" */ -export interface e_utility_techniques_aggregate_fields { - count: Scalars['Int'] - max: (e_utility_techniques_max_fields | null) - min: (e_utility_techniques_min_fields | null) - __typename: 'e_utility_techniques_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_utility_techniques" */ -export type e_utility_techniques_constraint = 'e_utility_techniques_pkey' - -export type e_utility_techniques_enum = 'Crouch' | 'CrouchJump' | 'Jump' | 'RunJump' | 'Running' | 'Stationary' | 'WalkJump' | 'Walking' - - -/** aggregate max on columns */ -export interface e_utility_techniques_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_utility_techniques_max_fields' -} - - -/** aggregate min on columns */ -export interface e_utility_techniques_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_utility_techniques_min_fields' -} - - -/** response of any mutation on the table "e_utility_techniques" */ -export interface e_utility_techniques_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_utility_techniques[] - __typename: 'e_utility_techniques_mutation_response' -} - - -/** select columns of table "e_utility_techniques" */ -export type e_utility_techniques_select_column = 'description' | 'value' - - -/** update columns of table "e_utility_techniques" */ -export type e_utility_techniques_update_column = 'description' | 'value' - - -/** columns and relationships of "e_utility_throw_strengths" */ -export interface e_utility_throw_strengths { - description: Scalars['String'] - /** An array relationship */ - utility_lineups: utility_lineups[] - /** An aggregate relationship */ - utility_lineups_aggregate: utility_lineups_aggregate - value: Scalars['String'] - __typename: 'e_utility_throw_strengths' -} - - -/** aggregated selection of "e_utility_throw_strengths" */ -export interface e_utility_throw_strengths_aggregate { - aggregate: (e_utility_throw_strengths_aggregate_fields | null) - nodes: e_utility_throw_strengths[] - __typename: 'e_utility_throw_strengths_aggregate' -} - - -/** aggregate fields of "e_utility_throw_strengths" */ -export interface e_utility_throw_strengths_aggregate_fields { - count: Scalars['Int'] - max: (e_utility_throw_strengths_max_fields | null) - min: (e_utility_throw_strengths_min_fields | null) - __typename: 'e_utility_throw_strengths_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_utility_throw_strengths" */ -export type e_utility_throw_strengths_constraint = 'e_utility_throw_strengths_pkey' - -export type e_utility_throw_strengths_enum = 'Drop' | 'Full' | 'Half' - - -/** aggregate max on columns */ -export interface e_utility_throw_strengths_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_utility_throw_strengths_max_fields' -} - - -/** aggregate min on columns */ -export interface e_utility_throw_strengths_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_utility_throw_strengths_min_fields' -} - - -/** response of any mutation on the table "e_utility_throw_strengths" */ -export interface e_utility_throw_strengths_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_utility_throw_strengths[] - __typename: 'e_utility_throw_strengths_mutation_response' -} - - -/** select columns of table "e_utility_throw_strengths" */ -export type e_utility_throw_strengths_select_column = 'description' | 'value' - - -/** update columns of table "e_utility_throw_strengths" */ -export type e_utility_throw_strengths_update_column = 'description' | 'value' - - -/** columns and relationships of "e_utility_types" */ -export interface e_utility_types { - description: Scalars['String'] - /** An array relationship */ - player_utilities: player_utility[] - /** An aggregate relationship */ - player_utilities_aggregate: player_utility_aggregate - value: Scalars['String'] - __typename: 'e_utility_types' -} - - -/** aggregated selection of "e_utility_types" */ -export interface e_utility_types_aggregate { - aggregate: (e_utility_types_aggregate_fields | null) - nodes: e_utility_types[] - __typename: 'e_utility_types_aggregate' -} - - -/** aggregate fields of "e_utility_types" */ -export interface e_utility_types_aggregate_fields { - count: Scalars['Int'] - max: (e_utility_types_max_fields | null) - min: (e_utility_types_min_fields | null) - __typename: 'e_utility_types_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_utility_types" */ -export type e_utility_types_constraint = 'e_utility_types_pkey' - -export type e_utility_types_enum = 'Decoy' | 'Flash' | 'HighExplosive' | 'Molotov' | 'Smoke' - - -/** aggregate max on columns */ -export interface e_utility_types_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_utility_types_max_fields' -} - - -/** aggregate min on columns */ -export interface e_utility_types_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_utility_types_min_fields' -} - - -/** response of any mutation on the table "e_utility_types" */ -export interface e_utility_types_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_utility_types[] - __typename: 'e_utility_types_mutation_response' -} - - -/** select columns of table "e_utility_types" */ -export type e_utility_types_select_column = 'description' | 'value' - - -/** update columns of table "e_utility_types" */ -export type e_utility_types_update_column = 'description' | 'value' - - -/** columns and relationships of "e_utility_visibility" */ -export interface e_utility_visibility { - description: Scalars['String'] - /** An array relationship */ - utility_lineups: utility_lineups[] - /** An aggregate relationship */ - utility_lineups_aggregate: utility_lineups_aggregate - value: Scalars['String'] - __typename: 'e_utility_visibility' -} - - -/** aggregated selection of "e_utility_visibility" */ -export interface e_utility_visibility_aggregate { - aggregate: (e_utility_visibility_aggregate_fields | null) - nodes: e_utility_visibility[] - __typename: 'e_utility_visibility_aggregate' -} - - -/** aggregate fields of "e_utility_visibility" */ -export interface e_utility_visibility_aggregate_fields { - count: Scalars['Int'] - max: (e_utility_visibility_max_fields | null) - min: (e_utility_visibility_min_fields | null) - __typename: 'e_utility_visibility_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_utility_visibility" */ -export type e_utility_visibility_constraint = 'e_utility_visibility_pkey' - -export type e_utility_visibility_enum = 'Private' | 'Public' | 'Team' - - -/** aggregate max on columns */ -export interface e_utility_visibility_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_utility_visibility_max_fields' -} - - -/** aggregate min on columns */ -export interface e_utility_visibility_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_utility_visibility_min_fields' -} - - -/** response of any mutation on the table "e_utility_visibility" */ -export interface e_utility_visibility_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_utility_visibility[] - __typename: 'e_utility_visibility_mutation_response' -} - - -/** select columns of table "e_utility_visibility" */ -export type e_utility_visibility_select_column = 'description' | 'value' - - -/** update columns of table "e_utility_visibility" */ -export type e_utility_visibility_update_column = 'description' | 'value' - - -/** columns and relationships of "e_veto_pick_types" */ -export interface e_veto_pick_types { - description: Scalars['String'] - /** An array relationship */ - match_veto_picks: match_map_veto_picks[] - /** An aggregate relationship */ - match_veto_picks_aggregate: match_map_veto_picks_aggregate - value: Scalars['String'] - __typename: 'e_veto_pick_types' -} - - -/** aggregated selection of "e_veto_pick_types" */ -export interface e_veto_pick_types_aggregate { - aggregate: (e_veto_pick_types_aggregate_fields | null) - nodes: e_veto_pick_types[] - __typename: 'e_veto_pick_types_aggregate' -} - - -/** aggregate fields of "e_veto_pick_types" */ -export interface e_veto_pick_types_aggregate_fields { - count: Scalars['Int'] - max: (e_veto_pick_types_max_fields | null) - min: (e_veto_pick_types_min_fields | null) - __typename: 'e_veto_pick_types_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_veto_pick_types" */ -export type e_veto_pick_types_constraint = 'e_veto_pick_type_pkey' - -export type e_veto_pick_types_enum = 'Ban' | 'Decider' | 'Pick' | 'Side' - - -/** aggregate max on columns */ -export interface e_veto_pick_types_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_veto_pick_types_max_fields' -} - - -/** aggregate min on columns */ -export interface e_veto_pick_types_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_veto_pick_types_min_fields' -} - - -/** response of any mutation on the table "e_veto_pick_types" */ -export interface e_veto_pick_types_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_veto_pick_types[] - __typename: 'e_veto_pick_types_mutation_response' -} - - -/** select columns of table "e_veto_pick_types" */ -export type e_veto_pick_types_select_column = 'description' | 'value' - - -/** update columns of table "e_veto_pick_types" */ -export type e_veto_pick_types_update_column = 'description' | 'value' - - -/** columns and relationships of "e_winning_reasons" */ -export interface e_winning_reasons { - description: Scalars['String'] - value: Scalars['String'] - __typename: 'e_winning_reasons' -} - - -/** aggregated selection of "e_winning_reasons" */ -export interface e_winning_reasons_aggregate { - aggregate: (e_winning_reasons_aggregate_fields | null) - nodes: e_winning_reasons[] - __typename: 'e_winning_reasons_aggregate' -} - - -/** aggregate fields of "e_winning_reasons" */ -export interface e_winning_reasons_aggregate_fields { - count: Scalars['Int'] - max: (e_winning_reasons_max_fields | null) - min: (e_winning_reasons_min_fields | null) - __typename: 'e_winning_reasons_aggregate_fields' -} - - -/** unique or primary key constraints on table "e_winning_reasons" */ -export type e_winning_reasons_constraint = 'e_winning_reasons_pkey' - -export type e_winning_reasons_enum = 'BombDefused' | 'BombExploded' | 'CTsWin' | 'TerroristsWin' | 'TimeRanOut' | 'Unknown' - - -/** aggregate max on columns */ -export interface e_winning_reasons_max_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_winning_reasons_max_fields' -} - - -/** aggregate min on columns */ -export interface e_winning_reasons_min_fields { - description: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'e_winning_reasons_min_fields' -} - - -/** response of any mutation on the table "e_winning_reasons" */ -export interface e_winning_reasons_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: e_winning_reasons[] - __typename: 'e_winning_reasons_mutation_response' -} - - -/** select columns of table "e_winning_reasons" */ -export type e_winning_reasons_select_column = 'description' | 'value' - - -/** update columns of table "e_winning_reasons" */ -export type e_winning_reasons_update_column = 'description' | 'value' - - -/** columns and relationships of "event_match_links" */ -export interface event_match_links { - created_at: Scalars['timestamptz'] - /** An object relationship */ - event: events - event_id: Scalars['uuid'] - /** An object relationship */ - match: matches - match_id: Scalars['uuid'] - __typename: 'event_match_links' -} - - -/** aggregated selection of "event_match_links" */ -export interface event_match_links_aggregate { - aggregate: (event_match_links_aggregate_fields | null) - nodes: event_match_links[] - __typename: 'event_match_links_aggregate' -} - - -/** aggregate fields of "event_match_links" */ -export interface event_match_links_aggregate_fields { - count: Scalars['Int'] - max: (event_match_links_max_fields | null) - min: (event_match_links_min_fields | null) - __typename: 'event_match_links_aggregate_fields' -} - - -/** unique or primary key constraints on table "event_match_links" */ -export type event_match_links_constraint = 'event_match_links_pkey' - - -/** aggregate max on columns */ -export interface event_match_links_max_fields { - created_at: (Scalars['timestamptz'] | null) - event_id: (Scalars['uuid'] | null) - match_id: (Scalars['uuid'] | null) - __typename: 'event_match_links_max_fields' -} - - -/** aggregate min on columns */ -export interface event_match_links_min_fields { - created_at: (Scalars['timestamptz'] | null) - event_id: (Scalars['uuid'] | null) - match_id: (Scalars['uuid'] | null) - __typename: 'event_match_links_min_fields' -} - - -/** response of any mutation on the table "event_match_links" */ -export interface event_match_links_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: event_match_links[] - __typename: 'event_match_links_mutation_response' -} - - -/** select columns of table "event_match_links" */ -export type event_match_links_select_column = 'created_at' | 'event_id' | 'match_id' - - -/** update columns of table "event_match_links" */ -export type event_match_links_update_column = 'created_at' | 'event_id' | 'match_id' - - -/** columns and relationships of "event_media" */ -export interface event_media { - created_at: Scalars['timestamptz'] - /** An object relationship */ - event: events - event_id: Scalars['uuid'] - external_url: (Scalars['String'] | null) - filename: (Scalars['String'] | null) - id: Scalars['uuid'] - mime_type: (Scalars['String'] | null) - /** An array relationship */ - players: event_media_players[] - /** An aggregate relationship */ - players_aggregate: event_media_players_aggregate - size: Scalars['bigint'] - thumbnail_filename: (Scalars['String'] | null) - title: (Scalars['String'] | null) - /** An object relationship */ - uploader: players - uploader_steam_id: Scalars['bigint'] - __typename: 'event_media' -} - - -/** aggregated selection of "event_media" */ -export interface event_media_aggregate { - aggregate: (event_media_aggregate_fields | null) - nodes: event_media[] - __typename: 'event_media_aggregate' -} - - -/** aggregate fields of "event_media" */ -export interface event_media_aggregate_fields { - avg: (event_media_avg_fields | null) - count: Scalars['Int'] - max: (event_media_max_fields | null) - min: (event_media_min_fields | null) - stddev: (event_media_stddev_fields | null) - stddev_pop: (event_media_stddev_pop_fields | null) - stddev_samp: (event_media_stddev_samp_fields | null) - sum: (event_media_sum_fields | null) - var_pop: (event_media_var_pop_fields | null) - var_samp: (event_media_var_samp_fields | null) - variance: (event_media_variance_fields | null) - __typename: 'event_media_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface event_media_avg_fields { - size: (Scalars['Float'] | null) - uploader_steam_id: (Scalars['Float'] | null) - __typename: 'event_media_avg_fields' -} - - -/** unique or primary key constraints on table "event_media" */ -export type event_media_constraint = 'event_media_event_id_filename_key' | 'event_media_pkey' - - -/** aggregate max on columns */ -export interface event_media_max_fields { - created_at: (Scalars['timestamptz'] | null) - event_id: (Scalars['uuid'] | null) - external_url: (Scalars['String'] | null) - filename: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - mime_type: (Scalars['String'] | null) - size: (Scalars['bigint'] | null) - thumbnail_filename: (Scalars['String'] | null) - title: (Scalars['String'] | null) - uploader_steam_id: (Scalars['bigint'] | null) - __typename: 'event_media_max_fields' -} - - -/** aggregate min on columns */ -export interface event_media_min_fields { - created_at: (Scalars['timestamptz'] | null) - event_id: (Scalars['uuid'] | null) - external_url: (Scalars['String'] | null) - filename: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - mime_type: (Scalars['String'] | null) - size: (Scalars['bigint'] | null) - thumbnail_filename: (Scalars['String'] | null) - title: (Scalars['String'] | null) - uploader_steam_id: (Scalars['bigint'] | null) - __typename: 'event_media_min_fields' -} - - -/** response of any mutation on the table "event_media" */ -export interface event_media_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: event_media[] - __typename: 'event_media_mutation_response' -} - - -/** columns and relationships of "event_media_players" */ -export interface event_media_players { - created_at: Scalars['timestamptz'] - /** An object relationship */ - media: event_media - media_id: Scalars['uuid'] - /** An object relationship */ - player: players - steam_id: Scalars['bigint'] - __typename: 'event_media_players' -} - - -/** aggregated selection of "event_media_players" */ -export interface event_media_players_aggregate { - aggregate: (event_media_players_aggregate_fields | null) - nodes: event_media_players[] - __typename: 'event_media_players_aggregate' -} - - -/** aggregate fields of "event_media_players" */ -export interface event_media_players_aggregate_fields { - avg: (event_media_players_avg_fields | null) - count: Scalars['Int'] - max: (event_media_players_max_fields | null) - min: (event_media_players_min_fields | null) - stddev: (event_media_players_stddev_fields | null) - stddev_pop: (event_media_players_stddev_pop_fields | null) - stddev_samp: (event_media_players_stddev_samp_fields | null) - sum: (event_media_players_sum_fields | null) - var_pop: (event_media_players_var_pop_fields | null) - var_samp: (event_media_players_var_samp_fields | null) - variance: (event_media_players_variance_fields | null) - __typename: 'event_media_players_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface event_media_players_avg_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'event_media_players_avg_fields' -} - - -/** unique or primary key constraints on table "event_media_players" */ -export type event_media_players_constraint = 'event_media_players_pkey' - - -/** aggregate max on columns */ -export interface event_media_players_max_fields { - created_at: (Scalars['timestamptz'] | null) - media_id: (Scalars['uuid'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'event_media_players_max_fields' -} - - -/** aggregate min on columns */ -export interface event_media_players_min_fields { - created_at: (Scalars['timestamptz'] | null) - media_id: (Scalars['uuid'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'event_media_players_min_fields' -} - - -/** response of any mutation on the table "event_media_players" */ -export interface event_media_players_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: event_media_players[] - __typename: 'event_media_players_mutation_response' -} - - -/** select columns of table "event_media_players" */ -export type event_media_players_select_column = 'created_at' | 'media_id' | 'steam_id' - - -/** aggregate stddev on columns */ -export interface event_media_players_stddev_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'event_media_players_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface event_media_players_stddev_pop_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'event_media_players_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface event_media_players_stddev_samp_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'event_media_players_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface event_media_players_sum_fields { - steam_id: (Scalars['bigint'] | null) - __typename: 'event_media_players_sum_fields' -} - - -/** update columns of table "event_media_players" */ -export type event_media_players_update_column = 'created_at' | 'media_id' | 'steam_id' - - -/** aggregate var_pop on columns */ -export interface event_media_players_var_pop_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'event_media_players_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface event_media_players_var_samp_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'event_media_players_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface event_media_players_variance_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'event_media_players_variance_fields' -} - - -/** select columns of table "event_media" */ -export type event_media_select_column = 'created_at' | 'event_id' | 'external_url' | 'filename' | 'id' | 'mime_type' | 'size' | 'thumbnail_filename' | 'title' | 'uploader_steam_id' - - -/** aggregate stddev on columns */ -export interface event_media_stddev_fields { - size: (Scalars['Float'] | null) - uploader_steam_id: (Scalars['Float'] | null) - __typename: 'event_media_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface event_media_stddev_pop_fields { - size: (Scalars['Float'] | null) - uploader_steam_id: (Scalars['Float'] | null) - __typename: 'event_media_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface event_media_stddev_samp_fields { - size: (Scalars['Float'] | null) - uploader_steam_id: (Scalars['Float'] | null) - __typename: 'event_media_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface event_media_sum_fields { - size: (Scalars['bigint'] | null) - uploader_steam_id: (Scalars['bigint'] | null) - __typename: 'event_media_sum_fields' -} - - -/** update columns of table "event_media" */ -export type event_media_update_column = 'created_at' | 'event_id' | 'external_url' | 'filename' | 'id' | 'mime_type' | 'size' | 'thumbnail_filename' | 'title' | 'uploader_steam_id' - - -/** aggregate var_pop on columns */ -export interface event_media_var_pop_fields { - size: (Scalars['Float'] | null) - uploader_steam_id: (Scalars['Float'] | null) - __typename: 'event_media_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface event_media_var_samp_fields { - size: (Scalars['Float'] | null) - uploader_steam_id: (Scalars['Float'] | null) - __typename: 'event_media_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface event_media_variance_fields { - size: (Scalars['Float'] | null) - uploader_steam_id: (Scalars['Float'] | null) - __typename: 'event_media_variance_fields' -} - - -/** columns and relationships of "event_organizers" */ -export interface event_organizers { - created_at: Scalars['timestamptz'] - /** An object relationship */ - event: events - event_id: Scalars['uuid'] - /** An object relationship */ - organizer: players - steam_id: Scalars['bigint'] - __typename: 'event_organizers' -} - - -/** aggregated selection of "event_organizers" */ -export interface event_organizers_aggregate { - aggregate: (event_organizers_aggregate_fields | null) - nodes: event_organizers[] - __typename: 'event_organizers_aggregate' -} - - -/** aggregate fields of "event_organizers" */ -export interface event_organizers_aggregate_fields { - avg: (event_organizers_avg_fields | null) - count: Scalars['Int'] - max: (event_organizers_max_fields | null) - min: (event_organizers_min_fields | null) - stddev: (event_organizers_stddev_fields | null) - stddev_pop: (event_organizers_stddev_pop_fields | null) - stddev_samp: (event_organizers_stddev_samp_fields | null) - sum: (event_organizers_sum_fields | null) - var_pop: (event_organizers_var_pop_fields | null) - var_samp: (event_organizers_var_samp_fields | null) - variance: (event_organizers_variance_fields | null) - __typename: 'event_organizers_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface event_organizers_avg_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'event_organizers_avg_fields' -} - - -/** unique or primary key constraints on table "event_organizers" */ -export type event_organizers_constraint = 'event_organizers_pkey' - - -/** aggregate max on columns */ -export interface event_organizers_max_fields { - created_at: (Scalars['timestamptz'] | null) - event_id: (Scalars['uuid'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'event_organizers_max_fields' -} - - -/** aggregate min on columns */ -export interface event_organizers_min_fields { - created_at: (Scalars['timestamptz'] | null) - event_id: (Scalars['uuid'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'event_organizers_min_fields' -} - - -/** response of any mutation on the table "event_organizers" */ -export interface event_organizers_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: event_organizers[] - __typename: 'event_organizers_mutation_response' -} - - -/** select columns of table "event_organizers" */ -export type event_organizers_select_column = 'created_at' | 'event_id' | 'steam_id' - - -/** aggregate stddev on columns */ -export interface event_organizers_stddev_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'event_organizers_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface event_organizers_stddev_pop_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'event_organizers_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface event_organizers_stddev_samp_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'event_organizers_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface event_organizers_sum_fields { - steam_id: (Scalars['bigint'] | null) - __typename: 'event_organizers_sum_fields' -} - - -/** update columns of table "event_organizers" */ -export type event_organizers_update_column = 'created_at' | 'event_id' | 'steam_id' - - -/** aggregate var_pop on columns */ -export interface event_organizers_var_pop_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'event_organizers_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface event_organizers_var_samp_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'event_organizers_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface event_organizers_variance_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'event_organizers_variance_fields' -} - - -/** columns and relationships of "event_players" */ -export interface event_players { - created_at: Scalars['timestamptz'] - /** An object relationship */ - event: events - event_id: Scalars['uuid'] - /** An object relationship */ - player: players - steam_id: Scalars['bigint'] - __typename: 'event_players' -} - - -/** aggregated selection of "event_players" */ -export interface event_players_aggregate { - aggregate: (event_players_aggregate_fields | null) - nodes: event_players[] - __typename: 'event_players_aggregate' -} - - -/** aggregate fields of "event_players" */ -export interface event_players_aggregate_fields { - avg: (event_players_avg_fields | null) - count: Scalars['Int'] - max: (event_players_max_fields | null) - min: (event_players_min_fields | null) - stddev: (event_players_stddev_fields | null) - stddev_pop: (event_players_stddev_pop_fields | null) - stddev_samp: (event_players_stddev_samp_fields | null) - sum: (event_players_sum_fields | null) - var_pop: (event_players_var_pop_fields | null) - var_samp: (event_players_var_samp_fields | null) - variance: (event_players_variance_fields | null) - __typename: 'event_players_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface event_players_avg_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'event_players_avg_fields' -} - - -/** unique or primary key constraints on table "event_players" */ -export type event_players_constraint = 'event_players_pkey' - - -/** aggregate max on columns */ -export interface event_players_max_fields { - created_at: (Scalars['timestamptz'] | null) - event_id: (Scalars['uuid'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'event_players_max_fields' -} - - -/** aggregate min on columns */ -export interface event_players_min_fields { - created_at: (Scalars['timestamptz'] | null) - event_id: (Scalars['uuid'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'event_players_min_fields' -} - - -/** response of any mutation on the table "event_players" */ -export interface event_players_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: event_players[] - __typename: 'event_players_mutation_response' -} - - -/** select columns of table "event_players" */ -export type event_players_select_column = 'created_at' | 'event_id' | 'steam_id' - - -/** aggregate stddev on columns */ -export interface event_players_stddev_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'event_players_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface event_players_stddev_pop_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'event_players_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface event_players_stddev_samp_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'event_players_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface event_players_sum_fields { - steam_id: (Scalars['bigint'] | null) - __typename: 'event_players_sum_fields' -} - - -/** update columns of table "event_players" */ -export type event_players_update_column = 'created_at' | 'event_id' | 'steam_id' - - -/** aggregate var_pop on columns */ -export interface event_players_var_pop_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'event_players_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface event_players_var_samp_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'event_players_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface event_players_variance_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'event_players_variance_fields' -} - - -/** columns and relationships of "event_teams" */ -export interface event_teams { - created_at: Scalars['timestamptz'] - /** An object relationship */ - event: events - event_id: Scalars['uuid'] - /** An object relationship */ - team: teams - team_id: Scalars['uuid'] - __typename: 'event_teams' -} - - -/** aggregated selection of "event_teams" */ -export interface event_teams_aggregate { - aggregate: (event_teams_aggregate_fields | null) - nodes: event_teams[] - __typename: 'event_teams_aggregate' -} - - -/** aggregate fields of "event_teams" */ -export interface event_teams_aggregate_fields { - count: Scalars['Int'] - max: (event_teams_max_fields | null) - min: (event_teams_min_fields | null) - __typename: 'event_teams_aggregate_fields' -} - - -/** unique or primary key constraints on table "event_teams" */ -export type event_teams_constraint = 'event_teams_pkey' - - -/** aggregate max on columns */ -export interface event_teams_max_fields { - created_at: (Scalars['timestamptz'] | null) - event_id: (Scalars['uuid'] | null) - team_id: (Scalars['uuid'] | null) - __typename: 'event_teams_max_fields' -} - - -/** aggregate min on columns */ -export interface event_teams_min_fields { - created_at: (Scalars['timestamptz'] | null) - event_id: (Scalars['uuid'] | null) - team_id: (Scalars['uuid'] | null) - __typename: 'event_teams_min_fields' -} - - -/** response of any mutation on the table "event_teams" */ -export interface event_teams_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: event_teams[] - __typename: 'event_teams_mutation_response' -} - - -/** select columns of table "event_teams" */ -export type event_teams_select_column = 'created_at' | 'event_id' | 'team_id' - - -/** update columns of table "event_teams" */ -export type event_teams_update_column = 'created_at' | 'event_id' | 'team_id' - - -/** columns and relationships of "event_tournaments" */ -export interface event_tournaments { - created_at: Scalars['timestamptz'] - /** An object relationship */ - event: events - event_id: Scalars['uuid'] - /** An object relationship */ - tournament: tournaments - tournament_id: Scalars['uuid'] - __typename: 'event_tournaments' -} - - -/** aggregated selection of "event_tournaments" */ -export interface event_tournaments_aggregate { - aggregate: (event_tournaments_aggregate_fields | null) - nodes: event_tournaments[] - __typename: 'event_tournaments_aggregate' -} - - -/** aggregate fields of "event_tournaments" */ -export interface event_tournaments_aggregate_fields { - count: Scalars['Int'] - max: (event_tournaments_max_fields | null) - min: (event_tournaments_min_fields | null) - __typename: 'event_tournaments_aggregate_fields' -} - - -/** unique or primary key constraints on table "event_tournaments" */ -export type event_tournaments_constraint = 'event_tournaments_pkey' - - -/** aggregate max on columns */ -export interface event_tournaments_max_fields { - created_at: (Scalars['timestamptz'] | null) - event_id: (Scalars['uuid'] | null) - tournament_id: (Scalars['uuid'] | null) - __typename: 'event_tournaments_max_fields' -} - - -/** aggregate min on columns */ -export interface event_tournaments_min_fields { - created_at: (Scalars['timestamptz'] | null) - event_id: (Scalars['uuid'] | null) - tournament_id: (Scalars['uuid'] | null) - __typename: 'event_tournaments_min_fields' -} - - -/** response of any mutation on the table "event_tournaments" */ -export interface event_tournaments_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: event_tournaments[] - __typename: 'event_tournaments_mutation_response' -} - - -/** select columns of table "event_tournaments" */ -export type event_tournaments_select_column = 'created_at' | 'event_id' | 'tournament_id' - - -/** update columns of table "event_tournaments" */ -export type event_tournaments_update_column = 'created_at' | 'event_id' | 'tournament_id' - - -/** columns and relationships of "events" */ -export interface events { - /** An array relationship */ - awards: award_recipients[] - /** An aggregate relationship */ - awards_aggregate: award_recipients_aggregate - /** An object relationship */ - banner: (event_media | null) - banner_media_id: (Scalars['uuid'] | null) - /** A computed field, executes function "can_upload_event_media" */ - can_upload_media: (Scalars['Boolean'] | null) - /** A computed field, executes function "can_view_event" */ - can_view: (Scalars['Boolean'] | null) - created_at: Scalars['timestamptz'] - description: (Scalars['String'] | null) - ends_at: (Scalars['timestamptz'] | null) - hide_creator_organizer: Scalars['Boolean'] - id: Scalars['uuid'] - /** A computed field, executes function "is_event_organizer" */ - is_organizer: (Scalars['Boolean'] | null) - /** An array relationship */ - media: event_media[] - media_access: e_event_media_access_enum - /** An aggregate relationship */ - media_aggregate: event_media_aggregate - name: Scalars['String'] - /** An object relationship */ - organizer: players - organizer_steam_id: Scalars['bigint'] - /** An array relationship */ - organizers: event_organizers[] - /** An aggregate relationship */ - organizers_aggregate: event_organizers_aggregate - /** An array relationship */ - player_stats: v_event_player_stats[] - /** An aggregate relationship */ - player_stats_aggregate: v_event_player_stats_aggregate - /** An array relationship */ - players: event_players[] - /** An aggregate relationship */ - players_aggregate: event_players_aggregate - starts_at: Scalars['timestamptz'] - /** An array relationship */ - teams: event_teams[] - /** An aggregate relationship */ - teams_aggregate: event_teams_aggregate - /** An array relationship */ - tournaments: event_tournaments[] - /** An aggregate relationship */ - tournaments_aggregate: event_tournaments_aggregate - visibility: e_event_visibility_enum - __typename: 'events' -} - - -/** aggregated selection of "events" */ -export interface events_aggregate { - aggregate: (events_aggregate_fields | null) - nodes: events[] - __typename: 'events_aggregate' -} - - -/** aggregate fields of "events" */ -export interface events_aggregate_fields { - avg: (events_avg_fields | null) - count: Scalars['Int'] - max: (events_max_fields | null) - min: (events_min_fields | null) - stddev: (events_stddev_fields | null) - stddev_pop: (events_stddev_pop_fields | null) - stddev_samp: (events_stddev_samp_fields | null) - sum: (events_sum_fields | null) - var_pop: (events_var_pop_fields | null) - var_samp: (events_var_samp_fields | null) - variance: (events_variance_fields | null) - __typename: 'events_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface events_avg_fields { - organizer_steam_id: (Scalars['Float'] | null) - __typename: 'events_avg_fields' -} - - -/** unique or primary key constraints on table "events" */ -export type events_constraint = 'events_pkey' - - -/** aggregate max on columns */ -export interface events_max_fields { - banner_media_id: (Scalars['uuid'] | null) - created_at: (Scalars['timestamptz'] | null) - description: (Scalars['String'] | null) - ends_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - name: (Scalars['String'] | null) - organizer_steam_id: (Scalars['bigint'] | null) - starts_at: (Scalars['timestamptz'] | null) - __typename: 'events_max_fields' -} - - -/** aggregate min on columns */ -export interface events_min_fields { - banner_media_id: (Scalars['uuid'] | null) - created_at: (Scalars['timestamptz'] | null) - description: (Scalars['String'] | null) - ends_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - name: (Scalars['String'] | null) - organizer_steam_id: (Scalars['bigint'] | null) - starts_at: (Scalars['timestamptz'] | null) - __typename: 'events_min_fields' -} - - -/** response of any mutation on the table "events" */ -export interface events_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: events[] - __typename: 'events_mutation_response' -} - - -/** select columns of table "events" */ -export type events_select_column = 'banner_media_id' | 'created_at' | 'description' | 'ends_at' | 'hide_creator_organizer' | 'id' | 'media_access' | 'name' | 'organizer_steam_id' | 'starts_at' | 'visibility' - - -/** aggregate stddev on columns */ -export interface events_stddev_fields { - organizer_steam_id: (Scalars['Float'] | null) - __typename: 'events_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface events_stddev_pop_fields { - organizer_steam_id: (Scalars['Float'] | null) - __typename: 'events_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface events_stddev_samp_fields { - organizer_steam_id: (Scalars['Float'] | null) - __typename: 'events_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface events_sum_fields { - organizer_steam_id: (Scalars['bigint'] | null) - __typename: 'events_sum_fields' -} - - -/** update columns of table "events" */ -export type events_update_column = 'banner_media_id' | 'created_at' | 'description' | 'ends_at' | 'hide_creator_organizer' | 'id' | 'media_access' | 'name' | 'organizer_steam_id' | 'starts_at' | 'visibility' - - -/** aggregate var_pop on columns */ -export interface events_var_pop_fields { - organizer_steam_id: (Scalars['Float'] | null) - __typename: 'events_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface events_var_samp_fields { - organizer_steam_id: (Scalars['Float'] | null) - __typename: 'events_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface events_variance_fields { - organizer_steam_id: (Scalars['Float'] | null) - __typename: 'events_variance_fields' -} - - -/** columns and relationships of "friends" */ -export interface friends { - /** An object relationship */ - e_status: e_friend_status - other_player_steam_id: Scalars['bigint'] - player_steam_id: Scalars['bigint'] - status: e_friend_status_enum - __typename: 'friends' -} - - -/** aggregated selection of "friends" */ -export interface friends_aggregate { - aggregate: (friends_aggregate_fields | null) - nodes: friends[] - __typename: 'friends_aggregate' -} - - -/** aggregate fields of "friends" */ -export interface friends_aggregate_fields { - avg: (friends_avg_fields | null) - count: Scalars['Int'] - max: (friends_max_fields | null) - min: (friends_min_fields | null) - stddev: (friends_stddev_fields | null) - stddev_pop: (friends_stddev_pop_fields | null) - stddev_samp: (friends_stddev_samp_fields | null) - sum: (friends_sum_fields | null) - var_pop: (friends_var_pop_fields | null) - var_samp: (friends_var_samp_fields | null) - variance: (friends_variance_fields | null) - __typename: 'friends_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface friends_avg_fields { - other_player_steam_id: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'friends_avg_fields' -} - - -/** unique or primary key constraints on table "friends" */ -export type friends_constraint = 'friends_pkey' | 'friends_player_steam_id_other_player_steam_id_key' - - -/** aggregate max on columns */ -export interface friends_max_fields { - other_player_steam_id: (Scalars['bigint'] | null) - player_steam_id: (Scalars['bigint'] | null) - __typename: 'friends_max_fields' -} - - -/** aggregate min on columns */ -export interface friends_min_fields { - other_player_steam_id: (Scalars['bigint'] | null) - player_steam_id: (Scalars['bigint'] | null) - __typename: 'friends_min_fields' -} - - -/** response of any mutation on the table "friends" */ -export interface friends_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: friends[] - __typename: 'friends_mutation_response' -} - - -/** select columns of table "friends" */ -export type friends_select_column = 'other_player_steam_id' | 'player_steam_id' | 'status' - - -/** aggregate stddev on columns */ -export interface friends_stddev_fields { - other_player_steam_id: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'friends_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface friends_stddev_pop_fields { - other_player_steam_id: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'friends_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface friends_stddev_samp_fields { - other_player_steam_id: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'friends_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface friends_sum_fields { - other_player_steam_id: (Scalars['bigint'] | null) - player_steam_id: (Scalars['bigint'] | null) - __typename: 'friends_sum_fields' -} - - -/** update columns of table "friends" */ -export type friends_update_column = 'other_player_steam_id' | 'player_steam_id' | 'status' - - -/** aggregate var_pop on columns */ -export interface friends_var_pop_fields { - other_player_steam_id: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'friends_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface friends_var_samp_fields { - other_player_steam_id: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'friends_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface friends_variance_fields { - other_player_steam_id: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'friends_variance_fields' -} - - -/** columns and relationships of "game_mode_plugins" */ -export interface game_mode_plugins { - config: (Scalars['jsonb'] | null) - /** An object relationship */ - game_mode: game_modes - game_mode_id: Scalars['uuid'] - load_order: Scalars['Int'] - /** An object relationship */ - plugin: game_plugins - plugin_slug: Scalars['String'] - required: Scalars['Boolean'] - __typename: 'game_mode_plugins' -} - - -/** 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_mode_plugins" */ -export interface game_mode_plugins_aggregate_fields { - avg: (game_mode_plugins_avg_fields | null) - count: Scalars['Int'] - 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_mode_plugins_avg_fields { - load_order: (Scalars['Float'] | null) - __typename: 'game_mode_plugins_avg_fields' -} - - -/** 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_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_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_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_mode_plugins[] - __typename: 'game_mode_plugins_mutation_response' -} - - -/** 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_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_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_mode_plugins_stddev_fields { - load_order: (Scalars['Float'] | null) - __typename: 'game_mode_plugins_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -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_mode_plugins_stddev_samp_fields { - load_order: (Scalars['Float'] | null) - __typename: 'game_mode_plugins_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface game_mode_plugins_sum_fields { - load_order: (Scalars['Int'] | null) - __typename: 'game_mode_plugins_sum_fields' -} - - -/** 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_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_mode_plugins_var_samp_fields { - load_order: (Scalars['Float'] | null) - __typename: 'game_mode_plugins_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface game_mode_plugins_variance_fields { - load_order: (Scalars['Float'] | null) - __typename: 'game_mode_plugins_variance_fields' -} - - -/** columns and relationships of "game_modes" */ -export interface game_modes { - archived_at: (Scalars['timestamptz'] | null) - cfg: (Scalars['String'] | null) - competitive_safe: Scalars['Boolean'] - created_at: Scalars['timestamptz'] - description: (Scalars['String'] | null) - enabled: Scalars['Boolean'] - extra_game_params: (Scalars['String'] | null) - icon: (Scalars['String'] | null) - id: Scalars['uuid'] - /** An array relationship */ - match_options: match_options[] - /** An aggregate relationship */ - match_options_aggregate: match_options_aggregate - name: Scalars['String'] - /** An array relationship */ - plugins: game_mode_plugins[] - /** An aggregate relationship */ - plugins_aggregate: game_mode_plugins_aggregate - /** Plugins in this mode with no build for the deployment's runtime */ - runtime_conflicts: (Scalars['jsonb'] | null) - slug: Scalars['String'] - /** Frameworks every plugin in this mode publishes for; empty means the selection cannot run */ - supported_runtimes: (Scalars['jsonb'] | null) - updated_at: Scalars['timestamptz'] - __typename: 'game_modes' -} - - -/** 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_modes" */ -export interface game_modes_aggregate_fields { - count: Scalars['Int'] - 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_modes" */ -export type game_modes_constraint = 'game_modes_pkey' | 'game_modes_slug_key' - - -/** aggregate max on columns */ -export interface game_modes_max_fields { - archived_at: (Scalars['timestamptz'] | null) - cfg: (Scalars['String'] | null) - created_at: (Scalars['timestamptz'] | null) - description: (Scalars['String'] | null) - extra_game_params: (Scalars['String'] | null) - icon: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - name: (Scalars['String'] | null) - slug: (Scalars['String'] | null) - updated_at: (Scalars['timestamptz'] | null) - __typename: 'game_modes_max_fields' -} - - -/** aggregate min on columns */ -export interface game_modes_min_fields { - archived_at: (Scalars['timestamptz'] | null) - cfg: (Scalars['String'] | null) - created_at: (Scalars['timestamptz'] | null) - description: (Scalars['String'] | null) - extra_game_params: (Scalars['String'] | null) - icon: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - name: (Scalars['String'] | null) - slug: (Scalars['String'] | null) - updated_at: (Scalars['timestamptz'] | null) - __typename: 'game_modes_min_fields' -} - - -/** 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_modes[] - __typename: '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' | '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' | 'name' | 'slug' | 'updated_at' - - -/** columns and relationships of "game_plugin_installs" */ -export interface game_plugin_installs { - cfg: (Scalars['String'] | null) - channel: e_game_plugin_channels_enum - created_at: Scalars['timestamptz'] - disable_server_guidelines: Scalars['Boolean'] - enabled: Scalars['Boolean'] - load_custom: Scalars['Boolean'] - load_ranked: Scalars['Boolean'] - load_tournaments: Scalars['Boolean'] - /** An object relationship */ - plugin: game_plugins - plugin_slug: Scalars['String'] - updated_at: Scalars['timestamptz'] - version: (Scalars['String'] | null) - __typename: 'game_plugin_installs' -} - - -/** 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 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' -} - - -/** unique or primary key constraints on table "game_plugin_installs" */ -export type game_plugin_installs_constraint = 'game_plugin_installs_pkey' - - -/** aggregate max on columns */ -export interface game_plugin_installs_max_fields { - cfg: (Scalars['String'] | null) - 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 min on columns */ -export interface game_plugin_installs_min_fields { - cfg: (Scalars['String'] | null) - 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' -} - - -/** 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' -} - - -/** select columns of table "game_plugin_installs" */ -export type game_plugin_installs_select_column = 'cfg' | 'channel' | 'created_at' | 'disable_server_guidelines' | 'enabled' | 'load_custom' | 'load_ranked' | 'load_tournaments' | 'plugin_slug' | 'updated_at' | 'version' - - -/** update columns of table "game_plugin_installs" */ -export type game_plugin_installs_update_column = 'cfg' | 'channel' | 'created_at' | 'disable_server_guidelines' | 'enabled' | 'load_custom' | 'load_ranked' | 'load_tournaments' | '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 */ - 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 "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 "game_plugin_versions" */ -export interface game_plugin_versions_aggregate_fields { - avg: (game_plugin_versions_avg_fields | null) - count: Scalars['Int'] - 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 game_plugin_versions_avg_fields { - size: (Scalars['Float'] | null) - __typename: 'game_plugin_versions_avg_fields' -} - - -/** 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 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 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 "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: game_plugin_versions[] - __typename: 'game_plugin_versions_mutation_response' -} - - -/** 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 game_plugin_versions_stddev_fields { - size: (Scalars['Float'] | null) - __typename: 'game_plugin_versions_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -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 game_plugin_versions_stddev_samp_fields { - size: (Scalars['Float'] | null) - __typename: 'game_plugin_versions_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface game_plugin_versions_sum_fields { - size: (Scalars['Int'] | null) - __typename: 'game_plugin_versions_sum_fields' -} - - -/** 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 game_plugin_versions_var_pop_fields { - size: (Scalars['Float'] | null) - __typename: 'game_plugin_versions_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -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 game_plugin_versions_variance_fields { - size: (Scalars['Float'] | null) - __typename: 'game_plugin_versions_variance_fields' -} - - -/** columns and relationships of "game_plugins" */ -export interface game_plugins { - author: Scalars['String'] - config_path: (Scalars['String'] | null) - config_schema: (Scalars['jsonb'] | null) - cvars: Scalars['String'][] - description: Scalars['String'] - /** An array relationship */ - game_modes: game_mode_plugins[] - /** An aggregate relationship */ - game_modes_aggregate: game_mode_plugins_aggregate - homepage: (Scalars['String'] | null) - hot_swappable: Scalars['Boolean'] - /** Installed | Partial | Pending | Failed | Manual | NotInstalled */ - install_state: (Scalars['String'] | null) - /** A computed field, executes function "game_plugin_installed_node_count" */ - installed_node_count: (Scalars['Int'] | null) - kind: e_game_plugin_kinds_enum - name: Scalars['String'] - /** An array relationship */ - node_installs: game_server_node_plugins[] - /** An aggregate relationship */ - node_installs_aggregate: game_server_node_plugins_aggregate - pairs_with: Scalars['String'][] - panel: (Scalars['jsonb'] | null) - requires_server_guidelines_disabled: Scalars['Boolean'] - requires_service: (Scalars['String'] | null) - slug: Scalars['String'] - source: Scalars['String'] - synced_at: Scalars['timestamptz'] - tags: Scalars['String'][] - /** A computed field, executes function "game_plugin_target_node_count" */ - target_node_count: (Scalars['Int'] | null) - verified: Scalars['Boolean'] - /** An array relationship */ - versions: game_plugin_versions[] - /** An aggregate relationship */ - versions_aggregate: game_plugin_versions_aggregate - wiring: (Scalars['jsonb'] | null) - __typename: 'game_plugins' -} - - -/** 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 "game_plugins" */ -export interface game_plugins_aggregate_fields { - avg: (game_plugins_avg_fields | null) - count: Scalars['Int'] - 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 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 game_plugins_max_fields { - author: (Scalars['String'] | null) - config_path: (Scalars['String'] | null) - cvars: (Scalars['String'][] | null) - description: (Scalars['String'] | null) - homepage: (Scalars['String'] | null) - /** Installed | Partial | Pending | Failed | Manual | NotInstalled */ - install_state: (Scalars['String'] | null) - /** A computed field, executes function "game_plugin_installed_node_count" */ - installed_node_count: (Scalars['Int'] | null) - name: (Scalars['String'] | null) - pairs_with: (Scalars['String'][] | null) - requires_service: (Scalars['String'] | null) - slug: (Scalars['String'] | null) - source: (Scalars['String'] | null) - synced_at: (Scalars['timestamptz'] | null) - tags: (Scalars['String'][] | null) - /** A computed field, executes function "game_plugin_target_node_count" */ - target_node_count: (Scalars['Int'] | null) - __typename: 'game_plugins_max_fields' -} - - -/** aggregate min on columns */ -export interface game_plugins_min_fields { - author: (Scalars['String'] | null) - config_path: (Scalars['String'] | null) - cvars: (Scalars['String'][] | null) - description: (Scalars['String'] | null) - homepage: (Scalars['String'] | null) - /** Installed | Partial | Pending | Failed | Manual | NotInstalled */ - install_state: (Scalars['String'] | null) - /** A computed field, executes function "game_plugin_installed_node_count" */ - installed_node_count: (Scalars['Int'] | null) - name: (Scalars['String'] | null) - pairs_with: (Scalars['String'][] | null) - requires_service: (Scalars['String'] | null) - slug: (Scalars['String'] | null) - source: (Scalars['String'] | null) - synced_at: (Scalars['timestamptz'] | null) - tags: (Scalars['String'][] | null) - /** A computed field, executes function "game_plugin_target_node_count" */ - target_node_count: (Scalars['Int'] | null) - __typename: 'game_plugins_min_fields' -} - - -/** response of any mutation on the table "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: game_plugins[] - __typename: '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_server_guidelines_disabled' | 'requires_service' | 'slug' | 'source' | 'synced_at' | 'tags' | 'verified' | 'wiring' - - -/** aggregate stddev on columns */ -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 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 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 game_plugins_sum_fields { - /** A computed field, executes function "game_plugin_installed_node_count" */ - installed_node_count: (Scalars['Int'] | null) - /** A computed field, executes function "game_plugin_target_node_count" */ - target_node_count: (Scalars['Int'] | null) - __typename: 'game_plugins_sum_fields' -} - - -/** update columns of table "game_plugins" */ -export type game_plugins_update_column = 'author' | 'config_path' | 'config_schema' | 'cvars' | 'description' | 'homepage' | 'hot_swappable' | 'kind' | 'name' | 'pairs_with' | 'panel' | 'requires_server_guidelines_disabled' | 'requires_service' | 'slug' | 'source' | 'synced_at' | 'tags' | 'verified' | 'wiring' - - -/** aggregate var_pop on columns */ -export interface 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 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 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 "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'] - installed_at: (Scalars['timestamptz'] | null) - last_error: (Scalars['String'] | null) - path: (Scalars['String'] | null) - /** An object relationship */ - plugin: (game_plugins | null) - plugin_slug: Scalars['String'] - previous_version: (Scalars['String'] | null) - 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 "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 "game_server_node_plugins" */ -export interface game_server_node_plugins_aggregate_fields { - count: Scalars['Int'] - 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 "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 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) - installed_at: (Scalars['timestamptz'] | null) - last_error: (Scalars['String'] | null) - path: (Scalars['String'] | null) - plugin_slug: (Scalars['String'] | null) - previous_version: (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 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) - installed_at: (Scalars['timestamptz'] | null) - last_error: (Scalars['String'] | null) - path: (Scalars['String'] | null) - plugin_slug: (Scalars['String'] | null) - previous_version: (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 "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: game_server_node_plugins[] - __typename: 'game_server_node_plugins_mutation_response' -} - - -/** 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' | 'path' | 'plugin_slug' | 'previous_version' | 'runtime' | 'source' | 'status' | 'updated_at' | 'version' - - -/** 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' - - -/** 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' - - -/** 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' | 'path' | 'plugin_slug' | 'previous_version' | 'runtime' | 'source' | 'status' | 'updated_at' | 'version' - - -/** columns and relationships of "game_server_nodes" */ -export interface game_server_nodes { - /** A computed field, executes function "available_node_server_count" */ - available_server_count: (Scalars['Int'] | null) - build_id: (Scalars['Int'] | null) - cpu_cores_per_socket: (Scalars['Int'] | null) - cpu_frequency_info: (Scalars['jsonb'] | null) - cpu_governor_info: (Scalars['jsonb'] | null) - cpu_sockets: (Scalars['Int'] | null) - cpu_threads_per_core: (Scalars['Int'] | null) - cpu_warnings: (Scalars['jsonb'] | null) - cs2_launch_options: Scalars['jsonb'] - cs2_video_settings: Scalars['jsonb'] - csgo_build_id: (Scalars['Int'] | null) - demo_network_limiter: (Scalars['Int'] | null) - disk_available_gb: (Scalars['Int'] | null) - disk_used_percent: (Scalars['Int'] | null) - /** An object relationship */ - e_region: (server_regions | null) - /** An object relationship */ - e_status: (e_game_server_node_statuses | null) - enabled: Scalars['Boolean'] - enabled_for_match_making: Scalars['Boolean'] - end_port_range: (Scalars['Int'] | null) - gpu: Scalars['Boolean'] - gpu_demos_enabled: Scalars['Boolean'] - gpu_info: (Scalars['jsonb'] | null) - gpu_rendering_enabled: Scalars['Boolean'] - gpu_streaming_enabled: Scalars['Boolean'] - id: Scalars['String'] - label: (Scalars['String'] | null) - lan_ip: (Scalars['inet'] | null) - node_ip: (Scalars['inet'] | null) - offline_at: (Scalars['timestamptz'] | null) - pin_build_id: (Scalars['Int'] | null) - pin_plugin_runtime: (Scalars['String'] | null) - pin_plugin_version: (Scalars['String'] | null) - /** An object relationship */ - pinned_version: (game_versions | null) - /** A computed field, executes function "game_server_node_plugin_supported" */ - plugin_supported: (Scalars['Boolean'] | null) - /** An array relationship */ - plugins: game_server_node_plugins[] - /** An aggregate relationship */ - plugins_aggregate: game_server_node_plugins_aggregate - plugins_synced_at: (Scalars['timestamptz'] | null) - public_ip: (Scalars['inet'] | null) - region: (Scalars['String'] | null) - /** An array relationship */ - servers: servers[] - /** An aggregate relationship */ - servers_aggregate: servers_aggregate - shader_bake_progress: (Scalars['numeric'] | null) - shader_bake_progress_stage: (Scalars['String'] | null) - shader_bake_status: (Scalars['String'] | null) - shader_bake_status_history: Scalars['jsonb'] - start_port_range: (Scalars['Int'] | null) - status: (e_game_server_node_statuses_enum | null) - supports_cpu_pinning: Scalars['Boolean'] - supports_low_latency: Scalars['Boolean'] - token: (Scalars['String'] | null) - /** A computed field, executes function "total_node_server_count" */ - total_server_count: (Scalars['Int'] | null) - update_status: (Scalars['String'] | null) - /** An object relationship */ - version: (game_versions | null) - __typename: 'game_server_nodes' -} - - -/** 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 "game_server_nodes" */ -export interface game_server_nodes_aggregate_fields { - avg: (game_server_nodes_avg_fields | null) - count: Scalars['Int'] - max: (game_server_nodes_max_fields | null) - min: (game_server_nodes_min_fields | null) - stddev: (game_server_nodes_stddev_fields | null) - stddev_pop: (game_server_nodes_stddev_pop_fields | null) - stddev_samp: (game_server_nodes_stddev_samp_fields | null) - sum: (game_server_nodes_sum_fields | null) - var_pop: (game_server_nodes_var_pop_fields | null) - var_samp: (game_server_nodes_var_samp_fields | null) - variance: (game_server_nodes_variance_fields | null) - __typename: 'game_server_nodes_aggregate_fields' -} - - -/** aggregate 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' -} - - -/** 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 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 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 "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: game_server_nodes[] - __typename: 'game_server_nodes_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' | '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 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 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 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 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 "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 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 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 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 "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 "game_versions" */ -export interface game_versions_aggregate { - aggregate: (game_versions_aggregate_fields | null) - nodes: game_versions[] - __typename: 'game_versions_aggregate' -} - - -/** aggregate fields of "game_versions" */ -export interface game_versions_aggregate_fields { - avg: (game_versions_avg_fields | null) - count: Scalars['Int'] - max: (game_versions_max_fields | null) - min: (game_versions_min_fields | null) - stddev: (game_versions_stddev_fields | null) - stddev_pop: (game_versions_stddev_pop_fields | null) - stddev_samp: (game_versions_stddev_samp_fields | null) - sum: (game_versions_sum_fields | null) - var_pop: (game_versions_var_pop_fields | null) - var_samp: (game_versions_var_samp_fields | null) - variance: (game_versions_variance_fields | null) - __typename: 'game_versions_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface game_versions_avg_fields { - build_id: (Scalars['Float'] | null) - __typename: 'game_versions_avg_fields' -} - - -/** 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 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 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 "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: game_versions[] - __typename: 'game_versions_mutation_response' -} - - -/** 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 game_versions_stddev_fields { - build_id: (Scalars['Float'] | null) - __typename: 'game_versions_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface game_versions_stddev_pop_fields { - build_id: (Scalars['Float'] | null) - __typename: 'game_versions_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface game_versions_stddev_samp_fields { - build_id: (Scalars['Float'] | null) - __typename: 'game_versions_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface game_versions_sum_fields { - build_id: (Scalars['Int'] | null) - __typename: 'game_versions_sum_fields' -} - - -/** 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 game_versions_var_pop_fields { - build_id: (Scalars['Float'] | null) - __typename: 'game_versions_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface game_versions_var_samp_fields { - build_id: (Scalars['Float'] | null) - __typename: 'game_versions_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface game_versions_variance_fields { - build_id: (Scalars['Float'] | null) - __typename: 'game_versions_variance_fields' -} - - -/** columns and relationships of "gamedata_signature_validations" */ -export interface gamedata_signature_validations { - branch: Scalars['String'] - build_id: Scalars['Int'] - /** 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' -} - - -/** 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 "gamedata_signature_validations" */ -export interface gamedata_signature_validations_aggregate_fields { - avg: (gamedata_signature_validations_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' -} - - -/** aggregate avg on columns */ -export interface gamedata_signature_validations_avg_fields { - build_id: (Scalars['Float'] | null) - __typename: 'gamedata_signature_validations_avg_fields' -} - - -/** unique or primary key constraints on table "gamedata_signature_validations" */ -export type gamedata_signature_validations_constraint = 'gamedata_signature_validations_build_branch_idx' | 'gamedata_signature_validations_pkey' - - -/** aggregate max on columns */ -export interface 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' -} - - -/** 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' -} - - -/** 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: gamedata_signature_validations[] - __typename: 'gamedata_signature_validations_mutation_response' -} - - -/** 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 gamedata_signature_validations_stddev_fields { - build_id: (Scalars['Float'] | null) - __typename: 'gamedata_signature_validations_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' -} - - -/** aggregate stddev_samp on columns */ -export interface gamedata_signature_validations_stddev_samp_fields { - build_id: (Scalars['Float'] | null) - __typename: 'gamedata_signature_validations_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface gamedata_signature_validations_sum_fields { - build_id: (Scalars['Int'] | null) - __typename: 'gamedata_signature_validations_sum_fields' -} - - -/** 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 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 gamedata_signature_validations_var_samp_fields { - build_id: (Scalars['Float'] | null) - __typename: 'gamedata_signature_validations_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' -} - - -/** 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' -} - -export interface leaderboard_entries_aggregate { - aggregate: (leaderboard_entries_aggregate_fields | null) - nodes: leaderboard_entries[] - __typename: 'leaderboard_entries_aggregate' -} - - -/** aggregate fields of "leaderboard_entries" */ -export interface leaderboard_entries_aggregate_fields { - avg: (leaderboard_entries_avg_fields | null) - count: Scalars['Int'] - max: (leaderboard_entries_max_fields | null) - min: (leaderboard_entries_min_fields | null) - stddev: (leaderboard_entries_stddev_fields | null) - stddev_pop: (leaderboard_entries_stddev_pop_fields | null) - stddev_samp: (leaderboard_entries_stddev_samp_fields | null) - sum: (leaderboard_entries_sum_fields | null) - var_pop: (leaderboard_entries_var_pop_fields | null) - var_samp: (leaderboard_entries_var_samp_fields | null) - variance: (leaderboard_entries_variance_fields | null) - __typename: 'leaderboard_entries_aggregate_fields' -} - - -/** aggregate 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 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 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 "leaderboard_entries" */ -export interface leaderboard_entries_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: leaderboard_entries[] - __typename: 'leaderboard_entries_mutation_response' -} - - -/** 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' - - -/** aggregate stddev on columns */ -export interface leaderboard_entries_stddev_fields { - matches_played: (Scalars['Float'] | null) - secondary_value: (Scalars['Float'] | null) - tertiary_value: (Scalars['Float'] | null) - value: (Scalars['Float'] | null) - __typename: 'leaderboard_entries_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface leaderboard_entries_stddev_pop_fields { - matches_played: (Scalars['Float'] | null) - secondary_value: (Scalars['Float'] | null) - tertiary_value: (Scalars['Float'] | null) - value: (Scalars['Float'] | null) - __typename: 'leaderboard_entries_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface leaderboard_entries_stddev_samp_fields { - matches_played: (Scalars['Float'] | null) - secondary_value: (Scalars['Float'] | null) - tertiary_value: (Scalars['Float'] | null) - value: (Scalars['Float'] | null) - __typename: 'leaderboard_entries_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface leaderboard_entries_sum_fields { - matches_played: (Scalars['Int'] | null) - secondary_value: (Scalars['float8'] | null) - tertiary_value: (Scalars['float8'] | null) - value: (Scalars['float8'] | null) - __typename: 'leaderboard_entries_sum_fields' -} - - -/** aggregate var_pop on columns */ -export interface 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'] - 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' -} - - -/** 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_divisions" */ -export interface league_divisions_aggregate_fields { - avg: (league_divisions_avg_fields | null) - count: Scalars['Int'] - max: (league_divisions_max_fields | null) - min: (league_divisions_min_fields | null) - stddev: (league_divisions_stddev_fields | null) - stddev_pop: (league_divisions_stddev_pop_fields | null) - stddev_samp: (league_divisions_stddev_samp_fields | null) - sum: (league_divisions_sum_fields | null) - var_pop: (league_divisions_var_pop_fields | null) - var_samp: (league_divisions_var_samp_fields | null) - variance: (league_divisions_variance_fields | null) - __typename: 'league_divisions_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface league_divisions_avg_fields { - tier: (Scalars['Float'] | null) - __typename: 'league_divisions_avg_fields' -} - - -/** unique or primary key constraints on table "league_divisions" */ -export type league_divisions_constraint = 'league_divisions_name_key' | 'league_divisions_pkey' | 'league_divisions_tier_key' - - -/** aggregate max on columns */ -export interface league_divisions_max_fields { - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - name: (Scalars['String'] | null) - tier: (Scalars['smallint'] | null) - __typename: 'league_divisions_max_fields' -} - - -/** aggregate min on columns */ -export interface league_divisions_min_fields { - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - name: (Scalars['String'] | null) - tier: (Scalars['smallint'] | null) - __typename: 'league_divisions_min_fields' -} - - -/** 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_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' -} - - -/** 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_divisions_var_pop_fields { - tier: (Scalars['Float'] | null) - __typename: 'league_divisions_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface league_divisions_var_samp_fields { - tier: (Scalars['Float'] | null) - __typename: 'league_divisions_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface league_divisions_variance_fields { - tier: (Scalars['Float'] | null) - __typename: 'league_divisions_variance_fields' -} - - -/** columns and relationships of "league_match_weeks" */ -export interface league_match_weeks { - closes_at: Scalars['timestamptz'] - created_at: Scalars['timestamptz'] - default_match_at: Scalars['timestamptz'] - id: Scalars['uuid'] - league_season_id: Scalars['uuid'] - opens_at: Scalars['timestamptz'] - /** An object relationship */ - season: league_seasons - week_number: Scalars['Int'] - __typename: 'league_match_weeks' -} - - -/** aggregated selection of "league_match_weeks" */ -export interface league_match_weeks_aggregate { - aggregate: (league_match_weeks_aggregate_fields | null) - nodes: league_match_weeks[] - __typename: 'league_match_weeks_aggregate' -} - - -/** aggregate fields of "league_match_weeks" */ -export interface league_match_weeks_aggregate_fields { - avg: (league_match_weeks_avg_fields | null) - count: Scalars['Int'] - max: (league_match_weeks_max_fields | null) - min: (league_match_weeks_min_fields | null) - stddev: (league_match_weeks_stddev_fields | null) - stddev_pop: (league_match_weeks_stddev_pop_fields | null) - stddev_samp: (league_match_weeks_stddev_samp_fields | null) - sum: (league_match_weeks_sum_fields | null) - var_pop: (league_match_weeks_var_pop_fields | null) - var_samp: (league_match_weeks_var_samp_fields | null) - variance: (league_match_weeks_variance_fields | null) - __typename: 'league_match_weeks_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface league_match_weeks_avg_fields { - week_number: (Scalars['Float'] | null) - __typename: 'league_match_weeks_avg_fields' -} - - -/** unique or primary key constraints on table "league_match_weeks" */ -export type league_match_weeks_constraint = 'league_match_weeks_league_season_id_week_number_key' | 'league_match_weeks_pkey' - - -/** aggregate max on columns */ -export interface league_match_weeks_max_fields { - closes_at: (Scalars['timestamptz'] | null) - created_at: (Scalars['timestamptz'] | null) - default_match_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - league_season_id: (Scalars['uuid'] | null) - opens_at: (Scalars['timestamptz'] | null) - week_number: (Scalars['Int'] | null) - __typename: 'league_match_weeks_max_fields' -} - - -/** aggregate 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' -} - - -/** 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_match_weeks[] - __typename: 'league_match_weeks_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' - - -/** aggregate stddev on columns */ -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_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_match_weeks_stddev_samp_fields { - week_number: (Scalars['Float'] | null) - __typename: 'league_match_weeks_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' -} - - -/** 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_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_match_weeks_var_samp_fields { - week_number: (Scalars['Float'] | null) - __typename: 'league_match_weeks_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' -} - - -/** 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' -} - - -/** 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_relegation_playoffs" */ -export interface league_relegation_playoffs_aggregate_fields { - avg: (league_relegation_playoffs_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' -} - - -/** aggregate avg on columns */ -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_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_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_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_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_relegation_playoffs[] - __typename: 'league_relegation_playoffs_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' - - -/** aggregate stddev on columns */ -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_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_relegation_playoffs_stddev_samp_fields { - higher_slots: (Scalars['Float'] | null) - __typename: 'league_relegation_playoffs_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' -} - - -/** 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_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_relegation_playoffs_var_samp_fields { - higher_slots: (Scalars['Float'] | null) - __typename: 'league_relegation_playoffs_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' -} - - -/** columns and relationships of "league_scheduling_proposals" */ -export interface league_scheduling_proposals { - /** An object relationship */ - bracket: tournament_brackets - created_at: Scalars['timestamptz'] - /** An object relationship */ - e_proposal_status: e_league_proposal_statuses - id: Scalars['uuid'] - message: (Scalars['String'] | null) - /** An object relationship */ - proposed_by: players - proposed_by_league_team_season_id: (Scalars['uuid'] | null) - proposed_by_steam_id: Scalars['bigint'] - proposed_time: Scalars['timestamptz'] - /** An object relationship */ - responded_by: (players | null) - responded_by_steam_id: (Scalars['bigint'] | null) - status: e_league_proposal_statuses_enum - /** An object relationship */ - team_season: (league_team_seasons | null) - tournament_bracket_id: Scalars['uuid'] - __typename: 'league_scheduling_proposals' -} - - -/** 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_scheduling_proposals" */ -export interface league_scheduling_proposals_aggregate_fields { - avg: (league_scheduling_proposals_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' -} - - -/** aggregate avg on columns */ -export interface league_scheduling_proposals_avg_fields { - proposed_by_steam_id: (Scalars['Float'] | null) - responded_by_steam_id: (Scalars['Float'] | null) - __typename: 'league_scheduling_proposals_avg_fields' -} - - -/** unique or primary key constraints on table "league_scheduling_proposals" */ -export type league_scheduling_proposals_constraint = 'league_scheduling_proposals_pkey' - - -/** aggregate max on columns */ -export interface league_scheduling_proposals_max_fields { - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - message: (Scalars['String'] | null) - proposed_by_league_team_season_id: (Scalars['uuid'] | null) - proposed_by_steam_id: (Scalars['bigint'] | null) - proposed_time: (Scalars['timestamptz'] | null) - responded_by_steam_id: (Scalars['bigint'] | null) - tournament_bracket_id: (Scalars['uuid'] | null) - __typename: 'league_scheduling_proposals_max_fields' -} - - -/** aggregate min on columns */ -export interface league_scheduling_proposals_min_fields { - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - message: (Scalars['String'] | null) - proposed_by_league_team_season_id: (Scalars['uuid'] | null) - proposed_by_steam_id: (Scalars['bigint'] | null) - proposed_time: (Scalars['timestamptz'] | null) - responded_by_steam_id: (Scalars['bigint'] | null) - tournament_bracket_id: (Scalars['uuid'] | null) - __typename: 'league_scheduling_proposals_min_fields' -} - - -/** 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_scheduling_proposals[] - __typename: 'league_scheduling_proposals_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' - - -/** 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' -} - - -/** 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' -} - - -/** aggregate stddev_samp on columns */ -export interface league_scheduling_proposals_stddev_samp_fields { - proposed_by_steam_id: (Scalars['Float'] | null) - responded_by_steam_id: (Scalars['Float'] | null) - __typename: 'league_scheduling_proposals_stddev_samp_fields' -} - - -/** aggregate 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' -} - - -/** 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_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_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_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_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' -} - - -/** 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_season_divisions" */ -export interface league_season_divisions_aggregate_fields { - count: Scalars['Int'] - 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_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_season_divisions_max_fields { - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - league_division_id: (Scalars['uuid'] | null) - league_season_id: (Scalars['uuid'] | null) - tournament_id: (Scalars['uuid'] | null) - __typename: 'league_season_divisions_max_fields' -} - - -/** aggregate min on columns */ -export interface league_season_divisions_min_fields { - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - league_division_id: (Scalars['uuid'] | null) - league_season_id: (Scalars['uuid'] | null) - tournament_id: (Scalars['uuid'] | null) - __typename: 'league_season_divisions_min_fields' -} - - -/** response of any mutation on the table "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_season_divisions[] - __typename: 'league_season_divisions_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' - - -/** 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 "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_league_season_status: e_league_season_statuses - games_per_week: Scalars['Int'] - id: Scalars['uuid'] - /** A computed field, executes function "is_league_season_admin" */ - is_league_admin: (Scalars['Boolean'] | null) - /** A computed field, executes function "league_season_is_roster_locked" */ - is_roster_locked: (Scalars['Boolean'] | null) - match_options_id: (Scalars['uuid'] | null) - /** An array relationship */ - match_weeks: league_match_weeks[] - /** An aggregate relationship */ - match_weeks_aggregate: league_match_weeks_aggregate - match_weeks_count: Scalars['Int'] - max_roster_size: (Scalars['Int'] | null) - min_roster_size: Scalars['Int'] - /** An array relationship */ - movements: league_team_movements[] - /** An aggregate relationship */ - movements_aggregate: league_team_movements_aggregate - /** A computed field, executes function "league_season_my_registration" */ - my_registration: (league_team_seasons[] | null) - name: Scalars['String'] - /** An object relationship */ - options: (match_options | null) - /** An array relationship */ - player_stats: v_league_season_player_stats[] - /** An aggregate relationship */ - player_stats_aggregate: v_league_season_player_stats_aggregate - playoff_best_of: Scalars['Int'] - playoff_round_best_of: Scalars['jsonb'] - playoff_seats: Scalars['Int'] - playoff_stage_type: e_tournament_stage_types_enum - playoff_third_place_match: Scalars['Boolean'] - promote_count: Scalars['Int'] - regular_season_stage_type: e_tournament_stage_types_enum - relegate_count: Scalars['Int'] - relegation_down_count: Scalars['Int'] - /** An array relationship */ - relegation_playoffs: league_relegation_playoffs[] - /** An aggregate relationship */ - relegation_playoffs_aggregate: league_relegation_playoffs_aggregate - relegation_up_count: Scalars['Int'] - roster_lock_at: (Scalars['timestamptz'] | null) - /** An array relationship */ - season_divisions: league_season_divisions[] - /** An aggregate relationship */ - season_divisions_aggregate: league_season_divisions_aggregate - season_number: (Scalars['Int'] | null) - signup_closes_at: (Scalars['timestamptz'] | null) - signup_opens_at: (Scalars['timestamptz'] | null) - /** An array relationship */ - standings: v_league_division_standings[] - /** An aggregate relationship */ - standings_aggregate: v_league_division_standings_aggregate - starts_at: (Scalars['timestamptz'] | null) - status: e_league_season_statuses_enum - /** An array relationship */ - team_seasons: league_team_seasons[] - /** An aggregate relationship */ - team_seasons_aggregate: league_team_seasons_aggregate - week_best_of: Scalars['jsonb'] - __typename: 'league_seasons' -} - - -/** aggregated selection of "league_seasons" */ -export interface league_seasons_aggregate { - aggregate: (league_seasons_aggregate_fields | null) - nodes: league_seasons[] - __typename: 'league_seasons_aggregate' -} - - -/** aggregate fields of "league_seasons" */ -export interface league_seasons_aggregate_fields { - avg: (league_seasons_avg_fields | null) - count: Scalars['Int'] - max: (league_seasons_max_fields | null) - min: (league_seasons_min_fields | null) - stddev: (league_seasons_stddev_fields | null) - stddev_pop: (league_seasons_stddev_pop_fields | null) - stddev_samp: (league_seasons_stddev_samp_fields | null) - sum: (league_seasons_sum_fields | null) - var_pop: (league_seasons_var_pop_fields | null) - var_samp: (league_seasons_var_samp_fields | null) - variance: (league_seasons_variance_fields | null) - __typename: 'league_seasons_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface league_seasons_avg_fields { - created_by_steam_id: (Scalars['Float'] | null) - default_best_of: (Scalars['Float'] | null) - direct_promote_count: (Scalars['Float'] | null) - direct_relegate_count: (Scalars['Float'] | null) - games_per_week: (Scalars['Float'] | null) - match_weeks_count: (Scalars['Float'] | null) - max_roster_size: (Scalars['Float'] | null) - min_roster_size: (Scalars['Float'] | null) - playoff_best_of: (Scalars['Float'] | null) - playoff_seats: (Scalars['Float'] | null) - promote_count: (Scalars['Float'] | null) - relegate_count: (Scalars['Float'] | null) - relegation_down_count: (Scalars['Float'] | null) - relegation_up_count: (Scalars['Float'] | null) - season_number: (Scalars['Float'] | null) - __typename: 'league_seasons_avg_fields' -} - - -/** unique or primary key constraints on table "league_seasons" */ -export type league_seasons_constraint = 'league_seasons_name_key' | 'league_seasons_pkey' | 'league_seasons_season_number_key' - - -/** aggregate max on columns */ -export interface league_seasons_max_fields { - created_at: (Scalars['timestamptz'] | null) - created_by_steam_id: (Scalars['bigint'] | null) - default_best_of: (Scalars['Int'] | null) - direct_promote_count: (Scalars['Int'] | null) - direct_relegate_count: (Scalars['Int'] | null) - games_per_week: (Scalars['Int'] | null) - id: (Scalars['uuid'] | null) - match_options_id: (Scalars['uuid'] | null) - match_weeks_count: (Scalars['Int'] | null) - max_roster_size: (Scalars['Int'] | null) - min_roster_size: (Scalars['Int'] | null) - name: (Scalars['String'] | null) - playoff_best_of: (Scalars['Int'] | null) - playoff_seats: (Scalars['Int'] | null) - promote_count: (Scalars['Int'] | null) - relegate_count: (Scalars['Int'] | null) - relegation_down_count: (Scalars['Int'] | null) - relegation_up_count: (Scalars['Int'] | null) - roster_lock_at: (Scalars['timestamptz'] | null) - season_number: (Scalars['Int'] | null) - signup_closes_at: (Scalars['timestamptz'] | null) - signup_opens_at: (Scalars['timestamptz'] | null) - starts_at: (Scalars['timestamptz'] | null) - __typename: 'league_seasons_max_fields' -} - - -/** aggregate min on columns */ -export interface league_seasons_min_fields { - created_at: (Scalars['timestamptz'] | null) - created_by_steam_id: (Scalars['bigint'] | null) - default_best_of: (Scalars['Int'] | null) - direct_promote_count: (Scalars['Int'] | null) - direct_relegate_count: (Scalars['Int'] | null) - games_per_week: (Scalars['Int'] | null) - id: (Scalars['uuid'] | null) - match_options_id: (Scalars['uuid'] | null) - match_weeks_count: (Scalars['Int'] | null) - max_roster_size: (Scalars['Int'] | null) - min_roster_size: (Scalars['Int'] | null) - name: (Scalars['String'] | null) - playoff_best_of: (Scalars['Int'] | null) - playoff_seats: (Scalars['Int'] | null) - promote_count: (Scalars['Int'] | null) - relegate_count: (Scalars['Int'] | null) - relegation_down_count: (Scalars['Int'] | null) - relegation_up_count: (Scalars['Int'] | null) - roster_lock_at: (Scalars['timestamptz'] | null) - season_number: (Scalars['Int'] | null) - signup_closes_at: (Scalars['timestamptz'] | null) - signup_opens_at: (Scalars['timestamptz'] | null) - starts_at: (Scalars['timestamptz'] | null) - __typename: 'league_seasons_min_fields' -} - - -/** response of any mutation on the table "league_seasons" */ -export interface league_seasons_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: league_seasons[] - __typename: 'league_seasons_mutation_response' -} - - -/** select columns of table "league_seasons" */ -export type league_seasons_select_column = 'auto_regular_season_format' | 'created_at' | 'created_by_steam_id' | 'default_best_of' | 'direct_promote_count' | 'direct_relegate_count' | 'games_per_week' | 'id' | 'match_options_id' | 'match_weeks_count' | 'max_roster_size' | 'min_roster_size' | 'name' | 'playoff_best_of' | 'playoff_round_best_of' | 'playoff_seats' | 'playoff_stage_type' | 'playoff_third_place_match' | 'promote_count' | 'regular_season_stage_type' | 'relegate_count' | 'relegation_down_count' | 'relegation_up_count' | 'roster_lock_at' | 'season_number' | 'signup_closes_at' | 'signup_opens_at' | 'starts_at' | 'status' | 'week_best_of' - - -/** aggregate stddev on columns */ -export interface league_seasons_stddev_fields { - created_by_steam_id: (Scalars['Float'] | null) - default_best_of: (Scalars['Float'] | null) - direct_promote_count: (Scalars['Float'] | null) - direct_relegate_count: (Scalars['Float'] | null) - games_per_week: (Scalars['Float'] | null) - match_weeks_count: (Scalars['Float'] | null) - max_roster_size: (Scalars['Float'] | null) - min_roster_size: (Scalars['Float'] | null) - playoff_best_of: (Scalars['Float'] | null) - playoff_seats: (Scalars['Float'] | null) - promote_count: (Scalars['Float'] | null) - relegate_count: (Scalars['Float'] | null) - relegation_down_count: (Scalars['Float'] | null) - relegation_up_count: (Scalars['Float'] | null) - season_number: (Scalars['Float'] | null) - __typename: 'league_seasons_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface league_seasons_stddev_pop_fields { - created_by_steam_id: (Scalars['Float'] | null) - default_best_of: (Scalars['Float'] | null) - direct_promote_count: (Scalars['Float'] | null) - direct_relegate_count: (Scalars['Float'] | null) - games_per_week: (Scalars['Float'] | null) - match_weeks_count: (Scalars['Float'] | null) - max_roster_size: (Scalars['Float'] | null) - min_roster_size: (Scalars['Float'] | null) - playoff_best_of: (Scalars['Float'] | null) - playoff_seats: (Scalars['Float'] | null) - promote_count: (Scalars['Float'] | null) - relegate_count: (Scalars['Float'] | null) - relegation_down_count: (Scalars['Float'] | null) - relegation_up_count: (Scalars['Float'] | null) - season_number: (Scalars['Float'] | null) - __typename: 'league_seasons_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface league_seasons_stddev_samp_fields { - created_by_steam_id: (Scalars['Float'] | null) - default_best_of: (Scalars['Float'] | null) - direct_promote_count: (Scalars['Float'] | null) - direct_relegate_count: (Scalars['Float'] | null) - games_per_week: (Scalars['Float'] | null) - match_weeks_count: (Scalars['Float'] | null) - max_roster_size: (Scalars['Float'] | null) - min_roster_size: (Scalars['Float'] | null) - playoff_best_of: (Scalars['Float'] | null) - playoff_seats: (Scalars['Float'] | null) - promote_count: (Scalars['Float'] | null) - relegate_count: (Scalars['Float'] | null) - relegation_down_count: (Scalars['Float'] | null) - relegation_up_count: (Scalars['Float'] | null) - season_number: (Scalars['Float'] | null) - __typename: 'league_seasons_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface league_seasons_sum_fields { - created_by_steam_id: (Scalars['bigint'] | null) - default_best_of: (Scalars['Int'] | null) - direct_promote_count: (Scalars['Int'] | null) - direct_relegate_count: (Scalars['Int'] | null) - games_per_week: (Scalars['Int'] | null) - match_weeks_count: (Scalars['Int'] | null) - max_roster_size: (Scalars['Int'] | null) - min_roster_size: (Scalars['Int'] | null) - playoff_best_of: (Scalars['Int'] | null) - playoff_seats: (Scalars['Int'] | null) - promote_count: (Scalars['Int'] | null) - relegate_count: (Scalars['Int'] | null) - relegation_down_count: (Scalars['Int'] | null) - relegation_up_count: (Scalars['Int'] | null) - season_number: (Scalars['Int'] | null) - __typename: 'league_seasons_sum_fields' -} - - -/** update columns of table "league_seasons" */ -export type league_seasons_update_column = 'auto_regular_season_format' | 'created_at' | 'created_by_steam_id' | 'default_best_of' | 'direct_promote_count' | 'direct_relegate_count' | 'games_per_week' | 'id' | 'match_options_id' | 'match_weeks_count' | 'max_roster_size' | 'min_roster_size' | 'name' | 'playoff_best_of' | 'playoff_round_best_of' | 'playoff_seats' | 'playoff_stage_type' | 'playoff_third_place_match' | 'promote_count' | 'regular_season_stage_type' | 'relegate_count' | 'relegation_down_count' | 'relegation_up_count' | 'roster_lock_at' | 'season_number' | 'signup_closes_at' | 'signup_opens_at' | 'starts_at' | 'status' | 'week_best_of' - - -/** aggregate var_pop on columns */ -export interface league_seasons_var_pop_fields { - created_by_steam_id: (Scalars['Float'] | null) - default_best_of: (Scalars['Float'] | null) - direct_promote_count: (Scalars['Float'] | null) - direct_relegate_count: (Scalars['Float'] | null) - games_per_week: (Scalars['Float'] | null) - match_weeks_count: (Scalars['Float'] | null) - max_roster_size: (Scalars['Float'] | null) - min_roster_size: (Scalars['Float'] | null) - playoff_best_of: (Scalars['Float'] | null) - playoff_seats: (Scalars['Float'] | null) - promote_count: (Scalars['Float'] | null) - relegate_count: (Scalars['Float'] | null) - relegation_down_count: (Scalars['Float'] | null) - relegation_up_count: (Scalars['Float'] | null) - season_number: (Scalars['Float'] | null) - __typename: 'league_seasons_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface league_seasons_var_samp_fields { - created_by_steam_id: (Scalars['Float'] | null) - default_best_of: (Scalars['Float'] | null) - direct_promote_count: (Scalars['Float'] | null) - direct_relegate_count: (Scalars['Float'] | null) - games_per_week: (Scalars['Float'] | null) - match_weeks_count: (Scalars['Float'] | null) - max_roster_size: (Scalars['Float'] | null) - min_roster_size: (Scalars['Float'] | null) - playoff_best_of: (Scalars['Float'] | null) - playoff_seats: (Scalars['Float'] | null) - promote_count: (Scalars['Float'] | null) - relegate_count: (Scalars['Float'] | null) - relegation_down_count: (Scalars['Float'] | null) - relegation_up_count: (Scalars['Float'] | null) - season_number: (Scalars['Float'] | null) - __typename: 'league_seasons_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface league_seasons_variance_fields { - created_by_steam_id: (Scalars['Float'] | null) - default_best_of: (Scalars['Float'] | null) - direct_promote_count: (Scalars['Float'] | null) - direct_relegate_count: (Scalars['Float'] | null) - games_per_week: (Scalars['Float'] | null) - match_weeks_count: (Scalars['Float'] | null) - max_roster_size: (Scalars['Float'] | null) - min_roster_size: (Scalars['Float'] | null) - playoff_best_of: (Scalars['Float'] | null) - playoff_seats: (Scalars['Float'] | null) - promote_count: (Scalars['Float'] | null) - relegate_count: (Scalars['Float'] | null) - relegation_down_count: (Scalars['Float'] | null) - relegation_up_count: (Scalars['Float'] | null) - season_number: (Scalars['Float'] | null) - __typename: 'league_seasons_variance_fields' -} - - -/** columns and relationships of "league_team_movements" */ -export interface league_team_movements { - approved_at: (Scalars['timestamptz'] | null) - /** An object relationship */ - approved_by: (players | null) - approved_by_steam_id: (Scalars['bigint'] | null) - /** An object relationship */ - computed_to_division: (league_divisions | null) - computed_to_division_id: (Scalars['uuid'] | null) - created_at: Scalars['timestamptz'] - /** An object relationship */ - e_movement_type: e_league_movement_types - final_rank: (Scalars['Int'] | null) - /** An object relationship */ - final_to_division: (league_divisions | null) - final_to_division_id: (Scalars['uuid'] | null) - /** An object relationship */ - from_division: (league_divisions | null) - from_division_id: (Scalars['uuid'] | null) - id: Scalars['uuid'] - league_season_id: Scalars['uuid'] - /** An object relationship */ - league_team: league_teams - league_team_id: Scalars['uuid'] - /** An object relationship */ - season: league_seasons - type: e_league_movement_types_enum - __typename: 'league_team_movements' -} - - -/** aggregated selection of "league_team_movements" */ -export interface league_team_movements_aggregate { - aggregate: (league_team_movements_aggregate_fields | null) - nodes: league_team_movements[] - __typename: 'league_team_movements_aggregate' -} - - -/** aggregate fields of "league_team_movements" */ -export interface league_team_movements_aggregate_fields { - avg: (league_team_movements_avg_fields | null) - count: Scalars['Int'] - max: (league_team_movements_max_fields | null) - min: (league_team_movements_min_fields | null) - stddev: (league_team_movements_stddev_fields | null) - stddev_pop: (league_team_movements_stddev_pop_fields | null) - stddev_samp: (league_team_movements_stddev_samp_fields | null) - sum: (league_team_movements_sum_fields | null) - var_pop: (league_team_movements_var_pop_fields | null) - var_samp: (league_team_movements_var_samp_fields | null) - variance: (league_team_movements_variance_fields | null) - __typename: 'league_team_movements_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface league_team_movements_avg_fields { - approved_by_steam_id: (Scalars['Float'] | null) - final_rank: (Scalars['Float'] | null) - __typename: 'league_team_movements_avg_fields' -} - - -/** unique or primary key constraints on table "league_team_movements" */ -export type league_team_movements_constraint = 'league_team_movements_league_season_id_league_team_id_key' | 'league_team_movements_pkey' - - -/** aggregate max on columns */ -export interface 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 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 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 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 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 "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 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 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 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 "league_team_rosters" */ -export interface league_team_rosters { - added_at: Scalars['timestamptz'] - league_team_season_id: Scalars['uuid'] - /** An object relationship */ - player: players - player_steam_id: Scalars['bigint'] - removed_at: (Scalars['timestamptz'] | null) - removed_reason: (Scalars['String'] | null) - status: e_team_roster_statuses_enum - /** An object relationship */ - team_season: league_team_seasons - __typename: 'league_team_rosters' -} - - -/** 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 "league_team_rosters" */ -export interface league_team_rosters_aggregate_fields { - avg: (league_team_rosters_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' -} - - -/** 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 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 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 "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: league_team_rosters[] - __typename: 'league_team_rosters_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' - - -/** aggregate stddev on columns */ -export interface league_team_rosters_stddev_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'league_team_rosters_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface league_team_rosters_stddev_pop_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'league_team_rosters_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface league_team_rosters_stddev_samp_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'league_team_rosters_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface league_team_rosters_sum_fields { - player_steam_id: (Scalars['bigint'] | null) - __typename: 'league_team_rosters_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' - - -/** 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 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' -} - - -/** aggregate variance on columns */ -export interface league_team_rosters_variance_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'league_team_rosters_variance_fields' -} - - -/** columns and relationships of "league_team_seasons" */ -export interface league_team_seasons { - /** An object relationship */ - assigned_division: (league_divisions | null) - assigned_division_id: (Scalars['uuid'] | null) - /** An object relationship */ - captain: (players | null) - captain_steam_id: (Scalars['bigint'] | null) - created_at: Scalars['timestamptz'] - decline_reason: (Scalars['String'] | null) - /** An object relationship */ - e_registration_status: e_league_registration_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) - /** 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 - /** An object relationship */ - season: league_seasons - seed: (Scalars['Int'] | null) - status: e_league_registration_statuses_enum - /** An object relationship */ - tournament_team: (tournament_teams | null) - tournament_team_id: (Scalars['uuid'] | null) - __typename: 'league_team_seasons' -} - - -/** aggregated selection of "league_team_seasons" */ -export interface league_team_seasons_aggregate { - aggregate: (league_team_seasons_aggregate_fields | null) - nodes: league_team_seasons[] - __typename: 'league_team_seasons_aggregate' -} - - -/** aggregate fields of "league_team_seasons" */ -export interface league_team_seasons_aggregate_fields { - avg: (league_team_seasons_avg_fields | null) - count: Scalars['Int'] - max: (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 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 "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 league_team_seasons_max_fields { - assigned_division_id: (Scalars['uuid'] | null) - captain_steam_id: (Scalars['bigint'] | null) - 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' -} - - -/** aggregate min on columns */ -export interface league_team_seasons_min_fields { - assigned_division_id: (Scalars['uuid'] | null) - captain_steam_id: (Scalars['bigint'] | null) - 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' -} - - -/** 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: league_team_seasons[] - __typename: 'league_team_seasons_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' - - -/** 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' -} - - -/** 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' -} - - -/** 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' -} - - -/** 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' -} - - -/** 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 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 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 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 "league_teams" */ -export interface league_teams { - created_at: Scalars['timestamptz'] - id: Scalars['uuid'] - /** An array relationship */ - movements: league_team_movements[] - /** An aggregate relationship */ - movements_aggregate: league_team_movements_aggregate - /** An object relationship */ - 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 "league_teams" */ -export interface league_teams_aggregate { - aggregate: (league_teams_aggregate_fields | null) - nodes: league_teams[] - __typename: 'league_teams_aggregate' -} - - -/** aggregate fields of "league_teams" */ -export interface league_teams_aggregate_fields { - count: Scalars['Int'] - max: (league_teams_max_fields | null) - min: (league_teams_min_fields | null) - __typename: 'league_teams_aggregate_fields' -} - - -/** unique or primary key constraints on table "league_teams" */ -export type league_teams_constraint = 'league_teams_pkey' | 'league_teams_team_id_key' - - -/** aggregate max on columns */ -export interface league_teams_max_fields { - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - team_id: (Scalars['uuid'] | null) - __typename: 'league_teams_max_fields' -} - - -/** aggregate min on columns */ -export interface league_teams_min_fields { - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - team_id: (Scalars['uuid'] | null) - __typename: 'league_teams_min_fields' -} - - -/** 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: league_teams[] - __typename: 'league_teams_mutation_response' -} - - -/** select columns of table "league_teams" */ -export type league_teams_select_column = 'created_at' | 'id' | 'team_id' - - -/** update columns of table "league_teams" */ -export type league_teams_update_column = 'created_at' | 'id' | 'team_id' - - -/** 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' -} - - -/** aggregated selection of "lobbies" */ -export interface lobbies_aggregate { - aggregate: (lobbies_aggregate_fields | null) - nodes: lobbies[] - __typename: 'lobbies_aggregate' -} - - -/** 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' -} - - -/** unique or primary key constraints on table "lobbies" */ -export type lobbies_constraint = 'lobbies_pkey' - - -/** aggregate max on columns */ -export interface lobbies_max_fields { - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - __typename: 'lobbies_max_fields' -} - - -/** aggregate min on columns */ -export interface lobbies_min_fields { - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - __typename: 'lobbies_min_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' -} - - -/** select columns of table "lobbies" */ -export type lobbies_select_column = 'access' | 'created_at' | 'id' - - -/** update columns of table "lobbies" */ -export type lobbies_update_column = 'access' | 'created_at' | 'id' - - -/** columns and relationships of "lobby_players" */ -export interface lobby_players { - captain: Scalars['Boolean'] - invited_by_steam_id: (Scalars['bigint'] | null) - /** 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' -} - - -/** 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 "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 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' -} - - -/** 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' -} - - -/** 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' -} - - -/** 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' -} - - -/** select columns of table "lobby_players" */ -export type lobby_players_select_column = 'captain' | 'invited_by_steam_id' | 'lobby_id' | 'status' | 'steam_id' - - -/** select "lobby_players_aggregate_bool_exp_bool_and_arguments_columns" columns of table "lobby_players" */ -export type lobby_players_select_column_lobby_players_aggregate_bool_exp_bool_and_arguments_columns = 'captain' - - -/** select "lobby_players_aggregate_bool_exp_bool_or_arguments_columns" columns of table "lobby_players" */ -export type lobby_players_select_column_lobby_players_aggregate_bool_exp_bool_or_arguments_columns = 'captain' - - -/** aggregate stddev on columns */ -export interface lobby_players_stddev_fields { - invited_by_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'lobby_players_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface lobby_players_stddev_pop_fields { - invited_by_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'lobby_players_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface lobby_players_stddev_samp_fields { - invited_by_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'lobby_players_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface lobby_players_sum_fields { - invited_by_steam_id: (Scalars['bigint'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'lobby_players_sum_fields' -} - - -/** update columns of table "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 lobby_players_var_pop_fields { - invited_by_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'lobby_players_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface lobby_players_var_samp_fields { - invited_by_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'lobby_players_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface lobby_players_variance_fields { - invited_by_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'lobby_players_variance_fields' -} - - -/** columns and relationships of "map_callouts" */ -export interface map_callouts { - boxes: Scalars['jsonb'] - map_name: Scalars['String'] - name: Scalars['String'] - source: Scalars['String'] - updated_at: Scalars['timestamptz'] - __typename: 'map_callouts' -} - - -/** aggregated selection of "map_callouts" */ -export interface map_callouts_aggregate { - aggregate: (map_callouts_aggregate_fields | null) - nodes: map_callouts[] - __typename: 'map_callouts_aggregate' -} - - -/** aggregate fields of "map_callouts" */ -export interface map_callouts_aggregate_fields { - count: Scalars['Int'] - max: (map_callouts_max_fields | null) - min: (map_callouts_min_fields | null) - __typename: 'map_callouts_aggregate_fields' -} - - -/** unique or primary key constraints on table "map_callouts" */ -export type map_callouts_constraint = 'map_callouts_pkey' - - -/** aggregate max on columns */ -export interface map_callouts_max_fields { - map_name: (Scalars['String'] | null) - name: (Scalars['String'] | null) - source: (Scalars['String'] | null) - updated_at: (Scalars['timestamptz'] | null) - __typename: 'map_callouts_max_fields' -} - - -/** aggregate min on columns */ -export interface map_callouts_min_fields { - map_name: (Scalars['String'] | null) - name: (Scalars['String'] | null) - source: (Scalars['String'] | null) - updated_at: (Scalars['timestamptz'] | null) - __typename: 'map_callouts_min_fields' -} - - -/** response of any mutation on the table "map_callouts" */ -export interface map_callouts_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: map_callouts[] - __typename: 'map_callouts_mutation_response' -} - - -/** select columns of table "map_callouts" */ -export type map_callouts_select_column = 'boxes' | 'map_name' | 'name' | 'source' | 'updated_at' - - -/** update columns of table "map_callouts" */ -export type map_callouts_update_column = 'boxes' | 'map_name' | 'name' | 'source' | 'updated_at' - - -/** columns and relationships of "map_pools" */ -export interface map_pools { - /** 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' -} - - -/** 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 "map_pools" */ -export interface map_pools_aggregate_fields { - count: Scalars['Int'] - max: (map_pools_max_fields | null) - min: (map_pools_min_fields | null) - __typename: 'map_pools_aggregate_fields' -} - - -/** unique or primary key constraints on table "map_pools" */ -export type map_pools_constraint = 'map_pools_pkey' - - -/** aggregate max on columns */ -export interface map_pools_max_fields { - id: (Scalars['uuid'] | null) - __typename: 'map_pools_max_fields' -} - - -/** aggregate min on columns */ -export interface map_pools_min_fields { - id: (Scalars['uuid'] | null) - __typename: 'map_pools_min_fields' -} - - -/** 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: map_pools[] - __typename: 'map_pools_mutation_response' -} - - -/** select columns of table "map_pools" */ -export type map_pools_select_column = 'enabled' | 'id' | 'seed' | 'type' - - -/** update columns of table "map_pools" */ -export type map_pools_update_column = 'enabled' | 'id' | 'seed' | 'type' - - -/** columns and relationships of "maps" */ -export interface maps { - active_pool: Scalars['Boolean'] - deleted_at: (Scalars['timestamptz'] | null) - /** 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' -} - - -/** aggregated selection of "maps" */ -export interface maps_aggregate { - aggregate: (maps_aggregate_fields | null) - nodes: maps[] - __typename: 'maps_aggregate' -} - - -/** 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' -} - - -/** unique or primary key constraints on table "maps" */ -export type maps_constraint = 'maps_name_type_key' | 'maps_pkey' - - -/** aggregate max on columns */ -export interface maps_max_fields { - deleted_at: (Scalars['timestamptz'] | null) - 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 min on columns */ -export interface maps_min_fields { - deleted_at: (Scalars['timestamptz'] | null) - 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' -} - - -/** 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' -} - - -/** select columns of table "maps" */ -export type maps_select_column = 'active_pool' | 'deleted_at' | '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' | 'deleted_at' | 'enabled' | 'id' | 'label' | 'name' | 'patch' | 'poster' | 'type' | 'workshop_map_id' - - -/** columns and relationships of "match_clips" */ -export interface match_clips { - created_at: Scalars['timestamptz'] - /** A computed field, executes function "clip_download_url" */ - download_url: (Scalars['String'] | null) - duration_ms: (Scalars['Int'] | null) - file: (Scalars['String'] | null) - id: Scalars['uuid'] - kills_count: (Scalars['Int'] | null) - /** An object relationship */ - match_map: match_maps - /** An object relationship */ - match_map_demo: (match_map_demos | null) - match_map_demo_id: (Scalars['uuid'] | null) - match_map_id: Scalars['uuid'] - /** An array relationship */ - render_jobs: clip_render_jobs[] - /** An aggregate relationship */ - render_jobs_aggregate: clip_render_jobs_aggregate - round: (Scalars['Int'] | null) - size: Scalars['bigint'] - /** An object relationship */ - target: (players | null) - target_steam_id: (Scalars['bigint'] | null) - /** A computed field, executes function "clip_thumbnail_download_url" */ - thumbnail_download_url: (Scalars['String'] | null) - thumbnail_url: (Scalars['String'] | null) - title: (Scalars['String'] | null) - /** An object relationship */ - user: (players | null) - user_steam_id: (Scalars['bigint'] | null) - views_count: Scalars['Int'] - visibility: e_match_clip_visibility_enum - __typename: 'match_clips' -} - - -/** aggregated selection of "match_clips" */ -export interface match_clips_aggregate { - aggregate: (match_clips_aggregate_fields | null) - nodes: match_clips[] - __typename: 'match_clips_aggregate' -} - - -/** aggregate fields of "match_clips" */ -export interface match_clips_aggregate_fields { - avg: (match_clips_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' -} - - -/** 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' -} - - -/** unique or primary key constraints on table "match_clips" */ -export type match_clips_constraint = 'match_clips_pkey' - - -/** aggregate max on columns */ -export interface match_clips_max_fields { - created_at: (Scalars['timestamptz'] | null) - /** A computed field, executes function "clip_download_url" */ - download_url: (Scalars['String'] | null) - duration_ms: (Scalars['Int'] | null) - file: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - kills_count: (Scalars['Int'] | null) - match_map_demo_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - round: (Scalars['Int'] | null) - size: (Scalars['bigint'] | null) - target_steam_id: (Scalars['bigint'] | null) - /** A computed field, executes function "clip_thumbnail_download_url" */ - thumbnail_download_url: (Scalars['String'] | null) - thumbnail_url: (Scalars['String'] | null) - title: (Scalars['String'] | null) - user_steam_id: (Scalars['bigint'] | null) - views_count: (Scalars['Int'] | null) - __typename: 'match_clips_max_fields' -} - - -/** aggregate min on columns */ -export interface match_clips_min_fields { - created_at: (Scalars['timestamptz'] | null) - /** A computed field, executes function "clip_download_url" */ - download_url: (Scalars['String'] | null) - duration_ms: (Scalars['Int'] | null) - file: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - kills_count: (Scalars['Int'] | null) - match_map_demo_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - round: (Scalars['Int'] | null) - size: (Scalars['bigint'] | null) - target_steam_id: (Scalars['bigint'] | null) - /** A computed field, executes function "clip_thumbnail_download_url" */ - thumbnail_download_url: (Scalars['String'] | null) - thumbnail_url: (Scalars['String'] | null) - title: (Scalars['String'] | null) - user_steam_id: (Scalars['bigint'] | null) - views_count: (Scalars['Int'] | null) - __typename: 'match_clips_min_fields' -} - - -/** 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_clips[] - __typename: 'match_clips_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' - - -/** 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' -} - - -/** 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' -} - - -/** 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' -} - - -/** 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' -} - - -/** 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_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' -} - - -/** 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' -} - - -/** 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' -} - - -/** columns and relationships of "match_demo_sessions" */ -export interface match_demo_sessions { - 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 object relationship */ - watcher: players - watcher_steam_id: Scalars['bigint'] - __typename: 'match_demo_sessions' -} - - -/** aggregated selection of "match_demo_sessions" */ -export interface match_demo_sessions_aggregate { - aggregate: (match_demo_sessions_aggregate_fields | null) - nodes: match_demo_sessions[] - __typename: 'match_demo_sessions_aggregate' -} - - -/** aggregate fields of "match_demo_sessions" */ -export interface match_demo_sessions_aggregate_fields { - avg: (match_demo_sessions_avg_fields | null) - count: Scalars['Int'] - max: (match_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' -} - - -/** 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_demo_sessions_max_fields { - created_at: (Scalars['timestamptz'] | null) - error_message: (Scalars['String'] | null) - game_server_node_id: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - 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' -} - - -/** aggregate min on columns */ -export interface match_demo_sessions_min_fields { - created_at: (Scalars['timestamptz'] | null) - error_message: (Scalars['String'] | null) - game_server_node_id: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - 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' -} - - -/** 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_demo_sessions[] - __typename: 'match_demo_sessions_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' - - -/** aggregate stddev on columns */ -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_demo_sessions_stddev_pop_fields { - watcher_steam_id: (Scalars['Float'] | null) - __typename: 'match_demo_sessions_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface match_demo_sessions_stddev_samp_fields { - watcher_steam_id: (Scalars['Float'] | null) - __typename: 'match_demo_sessions_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface match_demo_sessions_sum_fields { - watcher_steam_id: (Scalars['bigint'] | null) - __typename: 'match_demo_sessions_sum_fields' -} - - -/** update columns of table "match_demo_sessions" */ -export type match_demo_sessions_update_column = 'created_at' | 'error_message' | 'game_server_node_id' | 'id' | 'k8s_job_name' | 'last_activity_at' | 'last_status_at' | 'match_id' | 'match_map_demo_id' | 'match_map_id' | 'status' | 'status_history' | 'stream_url' | 'watcher_steam_id' - - -/** aggregate var_pop on columns */ -export interface match_demo_sessions_var_pop_fields { - watcher_steam_id: (Scalars['Float'] | null) - __typename: 'match_demo_sessions_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface match_demo_sessions_var_samp_fields { - watcher_steam_id: (Scalars['Float'] | null) - __typename: 'match_demo_sessions_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface match_demo_sessions_variance_fields { - watcher_steam_id: (Scalars['Float'] | null) - __typename: 'match_demo_sessions_variance_fields' -} - - -/** relational table for assigning a players to a match and lineup */ -export interface match_lineup_players { - captain: Scalars['Boolean'] - checked_in: Scalars['Boolean'] - discord_id: (Scalars['String'] | null) - id: Scalars['uuid'] - is_connected: Scalars['Boolean'] - /** 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) - /** An object relationship */ - player: (players | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'match_lineup_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' -} - - -/** 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_lineup_players_max_fields | null) - min: (match_lineup_players_min_fields | null) - stddev: (match_lineup_players_stddev_fields | null) - stddev_pop: (match_lineup_players_stddev_pop_fields | null) - stddev_samp: (match_lineup_players_stddev_samp_fields | null) - sum: (match_lineup_players_sum_fields | null) - var_pop: (match_lineup_players_var_pop_fields | null) - var_samp: (match_lineup_players_var_samp_fields | null) - variance: (match_lineup_players_variance_fields | null) - __typename: 'match_lineup_players_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface match_lineup_players_avg_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'match_lineup_players_avg_fields' -} - - -/** 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_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) - steam_id: (Scalars['bigint'] | null) - __typename: 'match_lineup_players_max_fields' -} - - -/** aggregate min on columns */ -export interface match_lineup_players_min_fields { - discord_id: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - match_lineup_id: (Scalars['uuid'] | null) - party_id: (Scalars['uuid'] | null) - placeholder_name: (Scalars['String'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'match_lineup_players_min_fields' -} - - -/** 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_lineup_players[] - __typename: 'match_lineup_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 "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_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' - - -/** aggregate stddev on columns */ -export interface match_lineup_players_stddev_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'match_lineup_players_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface match_lineup_players_stddev_pop_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'match_lineup_players_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface match_lineup_players_stddev_samp_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'match_lineup_players_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface match_lineup_players_sum_fields { - steam_id: (Scalars['bigint'] | null) - __typename: 'match_lineup_players_sum_fields' -} - - -/** update columns of table "match_lineup_players" */ -export type match_lineup_players_update_column = 'captain' | 'checked_in' | 'discord_id' | 'id' | 'is_connected' | 'match_lineup_id' | 'party_id' | 'party_source' | 'placeholder_name' | 'steam_id' - - -/** aggregate var_pop on columns */ -export interface match_lineup_players_var_pop_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'match_lineup_players_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface match_lineup_players_var_samp_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'match_lineup_players_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface match_lineup_players_variance_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'match_lineup_players_variance_fields' -} - - -/** relational table for assigning a team to a match and lineup */ -export interface match_lineups { - /** A computed field, executes function "can_pick_map_veto" */ - can_pick_map_veto: (Scalars['Boolean'] | null) - /** A computed field, executes function "can_pick_region_veto" */ - can_pick_region_veto: (Scalars['Boolean'] | null) - /** A computed field, executes function "can_update_lineup" */ - can_update_lineup: (Scalars['Boolean'] | null) - /** An object relationship */ - captain: (v_match_captains | null) - /** An object relationship */ - coach: (players | null) - coach_steam_id: (Scalars['bigint'] | null) - id: Scalars['uuid'] - /** A computed field, executes function "is_on_lineup" */ - is_on_lineup: (Scalars['Boolean'] | null) - /** A computed field, executes function "lineup_is_picking_map_veto" */ - is_picking_map_veto: (Scalars['Boolean'] | null) - /** A computed field, executes function "lineup_is_picking_region_veto" */ - is_picking_region_veto: (Scalars['Boolean'] | null) - /** A computed field, executes function "is_match_lineup_ready" */ - is_ready: (Scalars['Boolean'] | null) - /** An array relationship */ - 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[] - /** 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' -} - - -/** 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_lineups" */ -export interface match_lineups_aggregate_fields { - avg: (match_lineups_avg_fields | null) - count: Scalars['Int'] - max: (match_lineups_max_fields | null) - min: (match_lineups_min_fields | null) - stddev: (match_lineups_stddev_fields | null) - stddev_pop: (match_lineups_stddev_pop_fields | null) - stddev_samp: (match_lineups_stddev_samp_fields | null) - sum: (match_lineups_sum_fields | null) - var_pop: (match_lineups_var_pop_fields | null) - var_samp: (match_lineups_var_samp_fields | null) - variance: (match_lineups_variance_fields | null) - __typename: 'match_lineups_aggregate_fields' -} - - -/** aggregate avg on columns */ -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_lineups" */ -export type match_lineups_constraint = 'match_teams_pkey' - - -/** aggregate max on columns */ -export interface match_lineups_max_fields { - coach_steam_id: (Scalars['bigint'] | null) - id: (Scalars['uuid'] | null) - match_id: (Scalars['uuid'] | null) - /** A computed field, executes function "get_team_name" */ - name: (Scalars['String'] | null) - team_id: (Scalars['uuid'] | null) - team_name: (Scalars['String'] | null) - __typename: 'match_lineups_max_fields' -} - - -/** aggregate min on columns */ -export interface match_lineups_min_fields { - coach_steam_id: (Scalars['bigint'] | null) - id: (Scalars['uuid'] | null) - match_id: (Scalars['uuid'] | null) - /** A computed field, executes function "get_team_name" */ - name: (Scalars['String'] | null) - team_id: (Scalars['uuid'] | null) - team_name: (Scalars['String'] | null) - __typename: 'match_lineups_min_fields' -} - - -/** 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_lineups[] - __typename: 'match_lineups_mutation_response' -} - - -/** 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_lineups_stddev_fields { - coach_steam_id: (Scalars['Float'] | null) - __typename: 'match_lineups_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface match_lineups_stddev_pop_fields { - coach_steam_id: (Scalars['Float'] | null) - __typename: 'match_lineups_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -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_lineups_sum_fields { - coach_steam_id: (Scalars['bigint'] | null) - __typename: 'match_lineups_sum_fields' -} - - -/** 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_lineups_var_pop_fields { - coach_steam_id: (Scalars['Float'] | null) - __typename: 'match_lineups_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface match_lineups_var_samp_fields { - coach_steam_id: (Scalars['Float'] | null) - __typename: 'match_lineups_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface match_lineups_variance_fields { - coach_steam_id: (Scalars['Float'] | null) - __typename: 'match_lineups_variance_fields' -} - - -/** columns and relationships of "match_map_demos" */ -export interface match_map_demos { - bombs: (Scalars['jsonb'] | null) - /** An array relationship */ - clip_render_jobs: clip_render_jobs[] - /** An aggregate relationship */ - clip_render_jobs_aggregate: clip_render_jobs_aggregate - created_at: Scalars['timestamptz'] - cs2_build: (Scalars['String'] | null) - /** An array relationship */ - demo_sessions: match_demo_sessions[] - /** An aggregate relationship */ - demo_sessions_aggregate: match_demo_sessions_aggregate - /** A computed field, executes function "demo_download_url" */ - download_url: (Scalars['String'] | null) - duration_seconds: (Scalars['Float'] | null) - file: Scalars['String'] - geometry_validated: (Scalars['Boolean'] | null) - id: Scalars['uuid'] - kills: (Scalars['jsonb'] | null) - map_name: (Scalars['String'] | null) - /** An object relationship */ - match: matches - /** An array relationship */ - match_clips: match_clips[] - /** An aggregate relationship */ - match_clips_aggregate: match_clips_aggregate - match_id: Scalars['uuid'] - /** An object relationship */ - match_map: match_maps - match_map_id: Scalars['uuid'] - metadata_parsed_at: (Scalars['timestamptz'] | null) - parser_version: (Scalars['Int'] | null) - playback_file: (Scalars['String'] | null) - playback_size: (Scalars['Int'] | null) - /** A computed field, executes function "demo_playback_url" */ - playback_url: (Scalars['String'] | null) - playback_version: (Scalars['Int'] | 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_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_map_demos" */ -export interface match_map_demos_aggregate_fields { - avg: (match_map_demos_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' -} - - -/** aggregate avg on columns */ -export interface match_map_demos_avg_fields { - duration_seconds: (Scalars['Float'] | null) - parser_version: (Scalars['Float'] | null) - playback_size: (Scalars['Float'] | null) - playback_version: (Scalars['Float'] | null) - size: (Scalars['Float'] | null) - tick_rate: (Scalars['Float'] | null) - total_ticks: (Scalars['Float'] | null) - __typename: 'match_map_demos_avg_fields' -} - - -/** unique or primary key constraints on table "match_map_demos" */ -export type match_map_demos_constraint = 'match_demos_pkey' | 'match_map_demos_match_map_id_file_key' - - -/** aggregate max on columns */ -export interface match_map_demos_max_fields { - created_at: (Scalars['timestamptz'] | null) - cs2_build: (Scalars['String'] | null) - /** A computed field, executes function "demo_download_url" */ - download_url: (Scalars['String'] | null) - duration_seconds: (Scalars['Float'] | null) - file: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - map_name: (Scalars['String'] | null) - match_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - metadata_parsed_at: (Scalars['timestamptz'] | null) - parser_version: (Scalars['Int'] | null) - playback_file: (Scalars['String'] | null) - playback_size: (Scalars['Int'] | null) - /** A computed field, executes function "demo_playback_url" */ - playback_url: (Scalars['String'] | null) - playback_version: (Scalars['Int'] | null) - size: (Scalars['Int'] | null) - tick_rate: (Scalars['Float'] | null) - total_ticks: (Scalars['Int'] | null) - workshop_id: (Scalars['String'] | null) - __typename: 'match_map_demos_max_fields' -} - - -/** aggregate min on columns */ -export interface match_map_demos_min_fields { - created_at: (Scalars['timestamptz'] | null) - cs2_build: (Scalars['String'] | null) - /** A computed field, executes function "demo_download_url" */ - download_url: (Scalars['String'] | null) - duration_seconds: (Scalars['Float'] | null) - file: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - map_name: (Scalars['String'] | null) - match_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - metadata_parsed_at: (Scalars['timestamptz'] | null) - parser_version: (Scalars['Int'] | null) - playback_file: (Scalars['String'] | null) - playback_size: (Scalars['Int'] | null) - /** A computed field, executes function "demo_playback_url" */ - playback_url: (Scalars['String'] | null) - playback_version: (Scalars['Int'] | 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_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_map_demos[] - __typename: 'match_map_demos_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' | 'parser_version' | 'playback_file' | 'playback_size' | 'playback_version' | '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_map_demos_stddev_fields { - duration_seconds: (Scalars['Float'] | null) - parser_version: (Scalars['Float'] | null) - playback_size: (Scalars['Float'] | null) - playback_version: (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_map_demos_stddev_pop_fields { - duration_seconds: (Scalars['Float'] | null) - parser_version: (Scalars['Float'] | null) - playback_size: (Scalars['Float'] | null) - playback_version: (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_map_demos_stddev_samp_fields { - duration_seconds: (Scalars['Float'] | null) - parser_version: (Scalars['Float'] | null) - playback_size: (Scalars['Float'] | null) - playback_version: (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_map_demos_sum_fields { - duration_seconds: (Scalars['Float'] | null) - parser_version: (Scalars['Int'] | null) - playback_size: (Scalars['Int'] | null) - playback_version: (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_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' | 'parser_version' | 'playback_file' | 'playback_size' | 'playback_version' | 'players' | 'round_ticks' | 'size' | 'tick_rate' | 'total_ticks' | 'workshop_id' - - -/** aggregate var_pop on columns */ -export interface match_map_demos_var_pop_fields { - duration_seconds: (Scalars['Float'] | null) - parser_version: (Scalars['Float'] | null) - playback_size: (Scalars['Float'] | null) - playback_version: (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_map_demos_var_samp_fields { - duration_seconds: (Scalars['Float'] | null) - parser_version: (Scalars['Float'] | null) - playback_size: (Scalars['Float'] | null) - playback_version: (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_map_demos_variance_fields { - duration_seconds: (Scalars['Float'] | null) - parser_version: (Scalars['Float'] | null) - playback_size: (Scalars['Float'] | null) - playback_version: (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_map_rounds" */ -export interface match_map_rounds { - /** An array relationship */ - assists: player_assists[] - /** An aggregate relationship */ - assists_aggregate: player_assists_aggregate - backup_file: (Scalars['String'] | null) - created_at: Scalars['timestamptz'] - deleted_at: (Scalars['timestamptz'] | null) - /** A computed field, executes function "has_backup_file" */ - has_backup_file: (Scalars['Boolean'] | null) - id: Scalars['uuid'] - /** An array relationship */ - kills: player_kills[] - /** An aggregate relationship */ - kills_aggregate: player_kills_aggregate - lineup_1_money: Scalars['Int'] - lineup_1_score: Scalars['Int'] - lineup_1_side: e_sides_enum - lineup_1_timeouts_available: Scalars['Int'] - lineup_2_money: Scalars['Int'] - lineup_2_score: Scalars['Int'] - lineup_2_side: e_sides_enum - lineup_2_timeouts_available: Scalars['Int'] - /** An object relationship */ - match_map: match_maps - match_map_id: Scalars['uuid'] - round: Scalars['Int'] - time: Scalars['timestamptz'] - winning_reason: (e_winning_reasons_enum | null) - winning_side: Scalars['String'] - __typename: 'match_map_rounds' -} - - -/** 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_map_rounds" */ -export interface match_map_rounds_aggregate_fields { - avg: (match_map_rounds_avg_fields | null) - count: Scalars['Int'] - max: (match_map_rounds_max_fields | null) - min: (match_map_rounds_min_fields | null) - stddev: (match_map_rounds_stddev_fields | null) - stddev_pop: (match_map_rounds_stddev_pop_fields | null) - stddev_samp: (match_map_rounds_stddev_samp_fields | null) - sum: (match_map_rounds_sum_fields | null) - var_pop: (match_map_rounds_var_pop_fields | null) - var_samp: (match_map_rounds_var_samp_fields | null) - variance: (match_map_rounds_variance_fields | null) - __typename: 'match_map_rounds_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface match_map_rounds_avg_fields { - lineup_1_money: (Scalars['Float'] | null) - lineup_1_score: (Scalars['Float'] | null) - lineup_1_timeouts_available: (Scalars['Float'] | null) - lineup_2_money: (Scalars['Float'] | null) - lineup_2_score: (Scalars['Float'] | null) - lineup_2_timeouts_available: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'match_map_rounds_avg_fields' -} - - -/** unique or primary key constraints on table "match_map_rounds" */ -export type match_map_rounds_constraint = 'match_rounds__id_key' | 'match_rounds_match_id_round_key' | 'match_rounds_pkey' - - -/** aggregate max on columns */ -export interface match_map_rounds_max_fields { - backup_file: (Scalars['String'] | null) - created_at: (Scalars['timestamptz'] | null) - deleted_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - lineup_1_money: (Scalars['Int'] | null) - lineup_1_score: (Scalars['Int'] | null) - lineup_1_timeouts_available: (Scalars['Int'] | null) - lineup_2_money: (Scalars['Int'] | null) - lineup_2_score: (Scalars['Int'] | null) - lineup_2_timeouts_available: (Scalars['Int'] | null) - match_map_id: (Scalars['uuid'] | null) - round: (Scalars['Int'] | null) - time: (Scalars['timestamptz'] | null) - winning_side: (Scalars['String'] | null) - __typename: 'match_map_rounds_max_fields' -} - - -/** aggregate min on columns */ -export interface match_map_rounds_min_fields { - backup_file: (Scalars['String'] | null) - created_at: (Scalars['timestamptz'] | null) - deleted_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - lineup_1_money: (Scalars['Int'] | null) - lineup_1_score: (Scalars['Int'] | null) - lineup_1_timeouts_available: (Scalars['Int'] | null) - lineup_2_money: (Scalars['Int'] | null) - lineup_2_score: (Scalars['Int'] | null) - lineup_2_timeouts_available: (Scalars['Int'] | null) - match_map_id: (Scalars['uuid'] | null) - round: (Scalars['Int'] | null) - time: (Scalars['timestamptz'] | null) - winning_side: (Scalars['String'] | null) - __typename: 'match_map_rounds_min_fields' -} - - -/** response of any mutation on the table "match_map_rounds" */ -export interface match_map_rounds_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: match_map_rounds[] - __typename: 'match_map_rounds_mutation_response' -} - - -/** select columns of table "match_map_rounds" */ -export type match_map_rounds_select_column = 'backup_file' | 'created_at' | 'deleted_at' | 'id' | 'lineup_1_money' | 'lineup_1_score' | 'lineup_1_side' | 'lineup_1_timeouts_available' | 'lineup_2_money' | 'lineup_2_score' | 'lineup_2_side' | 'lineup_2_timeouts_available' | 'match_map_id' | 'round' | 'time' | 'winning_reason' | 'winning_side' - - -/** aggregate stddev on columns */ -export interface match_map_rounds_stddev_fields { - lineup_1_money: (Scalars['Float'] | null) - lineup_1_score: (Scalars['Float'] | null) - lineup_1_timeouts_available: (Scalars['Float'] | null) - lineup_2_money: (Scalars['Float'] | null) - lineup_2_score: (Scalars['Float'] | null) - lineup_2_timeouts_available: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'match_map_rounds_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface match_map_rounds_stddev_pop_fields { - lineup_1_money: (Scalars['Float'] | null) - lineup_1_score: (Scalars['Float'] | null) - lineup_1_timeouts_available: (Scalars['Float'] | null) - lineup_2_money: (Scalars['Float'] | null) - lineup_2_score: (Scalars['Float'] | null) - lineup_2_timeouts_available: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'match_map_rounds_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface match_map_rounds_stddev_samp_fields { - lineup_1_money: (Scalars['Float'] | null) - lineup_1_score: (Scalars['Float'] | null) - lineup_1_timeouts_available: (Scalars['Float'] | null) - lineup_2_money: (Scalars['Float'] | null) - lineup_2_score: (Scalars['Float'] | null) - lineup_2_timeouts_available: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'match_map_rounds_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface match_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'] - /** An object relationship */ - map: maps - map_id: Scalars['uuid'] - /** An object relationship */ - match: matches - match_id: Scalars['uuid'] - /** An object relationship */ - match_lineup: match_lineups - match_lineup_id: Scalars['uuid'] - side: (Scalars['String'] | null) - type: e_veto_pick_types_enum - __typename: 'match_map_veto_picks' -} - - -/** aggregated selection of "match_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_map_veto_picks" */ -export interface match_map_veto_picks_aggregate_fields { - 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' -} - - -/** 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_map_veto_picks_max_fields { - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - map_id: (Scalars['uuid'] | null) - match_id: (Scalars['uuid'] | null) - match_lineup_id: (Scalars['uuid'] | null) - side: (Scalars['String'] | null) - __typename: 'match_map_veto_picks_max_fields' -} - - -/** aggregate min on columns */ -export interface match_map_veto_picks_min_fields { - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - map_id: (Scalars['uuid'] | null) - match_id: (Scalars['uuid'] | null) - match_lineup_id: (Scalars['uuid'] | null) - side: (Scalars['String'] | null) - __typename: 'match_map_veto_picks_min_fields' -} - - -/** response of any mutation on the table "match_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_map_veto_picks[] - __typename: 'match_map_veto_picks_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 "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_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_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 "match_maps" */ -export interface match_maps { - clips_count: Scalars['Int'] - created_at: Scalars['timestamptz'] - demo_processing_started_at: (Scalars['timestamptz'] | null) - /** An array relationship */ - demos: match_map_demos[] - /** An aggregate relationship */ - demos_aggregate: match_map_demos_aggregate - /** A computed field, executes function "match_map_demo_download_url" */ - demos_download_url: (Scalars['String'] | null) - /** A computed field, executes function "match_map_demo_total_size" */ - demos_total_size: (Scalars['Int'] | null) - /** An object relationship */ - e_match_map_status: e_match_map_status - ended_at: (Scalars['timestamptz'] | null) - /** An array relationship */ - flashes: player_flashes[] - /** An aggregate relationship */ - flashes_aggregate: player_flashes_aggregate - id: Scalars['uuid'] - /** A computed field, executes function "is_current_match_map" */ - is_current_map: (Scalars['Boolean'] | null) - latest_clip_at: (Scalars['timestamptz'] | null) - /** A computed field, executes function "lineup_1_score" */ - lineup_1_score: (Scalars['Int'] | null) - lineup_1_side: e_sides_enum - lineup_1_timeouts_available: Scalars['Int'] - /** A computed field, executes function "lineup_2_score" */ - lineup_2_score: (Scalars['Int'] | null) - lineup_2_side: (e_sides_enum | null) - lineup_2_timeouts_available: Scalars['Int'] - /** An object relationship */ - map: maps - map_id: Scalars['uuid'] - /** An object relationship */ - match: matches - /** An array relationship */ - match_clips: match_clips[] - /** An aggregate relationship */ - match_clips_aggregate: match_clips_aggregate - match_id: Scalars['uuid'] - /** An array relationship */ - objectives: player_objectives[] - /** An aggregate relationship */ - objectives_aggregate: player_objectives_aggregate - order: Scalars['Int'] - /** An array relationship */ - player_assists: player_assists[] - /** An aggregate relationship */ - player_assists_aggregate: player_assists_aggregate - /** An array relationship */ - player_damages: player_damages[] - /** An aggregate relationship */ - player_damages_aggregate: player_damages_aggregate - /** An array relationship */ - player_kills: player_kills[] - /** An aggregate relationship */ - player_kills_aggregate: player_kills_aggregate - /** An array relationship */ - player_unused_utilities: player_unused_utility[] - /** An aggregate relationship */ - player_unused_utilities_aggregate: player_unused_utility_aggregate - public_clips_count: Scalars['Int'] - public_latest_clip_at: (Scalars['timestamptz'] | null) - /** An array relationship */ - rounds: match_map_rounds[] - /** An aggregate relationship */ - rounds_aggregate: match_map_rounds_aggregate - started_at: (Scalars['timestamptz'] | null) - status: e_match_map_status_enum - /** An array relationship */ - utility: player_utility[] - /** An aggregate relationship */ - utility_aggregate: player_utility_aggregate - /** An array relationship */ - vetos: match_map_veto_picks[] - /** An aggregate relationship */ - vetos_aggregate: match_map_veto_picks_aggregate - winning_lineup_id: (Scalars['uuid'] | null) - __typename: 'match_maps' -} - - -/** 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 "match_maps" */ -export interface match_maps_aggregate_fields { - avg: (match_maps_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' -} - - -/** aggregate avg on columns */ -export interface match_maps_avg_fields { - clips_count: (Scalars['Float'] | null) - /** A computed field, executes function "match_map_demo_total_size" */ - demos_total_size: (Scalars['Int'] | null) - /** A computed field, executes function "lineup_1_score" */ - lineup_1_score: (Scalars['Int'] | null) - lineup_1_timeouts_available: (Scalars['Float'] | null) - /** A computed field, executes function "lineup_2_score" */ - lineup_2_score: (Scalars['Int'] | null) - lineup_2_timeouts_available: (Scalars['Float'] | null) - order: (Scalars['Float'] | null) - public_clips_count: (Scalars['Float'] | null) - __typename: 'match_maps_avg_fields' -} - - -/** unique or primary key constraints on table "match_maps" */ -export type match_maps_constraint = 'match_maps_match_id_order_key' | 'match_maps_pkey' - - -/** aggregate max on columns */ -export interface 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) - 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' -} - - -/** 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) - 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' -} - - -/** 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: match_maps[] - __typename: 'match_maps_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' - - -/** 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' -} - - -/** 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 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 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 "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 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 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 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 "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 "match_options" */ -export interface match_options_aggregate { - aggregate: (match_options_aggregate_fields | null) - nodes: match_options[] - __typename: 'match_options_aggregate' -} - - -/** aggregate fields of "match_options" */ -export interface match_options_aggregate_fields { - avg: (match_options_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' -} - - -/** 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 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 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 "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: match_options[] - __typename: 'match_options_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' | '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' - - -/** 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' - - -/** select "match_options_aggregate_bool_exp_bool_or_arguments_columns" columns of table "match_options" */ -export type match_options_select_column_match_options_aggregate_bool_exp_bool_or_arguments_columns = 'auto_cancellation' | 'camera_allow_teammates' | 'camera_required' | 'coaches' | 'default_models' | 'halftime_pausematch' | 'knife_round' | 'map_veto' | 'overtime' | 'prefer_dedicated_server' | 'region_veto' - - -/** aggregate stddev on columns */ -export interface match_options_stddev_fields { - auto_cancel_duration: (Scalars['Float'] | null) - best_of: (Scalars['Float'] | null) - live_match_timeout: (Scalars['Float'] | null) - mr: (Scalars['Float'] | null) - number_of_substitutes: (Scalars['Float'] | null) - round_restart_delay: (Scalars['Float'] | null) - tv_delay: (Scalars['Float'] | null) - veto_pick_timeout: (Scalars['Float'] | null) - __typename: 'match_options_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface match_options_stddev_pop_fields { - auto_cancel_duration: (Scalars['Float'] | null) - best_of: (Scalars['Float'] | null) - live_match_timeout: (Scalars['Float'] | null) - mr: (Scalars['Float'] | null) - number_of_substitutes: (Scalars['Float'] | null) - round_restart_delay: (Scalars['Float'] | null) - tv_delay: (Scalars['Float'] | null) - veto_pick_timeout: (Scalars['Float'] | null) - __typename: 'match_options_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface match_options_stddev_samp_fields { - auto_cancel_duration: (Scalars['Float'] | null) - best_of: (Scalars['Float'] | null) - live_match_timeout: (Scalars['Float'] | null) - mr: (Scalars['Float'] | null) - number_of_substitutes: (Scalars['Float'] | null) - round_restart_delay: (Scalars['Float'] | null) - tv_delay: (Scalars['Float'] | null) - veto_pick_timeout: (Scalars['Float'] | null) - __typename: 'match_options_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface match_options_sum_fields { - auto_cancel_duration: (Scalars['Int'] | null) - best_of: (Scalars['Int'] | null) - live_match_timeout: (Scalars['Int'] | null) - mr: (Scalars['Int'] | null) - number_of_substitutes: (Scalars['Int'] | null) - round_restart_delay: (Scalars['Int'] | null) - tv_delay: (Scalars['Int'] | null) - veto_pick_timeout: (Scalars['Int'] | null) - __typename: 'match_options_sum_fields' -} - - -/** update columns of table "match_options" */ -export type match_options_update_column = 'auto_cancel_duration' | 'auto_cancellation' | 'best_of' | 'camera_allow_teammates' | 'camera_required' | 'check_in_setting' | 'coaches' | 'default_models' | 'game_mode_id' | 'halftime_pausematch' | 'id' | 'invite_code' | 'knife_round' | 'live_match_timeout' | 'map_pool_id' | 'map_veto' | 'match_mode' | 'mr' | 'number_of_substitutes' | 'overtime' | 'prefer_dedicated_server' | 'ready_setting' | 'region_veto' | 'regions' | 'round_restart_delay' | 'tech_timeout_setting' | 'timeout_setting' | 'tv_delay' | 'type' | 'veto_pick_timeout' - - -/** aggregate var_pop on columns */ -export interface match_options_var_pop_fields { - auto_cancel_duration: (Scalars['Float'] | null) - best_of: (Scalars['Float'] | null) - live_match_timeout: (Scalars['Float'] | null) - mr: (Scalars['Float'] | null) - number_of_substitutes: (Scalars['Float'] | null) - round_restart_delay: (Scalars['Float'] | null) - tv_delay: (Scalars['Float'] | null) - veto_pick_timeout: (Scalars['Float'] | null) - __typename: 'match_options_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface match_options_var_samp_fields { - auto_cancel_duration: (Scalars['Float'] | null) - best_of: (Scalars['Float'] | null) - live_match_timeout: (Scalars['Float'] | null) - mr: (Scalars['Float'] | null) - number_of_substitutes: (Scalars['Float'] | null) - round_restart_delay: (Scalars['Float'] | null) - tv_delay: (Scalars['Float'] | null) - veto_pick_timeout: (Scalars['Float'] | null) - __typename: 'match_options_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface match_options_variance_fields { - auto_cancel_duration: (Scalars['Float'] | null) - best_of: (Scalars['Float'] | null) - live_match_timeout: (Scalars['Float'] | null) - mr: (Scalars['Float'] | null) - number_of_substitutes: (Scalars['Float'] | null) - round_restart_delay: (Scalars['Float'] | null) - tv_delay: (Scalars['Float'] | null) - veto_pick_timeout: (Scalars['Float'] | null) - __typename: 'match_options_variance_fields' -} - - -/** columns and relationships of "match_region_veto_picks" */ -export interface match_region_veto_picks { - auto_picked: Scalars['Boolean'] - created_at: Scalars['timestamptz'] - id: Scalars['uuid'] - /** An object relationship */ - match: matches - match_id: Scalars['uuid'] - /** An object relationship */ - match_lineup: match_lineups - match_lineup_id: Scalars['uuid'] - region: Scalars['String'] - type: e_veto_pick_types_enum - __typename: 'match_region_veto_picks' -} - - -/** aggregated selection of "match_region_veto_picks" */ -export interface match_region_veto_picks_aggregate { - aggregate: (match_region_veto_picks_aggregate_fields | null) - nodes: match_region_veto_picks[] - __typename: 'match_region_veto_picks_aggregate' -} - - -/** aggregate fields of "match_region_veto_picks" */ -export interface match_region_veto_picks_aggregate_fields { - count: Scalars['Int'] - max: (match_region_veto_picks_max_fields | null) - min: (match_region_veto_picks_min_fields | null) - __typename: 'match_region_veto_picks_aggregate_fields' -} - - -/** unique or primary key constraints on table "match_region_veto_picks" */ -export type match_region_veto_picks_constraint = 'match_region_veto_picks_match_id_region_key' | 'match_region_veto_picks_pkey' - - -/** aggregate max on columns */ -export interface match_region_veto_picks_max_fields { - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - match_id: (Scalars['uuid'] | null) - match_lineup_id: (Scalars['uuid'] | null) - region: (Scalars['String'] | null) - __typename: 'match_region_veto_picks_max_fields' -} - - -/** aggregate min on columns */ -export interface match_region_veto_picks_min_fields { - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - match_id: (Scalars['uuid'] | null) - match_lineup_id: (Scalars['uuid'] | null) - region: (Scalars['String'] | null) - __typename: 'match_region_veto_picks_min_fields' -} - - -/** response of any mutation on the table "match_region_veto_picks" */ -export interface match_region_veto_picks_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: match_region_veto_picks[] - __typename: 'match_region_veto_picks_mutation_response' -} - - -/** select columns of table "match_region_veto_picks" */ -export type match_region_veto_picks_select_column = 'auto_picked' | 'created_at' | 'id' | 'match_id' | 'match_lineup_id' | 'region' | 'type' - - -/** select "match_region_veto_picks_aggregate_bool_exp_bool_and_arguments_columns" columns of table "match_region_veto_picks" */ -export type match_region_veto_picks_select_column_match_region_veto_picks_aggregate_bool_exp_bool_and_arguments_columns = 'auto_picked' - - -/** select "match_region_veto_picks_aggregate_bool_exp_bool_or_arguments_columns" columns of table "match_region_veto_picks" */ -export type match_region_veto_picks_select_column_match_region_veto_picks_aggregate_bool_exp_bool_or_arguments_columns = 'auto_picked' - - -/** update columns of table "match_region_veto_picks" */ -export type match_region_veto_picks_update_column = 'auto_picked' | 'created_at' | 'id' | 'match_id' | 'match_lineup_id' | 'region' | 'type' - - -/** columns and relationships of "match_streams" */ -export interface match_streams { - autodirector: Scalars['Boolean'] - error_message: (Scalars['String'] | null) - /** An object relationship */ - game_server_node: (game_server_nodes | null) - game_server_node_id: (Scalars['String'] | null) - id: Scalars['uuid'] - is_game_streamer: Scalars['Boolean'] - is_live: Scalars['Boolean'] - k8s_service_name: (Scalars['String'] | null) - last_status_at: (Scalars['timestamptz'] | null) - link: Scalars['String'] - /** An object relationship */ - match: matches - match_id: Scalars['uuid'] - mode: Scalars['String'] - priority: Scalars['Int'] - status: (Scalars['String'] | null) - status_history: Scalars['jsonb'] - stream_url: (Scalars['String'] | null) - title: Scalars['String'] - __typename: 'match_streams' -} - - -/** aggregated selection of "match_streams" */ -export interface match_streams_aggregate { - aggregate: (match_streams_aggregate_fields | null) - nodes: match_streams[] - __typename: 'match_streams_aggregate' -} - - -/** aggregate fields of "match_streams" */ -export interface match_streams_aggregate_fields { - avg: (match_streams_avg_fields | null) - count: Scalars['Int'] - max: (match_streams_max_fields | null) - min: (match_streams_min_fields | null) - stddev: (match_streams_stddev_fields | null) - stddev_pop: (match_streams_stddev_pop_fields | null) - stddev_samp: (match_streams_stddev_samp_fields | null) - sum: (match_streams_sum_fields | null) - var_pop: (match_streams_var_pop_fields | null) - var_samp: (match_streams_var_samp_fields | null) - variance: (match_streams_variance_fields | null) - __typename: 'match_streams_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface match_streams_avg_fields { - priority: (Scalars['Float'] | null) - __typename: 'match_streams_avg_fields' -} - - -/** unique or primary key constraints on table "match_streams" */ -export type match_streams_constraint = 'match_streams_pkey' - - -/** aggregate max on columns */ -export interface match_streams_max_fields { - error_message: (Scalars['String'] | null) - game_server_node_id: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - k8s_service_name: (Scalars['String'] | null) - last_status_at: (Scalars['timestamptz'] | null) - link: (Scalars['String'] | null) - match_id: (Scalars['uuid'] | null) - mode: (Scalars['String'] | null) - priority: (Scalars['Int'] | null) - status: (Scalars['String'] | null) - stream_url: (Scalars['String'] | null) - title: (Scalars['String'] | null) - __typename: 'match_streams_max_fields' -} - - -/** aggregate min on columns */ -export interface match_streams_min_fields { - error_message: (Scalars['String'] | null) - game_server_node_id: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - k8s_service_name: (Scalars['String'] | null) - last_status_at: (Scalars['timestamptz'] | null) - link: (Scalars['String'] | null) - match_id: (Scalars['uuid'] | null) - mode: (Scalars['String'] | null) - priority: (Scalars['Int'] | null) - status: (Scalars['String'] | null) - stream_url: (Scalars['String'] | null) - title: (Scalars['String'] | null) - __typename: 'match_streams_min_fields' -} - - -/** response of any mutation on the table "match_streams" */ -export interface match_streams_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: match_streams[] - __typename: 'match_streams_mutation_response' -} - - -/** select columns of table "match_streams" */ -export type match_streams_select_column = 'autodirector' | 'error_message' | 'game_server_node_id' | 'id' | 'is_game_streamer' | 'is_live' | 'k8s_service_name' | 'last_status_at' | 'link' | 'match_id' | 'mode' | 'priority' | 'status' | 'status_history' | 'stream_url' | 'title' - - -/** select "match_streams_aggregate_bool_exp_bool_and_arguments_columns" columns of table "match_streams" */ -export type match_streams_select_column_match_streams_aggregate_bool_exp_bool_and_arguments_columns = 'autodirector' | 'is_game_streamer' | 'is_live' - - -/** select "match_streams_aggregate_bool_exp_bool_or_arguments_columns" columns of table "match_streams" */ -export type match_streams_select_column_match_streams_aggregate_bool_exp_bool_or_arguments_columns = 'autodirector' | 'is_game_streamer' | 'is_live' - - -/** aggregate stddev on columns */ -export interface match_streams_stddev_fields { - priority: (Scalars['Float'] | null) - __typename: 'match_streams_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface match_streams_stddev_pop_fields { - priority: (Scalars['Float'] | null) - __typename: 'match_streams_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface match_streams_stddev_samp_fields { - priority: (Scalars['Float'] | null) - __typename: 'match_streams_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface match_streams_sum_fields { - priority: (Scalars['Int'] | null) - __typename: 'match_streams_sum_fields' -} - - -/** update columns of table "match_streams" */ -export type match_streams_update_column = 'autodirector' | 'error_message' | 'game_server_node_id' | 'id' | 'is_game_streamer' | 'is_live' | 'k8s_service_name' | 'last_status_at' | 'link' | 'match_id' | 'mode' | 'priority' | 'status' | 'status_history' | 'stream_url' | 'title' - - -/** aggregate var_pop on columns */ -export interface match_streams_var_pop_fields { - priority: (Scalars['Float'] | null) - __typename: 'match_streams_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface match_streams_var_samp_fields { - priority: (Scalars['Float'] | null) - __typename: 'match_streams_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface match_streams_variance_fields { - priority: (Scalars['Float'] | null) - __typename: 'match_streams_variance_fields' -} - - -/** columns and relationships of "match_type_cfgs" */ -export interface match_type_cfgs { - cfg: Scalars['String'] - type: e_game_cfg_types_enum - __typename: 'match_type_cfgs' -} - - -/** aggregated selection of "match_type_cfgs" */ -export interface match_type_cfgs_aggregate { - aggregate: (match_type_cfgs_aggregate_fields | null) - nodes: match_type_cfgs[] - __typename: 'match_type_cfgs_aggregate' -} - - -/** aggregate fields of "match_type_cfgs" */ -export interface match_type_cfgs_aggregate_fields { - count: Scalars['Int'] - max: (match_type_cfgs_max_fields | null) - min: (match_type_cfgs_min_fields | null) - __typename: 'match_type_cfgs_aggregate_fields' -} - - -/** unique or primary key constraints on table "match_type_cfgs" */ -export type match_type_cfgs_constraint = 'match_type_cfgs_pkey' - - -/** aggregate max on columns */ -export interface match_type_cfgs_max_fields { - cfg: (Scalars['String'] | null) - __typename: 'match_type_cfgs_max_fields' -} - - -/** aggregate min on columns */ -export interface match_type_cfgs_min_fields { - cfg: (Scalars['String'] | null) - __typename: 'match_type_cfgs_min_fields' -} - - -/** response of any mutation on the table "match_type_cfgs" */ -export interface match_type_cfgs_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: match_type_cfgs[] - __typename: 'match_type_cfgs_mutation_response' -} - - -/** select columns of table "match_type_cfgs" */ -export type match_type_cfgs_select_column = 'cfg' | 'type' - - -/** update columns of table "match_type_cfgs" */ -export type match_type_cfgs_update_column = 'cfg' | 'type' - - -/** columns and relationships of "matches" */ -export interface matches { - /** A computed field, executes function "can_assign_server_to_match" */ - can_assign_server: (Scalars['Boolean'] | null) - /** A computed field, executes function "can_cancel_match" */ - can_cancel: (Scalars['Boolean'] | null) - /** A computed field, executes function "can_check_in" */ - can_check_in: (Scalars['Boolean'] | null) - /** A computed field, executes function "can_reassign_winner" */ - can_reassign_winner: (Scalars['Boolean'] | null) - /** A computed field, executes function "can_schedule_match" */ - can_schedule: (Scalars['Boolean'] | null) - /** A computed field, executes function "can_start_match" */ - can_start: (Scalars['Boolean'] | null) - /** A computed field, executes function "can_stream_live" */ - can_stream_live: (Scalars['Boolean'] | null) - /** A computed field, executes function "can_stream_tv" */ - can_stream_tv: (Scalars['Boolean'] | null) - cancels_at: (Scalars['timestamptz'] | null) - /** An array relationship */ - clutches: v_match_clutches[] - /** An aggregate relationship */ - clutches_aggregate: v_match_clutches_aggregate - /** A computed field, executes function "get_match_connection_link" */ - connection_link: (Scalars['String'] | null) - /** A computed field, executes function "get_match_connection_string" */ - connection_string: (Scalars['String'] | null) - counts_toward_ranking: Scalars['Boolean'] - created_at: Scalars['timestamptz'] - /** A computed field, executes function "get_current_match_map" */ - current_match_map_id: (Scalars['uuid'] | null) - /** An array relationship */ - demos: match_map_demos[] - /** An aggregate relationship */ - demos_aggregate: match_map_demos_aggregate - /** An array relationship */ - draft_games: draft_games[] - /** An aggregate relationship */ - draft_games_aggregate: draft_games_aggregate - /** An object relationship */ - e_match_status: e_match_status - /** An object relationship */ - e_region: (server_regions | null) - effective_at: (Scalars['timestamptz'] | null) - /** An array relationship */ - elo_changes: v_player_elo[] - /** An aggregate relationship */ - elo_changes_aggregate: v_player_elo_aggregate - ended_at: (Scalars['timestamptz'] | null) - external_id: (Scalars['String'] | null) - id: Scalars['uuid'] - /** A computed field, executes function "match_invite_code" */ - invite_code: (Scalars['String'] | null) - /** A computed field, executes function "is_captain" */ - is_captain: (Scalars['Boolean'] | null) - /** A computed field, executes function "is_coach" */ - is_coach: (Scalars['Boolean'] | null) - /** A computed field, executes function "is_friend_in_match_lineup" */ - is_friend_in_match_lineup: (Scalars['Boolean'] | null) - /** A computed field, executes function "is_in_lineup" */ - is_in_lineup: (Scalars['Boolean'] | null) - /** A computed field, executes function "is_match_server_available" */ - is_match_server_available: (Scalars['Boolean'] | null) - /** A computed field, executes function "is_match_organizer" */ - is_organizer: (Scalars['Boolean'] | null) - /** A computed field, executes function "is_server_online" */ - is_server_online: (Scalars['Boolean'] | null) - /** A computed field, executes function "is_tournament_match" */ - is_tournament_match: (Scalars['Boolean'] | null) - label: (Scalars['String'] | null) - /** An object relationship */ - lineup_1: match_lineups - lineup_1_id: Scalars['uuid'] - /** An object relationship */ - lineup_2: match_lineups - lineup_2_id: Scalars['uuid'] - /** A computed field, executes function "get_lineup_counts" */ - lineup_counts: (Scalars['json'] | null) - /** A computed field, executes function "get_map_veto_picking_lineup_id" */ - map_veto_picking_lineup_id: (Scalars['uuid'] | null) - /** An array relationship */ - map_veto_picks: match_map_veto_picks[] - /** An aggregate relationship */ - map_veto_picks_aggregate: match_map_veto_picks_aggregate - /** A computed field, executes function "get_map_veto_type" */ - map_veto_type: (Scalars['String'] | null) - /** An array relationship */ - match_maps: match_maps[] - /** An aggregate relationship */ - match_maps_aggregate: match_maps_aggregate - match_options_id: (Scalars['uuid'] | null) - /** A computed field, executes function "match_max_players_per_lineup" */ - max_players_per_lineup: (Scalars['Int'] | null) - /** A computed field, executes function "match_min_players_per_lineup" */ - min_players_per_lineup: (Scalars['Int'] | null) - /** An array relationship */ - opening_duels: v_match_player_opening_duels[] - /** An aggregate relationship */ - opening_duels_aggregate: v_match_player_opening_duels_aggregate - /** An object relationship */ - options: (match_options | null) - /** An object relationship */ - organizer: (players | null) - organizer_steam_id: (Scalars['bigint'] | null) - password: Scalars['String'] - /** An array relationship */ - player_assists: player_assists[] - /** An aggregate relationship */ - player_assists_aggregate: player_assists_aggregate - /** An array relationship */ - player_damages: player_damages[] - /** An aggregate relationship */ - player_damages_aggregate: player_damages_aggregate - /** An array relationship */ - player_flashes: player_flashes[] - /** An aggregate relationship */ - player_flashes_aggregate: player_flashes_aggregate - /** An array relationship */ - player_kills: player_kills[] - /** An aggregate relationship */ - player_kills_aggregate: player_kills_aggregate - /** An array relationship */ - player_objectives: player_objectives[] - /** An aggregate relationship */ - player_objectives_aggregate: player_objectives_aggregate - /** An array relationship */ - player_unused_utilities: player_unused_utility[] - /** An aggregate relationship */ - player_unused_utilities_aggregate: player_unused_utility_aggregate - /** An array relationship */ - player_utility: player_utility[] - /** An aggregate relationship */ - player_utility_aggregate: player_utility_aggregate - region: (Scalars['String'] | null) - /** A computed field, executes function "get_region_veto_picking_lineup_id" */ - region_veto_picking_lineup_id: (Scalars['uuid'] | null) - /** An array relationship */ - region_veto_picks: match_region_veto_picks[] - /** An aggregate relationship */ - region_veto_picks_aggregate: match_region_veto_picks_aggregate - /** A computed field, executes function "match_requested_organizer" */ - requested_organizer: (Scalars['Boolean'] | null) - scheduled_at: (Scalars['timestamptz'] | null) - /** An object relationship */ - server: (servers | null) - server_error: (Scalars['String'] | null) - server_id: (Scalars['uuid'] | null) - /** A computed field, executes function "get_match_server_plugin_runtime" */ - server_plugin_runtime: (Scalars['String'] | null) - /** A computed field, executes function "get_match_server_region" */ - server_region: (Scalars['String'] | null) - /** A computed field, executes function "get_match_server_type" */ - server_type: (Scalars['String'] | null) - share_code: (Scalars['String'] | null) - source: Scalars['String'] - started_at: (Scalars['timestamptz'] | null) - status: e_match_status_enum - /** An array relationship */ - streams: match_streams[] - /** An aggregate relationship */ - streams_aggregate: match_streams_aggregate - /** A computed field, executes function "get_match_teams" */ - teams: (teams[] | null) - /** An array relationship */ - tournament_brackets: tournament_brackets[] - /** An aggregate relationship */ - tournament_brackets_aggregate: tournament_brackets_aggregate - /** A computed field, executes function "get_match_tv_connection_string" */ - tv_connection_string: (Scalars['String'] | null) - veto_pick_expires_at: (Scalars['timestamptz'] | null) - /** An object relationship */ - winner: (match_lineups | null) - winning_lineup_id: (Scalars['uuid'] | null) - __typename: 'matches' -} - - -/** aggregated selection of "matches" */ -export interface matches_aggregate { - aggregate: (matches_aggregate_fields | null) - nodes: matches[] - __typename: 'matches_aggregate' -} - - -/** aggregate fields of "matches" */ -export interface matches_aggregate_fields { - avg: (matches_avg_fields | null) - count: Scalars['Int'] - max: (matches_max_fields | null) - min: (matches_min_fields | null) - stddev: (matches_stddev_fields | null) - stddev_pop: (matches_stddev_pop_fields | null) - stddev_samp: (matches_stddev_samp_fields | null) - sum: (matches_sum_fields | null) - var_pop: (matches_var_pop_fields | null) - var_samp: (matches_var_samp_fields | null) - variance: (matches_variance_fields | null) - __typename: 'matches_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface matches_avg_fields { - /** A computed field, executes function "match_max_players_per_lineup" */ - max_players_per_lineup: (Scalars['Int'] | null) - /** A computed field, executes function "match_min_players_per_lineup" */ - min_players_per_lineup: (Scalars['Int'] | null) - organizer_steam_id: (Scalars['Float'] | null) - __typename: 'matches_avg_fields' -} - - -/** unique or primary key constraints on table "matches" */ -export type matches_constraint = 'matches_lineup_1_id_key' | 'matches_lineup_1_id_lineup_2_id_key' | 'matches_lineup_2_id_key' | 'matches_pkey' | 'uq_matches_source_external_id' - - -/** aggregate max on columns */ -export interface matches_max_fields { - cancels_at: (Scalars['timestamptz'] | null) - /** A computed field, executes function "get_match_connection_link" */ - connection_link: (Scalars['String'] | null) - /** A computed field, executes function "get_match_connection_string" */ - connection_string: (Scalars['String'] | null) - created_at: (Scalars['timestamptz'] | null) - /** A computed field, executes function "get_current_match_map" */ - current_match_map_id: (Scalars['uuid'] | null) - effective_at: (Scalars['timestamptz'] | null) - ended_at: (Scalars['timestamptz'] | null) - external_id: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - /** A computed field, executes function "match_invite_code" */ - invite_code: (Scalars['String'] | null) - label: (Scalars['String'] | null) - lineup_1_id: (Scalars['uuid'] | null) - lineup_2_id: (Scalars['uuid'] | null) - /** A computed field, executes function "get_map_veto_picking_lineup_id" */ - map_veto_picking_lineup_id: (Scalars['uuid'] | null) - /** A computed field, executes function "get_map_veto_type" */ - map_veto_type: (Scalars['String'] | null) - match_options_id: (Scalars['uuid'] | null) - /** A computed field, executes function "match_max_players_per_lineup" */ - max_players_per_lineup: (Scalars['Int'] | null) - /** A computed field, executes function "match_min_players_per_lineup" */ - min_players_per_lineup: (Scalars['Int'] | null) - organizer_steam_id: (Scalars['bigint'] | null) - password: (Scalars['String'] | null) - region: (Scalars['String'] | null) - /** A computed field, executes function "get_region_veto_picking_lineup_id" */ - region_veto_picking_lineup_id: (Scalars['uuid'] | null) - scheduled_at: (Scalars['timestamptz'] | null) - server_error: (Scalars['String'] | null) - server_id: (Scalars['uuid'] | null) - /** A computed field, executes function "get_match_server_plugin_runtime" */ - server_plugin_runtime: (Scalars['String'] | null) - /** A computed field, executes function "get_match_server_region" */ - server_region: (Scalars['String'] | null) - /** A computed field, executes function "get_match_server_type" */ - server_type: (Scalars['String'] | null) - share_code: (Scalars['String'] | null) - source: (Scalars['String'] | null) - started_at: (Scalars['timestamptz'] | null) - /** A computed field, executes function "get_match_tv_connection_string" */ - tv_connection_string: (Scalars['String'] | null) - veto_pick_expires_at: (Scalars['timestamptz'] | null) - winning_lineup_id: (Scalars['uuid'] | null) - __typename: 'matches_max_fields' -} - - -/** aggregate min on columns */ -export interface matches_min_fields { - cancels_at: (Scalars['timestamptz'] | null) - /** A computed field, executes function "get_match_connection_link" */ - connection_link: (Scalars['String'] | null) - /** A computed field, executes function "get_match_connection_string" */ - connection_string: (Scalars['String'] | null) - created_at: (Scalars['timestamptz'] | null) - /** A computed field, executes function "get_current_match_map" */ - current_match_map_id: (Scalars['uuid'] | null) - effective_at: (Scalars['timestamptz'] | null) - ended_at: (Scalars['timestamptz'] | null) - external_id: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - /** A computed field, executes function "match_invite_code" */ - invite_code: (Scalars['String'] | null) - label: (Scalars['String'] | null) - lineup_1_id: (Scalars['uuid'] | null) - lineup_2_id: (Scalars['uuid'] | null) - /** A computed field, executes function "get_map_veto_picking_lineup_id" */ - map_veto_picking_lineup_id: (Scalars['uuid'] | null) - /** A computed field, executes function "get_map_veto_type" */ - map_veto_type: (Scalars['String'] | null) - match_options_id: (Scalars['uuid'] | null) - /** A computed field, executes function "match_max_players_per_lineup" */ - max_players_per_lineup: (Scalars['Int'] | null) - /** A computed field, executes function "match_min_players_per_lineup" */ - min_players_per_lineup: (Scalars['Int'] | null) - organizer_steam_id: (Scalars['bigint'] | null) - password: (Scalars['String'] | null) - region: (Scalars['String'] | null) - /** A computed field, executes function "get_region_veto_picking_lineup_id" */ - region_veto_picking_lineup_id: (Scalars['uuid'] | null) - scheduled_at: (Scalars['timestamptz'] | null) - server_error: (Scalars['String'] | null) - server_id: (Scalars['uuid'] | null) - /** A computed field, executes function "get_match_server_plugin_runtime" */ - server_plugin_runtime: (Scalars['String'] | null) - /** A computed field, executes function "get_match_server_region" */ - server_region: (Scalars['String'] | null) - /** A computed field, executes function "get_match_server_type" */ - server_type: (Scalars['String'] | null) - share_code: (Scalars['String'] | null) - source: (Scalars['String'] | null) - started_at: (Scalars['timestamptz'] | null) - /** A computed field, executes function "get_match_tv_connection_string" */ - tv_connection_string: (Scalars['String'] | null) - veto_pick_expires_at: (Scalars['timestamptz'] | null) - winning_lineup_id: (Scalars['uuid'] | null) - __typename: 'matches_min_fields' -} - - -/** response of any mutation on the table "matches" */ -export interface matches_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: matches[] - __typename: 'matches_mutation_response' -} - - -/** select columns of table "matches" */ -export type matches_select_column = 'cancels_at' | 'counts_toward_ranking' | 'created_at' | 'effective_at' | 'ended_at' | 'external_id' | 'id' | 'label' | 'lineup_1_id' | 'lineup_2_id' | 'match_options_id' | 'organizer_steam_id' | 'password' | 'region' | 'scheduled_at' | 'server_error' | 'server_id' | 'share_code' | 'source' | 'started_at' | 'status' | 'veto_pick_expires_at' | 'winning_lineup_id' - - -/** select "matches_aggregate_bool_exp_bool_and_arguments_columns" columns of table "matches" */ -export type matches_select_column_matches_aggregate_bool_exp_bool_and_arguments_columns = 'counts_toward_ranking' - - -/** select "matches_aggregate_bool_exp_bool_or_arguments_columns" columns of table "matches" */ -export type matches_select_column_matches_aggregate_bool_exp_bool_or_arguments_columns = 'counts_toward_ranking' - - -/** aggregate stddev on columns */ -export interface matches_stddev_fields { - /** A computed field, executes function "match_max_players_per_lineup" */ - max_players_per_lineup: (Scalars['Int'] | null) - /** A computed field, executes function "match_min_players_per_lineup" */ - min_players_per_lineup: (Scalars['Int'] | null) - organizer_steam_id: (Scalars['Float'] | null) - __typename: 'matches_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface matches_stddev_pop_fields { - /** A computed field, executes function "match_max_players_per_lineup" */ - max_players_per_lineup: (Scalars['Int'] | null) - /** A computed field, executes function "match_min_players_per_lineup" */ - min_players_per_lineup: (Scalars['Int'] | null) - organizer_steam_id: (Scalars['Float'] | null) - __typename: 'matches_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface matches_stddev_samp_fields { - /** A computed field, executes function "match_max_players_per_lineup" */ - max_players_per_lineup: (Scalars['Int'] | null) - /** A computed field, executes function "match_min_players_per_lineup" */ - min_players_per_lineup: (Scalars['Int'] | null) - organizer_steam_id: (Scalars['Float'] | null) - __typename: 'matches_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface matches_sum_fields { - /** A computed field, executes function "match_max_players_per_lineup" */ - max_players_per_lineup: (Scalars['Int'] | null) - /** A computed field, executes function "match_min_players_per_lineup" */ - min_players_per_lineup: (Scalars['Int'] | null) - organizer_steam_id: (Scalars['bigint'] | null) - __typename: 'matches_sum_fields' -} - - -/** update columns of table "matches" */ -export type matches_update_column = 'cancels_at' | 'counts_toward_ranking' | 'created_at' | 'ended_at' | 'external_id' | 'id' | 'label' | 'lineup_1_id' | 'lineup_2_id' | 'match_options_id' | 'organizer_steam_id' | 'password' | 'region' | 'scheduled_at' | 'server_error' | 'server_id' | 'share_code' | 'source' | 'started_at' | 'status' | 'veto_pick_expires_at' | 'winning_lineup_id' - - -/** aggregate var_pop on columns */ -export interface matches_var_pop_fields { - /** A computed field, executes function "match_max_players_per_lineup" */ - max_players_per_lineup: (Scalars['Int'] | null) - /** A computed field, executes function "match_min_players_per_lineup" */ - min_players_per_lineup: (Scalars['Int'] | null) - organizer_steam_id: (Scalars['Float'] | null) - __typename: 'matches_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface matches_var_samp_fields { - /** A computed field, executes function "match_max_players_per_lineup" */ - max_players_per_lineup: (Scalars['Int'] | null) - /** A computed field, executes function "match_min_players_per_lineup" */ - min_players_per_lineup: (Scalars['Int'] | null) - organizer_steam_id: (Scalars['Float'] | null) - __typename: 'matches_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface matches_variance_fields { - /** A computed field, executes function "match_max_players_per_lineup" */ - max_players_per_lineup: (Scalars['Int'] | null) - /** A computed field, executes function "match_min_players_per_lineup" */ - min_players_per_lineup: (Scalars['Int'] | null) - organizer_steam_id: (Scalars['Float'] | null) - __typename: 'matches_variance_fields' -} - - -/** columns and relationships of "migration_hashes.hashes" */ -export interface migration_hashes_hashes { - hash: Scalars['String'] - name: Scalars['String'] - __typename: 'migration_hashes_hashes' -} - - -/** aggregated selection of "migration_hashes.hashes" */ -export interface migration_hashes_hashes_aggregate { - aggregate: (migration_hashes_hashes_aggregate_fields | null) - nodes: migration_hashes_hashes[] - __typename: 'migration_hashes_hashes_aggregate' -} - - -/** aggregate fields of "migration_hashes.hashes" */ -export interface migration_hashes_hashes_aggregate_fields { - count: Scalars['Int'] - max: (migration_hashes_hashes_max_fields | null) - min: (migration_hashes_hashes_min_fields | null) - __typename: 'migration_hashes_hashes_aggregate_fields' -} - - -/** unique or primary key constraints on table "migration_hashes.hashes" */ -export type migration_hashes_hashes_constraint = 'hashes_pkey' - - -/** aggregate max on columns */ -export interface migration_hashes_hashes_max_fields { - hash: (Scalars['String'] | null) - name: (Scalars['String'] | null) - __typename: 'migration_hashes_hashes_max_fields' -} - - -/** aggregate min on columns */ -export interface migration_hashes_hashes_min_fields { - hash: (Scalars['String'] | null) - name: (Scalars['String'] | null) - __typename: 'migration_hashes_hashes_min_fields' -} - - -/** response of any mutation on the table "migration_hashes.hashes" */ -export interface migration_hashes_hashes_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: migration_hashes_hashes[] - __typename: 'migration_hashes_hashes_mutation_response' -} - - -/** select columns of table "migration_hashes.hashes" */ -export type migration_hashes_hashes_select_column = 'hash' | 'name' - - -/** update columns of table "migration_hashes.hashes" */ -export type migration_hashes_hashes_update_column = 'hash' | 'name' - - -/** mutation root */ -export interface mutation_root { - PreviewTournamentMatchReset: PreviewTournamentMatchResetOutput - ResetTournamentMatch: (SuccessOutput | null) - /** accept team invite */ - acceptInvite: (SuccessOutput | null) - /** Add a game plugin the registry does not carry, from a release URL */ - addCustomGamePlugin: (AddCustomGamePluginOutput | null) - /** addDraftPlayer */ - addDraftPlayer: (SuccessOutput | null) - /** Add a friends-role presence bot account to the pool */ - addSteamPresenceBotAccount: (SuccessOutput | null) - approveNameChange: (SuccessOutput | null) - /** execute VOLATILE function "approve_league_season_movements" which returns "league_team_movements" */ - approve_league_season_movements: league_team_movements[] - /** Assign the presence bot a user should add as a friend */ - assignSteamPresenceBot: (SteamPresenceBotAssignment | null) - /** Dev-only — attach the demo player to a standing dev game-streamer pod (no Job boot) */ - attachDemo: (WatchDemoOutput | null) - /** Rebuild a season's ELO + stats from the matches inside its date range (admin only). Runs in the background; track via backfillSeasonEloStatus. */ - backfillSeasonElo: (RecomputeEloStartedOutput | null) - /** Return the progress of the season ELO backfill run (admin only). */ - backfillSeasonEloStatus: (SeasonBackfillStatusOutput | null) - /** Recover launch seeds from recorded trajectories, one batch per call */ - backfillUtilityLaunchSeeds: (UtilityLaunchSeedBackfillOutput | 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) - /** Cancel an in-flight lineup preview render */ - cancelUtilityLineupRender: (SuccessOutput | null) - changeUtilityPracticeMap: (UtilityPracticeMapChangeOutput | null) - /** checkIntoMatch */ - checkIntoMatch: (SuccessOutput | null) - /** Confirm a check-in, enforcing the tournament's check_in_setting */ - checkIntoTournament: (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) - /** Drop every finished row from the lineup preview queue */ - clearFinishedUtilityLineupRenders: (UtilityRenderClearOutput | null) - clearPendingMatchImport: (PendingMatchImportActionOutput | null) - /** execute VOLATILE function "clone_league_season" which returns "league_seasons" */ - clone_league_season: league_seasons[] - /** Organizer proceeds without the teams that missed check-in */ - continueTournamentCheckIn: (SuccessOutput | null) - /** 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) - /** Organizer mints an expiring, use capped invite link for a tournament */ - createTournamentInviteCode: (TournamentInviteCodeOutput | 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 a render and its preview clip */ - deleteUtilityLineupRender: (SuccessOutput | null) - /** Delete a utility playbook */ - deleteUtilityPlaybook: (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) - /** delete data from the table: "e_match_types" */ - delete_e_match_types: (e_match_types_mutation_response | null) - /** delete single row from the table: "e_match_types" */ - delete_e_match_types_by_pk: (e_match_types | null) - /** delete data from the table: "e_notification_types" */ - delete_e_notification_types: (e_notification_types_mutation_response | null) - /** delete single row from the table: "e_notification_types" */ - delete_e_notification_types_by_pk: (e_notification_types | null) - /** delete data from the table: "e_objective_types" */ - delete_e_objective_types: (e_objective_types_mutation_response | null) - /** delete single row from the table: "e_objective_types" */ - delete_e_objective_types_by_pk: (e_objective_types | null) - /** delete data from the table: "e_player_roles" */ - delete_e_player_roles: (e_player_roles_mutation_response | null) - /** delete single row from the table: "e_player_roles" */ - delete_e_player_roles_by_pk: (e_player_roles | null) - /** delete data from the table: "e_plugin_runtimes" */ - delete_e_plugin_runtimes: (e_plugin_runtimes_mutation_response | null) - /** delete single row from the table: "e_plugin_runtimes" */ - delete_e_plugin_runtimes_by_pk: (e_plugin_runtimes | null) - /** delete data from the table: "e_ready_settings" */ - delete_e_ready_settings: (e_ready_settings_mutation_response | null) - /** delete single row from the table: "e_ready_settings" */ - delete_e_ready_settings_by_pk: (e_ready_settings | null) - /** delete data from the table: "e_sanction_scopes" */ - delete_e_sanction_scopes: (e_sanction_scopes_mutation_response | null) - /** delete single row from the table: "e_sanction_scopes" */ - delete_e_sanction_scopes_by_pk: (e_sanction_scopes | null) - /** delete data from the table: "e_sanction_sources" */ - delete_e_sanction_sources: (e_sanction_sources_mutation_response | null) - /** delete single row from the table: "e_sanction_sources" */ - delete_e_sanction_sources_by_pk: (e_sanction_sources | null) - /** delete data from the table: "e_sanction_types" */ - delete_e_sanction_types: (e_sanction_types_mutation_response | null) - /** delete single row from the table: "e_sanction_types" */ - delete_e_sanction_types_by_pk: (e_sanction_types | null) - /** delete data from the table: "e_scrim_request_statuses" */ - delete_e_scrim_request_statuses: (e_scrim_request_statuses_mutation_response | null) - /** delete single row from the table: "e_scrim_request_statuses" */ - delete_e_scrim_request_statuses_by_pk: (e_scrim_request_statuses | null) - /** delete data from the table: "e_server_types" */ - delete_e_server_types: (e_server_types_mutation_response | null) - /** delete single row from the table: "e_server_types" */ - delete_e_server_types_by_pk: (e_server_types | null) - /** delete data from the table: "e_sides" */ - delete_e_sides: (e_sides_mutation_response | null) - /** delete single row from the table: "e_sides" */ - delete_e_sides_by_pk: (e_sides | null) - /** delete data from the table: "e_system_alert_types" */ - delete_e_system_alert_types: (e_system_alert_types_mutation_response | null) - /** delete single row from the table: "e_system_alert_types" */ - delete_e_system_alert_types_by_pk: (e_system_alert_types | null) - /** delete data from the table: "e_team_roles" */ - delete_e_team_roles: (e_team_roles_mutation_response | null) - /** delete single row from the table: "e_team_roles" */ - delete_e_team_roles_by_pk: (e_team_roles | null) - /** delete data from the table: "e_team_roster_statuses" */ - delete_e_team_roster_statuses: (e_team_roster_statuses_mutation_response | null) - /** delete single row from the table: "e_team_roster_statuses" */ - delete_e_team_roster_statuses_by_pk: (e_team_roster_statuses | null) - /** delete data from the table: "e_timeout_settings" */ - delete_e_timeout_settings: (e_timeout_settings_mutation_response | null) - /** delete single row from the table: "e_timeout_settings" */ - delete_e_timeout_settings_by_pk: (e_timeout_settings | null) - /** delete data from the table: "e_tournament_categories" */ - delete_e_tournament_categories: (e_tournament_categories_mutation_response | null) - /** delete single row from the table: "e_tournament_categories" */ - delete_e_tournament_categories_by_pk: (e_tournament_categories | null) - /** delete data from the table: "e_tournament_free_agent_statuses" */ - delete_e_tournament_free_agent_statuses: (e_tournament_free_agent_statuses_mutation_response | null) - /** delete single row from the table: "e_tournament_free_agent_statuses" */ - delete_e_tournament_free_agent_statuses_by_pk: (e_tournament_free_agent_statuses | null) - /** delete data from the table: "e_tournament_registration_types" */ - delete_e_tournament_registration_types: (e_tournament_registration_types_mutation_response | null) - /** delete single row from the table: "e_tournament_registration_types" */ - delete_e_tournament_registration_types_by_pk: (e_tournament_registration_types | null) - /** delete data from the table: "e_tournament_stage_types" */ - delete_e_tournament_stage_types: (e_tournament_stage_types_mutation_response | null) - /** delete single row from the table: "e_tournament_stage_types" */ - delete_e_tournament_stage_types_by_pk: (e_tournament_stage_types | null) - /** delete data from the table: "e_tournament_status" */ - delete_e_tournament_status: (e_tournament_status_mutation_response | null) - /** delete single row from the table: "e_tournament_status" */ - delete_e_tournament_status_by_pk: (e_tournament_status | null) - /** delete data from the table: "e_utility_practice_access" */ - delete_e_utility_practice_access: (e_utility_practice_access_mutation_response | null) - /** delete single row from the table: "e_utility_practice_access" */ - delete_e_utility_practice_access_by_pk: (e_utility_practice_access | null) - /** delete data from the table: "e_utility_practice_statuses" */ - delete_e_utility_practice_statuses: (e_utility_practice_statuses_mutation_response | null) - /** delete single row from the table: "e_utility_practice_statuses" */ - delete_e_utility_practice_statuses_by_pk: (e_utility_practice_statuses | null) - /** delete data from the table: "e_utility_sources" */ - delete_e_utility_sources: (e_utility_sources_mutation_response | null) - /** delete single row from the table: "e_utility_sources" */ - delete_e_utility_sources_by_pk: (e_utility_sources | null) - /** delete data from the table: "e_utility_techniques" */ - delete_e_utility_techniques: (e_utility_techniques_mutation_response | null) - /** delete single row from the table: "e_utility_techniques" */ - delete_e_utility_techniques_by_pk: (e_utility_techniques | null) - /** delete data from the table: "e_utility_throw_strengths" */ - delete_e_utility_throw_strengths: (e_utility_throw_strengths_mutation_response | null) - /** delete single row from the table: "e_utility_throw_strengths" */ - delete_e_utility_throw_strengths_by_pk: (e_utility_throw_strengths | null) - /** delete data from the table: "e_utility_types" */ - delete_e_utility_types: (e_utility_types_mutation_response | null) - /** delete single row from the table: "e_utility_types" */ - delete_e_utility_types_by_pk: (e_utility_types | null) - /** delete data from the table: "e_utility_visibility" */ - delete_e_utility_visibility: (e_utility_visibility_mutation_response | null) - /** delete single row from the table: "e_utility_visibility" */ - delete_e_utility_visibility_by_pk: (e_utility_visibility | null) - /** delete data from the table: "e_veto_pick_types" */ - delete_e_veto_pick_types: (e_veto_pick_types_mutation_response | null) - /** delete single row from the table: "e_veto_pick_types" */ - delete_e_veto_pick_types_by_pk: (e_veto_pick_types | null) - /** delete data from the table: "e_winning_reasons" */ - delete_e_winning_reasons: (e_winning_reasons_mutation_response | null) - /** delete single row from the table: "e_winning_reasons" */ - delete_e_winning_reasons_by_pk: (e_winning_reasons | null) - /** delete data from the table: "event_match_links" */ - delete_event_match_links: (event_match_links_mutation_response | null) - /** delete single row from the table: "event_match_links" */ - delete_event_match_links_by_pk: (event_match_links | null) - /** delete data from the table: "event_media" */ - delete_event_media: (event_media_mutation_response | null) - /** delete single row from the table: "event_media" */ - delete_event_media_by_pk: (event_media | null) - /** delete data from the table: "event_media_players" */ - delete_event_media_players: (event_media_players_mutation_response | null) - /** delete single row from the table: "event_media_players" */ - delete_event_media_players_by_pk: (event_media_players | null) - /** delete data from the table: "event_organizers" */ - delete_event_organizers: (event_organizers_mutation_response | null) - /** delete single row from the table: "event_organizers" */ - delete_event_organizers_by_pk: (event_organizers | null) - /** delete data from the table: "event_players" */ - delete_event_players: (event_players_mutation_response | null) - /** delete single row from the table: "event_players" */ - delete_event_players_by_pk: (event_players | null) - /** delete data from the table: "event_teams" */ - delete_event_teams: (event_teams_mutation_response | null) - /** delete single row from the table: "event_teams" */ - delete_event_teams_by_pk: (event_teams | null) - /** delete data from the table: "event_tournaments" */ - delete_event_tournaments: (event_tournaments_mutation_response | null) - /** delete single row from the table: "event_tournaments" */ - delete_event_tournaments_by_pk: (event_tournaments | null) - /** delete data from the table: "events" */ - delete_events: (events_mutation_response | null) - /** delete single row from the table: "events" */ - delete_events_by_pk: (events | null) - /** delete data from the table: "friends" */ - delete_friends: (friends_mutation_response | null) - /** delete single row from the table: "friends" */ - 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" */ - delete_game_server_nodes_by_pk: (game_server_nodes | null) - /** delete data from the table: "game_versions" */ - delete_game_versions: (game_versions_mutation_response | null) - /** delete single row from the table: "game_versions" */ - delete_game_versions_by_pk: (game_versions | null) - /** delete data from the table: "gamedata_signature_validations" */ - delete_gamedata_signature_validations: (gamedata_signature_validations_mutation_response | null) - /** delete single row from the table: "gamedata_signature_validations" */ - delete_gamedata_signature_validations_by_pk: (gamedata_signature_validations | null) - /** delete data from the table: "leaderboard_entries" */ - delete_leaderboard_entries: (leaderboard_entries_mutation_response | null) - /** delete data from the table: "league_divisions" */ - delete_league_divisions: (league_divisions_mutation_response | null) - /** delete single row from the table: "league_divisions" */ - delete_league_divisions_by_pk: (league_divisions | null) - /** delete data from the table: "league_match_weeks" */ - delete_league_match_weeks: (league_match_weeks_mutation_response | null) - /** delete single row from the table: "league_match_weeks" */ - delete_league_match_weeks_by_pk: (league_match_weeks | null) - /** delete data from the table: "league_relegation_playoffs" */ - delete_league_relegation_playoffs: (league_relegation_playoffs_mutation_response | null) - /** delete single row from the table: "league_relegation_playoffs" */ - delete_league_relegation_playoffs_by_pk: (league_relegation_playoffs | null) - /** delete data from the table: "league_scheduling_proposals" */ - delete_league_scheduling_proposals: (league_scheduling_proposals_mutation_response | null) - /** delete single row from the table: "league_scheduling_proposals" */ - delete_league_scheduling_proposals_by_pk: (league_scheduling_proposals | null) - /** delete data from the table: "league_season_divisions" */ - delete_league_season_divisions: (league_season_divisions_mutation_response | null) - /** delete single row from the table: "league_season_divisions" */ - delete_league_season_divisions_by_pk: (league_season_divisions | null) - /** delete data from the table: "league_seasons" */ - delete_league_seasons: (league_seasons_mutation_response | null) - /** delete single row from the table: "league_seasons" */ - delete_league_seasons_by_pk: (league_seasons | null) - /** delete data from the table: "league_team_movements" */ - delete_league_team_movements: (league_team_movements_mutation_response | null) - /** delete single row from the table: "league_team_movements" */ - delete_league_team_movements_by_pk: (league_team_movements | null) - /** delete data from the table: "league_team_rosters" */ - delete_league_team_rosters: (league_team_rosters_mutation_response | null) - /** delete single row from the table: "league_team_rosters" */ - delete_league_team_rosters_by_pk: (league_team_rosters | null) - /** delete data from the table: "league_team_seasons" */ - delete_league_team_seasons: (league_team_seasons_mutation_response | null) - /** delete single row from the table: "league_team_seasons" */ - delete_league_team_seasons_by_pk: (league_team_seasons | null) - /** delete data from the table: "league_teams" */ - delete_league_teams: (league_teams_mutation_response | null) - /** delete single row from the table: "league_teams" */ - delete_league_teams_by_pk: (league_teams | null) - /** delete data from the table: "lobbies" */ - delete_lobbies: (lobbies_mutation_response | null) - /** delete single row from the table: "lobbies" */ - delete_lobbies_by_pk: (lobbies | null) - /** delete data from the table: "lobby_players" */ - delete_lobby_players: (lobby_players_mutation_response | null) - /** delete single row from the table: "lobby_players" */ - delete_lobby_players_by_pk: (lobby_players | null) - /** delete data from the table: "map_callouts" */ - delete_map_callouts: (map_callouts_mutation_response | null) - /** delete single row from the table: "map_callouts" */ - delete_map_callouts_by_pk: (map_callouts | null) - /** delete data from the table: "map_pools" */ - delete_map_pools: (map_pools_mutation_response | null) - /** delete single row from the table: "map_pools" */ - delete_map_pools_by_pk: (map_pools | null) - /** delete data from the table: "maps" */ - delete_maps: (maps_mutation_response | null) - /** delete single row from the table: "maps" */ - delete_maps_by_pk: (maps | null) - /** delete data from the table: "match_clips" */ - delete_match_clips: (match_clips_mutation_response | null) - /** delete single row from the table: "match_clips" */ - delete_match_clips_by_pk: (match_clips | null) - /** delete data from the table: "match_demo_sessions" */ - delete_match_demo_sessions: (match_demo_sessions_mutation_response | null) - /** delete single row from the table: "match_demo_sessions" */ - delete_match_demo_sessions_by_pk: (match_demo_sessions | null) - /** delete data from the table: "match_lineup_players" */ - delete_match_lineup_players: (match_lineup_players_mutation_response | null) - /** delete single row from the table: "match_lineup_players" */ - delete_match_lineup_players_by_pk: (match_lineup_players | null) - /** delete data from the table: "match_lineups" */ - delete_match_lineups: (match_lineups_mutation_response | null) - /** delete single row from the table: "match_lineups" */ - delete_match_lineups_by_pk: (match_lineups | null) - /** delete data from the table: "match_map_demos" */ - delete_match_map_demos: (match_map_demos_mutation_response | null) - /** delete single row from the table: "match_map_demos" */ - delete_match_map_demos_by_pk: (match_map_demos | null) - /** delete data from the table: "match_map_rounds" */ - delete_match_map_rounds: (match_map_rounds_mutation_response | null) - /** delete single row from the table: "match_map_rounds" */ - delete_match_map_rounds_by_pk: (match_map_rounds | null) - /** delete data from the table: "match_map_veto_picks" */ - delete_match_map_veto_picks: (match_map_veto_picks_mutation_response | null) - /** delete single row from the table: "match_map_veto_picks" */ - delete_match_map_veto_picks_by_pk: (match_map_veto_picks | null) - /** delete data from the table: "match_maps" */ - delete_match_maps: (match_maps_mutation_response | null) - /** delete single row from the table: "match_maps" */ - delete_match_maps_by_pk: (match_maps | null) - /** delete data from the table: "match_options" */ - delete_match_options: (match_options_mutation_response | null) - /** delete single row from the table: "match_options" */ - delete_match_options_by_pk: (match_options | null) - /** delete data from the table: "match_region_veto_picks" */ - delete_match_region_veto_picks: (match_region_veto_picks_mutation_response | null) - /** delete single row from the table: "match_region_veto_picks" */ - delete_match_region_veto_picks_by_pk: (match_region_veto_picks | null) - /** delete data from the table: "match_streams" */ - delete_match_streams: (match_streams_mutation_response | null) - /** delete single row from the table: "match_streams" */ - delete_match_streams_by_pk: (match_streams | null) - /** delete data from the table: "match_type_cfgs" */ - delete_match_type_cfgs: (match_type_cfgs_mutation_response | null) - /** delete single row from the table: "match_type_cfgs" */ - delete_match_type_cfgs_by_pk: (match_type_cfgs | null) - /** delete data from the table: "matches" */ - delete_matches: (matches_mutation_response | null) - /** delete single row from the table: "matches" */ - delete_matches_by_pk: (matches | null) - /** delete data from the table: "migration_hashes.hashes" */ - delete_migration_hashes_hashes: (migration_hashes_hashes_mutation_response | null) - /** delete single row from the table: "migration_hashes.hashes" */ - delete_migration_hashes_hashes_by_pk: (migration_hashes_hashes | null) - /** delete data from the table: "v_my_friends" */ - delete_my_friends: (my_friends_mutation_response | null) - /** delete data from the table: "news_articles" */ - delete_news_articles: (news_articles_mutation_response | null) - /** delete single row from the table: "news_articles" */ - delete_news_articles_by_pk: (news_articles | null) - /** delete data from the table: "notification_preferences" */ - delete_notification_preferences: (notification_preferences_mutation_response | null) - /** delete single row from the table: "notification_preferences" */ - delete_notification_preferences_by_pk: (notification_preferences | null) - /** delete data from the table: "notifications" */ - delete_notifications: (notifications_mutation_response | null) - /** delete single row from the table: "notifications" */ - delete_notifications_by_pk: (notifications | null) - /** delete data from the table: "pending_match_import_players" */ - delete_pending_match_import_players: (pending_match_import_players_mutation_response | null) - /** delete single row from the table: "pending_match_import_players" */ - delete_pending_match_import_players_by_pk: (pending_match_import_players | null) - /** delete data from the table: "pending_match_imports" */ - delete_pending_match_imports: (pending_match_imports_mutation_response | null) - /** delete single row from the table: "pending_match_imports" */ - delete_pending_match_imports_by_pk: (pending_match_imports | null) - /** delete data from the table: "player_aim_stats_demo" */ - delete_player_aim_stats_demo: (player_aim_stats_demo_mutation_response | null) - /** delete single row from the table: "player_aim_stats_demo" */ - delete_player_aim_stats_demo_by_pk: (player_aim_stats_demo | null) - /** delete data from the table: "player_aim_weapon_stats" */ - delete_player_aim_weapon_stats: (player_aim_weapon_stats_mutation_response | null) - /** delete single row from the table: "player_aim_weapon_stats" */ - delete_player_aim_weapon_stats_by_pk: (player_aim_weapon_stats | null) - /** delete data from the table: "player_assists" */ - delete_player_assists: (player_assists_mutation_response | null) - /** delete single row from the table: "player_assists" */ - delete_player_assists_by_pk: (player_assists | null) - /** delete data from the table: "player_damages" */ - delete_player_damages: (player_damages_mutation_response | null) - /** delete single row from the table: "player_damages" */ - delete_player_damages_by_pk: (player_damages | null) - /** delete data from the table: "player_elo" */ - delete_player_elo: (player_elo_mutation_response | null) - /** delete single row from the table: "player_elo" */ - delete_player_elo_by_pk: (player_elo | null) - /** delete data from the table: "player_faceit_rank_history" */ - delete_player_faceit_rank_history: (player_faceit_rank_history_mutation_response | null) - /** delete single row from the table: "player_faceit_rank_history" */ - delete_player_faceit_rank_history_by_pk: (player_faceit_rank_history | null) - /** delete data from the table: "player_flashes" */ - delete_player_flashes: (player_flashes_mutation_response | null) - /** delete single row from the table: "player_flashes" */ - delete_player_flashes_by_pk: (player_flashes | null) - /** delete data from the table: "player_kills" */ - delete_player_kills: (player_kills_mutation_response | null) - /** delete single row from the table: "player_kills" */ - delete_player_kills_by_pk: (player_kills | null) - /** delete data from the table: "player_kills_by_weapon" */ - delete_player_kills_by_weapon: (player_kills_by_weapon_mutation_response | null) - /** delete single row from the table: "player_kills_by_weapon" */ - delete_player_kills_by_weapon_by_pk: (player_kills_by_weapon | null) - /** delete data from the table: "player_leaderboard_rank" */ - delete_player_leaderboard_rank: (player_leaderboard_rank_mutation_response | null) - /** delete data from the table: "player_match_map_stats" */ - delete_player_match_map_stats: (player_match_map_stats_mutation_response | null) - /** delete single row from the table: "player_match_map_stats" */ - delete_player_match_map_stats_by_pk: (player_match_map_stats | null) - /** delete data from the table: "player_objectives" */ - delete_player_objectives: (player_objectives_mutation_response | null) - /** delete single row from the table: "player_objectives" */ - delete_player_objectives_by_pk: (player_objectives | null) - /** delete data from the table: "player_premier_rank_history" */ - delete_player_premier_rank_history: (player_premier_rank_history_mutation_response | null) - /** delete single row from the table: "player_premier_rank_history" */ - delete_player_premier_rank_history_by_pk: (player_premier_rank_history | null) - /** delete data from the table: "player_sanctions" */ - delete_player_sanctions: (player_sanctions_mutation_response | null) - /** delete single row from the table: "player_sanctions" */ - delete_player_sanctions_by_pk: (player_sanctions | null) - /** delete data from the table: "player_season_stats" */ - delete_player_season_stats: (player_season_stats_mutation_response | null) - /** delete single row from the table: "player_season_stats" */ - delete_player_season_stats_by_pk: (player_season_stats | null) - /** delete data from the table: "player_stats" */ - delete_player_stats: (player_stats_mutation_response | null) - /** delete single row from the table: "player_stats" */ - delete_player_stats_by_pk: (player_stats | null) - /** delete data from the table: "player_steam_bot_friend" */ - delete_player_steam_bot_friend: (player_steam_bot_friend_mutation_response | null) - /** delete single row from the table: "player_steam_bot_friend" */ - delete_player_steam_bot_friend_by_pk: (player_steam_bot_friend | null) - /** delete data from the table: "player_steam_match_auth" */ - delete_player_steam_match_auth: (player_steam_match_auth_mutation_response | null) - /** delete single row from the table: "player_steam_match_auth" */ - delete_player_steam_match_auth_by_pk: (player_steam_match_auth | null) - /** delete data from the table: "player_unused_utility" */ - delete_player_unused_utility: (player_unused_utility_mutation_response | null) - /** delete single row from the table: "player_unused_utility" */ - delete_player_unused_utility_by_pk: (player_unused_utility | null) - /** delete data from the table: "player_utility" */ - delete_player_utility: (player_utility_mutation_response | null) - /** delete single row from the table: "player_utility" */ - delete_player_utility_by_pk: (player_utility | null) - /** delete data from the table: "players" */ - delete_players: (players_mutation_response | null) - /** delete single row from the table: "players" */ - delete_players_by_pk: (players | null) - /** delete data from the table: "plugin_versions" */ - delete_plugin_versions: (plugin_versions_mutation_response | null) - /** delete single row from the table: "plugin_versions" */ - delete_plugin_versions_by_pk: (plugin_versions | null) - /** delete data from the table: "push_subscriptions" */ - delete_push_subscriptions: (push_subscriptions_mutation_response | null) - /** delete single row from the table: "push_subscriptions" */ - delete_push_subscriptions_by_pk: (push_subscriptions | null) - /** delete data from the table: "v_role_permissions" */ - delete_role_permissions: (role_permissions_mutation_response | null) - /** delete data from the table: "seasons" */ - delete_seasons: (seasons_mutation_response | null) - /** delete single row from the table: "seasons" */ - delete_seasons_by_pk: (seasons | null) - /** delete data from the table: "server_regions" */ - delete_server_regions: (server_regions_mutation_response | null) - /** delete single row from the table: "server_regions" */ - delete_server_regions_by_pk: (server_regions | null) - /** delete data from the table: "servers" */ - delete_servers: (servers_mutation_response | null) - /** delete single row from the table: "servers" */ - delete_servers_by_pk: (servers | null) - /** delete data from the table: "settings" */ - delete_settings: (settings_mutation_response | null) - /** delete single row from the table: "settings" */ - delete_settings_by_pk: (settings | null) - /** delete data from the table: "steam_account_claims" */ - delete_steam_account_claims: (steam_account_claims_mutation_response | null) - /** delete single row from the table: "steam_account_claims" */ - delete_steam_account_claims_by_pk: (steam_account_claims | null) - /** delete data from the table: "steam_accounts" */ - delete_steam_accounts: (steam_accounts_mutation_response | null) - /** delete single row from the table: "steam_accounts" */ - delete_steam_accounts_by_pk: (steam_accounts | null) - /** delete data from the table: "system_alerts" */ - delete_system_alerts: (system_alerts_mutation_response | null) - /** delete single row from the table: "system_alerts" */ - delete_system_alerts_by_pk: (system_alerts | null) - /** delete data from the table: "team_invites" */ - delete_team_invites: (team_invites_mutation_response | null) - /** delete single row from the table: "team_invites" */ - delete_team_invites_by_pk: (team_invites | null) - /** delete data from the table: "team_roster" */ - delete_team_roster: (team_roster_mutation_response | null) - /** delete single row from the table: "team_roster" */ - delete_team_roster_by_pk: (team_roster | null) - /** delete data from the table: "team_scrim_alerts" */ - delete_team_scrim_alerts: (team_scrim_alerts_mutation_response | null) - /** delete single row from the table: "team_scrim_alerts" */ - delete_team_scrim_alerts_by_pk: (team_scrim_alerts | null) - /** delete data from the table: "team_scrim_availability" */ - delete_team_scrim_availability: (team_scrim_availability_mutation_response | null) - /** delete single row from the table: "team_scrim_availability" */ - delete_team_scrim_availability_by_pk: (team_scrim_availability | null) - /** delete data from the table: "team_scrim_request_proposals" */ - delete_team_scrim_request_proposals: (team_scrim_request_proposals_mutation_response | null) - /** delete single row from the table: "team_scrim_request_proposals" */ - delete_team_scrim_request_proposals_by_pk: (team_scrim_request_proposals | null) - /** delete data from the table: "team_scrim_requests" */ - delete_team_scrim_requests: (team_scrim_requests_mutation_response | null) - /** delete single row from the table: "team_scrim_requests" */ - delete_team_scrim_requests_by_pk: (team_scrim_requests | null) - /** delete data from the table: "team_scrim_settings" */ - delete_team_scrim_settings: (team_scrim_settings_mutation_response | null) - /** delete single row from the table: "team_scrim_settings" */ - delete_team_scrim_settings_by_pk: (team_scrim_settings | null) - /** delete data from the table: "team_suggestions" */ - delete_team_suggestions: (team_suggestions_mutation_response | null) - /** delete single row from the table: "team_suggestions" */ - delete_team_suggestions_by_pk: (team_suggestions | null) - /** delete data from the table: "teams" */ - delete_teams: (teams_mutation_response | null) - /** delete single row from the table: "teams" */ - delete_teams_by_pk: (teams | null) - /** delete data from the table: "tournament_awards" */ - delete_tournament_awards: (tournament_awards_mutation_response | null) - /** delete single row from the table: "tournament_awards" */ - delete_tournament_awards_by_pk: (tournament_awards | null) - /** delete data from the table: "tournament_brackets" */ - delete_tournament_brackets: (tournament_brackets_mutation_response | null) - /** delete single row from the table: "tournament_brackets" */ - delete_tournament_brackets_by_pk: (tournament_brackets | null) - /** delete data from the table: "tournament_categories" */ - delete_tournament_categories: (tournament_categories_mutation_response | null) - /** delete single row from the table: "tournament_categories" */ - delete_tournament_categories_by_pk: (tournament_categories | null) - /** delete data from the table: "tournament_free_agents" */ - delete_tournament_free_agents: (tournament_free_agents_mutation_response | null) - /** delete single row from the table: "tournament_free_agents" */ - delete_tournament_free_agents_by_pk: (tournament_free_agents | null) - /** delete data from the table: "tournament_invite_code_uses" */ - delete_tournament_invite_code_uses: (tournament_invite_code_uses_mutation_response | null) - /** delete single row from the table: "tournament_invite_code_uses" */ - delete_tournament_invite_code_uses_by_pk: (tournament_invite_code_uses | null) - /** delete data from the table: "tournament_invite_codes" */ - delete_tournament_invite_codes: (tournament_invite_codes_mutation_response | null) - /** delete single row from the table: "tournament_invite_codes" */ - delete_tournament_invite_codes_by_pk: (tournament_invite_codes | null) - /** delete data from the table: "tournament_invites" */ - delete_tournament_invites: (tournament_invites_mutation_response | null) - /** delete single row from the table: "tournament_invites" */ - delete_tournament_invites_by_pk: (tournament_invites | null) - /** delete data from the table: "tournament_leaderboard_entries" */ - delete_tournament_leaderboard_entries: (tournament_leaderboard_entries_mutation_response | null) - /** delete data from the table: "tournament_no_shows" */ - delete_tournament_no_shows: (tournament_no_shows_mutation_response | null) - /** delete single row from the table: "tournament_no_shows" */ - delete_tournament_no_shows_by_pk: (tournament_no_shows | null) - /** delete data from the table: "tournament_organizer_teams" */ - delete_tournament_organizer_teams: (tournament_organizer_teams_mutation_response | null) - /** delete single row from the table: "tournament_organizer_teams" */ - delete_tournament_organizer_teams_by_pk: (tournament_organizer_teams | null) - /** delete data from the table: "tournament_organizers" */ - delete_tournament_organizers: (tournament_organizers_mutation_response | null) - /** delete single row from the table: "tournament_organizers" */ - delete_tournament_organizers_by_pk: (tournament_organizers | null) - /** delete data from the table: "tournament_prizes" */ - delete_tournament_prizes: (tournament_prizes_mutation_response | null) - /** delete single row from the table: "tournament_prizes" */ - delete_tournament_prizes_by_pk: (tournament_prizes | null) - /** delete data from the table: "tournament_registration_unlocks" */ - delete_tournament_registration_unlocks: (tournament_registration_unlocks_mutation_response | null) - /** delete data from the table: "tournament_stage_windows" */ - delete_tournament_stage_windows: (tournament_stage_windows_mutation_response | null) - /** delete single row from the table: "tournament_stage_windows" */ - delete_tournament_stage_windows_by_pk: (tournament_stage_windows | null) - /** delete data from the table: "tournament_stages" */ - delete_tournament_stages: (tournament_stages_mutation_response | null) - /** delete single row from the table: "tournament_stages" */ - delete_tournament_stages_by_pk: (tournament_stages | null) - /** delete data from the table: "tournament_team_invites" */ - delete_tournament_team_invites: (tournament_team_invites_mutation_response | null) - /** delete single row from the table: "tournament_team_invites" */ - delete_tournament_team_invites_by_pk: (tournament_team_invites | null) - /** delete data from the table: "tournament_team_roster" */ - delete_tournament_team_roster: (tournament_team_roster_mutation_response | null) - /** delete single row from the table: "tournament_team_roster" */ - delete_tournament_team_roster_by_pk: (tournament_team_roster | null) - /** delete data from the table: "tournament_teams" */ - delete_tournament_teams: (tournament_teams_mutation_response | null) - /** delete single row from the table: "tournament_teams" */ - delete_tournament_teams_by_pk: (tournament_teams | null) - /** delete data from the table: "tournaments" */ - delete_tournaments: (tournaments_mutation_response | null) - /** delete single row from the table: "tournaments" */ - delete_tournaments_by_pk: (tournaments | null) - /** delete data from the table: "utility_collection_items" */ - delete_utility_collection_items: (utility_collection_items_mutation_response | null) - /** delete single row from the table: "utility_collection_items" */ - delete_utility_collection_items_by_pk: (utility_collection_items | null) - /** delete data from the table: "utility_collections" */ - delete_utility_collections: (utility_collections_mutation_response | null) - /** delete single row from the table: "utility_collections" */ - delete_utility_collections_by_pk: (utility_collections | null) - /** delete data from the table: "utility_demo_mines" */ - delete_utility_demo_mines: (utility_demo_mines_mutation_response | null) - /** delete single row from the table: "utility_demo_mines" */ - delete_utility_demo_mines_by_pk: (utility_demo_mines | null) - /** delete data from the table: "utility_demo_throws" */ - delete_utility_demo_throws: (utility_demo_throws_mutation_response | null) - /** delete single row from the table: "utility_demo_throws" */ - delete_utility_demo_throws_by_pk: (utility_demo_throws | null) - /** delete data from the table: "utility_drift_results" */ - delete_utility_drift_results: (utility_drift_results_mutation_response | null) - /** delete single row from the table: "utility_drift_results" */ - delete_utility_drift_results_by_pk: (utility_drift_results | null) - /** delete data from the table: "utility_drift_scans" */ - delete_utility_drift_scans: (utility_drift_scans_mutation_response | null) - /** delete single row from the table: "utility_drift_scans" */ - delete_utility_drift_scans_by_pk: (utility_drift_scans | null) - /** delete data from the table: "utility_lineup_favorites" */ - delete_utility_lineup_favorites: (utility_lineup_favorites_mutation_response | null) - /** delete single row from the table: "utility_lineup_favorites" */ - delete_utility_lineup_favorites_by_pk: (utility_lineup_favorites | null) - /** delete data from the table: "utility_lineup_progress" */ - delete_utility_lineup_progress: (utility_lineup_progress_mutation_response | null) - /** delete single row from the table: "utility_lineup_progress" */ - delete_utility_lineup_progress_by_pk: (utility_lineup_progress | null) - /** delete data from the table: "utility_lineup_renders" */ - delete_utility_lineup_renders: (utility_lineup_renders_mutation_response | null) - /** delete single row from the table: "utility_lineup_renders" */ - delete_utility_lineup_renders_by_pk: (utility_lineup_renders | null) - /** delete data from the table: "utility_lineup_repairs" */ - delete_utility_lineup_repairs: (utility_lineup_repairs_mutation_response | null) - /** delete single row from the table: "utility_lineup_repairs" */ - delete_utility_lineup_repairs_by_pk: (utility_lineup_repairs | null) - /** delete data from the table: "utility_lineup_votes" */ - delete_utility_lineup_votes: (utility_lineup_votes_mutation_response | null) - /** delete single row from the table: "utility_lineup_votes" */ - delete_utility_lineup_votes_by_pk: (utility_lineup_votes | null) - /** delete data from the table: "utility_lineups" */ - delete_utility_lineups: (utility_lineups_mutation_response | null) - /** delete single row from the table: "utility_lineups" */ - delete_utility_lineups_by_pk: (utility_lineups | null) - /** delete data from the table: "utility_meta_lineups" */ - delete_utility_meta_lineups: (utility_meta_lineups_mutation_response | null) - /** delete single row from the table: "utility_meta_lineups" */ - delete_utility_meta_lineups_by_pk: (utility_meta_lineups | null) - /** delete data from the table: "utility_playbook_steps" */ - delete_utility_playbook_steps: (utility_playbook_steps_mutation_response | null) - /** delete single row from the table: "utility_playbook_steps" */ - delete_utility_playbook_steps_by_pk: (utility_playbook_steps | null) - /** delete data from the table: "utility_playbooks" */ - delete_utility_playbooks: (utility_playbooks_mutation_response | null) - /** delete single row from the table: "utility_playbooks" */ - delete_utility_playbooks_by_pk: (utility_playbooks | null) - /** delete data from the table: "utility_practice_invites" */ - delete_utility_practice_invites: (utility_practice_invites_mutation_response | null) - /** delete single row from the table: "utility_practice_invites" */ - delete_utility_practice_invites_by_pk: (utility_practice_invites | null) - /** delete data from the table: "utility_practice_sessions" */ - delete_utility_practice_sessions: (utility_practice_sessions_mutation_response | null) - /** delete single row from the table: "utility_practice_sessions" */ - delete_utility_practice_sessions_by_pk: (utility_practice_sessions | null) - /** delete data from the table: "v_match_captains" */ - delete_v_match_captains: (v_match_captains_mutation_response | null) - /** delete data from the table: "v_match_map_backup_rounds" */ - delete_v_match_map_backup_rounds: (v_match_map_backup_rounds_mutation_response | null) - /** delete data from the table: "v_player_match_map_hltv" */ - delete_v_player_match_map_hltv: (v_player_match_map_hltv_mutation_response | null) - /** delete data from the table: "v_pool_maps" */ - delete_v_pool_maps: (v_pool_maps_mutation_response | null) - /** delete data from the table: "v_team_stage_results" */ - delete_v_team_stage_results: (v_team_stage_results_mutation_response | null) - /** delete single row from the table: "v_team_stage_results" */ - delete_v_team_stage_results_by_pk: (v_team_stage_results | null) - denyInvite: (SuccessOutput | null) - denyNameChange: (SuccessOutput | null) - /** Organizer regenerates the free agent teams and re-seeds */ - draftTournamentTeams: (TournamentDraftOutput | null) - /** Organizer pushes the check-in deadline out and reopens registration */ - extendTournamentCheckIn: (SuccessOutput | null) - forfeitMatch: (SuccessOutput | null) - /** Copy a lineup you can see into your own library */ - forkUtilityLineup: (UtilityLineupOutput | 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) - /** Seed the utility library from an operator-supplied payload */ - importUtilityLineups: (UtilityImportOutput | null) - /** insert data into the table: "_map_pool" */ - insert__map_pool: (_map_pool_mutation_response | null) - /** insert a single row into the table: "_map_pool" */ - insert__map_pool_one: (_map_pool | null) - /** insert data into the table: "abandoned_matches" */ - insert_abandoned_matches: (abandoned_matches_mutation_response | null) - /** insert a single row into the table: "abandoned_matches" */ - insert_abandoned_matches_one: (abandoned_matches | null) - /** insert data into the table: "api_keys" */ - insert_api_keys: (api_keys_mutation_response | null) - /** insert a single row into the table: "api_keys" */ - insert_api_keys_one: (api_keys | null) - /** insert data into the table: "award_recipients" */ - insert_award_recipients: (award_recipients_mutation_response | null) - /** insert a single row into the table: "award_recipients" */ - insert_award_recipients_one: (award_recipients | null) - /** insert data into the table: "awards" */ - insert_awards: (awards_mutation_response | null) - /** insert a single row into the table: "awards" */ - insert_awards_one: (awards | null) - /** insert data into the table: "chat_read_state" */ - insert_chat_read_state: (chat_read_state_mutation_response | null) - /** insert a single row into the table: "chat_read_state" */ - insert_chat_read_state_one: (chat_read_state | null) - /** insert data into the table: "clip_render_jobs" */ - insert_clip_render_jobs: (clip_render_jobs_mutation_response | null) - /** insert a single row into the table: "clip_render_jobs" */ - insert_clip_render_jobs_one: (clip_render_jobs | null) - /** insert data into the table: "custom_pages" */ - insert_custom_pages: (custom_pages_mutation_response | null) - /** insert a single row into the table: "custom_pages" */ - insert_custom_pages_one: (custom_pages | null) - /** insert data into the table: "db_backups" */ - insert_db_backups: (db_backups_mutation_response | null) - /** insert a single row into the table: "db_backups" */ - insert_db_backups_one: (db_backups | null) - /** insert data into the table: "direct_conversations" */ - insert_direct_conversations: (direct_conversations_mutation_response | null) - /** insert a single row into the table: "direct_conversations" */ - insert_direct_conversations_one: (direct_conversations | null) - /** insert data into the table: "direct_messages" */ - insert_direct_messages: (direct_messages_mutation_response | null) - /** insert a single row into the table: "direct_messages" */ - insert_direct_messages_one: (direct_messages | null) - /** insert data into the table: "draft_game_picks" */ - insert_draft_game_picks: (draft_game_picks_mutation_response | null) - /** insert a single row into the table: "draft_game_picks" */ - insert_draft_game_picks_one: (draft_game_picks | null) - /** insert data into the table: "draft_game_players" */ - insert_draft_game_players: (draft_game_players_mutation_response | null) - /** insert a single row into the table: "draft_game_players" */ - insert_draft_game_players_one: (draft_game_players | null) - /** insert data into the table: "draft_games" */ - insert_draft_games: (draft_games_mutation_response | null) - /** insert a single row into the table: "draft_games" */ - insert_draft_games_one: (draft_games | null) - /** insert data into the table: "e_award_sources" */ - insert_e_award_sources: (e_award_sources_mutation_response | null) - /** insert a single row into the table: "e_award_sources" */ - insert_e_award_sources_one: (e_award_sources | null) - /** insert data into the table: "e_award_tiers" */ - insert_e_award_tiers: (e_award_tiers_mutation_response | null) - /** insert a single row into the table: "e_award_tiers" */ - insert_e_award_tiers_one: (e_award_tiers | null) - /** insert data into the table: "e_check_in_settings" */ - insert_e_check_in_settings: (e_check_in_settings_mutation_response | null) - /** insert a single row into the table: "e_check_in_settings" */ - insert_e_check_in_settings_one: (e_check_in_settings | null) - /** insert data into the table: "e_draft_game_captain_selection" */ - insert_e_draft_game_captain_selection: (e_draft_game_captain_selection_mutation_response | null) - /** insert a single row into the table: "e_draft_game_captain_selection" */ - insert_e_draft_game_captain_selection_one: (e_draft_game_captain_selection | null) - /** insert data into the table: "e_draft_game_draft_order" */ - insert_e_draft_game_draft_order: (e_draft_game_draft_order_mutation_response | null) - /** insert a single row into the table: "e_draft_game_draft_order" */ - insert_e_draft_game_draft_order_one: (e_draft_game_draft_order | null) - /** insert data into the table: "e_draft_game_mode" */ - insert_e_draft_game_mode: (e_draft_game_mode_mutation_response | null) - /** insert a single row into the table: "e_draft_game_mode" */ - insert_e_draft_game_mode_one: (e_draft_game_mode | null) - /** insert data into the table: "e_draft_game_player_status" */ - insert_e_draft_game_player_status: (e_draft_game_player_status_mutation_response | null) - /** insert a single row into the table: "e_draft_game_player_status" */ - insert_e_draft_game_player_status_one: (e_draft_game_player_status | null) - /** insert data into the table: "e_draft_game_status" */ - insert_e_draft_game_status: (e_draft_game_status_mutation_response | null) - /** insert a single row into the table: "e_draft_game_status" */ - insert_e_draft_game_status_one: (e_draft_game_status | null) - /** insert data into the table: "e_event_media_access" */ - insert_e_event_media_access: (e_event_media_access_mutation_response | null) - /** insert a single row into the table: "e_event_media_access" */ - insert_e_event_media_access_one: (e_event_media_access | null) - /** insert data into the table: "e_event_visibility" */ - insert_e_event_visibility: (e_event_visibility_mutation_response | null) - /** insert a single row into the table: "e_event_visibility" */ - insert_e_event_visibility_one: (e_event_visibility | null) - /** insert data into the table: "e_friend_status" */ - insert_e_friend_status: (e_friend_status_mutation_response | null) - /** insert a single row into the table: "e_friend_status" */ - insert_e_friend_status_one: (e_friend_status | null) - /** insert data into the table: "e_game_cfg_types" */ - 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" */ - insert_e_game_server_node_statuses_one: (e_game_server_node_statuses | null) - /** insert data into the table: "e_league_movement_types" */ - insert_e_league_movement_types: (e_league_movement_types_mutation_response | null) - /** insert a single row into the table: "e_league_movement_types" */ - insert_e_league_movement_types_one: (e_league_movement_types | null) - /** insert data into the table: "e_league_proposal_statuses" */ - insert_e_league_proposal_statuses: (e_league_proposal_statuses_mutation_response | null) - /** insert a single row into the table: "e_league_proposal_statuses" */ - insert_e_league_proposal_statuses_one: (e_league_proposal_statuses | null) - /** insert data into the table: "e_league_registration_statuses" */ - insert_e_league_registration_statuses: (e_league_registration_statuses_mutation_response | null) - /** insert a single row into the table: "e_league_registration_statuses" */ - insert_e_league_registration_statuses_one: (e_league_registration_statuses | null) - /** insert data into the table: "e_league_season_statuses" */ - insert_e_league_season_statuses: (e_league_season_statuses_mutation_response | null) - /** insert a single row into the table: "e_league_season_statuses" */ - insert_e_league_season_statuses_one: (e_league_season_statuses | null) - /** insert data into the table: "e_lobby_access" */ - insert_e_lobby_access: (e_lobby_access_mutation_response | null) - /** insert a single row into the table: "e_lobby_access" */ - insert_e_lobby_access_one: (e_lobby_access | null) - /** insert data into the table: "e_lobby_player_status" */ - insert_e_lobby_player_status: (e_lobby_player_status_mutation_response | null) - /** insert a single row into the table: "e_lobby_player_status" */ - insert_e_lobby_player_status_one: (e_lobby_player_status | null) - /** insert data into the table: "e_map_pool_types" */ - insert_e_map_pool_types: (e_map_pool_types_mutation_response | null) - /** insert a single row into the table: "e_map_pool_types" */ - insert_e_map_pool_types_one: (e_map_pool_types | null) - /** insert data into the table: "e_match_clip_visibility" */ - insert_e_match_clip_visibility: (e_match_clip_visibility_mutation_response | null) - /** insert a single row into the table: "e_match_clip_visibility" */ - insert_e_match_clip_visibility_one: (e_match_clip_visibility | null) - /** insert data into the table: "e_match_map_status" */ - insert_e_match_map_status: (e_match_map_status_mutation_response | null) - /** insert a single row into the table: "e_match_map_status" */ - insert_e_match_map_status_one: (e_match_map_status | null) - /** insert data into the table: "e_match_mode" */ - insert_e_match_mode: (e_match_mode_mutation_response | null) - /** insert a single row into the table: "e_match_mode" */ - insert_e_match_mode_one: (e_match_mode | null) - /** insert data into the table: "e_match_party_sources" */ - insert_e_match_party_sources: (e_match_party_sources_mutation_response | null) - /** insert a single row into the table: "e_match_party_sources" */ - insert_e_match_party_sources_one: (e_match_party_sources | null) - /** insert data into the table: "e_match_status" */ - insert_e_match_status: (e_match_status_mutation_response | null) - /** insert a single row into the table: "e_match_status" */ - insert_e_match_status_one: (e_match_status | null) - /** insert data into the table: "e_match_types" */ - insert_e_match_types: (e_match_types_mutation_response | null) - /** insert a single row into the table: "e_match_types" */ - insert_e_match_types_one: (e_match_types | null) - /** insert data into the table: "e_notification_types" */ - insert_e_notification_types: (e_notification_types_mutation_response | null) - /** insert a single row into the table: "e_notification_types" */ - insert_e_notification_types_one: (e_notification_types | null) - /** insert data into the table: "e_objective_types" */ - insert_e_objective_types: (e_objective_types_mutation_response | null) - /** insert a single row into the table: "e_objective_types" */ - insert_e_objective_types_one: (e_objective_types | null) - /** insert data into the table: "e_player_roles" */ - insert_e_player_roles: (e_player_roles_mutation_response | null) - /** insert a single row into the table: "e_player_roles" */ - insert_e_player_roles_one: (e_player_roles | null) - /** insert data into the table: "e_plugin_runtimes" */ - insert_e_plugin_runtimes: (e_plugin_runtimes_mutation_response | null) - /** insert a single row into the table: "e_plugin_runtimes" */ - insert_e_plugin_runtimes_one: (e_plugin_runtimes | null) - /** insert data into the table: "e_ready_settings" */ - insert_e_ready_settings: (e_ready_settings_mutation_response | null) - /** insert a single row into the table: "e_ready_settings" */ - insert_e_ready_settings_one: (e_ready_settings | null) - /** insert data into the table: "e_sanction_scopes" */ - insert_e_sanction_scopes: (e_sanction_scopes_mutation_response | null) - /** insert a single row into the table: "e_sanction_scopes" */ - insert_e_sanction_scopes_one: (e_sanction_scopes | null) - /** insert data into the table: "e_sanction_sources" */ - insert_e_sanction_sources: (e_sanction_sources_mutation_response | null) - /** insert a single row into the table: "e_sanction_sources" */ - insert_e_sanction_sources_one: (e_sanction_sources | null) - /** insert data into the table: "e_sanction_types" */ - insert_e_sanction_types: (e_sanction_types_mutation_response | null) - /** insert a single row into the table: "e_sanction_types" */ - insert_e_sanction_types_one: (e_sanction_types | null) - /** insert data into the table: "e_scrim_request_statuses" */ - insert_e_scrim_request_statuses: (e_scrim_request_statuses_mutation_response | null) - /** insert a single row into the table: "e_scrim_request_statuses" */ - insert_e_scrim_request_statuses_one: (e_scrim_request_statuses | null) - /** insert data into the table: "e_server_types" */ - insert_e_server_types: (e_server_types_mutation_response | null) - /** insert a single row into the table: "e_server_types" */ - insert_e_server_types_one: (e_server_types | null) - /** insert data into the table: "e_sides" */ - insert_e_sides: (e_sides_mutation_response | null) - /** insert a single row into the table: "e_sides" */ - insert_e_sides_one: (e_sides | null) - /** insert data into the table: "e_system_alert_types" */ - insert_e_system_alert_types: (e_system_alert_types_mutation_response | null) - /** insert a single row into the table: "e_system_alert_types" */ - insert_e_system_alert_types_one: (e_system_alert_types | null) - /** insert data into the table: "e_team_roles" */ - insert_e_team_roles: (e_team_roles_mutation_response | null) - /** insert a single row into the table: "e_team_roles" */ - insert_e_team_roles_one: (e_team_roles | null) - /** insert data into the table: "e_team_roster_statuses" */ - insert_e_team_roster_statuses: (e_team_roster_statuses_mutation_response | null) - /** insert a single row into the table: "e_team_roster_statuses" */ - insert_e_team_roster_statuses_one: (e_team_roster_statuses | null) - /** insert data into the table: "e_timeout_settings" */ - insert_e_timeout_settings: (e_timeout_settings_mutation_response | null) - /** insert a single row into the table: "e_timeout_settings" */ - insert_e_timeout_settings_one: (e_timeout_settings | null) - /** insert data into the table: "e_tournament_categories" */ - insert_e_tournament_categories: (e_tournament_categories_mutation_response | null) - /** insert a single row into the table: "e_tournament_categories" */ - insert_e_tournament_categories_one: (e_tournament_categories | null) - /** insert data into the table: "e_tournament_free_agent_statuses" */ - insert_e_tournament_free_agent_statuses: (e_tournament_free_agent_statuses_mutation_response | null) - /** insert a single row into the table: "e_tournament_free_agent_statuses" */ - insert_e_tournament_free_agent_statuses_one: (e_tournament_free_agent_statuses | null) - /** insert data into the table: "e_tournament_registration_types" */ - insert_e_tournament_registration_types: (e_tournament_registration_types_mutation_response | null) - /** insert a single row into the table: "e_tournament_registration_types" */ - insert_e_tournament_registration_types_one: (e_tournament_registration_types | null) - /** insert data into the table: "e_tournament_stage_types" */ - insert_e_tournament_stage_types: (e_tournament_stage_types_mutation_response | null) - /** insert a single row into the table: "e_tournament_stage_types" */ - insert_e_tournament_stage_types_one: (e_tournament_stage_types | null) - /** insert data into the table: "e_tournament_status" */ - insert_e_tournament_status: (e_tournament_status_mutation_response | null) - /** insert a single row into the table: "e_tournament_status" */ - insert_e_tournament_status_one: (e_tournament_status | null) - /** insert data into the table: "e_utility_practice_access" */ - insert_e_utility_practice_access: (e_utility_practice_access_mutation_response | null) - /** insert a single row into the table: "e_utility_practice_access" */ - insert_e_utility_practice_access_one: (e_utility_practice_access | null) - /** insert data into the table: "e_utility_practice_statuses" */ - insert_e_utility_practice_statuses: (e_utility_practice_statuses_mutation_response | null) - /** insert a single row into the table: "e_utility_practice_statuses" */ - insert_e_utility_practice_statuses_one: (e_utility_practice_statuses | null) - /** insert data into the table: "e_utility_sources" */ - insert_e_utility_sources: (e_utility_sources_mutation_response | null) - /** insert a single row into the table: "e_utility_sources" */ - insert_e_utility_sources_one: (e_utility_sources | null) - /** insert data into the table: "e_utility_techniques" */ - insert_e_utility_techniques: (e_utility_techniques_mutation_response | null) - /** insert a single row into the table: "e_utility_techniques" */ - insert_e_utility_techniques_one: (e_utility_techniques | null) - /** insert data into the table: "e_utility_throw_strengths" */ - insert_e_utility_throw_strengths: (e_utility_throw_strengths_mutation_response | null) - /** insert a single row into the table: "e_utility_throw_strengths" */ - insert_e_utility_throw_strengths_one: (e_utility_throw_strengths | null) - /** insert data into the table: "e_utility_types" */ - insert_e_utility_types: (e_utility_types_mutation_response | null) - /** insert a single row into the table: "e_utility_types" */ - insert_e_utility_types_one: (e_utility_types | null) - /** insert data into the table: "e_utility_visibility" */ - insert_e_utility_visibility: (e_utility_visibility_mutation_response | null) - /** insert a single row into the table: "e_utility_visibility" */ - insert_e_utility_visibility_one: (e_utility_visibility | null) - /** insert data into the table: "e_veto_pick_types" */ - insert_e_veto_pick_types: (e_veto_pick_types_mutation_response | null) - /** insert a single row into the table: "e_veto_pick_types" */ - insert_e_veto_pick_types_one: (e_veto_pick_types | null) - /** insert data into the table: "e_winning_reasons" */ - insert_e_winning_reasons: (e_winning_reasons_mutation_response | null) - /** insert a single row into the table: "e_winning_reasons" */ - insert_e_winning_reasons_one: (e_winning_reasons | null) - /** insert data into the table: "event_match_links" */ - insert_event_match_links: (event_match_links_mutation_response | null) - /** insert a single row into the table: "event_match_links" */ - insert_event_match_links_one: (event_match_links | null) - /** insert data into the table: "event_media" */ - insert_event_media: (event_media_mutation_response | null) - /** insert a single row into the table: "event_media" */ - insert_event_media_one: (event_media | null) - /** insert data into the table: "event_media_players" */ - insert_event_media_players: (event_media_players_mutation_response | null) - /** insert a single row into the table: "event_media_players" */ - insert_event_media_players_one: (event_media_players | null) - /** insert data into the table: "event_organizers" */ - insert_event_organizers: (event_organizers_mutation_response | null) - /** insert a single row into the table: "event_organizers" */ - insert_event_organizers_one: (event_organizers | null) - /** insert data into the table: "event_players" */ - insert_event_players: (event_players_mutation_response | null) - /** insert a single row into the table: "event_players" */ - insert_event_players_one: (event_players | null) - /** insert data into the table: "event_teams" */ - insert_event_teams: (event_teams_mutation_response | null) - /** insert a single row into the table: "event_teams" */ - insert_event_teams_one: (event_teams | null) - /** insert data into the table: "event_tournaments" */ - insert_event_tournaments: (event_tournaments_mutation_response | null) - /** insert a single row into the table: "event_tournaments" */ - insert_event_tournaments_one: (event_tournaments | null) - /** insert data into the table: "events" */ - insert_events: (events_mutation_response | null) - /** insert a single row into the table: "events" */ - insert_events_one: (events | null) - /** insert data into the table: "friends" */ - insert_friends: (friends_mutation_response | null) - /** insert a single row into the table: "friends" */ - 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" */ - insert_game_server_nodes_one: (game_server_nodes | null) - /** insert data into the table: "game_versions" */ - insert_game_versions: (game_versions_mutation_response | null) - /** insert a single row into the table: "game_versions" */ - insert_game_versions_one: (game_versions | null) - /** insert data into the table: "gamedata_signature_validations" */ - insert_gamedata_signature_validations: (gamedata_signature_validations_mutation_response | null) - /** insert a single row into the table: "gamedata_signature_validations" */ - insert_gamedata_signature_validations_one: (gamedata_signature_validations | null) - /** insert data into the table: "leaderboard_entries" */ - insert_leaderboard_entries: (leaderboard_entries_mutation_response | null) - /** insert a single row into the table: "leaderboard_entries" */ - insert_leaderboard_entries_one: (leaderboard_entries | null) - /** insert data into the table: "league_divisions" */ - insert_league_divisions: (league_divisions_mutation_response | null) - /** insert a single row into the table: "league_divisions" */ - insert_league_divisions_one: (league_divisions | null) - /** insert data into the table: "league_match_weeks" */ - insert_league_match_weeks: (league_match_weeks_mutation_response | null) - /** insert a single row into the table: "league_match_weeks" */ - insert_league_match_weeks_one: (league_match_weeks | null) - /** insert data into the table: "league_relegation_playoffs" */ - insert_league_relegation_playoffs: (league_relegation_playoffs_mutation_response | null) - /** insert a single row into the table: "league_relegation_playoffs" */ - insert_league_relegation_playoffs_one: (league_relegation_playoffs | null) - /** insert data into the table: "league_scheduling_proposals" */ - insert_league_scheduling_proposals: (league_scheduling_proposals_mutation_response | null) - /** insert a single row into the table: "league_scheduling_proposals" */ - insert_league_scheduling_proposals_one: (league_scheduling_proposals | null) - /** insert data into the table: "league_season_divisions" */ - insert_league_season_divisions: (league_season_divisions_mutation_response | null) - /** insert a single row into the table: "league_season_divisions" */ - insert_league_season_divisions_one: (league_season_divisions | null) - /** insert data into the table: "league_seasons" */ - insert_league_seasons: (league_seasons_mutation_response | null) - /** insert a single row into the table: "league_seasons" */ - insert_league_seasons_one: (league_seasons | null) - /** insert data into the table: "league_team_movements" */ - insert_league_team_movements: (league_team_movements_mutation_response | null) - /** insert a single row into the table: "league_team_movements" */ - insert_league_team_movements_one: (league_team_movements | null) - /** insert data into the table: "league_team_rosters" */ - insert_league_team_rosters: (league_team_rosters_mutation_response | null) - /** insert a single row into the table: "league_team_rosters" */ - insert_league_team_rosters_one: (league_team_rosters | null) - /** insert data into the table: "league_team_seasons" */ - insert_league_team_seasons: (league_team_seasons_mutation_response | null) - /** insert a single row into the table: "league_team_seasons" */ - insert_league_team_seasons_one: (league_team_seasons | null) - /** insert data into the table: "league_teams" */ - insert_league_teams: (league_teams_mutation_response | null) - /** insert a single row into the table: "league_teams" */ - insert_league_teams_one: (league_teams | null) - /** insert data into the table: "lobbies" */ - insert_lobbies: (lobbies_mutation_response | null) - /** insert a single row into the table: "lobbies" */ - insert_lobbies_one: (lobbies | null) - /** insert data into the table: "lobby_players" */ - insert_lobby_players: (lobby_players_mutation_response | null) - /** insert a single row into the table: "lobby_players" */ - insert_lobby_players_one: (lobby_players | null) - /** insert data into the table: "map_callouts" */ - insert_map_callouts: (map_callouts_mutation_response | null) - /** insert a single row into the table: "map_callouts" */ - insert_map_callouts_one: (map_callouts | null) - /** insert data into the table: "map_pools" */ - insert_map_pools: (map_pools_mutation_response | null) - /** insert a single row into the table: "map_pools" */ - insert_map_pools_one: (map_pools | null) - /** insert data into the table: "maps" */ - insert_maps: (maps_mutation_response | null) - /** insert a single row into the table: "maps" */ - insert_maps_one: (maps | null) - /** insert data into the table: "match_clips" */ - insert_match_clips: (match_clips_mutation_response | null) - /** insert a single row into the table: "match_clips" */ - insert_match_clips_one: (match_clips | null) - /** insert data into the table: "match_demo_sessions" */ - insert_match_demo_sessions: (match_demo_sessions_mutation_response | null) - /** insert a single row into the table: "match_demo_sessions" */ - insert_match_demo_sessions_one: (match_demo_sessions | null) - /** insert data into the table: "match_lineup_players" */ - insert_match_lineup_players: (match_lineup_players_mutation_response | null) - /** insert a single row into the table: "match_lineup_players" */ - insert_match_lineup_players_one: (match_lineup_players | null) - /** insert data into the table: "match_lineups" */ - insert_match_lineups: (match_lineups_mutation_response | null) - /** insert a single row into the table: "match_lineups" */ - insert_match_lineups_one: (match_lineups | null) - /** insert data into the table: "match_map_demos" */ - insert_match_map_demos: (match_map_demos_mutation_response | null) - /** insert a single row into the table: "match_map_demos" */ - insert_match_map_demos_one: (match_map_demos | null) - /** insert data into the table: "match_map_rounds" */ - insert_match_map_rounds: (match_map_rounds_mutation_response | null) - /** insert a single row into the table: "match_map_rounds" */ - insert_match_map_rounds_one: (match_map_rounds | null) - /** insert data into the table: "match_map_veto_picks" */ - insert_match_map_veto_picks: (match_map_veto_picks_mutation_response | null) - /** insert a single row into the table: "match_map_veto_picks" */ - insert_match_map_veto_picks_one: (match_map_veto_picks | null) - /** insert data into the table: "match_maps" */ - insert_match_maps: (match_maps_mutation_response | null) - /** insert a single row into the table: "match_maps" */ - insert_match_maps_one: (match_maps | null) - /** insert data into the table: "match_options" */ - insert_match_options: (match_options_mutation_response | null) - /** insert a single row into the table: "match_options" */ - insert_match_options_one: (match_options | null) - /** insert data into the table: "match_region_veto_picks" */ - insert_match_region_veto_picks: (match_region_veto_picks_mutation_response | null) - /** insert a single row into the table: "match_region_veto_picks" */ - insert_match_region_veto_picks_one: (match_region_veto_picks | null) - /** insert data into the table: "match_streams" */ - insert_match_streams: (match_streams_mutation_response | null) - /** insert a single row into the table: "match_streams" */ - insert_match_streams_one: (match_streams | null) - /** insert data into the table: "match_type_cfgs" */ - insert_match_type_cfgs: (match_type_cfgs_mutation_response | null) - /** insert a single row into the table: "match_type_cfgs" */ - insert_match_type_cfgs_one: (match_type_cfgs | null) - /** insert data into the table: "matches" */ - insert_matches: (matches_mutation_response | null) - /** insert a single row into the table: "matches" */ - insert_matches_one: (matches | null) - /** insert data into the table: "migration_hashes.hashes" */ - insert_migration_hashes_hashes: (migration_hashes_hashes_mutation_response | null) - /** insert a single row into the table: "migration_hashes.hashes" */ - insert_migration_hashes_hashes_one: (migration_hashes_hashes | null) - /** insert data into the table: "v_my_friends" */ - insert_my_friends: (my_friends_mutation_response | null) - /** insert a single row into the table: "v_my_friends" */ - insert_my_friends_one: (my_friends | null) - /** insert data into the table: "news_articles" */ - insert_news_articles: (news_articles_mutation_response | null) - /** insert a single row into the table: "news_articles" */ - insert_news_articles_one: (news_articles | null) - /** insert data into the table: "notification_preferences" */ - insert_notification_preferences: (notification_preferences_mutation_response | null) - /** insert a single row into the table: "notification_preferences" */ - insert_notification_preferences_one: (notification_preferences | null) - /** insert data into the table: "notifications" */ - insert_notifications: (notifications_mutation_response | null) - /** insert a single row into the table: "notifications" */ - insert_notifications_one: (notifications | null) - /** insert data into the table: "pending_match_import_players" */ - insert_pending_match_import_players: (pending_match_import_players_mutation_response | null) - /** insert a single row into the table: "pending_match_import_players" */ - insert_pending_match_import_players_one: (pending_match_import_players | null) - /** insert data into the table: "pending_match_imports" */ - insert_pending_match_imports: (pending_match_imports_mutation_response | null) - /** insert a single row into the table: "pending_match_imports" */ - insert_pending_match_imports_one: (pending_match_imports | null) - /** insert data into the table: "player_aim_stats_demo" */ - insert_player_aim_stats_demo: (player_aim_stats_demo_mutation_response | null) - /** insert a single row into the table: "player_aim_stats_demo" */ - insert_player_aim_stats_demo_one: (player_aim_stats_demo | null) - /** insert data into the table: "player_aim_weapon_stats" */ - insert_player_aim_weapon_stats: (player_aim_weapon_stats_mutation_response | null) - /** insert a single row into the table: "player_aim_weapon_stats" */ - insert_player_aim_weapon_stats_one: (player_aim_weapon_stats | null) - /** insert data into the table: "player_assists" */ - insert_player_assists: (player_assists_mutation_response | null) - /** insert a single row into the table: "player_assists" */ - insert_player_assists_one: (player_assists | null) - /** insert data into the table: "player_damages" */ - insert_player_damages: (player_damages_mutation_response | null) - /** insert a single row into the table: "player_damages" */ - insert_player_damages_one: (player_damages | null) - /** insert data into the table: "player_elo" */ - insert_player_elo: (player_elo_mutation_response | null) - /** insert a single row into the table: "player_elo" */ - insert_player_elo_one: (player_elo | null) - /** insert data into the table: "player_faceit_rank_history" */ - insert_player_faceit_rank_history: (player_faceit_rank_history_mutation_response | null) - /** insert a single row into the table: "player_faceit_rank_history" */ - insert_player_faceit_rank_history_one: (player_faceit_rank_history | null) - /** insert data into the table: "player_flashes" */ - insert_player_flashes: (player_flashes_mutation_response | null) - /** insert a single row into the table: "player_flashes" */ - insert_player_flashes_one: (player_flashes | null) - /** insert data into the table: "player_kills" */ - insert_player_kills: (player_kills_mutation_response | null) - /** insert data into the table: "player_kills_by_weapon" */ - insert_player_kills_by_weapon: (player_kills_by_weapon_mutation_response | null) - /** insert a single row into the table: "player_kills_by_weapon" */ - insert_player_kills_by_weapon_one: (player_kills_by_weapon | null) - /** insert a single row into the table: "player_kills" */ - insert_player_kills_one: (player_kills | null) - /** insert data into the table: "player_leaderboard_rank" */ - insert_player_leaderboard_rank: (player_leaderboard_rank_mutation_response | null) - /** insert a single row into the table: "player_leaderboard_rank" */ - insert_player_leaderboard_rank_one: (player_leaderboard_rank | null) - /** insert data into the table: "player_match_map_stats" */ - insert_player_match_map_stats: (player_match_map_stats_mutation_response | null) - /** insert a single row into the table: "player_match_map_stats" */ - insert_player_match_map_stats_one: (player_match_map_stats | null) - /** insert data into the table: "player_objectives" */ - insert_player_objectives: (player_objectives_mutation_response | null) - /** insert a single row into the table: "player_objectives" */ - insert_player_objectives_one: (player_objectives | null) - /** insert data into the table: "player_premier_rank_history" */ - insert_player_premier_rank_history: (player_premier_rank_history_mutation_response | null) - /** insert a single row into the table: "player_premier_rank_history" */ - insert_player_premier_rank_history_one: (player_premier_rank_history | null) - /** insert data into the table: "player_sanctions" */ - insert_player_sanctions: (player_sanctions_mutation_response | null) - /** insert a single row into the table: "player_sanctions" */ - insert_player_sanctions_one: (player_sanctions | null) - /** insert data into the table: "player_season_stats" */ - insert_player_season_stats: (player_season_stats_mutation_response | null) - /** insert a single row into the table: "player_season_stats" */ - insert_player_season_stats_one: (player_season_stats | null) - /** insert data into the table: "player_stats" */ - insert_player_stats: (player_stats_mutation_response | null) - /** insert a single row into the table: "player_stats" */ - insert_player_stats_one: (player_stats | null) - /** insert data into the table: "player_steam_bot_friend" */ - insert_player_steam_bot_friend: (player_steam_bot_friend_mutation_response | null) - /** insert a single row into the table: "player_steam_bot_friend" */ - insert_player_steam_bot_friend_one: (player_steam_bot_friend | null) - /** insert data into the table: "player_steam_match_auth" */ - insert_player_steam_match_auth: (player_steam_match_auth_mutation_response | null) - /** insert a single row into the table: "player_steam_match_auth" */ - insert_player_steam_match_auth_one: (player_steam_match_auth | null) - /** insert data into the table: "player_unused_utility" */ - insert_player_unused_utility: (player_unused_utility_mutation_response | null) - /** insert a single row into the table: "player_unused_utility" */ - insert_player_unused_utility_one: (player_unused_utility | null) - /** insert data into the table: "player_utility" */ - insert_player_utility: (player_utility_mutation_response | null) - /** insert a single row into the table: "player_utility" */ - insert_player_utility_one: (player_utility | null) - /** insert data into the table: "players" */ - insert_players: (players_mutation_response | null) - /** insert a single row into the table: "players" */ - insert_players_one: (players | null) - /** insert data into the table: "plugin_versions" */ - insert_plugin_versions: (plugin_versions_mutation_response | null) - /** insert a single row into the table: "plugin_versions" */ - insert_plugin_versions_one: (plugin_versions | null) - /** insert data into the table: "push_subscriptions" */ - insert_push_subscriptions: (push_subscriptions_mutation_response | null) - /** insert a single row into the table: "push_subscriptions" */ - insert_push_subscriptions_one: (push_subscriptions | null) - /** insert data into the table: "v_role_permissions" */ - insert_role_permissions: (role_permissions_mutation_response | null) - /** insert a single row into the table: "v_role_permissions" */ - insert_role_permissions_one: (role_permissions | null) - /** insert data into the table: "seasons" */ - insert_seasons: (seasons_mutation_response | null) - /** insert a single row into the table: "seasons" */ - insert_seasons_one: (seasons | null) - /** insert data into the table: "server_regions" */ - insert_server_regions: (server_regions_mutation_response | null) - /** insert a single row into the table: "server_regions" */ - insert_server_regions_one: (server_regions | null) - /** insert data into the table: "servers" */ - insert_servers: (servers_mutation_response | null) - /** insert a single row into the table: "servers" */ - insert_servers_one: (servers | null) - /** insert data into the table: "settings" */ - insert_settings: (settings_mutation_response | null) - /** insert a single row into the table: "settings" */ - insert_settings_one: (settings | null) - /** insert data into the table: "steam_account_claims" */ - insert_steam_account_claims: (steam_account_claims_mutation_response | null) - /** insert a single row into the table: "steam_account_claims" */ - insert_steam_account_claims_one: (steam_account_claims | null) - /** insert data into the table: "steam_accounts" */ - insert_steam_accounts: (steam_accounts_mutation_response | null) - /** insert a single row into the table: "steam_accounts" */ - insert_steam_accounts_one: (steam_accounts | null) - /** insert data into the table: "system_alerts" */ - insert_system_alerts: (system_alerts_mutation_response | null) - /** insert a single row into the table: "system_alerts" */ - insert_system_alerts_one: (system_alerts | null) - /** insert data into the table: "team_invites" */ - insert_team_invites: (team_invites_mutation_response | null) - /** insert a single row into the table: "team_invites" */ - insert_team_invites_one: (team_invites | null) - /** insert data into the table: "team_roster" */ - insert_team_roster: (team_roster_mutation_response | null) - /** insert a single row into the table: "team_roster" */ - insert_team_roster_one: (team_roster | null) - /** insert data into the table: "team_scrim_alerts" */ - insert_team_scrim_alerts: (team_scrim_alerts_mutation_response | null) - /** insert a single row into the table: "team_scrim_alerts" */ - insert_team_scrim_alerts_one: (team_scrim_alerts | null) - /** insert data into the table: "team_scrim_availability" */ - insert_team_scrim_availability: (team_scrim_availability_mutation_response | null) - /** insert a single row into the table: "team_scrim_availability" */ - insert_team_scrim_availability_one: (team_scrim_availability | null) - /** insert data into the table: "team_scrim_request_proposals" */ - insert_team_scrim_request_proposals: (team_scrim_request_proposals_mutation_response | null) - /** insert a single row into the table: "team_scrim_request_proposals" */ - insert_team_scrim_request_proposals_one: (team_scrim_request_proposals | null) - /** insert data into the table: "team_scrim_requests" */ - insert_team_scrim_requests: (team_scrim_requests_mutation_response | null) - /** insert a single row into the table: "team_scrim_requests" */ - insert_team_scrim_requests_one: (team_scrim_requests | null) - /** insert data into the table: "team_scrim_settings" */ - insert_team_scrim_settings: (team_scrim_settings_mutation_response | null) - /** insert a single row into the table: "team_scrim_settings" */ - insert_team_scrim_settings_one: (team_scrim_settings | null) - /** insert data into the table: "team_suggestions" */ - insert_team_suggestions: (team_suggestions_mutation_response | null) - /** insert a single row into the table: "team_suggestions" */ - insert_team_suggestions_one: (team_suggestions | null) - /** insert data into the table: "teams" */ - insert_teams: (teams_mutation_response | null) - /** insert a single row into the table: "teams" */ - insert_teams_one: (teams | null) - /** insert data into the table: "tournament_awards" */ - insert_tournament_awards: (tournament_awards_mutation_response | null) - /** insert a single row into the table: "tournament_awards" */ - insert_tournament_awards_one: (tournament_awards | null) - /** insert data into the table: "tournament_brackets" */ - insert_tournament_brackets: (tournament_brackets_mutation_response | null) - /** insert a single row into the table: "tournament_brackets" */ - insert_tournament_brackets_one: (tournament_brackets | null) - /** insert data into the table: "tournament_categories" */ - insert_tournament_categories: (tournament_categories_mutation_response | null) - /** insert a single row into the table: "tournament_categories" */ - insert_tournament_categories_one: (tournament_categories | null) - /** insert data into the table: "tournament_free_agents" */ - insert_tournament_free_agents: (tournament_free_agents_mutation_response | null) - /** insert a single row into the table: "tournament_free_agents" */ - insert_tournament_free_agents_one: (tournament_free_agents | null) - /** insert data into the table: "tournament_invite_code_uses" */ - insert_tournament_invite_code_uses: (tournament_invite_code_uses_mutation_response | null) - /** insert a single row into the table: "tournament_invite_code_uses" */ - insert_tournament_invite_code_uses_one: (tournament_invite_code_uses | null) - /** insert data into the table: "tournament_invite_codes" */ - insert_tournament_invite_codes: (tournament_invite_codes_mutation_response | null) - /** insert a single row into the table: "tournament_invite_codes" */ - insert_tournament_invite_codes_one: (tournament_invite_codes | null) - /** insert data into the table: "tournament_invites" */ - insert_tournament_invites: (tournament_invites_mutation_response | null) - /** insert a single row into the table: "tournament_invites" */ - insert_tournament_invites_one: (tournament_invites | null) - /** insert data into the table: "tournament_leaderboard_entries" */ - insert_tournament_leaderboard_entries: (tournament_leaderboard_entries_mutation_response | null) - /** insert a single row into the table: "tournament_leaderboard_entries" */ - insert_tournament_leaderboard_entries_one: (tournament_leaderboard_entries | null) - /** insert data into the table: "tournament_no_shows" */ - insert_tournament_no_shows: (tournament_no_shows_mutation_response | null) - /** insert a single row into the table: "tournament_no_shows" */ - insert_tournament_no_shows_one: (tournament_no_shows | null) - /** insert data into the table: "tournament_organizer_teams" */ - insert_tournament_organizer_teams: (tournament_organizer_teams_mutation_response | null) - /** insert a single row into the table: "tournament_organizer_teams" */ - insert_tournament_organizer_teams_one: (tournament_organizer_teams | null) - /** insert data into the table: "tournament_organizers" */ - insert_tournament_organizers: (tournament_organizers_mutation_response | null) - /** insert a single row into the table: "tournament_organizers" */ - insert_tournament_organizers_one: (tournament_organizers | null) - /** insert data into the table: "tournament_prizes" */ - insert_tournament_prizes: (tournament_prizes_mutation_response | null) - /** insert a single row into the table: "tournament_prizes" */ - insert_tournament_prizes_one: (tournament_prizes | null) - /** insert data into the table: "tournament_registration_unlocks" */ - insert_tournament_registration_unlocks: (tournament_registration_unlocks_mutation_response | null) - /** insert a single row into the table: "tournament_registration_unlocks" */ - insert_tournament_registration_unlocks_one: (tournament_registration_unlocks | null) - /** insert data into the table: "tournament_stage_windows" */ - insert_tournament_stage_windows: (tournament_stage_windows_mutation_response | null) - /** insert a single row into the table: "tournament_stage_windows" */ - insert_tournament_stage_windows_one: (tournament_stage_windows | null) - /** insert data into the table: "tournament_stages" */ - insert_tournament_stages: (tournament_stages_mutation_response | null) - /** insert a single row into the table: "tournament_stages" */ - insert_tournament_stages_one: (tournament_stages | null) - /** insert data into the table: "tournament_team_invites" */ - insert_tournament_team_invites: (tournament_team_invites_mutation_response | null) - /** insert a single row into the table: "tournament_team_invites" */ - insert_tournament_team_invites_one: (tournament_team_invites | null) - /** insert data into the table: "tournament_team_roster" */ - insert_tournament_team_roster: (tournament_team_roster_mutation_response | null) - /** insert a single row into the table: "tournament_team_roster" */ - insert_tournament_team_roster_one: (tournament_team_roster | null) - /** insert data into the table: "tournament_teams" */ - insert_tournament_teams: (tournament_teams_mutation_response | null) - /** insert a single row into the table: "tournament_teams" */ - insert_tournament_teams_one: (tournament_teams | null) - /** insert data into the table: "tournaments" */ - insert_tournaments: (tournaments_mutation_response | null) - /** insert a single row into the table: "tournaments" */ - insert_tournaments_one: (tournaments | null) - /** insert data into the table: "utility_collection_items" */ - insert_utility_collection_items: (utility_collection_items_mutation_response | null) - /** insert a single row into the table: "utility_collection_items" */ - insert_utility_collection_items_one: (utility_collection_items | null) - /** insert data into the table: "utility_collections" */ - insert_utility_collections: (utility_collections_mutation_response | null) - /** insert a single row into the table: "utility_collections" */ - insert_utility_collections_one: (utility_collections | null) - /** insert data into the table: "utility_demo_mines" */ - insert_utility_demo_mines: (utility_demo_mines_mutation_response | null) - /** insert a single row into the table: "utility_demo_mines" */ - insert_utility_demo_mines_one: (utility_demo_mines | null) - /** insert data into the table: "utility_demo_throws" */ - insert_utility_demo_throws: (utility_demo_throws_mutation_response | null) - /** insert a single row into the table: "utility_demo_throws" */ - insert_utility_demo_throws_one: (utility_demo_throws | null) - /** insert data into the table: "utility_drift_results" */ - insert_utility_drift_results: (utility_drift_results_mutation_response | null) - /** insert a single row into the table: "utility_drift_results" */ - insert_utility_drift_results_one: (utility_drift_results | null) - /** insert data into the table: "utility_drift_scans" */ - insert_utility_drift_scans: (utility_drift_scans_mutation_response | null) - /** insert a single row into the table: "utility_drift_scans" */ - insert_utility_drift_scans_one: (utility_drift_scans | null) - /** insert data into the table: "utility_lineup_favorites" */ - insert_utility_lineup_favorites: (utility_lineup_favorites_mutation_response | null) - /** insert a single row into the table: "utility_lineup_favorites" */ - insert_utility_lineup_favorites_one: (utility_lineup_favorites | null) - /** insert data into the table: "utility_lineup_progress" */ - insert_utility_lineup_progress: (utility_lineup_progress_mutation_response | null) - /** insert a single row into the table: "utility_lineup_progress" */ - insert_utility_lineup_progress_one: (utility_lineup_progress | null) - /** insert data into the table: "utility_lineup_renders" */ - insert_utility_lineup_renders: (utility_lineup_renders_mutation_response | null) - /** insert a single row into the table: "utility_lineup_renders" */ - insert_utility_lineup_renders_one: (utility_lineup_renders | null) - /** insert data into the table: "utility_lineup_repairs" */ - insert_utility_lineup_repairs: (utility_lineup_repairs_mutation_response | null) - /** insert a single row into the table: "utility_lineup_repairs" */ - insert_utility_lineup_repairs_one: (utility_lineup_repairs | null) - /** insert data into the table: "utility_lineup_votes" */ - insert_utility_lineup_votes: (utility_lineup_votes_mutation_response | null) - /** insert a single row into the table: "utility_lineup_votes" */ - insert_utility_lineup_votes_one: (utility_lineup_votes | null) - /** insert data into the table: "utility_lineups" */ - insert_utility_lineups: (utility_lineups_mutation_response | null) - /** insert a single row into the table: "utility_lineups" */ - insert_utility_lineups_one: (utility_lineups | null) - /** insert data into the table: "utility_meta_lineups" */ - insert_utility_meta_lineups: (utility_meta_lineups_mutation_response | null) - /** insert a single row into the table: "utility_meta_lineups" */ - insert_utility_meta_lineups_one: (utility_meta_lineups | null) - /** insert data into the table: "utility_playbook_steps" */ - insert_utility_playbook_steps: (utility_playbook_steps_mutation_response | null) - /** insert a single row into the table: "utility_playbook_steps" */ - insert_utility_playbook_steps_one: (utility_playbook_steps | null) - /** insert data into the table: "utility_playbooks" */ - insert_utility_playbooks: (utility_playbooks_mutation_response | null) - /** insert a single row into the table: "utility_playbooks" */ - insert_utility_playbooks_one: (utility_playbooks | null) - /** insert data into the table: "utility_practice_invites" */ - insert_utility_practice_invites: (utility_practice_invites_mutation_response | null) - /** insert a single row into the table: "utility_practice_invites" */ - insert_utility_practice_invites_one: (utility_practice_invites | null) - /** insert data into the table: "utility_practice_sessions" */ - insert_utility_practice_sessions: (utility_practice_sessions_mutation_response | null) - /** insert a single row into the table: "utility_practice_sessions" */ - insert_utility_practice_sessions_one: (utility_practice_sessions | null) - /** insert data into the table: "v_match_captains" */ - insert_v_match_captains: (v_match_captains_mutation_response | null) - /** insert a single row into the table: "v_match_captains" */ - insert_v_match_captains_one: (v_match_captains | null) - /** insert data into the table: "v_match_map_backup_rounds" */ - insert_v_match_map_backup_rounds: (v_match_map_backup_rounds_mutation_response | null) - /** insert a single row into the table: "v_match_map_backup_rounds" */ - insert_v_match_map_backup_rounds_one: (v_match_map_backup_rounds | null) - /** insert data into the table: "v_player_match_map_hltv" */ - insert_v_player_match_map_hltv: (v_player_match_map_hltv_mutation_response | null) - /** insert a single row into the table: "v_player_match_map_hltv" */ - insert_v_player_match_map_hltv_one: (v_player_match_map_hltv | null) - /** insert data into the table: "v_pool_maps" */ - insert_v_pool_maps: (v_pool_maps_mutation_response | null) - /** insert a single row into the table: "v_pool_maps" */ - insert_v_pool_maps_one: (v_pool_maps | null) - /** insert data into the table: "v_team_stage_results" */ - 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) - /** Invite players to a utility practice session */ - inviteToUtilityPractice: (SuccessOutput | null) - /** joinDraftGame */ - joinDraftGame: (SuccessOutput | null) - /** joinDraftGameAsParty */ - joinDraftGameAsParty: (SuccessOutput | null) - /** Register for a tournament that drafts teams, alone or with your lobby */ - joinTournamentAsFreeAgent: (SuccessOutput | null) - /** Join a utility practice session */ - joinUtilityPractice: (UtilityPracticeSessionOutput | null) - kickServerPlayer: KickResult - /** execute VOLATILE function "league_award_forfeit" which returns "matches" */ - league_award_forfeit: matches[] - leaveLineup: (SuccessOutput | null) - /** Withdraw from a tournament's free agent pool */ - leaveTournamentAsFreeAgent: (SuccessOutput | null) - /** Leave a utility practice session */ - leaveUtilityPractice: (SuccessOutput | null) - linkSteamMatchHistory: (SteamMatchHistoryLinkOutput | null) - /** Load dev fixture data (dev only) */ - loadFixtures: (SuccessOutput | null) - /** Load a utility playbook into a running practice session */ - loadUtilityPlaybookIntoSession: (SuccessOutput | null) - /** logout */ - logout: (SuccessOutput | null) - /** Move file or directory on game server */ - moveServerItem: (SuccessOutput | null) - /** Return the latest S3 orphan-scan report (admin only). */ - orphanedDemosScanResult: (OrphanScanResultOutput | null) - /** Flag in-flight clip_render_jobs paused; pod halts after current highlight. */ - pauseClipRenderBatch: (SuccessOutput | null) - pollSteamMatchHistory: (SteamMatchHistoryPollOutput | null) - /** previewDraftGame */ - previewDraftGame: (DraftGamePreviewOutput | null) - /** Resolve a game mode into the plugins and cfg a server would load */ - previewGameMode: (PreviewGameModeOutput | null) - /** Delete every lineup that came from one origin source */ - purgeUtilityLineupSource: (UtilityPurgeOutput | 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) - /** Organizer re-admits a team that missed check-in, then re-seeds */ - readmitTournamentTeam: (SuccessOutput | null) - rebootMatchServer: (SuccessOutput | null) - /** execute VOLATILE function "recalculate_tournament_awards" which returns "award_recipients" */ - recalculate_tournament_awards: award_recipients[] - /** Wipe and rebuild all player ELO from finished matches in chronological order (admin only). Runs in the background; track via recomputePlayerEloStatus. */ - 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) - /** Spend a tournament invite link for an unlock on an invite only tournament */ - redeemTournamentInviteCode: (SuccessOutput | null) - /** Reindex every player into the Typesense search index (admin only). Runs in the background; track via refreshAllPlayersStatus. */ - refreshAllPlayers: (ReindexStartedOutput | null) - /** Return the progress of the player reindex run (admin only). */ - refreshAllPlayersStatus: (ReindexStatusOutput | null) - refreshFaceitRank: (SuccessOutput | null) - refreshLiveHud: (SuccessOutput | null) - registerName: (SuccessOutput | null) - /** Re-mine one batch of demos after a miner change */ - remineUtilityMeta: (UtilityRemineOutput | null) - /** Remove dev fixture data (dev only) */ - removeFixtures: (SuccessOutput | null) - /** Remove a friends-role presence bot account */ - removeSteamPresenceBotAccount: (SuccessOutput | null) - /** execute VOLATILE function "remove_league_team_from_season" which returns "league_team_seasons" */ - remove_league_team_from_season: league_team_seasons[] - /** Rename file or directory on game server */ - renameServerItem: (SuccessOutput | null) - /** Re-film a public lineup's preview clip */ - renderUtilityLineupPreview: (UtilityRenderQueueOutput | null) - /** execute VOLATILE function "reorder_league_divisions" which returns "league_divisions" */ - reorder_league_divisions: league_divisions[] - /** Re-solve a lineup a drift scan says the map moved */ - repairUtilityLineup: (UtilitySolveOutput | null) - /** Re-parse every demo in the system (admin only). Runs one demo at a time in the background; this can take a very long time. Track via reparseAllDemosStatus. */ - reparseAllDemos: (ReparseAllStartedOutput | null) - /** Return the progress of the reparse-all-demos run (admin only). */ - reparseAllDemosStatus: (ReparseAllStatusOutput | null) - /** Re-parse demo metadata for a match map (admin only) */ - reparseDemo: (SuccessOutput | null) - /** Re-parse all demos across every map for a match (admin only). Fires in the background and returns immediately. */ - reparseMatchDemos: (SuccessOutput | null) - requestNameChange: (SuccessOutput | null) - /** Reset a terminal-state clip_render_jobs row back to queued and re-enqueue the batch worker (admin only). */ - requeueClipRender: (SuccessOutput | null) - /** respondDraftInvite */ - respondDraftInvite: (SuccessOutput | null) - /** respondToScrimRequest */ - respondToScrimRequest: (SuccessOutput | null) - restartService: (SuccessOutput | null) - /** execute VOLATILE function "restart_league_season" which returns "league_seasons" */ - restart_league_season: league_seasons[] - /** Clear paused flag and re-enqueue remaining queued clip_render_jobs. */ - resumeClipRenderBatch: (SuccessOutput | null) - /** Delete terminal clip_render_jobs rows for a match_map (all or only failed/cancelled) and re-create them from their saved specs. */ - retryClipRenderBatch: (SuccessOutput | null) - retryPendingMatchImport: (PendingMatchImportActionOutput | null) - /** Revoke a hand-granted award */ - revokeAward: (SuccessOutput | null) - /** Organizer kills a tournament invite link without losing who already used it */ - revokeTournamentInviteCode: (SuccessOutput | null) - sanctionServerPlayer: SanctionResult - /** Create or update a catalog award */ - saveAward: (Award | null) - /** Create or update a first-party news post. Caller role is verified against public.post_news_role. */ - saveNewsPost: (NewsPost | null) - /** Mine a lineup out of a parsed demo */ - saveUtilityLineupFromDemo: (UtilityLineupOutput | null) - /** Save a lineup recorded in a practice session */ - saveUtilityLineupFromPractice: (UtilityLineupOutput | null) - /** Create or update a utility playbook and its steps */ - saveUtilityPlaybook: (UtilityPlaybookOutput | null) - /** Scan S3 for objects not referenced in the database (admin only). Runs in the background; results land in the logs and orphanedDemosScanResult. */ - scanOrphanedDemos: (ScanStartedOutput | null) - /** Scan all players who have been on a lineup for Steam VAC/game bans */ - scanSteamBans: (SuccessOutput | null) - /** scheduleMatch */ - scheduleMatch: (SuccessOutput | null) - /** sendScrimRequest */ - sendScrimRequest: (SuccessOutput | null) - sendUtilityDrillToServer: (UtilityDrillLoadOutput | null) - sendUtilityLineupToServer: (UtilityLoadOutput | null) - sendUtilityScratchToServer: (UtilityLoadOutput | null) - setGameNodeSchedulingState: (SuccessOutput | null) - /** Track new releases of a game plugin, or pin it where it is */ - setGamePluginAutoUpdate: (SuccessOutput | null) - setHudMode: (SuccessOutput | null) - /** setMapWinner */ - setMapWinner: (SuccessOutput | null) - /** setMatchWinner */ - setMatchWinner: (SuccessOutput | null) - /** Publish or unpublish a news post. Caller role is verified against public.post_news_role. */ - setNewsPostStatus: (NewsPost | null) - /** Map a tournament placement to an award */ - setTournamentAward: (TournamentAward | null) - setUtilityPracticeAccess: (SuccessOutput | null) - setupGameServer: (SetupGameServeOutput | null) - skipShaders: (SuccessOutput | null) - /** Ask a practice server to solve a throw onto a point */ - solveUtilityLineup: (UtilitySolveOutput | null) - specAutodirector: (SuccessOutput | null) - specClick: (SuccessOutput | null) - specHud: (SuccessOutput | null) - specHudSides: (SuccessOutput | null) - specJump: (SuccessOutput | null) - specPlayer: (SuccessOutput | null) - specScoreboard: (SuccessOutput | null) - specSlot: (SuccessOutput | null) - specXray: (SuccessOutput | null) - startLive: (SuccessOutput | null) - /** startMatch */ - startMatch: (SuccessOutput | null) - /** Re-fly a map's lineups against two collision meshes */ - startUtilityDriftScan: (UtilityDriftScanOutput | null) - /** Start a utility practice session */ - startUtilityPractice: (UtilityPracticeSessionOutput | null) - stopGpuSession: (SuccessOutput | null) - stopLive: (SuccessOutput | null) - /** Stop a utility practice session */ - stopUtilityPractice: (SuccessOutput | null) - stopWatchDemo: (SuccessOutput | null) - /** Submit a Steam Guard code for a presence bot account */ - submitSteamPresenceSteamGuard: (SuccessOutput | null) - swapLineups: (SuccessOutput | null) - switchLineup: (SuccessOutput | null) - switchLiveMatch: (SuccessOutput | null) - /** Pull the published map callouts for every enabled map */ - syncMapCallouts: (MapCalloutSyncOutput | 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 - /** Owner-only patch for clip title / visibility / target_steam_id. */ - updateClip: (SuccessOutput | null) - updateCs: (SuccessOutput | null) - /** updateDraftGame */ - updateDraftGame: (SuccessOutput | null) - updateServices: (SuccessOutput | null) - /** update data of the table: "_map_pool" */ - update__map_pool: (_map_pool_mutation_response | null) - /** update single row of the table: "_map_pool" */ - update__map_pool_by_pk: (_map_pool | null) - /** update multiples rows of table: "_map_pool" */ - update__map_pool_many: ((_map_pool_mutation_response | null)[] | null) - /** update data of the table: "abandoned_matches" */ - update_abandoned_matches: (abandoned_matches_mutation_response | null) - /** update single row of the table: "abandoned_matches" */ - update_abandoned_matches_by_pk: (abandoned_matches | null) - /** update multiples rows of table: "abandoned_matches" */ - update_abandoned_matches_many: ((abandoned_matches_mutation_response | null)[] | null) - /** update data of the table: "api_keys" */ - update_api_keys: (api_keys_mutation_response | null) - /** update single row of the table: "api_keys" */ - update_api_keys_by_pk: (api_keys | null) - /** update multiples rows of table: "api_keys" */ - update_api_keys_many: ((api_keys_mutation_response | null)[] | null) - /** update data of the table: "award_recipients" */ - update_award_recipients: (award_recipients_mutation_response | null) - /** update single row of the table: "award_recipients" */ - update_award_recipients_by_pk: (award_recipients | null) - /** update multiples rows of table: "award_recipients" */ - update_award_recipients_many: ((award_recipients_mutation_response | null)[] | null) - /** update data of the table: "awards" */ - update_awards: (awards_mutation_response | null) - /** update single row of the table: "awards" */ - update_awards_by_pk: (awards | null) - /** update multiples rows of table: "awards" */ - update_awards_many: ((awards_mutation_response | null)[] | null) - /** update data of the table: "chat_read_state" */ - update_chat_read_state: (chat_read_state_mutation_response | null) - /** update single row of the table: "chat_read_state" */ - update_chat_read_state_by_pk: (chat_read_state | null) - /** update multiples rows of table: "chat_read_state" */ - update_chat_read_state_many: ((chat_read_state_mutation_response | null)[] | null) - /** update data of the table: "clip_render_jobs" */ - update_clip_render_jobs: (clip_render_jobs_mutation_response | null) - /** update single row of the table: "clip_render_jobs" */ - update_clip_render_jobs_by_pk: (clip_render_jobs | null) - /** update multiples rows of table: "clip_render_jobs" */ - update_clip_render_jobs_many: ((clip_render_jobs_mutation_response | null)[] | null) - /** update data of the table: "custom_pages" */ - update_custom_pages: (custom_pages_mutation_response | null) - /** update single row of the table: "custom_pages" */ - update_custom_pages_by_pk: (custom_pages | null) - /** update multiples rows of table: "custom_pages" */ - update_custom_pages_many: ((custom_pages_mutation_response | null)[] | null) - /** update data of the table: "db_backups" */ - update_db_backups: (db_backups_mutation_response | null) - /** update single row of the table: "db_backups" */ - update_db_backups_by_pk: (db_backups | null) - /** update multiples rows of table: "db_backups" */ - update_db_backups_many: ((db_backups_mutation_response | null)[] | null) - /** update data of the table: "direct_conversations" */ - update_direct_conversations: (direct_conversations_mutation_response | null) - /** update single row of the table: "direct_conversations" */ - update_direct_conversations_by_pk: (direct_conversations | null) - /** update multiples rows of table: "direct_conversations" */ - update_direct_conversations_many: ((direct_conversations_mutation_response | null)[] | null) - /** update data of the table: "direct_messages" */ - update_direct_messages: (direct_messages_mutation_response | null) - /** update single row of the table: "direct_messages" */ - update_direct_messages_by_pk: (direct_messages | null) - /** update multiples rows of table: "direct_messages" */ - update_direct_messages_many: ((direct_messages_mutation_response | null)[] | null) - /** update data of the table: "draft_game_picks" */ - update_draft_game_picks: (draft_game_picks_mutation_response | null) - /** update single row of the table: "draft_game_picks" */ - update_draft_game_picks_by_pk: (draft_game_picks | null) - /** update multiples rows of table: "draft_game_picks" */ - update_draft_game_picks_many: ((draft_game_picks_mutation_response | null)[] | null) - /** update data of the table: "draft_game_players" */ - update_draft_game_players: (draft_game_players_mutation_response | null) - /** update single row of the table: "draft_game_players" */ - update_draft_game_players_by_pk: (draft_game_players | null) - /** update multiples rows of table: "draft_game_players" */ - update_draft_game_players_many: ((draft_game_players_mutation_response | null)[] | null) - /** update data of the table: "draft_games" */ - update_draft_games: (draft_games_mutation_response | null) - /** update single row of the table: "draft_games" */ - update_draft_games_by_pk: (draft_games | null) - /** update multiples rows of table: "draft_games" */ - update_draft_games_many: ((draft_games_mutation_response | null)[] | null) - /** update data of the table: "e_award_sources" */ - update_e_award_sources: (e_award_sources_mutation_response | null) - /** update single row of the table: "e_award_sources" */ - update_e_award_sources_by_pk: (e_award_sources | null) - /** update multiples rows of table: "e_award_sources" */ - update_e_award_sources_many: ((e_award_sources_mutation_response | null)[] | null) - /** update data of the table: "e_award_tiers" */ - update_e_award_tiers: (e_award_tiers_mutation_response | null) - /** update single row of the table: "e_award_tiers" */ - update_e_award_tiers_by_pk: (e_award_tiers | null) - /** update multiples rows of table: "e_award_tiers" */ - update_e_award_tiers_many: ((e_award_tiers_mutation_response | null)[] | null) - /** update data of the table: "e_check_in_settings" */ - update_e_check_in_settings: (e_check_in_settings_mutation_response | null) - /** update single row of the table: "e_check_in_settings" */ - update_e_check_in_settings_by_pk: (e_check_in_settings | null) - /** update multiples rows of table: "e_check_in_settings" */ - update_e_check_in_settings_many: ((e_check_in_settings_mutation_response | null)[] | null) - /** update data of the table: "e_draft_game_captain_selection" */ - update_e_draft_game_captain_selection: (e_draft_game_captain_selection_mutation_response | null) - /** update single row of the table: "e_draft_game_captain_selection" */ - update_e_draft_game_captain_selection_by_pk: (e_draft_game_captain_selection | null) - /** update multiples rows of table: "e_draft_game_captain_selection" */ - update_e_draft_game_captain_selection_many: ((e_draft_game_captain_selection_mutation_response | null)[] | null) - /** update data of the table: "e_draft_game_draft_order" */ - update_e_draft_game_draft_order: (e_draft_game_draft_order_mutation_response | null) - /** update single row of the table: "e_draft_game_draft_order" */ - update_e_draft_game_draft_order_by_pk: (e_draft_game_draft_order | null) - /** update multiples rows of table: "e_draft_game_draft_order" */ - update_e_draft_game_draft_order_many: ((e_draft_game_draft_order_mutation_response | null)[] | null) - /** update data of the table: "e_draft_game_mode" */ - update_e_draft_game_mode: (e_draft_game_mode_mutation_response | null) - /** update single row of the table: "e_draft_game_mode" */ - update_e_draft_game_mode_by_pk: (e_draft_game_mode | null) - /** update multiples rows of table: "e_draft_game_mode" */ - update_e_draft_game_mode_many: ((e_draft_game_mode_mutation_response | null)[] | null) - /** update data of the table: "e_draft_game_player_status" */ - update_e_draft_game_player_status: (e_draft_game_player_status_mutation_response | null) - /** update single row of the table: "e_draft_game_player_status" */ - update_e_draft_game_player_status_by_pk: (e_draft_game_player_status | null) - /** update multiples rows of table: "e_draft_game_player_status" */ - update_e_draft_game_player_status_many: ((e_draft_game_player_status_mutation_response | null)[] | null) - /** update data of the table: "e_draft_game_status" */ - update_e_draft_game_status: (e_draft_game_status_mutation_response | null) - /** update single row of the table: "e_draft_game_status" */ - update_e_draft_game_status_by_pk: (e_draft_game_status | null) - /** update multiples rows of table: "e_draft_game_status" */ - update_e_draft_game_status_many: ((e_draft_game_status_mutation_response | null)[] | null) - /** update data of the table: "e_event_media_access" */ - update_e_event_media_access: (e_event_media_access_mutation_response | null) - /** update single row of the table: "e_event_media_access" */ - update_e_event_media_access_by_pk: (e_event_media_access | null) - /** update multiples rows of table: "e_event_media_access" */ - update_e_event_media_access_many: ((e_event_media_access_mutation_response | null)[] | null) - /** update data of the table: "e_event_visibility" */ - update_e_event_visibility: (e_event_visibility_mutation_response | null) - /** update single row of the table: "e_event_visibility" */ - update_e_event_visibility_by_pk: (e_event_visibility | null) - /** update multiples rows of table: "e_event_visibility" */ - update_e_event_visibility_many: ((e_event_visibility_mutation_response | null)[] | null) - /** update data of the table: "e_friend_status" */ - update_e_friend_status: (e_friend_status_mutation_response | null) - /** update single row of the table: "e_friend_status" */ - update_e_friend_status_by_pk: (e_friend_status | null) - /** update multiples rows of table: "e_friend_status" */ - update_e_friend_status_many: ((e_friend_status_mutation_response | null)[] | null) - /** update data of the table: "e_game_cfg_types" */ - update_e_game_cfg_types: (e_game_cfg_types_mutation_response | null) - /** update single row of the table: "e_game_cfg_types" */ - 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" */ - update_e_game_server_node_statuses_by_pk: (e_game_server_node_statuses | null) - /** update multiples rows of table: "e_game_server_node_statuses" */ - update_e_game_server_node_statuses_many: ((e_game_server_node_statuses_mutation_response | null)[] | null) - /** update data of the table: "e_league_movement_types" */ - update_e_league_movement_types: (e_league_movement_types_mutation_response | null) - /** update single row of the table: "e_league_movement_types" */ - update_e_league_movement_types_by_pk: (e_league_movement_types | null) - /** update multiples rows of table: "e_league_movement_types" */ - update_e_league_movement_types_many: ((e_league_movement_types_mutation_response | null)[] | null) - /** update data of the table: "e_league_proposal_statuses" */ - update_e_league_proposal_statuses: (e_league_proposal_statuses_mutation_response | null) - /** update single row of the table: "e_league_proposal_statuses" */ - update_e_league_proposal_statuses_by_pk: (e_league_proposal_statuses | null) - /** update multiples rows of table: "e_league_proposal_statuses" */ - update_e_league_proposal_statuses_many: ((e_league_proposal_statuses_mutation_response | null)[] | null) - /** update data of the table: "e_league_registration_statuses" */ - update_e_league_registration_statuses: (e_league_registration_statuses_mutation_response | null) - /** update single row of the table: "e_league_registration_statuses" */ - update_e_league_registration_statuses_by_pk: (e_league_registration_statuses | null) - /** update multiples rows of table: "e_league_registration_statuses" */ - update_e_league_registration_statuses_many: ((e_league_registration_statuses_mutation_response | null)[] | null) - /** update data of the table: "e_league_season_statuses" */ - update_e_league_season_statuses: (e_league_season_statuses_mutation_response | null) - /** update single row of the table: "e_league_season_statuses" */ - update_e_league_season_statuses_by_pk: (e_league_season_statuses | null) - /** update multiples rows of table: "e_league_season_statuses" */ - update_e_league_season_statuses_many: ((e_league_season_statuses_mutation_response | null)[] | null) - /** update data of the table: "e_lobby_access" */ - update_e_lobby_access: (e_lobby_access_mutation_response | null) - /** update single row of the table: "e_lobby_access" */ - update_e_lobby_access_by_pk: (e_lobby_access | null) - /** update multiples rows of table: "e_lobby_access" */ - update_e_lobby_access_many: ((e_lobby_access_mutation_response | null)[] | null) - /** update data of the table: "e_lobby_player_status" */ - update_e_lobby_player_status: (e_lobby_player_status_mutation_response | null) - /** update single row of the table: "e_lobby_player_status" */ - update_e_lobby_player_status_by_pk: (e_lobby_player_status | null) - /** update multiples rows of table: "e_lobby_player_status" */ - update_e_lobby_player_status_many: ((e_lobby_player_status_mutation_response | null)[] | null) - /** update data of the table: "e_map_pool_types" */ - update_e_map_pool_types: (e_map_pool_types_mutation_response | null) - /** update single row of the table: "e_map_pool_types" */ - update_e_map_pool_types_by_pk: (e_map_pool_types | null) - /** update multiples rows of table: "e_map_pool_types" */ - update_e_map_pool_types_many: ((e_map_pool_types_mutation_response | null)[] | null) - /** update data of the table: "e_match_clip_visibility" */ - update_e_match_clip_visibility: (e_match_clip_visibility_mutation_response | null) - /** update single row of the table: "e_match_clip_visibility" */ - update_e_match_clip_visibility_by_pk: (e_match_clip_visibility | null) - /** update multiples rows of table: "e_match_clip_visibility" */ - update_e_match_clip_visibility_many: ((e_match_clip_visibility_mutation_response | null)[] | null) - /** update data of the table: "e_match_map_status" */ - update_e_match_map_status: (e_match_map_status_mutation_response | null) - /** update single row of the table: "e_match_map_status" */ - update_e_match_map_status_by_pk: (e_match_map_status | null) - /** update multiples rows of table: "e_match_map_status" */ - update_e_match_map_status_many: ((e_match_map_status_mutation_response | null)[] | null) - /** update data of the table: "e_match_mode" */ - update_e_match_mode: (e_match_mode_mutation_response | null) - /** update single row of the table: "e_match_mode" */ - update_e_match_mode_by_pk: (e_match_mode | null) - /** update multiples rows of table: "e_match_mode" */ - update_e_match_mode_many: ((e_match_mode_mutation_response | null)[] | null) - /** update data of the table: "e_match_party_sources" */ - update_e_match_party_sources: (e_match_party_sources_mutation_response | null) - /** update single row of the table: "e_match_party_sources" */ - update_e_match_party_sources_by_pk: (e_match_party_sources | null) - /** update multiples rows of table: "e_match_party_sources" */ - update_e_match_party_sources_many: ((e_match_party_sources_mutation_response | null)[] | null) - /** update data of the table: "e_match_status" */ - update_e_match_status: (e_match_status_mutation_response | null) - /** update single row of the table: "e_match_status" */ - update_e_match_status_by_pk: (e_match_status | null) - /** update multiples rows of table: "e_match_status" */ - update_e_match_status_many: ((e_match_status_mutation_response | null)[] | null) - /** update data of the table: "e_match_types" */ - update_e_match_types: (e_match_types_mutation_response | null) - /** update single row of the table: "e_match_types" */ - update_e_match_types_by_pk: (e_match_types | null) - /** update multiples rows of table: "e_match_types" */ - update_e_match_types_many: ((e_match_types_mutation_response | null)[] | null) - /** update data of the table: "e_notification_types" */ - update_e_notification_types: (e_notification_types_mutation_response | null) - /** update single row of the table: "e_notification_types" */ - update_e_notification_types_by_pk: (e_notification_types | null) - /** update multiples rows of table: "e_notification_types" */ - update_e_notification_types_many: ((e_notification_types_mutation_response | null)[] | null) - /** update data of the table: "e_objective_types" */ - update_e_objective_types: (e_objective_types_mutation_response | null) - /** update single row of the table: "e_objective_types" */ - update_e_objective_types_by_pk: (e_objective_types | null) - /** update multiples rows of table: "e_objective_types" */ - update_e_objective_types_many: ((e_objective_types_mutation_response | null)[] | null) - /** update data of the table: "e_player_roles" */ - update_e_player_roles: (e_player_roles_mutation_response | null) - /** update single row of the table: "e_player_roles" */ - update_e_player_roles_by_pk: (e_player_roles | null) - /** update multiples rows of table: "e_player_roles" */ - update_e_player_roles_many: ((e_player_roles_mutation_response | null)[] | null) - /** update data of the table: "e_plugin_runtimes" */ - update_e_plugin_runtimes: (e_plugin_runtimes_mutation_response | null) - /** update single row of the table: "e_plugin_runtimes" */ - update_e_plugin_runtimes_by_pk: (e_plugin_runtimes | null) - /** update multiples rows of table: "e_plugin_runtimes" */ - update_e_plugin_runtimes_many: ((e_plugin_runtimes_mutation_response | null)[] | null) - /** update data of the table: "e_ready_settings" */ - update_e_ready_settings: (e_ready_settings_mutation_response | null) - /** update single row of the table: "e_ready_settings" */ - update_e_ready_settings_by_pk: (e_ready_settings | null) - /** update multiples rows of table: "e_ready_settings" */ - update_e_ready_settings_many: ((e_ready_settings_mutation_response | null)[] | null) - /** update data of the table: "e_sanction_scopes" */ - update_e_sanction_scopes: (e_sanction_scopes_mutation_response | null) - /** update single row of the table: "e_sanction_scopes" */ - update_e_sanction_scopes_by_pk: (e_sanction_scopes | null) - /** update multiples rows of table: "e_sanction_scopes" */ - update_e_sanction_scopes_many: ((e_sanction_scopes_mutation_response | null)[] | null) - /** update data of the table: "e_sanction_sources" */ - update_e_sanction_sources: (e_sanction_sources_mutation_response | null) - /** update single row of the table: "e_sanction_sources" */ - update_e_sanction_sources_by_pk: (e_sanction_sources | null) - /** update multiples rows of table: "e_sanction_sources" */ - update_e_sanction_sources_many: ((e_sanction_sources_mutation_response | null)[] | null) - /** update data of the table: "e_sanction_types" */ - update_e_sanction_types: (e_sanction_types_mutation_response | null) - /** update single row of the table: "e_sanction_types" */ - update_e_sanction_types_by_pk: (e_sanction_types | null) - /** update multiples rows of table: "e_sanction_types" */ - update_e_sanction_types_many: ((e_sanction_types_mutation_response | null)[] | null) - /** update data of the table: "e_scrim_request_statuses" */ - update_e_scrim_request_statuses: (e_scrim_request_statuses_mutation_response | null) - /** update single row of the table: "e_scrim_request_statuses" */ - update_e_scrim_request_statuses_by_pk: (e_scrim_request_statuses | null) - /** update multiples rows of table: "e_scrim_request_statuses" */ - update_e_scrim_request_statuses_many: ((e_scrim_request_statuses_mutation_response | null)[] | null) - /** update data of the table: "e_server_types" */ - update_e_server_types: (e_server_types_mutation_response | null) - /** update single row of the table: "e_server_types" */ - update_e_server_types_by_pk: (e_server_types | null) - /** update multiples rows of table: "e_server_types" */ - update_e_server_types_many: ((e_server_types_mutation_response | null)[] | null) - /** update data of the table: "e_sides" */ - update_e_sides: (e_sides_mutation_response | null) - /** update single row of the table: "e_sides" */ - update_e_sides_by_pk: (e_sides | null) - /** update multiples rows of table: "e_sides" */ - update_e_sides_many: ((e_sides_mutation_response | null)[] | null) - /** update data of the table: "e_system_alert_types" */ - update_e_system_alert_types: (e_system_alert_types_mutation_response | null) - /** update single row of the table: "e_system_alert_types" */ - update_e_system_alert_types_by_pk: (e_system_alert_types | null) - /** update multiples rows of table: "e_system_alert_types" */ - update_e_system_alert_types_many: ((e_system_alert_types_mutation_response | null)[] | null) - /** update data of the table: "e_team_roles" */ - update_e_team_roles: (e_team_roles_mutation_response | null) - /** update single row of the table: "e_team_roles" */ - update_e_team_roles_by_pk: (e_team_roles | null) - /** update multiples rows of table: "e_team_roles" */ - update_e_team_roles_many: ((e_team_roles_mutation_response | null)[] | null) - /** update data of the table: "e_team_roster_statuses" */ - update_e_team_roster_statuses: (e_team_roster_statuses_mutation_response | null) - /** update single row of the table: "e_team_roster_statuses" */ - update_e_team_roster_statuses_by_pk: (e_team_roster_statuses | null) - /** update multiples rows of table: "e_team_roster_statuses" */ - update_e_team_roster_statuses_many: ((e_team_roster_statuses_mutation_response | null)[] | null) - /** update data of the table: "e_timeout_settings" */ - update_e_timeout_settings: (e_timeout_settings_mutation_response | null) - /** update single row of the table: "e_timeout_settings" */ - update_e_timeout_settings_by_pk: (e_timeout_settings | null) - /** update multiples rows of table: "e_timeout_settings" */ - update_e_timeout_settings_many: ((e_timeout_settings_mutation_response | null)[] | null) - /** update data of the table: "e_tournament_categories" */ - update_e_tournament_categories: (e_tournament_categories_mutation_response | null) - /** update single row of the table: "e_tournament_categories" */ - update_e_tournament_categories_by_pk: (e_tournament_categories | null) - /** update multiples rows of table: "e_tournament_categories" */ - update_e_tournament_categories_many: ((e_tournament_categories_mutation_response | null)[] | null) - /** update data of the table: "e_tournament_free_agent_statuses" */ - update_e_tournament_free_agent_statuses: (e_tournament_free_agent_statuses_mutation_response | null) - /** update single row of the table: "e_tournament_free_agent_statuses" */ - update_e_tournament_free_agent_statuses_by_pk: (e_tournament_free_agent_statuses | null) - /** update multiples rows of table: "e_tournament_free_agent_statuses" */ - update_e_tournament_free_agent_statuses_many: ((e_tournament_free_agent_statuses_mutation_response | null)[] | null) - /** update data of the table: "e_tournament_registration_types" */ - update_e_tournament_registration_types: (e_tournament_registration_types_mutation_response | null) - /** update single row of the table: "e_tournament_registration_types" */ - update_e_tournament_registration_types_by_pk: (e_tournament_registration_types | null) - /** update multiples rows of table: "e_tournament_registration_types" */ - update_e_tournament_registration_types_many: ((e_tournament_registration_types_mutation_response | null)[] | null) - /** update data of the table: "e_tournament_stage_types" */ - update_e_tournament_stage_types: (e_tournament_stage_types_mutation_response | null) - /** update single row of the table: "e_tournament_stage_types" */ - update_e_tournament_stage_types_by_pk: (e_tournament_stage_types | null) - /** update multiples rows of table: "e_tournament_stage_types" */ - update_e_tournament_stage_types_many: ((e_tournament_stage_types_mutation_response | null)[] | null) - /** update data of the table: "e_tournament_status" */ - update_e_tournament_status: (e_tournament_status_mutation_response | null) - /** update single row of the table: "e_tournament_status" */ - update_e_tournament_status_by_pk: (e_tournament_status | null) - /** update multiples rows of table: "e_tournament_status" */ - update_e_tournament_status_many: ((e_tournament_status_mutation_response | null)[] | null) - /** update data of the table: "e_utility_practice_access" */ - update_e_utility_practice_access: (e_utility_practice_access_mutation_response | null) - /** update single row of the table: "e_utility_practice_access" */ - update_e_utility_practice_access_by_pk: (e_utility_practice_access | null) - /** update multiples rows of table: "e_utility_practice_access" */ - update_e_utility_practice_access_many: ((e_utility_practice_access_mutation_response | null)[] | null) - /** update data of the table: "e_utility_practice_statuses" */ - update_e_utility_practice_statuses: (e_utility_practice_statuses_mutation_response | null) - /** update single row of the table: "e_utility_practice_statuses" */ - update_e_utility_practice_statuses_by_pk: (e_utility_practice_statuses | null) - /** update multiples rows of table: "e_utility_practice_statuses" */ - update_e_utility_practice_statuses_many: ((e_utility_practice_statuses_mutation_response | null)[] | null) - /** update data of the table: "e_utility_sources" */ - update_e_utility_sources: (e_utility_sources_mutation_response | null) - /** update single row of the table: "e_utility_sources" */ - update_e_utility_sources_by_pk: (e_utility_sources | null) - /** update multiples rows of table: "e_utility_sources" */ - update_e_utility_sources_many: ((e_utility_sources_mutation_response | null)[] | null) - /** update data of the table: "e_utility_techniques" */ - update_e_utility_techniques: (e_utility_techniques_mutation_response | null) - /** update single row of the table: "e_utility_techniques" */ - update_e_utility_techniques_by_pk: (e_utility_techniques | null) - /** update multiples rows of table: "e_utility_techniques" */ - update_e_utility_techniques_many: ((e_utility_techniques_mutation_response | null)[] | null) - /** update data of the table: "e_utility_throw_strengths" */ - update_e_utility_throw_strengths: (e_utility_throw_strengths_mutation_response | null) - /** update single row of the table: "e_utility_throw_strengths" */ - update_e_utility_throw_strengths_by_pk: (e_utility_throw_strengths | null) - /** update multiples rows of table: "e_utility_throw_strengths" */ - update_e_utility_throw_strengths_many: ((e_utility_throw_strengths_mutation_response | null)[] | null) - /** update data of the table: "e_utility_types" */ - update_e_utility_types: (e_utility_types_mutation_response | null) - /** update single row of the table: "e_utility_types" */ - update_e_utility_types_by_pk: (e_utility_types | null) - /** update multiples rows of table: "e_utility_types" */ - update_e_utility_types_many: ((e_utility_types_mutation_response | null)[] | null) - /** update data of the table: "e_utility_visibility" */ - update_e_utility_visibility: (e_utility_visibility_mutation_response | null) - /** update single row of the table: "e_utility_visibility" */ - update_e_utility_visibility_by_pk: (e_utility_visibility | null) - /** update multiples rows of table: "e_utility_visibility" */ - update_e_utility_visibility_many: ((e_utility_visibility_mutation_response | null)[] | null) - /** update data of the table: "e_veto_pick_types" */ - update_e_veto_pick_types: (e_veto_pick_types_mutation_response | null) - /** update single row of the table: "e_veto_pick_types" */ - update_e_veto_pick_types_by_pk: (e_veto_pick_types | null) - /** update multiples rows of table: "e_veto_pick_types" */ - update_e_veto_pick_types_many: ((e_veto_pick_types_mutation_response | null)[] | null) - /** update data of the table: "e_winning_reasons" */ - update_e_winning_reasons: (e_winning_reasons_mutation_response | null) - /** update single row of the table: "e_winning_reasons" */ - update_e_winning_reasons_by_pk: (e_winning_reasons | null) - /** update multiples rows of table: "e_winning_reasons" */ - update_e_winning_reasons_many: ((e_winning_reasons_mutation_response | null)[] | null) - /** update data of the table: "event_match_links" */ - update_event_match_links: (event_match_links_mutation_response | null) - /** update single row of the table: "event_match_links" */ - update_event_match_links_by_pk: (event_match_links | null) - /** update multiples rows of table: "event_match_links" */ - update_event_match_links_many: ((event_match_links_mutation_response | null)[] | null) - /** update data of the table: "event_media" */ - update_event_media: (event_media_mutation_response | null) - /** update single row of the table: "event_media" */ - update_event_media_by_pk: (event_media | null) - /** update multiples rows of table: "event_media" */ - update_event_media_many: ((event_media_mutation_response | null)[] | null) - /** update data of the table: "event_media_players" */ - update_event_media_players: (event_media_players_mutation_response | null) - /** update single row of the table: "event_media_players" */ - update_event_media_players_by_pk: (event_media_players | null) - /** update multiples rows of table: "event_media_players" */ - update_event_media_players_many: ((event_media_players_mutation_response | null)[] | null) - /** update data of the table: "event_organizers" */ - update_event_organizers: (event_organizers_mutation_response | null) - /** update single row of the table: "event_organizers" */ - update_event_organizers_by_pk: (event_organizers | null) - /** update multiples rows of table: "event_organizers" */ - update_event_organizers_many: ((event_organizers_mutation_response | null)[] | null) - /** update data of the table: "event_players" */ - update_event_players: (event_players_mutation_response | null) - /** update single row of the table: "event_players" */ - update_event_players_by_pk: (event_players | null) - /** update multiples rows of table: "event_players" */ - update_event_players_many: ((event_players_mutation_response | null)[] | null) - /** update data of the table: "event_teams" */ - update_event_teams: (event_teams_mutation_response | null) - /** update single row of the table: "event_teams" */ - update_event_teams_by_pk: (event_teams | null) - /** update multiples rows of table: "event_teams" */ - update_event_teams_many: ((event_teams_mutation_response | null)[] | null) - /** update data of the table: "event_tournaments" */ - update_event_tournaments: (event_tournaments_mutation_response | null) - /** update single row of the table: "event_tournaments" */ - update_event_tournaments_by_pk: (event_tournaments | null) - /** update multiples rows of table: "event_tournaments" */ - update_event_tournaments_many: ((event_tournaments_mutation_response | null)[] | null) - /** update data of the table: "events" */ - update_events: (events_mutation_response | null) - /** update single row of the table: "events" */ - update_events_by_pk: (events | null) - /** update multiples rows of table: "events" */ - update_events_many: ((events_mutation_response | null)[] | null) - /** update data of the table: "friends" */ - update_friends: (friends_mutation_response | null) - /** update single row of the table: "friends" */ - 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" */ - update_game_server_nodes_by_pk: (game_server_nodes | null) - /** update multiples rows of table: "game_server_nodes" */ - update_game_server_nodes_many: ((game_server_nodes_mutation_response | null)[] | null) - /** update data of the table: "game_versions" */ - update_game_versions: (game_versions_mutation_response | null) - /** update single row of the table: "game_versions" */ - update_game_versions_by_pk: (game_versions | null) - /** update multiples rows of table: "game_versions" */ - update_game_versions_many: ((game_versions_mutation_response | null)[] | null) - /** update data of the table: "gamedata_signature_validations" */ - update_gamedata_signature_validations: (gamedata_signature_validations_mutation_response | null) - /** update single row of the table: "gamedata_signature_validations" */ - update_gamedata_signature_validations_by_pk: (gamedata_signature_validations | null) - /** update multiples rows of table: "gamedata_signature_validations" */ - update_gamedata_signature_validations_many: ((gamedata_signature_validations_mutation_response | null)[] | null) - /** update data of the table: "leaderboard_entries" */ - update_leaderboard_entries: (leaderboard_entries_mutation_response | null) - /** update multiples rows of table: "leaderboard_entries" */ - update_leaderboard_entries_many: ((leaderboard_entries_mutation_response | null)[] | null) - /** update data of the table: "league_divisions" */ - update_league_divisions: (league_divisions_mutation_response | null) - /** update single row of the table: "league_divisions" */ - update_league_divisions_by_pk: (league_divisions | null) - /** update multiples rows of table: "league_divisions" */ - update_league_divisions_many: ((league_divisions_mutation_response | null)[] | null) - /** update data of the table: "league_match_weeks" */ - update_league_match_weeks: (league_match_weeks_mutation_response | null) - /** update single row of the table: "league_match_weeks" */ - update_league_match_weeks_by_pk: (league_match_weeks | null) - /** update multiples rows of table: "league_match_weeks" */ - update_league_match_weeks_many: ((league_match_weeks_mutation_response | null)[] | null) - /** update data of the table: "league_relegation_playoffs" */ - update_league_relegation_playoffs: (league_relegation_playoffs_mutation_response | null) - /** update single row of the table: "league_relegation_playoffs" */ - update_league_relegation_playoffs_by_pk: (league_relegation_playoffs | null) - /** update multiples rows of table: "league_relegation_playoffs" */ - update_league_relegation_playoffs_many: ((league_relegation_playoffs_mutation_response | null)[] | null) - /** update data of the table: "league_scheduling_proposals" */ - update_league_scheduling_proposals: (league_scheduling_proposals_mutation_response | null) - /** update single row of the table: "league_scheduling_proposals" */ - update_league_scheduling_proposals_by_pk: (league_scheduling_proposals | null) - /** update multiples rows of table: "league_scheduling_proposals" */ - update_league_scheduling_proposals_many: ((league_scheduling_proposals_mutation_response | null)[] | null) - /** update data of the table: "league_season_divisions" */ - update_league_season_divisions: (league_season_divisions_mutation_response | null) - /** update single row of the table: "league_season_divisions" */ - update_league_season_divisions_by_pk: (league_season_divisions | null) - /** update multiples rows of table: "league_season_divisions" */ - update_league_season_divisions_many: ((league_season_divisions_mutation_response | null)[] | null) - /** update data of the table: "league_seasons" */ - update_league_seasons: (league_seasons_mutation_response | null) - /** update single row of the table: "league_seasons" */ - update_league_seasons_by_pk: (league_seasons | null) - /** update multiples rows of table: "league_seasons" */ - update_league_seasons_many: ((league_seasons_mutation_response | null)[] | null) - /** update data of the table: "league_team_movements" */ - update_league_team_movements: (league_team_movements_mutation_response | null) - /** update single row of the table: "league_team_movements" */ - update_league_team_movements_by_pk: (league_team_movements | null) - /** update multiples rows of table: "league_team_movements" */ - update_league_team_movements_many: ((league_team_movements_mutation_response | null)[] | null) - /** update data of the table: "league_team_rosters" */ - update_league_team_rosters: (league_team_rosters_mutation_response | null) - /** update single row of the table: "league_team_rosters" */ - update_league_team_rosters_by_pk: (league_team_rosters | null) - /** update multiples rows of table: "league_team_rosters" */ - update_league_team_rosters_many: ((league_team_rosters_mutation_response | null)[] | null) - /** update data of the table: "league_team_seasons" */ - update_league_team_seasons: (league_team_seasons_mutation_response | null) - /** update single row of the table: "league_team_seasons" */ - update_league_team_seasons_by_pk: (league_team_seasons | null) - /** update multiples rows of table: "league_team_seasons" */ - update_league_team_seasons_many: ((league_team_seasons_mutation_response | null)[] | null) - /** update data of the table: "league_teams" */ - update_league_teams: (league_teams_mutation_response | null) - /** update single row of the table: "league_teams" */ - update_league_teams_by_pk: (league_teams | null) - /** update multiples rows of table: "league_teams" */ - update_league_teams_many: ((league_teams_mutation_response | null)[] | null) - /** update data of the table: "lobbies" */ - update_lobbies: (lobbies_mutation_response | null) - /** update single row of the table: "lobbies" */ - update_lobbies_by_pk: (lobbies | null) - /** update multiples rows of table: "lobbies" */ - update_lobbies_many: ((lobbies_mutation_response | null)[] | null) - /** update data of the table: "lobby_players" */ - update_lobby_players: (lobby_players_mutation_response | null) - /** update single row of the table: "lobby_players" */ - update_lobby_players_by_pk: (lobby_players | null) - /** update multiples rows of table: "lobby_players" */ - update_lobby_players_many: ((lobby_players_mutation_response | null)[] | null) - /** update data of the table: "map_callouts" */ - update_map_callouts: (map_callouts_mutation_response | null) - /** update single row of the table: "map_callouts" */ - update_map_callouts_by_pk: (map_callouts | null) - /** update multiples rows of table: "map_callouts" */ - update_map_callouts_many: ((map_callouts_mutation_response | null)[] | null) - /** update data of the table: "map_pools" */ - update_map_pools: (map_pools_mutation_response | null) - /** update single row of the table: "map_pools" */ - update_map_pools_by_pk: (map_pools | null) - /** update multiples rows of table: "map_pools" */ - update_map_pools_many: ((map_pools_mutation_response | null)[] | null) - /** update data of the table: "maps" */ - update_maps: (maps_mutation_response | null) - /** update single row of the table: "maps" */ - update_maps_by_pk: (maps | null) - /** update multiples rows of table: "maps" */ - update_maps_many: ((maps_mutation_response | null)[] | null) - /** update data of the table: "match_clips" */ - update_match_clips: (match_clips_mutation_response | null) - /** update single row of the table: "match_clips" */ - update_match_clips_by_pk: (match_clips | null) - /** update multiples rows of table: "match_clips" */ - update_match_clips_many: ((match_clips_mutation_response | null)[] | null) - /** update data of the table: "match_demo_sessions" */ - update_match_demo_sessions: (match_demo_sessions_mutation_response | null) - /** update single row of the table: "match_demo_sessions" */ - update_match_demo_sessions_by_pk: (match_demo_sessions | null) - /** update multiples rows of table: "match_demo_sessions" */ - update_match_demo_sessions_many: ((match_demo_sessions_mutation_response | null)[] | null) - /** update data of the table: "match_lineup_players" */ - update_match_lineup_players: (match_lineup_players_mutation_response | null) - /** update single row of the table: "match_lineup_players" */ - update_match_lineup_players_by_pk: (match_lineup_players | null) - /** update multiples rows of table: "match_lineup_players" */ - update_match_lineup_players_many: ((match_lineup_players_mutation_response | null)[] | null) - /** update data of the table: "match_lineups" */ - update_match_lineups: (match_lineups_mutation_response | null) - /** update single row of the table: "match_lineups" */ - update_match_lineups_by_pk: (match_lineups | null) - /** update multiples rows of table: "match_lineups" */ - update_match_lineups_many: ((match_lineups_mutation_response | null)[] | null) - /** update data of the table: "match_map_demos" */ - update_match_map_demos: (match_map_demos_mutation_response | null) - /** update single row of the table: "match_map_demos" */ - update_match_map_demos_by_pk: (match_map_demos | null) - /** update multiples rows of table: "match_map_demos" */ - update_match_map_demos_many: ((match_map_demos_mutation_response | null)[] | null) - /** update data of the table: "match_map_rounds" */ - update_match_map_rounds: (match_map_rounds_mutation_response | null) - /** update single row of the table: "match_map_rounds" */ - update_match_map_rounds_by_pk: (match_map_rounds | null) - /** update multiples rows of table: "match_map_rounds" */ - update_match_map_rounds_many: ((match_map_rounds_mutation_response | null)[] | null) - /** update data of the table: "match_map_veto_picks" */ - update_match_map_veto_picks: (match_map_veto_picks_mutation_response | null) - /** update single row of the table: "match_map_veto_picks" */ - update_match_map_veto_picks_by_pk: (match_map_veto_picks | null) - /** update multiples rows of table: "match_map_veto_picks" */ - update_match_map_veto_picks_many: ((match_map_veto_picks_mutation_response | null)[] | null) - /** update data of the table: "match_maps" */ - update_match_maps: (match_maps_mutation_response | null) - /** update single row of the table: "match_maps" */ - update_match_maps_by_pk: (match_maps | null) - /** update multiples rows of table: "match_maps" */ - update_match_maps_many: ((match_maps_mutation_response | null)[] | null) - /** update data of the table: "match_options" */ - update_match_options: (match_options_mutation_response | null) - /** update single row of the table: "match_options" */ - update_match_options_by_pk: (match_options | null) - /** update multiples rows of table: "match_options" */ - update_match_options_many: ((match_options_mutation_response | null)[] | null) - /** update data of the table: "match_region_veto_picks" */ - update_match_region_veto_picks: (match_region_veto_picks_mutation_response | null) - /** update single row of the table: "match_region_veto_picks" */ - update_match_region_veto_picks_by_pk: (match_region_veto_picks | null) - /** update multiples rows of table: "match_region_veto_picks" */ - update_match_region_veto_picks_many: ((match_region_veto_picks_mutation_response | null)[] | null) - /** update data of the table: "match_streams" */ - update_match_streams: (match_streams_mutation_response | null) - /** update single row of the table: "match_streams" */ - update_match_streams_by_pk: (match_streams | null) - /** update multiples rows of table: "match_streams" */ - update_match_streams_many: ((match_streams_mutation_response | null)[] | null) - /** update data of the table: "match_type_cfgs" */ - update_match_type_cfgs: (match_type_cfgs_mutation_response | null) - /** update single row of the table: "match_type_cfgs" */ - update_match_type_cfgs_by_pk: (match_type_cfgs | null) - /** update multiples rows of table: "match_type_cfgs" */ - update_match_type_cfgs_many: ((match_type_cfgs_mutation_response | null)[] | null) - /** update data of the table: "matches" */ - update_matches: (matches_mutation_response | null) - /** update single row of the table: "matches" */ - update_matches_by_pk: (matches | null) - /** update multiples rows of table: "matches" */ - update_matches_many: ((matches_mutation_response | null)[] | null) - /** update data of the table: "migration_hashes.hashes" */ - update_migration_hashes_hashes: (migration_hashes_hashes_mutation_response | null) - /** update single row of the table: "migration_hashes.hashes" */ - update_migration_hashes_hashes_by_pk: (migration_hashes_hashes | null) - /** update multiples rows of table: "migration_hashes.hashes" */ - update_migration_hashes_hashes_many: ((migration_hashes_hashes_mutation_response | null)[] | null) - /** update data of the table: "v_my_friends" */ - update_my_friends: (my_friends_mutation_response | null) - /** update multiples rows of table: "v_my_friends" */ - update_my_friends_many: ((my_friends_mutation_response | null)[] | null) - /** update data of the table: "news_articles" */ - update_news_articles: (news_articles_mutation_response | null) - /** update single row of the table: "news_articles" */ - update_news_articles_by_pk: (news_articles | null) - /** update multiples rows of table: "news_articles" */ - update_news_articles_many: ((news_articles_mutation_response | null)[] | null) - /** update data of the table: "notification_preferences" */ - update_notification_preferences: (notification_preferences_mutation_response | null) - /** update single row of the table: "notification_preferences" */ - update_notification_preferences_by_pk: (notification_preferences | null) - /** update multiples rows of table: "notification_preferences" */ - update_notification_preferences_many: ((notification_preferences_mutation_response | null)[] | null) - /** update data of the table: "notifications" */ - update_notifications: (notifications_mutation_response | null) - /** update single row of the table: "notifications" */ - update_notifications_by_pk: (notifications | null) - /** update multiples rows of table: "notifications" */ - update_notifications_many: ((notifications_mutation_response | null)[] | null) - /** update data of the table: "pending_match_import_players" */ - update_pending_match_import_players: (pending_match_import_players_mutation_response | null) - /** update single row of the table: "pending_match_import_players" */ - update_pending_match_import_players_by_pk: (pending_match_import_players | null) - /** update multiples rows of table: "pending_match_import_players" */ - update_pending_match_import_players_many: ((pending_match_import_players_mutation_response | null)[] | null) - /** update data of the table: "pending_match_imports" */ - update_pending_match_imports: (pending_match_imports_mutation_response | null) - /** update single row of the table: "pending_match_imports" */ - update_pending_match_imports_by_pk: (pending_match_imports | null) - /** update multiples rows of table: "pending_match_imports" */ - update_pending_match_imports_many: ((pending_match_imports_mutation_response | null)[] | null) - /** update data of the table: "player_aim_stats_demo" */ - update_player_aim_stats_demo: (player_aim_stats_demo_mutation_response | null) - /** update single row of the table: "player_aim_stats_demo" */ - update_player_aim_stats_demo_by_pk: (player_aim_stats_demo | null) - /** update multiples rows of table: "player_aim_stats_demo" */ - update_player_aim_stats_demo_many: ((player_aim_stats_demo_mutation_response | null)[] | null) - /** update data of the table: "player_aim_weapon_stats" */ - update_player_aim_weapon_stats: (player_aim_weapon_stats_mutation_response | null) - /** update single row of the table: "player_aim_weapon_stats" */ - update_player_aim_weapon_stats_by_pk: (player_aim_weapon_stats | null) - /** update multiples rows of table: "player_aim_weapon_stats" */ - update_player_aim_weapon_stats_many: ((player_aim_weapon_stats_mutation_response | null)[] | null) - /** update data of the table: "player_assists" */ - update_player_assists: (player_assists_mutation_response | null) - /** update single row of the table: "player_assists" */ - update_player_assists_by_pk: (player_assists | null) - /** update multiples rows of table: "player_assists" */ - update_player_assists_many: ((player_assists_mutation_response | null)[] | null) - /** update data of the table: "player_damages" */ - update_player_damages: (player_damages_mutation_response | null) - /** update single row of the table: "player_damages" */ - update_player_damages_by_pk: (player_damages | null) - /** update multiples rows of table: "player_damages" */ - update_player_damages_many: ((player_damages_mutation_response | null)[] | null) - /** update data of the table: "player_elo" */ - update_player_elo: (player_elo_mutation_response | null) - /** update single row of the table: "player_elo" */ - update_player_elo_by_pk: (player_elo | null) - /** update multiples rows of table: "player_elo" */ - update_player_elo_many: ((player_elo_mutation_response | null)[] | null) - /** update data of the table: "player_faceit_rank_history" */ - update_player_faceit_rank_history: (player_faceit_rank_history_mutation_response | null) - /** update single row of the table: "player_faceit_rank_history" */ - update_player_faceit_rank_history_by_pk: (player_faceit_rank_history | null) - /** update multiples rows of table: "player_faceit_rank_history" */ - update_player_faceit_rank_history_many: ((player_faceit_rank_history_mutation_response | null)[] | null) - /** update data of the table: "player_flashes" */ - update_player_flashes: (player_flashes_mutation_response | null) - /** update single row of the table: "player_flashes" */ - update_player_flashes_by_pk: (player_flashes | null) - /** update multiples rows of table: "player_flashes" */ - update_player_flashes_many: ((player_flashes_mutation_response | null)[] | null) - /** update data of the table: "player_kills" */ - update_player_kills: (player_kills_mutation_response | null) - /** update single row of the table: "player_kills" */ - update_player_kills_by_pk: (player_kills | null) - /** update data of the table: "player_kills_by_weapon" */ - update_player_kills_by_weapon: (player_kills_by_weapon_mutation_response | null) - /** update single row of the table: "player_kills_by_weapon" */ - update_player_kills_by_weapon_by_pk: (player_kills_by_weapon | null) - /** update multiples rows of table: "player_kills_by_weapon" */ - update_player_kills_by_weapon_many: ((player_kills_by_weapon_mutation_response | null)[] | null) - /** update multiples rows of table: "player_kills" */ - update_player_kills_many: ((player_kills_mutation_response | null)[] | null) - /** update data of the table: "player_leaderboard_rank" */ - update_player_leaderboard_rank: (player_leaderboard_rank_mutation_response | null) - /** update multiples rows of table: "player_leaderboard_rank" */ - update_player_leaderboard_rank_many: ((player_leaderboard_rank_mutation_response | null)[] | null) - /** update data of the table: "player_match_map_stats" */ - update_player_match_map_stats: (player_match_map_stats_mutation_response | null) - /** update single row of the table: "player_match_map_stats" */ - update_player_match_map_stats_by_pk: (player_match_map_stats | null) - /** update multiples rows of table: "player_match_map_stats" */ - update_player_match_map_stats_many: ((player_match_map_stats_mutation_response | null)[] | null) - /** update data of the table: "player_objectives" */ - update_player_objectives: (player_objectives_mutation_response | null) - /** update single row of the table: "player_objectives" */ - update_player_objectives_by_pk: (player_objectives | null) - /** update multiples rows of table: "player_objectives" */ - update_player_objectives_many: ((player_objectives_mutation_response | null)[] | null) - /** update data of the table: "player_premier_rank_history" */ - update_player_premier_rank_history: (player_premier_rank_history_mutation_response | null) - /** update single row of the table: "player_premier_rank_history" */ - update_player_premier_rank_history_by_pk: (player_premier_rank_history | null) - /** update multiples rows of table: "player_premier_rank_history" */ - update_player_premier_rank_history_many: ((player_premier_rank_history_mutation_response | null)[] | null) - /** update data of the table: "player_sanctions" */ - update_player_sanctions: (player_sanctions_mutation_response | null) - /** update single row of the table: "player_sanctions" */ - update_player_sanctions_by_pk: (player_sanctions | null) - /** update multiples rows of table: "player_sanctions" */ - update_player_sanctions_many: ((player_sanctions_mutation_response | null)[] | null) - /** update data of the table: "player_season_stats" */ - update_player_season_stats: (player_season_stats_mutation_response | null) - /** update single row of the table: "player_season_stats" */ - update_player_season_stats_by_pk: (player_season_stats | null) - /** update multiples rows of table: "player_season_stats" */ - update_player_season_stats_many: ((player_season_stats_mutation_response | null)[] | null) - /** update data of the table: "player_stats" */ - update_player_stats: (player_stats_mutation_response | null) - /** update single row of the table: "player_stats" */ - update_player_stats_by_pk: (player_stats | null) - /** update multiples rows of table: "player_stats" */ - update_player_stats_many: ((player_stats_mutation_response | null)[] | null) - /** update data of the table: "player_steam_bot_friend" */ - update_player_steam_bot_friend: (player_steam_bot_friend_mutation_response | null) - /** update single row of the table: "player_steam_bot_friend" */ - update_player_steam_bot_friend_by_pk: (player_steam_bot_friend | null) - /** update multiples rows of table: "player_steam_bot_friend" */ - update_player_steam_bot_friend_many: ((player_steam_bot_friend_mutation_response | null)[] | null) - /** update data of the table: "player_steam_match_auth" */ - update_player_steam_match_auth: (player_steam_match_auth_mutation_response | null) - /** update single row of the table: "player_steam_match_auth" */ - update_player_steam_match_auth_by_pk: (player_steam_match_auth | null) - /** update multiples rows of table: "player_steam_match_auth" */ - update_player_steam_match_auth_many: ((player_steam_match_auth_mutation_response | null)[] | null) - /** update data of the table: "player_unused_utility" */ - update_player_unused_utility: (player_unused_utility_mutation_response | null) - /** update single row of the table: "player_unused_utility" */ - update_player_unused_utility_by_pk: (player_unused_utility | null) - /** update multiples rows of table: "player_unused_utility" */ - update_player_unused_utility_many: ((player_unused_utility_mutation_response | null)[] | null) - /** update data of the table: "player_utility" */ - update_player_utility: (player_utility_mutation_response | null) - /** update single row of the table: "player_utility" */ - update_player_utility_by_pk: (player_utility | null) - /** update multiples rows of table: "player_utility" */ - update_player_utility_many: ((player_utility_mutation_response | null)[] | null) - /** update data of the table: "players" */ - update_players: (players_mutation_response | null) - /** update single row of the table: "players" */ - update_players_by_pk: (players | null) - /** update multiples rows of table: "players" */ - update_players_many: ((players_mutation_response | null)[] | null) - /** update data of the table: "plugin_versions" */ - update_plugin_versions: (plugin_versions_mutation_response | null) - /** update single row of the table: "plugin_versions" */ - update_plugin_versions_by_pk: (plugin_versions | null) - /** update multiples rows of table: "plugin_versions" */ - update_plugin_versions_many: ((plugin_versions_mutation_response | null)[] | null) - /** update data of the table: "push_subscriptions" */ - update_push_subscriptions: (push_subscriptions_mutation_response | null) - /** update single row of the table: "push_subscriptions" */ - update_push_subscriptions_by_pk: (push_subscriptions | null) - /** update multiples rows of table: "push_subscriptions" */ - update_push_subscriptions_many: ((push_subscriptions_mutation_response | null)[] | null) - /** update data of the table: "v_role_permissions" */ - update_role_permissions: (role_permissions_mutation_response | null) - /** update multiples rows of table: "v_role_permissions" */ - update_role_permissions_many: ((role_permissions_mutation_response | null)[] | null) - /** update data of the table: "seasons" */ - update_seasons: (seasons_mutation_response | null) - /** update single row of the table: "seasons" */ - update_seasons_by_pk: (seasons | null) - /** update multiples rows of table: "seasons" */ - update_seasons_many: ((seasons_mutation_response | null)[] | null) - /** update data of the table: "server_regions" */ - update_server_regions: (server_regions_mutation_response | null) - /** update single row of the table: "server_regions" */ - update_server_regions_by_pk: (server_regions | null) - /** update multiples rows of table: "server_regions" */ - update_server_regions_many: ((server_regions_mutation_response | null)[] | null) - /** update data of the table: "servers" */ - update_servers: (servers_mutation_response | null) - /** update single row of the table: "servers" */ - update_servers_by_pk: (servers | null) - /** update multiples rows of table: "servers" */ - update_servers_many: ((servers_mutation_response | null)[] | null) - /** update data of the table: "settings" */ - update_settings: (settings_mutation_response | null) - /** update single row of the table: "settings" */ - update_settings_by_pk: (settings | null) - /** update multiples rows of table: "settings" */ - update_settings_many: ((settings_mutation_response | null)[] | null) - /** update data of the table: "steam_account_claims" */ - update_steam_account_claims: (steam_account_claims_mutation_response | null) - /** update single row of the table: "steam_account_claims" */ - update_steam_account_claims_by_pk: (steam_account_claims | null) - /** update multiples rows of table: "steam_account_claims" */ - update_steam_account_claims_many: ((steam_account_claims_mutation_response | null)[] | null) - /** update data of the table: "steam_accounts" */ - update_steam_accounts: (steam_accounts_mutation_response | null) - /** update single row of the table: "steam_accounts" */ - update_steam_accounts_by_pk: (steam_accounts | null) - /** update multiples rows of table: "steam_accounts" */ - update_steam_accounts_many: ((steam_accounts_mutation_response | null)[] | null) - /** update data of the table: "system_alerts" */ - update_system_alerts: (system_alerts_mutation_response | null) - /** update single row of the table: "system_alerts" */ - update_system_alerts_by_pk: (system_alerts | null) - /** update multiples rows of table: "system_alerts" */ - update_system_alerts_many: ((system_alerts_mutation_response | null)[] | null) - /** update data of the table: "team_invites" */ - update_team_invites: (team_invites_mutation_response | null) - /** update single row of the table: "team_invites" */ - update_team_invites_by_pk: (team_invites | null) - /** update multiples rows of table: "team_invites" */ - update_team_invites_many: ((team_invites_mutation_response | null)[] | null) - /** update data of the table: "team_roster" */ - update_team_roster: (team_roster_mutation_response | null) - /** update single row of the table: "team_roster" */ - update_team_roster_by_pk: (team_roster | null) - /** update multiples rows of table: "team_roster" */ - update_team_roster_many: ((team_roster_mutation_response | null)[] | null) - /** update data of the table: "team_scrim_alerts" */ - update_team_scrim_alerts: (team_scrim_alerts_mutation_response | null) - /** update single row of the table: "team_scrim_alerts" */ - update_team_scrim_alerts_by_pk: (team_scrim_alerts | null) - /** update multiples rows of table: "team_scrim_alerts" */ - update_team_scrim_alerts_many: ((team_scrim_alerts_mutation_response | null)[] | null) - /** update data of the table: "team_scrim_availability" */ - update_team_scrim_availability: (team_scrim_availability_mutation_response | null) - /** update single row of the table: "team_scrim_availability" */ - update_team_scrim_availability_by_pk: (team_scrim_availability | null) - /** update multiples rows of table: "team_scrim_availability" */ - update_team_scrim_availability_many: ((team_scrim_availability_mutation_response | null)[] | null) - /** update data of the table: "team_scrim_request_proposals" */ - update_team_scrim_request_proposals: (team_scrim_request_proposals_mutation_response | null) - /** update single row of the table: "team_scrim_request_proposals" */ - update_team_scrim_request_proposals_by_pk: (team_scrim_request_proposals | null) - /** update multiples rows of table: "team_scrim_request_proposals" */ - update_team_scrim_request_proposals_many: ((team_scrim_request_proposals_mutation_response | null)[] | null) - /** update data of the table: "team_scrim_requests" */ - update_team_scrim_requests: (team_scrim_requests_mutation_response | null) - /** update single row of the table: "team_scrim_requests" */ - update_team_scrim_requests_by_pk: (team_scrim_requests | null) - /** update multiples rows of table: "team_scrim_requests" */ - update_team_scrim_requests_many: ((team_scrim_requests_mutation_response | null)[] | null) - /** update data of the table: "team_scrim_settings" */ - update_team_scrim_settings: (team_scrim_settings_mutation_response | null) - /** update single row of the table: "team_scrim_settings" */ - update_team_scrim_settings_by_pk: (team_scrim_settings | null) - /** update multiples rows of table: "team_scrim_settings" */ - update_team_scrim_settings_many: ((team_scrim_settings_mutation_response | null)[] | null) - /** update data of the table: "team_suggestions" */ - update_team_suggestions: (team_suggestions_mutation_response | null) - /** update single row of the table: "team_suggestions" */ - update_team_suggestions_by_pk: (team_suggestions | null) - /** update multiples rows of table: "team_suggestions" */ - update_team_suggestions_many: ((team_suggestions_mutation_response | null)[] | null) - /** update data of the table: "teams" */ - update_teams: (teams_mutation_response | null) - /** update single row of the table: "teams" */ - update_teams_by_pk: (teams | null) - /** update multiples rows of table: "teams" */ - update_teams_many: ((teams_mutation_response | null)[] | null) - /** update data of the table: "tournament_awards" */ - update_tournament_awards: (tournament_awards_mutation_response | null) - /** update single row of the table: "tournament_awards" */ - update_tournament_awards_by_pk: (tournament_awards | null) - /** update multiples rows of table: "tournament_awards" */ - update_tournament_awards_many: ((tournament_awards_mutation_response | null)[] | null) - /** update data of the table: "tournament_brackets" */ - update_tournament_brackets: (tournament_brackets_mutation_response | null) - /** update single row of the table: "tournament_brackets" */ - update_tournament_brackets_by_pk: (tournament_brackets | null) - /** update multiples rows of table: "tournament_brackets" */ - update_tournament_brackets_many: ((tournament_brackets_mutation_response | null)[] | null) - /** update data of the table: "tournament_categories" */ - update_tournament_categories: (tournament_categories_mutation_response | null) - /** update single row of the table: "tournament_categories" */ - update_tournament_categories_by_pk: (tournament_categories | null) - /** update multiples rows of table: "tournament_categories" */ - update_tournament_categories_many: ((tournament_categories_mutation_response | null)[] | null) - /** update data of the table: "tournament_free_agents" */ - update_tournament_free_agents: (tournament_free_agents_mutation_response | null) - /** update single row of the table: "tournament_free_agents" */ - update_tournament_free_agents_by_pk: (tournament_free_agents | null) - /** update multiples rows of table: "tournament_free_agents" */ - update_tournament_free_agents_many: ((tournament_free_agents_mutation_response | null)[] | null) - /** update data of the table: "tournament_invite_code_uses" */ - update_tournament_invite_code_uses: (tournament_invite_code_uses_mutation_response | null) - /** update single row of the table: "tournament_invite_code_uses" */ - update_tournament_invite_code_uses_by_pk: (tournament_invite_code_uses | null) - /** update multiples rows of table: "tournament_invite_code_uses" */ - update_tournament_invite_code_uses_many: ((tournament_invite_code_uses_mutation_response | null)[] | null) - /** update data of the table: "tournament_invite_codes" */ - update_tournament_invite_codes: (tournament_invite_codes_mutation_response | null) - /** update single row of the table: "tournament_invite_codes" */ - update_tournament_invite_codes_by_pk: (tournament_invite_codes | null) - /** update multiples rows of table: "tournament_invite_codes" */ - update_tournament_invite_codes_many: ((tournament_invite_codes_mutation_response | null)[] | null) - /** update data of the table: "tournament_invites" */ - update_tournament_invites: (tournament_invites_mutation_response | null) - /** update single row of the table: "tournament_invites" */ - update_tournament_invites_by_pk: (tournament_invites | null) - /** update multiples rows of table: "tournament_invites" */ - update_tournament_invites_many: ((tournament_invites_mutation_response | null)[] | null) - /** update data of the table: "tournament_leaderboard_entries" */ - update_tournament_leaderboard_entries: (tournament_leaderboard_entries_mutation_response | null) - /** update multiples rows of table: "tournament_leaderboard_entries" */ - update_tournament_leaderboard_entries_many: ((tournament_leaderboard_entries_mutation_response | null)[] | null) - /** update data of the table: "tournament_no_shows" */ - update_tournament_no_shows: (tournament_no_shows_mutation_response | null) - /** update single row of the table: "tournament_no_shows" */ - update_tournament_no_shows_by_pk: (tournament_no_shows | null) - /** update multiples rows of table: "tournament_no_shows" */ - update_tournament_no_shows_many: ((tournament_no_shows_mutation_response | null)[] | null) - /** update data of the table: "tournament_organizer_teams" */ - update_tournament_organizer_teams: (tournament_organizer_teams_mutation_response | null) - /** update single row of the table: "tournament_organizer_teams" */ - update_tournament_organizer_teams_by_pk: (tournament_organizer_teams | null) - /** update multiples rows of table: "tournament_organizer_teams" */ - update_tournament_organizer_teams_many: ((tournament_organizer_teams_mutation_response | null)[] | null) - /** update data of the table: "tournament_organizers" */ - update_tournament_organizers: (tournament_organizers_mutation_response | null) - /** update single row of the table: "tournament_organizers" */ - update_tournament_organizers_by_pk: (tournament_organizers | null) - /** update multiples rows of table: "tournament_organizers" */ - update_tournament_organizers_many: ((tournament_organizers_mutation_response | null)[] | null) - /** update data of the table: "tournament_prizes" */ - update_tournament_prizes: (tournament_prizes_mutation_response | null) - /** update single row of the table: "tournament_prizes" */ - update_tournament_prizes_by_pk: (tournament_prizes | null) - /** update multiples rows of table: "tournament_prizes" */ - update_tournament_prizes_many: ((tournament_prizes_mutation_response | null)[] | null) - /** update data of the table: "tournament_registration_unlocks" */ - update_tournament_registration_unlocks: (tournament_registration_unlocks_mutation_response | null) - /** update multiples rows of table: "tournament_registration_unlocks" */ - update_tournament_registration_unlocks_many: ((tournament_registration_unlocks_mutation_response | null)[] | null) - /** update data of the table: "tournament_stage_windows" */ - update_tournament_stage_windows: (tournament_stage_windows_mutation_response | null) - /** update single row of the table: "tournament_stage_windows" */ - update_tournament_stage_windows_by_pk: (tournament_stage_windows | null) - /** update multiples rows of table: "tournament_stage_windows" */ - update_tournament_stage_windows_many: ((tournament_stage_windows_mutation_response | null)[] | null) - /** update data of the table: "tournament_stages" */ - update_tournament_stages: (tournament_stages_mutation_response | null) - /** update single row of the table: "tournament_stages" */ - update_tournament_stages_by_pk: (tournament_stages | null) - /** update multiples rows of table: "tournament_stages" */ - update_tournament_stages_many: ((tournament_stages_mutation_response | null)[] | null) - /** update data of the table: "tournament_team_invites" */ - update_tournament_team_invites: (tournament_team_invites_mutation_response | null) - /** update single row of the table: "tournament_team_invites" */ - update_tournament_team_invites_by_pk: (tournament_team_invites | null) - /** update multiples rows of table: "tournament_team_invites" */ - update_tournament_team_invites_many: ((tournament_team_invites_mutation_response | null)[] | null) - /** update data of the table: "tournament_team_roster" */ - update_tournament_team_roster: (tournament_team_roster_mutation_response | null) - /** update single row of the table: "tournament_team_roster" */ - update_tournament_team_roster_by_pk: (tournament_team_roster | null) - /** update multiples rows of table: "tournament_team_roster" */ - update_tournament_team_roster_many: ((tournament_team_roster_mutation_response | null)[] | null) - /** update data of the table: "tournament_teams" */ - update_tournament_teams: (tournament_teams_mutation_response | null) - /** update single row of the table: "tournament_teams" */ - update_tournament_teams_by_pk: (tournament_teams | null) - /** update multiples rows of table: "tournament_teams" */ - update_tournament_teams_many: ((tournament_teams_mutation_response | null)[] | null) - /** update data of the table: "tournaments" */ - update_tournaments: (tournaments_mutation_response | null) - /** update single row of the table: "tournaments" */ - update_tournaments_by_pk: (tournaments | null) - /** update multiples rows of table: "tournaments" */ - update_tournaments_many: ((tournaments_mutation_response | null)[] | null) - /** update data of the table: "utility_collection_items" */ - update_utility_collection_items: (utility_collection_items_mutation_response | null) - /** update single row of the table: "utility_collection_items" */ - update_utility_collection_items_by_pk: (utility_collection_items | null) - /** update multiples rows of table: "utility_collection_items" */ - update_utility_collection_items_many: ((utility_collection_items_mutation_response | null)[] | null) - /** update data of the table: "utility_collections" */ - update_utility_collections: (utility_collections_mutation_response | null) - /** update single row of the table: "utility_collections" */ - update_utility_collections_by_pk: (utility_collections | null) - /** update multiples rows of table: "utility_collections" */ - update_utility_collections_many: ((utility_collections_mutation_response | null)[] | null) - /** update data of the table: "utility_demo_mines" */ - update_utility_demo_mines: (utility_demo_mines_mutation_response | null) - /** update single row of the table: "utility_demo_mines" */ - update_utility_demo_mines_by_pk: (utility_demo_mines | null) - /** update multiples rows of table: "utility_demo_mines" */ - update_utility_demo_mines_many: ((utility_demo_mines_mutation_response | null)[] | null) - /** update data of the table: "utility_demo_throws" */ - update_utility_demo_throws: (utility_demo_throws_mutation_response | null) - /** update single row of the table: "utility_demo_throws" */ - update_utility_demo_throws_by_pk: (utility_demo_throws | null) - /** update multiples rows of table: "utility_demo_throws" */ - update_utility_demo_throws_many: ((utility_demo_throws_mutation_response | null)[] | null) - /** update data of the table: "utility_drift_results" */ - update_utility_drift_results: (utility_drift_results_mutation_response | null) - /** update single row of the table: "utility_drift_results" */ - update_utility_drift_results_by_pk: (utility_drift_results | null) - /** update multiples rows of table: "utility_drift_results" */ - update_utility_drift_results_many: ((utility_drift_results_mutation_response | null)[] | null) - /** update data of the table: "utility_drift_scans" */ - update_utility_drift_scans: (utility_drift_scans_mutation_response | null) - /** update single row of the table: "utility_drift_scans" */ - update_utility_drift_scans_by_pk: (utility_drift_scans | null) - /** update multiples rows of table: "utility_drift_scans" */ - update_utility_drift_scans_many: ((utility_drift_scans_mutation_response | null)[] | null) - /** update data of the table: "utility_lineup_favorites" */ - update_utility_lineup_favorites: (utility_lineup_favorites_mutation_response | null) - /** update single row of the table: "utility_lineup_favorites" */ - update_utility_lineup_favorites_by_pk: (utility_lineup_favorites | null) - /** update multiples rows of table: "utility_lineup_favorites" */ - update_utility_lineup_favorites_many: ((utility_lineup_favorites_mutation_response | null)[] | null) - /** update data of the table: "utility_lineup_progress" */ - update_utility_lineup_progress: (utility_lineup_progress_mutation_response | null) - /** update single row of the table: "utility_lineup_progress" */ - update_utility_lineup_progress_by_pk: (utility_lineup_progress | null) - /** update multiples rows of table: "utility_lineup_progress" */ - update_utility_lineup_progress_many: ((utility_lineup_progress_mutation_response | null)[] | null) - /** update data of the table: "utility_lineup_renders" */ - update_utility_lineup_renders: (utility_lineup_renders_mutation_response | null) - /** update single row of the table: "utility_lineup_renders" */ - update_utility_lineup_renders_by_pk: (utility_lineup_renders | null) - /** update multiples rows of table: "utility_lineup_renders" */ - update_utility_lineup_renders_many: ((utility_lineup_renders_mutation_response | null)[] | null) - /** update data of the table: "utility_lineup_repairs" */ - update_utility_lineup_repairs: (utility_lineup_repairs_mutation_response | null) - /** update single row of the table: "utility_lineup_repairs" */ - update_utility_lineup_repairs_by_pk: (utility_lineup_repairs | null) - /** update multiples rows of table: "utility_lineup_repairs" */ - update_utility_lineup_repairs_many: ((utility_lineup_repairs_mutation_response | null)[] | null) - /** update data of the table: "utility_lineup_votes" */ - update_utility_lineup_votes: (utility_lineup_votes_mutation_response | null) - /** update single row of the table: "utility_lineup_votes" */ - update_utility_lineup_votes_by_pk: (utility_lineup_votes | null) - /** update multiples rows of table: "utility_lineup_votes" */ - update_utility_lineup_votes_many: ((utility_lineup_votes_mutation_response | null)[] | null) - /** update data of the table: "utility_lineups" */ - update_utility_lineups: (utility_lineups_mutation_response | null) - /** update single row of the table: "utility_lineups" */ - update_utility_lineups_by_pk: (utility_lineups | null) - /** update multiples rows of table: "utility_lineups" */ - update_utility_lineups_many: ((utility_lineups_mutation_response | null)[] | null) - /** update data of the table: "utility_meta_lineups" */ - update_utility_meta_lineups: (utility_meta_lineups_mutation_response | null) - /** update single row of the table: "utility_meta_lineups" */ - update_utility_meta_lineups_by_pk: (utility_meta_lineups | null) - /** update multiples rows of table: "utility_meta_lineups" */ - update_utility_meta_lineups_many: ((utility_meta_lineups_mutation_response | null)[] | null) - /** update data of the table: "utility_playbook_steps" */ - update_utility_playbook_steps: (utility_playbook_steps_mutation_response | null) - /** update single row of the table: "utility_playbook_steps" */ - update_utility_playbook_steps_by_pk: (utility_playbook_steps | null) - /** update multiples rows of table: "utility_playbook_steps" */ - update_utility_playbook_steps_many: ((utility_playbook_steps_mutation_response | null)[] | null) - /** update data of the table: "utility_playbooks" */ - update_utility_playbooks: (utility_playbooks_mutation_response | null) - /** update single row of the table: "utility_playbooks" */ - update_utility_playbooks_by_pk: (utility_playbooks | null) - /** update multiples rows of table: "utility_playbooks" */ - update_utility_playbooks_many: ((utility_playbooks_mutation_response | null)[] | null) - /** update data of the table: "utility_practice_invites" */ - update_utility_practice_invites: (utility_practice_invites_mutation_response | null) - /** update single row of the table: "utility_practice_invites" */ - update_utility_practice_invites_by_pk: (utility_practice_invites | null) - /** update multiples rows of table: "utility_practice_invites" */ - update_utility_practice_invites_many: ((utility_practice_invites_mutation_response | null)[] | null) - /** update data of the table: "utility_practice_sessions" */ - update_utility_practice_sessions: (utility_practice_sessions_mutation_response | null) - /** update single row of the table: "utility_practice_sessions" */ - update_utility_practice_sessions_by_pk: (utility_practice_sessions | null) - /** update multiples rows of table: "utility_practice_sessions" */ - update_utility_practice_sessions_many: ((utility_practice_sessions_mutation_response | null)[] | null) - /** update data of the table: "v_match_captains" */ - update_v_match_captains: (v_match_captains_mutation_response | null) - /** update multiples rows of table: "v_match_captains" */ - update_v_match_captains_many: ((v_match_captains_mutation_response | null)[] | null) - /** update data of the table: "v_match_map_backup_rounds" */ - update_v_match_map_backup_rounds: (v_match_map_backup_rounds_mutation_response | null) - /** update multiples rows of table: "v_match_map_backup_rounds" */ - update_v_match_map_backup_rounds_many: ((v_match_map_backup_rounds_mutation_response | null)[] | null) - /** update data of the table: "v_player_match_map_hltv" */ - update_v_player_match_map_hltv: (v_player_match_map_hltv_mutation_response | null) - /** update multiples rows of table: "v_player_match_map_hltv" */ - update_v_player_match_map_hltv_many: ((v_player_match_map_hltv_mutation_response | null)[] | null) - /** update data of the table: "v_pool_maps" */ - update_v_pool_maps: (v_pool_maps_mutation_response | null) - /** update multiples rows of table: "v_pool_maps" */ - update_v_pool_maps_many: ((v_pool_maps_mutation_response | null)[] | null) - /** update data of the table: "v_team_stage_results" */ - update_v_team_stage_results: (v_team_stage_results_mutation_response | null) - /** update single row of the table: "v_team_stage_results" */ - update_v_team_stage_results_by_pk: (v_team_stage_results | null) - /** update multiples rows of table: "v_team_stage_results" */ - update_v_team_stage_results_many: ((v_team_stage_results_mutation_response | null)[] | null) - /** Validate CS2 gamedata signatures/offsets on a node (5stack.gg test instance only) */ - validateGamedata: (SuccessOutput | null) - /** Spawn a per-user game-streamer pod to play back a finished match's demo */ - watchDemo: (WatchDemoOutput | null) - /** Write content to file on game server */ - writeServerFile: (SuccessOutput | null) - __typename: 'mutation_root' -} - - -/** columns and relationships of "v_my_friends" */ -export interface my_friends { - avatar_url: (Scalars['String'] | null) - country: (Scalars['String'] | null) - created_at: (Scalars['timestamptz'] | null) - custom_avatar_url: (Scalars['String'] | null) - days_since_last_ban: (Scalars['Int'] | null) - discord_id: (Scalars['String'] | null) - elo: (Scalars['jsonb'] | null) - faceit_elo: (Scalars['Int'] | null) - faceit_nickname: (Scalars['String'] | null) - faceit_player_id: (Scalars['String'] | null) - faceit_skill_level: (Scalars['Int'] | null) - faceit_updated_at: (Scalars['timestamptz'] | null) - faceit_url: (Scalars['String'] | null) - friend_steam_id: (Scalars['bigint'] | null) - game_ban_count: (Scalars['Int'] | null) - invited_by_steam_id: (Scalars['bigint'] | null) - language: (Scalars['String'] | null) - last_presence_state: (Scalars['jsonb'] | null) - last_read_news_at: (Scalars['timestamptz'] | null) - last_sign_in_at: (Scalars['timestamptz'] | null) - name: (Scalars['String'] | null) - name_registered: (Scalars['Boolean'] | null) - notification_timezone: (Scalars['String'] | null) - /** An object relationship */ - player: (players | null) - premier_rank: (Scalars['Int'] | null) - premier_rank_updated_at: (Scalars['timestamptz'] | null) - presence_updated_at: (Scalars['timestamptz'] | null) - profile_url: (Scalars['String'] | null) - quiet_hours_end: (Scalars['time'] | null) - quiet_hours_start: (Scalars['time'] | null) - role: (Scalars['String'] | null) - roster_image_url: (Scalars['String'] | null) - show_match_ready_modal: (Scalars['Boolean'] | null) - status: (Scalars['String'] | null) - steam_bans_checked_at: (Scalars['timestamptz'] | null) - steam_id: (Scalars['bigint'] | null) - vac_ban_count: (Scalars['Int'] | null) - vac_banned: (Scalars['Boolean'] | null) - __typename: 'my_friends' -} - - -/** aggregated selection of "v_my_friends" */ -export interface my_friends_aggregate { - aggregate: (my_friends_aggregate_fields | null) - nodes: my_friends[] - __typename: 'my_friends_aggregate' -} - - -/** aggregate fields of "v_my_friends" */ -export interface my_friends_aggregate_fields { - avg: (my_friends_avg_fields | null) - count: Scalars['Int'] - max: (my_friends_max_fields | null) - min: (my_friends_min_fields | null) - stddev: (my_friends_stddev_fields | null) - stddev_pop: (my_friends_stddev_pop_fields | null) - stddev_samp: (my_friends_stddev_samp_fields | null) - sum: (my_friends_sum_fields | null) - var_pop: (my_friends_var_pop_fields | null) - var_samp: (my_friends_var_samp_fields | null) - variance: (my_friends_variance_fields | null) - __typename: 'my_friends_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface my_friends_avg_fields { - days_since_last_ban: (Scalars['Float'] | null) - faceit_elo: (Scalars['Float'] | null) - faceit_skill_level: (Scalars['Float'] | null) - friend_steam_id: (Scalars['Float'] | null) - game_ban_count: (Scalars['Float'] | null) - invited_by_steam_id: (Scalars['Float'] | null) - premier_rank: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - vac_ban_count: (Scalars['Float'] | null) - __typename: 'my_friends_avg_fields' -} - - -/** aggregate max on columns */ -export interface my_friends_max_fields { - avatar_url: (Scalars['String'] | null) - country: (Scalars['String'] | null) - created_at: (Scalars['timestamptz'] | null) - custom_avatar_url: (Scalars['String'] | null) - days_since_last_ban: (Scalars['Int'] | null) - discord_id: (Scalars['String'] | null) - faceit_elo: (Scalars['Int'] | null) - faceit_nickname: (Scalars['String'] | null) - faceit_player_id: (Scalars['String'] | null) - faceit_skill_level: (Scalars['Int'] | null) - faceit_updated_at: (Scalars['timestamptz'] | null) - faceit_url: (Scalars['String'] | null) - friend_steam_id: (Scalars['bigint'] | null) - game_ban_count: (Scalars['Int'] | null) - invited_by_steam_id: (Scalars['bigint'] | null) - language: (Scalars['String'] | null) - last_read_news_at: (Scalars['timestamptz'] | null) - last_sign_in_at: (Scalars['timestamptz'] | null) - name: (Scalars['String'] | null) - notification_timezone: (Scalars['String'] | null) - premier_rank: (Scalars['Int'] | null) - premier_rank_updated_at: (Scalars['timestamptz'] | null) - presence_updated_at: (Scalars['timestamptz'] | null) - profile_url: (Scalars['String'] | null) - role: (Scalars['String'] | null) - roster_image_url: (Scalars['String'] | null) - status: (Scalars['String'] | null) - steam_bans_checked_at: (Scalars['timestamptz'] | null) - steam_id: (Scalars['bigint'] | null) - vac_ban_count: (Scalars['Int'] | null) - __typename: 'my_friends_max_fields' -} - - -/** aggregate min on columns */ -export interface my_friends_min_fields { - avatar_url: (Scalars['String'] | null) - country: (Scalars['String'] | null) - created_at: (Scalars['timestamptz'] | null) - custom_avatar_url: (Scalars['String'] | null) - days_since_last_ban: (Scalars['Int'] | null) - discord_id: (Scalars['String'] | null) - faceit_elo: (Scalars['Int'] | null) - faceit_nickname: (Scalars['String'] | null) - faceit_player_id: (Scalars['String'] | null) - faceit_skill_level: (Scalars['Int'] | null) - faceit_updated_at: (Scalars['timestamptz'] | null) - faceit_url: (Scalars['String'] | null) - friend_steam_id: (Scalars['bigint'] | null) - game_ban_count: (Scalars['Int'] | null) - invited_by_steam_id: (Scalars['bigint'] | null) - language: (Scalars['String'] | null) - last_read_news_at: (Scalars['timestamptz'] | null) - last_sign_in_at: (Scalars['timestamptz'] | null) - name: (Scalars['String'] | null) - notification_timezone: (Scalars['String'] | null) - premier_rank: (Scalars['Int'] | null) - premier_rank_updated_at: (Scalars['timestamptz'] | null) - presence_updated_at: (Scalars['timestamptz'] | null) - profile_url: (Scalars['String'] | null) - role: (Scalars['String'] | null) - roster_image_url: (Scalars['String'] | null) - status: (Scalars['String'] | null) - steam_bans_checked_at: (Scalars['timestamptz'] | null) - steam_id: (Scalars['bigint'] | null) - vac_ban_count: (Scalars['Int'] | null) - __typename: 'my_friends_min_fields' -} - - -/** response of any mutation on the table "v_my_friends" */ -export interface my_friends_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: my_friends[] - __typename: 'my_friends_mutation_response' -} - - -/** select columns of table "v_my_friends" */ -export type my_friends_select_column = 'avatar_url' | 'country' | 'created_at' | 'custom_avatar_url' | 'days_since_last_ban' | 'discord_id' | 'elo' | 'faceit_elo' | 'faceit_nickname' | 'faceit_player_id' | 'faceit_skill_level' | 'faceit_updated_at' | 'faceit_url' | 'friend_steam_id' | 'game_ban_count' | 'invited_by_steam_id' | 'language' | 'last_presence_state' | 'last_read_news_at' | 'last_sign_in_at' | 'name' | 'name_registered' | 'notification_timezone' | 'premier_rank' | 'premier_rank_updated_at' | 'presence_updated_at' | 'profile_url' | 'quiet_hours_end' | 'quiet_hours_start' | 'role' | 'roster_image_url' | 'show_match_ready_modal' | 'status' | 'steam_bans_checked_at' | 'steam_id' | 'vac_ban_count' | 'vac_banned' - - -/** select "my_friends_aggregate_bool_exp_bool_and_arguments_columns" columns of table "v_my_friends" */ -export type my_friends_select_column_my_friends_aggregate_bool_exp_bool_and_arguments_columns = 'name_registered' | 'show_match_ready_modal' | 'vac_banned' - - -/** select "my_friends_aggregate_bool_exp_bool_or_arguments_columns" columns of table "v_my_friends" */ -export type my_friends_select_column_my_friends_aggregate_bool_exp_bool_or_arguments_columns = 'name_registered' | 'show_match_ready_modal' | 'vac_banned' - - -/** aggregate stddev on columns */ -export interface my_friends_stddev_fields { - days_since_last_ban: (Scalars['Float'] | null) - faceit_elo: (Scalars['Float'] | null) - faceit_skill_level: (Scalars['Float'] | null) - friend_steam_id: (Scalars['Float'] | null) - game_ban_count: (Scalars['Float'] | null) - invited_by_steam_id: (Scalars['Float'] | null) - premier_rank: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - vac_ban_count: (Scalars['Float'] | null) - __typename: 'my_friends_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface my_friends_stddev_pop_fields { - days_since_last_ban: (Scalars['Float'] | null) - faceit_elo: (Scalars['Float'] | null) - faceit_skill_level: (Scalars['Float'] | null) - friend_steam_id: (Scalars['Float'] | null) - game_ban_count: (Scalars['Float'] | null) - invited_by_steam_id: (Scalars['Float'] | null) - premier_rank: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - vac_ban_count: (Scalars['Float'] | null) - __typename: 'my_friends_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface my_friends_stddev_samp_fields { - days_since_last_ban: (Scalars['Float'] | null) - faceit_elo: (Scalars['Float'] | null) - faceit_skill_level: (Scalars['Float'] | null) - friend_steam_id: (Scalars['Float'] | null) - game_ban_count: (Scalars['Float'] | null) - invited_by_steam_id: (Scalars['Float'] | null) - premier_rank: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - vac_ban_count: (Scalars['Float'] | null) - __typename: 'my_friends_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface my_friends_sum_fields { - days_since_last_ban: (Scalars['Int'] | null) - faceit_elo: (Scalars['Int'] | null) - faceit_skill_level: (Scalars['Int'] | null) - friend_steam_id: (Scalars['bigint'] | null) - game_ban_count: (Scalars['Int'] | null) - invited_by_steam_id: (Scalars['bigint'] | null) - premier_rank: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - vac_ban_count: (Scalars['Int'] | null) - __typename: 'my_friends_sum_fields' -} - - -/** aggregate var_pop on columns */ -export interface my_friends_var_pop_fields { - days_since_last_ban: (Scalars['Float'] | null) - faceit_elo: (Scalars['Float'] | null) - faceit_skill_level: (Scalars['Float'] | null) - friend_steam_id: (Scalars['Float'] | null) - game_ban_count: (Scalars['Float'] | null) - invited_by_steam_id: (Scalars['Float'] | null) - premier_rank: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - vac_ban_count: (Scalars['Float'] | null) - __typename: 'my_friends_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface my_friends_var_samp_fields { - days_since_last_ban: (Scalars['Float'] | null) - faceit_elo: (Scalars['Float'] | null) - faceit_skill_level: (Scalars['Float'] | null) - friend_steam_id: (Scalars['Float'] | null) - game_ban_count: (Scalars['Float'] | null) - invited_by_steam_id: (Scalars['Float'] | null) - premier_rank: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - vac_ban_count: (Scalars['Float'] | null) - __typename: 'my_friends_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface my_friends_variance_fields { - days_since_last_ban: (Scalars['Float'] | null) - faceit_elo: (Scalars['Float'] | null) - faceit_skill_level: (Scalars['Float'] | null) - friend_steam_id: (Scalars['Float'] | null) - game_ban_count: (Scalars['Float'] | null) - invited_by_steam_id: (Scalars['Float'] | null) - premier_rank: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - vac_ban_count: (Scalars['Float'] | null) - __typename: 'my_friends_variance_fields' -} - - -/** columns and relationships of "news_articles" */ -export interface news_articles { - /** An object relationship */ - author: (players | null) - author_steam_id: (Scalars['bigint'] | null) - content_markdown: Scalars['String'] - cover_image_url: (Scalars['String'] | null) - created_at: Scalars['timestamptz'] - id: Scalars['uuid'] - published_at: (Scalars['timestamptz'] | null) - slug: Scalars['String'] - status: Scalars['String'] - teaser: (Scalars['String'] | null) - title: Scalars['String'] - updated_at: Scalars['timestamptz'] - view_count: Scalars['bigint'] - __typename: 'news_articles' -} - - -/** aggregated selection of "news_articles" */ -export interface news_articles_aggregate { - aggregate: (news_articles_aggregate_fields | null) - nodes: news_articles[] - __typename: 'news_articles_aggregate' -} - - -/** aggregate fields of "news_articles" */ -export interface news_articles_aggregate_fields { - avg: (news_articles_avg_fields | null) - count: Scalars['Int'] - max: (news_articles_max_fields | null) - min: (news_articles_min_fields | null) - stddev: (news_articles_stddev_fields | null) - stddev_pop: (news_articles_stddev_pop_fields | null) - stddev_samp: (news_articles_stddev_samp_fields | null) - sum: (news_articles_sum_fields | null) - var_pop: (news_articles_var_pop_fields | null) - var_samp: (news_articles_var_samp_fields | null) - variance: (news_articles_variance_fields | null) - __typename: 'news_articles_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface news_articles_avg_fields { - author_steam_id: (Scalars['Float'] | null) - view_count: (Scalars['Float'] | null) - __typename: 'news_articles_avg_fields' -} - - -/** unique or primary key constraints on table "news_articles" */ -export type news_articles_constraint = 'news_articles_pkey' | 'news_articles_slug_key' - - -/** aggregate max on columns */ -export interface news_articles_max_fields { - author_steam_id: (Scalars['bigint'] | null) - content_markdown: (Scalars['String'] | null) - cover_image_url: (Scalars['String'] | null) - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - published_at: (Scalars['timestamptz'] | null) - slug: (Scalars['String'] | null) - status: (Scalars['String'] | null) - teaser: (Scalars['String'] | null) - title: (Scalars['String'] | null) - updated_at: (Scalars['timestamptz'] | null) - view_count: (Scalars['bigint'] | null) - __typename: 'news_articles_max_fields' -} - - -/** aggregate min on columns */ -export interface news_articles_min_fields { - author_steam_id: (Scalars['bigint'] | null) - content_markdown: (Scalars['String'] | null) - cover_image_url: (Scalars['String'] | null) - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - published_at: (Scalars['timestamptz'] | null) - slug: (Scalars['String'] | null) - status: (Scalars['String'] | null) - teaser: (Scalars['String'] | null) - title: (Scalars['String'] | null) - updated_at: (Scalars['timestamptz'] | null) - view_count: (Scalars['bigint'] | null) - __typename: 'news_articles_min_fields' -} - - -/** response of any mutation on the table "news_articles" */ -export interface news_articles_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: news_articles[] - __typename: 'news_articles_mutation_response' -} - - -/** select columns of table "news_articles" */ -export type news_articles_select_column = 'author_steam_id' | 'content_markdown' | 'cover_image_url' | 'created_at' | 'id' | 'published_at' | 'slug' | 'status' | 'teaser' | 'title' | 'updated_at' | 'view_count' - - -/** aggregate stddev on columns */ -export interface news_articles_stddev_fields { - author_steam_id: (Scalars['Float'] | null) - view_count: (Scalars['Float'] | null) - __typename: 'news_articles_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface news_articles_stddev_pop_fields { - author_steam_id: (Scalars['Float'] | null) - view_count: (Scalars['Float'] | null) - __typename: 'news_articles_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface news_articles_stddev_samp_fields { - author_steam_id: (Scalars['Float'] | null) - view_count: (Scalars['Float'] | null) - __typename: 'news_articles_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface news_articles_sum_fields { - author_steam_id: (Scalars['bigint'] | null) - view_count: (Scalars['bigint'] | null) - __typename: 'news_articles_sum_fields' -} - - -/** update columns of table "news_articles" */ -export type news_articles_update_column = 'author_steam_id' | 'content_markdown' | 'cover_image_url' | 'created_at' | 'id' | 'published_at' | 'slug' | 'status' | 'teaser' | 'title' | 'updated_at' | 'view_count' - - -/** aggregate var_pop on columns */ -export interface news_articles_var_pop_fields { - author_steam_id: (Scalars['Float'] | null) - view_count: (Scalars['Float'] | null) - __typename: 'news_articles_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface news_articles_var_samp_fields { - author_steam_id: (Scalars['Float'] | null) - view_count: (Scalars['Float'] | null) - __typename: 'news_articles_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface news_articles_variance_fields { - author_steam_id: (Scalars['Float'] | null) - view_count: (Scalars['Float'] | null) - __typename: 'news_articles_variance_fields' -} - - -/** columns and relationships of "notification_preferences" */ -export interface notification_preferences { - channel: Scalars['String'] - enabled: Scalars['Boolean'] - key: Scalars['String'] - steam_id: Scalars['bigint'] - updated_at: Scalars['timestamptz'] - __typename: 'notification_preferences' -} - - -/** aggregated selection of "notification_preferences" */ -export interface notification_preferences_aggregate { - aggregate: (notification_preferences_aggregate_fields | null) - nodes: notification_preferences[] - __typename: 'notification_preferences_aggregate' -} - - -/** aggregate fields of "notification_preferences" */ -export interface notification_preferences_aggregate_fields { - avg: (notification_preferences_avg_fields | null) - count: Scalars['Int'] - max: (notification_preferences_max_fields | null) - min: (notification_preferences_min_fields | null) - stddev: (notification_preferences_stddev_fields | null) - stddev_pop: (notification_preferences_stddev_pop_fields | null) - stddev_samp: (notification_preferences_stddev_samp_fields | null) - sum: (notification_preferences_sum_fields | null) - var_pop: (notification_preferences_var_pop_fields | null) - var_samp: (notification_preferences_var_samp_fields | null) - variance: (notification_preferences_variance_fields | null) - __typename: 'notification_preferences_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface notification_preferences_avg_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'notification_preferences_avg_fields' -} - - -/** unique or primary key constraints on table "notification_preferences" */ -export type notification_preferences_constraint = 'notification_preferences_pkey' - - -/** aggregate max on columns */ -export interface notification_preferences_max_fields { - channel: (Scalars['String'] | null) - key: (Scalars['String'] | null) - steam_id: (Scalars['bigint'] | null) - updated_at: (Scalars['timestamptz'] | null) - __typename: 'notification_preferences_max_fields' -} - - -/** aggregate min on columns */ -export interface notification_preferences_min_fields { - channel: (Scalars['String'] | null) - key: (Scalars['String'] | null) - steam_id: (Scalars['bigint'] | null) - updated_at: (Scalars['timestamptz'] | null) - __typename: 'notification_preferences_min_fields' -} - - -/** response of any mutation on the table "notification_preferences" */ -export interface notification_preferences_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: notification_preferences[] - __typename: 'notification_preferences_mutation_response' -} - - -/** select columns of table "notification_preferences" */ -export type notification_preferences_select_column = 'channel' | 'enabled' | 'key' | 'steam_id' | 'updated_at' - - -/** aggregate stddev on columns */ -export interface notification_preferences_stddev_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'notification_preferences_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface notification_preferences_stddev_pop_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'notification_preferences_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface notification_preferences_stddev_samp_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'notification_preferences_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface notification_preferences_sum_fields { - steam_id: (Scalars['bigint'] | null) - __typename: 'notification_preferences_sum_fields' -} - - -/** update columns of table "notification_preferences" */ -export type notification_preferences_update_column = 'channel' | 'enabled' | 'key' | 'steam_id' | 'updated_at' - - -/** aggregate var_pop on columns */ -export interface notification_preferences_var_pop_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'notification_preferences_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface notification_preferences_var_samp_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'notification_preferences_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface notification_preferences_variance_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'notification_preferences_variance_fields' -} - - -/** columns and relationships of "notifications" */ -export interface notifications { - actions: (Scalars['jsonb'] | null) - created_at: Scalars['timestamptz'] - data: (Scalars['jsonb'] | null) - deletable: Scalars['Boolean'] - deleted_at: (Scalars['timestamptz'] | null) - entity_id: (Scalars['String'] | null) - id: Scalars['uuid'] - in_app: Scalars['Boolean'] - is_read: Scalars['Boolean'] - message: Scalars['String'] - /** An object relationship */ - player: (players | null) - role: e_player_roles_enum - steam_id: (Scalars['bigint'] | null) - title: Scalars['String'] - type: e_notification_types_enum - __typename: 'notifications' -} - - -/** aggregated selection of "notifications" */ -export interface notifications_aggregate { - aggregate: (notifications_aggregate_fields | null) - nodes: notifications[] - __typename: 'notifications_aggregate' -} - - -/** aggregate fields of "notifications" */ -export interface notifications_aggregate_fields { - avg: (notifications_avg_fields | null) - count: Scalars['Int'] - max: (notifications_max_fields | null) - min: (notifications_min_fields | null) - stddev: (notifications_stddev_fields | null) - stddev_pop: (notifications_stddev_pop_fields | null) - stddev_samp: (notifications_stddev_samp_fields | null) - sum: (notifications_sum_fields | null) - var_pop: (notifications_var_pop_fields | null) - var_samp: (notifications_var_samp_fields | null) - variance: (notifications_variance_fields | null) - __typename: 'notifications_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface notifications_avg_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'notifications_avg_fields' -} - - -/** unique or primary key constraints on table "notifications" */ -export type notifications_constraint = 'notifications_pkey' - - -/** aggregate max on columns */ -export interface notifications_max_fields { - created_at: (Scalars['timestamptz'] | null) - deleted_at: (Scalars['timestamptz'] | null) - entity_id: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - message: (Scalars['String'] | null) - steam_id: (Scalars['bigint'] | null) - title: (Scalars['String'] | null) - __typename: 'notifications_max_fields' -} - - -/** aggregate min on columns */ -export interface notifications_min_fields { - created_at: (Scalars['timestamptz'] | null) - deleted_at: (Scalars['timestamptz'] | null) - entity_id: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - message: (Scalars['String'] | null) - steam_id: (Scalars['bigint'] | null) - title: (Scalars['String'] | null) - __typename: 'notifications_min_fields' -} - - -/** response of any mutation on the table "notifications" */ -export interface notifications_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: notifications[] - __typename: 'notifications_mutation_response' -} - - -/** select columns of table "notifications" */ -export type notifications_select_column = 'actions' | 'created_at' | 'data' | 'deletable' | 'deleted_at' | 'entity_id' | 'id' | 'in_app' | 'is_read' | 'message' | 'role' | 'steam_id' | 'title' | 'type' - - -/** select "notifications_aggregate_bool_exp_bool_and_arguments_columns" columns of table "notifications" */ -export type notifications_select_column_notifications_aggregate_bool_exp_bool_and_arguments_columns = 'deletable' | 'in_app' | 'is_read' - - -/** select "notifications_aggregate_bool_exp_bool_or_arguments_columns" columns of table "notifications" */ -export type notifications_select_column_notifications_aggregate_bool_exp_bool_or_arguments_columns = 'deletable' | 'in_app' | 'is_read' - - -/** aggregate stddev on columns */ -export interface notifications_stddev_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'notifications_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface notifications_stddev_pop_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'notifications_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface notifications_stddev_samp_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'notifications_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface notifications_sum_fields { - steam_id: (Scalars['bigint'] | null) - __typename: 'notifications_sum_fields' -} - - -/** update columns of table "notifications" */ -export type notifications_update_column = 'actions' | 'created_at' | 'data' | 'deletable' | 'deleted_at' | 'entity_id' | 'id' | 'in_app' | 'is_read' | 'message' | 'role' | 'steam_id' | 'title' | 'type' - - -/** aggregate var_pop on columns */ -export interface notifications_var_pop_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'notifications_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface notifications_var_samp_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'notifications_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface notifications_variance_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'notifications_variance_fields' -} - - -/** column ordering options */ -export type order_by = 'asc' | 'asc_nulls_first' | 'asc_nulls_last' | 'desc' | 'desc_nulls_first' | 'desc_nulls_last' - - -/** columns and relationships of "pending_match_import_players" */ -export interface pending_match_import_players { - created_at: Scalars['timestamptz'] - /** An object relationship */ - pending_match_import: pending_match_imports - /** An object relationship */ - player: players - steam_id: Scalars['bigint'] - valve_match_id: Scalars['numeric'] - __typename: 'pending_match_import_players' -} - - -/** aggregated selection of "pending_match_import_players" */ -export interface pending_match_import_players_aggregate { - aggregate: (pending_match_import_players_aggregate_fields | null) - nodes: pending_match_import_players[] - __typename: 'pending_match_import_players_aggregate' -} - - -/** aggregate fields of "pending_match_import_players" */ -export interface pending_match_import_players_aggregate_fields { - avg: (pending_match_import_players_avg_fields | null) - count: Scalars['Int'] - max: (pending_match_import_players_max_fields | null) - min: (pending_match_import_players_min_fields | null) - stddev: (pending_match_import_players_stddev_fields | null) - stddev_pop: (pending_match_import_players_stddev_pop_fields | null) - stddev_samp: (pending_match_import_players_stddev_samp_fields | null) - sum: (pending_match_import_players_sum_fields | null) - var_pop: (pending_match_import_players_var_pop_fields | null) - var_samp: (pending_match_import_players_var_samp_fields | null) - variance: (pending_match_import_players_variance_fields | null) - __typename: 'pending_match_import_players_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface pending_match_import_players_avg_fields { - steam_id: (Scalars['Float'] | null) - valve_match_id: (Scalars['Float'] | null) - __typename: 'pending_match_import_players_avg_fields' -} - - -/** unique or primary key constraints on table "pending_match_import_players" */ -export type pending_match_import_players_constraint = 'pending_match_import_players_pkey' - - -/** aggregate max on columns */ -export interface pending_match_import_players_max_fields { - created_at: (Scalars['timestamptz'] | null) - steam_id: (Scalars['bigint'] | null) - valve_match_id: (Scalars['numeric'] | null) - __typename: 'pending_match_import_players_max_fields' -} - - -/** aggregate min on columns */ -export interface pending_match_import_players_min_fields { - created_at: (Scalars['timestamptz'] | null) - steam_id: (Scalars['bigint'] | null) - valve_match_id: (Scalars['numeric'] | null) - __typename: 'pending_match_import_players_min_fields' -} - - -/** response of any mutation on the table "pending_match_import_players" */ -export interface pending_match_import_players_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: pending_match_import_players[] - __typename: 'pending_match_import_players_mutation_response' -} - - -/** select columns of table "pending_match_import_players" */ -export type pending_match_import_players_select_column = 'created_at' | 'steam_id' | 'valve_match_id' - - -/** aggregate stddev on columns */ -export interface pending_match_import_players_stddev_fields { - steam_id: (Scalars['Float'] | null) - valve_match_id: (Scalars['Float'] | null) - __typename: 'pending_match_import_players_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface pending_match_import_players_stddev_pop_fields { - steam_id: (Scalars['Float'] | null) - valve_match_id: (Scalars['Float'] | null) - __typename: 'pending_match_import_players_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface pending_match_import_players_stddev_samp_fields { - steam_id: (Scalars['Float'] | null) - valve_match_id: (Scalars['Float'] | null) - __typename: 'pending_match_import_players_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface pending_match_import_players_sum_fields { - steam_id: (Scalars['bigint'] | null) - valve_match_id: (Scalars['numeric'] | null) - __typename: 'pending_match_import_players_sum_fields' -} - - -/** update columns of table "pending_match_import_players" */ -export type pending_match_import_players_update_column = 'created_at' | 'steam_id' | 'valve_match_id' - - -/** aggregate var_pop on columns */ -export interface pending_match_import_players_var_pop_fields { - steam_id: (Scalars['Float'] | null) - valve_match_id: (Scalars['Float'] | null) - __typename: 'pending_match_import_players_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface pending_match_import_players_var_samp_fields { - steam_id: (Scalars['Float'] | null) - valve_match_id: (Scalars['Float'] | null) - __typename: 'pending_match_import_players_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface pending_match_import_players_variance_fields { - steam_id: (Scalars['Float'] | null) - valve_match_id: (Scalars['Float'] | null) - __typename: 'pending_match_import_players_variance_fields' -} - - -/** columns and relationships of "pending_match_imports" */ -export interface pending_match_imports { - created_at: Scalars['timestamptz'] - demo_url: (Scalars['String'] | null) - error: (Scalars['String'] | null) - map_name: (Scalars['String'] | null) - match_start_time: (Scalars['timestamptz'] | null) - /** An array relationship */ - players: pending_match_import_players[] - /** An aggregate relationship */ - players_aggregate: pending_match_import_players_aggregate - share_code: Scalars['String'] - status: Scalars['String'] - updated_at: Scalars['timestamptz'] - valve_match_id: Scalars['numeric'] - __typename: 'pending_match_imports' -} - - -/** aggregated selection of "pending_match_imports" */ -export interface pending_match_imports_aggregate { - aggregate: (pending_match_imports_aggregate_fields | null) - nodes: pending_match_imports[] - __typename: 'pending_match_imports_aggregate' -} - - -/** aggregate fields of "pending_match_imports" */ -export interface pending_match_imports_aggregate_fields { - avg: (pending_match_imports_avg_fields | null) - count: Scalars['Int'] - max: (pending_match_imports_max_fields | null) - min: (pending_match_imports_min_fields | null) - stddev: (pending_match_imports_stddev_fields | null) - stddev_pop: (pending_match_imports_stddev_pop_fields | null) - stddev_samp: (pending_match_imports_stddev_samp_fields | null) - sum: (pending_match_imports_sum_fields | null) - var_pop: (pending_match_imports_var_pop_fields | null) - var_samp: (pending_match_imports_var_samp_fields | null) - variance: (pending_match_imports_variance_fields | null) - __typename: 'pending_match_imports_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface pending_match_imports_avg_fields { - valve_match_id: (Scalars['Float'] | null) - __typename: 'pending_match_imports_avg_fields' -} - - -/** unique or primary key constraints on table "pending_match_imports" */ -export type pending_match_imports_constraint = 'pending_match_imports_pkey' - - -/** aggregate max on columns */ -export interface pending_match_imports_max_fields { - created_at: (Scalars['timestamptz'] | null) - demo_url: (Scalars['String'] | null) - error: (Scalars['String'] | null) - map_name: (Scalars['String'] | null) - match_start_time: (Scalars['timestamptz'] | null) - share_code: (Scalars['String'] | null) - status: (Scalars['String'] | null) - updated_at: (Scalars['timestamptz'] | null) - valve_match_id: (Scalars['numeric'] | null) - __typename: 'pending_match_imports_max_fields' -} - - -/** aggregate min on columns */ -export interface pending_match_imports_min_fields { - created_at: (Scalars['timestamptz'] | null) - demo_url: (Scalars['String'] | null) - error: (Scalars['String'] | null) - map_name: (Scalars['String'] | null) - match_start_time: (Scalars['timestamptz'] | null) - share_code: (Scalars['String'] | null) - status: (Scalars['String'] | null) - updated_at: (Scalars['timestamptz'] | null) - valve_match_id: (Scalars['numeric'] | null) - __typename: 'pending_match_imports_min_fields' -} - - -/** response of any mutation on the table "pending_match_imports" */ -export interface pending_match_imports_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: pending_match_imports[] - __typename: 'pending_match_imports_mutation_response' -} - - -/** select columns of table "pending_match_imports" */ -export type pending_match_imports_select_column = 'created_at' | 'demo_url' | 'error' | 'map_name' | 'match_start_time' | 'share_code' | 'status' | 'updated_at' | 'valve_match_id' - - -/** aggregate stddev on columns */ -export interface pending_match_imports_stddev_fields { - valve_match_id: (Scalars['Float'] | null) - __typename: 'pending_match_imports_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface pending_match_imports_stddev_pop_fields { - valve_match_id: (Scalars['Float'] | null) - __typename: 'pending_match_imports_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface pending_match_imports_stddev_samp_fields { - valve_match_id: (Scalars['Float'] | null) - __typename: 'pending_match_imports_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface pending_match_imports_sum_fields { - valve_match_id: (Scalars['numeric'] | null) - __typename: 'pending_match_imports_sum_fields' -} - - -/** update columns of table "pending_match_imports" */ -export type pending_match_imports_update_column = 'created_at' | 'demo_url' | 'error' | 'map_name' | 'match_start_time' | 'share_code' | 'status' | 'updated_at' | 'valve_match_id' - - -/** aggregate var_pop on columns */ -export interface pending_match_imports_var_pop_fields { - valve_match_id: (Scalars['Float'] | null) - __typename: 'pending_match_imports_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface pending_match_imports_var_samp_fields { - valve_match_id: (Scalars['Float'] | null) - __typename: 'pending_match_imports_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface pending_match_imports_variance_fields { - valve_match_id: (Scalars['Float'] | null) - __typename: 'pending_match_imports_variance_fields' -} - - -/** columns and relationships of "player_aim_stats_demo" */ -export interface player_aim_stats_demo { - /** An object relationship */ - attacker: (players | null) - attacker_steam_id: Scalars['bigint'] - counter_strafe_eligible_shots: Scalars['Int'] - counter_strafed_shots: Scalars['Int'] - crosshair_angle_count: Scalars['Int'] - crosshair_angle_sum_deg: Scalars['numeric'] - first_bullet_hits: Scalars['Int'] - first_bullet_shots: Scalars['Int'] - headshot_hits: Scalars['Int'] - hits: Scalars['Int'] - hits_at_spotted: Scalars['Int'] - /** An object relationship */ - match: matches - match_id: Scalars['uuid'] - /** An object relationship */ - match_map: match_maps - match_map_id: Scalars['uuid'] - non_awp_hits: Scalars['Int'] - on_target_frames: Scalars['Int'] - shots_at_spotted: Scalars['Int'] - spray_hits: Scalars['Int'] - spray_shots: Scalars['Int'] - time_to_damage_count: Scalars['Int'] - time_to_damage_sum_s: Scalars['numeric'] - total_engagement_frames: Scalars['Int'] - __typename: 'player_aim_stats_demo' -} - - -/** aggregated selection of "player_aim_stats_demo" */ -export interface player_aim_stats_demo_aggregate { - aggregate: (player_aim_stats_demo_aggregate_fields | null) - nodes: player_aim_stats_demo[] - __typename: 'player_aim_stats_demo_aggregate' -} - - -/** aggregate fields of "player_aim_stats_demo" */ -export interface player_aim_stats_demo_aggregate_fields { - avg: (player_aim_stats_demo_avg_fields | null) - count: Scalars['Int'] - max: (player_aim_stats_demo_max_fields | null) - min: (player_aim_stats_demo_min_fields | null) - stddev: (player_aim_stats_demo_stddev_fields | null) - stddev_pop: (player_aim_stats_demo_stddev_pop_fields | null) - stddev_samp: (player_aim_stats_demo_stddev_samp_fields | null) - sum: (player_aim_stats_demo_sum_fields | null) - var_pop: (player_aim_stats_demo_var_pop_fields | null) - var_samp: (player_aim_stats_demo_var_samp_fields | null) - variance: (player_aim_stats_demo_variance_fields | null) - __typename: 'player_aim_stats_demo_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface player_aim_stats_demo_avg_fields { - attacker_steam_id: (Scalars['Float'] | null) - counter_strafe_eligible_shots: (Scalars['Float'] | null) - counter_strafed_shots: (Scalars['Float'] | null) - crosshair_angle_count: (Scalars['Float'] | null) - crosshair_angle_sum_deg: (Scalars['Float'] | null) - first_bullet_hits: (Scalars['Float'] | null) - first_bullet_shots: (Scalars['Float'] | null) - headshot_hits: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - hits_at_spotted: (Scalars['Float'] | null) - non_awp_hits: (Scalars['Float'] | null) - on_target_frames: (Scalars['Float'] | null) - shots_at_spotted: (Scalars['Float'] | null) - spray_hits: (Scalars['Float'] | null) - spray_shots: (Scalars['Float'] | null) - time_to_damage_count: (Scalars['Float'] | null) - time_to_damage_sum_s: (Scalars['Float'] | null) - total_engagement_frames: (Scalars['Float'] | null) - __typename: 'player_aim_stats_demo_avg_fields' -} - - -/** unique or primary key constraints on table "player_aim_stats_demo" */ -export type player_aim_stats_demo_constraint = 'player_aim_stats_demo_pkey' - - -/** aggregate max on columns */ -export interface player_aim_stats_demo_max_fields { - attacker_steam_id: (Scalars['bigint'] | null) - counter_strafe_eligible_shots: (Scalars['Int'] | null) - counter_strafed_shots: (Scalars['Int'] | null) - crosshair_angle_count: (Scalars['Int'] | null) - crosshair_angle_sum_deg: (Scalars['numeric'] | null) - first_bullet_hits: (Scalars['Int'] | null) - first_bullet_shots: (Scalars['Int'] | null) - headshot_hits: (Scalars['Int'] | null) - hits: (Scalars['Int'] | null) - hits_at_spotted: (Scalars['Int'] | null) - match_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - non_awp_hits: (Scalars['Int'] | null) - on_target_frames: (Scalars['Int'] | null) - shots_at_spotted: (Scalars['Int'] | null) - spray_hits: (Scalars['Int'] | null) - spray_shots: (Scalars['Int'] | null) - time_to_damage_count: (Scalars['Int'] | null) - time_to_damage_sum_s: (Scalars['numeric'] | null) - total_engagement_frames: (Scalars['Int'] | null) - __typename: 'player_aim_stats_demo_max_fields' -} - - -/** aggregate min on columns */ -export interface player_aim_stats_demo_min_fields { - attacker_steam_id: (Scalars['bigint'] | null) - counter_strafe_eligible_shots: (Scalars['Int'] | null) - counter_strafed_shots: (Scalars['Int'] | null) - crosshair_angle_count: (Scalars['Int'] | null) - crosshair_angle_sum_deg: (Scalars['numeric'] | null) - first_bullet_hits: (Scalars['Int'] | null) - first_bullet_shots: (Scalars['Int'] | null) - headshot_hits: (Scalars['Int'] | null) - hits: (Scalars['Int'] | null) - hits_at_spotted: (Scalars['Int'] | null) - match_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - non_awp_hits: (Scalars['Int'] | null) - on_target_frames: (Scalars['Int'] | null) - shots_at_spotted: (Scalars['Int'] | null) - spray_hits: (Scalars['Int'] | null) - spray_shots: (Scalars['Int'] | null) - time_to_damage_count: (Scalars['Int'] | null) - time_to_damage_sum_s: (Scalars['numeric'] | null) - total_engagement_frames: (Scalars['Int'] | null) - __typename: 'player_aim_stats_demo_min_fields' -} - - -/** response of any mutation on the table "player_aim_stats_demo" */ -export interface player_aim_stats_demo_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: player_aim_stats_demo[] - __typename: 'player_aim_stats_demo_mutation_response' -} - - -/** select columns of table "player_aim_stats_demo" */ -export type player_aim_stats_demo_select_column = 'attacker_steam_id' | 'counter_strafe_eligible_shots' | 'counter_strafed_shots' | 'crosshair_angle_count' | 'crosshair_angle_sum_deg' | 'first_bullet_hits' | 'first_bullet_shots' | 'headshot_hits' | 'hits' | 'hits_at_spotted' | 'match_id' | 'match_map_id' | 'non_awp_hits' | 'on_target_frames' | 'shots_at_spotted' | 'spray_hits' | 'spray_shots' | 'time_to_damage_count' | 'time_to_damage_sum_s' | 'total_engagement_frames' - - -/** aggregate stddev on columns */ -export interface player_aim_stats_demo_stddev_fields { - attacker_steam_id: (Scalars['Float'] | null) - counter_strafe_eligible_shots: (Scalars['Float'] | null) - counter_strafed_shots: (Scalars['Float'] | null) - crosshair_angle_count: (Scalars['Float'] | null) - crosshair_angle_sum_deg: (Scalars['Float'] | null) - first_bullet_hits: (Scalars['Float'] | null) - first_bullet_shots: (Scalars['Float'] | null) - headshot_hits: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - hits_at_spotted: (Scalars['Float'] | null) - non_awp_hits: (Scalars['Float'] | null) - on_target_frames: (Scalars['Float'] | null) - shots_at_spotted: (Scalars['Float'] | null) - spray_hits: (Scalars['Float'] | null) - spray_shots: (Scalars['Float'] | null) - time_to_damage_count: (Scalars['Float'] | null) - time_to_damage_sum_s: (Scalars['Float'] | null) - total_engagement_frames: (Scalars['Float'] | null) - __typename: 'player_aim_stats_demo_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface player_aim_stats_demo_stddev_pop_fields { - attacker_steam_id: (Scalars['Float'] | null) - counter_strafe_eligible_shots: (Scalars['Float'] | null) - counter_strafed_shots: (Scalars['Float'] | null) - crosshair_angle_count: (Scalars['Float'] | null) - crosshair_angle_sum_deg: (Scalars['Float'] | null) - first_bullet_hits: (Scalars['Float'] | null) - first_bullet_shots: (Scalars['Float'] | null) - headshot_hits: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - hits_at_spotted: (Scalars['Float'] | null) - non_awp_hits: (Scalars['Float'] | null) - on_target_frames: (Scalars['Float'] | null) - shots_at_spotted: (Scalars['Float'] | null) - spray_hits: (Scalars['Float'] | null) - spray_shots: (Scalars['Float'] | null) - time_to_damage_count: (Scalars['Float'] | null) - time_to_damage_sum_s: (Scalars['Float'] | null) - total_engagement_frames: (Scalars['Float'] | null) - __typename: 'player_aim_stats_demo_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface player_aim_stats_demo_stddev_samp_fields { - attacker_steam_id: (Scalars['Float'] | null) - counter_strafe_eligible_shots: (Scalars['Float'] | null) - counter_strafed_shots: (Scalars['Float'] | null) - crosshair_angle_count: (Scalars['Float'] | null) - crosshair_angle_sum_deg: (Scalars['Float'] | null) - first_bullet_hits: (Scalars['Float'] | null) - first_bullet_shots: (Scalars['Float'] | null) - headshot_hits: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - hits_at_spotted: (Scalars['Float'] | null) - non_awp_hits: (Scalars['Float'] | null) - on_target_frames: (Scalars['Float'] | null) - shots_at_spotted: (Scalars['Float'] | null) - spray_hits: (Scalars['Float'] | null) - spray_shots: (Scalars['Float'] | null) - time_to_damage_count: (Scalars['Float'] | null) - time_to_damage_sum_s: (Scalars['Float'] | null) - total_engagement_frames: (Scalars['Float'] | null) - __typename: 'player_aim_stats_demo_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface player_aim_stats_demo_sum_fields { - attacker_steam_id: (Scalars['bigint'] | null) - counter_strafe_eligible_shots: (Scalars['Int'] | null) - counter_strafed_shots: (Scalars['Int'] | null) - crosshair_angle_count: (Scalars['Int'] | null) - crosshair_angle_sum_deg: (Scalars['numeric'] | null) - first_bullet_hits: (Scalars['Int'] | null) - first_bullet_shots: (Scalars['Int'] | null) - headshot_hits: (Scalars['Int'] | null) - hits: (Scalars['Int'] | null) - hits_at_spotted: (Scalars['Int'] | null) - non_awp_hits: (Scalars['Int'] | null) - on_target_frames: (Scalars['Int'] | null) - shots_at_spotted: (Scalars['Int'] | null) - spray_hits: (Scalars['Int'] | null) - spray_shots: (Scalars['Int'] | null) - time_to_damage_count: (Scalars['Int'] | null) - time_to_damage_sum_s: (Scalars['numeric'] | null) - total_engagement_frames: (Scalars['Int'] | null) - __typename: 'player_aim_stats_demo_sum_fields' -} - - -/** update columns of table "player_aim_stats_demo" */ -export type player_aim_stats_demo_update_column = 'attacker_steam_id' | 'counter_strafe_eligible_shots' | 'counter_strafed_shots' | 'crosshair_angle_count' | 'crosshair_angle_sum_deg' | 'first_bullet_hits' | 'first_bullet_shots' | 'headshot_hits' | 'hits' | 'hits_at_spotted' | 'match_id' | 'match_map_id' | 'non_awp_hits' | 'on_target_frames' | 'shots_at_spotted' | 'spray_hits' | 'spray_shots' | 'time_to_damage_count' | 'time_to_damage_sum_s' | 'total_engagement_frames' - - -/** aggregate var_pop on columns */ -export interface player_aim_stats_demo_var_pop_fields { - attacker_steam_id: (Scalars['Float'] | null) - counter_strafe_eligible_shots: (Scalars['Float'] | null) - counter_strafed_shots: (Scalars['Float'] | null) - crosshair_angle_count: (Scalars['Float'] | null) - crosshair_angle_sum_deg: (Scalars['Float'] | null) - first_bullet_hits: (Scalars['Float'] | null) - first_bullet_shots: (Scalars['Float'] | null) - headshot_hits: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - hits_at_spotted: (Scalars['Float'] | null) - non_awp_hits: (Scalars['Float'] | null) - on_target_frames: (Scalars['Float'] | null) - shots_at_spotted: (Scalars['Float'] | null) - spray_hits: (Scalars['Float'] | null) - spray_shots: (Scalars['Float'] | null) - time_to_damage_count: (Scalars['Float'] | null) - time_to_damage_sum_s: (Scalars['Float'] | null) - total_engagement_frames: (Scalars['Float'] | null) - __typename: 'player_aim_stats_demo_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface player_aim_stats_demo_var_samp_fields { - attacker_steam_id: (Scalars['Float'] | null) - counter_strafe_eligible_shots: (Scalars['Float'] | null) - counter_strafed_shots: (Scalars['Float'] | null) - crosshair_angle_count: (Scalars['Float'] | null) - crosshair_angle_sum_deg: (Scalars['Float'] | null) - first_bullet_hits: (Scalars['Float'] | null) - first_bullet_shots: (Scalars['Float'] | null) - headshot_hits: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - hits_at_spotted: (Scalars['Float'] | null) - non_awp_hits: (Scalars['Float'] | null) - on_target_frames: (Scalars['Float'] | null) - shots_at_spotted: (Scalars['Float'] | null) - spray_hits: (Scalars['Float'] | null) - spray_shots: (Scalars['Float'] | null) - time_to_damage_count: (Scalars['Float'] | null) - time_to_damage_sum_s: (Scalars['Float'] | null) - total_engagement_frames: (Scalars['Float'] | null) - __typename: 'player_aim_stats_demo_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface player_aim_stats_demo_variance_fields { - attacker_steam_id: (Scalars['Float'] | null) - counter_strafe_eligible_shots: (Scalars['Float'] | null) - counter_strafed_shots: (Scalars['Float'] | null) - crosshair_angle_count: (Scalars['Float'] | null) - crosshair_angle_sum_deg: (Scalars['Float'] | null) - first_bullet_hits: (Scalars['Float'] | null) - first_bullet_shots: (Scalars['Float'] | null) - headshot_hits: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - hits_at_spotted: (Scalars['Float'] | null) - non_awp_hits: (Scalars['Float'] | null) - on_target_frames: (Scalars['Float'] | null) - shots_at_spotted: (Scalars['Float'] | null) - spray_hits: (Scalars['Float'] | null) - spray_shots: (Scalars['Float'] | null) - time_to_damage_count: (Scalars['Float'] | null) - time_to_damage_sum_s: (Scalars['Float'] | null) - total_engagement_frames: (Scalars['Float'] | null) - __typename: 'player_aim_stats_demo_variance_fields' -} - - -/** columns and relationships of "player_aim_weapon_stats" */ -export interface player_aim_weapon_stats { - first_bullet_hits: Scalars['Int'] - first_bullet_shots: Scalars['Int'] - hits: Scalars['Int'] - hits_spotted: Scalars['Int'] - /** An object relationship */ - match: matches - match_id: Scalars['uuid'] - /** An object relationship */ - match_map: match_maps - match_map_id: Scalars['uuid'] - /** An object relationship */ - player: (players | null) - shots: Scalars['Int'] - shots_spotted: Scalars['Int'] - steam_id: Scalars['bigint'] - weapon_class: Scalars['String'] - __typename: 'player_aim_weapon_stats' -} - - -/** aggregated selection of "player_aim_weapon_stats" */ -export interface player_aim_weapon_stats_aggregate { - aggregate: (player_aim_weapon_stats_aggregate_fields | null) - nodes: player_aim_weapon_stats[] - __typename: 'player_aim_weapon_stats_aggregate' -} - - -/** aggregate fields of "player_aim_weapon_stats" */ -export interface player_aim_weapon_stats_aggregate_fields { - avg: (player_aim_weapon_stats_avg_fields | null) - count: Scalars['Int'] - max: (player_aim_weapon_stats_max_fields | null) - min: (player_aim_weapon_stats_min_fields | null) - stddev: (player_aim_weapon_stats_stddev_fields | null) - stddev_pop: (player_aim_weapon_stats_stddev_pop_fields | null) - stddev_samp: (player_aim_weapon_stats_stddev_samp_fields | null) - sum: (player_aim_weapon_stats_sum_fields | null) - var_pop: (player_aim_weapon_stats_var_pop_fields | null) - var_samp: (player_aim_weapon_stats_var_samp_fields | null) - variance: (player_aim_weapon_stats_variance_fields | null) - __typename: 'player_aim_weapon_stats_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface player_aim_weapon_stats_avg_fields { - first_bullet_hits: (Scalars['Float'] | null) - first_bullet_shots: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - hits_spotted: (Scalars['Float'] | null) - shots: (Scalars['Float'] | null) - shots_spotted: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'player_aim_weapon_stats_avg_fields' -} - - -/** unique or primary key constraints on table "player_aim_weapon_stats" */ -export type player_aim_weapon_stats_constraint = 'player_aim_weapon_stats_pkey' - - -/** aggregate max on columns */ -export interface player_aim_weapon_stats_max_fields { - first_bullet_hits: (Scalars['Int'] | null) - first_bullet_shots: (Scalars['Int'] | null) - hits: (Scalars['Int'] | null) - hits_spotted: (Scalars['Int'] | null) - match_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - shots: (Scalars['Int'] | null) - shots_spotted: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - weapon_class: (Scalars['String'] | null) - __typename: 'player_aim_weapon_stats_max_fields' -} - - -/** aggregate min on columns */ -export interface player_aim_weapon_stats_min_fields { - first_bullet_hits: (Scalars['Int'] | null) - first_bullet_shots: (Scalars['Int'] | null) - hits: (Scalars['Int'] | null) - hits_spotted: (Scalars['Int'] | null) - match_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - shots: (Scalars['Int'] | null) - shots_spotted: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - weapon_class: (Scalars['String'] | null) - __typename: 'player_aim_weapon_stats_min_fields' -} - - -/** response of any mutation on the table "player_aim_weapon_stats" */ -export interface player_aim_weapon_stats_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: player_aim_weapon_stats[] - __typename: 'player_aim_weapon_stats_mutation_response' -} - - -/** select columns of table "player_aim_weapon_stats" */ -export type player_aim_weapon_stats_select_column = 'first_bullet_hits' | 'first_bullet_shots' | 'hits' | 'hits_spotted' | 'match_id' | 'match_map_id' | 'shots' | 'shots_spotted' | 'steam_id' | 'weapon_class' - - -/** aggregate stddev on columns */ -export interface player_aim_weapon_stats_stddev_fields { - first_bullet_hits: (Scalars['Float'] | null) - first_bullet_shots: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - hits_spotted: (Scalars['Float'] | null) - shots: (Scalars['Float'] | null) - shots_spotted: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'player_aim_weapon_stats_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface player_aim_weapon_stats_stddev_pop_fields { - first_bullet_hits: (Scalars['Float'] | null) - first_bullet_shots: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - hits_spotted: (Scalars['Float'] | null) - shots: (Scalars['Float'] | null) - shots_spotted: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'player_aim_weapon_stats_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface player_aim_weapon_stats_stddev_samp_fields { - first_bullet_hits: (Scalars['Float'] | null) - first_bullet_shots: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - hits_spotted: (Scalars['Float'] | null) - shots: (Scalars['Float'] | null) - shots_spotted: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'player_aim_weapon_stats_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface player_aim_weapon_stats_sum_fields { - first_bullet_hits: (Scalars['Int'] | null) - first_bullet_shots: (Scalars['Int'] | null) - hits: (Scalars['Int'] | null) - hits_spotted: (Scalars['Int'] | null) - shots: (Scalars['Int'] | null) - shots_spotted: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'player_aim_weapon_stats_sum_fields' -} - - -/** update columns of table "player_aim_weapon_stats" */ -export type player_aim_weapon_stats_update_column = 'first_bullet_hits' | 'first_bullet_shots' | 'hits' | 'hits_spotted' | 'match_id' | 'match_map_id' | 'shots' | 'shots_spotted' | 'steam_id' | 'weapon_class' - - -/** aggregate var_pop on columns */ -export interface player_aim_weapon_stats_var_pop_fields { - first_bullet_hits: (Scalars['Float'] | null) - first_bullet_shots: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - hits_spotted: (Scalars['Float'] | null) - shots: (Scalars['Float'] | null) - shots_spotted: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'player_aim_weapon_stats_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface player_aim_weapon_stats_var_samp_fields { - first_bullet_hits: (Scalars['Float'] | null) - first_bullet_shots: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - hits_spotted: (Scalars['Float'] | null) - shots: (Scalars['Float'] | null) - shots_spotted: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'player_aim_weapon_stats_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface player_aim_weapon_stats_variance_fields { - first_bullet_hits: (Scalars['Float'] | null) - first_bullet_shots: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - hits_spotted: (Scalars['Float'] | null) - shots: (Scalars['Float'] | null) - shots_spotted: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'player_aim_weapon_stats_variance_fields' -} - - -/** columns and relationships of "player_assists" */ -export interface player_assists { - /** An object relationship */ - attacked_player: players - attacked_steam_id: Scalars['bigint'] - attacked_team: Scalars['String'] - attacker_steam_id: Scalars['bigint'] - attacker_team: Scalars['String'] - deleted_at: (Scalars['timestamptz'] | null) - flash: Scalars['Boolean'] - /** A computed field, executes function "is_team_assist" */ - is_team_assist: (Scalars['Boolean'] | null) - /** An object relationship */ - match: matches - match_id: Scalars['uuid'] - /** An object relationship */ - match_map: match_maps - match_map_id: Scalars['uuid'] - /** An object relationship */ - player: players - round: Scalars['Int'] - time: Scalars['timestamptz'] - __typename: 'player_assists' -} - - -/** aggregated selection of "player_assists" */ -export interface player_assists_aggregate { - aggregate: (player_assists_aggregate_fields | null) - nodes: player_assists[] - __typename: 'player_assists_aggregate' -} - - -/** aggregate fields of "player_assists" */ -export interface player_assists_aggregate_fields { - avg: (player_assists_avg_fields | null) - count: Scalars['Int'] - max: (player_assists_max_fields | null) - min: (player_assists_min_fields | null) - stddev: (player_assists_stddev_fields | null) - stddev_pop: (player_assists_stddev_pop_fields | null) - stddev_samp: (player_assists_stddev_samp_fields | null) - sum: (player_assists_sum_fields | null) - var_pop: (player_assists_var_pop_fields | null) - var_samp: (player_assists_var_samp_fields | null) - variance: (player_assists_variance_fields | null) - __typename: 'player_assists_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface player_assists_avg_fields { - attacked_steam_id: (Scalars['Float'] | null) - attacker_steam_id: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'player_assists_avg_fields' -} - - -/** unique or primary key constraints on table "player_assists" */ -export type player_assists_constraint = 'player_assists_pkey' - - -/** aggregate max on columns */ -export interface player_assists_max_fields { - attacked_steam_id: (Scalars['bigint'] | null) - attacked_team: (Scalars['String'] | null) - attacker_steam_id: (Scalars['bigint'] | null) - attacker_team: (Scalars['String'] | null) - deleted_at: (Scalars['timestamptz'] | null) - match_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - round: (Scalars['Int'] | null) - time: (Scalars['timestamptz'] | null) - __typename: 'player_assists_max_fields' -} - - -/** aggregate min on columns */ -export interface player_assists_min_fields { - attacked_steam_id: (Scalars['bigint'] | null) - attacked_team: (Scalars['String'] | null) - attacker_steam_id: (Scalars['bigint'] | null) - attacker_team: (Scalars['String'] | null) - deleted_at: (Scalars['timestamptz'] | null) - match_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - round: (Scalars['Int'] | null) - time: (Scalars['timestamptz'] | null) - __typename: 'player_assists_min_fields' -} - - -/** response of any mutation on the table "player_assists" */ -export interface player_assists_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: player_assists[] - __typename: 'player_assists_mutation_response' -} - - -/** select columns of table "player_assists" */ -export type player_assists_select_column = 'attacked_steam_id' | 'attacked_team' | 'attacker_steam_id' | 'attacker_team' | 'deleted_at' | 'flash' | 'match_id' | 'match_map_id' | 'round' | 'time' - - -/** select "player_assists_aggregate_bool_exp_bool_and_arguments_columns" columns of table "player_assists" */ -export type player_assists_select_column_player_assists_aggregate_bool_exp_bool_and_arguments_columns = 'flash' - - -/** select "player_assists_aggregate_bool_exp_bool_or_arguments_columns" columns of table "player_assists" */ -export type player_assists_select_column_player_assists_aggregate_bool_exp_bool_or_arguments_columns = 'flash' - - -/** aggregate stddev on columns */ -export interface player_assists_stddev_fields { - attacked_steam_id: (Scalars['Float'] | null) - attacker_steam_id: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'player_assists_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface player_assists_stddev_pop_fields { - attacked_steam_id: (Scalars['Float'] | null) - attacker_steam_id: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'player_assists_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface player_assists_stddev_samp_fields { - attacked_steam_id: (Scalars['Float'] | null) - attacker_steam_id: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'player_assists_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface player_assists_sum_fields { - attacked_steam_id: (Scalars['bigint'] | null) - attacker_steam_id: (Scalars['bigint'] | null) - round: (Scalars['Int'] | null) - __typename: 'player_assists_sum_fields' -} - - -/** update columns of table "player_assists" */ -export type player_assists_update_column = 'attacked_steam_id' | 'attacked_team' | 'attacker_steam_id' | 'attacker_team' | 'deleted_at' | 'flash' | 'match_id' | 'match_map_id' | 'round' | 'time' - - -/** aggregate var_pop on columns */ -export interface player_assists_var_pop_fields { - attacked_steam_id: (Scalars['Float'] | null) - attacker_steam_id: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'player_assists_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface player_assists_var_samp_fields { - attacked_steam_id: (Scalars['Float'] | null) - attacker_steam_id: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'player_assists_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface player_assists_variance_fields { - attacked_steam_id: (Scalars['Float'] | null) - attacker_steam_id: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'player_assists_variance_fields' -} - - -/** columns and relationships of "player_career_stats_v" */ -export interface player_career_stats_v { - accuracy: (Scalars['numeric'] | null) - accuracy_spotted: (Scalars['numeric'] | null) - counter_strafe_pct: (Scalars['numeric'] | null) - crosshair_deg: (Scalars['numeric'] | null) - enemy_blind_pr: (Scalars['numeric'] | null) - flash_assists_pr: (Scalars['numeric'] | null) - hs_pct: (Scalars['numeric'] | null) - kast_pct: (Scalars['numeric'] | null) - maps: (Scalars['Int'] | null) - premier_rank: (Scalars['Int'] | null) - rounds: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - survival_pct: (Scalars['numeric'] | null) - time_to_damage_s: (Scalars['numeric'] | null) - traded_death_pct: (Scalars['numeric'] | null) - util_efficiency: (Scalars['numeric'] | null) - __typename: 'player_career_stats_v' -} - - -/** aggregated selection of "player_career_stats_v" */ -export interface player_career_stats_v_aggregate { - aggregate: (player_career_stats_v_aggregate_fields | null) - nodes: player_career_stats_v[] - __typename: 'player_career_stats_v_aggregate' -} - - -/** aggregate fields of "player_career_stats_v" */ -export interface player_career_stats_v_aggregate_fields { - avg: (player_career_stats_v_avg_fields | null) - count: Scalars['Int'] - max: (player_career_stats_v_max_fields | null) - min: (player_career_stats_v_min_fields | null) - stddev: (player_career_stats_v_stddev_fields | null) - stddev_pop: (player_career_stats_v_stddev_pop_fields | null) - stddev_samp: (player_career_stats_v_stddev_samp_fields | null) - sum: (player_career_stats_v_sum_fields | null) - var_pop: (player_career_stats_v_var_pop_fields | null) - var_samp: (player_career_stats_v_var_samp_fields | null) - variance: (player_career_stats_v_variance_fields | null) - __typename: 'player_career_stats_v_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface player_career_stats_v_avg_fields { - accuracy: (Scalars['Float'] | null) - accuracy_spotted: (Scalars['Float'] | null) - counter_strafe_pct: (Scalars['Float'] | null) - crosshair_deg: (Scalars['Float'] | null) - enemy_blind_pr: (Scalars['Float'] | null) - flash_assists_pr: (Scalars['Float'] | null) - hs_pct: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - maps: (Scalars['Float'] | null) - premier_rank: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - survival_pct: (Scalars['Float'] | null) - time_to_damage_s: (Scalars['Float'] | null) - traded_death_pct: (Scalars['Float'] | null) - util_efficiency: (Scalars['Float'] | null) - __typename: 'player_career_stats_v_avg_fields' -} - - -/** aggregate max on columns */ -export interface player_career_stats_v_max_fields { - accuracy: (Scalars['numeric'] | null) - accuracy_spotted: (Scalars['numeric'] | null) - counter_strafe_pct: (Scalars['numeric'] | null) - crosshair_deg: (Scalars['numeric'] | null) - enemy_blind_pr: (Scalars['numeric'] | null) - flash_assists_pr: (Scalars['numeric'] | null) - hs_pct: (Scalars['numeric'] | null) - kast_pct: (Scalars['numeric'] | null) - maps: (Scalars['Int'] | null) - premier_rank: (Scalars['Int'] | null) - rounds: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - survival_pct: (Scalars['numeric'] | null) - time_to_damage_s: (Scalars['numeric'] | null) - traded_death_pct: (Scalars['numeric'] | null) - util_efficiency: (Scalars['numeric'] | null) - __typename: 'player_career_stats_v_max_fields' -} - - -/** aggregate min on columns */ -export interface player_career_stats_v_min_fields { - accuracy: (Scalars['numeric'] | null) - accuracy_spotted: (Scalars['numeric'] | null) - counter_strafe_pct: (Scalars['numeric'] | null) - crosshair_deg: (Scalars['numeric'] | null) - enemy_blind_pr: (Scalars['numeric'] | null) - flash_assists_pr: (Scalars['numeric'] | null) - hs_pct: (Scalars['numeric'] | null) - kast_pct: (Scalars['numeric'] | null) - maps: (Scalars['Int'] | null) - premier_rank: (Scalars['Int'] | null) - rounds: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - survival_pct: (Scalars['numeric'] | null) - time_to_damage_s: (Scalars['numeric'] | null) - traded_death_pct: (Scalars['numeric'] | null) - util_efficiency: (Scalars['numeric'] | null) - __typename: 'player_career_stats_v_min_fields' -} - - -/** select columns of table "player_career_stats_v" */ -export type player_career_stats_v_select_column = 'accuracy' | 'accuracy_spotted' | 'counter_strafe_pct' | 'crosshair_deg' | 'enemy_blind_pr' | 'flash_assists_pr' | 'hs_pct' | 'kast_pct' | 'maps' | 'premier_rank' | 'rounds' | 'steam_id' | 'survival_pct' | 'time_to_damage_s' | 'traded_death_pct' | 'util_efficiency' - - -/** aggregate stddev on columns */ -export interface player_career_stats_v_stddev_fields { - accuracy: (Scalars['Float'] | null) - accuracy_spotted: (Scalars['Float'] | null) - counter_strafe_pct: (Scalars['Float'] | null) - crosshair_deg: (Scalars['Float'] | null) - enemy_blind_pr: (Scalars['Float'] | null) - flash_assists_pr: (Scalars['Float'] | null) - hs_pct: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - maps: (Scalars['Float'] | null) - premier_rank: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - survival_pct: (Scalars['Float'] | null) - time_to_damage_s: (Scalars['Float'] | null) - traded_death_pct: (Scalars['Float'] | null) - util_efficiency: (Scalars['Float'] | null) - __typename: 'player_career_stats_v_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface player_career_stats_v_stddev_pop_fields { - accuracy: (Scalars['Float'] | null) - accuracy_spotted: (Scalars['Float'] | null) - counter_strafe_pct: (Scalars['Float'] | null) - crosshair_deg: (Scalars['Float'] | null) - enemy_blind_pr: (Scalars['Float'] | null) - flash_assists_pr: (Scalars['Float'] | null) - hs_pct: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - maps: (Scalars['Float'] | null) - premier_rank: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - survival_pct: (Scalars['Float'] | null) - time_to_damage_s: (Scalars['Float'] | null) - traded_death_pct: (Scalars['Float'] | null) - util_efficiency: (Scalars['Float'] | null) - __typename: 'player_career_stats_v_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface player_career_stats_v_stddev_samp_fields { - accuracy: (Scalars['Float'] | null) - accuracy_spotted: (Scalars['Float'] | null) - counter_strafe_pct: (Scalars['Float'] | null) - crosshair_deg: (Scalars['Float'] | null) - enemy_blind_pr: (Scalars['Float'] | null) - flash_assists_pr: (Scalars['Float'] | null) - hs_pct: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - maps: (Scalars['Float'] | null) - premier_rank: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - survival_pct: (Scalars['Float'] | null) - time_to_damage_s: (Scalars['Float'] | null) - traded_death_pct: (Scalars['Float'] | null) - util_efficiency: (Scalars['Float'] | null) - __typename: 'player_career_stats_v_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface player_career_stats_v_sum_fields { - accuracy: (Scalars['numeric'] | null) - accuracy_spotted: (Scalars['numeric'] | null) - counter_strafe_pct: (Scalars['numeric'] | null) - crosshair_deg: (Scalars['numeric'] | null) - enemy_blind_pr: (Scalars['numeric'] | null) - flash_assists_pr: (Scalars['numeric'] | null) - hs_pct: (Scalars['numeric'] | null) - kast_pct: (Scalars['numeric'] | null) - maps: (Scalars['Int'] | null) - premier_rank: (Scalars['Int'] | null) - rounds: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - survival_pct: (Scalars['numeric'] | null) - time_to_damage_s: (Scalars['numeric'] | null) - traded_death_pct: (Scalars['numeric'] | null) - util_efficiency: (Scalars['numeric'] | null) - __typename: 'player_career_stats_v_sum_fields' -} - - -/** aggregate var_pop on columns */ -export interface player_career_stats_v_var_pop_fields { - accuracy: (Scalars['Float'] | null) - accuracy_spotted: (Scalars['Float'] | null) - counter_strafe_pct: (Scalars['Float'] | null) - crosshair_deg: (Scalars['Float'] | null) - enemy_blind_pr: (Scalars['Float'] | null) - flash_assists_pr: (Scalars['Float'] | null) - hs_pct: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - maps: (Scalars['Float'] | null) - premier_rank: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - survival_pct: (Scalars['Float'] | null) - time_to_damage_s: (Scalars['Float'] | null) - traded_death_pct: (Scalars['Float'] | null) - util_efficiency: (Scalars['Float'] | null) - __typename: 'player_career_stats_v_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface player_career_stats_v_var_samp_fields { - accuracy: (Scalars['Float'] | null) - accuracy_spotted: (Scalars['Float'] | null) - counter_strafe_pct: (Scalars['Float'] | null) - crosshair_deg: (Scalars['Float'] | null) - enemy_blind_pr: (Scalars['Float'] | null) - flash_assists_pr: (Scalars['Float'] | null) - hs_pct: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - maps: (Scalars['Float'] | null) - premier_rank: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - survival_pct: (Scalars['Float'] | null) - time_to_damage_s: (Scalars['Float'] | null) - traded_death_pct: (Scalars['Float'] | null) - util_efficiency: (Scalars['Float'] | null) - __typename: 'player_career_stats_v_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface player_career_stats_v_variance_fields { - accuracy: (Scalars['Float'] | null) - accuracy_spotted: (Scalars['Float'] | null) - counter_strafe_pct: (Scalars['Float'] | null) - crosshair_deg: (Scalars['Float'] | null) - enemy_blind_pr: (Scalars['Float'] | null) - flash_assists_pr: (Scalars['Float'] | null) - hs_pct: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - maps: (Scalars['Float'] | null) - premier_rank: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - survival_pct: (Scalars['Float'] | null) - time_to_damage_s: (Scalars['Float'] | null) - traded_death_pct: (Scalars['Float'] | null) - util_efficiency: (Scalars['Float'] | null) - __typename: 'player_career_stats_v_variance_fields' -} - - -/** columns and relationships of "player_damages" */ -export interface player_damages { - armor: Scalars['Int'] - attacked_location: Scalars['String'] - attacked_location_coordinates: (Scalars['String'] | null) - /** An object relationship */ - attacked_player: players - attacked_steam_id: Scalars['bigint'] - attacked_team: Scalars['String'] - attacker_location: (Scalars['String'] | null) - attacker_location_coordinates: (Scalars['String'] | null) - attacker_steam_id: (Scalars['bigint'] | null) - attacker_team: (Scalars['String'] | null) - damage: Scalars['Int'] - damage_armor: Scalars['Int'] - deleted_at: (Scalars['timestamptz'] | null) - health: Scalars['Int'] - hitgroup: Scalars['String'] - id: Scalars['uuid'] - /** An object relationship */ - match: matches - match_id: Scalars['uuid'] - /** An object relationship */ - match_map: match_maps - match_map_id: Scalars['uuid'] - /** An object relationship */ - player: (players | null) - round: Scalars['numeric'] - /** A computed field, executes function "is_team_damage" */ - team_damage: (Scalars['Boolean'] | null) - time: Scalars['timestamptz'] - with: (Scalars['String'] | null) - __typename: 'player_damages' -} - - -/** aggregated selection of "player_damages" */ -export interface player_damages_aggregate { - aggregate: (player_damages_aggregate_fields | null) - nodes: player_damages[] - __typename: 'player_damages_aggregate' -} - - -/** aggregate fields of "player_damages" */ -export interface player_damages_aggregate_fields { - avg: (player_damages_avg_fields | null) - count: Scalars['Int'] - max: (player_damages_max_fields | null) - min: (player_damages_min_fields | null) - stddev: (player_damages_stddev_fields | null) - stddev_pop: (player_damages_stddev_pop_fields | null) - stddev_samp: (player_damages_stddev_samp_fields | null) - sum: (player_damages_sum_fields | null) - var_pop: (player_damages_var_pop_fields | null) - var_samp: (player_damages_var_samp_fields | null) - variance: (player_damages_variance_fields | null) - __typename: 'player_damages_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface player_damages_avg_fields { - armor: (Scalars['Float'] | null) - attacked_steam_id: (Scalars['Float'] | null) - attacker_steam_id: (Scalars['Float'] | null) - damage: (Scalars['Float'] | null) - damage_armor: (Scalars['Float'] | null) - health: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'player_damages_avg_fields' -} - - -/** unique or primary key constraints on table "player_damages" */ -export type player_damages_constraint = 'player_damages_pkey' - - -/** aggregate max on columns */ -export interface player_damages_max_fields { - armor: (Scalars['Int'] | null) - attacked_location: (Scalars['String'] | null) - attacked_location_coordinates: (Scalars['String'] | null) - attacked_steam_id: (Scalars['bigint'] | null) - attacked_team: (Scalars['String'] | null) - attacker_location: (Scalars['String'] | null) - attacker_location_coordinates: (Scalars['String'] | null) - attacker_steam_id: (Scalars['bigint'] | null) - attacker_team: (Scalars['String'] | null) - damage: (Scalars['Int'] | null) - damage_armor: (Scalars['Int'] | null) - deleted_at: (Scalars['timestamptz'] | null) - health: (Scalars['Int'] | null) - hitgroup: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - match_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - round: (Scalars['numeric'] | null) - time: (Scalars['timestamptz'] | null) - with: (Scalars['String'] | null) - __typename: 'player_damages_max_fields' -} - - -/** aggregate min on columns */ -export interface player_damages_min_fields { - armor: (Scalars['Int'] | null) - attacked_location: (Scalars['String'] | null) - attacked_location_coordinates: (Scalars['String'] | null) - attacked_steam_id: (Scalars['bigint'] | null) - attacked_team: (Scalars['String'] | null) - attacker_location: (Scalars['String'] | null) - attacker_location_coordinates: (Scalars['String'] | null) - attacker_steam_id: (Scalars['bigint'] | null) - attacker_team: (Scalars['String'] | null) - damage: (Scalars['Int'] | null) - damage_armor: (Scalars['Int'] | null) - deleted_at: (Scalars['timestamptz'] | null) - health: (Scalars['Int'] | null) - hitgroup: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - match_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - round: (Scalars['numeric'] | null) - time: (Scalars['timestamptz'] | null) - with: (Scalars['String'] | null) - __typename: 'player_damages_min_fields' -} - - -/** response of any mutation on the table "player_damages" */ -export interface player_damages_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: player_damages[] - __typename: 'player_damages_mutation_response' -} - - -/** select columns of table "player_damages" */ -export type player_damages_select_column = 'armor' | 'attacked_location' | 'attacked_location_coordinates' | 'attacked_steam_id' | 'attacked_team' | 'attacker_location' | 'attacker_location_coordinates' | 'attacker_steam_id' | 'attacker_team' | 'damage' | 'damage_armor' | 'deleted_at' | 'health' | 'hitgroup' | 'id' | 'match_id' | 'match_map_id' | 'round' | 'time' | 'with' - - -/** aggregate stddev on columns */ -export interface player_damages_stddev_fields { - armor: (Scalars['Float'] | null) - attacked_steam_id: (Scalars['Float'] | null) - attacker_steam_id: (Scalars['Float'] | null) - damage: (Scalars['Float'] | null) - damage_armor: (Scalars['Float'] | null) - health: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'player_damages_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface player_damages_stddev_pop_fields { - armor: (Scalars['Float'] | null) - attacked_steam_id: (Scalars['Float'] | null) - attacker_steam_id: (Scalars['Float'] | null) - damage: (Scalars['Float'] | null) - damage_armor: (Scalars['Float'] | null) - health: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'player_damages_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface player_damages_stddev_samp_fields { - armor: (Scalars['Float'] | null) - attacked_steam_id: (Scalars['Float'] | null) - attacker_steam_id: (Scalars['Float'] | null) - damage: (Scalars['Float'] | null) - damage_armor: (Scalars['Float'] | null) - health: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'player_damages_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface player_damages_sum_fields { - armor: (Scalars['Int'] | null) - attacked_steam_id: (Scalars['bigint'] | null) - attacker_steam_id: (Scalars['bigint'] | null) - damage: (Scalars['Int'] | null) - damage_armor: (Scalars['Int'] | null) - health: (Scalars['Int'] | null) - round: (Scalars['numeric'] | null) - __typename: 'player_damages_sum_fields' -} - - -/** update columns of table "player_damages" */ -export type player_damages_update_column = 'armor' | 'attacked_location' | 'attacked_location_coordinates' | 'attacked_steam_id' | 'attacked_team' | 'attacker_location' | 'attacker_location_coordinates' | 'attacker_steam_id' | 'attacker_team' | 'damage' | 'damage_armor' | 'deleted_at' | 'health' | 'hitgroup' | 'id' | 'match_id' | 'match_map_id' | 'round' | 'time' | 'with' - - -/** aggregate var_pop on columns */ -export interface player_damages_var_pop_fields { - armor: (Scalars['Float'] | null) - attacked_steam_id: (Scalars['Float'] | null) - attacker_steam_id: (Scalars['Float'] | null) - damage: (Scalars['Float'] | null) - damage_armor: (Scalars['Float'] | null) - health: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'player_damages_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface player_damages_var_samp_fields { - armor: (Scalars['Float'] | null) - attacked_steam_id: (Scalars['Float'] | null) - attacker_steam_id: (Scalars['Float'] | null) - damage: (Scalars['Float'] | null) - damage_armor: (Scalars['Float'] | null) - health: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'player_damages_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface player_damages_variance_fields { - armor: (Scalars['Float'] | null) - attacked_steam_id: (Scalars['Float'] | null) - attacker_steam_id: (Scalars['Float'] | null) - damage: (Scalars['Float'] | null) - damage_armor: (Scalars['Float'] | null) - health: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'player_damages_variance_fields' -} - - -/** columns and relationships of "player_elo" */ -export interface player_elo { - actual_score: (Scalars['float8'] | null) - assists: (Scalars['Int'] | null) - change: Scalars['numeric'] - created_at: Scalars['timestamptz'] - current: Scalars['numeric'] - damage: (Scalars['Int'] | null) - damage_percent: (Scalars['float8'] | null) - deaths: (Scalars['Int'] | null) - expected_score: (Scalars['float8'] | null) - impact: (Scalars['numeric'] | null) - k_factor: (Scalars['Int'] | null) - kda: (Scalars['float8'] | null) - kills: (Scalars['Int'] | null) - map_losses: (Scalars['Int'] | null) - map_wins: (Scalars['Int'] | null) - /** An object relationship */ - match: matches - match_id: Scalars['uuid'] - opponent_team_elo_avg: (Scalars['float8'] | null) - performance_multiplier: (Scalars['float8'] | null) - /** An object relationship */ - player: players - player_team_elo_avg: (Scalars['float8'] | null) - rating_for_expected: (Scalars['float8'] | null) - /** An object relationship */ - season: (seasons | null) - season_id: (Scalars['uuid'] | null) - series_multiplier: (Scalars['Int'] | null) - steam_id: Scalars['bigint'] - team_avg_kda: (Scalars['float8'] | null) - type: e_match_types_enum - __typename: 'player_elo' -} - - -/** aggregated selection of "player_elo" */ -export interface player_elo_aggregate { - aggregate: (player_elo_aggregate_fields | null) - nodes: player_elo[] - __typename: 'player_elo_aggregate' -} - - -/** aggregate fields of "player_elo" */ -export interface player_elo_aggregate_fields { - avg: (player_elo_avg_fields | null) - count: Scalars['Int'] - max: (player_elo_max_fields | null) - min: (player_elo_min_fields | null) - stddev: (player_elo_stddev_fields | null) - stddev_pop: (player_elo_stddev_pop_fields | null) - stddev_samp: (player_elo_stddev_samp_fields | null) - sum: (player_elo_sum_fields | null) - var_pop: (player_elo_var_pop_fields | null) - var_samp: (player_elo_var_samp_fields | null) - variance: (player_elo_variance_fields | null) - __typename: 'player_elo_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface player_elo_avg_fields { - actual_score: (Scalars['Float'] | null) - assists: (Scalars['Float'] | null) - change: (Scalars['Float'] | null) - current: (Scalars['Float'] | null) - damage: (Scalars['Float'] | null) - damage_percent: (Scalars['Float'] | null) - deaths: (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_team_elo_avg: (Scalars['Float'] | null) - rating_for_expected: (Scalars['Float'] | null) - series_multiplier: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - team_avg_kda: (Scalars['Float'] | null) - __typename: 'player_elo_avg_fields' -} - - -/** unique or primary key constraints on table "player_elo" */ -export type player_elo_constraint = 'player_elo_pkey' - - -/** aggregate max on columns */ -export interface player_elo_max_fields { - actual_score: (Scalars['float8'] | null) - assists: (Scalars['Int'] | null) - change: (Scalars['numeric'] | null) - created_at: (Scalars['timestamptz'] | null) - current: (Scalars['numeric'] | null) - damage: (Scalars['Int'] | null) - damage_percent: (Scalars['float8'] | null) - deaths: (Scalars['Int'] | null) - expected_score: (Scalars['float8'] | null) - impact: (Scalars['numeric'] | null) - k_factor: (Scalars['Int'] | null) - kda: (Scalars['float8'] | null) - kills: (Scalars['Int'] | null) - map_losses: (Scalars['Int'] | null) - map_wins: (Scalars['Int'] | null) - match_id: (Scalars['uuid'] | null) - opponent_team_elo_avg: (Scalars['float8'] | null) - performance_multiplier: (Scalars['float8'] | null) - player_team_elo_avg: (Scalars['float8'] | null) - rating_for_expected: (Scalars['float8'] | null) - season_id: (Scalars['uuid'] | null) - series_multiplier: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - team_avg_kda: (Scalars['float8'] | null) - __typename: 'player_elo_max_fields' -} - - -/** aggregate min on columns */ -export interface player_elo_min_fields { - actual_score: (Scalars['float8'] | null) - assists: (Scalars['Int'] | null) - change: (Scalars['numeric'] | null) - created_at: (Scalars['timestamptz'] | null) - current: (Scalars['numeric'] | null) - damage: (Scalars['Int'] | null) - damage_percent: (Scalars['float8'] | null) - deaths: (Scalars['Int'] | null) - expected_score: (Scalars['float8'] | null) - impact: (Scalars['numeric'] | null) - k_factor: (Scalars['Int'] | null) - kda: (Scalars['float8'] | null) - kills: (Scalars['Int'] | null) - map_losses: (Scalars['Int'] | null) - map_wins: (Scalars['Int'] | null) - match_id: (Scalars['uuid'] | null) - opponent_team_elo_avg: (Scalars['float8'] | null) - performance_multiplier: (Scalars['float8'] | null) - player_team_elo_avg: (Scalars['float8'] | null) - rating_for_expected: (Scalars['float8'] | null) - season_id: (Scalars['uuid'] | null) - series_multiplier: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - team_avg_kda: (Scalars['float8'] | null) - __typename: 'player_elo_min_fields' -} - - -/** response of any mutation on the table "player_elo" */ -export interface player_elo_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: player_elo[] - __typename: 'player_elo_mutation_response' -} - - -/** select columns of table "player_elo" */ -export type player_elo_select_column = 'actual_score' | 'assists' | 'change' | 'created_at' | 'current' | 'damage' | 'damage_percent' | 'deaths' | 'expected_score' | 'impact' | 'k_factor' | 'kda' | 'kills' | 'map_losses' | 'map_wins' | 'match_id' | 'opponent_team_elo_avg' | 'performance_multiplier' | 'player_team_elo_avg' | 'rating_for_expected' | 'season_id' | 'series_multiplier' | 'steam_id' | 'team_avg_kda' | 'type' - - -/** aggregate stddev on columns */ -export interface player_elo_stddev_fields { - actual_score: (Scalars['Float'] | null) - assists: (Scalars['Float'] | null) - change: (Scalars['Float'] | null) - current: (Scalars['Float'] | null) - damage: (Scalars['Float'] | null) - damage_percent: (Scalars['Float'] | null) - deaths: (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_team_elo_avg: (Scalars['Float'] | null) - rating_for_expected: (Scalars['Float'] | null) - series_multiplier: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - team_avg_kda: (Scalars['Float'] | null) - __typename: 'player_elo_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface player_elo_stddev_pop_fields { - actual_score: (Scalars['Float'] | null) - assists: (Scalars['Float'] | null) - change: (Scalars['Float'] | null) - current: (Scalars['Float'] | null) - damage: (Scalars['Float'] | null) - damage_percent: (Scalars['Float'] | null) - deaths: (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_team_elo_avg: (Scalars['Float'] | null) - rating_for_expected: (Scalars['Float'] | null) - series_multiplier: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - team_avg_kda: (Scalars['Float'] | null) - __typename: 'player_elo_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface player_elo_stddev_samp_fields { - actual_score: (Scalars['Float'] | null) - assists: (Scalars['Float'] | null) - change: (Scalars['Float'] | null) - current: (Scalars['Float'] | null) - damage: (Scalars['Float'] | null) - damage_percent: (Scalars['Float'] | null) - deaths: (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_team_elo_avg: (Scalars['Float'] | null) - rating_for_expected: (Scalars['Float'] | null) - series_multiplier: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - team_avg_kda: (Scalars['Float'] | null) - __typename: 'player_elo_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface player_elo_sum_fields { - actual_score: (Scalars['float8'] | null) - assists: (Scalars['Int'] | null) - change: (Scalars['numeric'] | null) - current: (Scalars['numeric'] | null) - damage: (Scalars['Int'] | null) - damage_percent: (Scalars['float8'] | null) - deaths: (Scalars['Int'] | null) - expected_score: (Scalars['float8'] | null) - impact: (Scalars['numeric'] | 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_team_elo_avg: (Scalars['float8'] | null) - rating_for_expected: (Scalars['float8'] | null) - series_multiplier: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - team_avg_kda: (Scalars['float8'] | null) - __typename: 'player_elo_sum_fields' -} - - -/** update columns of table "player_elo" */ -export type player_elo_update_column = 'actual_score' | 'assists' | 'change' | 'created_at' | 'current' | 'damage' | 'damage_percent' | 'deaths' | 'expected_score' | 'impact' | 'k_factor' | 'kda' | 'kills' | 'map_losses' | 'map_wins' | 'match_id' | 'opponent_team_elo_avg' | 'performance_multiplier' | 'player_team_elo_avg' | 'rating_for_expected' | 'season_id' | 'series_multiplier' | 'steam_id' | 'team_avg_kda' | 'type' - - -/** aggregate var_pop on columns */ -export interface player_elo_var_pop_fields { - actual_score: (Scalars['Float'] | null) - assists: (Scalars['Float'] | null) - change: (Scalars['Float'] | null) - current: (Scalars['Float'] | null) - damage: (Scalars['Float'] | null) - damage_percent: (Scalars['Float'] | null) - deaths: (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_team_elo_avg: (Scalars['Float'] | null) - rating_for_expected: (Scalars['Float'] | null) - series_multiplier: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - team_avg_kda: (Scalars['Float'] | null) - __typename: 'player_elo_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface player_elo_var_samp_fields { - actual_score: (Scalars['Float'] | null) - assists: (Scalars['Float'] | null) - change: (Scalars['Float'] | null) - current: (Scalars['Float'] | null) - damage: (Scalars['Float'] | null) - damage_percent: (Scalars['Float'] | null) - deaths: (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_team_elo_avg: (Scalars['Float'] | null) - rating_for_expected: (Scalars['Float'] | null) - series_multiplier: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - team_avg_kda: (Scalars['Float'] | null) - __typename: 'player_elo_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface player_elo_variance_fields { - actual_score: (Scalars['Float'] | null) - assists: (Scalars['Float'] | null) - change: (Scalars['Float'] | null) - current: (Scalars['Float'] | null) - damage: (Scalars['Float'] | null) - damage_percent: (Scalars['Float'] | null) - deaths: (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_team_elo_avg: (Scalars['Float'] | null) - rating_for_expected: (Scalars['Float'] | null) - series_multiplier: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - team_avg_kda: (Scalars['Float'] | null) - __typename: 'player_elo_variance_fields' -} - - -/** columns and relationships of "player_faceit_rank_history" */ -export interface player_faceit_rank_history { - elo: (Scalars['Int'] | null) - id: Scalars['uuid'] - /** An object relationship */ - match: matches - match_id: Scalars['uuid'] - observed_at: Scalars['timestamptz'] - /** An object relationship */ - player: players - previous_rank: (Scalars['Int'] | null) - skill_level: Scalars['Int'] - steam_id: Scalars['bigint'] - __typename: 'player_faceit_rank_history' -} - - -/** aggregated selection of "player_faceit_rank_history" */ -export interface player_faceit_rank_history_aggregate { - aggregate: (player_faceit_rank_history_aggregate_fields | null) - nodes: player_faceit_rank_history[] - __typename: 'player_faceit_rank_history_aggregate' -} - - -/** aggregate fields of "player_faceit_rank_history" */ -export interface player_faceit_rank_history_aggregate_fields { - avg: (player_faceit_rank_history_avg_fields | null) - count: Scalars['Int'] - max: (player_faceit_rank_history_max_fields | null) - min: (player_faceit_rank_history_min_fields | null) - stddev: (player_faceit_rank_history_stddev_fields | null) - stddev_pop: (player_faceit_rank_history_stddev_pop_fields | null) - stddev_samp: (player_faceit_rank_history_stddev_samp_fields | null) - sum: (player_faceit_rank_history_sum_fields | null) - var_pop: (player_faceit_rank_history_var_pop_fields | null) - var_samp: (player_faceit_rank_history_var_samp_fields | null) - variance: (player_faceit_rank_history_variance_fields | null) - __typename: 'player_faceit_rank_history_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface player_faceit_rank_history_avg_fields { - elo: (Scalars['Float'] | null) - previous_rank: (Scalars['Float'] | null) - skill_level: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'player_faceit_rank_history_avg_fields' -} - - -/** unique or primary key constraints on table "player_faceit_rank_history" */ -export type player_faceit_rank_history_constraint = 'player_faceit_rank_history_pkey' | 'uq_player_faceit_rank_history_steam_match' - - -/** aggregate max on columns */ -export interface player_faceit_rank_history_max_fields { - elo: (Scalars['Int'] | null) - id: (Scalars['uuid'] | null) - match_id: (Scalars['uuid'] | null) - observed_at: (Scalars['timestamptz'] | null) - previous_rank: (Scalars['Int'] | null) - skill_level: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'player_faceit_rank_history_max_fields' -} - - -/** aggregate min on columns */ -export interface player_faceit_rank_history_min_fields { - elo: (Scalars['Int'] | null) - id: (Scalars['uuid'] | null) - match_id: (Scalars['uuid'] | null) - observed_at: (Scalars['timestamptz'] | null) - previous_rank: (Scalars['Int'] | null) - skill_level: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'player_faceit_rank_history_min_fields' -} - - -/** response of any mutation on the table "player_faceit_rank_history" */ -export interface player_faceit_rank_history_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: player_faceit_rank_history[] - __typename: 'player_faceit_rank_history_mutation_response' -} - - -/** select columns of table "player_faceit_rank_history" */ -export type player_faceit_rank_history_select_column = 'elo' | 'id' | 'match_id' | 'observed_at' | 'previous_rank' | 'skill_level' | 'steam_id' - - -/** aggregate stddev on columns */ -export interface player_faceit_rank_history_stddev_fields { - elo: (Scalars['Float'] | null) - previous_rank: (Scalars['Float'] | null) - skill_level: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'player_faceit_rank_history_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface player_faceit_rank_history_stddev_pop_fields { - elo: (Scalars['Float'] | null) - previous_rank: (Scalars['Float'] | null) - skill_level: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'player_faceit_rank_history_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface player_faceit_rank_history_stddev_samp_fields { - elo: (Scalars['Float'] | null) - previous_rank: (Scalars['Float'] | null) - skill_level: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'player_faceit_rank_history_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface player_faceit_rank_history_sum_fields { - elo: (Scalars['Int'] | null) - previous_rank: (Scalars['Int'] | null) - skill_level: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'player_faceit_rank_history_sum_fields' -} - - -/** update columns of table "player_faceit_rank_history" */ -export type player_faceit_rank_history_update_column = 'elo' | 'id' | 'match_id' | 'observed_at' | 'previous_rank' | 'skill_level' | 'steam_id' - - -/** aggregate var_pop on columns */ -export interface player_faceit_rank_history_var_pop_fields { - elo: (Scalars['Float'] | null) - previous_rank: (Scalars['Float'] | null) - skill_level: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'player_faceit_rank_history_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface player_faceit_rank_history_var_samp_fields { - elo: (Scalars['Float'] | null) - previous_rank: (Scalars['Float'] | null) - skill_level: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'player_faceit_rank_history_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface player_faceit_rank_history_variance_fields { - elo: (Scalars['Float'] | null) - previous_rank: (Scalars['Float'] | null) - skill_level: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'player_faceit_rank_history_variance_fields' -} - - -/** columns and relationships of "player_flashes" */ -export interface player_flashes { - attacked_steam_id: Scalars['bigint'] - attacker_steam_id: Scalars['bigint'] - /** An object relationship */ - blinded: players - deleted_at: (Scalars['timestamptz'] | null) - duration: Scalars['numeric'] - /** An object relationship */ - match: matches - match_id: Scalars['uuid'] - /** An object relationship */ - match_map: match_maps - match_map_id: Scalars['uuid'] - round: Scalars['Int'] - team_flash: Scalars['Boolean'] - /** An object relationship */ - thrown_by: players - time: Scalars['timestamptz'] - __typename: 'player_flashes' -} - - -/** aggregated selection of "player_flashes" */ -export interface player_flashes_aggregate { - aggregate: (player_flashes_aggregate_fields | null) - nodes: player_flashes[] - __typename: 'player_flashes_aggregate' -} - - -/** aggregate fields of "player_flashes" */ -export interface player_flashes_aggregate_fields { - avg: (player_flashes_avg_fields | null) - count: Scalars['Int'] - max: (player_flashes_max_fields | null) - min: (player_flashes_min_fields | null) - stddev: (player_flashes_stddev_fields | null) - stddev_pop: (player_flashes_stddev_pop_fields | null) - stddev_samp: (player_flashes_stddev_samp_fields | null) - sum: (player_flashes_sum_fields | null) - var_pop: (player_flashes_var_pop_fields | null) - var_samp: (player_flashes_var_samp_fields | null) - variance: (player_flashes_variance_fields | null) - __typename: 'player_flashes_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface player_flashes_avg_fields { - attacked_steam_id: (Scalars['Float'] | null) - attacker_steam_id: (Scalars['Float'] | null) - duration: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'player_flashes_avg_fields' -} - - -/** unique or primary key constraints on table "player_flashes" */ -export type player_flashes_constraint = 'player_flashes_pkey' - - -/** aggregate max on columns */ -export interface player_flashes_max_fields { - attacked_steam_id: (Scalars['bigint'] | null) - attacker_steam_id: (Scalars['bigint'] | null) - deleted_at: (Scalars['timestamptz'] | null) - duration: (Scalars['numeric'] | null) - match_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - round: (Scalars['Int'] | null) - time: (Scalars['timestamptz'] | null) - __typename: 'player_flashes_max_fields' -} - - -/** aggregate min on columns */ -export interface player_flashes_min_fields { - attacked_steam_id: (Scalars['bigint'] | null) - attacker_steam_id: (Scalars['bigint'] | null) - deleted_at: (Scalars['timestamptz'] | null) - duration: (Scalars['numeric'] | null) - match_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - round: (Scalars['Int'] | null) - time: (Scalars['timestamptz'] | null) - __typename: 'player_flashes_min_fields' -} - - -/** response of any mutation on the table "player_flashes" */ -export interface player_flashes_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: player_flashes[] - __typename: 'player_flashes_mutation_response' -} - - -/** select columns of table "player_flashes" */ -export type player_flashes_select_column = 'attacked_steam_id' | 'attacker_steam_id' | 'deleted_at' | 'duration' | 'match_id' | 'match_map_id' | 'round' | 'team_flash' | 'time' - - -/** select "player_flashes_aggregate_bool_exp_bool_and_arguments_columns" columns of table "player_flashes" */ -export type player_flashes_select_column_player_flashes_aggregate_bool_exp_bool_and_arguments_columns = 'team_flash' - - -/** select "player_flashes_aggregate_bool_exp_bool_or_arguments_columns" columns of table "player_flashes" */ -export type player_flashes_select_column_player_flashes_aggregate_bool_exp_bool_or_arguments_columns = 'team_flash' - - -/** aggregate stddev on columns */ -export interface player_flashes_stddev_fields { - attacked_steam_id: (Scalars['Float'] | null) - attacker_steam_id: (Scalars['Float'] | null) - duration: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'player_flashes_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface player_flashes_stddev_pop_fields { - attacked_steam_id: (Scalars['Float'] | null) - attacker_steam_id: (Scalars['Float'] | null) - duration: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'player_flashes_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface player_flashes_stddev_samp_fields { - attacked_steam_id: (Scalars['Float'] | null) - attacker_steam_id: (Scalars['Float'] | null) - duration: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'player_flashes_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface player_flashes_sum_fields { - attacked_steam_id: (Scalars['bigint'] | null) - attacker_steam_id: (Scalars['bigint'] | null) - duration: (Scalars['numeric'] | null) - round: (Scalars['Int'] | null) - __typename: 'player_flashes_sum_fields' -} - - -/** update columns of table "player_flashes" */ -export type player_flashes_update_column = 'attacked_steam_id' | 'attacker_steam_id' | 'deleted_at' | 'duration' | 'match_id' | 'match_map_id' | 'round' | 'team_flash' | 'time' - - -/** aggregate var_pop on columns */ -export interface player_flashes_var_pop_fields { - attacked_steam_id: (Scalars['Float'] | null) - attacker_steam_id: (Scalars['Float'] | null) - duration: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'player_flashes_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface player_flashes_var_samp_fields { - attacked_steam_id: (Scalars['Float'] | null) - attacker_steam_id: (Scalars['Float'] | null) - duration: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'player_flashes_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface player_flashes_variance_fields { - attacked_steam_id: (Scalars['Float'] | null) - attacker_steam_id: (Scalars['Float'] | null) - duration: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'player_flashes_variance_fields' -} - - -/** columns and relationships of "player_kills" */ -export interface player_kills { - assisted: Scalars['Boolean'] - attacked_location: Scalars['String'] - attacked_location_coordinates: (Scalars['String'] | null) - /** An object relationship */ - attacked_player: players - attacked_steam_id: Scalars['bigint'] - attacked_team: Scalars['String'] - attacker_location: (Scalars['String'] | null) - attacker_location_coordinates: (Scalars['String'] | null) - attacker_steam_id: Scalars['bigint'] - attacker_team: (Scalars['String'] | null) - blinded: Scalars['Boolean'] - deleted_at: (Scalars['timestamptz'] | null) - headshot: Scalars['Boolean'] - hitgroup: Scalars['String'] - in_air: Scalars['Boolean'] - /** A computed field, executes function "is_suicide" */ - is_suicide: (Scalars['Boolean'] | null) - /** An object relationship */ - match: matches - match_id: Scalars['uuid'] - /** An object relationship */ - match_map: match_maps - match_map_id: Scalars['uuid'] - no_scope: Scalars['Boolean'] - /** An object relationship */ - player: players - round: Scalars['Int'] - /** A computed field, executes function "is_team_kill" */ - team_kill: (Scalars['Boolean'] | null) - thru_smoke: Scalars['Boolean'] - thru_wall: Scalars['Boolean'] - time: Scalars['timestamptz'] - with: (Scalars['String'] | null) - __typename: 'player_kills' -} - - -/** aggregated selection of "player_kills" */ -export interface player_kills_aggregate { - aggregate: (player_kills_aggregate_fields | null) - nodes: player_kills[] - __typename: 'player_kills_aggregate' -} - - -/** aggregate fields of "player_kills" */ -export interface player_kills_aggregate_fields { - avg: (player_kills_avg_fields | null) - count: Scalars['Int'] - max: (player_kills_max_fields | null) - min: (player_kills_min_fields | null) - stddev: (player_kills_stddev_fields | null) - stddev_pop: (player_kills_stddev_pop_fields | null) - stddev_samp: (player_kills_stddev_samp_fields | null) - sum: (player_kills_sum_fields | null) - var_pop: (player_kills_var_pop_fields | null) - var_samp: (player_kills_var_samp_fields | null) - variance: (player_kills_variance_fields | null) - __typename: 'player_kills_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface player_kills_avg_fields { - attacked_steam_id: (Scalars['Float'] | null) - attacker_steam_id: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'player_kills_avg_fields' -} - - -/** columns and relationships of "player_kills_by_weapon" */ -export interface player_kills_by_weapon { - kill_count: Scalars['bigint'] - /** An object relationship */ - player: players - player_steam_id: Scalars['bigint'] - with: Scalars['String'] - __typename: 'player_kills_by_weapon' -} - - -/** aggregated selection of "player_kills_by_weapon" */ -export interface player_kills_by_weapon_aggregate { - aggregate: (player_kills_by_weapon_aggregate_fields | null) - nodes: player_kills_by_weapon[] - __typename: 'player_kills_by_weapon_aggregate' -} - - -/** aggregate fields of "player_kills_by_weapon" */ -export interface player_kills_by_weapon_aggregate_fields { - avg: (player_kills_by_weapon_avg_fields | null) - count: Scalars['Int'] - max: (player_kills_by_weapon_max_fields | null) - min: (player_kills_by_weapon_min_fields | null) - stddev: (player_kills_by_weapon_stddev_fields | null) - stddev_pop: (player_kills_by_weapon_stddev_pop_fields | null) - stddev_samp: (player_kills_by_weapon_stddev_samp_fields | null) - sum: (player_kills_by_weapon_sum_fields | null) - var_pop: (player_kills_by_weapon_var_pop_fields | null) - var_samp: (player_kills_by_weapon_var_samp_fields | null) - variance: (player_kills_by_weapon_variance_fields | null) - __typename: 'player_kills_by_weapon_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface player_kills_by_weapon_avg_fields { - kill_count: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'player_kills_by_weapon_avg_fields' -} - - -/** unique or primary key constraints on table "player_kills_by_weapon" */ -export type player_kills_by_weapon_constraint = 'player_kills_by_weapon_pkey' - - -/** aggregate max on columns */ -export interface player_kills_by_weapon_max_fields { - kill_count: (Scalars['bigint'] | null) - player_steam_id: (Scalars['bigint'] | null) - with: (Scalars['String'] | null) - __typename: 'player_kills_by_weapon_max_fields' -} - - -/** aggregate min on columns */ -export interface player_kills_by_weapon_min_fields { - kill_count: (Scalars['bigint'] | null) - player_steam_id: (Scalars['bigint'] | null) - with: (Scalars['String'] | null) - __typename: 'player_kills_by_weapon_min_fields' -} - - -/** response of any mutation on the table "player_kills_by_weapon" */ -export interface player_kills_by_weapon_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: player_kills_by_weapon[] - __typename: 'player_kills_by_weapon_mutation_response' -} - - -/** select columns of table "player_kills_by_weapon" */ -export type player_kills_by_weapon_select_column = 'kill_count' | 'player_steam_id' | 'with' - - -/** aggregate stddev on columns */ -export interface player_kills_by_weapon_stddev_fields { - kill_count: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'player_kills_by_weapon_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface player_kills_by_weapon_stddev_pop_fields { - kill_count: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'player_kills_by_weapon_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface player_kills_by_weapon_stddev_samp_fields { - kill_count: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'player_kills_by_weapon_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface player_kills_by_weapon_sum_fields { - kill_count: (Scalars['bigint'] | null) - player_steam_id: (Scalars['bigint'] | null) - __typename: 'player_kills_by_weapon_sum_fields' -} - - -/** update columns of table "player_kills_by_weapon" */ -export type player_kills_by_weapon_update_column = 'kill_count' | 'player_steam_id' | 'with' - - -/** aggregate var_pop on columns */ -export interface player_kills_by_weapon_var_pop_fields { - kill_count: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'player_kills_by_weapon_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface player_kills_by_weapon_var_samp_fields { - kill_count: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'player_kills_by_weapon_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface player_kills_by_weapon_variance_fields { - kill_count: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'player_kills_by_weapon_variance_fields' -} - - -/** unique or primary key constraints on table "player_kills" */ -export type player_kills_constraint = 'player_kills_pkey' - - -/** aggregate max on columns */ -export interface player_kills_max_fields { - attacked_location: (Scalars['String'] | null) - attacked_location_coordinates: (Scalars['String'] | null) - attacked_steam_id: (Scalars['bigint'] | null) - attacked_team: (Scalars['String'] | null) - attacker_location: (Scalars['String'] | null) - attacker_location_coordinates: (Scalars['String'] | null) - attacker_steam_id: (Scalars['bigint'] | null) - attacker_team: (Scalars['String'] | null) - deleted_at: (Scalars['timestamptz'] | null) - hitgroup: (Scalars['String'] | null) - match_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - round: (Scalars['Int'] | null) - time: (Scalars['timestamptz'] | null) - with: (Scalars['String'] | null) - __typename: 'player_kills_max_fields' -} - - -/** aggregate min on columns */ -export interface player_kills_min_fields { - attacked_location: (Scalars['String'] | null) - attacked_location_coordinates: (Scalars['String'] | null) - attacked_steam_id: (Scalars['bigint'] | null) - attacked_team: (Scalars['String'] | null) - attacker_location: (Scalars['String'] | null) - attacker_location_coordinates: (Scalars['String'] | null) - attacker_steam_id: (Scalars['bigint'] | null) - attacker_team: (Scalars['String'] | null) - deleted_at: (Scalars['timestamptz'] | null) - hitgroup: (Scalars['String'] | null) - match_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - round: (Scalars['Int'] | null) - time: (Scalars['timestamptz'] | null) - with: (Scalars['String'] | null) - __typename: 'player_kills_min_fields' -} - - -/** response of any mutation on the table "player_kills" */ -export interface player_kills_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: player_kills[] - __typename: 'player_kills_mutation_response' -} - - -/** select columns of table "player_kills" */ -export type player_kills_select_column = 'assisted' | 'attacked_location' | 'attacked_location_coordinates' | 'attacked_steam_id' | 'attacked_team' | 'attacker_location' | 'attacker_location_coordinates' | 'attacker_steam_id' | 'attacker_team' | 'blinded' | 'deleted_at' | 'headshot' | 'hitgroup' | 'in_air' | 'match_id' | 'match_map_id' | 'no_scope' | 'round' | 'thru_smoke' | 'thru_wall' | 'time' | 'with' - - -/** select "player_kills_aggregate_bool_exp_bool_and_arguments_columns" columns of table "player_kills" */ -export type player_kills_select_column_player_kills_aggregate_bool_exp_bool_and_arguments_columns = 'assisted' | 'blinded' | 'headshot' | 'in_air' | 'no_scope' | 'thru_smoke' | 'thru_wall' - - -/** select "player_kills_aggregate_bool_exp_bool_or_arguments_columns" columns of table "player_kills" */ -export type player_kills_select_column_player_kills_aggregate_bool_exp_bool_or_arguments_columns = 'assisted' | 'blinded' | 'headshot' | 'in_air' | 'no_scope' | 'thru_smoke' | 'thru_wall' - - -/** aggregate stddev on columns */ -export interface player_kills_stddev_fields { - attacked_steam_id: (Scalars['Float'] | null) - attacker_steam_id: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'player_kills_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface player_kills_stddev_pop_fields { - attacked_steam_id: (Scalars['Float'] | null) - attacker_steam_id: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'player_kills_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface player_kills_stddev_samp_fields { - attacked_steam_id: (Scalars['Float'] | null) - attacker_steam_id: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'player_kills_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface player_kills_sum_fields { - attacked_steam_id: (Scalars['bigint'] | null) - attacker_steam_id: (Scalars['bigint'] | null) - round: (Scalars['Int'] | null) - __typename: 'player_kills_sum_fields' -} - - -/** update columns of table "player_kills" */ -export type player_kills_update_column = 'assisted' | 'attacked_location' | 'attacked_location_coordinates' | 'attacked_steam_id' | 'attacked_team' | 'attacker_location' | 'attacker_location_coordinates' | 'attacker_steam_id' | 'attacker_team' | 'blinded' | 'deleted_at' | 'headshot' | 'hitgroup' | 'in_air' | 'match_id' | 'match_map_id' | 'no_scope' | 'round' | 'thru_smoke' | 'thru_wall' | 'time' | 'with' - - -/** aggregate var_pop on columns */ -export interface player_kills_var_pop_fields { - attacked_steam_id: (Scalars['Float'] | null) - attacker_steam_id: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'player_kills_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface player_kills_var_samp_fields { - attacked_steam_id: (Scalars['Float'] | null) - attacker_steam_id: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'player_kills_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface player_kills_variance_fields { - attacked_steam_id: (Scalars['Float'] | null) - attacker_steam_id: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'player_kills_variance_fields' -} - - -/** columns and relationships of "player_leaderboard_rank" */ -export interface player_leaderboard_rank { - player_steam_id: Scalars['String'] - rank: Scalars['Int'] - total: Scalars['Int'] - value: Scalars['float8'] - __typename: 'player_leaderboard_rank' -} - -export interface player_leaderboard_rank_aggregate { - aggregate: (player_leaderboard_rank_aggregate_fields | null) - nodes: player_leaderboard_rank[] - __typename: 'player_leaderboard_rank_aggregate' -} - - -/** aggregate fields of "player_leaderboard_rank" */ -export interface player_leaderboard_rank_aggregate_fields { - avg: (player_leaderboard_rank_avg_fields | null) - count: Scalars['Int'] - max: (player_leaderboard_rank_max_fields | null) - min: (player_leaderboard_rank_min_fields | null) - stddev: (player_leaderboard_rank_stddev_fields | null) - stddev_pop: (player_leaderboard_rank_stddev_pop_fields | null) - stddev_samp: (player_leaderboard_rank_stddev_samp_fields | null) - sum: (player_leaderboard_rank_sum_fields | null) - var_pop: (player_leaderboard_rank_var_pop_fields | null) - var_samp: (player_leaderboard_rank_var_samp_fields | null) - variance: (player_leaderboard_rank_variance_fields | null) - __typename: 'player_leaderboard_rank_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface player_leaderboard_rank_avg_fields { - rank: (Scalars['Float'] | null) - total: (Scalars['Float'] | null) - value: (Scalars['Float'] | null) - __typename: 'player_leaderboard_rank_avg_fields' -} - - -/** aggregate max on columns */ -export interface player_leaderboard_rank_max_fields { - player_steam_id: (Scalars['String'] | null) - rank: (Scalars['Int'] | null) - total: (Scalars['Int'] | null) - value: (Scalars['float8'] | null) - __typename: 'player_leaderboard_rank_max_fields' -} - - -/** aggregate min on columns */ -export interface player_leaderboard_rank_min_fields { - player_steam_id: (Scalars['String'] | null) - rank: (Scalars['Int'] | null) - total: (Scalars['Int'] | null) - value: (Scalars['float8'] | null) - __typename: 'player_leaderboard_rank_min_fields' -} - - -/** response of any mutation on the table "player_leaderboard_rank" */ -export interface player_leaderboard_rank_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: player_leaderboard_rank[] - __typename: 'player_leaderboard_rank_mutation_response' -} - - -/** select columns of table "player_leaderboard_rank" */ -export type player_leaderboard_rank_select_column = 'player_steam_id' | 'rank' | 'total' | 'value' - - -/** aggregate stddev on columns */ -export interface player_leaderboard_rank_stddev_fields { - rank: (Scalars['Float'] | null) - total: (Scalars['Float'] | null) - value: (Scalars['Float'] | null) - __typename: 'player_leaderboard_rank_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface player_leaderboard_rank_stddev_pop_fields { - rank: (Scalars['Float'] | null) - total: (Scalars['Float'] | null) - value: (Scalars['Float'] | null) - __typename: 'player_leaderboard_rank_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface player_leaderboard_rank_stddev_samp_fields { - rank: (Scalars['Float'] | null) - total: (Scalars['Float'] | null) - value: (Scalars['Float'] | null) - __typename: 'player_leaderboard_rank_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface player_leaderboard_rank_sum_fields { - rank: (Scalars['Int'] | null) - total: (Scalars['Int'] | null) - value: (Scalars['float8'] | null) - __typename: 'player_leaderboard_rank_sum_fields' -} - - -/** aggregate var_pop on columns */ -export interface player_leaderboard_rank_var_pop_fields { - rank: (Scalars['Float'] | null) - total: (Scalars['Float'] | null) - value: (Scalars['Float'] | null) - __typename: 'player_leaderboard_rank_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface player_leaderboard_rank_var_samp_fields { - rank: (Scalars['Float'] | null) - total: (Scalars['Float'] | null) - value: (Scalars['Float'] | null) - __typename: 'player_leaderboard_rank_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface player_leaderboard_rank_variance_fields { - rank: (Scalars['Float'] | null) - total: (Scalars['Float'] | null) - value: (Scalars['Float'] | null) - __typename: 'player_leaderboard_rank_variance_fields' -} - - -/** columns and relationships of "player_match_map_stats" */ -export interface player_match_map_stats { - assists: Scalars['Int'] - assists_ct: Scalars['Int'] - assists_t: Scalars['Int'] - counter_strafe_eligible_shots: Scalars['Int'] - counter_strafed_shots: Scalars['Int'] - crosshair_angle_count: Scalars['Int'] - crosshair_angle_sum_deg: Scalars['numeric'] - damage: Scalars['Int'] - damage_ct: Scalars['Int'] - damage_t: Scalars['Int'] - deaths: Scalars['Int'] - deaths_ct: Scalars['Int'] - deaths_t: Scalars['Int'] - decoy_throws: Scalars['Int'] - enemies_flashed: Scalars['Int'] - first_bullet_hits: Scalars['Int'] - first_bullet_shots: Scalars['Int'] - five_kill_rounds: Scalars['Int'] - flash_assists: Scalars['Int'] - flash_duration_count: Scalars['Int'] - flash_duration_sum: Scalars['numeric'] - flashes_thrown: Scalars['Int'] - four_kill_rounds: Scalars['Int'] - he_damage: Scalars['Int'] - he_team_damage: Scalars['Int'] - he_throws: Scalars['Int'] - headshot_hits: Scalars['Int'] - hits: Scalars['Int'] - hits_at_spotted: Scalars['Int'] - hs_kills: Scalars['Int'] - hs_kills_ct: Scalars['Int'] - hs_kills_t: Scalars['Int'] - kast_rounds: Scalars['Int'] - kast_total_rounds: Scalars['Int'] - kills: Scalars['Int'] - kills_ct: Scalars['Int'] - kills_t: Scalars['Int'] - knife_kills: Scalars['Int'] - /** An object relationship */ - match: matches - match_id: Scalars['uuid'] - /** An object relationship */ - match_map: match_maps - match_map_id: Scalars['uuid'] - molotov_damage: Scalars['Int'] - molotov_throws: Scalars['Int'] - non_awp_hits: Scalars['Int'] - on_target_frames: Scalars['Int'] - /** An object relationship */ - player: players - rounds_ct: Scalars['Int'] - rounds_played: Scalars['Int'] - rounds_t: Scalars['Int'] - shots_at_spotted: Scalars['Int'] - shots_fired: Scalars['Int'] - smoke_throws: Scalars['Int'] - spotted_count: Scalars['Int'] - spotted_with_damage_count: Scalars['Int'] - spray_hits: Scalars['Int'] - spray_shots: Scalars['Int'] - steam_id: Scalars['bigint'] - team_damage: Scalars['Int'] - team_flashed: Scalars['Int'] - three_kill_rounds: Scalars['Int'] - time_to_damage_count: Scalars['Int'] - time_to_damage_sum_s: Scalars['numeric'] - total_engagement_frames: Scalars['Int'] - trade_kill_attempts: Scalars['Int'] - trade_kill_opportunities: Scalars['Int'] - trade_kill_successes: Scalars['Int'] - traded_death_attempts: Scalars['Int'] - traded_death_opportunities: Scalars['Int'] - traded_death_successes: Scalars['Int'] - two_kill_rounds: Scalars['Int'] - unused_utility_value: Scalars['Int'] - updated_at: Scalars['timestamptz'] - util_on_death_count: Scalars['Int'] - util_on_death_sum: Scalars['Int'] - wasted_magazine_shots: Scalars['Int'] - zeus_kills: Scalars['Int'] - __typename: 'player_match_map_stats' -} - - -/** aggregated selection of "player_match_map_stats" */ -export interface player_match_map_stats_aggregate { - aggregate: (player_match_map_stats_aggregate_fields | null) - nodes: player_match_map_stats[] - __typename: 'player_match_map_stats_aggregate' -} - - -/** aggregate fields of "player_match_map_stats" */ -export interface player_match_map_stats_aggregate_fields { - avg: (player_match_map_stats_avg_fields | null) - count: Scalars['Int'] - max: (player_match_map_stats_max_fields | null) - min: (player_match_map_stats_min_fields | null) - stddev: (player_match_map_stats_stddev_fields | null) - stddev_pop: (player_match_map_stats_stddev_pop_fields | null) - stddev_samp: (player_match_map_stats_stddev_samp_fields | null) - sum: (player_match_map_stats_sum_fields | null) - var_pop: (player_match_map_stats_var_pop_fields | null) - var_samp: (player_match_map_stats_var_samp_fields | null) - variance: (player_match_map_stats_variance_fields | null) - __typename: 'player_match_map_stats_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface player_match_map_stats_avg_fields { - assists: (Scalars['Float'] | null) - assists_ct: (Scalars['Float'] | null) - assists_t: (Scalars['Float'] | null) - counter_strafe_eligible_shots: (Scalars['Float'] | null) - counter_strafed_shots: (Scalars['Float'] | null) - crosshair_angle_count: (Scalars['Float'] | null) - crosshair_angle_sum_deg: (Scalars['Float'] | null) - damage: (Scalars['Float'] | null) - damage_ct: (Scalars['Float'] | null) - damage_t: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - deaths_ct: (Scalars['Float'] | null) - deaths_t: (Scalars['Float'] | null) - decoy_throws: (Scalars['Float'] | null) - enemies_flashed: (Scalars['Float'] | null) - first_bullet_hits: (Scalars['Float'] | null) - first_bullet_shots: (Scalars['Float'] | null) - five_kill_rounds: (Scalars['Float'] | null) - flash_assists: (Scalars['Float'] | null) - flash_duration_count: (Scalars['Float'] | null) - flash_duration_sum: (Scalars['Float'] | null) - flashes_thrown: (Scalars['Float'] | null) - four_kill_rounds: (Scalars['Float'] | null) - he_damage: (Scalars['Float'] | null) - he_team_damage: (Scalars['Float'] | null) - he_throws: (Scalars['Float'] | null) - headshot_hits: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - hits_at_spotted: (Scalars['Float'] | null) - hs_kills: (Scalars['Float'] | null) - hs_kills_ct: (Scalars['Float'] | null) - hs_kills_t: (Scalars['Float'] | null) - kast_rounds: (Scalars['Float'] | null) - kast_total_rounds: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - kills_ct: (Scalars['Float'] | null) - kills_t: (Scalars['Float'] | null) - knife_kills: (Scalars['Float'] | null) - molotov_damage: (Scalars['Float'] | null) - molotov_throws: (Scalars['Float'] | null) - non_awp_hits: (Scalars['Float'] | null) - on_target_frames: (Scalars['Float'] | null) - rounds_ct: (Scalars['Float'] | null) - rounds_played: (Scalars['Float'] | null) - rounds_t: (Scalars['Float'] | null) - shots_at_spotted: (Scalars['Float'] | null) - shots_fired: (Scalars['Float'] | null) - smoke_throws: (Scalars['Float'] | null) - spotted_count: (Scalars['Float'] | null) - spotted_with_damage_count: (Scalars['Float'] | null) - spray_hits: (Scalars['Float'] | null) - spray_shots: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - team_damage: (Scalars['Float'] | null) - team_flashed: (Scalars['Float'] | null) - three_kill_rounds: (Scalars['Float'] | null) - time_to_damage_count: (Scalars['Float'] | null) - time_to_damage_sum_s: (Scalars['Float'] | null) - total_engagement_frames: (Scalars['Float'] | null) - trade_kill_attempts: (Scalars['Float'] | null) - trade_kill_opportunities: (Scalars['Float'] | null) - trade_kill_successes: (Scalars['Float'] | null) - traded_death_attempts: (Scalars['Float'] | null) - traded_death_opportunities: (Scalars['Float'] | null) - traded_death_successes: (Scalars['Float'] | null) - two_kill_rounds: (Scalars['Float'] | null) - unused_utility_value: (Scalars['Float'] | null) - util_on_death_count: (Scalars['Float'] | null) - util_on_death_sum: (Scalars['Float'] | null) - wasted_magazine_shots: (Scalars['Float'] | null) - zeus_kills: (Scalars['Float'] | null) - __typename: 'player_match_map_stats_avg_fields' -} - - -/** unique or primary key constraints on table "player_match_map_stats" */ -export type player_match_map_stats_constraint = 'player_match_map_stats_pkey' - - -/** aggregate max on columns */ -export interface player_match_map_stats_max_fields { - assists: (Scalars['Int'] | null) - assists_ct: (Scalars['Int'] | null) - assists_t: (Scalars['Int'] | null) - counter_strafe_eligible_shots: (Scalars['Int'] | null) - counter_strafed_shots: (Scalars['Int'] | null) - crosshair_angle_count: (Scalars['Int'] | null) - crosshair_angle_sum_deg: (Scalars['numeric'] | null) - damage: (Scalars['Int'] | null) - damage_ct: (Scalars['Int'] | null) - damage_t: (Scalars['Int'] | null) - deaths: (Scalars['Int'] | null) - deaths_ct: (Scalars['Int'] | null) - deaths_t: (Scalars['Int'] | null) - decoy_throws: (Scalars['Int'] | null) - enemies_flashed: (Scalars['Int'] | null) - first_bullet_hits: (Scalars['Int'] | null) - first_bullet_shots: (Scalars['Int'] | null) - five_kill_rounds: (Scalars['Int'] | null) - flash_assists: (Scalars['Int'] | null) - flash_duration_count: (Scalars['Int'] | null) - flash_duration_sum: (Scalars['numeric'] | null) - flashes_thrown: (Scalars['Int'] | null) - four_kill_rounds: (Scalars['Int'] | null) - he_damage: (Scalars['Int'] | null) - he_team_damage: (Scalars['Int'] | null) - he_throws: (Scalars['Int'] | null) - headshot_hits: (Scalars['Int'] | null) - hits: (Scalars['Int'] | null) - hits_at_spotted: (Scalars['Int'] | null) - hs_kills: (Scalars['Int'] | null) - hs_kills_ct: (Scalars['Int'] | null) - hs_kills_t: (Scalars['Int'] | null) - kast_rounds: (Scalars['Int'] | null) - kast_total_rounds: (Scalars['Int'] | null) - kills: (Scalars['Int'] | null) - kills_ct: (Scalars['Int'] | null) - kills_t: (Scalars['Int'] | null) - knife_kills: (Scalars['Int'] | null) - match_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - molotov_damage: (Scalars['Int'] | null) - molotov_throws: (Scalars['Int'] | null) - non_awp_hits: (Scalars['Int'] | null) - on_target_frames: (Scalars['Int'] | null) - rounds_ct: (Scalars['Int'] | null) - rounds_played: (Scalars['Int'] | null) - rounds_t: (Scalars['Int'] | null) - shots_at_spotted: (Scalars['Int'] | null) - shots_fired: (Scalars['Int'] | null) - smoke_throws: (Scalars['Int'] | null) - spotted_count: (Scalars['Int'] | null) - spotted_with_damage_count: (Scalars['Int'] | null) - spray_hits: (Scalars['Int'] | null) - spray_shots: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - team_damage: (Scalars['Int'] | null) - team_flashed: (Scalars['Int'] | null) - three_kill_rounds: (Scalars['Int'] | null) - time_to_damage_count: (Scalars['Int'] | null) - time_to_damage_sum_s: (Scalars['numeric'] | null) - total_engagement_frames: (Scalars['Int'] | null) - trade_kill_attempts: (Scalars['Int'] | null) - trade_kill_opportunities: (Scalars['Int'] | null) - trade_kill_successes: (Scalars['Int'] | null) - traded_death_attempts: (Scalars['Int'] | null) - traded_death_opportunities: (Scalars['Int'] | null) - traded_death_successes: (Scalars['Int'] | null) - two_kill_rounds: (Scalars['Int'] | null) - unused_utility_value: (Scalars['Int'] | null) - updated_at: (Scalars['timestamptz'] | null) - util_on_death_count: (Scalars['Int'] | null) - util_on_death_sum: (Scalars['Int'] | null) - wasted_magazine_shots: (Scalars['Int'] | null) - zeus_kills: (Scalars['Int'] | null) - __typename: 'player_match_map_stats_max_fields' -} - - -/** aggregate min on columns */ -export interface player_match_map_stats_min_fields { - assists: (Scalars['Int'] | null) - assists_ct: (Scalars['Int'] | null) - assists_t: (Scalars['Int'] | null) - counter_strafe_eligible_shots: (Scalars['Int'] | null) - counter_strafed_shots: (Scalars['Int'] | null) - crosshair_angle_count: (Scalars['Int'] | null) - crosshair_angle_sum_deg: (Scalars['numeric'] | null) - damage: (Scalars['Int'] | null) - damage_ct: (Scalars['Int'] | null) - damage_t: (Scalars['Int'] | null) - deaths: (Scalars['Int'] | null) - deaths_ct: (Scalars['Int'] | null) - deaths_t: (Scalars['Int'] | null) - decoy_throws: (Scalars['Int'] | null) - enemies_flashed: (Scalars['Int'] | null) - first_bullet_hits: (Scalars['Int'] | null) - first_bullet_shots: (Scalars['Int'] | null) - five_kill_rounds: (Scalars['Int'] | null) - flash_assists: (Scalars['Int'] | null) - flash_duration_count: (Scalars['Int'] | null) - flash_duration_sum: (Scalars['numeric'] | null) - flashes_thrown: (Scalars['Int'] | null) - four_kill_rounds: (Scalars['Int'] | null) - he_damage: (Scalars['Int'] | null) - he_team_damage: (Scalars['Int'] | null) - he_throws: (Scalars['Int'] | null) - headshot_hits: (Scalars['Int'] | null) - hits: (Scalars['Int'] | null) - hits_at_spotted: (Scalars['Int'] | null) - hs_kills: (Scalars['Int'] | null) - hs_kills_ct: (Scalars['Int'] | null) - hs_kills_t: (Scalars['Int'] | null) - kast_rounds: (Scalars['Int'] | null) - kast_total_rounds: (Scalars['Int'] | null) - kills: (Scalars['Int'] | null) - kills_ct: (Scalars['Int'] | null) - kills_t: (Scalars['Int'] | null) - knife_kills: (Scalars['Int'] | null) - match_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - molotov_damage: (Scalars['Int'] | null) - molotov_throws: (Scalars['Int'] | null) - non_awp_hits: (Scalars['Int'] | null) - on_target_frames: (Scalars['Int'] | null) - rounds_ct: (Scalars['Int'] | null) - rounds_played: (Scalars['Int'] | null) - rounds_t: (Scalars['Int'] | null) - shots_at_spotted: (Scalars['Int'] | null) - shots_fired: (Scalars['Int'] | null) - smoke_throws: (Scalars['Int'] | null) - spotted_count: (Scalars['Int'] | null) - spotted_with_damage_count: (Scalars['Int'] | null) - spray_hits: (Scalars['Int'] | null) - spray_shots: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - team_damage: (Scalars['Int'] | null) - team_flashed: (Scalars['Int'] | null) - three_kill_rounds: (Scalars['Int'] | null) - time_to_damage_count: (Scalars['Int'] | null) - time_to_damage_sum_s: (Scalars['numeric'] | null) - total_engagement_frames: (Scalars['Int'] | null) - trade_kill_attempts: (Scalars['Int'] | null) - trade_kill_opportunities: (Scalars['Int'] | null) - trade_kill_successes: (Scalars['Int'] | null) - traded_death_attempts: (Scalars['Int'] | null) - traded_death_opportunities: (Scalars['Int'] | null) - traded_death_successes: (Scalars['Int'] | null) - two_kill_rounds: (Scalars['Int'] | null) - unused_utility_value: (Scalars['Int'] | null) - updated_at: (Scalars['timestamptz'] | null) - util_on_death_count: (Scalars['Int'] | null) - util_on_death_sum: (Scalars['Int'] | null) - wasted_magazine_shots: (Scalars['Int'] | null) - zeus_kills: (Scalars['Int'] | null) - __typename: 'player_match_map_stats_min_fields' -} - - -/** response of any mutation on the table "player_match_map_stats" */ -export interface player_match_map_stats_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: player_match_map_stats[] - __typename: 'player_match_map_stats_mutation_response' -} - - -/** select columns of table "player_match_map_stats" */ -export type player_match_map_stats_select_column = 'assists' | 'assists_ct' | 'assists_t' | 'counter_strafe_eligible_shots' | 'counter_strafed_shots' | 'crosshair_angle_count' | 'crosshair_angle_sum_deg' | 'damage' | 'damage_ct' | 'damage_t' | 'deaths' | 'deaths_ct' | 'deaths_t' | 'decoy_throws' | 'enemies_flashed' | 'first_bullet_hits' | 'first_bullet_shots' | 'five_kill_rounds' | 'flash_assists' | 'flash_duration_count' | 'flash_duration_sum' | 'flashes_thrown' | 'four_kill_rounds' | 'he_damage' | 'he_team_damage' | 'he_throws' | 'headshot_hits' | 'hits' | 'hits_at_spotted' | 'hs_kills' | 'hs_kills_ct' | 'hs_kills_t' | 'kast_rounds' | 'kast_total_rounds' | 'kills' | 'kills_ct' | 'kills_t' | 'knife_kills' | 'match_id' | 'match_map_id' | 'molotov_damage' | 'molotov_throws' | 'non_awp_hits' | 'on_target_frames' | 'rounds_ct' | 'rounds_played' | 'rounds_t' | 'shots_at_spotted' | 'shots_fired' | 'smoke_throws' | 'spotted_count' | 'spotted_with_damage_count' | 'spray_hits' | 'spray_shots' | 'steam_id' | 'team_damage' | 'team_flashed' | 'three_kill_rounds' | 'time_to_damage_count' | 'time_to_damage_sum_s' | 'total_engagement_frames' | 'trade_kill_attempts' | 'trade_kill_opportunities' | 'trade_kill_successes' | 'traded_death_attempts' | 'traded_death_opportunities' | 'traded_death_successes' | 'two_kill_rounds' | 'unused_utility_value' | 'updated_at' | 'util_on_death_count' | 'util_on_death_sum' | 'wasted_magazine_shots' | 'zeus_kills' - - -/** aggregate stddev on columns */ -export interface player_match_map_stats_stddev_fields { - assists: (Scalars['Float'] | null) - assists_ct: (Scalars['Float'] | null) - assists_t: (Scalars['Float'] | null) - counter_strafe_eligible_shots: (Scalars['Float'] | null) - counter_strafed_shots: (Scalars['Float'] | null) - crosshair_angle_count: (Scalars['Float'] | null) - crosshair_angle_sum_deg: (Scalars['Float'] | null) - damage: (Scalars['Float'] | null) - damage_ct: (Scalars['Float'] | null) - damage_t: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - deaths_ct: (Scalars['Float'] | null) - deaths_t: (Scalars['Float'] | null) - decoy_throws: (Scalars['Float'] | null) - enemies_flashed: (Scalars['Float'] | null) - first_bullet_hits: (Scalars['Float'] | null) - first_bullet_shots: (Scalars['Float'] | null) - five_kill_rounds: (Scalars['Float'] | null) - flash_assists: (Scalars['Float'] | null) - flash_duration_count: (Scalars['Float'] | null) - flash_duration_sum: (Scalars['Float'] | null) - flashes_thrown: (Scalars['Float'] | null) - four_kill_rounds: (Scalars['Float'] | null) - he_damage: (Scalars['Float'] | null) - he_team_damage: (Scalars['Float'] | null) - he_throws: (Scalars['Float'] | null) - headshot_hits: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - hits_at_spotted: (Scalars['Float'] | null) - hs_kills: (Scalars['Float'] | null) - hs_kills_ct: (Scalars['Float'] | null) - hs_kills_t: (Scalars['Float'] | null) - kast_rounds: (Scalars['Float'] | null) - kast_total_rounds: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - kills_ct: (Scalars['Float'] | null) - kills_t: (Scalars['Float'] | null) - knife_kills: (Scalars['Float'] | null) - molotov_damage: (Scalars['Float'] | null) - molotov_throws: (Scalars['Float'] | null) - non_awp_hits: (Scalars['Float'] | null) - on_target_frames: (Scalars['Float'] | null) - rounds_ct: (Scalars['Float'] | null) - rounds_played: (Scalars['Float'] | null) - rounds_t: (Scalars['Float'] | null) - shots_at_spotted: (Scalars['Float'] | null) - shots_fired: (Scalars['Float'] | null) - smoke_throws: (Scalars['Float'] | null) - spotted_count: (Scalars['Float'] | null) - spotted_with_damage_count: (Scalars['Float'] | null) - spray_hits: (Scalars['Float'] | null) - spray_shots: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - team_damage: (Scalars['Float'] | null) - team_flashed: (Scalars['Float'] | null) - three_kill_rounds: (Scalars['Float'] | null) - time_to_damage_count: (Scalars['Float'] | null) - time_to_damage_sum_s: (Scalars['Float'] | null) - total_engagement_frames: (Scalars['Float'] | null) - trade_kill_attempts: (Scalars['Float'] | null) - trade_kill_opportunities: (Scalars['Float'] | null) - trade_kill_successes: (Scalars['Float'] | null) - traded_death_attempts: (Scalars['Float'] | null) - traded_death_opportunities: (Scalars['Float'] | null) - traded_death_successes: (Scalars['Float'] | null) - two_kill_rounds: (Scalars['Float'] | null) - unused_utility_value: (Scalars['Float'] | null) - util_on_death_count: (Scalars['Float'] | null) - util_on_death_sum: (Scalars['Float'] | null) - wasted_magazine_shots: (Scalars['Float'] | null) - zeus_kills: (Scalars['Float'] | null) - __typename: 'player_match_map_stats_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface player_match_map_stats_stddev_pop_fields { - assists: (Scalars['Float'] | null) - assists_ct: (Scalars['Float'] | null) - assists_t: (Scalars['Float'] | null) - counter_strafe_eligible_shots: (Scalars['Float'] | null) - counter_strafed_shots: (Scalars['Float'] | null) - crosshair_angle_count: (Scalars['Float'] | null) - crosshair_angle_sum_deg: (Scalars['Float'] | null) - damage: (Scalars['Float'] | null) - damage_ct: (Scalars['Float'] | null) - damage_t: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - deaths_ct: (Scalars['Float'] | null) - deaths_t: (Scalars['Float'] | null) - decoy_throws: (Scalars['Float'] | null) - enemies_flashed: (Scalars['Float'] | null) - first_bullet_hits: (Scalars['Float'] | null) - first_bullet_shots: (Scalars['Float'] | null) - five_kill_rounds: (Scalars['Float'] | null) - flash_assists: (Scalars['Float'] | null) - flash_duration_count: (Scalars['Float'] | null) - flash_duration_sum: (Scalars['Float'] | null) - flashes_thrown: (Scalars['Float'] | null) - four_kill_rounds: (Scalars['Float'] | null) - he_damage: (Scalars['Float'] | null) - he_team_damage: (Scalars['Float'] | null) - he_throws: (Scalars['Float'] | null) - headshot_hits: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - hits_at_spotted: (Scalars['Float'] | null) - hs_kills: (Scalars['Float'] | null) - hs_kills_ct: (Scalars['Float'] | null) - hs_kills_t: (Scalars['Float'] | null) - kast_rounds: (Scalars['Float'] | null) - kast_total_rounds: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - kills_ct: (Scalars['Float'] | null) - kills_t: (Scalars['Float'] | null) - knife_kills: (Scalars['Float'] | null) - molotov_damage: (Scalars['Float'] | null) - molotov_throws: (Scalars['Float'] | null) - non_awp_hits: (Scalars['Float'] | null) - on_target_frames: (Scalars['Float'] | null) - rounds_ct: (Scalars['Float'] | null) - rounds_played: (Scalars['Float'] | null) - rounds_t: (Scalars['Float'] | null) - shots_at_spotted: (Scalars['Float'] | null) - shots_fired: (Scalars['Float'] | null) - smoke_throws: (Scalars['Float'] | null) - spotted_count: (Scalars['Float'] | null) - spotted_with_damage_count: (Scalars['Float'] | null) - spray_hits: (Scalars['Float'] | null) - spray_shots: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - team_damage: (Scalars['Float'] | null) - team_flashed: (Scalars['Float'] | null) - three_kill_rounds: (Scalars['Float'] | null) - time_to_damage_count: (Scalars['Float'] | null) - time_to_damage_sum_s: (Scalars['Float'] | null) - total_engagement_frames: (Scalars['Float'] | null) - trade_kill_attempts: (Scalars['Float'] | null) - trade_kill_opportunities: (Scalars['Float'] | null) - trade_kill_successes: (Scalars['Float'] | null) - traded_death_attempts: (Scalars['Float'] | null) - traded_death_opportunities: (Scalars['Float'] | null) - traded_death_successes: (Scalars['Float'] | null) - two_kill_rounds: (Scalars['Float'] | null) - unused_utility_value: (Scalars['Float'] | null) - util_on_death_count: (Scalars['Float'] | null) - util_on_death_sum: (Scalars['Float'] | null) - wasted_magazine_shots: (Scalars['Float'] | null) - zeus_kills: (Scalars['Float'] | null) - __typename: 'player_match_map_stats_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface player_match_map_stats_stddev_samp_fields { - assists: (Scalars['Float'] | null) - assists_ct: (Scalars['Float'] | null) - assists_t: (Scalars['Float'] | null) - counter_strafe_eligible_shots: (Scalars['Float'] | null) - counter_strafed_shots: (Scalars['Float'] | null) - crosshair_angle_count: (Scalars['Float'] | null) - crosshair_angle_sum_deg: (Scalars['Float'] | null) - damage: (Scalars['Float'] | null) - damage_ct: (Scalars['Float'] | null) - damage_t: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - deaths_ct: (Scalars['Float'] | null) - deaths_t: (Scalars['Float'] | null) - decoy_throws: (Scalars['Float'] | null) - enemies_flashed: (Scalars['Float'] | null) - first_bullet_hits: (Scalars['Float'] | null) - first_bullet_shots: (Scalars['Float'] | null) - five_kill_rounds: (Scalars['Float'] | null) - flash_assists: (Scalars['Float'] | null) - flash_duration_count: (Scalars['Float'] | null) - flash_duration_sum: (Scalars['Float'] | null) - flashes_thrown: (Scalars['Float'] | null) - four_kill_rounds: (Scalars['Float'] | null) - he_damage: (Scalars['Float'] | null) - he_team_damage: (Scalars['Float'] | null) - he_throws: (Scalars['Float'] | null) - headshot_hits: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - hits_at_spotted: (Scalars['Float'] | null) - hs_kills: (Scalars['Float'] | null) - hs_kills_ct: (Scalars['Float'] | null) - hs_kills_t: (Scalars['Float'] | null) - kast_rounds: (Scalars['Float'] | null) - kast_total_rounds: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - kills_ct: (Scalars['Float'] | null) - kills_t: (Scalars['Float'] | null) - knife_kills: (Scalars['Float'] | null) - molotov_damage: (Scalars['Float'] | null) - molotov_throws: (Scalars['Float'] | null) - non_awp_hits: (Scalars['Float'] | null) - on_target_frames: (Scalars['Float'] | null) - rounds_ct: (Scalars['Float'] | null) - rounds_played: (Scalars['Float'] | null) - rounds_t: (Scalars['Float'] | null) - shots_at_spotted: (Scalars['Float'] | null) - shots_fired: (Scalars['Float'] | null) - smoke_throws: (Scalars['Float'] | null) - spotted_count: (Scalars['Float'] | null) - spotted_with_damage_count: (Scalars['Float'] | null) - spray_hits: (Scalars['Float'] | null) - spray_shots: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - team_damage: (Scalars['Float'] | null) - team_flashed: (Scalars['Float'] | null) - three_kill_rounds: (Scalars['Float'] | null) - time_to_damage_count: (Scalars['Float'] | null) - time_to_damage_sum_s: (Scalars['Float'] | null) - total_engagement_frames: (Scalars['Float'] | null) - trade_kill_attempts: (Scalars['Float'] | null) - trade_kill_opportunities: (Scalars['Float'] | null) - trade_kill_successes: (Scalars['Float'] | null) - traded_death_attempts: (Scalars['Float'] | null) - traded_death_opportunities: (Scalars['Float'] | null) - traded_death_successes: (Scalars['Float'] | null) - two_kill_rounds: (Scalars['Float'] | null) - unused_utility_value: (Scalars['Float'] | null) - util_on_death_count: (Scalars['Float'] | null) - util_on_death_sum: (Scalars['Float'] | null) - wasted_magazine_shots: (Scalars['Float'] | null) - zeus_kills: (Scalars['Float'] | null) - __typename: 'player_match_map_stats_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface player_match_map_stats_sum_fields { - assists: (Scalars['Int'] | null) - assists_ct: (Scalars['Int'] | null) - assists_t: (Scalars['Int'] | null) - counter_strafe_eligible_shots: (Scalars['Int'] | null) - counter_strafed_shots: (Scalars['Int'] | null) - crosshair_angle_count: (Scalars['Int'] | null) - crosshair_angle_sum_deg: (Scalars['numeric'] | null) - damage: (Scalars['Int'] | null) - damage_ct: (Scalars['Int'] | null) - damage_t: (Scalars['Int'] | null) - deaths: (Scalars['Int'] | null) - deaths_ct: (Scalars['Int'] | null) - deaths_t: (Scalars['Int'] | null) - decoy_throws: (Scalars['Int'] | null) - enemies_flashed: (Scalars['Int'] | null) - first_bullet_hits: (Scalars['Int'] | null) - first_bullet_shots: (Scalars['Int'] | null) - five_kill_rounds: (Scalars['Int'] | null) - flash_assists: (Scalars['Int'] | null) - flash_duration_count: (Scalars['Int'] | null) - flash_duration_sum: (Scalars['numeric'] | null) - flashes_thrown: (Scalars['Int'] | null) - four_kill_rounds: (Scalars['Int'] | null) - he_damage: (Scalars['Int'] | null) - he_team_damage: (Scalars['Int'] | null) - he_throws: (Scalars['Int'] | null) - headshot_hits: (Scalars['Int'] | null) - hits: (Scalars['Int'] | null) - hits_at_spotted: (Scalars['Int'] | null) - hs_kills: (Scalars['Int'] | null) - hs_kills_ct: (Scalars['Int'] | null) - hs_kills_t: (Scalars['Int'] | null) - kast_rounds: (Scalars['Int'] | null) - kast_total_rounds: (Scalars['Int'] | null) - kills: (Scalars['Int'] | null) - kills_ct: (Scalars['Int'] | null) - kills_t: (Scalars['Int'] | null) - knife_kills: (Scalars['Int'] | null) - molotov_damage: (Scalars['Int'] | null) - molotov_throws: (Scalars['Int'] | null) - non_awp_hits: (Scalars['Int'] | null) - on_target_frames: (Scalars['Int'] | null) - rounds_ct: (Scalars['Int'] | null) - rounds_played: (Scalars['Int'] | null) - rounds_t: (Scalars['Int'] | null) - shots_at_spotted: (Scalars['Int'] | null) - shots_fired: (Scalars['Int'] | null) - smoke_throws: (Scalars['Int'] | null) - spotted_count: (Scalars['Int'] | null) - spotted_with_damage_count: (Scalars['Int'] | null) - spray_hits: (Scalars['Int'] | null) - spray_shots: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - team_damage: (Scalars['Int'] | null) - team_flashed: (Scalars['Int'] | null) - three_kill_rounds: (Scalars['Int'] | null) - time_to_damage_count: (Scalars['Int'] | null) - time_to_damage_sum_s: (Scalars['numeric'] | null) - total_engagement_frames: (Scalars['Int'] | null) - trade_kill_attempts: (Scalars['Int'] | null) - trade_kill_opportunities: (Scalars['Int'] | null) - trade_kill_successes: (Scalars['Int'] | null) - traded_death_attempts: (Scalars['Int'] | null) - traded_death_opportunities: (Scalars['Int'] | null) - traded_death_successes: (Scalars['Int'] | null) - two_kill_rounds: (Scalars['Int'] | null) - unused_utility_value: (Scalars['Int'] | null) - util_on_death_count: (Scalars['Int'] | null) - util_on_death_sum: (Scalars['Int'] | null) - wasted_magazine_shots: (Scalars['Int'] | null) - zeus_kills: (Scalars['Int'] | null) - __typename: 'player_match_map_stats_sum_fields' -} - - -/** update columns of table "player_match_map_stats" */ -export type player_match_map_stats_update_column = 'assists' | 'assists_ct' | 'assists_t' | 'counter_strafe_eligible_shots' | 'counter_strafed_shots' | 'crosshair_angle_count' | 'crosshair_angle_sum_deg' | 'damage' | 'damage_ct' | 'damage_t' | 'deaths' | 'deaths_ct' | 'deaths_t' | 'decoy_throws' | 'enemies_flashed' | 'first_bullet_hits' | 'first_bullet_shots' | 'five_kill_rounds' | 'flash_assists' | 'flash_duration_count' | 'flash_duration_sum' | 'flashes_thrown' | 'four_kill_rounds' | 'he_damage' | 'he_team_damage' | 'he_throws' | 'headshot_hits' | 'hits' | 'hits_at_spotted' | 'hs_kills' | 'hs_kills_ct' | 'hs_kills_t' | 'kast_rounds' | 'kast_total_rounds' | 'kills' | 'kills_ct' | 'kills_t' | 'knife_kills' | 'match_id' | 'match_map_id' | 'molotov_damage' | 'molotov_throws' | 'non_awp_hits' | 'on_target_frames' | 'rounds_ct' | 'rounds_played' | 'rounds_t' | 'shots_at_spotted' | 'shots_fired' | 'smoke_throws' | 'spotted_count' | 'spotted_with_damage_count' | 'spray_hits' | 'spray_shots' | 'steam_id' | 'team_damage' | 'team_flashed' | 'three_kill_rounds' | 'time_to_damage_count' | 'time_to_damage_sum_s' | 'total_engagement_frames' | 'trade_kill_attempts' | 'trade_kill_opportunities' | 'trade_kill_successes' | 'traded_death_attempts' | 'traded_death_opportunities' | 'traded_death_successes' | 'two_kill_rounds' | 'unused_utility_value' | 'updated_at' | 'util_on_death_count' | 'util_on_death_sum' | 'wasted_magazine_shots' | 'zeus_kills' - - -/** aggregate var_pop on columns */ -export interface player_match_map_stats_var_pop_fields { - assists: (Scalars['Float'] | null) - assists_ct: (Scalars['Float'] | null) - assists_t: (Scalars['Float'] | null) - counter_strafe_eligible_shots: (Scalars['Float'] | null) - counter_strafed_shots: (Scalars['Float'] | null) - crosshair_angle_count: (Scalars['Float'] | null) - crosshair_angle_sum_deg: (Scalars['Float'] | null) - damage: (Scalars['Float'] | null) - damage_ct: (Scalars['Float'] | null) - damage_t: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - deaths_ct: (Scalars['Float'] | null) - deaths_t: (Scalars['Float'] | null) - decoy_throws: (Scalars['Float'] | null) - enemies_flashed: (Scalars['Float'] | null) - first_bullet_hits: (Scalars['Float'] | null) - first_bullet_shots: (Scalars['Float'] | null) - five_kill_rounds: (Scalars['Float'] | null) - flash_assists: (Scalars['Float'] | null) - flash_duration_count: (Scalars['Float'] | null) - flash_duration_sum: (Scalars['Float'] | null) - flashes_thrown: (Scalars['Float'] | null) - four_kill_rounds: (Scalars['Float'] | null) - he_damage: (Scalars['Float'] | null) - he_team_damage: (Scalars['Float'] | null) - he_throws: (Scalars['Float'] | null) - headshot_hits: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - hits_at_spotted: (Scalars['Float'] | null) - hs_kills: (Scalars['Float'] | null) - hs_kills_ct: (Scalars['Float'] | null) - hs_kills_t: (Scalars['Float'] | null) - kast_rounds: (Scalars['Float'] | null) - kast_total_rounds: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - kills_ct: (Scalars['Float'] | null) - kills_t: (Scalars['Float'] | null) - knife_kills: (Scalars['Float'] | null) - molotov_damage: (Scalars['Float'] | null) - molotov_throws: (Scalars['Float'] | null) - non_awp_hits: (Scalars['Float'] | null) - on_target_frames: (Scalars['Float'] | null) - rounds_ct: (Scalars['Float'] | null) - rounds_played: (Scalars['Float'] | null) - rounds_t: (Scalars['Float'] | null) - shots_at_spotted: (Scalars['Float'] | null) - shots_fired: (Scalars['Float'] | null) - smoke_throws: (Scalars['Float'] | null) - spotted_count: (Scalars['Float'] | null) - spotted_with_damage_count: (Scalars['Float'] | null) - spray_hits: (Scalars['Float'] | null) - spray_shots: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - team_damage: (Scalars['Float'] | null) - team_flashed: (Scalars['Float'] | null) - three_kill_rounds: (Scalars['Float'] | null) - time_to_damage_count: (Scalars['Float'] | null) - time_to_damage_sum_s: (Scalars['Float'] | null) - total_engagement_frames: (Scalars['Float'] | null) - trade_kill_attempts: (Scalars['Float'] | null) - trade_kill_opportunities: (Scalars['Float'] | null) - trade_kill_successes: (Scalars['Float'] | null) - traded_death_attempts: (Scalars['Float'] | null) - traded_death_opportunities: (Scalars['Float'] | null) - traded_death_successes: (Scalars['Float'] | null) - two_kill_rounds: (Scalars['Float'] | null) - unused_utility_value: (Scalars['Float'] | null) - util_on_death_count: (Scalars['Float'] | null) - util_on_death_sum: (Scalars['Float'] | null) - wasted_magazine_shots: (Scalars['Float'] | null) - zeus_kills: (Scalars['Float'] | null) - __typename: 'player_match_map_stats_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface player_match_map_stats_var_samp_fields { - assists: (Scalars['Float'] | null) - assists_ct: (Scalars['Float'] | null) - assists_t: (Scalars['Float'] | null) - counter_strafe_eligible_shots: (Scalars['Float'] | null) - counter_strafed_shots: (Scalars['Float'] | null) - crosshair_angle_count: (Scalars['Float'] | null) - crosshair_angle_sum_deg: (Scalars['Float'] | null) - damage: (Scalars['Float'] | null) - damage_ct: (Scalars['Float'] | null) - damage_t: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - deaths_ct: (Scalars['Float'] | null) - deaths_t: (Scalars['Float'] | null) - decoy_throws: (Scalars['Float'] | null) - enemies_flashed: (Scalars['Float'] | null) - first_bullet_hits: (Scalars['Float'] | null) - first_bullet_shots: (Scalars['Float'] | null) - five_kill_rounds: (Scalars['Float'] | null) - flash_assists: (Scalars['Float'] | null) - flash_duration_count: (Scalars['Float'] | null) - flash_duration_sum: (Scalars['Float'] | null) - flashes_thrown: (Scalars['Float'] | null) - four_kill_rounds: (Scalars['Float'] | null) - he_damage: (Scalars['Float'] | null) - he_team_damage: (Scalars['Float'] | null) - he_throws: (Scalars['Float'] | null) - headshot_hits: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - hits_at_spotted: (Scalars['Float'] | null) - hs_kills: (Scalars['Float'] | null) - hs_kills_ct: (Scalars['Float'] | null) - hs_kills_t: (Scalars['Float'] | null) - kast_rounds: (Scalars['Float'] | null) - kast_total_rounds: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - kills_ct: (Scalars['Float'] | null) - kills_t: (Scalars['Float'] | null) - knife_kills: (Scalars['Float'] | null) - molotov_damage: (Scalars['Float'] | null) - molotov_throws: (Scalars['Float'] | null) - non_awp_hits: (Scalars['Float'] | null) - on_target_frames: (Scalars['Float'] | null) - rounds_ct: (Scalars['Float'] | null) - rounds_played: (Scalars['Float'] | null) - rounds_t: (Scalars['Float'] | null) - shots_at_spotted: (Scalars['Float'] | null) - shots_fired: (Scalars['Float'] | null) - smoke_throws: (Scalars['Float'] | null) - spotted_count: (Scalars['Float'] | null) - spotted_with_damage_count: (Scalars['Float'] | null) - spray_hits: (Scalars['Float'] | null) - spray_shots: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - team_damage: (Scalars['Float'] | null) - team_flashed: (Scalars['Float'] | null) - three_kill_rounds: (Scalars['Float'] | null) - time_to_damage_count: (Scalars['Float'] | null) - time_to_damage_sum_s: (Scalars['Float'] | null) - total_engagement_frames: (Scalars['Float'] | null) - trade_kill_attempts: (Scalars['Float'] | null) - trade_kill_opportunities: (Scalars['Float'] | null) - trade_kill_successes: (Scalars['Float'] | null) - traded_death_attempts: (Scalars['Float'] | null) - traded_death_opportunities: (Scalars['Float'] | null) - traded_death_successes: (Scalars['Float'] | null) - two_kill_rounds: (Scalars['Float'] | null) - unused_utility_value: (Scalars['Float'] | null) - util_on_death_count: (Scalars['Float'] | null) - util_on_death_sum: (Scalars['Float'] | null) - wasted_magazine_shots: (Scalars['Float'] | null) - zeus_kills: (Scalars['Float'] | null) - __typename: 'player_match_map_stats_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface player_match_map_stats_variance_fields { - assists: (Scalars['Float'] | null) - assists_ct: (Scalars['Float'] | null) - assists_t: (Scalars['Float'] | null) - counter_strafe_eligible_shots: (Scalars['Float'] | null) - counter_strafed_shots: (Scalars['Float'] | null) - crosshair_angle_count: (Scalars['Float'] | null) - crosshair_angle_sum_deg: (Scalars['Float'] | null) - damage: (Scalars['Float'] | null) - damage_ct: (Scalars['Float'] | null) - damage_t: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - deaths_ct: (Scalars['Float'] | null) - deaths_t: (Scalars['Float'] | null) - decoy_throws: (Scalars['Float'] | null) - enemies_flashed: (Scalars['Float'] | null) - first_bullet_hits: (Scalars['Float'] | null) - first_bullet_shots: (Scalars['Float'] | null) - five_kill_rounds: (Scalars['Float'] | null) - flash_assists: (Scalars['Float'] | null) - flash_duration_count: (Scalars['Float'] | null) - flash_duration_sum: (Scalars['Float'] | null) - flashes_thrown: (Scalars['Float'] | null) - four_kill_rounds: (Scalars['Float'] | null) - he_damage: (Scalars['Float'] | null) - he_team_damage: (Scalars['Float'] | null) - he_throws: (Scalars['Float'] | null) - headshot_hits: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - hits_at_spotted: (Scalars['Float'] | null) - hs_kills: (Scalars['Float'] | null) - hs_kills_ct: (Scalars['Float'] | null) - hs_kills_t: (Scalars['Float'] | null) - kast_rounds: (Scalars['Float'] | null) - kast_total_rounds: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - kills_ct: (Scalars['Float'] | null) - kills_t: (Scalars['Float'] | null) - knife_kills: (Scalars['Float'] | null) - molotov_damage: (Scalars['Float'] | null) - molotov_throws: (Scalars['Float'] | null) - non_awp_hits: (Scalars['Float'] | null) - on_target_frames: (Scalars['Float'] | null) - rounds_ct: (Scalars['Float'] | null) - rounds_played: (Scalars['Float'] | null) - rounds_t: (Scalars['Float'] | null) - shots_at_spotted: (Scalars['Float'] | null) - shots_fired: (Scalars['Float'] | null) - smoke_throws: (Scalars['Float'] | null) - spotted_count: (Scalars['Float'] | null) - spotted_with_damage_count: (Scalars['Float'] | null) - spray_hits: (Scalars['Float'] | null) - spray_shots: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - team_damage: (Scalars['Float'] | null) - team_flashed: (Scalars['Float'] | null) - three_kill_rounds: (Scalars['Float'] | null) - time_to_damage_count: (Scalars['Float'] | null) - time_to_damage_sum_s: (Scalars['Float'] | null) - total_engagement_frames: (Scalars['Float'] | null) - trade_kill_attempts: (Scalars['Float'] | null) - trade_kill_opportunities: (Scalars['Float'] | null) - trade_kill_successes: (Scalars['Float'] | null) - traded_death_attempts: (Scalars['Float'] | null) - traded_death_opportunities: (Scalars['Float'] | null) - traded_death_successes: (Scalars['Float'] | null) - two_kill_rounds: (Scalars['Float'] | null) - unused_utility_value: (Scalars['Float'] | null) - util_on_death_count: (Scalars['Float'] | null) - util_on_death_sum: (Scalars['Float'] | null) - wasted_magazine_shots: (Scalars['Float'] | null) - zeus_kills: (Scalars['Float'] | null) - __typename: 'player_match_map_stats_variance_fields' -} - - -/** columns and relationships of "player_match_performance_v" */ -export interface player_match_performance_v { - accuracy: (Scalars['numeric'] | null) - accuracy_spotted: (Scalars['numeric'] | null) - aim_rating: (Scalars['float8'] | null) - counter_strafe_pct: (Scalars['numeric'] | null) - enemy_blind_pr: (Scalars['numeric'] | null) - flash_assists_pr: (Scalars['numeric'] | null) - hs_pct: (Scalars['numeric'] | null) - kast_pct: (Scalars['numeric'] | null) - match_id: (Scalars['uuid'] | null) - overall_rating: (Scalars['float8'] | null) - played_at: (Scalars['timestamptz'] | null) - positioning_rating: (Scalars['float8'] | null) - rounds: (Scalars['Int'] | null) - source: (Scalars['String'] | null) - steam_id: (Scalars['bigint'] | null) - survival_pct: (Scalars['numeric'] | null) - traded_death_pct: (Scalars['numeric'] | null) - util_efficiency: (Scalars['numeric'] | null) - utility_rating: (Scalars['float8'] | null) - __typename: 'player_match_performance_v' -} - - -/** aggregated selection of "player_match_performance_v" */ -export interface player_match_performance_v_aggregate { - aggregate: (player_match_performance_v_aggregate_fields | null) - nodes: player_match_performance_v[] - __typename: 'player_match_performance_v_aggregate' -} - - -/** aggregate fields of "player_match_performance_v" */ -export interface player_match_performance_v_aggregate_fields { - avg: (player_match_performance_v_avg_fields | null) - count: Scalars['Int'] - max: (player_match_performance_v_max_fields | null) - min: (player_match_performance_v_min_fields | null) - stddev: (player_match_performance_v_stddev_fields | null) - stddev_pop: (player_match_performance_v_stddev_pop_fields | null) - stddev_samp: (player_match_performance_v_stddev_samp_fields | null) - sum: (player_match_performance_v_sum_fields | null) - var_pop: (player_match_performance_v_var_pop_fields | null) - var_samp: (player_match_performance_v_var_samp_fields | null) - variance: (player_match_performance_v_variance_fields | null) - __typename: 'player_match_performance_v_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface player_match_performance_v_avg_fields { - accuracy: (Scalars['Float'] | null) - accuracy_spotted: (Scalars['Float'] | null) - aim_rating: (Scalars['Float'] | null) - counter_strafe_pct: (Scalars['Float'] | null) - enemy_blind_pr: (Scalars['Float'] | null) - flash_assists_pr: (Scalars['Float'] | null) - hs_pct: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - overall_rating: (Scalars['Float'] | null) - positioning_rating: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - survival_pct: (Scalars['Float'] | null) - traded_death_pct: (Scalars['Float'] | null) - util_efficiency: (Scalars['Float'] | null) - utility_rating: (Scalars['Float'] | null) - __typename: 'player_match_performance_v_avg_fields' -} - - -/** aggregate max on columns */ -export interface player_match_performance_v_max_fields { - accuracy: (Scalars['numeric'] | null) - accuracy_spotted: (Scalars['numeric'] | null) - aim_rating: (Scalars['float8'] | null) - counter_strafe_pct: (Scalars['numeric'] | null) - enemy_blind_pr: (Scalars['numeric'] | null) - flash_assists_pr: (Scalars['numeric'] | null) - hs_pct: (Scalars['numeric'] | null) - kast_pct: (Scalars['numeric'] | null) - match_id: (Scalars['uuid'] | null) - overall_rating: (Scalars['float8'] | null) - played_at: (Scalars['timestamptz'] | null) - positioning_rating: (Scalars['float8'] | null) - rounds: (Scalars['Int'] | null) - source: (Scalars['String'] | null) - steam_id: (Scalars['bigint'] | null) - survival_pct: (Scalars['numeric'] | null) - traded_death_pct: (Scalars['numeric'] | null) - util_efficiency: (Scalars['numeric'] | null) - utility_rating: (Scalars['float8'] | null) - __typename: 'player_match_performance_v_max_fields' -} - - -/** aggregate min on columns */ -export interface player_match_performance_v_min_fields { - accuracy: (Scalars['numeric'] | null) - accuracy_spotted: (Scalars['numeric'] | null) - aim_rating: (Scalars['float8'] | null) - counter_strafe_pct: (Scalars['numeric'] | null) - enemy_blind_pr: (Scalars['numeric'] | null) - flash_assists_pr: (Scalars['numeric'] | null) - hs_pct: (Scalars['numeric'] | null) - kast_pct: (Scalars['numeric'] | null) - match_id: (Scalars['uuid'] | null) - overall_rating: (Scalars['float8'] | null) - played_at: (Scalars['timestamptz'] | null) - positioning_rating: (Scalars['float8'] | null) - rounds: (Scalars['Int'] | null) - source: (Scalars['String'] | null) - steam_id: (Scalars['bigint'] | null) - survival_pct: (Scalars['numeric'] | null) - traded_death_pct: (Scalars['numeric'] | null) - util_efficiency: (Scalars['numeric'] | null) - utility_rating: (Scalars['float8'] | null) - __typename: 'player_match_performance_v_min_fields' -} - - -/** select columns of table "player_match_performance_v" */ -export type player_match_performance_v_select_column = 'accuracy' | 'accuracy_spotted' | 'aim_rating' | 'counter_strafe_pct' | 'enemy_blind_pr' | 'flash_assists_pr' | 'hs_pct' | 'kast_pct' | 'match_id' | 'overall_rating' | 'played_at' | 'positioning_rating' | 'rounds' | 'source' | 'steam_id' | 'survival_pct' | 'traded_death_pct' | 'util_efficiency' | 'utility_rating' - - -/** aggregate stddev on columns */ -export interface player_match_performance_v_stddev_fields { - accuracy: (Scalars['Float'] | null) - accuracy_spotted: (Scalars['Float'] | null) - aim_rating: (Scalars['Float'] | null) - counter_strafe_pct: (Scalars['Float'] | null) - enemy_blind_pr: (Scalars['Float'] | null) - flash_assists_pr: (Scalars['Float'] | null) - hs_pct: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - overall_rating: (Scalars['Float'] | null) - positioning_rating: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - survival_pct: (Scalars['Float'] | null) - traded_death_pct: (Scalars['Float'] | null) - util_efficiency: (Scalars['Float'] | null) - utility_rating: (Scalars['Float'] | null) - __typename: 'player_match_performance_v_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface player_match_performance_v_stddev_pop_fields { - accuracy: (Scalars['Float'] | null) - accuracy_spotted: (Scalars['Float'] | null) - aim_rating: (Scalars['Float'] | null) - counter_strafe_pct: (Scalars['Float'] | null) - enemy_blind_pr: (Scalars['Float'] | null) - flash_assists_pr: (Scalars['Float'] | null) - hs_pct: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - overall_rating: (Scalars['Float'] | null) - positioning_rating: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - survival_pct: (Scalars['Float'] | null) - traded_death_pct: (Scalars['Float'] | null) - util_efficiency: (Scalars['Float'] | null) - utility_rating: (Scalars['Float'] | null) - __typename: 'player_match_performance_v_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface player_match_performance_v_stddev_samp_fields { - accuracy: (Scalars['Float'] | null) - accuracy_spotted: (Scalars['Float'] | null) - aim_rating: (Scalars['Float'] | null) - counter_strafe_pct: (Scalars['Float'] | null) - enemy_blind_pr: (Scalars['Float'] | null) - flash_assists_pr: (Scalars['Float'] | null) - hs_pct: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - overall_rating: (Scalars['Float'] | null) - positioning_rating: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - survival_pct: (Scalars['Float'] | null) - traded_death_pct: (Scalars['Float'] | null) - util_efficiency: (Scalars['Float'] | null) - utility_rating: (Scalars['Float'] | null) - __typename: 'player_match_performance_v_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface player_match_performance_v_sum_fields { - accuracy: (Scalars['numeric'] | null) - accuracy_spotted: (Scalars['numeric'] | null) - aim_rating: (Scalars['float8'] | null) - counter_strafe_pct: (Scalars['numeric'] | null) - enemy_blind_pr: (Scalars['numeric'] | null) - flash_assists_pr: (Scalars['numeric'] | null) - hs_pct: (Scalars['numeric'] | null) - kast_pct: (Scalars['numeric'] | null) - overall_rating: (Scalars['float8'] | null) - positioning_rating: (Scalars['float8'] | null) - rounds: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - survival_pct: (Scalars['numeric'] | null) - traded_death_pct: (Scalars['numeric'] | null) - util_efficiency: (Scalars['numeric'] | null) - utility_rating: (Scalars['float8'] | null) - __typename: 'player_match_performance_v_sum_fields' -} - - -/** aggregate var_pop on columns */ -export interface player_match_performance_v_var_pop_fields { - accuracy: (Scalars['Float'] | null) - accuracy_spotted: (Scalars['Float'] | null) - aim_rating: (Scalars['Float'] | null) - counter_strafe_pct: (Scalars['Float'] | null) - enemy_blind_pr: (Scalars['Float'] | null) - flash_assists_pr: (Scalars['Float'] | null) - hs_pct: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - overall_rating: (Scalars['Float'] | null) - positioning_rating: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - survival_pct: (Scalars['Float'] | null) - traded_death_pct: (Scalars['Float'] | null) - util_efficiency: (Scalars['Float'] | null) - utility_rating: (Scalars['Float'] | null) - __typename: 'player_match_performance_v_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface player_match_performance_v_var_samp_fields { - accuracy: (Scalars['Float'] | null) - accuracy_spotted: (Scalars['Float'] | null) - aim_rating: (Scalars['Float'] | null) - counter_strafe_pct: (Scalars['Float'] | null) - enemy_blind_pr: (Scalars['Float'] | null) - flash_assists_pr: (Scalars['Float'] | null) - hs_pct: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - overall_rating: (Scalars['Float'] | null) - positioning_rating: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - survival_pct: (Scalars['Float'] | null) - traded_death_pct: (Scalars['Float'] | null) - util_efficiency: (Scalars['Float'] | null) - utility_rating: (Scalars['Float'] | null) - __typename: 'player_match_performance_v_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface player_match_performance_v_variance_fields { - accuracy: (Scalars['Float'] | null) - accuracy_spotted: (Scalars['Float'] | null) - aim_rating: (Scalars['Float'] | null) - counter_strafe_pct: (Scalars['Float'] | null) - enemy_blind_pr: (Scalars['Float'] | null) - flash_assists_pr: (Scalars['Float'] | null) - hs_pct: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - overall_rating: (Scalars['Float'] | null) - positioning_rating: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - survival_pct: (Scalars['Float'] | null) - traded_death_pct: (Scalars['Float'] | null) - util_efficiency: (Scalars['Float'] | null) - utility_rating: (Scalars['Float'] | null) - __typename: 'player_match_performance_v_variance_fields' -} - - -/** columns and relationships of "player_match_stats_v" */ -export interface player_match_stats_v { - assists: (Scalars['Int'] | null) - assists_ct: (Scalars['Int'] | null) - assists_t: (Scalars['Int'] | null) - avg_crosshair_angle_deg: (Scalars['numeric'] | null) - avg_flash_duration: (Scalars['numeric'] | null) - avg_time_to_damage_s: (Scalars['numeric'] | null) - counter_strafe_eligible_shots: (Scalars['Int'] | null) - counter_strafed_shots: (Scalars['Int'] | null) - damage: (Scalars['Int'] | null) - damage_ct: (Scalars['Int'] | null) - damage_t: (Scalars['Int'] | null) - deaths: (Scalars['Int'] | null) - deaths_ct: (Scalars['Int'] | null) - deaths_t: (Scalars['Int'] | null) - decoy_throws: (Scalars['Int'] | null) - enemies_flashed: (Scalars['Int'] | null) - first_bullet_hits: (Scalars['Int'] | null) - first_bullet_shots: (Scalars['Int'] | null) - five_kill_rounds: (Scalars['Int'] | null) - flash_assists: (Scalars['Int'] | null) - flashes_thrown: (Scalars['Int'] | null) - four_kill_rounds: (Scalars['Int'] | null) - he_damage: (Scalars['Int'] | null) - he_team_damage: (Scalars['Int'] | null) - he_throws: (Scalars['Int'] | null) - headshot_hits: (Scalars['Int'] | null) - hits: (Scalars['Int'] | null) - hits_at_spotted: (Scalars['Int'] | null) - hs_kills: (Scalars['Int'] | null) - hs_kills_ct: (Scalars['Int'] | null) - hs_kills_t: (Scalars['Int'] | null) - kills: (Scalars['Int'] | null) - kills_ct: (Scalars['Int'] | null) - kills_t: (Scalars['Int'] | null) - knife_kills: (Scalars['Int'] | null) - match_id: (Scalars['uuid'] | null) - molotov_damage: (Scalars['Int'] | null) - molotov_throws: (Scalars['Int'] | null) - non_awp_hits: (Scalars['Int'] | null) - on_target_frames: (Scalars['Int'] | null) - rounds_ct: (Scalars['Int'] | null) - rounds_played: (Scalars['Int'] | null) - rounds_t: (Scalars['Int'] | null) - shots_at_spotted: (Scalars['Int'] | null) - shots_fired: (Scalars['Int'] | null) - smoke_throws: (Scalars['Int'] | null) - spotted_count: (Scalars['Int'] | null) - spotted_with_damage_count: (Scalars['Int'] | null) - spray_hits: (Scalars['Int'] | null) - spray_shots: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - team_damage: (Scalars['Int'] | null) - team_flashed: (Scalars['Int'] | null) - three_kill_rounds: (Scalars['Int'] | null) - total_engagement_frames: (Scalars['Int'] | null) - trade_kill_attempts: (Scalars['Int'] | null) - trade_kill_opportunities: (Scalars['Int'] | null) - trade_kill_successes: (Scalars['Int'] | null) - traded_death_attempts: (Scalars['Int'] | null) - traded_death_opportunities: (Scalars['Int'] | null) - traded_death_successes: (Scalars['Int'] | null) - two_kill_rounds: (Scalars['Int'] | null) - unused_utility_value: (Scalars['Int'] | null) - utility_on_death: (Scalars['numeric'] | null) - wasted_magazine_shots: (Scalars['Int'] | null) - zeus_kills: (Scalars['Int'] | null) - __typename: 'player_match_stats_v' -} - - -/** aggregated selection of "player_match_stats_v" */ -export interface player_match_stats_v_aggregate { - aggregate: (player_match_stats_v_aggregate_fields | null) - nodes: player_match_stats_v[] - __typename: 'player_match_stats_v_aggregate' -} - - -/** aggregate fields of "player_match_stats_v" */ -export interface player_match_stats_v_aggregate_fields { - avg: (player_match_stats_v_avg_fields | null) - count: Scalars['Int'] - max: (player_match_stats_v_max_fields | null) - min: (player_match_stats_v_min_fields | null) - stddev: (player_match_stats_v_stddev_fields | null) - stddev_pop: (player_match_stats_v_stddev_pop_fields | null) - stddev_samp: (player_match_stats_v_stddev_samp_fields | null) - sum: (player_match_stats_v_sum_fields | null) - var_pop: (player_match_stats_v_var_pop_fields | null) - var_samp: (player_match_stats_v_var_samp_fields | null) - variance: (player_match_stats_v_variance_fields | null) - __typename: 'player_match_stats_v_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface player_match_stats_v_avg_fields { - assists: (Scalars['Float'] | null) - assists_ct: (Scalars['Float'] | null) - assists_t: (Scalars['Float'] | null) - avg_crosshair_angle_deg: (Scalars['Float'] | null) - avg_flash_duration: (Scalars['Float'] | null) - avg_time_to_damage_s: (Scalars['Float'] | null) - counter_strafe_eligible_shots: (Scalars['Float'] | null) - counter_strafed_shots: (Scalars['Float'] | null) - damage: (Scalars['Float'] | null) - damage_ct: (Scalars['Float'] | null) - damage_t: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - deaths_ct: (Scalars['Float'] | null) - deaths_t: (Scalars['Float'] | null) - decoy_throws: (Scalars['Float'] | null) - enemies_flashed: (Scalars['Float'] | null) - first_bullet_hits: (Scalars['Float'] | null) - first_bullet_shots: (Scalars['Float'] | null) - five_kill_rounds: (Scalars['Float'] | null) - flash_assists: (Scalars['Float'] | null) - flashes_thrown: (Scalars['Float'] | null) - four_kill_rounds: (Scalars['Float'] | null) - he_damage: (Scalars['Float'] | null) - he_team_damage: (Scalars['Float'] | null) - he_throws: (Scalars['Float'] | null) - headshot_hits: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - hits_at_spotted: (Scalars['Float'] | null) - hs_kills: (Scalars['Float'] | null) - hs_kills_ct: (Scalars['Float'] | null) - hs_kills_t: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - kills_ct: (Scalars['Float'] | null) - kills_t: (Scalars['Float'] | null) - knife_kills: (Scalars['Float'] | null) - molotov_damage: (Scalars['Float'] | null) - molotov_throws: (Scalars['Float'] | null) - non_awp_hits: (Scalars['Float'] | null) - on_target_frames: (Scalars['Float'] | null) - rounds_ct: (Scalars['Float'] | null) - rounds_played: (Scalars['Float'] | null) - rounds_t: (Scalars['Float'] | null) - shots_at_spotted: (Scalars['Float'] | null) - shots_fired: (Scalars['Float'] | null) - smoke_throws: (Scalars['Float'] | null) - spotted_count: (Scalars['Float'] | null) - spotted_with_damage_count: (Scalars['Float'] | null) - spray_hits: (Scalars['Float'] | null) - spray_shots: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - team_damage: (Scalars['Float'] | null) - team_flashed: (Scalars['Float'] | null) - three_kill_rounds: (Scalars['Float'] | null) - total_engagement_frames: (Scalars['Float'] | null) - trade_kill_attempts: (Scalars['Float'] | null) - trade_kill_opportunities: (Scalars['Float'] | null) - trade_kill_successes: (Scalars['Float'] | null) - traded_death_attempts: (Scalars['Float'] | null) - traded_death_opportunities: (Scalars['Float'] | null) - traded_death_successes: (Scalars['Float'] | null) - two_kill_rounds: (Scalars['Float'] | null) - unused_utility_value: (Scalars['Float'] | null) - utility_on_death: (Scalars['Float'] | null) - wasted_magazine_shots: (Scalars['Float'] | null) - zeus_kills: (Scalars['Float'] | null) - __typename: 'player_match_stats_v_avg_fields' -} - - -/** aggregate max on columns */ -export interface player_match_stats_v_max_fields { - assists: (Scalars['Int'] | null) - assists_ct: (Scalars['Int'] | null) - assists_t: (Scalars['Int'] | null) - avg_crosshair_angle_deg: (Scalars['numeric'] | null) - avg_flash_duration: (Scalars['numeric'] | null) - avg_time_to_damage_s: (Scalars['numeric'] | null) - counter_strafe_eligible_shots: (Scalars['Int'] | null) - counter_strafed_shots: (Scalars['Int'] | null) - damage: (Scalars['Int'] | null) - damage_ct: (Scalars['Int'] | null) - damage_t: (Scalars['Int'] | null) - deaths: (Scalars['Int'] | null) - deaths_ct: (Scalars['Int'] | null) - deaths_t: (Scalars['Int'] | null) - decoy_throws: (Scalars['Int'] | null) - enemies_flashed: (Scalars['Int'] | null) - first_bullet_hits: (Scalars['Int'] | null) - first_bullet_shots: (Scalars['Int'] | null) - five_kill_rounds: (Scalars['Int'] | null) - flash_assists: (Scalars['Int'] | null) - flashes_thrown: (Scalars['Int'] | null) - four_kill_rounds: (Scalars['Int'] | null) - he_damage: (Scalars['Int'] | null) - he_team_damage: (Scalars['Int'] | null) - he_throws: (Scalars['Int'] | null) - headshot_hits: (Scalars['Int'] | null) - hits: (Scalars['Int'] | null) - hits_at_spotted: (Scalars['Int'] | null) - hs_kills: (Scalars['Int'] | null) - hs_kills_ct: (Scalars['Int'] | null) - hs_kills_t: (Scalars['Int'] | null) - kills: (Scalars['Int'] | null) - kills_ct: (Scalars['Int'] | null) - kills_t: (Scalars['Int'] | null) - knife_kills: (Scalars['Int'] | null) - match_id: (Scalars['uuid'] | null) - molotov_damage: (Scalars['Int'] | null) - molotov_throws: (Scalars['Int'] | null) - non_awp_hits: (Scalars['Int'] | null) - on_target_frames: (Scalars['Int'] | null) - rounds_ct: (Scalars['Int'] | null) - rounds_played: (Scalars['Int'] | null) - rounds_t: (Scalars['Int'] | null) - shots_at_spotted: (Scalars['Int'] | null) - shots_fired: (Scalars['Int'] | null) - smoke_throws: (Scalars['Int'] | null) - spotted_count: (Scalars['Int'] | null) - spotted_with_damage_count: (Scalars['Int'] | null) - spray_hits: (Scalars['Int'] | null) - spray_shots: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - team_damage: (Scalars['Int'] | null) - team_flashed: (Scalars['Int'] | null) - three_kill_rounds: (Scalars['Int'] | null) - total_engagement_frames: (Scalars['Int'] | null) - trade_kill_attempts: (Scalars['Int'] | null) - trade_kill_opportunities: (Scalars['Int'] | null) - trade_kill_successes: (Scalars['Int'] | null) - traded_death_attempts: (Scalars['Int'] | null) - traded_death_opportunities: (Scalars['Int'] | null) - traded_death_successes: (Scalars['Int'] | null) - two_kill_rounds: (Scalars['Int'] | null) - unused_utility_value: (Scalars['Int'] | null) - utility_on_death: (Scalars['numeric'] | null) - wasted_magazine_shots: (Scalars['Int'] | null) - zeus_kills: (Scalars['Int'] | null) - __typename: 'player_match_stats_v_max_fields' -} - - -/** aggregate min on columns */ -export interface player_match_stats_v_min_fields { - assists: (Scalars['Int'] | null) - assists_ct: (Scalars['Int'] | null) - assists_t: (Scalars['Int'] | null) - avg_crosshair_angle_deg: (Scalars['numeric'] | null) - avg_flash_duration: (Scalars['numeric'] | null) - avg_time_to_damage_s: (Scalars['numeric'] | null) - counter_strafe_eligible_shots: (Scalars['Int'] | null) - counter_strafed_shots: (Scalars['Int'] | null) - damage: (Scalars['Int'] | null) - damage_ct: (Scalars['Int'] | null) - damage_t: (Scalars['Int'] | null) - deaths: (Scalars['Int'] | null) - deaths_ct: (Scalars['Int'] | null) - deaths_t: (Scalars['Int'] | null) - decoy_throws: (Scalars['Int'] | null) - enemies_flashed: (Scalars['Int'] | null) - first_bullet_hits: (Scalars['Int'] | null) - first_bullet_shots: (Scalars['Int'] | null) - five_kill_rounds: (Scalars['Int'] | null) - flash_assists: (Scalars['Int'] | null) - flashes_thrown: (Scalars['Int'] | null) - four_kill_rounds: (Scalars['Int'] | null) - he_damage: (Scalars['Int'] | null) - he_team_damage: (Scalars['Int'] | null) - he_throws: (Scalars['Int'] | null) - headshot_hits: (Scalars['Int'] | null) - hits: (Scalars['Int'] | null) - hits_at_spotted: (Scalars['Int'] | null) - hs_kills: (Scalars['Int'] | null) - hs_kills_ct: (Scalars['Int'] | null) - hs_kills_t: (Scalars['Int'] | null) - kills: (Scalars['Int'] | null) - kills_ct: (Scalars['Int'] | null) - kills_t: (Scalars['Int'] | null) - knife_kills: (Scalars['Int'] | null) - match_id: (Scalars['uuid'] | null) - molotov_damage: (Scalars['Int'] | null) - molotov_throws: (Scalars['Int'] | null) - non_awp_hits: (Scalars['Int'] | null) - on_target_frames: (Scalars['Int'] | null) - rounds_ct: (Scalars['Int'] | null) - rounds_played: (Scalars['Int'] | null) - rounds_t: (Scalars['Int'] | null) - shots_at_spotted: (Scalars['Int'] | null) - shots_fired: (Scalars['Int'] | null) - smoke_throws: (Scalars['Int'] | null) - spotted_count: (Scalars['Int'] | null) - spotted_with_damage_count: (Scalars['Int'] | null) - spray_hits: (Scalars['Int'] | null) - spray_shots: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - team_damage: (Scalars['Int'] | null) - team_flashed: (Scalars['Int'] | null) - three_kill_rounds: (Scalars['Int'] | null) - total_engagement_frames: (Scalars['Int'] | null) - trade_kill_attempts: (Scalars['Int'] | null) - trade_kill_opportunities: (Scalars['Int'] | null) - trade_kill_successes: (Scalars['Int'] | null) - traded_death_attempts: (Scalars['Int'] | null) - traded_death_opportunities: (Scalars['Int'] | null) - traded_death_successes: (Scalars['Int'] | null) - two_kill_rounds: (Scalars['Int'] | null) - unused_utility_value: (Scalars['Int'] | null) - utility_on_death: (Scalars['numeric'] | null) - wasted_magazine_shots: (Scalars['Int'] | null) - zeus_kills: (Scalars['Int'] | null) - __typename: 'player_match_stats_v_min_fields' -} - - -/** select columns of table "player_match_stats_v" */ -export type player_match_stats_v_select_column = 'assists' | 'assists_ct' | 'assists_t' | 'avg_crosshair_angle_deg' | 'avg_flash_duration' | 'avg_time_to_damage_s' | 'counter_strafe_eligible_shots' | 'counter_strafed_shots' | 'damage' | 'damage_ct' | 'damage_t' | 'deaths' | 'deaths_ct' | 'deaths_t' | 'decoy_throws' | 'enemies_flashed' | 'first_bullet_hits' | 'first_bullet_shots' | 'five_kill_rounds' | 'flash_assists' | 'flashes_thrown' | 'four_kill_rounds' | 'he_damage' | 'he_team_damage' | 'he_throws' | 'headshot_hits' | 'hits' | 'hits_at_spotted' | 'hs_kills' | 'hs_kills_ct' | 'hs_kills_t' | 'kills' | 'kills_ct' | 'kills_t' | 'knife_kills' | 'match_id' | 'molotov_damage' | 'molotov_throws' | 'non_awp_hits' | 'on_target_frames' | 'rounds_ct' | 'rounds_played' | 'rounds_t' | 'shots_at_spotted' | 'shots_fired' | 'smoke_throws' | 'spotted_count' | 'spotted_with_damage_count' | 'spray_hits' | 'spray_shots' | 'steam_id' | 'team_damage' | 'team_flashed' | 'three_kill_rounds' | 'total_engagement_frames' | 'trade_kill_attempts' | 'trade_kill_opportunities' | 'trade_kill_successes' | 'traded_death_attempts' | 'traded_death_opportunities' | 'traded_death_successes' | 'two_kill_rounds' | 'unused_utility_value' | 'utility_on_death' | 'wasted_magazine_shots' | 'zeus_kills' - - -/** aggregate stddev on columns */ -export interface player_match_stats_v_stddev_fields { - assists: (Scalars['Float'] | null) - assists_ct: (Scalars['Float'] | null) - assists_t: (Scalars['Float'] | null) - avg_crosshair_angle_deg: (Scalars['Float'] | null) - avg_flash_duration: (Scalars['Float'] | null) - avg_time_to_damage_s: (Scalars['Float'] | null) - counter_strafe_eligible_shots: (Scalars['Float'] | null) - counter_strafed_shots: (Scalars['Float'] | null) - damage: (Scalars['Float'] | null) - damage_ct: (Scalars['Float'] | null) - damage_t: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - deaths_ct: (Scalars['Float'] | null) - deaths_t: (Scalars['Float'] | null) - decoy_throws: (Scalars['Float'] | null) - enemies_flashed: (Scalars['Float'] | null) - first_bullet_hits: (Scalars['Float'] | null) - first_bullet_shots: (Scalars['Float'] | null) - five_kill_rounds: (Scalars['Float'] | null) - flash_assists: (Scalars['Float'] | null) - flashes_thrown: (Scalars['Float'] | null) - four_kill_rounds: (Scalars['Float'] | null) - he_damage: (Scalars['Float'] | null) - he_team_damage: (Scalars['Float'] | null) - he_throws: (Scalars['Float'] | null) - headshot_hits: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - hits_at_spotted: (Scalars['Float'] | null) - hs_kills: (Scalars['Float'] | null) - hs_kills_ct: (Scalars['Float'] | null) - hs_kills_t: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - kills_ct: (Scalars['Float'] | null) - kills_t: (Scalars['Float'] | null) - knife_kills: (Scalars['Float'] | null) - molotov_damage: (Scalars['Float'] | null) - molotov_throws: (Scalars['Float'] | null) - non_awp_hits: (Scalars['Float'] | null) - on_target_frames: (Scalars['Float'] | null) - rounds_ct: (Scalars['Float'] | null) - rounds_played: (Scalars['Float'] | null) - rounds_t: (Scalars['Float'] | null) - shots_at_spotted: (Scalars['Float'] | null) - shots_fired: (Scalars['Float'] | null) - smoke_throws: (Scalars['Float'] | null) - spotted_count: (Scalars['Float'] | null) - spotted_with_damage_count: (Scalars['Float'] | null) - spray_hits: (Scalars['Float'] | null) - spray_shots: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - team_damage: (Scalars['Float'] | null) - team_flashed: (Scalars['Float'] | null) - three_kill_rounds: (Scalars['Float'] | null) - total_engagement_frames: (Scalars['Float'] | null) - trade_kill_attempts: (Scalars['Float'] | null) - trade_kill_opportunities: (Scalars['Float'] | null) - trade_kill_successes: (Scalars['Float'] | null) - traded_death_attempts: (Scalars['Float'] | null) - traded_death_opportunities: (Scalars['Float'] | null) - traded_death_successes: (Scalars['Float'] | null) - two_kill_rounds: (Scalars['Float'] | null) - unused_utility_value: (Scalars['Float'] | null) - utility_on_death: (Scalars['Float'] | null) - wasted_magazine_shots: (Scalars['Float'] | null) - zeus_kills: (Scalars['Float'] | null) - __typename: 'player_match_stats_v_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface player_match_stats_v_stddev_pop_fields { - assists: (Scalars['Float'] | null) - assists_ct: (Scalars['Float'] | null) - assists_t: (Scalars['Float'] | null) - avg_crosshair_angle_deg: (Scalars['Float'] | null) - avg_flash_duration: (Scalars['Float'] | null) - avg_time_to_damage_s: (Scalars['Float'] | null) - counter_strafe_eligible_shots: (Scalars['Float'] | null) - counter_strafed_shots: (Scalars['Float'] | null) - damage: (Scalars['Float'] | null) - damage_ct: (Scalars['Float'] | null) - damage_t: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - deaths_ct: (Scalars['Float'] | null) - deaths_t: (Scalars['Float'] | null) - decoy_throws: (Scalars['Float'] | null) - enemies_flashed: (Scalars['Float'] | null) - first_bullet_hits: (Scalars['Float'] | null) - first_bullet_shots: (Scalars['Float'] | null) - five_kill_rounds: (Scalars['Float'] | null) - flash_assists: (Scalars['Float'] | null) - flashes_thrown: (Scalars['Float'] | null) - four_kill_rounds: (Scalars['Float'] | null) - he_damage: (Scalars['Float'] | null) - he_team_damage: (Scalars['Float'] | null) - he_throws: (Scalars['Float'] | null) - headshot_hits: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - hits_at_spotted: (Scalars['Float'] | null) - hs_kills: (Scalars['Float'] | null) - hs_kills_ct: (Scalars['Float'] | null) - hs_kills_t: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - kills_ct: (Scalars['Float'] | null) - kills_t: (Scalars['Float'] | null) - knife_kills: (Scalars['Float'] | null) - molotov_damage: (Scalars['Float'] | null) - molotov_throws: (Scalars['Float'] | null) - non_awp_hits: (Scalars['Float'] | null) - on_target_frames: (Scalars['Float'] | null) - rounds_ct: (Scalars['Float'] | null) - rounds_played: (Scalars['Float'] | null) - rounds_t: (Scalars['Float'] | null) - shots_at_spotted: (Scalars['Float'] | null) - shots_fired: (Scalars['Float'] | null) - smoke_throws: (Scalars['Float'] | null) - spotted_count: (Scalars['Float'] | null) - spotted_with_damage_count: (Scalars['Float'] | null) - spray_hits: (Scalars['Float'] | null) - spray_shots: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - team_damage: (Scalars['Float'] | null) - team_flashed: (Scalars['Float'] | null) - three_kill_rounds: (Scalars['Float'] | null) - total_engagement_frames: (Scalars['Float'] | null) - trade_kill_attempts: (Scalars['Float'] | null) - trade_kill_opportunities: (Scalars['Float'] | null) - trade_kill_successes: (Scalars['Float'] | null) - traded_death_attempts: (Scalars['Float'] | null) - traded_death_opportunities: (Scalars['Float'] | null) - traded_death_successes: (Scalars['Float'] | null) - two_kill_rounds: (Scalars['Float'] | null) - unused_utility_value: (Scalars['Float'] | null) - utility_on_death: (Scalars['Float'] | null) - wasted_magazine_shots: (Scalars['Float'] | null) - zeus_kills: (Scalars['Float'] | null) - __typename: 'player_match_stats_v_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface player_match_stats_v_stddev_samp_fields { - assists: (Scalars['Float'] | null) - assists_ct: (Scalars['Float'] | null) - assists_t: (Scalars['Float'] | null) - avg_crosshair_angle_deg: (Scalars['Float'] | null) - avg_flash_duration: (Scalars['Float'] | null) - avg_time_to_damage_s: (Scalars['Float'] | null) - counter_strafe_eligible_shots: (Scalars['Float'] | null) - counter_strafed_shots: (Scalars['Float'] | null) - damage: (Scalars['Float'] | null) - damage_ct: (Scalars['Float'] | null) - damage_t: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - deaths_ct: (Scalars['Float'] | null) - deaths_t: (Scalars['Float'] | null) - decoy_throws: (Scalars['Float'] | null) - enemies_flashed: (Scalars['Float'] | null) - first_bullet_hits: (Scalars['Float'] | null) - first_bullet_shots: (Scalars['Float'] | null) - five_kill_rounds: (Scalars['Float'] | null) - flash_assists: (Scalars['Float'] | null) - flashes_thrown: (Scalars['Float'] | null) - four_kill_rounds: (Scalars['Float'] | null) - he_damage: (Scalars['Float'] | null) - he_team_damage: (Scalars['Float'] | null) - he_throws: (Scalars['Float'] | null) - headshot_hits: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - hits_at_spotted: (Scalars['Float'] | null) - hs_kills: (Scalars['Float'] | null) - hs_kills_ct: (Scalars['Float'] | null) - hs_kills_t: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - kills_ct: (Scalars['Float'] | null) - kills_t: (Scalars['Float'] | null) - knife_kills: (Scalars['Float'] | null) - molotov_damage: (Scalars['Float'] | null) - molotov_throws: (Scalars['Float'] | null) - non_awp_hits: (Scalars['Float'] | null) - on_target_frames: (Scalars['Float'] | null) - rounds_ct: (Scalars['Float'] | null) - rounds_played: (Scalars['Float'] | null) - rounds_t: (Scalars['Float'] | null) - shots_at_spotted: (Scalars['Float'] | null) - shots_fired: (Scalars['Float'] | null) - smoke_throws: (Scalars['Float'] | null) - spotted_count: (Scalars['Float'] | null) - spotted_with_damage_count: (Scalars['Float'] | null) - spray_hits: (Scalars['Float'] | null) - spray_shots: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - team_damage: (Scalars['Float'] | null) - team_flashed: (Scalars['Float'] | null) - three_kill_rounds: (Scalars['Float'] | null) - total_engagement_frames: (Scalars['Float'] | null) - trade_kill_attempts: (Scalars['Float'] | null) - trade_kill_opportunities: (Scalars['Float'] | null) - trade_kill_successes: (Scalars['Float'] | null) - traded_death_attempts: (Scalars['Float'] | null) - traded_death_opportunities: (Scalars['Float'] | null) - traded_death_successes: (Scalars['Float'] | null) - two_kill_rounds: (Scalars['Float'] | null) - unused_utility_value: (Scalars['Float'] | null) - utility_on_death: (Scalars['Float'] | null) - wasted_magazine_shots: (Scalars['Float'] | null) - zeus_kills: (Scalars['Float'] | null) - __typename: 'player_match_stats_v_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface player_match_stats_v_sum_fields { - assists: (Scalars['Int'] | null) - assists_ct: (Scalars['Int'] | null) - assists_t: (Scalars['Int'] | null) - avg_crosshair_angle_deg: (Scalars['numeric'] | null) - avg_flash_duration: (Scalars['numeric'] | null) - avg_time_to_damage_s: (Scalars['numeric'] | null) - counter_strafe_eligible_shots: (Scalars['Int'] | null) - counter_strafed_shots: (Scalars['Int'] | null) - damage: (Scalars['Int'] | null) - damage_ct: (Scalars['Int'] | null) - damage_t: (Scalars['Int'] | null) - deaths: (Scalars['Int'] | null) - deaths_ct: (Scalars['Int'] | null) - deaths_t: (Scalars['Int'] | null) - decoy_throws: (Scalars['Int'] | null) - enemies_flashed: (Scalars['Int'] | null) - first_bullet_hits: (Scalars['Int'] | null) - first_bullet_shots: (Scalars['Int'] | null) - five_kill_rounds: (Scalars['Int'] | null) - flash_assists: (Scalars['Int'] | null) - flashes_thrown: (Scalars['Int'] | null) - four_kill_rounds: (Scalars['Int'] | null) - he_damage: (Scalars['Int'] | null) - he_team_damage: (Scalars['Int'] | null) - he_throws: (Scalars['Int'] | null) - headshot_hits: (Scalars['Int'] | null) - hits: (Scalars['Int'] | null) - hits_at_spotted: (Scalars['Int'] | null) - hs_kills: (Scalars['Int'] | null) - hs_kills_ct: (Scalars['Int'] | null) - hs_kills_t: (Scalars['Int'] | null) - kills: (Scalars['Int'] | null) - kills_ct: (Scalars['Int'] | null) - kills_t: (Scalars['Int'] | null) - knife_kills: (Scalars['Int'] | null) - molotov_damage: (Scalars['Int'] | null) - molotov_throws: (Scalars['Int'] | null) - non_awp_hits: (Scalars['Int'] | null) - on_target_frames: (Scalars['Int'] | null) - rounds_ct: (Scalars['Int'] | null) - rounds_played: (Scalars['Int'] | null) - rounds_t: (Scalars['Int'] | null) - shots_at_spotted: (Scalars['Int'] | null) - shots_fired: (Scalars['Int'] | null) - smoke_throws: (Scalars['Int'] | null) - spotted_count: (Scalars['Int'] | null) - spotted_with_damage_count: (Scalars['Int'] | null) - spray_hits: (Scalars['Int'] | null) - spray_shots: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - team_damage: (Scalars['Int'] | null) - team_flashed: (Scalars['Int'] | null) - three_kill_rounds: (Scalars['Int'] | null) - total_engagement_frames: (Scalars['Int'] | null) - trade_kill_attempts: (Scalars['Int'] | null) - trade_kill_opportunities: (Scalars['Int'] | null) - trade_kill_successes: (Scalars['Int'] | null) - traded_death_attempts: (Scalars['Int'] | null) - traded_death_opportunities: (Scalars['Int'] | null) - traded_death_successes: (Scalars['Int'] | null) - two_kill_rounds: (Scalars['Int'] | null) - unused_utility_value: (Scalars['Int'] | null) - utility_on_death: (Scalars['numeric'] | null) - wasted_magazine_shots: (Scalars['Int'] | null) - zeus_kills: (Scalars['Int'] | null) - __typename: 'player_match_stats_v_sum_fields' -} - - -/** aggregate var_pop on columns */ -export interface player_match_stats_v_var_pop_fields { - assists: (Scalars['Float'] | null) - assists_ct: (Scalars['Float'] | null) - assists_t: (Scalars['Float'] | null) - avg_crosshair_angle_deg: (Scalars['Float'] | null) - avg_flash_duration: (Scalars['Float'] | null) - avg_time_to_damage_s: (Scalars['Float'] | null) - counter_strafe_eligible_shots: (Scalars['Float'] | null) - counter_strafed_shots: (Scalars['Float'] | null) - damage: (Scalars['Float'] | null) - damage_ct: (Scalars['Float'] | null) - damage_t: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - deaths_ct: (Scalars['Float'] | null) - deaths_t: (Scalars['Float'] | null) - decoy_throws: (Scalars['Float'] | null) - enemies_flashed: (Scalars['Float'] | null) - first_bullet_hits: (Scalars['Float'] | null) - first_bullet_shots: (Scalars['Float'] | null) - five_kill_rounds: (Scalars['Float'] | null) - flash_assists: (Scalars['Float'] | null) - flashes_thrown: (Scalars['Float'] | null) - four_kill_rounds: (Scalars['Float'] | null) - he_damage: (Scalars['Float'] | null) - he_team_damage: (Scalars['Float'] | null) - he_throws: (Scalars['Float'] | null) - headshot_hits: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - hits_at_spotted: (Scalars['Float'] | null) - hs_kills: (Scalars['Float'] | null) - hs_kills_ct: (Scalars['Float'] | null) - hs_kills_t: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - kills_ct: (Scalars['Float'] | null) - kills_t: (Scalars['Float'] | null) - knife_kills: (Scalars['Float'] | null) - molotov_damage: (Scalars['Float'] | null) - molotov_throws: (Scalars['Float'] | null) - non_awp_hits: (Scalars['Float'] | null) - on_target_frames: (Scalars['Float'] | null) - rounds_ct: (Scalars['Float'] | null) - rounds_played: (Scalars['Float'] | null) - rounds_t: (Scalars['Float'] | null) - shots_at_spotted: (Scalars['Float'] | null) - shots_fired: (Scalars['Float'] | null) - smoke_throws: (Scalars['Float'] | null) - spotted_count: (Scalars['Float'] | null) - spotted_with_damage_count: (Scalars['Float'] | null) - spray_hits: (Scalars['Float'] | null) - spray_shots: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - team_damage: (Scalars['Float'] | null) - team_flashed: (Scalars['Float'] | null) - three_kill_rounds: (Scalars['Float'] | null) - total_engagement_frames: (Scalars['Float'] | null) - trade_kill_attempts: (Scalars['Float'] | null) - trade_kill_opportunities: (Scalars['Float'] | null) - trade_kill_successes: (Scalars['Float'] | null) - traded_death_attempts: (Scalars['Float'] | null) - traded_death_opportunities: (Scalars['Float'] | null) - traded_death_successes: (Scalars['Float'] | null) - two_kill_rounds: (Scalars['Float'] | null) - unused_utility_value: (Scalars['Float'] | null) - utility_on_death: (Scalars['Float'] | null) - wasted_magazine_shots: (Scalars['Float'] | null) - zeus_kills: (Scalars['Float'] | null) - __typename: 'player_match_stats_v_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface player_match_stats_v_var_samp_fields { - assists: (Scalars['Float'] | null) - assists_ct: (Scalars['Float'] | null) - assists_t: (Scalars['Float'] | null) - avg_crosshair_angle_deg: (Scalars['Float'] | null) - avg_flash_duration: (Scalars['Float'] | null) - avg_time_to_damage_s: (Scalars['Float'] | null) - counter_strafe_eligible_shots: (Scalars['Float'] | null) - counter_strafed_shots: (Scalars['Float'] | null) - damage: (Scalars['Float'] | null) - damage_ct: (Scalars['Float'] | null) - damage_t: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - deaths_ct: (Scalars['Float'] | null) - deaths_t: (Scalars['Float'] | null) - decoy_throws: (Scalars['Float'] | null) - enemies_flashed: (Scalars['Float'] | null) - first_bullet_hits: (Scalars['Float'] | null) - first_bullet_shots: (Scalars['Float'] | null) - five_kill_rounds: (Scalars['Float'] | null) - flash_assists: (Scalars['Float'] | null) - flashes_thrown: (Scalars['Float'] | null) - four_kill_rounds: (Scalars['Float'] | null) - he_damage: (Scalars['Float'] | null) - he_team_damage: (Scalars['Float'] | null) - he_throws: (Scalars['Float'] | null) - headshot_hits: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - hits_at_spotted: (Scalars['Float'] | null) - hs_kills: (Scalars['Float'] | null) - hs_kills_ct: (Scalars['Float'] | null) - hs_kills_t: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - kills_ct: (Scalars['Float'] | null) - kills_t: (Scalars['Float'] | null) - knife_kills: (Scalars['Float'] | null) - molotov_damage: (Scalars['Float'] | null) - molotov_throws: (Scalars['Float'] | null) - non_awp_hits: (Scalars['Float'] | null) - on_target_frames: (Scalars['Float'] | null) - rounds_ct: (Scalars['Float'] | null) - rounds_played: (Scalars['Float'] | null) - rounds_t: (Scalars['Float'] | null) - shots_at_spotted: (Scalars['Float'] | null) - shots_fired: (Scalars['Float'] | null) - smoke_throws: (Scalars['Float'] | null) - spotted_count: (Scalars['Float'] | null) - spotted_with_damage_count: (Scalars['Float'] | null) - spray_hits: (Scalars['Float'] | null) - spray_shots: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - team_damage: (Scalars['Float'] | null) - team_flashed: (Scalars['Float'] | null) - three_kill_rounds: (Scalars['Float'] | null) - total_engagement_frames: (Scalars['Float'] | null) - trade_kill_attempts: (Scalars['Float'] | null) - trade_kill_opportunities: (Scalars['Float'] | null) - trade_kill_successes: (Scalars['Float'] | null) - traded_death_attempts: (Scalars['Float'] | null) - traded_death_opportunities: (Scalars['Float'] | null) - traded_death_successes: (Scalars['Float'] | null) - two_kill_rounds: (Scalars['Float'] | null) - unused_utility_value: (Scalars['Float'] | null) - utility_on_death: (Scalars['Float'] | null) - wasted_magazine_shots: (Scalars['Float'] | null) - zeus_kills: (Scalars['Float'] | null) - __typename: 'player_match_stats_v_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface player_match_stats_v_variance_fields { - assists: (Scalars['Float'] | null) - assists_ct: (Scalars['Float'] | null) - assists_t: (Scalars['Float'] | null) - avg_crosshair_angle_deg: (Scalars['Float'] | null) - avg_flash_duration: (Scalars['Float'] | null) - avg_time_to_damage_s: (Scalars['Float'] | null) - counter_strafe_eligible_shots: (Scalars['Float'] | null) - counter_strafed_shots: (Scalars['Float'] | null) - damage: (Scalars['Float'] | null) - damage_ct: (Scalars['Float'] | null) - damage_t: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - deaths_ct: (Scalars['Float'] | null) - deaths_t: (Scalars['Float'] | null) - decoy_throws: (Scalars['Float'] | null) - enemies_flashed: (Scalars['Float'] | null) - first_bullet_hits: (Scalars['Float'] | null) - first_bullet_shots: (Scalars['Float'] | null) - five_kill_rounds: (Scalars['Float'] | null) - flash_assists: (Scalars['Float'] | null) - flashes_thrown: (Scalars['Float'] | null) - four_kill_rounds: (Scalars['Float'] | null) - he_damage: (Scalars['Float'] | null) - he_team_damage: (Scalars['Float'] | null) - he_throws: (Scalars['Float'] | null) - headshot_hits: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - hits_at_spotted: (Scalars['Float'] | null) - hs_kills: (Scalars['Float'] | null) - hs_kills_ct: (Scalars['Float'] | null) - hs_kills_t: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - kills_ct: (Scalars['Float'] | null) - kills_t: (Scalars['Float'] | null) - knife_kills: (Scalars['Float'] | null) - molotov_damage: (Scalars['Float'] | null) - molotov_throws: (Scalars['Float'] | null) - non_awp_hits: (Scalars['Float'] | null) - on_target_frames: (Scalars['Float'] | null) - rounds_ct: (Scalars['Float'] | null) - rounds_played: (Scalars['Float'] | null) - rounds_t: (Scalars['Float'] | null) - shots_at_spotted: (Scalars['Float'] | null) - shots_fired: (Scalars['Float'] | null) - smoke_throws: (Scalars['Float'] | null) - spotted_count: (Scalars['Float'] | null) - spotted_with_damage_count: (Scalars['Float'] | null) - spray_hits: (Scalars['Float'] | null) - spray_shots: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - team_damage: (Scalars['Float'] | null) - team_flashed: (Scalars['Float'] | null) - three_kill_rounds: (Scalars['Float'] | null) - total_engagement_frames: (Scalars['Float'] | null) - trade_kill_attempts: (Scalars['Float'] | null) - trade_kill_opportunities: (Scalars['Float'] | null) - trade_kill_successes: (Scalars['Float'] | null) - traded_death_attempts: (Scalars['Float'] | null) - traded_death_opportunities: (Scalars['Float'] | null) - traded_death_successes: (Scalars['Float'] | null) - two_kill_rounds: (Scalars['Float'] | null) - unused_utility_value: (Scalars['Float'] | null) - utility_on_death: (Scalars['Float'] | null) - wasted_magazine_shots: (Scalars['Float'] | null) - zeus_kills: (Scalars['Float'] | null) - __typename: 'player_match_stats_v_variance_fields' -} - - -/** columns and relationships of "player_objectives" */ -export interface player_objectives { - deleted_at: (Scalars['timestamptz'] | null) - /** An object relationship */ - match: matches - match_id: Scalars['uuid'] - /** An object relationship */ - match_map: match_maps - match_map_id: Scalars['uuid'] - /** An object relationship */ - player: players - player_steam_id: Scalars['bigint'] - round: Scalars['Int'] - time: Scalars['timestamptz'] - type: e_objective_types_enum - __typename: 'player_objectives' -} - - -/** aggregated selection of "player_objectives" */ -export interface player_objectives_aggregate { - aggregate: (player_objectives_aggregate_fields | null) - nodes: player_objectives[] - __typename: 'player_objectives_aggregate' -} - - -/** aggregate fields of "player_objectives" */ -export interface player_objectives_aggregate_fields { - avg: (player_objectives_avg_fields | null) - count: Scalars['Int'] - max: (player_objectives_max_fields | null) - min: (player_objectives_min_fields | null) - stddev: (player_objectives_stddev_fields | null) - stddev_pop: (player_objectives_stddev_pop_fields | null) - stddev_samp: (player_objectives_stddev_samp_fields | null) - sum: (player_objectives_sum_fields | null) - var_pop: (player_objectives_var_pop_fields | null) - var_samp: (player_objectives_var_samp_fields | null) - variance: (player_objectives_variance_fields | null) - __typename: 'player_objectives_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface player_objectives_avg_fields { - player_steam_id: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'player_objectives_avg_fields' -} - - -/** unique or primary key constraints on table "player_objectives" */ -export type player_objectives_constraint = 'player_objectives_pkey' - - -/** aggregate max on columns */ -export interface player_objectives_max_fields { - deleted_at: (Scalars['timestamptz'] | null) - match_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - player_steam_id: (Scalars['bigint'] | null) - round: (Scalars['Int'] | null) - time: (Scalars['timestamptz'] | null) - __typename: 'player_objectives_max_fields' -} - - -/** aggregate min on columns */ -export interface player_objectives_min_fields { - deleted_at: (Scalars['timestamptz'] | null) - match_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - player_steam_id: (Scalars['bigint'] | null) - round: (Scalars['Int'] | null) - time: (Scalars['timestamptz'] | null) - __typename: 'player_objectives_min_fields' -} - - -/** response of any mutation on the table "player_objectives" */ -export interface player_objectives_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: player_objectives[] - __typename: 'player_objectives_mutation_response' -} - - -/** select columns of table "player_objectives" */ -export type player_objectives_select_column = 'deleted_at' | 'match_id' | 'match_map_id' | 'player_steam_id' | 'round' | 'time' | 'type' - - -/** aggregate stddev on columns */ -export interface player_objectives_stddev_fields { - player_steam_id: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'player_objectives_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface player_objectives_stddev_pop_fields { - player_steam_id: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'player_objectives_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface player_objectives_stddev_samp_fields { - player_steam_id: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'player_objectives_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface player_objectives_sum_fields { - player_steam_id: (Scalars['bigint'] | null) - round: (Scalars['Int'] | null) - __typename: 'player_objectives_sum_fields' -} - - -/** update columns of table "player_objectives" */ -export type player_objectives_update_column = 'deleted_at' | 'match_id' | 'match_map_id' | 'player_steam_id' | 'round' | 'time' | 'type' - - -/** aggregate var_pop on columns */ -export interface player_objectives_var_pop_fields { - player_steam_id: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'player_objectives_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface player_objectives_var_samp_fields { - player_steam_id: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'player_objectives_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface player_objectives_variance_fields { - player_steam_id: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'player_objectives_variance_fields' -} - - -/** columns and relationships of "player_performance_v" */ -export interface player_performance_v { - accuracy_score: (Scalars['float8'] | null) - aim_goal: (Scalars['float8'] | null) - aim_rating: (Scalars['float8'] | null) - band: (Scalars['Int'] | null) - band_sample: (Scalars['bigint'] | null) - blind_score: (Scalars['float8'] | null) - counter_strafe_score: (Scalars['float8'] | null) - crosshair_score: (Scalars['float8'] | null) - flash_assists_score: (Scalars['float8'] | null) - hs_score: (Scalars['float8'] | null) - kast_score: (Scalars['float8'] | null) - maps: (Scalars['Int'] | null) - positioning_goal: (Scalars['float8'] | null) - positioning_rating: (Scalars['float8'] | null) - premier_rank: (Scalars['Int'] | null) - rounds: (Scalars['Int'] | null) - spotted_score: (Scalars['float8'] | null) - steam_id: (Scalars['bigint'] | null) - survival_score: (Scalars['float8'] | null) - traded_score: (Scalars['float8'] | null) - ttd_score: (Scalars['float8'] | null) - util_eff_score: (Scalars['float8'] | null) - utility_goal: (Scalars['float8'] | null) - utility_rating: (Scalars['float8'] | null) - __typename: 'player_performance_v' -} - - -/** aggregated selection of "player_performance_v" */ -export interface player_performance_v_aggregate { - aggregate: (player_performance_v_aggregate_fields | null) - nodes: player_performance_v[] - __typename: 'player_performance_v_aggregate' -} - - -/** aggregate fields of "player_performance_v" */ -export interface player_performance_v_aggregate_fields { - avg: (player_performance_v_avg_fields | null) - count: Scalars['Int'] - max: (player_performance_v_max_fields | null) - min: (player_performance_v_min_fields | null) - stddev: (player_performance_v_stddev_fields | null) - stddev_pop: (player_performance_v_stddev_pop_fields | null) - stddev_samp: (player_performance_v_stddev_samp_fields | null) - sum: (player_performance_v_sum_fields | null) - var_pop: (player_performance_v_var_pop_fields | null) - var_samp: (player_performance_v_var_samp_fields | null) - variance: (player_performance_v_variance_fields | null) - __typename: 'player_performance_v_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface player_performance_v_avg_fields { - accuracy_score: (Scalars['Float'] | null) - aim_goal: (Scalars['Float'] | null) - aim_rating: (Scalars['Float'] | null) - band: (Scalars['Float'] | null) - band_sample: (Scalars['Float'] | null) - blind_score: (Scalars['Float'] | null) - counter_strafe_score: (Scalars['Float'] | null) - crosshair_score: (Scalars['Float'] | null) - flash_assists_score: (Scalars['Float'] | null) - hs_score: (Scalars['Float'] | null) - kast_score: (Scalars['Float'] | null) - maps: (Scalars['Float'] | null) - positioning_goal: (Scalars['Float'] | null) - positioning_rating: (Scalars['Float'] | null) - premier_rank: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - spotted_score: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - survival_score: (Scalars['Float'] | null) - traded_score: (Scalars['Float'] | null) - ttd_score: (Scalars['Float'] | null) - util_eff_score: (Scalars['Float'] | null) - utility_goal: (Scalars['Float'] | null) - utility_rating: (Scalars['Float'] | null) - __typename: 'player_performance_v_avg_fields' -} - - -/** aggregate max on columns */ -export interface player_performance_v_max_fields { - accuracy_score: (Scalars['float8'] | null) - aim_goal: (Scalars['float8'] | null) - aim_rating: (Scalars['float8'] | null) - band: (Scalars['Int'] | null) - band_sample: (Scalars['bigint'] | null) - blind_score: (Scalars['float8'] | null) - counter_strafe_score: (Scalars['float8'] | null) - crosshair_score: (Scalars['float8'] | null) - flash_assists_score: (Scalars['float8'] | null) - hs_score: (Scalars['float8'] | null) - kast_score: (Scalars['float8'] | null) - maps: (Scalars['Int'] | null) - positioning_goal: (Scalars['float8'] | null) - positioning_rating: (Scalars['float8'] | null) - premier_rank: (Scalars['Int'] | null) - rounds: (Scalars['Int'] | null) - spotted_score: (Scalars['float8'] | null) - steam_id: (Scalars['bigint'] | null) - survival_score: (Scalars['float8'] | null) - traded_score: (Scalars['float8'] | null) - ttd_score: (Scalars['float8'] | null) - util_eff_score: (Scalars['float8'] | null) - utility_goal: (Scalars['float8'] | null) - utility_rating: (Scalars['float8'] | null) - __typename: 'player_performance_v_max_fields' -} - - -/** aggregate min on columns */ -export interface player_performance_v_min_fields { - accuracy_score: (Scalars['float8'] | null) - aim_goal: (Scalars['float8'] | null) - aim_rating: (Scalars['float8'] | null) - band: (Scalars['Int'] | null) - band_sample: (Scalars['bigint'] | null) - blind_score: (Scalars['float8'] | null) - counter_strafe_score: (Scalars['float8'] | null) - crosshair_score: (Scalars['float8'] | null) - flash_assists_score: (Scalars['float8'] | null) - hs_score: (Scalars['float8'] | null) - kast_score: (Scalars['float8'] | null) - maps: (Scalars['Int'] | null) - positioning_goal: (Scalars['float8'] | null) - positioning_rating: (Scalars['float8'] | null) - premier_rank: (Scalars['Int'] | null) - rounds: (Scalars['Int'] | null) - spotted_score: (Scalars['float8'] | null) - steam_id: (Scalars['bigint'] | null) - survival_score: (Scalars['float8'] | null) - traded_score: (Scalars['float8'] | null) - ttd_score: (Scalars['float8'] | null) - util_eff_score: (Scalars['float8'] | null) - utility_goal: (Scalars['float8'] | null) - utility_rating: (Scalars['float8'] | null) - __typename: 'player_performance_v_min_fields' -} - - -/** select columns of table "player_performance_v" */ -export type player_performance_v_select_column = 'accuracy_score' | 'aim_goal' | 'aim_rating' | 'band' | 'band_sample' | 'blind_score' | 'counter_strafe_score' | 'crosshair_score' | 'flash_assists_score' | 'hs_score' | 'kast_score' | 'maps' | 'positioning_goal' | 'positioning_rating' | 'premier_rank' | 'rounds' | 'spotted_score' | 'steam_id' | 'survival_score' | 'traded_score' | 'ttd_score' | 'util_eff_score' | 'utility_goal' | 'utility_rating' - - -/** aggregate stddev on columns */ -export interface player_performance_v_stddev_fields { - accuracy_score: (Scalars['Float'] | null) - aim_goal: (Scalars['Float'] | null) - aim_rating: (Scalars['Float'] | null) - band: (Scalars['Float'] | null) - band_sample: (Scalars['Float'] | null) - blind_score: (Scalars['Float'] | null) - counter_strafe_score: (Scalars['Float'] | null) - crosshair_score: (Scalars['Float'] | null) - flash_assists_score: (Scalars['Float'] | null) - hs_score: (Scalars['Float'] | null) - kast_score: (Scalars['Float'] | null) - maps: (Scalars['Float'] | null) - positioning_goal: (Scalars['Float'] | null) - positioning_rating: (Scalars['Float'] | null) - premier_rank: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - spotted_score: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - survival_score: (Scalars['Float'] | null) - traded_score: (Scalars['Float'] | null) - ttd_score: (Scalars['Float'] | null) - util_eff_score: (Scalars['Float'] | null) - utility_goal: (Scalars['Float'] | null) - utility_rating: (Scalars['Float'] | null) - __typename: 'player_performance_v_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface player_performance_v_stddev_pop_fields { - accuracy_score: (Scalars['Float'] | null) - aim_goal: (Scalars['Float'] | null) - aim_rating: (Scalars['Float'] | null) - band: (Scalars['Float'] | null) - band_sample: (Scalars['Float'] | null) - blind_score: (Scalars['Float'] | null) - counter_strafe_score: (Scalars['Float'] | null) - crosshair_score: (Scalars['Float'] | null) - flash_assists_score: (Scalars['Float'] | null) - hs_score: (Scalars['Float'] | null) - kast_score: (Scalars['Float'] | null) - maps: (Scalars['Float'] | null) - positioning_goal: (Scalars['Float'] | null) - positioning_rating: (Scalars['Float'] | null) - premier_rank: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - spotted_score: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - survival_score: (Scalars['Float'] | null) - traded_score: (Scalars['Float'] | null) - ttd_score: (Scalars['Float'] | null) - util_eff_score: (Scalars['Float'] | null) - utility_goal: (Scalars['Float'] | null) - utility_rating: (Scalars['Float'] | null) - __typename: 'player_performance_v_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface player_performance_v_stddev_samp_fields { - accuracy_score: (Scalars['Float'] | null) - aim_goal: (Scalars['Float'] | null) - aim_rating: (Scalars['Float'] | null) - band: (Scalars['Float'] | null) - band_sample: (Scalars['Float'] | null) - blind_score: (Scalars['Float'] | null) - counter_strafe_score: (Scalars['Float'] | null) - crosshair_score: (Scalars['Float'] | null) - flash_assists_score: (Scalars['Float'] | null) - hs_score: (Scalars['Float'] | null) - kast_score: (Scalars['Float'] | null) - maps: (Scalars['Float'] | null) - positioning_goal: (Scalars['Float'] | null) - positioning_rating: (Scalars['Float'] | null) - premier_rank: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - spotted_score: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - survival_score: (Scalars['Float'] | null) - traded_score: (Scalars['Float'] | null) - ttd_score: (Scalars['Float'] | null) - util_eff_score: (Scalars['Float'] | null) - utility_goal: (Scalars['Float'] | null) - utility_rating: (Scalars['Float'] | null) - __typename: 'player_performance_v_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface player_performance_v_sum_fields { - accuracy_score: (Scalars['float8'] | null) - aim_goal: (Scalars['float8'] | null) - aim_rating: (Scalars['float8'] | null) - band: (Scalars['Int'] | null) - band_sample: (Scalars['bigint'] | null) - blind_score: (Scalars['float8'] | null) - counter_strafe_score: (Scalars['float8'] | null) - crosshair_score: (Scalars['float8'] | null) - flash_assists_score: (Scalars['float8'] | null) - hs_score: (Scalars['float8'] | null) - kast_score: (Scalars['float8'] | null) - maps: (Scalars['Int'] | null) - positioning_goal: (Scalars['float8'] | null) - positioning_rating: (Scalars['float8'] | null) - premier_rank: (Scalars['Int'] | null) - rounds: (Scalars['Int'] | null) - spotted_score: (Scalars['float8'] | null) - steam_id: (Scalars['bigint'] | null) - survival_score: (Scalars['float8'] | null) - traded_score: (Scalars['float8'] | null) - ttd_score: (Scalars['float8'] | null) - util_eff_score: (Scalars['float8'] | null) - utility_goal: (Scalars['float8'] | null) - utility_rating: (Scalars['float8'] | null) - __typename: 'player_performance_v_sum_fields' -} - - -/** aggregate var_pop on columns */ -export interface player_performance_v_var_pop_fields { - accuracy_score: (Scalars['Float'] | null) - aim_goal: (Scalars['Float'] | null) - aim_rating: (Scalars['Float'] | null) - band: (Scalars['Float'] | null) - band_sample: (Scalars['Float'] | null) - blind_score: (Scalars['Float'] | null) - counter_strafe_score: (Scalars['Float'] | null) - crosshair_score: (Scalars['Float'] | null) - flash_assists_score: (Scalars['Float'] | null) - hs_score: (Scalars['Float'] | null) - kast_score: (Scalars['Float'] | null) - maps: (Scalars['Float'] | null) - positioning_goal: (Scalars['Float'] | null) - positioning_rating: (Scalars['Float'] | null) - premier_rank: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - spotted_score: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - survival_score: (Scalars['Float'] | null) - traded_score: (Scalars['Float'] | null) - ttd_score: (Scalars['Float'] | null) - util_eff_score: (Scalars['Float'] | null) - utility_goal: (Scalars['Float'] | null) - utility_rating: (Scalars['Float'] | null) - __typename: 'player_performance_v_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface player_performance_v_var_samp_fields { - accuracy_score: (Scalars['Float'] | null) - aim_goal: (Scalars['Float'] | null) - aim_rating: (Scalars['Float'] | null) - band: (Scalars['Float'] | null) - band_sample: (Scalars['Float'] | null) - blind_score: (Scalars['Float'] | null) - counter_strafe_score: (Scalars['Float'] | null) - crosshair_score: (Scalars['Float'] | null) - flash_assists_score: (Scalars['Float'] | null) - hs_score: (Scalars['Float'] | null) - kast_score: (Scalars['Float'] | null) - maps: (Scalars['Float'] | null) - positioning_goal: (Scalars['Float'] | null) - positioning_rating: (Scalars['Float'] | null) - premier_rank: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - spotted_score: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - survival_score: (Scalars['Float'] | null) - traded_score: (Scalars['Float'] | null) - ttd_score: (Scalars['Float'] | null) - util_eff_score: (Scalars['Float'] | null) - utility_goal: (Scalars['Float'] | null) - utility_rating: (Scalars['Float'] | null) - __typename: 'player_performance_v_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface player_performance_v_variance_fields { - accuracy_score: (Scalars['Float'] | null) - aim_goal: (Scalars['Float'] | null) - aim_rating: (Scalars['Float'] | null) - band: (Scalars['Float'] | null) - band_sample: (Scalars['Float'] | null) - blind_score: (Scalars['Float'] | null) - counter_strafe_score: (Scalars['Float'] | null) - crosshair_score: (Scalars['Float'] | null) - flash_assists_score: (Scalars['Float'] | null) - hs_score: (Scalars['Float'] | null) - kast_score: (Scalars['Float'] | null) - maps: (Scalars['Float'] | null) - positioning_goal: (Scalars['Float'] | null) - positioning_rating: (Scalars['Float'] | null) - premier_rank: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - spotted_score: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - survival_score: (Scalars['Float'] | null) - traded_score: (Scalars['Float'] | null) - ttd_score: (Scalars['Float'] | null) - util_eff_score: (Scalars['Float'] | null) - utility_goal: (Scalars['Float'] | null) - utility_rating: (Scalars['Float'] | null) - __typename: 'player_performance_v_variance_fields' -} - - -/** columns and relationships of "player_premier_rank_history" */ -export interface player_premier_rank_history { - id: Scalars['uuid'] - /** An object relationship */ - map: (maps | null) - map_id: (Scalars['uuid'] | null) - /** An object relationship */ - match: matches - match_id: Scalars['uuid'] - observed_at: Scalars['timestamptz'] - /** An object relationship */ - player: players - previous_rank: (Scalars['Int'] | null) - rank: Scalars['Int'] - rank_type: Scalars['Int'] - steam_id: Scalars['bigint'] - __typename: 'player_premier_rank_history' -} - - -/** aggregated selection of "player_premier_rank_history" */ -export interface player_premier_rank_history_aggregate { - aggregate: (player_premier_rank_history_aggregate_fields | null) - nodes: player_premier_rank_history[] - __typename: 'player_premier_rank_history_aggregate' -} - - -/** aggregate fields of "player_premier_rank_history" */ -export interface player_premier_rank_history_aggregate_fields { - avg: (player_premier_rank_history_avg_fields | null) - count: Scalars['Int'] - max: (player_premier_rank_history_max_fields | null) - min: (player_premier_rank_history_min_fields | null) - stddev: (player_premier_rank_history_stddev_fields | null) - stddev_pop: (player_premier_rank_history_stddev_pop_fields | null) - stddev_samp: (player_premier_rank_history_stddev_samp_fields | null) - sum: (player_premier_rank_history_sum_fields | null) - var_pop: (player_premier_rank_history_var_pop_fields | null) - var_samp: (player_premier_rank_history_var_samp_fields | null) - variance: (player_premier_rank_history_variance_fields | null) - __typename: 'player_premier_rank_history_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface player_premier_rank_history_avg_fields { - previous_rank: (Scalars['Float'] | null) - rank: (Scalars['Float'] | null) - rank_type: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'player_premier_rank_history_avg_fields' -} - - -/** unique or primary key constraints on table "player_premier_rank_history" */ -export type player_premier_rank_history_constraint = 'player_premier_rank_history_pkey' | 'uq_player_premier_rank_history_steam_match_type' - - -/** aggregate max on columns */ -export interface player_premier_rank_history_max_fields { - id: (Scalars['uuid'] | null) - map_id: (Scalars['uuid'] | null) - match_id: (Scalars['uuid'] | null) - observed_at: (Scalars['timestamptz'] | null) - previous_rank: (Scalars['Int'] | null) - rank: (Scalars['Int'] | null) - rank_type: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'player_premier_rank_history_max_fields' -} - - -/** aggregate min on columns */ -export interface player_premier_rank_history_min_fields { - id: (Scalars['uuid'] | null) - map_id: (Scalars['uuid'] | null) - match_id: (Scalars['uuid'] | null) - observed_at: (Scalars['timestamptz'] | null) - previous_rank: (Scalars['Int'] | null) - rank: (Scalars['Int'] | null) - rank_type: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'player_premier_rank_history_min_fields' -} - - -/** response of any mutation on the table "player_premier_rank_history" */ -export interface player_premier_rank_history_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: player_premier_rank_history[] - __typename: 'player_premier_rank_history_mutation_response' -} - - -/** select columns of table "player_premier_rank_history" */ -export type player_premier_rank_history_select_column = 'id' | 'map_id' | 'match_id' | 'observed_at' | 'previous_rank' | 'rank' | 'rank_type' | 'steam_id' - - -/** aggregate stddev on columns */ -export interface player_premier_rank_history_stddev_fields { - previous_rank: (Scalars['Float'] | null) - rank: (Scalars['Float'] | null) - rank_type: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'player_premier_rank_history_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface player_premier_rank_history_stddev_pop_fields { - previous_rank: (Scalars['Float'] | null) - rank: (Scalars['Float'] | null) - rank_type: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'player_premier_rank_history_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface player_premier_rank_history_stddev_samp_fields { - previous_rank: (Scalars['Float'] | null) - rank: (Scalars['Float'] | null) - rank_type: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'player_premier_rank_history_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface player_premier_rank_history_sum_fields { - previous_rank: (Scalars['Int'] | null) - rank: (Scalars['Int'] | null) - rank_type: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'player_premier_rank_history_sum_fields' -} - - -/** update columns of table "player_premier_rank_history" */ -export type player_premier_rank_history_update_column = 'id' | 'map_id' | 'match_id' | 'observed_at' | 'previous_rank' | 'rank' | 'rank_type' | 'steam_id' - - -/** aggregate var_pop on columns */ -export interface player_premier_rank_history_var_pop_fields { - previous_rank: (Scalars['Float'] | null) - rank: (Scalars['Float'] | null) - rank_type: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'player_premier_rank_history_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface player_premier_rank_history_var_samp_fields { - previous_rank: (Scalars['Float'] | null) - rank: (Scalars['Float'] | null) - rank_type: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'player_premier_rank_history_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface player_premier_rank_history_variance_fields { - previous_rank: (Scalars['Float'] | null) - rank: (Scalars['Float'] | null) - rank_type: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'player_premier_rank_history_variance_fields' -} - - -/** columns and relationships of "player_sanctions" */ -export interface player_sanctions { - created_at: Scalars['timestamptz'] - deleted_at: (Scalars['timestamptz'] | null) - /** An object relationship */ - e_sanction_type: e_sanction_types - id: Scalars['uuid'] - /** An object relationship */ - player: players - player_steam_id: Scalars['bigint'] - reason: (Scalars['String'] | null) - remove_sanction_date: (Scalars['timestamptz'] | null) - /** An object relationship */ - sanctioned_by: (players | null) - sanctioned_by_steam_id: (Scalars['bigint'] | null) - type: e_sanction_types_enum - __typename: 'player_sanctions' -} - - -/** aggregated selection of "player_sanctions" */ -export interface player_sanctions_aggregate { - aggregate: (player_sanctions_aggregate_fields | null) - nodes: player_sanctions[] - __typename: 'player_sanctions_aggregate' -} - - -/** aggregate fields of "player_sanctions" */ -export interface player_sanctions_aggregate_fields { - avg: (player_sanctions_avg_fields | null) - count: Scalars['Int'] - max: (player_sanctions_max_fields | null) - min: (player_sanctions_min_fields | null) - stddev: (player_sanctions_stddev_fields | null) - stddev_pop: (player_sanctions_stddev_pop_fields | null) - stddev_samp: (player_sanctions_stddev_samp_fields | null) - sum: (player_sanctions_sum_fields | null) - var_pop: (player_sanctions_var_pop_fields | null) - var_samp: (player_sanctions_var_samp_fields | null) - variance: (player_sanctions_variance_fields | null) - __typename: 'player_sanctions_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface player_sanctions_avg_fields { - player_steam_id: (Scalars['Float'] | null) - sanctioned_by_steam_id: (Scalars['Float'] | null) - __typename: 'player_sanctions_avg_fields' -} - - -/** unique or primary key constraints on table "player_sanctions" */ -export type player_sanctions_constraint = 'player_sanctions_pkey' - - -/** aggregate max on columns */ -export interface player_sanctions_max_fields { - created_at: (Scalars['timestamptz'] | null) - deleted_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - player_steam_id: (Scalars['bigint'] | null) - reason: (Scalars['String'] | null) - remove_sanction_date: (Scalars['timestamptz'] | null) - sanctioned_by_steam_id: (Scalars['bigint'] | null) - __typename: 'player_sanctions_max_fields' -} - - -/** aggregate min on columns */ -export interface player_sanctions_min_fields { - created_at: (Scalars['timestamptz'] | null) - deleted_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - player_steam_id: (Scalars['bigint'] | null) - reason: (Scalars['String'] | null) - remove_sanction_date: (Scalars['timestamptz'] | null) - sanctioned_by_steam_id: (Scalars['bigint'] | null) - __typename: 'player_sanctions_min_fields' -} - - -/** response of any mutation on the table "player_sanctions" */ -export interface player_sanctions_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: player_sanctions[] - __typename: 'player_sanctions_mutation_response' -} - - -/** select columns of table "player_sanctions" */ -export type player_sanctions_select_column = 'created_at' | 'deleted_at' | 'id' | 'player_steam_id' | 'reason' | 'remove_sanction_date' | 'sanctioned_by_steam_id' | 'type' - - -/** aggregate stddev on columns */ -export interface player_sanctions_stddev_fields { - player_steam_id: (Scalars['Float'] | null) - sanctioned_by_steam_id: (Scalars['Float'] | null) - __typename: 'player_sanctions_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface player_sanctions_stddev_pop_fields { - player_steam_id: (Scalars['Float'] | null) - sanctioned_by_steam_id: (Scalars['Float'] | null) - __typename: 'player_sanctions_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface player_sanctions_stddev_samp_fields { - player_steam_id: (Scalars['Float'] | null) - sanctioned_by_steam_id: (Scalars['Float'] | null) - __typename: 'player_sanctions_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface player_sanctions_sum_fields { - player_steam_id: (Scalars['bigint'] | null) - sanctioned_by_steam_id: (Scalars['bigint'] | null) - __typename: 'player_sanctions_sum_fields' -} - - -/** update columns of table "player_sanctions" */ -export type player_sanctions_update_column = 'created_at' | 'deleted_at' | 'id' | 'player_steam_id' | 'reason' | 'remove_sanction_date' | 'sanctioned_by_steam_id' | 'type' - - -/** aggregate var_pop on columns */ -export interface player_sanctions_var_pop_fields { - player_steam_id: (Scalars['Float'] | null) - sanctioned_by_steam_id: (Scalars['Float'] | null) - __typename: 'player_sanctions_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface player_sanctions_var_samp_fields { - player_steam_id: (Scalars['Float'] | null) - sanctioned_by_steam_id: (Scalars['Float'] | null) - __typename: 'player_sanctions_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface player_sanctions_variance_fields { - player_steam_id: (Scalars['Float'] | null) - sanctioned_by_steam_id: (Scalars['Float'] | null) - __typename: 'player_sanctions_variance_fields' -} - - -/** columns and relationships of "player_season_stats" */ -export interface player_season_stats { - assists: Scalars['bigint'] - deaths: Scalars['bigint'] - headshot_percentage: Scalars['float8'] - headshots: Scalars['bigint'] - kills: Scalars['bigint'] - /** An object relationship */ - player: players - player_steam_id: Scalars['bigint'] - /** An object relationship */ - season: seasons - season_id: Scalars['uuid'] - __typename: 'player_season_stats' -} - - -/** aggregated selection of "player_season_stats" */ -export interface player_season_stats_aggregate { - aggregate: (player_season_stats_aggregate_fields | null) - nodes: player_season_stats[] - __typename: 'player_season_stats_aggregate' -} - - -/** aggregate fields of "player_season_stats" */ -export interface player_season_stats_aggregate_fields { - avg: (player_season_stats_avg_fields | null) - count: Scalars['Int'] - max: (player_season_stats_max_fields | null) - min: (player_season_stats_min_fields | null) - stddev: (player_season_stats_stddev_fields | null) - stddev_pop: (player_season_stats_stddev_pop_fields | null) - stddev_samp: (player_season_stats_stddev_samp_fields | null) - sum: (player_season_stats_sum_fields | null) - var_pop: (player_season_stats_var_pop_fields | null) - var_samp: (player_season_stats_var_samp_fields | null) - variance: (player_season_stats_variance_fields | null) - __typename: 'player_season_stats_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface player_season_stats_avg_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - headshots: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'player_season_stats_avg_fields' -} - - -/** unique or primary key constraints on table "player_season_stats" */ -export type player_season_stats_constraint = 'player_season_stats_pkey' - - -/** aggregate max on columns */ -export interface player_season_stats_max_fields { - assists: (Scalars['bigint'] | null) - deaths: (Scalars['bigint'] | null) - headshot_percentage: (Scalars['float8'] | null) - headshots: (Scalars['bigint'] | null) - kills: (Scalars['bigint'] | null) - player_steam_id: (Scalars['bigint'] | null) - season_id: (Scalars['uuid'] | null) - __typename: 'player_season_stats_max_fields' -} - - -/** aggregate min on columns */ -export interface player_season_stats_min_fields { - assists: (Scalars['bigint'] | null) - deaths: (Scalars['bigint'] | null) - headshot_percentage: (Scalars['float8'] | null) - headshots: (Scalars['bigint'] | null) - kills: (Scalars['bigint'] | null) - player_steam_id: (Scalars['bigint'] | null) - season_id: (Scalars['uuid'] | null) - __typename: 'player_season_stats_min_fields' -} - - -/** response of any mutation on the table "player_season_stats" */ -export interface player_season_stats_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: player_season_stats[] - __typename: 'player_season_stats_mutation_response' -} - - -/** select columns of table "player_season_stats" */ -export type player_season_stats_select_column = 'assists' | 'deaths' | 'headshot_percentage' | 'headshots' | 'kills' | 'player_steam_id' | 'season_id' - - -/** select "player_season_stats_aggregate_bool_exp_avg_arguments_columns" columns of table "player_season_stats" */ -export type player_season_stats_select_column_player_season_stats_aggregate_bool_exp_avg_arguments_columns = 'headshot_percentage' - - -/** select "player_season_stats_aggregate_bool_exp_corr_arguments_columns" columns of table "player_season_stats" */ -export type player_season_stats_select_column_player_season_stats_aggregate_bool_exp_corr_arguments_columns = 'headshot_percentage' - - -/** select "player_season_stats_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "player_season_stats" */ -export type player_season_stats_select_column_player_season_stats_aggregate_bool_exp_covar_samp_arguments_columns = 'headshot_percentage' - - -/** select "player_season_stats_aggregate_bool_exp_max_arguments_columns" columns of table "player_season_stats" */ -export type player_season_stats_select_column_player_season_stats_aggregate_bool_exp_max_arguments_columns = 'headshot_percentage' - - -/** select "player_season_stats_aggregate_bool_exp_min_arguments_columns" columns of table "player_season_stats" */ -export type player_season_stats_select_column_player_season_stats_aggregate_bool_exp_min_arguments_columns = 'headshot_percentage' - - -/** select "player_season_stats_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "player_season_stats" */ -export type player_season_stats_select_column_player_season_stats_aggregate_bool_exp_stddev_samp_arguments_columns = 'headshot_percentage' - - -/** select "player_season_stats_aggregate_bool_exp_sum_arguments_columns" columns of table "player_season_stats" */ -export type player_season_stats_select_column_player_season_stats_aggregate_bool_exp_sum_arguments_columns = 'headshot_percentage' - - -/** select "player_season_stats_aggregate_bool_exp_var_samp_arguments_columns" columns of table "player_season_stats" */ -export type player_season_stats_select_column_player_season_stats_aggregate_bool_exp_var_samp_arguments_columns = 'headshot_percentage' - - -/** aggregate stddev on columns */ -export interface player_season_stats_stddev_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - headshots: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'player_season_stats_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface player_season_stats_stddev_pop_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - headshots: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'player_season_stats_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface player_season_stats_stddev_samp_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - headshots: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'player_season_stats_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface player_season_stats_sum_fields { - assists: (Scalars['bigint'] | null) - deaths: (Scalars['bigint'] | null) - headshot_percentage: (Scalars['float8'] | null) - headshots: (Scalars['bigint'] | null) - kills: (Scalars['bigint'] | null) - player_steam_id: (Scalars['bigint'] | null) - __typename: 'player_season_stats_sum_fields' -} - - -/** update columns of table "player_season_stats" */ -export type player_season_stats_update_column = 'assists' | 'deaths' | 'headshot_percentage' | 'headshots' | 'kills' | 'player_steam_id' | 'season_id' - - -/** aggregate var_pop on columns */ -export interface player_season_stats_var_pop_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - headshots: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'player_season_stats_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface player_season_stats_var_samp_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - headshots: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'player_season_stats_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface player_season_stats_variance_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - headshots: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'player_season_stats_variance_fields' -} - - -/** columns and relationships of "player_stats" */ -export interface player_stats { - assists: Scalars['bigint'] - deaths: Scalars['bigint'] - headshot_percentage: Scalars['float8'] - headshots: Scalars['bigint'] - kills: Scalars['bigint'] - /** An object relationship */ - player: players - player_steam_id: Scalars['bigint'] - __typename: 'player_stats' -} - - -/** aggregated selection of "player_stats" */ -export interface player_stats_aggregate { - aggregate: (player_stats_aggregate_fields | null) - nodes: player_stats[] - __typename: 'player_stats_aggregate' -} - - -/** aggregate fields of "player_stats" */ -export interface player_stats_aggregate_fields { - avg: (player_stats_avg_fields | null) - count: Scalars['Int'] - max: (player_stats_max_fields | null) - min: (player_stats_min_fields | null) - stddev: (player_stats_stddev_fields | null) - stddev_pop: (player_stats_stddev_pop_fields | null) - stddev_samp: (player_stats_stddev_samp_fields | null) - sum: (player_stats_sum_fields | null) - var_pop: (player_stats_var_pop_fields | null) - var_samp: (player_stats_var_samp_fields | null) - variance: (player_stats_variance_fields | null) - __typename: 'player_stats_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface player_stats_avg_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - headshots: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'player_stats_avg_fields' -} - - -/** unique or primary key constraints on table "player_stats" */ -export type player_stats_constraint = 'player_stats_pkey' - - -/** aggregate max on columns */ -export interface player_stats_max_fields { - assists: (Scalars['bigint'] | null) - deaths: (Scalars['bigint'] | null) - headshot_percentage: (Scalars['float8'] | null) - headshots: (Scalars['bigint'] | null) - kills: (Scalars['bigint'] | null) - player_steam_id: (Scalars['bigint'] | null) - __typename: 'player_stats_max_fields' -} - - -/** aggregate min on columns */ -export interface player_stats_min_fields { - assists: (Scalars['bigint'] | null) - deaths: (Scalars['bigint'] | null) - headshot_percentage: (Scalars['float8'] | null) - headshots: (Scalars['bigint'] | null) - kills: (Scalars['bigint'] | null) - player_steam_id: (Scalars['bigint'] | null) - __typename: 'player_stats_min_fields' -} - - -/** response of any mutation on the table "player_stats" */ -export interface player_stats_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: player_stats[] - __typename: 'player_stats_mutation_response' -} - - -/** select columns of table "player_stats" */ -export type player_stats_select_column = 'assists' | 'deaths' | 'headshot_percentage' | 'headshots' | 'kills' | 'player_steam_id' - - -/** aggregate stddev on columns */ -export interface player_stats_stddev_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - headshots: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'player_stats_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface player_stats_stddev_pop_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - headshots: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'player_stats_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface player_stats_stddev_samp_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - headshots: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'player_stats_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface player_stats_sum_fields { - assists: (Scalars['bigint'] | null) - deaths: (Scalars['bigint'] | null) - headshot_percentage: (Scalars['float8'] | null) - headshots: (Scalars['bigint'] | null) - kills: (Scalars['bigint'] | null) - player_steam_id: (Scalars['bigint'] | null) - __typename: 'player_stats_sum_fields' -} - - -/** update columns of table "player_stats" */ -export type player_stats_update_column = 'assists' | 'deaths' | 'headshot_percentage' | 'headshots' | 'kills' | 'player_steam_id' - - -/** aggregate var_pop on columns */ -export interface player_stats_var_pop_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - headshots: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'player_stats_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface player_stats_var_samp_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - headshots: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'player_stats_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface player_stats_variance_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - headshots: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'player_stats_variance_fields' -} - - -/** columns and relationships of "player_steam_bot_friend" */ -export interface player_steam_bot_friend { - bot_steam_account_id: (Scalars['uuid'] | null) - bot_steamid64: (Scalars['bigint'] | null) - created_at: Scalars['timestamptz'] - friended_at: (Scalars['timestamptz'] | null) - last_presence_state: (Scalars['jsonb'] | null) - /** An object relationship */ - player: players - status: Scalars['String'] - steam_id: Scalars['bigint'] - updated_at: Scalars['timestamptz'] - __typename: 'player_steam_bot_friend' -} - - -/** aggregated selection of "player_steam_bot_friend" */ -export interface player_steam_bot_friend_aggregate { - aggregate: (player_steam_bot_friend_aggregate_fields | null) - nodes: player_steam_bot_friend[] - __typename: 'player_steam_bot_friend_aggregate' -} - - -/** aggregate fields of "player_steam_bot_friend" */ -export interface player_steam_bot_friend_aggregate_fields { - avg: (player_steam_bot_friend_avg_fields | null) - count: Scalars['Int'] - max: (player_steam_bot_friend_max_fields | null) - min: (player_steam_bot_friend_min_fields | null) - stddev: (player_steam_bot_friend_stddev_fields | null) - stddev_pop: (player_steam_bot_friend_stddev_pop_fields | null) - stddev_samp: (player_steam_bot_friend_stddev_samp_fields | null) - sum: (player_steam_bot_friend_sum_fields | null) - var_pop: (player_steam_bot_friend_var_pop_fields | null) - var_samp: (player_steam_bot_friend_var_samp_fields | null) - variance: (player_steam_bot_friend_variance_fields | null) - __typename: 'player_steam_bot_friend_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface player_steam_bot_friend_avg_fields { - bot_steamid64: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'player_steam_bot_friend_avg_fields' -} - - -/** unique or primary key constraints on table "player_steam_bot_friend" */ -export type player_steam_bot_friend_constraint = 'player_steam_bot_friend_pkey' - - -/** aggregate max on columns */ -export interface player_steam_bot_friend_max_fields { - bot_steam_account_id: (Scalars['uuid'] | null) - bot_steamid64: (Scalars['bigint'] | null) - created_at: (Scalars['timestamptz'] | null) - friended_at: (Scalars['timestamptz'] | null) - status: (Scalars['String'] | null) - steam_id: (Scalars['bigint'] | null) - updated_at: (Scalars['timestamptz'] | null) - __typename: 'player_steam_bot_friend_max_fields' -} - - -/** aggregate min on columns */ -export interface player_steam_bot_friend_min_fields { - bot_steam_account_id: (Scalars['uuid'] | null) - bot_steamid64: (Scalars['bigint'] | null) - created_at: (Scalars['timestamptz'] | null) - friended_at: (Scalars['timestamptz'] | null) - status: (Scalars['String'] | null) - steam_id: (Scalars['bigint'] | null) - updated_at: (Scalars['timestamptz'] | null) - __typename: 'player_steam_bot_friend_min_fields' -} - - -/** response of any mutation on the table "player_steam_bot_friend" */ -export interface player_steam_bot_friend_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: player_steam_bot_friend[] - __typename: 'player_steam_bot_friend_mutation_response' -} - - -/** select columns of table "player_steam_bot_friend" */ -export type player_steam_bot_friend_select_column = 'bot_steam_account_id' | 'bot_steamid64' | 'created_at' | 'friended_at' | 'last_presence_state' | 'status' | 'steam_id' | 'updated_at' - - -/** aggregate stddev on columns */ -export interface player_steam_bot_friend_stddev_fields { - bot_steamid64: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'player_steam_bot_friend_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface player_steam_bot_friend_stddev_pop_fields { - bot_steamid64: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'player_steam_bot_friend_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface player_steam_bot_friend_stddev_samp_fields { - bot_steamid64: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'player_steam_bot_friend_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface player_steam_bot_friend_sum_fields { - bot_steamid64: (Scalars['bigint'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'player_steam_bot_friend_sum_fields' -} - - -/** update columns of table "player_steam_bot_friend" */ -export type player_steam_bot_friend_update_column = 'bot_steam_account_id' | 'bot_steamid64' | 'created_at' | 'friended_at' | 'last_presence_state' | 'status' | 'steam_id' | 'updated_at' - - -/** aggregate var_pop on columns */ -export interface player_steam_bot_friend_var_pop_fields { - bot_steamid64: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'player_steam_bot_friend_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface player_steam_bot_friend_var_samp_fields { - bot_steamid64: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'player_steam_bot_friend_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface player_steam_bot_friend_variance_fields { - bot_steamid64: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'player_steam_bot_friend_variance_fields' -} - - -/** columns and relationships of "player_steam_match_auth" */ -export interface player_steam_match_auth { - auth_code: Scalars['String'] - created_at: Scalars['timestamptz'] - last_error: (Scalars['String'] | null) - last_known_share_code: Scalars['String'] - last_polled_at: (Scalars['timestamptz'] | null) - /** An object relationship */ - player: players - steam_id: Scalars['bigint'] - updated_at: Scalars['timestamptz'] - __typename: 'player_steam_match_auth' -} - - -/** aggregated selection of "player_steam_match_auth" */ -export interface player_steam_match_auth_aggregate { - aggregate: (player_steam_match_auth_aggregate_fields | null) - nodes: player_steam_match_auth[] - __typename: 'player_steam_match_auth_aggregate' -} - - -/** aggregate fields of "player_steam_match_auth" */ -export interface player_steam_match_auth_aggregate_fields { - avg: (player_steam_match_auth_avg_fields | null) - count: Scalars['Int'] - max: (player_steam_match_auth_max_fields | null) - min: (player_steam_match_auth_min_fields | null) - stddev: (player_steam_match_auth_stddev_fields | null) - stddev_pop: (player_steam_match_auth_stddev_pop_fields | null) - stddev_samp: (player_steam_match_auth_stddev_samp_fields | null) - sum: (player_steam_match_auth_sum_fields | null) - var_pop: (player_steam_match_auth_var_pop_fields | null) - var_samp: (player_steam_match_auth_var_samp_fields | null) - variance: (player_steam_match_auth_variance_fields | null) - __typename: 'player_steam_match_auth_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface player_steam_match_auth_avg_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'player_steam_match_auth_avg_fields' -} - - -/** unique or primary key constraints on table "player_steam_match_auth" */ -export type player_steam_match_auth_constraint = 'player_steam_match_auth_pkey' - - -/** aggregate max on columns */ -export interface player_steam_match_auth_max_fields { - auth_code: (Scalars['String'] | null) - created_at: (Scalars['timestamptz'] | null) - last_error: (Scalars['String'] | null) - last_known_share_code: (Scalars['String'] | null) - last_polled_at: (Scalars['timestamptz'] | null) - steam_id: (Scalars['bigint'] | null) - updated_at: (Scalars['timestamptz'] | null) - __typename: 'player_steam_match_auth_max_fields' -} - - -/** aggregate min on columns */ -export interface player_steam_match_auth_min_fields { - auth_code: (Scalars['String'] | null) - created_at: (Scalars['timestamptz'] | null) - last_error: (Scalars['String'] | null) - last_known_share_code: (Scalars['String'] | null) - last_polled_at: (Scalars['timestamptz'] | null) - steam_id: (Scalars['bigint'] | null) - updated_at: (Scalars['timestamptz'] | null) - __typename: 'player_steam_match_auth_min_fields' -} - - -/** response of any mutation on the table "player_steam_match_auth" */ -export interface player_steam_match_auth_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: player_steam_match_auth[] - __typename: 'player_steam_match_auth_mutation_response' -} - - -/** select columns of table "player_steam_match_auth" */ -export type player_steam_match_auth_select_column = 'auth_code' | 'created_at' | 'last_error' | 'last_known_share_code' | 'last_polled_at' | 'steam_id' | 'updated_at' - - -/** aggregate stddev on columns */ -export interface player_steam_match_auth_stddev_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'player_steam_match_auth_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface player_steam_match_auth_stddev_pop_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'player_steam_match_auth_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface player_steam_match_auth_stddev_samp_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'player_steam_match_auth_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface player_steam_match_auth_sum_fields { - steam_id: (Scalars['bigint'] | null) - __typename: 'player_steam_match_auth_sum_fields' -} - - -/** update columns of table "player_steam_match_auth" */ -export type player_steam_match_auth_update_column = 'auth_code' | 'created_at' | 'last_error' | 'last_known_share_code' | 'last_polled_at' | 'steam_id' | 'updated_at' - - -/** aggregate var_pop on columns */ -export interface player_steam_match_auth_var_pop_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'player_steam_match_auth_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface player_steam_match_auth_var_samp_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'player_steam_match_auth_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface player_steam_match_auth_variance_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'player_steam_match_auth_variance_fields' -} - - -/** columns and relationships of "player_unused_utility" */ -export interface player_unused_utility { - deleted_at: (Scalars['timestamptz'] | null) - /** An object relationship */ - match: matches - match_id: Scalars['uuid'] - /** An object relationship */ - match_map: match_maps - match_map_id: Scalars['uuid'] - /** An object relationship */ - player: players - player_steam_id: Scalars['bigint'] - round: Scalars['Int'] - unused: Scalars['Int'] - __typename: 'player_unused_utility' -} - - -/** aggregated selection of "player_unused_utility" */ -export interface player_unused_utility_aggregate { - aggregate: (player_unused_utility_aggregate_fields | null) - nodes: player_unused_utility[] - __typename: 'player_unused_utility_aggregate' -} - - -/** aggregate fields of "player_unused_utility" */ -export interface player_unused_utility_aggregate_fields { - avg: (player_unused_utility_avg_fields | null) - count: Scalars['Int'] - max: (player_unused_utility_max_fields | null) - min: (player_unused_utility_min_fields | null) - stddev: (player_unused_utility_stddev_fields | null) - stddev_pop: (player_unused_utility_stddev_pop_fields | null) - stddev_samp: (player_unused_utility_stddev_samp_fields | null) - sum: (player_unused_utility_sum_fields | null) - var_pop: (player_unused_utility_var_pop_fields | null) - var_samp: (player_unused_utility_var_samp_fields | null) - variance: (player_unused_utility_variance_fields | null) - __typename: 'player_unused_utility_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface player_unused_utility_avg_fields { - player_steam_id: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - unused: (Scalars['Float'] | null) - __typename: 'player_unused_utility_avg_fields' -} - - -/** unique or primary key constraints on table "player_unused_utility" */ -export type player_unused_utility_constraint = 'player_unused_utility_pkey' - - -/** aggregate max on columns */ -export interface player_unused_utility_max_fields { - deleted_at: (Scalars['timestamptz'] | null) - match_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - player_steam_id: (Scalars['bigint'] | null) - round: (Scalars['Int'] | null) - unused: (Scalars['Int'] | null) - __typename: 'player_unused_utility_max_fields' -} - - -/** aggregate min on columns */ -export interface player_unused_utility_min_fields { - deleted_at: (Scalars['timestamptz'] | null) - match_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - player_steam_id: (Scalars['bigint'] | null) - round: (Scalars['Int'] | null) - unused: (Scalars['Int'] | null) - __typename: 'player_unused_utility_min_fields' -} - - -/** response of any mutation on the table "player_unused_utility" */ -export interface player_unused_utility_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: player_unused_utility[] - __typename: 'player_unused_utility_mutation_response' -} - - -/** select columns of table "player_unused_utility" */ -export type player_unused_utility_select_column = 'deleted_at' | 'match_id' | 'match_map_id' | 'player_steam_id' | 'round' | 'unused' - - -/** aggregate stddev on columns */ -export interface player_unused_utility_stddev_fields { - player_steam_id: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - unused: (Scalars['Float'] | null) - __typename: 'player_unused_utility_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface player_unused_utility_stddev_pop_fields { - player_steam_id: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - unused: (Scalars['Float'] | null) - __typename: 'player_unused_utility_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface player_unused_utility_stddev_samp_fields { - player_steam_id: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - unused: (Scalars['Float'] | null) - __typename: 'player_unused_utility_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface player_unused_utility_sum_fields { - player_steam_id: (Scalars['bigint'] | null) - round: (Scalars['Int'] | null) - unused: (Scalars['Int'] | null) - __typename: 'player_unused_utility_sum_fields' -} - - -/** update columns of table "player_unused_utility" */ -export type player_unused_utility_update_column = 'deleted_at' | 'match_id' | 'match_map_id' | 'player_steam_id' | 'round' | 'unused' - - -/** aggregate var_pop on columns */ -export interface player_unused_utility_var_pop_fields { - player_steam_id: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - unused: (Scalars['Float'] | null) - __typename: 'player_unused_utility_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface player_unused_utility_var_samp_fields { - player_steam_id: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - unused: (Scalars['Float'] | null) - __typename: 'player_unused_utility_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface player_unused_utility_variance_fields { - player_steam_id: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - unused: (Scalars['Float'] | null) - __typename: 'player_unused_utility_variance_fields' -} - - -/** columns and relationships of "player_utility" */ -export interface player_utility { - attacker_location_coordinates: (Scalars['String'] | null) - attacker_steam_id: Scalars['bigint'] - deleted_at: (Scalars['timestamptz'] | null) - /** An object relationship */ - match: matches - match_id: Scalars['uuid'] - /** An object relationship */ - match_map: match_maps - match_map_id: Scalars['uuid'] - /** An object relationship */ - player: players - round: Scalars['Int'] - time: Scalars['timestamptz'] - type: e_utility_types_enum - __typename: 'player_utility' -} - - -/** aggregated selection of "player_utility" */ -export interface player_utility_aggregate { - aggregate: (player_utility_aggregate_fields | null) - nodes: player_utility[] - __typename: 'player_utility_aggregate' -} - - -/** aggregate fields of "player_utility" */ -export interface player_utility_aggregate_fields { - avg: (player_utility_avg_fields | null) - count: Scalars['Int'] - max: (player_utility_max_fields | null) - min: (player_utility_min_fields | null) - stddev: (player_utility_stddev_fields | null) - stddev_pop: (player_utility_stddev_pop_fields | null) - stddev_samp: (player_utility_stddev_samp_fields | null) - sum: (player_utility_sum_fields | null) - var_pop: (player_utility_var_pop_fields | null) - var_samp: (player_utility_var_samp_fields | null) - variance: (player_utility_variance_fields | null) - __typename: 'player_utility_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface player_utility_avg_fields { - attacker_steam_id: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'player_utility_avg_fields' -} - - -/** unique or primary key constraints on table "player_utility" */ -export type player_utility_constraint = 'player_utility_pkey' - - -/** aggregate max on columns */ -export interface player_utility_max_fields { - attacker_location_coordinates: (Scalars['String'] | null) - attacker_steam_id: (Scalars['bigint'] | null) - deleted_at: (Scalars['timestamptz'] | null) - match_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - round: (Scalars['Int'] | null) - time: (Scalars['timestamptz'] | null) - __typename: 'player_utility_max_fields' -} - - -/** aggregate min on columns */ -export interface player_utility_min_fields { - attacker_location_coordinates: (Scalars['String'] | null) - attacker_steam_id: (Scalars['bigint'] | null) - deleted_at: (Scalars['timestamptz'] | null) - match_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - round: (Scalars['Int'] | null) - time: (Scalars['timestamptz'] | null) - __typename: 'player_utility_min_fields' -} - - -/** response of any mutation on the table "player_utility" */ -export interface player_utility_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: player_utility[] - __typename: 'player_utility_mutation_response' -} - - -/** select columns of table "player_utility" */ -export type player_utility_select_column = 'attacker_location_coordinates' | 'attacker_steam_id' | 'deleted_at' | 'match_id' | 'match_map_id' | 'round' | 'time' | 'type' - - -/** aggregate stddev on columns */ -export interface player_utility_stddev_fields { - attacker_steam_id: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'player_utility_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface player_utility_stddev_pop_fields { - attacker_steam_id: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'player_utility_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface player_utility_stddev_samp_fields { - attacker_steam_id: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'player_utility_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface player_utility_sum_fields { - attacker_steam_id: (Scalars['bigint'] | null) - round: (Scalars['Int'] | null) - __typename: 'player_utility_sum_fields' -} - - -/** update columns of table "player_utility" */ -export type player_utility_update_column = 'attacker_location_coordinates' | 'attacker_steam_id' | 'deleted_at' | 'match_id' | 'match_map_id' | 'round' | 'time' | 'type' - - -/** aggregate var_pop on columns */ -export interface player_utility_var_pop_fields { - attacker_steam_id: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'player_utility_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface player_utility_var_samp_fields { - attacker_steam_id: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'player_utility_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface player_utility_variance_fields { - attacker_steam_id: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'player_utility_variance_fields' -} - - -/** columns and relationships of "player_weapon_stats_v" */ -export interface player_weapon_stats_v { - first_bullet_hits: (Scalars['Int'] | null) - first_bullet_shots: (Scalars['Int'] | null) - hits: (Scalars['Int'] | null) - hits_spotted: (Scalars['Int'] | null) - match_id: (Scalars['uuid'] | null) - shots: (Scalars['Int'] | null) - shots_spotted: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - weapon_class: (Scalars['String'] | null) - __typename: 'player_weapon_stats_v' -} - - -/** aggregated selection of "player_weapon_stats_v" */ -export interface player_weapon_stats_v_aggregate { - aggregate: (player_weapon_stats_v_aggregate_fields | null) - nodes: player_weapon_stats_v[] - __typename: 'player_weapon_stats_v_aggregate' -} - - -/** aggregate fields of "player_weapon_stats_v" */ -export interface player_weapon_stats_v_aggregate_fields { - avg: (player_weapon_stats_v_avg_fields | null) - count: Scalars['Int'] - max: (player_weapon_stats_v_max_fields | null) - min: (player_weapon_stats_v_min_fields | null) - stddev: (player_weapon_stats_v_stddev_fields | null) - stddev_pop: (player_weapon_stats_v_stddev_pop_fields | null) - stddev_samp: (player_weapon_stats_v_stddev_samp_fields | null) - sum: (player_weapon_stats_v_sum_fields | null) - var_pop: (player_weapon_stats_v_var_pop_fields | null) - var_samp: (player_weapon_stats_v_var_samp_fields | null) - variance: (player_weapon_stats_v_variance_fields | null) - __typename: 'player_weapon_stats_v_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface player_weapon_stats_v_avg_fields { - first_bullet_hits: (Scalars['Float'] | null) - first_bullet_shots: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - hits_spotted: (Scalars['Float'] | null) - shots: (Scalars['Float'] | null) - shots_spotted: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'player_weapon_stats_v_avg_fields' -} - - -/** aggregate max on columns */ -export interface player_weapon_stats_v_max_fields { - first_bullet_hits: (Scalars['Int'] | null) - first_bullet_shots: (Scalars['Int'] | null) - hits: (Scalars['Int'] | null) - hits_spotted: (Scalars['Int'] | null) - match_id: (Scalars['uuid'] | null) - shots: (Scalars['Int'] | null) - shots_spotted: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - weapon_class: (Scalars['String'] | null) - __typename: 'player_weapon_stats_v_max_fields' -} - - -/** aggregate min on columns */ -export interface player_weapon_stats_v_min_fields { - first_bullet_hits: (Scalars['Int'] | null) - first_bullet_shots: (Scalars['Int'] | null) - hits: (Scalars['Int'] | null) - hits_spotted: (Scalars['Int'] | null) - match_id: (Scalars['uuid'] | null) - shots: (Scalars['Int'] | null) - shots_spotted: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - weapon_class: (Scalars['String'] | null) - __typename: 'player_weapon_stats_v_min_fields' -} - - -/** select columns of table "player_weapon_stats_v" */ -export type player_weapon_stats_v_select_column = 'first_bullet_hits' | 'first_bullet_shots' | 'hits' | 'hits_spotted' | 'match_id' | 'shots' | 'shots_spotted' | 'steam_id' | 'weapon_class' - - -/** aggregate stddev on columns */ -export interface player_weapon_stats_v_stddev_fields { - first_bullet_hits: (Scalars['Float'] | null) - first_bullet_shots: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - hits_spotted: (Scalars['Float'] | null) - shots: (Scalars['Float'] | null) - shots_spotted: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'player_weapon_stats_v_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface player_weapon_stats_v_stddev_pop_fields { - first_bullet_hits: (Scalars['Float'] | null) - first_bullet_shots: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - hits_spotted: (Scalars['Float'] | null) - shots: (Scalars['Float'] | null) - shots_spotted: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'player_weapon_stats_v_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface player_weapon_stats_v_stddev_samp_fields { - first_bullet_hits: (Scalars['Float'] | null) - first_bullet_shots: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - hits_spotted: (Scalars['Float'] | null) - shots: (Scalars['Float'] | null) - shots_spotted: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'player_weapon_stats_v_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface player_weapon_stats_v_sum_fields { - first_bullet_hits: (Scalars['Int'] | null) - first_bullet_shots: (Scalars['Int'] | null) - hits: (Scalars['Int'] | null) - hits_spotted: (Scalars['Int'] | null) - shots: (Scalars['Int'] | null) - shots_spotted: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'player_weapon_stats_v_sum_fields' -} - - -/** aggregate var_pop on columns */ -export interface player_weapon_stats_v_var_pop_fields { - first_bullet_hits: (Scalars['Float'] | null) - first_bullet_shots: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - hits_spotted: (Scalars['Float'] | null) - shots: (Scalars['Float'] | null) - shots_spotted: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'player_weapon_stats_v_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface player_weapon_stats_v_var_samp_fields { - first_bullet_hits: (Scalars['Float'] | null) - first_bullet_shots: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - hits_spotted: (Scalars['Float'] | null) - shots: (Scalars['Float'] | null) - shots_spotted: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'player_weapon_stats_v_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface player_weapon_stats_v_variance_fields { - first_bullet_hits: (Scalars['Float'] | null) - first_bullet_shots: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - hits_spotted: (Scalars['Float'] | null) - shots: (Scalars['Float'] | null) - shots_spotted: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'player_weapon_stats_v_variance_fields' -} - - -/** columns and relationships of "players" */ -export interface players { - /** An array relationship */ - abandoned_matches: abandoned_matches[] - /** An aggregate relationship */ - abandoned_matches_aggregate: abandoned_matches_aggregate - /** An array relationship */ - aim_weapon_stats: player_aim_weapon_stats[] - /** An aggregate relationship */ - aim_weapon_stats_aggregate: player_aim_weapon_stats_aggregate - /** An array relationship */ - assists: player_assists[] - /** An aggregate relationship */ - assists_aggregate: player_assists_aggregate - /** An array relationship */ - assited_by_players: player_assists[] - /** An aggregate relationship */ - assited_by_players_aggregate: player_assists_aggregate - avatar_url: (Scalars['String'] | null) - /** An array relationship */ - awards: award_recipients[] - /** An aggregate relationship */ - awards_aggregate: award_recipients_aggregate - /** A computed field, executes function "banned_until" */ - banned_until: (Scalars['timestamptz'] | null) - /** An array relationship */ - coach_lineups: match_lineups[] - /** An aggregate relationship */ - coach_lineups_aggregate: match_lineups_aggregate - country: (Scalars['String'] | null) - created_at: (Scalars['timestamptz'] | null) - /** A computed field, executes function "get_player_current_lobby_id" */ - current_lobby_id: (Scalars['uuid'] | null) - custom_avatar_url: (Scalars['String'] | null) - /** An array relationship */ - damage_dealt: player_damages[] - /** An aggregate relationship */ - damage_dealt_aggregate: player_damages_aggregate - /** An array relationship */ - damage_taken: player_damages[] - /** An aggregate relationship */ - damage_taken_aggregate: player_damages_aggregate - days_since_last_ban: (Scalars['Int'] | null) - /** An array relationship */ - deaths: player_kills[] - /** An aggregate relationship */ - deaths_aggregate: player_kills_aggregate - discord_id: (Scalars['String'] | null) - /** An array relationship */ - draft_game_players: draft_game_players[] - /** An aggregate relationship */ - draft_game_players_aggregate: draft_game_players_aggregate - /** A computed field, executes function "get_player_elo" */ - elo: (Scalars['jsonb'] | null) - /** An array relationship */ - elo_history: v_player_elo[] - /** An aggregate relationship */ - elo_history_aggregate: v_player_elo_aggregate - faceit_elo: (Scalars['Int'] | null) - faceit_nickname: (Scalars['String'] | null) - faceit_player_id: (Scalars['String'] | null) - /** An array relationship */ - faceit_rank_history: player_faceit_rank_history[] - /** An aggregate relationship */ - faceit_rank_history_aggregate: player_faceit_rank_history_aggregate - faceit_skill_level: (Scalars['Int'] | null) - faceit_updated_at: (Scalars['timestamptz'] | null) - faceit_url: (Scalars['String'] | null) - /** An array relationship */ - flashed_by_players: player_flashes[] - /** An aggregate relationship */ - flashed_by_players_aggregate: player_flashes_aggregate - /** An array relationship */ - flashed_players: player_flashes[] - /** An aggregate relationship */ - flashed_players_aggregate: player_flashes_aggregate - /** An array relationship */ - friends: my_friends[] - /** An aggregate relationship */ - friends_aggregate: my_friends_aggregate - game_ban_count: Scalars['Int'] - /** An array relationship */ - invited_players: team_invites[] - /** An aggregate relationship */ - invited_players_aggregate: team_invites_aggregate - /** A computed field, executes function "is_admin_sanctioned" */ - is_admin_sanctioned: (Scalars['Boolean'] | null) - /** A computed field, executes function "is_banned" */ - is_banned: (Scalars['Boolean'] | null) - /** A computed field, executes function "is_gagged" */ - is_gagged: (Scalars['Boolean'] | null) - /** A computed field, executes function "is_in_another_match" */ - is_in_another_match: (Scalars['Boolean'] | null) - /** A computed field, executes function "is_in_draft" */ - is_in_draft: (Scalars['Boolean'] | null) - /** A computed field, executes function "is_in_lobby" */ - is_in_lobby: (Scalars['Boolean'] | null) - /** A computed field, executes function "is_muted" */ - is_muted: (Scalars['Boolean'] | null) - /** A computed field, executes function "is_registered" */ - is_registered: (Scalars['Boolean'] | null) - /** An array relationship */ - kills: player_kills[] - /** An aggregate relationship */ - kills_aggregate: player_kills_aggregate - /** An array relationship */ - kills_by_weapons: player_kills_by_weapon[] - /** An aggregate relationship */ - kills_by_weapons_aggregate: player_kills_by_weapon_aggregate - language: (Scalars['String'] | null) - last_read_news_at: (Scalars['timestamptz'] | null) - last_sign_in_at: (Scalars['timestamptz'] | null) - /** An array relationship */ - lobby_players: lobby_players[] - /** An aggregate relationship */ - lobby_players_aggregate: lobby_players_aggregate - /** A computed field, executes function "get_total_player_losses" */ - losses: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_losses_competitive" */ - losses_competitive: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_losses_duel" */ - losses_duel: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_losses_wingman" */ - losses_wingman: (Scalars['Int'] | null) - /** An array relationship */ - match_map_hltv: v_player_match_map_hltv[] - /** An aggregate relationship */ - match_map_hltv_aggregate: v_player_match_map_hltv_aggregate - /** An array relationship */ - match_map_stats: player_match_map_stats[] - /** An aggregate relationship */ - match_map_stats_aggregate: player_match_map_stats_aggregate - /** An array relationship */ - match_stats: player_match_stats_v[] - /** An aggregate relationship */ - match_stats_aggregate: player_match_stats_v_aggregate - /** A computed field, executes function "get_player_matches" */ - matches: (matches[] | null) - /** A computed field, executes function "get_player_matchmaking_cooldown" */ - matchmaking_cooldown: (Scalars['timestamptz'] | null) - /** An array relationship */ - multi_kills: v_player_multi_kills[] - /** An aggregate relationship */ - multi_kills_aggregate: v_player_multi_kills_aggregate - name: Scalars['String'] - name_registered: Scalars['Boolean'] - notification_timezone: (Scalars['String'] | null) - /** An array relationship */ - notifications: notifications[] - /** An aggregate relationship */ - notifications_aggregate: notifications_aggregate - /** An array relationship */ - objectives: player_objectives[] - /** An aggregate relationship */ - objectives_aggregate: player_objectives_aggregate - /** An array relationship */ - owned_teams: teams[] - /** An aggregate relationship */ - owned_teams_aggregate: teams_aggregate - /** A computed field, executes function "get_player_peak_elo" */ - peak_elo: (Scalars['jsonb'] | null) - /** An array relationship */ - pending_match_imports: pending_match_import_players[] - /** An aggregate relationship */ - pending_match_imports_aggregate: pending_match_import_players_aggregate - /** An array relationship */ - player_lineup: match_lineup_players[] - /** An aggregate relationship */ - player_lineup_aggregate: match_lineup_players_aggregate - /** An array relationship */ - player_unused_utilities: player_unused_utility[] - /** An aggregate relationship */ - player_unused_utilities_aggregate: player_unused_utility_aggregate - premier_rank: (Scalars['Int'] | null) - /** An array relationship */ - premier_rank_history: player_premier_rank_history[] - /** An aggregate relationship */ - premier_rank_history_aggregate: player_premier_rank_history_aggregate - premier_rank_updated_at: (Scalars['timestamptz'] | null) - profile_url: (Scalars['String'] | null) - quiet_hours_end: (Scalars['time'] | null) - quiet_hours_start: (Scalars['time'] | null) - role: e_player_roles_enum - roster_image_url: (Scalars['String'] | null) - /** An array relationship */ - sanctions: player_sanctions[] - /** An aggregate relationship */ - sanctions_aggregate: player_sanctions_aggregate - /** An array relationship */ - season_stats: player_season_stats[] - /** An aggregate relationship */ - season_stats_aggregate: player_season_stats_aggregate - show_match_ready_modal: Scalars['Boolean'] - /** An object relationship */ - stats: (player_stats | null) - steam_bans_checked_at: (Scalars['timestamptz'] | null) - steam_id: Scalars['bigint'] - /** An array relationship */ - team_invites: team_invites[] - /** An aggregate relationship */ - team_invites_aggregate: team_invites_aggregate - /** An array relationship */ - team_members: team_roster[] - /** An aggregate relationship */ - team_members_aggregate: team_roster_aggregate - /** A computed field, executes function "get_player_teams" */ - teams: (teams[] | null) - /** A computed field, executes function "get_total_player_matches" */ - total_matches: (Scalars['Int'] | null) - /** A computed field, executes function "get_player_tournament_cooldown" */ - tournament_cooldown: (Scalars['timestamptz'] | null) - /** An array relationship */ - tournament_organizers: tournament_organizers[] - /** An aggregate relationship */ - tournament_organizers_aggregate: tournament_organizers_aggregate - /** An array relationship */ - tournament_rosters: tournament_team_roster[] - /** An aggregate relationship */ - tournament_rosters_aggregate: tournament_team_roster_aggregate - /** An array relationship */ - tournaments: tournaments[] - /** An aggregate relationship */ - tournaments_aggregate: tournaments_aggregate - /** An array relationship */ - utility_thrown: player_utility[] - /** An aggregate relationship */ - utility_thrown_aggregate: player_utility_aggregate - vac_ban_count: Scalars['Int'] - vac_banned: Scalars['Boolean'] - /** An array relationship */ - weapon_stats: player_weapon_stats_v[] - /** An aggregate relationship */ - weapon_stats_aggregate: player_weapon_stats_v_aggregate - /** A computed field, executes function "get_total_player_wins" */ - wins: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_wins_competitive" */ - wins_competitive: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_wins_duel" */ - wins_duel: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_wins_wingman" */ - wins_wingman: (Scalars['Int'] | null) - __typename: 'players' -} - - -/** aggregated selection of "players" */ -export interface players_aggregate { - aggregate: (players_aggregate_fields | null) - nodes: players[] - __typename: 'players_aggregate' -} - - -/** aggregate fields of "players" */ -export interface players_aggregate_fields { - avg: (players_avg_fields | null) - count: Scalars['Int'] - max: (players_max_fields | null) - min: (players_min_fields | null) - stddev: (players_stddev_fields | null) - stddev_pop: (players_stddev_pop_fields | null) - stddev_samp: (players_stddev_samp_fields | null) - sum: (players_sum_fields | null) - var_pop: (players_var_pop_fields | null) - var_samp: (players_var_samp_fields | null) - variance: (players_variance_fields | null) - __typename: 'players_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface players_avg_fields { - days_since_last_ban: (Scalars['Float'] | null) - faceit_elo: (Scalars['Float'] | null) - faceit_skill_level: (Scalars['Float'] | null) - game_ban_count: (Scalars['Float'] | null) - /** A computed field, executes function "get_total_player_losses" */ - losses: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_losses_competitive" */ - losses_competitive: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_losses_duel" */ - losses_duel: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_losses_wingman" */ - losses_wingman: (Scalars['Int'] | null) - premier_rank: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - /** A computed field, executes function "get_total_player_matches" */ - total_matches: (Scalars['Int'] | null) - vac_ban_count: (Scalars['Float'] | null) - /** A computed field, executes function "get_total_player_wins" */ - wins: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_wins_competitive" */ - wins_competitive: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_wins_duel" */ - wins_duel: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_wins_wingman" */ - wins_wingman: (Scalars['Int'] | null) - __typename: 'players_avg_fields' -} - - -/** unique or primary key constraints on table "players" */ -export type players_constraint = 'players_discord_id_key' | 'players_pkey' | 'players_steam_id_key' - - -/** aggregate max on columns */ -export interface players_max_fields { - avatar_url: (Scalars['String'] | null) - /** A computed field, executes function "banned_until" */ - banned_until: (Scalars['timestamptz'] | null) - country: (Scalars['String'] | null) - created_at: (Scalars['timestamptz'] | null) - /** A computed field, executes function "get_player_current_lobby_id" */ - current_lobby_id: (Scalars['uuid'] | null) - custom_avatar_url: (Scalars['String'] | null) - days_since_last_ban: (Scalars['Int'] | null) - discord_id: (Scalars['String'] | null) - faceit_elo: (Scalars['Int'] | null) - faceit_nickname: (Scalars['String'] | null) - faceit_player_id: (Scalars['String'] | null) - faceit_skill_level: (Scalars['Int'] | null) - faceit_updated_at: (Scalars['timestamptz'] | null) - faceit_url: (Scalars['String'] | null) - game_ban_count: (Scalars['Int'] | null) - language: (Scalars['String'] | null) - last_read_news_at: (Scalars['timestamptz'] | null) - last_sign_in_at: (Scalars['timestamptz'] | null) - /** A computed field, executes function "get_total_player_losses" */ - losses: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_losses_competitive" */ - losses_competitive: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_losses_duel" */ - losses_duel: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_losses_wingman" */ - losses_wingman: (Scalars['Int'] | null) - /** A computed field, executes function "get_player_matchmaking_cooldown" */ - matchmaking_cooldown: (Scalars['timestamptz'] | null) - name: (Scalars['String'] | null) - notification_timezone: (Scalars['String'] | null) - premier_rank: (Scalars['Int'] | null) - premier_rank_updated_at: (Scalars['timestamptz'] | null) - profile_url: (Scalars['String'] | null) - roster_image_url: (Scalars['String'] | null) - steam_bans_checked_at: (Scalars['timestamptz'] | null) - steam_id: (Scalars['bigint'] | null) - /** A computed field, executes function "get_total_player_matches" */ - total_matches: (Scalars['Int'] | null) - /** A computed field, executes function "get_player_tournament_cooldown" */ - tournament_cooldown: (Scalars['timestamptz'] | null) - vac_ban_count: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_wins" */ - wins: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_wins_competitive" */ - wins_competitive: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_wins_duel" */ - wins_duel: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_wins_wingman" */ - wins_wingman: (Scalars['Int'] | null) - __typename: 'players_max_fields' -} - - -/** aggregate min on columns */ -export interface players_min_fields { - avatar_url: (Scalars['String'] | null) - /** A computed field, executes function "banned_until" */ - banned_until: (Scalars['timestamptz'] | null) - country: (Scalars['String'] | null) - created_at: (Scalars['timestamptz'] | null) - /** A computed field, executes function "get_player_current_lobby_id" */ - current_lobby_id: (Scalars['uuid'] | null) - custom_avatar_url: (Scalars['String'] | null) - days_since_last_ban: (Scalars['Int'] | null) - discord_id: (Scalars['String'] | null) - faceit_elo: (Scalars['Int'] | null) - faceit_nickname: (Scalars['String'] | null) - faceit_player_id: (Scalars['String'] | null) - faceit_skill_level: (Scalars['Int'] | null) - faceit_updated_at: (Scalars['timestamptz'] | null) - faceit_url: (Scalars['String'] | null) - game_ban_count: (Scalars['Int'] | null) - language: (Scalars['String'] | null) - last_read_news_at: (Scalars['timestamptz'] | null) - last_sign_in_at: (Scalars['timestamptz'] | null) - /** A computed field, executes function "get_total_player_losses" */ - losses: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_losses_competitive" */ - losses_competitive: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_losses_duel" */ - losses_duel: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_losses_wingman" */ - losses_wingman: (Scalars['Int'] | null) - /** A computed field, executes function "get_player_matchmaking_cooldown" */ - matchmaking_cooldown: (Scalars['timestamptz'] | null) - name: (Scalars['String'] | null) - notification_timezone: (Scalars['String'] | null) - premier_rank: (Scalars['Int'] | null) - premier_rank_updated_at: (Scalars['timestamptz'] | null) - profile_url: (Scalars['String'] | null) - roster_image_url: (Scalars['String'] | null) - steam_bans_checked_at: (Scalars['timestamptz'] | null) - steam_id: (Scalars['bigint'] | null) - /** A computed field, executes function "get_total_player_matches" */ - total_matches: (Scalars['Int'] | null) - /** A computed field, executes function "get_player_tournament_cooldown" */ - tournament_cooldown: (Scalars['timestamptz'] | null) - vac_ban_count: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_wins" */ - wins: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_wins_competitive" */ - wins_competitive: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_wins_duel" */ - wins_duel: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_wins_wingman" */ - wins_wingman: (Scalars['Int'] | null) - __typename: 'players_min_fields' -} - - -/** response of any mutation on the table "players" */ -export interface players_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: players[] - __typename: 'players_mutation_response' -} - - -/** select columns of table "players" */ -export type players_select_column = 'avatar_url' | 'country' | 'created_at' | 'custom_avatar_url' | 'days_since_last_ban' | 'discord_id' | 'faceit_elo' | 'faceit_nickname' | 'faceit_player_id' | 'faceit_skill_level' | 'faceit_updated_at' | 'faceit_url' | 'game_ban_count' | 'language' | 'last_read_news_at' | 'last_sign_in_at' | 'name' | 'name_registered' | 'notification_timezone' | 'premier_rank' | 'premier_rank_updated_at' | 'profile_url' | 'quiet_hours_end' | 'quiet_hours_start' | 'role' | 'roster_image_url' | 'show_match_ready_modal' | 'steam_bans_checked_at' | 'steam_id' | 'vac_ban_count' | 'vac_banned' - - -/** aggregate stddev on columns */ -export interface players_stddev_fields { - days_since_last_ban: (Scalars['Float'] | null) - faceit_elo: (Scalars['Float'] | null) - faceit_skill_level: (Scalars['Float'] | null) - game_ban_count: (Scalars['Float'] | null) - /** A computed field, executes function "get_total_player_losses" */ - losses: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_losses_competitive" */ - losses_competitive: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_losses_duel" */ - losses_duel: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_losses_wingman" */ - losses_wingman: (Scalars['Int'] | null) - premier_rank: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - /** A computed field, executes function "get_total_player_matches" */ - total_matches: (Scalars['Int'] | null) - vac_ban_count: (Scalars['Float'] | null) - /** A computed field, executes function "get_total_player_wins" */ - wins: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_wins_competitive" */ - wins_competitive: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_wins_duel" */ - wins_duel: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_wins_wingman" */ - wins_wingman: (Scalars['Int'] | null) - __typename: 'players_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface players_stddev_pop_fields { - days_since_last_ban: (Scalars['Float'] | null) - faceit_elo: (Scalars['Float'] | null) - faceit_skill_level: (Scalars['Float'] | null) - game_ban_count: (Scalars['Float'] | null) - /** A computed field, executes function "get_total_player_losses" */ - losses: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_losses_competitive" */ - losses_competitive: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_losses_duel" */ - losses_duel: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_losses_wingman" */ - losses_wingman: (Scalars['Int'] | null) - premier_rank: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - /** A computed field, executes function "get_total_player_matches" */ - total_matches: (Scalars['Int'] | null) - vac_ban_count: (Scalars['Float'] | null) - /** A computed field, executes function "get_total_player_wins" */ - wins: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_wins_competitive" */ - wins_competitive: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_wins_duel" */ - wins_duel: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_wins_wingman" */ - wins_wingman: (Scalars['Int'] | null) - __typename: 'players_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface players_stddev_samp_fields { - days_since_last_ban: (Scalars['Float'] | null) - faceit_elo: (Scalars['Float'] | null) - faceit_skill_level: (Scalars['Float'] | null) - game_ban_count: (Scalars['Float'] | null) - /** A computed field, executes function "get_total_player_losses" */ - losses: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_losses_competitive" */ - losses_competitive: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_losses_duel" */ - losses_duel: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_losses_wingman" */ - losses_wingman: (Scalars['Int'] | null) - premier_rank: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - /** A computed field, executes function "get_total_player_matches" */ - total_matches: (Scalars['Int'] | null) - vac_ban_count: (Scalars['Float'] | null) - /** A computed field, executes function "get_total_player_wins" */ - wins: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_wins_competitive" */ - wins_competitive: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_wins_duel" */ - wins_duel: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_wins_wingman" */ - wins_wingman: (Scalars['Int'] | null) - __typename: 'players_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface players_sum_fields { - days_since_last_ban: (Scalars['Int'] | null) - faceit_elo: (Scalars['Int'] | null) - faceit_skill_level: (Scalars['Int'] | null) - game_ban_count: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_losses" */ - losses: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_losses_competitive" */ - losses_competitive: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_losses_duel" */ - losses_duel: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_losses_wingman" */ - losses_wingman: (Scalars['Int'] | null) - premier_rank: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - /** A computed field, executes function "get_total_player_matches" */ - total_matches: (Scalars['Int'] | null) - vac_ban_count: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_wins" */ - wins: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_wins_competitive" */ - wins_competitive: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_wins_duel" */ - wins_duel: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_wins_wingman" */ - wins_wingman: (Scalars['Int'] | null) - __typename: 'players_sum_fields' -} - - -/** update columns of table "players" */ -export type players_update_column = 'avatar_url' | 'country' | 'created_at' | 'custom_avatar_url' | 'days_since_last_ban' | 'discord_id' | 'faceit_elo' | 'faceit_nickname' | 'faceit_player_id' | 'faceit_skill_level' | 'faceit_updated_at' | 'faceit_url' | 'game_ban_count' | 'language' | 'last_read_news_at' | 'last_sign_in_at' | 'name' | 'name_registered' | 'notification_timezone' | 'premier_rank' | 'premier_rank_updated_at' | 'profile_url' | 'quiet_hours_end' | 'quiet_hours_start' | 'role' | 'roster_image_url' | 'show_match_ready_modal' | 'steam_bans_checked_at' | 'steam_id' | 'vac_ban_count' | 'vac_banned' - - -/** aggregate var_pop on columns */ -export interface players_var_pop_fields { - days_since_last_ban: (Scalars['Float'] | null) - faceit_elo: (Scalars['Float'] | null) - faceit_skill_level: (Scalars['Float'] | null) - game_ban_count: (Scalars['Float'] | null) - /** A computed field, executes function "get_total_player_losses" */ - losses: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_losses_competitive" */ - losses_competitive: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_losses_duel" */ - losses_duel: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_losses_wingman" */ - losses_wingman: (Scalars['Int'] | null) - premier_rank: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - /** A computed field, executes function "get_total_player_matches" */ - total_matches: (Scalars['Int'] | null) - vac_ban_count: (Scalars['Float'] | null) - /** A computed field, executes function "get_total_player_wins" */ - wins: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_wins_competitive" */ - wins_competitive: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_wins_duel" */ - wins_duel: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_wins_wingman" */ - wins_wingman: (Scalars['Int'] | null) - __typename: 'players_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface players_var_samp_fields { - days_since_last_ban: (Scalars['Float'] | null) - faceit_elo: (Scalars['Float'] | null) - faceit_skill_level: (Scalars['Float'] | null) - game_ban_count: (Scalars['Float'] | null) - /** A computed field, executes function "get_total_player_losses" */ - losses: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_losses_competitive" */ - losses_competitive: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_losses_duel" */ - losses_duel: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_losses_wingman" */ - losses_wingman: (Scalars['Int'] | null) - premier_rank: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - /** A computed field, executes function "get_total_player_matches" */ - total_matches: (Scalars['Int'] | null) - vac_ban_count: (Scalars['Float'] | null) - /** A computed field, executes function "get_total_player_wins" */ - wins: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_wins_competitive" */ - wins_competitive: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_wins_duel" */ - wins_duel: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_wins_wingman" */ - wins_wingman: (Scalars['Int'] | null) - __typename: 'players_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface players_variance_fields { - days_since_last_ban: (Scalars['Float'] | null) - faceit_elo: (Scalars['Float'] | null) - faceit_skill_level: (Scalars['Float'] | null) - game_ban_count: (Scalars['Float'] | null) - /** A computed field, executes function "get_total_player_losses" */ - losses: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_losses_competitive" */ - losses_competitive: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_losses_duel" */ - losses_duel: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_losses_wingman" */ - losses_wingman: (Scalars['Int'] | null) - premier_rank: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - /** A computed field, executes function "get_total_player_matches" */ - total_matches: (Scalars['Int'] | null) - vac_ban_count: (Scalars['Float'] | null) - /** A computed field, executes function "get_total_player_wins" */ - wins: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_wins_competitive" */ - wins_competitive: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_wins_duel" */ - wins_duel: (Scalars['Int'] | null) - /** A computed field, executes function "get_total_player_wins_wingman" */ - wins_wingman: (Scalars['Int'] | null) - __typename: 'players_variance_fields' -} - - -/** columns and relationships of "plugin_versions" */ -export interface plugin_versions { - min_game_build_id: (Scalars['Int'] | null) - published_at: Scalars['timestamptz'] - runtime: e_plugin_runtimes_enum - version: Scalars['String'] - __typename: 'plugin_versions' -} - - -/** aggregated selection of "plugin_versions" */ -export interface plugin_versions_aggregate { - aggregate: (plugin_versions_aggregate_fields | null) - nodes: plugin_versions[] - __typename: 'plugin_versions_aggregate' -} - - -/** aggregate fields of "plugin_versions" */ -export interface plugin_versions_aggregate_fields { - avg: (plugin_versions_avg_fields | null) - count: Scalars['Int'] - max: (plugin_versions_max_fields | null) - min: (plugin_versions_min_fields | null) - stddev: (plugin_versions_stddev_fields | null) - stddev_pop: (plugin_versions_stddev_pop_fields | null) - stddev_samp: (plugin_versions_stddev_samp_fields | null) - sum: (plugin_versions_sum_fields | null) - var_pop: (plugin_versions_var_pop_fields | null) - var_samp: (plugin_versions_var_samp_fields | null) - variance: (plugin_versions_variance_fields | null) - __typename: 'plugin_versions_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface plugin_versions_avg_fields { - min_game_build_id: (Scalars['Float'] | null) - __typename: 'plugin_versions_avg_fields' -} - - -/** unique or primary key constraints on table "plugin_versions" */ -export type plugin_versions_constraint = 'plugin_versions_pkey' - - -/** aggregate max on columns */ -export interface plugin_versions_max_fields { - min_game_build_id: (Scalars['Int'] | null) - published_at: (Scalars['timestamptz'] | null) - version: (Scalars['String'] | null) - __typename: 'plugin_versions_max_fields' -} - - -/** aggregate min on columns */ -export interface plugin_versions_min_fields { - min_game_build_id: (Scalars['Int'] | null) - published_at: (Scalars['timestamptz'] | null) - version: (Scalars['String'] | null) - __typename: 'plugin_versions_min_fields' -} - - -/** response of any mutation on the table "plugin_versions" */ -export interface plugin_versions_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: plugin_versions[] - __typename: 'plugin_versions_mutation_response' -} - - -/** select columns of table "plugin_versions" */ -export type plugin_versions_select_column = 'min_game_build_id' | 'published_at' | 'runtime' | 'version' - - -/** aggregate stddev on columns */ -export interface plugin_versions_stddev_fields { - min_game_build_id: (Scalars['Float'] | null) - __typename: 'plugin_versions_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface plugin_versions_stddev_pop_fields { - min_game_build_id: (Scalars['Float'] | null) - __typename: 'plugin_versions_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface plugin_versions_stddev_samp_fields { - min_game_build_id: (Scalars['Float'] | null) - __typename: 'plugin_versions_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface plugin_versions_sum_fields { - min_game_build_id: (Scalars['Int'] | null) - __typename: 'plugin_versions_sum_fields' -} - - -/** update columns of table "plugin_versions" */ -export type plugin_versions_update_column = 'min_game_build_id' | 'published_at' | 'runtime' | 'version' - - -/** aggregate var_pop on columns */ -export interface plugin_versions_var_pop_fields { - min_game_build_id: (Scalars['Float'] | null) - __typename: 'plugin_versions_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface plugin_versions_var_samp_fields { - min_game_build_id: (Scalars['Float'] | null) - __typename: 'plugin_versions_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface plugin_versions_variance_fields { - min_game_build_id: (Scalars['Float'] | null) - __typename: 'plugin_versions_variance_fields' -} - - -/** columns and relationships of "push_subscriptions" */ -export interface push_subscriptions { - auth: Scalars['String'] - created_at: Scalars['timestamptz'] - endpoint: Scalars['String'] - id: Scalars['uuid'] - last_used_at: (Scalars['timestamptz'] | null) - p256dh: Scalars['String'] - steam_id: Scalars['bigint'] - user_agent: (Scalars['String'] | null) - __typename: 'push_subscriptions' -} - - -/** aggregated selection of "push_subscriptions" */ -export interface push_subscriptions_aggregate { - aggregate: (push_subscriptions_aggregate_fields | null) - nodes: push_subscriptions[] - __typename: 'push_subscriptions_aggregate' -} - - -/** aggregate fields of "push_subscriptions" */ -export interface push_subscriptions_aggregate_fields { - avg: (push_subscriptions_avg_fields | null) - count: Scalars['Int'] - max: (push_subscriptions_max_fields | null) - min: (push_subscriptions_min_fields | null) - stddev: (push_subscriptions_stddev_fields | null) - stddev_pop: (push_subscriptions_stddev_pop_fields | null) - stddev_samp: (push_subscriptions_stddev_samp_fields | null) - sum: (push_subscriptions_sum_fields | null) - var_pop: (push_subscriptions_var_pop_fields | null) - var_samp: (push_subscriptions_var_samp_fields | null) - variance: (push_subscriptions_variance_fields | null) - __typename: 'push_subscriptions_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface push_subscriptions_avg_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'push_subscriptions_avg_fields' -} - - -/** unique or primary key constraints on table "push_subscriptions" */ -export type push_subscriptions_constraint = 'push_subscriptions_endpoint_key' | 'push_subscriptions_pkey' - - -/** aggregate max on columns */ -export interface push_subscriptions_max_fields { - auth: (Scalars['String'] | null) - created_at: (Scalars['timestamptz'] | null) - endpoint: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - last_used_at: (Scalars['timestamptz'] | null) - p256dh: (Scalars['String'] | null) - steam_id: (Scalars['bigint'] | null) - user_agent: (Scalars['String'] | null) - __typename: 'push_subscriptions_max_fields' -} - - -/** aggregate min on columns */ -export interface push_subscriptions_min_fields { - auth: (Scalars['String'] | null) - created_at: (Scalars['timestamptz'] | null) - endpoint: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - last_used_at: (Scalars['timestamptz'] | null) - p256dh: (Scalars['String'] | null) - steam_id: (Scalars['bigint'] | null) - user_agent: (Scalars['String'] | null) - __typename: 'push_subscriptions_min_fields' -} - - -/** response of any mutation on the table "push_subscriptions" */ -export interface push_subscriptions_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: push_subscriptions[] - __typename: 'push_subscriptions_mutation_response' -} - - -/** select columns of table "push_subscriptions" */ -export type push_subscriptions_select_column = 'auth' | 'created_at' | 'endpoint' | 'id' | 'last_used_at' | 'p256dh' | 'steam_id' | 'user_agent' - - -/** aggregate stddev on columns */ -export interface push_subscriptions_stddev_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'push_subscriptions_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface push_subscriptions_stddev_pop_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'push_subscriptions_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface push_subscriptions_stddev_samp_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'push_subscriptions_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface push_subscriptions_sum_fields { - steam_id: (Scalars['bigint'] | null) - __typename: 'push_subscriptions_sum_fields' -} - - -/** update columns of table "push_subscriptions" */ -export type push_subscriptions_update_column = 'auth' | 'created_at' | 'endpoint' | 'id' | 'last_used_at' | 'p256dh' | 'steam_id' | 'user_agent' - - -/** aggregate var_pop on columns */ -export interface push_subscriptions_var_pop_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'push_subscriptions_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface push_subscriptions_var_samp_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'push_subscriptions_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface push_subscriptions_variance_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'push_subscriptions_variance_fields' -} - -export interface query_root { - /** fetch data from the table: "_map_pool" */ - _map_pool: _map_pool[] - /** fetch aggregated fields from the table: "_map_pool" */ - _map_pool_aggregate: _map_pool_aggregate - /** fetch data from the table: "_map_pool" using primary key columns */ - _map_pool_by_pk: (_map_pool | null) - /** An array relationship */ - abandoned_matches: abandoned_matches[] - /** An aggregate relationship */ - abandoned_matches_aggregate: abandoned_matches_aggregate - /** fetch data from the table: "abandoned_matches" using primary key columns */ - abandoned_matches_by_pk: (abandoned_matches | null) - /** Ask which sightlines a playbook's smokes leave open */ - analyseUtilityPlaybookCoverage: (UtilityPlaybookCoverageOutput | null) - /** fetch data from the table: "api_keys" */ - api_keys: api_keys[] - /** fetch aggregated fields from the table: "api_keys" */ - api_keys_aggregate: api_keys_aggregate - /** fetch data from the table: "api_keys" using primary key columns */ - api_keys_by_pk: (api_keys | null) - /** fetch data from the table: "award_recipients" */ - award_recipients: award_recipients[] - /** fetch aggregated fields from the table: "award_recipients" */ - award_recipients_aggregate: award_recipients_aggregate - /** fetch data from the table: "award_recipients" using primary key columns */ - award_recipients_by_pk: (award_recipients | null) - /** fetch data from the table: "awards" */ - awards: awards[] - /** fetch aggregated fields from the table: "awards" */ - awards_aggregate: awards_aggregate - /** fetch data from the table: "awards" using primary key columns */ - awards_by_pk: (awards | null) - /** fetch data from the table: "chat_read_state" */ - chat_read_state: chat_read_state[] - /** fetch aggregated fields from the table: "chat_read_state" */ - chat_read_state_aggregate: chat_read_state_aggregate - /** fetch data from the table: "chat_read_state" using primary key columns */ - chat_read_state_by_pk: (chat_read_state | null) - /** Ask whether a lineup's smoke makes an angle one-way */ - checkUtilityOneWay: (UtilityOneWayOutput | null) - /** Ask whether a lineup's smoke blocks a set of sightlines */ - checkUtilitySightlines: (UtilitySightlineOutput | null) - /** An array relationship */ - clip_render_jobs: clip_render_jobs[] - /** An aggregate relationship */ - clip_render_jobs_aggregate: clip_render_jobs_aggregate - /** fetch data from the table: "clip_render_jobs" using primary key columns */ - clip_render_jobs_by_pk: (clip_render_jobs | null) - /** fetch data from the table: "custom_pages" */ - custom_pages: custom_pages[] - /** fetch aggregated fields from the table: "custom_pages" */ - custom_pages_aggregate: custom_pages_aggregate - /** fetch data from the table: "custom_pages" using primary key columns */ - custom_pages_by_pk: (custom_pages | null) - dbStats: ((DbStats | null)[] | null) - /** fetch data from the table: "db_backups" */ - db_backups: db_backups[] - /** fetch aggregated fields from the table: "db_backups" */ - db_backups_aggregate: db_backups_aggregate - /** fetch data from the table: "db_backups" using primary key columns */ - db_backups_by_pk: (db_backups | null) - /** fetch data from the table: "direct_conversations" */ - direct_conversations: direct_conversations[] - /** fetch aggregated fields from the table: "direct_conversations" */ - direct_conversations_aggregate: direct_conversations_aggregate - /** fetch data from the table: "direct_conversations" using primary key columns */ - direct_conversations_by_pk: (direct_conversations | null) - /** fetch data from the table: "direct_messages" */ - direct_messages: direct_messages[] - /** fetch aggregated fields from the table: "direct_messages" */ - direct_messages_aggregate: direct_messages_aggregate - /** fetch data from the table: "direct_messages" using primary key columns */ - direct_messages_by_pk: (direct_messages | null) - /** fetch data from the table: "draft_game_picks" */ - draft_game_picks: draft_game_picks[] - /** fetch aggregated fields from the table: "draft_game_picks" */ - draft_game_picks_aggregate: draft_game_picks_aggregate - /** fetch data from the table: "draft_game_picks" using primary key columns */ - draft_game_picks_by_pk: (draft_game_picks | null) - /** An array relationship */ - draft_game_players: draft_game_players[] - /** An aggregate relationship */ - draft_game_players_aggregate: draft_game_players_aggregate - /** fetch data from the table: "draft_game_players" using primary key columns */ - draft_game_players_by_pk: (draft_game_players | null) - /** An array relationship */ - draft_games: draft_games[] - /** An aggregate relationship */ - draft_games_aggregate: draft_games_aggregate - /** fetch data from the table: "draft_games" using primary key columns */ - draft_games_by_pk: (draft_games | null) - /** fetch data from the table: "e_award_sources" */ - e_award_sources: e_award_sources[] - /** fetch aggregated fields from the table: "e_award_sources" */ - e_award_sources_aggregate: e_award_sources_aggregate - /** fetch data from the table: "e_award_sources" using primary key columns */ - e_award_sources_by_pk: (e_award_sources | null) - /** fetch data from the table: "e_award_tiers" */ - e_award_tiers: e_award_tiers[] - /** fetch aggregated fields from the table: "e_award_tiers" */ - e_award_tiers_aggregate: e_award_tiers_aggregate - /** fetch data from the table: "e_award_tiers" using primary key columns */ - e_award_tiers_by_pk: (e_award_tiers | null) - /** fetch data from the table: "e_check_in_settings" */ - e_check_in_settings: e_check_in_settings[] - /** fetch aggregated fields from the table: "e_check_in_settings" */ - e_check_in_settings_aggregate: e_check_in_settings_aggregate - /** fetch data from the table: "e_check_in_settings" using primary key columns */ - e_check_in_settings_by_pk: (e_check_in_settings | null) - /** fetch data from the table: "e_draft_game_captain_selection" */ - e_draft_game_captain_selection: e_draft_game_captain_selection[] - /** fetch aggregated fields from the table: "e_draft_game_captain_selection" */ - e_draft_game_captain_selection_aggregate: e_draft_game_captain_selection_aggregate - /** fetch data from the table: "e_draft_game_captain_selection" using primary key columns */ - e_draft_game_captain_selection_by_pk: (e_draft_game_captain_selection | null) - /** fetch data from the table: "e_draft_game_draft_order" */ - e_draft_game_draft_order: e_draft_game_draft_order[] - /** fetch aggregated fields from the table: "e_draft_game_draft_order" */ - e_draft_game_draft_order_aggregate: e_draft_game_draft_order_aggregate - /** fetch data from the table: "e_draft_game_draft_order" using primary key columns */ - e_draft_game_draft_order_by_pk: (e_draft_game_draft_order | null) - /** fetch data from the table: "e_draft_game_mode" */ - e_draft_game_mode: e_draft_game_mode[] - /** fetch aggregated fields from the table: "e_draft_game_mode" */ - e_draft_game_mode_aggregate: e_draft_game_mode_aggregate - /** fetch data from the table: "e_draft_game_mode" using primary key columns */ - e_draft_game_mode_by_pk: (e_draft_game_mode | null) - /** fetch data from the table: "e_draft_game_player_status" */ - e_draft_game_player_status: e_draft_game_player_status[] - /** fetch aggregated fields from the table: "e_draft_game_player_status" */ - e_draft_game_player_status_aggregate: e_draft_game_player_status_aggregate - /** fetch data from the table: "e_draft_game_player_status" using primary key columns */ - e_draft_game_player_status_by_pk: (e_draft_game_player_status | null) - /** fetch data from the table: "e_draft_game_status" */ - e_draft_game_status: e_draft_game_status[] - /** fetch aggregated fields from the table: "e_draft_game_status" */ - e_draft_game_status_aggregate: e_draft_game_status_aggregate - /** fetch data from the table: "e_draft_game_status" using primary key columns */ - e_draft_game_status_by_pk: (e_draft_game_status | null) - /** fetch data from the table: "e_event_media_access" */ - e_event_media_access: e_event_media_access[] - /** fetch aggregated fields from the table: "e_event_media_access" */ - e_event_media_access_aggregate: e_event_media_access_aggregate - /** fetch data from the table: "e_event_media_access" using primary key columns */ - e_event_media_access_by_pk: (e_event_media_access | null) - /** fetch data from the table: "e_event_visibility" */ - e_event_visibility: e_event_visibility[] - /** fetch aggregated fields from the table: "e_event_visibility" */ - e_event_visibility_aggregate: e_event_visibility_aggregate - /** fetch data from the table: "e_event_visibility" using primary key columns */ - e_event_visibility_by_pk: (e_event_visibility | null) - /** fetch data from the table: "e_friend_status" */ - e_friend_status: e_friend_status[] - /** fetch aggregated fields from the table: "e_friend_status" */ - e_friend_status_aggregate: e_friend_status_aggregate - /** fetch data from the table: "e_friend_status" using primary key columns */ - e_friend_status_by_pk: (e_friend_status | null) - /** fetch data from the table: "e_game_cfg_types" */ - e_game_cfg_types: e_game_cfg_types[] - /** fetch aggregated fields from the table: "e_game_cfg_types" */ - 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" */ - e_game_server_node_statuses_aggregate: e_game_server_node_statuses_aggregate - /** fetch data from the table: "e_game_server_node_statuses" using primary key columns */ - e_game_server_node_statuses_by_pk: (e_game_server_node_statuses | null) - /** fetch data from the table: "e_league_movement_types" */ - e_league_movement_types: e_league_movement_types[] - /** fetch aggregated fields from the table: "e_league_movement_types" */ - e_league_movement_types_aggregate: e_league_movement_types_aggregate - /** fetch data from the table: "e_league_movement_types" using primary key columns */ - e_league_movement_types_by_pk: (e_league_movement_types | null) - /** fetch data from the table: "e_league_proposal_statuses" */ - e_league_proposal_statuses: e_league_proposal_statuses[] - /** fetch aggregated fields from the table: "e_league_proposal_statuses" */ - e_league_proposal_statuses_aggregate: e_league_proposal_statuses_aggregate - /** fetch data from the table: "e_league_proposal_statuses" using primary key columns */ - e_league_proposal_statuses_by_pk: (e_league_proposal_statuses | null) - /** fetch data from the table: "e_league_registration_statuses" */ - e_league_registration_statuses: e_league_registration_statuses[] - /** fetch aggregated fields from the table: "e_league_registration_statuses" */ - e_league_registration_statuses_aggregate: e_league_registration_statuses_aggregate - /** fetch data from the table: "e_league_registration_statuses" using primary key columns */ - e_league_registration_statuses_by_pk: (e_league_registration_statuses | null) - /** fetch data from the table: "e_league_season_statuses" */ - e_league_season_statuses: e_league_season_statuses[] - /** fetch aggregated fields from the table: "e_league_season_statuses" */ - e_league_season_statuses_aggregate: e_league_season_statuses_aggregate - /** fetch data from the table: "e_league_season_statuses" using primary key columns */ - e_league_season_statuses_by_pk: (e_league_season_statuses | null) - /** fetch data from the table: "e_lobby_access" */ - e_lobby_access: e_lobby_access[] - /** fetch aggregated fields from the table: "e_lobby_access" */ - e_lobby_access_aggregate: e_lobby_access_aggregate - /** fetch data from the table: "e_lobby_access" using primary key columns */ - e_lobby_access_by_pk: (e_lobby_access | null) - /** fetch data from the table: "e_lobby_player_status" */ - e_lobby_player_status: e_lobby_player_status[] - /** fetch aggregated fields from the table: "e_lobby_player_status" */ - e_lobby_player_status_aggregate: e_lobby_player_status_aggregate - /** fetch data from the table: "e_lobby_player_status" using primary key columns */ - e_lobby_player_status_by_pk: (e_lobby_player_status | null) - /** fetch data from the table: "e_map_pool_types" */ - e_map_pool_types: e_map_pool_types[] - /** fetch aggregated fields from the table: "e_map_pool_types" */ - e_map_pool_types_aggregate: e_map_pool_types_aggregate - /** fetch data from the table: "e_map_pool_types" using primary key columns */ - e_map_pool_types_by_pk: (e_map_pool_types | null) - /** fetch data from the table: "e_match_clip_visibility" */ - e_match_clip_visibility: e_match_clip_visibility[] - /** fetch aggregated fields from the table: "e_match_clip_visibility" */ - e_match_clip_visibility_aggregate: e_match_clip_visibility_aggregate - /** fetch data from the table: "e_match_clip_visibility" using primary key columns */ - e_match_clip_visibility_by_pk: (e_match_clip_visibility | null) - /** fetch data from the table: "e_match_map_status" */ - e_match_map_status: e_match_map_status[] - /** fetch aggregated fields from the table: "e_match_map_status" */ - e_match_map_status_aggregate: e_match_map_status_aggregate - /** fetch data from the table: "e_match_map_status" using primary key columns */ - e_match_map_status_by_pk: (e_match_map_status | null) - /** fetch data from the table: "e_match_mode" */ - e_match_mode: e_match_mode[] - /** fetch aggregated fields from the table: "e_match_mode" */ - e_match_mode_aggregate: e_match_mode_aggregate - /** fetch data from the table: "e_match_mode" using primary key columns */ - e_match_mode_by_pk: (e_match_mode | null) - /** fetch data from the table: "e_match_party_sources" */ - e_match_party_sources: e_match_party_sources[] - /** fetch aggregated fields from the table: "e_match_party_sources" */ - e_match_party_sources_aggregate: e_match_party_sources_aggregate - /** fetch data from the table: "e_match_party_sources" using primary key columns */ - e_match_party_sources_by_pk: (e_match_party_sources | null) - /** fetch data from the table: "e_match_status" */ - e_match_status: e_match_status[] - /** fetch aggregated fields from the table: "e_match_status" */ - e_match_status_aggregate: e_match_status_aggregate - /** fetch data from the table: "e_match_status" using primary key columns */ - e_match_status_by_pk: (e_match_status | null) - /** fetch data from the table: "e_match_types" */ - e_match_types: e_match_types[] - /** fetch aggregated fields from the table: "e_match_types" */ - e_match_types_aggregate: e_match_types_aggregate - /** fetch data from the table: "e_match_types" using primary key columns */ - e_match_types_by_pk: (e_match_types | null) - /** fetch data from the table: "e_notification_types" */ - e_notification_types: e_notification_types[] - /** fetch aggregated fields from the table: "e_notification_types" */ - e_notification_types_aggregate: e_notification_types_aggregate - /** fetch data from the table: "e_notification_types" using primary key columns */ - e_notification_types_by_pk: (e_notification_types | null) - /** fetch data from the table: "e_objective_types" */ - e_objective_types: e_objective_types[] - /** fetch aggregated fields from the table: "e_objective_types" */ - e_objective_types_aggregate: e_objective_types_aggregate - /** fetch data from the table: "e_objective_types" using primary key columns */ - e_objective_types_by_pk: (e_objective_types | null) - /** fetch data from the table: "e_player_roles" */ - e_player_roles: e_player_roles[] - /** fetch aggregated fields from the table: "e_player_roles" */ - e_player_roles_aggregate: e_player_roles_aggregate - /** fetch data from the table: "e_player_roles" using primary key columns */ - e_player_roles_by_pk: (e_player_roles | null) - /** fetch data from the table: "e_plugin_runtimes" */ - e_plugin_runtimes: e_plugin_runtimes[] - /** fetch aggregated fields from the table: "e_plugin_runtimes" */ - e_plugin_runtimes_aggregate: e_plugin_runtimes_aggregate - /** fetch data from the table: "e_plugin_runtimes" using primary key columns */ - e_plugin_runtimes_by_pk: (e_plugin_runtimes | null) - /** fetch data from the table: "e_ready_settings" */ - e_ready_settings: e_ready_settings[] - /** fetch aggregated fields from the table: "e_ready_settings" */ - e_ready_settings_aggregate: e_ready_settings_aggregate - /** fetch data from the table: "e_ready_settings" using primary key columns */ - e_ready_settings_by_pk: (e_ready_settings | null) - /** fetch data from the table: "e_sanction_scopes" */ - e_sanction_scopes: e_sanction_scopes[] - /** fetch aggregated fields from the table: "e_sanction_scopes" */ - e_sanction_scopes_aggregate: e_sanction_scopes_aggregate - /** fetch data from the table: "e_sanction_scopes" using primary key columns */ - e_sanction_scopes_by_pk: (e_sanction_scopes | null) - /** fetch data from the table: "e_sanction_sources" */ - e_sanction_sources: e_sanction_sources[] - /** fetch aggregated fields from the table: "e_sanction_sources" */ - e_sanction_sources_aggregate: e_sanction_sources_aggregate - /** fetch data from the table: "e_sanction_sources" using primary key columns */ - e_sanction_sources_by_pk: (e_sanction_sources | null) - /** fetch data from the table: "e_sanction_types" */ - e_sanction_types: e_sanction_types[] - /** fetch aggregated fields from the table: "e_sanction_types" */ - e_sanction_types_aggregate: e_sanction_types_aggregate - /** fetch data from the table: "e_sanction_types" using primary key columns */ - e_sanction_types_by_pk: (e_sanction_types | null) - /** fetch data from the table: "e_scrim_request_statuses" */ - e_scrim_request_statuses: e_scrim_request_statuses[] - /** fetch aggregated fields from the table: "e_scrim_request_statuses" */ - e_scrim_request_statuses_aggregate: e_scrim_request_statuses_aggregate - /** fetch data from the table: "e_scrim_request_statuses" using primary key columns */ - e_scrim_request_statuses_by_pk: (e_scrim_request_statuses | null) - /** fetch data from the table: "e_server_types" */ - e_server_types: e_server_types[] - /** fetch aggregated fields from the table: "e_server_types" */ - e_server_types_aggregate: e_server_types_aggregate - /** fetch data from the table: "e_server_types" using primary key columns */ - e_server_types_by_pk: (e_server_types | null) - /** fetch data from the table: "e_sides" */ - e_sides: e_sides[] - /** fetch aggregated fields from the table: "e_sides" */ - e_sides_aggregate: e_sides_aggregate - /** fetch data from the table: "e_sides" using primary key columns */ - e_sides_by_pk: (e_sides | null) - /** fetch data from the table: "e_system_alert_types" */ - e_system_alert_types: e_system_alert_types[] - /** fetch aggregated fields from the table: "e_system_alert_types" */ - e_system_alert_types_aggregate: e_system_alert_types_aggregate - /** fetch data from the table: "e_system_alert_types" using primary key columns */ - e_system_alert_types_by_pk: (e_system_alert_types | null) - /** fetch data from the table: "e_team_roles" */ - e_team_roles: e_team_roles[] - /** fetch aggregated fields from the table: "e_team_roles" */ - e_team_roles_aggregate: e_team_roles_aggregate - /** fetch data from the table: "e_team_roles" using primary key columns */ - e_team_roles_by_pk: (e_team_roles | null) - /** fetch data from the table: "e_team_roster_statuses" */ - e_team_roster_statuses: e_team_roster_statuses[] - /** fetch aggregated fields from the table: "e_team_roster_statuses" */ - e_team_roster_statuses_aggregate: e_team_roster_statuses_aggregate - /** fetch data from the table: "e_team_roster_statuses" using primary key columns */ - e_team_roster_statuses_by_pk: (e_team_roster_statuses | null) - /** fetch data from the table: "e_timeout_settings" */ - e_timeout_settings: e_timeout_settings[] - /** fetch aggregated fields from the table: "e_timeout_settings" */ - e_timeout_settings_aggregate: e_timeout_settings_aggregate - /** fetch data from the table: "e_timeout_settings" using primary key columns */ - e_timeout_settings_by_pk: (e_timeout_settings | null) - /** fetch data from the table: "e_tournament_categories" */ - e_tournament_categories: e_tournament_categories[] - /** fetch aggregated fields from the table: "e_tournament_categories" */ - e_tournament_categories_aggregate: e_tournament_categories_aggregate - /** fetch data from the table: "e_tournament_categories" using primary key columns */ - e_tournament_categories_by_pk: (e_tournament_categories | null) - /** fetch data from the table: "e_tournament_free_agent_statuses" */ - e_tournament_free_agent_statuses: e_tournament_free_agent_statuses[] - /** fetch aggregated fields from the table: "e_tournament_free_agent_statuses" */ - e_tournament_free_agent_statuses_aggregate: e_tournament_free_agent_statuses_aggregate - /** fetch data from the table: "e_tournament_free_agent_statuses" using primary key columns */ - e_tournament_free_agent_statuses_by_pk: (e_tournament_free_agent_statuses | null) - /** fetch data from the table: "e_tournament_registration_types" */ - e_tournament_registration_types: e_tournament_registration_types[] - /** fetch aggregated fields from the table: "e_tournament_registration_types" */ - e_tournament_registration_types_aggregate: e_tournament_registration_types_aggregate - /** fetch data from the table: "e_tournament_registration_types" using primary key columns */ - e_tournament_registration_types_by_pk: (e_tournament_registration_types | null) - /** fetch data from the table: "e_tournament_stage_types" */ - e_tournament_stage_types: e_tournament_stage_types[] - /** fetch aggregated fields from the table: "e_tournament_stage_types" */ - e_tournament_stage_types_aggregate: e_tournament_stage_types_aggregate - /** fetch data from the table: "e_tournament_stage_types" using primary key columns */ - e_tournament_stage_types_by_pk: (e_tournament_stage_types | null) - /** fetch data from the table: "e_tournament_status" */ - e_tournament_status: e_tournament_status[] - /** fetch aggregated fields from the table: "e_tournament_status" */ - e_tournament_status_aggregate: e_tournament_status_aggregate - /** fetch data from the table: "e_tournament_status" using primary key columns */ - e_tournament_status_by_pk: (e_tournament_status | null) - /** fetch data from the table: "e_utility_practice_access" */ - e_utility_practice_access: e_utility_practice_access[] - /** fetch aggregated fields from the table: "e_utility_practice_access" */ - e_utility_practice_access_aggregate: e_utility_practice_access_aggregate - /** fetch data from the table: "e_utility_practice_access" using primary key columns */ - e_utility_practice_access_by_pk: (e_utility_practice_access | null) - /** fetch data from the table: "e_utility_practice_statuses" */ - e_utility_practice_statuses: e_utility_practice_statuses[] - /** fetch aggregated fields from the table: "e_utility_practice_statuses" */ - e_utility_practice_statuses_aggregate: e_utility_practice_statuses_aggregate - /** fetch data from the table: "e_utility_practice_statuses" using primary key columns */ - e_utility_practice_statuses_by_pk: (e_utility_practice_statuses | null) - /** fetch data from the table: "e_utility_sources" */ - e_utility_sources: e_utility_sources[] - /** fetch aggregated fields from the table: "e_utility_sources" */ - e_utility_sources_aggregate: e_utility_sources_aggregate - /** fetch data from the table: "e_utility_sources" using primary key columns */ - e_utility_sources_by_pk: (e_utility_sources | null) - /** fetch data from the table: "e_utility_techniques" */ - e_utility_techniques: e_utility_techniques[] - /** fetch aggregated fields from the table: "e_utility_techniques" */ - e_utility_techniques_aggregate: e_utility_techniques_aggregate - /** fetch data from the table: "e_utility_techniques" using primary key columns */ - e_utility_techniques_by_pk: (e_utility_techniques | null) - /** fetch data from the table: "e_utility_throw_strengths" */ - e_utility_throw_strengths: e_utility_throw_strengths[] - /** fetch aggregated fields from the table: "e_utility_throw_strengths" */ - e_utility_throw_strengths_aggregate: e_utility_throw_strengths_aggregate - /** fetch data from the table: "e_utility_throw_strengths" using primary key columns */ - e_utility_throw_strengths_by_pk: (e_utility_throw_strengths | null) - /** fetch data from the table: "e_utility_types" */ - e_utility_types: e_utility_types[] - /** fetch aggregated fields from the table: "e_utility_types" */ - e_utility_types_aggregate: e_utility_types_aggregate - /** fetch data from the table: "e_utility_types" using primary key columns */ - e_utility_types_by_pk: (e_utility_types | null) - /** fetch data from the table: "e_utility_visibility" */ - e_utility_visibility: e_utility_visibility[] - /** fetch aggregated fields from the table: "e_utility_visibility" */ - e_utility_visibility_aggregate: e_utility_visibility_aggregate - /** fetch data from the table: "e_utility_visibility" using primary key columns */ - e_utility_visibility_by_pk: (e_utility_visibility | null) - /** fetch data from the table: "e_veto_pick_types" */ - e_veto_pick_types: e_veto_pick_types[] - /** fetch aggregated fields from the table: "e_veto_pick_types" */ - e_veto_pick_types_aggregate: e_veto_pick_types_aggregate - /** fetch data from the table: "e_veto_pick_types" using primary key columns */ - e_veto_pick_types_by_pk: (e_veto_pick_types | null) - /** fetch data from the table: "e_winning_reasons" */ - e_winning_reasons: e_winning_reasons[] - /** fetch aggregated fields from the table: "e_winning_reasons" */ - e_winning_reasons_aggregate: e_winning_reasons_aggregate - /** fetch data from the table: "e_winning_reasons" using primary key columns */ - e_winning_reasons_by_pk: (e_winning_reasons | null) - /** fetch data from the table: "event_match_links" */ - event_match_links: event_match_links[] - /** fetch aggregated fields from the table: "event_match_links" */ - event_match_links_aggregate: event_match_links_aggregate - /** fetch data from the table: "event_match_links" using primary key columns */ - event_match_links_by_pk: (event_match_links | null) - /** fetch data from the table: "event_media" */ - event_media: event_media[] - /** fetch aggregated fields from the table: "event_media" */ - event_media_aggregate: event_media_aggregate - /** fetch data from the table: "event_media" using primary key columns */ - event_media_by_pk: (event_media | null) - /** fetch data from the table: "event_media_players" */ - event_media_players: event_media_players[] - /** fetch aggregated fields from the table: "event_media_players" */ - event_media_players_aggregate: event_media_players_aggregate - /** fetch data from the table: "event_media_players" using primary key columns */ - event_media_players_by_pk: (event_media_players | null) - /** fetch data from the table: "event_organizers" */ - event_organizers: event_organizers[] - /** fetch aggregated fields from the table: "event_organizers" */ - event_organizers_aggregate: event_organizers_aggregate - /** fetch data from the table: "event_organizers" using primary key columns */ - event_organizers_by_pk: (event_organizers | null) - /** fetch data from the table: "event_players" */ - event_players: event_players[] - /** fetch aggregated fields from the table: "event_players" */ - event_players_aggregate: event_players_aggregate - /** fetch data from the table: "event_players" using primary key columns */ - event_players_by_pk: (event_players | null) - /** fetch data from the table: "event_teams" */ - event_teams: event_teams[] - /** fetch aggregated fields from the table: "event_teams" */ - event_teams_aggregate: event_teams_aggregate - /** fetch data from the table: "event_teams" using primary key columns */ - event_teams_by_pk: (event_teams | null) - /** fetch data from the table: "event_tournaments" */ - event_tournaments: event_tournaments[] - /** fetch aggregated fields from the table: "event_tournaments" */ - event_tournaments_aggregate: event_tournaments_aggregate - /** fetch data from the table: "event_tournaments" using primary key columns */ - event_tournaments_by_pk: (event_tournaments | null) - /** fetch data from the table: "events" */ - events: events[] - /** fetch aggregated fields from the table: "events" */ - events_aggregate: events_aggregate - /** fetch data from the table: "events" using primary key columns */ - events_by_pk: (events | null) - /** Find the saved smokes that close a given sightline */ - findUtilityLineupsBlocking: (UtilityBlockingOutput | null) - /** fetch data from the table: "friends" */ - friends: friends[] - /** fetch aggregated fields from the table: "friends" */ - 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 */ - game_server_nodes_aggregate: game_server_nodes_aggregate - /** fetch data from the table: "game_server_nodes" using primary key columns */ - game_server_nodes_by_pk: (game_server_nodes | null) - /** fetch data from the table: "game_versions" */ - game_versions: game_versions[] - /** fetch aggregated fields from the table: "game_versions" */ - game_versions_aggregate: game_versions_aggregate - /** fetch data from the table: "game_versions" using primary key columns */ - game_versions_by_pk: (game_versions | null) - /** fetch data from the table: "gamedata_signature_validations" */ - gamedata_signature_validations: gamedata_signature_validations[] - /** fetch aggregated fields from the table: "gamedata_signature_validations" */ - gamedata_signature_validations_aggregate: gamedata_signature_validations_aggregate - /** fetch data from the table: "gamedata_signature_validations" using primary key columns */ - gamedata_signature_validations_by_pk: (gamedata_signature_validations | null) - /** Get list of active connections */ - getActiveConnections: (ActiveConnection | null)[] - /** Get currently executing queries */ - getActiveQueries: (ActiveQuery | null)[] - /** Get connection statistics */ - getConnectionStats: ConnectionStats - /** Get current database locks */ - getCurrentLocks: (LockInfo | null)[] - /** Get database-wide statistics */ - getDatabaseStats: DatabaseStats - getDedicatedServerInfo: (DedicatedSeverInfo | null)[] - getDedicatedServerPlayers: ServerPlayer[] - /** Which highlight presets have content for a player on a map's demo */ - getHighlightPresetAvailability: (HighlightPresetAvailability | null) - /** Get index I/O statistics */ - getIndexIOStats: (IndexIOStat | null)[] - /** Get index usage statistics */ - getIndexStats: (IndexStat | null)[] - getNodeStats: NodeStats - /** Get detailed query analysis with EXPLAIN plan */ - getQueryDetail: (QueryDetail | null) - /** Get enhanced query performance statistics */ - getQueryStats: (QueryStat | null)[] - /** Get available database schemas */ - getSchemas: Scalars['String'] - getServiceStats: (PodStats | null)[] - /** Get database storage statistics and reclaimable space */ - getStorageStats: StorageStats - /** Get table I/O statistics */ - getTableIOStats: (TableIOStat | null)[] - /** Get table access statistics */ - getTableStats: (TableStat | null)[] - /** Get TimescaleDB statistics */ - getTimescaleStats: TimescaleStats - /** execute function "get_event_leaderboard" which returns "leaderboard_entries" */ - get_event_leaderboard: leaderboard_entries[] - /** execute function "get_event_leaderboard" and query aggregates on result of table type "leaderboard_entries" */ - get_event_leaderboard_aggregate: leaderboard_entries_aggregate - /** execute function "get_leaderboard" which returns "leaderboard_entries" */ - get_leaderboard: leaderboard_entries[] - /** execute function "get_leaderboard" and query aggregates on result of table type "leaderboard_entries" */ - get_leaderboard_aggregate: leaderboard_entries_aggregate - /** execute function "get_league_season_leaderboard" which returns "leaderboard_entries" */ - get_league_season_leaderboard: leaderboard_entries[] - /** execute function "get_league_season_leaderboard" and query aggregates on result of table type "leaderboard_entries" */ - get_league_season_leaderboard_aggregate: leaderboard_entries_aggregate - /** execute function "get_player_leaderboard_rank" which returns "player_leaderboard_rank" */ - get_player_leaderboard_rank: player_leaderboard_rank[] - /** execute function "get_player_leaderboard_rank" and query aggregates on result of table type "player_leaderboard_rank" */ - get_player_leaderboard_rank_aggregate: player_leaderboard_rank_aggregate - /** execute function "get_tournament_leaderboard" which returns "tournament_leaderboard_entries" */ - get_tournament_leaderboard: tournament_leaderboard_entries[] - /** execute function "get_tournament_leaderboard" and query aggregates on result of table type "tournament_leaderboard_entries" */ - get_tournament_leaderboard_aggregate: tournament_leaderboard_entries_aggregate - /** fetch data from the table: "leaderboard_entries" */ - leaderboard_entries: leaderboard_entries[] - /** fetch aggregated fields from the table: "leaderboard_entries" */ - leaderboard_entries_aggregate: leaderboard_entries_aggregate - /** fetch data from the table: "league_divisions" */ - league_divisions: league_divisions[] - /** fetch aggregated fields from the table: "league_divisions" */ - league_divisions_aggregate: league_divisions_aggregate - /** fetch data from the table: "league_divisions" using primary key columns */ - league_divisions_by_pk: (league_divisions | null) - /** fetch data from the table: "league_match_weeks" */ - league_match_weeks: league_match_weeks[] - /** fetch aggregated fields from the table: "league_match_weeks" */ - league_match_weeks_aggregate: league_match_weeks_aggregate - /** fetch data from the table: "league_match_weeks" using primary key columns */ - league_match_weeks_by_pk: (league_match_weeks | null) - /** fetch data from the table: "league_relegation_playoffs" */ - league_relegation_playoffs: league_relegation_playoffs[] - /** fetch aggregated fields from the table: "league_relegation_playoffs" */ - league_relegation_playoffs_aggregate: league_relegation_playoffs_aggregate - /** fetch data from the table: "league_relegation_playoffs" using primary key columns */ - league_relegation_playoffs_by_pk: (league_relegation_playoffs | null) - /** fetch data from the table: "league_scheduling_proposals" */ - league_scheduling_proposals: league_scheduling_proposals[] - /** fetch aggregated fields from the table: "league_scheduling_proposals" */ - league_scheduling_proposals_aggregate: league_scheduling_proposals_aggregate - /** fetch data from the table: "league_scheduling_proposals" using primary key columns */ - league_scheduling_proposals_by_pk: (league_scheduling_proposals | null) - /** fetch data from the table: "league_season_divisions" */ - league_season_divisions: league_season_divisions[] - /** fetch aggregated fields from the table: "league_season_divisions" */ - league_season_divisions_aggregate: league_season_divisions_aggregate - /** fetch data from the table: "league_season_divisions" using primary key columns */ - league_season_divisions_by_pk: (league_season_divisions | null) - /** fetch data from the table: "league_seasons" */ - league_seasons: league_seasons[] - /** fetch aggregated fields from the table: "league_seasons" */ - league_seasons_aggregate: league_seasons_aggregate - /** fetch data from the table: "league_seasons" using primary key columns */ - league_seasons_by_pk: (league_seasons | null) - /** fetch data from the table: "league_team_movements" */ - league_team_movements: league_team_movements[] - /** fetch aggregated fields from the table: "league_team_movements" */ - league_team_movements_aggregate: league_team_movements_aggregate - /** fetch data from the table: "league_team_movements" using primary key columns */ - league_team_movements_by_pk: (league_team_movements | null) - /** fetch data from the table: "league_team_rosters" */ - league_team_rosters: league_team_rosters[] - /** fetch aggregated fields from the table: "league_team_rosters" */ - league_team_rosters_aggregate: league_team_rosters_aggregate - /** fetch data from the table: "league_team_rosters" using primary key columns */ - league_team_rosters_by_pk: (league_team_rosters | null) - /** fetch data from the table: "league_team_seasons" */ - league_team_seasons: league_team_seasons[] - /** fetch aggregated fields from the table: "league_team_seasons" */ - league_team_seasons_aggregate: league_team_seasons_aggregate - /** fetch data from the table: "league_team_seasons" using primary key columns */ - league_team_seasons_by_pk: (league_team_seasons | null) - /** fetch data from the table: "league_teams" */ - league_teams: league_teams[] - /** fetch aggregated fields from the table: "league_teams" */ - league_teams_aggregate: league_teams_aggregate - /** fetch data from the table: "league_teams" using primary key columns */ - league_teams_by_pk: (league_teams | null) - /** List files in game server directory */ - listServerFiles: FileListResponse - /** fetch data from the table: "lobbies" */ - lobbies: lobbies[] - /** fetch aggregated fields from the table: "lobbies" */ - lobbies_aggregate: lobbies_aggregate - /** fetch data from the table: "lobbies" using primary key columns */ - lobbies_by_pk: (lobbies | null) - /** An array relationship */ - lobby_players: lobby_players[] - /** An aggregate relationship */ - lobby_players_aggregate: lobby_players_aggregate - /** fetch data from the table: "lobby_players" using primary key columns */ - lobby_players_by_pk: (lobby_players | null) - /** fetch data from the table: "map_callouts" */ - map_callouts: map_callouts[] - /** fetch aggregated fields from the table: "map_callouts" */ - map_callouts_aggregate: map_callouts_aggregate - /** fetch data from the table: "map_callouts" using primary key columns */ - map_callouts_by_pk: (map_callouts | null) - /** fetch data from the table: "map_pools" */ - map_pools: map_pools[] - /** fetch aggregated fields from the table: "map_pools" */ - map_pools_aggregate: map_pools_aggregate - /** fetch data from the table: "map_pools" using primary key columns */ - map_pools_by_pk: (map_pools | null) - /** An array relationship */ - maps: maps[] - /** An aggregate relationship */ - maps_aggregate: maps_aggregate - /** fetch data from the table: "maps" using primary key columns */ - maps_by_pk: (maps | null) - /** An array relationship */ - match_clips: match_clips[] - /** An aggregate relationship */ - match_clips_aggregate: match_clips_aggregate - /** fetch data from the table: "match_clips" using primary key columns */ - match_clips_by_pk: (match_clips | null) - /** fetch data from the table: "match_demo_sessions" */ - match_demo_sessions: match_demo_sessions[] - /** fetch aggregated fields from the table: "match_demo_sessions" */ - match_demo_sessions_aggregate: match_demo_sessions_aggregate - /** fetch data from the table: "match_demo_sessions" using primary key columns */ - match_demo_sessions_by_pk: (match_demo_sessions | null) - /** An array relationship */ - match_lineup_players: match_lineup_players[] - /** An aggregate relationship */ - match_lineup_players_aggregate: match_lineup_players_aggregate - /** fetch data from the table: "match_lineup_players" using primary key columns */ - match_lineup_players_by_pk: (match_lineup_players | null) - /** An array relationship */ - match_lineups: match_lineups[] - /** An aggregate relationship */ - match_lineups_aggregate: match_lineups_aggregate - /** fetch data from the table: "match_lineups" using primary key columns */ - match_lineups_by_pk: (match_lineups | null) - /** fetch data from the table: "match_map_demos" */ - match_map_demos: match_map_demos[] - /** fetch aggregated fields from the table: "match_map_demos" */ - match_map_demos_aggregate: match_map_demos_aggregate - /** fetch data from the table: "match_map_demos" using primary key columns */ - match_map_demos_by_pk: (match_map_demos | null) - /** fetch data from the table: "match_map_rounds" */ - match_map_rounds: match_map_rounds[] - /** fetch aggregated fields from the table: "match_map_rounds" */ - match_map_rounds_aggregate: match_map_rounds_aggregate - /** fetch data from the table: "match_map_rounds" using primary key columns */ - match_map_rounds_by_pk: (match_map_rounds | null) - /** fetch data from the table: "match_map_veto_picks" */ - match_map_veto_picks: match_map_veto_picks[] - /** fetch aggregated fields from the table: "match_map_veto_picks" */ - match_map_veto_picks_aggregate: match_map_veto_picks_aggregate - /** fetch data from the table: "match_map_veto_picks" using primary key columns */ - match_map_veto_picks_by_pk: (match_map_veto_picks | null) - /** An array relationship */ - match_maps: match_maps[] - /** An aggregate relationship */ - match_maps_aggregate: match_maps_aggregate - /** fetch data from the table: "match_maps" using primary key columns */ - match_maps_by_pk: (match_maps | null) - /** An array relationship */ - match_options: 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) - /** fetch data from the table: "match_region_veto_picks" */ - match_region_veto_picks: match_region_veto_picks[] - /** fetch aggregated fields from the table: "match_region_veto_picks" */ - match_region_veto_picks_aggregate: match_region_veto_picks_aggregate - /** fetch data from the table: "match_region_veto_picks" using primary key columns */ - match_region_veto_picks_by_pk: (match_region_veto_picks | null) - /** fetch data from the table: "match_streams" */ - match_streams: match_streams[] - /** fetch aggregated fields from the table: "match_streams" */ - match_streams_aggregate: match_streams_aggregate - /** fetch data from the table: "match_streams" using primary key columns */ - match_streams_by_pk: (match_streams | null) - /** fetch data from the table: "match_type_cfgs" */ - match_type_cfgs: match_type_cfgs[] - /** fetch aggregated fields from the table: "match_type_cfgs" */ - match_type_cfgs_aggregate: match_type_cfgs_aggregate - /** fetch data from the table: "match_type_cfgs" using primary key columns */ - match_type_cfgs_by_pk: (match_type_cfgs | null) - /** An array relationship */ - matches: matches[] - /** An aggregate relationship */ - matches_aggregate: matches_aggregate - /** fetch data from the table: "matches" using primary key columns */ - matches_by_pk: (matches | null) - /** Gets Current User */ - me: MeResponse - /** fetch data from the table: "migration_hashes.hashes" */ - migration_hashes_hashes: migration_hashes_hashes[] - /** fetch aggregated fields from the table: "migration_hashes.hashes" */ - migration_hashes_hashes_aggregate: migration_hashes_hashes_aggregate - /** fetch data from the table: "migration_hashes.hashes" using primary key columns */ - migration_hashes_hashes_by_pk: (migration_hashes_hashes | null) - /** fetch data from the table: "v_my_friends" */ - my_friends: my_friends[] - /** fetch aggregated fields from the table: "v_my_friends" */ - my_friends_aggregate: my_friends_aggregate - /** Fetch a single news post including draft content for editing. Caller role is verified against public.post_news_role. */ - newsPostAdmin: (NewsPost | null) - /** List all news posts including drafts for the management area. Caller role is verified against public.post_news_role. */ - newsPostsAdmin: (NewsPost[] | null) - /** fetch data from the table: "news_articles" */ - news_articles: news_articles[] - /** fetch aggregated fields from the table: "news_articles" */ - news_articles_aggregate: news_articles_aggregate - /** fetch data from the table: "news_articles" using primary key columns */ - news_articles_by_pk: (news_articles | null) - /** fetch data from the table: "notification_preferences" */ - notification_preferences: notification_preferences[] - /** fetch aggregated fields from the table: "notification_preferences" */ - notification_preferences_aggregate: notification_preferences_aggregate - /** fetch data from the table: "notification_preferences" using primary key columns */ - notification_preferences_by_pk: (notification_preferences | null) - /** An array relationship */ - notifications: notifications[] - /** An aggregate relationship */ - notifications_aggregate: notifications_aggregate - /** fetch data from the table: "notifications" using primary key columns */ - notifications_by_pk: (notifications | null) - /** fetch data from the table: "pending_match_import_players" */ - pending_match_import_players: pending_match_import_players[] - /** fetch aggregated fields from the table: "pending_match_import_players" */ - pending_match_import_players_aggregate: pending_match_import_players_aggregate - /** fetch data from the table: "pending_match_import_players" using primary key columns */ - pending_match_import_players_by_pk: (pending_match_import_players | null) - /** fetch data from the table: "pending_match_imports" */ - pending_match_imports: pending_match_imports[] - /** fetch aggregated fields from the table: "pending_match_imports" */ - pending_match_imports_aggregate: pending_match_imports_aggregate - /** fetch data from the table: "pending_match_imports" using primary key columns */ - pending_match_imports_by_pk: (pending_match_imports | null) - /** fetch data from the table: "player_aim_stats_demo" */ - player_aim_stats_demo: player_aim_stats_demo[] - /** fetch aggregated fields from the table: "player_aim_stats_demo" */ - player_aim_stats_demo_aggregate: player_aim_stats_demo_aggregate - /** fetch data from the table: "player_aim_stats_demo" using primary key columns */ - player_aim_stats_demo_by_pk: (player_aim_stats_demo | null) - /** fetch data from the table: "player_aim_weapon_stats" */ - player_aim_weapon_stats: player_aim_weapon_stats[] - /** fetch aggregated fields from the table: "player_aim_weapon_stats" */ - player_aim_weapon_stats_aggregate: player_aim_weapon_stats_aggregate - /** fetch data from the table: "player_aim_weapon_stats" using primary key columns */ - player_aim_weapon_stats_by_pk: (player_aim_weapon_stats | null) - /** An array relationship */ - player_assists: player_assists[] - /** An aggregate relationship */ - player_assists_aggregate: player_assists_aggregate - /** fetch data from the table: "player_assists" using primary key columns */ - player_assists_by_pk: (player_assists | null) - /** fetch data from the table: "player_career_stats_v" */ - player_career_stats_v: player_career_stats_v[] - /** fetch aggregated fields from the table: "player_career_stats_v" */ - player_career_stats_v_aggregate: player_career_stats_v_aggregate - /** An array relationship */ - player_damages: player_damages[] - /** An aggregate relationship */ - player_damages_aggregate: player_damages_aggregate - /** fetch data from the table: "player_damages" using primary key columns */ - player_damages_by_pk: (player_damages | null) - /** fetch data from the table: "player_elo" */ - player_elo: player_elo[] - /** fetch aggregated fields from the table: "player_elo" */ - player_elo_aggregate: player_elo_aggregate - /** fetch data from the table: "player_elo" using primary key columns */ - player_elo_by_pk: (player_elo | null) - /** fetch data from the table: "player_faceit_rank_history" */ - player_faceit_rank_history: player_faceit_rank_history[] - /** fetch aggregated fields from the table: "player_faceit_rank_history" */ - player_faceit_rank_history_aggregate: player_faceit_rank_history_aggregate - /** fetch data from the table: "player_faceit_rank_history" using primary key columns */ - player_faceit_rank_history_by_pk: (player_faceit_rank_history | null) - /** An array relationship */ - player_flashes: player_flashes[] - /** An aggregate relationship */ - player_flashes_aggregate: player_flashes_aggregate - /** fetch data from the table: "player_flashes" using primary key columns */ - player_flashes_by_pk: (player_flashes | null) - /** An array relationship */ - player_kills: player_kills[] - /** An aggregate relationship */ - player_kills_aggregate: player_kills_aggregate - /** fetch data from the table: "player_kills" using primary key columns */ - player_kills_by_pk: (player_kills | null) - /** fetch data from the table: "player_kills_by_weapon" */ - player_kills_by_weapon: player_kills_by_weapon[] - /** fetch aggregated fields from the table: "player_kills_by_weapon" */ - player_kills_by_weapon_aggregate: player_kills_by_weapon_aggregate - /** fetch data from the table: "player_kills_by_weapon" using primary key columns */ - player_kills_by_weapon_by_pk: (player_kills_by_weapon | null) - /** fetch data from the table: "player_leaderboard_rank" */ - player_leaderboard_rank: player_leaderboard_rank[] - /** fetch aggregated fields from the table: "player_leaderboard_rank" */ - player_leaderboard_rank_aggregate: player_leaderboard_rank_aggregate - /** fetch data from the table: "player_match_map_stats" */ - player_match_map_stats: player_match_map_stats[] - /** fetch aggregated fields from the table: "player_match_map_stats" */ - player_match_map_stats_aggregate: player_match_map_stats_aggregate - /** fetch data from the table: "player_match_map_stats" using primary key columns */ - player_match_map_stats_by_pk: (player_match_map_stats | null) - /** fetch data from the table: "player_match_performance_v" */ - player_match_performance_v: player_match_performance_v[] - /** fetch aggregated fields from the table: "player_match_performance_v" */ - player_match_performance_v_aggregate: player_match_performance_v_aggregate - /** fetch data from the table: "player_match_stats_v" */ - player_match_stats_v: player_match_stats_v[] - /** fetch aggregated fields from the table: "player_match_stats_v" */ - player_match_stats_v_aggregate: player_match_stats_v_aggregate - /** An array relationship */ - player_objectives: player_objectives[] - /** An aggregate relationship */ - player_objectives_aggregate: player_objectives_aggregate - /** fetch data from the table: "player_objectives" using primary key columns */ - player_objectives_by_pk: (player_objectives | null) - /** fetch data from the table: "player_performance_v" */ - player_performance_v: player_performance_v[] - /** fetch aggregated fields from the table: "player_performance_v" */ - player_performance_v_aggregate: player_performance_v_aggregate - /** fetch data from the table: "player_premier_rank_history" */ - player_premier_rank_history: player_premier_rank_history[] - /** fetch aggregated fields from the table: "player_premier_rank_history" */ - player_premier_rank_history_aggregate: player_premier_rank_history_aggregate - /** fetch data from the table: "player_premier_rank_history" using primary key columns */ - player_premier_rank_history_by_pk: (player_premier_rank_history | null) - /** fetch data from the table: "player_sanctions" */ - player_sanctions: player_sanctions[] - /** fetch aggregated fields from the table: "player_sanctions" */ - player_sanctions_aggregate: player_sanctions_aggregate - /** fetch data from the table: "player_sanctions" using primary key columns */ - player_sanctions_by_pk: (player_sanctions | null) - /** An array relationship */ - player_season_stats: player_season_stats[] - /** An aggregate relationship */ - player_season_stats_aggregate: player_season_stats_aggregate - /** fetch data from the table: "player_season_stats" using primary key columns */ - player_season_stats_by_pk: (player_season_stats | null) - /** fetch data from the table: "player_stats" */ - player_stats: player_stats[] - /** fetch aggregated fields from the table: "player_stats" */ - player_stats_aggregate: player_stats_aggregate - /** fetch data from the table: "player_stats" using primary key columns */ - player_stats_by_pk: (player_stats | null) - /** fetch data from the table: "player_steam_bot_friend" */ - player_steam_bot_friend: player_steam_bot_friend[] - /** fetch aggregated fields from the table: "player_steam_bot_friend" */ - player_steam_bot_friend_aggregate: player_steam_bot_friend_aggregate - /** fetch data from the table: "player_steam_bot_friend" using primary key columns */ - player_steam_bot_friend_by_pk: (player_steam_bot_friend | null) - /** fetch data from the table: "player_steam_match_auth" */ - player_steam_match_auth: player_steam_match_auth[] - /** fetch aggregated fields from the table: "player_steam_match_auth" */ - player_steam_match_auth_aggregate: player_steam_match_auth_aggregate - /** fetch data from the table: "player_steam_match_auth" using primary key columns */ - player_steam_match_auth_by_pk: (player_steam_match_auth | null) - /** fetch data from the table: "player_unused_utility" */ - player_unused_utility: player_unused_utility[] - /** fetch aggregated fields from the table: "player_unused_utility" */ - player_unused_utility_aggregate: player_unused_utility_aggregate - /** fetch data from the table: "player_unused_utility" using primary key columns */ - player_unused_utility_by_pk: (player_unused_utility | null) - /** An array relationship */ - player_utility: player_utility[] - /** An aggregate relationship */ - player_utility_aggregate: player_utility_aggregate - /** fetch data from the table: "player_utility" using primary key columns */ - player_utility_by_pk: (player_utility | null) - /** fetch data from the table: "player_weapon_stats_v" */ - player_weapon_stats_v: player_weapon_stats_v[] - /** fetch aggregated fields from the table: "player_weapon_stats_v" */ - player_weapon_stats_v_aggregate: player_weapon_stats_v_aggregate - /** fetch data from the table: "players" */ - players: players[] - /** fetch aggregated fields from the table: "players" */ - players_aggregate: players_aggregate - /** fetch data from the table: "players" using primary key columns */ - players_by_pk: (players | null) - /** fetch data from the table: "plugin_versions" */ - plugin_versions: plugin_versions[] - /** fetch aggregated fields from the table: "plugin_versions" */ - plugin_versions_aggregate: plugin_versions_aggregate - /** fetch data from the table: "plugin_versions" using primary key columns */ - plugin_versions_by_pk: (plugin_versions | null) - /** fetch data from the table: "push_subscriptions" */ - push_subscriptions: push_subscriptions[] - /** fetch aggregated fields from the table: "push_subscriptions" */ - push_subscriptions_aggregate: push_subscriptions_aggregate - /** fetch data from the table: "push_subscriptions" using primary key columns */ - push_subscriptions_by_pk: (push_subscriptions | null) - /** Read file content from game server */ - readServerFile: FileContentResponse - /** fetch data from the table: "v_role_permissions" */ - role_permissions: role_permissions[] - /** fetch aggregated fields from the table: "v_role_permissions" */ - role_permissions_aggregate: role_permissions_aggregate - /** fetch data from the table: "seasons" */ - seasons: seasons[] - /** fetch aggregated fields from the table: "seasons" */ - seasons_aggregate: seasons_aggregate - /** fetch data from the table: "seasons" using primary key columns */ - seasons_by_pk: (seasons | null) - /** fetch data from the table: "server_regions" */ - server_regions: server_regions[] - /** fetch aggregated fields from the table: "server_regions" */ - server_regions_aggregate: server_regions_aggregate - /** fetch data from the table: "server_regions" using primary key columns */ - server_regions_by_pk: (server_regions | null) - /** An array relationship */ - servers: servers[] - /** An aggregate relationship */ - servers_aggregate: servers_aggregate - /** fetch data from the table: "servers" using primary key columns */ - servers_by_pk: (servers | null) - /** fetch data from the table: "settings" */ - settings: settings[] - /** fetch aggregated fields from the table: "settings" */ - settings_aggregate: settings_aggregate - /** fetch data from the table: "settings" using primary key columns */ - settings_by_pk: (settings | null) - /** Steam presence bot admin dashboard status */ - steamPresenceAdminStatus: SteamPresenceAdminStatusOutput - /** fetch data from the table: "steam_account_claims" */ - steam_account_claims: steam_account_claims[] - /** fetch aggregated fields from the table: "steam_account_claims" */ - steam_account_claims_aggregate: steam_account_claims_aggregate - /** fetch data from the table: "steam_account_claims" using primary key columns */ - steam_account_claims_by_pk: (steam_account_claims | null) - /** fetch data from the table: "steam_accounts" */ - steam_accounts: steam_accounts[] - /** fetch aggregated fields from the table: "steam_accounts" */ - steam_accounts_aggregate: steam_accounts_aggregate - /** fetch data from the table: "steam_accounts" using primary key columns */ - steam_accounts_by_pk: (steam_accounts | null) - /** fetch data from the table: "system_alerts" */ - system_alerts: system_alerts[] - /** fetch aggregated fields from the table: "system_alerts" */ - system_alerts_aggregate: system_alerts_aggregate - /** fetch data from the table: "system_alerts" using primary key columns */ - system_alerts_by_pk: (system_alerts | null) - /** teamCalendarUrl */ - teamCalendarUrl: (TeamCalendarOutput | null) - /** An array relationship */ - team_invites: team_invites[] - /** An aggregate relationship */ - team_invites_aggregate: team_invites_aggregate - /** fetch data from the table: "team_invites" using primary key columns */ - team_invites_by_pk: (team_invites | null) - /** fetch data from the table: "team_roster" */ - team_roster: team_roster[] - /** fetch aggregated fields from the table: "team_roster" */ - team_roster_aggregate: team_roster_aggregate - /** fetch data from the table: "team_roster" using primary key columns */ - team_roster_by_pk: (team_roster | null) - /** fetch data from the table: "team_scrim_alerts" */ - team_scrim_alerts: team_scrim_alerts[] - /** fetch aggregated fields from the table: "team_scrim_alerts" */ - team_scrim_alerts_aggregate: team_scrim_alerts_aggregate - /** fetch data from the table: "team_scrim_alerts" using primary key columns */ - team_scrim_alerts_by_pk: (team_scrim_alerts | null) - /** fetch data from the table: "team_scrim_availability" */ - team_scrim_availability: team_scrim_availability[] - /** fetch aggregated fields from the table: "team_scrim_availability" */ - team_scrim_availability_aggregate: team_scrim_availability_aggregate - /** fetch data from the table: "team_scrim_availability" using primary key columns */ - team_scrim_availability_by_pk: (team_scrim_availability | null) - /** fetch data from the table: "team_scrim_request_proposals" */ - team_scrim_request_proposals: team_scrim_request_proposals[] - /** fetch aggregated fields from the table: "team_scrim_request_proposals" */ - team_scrim_request_proposals_aggregate: team_scrim_request_proposals_aggregate - /** fetch data from the table: "team_scrim_request_proposals" using primary key columns */ - team_scrim_request_proposals_by_pk: (team_scrim_request_proposals | null) - /** fetch data from the table: "team_scrim_requests" */ - team_scrim_requests: team_scrim_requests[] - /** fetch aggregated fields from the table: "team_scrim_requests" */ - team_scrim_requests_aggregate: team_scrim_requests_aggregate - /** fetch data from the table: "team_scrim_requests" using primary key columns */ - team_scrim_requests_by_pk: (team_scrim_requests | null) - /** fetch data from the table: "team_scrim_settings" */ - team_scrim_settings: team_scrim_settings[] - /** fetch aggregated fields from the table: "team_scrim_settings" */ - team_scrim_settings_aggregate: team_scrim_settings_aggregate - /** fetch data from the table: "team_scrim_settings" using primary key columns */ - team_scrim_settings_by_pk: (team_scrim_settings | null) - /** fetch data from the table: "team_suggestions" */ - team_suggestions: team_suggestions[] - /** fetch aggregated fields from the table: "team_suggestions" */ - team_suggestions_aggregate: team_suggestions_aggregate - /** fetch data from the table: "team_suggestions" using primary key columns */ - team_suggestions_by_pk: (team_suggestions | null) - /** fetch data from the table: "teams" */ - teams: teams[] - /** fetch aggregated fields from the table: "teams" */ - teams_aggregate: teams_aggregate - /** fetch data from the table: "teams" using primary key columns */ - teams_by_pk: (teams | null) - telemetryStats: TelemetryStats - /** fetch data from the table: "tournament_awards" */ - tournament_awards: tournament_awards[] - /** fetch aggregated fields from the table: "tournament_awards" */ - tournament_awards_aggregate: tournament_awards_aggregate - /** fetch data from the table: "tournament_awards" using primary key columns */ - tournament_awards_by_pk: (tournament_awards | null) - /** An array relationship */ - tournament_brackets: tournament_brackets[] - /** An aggregate relationship */ - tournament_brackets_aggregate: tournament_brackets_aggregate - /** fetch data from the table: "tournament_brackets" using primary key columns */ - tournament_brackets_by_pk: (tournament_brackets | null) - /** An array relationship */ - tournament_categories: tournament_categories[] - /** An aggregate relationship */ - tournament_categories_aggregate: tournament_categories_aggregate - /** fetch data from the table: "tournament_categories" using primary key columns */ - tournament_categories_by_pk: (tournament_categories | null) - /** An array relationship */ - tournament_free_agents: tournament_free_agents[] - /** An aggregate relationship */ - tournament_free_agents_aggregate: tournament_free_agents_aggregate - /** fetch data from the table: "tournament_free_agents" using primary key columns */ - tournament_free_agents_by_pk: (tournament_free_agents | null) - /** fetch data from the table: "tournament_invite_code_uses" */ - tournament_invite_code_uses: tournament_invite_code_uses[] - /** fetch aggregated fields from the table: "tournament_invite_code_uses" */ - tournament_invite_code_uses_aggregate: tournament_invite_code_uses_aggregate - /** fetch data from the table: "tournament_invite_code_uses" using primary key columns */ - tournament_invite_code_uses_by_pk: (tournament_invite_code_uses | null) - /** fetch data from the table: "tournament_invite_codes" */ - tournament_invite_codes: tournament_invite_codes[] - /** fetch aggregated fields from the table: "tournament_invite_codes" */ - tournament_invite_codes_aggregate: tournament_invite_codes_aggregate - /** fetch data from the table: "tournament_invite_codes" using primary key columns */ - tournament_invite_codes_by_pk: (tournament_invite_codes | null) - /** fetch data from the table: "tournament_invites" */ - tournament_invites: tournament_invites[] - /** fetch aggregated fields from the table: "tournament_invites" */ - tournament_invites_aggregate: tournament_invites_aggregate - /** fetch data from the table: "tournament_invites" using primary key columns */ - tournament_invites_by_pk: (tournament_invites | null) - /** fetch data from the table: "tournament_leaderboard_entries" */ - tournament_leaderboard_entries: tournament_leaderboard_entries[] - /** fetch aggregated fields from the table: "tournament_leaderboard_entries" */ - tournament_leaderboard_entries_aggregate: tournament_leaderboard_entries_aggregate - /** fetch data from the table: "tournament_no_shows" */ - tournament_no_shows: tournament_no_shows[] - /** fetch aggregated fields from the table: "tournament_no_shows" */ - tournament_no_shows_aggregate: tournament_no_shows_aggregate - /** fetch data from the table: "tournament_no_shows" using primary key columns */ - tournament_no_shows_by_pk: (tournament_no_shows | null) - /** fetch data from the table: "tournament_organizer_teams" */ - tournament_organizer_teams: tournament_organizer_teams[] - /** fetch aggregated fields from the table: "tournament_organizer_teams" */ - tournament_organizer_teams_aggregate: tournament_organizer_teams_aggregate - /** fetch data from the table: "tournament_organizer_teams" using primary key columns */ - tournament_organizer_teams_by_pk: (tournament_organizer_teams | null) - /** An array relationship */ - tournament_organizers: tournament_organizers[] - /** An aggregate relationship */ - tournament_organizers_aggregate: tournament_organizers_aggregate - /** fetch data from the table: "tournament_organizers" using primary key columns */ - tournament_organizers_by_pk: (tournament_organizers | null) - /** fetch data from the table: "tournament_prizes" */ - tournament_prizes: tournament_prizes[] - /** fetch aggregated fields from the table: "tournament_prizes" */ - tournament_prizes_aggregate: tournament_prizes_aggregate - /** fetch data from the table: "tournament_prizes" using primary key columns */ - tournament_prizes_by_pk: (tournament_prizes | null) - /** fetch data from the table: "tournament_registration_unlocks" */ - tournament_registration_unlocks: tournament_registration_unlocks[] - /** fetch aggregated fields from the table: "tournament_registration_unlocks" */ - tournament_registration_unlocks_aggregate: tournament_registration_unlocks_aggregate - /** fetch data from the table: "tournament_stage_windows" */ - tournament_stage_windows: tournament_stage_windows[] - /** fetch aggregated fields from the table: "tournament_stage_windows" */ - tournament_stage_windows_aggregate: tournament_stage_windows_aggregate - /** fetch data from the table: "tournament_stage_windows" using primary key columns */ - tournament_stage_windows_by_pk: (tournament_stage_windows | null) - /** An array relationship */ - tournament_stages: tournament_stages[] - /** An aggregate relationship */ - tournament_stages_aggregate: tournament_stages_aggregate - /** fetch data from the table: "tournament_stages" using primary key columns */ - tournament_stages_by_pk: (tournament_stages | null) - /** fetch data from the table: "tournament_team_invites" */ - tournament_team_invites: tournament_team_invites[] - /** fetch aggregated fields from the table: "tournament_team_invites" */ - tournament_team_invites_aggregate: tournament_team_invites_aggregate - /** fetch data from the table: "tournament_team_invites" using primary key columns */ - tournament_team_invites_by_pk: (tournament_team_invites | null) - /** fetch data from the table: "tournament_team_roster" */ - tournament_team_roster: tournament_team_roster[] - /** fetch aggregated fields from the table: "tournament_team_roster" */ - tournament_team_roster_aggregate: tournament_team_roster_aggregate - /** fetch data from the table: "tournament_team_roster" using primary key columns */ - tournament_team_roster_by_pk: (tournament_team_roster | null) - /** An array relationship */ - tournament_teams: tournament_teams[] - /** An aggregate relationship */ - tournament_teams_aggregate: tournament_teams_aggregate - /** fetch data from the table: "tournament_teams" using primary key columns */ - tournament_teams_by_pk: (tournament_teams | null) - /** An array relationship */ - tournaments: tournaments[] - /** An aggregate relationship */ - tournaments_aggregate: tournaments_aggregate - /** fetch data from the table: "tournaments" using primary key columns */ - tournaments_by_pk: (tournaments | null) - /** Which way everybody misses one lineup, from their practice throws */ - utilityLineupMissPattern: (UtilityMissPatternOutput | null) - /** Report a player's mined utility throws for a match */ - utilityMatchUtilityReport: (UtilityUtilityReportOutput | null) - /** Rank what to practise next on a map from the mined meta */ - utilityPracticePlan: (UtilityPracticePlanOutput | null) - /** Dedicated practice servers free to book right now */ - utilityPracticeServers: (UtilityPracticeServersOutput | null) - utilityPracticeWhereAmI: (UtilityPracticeWhereOutput | null) - /** Read the practice server solver's calibration gate */ - utilitySolverCalibration: (UtilityCalibrationOutput | null) - /** Aggregate a team's mined utility throws against its saved lineups */ - utilityTeamUtilityReport: (UtilityTeamUtilityOutput | null) - /** fetch data from the table: "utility_collection_items" */ - utility_collection_items: utility_collection_items[] - /** fetch aggregated fields from the table: "utility_collection_items" */ - utility_collection_items_aggregate: utility_collection_items_aggregate - /** fetch data from the table: "utility_collection_items" using primary key columns */ - utility_collection_items_by_pk: (utility_collection_items | null) - /** fetch data from the table: "utility_collections" */ - utility_collections: utility_collections[] - /** fetch aggregated fields from the table: "utility_collections" */ - utility_collections_aggregate: utility_collections_aggregate - /** fetch data from the table: "utility_collections" using primary key columns */ - utility_collections_by_pk: (utility_collections | null) - /** fetch data from the table: "utility_demo_mines" */ - utility_demo_mines: utility_demo_mines[] - /** fetch aggregated fields from the table: "utility_demo_mines" */ - utility_demo_mines_aggregate: utility_demo_mines_aggregate - /** fetch data from the table: "utility_demo_mines" using primary key columns */ - utility_demo_mines_by_pk: (utility_demo_mines | null) - /** fetch data from the table: "utility_demo_throws" */ - utility_demo_throws: utility_demo_throws[] - /** fetch aggregated fields from the table: "utility_demo_throws" */ - utility_demo_throws_aggregate: utility_demo_throws_aggregate - /** fetch data from the table: "utility_demo_throws" using primary key columns */ - utility_demo_throws_by_pk: (utility_demo_throws | null) - /** fetch data from the table: "utility_drift_results" */ - utility_drift_results: utility_drift_results[] - /** fetch aggregated fields from the table: "utility_drift_results" */ - utility_drift_results_aggregate: utility_drift_results_aggregate - /** fetch data from the table: "utility_drift_results" using primary key columns */ - utility_drift_results_by_pk: (utility_drift_results | null) - /** fetch data from the table: "utility_drift_scans" */ - utility_drift_scans: utility_drift_scans[] - /** fetch aggregated fields from the table: "utility_drift_scans" */ - utility_drift_scans_aggregate: utility_drift_scans_aggregate - /** fetch data from the table: "utility_drift_scans" using primary key columns */ - utility_drift_scans_by_pk: (utility_drift_scans | null) - /** fetch data from the table: "utility_lineup_favorites" */ - utility_lineup_favorites: utility_lineup_favorites[] - /** fetch aggregated fields from the table: "utility_lineup_favorites" */ - utility_lineup_favorites_aggregate: utility_lineup_favorites_aggregate - /** fetch data from the table: "utility_lineup_favorites" using primary key columns */ - utility_lineup_favorites_by_pk: (utility_lineup_favorites | null) - /** fetch data from the table: "utility_lineup_progress" */ - utility_lineup_progress: utility_lineup_progress[] - /** fetch aggregated fields from the table: "utility_lineup_progress" */ - utility_lineup_progress_aggregate: utility_lineup_progress_aggregate - /** fetch data from the table: "utility_lineup_progress" using primary key columns */ - utility_lineup_progress_by_pk: (utility_lineup_progress | null) - /** fetch data from the table: "utility_lineup_renders" */ - utility_lineup_renders: utility_lineup_renders[] - /** fetch aggregated fields from the table: "utility_lineup_renders" */ - utility_lineup_renders_aggregate: utility_lineup_renders_aggregate - /** fetch data from the table: "utility_lineup_renders" using primary key columns */ - utility_lineup_renders_by_pk: (utility_lineup_renders | null) - /** fetch data from the table: "utility_lineup_repairs" */ - utility_lineup_repairs: utility_lineup_repairs[] - /** fetch aggregated fields from the table: "utility_lineup_repairs" */ - utility_lineup_repairs_aggregate: utility_lineup_repairs_aggregate - /** fetch data from the table: "utility_lineup_repairs" using primary key columns */ - utility_lineup_repairs_by_pk: (utility_lineup_repairs | null) - /** fetch data from the table: "utility_lineup_votes" */ - utility_lineup_votes: utility_lineup_votes[] - /** fetch aggregated fields from the table: "utility_lineup_votes" */ - utility_lineup_votes_aggregate: utility_lineup_votes_aggregate - /** fetch data from the table: "utility_lineup_votes" using primary key columns */ - utility_lineup_votes_by_pk: (utility_lineup_votes | null) - /** An array relationship */ - utility_lineups: utility_lineups[] - /** An aggregate relationship */ - utility_lineups_aggregate: utility_lineups_aggregate - /** fetch data from the table: "utility_lineups" using primary key columns */ - utility_lineups_by_pk: (utility_lineups | null) - /** fetch data from the table: "utility_meta_lineups" */ - utility_meta_lineups: utility_meta_lineups[] - /** fetch aggregated fields from the table: "utility_meta_lineups" */ - utility_meta_lineups_aggregate: utility_meta_lineups_aggregate - /** fetch data from the table: "utility_meta_lineups" using primary key columns */ - utility_meta_lineups_by_pk: (utility_meta_lineups | null) - /** fetch data from the table: "utility_playbook_steps" */ - utility_playbook_steps: utility_playbook_steps[] - /** fetch aggregated fields from the table: "utility_playbook_steps" */ - utility_playbook_steps_aggregate: utility_playbook_steps_aggregate - /** fetch data from the table: "utility_playbook_steps" using primary key columns */ - utility_playbook_steps_by_pk: (utility_playbook_steps | null) - /** fetch data from the table: "utility_playbooks" */ - utility_playbooks: utility_playbooks[] - /** fetch aggregated fields from the table: "utility_playbooks" */ - utility_playbooks_aggregate: utility_playbooks_aggregate - /** fetch data from the table: "utility_playbooks" using primary key columns */ - utility_playbooks_by_pk: (utility_playbooks | null) - /** fetch data from the table: "utility_practice_invites" */ - utility_practice_invites: utility_practice_invites[] - /** fetch aggregated fields from the table: "utility_practice_invites" */ - utility_practice_invites_aggregate: utility_practice_invites_aggregate - /** fetch data from the table: "utility_practice_invites" using primary key columns */ - utility_practice_invites_by_pk: (utility_practice_invites | null) - /** An array relationship */ - utility_practice_sessions: utility_practice_sessions[] - /** An aggregate relationship */ - utility_practice_sessions_aggregate: utility_practice_sessions_aggregate - /** fetch data from the table: "utility_practice_sessions" using primary key columns */ - utility_practice_sessions_by_pk: (utility_practice_sessions | null) - /** fetch data from the table: "v_event_player_stats" */ - v_event_player_stats: v_event_player_stats[] - /** fetch aggregated fields from the table: "v_event_player_stats" */ - v_event_player_stats_aggregate: v_event_player_stats_aggregate - /** fetch data from the table: "v_gpu_pool_status" */ - v_gpu_pool_status: v_gpu_pool_status[] - /** fetch aggregated fields from the table: "v_gpu_pool_status" */ - v_gpu_pool_status_aggregate: v_gpu_pool_status_aggregate - /** fetch data from the table: "v_league_division_standings" */ - v_league_division_standings: v_league_division_standings[] - /** fetch aggregated fields from the table: "v_league_division_standings" */ - v_league_division_standings_aggregate: v_league_division_standings_aggregate - /** fetch data from the table: "v_league_season_player_stats" */ - v_league_season_player_stats: v_league_season_player_stats[] - /** fetch aggregated fields from the table: "v_league_season_player_stats" */ - v_league_season_player_stats_aggregate: v_league_season_player_stats_aggregate - /** fetch data from the table: "v_match_captains" */ - v_match_captains: v_match_captains[] - /** fetch aggregated fields from the table: "v_match_captains" */ - v_match_captains_aggregate: v_match_captains_aggregate - /** fetch data from the table: "v_match_clutches" */ - v_match_clutches: v_match_clutches[] - /** fetch aggregated fields from the table: "v_match_clutches" */ - v_match_clutches_aggregate: v_match_clutches_aggregate - /** fetch data from the table: "v_match_kill_pairs" */ - v_match_kill_pairs: v_match_kill_pairs[] - /** fetch aggregated fields from the table: "v_match_kill_pairs" */ - v_match_kill_pairs_aggregate: v_match_kill_pairs_aggregate - /** fetch data from the table: "v_match_lineup_buy_types" */ - v_match_lineup_buy_types: v_match_lineup_buy_types[] - /** fetch aggregated fields from the table: "v_match_lineup_buy_types" */ - v_match_lineup_buy_types_aggregate: v_match_lineup_buy_types_aggregate - /** fetch data from the table: "v_match_lineup_map_stats" */ - v_match_lineup_map_stats: v_match_lineup_map_stats[] - /** fetch aggregated fields from the table: "v_match_lineup_map_stats" */ - v_match_lineup_map_stats_aggregate: v_match_lineup_map_stats_aggregate - /** fetch data from the table: "v_match_map_backup_rounds" */ - v_match_map_backup_rounds: v_match_map_backup_rounds[] - /** fetch aggregated fields from the table: "v_match_map_backup_rounds" */ - v_match_map_backup_rounds_aggregate: v_match_map_backup_rounds_aggregate - /** fetch data from the table: "v_match_player_buy_types" */ - v_match_player_buy_types: v_match_player_buy_types[] - /** fetch aggregated fields from the table: "v_match_player_buy_types" */ - v_match_player_buy_types_aggregate: v_match_player_buy_types_aggregate - /** fetch data from the table: "v_match_player_opening_duels" */ - v_match_player_opening_duels: v_match_player_opening_duels[] - /** fetch aggregated fields from the table: "v_match_player_opening_duels" */ - v_match_player_opening_duels_aggregate: v_match_player_opening_duels_aggregate - /** fetch data from the table: "v_player_arch_nemesis" */ - v_player_arch_nemesis: v_player_arch_nemesis[] - /** fetch aggregated fields from the table: "v_player_arch_nemesis" */ - v_player_arch_nemesis_aggregate: v_player_arch_nemesis_aggregate - /** fetch data from the table: "v_player_damage" */ - v_player_damage: v_player_damage[] - /** fetch aggregated fields from the table: "v_player_damage" */ - v_player_damage_aggregate: v_player_damage_aggregate - /** fetch data from the table: "v_player_elo" */ - v_player_elo: v_player_elo[] - /** fetch aggregated fields from the table: "v_player_elo" */ - v_player_elo_aggregate: v_player_elo_aggregate - /** fetch data from the table: "v_player_map_losses" */ - v_player_map_losses: v_player_map_losses[] - /** fetch aggregated fields from the table: "v_player_map_losses" */ - v_player_map_losses_aggregate: v_player_map_losses_aggregate - /** fetch data from the table: "v_player_map_wins" */ - v_player_map_wins: v_player_map_wins[] - /** fetch aggregated fields from the table: "v_player_map_wins" */ - v_player_map_wins_aggregate: v_player_map_wins_aggregate - /** fetch data from the table: "v_player_match_head_to_head" */ - v_player_match_head_to_head: v_player_match_head_to_head[] - /** fetch aggregated fields from the table: "v_player_match_head_to_head" */ - v_player_match_head_to_head_aggregate: v_player_match_head_to_head_aggregate - /** fetch data from the table: "v_player_match_map_hltv" */ - v_player_match_map_hltv: v_player_match_map_hltv[] - /** fetch aggregated fields from the table: "v_player_match_map_hltv" */ - v_player_match_map_hltv_aggregate: v_player_match_map_hltv_aggregate - /** fetch data from the table: "v_player_match_map_roles" */ - v_player_match_map_roles: v_player_match_map_roles[] - /** fetch aggregated fields from the table: "v_player_match_map_roles" */ - v_player_match_map_roles_aggregate: v_player_match_map_roles_aggregate - /** fetch data from the table: "v_player_match_performance" */ - v_player_match_performance: v_player_match_performance[] - /** fetch aggregated fields from the table: "v_player_match_performance" */ - v_player_match_performance_aggregate: v_player_match_performance_aggregate - /** fetch data from the table: "v_player_match_rating" */ - v_player_match_rating: v_player_match_rating[] - /** fetch aggregated fields from the table: "v_player_match_rating" */ - v_player_match_rating_aggregate: v_player_match_rating_aggregate - /** fetch data from the table: "v_player_multi_kills" */ - v_player_multi_kills: v_player_multi_kills[] - /** fetch aggregated fields from the table: "v_player_multi_kills" */ - v_player_multi_kills_aggregate: v_player_multi_kills_aggregate - /** fetch data from the table: "v_player_queue_partners" */ - v_player_queue_partners: v_player_queue_partners[] - /** fetch aggregated fields from the table: "v_player_queue_partners" */ - v_player_queue_partners_aggregate: v_player_queue_partners_aggregate - /** fetch data from the table: "v_player_weapon_damage" */ - v_player_weapon_damage: v_player_weapon_damage[] - /** fetch aggregated fields from the table: "v_player_weapon_damage" */ - v_player_weapon_damage_aggregate: v_player_weapon_damage_aggregate - /** fetch data from the table: "v_player_weapon_kills" */ - v_player_weapon_kills: v_player_weapon_kills[] - /** fetch aggregated fields from the table: "v_player_weapon_kills" */ - v_player_weapon_kills_aggregate: v_player_weapon_kills_aggregate - /** fetch data from the table: "v_pool_maps" */ - v_pool_maps: v_pool_maps[] - /** fetch aggregated fields from the table: "v_pool_maps" */ - v_pool_maps_aggregate: v_pool_maps_aggregate - /** fetch data from the table: "v_steam_account_pool_status" */ - v_steam_account_pool_status: v_steam_account_pool_status[] - /** fetch aggregated fields from the table: "v_steam_account_pool_status" */ - v_steam_account_pool_status_aggregate: v_steam_account_pool_status_aggregate - /** fetch data from the table: "v_team_ranks" */ - v_team_ranks: v_team_ranks[] - /** fetch aggregated fields from the table: "v_team_ranks" */ - v_team_ranks_aggregate: v_team_ranks_aggregate - /** fetch data from the table: "v_team_reputation" */ - v_team_reputation: v_team_reputation[] - /** fetch aggregated fields from the table: "v_team_reputation" */ - v_team_reputation_aggregate: v_team_reputation_aggregate - /** fetch data from the table: "v_team_stage_results" */ - v_team_stage_results: v_team_stage_results[] - /** fetch aggregated fields from the table: "v_team_stage_results" */ - v_team_stage_results_aggregate: v_team_stage_results_aggregate - /** fetch data from the table: "v_team_stage_results" using primary key columns */ - v_team_stage_results_by_pk: (v_team_stage_results | null) - /** fetch data from the table: "v_team_tournament_results" */ - v_team_tournament_results: v_team_tournament_results[] - /** fetch aggregated fields from the table: "v_team_tournament_results" */ - v_team_tournament_results_aggregate: v_team_tournament_results_aggregate - /** fetch data from the table: "v_tournament_player_stats" */ - v_tournament_player_stats: v_tournament_player_stats[] - /** fetch aggregated fields from the table: "v_tournament_player_stats" */ - v_tournament_player_stats_aggregate: v_tournament_player_stats_aggregate - /** Web push setup status for the application settings page; never returns the private key */ - webPushStatus: (WebPushStatusOutput | null) - __typename: 'query_root' -} - - -/** columns and relationships of "v_role_permissions" */ -export interface role_permissions { - can_create_events: (Scalars['Boolean'] | null) - can_create_matches: (Scalars['Boolean'] | null) - can_create_tournaments: (Scalars['Boolean'] | null) - role: (Scalars['String'] | null) - __typename: 'role_permissions' -} - - -/** aggregated selection of "v_role_permissions" */ -export interface role_permissions_aggregate { - aggregate: (role_permissions_aggregate_fields | null) - nodes: role_permissions[] - __typename: 'role_permissions_aggregate' -} - - -/** aggregate fields of "v_role_permissions" */ -export interface role_permissions_aggregate_fields { - count: Scalars['Int'] - max: (role_permissions_max_fields | null) - min: (role_permissions_min_fields | null) - __typename: 'role_permissions_aggregate_fields' -} - - -/** aggregate max on columns */ -export interface role_permissions_max_fields { - role: (Scalars['String'] | null) - __typename: 'role_permissions_max_fields' -} - - -/** aggregate min on columns */ -export interface role_permissions_min_fields { - role: (Scalars['String'] | null) - __typename: 'role_permissions_min_fields' -} - - -/** response of any mutation on the table "v_role_permissions" */ -export interface role_permissions_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: role_permissions[] - __typename: 'role_permissions_mutation_response' -} - - -/** select columns of table "v_role_permissions" */ -export type role_permissions_select_column = 'can_create_events' | 'can_create_matches' | 'can_create_tournaments' | 'role' - - -/** columns and relationships of "seasons" */ -export interface seasons { - /** An array relationship */ - awards: award_recipients[] - /** An aggregate relationship */ - awards_aggregate: award_recipients_aggregate - created_at: Scalars['timestamptz'] - description: (Scalars['String'] | null) - ends_at: (Scalars['timestamptz'] | null) - id: Scalars['uuid'] - needs_rebuild: Scalars['Boolean'] - number: Scalars['Int'] - /** An array relationship */ - player_season_stats: player_season_stats[] - /** An aggregate relationship */ - player_season_stats_aggregate: player_season_stats_aggregate - starts_at: Scalars['timestamptz'] - __typename: 'seasons' -} - - -/** aggregated selection of "seasons" */ -export interface seasons_aggregate { - aggregate: (seasons_aggregate_fields | null) - nodes: seasons[] - __typename: 'seasons_aggregate' -} - - -/** aggregate fields of "seasons" */ -export interface seasons_aggregate_fields { - avg: (seasons_avg_fields | null) - count: Scalars['Int'] - max: (seasons_max_fields | null) - min: (seasons_min_fields | null) - stddev: (seasons_stddev_fields | null) - stddev_pop: (seasons_stddev_pop_fields | null) - stddev_samp: (seasons_stddev_samp_fields | null) - sum: (seasons_sum_fields | null) - var_pop: (seasons_var_pop_fields | null) - var_samp: (seasons_var_samp_fields | null) - variance: (seasons_variance_fields | null) - __typename: 'seasons_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface seasons_avg_fields { - number: (Scalars['Float'] | null) - __typename: 'seasons_avg_fields' -} - - -/** unique or primary key constraints on table "seasons" */ -export type seasons_constraint = 'seasons_pkey' - - -/** aggregate max on columns */ -export interface seasons_max_fields { - created_at: (Scalars['timestamptz'] | null) - description: (Scalars['String'] | null) - ends_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - number: (Scalars['Int'] | null) - starts_at: (Scalars['timestamptz'] | null) - __typename: 'seasons_max_fields' -} - - -/** aggregate min on columns */ -export interface seasons_min_fields { - created_at: (Scalars['timestamptz'] | null) - description: (Scalars['String'] | null) - ends_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - number: (Scalars['Int'] | null) - starts_at: (Scalars['timestamptz'] | null) - __typename: 'seasons_min_fields' -} - - -/** response of any mutation on the table "seasons" */ -export interface seasons_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: seasons[] - __typename: 'seasons_mutation_response' -} - - -/** select columns of table "seasons" */ -export type seasons_select_column = 'created_at' | 'description' | 'ends_at' | 'id' | 'needs_rebuild' | 'number' | 'starts_at' - - -/** aggregate stddev on columns */ -export interface seasons_stddev_fields { - number: (Scalars['Float'] | null) - __typename: 'seasons_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface seasons_stddev_pop_fields { - number: (Scalars['Float'] | null) - __typename: 'seasons_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface seasons_stddev_samp_fields { - number: (Scalars['Float'] | null) - __typename: 'seasons_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface seasons_sum_fields { - number: (Scalars['Int'] | null) - __typename: 'seasons_sum_fields' -} - - -/** update columns of table "seasons" */ -export type seasons_update_column = 'created_at' | 'description' | 'ends_at' | 'id' | 'needs_rebuild' | 'number' | 'starts_at' - - -/** aggregate var_pop on columns */ -export interface seasons_var_pop_fields { - number: (Scalars['Float'] | null) - __typename: 'seasons_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface seasons_var_samp_fields { - number: (Scalars['Float'] | null) - __typename: 'seasons_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface seasons_variance_fields { - number: (Scalars['Float'] | null) - __typename: 'seasons_variance_fields' -} - - -/** columns and relationships of "server_regions" */ -export interface server_regions { - /** A computed field, executes function "available_region_server_count" */ - available_server_count: (Scalars['Int'] | null) - description: (Scalars['String'] | null) - /** An array relationship */ - game_server_nodes: game_server_nodes[] - /** An aggregate relationship */ - game_server_nodes_aggregate: game_server_nodes_aggregate - /** A computed field, executes function "region_has_node" */ - has_node: (Scalars['Boolean'] | null) - is_lan: Scalars['Boolean'] - /** A computed field, executes function "region_status" */ - status: (Scalars['String'] | null) - steam_relay: Scalars['Boolean'] - /** A computed field, executes function "total_region_server_count" */ - total_server_count: (Scalars['Int'] | null) - value: Scalars['String'] - __typename: 'server_regions' -} - - -/** aggregated selection of "server_regions" */ -export interface server_regions_aggregate { - aggregate: (server_regions_aggregate_fields | null) - nodes: server_regions[] - __typename: 'server_regions_aggregate' -} - - -/** aggregate fields of "server_regions" */ -export interface server_regions_aggregate_fields { - avg: (server_regions_avg_fields | null) - count: Scalars['Int'] - max: (server_regions_max_fields | null) - min: (server_regions_min_fields | null) - stddev: (server_regions_stddev_fields | null) - stddev_pop: (server_regions_stddev_pop_fields | null) - stddev_samp: (server_regions_stddev_samp_fields | null) - sum: (server_regions_sum_fields | null) - var_pop: (server_regions_var_pop_fields | null) - var_samp: (server_regions_var_samp_fields | null) - variance: (server_regions_variance_fields | null) - __typename: 'server_regions_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface server_regions_avg_fields { - /** A computed field, executes function "available_region_server_count" */ - available_server_count: (Scalars['Int'] | null) - /** A computed field, executes function "total_region_server_count" */ - total_server_count: (Scalars['Int'] | null) - __typename: 'server_regions_avg_fields' -} - - -/** unique or primary key constraints on table "server_regions" */ -export type server_regions_constraint = 'e_server_regions_pkey' - - -/** aggregate max on columns */ -export interface server_regions_max_fields { - /** A computed field, executes function "available_region_server_count" */ - available_server_count: (Scalars['Int'] | null) - description: (Scalars['String'] | null) - /** A computed field, executes function "region_status" */ - status: (Scalars['String'] | null) - /** A computed field, executes function "total_region_server_count" */ - total_server_count: (Scalars['Int'] | null) - value: (Scalars['String'] | null) - __typename: 'server_regions_max_fields' -} - - -/** aggregate min on columns */ -export interface server_regions_min_fields { - /** A computed field, executes function "available_region_server_count" */ - available_server_count: (Scalars['Int'] | null) - description: (Scalars['String'] | null) - /** A computed field, executes function "region_status" */ - status: (Scalars['String'] | null) - /** A computed field, executes function "total_region_server_count" */ - total_server_count: (Scalars['Int'] | null) - value: (Scalars['String'] | null) - __typename: 'server_regions_min_fields' -} - - -/** response of any mutation on the table "server_regions" */ -export interface server_regions_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: server_regions[] - __typename: 'server_regions_mutation_response' -} - - -/** select columns of table "server_regions" */ -export type server_regions_select_column = 'description' | 'is_lan' | 'steam_relay' | 'value' - - -/** aggregate stddev on columns */ -export interface server_regions_stddev_fields { - /** A computed field, executes function "available_region_server_count" */ - available_server_count: (Scalars['Int'] | null) - /** A computed field, executes function "total_region_server_count" */ - total_server_count: (Scalars['Int'] | null) - __typename: 'server_regions_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface server_regions_stddev_pop_fields { - /** A computed field, executes function "available_region_server_count" */ - available_server_count: (Scalars['Int'] | null) - /** A computed field, executes function "total_region_server_count" */ - total_server_count: (Scalars['Int'] | null) - __typename: 'server_regions_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface server_regions_stddev_samp_fields { - /** A computed field, executes function "available_region_server_count" */ - available_server_count: (Scalars['Int'] | null) - /** A computed field, executes function "total_region_server_count" */ - total_server_count: (Scalars['Int'] | null) - __typename: 'server_regions_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface server_regions_sum_fields { - /** A computed field, executes function "available_region_server_count" */ - available_server_count: (Scalars['Int'] | null) - /** A computed field, executes function "total_region_server_count" */ - total_server_count: (Scalars['Int'] | null) - __typename: 'server_regions_sum_fields' -} - - -/** update columns of table "server_regions" */ -export type server_regions_update_column = 'description' | 'is_lan' | 'steam_relay' | 'value' - - -/** aggregate var_pop on columns */ -export interface server_regions_var_pop_fields { - /** A computed field, executes function "available_region_server_count" */ - available_server_count: (Scalars['Int'] | null) - /** A computed field, executes function "total_region_server_count" */ - total_server_count: (Scalars['Int'] | null) - __typename: 'server_regions_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface server_regions_var_samp_fields { - /** A computed field, executes function "available_region_server_count" */ - available_server_count: (Scalars['Int'] | null) - /** A computed field, executes function "total_region_server_count" */ - total_server_count: (Scalars['Int'] | null) - __typename: 'server_regions_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface server_regions_variance_fields { - /** A computed field, executes function "available_region_server_count" */ - available_server_count: (Scalars['Int'] | null) - /** A computed field, executes function "total_region_server_count" */ - total_server_count: (Scalars['Int'] | null) - __typename: 'server_regions_variance_fields' -} - - -/** columns and relationships of "servers" */ -export interface servers { - api_password: Scalars['uuid'] - boot_status: (Scalars['String'] | null) - boot_status_detail: (Scalars['String'] | null) - connect_password: (Scalars['String'] | null) - connected: Scalars['Boolean'] - /** A computed field, executes function "get_server_connection_link" */ - connection_link: (Scalars['String'] | null) - /** A computed field, executes function "get_server_connection_string" */ - connection_string: (Scalars['String'] | null) - /** An object relationship */ - current_match: (matches | null) - 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 */ - matches_aggregate: matches_aggregate - 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'] - rcon_password: Scalars['bytea'] - rcon_status: (Scalars['Boolean'] | null) - region: Scalars['String'] - reserved_by_match_id: (Scalars['uuid'] | null) - /** An object relationship */ - server_region: (server_regions | null) - steam_relay: (Scalars['String'] | null) - tv_port: (Scalars['Int'] | null) - type: e_server_types_enum - updated_at: (Scalars['timestamptz'] | null) - __typename: 'servers' -} - - -/** aggregated selection of "servers" */ -export interface servers_aggregate { - aggregate: (servers_aggregate_fields | null) - nodes: servers[] - __typename: 'servers_aggregate' -} - - -/** aggregate fields of "servers" */ -export interface servers_aggregate_fields { - avg: (servers_avg_fields | null) - count: Scalars['Int'] - max: (servers_max_fields | null) - min: (servers_min_fields | null) - stddev: (servers_stddev_fields | null) - stddev_pop: (servers_stddev_pop_fields | null) - stddev_samp: (servers_stddev_samp_fields | null) - sum: (servers_sum_fields | null) - var_pop: (servers_var_pop_fields | null) - var_samp: (servers_var_samp_fields | null) - variance: (servers_variance_fields | null) - __typename: 'servers_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface servers_avg_fields { - max_players: (Scalars['Float'] | null) - port: (Scalars['Float'] | null) - tv_port: (Scalars['Float'] | null) - __typename: 'servers_avg_fields' -} - - -/** unique or primary key constraints on table "servers" */ -export type servers_constraint = 'servers_pkey' | 'servers_reserved_by_match_id_key' - - -/** aggregate max on columns */ -export interface servers_max_fields { - api_password: (Scalars['uuid'] | null) - boot_status: (Scalars['String'] | null) - boot_status_detail: (Scalars['String'] | null) - connect_password: (Scalars['String'] | null) - /** A computed field, executes function "get_server_connection_link" */ - connection_link: (Scalars['String'] | null) - /** 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) - label: (Scalars['String'] | null) - 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) - steam_relay: (Scalars['String'] | null) - tv_port: (Scalars['Int'] | null) - updated_at: (Scalars['timestamptz'] | null) - __typename: 'servers_max_fields' -} - - -/** aggregate min on columns */ -export interface servers_min_fields { - api_password: (Scalars['uuid'] | null) - boot_status: (Scalars['String'] | null) - boot_status_detail: (Scalars['String'] | null) - connect_password: (Scalars['String'] | null) - /** A computed field, executes function "get_server_connection_link" */ - connection_link: (Scalars['String'] | null) - /** 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) - label: (Scalars['String'] | null) - 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) - steam_relay: (Scalars['String'] | null) - tv_port: (Scalars['Int'] | null) - updated_at: (Scalars['timestamptz'] | null) - __typename: 'servers_min_fields' -} - - -/** response of any mutation on the table "servers" */ -export interface servers_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: servers[] - __typename: '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_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" */ -export type servers_select_column_servers_aggregate_bool_exp_bool_and_arguments_columns = 'connected' | 'enabled' | 'is_dedicated' | 'rcon_status' - - -/** select "servers_aggregate_bool_exp_bool_or_arguments_columns" columns of table "servers" */ -export type servers_select_column_servers_aggregate_bool_exp_bool_or_arguments_columns = 'connected' | 'enabled' | 'is_dedicated' | 'rcon_status' - - -/** aggregate stddev on columns */ -export interface servers_stddev_fields { - max_players: (Scalars['Float'] | null) - port: (Scalars['Float'] | null) - tv_port: (Scalars['Float'] | null) - __typename: 'servers_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface servers_stddev_pop_fields { - max_players: (Scalars['Float'] | null) - port: (Scalars['Float'] | null) - tv_port: (Scalars['Float'] | null) - __typename: 'servers_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface servers_stddev_samp_fields { - max_players: (Scalars['Float'] | null) - port: (Scalars['Float'] | null) - tv_port: (Scalars['Float'] | null) - __typename: 'servers_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface servers_sum_fields { - max_players: (Scalars['Int'] | null) - port: (Scalars['Int'] | null) - tv_port: (Scalars['Int'] | null) - __typename: '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_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 */ -export interface servers_var_pop_fields { - max_players: (Scalars['Float'] | null) - port: (Scalars['Float'] | null) - tv_port: (Scalars['Float'] | null) - __typename: 'servers_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface servers_var_samp_fields { - max_players: (Scalars['Float'] | null) - port: (Scalars['Float'] | null) - tv_port: (Scalars['Float'] | null) - __typename: 'servers_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface servers_variance_fields { - max_players: (Scalars['Float'] | null) - port: (Scalars['Float'] | null) - tv_port: (Scalars['Float'] | null) - __typename: 'servers_variance_fields' -} - - -/** columns and relationships of "settings" */ -export interface settings { - name: Scalars['String'] - value: (Scalars['String'] | null) - __typename: 'settings' -} - - -/** aggregated selection of "settings" */ -export interface settings_aggregate { - aggregate: (settings_aggregate_fields | null) - nodes: settings[] - __typename: 'settings_aggregate' -} - - -/** aggregate fields of "settings" */ -export interface settings_aggregate_fields { - count: Scalars['Int'] - max: (settings_max_fields | null) - min: (settings_min_fields | null) - __typename: 'settings_aggregate_fields' -} - - -/** unique or primary key constraints on table "settings" */ -export type settings_constraint = 'settings_pkey' - - -/** aggregate max on columns */ -export interface settings_max_fields { - name: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'settings_max_fields' -} - - -/** aggregate min on columns */ -export interface settings_min_fields { - name: (Scalars['String'] | null) - value: (Scalars['String'] | null) - __typename: 'settings_min_fields' -} - - -/** response of any mutation on the table "settings" */ -export interface settings_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: settings[] - __typename: 'settings_mutation_response' -} - - -/** select columns of table "settings" */ -export type settings_select_column = 'name' | 'value' - - -/** update columns of table "settings" */ -export type settings_update_column = 'name' | 'value' - - -/** columns and relationships of "steam_account_claims" */ -export interface steam_account_claims { - created_at: Scalars['timestamptz'] - id: Scalars['uuid'] - k8s_job_name: Scalars['String'] - /** An object relationship */ - node: (game_server_nodes | null) - node_id: (Scalars['String'] | null) - purpose: Scalars['String'] - /** An object relationship */ - steam_account: steam_accounts - steam_account_id: Scalars['uuid'] - __typename: 'steam_account_claims' -} - - -/** aggregated selection of "steam_account_claims" */ -export interface steam_account_claims_aggregate { - aggregate: (steam_account_claims_aggregate_fields | null) - nodes: steam_account_claims[] - __typename: 'steam_account_claims_aggregate' -} - - -/** aggregate fields of "steam_account_claims" */ -export interface steam_account_claims_aggregate_fields { - count: Scalars['Int'] - max: (steam_account_claims_max_fields | null) - min: (steam_account_claims_min_fields | null) - __typename: 'steam_account_claims_aggregate_fields' -} - - -/** unique or primary key constraints on table "steam_account_claims" */ -export type steam_account_claims_constraint = 'steam_account_claims_k8s_job_name_key' | 'steam_account_claims_pkey' - - -/** aggregate max on columns */ -export interface steam_account_claims_max_fields { - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - k8s_job_name: (Scalars['String'] | null) - node_id: (Scalars['String'] | null) - purpose: (Scalars['String'] | null) - steam_account_id: (Scalars['uuid'] | null) - __typename: 'steam_account_claims_max_fields' -} - - -/** aggregate min on columns */ -export interface steam_account_claims_min_fields { - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - k8s_job_name: (Scalars['String'] | null) - node_id: (Scalars['String'] | null) - purpose: (Scalars['String'] | null) - steam_account_id: (Scalars['uuid'] | null) - __typename: 'steam_account_claims_min_fields' -} - - -/** response of any mutation on the table "steam_account_claims" */ -export interface steam_account_claims_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: steam_account_claims[] - __typename: 'steam_account_claims_mutation_response' -} - - -/** select columns of table "steam_account_claims" */ -export type steam_account_claims_select_column = 'created_at' | 'id' | 'k8s_job_name' | 'node_id' | 'purpose' | 'steam_account_id' - - -/** update columns of table "steam_account_claims" */ -export type steam_account_claims_update_column = 'created_at' | 'id' | 'k8s_job_name' | 'node_id' | 'purpose' | 'steam_account_id' - - -/** columns and relationships of "steam_accounts" */ -export interface steam_accounts { - /** An array relationship */ - claims: steam_account_claims[] - /** An aggregate relationship */ - claims_aggregate: steam_account_claims_aggregate - created_at: Scalars['timestamptz'] - friend_capacity: Scalars['Int'] - id: Scalars['uuid'] - /** An object relationship */ - last_node: (game_server_nodes | null) - last_node_id: (Scalars['String'] | null) - password: Scalars['String'] - role: Scalars['String'] - steam_level: (Scalars['Int'] | null) - steamid64: (Scalars['bigint'] | null) - updated_at: Scalars['timestamptz'] - username: Scalars['String'] - __typename: 'steam_accounts' -} - - -/** aggregated selection of "steam_accounts" */ -export interface steam_accounts_aggregate { - aggregate: (steam_accounts_aggregate_fields | null) - nodes: steam_accounts[] - __typename: 'steam_accounts_aggregate' -} - - -/** aggregate fields of "steam_accounts" */ -export interface steam_accounts_aggregate_fields { - avg: (steam_accounts_avg_fields | null) - count: Scalars['Int'] - max: (steam_accounts_max_fields | null) - min: (steam_accounts_min_fields | null) - stddev: (steam_accounts_stddev_fields | null) - stddev_pop: (steam_accounts_stddev_pop_fields | null) - stddev_samp: (steam_accounts_stddev_samp_fields | null) - sum: (steam_accounts_sum_fields | null) - var_pop: (steam_accounts_var_pop_fields | null) - var_samp: (steam_accounts_var_samp_fields | null) - variance: (steam_accounts_variance_fields | null) - __typename: 'steam_accounts_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface steam_accounts_avg_fields { - friend_capacity: (Scalars['Float'] | null) - steam_level: (Scalars['Float'] | null) - steamid64: (Scalars['Float'] | null) - __typename: 'steam_accounts_avg_fields' -} - - -/** unique or primary key constraints on table "steam_accounts" */ -export type steam_accounts_constraint = 'steam_accounts_pkey' | 'steam_accounts_username_key' - - -/** aggregate max on columns */ -export interface steam_accounts_max_fields { - created_at: (Scalars['timestamptz'] | null) - friend_capacity: (Scalars['Int'] | null) - id: (Scalars['uuid'] | null) - last_node_id: (Scalars['String'] | null) - password: (Scalars['String'] | null) - role: (Scalars['String'] | null) - steam_level: (Scalars['Int'] | null) - steamid64: (Scalars['bigint'] | null) - updated_at: (Scalars['timestamptz'] | null) - username: (Scalars['String'] | null) - __typename: 'steam_accounts_max_fields' -} - - -/** aggregate min on columns */ -export interface steam_accounts_min_fields { - created_at: (Scalars['timestamptz'] | null) - friend_capacity: (Scalars['Int'] | null) - id: (Scalars['uuid'] | null) - last_node_id: (Scalars['String'] | null) - password: (Scalars['String'] | null) - role: (Scalars['String'] | null) - steam_level: (Scalars['Int'] | null) - steamid64: (Scalars['bigint'] | null) - updated_at: (Scalars['timestamptz'] | null) - username: (Scalars['String'] | null) - __typename: 'steam_accounts_min_fields' -} - - -/** response of any mutation on the table "steam_accounts" */ -export interface steam_accounts_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: steam_accounts[] - __typename: 'steam_accounts_mutation_response' -} - - -/** select columns of table "steam_accounts" */ -export type steam_accounts_select_column = 'created_at' | 'friend_capacity' | 'id' | 'last_node_id' | 'password' | 'role' | 'steam_level' | 'steamid64' | 'updated_at' | 'username' - - -/** aggregate stddev on columns */ -export interface steam_accounts_stddev_fields { - friend_capacity: (Scalars['Float'] | null) - steam_level: (Scalars['Float'] | null) - steamid64: (Scalars['Float'] | null) - __typename: 'steam_accounts_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface steam_accounts_stddev_pop_fields { - friend_capacity: (Scalars['Float'] | null) - steam_level: (Scalars['Float'] | null) - steamid64: (Scalars['Float'] | null) - __typename: 'steam_accounts_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface steam_accounts_stddev_samp_fields { - friend_capacity: (Scalars['Float'] | null) - steam_level: (Scalars['Float'] | null) - steamid64: (Scalars['Float'] | null) - __typename: 'steam_accounts_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface steam_accounts_sum_fields { - friend_capacity: (Scalars['Int'] | null) - steam_level: (Scalars['Int'] | null) - steamid64: (Scalars['bigint'] | null) - __typename: 'steam_accounts_sum_fields' -} - - -/** update columns of table "steam_accounts" */ -export type steam_accounts_update_column = 'created_at' | 'friend_capacity' | 'id' | 'last_node_id' | 'password' | 'role' | 'steam_level' | 'steamid64' | 'updated_at' | 'username' - - -/** aggregate var_pop on columns */ -export interface steam_accounts_var_pop_fields { - friend_capacity: (Scalars['Float'] | null) - steam_level: (Scalars['Float'] | null) - steamid64: (Scalars['Float'] | null) - __typename: 'steam_accounts_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface steam_accounts_var_samp_fields { - friend_capacity: (Scalars['Float'] | null) - steam_level: (Scalars['Float'] | null) - steamid64: (Scalars['Float'] | null) - __typename: 'steam_accounts_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface steam_accounts_variance_fields { - friend_capacity: (Scalars['Float'] | null) - steam_level: (Scalars['Float'] | null) - steamid64: (Scalars['Float'] | null) - __typename: 'steam_accounts_variance_fields' -} - -export interface subscription_root { - /** fetch data from the table: "_map_pool" */ - _map_pool: _map_pool[] - /** fetch aggregated fields from the table: "_map_pool" */ - _map_pool_aggregate: _map_pool_aggregate - /** fetch data from the table: "_map_pool" using primary key columns */ - _map_pool_by_pk: (_map_pool | null) - /** fetch data from the table in a streaming manner: "_map_pool" */ - _map_pool_stream: _map_pool[] - /** An array relationship */ - abandoned_matches: abandoned_matches[] - /** An aggregate relationship */ - abandoned_matches_aggregate: abandoned_matches_aggregate - /** fetch data from the table: "abandoned_matches" using primary key columns */ - abandoned_matches_by_pk: (abandoned_matches | null) - /** fetch data from the table in a streaming manner: "abandoned_matches" */ - abandoned_matches_stream: abandoned_matches[] - /** fetch data from the table: "api_keys" */ - api_keys: api_keys[] - /** fetch aggregated fields from the table: "api_keys" */ - api_keys_aggregate: api_keys_aggregate - /** fetch data from the table: "api_keys" using primary key columns */ - api_keys_by_pk: (api_keys | null) - /** fetch data from the table in a streaming manner: "api_keys" */ - api_keys_stream: api_keys[] - /** fetch data from the table: "award_recipients" */ - award_recipients: award_recipients[] - /** fetch aggregated fields from the table: "award_recipients" */ - award_recipients_aggregate: award_recipients_aggregate - /** fetch data from the table: "award_recipients" using primary key columns */ - award_recipients_by_pk: (award_recipients | null) - /** fetch data from the table in a streaming manner: "award_recipients" */ - award_recipients_stream: award_recipients[] - /** fetch data from the table: "awards" */ - awards: awards[] - /** fetch aggregated fields from the table: "awards" */ - awards_aggregate: awards_aggregate - /** fetch data from the table: "awards" using primary key columns */ - awards_by_pk: (awards | null) - /** fetch data from the table in a streaming manner: "awards" */ - awards_stream: awards[] - /** fetch data from the table: "chat_read_state" */ - chat_read_state: chat_read_state[] - /** fetch aggregated fields from the table: "chat_read_state" */ - chat_read_state_aggregate: chat_read_state_aggregate - /** fetch data from the table: "chat_read_state" using primary key columns */ - chat_read_state_by_pk: (chat_read_state | null) - /** fetch data from the table in a streaming manner: "chat_read_state" */ - chat_read_state_stream: chat_read_state[] - /** An array relationship */ - clip_render_jobs: clip_render_jobs[] - /** An aggregate relationship */ - clip_render_jobs_aggregate: clip_render_jobs_aggregate - /** fetch data from the table: "clip_render_jobs" using primary key columns */ - clip_render_jobs_by_pk: (clip_render_jobs | null) - /** fetch data from the table in a streaming manner: "clip_render_jobs" */ - clip_render_jobs_stream: clip_render_jobs[] - /** fetch data from the table: "custom_pages" */ - custom_pages: custom_pages[] - /** fetch aggregated fields from the table: "custom_pages" */ - custom_pages_aggregate: custom_pages_aggregate - /** fetch data from the table: "custom_pages" using primary key columns */ - custom_pages_by_pk: (custom_pages | null) - /** fetch data from the table in a streaming manner: "custom_pages" */ - custom_pages_stream: custom_pages[] - /** fetch data from the table: "db_backups" */ - db_backups: db_backups[] - /** fetch aggregated fields from the table: "db_backups" */ - db_backups_aggregate: db_backups_aggregate - /** fetch data from the table: "db_backups" using primary key columns */ - db_backups_by_pk: (db_backups | null) - /** fetch data from the table in a streaming manner: "db_backups" */ - db_backups_stream: db_backups[] - /** fetch data from the table: "direct_conversations" */ - direct_conversations: direct_conversations[] - /** fetch aggregated fields from the table: "direct_conversations" */ - direct_conversations_aggregate: direct_conversations_aggregate - /** fetch data from the table: "direct_conversations" using primary key columns */ - direct_conversations_by_pk: (direct_conversations | null) - /** fetch data from the table in a streaming manner: "direct_conversations" */ - direct_conversations_stream: direct_conversations[] - /** fetch data from the table: "direct_messages" */ - direct_messages: direct_messages[] - /** fetch aggregated fields from the table: "direct_messages" */ - direct_messages_aggregate: direct_messages_aggregate - /** fetch data from the table: "direct_messages" using primary key columns */ - direct_messages_by_pk: (direct_messages | null) - /** fetch data from the table in a streaming manner: "direct_messages" */ - direct_messages_stream: direct_messages[] - /** fetch data from the table: "draft_game_picks" */ - draft_game_picks: draft_game_picks[] - /** fetch aggregated fields from the table: "draft_game_picks" */ - draft_game_picks_aggregate: draft_game_picks_aggregate - /** fetch data from the table: "draft_game_picks" using primary key columns */ - draft_game_picks_by_pk: (draft_game_picks | null) - /** fetch data from the table in a streaming manner: "draft_game_picks" */ - draft_game_picks_stream: draft_game_picks[] - /** An array relationship */ - draft_game_players: draft_game_players[] - /** An aggregate relationship */ - draft_game_players_aggregate: draft_game_players_aggregate - /** fetch data from the table: "draft_game_players" using primary key columns */ - draft_game_players_by_pk: (draft_game_players | null) - /** fetch data from the table in a streaming manner: "draft_game_players" */ - draft_game_players_stream: draft_game_players[] - /** An array relationship */ - draft_games: draft_games[] - /** An aggregate relationship */ - draft_games_aggregate: draft_games_aggregate - /** fetch data from the table: "draft_games" using primary key columns */ - draft_games_by_pk: (draft_games | null) - /** fetch data from the table in a streaming manner: "draft_games" */ - draft_games_stream: draft_games[] - /** fetch data from the table: "e_award_sources" */ - e_award_sources: e_award_sources[] - /** fetch aggregated fields from the table: "e_award_sources" */ - e_award_sources_aggregate: e_award_sources_aggregate - /** fetch data from the table: "e_award_sources" using primary key columns */ - e_award_sources_by_pk: (e_award_sources | null) - /** fetch data from the table in a streaming manner: "e_award_sources" */ - e_award_sources_stream: e_award_sources[] - /** fetch data from the table: "e_award_tiers" */ - e_award_tiers: e_award_tiers[] - /** fetch aggregated fields from the table: "e_award_tiers" */ - e_award_tiers_aggregate: e_award_tiers_aggregate - /** fetch data from the table: "e_award_tiers" using primary key columns */ - e_award_tiers_by_pk: (e_award_tiers | null) - /** fetch data from the table in a streaming manner: "e_award_tiers" */ - e_award_tiers_stream: e_award_tiers[] - /** fetch data from the table: "e_check_in_settings" */ - e_check_in_settings: e_check_in_settings[] - /** fetch aggregated fields from the table: "e_check_in_settings" */ - e_check_in_settings_aggregate: e_check_in_settings_aggregate - /** fetch data from the table: "e_check_in_settings" using primary key columns */ - e_check_in_settings_by_pk: (e_check_in_settings | null) - /** fetch data from the table in a streaming manner: "e_check_in_settings" */ - e_check_in_settings_stream: e_check_in_settings[] - /** fetch data from the table: "e_draft_game_captain_selection" */ - e_draft_game_captain_selection: e_draft_game_captain_selection[] - /** fetch aggregated fields from the table: "e_draft_game_captain_selection" */ - e_draft_game_captain_selection_aggregate: e_draft_game_captain_selection_aggregate - /** fetch data from the table: "e_draft_game_captain_selection" using primary key columns */ - e_draft_game_captain_selection_by_pk: (e_draft_game_captain_selection | null) - /** fetch data from the table in a streaming manner: "e_draft_game_captain_selection" */ - e_draft_game_captain_selection_stream: e_draft_game_captain_selection[] - /** fetch data from the table: "e_draft_game_draft_order" */ - e_draft_game_draft_order: e_draft_game_draft_order[] - /** fetch aggregated fields from the table: "e_draft_game_draft_order" */ - e_draft_game_draft_order_aggregate: e_draft_game_draft_order_aggregate - /** fetch data from the table: "e_draft_game_draft_order" using primary key columns */ - e_draft_game_draft_order_by_pk: (e_draft_game_draft_order | null) - /** fetch data from the table in a streaming manner: "e_draft_game_draft_order" */ - e_draft_game_draft_order_stream: e_draft_game_draft_order[] - /** fetch data from the table: "e_draft_game_mode" */ - e_draft_game_mode: e_draft_game_mode[] - /** fetch aggregated fields from the table: "e_draft_game_mode" */ - e_draft_game_mode_aggregate: e_draft_game_mode_aggregate - /** fetch data from the table: "e_draft_game_mode" using primary key columns */ - e_draft_game_mode_by_pk: (e_draft_game_mode | null) - /** fetch data from the table in a streaming manner: "e_draft_game_mode" */ - e_draft_game_mode_stream: e_draft_game_mode[] - /** fetch data from the table: "e_draft_game_player_status" */ - e_draft_game_player_status: e_draft_game_player_status[] - /** fetch aggregated fields from the table: "e_draft_game_player_status" */ - e_draft_game_player_status_aggregate: e_draft_game_player_status_aggregate - /** fetch data from the table: "e_draft_game_player_status" using primary key columns */ - e_draft_game_player_status_by_pk: (e_draft_game_player_status | null) - /** fetch data from the table in a streaming manner: "e_draft_game_player_status" */ - e_draft_game_player_status_stream: e_draft_game_player_status[] - /** fetch data from the table: "e_draft_game_status" */ - e_draft_game_status: e_draft_game_status[] - /** fetch aggregated fields from the table: "e_draft_game_status" */ - e_draft_game_status_aggregate: e_draft_game_status_aggregate - /** fetch data from the table: "e_draft_game_status" using primary key columns */ - e_draft_game_status_by_pk: (e_draft_game_status | null) - /** fetch data from the table in a streaming manner: "e_draft_game_status" */ - e_draft_game_status_stream: e_draft_game_status[] - /** fetch data from the table: "e_event_media_access" */ - e_event_media_access: e_event_media_access[] - /** fetch aggregated fields from the table: "e_event_media_access" */ - e_event_media_access_aggregate: e_event_media_access_aggregate - /** fetch data from the table: "e_event_media_access" using primary key columns */ - e_event_media_access_by_pk: (e_event_media_access | null) - /** fetch data from the table in a streaming manner: "e_event_media_access" */ - e_event_media_access_stream: e_event_media_access[] - /** fetch data from the table: "e_event_visibility" */ - e_event_visibility: e_event_visibility[] - /** fetch aggregated fields from the table: "e_event_visibility" */ - e_event_visibility_aggregate: e_event_visibility_aggregate - /** fetch data from the table: "e_event_visibility" using primary key columns */ - e_event_visibility_by_pk: (e_event_visibility | null) - /** fetch data from the table in a streaming manner: "e_event_visibility" */ - e_event_visibility_stream: e_event_visibility[] - /** fetch data from the table: "e_friend_status" */ - e_friend_status: e_friend_status[] - /** fetch aggregated fields from the table: "e_friend_status" */ - e_friend_status_aggregate: e_friend_status_aggregate - /** fetch data from the table: "e_friend_status" using primary key columns */ - e_friend_status_by_pk: (e_friend_status | null) - /** fetch data from the table in a streaming manner: "e_friend_status" */ - e_friend_status_stream: e_friend_status[] - /** fetch data from the table: "e_game_cfg_types" */ - e_game_cfg_types: e_game_cfg_types[] - /** fetch aggregated fields from the table: "e_game_cfg_types" */ - 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 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" */ - e_game_server_node_statuses_aggregate: e_game_server_node_statuses_aggregate - /** fetch data from the table: "e_game_server_node_statuses" using primary key columns */ - e_game_server_node_statuses_by_pk: (e_game_server_node_statuses | null) - /** fetch data from the table in a streaming manner: "e_game_server_node_statuses" */ - e_game_server_node_statuses_stream: e_game_server_node_statuses[] - /** fetch data from the table: "e_league_movement_types" */ - e_league_movement_types: e_league_movement_types[] - /** fetch aggregated fields from the table: "e_league_movement_types" */ - e_league_movement_types_aggregate: e_league_movement_types_aggregate - /** fetch data from the table: "e_league_movement_types" using primary key columns */ - e_league_movement_types_by_pk: (e_league_movement_types | null) - /** fetch data from the table in a streaming manner: "e_league_movement_types" */ - e_league_movement_types_stream: e_league_movement_types[] - /** fetch data from the table: "e_league_proposal_statuses" */ - e_league_proposal_statuses: e_league_proposal_statuses[] - /** fetch aggregated fields from the table: "e_league_proposal_statuses" */ - e_league_proposal_statuses_aggregate: e_league_proposal_statuses_aggregate - /** fetch data from the table: "e_league_proposal_statuses" using primary key columns */ - e_league_proposal_statuses_by_pk: (e_league_proposal_statuses | null) - /** fetch data from the table in a streaming manner: "e_league_proposal_statuses" */ - e_league_proposal_statuses_stream: e_league_proposal_statuses[] - /** fetch data from the table: "e_league_registration_statuses" */ - e_league_registration_statuses: e_league_registration_statuses[] - /** fetch aggregated fields from the table: "e_league_registration_statuses" */ - e_league_registration_statuses_aggregate: e_league_registration_statuses_aggregate - /** fetch data from the table: "e_league_registration_statuses" using primary key columns */ - e_league_registration_statuses_by_pk: (e_league_registration_statuses | null) - /** fetch data from the table in a streaming manner: "e_league_registration_statuses" */ - e_league_registration_statuses_stream: e_league_registration_statuses[] - /** fetch data from the table: "e_league_season_statuses" */ - e_league_season_statuses: e_league_season_statuses[] - /** fetch aggregated fields from the table: "e_league_season_statuses" */ - e_league_season_statuses_aggregate: e_league_season_statuses_aggregate - /** fetch data from the table: "e_league_season_statuses" using primary key columns */ - e_league_season_statuses_by_pk: (e_league_season_statuses | null) - /** fetch data from the table in a streaming manner: "e_league_season_statuses" */ - e_league_season_statuses_stream: e_league_season_statuses[] - /** fetch data from the table: "e_lobby_access" */ - e_lobby_access: e_lobby_access[] - /** fetch aggregated fields from the table: "e_lobby_access" */ - e_lobby_access_aggregate: e_lobby_access_aggregate - /** fetch data from the table: "e_lobby_access" using primary key columns */ - e_lobby_access_by_pk: (e_lobby_access | null) - /** fetch data from the table in a streaming manner: "e_lobby_access" */ - e_lobby_access_stream: e_lobby_access[] - /** fetch data from the table: "e_lobby_player_status" */ - e_lobby_player_status: e_lobby_player_status[] - /** fetch aggregated fields from the table: "e_lobby_player_status" */ - e_lobby_player_status_aggregate: e_lobby_player_status_aggregate - /** fetch data from the table: "e_lobby_player_status" using primary key columns */ - e_lobby_player_status_by_pk: (e_lobby_player_status | null) - /** fetch data from the table in a streaming manner: "e_lobby_player_status" */ - e_lobby_player_status_stream: e_lobby_player_status[] - /** fetch data from the table: "e_map_pool_types" */ - e_map_pool_types: e_map_pool_types[] - /** fetch aggregated fields from the table: "e_map_pool_types" */ - e_map_pool_types_aggregate: e_map_pool_types_aggregate - /** fetch data from the table: "e_map_pool_types" using primary key columns */ - e_map_pool_types_by_pk: (e_map_pool_types | null) - /** fetch data from the table in a streaming manner: "e_map_pool_types" */ - e_map_pool_types_stream: e_map_pool_types[] - /** fetch data from the table: "e_match_clip_visibility" */ - e_match_clip_visibility: e_match_clip_visibility[] - /** fetch aggregated fields from the table: "e_match_clip_visibility" */ - e_match_clip_visibility_aggregate: e_match_clip_visibility_aggregate - /** fetch data from the table: "e_match_clip_visibility" using primary key columns */ - e_match_clip_visibility_by_pk: (e_match_clip_visibility | null) - /** fetch data from the table in a streaming manner: "e_match_clip_visibility" */ - e_match_clip_visibility_stream: e_match_clip_visibility[] - /** fetch data from the table: "e_match_map_status" */ - e_match_map_status: e_match_map_status[] - /** fetch aggregated fields from the table: "e_match_map_status" */ - e_match_map_status_aggregate: e_match_map_status_aggregate - /** fetch data from the table: "e_match_map_status" using primary key columns */ - e_match_map_status_by_pk: (e_match_map_status | null) - /** fetch data from the table in a streaming manner: "e_match_map_status" */ - e_match_map_status_stream: e_match_map_status[] - /** fetch data from the table: "e_match_mode" */ - e_match_mode: e_match_mode[] - /** fetch aggregated fields from the table: "e_match_mode" */ - e_match_mode_aggregate: e_match_mode_aggregate - /** fetch data from the table: "e_match_mode" using primary key columns */ - e_match_mode_by_pk: (e_match_mode | null) - /** fetch data from the table in a streaming manner: "e_match_mode" */ - e_match_mode_stream: e_match_mode[] - /** fetch data from the table: "e_match_party_sources" */ - e_match_party_sources: e_match_party_sources[] - /** fetch aggregated fields from the table: "e_match_party_sources" */ - e_match_party_sources_aggregate: e_match_party_sources_aggregate - /** fetch data from the table: "e_match_party_sources" using primary key columns */ - e_match_party_sources_by_pk: (e_match_party_sources | null) - /** fetch data from the table in a streaming manner: "e_match_party_sources" */ - e_match_party_sources_stream: e_match_party_sources[] - /** fetch data from the table: "e_match_status" */ - e_match_status: e_match_status[] - /** fetch aggregated fields from the table: "e_match_status" */ - e_match_status_aggregate: e_match_status_aggregate - /** fetch data from the table: "e_match_status" using primary key columns */ - e_match_status_by_pk: (e_match_status | null) - /** fetch data from the table in a streaming manner: "e_match_status" */ - e_match_status_stream: e_match_status[] - /** fetch data from the table: "e_match_types" */ - e_match_types: e_match_types[] - /** fetch aggregated fields from the table: "e_match_types" */ - e_match_types_aggregate: e_match_types_aggregate - /** fetch data from the table: "e_match_types" using primary key columns */ - e_match_types_by_pk: (e_match_types | null) - /** fetch data from the table in a streaming manner: "e_match_types" */ - e_match_types_stream: e_match_types[] - /** fetch data from the table: "e_notification_types" */ - e_notification_types: e_notification_types[] - /** fetch aggregated fields from the table: "e_notification_types" */ - e_notification_types_aggregate: e_notification_types_aggregate - /** fetch data from the table: "e_notification_types" using primary key columns */ - e_notification_types_by_pk: (e_notification_types | null) - /** fetch data from the table in a streaming manner: "e_notification_types" */ - e_notification_types_stream: e_notification_types[] - /** fetch data from the table: "e_objective_types" */ - e_objective_types: e_objective_types[] - /** fetch aggregated fields from the table: "e_objective_types" */ - e_objective_types_aggregate: e_objective_types_aggregate - /** fetch data from the table: "e_objective_types" using primary key columns */ - e_objective_types_by_pk: (e_objective_types | null) - /** fetch data from the table in a streaming manner: "e_objective_types" */ - e_objective_types_stream: e_objective_types[] - /** fetch data from the table: "e_player_roles" */ - e_player_roles: e_player_roles[] - /** fetch aggregated fields from the table: "e_player_roles" */ - e_player_roles_aggregate: e_player_roles_aggregate - /** fetch data from the table: "e_player_roles" using primary key columns */ - e_player_roles_by_pk: (e_player_roles | null) - /** fetch data from the table in a streaming manner: "e_player_roles" */ - e_player_roles_stream: e_player_roles[] - /** fetch data from the table: "e_plugin_runtimes" */ - e_plugin_runtimes: e_plugin_runtimes[] - /** fetch aggregated fields from the table: "e_plugin_runtimes" */ - e_plugin_runtimes_aggregate: e_plugin_runtimes_aggregate - /** fetch data from the table: "e_plugin_runtimes" using primary key columns */ - e_plugin_runtimes_by_pk: (e_plugin_runtimes | null) - /** fetch data from the table in a streaming manner: "e_plugin_runtimes" */ - e_plugin_runtimes_stream: e_plugin_runtimes[] - /** fetch data from the table: "e_ready_settings" */ - e_ready_settings: e_ready_settings[] - /** fetch aggregated fields from the table: "e_ready_settings" */ - e_ready_settings_aggregate: e_ready_settings_aggregate - /** fetch data from the table: "e_ready_settings" using primary key columns */ - e_ready_settings_by_pk: (e_ready_settings | null) - /** fetch data from the table in a streaming manner: "e_ready_settings" */ - e_ready_settings_stream: e_ready_settings[] - /** fetch data from the table: "e_sanction_scopes" */ - e_sanction_scopes: e_sanction_scopes[] - /** fetch aggregated fields from the table: "e_sanction_scopes" */ - e_sanction_scopes_aggregate: e_sanction_scopes_aggregate - /** fetch data from the table: "e_sanction_scopes" using primary key columns */ - e_sanction_scopes_by_pk: (e_sanction_scopes | null) - /** fetch data from the table in a streaming manner: "e_sanction_scopes" */ - e_sanction_scopes_stream: e_sanction_scopes[] - /** fetch data from the table: "e_sanction_sources" */ - e_sanction_sources: e_sanction_sources[] - /** fetch aggregated fields from the table: "e_sanction_sources" */ - e_sanction_sources_aggregate: e_sanction_sources_aggregate - /** fetch data from the table: "e_sanction_sources" using primary key columns */ - e_sanction_sources_by_pk: (e_sanction_sources | null) - /** fetch data from the table in a streaming manner: "e_sanction_sources" */ - e_sanction_sources_stream: e_sanction_sources[] - /** fetch data from the table: "e_sanction_types" */ - e_sanction_types: e_sanction_types[] - /** fetch aggregated fields from the table: "e_sanction_types" */ - e_sanction_types_aggregate: e_sanction_types_aggregate - /** fetch data from the table: "e_sanction_types" using primary key columns */ - e_sanction_types_by_pk: (e_sanction_types | null) - /** fetch data from the table in a streaming manner: "e_sanction_types" */ - e_sanction_types_stream: e_sanction_types[] - /** fetch data from the table: "e_scrim_request_statuses" */ - e_scrim_request_statuses: e_scrim_request_statuses[] - /** fetch aggregated fields from the table: "e_scrim_request_statuses" */ - e_scrim_request_statuses_aggregate: e_scrim_request_statuses_aggregate - /** fetch data from the table: "e_scrim_request_statuses" using primary key columns */ - e_scrim_request_statuses_by_pk: (e_scrim_request_statuses | null) - /** fetch data from the table in a streaming manner: "e_scrim_request_statuses" */ - e_scrim_request_statuses_stream: e_scrim_request_statuses[] - /** fetch data from the table: "e_server_types" */ - e_server_types: e_server_types[] - /** fetch aggregated fields from the table: "e_server_types" */ - e_server_types_aggregate: e_server_types_aggregate - /** fetch data from the table: "e_server_types" using primary key columns */ - e_server_types_by_pk: (e_server_types | null) - /** fetch data from the table in a streaming manner: "e_server_types" */ - e_server_types_stream: e_server_types[] - /** fetch data from the table: "e_sides" */ - e_sides: e_sides[] - /** fetch aggregated fields from the table: "e_sides" */ - e_sides_aggregate: e_sides_aggregate - /** fetch data from the table: "e_sides" using primary key columns */ - e_sides_by_pk: (e_sides | null) - /** fetch data from the table in a streaming manner: "e_sides" */ - e_sides_stream: e_sides[] - /** fetch data from the table: "e_system_alert_types" */ - e_system_alert_types: e_system_alert_types[] - /** fetch aggregated fields from the table: "e_system_alert_types" */ - e_system_alert_types_aggregate: e_system_alert_types_aggregate - /** fetch data from the table: "e_system_alert_types" using primary key columns */ - e_system_alert_types_by_pk: (e_system_alert_types | null) - /** fetch data from the table in a streaming manner: "e_system_alert_types" */ - e_system_alert_types_stream: e_system_alert_types[] - /** fetch data from the table: "e_team_roles" */ - e_team_roles: e_team_roles[] - /** fetch aggregated fields from the table: "e_team_roles" */ - e_team_roles_aggregate: e_team_roles_aggregate - /** fetch data from the table: "e_team_roles" using primary key columns */ - e_team_roles_by_pk: (e_team_roles | null) - /** fetch data from the table in a streaming manner: "e_team_roles" */ - e_team_roles_stream: e_team_roles[] - /** fetch data from the table: "e_team_roster_statuses" */ - e_team_roster_statuses: e_team_roster_statuses[] - /** fetch aggregated fields from the table: "e_team_roster_statuses" */ - e_team_roster_statuses_aggregate: e_team_roster_statuses_aggregate - /** fetch data from the table: "e_team_roster_statuses" using primary key columns */ - e_team_roster_statuses_by_pk: (e_team_roster_statuses | null) - /** fetch data from the table in a streaming manner: "e_team_roster_statuses" */ - e_team_roster_statuses_stream: e_team_roster_statuses[] - /** fetch data from the table: "e_timeout_settings" */ - e_timeout_settings: e_timeout_settings[] - /** fetch aggregated fields from the table: "e_timeout_settings" */ - e_timeout_settings_aggregate: e_timeout_settings_aggregate - /** fetch data from the table: "e_timeout_settings" using primary key columns */ - e_timeout_settings_by_pk: (e_timeout_settings | null) - /** fetch data from the table in a streaming manner: "e_timeout_settings" */ - e_timeout_settings_stream: e_timeout_settings[] - /** fetch data from the table: "e_tournament_categories" */ - e_tournament_categories: e_tournament_categories[] - /** fetch aggregated fields from the table: "e_tournament_categories" */ - e_tournament_categories_aggregate: e_tournament_categories_aggregate - /** fetch data from the table: "e_tournament_categories" using primary key columns */ - e_tournament_categories_by_pk: (e_tournament_categories | null) - /** fetch data from the table in a streaming manner: "e_tournament_categories" */ - e_tournament_categories_stream: e_tournament_categories[] - /** fetch data from the table: "e_tournament_free_agent_statuses" */ - e_tournament_free_agent_statuses: e_tournament_free_agent_statuses[] - /** fetch aggregated fields from the table: "e_tournament_free_agent_statuses" */ - e_tournament_free_agent_statuses_aggregate: e_tournament_free_agent_statuses_aggregate - /** fetch data from the table: "e_tournament_free_agent_statuses" using primary key columns */ - e_tournament_free_agent_statuses_by_pk: (e_tournament_free_agent_statuses | null) - /** fetch data from the table in a streaming manner: "e_tournament_free_agent_statuses" */ - e_tournament_free_agent_statuses_stream: e_tournament_free_agent_statuses[] - /** fetch data from the table: "e_tournament_registration_types" */ - e_tournament_registration_types: e_tournament_registration_types[] - /** fetch aggregated fields from the table: "e_tournament_registration_types" */ - e_tournament_registration_types_aggregate: e_tournament_registration_types_aggregate - /** fetch data from the table: "e_tournament_registration_types" using primary key columns */ - e_tournament_registration_types_by_pk: (e_tournament_registration_types | null) - /** fetch data from the table in a streaming manner: "e_tournament_registration_types" */ - e_tournament_registration_types_stream: e_tournament_registration_types[] - /** fetch data from the table: "e_tournament_stage_types" */ - e_tournament_stage_types: e_tournament_stage_types[] - /** fetch aggregated fields from the table: "e_tournament_stage_types" */ - e_tournament_stage_types_aggregate: e_tournament_stage_types_aggregate - /** fetch data from the table: "e_tournament_stage_types" using primary key columns */ - e_tournament_stage_types_by_pk: (e_tournament_stage_types | null) - /** fetch data from the table in a streaming manner: "e_tournament_stage_types" */ - e_tournament_stage_types_stream: e_tournament_stage_types[] - /** fetch data from the table: "e_tournament_status" */ - e_tournament_status: e_tournament_status[] - /** fetch aggregated fields from the table: "e_tournament_status" */ - e_tournament_status_aggregate: e_tournament_status_aggregate - /** fetch data from the table: "e_tournament_status" using primary key columns */ - e_tournament_status_by_pk: (e_tournament_status | null) - /** fetch data from the table in a streaming manner: "e_tournament_status" */ - e_tournament_status_stream: e_tournament_status[] - /** fetch data from the table: "e_utility_practice_access" */ - e_utility_practice_access: e_utility_practice_access[] - /** fetch aggregated fields from the table: "e_utility_practice_access" */ - e_utility_practice_access_aggregate: e_utility_practice_access_aggregate - /** fetch data from the table: "e_utility_practice_access" using primary key columns */ - e_utility_practice_access_by_pk: (e_utility_practice_access | null) - /** fetch data from the table in a streaming manner: "e_utility_practice_access" */ - e_utility_practice_access_stream: e_utility_practice_access[] - /** fetch data from the table: "e_utility_practice_statuses" */ - e_utility_practice_statuses: e_utility_practice_statuses[] - /** fetch aggregated fields from the table: "e_utility_practice_statuses" */ - e_utility_practice_statuses_aggregate: e_utility_practice_statuses_aggregate - /** fetch data from the table: "e_utility_practice_statuses" using primary key columns */ - e_utility_practice_statuses_by_pk: (e_utility_practice_statuses | null) - /** fetch data from the table in a streaming manner: "e_utility_practice_statuses" */ - e_utility_practice_statuses_stream: e_utility_practice_statuses[] - /** fetch data from the table: "e_utility_sources" */ - e_utility_sources: e_utility_sources[] - /** fetch aggregated fields from the table: "e_utility_sources" */ - e_utility_sources_aggregate: e_utility_sources_aggregate - /** fetch data from the table: "e_utility_sources" using primary key columns */ - e_utility_sources_by_pk: (e_utility_sources | null) - /** fetch data from the table in a streaming manner: "e_utility_sources" */ - e_utility_sources_stream: e_utility_sources[] - /** fetch data from the table: "e_utility_techniques" */ - e_utility_techniques: e_utility_techniques[] - /** fetch aggregated fields from the table: "e_utility_techniques" */ - e_utility_techniques_aggregate: e_utility_techniques_aggregate - /** fetch data from the table: "e_utility_techniques" using primary key columns */ - e_utility_techniques_by_pk: (e_utility_techniques | null) - /** fetch data from the table in a streaming manner: "e_utility_techniques" */ - e_utility_techniques_stream: e_utility_techniques[] - /** fetch data from the table: "e_utility_throw_strengths" */ - e_utility_throw_strengths: e_utility_throw_strengths[] - /** fetch aggregated fields from the table: "e_utility_throw_strengths" */ - e_utility_throw_strengths_aggregate: e_utility_throw_strengths_aggregate - /** fetch data from the table: "e_utility_throw_strengths" using primary key columns */ - e_utility_throw_strengths_by_pk: (e_utility_throw_strengths | null) - /** fetch data from the table in a streaming manner: "e_utility_throw_strengths" */ - e_utility_throw_strengths_stream: e_utility_throw_strengths[] - /** fetch data from the table: "e_utility_types" */ - e_utility_types: e_utility_types[] - /** fetch aggregated fields from the table: "e_utility_types" */ - e_utility_types_aggregate: e_utility_types_aggregate - /** fetch data from the table: "e_utility_types" using primary key columns */ - e_utility_types_by_pk: (e_utility_types | null) - /** fetch data from the table in a streaming manner: "e_utility_types" */ - e_utility_types_stream: e_utility_types[] - /** fetch data from the table: "e_utility_visibility" */ - e_utility_visibility: e_utility_visibility[] - /** fetch aggregated fields from the table: "e_utility_visibility" */ - e_utility_visibility_aggregate: e_utility_visibility_aggregate - /** fetch data from the table: "e_utility_visibility" using primary key columns */ - e_utility_visibility_by_pk: (e_utility_visibility | null) - /** fetch data from the table in a streaming manner: "e_utility_visibility" */ - e_utility_visibility_stream: e_utility_visibility[] - /** fetch data from the table: "e_veto_pick_types" */ - e_veto_pick_types: e_veto_pick_types[] - /** fetch aggregated fields from the table: "e_veto_pick_types" */ - e_veto_pick_types_aggregate: e_veto_pick_types_aggregate - /** fetch data from the table: "e_veto_pick_types" using primary key columns */ - e_veto_pick_types_by_pk: (e_veto_pick_types | null) - /** fetch data from the table in a streaming manner: "e_veto_pick_types" */ - e_veto_pick_types_stream: e_veto_pick_types[] - /** fetch data from the table: "e_winning_reasons" */ - e_winning_reasons: e_winning_reasons[] - /** fetch aggregated fields from the table: "e_winning_reasons" */ - e_winning_reasons_aggregate: e_winning_reasons_aggregate - /** fetch data from the table: "e_winning_reasons" using primary key columns */ - e_winning_reasons_by_pk: (e_winning_reasons | null) - /** fetch data from the table in a streaming manner: "e_winning_reasons" */ - e_winning_reasons_stream: e_winning_reasons[] - /** fetch data from the table: "event_match_links" */ - event_match_links: event_match_links[] - /** fetch aggregated fields from the table: "event_match_links" */ - event_match_links_aggregate: event_match_links_aggregate - /** fetch data from the table: "event_match_links" using primary key columns */ - event_match_links_by_pk: (event_match_links | null) - /** fetch data from the table in a streaming manner: "event_match_links" */ - event_match_links_stream: event_match_links[] - /** fetch data from the table: "event_media" */ - event_media: event_media[] - /** fetch aggregated fields from the table: "event_media" */ - event_media_aggregate: event_media_aggregate - /** fetch data from the table: "event_media" using primary key columns */ - event_media_by_pk: (event_media | null) - /** fetch data from the table: "event_media_players" */ - event_media_players: event_media_players[] - /** fetch aggregated fields from the table: "event_media_players" */ - event_media_players_aggregate: event_media_players_aggregate - /** fetch data from the table: "event_media_players" using primary key columns */ - event_media_players_by_pk: (event_media_players | null) - /** fetch data from the table in a streaming manner: "event_media_players" */ - event_media_players_stream: event_media_players[] - /** fetch data from the table in a streaming manner: "event_media" */ - event_media_stream: event_media[] - /** fetch data from the table: "event_organizers" */ - event_organizers: event_organizers[] - /** fetch aggregated fields from the table: "event_organizers" */ - event_organizers_aggregate: event_organizers_aggregate - /** fetch data from the table: "event_organizers" using primary key columns */ - event_organizers_by_pk: (event_organizers | null) - /** fetch data from the table in a streaming manner: "event_organizers" */ - event_organizers_stream: event_organizers[] - /** fetch data from the table: "event_players" */ - event_players: event_players[] - /** fetch aggregated fields from the table: "event_players" */ - event_players_aggregate: event_players_aggregate - /** fetch data from the table: "event_players" using primary key columns */ - event_players_by_pk: (event_players | null) - /** fetch data from the table in a streaming manner: "event_players" */ - event_players_stream: event_players[] - /** fetch data from the table: "event_teams" */ - event_teams: event_teams[] - /** fetch aggregated fields from the table: "event_teams" */ - event_teams_aggregate: event_teams_aggregate - /** fetch data from the table: "event_teams" using primary key columns */ - event_teams_by_pk: (event_teams | null) - /** fetch data from the table in a streaming manner: "event_teams" */ - event_teams_stream: event_teams[] - /** fetch data from the table: "event_tournaments" */ - event_tournaments: event_tournaments[] - /** fetch aggregated fields from the table: "event_tournaments" */ - event_tournaments_aggregate: event_tournaments_aggregate - /** fetch data from the table: "event_tournaments" using primary key columns */ - event_tournaments_by_pk: (event_tournaments | null) - /** fetch data from the table in a streaming manner: "event_tournaments" */ - event_tournaments_stream: event_tournaments[] - /** fetch data from the table: "events" */ - events: events[] - /** fetch aggregated fields from the table: "events" */ - events_aggregate: events_aggregate - /** fetch data from the table: "events" using primary key columns */ - events_by_pk: (events | null) - /** fetch data from the table in a streaming manner: "events" */ - events_stream: events[] - /** fetch data from the table: "friends" */ - friends: friends[] - /** fetch aggregated fields from the table: "friends" */ - friends_aggregate: friends_aggregate - /** fetch data from the table: "friends" using primary key columns */ - 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 */ - game_server_nodes_aggregate: game_server_nodes_aggregate - /** fetch data from the table: "game_server_nodes" using primary key columns */ - game_server_nodes_by_pk: (game_server_nodes | null) - /** fetch data from the table in a streaming manner: "game_server_nodes" */ - game_server_nodes_stream: game_server_nodes[] - /** fetch data from the table: "game_versions" */ - game_versions: game_versions[] - /** fetch aggregated fields from the table: "game_versions" */ - game_versions_aggregate: game_versions_aggregate - /** fetch data from the table: "game_versions" using primary key columns */ - game_versions_by_pk: (game_versions | null) - /** fetch data from the table in a streaming manner: "game_versions" */ - game_versions_stream: game_versions[] - /** fetch data from the table: "gamedata_signature_validations" */ - gamedata_signature_validations: gamedata_signature_validations[] - /** fetch aggregated fields from the table: "gamedata_signature_validations" */ - gamedata_signature_validations_aggregate: gamedata_signature_validations_aggregate - /** fetch data from the table: "gamedata_signature_validations" using primary key columns */ - gamedata_signature_validations_by_pk: (gamedata_signature_validations | null) - /** fetch data from the table in a streaming manner: "gamedata_signature_validations" */ - gamedata_signature_validations_stream: gamedata_signature_validations[] - /** execute function "get_event_leaderboard" which returns "leaderboard_entries" */ - get_event_leaderboard: leaderboard_entries[] - /** execute function "get_event_leaderboard" and query aggregates on result of table type "leaderboard_entries" */ - get_event_leaderboard_aggregate: leaderboard_entries_aggregate - /** execute function "get_leaderboard" which returns "leaderboard_entries" */ - get_leaderboard: leaderboard_entries[] - /** execute function "get_leaderboard" and query aggregates on result of table type "leaderboard_entries" */ - get_leaderboard_aggregate: leaderboard_entries_aggregate - /** execute function "get_league_season_leaderboard" which returns "leaderboard_entries" */ - get_league_season_leaderboard: leaderboard_entries[] - /** execute function "get_league_season_leaderboard" and query aggregates on result of table type "leaderboard_entries" */ - get_league_season_leaderboard_aggregate: leaderboard_entries_aggregate - /** execute function "get_player_leaderboard_rank" which returns "player_leaderboard_rank" */ - get_player_leaderboard_rank: player_leaderboard_rank[] - /** execute function "get_player_leaderboard_rank" and query aggregates on result of table type "player_leaderboard_rank" */ - get_player_leaderboard_rank_aggregate: player_leaderboard_rank_aggregate - /** execute function "get_tournament_leaderboard" which returns "tournament_leaderboard_entries" */ - get_tournament_leaderboard: tournament_leaderboard_entries[] - /** execute function "get_tournament_leaderboard" and query aggregates on result of table type "tournament_leaderboard_entries" */ - get_tournament_leaderboard_aggregate: tournament_leaderboard_entries_aggregate - /** fetch data from the table: "leaderboard_entries" */ - leaderboard_entries: leaderboard_entries[] - /** fetch aggregated fields from the table: "leaderboard_entries" */ - leaderboard_entries_aggregate: leaderboard_entries_aggregate - /** fetch data from the table in a streaming manner: "leaderboard_entries" */ - leaderboard_entries_stream: leaderboard_entries[] - /** fetch data from the table: "league_divisions" */ - league_divisions: league_divisions[] - /** fetch aggregated fields from the table: "league_divisions" */ - league_divisions_aggregate: league_divisions_aggregate - /** fetch data from the table: "league_divisions" using primary key columns */ - league_divisions_by_pk: (league_divisions | null) - /** fetch data from the table in a streaming manner: "league_divisions" */ - league_divisions_stream: league_divisions[] - /** fetch data from the table: "league_match_weeks" */ - league_match_weeks: league_match_weeks[] - /** fetch aggregated fields from the table: "league_match_weeks" */ - league_match_weeks_aggregate: league_match_weeks_aggregate - /** fetch data from the table: "league_match_weeks" using primary key columns */ - league_match_weeks_by_pk: (league_match_weeks | null) - /** fetch data from the table in a streaming manner: "league_match_weeks" */ - league_match_weeks_stream: league_match_weeks[] - /** fetch data from the table: "league_relegation_playoffs" */ - league_relegation_playoffs: league_relegation_playoffs[] - /** fetch aggregated fields from the table: "league_relegation_playoffs" */ - league_relegation_playoffs_aggregate: league_relegation_playoffs_aggregate - /** fetch data from the table: "league_relegation_playoffs" using primary key columns */ - league_relegation_playoffs_by_pk: (league_relegation_playoffs | null) - /** fetch data from the table in a streaming manner: "league_relegation_playoffs" */ - league_relegation_playoffs_stream: league_relegation_playoffs[] - /** fetch data from the table: "league_scheduling_proposals" */ - league_scheduling_proposals: league_scheduling_proposals[] - /** fetch aggregated fields from the table: "league_scheduling_proposals" */ - league_scheduling_proposals_aggregate: league_scheduling_proposals_aggregate - /** fetch data from the table: "league_scheduling_proposals" using primary key columns */ - league_scheduling_proposals_by_pk: (league_scheduling_proposals | null) - /** fetch data from the table in a streaming manner: "league_scheduling_proposals" */ - league_scheduling_proposals_stream: league_scheduling_proposals[] - /** fetch data from the table: "league_season_divisions" */ - league_season_divisions: league_season_divisions[] - /** fetch aggregated fields from the table: "league_season_divisions" */ - league_season_divisions_aggregate: league_season_divisions_aggregate - /** fetch data from the table: "league_season_divisions" using primary key columns */ - league_season_divisions_by_pk: (league_season_divisions | null) - /** fetch data from the table in a streaming manner: "league_season_divisions" */ - league_season_divisions_stream: league_season_divisions[] - /** fetch data from the table: "league_seasons" */ - league_seasons: league_seasons[] - /** fetch aggregated fields from the table: "league_seasons" */ - league_seasons_aggregate: league_seasons_aggregate - /** fetch data from the table: "league_seasons" using primary key columns */ - league_seasons_by_pk: (league_seasons | null) - /** fetch data from the table in a streaming manner: "league_seasons" */ - league_seasons_stream: league_seasons[] - /** fetch data from the table: "league_team_movements" */ - league_team_movements: league_team_movements[] - /** fetch aggregated fields from the table: "league_team_movements" */ - league_team_movements_aggregate: league_team_movements_aggregate - /** fetch data from the table: "league_team_movements" using primary key columns */ - league_team_movements_by_pk: (league_team_movements | null) - /** fetch data from the table in a streaming manner: "league_team_movements" */ - league_team_movements_stream: league_team_movements[] - /** fetch data from the table: "league_team_rosters" */ - league_team_rosters: league_team_rosters[] - /** fetch aggregated fields from the table: "league_team_rosters" */ - league_team_rosters_aggregate: league_team_rosters_aggregate - /** fetch data from the table: "league_team_rosters" using primary key columns */ - league_team_rosters_by_pk: (league_team_rosters | null) - /** fetch data from the table in a streaming manner: "league_team_rosters" */ - league_team_rosters_stream: league_team_rosters[] - /** fetch data from the table: "league_team_seasons" */ - league_team_seasons: league_team_seasons[] - /** fetch aggregated fields from the table: "league_team_seasons" */ - league_team_seasons_aggregate: league_team_seasons_aggregate - /** fetch data from the table: "league_team_seasons" using primary key columns */ - league_team_seasons_by_pk: (league_team_seasons | null) - /** fetch data from the table in a streaming manner: "league_team_seasons" */ - league_team_seasons_stream: league_team_seasons[] - /** fetch data from the table: "league_teams" */ - league_teams: league_teams[] - /** fetch aggregated fields from the table: "league_teams" */ - league_teams_aggregate: league_teams_aggregate - /** fetch data from the table: "league_teams" using primary key columns */ - league_teams_by_pk: (league_teams | null) - /** fetch data from the table in a streaming manner: "league_teams" */ - league_teams_stream: league_teams[] - /** fetch data from the table: "lobbies" */ - lobbies: lobbies[] - /** fetch aggregated fields from the table: "lobbies" */ - lobbies_aggregate: lobbies_aggregate - /** fetch data from the table: "lobbies" using primary key columns */ - lobbies_by_pk: (lobbies | null) - /** fetch data from the table in a streaming manner: "lobbies" */ - lobbies_stream: lobbies[] - /** An array relationship */ - lobby_players: lobby_players[] - /** An aggregate relationship */ - lobby_players_aggregate: lobby_players_aggregate - /** fetch data from the table: "lobby_players" using primary key columns */ - lobby_players_by_pk: (lobby_players | null) - /** fetch data from the table in a streaming manner: "lobby_players" */ - lobby_players_stream: lobby_players[] - /** fetch data from the table: "map_callouts" */ - map_callouts: map_callouts[] - /** fetch aggregated fields from the table: "map_callouts" */ - map_callouts_aggregate: map_callouts_aggregate - /** fetch data from the table: "map_callouts" using primary key columns */ - map_callouts_by_pk: (map_callouts | null) - /** fetch data from the table in a streaming manner: "map_callouts" */ - map_callouts_stream: map_callouts[] - /** fetch data from the table: "map_pools" */ - map_pools: map_pools[] - /** fetch aggregated fields from the table: "map_pools" */ - map_pools_aggregate: map_pools_aggregate - /** fetch data from the table: "map_pools" using primary key columns */ - map_pools_by_pk: (map_pools | null) - /** fetch data from the table in a streaming manner: "map_pools" */ - map_pools_stream: map_pools[] - /** An array relationship */ - maps: maps[] - /** An aggregate relationship */ - maps_aggregate: maps_aggregate - /** fetch data from the table: "maps" using primary key columns */ - maps_by_pk: (maps | null) - /** fetch data from the table in a streaming manner: "maps" */ - maps_stream: maps[] - /** An array relationship */ - match_clips: match_clips[] - /** An aggregate relationship */ - match_clips_aggregate: match_clips_aggregate - /** fetch data from the table: "match_clips" using primary key columns */ - match_clips_by_pk: (match_clips | null) - /** fetch data from the table in a streaming manner: "match_clips" */ - match_clips_stream: match_clips[] - /** fetch data from the table: "match_demo_sessions" */ - match_demo_sessions: match_demo_sessions[] - /** fetch aggregated fields from the table: "match_demo_sessions" */ - match_demo_sessions_aggregate: match_demo_sessions_aggregate - /** fetch data from the table: "match_demo_sessions" using primary key columns */ - match_demo_sessions_by_pk: (match_demo_sessions | null) - /** fetch data from the table in a streaming manner: "match_demo_sessions" */ - match_demo_sessions_stream: match_demo_sessions[] - /** An array relationship */ - match_lineup_players: match_lineup_players[] - /** An aggregate relationship */ - match_lineup_players_aggregate: match_lineup_players_aggregate - /** fetch data from the table: "match_lineup_players" using primary key columns */ - match_lineup_players_by_pk: (match_lineup_players | null) - /** fetch data from the table in a streaming manner: "match_lineup_players" */ - match_lineup_players_stream: match_lineup_players[] - /** An array relationship */ - match_lineups: match_lineups[] - /** An aggregate relationship */ - match_lineups_aggregate: match_lineups_aggregate - /** fetch data from the table: "match_lineups" using primary key columns */ - match_lineups_by_pk: (match_lineups | null) - /** fetch data from the table in a streaming manner: "match_lineups" */ - match_lineups_stream: match_lineups[] - /** fetch data from the table: "match_map_demos" */ - match_map_demos: match_map_demos[] - /** fetch aggregated fields from the table: "match_map_demos" */ - match_map_demos_aggregate: match_map_demos_aggregate - /** fetch data from the table: "match_map_demos" using primary key columns */ - match_map_demos_by_pk: (match_map_demos | null) - /** fetch data from the table in a streaming manner: "match_map_demos" */ - match_map_demos_stream: match_map_demos[] - /** fetch data from the table: "match_map_rounds" */ - match_map_rounds: match_map_rounds[] - /** fetch aggregated fields from the table: "match_map_rounds" */ - match_map_rounds_aggregate: match_map_rounds_aggregate - /** fetch data from the table: "match_map_rounds" using primary key columns */ - match_map_rounds_by_pk: (match_map_rounds | null) - /** fetch data from the table in a streaming manner: "match_map_rounds" */ - match_map_rounds_stream: match_map_rounds[] - /** fetch data from the table: "match_map_veto_picks" */ - match_map_veto_picks: match_map_veto_picks[] - /** fetch aggregated fields from the table: "match_map_veto_picks" */ - match_map_veto_picks_aggregate: match_map_veto_picks_aggregate - /** fetch data from the table: "match_map_veto_picks" using primary key columns */ - match_map_veto_picks_by_pk: (match_map_veto_picks | null) - /** fetch data from the table in a streaming manner: "match_map_veto_picks" */ - match_map_veto_picks_stream: match_map_veto_picks[] - /** An array relationship */ - match_maps: match_maps[] - /** An aggregate relationship */ - 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 in a streaming manner: "match_maps" */ - match_maps_stream: match_maps[] - /** An array relationship */ - match_options: 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) - /** fetch data from the table in a streaming manner: "match_options" */ - match_options_stream: match_options[] - /** fetch data from the table: "match_region_veto_picks" */ - match_region_veto_picks: match_region_veto_picks[] - /** fetch aggregated fields from the table: "match_region_veto_picks" */ - match_region_veto_picks_aggregate: match_region_veto_picks_aggregate - /** fetch data from the table: "match_region_veto_picks" using primary key columns */ - match_region_veto_picks_by_pk: (match_region_veto_picks | null) - /** fetch data from the table in a streaming manner: "match_region_veto_picks" */ - match_region_veto_picks_stream: match_region_veto_picks[] - /** fetch data from the table: "match_streams" */ - match_streams: match_streams[] - /** fetch aggregated fields from the table: "match_streams" */ - match_streams_aggregate: match_streams_aggregate - /** fetch data from the table: "match_streams" using primary key columns */ - match_streams_by_pk: (match_streams | null) - /** fetch data from the table in a streaming manner: "match_streams" */ - match_streams_stream: match_streams[] - /** fetch data from the table: "match_type_cfgs" */ - match_type_cfgs: match_type_cfgs[] - /** fetch aggregated fields from the table: "match_type_cfgs" */ - match_type_cfgs_aggregate: match_type_cfgs_aggregate - /** fetch data from the table: "match_type_cfgs" using primary key columns */ - match_type_cfgs_by_pk: (match_type_cfgs | null) - /** fetch data from the table in a streaming manner: "match_type_cfgs" */ - match_type_cfgs_stream: match_type_cfgs[] - /** An array relationship */ - matches: matches[] - /** An aggregate relationship */ - matches_aggregate: matches_aggregate - /** fetch data from the table: "matches" using primary key columns */ - matches_by_pk: (matches | null) - /** fetch data from the table in a streaming manner: "matches" */ - matches_stream: matches[] - /** fetch data from the table: "migration_hashes.hashes" */ - migration_hashes_hashes: migration_hashes_hashes[] - /** fetch aggregated fields from the table: "migration_hashes.hashes" */ - migration_hashes_hashes_aggregate: migration_hashes_hashes_aggregate - /** fetch data from the table: "migration_hashes.hashes" using primary key columns */ - migration_hashes_hashes_by_pk: (migration_hashes_hashes | null) - /** fetch data from the table in a streaming manner: "migration_hashes.hashes" */ - migration_hashes_hashes_stream: migration_hashes_hashes[] - /** fetch data from the table: "v_my_friends" */ - my_friends: my_friends[] - /** fetch aggregated fields from the table: "v_my_friends" */ - my_friends_aggregate: my_friends_aggregate - /** fetch data from the table in a streaming manner: "v_my_friends" */ - my_friends_stream: my_friends[] - /** fetch data from the table: "news_articles" */ - news_articles: news_articles[] - /** fetch aggregated fields from the table: "news_articles" */ - news_articles_aggregate: news_articles_aggregate - /** fetch data from the table: "news_articles" using primary key columns */ - news_articles_by_pk: (news_articles | null) - /** fetch data from the table in a streaming manner: "news_articles" */ - news_articles_stream: news_articles[] - /** fetch data from the table: "notification_preferences" */ - notification_preferences: notification_preferences[] - /** fetch aggregated fields from the table: "notification_preferences" */ - notification_preferences_aggregate: notification_preferences_aggregate - /** fetch data from the table: "notification_preferences" using primary key columns */ - notification_preferences_by_pk: (notification_preferences | null) - /** fetch data from the table in a streaming manner: "notification_preferences" */ - notification_preferences_stream: notification_preferences[] - /** An array relationship */ - notifications: notifications[] - /** An aggregate relationship */ - notifications_aggregate: notifications_aggregate - /** fetch data from the table: "notifications" using primary key columns */ - notifications_by_pk: (notifications | null) - /** fetch data from the table in a streaming manner: "notifications" */ - notifications_stream: notifications[] - /** fetch data from the table: "pending_match_import_players" */ - pending_match_import_players: pending_match_import_players[] - /** fetch aggregated fields from the table: "pending_match_import_players" */ - pending_match_import_players_aggregate: pending_match_import_players_aggregate - /** fetch data from the table: "pending_match_import_players" using primary key columns */ - pending_match_import_players_by_pk: (pending_match_import_players | null) - /** fetch data from the table in a streaming manner: "pending_match_import_players" */ - pending_match_import_players_stream: pending_match_import_players[] - /** fetch data from the table: "pending_match_imports" */ - pending_match_imports: pending_match_imports[] - /** fetch aggregated fields from the table: "pending_match_imports" */ - pending_match_imports_aggregate: pending_match_imports_aggregate - /** fetch data from the table: "pending_match_imports" using primary key columns */ - pending_match_imports_by_pk: (pending_match_imports | null) - /** fetch data from the table in a streaming manner: "pending_match_imports" */ - pending_match_imports_stream: pending_match_imports[] - /** fetch data from the table: "player_aim_stats_demo" */ - player_aim_stats_demo: player_aim_stats_demo[] - /** fetch aggregated fields from the table: "player_aim_stats_demo" */ - player_aim_stats_demo_aggregate: player_aim_stats_demo_aggregate - /** fetch data from the table: "player_aim_stats_demo" using primary key columns */ - player_aim_stats_demo_by_pk: (player_aim_stats_demo | null) - /** fetch data from the table in a streaming manner: "player_aim_stats_demo" */ - player_aim_stats_demo_stream: player_aim_stats_demo[] - /** fetch data from the table: "player_aim_weapon_stats" */ - player_aim_weapon_stats: player_aim_weapon_stats[] - /** fetch aggregated fields from the table: "player_aim_weapon_stats" */ - player_aim_weapon_stats_aggregate: player_aim_weapon_stats_aggregate - /** fetch data from the table: "player_aim_weapon_stats" using primary key columns */ - player_aim_weapon_stats_by_pk: (player_aim_weapon_stats | null) - /** fetch data from the table in a streaming manner: "player_aim_weapon_stats" */ - player_aim_weapon_stats_stream: player_aim_weapon_stats[] - /** An array relationship */ - player_assists: player_assists[] - /** An aggregate relationship */ - player_assists_aggregate: player_assists_aggregate - /** fetch data from the table: "player_assists" using primary key columns */ - player_assists_by_pk: (player_assists | null) - /** fetch data from the table in a streaming manner: "player_assists" */ - player_assists_stream: player_assists[] - /** fetch data from the table: "player_career_stats_v" */ - player_career_stats_v: player_career_stats_v[] - /** fetch aggregated fields from the table: "player_career_stats_v" */ - player_career_stats_v_aggregate: player_career_stats_v_aggregate - /** fetch data from the table in a streaming manner: "player_career_stats_v" */ - player_career_stats_v_stream: player_career_stats_v[] - /** An array relationship */ - player_damages: player_damages[] - /** An aggregate relationship */ - player_damages_aggregate: player_damages_aggregate - /** fetch data from the table: "player_damages" using primary key columns */ - player_damages_by_pk: (player_damages | null) - /** fetch data from the table in a streaming manner: "player_damages" */ - player_damages_stream: player_damages[] - /** fetch data from the table: "player_elo" */ - player_elo: player_elo[] - /** fetch aggregated fields from the table: "player_elo" */ - player_elo_aggregate: player_elo_aggregate - /** fetch data from the table: "player_elo" using primary key columns */ - player_elo_by_pk: (player_elo | null) - /** fetch data from the table in a streaming manner: "player_elo" */ - player_elo_stream: player_elo[] - /** fetch data from the table: "player_faceit_rank_history" */ - player_faceit_rank_history: player_faceit_rank_history[] - /** fetch aggregated fields from the table: "player_faceit_rank_history" */ - player_faceit_rank_history_aggregate: player_faceit_rank_history_aggregate - /** fetch data from the table: "player_faceit_rank_history" using primary key columns */ - player_faceit_rank_history_by_pk: (player_faceit_rank_history | null) - /** fetch data from the table in a streaming manner: "player_faceit_rank_history" */ - player_faceit_rank_history_stream: player_faceit_rank_history[] - /** An array relationship */ - player_flashes: player_flashes[] - /** An aggregate relationship */ - player_flashes_aggregate: player_flashes_aggregate - /** fetch data from the table: "player_flashes" using primary key columns */ - player_flashes_by_pk: (player_flashes | null) - /** fetch data from the table in a streaming manner: "player_flashes" */ - player_flashes_stream: player_flashes[] - /** An array relationship */ - player_kills: player_kills[] - /** An aggregate relationship */ - player_kills_aggregate: player_kills_aggregate - /** fetch data from the table: "player_kills" using primary key columns */ - player_kills_by_pk: (player_kills | null) - /** fetch data from the table: "player_kills_by_weapon" */ - player_kills_by_weapon: player_kills_by_weapon[] - /** fetch aggregated fields from the table: "player_kills_by_weapon" */ - player_kills_by_weapon_aggregate: player_kills_by_weapon_aggregate - /** fetch data from the table: "player_kills_by_weapon" using primary key columns */ - player_kills_by_weapon_by_pk: (player_kills_by_weapon | null) - /** fetch data from the table in a streaming manner: "player_kills_by_weapon" */ - player_kills_by_weapon_stream: player_kills_by_weapon[] - /** fetch data from the table in a streaming manner: "player_kills" */ - player_kills_stream: player_kills[] - /** fetch data from the table: "player_leaderboard_rank" */ - player_leaderboard_rank: player_leaderboard_rank[] - /** fetch aggregated fields from the table: "player_leaderboard_rank" */ - player_leaderboard_rank_aggregate: player_leaderboard_rank_aggregate - /** fetch data from the table in a streaming manner: "player_leaderboard_rank" */ - player_leaderboard_rank_stream: player_leaderboard_rank[] - /** fetch data from the table: "player_match_map_stats" */ - player_match_map_stats: player_match_map_stats[] - /** fetch aggregated fields from the table: "player_match_map_stats" */ - player_match_map_stats_aggregate: player_match_map_stats_aggregate - /** fetch data from the table: "player_match_map_stats" using primary key columns */ - player_match_map_stats_by_pk: (player_match_map_stats | null) - /** fetch data from the table in a streaming manner: "player_match_map_stats" */ - player_match_map_stats_stream: player_match_map_stats[] - /** fetch data from the table: "player_match_performance_v" */ - player_match_performance_v: player_match_performance_v[] - /** fetch aggregated fields from the table: "player_match_performance_v" */ - player_match_performance_v_aggregate: player_match_performance_v_aggregate - /** fetch data from the table in a streaming manner: "player_match_performance_v" */ - player_match_performance_v_stream: player_match_performance_v[] - /** fetch data from the table: "player_match_stats_v" */ - player_match_stats_v: player_match_stats_v[] - /** fetch aggregated fields from the table: "player_match_stats_v" */ - player_match_stats_v_aggregate: player_match_stats_v_aggregate - /** fetch data from the table in a streaming manner: "player_match_stats_v" */ - player_match_stats_v_stream: player_match_stats_v[] - /** An array relationship */ - player_objectives: player_objectives[] - /** An aggregate relationship */ - player_objectives_aggregate: player_objectives_aggregate - /** fetch data from the table: "player_objectives" using primary key columns */ - player_objectives_by_pk: (player_objectives | null) - /** fetch data from the table in a streaming manner: "player_objectives" */ - player_objectives_stream: player_objectives[] - /** fetch data from the table: "player_performance_v" */ - player_performance_v: player_performance_v[] - /** fetch aggregated fields from the table: "player_performance_v" */ - player_performance_v_aggregate: player_performance_v_aggregate - /** fetch data from the table in a streaming manner: "player_performance_v" */ - player_performance_v_stream: player_performance_v[] - /** fetch data from the table: "player_premier_rank_history" */ - player_premier_rank_history: player_premier_rank_history[] - /** fetch aggregated fields from the table: "player_premier_rank_history" */ - player_premier_rank_history_aggregate: player_premier_rank_history_aggregate - /** fetch data from the table: "player_premier_rank_history" using primary key columns */ - player_premier_rank_history_by_pk: (player_premier_rank_history | null) - /** fetch data from the table in a streaming manner: "player_premier_rank_history" */ - player_premier_rank_history_stream: player_premier_rank_history[] - /** fetch data from the table: "player_sanctions" */ - player_sanctions: player_sanctions[] - /** fetch aggregated fields from the table: "player_sanctions" */ - player_sanctions_aggregate: player_sanctions_aggregate - /** fetch data from the table: "player_sanctions" using primary key columns */ - player_sanctions_by_pk: (player_sanctions | null) - /** fetch data from the table in a streaming manner: "player_sanctions" */ - player_sanctions_stream: player_sanctions[] - /** An array relationship */ - player_season_stats: player_season_stats[] - /** An aggregate relationship */ - player_season_stats_aggregate: player_season_stats_aggregate - /** fetch data from the table: "player_season_stats" using primary key columns */ - player_season_stats_by_pk: (player_season_stats | null) - /** fetch data from the table in a streaming manner: "player_season_stats" */ - player_season_stats_stream: player_season_stats[] - /** fetch data from the table: "player_stats" */ - player_stats: player_stats[] - /** fetch aggregated fields from the table: "player_stats" */ - player_stats_aggregate: player_stats_aggregate - /** fetch data from the table: "player_stats" using primary key columns */ - player_stats_by_pk: (player_stats | null) - /** fetch data from the table in a streaming manner: "player_stats" */ - player_stats_stream: player_stats[] - /** fetch data from the table: "player_steam_bot_friend" */ - player_steam_bot_friend: player_steam_bot_friend[] - /** fetch aggregated fields from the table: "player_steam_bot_friend" */ - player_steam_bot_friend_aggregate: player_steam_bot_friend_aggregate - /** fetch data from the table: "player_steam_bot_friend" using primary key columns */ - player_steam_bot_friend_by_pk: (player_steam_bot_friend | null) - /** fetch data from the table in a streaming manner: "player_steam_bot_friend" */ - player_steam_bot_friend_stream: player_steam_bot_friend[] - /** fetch data from the table: "player_steam_match_auth" */ - player_steam_match_auth: player_steam_match_auth[] - /** fetch aggregated fields from the table: "player_steam_match_auth" */ - player_steam_match_auth_aggregate: player_steam_match_auth_aggregate - /** fetch data from the table: "player_steam_match_auth" using primary key columns */ - player_steam_match_auth_by_pk: (player_steam_match_auth | null) - /** fetch data from the table in a streaming manner: "player_steam_match_auth" */ - player_steam_match_auth_stream: player_steam_match_auth[] - /** fetch data from the table: "player_unused_utility" */ - player_unused_utility: player_unused_utility[] - /** fetch aggregated fields from the table: "player_unused_utility" */ - player_unused_utility_aggregate: player_unused_utility_aggregate - /** fetch data from the table: "player_unused_utility" using primary key columns */ - player_unused_utility_by_pk: (player_unused_utility | null) - /** fetch data from the table in a streaming manner: "player_unused_utility" */ - player_unused_utility_stream: player_unused_utility[] - /** An array relationship */ - player_utility: player_utility[] - /** An aggregate relationship */ - player_utility_aggregate: player_utility_aggregate - /** fetch data from the table: "player_utility" using primary key columns */ - player_utility_by_pk: (player_utility | null) - /** fetch data from the table in a streaming manner: "player_utility" */ - player_utility_stream: player_utility[] - /** fetch data from the table: "player_weapon_stats_v" */ - player_weapon_stats_v: player_weapon_stats_v[] - /** fetch aggregated fields from the table: "player_weapon_stats_v" */ - player_weapon_stats_v_aggregate: player_weapon_stats_v_aggregate - /** fetch data from the table in a streaming manner: "player_weapon_stats_v" */ - player_weapon_stats_v_stream: player_weapon_stats_v[] - /** fetch data from the table: "players" */ - players: players[] - /** fetch aggregated fields from the table: "players" */ - players_aggregate: players_aggregate - /** fetch data from the table: "players" using primary key columns */ - players_by_pk: (players | null) - /** fetch data from the table in a streaming manner: "players" */ - players_stream: players[] - /** fetch data from the table: "plugin_versions" */ - plugin_versions: plugin_versions[] - /** fetch aggregated fields from the table: "plugin_versions" */ - plugin_versions_aggregate: plugin_versions_aggregate - /** fetch data from the table: "plugin_versions" using primary key columns */ - plugin_versions_by_pk: (plugin_versions | null) - /** fetch data from the table in a streaming manner: "plugin_versions" */ - plugin_versions_stream: plugin_versions[] - /** fetch data from the table: "push_subscriptions" */ - push_subscriptions: push_subscriptions[] - /** fetch aggregated fields from the table: "push_subscriptions" */ - push_subscriptions_aggregate: push_subscriptions_aggregate - /** fetch data from the table: "push_subscriptions" using primary key columns */ - push_subscriptions_by_pk: (push_subscriptions | null) - /** fetch data from the table in a streaming manner: "push_subscriptions" */ - push_subscriptions_stream: push_subscriptions[] - /** fetch data from the table: "v_role_permissions" */ - role_permissions: role_permissions[] - /** fetch aggregated fields from the table: "v_role_permissions" */ - role_permissions_aggregate: role_permissions_aggregate - /** fetch data from the table in a streaming manner: "v_role_permissions" */ - role_permissions_stream: role_permissions[] - /** fetch data from the table: "seasons" */ - seasons: seasons[] - /** fetch aggregated fields from the table: "seasons" */ - seasons_aggregate: seasons_aggregate - /** fetch data from the table: "seasons" using primary key columns */ - seasons_by_pk: (seasons | null) - /** fetch data from the table in a streaming manner: "seasons" */ - seasons_stream: seasons[] - /** fetch data from the table: "server_regions" */ - server_regions: server_regions[] - /** fetch aggregated fields from the table: "server_regions" */ - server_regions_aggregate: server_regions_aggregate - /** fetch data from the table: "server_regions" using primary key columns */ - server_regions_by_pk: (server_regions | null) - /** fetch data from the table in a streaming manner: "server_regions" */ - server_regions_stream: server_regions[] - /** An array relationship */ - servers: servers[] - /** An aggregate relationship */ - servers_aggregate: servers_aggregate - /** fetch data from the table: "servers" using primary key columns */ - servers_by_pk: (servers | null) - /** fetch data from the table in a streaming manner: "servers" */ - servers_stream: servers[] - /** fetch data from the table: "settings" */ - settings: settings[] - /** fetch aggregated fields from the table: "settings" */ - settings_aggregate: settings_aggregate - /** fetch data from the table: "settings" using primary key columns */ - settings_by_pk: (settings | null) - /** fetch data from the table in a streaming manner: "settings" */ - settings_stream: settings[] - /** fetch data from the table: "steam_account_claims" */ - steam_account_claims: steam_account_claims[] - /** fetch aggregated fields from the table: "steam_account_claims" */ - steam_account_claims_aggregate: steam_account_claims_aggregate - /** fetch data from the table: "steam_account_claims" using primary key columns */ - steam_account_claims_by_pk: (steam_account_claims | null) - /** fetch data from the table in a streaming manner: "steam_account_claims" */ - steam_account_claims_stream: steam_account_claims[] - /** fetch data from the table: "steam_accounts" */ - steam_accounts: steam_accounts[] - /** fetch aggregated fields from the table: "steam_accounts" */ - steam_accounts_aggregate: steam_accounts_aggregate - /** fetch data from the table: "steam_accounts" using primary key columns */ - steam_accounts_by_pk: (steam_accounts | null) - /** fetch data from the table in a streaming manner: "steam_accounts" */ - steam_accounts_stream: steam_accounts[] - /** fetch data from the table: "system_alerts" */ - system_alerts: system_alerts[] - /** fetch aggregated fields from the table: "system_alerts" */ - system_alerts_aggregate: system_alerts_aggregate - /** fetch data from the table: "system_alerts" using primary key columns */ - system_alerts_by_pk: (system_alerts | null) - /** fetch data from the table in a streaming manner: "system_alerts" */ - system_alerts_stream: system_alerts[] - /** An array relationship */ - team_invites: team_invites[] - /** An aggregate relationship */ - team_invites_aggregate: team_invites_aggregate - /** fetch data from the table: "team_invites" using primary key columns */ - team_invites_by_pk: (team_invites | null) - /** fetch data from the table in a streaming manner: "team_invites" */ - team_invites_stream: team_invites[] - /** fetch data from the table: "team_roster" */ - team_roster: team_roster[] - /** fetch aggregated fields from the table: "team_roster" */ - team_roster_aggregate: team_roster_aggregate - /** fetch data from the table: "team_roster" using primary key columns */ - team_roster_by_pk: (team_roster | null) - /** fetch data from the table in a streaming manner: "team_roster" */ - team_roster_stream: team_roster[] - /** fetch data from the table: "team_scrim_alerts" */ - team_scrim_alerts: team_scrim_alerts[] - /** fetch aggregated fields from the table: "team_scrim_alerts" */ - team_scrim_alerts_aggregate: team_scrim_alerts_aggregate - /** fetch data from the table: "team_scrim_alerts" using primary key columns */ - team_scrim_alerts_by_pk: (team_scrim_alerts | null) - /** fetch data from the table in a streaming manner: "team_scrim_alerts" */ - team_scrim_alerts_stream: team_scrim_alerts[] - /** fetch data from the table: "team_scrim_availability" */ - team_scrim_availability: team_scrim_availability[] - /** fetch aggregated fields from the table: "team_scrim_availability" */ - team_scrim_availability_aggregate: team_scrim_availability_aggregate - /** fetch data from the table: "team_scrim_availability" using primary key columns */ - team_scrim_availability_by_pk: (team_scrim_availability | null) - /** fetch data from the table in a streaming manner: "team_scrim_availability" */ - team_scrim_availability_stream: team_scrim_availability[] - /** fetch data from the table: "team_scrim_request_proposals" */ - team_scrim_request_proposals: team_scrim_request_proposals[] - /** fetch aggregated fields from the table: "team_scrim_request_proposals" */ - team_scrim_request_proposals_aggregate: team_scrim_request_proposals_aggregate - /** fetch data from the table: "team_scrim_request_proposals" using primary key columns */ - team_scrim_request_proposals_by_pk: (team_scrim_request_proposals | null) - /** fetch data from the table in a streaming manner: "team_scrim_request_proposals" */ - team_scrim_request_proposals_stream: team_scrim_request_proposals[] - /** fetch data from the table: "team_scrim_requests" */ - team_scrim_requests: team_scrim_requests[] - /** fetch aggregated fields from the table: "team_scrim_requests" */ - team_scrim_requests_aggregate: team_scrim_requests_aggregate - /** fetch data from the table: "team_scrim_requests" using primary key columns */ - team_scrim_requests_by_pk: (team_scrim_requests | null) - /** fetch data from the table in a streaming manner: "team_scrim_requests" */ - team_scrim_requests_stream: team_scrim_requests[] - /** fetch data from the table: "team_scrim_settings" */ - team_scrim_settings: team_scrim_settings[] - /** fetch aggregated fields from the table: "team_scrim_settings" */ - team_scrim_settings_aggregate: team_scrim_settings_aggregate - /** fetch data from the table: "team_scrim_settings" using primary key columns */ - team_scrim_settings_by_pk: (team_scrim_settings | null) - /** fetch data from the table in a streaming manner: "team_scrim_settings" */ - team_scrim_settings_stream: team_scrim_settings[] - /** fetch data from the table: "team_suggestions" */ - team_suggestions: team_suggestions[] - /** fetch aggregated fields from the table: "team_suggestions" */ - team_suggestions_aggregate: team_suggestions_aggregate - /** fetch data from the table: "team_suggestions" using primary key columns */ - team_suggestions_by_pk: (team_suggestions | null) - /** fetch data from the table in a streaming manner: "team_suggestions" */ - team_suggestions_stream: team_suggestions[] - /** fetch data from the table: "teams" */ - teams: teams[] - /** fetch aggregated fields from the table: "teams" */ - teams_aggregate: teams_aggregate - /** fetch data from the table: "teams" using primary key columns */ - teams_by_pk: (teams | null) - /** fetch data from the table in a streaming manner: "teams" */ - teams_stream: teams[] - /** fetch data from the table: "tournament_awards" */ - tournament_awards: tournament_awards[] - /** fetch aggregated fields from the table: "tournament_awards" */ - tournament_awards_aggregate: tournament_awards_aggregate - /** fetch data from the table: "tournament_awards" using primary key columns */ - tournament_awards_by_pk: (tournament_awards | null) - /** fetch data from the table in a streaming manner: "tournament_awards" */ - tournament_awards_stream: tournament_awards[] - /** An array relationship */ - tournament_brackets: tournament_brackets[] - /** An aggregate relationship */ - tournament_brackets_aggregate: tournament_brackets_aggregate - /** fetch data from the table: "tournament_brackets" using primary key columns */ - tournament_brackets_by_pk: (tournament_brackets | null) - /** fetch data from the table in a streaming manner: "tournament_brackets" */ - tournament_brackets_stream: tournament_brackets[] - /** An array relationship */ - tournament_categories: tournament_categories[] - /** An aggregate relationship */ - tournament_categories_aggregate: tournament_categories_aggregate - /** fetch data from the table: "tournament_categories" using primary key columns */ - tournament_categories_by_pk: (tournament_categories | null) - /** fetch data from the table in a streaming manner: "tournament_categories" */ - tournament_categories_stream: tournament_categories[] - /** An array relationship */ - tournament_free_agents: tournament_free_agents[] - /** An aggregate relationship */ - tournament_free_agents_aggregate: tournament_free_agents_aggregate - /** fetch data from the table: "tournament_free_agents" using primary key columns */ - tournament_free_agents_by_pk: (tournament_free_agents | null) - /** fetch data from the table in a streaming manner: "tournament_free_agents" */ - tournament_free_agents_stream: tournament_free_agents[] - /** fetch data from the table: "tournament_invite_code_uses" */ - tournament_invite_code_uses: tournament_invite_code_uses[] - /** fetch aggregated fields from the table: "tournament_invite_code_uses" */ - tournament_invite_code_uses_aggregate: tournament_invite_code_uses_aggregate - /** fetch data from the table: "tournament_invite_code_uses" using primary key columns */ - tournament_invite_code_uses_by_pk: (tournament_invite_code_uses | null) - /** fetch data from the table in a streaming manner: "tournament_invite_code_uses" */ - tournament_invite_code_uses_stream: tournament_invite_code_uses[] - /** fetch data from the table: "tournament_invite_codes" */ - tournament_invite_codes: tournament_invite_codes[] - /** fetch aggregated fields from the table: "tournament_invite_codes" */ - tournament_invite_codes_aggregate: tournament_invite_codes_aggregate - /** fetch data from the table: "tournament_invite_codes" using primary key columns */ - tournament_invite_codes_by_pk: (tournament_invite_codes | null) - /** fetch data from the table in a streaming manner: "tournament_invite_codes" */ - tournament_invite_codes_stream: tournament_invite_codes[] - /** fetch data from the table: "tournament_invites" */ - tournament_invites: tournament_invites[] - /** fetch aggregated fields from the table: "tournament_invites" */ - tournament_invites_aggregate: tournament_invites_aggregate - /** fetch data from the table: "tournament_invites" using primary key columns */ - tournament_invites_by_pk: (tournament_invites | null) - /** fetch data from the table in a streaming manner: "tournament_invites" */ - tournament_invites_stream: tournament_invites[] - /** fetch data from the table: "tournament_leaderboard_entries" */ - tournament_leaderboard_entries: tournament_leaderboard_entries[] - /** fetch aggregated fields from the table: "tournament_leaderboard_entries" */ - tournament_leaderboard_entries_aggregate: tournament_leaderboard_entries_aggregate - /** fetch data from the table in a streaming manner: "tournament_leaderboard_entries" */ - tournament_leaderboard_entries_stream: tournament_leaderboard_entries[] - /** fetch data from the table: "tournament_no_shows" */ - tournament_no_shows: tournament_no_shows[] - /** fetch aggregated fields from the table: "tournament_no_shows" */ - tournament_no_shows_aggregate: tournament_no_shows_aggregate - /** fetch data from the table: "tournament_no_shows" using primary key columns */ - tournament_no_shows_by_pk: (tournament_no_shows | null) - /** fetch data from the table in a streaming manner: "tournament_no_shows" */ - tournament_no_shows_stream: tournament_no_shows[] - /** fetch data from the table: "tournament_organizer_teams" */ - tournament_organizer_teams: tournament_organizer_teams[] - /** fetch aggregated fields from the table: "tournament_organizer_teams" */ - tournament_organizer_teams_aggregate: tournament_organizer_teams_aggregate - /** fetch data from the table: "tournament_organizer_teams" using primary key columns */ - tournament_organizer_teams_by_pk: (tournament_organizer_teams | null) - /** fetch data from the table in a streaming manner: "tournament_organizer_teams" */ - tournament_organizer_teams_stream: tournament_organizer_teams[] - /** An array relationship */ - tournament_organizers: tournament_organizers[] - /** An aggregate relationship */ - tournament_organizers_aggregate: tournament_organizers_aggregate - /** fetch data from the table: "tournament_organizers" using primary key columns */ - tournament_organizers_by_pk: (tournament_organizers | null) - /** fetch data from the table in a streaming manner: "tournament_organizers" */ - tournament_organizers_stream: tournament_organizers[] - /** fetch data from the table: "tournament_prizes" */ - tournament_prizes: tournament_prizes[] - /** fetch aggregated fields from the table: "tournament_prizes" */ - tournament_prizes_aggregate: tournament_prizes_aggregate - /** fetch data from the table: "tournament_prizes" using primary key columns */ - tournament_prizes_by_pk: (tournament_prizes | null) - /** fetch data from the table in a streaming manner: "tournament_prizes" */ - tournament_prizes_stream: tournament_prizes[] - /** fetch data from the table: "tournament_registration_unlocks" */ - tournament_registration_unlocks: tournament_registration_unlocks[] - /** fetch aggregated fields from the table: "tournament_registration_unlocks" */ - tournament_registration_unlocks_aggregate: tournament_registration_unlocks_aggregate - /** fetch data from the table in a streaming manner: "tournament_registration_unlocks" */ - tournament_registration_unlocks_stream: tournament_registration_unlocks[] - /** fetch data from the table: "tournament_stage_windows" */ - tournament_stage_windows: tournament_stage_windows[] - /** fetch aggregated fields from the table: "tournament_stage_windows" */ - tournament_stage_windows_aggregate: tournament_stage_windows_aggregate - /** fetch data from the table: "tournament_stage_windows" using primary key columns */ - tournament_stage_windows_by_pk: (tournament_stage_windows | null) - /** fetch data from the table in a streaming manner: "tournament_stage_windows" */ - tournament_stage_windows_stream: tournament_stage_windows[] - /** An array relationship */ - tournament_stages: tournament_stages[] - /** An aggregate relationship */ - tournament_stages_aggregate: tournament_stages_aggregate - /** fetch data from the table: "tournament_stages" using primary key columns */ - tournament_stages_by_pk: (tournament_stages | null) - /** fetch data from the table in a streaming manner: "tournament_stages" */ - tournament_stages_stream: tournament_stages[] - /** fetch data from the table: "tournament_team_invites" */ - tournament_team_invites: tournament_team_invites[] - /** fetch aggregated fields from the table: "tournament_team_invites" */ - tournament_team_invites_aggregate: tournament_team_invites_aggregate - /** fetch data from the table: "tournament_team_invites" using primary key columns */ - tournament_team_invites_by_pk: (tournament_team_invites | null) - /** fetch data from the table in a streaming manner: "tournament_team_invites" */ - tournament_team_invites_stream: tournament_team_invites[] - /** fetch data from the table: "tournament_team_roster" */ - tournament_team_roster: tournament_team_roster[] - /** fetch aggregated fields from the table: "tournament_team_roster" */ - tournament_team_roster_aggregate: tournament_team_roster_aggregate - /** fetch data from the table: "tournament_team_roster" using primary key columns */ - tournament_team_roster_by_pk: (tournament_team_roster | null) - /** fetch data from the table in a streaming manner: "tournament_team_roster" */ - tournament_team_roster_stream: tournament_team_roster[] - /** An array relationship */ - tournament_teams: tournament_teams[] - /** An aggregate relationship */ - tournament_teams_aggregate: tournament_teams_aggregate - /** fetch data from the table: "tournament_teams" using primary key columns */ - tournament_teams_by_pk: (tournament_teams | null) - /** fetch data from the table in a streaming manner: "tournament_teams" */ - tournament_teams_stream: tournament_teams[] - /** An array relationship */ - tournaments: tournaments[] - /** An aggregate relationship */ - tournaments_aggregate: tournaments_aggregate - /** fetch data from the table: "tournaments" using primary key columns */ - tournaments_by_pk: (tournaments | null) - /** fetch data from the table in a streaming manner: "tournaments" */ - tournaments_stream: tournaments[] - /** fetch data from the table: "utility_collection_items" */ - utility_collection_items: utility_collection_items[] - /** fetch aggregated fields from the table: "utility_collection_items" */ - utility_collection_items_aggregate: utility_collection_items_aggregate - /** fetch data from the table: "utility_collection_items" using primary key columns */ - utility_collection_items_by_pk: (utility_collection_items | null) - /** fetch data from the table in a streaming manner: "utility_collection_items" */ - utility_collection_items_stream: utility_collection_items[] - /** fetch data from the table: "utility_collections" */ - utility_collections: utility_collections[] - /** fetch aggregated fields from the table: "utility_collections" */ - utility_collections_aggregate: utility_collections_aggregate - /** fetch data from the table: "utility_collections" using primary key columns */ - utility_collections_by_pk: (utility_collections | null) - /** fetch data from the table in a streaming manner: "utility_collections" */ - utility_collections_stream: utility_collections[] - /** fetch data from the table: "utility_demo_mines" */ - utility_demo_mines: utility_demo_mines[] - /** fetch aggregated fields from the table: "utility_demo_mines" */ - utility_demo_mines_aggregate: utility_demo_mines_aggregate - /** fetch data from the table: "utility_demo_mines" using primary key columns */ - utility_demo_mines_by_pk: (utility_demo_mines | null) - /** fetch data from the table in a streaming manner: "utility_demo_mines" */ - utility_demo_mines_stream: utility_demo_mines[] - /** fetch data from the table: "utility_demo_throws" */ - utility_demo_throws: utility_demo_throws[] - /** fetch aggregated fields from the table: "utility_demo_throws" */ - utility_demo_throws_aggregate: utility_demo_throws_aggregate - /** fetch data from the table: "utility_demo_throws" using primary key columns */ - utility_demo_throws_by_pk: (utility_demo_throws | null) - /** fetch data from the table in a streaming manner: "utility_demo_throws" */ - utility_demo_throws_stream: utility_demo_throws[] - /** fetch data from the table: "utility_drift_results" */ - utility_drift_results: utility_drift_results[] - /** fetch aggregated fields from the table: "utility_drift_results" */ - utility_drift_results_aggregate: utility_drift_results_aggregate - /** fetch data from the table: "utility_drift_results" using primary key columns */ - utility_drift_results_by_pk: (utility_drift_results | null) - /** fetch data from the table in a streaming manner: "utility_drift_results" */ - utility_drift_results_stream: utility_drift_results[] - /** fetch data from the table: "utility_drift_scans" */ - utility_drift_scans: utility_drift_scans[] - /** fetch aggregated fields from the table: "utility_drift_scans" */ - utility_drift_scans_aggregate: utility_drift_scans_aggregate - /** fetch data from the table: "utility_drift_scans" using primary key columns */ - utility_drift_scans_by_pk: (utility_drift_scans | null) - /** fetch data from the table in a streaming manner: "utility_drift_scans" */ - utility_drift_scans_stream: utility_drift_scans[] - /** fetch data from the table: "utility_lineup_favorites" */ - utility_lineup_favorites: utility_lineup_favorites[] - /** fetch aggregated fields from the table: "utility_lineup_favorites" */ - utility_lineup_favorites_aggregate: utility_lineup_favorites_aggregate - /** fetch data from the table: "utility_lineup_favorites" using primary key columns */ - utility_lineup_favorites_by_pk: (utility_lineup_favorites | null) - /** fetch data from the table in a streaming manner: "utility_lineup_favorites" */ - utility_lineup_favorites_stream: utility_lineup_favorites[] - /** fetch data from the table: "utility_lineup_progress" */ - utility_lineup_progress: utility_lineup_progress[] - /** fetch aggregated fields from the table: "utility_lineup_progress" */ - utility_lineup_progress_aggregate: utility_lineup_progress_aggregate - /** fetch data from the table: "utility_lineup_progress" using primary key columns */ - utility_lineup_progress_by_pk: (utility_lineup_progress | null) - /** fetch data from the table in a streaming manner: "utility_lineup_progress" */ - utility_lineup_progress_stream: utility_lineup_progress[] - /** fetch data from the table: "utility_lineup_renders" */ - utility_lineup_renders: utility_lineup_renders[] - /** fetch aggregated fields from the table: "utility_lineup_renders" */ - utility_lineup_renders_aggregate: utility_lineup_renders_aggregate - /** fetch data from the table: "utility_lineup_renders" using primary key columns */ - utility_lineup_renders_by_pk: (utility_lineup_renders | null) - /** fetch data from the table in a streaming manner: "utility_lineup_renders" */ - utility_lineup_renders_stream: utility_lineup_renders[] - /** fetch data from the table: "utility_lineup_repairs" */ - utility_lineup_repairs: utility_lineup_repairs[] - /** fetch aggregated fields from the table: "utility_lineup_repairs" */ - utility_lineup_repairs_aggregate: utility_lineup_repairs_aggregate - /** fetch data from the table: "utility_lineup_repairs" using primary key columns */ - utility_lineup_repairs_by_pk: (utility_lineup_repairs | null) - /** fetch data from the table in a streaming manner: "utility_lineup_repairs" */ - utility_lineup_repairs_stream: utility_lineup_repairs[] - /** fetch data from the table: "utility_lineup_votes" */ - utility_lineup_votes: utility_lineup_votes[] - /** fetch aggregated fields from the table: "utility_lineup_votes" */ - utility_lineup_votes_aggregate: utility_lineup_votes_aggregate - /** fetch data from the table: "utility_lineup_votes" using primary key columns */ - utility_lineup_votes_by_pk: (utility_lineup_votes | null) - /** fetch data from the table in a streaming manner: "utility_lineup_votes" */ - utility_lineup_votes_stream: utility_lineup_votes[] - /** An array relationship */ - utility_lineups: utility_lineups[] - /** An aggregate relationship */ - utility_lineups_aggregate: utility_lineups_aggregate - /** fetch data from the table: "utility_lineups" using primary key columns */ - utility_lineups_by_pk: (utility_lineups | null) - /** fetch data from the table in a streaming manner: "utility_lineups" */ - utility_lineups_stream: utility_lineups[] - /** fetch data from the table: "utility_meta_lineups" */ - utility_meta_lineups: utility_meta_lineups[] - /** fetch aggregated fields from the table: "utility_meta_lineups" */ - utility_meta_lineups_aggregate: utility_meta_lineups_aggregate - /** fetch data from the table: "utility_meta_lineups" using primary key columns */ - utility_meta_lineups_by_pk: (utility_meta_lineups | null) - /** fetch data from the table in a streaming manner: "utility_meta_lineups" */ - utility_meta_lineups_stream: utility_meta_lineups[] - /** fetch data from the table: "utility_playbook_steps" */ - utility_playbook_steps: utility_playbook_steps[] - /** fetch aggregated fields from the table: "utility_playbook_steps" */ - utility_playbook_steps_aggregate: utility_playbook_steps_aggregate - /** fetch data from the table: "utility_playbook_steps" using primary key columns */ - utility_playbook_steps_by_pk: (utility_playbook_steps | null) - /** fetch data from the table in a streaming manner: "utility_playbook_steps" */ - utility_playbook_steps_stream: utility_playbook_steps[] - /** fetch data from the table: "utility_playbooks" */ - utility_playbooks: utility_playbooks[] - /** fetch aggregated fields from the table: "utility_playbooks" */ - utility_playbooks_aggregate: utility_playbooks_aggregate - /** fetch data from the table: "utility_playbooks" using primary key columns */ - utility_playbooks_by_pk: (utility_playbooks | null) - /** fetch data from the table in a streaming manner: "utility_playbooks" */ - utility_playbooks_stream: utility_playbooks[] - /** fetch data from the table: "utility_practice_invites" */ - utility_practice_invites: utility_practice_invites[] - /** fetch aggregated fields from the table: "utility_practice_invites" */ - utility_practice_invites_aggregate: utility_practice_invites_aggregate - /** fetch data from the table: "utility_practice_invites" using primary key columns */ - utility_practice_invites_by_pk: (utility_practice_invites | null) - /** fetch data from the table in a streaming manner: "utility_practice_invites" */ - utility_practice_invites_stream: utility_practice_invites[] - /** An array relationship */ - utility_practice_sessions: utility_practice_sessions[] - /** An aggregate relationship */ - utility_practice_sessions_aggregate: utility_practice_sessions_aggregate - /** fetch data from the table: "utility_practice_sessions" using primary key columns */ - utility_practice_sessions_by_pk: (utility_practice_sessions | null) - /** fetch data from the table in a streaming manner: "utility_practice_sessions" */ - utility_practice_sessions_stream: utility_practice_sessions[] - /** fetch data from the table: "v_event_player_stats" */ - v_event_player_stats: v_event_player_stats[] - /** fetch aggregated fields from the table: "v_event_player_stats" */ - v_event_player_stats_aggregate: v_event_player_stats_aggregate - /** fetch data from the table in a streaming manner: "v_event_player_stats" */ - v_event_player_stats_stream: v_event_player_stats[] - /** fetch data from the table: "v_gpu_pool_status" */ - v_gpu_pool_status: v_gpu_pool_status[] - /** fetch aggregated fields from the table: "v_gpu_pool_status" */ - v_gpu_pool_status_aggregate: v_gpu_pool_status_aggregate - /** fetch data from the table in a streaming manner: "v_gpu_pool_status" */ - v_gpu_pool_status_stream: v_gpu_pool_status[] - /** fetch data from the table: "v_league_division_standings" */ - v_league_division_standings: v_league_division_standings[] - /** fetch aggregated fields from the table: "v_league_division_standings" */ - v_league_division_standings_aggregate: v_league_division_standings_aggregate - /** fetch data from the table in a streaming manner: "v_league_division_standings" */ - v_league_division_standings_stream: v_league_division_standings[] - /** fetch data from the table: "v_league_season_player_stats" */ - v_league_season_player_stats: v_league_season_player_stats[] - /** fetch aggregated fields from the table: "v_league_season_player_stats" */ - v_league_season_player_stats_aggregate: v_league_season_player_stats_aggregate - /** fetch data from the table in a streaming manner: "v_league_season_player_stats" */ - v_league_season_player_stats_stream: v_league_season_player_stats[] - /** fetch data from the table: "v_match_captains" */ - v_match_captains: v_match_captains[] - /** fetch aggregated fields from the table: "v_match_captains" */ - v_match_captains_aggregate: v_match_captains_aggregate - /** fetch data from the table in a streaming manner: "v_match_captains" */ - v_match_captains_stream: v_match_captains[] - /** fetch data from the table: "v_match_clutches" */ - v_match_clutches: v_match_clutches[] - /** fetch aggregated fields from the table: "v_match_clutches" */ - v_match_clutches_aggregate: v_match_clutches_aggregate - /** fetch data from the table in a streaming manner: "v_match_clutches" */ - v_match_clutches_stream: v_match_clutches[] - /** fetch data from the table: "v_match_kill_pairs" */ - v_match_kill_pairs: v_match_kill_pairs[] - /** fetch aggregated fields from the table: "v_match_kill_pairs" */ - v_match_kill_pairs_aggregate: v_match_kill_pairs_aggregate - /** fetch data from the table in a streaming manner: "v_match_kill_pairs" */ - v_match_kill_pairs_stream: v_match_kill_pairs[] - /** fetch data from the table: "v_match_lineup_buy_types" */ - v_match_lineup_buy_types: v_match_lineup_buy_types[] - /** fetch aggregated fields from the table: "v_match_lineup_buy_types" */ - v_match_lineup_buy_types_aggregate: v_match_lineup_buy_types_aggregate - /** fetch data from the table in a streaming manner: "v_match_lineup_buy_types" */ - v_match_lineup_buy_types_stream: v_match_lineup_buy_types[] - /** fetch data from the table: "v_match_lineup_map_stats" */ - v_match_lineup_map_stats: v_match_lineup_map_stats[] - /** fetch aggregated fields from the table: "v_match_lineup_map_stats" */ - v_match_lineup_map_stats_aggregate: v_match_lineup_map_stats_aggregate - /** fetch data from the table in a streaming manner: "v_match_lineup_map_stats" */ - v_match_lineup_map_stats_stream: v_match_lineup_map_stats[] - /** fetch data from the table: "v_match_map_backup_rounds" */ - v_match_map_backup_rounds: v_match_map_backup_rounds[] - /** fetch aggregated fields from the table: "v_match_map_backup_rounds" */ - v_match_map_backup_rounds_aggregate: v_match_map_backup_rounds_aggregate - /** fetch data from the table in a streaming manner: "v_match_map_backup_rounds" */ - v_match_map_backup_rounds_stream: v_match_map_backup_rounds[] - /** fetch data from the table: "v_match_player_buy_types" */ - v_match_player_buy_types: v_match_player_buy_types[] - /** fetch aggregated fields from the table: "v_match_player_buy_types" */ - v_match_player_buy_types_aggregate: v_match_player_buy_types_aggregate - /** fetch data from the table in a streaming manner: "v_match_player_buy_types" */ - v_match_player_buy_types_stream: v_match_player_buy_types[] - /** fetch data from the table: "v_match_player_opening_duels" */ - v_match_player_opening_duels: v_match_player_opening_duels[] - /** fetch aggregated fields from the table: "v_match_player_opening_duels" */ - v_match_player_opening_duels_aggregate: v_match_player_opening_duels_aggregate - /** fetch data from the table in a streaming manner: "v_match_player_opening_duels" */ - v_match_player_opening_duels_stream: v_match_player_opening_duels[] - /** fetch data from the table: "v_player_arch_nemesis" */ - v_player_arch_nemesis: v_player_arch_nemesis[] - /** fetch aggregated fields from the table: "v_player_arch_nemesis" */ - v_player_arch_nemesis_aggregate: v_player_arch_nemesis_aggregate - /** fetch data from the table in a streaming manner: "v_player_arch_nemesis" */ - v_player_arch_nemesis_stream: v_player_arch_nemesis[] - /** fetch data from the table: "v_player_damage" */ - v_player_damage: v_player_damage[] - /** fetch aggregated fields from the table: "v_player_damage" */ - v_player_damage_aggregate: v_player_damage_aggregate - /** fetch data from the table in a streaming manner: "v_player_damage" */ - v_player_damage_stream: v_player_damage[] - /** fetch data from the table: "v_player_elo" */ - v_player_elo: v_player_elo[] - /** fetch aggregated fields from the table: "v_player_elo" */ - v_player_elo_aggregate: v_player_elo_aggregate - /** fetch data from the table in a streaming manner: "v_player_elo" */ - v_player_elo_stream: v_player_elo[] - /** fetch data from the table: "v_player_map_losses" */ - v_player_map_losses: v_player_map_losses[] - /** fetch aggregated fields from the table: "v_player_map_losses" */ - v_player_map_losses_aggregate: v_player_map_losses_aggregate - /** fetch data from the table in a streaming manner: "v_player_map_losses" */ - v_player_map_losses_stream: v_player_map_losses[] - /** fetch data from the table: "v_player_map_wins" */ - v_player_map_wins: v_player_map_wins[] - /** fetch aggregated fields from the table: "v_player_map_wins" */ - v_player_map_wins_aggregate: v_player_map_wins_aggregate - /** fetch data from the table in a streaming manner: "v_player_map_wins" */ - v_player_map_wins_stream: v_player_map_wins[] - /** fetch data from the table: "v_player_match_head_to_head" */ - v_player_match_head_to_head: v_player_match_head_to_head[] - /** fetch aggregated fields from the table: "v_player_match_head_to_head" */ - v_player_match_head_to_head_aggregate: v_player_match_head_to_head_aggregate - /** fetch data from the table in a streaming manner: "v_player_match_head_to_head" */ - v_player_match_head_to_head_stream: v_player_match_head_to_head[] - /** fetch data from the table: "v_player_match_map_hltv" */ - v_player_match_map_hltv: v_player_match_map_hltv[] - /** fetch aggregated fields from the table: "v_player_match_map_hltv" */ - v_player_match_map_hltv_aggregate: v_player_match_map_hltv_aggregate - /** fetch data from the table in a streaming manner: "v_player_match_map_hltv" */ - v_player_match_map_hltv_stream: v_player_match_map_hltv[] - /** fetch data from the table: "v_player_match_map_roles" */ - v_player_match_map_roles: v_player_match_map_roles[] - /** fetch aggregated fields from the table: "v_player_match_map_roles" */ - v_player_match_map_roles_aggregate: v_player_match_map_roles_aggregate - /** fetch data from the table in a streaming manner: "v_player_match_map_roles" */ - v_player_match_map_roles_stream: v_player_match_map_roles[] - /** fetch data from the table: "v_player_match_performance" */ - v_player_match_performance: v_player_match_performance[] - /** fetch aggregated fields from the table: "v_player_match_performance" */ - v_player_match_performance_aggregate: v_player_match_performance_aggregate - /** fetch data from the table in a streaming manner: "v_player_match_performance" */ - v_player_match_performance_stream: v_player_match_performance[] - /** fetch data from the table: "v_player_match_rating" */ - v_player_match_rating: v_player_match_rating[] - /** fetch aggregated fields from the table: "v_player_match_rating" */ - v_player_match_rating_aggregate: v_player_match_rating_aggregate - /** fetch data from the table in a streaming manner: "v_player_match_rating" */ - v_player_match_rating_stream: v_player_match_rating[] - /** fetch data from the table: "v_player_multi_kills" */ - v_player_multi_kills: v_player_multi_kills[] - /** fetch aggregated fields from the table: "v_player_multi_kills" */ - v_player_multi_kills_aggregate: v_player_multi_kills_aggregate - /** fetch data from the table in a streaming manner: "v_player_multi_kills" */ - v_player_multi_kills_stream: v_player_multi_kills[] - /** fetch data from the table: "v_player_queue_partners" */ - v_player_queue_partners: v_player_queue_partners[] - /** fetch aggregated fields from the table: "v_player_queue_partners" */ - v_player_queue_partners_aggregate: v_player_queue_partners_aggregate - /** fetch data from the table in a streaming manner: "v_player_queue_partners" */ - v_player_queue_partners_stream: v_player_queue_partners[] - /** fetch data from the table: "v_player_weapon_damage" */ - v_player_weapon_damage: v_player_weapon_damage[] - /** fetch aggregated fields from the table: "v_player_weapon_damage" */ - v_player_weapon_damage_aggregate: v_player_weapon_damage_aggregate - /** fetch data from the table in a streaming manner: "v_player_weapon_damage" */ - v_player_weapon_damage_stream: v_player_weapon_damage[] - /** fetch data from the table: "v_player_weapon_kills" */ - v_player_weapon_kills: v_player_weapon_kills[] - /** fetch aggregated fields from the table: "v_player_weapon_kills" */ - v_player_weapon_kills_aggregate: v_player_weapon_kills_aggregate - /** fetch data from the table in a streaming manner: "v_player_weapon_kills" */ - v_player_weapon_kills_stream: v_player_weapon_kills[] - /** fetch data from the table: "v_pool_maps" */ - v_pool_maps: v_pool_maps[] - /** fetch aggregated fields from the table: "v_pool_maps" */ - v_pool_maps_aggregate: v_pool_maps_aggregate - /** fetch data from the table in a streaming manner: "v_pool_maps" */ - v_pool_maps_stream: v_pool_maps[] - /** fetch data from the table: "v_steam_account_pool_status" */ - v_steam_account_pool_status: v_steam_account_pool_status[] - /** fetch aggregated fields from the table: "v_steam_account_pool_status" */ - v_steam_account_pool_status_aggregate: v_steam_account_pool_status_aggregate - /** fetch data from the table in a streaming manner: "v_steam_account_pool_status" */ - v_steam_account_pool_status_stream: v_steam_account_pool_status[] - /** fetch data from the table: "v_team_ranks" */ - v_team_ranks: v_team_ranks[] - /** fetch aggregated fields from the table: "v_team_ranks" */ - v_team_ranks_aggregate: v_team_ranks_aggregate - /** fetch data from the table in a streaming manner: "v_team_ranks" */ - v_team_ranks_stream: v_team_ranks[] - /** fetch data from the table: "v_team_reputation" */ - v_team_reputation: v_team_reputation[] - /** fetch aggregated fields from the table: "v_team_reputation" */ - v_team_reputation_aggregate: v_team_reputation_aggregate - /** fetch data from the table in a streaming manner: "v_team_reputation" */ - v_team_reputation_stream: v_team_reputation[] - /** fetch data from the table: "v_team_stage_results" */ - v_team_stage_results: v_team_stage_results[] - /** fetch aggregated fields from the table: "v_team_stage_results" */ - v_team_stage_results_aggregate: v_team_stage_results_aggregate - /** fetch data from the table: "v_team_stage_results" using primary key columns */ - v_team_stage_results_by_pk: (v_team_stage_results | null) - /** fetch data from the table in a streaming manner: "v_team_stage_results" */ - v_team_stage_results_stream: v_team_stage_results[] - /** fetch data from the table: "v_team_tournament_results" */ - v_team_tournament_results: v_team_tournament_results[] - /** fetch aggregated fields from the table: "v_team_tournament_results" */ - v_team_tournament_results_aggregate: v_team_tournament_results_aggregate - /** fetch data from the table in a streaming manner: "v_team_tournament_results" */ - v_team_tournament_results_stream: v_team_tournament_results[] - /** fetch data from the table: "v_tournament_player_stats" */ - v_tournament_player_stats: v_tournament_player_stats[] - /** fetch aggregated fields from the table: "v_tournament_player_stats" */ - v_tournament_player_stats_aggregate: v_tournament_player_stats_aggregate - /** fetch data from the table in a streaming manner: "v_tournament_player_stats" */ - v_tournament_player_stats_stream: v_tournament_player_stats[] - __typename: 'subscription_root' -} - - -/** columns and relationships of "system_alerts" */ -export interface system_alerts { - created_at: Scalars['timestamptz'] - created_by: (Scalars['bigint'] | null) - dismissible: Scalars['Boolean'] - expires_at: (Scalars['timestamptz'] | null) - id: Scalars['uuid'] - is_active: Scalars['Boolean'] - message: Scalars['String'] - title: (Scalars['String'] | null) - type: e_system_alert_types_enum - updated_at: Scalars['timestamptz'] - __typename: 'system_alerts' -} - - -/** aggregated selection of "system_alerts" */ -export interface system_alerts_aggregate { - aggregate: (system_alerts_aggregate_fields | null) - nodes: system_alerts[] - __typename: 'system_alerts_aggregate' -} - - -/** aggregate fields of "system_alerts" */ -export interface system_alerts_aggregate_fields { - avg: (system_alerts_avg_fields | null) - count: Scalars['Int'] - max: (system_alerts_max_fields | null) - min: (system_alerts_min_fields | null) - stddev: (system_alerts_stddev_fields | null) - stddev_pop: (system_alerts_stddev_pop_fields | null) - stddev_samp: (system_alerts_stddev_samp_fields | null) - sum: (system_alerts_sum_fields | null) - var_pop: (system_alerts_var_pop_fields | null) - var_samp: (system_alerts_var_samp_fields | null) - variance: (system_alerts_variance_fields | null) - __typename: 'system_alerts_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface system_alerts_avg_fields { - created_by: (Scalars['Float'] | null) - __typename: 'system_alerts_avg_fields' -} - - -/** unique or primary key constraints on table "system_alerts" */ -export type system_alerts_constraint = 'system_alerts_pkey' - - -/** aggregate max on columns */ -export interface system_alerts_max_fields { - created_at: (Scalars['timestamptz'] | null) - created_by: (Scalars['bigint'] | null) - expires_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - message: (Scalars['String'] | null) - title: (Scalars['String'] | null) - updated_at: (Scalars['timestamptz'] | null) - __typename: 'system_alerts_max_fields' -} - - -/** aggregate min on columns */ -export interface system_alerts_min_fields { - created_at: (Scalars['timestamptz'] | null) - created_by: (Scalars['bigint'] | null) - expires_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - message: (Scalars['String'] | null) - title: (Scalars['String'] | null) - updated_at: (Scalars['timestamptz'] | null) - __typename: 'system_alerts_min_fields' -} - - -/** response of any mutation on the table "system_alerts" */ -export interface system_alerts_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: system_alerts[] - __typename: 'system_alerts_mutation_response' -} - - -/** select columns of table "system_alerts" */ -export type system_alerts_select_column = 'created_at' | 'created_by' | 'dismissible' | 'expires_at' | 'id' | 'is_active' | 'message' | 'title' | 'type' | 'updated_at' - - -/** aggregate stddev on columns */ -export interface system_alerts_stddev_fields { - created_by: (Scalars['Float'] | null) - __typename: 'system_alerts_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface system_alerts_stddev_pop_fields { - created_by: (Scalars['Float'] | null) - __typename: 'system_alerts_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface system_alerts_stddev_samp_fields { - created_by: (Scalars['Float'] | null) - __typename: 'system_alerts_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface system_alerts_sum_fields { - created_by: (Scalars['bigint'] | null) - __typename: 'system_alerts_sum_fields' -} - - -/** update columns of table "system_alerts" */ -export type system_alerts_update_column = 'created_at' | 'created_by' | 'dismissible' | 'expires_at' | 'id' | 'is_active' | 'message' | 'title' | 'type' | 'updated_at' - - -/** aggregate var_pop on columns */ -export interface system_alerts_var_pop_fields { - created_by: (Scalars['Float'] | null) - __typename: 'system_alerts_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface system_alerts_var_samp_fields { - created_by: (Scalars['Float'] | null) - __typename: 'system_alerts_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface system_alerts_variance_fields { - created_by: (Scalars['Float'] | null) - __typename: 'system_alerts_variance_fields' -} - - -/** columns and relationships of "team_invites" */ -export interface team_invites { - created_at: Scalars['timestamptz'] - id: Scalars['uuid'] - /** An object relationship */ - invited_by: players - invited_by_player_steam_id: Scalars['bigint'] - /** An object relationship */ - player: players - steam_id: Scalars['bigint'] - /** An object relationship */ - team: teams - team_id: Scalars['uuid'] - __typename: 'team_invites' -} - - -/** aggregated selection of "team_invites" */ -export interface team_invites_aggregate { - aggregate: (team_invites_aggregate_fields | null) - nodes: team_invites[] - __typename: 'team_invites_aggregate' -} - - -/** aggregate fields of "team_invites" */ -export interface team_invites_aggregate_fields { - avg: (team_invites_avg_fields | null) - count: Scalars['Int'] - max: (team_invites_max_fields | null) - min: (team_invites_min_fields | null) - stddev: (team_invites_stddev_fields | null) - stddev_pop: (team_invites_stddev_pop_fields | null) - stddev_samp: (team_invites_stddev_samp_fields | null) - sum: (team_invites_sum_fields | null) - var_pop: (team_invites_var_pop_fields | null) - var_samp: (team_invites_var_samp_fields | null) - variance: (team_invites_variance_fields | null) - __typename: 'team_invites_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface team_invites_avg_fields { - invited_by_player_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'team_invites_avg_fields' -} - - -/** unique or primary key constraints on table "team_invites" */ -export type team_invites_constraint = 'team_invites_pkey' | 'team_invites_team_id_steam_id_key' - - -/** aggregate max on columns */ -export interface team_invites_max_fields { - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - invited_by_player_steam_id: (Scalars['bigint'] | null) - steam_id: (Scalars['bigint'] | null) - team_id: (Scalars['uuid'] | null) - __typename: 'team_invites_max_fields' -} - - -/** aggregate min on columns */ -export interface team_invites_min_fields { - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - invited_by_player_steam_id: (Scalars['bigint'] | null) - steam_id: (Scalars['bigint'] | null) - team_id: (Scalars['uuid'] | null) - __typename: 'team_invites_min_fields' -} - - -/** response of any mutation on the table "team_invites" */ -export interface team_invites_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: team_invites[] - __typename: 'team_invites_mutation_response' -} - - -/** select columns of table "team_invites" */ -export type team_invites_select_column = 'created_at' | 'id' | 'invited_by_player_steam_id' | 'steam_id' | 'team_id' - - -/** aggregate stddev on columns */ -export interface team_invites_stddev_fields { - invited_by_player_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'team_invites_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface team_invites_stddev_pop_fields { - invited_by_player_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'team_invites_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface team_invites_stddev_samp_fields { - invited_by_player_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'team_invites_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface team_invites_sum_fields { - invited_by_player_steam_id: (Scalars['bigint'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'team_invites_sum_fields' -} - - -/** update columns of table "team_invites" */ -export type team_invites_update_column = 'created_at' | 'id' | 'invited_by_player_steam_id' | 'steam_id' | 'team_id' - - -/** aggregate var_pop on columns */ -export interface team_invites_var_pop_fields { - invited_by_player_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'team_invites_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface team_invites_var_samp_fields { - invited_by_player_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'team_invites_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface team_invites_variance_fields { - invited_by_player_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'team_invites_variance_fields' -} - - -/** columns and relationships of "team_roster" */ -export interface team_roster { - coach: Scalars['Boolean'] - /** An object relationship */ - player: players - player_steam_id: Scalars['bigint'] - role: e_team_roles_enum - roster_image_url: (Scalars['String'] | null) - status: e_team_roster_statuses_enum - /** An object relationship */ - team: teams - team_id: Scalars['uuid'] - __typename: 'team_roster' -} - - -/** aggregated selection of "team_roster" */ -export interface team_roster_aggregate { - aggregate: (team_roster_aggregate_fields | null) - nodes: team_roster[] - __typename: 'team_roster_aggregate' -} - - -/** aggregate fields of "team_roster" */ -export interface team_roster_aggregate_fields { - avg: (team_roster_avg_fields | null) - count: Scalars['Int'] - max: (team_roster_max_fields | null) - min: (team_roster_min_fields | null) - stddev: (team_roster_stddev_fields | null) - stddev_pop: (team_roster_stddev_pop_fields | null) - stddev_samp: (team_roster_stddev_samp_fields | null) - sum: (team_roster_sum_fields | null) - var_pop: (team_roster_var_pop_fields | null) - var_samp: (team_roster_var_samp_fields | null) - variance: (team_roster_variance_fields | null) - __typename: 'team_roster_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface team_roster_avg_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'team_roster_avg_fields' -} - - -/** unique or primary key constraints on table "team_roster" */ -export type team_roster_constraint = 'team_members_pkey' - - -/** aggregate max on columns */ -export interface team_roster_max_fields { - player_steam_id: (Scalars['bigint'] | null) - roster_image_url: (Scalars['String'] | null) - team_id: (Scalars['uuid'] | null) - __typename: 'team_roster_max_fields' -} - - -/** aggregate min on columns */ -export interface team_roster_min_fields { - player_steam_id: (Scalars['bigint'] | null) - roster_image_url: (Scalars['String'] | null) - team_id: (Scalars['uuid'] | null) - __typename: 'team_roster_min_fields' -} - - -/** response of any mutation on the table "team_roster" */ -export interface team_roster_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: team_roster[] - __typename: 'team_roster_mutation_response' -} - - -/** select columns of table "team_roster" */ -export type team_roster_select_column = 'coach' | 'player_steam_id' | 'role' | 'roster_image_url' | 'status' | 'team_id' - - -/** select "team_roster_aggregate_bool_exp_bool_and_arguments_columns" columns of table "team_roster" */ -export type team_roster_select_column_team_roster_aggregate_bool_exp_bool_and_arguments_columns = 'coach' - - -/** select "team_roster_aggregate_bool_exp_bool_or_arguments_columns" columns of table "team_roster" */ -export type team_roster_select_column_team_roster_aggregate_bool_exp_bool_or_arguments_columns = 'coach' - - -/** aggregate stddev on columns */ -export interface team_roster_stddev_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'team_roster_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface team_roster_stddev_pop_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'team_roster_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface team_roster_stddev_samp_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'team_roster_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface team_roster_sum_fields { - player_steam_id: (Scalars['bigint'] | null) - __typename: 'team_roster_sum_fields' -} - - -/** update columns of table "team_roster" */ -export type team_roster_update_column = 'coach' | 'player_steam_id' | 'role' | 'roster_image_url' | 'status' | 'team_id' - - -/** aggregate var_pop on columns */ -export interface team_roster_var_pop_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'team_roster_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface team_roster_var_samp_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'team_roster_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface team_roster_variance_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'team_roster_variance_fields' -} - - -/** columns and relationships of "team_scrim_alerts" */ -export interface team_scrim_alerts { - created_at: Scalars['timestamptz'] - elo_max: (Scalars['Int'] | null) - elo_min: (Scalars['Int'] | null) - enabled: Scalars['Boolean'] - id: Scalars['uuid'] - last_notified_at: (Scalars['timestamptz'] | null) - regions: Scalars['String'][] - /** An object relationship */ - team: teams - team_id: Scalars['uuid'] - __typename: 'team_scrim_alerts' -} - - -/** aggregated selection of "team_scrim_alerts" */ -export interface team_scrim_alerts_aggregate { - aggregate: (team_scrim_alerts_aggregate_fields | null) - nodes: team_scrim_alerts[] - __typename: 'team_scrim_alerts_aggregate' -} - - -/** aggregate fields of "team_scrim_alerts" */ -export interface team_scrim_alerts_aggregate_fields { - avg: (team_scrim_alerts_avg_fields | null) - count: Scalars['Int'] - max: (team_scrim_alerts_max_fields | null) - min: (team_scrim_alerts_min_fields | null) - stddev: (team_scrim_alerts_stddev_fields | null) - stddev_pop: (team_scrim_alerts_stddev_pop_fields | null) - stddev_samp: (team_scrim_alerts_stddev_samp_fields | null) - sum: (team_scrim_alerts_sum_fields | null) - var_pop: (team_scrim_alerts_var_pop_fields | null) - var_samp: (team_scrim_alerts_var_samp_fields | null) - variance: (team_scrim_alerts_variance_fields | null) - __typename: 'team_scrim_alerts_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface team_scrim_alerts_avg_fields { - elo_max: (Scalars['Float'] | null) - elo_min: (Scalars['Float'] | null) - __typename: 'team_scrim_alerts_avg_fields' -} - - -/** unique or primary key constraints on table "team_scrim_alerts" */ -export type team_scrim_alerts_constraint = 'team_scrim_alerts_pkey' - - -/** aggregate max on columns */ -export interface team_scrim_alerts_max_fields { - created_at: (Scalars['timestamptz'] | null) - elo_max: (Scalars['Int'] | null) - elo_min: (Scalars['Int'] | null) - id: (Scalars['uuid'] | null) - last_notified_at: (Scalars['timestamptz'] | null) - regions: (Scalars['String'][] | null) - team_id: (Scalars['uuid'] | null) - __typename: 'team_scrim_alerts_max_fields' -} - - -/** aggregate min on columns */ -export interface team_scrim_alerts_min_fields { - created_at: (Scalars['timestamptz'] | null) - elo_max: (Scalars['Int'] | null) - elo_min: (Scalars['Int'] | null) - id: (Scalars['uuid'] | null) - last_notified_at: (Scalars['timestamptz'] | null) - regions: (Scalars['String'][] | null) - team_id: (Scalars['uuid'] | null) - __typename: 'team_scrim_alerts_min_fields' -} - - -/** response of any mutation on the table "team_scrim_alerts" */ -export interface team_scrim_alerts_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: team_scrim_alerts[] - __typename: 'team_scrim_alerts_mutation_response' -} - - -/** select columns of table "team_scrim_alerts" */ -export type team_scrim_alerts_select_column = 'created_at' | 'elo_max' | 'elo_min' | 'enabled' | 'id' | 'last_notified_at' | 'regions' | 'team_id' - - -/** aggregate stddev on columns */ -export interface team_scrim_alerts_stddev_fields { - elo_max: (Scalars['Float'] | null) - elo_min: (Scalars['Float'] | null) - __typename: 'team_scrim_alerts_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface team_scrim_alerts_stddev_pop_fields { - elo_max: (Scalars['Float'] | null) - elo_min: (Scalars['Float'] | null) - __typename: 'team_scrim_alerts_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface team_scrim_alerts_stddev_samp_fields { - elo_max: (Scalars['Float'] | null) - elo_min: (Scalars['Float'] | null) - __typename: 'team_scrim_alerts_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface team_scrim_alerts_sum_fields { - elo_max: (Scalars['Int'] | null) - elo_min: (Scalars['Int'] | null) - __typename: 'team_scrim_alerts_sum_fields' -} - - -/** update columns of table "team_scrim_alerts" */ -export type team_scrim_alerts_update_column = 'created_at' | 'elo_max' | 'elo_min' | 'enabled' | 'id' | 'last_notified_at' | 'regions' | 'team_id' - - -/** aggregate var_pop on columns */ -export interface team_scrim_alerts_var_pop_fields { - elo_max: (Scalars['Float'] | null) - elo_min: (Scalars['Float'] | null) - __typename: 'team_scrim_alerts_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface team_scrim_alerts_var_samp_fields { - elo_max: (Scalars['Float'] | null) - elo_min: (Scalars['Float'] | null) - __typename: 'team_scrim_alerts_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface team_scrim_alerts_variance_fields { - elo_max: (Scalars['Float'] | null) - elo_min: (Scalars['Float'] | null) - __typename: 'team_scrim_alerts_variance_fields' -} - - -/** columns and relationships of "team_scrim_availability" */ -export interface team_scrim_availability { - created_at: Scalars['timestamptz'] - ends_at: Scalars['timestamptz'] - id: Scalars['uuid'] - recurring_weekly: Scalars['Boolean'] - starts_at: Scalars['timestamptz'] - /** An object relationship */ - team: teams - team_id: Scalars['uuid'] - __typename: 'team_scrim_availability' -} - - -/** aggregated selection of "team_scrim_availability" */ -export interface team_scrim_availability_aggregate { - aggregate: (team_scrim_availability_aggregate_fields | null) - nodes: team_scrim_availability[] - __typename: 'team_scrim_availability_aggregate' -} - - -/** aggregate fields of "team_scrim_availability" */ -export interface team_scrim_availability_aggregate_fields { - count: Scalars['Int'] - max: (team_scrim_availability_max_fields | null) - min: (team_scrim_availability_min_fields | null) - __typename: 'team_scrim_availability_aggregate_fields' -} - - -/** unique or primary key constraints on table "team_scrim_availability" */ -export type team_scrim_availability_constraint = 'team_scrim_availability_pkey' - - -/** aggregate max on columns */ -export interface team_scrim_availability_max_fields { - created_at: (Scalars['timestamptz'] | null) - ends_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - starts_at: (Scalars['timestamptz'] | null) - team_id: (Scalars['uuid'] | null) - __typename: 'team_scrim_availability_max_fields' -} - - -/** aggregate min on columns */ -export interface team_scrim_availability_min_fields { - created_at: (Scalars['timestamptz'] | null) - ends_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - starts_at: (Scalars['timestamptz'] | null) - team_id: (Scalars['uuid'] | null) - __typename: 'team_scrim_availability_min_fields' -} - - -/** response of any mutation on the table "team_scrim_availability" */ -export interface team_scrim_availability_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: team_scrim_availability[] - __typename: 'team_scrim_availability_mutation_response' -} - - -/** select columns of table "team_scrim_availability" */ -export type team_scrim_availability_select_column = 'created_at' | 'ends_at' | 'id' | 'recurring_weekly' | 'starts_at' | 'team_id' - - -/** select "team_scrim_availability_aggregate_bool_exp_bool_and_arguments_columns" columns of table "team_scrim_availability" */ -export type team_scrim_availability_select_column_team_scrim_availability_aggregate_bool_exp_bool_and_arguments_columns = 'recurring_weekly' - - -/** select "team_scrim_availability_aggregate_bool_exp_bool_or_arguments_columns" columns of table "team_scrim_availability" */ -export type team_scrim_availability_select_column_team_scrim_availability_aggregate_bool_exp_bool_or_arguments_columns = 'recurring_weekly' - - -/** update columns of table "team_scrim_availability" */ -export type team_scrim_availability_update_column = 'created_at' | 'ends_at' | 'id' | 'recurring_weekly' | 'starts_at' | 'team_id' - - -/** columns and relationships of "team_scrim_request_proposals" */ -export interface team_scrim_request_proposals { - created_at: Scalars['timestamptz'] - id: Scalars['uuid'] - /** An object relationship */ - proposed_by: players - proposed_by_steam_id: Scalars['bigint'] - /** An object relationship */ - proposed_by_team: teams - proposed_by_team_id: Scalars['uuid'] - proposed_scheduled_at: Scalars['timestamptz'] - /** An object relationship */ - request: team_scrim_requests - request_id: Scalars['uuid'] - __typename: 'team_scrim_request_proposals' -} - - -/** aggregated selection of "team_scrim_request_proposals" */ -export interface team_scrim_request_proposals_aggregate { - aggregate: (team_scrim_request_proposals_aggregate_fields | null) - nodes: team_scrim_request_proposals[] - __typename: 'team_scrim_request_proposals_aggregate' -} - - -/** aggregate fields of "team_scrim_request_proposals" */ -export interface team_scrim_request_proposals_aggregate_fields { - avg: (team_scrim_request_proposals_avg_fields | null) - count: Scalars['Int'] - max: (team_scrim_request_proposals_max_fields | null) - min: (team_scrim_request_proposals_min_fields | null) - stddev: (team_scrim_request_proposals_stddev_fields | null) - stddev_pop: (team_scrim_request_proposals_stddev_pop_fields | null) - stddev_samp: (team_scrim_request_proposals_stddev_samp_fields | null) - sum: (team_scrim_request_proposals_sum_fields | null) - var_pop: (team_scrim_request_proposals_var_pop_fields | null) - var_samp: (team_scrim_request_proposals_var_samp_fields | null) - variance: (team_scrim_request_proposals_variance_fields | null) - __typename: 'team_scrim_request_proposals_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface team_scrim_request_proposals_avg_fields { - proposed_by_steam_id: (Scalars['Float'] | null) - __typename: 'team_scrim_request_proposals_avg_fields' -} - - -/** unique or primary key constraints on table "team_scrim_request_proposals" */ -export type team_scrim_request_proposals_constraint = 'team_scrim_request_proposals_pkey' - - -/** aggregate max on columns */ -export interface team_scrim_request_proposals_max_fields { - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - proposed_by_steam_id: (Scalars['bigint'] | null) - proposed_by_team_id: (Scalars['uuid'] | null) - proposed_scheduled_at: (Scalars['timestamptz'] | null) - request_id: (Scalars['uuid'] | null) - __typename: 'team_scrim_request_proposals_max_fields' -} - - -/** aggregate min on columns */ -export interface team_scrim_request_proposals_min_fields { - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - proposed_by_steam_id: (Scalars['bigint'] | null) - proposed_by_team_id: (Scalars['uuid'] | null) - proposed_scheduled_at: (Scalars['timestamptz'] | null) - request_id: (Scalars['uuid'] | null) - __typename: 'team_scrim_request_proposals_min_fields' -} - - -/** response of any mutation on the table "team_scrim_request_proposals" */ -export interface team_scrim_request_proposals_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: team_scrim_request_proposals[] - __typename: 'team_scrim_request_proposals_mutation_response' -} - - -/** select columns of table "team_scrim_request_proposals" */ -export type team_scrim_request_proposals_select_column = 'created_at' | 'id' | 'proposed_by_steam_id' | 'proposed_by_team_id' | 'proposed_scheduled_at' | 'request_id' - - -/** aggregate stddev on columns */ -export interface team_scrim_request_proposals_stddev_fields { - proposed_by_steam_id: (Scalars['Float'] | null) - __typename: 'team_scrim_request_proposals_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface team_scrim_request_proposals_stddev_pop_fields { - proposed_by_steam_id: (Scalars['Float'] | null) - __typename: 'team_scrim_request_proposals_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface team_scrim_request_proposals_stddev_samp_fields { - proposed_by_steam_id: (Scalars['Float'] | null) - __typename: 'team_scrim_request_proposals_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface team_scrim_request_proposals_sum_fields { - proposed_by_steam_id: (Scalars['bigint'] | null) - __typename: 'team_scrim_request_proposals_sum_fields' -} - - -/** update columns of table "team_scrim_request_proposals" */ -export type team_scrim_request_proposals_update_column = 'created_at' | 'id' | 'proposed_by_steam_id' | 'proposed_by_team_id' | 'proposed_scheduled_at' | 'request_id' - - -/** aggregate var_pop on columns */ -export interface team_scrim_request_proposals_var_pop_fields { - proposed_by_steam_id: (Scalars['Float'] | null) - __typename: 'team_scrim_request_proposals_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface team_scrim_request_proposals_var_samp_fields { - proposed_by_steam_id: (Scalars['Float'] | null) - __typename: 'team_scrim_request_proposals_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface team_scrim_request_proposals_variance_fields { - proposed_by_steam_id: (Scalars['Float'] | null) - __typename: 'team_scrim_request_proposals_variance_fields' -} - - -/** columns and relationships of "team_scrim_requests" */ -export interface team_scrim_requests { - auto_generated: Scalars['Boolean'] - /** An object relationship */ - awaiting_team: teams - awaiting_team_id: Scalars['uuid'] - canceled_by_team_id: (Scalars['uuid'] | null) - canceled_late: Scalars['Boolean'] - created_at: Scalars['timestamptz'] - expires_at: Scalars['timestamptz'] - /** An object relationship */ - from_team: teams - from_team_checked_in: (Scalars['Boolean'] | null) - from_team_id: Scalars['uuid'] - id: Scalars['uuid'] - /** An object relationship */ - match: (matches | null) - match_id: (Scalars['uuid'] | null) - /** An object relationship */ - match_options: (match_options | null) - match_options_id: (Scalars['uuid'] | null) - /** Terminal match status captured by tbd_match_cancel_scrim before the match row is deleted, so v_team_reputation survives canceled-match GC. */ - match_outcome: (Scalars['String'] | null) - /** An array relationship */ - proposals: team_scrim_request_proposals[] - /** An aggregate relationship */ - proposals_aggregate: team_scrim_request_proposals_aggregate - proposed_scheduled_at: Scalars['timestamptz'] - region: (Scalars['String'] | null) - /** An object relationship */ - requested_by: players - requested_by_steam_id: Scalars['bigint'] - responded_at: (Scalars['timestamptz'] | null) - status: e_scrim_request_statuses_enum - /** An object relationship */ - to_team: teams - to_team_checked_in: (Scalars['Boolean'] | null) - to_team_id: Scalars['uuid'] - __typename: 'team_scrim_requests' -} - - -/** aggregated selection of "team_scrim_requests" */ -export interface team_scrim_requests_aggregate { - aggregate: (team_scrim_requests_aggregate_fields | null) - nodes: team_scrim_requests[] - __typename: 'team_scrim_requests_aggregate' -} - - -/** aggregate fields of "team_scrim_requests" */ -export interface team_scrim_requests_aggregate_fields { - avg: (team_scrim_requests_avg_fields | null) - count: Scalars['Int'] - max: (team_scrim_requests_max_fields | null) - min: (team_scrim_requests_min_fields | null) - stddev: (team_scrim_requests_stddev_fields | null) - stddev_pop: (team_scrim_requests_stddev_pop_fields | null) - stddev_samp: (team_scrim_requests_stddev_samp_fields | null) - sum: (team_scrim_requests_sum_fields | null) - var_pop: (team_scrim_requests_var_pop_fields | null) - var_samp: (team_scrim_requests_var_samp_fields | null) - variance: (team_scrim_requests_variance_fields | null) - __typename: 'team_scrim_requests_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface team_scrim_requests_avg_fields { - requested_by_steam_id: (Scalars['Float'] | null) - __typename: 'team_scrim_requests_avg_fields' -} - - -/** unique or primary key constraints on table "team_scrim_requests" */ -export type team_scrim_requests_constraint = 'team_scrim_requests_pkey' | 'uq_scrim_req_open' - - -/** aggregate max on columns */ -export interface team_scrim_requests_max_fields { - awaiting_team_id: (Scalars['uuid'] | null) - canceled_by_team_id: (Scalars['uuid'] | null) - created_at: (Scalars['timestamptz'] | null) - expires_at: (Scalars['timestamptz'] | null) - from_team_id: (Scalars['uuid'] | null) - id: (Scalars['uuid'] | null) - match_id: (Scalars['uuid'] | null) - match_options_id: (Scalars['uuid'] | null) - /** Terminal match status captured by tbd_match_cancel_scrim before the match row is deleted, so v_team_reputation survives canceled-match GC. */ - match_outcome: (Scalars['String'] | null) - proposed_scheduled_at: (Scalars['timestamptz'] | null) - region: (Scalars['String'] | null) - requested_by_steam_id: (Scalars['bigint'] | null) - responded_at: (Scalars['timestamptz'] | null) - to_team_id: (Scalars['uuid'] | null) - __typename: 'team_scrim_requests_max_fields' -} - - -/** aggregate min on columns */ -export interface team_scrim_requests_min_fields { - awaiting_team_id: (Scalars['uuid'] | null) - canceled_by_team_id: (Scalars['uuid'] | null) - created_at: (Scalars['timestamptz'] | null) - expires_at: (Scalars['timestamptz'] | null) - from_team_id: (Scalars['uuid'] | null) - id: (Scalars['uuid'] | null) - match_id: (Scalars['uuid'] | null) - match_options_id: (Scalars['uuid'] | null) - /** Terminal match status captured by tbd_match_cancel_scrim before the match row is deleted, so v_team_reputation survives canceled-match GC. */ - match_outcome: (Scalars['String'] | null) - proposed_scheduled_at: (Scalars['timestamptz'] | null) - region: (Scalars['String'] | null) - requested_by_steam_id: (Scalars['bigint'] | null) - responded_at: (Scalars['timestamptz'] | null) - to_team_id: (Scalars['uuid'] | null) - __typename: 'team_scrim_requests_min_fields' -} - - -/** response of any mutation on the table "team_scrim_requests" */ -export interface team_scrim_requests_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: team_scrim_requests[] - __typename: 'team_scrim_requests_mutation_response' -} - - -/** select columns of table "team_scrim_requests" */ -export type team_scrim_requests_select_column = 'auto_generated' | 'awaiting_team_id' | 'canceled_by_team_id' | 'canceled_late' | 'created_at' | 'expires_at' | 'from_team_checked_in' | 'from_team_id' | 'id' | 'match_id' | 'match_options_id' | 'match_outcome' | 'proposed_scheduled_at' | 'region' | 'requested_by_steam_id' | 'responded_at' | 'status' | 'to_team_checked_in' | 'to_team_id' - - -/** select "team_scrim_requests_aggregate_bool_exp_bool_and_arguments_columns" columns of table "team_scrim_requests" */ -export type team_scrim_requests_select_column_team_scrim_requests_aggregate_bool_exp_bool_and_arguments_columns = 'auto_generated' | 'canceled_late' | 'from_team_checked_in' | 'to_team_checked_in' - - -/** select "team_scrim_requests_aggregate_bool_exp_bool_or_arguments_columns" columns of table "team_scrim_requests" */ -export type team_scrim_requests_select_column_team_scrim_requests_aggregate_bool_exp_bool_or_arguments_columns = 'auto_generated' | 'canceled_late' | 'from_team_checked_in' | 'to_team_checked_in' - - -/** aggregate stddev on columns */ -export interface team_scrim_requests_stddev_fields { - requested_by_steam_id: (Scalars['Float'] | null) - __typename: 'team_scrim_requests_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface team_scrim_requests_stddev_pop_fields { - requested_by_steam_id: (Scalars['Float'] | null) - __typename: 'team_scrim_requests_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface team_scrim_requests_stddev_samp_fields { - requested_by_steam_id: (Scalars['Float'] | null) - __typename: 'team_scrim_requests_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface team_scrim_requests_sum_fields { - requested_by_steam_id: (Scalars['bigint'] | null) - __typename: 'team_scrim_requests_sum_fields' -} - - -/** update columns of table "team_scrim_requests" */ -export type team_scrim_requests_update_column = 'auto_generated' | 'awaiting_team_id' | 'canceled_by_team_id' | 'canceled_late' | 'created_at' | 'expires_at' | 'from_team_checked_in' | 'from_team_id' | 'id' | 'match_id' | 'match_options_id' | 'match_outcome' | 'proposed_scheduled_at' | 'region' | 'requested_by_steam_id' | 'responded_at' | 'status' | 'to_team_checked_in' | 'to_team_id' - - -/** aggregate var_pop on columns */ -export interface team_scrim_requests_var_pop_fields { - requested_by_steam_id: (Scalars['Float'] | null) - __typename: 'team_scrim_requests_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface team_scrim_requests_var_samp_fields { - requested_by_steam_id: (Scalars['Float'] | null) - __typename: 'team_scrim_requests_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface team_scrim_requests_variance_fields { - requested_by_steam_id: (Scalars['Float'] | null) - __typename: 'team_scrim_requests_variance_fields' -} - - -/** columns and relationships of "team_scrim_settings" */ -export interface team_scrim_settings { - allow_outside_availability: Scalars['Boolean'] - created_at: Scalars['timestamptz'] - elo_max: (Scalars['Int'] | null) - elo_min: (Scalars['Int'] | null) - enabled: Scalars['Boolean'] - id: Scalars['uuid'] - map_ids: Scalars['uuid'][] - notes: (Scalars['String'] | null) - regions: Scalars['String'][] - /** An object relationship */ - team: teams - team_id: Scalars['uuid'] - updated_at: Scalars['timestamptz'] - __typename: 'team_scrim_settings' -} - - -/** aggregated selection of "team_scrim_settings" */ -export interface team_scrim_settings_aggregate { - aggregate: (team_scrim_settings_aggregate_fields | null) - nodes: team_scrim_settings[] - __typename: 'team_scrim_settings_aggregate' -} - - -/** aggregate fields of "team_scrim_settings" */ -export interface team_scrim_settings_aggregate_fields { - avg: (team_scrim_settings_avg_fields | null) - count: Scalars['Int'] - max: (team_scrim_settings_max_fields | null) - min: (team_scrim_settings_min_fields | null) - stddev: (team_scrim_settings_stddev_fields | null) - stddev_pop: (team_scrim_settings_stddev_pop_fields | null) - stddev_samp: (team_scrim_settings_stddev_samp_fields | null) - sum: (team_scrim_settings_sum_fields | null) - var_pop: (team_scrim_settings_var_pop_fields | null) - var_samp: (team_scrim_settings_var_samp_fields | null) - variance: (team_scrim_settings_variance_fields | null) - __typename: 'team_scrim_settings_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface team_scrim_settings_avg_fields { - elo_max: (Scalars['Float'] | null) - elo_min: (Scalars['Float'] | null) - __typename: 'team_scrim_settings_avg_fields' -} - - -/** unique or primary key constraints on table "team_scrim_settings" */ -export type team_scrim_settings_constraint = 'team_scrim_settings_pkey' | 'team_scrim_settings_team_id_key' - - -/** aggregate max on columns */ -export interface team_scrim_settings_max_fields { - created_at: (Scalars['timestamptz'] | null) - elo_max: (Scalars['Int'] | null) - elo_min: (Scalars['Int'] | null) - id: (Scalars['uuid'] | null) - map_ids: (Scalars['uuid'][] | null) - notes: (Scalars['String'] | null) - regions: (Scalars['String'][] | null) - team_id: (Scalars['uuid'] | null) - updated_at: (Scalars['timestamptz'] | null) - __typename: 'team_scrim_settings_max_fields' -} - - -/** aggregate min on columns */ -export interface team_scrim_settings_min_fields { - created_at: (Scalars['timestamptz'] | null) - elo_max: (Scalars['Int'] | null) - elo_min: (Scalars['Int'] | null) - id: (Scalars['uuid'] | null) - map_ids: (Scalars['uuid'][] | null) - notes: (Scalars['String'] | null) - regions: (Scalars['String'][] | null) - team_id: (Scalars['uuid'] | null) - updated_at: (Scalars['timestamptz'] | null) - __typename: 'team_scrim_settings_min_fields' -} - - -/** response of any mutation on the table "team_scrim_settings" */ -export interface team_scrim_settings_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: team_scrim_settings[] - __typename: 'team_scrim_settings_mutation_response' -} - - -/** select columns of table "team_scrim_settings" */ -export type team_scrim_settings_select_column = 'allow_outside_availability' | 'created_at' | 'elo_max' | 'elo_min' | 'enabled' | 'id' | 'map_ids' | 'notes' | 'regions' | 'team_id' | 'updated_at' - - -/** aggregate stddev on columns */ -export interface team_scrim_settings_stddev_fields { - elo_max: (Scalars['Float'] | null) - elo_min: (Scalars['Float'] | null) - __typename: 'team_scrim_settings_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface team_scrim_settings_stddev_pop_fields { - elo_max: (Scalars['Float'] | null) - elo_min: (Scalars['Float'] | null) - __typename: 'team_scrim_settings_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface team_scrim_settings_stddev_samp_fields { - elo_max: (Scalars['Float'] | null) - elo_min: (Scalars['Float'] | null) - __typename: 'team_scrim_settings_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface team_scrim_settings_sum_fields { - elo_max: (Scalars['Int'] | null) - elo_min: (Scalars['Int'] | null) - __typename: 'team_scrim_settings_sum_fields' -} - - -/** update columns of table "team_scrim_settings" */ -export type team_scrim_settings_update_column = 'allow_outside_availability' | 'created_at' | 'elo_max' | 'elo_min' | 'enabled' | 'id' | 'map_ids' | 'notes' | 'regions' | 'team_id' | 'updated_at' - - -/** aggregate var_pop on columns */ -export interface team_scrim_settings_var_pop_fields { - elo_max: (Scalars['Float'] | null) - elo_min: (Scalars['Float'] | null) - __typename: 'team_scrim_settings_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface team_scrim_settings_var_samp_fields { - elo_max: (Scalars['Float'] | null) - elo_min: (Scalars['Float'] | null) - __typename: 'team_scrim_settings_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface team_scrim_settings_variance_fields { - elo_max: (Scalars['Float'] | null) - elo_min: (Scalars['Float'] | null) - __typename: 'team_scrim_settings_variance_fields' -} - - -/** columns and relationships of "team_suggestions" */ -export interface team_suggestions { - created_at: Scalars['timestamptz'] - group_hash: Scalars['String'] - id: Scalars['uuid'] - last_notified_at: (Scalars['timestamptz'] | null) - member_steam_ids: Scalars['bigint'][] - status: Scalars['String'] - together_count: Scalars['Int'] - __typename: 'team_suggestions' -} - - -/** aggregated selection of "team_suggestions" */ -export interface team_suggestions_aggregate { - aggregate: (team_suggestions_aggregate_fields | null) - nodes: team_suggestions[] - __typename: 'team_suggestions_aggregate' -} - - -/** aggregate fields of "team_suggestions" */ -export interface team_suggestions_aggregate_fields { - avg: (team_suggestions_avg_fields | null) - count: Scalars['Int'] - max: (team_suggestions_max_fields | null) - min: (team_suggestions_min_fields | null) - stddev: (team_suggestions_stddev_fields | null) - stddev_pop: (team_suggestions_stddev_pop_fields | null) - stddev_samp: (team_suggestions_stddev_samp_fields | null) - sum: (team_suggestions_sum_fields | null) - var_pop: (team_suggestions_var_pop_fields | null) - var_samp: (team_suggestions_var_samp_fields | null) - variance: (team_suggestions_variance_fields | null) - __typename: 'team_suggestions_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface team_suggestions_avg_fields { - together_count: (Scalars['Float'] | null) - __typename: 'team_suggestions_avg_fields' -} - - -/** unique or primary key constraints on table "team_suggestions" */ -export type team_suggestions_constraint = 'team_suggestions_group_hash_key' | 'team_suggestions_pkey' - - -/** aggregate max on columns */ -export interface team_suggestions_max_fields { - created_at: (Scalars['timestamptz'] | null) - group_hash: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - last_notified_at: (Scalars['timestamptz'] | null) - member_steam_ids: (Scalars['bigint'][] | null) - status: (Scalars['String'] | null) - together_count: (Scalars['Int'] | null) - __typename: 'team_suggestions_max_fields' -} - - -/** aggregate min on columns */ -export interface team_suggestions_min_fields { - created_at: (Scalars['timestamptz'] | null) - group_hash: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - last_notified_at: (Scalars['timestamptz'] | null) - member_steam_ids: (Scalars['bigint'][] | null) - status: (Scalars['String'] | null) - together_count: (Scalars['Int'] | null) - __typename: 'team_suggestions_min_fields' -} - - -/** response of any mutation on the table "team_suggestions" */ -export interface team_suggestions_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: team_suggestions[] - __typename: 'team_suggestions_mutation_response' -} - - -/** select columns of table "team_suggestions" */ -export type team_suggestions_select_column = 'created_at' | 'group_hash' | 'id' | 'last_notified_at' | 'member_steam_ids' | 'status' | 'together_count' - - -/** aggregate stddev on columns */ -export interface team_suggestions_stddev_fields { - together_count: (Scalars['Float'] | null) - __typename: 'team_suggestions_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface team_suggestions_stddev_pop_fields { - together_count: (Scalars['Float'] | null) - __typename: 'team_suggestions_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface team_suggestions_stddev_samp_fields { - together_count: (Scalars['Float'] | null) - __typename: 'team_suggestions_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface team_suggestions_sum_fields { - together_count: (Scalars['Int'] | null) - __typename: 'team_suggestions_sum_fields' -} - - -/** update columns of table "team_suggestions" */ -export type team_suggestions_update_column = 'created_at' | 'group_hash' | 'id' | 'last_notified_at' | 'member_steam_ids' | 'status' | 'together_count' - - -/** aggregate var_pop on columns */ -export interface team_suggestions_var_pop_fields { - together_count: (Scalars['Float'] | null) - __typename: 'team_suggestions_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface team_suggestions_var_samp_fields { - together_count: (Scalars['Float'] | null) - __typename: 'team_suggestions_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface team_suggestions_variance_fields { - together_count: (Scalars['Float'] | null) - __typename: 'team_suggestions_variance_fields' -} - - -/** columns and relationships of "teams" */ -export interface teams { - avatar_url: (Scalars['String'] | null) - /** An array relationship */ - awards: award_recipients[] - /** An aggregate relationship */ - awards_aggregate: award_recipients_aggregate - /** A computed field, executes function "can_change_team_role" */ - can_change_role: (Scalars['Boolean'] | null) - /** A computed field, executes function "can_invite_to_team" */ - can_invite: (Scalars['Boolean'] | null) - /** A computed field, executes function "can_manage_team_scrims" */ - can_manage_scrims: (Scalars['Boolean'] | null) - /** A computed field, executes function "can_remove_from_team" */ - can_remove: (Scalars['Boolean'] | null) - /** An object relationship */ - captain: (players | null) - captain_steam_id: (Scalars['bigint'] | null) - id: Scalars['uuid'] - /** An array relationship */ - invites: team_invites[] - /** An aggregate relationship */ - invites_aggregate: team_invites_aggregate - is_organization: Scalars['Boolean'] - /** An array relationship */ - match_lineups: match_lineups[] - /** An aggregate relationship */ - match_lineups_aggregate: match_lineups_aggregate - /** A computed field, executes function "get_team_matches" */ - matches: (matches[] | null) - name: Scalars['String'] - /** An object relationship */ - owner: players - owner_steam_id: Scalars['bigint'] - /** An object relationship */ - ranks: (v_team_ranks | null) - /** An object relationship */ - reputation: (v_team_reputation | null) - /** A computed field, executes function "team_role" */ - role: (Scalars['String'] | null) - /** An array relationship */ - roster: team_roster[] - /** An aggregate relationship */ - roster_aggregate: team_roster_aggregate - /** An array relationship */ - scrim_availability: team_scrim_availability[] - /** An aggregate relationship */ - scrim_availability_aggregate: team_scrim_availability_aggregate - /** An object relationship */ - scrim_settings: (team_scrim_settings | null) - short_name: Scalars['String'] - /** An array relationship */ - tournament_teams: tournament_teams[] - /** An aggregate relationship */ - tournament_teams_aggregate: tournament_teams_aggregate - __typename: 'teams' -} - - -/** aggregated selection of "teams" */ -export interface teams_aggregate { - aggregate: (teams_aggregate_fields | null) - nodes: teams[] - __typename: 'teams_aggregate' -} - - -/** aggregate fields of "teams" */ -export interface teams_aggregate_fields { - avg: (teams_avg_fields | null) - count: Scalars['Int'] - max: (teams_max_fields | null) - min: (teams_min_fields | null) - stddev: (teams_stddev_fields | null) - stddev_pop: (teams_stddev_pop_fields | null) - stddev_samp: (teams_stddev_samp_fields | null) - sum: (teams_sum_fields | null) - var_pop: (teams_var_pop_fields | null) - var_samp: (teams_var_samp_fields | null) - variance: (teams_variance_fields | null) - __typename: 'teams_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface teams_avg_fields { - captain_steam_id: (Scalars['Float'] | null) - owner_steam_id: (Scalars['Float'] | null) - __typename: 'teams_avg_fields' -} - - -/** unique or primary key constraints on table "teams" */ -export type teams_constraint = 'teams_name_key' | 'teams_pkey' - - -/** aggregate max on columns */ -export interface teams_max_fields { - avatar_url: (Scalars['String'] | null) - captain_steam_id: (Scalars['bigint'] | null) - id: (Scalars['uuid'] | null) - name: (Scalars['String'] | null) - owner_steam_id: (Scalars['bigint'] | null) - /** A computed field, executes function "team_role" */ - role: (Scalars['String'] | null) - short_name: (Scalars['String'] | null) - __typename: 'teams_max_fields' -} - - -/** aggregate min on columns */ -export interface teams_min_fields { - avatar_url: (Scalars['String'] | null) - captain_steam_id: (Scalars['bigint'] | null) - id: (Scalars['uuid'] | null) - name: (Scalars['String'] | null) - owner_steam_id: (Scalars['bigint'] | null) - /** A computed field, executes function "team_role" */ - role: (Scalars['String'] | null) - short_name: (Scalars['String'] | null) - __typename: 'teams_min_fields' -} - - -/** response of any mutation on the table "teams" */ -export interface teams_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: teams[] - __typename: 'teams_mutation_response' -} - - -/** select columns of table "teams" */ -export type teams_select_column = 'avatar_url' | 'captain_steam_id' | 'id' | 'is_organization' | 'name' | 'owner_steam_id' | 'short_name' - - -/** select "teams_aggregate_bool_exp_bool_and_arguments_columns" columns of table "teams" */ -export type teams_select_column_teams_aggregate_bool_exp_bool_and_arguments_columns = 'is_organization' - - -/** select "teams_aggregate_bool_exp_bool_or_arguments_columns" columns of table "teams" */ -export type teams_select_column_teams_aggregate_bool_exp_bool_or_arguments_columns = 'is_organization' - - -/** aggregate stddev on columns */ -export interface teams_stddev_fields { - captain_steam_id: (Scalars['Float'] | null) - owner_steam_id: (Scalars['Float'] | null) - __typename: 'teams_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface teams_stddev_pop_fields { - captain_steam_id: (Scalars['Float'] | null) - owner_steam_id: (Scalars['Float'] | null) - __typename: 'teams_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface teams_stddev_samp_fields { - captain_steam_id: (Scalars['Float'] | null) - owner_steam_id: (Scalars['Float'] | null) - __typename: 'teams_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface teams_sum_fields { - captain_steam_id: (Scalars['bigint'] | null) - owner_steam_id: (Scalars['bigint'] | null) - __typename: 'teams_sum_fields' -} - - -/** update columns of table "teams" */ -export type teams_update_column = 'avatar_url' | 'captain_steam_id' | 'id' | 'is_organization' | 'name' | 'owner_steam_id' | 'short_name' - - -/** aggregate var_pop on columns */ -export interface teams_var_pop_fields { - captain_steam_id: (Scalars['Float'] | null) - owner_steam_id: (Scalars['Float'] | null) - __typename: 'teams_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface teams_var_samp_fields { - captain_steam_id: (Scalars['Float'] | null) - owner_steam_id: (Scalars['Float'] | null) - __typename: 'teams_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface teams_variance_fields { - captain_steam_id: (Scalars['Float'] | null) - owner_steam_id: (Scalars['Float'] | null) - __typename: 'teams_variance_fields' -} - - -/** columns and relationships of "tournament_awards" */ -export interface tournament_awards { - /** An object relationship */ - award: (awards | null) - award_id: (Scalars['uuid'] | null) - created_at: Scalars['timestamptz'] - custom_name: (Scalars['String'] | null) - id: Scalars['uuid'] - image_url: (Scalars['String'] | null) - placement: Scalars['Int'] - silhouette: (Scalars['Int'] | null) - /** An object relationship */ - tournament: tournaments - tournament_id: Scalars['uuid'] - updated_at: Scalars['timestamptz'] - __typename: 'tournament_awards' -} - - -/** aggregated selection of "tournament_awards" */ -export interface tournament_awards_aggregate { - aggregate: (tournament_awards_aggregate_fields | null) - nodes: tournament_awards[] - __typename: 'tournament_awards_aggregate' -} - - -/** aggregate fields of "tournament_awards" */ -export interface tournament_awards_aggregate_fields { - avg: (tournament_awards_avg_fields | null) - count: Scalars['Int'] - max: (tournament_awards_max_fields | null) - min: (tournament_awards_min_fields | null) - stddev: (tournament_awards_stddev_fields | null) - stddev_pop: (tournament_awards_stddev_pop_fields | null) - stddev_samp: (tournament_awards_stddev_samp_fields | null) - sum: (tournament_awards_sum_fields | null) - var_pop: (tournament_awards_var_pop_fields | null) - var_samp: (tournament_awards_var_samp_fields | null) - variance: (tournament_awards_variance_fields | null) - __typename: 'tournament_awards_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface tournament_awards_avg_fields { - placement: (Scalars['Float'] | null) - silhouette: (Scalars['Float'] | null) - __typename: 'tournament_awards_avg_fields' -} - - -/** unique or primary key constraints on table "tournament_awards" */ -export type tournament_awards_constraint = 'tournament_awards_pkey' | 'tournament_awards_tournament_id_placement_key' - - -/** aggregate max on columns */ -export interface tournament_awards_max_fields { - award_id: (Scalars['uuid'] | null) - created_at: (Scalars['timestamptz'] | null) - custom_name: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - image_url: (Scalars['String'] | null) - placement: (Scalars['Int'] | null) - silhouette: (Scalars['Int'] | null) - tournament_id: (Scalars['uuid'] | null) - updated_at: (Scalars['timestamptz'] | null) - __typename: 'tournament_awards_max_fields' -} - - -/** aggregate min on columns */ -export interface tournament_awards_min_fields { - award_id: (Scalars['uuid'] | null) - created_at: (Scalars['timestamptz'] | null) - custom_name: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - image_url: (Scalars['String'] | null) - placement: (Scalars['Int'] | null) - silhouette: (Scalars['Int'] | null) - tournament_id: (Scalars['uuid'] | null) - updated_at: (Scalars['timestamptz'] | null) - __typename: 'tournament_awards_min_fields' -} - - -/** response of any mutation on the table "tournament_awards" */ -export interface tournament_awards_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: tournament_awards[] - __typename: 'tournament_awards_mutation_response' -} - - -/** select columns of table "tournament_awards" */ -export type tournament_awards_select_column = 'award_id' | 'created_at' | 'custom_name' | 'id' | 'image_url' | 'placement' | 'silhouette' | 'tournament_id' | 'updated_at' - - -/** aggregate stddev on columns */ -export interface tournament_awards_stddev_fields { - placement: (Scalars['Float'] | null) - silhouette: (Scalars['Float'] | null) - __typename: 'tournament_awards_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface tournament_awards_stddev_pop_fields { - placement: (Scalars['Float'] | null) - silhouette: (Scalars['Float'] | null) - __typename: 'tournament_awards_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface tournament_awards_stddev_samp_fields { - placement: (Scalars['Float'] | null) - silhouette: (Scalars['Float'] | null) - __typename: 'tournament_awards_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface tournament_awards_sum_fields { - placement: (Scalars['Int'] | null) - silhouette: (Scalars['Int'] | null) - __typename: 'tournament_awards_sum_fields' -} - - -/** update columns of table "tournament_awards" */ -export type tournament_awards_update_column = 'award_id' | 'created_at' | 'custom_name' | 'id' | 'image_url' | 'placement' | 'silhouette' | 'tournament_id' | 'updated_at' - - -/** aggregate var_pop on columns */ -export interface tournament_awards_var_pop_fields { - placement: (Scalars['Float'] | null) - silhouette: (Scalars['Float'] | null) - __typename: 'tournament_awards_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface tournament_awards_var_samp_fields { - placement: (Scalars['Float'] | null) - silhouette: (Scalars['Float'] | null) - __typename: 'tournament_awards_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface tournament_awards_variance_fields { - placement: (Scalars['Float'] | null) - silhouette: (Scalars['Float'] | null) - __typename: 'tournament_awards_variance_fields' -} - - -/** columns and relationships of "tournament_brackets" */ -export interface tournament_brackets { - bye: Scalars['Boolean'] - created_at: Scalars['timestamptz'] - /** A computed field, executes function "get_feeding_brackets" */ - feeding_brackets: (tournament_brackets[] | null) - finished: Scalars['Boolean'] - group: (Scalars['numeric'] | null) - id: Scalars['uuid'] - /** An object relationship */ - loser_bracket: (tournament_brackets | null) - loser_parent_bracket_id: (Scalars['uuid'] | null) - /** An object relationship */ - match: (matches | null) - match_id: (Scalars['uuid'] | null) - match_number: (Scalars['Int'] | null) - match_options_id: (Scalars['uuid'] | null) - /** An object relationship */ - options: (match_options | null) - /** An object relationship */ - parent_bracket: (tournament_brackets | null) - parent_bracket_id: (Scalars['uuid'] | null) - path: (Scalars['String'] | null) - round: Scalars['Int'] - scheduled_at: (Scalars['timestamptz'] | null) - scheduled_eta: (Scalars['timestamptz'] | null) - /** An array relationship */ - scheduling_proposals: league_scheduling_proposals[] - /** An aggregate relationship */ - scheduling_proposals_aggregate: league_scheduling_proposals_aggregate - /** An object relationship */ - stage: tournament_stages - /** An object relationship */ - team_1: (tournament_teams | null) - team_1_seed: (Scalars['Int'] | null) - /** An object relationship */ - team_2: (tournament_teams | null) - team_2_seed: (Scalars['Int'] | null) - tournament_stage_id: Scalars['uuid'] - tournament_team_id_1: (Scalars['uuid'] | null) - tournament_team_id_2: (Scalars['uuid'] | null) - __typename: 'tournament_brackets' -} - - -/** aggregated selection of "tournament_brackets" */ -export interface tournament_brackets_aggregate { - aggregate: (tournament_brackets_aggregate_fields | null) - nodes: tournament_brackets[] - __typename: 'tournament_brackets_aggregate' -} - - -/** aggregate fields of "tournament_brackets" */ -export interface tournament_brackets_aggregate_fields { - avg: (tournament_brackets_avg_fields | null) - count: Scalars['Int'] - max: (tournament_brackets_max_fields | null) - min: (tournament_brackets_min_fields | null) - stddev: (tournament_brackets_stddev_fields | null) - stddev_pop: (tournament_brackets_stddev_pop_fields | null) - stddev_samp: (tournament_brackets_stddev_samp_fields | null) - sum: (tournament_brackets_sum_fields | null) - var_pop: (tournament_brackets_var_pop_fields | null) - var_samp: (tournament_brackets_var_samp_fields | null) - variance: (tournament_brackets_variance_fields | null) - __typename: 'tournament_brackets_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface tournament_brackets_avg_fields { - group: (Scalars['Float'] | null) - match_number: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - team_1_seed: (Scalars['Float'] | null) - team_2_seed: (Scalars['Float'] | null) - __typename: 'tournament_brackets_avg_fields' -} - - -/** unique or primary key constraints on table "tournament_brackets" */ -export type tournament_brackets_constraint = 'touarnment_brackets_pkey' | 'tournament_brackets_id_tournament_team_id_1_tournament_team_id_' - - -/** aggregate max on columns */ -export interface tournament_brackets_max_fields { - created_at: (Scalars['timestamptz'] | null) - group: (Scalars['numeric'] | null) - id: (Scalars['uuid'] | null) - loser_parent_bracket_id: (Scalars['uuid'] | null) - match_id: (Scalars['uuid'] | null) - match_number: (Scalars['Int'] | null) - match_options_id: (Scalars['uuid'] | null) - parent_bracket_id: (Scalars['uuid'] | null) - path: (Scalars['String'] | null) - round: (Scalars['Int'] | null) - scheduled_at: (Scalars['timestamptz'] | null) - scheduled_eta: (Scalars['timestamptz'] | null) - team_1_seed: (Scalars['Int'] | null) - team_2_seed: (Scalars['Int'] | null) - tournament_stage_id: (Scalars['uuid'] | null) - tournament_team_id_1: (Scalars['uuid'] | null) - tournament_team_id_2: (Scalars['uuid'] | null) - __typename: 'tournament_brackets_max_fields' -} - - -/** aggregate min on columns */ -export interface tournament_brackets_min_fields { - created_at: (Scalars['timestamptz'] | null) - group: (Scalars['numeric'] | null) - id: (Scalars['uuid'] | null) - loser_parent_bracket_id: (Scalars['uuid'] | null) - match_id: (Scalars['uuid'] | null) - match_number: (Scalars['Int'] | null) - match_options_id: (Scalars['uuid'] | null) - parent_bracket_id: (Scalars['uuid'] | null) - path: (Scalars['String'] | null) - round: (Scalars['Int'] | null) - scheduled_at: (Scalars['timestamptz'] | null) - scheduled_eta: (Scalars['timestamptz'] | null) - team_1_seed: (Scalars['Int'] | null) - team_2_seed: (Scalars['Int'] | null) - tournament_stage_id: (Scalars['uuid'] | null) - tournament_team_id_1: (Scalars['uuid'] | null) - tournament_team_id_2: (Scalars['uuid'] | null) - __typename: 'tournament_brackets_min_fields' -} - - -/** response of any mutation on the table "tournament_brackets" */ -export interface tournament_brackets_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: tournament_brackets[] - __typename: 'tournament_brackets_mutation_response' -} - - -/** select columns of table "tournament_brackets" */ -export type tournament_brackets_select_column = 'bye' | 'created_at' | 'finished' | 'group' | 'id' | 'loser_parent_bracket_id' | 'match_id' | 'match_number' | 'match_options_id' | 'parent_bracket_id' | 'path' | 'round' | 'scheduled_at' | 'scheduled_eta' | 'team_1_seed' | 'team_2_seed' | 'tournament_stage_id' | 'tournament_team_id_1' | 'tournament_team_id_2' - - -/** select "tournament_brackets_aggregate_bool_exp_bool_and_arguments_columns" columns of table "tournament_brackets" */ -export type tournament_brackets_select_column_tournament_brackets_aggregate_bool_exp_bool_and_arguments_columns = 'bye' | 'finished' - - -/** select "tournament_brackets_aggregate_bool_exp_bool_or_arguments_columns" columns of table "tournament_brackets" */ -export type tournament_brackets_select_column_tournament_brackets_aggregate_bool_exp_bool_or_arguments_columns = 'bye' | 'finished' - - -/** aggregate stddev on columns */ -export interface tournament_brackets_stddev_fields { - group: (Scalars['Float'] | null) - match_number: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - team_1_seed: (Scalars['Float'] | null) - team_2_seed: (Scalars['Float'] | null) - __typename: 'tournament_brackets_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface tournament_brackets_stddev_pop_fields { - group: (Scalars['Float'] | null) - match_number: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - team_1_seed: (Scalars['Float'] | null) - team_2_seed: (Scalars['Float'] | null) - __typename: 'tournament_brackets_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface tournament_brackets_stddev_samp_fields { - group: (Scalars['Float'] | null) - match_number: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - team_1_seed: (Scalars['Float'] | null) - team_2_seed: (Scalars['Float'] | null) - __typename: 'tournament_brackets_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface tournament_brackets_sum_fields { - group: (Scalars['numeric'] | null) - match_number: (Scalars['Int'] | null) - round: (Scalars['Int'] | null) - team_1_seed: (Scalars['Int'] | null) - team_2_seed: (Scalars['Int'] | null) - __typename: 'tournament_brackets_sum_fields' -} - - -/** update columns of table "tournament_brackets" */ -export type tournament_brackets_update_column = 'bye' | 'created_at' | 'finished' | 'group' | 'id' | 'loser_parent_bracket_id' | 'match_id' | 'match_number' | 'match_options_id' | 'parent_bracket_id' | 'path' | 'round' | 'scheduled_at' | 'scheduled_eta' | 'team_1_seed' | 'team_2_seed' | 'tournament_stage_id' | 'tournament_team_id_1' | 'tournament_team_id_2' - - -/** aggregate var_pop on columns */ -export interface tournament_brackets_var_pop_fields { - group: (Scalars['Float'] | null) - match_number: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - team_1_seed: (Scalars['Float'] | null) - team_2_seed: (Scalars['Float'] | null) - __typename: 'tournament_brackets_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface tournament_brackets_var_samp_fields { - group: (Scalars['Float'] | null) - match_number: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - team_1_seed: (Scalars['Float'] | null) - team_2_seed: (Scalars['Float'] | null) - __typename: 'tournament_brackets_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface tournament_brackets_variance_fields { - group: (Scalars['Float'] | null) - match_number: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - team_1_seed: (Scalars['Float'] | null) - team_2_seed: (Scalars['Float'] | null) - __typename: 'tournament_brackets_variance_fields' -} - - -/** columns and relationships of "tournament_categories" */ -export interface tournament_categories { - category: e_tournament_categories_enum - /** An object relationship */ - e_tournament_category: e_tournament_categories - /** An object relationship */ - tournament: tournaments - tournament_id: Scalars['uuid'] - __typename: 'tournament_categories' -} - - -/** aggregated selection of "tournament_categories" */ -export interface tournament_categories_aggregate { - aggregate: (tournament_categories_aggregate_fields | null) - nodes: tournament_categories[] - __typename: 'tournament_categories_aggregate' -} - - -/** aggregate fields of "tournament_categories" */ -export interface tournament_categories_aggregate_fields { - count: Scalars['Int'] - max: (tournament_categories_max_fields | null) - min: (tournament_categories_min_fields | null) - __typename: 'tournament_categories_aggregate_fields' -} - - -/** unique or primary key constraints on table "tournament_categories" */ -export type tournament_categories_constraint = 'tournament_categories_pkey' - - -/** aggregate max on columns */ -export interface tournament_categories_max_fields { - tournament_id: (Scalars['uuid'] | null) - __typename: 'tournament_categories_max_fields' -} - - -/** aggregate min on columns */ -export interface tournament_categories_min_fields { - tournament_id: (Scalars['uuid'] | null) - __typename: 'tournament_categories_min_fields' -} - - -/** response of any mutation on the table "tournament_categories" */ -export interface tournament_categories_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: tournament_categories[] - __typename: 'tournament_categories_mutation_response' -} - - -/** select columns of table "tournament_categories" */ -export type tournament_categories_select_column = 'category' | 'tournament_id' - - -/** update columns of table "tournament_categories" */ -export type tournament_categories_update_column = 'category' | 'tournament_id' - - -/** columns and relationships of "tournament_free_agents" */ -export interface tournament_free_agents { - checked_in_at: (Scalars['timestamptz'] | null) - /** Registration priority: decides who makes the cut */ - created_at: Scalars['timestamptz'] - /** An object relationship */ - e_tournament_free_agent_status: e_tournament_free_agent_statuses - id: Scalars['uuid'] - party_id: (Scalars['uuid'] | null) - /** An object relationship */ - player: players - player_steam_id: Scalars['bigint'] - status: e_tournament_free_agent_statuses_enum - /** An object relationship */ - tournament: tournaments - tournament_id: Scalars['uuid'] - /** An object relationship */ - tournament_team: (tournament_teams | null) - tournament_team_id: (Scalars['uuid'] | null) - __typename: 'tournament_free_agents' -} - - -/** aggregated selection of "tournament_free_agents" */ -export interface tournament_free_agents_aggregate { - aggregate: (tournament_free_agents_aggregate_fields | null) - nodes: tournament_free_agents[] - __typename: 'tournament_free_agents_aggregate' -} - - -/** aggregate fields of "tournament_free_agents" */ -export interface tournament_free_agents_aggregate_fields { - avg: (tournament_free_agents_avg_fields | null) - count: Scalars['Int'] - max: (tournament_free_agents_max_fields | null) - min: (tournament_free_agents_min_fields | null) - stddev: (tournament_free_agents_stddev_fields | null) - stddev_pop: (tournament_free_agents_stddev_pop_fields | null) - stddev_samp: (tournament_free_agents_stddev_samp_fields | null) - sum: (tournament_free_agents_sum_fields | null) - var_pop: (tournament_free_agents_var_pop_fields | null) - var_samp: (tournament_free_agents_var_samp_fields | null) - variance: (tournament_free_agents_variance_fields | null) - __typename: 'tournament_free_agents_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface tournament_free_agents_avg_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_free_agents_avg_fields' -} - - -/** unique or primary key constraints on table "tournament_free_agents" */ -export type tournament_free_agents_constraint = 'tournament_free_agents_pkey' | 'tournament_free_agents_tournament_id_player_steam_id_key' - - -/** aggregate max on columns */ -export interface tournament_free_agents_max_fields { - checked_in_at: (Scalars['timestamptz'] | null) - /** Registration priority: decides who makes the cut */ - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - party_id: (Scalars['uuid'] | null) - player_steam_id: (Scalars['bigint'] | null) - tournament_id: (Scalars['uuid'] | null) - tournament_team_id: (Scalars['uuid'] | null) - __typename: 'tournament_free_agents_max_fields' -} - - -/** aggregate min on columns */ -export interface tournament_free_agents_min_fields { - checked_in_at: (Scalars['timestamptz'] | null) - /** Registration priority: decides who makes the cut */ - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - party_id: (Scalars['uuid'] | null) - player_steam_id: (Scalars['bigint'] | null) - tournament_id: (Scalars['uuid'] | null) - tournament_team_id: (Scalars['uuid'] | null) - __typename: 'tournament_free_agents_min_fields' -} - - -/** response of any mutation on the table "tournament_free_agents" */ -export interface tournament_free_agents_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: tournament_free_agents[] - __typename: 'tournament_free_agents_mutation_response' -} - - -/** select columns of table "tournament_free_agents" */ -export type tournament_free_agents_select_column = 'checked_in_at' | 'created_at' | 'id' | 'party_id' | 'player_steam_id' | 'status' | 'tournament_id' | 'tournament_team_id' - - -/** aggregate stddev on columns */ -export interface tournament_free_agents_stddev_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_free_agents_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface tournament_free_agents_stddev_pop_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_free_agents_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface tournament_free_agents_stddev_samp_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_free_agents_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface tournament_free_agents_sum_fields { - player_steam_id: (Scalars['bigint'] | null) - __typename: 'tournament_free_agents_sum_fields' -} - - -/** update columns of table "tournament_free_agents" */ -export type tournament_free_agents_update_column = 'checked_in_at' | 'created_at' | 'id' | 'party_id' | 'player_steam_id' | 'status' | 'tournament_id' | 'tournament_team_id' - - -/** aggregate var_pop on columns */ -export interface tournament_free_agents_var_pop_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_free_agents_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface tournament_free_agents_var_samp_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_free_agents_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface tournament_free_agents_variance_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_free_agents_variance_fields' -} - - -/** columns and relationships of "tournament_invite_code_uses" */ -export interface tournament_invite_code_uses { - /** An object relationship */ - invite_code: tournament_invite_codes - invite_code_id: Scalars['uuid'] - /** An object relationship */ - player: players - player_steam_id: Scalars['bigint'] - /** An object relationship */ - team: (teams | null) - team_id: (Scalars['uuid'] | null) - used_at: Scalars['timestamptz'] - __typename: 'tournament_invite_code_uses' -} - - -/** aggregated selection of "tournament_invite_code_uses" */ -export interface tournament_invite_code_uses_aggregate { - aggregate: (tournament_invite_code_uses_aggregate_fields | null) - nodes: tournament_invite_code_uses[] - __typename: 'tournament_invite_code_uses_aggregate' -} - - -/** aggregate fields of "tournament_invite_code_uses" */ -export interface tournament_invite_code_uses_aggregate_fields { - avg: (tournament_invite_code_uses_avg_fields | null) - count: Scalars['Int'] - max: (tournament_invite_code_uses_max_fields | null) - min: (tournament_invite_code_uses_min_fields | null) - stddev: (tournament_invite_code_uses_stddev_fields | null) - stddev_pop: (tournament_invite_code_uses_stddev_pop_fields | null) - stddev_samp: (tournament_invite_code_uses_stddev_samp_fields | null) - sum: (tournament_invite_code_uses_sum_fields | null) - var_pop: (tournament_invite_code_uses_var_pop_fields | null) - var_samp: (tournament_invite_code_uses_var_samp_fields | null) - variance: (tournament_invite_code_uses_variance_fields | null) - __typename: 'tournament_invite_code_uses_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface tournament_invite_code_uses_avg_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_invite_code_uses_avg_fields' -} - - -/** unique or primary key constraints on table "tournament_invite_code_uses" */ -export type tournament_invite_code_uses_constraint = 'tournament_invite_code_uses_pkey' - - -/** aggregate max on columns */ -export interface tournament_invite_code_uses_max_fields { - invite_code_id: (Scalars['uuid'] | null) - player_steam_id: (Scalars['bigint'] | null) - team_id: (Scalars['uuid'] | null) - used_at: (Scalars['timestamptz'] | null) - __typename: 'tournament_invite_code_uses_max_fields' -} - - -/** aggregate min on columns */ -export interface tournament_invite_code_uses_min_fields { - invite_code_id: (Scalars['uuid'] | null) - player_steam_id: (Scalars['bigint'] | null) - team_id: (Scalars['uuid'] | null) - used_at: (Scalars['timestamptz'] | null) - __typename: 'tournament_invite_code_uses_min_fields' -} - - -/** response of any mutation on the table "tournament_invite_code_uses" */ -export interface tournament_invite_code_uses_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: tournament_invite_code_uses[] - __typename: 'tournament_invite_code_uses_mutation_response' -} - - -/** select columns of table "tournament_invite_code_uses" */ -export type tournament_invite_code_uses_select_column = 'invite_code_id' | 'player_steam_id' | 'team_id' | 'used_at' - - -/** aggregate stddev on columns */ -export interface tournament_invite_code_uses_stddev_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_invite_code_uses_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface tournament_invite_code_uses_stddev_pop_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_invite_code_uses_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface tournament_invite_code_uses_stddev_samp_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_invite_code_uses_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface tournament_invite_code_uses_sum_fields { - player_steam_id: (Scalars['bigint'] | null) - __typename: 'tournament_invite_code_uses_sum_fields' -} - - -/** update columns of table "tournament_invite_code_uses" */ -export type tournament_invite_code_uses_update_column = 'invite_code_id' | 'player_steam_id' | 'team_id' | 'used_at' - - -/** aggregate var_pop on columns */ -export interface tournament_invite_code_uses_var_pop_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_invite_code_uses_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface tournament_invite_code_uses_var_samp_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_invite_code_uses_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface tournament_invite_code_uses_variance_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_invite_code_uses_variance_fields' -} - - -/** columns and relationships of "tournament_invite_codes" */ -export interface tournament_invite_codes { - code: Scalars['String'] - created_at: Scalars['timestamptz'] - /** An object relationship */ - created_by: players - created_by_player_steam_id: Scalars['bigint'] - expires_at: (Scalars['timestamptz'] | null) - id: Scalars['uuid'] - max_uses: (Scalars['Int'] | null) - revoked_at: (Scalars['timestamptz'] | null) - /** An object relationship */ - tournament: tournaments - tournament_id: Scalars['uuid'] - /** An array relationship */ - used_by: tournament_invite_code_uses[] - /** An aggregate relationship */ - used_by_aggregate: tournament_invite_code_uses_aggregate - uses: Scalars['Int'] - __typename: 'tournament_invite_codes' -} - - -/** aggregated selection of "tournament_invite_codes" */ -export interface tournament_invite_codes_aggregate { - aggregate: (tournament_invite_codes_aggregate_fields | null) - nodes: tournament_invite_codes[] - __typename: 'tournament_invite_codes_aggregate' -} - - -/** aggregate fields of "tournament_invite_codes" */ -export interface tournament_invite_codes_aggregate_fields { - avg: (tournament_invite_codes_avg_fields | null) - count: Scalars['Int'] - max: (tournament_invite_codes_max_fields | null) - min: (tournament_invite_codes_min_fields | null) - stddev: (tournament_invite_codes_stddev_fields | null) - stddev_pop: (tournament_invite_codes_stddev_pop_fields | null) - stddev_samp: (tournament_invite_codes_stddev_samp_fields | null) - sum: (tournament_invite_codes_sum_fields | null) - var_pop: (tournament_invite_codes_var_pop_fields | null) - var_samp: (tournament_invite_codes_var_samp_fields | null) - variance: (tournament_invite_codes_variance_fields | null) - __typename: 'tournament_invite_codes_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface tournament_invite_codes_avg_fields { - created_by_player_steam_id: (Scalars['Float'] | null) - max_uses: (Scalars['Float'] | null) - uses: (Scalars['Float'] | null) - __typename: 'tournament_invite_codes_avg_fields' -} - - -/** unique or primary key constraints on table "tournament_invite_codes" */ -export type tournament_invite_codes_constraint = 'tournament_invite_codes_code_key' | 'tournament_invite_codes_pkey' - - -/** aggregate max on columns */ -export interface tournament_invite_codes_max_fields { - code: (Scalars['String'] | null) - created_at: (Scalars['timestamptz'] | null) - created_by_player_steam_id: (Scalars['bigint'] | null) - expires_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - max_uses: (Scalars['Int'] | null) - revoked_at: (Scalars['timestamptz'] | null) - tournament_id: (Scalars['uuid'] | null) - uses: (Scalars['Int'] | null) - __typename: 'tournament_invite_codes_max_fields' -} - - -/** aggregate min on columns */ -export interface tournament_invite_codes_min_fields { - code: (Scalars['String'] | null) - created_at: (Scalars['timestamptz'] | null) - created_by_player_steam_id: (Scalars['bigint'] | null) - expires_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - max_uses: (Scalars['Int'] | null) - revoked_at: (Scalars['timestamptz'] | null) - tournament_id: (Scalars['uuid'] | null) - uses: (Scalars['Int'] | null) - __typename: 'tournament_invite_codes_min_fields' -} - - -/** response of any mutation on the table "tournament_invite_codes" */ -export interface tournament_invite_codes_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: tournament_invite_codes[] - __typename: 'tournament_invite_codes_mutation_response' -} - - -/** select columns of table "tournament_invite_codes" */ -export type tournament_invite_codes_select_column = 'code' | 'created_at' | 'created_by_player_steam_id' | 'expires_at' | 'id' | 'max_uses' | 'revoked_at' | 'tournament_id' | 'uses' - - -/** aggregate stddev on columns */ -export interface tournament_invite_codes_stddev_fields { - created_by_player_steam_id: (Scalars['Float'] | null) - max_uses: (Scalars['Float'] | null) - uses: (Scalars['Float'] | null) - __typename: 'tournament_invite_codes_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface tournament_invite_codes_stddev_pop_fields { - created_by_player_steam_id: (Scalars['Float'] | null) - max_uses: (Scalars['Float'] | null) - uses: (Scalars['Float'] | null) - __typename: 'tournament_invite_codes_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface tournament_invite_codes_stddev_samp_fields { - created_by_player_steam_id: (Scalars['Float'] | null) - max_uses: (Scalars['Float'] | null) - uses: (Scalars['Float'] | null) - __typename: 'tournament_invite_codes_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface tournament_invite_codes_sum_fields { - created_by_player_steam_id: (Scalars['bigint'] | null) - max_uses: (Scalars['Int'] | null) - uses: (Scalars['Int'] | null) - __typename: 'tournament_invite_codes_sum_fields' -} - - -/** update columns of table "tournament_invite_codes" */ -export type tournament_invite_codes_update_column = 'code' | 'created_at' | 'created_by_player_steam_id' | 'expires_at' | 'id' | 'max_uses' | 'revoked_at' | 'tournament_id' | 'uses' - - -/** aggregate var_pop on columns */ -export interface tournament_invite_codes_var_pop_fields { - created_by_player_steam_id: (Scalars['Float'] | null) - max_uses: (Scalars['Float'] | null) - uses: (Scalars['Float'] | null) - __typename: 'tournament_invite_codes_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface tournament_invite_codes_var_samp_fields { - created_by_player_steam_id: (Scalars['Float'] | null) - max_uses: (Scalars['Float'] | null) - uses: (Scalars['Float'] | null) - __typename: 'tournament_invite_codes_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface tournament_invite_codes_variance_fields { - created_by_player_steam_id: (Scalars['Float'] | null) - max_uses: (Scalars['Float'] | null) - uses: (Scalars['Float'] | null) - __typename: 'tournament_invite_codes_variance_fields' -} - - -/** columns and relationships of "tournament_invites" */ -export interface tournament_invites { - created_at: Scalars['timestamptz'] - id: Scalars['uuid'] - /** An object relationship */ - invited_by: players - invited_by_player_steam_id: Scalars['bigint'] - /** An object relationship */ - player: (players | null) - steam_id: (Scalars['bigint'] | null) - /** An object relationship */ - team: (teams | null) - team_id: (Scalars['uuid'] | null) - /** An object relationship */ - tournament: tournaments - tournament_id: Scalars['uuid'] - __typename: 'tournament_invites' -} - - -/** aggregated selection of "tournament_invites" */ -export interface tournament_invites_aggregate { - aggregate: (tournament_invites_aggregate_fields | null) - nodes: tournament_invites[] - __typename: 'tournament_invites_aggregate' -} - - -/** aggregate fields of "tournament_invites" */ -export interface tournament_invites_aggregate_fields { - avg: (tournament_invites_avg_fields | null) - count: Scalars['Int'] - max: (tournament_invites_max_fields | null) - min: (tournament_invites_min_fields | null) - stddev: (tournament_invites_stddev_fields | null) - stddev_pop: (tournament_invites_stddev_pop_fields | null) - stddev_samp: (tournament_invites_stddev_samp_fields | null) - sum: (tournament_invites_sum_fields | null) - var_pop: (tournament_invites_var_pop_fields | null) - var_samp: (tournament_invites_var_samp_fields | null) - variance: (tournament_invites_variance_fields | null) - __typename: 'tournament_invites_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface tournament_invites_avg_fields { - invited_by_player_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'tournament_invites_avg_fields' -} - - -/** unique or primary key constraints on table "tournament_invites" */ -export type tournament_invites_constraint = 'idx_tournament_invites_player_unique' | 'idx_tournament_invites_team_unique' | 'tournament_invites_pkey' - - -/** aggregate max on columns */ -export interface tournament_invites_max_fields { - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - invited_by_player_steam_id: (Scalars['bigint'] | null) - steam_id: (Scalars['bigint'] | null) - team_id: (Scalars['uuid'] | null) - tournament_id: (Scalars['uuid'] | null) - __typename: 'tournament_invites_max_fields' -} - - -/** aggregate min on columns */ -export interface tournament_invites_min_fields { - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - invited_by_player_steam_id: (Scalars['bigint'] | null) - steam_id: (Scalars['bigint'] | null) - team_id: (Scalars['uuid'] | null) - tournament_id: (Scalars['uuid'] | null) - __typename: 'tournament_invites_min_fields' -} - - -/** response of any mutation on the table "tournament_invites" */ -export interface tournament_invites_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: tournament_invites[] - __typename: 'tournament_invites_mutation_response' -} - - -/** select columns of table "tournament_invites" */ -export type tournament_invites_select_column = 'created_at' | 'id' | 'invited_by_player_steam_id' | 'steam_id' | 'team_id' | 'tournament_id' - - -/** aggregate stddev on columns */ -export interface tournament_invites_stddev_fields { - invited_by_player_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'tournament_invites_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface tournament_invites_stddev_pop_fields { - invited_by_player_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'tournament_invites_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface tournament_invites_stddev_samp_fields { - invited_by_player_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'tournament_invites_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface tournament_invites_sum_fields { - invited_by_player_steam_id: (Scalars['bigint'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'tournament_invites_sum_fields' -} - - -/** update columns of table "tournament_invites" */ -export type tournament_invites_update_column = 'created_at' | 'id' | 'invited_by_player_steam_id' | 'steam_id' | 'team_id' | 'tournament_id' - - -/** aggregate var_pop on columns */ -export interface tournament_invites_var_pop_fields { - invited_by_player_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'tournament_invites_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface tournament_invites_var_samp_fields { - invited_by_player_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'tournament_invites_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface tournament_invites_variance_fields { - invited_by_player_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'tournament_invites_variance_fields' -} - - -/** columns and relationships of "tournament_leaderboard_entries" */ -export interface tournament_leaderboard_entries { - adr: Scalars['float8'] - assists: Scalars['Int'] - deaths: Scalars['Int'] - headshot_percentage: Scalars['float8'] - kdr: Scalars['float8'] - kills: Scalars['Int'] - matches_played: Scalars['Int'] - 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'] - rating: Scalars['float8'] - rounds_played: Scalars['Int'] - team_name: (Scalars['String'] | null) - tournament_team_id: (Scalars['uuid'] | null) - __typename: 'tournament_leaderboard_entries' -} - -export interface tournament_leaderboard_entries_aggregate { - aggregate: (tournament_leaderboard_entries_aggregate_fields | null) - nodes: tournament_leaderboard_entries[] - __typename: 'tournament_leaderboard_entries_aggregate' -} - - -/** aggregate fields of "tournament_leaderboard_entries" */ -export interface tournament_leaderboard_entries_aggregate_fields { - avg: (tournament_leaderboard_entries_avg_fields | null) - count: Scalars['Int'] - max: (tournament_leaderboard_entries_max_fields | null) - min: (tournament_leaderboard_entries_min_fields | null) - stddev: (tournament_leaderboard_entries_stddev_fields | null) - stddev_pop: (tournament_leaderboard_entries_stddev_pop_fields | null) - stddev_samp: (tournament_leaderboard_entries_stddev_samp_fields | null) - sum: (tournament_leaderboard_entries_sum_fields | null) - var_pop: (tournament_leaderboard_entries_var_pop_fields | null) - var_samp: (tournament_leaderboard_entries_var_samp_fields | null) - variance: (tournament_leaderboard_entries_variance_fields | null) - __typename: 'tournament_leaderboard_entries_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface tournament_leaderboard_entries_avg_fields { - adr: (Scalars['Float'] | null) - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - kdr: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - rating: (Scalars['Float'] | null) - rounds_played: (Scalars['Float'] | null) - __typename: 'tournament_leaderboard_entries_avg_fields' -} - - -/** aggregate max on columns */ -export interface tournament_leaderboard_entries_max_fields { - adr: (Scalars['float8'] | null) - assists: (Scalars['Int'] | null) - deaths: (Scalars['Int'] | null) - headshot_percentage: (Scalars['float8'] | null) - kdr: (Scalars['float8'] | null) - kills: (Scalars['Int'] | null) - 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) - rating: (Scalars['float8'] | null) - rounds_played: (Scalars['Int'] | null) - team_name: (Scalars['String'] | null) - tournament_team_id: (Scalars['uuid'] | null) - __typename: 'tournament_leaderboard_entries_max_fields' -} - - -/** aggregate min on columns */ -export interface tournament_leaderboard_entries_min_fields { - adr: (Scalars['float8'] | null) - assists: (Scalars['Int'] | null) - deaths: (Scalars['Int'] | null) - headshot_percentage: (Scalars['float8'] | null) - kdr: (Scalars['float8'] | null) - kills: (Scalars['Int'] | null) - 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) - rating: (Scalars['float8'] | null) - rounds_played: (Scalars['Int'] | null) - team_name: (Scalars['String'] | null) - tournament_team_id: (Scalars['uuid'] | null) - __typename: 'tournament_leaderboard_entries_min_fields' -} - - -/** response of any mutation on the table "tournament_leaderboard_entries" */ -export interface tournament_leaderboard_entries_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: tournament_leaderboard_entries[] - __typename: 'tournament_leaderboard_entries_mutation_response' -} - - -/** select columns of table "tournament_leaderboard_entries" */ -export type tournament_leaderboard_entries_select_column = 'adr' | 'assists' | 'deaths' | 'headshot_percentage' | 'kdr' | 'kills' | 'matches_played' | 'player_avatar_url' | 'player_country' | 'player_custom_avatar_url' | 'player_name' | 'player_steam_id' | 'rating' | 'rounds_played' | 'team_name' | 'tournament_team_id' - - -/** aggregate stddev on columns */ -export interface tournament_leaderboard_entries_stddev_fields { - adr: (Scalars['Float'] | null) - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - kdr: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - rating: (Scalars['Float'] | null) - rounds_played: (Scalars['Float'] | null) - __typename: 'tournament_leaderboard_entries_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface tournament_leaderboard_entries_stddev_pop_fields { - adr: (Scalars['Float'] | null) - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - kdr: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - rating: (Scalars['Float'] | null) - rounds_played: (Scalars['Float'] | null) - __typename: 'tournament_leaderboard_entries_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface tournament_leaderboard_entries_stddev_samp_fields { - adr: (Scalars['Float'] | null) - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - kdr: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - rating: (Scalars['Float'] | null) - rounds_played: (Scalars['Float'] | null) - __typename: 'tournament_leaderboard_entries_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface tournament_leaderboard_entries_sum_fields { - adr: (Scalars['float8'] | null) - assists: (Scalars['Int'] | null) - deaths: (Scalars['Int'] | null) - headshot_percentage: (Scalars['float8'] | null) - kdr: (Scalars['float8'] | null) - kills: (Scalars['Int'] | null) - matches_played: (Scalars['Int'] | null) - rating: (Scalars['float8'] | null) - rounds_played: (Scalars['Int'] | null) - __typename: 'tournament_leaderboard_entries_sum_fields' -} - - -/** aggregate var_pop on columns */ -export interface tournament_leaderboard_entries_var_pop_fields { - adr: (Scalars['Float'] | null) - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - kdr: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - rating: (Scalars['Float'] | null) - rounds_played: (Scalars['Float'] | null) - __typename: 'tournament_leaderboard_entries_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface tournament_leaderboard_entries_var_samp_fields { - adr: (Scalars['Float'] | null) - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - kdr: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - rating: (Scalars['Float'] | null) - rounds_played: (Scalars['Float'] | null) - __typename: 'tournament_leaderboard_entries_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface tournament_leaderboard_entries_variance_fields { - adr: (Scalars['Float'] | null) - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - kdr: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - rating: (Scalars['Float'] | null) - rounds_played: (Scalars['Float'] | null) - __typename: 'tournament_leaderboard_entries_variance_fields' -} - - -/** columns and relationships of "tournament_no_shows" */ -export interface tournament_no_shows { - id: Scalars['uuid'] - occurred_at: Scalars['timestamptz'] - /** An object relationship */ - player: players - player_steam_id: Scalars['bigint'] - /** An object relationship */ - tournament: tournaments - tournament_id: Scalars['uuid'] - /** An object relationship */ - tournament_team: (tournament_teams | null) - tournament_team_id: (Scalars['uuid'] | null) - __typename: 'tournament_no_shows' -} - - -/** aggregated selection of "tournament_no_shows" */ -export interface tournament_no_shows_aggregate { - aggregate: (tournament_no_shows_aggregate_fields | null) - nodes: tournament_no_shows[] - __typename: 'tournament_no_shows_aggregate' -} - - -/** aggregate fields of "tournament_no_shows" */ -export interface tournament_no_shows_aggregate_fields { - avg: (tournament_no_shows_avg_fields | null) - count: Scalars['Int'] - max: (tournament_no_shows_max_fields | null) - min: (tournament_no_shows_min_fields | null) - stddev: (tournament_no_shows_stddev_fields | null) - stddev_pop: (tournament_no_shows_stddev_pop_fields | null) - stddev_samp: (tournament_no_shows_stddev_samp_fields | null) - sum: (tournament_no_shows_sum_fields | null) - var_pop: (tournament_no_shows_var_pop_fields | null) - var_samp: (tournament_no_shows_var_samp_fields | null) - variance: (tournament_no_shows_variance_fields | null) - __typename: 'tournament_no_shows_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface tournament_no_shows_avg_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_no_shows_avg_fields' -} - - -/** unique or primary key constraints on table "tournament_no_shows" */ -export type tournament_no_shows_constraint = 'tournament_no_shows_pkey' | 'tournament_no_shows_tournament_player_key' - - -/** aggregate max on columns */ -export interface tournament_no_shows_max_fields { - id: (Scalars['uuid'] | null) - occurred_at: (Scalars['timestamptz'] | null) - player_steam_id: (Scalars['bigint'] | null) - tournament_id: (Scalars['uuid'] | null) - tournament_team_id: (Scalars['uuid'] | null) - __typename: 'tournament_no_shows_max_fields' -} - - -/** aggregate min on columns */ -export interface tournament_no_shows_min_fields { - id: (Scalars['uuid'] | null) - occurred_at: (Scalars['timestamptz'] | null) - player_steam_id: (Scalars['bigint'] | null) - tournament_id: (Scalars['uuid'] | null) - tournament_team_id: (Scalars['uuid'] | null) - __typename: 'tournament_no_shows_min_fields' -} - - -/** response of any mutation on the table "tournament_no_shows" */ -export interface tournament_no_shows_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: tournament_no_shows[] - __typename: 'tournament_no_shows_mutation_response' -} - - -/** select columns of table "tournament_no_shows" */ -export type tournament_no_shows_select_column = 'id' | 'occurred_at' | 'player_steam_id' | 'tournament_id' | 'tournament_team_id' - - -/** aggregate stddev on columns */ -export interface tournament_no_shows_stddev_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_no_shows_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface tournament_no_shows_stddev_pop_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_no_shows_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface tournament_no_shows_stddev_samp_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_no_shows_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface tournament_no_shows_sum_fields { - player_steam_id: (Scalars['bigint'] | null) - __typename: 'tournament_no_shows_sum_fields' -} - - -/** update columns of table "tournament_no_shows" */ -export type tournament_no_shows_update_column = 'id' | 'occurred_at' | 'player_steam_id' | 'tournament_id' | 'tournament_team_id' - - -/** aggregate var_pop on columns */ -export interface tournament_no_shows_var_pop_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_no_shows_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface tournament_no_shows_var_samp_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_no_shows_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface tournament_no_shows_variance_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_no_shows_variance_fields' -} - - -/** columns and relationships of "tournament_organizer_teams" */ -export interface tournament_organizer_teams { - created_at: Scalars['timestamptz'] - /** An object relationship */ - team: teams - team_id: Scalars['uuid'] - /** An object relationship */ - tournament: tournaments - tournament_id: Scalars['uuid'] - __typename: 'tournament_organizer_teams' -} - - -/** aggregated selection of "tournament_organizer_teams" */ -export interface tournament_organizer_teams_aggregate { - aggregate: (tournament_organizer_teams_aggregate_fields | null) - nodes: tournament_organizer_teams[] - __typename: 'tournament_organizer_teams_aggregate' -} - - -/** aggregate fields of "tournament_organizer_teams" */ -export interface tournament_organizer_teams_aggregate_fields { - count: Scalars['Int'] - max: (tournament_organizer_teams_max_fields | null) - min: (tournament_organizer_teams_min_fields | null) - __typename: 'tournament_organizer_teams_aggregate_fields' -} - - -/** unique or primary key constraints on table "tournament_organizer_teams" */ -export type tournament_organizer_teams_constraint = 'tournament_organizer_teams_pkey' - - -/** aggregate max on columns */ -export interface tournament_organizer_teams_max_fields { - created_at: (Scalars['timestamptz'] | null) - team_id: (Scalars['uuid'] | null) - tournament_id: (Scalars['uuid'] | null) - __typename: 'tournament_organizer_teams_max_fields' -} - - -/** aggregate min on columns */ -export interface tournament_organizer_teams_min_fields { - created_at: (Scalars['timestamptz'] | null) - team_id: (Scalars['uuid'] | null) - tournament_id: (Scalars['uuid'] | null) - __typename: 'tournament_organizer_teams_min_fields' -} - - -/** response of any mutation on the table "tournament_organizer_teams" */ -export interface tournament_organizer_teams_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: tournament_organizer_teams[] - __typename: 'tournament_organizer_teams_mutation_response' -} - - -/** select columns of table "tournament_organizer_teams" */ -export type tournament_organizer_teams_select_column = 'created_at' | 'team_id' | 'tournament_id' - - -/** update columns of table "tournament_organizer_teams" */ -export type tournament_organizer_teams_update_column = 'created_at' | 'team_id' | 'tournament_id' - - -/** columns and relationships of "tournament_organizers" */ -export interface tournament_organizers { - /** An object relationship */ - organization_team: (teams | null) - organization_team_id: (Scalars['uuid'] | null) - /** An object relationship */ - organizer: players - steam_id: Scalars['bigint'] - /** An object relationship */ - tournament: tournaments - tournament_id: Scalars['uuid'] - __typename: 'tournament_organizers' -} - - -/** aggregated selection of "tournament_organizers" */ -export interface tournament_organizers_aggregate { - aggregate: (tournament_organizers_aggregate_fields | null) - nodes: tournament_organizers[] - __typename: 'tournament_organizers_aggregate' -} - - -/** aggregate fields of "tournament_organizers" */ -export interface tournament_organizers_aggregate_fields { - avg: (tournament_organizers_avg_fields | null) - count: Scalars['Int'] - max: (tournament_organizers_max_fields | null) - min: (tournament_organizers_min_fields | null) - stddev: (tournament_organizers_stddev_fields | null) - stddev_pop: (tournament_organizers_stddev_pop_fields | null) - stddev_samp: (tournament_organizers_stddev_samp_fields | null) - sum: (tournament_organizers_sum_fields | null) - var_pop: (tournament_organizers_var_pop_fields | null) - var_samp: (tournament_organizers_var_samp_fields | null) - variance: (tournament_organizers_variance_fields | null) - __typename: 'tournament_organizers_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface tournament_organizers_avg_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'tournament_organizers_avg_fields' -} - - -/** unique or primary key constraints on table "tournament_organizers" */ -export type tournament_organizers_constraint = 'tournament_organizers_pkey' - - -/** aggregate max on columns */ -export interface tournament_organizers_max_fields { - organization_team_id: (Scalars['uuid'] | null) - steam_id: (Scalars['bigint'] | null) - tournament_id: (Scalars['uuid'] | null) - __typename: 'tournament_organizers_max_fields' -} - - -/** aggregate min on columns */ -export interface tournament_organizers_min_fields { - organization_team_id: (Scalars['uuid'] | null) - steam_id: (Scalars['bigint'] | null) - tournament_id: (Scalars['uuid'] | null) - __typename: 'tournament_organizers_min_fields' -} - - -/** response of any mutation on the table "tournament_organizers" */ -export interface tournament_organizers_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: tournament_organizers[] - __typename: 'tournament_organizers_mutation_response' -} - - -/** select columns of table "tournament_organizers" */ -export type tournament_organizers_select_column = 'organization_team_id' | 'steam_id' | 'tournament_id' - - -/** aggregate stddev on columns */ -export interface tournament_organizers_stddev_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'tournament_organizers_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface tournament_organizers_stddev_pop_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'tournament_organizers_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface tournament_organizers_stddev_samp_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'tournament_organizers_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface tournament_organizers_sum_fields { - steam_id: (Scalars['bigint'] | null) - __typename: 'tournament_organizers_sum_fields' -} - - -/** update columns of table "tournament_organizers" */ -export type tournament_organizers_update_column = 'organization_team_id' | 'steam_id' | 'tournament_id' - - -/** aggregate var_pop on columns */ -export interface tournament_organizers_var_pop_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'tournament_organizers_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface tournament_organizers_var_samp_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'tournament_organizers_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface tournament_organizers_variance_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'tournament_organizers_variance_fields' -} - - -/** columns and relationships of "tournament_prizes" */ -export interface tournament_prizes { - created_at: Scalars['timestamptz'] - id: Scalars['uuid'] - order: Scalars['Int'] - place: Scalars['String'] - prize: Scalars['String'] - /** An object relationship */ - tournament: tournaments - tournament_id: Scalars['uuid'] - __typename: 'tournament_prizes' -} - - -/** aggregated selection of "tournament_prizes" */ -export interface tournament_prizes_aggregate { - aggregate: (tournament_prizes_aggregate_fields | null) - nodes: tournament_prizes[] - __typename: 'tournament_prizes_aggregate' -} - - -/** aggregate fields of "tournament_prizes" */ -export interface tournament_prizes_aggregate_fields { - avg: (tournament_prizes_avg_fields | null) - count: Scalars['Int'] - max: (tournament_prizes_max_fields | null) - min: (tournament_prizes_min_fields | null) - stddev: (tournament_prizes_stddev_fields | null) - stddev_pop: (tournament_prizes_stddev_pop_fields | null) - stddev_samp: (tournament_prizes_stddev_samp_fields | null) - sum: (tournament_prizes_sum_fields | null) - var_pop: (tournament_prizes_var_pop_fields | null) - var_samp: (tournament_prizes_var_samp_fields | null) - variance: (tournament_prizes_variance_fields | null) - __typename: 'tournament_prizes_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface tournament_prizes_avg_fields { - order: (Scalars['Float'] | null) - __typename: 'tournament_prizes_avg_fields' -} - - -/** unique or primary key constraints on table "tournament_prizes" */ -export type tournament_prizes_constraint = 'tournament_prizes_pkey' - - -/** aggregate max on columns */ -export interface tournament_prizes_max_fields { - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - order: (Scalars['Int'] | null) - place: (Scalars['String'] | null) - prize: (Scalars['String'] | null) - tournament_id: (Scalars['uuid'] | null) - __typename: 'tournament_prizes_max_fields' -} - - -/** aggregate min on columns */ -export interface tournament_prizes_min_fields { - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - order: (Scalars['Int'] | null) - place: (Scalars['String'] | null) - prize: (Scalars['String'] | null) - tournament_id: (Scalars['uuid'] | null) - __typename: 'tournament_prizes_min_fields' -} - - -/** response of any mutation on the table "tournament_prizes" */ -export interface tournament_prizes_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: tournament_prizes[] - __typename: 'tournament_prizes_mutation_response' -} - - -/** select columns of table "tournament_prizes" */ -export type tournament_prizes_select_column = 'created_at' | 'id' | 'order' | 'place' | 'prize' | 'tournament_id' - - -/** aggregate stddev on columns */ -export interface tournament_prizes_stddev_fields { - order: (Scalars['Float'] | null) - __typename: 'tournament_prizes_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface tournament_prizes_stddev_pop_fields { - order: (Scalars['Float'] | null) - __typename: 'tournament_prizes_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface tournament_prizes_stddev_samp_fields { - order: (Scalars['Float'] | null) - __typename: 'tournament_prizes_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface tournament_prizes_sum_fields { - order: (Scalars['Int'] | null) - __typename: 'tournament_prizes_sum_fields' -} - - -/** update columns of table "tournament_prizes" */ -export type tournament_prizes_update_column = 'created_at' | 'id' | 'order' | 'place' | 'prize' | 'tournament_id' - - -/** aggregate var_pop on columns */ -export interface tournament_prizes_var_pop_fields { - order: (Scalars['Float'] | null) - __typename: 'tournament_prizes_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface tournament_prizes_var_samp_fields { - order: (Scalars['Float'] | null) - __typename: 'tournament_prizes_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface tournament_prizes_variance_fields { - order: (Scalars['Float'] | null) - __typename: 'tournament_prizes_variance_fields' -} - - -/** columns and relationships of "tournament_registration_unlocks" */ -export interface tournament_registration_unlocks { - created_at: Scalars['timestamptz'] - /** An object relationship */ - player: (players | null) - player_steam_id: (Scalars['bigint'] | null) - /** An object relationship */ - team: (teams | null) - team_id: (Scalars['uuid'] | null) - /** An object relationship */ - tournament: tournaments - tournament_id: Scalars['uuid'] - __typename: 'tournament_registration_unlocks' -} - - -/** aggregated selection of "tournament_registration_unlocks" */ -export interface tournament_registration_unlocks_aggregate { - aggregate: (tournament_registration_unlocks_aggregate_fields | null) - nodes: tournament_registration_unlocks[] - __typename: 'tournament_registration_unlocks_aggregate' -} - - -/** aggregate fields of "tournament_registration_unlocks" */ -export interface tournament_registration_unlocks_aggregate_fields { - avg: (tournament_registration_unlocks_avg_fields | null) - count: Scalars['Int'] - max: (tournament_registration_unlocks_max_fields | null) - min: (tournament_registration_unlocks_min_fields | null) - stddev: (tournament_registration_unlocks_stddev_fields | null) - stddev_pop: (tournament_registration_unlocks_stddev_pop_fields | null) - stddev_samp: (tournament_registration_unlocks_stddev_samp_fields | null) - sum: (tournament_registration_unlocks_sum_fields | null) - var_pop: (tournament_registration_unlocks_var_pop_fields | null) - var_samp: (tournament_registration_unlocks_var_samp_fields | null) - variance: (tournament_registration_unlocks_variance_fields | null) - __typename: 'tournament_registration_unlocks_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface tournament_registration_unlocks_avg_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_registration_unlocks_avg_fields' -} - - -/** unique or primary key constraints on table "tournament_registration_unlocks" */ -export type tournament_registration_unlocks_constraint = 'idx_tournament_registration_unlocks_player' | 'idx_tournament_registration_unlocks_team' - - -/** aggregate max on columns */ -export interface tournament_registration_unlocks_max_fields { - created_at: (Scalars['timestamptz'] | null) - player_steam_id: (Scalars['bigint'] | null) - team_id: (Scalars['uuid'] | null) - tournament_id: (Scalars['uuid'] | null) - __typename: 'tournament_registration_unlocks_max_fields' -} - - -/** aggregate min on columns */ -export interface tournament_registration_unlocks_min_fields { - created_at: (Scalars['timestamptz'] | null) - player_steam_id: (Scalars['bigint'] | null) - team_id: (Scalars['uuid'] | null) - tournament_id: (Scalars['uuid'] | null) - __typename: 'tournament_registration_unlocks_min_fields' -} - - -/** response of any mutation on the table "tournament_registration_unlocks" */ -export interface tournament_registration_unlocks_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: tournament_registration_unlocks[] - __typename: 'tournament_registration_unlocks_mutation_response' -} - - -/** select columns of table "tournament_registration_unlocks" */ -export type tournament_registration_unlocks_select_column = 'created_at' | 'player_steam_id' | 'team_id' | 'tournament_id' - - -/** aggregate stddev on columns */ -export interface tournament_registration_unlocks_stddev_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_registration_unlocks_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface tournament_registration_unlocks_stddev_pop_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_registration_unlocks_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface tournament_registration_unlocks_stddev_samp_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_registration_unlocks_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface tournament_registration_unlocks_sum_fields { - player_steam_id: (Scalars['bigint'] | null) - __typename: 'tournament_registration_unlocks_sum_fields' -} - - -/** update columns of table "tournament_registration_unlocks" */ -export type tournament_registration_unlocks_update_column = 'created_at' | 'player_steam_id' | 'team_id' | 'tournament_id' - - -/** aggregate var_pop on columns */ -export interface tournament_registration_unlocks_var_pop_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_registration_unlocks_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface tournament_registration_unlocks_var_samp_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_registration_unlocks_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface tournament_registration_unlocks_variance_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_registration_unlocks_variance_fields' -} - - -/** columns and relationships of "tournament_stage_windows" */ -export interface tournament_stage_windows { - closes_at: (Scalars['timestamptz'] | null) - created_at: Scalars['timestamptz'] - default_match_at: (Scalars['timestamptz'] | null) - id: Scalars['uuid'] - opens_at: (Scalars['timestamptz'] | null) - round: Scalars['Int'] - /** An object relationship */ - stage: tournament_stages - tournament_stage_id: Scalars['uuid'] - __typename: 'tournament_stage_windows' -} - - -/** aggregated selection of "tournament_stage_windows" */ -export interface tournament_stage_windows_aggregate { - aggregate: (tournament_stage_windows_aggregate_fields | null) - nodes: tournament_stage_windows[] - __typename: 'tournament_stage_windows_aggregate' -} - - -/** aggregate fields of "tournament_stage_windows" */ -export interface tournament_stage_windows_aggregate_fields { - avg: (tournament_stage_windows_avg_fields | null) - count: Scalars['Int'] - max: (tournament_stage_windows_max_fields | null) - min: (tournament_stage_windows_min_fields | null) - stddev: (tournament_stage_windows_stddev_fields | null) - stddev_pop: (tournament_stage_windows_stddev_pop_fields | null) - stddev_samp: (tournament_stage_windows_stddev_samp_fields | null) - sum: (tournament_stage_windows_sum_fields | null) - var_pop: (tournament_stage_windows_var_pop_fields | null) - var_samp: (tournament_stage_windows_var_samp_fields | null) - variance: (tournament_stage_windows_variance_fields | null) - __typename: 'tournament_stage_windows_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface tournament_stage_windows_avg_fields { - round: (Scalars['Float'] | null) - __typename: 'tournament_stage_windows_avg_fields' -} - - -/** unique or primary key constraints on table "tournament_stage_windows" */ -export type tournament_stage_windows_constraint = 'tournament_stage_windows_pkey' | 'tournament_stage_windows_tournament_stage_id_round_key' - - -/** aggregate max on columns */ -export interface tournament_stage_windows_max_fields { - closes_at: (Scalars['timestamptz'] | null) - created_at: (Scalars['timestamptz'] | null) - default_match_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - opens_at: (Scalars['timestamptz'] | null) - round: (Scalars['Int'] | null) - tournament_stage_id: (Scalars['uuid'] | null) - __typename: 'tournament_stage_windows_max_fields' -} - - -/** aggregate min on columns */ -export interface tournament_stage_windows_min_fields { - closes_at: (Scalars['timestamptz'] | null) - created_at: (Scalars['timestamptz'] | null) - default_match_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - opens_at: (Scalars['timestamptz'] | null) - round: (Scalars['Int'] | null) - tournament_stage_id: (Scalars['uuid'] | null) - __typename: 'tournament_stage_windows_min_fields' -} - - -/** response of any mutation on the table "tournament_stage_windows" */ -export interface tournament_stage_windows_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: tournament_stage_windows[] - __typename: 'tournament_stage_windows_mutation_response' -} - - -/** select columns of table "tournament_stage_windows" */ -export type tournament_stage_windows_select_column = 'closes_at' | 'created_at' | 'default_match_at' | 'id' | 'opens_at' | 'round' | 'tournament_stage_id' - - -/** aggregate stddev on columns */ -export interface tournament_stage_windows_stddev_fields { - round: (Scalars['Float'] | null) - __typename: 'tournament_stage_windows_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface tournament_stage_windows_stddev_pop_fields { - round: (Scalars['Float'] | null) - __typename: 'tournament_stage_windows_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface tournament_stage_windows_stddev_samp_fields { - round: (Scalars['Float'] | null) - __typename: 'tournament_stage_windows_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface tournament_stage_windows_sum_fields { - round: (Scalars['Int'] | null) - __typename: 'tournament_stage_windows_sum_fields' -} - - -/** update columns of table "tournament_stage_windows" */ -export type tournament_stage_windows_update_column = 'closes_at' | 'created_at' | 'default_match_at' | 'id' | 'opens_at' | 'round' | 'tournament_stage_id' - - -/** aggregate var_pop on columns */ -export interface tournament_stage_windows_var_pop_fields { - round: (Scalars['Float'] | null) - __typename: 'tournament_stage_windows_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface tournament_stage_windows_var_samp_fields { - round: (Scalars['Float'] | null) - __typename: 'tournament_stage_windows_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface tournament_stage_windows_variance_fields { - round: (Scalars['Float'] | null) - __typename: 'tournament_stage_windows_variance_fields' -} - - -/** columns and relationships of "tournament_stages" */ -export interface tournament_stages { - /** An array relationship */ - brackets: tournament_brackets[] - /** An aggregate relationship */ - brackets_aggregate: tournament_brackets_aggregate - decider_best_of: (Scalars['Int'] | null) - default_best_of: Scalars['Int'] - /** An object relationship */ - e_tournament_stage_type: e_tournament_stage_types - final_map_advantage: Scalars['Int'] - groups: (Scalars['Int'] | null) - id: Scalars['uuid'] - match_options_id: (Scalars['uuid'] | null) - max_rounds: (Scalars['Int'] | null) - max_teams: Scalars['Int'] - min_teams: Scalars['Int'] - /** An object relationship */ - options: (match_options | null) - order: Scalars['Int'] - /** An array relationship */ - results: v_team_stage_results[] - /** An aggregate relationship */ - results_aggregate: v_team_stage_results_aggregate - settings: (Scalars['jsonb'] | null) - swiss_no_elimination: Scalars['Boolean'] - third_place_match: Scalars['Boolean'] - /** An object relationship */ - tournament: tournaments - tournament_id: Scalars['uuid'] - type: e_tournament_stage_types_enum - /** An array relationship */ - windows: tournament_stage_windows[] - /** An aggregate relationship */ - windows_aggregate: tournament_stage_windows_aggregate - __typename: 'tournament_stages' -} - - -/** aggregated selection of "tournament_stages" */ -export interface tournament_stages_aggregate { - aggregate: (tournament_stages_aggregate_fields | null) - nodes: tournament_stages[] - __typename: 'tournament_stages_aggregate' -} - - -/** aggregate fields of "tournament_stages" */ -export interface tournament_stages_aggregate_fields { - avg: (tournament_stages_avg_fields | null) - count: Scalars['Int'] - max: (tournament_stages_max_fields | null) - min: (tournament_stages_min_fields | null) - stddev: (tournament_stages_stddev_fields | null) - stddev_pop: (tournament_stages_stddev_pop_fields | null) - stddev_samp: (tournament_stages_stddev_samp_fields | null) - sum: (tournament_stages_sum_fields | null) - var_pop: (tournament_stages_var_pop_fields | null) - var_samp: (tournament_stages_var_samp_fields | null) - variance: (tournament_stages_variance_fields | null) - __typename: 'tournament_stages_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface tournament_stages_avg_fields { - decider_best_of: (Scalars['Float'] | null) - default_best_of: (Scalars['Float'] | null) - final_map_advantage: (Scalars['Float'] | null) - groups: (Scalars['Float'] | null) - max_rounds: (Scalars['Float'] | null) - max_teams: (Scalars['Float'] | null) - min_teams: (Scalars['Float'] | null) - order: (Scalars['Float'] | null) - __typename: 'tournament_stages_avg_fields' -} - - -/** unique or primary key constraints on table "tournament_stages" */ -export type tournament_stages_constraint = 'tournament_stages_pkey' - - -/** aggregate max on columns */ -export interface tournament_stages_max_fields { - decider_best_of: (Scalars['Int'] | null) - default_best_of: (Scalars['Int'] | null) - final_map_advantage: (Scalars['Int'] | null) - groups: (Scalars['Int'] | null) - id: (Scalars['uuid'] | null) - match_options_id: (Scalars['uuid'] | null) - max_rounds: (Scalars['Int'] | null) - max_teams: (Scalars['Int'] | null) - min_teams: (Scalars['Int'] | null) - order: (Scalars['Int'] | null) - tournament_id: (Scalars['uuid'] | null) - __typename: 'tournament_stages_max_fields' -} - - -/** aggregate min on columns */ -export interface tournament_stages_min_fields { - decider_best_of: (Scalars['Int'] | null) - default_best_of: (Scalars['Int'] | null) - final_map_advantage: (Scalars['Int'] | null) - groups: (Scalars['Int'] | null) - id: (Scalars['uuid'] | null) - match_options_id: (Scalars['uuid'] | null) - max_rounds: (Scalars['Int'] | null) - max_teams: (Scalars['Int'] | null) - min_teams: (Scalars['Int'] | null) - order: (Scalars['Int'] | null) - tournament_id: (Scalars['uuid'] | null) - __typename: 'tournament_stages_min_fields' -} - - -/** response of any mutation on the table "tournament_stages" */ -export interface tournament_stages_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: tournament_stages[] - __typename: 'tournament_stages_mutation_response' -} - - -/** select columns of table "tournament_stages" */ -export type tournament_stages_select_column = 'decider_best_of' | 'default_best_of' | 'final_map_advantage' | 'groups' | 'id' | 'match_options_id' | 'max_rounds' | 'max_teams' | 'min_teams' | 'order' | 'settings' | 'swiss_no_elimination' | 'third_place_match' | 'tournament_id' | 'type' - - -/** select "tournament_stages_aggregate_bool_exp_bool_and_arguments_columns" columns of table "tournament_stages" */ -export type tournament_stages_select_column_tournament_stages_aggregate_bool_exp_bool_and_arguments_columns = 'swiss_no_elimination' | 'third_place_match' - - -/** select "tournament_stages_aggregate_bool_exp_bool_or_arguments_columns" columns of table "tournament_stages" */ -export type tournament_stages_select_column_tournament_stages_aggregate_bool_exp_bool_or_arguments_columns = 'swiss_no_elimination' | 'third_place_match' - - -/** aggregate stddev on columns */ -export interface tournament_stages_stddev_fields { - decider_best_of: (Scalars['Float'] | null) - default_best_of: (Scalars['Float'] | null) - final_map_advantage: (Scalars['Float'] | null) - groups: (Scalars['Float'] | null) - max_rounds: (Scalars['Float'] | null) - max_teams: (Scalars['Float'] | null) - min_teams: (Scalars['Float'] | null) - order: (Scalars['Float'] | null) - __typename: 'tournament_stages_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface tournament_stages_stddev_pop_fields { - decider_best_of: (Scalars['Float'] | null) - default_best_of: (Scalars['Float'] | null) - final_map_advantage: (Scalars['Float'] | null) - groups: (Scalars['Float'] | null) - max_rounds: (Scalars['Float'] | null) - max_teams: (Scalars['Float'] | null) - min_teams: (Scalars['Float'] | null) - order: (Scalars['Float'] | null) - __typename: 'tournament_stages_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface tournament_stages_stddev_samp_fields { - decider_best_of: (Scalars['Float'] | null) - default_best_of: (Scalars['Float'] | null) - final_map_advantage: (Scalars['Float'] | null) - groups: (Scalars['Float'] | null) - max_rounds: (Scalars['Float'] | null) - max_teams: (Scalars['Float'] | null) - min_teams: (Scalars['Float'] | null) - order: (Scalars['Float'] | null) - __typename: 'tournament_stages_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface tournament_stages_sum_fields { - decider_best_of: (Scalars['Int'] | null) - default_best_of: (Scalars['Int'] | null) - final_map_advantage: (Scalars['Int'] | null) - groups: (Scalars['Int'] | null) - max_rounds: (Scalars['Int'] | null) - max_teams: (Scalars['Int'] | null) - min_teams: (Scalars['Int'] | null) - order: (Scalars['Int'] | null) - __typename: 'tournament_stages_sum_fields' -} - - -/** update columns of table "tournament_stages" */ -export type tournament_stages_update_column = 'decider_best_of' | 'default_best_of' | 'final_map_advantage' | 'groups' | 'id' | 'match_options_id' | 'max_rounds' | 'max_teams' | 'min_teams' | 'order' | 'settings' | 'swiss_no_elimination' | 'third_place_match' | 'tournament_id' | 'type' - - -/** aggregate var_pop on columns */ -export interface tournament_stages_var_pop_fields { - decider_best_of: (Scalars['Float'] | null) - default_best_of: (Scalars['Float'] | null) - final_map_advantage: (Scalars['Float'] | null) - groups: (Scalars['Float'] | null) - max_rounds: (Scalars['Float'] | null) - max_teams: (Scalars['Float'] | null) - min_teams: (Scalars['Float'] | null) - order: (Scalars['Float'] | null) - __typename: 'tournament_stages_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface tournament_stages_var_samp_fields { - decider_best_of: (Scalars['Float'] | null) - default_best_of: (Scalars['Float'] | null) - final_map_advantage: (Scalars['Float'] | null) - groups: (Scalars['Float'] | null) - max_rounds: (Scalars['Float'] | null) - max_teams: (Scalars['Float'] | null) - min_teams: (Scalars['Float'] | null) - order: (Scalars['Float'] | null) - __typename: 'tournament_stages_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface tournament_stages_variance_fields { - decider_best_of: (Scalars['Float'] | null) - default_best_of: (Scalars['Float'] | null) - final_map_advantage: (Scalars['Float'] | null) - groups: (Scalars['Float'] | null) - max_rounds: (Scalars['Float'] | null) - max_teams: (Scalars['Float'] | null) - min_teams: (Scalars['Float'] | null) - order: (Scalars['Float'] | null) - __typename: 'tournament_stages_variance_fields' -} - - -/** columns and relationships of "tournament_team_invites" */ -export interface tournament_team_invites { - created_at: Scalars['timestamptz'] - id: Scalars['uuid'] - /** An object relationship */ - invited_by: players - invited_by_player_steam_id: Scalars['bigint'] - /** An object relationship */ - player: players - steam_id: Scalars['bigint'] - /** An object relationship */ - team: tournament_teams - tournament_team_id: Scalars['uuid'] - __typename: 'tournament_team_invites' -} - - -/** aggregated selection of "tournament_team_invites" */ -export interface tournament_team_invites_aggregate { - aggregate: (tournament_team_invites_aggregate_fields | null) - nodes: tournament_team_invites[] - __typename: 'tournament_team_invites_aggregate' -} - - -/** aggregate fields of "tournament_team_invites" */ -export interface tournament_team_invites_aggregate_fields { - avg: (tournament_team_invites_avg_fields | null) - count: Scalars['Int'] - max: (tournament_team_invites_max_fields | null) - min: (tournament_team_invites_min_fields | null) - stddev: (tournament_team_invites_stddev_fields | null) - stddev_pop: (tournament_team_invites_stddev_pop_fields | null) - stddev_samp: (tournament_team_invites_stddev_samp_fields | null) - sum: (tournament_team_invites_sum_fields | null) - var_pop: (tournament_team_invites_var_pop_fields | null) - var_samp: (tournament_team_invites_var_samp_fields | null) - variance: (tournament_team_invites_variance_fields | null) - __typename: 'tournament_team_invites_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface tournament_team_invites_avg_fields { - invited_by_player_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'tournament_team_invites_avg_fields' -} - - -/** unique or primary key constraints on table "tournament_team_invites" */ -export type tournament_team_invites_constraint = 'tournament_team_invites_pkey' | 'tournament_team_invites_steam_id_tournament_team_id_key' - - -/** aggregate max on columns */ -export interface tournament_team_invites_max_fields { - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - invited_by_player_steam_id: (Scalars['bigint'] | null) - steam_id: (Scalars['bigint'] | null) - tournament_team_id: (Scalars['uuid'] | null) - __typename: 'tournament_team_invites_max_fields' -} - - -/** aggregate min on columns */ -export interface tournament_team_invites_min_fields { - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - invited_by_player_steam_id: (Scalars['bigint'] | null) - steam_id: (Scalars['bigint'] | null) - tournament_team_id: (Scalars['uuid'] | null) - __typename: 'tournament_team_invites_min_fields' -} - - -/** response of any mutation on the table "tournament_team_invites" */ -export interface tournament_team_invites_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: tournament_team_invites[] - __typename: 'tournament_team_invites_mutation_response' -} - - -/** select columns of table "tournament_team_invites" */ -export type tournament_team_invites_select_column = 'created_at' | 'id' | 'invited_by_player_steam_id' | 'steam_id' | 'tournament_team_id' - - -/** aggregate stddev on columns */ -export interface tournament_team_invites_stddev_fields { - invited_by_player_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'tournament_team_invites_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface tournament_team_invites_stddev_pop_fields { - invited_by_player_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'tournament_team_invites_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface tournament_team_invites_stddev_samp_fields { - invited_by_player_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'tournament_team_invites_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface tournament_team_invites_sum_fields { - invited_by_player_steam_id: (Scalars['bigint'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'tournament_team_invites_sum_fields' -} - - -/** update columns of table "tournament_team_invites" */ -export type tournament_team_invites_update_column = 'created_at' | 'id' | 'invited_by_player_steam_id' | 'steam_id' | 'tournament_team_id' - - -/** aggregate var_pop on columns */ -export interface tournament_team_invites_var_pop_fields { - invited_by_player_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'tournament_team_invites_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface tournament_team_invites_var_samp_fields { - invited_by_player_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'tournament_team_invites_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface tournament_team_invites_variance_fields { - invited_by_player_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'tournament_team_invites_variance_fields' -} - - -/** columns and relationships of "tournament_team_roster" */ -export interface tournament_team_roster { - checked_in_at: (Scalars['timestamptz'] | null) - /** An object relationship */ - e_team_role: e_team_roles - /** An object relationship */ - player: players - player_steam_id: Scalars['bigint'] - role: e_team_roles_enum - /** A computed field, executes function "tournament_team_roster_target_eligible" */ - target_eligible: (Scalars['Boolean'] | null) - /** An object relationship */ - tournament: tournaments - tournament_id: Scalars['uuid'] - /** An object relationship */ - tournament_team: tournament_teams - tournament_team_id: Scalars['uuid'] - __typename: 'tournament_team_roster' -} - - -/** aggregated selection of "tournament_team_roster" */ -export interface tournament_team_roster_aggregate { - aggregate: (tournament_team_roster_aggregate_fields | null) - nodes: tournament_team_roster[] - __typename: 'tournament_team_roster_aggregate' -} - - -/** aggregate fields of "tournament_team_roster" */ -export interface tournament_team_roster_aggregate_fields { - avg: (tournament_team_roster_avg_fields | null) - count: Scalars['Int'] - max: (tournament_team_roster_max_fields | null) - min: (tournament_team_roster_min_fields | null) - stddev: (tournament_team_roster_stddev_fields | null) - stddev_pop: (tournament_team_roster_stddev_pop_fields | null) - stddev_samp: (tournament_team_roster_stddev_samp_fields | null) - sum: (tournament_team_roster_sum_fields | null) - var_pop: (tournament_team_roster_var_pop_fields | null) - var_samp: (tournament_team_roster_var_samp_fields | null) - variance: (tournament_team_roster_variance_fields | null) - __typename: 'tournament_team_roster_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface tournament_team_roster_avg_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_team_roster_avg_fields' -} - - -/** unique or primary key constraints on table "tournament_team_roster" */ -export type tournament_team_roster_constraint = 'tournament_roster_pkey' | 'tournament_roster_player_steam_id_tournament_id_key' - - -/** aggregate max on columns */ -export interface tournament_team_roster_max_fields { - checked_in_at: (Scalars['timestamptz'] | null) - player_steam_id: (Scalars['bigint'] | null) - tournament_id: (Scalars['uuid'] | null) - tournament_team_id: (Scalars['uuid'] | null) - __typename: 'tournament_team_roster_max_fields' -} - - -/** aggregate min on columns */ -export interface tournament_team_roster_min_fields { - checked_in_at: (Scalars['timestamptz'] | null) - player_steam_id: (Scalars['bigint'] | null) - tournament_id: (Scalars['uuid'] | null) - tournament_team_id: (Scalars['uuid'] | null) - __typename: 'tournament_team_roster_min_fields' -} - - -/** response of any mutation on the table "tournament_team_roster" */ -export interface tournament_team_roster_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: tournament_team_roster[] - __typename: 'tournament_team_roster_mutation_response' -} - - -/** select columns of table "tournament_team_roster" */ -export type tournament_team_roster_select_column = 'checked_in_at' | 'player_steam_id' | 'role' | 'tournament_id' | 'tournament_team_id' - - -/** aggregate stddev on columns */ -export interface tournament_team_roster_stddev_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_team_roster_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface tournament_team_roster_stddev_pop_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_team_roster_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface tournament_team_roster_stddev_samp_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_team_roster_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface tournament_team_roster_sum_fields { - player_steam_id: (Scalars['bigint'] | null) - __typename: 'tournament_team_roster_sum_fields' -} - - -/** update columns of table "tournament_team_roster" */ -export type tournament_team_roster_update_column = 'checked_in_at' | 'player_steam_id' | 'role' | 'tournament_id' | 'tournament_team_id' - - -/** aggregate var_pop on columns */ -export interface tournament_team_roster_var_pop_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_team_roster_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface tournament_team_roster_var_samp_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_team_roster_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface tournament_team_roster_variance_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_team_roster_variance_fields' -} - - -/** columns and relationships of "tournament_teams" */ -export interface tournament_teams { - /** A computed field, executes function "can_manage_tournament_team" */ - can_manage: (Scalars['Boolean'] | null) - /** An object relationship */ - captain: (players | null) - captain_steam_id: (Scalars['bigint'] | null) - /** A computed field, executes function "tournament_team_checked_in" */ - checked_in: (Scalars['Boolean'] | null) - checked_in_at: (Scalars['timestamptz'] | null) - created_at: Scalars['timestamptz'] - /** An object relationship */ - creator: players - eligible_at: (Scalars['timestamptz'] | null) - /** An array relationship */ - free_agents: tournament_free_agents[] - /** An aggregate relationship */ - free_agents_aggregate: tournament_free_agents_aggregate - id: Scalars['uuid'] - /** An array relationship */ - invites: tournament_team_invites[] - /** An aggregate relationship */ - invites_aggregate: tournament_team_invites_aggregate - /** Created by draft_tournament_free_agent_teams rather than registered */ - is_drafted: Scalars['Boolean'] - name: (Scalars['String'] | null) - owner_steam_id: Scalars['bigint'] - /** An object relationship */ - results: (v_team_stage_results | null) - /** An array relationship */ - roster: tournament_team_roster[] - /** An aggregate relationship */ - roster_aggregate: tournament_team_roster_aggregate - seed: (Scalars['Int'] | null) - short_name: (Scalars['String'] | null) - /** An object relationship */ - team: (teams | null) - team_id: (Scalars['uuid'] | null) - /** An object relationship */ - tournament: tournaments - tournament_id: Scalars['uuid'] - __typename: 'tournament_teams' -} - - -/** aggregated selection of "tournament_teams" */ -export interface tournament_teams_aggregate { - aggregate: (tournament_teams_aggregate_fields | null) - nodes: tournament_teams[] - __typename: 'tournament_teams_aggregate' -} - - -/** aggregate fields of "tournament_teams" */ -export interface tournament_teams_aggregate_fields { - avg: (tournament_teams_avg_fields | null) - count: Scalars['Int'] - max: (tournament_teams_max_fields | null) - min: (tournament_teams_min_fields | null) - stddev: (tournament_teams_stddev_fields | null) - stddev_pop: (tournament_teams_stddev_pop_fields | null) - stddev_samp: (tournament_teams_stddev_samp_fields | null) - sum: (tournament_teams_sum_fields | null) - var_pop: (tournament_teams_var_pop_fields | null) - var_samp: (tournament_teams_var_samp_fields | null) - variance: (tournament_teams_variance_fields | null) - __typename: 'tournament_teams_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface tournament_teams_avg_fields { - captain_steam_id: (Scalars['Float'] | null) - owner_steam_id: (Scalars['Float'] | null) - seed: (Scalars['Float'] | null) - __typename: 'tournament_teams_avg_fields' -} - - -/** unique or primary key constraints on table "tournament_teams" */ -export type tournament_teams_constraint = 'tournament_teams_creator_steam_id_tournament_id_key' | 'tournament_teams_pkey' | 'tournament_teams_tournament_id_name_key' | 'tournament_teams_tournament_id_seed_key' | 'tournament_teams_tournament_id_team_id_key' - - -/** aggregate max on columns */ -export interface tournament_teams_max_fields { - captain_steam_id: (Scalars['bigint'] | null) - checked_in_at: (Scalars['timestamptz'] | null) - created_at: (Scalars['timestamptz'] | null) - eligible_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - name: (Scalars['String'] | null) - owner_steam_id: (Scalars['bigint'] | null) - seed: (Scalars['Int'] | null) - short_name: (Scalars['String'] | null) - team_id: (Scalars['uuid'] | null) - tournament_id: (Scalars['uuid'] | null) - __typename: 'tournament_teams_max_fields' -} - - -/** aggregate min on columns */ -export interface tournament_teams_min_fields { - captain_steam_id: (Scalars['bigint'] | null) - checked_in_at: (Scalars['timestamptz'] | null) - created_at: (Scalars['timestamptz'] | null) - eligible_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - name: (Scalars['String'] | null) - owner_steam_id: (Scalars['bigint'] | null) - seed: (Scalars['Int'] | null) - short_name: (Scalars['String'] | null) - team_id: (Scalars['uuid'] | null) - tournament_id: (Scalars['uuid'] | null) - __typename: 'tournament_teams_min_fields' -} - - -/** response of any mutation on the table "tournament_teams" */ -export interface tournament_teams_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: tournament_teams[] - __typename: 'tournament_teams_mutation_response' -} - - -/** select columns of table "tournament_teams" */ -export type tournament_teams_select_column = 'captain_steam_id' | 'checked_in_at' | 'created_at' | 'eligible_at' | 'id' | 'is_drafted' | 'name' | 'owner_steam_id' | 'seed' | 'short_name' | 'team_id' | 'tournament_id' - - -/** select "tournament_teams_aggregate_bool_exp_bool_and_arguments_columns" columns of table "tournament_teams" */ -export type tournament_teams_select_column_tournament_teams_aggregate_bool_exp_bool_and_arguments_columns = 'is_drafted' - - -/** select "tournament_teams_aggregate_bool_exp_bool_or_arguments_columns" columns of table "tournament_teams" */ -export type tournament_teams_select_column_tournament_teams_aggregate_bool_exp_bool_or_arguments_columns = 'is_drafted' - - -/** aggregate stddev on columns */ -export interface tournament_teams_stddev_fields { - captain_steam_id: (Scalars['Float'] | null) - owner_steam_id: (Scalars['Float'] | null) - seed: (Scalars['Float'] | null) - __typename: 'tournament_teams_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface tournament_teams_stddev_pop_fields { - captain_steam_id: (Scalars['Float'] | null) - owner_steam_id: (Scalars['Float'] | null) - seed: (Scalars['Float'] | null) - __typename: 'tournament_teams_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface tournament_teams_stddev_samp_fields { - captain_steam_id: (Scalars['Float'] | null) - owner_steam_id: (Scalars['Float'] | null) - seed: (Scalars['Float'] | null) - __typename: 'tournament_teams_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface tournament_teams_sum_fields { - captain_steam_id: (Scalars['bigint'] | null) - owner_steam_id: (Scalars['bigint'] | null) - seed: (Scalars['Int'] | null) - __typename: 'tournament_teams_sum_fields' -} - - -/** update columns of table "tournament_teams" */ -export type tournament_teams_update_column = 'captain_steam_id' | 'checked_in_at' | 'created_at' | 'eligible_at' | 'id' | 'is_drafted' | 'name' | 'owner_steam_id' | 'seed' | 'short_name' | 'team_id' | 'tournament_id' - - -/** aggregate var_pop on columns */ -export interface tournament_teams_var_pop_fields { - captain_steam_id: (Scalars['Float'] | null) - owner_steam_id: (Scalars['Float'] | null) - seed: (Scalars['Float'] | null) - __typename: 'tournament_teams_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface tournament_teams_var_samp_fields { - captain_steam_id: (Scalars['Float'] | null) - owner_steam_id: (Scalars['Float'] | null) - seed: (Scalars['Float'] | null) - __typename: 'tournament_teams_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface tournament_teams_variance_fields { - captain_steam_id: (Scalars['Float'] | null) - owner_steam_id: (Scalars['Float'] | null) - seed: (Scalars['Float'] | null) - __typename: 'tournament_teams_variance_fields' -} - - -/** columns and relationships of "tournaments" */ -export interface tournaments { - /** An object relationship */ - admin: players - auto_start: Scalars['Boolean'] - /** An array relationship */ - award_configs: tournament_awards[] - /** An aggregate relationship */ - award_configs_aggregate: tournament_awards_aggregate - /** An array relationship */ - awards: award_recipients[] - /** An aggregate relationship */ - awards_aggregate: award_recipients_aggregate - awards_enabled: Scalars['Boolean'] - banner: (Scalars['String'] | null) - /** A computed field, executes function "can_cancel_tournament" */ - can_cancel: (Scalars['Boolean'] | null) - /** A computed field, executes function "can_close_tournament_registration" */ - can_close_registration: (Scalars['Boolean'] | null) - /** A computed field, executes function "can_join_tournament" */ - can_join: (Scalars['Boolean'] | null) - /** A computed field, executes function "can_open_tournament_registration" */ - can_open_registration: (Scalars['Boolean'] | null) - /** A computed field, executes function "can_pause_tournament" */ - can_pause: (Scalars['Boolean'] | null) - /** A computed field, executes function "can_resume_tournament" */ - can_resume: (Scalars['Boolean'] | null) - /** A computed field, executes function "can_review_tournament_check_in" */ - can_review_check_in: (Scalars['Boolean'] | null) - /** A computed field, executes function "can_setup_tournament" */ - can_setup: (Scalars['Boolean'] | null) - /** A computed field, executes function "can_start_tournament" */ - can_start: (Scalars['Boolean'] | null) - /** An array relationship */ - categories: tournament_categories[] - /** An aggregate relationship */ - categories_aggregate: tournament_categories_aggregate - /** The check_in_ends_at the close pass has already acted on */ - check_in_closed_for: (Scalars['timestamptz'] | null) - check_in_closes_before_minutes: Scalars['Int'] - /** The check_in_ends_at the closing reminder was sent for */ - check_in_closing_notified_for: (Scalars['timestamptz'] | null) - /** When the check-in window closes; NULL until it opens */ - check_in_ends_at: (Scalars['timestamptz'] | null) - /** A computed field, executes function "tournament_check_in_open" */ - check_in_open: (Scalars['Boolean'] | null) - check_in_opens_before_minutes: Scalars['Int'] - check_in_required: Scalars['Boolean'] - /** Who confirms a team: Captains, every rostered Player, or the organizer (Admin) */ - check_in_setting: e_check_in_settings_enum - /** A computed field, executes function "tournament_check_in_started" */ - check_in_started: (Scalars['Boolean'] | null) - created_at: (Scalars['timestamptz'] | null) - description: (Scalars['String'] | null) - discord_guild_id: (Scalars['String'] | null) - discord_notifications_enabled: (Scalars['Boolean'] | null) - discord_notify_Canceled: (Scalars['Boolean'] | null) - discord_notify_Finished: (Scalars['Boolean'] | null) - discord_notify_Forfeit: (Scalars['Boolean'] | null) - discord_notify_Live: (Scalars['Boolean'] | null) - discord_notify_MapPaused: (Scalars['Boolean'] | null) - discord_notify_PickingPlayers: (Scalars['Boolean'] | null) - discord_notify_Scheduled: (Scalars['Boolean'] | null) - discord_notify_Surrendered: (Scalars['Boolean'] | null) - discord_notify_Tie: (Scalars['Boolean'] | null) - discord_notify_Veto: (Scalars['Boolean'] | null) - discord_notify_WaitingForCheckIn: (Scalars['Boolean'] | null) - discord_notify_WaitingForServer: (Scalars['Boolean'] | null) - discord_role_id: (Scalars['String'] | null) - discord_voice_enabled: Scalars['Boolean'] - discord_webhook: (Scalars['String'] | null) - /** An object relationship */ - e_tournament_status: e_tournament_status - /** An array relationship */ - free_agents: tournament_free_agents[] - /** An aggregate relationship */ - free_agents_aggregate: tournament_free_agents_aggregate - /** A computed field, executes function "tournament_has_min_teams" */ - has_min_teams: (Scalars['Boolean'] | null) - homepage: (Scalars['String'] | null) - id: Scalars['uuid'] - invite_only: Scalars['Boolean'] - is_league: Scalars['Boolean'] - /** A computed field, executes function "is_tournament_organizer" */ - is_organizer: (Scalars['Boolean'] | null) - /** A computed field, executes function "joined_tournament" */ - joined_tournament: (Scalars['Boolean'] | null) - latitude: (Scalars['float8'] | null) - /** An object relationship */ - league_season_division: (league_season_divisions | null) - location: (Scalars['String'] | null) - logo: (Scalars['String'] | null) - longitude: (Scalars['float8'] | null) - match_options_id: Scalars['uuid'] - max_elo: (Scalars['Int'] | null) - /** A computed field, executes function "tournament_max_players_per_lineup" */ - max_players_per_lineup: (Scalars['Int'] | null) - /** A computed field, executes function "meets_min_role" */ - meets_min_role: (Scalars['Boolean'] | null) - min_elo: (Scalars['Int'] | null) - /** A computed field, executes function "tournament_min_players_per_lineup" */ - min_players_per_lineup: (Scalars['Int'] | null) - min_role: (e_player_roles_enum | null) - /** A computed field, executes function "tournament_missed_check_in_count" */ - missed_check_in_count: (Scalars['Int'] | null) - name: Scalars['String'] - /** An object relationship */ - options: match_options - organizer_steam_id: Scalars['bigint'] - /** An array relationship */ - organizer_teams: tournament_organizer_teams[] - /** An aggregate relationship */ - organizer_teams_aggregate: tournament_organizer_teams_aggregate - /** An array relationship */ - organizers: tournament_organizers[] - /** An aggregate relationship */ - organizers_aggregate: tournament_organizers_aggregate - /** An array relationship */ - player_stats: v_tournament_player_stats[] - /** An aggregate relationship */ - player_stats_aggregate: v_tournament_player_stats_aggregate - /** An array relationship */ - prizes: tournament_prizes[] - /** An aggregate relationship */ - prizes_aggregate: tournament_prizes_aggregate - /** Preferred server regions for hosted matches */ - regions: Scalars['String'][] - registration_type: e_tournament_registration_types_enum - /** A computed field, executes function "tournament_registration_unlocked_for_session" */ - registration_unlocked: (Scalars['Boolean'] | null) - /** An array relationship */ - results: v_team_tournament_results[] - /** An aggregate relationship */ - results_aggregate: v_team_tournament_results_aggregate - /** An array relationship */ - rosters: tournament_team_roster[] - /** An aggregate relationship */ - rosters_aggregate: tournament_team_roster_aggregate - scheduling_mode: Scalars['String'] - /** An array relationship */ - stages: tournament_stages[] - /** An aggregate relationship */ - stages_aggregate: tournament_stages_aggregate - start: Scalars['timestamptz'] - status: e_tournament_status_enum - /** An array relationship */ - teams: tournament_teams[] - /** An aggregate relationship */ - teams_aggregate: tournament_teams_aggregate - __typename: 'tournaments' -} - - -/** aggregated selection of "tournaments" */ -export interface tournaments_aggregate { - aggregate: (tournaments_aggregate_fields | null) - nodes: tournaments[] - __typename: 'tournaments_aggregate' -} - - -/** aggregate fields of "tournaments" */ -export interface tournaments_aggregate_fields { - avg: (tournaments_avg_fields | null) - count: Scalars['Int'] - max: (tournaments_max_fields | null) - min: (tournaments_min_fields | null) - stddev: (tournaments_stddev_fields | null) - stddev_pop: (tournaments_stddev_pop_fields | null) - stddev_samp: (tournaments_stddev_samp_fields | null) - sum: (tournaments_sum_fields | null) - var_pop: (tournaments_var_pop_fields | null) - var_samp: (tournaments_var_samp_fields | null) - variance: (tournaments_variance_fields | null) - __typename: 'tournaments_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface tournaments_avg_fields { - check_in_closes_before_minutes: (Scalars['Float'] | null) - check_in_opens_before_minutes: (Scalars['Float'] | null) - latitude: (Scalars['Float'] | null) - longitude: (Scalars['Float'] | null) - max_elo: (Scalars['Float'] | null) - /** A computed field, executes function "tournament_max_players_per_lineup" */ - max_players_per_lineup: (Scalars['Int'] | null) - min_elo: (Scalars['Float'] | null) - /** A computed field, executes function "tournament_min_players_per_lineup" */ - min_players_per_lineup: (Scalars['Int'] | null) - /** A computed field, executes function "tournament_missed_check_in_count" */ - missed_check_in_count: (Scalars['Int'] | null) - organizer_steam_id: (Scalars['Float'] | null) - __typename: 'tournaments_avg_fields' -} - - -/** unique or primary key constraints on table "tournaments" */ -export type tournaments_constraint = 'tournaments_match_options_id_key' | 'tournaments_pkey' - - -/** aggregate max on columns */ -export interface tournaments_max_fields { - banner: (Scalars['String'] | null) - /** The check_in_ends_at the close pass has already acted on */ - check_in_closed_for: (Scalars['timestamptz'] | null) - check_in_closes_before_minutes: (Scalars['Int'] | null) - /** The check_in_ends_at the closing reminder was sent for */ - check_in_closing_notified_for: (Scalars['timestamptz'] | null) - /** When the check-in window closes; NULL until it opens */ - check_in_ends_at: (Scalars['timestamptz'] | null) - check_in_opens_before_minutes: (Scalars['Int'] | null) - created_at: (Scalars['timestamptz'] | null) - description: (Scalars['String'] | null) - discord_guild_id: (Scalars['String'] | null) - discord_role_id: (Scalars['String'] | null) - discord_webhook: (Scalars['String'] | null) - homepage: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - latitude: (Scalars['float8'] | null) - location: (Scalars['String'] | null) - logo: (Scalars['String'] | null) - longitude: (Scalars['float8'] | null) - match_options_id: (Scalars['uuid'] | null) - max_elo: (Scalars['Int'] | null) - /** A computed field, executes function "tournament_max_players_per_lineup" */ - max_players_per_lineup: (Scalars['Int'] | null) - min_elo: (Scalars['Int'] | null) - /** A computed field, executes function "tournament_min_players_per_lineup" */ - min_players_per_lineup: (Scalars['Int'] | null) - /** A computed field, executes function "tournament_missed_check_in_count" */ - missed_check_in_count: (Scalars['Int'] | null) - name: (Scalars['String'] | null) - organizer_steam_id: (Scalars['bigint'] | null) - /** Preferred server regions for hosted matches */ - regions: (Scalars['String'][] | null) - scheduling_mode: (Scalars['String'] | null) - start: (Scalars['timestamptz'] | null) - __typename: 'tournaments_max_fields' -} - - -/** aggregate min on columns */ -export interface tournaments_min_fields { - banner: (Scalars['String'] | null) - /** The check_in_ends_at the close pass has already acted on */ - check_in_closed_for: (Scalars['timestamptz'] | null) - check_in_closes_before_minutes: (Scalars['Int'] | null) - /** The check_in_ends_at the closing reminder was sent for */ - check_in_closing_notified_for: (Scalars['timestamptz'] | null) - /** When the check-in window closes; NULL until it opens */ - check_in_ends_at: (Scalars['timestamptz'] | null) - check_in_opens_before_minutes: (Scalars['Int'] | null) - created_at: (Scalars['timestamptz'] | null) - description: (Scalars['String'] | null) - discord_guild_id: (Scalars['String'] | null) - discord_role_id: (Scalars['String'] | null) - discord_webhook: (Scalars['String'] | null) - homepage: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - latitude: (Scalars['float8'] | null) - location: (Scalars['String'] | null) - logo: (Scalars['String'] | null) - longitude: (Scalars['float8'] | null) - match_options_id: (Scalars['uuid'] | null) - max_elo: (Scalars['Int'] | null) - /** A computed field, executes function "tournament_max_players_per_lineup" */ - max_players_per_lineup: (Scalars['Int'] | null) - min_elo: (Scalars['Int'] | null) - /** A computed field, executes function "tournament_min_players_per_lineup" */ - min_players_per_lineup: (Scalars['Int'] | null) - /** A computed field, executes function "tournament_missed_check_in_count" */ - missed_check_in_count: (Scalars['Int'] | null) - name: (Scalars['String'] | null) - organizer_steam_id: (Scalars['bigint'] | null) - /** Preferred server regions for hosted matches */ - regions: (Scalars['String'][] | null) - scheduling_mode: (Scalars['String'] | null) - start: (Scalars['timestamptz'] | null) - __typename: 'tournaments_min_fields' -} - - -/** response of any mutation on the table "tournaments" */ -export interface tournaments_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: tournaments[] - __typename: 'tournaments_mutation_response' -} - - -/** select columns of table "tournaments" */ -export type tournaments_select_column = 'auto_start' | 'awards_enabled' | 'banner' | 'check_in_closed_for' | 'check_in_closes_before_minutes' | 'check_in_closing_notified_for' | 'check_in_ends_at' | 'check_in_opens_before_minutes' | 'check_in_required' | 'check_in_setting' | 'created_at' | 'description' | 'discord_guild_id' | 'discord_notifications_enabled' | 'discord_notify_Canceled' | 'discord_notify_Finished' | 'discord_notify_Forfeit' | 'discord_notify_Live' | 'discord_notify_MapPaused' | 'discord_notify_PickingPlayers' | 'discord_notify_Scheduled' | 'discord_notify_Surrendered' | 'discord_notify_Tie' | 'discord_notify_Veto' | 'discord_notify_WaitingForCheckIn' | 'discord_notify_WaitingForServer' | 'discord_role_id' | 'discord_voice_enabled' | 'discord_webhook' | 'homepage' | 'id' | 'invite_only' | 'is_league' | 'latitude' | 'location' | 'logo' | 'longitude' | 'match_options_id' | 'max_elo' | 'min_elo' | 'min_role' | 'name' | 'organizer_steam_id' | 'regions' | 'registration_type' | 'scheduling_mode' | 'start' | 'status' - - -/** select "tournaments_aggregate_bool_exp_avg_arguments_columns" columns of table "tournaments" */ -export type tournaments_select_column_tournaments_aggregate_bool_exp_avg_arguments_columns = 'latitude' | 'longitude' - - -/** select "tournaments_aggregate_bool_exp_bool_and_arguments_columns" columns of table "tournaments" */ -export type tournaments_select_column_tournaments_aggregate_bool_exp_bool_and_arguments_columns = 'auto_start' | 'awards_enabled' | 'check_in_required' | 'discord_notifications_enabled' | 'discord_notify_Canceled' | 'discord_notify_Finished' | 'discord_notify_Forfeit' | 'discord_notify_Live' | 'discord_notify_MapPaused' | 'discord_notify_PickingPlayers' | 'discord_notify_Scheduled' | 'discord_notify_Surrendered' | 'discord_notify_Tie' | 'discord_notify_Veto' | 'discord_notify_WaitingForCheckIn' | 'discord_notify_WaitingForServer' | 'discord_voice_enabled' | 'invite_only' | 'is_league' - - -/** select "tournaments_aggregate_bool_exp_bool_or_arguments_columns" columns of table "tournaments" */ -export type tournaments_select_column_tournaments_aggregate_bool_exp_bool_or_arguments_columns = 'auto_start' | 'awards_enabled' | 'check_in_required' | 'discord_notifications_enabled' | 'discord_notify_Canceled' | 'discord_notify_Finished' | 'discord_notify_Forfeit' | 'discord_notify_Live' | 'discord_notify_MapPaused' | 'discord_notify_PickingPlayers' | 'discord_notify_Scheduled' | 'discord_notify_Surrendered' | 'discord_notify_Tie' | 'discord_notify_Veto' | 'discord_notify_WaitingForCheckIn' | 'discord_notify_WaitingForServer' | 'discord_voice_enabled' | 'invite_only' | 'is_league' - - -/** select "tournaments_aggregate_bool_exp_corr_arguments_columns" columns of table "tournaments" */ -export type tournaments_select_column_tournaments_aggregate_bool_exp_corr_arguments_columns = 'latitude' | 'longitude' - - -/** select "tournaments_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "tournaments" */ -export type tournaments_select_column_tournaments_aggregate_bool_exp_covar_samp_arguments_columns = 'latitude' | 'longitude' - - -/** select "tournaments_aggregate_bool_exp_max_arguments_columns" columns of table "tournaments" */ -export type tournaments_select_column_tournaments_aggregate_bool_exp_max_arguments_columns = 'latitude' | 'longitude' - - -/** select "tournaments_aggregate_bool_exp_min_arguments_columns" columns of table "tournaments" */ -export type tournaments_select_column_tournaments_aggregate_bool_exp_min_arguments_columns = 'latitude' | 'longitude' - - -/** select "tournaments_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "tournaments" */ -export type tournaments_select_column_tournaments_aggregate_bool_exp_stddev_samp_arguments_columns = 'latitude' | 'longitude' - - -/** select "tournaments_aggregate_bool_exp_sum_arguments_columns" columns of table "tournaments" */ -export type tournaments_select_column_tournaments_aggregate_bool_exp_sum_arguments_columns = 'latitude' | 'longitude' - - -/** select "tournaments_aggregate_bool_exp_var_samp_arguments_columns" columns of table "tournaments" */ -export type tournaments_select_column_tournaments_aggregate_bool_exp_var_samp_arguments_columns = 'latitude' | 'longitude' - - -/** aggregate stddev on columns */ -export interface tournaments_stddev_fields { - check_in_closes_before_minutes: (Scalars['Float'] | null) - check_in_opens_before_minutes: (Scalars['Float'] | null) - latitude: (Scalars['Float'] | null) - longitude: (Scalars['Float'] | null) - max_elo: (Scalars['Float'] | null) - /** A computed field, executes function "tournament_max_players_per_lineup" */ - max_players_per_lineup: (Scalars['Int'] | null) - min_elo: (Scalars['Float'] | null) - /** A computed field, executes function "tournament_min_players_per_lineup" */ - min_players_per_lineup: (Scalars['Int'] | null) - /** A computed field, executes function "tournament_missed_check_in_count" */ - missed_check_in_count: (Scalars['Int'] | null) - organizer_steam_id: (Scalars['Float'] | null) - __typename: 'tournaments_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface tournaments_stddev_pop_fields { - check_in_closes_before_minutes: (Scalars['Float'] | null) - check_in_opens_before_minutes: (Scalars['Float'] | null) - latitude: (Scalars['Float'] | null) - longitude: (Scalars['Float'] | null) - max_elo: (Scalars['Float'] | null) - /** A computed field, executes function "tournament_max_players_per_lineup" */ - max_players_per_lineup: (Scalars['Int'] | null) - min_elo: (Scalars['Float'] | null) - /** A computed field, executes function "tournament_min_players_per_lineup" */ - min_players_per_lineup: (Scalars['Int'] | null) - /** A computed field, executes function "tournament_missed_check_in_count" */ - missed_check_in_count: (Scalars['Int'] | null) - organizer_steam_id: (Scalars['Float'] | null) - __typename: 'tournaments_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface tournaments_stddev_samp_fields { - check_in_closes_before_minutes: (Scalars['Float'] | null) - check_in_opens_before_minutes: (Scalars['Float'] | null) - latitude: (Scalars['Float'] | null) - longitude: (Scalars['Float'] | null) - max_elo: (Scalars['Float'] | null) - /** A computed field, executes function "tournament_max_players_per_lineup" */ - max_players_per_lineup: (Scalars['Int'] | null) - min_elo: (Scalars['Float'] | null) - /** A computed field, executes function "tournament_min_players_per_lineup" */ - min_players_per_lineup: (Scalars['Int'] | null) - /** A computed field, executes function "tournament_missed_check_in_count" */ - missed_check_in_count: (Scalars['Int'] | null) - organizer_steam_id: (Scalars['Float'] | null) - __typename: 'tournaments_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface tournaments_sum_fields { - check_in_closes_before_minutes: (Scalars['Int'] | null) - check_in_opens_before_minutes: (Scalars['Int'] | null) - latitude: (Scalars['float8'] | null) - longitude: (Scalars['float8'] | null) - max_elo: (Scalars['Int'] | null) - /** A computed field, executes function "tournament_max_players_per_lineup" */ - max_players_per_lineup: (Scalars['Int'] | null) - min_elo: (Scalars['Int'] | null) - /** A computed field, executes function "tournament_min_players_per_lineup" */ - min_players_per_lineup: (Scalars['Int'] | null) - /** A computed field, executes function "tournament_missed_check_in_count" */ - missed_check_in_count: (Scalars['Int'] | null) - organizer_steam_id: (Scalars['bigint'] | null) - __typename: 'tournaments_sum_fields' -} - - -/** update columns of table "tournaments" */ -export type tournaments_update_column = 'auto_start' | 'awards_enabled' | 'banner' | 'check_in_closed_for' | 'check_in_closes_before_minutes' | 'check_in_closing_notified_for' | 'check_in_ends_at' | 'check_in_opens_before_minutes' | 'check_in_required' | 'check_in_setting' | 'created_at' | 'description' | 'discord_guild_id' | 'discord_notifications_enabled' | 'discord_notify_Canceled' | 'discord_notify_Finished' | 'discord_notify_Forfeit' | 'discord_notify_Live' | 'discord_notify_MapPaused' | 'discord_notify_PickingPlayers' | 'discord_notify_Scheduled' | 'discord_notify_Surrendered' | 'discord_notify_Tie' | 'discord_notify_Veto' | 'discord_notify_WaitingForCheckIn' | 'discord_notify_WaitingForServer' | 'discord_role_id' | 'discord_voice_enabled' | 'discord_webhook' | 'homepage' | 'id' | 'invite_only' | 'is_league' | 'latitude' | 'location' | 'logo' | 'longitude' | 'match_options_id' | 'max_elo' | 'min_elo' | 'min_role' | 'name' | 'organizer_steam_id' | 'regions' | 'registration_type' | 'scheduling_mode' | 'start' | 'status' - - -/** aggregate var_pop on columns */ -export interface tournaments_var_pop_fields { - check_in_closes_before_minutes: (Scalars['Float'] | null) - check_in_opens_before_minutes: (Scalars['Float'] | null) - latitude: (Scalars['Float'] | null) - longitude: (Scalars['Float'] | null) - max_elo: (Scalars['Float'] | null) - /** A computed field, executes function "tournament_max_players_per_lineup" */ - max_players_per_lineup: (Scalars['Int'] | null) - min_elo: (Scalars['Float'] | null) - /** A computed field, executes function "tournament_min_players_per_lineup" */ - min_players_per_lineup: (Scalars['Int'] | null) - /** A computed field, executes function "tournament_missed_check_in_count" */ - missed_check_in_count: (Scalars['Int'] | null) - organizer_steam_id: (Scalars['Float'] | null) - __typename: 'tournaments_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface tournaments_var_samp_fields { - check_in_closes_before_minutes: (Scalars['Float'] | null) - check_in_opens_before_minutes: (Scalars['Float'] | null) - latitude: (Scalars['Float'] | null) - longitude: (Scalars['Float'] | null) - max_elo: (Scalars['Float'] | null) - /** A computed field, executes function "tournament_max_players_per_lineup" */ - max_players_per_lineup: (Scalars['Int'] | null) - min_elo: (Scalars['Float'] | null) - /** A computed field, executes function "tournament_min_players_per_lineup" */ - min_players_per_lineup: (Scalars['Int'] | null) - /** A computed field, executes function "tournament_missed_check_in_count" */ - missed_check_in_count: (Scalars['Int'] | null) - organizer_steam_id: (Scalars['Float'] | null) - __typename: 'tournaments_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface tournaments_variance_fields { - check_in_closes_before_minutes: (Scalars['Float'] | null) - check_in_opens_before_minutes: (Scalars['Float'] | null) - latitude: (Scalars['Float'] | null) - longitude: (Scalars['Float'] | null) - max_elo: (Scalars['Float'] | null) - /** A computed field, executes function "tournament_max_players_per_lineup" */ - max_players_per_lineup: (Scalars['Int'] | null) - min_elo: (Scalars['Float'] | null) - /** A computed field, executes function "tournament_min_players_per_lineup" */ - min_players_per_lineup: (Scalars['Int'] | null) - /** A computed field, executes function "tournament_missed_check_in_count" */ - missed_check_in_count: (Scalars['Int'] | null) - organizer_steam_id: (Scalars['Float'] | null) - __typename: 'tournaments_variance_fields' -} - - -/** columns and relationships of "utility_collection_items" */ -export interface utility_collection_items { - /** An object relationship */ - collection: utility_collections - collection_id: Scalars['uuid'] - created_at: Scalars['timestamptz'] - note: (Scalars['String'] | null) - position: Scalars['Int'] - /** An object relationship */ - utility_lineup: utility_lineups - utility_lineup_id: Scalars['uuid'] - __typename: 'utility_collection_items' -} - - -/** aggregated selection of "utility_collection_items" */ -export interface utility_collection_items_aggregate { - aggregate: (utility_collection_items_aggregate_fields | null) - nodes: utility_collection_items[] - __typename: 'utility_collection_items_aggregate' -} - - -/** aggregate fields of "utility_collection_items" */ -export interface utility_collection_items_aggregate_fields { - avg: (utility_collection_items_avg_fields | null) - count: Scalars['Int'] - max: (utility_collection_items_max_fields | null) - min: (utility_collection_items_min_fields | null) - stddev: (utility_collection_items_stddev_fields | null) - stddev_pop: (utility_collection_items_stddev_pop_fields | null) - stddev_samp: (utility_collection_items_stddev_samp_fields | null) - sum: (utility_collection_items_sum_fields | null) - var_pop: (utility_collection_items_var_pop_fields | null) - var_samp: (utility_collection_items_var_samp_fields | null) - variance: (utility_collection_items_variance_fields | null) - __typename: 'utility_collection_items_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface utility_collection_items_avg_fields { - position: (Scalars['Float'] | null) - __typename: 'utility_collection_items_avg_fields' -} - - -/** unique or primary key constraints on table "utility_collection_items" */ -export type utility_collection_items_constraint = 'utility_collection_items_pkey' - - -/** aggregate max on columns */ -export interface utility_collection_items_max_fields { - collection_id: (Scalars['uuid'] | null) - created_at: (Scalars['timestamptz'] | null) - note: (Scalars['String'] | null) - position: (Scalars['Int'] | null) - utility_lineup_id: (Scalars['uuid'] | null) - __typename: 'utility_collection_items_max_fields' -} - - -/** aggregate min on columns */ -export interface utility_collection_items_min_fields { - collection_id: (Scalars['uuid'] | null) - created_at: (Scalars['timestamptz'] | null) - note: (Scalars['String'] | null) - position: (Scalars['Int'] | null) - utility_lineup_id: (Scalars['uuid'] | null) - __typename: 'utility_collection_items_min_fields' -} - - -/** response of any mutation on the table "utility_collection_items" */ -export interface utility_collection_items_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: utility_collection_items[] - __typename: 'utility_collection_items_mutation_response' -} - - -/** select columns of table "utility_collection_items" */ -export type utility_collection_items_select_column = 'collection_id' | 'created_at' | 'note' | 'position' | 'utility_lineup_id' - - -/** aggregate stddev on columns */ -export interface utility_collection_items_stddev_fields { - position: (Scalars['Float'] | null) - __typename: 'utility_collection_items_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface utility_collection_items_stddev_pop_fields { - position: (Scalars['Float'] | null) - __typename: 'utility_collection_items_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface utility_collection_items_stddev_samp_fields { - position: (Scalars['Float'] | null) - __typename: 'utility_collection_items_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface utility_collection_items_sum_fields { - position: (Scalars['Int'] | null) - __typename: 'utility_collection_items_sum_fields' -} - - -/** update columns of table "utility_collection_items" */ -export type utility_collection_items_update_column = 'collection_id' | 'created_at' | 'note' | 'position' | 'utility_lineup_id' - - -/** aggregate var_pop on columns */ -export interface utility_collection_items_var_pop_fields { - position: (Scalars['Float'] | null) - __typename: 'utility_collection_items_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface utility_collection_items_var_samp_fields { - position: (Scalars['Float'] | null) - __typename: 'utility_collection_items_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface utility_collection_items_variance_fields { - position: (Scalars['Float'] | null) - __typename: 'utility_collection_items_variance_fields' -} - - -/** columns and relationships of "utility_collections" */ -export interface utility_collections { - /** A computed field, executes function "can_edit_utility_collection" */ - can_edit: (Scalars['Boolean'] | null) - /** A computed field, executes function "can_view_utility_collection" */ - can_view: (Scalars['Boolean'] | null) - created_at: Scalars['timestamptz'] - description: (Scalars['String'] | null) - id: Scalars['uuid'] - /** An array relationship */ - items: utility_collection_items[] - /** An aggregate relationship */ - items_aggregate: utility_collection_items_aggregate - map_name: (Scalars['String'] | null) - name: Scalars['String'] - /** An object relationship */ - owner: players - owner_steam_id: Scalars['bigint'] - /** An object relationship */ - team: (teams | null) - team_id: (Scalars['uuid'] | null) - updated_at: Scalars['timestamptz'] - visibility: e_utility_visibility_enum - __typename: 'utility_collections' -} - - -/** aggregated selection of "utility_collections" */ -export interface utility_collections_aggregate { - aggregate: (utility_collections_aggregate_fields | null) - nodes: utility_collections[] - __typename: 'utility_collections_aggregate' -} - - -/** aggregate fields of "utility_collections" */ -export interface utility_collections_aggregate_fields { - avg: (utility_collections_avg_fields | null) - count: Scalars['Int'] - max: (utility_collections_max_fields | null) - min: (utility_collections_min_fields | null) - stddev: (utility_collections_stddev_fields | null) - stddev_pop: (utility_collections_stddev_pop_fields | null) - stddev_samp: (utility_collections_stddev_samp_fields | null) - sum: (utility_collections_sum_fields | null) - var_pop: (utility_collections_var_pop_fields | null) - var_samp: (utility_collections_var_samp_fields | null) - variance: (utility_collections_variance_fields | null) - __typename: 'utility_collections_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface utility_collections_avg_fields { - owner_steam_id: (Scalars['Float'] | null) - __typename: 'utility_collections_avg_fields' -} - - -/** unique or primary key constraints on table "utility_collections" */ -export type utility_collections_constraint = 'utility_collections_pkey' - - -/** aggregate max on columns */ -export interface utility_collections_max_fields { - created_at: (Scalars['timestamptz'] | null) - description: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - map_name: (Scalars['String'] | null) - name: (Scalars['String'] | null) - owner_steam_id: (Scalars['bigint'] | null) - team_id: (Scalars['uuid'] | null) - updated_at: (Scalars['timestamptz'] | null) - __typename: 'utility_collections_max_fields' -} - - -/** aggregate min on columns */ -export interface utility_collections_min_fields { - created_at: (Scalars['timestamptz'] | null) - description: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - map_name: (Scalars['String'] | null) - name: (Scalars['String'] | null) - owner_steam_id: (Scalars['bigint'] | null) - team_id: (Scalars['uuid'] | null) - updated_at: (Scalars['timestamptz'] | null) - __typename: 'utility_collections_min_fields' -} - - -/** response of any mutation on the table "utility_collections" */ -export interface utility_collections_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: utility_collections[] - __typename: 'utility_collections_mutation_response' -} - - -/** select columns of table "utility_collections" */ -export type utility_collections_select_column = 'created_at' | 'description' | 'id' | 'map_name' | 'name' | 'owner_steam_id' | 'team_id' | 'updated_at' | 'visibility' - - -/** aggregate stddev on columns */ -export interface utility_collections_stddev_fields { - owner_steam_id: (Scalars['Float'] | null) - __typename: 'utility_collections_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface utility_collections_stddev_pop_fields { - owner_steam_id: (Scalars['Float'] | null) - __typename: 'utility_collections_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface utility_collections_stddev_samp_fields { - owner_steam_id: (Scalars['Float'] | null) - __typename: 'utility_collections_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface utility_collections_sum_fields { - owner_steam_id: (Scalars['bigint'] | null) - __typename: 'utility_collections_sum_fields' -} - - -/** update columns of table "utility_collections" */ -export type utility_collections_update_column = 'created_at' | 'description' | 'id' | 'map_name' | 'name' | 'owner_steam_id' | 'team_id' | 'updated_at' | 'visibility' - - -/** aggregate var_pop on columns */ -export interface utility_collections_var_pop_fields { - owner_steam_id: (Scalars['Float'] | null) - __typename: 'utility_collections_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface utility_collections_var_samp_fields { - owner_steam_id: (Scalars['Float'] | null) - __typename: 'utility_collections_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface utility_collections_variance_fields { - owner_steam_id: (Scalars['Float'] | null) - __typename: 'utility_collections_variance_fields' -} - - -/** columns and relationships of "utility_demo_mines" */ -export interface utility_demo_mines { - failed_reason: (Scalars['String'] | null) - match_map_demo_id: Scalars['uuid'] - mined_at: Scalars['timestamptz'] - throws: Scalars['Int'] - version: Scalars['Int'] - __typename: 'utility_demo_mines' -} - - -/** aggregated selection of "utility_demo_mines" */ -export interface utility_demo_mines_aggregate { - aggregate: (utility_demo_mines_aggregate_fields | null) - nodes: utility_demo_mines[] - __typename: 'utility_demo_mines_aggregate' -} - - -/** aggregate fields of "utility_demo_mines" */ -export interface utility_demo_mines_aggregate_fields { - avg: (utility_demo_mines_avg_fields | null) - count: Scalars['Int'] - max: (utility_demo_mines_max_fields | null) - min: (utility_demo_mines_min_fields | null) - stddev: (utility_demo_mines_stddev_fields | null) - stddev_pop: (utility_demo_mines_stddev_pop_fields | null) - stddev_samp: (utility_demo_mines_stddev_samp_fields | null) - sum: (utility_demo_mines_sum_fields | null) - var_pop: (utility_demo_mines_var_pop_fields | null) - var_samp: (utility_demo_mines_var_samp_fields | null) - variance: (utility_demo_mines_variance_fields | null) - __typename: 'utility_demo_mines_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface utility_demo_mines_avg_fields { - throws: (Scalars['Float'] | null) - version: (Scalars['Float'] | null) - __typename: 'utility_demo_mines_avg_fields' -} - - -/** unique or primary key constraints on table "utility_demo_mines" */ -export type utility_demo_mines_constraint = 'utility_demo_mines_pkey' - - -/** aggregate max on columns */ -export interface utility_demo_mines_max_fields { - failed_reason: (Scalars['String'] | null) - match_map_demo_id: (Scalars['uuid'] | null) - mined_at: (Scalars['timestamptz'] | null) - throws: (Scalars['Int'] | null) - version: (Scalars['Int'] | null) - __typename: 'utility_demo_mines_max_fields' -} - - -/** aggregate min on columns */ -export interface utility_demo_mines_min_fields { - failed_reason: (Scalars['String'] | null) - match_map_demo_id: (Scalars['uuid'] | null) - mined_at: (Scalars['timestamptz'] | null) - throws: (Scalars['Int'] | null) - version: (Scalars['Int'] | null) - __typename: 'utility_demo_mines_min_fields' -} - - -/** response of any mutation on the table "utility_demo_mines" */ -export interface utility_demo_mines_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: utility_demo_mines[] - __typename: 'utility_demo_mines_mutation_response' -} - - -/** select columns of table "utility_demo_mines" */ -export type utility_demo_mines_select_column = 'failed_reason' | 'match_map_demo_id' | 'mined_at' | 'throws' | 'version' - - -/** aggregate stddev on columns */ -export interface utility_demo_mines_stddev_fields { - throws: (Scalars['Float'] | null) - version: (Scalars['Float'] | null) - __typename: 'utility_demo_mines_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface utility_demo_mines_stddev_pop_fields { - throws: (Scalars['Float'] | null) - version: (Scalars['Float'] | null) - __typename: 'utility_demo_mines_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface utility_demo_mines_stddev_samp_fields { - throws: (Scalars['Float'] | null) - version: (Scalars['Float'] | null) - __typename: 'utility_demo_mines_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface utility_demo_mines_sum_fields { - throws: (Scalars['Int'] | null) - version: (Scalars['Int'] | null) - __typename: 'utility_demo_mines_sum_fields' -} - - -/** update columns of table "utility_demo_mines" */ -export type utility_demo_mines_update_column = 'failed_reason' | 'match_map_demo_id' | 'mined_at' | 'throws' | 'version' - - -/** aggregate var_pop on columns */ -export interface utility_demo_mines_var_pop_fields { - throws: (Scalars['Float'] | null) - version: (Scalars['Float'] | null) - __typename: 'utility_demo_mines_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface utility_demo_mines_var_samp_fields { - throws: (Scalars['Float'] | null) - version: (Scalars['Float'] | null) - __typename: 'utility_demo_mines_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface utility_demo_mines_variance_fields { - throws: (Scalars['Float'] | null) - version: (Scalars['Float'] | null) - __typename: 'utility_demo_mines_variance_fields' -} - - -/** columns and relationships of "utility_demo_throws" */ -export interface utility_demo_throws { - created_at: Scalars['timestamptz'] - flight_time_ms: (Scalars['Int'] | null) - grenade_id: Scalars['Int'] - land_x: Scalars['float8'] - land_y: Scalars['float8'] - land_z: Scalars['float8'] - lineup_bucket: (Scalars['String'] | null) - map_name: Scalars['String'] - /** An object relationship */ - match: (matches | null) - match_id: (Scalars['uuid'] | null) - /** An object relationship */ - match_map: (match_maps | null) - match_map_demo_id: Scalars['uuid'] - match_map_id: (Scalars['uuid'] | null) - origin_x: Scalars['float8'] - origin_y: Scalars['float8'] - origin_z: Scalars['float8'] - round: (Scalars['Int'] | null) - side: e_sides_enum - technique: e_utility_techniques_enum - throw_strength: (e_utility_throw_strengths_enum | null) - thrower_steam_id: (Scalars['bigint'] | null) - thrown_at: (Scalars['timestamptz'] | null) - tick: (Scalars['Int'] | null) - utility_type: e_utility_types_enum - view_pitch: (Scalars['float8'] | null) - view_yaw: (Scalars['float8'] | null) - __typename: 'utility_demo_throws' -} - - -/** aggregated selection of "utility_demo_throws" */ -export interface utility_demo_throws_aggregate { - aggregate: (utility_demo_throws_aggregate_fields | null) - nodes: utility_demo_throws[] - __typename: 'utility_demo_throws_aggregate' -} - - -/** aggregate fields of "utility_demo_throws" */ -export interface utility_demo_throws_aggregate_fields { - avg: (utility_demo_throws_avg_fields | null) - count: Scalars['Int'] - max: (utility_demo_throws_max_fields | null) - min: (utility_demo_throws_min_fields | null) - stddev: (utility_demo_throws_stddev_fields | null) - stddev_pop: (utility_demo_throws_stddev_pop_fields | null) - stddev_samp: (utility_demo_throws_stddev_samp_fields | null) - sum: (utility_demo_throws_sum_fields | null) - var_pop: (utility_demo_throws_var_pop_fields | null) - var_samp: (utility_demo_throws_var_samp_fields | null) - variance: (utility_demo_throws_variance_fields | null) - __typename: 'utility_demo_throws_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface utility_demo_throws_avg_fields { - flight_time_ms: (Scalars['Float'] | null) - grenade_id: (Scalars['Float'] | null) - land_x: (Scalars['Float'] | null) - land_y: (Scalars['Float'] | null) - land_z: (Scalars['Float'] | null) - origin_x: (Scalars['Float'] | null) - origin_y: (Scalars['Float'] | null) - origin_z: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - thrower_steam_id: (Scalars['Float'] | null) - tick: (Scalars['Float'] | null) - view_pitch: (Scalars['Float'] | null) - view_yaw: (Scalars['Float'] | null) - __typename: 'utility_demo_throws_avg_fields' -} - - -/** unique or primary key constraints on table "utility_demo_throws" */ -export type utility_demo_throws_constraint = 'utility_demo_throws_pkey' - - -/** aggregate max on columns */ -export interface utility_demo_throws_max_fields { - created_at: (Scalars['timestamptz'] | null) - flight_time_ms: (Scalars['Int'] | null) - grenade_id: (Scalars['Int'] | null) - land_x: (Scalars['float8'] | null) - land_y: (Scalars['float8'] | null) - land_z: (Scalars['float8'] | null) - lineup_bucket: (Scalars['String'] | null) - map_name: (Scalars['String'] | null) - match_id: (Scalars['uuid'] | null) - match_map_demo_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - origin_x: (Scalars['float8'] | null) - origin_y: (Scalars['float8'] | null) - origin_z: (Scalars['float8'] | null) - round: (Scalars['Int'] | null) - thrower_steam_id: (Scalars['bigint'] | null) - thrown_at: (Scalars['timestamptz'] | null) - tick: (Scalars['Int'] | null) - view_pitch: (Scalars['float8'] | null) - view_yaw: (Scalars['float8'] | null) - __typename: 'utility_demo_throws_max_fields' -} - - -/** aggregate min on columns */ -export interface utility_demo_throws_min_fields { - created_at: (Scalars['timestamptz'] | null) - flight_time_ms: (Scalars['Int'] | null) - grenade_id: (Scalars['Int'] | null) - land_x: (Scalars['float8'] | null) - land_y: (Scalars['float8'] | null) - land_z: (Scalars['float8'] | null) - lineup_bucket: (Scalars['String'] | null) - map_name: (Scalars['String'] | null) - match_id: (Scalars['uuid'] | null) - match_map_demo_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - origin_x: (Scalars['float8'] | null) - origin_y: (Scalars['float8'] | null) - origin_z: (Scalars['float8'] | null) - round: (Scalars['Int'] | null) - thrower_steam_id: (Scalars['bigint'] | null) - thrown_at: (Scalars['timestamptz'] | null) - tick: (Scalars['Int'] | null) - view_pitch: (Scalars['float8'] | null) - view_yaw: (Scalars['float8'] | null) - __typename: 'utility_demo_throws_min_fields' -} - - -/** response of any mutation on the table "utility_demo_throws" */ -export interface utility_demo_throws_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: utility_demo_throws[] - __typename: 'utility_demo_throws_mutation_response' -} - - -/** select columns of table "utility_demo_throws" */ -export type utility_demo_throws_select_column = 'created_at' | 'flight_time_ms' | 'grenade_id' | 'land_x' | 'land_y' | 'land_z' | 'lineup_bucket' | 'map_name' | 'match_id' | 'match_map_demo_id' | 'match_map_id' | 'origin_x' | 'origin_y' | 'origin_z' | 'round' | 'side' | 'technique' | 'throw_strength' | 'thrower_steam_id' | 'thrown_at' | 'tick' | 'utility_type' | 'view_pitch' | 'view_yaw' - - -/** aggregate stddev on columns */ -export interface utility_demo_throws_stddev_fields { - flight_time_ms: (Scalars['Float'] | null) - grenade_id: (Scalars['Float'] | null) - land_x: (Scalars['Float'] | null) - land_y: (Scalars['Float'] | null) - land_z: (Scalars['Float'] | null) - origin_x: (Scalars['Float'] | null) - origin_y: (Scalars['Float'] | null) - origin_z: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - thrower_steam_id: (Scalars['Float'] | null) - tick: (Scalars['Float'] | null) - view_pitch: (Scalars['Float'] | null) - view_yaw: (Scalars['Float'] | null) - __typename: 'utility_demo_throws_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface utility_demo_throws_stddev_pop_fields { - flight_time_ms: (Scalars['Float'] | null) - grenade_id: (Scalars['Float'] | null) - land_x: (Scalars['Float'] | null) - land_y: (Scalars['Float'] | null) - land_z: (Scalars['Float'] | null) - origin_x: (Scalars['Float'] | null) - origin_y: (Scalars['Float'] | null) - origin_z: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - thrower_steam_id: (Scalars['Float'] | null) - tick: (Scalars['Float'] | null) - view_pitch: (Scalars['Float'] | null) - view_yaw: (Scalars['Float'] | null) - __typename: 'utility_demo_throws_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface utility_demo_throws_stddev_samp_fields { - flight_time_ms: (Scalars['Float'] | null) - grenade_id: (Scalars['Float'] | null) - land_x: (Scalars['Float'] | null) - land_y: (Scalars['Float'] | null) - land_z: (Scalars['Float'] | null) - origin_x: (Scalars['Float'] | null) - origin_y: (Scalars['Float'] | null) - origin_z: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - thrower_steam_id: (Scalars['Float'] | null) - tick: (Scalars['Float'] | null) - view_pitch: (Scalars['Float'] | null) - view_yaw: (Scalars['Float'] | null) - __typename: 'utility_demo_throws_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface utility_demo_throws_sum_fields { - flight_time_ms: (Scalars['Int'] | null) - grenade_id: (Scalars['Int'] | null) - land_x: (Scalars['float8'] | null) - land_y: (Scalars['float8'] | null) - land_z: (Scalars['float8'] | null) - origin_x: (Scalars['float8'] | null) - origin_y: (Scalars['float8'] | null) - origin_z: (Scalars['float8'] | null) - round: (Scalars['Int'] | null) - thrower_steam_id: (Scalars['bigint'] | null) - tick: (Scalars['Int'] | null) - view_pitch: (Scalars['float8'] | null) - view_yaw: (Scalars['float8'] | null) - __typename: 'utility_demo_throws_sum_fields' -} - - -/** update columns of table "utility_demo_throws" */ -export type utility_demo_throws_update_column = 'created_at' | 'flight_time_ms' | 'grenade_id' | 'land_x' | 'land_y' | 'land_z' | 'map_name' | 'match_id' | 'match_map_demo_id' | 'match_map_id' | 'origin_x' | 'origin_y' | 'origin_z' | 'round' | 'side' | 'technique' | 'throw_strength' | 'thrower_steam_id' | 'thrown_at' | 'tick' | 'utility_type' | 'view_pitch' | 'view_yaw' - - -/** aggregate var_pop on columns */ -export interface utility_demo_throws_var_pop_fields { - flight_time_ms: (Scalars['Float'] | null) - grenade_id: (Scalars['Float'] | null) - land_x: (Scalars['Float'] | null) - land_y: (Scalars['Float'] | null) - land_z: (Scalars['Float'] | null) - origin_x: (Scalars['Float'] | null) - origin_y: (Scalars['Float'] | null) - origin_z: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - thrower_steam_id: (Scalars['Float'] | null) - tick: (Scalars['Float'] | null) - view_pitch: (Scalars['Float'] | null) - view_yaw: (Scalars['Float'] | null) - __typename: 'utility_demo_throws_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface utility_demo_throws_var_samp_fields { - flight_time_ms: (Scalars['Float'] | null) - grenade_id: (Scalars['Float'] | null) - land_x: (Scalars['Float'] | null) - land_y: (Scalars['Float'] | null) - land_z: (Scalars['Float'] | null) - origin_x: (Scalars['Float'] | null) - origin_y: (Scalars['Float'] | null) - origin_z: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - thrower_steam_id: (Scalars['Float'] | null) - tick: (Scalars['Float'] | null) - view_pitch: (Scalars['Float'] | null) - view_yaw: (Scalars['Float'] | null) - __typename: 'utility_demo_throws_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface utility_demo_throws_variance_fields { - flight_time_ms: (Scalars['Float'] | null) - grenade_id: (Scalars['Float'] | null) - land_x: (Scalars['Float'] | null) - land_y: (Scalars['Float'] | null) - land_z: (Scalars['Float'] | null) - origin_x: (Scalars['Float'] | null) - origin_y: (Scalars['Float'] | null) - origin_z: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - thrower_steam_id: (Scalars['Float'] | null) - tick: (Scalars['Float'] | null) - view_pitch: (Scalars['Float'] | null) - view_yaw: (Scalars['Float'] | null) - __typename: 'utility_demo_throws_variance_fields' -} - - -/** columns and relationships of "utility_drift_results" */ -export interface utility_drift_results { - created_at: Scalars['timestamptz'] - distance: (Scalars['float8'] | null) - distance_xy: (Scalars['float8'] | null) - distance_z: (Scalars['float8'] | null) - reason: (Scalars['String'] | null) - /** An object relationship */ - scan: utility_drift_scans - severity: (Scalars['String'] | null) - utility_drift_scan_id: Scalars['uuid'] - /** An object relationship */ - utility_lineup: utility_lineups - utility_lineup_id: Scalars['uuid'] - verdict: Scalars['String'] - __typename: 'utility_drift_results' -} - - -/** aggregated selection of "utility_drift_results" */ -export interface utility_drift_results_aggregate { - aggregate: (utility_drift_results_aggregate_fields | null) - nodes: utility_drift_results[] - __typename: 'utility_drift_results_aggregate' -} - - -/** aggregate fields of "utility_drift_results" */ -export interface utility_drift_results_aggregate_fields { - avg: (utility_drift_results_avg_fields | null) - count: Scalars['Int'] - max: (utility_drift_results_max_fields | null) - min: (utility_drift_results_min_fields | null) - stddev: (utility_drift_results_stddev_fields | null) - stddev_pop: (utility_drift_results_stddev_pop_fields | null) - stddev_samp: (utility_drift_results_stddev_samp_fields | null) - sum: (utility_drift_results_sum_fields | null) - var_pop: (utility_drift_results_var_pop_fields | null) - var_samp: (utility_drift_results_var_samp_fields | null) - variance: (utility_drift_results_variance_fields | null) - __typename: 'utility_drift_results_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface utility_drift_results_avg_fields { - distance: (Scalars['Float'] | null) - distance_xy: (Scalars['Float'] | null) - distance_z: (Scalars['Float'] | null) - __typename: 'utility_drift_results_avg_fields' -} - - -/** unique or primary key constraints on table "utility_drift_results" */ -export type utility_drift_results_constraint = 'utility_drift_results_pkey' - - -/** aggregate max on columns */ -export interface utility_drift_results_max_fields { - created_at: (Scalars['timestamptz'] | null) - distance: (Scalars['float8'] | null) - distance_xy: (Scalars['float8'] | null) - distance_z: (Scalars['float8'] | null) - reason: (Scalars['String'] | null) - severity: (Scalars['String'] | null) - utility_drift_scan_id: (Scalars['uuid'] | null) - utility_lineup_id: (Scalars['uuid'] | null) - verdict: (Scalars['String'] | null) - __typename: 'utility_drift_results_max_fields' -} - - -/** aggregate min on columns */ -export interface utility_drift_results_min_fields { - created_at: (Scalars['timestamptz'] | null) - distance: (Scalars['float8'] | null) - distance_xy: (Scalars['float8'] | null) - distance_z: (Scalars['float8'] | null) - reason: (Scalars['String'] | null) - severity: (Scalars['String'] | null) - utility_drift_scan_id: (Scalars['uuid'] | null) - utility_lineup_id: (Scalars['uuid'] | null) - verdict: (Scalars['String'] | null) - __typename: 'utility_drift_results_min_fields' -} - - -/** response of any mutation on the table "utility_drift_results" */ -export interface utility_drift_results_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: utility_drift_results[] - __typename: 'utility_drift_results_mutation_response' -} - - -/** select columns of table "utility_drift_results" */ -export type utility_drift_results_select_column = 'created_at' | 'distance' | 'distance_xy' | 'distance_z' | 'reason' | 'severity' | 'utility_drift_scan_id' | 'utility_lineup_id' | 'verdict' - - -/** select "utility_drift_results_aggregate_bool_exp_avg_arguments_columns" columns of table "utility_drift_results" */ -export type utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_avg_arguments_columns = 'distance' | 'distance_xy' | 'distance_z' - - -/** select "utility_drift_results_aggregate_bool_exp_corr_arguments_columns" columns of table "utility_drift_results" */ -export type utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_corr_arguments_columns = 'distance' | 'distance_xy' | 'distance_z' - - -/** select "utility_drift_results_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "utility_drift_results" */ -export type utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_covar_samp_arguments_columns = 'distance' | 'distance_xy' | 'distance_z' - - -/** select "utility_drift_results_aggregate_bool_exp_max_arguments_columns" columns of table "utility_drift_results" */ -export type utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_max_arguments_columns = 'distance' | 'distance_xy' | 'distance_z' - - -/** select "utility_drift_results_aggregate_bool_exp_min_arguments_columns" columns of table "utility_drift_results" */ -export type utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_min_arguments_columns = 'distance' | 'distance_xy' | 'distance_z' - - -/** select "utility_drift_results_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "utility_drift_results" */ -export type utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_stddev_samp_arguments_columns = 'distance' | 'distance_xy' | 'distance_z' - - -/** select "utility_drift_results_aggregate_bool_exp_sum_arguments_columns" columns of table "utility_drift_results" */ -export type utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_sum_arguments_columns = 'distance' | 'distance_xy' | 'distance_z' - - -/** select "utility_drift_results_aggregate_bool_exp_var_samp_arguments_columns" columns of table "utility_drift_results" */ -export type utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_var_samp_arguments_columns = 'distance' | 'distance_xy' | 'distance_z' - - -/** aggregate stddev on columns */ -export interface utility_drift_results_stddev_fields { - distance: (Scalars['Float'] | null) - distance_xy: (Scalars['Float'] | null) - distance_z: (Scalars['Float'] | null) - __typename: 'utility_drift_results_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface utility_drift_results_stddev_pop_fields { - distance: (Scalars['Float'] | null) - distance_xy: (Scalars['Float'] | null) - distance_z: (Scalars['Float'] | null) - __typename: 'utility_drift_results_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface utility_drift_results_stddev_samp_fields { - distance: (Scalars['Float'] | null) - distance_xy: (Scalars['Float'] | null) - distance_z: (Scalars['Float'] | null) - __typename: 'utility_drift_results_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface utility_drift_results_sum_fields { - distance: (Scalars['float8'] | null) - distance_xy: (Scalars['float8'] | null) - distance_z: (Scalars['float8'] | null) - __typename: 'utility_drift_results_sum_fields' -} - - -/** update columns of table "utility_drift_results" */ -export type utility_drift_results_update_column = 'created_at' | 'distance' | 'distance_xy' | 'distance_z' | 'reason' | 'severity' | 'utility_drift_scan_id' | 'utility_lineup_id' | 'verdict' - - -/** aggregate var_pop on columns */ -export interface utility_drift_results_var_pop_fields { - distance: (Scalars['Float'] | null) - distance_xy: (Scalars['Float'] | null) - distance_z: (Scalars['Float'] | null) - __typename: 'utility_drift_results_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface utility_drift_results_var_samp_fields { - distance: (Scalars['Float'] | null) - distance_xy: (Scalars['Float'] | null) - distance_z: (Scalars['Float'] | null) - __typename: 'utility_drift_results_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface utility_drift_results_variance_fields { - distance: (Scalars['Float'] | null) - distance_xy: (Scalars['Float'] | null) - distance_z: (Scalars['Float'] | null) - __typename: 'utility_drift_results_variance_fields' -} - - -/** columns and relationships of "utility_drift_scans" */ -export interface utility_drift_scans { - broken: Scalars['Int'] - created_at: Scalars['timestamptz'] - failure_reason: (Scalars['String'] | null) - finished_at: (Scalars['timestamptz'] | null) - from_revision: (Scalars['String'] | null) - id: Scalars['uuid'] - lineups: Scalars['Int'] - map_name: Scalars['String'] - max_distance: (Scalars['float8'] | null) - moved: Scalars['Int'] - /** An object relationship */ - requested_by: (players | null) - requested_by_steam_id: (Scalars['bigint'] | null) - /** An array relationship */ - results: utility_drift_results[] - /** An aggregate relationship */ - results_aggregate: utility_drift_results_aggregate - scanned: Scalars['Int'] - started_at: (Scalars['timestamptz'] | null) - status: Scalars['String'] - to_revision: (Scalars['String'] | null) - unchanged: Scalars['Int'] - unsimulatable: Scalars['Int'] - updated_at: Scalars['timestamptz'] - __typename: 'utility_drift_scans' -} - - -/** aggregated selection of "utility_drift_scans" */ -export interface utility_drift_scans_aggregate { - aggregate: (utility_drift_scans_aggregate_fields | null) - nodes: utility_drift_scans[] - __typename: 'utility_drift_scans_aggregate' -} - - -/** aggregate fields of "utility_drift_scans" */ -export interface utility_drift_scans_aggregate_fields { - avg: (utility_drift_scans_avg_fields | null) - count: Scalars['Int'] - max: (utility_drift_scans_max_fields | null) - min: (utility_drift_scans_min_fields | null) - stddev: (utility_drift_scans_stddev_fields | null) - stddev_pop: (utility_drift_scans_stddev_pop_fields | null) - stddev_samp: (utility_drift_scans_stddev_samp_fields | null) - sum: (utility_drift_scans_sum_fields | null) - var_pop: (utility_drift_scans_var_pop_fields | null) - var_samp: (utility_drift_scans_var_samp_fields | null) - variance: (utility_drift_scans_variance_fields | null) - __typename: 'utility_drift_scans_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface utility_drift_scans_avg_fields { - broken: (Scalars['Float'] | null) - lineups: (Scalars['Float'] | null) - max_distance: (Scalars['Float'] | null) - moved: (Scalars['Float'] | null) - requested_by_steam_id: (Scalars['Float'] | null) - scanned: (Scalars['Float'] | null) - unchanged: (Scalars['Float'] | null) - unsimulatable: (Scalars['Float'] | null) - __typename: 'utility_drift_scans_avg_fields' -} - - -/** unique or primary key constraints on table "utility_drift_scans" */ -export type utility_drift_scans_constraint = 'utility_drift_scans_pkey' - - -/** aggregate max on columns */ -export interface utility_drift_scans_max_fields { - broken: (Scalars['Int'] | null) - created_at: (Scalars['timestamptz'] | null) - failure_reason: (Scalars['String'] | null) - finished_at: (Scalars['timestamptz'] | null) - from_revision: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - lineups: (Scalars['Int'] | null) - map_name: (Scalars['String'] | null) - max_distance: (Scalars['float8'] | null) - moved: (Scalars['Int'] | null) - requested_by_steam_id: (Scalars['bigint'] | null) - scanned: (Scalars['Int'] | null) - started_at: (Scalars['timestamptz'] | null) - status: (Scalars['String'] | null) - to_revision: (Scalars['String'] | null) - unchanged: (Scalars['Int'] | null) - unsimulatable: (Scalars['Int'] | null) - updated_at: (Scalars['timestamptz'] | null) - __typename: 'utility_drift_scans_max_fields' -} - - -/** aggregate min on columns */ -export interface utility_drift_scans_min_fields { - broken: (Scalars['Int'] | null) - created_at: (Scalars['timestamptz'] | null) - failure_reason: (Scalars['String'] | null) - finished_at: (Scalars['timestamptz'] | null) - from_revision: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - lineups: (Scalars['Int'] | null) - map_name: (Scalars['String'] | null) - max_distance: (Scalars['float8'] | null) - moved: (Scalars['Int'] | null) - requested_by_steam_id: (Scalars['bigint'] | null) - scanned: (Scalars['Int'] | null) - started_at: (Scalars['timestamptz'] | null) - status: (Scalars['String'] | null) - to_revision: (Scalars['String'] | null) - unchanged: (Scalars['Int'] | null) - unsimulatable: (Scalars['Int'] | null) - updated_at: (Scalars['timestamptz'] | null) - __typename: 'utility_drift_scans_min_fields' -} - - -/** response of any mutation on the table "utility_drift_scans" */ -export interface utility_drift_scans_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: utility_drift_scans[] - __typename: 'utility_drift_scans_mutation_response' -} - - -/** select columns of table "utility_drift_scans" */ -export type utility_drift_scans_select_column = 'broken' | 'created_at' | 'failure_reason' | 'finished_at' | 'from_revision' | 'id' | 'lineups' | 'map_name' | 'max_distance' | 'moved' | 'requested_by_steam_id' | 'scanned' | 'started_at' | 'status' | 'to_revision' | 'unchanged' | 'unsimulatable' | 'updated_at' - - -/** aggregate stddev on columns */ -export interface utility_drift_scans_stddev_fields { - broken: (Scalars['Float'] | null) - lineups: (Scalars['Float'] | null) - max_distance: (Scalars['Float'] | null) - moved: (Scalars['Float'] | null) - requested_by_steam_id: (Scalars['Float'] | null) - scanned: (Scalars['Float'] | null) - unchanged: (Scalars['Float'] | null) - unsimulatable: (Scalars['Float'] | null) - __typename: 'utility_drift_scans_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface utility_drift_scans_stddev_pop_fields { - broken: (Scalars['Float'] | null) - lineups: (Scalars['Float'] | null) - max_distance: (Scalars['Float'] | null) - moved: (Scalars['Float'] | null) - requested_by_steam_id: (Scalars['Float'] | null) - scanned: (Scalars['Float'] | null) - unchanged: (Scalars['Float'] | null) - unsimulatable: (Scalars['Float'] | null) - __typename: 'utility_drift_scans_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface utility_drift_scans_stddev_samp_fields { - broken: (Scalars['Float'] | null) - lineups: (Scalars['Float'] | null) - max_distance: (Scalars['Float'] | null) - moved: (Scalars['Float'] | null) - requested_by_steam_id: (Scalars['Float'] | null) - scanned: (Scalars['Float'] | null) - unchanged: (Scalars['Float'] | null) - unsimulatable: (Scalars['Float'] | null) - __typename: 'utility_drift_scans_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface utility_drift_scans_sum_fields { - broken: (Scalars['Int'] | null) - lineups: (Scalars['Int'] | null) - max_distance: (Scalars['float8'] | null) - moved: (Scalars['Int'] | null) - requested_by_steam_id: (Scalars['bigint'] | null) - scanned: (Scalars['Int'] | null) - unchanged: (Scalars['Int'] | null) - unsimulatable: (Scalars['Int'] | null) - __typename: 'utility_drift_scans_sum_fields' -} - - -/** update columns of table "utility_drift_scans" */ -export type utility_drift_scans_update_column = 'broken' | 'created_at' | 'failure_reason' | 'finished_at' | 'from_revision' | 'id' | 'lineups' | 'map_name' | 'max_distance' | 'moved' | 'requested_by_steam_id' | 'scanned' | 'started_at' | 'status' | 'to_revision' | 'unchanged' | 'unsimulatable' | 'updated_at' - - -/** aggregate var_pop on columns */ -export interface utility_drift_scans_var_pop_fields { - broken: (Scalars['Float'] | null) - lineups: (Scalars['Float'] | null) - max_distance: (Scalars['Float'] | null) - moved: (Scalars['Float'] | null) - requested_by_steam_id: (Scalars['Float'] | null) - scanned: (Scalars['Float'] | null) - unchanged: (Scalars['Float'] | null) - unsimulatable: (Scalars['Float'] | null) - __typename: 'utility_drift_scans_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface utility_drift_scans_var_samp_fields { - broken: (Scalars['Float'] | null) - lineups: (Scalars['Float'] | null) - max_distance: (Scalars['Float'] | null) - moved: (Scalars['Float'] | null) - requested_by_steam_id: (Scalars['Float'] | null) - scanned: (Scalars['Float'] | null) - unchanged: (Scalars['Float'] | null) - unsimulatable: (Scalars['Float'] | null) - __typename: 'utility_drift_scans_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface utility_drift_scans_variance_fields { - broken: (Scalars['Float'] | null) - lineups: (Scalars['Float'] | null) - max_distance: (Scalars['Float'] | null) - moved: (Scalars['Float'] | null) - requested_by_steam_id: (Scalars['Float'] | null) - scanned: (Scalars['Float'] | null) - unchanged: (Scalars['Float'] | null) - unsimulatable: (Scalars['Float'] | null) - __typename: 'utility_drift_scans_variance_fields' -} - - -/** columns and relationships of "utility_lineup_favorites" */ -export interface utility_lineup_favorites { - created_at: Scalars['timestamptz'] - /** An object relationship */ - player: players - steam_id: Scalars['bigint'] - /** An object relationship */ - utility_lineup: utility_lineups - utility_lineup_id: Scalars['uuid'] - __typename: 'utility_lineup_favorites' -} - - -/** aggregated selection of "utility_lineup_favorites" */ -export interface utility_lineup_favorites_aggregate { - aggregate: (utility_lineup_favorites_aggregate_fields | null) - nodes: utility_lineup_favorites[] - __typename: 'utility_lineup_favorites_aggregate' -} - - -/** aggregate fields of "utility_lineup_favorites" */ -export interface utility_lineup_favorites_aggregate_fields { - avg: (utility_lineup_favorites_avg_fields | null) - count: Scalars['Int'] - max: (utility_lineup_favorites_max_fields | null) - min: (utility_lineup_favorites_min_fields | null) - stddev: (utility_lineup_favorites_stddev_fields | null) - stddev_pop: (utility_lineup_favorites_stddev_pop_fields | null) - stddev_samp: (utility_lineup_favorites_stddev_samp_fields | null) - sum: (utility_lineup_favorites_sum_fields | null) - var_pop: (utility_lineup_favorites_var_pop_fields | null) - var_samp: (utility_lineup_favorites_var_samp_fields | null) - variance: (utility_lineup_favorites_variance_fields | null) - __typename: 'utility_lineup_favorites_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface utility_lineup_favorites_avg_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'utility_lineup_favorites_avg_fields' -} - - -/** unique or primary key constraints on table "utility_lineup_favorites" */ -export type utility_lineup_favorites_constraint = 'utility_lineup_favorites_pkey' - - -/** aggregate max on columns */ -export interface utility_lineup_favorites_max_fields { - created_at: (Scalars['timestamptz'] | null) - steam_id: (Scalars['bigint'] | null) - utility_lineup_id: (Scalars['uuid'] | null) - __typename: 'utility_lineup_favorites_max_fields' -} - - -/** aggregate min on columns */ -export interface utility_lineup_favorites_min_fields { - created_at: (Scalars['timestamptz'] | null) - steam_id: (Scalars['bigint'] | null) - utility_lineup_id: (Scalars['uuid'] | null) - __typename: 'utility_lineup_favorites_min_fields' -} - - -/** response of any mutation on the table "utility_lineup_favorites" */ -export interface utility_lineup_favorites_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: utility_lineup_favorites[] - __typename: 'utility_lineup_favorites_mutation_response' -} - - -/** select columns of table "utility_lineup_favorites" */ -export type utility_lineup_favorites_select_column = 'created_at' | 'steam_id' | 'utility_lineup_id' - - -/** aggregate stddev on columns */ -export interface utility_lineup_favorites_stddev_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'utility_lineup_favorites_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface utility_lineup_favorites_stddev_pop_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'utility_lineup_favorites_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface utility_lineup_favorites_stddev_samp_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'utility_lineup_favorites_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface utility_lineup_favorites_sum_fields { - steam_id: (Scalars['bigint'] | null) - __typename: 'utility_lineup_favorites_sum_fields' -} - - -/** update columns of table "utility_lineup_favorites" */ -export type utility_lineup_favorites_update_column = 'created_at' | 'steam_id' | 'utility_lineup_id' - - -/** aggregate var_pop on columns */ -export interface utility_lineup_favorites_var_pop_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'utility_lineup_favorites_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface utility_lineup_favorites_var_samp_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'utility_lineup_favorites_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface utility_lineup_favorites_variance_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'utility_lineup_favorites_variance_fields' -} - - -/** columns and relationships of "utility_lineup_progress" */ -export interface utility_lineup_progress { - attempts: Scalars['Int'] - best_streak: Scalars['Int'] - current_streak: Scalars['Int'] - last_practiced_at: (Scalars['timestamptz'] | null) - mastered_at: (Scalars['timestamptz'] | null) - miss_along_sum: Scalars['float8'] - miss_lateral_sum: Scalars['float8'] - miss_samples: Scalars['Int'] - miss_vertical_sum: Scalars['float8'] - /** An object relationship */ - player: players - steam_id: Scalars['bigint'] - successes: Scalars['Int'] - /** An object relationship */ - utility_lineup: utility_lineups - utility_lineup_id: Scalars['uuid'] - __typename: 'utility_lineup_progress' -} - - -/** aggregated selection of "utility_lineup_progress" */ -export interface utility_lineup_progress_aggregate { - aggregate: (utility_lineup_progress_aggregate_fields | null) - nodes: utility_lineup_progress[] - __typename: 'utility_lineup_progress_aggregate' -} - - -/** aggregate fields of "utility_lineup_progress" */ -export interface utility_lineup_progress_aggregate_fields { - avg: (utility_lineup_progress_avg_fields | null) - count: Scalars['Int'] - max: (utility_lineup_progress_max_fields | null) - min: (utility_lineup_progress_min_fields | null) - stddev: (utility_lineup_progress_stddev_fields | null) - stddev_pop: (utility_lineup_progress_stddev_pop_fields | null) - stddev_samp: (utility_lineup_progress_stddev_samp_fields | null) - sum: (utility_lineup_progress_sum_fields | null) - var_pop: (utility_lineup_progress_var_pop_fields | null) - var_samp: (utility_lineup_progress_var_samp_fields | null) - variance: (utility_lineup_progress_variance_fields | null) - __typename: 'utility_lineup_progress_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface utility_lineup_progress_avg_fields { - attempts: (Scalars['Float'] | null) - best_streak: (Scalars['Float'] | null) - current_streak: (Scalars['Float'] | null) - miss_along_sum: (Scalars['Float'] | null) - miss_lateral_sum: (Scalars['Float'] | null) - miss_samples: (Scalars['Float'] | null) - miss_vertical_sum: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - successes: (Scalars['Float'] | null) - __typename: 'utility_lineup_progress_avg_fields' -} - - -/** unique or primary key constraints on table "utility_lineup_progress" */ -export type utility_lineup_progress_constraint = 'utility_lineup_progress_pkey' - - -/** aggregate max on columns */ -export interface utility_lineup_progress_max_fields { - attempts: (Scalars['Int'] | null) - best_streak: (Scalars['Int'] | null) - current_streak: (Scalars['Int'] | null) - last_practiced_at: (Scalars['timestamptz'] | null) - mastered_at: (Scalars['timestamptz'] | null) - miss_along_sum: (Scalars['float8'] | null) - miss_lateral_sum: (Scalars['float8'] | null) - miss_samples: (Scalars['Int'] | null) - miss_vertical_sum: (Scalars['float8'] | null) - steam_id: (Scalars['bigint'] | null) - successes: (Scalars['Int'] | null) - utility_lineup_id: (Scalars['uuid'] | null) - __typename: 'utility_lineup_progress_max_fields' -} - - -/** aggregate min on columns */ -export interface utility_lineup_progress_min_fields { - attempts: (Scalars['Int'] | null) - best_streak: (Scalars['Int'] | null) - current_streak: (Scalars['Int'] | null) - last_practiced_at: (Scalars['timestamptz'] | null) - mastered_at: (Scalars['timestamptz'] | null) - miss_along_sum: (Scalars['float8'] | null) - miss_lateral_sum: (Scalars['float8'] | null) - miss_samples: (Scalars['Int'] | null) - miss_vertical_sum: (Scalars['float8'] | null) - steam_id: (Scalars['bigint'] | null) - successes: (Scalars['Int'] | null) - utility_lineup_id: (Scalars['uuid'] | null) - __typename: 'utility_lineup_progress_min_fields' -} - - -/** response of any mutation on the table "utility_lineup_progress" */ -export interface utility_lineup_progress_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: utility_lineup_progress[] - __typename: 'utility_lineup_progress_mutation_response' -} - - -/** select columns of table "utility_lineup_progress" */ -export type utility_lineup_progress_select_column = 'attempts' | 'best_streak' | 'current_streak' | 'last_practiced_at' | 'mastered_at' | 'miss_along_sum' | 'miss_lateral_sum' | 'miss_samples' | 'miss_vertical_sum' | 'steam_id' | 'successes' | 'utility_lineup_id' - - -/** select "utility_lineup_progress_aggregate_bool_exp_avg_arguments_columns" columns of table "utility_lineup_progress" */ -export type utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_avg_arguments_columns = 'miss_along_sum' | 'miss_lateral_sum' | 'miss_vertical_sum' - - -/** select "utility_lineup_progress_aggregate_bool_exp_corr_arguments_columns" columns of table "utility_lineup_progress" */ -export type utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_corr_arguments_columns = 'miss_along_sum' | 'miss_lateral_sum' | 'miss_vertical_sum' - - -/** select "utility_lineup_progress_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "utility_lineup_progress" */ -export type utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_covar_samp_arguments_columns = 'miss_along_sum' | 'miss_lateral_sum' | 'miss_vertical_sum' - - -/** select "utility_lineup_progress_aggregate_bool_exp_max_arguments_columns" columns of table "utility_lineup_progress" */ -export type utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_max_arguments_columns = 'miss_along_sum' | 'miss_lateral_sum' | 'miss_vertical_sum' - - -/** select "utility_lineup_progress_aggregate_bool_exp_min_arguments_columns" columns of table "utility_lineup_progress" */ -export type utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_min_arguments_columns = 'miss_along_sum' | 'miss_lateral_sum' | 'miss_vertical_sum' - - -/** select "utility_lineup_progress_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "utility_lineup_progress" */ -export type utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_stddev_samp_arguments_columns = 'miss_along_sum' | 'miss_lateral_sum' | 'miss_vertical_sum' - - -/** select "utility_lineup_progress_aggregate_bool_exp_sum_arguments_columns" columns of table "utility_lineup_progress" */ -export type utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_sum_arguments_columns = 'miss_along_sum' | 'miss_lateral_sum' | 'miss_vertical_sum' - - -/** select "utility_lineup_progress_aggregate_bool_exp_var_samp_arguments_columns" columns of table "utility_lineup_progress" */ -export type utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_var_samp_arguments_columns = 'miss_along_sum' | 'miss_lateral_sum' | 'miss_vertical_sum' - - -/** aggregate stddev on columns */ -export interface utility_lineup_progress_stddev_fields { - attempts: (Scalars['Float'] | null) - best_streak: (Scalars['Float'] | null) - current_streak: (Scalars['Float'] | null) - miss_along_sum: (Scalars['Float'] | null) - miss_lateral_sum: (Scalars['Float'] | null) - miss_samples: (Scalars['Float'] | null) - miss_vertical_sum: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - successes: (Scalars['Float'] | null) - __typename: 'utility_lineup_progress_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface utility_lineup_progress_stddev_pop_fields { - attempts: (Scalars['Float'] | null) - best_streak: (Scalars['Float'] | null) - current_streak: (Scalars['Float'] | null) - miss_along_sum: (Scalars['Float'] | null) - miss_lateral_sum: (Scalars['Float'] | null) - miss_samples: (Scalars['Float'] | null) - miss_vertical_sum: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - successes: (Scalars['Float'] | null) - __typename: 'utility_lineup_progress_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface utility_lineup_progress_stddev_samp_fields { - attempts: (Scalars['Float'] | null) - best_streak: (Scalars['Float'] | null) - current_streak: (Scalars['Float'] | null) - miss_along_sum: (Scalars['Float'] | null) - miss_lateral_sum: (Scalars['Float'] | null) - miss_samples: (Scalars['Float'] | null) - miss_vertical_sum: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - successes: (Scalars['Float'] | null) - __typename: 'utility_lineup_progress_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface utility_lineup_progress_sum_fields { - attempts: (Scalars['Int'] | null) - best_streak: (Scalars['Int'] | null) - current_streak: (Scalars['Int'] | null) - miss_along_sum: (Scalars['float8'] | null) - miss_lateral_sum: (Scalars['float8'] | null) - miss_samples: (Scalars['Int'] | null) - miss_vertical_sum: (Scalars['float8'] | null) - steam_id: (Scalars['bigint'] | null) - successes: (Scalars['Int'] | null) - __typename: 'utility_lineup_progress_sum_fields' -} - - -/** update columns of table "utility_lineup_progress" */ -export type utility_lineup_progress_update_column = 'attempts' | 'best_streak' | 'current_streak' | 'last_practiced_at' | 'mastered_at' | 'miss_along_sum' | 'miss_lateral_sum' | 'miss_samples' | 'miss_vertical_sum' | 'steam_id' | 'successes' | 'utility_lineup_id' - - -/** aggregate var_pop on columns */ -export interface utility_lineup_progress_var_pop_fields { - attempts: (Scalars['Float'] | null) - best_streak: (Scalars['Float'] | null) - current_streak: (Scalars['Float'] | null) - miss_along_sum: (Scalars['Float'] | null) - miss_lateral_sum: (Scalars['Float'] | null) - miss_samples: (Scalars['Float'] | null) - miss_vertical_sum: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - successes: (Scalars['Float'] | null) - __typename: 'utility_lineup_progress_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface utility_lineup_progress_var_samp_fields { - attempts: (Scalars['Float'] | null) - best_streak: (Scalars['Float'] | null) - current_streak: (Scalars['Float'] | null) - miss_along_sum: (Scalars['Float'] | null) - miss_lateral_sum: (Scalars['Float'] | null) - miss_samples: (Scalars['Float'] | null) - miss_vertical_sum: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - successes: (Scalars['Float'] | null) - __typename: 'utility_lineup_progress_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface utility_lineup_progress_variance_fields { - attempts: (Scalars['Float'] | null) - best_streak: (Scalars['Float'] | null) - current_streak: (Scalars['Float'] | null) - miss_along_sum: (Scalars['Float'] | null) - miss_lateral_sum: (Scalars['Float'] | null) - miss_samples: (Scalars['Float'] | null) - miss_vertical_sum: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - successes: (Scalars['Float'] | null) - __typename: 'utility_lineup_progress_variance_fields' -} - - -/** columns and relationships of "utility_lineup_renders" */ -export interface utility_lineup_renders { - created_at: Scalars['timestamptz'] - duration_ms: (Scalars['Int'] | 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'] - k8s_job_name: (Scalars['String'] | null) - last_status_at: Scalars['timestamptz'] - /** An object relationship */ - lineup: utility_lineups - map_name: Scalars['String'] - paused: Scalars['Boolean'] - /** An object relationship */ - practice_session: (utility_practice_sessions | null) - progress: (Scalars['numeric'] | null) - /** An object relationship */ - requested_by: (players | null) - requested_by_steam_id: (Scalars['bigint'] | null) - session_token: Scalars['String'] - skip_reason: (Scalars['String'] | null) - sort_index: Scalars['Int'] - spec: Scalars['jsonb'] - status: Scalars['String'] - status_history: Scalars['jsonb'] - utility_lineup_id: Scalars['uuid'] - utility_practice_session_id: (Scalars['uuid'] | null) - __typename: 'utility_lineup_renders' -} - - -/** aggregated selection of "utility_lineup_renders" */ -export interface utility_lineup_renders_aggregate { - aggregate: (utility_lineup_renders_aggregate_fields | null) - nodes: utility_lineup_renders[] - __typename: 'utility_lineup_renders_aggregate' -} - - -/** aggregate fields of "utility_lineup_renders" */ -export interface utility_lineup_renders_aggregate_fields { - avg: (utility_lineup_renders_avg_fields | null) - count: Scalars['Int'] - max: (utility_lineup_renders_max_fields | null) - min: (utility_lineup_renders_min_fields | null) - stddev: (utility_lineup_renders_stddev_fields | null) - stddev_pop: (utility_lineup_renders_stddev_pop_fields | null) - stddev_samp: (utility_lineup_renders_stddev_samp_fields | null) - sum: (utility_lineup_renders_sum_fields | null) - var_pop: (utility_lineup_renders_var_pop_fields | null) - var_samp: (utility_lineup_renders_var_samp_fields | null) - variance: (utility_lineup_renders_variance_fields | null) - __typename: 'utility_lineup_renders_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface utility_lineup_renders_avg_fields { - duration_ms: (Scalars['Float'] | null) - progress: (Scalars['Float'] | null) - requested_by_steam_id: (Scalars['Float'] | null) - sort_index: (Scalars['Float'] | null) - __typename: 'utility_lineup_renders_avg_fields' -} - - -/** unique or primary key constraints on table "utility_lineup_renders" */ -export type utility_lineup_renders_constraint = 'utility_lineup_renders_one_in_flight_idx' | 'utility_lineup_renders_pkey' - - -/** aggregate max on columns */ -export interface utility_lineup_renders_max_fields { - created_at: (Scalars['timestamptz'] | null) - duration_ms: (Scalars['Int'] | 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) - map_name: (Scalars['String'] | null) - progress: (Scalars['numeric'] | null) - requested_by_steam_id: (Scalars['bigint'] | null) - session_token: (Scalars['String'] | null) - skip_reason: (Scalars['String'] | null) - sort_index: (Scalars['Int'] | null) - status: (Scalars['String'] | null) - utility_lineup_id: (Scalars['uuid'] | null) - utility_practice_session_id: (Scalars['uuid'] | null) - __typename: 'utility_lineup_renders_max_fields' -} - - -/** aggregate min on columns */ -export interface utility_lineup_renders_min_fields { - created_at: (Scalars['timestamptz'] | null) - duration_ms: (Scalars['Int'] | 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) - map_name: (Scalars['String'] | null) - progress: (Scalars['numeric'] | null) - requested_by_steam_id: (Scalars['bigint'] | null) - session_token: (Scalars['String'] | null) - skip_reason: (Scalars['String'] | null) - sort_index: (Scalars['Int'] | null) - status: (Scalars['String'] | null) - utility_lineup_id: (Scalars['uuid'] | null) - utility_practice_session_id: (Scalars['uuid'] | null) - __typename: 'utility_lineup_renders_min_fields' -} - - -/** response of any mutation on the table "utility_lineup_renders" */ -export interface utility_lineup_renders_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: utility_lineup_renders[] - __typename: 'utility_lineup_renders_mutation_response' -} - - -/** select columns of table "utility_lineup_renders" */ -export type utility_lineup_renders_select_column = 'created_at' | 'duration_ms' | 'error_message' | 'game_server_node_id' | 'id' | 'k8s_job_name' | 'last_status_at' | 'map_name' | 'paused' | 'progress' | 'requested_by_steam_id' | 'session_token' | 'skip_reason' | 'sort_index' | 'spec' | 'status' | 'status_history' | 'utility_lineup_id' | 'utility_practice_session_id' - - -/** select "utility_lineup_renders_aggregate_bool_exp_bool_and_arguments_columns" columns of table "utility_lineup_renders" */ -export type utility_lineup_renders_select_column_utility_lineup_renders_aggregate_bool_exp_bool_and_arguments_columns = 'paused' - - -/** select "utility_lineup_renders_aggregate_bool_exp_bool_or_arguments_columns" columns of table "utility_lineup_renders" */ -export type utility_lineup_renders_select_column_utility_lineup_renders_aggregate_bool_exp_bool_or_arguments_columns = 'paused' - - -/** aggregate stddev on columns */ -export interface utility_lineup_renders_stddev_fields { - duration_ms: (Scalars['Float'] | null) - progress: (Scalars['Float'] | null) - requested_by_steam_id: (Scalars['Float'] | null) - sort_index: (Scalars['Float'] | null) - __typename: 'utility_lineup_renders_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface utility_lineup_renders_stddev_pop_fields { - duration_ms: (Scalars['Float'] | null) - progress: (Scalars['Float'] | null) - requested_by_steam_id: (Scalars['Float'] | null) - sort_index: (Scalars['Float'] | null) - __typename: 'utility_lineup_renders_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface utility_lineup_renders_stddev_samp_fields { - duration_ms: (Scalars['Float'] | null) - progress: (Scalars['Float'] | null) - requested_by_steam_id: (Scalars['Float'] | null) - sort_index: (Scalars['Float'] | null) - __typename: 'utility_lineup_renders_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface utility_lineup_renders_sum_fields { - duration_ms: (Scalars['Int'] | null) - progress: (Scalars['numeric'] | null) - requested_by_steam_id: (Scalars['bigint'] | null) - sort_index: (Scalars['Int'] | null) - __typename: 'utility_lineup_renders_sum_fields' -} - - -/** update columns of table "utility_lineup_renders" */ -export type utility_lineup_renders_update_column = 'created_at' | 'duration_ms' | 'error_message' | 'game_server_node_id' | 'id' | 'k8s_job_name' | 'last_status_at' | 'map_name' | 'paused' | 'progress' | 'requested_by_steam_id' | 'session_token' | 'skip_reason' | 'sort_index' | 'spec' | 'status' | 'status_history' | 'utility_lineup_id' | 'utility_practice_session_id' - - -/** aggregate var_pop on columns */ -export interface utility_lineup_renders_var_pop_fields { - duration_ms: (Scalars['Float'] | null) - progress: (Scalars['Float'] | null) - requested_by_steam_id: (Scalars['Float'] | null) - sort_index: (Scalars['Float'] | null) - __typename: 'utility_lineup_renders_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface utility_lineup_renders_var_samp_fields { - duration_ms: (Scalars['Float'] | null) - progress: (Scalars['Float'] | null) - requested_by_steam_id: (Scalars['Float'] | null) - sort_index: (Scalars['Float'] | null) - __typename: 'utility_lineup_renders_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface utility_lineup_renders_variance_fields { - duration_ms: (Scalars['Float'] | null) - progress: (Scalars['Float'] | null) - requested_by_steam_id: (Scalars['Float'] | null) - sort_index: (Scalars['Float'] | null) - __typename: 'utility_lineup_renders_variance_fields' -} - - -/** columns and relationships of "utility_lineup_repairs" */ -export interface utility_lineup_repairs { - created_at: Scalars['timestamptz'] - drift_distance: (Scalars['float8'] | null) - expires_at: Scalars['timestamptz'] - id: Scalars['uuid'] - repaired_at: (Scalars['timestamptz'] | null) - /** An object relationship */ - repaired_utility_lineup: (utility_lineups | null) - repaired_utility_lineup_id: (Scalars['uuid'] | null) - /** An object relationship */ - requested_by: players - requested_by_steam_id: Scalars['bigint'] - status: Scalars['String'] - /** An object relationship */ - utility_drift_scan: (utility_drift_scans | null) - utility_drift_scan_id: (Scalars['uuid'] | null) - /** An object relationship */ - utility_lineup: utility_lineups - utility_lineup_id: Scalars['uuid'] - /** An object relationship */ - utility_practice_session: (utility_practice_sessions | null) - utility_practice_session_id: (Scalars['uuid'] | null) - __typename: 'utility_lineup_repairs' -} - - -/** aggregated selection of "utility_lineup_repairs" */ -export interface utility_lineup_repairs_aggregate { - aggregate: (utility_lineup_repairs_aggregate_fields | null) - nodes: utility_lineup_repairs[] - __typename: 'utility_lineup_repairs_aggregate' -} - - -/** aggregate fields of "utility_lineup_repairs" */ -export interface utility_lineup_repairs_aggregate_fields { - avg: (utility_lineup_repairs_avg_fields | null) - count: Scalars['Int'] - max: (utility_lineup_repairs_max_fields | null) - min: (utility_lineup_repairs_min_fields | null) - stddev: (utility_lineup_repairs_stddev_fields | null) - stddev_pop: (utility_lineup_repairs_stddev_pop_fields | null) - stddev_samp: (utility_lineup_repairs_stddev_samp_fields | null) - sum: (utility_lineup_repairs_sum_fields | null) - var_pop: (utility_lineup_repairs_var_pop_fields | null) - var_samp: (utility_lineup_repairs_var_samp_fields | null) - variance: (utility_lineup_repairs_variance_fields | null) - __typename: 'utility_lineup_repairs_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface utility_lineup_repairs_avg_fields { - drift_distance: (Scalars['Float'] | null) - requested_by_steam_id: (Scalars['Float'] | null) - __typename: 'utility_lineup_repairs_avg_fields' -} - - -/** unique or primary key constraints on table "utility_lineup_repairs" */ -export type utility_lineup_repairs_constraint = 'utility_lineup_repairs_open_idx' | 'utility_lineup_repairs_pkey' - - -/** aggregate max on columns */ -export interface utility_lineup_repairs_max_fields { - created_at: (Scalars['timestamptz'] | null) - drift_distance: (Scalars['float8'] | null) - expires_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - repaired_at: (Scalars['timestamptz'] | null) - repaired_utility_lineup_id: (Scalars['uuid'] | null) - requested_by_steam_id: (Scalars['bigint'] | null) - status: (Scalars['String'] | null) - utility_drift_scan_id: (Scalars['uuid'] | null) - utility_lineup_id: (Scalars['uuid'] | null) - utility_practice_session_id: (Scalars['uuid'] | null) - __typename: 'utility_lineup_repairs_max_fields' -} - - -/** aggregate min on columns */ -export interface utility_lineup_repairs_min_fields { - created_at: (Scalars['timestamptz'] | null) - drift_distance: (Scalars['float8'] | null) - expires_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - repaired_at: (Scalars['timestamptz'] | null) - repaired_utility_lineup_id: (Scalars['uuid'] | null) - requested_by_steam_id: (Scalars['bigint'] | null) - status: (Scalars['String'] | null) - utility_drift_scan_id: (Scalars['uuid'] | null) - utility_lineup_id: (Scalars['uuid'] | null) - utility_practice_session_id: (Scalars['uuid'] | null) - __typename: 'utility_lineup_repairs_min_fields' -} - - -/** response of any mutation on the table "utility_lineup_repairs" */ -export interface utility_lineup_repairs_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: utility_lineup_repairs[] - __typename: 'utility_lineup_repairs_mutation_response' -} - - -/** select columns of table "utility_lineup_repairs" */ -export type utility_lineup_repairs_select_column = 'created_at' | 'drift_distance' | 'expires_at' | 'id' | 'repaired_at' | 'repaired_utility_lineup_id' | 'requested_by_steam_id' | 'status' | 'utility_drift_scan_id' | 'utility_lineup_id' | 'utility_practice_session_id' - - -/** select "utility_lineup_repairs_aggregate_bool_exp_avg_arguments_columns" columns of table "utility_lineup_repairs" */ -export type utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_avg_arguments_columns = 'drift_distance' - - -/** select "utility_lineup_repairs_aggregate_bool_exp_corr_arguments_columns" columns of table "utility_lineup_repairs" */ -export type utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_corr_arguments_columns = 'drift_distance' - - -/** select "utility_lineup_repairs_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "utility_lineup_repairs" */ -export type utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_covar_samp_arguments_columns = 'drift_distance' - - -/** select "utility_lineup_repairs_aggregate_bool_exp_max_arguments_columns" columns of table "utility_lineup_repairs" */ -export type utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_max_arguments_columns = 'drift_distance' - - -/** select "utility_lineup_repairs_aggregate_bool_exp_min_arguments_columns" columns of table "utility_lineup_repairs" */ -export type utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_min_arguments_columns = 'drift_distance' - - -/** select "utility_lineup_repairs_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "utility_lineup_repairs" */ -export type utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_stddev_samp_arguments_columns = 'drift_distance' - - -/** select "utility_lineup_repairs_aggregate_bool_exp_sum_arguments_columns" columns of table "utility_lineup_repairs" */ -export type utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_sum_arguments_columns = 'drift_distance' - - -/** select "utility_lineup_repairs_aggregate_bool_exp_var_samp_arguments_columns" columns of table "utility_lineup_repairs" */ -export type utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_var_samp_arguments_columns = 'drift_distance' - - -/** aggregate stddev on columns */ -export interface utility_lineup_repairs_stddev_fields { - drift_distance: (Scalars['Float'] | null) - requested_by_steam_id: (Scalars['Float'] | null) - __typename: 'utility_lineup_repairs_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface utility_lineup_repairs_stddev_pop_fields { - drift_distance: (Scalars['Float'] | null) - requested_by_steam_id: (Scalars['Float'] | null) - __typename: 'utility_lineup_repairs_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface utility_lineup_repairs_stddev_samp_fields { - drift_distance: (Scalars['Float'] | null) - requested_by_steam_id: (Scalars['Float'] | null) - __typename: 'utility_lineup_repairs_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface utility_lineup_repairs_sum_fields { - drift_distance: (Scalars['float8'] | null) - requested_by_steam_id: (Scalars['bigint'] | null) - __typename: 'utility_lineup_repairs_sum_fields' -} - - -/** update columns of table "utility_lineup_repairs" */ -export type utility_lineup_repairs_update_column = 'created_at' | 'drift_distance' | 'expires_at' | 'id' | 'repaired_at' | 'repaired_utility_lineup_id' | 'requested_by_steam_id' | 'status' | 'utility_drift_scan_id' | 'utility_lineup_id' | 'utility_practice_session_id' - - -/** aggregate var_pop on columns */ -export interface utility_lineup_repairs_var_pop_fields { - drift_distance: (Scalars['Float'] | null) - requested_by_steam_id: (Scalars['Float'] | null) - __typename: 'utility_lineup_repairs_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface utility_lineup_repairs_var_samp_fields { - drift_distance: (Scalars['Float'] | null) - requested_by_steam_id: (Scalars['Float'] | null) - __typename: 'utility_lineup_repairs_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface utility_lineup_repairs_variance_fields { - drift_distance: (Scalars['Float'] | null) - requested_by_steam_id: (Scalars['Float'] | null) - __typename: 'utility_lineup_repairs_variance_fields' -} - - -/** columns and relationships of "utility_lineup_votes" */ -export interface utility_lineup_votes { - created_at: Scalars['timestamptz'] - /** An object relationship */ - player: players - steam_id: Scalars['bigint'] - /** An object relationship */ - utility_lineup: utility_lineups - utility_lineup_id: Scalars['uuid'] - vote: Scalars['smallint'] - __typename: 'utility_lineup_votes' -} - - -/** aggregated selection of "utility_lineup_votes" */ -export interface utility_lineup_votes_aggregate { - aggregate: (utility_lineup_votes_aggregate_fields | null) - nodes: utility_lineup_votes[] - __typename: 'utility_lineup_votes_aggregate' -} - - -/** aggregate fields of "utility_lineup_votes" */ -export interface utility_lineup_votes_aggregate_fields { - avg: (utility_lineup_votes_avg_fields | null) - count: Scalars['Int'] - max: (utility_lineup_votes_max_fields | null) - min: (utility_lineup_votes_min_fields | null) - stddev: (utility_lineup_votes_stddev_fields | null) - stddev_pop: (utility_lineup_votes_stddev_pop_fields | null) - stddev_samp: (utility_lineup_votes_stddev_samp_fields | null) - sum: (utility_lineup_votes_sum_fields | null) - var_pop: (utility_lineup_votes_var_pop_fields | null) - var_samp: (utility_lineup_votes_var_samp_fields | null) - variance: (utility_lineup_votes_variance_fields | null) - __typename: 'utility_lineup_votes_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface utility_lineup_votes_avg_fields { - steam_id: (Scalars['Float'] | null) - vote: (Scalars['Float'] | null) - __typename: 'utility_lineup_votes_avg_fields' -} - - -/** unique or primary key constraints on table "utility_lineup_votes" */ -export type utility_lineup_votes_constraint = 'utility_lineup_votes_pkey' - - -/** aggregate max on columns */ -export interface utility_lineup_votes_max_fields { - created_at: (Scalars['timestamptz'] | null) - steam_id: (Scalars['bigint'] | null) - utility_lineup_id: (Scalars['uuid'] | null) - vote: (Scalars['smallint'] | null) - __typename: 'utility_lineup_votes_max_fields' -} - - -/** aggregate min on columns */ -export interface utility_lineup_votes_min_fields { - created_at: (Scalars['timestamptz'] | null) - steam_id: (Scalars['bigint'] | null) - utility_lineup_id: (Scalars['uuid'] | null) - vote: (Scalars['smallint'] | null) - __typename: 'utility_lineup_votes_min_fields' -} - - -/** response of any mutation on the table "utility_lineup_votes" */ -export interface utility_lineup_votes_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: utility_lineup_votes[] - __typename: 'utility_lineup_votes_mutation_response' -} - - -/** select columns of table "utility_lineup_votes" */ -export type utility_lineup_votes_select_column = 'created_at' | 'steam_id' | 'utility_lineup_id' | 'vote' - - -/** aggregate stddev on columns */ -export interface utility_lineup_votes_stddev_fields { - steam_id: (Scalars['Float'] | null) - vote: (Scalars['Float'] | null) - __typename: 'utility_lineup_votes_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface utility_lineup_votes_stddev_pop_fields { - steam_id: (Scalars['Float'] | null) - vote: (Scalars['Float'] | null) - __typename: 'utility_lineup_votes_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface utility_lineup_votes_stddev_samp_fields { - steam_id: (Scalars['Float'] | null) - vote: (Scalars['Float'] | null) - __typename: 'utility_lineup_votes_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface utility_lineup_votes_sum_fields { - steam_id: (Scalars['bigint'] | null) - vote: (Scalars['smallint'] | null) - __typename: 'utility_lineup_votes_sum_fields' -} - - -/** update columns of table "utility_lineup_votes" */ -export type utility_lineup_votes_update_column = 'created_at' | 'steam_id' | 'utility_lineup_id' | 'vote' - - -/** aggregate var_pop on columns */ -export interface utility_lineup_votes_var_pop_fields { - steam_id: (Scalars['Float'] | null) - vote: (Scalars['Float'] | null) - __typename: 'utility_lineup_votes_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface utility_lineup_votes_var_samp_fields { - steam_id: (Scalars['Float'] | null) - vote: (Scalars['Float'] | null) - __typename: 'utility_lineup_votes_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface utility_lineup_votes_variance_fields { - steam_id: (Scalars['Float'] | null) - vote: (Scalars['Float'] | null) - __typename: 'utility_lineup_votes_variance_fields' -} - - -/** columns and relationships of "utility_lineups" */ -export interface utility_lineups { - aim_tolerance: Scalars['float8'] - archived_at: (Scalars['timestamptz'] | null) - /** An object relationship */ - author: players - author_steam_id: Scalars['bigint'] - /** A computed field, executes function "can_edit_utility_lineup" */ - can_edit: (Scalars['Boolean'] | null) - /** A computed field, executes function "can_view_utility_lineup" */ - can_view: (Scalars['Boolean'] | null) - /** An array relationship */ - collection_items: utility_collection_items[] - /** An aggregate relationship */ - collection_items_aggregate: utility_collection_items_aggregate - confidence: Scalars['String'] - created_at: Scalars['timestamptz'] - description: (Scalars['String'] | null) - /** A computed field, executes function "utility_lineup_difficulty" */ - difficulty: (Scalars['String'] | null) - downvotes: Scalars['Int'] - external_id: (Scalars['String'] | null) - eye_z: (Scalars['float8'] | null) - /** An array relationship */ - favorited_by: utility_lineup_favorites[] - /** An aggregate relationship */ - favorited_by_aggregate: utility_lineup_favorites_aggregate - favorites: Scalars['Int'] - flight_time_ms: (Scalars['Int'] | null) - /** An object relationship */ - forked_from: (utility_lineups | null) - forked_from_utility_lineup_id: (Scalars['uuid'] | null) - id: Scalars['uuid'] - initial_pos_x: (Scalars['float8'] | null) - initial_pos_y: (Scalars['float8'] | null) - initial_pos_z: (Scalars['float8'] | null) - initial_vel_x: (Scalars['float8'] | null) - initial_vel_y: (Scalars['float8'] | null) - initial_vel_z: (Scalars['float8'] | null) - /** A computed field, executes function "utility_lineup_is_favorited" */ - is_favorited: (Scalars['Boolean'] | null) - jump_throw_bind: Scalars['Boolean'] - land_x: Scalars['float8'] - land_y: Scalars['float8'] - land_z: Scalars['float8'] - lineup_bucket: (Scalars['String'] | null) - map_name: Scalars['String'] - /** A computed field, executes function "utility_lineup_my_vote" */ - my_vote: (Scalars['smallint'] | null) - name: Scalars['String'] - origin_source: e_utility_sources_enum - origin_x: Scalars['float8'] - origin_y: Scalars['float8'] - origin_z: Scalars['float8'] - practice_attempts: Scalars['Int'] - practice_players: Scalars['Int'] - practice_successes: Scalars['Int'] - preview_duration_ms: (Scalars['Int'] | null) - preview_file: (Scalars['String'] | null) - preview_rendered_at: (Scalars['timestamptz'] | null) - preview_thumbnail: (Scalars['String'] | null) - /** A computed field, executes function "utility_lineup_preview_thumbnail_url" */ - preview_thumbnail_url: (Scalars['String'] | null) - /** A computed field, executes function "utility_lineup_preview_url" */ - preview_url: (Scalars['String'] | null) - /** An array relationship */ - progress: utility_lineup_progress[] - /** An aggregate relationship */ - progress_aggregate: utility_lineup_progress_aggregate - public_requested_at: (Scalars['timestamptz'] | null) - public_review_note: (Scalars['String'] | null) - public_reviewed_at: (Scalars['timestamptz'] | null) - public_reviewed_by: (Scalars['bigint'] | null) - /** An array relationship */ - renders: utility_lineup_renders[] - /** An aggregate relationship */ - renders_aggregate: utility_lineup_renders_aggregate - /** An array relationship */ - repairs: utility_lineup_repairs[] - /** An aggregate relationship */ - repairs_aggregate: utility_lineup_repairs_aggregate - side: e_sides_enum - source_grenade_id: (Scalars['Int'] | null) - /** An object relationship */ - source_match: (matches | null) - source_match_id: (Scalars['uuid'] | null) - /** An object relationship */ - source_match_map: (match_maps | null) - source_match_map_id: (Scalars['uuid'] | null) - source_url: (Scalars['String'] | null) - tags: Scalars['String'][] - /** An object relationship */ - team: (teams | null) - team_id: (Scalars['uuid'] | null) - technique: e_utility_techniques_enum - throw_strength: (e_utility_throw_strengths_enum | null) - trajectory_file: (Scalars['String'] | null) - trajectory_preview: (Scalars['jsonb'] | null) - trajectory_size: (Scalars['Int'] | null) - updated_at: Scalars['timestamptz'] - upvotes: Scalars['Int'] - utility_type: e_utility_types_enum - verified_at: (Scalars['timestamptz'] | null) - view_pitch: Scalars['float8'] - view_pitch_delta: (Scalars['float8'] | null) - view_yaw: Scalars['float8'] - view_yaw_delta: (Scalars['float8'] | null) - visibility: e_utility_visibility_enum - /** An array relationship */ - votes: utility_lineup_votes[] - /** An aggregate relationship */ - votes_aggregate: utility_lineup_votes_aggregate - workshop_map_id: (Scalars['String'] | null) - __typename: 'utility_lineups' -} - - -/** aggregated selection of "utility_lineups" */ -export interface utility_lineups_aggregate { - aggregate: (utility_lineups_aggregate_fields | null) - nodes: utility_lineups[] - __typename: 'utility_lineups_aggregate' -} - - -/** aggregate fields of "utility_lineups" */ -export interface utility_lineups_aggregate_fields { - avg: (utility_lineups_avg_fields | null) - count: Scalars['Int'] - max: (utility_lineups_max_fields | null) - min: (utility_lineups_min_fields | null) - stddev: (utility_lineups_stddev_fields | null) - stddev_pop: (utility_lineups_stddev_pop_fields | null) - stddev_samp: (utility_lineups_stddev_samp_fields | null) - sum: (utility_lineups_sum_fields | null) - var_pop: (utility_lineups_var_pop_fields | null) - var_samp: (utility_lineups_var_samp_fields | null) - variance: (utility_lineups_variance_fields | null) - __typename: 'utility_lineups_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface utility_lineups_avg_fields { - aim_tolerance: (Scalars['Float'] | null) - author_steam_id: (Scalars['Float'] | null) - downvotes: (Scalars['Float'] | null) - eye_z: (Scalars['Float'] | null) - favorites: (Scalars['Float'] | null) - flight_time_ms: (Scalars['Float'] | null) - initial_pos_x: (Scalars['Float'] | null) - initial_pos_y: (Scalars['Float'] | null) - initial_pos_z: (Scalars['Float'] | null) - initial_vel_x: (Scalars['Float'] | null) - initial_vel_y: (Scalars['Float'] | null) - initial_vel_z: (Scalars['Float'] | null) - land_x: (Scalars['Float'] | null) - land_y: (Scalars['Float'] | null) - land_z: (Scalars['Float'] | null) - /** A computed field, executes function "utility_lineup_my_vote" */ - my_vote: (Scalars['smallint'] | null) - origin_x: (Scalars['Float'] | null) - origin_y: (Scalars['Float'] | null) - origin_z: (Scalars['Float'] | null) - practice_attempts: (Scalars['Float'] | null) - practice_players: (Scalars['Float'] | null) - practice_successes: (Scalars['Float'] | null) - preview_duration_ms: (Scalars['Float'] | null) - public_reviewed_by: (Scalars['Float'] | null) - source_grenade_id: (Scalars['Float'] | null) - trajectory_size: (Scalars['Float'] | null) - upvotes: (Scalars['Float'] | null) - view_pitch: (Scalars['Float'] | null) - view_pitch_delta: (Scalars['Float'] | null) - view_yaw: (Scalars['Float'] | null) - view_yaw_delta: (Scalars['Float'] | null) - __typename: 'utility_lineups_avg_fields' -} - - -/** unique or primary key constraints on table "utility_lineups" */ -export type utility_lineups_constraint = 'utility_lineups_external_idx' | 'utility_lineups_pkey' - - -/** aggregate max on columns */ -export interface utility_lineups_max_fields { - aim_tolerance: (Scalars['float8'] | null) - archived_at: (Scalars['timestamptz'] | null) - author_steam_id: (Scalars['bigint'] | null) - confidence: (Scalars['String'] | null) - created_at: (Scalars['timestamptz'] | null) - description: (Scalars['String'] | null) - /** A computed field, executes function "utility_lineup_difficulty" */ - difficulty: (Scalars['String'] | null) - downvotes: (Scalars['Int'] | null) - external_id: (Scalars['String'] | null) - eye_z: (Scalars['float8'] | null) - favorites: (Scalars['Int'] | null) - flight_time_ms: (Scalars['Int'] | null) - forked_from_utility_lineup_id: (Scalars['uuid'] | null) - id: (Scalars['uuid'] | null) - initial_pos_x: (Scalars['float8'] | null) - initial_pos_y: (Scalars['float8'] | null) - initial_pos_z: (Scalars['float8'] | null) - initial_vel_x: (Scalars['float8'] | null) - initial_vel_y: (Scalars['float8'] | null) - initial_vel_z: (Scalars['float8'] | null) - land_x: (Scalars['float8'] | null) - land_y: (Scalars['float8'] | null) - land_z: (Scalars['float8'] | null) - lineup_bucket: (Scalars['String'] | null) - map_name: (Scalars['String'] | null) - /** A computed field, executes function "utility_lineup_my_vote" */ - my_vote: (Scalars['smallint'] | null) - name: (Scalars['String'] | null) - origin_x: (Scalars['float8'] | null) - origin_y: (Scalars['float8'] | null) - origin_z: (Scalars['float8'] | null) - practice_attempts: (Scalars['Int'] | null) - practice_players: (Scalars['Int'] | null) - practice_successes: (Scalars['Int'] | null) - preview_duration_ms: (Scalars['Int'] | null) - preview_file: (Scalars['String'] | null) - preview_rendered_at: (Scalars['timestamptz'] | null) - preview_thumbnail: (Scalars['String'] | null) - /** A computed field, executes function "utility_lineup_preview_thumbnail_url" */ - preview_thumbnail_url: (Scalars['String'] | null) - /** A computed field, executes function "utility_lineup_preview_url" */ - preview_url: (Scalars['String'] | null) - public_requested_at: (Scalars['timestamptz'] | null) - public_review_note: (Scalars['String'] | null) - public_reviewed_at: (Scalars['timestamptz'] | null) - public_reviewed_by: (Scalars['bigint'] | null) - source_grenade_id: (Scalars['Int'] | null) - source_match_id: (Scalars['uuid'] | null) - source_match_map_id: (Scalars['uuid'] | null) - source_url: (Scalars['String'] | null) - tags: (Scalars['String'][] | null) - team_id: (Scalars['uuid'] | null) - trajectory_file: (Scalars['String'] | null) - trajectory_size: (Scalars['Int'] | null) - updated_at: (Scalars['timestamptz'] | null) - upvotes: (Scalars['Int'] | null) - verified_at: (Scalars['timestamptz'] | null) - view_pitch: (Scalars['float8'] | null) - view_pitch_delta: (Scalars['float8'] | null) - view_yaw: (Scalars['float8'] | null) - view_yaw_delta: (Scalars['float8'] | null) - workshop_map_id: (Scalars['String'] | null) - __typename: 'utility_lineups_max_fields' -} - - -/** aggregate min on columns */ -export interface utility_lineups_min_fields { - aim_tolerance: (Scalars['float8'] | null) - archived_at: (Scalars['timestamptz'] | null) - author_steam_id: (Scalars['bigint'] | null) - confidence: (Scalars['String'] | null) - created_at: (Scalars['timestamptz'] | null) - description: (Scalars['String'] | null) - /** A computed field, executes function "utility_lineup_difficulty" */ - difficulty: (Scalars['String'] | null) - downvotes: (Scalars['Int'] | null) - external_id: (Scalars['String'] | null) - eye_z: (Scalars['float8'] | null) - favorites: (Scalars['Int'] | null) - flight_time_ms: (Scalars['Int'] | null) - forked_from_utility_lineup_id: (Scalars['uuid'] | null) - id: (Scalars['uuid'] | null) - initial_pos_x: (Scalars['float8'] | null) - initial_pos_y: (Scalars['float8'] | null) - initial_pos_z: (Scalars['float8'] | null) - initial_vel_x: (Scalars['float8'] | null) - initial_vel_y: (Scalars['float8'] | null) - initial_vel_z: (Scalars['float8'] | null) - land_x: (Scalars['float8'] | null) - land_y: (Scalars['float8'] | null) - land_z: (Scalars['float8'] | null) - lineup_bucket: (Scalars['String'] | null) - map_name: (Scalars['String'] | null) - /** A computed field, executes function "utility_lineup_my_vote" */ - my_vote: (Scalars['smallint'] | null) - name: (Scalars['String'] | null) - origin_x: (Scalars['float8'] | null) - origin_y: (Scalars['float8'] | null) - origin_z: (Scalars['float8'] | null) - practice_attempts: (Scalars['Int'] | null) - practice_players: (Scalars['Int'] | null) - practice_successes: (Scalars['Int'] | null) - preview_duration_ms: (Scalars['Int'] | null) - preview_file: (Scalars['String'] | null) - preview_rendered_at: (Scalars['timestamptz'] | null) - preview_thumbnail: (Scalars['String'] | null) - /** A computed field, executes function "utility_lineup_preview_thumbnail_url" */ - preview_thumbnail_url: (Scalars['String'] | null) - /** A computed field, executes function "utility_lineup_preview_url" */ - preview_url: (Scalars['String'] | null) - public_requested_at: (Scalars['timestamptz'] | null) - public_review_note: (Scalars['String'] | null) - public_reviewed_at: (Scalars['timestamptz'] | null) - public_reviewed_by: (Scalars['bigint'] | null) - source_grenade_id: (Scalars['Int'] | null) - source_match_id: (Scalars['uuid'] | null) - source_match_map_id: (Scalars['uuid'] | null) - source_url: (Scalars['String'] | null) - tags: (Scalars['String'][] | null) - team_id: (Scalars['uuid'] | null) - trajectory_file: (Scalars['String'] | null) - trajectory_size: (Scalars['Int'] | null) - updated_at: (Scalars['timestamptz'] | null) - upvotes: (Scalars['Int'] | null) - verified_at: (Scalars['timestamptz'] | null) - view_pitch: (Scalars['float8'] | null) - view_pitch_delta: (Scalars['float8'] | null) - view_yaw: (Scalars['float8'] | null) - view_yaw_delta: (Scalars['float8'] | null) - workshop_map_id: (Scalars['String'] | null) - __typename: 'utility_lineups_min_fields' -} - - -/** response of any mutation on the table "utility_lineups" */ -export interface utility_lineups_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: utility_lineups[] - __typename: 'utility_lineups_mutation_response' -} - - -/** select columns of table "utility_lineups" */ -export type utility_lineups_select_column = 'aim_tolerance' | 'archived_at' | 'author_steam_id' | 'confidence' | 'created_at' | 'description' | 'downvotes' | 'external_id' | 'eye_z' | 'favorites' | 'flight_time_ms' | 'forked_from_utility_lineup_id' | 'id' | 'initial_pos_x' | 'initial_pos_y' | 'initial_pos_z' | 'initial_vel_x' | 'initial_vel_y' | 'initial_vel_z' | 'jump_throw_bind' | 'land_x' | 'land_y' | 'land_z' | 'lineup_bucket' | 'map_name' | 'name' | 'origin_source' | 'origin_x' | 'origin_y' | 'origin_z' | 'practice_attempts' | 'practice_players' | 'practice_successes' | 'preview_duration_ms' | 'preview_file' | 'preview_rendered_at' | 'preview_thumbnail' | 'public_requested_at' | 'public_review_note' | 'public_reviewed_at' | 'public_reviewed_by' | 'side' | 'source_grenade_id' | 'source_match_id' | 'source_match_map_id' | 'source_url' | 'tags' | 'team_id' | 'technique' | 'throw_strength' | 'trajectory_file' | 'trajectory_preview' | 'trajectory_size' | 'updated_at' | 'upvotes' | 'utility_type' | 'verified_at' | 'view_pitch' | 'view_pitch_delta' | 'view_yaw' | 'view_yaw_delta' | 'visibility' | 'workshop_map_id' - - -/** select "utility_lineups_aggregate_bool_exp_avg_arguments_columns" columns of table "utility_lineups" */ -export type utility_lineups_select_column_utility_lineups_aggregate_bool_exp_avg_arguments_columns = 'aim_tolerance' | 'eye_z' | 'initial_pos_x' | 'initial_pos_y' | 'initial_pos_z' | 'initial_vel_x' | 'initial_vel_y' | 'initial_vel_z' | 'land_x' | 'land_y' | 'land_z' | 'origin_x' | 'origin_y' | 'origin_z' | 'view_pitch' | 'view_pitch_delta' | 'view_yaw' | 'view_yaw_delta' - - -/** select "utility_lineups_aggregate_bool_exp_bool_and_arguments_columns" columns of table "utility_lineups" */ -export type utility_lineups_select_column_utility_lineups_aggregate_bool_exp_bool_and_arguments_columns = 'jump_throw_bind' - - -/** select "utility_lineups_aggregate_bool_exp_bool_or_arguments_columns" columns of table "utility_lineups" */ -export type utility_lineups_select_column_utility_lineups_aggregate_bool_exp_bool_or_arguments_columns = 'jump_throw_bind' - - -/** select "utility_lineups_aggregate_bool_exp_corr_arguments_columns" columns of table "utility_lineups" */ -export type utility_lineups_select_column_utility_lineups_aggregate_bool_exp_corr_arguments_columns = 'aim_tolerance' | 'eye_z' | 'initial_pos_x' | 'initial_pos_y' | 'initial_pos_z' | 'initial_vel_x' | 'initial_vel_y' | 'initial_vel_z' | 'land_x' | 'land_y' | 'land_z' | 'origin_x' | 'origin_y' | 'origin_z' | 'view_pitch' | 'view_pitch_delta' | 'view_yaw' | 'view_yaw_delta' - - -/** select "utility_lineups_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "utility_lineups" */ -export type utility_lineups_select_column_utility_lineups_aggregate_bool_exp_covar_samp_arguments_columns = 'aim_tolerance' | 'eye_z' | 'initial_pos_x' | 'initial_pos_y' | 'initial_pos_z' | 'initial_vel_x' | 'initial_vel_y' | 'initial_vel_z' | 'land_x' | 'land_y' | 'land_z' | 'origin_x' | 'origin_y' | 'origin_z' | 'view_pitch' | 'view_pitch_delta' | 'view_yaw' | 'view_yaw_delta' - - -/** select "utility_lineups_aggregate_bool_exp_max_arguments_columns" columns of table "utility_lineups" */ -export type utility_lineups_select_column_utility_lineups_aggregate_bool_exp_max_arguments_columns = 'aim_tolerance' | 'eye_z' | 'initial_pos_x' | 'initial_pos_y' | 'initial_pos_z' | 'initial_vel_x' | 'initial_vel_y' | 'initial_vel_z' | 'land_x' | 'land_y' | 'land_z' | 'origin_x' | 'origin_y' | 'origin_z' | 'view_pitch' | 'view_pitch_delta' | 'view_yaw' | 'view_yaw_delta' - - -/** select "utility_lineups_aggregate_bool_exp_min_arguments_columns" columns of table "utility_lineups" */ -export type utility_lineups_select_column_utility_lineups_aggregate_bool_exp_min_arguments_columns = 'aim_tolerance' | 'eye_z' | 'initial_pos_x' | 'initial_pos_y' | 'initial_pos_z' | 'initial_vel_x' | 'initial_vel_y' | 'initial_vel_z' | 'land_x' | 'land_y' | 'land_z' | 'origin_x' | 'origin_y' | 'origin_z' | 'view_pitch' | 'view_pitch_delta' | 'view_yaw' | 'view_yaw_delta' - - -/** select "utility_lineups_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "utility_lineups" */ -export type utility_lineups_select_column_utility_lineups_aggregate_bool_exp_stddev_samp_arguments_columns = 'aim_tolerance' | 'eye_z' | 'initial_pos_x' | 'initial_pos_y' | 'initial_pos_z' | 'initial_vel_x' | 'initial_vel_y' | 'initial_vel_z' | 'land_x' | 'land_y' | 'land_z' | 'origin_x' | 'origin_y' | 'origin_z' | 'view_pitch' | 'view_pitch_delta' | 'view_yaw' | 'view_yaw_delta' - - -/** select "utility_lineups_aggregate_bool_exp_sum_arguments_columns" columns of table "utility_lineups" */ -export type utility_lineups_select_column_utility_lineups_aggregate_bool_exp_sum_arguments_columns = 'aim_tolerance' | 'eye_z' | 'initial_pos_x' | 'initial_pos_y' | 'initial_pos_z' | 'initial_vel_x' | 'initial_vel_y' | 'initial_vel_z' | 'land_x' | 'land_y' | 'land_z' | 'origin_x' | 'origin_y' | 'origin_z' | 'view_pitch' | 'view_pitch_delta' | 'view_yaw' | 'view_yaw_delta' - - -/** select "utility_lineups_aggregate_bool_exp_var_samp_arguments_columns" columns of table "utility_lineups" */ -export type utility_lineups_select_column_utility_lineups_aggregate_bool_exp_var_samp_arguments_columns = 'aim_tolerance' | 'eye_z' | 'initial_pos_x' | 'initial_pos_y' | 'initial_pos_z' | 'initial_vel_x' | 'initial_vel_y' | 'initial_vel_z' | 'land_x' | 'land_y' | 'land_z' | 'origin_x' | 'origin_y' | 'origin_z' | 'view_pitch' | 'view_pitch_delta' | 'view_yaw' | 'view_yaw_delta' - - -/** aggregate stddev on columns */ -export interface utility_lineups_stddev_fields { - aim_tolerance: (Scalars['Float'] | null) - author_steam_id: (Scalars['Float'] | null) - downvotes: (Scalars['Float'] | null) - eye_z: (Scalars['Float'] | null) - favorites: (Scalars['Float'] | null) - flight_time_ms: (Scalars['Float'] | null) - initial_pos_x: (Scalars['Float'] | null) - initial_pos_y: (Scalars['Float'] | null) - initial_pos_z: (Scalars['Float'] | null) - initial_vel_x: (Scalars['Float'] | null) - initial_vel_y: (Scalars['Float'] | null) - initial_vel_z: (Scalars['Float'] | null) - land_x: (Scalars['Float'] | null) - land_y: (Scalars['Float'] | null) - land_z: (Scalars['Float'] | null) - /** A computed field, executes function "utility_lineup_my_vote" */ - my_vote: (Scalars['smallint'] | null) - origin_x: (Scalars['Float'] | null) - origin_y: (Scalars['Float'] | null) - origin_z: (Scalars['Float'] | null) - practice_attempts: (Scalars['Float'] | null) - practice_players: (Scalars['Float'] | null) - practice_successes: (Scalars['Float'] | null) - preview_duration_ms: (Scalars['Float'] | null) - public_reviewed_by: (Scalars['Float'] | null) - source_grenade_id: (Scalars['Float'] | null) - trajectory_size: (Scalars['Float'] | null) - upvotes: (Scalars['Float'] | null) - view_pitch: (Scalars['Float'] | null) - view_pitch_delta: (Scalars['Float'] | null) - view_yaw: (Scalars['Float'] | null) - view_yaw_delta: (Scalars['Float'] | null) - __typename: 'utility_lineups_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface utility_lineups_stddev_pop_fields { - aim_tolerance: (Scalars['Float'] | null) - author_steam_id: (Scalars['Float'] | null) - downvotes: (Scalars['Float'] | null) - eye_z: (Scalars['Float'] | null) - favorites: (Scalars['Float'] | null) - flight_time_ms: (Scalars['Float'] | null) - initial_pos_x: (Scalars['Float'] | null) - initial_pos_y: (Scalars['Float'] | null) - initial_pos_z: (Scalars['Float'] | null) - initial_vel_x: (Scalars['Float'] | null) - initial_vel_y: (Scalars['Float'] | null) - initial_vel_z: (Scalars['Float'] | null) - land_x: (Scalars['Float'] | null) - land_y: (Scalars['Float'] | null) - land_z: (Scalars['Float'] | null) - /** A computed field, executes function "utility_lineup_my_vote" */ - my_vote: (Scalars['smallint'] | null) - origin_x: (Scalars['Float'] | null) - origin_y: (Scalars['Float'] | null) - origin_z: (Scalars['Float'] | null) - practice_attempts: (Scalars['Float'] | null) - practice_players: (Scalars['Float'] | null) - practice_successes: (Scalars['Float'] | null) - preview_duration_ms: (Scalars['Float'] | null) - public_reviewed_by: (Scalars['Float'] | null) - source_grenade_id: (Scalars['Float'] | null) - trajectory_size: (Scalars['Float'] | null) - upvotes: (Scalars['Float'] | null) - view_pitch: (Scalars['Float'] | null) - view_pitch_delta: (Scalars['Float'] | null) - view_yaw: (Scalars['Float'] | null) - view_yaw_delta: (Scalars['Float'] | null) - __typename: 'utility_lineups_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface utility_lineups_stddev_samp_fields { - aim_tolerance: (Scalars['Float'] | null) - author_steam_id: (Scalars['Float'] | null) - downvotes: (Scalars['Float'] | null) - eye_z: (Scalars['Float'] | null) - favorites: (Scalars['Float'] | null) - flight_time_ms: (Scalars['Float'] | null) - initial_pos_x: (Scalars['Float'] | null) - initial_pos_y: (Scalars['Float'] | null) - initial_pos_z: (Scalars['Float'] | null) - initial_vel_x: (Scalars['Float'] | null) - initial_vel_y: (Scalars['Float'] | null) - initial_vel_z: (Scalars['Float'] | null) - land_x: (Scalars['Float'] | null) - land_y: (Scalars['Float'] | null) - land_z: (Scalars['Float'] | null) - /** A computed field, executes function "utility_lineup_my_vote" */ - my_vote: (Scalars['smallint'] | null) - origin_x: (Scalars['Float'] | null) - origin_y: (Scalars['Float'] | null) - origin_z: (Scalars['Float'] | null) - practice_attempts: (Scalars['Float'] | null) - practice_players: (Scalars['Float'] | null) - practice_successes: (Scalars['Float'] | null) - preview_duration_ms: (Scalars['Float'] | null) - public_reviewed_by: (Scalars['Float'] | null) - source_grenade_id: (Scalars['Float'] | null) - trajectory_size: (Scalars['Float'] | null) - upvotes: (Scalars['Float'] | null) - view_pitch: (Scalars['Float'] | null) - view_pitch_delta: (Scalars['Float'] | null) - view_yaw: (Scalars['Float'] | null) - view_yaw_delta: (Scalars['Float'] | null) - __typename: 'utility_lineups_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface utility_lineups_sum_fields { - aim_tolerance: (Scalars['float8'] | null) - author_steam_id: (Scalars['bigint'] | null) - downvotes: (Scalars['Int'] | null) - eye_z: (Scalars['float8'] | null) - favorites: (Scalars['Int'] | null) - flight_time_ms: (Scalars['Int'] | null) - initial_pos_x: (Scalars['float8'] | null) - initial_pos_y: (Scalars['float8'] | null) - initial_pos_z: (Scalars['float8'] | null) - initial_vel_x: (Scalars['float8'] | null) - initial_vel_y: (Scalars['float8'] | null) - initial_vel_z: (Scalars['float8'] | null) - land_x: (Scalars['float8'] | null) - land_y: (Scalars['float8'] | null) - land_z: (Scalars['float8'] | null) - /** A computed field, executes function "utility_lineup_my_vote" */ - my_vote: (Scalars['smallint'] | null) - origin_x: (Scalars['float8'] | null) - origin_y: (Scalars['float8'] | null) - origin_z: (Scalars['float8'] | null) - practice_attempts: (Scalars['Int'] | null) - practice_players: (Scalars['Int'] | null) - practice_successes: (Scalars['Int'] | null) - preview_duration_ms: (Scalars['Int'] | null) - public_reviewed_by: (Scalars['bigint'] | null) - source_grenade_id: (Scalars['Int'] | null) - trajectory_size: (Scalars['Int'] | null) - upvotes: (Scalars['Int'] | null) - view_pitch: (Scalars['float8'] | null) - view_pitch_delta: (Scalars['float8'] | null) - view_yaw: (Scalars['float8'] | null) - view_yaw_delta: (Scalars['float8'] | null) - __typename: 'utility_lineups_sum_fields' -} - - -/** update columns of table "utility_lineups" */ -export type utility_lineups_update_column = 'aim_tolerance' | 'archived_at' | 'author_steam_id' | 'confidence' | 'created_at' | 'description' | 'downvotes' | 'external_id' | 'eye_z' | 'favorites' | 'flight_time_ms' | 'forked_from_utility_lineup_id' | 'id' | 'initial_pos_x' | 'initial_pos_y' | 'initial_pos_z' | 'initial_vel_x' | 'initial_vel_y' | 'initial_vel_z' | 'jump_throw_bind' | 'land_x' | 'land_y' | 'land_z' | 'map_name' | 'name' | 'origin_source' | 'origin_x' | 'origin_y' | 'origin_z' | 'practice_attempts' | 'practice_players' | 'practice_successes' | 'preview_duration_ms' | 'preview_file' | 'preview_rendered_at' | 'preview_thumbnail' | 'public_requested_at' | 'public_review_note' | 'public_reviewed_at' | 'public_reviewed_by' | 'side' | 'source_grenade_id' | 'source_match_id' | 'source_match_map_id' | 'source_url' | 'tags' | 'team_id' | 'technique' | 'throw_strength' | 'trajectory_file' | 'trajectory_preview' | 'trajectory_size' | 'updated_at' | 'upvotes' | 'utility_type' | 'verified_at' | 'view_pitch' | 'view_pitch_delta' | 'view_yaw' | 'view_yaw_delta' | 'visibility' | 'workshop_map_id' - - -/** aggregate var_pop on columns */ -export interface utility_lineups_var_pop_fields { - aim_tolerance: (Scalars['Float'] | null) - author_steam_id: (Scalars['Float'] | null) - downvotes: (Scalars['Float'] | null) - eye_z: (Scalars['Float'] | null) - favorites: (Scalars['Float'] | null) - flight_time_ms: (Scalars['Float'] | null) - initial_pos_x: (Scalars['Float'] | null) - initial_pos_y: (Scalars['Float'] | null) - initial_pos_z: (Scalars['Float'] | null) - initial_vel_x: (Scalars['Float'] | null) - initial_vel_y: (Scalars['Float'] | null) - initial_vel_z: (Scalars['Float'] | null) - land_x: (Scalars['Float'] | null) - land_y: (Scalars['Float'] | null) - land_z: (Scalars['Float'] | null) - /** A computed field, executes function "utility_lineup_my_vote" */ - my_vote: (Scalars['smallint'] | null) - origin_x: (Scalars['Float'] | null) - origin_y: (Scalars['Float'] | null) - origin_z: (Scalars['Float'] | null) - practice_attempts: (Scalars['Float'] | null) - practice_players: (Scalars['Float'] | null) - practice_successes: (Scalars['Float'] | null) - preview_duration_ms: (Scalars['Float'] | null) - public_reviewed_by: (Scalars['Float'] | null) - source_grenade_id: (Scalars['Float'] | null) - trajectory_size: (Scalars['Float'] | null) - upvotes: (Scalars['Float'] | null) - view_pitch: (Scalars['Float'] | null) - view_pitch_delta: (Scalars['Float'] | null) - view_yaw: (Scalars['Float'] | null) - view_yaw_delta: (Scalars['Float'] | null) - __typename: 'utility_lineups_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface utility_lineups_var_samp_fields { - aim_tolerance: (Scalars['Float'] | null) - author_steam_id: (Scalars['Float'] | null) - downvotes: (Scalars['Float'] | null) - eye_z: (Scalars['Float'] | null) - favorites: (Scalars['Float'] | null) - flight_time_ms: (Scalars['Float'] | null) - initial_pos_x: (Scalars['Float'] | null) - initial_pos_y: (Scalars['Float'] | null) - initial_pos_z: (Scalars['Float'] | null) - initial_vel_x: (Scalars['Float'] | null) - initial_vel_y: (Scalars['Float'] | null) - initial_vel_z: (Scalars['Float'] | null) - land_x: (Scalars['Float'] | null) - land_y: (Scalars['Float'] | null) - land_z: (Scalars['Float'] | null) - /** A computed field, executes function "utility_lineup_my_vote" */ - my_vote: (Scalars['smallint'] | null) - origin_x: (Scalars['Float'] | null) - origin_y: (Scalars['Float'] | null) - origin_z: (Scalars['Float'] | null) - practice_attempts: (Scalars['Float'] | null) - practice_players: (Scalars['Float'] | null) - practice_successes: (Scalars['Float'] | null) - preview_duration_ms: (Scalars['Float'] | null) - public_reviewed_by: (Scalars['Float'] | null) - source_grenade_id: (Scalars['Float'] | null) - trajectory_size: (Scalars['Float'] | null) - upvotes: (Scalars['Float'] | null) - view_pitch: (Scalars['Float'] | null) - view_pitch_delta: (Scalars['Float'] | null) - view_yaw: (Scalars['Float'] | null) - view_yaw_delta: (Scalars['Float'] | null) - __typename: 'utility_lineups_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface utility_lineups_variance_fields { - aim_tolerance: (Scalars['Float'] | null) - author_steam_id: (Scalars['Float'] | null) - downvotes: (Scalars['Float'] | null) - eye_z: (Scalars['Float'] | null) - favorites: (Scalars['Float'] | null) - flight_time_ms: (Scalars['Float'] | null) - initial_pos_x: (Scalars['Float'] | null) - initial_pos_y: (Scalars['Float'] | null) - initial_pos_z: (Scalars['Float'] | null) - initial_vel_x: (Scalars['Float'] | null) - initial_vel_y: (Scalars['Float'] | null) - initial_vel_z: (Scalars['Float'] | null) - land_x: (Scalars['Float'] | null) - land_y: (Scalars['Float'] | null) - land_z: (Scalars['Float'] | null) - /** A computed field, executes function "utility_lineup_my_vote" */ - my_vote: (Scalars['smallint'] | null) - origin_x: (Scalars['Float'] | null) - origin_y: (Scalars['Float'] | null) - origin_z: (Scalars['Float'] | null) - practice_attempts: (Scalars['Float'] | null) - practice_players: (Scalars['Float'] | null) - practice_successes: (Scalars['Float'] | null) - preview_duration_ms: (Scalars['Float'] | null) - public_reviewed_by: (Scalars['Float'] | null) - source_grenade_id: (Scalars['Float'] | null) - trajectory_size: (Scalars['Float'] | null) - upvotes: (Scalars['Float'] | null) - view_pitch: (Scalars['Float'] | null) - view_pitch_delta: (Scalars['Float'] | null) - view_yaw: (Scalars['Float'] | null) - view_yaw_delta: (Scalars['Float'] | null) - __typename: 'utility_lineups_variance_fields' -} - - -/** columns and relationships of "utility_meta_lineups" */ -export interface utility_meta_lineups { - first_seen_at: (Scalars['timestamptz'] | null) - land_x: Scalars['float8'] - land_y: Scalars['float8'] - land_z: Scalars['float8'] - last_seen_at: (Scalars['timestamptz'] | null) - lineup_bucket: Scalars['String'] - lineups: Scalars['Int'] - map_name: Scalars['String'] - matches: Scalars['Int'] - origin_x: Scalars['float8'] - origin_y: Scalars['float8'] - origin_z: Scalars['float8'] - refreshed_at: Scalars['timestamptz'] - side: e_sides_enum - technique: e_utility_techniques_enum - throw_strength: (Scalars['String'] | null) - throwers: Scalars['Int'] - throws: Scalars['Int'] - utility_type: e_utility_types_enum - view_pitch: (Scalars['float8'] | null) - view_yaw: (Scalars['float8'] | null) - __typename: 'utility_meta_lineups' -} - - -/** aggregated selection of "utility_meta_lineups" */ -export interface utility_meta_lineups_aggregate { - aggregate: (utility_meta_lineups_aggregate_fields | null) - nodes: utility_meta_lineups[] - __typename: 'utility_meta_lineups_aggregate' -} - - -/** aggregate fields of "utility_meta_lineups" */ -export interface utility_meta_lineups_aggregate_fields { - avg: (utility_meta_lineups_avg_fields | null) - count: Scalars['Int'] - max: (utility_meta_lineups_max_fields | null) - min: (utility_meta_lineups_min_fields | null) - stddev: (utility_meta_lineups_stddev_fields | null) - stddev_pop: (utility_meta_lineups_stddev_pop_fields | null) - stddev_samp: (utility_meta_lineups_stddev_samp_fields | null) - sum: (utility_meta_lineups_sum_fields | null) - var_pop: (utility_meta_lineups_var_pop_fields | null) - var_samp: (utility_meta_lineups_var_samp_fields | null) - variance: (utility_meta_lineups_variance_fields | null) - __typename: 'utility_meta_lineups_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface utility_meta_lineups_avg_fields { - land_x: (Scalars['Float'] | null) - land_y: (Scalars['Float'] | null) - land_z: (Scalars['Float'] | null) - lineups: (Scalars['Float'] | null) - matches: (Scalars['Float'] | null) - origin_x: (Scalars['Float'] | null) - origin_y: (Scalars['Float'] | null) - origin_z: (Scalars['Float'] | null) - throwers: (Scalars['Float'] | null) - throws: (Scalars['Float'] | null) - view_pitch: (Scalars['Float'] | null) - view_yaw: (Scalars['Float'] | null) - __typename: 'utility_meta_lineups_avg_fields' -} - - -/** unique or primary key constraints on table "utility_meta_lineups" */ -export type utility_meta_lineups_constraint = 'utility_meta_lineups_pkey' - - -/** aggregate max on columns */ -export interface utility_meta_lineups_max_fields { - first_seen_at: (Scalars['timestamptz'] | null) - land_x: (Scalars['float8'] | null) - land_y: (Scalars['float8'] | null) - land_z: (Scalars['float8'] | null) - last_seen_at: (Scalars['timestamptz'] | null) - lineup_bucket: (Scalars['String'] | null) - lineups: (Scalars['Int'] | null) - map_name: (Scalars['String'] | null) - matches: (Scalars['Int'] | null) - origin_x: (Scalars['float8'] | null) - origin_y: (Scalars['float8'] | null) - origin_z: (Scalars['float8'] | null) - refreshed_at: (Scalars['timestamptz'] | null) - throw_strength: (Scalars['String'] | null) - throwers: (Scalars['Int'] | null) - throws: (Scalars['Int'] | null) - view_pitch: (Scalars['float8'] | null) - view_yaw: (Scalars['float8'] | null) - __typename: 'utility_meta_lineups_max_fields' -} - - -/** aggregate min on columns */ -export interface utility_meta_lineups_min_fields { - first_seen_at: (Scalars['timestamptz'] | null) - land_x: (Scalars['float8'] | null) - land_y: (Scalars['float8'] | null) - land_z: (Scalars['float8'] | null) - last_seen_at: (Scalars['timestamptz'] | null) - lineup_bucket: (Scalars['String'] | null) - lineups: (Scalars['Int'] | null) - map_name: (Scalars['String'] | null) - matches: (Scalars['Int'] | null) - origin_x: (Scalars['float8'] | null) - origin_y: (Scalars['float8'] | null) - origin_z: (Scalars['float8'] | null) - refreshed_at: (Scalars['timestamptz'] | null) - throw_strength: (Scalars['String'] | null) - throwers: (Scalars['Int'] | null) - throws: (Scalars['Int'] | null) - view_pitch: (Scalars['float8'] | null) - view_yaw: (Scalars['float8'] | null) - __typename: 'utility_meta_lineups_min_fields' -} - - -/** response of any mutation on the table "utility_meta_lineups" */ -export interface utility_meta_lineups_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: utility_meta_lineups[] - __typename: 'utility_meta_lineups_mutation_response' -} - - -/** select columns of table "utility_meta_lineups" */ -export type utility_meta_lineups_select_column = 'first_seen_at' | 'land_x' | 'land_y' | 'land_z' | 'last_seen_at' | 'lineup_bucket' | 'lineups' | 'map_name' | 'matches' | 'origin_x' | 'origin_y' | 'origin_z' | 'refreshed_at' | 'side' | 'technique' | 'throw_strength' | 'throwers' | 'throws' | 'utility_type' | 'view_pitch' | 'view_yaw' - - -/** aggregate stddev on columns */ -export interface utility_meta_lineups_stddev_fields { - land_x: (Scalars['Float'] | null) - land_y: (Scalars['Float'] | null) - land_z: (Scalars['Float'] | null) - lineups: (Scalars['Float'] | null) - matches: (Scalars['Float'] | null) - origin_x: (Scalars['Float'] | null) - origin_y: (Scalars['Float'] | null) - origin_z: (Scalars['Float'] | null) - throwers: (Scalars['Float'] | null) - throws: (Scalars['Float'] | null) - view_pitch: (Scalars['Float'] | null) - view_yaw: (Scalars['Float'] | null) - __typename: 'utility_meta_lineups_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface utility_meta_lineups_stddev_pop_fields { - land_x: (Scalars['Float'] | null) - land_y: (Scalars['Float'] | null) - land_z: (Scalars['Float'] | null) - lineups: (Scalars['Float'] | null) - matches: (Scalars['Float'] | null) - origin_x: (Scalars['Float'] | null) - origin_y: (Scalars['Float'] | null) - origin_z: (Scalars['Float'] | null) - throwers: (Scalars['Float'] | null) - throws: (Scalars['Float'] | null) - view_pitch: (Scalars['Float'] | null) - view_yaw: (Scalars['Float'] | null) - __typename: 'utility_meta_lineups_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface utility_meta_lineups_stddev_samp_fields { - land_x: (Scalars['Float'] | null) - land_y: (Scalars['Float'] | null) - land_z: (Scalars['Float'] | null) - lineups: (Scalars['Float'] | null) - matches: (Scalars['Float'] | null) - origin_x: (Scalars['Float'] | null) - origin_y: (Scalars['Float'] | null) - origin_z: (Scalars['Float'] | null) - throwers: (Scalars['Float'] | null) - throws: (Scalars['Float'] | null) - view_pitch: (Scalars['Float'] | null) - view_yaw: (Scalars['Float'] | null) - __typename: 'utility_meta_lineups_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface utility_meta_lineups_sum_fields { - land_x: (Scalars['float8'] | null) - land_y: (Scalars['float8'] | null) - land_z: (Scalars['float8'] | null) - lineups: (Scalars['Int'] | null) - matches: (Scalars['Int'] | null) - origin_x: (Scalars['float8'] | null) - origin_y: (Scalars['float8'] | null) - origin_z: (Scalars['float8'] | null) - throwers: (Scalars['Int'] | null) - throws: (Scalars['Int'] | null) - view_pitch: (Scalars['float8'] | null) - view_yaw: (Scalars['float8'] | null) - __typename: 'utility_meta_lineups_sum_fields' -} - - -/** update columns of table "utility_meta_lineups" */ -export type utility_meta_lineups_update_column = 'first_seen_at' | 'land_x' | 'land_y' | 'land_z' | 'last_seen_at' | 'lineup_bucket' | 'lineups' | 'map_name' | 'matches' | 'origin_x' | 'origin_y' | 'origin_z' | 'refreshed_at' | 'side' | 'technique' | 'throw_strength' | 'throwers' | 'throws' | 'utility_type' | 'view_pitch' | 'view_yaw' - - -/** aggregate var_pop on columns */ -export interface utility_meta_lineups_var_pop_fields { - land_x: (Scalars['Float'] | null) - land_y: (Scalars['Float'] | null) - land_z: (Scalars['Float'] | null) - lineups: (Scalars['Float'] | null) - matches: (Scalars['Float'] | null) - origin_x: (Scalars['Float'] | null) - origin_y: (Scalars['Float'] | null) - origin_z: (Scalars['Float'] | null) - throwers: (Scalars['Float'] | null) - throws: (Scalars['Float'] | null) - view_pitch: (Scalars['Float'] | null) - view_yaw: (Scalars['Float'] | null) - __typename: 'utility_meta_lineups_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface utility_meta_lineups_var_samp_fields { - land_x: (Scalars['Float'] | null) - land_y: (Scalars['Float'] | null) - land_z: (Scalars['Float'] | null) - lineups: (Scalars['Float'] | null) - matches: (Scalars['Float'] | null) - origin_x: (Scalars['Float'] | null) - origin_y: (Scalars['Float'] | null) - origin_z: (Scalars['Float'] | null) - throwers: (Scalars['Float'] | null) - throws: (Scalars['Float'] | null) - view_pitch: (Scalars['Float'] | null) - view_yaw: (Scalars['Float'] | null) - __typename: 'utility_meta_lineups_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface utility_meta_lineups_variance_fields { - land_x: (Scalars['Float'] | null) - land_y: (Scalars['Float'] | null) - land_z: (Scalars['Float'] | null) - lineups: (Scalars['Float'] | null) - matches: (Scalars['Float'] | null) - origin_x: (Scalars['Float'] | null) - origin_y: (Scalars['Float'] | null) - origin_z: (Scalars['Float'] | null) - throwers: (Scalars['Float'] | null) - throws: (Scalars['Float'] | null) - view_pitch: (Scalars['Float'] | null) - view_yaw: (Scalars['Float'] | null) - __typename: 'utility_meta_lineups_variance_fields' -} - - -/** columns and relationships of "utility_playbook_steps" */ -export interface utility_playbook_steps { - /** An object relationship */ - assigned_player: (players | null) - assigned_steam_id: (Scalars['bigint'] | null) - created_at: Scalars['timestamptz'] - id: Scalars['uuid'] - note: (Scalars['String'] | null) - offset_ms: Scalars['Int'] - /** An object relationship */ - playbook: utility_playbooks - playbook_id: Scalars['uuid'] - step_order: Scalars['Int'] - /** An object relationship */ - utility_lineup: utility_lineups - utility_lineup_id: Scalars['uuid'] - __typename: 'utility_playbook_steps' -} - - -/** aggregated selection of "utility_playbook_steps" */ -export interface utility_playbook_steps_aggregate { - aggregate: (utility_playbook_steps_aggregate_fields | null) - nodes: utility_playbook_steps[] - __typename: 'utility_playbook_steps_aggregate' -} - - -/** aggregate fields of "utility_playbook_steps" */ -export interface utility_playbook_steps_aggregate_fields { - avg: (utility_playbook_steps_avg_fields | null) - count: Scalars['Int'] - max: (utility_playbook_steps_max_fields | null) - min: (utility_playbook_steps_min_fields | null) - stddev: (utility_playbook_steps_stddev_fields | null) - stddev_pop: (utility_playbook_steps_stddev_pop_fields | null) - stddev_samp: (utility_playbook_steps_stddev_samp_fields | null) - sum: (utility_playbook_steps_sum_fields | null) - var_pop: (utility_playbook_steps_var_pop_fields | null) - var_samp: (utility_playbook_steps_var_samp_fields | null) - variance: (utility_playbook_steps_variance_fields | null) - __typename: 'utility_playbook_steps_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface utility_playbook_steps_avg_fields { - assigned_steam_id: (Scalars['Float'] | null) - offset_ms: (Scalars['Float'] | null) - step_order: (Scalars['Float'] | null) - __typename: 'utility_playbook_steps_avg_fields' -} - - -/** unique or primary key constraints on table "utility_playbook_steps" */ -export type utility_playbook_steps_constraint = 'utility_playbook_steps_order_key' | 'utility_playbook_steps_pkey' - - -/** aggregate max on columns */ -export interface utility_playbook_steps_max_fields { - assigned_steam_id: (Scalars['bigint'] | null) - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - note: (Scalars['String'] | null) - offset_ms: (Scalars['Int'] | null) - playbook_id: (Scalars['uuid'] | null) - step_order: (Scalars['Int'] | null) - utility_lineup_id: (Scalars['uuid'] | null) - __typename: 'utility_playbook_steps_max_fields' -} - - -/** aggregate min on columns */ -export interface utility_playbook_steps_min_fields { - assigned_steam_id: (Scalars['bigint'] | null) - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - note: (Scalars['String'] | null) - offset_ms: (Scalars['Int'] | null) - playbook_id: (Scalars['uuid'] | null) - step_order: (Scalars['Int'] | null) - utility_lineup_id: (Scalars['uuid'] | null) - __typename: 'utility_playbook_steps_min_fields' -} - - -/** response of any mutation on the table "utility_playbook_steps" */ -export interface utility_playbook_steps_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: utility_playbook_steps[] - __typename: 'utility_playbook_steps_mutation_response' -} - - -/** select columns of table "utility_playbook_steps" */ -export type utility_playbook_steps_select_column = 'assigned_steam_id' | 'created_at' | 'id' | 'note' | 'offset_ms' | 'playbook_id' | 'step_order' | 'utility_lineup_id' - - -/** aggregate stddev on columns */ -export interface utility_playbook_steps_stddev_fields { - assigned_steam_id: (Scalars['Float'] | null) - offset_ms: (Scalars['Float'] | null) - step_order: (Scalars['Float'] | null) - __typename: 'utility_playbook_steps_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface utility_playbook_steps_stddev_pop_fields { - assigned_steam_id: (Scalars['Float'] | null) - offset_ms: (Scalars['Float'] | null) - step_order: (Scalars['Float'] | null) - __typename: 'utility_playbook_steps_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface utility_playbook_steps_stddev_samp_fields { - assigned_steam_id: (Scalars['Float'] | null) - offset_ms: (Scalars['Float'] | null) - step_order: (Scalars['Float'] | null) - __typename: 'utility_playbook_steps_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface utility_playbook_steps_sum_fields { - assigned_steam_id: (Scalars['bigint'] | null) - offset_ms: (Scalars['Int'] | null) - step_order: (Scalars['Int'] | null) - __typename: 'utility_playbook_steps_sum_fields' -} - - -/** update columns of table "utility_playbook_steps" */ -export type utility_playbook_steps_update_column = 'assigned_steam_id' | 'created_at' | 'id' | 'note' | 'offset_ms' | 'playbook_id' | 'step_order' | 'utility_lineup_id' - - -/** aggregate var_pop on columns */ -export interface utility_playbook_steps_var_pop_fields { - assigned_steam_id: (Scalars['Float'] | null) - offset_ms: (Scalars['Float'] | null) - step_order: (Scalars['Float'] | null) - __typename: 'utility_playbook_steps_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface utility_playbook_steps_var_samp_fields { - assigned_steam_id: (Scalars['Float'] | null) - offset_ms: (Scalars['Float'] | null) - step_order: (Scalars['Float'] | null) - __typename: 'utility_playbook_steps_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface utility_playbook_steps_variance_fields { - assigned_steam_id: (Scalars['Float'] | null) - offset_ms: (Scalars['Float'] | null) - step_order: (Scalars['Float'] | null) - __typename: 'utility_playbook_steps_variance_fields' -} - - -/** columns and relationships of "utility_playbooks" */ -export interface utility_playbooks { - /** A computed field, executes function "can_edit_utility_playbook" */ - can_edit: (Scalars['Boolean'] | null) - /** A computed field, executes function "can_view_utility_playbook" */ - can_view: (Scalars['Boolean'] | null) - created_at: Scalars['timestamptz'] - description: (Scalars['String'] | null) - id: Scalars['uuid'] - map_name: Scalars['String'] - name: Scalars['String'] - /** An object relationship */ - owner: players - owner_steam_id: Scalars['bigint'] - side: e_sides_enum - /** An array relationship */ - steps: utility_playbook_steps[] - /** An aggregate relationship */ - steps_aggregate: utility_playbook_steps_aggregate - /** An object relationship */ - team: (teams | null) - team_id: (Scalars['uuid'] | null) - updated_at: Scalars['timestamptz'] - visibility: e_utility_visibility_enum - __typename: 'utility_playbooks' -} - - -/** aggregated selection of "utility_playbooks" */ -export interface utility_playbooks_aggregate { - aggregate: (utility_playbooks_aggregate_fields | null) - nodes: utility_playbooks[] - __typename: 'utility_playbooks_aggregate' -} - - -/** aggregate fields of "utility_playbooks" */ -export interface utility_playbooks_aggregate_fields { - avg: (utility_playbooks_avg_fields | null) - count: Scalars['Int'] - max: (utility_playbooks_max_fields | null) - min: (utility_playbooks_min_fields | null) - stddev: (utility_playbooks_stddev_fields | null) - stddev_pop: (utility_playbooks_stddev_pop_fields | null) - stddev_samp: (utility_playbooks_stddev_samp_fields | null) - sum: (utility_playbooks_sum_fields | null) - var_pop: (utility_playbooks_var_pop_fields | null) - var_samp: (utility_playbooks_var_samp_fields | null) - variance: (utility_playbooks_variance_fields | null) - __typename: 'utility_playbooks_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface utility_playbooks_avg_fields { - owner_steam_id: (Scalars['Float'] | null) - __typename: 'utility_playbooks_avg_fields' -} - - -/** unique or primary key constraints on table "utility_playbooks" */ -export type utility_playbooks_constraint = 'utility_playbooks_pkey' - - -/** aggregate max on columns */ -export interface utility_playbooks_max_fields { - created_at: (Scalars['timestamptz'] | null) - description: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - map_name: (Scalars['String'] | null) - name: (Scalars['String'] | null) - owner_steam_id: (Scalars['bigint'] | null) - team_id: (Scalars['uuid'] | null) - updated_at: (Scalars['timestamptz'] | null) - __typename: 'utility_playbooks_max_fields' -} - - -/** aggregate min on columns */ -export interface utility_playbooks_min_fields { - created_at: (Scalars['timestamptz'] | null) - description: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - map_name: (Scalars['String'] | null) - name: (Scalars['String'] | null) - owner_steam_id: (Scalars['bigint'] | null) - team_id: (Scalars['uuid'] | null) - updated_at: (Scalars['timestamptz'] | null) - __typename: 'utility_playbooks_min_fields' -} - - -/** response of any mutation on the table "utility_playbooks" */ -export interface utility_playbooks_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: utility_playbooks[] - __typename: 'utility_playbooks_mutation_response' -} - - -/** select columns of table "utility_playbooks" */ -export type utility_playbooks_select_column = 'created_at' | 'description' | 'id' | 'map_name' | 'name' | 'owner_steam_id' | 'side' | 'team_id' | 'updated_at' | 'visibility' - - -/** aggregate stddev on columns */ -export interface utility_playbooks_stddev_fields { - owner_steam_id: (Scalars['Float'] | null) - __typename: 'utility_playbooks_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface utility_playbooks_stddev_pop_fields { - owner_steam_id: (Scalars['Float'] | null) - __typename: 'utility_playbooks_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface utility_playbooks_stddev_samp_fields { - owner_steam_id: (Scalars['Float'] | null) - __typename: 'utility_playbooks_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface utility_playbooks_sum_fields { - owner_steam_id: (Scalars['bigint'] | null) - __typename: 'utility_playbooks_sum_fields' -} - - -/** update columns of table "utility_playbooks" */ -export type utility_playbooks_update_column = 'created_at' | 'description' | 'id' | 'map_name' | 'name' | 'owner_steam_id' | 'side' | 'team_id' | 'updated_at' | 'visibility' - - -/** aggregate var_pop on columns */ -export interface utility_playbooks_var_pop_fields { - owner_steam_id: (Scalars['Float'] | null) - __typename: 'utility_playbooks_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface utility_playbooks_var_samp_fields { - owner_steam_id: (Scalars['Float'] | null) - __typename: 'utility_playbooks_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface utility_playbooks_variance_fields { - owner_steam_id: (Scalars['Float'] | null) - __typename: 'utility_playbooks_variance_fields' -} - - -/** columns and relationships of "utility_practice_invites" */ -export interface utility_practice_invites { - created_at: Scalars['timestamptz'] - /** An object relationship */ - invited_by: (players | null) - invited_by_steam_id: (Scalars['bigint'] | null) - /** An object relationship */ - player: players - /** An object relationship */ - session: utility_practice_sessions - steam_id: Scalars['bigint'] - utility_practice_session_id: Scalars['uuid'] - __typename: 'utility_practice_invites' -} - - -/** aggregated selection of "utility_practice_invites" */ -export interface utility_practice_invites_aggregate { - aggregate: (utility_practice_invites_aggregate_fields | null) - nodes: utility_practice_invites[] - __typename: 'utility_practice_invites_aggregate' -} - - -/** aggregate fields of "utility_practice_invites" */ -export interface utility_practice_invites_aggregate_fields { - avg: (utility_practice_invites_avg_fields | null) - count: Scalars['Int'] - max: (utility_practice_invites_max_fields | null) - min: (utility_practice_invites_min_fields | null) - stddev: (utility_practice_invites_stddev_fields | null) - stddev_pop: (utility_practice_invites_stddev_pop_fields | null) - stddev_samp: (utility_practice_invites_stddev_samp_fields | null) - sum: (utility_practice_invites_sum_fields | null) - var_pop: (utility_practice_invites_var_pop_fields | null) - var_samp: (utility_practice_invites_var_samp_fields | null) - variance: (utility_practice_invites_variance_fields | null) - __typename: 'utility_practice_invites_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface utility_practice_invites_avg_fields { - invited_by_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'utility_practice_invites_avg_fields' -} - - -/** unique or primary key constraints on table "utility_practice_invites" */ -export type utility_practice_invites_constraint = 'utility_practice_invites_pkey' - - -/** aggregate max on columns */ -export interface utility_practice_invites_max_fields { - created_at: (Scalars['timestamptz'] | null) - invited_by_steam_id: (Scalars['bigint'] | null) - steam_id: (Scalars['bigint'] | null) - utility_practice_session_id: (Scalars['uuid'] | null) - __typename: 'utility_practice_invites_max_fields' -} - - -/** aggregate min on columns */ -export interface utility_practice_invites_min_fields { - created_at: (Scalars['timestamptz'] | null) - invited_by_steam_id: (Scalars['bigint'] | null) - steam_id: (Scalars['bigint'] | null) - utility_practice_session_id: (Scalars['uuid'] | null) - __typename: 'utility_practice_invites_min_fields' -} - - -/** response of any mutation on the table "utility_practice_invites" */ -export interface utility_practice_invites_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: utility_practice_invites[] - __typename: 'utility_practice_invites_mutation_response' -} - - -/** select columns of table "utility_practice_invites" */ -export type utility_practice_invites_select_column = 'created_at' | 'invited_by_steam_id' | 'steam_id' | 'utility_practice_session_id' - - -/** aggregate stddev on columns */ -export interface utility_practice_invites_stddev_fields { - invited_by_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'utility_practice_invites_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface utility_practice_invites_stddev_pop_fields { - invited_by_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'utility_practice_invites_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface utility_practice_invites_stddev_samp_fields { - invited_by_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'utility_practice_invites_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface utility_practice_invites_sum_fields { - invited_by_steam_id: (Scalars['bigint'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'utility_practice_invites_sum_fields' -} - - -/** update columns of table "utility_practice_invites" */ -export type utility_practice_invites_update_column = 'created_at' | 'invited_by_steam_id' | 'steam_id' | 'utility_practice_session_id' - - -/** aggregate var_pop on columns */ -export interface utility_practice_invites_var_pop_fields { - invited_by_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'utility_practice_invites_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface utility_practice_invites_var_samp_fields { - invited_by_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'utility_practice_invites_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface utility_practice_invites_variance_fields { - invited_by_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'utility_practice_invites_variance_fields' -} - - -/** columns and relationships of "utility_practice_sessions" */ -export interface utility_practice_sessions { - access: e_utility_practice_access_enum - /** A computed field, executes function "can_manage_utility_practice_session" */ - can_manage: (Scalars['Boolean'] | null) - /** A computed field, executes function "can_view_utility_practice_session" */ - can_view: (Scalars['Boolean'] | null) - /** An object relationship */ - collection: (utility_collections | null) - collection_id: (Scalars['uuid'] | null) - /** A computed field, executes function "utility_practice_connection_link" */ - connection_link: (Scalars['String'] | null) - /** A computed field, executes function "utility_practice_connection_string" */ - connection_string: (Scalars['String'] | null) - created_at: Scalars['timestamptz'] - /** An object relationship */ - e_utility_practice_status: e_utility_practice_statuses - empty_since: (Scalars['timestamptz'] | null) - expires_at: (Scalars['timestamptz'] | null) - failure_reason: (Scalars['String'] | null) - first_joined_at: (Scalars['timestamptz'] | null) - /** An object relationship */ - host: (players | null) - host_steam_id: (Scalars['bigint'] | null) - id: Scalars['uuid'] - invite_code: Scalars['String'] - /** An array relationship */ - invites: utility_practice_invites[] - /** An aggregate relationship */ - invites_aggregate: utility_practice_invites_aggregate - /** A computed field, executes function "is_utility_practice_member" */ - is_member: (Scalars['Boolean'] | null) - is_open: Scalars['Boolean'] - is_render: Scalars['Boolean'] - last_occupied_at: (Scalars['timestamptz'] | null) - map_changing_at: (Scalars['timestamptz'] | null) - map_name: Scalars['String'] - /** An object relationship */ - match: (matches | null) - match_id: (Scalars['uuid'] | null) - notify_when_ready: Scalars['Boolean'] - /** An object relationship */ - playbook: (utility_playbooks | null) - playbook_id: (Scalars['uuid'] | null) - region: (Scalars['String'] | null) - status: e_utility_practice_statuses_enum - /** An object relationship */ - team: (teams | null) - team_id: (Scalars['uuid'] | null) - updated_at: Scalars['timestamptz'] - __typename: 'utility_practice_sessions' -} - - -/** aggregated selection of "utility_practice_sessions" */ -export interface utility_practice_sessions_aggregate { - aggregate: (utility_practice_sessions_aggregate_fields | null) - nodes: utility_practice_sessions[] - __typename: 'utility_practice_sessions_aggregate' -} - - -/** aggregate fields of "utility_practice_sessions" */ -export interface utility_practice_sessions_aggregate_fields { - avg: (utility_practice_sessions_avg_fields | null) - count: Scalars['Int'] - max: (utility_practice_sessions_max_fields | null) - min: (utility_practice_sessions_min_fields | null) - stddev: (utility_practice_sessions_stddev_fields | null) - stddev_pop: (utility_practice_sessions_stddev_pop_fields | null) - stddev_samp: (utility_practice_sessions_stddev_samp_fields | null) - sum: (utility_practice_sessions_sum_fields | null) - var_pop: (utility_practice_sessions_var_pop_fields | null) - var_samp: (utility_practice_sessions_var_samp_fields | null) - variance: (utility_practice_sessions_variance_fields | null) - __typename: 'utility_practice_sessions_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface utility_practice_sessions_avg_fields { - host_steam_id: (Scalars['Float'] | null) - __typename: 'utility_practice_sessions_avg_fields' -} - - -/** unique or primary key constraints on table "utility_practice_sessions" */ -export type utility_practice_sessions_constraint = 'utility_practice_sessions_invite_code_idx' | 'utility_practice_sessions_match_key' | 'utility_practice_sessions_one_live_per_host_idx' | 'utility_practice_sessions_pkey' - - -/** aggregate max on columns */ -export interface utility_practice_sessions_max_fields { - collection_id: (Scalars['uuid'] | null) - /** A computed field, executes function "utility_practice_connection_link" */ - connection_link: (Scalars['String'] | null) - /** A computed field, executes function "utility_practice_connection_string" */ - connection_string: (Scalars['String'] | null) - created_at: (Scalars['timestamptz'] | null) - empty_since: (Scalars['timestamptz'] | null) - expires_at: (Scalars['timestamptz'] | null) - failure_reason: (Scalars['String'] | null) - first_joined_at: (Scalars['timestamptz'] | null) - host_steam_id: (Scalars['bigint'] | null) - id: (Scalars['uuid'] | null) - invite_code: (Scalars['String'] | null) - last_occupied_at: (Scalars['timestamptz'] | null) - map_changing_at: (Scalars['timestamptz'] | null) - map_name: (Scalars['String'] | null) - match_id: (Scalars['uuid'] | null) - playbook_id: (Scalars['uuid'] | null) - region: (Scalars['String'] | null) - team_id: (Scalars['uuid'] | null) - updated_at: (Scalars['timestamptz'] | null) - __typename: 'utility_practice_sessions_max_fields' -} - - -/** aggregate min on columns */ -export interface utility_practice_sessions_min_fields { - collection_id: (Scalars['uuid'] | null) - /** A computed field, executes function "utility_practice_connection_link" */ - connection_link: (Scalars['String'] | null) - /** A computed field, executes function "utility_practice_connection_string" */ - connection_string: (Scalars['String'] | null) - created_at: (Scalars['timestamptz'] | null) - empty_since: (Scalars['timestamptz'] | null) - expires_at: (Scalars['timestamptz'] | null) - failure_reason: (Scalars['String'] | null) - first_joined_at: (Scalars['timestamptz'] | null) - host_steam_id: (Scalars['bigint'] | null) - id: (Scalars['uuid'] | null) - invite_code: (Scalars['String'] | null) - last_occupied_at: (Scalars['timestamptz'] | null) - map_changing_at: (Scalars['timestamptz'] | null) - map_name: (Scalars['String'] | null) - match_id: (Scalars['uuid'] | null) - playbook_id: (Scalars['uuid'] | null) - region: (Scalars['String'] | null) - team_id: (Scalars['uuid'] | null) - updated_at: (Scalars['timestamptz'] | null) - __typename: 'utility_practice_sessions_min_fields' -} - - -/** response of any mutation on the table "utility_practice_sessions" */ -export interface utility_practice_sessions_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: utility_practice_sessions[] - __typename: 'utility_practice_sessions_mutation_response' -} - - -/** select columns of table "utility_practice_sessions" */ -export type utility_practice_sessions_select_column = 'access' | 'collection_id' | 'created_at' | 'empty_since' | 'expires_at' | 'failure_reason' | 'first_joined_at' | 'host_steam_id' | 'id' | 'invite_code' | 'is_open' | 'is_render' | 'last_occupied_at' | 'map_changing_at' | 'map_name' | 'match_id' | 'notify_when_ready' | 'playbook_id' | 'region' | 'status' | 'team_id' | 'updated_at' - - -/** select "utility_practice_sessions_aggregate_bool_exp_bool_and_arguments_columns" columns of table "utility_practice_sessions" */ -export type utility_practice_sessions_select_column_utility_practice_sessions_aggregate_bool_exp_bool_and_arguments_columns = 'is_open' | 'is_render' | 'notify_when_ready' - - -/** select "utility_practice_sessions_aggregate_bool_exp_bool_or_arguments_columns" columns of table "utility_practice_sessions" */ -export type utility_practice_sessions_select_column_utility_practice_sessions_aggregate_bool_exp_bool_or_arguments_columns = 'is_open' | 'is_render' | 'notify_when_ready' - - -/** aggregate stddev on columns */ -export interface utility_practice_sessions_stddev_fields { - host_steam_id: (Scalars['Float'] | null) - __typename: 'utility_practice_sessions_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface utility_practice_sessions_stddev_pop_fields { - host_steam_id: (Scalars['Float'] | null) - __typename: 'utility_practice_sessions_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface utility_practice_sessions_stddev_samp_fields { - host_steam_id: (Scalars['Float'] | null) - __typename: 'utility_practice_sessions_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface utility_practice_sessions_sum_fields { - host_steam_id: (Scalars['bigint'] | null) - __typename: 'utility_practice_sessions_sum_fields' -} - - -/** update columns of table "utility_practice_sessions" */ -export type utility_practice_sessions_update_column = 'access' | 'collection_id' | 'created_at' | 'empty_since' | 'expires_at' | 'failure_reason' | 'first_joined_at' | 'host_steam_id' | 'id' | 'invite_code' | 'is_open' | 'is_render' | 'last_occupied_at' | 'map_changing_at' | 'map_name' | 'match_id' | 'notify_when_ready' | 'playbook_id' | 'region' | 'status' | 'team_id' | 'updated_at' - - -/** aggregate var_pop on columns */ -export interface utility_practice_sessions_var_pop_fields { - host_steam_id: (Scalars['Float'] | null) - __typename: 'utility_practice_sessions_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface utility_practice_sessions_var_samp_fields { - host_steam_id: (Scalars['Float'] | null) - __typename: 'utility_practice_sessions_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface utility_practice_sessions_variance_fields { - host_steam_id: (Scalars['Float'] | null) - __typename: 'utility_practice_sessions_variance_fields' -} - - -/** columns and relationships of "v_event_player_stats" */ -export interface v_event_player_stats { - assists: (Scalars['Int'] | null) - deaths: (Scalars['Int'] | null) - /** An object relationship */ - event: (events | null) - event_id: (Scalars['uuid'] | null) - headshot_percentage: (Scalars['float8'] | null) - headshots: (Scalars['Int'] | null) - kdr: (Scalars['float8'] | null) - kills: (Scalars['Int'] | null) - matches_played: (Scalars['Int'] | null) - /** An object relationship */ - player: (players | null) - player_steam_id: (Scalars['bigint'] | null) - __typename: 'v_event_player_stats' -} - - -/** aggregated selection of "v_event_player_stats" */ -export interface v_event_player_stats_aggregate { - aggregate: (v_event_player_stats_aggregate_fields | null) - nodes: v_event_player_stats[] - __typename: 'v_event_player_stats_aggregate' -} - - -/** aggregate fields of "v_event_player_stats" */ -export interface v_event_player_stats_aggregate_fields { - avg: (v_event_player_stats_avg_fields | null) - count: Scalars['Int'] - max: (v_event_player_stats_max_fields | null) - min: (v_event_player_stats_min_fields | null) - stddev: (v_event_player_stats_stddev_fields | null) - stddev_pop: (v_event_player_stats_stddev_pop_fields | null) - stddev_samp: (v_event_player_stats_stddev_samp_fields | null) - sum: (v_event_player_stats_sum_fields | null) - var_pop: (v_event_player_stats_var_pop_fields | null) - var_samp: (v_event_player_stats_var_samp_fields | null) - variance: (v_event_player_stats_variance_fields | null) - __typename: 'v_event_player_stats_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface v_event_player_stats_avg_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - headshots: (Scalars['Float'] | null) - kdr: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_event_player_stats_avg_fields' -} - - -/** aggregate max on columns */ -export interface v_event_player_stats_max_fields { - assists: (Scalars['Int'] | null) - deaths: (Scalars['Int'] | null) - event_id: (Scalars['uuid'] | null) - headshot_percentage: (Scalars['float8'] | null) - headshots: (Scalars['Int'] | null) - kdr: (Scalars['float8'] | null) - kills: (Scalars['Int'] | null) - matches_played: (Scalars['Int'] | null) - player_steam_id: (Scalars['bigint'] | null) - __typename: 'v_event_player_stats_max_fields' -} - - -/** aggregate min on columns */ -export interface v_event_player_stats_min_fields { - assists: (Scalars['Int'] | null) - deaths: (Scalars['Int'] | null) - event_id: (Scalars['uuid'] | null) - headshot_percentage: (Scalars['float8'] | null) - headshots: (Scalars['Int'] | null) - kdr: (Scalars['float8'] | null) - kills: (Scalars['Int'] | null) - matches_played: (Scalars['Int'] | null) - player_steam_id: (Scalars['bigint'] | null) - __typename: 'v_event_player_stats_min_fields' -} - - -/** select columns of table "v_event_player_stats" */ -export type v_event_player_stats_select_column = 'assists' | 'deaths' | 'event_id' | 'headshot_percentage' | 'headshots' | 'kdr' | 'kills' | 'matches_played' | 'player_steam_id' - - -/** select "v_event_player_stats_aggregate_bool_exp_avg_arguments_columns" columns of table "v_event_player_stats" */ -export type v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_avg_arguments_columns = 'headshot_percentage' | 'kdr' - - -/** select "v_event_player_stats_aggregate_bool_exp_corr_arguments_columns" columns of table "v_event_player_stats" */ -export type v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_corr_arguments_columns = 'headshot_percentage' | 'kdr' - - -/** select "v_event_player_stats_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "v_event_player_stats" */ -export type v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_covar_samp_arguments_columns = 'headshot_percentage' | 'kdr' - - -/** select "v_event_player_stats_aggregate_bool_exp_max_arguments_columns" columns of table "v_event_player_stats" */ -export type v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_max_arguments_columns = 'headshot_percentage' | 'kdr' - - -/** select "v_event_player_stats_aggregate_bool_exp_min_arguments_columns" columns of table "v_event_player_stats" */ -export type v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_min_arguments_columns = 'headshot_percentage' | 'kdr' - - -/** select "v_event_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "v_event_player_stats" */ -export type v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns = 'headshot_percentage' | 'kdr' - - -/** select "v_event_player_stats_aggregate_bool_exp_sum_arguments_columns" columns of table "v_event_player_stats" */ -export type v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_sum_arguments_columns = 'headshot_percentage' | 'kdr' - - -/** select "v_event_player_stats_aggregate_bool_exp_var_samp_arguments_columns" columns of table "v_event_player_stats" */ -export type v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_var_samp_arguments_columns = 'headshot_percentage' | 'kdr' - - -/** aggregate stddev on columns */ -export interface v_event_player_stats_stddev_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - headshots: (Scalars['Float'] | null) - kdr: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_event_player_stats_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface v_event_player_stats_stddev_pop_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - headshots: (Scalars['Float'] | null) - kdr: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_event_player_stats_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface v_event_player_stats_stddev_samp_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - headshots: (Scalars['Float'] | null) - kdr: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_event_player_stats_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface v_event_player_stats_sum_fields { - assists: (Scalars['Int'] | null) - deaths: (Scalars['Int'] | null) - headshot_percentage: (Scalars['float8'] | null) - headshots: (Scalars['Int'] | null) - kdr: (Scalars['float8'] | null) - kills: (Scalars['Int'] | null) - matches_played: (Scalars['Int'] | null) - player_steam_id: (Scalars['bigint'] | null) - __typename: 'v_event_player_stats_sum_fields' -} - - -/** aggregate var_pop on columns */ -export interface v_event_player_stats_var_pop_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - headshots: (Scalars['Float'] | null) - kdr: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_event_player_stats_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface v_event_player_stats_var_samp_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - headshots: (Scalars['Float'] | null) - kdr: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_event_player_stats_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface v_event_player_stats_variance_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - headshots: (Scalars['Float'] | null) - kdr: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_event_player_stats_variance_fields' -} - - -/** columns and relationships of "v_gpu_pool_status" */ -export interface v_gpu_pool_status { - demo_free_gpu_nodes: (Scalars['Int'] | null) - demo_in_progress: (Scalars['Boolean'] | null) - demo_total_gpu_nodes: (Scalars['Int'] | null) - free_gpu_nodes: (Scalars['Int'] | null) - free_gpu_nodes_for_batch: (Scalars['Int'] | null) - highlights_in_progress: (Scalars['Boolean'] | null) - id: (Scalars['Int'] | null) - live_in_progress: (Scalars['Boolean'] | null) - registered_gpu_nodes: (Scalars['Int'] | null) - rendering_total_gpu_nodes: (Scalars['Int'] | null) - renders_paused_for_active_match: (Scalars['Boolean'] | null) - streaming_free_gpu_nodes: (Scalars['Int'] | null) - streaming_total_gpu_nodes: (Scalars['Int'] | null) - total_gpu_nodes: (Scalars['Int'] | null) - __typename: 'v_gpu_pool_status' -} - - -/** aggregated selection of "v_gpu_pool_status" */ -export interface v_gpu_pool_status_aggregate { - aggregate: (v_gpu_pool_status_aggregate_fields | null) - nodes: v_gpu_pool_status[] - __typename: 'v_gpu_pool_status_aggregate' -} - - -/** aggregate fields of "v_gpu_pool_status" */ -export interface v_gpu_pool_status_aggregate_fields { - avg: (v_gpu_pool_status_avg_fields | null) - count: Scalars['Int'] - max: (v_gpu_pool_status_max_fields | null) - min: (v_gpu_pool_status_min_fields | null) - stddev: (v_gpu_pool_status_stddev_fields | null) - stddev_pop: (v_gpu_pool_status_stddev_pop_fields | null) - stddev_samp: (v_gpu_pool_status_stddev_samp_fields | null) - sum: (v_gpu_pool_status_sum_fields | null) - var_pop: (v_gpu_pool_status_var_pop_fields | null) - var_samp: (v_gpu_pool_status_var_samp_fields | null) - variance: (v_gpu_pool_status_variance_fields | null) - __typename: 'v_gpu_pool_status_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface v_gpu_pool_status_avg_fields { - demo_free_gpu_nodes: (Scalars['Float'] | null) - demo_total_gpu_nodes: (Scalars['Float'] | null) - free_gpu_nodes: (Scalars['Float'] | null) - free_gpu_nodes_for_batch: (Scalars['Float'] | null) - id: (Scalars['Float'] | null) - registered_gpu_nodes: (Scalars['Float'] | null) - rendering_total_gpu_nodes: (Scalars['Float'] | null) - streaming_free_gpu_nodes: (Scalars['Float'] | null) - streaming_total_gpu_nodes: (Scalars['Float'] | null) - total_gpu_nodes: (Scalars['Float'] | null) - __typename: 'v_gpu_pool_status_avg_fields' -} - - -/** aggregate max on columns */ -export interface v_gpu_pool_status_max_fields { - demo_free_gpu_nodes: (Scalars['Int'] | null) - demo_total_gpu_nodes: (Scalars['Int'] | null) - free_gpu_nodes: (Scalars['Int'] | null) - free_gpu_nodes_for_batch: (Scalars['Int'] | null) - id: (Scalars['Int'] | null) - registered_gpu_nodes: (Scalars['Int'] | null) - rendering_total_gpu_nodes: (Scalars['Int'] | null) - streaming_free_gpu_nodes: (Scalars['Int'] | null) - streaming_total_gpu_nodes: (Scalars['Int'] | null) - total_gpu_nodes: (Scalars['Int'] | null) - __typename: 'v_gpu_pool_status_max_fields' -} - - -/** aggregate min on columns */ -export interface v_gpu_pool_status_min_fields { - demo_free_gpu_nodes: (Scalars['Int'] | null) - demo_total_gpu_nodes: (Scalars['Int'] | null) - free_gpu_nodes: (Scalars['Int'] | null) - free_gpu_nodes_for_batch: (Scalars['Int'] | null) - id: (Scalars['Int'] | null) - registered_gpu_nodes: (Scalars['Int'] | null) - rendering_total_gpu_nodes: (Scalars['Int'] | null) - streaming_free_gpu_nodes: (Scalars['Int'] | null) - streaming_total_gpu_nodes: (Scalars['Int'] | null) - total_gpu_nodes: (Scalars['Int'] | null) - __typename: 'v_gpu_pool_status_min_fields' -} - - -/** select columns of table "v_gpu_pool_status" */ -export type v_gpu_pool_status_select_column = 'demo_free_gpu_nodes' | 'demo_in_progress' | 'demo_total_gpu_nodes' | 'free_gpu_nodes' | 'free_gpu_nodes_for_batch' | 'highlights_in_progress' | 'id' | 'live_in_progress' | 'registered_gpu_nodes' | 'rendering_total_gpu_nodes' | 'renders_paused_for_active_match' | 'streaming_free_gpu_nodes' | 'streaming_total_gpu_nodes' | 'total_gpu_nodes' - - -/** aggregate stddev on columns */ -export interface v_gpu_pool_status_stddev_fields { - demo_free_gpu_nodes: (Scalars['Float'] | null) - demo_total_gpu_nodes: (Scalars['Float'] | null) - free_gpu_nodes: (Scalars['Float'] | null) - free_gpu_nodes_for_batch: (Scalars['Float'] | null) - id: (Scalars['Float'] | null) - registered_gpu_nodes: (Scalars['Float'] | null) - rendering_total_gpu_nodes: (Scalars['Float'] | null) - streaming_free_gpu_nodes: (Scalars['Float'] | null) - streaming_total_gpu_nodes: (Scalars['Float'] | null) - total_gpu_nodes: (Scalars['Float'] | null) - __typename: 'v_gpu_pool_status_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface v_gpu_pool_status_stddev_pop_fields { - demo_free_gpu_nodes: (Scalars['Float'] | null) - demo_total_gpu_nodes: (Scalars['Float'] | null) - free_gpu_nodes: (Scalars['Float'] | null) - free_gpu_nodes_for_batch: (Scalars['Float'] | null) - id: (Scalars['Float'] | null) - registered_gpu_nodes: (Scalars['Float'] | null) - rendering_total_gpu_nodes: (Scalars['Float'] | null) - streaming_free_gpu_nodes: (Scalars['Float'] | null) - streaming_total_gpu_nodes: (Scalars['Float'] | null) - total_gpu_nodes: (Scalars['Float'] | null) - __typename: 'v_gpu_pool_status_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface v_gpu_pool_status_stddev_samp_fields { - demo_free_gpu_nodes: (Scalars['Float'] | null) - demo_total_gpu_nodes: (Scalars['Float'] | null) - free_gpu_nodes: (Scalars['Float'] | null) - free_gpu_nodes_for_batch: (Scalars['Float'] | null) - id: (Scalars['Float'] | null) - registered_gpu_nodes: (Scalars['Float'] | null) - rendering_total_gpu_nodes: (Scalars['Float'] | null) - streaming_free_gpu_nodes: (Scalars['Float'] | null) - streaming_total_gpu_nodes: (Scalars['Float'] | null) - total_gpu_nodes: (Scalars['Float'] | null) - __typename: 'v_gpu_pool_status_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface v_gpu_pool_status_sum_fields { - demo_free_gpu_nodes: (Scalars['Int'] | null) - demo_total_gpu_nodes: (Scalars['Int'] | null) - free_gpu_nodes: (Scalars['Int'] | null) - free_gpu_nodes_for_batch: (Scalars['Int'] | null) - id: (Scalars['Int'] | null) - registered_gpu_nodes: (Scalars['Int'] | null) - rendering_total_gpu_nodes: (Scalars['Int'] | null) - streaming_free_gpu_nodes: (Scalars['Int'] | null) - streaming_total_gpu_nodes: (Scalars['Int'] | null) - total_gpu_nodes: (Scalars['Int'] | null) - __typename: 'v_gpu_pool_status_sum_fields' -} - - -/** aggregate var_pop on columns */ -export interface v_gpu_pool_status_var_pop_fields { - demo_free_gpu_nodes: (Scalars['Float'] | null) - demo_total_gpu_nodes: (Scalars['Float'] | null) - free_gpu_nodes: (Scalars['Float'] | null) - free_gpu_nodes_for_batch: (Scalars['Float'] | null) - id: (Scalars['Float'] | null) - registered_gpu_nodes: (Scalars['Float'] | null) - rendering_total_gpu_nodes: (Scalars['Float'] | null) - streaming_free_gpu_nodes: (Scalars['Float'] | null) - streaming_total_gpu_nodes: (Scalars['Float'] | null) - total_gpu_nodes: (Scalars['Float'] | null) - __typename: 'v_gpu_pool_status_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface v_gpu_pool_status_var_samp_fields { - demo_free_gpu_nodes: (Scalars['Float'] | null) - demo_total_gpu_nodes: (Scalars['Float'] | null) - free_gpu_nodes: (Scalars['Float'] | null) - free_gpu_nodes_for_batch: (Scalars['Float'] | null) - id: (Scalars['Float'] | null) - registered_gpu_nodes: (Scalars['Float'] | null) - rendering_total_gpu_nodes: (Scalars['Float'] | null) - streaming_free_gpu_nodes: (Scalars['Float'] | null) - streaming_total_gpu_nodes: (Scalars['Float'] | null) - total_gpu_nodes: (Scalars['Float'] | null) - __typename: 'v_gpu_pool_status_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface v_gpu_pool_status_variance_fields { - demo_free_gpu_nodes: (Scalars['Float'] | null) - demo_total_gpu_nodes: (Scalars['Float'] | null) - free_gpu_nodes: (Scalars['Float'] | null) - free_gpu_nodes_for_batch: (Scalars['Float'] | null) - id: (Scalars['Float'] | null) - registered_gpu_nodes: (Scalars['Float'] | null) - rendering_total_gpu_nodes: (Scalars['Float'] | null) - streaming_free_gpu_nodes: (Scalars['Float'] | null) - streaming_total_gpu_nodes: (Scalars['Float'] | null) - total_gpu_nodes: (Scalars['Float'] | null) - __typename: 'v_gpu_pool_status_variance_fields' -} - - -/** columns and relationships of "v_league_division_standings" */ -export interface v_league_division_standings { - head_to_head_match_wins: (Scalars['Int'] | null) - head_to_head_rounds_won: (Scalars['Int'] | null) - league_division_id: (Scalars['uuid'] | null) - league_season_division_id: (Scalars['uuid'] | null) - league_season_id: (Scalars['uuid'] | null) - /** An object relationship */ - league_team: (league_teams | null) - league_team_id: (Scalars['uuid'] | null) - league_team_season_id: (Scalars['uuid'] | null) - losses: (Scalars['Int'] | null) - maps_lost: (Scalars['Int'] | null) - maps_won: (Scalars['Int'] | null) - matches_played: (Scalars['Int'] | null) - matches_remaining: (Scalars['Int'] | null) - rank: (Scalars['Int'] | null) - round_diff: (Scalars['Int'] | null) - rounds_lost: (Scalars['Int'] | null) - rounds_won: (Scalars['Int'] | null) - /** An object relationship */ - season_division: (league_season_divisions | null) - /** An object relationship */ - team_season: (league_team_seasons | null) - tournament_team_id: (Scalars['uuid'] | null) - wins: (Scalars['Int'] | null) - __typename: 'v_league_division_standings' -} - - -/** aggregated selection of "v_league_division_standings" */ -export interface v_league_division_standings_aggregate { - aggregate: (v_league_division_standings_aggregate_fields | null) - nodes: v_league_division_standings[] - __typename: 'v_league_division_standings_aggregate' -} - - -/** aggregate fields of "v_league_division_standings" */ -export interface v_league_division_standings_aggregate_fields { - avg: (v_league_division_standings_avg_fields | null) - count: Scalars['Int'] - max: (v_league_division_standings_max_fields | null) - min: (v_league_division_standings_min_fields | null) - stddev: (v_league_division_standings_stddev_fields | null) - stddev_pop: (v_league_division_standings_stddev_pop_fields | null) - stddev_samp: (v_league_division_standings_stddev_samp_fields | null) - sum: (v_league_division_standings_sum_fields | null) - var_pop: (v_league_division_standings_var_pop_fields | null) - var_samp: (v_league_division_standings_var_samp_fields | null) - variance: (v_league_division_standings_variance_fields | null) - __typename: 'v_league_division_standings_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface v_league_division_standings_avg_fields { - head_to_head_match_wins: (Scalars['Float'] | null) - head_to_head_rounds_won: (Scalars['Float'] | null) - losses: (Scalars['Float'] | null) - maps_lost: (Scalars['Float'] | null) - maps_won: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - matches_remaining: (Scalars['Float'] | null) - rank: (Scalars['Float'] | null) - round_diff: (Scalars['Float'] | null) - rounds_lost: (Scalars['Float'] | null) - rounds_won: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_league_division_standings_avg_fields' -} - - -/** aggregate max on columns */ -export interface v_league_division_standings_max_fields { - head_to_head_match_wins: (Scalars['Int'] | null) - head_to_head_rounds_won: (Scalars['Int'] | null) - league_division_id: (Scalars['uuid'] | null) - league_season_division_id: (Scalars['uuid'] | null) - league_season_id: (Scalars['uuid'] | null) - league_team_id: (Scalars['uuid'] | null) - league_team_season_id: (Scalars['uuid'] | null) - losses: (Scalars['Int'] | null) - maps_lost: (Scalars['Int'] | null) - maps_won: (Scalars['Int'] | null) - matches_played: (Scalars['Int'] | null) - matches_remaining: (Scalars['Int'] | null) - rank: (Scalars['Int'] | null) - round_diff: (Scalars['Int'] | null) - rounds_lost: (Scalars['Int'] | null) - rounds_won: (Scalars['Int'] | null) - tournament_team_id: (Scalars['uuid'] | null) - wins: (Scalars['Int'] | null) - __typename: 'v_league_division_standings_max_fields' -} - - -/** aggregate min on columns */ -export interface v_league_division_standings_min_fields { - head_to_head_match_wins: (Scalars['Int'] | null) - head_to_head_rounds_won: (Scalars['Int'] | null) - league_division_id: (Scalars['uuid'] | null) - league_season_division_id: (Scalars['uuid'] | null) - league_season_id: (Scalars['uuid'] | null) - league_team_id: (Scalars['uuid'] | null) - league_team_season_id: (Scalars['uuid'] | null) - losses: (Scalars['Int'] | null) - maps_lost: (Scalars['Int'] | null) - maps_won: (Scalars['Int'] | null) - matches_played: (Scalars['Int'] | null) - matches_remaining: (Scalars['Int'] | null) - rank: (Scalars['Int'] | null) - round_diff: (Scalars['Int'] | null) - rounds_lost: (Scalars['Int'] | null) - rounds_won: (Scalars['Int'] | null) - tournament_team_id: (Scalars['uuid'] | null) - wins: (Scalars['Int'] | null) - __typename: 'v_league_division_standings_min_fields' -} - - -/** select columns of table "v_league_division_standings" */ -export type v_league_division_standings_select_column = 'head_to_head_match_wins' | 'head_to_head_rounds_won' | 'league_division_id' | 'league_season_division_id' | 'league_season_id' | 'league_team_id' | 'league_team_season_id' | 'losses' | 'maps_lost' | 'maps_won' | 'matches_played' | 'matches_remaining' | 'rank' | 'round_diff' | 'rounds_lost' | 'rounds_won' | 'tournament_team_id' | 'wins' - - -/** aggregate stddev on columns */ -export interface v_league_division_standings_stddev_fields { - head_to_head_match_wins: (Scalars['Float'] | null) - head_to_head_rounds_won: (Scalars['Float'] | null) - losses: (Scalars['Float'] | null) - maps_lost: (Scalars['Float'] | null) - maps_won: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - matches_remaining: (Scalars['Float'] | null) - rank: (Scalars['Float'] | null) - round_diff: (Scalars['Float'] | null) - rounds_lost: (Scalars['Float'] | null) - rounds_won: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_league_division_standings_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface v_league_division_standings_stddev_pop_fields { - head_to_head_match_wins: (Scalars['Float'] | null) - head_to_head_rounds_won: (Scalars['Float'] | null) - losses: (Scalars['Float'] | null) - maps_lost: (Scalars['Float'] | null) - maps_won: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - matches_remaining: (Scalars['Float'] | null) - rank: (Scalars['Float'] | null) - round_diff: (Scalars['Float'] | null) - rounds_lost: (Scalars['Float'] | null) - rounds_won: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_league_division_standings_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface v_league_division_standings_stddev_samp_fields { - head_to_head_match_wins: (Scalars['Float'] | null) - head_to_head_rounds_won: (Scalars['Float'] | null) - losses: (Scalars['Float'] | null) - maps_lost: (Scalars['Float'] | null) - maps_won: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - matches_remaining: (Scalars['Float'] | null) - rank: (Scalars['Float'] | null) - round_diff: (Scalars['Float'] | null) - rounds_lost: (Scalars['Float'] | null) - rounds_won: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_league_division_standings_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface v_league_division_standings_sum_fields { - head_to_head_match_wins: (Scalars['Int'] | null) - head_to_head_rounds_won: (Scalars['Int'] | null) - losses: (Scalars['Int'] | null) - maps_lost: (Scalars['Int'] | null) - maps_won: (Scalars['Int'] | null) - matches_played: (Scalars['Int'] | null) - matches_remaining: (Scalars['Int'] | null) - rank: (Scalars['Int'] | null) - round_diff: (Scalars['Int'] | null) - rounds_lost: (Scalars['Int'] | null) - rounds_won: (Scalars['Int'] | null) - wins: (Scalars['Int'] | null) - __typename: 'v_league_division_standings_sum_fields' -} - - -/** aggregate var_pop on columns */ -export interface v_league_division_standings_var_pop_fields { - head_to_head_match_wins: (Scalars['Float'] | null) - head_to_head_rounds_won: (Scalars['Float'] | null) - losses: (Scalars['Float'] | null) - maps_lost: (Scalars['Float'] | null) - maps_won: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - matches_remaining: (Scalars['Float'] | null) - rank: (Scalars['Float'] | null) - round_diff: (Scalars['Float'] | null) - rounds_lost: (Scalars['Float'] | null) - rounds_won: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_league_division_standings_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface v_league_division_standings_var_samp_fields { - head_to_head_match_wins: (Scalars['Float'] | null) - head_to_head_rounds_won: (Scalars['Float'] | null) - losses: (Scalars['Float'] | null) - maps_lost: (Scalars['Float'] | null) - maps_won: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - matches_remaining: (Scalars['Float'] | null) - rank: (Scalars['Float'] | null) - round_diff: (Scalars['Float'] | null) - rounds_lost: (Scalars['Float'] | null) - rounds_won: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_league_division_standings_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface v_league_division_standings_variance_fields { - head_to_head_match_wins: (Scalars['Float'] | null) - head_to_head_rounds_won: (Scalars['Float'] | null) - losses: (Scalars['Float'] | null) - maps_lost: (Scalars['Float'] | null) - maps_won: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - matches_remaining: (Scalars['Float'] | null) - rank: (Scalars['Float'] | null) - round_diff: (Scalars['Float'] | null) - rounds_lost: (Scalars['Float'] | null) - rounds_won: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_league_division_standings_variance_fields' -} - - -/** columns and relationships of "v_league_season_player_stats" */ -export interface v_league_season_player_stats { - assists: (Scalars['Int'] | null) - deaths: (Scalars['Int'] | null) - headshot_percentage: (Scalars['float8'] | null) - headshots: (Scalars['Int'] | null) - kdr: (Scalars['float8'] | null) - kills: (Scalars['Int'] | null) - league_division_id: (Scalars['uuid'] | null) - league_season_division_id: (Scalars['uuid'] | null) - league_season_id: (Scalars['uuid'] | null) - /** An object relationship */ - league_team: (league_teams | null) - league_team_id: (Scalars['uuid'] | null) - league_team_season_id: (Scalars['uuid'] | null) - matches_played: (Scalars['Int'] | null) - /** An object relationship */ - player: (players | null) - player_steam_id: (Scalars['bigint'] | null) - __typename: 'v_league_season_player_stats' -} - - -/** aggregated selection of "v_league_season_player_stats" */ -export interface v_league_season_player_stats_aggregate { - aggregate: (v_league_season_player_stats_aggregate_fields | null) - nodes: v_league_season_player_stats[] - __typename: 'v_league_season_player_stats_aggregate' -} - - -/** aggregate fields of "v_league_season_player_stats" */ -export interface v_league_season_player_stats_aggregate_fields { - avg: (v_league_season_player_stats_avg_fields | null) - count: Scalars['Int'] - max: (v_league_season_player_stats_max_fields | null) - min: (v_league_season_player_stats_min_fields | null) - stddev: (v_league_season_player_stats_stddev_fields | null) - stddev_pop: (v_league_season_player_stats_stddev_pop_fields | null) - stddev_samp: (v_league_season_player_stats_stddev_samp_fields | null) - sum: (v_league_season_player_stats_sum_fields | null) - var_pop: (v_league_season_player_stats_var_pop_fields | null) - var_samp: (v_league_season_player_stats_var_samp_fields | null) - variance: (v_league_season_player_stats_variance_fields | null) - __typename: 'v_league_season_player_stats_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface v_league_season_player_stats_avg_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - headshots: (Scalars['Float'] | null) - kdr: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_league_season_player_stats_avg_fields' -} - - -/** aggregate max on columns */ -export interface v_league_season_player_stats_max_fields { - assists: (Scalars['Int'] | null) - deaths: (Scalars['Int'] | null) - headshot_percentage: (Scalars['float8'] | null) - headshots: (Scalars['Int'] | null) - kdr: (Scalars['float8'] | null) - kills: (Scalars['Int'] | null) - league_division_id: (Scalars['uuid'] | null) - league_season_division_id: (Scalars['uuid'] | null) - league_season_id: (Scalars['uuid'] | null) - league_team_id: (Scalars['uuid'] | null) - league_team_season_id: (Scalars['uuid'] | null) - matches_played: (Scalars['Int'] | null) - player_steam_id: (Scalars['bigint'] | null) - __typename: 'v_league_season_player_stats_max_fields' -} - - -/** aggregate min on columns */ -export interface v_league_season_player_stats_min_fields { - assists: (Scalars['Int'] | null) - deaths: (Scalars['Int'] | null) - headshot_percentage: (Scalars['float8'] | null) - headshots: (Scalars['Int'] | null) - kdr: (Scalars['float8'] | null) - kills: (Scalars['Int'] | null) - league_division_id: (Scalars['uuid'] | null) - league_season_division_id: (Scalars['uuid'] | null) - league_season_id: (Scalars['uuid'] | null) - league_team_id: (Scalars['uuid'] | null) - league_team_season_id: (Scalars['uuid'] | null) - matches_played: (Scalars['Int'] | null) - player_steam_id: (Scalars['bigint'] | null) - __typename: 'v_league_season_player_stats_min_fields' -} - - -/** select columns of table "v_league_season_player_stats" */ -export type v_league_season_player_stats_select_column = 'assists' | 'deaths' | 'headshot_percentage' | 'headshots' | 'kdr' | 'kills' | 'league_division_id' | 'league_season_division_id' | 'league_season_id' | 'league_team_id' | 'league_team_season_id' | 'matches_played' | 'player_steam_id' - - -/** select "v_league_season_player_stats_aggregate_bool_exp_avg_arguments_columns" columns of table "v_league_season_player_stats" */ -export type v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_avg_arguments_columns = 'headshot_percentage' | 'kdr' - - -/** select "v_league_season_player_stats_aggregate_bool_exp_corr_arguments_columns" columns of table "v_league_season_player_stats" */ -export type v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_corr_arguments_columns = 'headshot_percentage' | 'kdr' - - -/** select "v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "v_league_season_player_stats" */ -export type v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments_columns = 'headshot_percentage' | 'kdr' - - -/** select "v_league_season_player_stats_aggregate_bool_exp_max_arguments_columns" columns of table "v_league_season_player_stats" */ -export type v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_max_arguments_columns = 'headshot_percentage' | 'kdr' - - -/** select "v_league_season_player_stats_aggregate_bool_exp_min_arguments_columns" columns of table "v_league_season_player_stats" */ -export type v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_min_arguments_columns = 'headshot_percentage' | 'kdr' - - -/** select "v_league_season_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "v_league_season_player_stats" */ -export type v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns = 'headshot_percentage' | 'kdr' - - -/** select "v_league_season_player_stats_aggregate_bool_exp_sum_arguments_columns" columns of table "v_league_season_player_stats" */ -export type v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_sum_arguments_columns = 'headshot_percentage' | 'kdr' - - -/** select "v_league_season_player_stats_aggregate_bool_exp_var_samp_arguments_columns" columns of table "v_league_season_player_stats" */ -export type v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_var_samp_arguments_columns = 'headshot_percentage' | 'kdr' - - -/** aggregate stddev on columns */ -export interface v_league_season_player_stats_stddev_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - headshots: (Scalars['Float'] | null) - kdr: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_league_season_player_stats_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface v_league_season_player_stats_stddev_pop_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - headshots: (Scalars['Float'] | null) - kdr: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_league_season_player_stats_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface v_league_season_player_stats_stddev_samp_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - headshots: (Scalars['Float'] | null) - kdr: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_league_season_player_stats_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface v_league_season_player_stats_sum_fields { - assists: (Scalars['Int'] | null) - deaths: (Scalars['Int'] | null) - headshot_percentage: (Scalars['float8'] | null) - headshots: (Scalars['Int'] | null) - kdr: (Scalars['float8'] | null) - kills: (Scalars['Int'] | null) - matches_played: (Scalars['Int'] | null) - player_steam_id: (Scalars['bigint'] | null) - __typename: 'v_league_season_player_stats_sum_fields' -} - - -/** aggregate var_pop on columns */ -export interface v_league_season_player_stats_var_pop_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - headshots: (Scalars['Float'] | null) - kdr: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_league_season_player_stats_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface v_league_season_player_stats_var_samp_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - headshots: (Scalars['Float'] | null) - kdr: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_league_season_player_stats_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface v_league_season_player_stats_variance_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - headshots: (Scalars['Float'] | null) - kdr: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_league_season_player_stats_variance_fields' -} - - -/** columns and relationships of "v_match_captains" */ -export interface v_match_captains { - captain: (Scalars['Boolean'] | null) - discord_id: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - /** An object relationship */ - lineup: (match_lineups | null) - match_lineup_id: (Scalars['uuid'] | null) - placeholder_name: (Scalars['String'] | null) - /** An object relationship */ - player: (players | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'v_match_captains' -} - - -/** aggregated selection of "v_match_captains" */ -export interface v_match_captains_aggregate { - aggregate: (v_match_captains_aggregate_fields | null) - nodes: v_match_captains[] - __typename: 'v_match_captains_aggregate' -} - - -/** aggregate fields of "v_match_captains" */ -export interface v_match_captains_aggregate_fields { - avg: (v_match_captains_avg_fields | null) - count: Scalars['Int'] - max: (v_match_captains_max_fields | null) - min: (v_match_captains_min_fields | null) - stddev: (v_match_captains_stddev_fields | null) - stddev_pop: (v_match_captains_stddev_pop_fields | null) - stddev_samp: (v_match_captains_stddev_samp_fields | null) - sum: (v_match_captains_sum_fields | null) - var_pop: (v_match_captains_var_pop_fields | null) - var_samp: (v_match_captains_var_samp_fields | null) - variance: (v_match_captains_variance_fields | null) - __typename: 'v_match_captains_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface v_match_captains_avg_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'v_match_captains_avg_fields' -} - - -/** aggregate max on columns */ -export interface v_match_captains_max_fields { - discord_id: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - match_lineup_id: (Scalars['uuid'] | null) - placeholder_name: (Scalars['String'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'v_match_captains_max_fields' -} - - -/** aggregate min on columns */ -export interface v_match_captains_min_fields { - discord_id: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - match_lineup_id: (Scalars['uuid'] | null) - placeholder_name: (Scalars['String'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'v_match_captains_min_fields' -} - - -/** response of any mutation on the table "v_match_captains" */ -export interface v_match_captains_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: v_match_captains[] - __typename: 'v_match_captains_mutation_response' -} - - -/** select columns of table "v_match_captains" */ -export type v_match_captains_select_column = 'captain' | 'discord_id' | 'id' | 'match_lineup_id' | 'placeholder_name' | 'steam_id' - - -/** aggregate stddev on columns */ -export interface v_match_captains_stddev_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'v_match_captains_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface v_match_captains_stddev_pop_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'v_match_captains_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface v_match_captains_stddev_samp_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'v_match_captains_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface v_match_captains_sum_fields { - steam_id: (Scalars['bigint'] | null) - __typename: 'v_match_captains_sum_fields' -} - - -/** aggregate var_pop on columns */ -export interface v_match_captains_var_pop_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'v_match_captains_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface v_match_captains_var_samp_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'v_match_captains_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface v_match_captains_variance_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'v_match_captains_variance_fields' -} - - -/** columns and relationships of "v_match_clutches" */ -export interface v_match_clutches { - against_count: (Scalars['Int'] | null) - /** An object relationship */ - clutcher: (players | null) - clutcher_steam_id: (Scalars['bigint'] | null) - kills_in_clutch: (Scalars['Int'] | null) - /** An object relationship */ - match: (matches | null) - match_id: (Scalars['uuid'] | null) - /** An object relationship */ - match_lineup: (match_lineups | null) - match_lineup_id: (Scalars['uuid'] | null) - /** An object relationship */ - match_map: (match_maps | null) - match_map_id: (Scalars['uuid'] | null) - outcome: (Scalars['String'] | null) - round: (Scalars['Int'] | null) - side: (Scalars['String'] | null) - __typename: 'v_match_clutches' -} - - -/** aggregated selection of "v_match_clutches" */ -export interface v_match_clutches_aggregate { - aggregate: (v_match_clutches_aggregate_fields | null) - nodes: v_match_clutches[] - __typename: 'v_match_clutches_aggregate' -} - - -/** aggregate fields of "v_match_clutches" */ -export interface v_match_clutches_aggregate_fields { - avg: (v_match_clutches_avg_fields | null) - count: Scalars['Int'] - max: (v_match_clutches_max_fields | null) - min: (v_match_clutches_min_fields | null) - stddev: (v_match_clutches_stddev_fields | null) - stddev_pop: (v_match_clutches_stddev_pop_fields | null) - stddev_samp: (v_match_clutches_stddev_samp_fields | null) - sum: (v_match_clutches_sum_fields | null) - var_pop: (v_match_clutches_var_pop_fields | null) - var_samp: (v_match_clutches_var_samp_fields | null) - variance: (v_match_clutches_variance_fields | null) - __typename: 'v_match_clutches_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface v_match_clutches_avg_fields { - against_count: (Scalars['Float'] | null) - clutcher_steam_id: (Scalars['Float'] | null) - kills_in_clutch: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'v_match_clutches_avg_fields' -} - - -/** aggregate max on columns */ -export interface v_match_clutches_max_fields { - against_count: (Scalars['Int'] | null) - clutcher_steam_id: (Scalars['bigint'] | null) - kills_in_clutch: (Scalars['Int'] | null) - match_id: (Scalars['uuid'] | null) - match_lineup_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - outcome: (Scalars['String'] | null) - round: (Scalars['Int'] | null) - side: (Scalars['String'] | null) - __typename: 'v_match_clutches_max_fields' -} - - -/** aggregate min on columns */ -export interface v_match_clutches_min_fields { - against_count: (Scalars['Int'] | null) - clutcher_steam_id: (Scalars['bigint'] | null) - kills_in_clutch: (Scalars['Int'] | null) - match_id: (Scalars['uuid'] | null) - match_lineup_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - outcome: (Scalars['String'] | null) - round: (Scalars['Int'] | null) - side: (Scalars['String'] | null) - __typename: 'v_match_clutches_min_fields' -} - - -/** select columns of table "v_match_clutches" */ -export type v_match_clutches_select_column = 'against_count' | 'clutcher_steam_id' | 'kills_in_clutch' | 'match_id' | 'match_lineup_id' | 'match_map_id' | 'outcome' | 'round' | 'side' - - -/** aggregate stddev on columns */ -export interface v_match_clutches_stddev_fields { - against_count: (Scalars['Float'] | null) - clutcher_steam_id: (Scalars['Float'] | null) - kills_in_clutch: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'v_match_clutches_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface v_match_clutches_stddev_pop_fields { - against_count: (Scalars['Float'] | null) - clutcher_steam_id: (Scalars['Float'] | null) - kills_in_clutch: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'v_match_clutches_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface v_match_clutches_stddev_samp_fields { - against_count: (Scalars['Float'] | null) - clutcher_steam_id: (Scalars['Float'] | null) - kills_in_clutch: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'v_match_clutches_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface v_match_clutches_sum_fields { - against_count: (Scalars['Int'] | null) - clutcher_steam_id: (Scalars['bigint'] | null) - kills_in_clutch: (Scalars['Int'] | null) - round: (Scalars['Int'] | null) - __typename: 'v_match_clutches_sum_fields' -} - - -/** aggregate var_pop on columns */ -export interface v_match_clutches_var_pop_fields { - against_count: (Scalars['Float'] | null) - clutcher_steam_id: (Scalars['Float'] | null) - kills_in_clutch: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'v_match_clutches_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface v_match_clutches_var_samp_fields { - against_count: (Scalars['Float'] | null) - clutcher_steam_id: (Scalars['Float'] | null) - kills_in_clutch: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'v_match_clutches_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface v_match_clutches_variance_fields { - against_count: (Scalars['Float'] | null) - clutcher_steam_id: (Scalars['Float'] | null) - kills_in_clutch: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'v_match_clutches_variance_fields' -} - - -/** columns and relationships of "v_match_kill_pairs" */ -export interface v_match_kill_pairs { - killer_side: (Scalars['String'] | null) - killer_steam_id: (Scalars['bigint'] | null) - kills: (Scalars['Int'] | null) - /** An object relationship */ - match: (matches | null) - match_id: (Scalars['uuid'] | null) - /** An object relationship */ - match_map: (match_maps | null) - match_map_id: (Scalars['uuid'] | null) - victim_side: (Scalars['String'] | null) - victim_steam_id: (Scalars['bigint'] | null) - weapon: (Scalars['String'] | null) - __typename: 'v_match_kill_pairs' -} - - -/** aggregated selection of "v_match_kill_pairs" */ -export interface v_match_kill_pairs_aggregate { - aggregate: (v_match_kill_pairs_aggregate_fields | null) - nodes: v_match_kill_pairs[] - __typename: 'v_match_kill_pairs_aggregate' -} - - -/** aggregate fields of "v_match_kill_pairs" */ -export interface v_match_kill_pairs_aggregate_fields { - avg: (v_match_kill_pairs_avg_fields | null) - count: Scalars['Int'] - max: (v_match_kill_pairs_max_fields | null) - min: (v_match_kill_pairs_min_fields | null) - stddev: (v_match_kill_pairs_stddev_fields | null) - stddev_pop: (v_match_kill_pairs_stddev_pop_fields | null) - stddev_samp: (v_match_kill_pairs_stddev_samp_fields | null) - sum: (v_match_kill_pairs_sum_fields | null) - var_pop: (v_match_kill_pairs_var_pop_fields | null) - var_samp: (v_match_kill_pairs_var_samp_fields | null) - variance: (v_match_kill_pairs_variance_fields | null) - __typename: 'v_match_kill_pairs_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface v_match_kill_pairs_avg_fields { - killer_steam_id: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - victim_steam_id: (Scalars['Float'] | null) - __typename: 'v_match_kill_pairs_avg_fields' -} - - -/** aggregate max on columns */ -export interface v_match_kill_pairs_max_fields { - killer_side: (Scalars['String'] | null) - killer_steam_id: (Scalars['bigint'] | null) - kills: (Scalars['Int'] | null) - match_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - victim_side: (Scalars['String'] | null) - victim_steam_id: (Scalars['bigint'] | null) - weapon: (Scalars['String'] | null) - __typename: 'v_match_kill_pairs_max_fields' -} - - -/** aggregate min on columns */ -export interface v_match_kill_pairs_min_fields { - killer_side: (Scalars['String'] | null) - killer_steam_id: (Scalars['bigint'] | null) - kills: (Scalars['Int'] | null) - match_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - victim_side: (Scalars['String'] | null) - victim_steam_id: (Scalars['bigint'] | null) - weapon: (Scalars['String'] | null) - __typename: 'v_match_kill_pairs_min_fields' -} - - -/** select columns of table "v_match_kill_pairs" */ -export type v_match_kill_pairs_select_column = 'killer_side' | 'killer_steam_id' | 'kills' | 'match_id' | 'match_map_id' | 'victim_side' | 'victim_steam_id' | 'weapon' - - -/** aggregate stddev on columns */ -export interface v_match_kill_pairs_stddev_fields { - killer_steam_id: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - victim_steam_id: (Scalars['Float'] | null) - __typename: 'v_match_kill_pairs_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface v_match_kill_pairs_stddev_pop_fields { - killer_steam_id: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - victim_steam_id: (Scalars['Float'] | null) - __typename: 'v_match_kill_pairs_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface v_match_kill_pairs_stddev_samp_fields { - killer_steam_id: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - victim_steam_id: (Scalars['Float'] | null) - __typename: 'v_match_kill_pairs_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface v_match_kill_pairs_sum_fields { - killer_steam_id: (Scalars['bigint'] | null) - kills: (Scalars['Int'] | null) - victim_steam_id: (Scalars['bigint'] | null) - __typename: 'v_match_kill_pairs_sum_fields' -} - - -/** aggregate var_pop on columns */ -export interface v_match_kill_pairs_var_pop_fields { - killer_steam_id: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - victim_steam_id: (Scalars['Float'] | null) - __typename: 'v_match_kill_pairs_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface v_match_kill_pairs_var_samp_fields { - killer_steam_id: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - victim_steam_id: (Scalars['Float'] | null) - __typename: 'v_match_kill_pairs_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface v_match_kill_pairs_variance_fields { - killer_steam_id: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - victim_steam_id: (Scalars['Float'] | null) - __typename: 'v_match_kill_pairs_variance_fields' -} - - -/** columns and relationships of "v_match_lineup_buy_types" */ -export interface v_match_lineup_buy_types { - /** An object relationship */ - match: (matches | null) - match_id: (Scalars['uuid'] | null) - /** An object relationship */ - match_lineup: (match_lineups | null) - match_lineup_id: (Scalars['uuid'] | null) - /** An object relationship */ - match_map: (match_maps | null) - match_map_id: (Scalars['uuid'] | null) - matchup: (Scalars['String'] | null) - rounds: (Scalars['Int'] | null) - side: (Scalars['String'] | null) - wins: (Scalars['Int'] | null) - __typename: 'v_match_lineup_buy_types' -} - - -/** aggregated selection of "v_match_lineup_buy_types" */ -export interface v_match_lineup_buy_types_aggregate { - aggregate: (v_match_lineup_buy_types_aggregate_fields | null) - nodes: v_match_lineup_buy_types[] - __typename: 'v_match_lineup_buy_types_aggregate' -} - - -/** aggregate fields of "v_match_lineup_buy_types" */ -export interface v_match_lineup_buy_types_aggregate_fields { - avg: (v_match_lineup_buy_types_avg_fields | null) - count: Scalars['Int'] - max: (v_match_lineup_buy_types_max_fields | null) - min: (v_match_lineup_buy_types_min_fields | null) - stddev: (v_match_lineup_buy_types_stddev_fields | null) - stddev_pop: (v_match_lineup_buy_types_stddev_pop_fields | null) - stddev_samp: (v_match_lineup_buy_types_stddev_samp_fields | null) - sum: (v_match_lineup_buy_types_sum_fields | null) - var_pop: (v_match_lineup_buy_types_var_pop_fields | null) - var_samp: (v_match_lineup_buy_types_var_samp_fields | null) - variance: (v_match_lineup_buy_types_variance_fields | null) - __typename: 'v_match_lineup_buy_types_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface v_match_lineup_buy_types_avg_fields { - rounds: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_match_lineup_buy_types_avg_fields' -} - - -/** aggregate max on columns */ -export interface v_match_lineup_buy_types_max_fields { - match_id: (Scalars['uuid'] | null) - match_lineup_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - matchup: (Scalars['String'] | null) - rounds: (Scalars['Int'] | null) - side: (Scalars['String'] | null) - wins: (Scalars['Int'] | null) - __typename: 'v_match_lineup_buy_types_max_fields' -} - - -/** aggregate min on columns */ -export interface v_match_lineup_buy_types_min_fields { - match_id: (Scalars['uuid'] | null) - match_lineup_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - matchup: (Scalars['String'] | null) - rounds: (Scalars['Int'] | null) - side: (Scalars['String'] | null) - wins: (Scalars['Int'] | null) - __typename: 'v_match_lineup_buy_types_min_fields' -} - - -/** select columns of table "v_match_lineup_buy_types" */ -export type v_match_lineup_buy_types_select_column = 'match_id' | 'match_lineup_id' | 'match_map_id' | 'matchup' | 'rounds' | 'side' | 'wins' - - -/** aggregate stddev on columns */ -export interface v_match_lineup_buy_types_stddev_fields { - rounds: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_match_lineup_buy_types_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface v_match_lineup_buy_types_stddev_pop_fields { - rounds: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_match_lineup_buy_types_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface v_match_lineup_buy_types_stddev_samp_fields { - rounds: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_match_lineup_buy_types_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface v_match_lineup_buy_types_sum_fields { - rounds: (Scalars['Int'] | null) - wins: (Scalars['Int'] | null) - __typename: 'v_match_lineup_buy_types_sum_fields' -} - - -/** aggregate var_pop on columns */ -export interface v_match_lineup_buy_types_var_pop_fields { - rounds: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_match_lineup_buy_types_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface v_match_lineup_buy_types_var_samp_fields { - rounds: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_match_lineup_buy_types_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface v_match_lineup_buy_types_variance_fields { - rounds: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_match_lineup_buy_types_variance_fields' -} - - -/** columns and relationships of "v_match_lineup_map_stats" */ -export interface v_match_lineup_map_stats { - man_adv_rounds: (Scalars['Int'] | null) - man_adv_wins: (Scalars['Int'] | null) - man_dis_rounds: (Scalars['Int'] | null) - man_dis_wins: (Scalars['Int'] | null) - /** An object relationship */ - match: (matches | null) - match_id: (Scalars['uuid'] | null) - /** An object relationship */ - match_lineup: (match_lineups | null) - match_lineup_id: (Scalars['uuid'] | null) - /** An object relationship */ - match_map: (match_maps | null) - match_map_id: (Scalars['uuid'] | null) - opening_attempts: (Scalars['Int'] | null) - opening_wins: (Scalars['Int'] | null) - pistol_rounds: (Scalars['Int'] | null) - pistol_wins: (Scalars['Int'] | null) - round_wins: (Scalars['Int'] | null) - rounds: (Scalars['Int'] | null) - side: (Scalars['String'] | null) - won_buy_eco: (Scalars['Int'] | null) - won_buy_force: (Scalars['Int'] | null) - won_buy_full: (Scalars['Int'] | null) - won_buy_pistol: (Scalars['Int'] | null) - __typename: 'v_match_lineup_map_stats' -} - - -/** aggregated selection of "v_match_lineup_map_stats" */ -export interface v_match_lineup_map_stats_aggregate { - aggregate: (v_match_lineup_map_stats_aggregate_fields | null) - nodes: v_match_lineup_map_stats[] - __typename: 'v_match_lineup_map_stats_aggregate' -} - - -/** aggregate fields of "v_match_lineup_map_stats" */ -export interface v_match_lineup_map_stats_aggregate_fields { - avg: (v_match_lineup_map_stats_avg_fields | null) - count: Scalars['Int'] - max: (v_match_lineup_map_stats_max_fields | null) - min: (v_match_lineup_map_stats_min_fields | null) - stddev: (v_match_lineup_map_stats_stddev_fields | null) - stddev_pop: (v_match_lineup_map_stats_stddev_pop_fields | null) - stddev_samp: (v_match_lineup_map_stats_stddev_samp_fields | null) - sum: (v_match_lineup_map_stats_sum_fields | null) - var_pop: (v_match_lineup_map_stats_var_pop_fields | null) - var_samp: (v_match_lineup_map_stats_var_samp_fields | null) - variance: (v_match_lineup_map_stats_variance_fields | null) - __typename: 'v_match_lineup_map_stats_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface v_match_lineup_map_stats_avg_fields { - man_adv_rounds: (Scalars['Float'] | null) - man_adv_wins: (Scalars['Float'] | null) - man_dis_rounds: (Scalars['Float'] | null) - man_dis_wins: (Scalars['Float'] | null) - opening_attempts: (Scalars['Float'] | null) - opening_wins: (Scalars['Float'] | null) - pistol_rounds: (Scalars['Float'] | null) - pistol_wins: (Scalars['Float'] | null) - round_wins: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - won_buy_eco: (Scalars['Float'] | null) - won_buy_force: (Scalars['Float'] | null) - won_buy_full: (Scalars['Float'] | null) - won_buy_pistol: (Scalars['Float'] | null) - __typename: 'v_match_lineup_map_stats_avg_fields' -} - - -/** aggregate max on columns */ -export interface v_match_lineup_map_stats_max_fields { - man_adv_rounds: (Scalars['Int'] | null) - man_adv_wins: (Scalars['Int'] | null) - man_dis_rounds: (Scalars['Int'] | null) - man_dis_wins: (Scalars['Int'] | null) - match_id: (Scalars['uuid'] | null) - match_lineup_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - opening_attempts: (Scalars['Int'] | null) - opening_wins: (Scalars['Int'] | null) - pistol_rounds: (Scalars['Int'] | null) - pistol_wins: (Scalars['Int'] | null) - round_wins: (Scalars['Int'] | null) - rounds: (Scalars['Int'] | null) - side: (Scalars['String'] | null) - won_buy_eco: (Scalars['Int'] | null) - won_buy_force: (Scalars['Int'] | null) - won_buy_full: (Scalars['Int'] | null) - won_buy_pistol: (Scalars['Int'] | null) - __typename: 'v_match_lineup_map_stats_max_fields' -} - - -/** aggregate min on columns */ -export interface v_match_lineup_map_stats_min_fields { - man_adv_rounds: (Scalars['Int'] | null) - man_adv_wins: (Scalars['Int'] | null) - man_dis_rounds: (Scalars['Int'] | null) - man_dis_wins: (Scalars['Int'] | null) - match_id: (Scalars['uuid'] | null) - match_lineup_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - opening_attempts: (Scalars['Int'] | null) - opening_wins: (Scalars['Int'] | null) - pistol_rounds: (Scalars['Int'] | null) - pistol_wins: (Scalars['Int'] | null) - round_wins: (Scalars['Int'] | null) - rounds: (Scalars['Int'] | null) - side: (Scalars['String'] | null) - won_buy_eco: (Scalars['Int'] | null) - won_buy_force: (Scalars['Int'] | null) - won_buy_full: (Scalars['Int'] | null) - won_buy_pistol: (Scalars['Int'] | null) - __typename: 'v_match_lineup_map_stats_min_fields' -} - - -/** select columns of table "v_match_lineup_map_stats" */ -export type v_match_lineup_map_stats_select_column = 'man_adv_rounds' | 'man_adv_wins' | 'man_dis_rounds' | 'man_dis_wins' | 'match_id' | 'match_lineup_id' | 'match_map_id' | 'opening_attempts' | 'opening_wins' | 'pistol_rounds' | 'pistol_wins' | 'round_wins' | 'rounds' | 'side' | 'won_buy_eco' | 'won_buy_force' | 'won_buy_full' | 'won_buy_pistol' - - -/** aggregate stddev on columns */ -export interface v_match_lineup_map_stats_stddev_fields { - man_adv_rounds: (Scalars['Float'] | null) - man_adv_wins: (Scalars['Float'] | null) - man_dis_rounds: (Scalars['Float'] | null) - man_dis_wins: (Scalars['Float'] | null) - opening_attempts: (Scalars['Float'] | null) - opening_wins: (Scalars['Float'] | null) - pistol_rounds: (Scalars['Float'] | null) - pistol_wins: (Scalars['Float'] | null) - round_wins: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - won_buy_eco: (Scalars['Float'] | null) - won_buy_force: (Scalars['Float'] | null) - won_buy_full: (Scalars['Float'] | null) - won_buy_pistol: (Scalars['Float'] | null) - __typename: 'v_match_lineup_map_stats_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface v_match_lineup_map_stats_stddev_pop_fields { - man_adv_rounds: (Scalars['Float'] | null) - man_adv_wins: (Scalars['Float'] | null) - man_dis_rounds: (Scalars['Float'] | null) - man_dis_wins: (Scalars['Float'] | null) - opening_attempts: (Scalars['Float'] | null) - opening_wins: (Scalars['Float'] | null) - pistol_rounds: (Scalars['Float'] | null) - pistol_wins: (Scalars['Float'] | null) - round_wins: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - won_buy_eco: (Scalars['Float'] | null) - won_buy_force: (Scalars['Float'] | null) - won_buy_full: (Scalars['Float'] | null) - won_buy_pistol: (Scalars['Float'] | null) - __typename: 'v_match_lineup_map_stats_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface v_match_lineup_map_stats_stddev_samp_fields { - man_adv_rounds: (Scalars['Float'] | null) - man_adv_wins: (Scalars['Float'] | null) - man_dis_rounds: (Scalars['Float'] | null) - man_dis_wins: (Scalars['Float'] | null) - opening_attempts: (Scalars['Float'] | null) - opening_wins: (Scalars['Float'] | null) - pistol_rounds: (Scalars['Float'] | null) - pistol_wins: (Scalars['Float'] | null) - round_wins: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - won_buy_eco: (Scalars['Float'] | null) - won_buy_force: (Scalars['Float'] | null) - won_buy_full: (Scalars['Float'] | null) - won_buy_pistol: (Scalars['Float'] | null) - __typename: 'v_match_lineup_map_stats_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface v_match_lineup_map_stats_sum_fields { - man_adv_rounds: (Scalars['Int'] | null) - man_adv_wins: (Scalars['Int'] | null) - man_dis_rounds: (Scalars['Int'] | null) - man_dis_wins: (Scalars['Int'] | null) - opening_attempts: (Scalars['Int'] | null) - opening_wins: (Scalars['Int'] | null) - pistol_rounds: (Scalars['Int'] | null) - pistol_wins: (Scalars['Int'] | null) - round_wins: (Scalars['Int'] | null) - rounds: (Scalars['Int'] | null) - won_buy_eco: (Scalars['Int'] | null) - won_buy_force: (Scalars['Int'] | null) - won_buy_full: (Scalars['Int'] | null) - won_buy_pistol: (Scalars['Int'] | null) - __typename: 'v_match_lineup_map_stats_sum_fields' -} - - -/** aggregate var_pop on columns */ -export interface v_match_lineup_map_stats_var_pop_fields { - man_adv_rounds: (Scalars['Float'] | null) - man_adv_wins: (Scalars['Float'] | null) - man_dis_rounds: (Scalars['Float'] | null) - man_dis_wins: (Scalars['Float'] | null) - opening_attempts: (Scalars['Float'] | null) - opening_wins: (Scalars['Float'] | null) - pistol_rounds: (Scalars['Float'] | null) - pistol_wins: (Scalars['Float'] | null) - round_wins: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - won_buy_eco: (Scalars['Float'] | null) - won_buy_force: (Scalars['Float'] | null) - won_buy_full: (Scalars['Float'] | null) - won_buy_pistol: (Scalars['Float'] | null) - __typename: 'v_match_lineup_map_stats_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface v_match_lineup_map_stats_var_samp_fields { - man_adv_rounds: (Scalars['Float'] | null) - man_adv_wins: (Scalars['Float'] | null) - man_dis_rounds: (Scalars['Float'] | null) - man_dis_wins: (Scalars['Float'] | null) - opening_attempts: (Scalars['Float'] | null) - opening_wins: (Scalars['Float'] | null) - pistol_rounds: (Scalars['Float'] | null) - pistol_wins: (Scalars['Float'] | null) - round_wins: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - won_buy_eco: (Scalars['Float'] | null) - won_buy_force: (Scalars['Float'] | null) - won_buy_full: (Scalars['Float'] | null) - won_buy_pistol: (Scalars['Float'] | null) - __typename: 'v_match_lineup_map_stats_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface v_match_lineup_map_stats_variance_fields { - man_adv_rounds: (Scalars['Float'] | null) - man_adv_wins: (Scalars['Float'] | null) - man_dis_rounds: (Scalars['Float'] | null) - man_dis_wins: (Scalars['Float'] | null) - opening_attempts: (Scalars['Float'] | null) - opening_wins: (Scalars['Float'] | null) - pistol_rounds: (Scalars['Float'] | null) - pistol_wins: (Scalars['Float'] | null) - round_wins: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - won_buy_eco: (Scalars['Float'] | null) - won_buy_force: (Scalars['Float'] | null) - won_buy_full: (Scalars['Float'] | null) - won_buy_pistol: (Scalars['Float'] | null) - __typename: 'v_match_lineup_map_stats_variance_fields' -} - - -/** columns and relationships of "v_match_map_backup_rounds" */ -export interface v_match_map_backup_rounds { - has_backup_file: (Scalars['Boolean'] | null) - match_map_id: (Scalars['uuid'] | null) - round: (Scalars['Int'] | null) - __typename: 'v_match_map_backup_rounds' -} - - -/** aggregated selection of "v_match_map_backup_rounds" */ -export interface v_match_map_backup_rounds_aggregate { - aggregate: (v_match_map_backup_rounds_aggregate_fields | null) - nodes: v_match_map_backup_rounds[] - __typename: 'v_match_map_backup_rounds_aggregate' -} - - -/** aggregate fields of "v_match_map_backup_rounds" */ -export interface v_match_map_backup_rounds_aggregate_fields { - avg: (v_match_map_backup_rounds_avg_fields | null) - count: Scalars['Int'] - max: (v_match_map_backup_rounds_max_fields | null) - min: (v_match_map_backup_rounds_min_fields | null) - stddev: (v_match_map_backup_rounds_stddev_fields | null) - stddev_pop: (v_match_map_backup_rounds_stddev_pop_fields | null) - stddev_samp: (v_match_map_backup_rounds_stddev_samp_fields | null) - sum: (v_match_map_backup_rounds_sum_fields | null) - var_pop: (v_match_map_backup_rounds_var_pop_fields | null) - var_samp: (v_match_map_backup_rounds_var_samp_fields | null) - variance: (v_match_map_backup_rounds_variance_fields | null) - __typename: 'v_match_map_backup_rounds_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface v_match_map_backup_rounds_avg_fields { - round: (Scalars['Float'] | null) - __typename: 'v_match_map_backup_rounds_avg_fields' -} - - -/** aggregate max on columns */ -export interface v_match_map_backup_rounds_max_fields { - match_map_id: (Scalars['uuid'] | null) - round: (Scalars['Int'] | null) - __typename: 'v_match_map_backup_rounds_max_fields' -} - - -/** aggregate min on columns */ -export interface v_match_map_backup_rounds_min_fields { - match_map_id: (Scalars['uuid'] | null) - round: (Scalars['Int'] | null) - __typename: 'v_match_map_backup_rounds_min_fields' -} - - -/** response of any mutation on the table "v_match_map_backup_rounds" */ -export interface v_match_map_backup_rounds_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: v_match_map_backup_rounds[] - __typename: 'v_match_map_backup_rounds_mutation_response' -} - - -/** select columns of table "v_match_map_backup_rounds" */ -export type v_match_map_backup_rounds_select_column = 'has_backup_file' | 'match_map_id' | 'round' - - -/** aggregate stddev on columns */ -export interface v_match_map_backup_rounds_stddev_fields { - round: (Scalars['Float'] | null) - __typename: 'v_match_map_backup_rounds_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface v_match_map_backup_rounds_stddev_pop_fields { - round: (Scalars['Float'] | null) - __typename: 'v_match_map_backup_rounds_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface v_match_map_backup_rounds_stddev_samp_fields { - round: (Scalars['Float'] | null) - __typename: 'v_match_map_backup_rounds_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface v_match_map_backup_rounds_sum_fields { - round: (Scalars['Int'] | null) - __typename: 'v_match_map_backup_rounds_sum_fields' -} - - -/** aggregate var_pop on columns */ -export interface v_match_map_backup_rounds_var_pop_fields { - round: (Scalars['Float'] | null) - __typename: 'v_match_map_backup_rounds_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface v_match_map_backup_rounds_var_samp_fields { - round: (Scalars['Float'] | null) - __typename: 'v_match_map_backup_rounds_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface v_match_map_backup_rounds_variance_fields { - round: (Scalars['Float'] | null) - __typename: 'v_match_map_backup_rounds_variance_fields' -} - - -/** columns and relationships of "v_match_player_buy_types" */ -export interface v_match_player_buy_types { - deaths: (Scalars['Int'] | null) - kills: (Scalars['Int'] | null) - /** An object relationship */ - match: (matches | null) - match_id: (Scalars['uuid'] | null) - /** An object relationship */ - match_lineup: (match_lineups | null) - match_lineup_id: (Scalars['uuid'] | null) - /** An object relationship */ - match_map: (match_maps | null) - match_map_id: (Scalars['uuid'] | null) - matchup: (Scalars['String'] | null) - /** An object relationship */ - player: (players | null) - rounds: (Scalars['Int'] | null) - side: (Scalars['String'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'v_match_player_buy_types' -} - - -/** aggregated selection of "v_match_player_buy_types" */ -export interface v_match_player_buy_types_aggregate { - aggregate: (v_match_player_buy_types_aggregate_fields | null) - nodes: v_match_player_buy_types[] - __typename: 'v_match_player_buy_types_aggregate' -} - - -/** aggregate fields of "v_match_player_buy_types" */ -export interface v_match_player_buy_types_aggregate_fields { - avg: (v_match_player_buy_types_avg_fields | null) - count: Scalars['Int'] - max: (v_match_player_buy_types_max_fields | null) - min: (v_match_player_buy_types_min_fields | null) - stddev: (v_match_player_buy_types_stddev_fields | null) - stddev_pop: (v_match_player_buy_types_stddev_pop_fields | null) - stddev_samp: (v_match_player_buy_types_stddev_samp_fields | null) - sum: (v_match_player_buy_types_sum_fields | null) - var_pop: (v_match_player_buy_types_var_pop_fields | null) - var_samp: (v_match_player_buy_types_var_samp_fields | null) - variance: (v_match_player_buy_types_variance_fields | null) - __typename: 'v_match_player_buy_types_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface v_match_player_buy_types_avg_fields { - deaths: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'v_match_player_buy_types_avg_fields' -} - - -/** aggregate max on columns */ -export interface v_match_player_buy_types_max_fields { - deaths: (Scalars['Int'] | null) - kills: (Scalars['Int'] | null) - match_id: (Scalars['uuid'] | null) - match_lineup_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - matchup: (Scalars['String'] | null) - rounds: (Scalars['Int'] | null) - side: (Scalars['String'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'v_match_player_buy_types_max_fields' -} - - -/** aggregate min on columns */ -export interface v_match_player_buy_types_min_fields { - deaths: (Scalars['Int'] | null) - kills: (Scalars['Int'] | null) - match_id: (Scalars['uuid'] | null) - match_lineup_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - matchup: (Scalars['String'] | null) - rounds: (Scalars['Int'] | null) - side: (Scalars['String'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'v_match_player_buy_types_min_fields' -} - - -/** select columns of table "v_match_player_buy_types" */ -export type v_match_player_buy_types_select_column = 'deaths' | 'kills' | 'match_id' | 'match_lineup_id' | 'match_map_id' | 'matchup' | 'rounds' | 'side' | 'steam_id' - - -/** aggregate stddev on columns */ -export interface v_match_player_buy_types_stddev_fields { - deaths: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'v_match_player_buy_types_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface v_match_player_buy_types_stddev_pop_fields { - deaths: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'v_match_player_buy_types_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface v_match_player_buy_types_stddev_samp_fields { - deaths: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'v_match_player_buy_types_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface v_match_player_buy_types_sum_fields { - deaths: (Scalars['Int'] | null) - kills: (Scalars['Int'] | null) - rounds: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'v_match_player_buy_types_sum_fields' -} - - -/** aggregate var_pop on columns */ -export interface v_match_player_buy_types_var_pop_fields { - deaths: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'v_match_player_buy_types_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface v_match_player_buy_types_var_samp_fields { - deaths: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'v_match_player_buy_types_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface v_match_player_buy_types_variance_fields { - deaths: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'v_match_player_buy_types_variance_fields' -} - - -/** columns and relationships of "v_match_player_opening_duels" */ -export interface v_match_player_opening_duels { - attempts: (Scalars['Int'] | null) - deaths: (Scalars['Int'] | null) - /** An object relationship */ - match: (matches | null) - match_id: (Scalars['uuid'] | null) - /** An object relationship */ - match_lineup: (match_lineups | null) - match_lineup_id: (Scalars['uuid'] | null) - /** An object relationship */ - match_map: (match_maps | null) - match_map_id: (Scalars['uuid'] | null) - /** An object relationship */ - player: (players | null) - side: (Scalars['String'] | null) - steam_id: (Scalars['bigint'] | null) - traded_deaths: (Scalars['Int'] | null) - wins: (Scalars['Int'] | null) - __typename: 'v_match_player_opening_duels' -} - - -/** aggregated selection of "v_match_player_opening_duels" */ -export interface v_match_player_opening_duels_aggregate { - aggregate: (v_match_player_opening_duels_aggregate_fields | null) - nodes: v_match_player_opening_duels[] - __typename: 'v_match_player_opening_duels_aggregate' -} - - -/** aggregate fields of "v_match_player_opening_duels" */ -export interface v_match_player_opening_duels_aggregate_fields { - avg: (v_match_player_opening_duels_avg_fields | null) - count: Scalars['Int'] - max: (v_match_player_opening_duels_max_fields | null) - min: (v_match_player_opening_duels_min_fields | null) - stddev: (v_match_player_opening_duels_stddev_fields | null) - stddev_pop: (v_match_player_opening_duels_stddev_pop_fields | null) - stddev_samp: (v_match_player_opening_duels_stddev_samp_fields | null) - sum: (v_match_player_opening_duels_sum_fields | null) - var_pop: (v_match_player_opening_duels_var_pop_fields | null) - var_samp: (v_match_player_opening_duels_var_samp_fields | null) - variance: (v_match_player_opening_duels_variance_fields | null) - __typename: 'v_match_player_opening_duels_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface v_match_player_opening_duels_avg_fields { - attempts: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - traded_deaths: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_match_player_opening_duels_avg_fields' -} - - -/** aggregate max on columns */ -export interface v_match_player_opening_duels_max_fields { - attempts: (Scalars['Int'] | null) - deaths: (Scalars['Int'] | null) - match_id: (Scalars['uuid'] | null) - match_lineup_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - side: (Scalars['String'] | null) - steam_id: (Scalars['bigint'] | null) - traded_deaths: (Scalars['Int'] | null) - wins: (Scalars['Int'] | null) - __typename: 'v_match_player_opening_duels_max_fields' -} - - -/** aggregate min on columns */ -export interface v_match_player_opening_duels_min_fields { - attempts: (Scalars['Int'] | null) - deaths: (Scalars['Int'] | null) - match_id: (Scalars['uuid'] | null) - match_lineup_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - side: (Scalars['String'] | null) - steam_id: (Scalars['bigint'] | null) - traded_deaths: (Scalars['Int'] | null) - wins: (Scalars['Int'] | null) - __typename: 'v_match_player_opening_duels_min_fields' -} - - -/** select columns of table "v_match_player_opening_duels" */ -export type v_match_player_opening_duels_select_column = 'attempts' | 'deaths' | 'match_id' | 'match_lineup_id' | 'match_map_id' | 'side' | 'steam_id' | 'traded_deaths' | 'wins' - - -/** aggregate stddev on columns */ -export interface v_match_player_opening_duels_stddev_fields { - attempts: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - traded_deaths: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_match_player_opening_duels_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface v_match_player_opening_duels_stddev_pop_fields { - attempts: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - traded_deaths: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_match_player_opening_duels_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface v_match_player_opening_duels_stddev_samp_fields { - attempts: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - traded_deaths: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_match_player_opening_duels_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface v_match_player_opening_duels_sum_fields { - attempts: (Scalars['Int'] | null) - deaths: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - traded_deaths: (Scalars['Int'] | null) - wins: (Scalars['Int'] | null) - __typename: 'v_match_player_opening_duels_sum_fields' -} - - -/** aggregate var_pop on columns */ -export interface v_match_player_opening_duels_var_pop_fields { - attempts: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - traded_deaths: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_match_player_opening_duels_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface v_match_player_opening_duels_var_samp_fields { - attempts: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - traded_deaths: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_match_player_opening_duels_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface v_match_player_opening_duels_variance_fields { - attempts: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - traded_deaths: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_match_player_opening_duels_variance_fields' -} - - -/** columns and relationships of "v_player_arch_nemesis" */ -export interface v_player_arch_nemesis { - attacker_id: (Scalars['bigint'] | null) - kill_count: (Scalars['bigint'] | null) - /** An object relationship */ - nemsis: (players | null) - /** An object relationship */ - player: (players | null) - victim_id: (Scalars['bigint'] | null) - __typename: 'v_player_arch_nemesis' -} - - -/** aggregated selection of "v_player_arch_nemesis" */ -export interface v_player_arch_nemesis_aggregate { - aggregate: (v_player_arch_nemesis_aggregate_fields | null) - nodes: v_player_arch_nemesis[] - __typename: 'v_player_arch_nemesis_aggregate' -} - - -/** aggregate fields of "v_player_arch_nemesis" */ -export interface v_player_arch_nemesis_aggregate_fields { - avg: (v_player_arch_nemesis_avg_fields | null) - count: Scalars['Int'] - max: (v_player_arch_nemesis_max_fields | null) - min: (v_player_arch_nemesis_min_fields | null) - stddev: (v_player_arch_nemesis_stddev_fields | null) - stddev_pop: (v_player_arch_nemesis_stddev_pop_fields | null) - stddev_samp: (v_player_arch_nemesis_stddev_samp_fields | null) - sum: (v_player_arch_nemesis_sum_fields | null) - var_pop: (v_player_arch_nemesis_var_pop_fields | null) - var_samp: (v_player_arch_nemesis_var_samp_fields | null) - variance: (v_player_arch_nemesis_variance_fields | null) - __typename: 'v_player_arch_nemesis_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface v_player_arch_nemesis_avg_fields { - attacker_id: (Scalars['Float'] | null) - kill_count: (Scalars['Float'] | null) - victim_id: (Scalars['Float'] | null) - __typename: 'v_player_arch_nemesis_avg_fields' -} - - -/** aggregate max on columns */ -export interface v_player_arch_nemesis_max_fields { - attacker_id: (Scalars['bigint'] | null) - kill_count: (Scalars['bigint'] | null) - victim_id: (Scalars['bigint'] | null) - __typename: 'v_player_arch_nemesis_max_fields' -} - - -/** aggregate min on columns */ -export interface v_player_arch_nemesis_min_fields { - attacker_id: (Scalars['bigint'] | null) - kill_count: (Scalars['bigint'] | null) - victim_id: (Scalars['bigint'] | null) - __typename: 'v_player_arch_nemesis_min_fields' -} - - -/** select columns of table "v_player_arch_nemesis" */ -export type v_player_arch_nemesis_select_column = 'attacker_id' | 'kill_count' | 'victim_id' - - -/** aggregate stddev on columns */ -export interface v_player_arch_nemesis_stddev_fields { - attacker_id: (Scalars['Float'] | null) - kill_count: (Scalars['Float'] | null) - victim_id: (Scalars['Float'] | null) - __typename: 'v_player_arch_nemesis_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface v_player_arch_nemesis_stddev_pop_fields { - attacker_id: (Scalars['Float'] | null) - kill_count: (Scalars['Float'] | null) - victim_id: (Scalars['Float'] | null) - __typename: 'v_player_arch_nemesis_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface v_player_arch_nemesis_stddev_samp_fields { - attacker_id: (Scalars['Float'] | null) - kill_count: (Scalars['Float'] | null) - victim_id: (Scalars['Float'] | null) - __typename: 'v_player_arch_nemesis_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface v_player_arch_nemesis_sum_fields { - attacker_id: (Scalars['bigint'] | null) - kill_count: (Scalars['bigint'] | null) - victim_id: (Scalars['bigint'] | null) - __typename: 'v_player_arch_nemesis_sum_fields' -} - - -/** aggregate var_pop on columns */ -export interface v_player_arch_nemesis_var_pop_fields { - attacker_id: (Scalars['Float'] | null) - kill_count: (Scalars['Float'] | null) - victim_id: (Scalars['Float'] | null) - __typename: 'v_player_arch_nemesis_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface v_player_arch_nemesis_var_samp_fields { - attacker_id: (Scalars['Float'] | null) - kill_count: (Scalars['Float'] | null) - victim_id: (Scalars['Float'] | null) - __typename: 'v_player_arch_nemesis_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface v_player_arch_nemesis_variance_fields { - attacker_id: (Scalars['Float'] | null) - kill_count: (Scalars['Float'] | null) - victim_id: (Scalars['Float'] | null) - __typename: 'v_player_arch_nemesis_variance_fields' -} - - -/** columns and relationships of "v_player_damage" */ -export interface v_player_damage { - avg_damage_per_round: (Scalars['bigint'] | null) - /** An object relationship */ - player: (players | null) - player_steam_id: (Scalars['bigint'] | null) - total_damage: (Scalars['bigint'] | null) - total_rounds: (Scalars['bigint'] | null) - __typename: 'v_player_damage' -} - - -/** aggregated selection of "v_player_damage" */ -export interface v_player_damage_aggregate { - aggregate: (v_player_damage_aggregate_fields | null) - nodes: v_player_damage[] - __typename: 'v_player_damage_aggregate' -} - - -/** aggregate fields of "v_player_damage" */ -export interface v_player_damage_aggregate_fields { - avg: (v_player_damage_avg_fields | null) - count: Scalars['Int'] - max: (v_player_damage_max_fields | null) - min: (v_player_damage_min_fields | null) - stddev: (v_player_damage_stddev_fields | null) - stddev_pop: (v_player_damage_stddev_pop_fields | null) - stddev_samp: (v_player_damage_stddev_samp_fields | null) - sum: (v_player_damage_sum_fields | null) - var_pop: (v_player_damage_var_pop_fields | null) - var_samp: (v_player_damage_var_samp_fields | null) - variance: (v_player_damage_variance_fields | null) - __typename: 'v_player_damage_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface v_player_damage_avg_fields { - avg_damage_per_round: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - total_damage: (Scalars['Float'] | null) - total_rounds: (Scalars['Float'] | null) - __typename: 'v_player_damage_avg_fields' -} - - -/** aggregate max on columns */ -export interface v_player_damage_max_fields { - avg_damage_per_round: (Scalars['bigint'] | null) - player_steam_id: (Scalars['bigint'] | null) - total_damage: (Scalars['bigint'] | null) - total_rounds: (Scalars['bigint'] | null) - __typename: 'v_player_damage_max_fields' -} - - -/** aggregate min on columns */ -export interface v_player_damage_min_fields { - avg_damage_per_round: (Scalars['bigint'] | null) - player_steam_id: (Scalars['bigint'] | null) - total_damage: (Scalars['bigint'] | null) - total_rounds: (Scalars['bigint'] | null) - __typename: 'v_player_damage_min_fields' -} - - -/** select columns of table "v_player_damage" */ -export type v_player_damage_select_column = 'avg_damage_per_round' | 'player_steam_id' | 'total_damage' | 'total_rounds' - - -/** aggregate stddev on columns */ -export interface v_player_damage_stddev_fields { - avg_damage_per_round: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - total_damage: (Scalars['Float'] | null) - total_rounds: (Scalars['Float'] | null) - __typename: 'v_player_damage_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface v_player_damage_stddev_pop_fields { - avg_damage_per_round: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - total_damage: (Scalars['Float'] | null) - total_rounds: (Scalars['Float'] | null) - __typename: 'v_player_damage_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface v_player_damage_stddev_samp_fields { - avg_damage_per_round: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - total_damage: (Scalars['Float'] | null) - total_rounds: (Scalars['Float'] | null) - __typename: 'v_player_damage_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface v_player_damage_sum_fields { - avg_damage_per_round: (Scalars['bigint'] | null) - player_steam_id: (Scalars['bigint'] | null) - total_damage: (Scalars['bigint'] | null) - total_rounds: (Scalars['bigint'] | null) - __typename: 'v_player_damage_sum_fields' -} - - -/** aggregate var_pop on columns */ -export interface v_player_damage_var_pop_fields { - avg_damage_per_round: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - total_damage: (Scalars['Float'] | null) - total_rounds: (Scalars['Float'] | null) - __typename: 'v_player_damage_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface v_player_damage_var_samp_fields { - avg_damage_per_round: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - total_damage: (Scalars['Float'] | null) - total_rounds: (Scalars['Float'] | null) - __typename: 'v_player_damage_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface v_player_damage_variance_fields { - avg_damage_per_round: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - total_damage: (Scalars['Float'] | null) - total_rounds: (Scalars['Float'] | null) - __typename: 'v_player_damage_variance_fields' -} - - -/** columns and relationships of "v_player_elo" */ -export interface v_player_elo { - actual_score: (Scalars['float8'] | null) - assists: (Scalars['Int'] | null) - current_elo: (Scalars['Int'] | null) - damage: (Scalars['Int'] | null) - damage_percent: (Scalars['float8'] | null) - deaths: (Scalars['Int'] | null) - elo_change: (Scalars['Int'] | null) - expected_score: (Scalars['float8'] | null) - impact: (Scalars['float8'] | null) - k_factor: (Scalars['Int'] | null) - kda: (Scalars['float8'] | null) - kills: (Scalars['Int'] | null) - map_losses: (Scalars['Int'] | null) - map_wins: (Scalars['Int'] | null) - /** An object relationship */ - match: (matches | null) - match_created_at: (Scalars['timestamptz'] | null) - match_id: (Scalars['uuid'] | null) - match_result: (Scalars['String'] | null) - opponent_team_elo_avg: (Scalars['float8'] | null) - performance_multiplier: (Scalars['float8'] | null) - player_name: (Scalars['String'] | null) - player_steam_id: (Scalars['bigint'] | null) - player_team_elo_avg: (Scalars['float8'] | null) - rating_for_expected: (Scalars['float8'] | null) - season_id: (Scalars['uuid'] | null) - series_multiplier: (Scalars['Int'] | null) - team_avg_kda: (Scalars['float8'] | null) - type: (Scalars['String'] | null) - updated_elo: (Scalars['Int'] | null) - __typename: 'v_player_elo' -} - - -/** aggregated selection of "v_player_elo" */ -export interface v_player_elo_aggregate { - aggregate: (v_player_elo_aggregate_fields | null) - nodes: v_player_elo[] - __typename: 'v_player_elo_aggregate' -} - - -/** aggregate fields of "v_player_elo" */ -export interface v_player_elo_aggregate_fields { - avg: (v_player_elo_avg_fields | null) - count: Scalars['Int'] - max: (v_player_elo_max_fields | null) - min: (v_player_elo_min_fields | null) - stddev: (v_player_elo_stddev_fields | null) - stddev_pop: (v_player_elo_stddev_pop_fields | null) - stddev_samp: (v_player_elo_stddev_samp_fields | null) - sum: (v_player_elo_sum_fields | null) - var_pop: (v_player_elo_var_pop_fields | null) - var_samp: (v_player_elo_var_samp_fields | null) - variance: (v_player_elo_variance_fields | null) - __typename: 'v_player_elo_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface v_player_elo_avg_fields { - actual_score: (Scalars['Float'] | null) - assists: (Scalars['Float'] | null) - current_elo: (Scalars['Float'] | null) - damage: (Scalars['Float'] | null) - damage_percent: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - elo_change: (Scalars['Float'] | null) - expected_score: (Scalars['Float'] | null) - impact: (Scalars['Float'] | null) - k_factor: (Scalars['Float'] | null) - kda: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - map_losses: (Scalars['Float'] | null) - map_wins: (Scalars['Float'] | null) - opponent_team_elo_avg: (Scalars['Float'] | null) - performance_multiplier: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - player_team_elo_avg: (Scalars['Float'] | null) - 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_avg_fields' -} - - -/** aggregate max on columns */ -export interface v_player_elo_max_fields { - actual_score: (Scalars['float8'] | null) - assists: (Scalars['Int'] | null) - current_elo: (Scalars['Int'] | null) - damage: (Scalars['Int'] | null) - damage_percent: (Scalars['float8'] | null) - deaths: (Scalars['Int'] | null) - elo_change: (Scalars['Int'] | null) - expected_score: (Scalars['float8'] | null) - impact: (Scalars['float8'] | null) - k_factor: (Scalars['Int'] | null) - kda: (Scalars['float8'] | null) - kills: (Scalars['Int'] | null) - map_losses: (Scalars['Int'] | null) - map_wins: (Scalars['Int'] | null) - match_created_at: (Scalars['timestamptz'] | null) - match_id: (Scalars['uuid'] | null) - match_result: (Scalars['String'] | null) - opponent_team_elo_avg: (Scalars['float8'] | null) - performance_multiplier: (Scalars['float8'] | null) - player_name: (Scalars['String'] | null) - player_steam_id: (Scalars['bigint'] | null) - player_team_elo_avg: (Scalars['float8'] | null) - rating_for_expected: (Scalars['float8'] | null) - season_id: (Scalars['uuid'] | null) - series_multiplier: (Scalars['Int'] | null) - team_avg_kda: (Scalars['float8'] | null) - type: (Scalars['String'] | null) - updated_elo: (Scalars['Int'] | null) - __typename: 'v_player_elo_max_fields' -} - - -/** aggregate min on columns */ -export interface v_player_elo_min_fields { - actual_score: (Scalars['float8'] | null) - assists: (Scalars['Int'] | null) - current_elo: (Scalars['Int'] | null) - damage: (Scalars['Int'] | null) - damage_percent: (Scalars['float8'] | null) - deaths: (Scalars['Int'] | null) - elo_change: (Scalars['Int'] | null) - expected_score: (Scalars['float8'] | null) - impact: (Scalars['float8'] | null) - k_factor: (Scalars['Int'] | null) - kda: (Scalars['float8'] | null) - kills: (Scalars['Int'] | null) - map_losses: (Scalars['Int'] | null) - map_wins: (Scalars['Int'] | null) - match_created_at: (Scalars['timestamptz'] | null) - match_id: (Scalars['uuid'] | null) - match_result: (Scalars['String'] | null) - opponent_team_elo_avg: (Scalars['float8'] | null) - performance_multiplier: (Scalars['float8'] | null) - player_name: (Scalars['String'] | null) - player_steam_id: (Scalars['bigint'] | null) - player_team_elo_avg: (Scalars['float8'] | null) - rating_for_expected: (Scalars['float8'] | null) - season_id: (Scalars['uuid'] | null) - series_multiplier: (Scalars['Int'] | null) - team_avg_kda: (Scalars['float8'] | null) - type: (Scalars['String'] | null) - updated_elo: (Scalars['Int'] | null) - __typename: 'v_player_elo_min_fields' -} - - -/** select columns of table "v_player_elo" */ -export type v_player_elo_select_column = 'actual_score' | 'assists' | 'current_elo' | 'damage' | 'damage_percent' | 'deaths' | 'elo_change' | 'expected_score' | 'impact' | 'k_factor' | 'kda' | 'kills' | 'map_losses' | 'map_wins' | 'match_created_at' | 'match_id' | 'match_result' | 'opponent_team_elo_avg' | 'performance_multiplier' | 'player_name' | 'player_steam_id' | 'player_team_elo_avg' | 'rating_for_expected' | 'season_id' | 'series_multiplier' | 'team_avg_kda' | 'type' | 'updated_elo' - - -/** select "v_player_elo_aggregate_bool_exp_avg_arguments_columns" columns of table "v_player_elo" */ -export type v_player_elo_select_column_v_player_elo_aggregate_bool_exp_avg_arguments_columns = 'actual_score' | 'damage_percent' | 'expected_score' | 'impact' | 'kda' | 'opponent_team_elo_avg' | 'performance_multiplier' | 'player_team_elo_avg' | 'rating_for_expected' | 'team_avg_kda' - - -/** select "v_player_elo_aggregate_bool_exp_corr_arguments_columns" columns of table "v_player_elo" */ -export type v_player_elo_select_column_v_player_elo_aggregate_bool_exp_corr_arguments_columns = 'actual_score' | 'damage_percent' | 'expected_score' | 'impact' | 'kda' | 'opponent_team_elo_avg' | 'performance_multiplier' | 'player_team_elo_avg' | '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' -} - - -/** 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' -} - - -/** 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' -} - - -/** 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' -} - - -/** 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 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_match_head_to_head_stddev_fields { - attacked_steam_id: (Scalars['Float'] | null) - attacker_steam_id: (Scalars['Float'] | null) - damage_dealt: (Scalars['Float'] | null) - flash_count: (Scalars['Float'] | null) - headshot_kills: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - __typename: 'v_player_match_head_to_head_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface v_player_match_head_to_head_stddev_pop_fields { - attacked_steam_id: (Scalars['Float'] | null) - attacker_steam_id: (Scalars['Float'] | null) - damage_dealt: (Scalars['Float'] | null) - flash_count: (Scalars['Float'] | null) - headshot_kills: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - __typename: 'v_player_match_head_to_head_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface v_player_match_head_to_head_stddev_samp_fields { - attacked_steam_id: (Scalars['Float'] | null) - attacker_steam_id: (Scalars['Float'] | null) - damage_dealt: (Scalars['Float'] | null) - flash_count: (Scalars['Float'] | null) - headshot_kills: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - __typename: 'v_player_match_head_to_head_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface v_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_match_head_to_head_var_pop_fields { - attacked_steam_id: (Scalars['Float'] | null) - attacker_steam_id: (Scalars['Float'] | null) - damage_dealt: (Scalars['Float'] | null) - flash_count: (Scalars['Float'] | null) - headshot_kills: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - __typename: 'v_player_match_head_to_head_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface v_player_match_head_to_head_var_samp_fields { - attacked_steam_id: (Scalars['Float'] | null) - attacker_steam_id: (Scalars['Float'] | null) - damage_dealt: (Scalars['Float'] | null) - flash_count: (Scalars['Float'] | null) - headshot_kills: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - __typename: 'v_player_match_head_to_head_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface v_player_match_head_to_head_variance_fields { - attacked_steam_id: (Scalars['Float'] | null) - attacker_steam_id: (Scalars['Float'] | null) - damage_dealt: (Scalars['Float'] | null) - flash_count: (Scalars['Float'] | null) - headshot_kills: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - __typename: 'v_player_match_head_to_head_variance_fields' -} - - -/** columns and relationships of "v_player_match_map_hltv" */ -export interface v_player_match_map_hltv { - adr: (Scalars['numeric'] | null) - apr: (Scalars['numeric'] | null) - dpr: (Scalars['numeric'] | null) - hltv_rating: (Scalars['numeric'] | null) - kast_pct: (Scalars['numeric'] | null) - kpr: (Scalars['numeric'] | null) - /** An object relationship */ - match: (matches | null) - match_id: (Scalars['uuid'] | null) - /** An object relationship */ - match_map: (match_maps | null) - match_map_id: (Scalars['uuid'] | null) - /** An object relationship */ - player: (players | null) - rounds_played: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'v_player_match_map_hltv' -} - - -/** 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_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_match_map_hltv_max_fields | null) - min: (v_player_match_map_hltv_min_fields | null) - stddev: (v_player_match_map_hltv_stddev_fields | null) - stddev_pop: (v_player_match_map_hltv_stddev_pop_fields | null) - stddev_samp: (v_player_match_map_hltv_stddev_samp_fields | null) - sum: (v_player_match_map_hltv_sum_fields | null) - var_pop: (v_player_match_map_hltv_var_pop_fields | null) - var_samp: (v_player_match_map_hltv_var_samp_fields | null) - variance: (v_player_match_map_hltv_variance_fields | null) - __typename: 'v_player_match_map_hltv_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface v_player_match_map_hltv_avg_fields { - adr: (Scalars['Float'] | null) - apr: (Scalars['Float'] | null) - dpr: (Scalars['Float'] | null) - hltv_rating: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - kpr: (Scalars['Float'] | null) - rounds_played: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'v_player_match_map_hltv_avg_fields' -} - - -/** aggregate max on columns */ -export interface v_player_match_map_hltv_max_fields { - adr: (Scalars['numeric'] | null) - apr: (Scalars['numeric'] | null) - dpr: (Scalars['numeric'] | null) - hltv_rating: (Scalars['numeric'] | null) - kast_pct: (Scalars['numeric'] | null) - kpr: (Scalars['numeric'] | null) - match_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - rounds_played: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'v_player_match_map_hltv_max_fields' -} - - -/** aggregate min on columns */ -export interface v_player_match_map_hltv_min_fields { - adr: (Scalars['numeric'] | null) - apr: (Scalars['numeric'] | null) - dpr: (Scalars['numeric'] | null) - hltv_rating: (Scalars['numeric'] | null) - kast_pct: (Scalars['numeric'] | null) - kpr: (Scalars['numeric'] | null) - match_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - rounds_played: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'v_player_match_map_hltv_min_fields' -} - - -/** 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_match_map_hltv_stddev_fields { - adr: (Scalars['Float'] | null) - apr: (Scalars['Float'] | null) - dpr: (Scalars['Float'] | null) - hltv_rating: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - kpr: (Scalars['Float'] | null) - rounds_played: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'v_player_match_map_hltv_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface v_player_match_map_hltv_stddev_pop_fields { - adr: (Scalars['Float'] | null) - apr: (Scalars['Float'] | null) - dpr: (Scalars['Float'] | null) - hltv_rating: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - kpr: (Scalars['Float'] | null) - rounds_played: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'v_player_match_map_hltv_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface v_player_match_map_hltv_stddev_samp_fields { - adr: (Scalars['Float'] | null) - apr: (Scalars['Float'] | null) - dpr: (Scalars['Float'] | null) - hltv_rating: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - kpr: (Scalars['Float'] | null) - rounds_played: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'v_player_match_map_hltv_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface v_player_match_map_hltv_sum_fields { - adr: (Scalars['numeric'] | null) - apr: (Scalars['numeric'] | null) - dpr: (Scalars['numeric'] | null) - hltv_rating: (Scalars['numeric'] | null) - kast_pct: (Scalars['numeric'] | null) - kpr: (Scalars['numeric'] | null) - rounds_played: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'v_player_match_map_hltv_sum_fields' -} - - -/** aggregate var_pop on columns */ -export interface v_player_match_map_hltv_var_pop_fields { - adr: (Scalars['Float'] | null) - apr: (Scalars['Float'] | null) - dpr: (Scalars['Float'] | null) - hltv_rating: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - kpr: (Scalars['Float'] | null) - rounds_played: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'v_player_match_map_hltv_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface v_player_match_map_hltv_var_samp_fields { - adr: (Scalars['Float'] | null) - apr: (Scalars['Float'] | null) - dpr: (Scalars['Float'] | null) - hltv_rating: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - kpr: (Scalars['Float'] | null) - rounds_played: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'v_player_match_map_hltv_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface v_player_match_map_hltv_variance_fields { - adr: (Scalars['Float'] | null) - apr: (Scalars['Float'] | null) - dpr: (Scalars['Float'] | null) - hltv_rating: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - kpr: (Scalars['Float'] | null) - rounds_played: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'v_player_match_map_hltv_variance_fields' -} - - -/** columns and relationships of "v_player_match_map_roles" */ -export interface v_player_match_map_roles { - adr: (Scalars['numeric'] | null) - awp_kills: (Scalars['Int'] | null) - awp_share: (Scalars['numeric'] | null) - deaths: (Scalars['Int'] | null) - dpr: (Scalars['numeric'] | null) - entry_rate: (Scalars['numeric'] | null) - flash_assists: (Scalars['Int'] | null) - hltv_rating: (Scalars['numeric'] | null) - kast_pct: (Scalars['numeric'] | null) - kills: (Scalars['Int'] | null) - kpr: (Scalars['numeric'] | null) - lineup_id: (Scalars['uuid'] | null) - /** An object relationship */ - match: (matches | null) - match_id: (Scalars['uuid'] | null) - /** An object relationship */ - match_map: (match_maps | null) - match_map_id: (Scalars['uuid'] | null) - open_deaths: (Scalars['Int'] | null) - open_kills: (Scalars['Int'] | null) - opening_attempts: (Scalars['Int'] | null) - /** An object relationship */ - player: (players | null) - role: (Scalars['String'] | null) - rounds: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - support_idx: (Scalars['numeric'] | null) - total_kills: (Scalars['Int'] | null) - trade_kill_successes: (Scalars['Int'] | null) - traded_death_successes: (Scalars['Int'] | null) - util_damage: (Scalars['Int'] | null) - __typename: 'v_player_match_map_roles' -} - - -/** aggregated selection of "v_player_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_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_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_match_map_roles_avg_fields { - adr: (Scalars['Float'] | null) - awp_kills: (Scalars['Float'] | null) - awp_share: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - dpr: (Scalars['Float'] | null) - entry_rate: (Scalars['Float'] | null) - flash_assists: (Scalars['Float'] | null) - hltv_rating: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - kpr: (Scalars['Float'] | null) - open_deaths: (Scalars['Float'] | null) - open_kills: (Scalars['Float'] | null) - opening_attempts: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - support_idx: (Scalars['Float'] | null) - total_kills: (Scalars['Float'] | null) - trade_kill_successes: (Scalars['Float'] | null) - traded_death_successes: (Scalars['Float'] | null) - util_damage: (Scalars['Float'] | null) - __typename: 'v_player_match_map_roles_avg_fields' -} - - -/** aggregate max on columns */ -export interface v_player_match_map_roles_max_fields { - adr: (Scalars['numeric'] | null) - awp_kills: (Scalars['Int'] | null) - awp_share: (Scalars['numeric'] | null) - deaths: (Scalars['Int'] | null) - dpr: (Scalars['numeric'] | null) - entry_rate: (Scalars['numeric'] | null) - flash_assists: (Scalars['Int'] | null) - hltv_rating: (Scalars['numeric'] | null) - kast_pct: (Scalars['numeric'] | null) - kills: (Scalars['Int'] | null) - kpr: (Scalars['numeric'] | null) - lineup_id: (Scalars['uuid'] | null) - match_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - open_deaths: (Scalars['Int'] | null) - open_kills: (Scalars['Int'] | null) - opening_attempts: (Scalars['Int'] | null) - role: (Scalars['String'] | null) - rounds: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - support_idx: (Scalars['numeric'] | null) - total_kills: (Scalars['Int'] | null) - trade_kill_successes: (Scalars['Int'] | null) - traded_death_successes: (Scalars['Int'] | null) - util_damage: (Scalars['Int'] | null) - __typename: 'v_player_match_map_roles_max_fields' -} - - -/** aggregate min on columns */ -export interface v_player_match_map_roles_min_fields { - adr: (Scalars['numeric'] | null) - awp_kills: (Scalars['Int'] | null) - awp_share: (Scalars['numeric'] | null) - deaths: (Scalars['Int'] | null) - dpr: (Scalars['numeric'] | null) - entry_rate: (Scalars['numeric'] | null) - flash_assists: (Scalars['Int'] | null) - hltv_rating: (Scalars['numeric'] | null) - kast_pct: (Scalars['numeric'] | null) - kills: (Scalars['Int'] | null) - kpr: (Scalars['numeric'] | null) - lineup_id: (Scalars['uuid'] | null) - match_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - open_deaths: (Scalars['Int'] | null) - open_kills: (Scalars['Int'] | null) - opening_attempts: (Scalars['Int'] | null) - role: (Scalars['String'] | null) - rounds: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - support_idx: (Scalars['numeric'] | null) - total_kills: (Scalars['Int'] | null) - trade_kill_successes: (Scalars['Int'] | null) - traded_death_successes: (Scalars['Int'] | null) - util_damage: (Scalars['Int'] | null) - __typename: 'v_player_match_map_roles_min_fields' -} - - -/** select columns of table "v_player_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_match_map_roles_stddev_fields { - adr: (Scalars['Float'] | null) - awp_kills: (Scalars['Float'] | null) - awp_share: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - dpr: (Scalars['Float'] | null) - entry_rate: (Scalars['Float'] | null) - flash_assists: (Scalars['Float'] | null) - hltv_rating: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - kpr: (Scalars['Float'] | null) - open_deaths: (Scalars['Float'] | null) - open_kills: (Scalars['Float'] | null) - opening_attempts: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - support_idx: (Scalars['Float'] | null) - total_kills: (Scalars['Float'] | null) - trade_kill_successes: (Scalars['Float'] | null) - traded_death_successes: (Scalars['Float'] | null) - util_damage: (Scalars['Float'] | null) - __typename: 'v_player_match_map_roles_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface v_player_match_map_roles_stddev_pop_fields { - adr: (Scalars['Float'] | null) - awp_kills: (Scalars['Float'] | null) - awp_share: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - dpr: (Scalars['Float'] | null) - entry_rate: (Scalars['Float'] | null) - flash_assists: (Scalars['Float'] | null) - hltv_rating: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - kpr: (Scalars['Float'] | null) - open_deaths: (Scalars['Float'] | null) - open_kills: (Scalars['Float'] | null) - opening_attempts: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - support_idx: (Scalars['Float'] | null) - total_kills: (Scalars['Float'] | null) - trade_kill_successes: (Scalars['Float'] | null) - traded_death_successes: (Scalars['Float'] | null) - util_damage: (Scalars['Float'] | null) - __typename: 'v_player_match_map_roles_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface v_player_match_map_roles_stddev_samp_fields { - adr: (Scalars['Float'] | null) - awp_kills: (Scalars['Float'] | null) - awp_share: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - dpr: (Scalars['Float'] | null) - entry_rate: (Scalars['Float'] | null) - flash_assists: (Scalars['Float'] | null) - hltv_rating: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - kpr: (Scalars['Float'] | null) - open_deaths: (Scalars['Float'] | null) - open_kills: (Scalars['Float'] | null) - opening_attempts: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - support_idx: (Scalars['Float'] | null) - total_kills: (Scalars['Float'] | null) - trade_kill_successes: (Scalars['Float'] | null) - traded_death_successes: (Scalars['Float'] | null) - util_damage: (Scalars['Float'] | null) - __typename: 'v_player_match_map_roles_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface v_player_match_map_roles_sum_fields { - adr: (Scalars['numeric'] | null) - awp_kills: (Scalars['Int'] | null) - awp_share: (Scalars['numeric'] | null) - deaths: (Scalars['Int'] | null) - dpr: (Scalars['numeric'] | null) - entry_rate: (Scalars['numeric'] | null) - flash_assists: (Scalars['Int'] | null) - hltv_rating: (Scalars['numeric'] | null) - kast_pct: (Scalars['numeric'] | null) - kills: (Scalars['Int'] | null) - kpr: (Scalars['numeric'] | null) - open_deaths: (Scalars['Int'] | null) - open_kills: (Scalars['Int'] | null) - opening_attempts: (Scalars['Int'] | null) - rounds: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - support_idx: (Scalars['numeric'] | null) - total_kills: (Scalars['Int'] | null) - trade_kill_successes: (Scalars['Int'] | null) - traded_death_successes: (Scalars['Int'] | null) - util_damage: (Scalars['Int'] | null) - __typename: 'v_player_match_map_roles_sum_fields' -} - - -/** aggregate var_pop on columns */ -export interface v_player_match_map_roles_var_pop_fields { - adr: (Scalars['Float'] | null) - awp_kills: (Scalars['Float'] | null) - awp_share: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - dpr: (Scalars['Float'] | null) - entry_rate: (Scalars['Float'] | null) - flash_assists: (Scalars['Float'] | null) - hltv_rating: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - kpr: (Scalars['Float'] | null) - open_deaths: (Scalars['Float'] | null) - open_kills: (Scalars['Float'] | null) - opening_attempts: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - support_idx: (Scalars['Float'] | null) - total_kills: (Scalars['Float'] | null) - trade_kill_successes: (Scalars['Float'] | null) - traded_death_successes: (Scalars['Float'] | null) - util_damage: (Scalars['Float'] | null) - __typename: 'v_player_match_map_roles_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface v_player_match_map_roles_var_samp_fields { - adr: (Scalars['Float'] | null) - awp_kills: (Scalars['Float'] | null) - awp_share: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - dpr: (Scalars['Float'] | null) - entry_rate: (Scalars['Float'] | null) - flash_assists: (Scalars['Float'] | null) - hltv_rating: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - kpr: (Scalars['Float'] | null) - open_deaths: (Scalars['Float'] | null) - open_kills: (Scalars['Float'] | null) - opening_attempts: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - support_idx: (Scalars['Float'] | null) - total_kills: (Scalars['Float'] | null) - trade_kill_successes: (Scalars['Float'] | null) - traded_death_successes: (Scalars['Float'] | null) - util_damage: (Scalars['Float'] | null) - __typename: 'v_player_match_map_roles_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface v_player_match_map_roles_variance_fields { - adr: (Scalars['Float'] | null) - awp_kills: (Scalars['Float'] | null) - awp_share: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - dpr: (Scalars['Float'] | null) - entry_rate: (Scalars['Float'] | null) - flash_assists: (Scalars['Float'] | null) - hltv_rating: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - kpr: (Scalars['Float'] | null) - open_deaths: (Scalars['Float'] | null) - open_kills: (Scalars['Float'] | null) - opening_attempts: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - support_idx: (Scalars['Float'] | null) - total_kills: (Scalars['Float'] | null) - trade_kill_successes: (Scalars['Float'] | null) - traded_death_successes: (Scalars['Float'] | null) - util_damage: (Scalars['Float'] | null) - __typename: 'v_player_match_map_roles_variance_fields' -} - - -/** columns and relationships of "v_player_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) - 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_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_performance" */ -export interface v_player_match_performance_aggregate_fields { - avg: (v_player_match_performance_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' -} - - -/** aggregate avg on columns */ -export interface v_player_match_performance_avg_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_player_match_performance_avg_fields' -} - - -/** aggregate max on columns */ -export interface v_player_match_performance_max_fields { - assists: (Scalars['Int'] | null) - deaths: (Scalars['Int'] | null) - kills: (Scalars['Int'] | null) - map_id: (Scalars['uuid'] | null) - match_created_at: (Scalars['timestamptz'] | null) - match_id: (Scalars['uuid'] | null) - match_result: (Scalars['String'] | null) - player_steam_id: (Scalars['bigint'] | null) - source: (Scalars['String'] | null) - type: (Scalars['String'] | null) - __typename: 'v_player_match_performance_max_fields' -} - - -/** aggregate min on columns */ -export interface v_player_match_performance_min_fields { - assists: (Scalars['Int'] | null) - deaths: (Scalars['Int'] | null) - kills: (Scalars['Int'] | null) - map_id: (Scalars['uuid'] | null) - match_created_at: (Scalars['timestamptz'] | null) - match_id: (Scalars['uuid'] | null) - match_result: (Scalars['String'] | null) - player_steam_id: (Scalars['bigint'] | null) - source: (Scalars['String'] | null) - type: (Scalars['String'] | null) - __typename: 'v_player_match_performance_min_fields' -} - - -/** 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_performance_stddev_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_player_match_performance_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface v_player_match_performance_stddev_pop_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_player_match_performance_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface v_player_match_performance_stddev_samp_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_player_match_performance_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface v_player_match_performance_sum_fields { - assists: (Scalars['Int'] | null) - deaths: (Scalars['Int'] | null) - kills: (Scalars['Int'] | null) - player_steam_id: (Scalars['bigint'] | null) - __typename: 'v_player_match_performance_sum_fields' -} - - -/** aggregate var_pop on columns */ -export interface v_player_match_performance_var_pop_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_player_match_performance_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface v_player_match_performance_var_samp_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_player_match_performance_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface v_player_match_performance_variance_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_player_match_performance_variance_fields' -} - - -/** 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' -} - - -/** 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_rating" */ -export interface v_player_match_rating_aggregate_fields { - avg: (v_player_match_rating_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' -} - - -/** 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' -} - - -/** 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' -} - - -/** 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' -} - - -/** 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_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' -} - - -/** 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' -} - - -/** 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' -} - - -/** 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' -} - - -/** 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' -} - - -/** 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' -} - - -/** 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' -} - - -/** 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 */ - partner: (players | null) - partner_steam_id: (Scalars['bigint'] | null) - /** An object relationship */ - player: (players | null) - steam_id: (Scalars['bigint'] | null) - wins_together: (Scalars['Int'] | null) - __typename: 'v_player_queue_partners' -} - - -/** 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_queue_partners" */ -export interface v_player_queue_partners_aggregate_fields { - avg: (v_player_queue_partners_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' -} - - -/** 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' -} - - -/** 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' -} - - -/** 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' -} - - -/** 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_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' -} - - -/** 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' -} - - -/** 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' -} - - -/** 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' -} - - -/** 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' -} - - -/** 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' -} - - -/** 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' -} - - -/** 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' -} - - -/** 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_weapon_damage" */ -export interface v_player_weapon_damage_aggregate_fields { - avg: (v_player_weapon_damage_avg_fields | null) - count: Scalars['Int'] - max: (v_player_weapon_damage_max_fields | null) - min: (v_player_weapon_damage_min_fields | null) - stddev: (v_player_weapon_damage_stddev_fields | null) - stddev_pop: (v_player_weapon_damage_stddev_pop_fields | null) - stddev_samp: (v_player_weapon_damage_stddev_samp_fields | null) - sum: (v_player_weapon_damage_sum_fields | null) - var_pop: (v_player_weapon_damage_var_pop_fields | null) - var_samp: (v_player_weapon_damage_var_samp_fields | null) - variance: (v_player_weapon_damage_variance_fields | null) - __typename: 'v_player_weapon_damage_aggregate_fields' -} - - -/** 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' -} - - -/** 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' -} - - -/** aggregate min on columns */ -export interface v_player_weapon_damage_min_fields { - damage: (Scalars['bigint'] | null) - hits: (Scalars['bigint'] | null) - player_steam_id: (Scalars['bigint'] | null) - source: (Scalars['String'] | null) - type: (Scalars['String'] | null) - with: (Scalars['String'] | null) - __typename: 'v_player_weapon_damage_min_fields' -} - - -/** select columns of table "v_player_weapon_damage" */ -export type v_player_weapon_damage_select_column = 'damage' | 'hits' | 'player_steam_id' | 'source' | 'type' | 'with' - - -/** aggregate stddev on columns */ -export interface v_player_weapon_damage_stddev_fields { - damage: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_player_weapon_damage_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -export interface v_player_weapon_damage_stddev_pop_fields { - damage: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_player_weapon_damage_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface v_player_weapon_damage_stddev_samp_fields { - damage: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_player_weapon_damage_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface v_player_weapon_damage_sum_fields { - damage: (Scalars['bigint'] | null) - hits: (Scalars['bigint'] | null) - player_steam_id: (Scalars['bigint'] | null) - __typename: 'v_player_weapon_damage_sum_fields' -} - - -/** aggregate var_pop on columns */ -export interface v_player_weapon_damage_var_pop_fields { - damage: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_player_weapon_damage_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface v_player_weapon_damage_var_samp_fields { - damage: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_player_weapon_damage_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface v_player_weapon_damage_variance_fields { - damage: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_player_weapon_damage_variance_fields' -} - - -/** columns and relationships of "v_player_weapon_kills" */ -export interface v_player_weapon_kills { - kill_count: (Scalars['bigint'] | null) - player_steam_id: (Scalars['bigint'] | null) - rounds: (Scalars['bigint'] | null) - source: (Scalars['String'] | null) - type: (Scalars['String'] | null) - with: (Scalars['String'] | null) - __typename: 'v_player_weapon_kills' -} - - -/** aggregated selection of "v_player_weapon_kills" */ -export interface v_player_weapon_kills_aggregate { - aggregate: (v_player_weapon_kills_aggregate_fields | null) - nodes: v_player_weapon_kills[] - __typename: 'v_player_weapon_kills_aggregate' -} - - -/** aggregate fields of "v_player_weapon_kills" */ -export interface v_player_weapon_kills_aggregate_fields { - avg: (v_player_weapon_kills_avg_fields | null) - count: Scalars['Int'] - max: (v_player_weapon_kills_max_fields | null) - min: (v_player_weapon_kills_min_fields | null) - stddev: (v_player_weapon_kills_stddev_fields | null) - stddev_pop: (v_player_weapon_kills_stddev_pop_fields | null) - stddev_samp: (v_player_weapon_kills_stddev_samp_fields | null) - sum: (v_player_weapon_kills_sum_fields | null) - var_pop: (v_player_weapon_kills_var_pop_fields | null) - var_samp: (v_player_weapon_kills_var_samp_fields | null) - variance: (v_player_weapon_kills_variance_fields | null) - __typename: 'v_player_weapon_kills_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface v_player_weapon_kills_avg_fields { - kill_count: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - __typename: 'v_player_weapon_kills_avg_fields' -} - - -/** aggregate max on columns */ -export interface v_player_weapon_kills_max_fields { - kill_count: (Scalars['bigint'] | null) - player_steam_id: (Scalars['bigint'] | null) - rounds: (Scalars['bigint'] | null) - source: (Scalars['String'] | null) - type: (Scalars['String'] | null) - with: (Scalars['String'] | null) - __typename: 'v_player_weapon_kills_max_fields' -} - - -/** aggregate min on columns */ -export interface v_player_weapon_kills_min_fields { - kill_count: (Scalars['bigint'] | null) - player_steam_id: (Scalars['bigint'] | null) - rounds: (Scalars['bigint'] | null) - source: (Scalars['String'] | null) - type: (Scalars['String'] | null) - with: (Scalars['String'] | null) - __typename: 'v_player_weapon_kills_min_fields' -} - - -/** select columns of table "v_player_weapon_kills" */ -export type v_player_weapon_kills_select_column = 'kill_count' | 'player_steam_id' | 'rounds' | 'source' | 'type' | 'with' - - -/** aggregate stddev on columns */ -export interface v_player_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_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_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_weapon_kills_sum_fields { - kill_count: (Scalars['bigint'] | null) - player_steam_id: (Scalars['bigint'] | null) - rounds: (Scalars['bigint'] | null) - __typename: 'v_player_weapon_kills_sum_fields' -} - - -/** aggregate var_pop on columns */ -export interface v_player_weapon_kills_var_pop_fields { - kill_count: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - __typename: 'v_player_weapon_kills_var_pop_fields' -} - - -/** aggregate var_samp on columns */ -export interface v_player_weapon_kills_var_samp_fields { - kill_count: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - __typename: 'v_player_weapon_kills_var_samp_fields' -} - - -/** aggregate variance on columns */ -export interface v_player_weapon_kills_variance_fields { - kill_count: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - __typename: 'v_player_weapon_kills_variance_fields' -} - - -/** columns and relationships of "v_pool_maps" */ -export interface v_pool_maps { - active_pool: (Scalars['Boolean'] | null) - id: (Scalars['uuid'] | null) - label: (Scalars['String'] | null) - /** An object relationship */ - map_pool: (map_pools | null) - map_pool_id: (Scalars['uuid'] | null) - name: (Scalars['String'] | null) - patch: (Scalars['String'] | null) - poster: (Scalars['String'] | null) - type: (Scalars['String'] | null) - workshop_map_id: (Scalars['String'] | null) - __typename: 'v_pool_maps' -} - - -/** aggregated selection of "v_pool_maps" */ -export interface v_pool_maps_aggregate { - aggregate: (v_pool_maps_aggregate_fields | null) - nodes: v_pool_maps[] - __typename: 'v_pool_maps_aggregate' -} - - -/** aggregate fields of "v_pool_maps" */ -export interface v_pool_maps_aggregate_fields { - count: Scalars['Int'] - max: (v_pool_maps_max_fields | null) - min: (v_pool_maps_min_fields | null) - __typename: 'v_pool_maps_aggregate_fields' -} - - -/** aggregate max on columns */ -export interface v_pool_maps_max_fields { - id: (Scalars['uuid'] | null) - label: (Scalars['String'] | null) - map_pool_id: (Scalars['uuid'] | null) - name: (Scalars['String'] | null) - patch: (Scalars['String'] | null) - poster: (Scalars['String'] | null) - type: (Scalars['String'] | null) - workshop_map_id: (Scalars['String'] | null) - __typename: 'v_pool_maps_max_fields' -} - - -/** aggregate min on columns */ -export interface v_pool_maps_min_fields { - id: (Scalars['uuid'] | null) - label: (Scalars['String'] | null) - map_pool_id: (Scalars['uuid'] | null) - name: (Scalars['String'] | null) - patch: (Scalars['String'] | null) - poster: (Scalars['String'] | null) - type: (Scalars['String'] | null) - workshop_map_id: (Scalars['String'] | null) - __typename: 'v_pool_maps_min_fields' -} - - -/** response of any mutation on the table "v_pool_maps" */ -export interface v_pool_maps_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: v_pool_maps[] - __typename: 'v_pool_maps_mutation_response' -} - - -/** select columns of table "v_pool_maps" */ -export type v_pool_maps_select_column = 'active_pool' | 'id' | 'label' | 'map_pool_id' | 'name' | 'patch' | 'poster' | 'type' | 'workshop_map_id' - - -/** select "v_pool_maps_aggregate_bool_exp_bool_and_arguments_columns" columns of table "v_pool_maps" */ -export type v_pool_maps_select_column_v_pool_maps_aggregate_bool_exp_bool_and_arguments_columns = 'active_pool' - - -/** select "v_pool_maps_aggregate_bool_exp_bool_or_arguments_columns" columns of table "v_pool_maps" */ -export type v_pool_maps_select_column_v_pool_maps_aggregate_bool_exp_bool_or_arguments_columns = 'active_pool' - - -/** columns and relationships of "v_steam_account_pool_status" */ -export interface v_steam_account_pool_status { - busy_accounts: (Scalars['Int'] | null) - free_accounts: (Scalars['Int'] | null) - id: (Scalars['Int'] | null) - total_accounts: (Scalars['Int'] | null) - __typename: 'v_steam_account_pool_status' -} - - -/** aggregated selection of "v_steam_account_pool_status" */ -export interface v_steam_account_pool_status_aggregate { - aggregate: (v_steam_account_pool_status_aggregate_fields | null) - nodes: v_steam_account_pool_status[] - __typename: 'v_steam_account_pool_status_aggregate' -} - - -/** aggregate fields of "v_steam_account_pool_status" */ -export interface v_steam_account_pool_status_aggregate_fields { - avg: (v_steam_account_pool_status_avg_fields | null) - count: Scalars['Int'] - max: (v_steam_account_pool_status_max_fields | null) - min: (v_steam_account_pool_status_min_fields | null) - stddev: (v_steam_account_pool_status_stddev_fields | null) - stddev_pop: (v_steam_account_pool_status_stddev_pop_fields | null) - stddev_samp: (v_steam_account_pool_status_stddev_samp_fields | null) - sum: (v_steam_account_pool_status_sum_fields | null) - var_pop: (v_steam_account_pool_status_var_pop_fields | null) - var_samp: (v_steam_account_pool_status_var_samp_fields | null) - variance: (v_steam_account_pool_status_variance_fields | null) - __typename: 'v_steam_account_pool_status_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface v_steam_account_pool_status_avg_fields { - busy_accounts: (Scalars['Float'] | null) - free_accounts: (Scalars['Float'] | null) - id: (Scalars['Float'] | null) - total_accounts: (Scalars['Float'] | null) - __typename: 'v_steam_account_pool_status_avg_fields' -} - - -/** aggregate max on columns */ -export interface v_steam_account_pool_status_max_fields { - busy_accounts: (Scalars['Int'] | null) - free_accounts: (Scalars['Int'] | null) - id: (Scalars['Int'] | null) - total_accounts: (Scalars['Int'] | null) - __typename: 'v_steam_account_pool_status_max_fields' -} - - -/** aggregate min on columns */ -export interface v_steam_account_pool_status_min_fields { - busy_accounts: (Scalars['Int'] | null) - free_accounts: (Scalars['Int'] | null) - id: (Scalars['Int'] | null) - total_accounts: (Scalars['Int'] | null) - __typename: 'v_steam_account_pool_status_min_fields' -} - - -/** select columns of table "v_steam_account_pool_status" */ -export type v_steam_account_pool_status_select_column = 'busy_accounts' | 'free_accounts' | 'id' | 'total_accounts' - - -/** aggregate stddev on columns */ -export interface v_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_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_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_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_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_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_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_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 */ - team: (teams | null) - team_id: (Scalars['uuid'] | null) - __typename: 'v_team_ranks' -} - - -/** 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_team_ranks" */ -export interface v_team_ranks_aggregate_fields { - avg: (v_team_ranks_avg_fields | null) - count: Scalars['Int'] - max: (v_team_ranks_max_fields | null) - min: (v_team_ranks_min_fields | null) - stddev: (v_team_ranks_stddev_fields | null) - stddev_pop: (v_team_ranks_stddev_pop_fields | null) - stddev_samp: (v_team_ranks_stddev_samp_fields | null) - sum: (v_team_ranks_sum_fields | null) - var_pop: (v_team_ranks_var_pop_fields | null) - var_samp: (v_team_ranks_var_samp_fields | null) - variance: (v_team_ranks_variance_fields | null) - __typename: 'v_team_ranks_aggregate_fields' -} - - -/** 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' -} - - -/** 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' -} - - -/** 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' -} - - -/** 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_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_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_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_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_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_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_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_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_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_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' -} - - -/** 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' -} - - -/** 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' -} - - -/** 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' -} - - -/** 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_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_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_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_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_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_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_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_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_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_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' -} - - -/** 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' -} - - -/** 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_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_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' -} - - -/** 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_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_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_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_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_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_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_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_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' -} - - -/** 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_team_tournament_results" */ -export interface v_team_tournament_results_aggregate_fields { - avg: (v_team_tournament_results_avg_fields | null) - count: Scalars['Int'] - max: (v_team_tournament_results_max_fields | null) - min: (v_team_tournament_results_min_fields | null) - stddev: (v_team_tournament_results_stddev_fields | null) - stddev_pop: (v_team_tournament_results_stddev_pop_fields | null) - stddev_samp: (v_team_tournament_results_stddev_samp_fields | null) - sum: (v_team_tournament_results_sum_fields | null) - var_pop: (v_team_tournament_results_var_pop_fields | null) - var_samp: (v_team_tournament_results_var_samp_fields | null) - variance: (v_team_tournament_results_variance_fields | null) - __typename: 'v_team_tournament_results_aggregate_fields' -} - - -/** aggregate 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 max on columns */ -export interface v_team_tournament_results_max_fields { - head_to_head_match_wins: (Scalars['Int'] | null) - head_to_head_rounds_won: (Scalars['Int'] | null) - losses: (Scalars['Int'] | null) - maps_lost: (Scalars['Int'] | null) - maps_won: (Scalars['Int'] | null) - matches_played: (Scalars['Int'] | null) - matches_remaining: (Scalars['Int'] | null) - rounds_lost: (Scalars['Int'] | null) - rounds_won: (Scalars['Int'] | null) - team_kdr: (Scalars['float8'] | null) - total_deaths: (Scalars['Int'] | null) - total_kills: (Scalars['Int'] | null) - tournament_id: (Scalars['uuid'] | null) - tournament_team_id: (Scalars['uuid'] | null) - wins: (Scalars['Int'] | null) - __typename: 'v_team_tournament_results_max_fields' -} - - -/** aggregate 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_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_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' - - -/** 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' - - -/** 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' - - -/** 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' - - -/** 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' - - -/** select "v_team_tournament_results_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "v_team_tournament_results" */ -export type v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_stddev_samp_arguments_columns = 'team_kdr' - - -/** select "v_team_tournament_results_aggregate_bool_exp_sum_arguments_columns" columns of table "v_team_tournament_results" */ -export type v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_sum_arguments_columns = 'team_kdr' - - -/** select "v_team_tournament_results_aggregate_bool_exp_var_samp_arguments_columns" columns of table "v_team_tournament_results" */ -export type v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_var_samp_arguments_columns = 'team_kdr' - - -/** aggregate stddev on columns */ -export interface v_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_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_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_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_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_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_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_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 "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_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' -} - - -/** aggregate avg on columns */ -export interface v_tournament_player_stats_avg_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - headshots: (Scalars['Float'] | null) - kdr: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_tournament_player_stats_avg_fields' -} - - -/** aggregate max on columns */ -export interface v_tournament_player_stats_max_fields { - assists: (Scalars['Int'] | null) - deaths: (Scalars['Int'] | null) - headshot_percentage: (Scalars['float8'] | null) - headshots: (Scalars['Int'] | null) - kdr: (Scalars['float8'] | null) - kills: (Scalars['Int'] | null) - matches_played: (Scalars['Int'] | null) - player_steam_id: (Scalars['bigint'] | null) - tournament_id: (Scalars['uuid'] | null) - __typename: 'v_tournament_player_stats_max_fields' -} - - -/** aggregate 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' -} - - -/** 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_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_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_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_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_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_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_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 - -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 -} - -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 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 - __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 - 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 -} - -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 -} - - -/** 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)} - -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']} - -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)} - -export interface ConnectionByStateGenqlSelection{ - count?: boolean | number - state?: boolean | number - wait_event_type?: boolean | number - waiting_count?: 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 - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface CreateClipRenderOutputGenqlSelection{ - job_id?: boolean | number - success?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface CreateDraftGameOutputGenqlSelection{ - draftGameId?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -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 -} - -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 -} - -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 -} - -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 -} - -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 -} - -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 -} - -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 -} - - -/** 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 -} - -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 -} - -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 -} - -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 -} - - -/** 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 -} - -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 -} - -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 -} - -export interface MapCalloutSyncOutputGenqlSelection{ - callouts?: boolean | number - maps?: 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 - __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 -} - -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 -} - -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 -} - -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 -} - -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 -} - -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 -} - -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 -} - -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 -} - -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 -} - -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 -} - -export interface ReparseAllStartedOutputGenqlSelection{ - running?: boolean | number - success?: 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 - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface SanctionResultGenqlSelection{ - enforced?: boolean | number - id?: boolean | number - message?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -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)} - -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 -} - -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 -} - -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 -} - -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 -} - -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 -} - -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 -} - - -/** 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)} - - -/** Boolean expression to compare columns of type "String". All fields are combined with logical 'AND'. */ -export interface String_comparison_exp {_eq?: (Scalars['String'] | null),_gt?: (Scalars['String'] | null),_gte?: (Scalars['String'] | null), -/** does the column match the given case-insensitive pattern */ -_ilike?: (Scalars['String'] | null),_in?: (Scalars['String'][] | null), -/** does the column match the given POSIX regular expression, case insensitive */ -_iregex?: (Scalars['String'] | null),_is_null?: (Scalars['Boolean'] | null), -/** does the column match the given pattern */ -_like?: (Scalars['String'] | null),_lt?: (Scalars['String'] | null),_lte?: (Scalars['String'] | null),_neq?: (Scalars['String'] | null), -/** does the column NOT match the given case-insensitive pattern */ -_nilike?: (Scalars['String'] | null),_nin?: (Scalars['String'][] | null), -/** does the column NOT match the given POSIX regular expression, case insensitive */ -_niregex?: (Scalars['String'] | null), -/** does the column NOT match the given pattern */ -_nlike?: (Scalars['String'] | null), -/** does the column NOT match the given POSIX regular expression, case sensitive */ -_nregex?: (Scalars['String'] | null), -/** does the column NOT match the given SQL regular expression */ -_nsimilar?: (Scalars['String'] | null), -/** does the column match the given POSIX regular expression, case sensitive */ -_regex?: (Scalars['String'] | null), -/** does the column match the given SQL regular expression */ -_similar?: (Scalars['String'] | null)} - -export interface SuccessOutputGenqlSelection{ - success?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface 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 -} - -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 -} - -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 -} - -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 -} - -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 -} - -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 -} - -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 - utility?: TelemetryUtilityTotalsGenqlSelection - utilitySources?: TelemetryUtilitySourceCountGenqlSelection - utilityTypes?: TelemetryUtilityTypeCountGenqlSelection - versions?: TelemetryVersionCountGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface TelemetryUtilitySourceCountGenqlSelection{ - lineups?: boolean | number - source?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface TelemetryUtilityTotalsGenqlSelection{ - archived?: boolean | number - attempts?: boolean | number - authors?: boolean | number - collections?: boolean | number - demoThrows?: boolean | number - demosMined?: boolean | number - driftFlagged?: boolean | number - driftScans?: boolean | number - favorites?: boolean | number - hosts?: boolean | number - lineups?: boolean | number - maps?: boolean | number - mastered?: boolean | number - metaLineups?: boolean | number - month?: boolean | number - pendingReview?: boolean | number - playbookSteps?: boolean | number - playbooks?: boolean | number - practicing?: boolean | number - previews?: boolean | number - private?: boolean | number - public?: boolean | number - repairs?: boolean | number - reported?: boolean | number - sessions?: boolean | number - sessionsFailed?: boolean | number - sessionsMonth?: boolean | number - sessionsWeek?: boolean | number - successes?: boolean | number - team?: boolean | number - verified?: boolean | number - votes?: boolean | number - week?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface TelemetryUtilityTypeCountGenqlSelection{ - lineups?: boolean | number - type?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -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 -} - -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 -} - -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 TournamentDraftOutputGenqlSelection{ - teams_created?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface TournamentInviteCodeOutputGenqlSelection{ - code?: boolean | number - 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 -} - -export interface UtilityBlockingOutputGenqlSelection{ - degraded?: boolean | number - message?: boolean | number - results?: UtilityBlockingResultGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface UtilityBlockingResultGenqlSelection{ - blocked?: boolean | number - depth?: boolean | number - transmittance?: boolean | number - utility_lineup_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface UtilityCalibrationOutputGenqlSelection{ - detail?: boolean | number - ready?: boolean | number - status?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface UtilityDriftScanOutputGenqlSelection{ - lineups?: boolean | number - scan_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface UtilityDrillLoadOutputGenqlSelection{ - map_name?: boolean | number - queued?: boolean | number - reason?: boolean | number - sent?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface UtilityImportErrorGenqlSelection{ - external_id?: boolean | number - index?: boolean | number - reason?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface UtilityImportOutputGenqlSelection{ - dry_run?: boolean | number - errors?: UtilityImportErrorGenqlSelection - failed?: boolean | number - imported?: boolean | number - total?: boolean | number - updated?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface UtilityLaunchSeedBackfillOutputGenqlSelection{ - done?: boolean | number - scanned?: boolean | number - seeded?: boolean | number - skipped?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface UtilityLineupOutputGenqlSelection{ - id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface UtilityLoadOutputGenqlSelection{ - map_name?: boolean | number - reason?: boolean | number - sent?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface UtilityMissPatternOutputGenqlSelection{ - analysed?: boolean | number - bias?: boolean | number - mean_along?: boolean | number - mean_lateral?: boolean | number - mean_vertical?: boolean | number - message?: boolean | number - players?: boolean | number - samples?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface UtilityOneWayOutputGenqlSelection{ - degraded?: boolean | number - message?: boolean | number - results?: UtilityOneWayResultGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface UtilityOneWayResultGenqlSelection{ - cause?: boolean | number - confidence?: boolean | number - contested?: boolean | number - favors?: boolean | number - index?: boolean | number - one_way?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface UtilityPlaybookCoverageOutputGenqlSelection{ - degraded?: boolean | number - message?: boolean | number - results?: UtilityPlaybookCoverageResultGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface UtilityPlaybookCoverageResultGenqlSelection{ - by_step?: boolean | number - covered?: boolean | number - depth?: boolean | number - index?: boolean | number - transmittance?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface UtilityPlaybookOutputGenqlSelection{ - id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface UtilityPlaybookStepInput {assigned_steam_id?: (Scalars['String'] | null),note?: (Scalars['String'] | null),offset_ms?: (Scalars['Int'] | null),utility_lineup_id: Scalars['uuid']} - -export interface UtilityPracticeMapChangeOutputGenqlSelection{ - map_name?: boolean | number - queued?: boolean | number - success?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface UtilityPracticePlanEntryGenqlSelection{ - attempts?: boolean | number - difficulty?: boolean | number - global_attempts?: boolean | number - global_landing_rate?: boolean | number - global_players?: boolean | number - mastered?: boolean | number - meta_throwers?: boolean | number - priority?: boolean | number - reason?: boolean | number - successes?: boolean | number - utility_lineup_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface UtilityPracticePlanOutputGenqlSelection{ - analysed?: boolean | number - entries?: UtilityPracticePlanEntryGenqlSelection - message?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface UtilityPracticeServerGenqlSelection{ - held_by?: boolean | number - id?: boolean | number - in_use?: boolean | number - label?: boolean | number - region?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface UtilityPracticeServersOutputGenqlSelection{ - servers?: UtilityPracticeServerGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface UtilityPracticeSessionOutputGenqlSelection{ - id?: boolean | number - invite_code?: boolean | number - match_id?: boolean | number - status?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface UtilityPracticeWhereOutputGenqlSelection{ - map_name?: boolean | number - on_server?: boolean | number - session_id?: boolean | number - switching?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface UtilityPurgeOutputGenqlSelection{ - dry_run?: boolean | number - lineups?: boolean | number - origin_source?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface UtilityRemineOutputGenqlSelection{ - demos?: boolean | number - done?: boolean | number - throws?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface UtilityRenderClearOutputGenqlSelection{ - cleared?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface UtilityRenderQueueOutputGenqlSelection{ - reason?: boolean | number - render_id?: boolean | number - status?: boolean | number - success?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface UtilityScratchLineupInput {client_id: Scalars['String'],eye_z: Scalars['Float'],land_x?: (Scalars['Float'] | null),land_y?: (Scalars['Float'] | null),land_z?: (Scalars['Float'] | null),map_name: Scalars['String'],name: Scalars['String'],origin_x: Scalars['Float'],origin_y: Scalars['Float'],origin_z: Scalars['Float'],side: Scalars['String'],technique: Scalars['String'],throw_strength: Scalars['String'],utility_type: Scalars['String'],view_pitch: Scalars['Float'],view_yaw: Scalars['Float']} - -export interface UtilitySightlineOutputGenqlSelection{ - degraded?: boolean | number - message?: boolean | number - results?: UtilitySightlineResultGenqlSelection - threshold?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface UtilitySightlinePairInput {from_x: Scalars['Float'],from_y: Scalars['Float'],from_z: Scalars['Float'],to_x: Scalars['Float'],to_y: Scalars['Float'],to_z: Scalars['Float']} - -export interface UtilitySightlineResultGenqlSelection{ - blocked?: boolean | number - blocked_by?: boolean | number - depth?: boolean | number - index?: boolean | number - transmittance?: boolean | number - world_blocked?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface UtilitySolveOutputGenqlSelection{ - accepted?: boolean | number - message?: boolean | number - status?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface UtilityTeamUtilityEntryGenqlSelection{ - landed?: boolean | number - players?: boolean | number - thrown?: boolean | number - utility_lineup_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface UtilityTeamUtilityOutputGenqlSelection{ - analysed?: boolean | number - entries?: UtilityTeamUtilityEntryGenqlSelection - message?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface UtilityUtilityReportOutputGenqlSelection{ - analysed?: boolean | number - by_type?: UtilityUtilityTypeReportGenqlSelection - landed?: boolean | number - matched_lineups?: boolean | number - matched_meta?: boolean | number - message?: boolean | number - radius?: boolean | number - steam_id?: boolean | number - throws?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface UtilityUtilityTypeReportGenqlSelection{ - landed?: boolean | number - matched_lineups?: boolean | number - matched_meta?: boolean | number - throws?: boolean | number - utility_type?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface WatchDemoOutputGenqlSelection{ - match_map_id?: boolean | number - session_id?: boolean | number - stream_url?: boolean | number - success?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -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 -} - - -/** 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 -} - - -/** aggregated selection of "_map_pool" */ -export interface _map_pool_aggregateGenqlSelection{ - aggregate?: _map_pool_aggregate_fieldsGenqlSelection - nodes?: _map_poolGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "_map_pool" */ -export interface _map_pool_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (_map_pool_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: _map_pool_max_fieldsGenqlSelection - min?: _map_pool_min_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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)} - - -/** 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 _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 _map_pool_min_fieldsGenqlSelection{ - map_id?: boolean | number - map_pool_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 - __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)} - - -/** primary key columns input for table: _map_pool */ -export interface _map_pool_pk_columns_input {map_id: Scalars['uuid'],map_pool_id: Scalars['uuid']} - - -/** 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)} - - -/** 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)} - - -/** Initial value of the column from where the streaming should start */ -export interface _map_pool_stream_cursor_value_input {map_id?: (Scalars['uuid'] | null),map_pool_id?: (Scalars['uuid'] | null)} - -export interface _map_pool_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (_map_pool_set_input | null), -/** filter the rows which have to be updated */ -where: _map_pool_bool_exp} - - -/** columns and relationships of "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 -} - - -/** 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)} - -export interface abandoned_matches_aggregate_bool_exp_count {arguments?: (abandoned_matches_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (abandoned_matches_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "abandoned_matches" */ -export interface abandoned_matches_aggregate_fieldsGenqlSelection{ - avg?: abandoned_matches_avg_fieldsGenqlSelection - count?: { __args: {columns?: (abandoned_matches_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: abandoned_matches_max_fieldsGenqlSelection - min?: abandoned_matches_min_fieldsGenqlSelection - stddev?: abandoned_matches_stddev_fieldsGenqlSelection - stddev_pop?: abandoned_matches_stddev_pop_fieldsGenqlSelection - stddev_samp?: abandoned_matches_stddev_samp_fieldsGenqlSelection - sum?: abandoned_matches_sum_fieldsGenqlSelection - var_pop?: abandoned_matches_var_pop_fieldsGenqlSelection - var_samp?: abandoned_matches_var_samp_fieldsGenqlSelection - variance?: abandoned_matches_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "abandoned_matches" */ -export interface abandoned_matches_aggregate_order_by {avg?: (abandoned_matches_avg_order_by | null),count?: (order_by | null),max?: (abandoned_matches_max_order_by | null),min?: (abandoned_matches_min_order_by | null),stddev?: (abandoned_matches_stddev_order_by | null),stddev_pop?: (abandoned_matches_stddev_pop_order_by | null),stddev_samp?: (abandoned_matches_stddev_samp_order_by | null),sum?: (abandoned_matches_sum_order_by | null),var_pop?: (abandoned_matches_var_pop_order_by | null),var_samp?: (abandoned_matches_var_samp_order_by | null),variance?: (abandoned_matches_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "abandoned_matches" */ -export interface abandoned_matches_arr_rel_insert_input {data: abandoned_matches_insert_input[], -/** upsert condition */ -on_conflict?: (abandoned_matches_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface abandoned_matches_avg_fieldsGenqlSelection{ - steam_id?: 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 "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)} - - -/** 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 -} - - -/** 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 - match_id?: boolean | number - steam_id?: 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{ - /** 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 -} - - -/** 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)} - - -/** 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']} - - -/** 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)} - - -/** aggregate stddev on columns */ -export interface abandoned_matches_stddev_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "abandoned_matches" */ -export interface abandoned_matches_stddev_order_by {steam_id?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface abandoned_matches_stddev_pop_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "abandoned_matches" */ -export interface abandoned_matches_stddev_pop_order_by {steam_id?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface abandoned_matches_stddev_samp_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "abandoned_matches" */ -export interface abandoned_matches_stddev_samp_order_by {steam_id?: (order_by | null)} - - -/** Streaming cursor of the table "abandoned_matches" */ -export interface abandoned_matches_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: abandoned_matches_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface abandoned_matches_stream_cursor_value_input {abandoned_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),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 -} - - -/** 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 -} - - -/** 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 -} - - -/** 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 -} - - -/** 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 - label?: boolean | number - last_used_at?: boolean | number - steam_id?: 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 - __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 - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface api_keys_avg_fieldsGenqlSelection{ - steam_id?: 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)} - - -/** 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 - label?: boolean | number - last_used_at?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface api_keys_min_fieldsGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - label?: boolean | number - last_used_at?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: 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 -} - - -/** on_conflict condition type for table "api_keys" */ -export interface api_keys_on_conflict {constraint: api_keys_constraint,update_columns?: api_keys_update_column[],where?: (api_keys_bool_exp | null)} - - -/** Ordering options when selecting data from "api_keys". */ -export interface api_keys_order_by {created_at?: (order_by | null),id?: (order_by | null),label?: (order_by | null),last_used_at?: (order_by | null),steam_id?: (order_by | null)} - - -/** primary key columns input for table: api_keys */ -export interface api_keys_pk_columns_input {id: Scalars['uuid']} - - -/** input type for 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 -} - - -/** aggregate stddev_pop on columns */ -export interface api_keys_stddev_pop_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface api_keys_stddev_samp_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "api_keys" */ -export interface api_keys_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: api_keys_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface api_keys_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),label?: (Scalars['String'] | null),last_used_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null)} - - -/** aggregate sum on columns */ -export interface api_keys_sum_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface api_keys_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (api_keys_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (api_keys_set_input | null), -/** filter the rows which have to be updated */ -where: api_keys_bool_exp} - - -/** aggregate var_pop on columns */ -export interface api_keys_var_pop_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface api_keys_var_samp_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: 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)} - - -/** 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 -} - - -/** 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 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 -} - - -/** 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 -} - - -/** 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 -} - - -/** 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 - __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{ - /** 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 -} - - -/** 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)} - - -/** 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 -} - - -/** 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 -} - - -/** 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 -} - - -/** 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 -} - - -/** 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 -} - - -/** 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 -} - - -/** 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 -} - - -/** 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 -} - - -/** aggregated selection of "awards" */ -export interface awards_aggregateGenqlSelection{ - aggregate?: awards_aggregate_fieldsGenqlSelection - nodes?: awardsGenqlSelection - __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 - __typename?: boolean | number - __scalar?: 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 -} - - -/** 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 - silhouette?: boolean | number - system_key?: boolean | number - tournament_id?: boolean | number - updated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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 - 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 -} - - -/** 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 -} - - -/** 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 -} - - -/** 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 -} - - -/** 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 -} - - -/** 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 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 -} - - -/** 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 -} - - -/** 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 "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 - __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 - __typename?: boolean | number - __scalar?: 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 -} - - -/** aggregate avg on columns */ -export interface chat_read_state_avg_fieldsGenqlSelection{ - 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)} - - -/** 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 -} - - -/** 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 -} - - -/** 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 -} - - -/** 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 -} - - -/** aggregate stddev_pop on columns */ -export interface chat_read_state_stddev_pop_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: 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 -} - - -/** 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 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 -} - - -/** aggregate var_samp on columns */ -export interface chat_read_state_var_samp_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface chat_read_state_variance_fieldsGenqlSelection{ - 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 - /** 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 -} - - -/** 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 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 -} - - -/** 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 -} - - -/** order by avg() on columns of table "clip_render_jobs" */ -export interface clip_render_jobs_avg_order_by {progress?: (order_by | null),sort_index?: (order_by | null),user_steam_id?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "clip_render_jobs". All fields are combined with a logical 'AND'. */ -export interface clip_render_jobs_bool_exp {_and?: (clip_render_jobs_bool_exp[] | null),_not?: (clip_render_jobs_bool_exp | null),_or?: (clip_render_jobs_bool_exp[] | null),clip?: (match_clips_bool_exp | null),clip_id?: (uuid_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),error_message?: (String_comparison_exp | null),game_server_node?: (game_server_nodes_bool_exp | null),game_server_node_id?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),k8s_job_name?: (String_comparison_exp | null),last_status_at?: (timestamptz_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_demo?: (match_map_demos_bool_exp | null),match_map_demo_id?: (uuid_comparison_exp | null),match_map_id?: (uuid_comparison_exp | null),paused?: (Boolean_comparison_exp | null),progress?: (numeric_comparison_exp | null),session_token?: (String_comparison_exp | null),sort_index?: (Int_comparison_exp | null),spec?: (jsonb_comparison_exp | null),status?: (String_comparison_exp | null),status_history?: (jsonb_comparison_exp | null),user?: (players_bool_exp | null),user_steam_id?: (bigint_comparison_exp | null)} - - -/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ -export interface clip_render_jobs_delete_at_path_input {spec?: (Scalars['String'][] | null),status_history?: (Scalars['String'][] | null)} - - -/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */ -export interface clip_render_jobs_delete_elem_input {spec?: (Scalars['Int'] | null),status_history?: (Scalars['Int'] | null)} - - -/** delete key/value pair or string element. key/value pairs are matched based on their key value */ -export interface clip_render_jobs_delete_key_input {spec?: (Scalars['String'] | null),status_history?: (Scalars['String'] | null)} - - -/** input type for incrementing numeric columns in table "clip_render_jobs" */ -export interface clip_render_jobs_inc_input {progress?: (Scalars['numeric'] | null),sort_index?: (Scalars['Int'] | null),user_steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "clip_render_jobs" */ -export interface clip_render_jobs_insert_input {clip?: (match_clips_obj_rel_insert_input | null),clip_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),error_message?: (Scalars['String'] | null),game_server_node?: (game_server_nodes_obj_rel_insert_input | null),game_server_node_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),k8s_job_name?: (Scalars['String'] | null),last_status_at?: (Scalars['timestamptz'] | null),match_map?: (match_maps_obj_rel_insert_input | null),match_map_demo?: (match_map_demos_obj_rel_insert_input | null),match_map_demo_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),paused?: (Scalars['Boolean'] | null),progress?: (Scalars['numeric'] | null),session_token?: (Scalars['String'] | null),sort_index?: (Scalars['Int'] | null),spec?: (Scalars['jsonb'] | null),status?: (Scalars['String'] | null),status_history?: (Scalars['jsonb'] | null),user?: (players_obj_rel_insert_input | null),user_steam_id?: (Scalars['bigint'] | null)} - - -/** aggregate max on columns */ -export interface clip_render_jobs_max_fieldsGenqlSelection{ - clip_id?: boolean | number - created_at?: boolean | number - error_message?: boolean | number - game_server_node_id?: boolean | number - id?: boolean | number - k8s_job_name?: boolean | number - last_status_at?: boolean | number - match_map_demo_id?: boolean | number - match_map_id?: boolean | number - progress?: boolean | number - session_token?: boolean | number - sort_index?: boolean | number - status?: boolean | number - user_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "clip_render_jobs" */ -export interface clip_render_jobs_max_order_by {clip_id?: (order_by | null),created_at?: (order_by | null),error_message?: (order_by | null),game_server_node_id?: (order_by | null),id?: (order_by | null),k8s_job_name?: (order_by | null),last_status_at?: (order_by | null),match_map_demo_id?: (order_by | null),match_map_id?: (order_by | null),progress?: (order_by | null),session_token?: (order_by | null),sort_index?: (order_by | null),status?: (order_by | null),user_steam_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface clip_render_jobs_min_fieldsGenqlSelection{ - clip_id?: boolean | number - created_at?: boolean | number - error_message?: boolean | number - game_server_node_id?: boolean | number - id?: boolean | number - k8s_job_name?: boolean | number - last_status_at?: boolean | number - match_map_demo_id?: boolean | number - match_map_id?: boolean | number - progress?: boolean | number - session_token?: boolean | number - sort_index?: boolean | number - status?: boolean | number - user_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "clip_render_jobs" */ -export interface clip_render_jobs_min_order_by {clip_id?: (order_by | null),created_at?: (order_by | null),error_message?: (order_by | null),game_server_node_id?: (order_by | null),id?: (order_by | null),k8s_job_name?: (order_by | null),last_status_at?: (order_by | null),match_map_demo_id?: (order_by | null),match_map_id?: (order_by | null),progress?: (order_by | null),session_token?: (order_by | null),sort_index?: (order_by | null),status?: (order_by | null),user_steam_id?: (order_by | null)} - - -/** response of any mutation on the table "clip_render_jobs" */ -export interface clip_render_jobs_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: clip_render_jobsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "clip_render_jobs" */ -export interface clip_render_jobs_on_conflict {constraint: clip_render_jobs_constraint,update_columns?: clip_render_jobs_update_column[],where?: (clip_render_jobs_bool_exp | null)} - - -/** Ordering options when selecting data from "clip_render_jobs". */ -export interface clip_render_jobs_order_by {clip?: (match_clips_order_by | null),clip_id?: (order_by | null),created_at?: (order_by | null),error_message?: (order_by | null),game_server_node?: (game_server_nodes_order_by | null),game_server_node_id?: (order_by | null),id?: (order_by | null),k8s_job_name?: (order_by | null),last_status_at?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_demo?: (match_map_demos_order_by | null),match_map_demo_id?: (order_by | null),match_map_id?: (order_by | null),paused?: (order_by | null),progress?: (order_by | null),session_token?: (order_by | null),sort_index?: (order_by | null),spec?: (order_by | null),status?: (order_by | null),status_history?: (order_by | null),user?: (players_order_by | null),user_steam_id?: (order_by | null)} - - -/** primary key columns input for table: clip_render_jobs */ -export interface clip_render_jobs_pk_columns_input {id: Scalars['uuid']} - - -/** prepend existing jsonb value of filtered columns with new jsonb value */ -export interface clip_render_jobs_prepend_input {spec?: (Scalars['jsonb'] | null),status_history?: (Scalars['jsonb'] | null)} - - -/** input type for updating data in table "clip_render_jobs" */ -export interface clip_render_jobs_set_input {clip_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),error_message?: (Scalars['String'] | null),game_server_node_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),k8s_job_name?: (Scalars['String'] | null),last_status_at?: (Scalars['timestamptz'] | null),match_map_demo_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),paused?: (Scalars['Boolean'] | null),progress?: (Scalars['numeric'] | null),session_token?: (Scalars['String'] | null),sort_index?: (Scalars['Int'] | null),spec?: (Scalars['jsonb'] | null),status?: (Scalars['String'] | null),status_history?: (Scalars['jsonb'] | null),user_steam_id?: (Scalars['bigint'] | null)} - - -/** aggregate stddev on columns */ -export interface clip_render_jobs_stddev_fieldsGenqlSelection{ - progress?: boolean | number - sort_index?: boolean | number - user_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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 -} - - -/** order by stddev_pop() on columns of table "clip_render_jobs" */ -export interface clip_render_jobs_stddev_pop_order_by {progress?: (order_by | null),sort_index?: (order_by | null),user_steam_id?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface clip_render_jobs_stddev_samp_fieldsGenqlSelection{ - progress?: boolean | number - sort_index?: boolean | number - user_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "clip_render_jobs" */ -export interface clip_render_jobs_stddev_samp_order_by {progress?: (order_by | null),sort_index?: (order_by | null),user_steam_id?: (order_by | null)} - - -/** Streaming cursor of the table "clip_render_jobs" */ -export interface clip_render_jobs_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: clip_render_jobs_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface clip_render_jobs_stream_cursor_value_input {clip_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),error_message?: (Scalars['String'] | null),game_server_node_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),k8s_job_name?: (Scalars['String'] | null),last_status_at?: (Scalars['timestamptz'] | null),match_map_demo_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),paused?: (Scalars['Boolean'] | null),progress?: (Scalars['numeric'] | null),session_token?: (Scalars['String'] | null),sort_index?: (Scalars['Int'] | null),spec?: (Scalars['jsonb'] | null),status?: (Scalars['String'] | null),status_history?: (Scalars['jsonb'] | null),user_steam_id?: (Scalars['bigint'] | null)} - - -/** aggregate sum on columns */ -export interface clip_render_jobs_sum_fieldsGenqlSelection{ - progress?: boolean | number - sort_index?: boolean | number - user_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "clip_render_jobs" */ -export interface clip_render_jobs_sum_order_by {progress?: (order_by | null),sort_index?: (order_by | null),user_steam_id?: (order_by | null)} - -export interface clip_render_jobs_updates { -/** append existing jsonb value of filtered columns with new jsonb value */ -_append?: (clip_render_jobs_append_input | null), -/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ -_delete_at_path?: (clip_render_jobs_delete_at_path_input | null), -/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */ -_delete_elem?: (clip_render_jobs_delete_elem_input | null), -/** delete key/value pair or string element. key/value pairs are matched based on their key value */ -_delete_key?: (clip_render_jobs_delete_key_input | null), -/** increments the numeric columns with given value of the filtered values */ -_inc?: (clip_render_jobs_inc_input | null), -/** prepend existing jsonb value of filtered columns with new jsonb value */ -_prepend?: (clip_render_jobs_prepend_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (clip_render_jobs_set_input | null), -/** filter the rows which have to be updated */ -where: clip_render_jobs_bool_exp} - - -/** aggregate var_pop on columns */ -export interface clip_render_jobs_var_pop_fieldsGenqlSelection{ - progress?: boolean | number - sort_index?: boolean | number - user_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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 -} - - -/** order by var_samp() on columns of table "clip_render_jobs" */ -export interface clip_render_jobs_var_samp_order_by {progress?: (order_by | null),sort_index?: (order_by | null),user_steam_id?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface clip_render_jobs_variance_fieldsGenqlSelection{ - progress?: boolean | number - sort_index?: boolean | number - user_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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 -} - - -/** 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 custom_pages_avg_fieldsGenqlSelection{ - nav_order?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "custom_pages". All fields are combined with a logical 'AND'. */ -export interface custom_pages_bool_exp {_and?: (custom_pages_bool_exp[] | null),_not?: (custom_pages_bool_exp | null),_or?: (custom_pages_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),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)} - - -/** 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)} - - -/** 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)} - - -/** 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 custom_pages_max_fieldsGenqlSelection{ - created_at?: boolean | number - exposed_module?: boolean | number - icon?: boolean | number - 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 -} - - -/** aggregate min on columns */ -export interface custom_pages_min_fieldsGenqlSelection{ - created_at?: boolean | number - exposed_module?: boolean | number - icon?: boolean | number - 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 -} - - -/** response of any mutation on the table "custom_pages" */ -export interface custom_pages_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: custom_pagesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "custom_pages" */ -export interface custom_pages_on_conflict {constraint: custom_pages_constraint,update_columns?: custom_pages_update_column[],where?: (custom_pages_bool_exp | null)} - - -/** Ordering options when selecting data from "custom_pages". */ -export interface custom_pages_order_by {created_at?: (order_by | null),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: custom_pages */ -export interface custom_pages_pk_columns_input {id: Scalars['uuid']} - - -/** 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 custom_pages_stddev_fieldsGenqlSelection{ - nav_order?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface custom_pages_stddev_pop_fieldsGenqlSelection{ - nav_order?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface custom_pages_stddev_samp_fieldsGenqlSelection{ - nav_order?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "custom_pages" */ -export interface custom_pages_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: custom_pages_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface custom_pages_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),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 custom_pages_sum_fieldsGenqlSelection{ - nav_order?: 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), -/** 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), -/** sets the columns of the filtered rows to the given values */ -_set?: (custom_pages_set_input | null), -/** filter the rows which have to be updated */ -where: custom_pages_bool_exp} - - -/** aggregate var_pop on columns */ -export interface custom_pages_var_pop_fieldsGenqlSelection{ - nav_order?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface custom_pages_var_samp_fieldsGenqlSelection{ - nav_order?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface custom_pages_variance_fieldsGenqlSelection{ - nav_order?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "db_backups" */ -export interface db_backupsGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - name?: boolean | number - size?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "db_backups" */ -export interface db_backups_aggregateGenqlSelection{ - aggregate?: db_backups_aggregate_fieldsGenqlSelection - nodes?: db_backupsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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 db_backups_avg_fieldsGenqlSelection{ - size?: boolean | number - __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)} - - -/** input type for incrementing numeric columns in table "db_backups" */ -export interface db_backups_inc_input {size?: (Scalars['Int'] | null)} - - -/** input type for inserting data into table "db_backups" */ -export interface db_backups_insert_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),size?: (Scalars['Int'] | null)} - - -/** aggregate max on columns */ -export interface db_backups_max_fieldsGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - name?: boolean | number - size?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface db_backups_min_fieldsGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - name?: boolean | number - size?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "db_backups" */ -export interface db_backups_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: db_backupsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "db_backups" */ -export interface db_backups_on_conflict {constraint: db_backups_constraint,update_columns?: db_backups_update_column[],where?: (db_backups_bool_exp | null)} - - -/** Ordering options when selecting data from "db_backups". */ -export interface db_backups_order_by {created_at?: (order_by | null),id?: (order_by | null),name?: (order_by | null),size?: (order_by | null)} - - -/** primary key columns input for table: db_backups */ -export interface db_backups_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "db_backups" */ -export interface db_backups_set_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),size?: (Scalars['Int'] | null)} - - -/** aggregate stddev on columns */ -export interface db_backups_stddev_fieldsGenqlSelection{ - size?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface db_backups_stddev_pop_fieldsGenqlSelection{ - size?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface db_backups_stddev_samp_fieldsGenqlSelection{ - size?: boolean | number - __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)} - - -/** Initial value of the column from where the streaming should start */ -export interface db_backups_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),size?: (Scalars['Int'] | null)} - - -/** aggregate sum on columns */ -export interface db_backups_sum_fieldsGenqlSelection{ - size?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface 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} - - -/** aggregate var_pop on columns */ -export interface db_backups_var_pop_fieldsGenqlSelection{ - size?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface db_backups_var_samp_fieldsGenqlSelection{ - size?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface db_backups_variance_fieldsGenqlSelection{ - size?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "direct_conversations" */ -export interface direct_conversationsGenqlSelection{ - is_open?: boolean | number - last_message_at?: boolean | number - position?: boolean | number - room_id?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "direct_conversations" */ -export interface direct_conversations_aggregateGenqlSelection{ - aggregate?: direct_conversations_aggregate_fieldsGenqlSelection - nodes?: direct_conversationsGenqlSelection - __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 - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface direct_conversations_avg_fieldsGenqlSelection{ - position?: boolean | number - steam_id?: boolean | number - __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)} - - -/** 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 "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 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 -} - - -/** 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 - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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?: direct_conversationsGenqlSelection - __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)} - - -/** 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: direct_conversations */ -export interface direct_conversations_pk_columns_input {room_id: Scalars['String'],steam_id: Scalars['bigint']} - - -/** 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 direct_conversations_stddev_fieldsGenqlSelection{ - position?: boolean | number - steam_id?: 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 - __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 - __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)} - - -/** 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)} - - -/** 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} - - -/** aggregate var_pop on columns */ -export interface direct_conversations_var_pop_fieldsGenqlSelection{ - position?: boolean | number - steam_id?: 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 - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface direct_conversations_variance_fieldsGenqlSelection{ - position?: boolean | number - steam_id?: boolean | number - __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 -} - - -/** 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 "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 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 "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 "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 "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 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 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 - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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?: direct_messagesGenqlSelection - __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 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 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 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 direct_messages_stddev_samp_fieldsGenqlSelection{ - from_steam_id?: boolean | number - seq?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "direct_messages" */ -export interface direct_messages_stream_cursor_input { -/** Stream column input with initial value */ -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 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 direct_messages_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (direct_messages_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (direct_messages_set_input | null), -/** filter the rows which have to be updated */ -where: direct_messages_bool_exp} - - -/** aggregate var_pop on columns */ -export interface direct_messages_var_pop_fieldsGenqlSelection{ - from_steam_id?: boolean | number - seq?: boolean | number - __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 - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface direct_messages_variance_fieldsGenqlSelection{ - from_steam_id?: boolean | number - seq?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "draft_game_picks" */ -export interface draft_game_picksGenqlSelection{ - auto_picked?: boolean | number - /** An object relationship */ - captain?: playersGenqlSelection - captain_steam_id?: boolean | number - created_at?: boolean | number - /** An object relationship */ - draft_game?: draft_gamesGenqlSelection - draft_game_id?: boolean | number - id?: boolean | number - is_organizer?: boolean | number - lineup?: boolean | number - /** An object relationship */ - picked?: playersGenqlSelection - picked_steam_id?: boolean | number - __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 - __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 - __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 draft_game_picks_avg_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - lineup?: boolean | number - picked_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "draft_game_picks" */ -export interface draft_game_picks_avg_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "draft_game_picks". All fields are combined with a logical 'AND'. */ -export interface draft_game_picks_bool_exp {_and?: (draft_game_picks_bool_exp[] | null),_not?: (draft_game_picks_bool_exp | null),_or?: (draft_game_picks_bool_exp[] | null),auto_picked?: (Boolean_comparison_exp | null),captain?: (players_bool_exp | null),captain_steam_id?: (bigint_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),draft_game?: (draft_games_bool_exp | null),draft_game_id?: (uuid_comparison_exp | null),id?: (uuid_comparison_exp | null),is_organizer?: (Boolean_comparison_exp | null),lineup?: (Int_comparison_exp | null),picked?: (players_bool_exp | null),picked_steam_id?: (bigint_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "draft_game_picks" */ -export interface draft_game_picks_inc_input {captain_steam_id?: (Scalars['bigint'] | null),lineup?: (Scalars['Int'] | null),picked_steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "draft_game_picks" */ -export interface draft_game_picks_insert_input {auto_picked?: (Scalars['Boolean'] | null),captain?: (players_obj_rel_insert_input | null),captain_steam_id?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),draft_game?: (draft_games_obj_rel_insert_input | null),draft_game_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),lineup?: (Scalars['Int'] | null),picked?: (players_obj_rel_insert_input | null),picked_steam_id?: (Scalars['bigint'] | null)} - - -/** aggregate max on columns */ -export interface draft_game_picks_max_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - created_at?: boolean | number - draft_game_id?: boolean | number - id?: boolean | number - lineup?: boolean | number - picked_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "draft_game_picks" */ -export interface draft_game_picks_max_order_by {captain_steam_id?: (order_by | null),created_at?: (order_by | null),draft_game_id?: (order_by | null),id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface draft_game_picks_min_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - created_at?: boolean | number - draft_game_id?: boolean | number - id?: boolean | number - lineup?: boolean | number - picked_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "draft_game_picks" */ -export interface draft_game_picks_min_order_by {captain_steam_id?: (order_by | null),created_at?: (order_by | null),draft_game_id?: (order_by | null),id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} - - -/** response of any mutation on the table "draft_game_picks" */ -export interface draft_game_picks_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: draft_game_picksGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "draft_game_picks" */ -export interface draft_game_picks_on_conflict {constraint: draft_game_picks_constraint,update_columns?: draft_game_picks_update_column[],where?: (draft_game_picks_bool_exp | null)} - - -/** Ordering options when selecting data from "draft_game_picks". */ -export interface draft_game_picks_order_by {auto_picked?: (order_by | null),captain?: (players_order_by | null),captain_steam_id?: (order_by | null),created_at?: (order_by | null),draft_game?: (draft_games_order_by | null),draft_game_id?: (order_by | null),id?: (order_by | null),is_organizer?: (order_by | null),lineup?: (order_by | null),picked?: (players_order_by | null),picked_steam_id?: (order_by | null)} - - -/** primary key columns input for table: draft_game_picks */ -export interface draft_game_picks_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "draft_game_picks" */ -export interface draft_game_picks_set_input {auto_picked?: (Scalars['Boolean'] | null),captain_steam_id?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),draft_game_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),lineup?: (Scalars['Int'] | null),picked_steam_id?: (Scalars['bigint'] | null)} - - -/** aggregate stddev on columns */ -export interface draft_game_picks_stddev_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - lineup?: boolean | number - picked_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "draft_game_picks" */ -export interface draft_game_picks_stddev_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface draft_game_picks_stddev_pop_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - lineup?: boolean | number - picked_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "draft_game_picks" */ -export interface draft_game_picks_stddev_pop_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface draft_game_picks_stddev_samp_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - lineup?: boolean | number - picked_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "draft_game_picks" */ -export interface draft_game_picks_stddev_samp_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} - - -/** Streaming cursor of the table "draft_game_picks" */ -export interface draft_game_picks_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: draft_game_picks_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface draft_game_picks_stream_cursor_value_input {auto_picked?: (Scalars['Boolean'] | null),captain_steam_id?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),draft_game_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),lineup?: (Scalars['Int'] | null),picked_steam_id?: (Scalars['bigint'] | null)} - - -/** aggregate sum on columns */ -export interface draft_game_picks_sum_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - lineup?: boolean | number - picked_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "draft_game_picks" */ -export interface draft_game_picks_sum_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} - -export interface draft_game_picks_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (draft_game_picks_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (draft_game_picks_set_input | null), -/** filter the rows which have to be updated */ -where: draft_game_picks_bool_exp} - - -/** aggregate var_pop on columns */ -export interface draft_game_picks_var_pop_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - lineup?: boolean | number - picked_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "draft_game_picks" */ -export interface draft_game_picks_var_pop_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface draft_game_picks_var_samp_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - lineup?: boolean | number - picked_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "draft_game_picks" */ -export interface draft_game_picks_var_samp_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface draft_game_picks_variance_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - lineup?: boolean | number - picked_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "draft_game_picks" */ -export interface draft_game_picks_variance_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} - - -/** columns and relationships of "draft_game_players" */ -export interface draft_game_playersGenqlSelection{ - /** An object relationship */ - draft_game?: draft_gamesGenqlSelection - draft_game_id?: boolean | number - /** An object relationship */ - e_draft_game_player_status?: e_draft_game_player_statusGenqlSelection - elo_snapshot?: boolean | number - is_captain?: boolean | number - is_organizer?: boolean | number - joined_at?: boolean | number - lineup?: boolean | number - pick_order?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - status?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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 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 - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "draft_game_players" */ -export interface draft_game_players_aggregate_order_by {avg?: (draft_game_players_avg_order_by | null),count?: (order_by | null),max?: (draft_game_players_max_order_by | null),min?: (draft_game_players_min_order_by | null),stddev?: (draft_game_players_stddev_order_by | null),stddev_pop?: (draft_game_players_stddev_pop_order_by | null),stddev_samp?: (draft_game_players_stddev_samp_order_by | null),sum?: (draft_game_players_sum_order_by | null),var_pop?: (draft_game_players_var_pop_order_by | null),var_samp?: (draft_game_players_var_samp_order_by | null),variance?: (draft_game_players_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "draft_game_players" */ -export interface draft_game_players_arr_rel_insert_input {data: draft_game_players_insert_input[], -/** upsert condition */ -on_conflict?: (draft_game_players_on_conflict | null)} - - -/** aggregate 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 -} - - -/** order by avg() on columns of table "draft_game_players" */ -export interface draft_game_players_avg_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "draft_game_players". All fields are combined with a logical 'AND'. */ -export interface draft_game_players_bool_exp {_and?: (draft_game_players_bool_exp[] | null),_not?: (draft_game_players_bool_exp | null),_or?: (draft_game_players_bool_exp[] | null),draft_game?: (draft_games_bool_exp | null),draft_game_id?: (uuid_comparison_exp | null),e_draft_game_player_status?: (e_draft_game_player_status_bool_exp | null),elo_snapshot?: (Int_comparison_exp | null),is_captain?: (Boolean_comparison_exp | null),is_organizer?: (Boolean_comparison_exp | null),joined_at?: (timestamptz_comparison_exp | null),lineup?: (Int_comparison_exp | null),pick_order?: (Int_comparison_exp | null),player?: (players_bool_exp | null),status?: (e_draft_game_player_status_enum_comparison_exp | null),steam_id?: (bigint_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "draft_game_players" */ -export interface draft_game_players_inc_input {elo_snapshot?: (Scalars['Int'] | null),lineup?: (Scalars['Int'] | null),pick_order?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "draft_game_players" */ -export interface draft_game_players_insert_input {draft_game?: (draft_games_obj_rel_insert_input | null),draft_game_id?: (Scalars['uuid'] | null),e_draft_game_player_status?: (e_draft_game_player_status_obj_rel_insert_input | null),elo_snapshot?: (Scalars['Int'] | null),is_captain?: (Scalars['Boolean'] | null),joined_at?: (Scalars['timestamptz'] | null),lineup?: (Scalars['Int'] | null),pick_order?: (Scalars['Int'] | null),player?: (players_obj_rel_insert_input | null),status?: (e_draft_game_player_status_enum | null),steam_id?: (Scalars['bigint'] | null)} - - -/** aggregate max on columns */ -export interface draft_game_players_max_fieldsGenqlSelection{ - draft_game_id?: boolean | number - elo_snapshot?: boolean | number - joined_at?: boolean | number - lineup?: boolean | number - pick_order?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "draft_game_players" */ -export interface draft_game_players_max_order_by {draft_game_id?: (order_by | null),elo_snapshot?: (order_by | null),joined_at?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface draft_game_players_min_fieldsGenqlSelection{ - draft_game_id?: boolean | number - elo_snapshot?: boolean | number - joined_at?: boolean | number - lineup?: boolean | number - pick_order?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "draft_game_players" */ -export interface draft_game_players_min_order_by {draft_game_id?: (order_by | null),elo_snapshot?: (order_by | null),joined_at?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} - - -/** response of any mutation on the table "draft_game_players" */ -export interface draft_game_players_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: draft_game_playersGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "draft_game_players" */ -export interface draft_game_players_on_conflict {constraint: draft_game_players_constraint,update_columns?: draft_game_players_update_column[],where?: (draft_game_players_bool_exp | null)} - - -/** Ordering options when selecting data from "draft_game_players". */ -export interface draft_game_players_order_by {draft_game?: (draft_games_order_by | null),draft_game_id?: (order_by | null),e_draft_game_player_status?: (e_draft_game_player_status_order_by | null),elo_snapshot?: (order_by | null),is_captain?: (order_by | null),is_organizer?: (order_by | null),joined_at?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),player?: (players_order_by | null),status?: (order_by | null),steam_id?: (order_by | null)} - - -/** primary key columns input for table: draft_game_players */ -export interface draft_game_players_pk_columns_input {draft_game_id: Scalars['uuid'],steam_id: Scalars['bigint']} - - -/** input type for updating data in table "draft_game_players" */ -export interface draft_game_players_set_input {draft_game_id?: (Scalars['uuid'] | null),elo_snapshot?: (Scalars['Int'] | null),is_captain?: (Scalars['Boolean'] | null),joined_at?: (Scalars['timestamptz'] | null),lineup?: (Scalars['Int'] | null),pick_order?: (Scalars['Int'] | null),status?: (e_draft_game_player_status_enum | null),steam_id?: (Scalars['bigint'] | null)} - - -/** aggregate stddev on columns */ -export interface draft_game_players_stddev_fieldsGenqlSelection{ - elo_snapshot?: boolean | number - lineup?: boolean | number - pick_order?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "draft_game_players" */ -export interface draft_game_players_stddev_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface draft_game_players_stddev_pop_fieldsGenqlSelection{ - elo_snapshot?: boolean | number - lineup?: boolean | number - pick_order?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "draft_game_players" */ -export interface draft_game_players_stddev_pop_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface draft_game_players_stddev_samp_fieldsGenqlSelection{ - elo_snapshot?: boolean | number - lineup?: boolean | number - pick_order?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "draft_game_players" */ -export interface draft_game_players_stddev_samp_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} - - -/** Streaming cursor of the table "draft_game_players" */ -export interface draft_game_players_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: draft_game_players_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface draft_game_players_stream_cursor_value_input {draft_game_id?: (Scalars['uuid'] | null),elo_snapshot?: (Scalars['Int'] | null),is_captain?: (Scalars['Boolean'] | null),joined_at?: (Scalars['timestamptz'] | null),lineup?: (Scalars['Int'] | null),pick_order?: (Scalars['Int'] | null),status?: (e_draft_game_player_status_enum | null),steam_id?: (Scalars['bigint'] | null)} - - -/** aggregate sum on columns */ -export interface draft_game_players_sum_fieldsGenqlSelection{ - elo_snapshot?: boolean | number - lineup?: boolean | number - pick_order?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "draft_game_players" */ -export interface draft_game_players_sum_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} - -export interface draft_game_players_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (draft_game_players_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (draft_game_players_set_input | null), -/** filter the rows which have to be updated */ -where: draft_game_players_bool_exp} - - -/** aggregate var_pop on columns */ -export interface draft_game_players_var_pop_fieldsGenqlSelection{ - elo_snapshot?: boolean | number - lineup?: boolean | number - pick_order?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "draft_game_players" */ -export interface draft_game_players_var_pop_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface draft_game_players_var_samp_fieldsGenqlSelection{ - elo_snapshot?: boolean | number - lineup?: boolean | number - pick_order?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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 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 "draft_game_players" */ -export interface draft_game_players_variance_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} - - -/** columns and relationships of "draft_games" */ -export interface draft_gamesGenqlSelection{ - access?: boolean | number - capacity?: boolean | number - captain_selection?: boolean | number - created_at?: boolean | number - current_pick_lineup?: boolean | number - draft_order?: boolean | number - /** An object relationship */ - e_draft_game_captain_selection?: e_draft_game_captain_selectionGenqlSelection - /** An object relationship */ - e_draft_game_draft_order?: e_draft_game_draft_orderGenqlSelection - /** An object relationship */ - e_draft_game_mode?: e_draft_game_modeGenqlSelection - /** An object relationship */ - e_draft_game_status?: e_draft_game_statusGenqlSelection - /** An object relationship */ - e_lobby_access?: e_lobby_accessGenqlSelection - expires_at?: boolean | number - /** An object relationship */ - host?: playersGenqlSelection - host_steam_id?: boolean | number - id?: boolean | number - inner_squad?: boolean | number - invite_code?: boolean | number - is_organizer?: boolean | number - /** An object relationship */ - map_pool?: map_poolsGenqlSelection - map_pool_id?: boolean | number - /** An object relationship */ - match?: matchesGenqlSelection - match_id?: boolean | number - match_options_id?: boolean | number - max_elo?: boolean | number - min_elo?: boolean | number - mode?: boolean | number - /** An object relationship */ - options?: match_optionsGenqlSelection - /** Turn order (lineup 1/2) for each remaining non-captain pick. */ - pattern?: { __args: { - /** JSON select path */ - path?: (Scalars['String'] | null)} } | boolean | number - pick_deadline?: boolean | number - /** An array relationship */ - picks?: (draft_game_picksGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (draft_game_picks_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (draft_game_picks_order_by[] | null), - /** filter the rows returned */ - where?: (draft_game_picks_bool_exp | null)} }) - /** An aggregate relationship */ - picks_aggregate?: (draft_game_picks_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (draft_game_picks_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (draft_game_picks_order_by[] | null), - /** filter the rows returned */ - where?: (draft_game_picks_bool_exp | null)} }) - /** An array relationship */ - players?: (draft_game_playersGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (draft_game_players_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (draft_game_players_order_by[] | null), - /** filter the rows returned */ - where?: (draft_game_players_bool_exp | null)} }) - /** An aggregate relationship */ - players_aggregate?: (draft_game_players_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (draft_game_players_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (draft_game_players_order_by[] | null), - /** filter the rows returned */ - where?: (draft_game_players_bool_exp | null)} }) - regions?: boolean | number - require_approval?: boolean | number - scheduled_at?: boolean | number - status?: boolean | number - /** An object relationship */ - team_1?: teamsGenqlSelection - team_1_id?: boolean | number - /** An object relationship */ - team_2?: teamsGenqlSelection - team_2_id?: boolean | number - type?: boolean | number - updated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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)} - -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} - -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 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 -} - - -/** order by aggregate values of table "draft_games" */ -export interface draft_games_aggregate_order_by {avg?: (draft_games_avg_order_by | null),count?: (order_by | null),max?: (draft_games_max_order_by | null),min?: (draft_games_min_order_by | null),stddev?: (draft_games_stddev_order_by | null),stddev_pop?: (draft_games_stddev_pop_order_by | null),stddev_samp?: (draft_games_stddev_samp_order_by | null),sum?: (draft_games_sum_order_by | null),var_pop?: (draft_games_var_pop_order_by | null),var_samp?: (draft_games_var_samp_order_by | null),variance?: (draft_games_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "draft_games" */ -export interface draft_games_arr_rel_insert_input {data: draft_games_insert_input[], -/** upsert condition */ -on_conflict?: (draft_games_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface draft_games_avg_fieldsGenqlSelection{ - capacity?: boolean | number - current_pick_lineup?: boolean | number - host_steam_id?: boolean | number - max_elo?: boolean | number - min_elo?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "draft_games" */ -export interface draft_games_avg_order_by {capacity?: (order_by | null),current_pick_lineup?: (order_by | null),host_steam_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "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 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 draft_games_max_fieldsGenqlSelection{ - capacity?: boolean | number - created_at?: boolean | number - current_pick_lineup?: boolean | number - expires_at?: boolean | number - host_steam_id?: boolean | number - id?: boolean | number - invite_code?: boolean | number - map_pool_id?: boolean | number - match_id?: boolean | number - match_options_id?: boolean | number - max_elo?: boolean | number - min_elo?: boolean | number - pick_deadline?: boolean | number - regions?: boolean | number - scheduled_at?: boolean | number - team_1_id?: boolean | number - team_2_id?: boolean | number - updated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "draft_games" */ -export interface draft_games_max_order_by {capacity?: (order_by | null),created_at?: (order_by | null),current_pick_lineup?: (order_by | null),expires_at?: (order_by | null),host_steam_id?: (order_by | null),id?: (order_by | null),invite_code?: (order_by | null),map_pool_id?: (order_by | null),match_id?: (order_by | null),match_options_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null),pick_deadline?: (order_by | null),regions?: (order_by | null),scheduled_at?: (order_by | null),team_1_id?: (order_by | null),team_2_id?: (order_by | null),updated_at?: (order_by | null)} - - -/** aggregate min on columns */ -export interface draft_games_min_fieldsGenqlSelection{ - capacity?: boolean | number - created_at?: boolean | number - current_pick_lineup?: boolean | number - expires_at?: boolean | number - host_steam_id?: boolean | number - id?: boolean | number - invite_code?: boolean | number - map_pool_id?: boolean | number - match_id?: boolean | number - match_options_id?: boolean | number - max_elo?: boolean | number - min_elo?: boolean | number - pick_deadline?: boolean | number - regions?: boolean | number - scheduled_at?: boolean | number - team_1_id?: boolean | number - team_2_id?: boolean | number - updated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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?: draft_gamesGenqlSelection - __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, -/** upsert condition */ -on_conflict?: (draft_games_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)} - - -/** 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)} - - -/** 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 "draft_games" */ -export interface draft_games_set_input {access?: (e_lobby_access_enum | null),capacity?: (Scalars['Int'] | null),captain_selection?: (e_draft_game_captain_selection_enum | null),created_at?: (Scalars['timestamptz'] | null),current_pick_lineup?: (Scalars['Int'] | null),draft_order?: (e_draft_game_draft_order_enum | null),expires_at?: (Scalars['timestamptz'] | null),host_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),inner_squad?: (Scalars['Boolean'] | null),invite_code?: (Scalars['uuid'] | null),map_pool_id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),max_elo?: (Scalars['Int'] | null),min_elo?: (Scalars['Int'] | null),mode?: (e_draft_game_mode_enum | null),pick_deadline?: (Scalars['timestamptz'] | null),regions?: (Scalars['String'][] | null),require_approval?: (Scalars['Boolean'] | null),scheduled_at?: (Scalars['timestamptz'] | null),status?: (e_draft_game_status_enum | null),team_1_id?: (Scalars['uuid'] | null),team_2_id?: (Scalars['uuid'] | null),type?: (e_match_types_enum | null),updated_at?: (Scalars['timestamptz'] | null)} - - -/** aggregate stddev on columns */ -export interface draft_games_stddev_fieldsGenqlSelection{ - capacity?: boolean | number - current_pick_lineup?: boolean | number - host_steam_id?: boolean | number - max_elo?: boolean | number - min_elo?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "draft_games" */ -export interface draft_games_stddev_order_by {capacity?: (order_by | null),current_pick_lineup?: (order_by | null),host_steam_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface draft_games_stddev_pop_fieldsGenqlSelection{ - capacity?: boolean | number - current_pick_lineup?: boolean | number - host_steam_id?: boolean | number - max_elo?: boolean | number - min_elo?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "draft_games" */ -export interface draft_games_stddev_pop_order_by {capacity?: (order_by | null),current_pick_lineup?: (order_by | null),host_steam_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface draft_games_stddev_samp_fieldsGenqlSelection{ - capacity?: boolean | number - current_pick_lineup?: boolean | number - host_steam_id?: boolean | number - max_elo?: boolean | number - min_elo?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "draft_games" */ -export interface draft_games_stddev_samp_order_by {capacity?: (order_by | null),current_pick_lineup?: (order_by | null),host_steam_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null)} - - -/** Streaming cursor of the table "draft_games" */ -export interface draft_games_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: 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 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 draft_games_sum_fieldsGenqlSelection{ - capacity?: boolean | number - current_pick_lineup?: boolean | number - host_steam_id?: boolean | number - max_elo?: boolean | number - min_elo?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "draft_games" */ -export interface draft_games_sum_order_by {capacity?: (order_by | null),current_pick_lineup?: (order_by | null),host_steam_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null)} - -export interface draft_games_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (draft_games_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (draft_games_set_input | null), -/** filter the rows which have to be updated */ -where: draft_games_bool_exp} - - -/** aggregate var_pop on columns */ -export interface draft_games_var_pop_fieldsGenqlSelection{ - capacity?: boolean | number - current_pick_lineup?: boolean | number - host_steam_id?: boolean | number - max_elo?: boolean | number - min_elo?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "draft_games" */ -export interface draft_games_var_pop_order_by {capacity?: (order_by | null),current_pick_lineup?: (order_by | null),host_steam_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface draft_games_var_samp_fieldsGenqlSelection{ - capacity?: boolean | number - current_pick_lineup?: boolean | number - host_steam_id?: boolean | number - max_elo?: boolean | number - min_elo?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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 draft_games_variance_fieldsGenqlSelection{ - capacity?: boolean | number - current_pick_lineup?: boolean | number - host_steam_id?: boolean | number - max_elo?: boolean | number - min_elo?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by 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)} - - -/** columns and relationships of "e_award_sources" */ -export interface e_award_sourcesGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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 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 "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 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 "e_award_sources" */ -export interface e_award_sources_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -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 e_award_sources_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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?: e_award_sourcesGenqlSelection - __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)} - - -/** 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: e_award_sources */ -export interface e_award_sources_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)} - - -/** 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 -} - - -/** 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 fields of "e_award_tiers" */ -export interface e_award_tiers_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_award_tiers_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_award_tiers_max_fieldsGenqlSelection - min?: e_award_tiers_min_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "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 compare columns of type "e_award_tiers_enum". All fields are combined with logical 'AND'. */ -export interface e_award_tiers_enum_comparison_exp {_eq?: (e_award_tiers_enum | null),_in?: (e_award_tiers_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_award_tiers_enum | null),_nin?: (e_award_tiers_enum[] | null)} - - -/** input type for inserting data into table "e_award_tiers" */ -export interface e_award_tiers_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface e_award_tiers_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_award_tiers_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: 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 -} - - -/** on_conflict condition type for table "e_award_tiers" */ -export interface e_award_tiers_on_conflict {constraint: e_award_tiers_constraint,update_columns?: e_award_tiers_update_column[],where?: (e_award_tiers_bool_exp | null)} - - -/** Ordering options when selecting data from "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 -} - - -/** 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 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 "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 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 "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 e_check_in_settings_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_check_in_settings_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "e_check_in_settings" */ -export interface e_check_in_settings_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: e_check_in_settingsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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 "e_check_in_settings". */ -export interface e_check_in_settings_order_by {description?: (order_by | null),value?: (order_by | null)} - - -/** primary key columns input for table: e_check_in_settings */ -export interface e_check_in_settings_pk_columns_input {value: Scalars['String']} - - -/** input type for updating data in table "e_check_in_settings" */ -export interface e_check_in_settings_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - - -/** Streaming cursor of the table "e_check_in_settings" */ -export interface e_check_in_settings_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: e_check_in_settings_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface e_check_in_settings_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_check_in_settings_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_check_in_settings_set_input | null), -/** filter the rows which have to be updated */ -where: e_check_in_settings_bool_exp} - - -/** columns and relationships of "e_draft_game_captain_selection" */ -export interface e_draft_game_captain_selectionGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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 fields of "e_draft_game_captain_selection" */ -export interface e_draft_game_captain_selection_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_draft_game_captain_selection_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_draft_game_captain_selection_max_fieldsGenqlSelection - min?: e_draft_game_captain_selection_min_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "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 compare columns of type "e_draft_game_captain_selection_enum". All fields are combined with logical 'AND'. */ -export interface e_draft_game_captain_selection_enum_comparison_exp {_eq?: (e_draft_game_captain_selection_enum | null),_in?: (e_draft_game_captain_selection_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_draft_game_captain_selection_enum | null),_nin?: (e_draft_game_captain_selection_enum[] | null)} - - -/** input type for inserting data into table "e_draft_game_captain_selection" */ -export interface e_draft_game_captain_selection_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface e_draft_game_captain_selection_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_draft_game_captain_selection_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "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 -} - - -/** 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)} - - -/** 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 -} - - -/** 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 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 "e_draft_game_draft_order". All fields are combined with a logical 'AND'. */ -export interface e_draft_game_draft_order_bool_exp {_and?: (e_draft_game_draft_order_bool_exp[] | null),_not?: (e_draft_game_draft_order_bool_exp | null),_or?: (e_draft_game_draft_order_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} - - -/** Boolean expression to compare columns of type "e_draft_game_draft_order_enum". All fields are combined with logical 'AND'. */ -export interface e_draft_game_draft_order_enum_comparison_exp {_eq?: (e_draft_game_draft_order_enum | null),_in?: (e_draft_game_draft_order_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_draft_game_draft_order_enum | null),_nin?: (e_draft_game_draft_order_enum[] | null)} - - -/** input type for inserting data into table "e_draft_game_draft_order" */ -export interface e_draft_game_draft_order_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface e_draft_game_draft_order_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_draft_game_draft_order_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "e_draft_game_draft_order" */ -export interface e_draft_game_draft_order_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: e_draft_game_draft_orderGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "e_draft_game_draft_order" */ -export interface e_draft_game_draft_order_obj_rel_insert_input {data: e_draft_game_draft_order_insert_input, -/** upsert condition */ -on_conflict?: (e_draft_game_draft_order_on_conflict | null)} - - -/** on_conflict condition type for table "e_draft_game_draft_order" */ -export interface e_draft_game_draft_order_on_conflict {constraint: e_draft_game_draft_order_constraint,update_columns?: e_draft_game_draft_order_update_column[],where?: (e_draft_game_draft_order_bool_exp | null)} - - -/** 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)} - - -/** primary key columns input for table: e_draft_game_draft_order */ -export interface e_draft_game_draft_order_pk_columns_input {value: Scalars['String']} - - -/** input type for 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 "e_draft_game_draft_order" */ -export interface e_draft_game_draft_order_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: e_draft_game_draft_order_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface e_draft_game_draft_order_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_draft_game_draft_order_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_draft_game_draft_order_set_input | null), -/** filter the rows which have to be updated */ -where: e_draft_game_draft_order_bool_exp} - - -/** columns and relationships of "e_draft_game_mode" */ -export interface e_draft_game_modeGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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 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 -} - - -/** 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 -} - - -/** aggregate min on columns */ -export interface e_draft_game_mode_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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 -} - - -/** 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)} - - -/** 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)} - - -/** 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)} - - -/** primary key columns input for table: e_draft_game_mode */ -export interface e_draft_game_mode_pk_columns_input {value: Scalars['String']} - - -/** input type for updating data in table "e_draft_game_mode" */ -export interface e_draft_game_mode_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 { -/** Stream column input with initial value */ -initial_value: e_draft_game_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_draft_game_mode_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_draft_game_mode_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_draft_game_mode_set_input | null), -/** filter the rows which have to be updated */ -where: e_draft_game_mode_bool_exp} - - -/** columns and relationships of "e_draft_game_player_status" */ -export interface e_draft_game_player_statusGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "e_draft_game_player_status" */ -export interface e_draft_game_player_status_aggregateGenqlSelection{ - aggregate?: e_draft_game_player_status_aggregate_fieldsGenqlSelection - nodes?: e_draft_game_player_statusGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate 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 -} - - -/** 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 compare columns of type "e_draft_game_player_status_enum". All fields are combined with logical 'AND'. */ -export interface e_draft_game_player_status_enum_comparison_exp {_eq?: (e_draft_game_player_status_enum | null),_in?: (e_draft_game_player_status_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_draft_game_player_status_enum | null),_nin?: (e_draft_game_player_status_enum[] | null)} - - -/** input type for inserting data into table "e_draft_game_player_status" */ -export interface e_draft_game_player_status_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface e_draft_game_player_status_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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 -} - - -/** 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 -} - - -/** input type for inserting object relation for remote table "e_draft_game_player_status" */ -export interface e_draft_game_player_status_obj_rel_insert_input {data: e_draft_game_player_status_insert_input, -/** upsert condition */ -on_conflict?: (e_draft_game_player_status_on_conflict | null)} - - -/** on_conflict condition type for table "e_draft_game_player_status" */ -export interface e_draft_game_player_status_on_conflict {constraint: e_draft_game_player_status_constraint,update_columns?: e_draft_game_player_status_update_column[],where?: (e_draft_game_player_status_bool_exp | null)} - - -/** 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)} - - -/** primary key columns input for table: e_draft_game_player_status */ -export interface e_draft_game_player_status_pk_columns_input {value: Scalars['String']} - - -/** input type for updating data in table "e_draft_game_player_status" */ -export interface e_draft_game_player_status_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 { -/** Stream column input with initial value */ -initial_value: e_draft_game_player_status_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface e_draft_game_player_status_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_draft_game_player_status_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_draft_game_player_status_set_input | null), -/** filter the rows which have to be updated */ -where: e_draft_game_player_status_bool_exp} - - -/** columns and relationships of "e_draft_game_status" */ -export interface e_draft_game_statusGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "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 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 -} - - -/** 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 compare columns of type "e_draft_game_status_enum". All fields are combined with logical 'AND'. */ -export interface e_draft_game_status_enum_comparison_exp {_eq?: (e_draft_game_status_enum | null),_in?: (e_draft_game_status_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_draft_game_status_enum | null),_nin?: (e_draft_game_status_enum[] | null)} - - -/** input type for inserting data into table "e_draft_game_status" */ -export interface e_draft_game_status_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface e_draft_game_status_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_draft_game_status_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "e_draft_game_status" */ -export interface e_draft_game_status_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: e_draft_game_statusGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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)} - - -/** 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)} - - -/** 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)} - - -/** primary key columns input for table: e_draft_game_status */ -export interface e_draft_game_status_pk_columns_input {value: Scalars['String']} - - -/** input type for updating data in table "e_draft_game_status" */ -export interface e_draft_game_status_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - - -/** 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)} - - -/** Initial value of the column from where the streaming should start */ -export interface e_draft_game_status_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_draft_game_status_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_draft_game_status_set_input | null), -/** filter the rows which have to be updated */ -where: e_draft_game_status_bool_exp} - - -/** columns and relationships of "e_event_media_access" */ -export interface e_event_media_accessGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "e_event_media_access" */ -export interface e_event_media_access_aggregateGenqlSelection{ - aggregate?: e_event_media_access_aggregate_fieldsGenqlSelection - nodes?: e_event_media_accessGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "e_event_media_access" */ -export interface e_event_media_access_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_event_media_access_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_event_media_access_max_fieldsGenqlSelection - min?: e_event_media_access_min_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "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 compare columns of type "e_event_media_access_enum". All fields are combined with logical 'AND'. */ -export interface e_event_media_access_enum_comparison_exp {_eq?: (e_event_media_access_enum | null),_in?: (e_event_media_access_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_event_media_access_enum | null),_nin?: (e_event_media_access_enum[] | null)} - - -/** input type for inserting data into table "e_event_media_access" */ -export interface e_event_media_access_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface e_event_media_access_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_event_media_access_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "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 -} - - -/** 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)} - - -/** 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)} - - -/** primary key columns input for table: e_event_media_access */ -export interface e_event_media_access_pk_columns_input {value: Scalars['String']} - - -/** 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: 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 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} - - -/** columns and relationships of "e_event_visibility" */ -export interface e_event_visibilityGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "e_event_visibility" */ -export interface e_event_visibility_aggregateGenqlSelection{ - aggregate?: e_event_visibility_aggregate_fieldsGenqlSelection - nodes?: e_event_visibilityGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate 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 -} - - -/** Boolean expression to filter rows from the table "e_event_visibility". All fields are combined with a logical 'AND'. */ -export interface e_event_visibility_bool_exp {_and?: (e_event_visibility_bool_exp[] | null),_not?: (e_event_visibility_bool_exp | null),_or?: (e_event_visibility_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} - - -/** Boolean expression to compare columns of type "e_event_visibility_enum". All fields are combined with logical 'AND'. */ -export interface e_event_visibility_enum_comparison_exp {_eq?: (e_event_visibility_enum | null),_in?: (e_event_visibility_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_event_visibility_enum | null),_nin?: (e_event_visibility_enum[] | null)} - - -/** input type for inserting data into table "e_event_visibility" */ -export interface e_event_visibility_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface e_event_visibility_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_event_visibility_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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 -} - - -/** 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)} - - -/** Ordering options when selecting data from "e_event_visibility". */ -export interface e_event_visibility_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']} - - -/** 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)} - - -/** 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)} - - -/** 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 -} - - -/** 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 -} - - -/** 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 -} - - -/** Boolean expression to filter rows from the table "e_friend_status". All fields are combined with a logical 'AND'. */ -export interface e_friend_status_bool_exp {_and?: (e_friend_status_bool_exp[] | null),_not?: (e_friend_status_bool_exp | null),_or?: (e_friend_status_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} - - -/** Boolean expression to compare columns of type "e_friend_status_enum". All fields are combined with logical 'AND'. */ -export interface e_friend_status_enum_comparison_exp {_eq?: (e_friend_status_enum | null),_in?: (e_friend_status_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_friend_status_enum | null),_nin?: (e_friend_status_enum[] | null)} - - -/** input type for inserting data into table "e_friend_status" */ -export interface e_friend_status_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | 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 e_friend_status_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "e_friend_status" */ -export interface e_friend_status_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: e_friend_statusGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "e_friend_status" */ -export interface e_friend_status_obj_rel_insert_input {data: e_friend_status_insert_input, -/** upsert condition */ -on_conflict?: (e_friend_status_on_conflict | null)} - - -/** on_conflict condition type for table "e_friend_status" */ -export interface e_friend_status_on_conflict {constraint: e_friend_status_constraint,update_columns?: e_friend_status_update_column[],where?: (e_friend_status_bool_exp | null)} - - -/** 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: e_friend_status */ -export interface e_friend_status_pk_columns_input {value: Scalars['String']} - - -/** input type for updating data in table "e_friend_status" */ -export interface e_friend_status_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - - -/** Streaming cursor of the table "e_friend_status" */ -export interface e_friend_status_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: e_friend_status_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface 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} - - -/** 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 -} - - -/** 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 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 -} - - -/** 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 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)} - - -/** 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 max on columns */ -export interface e_game_cfg_types_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_game_cfg_types_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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 -} - - -/** 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)} - - -/** 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)} - - -/** primary key columns input for table: e_game_cfg_types */ -export interface e_game_cfg_types_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)} - - -/** 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)} - - -/** 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 - __scalar?: boolean | number -} - - -/** 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_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_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_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_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_game_plugin_channels_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_game_plugin_channels_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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_game_plugin_channelsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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_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_game_plugin_channels */ -export interface e_game_plugin_channels_pk_columns_input {value: Scalars['String']} - - -/** 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_game_plugin_channels" */ -export interface 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 | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface e_game_plugin_channels_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_game_plugin_channels_updates { -/** 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} - - -/** 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 - __scalar?: boolean | number -} - - -/** 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_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_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_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_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_game_plugin_install_statuses_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_game_plugin_install_statuses_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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_game_plugin_install_statusesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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_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_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_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_game_plugin_install_statuses" */ -export interface 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 | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface e_game_plugin_install_statuses_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface 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 | null), -/** filter the rows which have to be updated */ -where: e_game_plugin_install_statuses_bool_exp} - - -/** columns and relationships of "e_game_plugin_kinds" */ -export interface e_game_plugin_kindsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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_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_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_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_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_game_plugin_kinds_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_game_plugin_kinds_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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_game_plugin_kindsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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_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_game_plugin_kinds */ -export interface e_game_plugin_kinds_pk_columns_input {value: Scalars['String']} - - -/** 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_game_plugin_kinds" */ -export interface 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 | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface e_game_plugin_kinds_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_game_plugin_kinds_updates { -/** 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} - - -/** columns and relationships of "e_game_server_node_statuses" */ -export interface e_game_server_node_statusesGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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_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_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_game_server_node_statuses_enum". All fields are combined with logical 'AND'. */ -export interface e_game_server_node_statuses_enum_comparison_exp {_eq?: (e_game_server_node_statuses_enum | null),_in?: (e_game_server_node_statuses_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_game_server_node_statuses_enum | null),_nin?: (e_game_server_node_statuses_enum[] | null)} - - -/** input type for inserting data into table "e_game_server_node_statuses" */ -export interface e_game_server_node_statuses_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface e_game_server_node_statuses_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_game_server_node_statuses_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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_game_server_node_statusesGenqlSelection - __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, -/** upsert condition */ -on_conflict?: (e_game_server_node_statuses_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)} - - -/** 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_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_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_game_server_node_statuses" */ -export interface e_game_server_node_statuses_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: e_game_server_node_statuses_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface e_game_server_node_statuses_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_game_server_node_statuses_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_game_server_node_statuses_set_input | null), -/** filter the rows which have to be updated */ -where: e_game_server_node_statuses_bool_exp} - - -/** columns and relationships of "e_league_movement_types" */ -export interface e_league_movement_typesGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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_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_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_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_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_league_movement_types_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_league_movement_types_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "e_league_movement_types" */ -export interface e_league_movement_types_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: e_league_movement_typesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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)} - - -/** 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_league_movement_types */ -export interface e_league_movement_types_pk_columns_input {value: Scalars['String']} - - -/** input type for updating data in table "e_league_movement_types" */ -export interface e_league_movement_types_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - - -/** Streaming cursor of the table "e_league_movement_types" */ -export interface e_league_movement_types_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: e_league_movement_types_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface e_league_movement_types_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_league_movement_types_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_league_movement_types_set_input | null), -/** filter the rows which have to be updated */ -where: e_league_movement_types_bool_exp} - - -/** columns and relationships of "e_league_proposal_statuses" */ -export interface e_league_proposal_statusesGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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_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_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_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_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_league_proposal_statuses_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_league_proposal_statuses_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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_league_proposal_statusesGenqlSelection - __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)} - - -/** 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_league_proposal_statuses */ -export interface e_league_proposal_statuses_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)} - - -/** Streaming cursor of the table "e_league_proposal_statuses" */ -export interface e_league_proposal_statuses_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: e_league_proposal_statuses_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface e_league_proposal_statuses_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_league_proposal_statuses_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_league_proposal_statuses_set_input | null), -/** filter the rows which have to be updated */ -where: e_league_proposal_statuses_bool_exp} - - -/** columns and relationships of "e_league_registration_statuses" */ -export interface e_league_registration_statusesGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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_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_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_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_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_league_registration_statuses_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_league_registration_statuses_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "e_league_registration_statuses" */ -export interface e_league_registration_statuses_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: e_league_registration_statusesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "e_league_registration_statuses" */ -export interface e_league_registration_statuses_obj_rel_insert_input {data: e_league_registration_statuses_insert_input, -/** upsert condition */ -on_conflict?: (e_league_registration_statuses_on_conflict | null)} - - -/** on_conflict condition type for table "e_league_registration_statuses" */ -export interface e_league_registration_statuses_on_conflict {constraint: e_league_registration_statuses_constraint,update_columns?: e_league_registration_statuses_update_column[],where?: (e_league_registration_statuses_bool_exp | null)} - - -/** 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_league_registration_statuses */ -export interface e_league_registration_statuses_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)} - - -/** Streaming cursor of the table "e_league_registration_statuses" */ -export interface e_league_registration_statuses_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: e_league_registration_statuses_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface e_league_registration_statuses_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_league_registration_statuses_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_league_registration_statuses_set_input | null), -/** filter the rows which have to be updated */ -where: e_league_registration_statuses_bool_exp} - - -/** columns and relationships of "e_league_season_statuses" */ -export interface e_league_season_statusesGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __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 - __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 - __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 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_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_league_season_statuses_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_league_season_statuses_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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_league_season_statusesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "e_league_season_statuses" */ -export interface e_league_season_statuses_obj_rel_insert_input {data: e_league_season_statuses_insert_input, -/** upsert condition */ -on_conflict?: (e_league_season_statuses_on_conflict | null)} - - -/** on_conflict condition type for table "e_league_season_statuses" */ -export interface e_league_season_statuses_on_conflict {constraint: e_league_season_statuses_constraint,update_columns?: e_league_season_statuses_update_column[],where?: (e_league_season_statuses_bool_exp | null)} - - -/** 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_league_season_statuses */ -export interface e_league_season_statuses_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)} - - -/** 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_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_league_season_statuses_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_league_season_statuses_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_league_season_statuses_set_input | null), -/** filter the rows which have to be updated */ -where: e_league_season_statuses_bool_exp} - - -/** columns and relationships of "e_lobby_access" */ -export interface e_lobby_accessGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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_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_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_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_lobby_access" */ -export interface e_lobby_access_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface e_lobby_access_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_lobby_access_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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_lobby_accessGenqlSelection - __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)} - - -/** Ordering options when selecting data from "e_lobby_access". */ -export interface e_lobby_access_order_by {description?: (order_by | null),value?: (order_by | null)} - - -/** primary key columns input for table: e_lobby_access */ -export interface e_lobby_access_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)} - - -/** 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_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_lobby_access_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_lobby_access_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_lobby_access_set_input | null), -/** filter the rows which have to be updated */ -where: e_lobby_access_bool_exp} - - -/** columns and relationships of "e_lobby_player_status" */ -export interface e_lobby_player_statusGenqlSelection{ - description?: boolean | number - 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 - __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 - __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 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_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_lobby_player_status_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_lobby_player_status_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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_lobby_player_statusGenqlSelection - __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)} - - -/** 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_lobby_player_status */ -export interface e_lobby_player_status_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)} - - -/** 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_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_lobby_player_status_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_lobby_player_status_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_lobby_player_status_set_input | null), -/** filter the rows which have to be updated */ -where: e_lobby_player_status_bool_exp} - - -/** columns and relationships of "e_map_pool_types" */ -export interface e_map_pool_typesGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "e_map_pool_types" */ -export interface e_map_pool_types_aggregateGenqlSelection{ - aggregate?: e_map_pool_types_aggregate_fieldsGenqlSelection - nodes?: e_map_pool_typesGenqlSelection - __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 - __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 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_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_map_pool_types_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_map_pool_types_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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_map_pool_typesGenqlSelection - __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)} - - -/** 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_map_pool_types */ -export interface e_map_pool_types_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)} - - -/** 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_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_map_pool_types_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_map_pool_types_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_map_pool_types_set_input | null), -/** filter the rows which have to be updated */ -where: e_map_pool_types_bool_exp} - - -/** 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_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_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_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_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_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_match_clip_visibility_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_match_clip_visibility_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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_match_clip_visibilityGenqlSelection - __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)} - - -/** 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_match_clip_visibility */ -export interface e_match_clip_visibility_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)} - - -/** 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_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_match_clip_visibility_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_match_clip_visibility_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_match_clip_visibility_set_input | null), -/** filter the rows which have to be updated */ -where: e_match_clip_visibility_bool_exp} - - -/** 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_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_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_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_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_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_match_map_status_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_match_map_status_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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_match_map_statusGenqlSelection - __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)} - - -/** 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_match_map_status */ -export interface e_match_map_status_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)} - - -/** 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_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_match_map_status_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_match_map_status_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_match_map_status_set_input | null), -/** filter the rows which have to be updated */ -where: e_match_map_status_bool_exp} - - -/** columns and relationships of "e_match_mode" */ -export interface e_match_modeGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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_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_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_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_match_mode" */ -export interface e_match_mode_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface e_match_mode_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_match_mode_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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_match_modeGenqlSelection - __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)} - - -/** 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_match_mode */ -export interface e_match_mode_pk_columns_input {value: Scalars['String']} - - -/** input type for updating data in table "e_match_mode" */ -export interface e_match_mode_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - - -/** 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_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_match_mode_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_match_mode_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_match_mode_set_input | null), -/** filter the rows which have to be updated */ -where: e_match_mode_bool_exp} - - -/** 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_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_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_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_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_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_match_party_sources_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_match_party_sources_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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_match_party_sourcesGenqlSelection - __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)} - - -/** 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_match_party_sources */ -export interface e_match_party_sources_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)} - - -/** 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_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_match_party_sources_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_match_party_sources_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_match_party_sources_set_input | null), -/** filter the rows which have to be updated */ -where: e_match_party_sources_bool_exp} - - -/** 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_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_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_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_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_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_match_status_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_match_status_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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_match_statusGenqlSelection - __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)} - - -/** 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_match_status */ -export interface e_match_status_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)} - - -/** 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_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_match_status_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_match_status_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_match_status_set_input | null), -/** filter the rows which have to be updated */ -where: e_match_status_bool_exp} - - -/** 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_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_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_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_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_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_match_types_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_match_types_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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_match_typesGenqlSelection - __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)} - - -/** 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_match_types */ -export interface e_match_types_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)} - - -/** 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_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_match_types_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_match_types_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_match_types_set_input | null), -/** filter the rows which have to be updated */ -where: e_match_types_bool_exp} - - -/** columns and relationships of "e_notification_types" */ -export interface e_notification_typesGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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_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_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_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_notification_types" */ -export interface e_notification_types_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface e_notification_types_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_notification_types_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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_notification_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)} - - -/** 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_notification_types */ -export interface e_notification_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)} - - -/** 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_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_notification_types_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_notification_types_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_notification_types_set_input | null), -/** filter the rows which have to be updated */ -where: e_notification_types_bool_exp} - - -/** 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_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_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_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_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_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_objective_types_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_objective_types_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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_objective_typesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "e_objective_types" */ -export interface e_objective_types_on_conflict {constraint: e_objective_types_constraint,update_columns?: e_objective_types_update_column[],where?: (e_objective_types_bool_exp | null)} - - -/** 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_objective_types */ -export interface e_objective_types_pk_columns_input {value: Scalars['String']} - - -/** 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_objective_types" */ -export interface e_objective_types_stream_cursor_input { -/** Stream column input with initial value */ -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_objective_types_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_objective_types_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_objective_types_set_input | null), -/** filter the rows which have to be updated */ -where: e_objective_types_bool_exp} - - -/** columns and relationships of "e_player_roles" */ -export interface e_player_rolesGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "e_player_roles" */ -export interface e_player_roles_aggregateGenqlSelection{ - aggregate?: e_player_roles_aggregate_fieldsGenqlSelection - nodes?: e_player_rolesGenqlSelection - __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 - __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 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_player_roles" */ -export interface e_player_roles_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface e_player_roles_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_player_roles_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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_player_rolesGenqlSelection - __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)} - - -/** 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_player_roles */ -export interface e_player_roles_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)} - - -/** 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_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_player_roles_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_player_roles_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_player_roles_set_input | null), -/** filter the rows which have to be updated */ -where: e_player_roles_bool_exp} - - -/** columns and relationships of "e_plugin_runtimes" */ -export interface e_plugin_runtimesGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "e_plugin_runtimes" */ -export interface e_plugin_runtimes_aggregateGenqlSelection{ - aggregate?: e_plugin_runtimes_aggregate_fieldsGenqlSelection - nodes?: e_plugin_runtimesGenqlSelection - __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 - __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 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_plugin_runtimes" */ -export interface e_plugin_runtimes_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface e_plugin_runtimes_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_plugin_runtimes_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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_plugin_runtimesGenqlSelection - __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)} - - -/** 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_plugin_runtimes */ -export interface e_plugin_runtimes_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)} - - -/** 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_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_plugin_runtimes_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_plugin_runtimes_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_plugin_runtimes_set_input | null), -/** filter the rows which have to be updated */ -where: e_plugin_runtimes_bool_exp} - - -/** columns and relationships of "e_ready_settings" */ -export interface e_ready_settingsGenqlSelection{ - description?: boolean | number - 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 - __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 - __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 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_ready_settings" */ -export interface e_ready_settings_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface e_ready_settings_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_ready_settings_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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_ready_settingsGenqlSelection - __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)} - - -/** 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_ready_settings */ -export interface e_ready_settings_pk_columns_input {value: Scalars['String']} - - -/** input type for updating data in table "e_ready_settings" */ -export interface e_ready_settings_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - - -/** 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_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_ready_settings_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_ready_settings_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_ready_settings_set_input | null), -/** filter the rows which have to be updated */ -where: e_ready_settings_bool_exp} - - -/** columns and relationships of "e_sanction_scopes" */ -export interface e_sanction_scopesGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "e_sanction_scopes" */ -export interface e_sanction_scopes_aggregateGenqlSelection{ - aggregate?: e_sanction_scopes_aggregate_fieldsGenqlSelection - nodes?: e_sanction_scopesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "e_sanction_scopes" */ -export interface e_sanction_scopes_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_sanction_scopes_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_sanction_scopes_max_fieldsGenqlSelection - min?: e_sanction_scopes_min_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "e_sanction_scopes". All fields are combined with a logical 'AND'. */ -export interface e_sanction_scopes_bool_exp {_and?: (e_sanction_scopes_bool_exp[] | null),_not?: (e_sanction_scopes_bool_exp | null),_or?: (e_sanction_scopes_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} - - -/** input type for inserting data into table "e_sanction_scopes" */ -export interface e_sanction_scopes_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface e_sanction_scopes_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_sanction_scopes_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "e_sanction_scopes" */ -export interface e_sanction_scopes_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: e_sanction_scopesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "e_sanction_scopes" */ -export interface e_sanction_scopes_obj_rel_insert_input {data: e_sanction_scopes_insert_input, -/** upsert condition */ -on_conflict?: (e_sanction_scopes_on_conflict | null)} - - -/** on_conflict condition type for table "e_sanction_scopes" */ -export interface e_sanction_scopes_on_conflict {constraint: e_sanction_scopes_constraint,update_columns?: e_sanction_scopes_update_column[],where?: (e_sanction_scopes_bool_exp | null)} - - -/** Ordering options when selecting data from "e_sanction_scopes". */ -export interface e_sanction_scopes_order_by {description?: (order_by | null),value?: (order_by | null)} - - -/** primary key columns input for table: e_sanction_scopes */ -export interface e_sanction_scopes_pk_columns_input {value: Scalars['String']} - - -/** input type for updating data in table "e_sanction_scopes" */ -export interface e_sanction_scopes_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - - -/** Streaming cursor of the table "e_sanction_scopes" */ -export interface e_sanction_scopes_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: e_sanction_scopes_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_scopes_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_sanction_scopes_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_sanction_scopes_set_input | null), -/** filter the rows which have to be updated */ -where: e_sanction_scopes_bool_exp} - - -/** columns and relationships of "e_sanction_sources" */ -export interface e_sanction_sourcesGenqlSelection{ - /** Comma separated ban durations in minutes, indexed by occurrence count */ - default_durations?: boolean | number - default_enabled?: boolean | number - default_scope?: boolean | number - default_threshold?: boolean | number - default_window_days?: boolean | number - description?: boolean | number - /** An object relationship */ - e_sanction_scope?: e_sanction_scopesGenqlSelection - value?: boolean | number - /** Source issues a player_sanctions ban row instead of a scoped cooldown */ - writes_platform_ban?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "e_sanction_sources" */ -export interface e_sanction_sources_aggregateGenqlSelection{ - aggregate?: e_sanction_sources_aggregate_fieldsGenqlSelection - nodes?: e_sanction_sourcesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "e_sanction_sources" */ -export interface e_sanction_sources_aggregate_fieldsGenqlSelection{ - avg?: e_sanction_sources_avg_fieldsGenqlSelection - count?: { __args: {columns?: (e_sanction_sources_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_sanction_sources_max_fieldsGenqlSelection - min?: e_sanction_sources_min_fieldsGenqlSelection - stddev?: e_sanction_sources_stddev_fieldsGenqlSelection - stddev_pop?: e_sanction_sources_stddev_pop_fieldsGenqlSelection - stddev_samp?: e_sanction_sources_stddev_samp_fieldsGenqlSelection - sum?: e_sanction_sources_sum_fieldsGenqlSelection - var_pop?: e_sanction_sources_var_pop_fieldsGenqlSelection - var_samp?: e_sanction_sources_var_samp_fieldsGenqlSelection - variance?: e_sanction_sources_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface e_sanction_sources_avg_fieldsGenqlSelection{ - default_threshold?: boolean | number - default_window_days?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "e_sanction_sources". All fields are combined with a logical 'AND'. */ -export interface e_sanction_sources_bool_exp {_and?: (e_sanction_sources_bool_exp[] | null),_not?: (e_sanction_sources_bool_exp | null),_or?: (e_sanction_sources_bool_exp[] | null),default_durations?: (String_comparison_exp | null),default_enabled?: (Boolean_comparison_exp | null),default_scope?: (String_comparison_exp | null),default_threshold?: (Int_comparison_exp | null),default_window_days?: (Int_comparison_exp | null),description?: (String_comparison_exp | null),e_sanction_scope?: (e_sanction_scopes_bool_exp | null),value?: (String_comparison_exp | null),writes_platform_ban?: (Boolean_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "e_sanction_sources" */ -export interface e_sanction_sources_inc_input {default_threshold?: (Scalars['Int'] | null),default_window_days?: (Scalars['Int'] | null)} - - -/** input type for inserting data into table "e_sanction_sources" */ -export interface e_sanction_sources_insert_input { -/** Comma separated ban durations in minutes, indexed by occurrence count */ -default_durations?: (Scalars['String'] | null),default_enabled?: (Scalars['Boolean'] | null),default_scope?: (Scalars['String'] | null),default_threshold?: (Scalars['Int'] | null),default_window_days?: (Scalars['Int'] | null),description?: (Scalars['String'] | null),e_sanction_scope?: (e_sanction_scopes_obj_rel_insert_input | null),value?: (Scalars['String'] | null), -/** Source issues a player_sanctions ban row instead of a scoped cooldown */ -writes_platform_ban?: (Scalars['Boolean'] | null)} - - -/** aggregate max on columns */ -export interface e_sanction_sources_max_fieldsGenqlSelection{ - /** Comma separated ban durations in minutes, indexed by occurrence count */ - default_durations?: boolean | number - default_scope?: boolean | number - default_threshold?: boolean | number - default_window_days?: boolean | number - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_sanction_sources_min_fieldsGenqlSelection{ - /** Comma separated ban durations in minutes, indexed by occurrence count */ - default_durations?: boolean | number - default_scope?: boolean | number - default_threshold?: boolean | number - default_window_days?: boolean | number - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "e_sanction_sources" */ -export interface e_sanction_sources_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: e_sanction_sourcesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "e_sanction_sources" */ -export interface e_sanction_sources_on_conflict {constraint: e_sanction_sources_constraint,update_columns?: e_sanction_sources_update_column[],where?: (e_sanction_sources_bool_exp | null)} - - -/** Ordering options when selecting data from "e_sanction_sources". */ -export interface e_sanction_sources_order_by {default_durations?: (order_by | null),default_enabled?: (order_by | null),default_scope?: (order_by | null),default_threshold?: (order_by | null),default_window_days?: (order_by | null),description?: (order_by | null),e_sanction_scope?: (e_sanction_scopes_order_by | null),value?: (order_by | null),writes_platform_ban?: (order_by | null)} - - -/** primary key columns input for table: e_sanction_sources */ -export interface e_sanction_sources_pk_columns_input {value: Scalars['String']} - - -/** input type for updating data in table "e_sanction_sources" */ -export interface e_sanction_sources_set_input { -/** Comma separated ban durations in minutes, indexed by occurrence count */ -default_durations?: (Scalars['String'] | null),default_enabled?: (Scalars['Boolean'] | null),default_scope?: (Scalars['String'] | null),default_threshold?: (Scalars['Int'] | null),default_window_days?: (Scalars['Int'] | null),description?: (Scalars['String'] | null),value?: (Scalars['String'] | null), -/** Source issues a player_sanctions ban row instead of a scoped cooldown */ -writes_platform_ban?: (Scalars['Boolean'] | null)} - - -/** aggregate stddev on columns */ -export interface e_sanction_sources_stddev_fieldsGenqlSelection{ - default_threshold?: boolean | number - default_window_days?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface e_sanction_sources_stddev_pop_fieldsGenqlSelection{ - default_threshold?: boolean | number - default_window_days?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface e_sanction_sources_stddev_samp_fieldsGenqlSelection{ - default_threshold?: boolean | number - default_window_days?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "e_sanction_sources" */ -export interface e_sanction_sources_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: e_sanction_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_sanction_sources_stream_cursor_value_input { -/** Comma separated ban durations in minutes, indexed by occurrence count */ -default_durations?: (Scalars['String'] | null),default_enabled?: (Scalars['Boolean'] | null),default_scope?: (Scalars['String'] | null),default_threshold?: (Scalars['Int'] | null),default_window_days?: (Scalars['Int'] | null),description?: (Scalars['String'] | null),value?: (Scalars['String'] | null), -/** Source issues a player_sanctions ban row instead of a scoped cooldown */ -writes_platform_ban?: (Scalars['Boolean'] | null)} - - -/** aggregate sum on columns */ -export interface e_sanction_sources_sum_fieldsGenqlSelection{ - default_threshold?: boolean | number - default_window_days?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface e_sanction_sources_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (e_sanction_sources_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (e_sanction_sources_set_input | null), -/** filter the rows which have to be updated */ -where: e_sanction_sources_bool_exp} - - -/** aggregate var_pop on columns */ -export interface e_sanction_sources_var_pop_fieldsGenqlSelection{ - default_threshold?: boolean | number - default_window_days?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface e_sanction_sources_var_samp_fieldsGenqlSelection{ - default_threshold?: boolean | number - default_window_days?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface e_sanction_sources_variance_fieldsGenqlSelection{ - default_threshold?: boolean | number - default_window_days?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "e_sanction_types" */ -export interface e_sanction_typesGenqlSelection{ - description?: boolean | number - 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 - __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 - __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 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_sanction_types" */ -export interface e_sanction_types_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface e_sanction_types_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_sanction_types_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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_sanction_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, -/** upsert condition */ -on_conflict?: (e_sanction_types_on_conflict | null)} - - -/** on_conflict condition type for table "e_sanction_types" */ -export interface e_sanction_types_on_conflict {constraint: e_sanction_types_constraint,update_columns?: e_sanction_types_update_column[],where?: (e_sanction_types_bool_exp | null)} - - -/** Ordering options when selecting data from "e_sanction_types". */ -export interface e_sanction_types_order_by {description?: (order_by | null),value?: (order_by | null)} - - -/** primary key columns input for table: e_sanction_types */ -export interface e_sanction_types_pk_columns_input {value: Scalars['String']} - - -/** 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_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_sanction_types_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_sanction_types_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_sanction_types_set_input | null), -/** filter the rows which have to be updated */ -where: e_sanction_types_bool_exp} - - -/** columns and relationships of "e_scrim_request_statuses" */ -export interface e_scrim_request_statusesGenqlSelection{ - description?: boolean | number - /** An array relationship */ - scrim_requests?: (team_scrim_requestsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (team_scrim_requests_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (team_scrim_requests_order_by[] | null), - /** filter the rows returned */ - where?: (team_scrim_requests_bool_exp | null)} }) - /** An aggregate relationship */ - scrim_requests_aggregate?: (team_scrim_requests_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (team_scrim_requests_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (team_scrim_requests_order_by[] | null), - /** filter the rows returned */ - where?: (team_scrim_requests_bool_exp | null)} }) - value?: boolean | number - __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 - __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 - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "e_scrim_request_statuses". All fields are combined with a logical 'AND'. */ -export interface e_scrim_request_statuses_bool_exp {_and?: (e_scrim_request_statuses_bool_exp[] | null),_not?: (e_scrim_request_statuses_bool_exp | null),_or?: (e_scrim_request_statuses_bool_exp[] | null),description?: (String_comparison_exp | null),scrim_requests?: (team_scrim_requests_bool_exp | null),scrim_requests_aggregate?: (team_scrim_requests_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} - - -/** Boolean expression to compare columns of type "e_scrim_request_statuses_enum". All fields are combined with logical 'AND'. */ -export interface e_scrim_request_statuses_enum_comparison_exp {_eq?: (e_scrim_request_statuses_enum | null),_in?: (e_scrim_request_statuses_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_scrim_request_statuses_enum | null),_nin?: (e_scrim_request_statuses_enum[] | null)} - - -/** 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_scrim_request_statuses_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_scrim_request_statuses_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "e_scrim_request_statuses" */ -export interface e_scrim_request_statuses_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: e_scrim_request_statusesGenqlSelection - __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)} - - -/** 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_scrim_request_statuses */ -export interface e_scrim_request_statuses_pk_columns_input {value: Scalars['String']} - - -/** 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_scrim_request_statuses" */ -export interface e_scrim_request_statuses_stream_cursor_input { -/** Stream column input with initial value */ -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_scrim_request_statuses_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_scrim_request_statuses_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_scrim_request_statuses_set_input | null), -/** filter the rows which have to be updated */ -where: e_scrim_request_statuses_bool_exp} - - -/** columns and relationships of "e_server_types" */ -export interface e_server_typesGenqlSelection{ - description?: boolean | number - /** An array relationship */ - servers?: (serversGenqlSelection & { __args?: { - /** distinct select on columns */ - 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?: (servers_order_by[] | null), - /** filter the rows returned */ - where?: (servers_bool_exp | null)} }) - /** An aggregate relationship */ - servers_aggregate?: (servers_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - 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?: (servers_order_by[] | null), - /** filter the rows returned */ - where?: (servers_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 - __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 - __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 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_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_server_types_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_server_types_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "e_server_types" */ -export interface e_server_types_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: e_server_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)} - - -/** 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_server_types */ -export interface e_server_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)} - - -/** Streaming cursor of the table "e_server_types" */ -export interface e_server_types_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: e_server_types_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface e_server_types_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_server_types_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_server_types_set_input | null), -/** filter the rows which have to be updated */ -where: e_server_types_bool_exp} - - -/** columns and relationships of "e_sides" */ -export interface e_sidesGenqlSelection{ - description?: boolean | number - /** An array relationship */ - match_map_lineup_1?: (match_mapsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_maps_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (match_maps_order_by[] | null), - /** filter the rows returned */ - where?: (match_maps_bool_exp | null)} }) - /** An aggregate relationship */ - match_map_lineup_1_aggregate?: (match_maps_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_maps_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (match_maps_order_by[] | null), - /** filter the rows returned */ - where?: (match_maps_bool_exp | null)} }) - /** An array relationship */ - match_map_lineup_2?: (match_mapsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_maps_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (match_maps_order_by[] | null), - /** filter the rows returned */ - where?: (match_maps_bool_exp | null)} }) - /** An aggregate relationship */ - match_map_lineup_2_aggregate?: (match_maps_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_maps_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (match_maps_order_by[] | null), - /** filter the rows returned */ - where?: (match_maps_bool_exp | null)} }) - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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_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_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_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_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_sides_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_sides_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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_sidesGenqlSelection - __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)} - - -/** 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_sides */ -export interface e_sides_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)} - - -/** Streaming cursor of the table "e_sides" */ -export interface e_sides_stream_cursor_input { -/** Stream column input with initial value */ -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_sides_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_sides_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_sides_set_input | null), -/** filter the rows which have to be updated */ -where: e_sides_bool_exp} - - -/** columns and relationships of "e_system_alert_types" */ -export interface e_system_alert_typesGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "e_system_alert_types" */ -export interface e_system_alert_types_aggregateGenqlSelection{ - aggregate?: e_system_alert_types_aggregate_fieldsGenqlSelection - nodes?: e_system_alert_typesGenqlSelection - __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 - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "e_system_alert_types". All fields are combined with a logical 'AND'. */ -export interface e_system_alert_types_bool_exp {_and?: (e_system_alert_types_bool_exp[] | null),_not?: (e_system_alert_types_bool_exp | null),_or?: (e_system_alert_types_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} - - -/** Boolean expression to compare columns of type "e_system_alert_types_enum". All fields are combined with logical 'AND'. */ -export interface e_system_alert_types_enum_comparison_exp {_eq?: (e_system_alert_types_enum | null),_in?: (e_system_alert_types_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_system_alert_types_enum | null),_nin?: (e_system_alert_types_enum[] | null)} - - -/** 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_system_alert_types_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_system_alert_types_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "e_system_alert_types" */ -export interface e_system_alert_types_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: e_system_alert_typesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "e_system_alert_types" */ -export interface e_system_alert_types_on_conflict {constraint: e_system_alert_types_constraint,update_columns?: e_system_alert_types_update_column[],where?: (e_system_alert_types_bool_exp | null)} - - -/** Ordering options when selecting data from "e_system_alert_types". */ -export interface e_system_alert_types_order_by {description?: (order_by | null),value?: (order_by | null)} - - -/** 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_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_system_alert_types" */ -export interface e_system_alert_types_stream_cursor_input { -/** Stream column input with initial value */ -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_system_alert_types_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_system_alert_types_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_system_alert_types_set_input | null), -/** filter the rows which have to be updated */ -where: e_system_alert_types_bool_exp} - - -/** 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 - __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 - __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 - __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)} - - -/** 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_team_roles_max_fieldsGenqlSelection{ - description?: boolean | number - value?: 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 - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "e_team_roles" */ -export interface e_team_roles_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: e_team_rolesGenqlSelection - __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)} - - -/** Ordering options when selecting data from "e_team_roles". */ -export interface e_team_roles_order_by {description?: (order_by | null),team_rosters_aggregate?: (team_roster_aggregate_order_by | null),tournament_team_rosters_aggregate?: (tournament_team_roster_aggregate_order_by | null),value?: (order_by | null)} - - -/** primary key columns input for table: e_team_roles */ -export interface e_team_roles_pk_columns_input {value: Scalars['String']} - - -/** 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_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_team_roles_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_team_roles_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_team_roles_set_input | null), -/** filter the rows which have to be updated */ -where: e_team_roles_bool_exp} - - -/** columns and relationships of "e_team_roster_statuses" */ -export interface e_team_roster_statusesGenqlSelection{ - description?: boolean | number - value?: 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 - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "e_team_roster_statuses" */ -export interface e_team_roster_statuses_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_team_roster_statuses_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_team_roster_statuses_max_fieldsGenqlSelection - min?: e_team_roster_statuses_min_fieldsGenqlSelection - __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)} - - -/** 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_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_team_roster_statuses_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_team_roster_statuses_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "e_team_roster_statuses" */ -export interface e_team_roster_statuses_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: e_team_roster_statusesGenqlSelection - __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)} - - -/** 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_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_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)} - - -/** 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 "e_timeout_settings" */ -export interface e_timeout_settingsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "e_timeout_settings" */ -export interface e_timeout_settings_aggregateGenqlSelection{ - aggregate?: e_timeout_settings_aggregate_fieldsGenqlSelection - nodes?: e_timeout_settingsGenqlSelection - __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 - __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)} - - -/** 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_timeout_settings" */ -export interface e_timeout_settings_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface e_timeout_settings_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_timeout_settings_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "e_timeout_settings" */ -export interface e_timeout_settings_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: e_timeout_settingsGenqlSelection - __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)} - - -/** 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_timeout_settings */ -export interface e_timeout_settings_pk_columns_input {value: Scalars['String']} - - -/** 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_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)} - - -/** 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} - - -/** columns and relationships of "e_tournament_categories" */ -export interface e_tournament_categoriesGenqlSelection{ - description?: boolean | number - /** An array relationship */ - tournament_categories?: (tournament_categoriesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_categories_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (tournament_categories_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_categories_bool_exp | null)} }) - /** An aggregate relationship */ - tournament_categories_aggregate?: (tournament_categories_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_categories_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (tournament_categories_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_categories_bool_exp | null)} }) - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "e_tournament_categories" */ -export interface e_tournament_categories_aggregateGenqlSelection{ - aggregate?: e_tournament_categories_aggregate_fieldsGenqlSelection - nodes?: e_tournament_categoriesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "e_tournament_categories" */ -export interface e_tournament_categories_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_tournament_categories_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_tournament_categories_max_fieldsGenqlSelection - min?: e_tournament_categories_min_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "e_tournament_categories". All fields are combined with a logical 'AND'. */ -export interface e_tournament_categories_bool_exp {_and?: (e_tournament_categories_bool_exp[] | null),_not?: (e_tournament_categories_bool_exp | null),_or?: (e_tournament_categories_bool_exp[] | null),description?: (String_comparison_exp | null),tournament_categories?: (tournament_categories_bool_exp | null),tournament_categories_aggregate?: (tournament_categories_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} - - -/** Boolean expression to compare columns of type "e_tournament_categories_enum". All fields are combined with logical 'AND'. */ -export interface e_tournament_categories_enum_comparison_exp {_eq?: (e_tournament_categories_enum | null),_in?: (e_tournament_categories_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_tournament_categories_enum | null),_nin?: (e_tournament_categories_enum[] | null)} - - -/** input type for inserting data into table "e_tournament_categories" */ -export interface e_tournament_categories_insert_input {description?: (Scalars['String'] | null),tournament_categories?: (tournament_categories_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface e_tournament_categories_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_tournament_categories_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "e_tournament_categories" */ -export interface e_tournament_categories_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: e_tournament_categoriesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "e_tournament_categories" */ -export interface e_tournament_categories_obj_rel_insert_input {data: e_tournament_categories_insert_input, -/** upsert condition */ -on_conflict?: (e_tournament_categories_on_conflict | null)} - - -/** on_conflict condition type for table "e_tournament_categories" */ -export interface e_tournament_categories_on_conflict {constraint: e_tournament_categories_constraint,update_columns?: e_tournament_categories_update_column[],where?: (e_tournament_categories_bool_exp | null)} - - -/** Ordering options when selecting data from "e_tournament_categories". */ -export interface e_tournament_categories_order_by {description?: (order_by | null),tournament_categories_aggregate?: (tournament_categories_aggregate_order_by | null),value?: (order_by | null)} - - -/** primary key columns input for table: e_tournament_categories */ -export interface e_tournament_categories_pk_columns_input {value: Scalars['String']} - - -/** input type for updating data in table "e_tournament_categories" */ -export interface e_tournament_categories_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - - -/** Streaming cursor of the table "e_tournament_categories" */ -export interface e_tournament_categories_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: e_tournament_categories_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface e_tournament_categories_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_tournament_categories_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_tournament_categories_set_input | null), -/** filter the rows which have to be updated */ -where: e_tournament_categories_bool_exp} - - -/** columns and relationships of "e_tournament_free_agent_statuses" */ -export interface e_tournament_free_agent_statusesGenqlSelection{ - description?: boolean | number - /** An array relationship */ - tournament_free_agents?: (tournament_free_agentsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_free_agents_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_free_agents_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_free_agents_bool_exp | null)} }) - /** An aggregate relationship */ - tournament_free_agents_aggregate?: (tournament_free_agents_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_free_agents_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_free_agents_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_free_agents_bool_exp | null)} }) - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "e_tournament_free_agent_statuses" */ -export interface e_tournament_free_agent_statuses_aggregateGenqlSelection{ - aggregate?: e_tournament_free_agent_statuses_aggregate_fieldsGenqlSelection - nodes?: e_tournament_free_agent_statusesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "e_tournament_free_agent_statuses" */ -export interface e_tournament_free_agent_statuses_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_tournament_free_agent_statuses_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_tournament_free_agent_statuses_max_fieldsGenqlSelection - min?: e_tournament_free_agent_statuses_min_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "e_tournament_free_agent_statuses". All fields are combined with a logical 'AND'. */ -export interface e_tournament_free_agent_statuses_bool_exp {_and?: (e_tournament_free_agent_statuses_bool_exp[] | null),_not?: (e_tournament_free_agent_statuses_bool_exp | null),_or?: (e_tournament_free_agent_statuses_bool_exp[] | null),description?: (String_comparison_exp | null),tournament_free_agents?: (tournament_free_agents_bool_exp | null),tournament_free_agents_aggregate?: (tournament_free_agents_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} - - -/** Boolean expression to compare columns of type "e_tournament_free_agent_statuses_enum". All fields are combined with logical 'AND'. */ -export interface e_tournament_free_agent_statuses_enum_comparison_exp {_eq?: (e_tournament_free_agent_statuses_enum | null),_in?: (e_tournament_free_agent_statuses_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_tournament_free_agent_statuses_enum | null),_nin?: (e_tournament_free_agent_statuses_enum[] | null)} - - -/** input type for inserting data into table "e_tournament_free_agent_statuses" */ -export interface e_tournament_free_agent_statuses_insert_input {description?: (Scalars['String'] | null),tournament_free_agents?: (tournament_free_agents_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface e_tournament_free_agent_statuses_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_tournament_free_agent_statuses_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "e_tournament_free_agent_statuses" */ -export interface e_tournament_free_agent_statuses_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: e_tournament_free_agent_statusesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "e_tournament_free_agent_statuses" */ -export interface e_tournament_free_agent_statuses_obj_rel_insert_input {data: e_tournament_free_agent_statuses_insert_input, -/** upsert condition */ -on_conflict?: (e_tournament_free_agent_statuses_on_conflict | null)} - - -/** on_conflict condition type for table "e_tournament_free_agent_statuses" */ -export interface e_tournament_free_agent_statuses_on_conflict {constraint: e_tournament_free_agent_statuses_constraint,update_columns?: e_tournament_free_agent_statuses_update_column[],where?: (e_tournament_free_agent_statuses_bool_exp | null)} - - -/** Ordering options when selecting data from "e_tournament_free_agent_statuses". */ -export interface e_tournament_free_agent_statuses_order_by {description?: (order_by | null),tournament_free_agents_aggregate?: (tournament_free_agents_aggregate_order_by | null),value?: (order_by | null)} - - -/** primary key columns input for table: e_tournament_free_agent_statuses */ -export interface e_tournament_free_agent_statuses_pk_columns_input {value: Scalars['String']} - - -/** input type for updating data in table "e_tournament_free_agent_statuses" */ -export interface e_tournament_free_agent_statuses_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - - -/** Streaming cursor of the table "e_tournament_free_agent_statuses" */ -export interface e_tournament_free_agent_statuses_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: e_tournament_free_agent_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_tournament_free_agent_statuses_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_tournament_free_agent_statuses_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_tournament_free_agent_statuses_set_input | null), -/** filter the rows which have to be updated */ -where: e_tournament_free_agent_statuses_bool_exp} - - -/** columns and relationships of "e_tournament_registration_types" */ -export interface e_tournament_registration_typesGenqlSelection{ - description?: boolean | number - /** An array relationship */ - tournaments?: (tournamentsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournaments_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (tournaments_order_by[] | null), - /** filter the rows returned */ - where?: (tournaments_bool_exp | null)} }) - /** An aggregate relationship */ - tournaments_aggregate?: (tournaments_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournaments_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (tournaments_order_by[] | null), - /** filter the rows returned */ - where?: (tournaments_bool_exp | null)} }) - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "e_tournament_registration_types" */ -export interface e_tournament_registration_types_aggregateGenqlSelection{ - aggregate?: e_tournament_registration_types_aggregate_fieldsGenqlSelection - nodes?: e_tournament_registration_typesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "e_tournament_registration_types" */ -export interface e_tournament_registration_types_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_tournament_registration_types_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_tournament_registration_types_max_fieldsGenqlSelection - min?: e_tournament_registration_types_min_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "e_tournament_registration_types". All fields are combined with a logical 'AND'. */ -export interface e_tournament_registration_types_bool_exp {_and?: (e_tournament_registration_types_bool_exp[] | null),_not?: (e_tournament_registration_types_bool_exp | null),_or?: (e_tournament_registration_types_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_tournament_registration_types_enum". All fields are combined with logical 'AND'. */ -export interface e_tournament_registration_types_enum_comparison_exp {_eq?: (e_tournament_registration_types_enum | null),_in?: (e_tournament_registration_types_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_tournament_registration_types_enum | null),_nin?: (e_tournament_registration_types_enum[] | null)} - - -/** input type for inserting data into table "e_tournament_registration_types" */ -export interface e_tournament_registration_types_insert_input {description?: (Scalars['String'] | null),tournaments?: (tournaments_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface e_tournament_registration_types_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_tournament_registration_types_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "e_tournament_registration_types" */ -export interface e_tournament_registration_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_registration_typesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "e_tournament_registration_types" */ -export interface e_tournament_registration_types_on_conflict {constraint: e_tournament_registration_types_constraint,update_columns?: e_tournament_registration_types_update_column[],where?: (e_tournament_registration_types_bool_exp | null)} - - -/** Ordering options when selecting data from "e_tournament_registration_types". */ -export interface e_tournament_registration_types_order_by {description?: (order_by | null),tournaments_aggregate?: (tournaments_aggregate_order_by | null),value?: (order_by | null)} - - -/** primary key columns input for table: e_tournament_registration_types */ -export interface e_tournament_registration_types_pk_columns_input {value: Scalars['String']} - - -/** input type for updating data in table "e_tournament_registration_types" */ -export interface e_tournament_registration_types_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - - -/** Streaming cursor of the table "e_tournament_registration_types" */ -export interface e_tournament_registration_types_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: e_tournament_registration_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_tournament_registration_types_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_tournament_registration_types_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_tournament_registration_types_set_input | null), -/** filter the rows which have to be updated */ -where: e_tournament_registration_types_bool_exp} - - -/** 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_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_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_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_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_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_tournament_stage_types_max_fieldsGenqlSelection{ - description?: boolean | number - value?: 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 -} - - -/** 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 - __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)} - - -/** 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_tournament_stage_types */ -export interface e_tournament_stage_types_pk_columns_input {value: Scalars['String']} - - -/** input type for updating data in table "e_tournament_stage_types" */ -export interface e_tournament_stage_types_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - - -/** Streaming cursor of the table "e_tournament_stage_types" */ -export interface e_tournament_stage_types_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: e_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_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 "e_tournament_status" */ -export interface e_tournament_statusGenqlSelection{ - description?: boolean | number - /** An array relationship */ - tournaments?: (tournamentsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournaments_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (tournaments_order_by[] | null), - /** filter the rows returned */ - where?: (tournaments_bool_exp | null)} }) - /** An aggregate relationship */ - tournaments_aggregate?: (tournaments_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournaments_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (tournaments_order_by[] | null), - /** filter the rows returned */ - where?: (tournaments_bool_exp | null)} }) - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "e_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_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_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_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_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_tournament_status_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_tournament_status_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "e_tournament_status" */ -export interface e_tournament_status_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: e_tournament_statusGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "e_tournament_status" */ -export interface e_tournament_status_obj_rel_insert_input {data: e_tournament_status_insert_input, -/** upsert condition */ -on_conflict?: (e_tournament_status_on_conflict | null)} - - -/** on_conflict condition type for table "e_tournament_status" */ -export interface e_tournament_status_on_conflict {constraint: e_tournament_status_constraint,update_columns?: e_tournament_status_update_column[],where?: (e_tournament_status_bool_exp | null)} - - -/** Ordering options when selecting data from "e_tournament_status". */ -export interface e_tournament_status_order_by {description?: (order_by | null),tournaments_aggregate?: (tournaments_aggregate_order_by | null),value?: (order_by | null)} - - -/** primary key columns input for table: e_tournament_status */ -export interface e_tournament_status_pk_columns_input {value: Scalars['String']} - - -/** 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_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_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} - - -/** columns and relationships of "e_utility_practice_access" */ -export interface e_utility_practice_accessGenqlSelection{ - description?: boolean | number - /** An array relationship */ - utility_practice_sessions?: (utility_practice_sessionsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_practice_sessions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_practice_sessions_order_by[] | null), - /** filter the rows returned */ - where?: (utility_practice_sessions_bool_exp | null)} }) - /** An aggregate relationship */ - utility_practice_sessions_aggregate?: (utility_practice_sessions_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_practice_sessions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_practice_sessions_order_by[] | null), - /** filter the rows returned */ - where?: (utility_practice_sessions_bool_exp | null)} }) - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "e_utility_practice_access" */ -export interface e_utility_practice_access_aggregateGenqlSelection{ - aggregate?: e_utility_practice_access_aggregate_fieldsGenqlSelection - nodes?: e_utility_practice_accessGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "e_utility_practice_access" */ -export interface e_utility_practice_access_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_utility_practice_access_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_utility_practice_access_max_fieldsGenqlSelection - min?: e_utility_practice_access_min_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "e_utility_practice_access". All fields are combined with a logical 'AND'. */ -export interface e_utility_practice_access_bool_exp {_and?: (e_utility_practice_access_bool_exp[] | null),_not?: (e_utility_practice_access_bool_exp | null),_or?: (e_utility_practice_access_bool_exp[] | null),description?: (String_comparison_exp | null),utility_practice_sessions?: (utility_practice_sessions_bool_exp | null),utility_practice_sessions_aggregate?: (utility_practice_sessions_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} - - -/** Boolean expression to compare columns of type "e_utility_practice_access_enum". All fields are combined with logical 'AND'. */ -export interface e_utility_practice_access_enum_comparison_exp {_eq?: (e_utility_practice_access_enum | null),_in?: (e_utility_practice_access_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_utility_practice_access_enum | null),_nin?: (e_utility_practice_access_enum[] | null)} - - -/** input type for inserting data into table "e_utility_practice_access" */ -export interface e_utility_practice_access_insert_input {description?: (Scalars['String'] | null),utility_practice_sessions?: (utility_practice_sessions_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface e_utility_practice_access_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_utility_practice_access_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "e_utility_practice_access" */ -export interface e_utility_practice_access_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: e_utility_practice_accessGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "e_utility_practice_access" */ -export interface e_utility_practice_access_on_conflict {constraint: e_utility_practice_access_constraint,update_columns?: e_utility_practice_access_update_column[],where?: (e_utility_practice_access_bool_exp | null)} - - -/** Ordering options when selecting data from "e_utility_practice_access". */ -export interface e_utility_practice_access_order_by {description?: (order_by | null),utility_practice_sessions_aggregate?: (utility_practice_sessions_aggregate_order_by | null),value?: (order_by | null)} - - -/** primary key columns input for table: e_utility_practice_access */ -export interface e_utility_practice_access_pk_columns_input {value: Scalars['String']} - - -/** input type for updating data in table "e_utility_practice_access" */ -export interface e_utility_practice_access_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - - -/** Streaming cursor of the table "e_utility_practice_access" */ -export interface e_utility_practice_access_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: e_utility_practice_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_utility_practice_access_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_utility_practice_access_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_utility_practice_access_set_input | null), -/** filter the rows which have to be updated */ -where: e_utility_practice_access_bool_exp} - - -/** columns and relationships of "e_utility_practice_statuses" */ -export interface e_utility_practice_statusesGenqlSelection{ - description?: boolean | number - /** An array relationship */ - utility_practice_sessions?: (utility_practice_sessionsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_practice_sessions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_practice_sessions_order_by[] | null), - /** filter the rows returned */ - where?: (utility_practice_sessions_bool_exp | null)} }) - /** An aggregate relationship */ - utility_practice_sessions_aggregate?: (utility_practice_sessions_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_practice_sessions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_practice_sessions_order_by[] | null), - /** filter the rows returned */ - where?: (utility_practice_sessions_bool_exp | null)} }) - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "e_utility_practice_statuses" */ -export interface e_utility_practice_statuses_aggregateGenqlSelection{ - aggregate?: e_utility_practice_statuses_aggregate_fieldsGenqlSelection - nodes?: e_utility_practice_statusesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "e_utility_practice_statuses" */ -export interface e_utility_practice_statuses_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_utility_practice_statuses_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_utility_practice_statuses_max_fieldsGenqlSelection - min?: e_utility_practice_statuses_min_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "e_utility_practice_statuses". All fields are combined with a logical 'AND'. */ -export interface e_utility_practice_statuses_bool_exp {_and?: (e_utility_practice_statuses_bool_exp[] | null),_not?: (e_utility_practice_statuses_bool_exp | null),_or?: (e_utility_practice_statuses_bool_exp[] | null),description?: (String_comparison_exp | null),utility_practice_sessions?: (utility_practice_sessions_bool_exp | null),utility_practice_sessions_aggregate?: (utility_practice_sessions_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} - - -/** Boolean expression to compare columns of type "e_utility_practice_statuses_enum". All fields are combined with logical 'AND'. */ -export interface e_utility_practice_statuses_enum_comparison_exp {_eq?: (e_utility_practice_statuses_enum | null),_in?: (e_utility_practice_statuses_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_utility_practice_statuses_enum | null),_nin?: (e_utility_practice_statuses_enum[] | null)} - - -/** input type for inserting data into table "e_utility_practice_statuses" */ -export interface e_utility_practice_statuses_insert_input {description?: (Scalars['String'] | null),utility_practice_sessions?: (utility_practice_sessions_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface e_utility_practice_statuses_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_utility_practice_statuses_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "e_utility_practice_statuses" */ -export interface e_utility_practice_statuses_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: e_utility_practice_statusesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "e_utility_practice_statuses" */ -export interface e_utility_practice_statuses_obj_rel_insert_input {data: e_utility_practice_statuses_insert_input, -/** upsert condition */ -on_conflict?: (e_utility_practice_statuses_on_conflict | null)} - - -/** on_conflict condition type for table "e_utility_practice_statuses" */ -export interface e_utility_practice_statuses_on_conflict {constraint: e_utility_practice_statuses_constraint,update_columns?: e_utility_practice_statuses_update_column[],where?: (e_utility_practice_statuses_bool_exp | null)} - - -/** Ordering options when selecting data from "e_utility_practice_statuses". */ -export interface e_utility_practice_statuses_order_by {description?: (order_by | null),utility_practice_sessions_aggregate?: (utility_practice_sessions_aggregate_order_by | null),value?: (order_by | null)} - - -/** primary key columns input for table: e_utility_practice_statuses */ -export interface e_utility_practice_statuses_pk_columns_input {value: Scalars['String']} - - -/** input type for updating data in table "e_utility_practice_statuses" */ -export interface e_utility_practice_statuses_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - - -/** Streaming cursor of the table "e_utility_practice_statuses" */ -export interface e_utility_practice_statuses_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: e_utility_practice_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_utility_practice_statuses_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_utility_practice_statuses_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_utility_practice_statuses_set_input | null), -/** filter the rows which have to be updated */ -where: e_utility_practice_statuses_bool_exp} - - -/** columns and relationships of "e_utility_sources" */ -export interface e_utility_sourcesGenqlSelection{ - description?: boolean | number - /** An array relationship */ - utility_lineups?: (utility_lineupsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_lineups_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_lineups_order_by[] | null), - /** filter the rows returned */ - where?: (utility_lineups_bool_exp | null)} }) - /** An aggregate relationship */ - utility_lineups_aggregate?: (utility_lineups_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_lineups_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_lineups_order_by[] | null), - /** filter the rows returned */ - where?: (utility_lineups_bool_exp | null)} }) - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "e_utility_sources" */ -export interface e_utility_sources_aggregateGenqlSelection{ - aggregate?: e_utility_sources_aggregate_fieldsGenqlSelection - nodes?: e_utility_sourcesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "e_utility_sources" */ -export interface e_utility_sources_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_utility_sources_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_utility_sources_max_fieldsGenqlSelection - min?: e_utility_sources_min_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "e_utility_sources". All fields are combined with a logical 'AND'. */ -export interface e_utility_sources_bool_exp {_and?: (e_utility_sources_bool_exp[] | null),_not?: (e_utility_sources_bool_exp | null),_or?: (e_utility_sources_bool_exp[] | null),description?: (String_comparison_exp | null),utility_lineups?: (utility_lineups_bool_exp | null),utility_lineups_aggregate?: (utility_lineups_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} - - -/** Boolean expression to compare columns of type "e_utility_sources_enum". All fields are combined with logical 'AND'. */ -export interface e_utility_sources_enum_comparison_exp {_eq?: (e_utility_sources_enum | null),_in?: (e_utility_sources_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_utility_sources_enum | null),_nin?: (e_utility_sources_enum[] | null)} - - -/** input type for inserting data into table "e_utility_sources" */ -export interface e_utility_sources_insert_input {description?: (Scalars['String'] | null),utility_lineups?: (utility_lineups_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface e_utility_sources_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_utility_sources_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "e_utility_sources" */ -export interface e_utility_sources_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: e_utility_sourcesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "e_utility_sources" */ -export interface e_utility_sources_on_conflict {constraint: e_utility_sources_constraint,update_columns?: e_utility_sources_update_column[],where?: (e_utility_sources_bool_exp | null)} - - -/** Ordering options when selecting data from "e_utility_sources". */ -export interface e_utility_sources_order_by {description?: (order_by | null),utility_lineups_aggregate?: (utility_lineups_aggregate_order_by | null),value?: (order_by | null)} - - -/** primary key columns input for table: e_utility_sources */ -export interface e_utility_sources_pk_columns_input {value: Scalars['String']} - - -/** input type for updating data in table "e_utility_sources" */ -export interface e_utility_sources_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - - -/** Streaming cursor of the table "e_utility_sources" */ -export interface e_utility_sources_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: e_utility_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_utility_sources_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_utility_sources_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_utility_sources_set_input | null), -/** filter the rows which have to be updated */ -where: e_utility_sources_bool_exp} - - -/** columns and relationships of "e_utility_techniques" */ -export interface e_utility_techniquesGenqlSelection{ - description?: boolean | number - /** An array relationship */ - utility_lineups?: (utility_lineupsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_lineups_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_lineups_order_by[] | null), - /** filter the rows returned */ - where?: (utility_lineups_bool_exp | null)} }) - /** An aggregate relationship */ - utility_lineups_aggregate?: (utility_lineups_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_lineups_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_lineups_order_by[] | null), - /** filter the rows returned */ - where?: (utility_lineups_bool_exp | null)} }) - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "e_utility_techniques" */ -export interface e_utility_techniques_aggregateGenqlSelection{ - aggregate?: e_utility_techniques_aggregate_fieldsGenqlSelection - nodes?: e_utility_techniquesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "e_utility_techniques" */ -export interface e_utility_techniques_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_utility_techniques_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_utility_techniques_max_fieldsGenqlSelection - min?: e_utility_techniques_min_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "e_utility_techniques". All fields are combined with a logical 'AND'. */ -export interface e_utility_techniques_bool_exp {_and?: (e_utility_techniques_bool_exp[] | null),_not?: (e_utility_techniques_bool_exp | null),_or?: (e_utility_techniques_bool_exp[] | null),description?: (String_comparison_exp | null),utility_lineups?: (utility_lineups_bool_exp | null),utility_lineups_aggregate?: (utility_lineups_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} - - -/** Boolean expression to compare columns of type "e_utility_techniques_enum". All fields are combined with logical 'AND'. */ -export interface e_utility_techniques_enum_comparison_exp {_eq?: (e_utility_techniques_enum | null),_in?: (e_utility_techniques_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_utility_techniques_enum | null),_nin?: (e_utility_techniques_enum[] | null)} - - -/** input type for inserting data into table "e_utility_techniques" */ -export interface e_utility_techniques_insert_input {description?: (Scalars['String'] | null),utility_lineups?: (utility_lineups_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface e_utility_techniques_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_utility_techniques_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "e_utility_techniques" */ -export interface e_utility_techniques_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: e_utility_techniquesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "e_utility_techniques" */ -export interface e_utility_techniques_on_conflict {constraint: e_utility_techniques_constraint,update_columns?: e_utility_techniques_update_column[],where?: (e_utility_techniques_bool_exp | null)} - - -/** Ordering options when selecting data from "e_utility_techniques". */ -export interface e_utility_techniques_order_by {description?: (order_by | null),utility_lineups_aggregate?: (utility_lineups_aggregate_order_by | null),value?: (order_by | null)} - - -/** primary key columns input for table: e_utility_techniques */ -export interface e_utility_techniques_pk_columns_input {value: Scalars['String']} - - -/** input type for updating data in table "e_utility_techniques" */ -export interface e_utility_techniques_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - - -/** Streaming cursor of the table "e_utility_techniques" */ -export interface e_utility_techniques_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: e_utility_techniques_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface e_utility_techniques_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_utility_techniques_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_utility_techniques_set_input | null), -/** filter the rows which have to be updated */ -where: e_utility_techniques_bool_exp} - - -/** columns and relationships of "e_utility_throw_strengths" */ -export interface e_utility_throw_strengthsGenqlSelection{ - description?: boolean | number - /** An array relationship */ - utility_lineups?: (utility_lineupsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_lineups_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_lineups_order_by[] | null), - /** filter the rows returned */ - where?: (utility_lineups_bool_exp | null)} }) - /** An aggregate relationship */ - utility_lineups_aggregate?: (utility_lineups_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_lineups_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_lineups_order_by[] | null), - /** filter the rows returned */ - where?: (utility_lineups_bool_exp | null)} }) - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "e_utility_throw_strengths" */ -export interface e_utility_throw_strengths_aggregateGenqlSelection{ - aggregate?: e_utility_throw_strengths_aggregate_fieldsGenqlSelection - nodes?: e_utility_throw_strengthsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "e_utility_throw_strengths" */ -export interface e_utility_throw_strengths_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_utility_throw_strengths_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_utility_throw_strengths_max_fieldsGenqlSelection - min?: e_utility_throw_strengths_min_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "e_utility_throw_strengths". All fields are combined with a logical 'AND'. */ -export interface e_utility_throw_strengths_bool_exp {_and?: (e_utility_throw_strengths_bool_exp[] | null),_not?: (e_utility_throw_strengths_bool_exp | null),_or?: (e_utility_throw_strengths_bool_exp[] | null),description?: (String_comparison_exp | null),utility_lineups?: (utility_lineups_bool_exp | null),utility_lineups_aggregate?: (utility_lineups_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} - - -/** Boolean expression to compare columns of type "e_utility_throw_strengths_enum". All fields are combined with logical 'AND'. */ -export interface e_utility_throw_strengths_enum_comparison_exp {_eq?: (e_utility_throw_strengths_enum | null),_in?: (e_utility_throw_strengths_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_utility_throw_strengths_enum | null),_nin?: (e_utility_throw_strengths_enum[] | null)} - - -/** input type for inserting data into table "e_utility_throw_strengths" */ -export interface e_utility_throw_strengths_insert_input {description?: (Scalars['String'] | null),utility_lineups?: (utility_lineups_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface e_utility_throw_strengths_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_utility_throw_strengths_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "e_utility_throw_strengths" */ -export interface e_utility_throw_strengths_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: e_utility_throw_strengthsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "e_utility_throw_strengths" */ -export interface e_utility_throw_strengths_on_conflict {constraint: e_utility_throw_strengths_constraint,update_columns?: e_utility_throw_strengths_update_column[],where?: (e_utility_throw_strengths_bool_exp | null)} - - -/** Ordering options when selecting data from "e_utility_throw_strengths". */ -export interface e_utility_throw_strengths_order_by {description?: (order_by | null),utility_lineups_aggregate?: (utility_lineups_aggregate_order_by | null),value?: (order_by | null)} - - -/** primary key columns input for table: e_utility_throw_strengths */ -export interface e_utility_throw_strengths_pk_columns_input {value: Scalars['String']} - - -/** input type for updating data in table "e_utility_throw_strengths" */ -export interface e_utility_throw_strengths_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - - -/** Streaming cursor of the table "e_utility_throw_strengths" */ -export interface e_utility_throw_strengths_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: e_utility_throw_strengths_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface e_utility_throw_strengths_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_utility_throw_strengths_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_utility_throw_strengths_set_input | null), -/** filter the rows which have to be updated */ -where: e_utility_throw_strengths_bool_exp} - - -/** columns and relationships of "e_utility_types" */ -export interface e_utility_typesGenqlSelection{ - description?: boolean | number - /** An array relationship */ - player_utilities?: (player_utilityGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_utility_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (player_utility_order_by[] | null), - /** filter the rows returned */ - where?: (player_utility_bool_exp | null)} }) - /** An aggregate relationship */ - player_utilities_aggregate?: (player_utility_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_utility_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (player_utility_order_by[] | null), - /** filter the rows returned */ - where?: (player_utility_bool_exp | null)} }) - value?: boolean | number - __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 -} - - -/** 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_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_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_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_utility_types_max_fieldsGenqlSelection{ - description?: boolean | number - value?: 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 -} - - -/** 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 - __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)} - - -/** Ordering options when selecting data from "e_utility_types". */ -export interface e_utility_types_order_by {description?: (order_by | null),player_utilities_aggregate?: (player_utility_aggregate_order_by | null),value?: (order_by | null)} - - -/** primary key columns input for table: e_utility_types */ -export interface e_utility_types_pk_columns_input {value: Scalars['String']} - - -/** input type for updating data in table "e_utility_types" */ -export interface e_utility_types_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - - -/** 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)} - - -/** 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 "e_utility_visibility" */ -export interface e_utility_visibilityGenqlSelection{ - description?: boolean | number - /** An array relationship */ - utility_lineups?: (utility_lineupsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_lineups_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_lineups_order_by[] | null), - /** filter the rows returned */ - where?: (utility_lineups_bool_exp | null)} }) - /** An aggregate relationship */ - utility_lineups_aggregate?: (utility_lineups_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_lineups_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_lineups_order_by[] | null), - /** filter the rows returned */ - where?: (utility_lineups_bool_exp | null)} }) - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "e_utility_visibility" */ -export interface e_utility_visibility_aggregateGenqlSelection{ - aggregate?: e_utility_visibility_aggregate_fieldsGenqlSelection - nodes?: e_utility_visibilityGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "e_utility_visibility" */ -export interface e_utility_visibility_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_utility_visibility_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_utility_visibility_max_fieldsGenqlSelection - min?: e_utility_visibility_min_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "e_utility_visibility". All fields are combined with a logical 'AND'. */ -export interface e_utility_visibility_bool_exp {_and?: (e_utility_visibility_bool_exp[] | null),_not?: (e_utility_visibility_bool_exp | null),_or?: (e_utility_visibility_bool_exp[] | null),description?: (String_comparison_exp | null),utility_lineups?: (utility_lineups_bool_exp | null),utility_lineups_aggregate?: (utility_lineups_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} - - -/** Boolean expression to compare columns of type "e_utility_visibility_enum". All fields are combined with logical 'AND'. */ -export interface e_utility_visibility_enum_comparison_exp {_eq?: (e_utility_visibility_enum | null),_in?: (e_utility_visibility_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_utility_visibility_enum | null),_nin?: (e_utility_visibility_enum[] | null)} - - -/** input type for inserting data into table "e_utility_visibility" */ -export interface e_utility_visibility_insert_input {description?: (Scalars['String'] | null),utility_lineups?: (utility_lineups_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface e_utility_visibility_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_utility_visibility_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "e_utility_visibility" */ -export interface e_utility_visibility_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: e_utility_visibilityGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "e_utility_visibility" */ -export interface e_utility_visibility_on_conflict {constraint: e_utility_visibility_constraint,update_columns?: e_utility_visibility_update_column[],where?: (e_utility_visibility_bool_exp | null)} - - -/** Ordering options when selecting data from "e_utility_visibility". */ -export interface e_utility_visibility_order_by {description?: (order_by | null),utility_lineups_aggregate?: (utility_lineups_aggregate_order_by | null),value?: (order_by | null)} - - -/** primary key columns input for table: e_utility_visibility */ -export interface e_utility_visibility_pk_columns_input {value: Scalars['String']} - - -/** input type for updating data in table "e_utility_visibility" */ -export interface e_utility_visibility_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - - -/** Streaming cursor of the table "e_utility_visibility" */ -export interface e_utility_visibility_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: e_utility_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_utility_visibility_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_utility_visibility_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_utility_visibility_set_input | null), -/** filter the rows which have to be updated */ -where: e_utility_visibility_bool_exp} - - -/** columns and relationships of "e_veto_pick_types" */ -export interface e_veto_pick_typesGenqlSelection{ - description?: boolean | number - /** An array relationship */ - match_veto_picks?: (match_map_veto_picksGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_map_veto_picks_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (match_map_veto_picks_order_by[] | null), - /** filter the rows returned */ - where?: (match_map_veto_picks_bool_exp | null)} }) - /** An aggregate relationship */ - match_veto_picks_aggregate?: (match_map_veto_picks_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_map_veto_picks_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (match_map_veto_picks_order_by[] | null), - /** filter the rows returned */ - where?: (match_map_veto_picks_bool_exp | null)} }) - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "e_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_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_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_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_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_veto_pick_types_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface e_veto_pick_types_min_fieldsGenqlSelection{ - description?: boolean | number - value?: 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{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: e_veto_pick_typesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "e_veto_pick_types" */ -export interface e_veto_pick_types_on_conflict {constraint: e_veto_pick_types_constraint,update_columns?: e_veto_pick_types_update_column[],where?: (e_veto_pick_types_bool_exp | null)} - - -/** Ordering options when selecting data from "e_veto_pick_types". */ -export interface e_veto_pick_types_order_by {description?: (order_by | null),match_veto_picks_aggregate?: (match_map_veto_picks_aggregate_order_by | null),value?: (order_by | null)} - - -/** primary key columns input for table: e_veto_pick_types */ -export interface e_veto_pick_types_pk_columns_input {value: Scalars['String']} - - -/** 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_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)} - - -/** 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} - - -/** columns and relationships of "e_winning_reasons" */ -export interface e_winning_reasonsGenqlSelection{ - description?: boolean | number - value?: 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 -} - - -/** 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_winning_reasons". All fields are combined with a logical 'AND'. */ -export interface e_winning_reasons_bool_exp {_and?: (e_winning_reasons_bool_exp[] | null),_not?: (e_winning_reasons_bool_exp | null),_or?: (e_winning_reasons_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} - - -/** Boolean expression to compare columns of type "e_winning_reasons_enum". All fields are combined with logical 'AND'. */ -export interface e_winning_reasons_enum_comparison_exp {_eq?: (e_winning_reasons_enum | null),_in?: (e_winning_reasons_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_winning_reasons_enum | null),_nin?: (e_winning_reasons_enum[] | null)} - - -/** 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_winning_reasons_max_fieldsGenqlSelection{ - description?: boolean | number - value?: 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 -} - - -/** 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 - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "e_winning_reasons" */ -export interface e_winning_reasons_on_conflict {constraint: e_winning_reasons_constraint,update_columns?: e_winning_reasons_update_column[],where?: (e_winning_reasons_bool_exp | null)} - - -/** Ordering options when selecting data from "e_winning_reasons". */ -export interface e_winning_reasons_order_by {description?: (order_by | null),value?: (order_by | null)} - - -/** primary key columns input for table: e_winning_reasons */ -export interface e_winning_reasons_pk_columns_input {value: Scalars['String']} - - -/** input type for updating data in table "e_winning_reasons" */ -export interface e_winning_reasons_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - - -/** Streaming cursor of the table "e_winning_reasons" */ -export interface e_winning_reasons_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: e_winning_reasons_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface e_winning_reasons_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_winning_reasons_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_winning_reasons_set_input | null), -/** filter the rows which have to be updated */ -where: e_winning_reasons_bool_exp} - - -/** 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 "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 "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 "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 "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 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 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 "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?: event_match_linksGenqlSelection - __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)} - - -/** 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: 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 "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 "event_match_links" */ -export interface event_match_links_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: event_match_links_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | 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_match_links_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (event_match_links_set_input | null), -/** filter the rows which have to be updated */ -where: event_match_links_bool_exp} - - -/** columns and relationships of "event_media" */ -export interface event_mediaGenqlSelection{ - created_at?: boolean | number - /** An object relationship */ - event?: eventsGenqlSelection - event_id?: boolean | number - external_url?: boolean | number - filename?: boolean | number - id?: boolean | number - mime_type?: boolean | number - /** An array relationship */ - players?: (event_media_playersGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (event_media_players_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (event_media_players_order_by[] | null), - /** filter the rows returned */ - where?: (event_media_players_bool_exp | null)} }) - /** An aggregate relationship */ - players_aggregate?: (event_media_players_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (event_media_players_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (event_media_players_order_by[] | null), - /** filter the rows returned */ - where?: (event_media_players_bool_exp | null)} }) - size?: boolean | number - thumbnail_filename?: boolean | number - title?: boolean | number - /** An object relationship */ - uploader?: playersGenqlSelection - uploader_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "event_media" */ -export interface event_media_aggregateGenqlSelection{ - aggregate?: event_media_aggregate_fieldsGenqlSelection - nodes?: event_mediaGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface event_media_aggregate_bool_exp {count?: (event_media_aggregate_bool_exp_count | null)} - -export interface event_media_aggregate_bool_exp_count {arguments?: (event_media_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (event_media_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "event_media" */ -export interface event_media_aggregate_fieldsGenqlSelection{ - avg?: event_media_avg_fieldsGenqlSelection - count?: { __args: {columns?: (event_media_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: event_media_max_fieldsGenqlSelection - min?: event_media_min_fieldsGenqlSelection - stddev?: event_media_stddev_fieldsGenqlSelection - stddev_pop?: event_media_stddev_pop_fieldsGenqlSelection - stddev_samp?: event_media_stddev_samp_fieldsGenqlSelection - sum?: event_media_sum_fieldsGenqlSelection - var_pop?: event_media_var_pop_fieldsGenqlSelection - var_samp?: event_media_var_samp_fieldsGenqlSelection - variance?: event_media_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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)} - - -/** input type for incrementing numeric columns in table "event_media" */ -export interface event_media_inc_input {size?: (Scalars['bigint'] | null),uploader_steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "event_media" */ -export interface event_media_insert_input {created_at?: (Scalars['timestamptz'] | null),event?: (events_obj_rel_insert_input | null),event_id?: (Scalars['uuid'] | null),external_url?: (Scalars['String'] | null),filename?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),mime_type?: (Scalars['String'] | null),players?: (event_media_players_arr_rel_insert_input | null),size?: (Scalars['bigint'] | null),thumbnail_filename?: (Scalars['String'] | null),title?: (Scalars['String'] | null),uploader?: (players_obj_rel_insert_input | null),uploader_steam_id?: (Scalars['bigint'] | null)} - - -/** aggregate max on columns */ -export interface 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 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 -} - - -/** 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?: event_mediaGenqlSelection - __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_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_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_media */ -export interface event_media_pk_columns_input {id: Scalars['uuid']} - - -/** 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 -} - - -/** 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)} - -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 -} - - -/** 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 -} - - -/** 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)} - - -/** 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 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 event_media_players_min_fieldsGenqlSelection{ - created_at?: boolean | number - media_id?: boolean | number - steam_id?: 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{ - /** 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 - __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 -} - - -/** order by var_samp() on columns of table "event_media_players" */ -export interface event_media_players_var_samp_order_by {steam_id?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface event_media_players_variance_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "event_media_players" */ -export interface event_media_players_variance_order_by {steam_id?: (order_by | null)} - - -/** input type for updating data in table "event_media" */ -export interface event_media_set_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),external_url?: (Scalars['String'] | null),filename?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),mime_type?: (Scalars['String'] | null),size?: (Scalars['bigint'] | null),thumbnail_filename?: (Scalars['String'] | null),title?: (Scalars['String'] | null),uploader_steam_id?: (Scalars['bigint'] | null)} - - -/** aggregate stddev on columns */ -export interface event_media_stddev_fieldsGenqlSelection{ - size?: boolean | number - uploader_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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 -} - - -/** 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 -} - - -/** 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 { -/** Stream column input with initial value */ -initial_value: event_media_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface 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 sum on columns */ -export interface event_media_sum_fieldsGenqlSelection{ - size?: boolean | number - uploader_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 { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (event_media_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (event_media_set_input | null), -/** filter the rows which have to be updated */ -where: event_media_bool_exp} - - -/** aggregate var_pop on columns */ -export interface event_media_var_pop_fieldsGenqlSelection{ - size?: boolean | number - uploader_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "event_media" */ -export interface event_media_var_pop_order_by {size?: (order_by | null),uploader_steam_id?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface event_media_var_samp_fieldsGenqlSelection{ - size?: boolean | number - uploader_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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 - __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)} - - -/** 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 -} - - -/** 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)} - -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 -} - - -/** 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 -} - - -/** 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)} - - -/** 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 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 event_organizers_min_fieldsGenqlSelection{ - created_at?: boolean | number - event_id?: boolean | number - 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{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: event_organizersGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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 "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: event_organizers */ -export interface event_organizers_pk_columns_input {event_id: Scalars['uuid'],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)} - - -/** aggregate stddev on columns */ -export interface event_organizers_stddev_fieldsGenqlSelection{ - 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 - __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 - __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 { -/** Stream column input with initial value */ -initial_value: event_organizers_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface event_organizers_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),steam_id?: (Scalars['bigint'] | null)} - - -/** aggregate sum on columns */ -export interface event_organizers_sum_fieldsGenqlSelection{ - 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 { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (event_organizers_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (event_organizers_set_input | null), -/** filter the rows which have to be updated */ -where: event_organizers_bool_exp} - - -/** aggregate var_pop on columns */ -export interface event_organizers_var_pop_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "event_organizers" */ -export interface event_organizers_var_pop_order_by {steam_id?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface event_organizers_var_samp_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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 - __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 - /** An object relationship */ - event?: eventsGenqlSelection - event_id?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - steam_id?: 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 - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface event_players_aggregate_bool_exp {count?: (event_players_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} - - -/** 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 -} - - -/** 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 -} - - -/** order by avg() on columns of table "event_players" */ -export interface event_players_avg_order_by {steam_id?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "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 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 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 event_players_min_fieldsGenqlSelection{ - created_at?: boolean | number - event_id?: boolean | number - steam_id?: 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)} - - -/** response of any mutation on the table "event_players" */ -export interface event_players_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: event_playersGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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 "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: event_players */ -export interface event_players_pk_columns_input {event_id: Scalars['uuid'],steam_id: Scalars['bigint']} - - -/** input type for updating data in table "event_players" */ -export interface event_players_set_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),steam_id?: (Scalars['bigint'] | null)} - - -/** aggregate stddev on columns */ -export interface event_players_stddev_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "event_players" */ -export interface event_players_stddev_order_by {steam_id?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface event_players_stddev_pop_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "event_players" */ -export interface event_players_stddev_pop_order_by {steam_id?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface event_players_stddev_samp_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "event_players" */ -export interface event_players_stddev_samp_order_by {steam_id?: (order_by | 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)} - - -/** 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 sum on columns */ -export interface event_players_sum_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "event_players" */ -export interface event_players_sum_order_by {steam_id?: (order_by | null)} - -export interface event_players_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (event_players_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (event_players_set_input | null), -/** filter the rows which have to be updated */ -where: event_players_bool_exp} - - -/** aggregate var_pop on columns */ -export interface event_players_var_pop_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "event_players" */ -export interface event_players_var_pop_order_by {steam_id?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface event_players_var_samp_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "event_players" */ -export interface event_players_var_samp_order_by {steam_id?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface event_players_variance_fieldsGenqlSelection{ - steam_id?: 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)} - - -/** columns and relationships of "event_teams" */ -export interface event_teamsGenqlSelection{ - created_at?: boolean | number - /** An object relationship */ - event?: eventsGenqlSelection - event_id?: boolean | number - /** An object relationship */ - team?: teamsGenqlSelection - team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "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)} - -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 -} - - -/** 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 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_teams_max_fieldsGenqlSelection{ - created_at?: boolean | number - event_id?: boolean | number - team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "event_teams" */ -export interface event_teams_max_order_by {created_at?: (order_by | null),event_id?: (order_by | null),team_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface event_teams_min_fieldsGenqlSelection{ - created_at?: boolean | number - event_id?: boolean | number - team_id?: 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)} - - -/** 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_teamsGenqlSelection - __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)} - - -/** 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_teams */ -export interface event_teams_pk_columns_input {event_id: Scalars['uuid'],team_id: Scalars['uuid']} - - -/** 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_teams" */ -export interface event_teams_stream_cursor_input { -/** Stream column input with initial value */ -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_teams_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),team_id?: (Scalars['uuid'] | null)} - -export interface event_teams_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (event_teams_set_input | null), -/** filter the rows which have to be updated */ -where: event_teams_bool_exp} - - -/** columns and relationships of "event_tournaments" */ -export interface event_tournamentsGenqlSelection{ - created_at?: boolean | number - /** An object relationship */ - event?: eventsGenqlSelection - event_id?: boolean | number - /** An object relationship */ - tournament?: tournamentsGenqlSelection - tournament_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "event_tournaments" */ -export interface event_tournaments_aggregateGenqlSelection{ - aggregate?: event_tournaments_aggregate_fieldsGenqlSelection - nodes?: event_tournamentsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface event_tournaments_aggregate_bool_exp {count?: (event_tournaments_aggregate_bool_exp_count | null)} - -export interface event_tournaments_aggregate_bool_exp_count {arguments?: (event_tournaments_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (event_tournaments_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "event_tournaments" */ -export interface event_tournaments_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (event_tournaments_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: event_tournaments_max_fieldsGenqlSelection - min?: event_tournaments_min_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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_tournaments" */ -export interface event_tournaments_arr_rel_insert_input {data: event_tournaments_insert_input[], -/** upsert condition */ -on_conflict?: (event_tournaments_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)} - - -/** 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_tournaments_max_fieldsGenqlSelection{ - created_at?: boolean | number - event_id?: boolean | number - tournament_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "event_tournaments" */ -export interface event_tournaments_max_order_by {created_at?: (order_by | null),event_id?: (order_by | null),tournament_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface event_tournaments_min_fieldsGenqlSelection{ - created_at?: boolean | number - event_id?: boolean | number - tournament_id?: 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)} - - -/** 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_tournamentsGenqlSelection - __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)} - - -/** Ordering options when selecting data from "event_tournaments". */ -export interface event_tournaments_order_by {created_at?: (order_by | null),event?: (events_order_by | null),event_id?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null)} - - -/** primary key columns input for table: event_tournaments */ -export interface event_tournaments_pk_columns_input {event_id: Scalars['uuid'],tournament_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)} - - -/** 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 */ - 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 */ - 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 "events" */ -export interface events_aggregateGenqlSelection{ - aggregate?: events_aggregate_fieldsGenqlSelection - nodes?: eventsGenqlSelection - __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 - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface events_avg_fieldsGenqlSelection{ - organizer_steam_id?: 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)} - - -/** input type for incrementing numeric columns in table "events" */ -export interface events_inc_input {organizer_steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "events" */ -export interface events_insert_input {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 events_max_fieldsGenqlSelection{ - banner_media_id?: boolean | number - created_at?: 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 -} - - -/** aggregate min on columns */ -export interface events_min_fieldsGenqlSelection{ - banner_media_id?: boolean | number - created_at?: 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 -} - - -/** 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?: eventsGenqlSelection - __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)} - - -/** 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)} - - -/** 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)} - - -/** primary key columns input for table: events */ -export interface events_pk_columns_input {id: Scalars['uuid']} - - -/** 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 events_stddev_fieldsGenqlSelection{ - organizer_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface events_stddev_pop_fieldsGenqlSelection{ - organizer_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface events_stddev_samp_fieldsGenqlSelection{ - organizer_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "events" */ -export interface events_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: events_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface events_stream_cursor_value_input {banner_media_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),ends_at?: (Scalars['timestamptz'] | null),hide_creator_organizer?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),media_access?: (e_event_media_access_enum | null),name?: (Scalars['String'] | null),organizer_steam_id?: (Scalars['bigint'] | null),starts_at?: (Scalars['timestamptz'] | null),visibility?: (e_event_visibility_enum | null)} - - -/** aggregate sum on columns */ -export interface events_sum_fieldsGenqlSelection{ - organizer_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface events_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (events_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (events_set_input | null), -/** filter the rows which have to be updated */ -where: events_bool_exp} - - -/** aggregate var_pop on columns */ -export interface events_var_pop_fieldsGenqlSelection{ - organizer_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface events_var_samp_fieldsGenqlSelection{ - organizer_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface events_variance_fieldsGenqlSelection{ - organizer_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to compare columns of type "float8". All fields are combined with logical 'AND'. */ -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{ - /** An object relationship */ - 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 "friends" */ -export interface friends_aggregateGenqlSelection{ - aggregate?: friends_aggregate_fieldsGenqlSelection - nodes?: friendsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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 -} - - -/** aggregate avg on columns */ -export interface friends_avg_fieldsGenqlSelection{ - other_player_steam_id?: boolean | number - player_steam_id?: boolean | number - __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)} - - -/** 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 "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 friends_max_fieldsGenqlSelection{ - other_player_steam_id?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface friends_min_fieldsGenqlSelection{ - other_player_steam_id?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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?: friendsGenqlSelection - __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)} - - -/** 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 -} - - -/** 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 -} - - -/** 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 -} - - -/** Streaming cursor of the table "friends" */ -export interface friends_stream_cursor_input { -/** Stream column input with initial value */ -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 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 friends_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (friends_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (friends_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 -} - - -/** 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 */ - game_mode?: game_modesGenqlSelection - game_mode_id?: boolean | number - load_order?: boolean | number - /** An object relationship */ - plugin?: game_pluginsGenqlSelection - plugin_slug?: boolean | number - required?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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 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 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} - -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 "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)} - - -/** 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?: (game_mode_plugins_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface game_mode_plugins_avg_fieldsGenqlSelection{ - load_order?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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 "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)} - - -/** 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)} - - -/** 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 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 "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 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 "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 "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?: game_mode_pluginsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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 "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: game_mode_plugins */ -export interface game_mode_plugins_pk_columns_input {game_mode_id: Scalars['uuid'],plugin_slug: Scalars['String']} - - -/** 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 game_mode_plugins_stddev_fieldsGenqlSelection{ - load_order?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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 game_mode_plugins_stddev_pop_fieldsGenqlSelection{ - load_order?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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 game_mode_plugins_stddev_samp_fieldsGenqlSelection{ - load_order?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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 "game_mode_plugins" */ -export interface 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 | null)} - - -/** Initial value of the column from where the streaming should start */ -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 game_mode_plugins_sum_fieldsGenqlSelection{ - load_order?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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 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?: (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} - - -/** aggregate var_pop on columns */ -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 "game_mode_plugins" */ -export interface game_mode_plugins_var_pop_order_by {load_order?: (order_by | null)} - - -/** aggregate var_samp on columns */ -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 "game_mode_plugins" */ -export interface game_mode_plugins_var_samp_order_by {load_order?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface game_mode_plugins_variance_fieldsGenqlSelection{ - load_order?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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 "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 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 "game_modes" */ -export interface game_modes_aggregateGenqlSelection{ - aggregate?: game_modes_aggregate_fieldsGenqlSelection - nodes?: game_modesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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 -} - - -/** Boolean expression to filter rows from the table "game_modes". All fields are combined with a logical 'AND'. */ -export interface game_modes_bool_exp {_and?: (game_modes_bool_exp[] | null),_not?: (game_modes_bool_exp | null),_or?: (game_modes_bool_exp[] | null),archived_at?: (timestamptz_comparison_exp | null),cfg?: (String_comparison_exp | null),competitive_safe?: (Boolean_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),description?: (String_comparison_exp | null),enabled?: (Boolean_comparison_exp | null),extra_game_params?: (String_comparison_exp | null),icon?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),match_options?: (match_options_bool_exp | null),match_options_aggregate?: (match_options_aggregate_bool_exp | null),name?: (String_comparison_exp | null),plugins?: (game_mode_plugins_bool_exp | null),plugins_aggregate?: (game_mode_plugins_aggregate_bool_exp | null),runtime_conflicts?: (jsonb_comparison_exp | null),slug?: (String_comparison_exp | null),supported_runtimes?: (jsonb_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null)} - - -/** input type for inserting data into table "game_modes" */ -export interface game_modes_insert_input {archived_at?: (Scalars['timestamptz'] | null),cfg?: (Scalars['String'] | null),competitive_safe?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),enabled?: (Scalars['Boolean'] | null),extra_game_params?: (Scalars['String'] | null),icon?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),match_options?: (match_options_arr_rel_insert_input | null),name?: (Scalars['String'] | null),plugins?: (game_mode_plugins_arr_rel_insert_input | null),slug?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null)} - - -/** aggregate max on columns */ -export interface game_modes_max_fieldsGenqlSelection{ - archived_at?: boolean | number - cfg?: boolean | number - created_at?: boolean | number - description?: boolean | number - extra_game_params?: boolean | number - icon?: boolean | number - id?: boolean | number - name?: boolean | number - slug?: boolean | number - updated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface game_modes_min_fieldsGenqlSelection{ - archived_at?: boolean | number - cfg?: boolean | number - created_at?: boolean | number - description?: boolean | number - extra_game_params?: boolean | number - icon?: boolean | number - id?: boolean | number - name?: boolean | number - slug?: boolean | number - updated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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?: (game_modes_on_conflict | 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)} - - -/** Ordering options when selecting data from "game_modes". */ -export interface game_modes_order_by {archived_at?: (order_by | null),cfg?: (order_by | null),competitive_safe?: (order_by | null),created_at?: (order_by | null),description?: (order_by | null),enabled?: (order_by | null),extra_game_params?: (order_by | null),icon?: (order_by | null),id?: (order_by | null),match_options_aggregate?: (match_options_aggregate_order_by | null),name?: (order_by | null),plugins_aggregate?: (game_mode_plugins_aggregate_order_by | null),runtime_conflicts?: (order_by | null),slug?: (order_by | null),supported_runtimes?: (order_by | null),updated_at?: (order_by | null)} - - -/** primary key columns input for table: game_modes */ -export interface game_modes_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "game_modes" */ -export interface game_modes_set_input {archived_at?: (Scalars['timestamptz'] | null),cfg?: (Scalars['String'] | null),competitive_safe?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),enabled?: (Scalars['Boolean'] | null),extra_game_params?: (Scalars['String'] | null),icon?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),slug?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null)} - - -/** Streaming cursor of the table "game_modes" */ -export interface game_modes_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: game_modes_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface game_modes_stream_cursor_value_input {archived_at?: (Scalars['timestamptz'] | null),cfg?: (Scalars['String'] | null),competitive_safe?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),enabled?: (Scalars['Boolean'] | null),extra_game_params?: (Scalars['String'] | null),icon?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),slug?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null)} - -export interface game_modes_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (game_modes_set_input | null), -/** filter the rows which have to be updated */ -where: game_modes_bool_exp} - - -/** columns and relationships of "game_plugin_installs" */ -export interface game_plugin_installsGenqlSelection{ - cfg?: boolean | number - channel?: boolean | number - created_at?: boolean | number - disable_server_guidelines?: boolean | number - enabled?: boolean | number - load_custom?: boolean | number - load_ranked?: boolean | number - load_tournaments?: 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 -} - - -/** 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 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),cfg?: (String_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),load_custom?: (Boolean_comparison_exp | null),load_ranked?: (Boolean_comparison_exp | null),load_tournaments?: (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 {cfg?: (Scalars['String'] | null),channel?: (e_game_plugin_channels_enum | null),created_at?: (Scalars['timestamptz'] | null),disable_server_guidelines?: (Scalars['Boolean'] | null),enabled?: (Scalars['Boolean'] | null),load_custom?: (Scalars['Boolean'] | null),load_ranked?: (Scalars['Boolean'] | null),load_tournaments?: (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{ - cfg?: boolean | number - created_at?: boolean | number - plugin_slug?: boolean | number - updated_at?: boolean | number - version?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface game_plugin_installs_min_fieldsGenqlSelection{ - cfg?: boolean | number - 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 "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?: game_plugin_installsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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 "game_plugin_installs". */ -export interface game_plugin_installs_order_by {cfg?: (order_by | null),channel?: (order_by | null),created_at?: (order_by | null),disable_server_guidelines?: (order_by | null),enabled?: (order_by | null),load_custom?: (order_by | null),load_ranked?: (order_by | null),load_tournaments?: (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 */ -export interface game_plugin_installs_pk_columns_input {plugin_slug: Scalars['String']} - - -/** input type for updating data in table "game_plugin_installs" */ -export interface game_plugin_installs_set_input {cfg?: (Scalars['String'] | null),channel?: (e_game_plugin_channels_enum | null),created_at?: (Scalars['timestamptz'] | null),disable_server_guidelines?: (Scalars['Boolean'] | null),enabled?: (Scalars['Boolean'] | null),load_custom?: (Scalars['Boolean'] | null),load_ranked?: (Scalars['Boolean'] | null),load_tournaments?: (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" */ -export interface 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 | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface game_plugin_installs_stream_cursor_value_input {cfg?: (Scalars['String'] | null),channel?: (e_game_plugin_channels_enum | null),created_at?: (Scalars['timestamptz'] | null),disable_server_guidelines?: (Scalars['Boolean'] | null),enabled?: (Scalars['Boolean'] | null),load_custom?: (Scalars['Boolean'] | null),load_ranked?: (Scalars['Boolean'] | null),load_tournaments?: (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 */ -_set?: (game_plugin_installs_set_input | null), -/** filter the rows which have to be updated */ -where: game_plugin_installs_bool_exp} - - -/** columns and relationships of "game_plugin_versions" */ -export interface game_plugin_versionsGenqlSelection{ - install_path?: boolean | number - layout?: boolean | number - /** An object relationship */ - 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 "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 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 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} - -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 "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 "game_plugin_versions" */ -export interface game_plugin_versions_arr_rel_insert_input {data: game_plugin_versions_insert_input[], -/** upsert condition */ -on_conflict?: (game_plugin_versions_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface game_plugin_versions_avg_fieldsGenqlSelection{ - size?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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 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 "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 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 "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 "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?: 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 -} - - -/** 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} - - -/** aggregate var_pop on columns */ -export interface game_plugin_versions_var_pop_fieldsGenqlSelection{ - size?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "game_plugin_versions" */ -export interface game_plugin_versions_var_pop_order_by {size?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface game_plugin_versions_var_samp_fieldsGenqlSelection{ - size?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "game_plugin_versions" */ -export interface game_plugin_versions_var_samp_order_by {size?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface game_plugin_versions_variance_fieldsGenqlSelection{ - size?: boolean | number - __typename?: boolean | number - __scalar?: 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 - /** An array relationship */ - game_modes?: (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 */ - game_modes_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)} }) - 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 array relationship */ - node_installs?: (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 */ - node_installs_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)} }) - pairs_with?: boolean | number - panel?: { __args: { - /** JSON select path */ - path?: (Scalars['String'] | null)} } | boolean | number - requires_server_guidelines_disabled?: boolean | number - requires_service?: boolean | number - slug?: boolean | number - source?: boolean | number - synced_at?: boolean | number - tags?: boolean | number - /** A computed field, executes function "game_plugin_target_node_count" */ - target_node_count?: boolean | number - verified?: boolean | number - /** An array relationship */ - 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)} }) - /** An aggregate relationship */ - 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)} }) - wiring?: { __args: { - /** JSON select path */ - path?: (Scalars['String'] | null)} } | boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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 "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 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 "game_plugins". All fields are combined with a logical 'AND'. */ -export interface game_plugins_bool_exp {_and?: (game_plugins_bool_exp[] | null),_not?: (game_plugins_bool_exp | null),_or?: (game_plugins_bool_exp[] | null),author?: (String_comparison_exp | null),config_path?: (String_comparison_exp | null),config_schema?: (jsonb_comparison_exp | null),cvars?: (String_array_comparison_exp | null),description?: (String_comparison_exp | null),game_modes?: (game_mode_plugins_bool_exp | null),game_modes_aggregate?: (game_mode_plugins_aggregate_bool_exp | null),homepage?: (String_comparison_exp | null),hot_swappable?: (Boolean_comparison_exp | null),install_state?: (String_comparison_exp | null),installed_node_count?: (Int_comparison_exp | null),kind?: (e_game_plugin_kinds_enum_comparison_exp | null),name?: (String_comparison_exp | null),node_installs?: (game_server_node_plugins_bool_exp | null),node_installs_aggregate?: (game_server_node_plugins_aggregate_bool_exp | null),pairs_with?: (String_array_comparison_exp | null),panel?: (jsonb_comparison_exp | null),requires_server_guidelines_disabled?: (Boolean_comparison_exp | null),requires_service?: (String_comparison_exp | null),slug?: (String_comparison_exp | null),source?: (String_comparison_exp | null),synced_at?: (timestamptz_comparison_exp | null),tags?: (String_array_comparison_exp | null),target_node_count?: (Int_comparison_exp | null),verified?: (Boolean_comparison_exp | null),versions?: (game_plugin_versions_bool_exp | null),versions_aggregate?: (game_plugin_versions_aggregate_bool_exp | null),wiring?: (jsonb_comparison_exp | null)} - - -/** 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)} - - -/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */ -export interface game_plugins_delete_elem_input {config_schema?: (Scalars['Int'] | null),panel?: (Scalars['Int'] | null),wiring?: (Scalars['Int'] | null)} - - -/** delete key/value pair or string element. key/value pairs are matched based on their key value */ -export interface game_plugins_delete_key_input {config_schema?: (Scalars['String'] | null),panel?: (Scalars['String'] | null),wiring?: (Scalars['String'] | null)} - - -/** input type for inserting data into table "game_plugins" */ -export interface game_plugins_insert_input {author?: (Scalars['String'] | null),config_path?: (Scalars['String'] | null),config_schema?: (Scalars['jsonb'] | null),cvars?: (Scalars['String'][] | null),description?: (Scalars['String'] | null),game_modes?: (game_mode_plugins_arr_rel_insert_input | null),homepage?: (Scalars['String'] | null),hot_swappable?: (Scalars['Boolean'] | null),kind?: (e_game_plugin_kinds_enum | null),name?: (Scalars['String'] | null),node_installs?: (game_server_node_plugins_arr_rel_insert_input | null),pairs_with?: (Scalars['String'][] | null),panel?: (Scalars['jsonb'] | null),requires_server_guidelines_disabled?: (Scalars['Boolean'] | null),requires_service?: (Scalars['String'] | null),slug?: (Scalars['String'] | null),source?: (Scalars['String'] | null),synced_at?: (Scalars['timestamptz'] | null),tags?: (Scalars['String'][] | null),verified?: (Scalars['Boolean'] | null),versions?: (game_plugin_versions_arr_rel_insert_input | null),wiring?: (Scalars['jsonb'] | null)} - - -/** aggregate max on columns */ -export interface game_plugins_max_fieldsGenqlSelection{ - author?: boolean | number - config_path?: boolean | number - cvars?: boolean | number - description?: 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 - pairs_with?: boolean | number - requires_service?: boolean | number - slug?: boolean | number - source?: boolean | number - synced_at?: boolean | number - tags?: boolean | number - /** A computed field, executes function "game_plugin_target_node_count" */ - target_node_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface game_plugins_min_fieldsGenqlSelection{ - author?: boolean | number - config_path?: boolean | number - cvars?: boolean | number - description?: 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 - pairs_with?: boolean | number - requires_service?: boolean | number - slug?: boolean | number - source?: boolean | number - synced_at?: boolean | number - tags?: boolean | number - /** A computed field, executes function "game_plugin_target_node_count" */ - target_node_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "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?: game_pluginsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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?: (game_plugins_on_conflict | 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 "game_plugins". */ -export interface game_plugins_order_by {author?: (order_by | null),config_path?: (order_by | null),config_schema?: (order_by | null),cvars?: (order_by | null),description?: (order_by | null),game_modes_aggregate?: (game_mode_plugins_aggregate_order_by | null),homepage?: (order_by | null),hot_swappable?: (order_by | null),install_state?: (order_by | null),installed_node_count?: (order_by | null),kind?: (order_by | null),name?: (order_by | null),node_installs_aggregate?: (game_server_node_plugins_aggregate_order_by | null),pairs_with?: (order_by | null),panel?: (order_by | null),requires_server_guidelines_disabled?: (order_by | null),requires_service?: (order_by | null),slug?: (order_by | null),source?: (order_by | null),synced_at?: (order_by | null),tags?: (order_by | null),target_node_count?: (order_by | null),verified?: (order_by | null),versions_aggregate?: (game_plugin_versions_aggregate_order_by | null),wiring?: (order_by | null)} - - -/** primary key columns input for table: game_plugins */ -export interface game_plugins_pk_columns_input {slug: Scalars['String']} - - -/** prepend existing jsonb value of filtered columns with new jsonb value */ -export interface game_plugins_prepend_input {config_schema?: (Scalars['jsonb'] | null),panel?: (Scalars['jsonb'] | null),wiring?: (Scalars['jsonb'] | null)} - - -/** input type for updating data in table "game_plugins" */ -export interface game_plugins_set_input {author?: (Scalars['String'] | null),config_path?: (Scalars['String'] | null),config_schema?: (Scalars['jsonb'] | null),cvars?: (Scalars['String'][] | null),description?: (Scalars['String'] | null),homepage?: (Scalars['String'] | null),hot_swappable?: (Scalars['Boolean'] | null),kind?: (e_game_plugin_kinds_enum | null),name?: (Scalars['String'] | null),pairs_with?: (Scalars['String'][] | null),panel?: (Scalars['jsonb'] | null),requires_server_guidelines_disabled?: (Scalars['Boolean'] | null),requires_service?: (Scalars['String'] | null),slug?: (Scalars['String'] | null),source?: (Scalars['String'] | null),synced_at?: (Scalars['timestamptz'] | null),tags?: (Scalars['String'][] | null),verified?: (Scalars['Boolean'] | null),wiring?: (Scalars['jsonb'] | null)} - - -/** aggregate stddev on columns */ -export interface 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 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 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 "game_plugins" */ -export interface game_plugins_stream_cursor_input { -/** Stream column input with initial value */ -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 game_plugins_stream_cursor_value_input {author?: (Scalars['String'] | null),config_path?: (Scalars['String'] | null),config_schema?: (Scalars['jsonb'] | null),cvars?: (Scalars['String'][] | null),description?: (Scalars['String'] | null),homepage?: (Scalars['String'] | null),hot_swappable?: (Scalars['Boolean'] | null),kind?: (e_game_plugin_kinds_enum | null),name?: (Scalars['String'] | null),pairs_with?: (Scalars['String'][] | null),panel?: (Scalars['jsonb'] | null),requires_server_guidelines_disabled?: (Scalars['Boolean'] | null),requires_service?: (Scalars['String'] | null),slug?: (Scalars['String'] | null),source?: (Scalars['String'] | null),synced_at?: (Scalars['timestamptz'] | null),tags?: (Scalars['String'][] | null),verified?: (Scalars['Boolean'] | null),wiring?: (Scalars['jsonb'] | null)} - - -/** aggregate sum on columns */ -export interface 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 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?: (game_plugins_set_input | null), -/** filter the rows which have to be updated */ -where: game_plugins_bool_exp} - - -/** aggregate var_pop on columns */ -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 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 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 -} - - -/** 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 */ - game_server_node?: game_server_nodesGenqlSelection - game_server_node_id?: boolean | number - id?: boolean | number - installed_at?: boolean | number - last_error?: boolean | number - path?: boolean | number - /** An object relationship */ - plugin?: game_pluginsGenqlSelection - plugin_slug?: boolean | number - previous_version?: 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 "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)} - -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} - -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 -} - - -/** 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 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)} - - -/** 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),path?: (String_comparison_exp | null),plugin?: (game_plugins_bool_exp | null),plugin_slug?: (String_comparison_exp | null),previous_version?: (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),path?: (Scalars['String'] | null),plugin?: (game_plugins_obj_rel_insert_input | null),plugin_slug?: (Scalars['String'] | null),previous_version?: (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 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 - path?: boolean | number - plugin_slug?: boolean | number - previous_version?: 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),path?: (order_by | null),plugin_slug?: (order_by | null),previous_version?: (order_by | null),source?: (order_by | null),updated_at?: (order_by | null),version?: (order_by | null)} - - -/** aggregate min on columns */ -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 - path?: boolean | number - plugin_slug?: boolean | number - previous_version?: boolean | number - source?: boolean | number - updated_at?: boolean | number - version?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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),path?: (order_by | null),plugin_slug?: (order_by | null),previous_version?: (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?: game_server_node_pluginsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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)} - - -/** 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),path?: (order_by | null),plugin?: (game_plugins_order_by | null),plugin_slug?: (order_by | null),previous_version?: (order_by | null),runtime?: (order_by | null),source?: (order_by | null),status?: (order_by | null),updated_at?: (order_by | null),version?: (order_by | null)} - - -/** primary key columns input for table: game_server_node_plugins */ -export interface game_server_node_plugins_pk_columns_input {id: Scalars['uuid']} - - -/** 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),path?: (Scalars['String'] | null),plugin_slug?: (Scalars['String'] | null),previous_version?: (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 "game_server_node_plugins" */ -export interface 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 | null)} - - -/** Initial value of the column from where the streaming should start */ -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),path?: (Scalars['String'] | null),plugin_slug?: (Scalars['String'] | null),previous_version?: (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 game_server_node_plugins_updates { -/** 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} - - -/** columns and relationships of "game_server_nodes" */ -export interface game_server_nodesGenqlSelection{ - /** A computed field, executes function "available_node_server_count" */ - available_server_count?: boolean | number - build_id?: boolean | number - cpu_cores_per_socket?: boolean | number - cpu_frequency_info?: { __args: { - /** JSON select path */ - path?: (Scalars['String'] | null)} } | boolean | number - cpu_governor_info?: { __args: { - /** JSON select path */ - path?: (Scalars['String'] | null)} } | boolean | number - cpu_sockets?: boolean | number - cpu_threads_per_core?: boolean | number - cpu_warnings?: { __args: { - /** JSON select path */ - path?: (Scalars['String'] | null)} } | boolean | number - cs2_launch_options?: { __args: { - /** JSON select path */ - path?: (Scalars['String'] | null)} } | boolean | number - cs2_video_settings?: { __args: { - /** JSON select path */ - path?: (Scalars['String'] | null)} } | boolean | number - csgo_build_id?: boolean | number - demo_network_limiter?: boolean | number - disk_available_gb?: boolean | number - disk_used_percent?: boolean | number - /** An object relationship */ - e_region?: server_regionsGenqlSelection - /** An object relationship */ - e_status?: e_game_server_node_statusesGenqlSelection - enabled?: boolean | number - enabled_for_match_making?: boolean | number - end_port_range?: boolean | number - gpu?: boolean | number - gpu_demos_enabled?: boolean | number - gpu_info?: { __args: { - /** JSON select path */ - path?: (Scalars['String'] | null)} } | boolean | number - gpu_rendering_enabled?: boolean | number - gpu_streaming_enabled?: boolean | number - id?: boolean | number - label?: boolean | number - lan_ip?: boolean | number - node_ip?: boolean | number - offline_at?: boolean | number - pin_build_id?: boolean | number - pin_plugin_runtime?: boolean | number - pin_plugin_version?: boolean | number - /** An object relationship */ - 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 */ - servers?: (serversGenqlSelection & { __args?: { - /** distinct select on columns */ - 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?: (servers_order_by[] | null), - /** filter the rows returned */ - where?: (servers_bool_exp | null)} }) - /** An aggregate relationship */ - servers_aggregate?: (servers_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - 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?: (servers_order_by[] | null), - /** filter the rows returned */ - where?: (servers_bool_exp | null)} }) - shader_bake_progress?: boolean | number - shader_bake_progress_stage?: boolean | number - shader_bake_status?: boolean | number - shader_bake_status_history?: { __args: { - /** JSON select path */ - path?: (Scalars['String'] | null)} } | boolean | number - start_port_range?: boolean | number - status?: boolean | number - supports_cpu_pinning?: boolean | number - supports_low_latency?: boolean | number - token?: boolean | number - /** A computed field, executes function "total_node_server_count" */ - total_server_count?: boolean | number - update_status?: boolean | number - /** An object relationship */ - version?: game_versionsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "game_server_nodes" */ -export interface game_server_nodes_aggregateGenqlSelection{ - aggregate?: game_server_nodes_aggregate_fieldsGenqlSelection - nodes?: game_server_nodesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface game_server_nodes_aggregate_bool_exp {bool_and?: (game_server_nodes_aggregate_bool_exp_bool_and | null),bool_or?: (game_server_nodes_aggregate_bool_exp_bool_or | null),count?: (game_server_nodes_aggregate_bool_exp_count | null)} - -export interface game_server_nodes_aggregate_bool_exp_bool_and {arguments: game_server_nodes_select_column_game_server_nodes_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (game_server_nodes_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface game_server_nodes_aggregate_bool_exp_bool_or {arguments: game_server_nodes_select_column_game_server_nodes_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (game_server_nodes_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface game_server_nodes_aggregate_bool_exp_count {arguments?: (game_server_nodes_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (game_server_nodes_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "game_server_nodes" */ -export interface game_server_nodes_aggregate_fieldsGenqlSelection{ - avg?: game_server_nodes_avg_fieldsGenqlSelection - count?: { __args: {columns?: (game_server_nodes_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: game_server_nodes_max_fieldsGenqlSelection - min?: game_server_nodes_min_fieldsGenqlSelection - stddev?: game_server_nodes_stddev_fieldsGenqlSelection - stddev_pop?: game_server_nodes_stddev_pop_fieldsGenqlSelection - stddev_samp?: game_server_nodes_stddev_samp_fieldsGenqlSelection - sum?: game_server_nodes_sum_fieldsGenqlSelection - var_pop?: game_server_nodes_var_pop_fieldsGenqlSelection - var_samp?: game_server_nodes_var_samp_fieldsGenqlSelection - variance?: game_server_nodes_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "game_server_nodes" */ -export interface game_server_nodes_aggregate_order_by {avg?: (game_server_nodes_avg_order_by | null),count?: (order_by | null),max?: (game_server_nodes_max_order_by | null),min?: (game_server_nodes_min_order_by | null),stddev?: (game_server_nodes_stddev_order_by | null),stddev_pop?: (game_server_nodes_stddev_pop_order_by | null),stddev_samp?: (game_server_nodes_stddev_samp_order_by | null),sum?: (game_server_nodes_sum_order_by | null),var_pop?: (game_server_nodes_var_pop_order_by | null),var_samp?: (game_server_nodes_var_samp_order_by | null),variance?: (game_server_nodes_variance_order_by | null)} - - -/** append existing jsonb value of filtered columns with new jsonb value */ -export interface game_server_nodes_append_input {cpu_frequency_info?: (Scalars['jsonb'] | null),cpu_governor_info?: (Scalars['jsonb'] | null),cpu_warnings?: (Scalars['jsonb'] | null),cs2_launch_options?: (Scalars['jsonb'] | null),cs2_video_settings?: (Scalars['jsonb'] | null),gpu_info?: (Scalars['jsonb'] | null),shader_bake_status_history?: (Scalars['jsonb'] | null)} - - -/** input type for inserting array relation for remote table "game_server_nodes" */ -export interface game_server_nodes_arr_rel_insert_input {data: game_server_nodes_insert_input[], -/** upsert condition */ -on_conflict?: (game_server_nodes_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface game_server_nodes_avg_fieldsGenqlSelection{ - /** A computed field, executes function "available_node_server_count" */ - available_server_count?: boolean | number - build_id?: boolean | number - cpu_cores_per_socket?: boolean | number - cpu_sockets?: boolean | number - cpu_threads_per_core?: boolean | number - csgo_build_id?: boolean | number - demo_network_limiter?: boolean | number - disk_available_gb?: boolean | number - disk_used_percent?: boolean | number - end_port_range?: boolean | number - pin_build_id?: boolean | number - shader_bake_progress?: boolean | number - start_port_range?: boolean | number - /** A computed field, executes function "total_node_server_count" */ - total_server_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "game_server_nodes" */ -export interface game_server_nodes_avg_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),pin_build_id?: (order_by | null),shader_bake_progress?: (order_by | null),start_port_range?: (order_by | null)} - - -/** 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),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) */ -export interface game_server_nodes_delete_at_path_input {cpu_frequency_info?: (Scalars['String'][] | null),cpu_governor_info?: (Scalars['String'][] | null),cpu_warnings?: (Scalars['String'][] | null),cs2_launch_options?: (Scalars['String'][] | null),cs2_video_settings?: (Scalars['String'][] | null),gpu_info?: (Scalars['String'][] | null),shader_bake_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 game_server_nodes_delete_elem_input {cpu_frequency_info?: (Scalars['Int'] | null),cpu_governor_info?: (Scalars['Int'] | null),cpu_warnings?: (Scalars['Int'] | null),cs2_launch_options?: (Scalars['Int'] | null),cs2_video_settings?: (Scalars['Int'] | null),gpu_info?: (Scalars['Int'] | null),shader_bake_status_history?: (Scalars['Int'] | null)} - - -/** delete key/value pair or string element. key/value pairs are matched based on their key value */ -export interface game_server_nodes_delete_key_input {cpu_frequency_info?: (Scalars['String'] | null),cpu_governor_info?: (Scalars['String'] | null),cpu_warnings?: (Scalars['String'] | null),cs2_launch_options?: (Scalars['String'] | null),cs2_video_settings?: (Scalars['String'] | null),gpu_info?: (Scalars['String'] | null),shader_bake_status_history?: (Scalars['String'] | null)} - - -/** input type for incrementing numeric columns in table "game_server_nodes" */ -export interface game_server_nodes_inc_input {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)} - - -/** 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),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 */ -export interface game_server_nodes_max_fieldsGenqlSelection{ - /** A computed field, executes function "available_node_server_count" */ - available_server_count?: boolean | number - build_id?: boolean | number - cpu_cores_per_socket?: boolean | number - cpu_sockets?: boolean | number - cpu_threads_per_core?: boolean | number - csgo_build_id?: boolean | number - demo_network_limiter?: boolean | number - disk_available_gb?: boolean | number - disk_used_percent?: boolean | number - end_port_range?: boolean | number - id?: boolean | number - label?: boolean | number - offline_at?: boolean | number - 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 - shader_bake_status?: boolean | number - start_port_range?: boolean | number - token?: boolean | number - /** A computed field, executes function "total_node_server_count" */ - total_server_count?: boolean | number - update_status?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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),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 */ -export interface game_server_nodes_min_fieldsGenqlSelection{ - /** A computed field, executes function "available_node_server_count" */ - available_server_count?: boolean | number - build_id?: boolean | number - cpu_cores_per_socket?: boolean | number - cpu_sockets?: boolean | number - cpu_threads_per_core?: boolean | number - csgo_build_id?: boolean | number - demo_network_limiter?: boolean | number - disk_available_gb?: boolean | number - disk_used_percent?: boolean | number - end_port_range?: boolean | number - id?: boolean | number - label?: boolean | number - offline_at?: boolean | number - 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 - shader_bake_status?: boolean | number - start_port_range?: boolean | number - token?: boolean | number - /** A computed field, executes function "total_node_server_count" */ - total_server_count?: boolean | number - update_status?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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),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" */ -export interface game_server_nodes_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: game_server_nodesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "game_server_nodes" */ -export interface game_server_nodes_obj_rel_insert_input {data: game_server_nodes_insert_input, -/** upsert condition */ -on_conflict?: (game_server_nodes_on_conflict | null)} - - -/** on_conflict condition type for table "game_server_nodes" */ -export interface game_server_nodes_on_conflict {constraint: game_server_nodes_constraint,update_columns?: game_server_nodes_update_column[],where?: (game_server_nodes_bool_exp | null)} - - -/** 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),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 */ -export interface game_server_nodes_pk_columns_input {id: Scalars['String']} - - -/** prepend existing jsonb value of filtered columns with new jsonb value */ -export interface game_server_nodes_prepend_input {cpu_frequency_info?: (Scalars['jsonb'] | null),cpu_governor_info?: (Scalars['jsonb'] | null),cpu_warnings?: (Scalars['jsonb'] | null),cs2_launch_options?: (Scalars['jsonb'] | null),cs2_video_settings?: (Scalars['jsonb'] | null),gpu_info?: (Scalars['jsonb'] | null),shader_bake_status_history?: (Scalars['jsonb'] | null)} - - -/** 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),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 */ -export interface game_server_nodes_stddev_fieldsGenqlSelection{ - /** A computed field, executes function "available_node_server_count" */ - available_server_count?: boolean | number - build_id?: boolean | number - cpu_cores_per_socket?: boolean | number - cpu_sockets?: boolean | number - cpu_threads_per_core?: boolean | number - csgo_build_id?: boolean | number - demo_network_limiter?: boolean | number - disk_available_gb?: boolean | number - disk_used_percent?: boolean | number - end_port_range?: boolean | number - pin_build_id?: boolean | number - shader_bake_progress?: boolean | number - start_port_range?: boolean | number - /** A computed field, executes function "total_node_server_count" */ - total_server_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "game_server_nodes" */ -export interface game_server_nodes_stddev_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),pin_build_id?: (order_by | null),shader_bake_progress?: (order_by | null),start_port_range?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface game_server_nodes_stddev_pop_fieldsGenqlSelection{ - /** A computed field, executes function "available_node_server_count" */ - available_server_count?: boolean | number - build_id?: boolean | number - cpu_cores_per_socket?: boolean | number - cpu_sockets?: boolean | number - cpu_threads_per_core?: boolean | number - csgo_build_id?: boolean | number - demo_network_limiter?: boolean | number - disk_available_gb?: boolean | number - disk_used_percent?: boolean | number - end_port_range?: boolean | number - pin_build_id?: boolean | number - shader_bake_progress?: boolean | number - start_port_range?: boolean | number - /** A computed field, executes function "total_node_server_count" */ - total_server_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "game_server_nodes" */ -export interface game_server_nodes_stddev_pop_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),pin_build_id?: (order_by | null),shader_bake_progress?: (order_by | null),start_port_range?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface game_server_nodes_stddev_samp_fieldsGenqlSelection{ - /** A computed field, executes function "available_node_server_count" */ - available_server_count?: boolean | number - build_id?: boolean | number - cpu_cores_per_socket?: boolean | number - cpu_sockets?: boolean | number - cpu_threads_per_core?: boolean | number - csgo_build_id?: boolean | number - demo_network_limiter?: boolean | number - disk_available_gb?: boolean | number - disk_used_percent?: boolean | number - end_port_range?: boolean | number - pin_build_id?: boolean | number - shader_bake_progress?: boolean | number - start_port_range?: boolean | number - /** A computed field, executes function "total_node_server_count" */ - total_server_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "game_server_nodes" */ -export interface game_server_nodes_stddev_samp_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),pin_build_id?: (order_by | null),shader_bake_progress?: (order_by | null),start_port_range?: (order_by | null)} - - -/** Streaming cursor of the table "game_server_nodes" */ -export interface game_server_nodes_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: game_server_nodes_stream_cursor_value_input, -/** cursor ordering */ -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),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 */ -export interface game_server_nodes_sum_fieldsGenqlSelection{ - /** A computed field, executes function "available_node_server_count" */ - available_server_count?: boolean | number - build_id?: boolean | number - cpu_cores_per_socket?: boolean | number - cpu_sockets?: boolean | number - cpu_threads_per_core?: boolean | number - csgo_build_id?: boolean | number - demo_network_limiter?: boolean | number - disk_available_gb?: boolean | number - disk_used_percent?: boolean | number - end_port_range?: boolean | number - pin_build_id?: boolean | number - shader_bake_progress?: boolean | number - start_port_range?: boolean | number - /** A computed field, executes function "total_node_server_count" */ - total_server_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "game_server_nodes" */ -export interface game_server_nodes_sum_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),pin_build_id?: (order_by | null),shader_bake_progress?: (order_by | null),start_port_range?: (order_by | null)} - -export interface game_server_nodes_updates { -/** append existing jsonb value of filtered columns with new jsonb value */ -_append?: (game_server_nodes_append_input | null), -/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ -_delete_at_path?: (game_server_nodes_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_server_nodes_delete_elem_input | null), -/** delete key/value pair or string element. key/value pairs are matched based on their key value */ -_delete_key?: (game_server_nodes_delete_key_input | null), -/** increments the numeric columns with given value of the filtered values */ -_inc?: (game_server_nodes_inc_input | null), -/** prepend existing jsonb value of filtered columns with new jsonb value */ -_prepend?: (game_server_nodes_prepend_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (game_server_nodes_set_input | null), -/** filter the rows which have to be updated */ -where: game_server_nodes_bool_exp} - - -/** aggregate var_pop on columns */ -export interface game_server_nodes_var_pop_fieldsGenqlSelection{ - /** A computed field, executes function "available_node_server_count" */ - available_server_count?: boolean | number - build_id?: boolean | number - cpu_cores_per_socket?: boolean | number - cpu_sockets?: boolean | number - cpu_threads_per_core?: boolean | number - csgo_build_id?: boolean | number - demo_network_limiter?: boolean | number - disk_available_gb?: boolean | number - disk_used_percent?: boolean | number - end_port_range?: boolean | number - pin_build_id?: boolean | number - shader_bake_progress?: boolean | number - start_port_range?: boolean | number - /** A computed field, executes function "total_node_server_count" */ - total_server_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "game_server_nodes" */ -export interface game_server_nodes_var_pop_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),pin_build_id?: (order_by | null),shader_bake_progress?: (order_by | null),start_port_range?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface game_server_nodes_var_samp_fieldsGenqlSelection{ - /** A computed field, executes function "available_node_server_count" */ - available_server_count?: boolean | number - build_id?: boolean | number - cpu_cores_per_socket?: boolean | number - cpu_sockets?: boolean | number - cpu_threads_per_core?: boolean | number - csgo_build_id?: boolean | number - demo_network_limiter?: boolean | number - disk_available_gb?: boolean | number - disk_used_percent?: boolean | number - end_port_range?: boolean | number - pin_build_id?: boolean | number - shader_bake_progress?: boolean | number - start_port_range?: boolean | number - /** A computed field, executes function "total_node_server_count" */ - total_server_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "game_server_nodes" */ -export interface game_server_nodes_var_samp_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),pin_build_id?: (order_by | null),shader_bake_progress?: (order_by | null),start_port_range?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface game_server_nodes_variance_fieldsGenqlSelection{ - /** A computed field, executes function "available_node_server_count" */ - available_server_count?: boolean | number - build_id?: boolean | number - cpu_cores_per_socket?: boolean | number - cpu_sockets?: boolean | number - cpu_threads_per_core?: boolean | number - csgo_build_id?: boolean | number - demo_network_limiter?: boolean | number - disk_available_gb?: boolean | number - disk_used_percent?: boolean | number - end_port_range?: boolean | number - pin_build_id?: boolean | number - shader_bake_progress?: boolean | number - start_port_range?: boolean | number - /** A computed field, executes function "total_node_server_count" */ - total_server_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "game_server_nodes" */ -export interface game_server_nodes_variance_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),pin_build_id?: (order_by | null),shader_bake_progress?: (order_by | null),start_port_range?: (order_by | null)} - - -/** columns and relationships of "game_versions" */ -export interface game_versionsGenqlSelection{ - build_id?: boolean | number - current?: boolean | number - cvars?: boolean | number - description?: boolean | number - downloads?: { __args: { - /** JSON select path */ - path?: (Scalars['String'] | null)} } | boolean | number - updated_at?: boolean | number - version?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "game_versions" */ -export interface game_versions_aggregateGenqlSelection{ - aggregate?: game_versions_aggregate_fieldsGenqlSelection - nodes?: game_versionsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "game_versions" */ -export interface game_versions_aggregate_fieldsGenqlSelection{ - avg?: game_versions_avg_fieldsGenqlSelection - count?: { __args: {columns?: (game_versions_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: game_versions_max_fieldsGenqlSelection - min?: game_versions_min_fieldsGenqlSelection - stddev?: game_versions_stddev_fieldsGenqlSelection - stddev_pop?: game_versions_stddev_pop_fieldsGenqlSelection - stddev_samp?: game_versions_stddev_samp_fieldsGenqlSelection - sum?: game_versions_sum_fieldsGenqlSelection - var_pop?: game_versions_var_pop_fieldsGenqlSelection - var_samp?: game_versions_var_samp_fieldsGenqlSelection - variance?: game_versions_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** append existing jsonb value of filtered columns with new jsonb value */ -export interface game_versions_append_input {downloads?: (Scalars['jsonb'] | null)} - - -/** aggregate avg on columns */ -export interface game_versions_avg_fieldsGenqlSelection{ - build_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "game_versions". All fields are combined with a logical 'AND'. */ -export interface game_versions_bool_exp {_and?: (game_versions_bool_exp[] | null),_not?: (game_versions_bool_exp | null),_or?: (game_versions_bool_exp[] | null),build_id?: (Int_comparison_exp | null),current?: (Boolean_comparison_exp | null),cvars?: (Boolean_comparison_exp | null),description?: (String_comparison_exp | null),downloads?: (jsonb_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null),version?: (String_comparison_exp | null)} - - -/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ -export interface game_versions_delete_at_path_input {downloads?: (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_versions_delete_elem_input {downloads?: (Scalars['Int'] | null)} - - -/** delete key/value pair or string element. key/value pairs are matched based on their key value */ -export interface game_versions_delete_key_input {downloads?: (Scalars['String'] | null)} - - -/** input type for incrementing numeric columns in table "game_versions" */ -export interface game_versions_inc_input {build_id?: (Scalars['Int'] | null)} - - -/** input type for inserting data into table "game_versions" */ -export interface game_versions_insert_input {build_id?: (Scalars['Int'] | null),current?: (Scalars['Boolean'] | null),cvars?: (Scalars['Boolean'] | null),description?: (Scalars['String'] | null),downloads?: (Scalars['jsonb'] | null),updated_at?: (Scalars['timestamptz'] | null),version?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface game_versions_max_fieldsGenqlSelection{ - build_id?: boolean | number - description?: boolean | number - updated_at?: boolean | number - version?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface game_versions_min_fieldsGenqlSelection{ - build_id?: boolean | number - description?: boolean | number - updated_at?: boolean | number - version?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "game_versions" */ -export interface game_versions_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: game_versionsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "game_versions" */ -export interface game_versions_obj_rel_insert_input {data: game_versions_insert_input, -/** upsert condition */ -on_conflict?: (game_versions_on_conflict | null)} - - -/** on_conflict condition type for table "game_versions" */ -export interface game_versions_on_conflict {constraint: game_versions_constraint,update_columns?: game_versions_update_column[],where?: (game_versions_bool_exp | null)} - - -/** Ordering options when selecting data from "game_versions". */ -export interface game_versions_order_by {build_id?: (order_by | null),current?: (order_by | null),cvars?: (order_by | null),description?: (order_by | null),downloads?: (order_by | null),updated_at?: (order_by | null),version?: (order_by | null)} - - -/** primary key columns input for table: game_versions */ -export interface game_versions_pk_columns_input {build_id: Scalars['Int']} - - -/** prepend existing jsonb value of filtered columns with new jsonb value */ -export interface game_versions_prepend_input {downloads?: (Scalars['jsonb'] | null)} - - -/** input type for updating data in table "game_versions" */ -export interface game_versions_set_input {build_id?: (Scalars['Int'] | null),current?: (Scalars['Boolean'] | null),cvars?: (Scalars['Boolean'] | null),description?: (Scalars['String'] | null),downloads?: (Scalars['jsonb'] | null),updated_at?: (Scalars['timestamptz'] | null),version?: (Scalars['String'] | null)} - - -/** aggregate stddev on columns */ -export interface game_versions_stddev_fieldsGenqlSelection{ - build_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface game_versions_stddev_pop_fieldsGenqlSelection{ - build_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface game_versions_stddev_samp_fieldsGenqlSelection{ - build_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "game_versions" */ -export interface game_versions_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: game_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_versions_stream_cursor_value_input {build_id?: (Scalars['Int'] | null),current?: (Scalars['Boolean'] | null),cvars?: (Scalars['Boolean'] | null),description?: (Scalars['String'] | null),downloads?: (Scalars['jsonb'] | null),updated_at?: (Scalars['timestamptz'] | null),version?: (Scalars['String'] | null)} - - -/** aggregate sum on columns */ -export interface game_versions_sum_fieldsGenqlSelection{ - build_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface game_versions_updates { -/** append existing jsonb value of filtered columns with new jsonb value */ -_append?: (game_versions_append_input | null), -/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ -_delete_at_path?: (game_versions_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_versions_delete_elem_input | null), -/** delete key/value pair or string element. key/value pairs are matched based on their key value */ -_delete_key?: (game_versions_delete_key_input | null), -/** increments the numeric columns with given value of the filtered values */ -_inc?: (game_versions_inc_input | null), -/** prepend existing jsonb value of filtered columns with new jsonb value */ -_prepend?: (game_versions_prepend_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (game_versions_set_input | null), -/** filter the rows which have to be updated */ -where: game_versions_bool_exp} - - -/** aggregate var_pop on columns */ -export interface game_versions_var_pop_fieldsGenqlSelection{ - build_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface game_versions_var_samp_fieldsGenqlSelection{ - build_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface game_versions_variance_fieldsGenqlSelection{ - build_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "gamedata_signature_validations" */ -export interface gamedata_signature_validationsGenqlSelection{ - branch?: boolean | number - build_id?: boolean | number - /** An object relationship */ - game_version?: game_versionsGenqlSelection - id?: boolean | number - results?: { __args: { - /** JSON select path */ - path?: (Scalars['String'] | null)} } | boolean | number - status?: boolean | number - validated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "gamedata_signature_validations" */ -export interface gamedata_signature_validations_aggregateGenqlSelection{ - aggregate?: gamedata_signature_validations_aggregate_fieldsGenqlSelection - nodes?: gamedata_signature_validationsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "gamedata_signature_validations" */ -export interface gamedata_signature_validations_aggregate_fieldsGenqlSelection{ - avg?: gamedata_signature_validations_avg_fieldsGenqlSelection - count?: { __args: {columns?: (gamedata_signature_validations_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: gamedata_signature_validations_max_fieldsGenqlSelection - min?: gamedata_signature_validations_min_fieldsGenqlSelection - stddev?: gamedata_signature_validations_stddev_fieldsGenqlSelection - stddev_pop?: gamedata_signature_validations_stddev_pop_fieldsGenqlSelection - stddev_samp?: gamedata_signature_validations_stddev_samp_fieldsGenqlSelection - sum?: gamedata_signature_validations_sum_fieldsGenqlSelection - var_pop?: gamedata_signature_validations_var_pop_fieldsGenqlSelection - var_samp?: gamedata_signature_validations_var_samp_fieldsGenqlSelection - variance?: gamedata_signature_validations_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** append existing jsonb value of filtered columns with new jsonb value */ -export interface gamedata_signature_validations_append_input {results?: (Scalars['jsonb'] | null)} - - -/** aggregate avg on columns */ -export interface gamedata_signature_validations_avg_fieldsGenqlSelection{ - build_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "gamedata_signature_validations". All fields are combined with a logical 'AND'. */ -export interface gamedata_signature_validations_bool_exp {_and?: (gamedata_signature_validations_bool_exp[] | null),_not?: (gamedata_signature_validations_bool_exp | null),_or?: (gamedata_signature_validations_bool_exp[] | null),branch?: (String_comparison_exp | null),build_id?: (Int_comparison_exp | null),game_version?: (game_versions_bool_exp | null),id?: (uuid_comparison_exp | null),results?: (jsonb_comparison_exp | null),status?: (String_comparison_exp | null),validated_at?: (timestamptz_comparison_exp | null)} - - -/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ -export interface gamedata_signature_validations_delete_at_path_input {results?: (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 gamedata_signature_validations_delete_elem_input {results?: (Scalars['Int'] | null)} - - -/** delete key/value pair or string element. key/value pairs are matched based on their key value */ -export interface gamedata_signature_validations_delete_key_input {results?: (Scalars['String'] | null)} - - -/** input type for incrementing numeric columns in table "gamedata_signature_validations" */ -export interface gamedata_signature_validations_inc_input {build_id?: (Scalars['Int'] | null)} - - -/** input type for inserting data into table "gamedata_signature_validations" */ -export interface gamedata_signature_validations_insert_input {branch?: (Scalars['String'] | null),build_id?: (Scalars['Int'] | null),game_version?: (game_versions_obj_rel_insert_input | null),id?: (Scalars['uuid'] | null),results?: (Scalars['jsonb'] | null),status?: (Scalars['String'] | null),validated_at?: (Scalars['timestamptz'] | null)} - - -/** aggregate max on columns */ -export interface gamedata_signature_validations_max_fieldsGenqlSelection{ - branch?: boolean | number - build_id?: boolean | number - id?: boolean | number - status?: boolean | number - validated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface gamedata_signature_validations_min_fieldsGenqlSelection{ - branch?: boolean | number - build_id?: boolean | number - id?: boolean | number - status?: boolean | number - validated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "gamedata_signature_validations" */ -export interface gamedata_signature_validations_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: gamedata_signature_validationsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "gamedata_signature_validations" */ -export interface gamedata_signature_validations_on_conflict {constraint: gamedata_signature_validations_constraint,update_columns?: gamedata_signature_validations_update_column[],where?: (gamedata_signature_validations_bool_exp | null)} - - -/** Ordering options when selecting data from "gamedata_signature_validations". */ -export interface gamedata_signature_validations_order_by {branch?: (order_by | null),build_id?: (order_by | null),game_version?: (game_versions_order_by | null),id?: (order_by | null),results?: (order_by | null),status?: (order_by | null),validated_at?: (order_by | null)} - - -/** primary key columns input for table: gamedata_signature_validations */ -export interface gamedata_signature_validations_pk_columns_input {id: Scalars['uuid']} - - -/** prepend existing jsonb value of filtered columns with new jsonb value */ -export interface gamedata_signature_validations_prepend_input {results?: (Scalars['jsonb'] | null)} - - -/** input type for updating data in table "gamedata_signature_validations" */ -export interface gamedata_signature_validations_set_input {branch?: (Scalars['String'] | null),build_id?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),results?: (Scalars['jsonb'] | null),status?: (Scalars['String'] | null),validated_at?: (Scalars['timestamptz'] | null)} - - -/** aggregate stddev on columns */ -export interface gamedata_signature_validations_stddev_fieldsGenqlSelection{ - build_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface gamedata_signature_validations_stddev_pop_fieldsGenqlSelection{ - build_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface gamedata_signature_validations_stddev_samp_fieldsGenqlSelection{ - build_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "gamedata_signature_validations" */ -export interface gamedata_signature_validations_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: gamedata_signature_validations_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface gamedata_signature_validations_stream_cursor_value_input {branch?: (Scalars['String'] | null),build_id?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),results?: (Scalars['jsonb'] | null),status?: (Scalars['String'] | null),validated_at?: (Scalars['timestamptz'] | null)} - - -/** aggregate sum on columns */ -export interface gamedata_signature_validations_sum_fieldsGenqlSelection{ - build_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface gamedata_signature_validations_updates { -/** append existing jsonb value of filtered columns with new jsonb value */ -_append?: (gamedata_signature_validations_append_input | null), -/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ -_delete_at_path?: (gamedata_signature_validations_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?: (gamedata_signature_validations_delete_elem_input | null), -/** delete key/value pair or string element. key/value pairs are matched based on their key value */ -_delete_key?: (gamedata_signature_validations_delete_key_input | null), -/** increments the numeric columns with given value of the filtered values */ -_inc?: (gamedata_signature_validations_inc_input | null), -/** prepend existing jsonb value of filtered columns with new jsonb value */ -_prepend?: (gamedata_signature_validations_prepend_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (gamedata_signature_validations_set_input | null), -/** filter the rows which have to be updated */ -where: gamedata_signature_validations_bool_exp} - - -/** aggregate var_pop on columns */ -export interface gamedata_signature_validations_var_pop_fieldsGenqlSelection{ - build_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface gamedata_signature_validations_var_samp_fieldsGenqlSelection{ - build_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface gamedata_signature_validations_variance_fieldsGenqlSelection{ - build_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface get_event_leaderboard_args {_category?: (Scalars['String'] | null),_event_id?: (Scalars['uuid'] | null),_match_type?: (Scalars['String'] | null),_min_rounds?: (Scalars['Int'] | null)} - -export interface get_leaderboard_args {_category?: (Scalars['String'] | null),_exclude_tournaments?: (Scalars['Boolean'] | null),_match_type?: (Scalars['String'] | null),_role?: (Scalars['String'] | null),_season_id?: (Scalars['uuid'] | null),_source?: (Scalars['String'] | null),_window_days?: (Scalars['Int'] | null)} - -export interface get_league_season_leaderboard_args {_category?: (Scalars['String'] | null),_league_season_id?: (Scalars['uuid'] | null),_role?: (Scalars['String'] | null)} - -export interface get_player_leaderboard_rank_args {_category?: (Scalars['String'] | null),_exclude_tournaments?: (Scalars['Boolean'] | null),_match_type?: (Scalars['String'] | null),_player_steam_id?: (Scalars['String'] | null),_season_id?: (Scalars['uuid'] | null),_source?: (Scalars['String'] | null),_window_days?: (Scalars['Int'] | null)} - -export interface get_tournament_leaderboard_args {_tournament_id?: (Scalars['uuid'] | null)} - - -/** Boolean expression to compare columns of type "inet". All fields are combined with logical 'AND'. */ -export interface inet_comparison_exp {_eq?: (Scalars['inet'] | null),_gt?: (Scalars['inet'] | null),_gte?: (Scalars['inet'] | null),_in?: (Scalars['inet'][] | null),_is_null?: (Scalars['Boolean'] | null),_lt?: (Scalars['inet'] | null),_lte?: (Scalars['inet'] | null),_neq?: (Scalars['inet'] | null),_nin?: (Scalars['inet'][] | null)} - - -/** Boolean expression to compare columns of type "json". All fields are combined with logical 'AND'. */ -export interface json_comparison_exp {_eq?: (Scalars['json'] | null),_gt?: (Scalars['json'] | null),_gte?: (Scalars['json'] | null),_in?: (Scalars['json'][] | null),_is_null?: (Scalars['Boolean'] | null),_lt?: (Scalars['json'] | null),_lte?: (Scalars['json'] | null),_neq?: (Scalars['json'] | null),_nin?: (Scalars['json'][] | null)} - -export interface jsonb_cast_exp {String?: (String_comparison_exp | null)} - - -/** Boolean expression to compare columns of type "jsonb". All fields are combined with logical 'AND'. */ -export interface jsonb_comparison_exp {_cast?: (jsonb_cast_exp | null), -/** is the column contained in the given json value */ -_contained_in?: (Scalars['jsonb'] | null), -/** does the column contain the given json value at the top level */ -_contains?: (Scalars['jsonb'] | null),_eq?: (Scalars['jsonb'] | null),_gt?: (Scalars['jsonb'] | null),_gte?: (Scalars['jsonb'] | null), -/** does the string exist as a top-level key in the column */ -_has_key?: (Scalars['String'] | null), -/** do all of these strings exist as top-level keys in the column */ -_has_keys_all?: (Scalars['String'][] | null), -/** do any of these strings exist as top-level keys in the column */ -_has_keys_any?: (Scalars['String'][] | null),_in?: (Scalars['jsonb'][] | null),_is_null?: (Scalars['Boolean'] | null),_lt?: (Scalars['jsonb'] | null),_lte?: (Scalars['jsonb'] | null),_neq?: (Scalars['jsonb'] | null),_nin?: (Scalars['jsonb'][] | null)} - - -/** columns and relationships of "leaderboard_entries" */ -export interface leaderboard_entriesGenqlSelection{ - matches_played?: boolean | number - player_avatar_url?: boolean | number - player_country?: boolean | number - player_custom_avatar_url?: boolean | number - player_name?: boolean | number - player_steam_id?: boolean | number - secondary_value?: boolean | number - tertiary_value?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface leaderboard_entries_aggregateGenqlSelection{ - aggregate?: leaderboard_entries_aggregate_fieldsGenqlSelection - nodes?: leaderboard_entriesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "leaderboard_entries" */ -export interface leaderboard_entries_aggregate_fieldsGenqlSelection{ - avg?: leaderboard_entries_avg_fieldsGenqlSelection - count?: { __args: {columns?: (leaderboard_entries_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: leaderboard_entries_max_fieldsGenqlSelection - min?: leaderboard_entries_min_fieldsGenqlSelection - stddev?: leaderboard_entries_stddev_fieldsGenqlSelection - stddev_pop?: leaderboard_entries_stddev_pop_fieldsGenqlSelection - stddev_samp?: leaderboard_entries_stddev_samp_fieldsGenqlSelection - sum?: leaderboard_entries_sum_fieldsGenqlSelection - var_pop?: leaderboard_entries_var_pop_fieldsGenqlSelection - var_samp?: leaderboard_entries_var_samp_fieldsGenqlSelection - variance?: leaderboard_entries_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface leaderboard_entries_avg_fieldsGenqlSelection{ - matches_played?: boolean | number - secondary_value?: boolean | number - tertiary_value?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "leaderboard_entries". All fields are combined with a logical 'AND'. */ -export interface leaderboard_entries_bool_exp {_and?: (leaderboard_entries_bool_exp[] | null),_not?: (leaderboard_entries_bool_exp | null),_or?: (leaderboard_entries_bool_exp[] | null),matches_played?: (Int_comparison_exp | null),player_avatar_url?: (String_comparison_exp | null),player_country?: (String_comparison_exp | null),player_custom_avatar_url?: (String_comparison_exp | null),player_name?: (String_comparison_exp | null),player_steam_id?: (String_comparison_exp | null),secondary_value?: (float8_comparison_exp | null),tertiary_value?: (float8_comparison_exp | null),value?: (float8_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "leaderboard_entries" */ -export interface leaderboard_entries_inc_input {matches_played?: (Scalars['Int'] | null),secondary_value?: (Scalars['float8'] | null),tertiary_value?: (Scalars['float8'] | null),value?: (Scalars['float8'] | null)} - - -/** input type for inserting data into table "leaderboard_entries" */ -export interface leaderboard_entries_insert_input {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)} - - -/** aggregate max on columns */ -export interface leaderboard_entries_max_fieldsGenqlSelection{ - matches_played?: boolean | number - player_avatar_url?: boolean | number - player_country?: boolean | number - player_custom_avatar_url?: boolean | number - player_name?: boolean | number - player_steam_id?: boolean | number - secondary_value?: boolean | number - tertiary_value?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface leaderboard_entries_min_fieldsGenqlSelection{ - matches_played?: boolean | number - player_avatar_url?: boolean | number - player_country?: boolean | number - player_custom_avatar_url?: boolean | number - player_name?: boolean | number - player_steam_id?: boolean | number - secondary_value?: boolean | number - tertiary_value?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "leaderboard_entries" */ -export interface leaderboard_entries_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: leaderboard_entriesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Ordering options when selecting data from "leaderboard_entries". */ -export interface leaderboard_entries_order_by {matches_played?: (order_by | null),player_avatar_url?: (order_by | null),player_country?: (order_by | null),player_custom_avatar_url?: (order_by | null),player_name?: (order_by | null),player_steam_id?: (order_by | null),secondary_value?: (order_by | null),tertiary_value?: (order_by | null),value?: (order_by | null)} - - -/** input type for updating data in table "leaderboard_entries" */ -export interface leaderboard_entries_set_input {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)} - - -/** aggregate stddev on columns */ -export interface leaderboard_entries_stddev_fieldsGenqlSelection{ - matches_played?: boolean | number - secondary_value?: boolean | number - tertiary_value?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface leaderboard_entries_stddev_pop_fieldsGenqlSelection{ - matches_played?: boolean | number - secondary_value?: boolean | number - tertiary_value?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface leaderboard_entries_stddev_samp_fieldsGenqlSelection{ - matches_played?: boolean | number - secondary_value?: boolean | number - tertiary_value?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "leaderboard_entries" */ -export interface leaderboard_entries_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: leaderboard_entries_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface leaderboard_entries_stream_cursor_value_input {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)} - - -/** aggregate sum on columns */ -export interface leaderboard_entries_sum_fieldsGenqlSelection{ - matches_played?: boolean | number - secondary_value?: boolean | number - tertiary_value?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface leaderboard_entries_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (leaderboard_entries_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (leaderboard_entries_set_input | null), -/** filter the rows which have to be updated */ -where: leaderboard_entries_bool_exp} - - -/** aggregate var_pop on columns */ -export interface leaderboard_entries_var_pop_fieldsGenqlSelection{ - matches_played?: boolean | number - secondary_value?: boolean | number - tertiary_value?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface leaderboard_entries_var_samp_fieldsGenqlSelection{ - matches_played?: boolean | number - secondary_value?: boolean | number - tertiary_value?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface leaderboard_entries_variance_fieldsGenqlSelection{ - matches_played?: boolean | number - secondary_value?: boolean | number - tertiary_value?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface league_award_forfeit_args {_tournament_bracket_id?: (Scalars['uuid'] | null),_winning_tournament_team_id?: (Scalars['uuid'] | null)} - - -/** columns and relationships of "league_divisions" */ -export interface league_divisionsGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - name?: boolean | number - /** An array relationship */ - season_divisions?: (league_season_divisionsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_season_divisions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_season_divisions_order_by[] | null), - /** filter the rows returned */ - where?: (league_season_divisions_bool_exp | null)} }) - /** An aggregate relationship */ - season_divisions_aggregate?: (league_season_divisions_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_season_divisions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_season_divisions_order_by[] | null), - /** filter the rows returned */ - where?: (league_season_divisions_bool_exp | null)} }) - tier?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "league_divisions" */ -export interface league_divisions_aggregateGenqlSelection{ - aggregate?: league_divisions_aggregate_fieldsGenqlSelection - nodes?: league_divisionsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "league_divisions" */ -export interface league_divisions_aggregate_fieldsGenqlSelection{ - avg?: league_divisions_avg_fieldsGenqlSelection - count?: { __args: {columns?: (league_divisions_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: league_divisions_max_fieldsGenqlSelection - min?: league_divisions_min_fieldsGenqlSelection - stddev?: league_divisions_stddev_fieldsGenqlSelection - stddev_pop?: league_divisions_stddev_pop_fieldsGenqlSelection - stddev_samp?: league_divisions_stddev_samp_fieldsGenqlSelection - sum?: league_divisions_sum_fieldsGenqlSelection - var_pop?: league_divisions_var_pop_fieldsGenqlSelection - var_samp?: league_divisions_var_samp_fieldsGenqlSelection - variance?: league_divisions_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface league_divisions_avg_fieldsGenqlSelection{ - tier?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "league_divisions". All fields are combined with a logical 'AND'. */ -export interface league_divisions_bool_exp {_and?: (league_divisions_bool_exp[] | null),_not?: (league_divisions_bool_exp | null),_or?: (league_divisions_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),name?: (String_comparison_exp | null),season_divisions?: (league_season_divisions_bool_exp | null),season_divisions_aggregate?: (league_season_divisions_aggregate_bool_exp | null),tier?: (smallint_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "league_divisions" */ -export interface league_divisions_inc_input {tier?: (Scalars['smallint'] | null)} - - -/** input type for inserting data into table "league_divisions" */ -export interface league_divisions_insert_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),season_divisions?: (league_season_divisions_arr_rel_insert_input | null),tier?: (Scalars['smallint'] | null)} - - -/** aggregate max on columns */ -export interface league_divisions_max_fieldsGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - name?: boolean | number - tier?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface league_divisions_min_fieldsGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - name?: boolean | number - tier?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "league_divisions" */ -export interface league_divisions_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: league_divisionsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "league_divisions" */ -export interface league_divisions_obj_rel_insert_input {data: league_divisions_insert_input, -/** upsert condition */ -on_conflict?: (league_divisions_on_conflict | null)} - - -/** on_conflict condition type for table "league_divisions" */ -export interface league_divisions_on_conflict {constraint: league_divisions_constraint,update_columns?: league_divisions_update_column[],where?: (league_divisions_bool_exp | null)} - - -/** Ordering options when selecting data from "league_divisions". */ -export interface league_divisions_order_by {created_at?: (order_by | null),id?: (order_by | null),name?: (order_by | null),season_divisions_aggregate?: (league_season_divisions_aggregate_order_by | null),tier?: (order_by | null)} - - -/** primary key columns input for table: league_divisions */ -export interface league_divisions_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "league_divisions" */ -export interface league_divisions_set_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),tier?: (Scalars['smallint'] | null)} - - -/** aggregate stddev on columns */ -export interface league_divisions_stddev_fieldsGenqlSelection{ - tier?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface league_divisions_stddev_pop_fieldsGenqlSelection{ - tier?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface league_divisions_stddev_samp_fieldsGenqlSelection{ - tier?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "league_divisions" */ -export interface league_divisions_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: league_divisions_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface league_divisions_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),tier?: (Scalars['smallint'] | null)} - - -/** aggregate sum on columns */ -export interface league_divisions_sum_fieldsGenqlSelection{ - tier?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface league_divisions_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (league_divisions_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (league_divisions_set_input | null), -/** filter the rows which have to be updated */ -where: league_divisions_bool_exp} - - -/** aggregate var_pop on columns */ -export interface league_divisions_var_pop_fieldsGenqlSelection{ - tier?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface league_divisions_var_samp_fieldsGenqlSelection{ - tier?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface league_divisions_variance_fieldsGenqlSelection{ - tier?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "league_match_weeks" */ -export interface league_match_weeksGenqlSelection{ - closes_at?: boolean | number - created_at?: boolean | number - default_match_at?: boolean | number - id?: boolean | number - league_season_id?: boolean | number - opens_at?: boolean | number - /** An object relationship */ - season?: league_seasonsGenqlSelection - week_number?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "league_match_weeks" */ -export interface league_match_weeks_aggregateGenqlSelection{ - aggregate?: league_match_weeks_aggregate_fieldsGenqlSelection - nodes?: league_match_weeksGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface league_match_weeks_aggregate_bool_exp {count?: (league_match_weeks_aggregate_bool_exp_count | null)} - -export interface league_match_weeks_aggregate_bool_exp_count {arguments?: (league_match_weeks_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (league_match_weeks_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "league_match_weeks" */ -export interface league_match_weeks_aggregate_fieldsGenqlSelection{ - avg?: league_match_weeks_avg_fieldsGenqlSelection - count?: { __args: {columns?: (league_match_weeks_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: league_match_weeks_max_fieldsGenqlSelection - min?: league_match_weeks_min_fieldsGenqlSelection - stddev?: league_match_weeks_stddev_fieldsGenqlSelection - stddev_pop?: league_match_weeks_stddev_pop_fieldsGenqlSelection - stddev_samp?: league_match_weeks_stddev_samp_fieldsGenqlSelection - sum?: league_match_weeks_sum_fieldsGenqlSelection - var_pop?: league_match_weeks_var_pop_fieldsGenqlSelection - var_samp?: league_match_weeks_var_samp_fieldsGenqlSelection - variance?: league_match_weeks_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "league_match_weeks" */ -export interface league_match_weeks_aggregate_order_by {avg?: (league_match_weeks_avg_order_by | null),count?: (order_by | null),max?: (league_match_weeks_max_order_by | null),min?: (league_match_weeks_min_order_by | null),stddev?: (league_match_weeks_stddev_order_by | null),stddev_pop?: (league_match_weeks_stddev_pop_order_by | null),stddev_samp?: (league_match_weeks_stddev_samp_order_by | null),sum?: (league_match_weeks_sum_order_by | null),var_pop?: (league_match_weeks_var_pop_order_by | null),var_samp?: (league_match_weeks_var_samp_order_by | null),variance?: (league_match_weeks_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "league_match_weeks" */ -export interface league_match_weeks_arr_rel_insert_input {data: league_match_weeks_insert_input[], -/** upsert condition */ -on_conflict?: (league_match_weeks_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface league_match_weeks_avg_fieldsGenqlSelection{ - week_number?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "league_match_weeks" */ -export interface league_match_weeks_avg_order_by {week_number?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "league_match_weeks". All fields are combined with a logical 'AND'. */ -export interface league_match_weeks_bool_exp {_and?: (league_match_weeks_bool_exp[] | null),_not?: (league_match_weeks_bool_exp | null),_or?: (league_match_weeks_bool_exp[] | null),closes_at?: (timestamptz_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),default_match_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),league_season_id?: (uuid_comparison_exp | null),opens_at?: (timestamptz_comparison_exp | null),season?: (league_seasons_bool_exp | null),week_number?: (Int_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "league_match_weeks" */ -export interface league_match_weeks_inc_input {week_number?: (Scalars['Int'] | null)} - - -/** input type for inserting data into table "league_match_weeks" */ -export interface league_match_weeks_insert_input {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),season?: (league_seasons_obj_rel_insert_input | null),week_number?: (Scalars['Int'] | null)} - - -/** aggregate max on columns */ -export interface league_match_weeks_max_fieldsGenqlSelection{ - closes_at?: boolean | number - created_at?: boolean | number - default_match_at?: boolean | number - id?: boolean | number - league_season_id?: boolean | number - opens_at?: boolean | number - week_number?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "league_match_weeks" */ -export interface league_match_weeks_max_order_by {closes_at?: (order_by | null),created_at?: (order_by | null),default_match_at?: (order_by | null),id?: (order_by | null),league_season_id?: (order_by | null),opens_at?: (order_by | null),week_number?: (order_by | null)} - - -/** aggregate min on columns */ -export interface league_match_weeks_min_fieldsGenqlSelection{ - closes_at?: boolean | number - created_at?: boolean | number - default_match_at?: boolean | number - id?: boolean | number - league_season_id?: boolean | number - opens_at?: boolean | number - week_number?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "league_match_weeks" */ -export interface league_match_weeks_min_order_by {closes_at?: (order_by | null),created_at?: (order_by | null),default_match_at?: (order_by | null),id?: (order_by | null),league_season_id?: (order_by | null),opens_at?: (order_by | null),week_number?: (order_by | null)} - - -/** response of any mutation on the table "league_match_weeks" */ -export interface league_match_weeks_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: league_match_weeksGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "league_match_weeks" */ -export interface league_match_weeks_on_conflict {constraint: league_match_weeks_constraint,update_columns?: league_match_weeks_update_column[],where?: (league_match_weeks_bool_exp | null)} - - -/** Ordering options when selecting data from "league_match_weeks". */ -export interface league_match_weeks_order_by {closes_at?: (order_by | null),created_at?: (order_by | null),default_match_at?: (order_by | null),id?: (order_by | null),league_season_id?: (order_by | null),opens_at?: (order_by | null),season?: (league_seasons_order_by | null),week_number?: (order_by | null)} - - -/** primary key columns input for table: league_match_weeks */ -export interface league_match_weeks_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "league_match_weeks" */ -export interface league_match_weeks_set_input {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)} - - -/** aggregate stddev on columns */ -export interface league_match_weeks_stddev_fieldsGenqlSelection{ - week_number?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "league_match_weeks" */ -export interface league_match_weeks_stddev_order_by {week_number?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface league_match_weeks_stddev_pop_fieldsGenqlSelection{ - week_number?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "league_match_weeks" */ -export interface league_match_weeks_stddev_pop_order_by {week_number?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface league_match_weeks_stddev_samp_fieldsGenqlSelection{ - week_number?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "league_match_weeks" */ -export interface league_match_weeks_stddev_samp_order_by {week_number?: (order_by | null)} - - -/** Streaming cursor of the table "league_match_weeks" */ -export interface league_match_weeks_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: league_match_weeks_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface league_match_weeks_stream_cursor_value_input {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)} - - -/** aggregate sum on columns */ -export interface league_match_weeks_sum_fieldsGenqlSelection{ - week_number?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "league_match_weeks" */ -export interface league_match_weeks_sum_order_by {week_number?: (order_by | null)} - -export interface league_match_weeks_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (league_match_weeks_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (league_match_weeks_set_input | null), -/** filter the rows which have to be updated */ -where: league_match_weeks_bool_exp} - - -/** aggregate var_pop on columns */ -export interface league_match_weeks_var_pop_fieldsGenqlSelection{ - week_number?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "league_match_weeks" */ -export interface league_match_weeks_var_pop_order_by {week_number?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface league_match_weeks_var_samp_fieldsGenqlSelection{ - week_number?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "league_match_weeks" */ -export interface league_match_weeks_var_samp_order_by {week_number?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface league_match_weeks_variance_fieldsGenqlSelection{ - week_number?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "league_match_weeks" */ -export interface league_match_weeks_variance_order_by {week_number?: (order_by | null)} - - -/** columns and relationships of "league_relegation_playoffs" */ -export interface league_relegation_playoffsGenqlSelection{ - created_at?: boolean | number - /** An object relationship */ - higher_division?: league_divisionsGenqlSelection - higher_division_id?: boolean | number - higher_slots?: boolean | number - id?: boolean | number - league_season_id?: boolean | number - /** An object relationship */ - lower_division?: league_divisionsGenqlSelection - lower_division_id?: boolean | number - resolved_at?: boolean | number - /** An object relationship */ - season?: league_seasonsGenqlSelection - /** An object relationship */ - tournament?: tournamentsGenqlSelection - tournament_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "league_relegation_playoffs" */ -export interface league_relegation_playoffs_aggregateGenqlSelection{ - aggregate?: league_relegation_playoffs_aggregate_fieldsGenqlSelection - nodes?: league_relegation_playoffsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface league_relegation_playoffs_aggregate_bool_exp {count?: (league_relegation_playoffs_aggregate_bool_exp_count | null)} - -export interface league_relegation_playoffs_aggregate_bool_exp_count {arguments?: (league_relegation_playoffs_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (league_relegation_playoffs_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "league_relegation_playoffs" */ -export interface league_relegation_playoffs_aggregate_fieldsGenqlSelection{ - avg?: league_relegation_playoffs_avg_fieldsGenqlSelection - count?: { __args: {columns?: (league_relegation_playoffs_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: league_relegation_playoffs_max_fieldsGenqlSelection - min?: league_relegation_playoffs_min_fieldsGenqlSelection - stddev?: league_relegation_playoffs_stddev_fieldsGenqlSelection - stddev_pop?: league_relegation_playoffs_stddev_pop_fieldsGenqlSelection - stddev_samp?: league_relegation_playoffs_stddev_samp_fieldsGenqlSelection - sum?: league_relegation_playoffs_sum_fieldsGenqlSelection - var_pop?: league_relegation_playoffs_var_pop_fieldsGenqlSelection - var_samp?: league_relegation_playoffs_var_samp_fieldsGenqlSelection - variance?: league_relegation_playoffs_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "league_relegation_playoffs" */ -export interface league_relegation_playoffs_aggregate_order_by {avg?: (league_relegation_playoffs_avg_order_by | null),count?: (order_by | null),max?: (league_relegation_playoffs_max_order_by | null),min?: (league_relegation_playoffs_min_order_by | null),stddev?: (league_relegation_playoffs_stddev_order_by | null),stddev_pop?: (league_relegation_playoffs_stddev_pop_order_by | null),stddev_samp?: (league_relegation_playoffs_stddev_samp_order_by | null),sum?: (league_relegation_playoffs_sum_order_by | null),var_pop?: (league_relegation_playoffs_var_pop_order_by | null),var_samp?: (league_relegation_playoffs_var_samp_order_by | null),variance?: (league_relegation_playoffs_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "league_relegation_playoffs" */ -export interface league_relegation_playoffs_arr_rel_insert_input {data: league_relegation_playoffs_insert_input[], -/** upsert condition */ -on_conflict?: (league_relegation_playoffs_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface league_relegation_playoffs_avg_fieldsGenqlSelection{ - higher_slots?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "league_relegation_playoffs" */ -export interface league_relegation_playoffs_avg_order_by {higher_slots?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "league_relegation_playoffs". All fields are combined with a logical 'AND'. */ -export interface league_relegation_playoffs_bool_exp {_and?: (league_relegation_playoffs_bool_exp[] | null),_not?: (league_relegation_playoffs_bool_exp | null),_or?: (league_relegation_playoffs_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),higher_division?: (league_divisions_bool_exp | null),higher_division_id?: (uuid_comparison_exp | null),higher_slots?: (Int_comparison_exp | null),id?: (uuid_comparison_exp | null),league_season_id?: (uuid_comparison_exp | null),lower_division?: (league_divisions_bool_exp | null),lower_division_id?: (uuid_comparison_exp | null),resolved_at?: (timestamptz_comparison_exp | null),season?: (league_seasons_bool_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "league_relegation_playoffs" */ -export interface league_relegation_playoffs_inc_input {higher_slots?: (Scalars['Int'] | null)} - - -/** input type for inserting data into table "league_relegation_playoffs" */ -export interface league_relegation_playoffs_insert_input {created_at?: (Scalars['timestamptz'] | null),higher_division?: (league_divisions_obj_rel_insert_input | null),higher_division_id?: (Scalars['uuid'] | null),higher_slots?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),league_season_id?: (Scalars['uuid'] | null),lower_division?: (league_divisions_obj_rel_insert_input | null),lower_division_id?: (Scalars['uuid'] | null),resolved_at?: (Scalars['timestamptz'] | null),season?: (league_seasons_obj_rel_insert_input | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null)} - - -/** aggregate max on columns */ -export interface league_relegation_playoffs_max_fieldsGenqlSelection{ - created_at?: boolean | number - higher_division_id?: boolean | number - higher_slots?: boolean | number - id?: boolean | number - league_season_id?: boolean | number - lower_division_id?: boolean | number - resolved_at?: boolean | number - tournament_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "league_relegation_playoffs" */ -export interface league_relegation_playoffs_max_order_by {created_at?: (order_by | null),higher_division_id?: (order_by | null),higher_slots?: (order_by | null),id?: (order_by | null),league_season_id?: (order_by | null),lower_division_id?: (order_by | null),resolved_at?: (order_by | null),tournament_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface league_relegation_playoffs_min_fieldsGenqlSelection{ - created_at?: boolean | number - higher_division_id?: boolean | number - higher_slots?: boolean | number - id?: boolean | number - league_season_id?: boolean | number - lower_division_id?: boolean | number - resolved_at?: boolean | number - tournament_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "league_relegation_playoffs" */ -export interface league_relegation_playoffs_min_order_by {created_at?: (order_by | null),higher_division_id?: (order_by | null),higher_slots?: (order_by | null),id?: (order_by | null),league_season_id?: (order_by | null),lower_division_id?: (order_by | null),resolved_at?: (order_by | null),tournament_id?: (order_by | null)} - - -/** response of any mutation on the table "league_relegation_playoffs" */ -export interface league_relegation_playoffs_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: league_relegation_playoffsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "league_relegation_playoffs" */ -export interface league_relegation_playoffs_on_conflict {constraint: league_relegation_playoffs_constraint,update_columns?: league_relegation_playoffs_update_column[],where?: (league_relegation_playoffs_bool_exp | null)} - - -/** Ordering options when selecting data from "league_relegation_playoffs". */ -export interface league_relegation_playoffs_order_by {created_at?: (order_by | null),higher_division?: (league_divisions_order_by | null),higher_division_id?: (order_by | null),higher_slots?: (order_by | null),id?: (order_by | null),league_season_id?: (order_by | null),lower_division?: (league_divisions_order_by | null),lower_division_id?: (order_by | null),resolved_at?: (order_by | null),season?: (league_seasons_order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null)} - - -/** primary key columns input for table: league_relegation_playoffs */ -export interface league_relegation_playoffs_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "league_relegation_playoffs" */ -export interface league_relegation_playoffs_set_input {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)} - - -/** aggregate stddev on columns */ -export interface league_relegation_playoffs_stddev_fieldsGenqlSelection{ - higher_slots?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "league_relegation_playoffs" */ -export interface league_relegation_playoffs_stddev_order_by {higher_slots?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface league_relegation_playoffs_stddev_pop_fieldsGenqlSelection{ - higher_slots?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "league_relegation_playoffs" */ -export interface league_relegation_playoffs_stddev_pop_order_by {higher_slots?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface league_relegation_playoffs_stddev_samp_fieldsGenqlSelection{ - higher_slots?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "league_relegation_playoffs" */ -export interface league_relegation_playoffs_stddev_samp_order_by {higher_slots?: (order_by | null)} - - -/** Streaming cursor of the table "league_relegation_playoffs" */ -export interface league_relegation_playoffs_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: league_relegation_playoffs_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface league_relegation_playoffs_stream_cursor_value_input {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)} - - -/** aggregate sum on columns */ -export interface league_relegation_playoffs_sum_fieldsGenqlSelection{ - higher_slots?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "league_relegation_playoffs" */ -export interface league_relegation_playoffs_sum_order_by {higher_slots?: (order_by | null)} - -export interface league_relegation_playoffs_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (league_relegation_playoffs_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (league_relegation_playoffs_set_input | null), -/** filter the rows which have to be updated */ -where: league_relegation_playoffs_bool_exp} - - -/** aggregate var_pop on columns */ -export interface league_relegation_playoffs_var_pop_fieldsGenqlSelection{ - higher_slots?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "league_relegation_playoffs" */ -export interface league_relegation_playoffs_var_pop_order_by {higher_slots?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface league_relegation_playoffs_var_samp_fieldsGenqlSelection{ - higher_slots?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "league_relegation_playoffs" */ -export interface league_relegation_playoffs_var_samp_order_by {higher_slots?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface league_relegation_playoffs_variance_fieldsGenqlSelection{ - higher_slots?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "league_relegation_playoffs" */ -export interface league_relegation_playoffs_variance_order_by {higher_slots?: (order_by | null)} - - -/** columns and relationships of "league_scheduling_proposals" */ -export interface league_scheduling_proposalsGenqlSelection{ - /** An object relationship */ - bracket?: tournament_bracketsGenqlSelection - created_at?: boolean | number - /** An object relationship */ - e_proposal_status?: e_league_proposal_statusesGenqlSelection - id?: boolean | number - message?: boolean | number - /** An object relationship */ - proposed_by?: playersGenqlSelection - proposed_by_league_team_season_id?: boolean | number - proposed_by_steam_id?: boolean | number - proposed_time?: boolean | number - /** An object relationship */ - responded_by?: playersGenqlSelection - responded_by_steam_id?: boolean | number - status?: boolean | number - /** An object relationship */ - team_season?: league_team_seasonsGenqlSelection - tournament_bracket_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "league_scheduling_proposals" */ -export interface league_scheduling_proposals_aggregateGenqlSelection{ - aggregate?: league_scheduling_proposals_aggregate_fieldsGenqlSelection - nodes?: league_scheduling_proposalsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface league_scheduling_proposals_aggregate_bool_exp {count?: (league_scheduling_proposals_aggregate_bool_exp_count | null)} - -export interface league_scheduling_proposals_aggregate_bool_exp_count {arguments?: (league_scheduling_proposals_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (league_scheduling_proposals_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "league_scheduling_proposals" */ -export interface league_scheduling_proposals_aggregate_fieldsGenqlSelection{ - avg?: league_scheduling_proposals_avg_fieldsGenqlSelection - count?: { __args: {columns?: (league_scheduling_proposals_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: league_scheduling_proposals_max_fieldsGenqlSelection - min?: league_scheduling_proposals_min_fieldsGenqlSelection - stddev?: league_scheduling_proposals_stddev_fieldsGenqlSelection - stddev_pop?: league_scheduling_proposals_stddev_pop_fieldsGenqlSelection - stddev_samp?: league_scheduling_proposals_stddev_samp_fieldsGenqlSelection - sum?: league_scheduling_proposals_sum_fieldsGenqlSelection - var_pop?: league_scheduling_proposals_var_pop_fieldsGenqlSelection - var_samp?: league_scheduling_proposals_var_samp_fieldsGenqlSelection - variance?: league_scheduling_proposals_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "league_scheduling_proposals" */ -export interface league_scheduling_proposals_aggregate_order_by {avg?: (league_scheduling_proposals_avg_order_by | null),count?: (order_by | null),max?: (league_scheduling_proposals_max_order_by | null),min?: (league_scheduling_proposals_min_order_by | null),stddev?: (league_scheduling_proposals_stddev_order_by | null),stddev_pop?: (league_scheduling_proposals_stddev_pop_order_by | null),stddev_samp?: (league_scheduling_proposals_stddev_samp_order_by | null),sum?: (league_scheduling_proposals_sum_order_by | null),var_pop?: (league_scheduling_proposals_var_pop_order_by | null),var_samp?: (league_scheduling_proposals_var_samp_order_by | null),variance?: (league_scheduling_proposals_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "league_scheduling_proposals" */ -export interface league_scheduling_proposals_arr_rel_insert_input {data: league_scheduling_proposals_insert_input[], -/** upsert condition */ -on_conflict?: (league_scheduling_proposals_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface league_scheduling_proposals_avg_fieldsGenqlSelection{ - proposed_by_steam_id?: boolean | number - responded_by_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "league_scheduling_proposals" */ -export interface league_scheduling_proposals_avg_order_by {proposed_by_steam_id?: (order_by | null),responded_by_steam_id?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "league_scheduling_proposals". All fields are combined with a logical 'AND'. */ -export interface league_scheduling_proposals_bool_exp {_and?: (league_scheduling_proposals_bool_exp[] | null),_not?: (league_scheduling_proposals_bool_exp | null),_or?: (league_scheduling_proposals_bool_exp[] | null),bracket?: (tournament_brackets_bool_exp | null),created_at?: (timestamptz_comparison_exp | null),e_proposal_status?: (e_league_proposal_statuses_bool_exp | null),id?: (uuid_comparison_exp | null),message?: (String_comparison_exp | null),proposed_by?: (players_bool_exp | null),proposed_by_league_team_season_id?: (uuid_comparison_exp | null),proposed_by_steam_id?: (bigint_comparison_exp | null),proposed_time?: (timestamptz_comparison_exp | null),responded_by?: (players_bool_exp | null),responded_by_steam_id?: (bigint_comparison_exp | null),status?: (e_league_proposal_statuses_enum_comparison_exp | null),team_season?: (league_team_seasons_bool_exp | null),tournament_bracket_id?: (uuid_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "league_scheduling_proposals" */ -export interface league_scheduling_proposals_inc_input {proposed_by_steam_id?: (Scalars['bigint'] | null),responded_by_steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "league_scheduling_proposals" */ -export interface league_scheduling_proposals_insert_input {bracket?: (tournament_brackets_obj_rel_insert_input | null),created_at?: (Scalars['timestamptz'] | null),e_proposal_status?: (e_league_proposal_statuses_obj_rel_insert_input | null),id?: (Scalars['uuid'] | null),message?: (Scalars['String'] | null),proposed_by?: (players_obj_rel_insert_input | null),proposed_by_league_team_season_id?: (Scalars['uuid'] | null),proposed_by_steam_id?: (Scalars['bigint'] | null),proposed_time?: (Scalars['timestamptz'] | null),responded_by?: (players_obj_rel_insert_input | null),responded_by_steam_id?: (Scalars['bigint'] | null),status?: (e_league_proposal_statuses_enum | null),team_season?: (league_team_seasons_obj_rel_insert_input | null),tournament_bracket_id?: (Scalars['uuid'] | null)} - - -/** aggregate max on columns */ -export interface league_scheduling_proposals_max_fieldsGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - message?: boolean | number - proposed_by_league_team_season_id?: boolean | number - proposed_by_steam_id?: boolean | number - proposed_time?: boolean | number - responded_by_steam_id?: boolean | number - tournament_bracket_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "league_scheduling_proposals" */ -export interface league_scheduling_proposals_max_order_by {created_at?: (order_by | null),id?: (order_by | null),message?: (order_by | null),proposed_by_league_team_season_id?: (order_by | null),proposed_by_steam_id?: (order_by | null),proposed_time?: (order_by | null),responded_by_steam_id?: (order_by | null),tournament_bracket_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface league_scheduling_proposals_min_fieldsGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - message?: boolean | number - proposed_by_league_team_season_id?: boolean | number - proposed_by_steam_id?: boolean | number - proposed_time?: boolean | number - responded_by_steam_id?: boolean | number - tournament_bracket_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "league_scheduling_proposals" */ -export interface league_scheduling_proposals_min_order_by {created_at?: (order_by | null),id?: (order_by | null),message?: (order_by | null),proposed_by_league_team_season_id?: (order_by | null),proposed_by_steam_id?: (order_by | null),proposed_time?: (order_by | null),responded_by_steam_id?: (order_by | null),tournament_bracket_id?: (order_by | null)} - - -/** response of any mutation on the table "league_scheduling_proposals" */ -export interface league_scheduling_proposals_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: league_scheduling_proposalsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "league_scheduling_proposals" */ -export interface league_scheduling_proposals_on_conflict {constraint: league_scheduling_proposals_constraint,update_columns?: league_scheduling_proposals_update_column[],where?: (league_scheduling_proposals_bool_exp | null)} - - -/** Ordering options when selecting data from "league_scheduling_proposals". */ -export interface league_scheduling_proposals_order_by {bracket?: (tournament_brackets_order_by | null),created_at?: (order_by | null),e_proposal_status?: (e_league_proposal_statuses_order_by | null),id?: (order_by | null),message?: (order_by | null),proposed_by?: (players_order_by | null),proposed_by_league_team_season_id?: (order_by | null),proposed_by_steam_id?: (order_by | null),proposed_time?: (order_by | null),responded_by?: (players_order_by | null),responded_by_steam_id?: (order_by | null),status?: (order_by | null),team_season?: (league_team_seasons_order_by | null),tournament_bracket_id?: (order_by | null)} - - -/** primary key columns input for table: league_scheduling_proposals */ -export interface league_scheduling_proposals_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "league_scheduling_proposals" */ -export interface league_scheduling_proposals_set_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),message?: (Scalars['String'] | null),proposed_by_league_team_season_id?: (Scalars['uuid'] | null),proposed_by_steam_id?: (Scalars['bigint'] | null),proposed_time?: (Scalars['timestamptz'] | null),responded_by_steam_id?: (Scalars['bigint'] | null),status?: (e_league_proposal_statuses_enum | null),tournament_bracket_id?: (Scalars['uuid'] | null)} - - -/** aggregate stddev on columns */ -export interface league_scheduling_proposals_stddev_fieldsGenqlSelection{ - proposed_by_steam_id?: boolean | number - responded_by_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "league_scheduling_proposals" */ -export interface league_scheduling_proposals_stddev_order_by {proposed_by_steam_id?: (order_by | null),responded_by_steam_id?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface league_scheduling_proposals_stddev_pop_fieldsGenqlSelection{ - proposed_by_steam_id?: boolean | number - responded_by_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "league_scheduling_proposals" */ -export interface league_scheduling_proposals_stddev_pop_order_by {proposed_by_steam_id?: (order_by | null),responded_by_steam_id?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface league_scheduling_proposals_stddev_samp_fieldsGenqlSelection{ - proposed_by_steam_id?: boolean | number - responded_by_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "league_scheduling_proposals" */ -export interface league_scheduling_proposals_stddev_samp_order_by {proposed_by_steam_id?: (order_by | null),responded_by_steam_id?: (order_by | null)} - - -/** Streaming cursor of the table "league_scheduling_proposals" */ -export interface league_scheduling_proposals_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: league_scheduling_proposals_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface league_scheduling_proposals_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),message?: (Scalars['String'] | null),proposed_by_league_team_season_id?: (Scalars['uuid'] | null),proposed_by_steam_id?: (Scalars['bigint'] | null),proposed_time?: (Scalars['timestamptz'] | null),responded_by_steam_id?: (Scalars['bigint'] | null),status?: (e_league_proposal_statuses_enum | null),tournament_bracket_id?: (Scalars['uuid'] | null)} - - -/** aggregate sum on columns */ -export interface league_scheduling_proposals_sum_fieldsGenqlSelection{ - proposed_by_steam_id?: boolean | number - responded_by_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "league_scheduling_proposals" */ -export interface league_scheduling_proposals_sum_order_by {proposed_by_steam_id?: (order_by | null),responded_by_steam_id?: (order_by | null)} - -export interface league_scheduling_proposals_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (league_scheduling_proposals_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (league_scheduling_proposals_set_input | null), -/** filter the rows which have to be updated */ -where: league_scheduling_proposals_bool_exp} - - -/** aggregate var_pop on columns */ -export interface league_scheduling_proposals_var_pop_fieldsGenqlSelection{ - proposed_by_steam_id?: boolean | number - responded_by_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "league_scheduling_proposals" */ -export interface league_scheduling_proposals_var_pop_order_by {proposed_by_steam_id?: (order_by | null),responded_by_steam_id?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface league_scheduling_proposals_var_samp_fieldsGenqlSelection{ - proposed_by_steam_id?: boolean | number - responded_by_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "league_scheduling_proposals" */ -export interface league_scheduling_proposals_var_samp_order_by {proposed_by_steam_id?: (order_by | null),responded_by_steam_id?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface league_scheduling_proposals_variance_fieldsGenqlSelection{ - proposed_by_steam_id?: boolean | number - responded_by_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "league_scheduling_proposals" */ -export interface league_scheduling_proposals_variance_order_by {proposed_by_steam_id?: (order_by | null),responded_by_steam_id?: (order_by | null)} - - -/** columns and relationships of "league_season_divisions" */ -export interface league_season_divisionsGenqlSelection{ - created_at?: boolean | number - /** An object relationship */ - division?: league_divisionsGenqlSelection - id?: boolean | number - league_division_id?: boolean | number - league_season_id?: boolean | number - /** An object relationship */ - season?: league_seasonsGenqlSelection - /** An array relationship */ - standings?: (v_league_division_standingsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_league_division_standings_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_league_division_standings_order_by[] | null), - /** filter the rows returned */ - where?: (v_league_division_standings_bool_exp | null)} }) - /** An aggregate relationship */ - standings_aggregate?: (v_league_division_standings_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_league_division_standings_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_league_division_standings_order_by[] | null), - /** filter the rows returned */ - where?: (v_league_division_standings_bool_exp | null)} }) - /** An object relationship */ - tournament?: tournamentsGenqlSelection - tournament_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "league_season_divisions" */ -export interface league_season_divisions_aggregateGenqlSelection{ - aggregate?: league_season_divisions_aggregate_fieldsGenqlSelection - nodes?: league_season_divisionsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface league_season_divisions_aggregate_bool_exp {count?: (league_season_divisions_aggregate_bool_exp_count | null)} - -export interface league_season_divisions_aggregate_bool_exp_count {arguments?: (league_season_divisions_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (league_season_divisions_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "league_season_divisions" */ -export interface league_season_divisions_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (league_season_divisions_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: league_season_divisions_max_fieldsGenqlSelection - min?: league_season_divisions_min_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "league_season_divisions" */ -export interface league_season_divisions_aggregate_order_by {count?: (order_by | null),max?: (league_season_divisions_max_order_by | null),min?: (league_season_divisions_min_order_by | null)} - - -/** input type for inserting array relation for remote table "league_season_divisions" */ -export interface league_season_divisions_arr_rel_insert_input {data: league_season_divisions_insert_input[], -/** upsert condition */ -on_conflict?: (league_season_divisions_on_conflict | null)} - - -/** Boolean expression to filter rows from the table "league_season_divisions". All fields are combined with a logical 'AND'. */ -export interface league_season_divisions_bool_exp {_and?: (league_season_divisions_bool_exp[] | null),_not?: (league_season_divisions_bool_exp | null),_or?: (league_season_divisions_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),division?: (league_divisions_bool_exp | null),id?: (uuid_comparison_exp | null),league_division_id?: (uuid_comparison_exp | null),league_season_id?: (uuid_comparison_exp | null),season?: (league_seasons_bool_exp | null),standings?: (v_league_division_standings_bool_exp | null),standings_aggregate?: (v_league_division_standings_aggregate_bool_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null)} - - -/** input type for inserting data into table "league_season_divisions" */ -export interface league_season_divisions_insert_input {created_at?: (Scalars['timestamptz'] | null),division?: (league_divisions_obj_rel_insert_input | null),id?: (Scalars['uuid'] | null),league_division_id?: (Scalars['uuid'] | null),league_season_id?: (Scalars['uuid'] | null),season?: (league_seasons_obj_rel_insert_input | null),standings?: (v_league_division_standings_arr_rel_insert_input | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null)} - - -/** aggregate max on columns */ -export interface league_season_divisions_max_fieldsGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - league_division_id?: boolean | number - league_season_id?: boolean | number - tournament_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "league_season_divisions" */ -export interface league_season_divisions_max_order_by {created_at?: (order_by | null),id?: (order_by | null),league_division_id?: (order_by | null),league_season_id?: (order_by | null),tournament_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface league_season_divisions_min_fieldsGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - league_division_id?: boolean | number - league_season_id?: boolean | number - tournament_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "league_season_divisions" */ -export interface league_season_divisions_min_order_by {created_at?: (order_by | null),id?: (order_by | null),league_division_id?: (order_by | null),league_season_id?: (order_by | null),tournament_id?: (order_by | null)} - - -/** response of any mutation on the table "league_season_divisions" */ -export interface league_season_divisions_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: league_season_divisionsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "league_season_divisions" */ -export interface league_season_divisions_obj_rel_insert_input {data: league_season_divisions_insert_input, -/** upsert condition */ -on_conflict?: (league_season_divisions_on_conflict | null)} - - -/** on_conflict condition type for table "league_season_divisions" */ -export interface league_season_divisions_on_conflict {constraint: league_season_divisions_constraint,update_columns?: league_season_divisions_update_column[],where?: (league_season_divisions_bool_exp | null)} - - -/** Ordering options when selecting data from "league_season_divisions". */ -export interface league_season_divisions_order_by {created_at?: (order_by | null),division?: (league_divisions_order_by | null),id?: (order_by | null),league_division_id?: (order_by | null),league_season_id?: (order_by | null),season?: (league_seasons_order_by | null),standings_aggregate?: (v_league_division_standings_aggregate_order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null)} - - -/** primary key columns input for table: league_season_divisions */ -export interface league_season_divisions_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "league_season_divisions" */ -export interface league_season_divisions_set_input {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)} - - -/** Streaming cursor of the table "league_season_divisions" */ -export interface league_season_divisions_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: league_season_divisions_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface league_season_divisions_stream_cursor_value_input {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)} - -export interface league_season_divisions_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (league_season_divisions_set_input | null), -/** filter the rows which have to be updated */ -where: league_season_divisions_bool_exp} - - -/** columns and relationships of "league_seasons" */ -export interface league_seasonsGenqlSelection{ - auto_regular_season_format?: boolean | number - /** 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)} }) - /** A computed field, executes function "can_register_for_league_season" */ - can_register?: boolean | number - created_at?: boolean | number - created_by_steam_id?: boolean | number - default_best_of?: boolean | number - direct_promote_count?: boolean | number - direct_relegate_count?: boolean | number - /** An object relationship */ - e_league_season_status?: e_league_season_statusesGenqlSelection - games_per_week?: boolean | number - id?: boolean | number - /** A computed field, executes function "is_league_season_admin" */ - is_league_admin?: boolean | number - /** A computed field, executes function "league_season_is_roster_locked" */ - is_roster_locked?: boolean | number - match_options_id?: boolean | number - /** An array relationship */ - match_weeks?: (league_match_weeksGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_match_weeks_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_match_weeks_order_by[] | null), - /** filter the rows returned */ - where?: (league_match_weeks_bool_exp | null)} }) - /** An aggregate relationship */ - match_weeks_aggregate?: (league_match_weeks_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_match_weeks_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_match_weeks_order_by[] | null), - /** filter the rows returned */ - where?: (league_match_weeks_bool_exp | null)} }) - match_weeks_count?: boolean | number - max_roster_size?: boolean | number - min_roster_size?: boolean | number - /** An array relationship */ - movements?: (league_team_movementsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_team_movements_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_team_movements_order_by[] | null), - /** filter the rows returned */ - where?: (league_team_movements_bool_exp | null)} }) - /** An aggregate relationship */ - movements_aggregate?: (league_team_movements_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_team_movements_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_team_movements_order_by[] | null), - /** filter the rows returned */ - where?: (league_team_movements_bool_exp | null)} }) - /** A computed field, executes function "league_season_my_registration" */ - my_registration?: (league_team_seasonsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_team_seasons_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_team_seasons_order_by[] | null), - /** filter the rows returned */ - where?: (league_team_seasons_bool_exp | null)} }) - name?: boolean | number - /** An object relationship */ - options?: match_optionsGenqlSelection - /** An array relationship */ - player_stats?: (v_league_season_player_statsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_league_season_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_league_season_player_stats_order_by[] | null), - /** filter the rows returned */ - where?: (v_league_season_player_stats_bool_exp | null)} }) - /** An aggregate relationship */ - player_stats_aggregate?: (v_league_season_player_stats_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_league_season_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_league_season_player_stats_order_by[] | null), - /** filter the rows returned */ - where?: (v_league_season_player_stats_bool_exp | null)} }) - playoff_best_of?: boolean | number - playoff_round_best_of?: { __args: { - /** JSON select path */ - path?: (Scalars['String'] | null)} } | boolean | number - playoff_seats?: boolean | number - playoff_stage_type?: boolean | number - playoff_third_place_match?: boolean | number - promote_count?: boolean | number - regular_season_stage_type?: boolean | number - relegate_count?: boolean | number - relegation_down_count?: boolean | number - /** An array relationship */ - relegation_playoffs?: (league_relegation_playoffsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_relegation_playoffs_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_relegation_playoffs_order_by[] | null), - /** filter the rows returned */ - where?: (league_relegation_playoffs_bool_exp | null)} }) - /** An aggregate relationship */ - relegation_playoffs_aggregate?: (league_relegation_playoffs_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_relegation_playoffs_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_relegation_playoffs_order_by[] | null), - /** filter the rows returned */ - where?: (league_relegation_playoffs_bool_exp | null)} }) - relegation_up_count?: boolean | number - roster_lock_at?: boolean | number - /** An array relationship */ - season_divisions?: (league_season_divisionsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_season_divisions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_season_divisions_order_by[] | null), - /** filter the rows returned */ - where?: (league_season_divisions_bool_exp | null)} }) - /** An aggregate relationship */ - season_divisions_aggregate?: (league_season_divisions_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_season_divisions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_season_divisions_order_by[] | null), - /** filter the rows returned */ - where?: (league_season_divisions_bool_exp | null)} }) - season_number?: boolean | number - signup_closes_at?: boolean | number - signup_opens_at?: boolean | number - /** An array relationship */ - standings?: (v_league_division_standingsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_league_division_standings_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_league_division_standings_order_by[] | null), - /** filter the rows returned */ - where?: (v_league_division_standings_bool_exp | null)} }) - /** An aggregate relationship */ - standings_aggregate?: (v_league_division_standings_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_league_division_standings_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_league_division_standings_order_by[] | null), - /** filter the rows returned */ - where?: (v_league_division_standings_bool_exp | null)} }) - starts_at?: boolean | number - status?: boolean | number - /** An array relationship */ - team_seasons?: (league_team_seasonsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_team_seasons_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_team_seasons_order_by[] | null), - /** filter the rows returned */ - where?: (league_team_seasons_bool_exp | null)} }) - /** An aggregate relationship */ - team_seasons_aggregate?: (league_team_seasons_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_team_seasons_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_team_seasons_order_by[] | null), - /** filter the rows returned */ - where?: (league_team_seasons_bool_exp | null)} }) - week_best_of?: { __args: { - /** JSON select path */ - path?: (Scalars['String'] | null)} } | boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "league_seasons" */ -export interface league_seasons_aggregateGenqlSelection{ - aggregate?: league_seasons_aggregate_fieldsGenqlSelection - nodes?: league_seasonsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "league_seasons" */ -export interface league_seasons_aggregate_fieldsGenqlSelection{ - avg?: league_seasons_avg_fieldsGenqlSelection - count?: { __args: {columns?: (league_seasons_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: league_seasons_max_fieldsGenqlSelection - min?: league_seasons_min_fieldsGenqlSelection - stddev?: league_seasons_stddev_fieldsGenqlSelection - stddev_pop?: league_seasons_stddev_pop_fieldsGenqlSelection - stddev_samp?: league_seasons_stddev_samp_fieldsGenqlSelection - sum?: league_seasons_sum_fieldsGenqlSelection - var_pop?: league_seasons_var_pop_fieldsGenqlSelection - var_samp?: league_seasons_var_samp_fieldsGenqlSelection - variance?: league_seasons_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** append existing jsonb value of filtered columns with new jsonb value */ -export interface league_seasons_append_input {playoff_round_best_of?: (Scalars['jsonb'] | null),week_best_of?: (Scalars['jsonb'] | null)} - - -/** aggregate avg on columns */ -export interface league_seasons_avg_fieldsGenqlSelection{ - created_by_steam_id?: boolean | number - default_best_of?: boolean | number - direct_promote_count?: boolean | number - direct_relegate_count?: boolean | number - games_per_week?: boolean | number - match_weeks_count?: boolean | number - max_roster_size?: boolean | number - min_roster_size?: boolean | number - playoff_best_of?: boolean | number - playoff_seats?: boolean | number - promote_count?: boolean | number - relegate_count?: boolean | number - relegation_down_count?: boolean | number - relegation_up_count?: boolean | number - season_number?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "league_seasons". All fields are combined with a logical 'AND'. */ -export interface league_seasons_bool_exp {_and?: (league_seasons_bool_exp[] | null),_not?: (league_seasons_bool_exp | null),_or?: (league_seasons_bool_exp[] | null),auto_regular_season_format?: (Boolean_comparison_exp | null),awards?: (award_recipients_bool_exp | null),awards_aggregate?: (award_recipients_aggregate_bool_exp | null),can_register?: (Boolean_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),created_by_steam_id?: (bigint_comparison_exp | null),default_best_of?: (Int_comparison_exp | null),direct_promote_count?: (Int_comparison_exp | null),direct_relegate_count?: (Int_comparison_exp | null),e_league_season_status?: (e_league_season_statuses_bool_exp | null),games_per_week?: (Int_comparison_exp | null),id?: (uuid_comparison_exp | null),is_league_admin?: (Boolean_comparison_exp | null),is_roster_locked?: (Boolean_comparison_exp | null),match_options_id?: (uuid_comparison_exp | null),match_weeks?: (league_match_weeks_bool_exp | null),match_weeks_aggregate?: (league_match_weeks_aggregate_bool_exp | null),match_weeks_count?: (Int_comparison_exp | null),max_roster_size?: (Int_comparison_exp | null),min_roster_size?: (Int_comparison_exp | null),movements?: (league_team_movements_bool_exp | null),movements_aggregate?: (league_team_movements_aggregate_bool_exp | null),my_registration?: (league_team_seasons_bool_exp | null),name?: (String_comparison_exp | null),options?: (match_options_bool_exp | null),player_stats?: (v_league_season_player_stats_bool_exp | null),player_stats_aggregate?: (v_league_season_player_stats_aggregate_bool_exp | null),playoff_best_of?: (Int_comparison_exp | null),playoff_round_best_of?: (jsonb_comparison_exp | null),playoff_seats?: (Int_comparison_exp | null),playoff_stage_type?: (e_tournament_stage_types_enum_comparison_exp | null),playoff_third_place_match?: (Boolean_comparison_exp | null),promote_count?: (Int_comparison_exp | null),regular_season_stage_type?: (e_tournament_stage_types_enum_comparison_exp | null),relegate_count?: (Int_comparison_exp | null),relegation_down_count?: (Int_comparison_exp | null),relegation_playoffs?: (league_relegation_playoffs_bool_exp | null),relegation_playoffs_aggregate?: (league_relegation_playoffs_aggregate_bool_exp | null),relegation_up_count?: (Int_comparison_exp | null),roster_lock_at?: (timestamptz_comparison_exp | null),season_divisions?: (league_season_divisions_bool_exp | null),season_divisions_aggregate?: (league_season_divisions_aggregate_bool_exp | null),season_number?: (Int_comparison_exp | null),signup_closes_at?: (timestamptz_comparison_exp | null),signup_opens_at?: (timestamptz_comparison_exp | null),standings?: (v_league_division_standings_bool_exp | null),standings_aggregate?: (v_league_division_standings_aggregate_bool_exp | null),starts_at?: (timestamptz_comparison_exp | null),status?: (e_league_season_statuses_enum_comparison_exp | null),team_seasons?: (league_team_seasons_bool_exp | null),team_seasons_aggregate?: (league_team_seasons_aggregate_bool_exp | null),week_best_of?: (jsonb_comparison_exp | null)} - - -/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ -export interface league_seasons_delete_at_path_input {playoff_round_best_of?: (Scalars['String'][] | null),week_best_of?: (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 league_seasons_delete_elem_input {playoff_round_best_of?: (Scalars['Int'] | null),week_best_of?: (Scalars['Int'] | null)} - - -/** delete key/value pair or string element. key/value pairs are matched based on their key value */ -export interface league_seasons_delete_key_input {playoff_round_best_of?: (Scalars['String'] | null),week_best_of?: (Scalars['String'] | null)} - - -/** input type for incrementing numeric columns in table "league_seasons" */ -export interface league_seasons_inc_input {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)} - - -/** input type for inserting data into table "league_seasons" */ -export interface league_seasons_insert_input {auto_regular_season_format?: (Scalars['Boolean'] | null),awards?: (award_recipients_arr_rel_insert_input | null),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),e_league_season_status?: (e_league_season_statuses_obj_rel_insert_input | null),games_per_week?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),match_weeks?: (league_match_weeks_arr_rel_insert_input | null),match_weeks_count?: (Scalars['Int'] | null),max_roster_size?: (Scalars['Int'] | null),min_roster_size?: (Scalars['Int'] | null),movements?: (league_team_movements_arr_rel_insert_input | null),name?: (Scalars['String'] | null),options?: (match_options_obj_rel_insert_input | null),player_stats?: (v_league_season_player_stats_arr_rel_insert_input | null),playoff_best_of?: (Scalars['Int'] | null),playoff_round_best_of?: (Scalars['jsonb'] | null),playoff_seats?: (Scalars['Int'] | null),playoff_stage_type?: (e_tournament_stage_types_enum | null),playoff_third_place_match?: (Scalars['Boolean'] | null),promote_count?: (Scalars['Int'] | null),regular_season_stage_type?: (e_tournament_stage_types_enum | null),relegate_count?: (Scalars['Int'] | null),relegation_down_count?: (Scalars['Int'] | null),relegation_playoffs?: (league_relegation_playoffs_arr_rel_insert_input | null),relegation_up_count?: (Scalars['Int'] | null),roster_lock_at?: (Scalars['timestamptz'] | null),season_divisions?: (league_season_divisions_arr_rel_insert_input | null),season_number?: (Scalars['Int'] | null),signup_closes_at?: (Scalars['timestamptz'] | null),signup_opens_at?: (Scalars['timestamptz'] | null),standings?: (v_league_division_standings_arr_rel_insert_input | null),starts_at?: (Scalars['timestamptz'] | null),status?: (e_league_season_statuses_enum | null),team_seasons?: (league_team_seasons_arr_rel_insert_input | null),week_best_of?: (Scalars['jsonb'] | null)} - - -/** aggregate max on columns */ -export interface league_seasons_max_fieldsGenqlSelection{ - created_at?: boolean | number - created_by_steam_id?: boolean | number - default_best_of?: boolean | number - direct_promote_count?: boolean | number - direct_relegate_count?: boolean | number - games_per_week?: boolean | number - id?: boolean | number - match_options_id?: boolean | number - match_weeks_count?: boolean | number - max_roster_size?: boolean | number - min_roster_size?: boolean | number - name?: boolean | number - playoff_best_of?: boolean | number - playoff_seats?: boolean | number - promote_count?: boolean | number - relegate_count?: boolean | number - relegation_down_count?: boolean | number - relegation_up_count?: boolean | number - roster_lock_at?: boolean | number - season_number?: boolean | number - signup_closes_at?: boolean | number - signup_opens_at?: boolean | number - starts_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface league_seasons_min_fieldsGenqlSelection{ - created_at?: boolean | number - created_by_steam_id?: boolean | number - default_best_of?: boolean | number - direct_promote_count?: boolean | number - direct_relegate_count?: boolean | number - games_per_week?: boolean | number - id?: boolean | number - match_options_id?: boolean | number - match_weeks_count?: boolean | number - max_roster_size?: boolean | number - min_roster_size?: boolean | number - name?: boolean | number - playoff_best_of?: boolean | number - playoff_seats?: boolean | number - promote_count?: boolean | number - relegate_count?: boolean | number - relegation_down_count?: boolean | number - relegation_up_count?: boolean | number - roster_lock_at?: boolean | number - season_number?: boolean | number - signup_closes_at?: boolean | number - signup_opens_at?: boolean | number - starts_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "league_seasons" */ -export interface league_seasons_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: league_seasonsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "league_seasons" */ -export interface league_seasons_obj_rel_insert_input {data: league_seasons_insert_input, -/** upsert condition */ -on_conflict?: (league_seasons_on_conflict | null)} - - -/** on_conflict condition type for table "league_seasons" */ -export interface league_seasons_on_conflict {constraint: league_seasons_constraint,update_columns?: league_seasons_update_column[],where?: (league_seasons_bool_exp | null)} - - -/** Ordering options when selecting data from "league_seasons". */ -export interface league_seasons_order_by {auto_regular_season_format?: (order_by | null),awards_aggregate?: (award_recipients_aggregate_order_by | null),can_register?: (order_by | null),created_at?: (order_by | null),created_by_steam_id?: (order_by | null),default_best_of?: (order_by | null),direct_promote_count?: (order_by | null),direct_relegate_count?: (order_by | null),e_league_season_status?: (e_league_season_statuses_order_by | null),games_per_week?: (order_by | null),id?: (order_by | null),is_league_admin?: (order_by | null),is_roster_locked?: (order_by | null),match_options_id?: (order_by | null),match_weeks_aggregate?: (league_match_weeks_aggregate_order_by | null),match_weeks_count?: (order_by | null),max_roster_size?: (order_by | null),min_roster_size?: (order_by | null),movements_aggregate?: (league_team_movements_aggregate_order_by | null),my_registration_aggregate?: (league_team_seasons_aggregate_order_by | null),name?: (order_by | null),options?: (match_options_order_by | null),player_stats_aggregate?: (v_league_season_player_stats_aggregate_order_by | null),playoff_best_of?: (order_by | null),playoff_round_best_of?: (order_by | null),playoff_seats?: (order_by | null),playoff_stage_type?: (order_by | null),playoff_third_place_match?: (order_by | null),promote_count?: (order_by | null),regular_season_stage_type?: (order_by | null),relegate_count?: (order_by | null),relegation_down_count?: (order_by | null),relegation_playoffs_aggregate?: (league_relegation_playoffs_aggregate_order_by | null),relegation_up_count?: (order_by | null),roster_lock_at?: (order_by | null),season_divisions_aggregate?: (league_season_divisions_aggregate_order_by | null),season_number?: (order_by | null),signup_closes_at?: (order_by | null),signup_opens_at?: (order_by | null),standings_aggregate?: (v_league_division_standings_aggregate_order_by | null),starts_at?: (order_by | null),status?: (order_by | null),team_seasons_aggregate?: (league_team_seasons_aggregate_order_by | null),week_best_of?: (order_by | null)} - - -/** primary key columns input for table: league_seasons */ -export interface league_seasons_pk_columns_input {id: Scalars['uuid']} - - -/** prepend existing jsonb value of filtered columns with new jsonb value */ -export interface league_seasons_prepend_input {playoff_round_best_of?: (Scalars['jsonb'] | null),week_best_of?: (Scalars['jsonb'] | null)} - - -/** input type for updating data in table "league_seasons" */ -export interface league_seasons_set_input {auto_regular_season_format?: (Scalars['Boolean'] | null),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_round_best_of?: (Scalars['jsonb'] | null),playoff_seats?: (Scalars['Int'] | null),playoff_stage_type?: (e_tournament_stage_types_enum | null),playoff_third_place_match?: (Scalars['Boolean'] | null),promote_count?: (Scalars['Int'] | null),regular_season_stage_type?: (e_tournament_stage_types_enum | 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),status?: (e_league_season_statuses_enum | null),week_best_of?: (Scalars['jsonb'] | null)} - - -/** aggregate stddev on columns */ -export interface league_seasons_stddev_fieldsGenqlSelection{ - created_by_steam_id?: boolean | number - default_best_of?: boolean | number - direct_promote_count?: boolean | number - direct_relegate_count?: boolean | number - games_per_week?: boolean | number - match_weeks_count?: boolean | number - max_roster_size?: boolean | number - min_roster_size?: boolean | number - playoff_best_of?: boolean | number - playoff_seats?: boolean | number - promote_count?: boolean | number - relegate_count?: boolean | number - relegation_down_count?: boolean | number - relegation_up_count?: boolean | number - season_number?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface league_seasons_stddev_pop_fieldsGenqlSelection{ - created_by_steam_id?: boolean | number - default_best_of?: boolean | number - direct_promote_count?: boolean | number - direct_relegate_count?: boolean | number - games_per_week?: boolean | number - match_weeks_count?: boolean | number - max_roster_size?: boolean | number - min_roster_size?: boolean | number - playoff_best_of?: boolean | number - playoff_seats?: boolean | number - promote_count?: boolean | number - relegate_count?: boolean | number - relegation_down_count?: boolean | number - relegation_up_count?: boolean | number - season_number?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface league_seasons_stddev_samp_fieldsGenqlSelection{ - created_by_steam_id?: boolean | number - default_best_of?: boolean | number - direct_promote_count?: boolean | number - direct_relegate_count?: boolean | number - games_per_week?: boolean | number - match_weeks_count?: boolean | number - max_roster_size?: boolean | number - min_roster_size?: boolean | number - playoff_best_of?: boolean | number - playoff_seats?: boolean | number - promote_count?: boolean | number - relegate_count?: boolean | number - relegation_down_count?: boolean | number - relegation_up_count?: boolean | number - season_number?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "league_seasons" */ -export interface league_seasons_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: league_seasons_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface league_seasons_stream_cursor_value_input {auto_regular_season_format?: (Scalars['Boolean'] | null),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_round_best_of?: (Scalars['jsonb'] | null),playoff_seats?: (Scalars['Int'] | null),playoff_stage_type?: (e_tournament_stage_types_enum | null),playoff_third_place_match?: (Scalars['Boolean'] | null),promote_count?: (Scalars['Int'] | null),regular_season_stage_type?: (e_tournament_stage_types_enum | 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),status?: (e_league_season_statuses_enum | null),week_best_of?: (Scalars['jsonb'] | null)} - - -/** aggregate sum on columns */ -export interface league_seasons_sum_fieldsGenqlSelection{ - created_by_steam_id?: boolean | number - default_best_of?: boolean | number - direct_promote_count?: boolean | number - direct_relegate_count?: boolean | number - games_per_week?: boolean | number - match_weeks_count?: boolean | number - max_roster_size?: boolean | number - min_roster_size?: boolean | number - playoff_best_of?: boolean | number - playoff_seats?: boolean | number - promote_count?: boolean | number - relegate_count?: boolean | number - relegation_down_count?: boolean | number - relegation_up_count?: boolean | number - season_number?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface league_seasons_updates { -/** append existing jsonb value of filtered columns with new jsonb value */ -_append?: (league_seasons_append_input | null), -/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ -_delete_at_path?: (league_seasons_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?: (league_seasons_delete_elem_input | null), -/** delete key/value pair or string element. key/value pairs are matched based on their key value */ -_delete_key?: (league_seasons_delete_key_input | null), -/** increments the numeric columns with given value of the filtered values */ -_inc?: (league_seasons_inc_input | null), -/** prepend existing jsonb value of filtered columns with new jsonb value */ -_prepend?: (league_seasons_prepend_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (league_seasons_set_input | null), -/** filter the rows which have to be updated */ -where: league_seasons_bool_exp} - - -/** aggregate var_pop on columns */ -export interface league_seasons_var_pop_fieldsGenqlSelection{ - created_by_steam_id?: boolean | number - default_best_of?: boolean | number - direct_promote_count?: boolean | number - direct_relegate_count?: boolean | number - games_per_week?: boolean | number - match_weeks_count?: boolean | number - max_roster_size?: boolean | number - min_roster_size?: boolean | number - playoff_best_of?: boolean | number - playoff_seats?: boolean | number - promote_count?: boolean | number - relegate_count?: boolean | number - relegation_down_count?: boolean | number - relegation_up_count?: boolean | number - season_number?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface league_seasons_var_samp_fieldsGenqlSelection{ - created_by_steam_id?: boolean | number - default_best_of?: boolean | number - direct_promote_count?: boolean | number - direct_relegate_count?: boolean | number - games_per_week?: boolean | number - match_weeks_count?: boolean | number - max_roster_size?: boolean | number - min_roster_size?: boolean | number - playoff_best_of?: boolean | number - playoff_seats?: boolean | number - promote_count?: boolean | number - relegate_count?: boolean | number - relegation_down_count?: boolean | number - relegation_up_count?: boolean | number - season_number?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface league_seasons_variance_fieldsGenqlSelection{ - created_by_steam_id?: boolean | number - default_best_of?: boolean | number - direct_promote_count?: boolean | number - direct_relegate_count?: boolean | number - games_per_week?: boolean | number - match_weeks_count?: boolean | number - max_roster_size?: boolean | number - min_roster_size?: boolean | number - playoff_best_of?: boolean | number - playoff_seats?: boolean | number - promote_count?: boolean | number - relegate_count?: boolean | number - relegation_down_count?: boolean | number - relegation_up_count?: boolean | number - season_number?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "league_team_movements" */ -export interface league_team_movementsGenqlSelection{ - approved_at?: boolean | number - /** An object relationship */ - approved_by?: playersGenqlSelection - approved_by_steam_id?: boolean | number - /** An object relationship */ - computed_to_division?: league_divisionsGenqlSelection - computed_to_division_id?: boolean | number - created_at?: boolean | number - /** An object relationship */ - e_movement_type?: e_league_movement_typesGenqlSelection - final_rank?: boolean | number - /** An object relationship */ - final_to_division?: league_divisionsGenqlSelection - final_to_division_id?: boolean | number - /** An object relationship */ - from_division?: league_divisionsGenqlSelection - from_division_id?: boolean | number - id?: boolean | number - league_season_id?: boolean | number - /** An object relationship */ - league_team?: league_teamsGenqlSelection - league_team_id?: boolean | number - /** An object relationship */ - season?: league_seasonsGenqlSelection - type?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "league_team_movements" */ -export interface league_team_movements_aggregateGenqlSelection{ - aggregate?: league_team_movements_aggregate_fieldsGenqlSelection - nodes?: league_team_movementsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface league_team_movements_aggregate_bool_exp {count?: (league_team_movements_aggregate_bool_exp_count | null)} - -export interface league_team_movements_aggregate_bool_exp_count {arguments?: (league_team_movements_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (league_team_movements_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "league_team_movements" */ -export interface league_team_movements_aggregate_fieldsGenqlSelection{ - avg?: league_team_movements_avg_fieldsGenqlSelection - count?: { __args: {columns?: (league_team_movements_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: league_team_movements_max_fieldsGenqlSelection - min?: league_team_movements_min_fieldsGenqlSelection - stddev?: league_team_movements_stddev_fieldsGenqlSelection - stddev_pop?: league_team_movements_stddev_pop_fieldsGenqlSelection - stddev_samp?: league_team_movements_stddev_samp_fieldsGenqlSelection - sum?: league_team_movements_sum_fieldsGenqlSelection - var_pop?: league_team_movements_var_pop_fieldsGenqlSelection - var_samp?: league_team_movements_var_samp_fieldsGenqlSelection - variance?: league_team_movements_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "league_team_movements" */ -export interface league_team_movements_aggregate_order_by {avg?: (league_team_movements_avg_order_by | null),count?: (order_by | null),max?: (league_team_movements_max_order_by | null),min?: (league_team_movements_min_order_by | null),stddev?: (league_team_movements_stddev_order_by | null),stddev_pop?: (league_team_movements_stddev_pop_order_by | null),stddev_samp?: (league_team_movements_stddev_samp_order_by | null),sum?: (league_team_movements_sum_order_by | null),var_pop?: (league_team_movements_var_pop_order_by | null),var_samp?: (league_team_movements_var_samp_order_by | null),variance?: (league_team_movements_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "league_team_movements" */ -export interface league_team_movements_arr_rel_insert_input {data: league_team_movements_insert_input[], -/** upsert condition */ -on_conflict?: (league_team_movements_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface league_team_movements_avg_fieldsGenqlSelection{ - approved_by_steam_id?: boolean | number - final_rank?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "league_team_movements" */ -export interface league_team_movements_avg_order_by {approved_by_steam_id?: (order_by | null),final_rank?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "league_team_movements". All fields are combined with a logical 'AND'. */ -export interface league_team_movements_bool_exp {_and?: (league_team_movements_bool_exp[] | null),_not?: (league_team_movements_bool_exp | null),_or?: (league_team_movements_bool_exp[] | null),approved_at?: (timestamptz_comparison_exp | null),approved_by?: (players_bool_exp | null),approved_by_steam_id?: (bigint_comparison_exp | null),computed_to_division?: (league_divisions_bool_exp | null),computed_to_division_id?: (uuid_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),e_movement_type?: (e_league_movement_types_bool_exp | null),final_rank?: (Int_comparison_exp | null),final_to_division?: (league_divisions_bool_exp | null),final_to_division_id?: (uuid_comparison_exp | null),from_division?: (league_divisions_bool_exp | null),from_division_id?: (uuid_comparison_exp | null),id?: (uuid_comparison_exp | null),league_season_id?: (uuid_comparison_exp | null),league_team?: (league_teams_bool_exp | null),league_team_id?: (uuid_comparison_exp | null),season?: (league_seasons_bool_exp | null),type?: (e_league_movement_types_enum_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "league_team_movements" */ -export interface league_team_movements_inc_input {approved_by_steam_id?: (Scalars['bigint'] | null),final_rank?: (Scalars['Int'] | null)} - - -/** input type for inserting data into table "league_team_movements" */ -export interface league_team_movements_insert_input {approved_at?: (Scalars['timestamptz'] | null),approved_by?: (players_obj_rel_insert_input | null),approved_by_steam_id?: (Scalars['bigint'] | null),computed_to_division?: (league_divisions_obj_rel_insert_input | null),computed_to_division_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),e_movement_type?: (e_league_movement_types_obj_rel_insert_input | null),final_rank?: (Scalars['Int'] | null),final_to_division?: (league_divisions_obj_rel_insert_input | null),final_to_division_id?: (Scalars['uuid'] | null),from_division?: (league_divisions_obj_rel_insert_input | null),from_division_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),league_season_id?: (Scalars['uuid'] | null),league_team?: (league_teams_obj_rel_insert_input | null),league_team_id?: (Scalars['uuid'] | null),season?: (league_seasons_obj_rel_insert_input | null),type?: (e_league_movement_types_enum | null)} - - -/** aggregate max on columns */ -export interface league_team_movements_max_fieldsGenqlSelection{ - approved_at?: boolean | number - approved_by_steam_id?: boolean | number - computed_to_division_id?: boolean | number - created_at?: boolean | number - final_rank?: boolean | number - final_to_division_id?: boolean | number - from_division_id?: boolean | number - id?: boolean | number - league_season_id?: boolean | number - league_team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "league_team_movements" */ -export interface league_team_movements_max_order_by {approved_at?: (order_by | null),approved_by_steam_id?: (order_by | null),computed_to_division_id?: (order_by | null),created_at?: (order_by | null),final_rank?: (order_by | null),final_to_division_id?: (order_by | null),from_division_id?: (order_by | null),id?: (order_by | null),league_season_id?: (order_by | null),league_team_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface league_team_movements_min_fieldsGenqlSelection{ - approved_at?: boolean | number - approved_by_steam_id?: boolean | number - computed_to_division_id?: boolean | number - created_at?: boolean | number - final_rank?: boolean | number - final_to_division_id?: boolean | number - from_division_id?: boolean | number - id?: boolean | number - league_season_id?: boolean | number - league_team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "league_team_movements" */ -export interface league_team_movements_min_order_by {approved_at?: (order_by | null),approved_by_steam_id?: (order_by | null),computed_to_division_id?: (order_by | null),created_at?: (order_by | null),final_rank?: (order_by | null),final_to_division_id?: (order_by | null),from_division_id?: (order_by | null),id?: (order_by | null),league_season_id?: (order_by | null),league_team_id?: (order_by | null)} - - -/** response of any mutation on the table "league_team_movements" */ -export interface league_team_movements_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: league_team_movementsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "league_team_movements" */ -export interface league_team_movements_on_conflict {constraint: league_team_movements_constraint,update_columns?: league_team_movements_update_column[],where?: (league_team_movements_bool_exp | null)} - - -/** Ordering options when selecting data from "league_team_movements". */ -export interface league_team_movements_order_by {approved_at?: (order_by | null),approved_by?: (players_order_by | null),approved_by_steam_id?: (order_by | null),computed_to_division?: (league_divisions_order_by | null),computed_to_division_id?: (order_by | null),created_at?: (order_by | null),e_movement_type?: (e_league_movement_types_order_by | null),final_rank?: (order_by | null),final_to_division?: (league_divisions_order_by | null),final_to_division_id?: (order_by | null),from_division?: (league_divisions_order_by | null),from_division_id?: (order_by | null),id?: (order_by | null),league_season_id?: (order_by | null),league_team?: (league_teams_order_by | null),league_team_id?: (order_by | null),season?: (league_seasons_order_by | null),type?: (order_by | null)} - - -/** primary key columns input for table: league_team_movements */ -export interface league_team_movements_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "league_team_movements" */ -export interface league_team_movements_set_input {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),type?: (e_league_movement_types_enum | null)} - - -/** aggregate stddev on columns */ -export interface league_team_movements_stddev_fieldsGenqlSelection{ - approved_by_steam_id?: boolean | number - final_rank?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "league_team_movements" */ -export interface league_team_movements_stddev_order_by {approved_by_steam_id?: (order_by | null),final_rank?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface league_team_movements_stddev_pop_fieldsGenqlSelection{ - approved_by_steam_id?: boolean | number - final_rank?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "league_team_movements" */ -export interface league_team_movements_stddev_pop_order_by {approved_by_steam_id?: (order_by | null),final_rank?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface league_team_movements_stddev_samp_fieldsGenqlSelection{ - approved_by_steam_id?: boolean | number - final_rank?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "league_team_movements" */ -export interface league_team_movements_stddev_samp_order_by {approved_by_steam_id?: (order_by | null),final_rank?: (order_by | null)} - - -/** Streaming cursor of the table "league_team_movements" */ -export interface league_team_movements_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: league_team_movements_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface league_team_movements_stream_cursor_value_input {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),type?: (e_league_movement_types_enum | null)} - - -/** aggregate sum on columns */ -export interface league_team_movements_sum_fieldsGenqlSelection{ - approved_by_steam_id?: boolean | number - final_rank?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "league_team_movements" */ -export interface league_team_movements_sum_order_by {approved_by_steam_id?: (order_by | null),final_rank?: (order_by | null)} - -export interface league_team_movements_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (league_team_movements_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (league_team_movements_set_input | null), -/** filter the rows which have to be updated */ -where: league_team_movements_bool_exp} - - -/** aggregate var_pop on columns */ -export interface league_team_movements_var_pop_fieldsGenqlSelection{ - approved_by_steam_id?: boolean | number - final_rank?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "league_team_movements" */ -export interface league_team_movements_var_pop_order_by {approved_by_steam_id?: (order_by | null),final_rank?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface league_team_movements_var_samp_fieldsGenqlSelection{ - approved_by_steam_id?: boolean | number - final_rank?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "league_team_movements" */ -export interface league_team_movements_var_samp_order_by {approved_by_steam_id?: (order_by | null),final_rank?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface league_team_movements_variance_fieldsGenqlSelection{ - approved_by_steam_id?: boolean | number - final_rank?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "league_team_movements" */ -export interface league_team_movements_variance_order_by {approved_by_steam_id?: (order_by | null),final_rank?: (order_by | null)} - - -/** columns and relationships of "league_team_rosters" */ -export interface league_team_rostersGenqlSelection{ - added_at?: boolean | number - league_team_season_id?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - player_steam_id?: boolean | number - removed_at?: boolean | number - removed_reason?: boolean | number - status?: boolean | number - /** An object relationship */ - team_season?: league_team_seasonsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "league_team_rosters" */ -export interface league_team_rosters_aggregateGenqlSelection{ - aggregate?: league_team_rosters_aggregate_fieldsGenqlSelection - nodes?: league_team_rostersGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface league_team_rosters_aggregate_bool_exp {count?: (league_team_rosters_aggregate_bool_exp_count | null)} - -export interface league_team_rosters_aggregate_bool_exp_count {arguments?: (league_team_rosters_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (league_team_rosters_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "league_team_rosters" */ -export interface league_team_rosters_aggregate_fieldsGenqlSelection{ - avg?: league_team_rosters_avg_fieldsGenqlSelection - count?: { __args: {columns?: (league_team_rosters_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: league_team_rosters_max_fieldsGenqlSelection - min?: league_team_rosters_min_fieldsGenqlSelection - stddev?: league_team_rosters_stddev_fieldsGenqlSelection - stddev_pop?: league_team_rosters_stddev_pop_fieldsGenqlSelection - stddev_samp?: league_team_rosters_stddev_samp_fieldsGenqlSelection - sum?: league_team_rosters_sum_fieldsGenqlSelection - var_pop?: league_team_rosters_var_pop_fieldsGenqlSelection - var_samp?: league_team_rosters_var_samp_fieldsGenqlSelection - variance?: league_team_rosters_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "league_team_rosters" */ -export interface league_team_rosters_aggregate_order_by {avg?: (league_team_rosters_avg_order_by | null),count?: (order_by | null),max?: (league_team_rosters_max_order_by | null),min?: (league_team_rosters_min_order_by | null),stddev?: (league_team_rosters_stddev_order_by | null),stddev_pop?: (league_team_rosters_stddev_pop_order_by | null),stddev_samp?: (league_team_rosters_stddev_samp_order_by | null),sum?: (league_team_rosters_sum_order_by | null),var_pop?: (league_team_rosters_var_pop_order_by | null),var_samp?: (league_team_rosters_var_samp_order_by | null),variance?: (league_team_rosters_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "league_team_rosters" */ -export interface league_team_rosters_arr_rel_insert_input {data: league_team_rosters_insert_input[], -/** upsert condition */ -on_conflict?: (league_team_rosters_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface league_team_rosters_avg_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "league_team_rosters" */ -export interface league_team_rosters_avg_order_by {player_steam_id?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "league_team_rosters". All fields are combined with a logical 'AND'. */ -export interface league_team_rosters_bool_exp {_and?: (league_team_rosters_bool_exp[] | null),_not?: (league_team_rosters_bool_exp | null),_or?: (league_team_rosters_bool_exp[] | null),added_at?: (timestamptz_comparison_exp | null),league_team_season_id?: (uuid_comparison_exp | null),player?: (players_bool_exp | null),player_steam_id?: (bigint_comparison_exp | null),removed_at?: (timestamptz_comparison_exp | null),removed_reason?: (String_comparison_exp | null),status?: (e_team_roster_statuses_enum_comparison_exp | null),team_season?: (league_team_seasons_bool_exp | null)} - - -/** input type for incrementing numeric columns in table "league_team_rosters" */ -export interface league_team_rosters_inc_input {player_steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "league_team_rosters" */ -export interface league_team_rosters_insert_input {added_at?: (Scalars['timestamptz'] | null),league_team_season_id?: (Scalars['uuid'] | null),player?: (players_obj_rel_insert_input | null),player_steam_id?: (Scalars['bigint'] | null),removed_at?: (Scalars['timestamptz'] | null),removed_reason?: (Scalars['String'] | null),status?: (e_team_roster_statuses_enum | null),team_season?: (league_team_seasons_obj_rel_insert_input | null)} - - -/** aggregate max on columns */ -export interface league_team_rosters_max_fieldsGenqlSelection{ - added_at?: boolean | number - league_team_season_id?: boolean | number - player_steam_id?: boolean | number - removed_at?: boolean | number - removed_reason?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "league_team_rosters" */ -export interface league_team_rosters_max_order_by {added_at?: (order_by | null),league_team_season_id?: (order_by | null),player_steam_id?: (order_by | null),removed_at?: (order_by | null),removed_reason?: (order_by | null)} - - -/** aggregate min on columns */ -export interface league_team_rosters_min_fieldsGenqlSelection{ - added_at?: boolean | number - league_team_season_id?: boolean | number - player_steam_id?: boolean | number - removed_at?: boolean | number - removed_reason?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "league_team_rosters" */ -export interface league_team_rosters_min_order_by {added_at?: (order_by | null),league_team_season_id?: (order_by | null),player_steam_id?: (order_by | null),removed_at?: (order_by | null),removed_reason?: (order_by | null)} - - -/** response of any mutation on the table "league_team_rosters" */ -export interface league_team_rosters_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: league_team_rostersGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "league_team_rosters" */ -export interface league_team_rosters_on_conflict {constraint: league_team_rosters_constraint,update_columns?: league_team_rosters_update_column[],where?: (league_team_rosters_bool_exp | null)} - - -/** Ordering options when selecting data from "league_team_rosters". */ -export interface league_team_rosters_order_by {added_at?: (order_by | null),league_team_season_id?: (order_by | null),player?: (players_order_by | null),player_steam_id?: (order_by | null),removed_at?: (order_by | null),removed_reason?: (order_by | null),status?: (order_by | null),team_season?: (league_team_seasons_order_by | null)} - - -/** primary key columns input for table: league_team_rosters */ -export interface league_team_rosters_pk_columns_input {league_team_season_id: Scalars['uuid'],player_steam_id: Scalars['bigint']} - - -/** input type for updating data in table "league_team_rosters" */ -export interface league_team_rosters_set_input {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),status?: (e_team_roster_statuses_enum | null)} - - -/** aggregate stddev on columns */ -export interface league_team_rosters_stddev_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "league_team_rosters" */ -export interface league_team_rosters_stddev_order_by {player_steam_id?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface league_team_rosters_stddev_pop_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "league_team_rosters" */ -export interface league_team_rosters_stddev_pop_order_by {player_steam_id?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface league_team_rosters_stddev_samp_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "league_team_rosters" */ -export interface league_team_rosters_stddev_samp_order_by {player_steam_id?: (order_by | null)} - - -/** Streaming cursor of the table "league_team_rosters" */ -export interface league_team_rosters_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: league_team_rosters_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface league_team_rosters_stream_cursor_value_input {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),status?: (e_team_roster_statuses_enum | null)} - - -/** aggregate sum on columns */ -export interface league_team_rosters_sum_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "league_team_rosters" */ -export interface league_team_rosters_sum_order_by {player_steam_id?: (order_by | null)} - -export interface league_team_rosters_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (league_team_rosters_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (league_team_rosters_set_input | null), -/** filter the rows which have to be updated */ -where: league_team_rosters_bool_exp} - - -/** aggregate var_pop on columns */ -export interface league_team_rosters_var_pop_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "league_team_rosters" */ -export interface league_team_rosters_var_pop_order_by {player_steam_id?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface league_team_rosters_var_samp_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "league_team_rosters" */ -export interface league_team_rosters_var_samp_order_by {player_steam_id?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface league_team_rosters_variance_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "league_team_rosters" */ -export interface league_team_rosters_variance_order_by {player_steam_id?: (order_by | null)} - - -/** columns and relationships of "league_team_seasons" */ -export interface league_team_seasonsGenqlSelection{ - /** An object relationship */ - assigned_division?: league_divisionsGenqlSelection - assigned_division_id?: boolean | number - /** An object relationship */ - captain?: playersGenqlSelection - captain_steam_id?: boolean | number - created_at?: boolean | number - decline_reason?: boolean | number - /** An object relationship */ - e_registration_status?: e_league_registration_statusesGenqlSelection - id?: boolean | number - league_season_id?: boolean | number - /** An object relationship */ - league_team?: league_teamsGenqlSelection - league_team_id?: boolean | number - /** An object relationship */ - registered_by?: playersGenqlSelection - registered_by_steam_id?: boolean | number - /** An object relationship */ - requested_division?: league_divisionsGenqlSelection - requested_division_id?: boolean | number - /** An array relationship */ - roster?: (league_team_rostersGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_team_rosters_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_team_rosters_order_by[] | null), - /** filter the rows returned */ - where?: (league_team_rosters_bool_exp | null)} }) - /** An aggregate relationship */ - roster_aggregate?: (league_team_rosters_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_team_rosters_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_team_rosters_order_by[] | null), - /** filter the rows returned */ - where?: (league_team_rosters_bool_exp | null)} }) - /** An object relationship */ - season?: league_seasonsGenqlSelection - seed?: boolean | number - status?: boolean | number - /** An object relationship */ - tournament_team?: tournament_teamsGenqlSelection - tournament_team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "league_team_seasons" */ -export interface league_team_seasons_aggregateGenqlSelection{ - aggregate?: league_team_seasons_aggregate_fieldsGenqlSelection - nodes?: league_team_seasonsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface league_team_seasons_aggregate_bool_exp {count?: (league_team_seasons_aggregate_bool_exp_count | null)} - -export interface league_team_seasons_aggregate_bool_exp_count {arguments?: (league_team_seasons_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (league_team_seasons_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "league_team_seasons" */ -export interface league_team_seasons_aggregate_fieldsGenqlSelection{ - avg?: league_team_seasons_avg_fieldsGenqlSelection - count?: { __args: {columns?: (league_team_seasons_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: league_team_seasons_max_fieldsGenqlSelection - min?: league_team_seasons_min_fieldsGenqlSelection - stddev?: league_team_seasons_stddev_fieldsGenqlSelection - stddev_pop?: league_team_seasons_stddev_pop_fieldsGenqlSelection - stddev_samp?: league_team_seasons_stddev_samp_fieldsGenqlSelection - sum?: league_team_seasons_sum_fieldsGenqlSelection - var_pop?: league_team_seasons_var_pop_fieldsGenqlSelection - var_samp?: league_team_seasons_var_samp_fieldsGenqlSelection - variance?: league_team_seasons_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "league_team_seasons" */ -export interface league_team_seasons_aggregate_order_by {avg?: (league_team_seasons_avg_order_by | null),count?: (order_by | null),max?: (league_team_seasons_max_order_by | null),min?: (league_team_seasons_min_order_by | null),stddev?: (league_team_seasons_stddev_order_by | null),stddev_pop?: (league_team_seasons_stddev_pop_order_by | null),stddev_samp?: (league_team_seasons_stddev_samp_order_by | null),sum?: (league_team_seasons_sum_order_by | null),var_pop?: (league_team_seasons_var_pop_order_by | null),var_samp?: (league_team_seasons_var_samp_order_by | null),variance?: (league_team_seasons_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "league_team_seasons" */ -export interface league_team_seasons_arr_rel_insert_input {data: league_team_seasons_insert_input[], -/** upsert condition */ -on_conflict?: (league_team_seasons_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface league_team_seasons_avg_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - registered_by_steam_id?: boolean | number - seed?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "league_team_seasons" */ -export interface league_team_seasons_avg_order_by {captain_steam_id?: (order_by | null),registered_by_steam_id?: (order_by | null),seed?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "league_team_seasons". All fields are combined with a logical 'AND'. */ -export interface league_team_seasons_bool_exp {_and?: (league_team_seasons_bool_exp[] | null),_not?: (league_team_seasons_bool_exp | null),_or?: (league_team_seasons_bool_exp[] | null),assigned_division?: (league_divisions_bool_exp | null),assigned_division_id?: (uuid_comparison_exp | null),captain?: (players_bool_exp | null),captain_steam_id?: (bigint_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),decline_reason?: (String_comparison_exp | null),e_registration_status?: (e_league_registration_statuses_bool_exp | null),id?: (uuid_comparison_exp | null),league_season_id?: (uuid_comparison_exp | null),league_team?: (league_teams_bool_exp | null),league_team_id?: (uuid_comparison_exp | null),registered_by?: (players_bool_exp | null),registered_by_steam_id?: (bigint_comparison_exp | null),requested_division?: (league_divisions_bool_exp | null),requested_division_id?: (uuid_comparison_exp | null),roster?: (league_team_rosters_bool_exp | null),roster_aggregate?: (league_team_rosters_aggregate_bool_exp | null),season?: (league_seasons_bool_exp | null),seed?: (Int_comparison_exp | null),status?: (e_league_registration_statuses_enum_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 "league_team_seasons" */ -export interface league_team_seasons_inc_input {captain_steam_id?: (Scalars['bigint'] | null),registered_by_steam_id?: (Scalars['bigint'] | null),seed?: (Scalars['Int'] | null)} - - -/** input type for inserting data into table "league_team_seasons" */ -export interface league_team_seasons_insert_input {assigned_division?: (league_divisions_obj_rel_insert_input | null),assigned_division_id?: (Scalars['uuid'] | null),captain?: (players_obj_rel_insert_input | null),captain_steam_id?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),decline_reason?: (Scalars['String'] | null),e_registration_status?: (e_league_registration_statuses_obj_rel_insert_input | null),id?: (Scalars['uuid'] | null),league_season_id?: (Scalars['uuid'] | null),league_team?: (league_teams_obj_rel_insert_input | null),league_team_id?: (Scalars['uuid'] | null),registered_by?: (players_obj_rel_insert_input | null),registered_by_steam_id?: (Scalars['bigint'] | null),requested_division?: (league_divisions_obj_rel_insert_input | null),requested_division_id?: (Scalars['uuid'] | null),roster?: (league_team_rosters_arr_rel_insert_input | null),season?: (league_seasons_obj_rel_insert_input | null),seed?: (Scalars['Int'] | null),status?: (e_league_registration_statuses_enum | null),tournament_team?: (tournament_teams_obj_rel_insert_input | null),tournament_team_id?: (Scalars['uuid'] | null)} - - -/** aggregate max on columns */ -export interface league_team_seasons_max_fieldsGenqlSelection{ - assigned_division_id?: boolean | number - captain_steam_id?: boolean | number - created_at?: boolean | number - decline_reason?: boolean | number - id?: boolean | number - league_season_id?: boolean | number - league_team_id?: boolean | number - registered_by_steam_id?: boolean | number - requested_division_id?: boolean | number - seed?: boolean | number - tournament_team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "league_team_seasons" */ -export interface league_team_seasons_max_order_by {assigned_division_id?: (order_by | null),captain_steam_id?: (order_by | null),created_at?: (order_by | null),decline_reason?: (order_by | null),id?: (order_by | null),league_season_id?: (order_by | null),league_team_id?: (order_by | null),registered_by_steam_id?: (order_by | null),requested_division_id?: (order_by | null),seed?: (order_by | null),tournament_team_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface league_team_seasons_min_fieldsGenqlSelection{ - assigned_division_id?: boolean | number - captain_steam_id?: boolean | number - created_at?: boolean | number - decline_reason?: boolean | number - id?: boolean | number - league_season_id?: boolean | number - league_team_id?: boolean | number - registered_by_steam_id?: boolean | number - requested_division_id?: boolean | number - seed?: boolean | number - tournament_team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "league_team_seasons" */ -export interface league_team_seasons_min_order_by {assigned_division_id?: (order_by | null),captain_steam_id?: (order_by | null),created_at?: (order_by | null),decline_reason?: (order_by | null),id?: (order_by | null),league_season_id?: (order_by | null),league_team_id?: (order_by | null),registered_by_steam_id?: (order_by | null),requested_division_id?: (order_by | null),seed?: (order_by | null),tournament_team_id?: (order_by | null)} - - -/** response of any mutation on the table "league_team_seasons" */ -export interface league_team_seasons_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: league_team_seasonsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "league_team_seasons" */ -export interface league_team_seasons_obj_rel_insert_input {data: league_team_seasons_insert_input, -/** upsert condition */ -on_conflict?: (league_team_seasons_on_conflict | null)} - - -/** on_conflict condition type for table "league_team_seasons" */ -export interface league_team_seasons_on_conflict {constraint: league_team_seasons_constraint,update_columns?: league_team_seasons_update_column[],where?: (league_team_seasons_bool_exp | null)} - - -/** Ordering options when selecting data from "league_team_seasons". */ -export interface league_team_seasons_order_by {assigned_division?: (league_divisions_order_by | null),assigned_division_id?: (order_by | null),captain?: (players_order_by | null),captain_steam_id?: (order_by | null),created_at?: (order_by | null),decline_reason?: (order_by | null),e_registration_status?: (e_league_registration_statuses_order_by | null),id?: (order_by | null),league_season_id?: (order_by | null),league_team?: (league_teams_order_by | null),league_team_id?: (order_by | null),registered_by?: (players_order_by | null),registered_by_steam_id?: (order_by | null),requested_division?: (league_divisions_order_by | null),requested_division_id?: (order_by | null),roster_aggregate?: (league_team_rosters_aggregate_order_by | null),season?: (league_seasons_order_by | null),seed?: (order_by | null),status?: (order_by | null),tournament_team?: (tournament_teams_order_by | null),tournament_team_id?: (order_by | null)} - - -/** primary key columns input for table: league_team_seasons */ -export interface league_team_seasons_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "league_team_seasons" */ -export interface league_team_seasons_set_input {assigned_division_id?: (Scalars['uuid'] | null),captain_steam_id?: (Scalars['bigint'] | null),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),status?: (e_league_registration_statuses_enum | null),tournament_team_id?: (Scalars['uuid'] | null)} - - -/** aggregate stddev on columns */ -export interface league_team_seasons_stddev_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - registered_by_steam_id?: boolean | number - seed?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "league_team_seasons" */ -export interface league_team_seasons_stddev_order_by {captain_steam_id?: (order_by | null),registered_by_steam_id?: (order_by | null),seed?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface league_team_seasons_stddev_pop_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - registered_by_steam_id?: boolean | number - seed?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "league_team_seasons" */ -export interface league_team_seasons_stddev_pop_order_by {captain_steam_id?: (order_by | null),registered_by_steam_id?: (order_by | null),seed?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface league_team_seasons_stddev_samp_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - registered_by_steam_id?: boolean | number - seed?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "league_team_seasons" */ -export interface league_team_seasons_stddev_samp_order_by {captain_steam_id?: (order_by | null),registered_by_steam_id?: (order_by | null),seed?: (order_by | null)} - - -/** Streaming cursor of the table "league_team_seasons" */ -export interface league_team_seasons_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: league_team_seasons_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface league_team_seasons_stream_cursor_value_input {assigned_division_id?: (Scalars['uuid'] | null),captain_steam_id?: (Scalars['bigint'] | null),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),status?: (e_league_registration_statuses_enum | null),tournament_team_id?: (Scalars['uuid'] | null)} - - -/** aggregate sum on columns */ -export interface league_team_seasons_sum_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - registered_by_steam_id?: boolean | number - seed?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "league_team_seasons" */ -export interface league_team_seasons_sum_order_by {captain_steam_id?: (order_by | null),registered_by_steam_id?: (order_by | null),seed?: (order_by | null)} - -export interface league_team_seasons_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (league_team_seasons_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (league_team_seasons_set_input | null), -/** filter the rows which have to be updated */ -where: league_team_seasons_bool_exp} - - -/** aggregate var_pop on columns */ -export interface league_team_seasons_var_pop_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - registered_by_steam_id?: boolean | number - seed?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "league_team_seasons" */ -export interface league_team_seasons_var_pop_order_by {captain_steam_id?: (order_by | null),registered_by_steam_id?: (order_by | null),seed?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface league_team_seasons_var_samp_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - registered_by_steam_id?: boolean | number - seed?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "league_team_seasons" */ -export interface league_team_seasons_var_samp_order_by {captain_steam_id?: (order_by | null),registered_by_steam_id?: (order_by | null),seed?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface league_team_seasons_variance_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - registered_by_steam_id?: boolean | number - seed?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "league_team_seasons" */ -export interface league_team_seasons_variance_order_by {captain_steam_id?: (order_by | null),registered_by_steam_id?: (order_by | null),seed?: (order_by | null)} - - -/** columns and relationships of "league_teams" */ -export interface league_teamsGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - /** An array relationship */ - movements?: (league_team_movementsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_team_movements_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_team_movements_order_by[] | null), - /** filter the rows returned */ - where?: (league_team_movements_bool_exp | null)} }) - /** An aggregate relationship */ - movements_aggregate?: (league_team_movements_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_team_movements_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_team_movements_order_by[] | null), - /** filter the rows returned */ - where?: (league_team_movements_bool_exp | null)} }) - /** An object relationship */ - team?: teamsGenqlSelection - team_id?: boolean | number - /** An array relationship */ - team_seasons?: (league_team_seasonsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_team_seasons_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_team_seasons_order_by[] | null), - /** filter the rows returned */ - where?: (league_team_seasons_bool_exp | null)} }) - /** An aggregate relationship */ - team_seasons_aggregate?: (league_team_seasons_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_team_seasons_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_team_seasons_order_by[] | null), - /** filter the rows returned */ - where?: (league_team_seasons_bool_exp | null)} }) - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "league_teams" */ -export interface league_teams_aggregateGenqlSelection{ - aggregate?: league_teams_aggregate_fieldsGenqlSelection - nodes?: league_teamsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "league_teams" */ -export interface league_teams_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (league_teams_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: league_teams_max_fieldsGenqlSelection - min?: league_teams_min_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "league_teams". All fields are combined with a logical 'AND'. */ -export interface league_teams_bool_exp {_and?: (league_teams_bool_exp[] | null),_not?: (league_teams_bool_exp | null),_or?: (league_teams_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),movements?: (league_team_movements_bool_exp | null),movements_aggregate?: (league_team_movements_aggregate_bool_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null),team_seasons?: (league_team_seasons_bool_exp | null),team_seasons_aggregate?: (league_team_seasons_aggregate_bool_exp | null)} - - -/** input type for inserting data into table "league_teams" */ -export interface league_teams_insert_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),movements?: (league_team_movements_arr_rel_insert_input | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null),team_seasons?: (league_team_seasons_arr_rel_insert_input | null)} - - -/** aggregate max on columns */ -export interface league_teams_max_fieldsGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface league_teams_min_fieldsGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "league_teams" */ -export interface league_teams_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: league_teamsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "league_teams" */ -export interface league_teams_obj_rel_insert_input {data: league_teams_insert_input, -/** upsert condition */ -on_conflict?: (league_teams_on_conflict | null)} - - -/** on_conflict condition type for table "league_teams" */ -export interface league_teams_on_conflict {constraint: league_teams_constraint,update_columns?: league_teams_update_column[],where?: (league_teams_bool_exp | null)} - - -/** Ordering options when selecting data from "league_teams". */ -export interface league_teams_order_by {created_at?: (order_by | null),id?: (order_by | null),movements_aggregate?: (league_team_movements_aggregate_order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null),team_seasons_aggregate?: (league_team_seasons_aggregate_order_by | null)} - - -/** primary key columns input for table: league_teams */ -export interface league_teams_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "league_teams" */ -export interface league_teams_set_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),team_id?: (Scalars['uuid'] | null)} - - -/** Streaming cursor of the table "league_teams" */ -export interface league_teams_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: league_teams_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface league_teams_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),team_id?: (Scalars['uuid'] | null)} - -export interface league_teams_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (league_teams_set_input | null), -/** filter the rows which have to be updated */ -where: league_teams_bool_exp} - - -/** columns and relationships of "lobbies" */ -export interface lobbiesGenqlSelection{ - access?: boolean | number - created_at?: boolean | number - /** An object relationship */ - e_lobby_access?: e_lobby_accessGenqlSelection - id?: boolean | number - /** An array relationship */ - players?: (lobby_playersGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (lobby_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?: (lobby_players_order_by[] | null), - /** filter the rows returned */ - where?: (lobby_players_bool_exp | null)} }) - /** An aggregate relationship */ - players_aggregate?: (lobby_players_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (lobby_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?: (lobby_players_order_by[] | null), - /** filter the rows returned */ - where?: (lobby_players_bool_exp | null)} }) - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "lobbies" */ -export interface lobbies_aggregateGenqlSelection{ - aggregate?: lobbies_aggregate_fieldsGenqlSelection - nodes?: lobbiesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "lobbies" */ -export interface lobbies_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (lobbies_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: lobbies_max_fieldsGenqlSelection - min?: lobbies_min_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "lobbies". All fields are combined with a logical 'AND'. */ -export interface lobbies_bool_exp {_and?: (lobbies_bool_exp[] | null),_not?: (lobbies_bool_exp | null),_or?: (lobbies_bool_exp[] | null),access?: (e_lobby_access_enum_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),e_lobby_access?: (e_lobby_access_bool_exp | null),id?: (uuid_comparison_exp | null),players?: (lobby_players_bool_exp | null),players_aggregate?: (lobby_players_aggregate_bool_exp | null)} - - -/** input type for inserting data into table "lobbies" */ -export interface lobbies_insert_input {access?: (e_lobby_access_enum | null),created_at?: (Scalars['timestamptz'] | null),e_lobby_access?: (e_lobby_access_obj_rel_insert_input | null),id?: (Scalars['uuid'] | null),players?: (lobby_players_arr_rel_insert_input | null)} - - -/** aggregate max on columns */ -export interface lobbies_max_fieldsGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface lobbies_min_fieldsGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "lobbies" */ -export interface lobbies_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: lobbiesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "lobbies" */ -export interface lobbies_obj_rel_insert_input {data: lobbies_insert_input, -/** upsert condition */ -on_conflict?: (lobbies_on_conflict | null)} - - -/** on_conflict condition type for table "lobbies" */ -export interface lobbies_on_conflict {constraint: lobbies_constraint,update_columns?: lobbies_update_column[],where?: (lobbies_bool_exp | null)} - - -/** Ordering options when selecting data from "lobbies". */ -export interface lobbies_order_by {access?: (order_by | null),created_at?: (order_by | null),e_lobby_access?: (e_lobby_access_order_by | null),id?: (order_by | null),players_aggregate?: (lobby_players_aggregate_order_by | null)} - - -/** primary key columns input for table: lobbies */ -export interface lobbies_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "lobbies" */ -export interface lobbies_set_input {access?: (e_lobby_access_enum | null),created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null)} - - -/** Streaming cursor of the table "lobbies" */ -export interface lobbies_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: lobbies_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface lobbies_stream_cursor_value_input {access?: (e_lobby_access_enum | null),created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null)} - -export interface lobbies_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (lobbies_set_input | null), -/** filter the rows which have to be updated */ -where: lobbies_bool_exp} - - -/** columns and relationships of "lobby_players" */ -export interface lobby_playersGenqlSelection{ - captain?: boolean | number - invited_by_steam_id?: boolean | number - /** An object relationship */ - lobby?: lobbiesGenqlSelection - lobby_id?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - status?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "lobby_players" */ -export interface lobby_players_aggregateGenqlSelection{ - aggregate?: lobby_players_aggregate_fieldsGenqlSelection - nodes?: lobby_playersGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface lobby_players_aggregate_bool_exp {bool_and?: (lobby_players_aggregate_bool_exp_bool_and | null),bool_or?: (lobby_players_aggregate_bool_exp_bool_or | null),count?: (lobby_players_aggregate_bool_exp_count | null)} - -export interface lobby_players_aggregate_bool_exp_bool_and {arguments: lobby_players_select_column_lobby_players_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (lobby_players_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface lobby_players_aggregate_bool_exp_bool_or {arguments: lobby_players_select_column_lobby_players_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (lobby_players_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface lobby_players_aggregate_bool_exp_count {arguments?: (lobby_players_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (lobby_players_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "lobby_players" */ -export interface lobby_players_aggregate_fieldsGenqlSelection{ - avg?: lobby_players_avg_fieldsGenqlSelection - count?: { __args: {columns?: (lobby_players_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: lobby_players_max_fieldsGenqlSelection - min?: lobby_players_min_fieldsGenqlSelection - stddev?: lobby_players_stddev_fieldsGenqlSelection - stddev_pop?: lobby_players_stddev_pop_fieldsGenqlSelection - stddev_samp?: lobby_players_stddev_samp_fieldsGenqlSelection - sum?: lobby_players_sum_fieldsGenqlSelection - var_pop?: lobby_players_var_pop_fieldsGenqlSelection - var_samp?: lobby_players_var_samp_fieldsGenqlSelection - variance?: lobby_players_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "lobby_players" */ -export interface lobby_players_aggregate_order_by {avg?: (lobby_players_avg_order_by | null),count?: (order_by | null),max?: (lobby_players_max_order_by | null),min?: (lobby_players_min_order_by | null),stddev?: (lobby_players_stddev_order_by | null),stddev_pop?: (lobby_players_stddev_pop_order_by | null),stddev_samp?: (lobby_players_stddev_samp_order_by | null),sum?: (lobby_players_sum_order_by | null),var_pop?: (lobby_players_var_pop_order_by | null),var_samp?: (lobby_players_var_samp_order_by | null),variance?: (lobby_players_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "lobby_players" */ -export interface lobby_players_arr_rel_insert_input {data: lobby_players_insert_input[], -/** upsert condition */ -on_conflict?: (lobby_players_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface lobby_players_avg_fieldsGenqlSelection{ - invited_by_steam_id?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "lobby_players" */ -export interface lobby_players_avg_order_by {invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "lobby_players". All fields are combined with a logical 'AND'. */ -export interface lobby_players_bool_exp {_and?: (lobby_players_bool_exp[] | null),_not?: (lobby_players_bool_exp | null),_or?: (lobby_players_bool_exp[] | null),captain?: (Boolean_comparison_exp | null),invited_by_steam_id?: (bigint_comparison_exp | null),lobby?: (lobbies_bool_exp | null),lobby_id?: (uuid_comparison_exp | null),player?: (players_bool_exp | null),status?: (e_lobby_player_status_enum_comparison_exp | null),steam_id?: (bigint_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "lobby_players" */ -export interface lobby_players_inc_input {invited_by_steam_id?: (Scalars['bigint'] | null),steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "lobby_players" */ -export interface lobby_players_insert_input {captain?: (Scalars['Boolean'] | null),invited_by_steam_id?: (Scalars['bigint'] | null),lobby?: (lobbies_obj_rel_insert_input | null),lobby_id?: (Scalars['uuid'] | null),player?: (players_obj_rel_insert_input | null),status?: (e_lobby_player_status_enum | null),steam_id?: (Scalars['bigint'] | null)} - - -/** aggregate max on columns */ -export interface lobby_players_max_fieldsGenqlSelection{ - invited_by_steam_id?: boolean | number - lobby_id?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "lobby_players" */ -export interface lobby_players_max_order_by {invited_by_steam_id?: (order_by | null),lobby_id?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface lobby_players_min_fieldsGenqlSelection{ - invited_by_steam_id?: boolean | number - lobby_id?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "lobby_players" */ -export interface lobby_players_min_order_by {invited_by_steam_id?: (order_by | null),lobby_id?: (order_by | null),steam_id?: (order_by | null)} - - -/** response of any mutation on the table "lobby_players" */ -export interface lobby_players_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: lobby_playersGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "lobby_players" */ -export interface lobby_players_on_conflict {constraint: lobby_players_constraint,update_columns?: lobby_players_update_column[],where?: (lobby_players_bool_exp | null)} - - -/** Ordering options when selecting data from "lobby_players". */ -export interface lobby_players_order_by {captain?: (order_by | null),invited_by_steam_id?: (order_by | null),lobby?: (lobbies_order_by | null),lobby_id?: (order_by | null),player?: (players_order_by | null),status?: (order_by | null),steam_id?: (order_by | null)} - - -/** primary key columns input for table: lobby_players */ -export interface lobby_players_pk_columns_input {lobby_id: Scalars['uuid'],steam_id: Scalars['bigint']} - - -/** input type for updating data in table "lobby_players" */ -export interface lobby_players_set_input {captain?: (Scalars['Boolean'] | null),invited_by_steam_id?: (Scalars['bigint'] | null),lobby_id?: (Scalars['uuid'] | null),status?: (e_lobby_player_status_enum | null),steam_id?: (Scalars['bigint'] | null)} - - -/** aggregate stddev on columns */ -export interface lobby_players_stddev_fieldsGenqlSelection{ - invited_by_steam_id?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "lobby_players" */ -export interface lobby_players_stddev_order_by {invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface lobby_players_stddev_pop_fieldsGenqlSelection{ - invited_by_steam_id?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "lobby_players" */ -export interface lobby_players_stddev_pop_order_by {invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface lobby_players_stddev_samp_fieldsGenqlSelection{ - invited_by_steam_id?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "lobby_players" */ -export interface lobby_players_stddev_samp_order_by {invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null)} - - -/** Streaming cursor of the table "lobby_players" */ -export interface lobby_players_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: lobby_players_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface lobby_players_stream_cursor_value_input {captain?: (Scalars['Boolean'] | null),invited_by_steam_id?: (Scalars['bigint'] | null),lobby_id?: (Scalars['uuid'] | null),status?: (e_lobby_player_status_enum | null),steam_id?: (Scalars['bigint'] | null)} - - -/** aggregate sum on columns */ -export interface lobby_players_sum_fieldsGenqlSelection{ - invited_by_steam_id?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "lobby_players" */ -export interface lobby_players_sum_order_by {invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null)} - -export interface lobby_players_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (lobby_players_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (lobby_players_set_input | null), -/** filter the rows which have to be updated */ -where: lobby_players_bool_exp} - - -/** aggregate var_pop on columns */ -export interface lobby_players_var_pop_fieldsGenqlSelection{ - invited_by_steam_id?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "lobby_players" */ -export interface lobby_players_var_pop_order_by {invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface lobby_players_var_samp_fieldsGenqlSelection{ - invited_by_steam_id?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "lobby_players" */ -export interface lobby_players_var_samp_order_by {invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface lobby_players_variance_fieldsGenqlSelection{ - invited_by_steam_id?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "lobby_players" */ -export interface lobby_players_variance_order_by {invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null)} - - -/** columns and relationships of "map_callouts" */ -export interface map_calloutsGenqlSelection{ - boxes?: { __args: { - /** JSON select path */ - path?: (Scalars['String'] | null)} } | boolean | number - map_name?: boolean | number - name?: boolean | number - source?: boolean | number - updated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "map_callouts" */ -export interface map_callouts_aggregateGenqlSelection{ - aggregate?: map_callouts_aggregate_fieldsGenqlSelection - nodes?: map_calloutsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "map_callouts" */ -export interface map_callouts_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (map_callouts_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: map_callouts_max_fieldsGenqlSelection - min?: map_callouts_min_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** append existing jsonb value of filtered columns with new jsonb value */ -export interface map_callouts_append_input {boxes?: (Scalars['jsonb'] | null)} - - -/** Boolean expression to filter rows from the table "map_callouts". All fields are combined with a logical 'AND'. */ -export interface map_callouts_bool_exp {_and?: (map_callouts_bool_exp[] | null),_not?: (map_callouts_bool_exp | null),_or?: (map_callouts_bool_exp[] | null),boxes?: (jsonb_comparison_exp | null),map_name?: (String_comparison_exp | null),name?: (String_comparison_exp | null),source?: (String_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 map_callouts_delete_at_path_input {boxes?: (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 map_callouts_delete_elem_input {boxes?: (Scalars['Int'] | null)} - - -/** delete key/value pair or string element. key/value pairs are matched based on their key value */ -export interface map_callouts_delete_key_input {boxes?: (Scalars['String'] | null)} - - -/** input type for inserting data into table "map_callouts" */ -export interface map_callouts_insert_input {boxes?: (Scalars['jsonb'] | null),map_name?: (Scalars['String'] | null),name?: (Scalars['String'] | null),source?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null)} - - -/** aggregate max on columns */ -export interface map_callouts_max_fieldsGenqlSelection{ - map_name?: boolean | number - name?: boolean | number - source?: boolean | number - updated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface map_callouts_min_fieldsGenqlSelection{ - map_name?: boolean | number - name?: boolean | number - source?: boolean | number - updated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "map_callouts" */ -export interface map_callouts_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: map_calloutsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "map_callouts" */ -export interface map_callouts_on_conflict {constraint: map_callouts_constraint,update_columns?: map_callouts_update_column[],where?: (map_callouts_bool_exp | null)} - - -/** Ordering options when selecting data from "map_callouts". */ -export interface map_callouts_order_by {boxes?: (order_by | null),map_name?: (order_by | null),name?: (order_by | null),source?: (order_by | null),updated_at?: (order_by | null)} - - -/** primary key columns input for table: map_callouts */ -export interface map_callouts_pk_columns_input {map_name: Scalars['String'],name: Scalars['String']} - - -/** prepend existing jsonb value of filtered columns with new jsonb value */ -export interface map_callouts_prepend_input {boxes?: (Scalars['jsonb'] | null)} - - -/** input type for updating data in table "map_callouts" */ -export interface map_callouts_set_input {boxes?: (Scalars['jsonb'] | null),map_name?: (Scalars['String'] | null),name?: (Scalars['String'] | null),source?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null)} - - -/** Streaming cursor of the table "map_callouts" */ -export interface map_callouts_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: map_callouts_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface map_callouts_stream_cursor_value_input {boxes?: (Scalars['jsonb'] | null),map_name?: (Scalars['String'] | null),name?: (Scalars['String'] | null),source?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null)} - -export interface map_callouts_updates { -/** append existing jsonb value of filtered columns with new jsonb value */ -_append?: (map_callouts_append_input | null), -/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ -_delete_at_path?: (map_callouts_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?: (map_callouts_delete_elem_input | null), -/** delete key/value pair or string element. key/value pairs are matched based on their key value */ -_delete_key?: (map_callouts_delete_key_input | null), -/** prepend existing jsonb value of filtered columns with new jsonb value */ -_prepend?: (map_callouts_prepend_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (map_callouts_set_input | null), -/** filter the rows which have to be updated */ -where: map_callouts_bool_exp} - - -/** columns and relationships of "map_pools" */ -export interface map_poolsGenqlSelection{ - /** An object relationship */ - e_type?: e_map_pool_typesGenqlSelection - enabled?: boolean | number - id?: boolean | number - /** An array relationship */ - maps?: (v_pool_mapsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_pool_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?: (v_pool_maps_order_by[] | null), - /** filter the rows returned */ - where?: (v_pool_maps_bool_exp | null)} }) - /** An aggregate relationship */ - maps_aggregate?: (v_pool_maps_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_pool_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?: (v_pool_maps_order_by[] | null), - /** filter the rows returned */ - where?: (v_pool_maps_bool_exp | null)} }) - seed?: boolean | number - type?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "map_pools" */ -export interface map_pools_aggregateGenqlSelection{ - aggregate?: map_pools_aggregate_fieldsGenqlSelection - nodes?: map_poolsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "map_pools" */ -export interface map_pools_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (map_pools_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: map_pools_max_fieldsGenqlSelection - min?: map_pools_min_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "map_pools". All fields are combined with a logical 'AND'. */ -export interface map_pools_bool_exp {_and?: (map_pools_bool_exp[] | null),_not?: (map_pools_bool_exp | null),_or?: (map_pools_bool_exp[] | null),e_type?: (e_map_pool_types_bool_exp | null),enabled?: (Boolean_comparison_exp | null),id?: (uuid_comparison_exp | null),maps?: (v_pool_maps_bool_exp | null),maps_aggregate?: (v_pool_maps_aggregate_bool_exp | null),seed?: (Boolean_comparison_exp | null),type?: (e_map_pool_types_enum_comparison_exp | null)} - - -/** input type for inserting data into table "map_pools" */ -export interface map_pools_insert_input {e_type?: (e_map_pool_types_obj_rel_insert_input | null),enabled?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),maps?: (v_pool_maps_arr_rel_insert_input | null),seed?: (Scalars['Boolean'] | null),type?: (e_map_pool_types_enum | null)} - - -/** aggregate max on columns */ -export interface map_pools_max_fieldsGenqlSelection{ - id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface map_pools_min_fieldsGenqlSelection{ - id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "map_pools" */ -export interface map_pools_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: map_poolsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "map_pools" */ -export interface map_pools_obj_rel_insert_input {data: map_pools_insert_input, -/** upsert condition */ -on_conflict?: (map_pools_on_conflict | null)} - - -/** on_conflict condition type for table "map_pools" */ -export interface map_pools_on_conflict {constraint: map_pools_constraint,update_columns?: map_pools_update_column[],where?: (map_pools_bool_exp | null)} - - -/** Ordering options when selecting data from "map_pools". */ -export interface map_pools_order_by {e_type?: (e_map_pool_types_order_by | null),enabled?: (order_by | null),id?: (order_by | null),maps_aggregate?: (v_pool_maps_aggregate_order_by | null),seed?: (order_by | null),type?: (order_by | null)} - - -/** primary key columns input for table: map_pools */ -export interface map_pools_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "map_pools" */ -export interface map_pools_set_input {enabled?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),seed?: (Scalars['Boolean'] | null),type?: (e_map_pool_types_enum | null)} - - -/** Streaming cursor of the table "map_pools" */ -export interface map_pools_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: map_pools_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface map_pools_stream_cursor_value_input {enabled?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),seed?: (Scalars['Boolean'] | null),type?: (e_map_pool_types_enum | null)} - -export interface map_pools_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (map_pools_set_input | null), -/** filter the rows which have to be updated */ -where: map_pools_bool_exp} - - -/** columns and relationships of "maps" */ -export interface mapsGenqlSelection{ - active_pool?: boolean | number - deleted_at?: boolean | number - /** An object relationship */ - e_match_type?: e_match_typesGenqlSelection - enabled?: boolean | number - id?: boolean | number - label?: 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)} }) - /** 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)} }) - name?: boolean | number - patch?: boolean | number - poster?: boolean | number - type?: boolean | number - workshop_map_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "maps" */ -export interface maps_aggregateGenqlSelection{ - aggregate?: maps_aggregate_fieldsGenqlSelection - nodes?: mapsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface maps_aggregate_bool_exp {bool_and?: (maps_aggregate_bool_exp_bool_and | null),bool_or?: (maps_aggregate_bool_exp_bool_or | null),count?: (maps_aggregate_bool_exp_count | null)} - -export interface maps_aggregate_bool_exp_bool_and {arguments: maps_select_column_maps_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (maps_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface maps_aggregate_bool_exp_bool_or {arguments: maps_select_column_maps_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (maps_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface maps_aggregate_bool_exp_count {arguments?: (maps_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (maps_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "maps" */ -export interface maps_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (maps_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: maps_max_fieldsGenqlSelection - min?: maps_min_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "maps" */ -export interface maps_aggregate_order_by {count?: (order_by | null),max?: (maps_max_order_by | null),min?: (maps_min_order_by | null)} - - -/** input type for inserting array relation for remote table "maps" */ -export interface maps_arr_rel_insert_input {data: maps_insert_input[], -/** upsert condition */ -on_conflict?: (maps_on_conflict | null)} - - -/** Boolean expression to filter rows from the table "maps". All fields are combined with a logical 'AND'. */ -export interface maps_bool_exp {_and?: (maps_bool_exp[] | null),_not?: (maps_bool_exp | null),_or?: (maps_bool_exp[] | null),active_pool?: (Boolean_comparison_exp | null),deleted_at?: (timestamptz_comparison_exp | null),e_match_type?: (e_match_types_bool_exp | null),enabled?: (Boolean_comparison_exp | null),id?: (uuid_comparison_exp | null),label?: (String_comparison_exp | null),match_maps?: (match_maps_bool_exp | null),match_maps_aggregate?: (match_maps_aggregate_bool_exp | null),match_veto_picks?: (match_map_veto_picks_bool_exp | null),match_veto_picks_aggregate?: (match_map_veto_picks_aggregate_bool_exp | null),name?: (String_comparison_exp | null),patch?: (String_comparison_exp | null),poster?: (String_comparison_exp | null),type?: (e_match_types_enum_comparison_exp | null),workshop_map_id?: (String_comparison_exp | null)} - - -/** input type for inserting data into table "maps" */ -export interface maps_insert_input {active_pool?: (Scalars['Boolean'] | null),deleted_at?: (Scalars['timestamptz'] | null),e_match_type?: (e_match_types_obj_rel_insert_input | null),enabled?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),label?: (Scalars['String'] | null),match_maps?: (match_maps_arr_rel_insert_input | null),match_veto_picks?: (match_map_veto_picks_arr_rel_insert_input | null),name?: (Scalars['String'] | null),patch?: (Scalars['String'] | null),poster?: (Scalars['String'] | null),type?: (e_match_types_enum | null),workshop_map_id?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface maps_max_fieldsGenqlSelection{ - deleted_at?: boolean | number - id?: boolean | number - label?: boolean | number - name?: boolean | number - patch?: boolean | number - poster?: boolean | number - workshop_map_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "maps" */ -export interface maps_max_order_by {deleted_at?: (order_by | null),id?: (order_by | null),label?: (order_by | null),name?: (order_by | null),patch?: (order_by | null),poster?: (order_by | null),workshop_map_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface maps_min_fieldsGenqlSelection{ - deleted_at?: boolean | number - id?: boolean | number - label?: boolean | number - name?: boolean | number - patch?: boolean | number - poster?: boolean | number - workshop_map_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "maps" */ -export interface maps_min_order_by {deleted_at?: (order_by | null),id?: (order_by | null),label?: (order_by | null),name?: (order_by | null),patch?: (order_by | null),poster?: (order_by | null),workshop_map_id?: (order_by | null)} - - -/** response of any mutation on the table "maps" */ -export interface maps_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: mapsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "maps" */ -export interface maps_obj_rel_insert_input {data: maps_insert_input, -/** upsert condition */ -on_conflict?: (maps_on_conflict | null)} - - -/** on_conflict condition type for table "maps" */ -export interface maps_on_conflict {constraint: maps_constraint,update_columns?: maps_update_column[],where?: (maps_bool_exp | null)} - - -/** Ordering options when selecting data from "maps". */ -export interface maps_order_by {active_pool?: (order_by | null),deleted_at?: (order_by | null),e_match_type?: (e_match_types_order_by | null),enabled?: (order_by | null),id?: (order_by | null),label?: (order_by | null),match_maps_aggregate?: (match_maps_aggregate_order_by | null),match_veto_picks_aggregate?: (match_map_veto_picks_aggregate_order_by | null),name?: (order_by | null),patch?: (order_by | null),poster?: (order_by | null),type?: (order_by | null),workshop_map_id?: (order_by | null)} - - -/** primary key columns input for table: maps */ -export interface maps_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "maps" */ -export interface maps_set_input {active_pool?: (Scalars['Boolean'] | null),deleted_at?: (Scalars['timestamptz'] | null),enabled?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),label?: (Scalars['String'] | null),name?: (Scalars['String'] | null),patch?: (Scalars['String'] | null),poster?: (Scalars['String'] | null),type?: (e_match_types_enum | null),workshop_map_id?: (Scalars['String'] | null)} - - -/** Streaming cursor of the table "maps" */ -export interface maps_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: maps_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface maps_stream_cursor_value_input {active_pool?: (Scalars['Boolean'] | null),deleted_at?: (Scalars['timestamptz'] | null),enabled?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),label?: (Scalars['String'] | null),name?: (Scalars['String'] | null),patch?: (Scalars['String'] | null),poster?: (Scalars['String'] | null),type?: (e_match_types_enum | null),workshop_map_id?: (Scalars['String'] | null)} - -export interface maps_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (maps_set_input | null), -/** filter the rows which have to be updated */ -where: maps_bool_exp} - - -/** columns and relationships of "match_clips" */ -export interface match_clipsGenqlSelection{ - created_at?: boolean | number - /** A computed field, executes function "clip_download_url" */ - download_url?: boolean | number - duration_ms?: boolean | number - file?: boolean | number - id?: boolean | number - kills_count?: 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 - /** An array relationship */ - render_jobs?: (clip_render_jobsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (clip_render_jobs_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (clip_render_jobs_order_by[] | null), - /** filter the rows returned */ - where?: (clip_render_jobs_bool_exp | null)} }) - /** An aggregate relationship */ - render_jobs_aggregate?: (clip_render_jobs_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (clip_render_jobs_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (clip_render_jobs_order_by[] | null), - /** filter the rows returned */ - where?: (clip_render_jobs_bool_exp | null)} }) - round?: boolean | number - size?: boolean | number - /** An object relationship */ - target?: playersGenqlSelection - target_steam_id?: boolean | number - /** A computed field, executes function "clip_thumbnail_download_url" */ - thumbnail_download_url?: boolean | number - thumbnail_url?: boolean | number - title?: boolean | number - /** An object relationship */ - user?: playersGenqlSelection - user_steam_id?: boolean | number - views_count?: boolean | number - visibility?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "match_clips" */ -export interface match_clips_aggregateGenqlSelection{ - aggregate?: match_clips_aggregate_fieldsGenqlSelection - nodes?: match_clipsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface match_clips_aggregate_bool_exp {count?: (match_clips_aggregate_bool_exp_count | null)} - -export interface match_clips_aggregate_bool_exp_count {arguments?: (match_clips_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (match_clips_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "match_clips" */ -export interface match_clips_aggregate_fieldsGenqlSelection{ - avg?: match_clips_avg_fieldsGenqlSelection - count?: { __args: {columns?: (match_clips_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: match_clips_max_fieldsGenqlSelection - min?: match_clips_min_fieldsGenqlSelection - stddev?: match_clips_stddev_fieldsGenqlSelection - stddev_pop?: match_clips_stddev_pop_fieldsGenqlSelection - stddev_samp?: match_clips_stddev_samp_fieldsGenqlSelection - sum?: match_clips_sum_fieldsGenqlSelection - var_pop?: match_clips_var_pop_fieldsGenqlSelection - var_samp?: match_clips_var_samp_fieldsGenqlSelection - variance?: match_clips_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "match_clips" */ -export interface match_clips_aggregate_order_by {avg?: (match_clips_avg_order_by | null),count?: (order_by | null),max?: (match_clips_max_order_by | null),min?: (match_clips_min_order_by | null),stddev?: (match_clips_stddev_order_by | null),stddev_pop?: (match_clips_stddev_pop_order_by | null),stddev_samp?: (match_clips_stddev_samp_order_by | null),sum?: (match_clips_sum_order_by | null),var_pop?: (match_clips_var_pop_order_by | null),var_samp?: (match_clips_var_samp_order_by | null),variance?: (match_clips_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "match_clips" */ -export interface match_clips_arr_rel_insert_input {data: match_clips_insert_input[], -/** upsert condition */ -on_conflict?: (match_clips_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface match_clips_avg_fieldsGenqlSelection{ - duration_ms?: boolean | number - kills_count?: boolean | number - round?: boolean | number - size?: boolean | number - target_steam_id?: boolean | number - user_steam_id?: boolean | number - views_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "match_clips" */ -export interface match_clips_avg_order_by {duration_ms?: (order_by | null),kills_count?: (order_by | null),round?: (order_by | null),size?: (order_by | null),target_steam_id?: (order_by | null),user_steam_id?: (order_by | null),views_count?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "match_clips". All fields are combined with a logical 'AND'. */ -export interface match_clips_bool_exp {_and?: (match_clips_bool_exp[] | null),_not?: (match_clips_bool_exp | null),_or?: (match_clips_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),download_url?: (String_comparison_exp | null),duration_ms?: (Int_comparison_exp | null),file?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),kills_count?: (Int_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),render_jobs?: (clip_render_jobs_bool_exp | null),render_jobs_aggregate?: (clip_render_jobs_aggregate_bool_exp | null),round?: (Int_comparison_exp | null),size?: (bigint_comparison_exp | null),target?: (players_bool_exp | null),target_steam_id?: (bigint_comparison_exp | null),thumbnail_download_url?: (String_comparison_exp | null),thumbnail_url?: (String_comparison_exp | null),title?: (String_comparison_exp | null),user?: (players_bool_exp | null),user_steam_id?: (bigint_comparison_exp | null),views_count?: (Int_comparison_exp | null),visibility?: (e_match_clip_visibility_enum_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "match_clips" */ -export interface match_clips_inc_input {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)} - - -/** input type for inserting data into table "match_clips" */ -export interface match_clips_insert_input {created_at?: (Scalars['timestamptz'] | null),duration_ms?: (Scalars['Int'] | null),file?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),kills_count?: (Scalars['Int'] | 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),render_jobs?: (clip_render_jobs_arr_rel_insert_input | null),round?: (Scalars['Int'] | null),size?: (Scalars['bigint'] | null),target?: (players_obj_rel_insert_input | null),target_steam_id?: (Scalars['bigint'] | null),thumbnail_url?: (Scalars['String'] | null),title?: (Scalars['String'] | null),user?: (players_obj_rel_insert_input | null),user_steam_id?: (Scalars['bigint'] | null),views_count?: (Scalars['Int'] | null),visibility?: (e_match_clip_visibility_enum | null)} - - -/** aggregate max on columns */ -export interface match_clips_max_fieldsGenqlSelection{ - created_at?: boolean | number - /** A computed field, executes function "clip_download_url" */ - download_url?: boolean | number - duration_ms?: boolean | number - file?: boolean | number - id?: boolean | number - kills_count?: boolean | number - match_map_demo_id?: boolean | number - match_map_id?: boolean | number - round?: boolean | number - size?: boolean | number - target_steam_id?: boolean | number - /** A computed field, executes function "clip_thumbnail_download_url" */ - thumbnail_download_url?: boolean | number - thumbnail_url?: boolean | number - title?: boolean | number - user_steam_id?: boolean | number - views_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "match_clips" */ -export interface match_clips_max_order_by {created_at?: (order_by | null),duration_ms?: (order_by | null),file?: (order_by | null),id?: (order_by | null),kills_count?: (order_by | null),match_map_demo_id?: (order_by | null),match_map_id?: (order_by | null),round?: (order_by | null),size?: (order_by | null),target_steam_id?: (order_by | null),thumbnail_url?: (order_by | null),title?: (order_by | null),user_steam_id?: (order_by | null),views_count?: (order_by | null)} - - -/** aggregate min on columns */ -export interface match_clips_min_fieldsGenqlSelection{ - created_at?: boolean | number - /** A computed field, executes function "clip_download_url" */ - download_url?: boolean | number - duration_ms?: boolean | number - file?: boolean | number - id?: boolean | number - kills_count?: boolean | number - match_map_demo_id?: boolean | number - match_map_id?: boolean | number - round?: boolean | number - size?: boolean | number - target_steam_id?: boolean | number - /** A computed field, executes function "clip_thumbnail_download_url" */ - thumbnail_download_url?: boolean | number - thumbnail_url?: boolean | number - title?: boolean | number - user_steam_id?: boolean | number - views_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "match_clips" */ -export interface match_clips_min_order_by {created_at?: (order_by | null),duration_ms?: (order_by | null),file?: (order_by | null),id?: (order_by | null),kills_count?: (order_by | null),match_map_demo_id?: (order_by | null),match_map_id?: (order_by | null),round?: (order_by | null),size?: (order_by | null),target_steam_id?: (order_by | null),thumbnail_url?: (order_by | null),title?: (order_by | null),user_steam_id?: (order_by | null),views_count?: (order_by | null)} - - -/** response of any mutation on the table "match_clips" */ -export interface match_clips_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: match_clipsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "match_clips" */ -export interface match_clips_obj_rel_insert_input {data: match_clips_insert_input, -/** upsert condition */ -on_conflict?: (match_clips_on_conflict | null)} - - -/** on_conflict condition type for table "match_clips" */ -export interface match_clips_on_conflict {constraint: match_clips_constraint,update_columns?: match_clips_update_column[],where?: (match_clips_bool_exp | null)} - - -/** Ordering options when selecting data from "match_clips". */ -export interface match_clips_order_by {created_at?: (order_by | null),download_url?: (order_by | null),duration_ms?: (order_by | null),file?: (order_by | null),id?: (order_by | null),kills_count?: (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),render_jobs_aggregate?: (clip_render_jobs_aggregate_order_by | null),round?: (order_by | null),size?: (order_by | null),target?: (players_order_by | null),target_steam_id?: (order_by | null),thumbnail_download_url?: (order_by | null),thumbnail_url?: (order_by | null),title?: (order_by | null),user?: (players_order_by | null),user_steam_id?: (order_by | null),views_count?: (order_by | null),visibility?: (order_by | null)} - - -/** primary key columns input for table: match_clips */ -export interface match_clips_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "match_clips" */ -export interface match_clips_set_input {created_at?: (Scalars['timestamptz'] | null),duration_ms?: (Scalars['Int'] | null),file?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),kills_count?: (Scalars['Int'] | null),match_map_demo_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),round?: (Scalars['Int'] | null),size?: (Scalars['bigint'] | null),target_steam_id?: (Scalars['bigint'] | null),thumbnail_url?: (Scalars['String'] | null),title?: (Scalars['String'] | null),user_steam_id?: (Scalars['bigint'] | null),views_count?: (Scalars['Int'] | null),visibility?: (e_match_clip_visibility_enum | null)} - - -/** aggregate stddev on columns */ -export interface match_clips_stddev_fieldsGenqlSelection{ - duration_ms?: boolean | number - kills_count?: boolean | number - round?: boolean | number - size?: boolean | number - target_steam_id?: boolean | number - user_steam_id?: boolean | number - views_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "match_clips" */ -export interface match_clips_stddev_order_by {duration_ms?: (order_by | null),kills_count?: (order_by | null),round?: (order_by | null),size?: (order_by | null),target_steam_id?: (order_by | null),user_steam_id?: (order_by | null),views_count?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface match_clips_stddev_pop_fieldsGenqlSelection{ - duration_ms?: boolean | number - kills_count?: boolean | number - round?: boolean | number - size?: boolean | number - target_steam_id?: boolean | number - user_steam_id?: boolean | number - views_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "match_clips" */ -export interface match_clips_stddev_pop_order_by {duration_ms?: (order_by | null),kills_count?: (order_by | null),round?: (order_by | null),size?: (order_by | null),target_steam_id?: (order_by | null),user_steam_id?: (order_by | null),views_count?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface match_clips_stddev_samp_fieldsGenqlSelection{ - duration_ms?: boolean | number - kills_count?: boolean | number - round?: boolean | number - size?: boolean | number - target_steam_id?: boolean | number - user_steam_id?: boolean | number - views_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "match_clips" */ -export interface match_clips_stddev_samp_order_by {duration_ms?: (order_by | null),kills_count?: (order_by | null),round?: (order_by | null),size?: (order_by | null),target_steam_id?: (order_by | null),user_steam_id?: (order_by | null),views_count?: (order_by | null)} - - -/** Streaming cursor of the table "match_clips" */ -export interface match_clips_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: match_clips_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface match_clips_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),duration_ms?: (Scalars['Int'] | null),file?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),kills_count?: (Scalars['Int'] | null),match_map_demo_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),round?: (Scalars['Int'] | null),size?: (Scalars['bigint'] | null),target_steam_id?: (Scalars['bigint'] | null),thumbnail_url?: (Scalars['String'] | null),title?: (Scalars['String'] | null),user_steam_id?: (Scalars['bigint'] | null),views_count?: (Scalars['Int'] | null),visibility?: (e_match_clip_visibility_enum | null)} - - -/** aggregate sum on columns */ -export interface match_clips_sum_fieldsGenqlSelection{ - duration_ms?: boolean | number - kills_count?: boolean | number - round?: boolean | number - size?: boolean | number - target_steam_id?: boolean | number - user_steam_id?: boolean | number - views_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "match_clips" */ -export interface match_clips_sum_order_by {duration_ms?: (order_by | null),kills_count?: (order_by | null),round?: (order_by | null),size?: (order_by | null),target_steam_id?: (order_by | null),user_steam_id?: (order_by | null),views_count?: (order_by | null)} - -export interface match_clips_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (match_clips_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (match_clips_set_input | null), -/** filter the rows which have to be updated */ -where: match_clips_bool_exp} - - -/** aggregate var_pop on columns */ -export interface match_clips_var_pop_fieldsGenqlSelection{ - duration_ms?: boolean | number - kills_count?: boolean | number - round?: boolean | number - size?: boolean | number - target_steam_id?: boolean | number - user_steam_id?: boolean | number - views_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "match_clips" */ -export interface match_clips_var_pop_order_by {duration_ms?: (order_by | null),kills_count?: (order_by | null),round?: (order_by | null),size?: (order_by | null),target_steam_id?: (order_by | null),user_steam_id?: (order_by | null),views_count?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface match_clips_var_samp_fieldsGenqlSelection{ - duration_ms?: boolean | number - kills_count?: boolean | number - round?: boolean | number - size?: boolean | number - target_steam_id?: boolean | number - user_steam_id?: boolean | number - views_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "match_clips" */ -export interface match_clips_var_samp_order_by {duration_ms?: (order_by | null),kills_count?: (order_by | null),round?: (order_by | null),size?: (order_by | null),target_steam_id?: (order_by | null),user_steam_id?: (order_by | null),views_count?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface match_clips_variance_fieldsGenqlSelection{ - duration_ms?: boolean | number - kills_count?: boolean | number - round?: boolean | number - size?: boolean | number - target_steam_id?: boolean | number - user_steam_id?: boolean | number - views_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "match_clips" */ -export interface match_clips_variance_order_by {duration_ms?: (order_by | null),kills_count?: (order_by | null),round?: (order_by | null),size?: (order_by | null),target_steam_id?: (order_by | null),user_steam_id?: (order_by | null),views_count?: (order_by | null)} - - -/** columns and relationships of "match_demo_sessions" */ -export interface match_demo_sessionsGenqlSelection{ - 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_activity_at?: boolean | number - last_status_at?: boolean | number - /** An object relationship */ - match?: matchesGenqlSelection - match_id?: 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 - status?: boolean | number - status_history?: { __args: { - /** JSON select path */ - path?: (Scalars['String'] | null)} } | boolean | number - stream_url?: boolean | number - /** An object relationship */ - watcher?: playersGenqlSelection - watcher_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "match_demo_sessions" */ -export interface match_demo_sessions_aggregateGenqlSelection{ - aggregate?: match_demo_sessions_aggregate_fieldsGenqlSelection - nodes?: match_demo_sessionsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface match_demo_sessions_aggregate_bool_exp {count?: (match_demo_sessions_aggregate_bool_exp_count | null)} - -export interface match_demo_sessions_aggregate_bool_exp_count {arguments?: (match_demo_sessions_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (match_demo_sessions_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "match_demo_sessions" */ -export interface match_demo_sessions_aggregate_fieldsGenqlSelection{ - avg?: match_demo_sessions_avg_fieldsGenqlSelection - count?: { __args: {columns?: (match_demo_sessions_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: match_demo_sessions_max_fieldsGenqlSelection - min?: match_demo_sessions_min_fieldsGenqlSelection - stddev?: match_demo_sessions_stddev_fieldsGenqlSelection - stddev_pop?: match_demo_sessions_stddev_pop_fieldsGenqlSelection - stddev_samp?: match_demo_sessions_stddev_samp_fieldsGenqlSelection - sum?: match_demo_sessions_sum_fieldsGenqlSelection - var_pop?: match_demo_sessions_var_pop_fieldsGenqlSelection - var_samp?: match_demo_sessions_var_samp_fieldsGenqlSelection - variance?: match_demo_sessions_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "match_demo_sessions" */ -export interface match_demo_sessions_aggregate_order_by {avg?: (match_demo_sessions_avg_order_by | null),count?: (order_by | null),max?: (match_demo_sessions_max_order_by | null),min?: (match_demo_sessions_min_order_by | null),stddev?: (match_demo_sessions_stddev_order_by | null),stddev_pop?: (match_demo_sessions_stddev_pop_order_by | null),stddev_samp?: (match_demo_sessions_stddev_samp_order_by | null),sum?: (match_demo_sessions_sum_order_by | null),var_pop?: (match_demo_sessions_var_pop_order_by | null),var_samp?: (match_demo_sessions_var_samp_order_by | null),variance?: (match_demo_sessions_variance_order_by | null)} - - -/** append existing jsonb value of filtered columns with new jsonb value */ -export interface match_demo_sessions_append_input {status_history?: (Scalars['jsonb'] | null)} - - -/** input type for inserting array relation for remote table "match_demo_sessions" */ -export interface match_demo_sessions_arr_rel_insert_input {data: match_demo_sessions_insert_input[], -/** upsert condition */ -on_conflict?: (match_demo_sessions_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface match_demo_sessions_avg_fieldsGenqlSelection{ - watcher_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "match_demo_sessions" */ -export interface match_demo_sessions_avg_order_by {watcher_steam_id?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "match_demo_sessions". All fields are combined with a logical 'AND'. */ -export interface match_demo_sessions_bool_exp {_and?: (match_demo_sessions_bool_exp[] | null),_not?: (match_demo_sessions_bool_exp | null),_or?: (match_demo_sessions_bool_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_activity_at?: (timestamptz_comparison_exp | null),last_status_at?: (timestamptz_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_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),status?: (String_comparison_exp | null),status_history?: (jsonb_comparison_exp | null),stream_url?: (String_comparison_exp | null),watcher?: (players_bool_exp | null),watcher_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 match_demo_sessions_delete_at_path_input {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 match_demo_sessions_delete_elem_input {status_history?: (Scalars['Int'] | null)} - - -/** delete key/value pair or string element. key/value pairs are matched based on their key value */ -export interface match_demo_sessions_delete_key_input {status_history?: (Scalars['String'] | null)} - - -/** input type for incrementing numeric columns in table "match_demo_sessions" */ -export interface match_demo_sessions_inc_input {watcher_steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "match_demo_sessions" */ -export interface match_demo_sessions_insert_input {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_activity_at?: (Scalars['timestamptz'] | null),last_status_at?: (Scalars['timestamptz'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | 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),status?: (Scalars['String'] | null),status_history?: (Scalars['jsonb'] | null),stream_url?: (Scalars['String'] | null),watcher?: (players_obj_rel_insert_input | null),watcher_steam_id?: (Scalars['bigint'] | null)} - - -/** aggregate max on columns */ -export interface match_demo_sessions_max_fieldsGenqlSelection{ - created_at?: boolean | number - error_message?: boolean | number - game_server_node_id?: boolean | number - id?: boolean | number - k8s_job_name?: boolean | number - last_activity_at?: boolean | number - last_status_at?: boolean | number - match_id?: boolean | number - match_map_demo_id?: boolean | number - match_map_id?: boolean | number - status?: boolean | number - stream_url?: boolean | number - watcher_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "match_demo_sessions" */ -export interface match_demo_sessions_max_order_by {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_activity_at?: (order_by | null),last_status_at?: (order_by | null),match_id?: (order_by | null),match_map_demo_id?: (order_by | null),match_map_id?: (order_by | null),status?: (order_by | null),stream_url?: (order_by | null),watcher_steam_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface match_demo_sessions_min_fieldsGenqlSelection{ - created_at?: boolean | number - error_message?: boolean | number - game_server_node_id?: boolean | number - id?: boolean | number - k8s_job_name?: boolean | number - last_activity_at?: boolean | number - last_status_at?: boolean | number - match_id?: boolean | number - match_map_demo_id?: boolean | number - match_map_id?: boolean | number - status?: boolean | number - stream_url?: boolean | number - watcher_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "match_demo_sessions" */ -export interface match_demo_sessions_min_order_by {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_activity_at?: (order_by | null),last_status_at?: (order_by | null),match_id?: (order_by | null),match_map_demo_id?: (order_by | null),match_map_id?: (order_by | null),status?: (order_by | null),stream_url?: (order_by | null),watcher_steam_id?: (order_by | null)} - - -/** response of any mutation on the table "match_demo_sessions" */ -export interface match_demo_sessions_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: match_demo_sessionsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "match_demo_sessions" */ -export interface match_demo_sessions_on_conflict {constraint: match_demo_sessions_constraint,update_columns?: match_demo_sessions_update_column[],where?: (match_demo_sessions_bool_exp | null)} - - -/** Ordering options when selecting data from "match_demo_sessions". */ -export interface match_demo_sessions_order_by {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_activity_at?: (order_by | null),last_status_at?: (order_by | null),match?: (matches_order_by | null),match_id?: (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),status?: (order_by | null),status_history?: (order_by | null),stream_url?: (order_by | null),watcher?: (players_order_by | null),watcher_steam_id?: (order_by | null)} - - -/** primary key columns input for table: match_demo_sessions */ -export interface match_demo_sessions_pk_columns_input {id: Scalars['uuid']} - - -/** prepend existing jsonb value of filtered columns with new jsonb value */ -export interface match_demo_sessions_prepend_input {status_history?: (Scalars['jsonb'] | null)} - - -/** input type for updating data in table "match_demo_sessions" */ -export interface match_demo_sessions_set_input {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),status_history?: (Scalars['jsonb'] | null),stream_url?: (Scalars['String'] | null),watcher_steam_id?: (Scalars['bigint'] | null)} - - -/** aggregate stddev on columns */ -export interface match_demo_sessions_stddev_fieldsGenqlSelection{ - watcher_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "match_demo_sessions" */ -export interface match_demo_sessions_stddev_order_by {watcher_steam_id?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface match_demo_sessions_stddev_pop_fieldsGenqlSelection{ - watcher_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "match_demo_sessions" */ -export interface match_demo_sessions_stddev_pop_order_by {watcher_steam_id?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface match_demo_sessions_stddev_samp_fieldsGenqlSelection{ - watcher_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "match_demo_sessions" */ -export interface match_demo_sessions_stddev_samp_order_by {watcher_steam_id?: (order_by | null)} - - -/** Streaming cursor of the table "match_demo_sessions" */ -export interface match_demo_sessions_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: match_demo_sessions_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface match_demo_sessions_stream_cursor_value_input {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),status_history?: (Scalars['jsonb'] | null),stream_url?: (Scalars['String'] | null),watcher_steam_id?: (Scalars['bigint'] | null)} - - -/** aggregate sum on columns */ -export interface match_demo_sessions_sum_fieldsGenqlSelection{ - watcher_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "match_demo_sessions" */ -export interface match_demo_sessions_sum_order_by {watcher_steam_id?: (order_by | null)} - -export interface match_demo_sessions_updates { -/** append existing jsonb value of filtered columns with new jsonb value */ -_append?: (match_demo_sessions_append_input | null), -/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ -_delete_at_path?: (match_demo_sessions_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?: (match_demo_sessions_delete_elem_input | null), -/** delete key/value pair or string element. key/value pairs are matched based on their key value */ -_delete_key?: (match_demo_sessions_delete_key_input | null), -/** increments the numeric columns with given value of the filtered values */ -_inc?: (match_demo_sessions_inc_input | null), -/** prepend existing jsonb value of filtered columns with new jsonb value */ -_prepend?: (match_demo_sessions_prepend_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (match_demo_sessions_set_input | null), -/** filter the rows which have to be updated */ -where: match_demo_sessions_bool_exp} - - -/** aggregate var_pop on columns */ -export interface match_demo_sessions_var_pop_fieldsGenqlSelection{ - watcher_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "match_demo_sessions" */ -export interface match_demo_sessions_var_pop_order_by {watcher_steam_id?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface match_demo_sessions_var_samp_fieldsGenqlSelection{ - watcher_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "match_demo_sessions" */ -export interface match_demo_sessions_var_samp_order_by {watcher_steam_id?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface match_demo_sessions_variance_fieldsGenqlSelection{ - watcher_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "match_demo_sessions" */ -export interface match_demo_sessions_variance_order_by {watcher_steam_id?: (order_by | null)} - - -/** relational table for assigning a players to a match and lineup */ -export interface match_lineup_playersGenqlSelection{ - captain?: boolean | number - checked_in?: boolean | number - discord_id?: boolean | number - id?: boolean | number - is_connected?: boolean | number - /** An object relationship */ - lineup?: match_lineupsGenqlSelection - match_lineup_id?: boolean | number - party_id?: boolean | number - party_source?: boolean | number - placeholder_name?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "match_lineup_players" */ -export interface match_lineup_players_aggregateGenqlSelection{ - aggregate?: match_lineup_players_aggregate_fieldsGenqlSelection - nodes?: match_lineup_playersGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface match_lineup_players_aggregate_bool_exp {bool_and?: (match_lineup_players_aggregate_bool_exp_bool_and | null),bool_or?: (match_lineup_players_aggregate_bool_exp_bool_or | null),count?: (match_lineup_players_aggregate_bool_exp_count | null)} - -export interface match_lineup_players_aggregate_bool_exp_bool_and {arguments: match_lineup_players_select_column_match_lineup_players_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (match_lineup_players_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface match_lineup_players_aggregate_bool_exp_bool_or {arguments: match_lineup_players_select_column_match_lineup_players_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (match_lineup_players_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface match_lineup_players_aggregate_bool_exp_count {arguments?: (match_lineup_players_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (match_lineup_players_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "match_lineup_players" */ -export interface match_lineup_players_aggregate_fieldsGenqlSelection{ - avg?: match_lineup_players_avg_fieldsGenqlSelection - count?: { __args: {columns?: (match_lineup_players_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: match_lineup_players_max_fieldsGenqlSelection - min?: match_lineup_players_min_fieldsGenqlSelection - stddev?: match_lineup_players_stddev_fieldsGenqlSelection - stddev_pop?: match_lineup_players_stddev_pop_fieldsGenqlSelection - stddev_samp?: match_lineup_players_stddev_samp_fieldsGenqlSelection - sum?: match_lineup_players_sum_fieldsGenqlSelection - var_pop?: match_lineup_players_var_pop_fieldsGenqlSelection - var_samp?: match_lineup_players_var_samp_fieldsGenqlSelection - variance?: match_lineup_players_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "match_lineup_players" */ -export interface match_lineup_players_aggregate_order_by {avg?: (match_lineup_players_avg_order_by | null),count?: (order_by | null),max?: (match_lineup_players_max_order_by | null),min?: (match_lineup_players_min_order_by | null),stddev?: (match_lineup_players_stddev_order_by | null),stddev_pop?: (match_lineup_players_stddev_pop_order_by | null),stddev_samp?: (match_lineup_players_stddev_samp_order_by | null),sum?: (match_lineup_players_sum_order_by | null),var_pop?: (match_lineup_players_var_pop_order_by | null),var_samp?: (match_lineup_players_var_samp_order_by | null),variance?: (match_lineup_players_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "match_lineup_players" */ -export interface match_lineup_players_arr_rel_insert_input {data: match_lineup_players_insert_input[], -/** upsert condition */ -on_conflict?: (match_lineup_players_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface match_lineup_players_avg_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "match_lineup_players" */ -export interface match_lineup_players_avg_order_by {steam_id?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "match_lineup_players". All fields are combined with a logical 'AND'. */ -export interface match_lineup_players_bool_exp {_and?: (match_lineup_players_bool_exp[] | null),_not?: (match_lineup_players_bool_exp | null),_or?: (match_lineup_players_bool_exp[] | null),captain?: (Boolean_comparison_exp | null),checked_in?: (Boolean_comparison_exp | null),discord_id?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),is_connected?: (Boolean_comparison_exp | null),lineup?: (match_lineups_bool_exp | null),match_lineup_id?: (uuid_comparison_exp | null),party_id?: (uuid_comparison_exp | null),party_source?: (e_match_party_sources_enum_comparison_exp | null),placeholder_name?: (String_comparison_exp | null),player?: (players_bool_exp | null),steam_id?: (bigint_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "match_lineup_players" */ -export interface match_lineup_players_inc_input {steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "match_lineup_players" */ -export interface match_lineup_players_insert_input {captain?: (Scalars['Boolean'] | null),checked_in?: (Scalars['Boolean'] | null),discord_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_connected?: (Scalars['Boolean'] | null),lineup?: (match_lineups_obj_rel_insert_input | null),match_lineup_id?: (Scalars['uuid'] | null),party_id?: (Scalars['uuid'] | null),party_source?: (e_match_party_sources_enum | null),placeholder_name?: (Scalars['String'] | null),player?: (players_obj_rel_insert_input | null),steam_id?: (Scalars['bigint'] | null)} - - -/** aggregate max on columns */ -export interface match_lineup_players_max_fieldsGenqlSelection{ - discord_id?: boolean | number - id?: boolean | number - match_lineup_id?: boolean | number - party_id?: boolean | number - placeholder_name?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "match_lineup_players" */ -export interface match_lineup_players_max_order_by {discord_id?: (order_by | null),id?: (order_by | null),match_lineup_id?: (order_by | null),party_id?: (order_by | null),placeholder_name?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface match_lineup_players_min_fieldsGenqlSelection{ - discord_id?: boolean | number - id?: boolean | number - match_lineup_id?: boolean | number - party_id?: boolean | number - placeholder_name?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "match_lineup_players" */ -export interface match_lineup_players_min_order_by {discord_id?: (order_by | null),id?: (order_by | null),match_lineup_id?: (order_by | null),party_id?: (order_by | null),placeholder_name?: (order_by | null),steam_id?: (order_by | null)} - - -/** response of any mutation on the table "match_lineup_players" */ -export interface match_lineup_players_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: match_lineup_playersGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "match_lineup_players" */ -export interface match_lineup_players_on_conflict {constraint: match_lineup_players_constraint,update_columns?: match_lineup_players_update_column[],where?: (match_lineup_players_bool_exp | null)} - - -/** Ordering options when selecting data from "match_lineup_players". */ -export interface match_lineup_players_order_by {captain?: (order_by | null),checked_in?: (order_by | null),discord_id?: (order_by | null),id?: (order_by | null),is_connected?: (order_by | null),lineup?: (match_lineups_order_by | null),match_lineup_id?: (order_by | null),party_id?: (order_by | null),party_source?: (order_by | null),placeholder_name?: (order_by | null),player?: (players_order_by | null),steam_id?: (order_by | null)} - - -/** primary key columns input for table: match_lineup_players */ -export interface match_lineup_players_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "match_lineup_players" */ -export interface match_lineup_players_set_input {captain?: (Scalars['Boolean'] | null),checked_in?: (Scalars['Boolean'] | null),discord_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_connected?: (Scalars['Boolean'] | null),match_lineup_id?: (Scalars['uuid'] | null),party_id?: (Scalars['uuid'] | null),party_source?: (e_match_party_sources_enum | null),placeholder_name?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null)} - - -/** aggregate stddev on columns */ -export interface match_lineup_players_stddev_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "match_lineup_players" */ -export interface match_lineup_players_stddev_order_by {steam_id?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface match_lineup_players_stddev_pop_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "match_lineup_players" */ -export interface match_lineup_players_stddev_pop_order_by {steam_id?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface match_lineup_players_stddev_samp_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "match_lineup_players" */ -export interface match_lineup_players_stddev_samp_order_by {steam_id?: (order_by | null)} - - -/** Streaming cursor of the table "match_lineup_players" */ -export interface match_lineup_players_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: match_lineup_players_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface match_lineup_players_stream_cursor_value_input {captain?: (Scalars['Boolean'] | null),checked_in?: (Scalars['Boolean'] | null),discord_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_connected?: (Scalars['Boolean'] | null),match_lineup_id?: (Scalars['uuid'] | null),party_id?: (Scalars['uuid'] | null),party_source?: (e_match_party_sources_enum | null),placeholder_name?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null)} - - -/** aggregate sum on columns */ -export interface match_lineup_players_sum_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "match_lineup_players" */ -export interface match_lineup_players_sum_order_by {steam_id?: (order_by | null)} - -export interface match_lineup_players_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (match_lineup_players_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (match_lineup_players_set_input | null), -/** filter the rows which have to be updated */ -where: match_lineup_players_bool_exp} - - -/** aggregate var_pop on columns */ -export interface match_lineup_players_var_pop_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "match_lineup_players" */ -export interface match_lineup_players_var_pop_order_by {steam_id?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface match_lineup_players_var_samp_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "match_lineup_players" */ -export interface match_lineup_players_var_samp_order_by {steam_id?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface match_lineup_players_variance_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "match_lineup_players" */ -export interface match_lineup_players_variance_order_by {steam_id?: (order_by | null)} - - -/** relational table for assigning a team to a match and lineup */ -export interface match_lineupsGenqlSelection{ - /** A computed field, executes function "can_pick_map_veto" */ - can_pick_map_veto?: boolean | number - /** A computed field, executes function "can_pick_region_veto" */ - can_pick_region_veto?: boolean | number - /** A computed field, executes function "can_update_lineup" */ - can_update_lineup?: boolean | number - /** An object relationship */ - captain?: v_match_captainsGenqlSelection - /** An object relationship */ - coach?: playersGenqlSelection - coach_steam_id?: boolean | number - id?: boolean | number - /** A computed field, executes function "is_on_lineup" */ - is_on_lineup?: boolean | number - /** A computed field, executes function "lineup_is_picking_map_veto" */ - is_picking_map_veto?: boolean | number - /** A computed field, executes function "lineup_is_picking_region_veto" */ - is_picking_region_veto?: boolean | number - /** A computed field, executes function "is_match_lineup_ready" */ - is_ready?: boolean | number - /** An array relationship */ - 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 */ - 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)} }) - /** An object relationship */ - match?: matchesGenqlSelection - match_id?: 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)} }) - /** A computed field, executes function "get_team_name" */ - name?: boolean | number - /** An object relationship */ - team?: teamsGenqlSelection - team_id?: boolean | number - team_name?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "match_lineups" */ -export interface match_lineups_aggregateGenqlSelection{ - aggregate?: match_lineups_aggregate_fieldsGenqlSelection - nodes?: match_lineupsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface match_lineups_aggregate_bool_exp {count?: (match_lineups_aggregate_bool_exp_count | null)} - -export interface match_lineups_aggregate_bool_exp_count {arguments?: (match_lineups_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (match_lineups_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "match_lineups" */ -export interface match_lineups_aggregate_fieldsGenqlSelection{ - avg?: match_lineups_avg_fieldsGenqlSelection - count?: { __args: {columns?: (match_lineups_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: match_lineups_max_fieldsGenqlSelection - min?: match_lineups_min_fieldsGenqlSelection - stddev?: match_lineups_stddev_fieldsGenqlSelection - stddev_pop?: match_lineups_stddev_pop_fieldsGenqlSelection - stddev_samp?: match_lineups_stddev_samp_fieldsGenqlSelection - sum?: match_lineups_sum_fieldsGenqlSelection - var_pop?: match_lineups_var_pop_fieldsGenqlSelection - var_samp?: match_lineups_var_samp_fieldsGenqlSelection - variance?: match_lineups_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "match_lineups" */ -export interface match_lineups_aggregate_order_by {avg?: (match_lineups_avg_order_by | null),count?: (order_by | null),max?: (match_lineups_max_order_by | null),min?: (match_lineups_min_order_by | null),stddev?: (match_lineups_stddev_order_by | null),stddev_pop?: (match_lineups_stddev_pop_order_by | null),stddev_samp?: (match_lineups_stddev_samp_order_by | null),sum?: (match_lineups_sum_order_by | null),var_pop?: (match_lineups_var_pop_order_by | null),var_samp?: (match_lineups_var_samp_order_by | null),variance?: (match_lineups_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "match_lineups" */ -export interface match_lineups_arr_rel_insert_input {data: match_lineups_insert_input[], -/** upsert condition */ -on_conflict?: (match_lineups_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface match_lineups_avg_fieldsGenqlSelection{ - coach_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "match_lineups" */ -export interface match_lineups_avg_order_by {coach_steam_id?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "match_lineups". All fields are combined with a logical 'AND'. */ -export interface match_lineups_bool_exp {_and?: (match_lineups_bool_exp[] | null),_not?: (match_lineups_bool_exp | null),_or?: (match_lineups_bool_exp[] | null),can_pick_map_veto?: (Boolean_comparison_exp | null),can_pick_region_veto?: (Boolean_comparison_exp | null),can_update_lineup?: (Boolean_comparison_exp | null),captain?: (v_match_captains_bool_exp | null),coach?: (players_bool_exp | null),coach_steam_id?: (bigint_comparison_exp | null),id?: (uuid_comparison_exp | null),is_on_lineup?: (Boolean_comparison_exp | null),is_picking_map_veto?: (Boolean_comparison_exp | null),is_picking_region_veto?: (Boolean_comparison_exp | null),is_ready?: (Boolean_comparison_exp | null),lineup_players?: (match_lineup_players_bool_exp | null),lineup_players_aggregate?: (match_lineup_players_aggregate_bool_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_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),name?: (String_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null),team_name?: (String_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "match_lineups" */ -export interface match_lineups_inc_input {coach_steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "match_lineups" */ -export interface match_lineups_insert_input {captain?: (v_match_captains_obj_rel_insert_input | null),coach?: (players_obj_rel_insert_input | null),coach_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),lineup_players?: (match_lineup_players_arr_rel_insert_input | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_veto_picks?: (match_map_veto_picks_arr_rel_insert_input | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null),team_name?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface match_lineups_max_fieldsGenqlSelection{ - coach_steam_id?: boolean | number - id?: boolean | number - match_id?: boolean | number - /** A computed field, executes function "get_team_name" */ - name?: boolean | number - team_id?: boolean | number - team_name?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "match_lineups" */ -export interface match_lineups_max_order_by {coach_steam_id?: (order_by | null),id?: (order_by | null),match_id?: (order_by | null),team_id?: (order_by | null),team_name?: (order_by | null)} - - -/** aggregate min on columns */ -export interface match_lineups_min_fieldsGenqlSelection{ - coach_steam_id?: boolean | number - id?: boolean | number - match_id?: boolean | number - /** A computed field, executes function "get_team_name" */ - name?: boolean | number - team_id?: boolean | number - team_name?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "match_lineups" */ -export interface match_lineups_min_order_by {coach_steam_id?: (order_by | null),id?: (order_by | null),match_id?: (order_by | null),team_id?: (order_by | null),team_name?: (order_by | null)} - - -/** response of any mutation on the table "match_lineups" */ -export interface match_lineups_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: match_lineupsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "match_lineups" */ -export interface match_lineups_obj_rel_insert_input {data: match_lineups_insert_input, -/** upsert condition */ -on_conflict?: (match_lineups_on_conflict | null)} - - -/** on_conflict condition type for table "match_lineups" */ -export interface match_lineups_on_conflict {constraint: match_lineups_constraint,update_columns?: match_lineups_update_column[],where?: (match_lineups_bool_exp | null)} - - -/** Ordering options when selecting data from "match_lineups". */ -export interface match_lineups_order_by {can_pick_map_veto?: (order_by | null),can_pick_region_veto?: (order_by | null),can_update_lineup?: (order_by | null),captain?: (v_match_captains_order_by | null),coach?: (players_order_by | null),coach_steam_id?: (order_by | null),id?: (order_by | null),is_on_lineup?: (order_by | null),is_picking_map_veto?: (order_by | null),is_picking_region_veto?: (order_by | null),is_ready?: (order_by | null),lineup_players_aggregate?: (match_lineup_players_aggregate_order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_veto_picks_aggregate?: (match_map_veto_picks_aggregate_order_by | null),name?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null),team_name?: (order_by | null)} - - -/** primary key columns input for table: match_lineups */ -export interface match_lineups_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "match_lineups" */ -export interface match_lineups_set_input {coach_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),team_id?: (Scalars['uuid'] | null),team_name?: (Scalars['String'] | null)} - - -/** aggregate stddev on columns */ -export interface match_lineups_stddev_fieldsGenqlSelection{ - coach_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "match_lineups" */ -export interface match_lineups_stddev_order_by {coach_steam_id?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface match_lineups_stddev_pop_fieldsGenqlSelection{ - coach_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "match_lineups" */ -export interface match_lineups_stddev_pop_order_by {coach_steam_id?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface match_lineups_stddev_samp_fieldsGenqlSelection{ - coach_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "match_lineups" */ -export interface match_lineups_stddev_samp_order_by {coach_steam_id?: (order_by | null)} - - -/** Streaming cursor of the table "match_lineups" */ -export interface match_lineups_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: match_lineups_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface match_lineups_stream_cursor_value_input {coach_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),team_id?: (Scalars['uuid'] | null),team_name?: (Scalars['String'] | null)} - - -/** aggregate sum on columns */ -export interface match_lineups_sum_fieldsGenqlSelection{ - coach_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "match_lineups" */ -export interface match_lineups_sum_order_by {coach_steam_id?: (order_by | null)} - -export interface match_lineups_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (match_lineups_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (match_lineups_set_input | null), -/** filter the rows which have to be updated */ -where: match_lineups_bool_exp} - - -/** aggregate var_pop on columns */ -export interface match_lineups_var_pop_fieldsGenqlSelection{ - coach_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "match_lineups" */ -export interface match_lineups_var_pop_order_by {coach_steam_id?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface match_lineups_var_samp_fieldsGenqlSelection{ - coach_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "match_lineups" */ -export interface match_lineups_var_samp_order_by {coach_steam_id?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface match_lineups_variance_fieldsGenqlSelection{ - coach_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "match_lineups" */ -export interface match_lineups_variance_order_by {coach_steam_id?: (order_by | null)} - - -/** columns and relationships of "match_map_demos" */ -export interface match_map_demosGenqlSelection{ - bombs?: { __args: { - /** JSON select path */ - path?: (Scalars['String'] | null)} } | boolean | number - /** An array relationship */ - clip_render_jobs?: (clip_render_jobsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (clip_render_jobs_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (clip_render_jobs_order_by[] | null), - /** filter the rows returned */ - where?: (clip_render_jobs_bool_exp | null)} }) - /** An aggregate relationship */ - clip_render_jobs_aggregate?: (clip_render_jobs_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (clip_render_jobs_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (clip_render_jobs_order_by[] | null), - /** filter the rows returned */ - where?: (clip_render_jobs_bool_exp | null)} }) - created_at?: boolean | number - cs2_build?: boolean | number - /** An array relationship */ - demo_sessions?: (match_demo_sessionsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_demo_sessions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_demo_sessions_order_by[] | null), - /** filter the rows returned */ - where?: (match_demo_sessions_bool_exp | null)} }) - /** An aggregate relationship */ - demo_sessions_aggregate?: (match_demo_sessions_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_demo_sessions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_demo_sessions_order_by[] | null), - /** filter the rows returned */ - where?: (match_demo_sessions_bool_exp | null)} }) - /** A computed field, executes function "demo_download_url" */ - download_url?: boolean | number - duration_seconds?: boolean | number - file?: boolean | number - geometry_validated?: boolean | number - id?: boolean | number - kills?: { __args: { - /** JSON select path */ - path?: (Scalars['String'] | null)} } | boolean | number - map_name?: boolean | number - /** An object relationship */ - match?: matchesGenqlSelection - /** 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)} }) - match_id?: boolean | number - /** An object relationship */ - match_map?: match_mapsGenqlSelection - match_map_id?: boolean | number - metadata_parsed_at?: boolean | number - parser_version?: boolean | number - playback_file?: boolean | number - playback_size?: boolean | number - /** A computed field, executes function "demo_playback_url" */ - playback_url?: boolean | number - playback_version?: boolean | number - players?: { __args: { - /** JSON select path */ - path?: (Scalars['String'] | null)} } | boolean | number - round_ticks?: { __args: { - /** JSON select path */ - path?: (Scalars['String'] | null)} } | boolean | number - size?: boolean | number - tick_rate?: boolean | number - total_ticks?: boolean | number - workshop_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "match_map_demos" */ -export interface match_map_demos_aggregateGenqlSelection{ - aggregate?: match_map_demos_aggregate_fieldsGenqlSelection - nodes?: match_map_demosGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface match_map_demos_aggregate_bool_exp {bool_and?: (match_map_demos_aggregate_bool_exp_bool_and | null),bool_or?: (match_map_demos_aggregate_bool_exp_bool_or | null),count?: (match_map_demos_aggregate_bool_exp_count | null)} - -export interface match_map_demos_aggregate_bool_exp_bool_and {arguments: match_map_demos_select_column_match_map_demos_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (match_map_demos_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface match_map_demos_aggregate_bool_exp_bool_or {arguments: match_map_demos_select_column_match_map_demos_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (match_map_demos_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface match_map_demos_aggregate_bool_exp_count {arguments?: (match_map_demos_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (match_map_demos_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "match_map_demos" */ -export interface match_map_demos_aggregate_fieldsGenqlSelection{ - avg?: match_map_demos_avg_fieldsGenqlSelection - count?: { __args: {columns?: (match_map_demos_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: match_map_demos_max_fieldsGenqlSelection - min?: match_map_demos_min_fieldsGenqlSelection - stddev?: match_map_demos_stddev_fieldsGenqlSelection - stddev_pop?: match_map_demos_stddev_pop_fieldsGenqlSelection - stddev_samp?: match_map_demos_stddev_samp_fieldsGenqlSelection - sum?: match_map_demos_sum_fieldsGenqlSelection - var_pop?: match_map_demos_var_pop_fieldsGenqlSelection - var_samp?: match_map_demos_var_samp_fieldsGenqlSelection - variance?: match_map_demos_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "match_map_demos" */ -export interface match_map_demos_aggregate_order_by {avg?: (match_map_demos_avg_order_by | null),count?: (order_by | null),max?: (match_map_demos_max_order_by | null),min?: (match_map_demos_min_order_by | null),stddev?: (match_map_demos_stddev_order_by | null),stddev_pop?: (match_map_demos_stddev_pop_order_by | null),stddev_samp?: (match_map_demos_stddev_samp_order_by | null),sum?: (match_map_demos_sum_order_by | null),var_pop?: (match_map_demos_var_pop_order_by | null),var_samp?: (match_map_demos_var_samp_order_by | null),variance?: (match_map_demos_variance_order_by | null)} - - -/** append existing jsonb value of filtered columns with new jsonb value */ -export interface match_map_demos_append_input {bombs?: (Scalars['jsonb'] | null),kills?: (Scalars['jsonb'] | null),players?: (Scalars['jsonb'] | null),round_ticks?: (Scalars['jsonb'] | null)} - - -/** input type for inserting array relation for remote table "match_map_demos" */ -export interface match_map_demos_arr_rel_insert_input {data: match_map_demos_insert_input[], -/** upsert condition */ -on_conflict?: (match_map_demos_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface match_map_demos_avg_fieldsGenqlSelection{ - duration_seconds?: boolean | number - parser_version?: boolean | number - playback_size?: boolean | number - playback_version?: boolean | number - size?: boolean | number - tick_rate?: boolean | number - total_ticks?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "match_map_demos" */ -export interface match_map_demos_avg_order_by {duration_seconds?: (order_by | null),parser_version?: (order_by | null),playback_size?: (order_by | null),playback_version?: (order_by | null),size?: (order_by | null),tick_rate?: (order_by | null),total_ticks?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "match_map_demos". All fields are combined with a logical 'AND'. */ -export interface match_map_demos_bool_exp {_and?: (match_map_demos_bool_exp[] | null),_not?: (match_map_demos_bool_exp | null),_or?: (match_map_demos_bool_exp[] | null),bombs?: (jsonb_comparison_exp | null),clip_render_jobs?: (clip_render_jobs_bool_exp | null),clip_render_jobs_aggregate?: (clip_render_jobs_aggregate_bool_exp | null),created_at?: (timestamptz_comparison_exp | null),cs2_build?: (String_comparison_exp | null),demo_sessions?: (match_demo_sessions_bool_exp | null),demo_sessions_aggregate?: (match_demo_sessions_aggregate_bool_exp | null),download_url?: (String_comparison_exp | null),duration_seconds?: (Float_comparison_exp | null),file?: (String_comparison_exp | null),geometry_validated?: (Boolean_comparison_exp | null),id?: (uuid_comparison_exp | null),kills?: (jsonb_comparison_exp | null),map_name?: (String_comparison_exp | null),match?: (matches_bool_exp | null),match_clips?: (match_clips_bool_exp | null),match_clips_aggregate?: (match_clips_aggregate_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_id?: (uuid_comparison_exp | null),metadata_parsed_at?: (timestamptz_comparison_exp | null),parser_version?: (Int_comparison_exp | null),playback_file?: (String_comparison_exp | null),playback_size?: (Int_comparison_exp | null),playback_url?: (String_comparison_exp | null),playback_version?: (Int_comparison_exp | null),players?: (jsonb_comparison_exp | null),round_ticks?: (jsonb_comparison_exp | null),size?: (Int_comparison_exp | null),tick_rate?: (Float_comparison_exp | null),total_ticks?: (Int_comparison_exp | null),workshop_id?: (String_comparison_exp | null)} - - -/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ -export interface match_map_demos_delete_at_path_input {bombs?: (Scalars['String'][] | null),kills?: (Scalars['String'][] | null),players?: (Scalars['String'][] | null),round_ticks?: (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 match_map_demos_delete_elem_input {bombs?: (Scalars['Int'] | null),kills?: (Scalars['Int'] | null),players?: (Scalars['Int'] | null),round_ticks?: (Scalars['Int'] | null)} - - -/** delete key/value pair or string element. key/value pairs are matched based on their key value */ -export interface match_map_demos_delete_key_input {bombs?: (Scalars['String'] | null),kills?: (Scalars['String'] | null),players?: (Scalars['String'] | null),round_ticks?: (Scalars['String'] | null)} - - -/** input type for incrementing numeric columns in table "match_map_demos" */ -export interface match_map_demos_inc_input {parser_version?: (Scalars['Int'] | null),playback_size?: (Scalars['Int'] | null),playback_version?: (Scalars['Int'] | null),size?: (Scalars['Int'] | null),tick_rate?: (Scalars['Float'] | null),total_ticks?: (Scalars['Int'] | null)} - - -/** input type for inserting data into table "match_map_demos" */ -export interface match_map_demos_insert_input {bombs?: (Scalars['jsonb'] | null),clip_render_jobs?: (clip_render_jobs_arr_rel_insert_input | null),created_at?: (Scalars['timestamptz'] | null),cs2_build?: (Scalars['String'] | null),demo_sessions?: (match_demo_sessions_arr_rel_insert_input | null),file?: (Scalars['String'] | null),geometry_validated?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),kills?: (Scalars['jsonb'] | null),map_name?: (Scalars['String'] | null),match?: (matches_obj_rel_insert_input | null),match_clips?: (match_clips_arr_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_map?: (match_maps_obj_rel_insert_input | null),match_map_id?: (Scalars['uuid'] | null),metadata_parsed_at?: (Scalars['timestamptz'] | null),parser_version?: (Scalars['Int'] | null),playback_file?: (Scalars['String'] | null),playback_size?: (Scalars['Int'] | null),playback_version?: (Scalars['Int'] | 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)} - - -/** aggregate max on columns */ -export interface match_map_demos_max_fieldsGenqlSelection{ - created_at?: boolean | number - cs2_build?: boolean | number - /** A computed field, executes function "demo_download_url" */ - download_url?: boolean | number - duration_seconds?: boolean | number - file?: boolean | number - id?: boolean | number - map_name?: boolean | number - match_id?: boolean | number - match_map_id?: boolean | number - metadata_parsed_at?: boolean | number - parser_version?: boolean | number - playback_file?: boolean | number - playback_size?: boolean | number - /** A computed field, executes function "demo_playback_url" */ - playback_url?: boolean | number - playback_version?: boolean | number - size?: boolean | number - tick_rate?: boolean | number - total_ticks?: boolean | number - workshop_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "match_map_demos" */ -export interface match_map_demos_max_order_by {created_at?: (order_by | null),cs2_build?: (order_by | null),duration_seconds?: (order_by | null),file?: (order_by | null),id?: (order_by | null),map_name?: (order_by | null),match_id?: (order_by | null),match_map_id?: (order_by | null),metadata_parsed_at?: (order_by | null),parser_version?: (order_by | null),playback_file?: (order_by | null),playback_size?: (order_by | null),playback_version?: (order_by | null),size?: (order_by | null),tick_rate?: (order_by | null),total_ticks?: (order_by | null),workshop_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface match_map_demos_min_fieldsGenqlSelection{ - created_at?: boolean | number - cs2_build?: boolean | number - /** A computed field, executes function "demo_download_url" */ - download_url?: boolean | number - duration_seconds?: boolean | number - file?: boolean | number - id?: boolean | number - map_name?: boolean | number - match_id?: boolean | number - match_map_id?: boolean | number - metadata_parsed_at?: boolean | number - parser_version?: boolean | number - playback_file?: boolean | number - playback_size?: boolean | number - /** A computed field, executes function "demo_playback_url" */ - playback_url?: boolean | number - playback_version?: boolean | number - size?: boolean | number - tick_rate?: boolean | number - total_ticks?: boolean | number - workshop_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "match_map_demos" */ -export interface match_map_demos_min_order_by {created_at?: (order_by | null),cs2_build?: (order_by | null),duration_seconds?: (order_by | null),file?: (order_by | null),id?: (order_by | null),map_name?: (order_by | null),match_id?: (order_by | null),match_map_id?: (order_by | null),metadata_parsed_at?: (order_by | null),parser_version?: (order_by | null),playback_file?: (order_by | null),playback_size?: (order_by | null),playback_version?: (order_by | null),size?: (order_by | null),tick_rate?: (order_by | null),total_ticks?: (order_by | null),workshop_id?: (order_by | null)} - - -/** response of any mutation on the table "match_map_demos" */ -export interface match_map_demos_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: match_map_demosGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "match_map_demos" */ -export interface match_map_demos_obj_rel_insert_input {data: match_map_demos_insert_input, -/** upsert condition */ -on_conflict?: (match_map_demos_on_conflict | null)} - - -/** on_conflict condition type for table "match_map_demos" */ -export interface match_map_demos_on_conflict {constraint: match_map_demos_constraint,update_columns?: match_map_demos_update_column[],where?: (match_map_demos_bool_exp | null)} - - -/** Ordering options when selecting data from "match_map_demos". */ -export interface match_map_demos_order_by {bombs?: (order_by | null),clip_render_jobs_aggregate?: (clip_render_jobs_aggregate_order_by | null),created_at?: (order_by | null),cs2_build?: (order_by | null),demo_sessions_aggregate?: (match_demo_sessions_aggregate_order_by | null),download_url?: (order_by | null),duration_seconds?: (order_by | null),file?: (order_by | null),geometry_validated?: (order_by | null),id?: (order_by | null),kills?: (order_by | null),map_name?: (order_by | null),match?: (matches_order_by | null),match_clips_aggregate?: (match_clips_aggregate_order_by | null),match_id?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_id?: (order_by | null),metadata_parsed_at?: (order_by | null),parser_version?: (order_by | null),playback_file?: (order_by | null),playback_size?: (order_by | null),playback_url?: (order_by | null),playback_version?: (order_by | null),players?: (order_by | null),round_ticks?: (order_by | null),size?: (order_by | null),tick_rate?: (order_by | null),total_ticks?: (order_by | null),workshop_id?: (order_by | null)} - - -/** primary key columns input for table: match_map_demos */ -export interface match_map_demos_pk_columns_input {id: Scalars['uuid']} - - -/** prepend existing jsonb value of filtered columns with new jsonb value */ -export interface match_map_demos_prepend_input {bombs?: (Scalars['jsonb'] | null),kills?: (Scalars['jsonb'] | null),players?: (Scalars['jsonb'] | null),round_ticks?: (Scalars['jsonb'] | null)} - - -/** input type for updating data in table "match_map_demos" */ -export interface match_map_demos_set_input {bombs?: (Scalars['jsonb'] | null),created_at?: (Scalars['timestamptz'] | null),cs2_build?: (Scalars['String'] | null),file?: (Scalars['String'] | null),geometry_validated?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),kills?: (Scalars['jsonb'] | null),map_name?: (Scalars['String'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),metadata_parsed_at?: (Scalars['timestamptz'] | null),parser_version?: (Scalars['Int'] | null),playback_file?: (Scalars['String'] | null),playback_size?: (Scalars['Int'] | null),playback_version?: (Scalars['Int'] | 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)} - - -/** aggregate stddev on columns */ -export interface match_map_demos_stddev_fieldsGenqlSelection{ - duration_seconds?: boolean | number - parser_version?: boolean | number - playback_size?: boolean | number - playback_version?: boolean | number - size?: boolean | number - tick_rate?: boolean | number - total_ticks?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "match_map_demos" */ -export interface match_map_demos_stddev_order_by {duration_seconds?: (order_by | null),parser_version?: (order_by | null),playback_size?: (order_by | null),playback_version?: (order_by | null),size?: (order_by | null),tick_rate?: (order_by | null),total_ticks?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface match_map_demos_stddev_pop_fieldsGenqlSelection{ - duration_seconds?: boolean | number - parser_version?: boolean | number - playback_size?: boolean | number - playback_version?: boolean | number - size?: boolean | number - tick_rate?: boolean | number - total_ticks?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "match_map_demos" */ -export interface match_map_demos_stddev_pop_order_by {duration_seconds?: (order_by | null),parser_version?: (order_by | null),playback_size?: (order_by | null),playback_version?: (order_by | null),size?: (order_by | null),tick_rate?: (order_by | null),total_ticks?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface match_map_demos_stddev_samp_fieldsGenqlSelection{ - duration_seconds?: boolean | number - parser_version?: boolean | number - playback_size?: boolean | number - playback_version?: boolean | number - size?: boolean | number - tick_rate?: boolean | number - total_ticks?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "match_map_demos" */ -export interface match_map_demos_stddev_samp_order_by {duration_seconds?: (order_by | null),parser_version?: (order_by | null),playback_size?: (order_by | null),playback_version?: (order_by | null),size?: (order_by | null),tick_rate?: (order_by | null),total_ticks?: (order_by | null)} - - -/** Streaming cursor of the table "match_map_demos" */ -export interface match_map_demos_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: match_map_demos_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface match_map_demos_stream_cursor_value_input {bombs?: (Scalars['jsonb'] | null),created_at?: (Scalars['timestamptz'] | null),cs2_build?: (Scalars['String'] | null),duration_seconds?: (Scalars['Float'] | null),file?: (Scalars['String'] | null),geometry_validated?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),kills?: (Scalars['jsonb'] | null),map_name?: (Scalars['String'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),metadata_parsed_at?: (Scalars['timestamptz'] | null),parser_version?: (Scalars['Int'] | null),playback_file?: (Scalars['String'] | null),playback_size?: (Scalars['Int'] | null),playback_version?: (Scalars['Int'] | 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)} - - -/** aggregate sum on columns */ -export interface match_map_demos_sum_fieldsGenqlSelection{ - duration_seconds?: boolean | number - parser_version?: boolean | number - playback_size?: boolean | number - playback_version?: boolean | number - size?: boolean | number - tick_rate?: boolean | number - total_ticks?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "match_map_demos" */ -export interface match_map_demos_sum_order_by {duration_seconds?: (order_by | null),parser_version?: (order_by | null),playback_size?: (order_by | null),playback_version?: (order_by | null),size?: (order_by | null),tick_rate?: (order_by | null),total_ticks?: (order_by | null)} - -export interface match_map_demos_updates { -/** append existing jsonb value of filtered columns with new jsonb value */ -_append?: (match_map_demos_append_input | null), -/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ -_delete_at_path?: (match_map_demos_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?: (match_map_demos_delete_elem_input | null), -/** delete key/value pair or string element. key/value pairs are matched based on their key value */ -_delete_key?: (match_map_demos_delete_key_input | null), -/** increments the numeric columns with given value of the filtered values */ -_inc?: (match_map_demos_inc_input | null), -/** prepend existing jsonb value of filtered columns with new jsonb value */ -_prepend?: (match_map_demos_prepend_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (match_map_demos_set_input | null), -/** filter the rows which have to be updated */ -where: match_map_demos_bool_exp} - - -/** aggregate var_pop on columns */ -export interface match_map_demos_var_pop_fieldsGenqlSelection{ - duration_seconds?: boolean | number - parser_version?: boolean | number - playback_size?: boolean | number - playback_version?: boolean | number - size?: boolean | number - tick_rate?: boolean | number - total_ticks?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "match_map_demos" */ -export interface match_map_demos_var_pop_order_by {duration_seconds?: (order_by | null),parser_version?: (order_by | null),playback_size?: (order_by | null),playback_version?: (order_by | null),size?: (order_by | null),tick_rate?: (order_by | null),total_ticks?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface match_map_demos_var_samp_fieldsGenqlSelection{ - duration_seconds?: boolean | number - parser_version?: boolean | number - playback_size?: boolean | number - playback_version?: boolean | number - size?: boolean | number - tick_rate?: boolean | number - total_ticks?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "match_map_demos" */ -export interface match_map_demos_var_samp_order_by {duration_seconds?: (order_by | null),parser_version?: (order_by | null),playback_size?: (order_by | null),playback_version?: (order_by | null),size?: (order_by | null),tick_rate?: (order_by | null),total_ticks?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface match_map_demos_variance_fieldsGenqlSelection{ - duration_seconds?: boolean | number - parser_version?: boolean | number - playback_size?: boolean | number - playback_version?: boolean | number - size?: boolean | number - tick_rate?: boolean | number - total_ticks?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "match_map_demos" */ -export interface match_map_demos_variance_order_by {duration_seconds?: (order_by | null),parser_version?: (order_by | null),playback_size?: (order_by | null),playback_version?: (order_by | null),size?: (order_by | null),tick_rate?: (order_by | null),total_ticks?: (order_by | null)} - - -/** columns and relationships of "match_map_rounds" */ -export interface match_map_roundsGenqlSelection{ - /** An array relationship */ - assists?: (player_assistsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_assists_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_assists_order_by[] | null), - /** filter the rows returned */ - where?: (player_assists_bool_exp | null)} }) - /** An aggregate relationship */ - assists_aggregate?: (player_assists_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_assists_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_assists_order_by[] | null), - /** filter the rows returned */ - where?: (player_assists_bool_exp | null)} }) - backup_file?: boolean | number - created_at?: boolean | number - deleted_at?: boolean | number - /** A computed field, executes function "has_backup_file" */ - has_backup_file?: boolean | number - id?: boolean | number - /** An array relationship */ - kills?: (player_killsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_kills_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_kills_order_by[] | null), - /** filter the rows returned */ - where?: (player_kills_bool_exp | null)} }) - /** An aggregate relationship */ - kills_aggregate?: (player_kills_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_kills_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_kills_order_by[] | null), - /** filter the rows returned */ - where?: (player_kills_bool_exp | null)} }) - lineup_1_money?: boolean | number - lineup_1_score?: boolean | number - lineup_1_side?: boolean | number - lineup_1_timeouts_available?: boolean | number - lineup_2_money?: boolean | number - lineup_2_score?: boolean | number - lineup_2_side?: boolean | number - lineup_2_timeouts_available?: boolean | number - /** An object relationship */ - match_map?: match_mapsGenqlSelection - match_map_id?: boolean | number - round?: boolean | number - time?: boolean | number - winning_reason?: boolean | number - winning_side?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "match_map_rounds" */ -export interface match_map_rounds_aggregateGenqlSelection{ - aggregate?: match_map_rounds_aggregate_fieldsGenqlSelection - nodes?: match_map_roundsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface match_map_rounds_aggregate_bool_exp {count?: (match_map_rounds_aggregate_bool_exp_count | null)} - -export interface match_map_rounds_aggregate_bool_exp_count {arguments?: (match_map_rounds_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (match_map_rounds_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "match_map_rounds" */ -export interface match_map_rounds_aggregate_fieldsGenqlSelection{ - avg?: match_map_rounds_avg_fieldsGenqlSelection - count?: { __args: {columns?: (match_map_rounds_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: match_map_rounds_max_fieldsGenqlSelection - min?: match_map_rounds_min_fieldsGenqlSelection - stddev?: match_map_rounds_stddev_fieldsGenqlSelection - stddev_pop?: match_map_rounds_stddev_pop_fieldsGenqlSelection - stddev_samp?: match_map_rounds_stddev_samp_fieldsGenqlSelection - sum?: match_map_rounds_sum_fieldsGenqlSelection - var_pop?: match_map_rounds_var_pop_fieldsGenqlSelection - var_samp?: match_map_rounds_var_samp_fieldsGenqlSelection - variance?: match_map_rounds_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "match_map_rounds" */ -export interface match_map_rounds_aggregate_order_by {avg?: (match_map_rounds_avg_order_by | null),count?: (order_by | null),max?: (match_map_rounds_max_order_by | null),min?: (match_map_rounds_min_order_by | null),stddev?: (match_map_rounds_stddev_order_by | null),stddev_pop?: (match_map_rounds_stddev_pop_order_by | null),stddev_samp?: (match_map_rounds_stddev_samp_order_by | null),sum?: (match_map_rounds_sum_order_by | null),var_pop?: (match_map_rounds_var_pop_order_by | null),var_samp?: (match_map_rounds_var_samp_order_by | null),variance?: (match_map_rounds_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "match_map_rounds" */ -export interface match_map_rounds_arr_rel_insert_input {data: match_map_rounds_insert_input[], -/** upsert condition */ -on_conflict?: (match_map_rounds_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface match_map_rounds_avg_fieldsGenqlSelection{ - lineup_1_money?: boolean | number - lineup_1_score?: boolean | number - lineup_1_timeouts_available?: boolean | number - lineup_2_money?: boolean | number - lineup_2_score?: boolean | number - lineup_2_timeouts_available?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "match_map_rounds" */ -export interface match_map_rounds_avg_order_by {lineup_1_money?: (order_by | null),lineup_1_score?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_money?: (order_by | null),lineup_2_score?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),round?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "match_map_rounds". All fields are combined with a logical 'AND'. */ -export interface match_map_rounds_bool_exp {_and?: (match_map_rounds_bool_exp[] | null),_not?: (match_map_rounds_bool_exp | null),_or?: (match_map_rounds_bool_exp[] | null),assists?: (player_assists_bool_exp | null),assists_aggregate?: (player_assists_aggregate_bool_exp | null),backup_file?: (String_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),deleted_at?: (timestamptz_comparison_exp | null),has_backup_file?: (Boolean_comparison_exp | null),id?: (uuid_comparison_exp | null),kills?: (player_kills_bool_exp | null),kills_aggregate?: (player_kills_aggregate_bool_exp | null),lineup_1_money?: (Int_comparison_exp | null),lineup_1_score?: (Int_comparison_exp | null),lineup_1_side?: (e_sides_enum_comparison_exp | null),lineup_1_timeouts_available?: (Int_comparison_exp | null),lineup_2_money?: (Int_comparison_exp | null),lineup_2_score?: (Int_comparison_exp | null),lineup_2_side?: (e_sides_enum_comparison_exp | null),lineup_2_timeouts_available?: (Int_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_id?: (uuid_comparison_exp | null),round?: (Int_comparison_exp | null),time?: (timestamptz_comparison_exp | null),winning_reason?: (e_winning_reasons_enum_comparison_exp | null),winning_side?: (String_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "match_map_rounds" */ -export interface match_map_rounds_inc_input {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)} - - -/** input type for inserting data into table "match_map_rounds" */ -export interface match_map_rounds_insert_input {assists?: (player_assists_arr_rel_insert_input | null),backup_file?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),deleted_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),kills?: (player_kills_arr_rel_insert_input | null),lineup_1_money?: (Scalars['Int'] | null),lineup_1_score?: (Scalars['Int'] | null),lineup_1_side?: (e_sides_enum | null),lineup_1_timeouts_available?: (Scalars['Int'] | null),lineup_2_money?: (Scalars['Int'] | null),lineup_2_score?: (Scalars['Int'] | null),lineup_2_side?: (e_sides_enum | null),lineup_2_timeouts_available?: (Scalars['Int'] | null),match_map?: (match_maps_obj_rel_insert_input | null),match_map_id?: (Scalars['uuid'] | null),round?: (Scalars['Int'] | null),time?: (Scalars['timestamptz'] | null),winning_reason?: (e_winning_reasons_enum | null),winning_side?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface match_map_rounds_max_fieldsGenqlSelection{ - backup_file?: boolean | number - created_at?: boolean | number - deleted_at?: boolean | number - id?: boolean | number - lineup_1_money?: boolean | number - lineup_1_score?: boolean | number - lineup_1_timeouts_available?: boolean | number - lineup_2_money?: boolean | number - lineup_2_score?: boolean | number - lineup_2_timeouts_available?: boolean | number - match_map_id?: boolean | number - round?: boolean | number - time?: boolean | number - winning_side?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "match_map_rounds" */ -export interface match_map_rounds_max_order_by {backup_file?: (order_by | null),created_at?: (order_by | null),deleted_at?: (order_by | null),id?: (order_by | null),lineup_1_money?: (order_by | null),lineup_1_score?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_money?: (order_by | null),lineup_2_score?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),match_map_id?: (order_by | null),round?: (order_by | null),time?: (order_by | null),winning_side?: (order_by | null)} - - -/** aggregate min on columns */ -export interface match_map_rounds_min_fieldsGenqlSelection{ - backup_file?: boolean | number - created_at?: boolean | number - deleted_at?: boolean | number - id?: boolean | number - lineup_1_money?: boolean | number - lineup_1_score?: boolean | number - lineup_1_timeouts_available?: boolean | number - lineup_2_money?: boolean | number - lineup_2_score?: boolean | number - lineup_2_timeouts_available?: boolean | number - match_map_id?: boolean | number - round?: boolean | number - time?: boolean | number - winning_side?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "match_map_rounds" */ -export interface match_map_rounds_min_order_by {backup_file?: (order_by | null),created_at?: (order_by | null),deleted_at?: (order_by | null),id?: (order_by | null),lineup_1_money?: (order_by | null),lineup_1_score?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_money?: (order_by | null),lineup_2_score?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),match_map_id?: (order_by | null),round?: (order_by | null),time?: (order_by | null),winning_side?: (order_by | null)} - - -/** response of any mutation on the table "match_map_rounds" */ -export interface match_map_rounds_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: match_map_roundsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "match_map_rounds" */ -export interface match_map_rounds_on_conflict {constraint: match_map_rounds_constraint,update_columns?: match_map_rounds_update_column[],where?: (match_map_rounds_bool_exp | null)} - - -/** Ordering options when selecting data from "match_map_rounds". */ -export interface match_map_rounds_order_by {assists_aggregate?: (player_assists_aggregate_order_by | null),backup_file?: (order_by | null),created_at?: (order_by | null),deleted_at?: (order_by | null),has_backup_file?: (order_by | null),id?: (order_by | null),kills_aggregate?: (player_kills_aggregate_order_by | null),lineup_1_money?: (order_by | null),lineup_1_score?: (order_by | null),lineup_1_side?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_money?: (order_by | null),lineup_2_score?: (order_by | null),lineup_2_side?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_id?: (order_by | null),round?: (order_by | null),time?: (order_by | null),winning_reason?: (order_by | null),winning_side?: (order_by | null)} - - -/** primary key columns input for table: match_map_rounds */ -export interface match_map_rounds_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "match_map_rounds" */ -export interface match_map_rounds_set_input {backup_file?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),deleted_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),lineup_1_money?: (Scalars['Int'] | null),lineup_1_score?: (Scalars['Int'] | null),lineup_1_side?: (e_sides_enum | null),lineup_1_timeouts_available?: (Scalars['Int'] | null),lineup_2_money?: (Scalars['Int'] | null),lineup_2_score?: (Scalars['Int'] | null),lineup_2_side?: (e_sides_enum | null),lineup_2_timeouts_available?: (Scalars['Int'] | null),match_map_id?: (Scalars['uuid'] | null),round?: (Scalars['Int'] | null),time?: (Scalars['timestamptz'] | null),winning_reason?: (e_winning_reasons_enum | null),winning_side?: (Scalars['String'] | null)} - - -/** aggregate stddev on columns */ -export interface match_map_rounds_stddev_fieldsGenqlSelection{ - lineup_1_money?: boolean | number - lineup_1_score?: boolean | number - lineup_1_timeouts_available?: boolean | number - lineup_2_money?: boolean | number - lineup_2_score?: boolean | number - lineup_2_timeouts_available?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "match_map_rounds" */ -export interface match_map_rounds_stddev_order_by {lineup_1_money?: (order_by | null),lineup_1_score?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_money?: (order_by | null),lineup_2_score?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),round?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface match_map_rounds_stddev_pop_fieldsGenqlSelection{ - lineup_1_money?: boolean | number - lineup_1_score?: boolean | number - lineup_1_timeouts_available?: boolean | number - lineup_2_money?: boolean | number - lineup_2_score?: boolean | number - lineup_2_timeouts_available?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "match_map_rounds" */ -export interface match_map_rounds_stddev_pop_order_by {lineup_1_money?: (order_by | null),lineup_1_score?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_money?: (order_by | null),lineup_2_score?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),round?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface match_map_rounds_stddev_samp_fieldsGenqlSelection{ - lineup_1_money?: boolean | number - lineup_1_score?: boolean | number - lineup_1_timeouts_available?: boolean | number - lineup_2_money?: boolean | number - lineup_2_score?: boolean | number - lineup_2_timeouts_available?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "match_map_rounds" */ -export interface match_map_rounds_stddev_samp_order_by {lineup_1_money?: (order_by | null),lineup_1_score?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_money?: (order_by | null),lineup_2_score?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),round?: (order_by | null)} - - -/** Streaming cursor of the table "match_map_rounds" */ -export interface match_map_rounds_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: match_map_rounds_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface match_map_rounds_stream_cursor_value_input {backup_file?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),deleted_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),lineup_1_money?: (Scalars['Int'] | null),lineup_1_score?: (Scalars['Int'] | null),lineup_1_side?: (e_sides_enum | null),lineup_1_timeouts_available?: (Scalars['Int'] | null),lineup_2_money?: (Scalars['Int'] | null),lineup_2_score?: (Scalars['Int'] | null),lineup_2_side?: (e_sides_enum | null),lineup_2_timeouts_available?: (Scalars['Int'] | null),match_map_id?: (Scalars['uuid'] | null),round?: (Scalars['Int'] | null),time?: (Scalars['timestamptz'] | null),winning_reason?: (e_winning_reasons_enum | null),winning_side?: (Scalars['String'] | null)} - - -/** aggregate sum on columns */ -export interface match_map_rounds_sum_fieldsGenqlSelection{ - lineup_1_money?: boolean | number - lineup_1_score?: boolean | number - lineup_1_timeouts_available?: boolean | number - lineup_2_money?: boolean | number - lineup_2_score?: boolean | number - lineup_2_timeouts_available?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "match_map_rounds" */ -export interface match_map_rounds_sum_order_by {lineup_1_money?: (order_by | null),lineup_1_score?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_money?: (order_by | null),lineup_2_score?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),round?: (order_by | null)} - -export interface match_map_rounds_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (match_map_rounds_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (match_map_rounds_set_input | null), -/** filter the rows which have to be updated */ -where: match_map_rounds_bool_exp} - - -/** aggregate var_pop on columns */ -export interface match_map_rounds_var_pop_fieldsGenqlSelection{ - lineup_1_money?: boolean | number - lineup_1_score?: boolean | number - lineup_1_timeouts_available?: boolean | number - lineup_2_money?: boolean | number - lineup_2_score?: boolean | number - lineup_2_timeouts_available?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "match_map_rounds" */ -export interface match_map_rounds_var_pop_order_by {lineup_1_money?: (order_by | null),lineup_1_score?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_money?: (order_by | null),lineup_2_score?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),round?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface match_map_rounds_var_samp_fieldsGenqlSelection{ - lineup_1_money?: boolean | number - lineup_1_score?: boolean | number - lineup_1_timeouts_available?: boolean | number - lineup_2_money?: boolean | number - lineup_2_score?: boolean | number - lineup_2_timeouts_available?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "match_map_rounds" */ -export interface match_map_rounds_var_samp_order_by {lineup_1_money?: (order_by | null),lineup_1_score?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_money?: (order_by | null),lineup_2_score?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),round?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface match_map_rounds_variance_fieldsGenqlSelection{ - lineup_1_money?: boolean | number - lineup_1_score?: boolean | number - lineup_1_timeouts_available?: boolean | number - lineup_2_money?: boolean | number - lineup_2_score?: boolean | number - lineup_2_timeouts_available?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "match_map_rounds" */ -export interface match_map_rounds_variance_order_by {lineup_1_money?: (order_by | null),lineup_1_score?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_money?: (order_by | null),lineup_2_score?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),round?: (order_by | null)} - - -/** columns and relationships of "match_map_veto_picks" */ -export interface match_map_veto_picksGenqlSelection{ - auto_picked?: boolean | number - created_at?: boolean | number - id?: boolean | number - /** An object relationship */ - map?: mapsGenqlSelection - map_id?: boolean | number - /** An object relationship */ - match?: matchesGenqlSelection - match_id?: boolean | number - /** An object relationship */ - match_lineup?: match_lineupsGenqlSelection - match_lineup_id?: boolean | number - side?: boolean | number - type?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "match_map_veto_picks" */ -export interface match_map_veto_picks_aggregateGenqlSelection{ - aggregate?: match_map_veto_picks_aggregate_fieldsGenqlSelection - nodes?: match_map_veto_picksGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface match_map_veto_picks_aggregate_bool_exp {bool_and?: (match_map_veto_picks_aggregate_bool_exp_bool_and | null),bool_or?: (match_map_veto_picks_aggregate_bool_exp_bool_or | null),count?: (match_map_veto_picks_aggregate_bool_exp_count | null)} - -export interface match_map_veto_picks_aggregate_bool_exp_bool_and {arguments: match_map_veto_picks_select_column_match_map_veto_picks_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (match_map_veto_picks_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface match_map_veto_picks_aggregate_bool_exp_bool_or {arguments: match_map_veto_picks_select_column_match_map_veto_picks_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (match_map_veto_picks_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface match_map_veto_picks_aggregate_bool_exp_count {arguments?: (match_map_veto_picks_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (match_map_veto_picks_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "match_map_veto_picks" */ -export interface match_map_veto_picks_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (match_map_veto_picks_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: match_map_veto_picks_max_fieldsGenqlSelection - min?: match_map_veto_picks_min_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "match_map_veto_picks" */ -export interface match_map_veto_picks_aggregate_order_by {count?: (order_by | null),max?: (match_map_veto_picks_max_order_by | null),min?: (match_map_veto_picks_min_order_by | null)} - - -/** input type for inserting array relation for remote table "match_map_veto_picks" */ -export interface match_map_veto_picks_arr_rel_insert_input {data: match_map_veto_picks_insert_input[], -/** upsert condition */ -on_conflict?: (match_map_veto_picks_on_conflict | null)} - - -/** Boolean expression to filter rows from the table "match_map_veto_picks". All fields are combined with a logical 'AND'. */ -export interface match_map_veto_picks_bool_exp {_and?: (match_map_veto_picks_bool_exp[] | null),_not?: (match_map_veto_picks_bool_exp | null),_or?: (match_map_veto_picks_bool_exp[] | null),auto_picked?: (Boolean_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),map?: (maps_bool_exp | null),map_id?: (uuid_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_lineup?: (match_lineups_bool_exp | null),match_lineup_id?: (uuid_comparison_exp | null),side?: (String_comparison_exp | null),type?: (e_veto_pick_types_enum_comparison_exp | null)} - - -/** input type for inserting data into table "match_map_veto_picks" */ -export interface match_map_veto_picks_insert_input {auto_picked?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),map?: (maps_obj_rel_insert_input | null),map_id?: (Scalars['uuid'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_lineup?: (match_lineups_obj_rel_insert_input | null),match_lineup_id?: (Scalars['uuid'] | null),side?: (Scalars['String'] | null),type?: (e_veto_pick_types_enum | null)} - - -/** aggregate max on columns */ -export interface match_map_veto_picks_max_fieldsGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - map_id?: boolean | number - match_id?: boolean | number - match_lineup_id?: boolean | number - side?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "match_map_veto_picks" */ -export interface match_map_veto_picks_max_order_by {created_at?: (order_by | null),id?: (order_by | null),map_id?: (order_by | null),match_id?: (order_by | null),match_lineup_id?: (order_by | null),side?: (order_by | null)} - - -/** aggregate min on columns */ -export interface match_map_veto_picks_min_fieldsGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - map_id?: boolean | number - match_id?: boolean | number - match_lineup_id?: boolean | number - side?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "match_map_veto_picks" */ -export interface match_map_veto_picks_min_order_by {created_at?: (order_by | null),id?: (order_by | null),map_id?: (order_by | null),match_id?: (order_by | null),match_lineup_id?: (order_by | null),side?: (order_by | null)} - - -/** response of any mutation on the table "match_map_veto_picks" */ -export interface match_map_veto_picks_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: match_map_veto_picksGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "match_map_veto_picks" */ -export interface match_map_veto_picks_on_conflict {constraint: match_map_veto_picks_constraint,update_columns?: match_map_veto_picks_update_column[],where?: (match_map_veto_picks_bool_exp | null)} - - -/** Ordering options when selecting data from "match_map_veto_picks". */ -export interface match_map_veto_picks_order_by {auto_picked?: (order_by | null),created_at?: (order_by | null),id?: (order_by | null),map?: (maps_order_by | null),map_id?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_lineup?: (match_lineups_order_by | null),match_lineup_id?: (order_by | null),side?: (order_by | null),type?: (order_by | null)} - - -/** primary key columns input for table: match_map_veto_picks */ -export interface match_map_veto_picks_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "match_map_veto_picks" */ -export interface match_map_veto_picks_set_input {auto_picked?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),map_id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),match_lineup_id?: (Scalars['uuid'] | null),side?: (Scalars['String'] | null),type?: (e_veto_pick_types_enum | null)} - - -/** Streaming cursor of the table "match_map_veto_picks" */ -export interface match_map_veto_picks_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: match_map_veto_picks_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface match_map_veto_picks_stream_cursor_value_input {auto_picked?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),map_id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),match_lineup_id?: (Scalars['uuid'] | null),side?: (Scalars['String'] | null),type?: (e_veto_pick_types_enum | null)} - -export interface match_map_veto_picks_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (match_map_veto_picks_set_input | null), -/** filter the rows which have to be updated */ -where: match_map_veto_picks_bool_exp} - - -/** columns and relationships of "match_maps" */ -export interface match_mapsGenqlSelection{ - clips_count?: boolean | number - created_at?: boolean | number - demo_processing_started_at?: boolean | number - /** An array relationship */ - demos?: (match_map_demosGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_map_demos_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_demos_order_by[] | null), - /** filter the rows returned */ - where?: (match_map_demos_bool_exp | null)} }) - /** An aggregate relationship */ - demos_aggregate?: (match_map_demos_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_map_demos_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_demos_order_by[] | null), - /** filter the rows returned */ - where?: (match_map_demos_bool_exp | null)} }) - /** A computed field, executes function "match_map_demo_download_url" */ - demos_download_url?: boolean | number - /** A computed field, executes function "match_map_demo_total_size" */ - demos_total_size?: boolean | number - /** An object relationship */ - e_match_map_status?: e_match_map_statusGenqlSelection - ended_at?: boolean | number - /** An array relationship */ - flashes?: (player_flashesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_flashes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_flashes_order_by[] | null), - /** filter the rows returned */ - where?: (player_flashes_bool_exp | null)} }) - /** An aggregate relationship */ - flashes_aggregate?: (player_flashes_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_flashes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_flashes_order_by[] | null), - /** filter the rows returned */ - where?: (player_flashes_bool_exp | null)} }) - id?: boolean | number - /** A computed field, executes function "is_current_match_map" */ - is_current_map?: boolean | number - latest_clip_at?: boolean | number - /** A computed field, executes function "lineup_1_score" */ - lineup_1_score?: boolean | number - lineup_1_side?: boolean | number - lineup_1_timeouts_available?: boolean | number - /** A computed field, executes function "lineup_2_score" */ - lineup_2_score?: boolean | number - lineup_2_side?: boolean | number - lineup_2_timeouts_available?: boolean | number - /** An object relationship */ - map?: mapsGenqlSelection - map_id?: boolean | number - /** An object relationship */ - match?: matchesGenqlSelection - /** 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)} }) - match_id?: boolean | number - /** An array relationship */ - 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 */ - 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)} }) - order?: boolean | number - /** An array relationship */ - player_assists?: (player_assistsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_assists_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_assists_order_by[] | null), - /** filter the rows returned */ - where?: (player_assists_bool_exp | null)} }) - /** An aggregate relationship */ - player_assists_aggregate?: (player_assists_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_assists_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_assists_order_by[] | null), - /** filter the rows returned */ - where?: (player_assists_bool_exp | null)} }) - /** An array relationship */ - player_damages?: (player_damagesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_damages_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_damages_order_by[] | null), - /** filter the rows returned */ - where?: (player_damages_bool_exp | null)} }) - /** An aggregate relationship */ - player_damages_aggregate?: (player_damages_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_damages_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_damages_order_by[] | null), - /** filter the rows returned */ - where?: (player_damages_bool_exp | null)} }) - /** An array relationship */ - player_kills?: (player_killsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_kills_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_kills_order_by[] | null), - /** filter the rows returned */ - where?: (player_kills_bool_exp | null)} }) - /** An aggregate relationship */ - player_kills_aggregate?: (player_kills_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_kills_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_kills_order_by[] | null), - /** filter the rows returned */ - where?: (player_kills_bool_exp | null)} }) - /** An array relationship */ - player_unused_utilities?: (player_unused_utilityGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_unused_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_unused_utility_order_by[] | null), - /** filter the rows returned */ - where?: (player_unused_utility_bool_exp | null)} }) - /** An aggregate relationship */ - player_unused_utilities_aggregate?: (player_unused_utility_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_unused_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_unused_utility_order_by[] | null), - /** filter the rows returned */ - where?: (player_unused_utility_bool_exp | null)} }) - public_clips_count?: boolean | number - public_latest_clip_at?: boolean | number - /** An array relationship */ - rounds?: (match_map_roundsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_map_rounds_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_rounds_order_by[] | null), - /** filter the rows returned */ - where?: (match_map_rounds_bool_exp | null)} }) - /** An aggregate relationship */ - rounds_aggregate?: (match_map_rounds_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_map_rounds_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_rounds_order_by[] | null), - /** filter the rows returned */ - where?: (match_map_rounds_bool_exp | null)} }) - started_at?: boolean | number - status?: boolean | number - /** An array relationship */ - utility?: (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 */ - utility_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)} }) - /** An array relationship */ - vetos?: (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 */ - vetos_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)} }) - winning_lineup_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "match_maps" */ -export interface match_maps_aggregateGenqlSelection{ - aggregate?: match_maps_aggregate_fieldsGenqlSelection - nodes?: match_mapsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface match_maps_aggregate_bool_exp {count?: (match_maps_aggregate_bool_exp_count | null)} - -export interface match_maps_aggregate_bool_exp_count {arguments?: (match_maps_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (match_maps_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "match_maps" */ -export interface match_maps_aggregate_fieldsGenqlSelection{ - avg?: match_maps_avg_fieldsGenqlSelection - count?: { __args: {columns?: (match_maps_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: match_maps_max_fieldsGenqlSelection - min?: match_maps_min_fieldsGenqlSelection - stddev?: match_maps_stddev_fieldsGenqlSelection - stddev_pop?: match_maps_stddev_pop_fieldsGenqlSelection - stddev_samp?: match_maps_stddev_samp_fieldsGenqlSelection - sum?: match_maps_sum_fieldsGenqlSelection - var_pop?: match_maps_var_pop_fieldsGenqlSelection - var_samp?: match_maps_var_samp_fieldsGenqlSelection - variance?: match_maps_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "match_maps" */ -export interface match_maps_aggregate_order_by {avg?: (match_maps_avg_order_by | null),count?: (order_by | null),max?: (match_maps_max_order_by | null),min?: (match_maps_min_order_by | null),stddev?: (match_maps_stddev_order_by | null),stddev_pop?: (match_maps_stddev_pop_order_by | null),stddev_samp?: (match_maps_stddev_samp_order_by | null),sum?: (match_maps_sum_order_by | null),var_pop?: (match_maps_var_pop_order_by | null),var_samp?: (match_maps_var_samp_order_by | null),variance?: (match_maps_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "match_maps" */ -export interface match_maps_arr_rel_insert_input {data: match_maps_insert_input[], -/** upsert condition */ -on_conflict?: (match_maps_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface match_maps_avg_fieldsGenqlSelection{ - clips_count?: boolean | number - /** A computed field, executes function "match_map_demo_total_size" */ - demos_total_size?: boolean | number - /** A computed field, executes function "lineup_1_score" */ - lineup_1_score?: boolean | number - lineup_1_timeouts_available?: boolean | number - /** A computed field, executes function "lineup_2_score" */ - lineup_2_score?: boolean | number - lineup_2_timeouts_available?: boolean | number - order?: boolean | number - public_clips_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "match_maps" */ -export interface match_maps_avg_order_by {clips_count?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),order?: (order_by | null),public_clips_count?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "match_maps". All fields are combined with a logical 'AND'. */ -export interface match_maps_bool_exp {_and?: (match_maps_bool_exp[] | null),_not?: (match_maps_bool_exp | null),_or?: (match_maps_bool_exp[] | null),clips_count?: (Int_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),demo_processing_started_at?: (timestamptz_comparison_exp | null),demos?: (match_map_demos_bool_exp | null),demos_aggregate?: (match_map_demos_aggregate_bool_exp | null),demos_download_url?: (String_comparison_exp | null),demos_total_size?: (Int_comparison_exp | null),e_match_map_status?: (e_match_map_status_bool_exp | null),ended_at?: (timestamptz_comparison_exp | null),flashes?: (player_flashes_bool_exp | null),flashes_aggregate?: (player_flashes_aggregate_bool_exp | null),id?: (uuid_comparison_exp | null),is_current_map?: (Boolean_comparison_exp | null),latest_clip_at?: (timestamptz_comparison_exp | null),lineup_1_score?: (Int_comparison_exp | null),lineup_1_side?: (e_sides_enum_comparison_exp | null),lineup_1_timeouts_available?: (Int_comparison_exp | null),lineup_2_score?: (Int_comparison_exp | null),lineup_2_side?: (e_sides_enum_comparison_exp | null),lineup_2_timeouts_available?: (Int_comparison_exp | null),map?: (maps_bool_exp | null),map_id?: (uuid_comparison_exp | null),match?: (matches_bool_exp | null),match_clips?: (match_clips_bool_exp | null),match_clips_aggregate?: (match_clips_aggregate_bool_exp | null),match_id?: (uuid_comparison_exp | null),objectives?: (player_objectives_bool_exp | null),objectives_aggregate?: (player_objectives_aggregate_bool_exp | null),order?: (Int_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_kills?: (player_kills_bool_exp | null),player_kills_aggregate?: (player_kills_aggregate_bool_exp | null),player_unused_utilities?: (player_unused_utility_bool_exp | null),player_unused_utilities_aggregate?: (player_unused_utility_aggregate_bool_exp | null),public_clips_count?: (Int_comparison_exp | null),public_latest_clip_at?: (timestamptz_comparison_exp | null),rounds?: (match_map_rounds_bool_exp | null),rounds_aggregate?: (match_map_rounds_aggregate_bool_exp | null),started_at?: (timestamptz_comparison_exp | null),status?: (e_match_map_status_enum_comparison_exp | null),utility?: (player_utility_bool_exp | null),utility_aggregate?: (player_utility_aggregate_bool_exp | null),vetos?: (match_map_veto_picks_bool_exp | null),vetos_aggregate?: (match_map_veto_picks_aggregate_bool_exp | null),winning_lineup_id?: (uuid_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "match_maps" */ -export interface match_maps_inc_input {clips_count?: (Scalars['Int'] | null),lineup_1_timeouts_available?: (Scalars['Int'] | null),lineup_2_timeouts_available?: (Scalars['Int'] | null),order?: (Scalars['Int'] | null),public_clips_count?: (Scalars['Int'] | null)} - - -/** input type for inserting data into table "match_maps" */ -export interface match_maps_insert_input {clips_count?: (Scalars['Int'] | null),created_at?: (Scalars['timestamptz'] | null),demo_processing_started_at?: (Scalars['timestamptz'] | null),demos?: (match_map_demos_arr_rel_insert_input | null),e_match_map_status?: (e_match_map_status_obj_rel_insert_input | null),ended_at?: (Scalars['timestamptz'] | null),flashes?: (player_flashes_arr_rel_insert_input | null),id?: (Scalars['uuid'] | null),latest_clip_at?: (Scalars['timestamptz'] | null),lineup_1_side?: (e_sides_enum | null),lineup_1_timeouts_available?: (Scalars['Int'] | null),lineup_2_side?: (e_sides_enum | null),lineup_2_timeouts_available?: (Scalars['Int'] | null),map?: (maps_obj_rel_insert_input | null),map_id?: (Scalars['uuid'] | null),match?: (matches_obj_rel_insert_input | null),match_clips?: (match_clips_arr_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),objectives?: (player_objectives_arr_rel_insert_input | null),order?: (Scalars['Int'] | null),player_assists?: (player_assists_arr_rel_insert_input | null),player_damages?: (player_damages_arr_rel_insert_input | null),player_kills?: (player_kills_arr_rel_insert_input | null),player_unused_utilities?: (player_unused_utility_arr_rel_insert_input | null),public_clips_count?: (Scalars['Int'] | null),public_latest_clip_at?: (Scalars['timestamptz'] | null),rounds?: (match_map_rounds_arr_rel_insert_input | null),started_at?: (Scalars['timestamptz'] | null),status?: (e_match_map_status_enum | null),utility?: (player_utility_arr_rel_insert_input | null),vetos?: (match_map_veto_picks_arr_rel_insert_input | null),winning_lineup_id?: (Scalars['uuid'] | null)} - - -/** aggregate max on columns */ -export interface match_maps_max_fieldsGenqlSelection{ - clips_count?: boolean | number - created_at?: boolean | number - demo_processing_started_at?: boolean | number - /** A computed field, executes function "match_map_demo_download_url" */ - demos_download_url?: boolean | number - /** A computed field, executes function "match_map_demo_total_size" */ - demos_total_size?: boolean | number - ended_at?: boolean | number - id?: boolean | number - latest_clip_at?: boolean | number - /** A computed field, executes function "lineup_1_score" */ - lineup_1_score?: boolean | number - lineup_1_timeouts_available?: boolean | number - /** A computed field, executes function "lineup_2_score" */ - lineup_2_score?: boolean | number - lineup_2_timeouts_available?: boolean | number - map_id?: boolean | number - match_id?: boolean | number - order?: boolean | number - public_clips_count?: boolean | number - public_latest_clip_at?: boolean | number - started_at?: boolean | number - winning_lineup_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "match_maps" */ -export interface match_maps_max_order_by {clips_count?: (order_by | null),created_at?: (order_by | null),demo_processing_started_at?: (order_by | null),ended_at?: (order_by | null),id?: (order_by | null),latest_clip_at?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),map_id?: (order_by | null),match_id?: (order_by | null),order?: (order_by | null),public_clips_count?: (order_by | null),public_latest_clip_at?: (order_by | null),started_at?: (order_by | null),winning_lineup_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface match_maps_min_fieldsGenqlSelection{ - clips_count?: boolean | number - created_at?: boolean | number - demo_processing_started_at?: boolean | number - /** A computed field, executes function "match_map_demo_download_url" */ - demos_download_url?: boolean | number - /** A computed field, executes function "match_map_demo_total_size" */ - demos_total_size?: boolean | number - ended_at?: boolean | number - id?: boolean | number - latest_clip_at?: boolean | number - /** A computed field, executes function "lineup_1_score" */ - lineup_1_score?: boolean | number - lineup_1_timeouts_available?: boolean | number - /** A computed field, executes function "lineup_2_score" */ - lineup_2_score?: boolean | number - lineup_2_timeouts_available?: boolean | number - map_id?: boolean | number - match_id?: boolean | number - order?: boolean | number - public_clips_count?: boolean | number - public_latest_clip_at?: boolean | number - started_at?: boolean | number - winning_lineup_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "match_maps" */ -export interface match_maps_min_order_by {clips_count?: (order_by | null),created_at?: (order_by | null),demo_processing_started_at?: (order_by | null),ended_at?: (order_by | null),id?: (order_by | null),latest_clip_at?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),map_id?: (order_by | null),match_id?: (order_by | null),order?: (order_by | null),public_clips_count?: (order_by | null),public_latest_clip_at?: (order_by | null),started_at?: (order_by | null),winning_lineup_id?: (order_by | null)} - - -/** response of any mutation on the table "match_maps" */ -export interface match_maps_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: match_mapsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "match_maps" */ -export interface match_maps_obj_rel_insert_input {data: match_maps_insert_input, -/** upsert condition */ -on_conflict?: (match_maps_on_conflict | null)} - - -/** on_conflict condition type for table "match_maps" */ -export interface match_maps_on_conflict {constraint: match_maps_constraint,update_columns?: match_maps_update_column[],where?: (match_maps_bool_exp | null)} - - -/** Ordering options when selecting data from "match_maps". */ -export interface match_maps_order_by {clips_count?: (order_by | null),created_at?: (order_by | null),demo_processing_started_at?: (order_by | null),demos_aggregate?: (match_map_demos_aggregate_order_by | null),demos_download_url?: (order_by | null),demos_total_size?: (order_by | null),e_match_map_status?: (e_match_map_status_order_by | null),ended_at?: (order_by | null),flashes_aggregate?: (player_flashes_aggregate_order_by | null),id?: (order_by | null),is_current_map?: (order_by | null),latest_clip_at?: (order_by | null),lineup_1_score?: (order_by | null),lineup_1_side?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_score?: (order_by | null),lineup_2_side?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),map?: (maps_order_by | null),map_id?: (order_by | null),match?: (matches_order_by | null),match_clips_aggregate?: (match_clips_aggregate_order_by | null),match_id?: (order_by | null),objectives_aggregate?: (player_objectives_aggregate_order_by | null),order?: (order_by | null),player_assists_aggregate?: (player_assists_aggregate_order_by | null),player_damages_aggregate?: (player_damages_aggregate_order_by | null),player_kills_aggregate?: (player_kills_aggregate_order_by | null),player_unused_utilities_aggregate?: (player_unused_utility_aggregate_order_by | null),public_clips_count?: (order_by | null),public_latest_clip_at?: (order_by | null),rounds_aggregate?: (match_map_rounds_aggregate_order_by | null),started_at?: (order_by | null),status?: (order_by | null),utility_aggregate?: (player_utility_aggregate_order_by | null),vetos_aggregate?: (match_map_veto_picks_aggregate_order_by | null),winning_lineup_id?: (order_by | null)} - - -/** primary key columns input for table: match_maps */ -export interface match_maps_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "match_maps" */ -export interface match_maps_set_input {clips_count?: (Scalars['Int'] | null),created_at?: (Scalars['timestamptz'] | null),demo_processing_started_at?: (Scalars['timestamptz'] | null),ended_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),latest_clip_at?: (Scalars['timestamptz'] | null),lineup_1_side?: (e_sides_enum | null),lineup_1_timeouts_available?: (Scalars['Int'] | null),lineup_2_side?: (e_sides_enum | 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),status?: (e_match_map_status_enum | null),winning_lineup_id?: (Scalars['uuid'] | null)} - - -/** aggregate stddev on columns */ -export interface match_maps_stddev_fieldsGenqlSelection{ - clips_count?: boolean | number - /** A computed field, executes function "match_map_demo_total_size" */ - demos_total_size?: boolean | number - /** A computed field, executes function "lineup_1_score" */ - lineup_1_score?: boolean | number - lineup_1_timeouts_available?: boolean | number - /** A computed field, executes function "lineup_2_score" */ - lineup_2_score?: boolean | number - lineup_2_timeouts_available?: boolean | number - order?: boolean | number - public_clips_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "match_maps" */ -export interface match_maps_stddev_order_by {clips_count?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),order?: (order_by | null),public_clips_count?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface match_maps_stddev_pop_fieldsGenqlSelection{ - clips_count?: boolean | number - /** A computed field, executes function "match_map_demo_total_size" */ - demos_total_size?: boolean | number - /** A computed field, executes function "lineup_1_score" */ - lineup_1_score?: boolean | number - lineup_1_timeouts_available?: boolean | number - /** A computed field, executes function "lineup_2_score" */ - lineup_2_score?: boolean | number - lineup_2_timeouts_available?: boolean | number - order?: boolean | number - public_clips_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "match_maps" */ -export interface match_maps_stddev_pop_order_by {clips_count?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),order?: (order_by | null),public_clips_count?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface match_maps_stddev_samp_fieldsGenqlSelection{ - clips_count?: boolean | number - /** A computed field, executes function "match_map_demo_total_size" */ - demos_total_size?: boolean | number - /** A computed field, executes function "lineup_1_score" */ - lineup_1_score?: boolean | number - lineup_1_timeouts_available?: boolean | number - /** A computed field, executes function "lineup_2_score" */ - lineup_2_score?: boolean | number - lineup_2_timeouts_available?: boolean | number - order?: boolean | number - public_clips_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "match_maps" */ -export interface match_maps_stddev_samp_order_by {clips_count?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),order?: (order_by | null),public_clips_count?: (order_by | null)} - - -/** Streaming cursor of the table "match_maps" */ -export interface match_maps_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: match_maps_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface match_maps_stream_cursor_value_input {clips_count?: (Scalars['Int'] | null),created_at?: (Scalars['timestamptz'] | null),demo_processing_started_at?: (Scalars['timestamptz'] | null),ended_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),latest_clip_at?: (Scalars['timestamptz'] | null),lineup_1_side?: (e_sides_enum | null),lineup_1_timeouts_available?: (Scalars['Int'] | null),lineup_2_side?: (e_sides_enum | 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),status?: (e_match_map_status_enum | null),winning_lineup_id?: (Scalars['uuid'] | null)} - - -/** aggregate sum on columns */ -export interface match_maps_sum_fieldsGenqlSelection{ - clips_count?: boolean | number - /** A computed field, executes function "match_map_demo_total_size" */ - demos_total_size?: boolean | number - /** A computed field, executes function "lineup_1_score" */ - lineup_1_score?: boolean | number - lineup_1_timeouts_available?: boolean | number - /** A computed field, executes function "lineup_2_score" */ - lineup_2_score?: boolean | number - lineup_2_timeouts_available?: boolean | number - order?: boolean | number - public_clips_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "match_maps" */ -export interface match_maps_sum_order_by {clips_count?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),order?: (order_by | null),public_clips_count?: (order_by | null)} - -export interface match_maps_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (match_maps_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (match_maps_set_input | null), -/** filter the rows which have to be updated */ -where: match_maps_bool_exp} - - -/** aggregate var_pop on columns */ -export interface match_maps_var_pop_fieldsGenqlSelection{ - clips_count?: boolean | number - /** A computed field, executes function "match_map_demo_total_size" */ - demos_total_size?: boolean | number - /** A computed field, executes function "lineup_1_score" */ - lineup_1_score?: boolean | number - lineup_1_timeouts_available?: boolean | number - /** A computed field, executes function "lineup_2_score" */ - lineup_2_score?: boolean | number - lineup_2_timeouts_available?: boolean | number - order?: boolean | number - public_clips_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "match_maps" */ -export interface match_maps_var_pop_order_by {clips_count?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),order?: (order_by | null),public_clips_count?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface match_maps_var_samp_fieldsGenqlSelection{ - clips_count?: boolean | number - /** A computed field, executes function "match_map_demo_total_size" */ - demos_total_size?: boolean | number - /** A computed field, executes function "lineup_1_score" */ - lineup_1_score?: boolean | number - lineup_1_timeouts_available?: boolean | number - /** A computed field, executes function "lineup_2_score" */ - lineup_2_score?: boolean | number - lineup_2_timeouts_available?: boolean | number - order?: boolean | number - public_clips_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "match_maps" */ -export interface match_maps_var_samp_order_by {clips_count?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),order?: (order_by | null),public_clips_count?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface match_maps_variance_fieldsGenqlSelection{ - clips_count?: boolean | number - /** A computed field, executes function "match_map_demo_total_size" */ - demos_total_size?: boolean | number - /** A computed field, executes function "lineup_1_score" */ - lineup_1_score?: boolean | number - lineup_1_timeouts_available?: boolean | number - /** A computed field, executes function "lineup_2_score" */ - lineup_2_score?: boolean | number - lineup_2_timeouts_available?: boolean | number - order?: boolean | number - public_clips_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "match_maps" */ -export interface match_maps_variance_order_by {clips_count?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),order?: (order_by | null),public_clips_count?: (order_by | null)} - - -/** columns and relationships of "match_options" */ -export interface match_optionsGenqlSelection{ - auto_cancel_duration?: boolean | number - auto_cancellation?: boolean | number - best_of?: boolean | number - camera_allow_teammates?: boolean | number - camera_required?: boolean | number - 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 - id?: boolean | number - invite_code?: boolean | number - knife_round?: boolean | number - live_match_timeout?: boolean | number - /** An object relationship */ - map_pool?: map_poolsGenqlSelection - map_pool_id?: boolean | number - map_veto?: boolean | number - match_mode?: 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)} }) - mr?: boolean | number - number_of_substitutes?: boolean | number - overtime?: boolean | number - prefer_dedicated_server?: boolean | number - ready_setting?: boolean | number - region_veto?: boolean | number - regions?: boolean | number - round_restart_delay?: boolean | number - tech_timeout_setting?: boolean | number - timeout_setting?: boolean | number - /** An object relationship */ - tournament?: tournamentsGenqlSelection - /** An object relationship */ - tournament_bracket?: tournament_bracketsGenqlSelection - /** An object relationship */ - tournament_stage?: tournament_stagesGenqlSelection - tv_delay?: boolean | number - type?: boolean | number - veto_pick_timeout?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "match_options" */ -export interface match_options_aggregateGenqlSelection{ - aggregate?: match_options_aggregate_fieldsGenqlSelection - nodes?: match_optionsGenqlSelection - __typename?: boolean | number - __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{ - avg?: match_options_avg_fieldsGenqlSelection - count?: { __args: {columns?: (match_options_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: match_options_max_fieldsGenqlSelection - min?: match_options_min_fieldsGenqlSelection - stddev?: match_options_stddev_fieldsGenqlSelection - stddev_pop?: match_options_stddev_pop_fieldsGenqlSelection - stddev_samp?: match_options_stddev_samp_fieldsGenqlSelection - sum?: match_options_sum_fieldsGenqlSelection - var_pop?: match_options_var_pop_fieldsGenqlSelection - var_samp?: match_options_var_samp_fieldsGenqlSelection - variance?: match_options_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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 - best_of?: boolean | number - live_match_timeout?: boolean | number - mr?: boolean | number - number_of_substitutes?: boolean | number - round_restart_delay?: boolean | number - tv_delay?: boolean | number - veto_pick_timeout?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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),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" */ -export interface match_options_inc_input {auto_cancel_duration?: (Scalars['Int'] | null),best_of?: (Scalars['Int'] | null),live_match_timeout?: (Scalars['Int'] | null),mr?: (Scalars['Int'] | null),number_of_substitutes?: (Scalars['Int'] | null),round_restart_delay?: (Scalars['Int'] | null),tv_delay?: (Scalars['Int'] | null),veto_pick_timeout?: (Scalars['Int'] | null)} - - -/** input type for inserting data into table "match_options" */ -export interface match_options_insert_input {auto_cancel_duration?: (Scalars['Int'] | null),auto_cancellation?: (Scalars['Boolean'] | null),best_of?: (Scalars['Int'] | null),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 - map_pool_id?: boolean | number - mr?: boolean | number - number_of_substitutes?: boolean | number - regions?: boolean | number - round_restart_delay?: boolean | number - tv_delay?: boolean | number - veto_pick_timeout?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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 - map_pool_id?: boolean | number - mr?: boolean | number - number_of_substitutes?: boolean | number - regions?: boolean | number - round_restart_delay?: boolean | number - tv_delay?: boolean | number - veto_pick_timeout?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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 */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: match_optionsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "match_options" */ -export interface match_options_obj_rel_insert_input {data: match_options_insert_input, -/** upsert condition */ -on_conflict?: (match_options_on_conflict | null)} - - -/** on_conflict condition type for table "match_options" */ -export interface match_options_on_conflict {constraint: match_options_constraint,update_columns?: match_options_update_column[],where?: (match_options_bool_exp | null)} - - -/** 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),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 */ -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),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 */ -export interface match_options_stddev_fieldsGenqlSelection{ - auto_cancel_duration?: boolean | number - best_of?: boolean | number - live_match_timeout?: boolean | number - mr?: boolean | number - number_of_substitutes?: boolean | number - round_restart_delay?: boolean | number - tv_delay?: boolean | number - veto_pick_timeout?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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 - best_of?: boolean | number - live_match_timeout?: boolean | number - mr?: boolean | number - number_of_substitutes?: boolean | number - round_restart_delay?: boolean | number - tv_delay?: boolean | number - veto_pick_timeout?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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 - best_of?: boolean | number - live_match_timeout?: boolean | number - mr?: boolean | number - number_of_substitutes?: boolean | number - round_restart_delay?: boolean | number - tv_delay?: boolean | number - veto_pick_timeout?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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 */ -initial_value: match_options_stream_cursor_value_input, -/** cursor ordering */ -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),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 */ -export interface match_options_sum_fieldsGenqlSelection{ - auto_cancel_duration?: boolean | number - best_of?: boolean | number - live_match_timeout?: boolean | number - mr?: boolean | number - number_of_substitutes?: boolean | number - round_restart_delay?: boolean | number - tv_delay?: boolean | number - veto_pick_timeout?: boolean | number - __typename?: boolean | number - __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), -/** sets the columns of the filtered rows to the given values */ -_set?: (match_options_set_input | null), -/** filter the rows which have to be updated */ -where: match_options_bool_exp} - - -/** aggregate var_pop on columns */ -export interface match_options_var_pop_fieldsGenqlSelection{ - auto_cancel_duration?: boolean | number - best_of?: boolean | number - live_match_timeout?: boolean | number - mr?: boolean | number - number_of_substitutes?: boolean | number - round_restart_delay?: boolean | number - tv_delay?: boolean | number - veto_pick_timeout?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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 - best_of?: boolean | number - live_match_timeout?: boolean | number - mr?: boolean | number - number_of_substitutes?: boolean | number - round_restart_delay?: boolean | number - tv_delay?: boolean | number - veto_pick_timeout?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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 - best_of?: boolean | number - live_match_timeout?: boolean | number - mr?: boolean | number - number_of_substitutes?: boolean | number - round_restart_delay?: boolean | number - tv_delay?: boolean | number - veto_pick_timeout?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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 - created_at?: boolean | number - id?: boolean | number - /** An object relationship */ - match?: matchesGenqlSelection - match_id?: boolean | number - /** An object relationship */ - match_lineup?: match_lineupsGenqlSelection - match_lineup_id?: boolean | number - region?: boolean | number - type?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "match_region_veto_picks" */ -export interface match_region_veto_picks_aggregateGenqlSelection{ - aggregate?: match_region_veto_picks_aggregate_fieldsGenqlSelection - nodes?: match_region_veto_picksGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface match_region_veto_picks_aggregate_bool_exp {bool_and?: (match_region_veto_picks_aggregate_bool_exp_bool_and | null),bool_or?: (match_region_veto_picks_aggregate_bool_exp_bool_or | null),count?: (match_region_veto_picks_aggregate_bool_exp_count | null)} - -export interface match_region_veto_picks_aggregate_bool_exp_bool_and {arguments: match_region_veto_picks_select_column_match_region_veto_picks_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (match_region_veto_picks_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface match_region_veto_picks_aggregate_bool_exp_bool_or {arguments: match_region_veto_picks_select_column_match_region_veto_picks_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (match_region_veto_picks_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface match_region_veto_picks_aggregate_bool_exp_count {arguments?: (match_region_veto_picks_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (match_region_veto_picks_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "match_region_veto_picks" */ -export interface match_region_veto_picks_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (match_region_veto_picks_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: match_region_veto_picks_max_fieldsGenqlSelection - min?: match_region_veto_picks_min_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "match_region_veto_picks" */ -export interface match_region_veto_picks_aggregate_order_by {count?: (order_by | null),max?: (match_region_veto_picks_max_order_by | null),min?: (match_region_veto_picks_min_order_by | null)} - - -/** input type for inserting array relation for remote table "match_region_veto_picks" */ -export interface match_region_veto_picks_arr_rel_insert_input {data: match_region_veto_picks_insert_input[], -/** upsert condition */ -on_conflict?: (match_region_veto_picks_on_conflict | null)} - - -/** Boolean expression to filter rows from the table "match_region_veto_picks". All fields are combined with a logical 'AND'. */ -export interface match_region_veto_picks_bool_exp {_and?: (match_region_veto_picks_bool_exp[] | null),_not?: (match_region_veto_picks_bool_exp | null),_or?: (match_region_veto_picks_bool_exp[] | null),auto_picked?: (Boolean_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_lineup?: (match_lineups_bool_exp | null),match_lineup_id?: (uuid_comparison_exp | null),region?: (String_comparison_exp | null),type?: (e_veto_pick_types_enum_comparison_exp | null)} - - -/** input type for inserting data into table "match_region_veto_picks" */ -export interface match_region_veto_picks_insert_input {auto_picked?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_lineup?: (match_lineups_obj_rel_insert_input | null),match_lineup_id?: (Scalars['uuid'] | null),region?: (Scalars['String'] | null),type?: (e_veto_pick_types_enum | null)} - - -/** aggregate max on columns */ -export interface match_region_veto_picks_max_fieldsGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - match_id?: boolean | number - match_lineup_id?: boolean | number - region?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "match_region_veto_picks" */ -export interface match_region_veto_picks_max_order_by {created_at?: (order_by | null),id?: (order_by | null),match_id?: (order_by | null),match_lineup_id?: (order_by | null),region?: (order_by | null)} - - -/** aggregate min on columns */ -export interface match_region_veto_picks_min_fieldsGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - match_id?: boolean | number - match_lineup_id?: boolean | number - region?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "match_region_veto_picks" */ -export interface match_region_veto_picks_min_order_by {created_at?: (order_by | null),id?: (order_by | null),match_id?: (order_by | null),match_lineup_id?: (order_by | null),region?: (order_by | null)} - - -/** response of any mutation on the table "match_region_veto_picks" */ -export interface match_region_veto_picks_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: match_region_veto_picksGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "match_region_veto_picks" */ -export interface match_region_veto_picks_on_conflict {constraint: match_region_veto_picks_constraint,update_columns?: match_region_veto_picks_update_column[],where?: (match_region_veto_picks_bool_exp | null)} - - -/** Ordering options when selecting data from "match_region_veto_picks". */ -export interface match_region_veto_picks_order_by {auto_picked?: (order_by | null),created_at?: (order_by | null),id?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_lineup?: (match_lineups_order_by | null),match_lineup_id?: (order_by | null),region?: (order_by | null),type?: (order_by | null)} - - -/** primary key columns input for table: match_region_veto_picks */ -export interface match_region_veto_picks_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "match_region_veto_picks" */ -export interface match_region_veto_picks_set_input {auto_picked?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),match_lineup_id?: (Scalars['uuid'] | null),region?: (Scalars['String'] | null),type?: (e_veto_pick_types_enum | null)} - - -/** Streaming cursor of the table "match_region_veto_picks" */ -export interface match_region_veto_picks_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: match_region_veto_picks_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface match_region_veto_picks_stream_cursor_value_input {auto_picked?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),match_lineup_id?: (Scalars['uuid'] | null),region?: (Scalars['String'] | null),type?: (e_veto_pick_types_enum | null)} - -export interface match_region_veto_picks_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (match_region_veto_picks_set_input | null), -/** filter the rows which have to be updated */ -where: match_region_veto_picks_bool_exp} - - -/** columns and relationships of "match_streams" */ -export interface match_streamsGenqlSelection{ - autodirector?: boolean | number - error_message?: boolean | number - /** An object relationship */ - game_server_node?: game_server_nodesGenqlSelection - game_server_node_id?: boolean | number - id?: boolean | number - is_game_streamer?: boolean | number - is_live?: boolean | number - k8s_service_name?: boolean | number - last_status_at?: boolean | number - link?: boolean | number - /** An object relationship */ - match?: matchesGenqlSelection - match_id?: boolean | number - mode?: boolean | number - priority?: boolean | number - status?: boolean | number - status_history?: { __args: { - /** JSON select path */ - path?: (Scalars['String'] | null)} } | boolean | number - stream_url?: boolean | number - title?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "match_streams" */ -export interface match_streams_aggregateGenqlSelection{ - aggregate?: match_streams_aggregate_fieldsGenqlSelection - nodes?: match_streamsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface match_streams_aggregate_bool_exp {bool_and?: (match_streams_aggregate_bool_exp_bool_and | null),bool_or?: (match_streams_aggregate_bool_exp_bool_or | null),count?: (match_streams_aggregate_bool_exp_count | null)} - -export interface match_streams_aggregate_bool_exp_bool_and {arguments: match_streams_select_column_match_streams_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (match_streams_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface match_streams_aggregate_bool_exp_bool_or {arguments: match_streams_select_column_match_streams_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (match_streams_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface match_streams_aggregate_bool_exp_count {arguments?: (match_streams_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (match_streams_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "match_streams" */ -export interface match_streams_aggregate_fieldsGenqlSelection{ - avg?: match_streams_avg_fieldsGenqlSelection - count?: { __args: {columns?: (match_streams_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: match_streams_max_fieldsGenqlSelection - min?: match_streams_min_fieldsGenqlSelection - stddev?: match_streams_stddev_fieldsGenqlSelection - stddev_pop?: match_streams_stddev_pop_fieldsGenqlSelection - stddev_samp?: match_streams_stddev_samp_fieldsGenqlSelection - sum?: match_streams_sum_fieldsGenqlSelection - var_pop?: match_streams_var_pop_fieldsGenqlSelection - var_samp?: match_streams_var_samp_fieldsGenqlSelection - variance?: match_streams_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "match_streams" */ -export interface match_streams_aggregate_order_by {avg?: (match_streams_avg_order_by | null),count?: (order_by | null),max?: (match_streams_max_order_by | null),min?: (match_streams_min_order_by | null),stddev?: (match_streams_stddev_order_by | null),stddev_pop?: (match_streams_stddev_pop_order_by | null),stddev_samp?: (match_streams_stddev_samp_order_by | null),sum?: (match_streams_sum_order_by | null),var_pop?: (match_streams_var_pop_order_by | null),var_samp?: (match_streams_var_samp_order_by | null),variance?: (match_streams_variance_order_by | null)} - - -/** append existing jsonb value of filtered columns with new jsonb value */ -export interface match_streams_append_input {status_history?: (Scalars['jsonb'] | null)} - - -/** input type for inserting array relation for remote table "match_streams" */ -export interface match_streams_arr_rel_insert_input {data: match_streams_insert_input[], -/** upsert condition */ -on_conflict?: (match_streams_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface match_streams_avg_fieldsGenqlSelection{ - priority?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "match_streams" */ -export interface match_streams_avg_order_by {priority?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "match_streams". All fields are combined with a logical 'AND'. */ -export interface match_streams_bool_exp {_and?: (match_streams_bool_exp[] | null),_not?: (match_streams_bool_exp | null),_or?: (match_streams_bool_exp[] | null),autodirector?: (Boolean_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),is_game_streamer?: (Boolean_comparison_exp | null),is_live?: (Boolean_comparison_exp | null),k8s_service_name?: (String_comparison_exp | null),last_status_at?: (timestamptz_comparison_exp | null),link?: (String_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),mode?: (String_comparison_exp | null),priority?: (Int_comparison_exp | null),status?: (String_comparison_exp | null),status_history?: (jsonb_comparison_exp | null),stream_url?: (String_comparison_exp | null),title?: (String_comparison_exp | null)} - - -/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ -export interface match_streams_delete_at_path_input {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 match_streams_delete_elem_input {status_history?: (Scalars['Int'] | null)} - - -/** delete key/value pair or string element. key/value pairs are matched based on their key value */ -export interface match_streams_delete_key_input {status_history?: (Scalars['String'] | null)} - - -/** input type for incrementing numeric columns in table "match_streams" */ -export interface match_streams_inc_input {priority?: (Scalars['Int'] | null)} - - -/** input type for inserting data into table "match_streams" */ -export interface match_streams_insert_input {autodirector?: (Scalars['Boolean'] | 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),is_game_streamer?: (Scalars['Boolean'] | null),is_live?: (Scalars['Boolean'] | null),k8s_service_name?: (Scalars['String'] | null),last_status_at?: (Scalars['timestamptz'] | null),link?: (Scalars['String'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),mode?: (Scalars['String'] | null),priority?: (Scalars['Int'] | null),status?: (Scalars['String'] | null),status_history?: (Scalars['jsonb'] | null),stream_url?: (Scalars['String'] | null),title?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface match_streams_max_fieldsGenqlSelection{ - error_message?: boolean | number - game_server_node_id?: boolean | number - id?: boolean | number - k8s_service_name?: boolean | number - last_status_at?: boolean | number - link?: boolean | number - match_id?: boolean | number - mode?: boolean | number - priority?: boolean | number - status?: boolean | number - stream_url?: boolean | number - title?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "match_streams" */ -export interface match_streams_max_order_by {error_message?: (order_by | null),game_server_node_id?: (order_by | null),id?: (order_by | null),k8s_service_name?: (order_by | null),last_status_at?: (order_by | null),link?: (order_by | null),match_id?: (order_by | null),mode?: (order_by | null),priority?: (order_by | null),status?: (order_by | null),stream_url?: (order_by | null),title?: (order_by | null)} - - -/** aggregate min on columns */ -export interface match_streams_min_fieldsGenqlSelection{ - error_message?: boolean | number - game_server_node_id?: boolean | number - id?: boolean | number - k8s_service_name?: boolean | number - last_status_at?: boolean | number - link?: boolean | number - match_id?: boolean | number - mode?: boolean | number - priority?: boolean | number - status?: boolean | number - stream_url?: boolean | number - title?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "match_streams" */ -export interface match_streams_min_order_by {error_message?: (order_by | null),game_server_node_id?: (order_by | null),id?: (order_by | null),k8s_service_name?: (order_by | null),last_status_at?: (order_by | null),link?: (order_by | null),match_id?: (order_by | null),mode?: (order_by | null),priority?: (order_by | null),status?: (order_by | null),stream_url?: (order_by | null),title?: (order_by | null)} - - -/** response of any mutation on the table "match_streams" */ -export interface match_streams_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: match_streamsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "match_streams" */ -export interface match_streams_on_conflict {constraint: match_streams_constraint,update_columns?: match_streams_update_column[],where?: (match_streams_bool_exp | null)} - - -/** Ordering options when selecting data from "match_streams". */ -export interface match_streams_order_by {autodirector?: (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),is_game_streamer?: (order_by | null),is_live?: (order_by | null),k8s_service_name?: (order_by | null),last_status_at?: (order_by | null),link?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),mode?: (order_by | null),priority?: (order_by | null),status?: (order_by | null),status_history?: (order_by | null),stream_url?: (order_by | null),title?: (order_by | null)} - - -/** primary key columns input for table: match_streams */ -export interface match_streams_pk_columns_input {id: Scalars['uuid']} - - -/** prepend existing jsonb value of filtered columns with new jsonb value */ -export interface match_streams_prepend_input {status_history?: (Scalars['jsonb'] | null)} - - -/** input type for updating data in table "match_streams" */ -export interface match_streams_set_input {autodirector?: (Scalars['Boolean'] | null),error_message?: (Scalars['String'] | null),game_server_node_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_game_streamer?: (Scalars['Boolean'] | null),is_live?: (Scalars['Boolean'] | 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),status_history?: (Scalars['jsonb'] | null),stream_url?: (Scalars['String'] | null),title?: (Scalars['String'] | null)} - - -/** aggregate stddev on columns */ -export interface match_streams_stddev_fieldsGenqlSelection{ - priority?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "match_streams" */ -export interface match_streams_stddev_order_by {priority?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface match_streams_stddev_pop_fieldsGenqlSelection{ - priority?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "match_streams" */ -export interface match_streams_stddev_pop_order_by {priority?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface match_streams_stddev_samp_fieldsGenqlSelection{ - priority?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "match_streams" */ -export interface match_streams_stddev_samp_order_by {priority?: (order_by | null)} - - -/** Streaming cursor of the table "match_streams" */ -export interface match_streams_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: match_streams_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface match_streams_stream_cursor_value_input {autodirector?: (Scalars['Boolean'] | null),error_message?: (Scalars['String'] | null),game_server_node_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_game_streamer?: (Scalars['Boolean'] | null),is_live?: (Scalars['Boolean'] | 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),status_history?: (Scalars['jsonb'] | null),stream_url?: (Scalars['String'] | null),title?: (Scalars['String'] | null)} - - -/** aggregate sum on columns */ -export interface match_streams_sum_fieldsGenqlSelection{ - priority?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "match_streams" */ -export interface match_streams_sum_order_by {priority?: (order_by | null)} - -export interface match_streams_updates { -/** append existing jsonb value of filtered columns with new jsonb value */ -_append?: (match_streams_append_input | null), -/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ -_delete_at_path?: (match_streams_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?: (match_streams_delete_elem_input | null), -/** delete key/value pair or string element. key/value pairs are matched based on their key value */ -_delete_key?: (match_streams_delete_key_input | null), -/** increments the numeric columns with given value of the filtered values */ -_inc?: (match_streams_inc_input | null), -/** prepend existing jsonb value of filtered columns with new jsonb value */ -_prepend?: (match_streams_prepend_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (match_streams_set_input | null), -/** filter the rows which have to be updated */ -where: match_streams_bool_exp} - - -/** aggregate var_pop on columns */ -export interface match_streams_var_pop_fieldsGenqlSelection{ - priority?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "match_streams" */ -export interface match_streams_var_pop_order_by {priority?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface match_streams_var_samp_fieldsGenqlSelection{ - priority?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "match_streams" */ -export interface match_streams_var_samp_order_by {priority?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface match_streams_variance_fieldsGenqlSelection{ - priority?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "match_streams" */ -export interface match_streams_variance_order_by {priority?: (order_by | null)} - - -/** columns and relationships of "match_type_cfgs" */ -export interface match_type_cfgsGenqlSelection{ - cfg?: boolean | number - type?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "match_type_cfgs" */ -export interface match_type_cfgs_aggregateGenqlSelection{ - aggregate?: match_type_cfgs_aggregate_fieldsGenqlSelection - nodes?: match_type_cfgsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "match_type_cfgs" */ -export interface match_type_cfgs_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (match_type_cfgs_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: match_type_cfgs_max_fieldsGenqlSelection - min?: match_type_cfgs_min_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "match_type_cfgs". All fields are combined with a logical 'AND'. */ -export interface match_type_cfgs_bool_exp {_and?: (match_type_cfgs_bool_exp[] | null),_not?: (match_type_cfgs_bool_exp | null),_or?: (match_type_cfgs_bool_exp[] | null),cfg?: (String_comparison_exp | null),type?: (e_game_cfg_types_enum_comparison_exp | null)} - - -/** input type for inserting data into table "match_type_cfgs" */ -export interface match_type_cfgs_insert_input {cfg?: (Scalars['String'] | null),type?: (e_game_cfg_types_enum | null)} - - -/** aggregate max on columns */ -export interface match_type_cfgs_max_fieldsGenqlSelection{ - cfg?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface match_type_cfgs_min_fieldsGenqlSelection{ - cfg?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "match_type_cfgs" */ -export interface match_type_cfgs_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: match_type_cfgsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "match_type_cfgs" */ -export interface match_type_cfgs_on_conflict {constraint: match_type_cfgs_constraint,update_columns?: match_type_cfgs_update_column[],where?: (match_type_cfgs_bool_exp | null)} - - -/** Ordering options when selecting data from "match_type_cfgs". */ -export interface match_type_cfgs_order_by {cfg?: (order_by | null),type?: (order_by | null)} - - -/** primary key columns input for table: match_type_cfgs */ -export interface match_type_cfgs_pk_columns_input {type: e_game_cfg_types_enum} - - -/** input type for updating data in table "match_type_cfgs" */ -export interface match_type_cfgs_set_input {cfg?: (Scalars['String'] | null),type?: (e_game_cfg_types_enum | null)} - - -/** Streaming cursor of the table "match_type_cfgs" */ -export interface match_type_cfgs_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: match_type_cfgs_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface match_type_cfgs_stream_cursor_value_input {cfg?: (Scalars['String'] | null),type?: (e_game_cfg_types_enum | null)} - -export interface match_type_cfgs_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (match_type_cfgs_set_input | null), -/** filter the rows which have to be updated */ -where: match_type_cfgs_bool_exp} - - -/** columns and relationships of "matches" */ -export interface matchesGenqlSelection{ - /** A computed field, executes function "can_assign_server_to_match" */ - can_assign_server?: boolean | number - /** A computed field, executes function "can_cancel_match" */ - can_cancel?: boolean | number - /** A computed field, executes function "can_check_in" */ - can_check_in?: boolean | number - /** A computed field, executes function "can_reassign_winner" */ - can_reassign_winner?: boolean | number - /** A computed field, executes function "can_schedule_match" */ - can_schedule?: boolean | number - /** A computed field, executes function "can_start_match" */ - can_start?: boolean | number - /** A computed field, executes function "can_stream_live" */ - can_stream_live?: boolean | number - /** A computed field, executes function "can_stream_tv" */ - can_stream_tv?: boolean | number - cancels_at?: boolean | number - /** An array relationship */ - clutches?: (v_match_clutchesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_match_clutches_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_clutches_order_by[] | null), - /** filter the rows returned */ - where?: (v_match_clutches_bool_exp | null)} }) - /** An aggregate relationship */ - clutches_aggregate?: (v_match_clutches_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_match_clutches_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_clutches_order_by[] | null), - /** filter the rows returned */ - where?: (v_match_clutches_bool_exp | null)} }) - /** A computed field, executes function "get_match_connection_link" */ - 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 - /** An array relationship */ - demos?: (match_map_demosGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_map_demos_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_demos_order_by[] | null), - /** filter the rows returned */ - where?: (match_map_demos_bool_exp | null)} }) - /** An aggregate relationship */ - demos_aggregate?: (match_map_demos_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_map_demos_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_demos_order_by[] | null), - /** filter the rows returned */ - where?: (match_map_demos_bool_exp | null)} }) - /** An array relationship */ - draft_games?: (draft_gamesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (draft_games_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_games_order_by[] | null), - /** filter the rows returned */ - where?: (draft_games_bool_exp | null)} }) - /** An aggregate relationship */ - draft_games_aggregate?: (draft_games_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (draft_games_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_games_order_by[] | null), - /** filter the rows returned */ - where?: (draft_games_bool_exp | null)} }) - /** An object relationship */ - e_match_status?: e_match_statusGenqlSelection - /** An object relationship */ - e_region?: server_regionsGenqlSelection - effective_at?: boolean | number - /** An array relationship */ - elo_changes?: (v_player_eloGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_elo_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_elo_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_elo_bool_exp | null)} }) - /** An aggregate relationship */ - elo_changes_aggregate?: (v_player_elo_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_elo_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_elo_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_elo_bool_exp | null)} }) - ended_at?: boolean | number - external_id?: boolean | number - id?: boolean | number - /** A computed field, executes function "match_invite_code" */ - invite_code?: boolean | number - /** A computed field, executes function "is_captain" */ - is_captain?: boolean | number - /** A computed field, executes function "is_coach" */ - is_coach?: boolean | number - /** A computed field, executes function "is_friend_in_match_lineup" */ - is_friend_in_match_lineup?: boolean | number - /** A computed field, executes function "is_in_lineup" */ - is_in_lineup?: boolean | number - /** A computed field, executes function "is_match_server_available" */ - is_match_server_available?: boolean | number - /** A computed field, executes function "is_match_organizer" */ - is_organizer?: boolean | number - /** A computed field, executes function "is_server_online" */ - is_server_online?: boolean | number - /** A computed field, executes function "is_tournament_match" */ - is_tournament_match?: boolean | number - label?: boolean | number - /** An object relationship */ - lineup_1?: match_lineupsGenqlSelection - lineup_1_id?: boolean | number - /** An object relationship */ - lineup_2?: match_lineupsGenqlSelection - lineup_2_id?: boolean | number - /** A computed field, executes function "get_lineup_counts" */ - lineup_counts?: { __args: { - /** JSON select path */ - path?: (Scalars['String'] | null)} } | boolean | number - /** A computed field, executes function "get_map_veto_picking_lineup_id" */ - map_veto_picking_lineup_id?: boolean | number - /** An array relationship */ - map_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 */ - map_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)} }) - /** A computed field, executes function "get_map_veto_type" */ - map_veto_type?: 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)} }) - match_options_id?: boolean | number - /** A computed field, executes function "match_max_players_per_lineup" */ - max_players_per_lineup?: boolean | number - /** A computed field, executes function "match_min_players_per_lineup" */ - min_players_per_lineup?: boolean | number - /** An array relationship */ - opening_duels?: (v_match_player_opening_duelsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_match_player_opening_duels_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_player_opening_duels_order_by[] | null), - /** filter the rows returned */ - where?: (v_match_player_opening_duels_bool_exp | null)} }) - /** An aggregate relationship */ - opening_duels_aggregate?: (v_match_player_opening_duels_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_match_player_opening_duels_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_player_opening_duels_order_by[] | null), - /** filter the rows returned */ - where?: (v_match_player_opening_duels_bool_exp | null)} }) - /** An object relationship */ - options?: match_optionsGenqlSelection - /** An object relationship */ - organizer?: playersGenqlSelection - organizer_steam_id?: boolean | number - password?: boolean | number - /** An array relationship */ - player_assists?: (player_assistsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_assists_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_assists_order_by[] | null), - /** filter the rows returned */ - where?: (player_assists_bool_exp | null)} }) - /** An aggregate relationship */ - player_assists_aggregate?: (player_assists_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_assists_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_assists_order_by[] | null), - /** filter the rows returned */ - where?: (player_assists_bool_exp | null)} }) - /** An array relationship */ - player_damages?: (player_damagesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_damages_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_damages_order_by[] | null), - /** filter the rows returned */ - where?: (player_damages_bool_exp | null)} }) - /** An aggregate relationship */ - player_damages_aggregate?: (player_damages_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_damages_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_damages_order_by[] | null), - /** filter the rows returned */ - where?: (player_damages_bool_exp | null)} }) - /** An array relationship */ - player_flashes?: (player_flashesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_flashes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_flashes_order_by[] | null), - /** filter the rows returned */ - where?: (player_flashes_bool_exp | null)} }) - /** An aggregate relationship */ - player_flashes_aggregate?: (player_flashes_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_flashes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_flashes_order_by[] | null), - /** filter the rows returned */ - where?: (player_flashes_bool_exp | null)} }) - /** An array relationship */ - player_kills?: (player_killsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_kills_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_kills_order_by[] | null), - /** filter the rows returned */ - where?: (player_kills_bool_exp | null)} }) - /** An aggregate relationship */ - player_kills_aggregate?: (player_kills_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_kills_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_kills_order_by[] | null), - /** filter the rows returned */ - where?: (player_kills_bool_exp | null)} }) - /** 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)} }) - /** An array relationship */ - player_unused_utilities?: (player_unused_utilityGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_unused_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_unused_utility_order_by[] | null), - /** filter the rows returned */ - where?: (player_unused_utility_bool_exp | null)} }) - /** An aggregate relationship */ - player_unused_utilities_aggregate?: (player_unused_utility_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_unused_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_unused_utility_order_by[] | null), - /** filter the rows returned */ - where?: (player_unused_utility_bool_exp | null)} }) - /** An array relationship */ - player_utility?: (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_utility_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)} }) - region?: boolean | number - /** A computed field, executes function "get_region_veto_picking_lineup_id" */ - region_veto_picking_lineup_id?: boolean | number - /** An array relationship */ - region_veto_picks?: (match_region_veto_picksGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_region_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_region_veto_picks_order_by[] | null), - /** filter the rows returned */ - where?: (match_region_veto_picks_bool_exp | null)} }) - /** An aggregate relationship */ - region_veto_picks_aggregate?: (match_region_veto_picks_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_region_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_region_veto_picks_order_by[] | null), - /** filter the rows returned */ - where?: (match_region_veto_picks_bool_exp | null)} }) - /** A computed field, executes function "match_requested_organizer" */ - requested_organizer?: boolean | number - scheduled_at?: boolean | number - /** An object relationship */ - server?: serversGenqlSelection - server_error?: boolean | number - server_id?: boolean | number - /** A computed field, executes function "get_match_server_plugin_runtime" */ - server_plugin_runtime?: boolean | number - /** A computed field, executes function "get_match_server_region" */ - server_region?: boolean | number - /** A computed field, executes function "get_match_server_type" */ - server_type?: boolean | number - share_code?: boolean | number - source?: boolean | number - started_at?: boolean | number - status?: boolean | number - /** An array relationship */ - streams?: (match_streamsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_streams_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_streams_order_by[] | null), - /** filter the rows returned */ - where?: (match_streams_bool_exp | null)} }) - /** An aggregate relationship */ - streams_aggregate?: (match_streams_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_streams_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_streams_order_by[] | null), - /** filter the rows returned */ - where?: (match_streams_bool_exp | null)} }) - /** A computed field, executes function "get_match_teams" */ - teams?: (teamsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (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?: (teams_order_by[] | null), - /** filter the rows returned */ - where?: (teams_bool_exp | null)} }) - /** An array relationship */ - tournament_brackets?: (tournament_bracketsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_brackets_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_brackets_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_brackets_bool_exp | null)} }) - /** An aggregate relationship */ - tournament_brackets_aggregate?: (tournament_brackets_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_brackets_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_brackets_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_brackets_bool_exp | null)} }) - /** A computed field, executes function "get_match_tv_connection_string" */ - tv_connection_string?: boolean | number - veto_pick_expires_at?: boolean | number - /** An object relationship */ - winner?: match_lineupsGenqlSelection - winning_lineup_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "matches" */ -export interface matches_aggregateGenqlSelection{ - aggregate?: matches_aggregate_fieldsGenqlSelection - nodes?: matchesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -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} - - -/** aggregate fields of "matches" */ -export interface matches_aggregate_fieldsGenqlSelection{ - avg?: matches_avg_fieldsGenqlSelection - count?: { __args: {columns?: (matches_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: matches_max_fieldsGenqlSelection - min?: matches_min_fieldsGenqlSelection - stddev?: matches_stddev_fieldsGenqlSelection - stddev_pop?: matches_stddev_pop_fieldsGenqlSelection - stddev_samp?: matches_stddev_samp_fieldsGenqlSelection - sum?: matches_sum_fieldsGenqlSelection - var_pop?: matches_var_pop_fieldsGenqlSelection - var_samp?: matches_var_samp_fieldsGenqlSelection - variance?: matches_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "matches" */ -export interface matches_aggregate_order_by {avg?: (matches_avg_order_by | null),count?: (order_by | null),max?: (matches_max_order_by | null),min?: (matches_min_order_by | null),stddev?: (matches_stddev_order_by | null),stddev_pop?: (matches_stddev_pop_order_by | null),stddev_samp?: (matches_stddev_samp_order_by | null),sum?: (matches_sum_order_by | null),var_pop?: (matches_var_pop_order_by | null),var_samp?: (matches_var_samp_order_by | null),variance?: (matches_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "matches" */ -export interface matches_arr_rel_insert_input {data: matches_insert_input[], -/** upsert condition */ -on_conflict?: (matches_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface matches_avg_fieldsGenqlSelection{ - /** A computed field, executes function "match_max_players_per_lineup" */ - max_players_per_lineup?: boolean | number - /** A computed field, executes function "match_min_players_per_lineup" */ - min_players_per_lineup?: boolean | number - organizer_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "matches" */ -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),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" */ -export interface matches_inc_input {organizer_steam_id?: (Scalars['bigint'] | null)} - - -/** 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),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 */ -export interface matches_max_fieldsGenqlSelection{ - cancels_at?: boolean | number - /** A computed field, executes function "get_match_connection_link" */ - connection_link?: boolean | number - /** A computed field, executes function "get_match_connection_string" */ - connection_string?: boolean | number - created_at?: boolean | number - /** A computed field, executes function "get_current_match_map" */ - current_match_map_id?: boolean | number - effective_at?: boolean | number - ended_at?: boolean | number - external_id?: boolean | number - id?: boolean | number - /** A computed field, executes function "match_invite_code" */ - invite_code?: boolean | number - label?: boolean | number - lineup_1_id?: boolean | number - lineup_2_id?: boolean | number - /** A computed field, executes function "get_map_veto_picking_lineup_id" */ - map_veto_picking_lineup_id?: boolean | number - /** A computed field, executes function "get_map_veto_type" */ - map_veto_type?: boolean | number - match_options_id?: boolean | number - /** A computed field, executes function "match_max_players_per_lineup" */ - max_players_per_lineup?: boolean | number - /** A computed field, executes function "match_min_players_per_lineup" */ - min_players_per_lineup?: boolean | number - organizer_steam_id?: boolean | number - password?: boolean | number - region?: boolean | number - /** A computed field, executes function "get_region_veto_picking_lineup_id" */ - region_veto_picking_lineup_id?: boolean | number - scheduled_at?: boolean | number - server_error?: boolean | number - server_id?: boolean | number - /** A computed field, executes function "get_match_server_plugin_runtime" */ - server_plugin_runtime?: boolean | number - /** A computed field, executes function "get_match_server_region" */ - server_region?: boolean | number - /** A computed field, executes function "get_match_server_type" */ - server_type?: boolean | number - share_code?: boolean | number - source?: boolean | number - started_at?: boolean | number - /** A computed field, executes function "get_match_tv_connection_string" */ - tv_connection_string?: boolean | number - veto_pick_expires_at?: boolean | number - winning_lineup_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "matches" */ -export interface matches_max_order_by {cancels_at?: (order_by | null),created_at?: (order_by | null),effective_at?: (order_by | null),ended_at?: (order_by | null),external_id?: (order_by | null),id?: (order_by | null),label?: (order_by | null),lineup_1_id?: (order_by | null),lineup_2_id?: (order_by | null),match_options_id?: (order_by | null),organizer_steam_id?: (order_by | null),password?: (order_by | null),region?: (order_by | null),scheduled_at?: (order_by | null),server_error?: (order_by | null),server_id?: (order_by | null),share_code?: (order_by | null),source?: (order_by | null),started_at?: (order_by | null),veto_pick_expires_at?: (order_by | null),winning_lineup_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface matches_min_fieldsGenqlSelection{ - cancels_at?: boolean | number - /** A computed field, executes function "get_match_connection_link" */ - connection_link?: boolean | number - /** A computed field, executes function "get_match_connection_string" */ - connection_string?: boolean | number - created_at?: boolean | number - /** A computed field, executes function "get_current_match_map" */ - current_match_map_id?: boolean | number - effective_at?: boolean | number - ended_at?: boolean | number - external_id?: boolean | number - id?: boolean | number - /** A computed field, executes function "match_invite_code" */ - invite_code?: boolean | number - label?: boolean | number - lineup_1_id?: boolean | number - lineup_2_id?: boolean | number - /** A computed field, executes function "get_map_veto_picking_lineup_id" */ - map_veto_picking_lineup_id?: boolean | number - /** A computed field, executes function "get_map_veto_type" */ - map_veto_type?: boolean | number - match_options_id?: boolean | number - /** A computed field, executes function "match_max_players_per_lineup" */ - max_players_per_lineup?: boolean | number - /** A computed field, executes function "match_min_players_per_lineup" */ - min_players_per_lineup?: boolean | number - organizer_steam_id?: boolean | number - password?: boolean | number - region?: boolean | number - /** A computed field, executes function "get_region_veto_picking_lineup_id" */ - region_veto_picking_lineup_id?: boolean | number - scheduled_at?: boolean | number - server_error?: boolean | number - server_id?: boolean | number - /** A computed field, executes function "get_match_server_plugin_runtime" */ - server_plugin_runtime?: boolean | number - /** A computed field, executes function "get_match_server_region" */ - server_region?: boolean | number - /** A computed field, executes function "get_match_server_type" */ - server_type?: boolean | number - share_code?: boolean | number - source?: boolean | number - started_at?: boolean | number - /** A computed field, executes function "get_match_tv_connection_string" */ - tv_connection_string?: boolean | number - veto_pick_expires_at?: boolean | number - winning_lineup_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "matches" */ -export interface matches_min_order_by {cancels_at?: (order_by | null),created_at?: (order_by | null),effective_at?: (order_by | null),ended_at?: (order_by | null),external_id?: (order_by | null),id?: (order_by | null),label?: (order_by | null),lineup_1_id?: (order_by | null),lineup_2_id?: (order_by | null),match_options_id?: (order_by | null),organizer_steam_id?: (order_by | null),password?: (order_by | null),region?: (order_by | null),scheduled_at?: (order_by | null),server_error?: (order_by | null),server_id?: (order_by | null),share_code?: (order_by | null),source?: (order_by | null),started_at?: (order_by | null),veto_pick_expires_at?: (order_by | null),winning_lineup_id?: (order_by | null)} - - -/** response of any mutation on the table "matches" */ -export interface matches_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: matchesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "matches" */ -export interface matches_obj_rel_insert_input {data: matches_insert_input, -/** upsert condition */ -on_conflict?: (matches_on_conflict | null)} - - -/** on_conflict condition type for table "matches" */ -export interface matches_on_conflict {constraint: matches_constraint,update_columns?: matches_update_column[],where?: (matches_bool_exp | null)} - - -/** 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),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 */ -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),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 */ -export interface matches_stddev_fieldsGenqlSelection{ - /** A computed field, executes function "match_max_players_per_lineup" */ - max_players_per_lineup?: boolean | number - /** A computed field, executes function "match_min_players_per_lineup" */ - min_players_per_lineup?: boolean | number - organizer_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "matches" */ -export interface matches_stddev_order_by {organizer_steam_id?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface matches_stddev_pop_fieldsGenqlSelection{ - /** A computed field, executes function "match_max_players_per_lineup" */ - max_players_per_lineup?: boolean | number - /** A computed field, executes function "match_min_players_per_lineup" */ - min_players_per_lineup?: boolean | number - organizer_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "matches" */ -export interface matches_stddev_pop_order_by {organizer_steam_id?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface matches_stddev_samp_fieldsGenqlSelection{ - /** A computed field, executes function "match_max_players_per_lineup" */ - max_players_per_lineup?: boolean | number - /** A computed field, executes function "match_min_players_per_lineup" */ - min_players_per_lineup?: boolean | number - organizer_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "matches" */ -export interface matches_stddev_samp_order_by {organizer_steam_id?: (order_by | null)} - - -/** Streaming cursor of the table "matches" */ -export interface matches_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: matches_stream_cursor_value_input, -/** cursor ordering */ -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),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 */ -export interface matches_sum_fieldsGenqlSelection{ - /** A computed field, executes function "match_max_players_per_lineup" */ - max_players_per_lineup?: boolean | number - /** A computed field, executes function "match_min_players_per_lineup" */ - min_players_per_lineup?: boolean | number - organizer_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "matches" */ -export interface matches_sum_order_by {organizer_steam_id?: (order_by | null)} - -export interface matches_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (matches_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (matches_set_input | null), -/** filter the rows which have to be updated */ -where: matches_bool_exp} - - -/** aggregate var_pop on columns */ -export interface matches_var_pop_fieldsGenqlSelection{ - /** A computed field, executes function "match_max_players_per_lineup" */ - max_players_per_lineup?: boolean | number - /** A computed field, executes function "match_min_players_per_lineup" */ - min_players_per_lineup?: boolean | number - organizer_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "matches" */ -export interface matches_var_pop_order_by {organizer_steam_id?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface matches_var_samp_fieldsGenqlSelection{ - /** A computed field, executes function "match_max_players_per_lineup" */ - max_players_per_lineup?: boolean | number - /** A computed field, executes function "match_min_players_per_lineup" */ - min_players_per_lineup?: boolean | number - organizer_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "matches" */ -export interface matches_var_samp_order_by {organizer_steam_id?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface matches_variance_fieldsGenqlSelection{ - /** A computed field, executes function "match_max_players_per_lineup" */ - max_players_per_lineup?: boolean | number - /** A computed field, executes function "match_min_players_per_lineup" */ - min_players_per_lineup?: boolean | number - organizer_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "matches" */ -export interface matches_variance_order_by {organizer_steam_id?: (order_by | null)} - - -/** columns and relationships of "migration_hashes.hashes" */ -export interface migration_hashes_hashesGenqlSelection{ - hash?: boolean | number - name?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "migration_hashes.hashes" */ -export interface migration_hashes_hashes_aggregateGenqlSelection{ - aggregate?: migration_hashes_hashes_aggregate_fieldsGenqlSelection - nodes?: migration_hashes_hashesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "migration_hashes.hashes" */ -export interface migration_hashes_hashes_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (migration_hashes_hashes_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: migration_hashes_hashes_max_fieldsGenqlSelection - min?: migration_hashes_hashes_min_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "migration_hashes.hashes". All fields are combined with a logical 'AND'. */ -export interface migration_hashes_hashes_bool_exp {_and?: (migration_hashes_hashes_bool_exp[] | null),_not?: (migration_hashes_hashes_bool_exp | null),_or?: (migration_hashes_hashes_bool_exp[] | null),hash?: (String_comparison_exp | null),name?: (String_comparison_exp | null)} - - -/** input type for inserting data into table "migration_hashes.hashes" */ -export interface migration_hashes_hashes_insert_input {hash?: (Scalars['String'] | null),name?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface migration_hashes_hashes_max_fieldsGenqlSelection{ - hash?: boolean | number - name?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface migration_hashes_hashes_min_fieldsGenqlSelection{ - hash?: boolean | number - name?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "migration_hashes.hashes" */ -export interface migration_hashes_hashes_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: migration_hashes_hashesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "migration_hashes.hashes" */ -export interface migration_hashes_hashes_on_conflict {constraint: migration_hashes_hashes_constraint,update_columns?: migration_hashes_hashes_update_column[],where?: (migration_hashes_hashes_bool_exp | null)} - - -/** Ordering options when selecting data from "migration_hashes.hashes". */ -export interface migration_hashes_hashes_order_by {hash?: (order_by | null),name?: (order_by | null)} - - -/** primary key columns input for table: migration_hashes.hashes */ -export interface migration_hashes_hashes_pk_columns_input {name: Scalars['String']} - - -/** input type for updating data in table "migration_hashes.hashes" */ -export interface migration_hashes_hashes_set_input {hash?: (Scalars['String'] | null),name?: (Scalars['String'] | null)} - - -/** Streaming cursor of the table "migration_hashes_hashes" */ -export interface migration_hashes_hashes_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: migration_hashes_hashes_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface migration_hashes_hashes_stream_cursor_value_input {hash?: (Scalars['String'] | null),name?: (Scalars['String'] | null)} - -export interface migration_hashes_hashes_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (migration_hashes_hashes_set_input | null), -/** filter the rows which have to be updated */ -where: migration_hashes_hashes_bool_exp} - - -/** mutation root */ -export interface mutation_rootGenqlSelection{ - PreviewTournamentMatchReset?: (PreviewTournamentMatchResetOutputGenqlSelection & { __args: {match_id: Scalars['uuid']} }) - 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 */ - addSteamPresenceBotAccount?: (SuccessOutputGenqlSelection & { __args: {bot_secret: Scalars['String'], friend_capacity?: (Scalars['Int'] | null), username: Scalars['String']} }) - approveNameChange?: (SuccessOutputGenqlSelection & { __args: {name: Scalars['String'], steam_id: Scalars['bigint']} }) - /** execute VOLATILE function "approve_league_season_movements" which returns "league_team_movements" */ - approve_league_season_movements?: (league_team_movementsGenqlSelection & { __args: { - /** input parameters for function "approve_league_season_movements" */ - args: approve_league_season_movements_args, - /** distinct select on columns */ - distinct_on?: (league_team_movements_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_team_movements_order_by[] | null), - /** filter the rows returned */ - where?: (league_team_movements_bool_exp | null)} }) - /** Assign the presence bot a user should add as a friend */ - assignSteamPresenceBot?: SteamPresenceBotAssignmentGenqlSelection - /** Dev-only — attach the demo player to a standing dev game-streamer pod (no Job boot) */ - attachDemo?: WatchDemoOutputGenqlSelection - /** Rebuild a season's ELO + stats from the matches inside its date range (admin only). Runs in the background; track via backfillSeasonEloStatus. */ - backfillSeasonElo?: (RecomputeEloStartedOutputGenqlSelection & { __args: {season_id: Scalars['String']} }) - /** Return the progress of the season ELO backfill run (admin only). */ - backfillSeasonEloStatus?: SeasonBackfillStatusOutputGenqlSelection - /** Recover launch seeds from recorded trajectories, one batch per call */ - backfillUtilityLaunchSeeds?: (UtilityLaunchSeedBackfillOutputGenqlSelection & { __args?: {limit?: (Scalars['Int'] | null)} }) - /** Launch a Vulkan shader pre-bake Job on a GPU node */ - bakeShaders?: (SuccessOutputGenqlSelection & { __args: {game_server_node_id: Scalars['uuid']} }) - /** callForOrganizer */ - callForOrganizer?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['String']} }) - /** Request cancellation of the in-progress season ELO backfill (admin only). Stops after the current match. */ - cancelBackfillSeasonElo?: SuccessOutputGenqlSelection - /** Cancel an in-progress or stuck Vulkan shader pre-bake Job on a GPU node */ - cancelBakeShaders?: (SuccessOutputGenqlSelection & { __args: {game_server_node_id: Scalars['uuid']} }) - /** Cancel an in-flight clip render and tear down the K8s job */ - cancelClipRender?: (SuccessOutputGenqlSelection & { __args: {job_id: Scalars['uuid']} }) - /** Cancel an entire match_map's render queue + tear down the pod. */ - cancelClipRenderBatch?: (SuccessOutputGenqlSelection & { __args: {match_map_id: Scalars['uuid']} }) - /** cancelMatch */ - cancelMatch?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid']} }) - /** Request cancellation of the in-progress ELO recompute (admin only). Stops after the current match. */ - cancelRecomputePlayerElo?: SuccessOutputGenqlSelection - /** Request cancellation of the in-progress player reindex (admin only). Stops after the current player. */ - cancelRefreshAllPlayers?: SuccessOutputGenqlSelection - /** Request cancellation of the in-progress reparse-all-demos run (admin only). Stops after the current demo finishes. */ - cancelReparseAllDemos?: SuccessOutputGenqlSelection - /** cancelScrimRequest */ - cancelScrimRequest?: (SuccessOutputGenqlSelection & { __args: {request_id: Scalars['uuid']} }) - /** Cancel an in-flight lineup preview render */ - cancelUtilityLineupRender?: (SuccessOutputGenqlSelection & { __args: {render_id: Scalars['uuid']} }) - changeUtilityPracticeMap?: (UtilityPracticeMapChangeOutputGenqlSelection & { __args: {lineup_id?: (Scalars['uuid'] | null), lineup_ids?: (Scalars['uuid'][] | null), map_name: Scalars['String'], scratch?: (UtilityScratchLineupInput | null), session_id: Scalars['uuid']} }) - /** checkIntoMatch */ - checkIntoMatch?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid']} }) - /** Confirm a check-in, enforcing the tournament's check_in_setting */ - checkIntoTournament?: (SuccessOutputGenqlSelection & { __args: {tournament_id: Scalars['uuid'], tournament_team_id?: (Scalars['uuid'] | null)} }) - /** Delete terminal-state clip_render_jobs rows for a single match_map batch. */ - clearClipRenderBatch?: (SuccessOutputGenqlSelection & { __args: {match_map_id: Scalars['uuid']} }) - /** Delete all terminal-state clip_render_jobs rows platform-wide. */ - clearFinishedClipRenders?: SuccessOutputGenqlSelection - /** Drop every finished row from the lineup preview queue */ - clearFinishedUtilityLineupRenders?: UtilityRenderClearOutputGenqlSelection - clearPendingMatchImport?: (PendingMatchImportActionOutputGenqlSelection & { __args: {valve_match_id: Scalars['String']} }) - /** execute VOLATILE function "clone_league_season" which returns "league_seasons" */ - clone_league_season?: (league_seasonsGenqlSelection & { __args: { - /** input parameters for function "clone_league_season" */ - args: clone_league_season_args, - /** distinct select on columns */ - distinct_on?: (league_seasons_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_seasons_order_by[] | null), - /** filter the rows returned */ - where?: (league_seasons_bool_exp | null)} }) - /** Organizer proceeds without the teams that missed check-in */ - continueTournamentCheckIn?: (SuccessOutputGenqlSelection & { __args: {tournament_id: Scalars['uuid']} }) - /** counterScrimRequest */ - counterScrimRequest?: (SuccessOutputGenqlSelection & { __args: {proposed_scheduled_at: Scalars['timestamptz'], request_id: Scalars['uuid']} }) - createApiKey?: (ApiKeyResponseGenqlSelection & { __args: {label: Scalars['String']} }) - /** Build a multi-segment ClipSpec from a player+preset and dispatch render */ - createClipFromPreset?: (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)} }) - /** Spawn a clip-render pod that produces an mp4 from a demo and uploads it */ - createClipRender?: (CreateClipRenderOutputGenqlSelection & { __args: {spec: ClipSpecInput} }) - createClips?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid']} }) - /** createDraftGame */ - createDraftGame?: (CreateDraftGameOutputGenqlSelection & { __args: {settings: Scalars['jsonb']} }) - /** createScheduledMatch */ - createScheduledMatch?: (CreateScheduledMatchOutputGenqlSelection & { __args: {lineup_1: ScheduledLineupInput, lineup_2: ScheduledLineupInput, options: Scalars['jsonb'], scheduled_at: Scalars['String']} }) - /** Create directory on game server */ - createServerDirectory?: (SuccessOutputGenqlSelection & { __args: {dir_path: Scalars['String'], node_id: Scalars['String'], server_id?: (Scalars['String'] | null)} }) - /** Organizer mints an expiring, use capped invite link for a tournament */ - createTournamentInviteCode?: (TournamentInviteCodeOutputGenqlSelection & { __args: {expires_in_minutes?: (Scalars['Int'] | null), max_uses?: (Scalars['Int'] | null), tournament_id: Scalars['uuid']} }) - /** Delete a catalog award */ - deleteAward?: (SuccessOutputGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** Delete a saved clip and its underlying S3 object */ - deleteClip?: (SuccessOutputGenqlSelection & { __args: {clip_id: Scalars['uuid']} }) - deleteMatch?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['String']} }) - /** Delete a news post. Caller role is verified against public.post_news_role. */ - deleteNewsPost?: (SuccessOutputGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** Delete orphaned S3 objects found by the last scan (admin only). Each key is re-verified against the database before removal. */ - deleteOrphanedDemos?: (DeleteOrphansOutputGenqlSelection & { __args?: {keys?: (Scalars['String'][] | null)} }) - /** Delete file or directory on game server */ - deleteServerItem?: (SuccessOutputGenqlSelection & { __args: {node_id: Scalars['String'], path: Scalars['String'], server_id?: (Scalars['String'] | null)} }) - /** Delete a tournament and clean up demo files */ - deleteTournament?: (SuccessOutputGenqlSelection & { __args: {tournament_id: Scalars['uuid']} }) - /** Delete a render and its preview clip */ - deleteUtilityLineupRender?: (SuccessOutputGenqlSelection & { __args: {render_id: Scalars['uuid']} }) - /** Delete a utility playbook */ - deleteUtilityPlaybook?: (SuccessOutputGenqlSelection & { __args: {playbook_id: Scalars['uuid']} }) - /** delete data from the table: "_map_pool" */ - delete__map_pool?: (_map_pool_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: _map_pool_bool_exp} }) - /** delete single row from the table: "_map_pool" */ - delete__map_pool_by_pk?: (_map_poolGenqlSelection & { __args: {map_id: Scalars['uuid'], map_pool_id: Scalars['uuid']} }) - /** delete data from the table: "abandoned_matches" */ - delete_abandoned_matches?: (abandoned_matches_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: abandoned_matches_bool_exp} }) - /** delete single row from the table: "abandoned_matches" */ - delete_abandoned_matches_by_pk?: (abandoned_matchesGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "api_keys" */ - delete_api_keys?: (api_keys_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: api_keys_bool_exp} }) - /** delete single row from the table: "api_keys" */ - delete_api_keys_by_pk?: (api_keysGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "award_recipients" */ - delete_award_recipients?: (award_recipients_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: award_recipients_bool_exp} }) - /** delete single row from the table: "award_recipients" */ - delete_award_recipients_by_pk?: (award_recipientsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "awards" */ - delete_awards?: (awards_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: awards_bool_exp} }) - /** delete single row from the table: "awards" */ - delete_awards_by_pk?: (awardsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "chat_read_state" */ - delete_chat_read_state?: (chat_read_state_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: chat_read_state_bool_exp} }) - /** delete single row from the table: "chat_read_state" */ - delete_chat_read_state_by_pk?: (chat_read_stateGenqlSelection & { __args: {steam_id: Scalars['bigint'], thread: Scalars['String']} }) - /** delete data from the table: "clip_render_jobs" */ - delete_clip_render_jobs?: (clip_render_jobs_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: clip_render_jobs_bool_exp} }) - /** delete single row from the table: "clip_render_jobs" */ - delete_clip_render_jobs_by_pk?: (clip_render_jobsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "custom_pages" */ - delete_custom_pages?: (custom_pages_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: custom_pages_bool_exp} }) - /** delete single row from the table: "custom_pages" */ - delete_custom_pages_by_pk?: (custom_pagesGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "db_backups" */ - delete_db_backups?: (db_backups_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: db_backups_bool_exp} }) - /** delete single row from the table: "db_backups" */ - delete_db_backups_by_pk?: (db_backupsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "direct_conversations" */ - delete_direct_conversations?: (direct_conversations_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: direct_conversations_bool_exp} }) - /** delete single row from the table: "direct_conversations" */ - delete_direct_conversations_by_pk?: (direct_conversationsGenqlSelection & { __args: {room_id: Scalars['String'], steam_id: Scalars['bigint']} }) - /** delete data from the table: "direct_messages" */ - delete_direct_messages?: (direct_messages_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: direct_messages_bool_exp} }) - /** delete single row from the table: "direct_messages" */ - delete_direct_messages_by_pk?: (direct_messagesGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "draft_game_picks" */ - delete_draft_game_picks?: (draft_game_picks_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: draft_game_picks_bool_exp} }) - /** delete single row from the table: "draft_game_picks" */ - delete_draft_game_picks_by_pk?: (draft_game_picksGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "draft_game_players" */ - delete_draft_game_players?: (draft_game_players_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: draft_game_players_bool_exp} }) - /** delete single row from the table: "draft_game_players" */ - delete_draft_game_players_by_pk?: (draft_game_playersGenqlSelection & { __args: {draft_game_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) - /** delete data from the table: "draft_games" */ - delete_draft_games?: (draft_games_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: draft_games_bool_exp} }) - /** delete single row from the table: "draft_games" */ - delete_draft_games_by_pk?: (draft_gamesGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "e_award_sources" */ - delete_e_award_sources?: (e_award_sources_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_award_sources_bool_exp} }) - /** delete single row from the table: "e_award_sources" */ - delete_e_award_sources_by_pk?: (e_award_sourcesGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_award_tiers" */ - delete_e_award_tiers?: (e_award_tiers_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_award_tiers_bool_exp} }) - /** delete single row from the table: "e_award_tiers" */ - delete_e_award_tiers_by_pk?: (e_award_tiersGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_check_in_settings" */ - delete_e_check_in_settings?: (e_check_in_settings_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_check_in_settings_bool_exp} }) - /** delete single row from the table: "e_check_in_settings" */ - delete_e_check_in_settings_by_pk?: (e_check_in_settingsGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_draft_game_captain_selection" */ - delete_e_draft_game_captain_selection?: (e_draft_game_captain_selection_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_draft_game_captain_selection_bool_exp} }) - /** delete single row from the table: "e_draft_game_captain_selection" */ - delete_e_draft_game_captain_selection_by_pk?: (e_draft_game_captain_selectionGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_draft_game_draft_order" */ - delete_e_draft_game_draft_order?: (e_draft_game_draft_order_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_draft_game_draft_order_bool_exp} }) - /** delete single row from the table: "e_draft_game_draft_order" */ - delete_e_draft_game_draft_order_by_pk?: (e_draft_game_draft_orderGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_draft_game_mode" */ - delete_e_draft_game_mode?: (e_draft_game_mode_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_draft_game_mode_bool_exp} }) - /** delete single row from the table: "e_draft_game_mode" */ - delete_e_draft_game_mode_by_pk?: (e_draft_game_modeGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_draft_game_player_status" */ - delete_e_draft_game_player_status?: (e_draft_game_player_status_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_draft_game_player_status_bool_exp} }) - /** delete single row from the table: "e_draft_game_player_status" */ - delete_e_draft_game_player_status_by_pk?: (e_draft_game_player_statusGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_draft_game_status" */ - delete_e_draft_game_status?: (e_draft_game_status_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_draft_game_status_bool_exp} }) - /** delete single row from the table: "e_draft_game_status" */ - delete_e_draft_game_status_by_pk?: (e_draft_game_statusGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_event_media_access" */ - delete_e_event_media_access?: (e_event_media_access_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_event_media_access_bool_exp} }) - /** delete single row from the table: "e_event_media_access" */ - delete_e_event_media_access_by_pk?: (e_event_media_accessGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_event_visibility" */ - delete_e_event_visibility?: (e_event_visibility_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_event_visibility_bool_exp} }) - /** delete single row from the table: "e_event_visibility" */ - delete_e_event_visibility_by_pk?: (e_event_visibilityGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_friend_status" */ - delete_e_friend_status?: (e_friend_status_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_friend_status_bool_exp} }) - /** delete single row from the table: "e_friend_status" */ - delete_e_friend_status_by_pk?: (e_friend_statusGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_game_cfg_types" */ - delete_e_game_cfg_types?: (e_game_cfg_types_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - 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 */ - where: e_game_server_node_statuses_bool_exp} }) - /** delete single row from the table: "e_game_server_node_statuses" */ - delete_e_game_server_node_statuses_by_pk?: (e_game_server_node_statusesGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_league_movement_types" */ - delete_e_league_movement_types?: (e_league_movement_types_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_league_movement_types_bool_exp} }) - /** delete single row from the table: "e_league_movement_types" */ - delete_e_league_movement_types_by_pk?: (e_league_movement_typesGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_league_proposal_statuses" */ - delete_e_league_proposal_statuses?: (e_league_proposal_statuses_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_league_proposal_statuses_bool_exp} }) - /** delete single row from the table: "e_league_proposal_statuses" */ - delete_e_league_proposal_statuses_by_pk?: (e_league_proposal_statusesGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_league_registration_statuses" */ - delete_e_league_registration_statuses?: (e_league_registration_statuses_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_league_registration_statuses_bool_exp} }) - /** delete single row from the table: "e_league_registration_statuses" */ - delete_e_league_registration_statuses_by_pk?: (e_league_registration_statusesGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_league_season_statuses" */ - delete_e_league_season_statuses?: (e_league_season_statuses_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_league_season_statuses_bool_exp} }) - /** delete single row from the table: "e_league_season_statuses" */ - delete_e_league_season_statuses_by_pk?: (e_league_season_statusesGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_lobby_access" */ - delete_e_lobby_access?: (e_lobby_access_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_lobby_access_bool_exp} }) - /** delete single row from the table: "e_lobby_access" */ - delete_e_lobby_access_by_pk?: (e_lobby_accessGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_lobby_player_status" */ - delete_e_lobby_player_status?: (e_lobby_player_status_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_lobby_player_status_bool_exp} }) - /** delete single row from the table: "e_lobby_player_status" */ - delete_e_lobby_player_status_by_pk?: (e_lobby_player_statusGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_map_pool_types" */ - delete_e_map_pool_types?: (e_map_pool_types_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_map_pool_types_bool_exp} }) - /** delete single row from the table: "e_map_pool_types" */ - delete_e_map_pool_types_by_pk?: (e_map_pool_typesGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_match_clip_visibility" */ - delete_e_match_clip_visibility?: (e_match_clip_visibility_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_match_clip_visibility_bool_exp} }) - /** delete single row from the table: "e_match_clip_visibility" */ - delete_e_match_clip_visibility_by_pk?: (e_match_clip_visibilityGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_match_map_status" */ - delete_e_match_map_status?: (e_match_map_status_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_match_map_status_bool_exp} }) - /** delete single row from the table: "e_match_map_status" */ - delete_e_match_map_status_by_pk?: (e_match_map_statusGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_match_mode" */ - delete_e_match_mode?: (e_match_mode_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_match_mode_bool_exp} }) - /** delete single row from the table: "e_match_mode" */ - delete_e_match_mode_by_pk?: (e_match_modeGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_match_party_sources" */ - delete_e_match_party_sources?: (e_match_party_sources_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_match_party_sources_bool_exp} }) - /** delete single row from the table: "e_match_party_sources" */ - delete_e_match_party_sources_by_pk?: (e_match_party_sourcesGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_match_status" */ - delete_e_match_status?: (e_match_status_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_match_status_bool_exp} }) - /** delete single row from the table: "e_match_status" */ - delete_e_match_status_by_pk?: (e_match_statusGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_match_types" */ - delete_e_match_types?: (e_match_types_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_match_types_bool_exp} }) - /** delete single row from the table: "e_match_types" */ - delete_e_match_types_by_pk?: (e_match_typesGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_notification_types" */ - delete_e_notification_types?: (e_notification_types_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_notification_types_bool_exp} }) - /** delete single row from the table: "e_notification_types" */ - delete_e_notification_types_by_pk?: (e_notification_typesGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_objective_types" */ - delete_e_objective_types?: (e_objective_types_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_objective_types_bool_exp} }) - /** delete single row from the table: "e_objective_types" */ - delete_e_objective_types_by_pk?: (e_objective_typesGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_player_roles" */ - delete_e_player_roles?: (e_player_roles_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_player_roles_bool_exp} }) - /** delete single row from the table: "e_player_roles" */ - delete_e_player_roles_by_pk?: (e_player_rolesGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_plugin_runtimes" */ - delete_e_plugin_runtimes?: (e_plugin_runtimes_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_plugin_runtimes_bool_exp} }) - /** delete single row from the table: "e_plugin_runtimes" */ - delete_e_plugin_runtimes_by_pk?: (e_plugin_runtimesGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_ready_settings" */ - delete_e_ready_settings?: (e_ready_settings_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_ready_settings_bool_exp} }) - /** delete single row from the table: "e_ready_settings" */ - delete_e_ready_settings_by_pk?: (e_ready_settingsGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_sanction_scopes" */ - delete_e_sanction_scopes?: (e_sanction_scopes_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_sanction_scopes_bool_exp} }) - /** delete single row from the table: "e_sanction_scopes" */ - delete_e_sanction_scopes_by_pk?: (e_sanction_scopesGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_sanction_sources" */ - delete_e_sanction_sources?: (e_sanction_sources_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_sanction_sources_bool_exp} }) - /** delete single row from the table: "e_sanction_sources" */ - delete_e_sanction_sources_by_pk?: (e_sanction_sourcesGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_sanction_types" */ - delete_e_sanction_types?: (e_sanction_types_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_sanction_types_bool_exp} }) - /** delete single row from the table: "e_sanction_types" */ - delete_e_sanction_types_by_pk?: (e_sanction_typesGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_scrim_request_statuses" */ - delete_e_scrim_request_statuses?: (e_scrim_request_statuses_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_scrim_request_statuses_bool_exp} }) - /** delete single row from the table: "e_scrim_request_statuses" */ - delete_e_scrim_request_statuses_by_pk?: (e_scrim_request_statusesGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_server_types" */ - delete_e_server_types?: (e_server_types_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_server_types_bool_exp} }) - /** delete single row from the table: "e_server_types" */ - delete_e_server_types_by_pk?: (e_server_typesGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_sides" */ - delete_e_sides?: (e_sides_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_sides_bool_exp} }) - /** delete single row from the table: "e_sides" */ - delete_e_sides_by_pk?: (e_sidesGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_system_alert_types" */ - delete_e_system_alert_types?: (e_system_alert_types_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_system_alert_types_bool_exp} }) - /** delete single row from the table: "e_system_alert_types" */ - delete_e_system_alert_types_by_pk?: (e_system_alert_typesGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_team_roles" */ - delete_e_team_roles?: (e_team_roles_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_team_roles_bool_exp} }) - /** delete single row from the table: "e_team_roles" */ - delete_e_team_roles_by_pk?: (e_team_rolesGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_team_roster_statuses" */ - delete_e_team_roster_statuses?: (e_team_roster_statuses_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_team_roster_statuses_bool_exp} }) - /** delete single row from the table: "e_team_roster_statuses" */ - delete_e_team_roster_statuses_by_pk?: (e_team_roster_statusesGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_timeout_settings" */ - delete_e_timeout_settings?: (e_timeout_settings_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_timeout_settings_bool_exp} }) - /** delete single row from the table: "e_timeout_settings" */ - delete_e_timeout_settings_by_pk?: (e_timeout_settingsGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_tournament_categories" */ - delete_e_tournament_categories?: (e_tournament_categories_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_tournament_categories_bool_exp} }) - /** delete single row from the table: "e_tournament_categories" */ - delete_e_tournament_categories_by_pk?: (e_tournament_categoriesGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_tournament_free_agent_statuses" */ - delete_e_tournament_free_agent_statuses?: (e_tournament_free_agent_statuses_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_tournament_free_agent_statuses_bool_exp} }) - /** delete single row from the table: "e_tournament_free_agent_statuses" */ - delete_e_tournament_free_agent_statuses_by_pk?: (e_tournament_free_agent_statusesGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_tournament_registration_types" */ - delete_e_tournament_registration_types?: (e_tournament_registration_types_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_tournament_registration_types_bool_exp} }) - /** delete single row from the table: "e_tournament_registration_types" */ - delete_e_tournament_registration_types_by_pk?: (e_tournament_registration_typesGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_tournament_stage_types" */ - delete_e_tournament_stage_types?: (e_tournament_stage_types_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_tournament_stage_types_bool_exp} }) - /** delete single row from the table: "e_tournament_stage_types" */ - delete_e_tournament_stage_types_by_pk?: (e_tournament_stage_typesGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_tournament_status" */ - delete_e_tournament_status?: (e_tournament_status_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_tournament_status_bool_exp} }) - /** delete single row from the table: "e_tournament_status" */ - delete_e_tournament_status_by_pk?: (e_tournament_statusGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_utility_practice_access" */ - delete_e_utility_practice_access?: (e_utility_practice_access_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_utility_practice_access_bool_exp} }) - /** delete single row from the table: "e_utility_practice_access" */ - delete_e_utility_practice_access_by_pk?: (e_utility_practice_accessGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_utility_practice_statuses" */ - delete_e_utility_practice_statuses?: (e_utility_practice_statuses_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_utility_practice_statuses_bool_exp} }) - /** delete single row from the table: "e_utility_practice_statuses" */ - delete_e_utility_practice_statuses_by_pk?: (e_utility_practice_statusesGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_utility_sources" */ - delete_e_utility_sources?: (e_utility_sources_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_utility_sources_bool_exp} }) - /** delete single row from the table: "e_utility_sources" */ - delete_e_utility_sources_by_pk?: (e_utility_sourcesGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_utility_techniques" */ - delete_e_utility_techniques?: (e_utility_techniques_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_utility_techniques_bool_exp} }) - /** delete single row from the table: "e_utility_techniques" */ - delete_e_utility_techniques_by_pk?: (e_utility_techniquesGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_utility_throw_strengths" */ - delete_e_utility_throw_strengths?: (e_utility_throw_strengths_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_utility_throw_strengths_bool_exp} }) - /** delete single row from the table: "e_utility_throw_strengths" */ - delete_e_utility_throw_strengths_by_pk?: (e_utility_throw_strengthsGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_utility_types" */ - delete_e_utility_types?: (e_utility_types_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_utility_types_bool_exp} }) - /** delete single row from the table: "e_utility_types" */ - delete_e_utility_types_by_pk?: (e_utility_typesGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_utility_visibility" */ - delete_e_utility_visibility?: (e_utility_visibility_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_utility_visibility_bool_exp} }) - /** delete single row from the table: "e_utility_visibility" */ - delete_e_utility_visibility_by_pk?: (e_utility_visibilityGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_veto_pick_types" */ - delete_e_veto_pick_types?: (e_veto_pick_types_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_veto_pick_types_bool_exp} }) - /** delete single row from the table: "e_veto_pick_types" */ - delete_e_veto_pick_types_by_pk?: (e_veto_pick_typesGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_winning_reasons" */ - delete_e_winning_reasons?: (e_winning_reasons_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: e_winning_reasons_bool_exp} }) - /** delete single row from the table: "e_winning_reasons" */ - delete_e_winning_reasons_by_pk?: (e_winning_reasonsGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "event_match_links" */ - delete_event_match_links?: (event_match_links_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: event_match_links_bool_exp} }) - /** delete single row from the table: "event_match_links" */ - delete_event_match_links_by_pk?: (event_match_linksGenqlSelection & { __args: {event_id: Scalars['uuid'], match_id: Scalars['uuid']} }) - /** delete data from the table: "event_media" */ - delete_event_media?: (event_media_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: event_media_bool_exp} }) - /** delete single row from the table: "event_media" */ - delete_event_media_by_pk?: (event_mediaGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "event_media_players" */ - delete_event_media_players?: (event_media_players_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: event_media_players_bool_exp} }) - /** delete single row from the table: "event_media_players" */ - delete_event_media_players_by_pk?: (event_media_playersGenqlSelection & { __args: {media_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) - /** delete data from the table: "event_organizers" */ - delete_event_organizers?: (event_organizers_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: event_organizers_bool_exp} }) - /** delete single row from the table: "event_organizers" */ - delete_event_organizers_by_pk?: (event_organizersGenqlSelection & { __args: {event_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) - /** delete data from the table: "event_players" */ - delete_event_players?: (event_players_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: event_players_bool_exp} }) - /** delete single row from the table: "event_players" */ - delete_event_players_by_pk?: (event_playersGenqlSelection & { __args: {event_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) - /** delete data from the table: "event_teams" */ - delete_event_teams?: (event_teams_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: event_teams_bool_exp} }) - /** delete single row from the table: "event_teams" */ - delete_event_teams_by_pk?: (event_teamsGenqlSelection & { __args: {event_id: Scalars['uuid'], team_id: Scalars['uuid']} }) - /** delete data from the table: "event_tournaments" */ - delete_event_tournaments?: (event_tournaments_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: event_tournaments_bool_exp} }) - /** delete single row from the table: "event_tournaments" */ - delete_event_tournaments_by_pk?: (event_tournamentsGenqlSelection & { __args: {event_id: Scalars['uuid'], tournament_id: Scalars['uuid']} }) - /** delete data from the table: "events" */ - delete_events?: (events_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: events_bool_exp} }) - /** delete single row from the table: "events" */ - delete_events_by_pk?: (eventsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "friends" */ - delete_friends?: (friends_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - 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 */ - where: game_server_nodes_bool_exp} }) - /** delete single row from the table: "game_server_nodes" */ - delete_game_server_nodes_by_pk?: (game_server_nodesGenqlSelection & { __args: {id: Scalars['String']} }) - /** delete data from the table: "game_versions" */ - delete_game_versions?: (game_versions_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: game_versions_bool_exp} }) - /** delete single row from the table: "game_versions" */ - delete_game_versions_by_pk?: (game_versionsGenqlSelection & { __args: {build_id: Scalars['Int']} }) - /** delete data from the table: "gamedata_signature_validations" */ - delete_gamedata_signature_validations?: (gamedata_signature_validations_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: gamedata_signature_validations_bool_exp} }) - /** delete single row from the table: "gamedata_signature_validations" */ - delete_gamedata_signature_validations_by_pk?: (gamedata_signature_validationsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "leaderboard_entries" */ - delete_leaderboard_entries?: (leaderboard_entries_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: leaderboard_entries_bool_exp} }) - /** delete data from the table: "league_divisions" */ - delete_league_divisions?: (league_divisions_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: league_divisions_bool_exp} }) - /** delete single row from the table: "league_divisions" */ - delete_league_divisions_by_pk?: (league_divisionsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "league_match_weeks" */ - delete_league_match_weeks?: (league_match_weeks_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: league_match_weeks_bool_exp} }) - /** delete single row from the table: "league_match_weeks" */ - delete_league_match_weeks_by_pk?: (league_match_weeksGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "league_relegation_playoffs" */ - delete_league_relegation_playoffs?: (league_relegation_playoffs_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: league_relegation_playoffs_bool_exp} }) - /** delete single row from the table: "league_relegation_playoffs" */ - delete_league_relegation_playoffs_by_pk?: (league_relegation_playoffsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "league_scheduling_proposals" */ - delete_league_scheduling_proposals?: (league_scheduling_proposals_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: league_scheduling_proposals_bool_exp} }) - /** delete single row from the table: "league_scheduling_proposals" */ - delete_league_scheduling_proposals_by_pk?: (league_scheduling_proposalsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "league_season_divisions" */ - delete_league_season_divisions?: (league_season_divisions_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: league_season_divisions_bool_exp} }) - /** delete single row from the table: "league_season_divisions" */ - delete_league_season_divisions_by_pk?: (league_season_divisionsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "league_seasons" */ - delete_league_seasons?: (league_seasons_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: league_seasons_bool_exp} }) - /** delete single row from the table: "league_seasons" */ - delete_league_seasons_by_pk?: (league_seasonsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "league_team_movements" */ - delete_league_team_movements?: (league_team_movements_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: league_team_movements_bool_exp} }) - /** delete single row from the table: "league_team_movements" */ - delete_league_team_movements_by_pk?: (league_team_movementsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "league_team_rosters" */ - delete_league_team_rosters?: (league_team_rosters_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: league_team_rosters_bool_exp} }) - /** delete single row from the table: "league_team_rosters" */ - delete_league_team_rosters_by_pk?: (league_team_rostersGenqlSelection & { __args: {league_team_season_id: Scalars['uuid'], player_steam_id: Scalars['bigint']} }) - /** delete data from the table: "league_team_seasons" */ - delete_league_team_seasons?: (league_team_seasons_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: league_team_seasons_bool_exp} }) - /** delete single row from the table: "league_team_seasons" */ - delete_league_team_seasons_by_pk?: (league_team_seasonsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "league_teams" */ - delete_league_teams?: (league_teams_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: league_teams_bool_exp} }) - /** delete single row from the table: "league_teams" */ - delete_league_teams_by_pk?: (league_teamsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "lobbies" */ - delete_lobbies?: (lobbies_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: lobbies_bool_exp} }) - /** delete single row from the table: "lobbies" */ - delete_lobbies_by_pk?: (lobbiesGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "lobby_players" */ - delete_lobby_players?: (lobby_players_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: lobby_players_bool_exp} }) - /** delete single row from the table: "lobby_players" */ - delete_lobby_players_by_pk?: (lobby_playersGenqlSelection & { __args: {lobby_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) - /** delete data from the table: "map_callouts" */ - delete_map_callouts?: (map_callouts_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: map_callouts_bool_exp} }) - /** delete single row from the table: "map_callouts" */ - delete_map_callouts_by_pk?: (map_calloutsGenqlSelection & { __args: {map_name: Scalars['String'], name: Scalars['String']} }) - /** delete data from the table: "map_pools" */ - delete_map_pools?: (map_pools_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: map_pools_bool_exp} }) - /** delete single row from the table: "map_pools" */ - delete_map_pools_by_pk?: (map_poolsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "maps" */ - delete_maps?: (maps_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: maps_bool_exp} }) - /** delete single row from the table: "maps" */ - delete_maps_by_pk?: (mapsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "match_clips" */ - delete_match_clips?: (match_clips_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: match_clips_bool_exp} }) - /** delete single row from the table: "match_clips" */ - delete_match_clips_by_pk?: (match_clipsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "match_demo_sessions" */ - delete_match_demo_sessions?: (match_demo_sessions_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: match_demo_sessions_bool_exp} }) - /** delete single row from the table: "match_demo_sessions" */ - delete_match_demo_sessions_by_pk?: (match_demo_sessionsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "match_lineup_players" */ - delete_match_lineup_players?: (match_lineup_players_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: match_lineup_players_bool_exp} }) - /** delete single row from the table: "match_lineup_players" */ - delete_match_lineup_players_by_pk?: (match_lineup_playersGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "match_lineups" */ - delete_match_lineups?: (match_lineups_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: match_lineups_bool_exp} }) - /** delete single row from the table: "match_lineups" */ - delete_match_lineups_by_pk?: (match_lineupsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "match_map_demos" */ - delete_match_map_demos?: (match_map_demos_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: match_map_demos_bool_exp} }) - /** delete single row from the table: "match_map_demos" */ - delete_match_map_demos_by_pk?: (match_map_demosGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "match_map_rounds" */ - delete_match_map_rounds?: (match_map_rounds_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: match_map_rounds_bool_exp} }) - /** delete single row from the table: "match_map_rounds" */ - delete_match_map_rounds_by_pk?: (match_map_roundsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "match_map_veto_picks" */ - delete_match_map_veto_picks?: (match_map_veto_picks_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: match_map_veto_picks_bool_exp} }) - /** delete single row from the table: "match_map_veto_picks" */ - delete_match_map_veto_picks_by_pk?: (match_map_veto_picksGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "match_maps" */ - delete_match_maps?: (match_maps_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: match_maps_bool_exp} }) - /** delete single row from the table: "match_maps" */ - delete_match_maps_by_pk?: (match_mapsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "match_options" */ - delete_match_options?: (match_options_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: match_options_bool_exp} }) - /** delete single row from the table: "match_options" */ - delete_match_options_by_pk?: (match_optionsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "match_region_veto_picks" */ - delete_match_region_veto_picks?: (match_region_veto_picks_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: match_region_veto_picks_bool_exp} }) - /** delete single row from the table: "match_region_veto_picks" */ - delete_match_region_veto_picks_by_pk?: (match_region_veto_picksGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "match_streams" */ - delete_match_streams?: (match_streams_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: match_streams_bool_exp} }) - /** delete single row from the table: "match_streams" */ - delete_match_streams_by_pk?: (match_streamsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "match_type_cfgs" */ - delete_match_type_cfgs?: (match_type_cfgs_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: match_type_cfgs_bool_exp} }) - /** delete single row from the table: "match_type_cfgs" */ - delete_match_type_cfgs_by_pk?: (match_type_cfgsGenqlSelection & { __args: {type: e_game_cfg_types_enum} }) - /** delete data from the table: "matches" */ - delete_matches?: (matches_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: matches_bool_exp} }) - /** delete single row from the table: "matches" */ - delete_matches_by_pk?: (matchesGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "migration_hashes.hashes" */ - delete_migration_hashes_hashes?: (migration_hashes_hashes_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: migration_hashes_hashes_bool_exp} }) - /** delete single row from the table: "migration_hashes.hashes" */ - delete_migration_hashes_hashes_by_pk?: (migration_hashes_hashesGenqlSelection & { __args: {name: Scalars['String']} }) - /** delete data from the table: "v_my_friends" */ - delete_my_friends?: (my_friends_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: my_friends_bool_exp} }) - /** delete data from the table: "news_articles" */ - delete_news_articles?: (news_articles_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: news_articles_bool_exp} }) - /** delete single row from the table: "news_articles" */ - delete_news_articles_by_pk?: (news_articlesGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "notification_preferences" */ - delete_notification_preferences?: (notification_preferences_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: notification_preferences_bool_exp} }) - /** delete single row from the table: "notification_preferences" */ - delete_notification_preferences_by_pk?: (notification_preferencesGenqlSelection & { __args: {channel: Scalars['String'], key: Scalars['String'], steam_id: Scalars['bigint']} }) - /** delete data from the table: "notifications" */ - delete_notifications?: (notifications_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: notifications_bool_exp} }) - /** delete single row from the table: "notifications" */ - delete_notifications_by_pk?: (notificationsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "pending_match_import_players" */ - delete_pending_match_import_players?: (pending_match_import_players_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: pending_match_import_players_bool_exp} }) - /** delete single row from the table: "pending_match_import_players" */ - delete_pending_match_import_players_by_pk?: (pending_match_import_playersGenqlSelection & { __args: {steam_id: Scalars['bigint'], valve_match_id: Scalars['numeric']} }) - /** delete data from the table: "pending_match_imports" */ - delete_pending_match_imports?: (pending_match_imports_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: pending_match_imports_bool_exp} }) - /** delete single row from the table: "pending_match_imports" */ - delete_pending_match_imports_by_pk?: (pending_match_importsGenqlSelection & { __args: {valve_match_id: Scalars['numeric']} }) - /** delete data from the table: "player_aim_stats_demo" */ - delete_player_aim_stats_demo?: (player_aim_stats_demo_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: player_aim_stats_demo_bool_exp} }) - /** delete single row from the table: "player_aim_stats_demo" */ - delete_player_aim_stats_demo_by_pk?: (player_aim_stats_demoGenqlSelection & { __args: {attacker_steam_id: Scalars['bigint'], match_map_id: Scalars['uuid']} }) - /** delete data from the table: "player_aim_weapon_stats" */ - delete_player_aim_weapon_stats?: (player_aim_weapon_stats_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: player_aim_weapon_stats_bool_exp} }) - /** delete single row from the table: "player_aim_weapon_stats" */ - delete_player_aim_weapon_stats_by_pk?: (player_aim_weapon_statsGenqlSelection & { __args: {match_map_id: Scalars['uuid'], steam_id: Scalars['bigint'], weapon_class: Scalars['String']} }) - /** delete data from the table: "player_assists" */ - delete_player_assists?: (player_assists_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: player_assists_bool_exp} }) - /** delete single row from the table: "player_assists" */ - delete_player_assists_by_pk?: (player_assistsGenqlSelection & { __args: {attacked_steam_id: Scalars['bigint'], attacker_steam_id: Scalars['bigint'], match_map_id: Scalars['uuid'], time: Scalars['timestamptz']} }) - /** delete data from the table: "player_damages" */ - delete_player_damages?: (player_damages_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: player_damages_bool_exp} }) - /** delete single row from the table: "player_damages" */ - delete_player_damages_by_pk?: (player_damagesGenqlSelection & { __args: {id: Scalars['uuid'], match_map_id: Scalars['uuid'], time: Scalars['timestamptz']} }) - /** delete data from the table: "player_elo" */ - delete_player_elo?: (player_elo_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: player_elo_bool_exp} }) - /** delete single row from the table: "player_elo" */ - delete_player_elo_by_pk?: (player_eloGenqlSelection & { __args: {match_id: Scalars['uuid'], steam_id: Scalars['bigint'], type: e_match_types_enum} }) - /** delete data from the table: "player_faceit_rank_history" */ - delete_player_faceit_rank_history?: (player_faceit_rank_history_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: player_faceit_rank_history_bool_exp} }) - /** delete single row from the table: "player_faceit_rank_history" */ - delete_player_faceit_rank_history_by_pk?: (player_faceit_rank_historyGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "player_flashes" */ - delete_player_flashes?: (player_flashes_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: player_flashes_bool_exp} }) - /** delete single row from the table: "player_flashes" */ - delete_player_flashes_by_pk?: (player_flashesGenqlSelection & { __args: {attacked_steam_id: Scalars['bigint'], attacker_steam_id: Scalars['bigint'], match_map_id: Scalars['uuid'], time: Scalars['timestamptz']} }) - /** delete data from the table: "player_kills" */ - delete_player_kills?: (player_kills_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: player_kills_bool_exp} }) - /** delete single row from the table: "player_kills" */ - delete_player_kills_by_pk?: (player_killsGenqlSelection & { __args: {attacked_steam_id: Scalars['bigint'], attacker_steam_id: Scalars['bigint'], match_map_id: Scalars['uuid'], time: Scalars['timestamptz']} }) - /** delete data from the table: "player_kills_by_weapon" */ - delete_player_kills_by_weapon?: (player_kills_by_weapon_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: player_kills_by_weapon_bool_exp} }) - /** delete single row from the table: "player_kills_by_weapon" */ - delete_player_kills_by_weapon_by_pk?: (player_kills_by_weaponGenqlSelection & { __args: {player_steam_id: Scalars['bigint'], with: Scalars['String']} }) - /** delete data from the table: "player_leaderboard_rank" */ - delete_player_leaderboard_rank?: (player_leaderboard_rank_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: player_leaderboard_rank_bool_exp} }) - /** delete data from the table: "player_match_map_stats" */ - delete_player_match_map_stats?: (player_match_map_stats_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: player_match_map_stats_bool_exp} }) - /** delete single row from the table: "player_match_map_stats" */ - delete_player_match_map_stats_by_pk?: (player_match_map_statsGenqlSelection & { __args: {match_map_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) - /** delete data from the table: "player_objectives" */ - delete_player_objectives?: (player_objectives_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: player_objectives_bool_exp} }) - /** delete single row from the table: "player_objectives" */ - delete_player_objectives_by_pk?: (player_objectivesGenqlSelection & { __args: {match_map_id: Scalars['uuid'], player_steam_id: Scalars['bigint'], time: Scalars['timestamptz']} }) - /** delete data from the table: "player_premier_rank_history" */ - delete_player_premier_rank_history?: (player_premier_rank_history_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: player_premier_rank_history_bool_exp} }) - /** delete single row from the table: "player_premier_rank_history" */ - delete_player_premier_rank_history_by_pk?: (player_premier_rank_historyGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "player_sanctions" */ - delete_player_sanctions?: (player_sanctions_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: player_sanctions_bool_exp} }) - /** delete single row from the table: "player_sanctions" */ - delete_player_sanctions_by_pk?: (player_sanctionsGenqlSelection & { __args: {created_at: Scalars['timestamptz'], id: Scalars['uuid']} }) - /** delete data from the table: "player_season_stats" */ - delete_player_season_stats?: (player_season_stats_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: player_season_stats_bool_exp} }) - /** delete single row from the table: "player_season_stats" */ - delete_player_season_stats_by_pk?: (player_season_statsGenqlSelection & { __args: {player_steam_id: Scalars['bigint'], season_id: Scalars['uuid']} }) - /** delete data from the table: "player_stats" */ - delete_player_stats?: (player_stats_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: player_stats_bool_exp} }) - /** delete single row from the table: "player_stats" */ - delete_player_stats_by_pk?: (player_statsGenqlSelection & { __args: {player_steam_id: Scalars['bigint']} }) - /** delete data from the table: "player_steam_bot_friend" */ - delete_player_steam_bot_friend?: (player_steam_bot_friend_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: player_steam_bot_friend_bool_exp} }) - /** delete single row from the table: "player_steam_bot_friend" */ - delete_player_steam_bot_friend_by_pk?: (player_steam_bot_friendGenqlSelection & { __args: {steam_id: Scalars['bigint']} }) - /** delete data from the table: "player_steam_match_auth" */ - delete_player_steam_match_auth?: (player_steam_match_auth_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: player_steam_match_auth_bool_exp} }) - /** delete single row from the table: "player_steam_match_auth" */ - delete_player_steam_match_auth_by_pk?: (player_steam_match_authGenqlSelection & { __args: {steam_id: Scalars['bigint']} }) - /** delete data from the table: "player_unused_utility" */ - delete_player_unused_utility?: (player_unused_utility_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: player_unused_utility_bool_exp} }) - /** delete single row from the table: "player_unused_utility" */ - delete_player_unused_utility_by_pk?: (player_unused_utilityGenqlSelection & { __args: {match_map_id: Scalars['uuid'], player_steam_id: Scalars['bigint']} }) - /** delete data from the table: "player_utility" */ - delete_player_utility?: (player_utility_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: player_utility_bool_exp} }) - /** delete single row from the table: "player_utility" */ - delete_player_utility_by_pk?: (player_utilityGenqlSelection & { __args: {attacker_steam_id: Scalars['bigint'], match_map_id: Scalars['uuid'], time: Scalars['timestamptz']} }) - /** delete data from the table: "players" */ - delete_players?: (players_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: players_bool_exp} }) - /** delete single row from the table: "players" */ - delete_players_by_pk?: (playersGenqlSelection & { __args: {steam_id: Scalars['bigint']} }) - /** delete data from the table: "plugin_versions" */ - delete_plugin_versions?: (plugin_versions_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: plugin_versions_bool_exp} }) - /** delete single row from the table: "plugin_versions" */ - delete_plugin_versions_by_pk?: (plugin_versionsGenqlSelection & { __args: {runtime: e_plugin_runtimes_enum, version: Scalars['String']} }) - /** delete data from the table: "push_subscriptions" */ - delete_push_subscriptions?: (push_subscriptions_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: push_subscriptions_bool_exp} }) - /** delete single row from the table: "push_subscriptions" */ - delete_push_subscriptions_by_pk?: (push_subscriptionsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "v_role_permissions" */ - delete_role_permissions?: (role_permissions_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: role_permissions_bool_exp} }) - /** delete data from the table: "seasons" */ - delete_seasons?: (seasons_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: seasons_bool_exp} }) - /** delete single row from the table: "seasons" */ - delete_seasons_by_pk?: (seasonsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "server_regions" */ - delete_server_regions?: (server_regions_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: server_regions_bool_exp} }) - /** delete single row from the table: "server_regions" */ - delete_server_regions_by_pk?: (server_regionsGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "servers" */ - delete_servers?: (servers_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: servers_bool_exp} }) - /** delete single row from the table: "servers" */ - delete_servers_by_pk?: (serversGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "settings" */ - delete_settings?: (settings_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: settings_bool_exp} }) - /** delete single row from the table: "settings" */ - delete_settings_by_pk?: (settingsGenqlSelection & { __args: {name: Scalars['String']} }) - /** delete data from the table: "steam_account_claims" */ - delete_steam_account_claims?: (steam_account_claims_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: steam_account_claims_bool_exp} }) - /** delete single row from the table: "steam_account_claims" */ - delete_steam_account_claims_by_pk?: (steam_account_claimsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "steam_accounts" */ - delete_steam_accounts?: (steam_accounts_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: steam_accounts_bool_exp} }) - /** delete single row from the table: "steam_accounts" */ - delete_steam_accounts_by_pk?: (steam_accountsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "system_alerts" */ - delete_system_alerts?: (system_alerts_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: system_alerts_bool_exp} }) - /** delete single row from the table: "system_alerts" */ - delete_system_alerts_by_pk?: (system_alertsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "team_invites" */ - delete_team_invites?: (team_invites_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: team_invites_bool_exp} }) - /** delete single row from the table: "team_invites" */ - delete_team_invites_by_pk?: (team_invitesGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "team_roster" */ - delete_team_roster?: (team_roster_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: team_roster_bool_exp} }) - /** delete single row from the table: "team_roster" */ - delete_team_roster_by_pk?: (team_rosterGenqlSelection & { __args: {player_steam_id: Scalars['bigint'], team_id: Scalars['uuid']} }) - /** delete data from the table: "team_scrim_alerts" */ - delete_team_scrim_alerts?: (team_scrim_alerts_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: team_scrim_alerts_bool_exp} }) - /** delete single row from the table: "team_scrim_alerts" */ - delete_team_scrim_alerts_by_pk?: (team_scrim_alertsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "team_scrim_availability" */ - delete_team_scrim_availability?: (team_scrim_availability_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: team_scrim_availability_bool_exp} }) - /** delete single row from the table: "team_scrim_availability" */ - delete_team_scrim_availability_by_pk?: (team_scrim_availabilityGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "team_scrim_request_proposals" */ - delete_team_scrim_request_proposals?: (team_scrim_request_proposals_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: team_scrim_request_proposals_bool_exp} }) - /** delete single row from the table: "team_scrim_request_proposals" */ - delete_team_scrim_request_proposals_by_pk?: (team_scrim_request_proposalsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "team_scrim_requests" */ - delete_team_scrim_requests?: (team_scrim_requests_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: team_scrim_requests_bool_exp} }) - /** delete single row from the table: "team_scrim_requests" */ - delete_team_scrim_requests_by_pk?: (team_scrim_requestsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "team_scrim_settings" */ - delete_team_scrim_settings?: (team_scrim_settings_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: team_scrim_settings_bool_exp} }) - /** delete single row from the table: "team_scrim_settings" */ - delete_team_scrim_settings_by_pk?: (team_scrim_settingsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "team_suggestions" */ - delete_team_suggestions?: (team_suggestions_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: team_suggestions_bool_exp} }) - /** delete single row from the table: "team_suggestions" */ - delete_team_suggestions_by_pk?: (team_suggestionsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "teams" */ - delete_teams?: (teams_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: teams_bool_exp} }) - /** delete single row from the table: "teams" */ - delete_teams_by_pk?: (teamsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "tournament_awards" */ - delete_tournament_awards?: (tournament_awards_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: tournament_awards_bool_exp} }) - /** delete single row from the table: "tournament_awards" */ - delete_tournament_awards_by_pk?: (tournament_awardsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "tournament_brackets" */ - delete_tournament_brackets?: (tournament_brackets_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: tournament_brackets_bool_exp} }) - /** delete single row from the table: "tournament_brackets" */ - delete_tournament_brackets_by_pk?: (tournament_bracketsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "tournament_categories" */ - delete_tournament_categories?: (tournament_categories_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: tournament_categories_bool_exp} }) - /** delete single row from the table: "tournament_categories" */ - delete_tournament_categories_by_pk?: (tournament_categoriesGenqlSelection & { __args: {category: e_tournament_categories_enum, tournament_id: Scalars['uuid']} }) - /** delete data from the table: "tournament_free_agents" */ - delete_tournament_free_agents?: (tournament_free_agents_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: tournament_free_agents_bool_exp} }) - /** delete single row from the table: "tournament_free_agents" */ - delete_tournament_free_agents_by_pk?: (tournament_free_agentsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "tournament_invite_code_uses" */ - delete_tournament_invite_code_uses?: (tournament_invite_code_uses_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: tournament_invite_code_uses_bool_exp} }) - /** delete single row from the table: "tournament_invite_code_uses" */ - delete_tournament_invite_code_uses_by_pk?: (tournament_invite_code_usesGenqlSelection & { __args: {invite_code_id: Scalars['uuid'], player_steam_id: Scalars['bigint']} }) - /** delete data from the table: "tournament_invite_codes" */ - delete_tournament_invite_codes?: (tournament_invite_codes_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: tournament_invite_codes_bool_exp} }) - /** delete single row from the table: "tournament_invite_codes" */ - delete_tournament_invite_codes_by_pk?: (tournament_invite_codesGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "tournament_invites" */ - delete_tournament_invites?: (tournament_invites_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: tournament_invites_bool_exp} }) - /** delete single row from the table: "tournament_invites" */ - delete_tournament_invites_by_pk?: (tournament_invitesGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "tournament_leaderboard_entries" */ - delete_tournament_leaderboard_entries?: (tournament_leaderboard_entries_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: tournament_leaderboard_entries_bool_exp} }) - /** delete data from the table: "tournament_no_shows" */ - delete_tournament_no_shows?: (tournament_no_shows_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: tournament_no_shows_bool_exp} }) - /** delete single row from the table: "tournament_no_shows" */ - delete_tournament_no_shows_by_pk?: (tournament_no_showsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "tournament_organizer_teams" */ - delete_tournament_organizer_teams?: (tournament_organizer_teams_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: tournament_organizer_teams_bool_exp} }) - /** delete single row from the table: "tournament_organizer_teams" */ - delete_tournament_organizer_teams_by_pk?: (tournament_organizer_teamsGenqlSelection & { __args: {team_id: Scalars['uuid'], tournament_id: Scalars['uuid']} }) - /** delete data from the table: "tournament_organizers" */ - delete_tournament_organizers?: (tournament_organizers_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: tournament_organizers_bool_exp} }) - /** delete single row from the table: "tournament_organizers" */ - delete_tournament_organizers_by_pk?: (tournament_organizersGenqlSelection & { __args: {steam_id: Scalars['bigint'], tournament_id: Scalars['uuid']} }) - /** delete data from the table: "tournament_prizes" */ - delete_tournament_prizes?: (tournament_prizes_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: tournament_prizes_bool_exp} }) - /** delete single row from the table: "tournament_prizes" */ - delete_tournament_prizes_by_pk?: (tournament_prizesGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "tournament_registration_unlocks" */ - delete_tournament_registration_unlocks?: (tournament_registration_unlocks_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: tournament_registration_unlocks_bool_exp} }) - /** delete data from the table: "tournament_stage_windows" */ - delete_tournament_stage_windows?: (tournament_stage_windows_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: tournament_stage_windows_bool_exp} }) - /** delete single row from the table: "tournament_stage_windows" */ - delete_tournament_stage_windows_by_pk?: (tournament_stage_windowsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "tournament_stages" */ - delete_tournament_stages?: (tournament_stages_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: tournament_stages_bool_exp} }) - /** delete single row from the table: "tournament_stages" */ - delete_tournament_stages_by_pk?: (tournament_stagesGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "tournament_team_invites" */ - delete_tournament_team_invites?: (tournament_team_invites_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: tournament_team_invites_bool_exp} }) - /** delete single row from the table: "tournament_team_invites" */ - delete_tournament_team_invites_by_pk?: (tournament_team_invitesGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "tournament_team_roster" */ - delete_tournament_team_roster?: (tournament_team_roster_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: tournament_team_roster_bool_exp} }) - /** delete single row from the table: "tournament_team_roster" */ - delete_tournament_team_roster_by_pk?: (tournament_team_rosterGenqlSelection & { __args: {player_steam_id: Scalars['bigint'], tournament_id: Scalars['uuid']} }) - /** delete data from the table: "tournament_teams" */ - delete_tournament_teams?: (tournament_teams_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: tournament_teams_bool_exp} }) - /** delete single row from the table: "tournament_teams" */ - delete_tournament_teams_by_pk?: (tournament_teamsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "tournaments" */ - delete_tournaments?: (tournaments_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: tournaments_bool_exp} }) - /** delete single row from the table: "tournaments" */ - delete_tournaments_by_pk?: (tournamentsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "utility_collection_items" */ - delete_utility_collection_items?: (utility_collection_items_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: utility_collection_items_bool_exp} }) - /** delete single row from the table: "utility_collection_items" */ - delete_utility_collection_items_by_pk?: (utility_collection_itemsGenqlSelection & { __args: {collection_id: Scalars['uuid'], utility_lineup_id: Scalars['uuid']} }) - /** delete data from the table: "utility_collections" */ - delete_utility_collections?: (utility_collections_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: utility_collections_bool_exp} }) - /** delete single row from the table: "utility_collections" */ - delete_utility_collections_by_pk?: (utility_collectionsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "utility_demo_mines" */ - delete_utility_demo_mines?: (utility_demo_mines_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: utility_demo_mines_bool_exp} }) - /** delete single row from the table: "utility_demo_mines" */ - delete_utility_demo_mines_by_pk?: (utility_demo_minesGenqlSelection & { __args: {match_map_demo_id: Scalars['uuid']} }) - /** delete data from the table: "utility_demo_throws" */ - delete_utility_demo_throws?: (utility_demo_throws_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: utility_demo_throws_bool_exp} }) - /** delete single row from the table: "utility_demo_throws" */ - delete_utility_demo_throws_by_pk?: (utility_demo_throwsGenqlSelection & { __args: {grenade_id: Scalars['Int'], match_map_demo_id: Scalars['uuid']} }) - /** delete data from the table: "utility_drift_results" */ - delete_utility_drift_results?: (utility_drift_results_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: utility_drift_results_bool_exp} }) - /** delete single row from the table: "utility_drift_results" */ - delete_utility_drift_results_by_pk?: (utility_drift_resultsGenqlSelection & { __args: {utility_drift_scan_id: Scalars['uuid'], utility_lineup_id: Scalars['uuid']} }) - /** delete data from the table: "utility_drift_scans" */ - delete_utility_drift_scans?: (utility_drift_scans_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: utility_drift_scans_bool_exp} }) - /** delete single row from the table: "utility_drift_scans" */ - delete_utility_drift_scans_by_pk?: (utility_drift_scansGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "utility_lineup_favorites" */ - delete_utility_lineup_favorites?: (utility_lineup_favorites_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: utility_lineup_favorites_bool_exp} }) - /** delete single row from the table: "utility_lineup_favorites" */ - delete_utility_lineup_favorites_by_pk?: (utility_lineup_favoritesGenqlSelection & { __args: {steam_id: Scalars['bigint'], utility_lineup_id: Scalars['uuid']} }) - /** delete data from the table: "utility_lineup_progress" */ - delete_utility_lineup_progress?: (utility_lineup_progress_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: utility_lineup_progress_bool_exp} }) - /** delete single row from the table: "utility_lineup_progress" */ - delete_utility_lineup_progress_by_pk?: (utility_lineup_progressGenqlSelection & { __args: {steam_id: Scalars['bigint'], utility_lineup_id: Scalars['uuid']} }) - /** delete data from the table: "utility_lineup_renders" */ - delete_utility_lineup_renders?: (utility_lineup_renders_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: utility_lineup_renders_bool_exp} }) - /** delete single row from the table: "utility_lineup_renders" */ - delete_utility_lineup_renders_by_pk?: (utility_lineup_rendersGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "utility_lineup_repairs" */ - delete_utility_lineup_repairs?: (utility_lineup_repairs_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: utility_lineup_repairs_bool_exp} }) - /** delete single row from the table: "utility_lineup_repairs" */ - delete_utility_lineup_repairs_by_pk?: (utility_lineup_repairsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "utility_lineup_votes" */ - delete_utility_lineup_votes?: (utility_lineup_votes_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: utility_lineup_votes_bool_exp} }) - /** delete single row from the table: "utility_lineup_votes" */ - delete_utility_lineup_votes_by_pk?: (utility_lineup_votesGenqlSelection & { __args: {steam_id: Scalars['bigint'], utility_lineup_id: Scalars['uuid']} }) - /** delete data from the table: "utility_lineups" */ - delete_utility_lineups?: (utility_lineups_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: utility_lineups_bool_exp} }) - /** delete single row from the table: "utility_lineups" */ - delete_utility_lineups_by_pk?: (utility_lineupsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "utility_meta_lineups" */ - delete_utility_meta_lineups?: (utility_meta_lineups_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: utility_meta_lineups_bool_exp} }) - /** delete single row from the table: "utility_meta_lineups" */ - delete_utility_meta_lineups_by_pk?: (utility_meta_lineupsGenqlSelection & { __args: {lineup_bucket: Scalars['String']} }) - /** delete data from the table: "utility_playbook_steps" */ - delete_utility_playbook_steps?: (utility_playbook_steps_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: utility_playbook_steps_bool_exp} }) - /** delete single row from the table: "utility_playbook_steps" */ - delete_utility_playbook_steps_by_pk?: (utility_playbook_stepsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "utility_playbooks" */ - delete_utility_playbooks?: (utility_playbooks_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: utility_playbooks_bool_exp} }) - /** delete single row from the table: "utility_playbooks" */ - delete_utility_playbooks_by_pk?: (utility_playbooksGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "utility_practice_invites" */ - delete_utility_practice_invites?: (utility_practice_invites_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: utility_practice_invites_bool_exp} }) - /** delete single row from the table: "utility_practice_invites" */ - delete_utility_practice_invites_by_pk?: (utility_practice_invitesGenqlSelection & { __args: {steam_id: Scalars['bigint'], utility_practice_session_id: Scalars['uuid']} }) - /** delete data from the table: "utility_practice_sessions" */ - delete_utility_practice_sessions?: (utility_practice_sessions_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: utility_practice_sessions_bool_exp} }) - /** delete single row from the table: "utility_practice_sessions" */ - delete_utility_practice_sessions_by_pk?: (utility_practice_sessionsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** delete data from the table: "v_match_captains" */ - delete_v_match_captains?: (v_match_captains_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: v_match_captains_bool_exp} }) - /** delete data from the table: "v_match_map_backup_rounds" */ - delete_v_match_map_backup_rounds?: (v_match_map_backup_rounds_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: v_match_map_backup_rounds_bool_exp} }) - /** delete data from the table: "v_player_match_map_hltv" */ - delete_v_player_match_map_hltv?: (v_player_match_map_hltv_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: v_player_match_map_hltv_bool_exp} }) - /** delete data from the table: "v_pool_maps" */ - delete_v_pool_maps?: (v_pool_maps_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: v_pool_maps_bool_exp} }) - /** delete data from the table: "v_team_stage_results" */ - delete_v_team_stage_results?: (v_team_stage_results_mutation_responseGenqlSelection & { __args: { - /** filter the rows which have to be deleted */ - where: v_team_stage_results_bool_exp} }) - /** delete single row from the table: "v_team_stage_results" */ - delete_v_team_stage_results_by_pk?: (v_team_stage_resultsGenqlSelection & { __args: {tournament_stage_id: Scalars['uuid'], tournament_team_id: Scalars['uuid']} }) - denyInvite?: (SuccessOutputGenqlSelection & { __args: {invite_id: Scalars['uuid'], type: Scalars['String']} }) - denyNameChange?: (SuccessOutputGenqlSelection & { __args: {name: Scalars['String'], steam_id: Scalars['bigint']} }) - /** Organizer regenerates the free agent teams and re-seeds */ - draftTournamentTeams?: (TournamentDraftOutputGenqlSelection & { __args: {tournament_id: Scalars['uuid']} }) - /** Organizer pushes the check-in deadline out and reopens registration */ - extendTournamentCheckIn?: (SuccessOutputGenqlSelection & { __args: {minutes: Scalars['Int'], tournament_id: Scalars['uuid']} }) - forfeitMatch?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid'], winning_lineup_id: Scalars['uuid']} }) - /** Copy a lineup you can see into your own library */ - forkUtilityLineup?: (UtilityLineupOutputGenqlSelection & { __args: {collection_id?: (Scalars['uuid'] | null), name?: (Scalars['String'] | null), utility_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)} }) - /** Seed the utility library from an operator-supplied payload */ - importUtilityLineups?: (UtilityImportOutputGenqlSelection & { __args: {dry_run?: (Scalars['Boolean'] | null), payload: Scalars['jsonb']} }) - /** insert data into the table: "_map_pool" */ - insert__map_pool?: (_map_pool_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: _map_pool_insert_input[], - /** upsert condition */ - on_conflict?: (_map_pool_on_conflict | null)} }) - /** insert a single row into the table: "_map_pool" */ - insert__map_pool_one?: (_map_poolGenqlSelection & { __args: { - /** the row to be inserted */ - object: _map_pool_insert_input, - /** upsert condition */ - on_conflict?: (_map_pool_on_conflict | null)} }) - /** insert data into the table: "abandoned_matches" */ - insert_abandoned_matches?: (abandoned_matches_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: abandoned_matches_insert_input[], - /** upsert condition */ - on_conflict?: (abandoned_matches_on_conflict | null)} }) - /** insert a single row into the table: "abandoned_matches" */ - insert_abandoned_matches_one?: (abandoned_matchesGenqlSelection & { __args: { - /** the row to be inserted */ - object: abandoned_matches_insert_input, - /** upsert condition */ - on_conflict?: (abandoned_matches_on_conflict | null)} }) - /** insert data into the table: "api_keys" */ - insert_api_keys?: (api_keys_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: api_keys_insert_input[], - /** upsert condition */ - on_conflict?: (api_keys_on_conflict | null)} }) - /** insert a single row into the table: "api_keys" */ - insert_api_keys_one?: (api_keysGenqlSelection & { __args: { - /** the row to be inserted */ - object: api_keys_insert_input, - /** upsert condition */ - on_conflict?: (api_keys_on_conflict | null)} }) - /** insert data into the table: "award_recipients" */ - insert_award_recipients?: (award_recipients_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: award_recipients_insert_input[], - /** upsert condition */ - on_conflict?: (award_recipients_on_conflict | null)} }) - /** insert a single row into the table: "award_recipients" */ - insert_award_recipients_one?: (award_recipientsGenqlSelection & { __args: { - /** the row to be inserted */ - object: award_recipients_insert_input, - /** upsert condition */ - on_conflict?: (award_recipients_on_conflict | null)} }) - /** insert data into the table: "awards" */ - insert_awards?: (awards_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: awards_insert_input[], - /** upsert condition */ - on_conflict?: (awards_on_conflict | null)} }) - /** insert a single row into the table: "awards" */ - insert_awards_one?: (awardsGenqlSelection & { __args: { - /** the row to be inserted */ - object: awards_insert_input, - /** upsert condition */ - on_conflict?: (awards_on_conflict | null)} }) - /** insert data into the table: "chat_read_state" */ - insert_chat_read_state?: (chat_read_state_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: chat_read_state_insert_input[], - /** upsert condition */ - on_conflict?: (chat_read_state_on_conflict | null)} }) - /** insert a single row into the table: "chat_read_state" */ - insert_chat_read_state_one?: (chat_read_stateGenqlSelection & { __args: { - /** the row to be inserted */ - object: chat_read_state_insert_input, - /** upsert condition */ - on_conflict?: (chat_read_state_on_conflict | null)} }) - /** insert data into the table: "clip_render_jobs" */ - insert_clip_render_jobs?: (clip_render_jobs_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: clip_render_jobs_insert_input[], - /** upsert condition */ - on_conflict?: (clip_render_jobs_on_conflict | null)} }) - /** insert a single row into the table: "clip_render_jobs" */ - insert_clip_render_jobs_one?: (clip_render_jobsGenqlSelection & { __args: { - /** the row to be inserted */ - object: clip_render_jobs_insert_input, - /** upsert condition */ - on_conflict?: (clip_render_jobs_on_conflict | null)} }) - /** insert data into the table: "custom_pages" */ - insert_custom_pages?: (custom_pages_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: custom_pages_insert_input[], - /** upsert condition */ - on_conflict?: (custom_pages_on_conflict | null)} }) - /** insert a single row into the table: "custom_pages" */ - insert_custom_pages_one?: (custom_pagesGenqlSelection & { __args: { - /** the row to be inserted */ - object: custom_pages_insert_input, - /** upsert condition */ - on_conflict?: (custom_pages_on_conflict | null)} }) - /** insert data into the table: "db_backups" */ - insert_db_backups?: (db_backups_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: db_backups_insert_input[], - /** upsert condition */ - on_conflict?: (db_backups_on_conflict | null)} }) - /** insert a single row into the table: "db_backups" */ - insert_db_backups_one?: (db_backupsGenqlSelection & { __args: { - /** the row to be inserted */ - object: db_backups_insert_input, - /** upsert condition */ - on_conflict?: (db_backups_on_conflict | null)} }) - /** insert data into the table: "direct_conversations" */ - insert_direct_conversations?: (direct_conversations_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: direct_conversations_insert_input[], - /** upsert condition */ - on_conflict?: (direct_conversations_on_conflict | null)} }) - /** insert a single row into the table: "direct_conversations" */ - insert_direct_conversations_one?: (direct_conversationsGenqlSelection & { __args: { - /** the row to be inserted */ - object: direct_conversations_insert_input, - /** upsert condition */ - on_conflict?: (direct_conversations_on_conflict | null)} }) - /** insert data into the table: "direct_messages" */ - insert_direct_messages?: (direct_messages_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: direct_messages_insert_input[], - /** upsert condition */ - on_conflict?: (direct_messages_on_conflict | null)} }) - /** insert a single row into the table: "direct_messages" */ - insert_direct_messages_one?: (direct_messagesGenqlSelection & { __args: { - /** the row to be inserted */ - object: direct_messages_insert_input, - /** upsert condition */ - on_conflict?: (direct_messages_on_conflict | null)} }) - /** insert data into the table: "draft_game_picks" */ - insert_draft_game_picks?: (draft_game_picks_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: draft_game_picks_insert_input[], - /** upsert condition */ - on_conflict?: (draft_game_picks_on_conflict | null)} }) - /** insert a single row into the table: "draft_game_picks" */ - insert_draft_game_picks_one?: (draft_game_picksGenqlSelection & { __args: { - /** the row to be inserted */ - object: draft_game_picks_insert_input, - /** upsert condition */ - on_conflict?: (draft_game_picks_on_conflict | null)} }) - /** insert data into the table: "draft_game_players" */ - insert_draft_game_players?: (draft_game_players_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: draft_game_players_insert_input[], - /** upsert condition */ - on_conflict?: (draft_game_players_on_conflict | null)} }) - /** insert a single row into the table: "draft_game_players" */ - insert_draft_game_players_one?: (draft_game_playersGenqlSelection & { __args: { - /** the row to be inserted */ - object: draft_game_players_insert_input, - /** upsert condition */ - on_conflict?: (draft_game_players_on_conflict | null)} }) - /** insert data into the table: "draft_games" */ - insert_draft_games?: (draft_games_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: draft_games_insert_input[], - /** upsert condition */ - on_conflict?: (draft_games_on_conflict | null)} }) - /** insert a single row into the table: "draft_games" */ - insert_draft_games_one?: (draft_gamesGenqlSelection & { __args: { - /** the row to be inserted */ - object: draft_games_insert_input, - /** upsert condition */ - on_conflict?: (draft_games_on_conflict | null)} }) - /** insert data into the table: "e_award_sources" */ - insert_e_award_sources?: (e_award_sources_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_award_sources_insert_input[], - /** upsert condition */ - on_conflict?: (e_award_sources_on_conflict | null)} }) - /** insert a single row into the table: "e_award_sources" */ - insert_e_award_sources_one?: (e_award_sourcesGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_award_sources_insert_input, - /** upsert condition */ - on_conflict?: (e_award_sources_on_conflict | null)} }) - /** insert data into the table: "e_award_tiers" */ - insert_e_award_tiers?: (e_award_tiers_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_award_tiers_insert_input[], - /** upsert condition */ - on_conflict?: (e_award_tiers_on_conflict | null)} }) - /** insert a single row into the table: "e_award_tiers" */ - insert_e_award_tiers_one?: (e_award_tiersGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_award_tiers_insert_input, - /** upsert condition */ - on_conflict?: (e_award_tiers_on_conflict | null)} }) - /** insert data into the table: "e_check_in_settings" */ - insert_e_check_in_settings?: (e_check_in_settings_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_check_in_settings_insert_input[], - /** upsert condition */ - on_conflict?: (e_check_in_settings_on_conflict | null)} }) - /** insert a single row into the table: "e_check_in_settings" */ - insert_e_check_in_settings_one?: (e_check_in_settingsGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_check_in_settings_insert_input, - /** upsert condition */ - on_conflict?: (e_check_in_settings_on_conflict | null)} }) - /** insert data into the table: "e_draft_game_captain_selection" */ - insert_e_draft_game_captain_selection?: (e_draft_game_captain_selection_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_draft_game_captain_selection_insert_input[], - /** upsert condition */ - on_conflict?: (e_draft_game_captain_selection_on_conflict | null)} }) - /** insert a single row into the table: "e_draft_game_captain_selection" */ - insert_e_draft_game_captain_selection_one?: (e_draft_game_captain_selectionGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_draft_game_captain_selection_insert_input, - /** upsert condition */ - on_conflict?: (e_draft_game_captain_selection_on_conflict | null)} }) - /** insert data into the table: "e_draft_game_draft_order" */ - insert_e_draft_game_draft_order?: (e_draft_game_draft_order_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_draft_game_draft_order_insert_input[], - /** upsert condition */ - on_conflict?: (e_draft_game_draft_order_on_conflict | null)} }) - /** insert a single row into the table: "e_draft_game_draft_order" */ - insert_e_draft_game_draft_order_one?: (e_draft_game_draft_orderGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_draft_game_draft_order_insert_input, - /** upsert condition */ - on_conflict?: (e_draft_game_draft_order_on_conflict | null)} }) - /** insert data into the table: "e_draft_game_mode" */ - insert_e_draft_game_mode?: (e_draft_game_mode_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_draft_game_mode_insert_input[], - /** upsert condition */ - on_conflict?: (e_draft_game_mode_on_conflict | null)} }) - /** insert a single row into the table: "e_draft_game_mode" */ - insert_e_draft_game_mode_one?: (e_draft_game_modeGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_draft_game_mode_insert_input, - /** upsert condition */ - on_conflict?: (e_draft_game_mode_on_conflict | null)} }) - /** insert data into the table: "e_draft_game_player_status" */ - insert_e_draft_game_player_status?: (e_draft_game_player_status_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_draft_game_player_status_insert_input[], - /** upsert condition */ - on_conflict?: (e_draft_game_player_status_on_conflict | null)} }) - /** insert a single row into the table: "e_draft_game_player_status" */ - insert_e_draft_game_player_status_one?: (e_draft_game_player_statusGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_draft_game_player_status_insert_input, - /** upsert condition */ - on_conflict?: (e_draft_game_player_status_on_conflict | null)} }) - /** insert data into the table: "e_draft_game_status" */ - insert_e_draft_game_status?: (e_draft_game_status_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_draft_game_status_insert_input[], - /** upsert condition */ - on_conflict?: (e_draft_game_status_on_conflict | null)} }) - /** insert a single row into the table: "e_draft_game_status" */ - insert_e_draft_game_status_one?: (e_draft_game_statusGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_draft_game_status_insert_input, - /** upsert condition */ - on_conflict?: (e_draft_game_status_on_conflict | null)} }) - /** insert data into the table: "e_event_media_access" */ - insert_e_event_media_access?: (e_event_media_access_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_event_media_access_insert_input[], - /** upsert condition */ - on_conflict?: (e_event_media_access_on_conflict | null)} }) - /** insert a single row into the table: "e_event_media_access" */ - insert_e_event_media_access_one?: (e_event_media_accessGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_event_media_access_insert_input, - /** upsert condition */ - on_conflict?: (e_event_media_access_on_conflict | null)} }) - /** insert data into the table: "e_event_visibility" */ - insert_e_event_visibility?: (e_event_visibility_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_event_visibility_insert_input[], - /** upsert condition */ - on_conflict?: (e_event_visibility_on_conflict | null)} }) - /** insert a single row into the table: "e_event_visibility" */ - insert_e_event_visibility_one?: (e_event_visibilityGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_event_visibility_insert_input, - /** upsert condition */ - on_conflict?: (e_event_visibility_on_conflict | null)} }) - /** insert data into the table: "e_friend_status" */ - insert_e_friend_status?: (e_friend_status_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_friend_status_insert_input[], - /** upsert condition */ - on_conflict?: (e_friend_status_on_conflict | null)} }) - /** insert a single row into the table: "e_friend_status" */ - insert_e_friend_status_one?: (e_friend_statusGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_friend_status_insert_input, - /** upsert condition */ - on_conflict?: (e_friend_status_on_conflict | null)} }) - /** insert data into the table: "e_game_cfg_types" */ - insert_e_game_cfg_types?: (e_game_cfg_types_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_game_cfg_types_insert_input[], - /** upsert condition */ - on_conflict?: (e_game_cfg_types_on_conflict | null)} }) - /** insert a single row into the table: "e_game_cfg_types" */ - insert_e_game_cfg_types_one?: (e_game_cfg_typesGenqlSelection & { __args: { - /** the row to be inserted */ - 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 */ - objects: e_game_server_node_statuses_insert_input[], - /** upsert condition */ - on_conflict?: (e_game_server_node_statuses_on_conflict | null)} }) - /** insert a single row into the table: "e_game_server_node_statuses" */ - insert_e_game_server_node_statuses_one?: (e_game_server_node_statusesGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_game_server_node_statuses_insert_input, - /** upsert condition */ - on_conflict?: (e_game_server_node_statuses_on_conflict | null)} }) - /** insert data into the table: "e_league_movement_types" */ - insert_e_league_movement_types?: (e_league_movement_types_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_league_movement_types_insert_input[], - /** upsert condition */ - on_conflict?: (e_league_movement_types_on_conflict | null)} }) - /** insert a single row into the table: "e_league_movement_types" */ - insert_e_league_movement_types_one?: (e_league_movement_typesGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_league_movement_types_insert_input, - /** upsert condition */ - on_conflict?: (e_league_movement_types_on_conflict | null)} }) - /** insert data into the table: "e_league_proposal_statuses" */ - insert_e_league_proposal_statuses?: (e_league_proposal_statuses_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_league_proposal_statuses_insert_input[], - /** upsert condition */ - on_conflict?: (e_league_proposal_statuses_on_conflict | null)} }) - /** insert a single row into the table: "e_league_proposal_statuses" */ - insert_e_league_proposal_statuses_one?: (e_league_proposal_statusesGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_league_proposal_statuses_insert_input, - /** upsert condition */ - on_conflict?: (e_league_proposal_statuses_on_conflict | null)} }) - /** insert data into the table: "e_league_registration_statuses" */ - insert_e_league_registration_statuses?: (e_league_registration_statuses_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_league_registration_statuses_insert_input[], - /** upsert condition */ - on_conflict?: (e_league_registration_statuses_on_conflict | null)} }) - /** insert a single row into the table: "e_league_registration_statuses" */ - insert_e_league_registration_statuses_one?: (e_league_registration_statusesGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_league_registration_statuses_insert_input, - /** upsert condition */ - on_conflict?: (e_league_registration_statuses_on_conflict | null)} }) - /** insert data into the table: "e_league_season_statuses" */ - insert_e_league_season_statuses?: (e_league_season_statuses_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_league_season_statuses_insert_input[], - /** upsert condition */ - on_conflict?: (e_league_season_statuses_on_conflict | null)} }) - /** insert a single row into the table: "e_league_season_statuses" */ - insert_e_league_season_statuses_one?: (e_league_season_statusesGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_league_season_statuses_insert_input, - /** upsert condition */ - on_conflict?: (e_league_season_statuses_on_conflict | null)} }) - /** insert data into the table: "e_lobby_access" */ - insert_e_lobby_access?: (e_lobby_access_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_lobby_access_insert_input[], - /** upsert condition */ - on_conflict?: (e_lobby_access_on_conflict | null)} }) - /** insert a single row into the table: "e_lobby_access" */ - insert_e_lobby_access_one?: (e_lobby_accessGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_lobby_access_insert_input, - /** upsert condition */ - on_conflict?: (e_lobby_access_on_conflict | null)} }) - /** insert data into the table: "e_lobby_player_status" */ - insert_e_lobby_player_status?: (e_lobby_player_status_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_lobby_player_status_insert_input[], - /** upsert condition */ - on_conflict?: (e_lobby_player_status_on_conflict | null)} }) - /** insert a single row into the table: "e_lobby_player_status" */ - insert_e_lobby_player_status_one?: (e_lobby_player_statusGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_lobby_player_status_insert_input, - /** upsert condition */ - on_conflict?: (e_lobby_player_status_on_conflict | null)} }) - /** insert data into the table: "e_map_pool_types" */ - insert_e_map_pool_types?: (e_map_pool_types_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_map_pool_types_insert_input[], - /** upsert condition */ - on_conflict?: (e_map_pool_types_on_conflict | null)} }) - /** insert a single row into the table: "e_map_pool_types" */ - insert_e_map_pool_types_one?: (e_map_pool_typesGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_map_pool_types_insert_input, - /** upsert condition */ - on_conflict?: (e_map_pool_types_on_conflict | null)} }) - /** insert data into the table: "e_match_clip_visibility" */ - insert_e_match_clip_visibility?: (e_match_clip_visibility_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_match_clip_visibility_insert_input[], - /** upsert condition */ - on_conflict?: (e_match_clip_visibility_on_conflict | null)} }) - /** insert a single row into the table: "e_match_clip_visibility" */ - insert_e_match_clip_visibility_one?: (e_match_clip_visibilityGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_match_clip_visibility_insert_input, - /** upsert condition */ - on_conflict?: (e_match_clip_visibility_on_conflict | null)} }) - /** insert data into the table: "e_match_map_status" */ - insert_e_match_map_status?: (e_match_map_status_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_match_map_status_insert_input[], - /** upsert condition */ - on_conflict?: (e_match_map_status_on_conflict | null)} }) - /** insert a single row into the table: "e_match_map_status" */ - insert_e_match_map_status_one?: (e_match_map_statusGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_match_map_status_insert_input, - /** upsert condition */ - on_conflict?: (e_match_map_status_on_conflict | null)} }) - /** insert data into the table: "e_match_mode" */ - insert_e_match_mode?: (e_match_mode_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_match_mode_insert_input[], - /** upsert condition */ - on_conflict?: (e_match_mode_on_conflict | null)} }) - /** insert a single row into the table: "e_match_mode" */ - insert_e_match_mode_one?: (e_match_modeGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_match_mode_insert_input, - /** upsert condition */ - on_conflict?: (e_match_mode_on_conflict | null)} }) - /** insert data into the table: "e_match_party_sources" */ - insert_e_match_party_sources?: (e_match_party_sources_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_match_party_sources_insert_input[], - /** upsert condition */ - on_conflict?: (e_match_party_sources_on_conflict | null)} }) - /** insert a single row into the table: "e_match_party_sources" */ - insert_e_match_party_sources_one?: (e_match_party_sourcesGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_match_party_sources_insert_input, - /** upsert condition */ - on_conflict?: (e_match_party_sources_on_conflict | null)} }) - /** insert data into the table: "e_match_status" */ - insert_e_match_status?: (e_match_status_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_match_status_insert_input[], - /** upsert condition */ - on_conflict?: (e_match_status_on_conflict | null)} }) - /** insert a single row into the table: "e_match_status" */ - insert_e_match_status_one?: (e_match_statusGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_match_status_insert_input, - /** upsert condition */ - on_conflict?: (e_match_status_on_conflict | null)} }) - /** insert data into the table: "e_match_types" */ - insert_e_match_types?: (e_match_types_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_match_types_insert_input[], - /** upsert condition */ - on_conflict?: (e_match_types_on_conflict | null)} }) - /** insert a single row into the table: "e_match_types" */ - insert_e_match_types_one?: (e_match_typesGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_match_types_insert_input, - /** upsert condition */ - on_conflict?: (e_match_types_on_conflict | null)} }) - /** insert data into the table: "e_notification_types" */ - insert_e_notification_types?: (e_notification_types_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_notification_types_insert_input[], - /** upsert condition */ - on_conflict?: (e_notification_types_on_conflict | null)} }) - /** insert a single row into the table: "e_notification_types" */ - insert_e_notification_types_one?: (e_notification_typesGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_notification_types_insert_input, - /** upsert condition */ - on_conflict?: (e_notification_types_on_conflict | null)} }) - /** insert data into the table: "e_objective_types" */ - insert_e_objective_types?: (e_objective_types_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_objective_types_insert_input[], - /** upsert condition */ - on_conflict?: (e_objective_types_on_conflict | null)} }) - /** insert a single row into the table: "e_objective_types" */ - insert_e_objective_types_one?: (e_objective_typesGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_objective_types_insert_input, - /** upsert condition */ - on_conflict?: (e_objective_types_on_conflict | null)} }) - /** insert data into the table: "e_player_roles" */ - insert_e_player_roles?: (e_player_roles_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_player_roles_insert_input[], - /** upsert condition */ - on_conflict?: (e_player_roles_on_conflict | null)} }) - /** insert a single row into the table: "e_player_roles" */ - insert_e_player_roles_one?: (e_player_rolesGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_player_roles_insert_input, - /** upsert condition */ - on_conflict?: (e_player_roles_on_conflict | null)} }) - /** insert data into the table: "e_plugin_runtimes" */ - insert_e_plugin_runtimes?: (e_plugin_runtimes_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_plugin_runtimes_insert_input[], - /** upsert condition */ - on_conflict?: (e_plugin_runtimes_on_conflict | null)} }) - /** insert a single row into the table: "e_plugin_runtimes" */ - insert_e_plugin_runtimes_one?: (e_plugin_runtimesGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_plugin_runtimes_insert_input, - /** upsert condition */ - on_conflict?: (e_plugin_runtimes_on_conflict | null)} }) - /** insert data into the table: "e_ready_settings" */ - insert_e_ready_settings?: (e_ready_settings_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_ready_settings_insert_input[], - /** upsert condition */ - on_conflict?: (e_ready_settings_on_conflict | null)} }) - /** insert a single row into the table: "e_ready_settings" */ - insert_e_ready_settings_one?: (e_ready_settingsGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_ready_settings_insert_input, - /** upsert condition */ - on_conflict?: (e_ready_settings_on_conflict | null)} }) - /** insert data into the table: "e_sanction_scopes" */ - insert_e_sanction_scopes?: (e_sanction_scopes_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_sanction_scopes_insert_input[], - /** upsert condition */ - on_conflict?: (e_sanction_scopes_on_conflict | null)} }) - /** insert a single row into the table: "e_sanction_scopes" */ - insert_e_sanction_scopes_one?: (e_sanction_scopesGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_sanction_scopes_insert_input, - /** upsert condition */ - on_conflict?: (e_sanction_scopes_on_conflict | null)} }) - /** insert data into the table: "e_sanction_sources" */ - insert_e_sanction_sources?: (e_sanction_sources_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_sanction_sources_insert_input[], - /** upsert condition */ - on_conflict?: (e_sanction_sources_on_conflict | null)} }) - /** insert a single row into the table: "e_sanction_sources" */ - insert_e_sanction_sources_one?: (e_sanction_sourcesGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_sanction_sources_insert_input, - /** upsert condition */ - on_conflict?: (e_sanction_sources_on_conflict | null)} }) - /** insert data into the table: "e_sanction_types" */ - insert_e_sanction_types?: (e_sanction_types_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_sanction_types_insert_input[], - /** upsert condition */ - on_conflict?: (e_sanction_types_on_conflict | null)} }) - /** insert a single row into the table: "e_sanction_types" */ - insert_e_sanction_types_one?: (e_sanction_typesGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_sanction_types_insert_input, - /** upsert condition */ - on_conflict?: (e_sanction_types_on_conflict | null)} }) - /** insert data into the table: "e_scrim_request_statuses" */ - insert_e_scrim_request_statuses?: (e_scrim_request_statuses_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_scrim_request_statuses_insert_input[], - /** upsert condition */ - on_conflict?: (e_scrim_request_statuses_on_conflict | null)} }) - /** insert a single row into the table: "e_scrim_request_statuses" */ - insert_e_scrim_request_statuses_one?: (e_scrim_request_statusesGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_scrim_request_statuses_insert_input, - /** upsert condition */ - on_conflict?: (e_scrim_request_statuses_on_conflict | null)} }) - /** insert data into the table: "e_server_types" */ - insert_e_server_types?: (e_server_types_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_server_types_insert_input[], - /** upsert condition */ - on_conflict?: (e_server_types_on_conflict | null)} }) - /** insert a single row into the table: "e_server_types" */ - insert_e_server_types_one?: (e_server_typesGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_server_types_insert_input, - /** upsert condition */ - on_conflict?: (e_server_types_on_conflict | null)} }) - /** insert data into the table: "e_sides" */ - insert_e_sides?: (e_sides_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_sides_insert_input[], - /** upsert condition */ - on_conflict?: (e_sides_on_conflict | null)} }) - /** insert a single row into the table: "e_sides" */ - insert_e_sides_one?: (e_sidesGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_sides_insert_input, - /** upsert condition */ - on_conflict?: (e_sides_on_conflict | null)} }) - /** insert data into the table: "e_system_alert_types" */ - insert_e_system_alert_types?: (e_system_alert_types_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_system_alert_types_insert_input[], - /** upsert condition */ - on_conflict?: (e_system_alert_types_on_conflict | null)} }) - /** insert a single row into the table: "e_system_alert_types" */ - insert_e_system_alert_types_one?: (e_system_alert_typesGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_system_alert_types_insert_input, - /** upsert condition */ - on_conflict?: (e_system_alert_types_on_conflict | null)} }) - /** insert data into the table: "e_team_roles" */ - insert_e_team_roles?: (e_team_roles_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_team_roles_insert_input[], - /** upsert condition */ - on_conflict?: (e_team_roles_on_conflict | null)} }) - /** insert a single row into the table: "e_team_roles" */ - insert_e_team_roles_one?: (e_team_rolesGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_team_roles_insert_input, - /** upsert condition */ - on_conflict?: (e_team_roles_on_conflict | null)} }) - /** insert data into the table: "e_team_roster_statuses" */ - insert_e_team_roster_statuses?: (e_team_roster_statuses_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_team_roster_statuses_insert_input[], - /** upsert condition */ - on_conflict?: (e_team_roster_statuses_on_conflict | null)} }) - /** insert a single row into the table: "e_team_roster_statuses" */ - insert_e_team_roster_statuses_one?: (e_team_roster_statusesGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_team_roster_statuses_insert_input, - /** upsert condition */ - on_conflict?: (e_team_roster_statuses_on_conflict | null)} }) - /** insert data into the table: "e_timeout_settings" */ - insert_e_timeout_settings?: (e_timeout_settings_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_timeout_settings_insert_input[], - /** upsert condition */ - on_conflict?: (e_timeout_settings_on_conflict | null)} }) - /** insert a single row into the table: "e_timeout_settings" */ - insert_e_timeout_settings_one?: (e_timeout_settingsGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_timeout_settings_insert_input, - /** upsert condition */ - on_conflict?: (e_timeout_settings_on_conflict | null)} }) - /** insert data into the table: "e_tournament_categories" */ - insert_e_tournament_categories?: (e_tournament_categories_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_tournament_categories_insert_input[], - /** upsert condition */ - on_conflict?: (e_tournament_categories_on_conflict | null)} }) - /** insert a single row into the table: "e_tournament_categories" */ - insert_e_tournament_categories_one?: (e_tournament_categoriesGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_tournament_categories_insert_input, - /** upsert condition */ - on_conflict?: (e_tournament_categories_on_conflict | null)} }) - /** insert data into the table: "e_tournament_free_agent_statuses" */ - insert_e_tournament_free_agent_statuses?: (e_tournament_free_agent_statuses_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_tournament_free_agent_statuses_insert_input[], - /** upsert condition */ - on_conflict?: (e_tournament_free_agent_statuses_on_conflict | null)} }) - /** insert a single row into the table: "e_tournament_free_agent_statuses" */ - insert_e_tournament_free_agent_statuses_one?: (e_tournament_free_agent_statusesGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_tournament_free_agent_statuses_insert_input, - /** upsert condition */ - on_conflict?: (e_tournament_free_agent_statuses_on_conflict | null)} }) - /** insert data into the table: "e_tournament_registration_types" */ - insert_e_tournament_registration_types?: (e_tournament_registration_types_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_tournament_registration_types_insert_input[], - /** upsert condition */ - on_conflict?: (e_tournament_registration_types_on_conflict | null)} }) - /** insert a single row into the table: "e_tournament_registration_types" */ - insert_e_tournament_registration_types_one?: (e_tournament_registration_typesGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_tournament_registration_types_insert_input, - /** upsert condition */ - on_conflict?: (e_tournament_registration_types_on_conflict | null)} }) - /** insert data into the table: "e_tournament_stage_types" */ - insert_e_tournament_stage_types?: (e_tournament_stage_types_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_tournament_stage_types_insert_input[], - /** upsert condition */ - on_conflict?: (e_tournament_stage_types_on_conflict | null)} }) - /** insert a single row into the table: "e_tournament_stage_types" */ - insert_e_tournament_stage_types_one?: (e_tournament_stage_typesGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_tournament_stage_types_insert_input, - /** upsert condition */ - on_conflict?: (e_tournament_stage_types_on_conflict | null)} }) - /** insert data into the table: "e_tournament_status" */ - insert_e_tournament_status?: (e_tournament_status_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_tournament_status_insert_input[], - /** upsert condition */ - on_conflict?: (e_tournament_status_on_conflict | null)} }) - /** insert a single row into the table: "e_tournament_status" */ - insert_e_tournament_status_one?: (e_tournament_statusGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_tournament_status_insert_input, - /** upsert condition */ - on_conflict?: (e_tournament_status_on_conflict | null)} }) - /** insert data into the table: "e_utility_practice_access" */ - insert_e_utility_practice_access?: (e_utility_practice_access_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_utility_practice_access_insert_input[], - /** upsert condition */ - on_conflict?: (e_utility_practice_access_on_conflict | null)} }) - /** insert a single row into the table: "e_utility_practice_access" */ - insert_e_utility_practice_access_one?: (e_utility_practice_accessGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_utility_practice_access_insert_input, - /** upsert condition */ - on_conflict?: (e_utility_practice_access_on_conflict | null)} }) - /** insert data into the table: "e_utility_practice_statuses" */ - insert_e_utility_practice_statuses?: (e_utility_practice_statuses_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_utility_practice_statuses_insert_input[], - /** upsert condition */ - on_conflict?: (e_utility_practice_statuses_on_conflict | null)} }) - /** insert a single row into the table: "e_utility_practice_statuses" */ - insert_e_utility_practice_statuses_one?: (e_utility_practice_statusesGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_utility_practice_statuses_insert_input, - /** upsert condition */ - on_conflict?: (e_utility_practice_statuses_on_conflict | null)} }) - /** insert data into the table: "e_utility_sources" */ - insert_e_utility_sources?: (e_utility_sources_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_utility_sources_insert_input[], - /** upsert condition */ - on_conflict?: (e_utility_sources_on_conflict | null)} }) - /** insert a single row into the table: "e_utility_sources" */ - insert_e_utility_sources_one?: (e_utility_sourcesGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_utility_sources_insert_input, - /** upsert condition */ - on_conflict?: (e_utility_sources_on_conflict | null)} }) - /** insert data into the table: "e_utility_techniques" */ - insert_e_utility_techniques?: (e_utility_techniques_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_utility_techniques_insert_input[], - /** upsert condition */ - on_conflict?: (e_utility_techniques_on_conflict | null)} }) - /** insert a single row into the table: "e_utility_techniques" */ - insert_e_utility_techniques_one?: (e_utility_techniquesGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_utility_techniques_insert_input, - /** upsert condition */ - on_conflict?: (e_utility_techniques_on_conflict | null)} }) - /** insert data into the table: "e_utility_throw_strengths" */ - insert_e_utility_throw_strengths?: (e_utility_throw_strengths_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_utility_throw_strengths_insert_input[], - /** upsert condition */ - on_conflict?: (e_utility_throw_strengths_on_conflict | null)} }) - /** insert a single row into the table: "e_utility_throw_strengths" */ - insert_e_utility_throw_strengths_one?: (e_utility_throw_strengthsGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_utility_throw_strengths_insert_input, - /** upsert condition */ - on_conflict?: (e_utility_throw_strengths_on_conflict | null)} }) - /** insert data into the table: "e_utility_types" */ - insert_e_utility_types?: (e_utility_types_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_utility_types_insert_input[], - /** upsert condition */ - on_conflict?: (e_utility_types_on_conflict | null)} }) - /** insert a single row into the table: "e_utility_types" */ - insert_e_utility_types_one?: (e_utility_typesGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_utility_types_insert_input, - /** upsert condition */ - on_conflict?: (e_utility_types_on_conflict | null)} }) - /** insert data into the table: "e_utility_visibility" */ - insert_e_utility_visibility?: (e_utility_visibility_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_utility_visibility_insert_input[], - /** upsert condition */ - on_conflict?: (e_utility_visibility_on_conflict | null)} }) - /** insert a single row into the table: "e_utility_visibility" */ - insert_e_utility_visibility_one?: (e_utility_visibilityGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_utility_visibility_insert_input, - /** upsert condition */ - on_conflict?: (e_utility_visibility_on_conflict | null)} }) - /** insert data into the table: "e_veto_pick_types" */ - insert_e_veto_pick_types?: (e_veto_pick_types_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_veto_pick_types_insert_input[], - /** upsert condition */ - on_conflict?: (e_veto_pick_types_on_conflict | null)} }) - /** insert a single row into the table: "e_veto_pick_types" */ - insert_e_veto_pick_types_one?: (e_veto_pick_typesGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_veto_pick_types_insert_input, - /** upsert condition */ - on_conflict?: (e_veto_pick_types_on_conflict | null)} }) - /** insert data into the table: "e_winning_reasons" */ - insert_e_winning_reasons?: (e_winning_reasons_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: e_winning_reasons_insert_input[], - /** upsert condition */ - on_conflict?: (e_winning_reasons_on_conflict | null)} }) - /** insert a single row into the table: "e_winning_reasons" */ - insert_e_winning_reasons_one?: (e_winning_reasonsGenqlSelection & { __args: { - /** the row to be inserted */ - object: e_winning_reasons_insert_input, - /** upsert condition */ - on_conflict?: (e_winning_reasons_on_conflict | null)} }) - /** insert data into the table: "event_match_links" */ - insert_event_match_links?: (event_match_links_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: event_match_links_insert_input[], - /** upsert condition */ - on_conflict?: (event_match_links_on_conflict | null)} }) - /** insert a single row into the table: "event_match_links" */ - insert_event_match_links_one?: (event_match_linksGenqlSelection & { __args: { - /** the row to be inserted */ - object: event_match_links_insert_input, - /** upsert condition */ - on_conflict?: (event_match_links_on_conflict | null)} }) - /** insert data into the table: "event_media" */ - insert_event_media?: (event_media_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: event_media_insert_input[], - /** upsert condition */ - on_conflict?: (event_media_on_conflict | null)} }) - /** insert a single row into the table: "event_media" */ - insert_event_media_one?: (event_mediaGenqlSelection & { __args: { - /** the row to be inserted */ - object: event_media_insert_input, - /** upsert condition */ - on_conflict?: (event_media_on_conflict | null)} }) - /** insert data into the table: "event_media_players" */ - insert_event_media_players?: (event_media_players_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: event_media_players_insert_input[], - /** upsert condition */ - on_conflict?: (event_media_players_on_conflict | null)} }) - /** insert a single row into the table: "event_media_players" */ - insert_event_media_players_one?: (event_media_playersGenqlSelection & { __args: { - /** the row to be inserted */ - object: event_media_players_insert_input, - /** upsert condition */ - on_conflict?: (event_media_players_on_conflict | null)} }) - /** insert data into the table: "event_organizers" */ - insert_event_organizers?: (event_organizers_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: event_organizers_insert_input[], - /** upsert condition */ - on_conflict?: (event_organizers_on_conflict | null)} }) - /** insert a single row into the table: "event_organizers" */ - insert_event_organizers_one?: (event_organizersGenqlSelection & { __args: { - /** the row to be inserted */ - object: event_organizers_insert_input, - /** upsert condition */ - on_conflict?: (event_organizers_on_conflict | null)} }) - /** insert data into the table: "event_players" */ - insert_event_players?: (event_players_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: event_players_insert_input[], - /** upsert condition */ - on_conflict?: (event_players_on_conflict | null)} }) - /** insert a single row into the table: "event_players" */ - insert_event_players_one?: (event_playersGenqlSelection & { __args: { - /** the row to be inserted */ - object: event_players_insert_input, - /** upsert condition */ - on_conflict?: (event_players_on_conflict | null)} }) - /** insert data into the table: "event_teams" */ - insert_event_teams?: (event_teams_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: event_teams_insert_input[], - /** upsert condition */ - on_conflict?: (event_teams_on_conflict | null)} }) - /** insert a single row into the table: "event_teams" */ - insert_event_teams_one?: (event_teamsGenqlSelection & { __args: { - /** the row to be inserted */ - object: event_teams_insert_input, - /** upsert condition */ - on_conflict?: (event_teams_on_conflict | null)} }) - /** insert data into the table: "event_tournaments" */ - insert_event_tournaments?: (event_tournaments_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: event_tournaments_insert_input[], - /** upsert condition */ - on_conflict?: (event_tournaments_on_conflict | null)} }) - /** insert a single row into the table: "event_tournaments" */ - insert_event_tournaments_one?: (event_tournamentsGenqlSelection & { __args: { - /** the row to be inserted */ - object: event_tournaments_insert_input, - /** upsert condition */ - on_conflict?: (event_tournaments_on_conflict | null)} }) - /** insert data into the table: "events" */ - insert_events?: (events_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: events_insert_input[], - /** upsert condition */ - on_conflict?: (events_on_conflict | null)} }) - /** insert a single row into the table: "events" */ - insert_events_one?: (eventsGenqlSelection & { __args: { - /** the row to be inserted */ - object: events_insert_input, - /** upsert condition */ - on_conflict?: (events_on_conflict | null)} }) - /** insert data into the table: "friends" */ - insert_friends?: (friends_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: friends_insert_input[], - /** upsert condition */ - on_conflict?: (friends_on_conflict | null)} }) - /** insert a single row into the table: "friends" */ - insert_friends_one?: (friendsGenqlSelection & { __args: { - /** the row to be inserted */ - 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 */ - objects: game_server_nodes_insert_input[], - /** upsert condition */ - on_conflict?: (game_server_nodes_on_conflict | null)} }) - /** insert a single row into the table: "game_server_nodes" */ - insert_game_server_nodes_one?: (game_server_nodesGenqlSelection & { __args: { - /** the row to be inserted */ - object: game_server_nodes_insert_input, - /** upsert condition */ - on_conflict?: (game_server_nodes_on_conflict | null)} }) - /** insert data into the table: "game_versions" */ - insert_game_versions?: (game_versions_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: game_versions_insert_input[], - /** upsert condition */ - on_conflict?: (game_versions_on_conflict | null)} }) - /** insert a single row into the table: "game_versions" */ - insert_game_versions_one?: (game_versionsGenqlSelection & { __args: { - /** the row to be inserted */ - object: game_versions_insert_input, - /** upsert condition */ - on_conflict?: (game_versions_on_conflict | null)} }) - /** insert data into the table: "gamedata_signature_validations" */ - insert_gamedata_signature_validations?: (gamedata_signature_validations_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: gamedata_signature_validations_insert_input[], - /** upsert condition */ - on_conflict?: (gamedata_signature_validations_on_conflict | null)} }) - /** insert a single row into the table: "gamedata_signature_validations" */ - insert_gamedata_signature_validations_one?: (gamedata_signature_validationsGenqlSelection & { __args: { - /** the row to be inserted */ - object: gamedata_signature_validations_insert_input, - /** upsert condition */ - on_conflict?: (gamedata_signature_validations_on_conflict | null)} }) - /** insert data into the table: "leaderboard_entries" */ - insert_leaderboard_entries?: (leaderboard_entries_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: leaderboard_entries_insert_input[]} }) - /** insert a single row into the table: "leaderboard_entries" */ - insert_leaderboard_entries_one?: (leaderboard_entriesGenqlSelection & { __args: { - /** the row to be inserted */ - object: leaderboard_entries_insert_input} }) - /** insert data into the table: "league_divisions" */ - insert_league_divisions?: (league_divisions_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: league_divisions_insert_input[], - /** upsert condition */ - on_conflict?: (league_divisions_on_conflict | null)} }) - /** insert a single row into the table: "league_divisions" */ - insert_league_divisions_one?: (league_divisionsGenqlSelection & { __args: { - /** the row to be inserted */ - object: league_divisions_insert_input, - /** upsert condition */ - on_conflict?: (league_divisions_on_conflict | null)} }) - /** insert data into the table: "league_match_weeks" */ - insert_league_match_weeks?: (league_match_weeks_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: league_match_weeks_insert_input[], - /** upsert condition */ - on_conflict?: (league_match_weeks_on_conflict | null)} }) - /** insert a single row into the table: "league_match_weeks" */ - insert_league_match_weeks_one?: (league_match_weeksGenqlSelection & { __args: { - /** the row to be inserted */ - object: league_match_weeks_insert_input, - /** upsert condition */ - on_conflict?: (league_match_weeks_on_conflict | null)} }) - /** insert data into the table: "league_relegation_playoffs" */ - insert_league_relegation_playoffs?: (league_relegation_playoffs_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: league_relegation_playoffs_insert_input[], - /** upsert condition */ - on_conflict?: (league_relegation_playoffs_on_conflict | null)} }) - /** insert a single row into the table: "league_relegation_playoffs" */ - insert_league_relegation_playoffs_one?: (league_relegation_playoffsGenqlSelection & { __args: { - /** the row to be inserted */ - object: league_relegation_playoffs_insert_input, - /** upsert condition */ - on_conflict?: (league_relegation_playoffs_on_conflict | null)} }) - /** insert data into the table: "league_scheduling_proposals" */ - insert_league_scheduling_proposals?: (league_scheduling_proposals_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: league_scheduling_proposals_insert_input[], - /** upsert condition */ - on_conflict?: (league_scheduling_proposals_on_conflict | null)} }) - /** insert a single row into the table: "league_scheduling_proposals" */ - insert_league_scheduling_proposals_one?: (league_scheduling_proposalsGenqlSelection & { __args: { - /** the row to be inserted */ - object: league_scheduling_proposals_insert_input, - /** upsert condition */ - on_conflict?: (league_scheduling_proposals_on_conflict | null)} }) - /** insert data into the table: "league_season_divisions" */ - insert_league_season_divisions?: (league_season_divisions_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: league_season_divisions_insert_input[], - /** upsert condition */ - on_conflict?: (league_season_divisions_on_conflict | null)} }) - /** insert a single row into the table: "league_season_divisions" */ - insert_league_season_divisions_one?: (league_season_divisionsGenqlSelection & { __args: { - /** the row to be inserted */ - object: league_season_divisions_insert_input, - /** upsert condition */ - on_conflict?: (league_season_divisions_on_conflict | null)} }) - /** insert data into the table: "league_seasons" */ - insert_league_seasons?: (league_seasons_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: league_seasons_insert_input[], - /** upsert condition */ - on_conflict?: (league_seasons_on_conflict | null)} }) - /** insert a single row into the table: "league_seasons" */ - insert_league_seasons_one?: (league_seasonsGenqlSelection & { __args: { - /** the row to be inserted */ - object: league_seasons_insert_input, - /** upsert condition */ - on_conflict?: (league_seasons_on_conflict | null)} }) - /** insert data into the table: "league_team_movements" */ - insert_league_team_movements?: (league_team_movements_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: league_team_movements_insert_input[], - /** upsert condition */ - on_conflict?: (league_team_movements_on_conflict | null)} }) - /** insert a single row into the table: "league_team_movements" */ - insert_league_team_movements_one?: (league_team_movementsGenqlSelection & { __args: { - /** the row to be inserted */ - object: league_team_movements_insert_input, - /** upsert condition */ - on_conflict?: (league_team_movements_on_conflict | null)} }) - /** insert data into the table: "league_team_rosters" */ - insert_league_team_rosters?: (league_team_rosters_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: league_team_rosters_insert_input[], - /** upsert condition */ - on_conflict?: (league_team_rosters_on_conflict | null)} }) - /** insert a single row into the table: "league_team_rosters" */ - insert_league_team_rosters_one?: (league_team_rostersGenqlSelection & { __args: { - /** the row to be inserted */ - object: league_team_rosters_insert_input, - /** upsert condition */ - on_conflict?: (league_team_rosters_on_conflict | null)} }) - /** insert data into the table: "league_team_seasons" */ - insert_league_team_seasons?: (league_team_seasons_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: league_team_seasons_insert_input[], - /** upsert condition */ - on_conflict?: (league_team_seasons_on_conflict | null)} }) - /** insert a single row into the table: "league_team_seasons" */ - insert_league_team_seasons_one?: (league_team_seasonsGenqlSelection & { __args: { - /** the row to be inserted */ - object: league_team_seasons_insert_input, - /** upsert condition */ - on_conflict?: (league_team_seasons_on_conflict | null)} }) - /** insert data into the table: "league_teams" */ - insert_league_teams?: (league_teams_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: league_teams_insert_input[], - /** upsert condition */ - on_conflict?: (league_teams_on_conflict | null)} }) - /** insert a single row into the table: "league_teams" */ - insert_league_teams_one?: (league_teamsGenqlSelection & { __args: { - /** the row to be inserted */ - object: league_teams_insert_input, - /** upsert condition */ - on_conflict?: (league_teams_on_conflict | null)} }) - /** insert data into the table: "lobbies" */ - insert_lobbies?: (lobbies_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: lobbies_insert_input[], - /** upsert condition */ - on_conflict?: (lobbies_on_conflict | null)} }) - /** insert a single row into the table: "lobbies" */ - insert_lobbies_one?: (lobbiesGenqlSelection & { __args: { - /** the row to be inserted */ - object: lobbies_insert_input, - /** upsert condition */ - on_conflict?: (lobbies_on_conflict | null)} }) - /** insert data into the table: "lobby_players" */ - insert_lobby_players?: (lobby_players_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: lobby_players_insert_input[], - /** upsert condition */ - on_conflict?: (lobby_players_on_conflict | null)} }) - /** insert a single row into the table: "lobby_players" */ - insert_lobby_players_one?: (lobby_playersGenqlSelection & { __args: { - /** the row to be inserted */ - object: lobby_players_insert_input, - /** upsert condition */ - on_conflict?: (lobby_players_on_conflict | null)} }) - /** insert data into the table: "map_callouts" */ - insert_map_callouts?: (map_callouts_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: map_callouts_insert_input[], - /** upsert condition */ - on_conflict?: (map_callouts_on_conflict | null)} }) - /** insert a single row into the table: "map_callouts" */ - insert_map_callouts_one?: (map_calloutsGenqlSelection & { __args: { - /** the row to be inserted */ - object: map_callouts_insert_input, - /** upsert condition */ - on_conflict?: (map_callouts_on_conflict | null)} }) - /** insert data into the table: "map_pools" */ - insert_map_pools?: (map_pools_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: map_pools_insert_input[], - /** upsert condition */ - on_conflict?: (map_pools_on_conflict | null)} }) - /** insert a single row into the table: "map_pools" */ - insert_map_pools_one?: (map_poolsGenqlSelection & { __args: { - /** the row to be inserted */ - object: map_pools_insert_input, - /** upsert condition */ - on_conflict?: (map_pools_on_conflict | null)} }) - /** insert data into the table: "maps" */ - insert_maps?: (maps_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: maps_insert_input[], - /** upsert condition */ - on_conflict?: (maps_on_conflict | null)} }) - /** insert a single row into the table: "maps" */ - insert_maps_one?: (mapsGenqlSelection & { __args: { - /** the row to be inserted */ - object: maps_insert_input, - /** upsert condition */ - on_conflict?: (maps_on_conflict | null)} }) - /** insert data into the table: "match_clips" */ - insert_match_clips?: (match_clips_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: match_clips_insert_input[], - /** upsert condition */ - on_conflict?: (match_clips_on_conflict | null)} }) - /** insert a single row into the table: "match_clips" */ - insert_match_clips_one?: (match_clipsGenqlSelection & { __args: { - /** the row to be inserted */ - object: match_clips_insert_input, - /** upsert condition */ - on_conflict?: (match_clips_on_conflict | null)} }) - /** insert data into the table: "match_demo_sessions" */ - insert_match_demo_sessions?: (match_demo_sessions_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: match_demo_sessions_insert_input[], - /** upsert condition */ - on_conflict?: (match_demo_sessions_on_conflict | null)} }) - /** insert a single row into the table: "match_demo_sessions" */ - insert_match_demo_sessions_one?: (match_demo_sessionsGenqlSelection & { __args: { - /** the row to be inserted */ - object: match_demo_sessions_insert_input, - /** upsert condition */ - on_conflict?: (match_demo_sessions_on_conflict | null)} }) - /** insert data into the table: "match_lineup_players" */ - insert_match_lineup_players?: (match_lineup_players_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: match_lineup_players_insert_input[], - /** upsert condition */ - on_conflict?: (match_lineup_players_on_conflict | null)} }) - /** insert a single row into the table: "match_lineup_players" */ - insert_match_lineup_players_one?: (match_lineup_playersGenqlSelection & { __args: { - /** the row to be inserted */ - object: match_lineup_players_insert_input, - /** upsert condition */ - on_conflict?: (match_lineup_players_on_conflict | null)} }) - /** insert data into the table: "match_lineups" */ - insert_match_lineups?: (match_lineups_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: match_lineups_insert_input[], - /** upsert condition */ - on_conflict?: (match_lineups_on_conflict | null)} }) - /** insert a single row into the table: "match_lineups" */ - insert_match_lineups_one?: (match_lineupsGenqlSelection & { __args: { - /** the row to be inserted */ - object: match_lineups_insert_input, - /** upsert condition */ - on_conflict?: (match_lineups_on_conflict | null)} }) - /** insert data into the table: "match_map_demos" */ - insert_match_map_demos?: (match_map_demos_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: match_map_demos_insert_input[], - /** upsert condition */ - on_conflict?: (match_map_demos_on_conflict | null)} }) - /** insert a single row into the table: "match_map_demos" */ - insert_match_map_demos_one?: (match_map_demosGenqlSelection & { __args: { - /** the row to be inserted */ - object: match_map_demos_insert_input, - /** upsert condition */ - on_conflict?: (match_map_demos_on_conflict | null)} }) - /** insert data into the table: "match_map_rounds" */ - insert_match_map_rounds?: (match_map_rounds_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: match_map_rounds_insert_input[], - /** upsert condition */ - on_conflict?: (match_map_rounds_on_conflict | null)} }) - /** insert a single row into the table: "match_map_rounds" */ - insert_match_map_rounds_one?: (match_map_roundsGenqlSelection & { __args: { - /** the row to be inserted */ - object: match_map_rounds_insert_input, - /** upsert condition */ - on_conflict?: (match_map_rounds_on_conflict | null)} }) - /** insert data into the table: "match_map_veto_picks" */ - insert_match_map_veto_picks?: (match_map_veto_picks_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: match_map_veto_picks_insert_input[], - /** upsert condition */ - on_conflict?: (match_map_veto_picks_on_conflict | null)} }) - /** insert a single row into the table: "match_map_veto_picks" */ - insert_match_map_veto_picks_one?: (match_map_veto_picksGenqlSelection & { __args: { - /** the row to be inserted */ - object: match_map_veto_picks_insert_input, - /** upsert condition */ - on_conflict?: (match_map_veto_picks_on_conflict | null)} }) - /** insert data into the table: "match_maps" */ - insert_match_maps?: (match_maps_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: match_maps_insert_input[], - /** upsert condition */ - on_conflict?: (match_maps_on_conflict | null)} }) - /** insert a single row into the table: "match_maps" */ - insert_match_maps_one?: (match_mapsGenqlSelection & { __args: { - /** the row to be inserted */ - object: match_maps_insert_input, - /** upsert condition */ - on_conflict?: (match_maps_on_conflict | null)} }) - /** insert data into the table: "match_options" */ - insert_match_options?: (match_options_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: match_options_insert_input[], - /** upsert condition */ - on_conflict?: (match_options_on_conflict | null)} }) - /** insert a single row into the table: "match_options" */ - insert_match_options_one?: (match_optionsGenqlSelection & { __args: { - /** the row to be inserted */ - object: match_options_insert_input, - /** upsert condition */ - on_conflict?: (match_options_on_conflict | null)} }) - /** insert data into the table: "match_region_veto_picks" */ - insert_match_region_veto_picks?: (match_region_veto_picks_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: match_region_veto_picks_insert_input[], - /** upsert condition */ - on_conflict?: (match_region_veto_picks_on_conflict | null)} }) - /** insert a single row into the table: "match_region_veto_picks" */ - insert_match_region_veto_picks_one?: (match_region_veto_picksGenqlSelection & { __args: { - /** the row to be inserted */ - object: match_region_veto_picks_insert_input, - /** upsert condition */ - on_conflict?: (match_region_veto_picks_on_conflict | null)} }) - /** insert data into the table: "match_streams" */ - insert_match_streams?: (match_streams_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: match_streams_insert_input[], - /** upsert condition */ - on_conflict?: (match_streams_on_conflict | null)} }) - /** insert a single row into the table: "match_streams" */ - insert_match_streams_one?: (match_streamsGenqlSelection & { __args: { - /** the row to be inserted */ - object: match_streams_insert_input, - /** upsert condition */ - on_conflict?: (match_streams_on_conflict | null)} }) - /** insert data into the table: "match_type_cfgs" */ - insert_match_type_cfgs?: (match_type_cfgs_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: match_type_cfgs_insert_input[], - /** upsert condition */ - on_conflict?: (match_type_cfgs_on_conflict | null)} }) - /** insert a single row into the table: "match_type_cfgs" */ - insert_match_type_cfgs_one?: (match_type_cfgsGenqlSelection & { __args: { - /** the row to be inserted */ - object: match_type_cfgs_insert_input, - /** upsert condition */ - on_conflict?: (match_type_cfgs_on_conflict | null)} }) - /** insert data into the table: "matches" */ - insert_matches?: (matches_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: matches_insert_input[], - /** upsert condition */ - on_conflict?: (matches_on_conflict | null)} }) - /** insert a single row into the table: "matches" */ - insert_matches_one?: (matchesGenqlSelection & { __args: { - /** the row to be inserted */ - object: matches_insert_input, - /** upsert condition */ - on_conflict?: (matches_on_conflict | null)} }) - /** insert data into the table: "migration_hashes.hashes" */ - insert_migration_hashes_hashes?: (migration_hashes_hashes_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: migration_hashes_hashes_insert_input[], - /** upsert condition */ - on_conflict?: (migration_hashes_hashes_on_conflict | null)} }) - /** insert a single row into the table: "migration_hashes.hashes" */ - insert_migration_hashes_hashes_one?: (migration_hashes_hashesGenqlSelection & { __args: { - /** the row to be inserted */ - object: migration_hashes_hashes_insert_input, - /** upsert condition */ - on_conflict?: (migration_hashes_hashes_on_conflict | null)} }) - /** insert data into the table: "v_my_friends" */ - insert_my_friends?: (my_friends_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: my_friends_insert_input[]} }) - /** insert a single row into the table: "v_my_friends" */ - insert_my_friends_one?: (my_friendsGenqlSelection & { __args: { - /** the row to be inserted */ - object: my_friends_insert_input} }) - /** insert data into the table: "news_articles" */ - insert_news_articles?: (news_articles_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: news_articles_insert_input[], - /** upsert condition */ - on_conflict?: (news_articles_on_conflict | null)} }) - /** insert a single row into the table: "news_articles" */ - insert_news_articles_one?: (news_articlesGenqlSelection & { __args: { - /** the row to be inserted */ - object: news_articles_insert_input, - /** upsert condition */ - on_conflict?: (news_articles_on_conflict | null)} }) - /** insert data into the table: "notification_preferences" */ - insert_notification_preferences?: (notification_preferences_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: notification_preferences_insert_input[], - /** upsert condition */ - on_conflict?: (notification_preferences_on_conflict | null)} }) - /** insert a single row into the table: "notification_preferences" */ - insert_notification_preferences_one?: (notification_preferencesGenqlSelection & { __args: { - /** the row to be inserted */ - object: notification_preferences_insert_input, - /** upsert condition */ - on_conflict?: (notification_preferences_on_conflict | null)} }) - /** insert data into the table: "notifications" */ - insert_notifications?: (notifications_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: notifications_insert_input[], - /** upsert condition */ - on_conflict?: (notifications_on_conflict | null)} }) - /** insert a single row into the table: "notifications" */ - insert_notifications_one?: (notificationsGenqlSelection & { __args: { - /** the row to be inserted */ - object: notifications_insert_input, - /** upsert condition */ - on_conflict?: (notifications_on_conflict | null)} }) - /** insert data into the table: "pending_match_import_players" */ - insert_pending_match_import_players?: (pending_match_import_players_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: pending_match_import_players_insert_input[], - /** upsert condition */ - on_conflict?: (pending_match_import_players_on_conflict | null)} }) - /** insert a single row into the table: "pending_match_import_players" */ - insert_pending_match_import_players_one?: (pending_match_import_playersGenqlSelection & { __args: { - /** the row to be inserted */ - object: pending_match_import_players_insert_input, - /** upsert condition */ - on_conflict?: (pending_match_import_players_on_conflict | null)} }) - /** insert data into the table: "pending_match_imports" */ - insert_pending_match_imports?: (pending_match_imports_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: pending_match_imports_insert_input[], - /** upsert condition */ - on_conflict?: (pending_match_imports_on_conflict | null)} }) - /** insert a single row into the table: "pending_match_imports" */ - insert_pending_match_imports_one?: (pending_match_importsGenqlSelection & { __args: { - /** the row to be inserted */ - object: pending_match_imports_insert_input, - /** upsert condition */ - on_conflict?: (pending_match_imports_on_conflict | null)} }) - /** insert data into the table: "player_aim_stats_demo" */ - insert_player_aim_stats_demo?: (player_aim_stats_demo_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: player_aim_stats_demo_insert_input[], - /** upsert condition */ - on_conflict?: (player_aim_stats_demo_on_conflict | null)} }) - /** insert a single row into the table: "player_aim_stats_demo" */ - insert_player_aim_stats_demo_one?: (player_aim_stats_demoGenqlSelection & { __args: { - /** the row to be inserted */ - object: player_aim_stats_demo_insert_input, - /** upsert condition */ - on_conflict?: (player_aim_stats_demo_on_conflict | null)} }) - /** insert data into the table: "player_aim_weapon_stats" */ - insert_player_aim_weapon_stats?: (player_aim_weapon_stats_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: player_aim_weapon_stats_insert_input[], - /** upsert condition */ - on_conflict?: (player_aim_weapon_stats_on_conflict | null)} }) - /** insert a single row into the table: "player_aim_weapon_stats" */ - insert_player_aim_weapon_stats_one?: (player_aim_weapon_statsGenqlSelection & { __args: { - /** the row to be inserted */ - object: player_aim_weapon_stats_insert_input, - /** upsert condition */ - on_conflict?: (player_aim_weapon_stats_on_conflict | null)} }) - /** insert data into the table: "player_assists" */ - insert_player_assists?: (player_assists_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: player_assists_insert_input[], - /** upsert condition */ - on_conflict?: (player_assists_on_conflict | null)} }) - /** insert a single row into the table: "player_assists" */ - insert_player_assists_one?: (player_assistsGenqlSelection & { __args: { - /** the row to be inserted */ - object: player_assists_insert_input, - /** upsert condition */ - on_conflict?: (player_assists_on_conflict | null)} }) - /** insert data into the table: "player_damages" */ - insert_player_damages?: (player_damages_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: player_damages_insert_input[], - /** upsert condition */ - on_conflict?: (player_damages_on_conflict | null)} }) - /** insert a single row into the table: "player_damages" */ - insert_player_damages_one?: (player_damagesGenqlSelection & { __args: { - /** the row to be inserted */ - object: player_damages_insert_input, - /** upsert condition */ - on_conflict?: (player_damages_on_conflict | null)} }) - /** insert data into the table: "player_elo" */ - insert_player_elo?: (player_elo_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: player_elo_insert_input[], - /** upsert condition */ - on_conflict?: (player_elo_on_conflict | null)} }) - /** insert a single row into the table: "player_elo" */ - insert_player_elo_one?: (player_eloGenqlSelection & { __args: { - /** the row to be inserted */ - object: player_elo_insert_input, - /** upsert condition */ - on_conflict?: (player_elo_on_conflict | null)} }) - /** insert data into the table: "player_faceit_rank_history" */ - insert_player_faceit_rank_history?: (player_faceit_rank_history_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: player_faceit_rank_history_insert_input[], - /** upsert condition */ - on_conflict?: (player_faceit_rank_history_on_conflict | null)} }) - /** insert a single row into the table: "player_faceit_rank_history" */ - insert_player_faceit_rank_history_one?: (player_faceit_rank_historyGenqlSelection & { __args: { - /** the row to be inserted */ - object: player_faceit_rank_history_insert_input, - /** upsert condition */ - on_conflict?: (player_faceit_rank_history_on_conflict | null)} }) - /** insert data into the table: "player_flashes" */ - insert_player_flashes?: (player_flashes_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: player_flashes_insert_input[], - /** upsert condition */ - on_conflict?: (player_flashes_on_conflict | null)} }) - /** insert a single row into the table: "player_flashes" */ - insert_player_flashes_one?: (player_flashesGenqlSelection & { __args: { - /** the row to be inserted */ - object: player_flashes_insert_input, - /** upsert condition */ - on_conflict?: (player_flashes_on_conflict | null)} }) - /** insert data into the table: "player_kills" */ - insert_player_kills?: (player_kills_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: player_kills_insert_input[], - /** upsert condition */ - on_conflict?: (player_kills_on_conflict | null)} }) - /** insert data into the table: "player_kills_by_weapon" */ - insert_player_kills_by_weapon?: (player_kills_by_weapon_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: player_kills_by_weapon_insert_input[], - /** upsert condition */ - on_conflict?: (player_kills_by_weapon_on_conflict | null)} }) - /** insert a single row into the table: "player_kills_by_weapon" */ - insert_player_kills_by_weapon_one?: (player_kills_by_weaponGenqlSelection & { __args: { - /** the row to be inserted */ - object: player_kills_by_weapon_insert_input, - /** upsert condition */ - on_conflict?: (player_kills_by_weapon_on_conflict | null)} }) - /** insert a single row into the table: "player_kills" */ - insert_player_kills_one?: (player_killsGenqlSelection & { __args: { - /** the row to be inserted */ - object: player_kills_insert_input, - /** upsert condition */ - on_conflict?: (player_kills_on_conflict | null)} }) - /** insert data into the table: "player_leaderboard_rank" */ - insert_player_leaderboard_rank?: (player_leaderboard_rank_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: player_leaderboard_rank_insert_input[]} }) - /** insert a single row into the table: "player_leaderboard_rank" */ - insert_player_leaderboard_rank_one?: (player_leaderboard_rankGenqlSelection & { __args: { - /** the row to be inserted */ - object: player_leaderboard_rank_insert_input} }) - /** insert data into the table: "player_match_map_stats" */ - insert_player_match_map_stats?: (player_match_map_stats_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: player_match_map_stats_insert_input[], - /** upsert condition */ - on_conflict?: (player_match_map_stats_on_conflict | null)} }) - /** insert a single row into the table: "player_match_map_stats" */ - insert_player_match_map_stats_one?: (player_match_map_statsGenqlSelection & { __args: { - /** the row to be inserted */ - object: player_match_map_stats_insert_input, - /** upsert condition */ - on_conflict?: (player_match_map_stats_on_conflict | null)} }) - /** insert data into the table: "player_objectives" */ - insert_player_objectives?: (player_objectives_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: player_objectives_insert_input[], - /** upsert condition */ - on_conflict?: (player_objectives_on_conflict | null)} }) - /** insert a single row into the table: "player_objectives" */ - insert_player_objectives_one?: (player_objectivesGenqlSelection & { __args: { - /** the row to be inserted */ - object: player_objectives_insert_input, - /** upsert condition */ - on_conflict?: (player_objectives_on_conflict | null)} }) - /** insert data into the table: "player_premier_rank_history" */ - insert_player_premier_rank_history?: (player_premier_rank_history_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: player_premier_rank_history_insert_input[], - /** upsert condition */ - on_conflict?: (player_premier_rank_history_on_conflict | null)} }) - /** insert a single row into the table: "player_premier_rank_history" */ - insert_player_premier_rank_history_one?: (player_premier_rank_historyGenqlSelection & { __args: { - /** the row to be inserted */ - object: player_premier_rank_history_insert_input, - /** upsert condition */ - on_conflict?: (player_premier_rank_history_on_conflict | null)} }) - /** insert data into the table: "player_sanctions" */ - insert_player_sanctions?: (player_sanctions_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: player_sanctions_insert_input[], - /** upsert condition */ - on_conflict?: (player_sanctions_on_conflict | null)} }) - /** insert a single row into the table: "player_sanctions" */ - insert_player_sanctions_one?: (player_sanctionsGenqlSelection & { __args: { - /** the row to be inserted */ - object: player_sanctions_insert_input, - /** upsert condition */ - on_conflict?: (player_sanctions_on_conflict | null)} }) - /** insert data into the table: "player_season_stats" */ - insert_player_season_stats?: (player_season_stats_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: player_season_stats_insert_input[], - /** upsert condition */ - on_conflict?: (player_season_stats_on_conflict | null)} }) - /** insert a single row into the table: "player_season_stats" */ - insert_player_season_stats_one?: (player_season_statsGenqlSelection & { __args: { - /** the row to be inserted */ - object: player_season_stats_insert_input, - /** upsert condition */ - on_conflict?: (player_season_stats_on_conflict | null)} }) - /** insert data into the table: "player_stats" */ - insert_player_stats?: (player_stats_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: player_stats_insert_input[], - /** upsert condition */ - on_conflict?: (player_stats_on_conflict | null)} }) - /** insert a single row into the table: "player_stats" */ - insert_player_stats_one?: (player_statsGenqlSelection & { __args: { - /** the row to be inserted */ - object: player_stats_insert_input, - /** upsert condition */ - on_conflict?: (player_stats_on_conflict | null)} }) - /** insert data into the table: "player_steam_bot_friend" */ - insert_player_steam_bot_friend?: (player_steam_bot_friend_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: player_steam_bot_friend_insert_input[], - /** upsert condition */ - on_conflict?: (player_steam_bot_friend_on_conflict | null)} }) - /** insert a single row into the table: "player_steam_bot_friend" */ - insert_player_steam_bot_friend_one?: (player_steam_bot_friendGenqlSelection & { __args: { - /** the row to be inserted */ - object: player_steam_bot_friend_insert_input, - /** upsert condition */ - on_conflict?: (player_steam_bot_friend_on_conflict | null)} }) - /** insert data into the table: "player_steam_match_auth" */ - insert_player_steam_match_auth?: (player_steam_match_auth_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: player_steam_match_auth_insert_input[], - /** upsert condition */ - on_conflict?: (player_steam_match_auth_on_conflict | null)} }) - /** insert a single row into the table: "player_steam_match_auth" */ - insert_player_steam_match_auth_one?: (player_steam_match_authGenqlSelection & { __args: { - /** the row to be inserted */ - object: player_steam_match_auth_insert_input, - /** upsert condition */ - on_conflict?: (player_steam_match_auth_on_conflict | null)} }) - /** insert data into the table: "player_unused_utility" */ - insert_player_unused_utility?: (player_unused_utility_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: player_unused_utility_insert_input[], - /** upsert condition */ - on_conflict?: (player_unused_utility_on_conflict | null)} }) - /** insert a single row into the table: "player_unused_utility" */ - insert_player_unused_utility_one?: (player_unused_utilityGenqlSelection & { __args: { - /** the row to be inserted */ - object: player_unused_utility_insert_input, - /** upsert condition */ - on_conflict?: (player_unused_utility_on_conflict | null)} }) - /** insert data into the table: "player_utility" */ - insert_player_utility?: (player_utility_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: player_utility_insert_input[], - /** upsert condition */ - on_conflict?: (player_utility_on_conflict | null)} }) - /** insert a single row into the table: "player_utility" */ - insert_player_utility_one?: (player_utilityGenqlSelection & { __args: { - /** the row to be inserted */ - object: player_utility_insert_input, - /** upsert condition */ - on_conflict?: (player_utility_on_conflict | null)} }) - /** insert data into the table: "players" */ - insert_players?: (players_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: players_insert_input[], - /** upsert condition */ - on_conflict?: (players_on_conflict | null)} }) - /** insert a single row into the table: "players" */ - insert_players_one?: (playersGenqlSelection & { __args: { - /** the row to be inserted */ - object: players_insert_input, - /** upsert condition */ - on_conflict?: (players_on_conflict | null)} }) - /** insert data into the table: "plugin_versions" */ - insert_plugin_versions?: (plugin_versions_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: plugin_versions_insert_input[], - /** upsert condition */ - on_conflict?: (plugin_versions_on_conflict | null)} }) - /** insert a single row into the table: "plugin_versions" */ - insert_plugin_versions_one?: (plugin_versionsGenqlSelection & { __args: { - /** the row to be inserted */ - object: plugin_versions_insert_input, - /** upsert condition */ - on_conflict?: (plugin_versions_on_conflict | null)} }) - /** insert data into the table: "push_subscriptions" */ - insert_push_subscriptions?: (push_subscriptions_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: push_subscriptions_insert_input[], - /** upsert condition */ - on_conflict?: (push_subscriptions_on_conflict | null)} }) - /** insert a single row into the table: "push_subscriptions" */ - insert_push_subscriptions_one?: (push_subscriptionsGenqlSelection & { __args: { - /** the row to be inserted */ - object: push_subscriptions_insert_input, - /** upsert condition */ - on_conflict?: (push_subscriptions_on_conflict | null)} }) - /** insert data into the table: "v_role_permissions" */ - insert_role_permissions?: (role_permissions_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: role_permissions_insert_input[]} }) - /** insert a single row into the table: "v_role_permissions" */ - insert_role_permissions_one?: (role_permissionsGenqlSelection & { __args: { - /** the row to be inserted */ - object: role_permissions_insert_input} }) - /** insert data into the table: "seasons" */ - insert_seasons?: (seasons_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: seasons_insert_input[], - /** upsert condition */ - on_conflict?: (seasons_on_conflict | null)} }) - /** insert a single row into the table: "seasons" */ - insert_seasons_one?: (seasonsGenqlSelection & { __args: { - /** the row to be inserted */ - object: seasons_insert_input, - /** upsert condition */ - on_conflict?: (seasons_on_conflict | null)} }) - /** insert data into the table: "server_regions" */ - insert_server_regions?: (server_regions_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: server_regions_insert_input[], - /** upsert condition */ - on_conflict?: (server_regions_on_conflict | null)} }) - /** insert a single row into the table: "server_regions" */ - insert_server_regions_one?: (server_regionsGenqlSelection & { __args: { - /** the row to be inserted */ - object: server_regions_insert_input, - /** upsert condition */ - on_conflict?: (server_regions_on_conflict | null)} }) - /** insert data into the table: "servers" */ - insert_servers?: (servers_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: servers_insert_input[], - /** upsert condition */ - on_conflict?: (servers_on_conflict | null)} }) - /** insert a single row into the table: "servers" */ - insert_servers_one?: (serversGenqlSelection & { __args: { - /** the row to be inserted */ - object: servers_insert_input, - /** upsert condition */ - on_conflict?: (servers_on_conflict | null)} }) - /** insert data into the table: "settings" */ - insert_settings?: (settings_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: settings_insert_input[], - /** upsert condition */ - on_conflict?: (settings_on_conflict | null)} }) - /** insert a single row into the table: "settings" */ - insert_settings_one?: (settingsGenqlSelection & { __args: { - /** the row to be inserted */ - object: settings_insert_input, - /** upsert condition */ - on_conflict?: (settings_on_conflict | null)} }) - /** insert data into the table: "steam_account_claims" */ - insert_steam_account_claims?: (steam_account_claims_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: steam_account_claims_insert_input[], - /** upsert condition */ - on_conflict?: (steam_account_claims_on_conflict | null)} }) - /** insert a single row into the table: "steam_account_claims" */ - insert_steam_account_claims_one?: (steam_account_claimsGenqlSelection & { __args: { - /** the row to be inserted */ - object: steam_account_claims_insert_input, - /** upsert condition */ - on_conflict?: (steam_account_claims_on_conflict | null)} }) - /** insert data into the table: "steam_accounts" */ - insert_steam_accounts?: (steam_accounts_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: steam_accounts_insert_input[], - /** upsert condition */ - on_conflict?: (steam_accounts_on_conflict | null)} }) - /** insert a single row into the table: "steam_accounts" */ - insert_steam_accounts_one?: (steam_accountsGenqlSelection & { __args: { - /** the row to be inserted */ - object: steam_accounts_insert_input, - /** upsert condition */ - on_conflict?: (steam_accounts_on_conflict | null)} }) - /** insert data into the table: "system_alerts" */ - insert_system_alerts?: (system_alerts_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: system_alerts_insert_input[], - /** upsert condition */ - on_conflict?: (system_alerts_on_conflict | null)} }) - /** insert a single row into the table: "system_alerts" */ - insert_system_alerts_one?: (system_alertsGenqlSelection & { __args: { - /** the row to be inserted */ - object: system_alerts_insert_input, - /** upsert condition */ - on_conflict?: (system_alerts_on_conflict | null)} }) - /** insert data into the table: "team_invites" */ - insert_team_invites?: (team_invites_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: team_invites_insert_input[], - /** upsert condition */ - on_conflict?: (team_invites_on_conflict | null)} }) - /** insert a single row into the table: "team_invites" */ - insert_team_invites_one?: (team_invitesGenqlSelection & { __args: { - /** the row to be inserted */ - object: team_invites_insert_input, - /** upsert condition */ - on_conflict?: (team_invites_on_conflict | null)} }) - /** insert data into the table: "team_roster" */ - insert_team_roster?: (team_roster_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: team_roster_insert_input[], - /** upsert condition */ - on_conflict?: (team_roster_on_conflict | null)} }) - /** insert a single row into the table: "team_roster" */ - insert_team_roster_one?: (team_rosterGenqlSelection & { __args: { - /** the row to be inserted */ - object: team_roster_insert_input, - /** upsert condition */ - on_conflict?: (team_roster_on_conflict | null)} }) - /** insert data into the table: "team_scrim_alerts" */ - insert_team_scrim_alerts?: (team_scrim_alerts_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: team_scrim_alerts_insert_input[], - /** upsert condition */ - on_conflict?: (team_scrim_alerts_on_conflict | null)} }) - /** insert a single row into the table: "team_scrim_alerts" */ - insert_team_scrim_alerts_one?: (team_scrim_alertsGenqlSelection & { __args: { - /** the row to be inserted */ - object: team_scrim_alerts_insert_input, - /** upsert condition */ - on_conflict?: (team_scrim_alerts_on_conflict | null)} }) - /** insert data into the table: "team_scrim_availability" */ - insert_team_scrim_availability?: (team_scrim_availability_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: team_scrim_availability_insert_input[], - /** upsert condition */ - on_conflict?: (team_scrim_availability_on_conflict | null)} }) - /** insert a single row into the table: "team_scrim_availability" */ - insert_team_scrim_availability_one?: (team_scrim_availabilityGenqlSelection & { __args: { - /** the row to be inserted */ - object: team_scrim_availability_insert_input, - /** upsert condition */ - on_conflict?: (team_scrim_availability_on_conflict | null)} }) - /** insert data into the table: "team_scrim_request_proposals" */ - insert_team_scrim_request_proposals?: (team_scrim_request_proposals_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: team_scrim_request_proposals_insert_input[], - /** upsert condition */ - on_conflict?: (team_scrim_request_proposals_on_conflict | null)} }) - /** insert a single row into the table: "team_scrim_request_proposals" */ - insert_team_scrim_request_proposals_one?: (team_scrim_request_proposalsGenqlSelection & { __args: { - /** the row to be inserted */ - object: team_scrim_request_proposals_insert_input, - /** upsert condition */ - on_conflict?: (team_scrim_request_proposals_on_conflict | null)} }) - /** insert data into the table: "team_scrim_requests" */ - insert_team_scrim_requests?: (team_scrim_requests_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: team_scrim_requests_insert_input[], - /** upsert condition */ - on_conflict?: (team_scrim_requests_on_conflict | null)} }) - /** insert a single row into the table: "team_scrim_requests" */ - insert_team_scrim_requests_one?: (team_scrim_requestsGenqlSelection & { __args: { - /** the row to be inserted */ - object: team_scrim_requests_insert_input, - /** upsert condition */ - on_conflict?: (team_scrim_requests_on_conflict | null)} }) - /** insert data into the table: "team_scrim_settings" */ - insert_team_scrim_settings?: (team_scrim_settings_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: team_scrim_settings_insert_input[], - /** upsert condition */ - on_conflict?: (team_scrim_settings_on_conflict | null)} }) - /** insert a single row into the table: "team_scrim_settings" */ - insert_team_scrim_settings_one?: (team_scrim_settingsGenqlSelection & { __args: { - /** the row to be inserted */ - object: team_scrim_settings_insert_input, - /** upsert condition */ - on_conflict?: (team_scrim_settings_on_conflict | null)} }) - /** insert data into the table: "team_suggestions" */ - insert_team_suggestions?: (team_suggestions_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: team_suggestions_insert_input[], - /** upsert condition */ - on_conflict?: (team_suggestions_on_conflict | null)} }) - /** insert a single row into the table: "team_suggestions" */ - insert_team_suggestions_one?: (team_suggestionsGenqlSelection & { __args: { - /** the row to be inserted */ - object: team_suggestions_insert_input, - /** upsert condition */ - on_conflict?: (team_suggestions_on_conflict | null)} }) - /** insert data into the table: "teams" */ - insert_teams?: (teams_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: teams_insert_input[], - /** upsert condition */ - on_conflict?: (teams_on_conflict | null)} }) - /** insert a single row into the table: "teams" */ - insert_teams_one?: (teamsGenqlSelection & { __args: { - /** the row to be inserted */ - object: teams_insert_input, - /** upsert condition */ - on_conflict?: (teams_on_conflict | null)} }) - /** insert data into the table: "tournament_awards" */ - insert_tournament_awards?: (tournament_awards_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: tournament_awards_insert_input[], - /** upsert condition */ - on_conflict?: (tournament_awards_on_conflict | null)} }) - /** insert a single row into the table: "tournament_awards" */ - insert_tournament_awards_one?: (tournament_awardsGenqlSelection & { __args: { - /** the row to be inserted */ - object: tournament_awards_insert_input, - /** upsert condition */ - on_conflict?: (tournament_awards_on_conflict | null)} }) - /** insert data into the table: "tournament_brackets" */ - insert_tournament_brackets?: (tournament_brackets_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: tournament_brackets_insert_input[], - /** upsert condition */ - on_conflict?: (tournament_brackets_on_conflict | null)} }) - /** insert a single row into the table: "tournament_brackets" */ - insert_tournament_brackets_one?: (tournament_bracketsGenqlSelection & { __args: { - /** the row to be inserted */ - object: tournament_brackets_insert_input, - /** upsert condition */ - on_conflict?: (tournament_brackets_on_conflict | null)} }) - /** insert data into the table: "tournament_categories" */ - insert_tournament_categories?: (tournament_categories_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: tournament_categories_insert_input[], - /** upsert condition */ - on_conflict?: (tournament_categories_on_conflict | null)} }) - /** insert a single row into the table: "tournament_categories" */ - insert_tournament_categories_one?: (tournament_categoriesGenqlSelection & { __args: { - /** the row to be inserted */ - object: tournament_categories_insert_input, - /** upsert condition */ - on_conflict?: (tournament_categories_on_conflict | null)} }) - /** insert data into the table: "tournament_free_agents" */ - insert_tournament_free_agents?: (tournament_free_agents_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: tournament_free_agents_insert_input[], - /** upsert condition */ - on_conflict?: (tournament_free_agents_on_conflict | null)} }) - /** insert a single row into the table: "tournament_free_agents" */ - insert_tournament_free_agents_one?: (tournament_free_agentsGenqlSelection & { __args: { - /** the row to be inserted */ - object: tournament_free_agents_insert_input, - /** upsert condition */ - on_conflict?: (tournament_free_agents_on_conflict | null)} }) - /** insert data into the table: "tournament_invite_code_uses" */ - insert_tournament_invite_code_uses?: (tournament_invite_code_uses_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: tournament_invite_code_uses_insert_input[], - /** upsert condition */ - on_conflict?: (tournament_invite_code_uses_on_conflict | null)} }) - /** insert a single row into the table: "tournament_invite_code_uses" */ - insert_tournament_invite_code_uses_one?: (tournament_invite_code_usesGenqlSelection & { __args: { - /** the row to be inserted */ - object: tournament_invite_code_uses_insert_input, - /** upsert condition */ - on_conflict?: (tournament_invite_code_uses_on_conflict | null)} }) - /** insert data into the table: "tournament_invite_codes" */ - insert_tournament_invite_codes?: (tournament_invite_codes_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: tournament_invite_codes_insert_input[], - /** upsert condition */ - on_conflict?: (tournament_invite_codes_on_conflict | null)} }) - /** insert a single row into the table: "tournament_invite_codes" */ - insert_tournament_invite_codes_one?: (tournament_invite_codesGenqlSelection & { __args: { - /** the row to be inserted */ - object: tournament_invite_codes_insert_input, - /** upsert condition */ - on_conflict?: (tournament_invite_codes_on_conflict | null)} }) - /** insert data into the table: "tournament_invites" */ - insert_tournament_invites?: (tournament_invites_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: tournament_invites_insert_input[], - /** upsert condition */ - on_conflict?: (tournament_invites_on_conflict | null)} }) - /** insert a single row into the table: "tournament_invites" */ - insert_tournament_invites_one?: (tournament_invitesGenqlSelection & { __args: { - /** the row to be inserted */ - object: tournament_invites_insert_input, - /** upsert condition */ - on_conflict?: (tournament_invites_on_conflict | null)} }) - /** insert data into the table: "tournament_leaderboard_entries" */ - insert_tournament_leaderboard_entries?: (tournament_leaderboard_entries_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: tournament_leaderboard_entries_insert_input[]} }) - /** insert a single row into the table: "tournament_leaderboard_entries" */ - insert_tournament_leaderboard_entries_one?: (tournament_leaderboard_entriesGenqlSelection & { __args: { - /** the row to be inserted */ - object: tournament_leaderboard_entries_insert_input} }) - /** insert data into the table: "tournament_no_shows" */ - insert_tournament_no_shows?: (tournament_no_shows_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: tournament_no_shows_insert_input[], - /** upsert condition */ - on_conflict?: (tournament_no_shows_on_conflict | null)} }) - /** insert a single row into the table: "tournament_no_shows" */ - insert_tournament_no_shows_one?: (tournament_no_showsGenqlSelection & { __args: { - /** the row to be inserted */ - object: tournament_no_shows_insert_input, - /** upsert condition */ - on_conflict?: (tournament_no_shows_on_conflict | null)} }) - /** insert data into the table: "tournament_organizer_teams" */ - insert_tournament_organizer_teams?: (tournament_organizer_teams_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: tournament_organizer_teams_insert_input[], - /** upsert condition */ - on_conflict?: (tournament_organizer_teams_on_conflict | null)} }) - /** insert a single row into the table: "tournament_organizer_teams" */ - insert_tournament_organizer_teams_one?: (tournament_organizer_teamsGenqlSelection & { __args: { - /** the row to be inserted */ - object: tournament_organizer_teams_insert_input, - /** upsert condition */ - on_conflict?: (tournament_organizer_teams_on_conflict | null)} }) - /** insert data into the table: "tournament_organizers" */ - insert_tournament_organizers?: (tournament_organizers_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: tournament_organizers_insert_input[], - /** upsert condition */ - on_conflict?: (tournament_organizers_on_conflict | null)} }) - /** insert a single row into the table: "tournament_organizers" */ - insert_tournament_organizers_one?: (tournament_organizersGenqlSelection & { __args: { - /** the row to be inserted */ - object: tournament_organizers_insert_input, - /** upsert condition */ - on_conflict?: (tournament_organizers_on_conflict | null)} }) - /** insert data into the table: "tournament_prizes" */ - insert_tournament_prizes?: (tournament_prizes_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: tournament_prizes_insert_input[], - /** upsert condition */ - on_conflict?: (tournament_prizes_on_conflict | null)} }) - /** insert a single row into the table: "tournament_prizes" */ - insert_tournament_prizes_one?: (tournament_prizesGenqlSelection & { __args: { - /** the row to be inserted */ - object: tournament_prizes_insert_input, - /** upsert condition */ - on_conflict?: (tournament_prizes_on_conflict | null)} }) - /** insert data into the table: "tournament_registration_unlocks" */ - insert_tournament_registration_unlocks?: (tournament_registration_unlocks_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: tournament_registration_unlocks_insert_input[], - /** upsert condition */ - on_conflict?: (tournament_registration_unlocks_on_conflict | null)} }) - /** insert a single row into the table: "tournament_registration_unlocks" */ - insert_tournament_registration_unlocks_one?: (tournament_registration_unlocksGenqlSelection & { __args: { - /** the row to be inserted */ - object: tournament_registration_unlocks_insert_input, - /** upsert condition */ - on_conflict?: (tournament_registration_unlocks_on_conflict | null)} }) - /** insert data into the table: "tournament_stage_windows" */ - insert_tournament_stage_windows?: (tournament_stage_windows_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: tournament_stage_windows_insert_input[], - /** upsert condition */ - on_conflict?: (tournament_stage_windows_on_conflict | null)} }) - /** insert a single row into the table: "tournament_stage_windows" */ - insert_tournament_stage_windows_one?: (tournament_stage_windowsGenqlSelection & { __args: { - /** the row to be inserted */ - object: tournament_stage_windows_insert_input, - /** upsert condition */ - on_conflict?: (tournament_stage_windows_on_conflict | null)} }) - /** insert data into the table: "tournament_stages" */ - insert_tournament_stages?: (tournament_stages_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: tournament_stages_insert_input[], - /** upsert condition */ - on_conflict?: (tournament_stages_on_conflict | null)} }) - /** insert a single row into the table: "tournament_stages" */ - insert_tournament_stages_one?: (tournament_stagesGenqlSelection & { __args: { - /** the row to be inserted */ - object: tournament_stages_insert_input, - /** upsert condition */ - on_conflict?: (tournament_stages_on_conflict | null)} }) - /** insert data into the table: "tournament_team_invites" */ - insert_tournament_team_invites?: (tournament_team_invites_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: tournament_team_invites_insert_input[], - /** upsert condition */ - on_conflict?: (tournament_team_invites_on_conflict | null)} }) - /** insert a single row into the table: "tournament_team_invites" */ - insert_tournament_team_invites_one?: (tournament_team_invitesGenqlSelection & { __args: { - /** the row to be inserted */ - object: tournament_team_invites_insert_input, - /** upsert condition */ - on_conflict?: (tournament_team_invites_on_conflict | null)} }) - /** insert data into the table: "tournament_team_roster" */ - insert_tournament_team_roster?: (tournament_team_roster_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: tournament_team_roster_insert_input[], - /** upsert condition */ - on_conflict?: (tournament_team_roster_on_conflict | null)} }) - /** insert a single row into the table: "tournament_team_roster" */ - insert_tournament_team_roster_one?: (tournament_team_rosterGenqlSelection & { __args: { - /** the row to be inserted */ - object: tournament_team_roster_insert_input, - /** upsert condition */ - on_conflict?: (tournament_team_roster_on_conflict | null)} }) - /** insert data into the table: "tournament_teams" */ - insert_tournament_teams?: (tournament_teams_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: tournament_teams_insert_input[], - /** upsert condition */ - on_conflict?: (tournament_teams_on_conflict | null)} }) - /** insert a single row into the table: "tournament_teams" */ - insert_tournament_teams_one?: (tournament_teamsGenqlSelection & { __args: { - /** the row to be inserted */ - object: tournament_teams_insert_input, - /** upsert condition */ - on_conflict?: (tournament_teams_on_conflict | null)} }) - /** insert data into the table: "tournaments" */ - insert_tournaments?: (tournaments_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: tournaments_insert_input[], - /** upsert condition */ - on_conflict?: (tournaments_on_conflict | null)} }) - /** insert a single row into the table: "tournaments" */ - insert_tournaments_one?: (tournamentsGenqlSelection & { __args: { - /** the row to be inserted */ - object: tournaments_insert_input, - /** upsert condition */ - on_conflict?: (tournaments_on_conflict | null)} }) - /** insert data into the table: "utility_collection_items" */ - insert_utility_collection_items?: (utility_collection_items_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: utility_collection_items_insert_input[], - /** upsert condition */ - on_conflict?: (utility_collection_items_on_conflict | null)} }) - /** insert a single row into the table: "utility_collection_items" */ - insert_utility_collection_items_one?: (utility_collection_itemsGenqlSelection & { __args: { - /** the row to be inserted */ - object: utility_collection_items_insert_input, - /** upsert condition */ - on_conflict?: (utility_collection_items_on_conflict | null)} }) - /** insert data into the table: "utility_collections" */ - insert_utility_collections?: (utility_collections_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: utility_collections_insert_input[], - /** upsert condition */ - on_conflict?: (utility_collections_on_conflict | null)} }) - /** insert a single row into the table: "utility_collections" */ - insert_utility_collections_one?: (utility_collectionsGenqlSelection & { __args: { - /** the row to be inserted */ - object: utility_collections_insert_input, - /** upsert condition */ - on_conflict?: (utility_collections_on_conflict | null)} }) - /** insert data into the table: "utility_demo_mines" */ - insert_utility_demo_mines?: (utility_demo_mines_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: utility_demo_mines_insert_input[], - /** upsert condition */ - on_conflict?: (utility_demo_mines_on_conflict | null)} }) - /** insert a single row into the table: "utility_demo_mines" */ - insert_utility_demo_mines_one?: (utility_demo_minesGenqlSelection & { __args: { - /** the row to be inserted */ - object: utility_demo_mines_insert_input, - /** upsert condition */ - on_conflict?: (utility_demo_mines_on_conflict | null)} }) - /** insert data into the table: "utility_demo_throws" */ - insert_utility_demo_throws?: (utility_demo_throws_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: utility_demo_throws_insert_input[], - /** upsert condition */ - on_conflict?: (utility_demo_throws_on_conflict | null)} }) - /** insert a single row into the table: "utility_demo_throws" */ - insert_utility_demo_throws_one?: (utility_demo_throwsGenqlSelection & { __args: { - /** the row to be inserted */ - object: utility_demo_throws_insert_input, - /** upsert condition */ - on_conflict?: (utility_demo_throws_on_conflict | null)} }) - /** insert data into the table: "utility_drift_results" */ - insert_utility_drift_results?: (utility_drift_results_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: utility_drift_results_insert_input[], - /** upsert condition */ - on_conflict?: (utility_drift_results_on_conflict | null)} }) - /** insert a single row into the table: "utility_drift_results" */ - insert_utility_drift_results_one?: (utility_drift_resultsGenqlSelection & { __args: { - /** the row to be inserted */ - object: utility_drift_results_insert_input, - /** upsert condition */ - on_conflict?: (utility_drift_results_on_conflict | null)} }) - /** insert data into the table: "utility_drift_scans" */ - insert_utility_drift_scans?: (utility_drift_scans_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: utility_drift_scans_insert_input[], - /** upsert condition */ - on_conflict?: (utility_drift_scans_on_conflict | null)} }) - /** insert a single row into the table: "utility_drift_scans" */ - insert_utility_drift_scans_one?: (utility_drift_scansGenqlSelection & { __args: { - /** the row to be inserted */ - object: utility_drift_scans_insert_input, - /** upsert condition */ - on_conflict?: (utility_drift_scans_on_conflict | null)} }) - /** insert data into the table: "utility_lineup_favorites" */ - insert_utility_lineup_favorites?: (utility_lineup_favorites_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: utility_lineup_favorites_insert_input[], - /** upsert condition */ - on_conflict?: (utility_lineup_favorites_on_conflict | null)} }) - /** insert a single row into the table: "utility_lineup_favorites" */ - insert_utility_lineup_favorites_one?: (utility_lineup_favoritesGenqlSelection & { __args: { - /** the row to be inserted */ - object: utility_lineup_favorites_insert_input, - /** upsert condition */ - on_conflict?: (utility_lineup_favorites_on_conflict | null)} }) - /** insert data into the table: "utility_lineup_progress" */ - insert_utility_lineup_progress?: (utility_lineup_progress_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: utility_lineup_progress_insert_input[], - /** upsert condition */ - on_conflict?: (utility_lineup_progress_on_conflict | null)} }) - /** insert a single row into the table: "utility_lineup_progress" */ - insert_utility_lineup_progress_one?: (utility_lineup_progressGenqlSelection & { __args: { - /** the row to be inserted */ - object: utility_lineup_progress_insert_input, - /** upsert condition */ - on_conflict?: (utility_lineup_progress_on_conflict | null)} }) - /** insert data into the table: "utility_lineup_renders" */ - insert_utility_lineup_renders?: (utility_lineup_renders_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: utility_lineup_renders_insert_input[], - /** upsert condition */ - on_conflict?: (utility_lineup_renders_on_conflict | null)} }) - /** insert a single row into the table: "utility_lineup_renders" */ - insert_utility_lineup_renders_one?: (utility_lineup_rendersGenqlSelection & { __args: { - /** the row to be inserted */ - object: utility_lineup_renders_insert_input, - /** upsert condition */ - on_conflict?: (utility_lineup_renders_on_conflict | null)} }) - /** insert data into the table: "utility_lineup_repairs" */ - insert_utility_lineup_repairs?: (utility_lineup_repairs_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: utility_lineup_repairs_insert_input[], - /** upsert condition */ - on_conflict?: (utility_lineup_repairs_on_conflict | null)} }) - /** insert a single row into the table: "utility_lineup_repairs" */ - insert_utility_lineup_repairs_one?: (utility_lineup_repairsGenqlSelection & { __args: { - /** the row to be inserted */ - object: utility_lineup_repairs_insert_input, - /** upsert condition */ - on_conflict?: (utility_lineup_repairs_on_conflict | null)} }) - /** insert data into the table: "utility_lineup_votes" */ - insert_utility_lineup_votes?: (utility_lineup_votes_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: utility_lineup_votes_insert_input[], - /** upsert condition */ - on_conflict?: (utility_lineup_votes_on_conflict | null)} }) - /** insert a single row into the table: "utility_lineup_votes" */ - insert_utility_lineup_votes_one?: (utility_lineup_votesGenqlSelection & { __args: { - /** the row to be inserted */ - object: utility_lineup_votes_insert_input, - /** upsert condition */ - on_conflict?: (utility_lineup_votes_on_conflict | null)} }) - /** insert data into the table: "utility_lineups" */ - insert_utility_lineups?: (utility_lineups_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: utility_lineups_insert_input[], - /** upsert condition */ - on_conflict?: (utility_lineups_on_conflict | null)} }) - /** insert a single row into the table: "utility_lineups" */ - insert_utility_lineups_one?: (utility_lineupsGenqlSelection & { __args: { - /** the row to be inserted */ - object: utility_lineups_insert_input, - /** upsert condition */ - on_conflict?: (utility_lineups_on_conflict | null)} }) - /** insert data into the table: "utility_meta_lineups" */ - insert_utility_meta_lineups?: (utility_meta_lineups_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: utility_meta_lineups_insert_input[], - /** upsert condition */ - on_conflict?: (utility_meta_lineups_on_conflict | null)} }) - /** insert a single row into the table: "utility_meta_lineups" */ - insert_utility_meta_lineups_one?: (utility_meta_lineupsGenqlSelection & { __args: { - /** the row to be inserted */ - object: utility_meta_lineups_insert_input, - /** upsert condition */ - on_conflict?: (utility_meta_lineups_on_conflict | null)} }) - /** insert data into the table: "utility_playbook_steps" */ - insert_utility_playbook_steps?: (utility_playbook_steps_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: utility_playbook_steps_insert_input[], - /** upsert condition */ - on_conflict?: (utility_playbook_steps_on_conflict | null)} }) - /** insert a single row into the table: "utility_playbook_steps" */ - insert_utility_playbook_steps_one?: (utility_playbook_stepsGenqlSelection & { __args: { - /** the row to be inserted */ - object: utility_playbook_steps_insert_input, - /** upsert condition */ - on_conflict?: (utility_playbook_steps_on_conflict | null)} }) - /** insert data into the table: "utility_playbooks" */ - insert_utility_playbooks?: (utility_playbooks_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: utility_playbooks_insert_input[], - /** upsert condition */ - on_conflict?: (utility_playbooks_on_conflict | null)} }) - /** insert a single row into the table: "utility_playbooks" */ - insert_utility_playbooks_one?: (utility_playbooksGenqlSelection & { __args: { - /** the row to be inserted */ - object: utility_playbooks_insert_input, - /** upsert condition */ - on_conflict?: (utility_playbooks_on_conflict | null)} }) - /** insert data into the table: "utility_practice_invites" */ - insert_utility_practice_invites?: (utility_practice_invites_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: utility_practice_invites_insert_input[], - /** upsert condition */ - on_conflict?: (utility_practice_invites_on_conflict | null)} }) - /** insert a single row into the table: "utility_practice_invites" */ - insert_utility_practice_invites_one?: (utility_practice_invitesGenqlSelection & { __args: { - /** the row to be inserted */ - object: utility_practice_invites_insert_input, - /** upsert condition */ - on_conflict?: (utility_practice_invites_on_conflict | null)} }) - /** insert data into the table: "utility_practice_sessions" */ - insert_utility_practice_sessions?: (utility_practice_sessions_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: utility_practice_sessions_insert_input[], - /** upsert condition */ - on_conflict?: (utility_practice_sessions_on_conflict | null)} }) - /** insert a single row into the table: "utility_practice_sessions" */ - insert_utility_practice_sessions_one?: (utility_practice_sessionsGenqlSelection & { __args: { - /** the row to be inserted */ - object: utility_practice_sessions_insert_input, - /** upsert condition */ - on_conflict?: (utility_practice_sessions_on_conflict | null)} }) - /** insert data into the table: "v_match_captains" */ - insert_v_match_captains?: (v_match_captains_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: v_match_captains_insert_input[]} }) - /** insert a single row into the table: "v_match_captains" */ - insert_v_match_captains_one?: (v_match_captainsGenqlSelection & { __args: { - /** the row to be inserted */ - object: v_match_captains_insert_input} }) - /** insert data into the table: "v_match_map_backup_rounds" */ - insert_v_match_map_backup_rounds?: (v_match_map_backup_rounds_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: v_match_map_backup_rounds_insert_input[]} }) - /** insert a single row into the table: "v_match_map_backup_rounds" */ - insert_v_match_map_backup_rounds_one?: (v_match_map_backup_roundsGenqlSelection & { __args: { - /** the row to be inserted */ - object: v_match_map_backup_rounds_insert_input} }) - /** insert data into the table: "v_player_match_map_hltv" */ - insert_v_player_match_map_hltv?: (v_player_match_map_hltv_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: v_player_match_map_hltv_insert_input[]} }) - /** insert a single row into the table: "v_player_match_map_hltv" */ - insert_v_player_match_map_hltv_one?: (v_player_match_map_hltvGenqlSelection & { __args: { - /** the row to be inserted */ - object: v_player_match_map_hltv_insert_input} }) - /** insert data into the table: "v_pool_maps" */ - insert_v_pool_maps?: (v_pool_maps_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: v_pool_maps_insert_input[]} }) - /** insert a single row into the table: "v_pool_maps" */ - insert_v_pool_maps_one?: (v_pool_mapsGenqlSelection & { __args: { - /** the row to be inserted */ - object: v_pool_maps_insert_input} }) - /** insert data into the table: "v_team_stage_results" */ - insert_v_team_stage_results?: (v_team_stage_results_mutation_responseGenqlSelection & { __args: { - /** the rows to be inserted */ - objects: v_team_stage_results_insert_input[], - /** upsert condition */ - on_conflict?: (v_team_stage_results_on_conflict | null)} }) - /** insert a single row into the table: "v_team_stage_results" */ - insert_v_team_stage_results_one?: (v_team_stage_resultsGenqlSelection & { __args: { - /** the row to be inserted */ - 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)} }) - /** Invite players to a utility practice session */ - inviteToUtilityPractice?: (SuccessOutputGenqlSelection & { __args: {session_id: Scalars['uuid'], steam_ids: Scalars['String'][]} }) - /** joinDraftGame */ - joinDraftGame?: (SuccessOutputGenqlSelection & { __args: {draftGameId: Scalars['uuid'], inviteCode?: (Scalars['String'] | null)} }) - /** joinDraftGameAsParty */ - joinDraftGameAsParty?: (SuccessOutputGenqlSelection & { __args: {draftGameId: Scalars['uuid'], inviteCode?: (Scalars['String'] | null)} }) - /** Register for a tournament that drafts teams, alone or with your lobby */ - joinTournamentAsFreeAgent?: (SuccessOutputGenqlSelection & { __args: {tournament_id: Scalars['uuid'], with_party?: (Scalars['Boolean'] | null)} }) - /** Join a utility practice session */ - joinUtilityPractice?: (UtilityPracticeSessionOutputGenqlSelection & { __args?: {invite_code?: (Scalars['String'] | null), session_id?: (Scalars['uuid'] | null)} }) - kickServerPlayer?: (KickResultGenqlSelection & { __args: {reason?: (Scalars['String'] | null), serverId: Scalars['String'], steam_id: Scalars['String']} }) - /** execute VOLATILE function "league_award_forfeit" which returns "matches" */ - league_award_forfeit?: (matchesGenqlSelection & { __args: { - /** input parameters for function "league_award_forfeit" */ - args: league_award_forfeit_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)} }) - leaveLineup?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['String']} }) - /** Withdraw from a tournament's free agent pool */ - leaveTournamentAsFreeAgent?: (SuccessOutputGenqlSelection & { __args: {tournament_id: Scalars['uuid']} }) - /** Leave a utility practice session */ - leaveUtilityPractice?: (SuccessOutputGenqlSelection & { __args: {session_id: Scalars['uuid']} }) - linkSteamMatchHistory?: (SteamMatchHistoryLinkOutputGenqlSelection & { __args: {auth_code: Scalars['String'], share_code: Scalars['String']} }) - /** Load dev fixture data (dev only) */ - loadFixtures?: SuccessOutputGenqlSelection - /** Load a utility playbook into a running practice session */ - loadUtilityPlaybookIntoSession?: (SuccessOutputGenqlSelection & { __args: {playbook_id?: (Scalars['uuid'] | null), session_id: Scalars['uuid']} }) - /** logout */ - logout?: SuccessOutputGenqlSelection - /** Move file or directory on game server */ - moveServerItem?: (SuccessOutputGenqlSelection & { __args: {dest_path: Scalars['String'], node_id: Scalars['String'], server_id?: (Scalars['String'] | null), source_path: Scalars['String']} }) - /** Return the latest S3 orphan-scan report (admin only). */ - orphanedDemosScanResult?: OrphanScanResultOutputGenqlSelection - /** Flag in-flight clip_render_jobs paused; pod halts after current highlight. */ - pauseClipRenderBatch?: (SuccessOutputGenqlSelection & { __args: {match_map_id: Scalars['uuid']} }) - 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']} }) - /** Delete every lineup that came from one origin source */ - purgeUtilityLineupSource?: (UtilityPurgeOutputGenqlSelection & { __args: {dry_run?: (Scalars['Boolean'] | null), origin_source: Scalars['String']} }) - /** 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']} }) - /** Organizer re-admits a team that missed check-in, then re-seeds */ - readmitTournamentTeam?: (SuccessOutputGenqlSelection & { __args: {tournament_id: Scalars['uuid'], tournament_team_id: Scalars['uuid']} }) - rebootMatchServer?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid']} }) - /** execute VOLATILE function "recalculate_tournament_awards" which returns "award_recipients" */ - recalculate_tournament_awards?: (award_recipientsGenqlSelection & { __args: { - /** input parameters for function "recalculate_tournament_awards" */ - args: recalculate_tournament_awards_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)} }) - /** Wipe and rebuild all player ELO from finished matches in chronological order (admin only). Runs in the background; track via recomputePlayerEloStatus. */ - 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']} }) - /** Spend a tournament invite link for an unlock on an invite only tournament */ - redeemTournamentInviteCode?: (SuccessOutputGenqlSelection & { __args: {code: Scalars['String'], tournament_id: Scalars['uuid']} }) - /** Reindex every player into the Typesense search index (admin only). Runs in the background; track via refreshAllPlayersStatus. */ - refreshAllPlayers?: ReindexStartedOutputGenqlSelection - /** Return the progress of the player reindex run (admin only). */ - refreshAllPlayersStatus?: ReindexStatusOutputGenqlSelection - refreshFaceitRank?: (SuccessOutputGenqlSelection & { __args: {steam_id: Scalars['String']} }) - refreshLiveHud?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid']} }) - registerName?: (SuccessOutputGenqlSelection & { __args: {name: Scalars['String']} }) - /** Re-mine one batch of demos after a miner change */ - remineUtilityMeta?: UtilityRemineOutputGenqlSelection - /** Remove dev fixture data (dev only) */ - removeFixtures?: SuccessOutputGenqlSelection - /** Remove a friends-role presence bot account */ - removeSteamPresenceBotAccount?: (SuccessOutputGenqlSelection & { __args: {account_id: Scalars['String']} }) - /** execute VOLATILE function "remove_league_team_from_season" which returns "league_team_seasons" */ - remove_league_team_from_season?: (league_team_seasonsGenqlSelection & { __args: { - /** input parameters for function "remove_league_team_from_season" */ - args: remove_league_team_from_season_args, - /** distinct select on columns */ - distinct_on?: (league_team_seasons_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_team_seasons_order_by[] | null), - /** filter the rows returned */ - where?: (league_team_seasons_bool_exp | null)} }) - /** Rename file or directory on game server */ - renameServerItem?: (SuccessOutputGenqlSelection & { __args: {new_path: Scalars['String'], node_id: Scalars['String'], old_path: Scalars['String'], server_id?: (Scalars['String'] | null)} }) - /** Re-film a public lineup's preview clip */ - renderUtilityLineupPreview?: (UtilityRenderQueueOutputGenqlSelection & { __args: {utility_lineup_id: Scalars['uuid']} }) - /** execute VOLATILE function "reorder_league_divisions" which returns "league_divisions" */ - reorder_league_divisions?: (league_divisionsGenqlSelection & { __args: { - /** input parameters for function "reorder_league_divisions" */ - args: reorder_league_divisions_args, - /** distinct select on columns */ - distinct_on?: (league_divisions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_divisions_order_by[] | null), - /** filter the rows returned */ - where?: (league_divisions_bool_exp | null)} }) - /** Re-solve a lineup a drift scan says the map moved */ - repairUtilityLineup?: (UtilitySolveOutputGenqlSelection & { __args: {session_id: Scalars['uuid'], utility_lineup_id: Scalars['uuid']} }) - /** Re-parse every demo in the system (admin only). Runs one demo at a time in the background; this can take a very long time. Track via reparseAllDemosStatus. */ - reparseAllDemos?: ReparseAllStartedOutputGenqlSelection - /** Return the progress of the reparse-all-demos run (admin only). */ - reparseAllDemosStatus?: ReparseAllStatusOutputGenqlSelection - /** Re-parse demo metadata for a match map (admin only) */ - reparseDemo?: (SuccessOutputGenqlSelection & { __args: {match_map_id: Scalars['uuid']} }) - /** Re-parse all demos across every map for a match (admin only). Fires in the background and returns immediately. */ - reparseMatchDemos?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid']} }) - requestNameChange?: (SuccessOutputGenqlSelection & { __args: {name: Scalars['String'], steam_id: Scalars['bigint']} }) - /** Reset a terminal-state clip_render_jobs row back to queued and re-enqueue the batch worker (admin only). */ - requeueClipRender?: (SuccessOutputGenqlSelection & { __args: {job_id: Scalars['uuid']} }) - /** respondDraftInvite */ - respondDraftInvite?: (SuccessOutputGenqlSelection & { __args: {accept: Scalars['Boolean'], draftGameId: Scalars['uuid']} }) - /** respondToScrimRequest */ - respondToScrimRequest?: (SuccessOutputGenqlSelection & { __args: {accept: Scalars['Boolean'], request_id: Scalars['uuid']} }) - restartService?: (SuccessOutputGenqlSelection & { __args: {service: Scalars['String']} }) - /** execute VOLATILE function "restart_league_season" which returns "league_seasons" */ - restart_league_season?: (league_seasonsGenqlSelection & { __args: { - /** input parameters for function "restart_league_season" */ - args: restart_league_season_args, - /** distinct select on columns */ - distinct_on?: (league_seasons_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_seasons_order_by[] | null), - /** filter the rows returned */ - where?: (league_seasons_bool_exp | null)} }) - /** Clear paused flag and re-enqueue remaining queued clip_render_jobs. */ - resumeClipRenderBatch?: (SuccessOutputGenqlSelection & { __args: {match_map_id: Scalars['uuid']} }) - /** Delete terminal clip_render_jobs rows for a match_map (all or only failed/cancelled) and re-create them from their saved specs. */ - retryClipRenderBatch?: (SuccessOutputGenqlSelection & { __args: {match_map_id: Scalars['uuid'], only_failed?: (Scalars['Boolean'] | null)} }) - retryPendingMatchImport?: (PendingMatchImportActionOutputGenqlSelection & { __args: {valve_match_id: Scalars['String']} }) - /** Revoke a hand-granted award */ - revokeAward?: (SuccessOutputGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** Organizer kills a tournament invite link without losing who already used it */ - revokeTournamentInviteCode?: (SuccessOutputGenqlSelection & { __args: {invite_code_id: Scalars['uuid']} }) - sanctionServerPlayer?: (SanctionResultGenqlSelection & { __args: {duration?: (Scalars['Float'] | null), reason?: (Scalars['String'] | null), serverId?: (Scalars['String'] | null), steam_id: Scalars['String'], type: Scalars['String']} }) - /** Create or update a catalog award */ - saveAward?: (AwardGenqlSelection & { __args: {allow_multiple?: (Scalars['Boolean'] | null), description?: (Scalars['String'] | null), event_id?: (Scalars['uuid'] | null), id?: (Scalars['uuid'] | null), league_season_id?: (Scalars['uuid'] | null), name: Scalars['String'], season_id?: (Scalars['uuid'] | null), silhouette?: (Scalars['Int'] | null), tier: Scalars['String'], tournament_id?: (Scalars['uuid'] | null)} }) - /** Create or update a first-party news post. Caller role is verified against public.post_news_role. */ - saveNewsPost?: (NewsPostGenqlSelection & { __args: {content_markdown: Scalars['String'], cover_image_url?: (Scalars['String'] | null), id?: (Scalars['uuid'] | null), teaser?: (Scalars['String'] | null), title: Scalars['String']} }) - /** Mine a lineup out of a parsed demo */ - saveUtilityLineupFromDemo?: (UtilityLineupOutputGenqlSelection & { __args: {collection_id?: (Scalars['uuid'] | null), description?: (Scalars['String'] | null), grenade_id: Scalars['Int'], match_id: Scalars['uuid'], match_map_id: Scalars['uuid'], name: Scalars['String'], tags?: (Scalars['String'][] | null), team_id?: (Scalars['uuid'] | null), visibility?: (Scalars['String'] | null)} }) - /** Save a lineup recorded in a practice session */ - saveUtilityLineupFromPractice?: (UtilityLineupOutputGenqlSelection & { __args: {collection_id?: (Scalars['uuid'] | null), description?: (Scalars['String'] | null), name: Scalars['String'], session_id: Scalars['uuid'], tags?: (Scalars['String'][] | null), team_id?: (Scalars['uuid'] | null), utility_lineup_id: Scalars['uuid'], visibility?: (Scalars['String'] | null)} }) - /** Create or update a utility playbook and its steps */ - saveUtilityPlaybook?: (UtilityPlaybookOutputGenqlSelection & { __args: {description?: (Scalars['String'] | null), map_name: Scalars['String'], name: Scalars['String'], playbook_id?: (Scalars['uuid'] | null), side: Scalars['String'], steps?: (UtilityPlaybookStepInput[] | null), team_id?: (Scalars['uuid'] | null), visibility?: (Scalars['String'] | null)} }) - /** Scan S3 for objects not referenced in the database (admin only). Runs in the background; results land in the logs and orphanedDemosScanResult. */ - scanOrphanedDemos?: ScanStartedOutputGenqlSelection - /** Scan all players who have been on a lineup for Steam VAC/game bans */ - scanSteamBans?: SuccessOutputGenqlSelection - /** scheduleMatch */ - scheduleMatch?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid'], time?: (Scalars['timestamptz'] | null)} }) - /** sendScrimRequest */ - sendScrimRequest?: (SuccessOutputGenqlSelection & { __args: {best_of?: (Scalars['Int'] | null), from_team_id: Scalars['uuid'], proposed_scheduled_at: Scalars['timestamptz'], region?: (Scalars['String'] | null), to_team_id: Scalars['uuid']} }) - sendUtilityDrillToServer?: (UtilityDrillLoadOutputGenqlSelection & { __args: {lineup_ids: Scalars['String'][]} }) - sendUtilityLineupToServer?: (UtilityLoadOutputGenqlSelection & { __args: {lineup_id: Scalars['uuid']} }) - sendUtilityScratchToServer?: (UtilityLoadOutputGenqlSelection & { __args: {lineup: UtilityScratchLineupInput} }) - setGameNodeSchedulingState?: (SuccessOutputGenqlSelection & { __args: {enabled: Scalars['Boolean'], game_server_node_id: Scalars['String']} }) - /** Track new releases of a game plugin, or pin it where it is */ - setGamePluginAutoUpdate?: (SuccessOutputGenqlSelection & { __args: {enabled: Scalars['Boolean'], slug: Scalars['String']} }) - setHudMode?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid'], mode: Scalars['String']} }) - /** setMapWinner */ - setMapWinner?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid'], match_map_id: Scalars['uuid'], winning_lineup_id: Scalars['uuid']} }) - /** setMatchWinner */ - setMatchWinner?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid'], winning_lineup_id: Scalars['uuid']} }) - /** Publish or unpublish a news post. Caller role is verified against public.post_news_role. */ - setNewsPostStatus?: (NewsPostGenqlSelection & { __args: {id: Scalars['uuid'], status: Scalars['String']} }) - /** Map a tournament placement to an award */ - setTournamentAward?: (TournamentAwardGenqlSelection & { __args: {award_id?: (Scalars['uuid'] | null), custom_name?: (Scalars['String'] | null), placement: Scalars['Int'], silhouette?: (Scalars['Int'] | null), tournament_id: Scalars['uuid']} }) - setUtilityPracticeAccess?: (SuccessOutputGenqlSelection & { __args: {access: Scalars['String'], session_id: Scalars['uuid']} }) - setupGameServer?: SetupGameServeOutputGenqlSelection - skipShaders?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid']} }) - /** Ask a practice server to solve a throw onto a point */ - solveUtilityLineup?: (UtilitySolveOutputGenqlSelection & { __args: {from_x?: (Scalars['Float'] | null), from_y?: (Scalars['Float'] | null), from_z?: (Scalars['Float'] | null), name?: (Scalars['String'] | null), session_id: Scalars['uuid'], target_x: Scalars['Float'], target_y: Scalars['Float'], target_z: Scalars['Float'], tolerance?: (Scalars['Float'] | null), utility_type?: (Scalars['String'] | null)} }) - specAutodirector?: (SuccessOutputGenqlSelection & { __args: {enabled: Scalars['Boolean'], match_id: Scalars['uuid']} }) - specClick?: (SuccessOutputGenqlSelection & { __args: {button: Scalars['String'], match_id: Scalars['uuid']} }) - specHud?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid'], visible: Scalars['Boolean']} }) - specHudSides?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid']} }) - specJump?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid']} }) - specPlayer?: (SuccessOutputGenqlSelection & { __args: {accountid: Scalars['Int'], match_id: Scalars['uuid']} }) - specScoreboard?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid'], show: Scalars['Boolean']} }) - specSlot?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid'], slot: Scalars['Int']} }) - specXray?: (SuccessOutputGenqlSelection & { __args: {enabled: Scalars['Boolean'], match_id: Scalars['uuid']} }) - startLive?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid'], mode: Scalars['String']} }) - /** startMatch */ - startMatch?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid'], server_id?: (Scalars['uuid'] | null)} }) - /** Re-fly a map's lineups against two collision meshes */ - startUtilityDriftScan?: (UtilityDriftScanOutputGenqlSelection & { __args: {from_revision?: (Scalars['String'] | null), map_name: Scalars['String'], to_revision?: (Scalars['String'] | null)} }) - /** Start a utility practice session */ - startUtilityPractice?: (UtilityPracticeSessionOutputGenqlSelection & { __args: {access?: (Scalars['String'] | null), collection_id?: (Scalars['uuid'] | null), is_open?: (Scalars['Boolean'] | null), map_name: Scalars['String'], region?: (Scalars['String'] | null), server_id?: (Scalars['uuid'] | null), team_id?: (Scalars['uuid'] | null)} }) - stopGpuSession?: (SuccessOutputGenqlSelection & { __args: {game_server_node_id: Scalars['uuid']} }) - stopLive?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid']} }) - /** Stop a utility practice session */ - stopUtilityPractice?: (SuccessOutputGenqlSelection & { __args: {session_id: Scalars['uuid']} }) - stopWatchDemo?: (SuccessOutputGenqlSelection & { __args: {match_map_id: Scalars['uuid']} }) - /** Submit a Steam Guard code for a presence bot account */ - submitSteamPresenceSteamGuard?: (SuccessOutputGenqlSelection & { __args: {account_id: Scalars['String'], code: Scalars['String']} }) - 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 published map callouts for every enabled map */ - syncMapCallouts?: MapCalloutSyncOutputGenqlSelection - /** 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']} }) - /** Owner-only patch for clip title / visibility / target_steam_id. */ - updateClip?: (SuccessOutputGenqlSelection & { __args: {clip_id: Scalars['uuid'], target_steam_id?: (Scalars['String'] | null), title?: (Scalars['String'] | null), visibility?: (Scalars['String'] | null)} }) - updateCs?: (SuccessOutputGenqlSelection & { __args?: {game?: (Scalars['String'] | null), game_server_node_id?: (Scalars['uuid'] | null)} }) - /** updateDraftGame */ - updateDraftGame?: (SuccessOutputGenqlSelection & { __args: {draftGameId: Scalars['uuid'], settings: Scalars['jsonb']} }) - updateServices?: SuccessOutputGenqlSelection - /** update data of the table: "_map_pool" */ - update__map_pool?: (_map_pool_mutation_responseGenqlSelection & { __args: { - /** 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} }) - /** update single row of the table: "_map_pool" */ - update__map_pool_by_pk?: (_map_poolGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (_map_pool_set_input | null), pk_columns: _map_pool_pk_columns_input} }) - /** update multiples rows of table: "_map_pool" */ - update__map_pool_many?: (_map_pool_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: _map_pool_updates[]} }) - /** update data of the table: "abandoned_matches" */ - update_abandoned_matches?: (abandoned_matches_mutation_responseGenqlSelection & { __args: { - /** 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} }) - /** update single row of the table: "abandoned_matches" */ - update_abandoned_matches_by_pk?: (abandoned_matchesGenqlSelection & { __args: { - /** 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), pk_columns: abandoned_matches_pk_columns_input} }) - /** update multiples rows of table: "abandoned_matches" */ - update_abandoned_matches_many?: (abandoned_matches_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: abandoned_matches_updates[]} }) - /** update data of the table: "api_keys" */ - update_api_keys?: (api_keys_mutation_responseGenqlSelection & { __args: { - /** 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} }) - /** update single row of the table: "api_keys" */ - update_api_keys_by_pk?: (api_keysGenqlSelection & { __args: { - /** 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), pk_columns: api_keys_pk_columns_input} }) - /** update multiples rows of table: "api_keys" */ - update_api_keys_many?: (api_keys_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: api_keys_updates[]} }) - /** update data of the table: "award_recipients" */ - update_award_recipients?: (award_recipients_mutation_responseGenqlSelection & { __args: { - /** 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} }) - /** update single row of the table: "award_recipients" */ - update_award_recipients_by_pk?: (award_recipientsGenqlSelection & { __args: { - /** 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), pk_columns: award_recipients_pk_columns_input} }) - /** update multiples rows of table: "award_recipients" */ - update_award_recipients_many?: (award_recipients_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: award_recipients_updates[]} }) - /** update data of the table: "awards" */ - update_awards?: (awards_mutation_responseGenqlSelection & { __args: { - /** 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} }) - /** update single row of the table: "awards" */ - update_awards_by_pk?: (awardsGenqlSelection & { __args: { - /** 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), pk_columns: awards_pk_columns_input} }) - /** update multiples rows of table: "awards" */ - update_awards_many?: (awards_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: awards_updates[]} }) - /** update data of the table: "chat_read_state" */ - update_chat_read_state?: (chat_read_state_mutation_responseGenqlSelection & { __args: { - /** 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} }) - /** update single row of the table: "chat_read_state" */ - update_chat_read_state_by_pk?: (chat_read_stateGenqlSelection & { __args: { - /** 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), pk_columns: chat_read_state_pk_columns_input} }) - /** update multiples rows of table: "chat_read_state" */ - update_chat_read_state_many?: (chat_read_state_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: chat_read_state_updates[]} }) - /** update data of the table: "clip_render_jobs" */ - update_clip_render_jobs?: (clip_render_jobs_mutation_responseGenqlSelection & { __args: { - /** append existing jsonb value of filtered columns with new jsonb value */ - _append?: (clip_render_jobs_append_input | null), - /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ - _delete_at_path?: (clip_render_jobs_delete_at_path_input | null), - /** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */ - _delete_elem?: (clip_render_jobs_delete_elem_input | null), - /** delete key/value pair or string element. key/value pairs are matched based on their key value */ - _delete_key?: (clip_render_jobs_delete_key_input | null), - /** increments the numeric columns with given value of the filtered values */ - _inc?: (clip_render_jobs_inc_input | null), - /** prepend existing jsonb value of filtered columns with new jsonb value */ - _prepend?: (clip_render_jobs_prepend_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (clip_render_jobs_set_input | null), - /** filter the rows which have to be updated */ - where: clip_render_jobs_bool_exp} }) - /** update single row of the table: "clip_render_jobs" */ - update_clip_render_jobs_by_pk?: (clip_render_jobsGenqlSelection & { __args: { - /** append existing jsonb value of filtered columns with new jsonb value */ - _append?: (clip_render_jobs_append_input | null), - /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ - _delete_at_path?: (clip_render_jobs_delete_at_path_input | null), - /** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */ - _delete_elem?: (clip_render_jobs_delete_elem_input | null), - /** delete key/value pair or string element. key/value pairs are matched based on their key value */ - _delete_key?: (clip_render_jobs_delete_key_input | null), - /** increments the numeric columns with given value of the filtered values */ - _inc?: (clip_render_jobs_inc_input | null), - /** prepend existing jsonb value of filtered columns with new jsonb value */ - _prepend?: (clip_render_jobs_prepend_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (clip_render_jobs_set_input | null), pk_columns: clip_render_jobs_pk_columns_input} }) - /** update multiples rows of table: "clip_render_jobs" */ - update_clip_render_jobs_many?: (clip_render_jobs_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: clip_render_jobs_updates[]} }) - /** update data of the table: "custom_pages" */ - update_custom_pages?: (custom_pages_mutation_responseGenqlSelection & { __args: { - /** 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?: (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?: (custom_pages_set_input | null), - /** filter the rows which have to be updated */ - where: custom_pages_bool_exp} }) - /** update single row of the table: "custom_pages" */ - update_custom_pages_by_pk?: (custom_pagesGenqlSelection & { __args: { - /** 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?: (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?: (custom_pages_set_input | null), pk_columns: custom_pages_pk_columns_input} }) - /** update multiples rows of table: "custom_pages" */ - update_custom_pages_many?: (custom_pages_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: custom_pages_updates[]} }) - /** update data of the table: "db_backups" */ - update_db_backups?: (db_backups_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _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} }) - /** update single row of the table: "db_backups" */ - update_db_backups_by_pk?: (db_backupsGenqlSelection & { __args: { - /** 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), pk_columns: db_backups_pk_columns_input} }) - /** update multiples rows of table: "db_backups" */ - update_db_backups_many?: (db_backups_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: db_backups_updates[]} }) - /** update data of the table: "direct_conversations" */ - update_direct_conversations?: (direct_conversations_mutation_responseGenqlSelection & { __args: { - /** 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} }) - /** update single row of the table: "direct_conversations" */ - update_direct_conversations_by_pk?: (direct_conversationsGenqlSelection & { __args: { - /** 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), pk_columns: direct_conversations_pk_columns_input} }) - /** update multiples rows of table: "direct_conversations" */ - update_direct_conversations_many?: (direct_conversations_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: direct_conversations_updates[]} }) - /** update data of the table: "direct_messages" */ - update_direct_messages?: (direct_messages_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (direct_messages_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (direct_messages_set_input | null), - /** filter the rows which have to be updated */ - where: direct_messages_bool_exp} }) - /** update single row of the table: "direct_messages" */ - update_direct_messages_by_pk?: (direct_messagesGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (direct_messages_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (direct_messages_set_input | null), pk_columns: direct_messages_pk_columns_input} }) - /** update multiples rows of table: "direct_messages" */ - update_direct_messages_many?: (direct_messages_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: direct_messages_updates[]} }) - /** update data of the table: "draft_game_picks" */ - update_draft_game_picks?: (draft_game_picks_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (draft_game_picks_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (draft_game_picks_set_input | null), - /** filter the rows which have to be updated */ - where: draft_game_picks_bool_exp} }) - /** update single row of the table: "draft_game_picks" */ - update_draft_game_picks_by_pk?: (draft_game_picksGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (draft_game_picks_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (draft_game_picks_set_input | null), pk_columns: draft_game_picks_pk_columns_input} }) - /** update multiples rows of table: "draft_game_picks" */ - update_draft_game_picks_many?: (draft_game_picks_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: draft_game_picks_updates[]} }) - /** update data of the table: "draft_game_players" */ - update_draft_game_players?: (draft_game_players_mutation_responseGenqlSelection & { __args: { - /** 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} }) - /** update single row of the table: "draft_game_players" */ - update_draft_game_players_by_pk?: (draft_game_playersGenqlSelection & { __args: { - /** 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), pk_columns: draft_game_players_pk_columns_input} }) - /** update multiples rows of table: "draft_game_players" */ - update_draft_game_players_many?: (draft_game_players_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: draft_game_players_updates[]} }) - /** update data of the table: "draft_games" */ - update_draft_games?: (draft_games_mutation_responseGenqlSelection & { __args: { - /** 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} }) - /** update single row of the table: "draft_games" */ - update_draft_games_by_pk?: (draft_gamesGenqlSelection & { __args: { - /** 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), pk_columns: draft_games_pk_columns_input} }) - /** update multiples rows of table: "draft_games" */ - update_draft_games_many?: (draft_games_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: draft_games_updates[]} }) - /** update data of the table: "e_award_sources" */ - update_e_award_sources?: (e_award_sources_mutation_responseGenqlSelection & { __args: { - /** 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} }) - /** update single row of the table: "e_award_sources" */ - update_e_award_sources_by_pk?: (e_award_sourcesGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_award_sources_set_input | null), pk_columns: e_award_sources_pk_columns_input} }) - /** update multiples rows of table: "e_award_sources" */ - update_e_award_sources_many?: (e_award_sources_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_award_sources_updates[]} }) - /** update data of the table: "e_award_tiers" */ - update_e_award_tiers?: (e_award_tiers_mutation_responseGenqlSelection & { __args: { - /** 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} }) - /** update single row of the table: "e_award_tiers" */ - update_e_award_tiers_by_pk?: (e_award_tiersGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_award_tiers_set_input | null), pk_columns: e_award_tiers_pk_columns_input} }) - /** update multiples rows of table: "e_award_tiers" */ - update_e_award_tiers_many?: (e_award_tiers_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_award_tiers_updates[]} }) - /** update data of the table: "e_check_in_settings" */ - update_e_check_in_settings?: (e_check_in_settings_mutation_responseGenqlSelection & { __args: { - /** 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} }) - /** update single row of the table: "e_check_in_settings" */ - update_e_check_in_settings_by_pk?: (e_check_in_settingsGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_check_in_settings_set_input | null), pk_columns: e_check_in_settings_pk_columns_input} }) - /** update multiples rows of table: "e_check_in_settings" */ - update_e_check_in_settings_many?: (e_check_in_settings_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_check_in_settings_updates[]} }) - /** update data of the table: "e_draft_game_captain_selection" */ - update_e_draft_game_captain_selection?: (e_draft_game_captain_selection_mutation_responseGenqlSelection & { __args: { - /** 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} }) - /** update single row of the table: "e_draft_game_captain_selection" */ - update_e_draft_game_captain_selection_by_pk?: (e_draft_game_captain_selectionGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_draft_game_captain_selection_set_input | null), pk_columns: e_draft_game_captain_selection_pk_columns_input} }) - /** update multiples rows of table: "e_draft_game_captain_selection" */ - update_e_draft_game_captain_selection_many?: (e_draft_game_captain_selection_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_draft_game_captain_selection_updates[]} }) - /** update data of the table: "e_draft_game_draft_order" */ - update_e_draft_game_draft_order?: (e_draft_game_draft_order_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_draft_game_draft_order_set_input | null), - /** filter the rows which have to be updated */ - where: e_draft_game_draft_order_bool_exp} }) - /** update single row of the table: "e_draft_game_draft_order" */ - update_e_draft_game_draft_order_by_pk?: (e_draft_game_draft_orderGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_draft_game_draft_order_set_input | null), pk_columns: e_draft_game_draft_order_pk_columns_input} }) - /** update multiples rows of table: "e_draft_game_draft_order" */ - update_e_draft_game_draft_order_many?: (e_draft_game_draft_order_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_draft_game_draft_order_updates[]} }) - /** update data of the table: "e_draft_game_mode" */ - update_e_draft_game_mode?: (e_draft_game_mode_mutation_responseGenqlSelection & { __args: { - /** 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} }) - /** update single row of the table: "e_draft_game_mode" */ - update_e_draft_game_mode_by_pk?: (e_draft_game_modeGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_draft_game_mode_set_input | null), pk_columns: e_draft_game_mode_pk_columns_input} }) - /** update multiples rows of table: "e_draft_game_mode" */ - update_e_draft_game_mode_many?: (e_draft_game_mode_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_draft_game_mode_updates[]} }) - /** update data of the table: "e_draft_game_player_status" */ - update_e_draft_game_player_status?: (e_draft_game_player_status_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_draft_game_player_status_set_input | null), - /** filter the rows which have to be updated */ - where: e_draft_game_player_status_bool_exp} }) - /** update single row of the table: "e_draft_game_player_status" */ - update_e_draft_game_player_status_by_pk?: (e_draft_game_player_statusGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_draft_game_player_status_set_input | null), pk_columns: e_draft_game_player_status_pk_columns_input} }) - /** update multiples rows of table: "e_draft_game_player_status" */ - update_e_draft_game_player_status_many?: (e_draft_game_player_status_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_draft_game_player_status_updates[]} }) - /** update data of the table: "e_draft_game_status" */ - update_e_draft_game_status?: (e_draft_game_status_mutation_responseGenqlSelection & { __args: { - /** 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} }) - /** update single row of the table: "e_draft_game_status" */ - update_e_draft_game_status_by_pk?: (e_draft_game_statusGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_draft_game_status_set_input | null), pk_columns: e_draft_game_status_pk_columns_input} }) - /** update multiples rows of table: "e_draft_game_status" */ - update_e_draft_game_status_many?: (e_draft_game_status_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_draft_game_status_updates[]} }) - /** update data of the table: "e_event_media_access" */ - update_e_event_media_access?: (e_event_media_access_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_event_media_access_set_input | null), - /** filter the rows which have to be updated */ - where: e_event_media_access_bool_exp} }) - /** update single row of the table: "e_event_media_access" */ - update_e_event_media_access_by_pk?: (e_event_media_accessGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_event_media_access_set_input | null), pk_columns: e_event_media_access_pk_columns_input} }) - /** update multiples rows of table: "e_event_media_access" */ - update_e_event_media_access_many?: (e_event_media_access_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_event_media_access_updates[]} }) - /** update data of the table: "e_event_visibility" */ - update_e_event_visibility?: (e_event_visibility_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_event_visibility_set_input | null), - /** filter the rows which have to be updated */ - where: e_event_visibility_bool_exp} }) - /** update single row of the table: "e_event_visibility" */ - update_e_event_visibility_by_pk?: (e_event_visibilityGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_event_visibility_set_input | null), pk_columns: e_event_visibility_pk_columns_input} }) - /** update multiples rows of table: "e_event_visibility" */ - update_e_event_visibility_many?: (e_event_visibility_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_event_visibility_updates[]} }) - /** update data of the table: "e_friend_status" */ - update_e_friend_status?: (e_friend_status_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_friend_status_set_input | null), - /** filter the rows which have to be updated */ - where: e_friend_status_bool_exp} }) - /** update single row of the table: "e_friend_status" */ - update_e_friend_status_by_pk?: (e_friend_statusGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_friend_status_set_input | null), pk_columns: e_friend_status_pk_columns_input} }) - /** update multiples rows of table: "e_friend_status" */ - update_e_friend_status_many?: (e_friend_status_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_friend_status_updates[]} }) - /** update data of the table: "e_game_cfg_types" */ - update_e_game_cfg_types?: (e_game_cfg_types_mutation_responseGenqlSelection & { __args: { - /** 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} }) - /** update single row of the table: "e_game_cfg_types" */ - update_e_game_cfg_types_by_pk?: (e_game_cfg_typesGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_game_cfg_types_set_input | null), pk_columns: e_game_cfg_types_pk_columns_input} }) - /** update multiples rows of table: "e_game_cfg_types" */ - 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 */ - _set?: (e_game_server_node_statuses_set_input | null), - /** filter the rows which have to be updated */ - where: e_game_server_node_statuses_bool_exp} }) - /** update single row of the table: "e_game_server_node_statuses" */ - update_e_game_server_node_statuses_by_pk?: (e_game_server_node_statusesGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_game_server_node_statuses_set_input | null), pk_columns: e_game_server_node_statuses_pk_columns_input} }) - /** update multiples rows of table: "e_game_server_node_statuses" */ - update_e_game_server_node_statuses_many?: (e_game_server_node_statuses_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_game_server_node_statuses_updates[]} }) - /** update data of the table: "e_league_movement_types" */ - update_e_league_movement_types?: (e_league_movement_types_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_league_movement_types_set_input | null), - /** filter the rows which have to be updated */ - where: e_league_movement_types_bool_exp} }) - /** update single row of the table: "e_league_movement_types" */ - update_e_league_movement_types_by_pk?: (e_league_movement_typesGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_league_movement_types_set_input | null), pk_columns: e_league_movement_types_pk_columns_input} }) - /** update multiples rows of table: "e_league_movement_types" */ - update_e_league_movement_types_many?: (e_league_movement_types_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_league_movement_types_updates[]} }) - /** update data of the table: "e_league_proposal_statuses" */ - update_e_league_proposal_statuses?: (e_league_proposal_statuses_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_league_proposal_statuses_set_input | null), - /** filter the rows which have to be updated */ - where: e_league_proposal_statuses_bool_exp} }) - /** update single row of the table: "e_league_proposal_statuses" */ - update_e_league_proposal_statuses_by_pk?: (e_league_proposal_statusesGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_league_proposal_statuses_set_input | null), pk_columns: e_league_proposal_statuses_pk_columns_input} }) - /** update multiples rows of table: "e_league_proposal_statuses" */ - update_e_league_proposal_statuses_many?: (e_league_proposal_statuses_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_league_proposal_statuses_updates[]} }) - /** update data of the table: "e_league_registration_statuses" */ - update_e_league_registration_statuses?: (e_league_registration_statuses_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_league_registration_statuses_set_input | null), - /** filter the rows which have to be updated */ - where: e_league_registration_statuses_bool_exp} }) - /** update single row of the table: "e_league_registration_statuses" */ - update_e_league_registration_statuses_by_pk?: (e_league_registration_statusesGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_league_registration_statuses_set_input | null), pk_columns: e_league_registration_statuses_pk_columns_input} }) - /** update multiples rows of table: "e_league_registration_statuses" */ - update_e_league_registration_statuses_many?: (e_league_registration_statuses_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_league_registration_statuses_updates[]} }) - /** update data of the table: "e_league_season_statuses" */ - update_e_league_season_statuses?: (e_league_season_statuses_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_league_season_statuses_set_input | null), - /** filter the rows which have to be updated */ - where: e_league_season_statuses_bool_exp} }) - /** update single row of the table: "e_league_season_statuses" */ - update_e_league_season_statuses_by_pk?: (e_league_season_statusesGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_league_season_statuses_set_input | null), pk_columns: e_league_season_statuses_pk_columns_input} }) - /** update multiples rows of table: "e_league_season_statuses" */ - update_e_league_season_statuses_many?: (e_league_season_statuses_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_league_season_statuses_updates[]} }) - /** update data of the table: "e_lobby_access" */ - update_e_lobby_access?: (e_lobby_access_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_lobby_access_set_input | null), - /** filter the rows which have to be updated */ - where: e_lobby_access_bool_exp} }) - /** update single row of the table: "e_lobby_access" */ - update_e_lobby_access_by_pk?: (e_lobby_accessGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_lobby_access_set_input | null), pk_columns: e_lobby_access_pk_columns_input} }) - /** update multiples rows of table: "e_lobby_access" */ - update_e_lobby_access_many?: (e_lobby_access_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_lobby_access_updates[]} }) - /** update data of the table: "e_lobby_player_status" */ - update_e_lobby_player_status?: (e_lobby_player_status_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_lobby_player_status_set_input | null), - /** filter the rows which have to be updated */ - where: e_lobby_player_status_bool_exp} }) - /** update single row of the table: "e_lobby_player_status" */ - update_e_lobby_player_status_by_pk?: (e_lobby_player_statusGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_lobby_player_status_set_input | null), pk_columns: e_lobby_player_status_pk_columns_input} }) - /** update multiples rows of table: "e_lobby_player_status" */ - update_e_lobby_player_status_many?: (e_lobby_player_status_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_lobby_player_status_updates[]} }) - /** update data of the table: "e_map_pool_types" */ - update_e_map_pool_types?: (e_map_pool_types_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_map_pool_types_set_input | null), - /** filter the rows which have to be updated */ - where: e_map_pool_types_bool_exp} }) - /** update single row of the table: "e_map_pool_types" */ - update_e_map_pool_types_by_pk?: (e_map_pool_typesGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_map_pool_types_set_input | null), pk_columns: e_map_pool_types_pk_columns_input} }) - /** update multiples rows of table: "e_map_pool_types" */ - update_e_map_pool_types_many?: (e_map_pool_types_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_map_pool_types_updates[]} }) - /** update data of the table: "e_match_clip_visibility" */ - update_e_match_clip_visibility?: (e_match_clip_visibility_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_match_clip_visibility_set_input | null), - /** filter the rows which have to be updated */ - where: e_match_clip_visibility_bool_exp} }) - /** update single row of the table: "e_match_clip_visibility" */ - update_e_match_clip_visibility_by_pk?: (e_match_clip_visibilityGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_match_clip_visibility_set_input | null), pk_columns: e_match_clip_visibility_pk_columns_input} }) - /** update multiples rows of table: "e_match_clip_visibility" */ - update_e_match_clip_visibility_many?: (e_match_clip_visibility_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_match_clip_visibility_updates[]} }) - /** update data of the table: "e_match_map_status" */ - update_e_match_map_status?: (e_match_map_status_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_match_map_status_set_input | null), - /** filter the rows which have to be updated */ - where: e_match_map_status_bool_exp} }) - /** update single row of the table: "e_match_map_status" */ - update_e_match_map_status_by_pk?: (e_match_map_statusGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_match_map_status_set_input | null), pk_columns: e_match_map_status_pk_columns_input} }) - /** update multiples rows of table: "e_match_map_status" */ - update_e_match_map_status_many?: (e_match_map_status_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_match_map_status_updates[]} }) - /** update data of the table: "e_match_mode" */ - update_e_match_mode?: (e_match_mode_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_match_mode_set_input | null), - /** filter the rows which have to be updated */ - where: e_match_mode_bool_exp} }) - /** update single row of the table: "e_match_mode" */ - update_e_match_mode_by_pk?: (e_match_modeGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_match_mode_set_input | null), pk_columns: e_match_mode_pk_columns_input} }) - /** update multiples rows of table: "e_match_mode" */ - update_e_match_mode_many?: (e_match_mode_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_match_mode_updates[]} }) - /** update data of the table: "e_match_party_sources" */ - update_e_match_party_sources?: (e_match_party_sources_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_match_party_sources_set_input | null), - /** filter the rows which have to be updated */ - where: e_match_party_sources_bool_exp} }) - /** update single row of the table: "e_match_party_sources" */ - update_e_match_party_sources_by_pk?: (e_match_party_sourcesGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_match_party_sources_set_input | null), pk_columns: e_match_party_sources_pk_columns_input} }) - /** update multiples rows of table: "e_match_party_sources" */ - update_e_match_party_sources_many?: (e_match_party_sources_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_match_party_sources_updates[]} }) - /** update data of the table: "e_match_status" */ - update_e_match_status?: (e_match_status_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_match_status_set_input | null), - /** filter the rows which have to be updated */ - where: e_match_status_bool_exp} }) - /** update single row of the table: "e_match_status" */ - update_e_match_status_by_pk?: (e_match_statusGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_match_status_set_input | null), pk_columns: e_match_status_pk_columns_input} }) - /** update multiples rows of table: "e_match_status" */ - update_e_match_status_many?: (e_match_status_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_match_status_updates[]} }) - /** update data of the table: "e_match_types" */ - update_e_match_types?: (e_match_types_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_match_types_set_input | null), - /** filter the rows which have to be updated */ - where: e_match_types_bool_exp} }) - /** update single row of the table: "e_match_types" */ - update_e_match_types_by_pk?: (e_match_typesGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_match_types_set_input | null), pk_columns: e_match_types_pk_columns_input} }) - /** update multiples rows of table: "e_match_types" */ - update_e_match_types_many?: (e_match_types_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_match_types_updates[]} }) - /** update data of the table: "e_notification_types" */ - update_e_notification_types?: (e_notification_types_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_notification_types_set_input | null), - /** filter the rows which have to be updated */ - where: e_notification_types_bool_exp} }) - /** update single row of the table: "e_notification_types" */ - update_e_notification_types_by_pk?: (e_notification_typesGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_notification_types_set_input | null), pk_columns: e_notification_types_pk_columns_input} }) - /** update multiples rows of table: "e_notification_types" */ - update_e_notification_types_many?: (e_notification_types_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_notification_types_updates[]} }) - /** update data of the table: "e_objective_types" */ - update_e_objective_types?: (e_objective_types_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_objective_types_set_input | null), - /** filter the rows which have to be updated */ - where: e_objective_types_bool_exp} }) - /** update single row of the table: "e_objective_types" */ - update_e_objective_types_by_pk?: (e_objective_typesGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_objective_types_set_input | null), pk_columns: e_objective_types_pk_columns_input} }) - /** update multiples rows of table: "e_objective_types" */ - update_e_objective_types_many?: (e_objective_types_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_objective_types_updates[]} }) - /** update data of the table: "e_player_roles" */ - update_e_player_roles?: (e_player_roles_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_player_roles_set_input | null), - /** filter the rows which have to be updated */ - where: e_player_roles_bool_exp} }) - /** update single row of the table: "e_player_roles" */ - update_e_player_roles_by_pk?: (e_player_rolesGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_player_roles_set_input | null), pk_columns: e_player_roles_pk_columns_input} }) - /** update multiples rows of table: "e_player_roles" */ - update_e_player_roles_many?: (e_player_roles_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_player_roles_updates[]} }) - /** update data of the table: "e_plugin_runtimes" */ - update_e_plugin_runtimes?: (e_plugin_runtimes_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_plugin_runtimes_set_input | null), - /** filter the rows which have to be updated */ - where: e_plugin_runtimes_bool_exp} }) - /** update single row of the table: "e_plugin_runtimes" */ - update_e_plugin_runtimes_by_pk?: (e_plugin_runtimesGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_plugin_runtimes_set_input | null), pk_columns: e_plugin_runtimes_pk_columns_input} }) - /** update multiples rows of table: "e_plugin_runtimes" */ - update_e_plugin_runtimes_many?: (e_plugin_runtimes_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_plugin_runtimes_updates[]} }) - /** update data of the table: "e_ready_settings" */ - update_e_ready_settings?: (e_ready_settings_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_ready_settings_set_input | null), - /** filter the rows which have to be updated */ - where: e_ready_settings_bool_exp} }) - /** update single row of the table: "e_ready_settings" */ - update_e_ready_settings_by_pk?: (e_ready_settingsGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_ready_settings_set_input | null), pk_columns: e_ready_settings_pk_columns_input} }) - /** update multiples rows of table: "e_ready_settings" */ - update_e_ready_settings_many?: (e_ready_settings_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_ready_settings_updates[]} }) - /** update data of the table: "e_sanction_scopes" */ - update_e_sanction_scopes?: (e_sanction_scopes_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_sanction_scopes_set_input | null), - /** filter the rows which have to be updated */ - where: e_sanction_scopes_bool_exp} }) - /** update single row of the table: "e_sanction_scopes" */ - update_e_sanction_scopes_by_pk?: (e_sanction_scopesGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_sanction_scopes_set_input | null), pk_columns: e_sanction_scopes_pk_columns_input} }) - /** update multiples rows of table: "e_sanction_scopes" */ - update_e_sanction_scopes_many?: (e_sanction_scopes_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_sanction_scopes_updates[]} }) - /** update data of the table: "e_sanction_sources" */ - update_e_sanction_sources?: (e_sanction_sources_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (e_sanction_sources_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (e_sanction_sources_set_input | null), - /** filter the rows which have to be updated */ - where: e_sanction_sources_bool_exp} }) - /** update single row of the table: "e_sanction_sources" */ - update_e_sanction_sources_by_pk?: (e_sanction_sourcesGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (e_sanction_sources_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (e_sanction_sources_set_input | null), pk_columns: e_sanction_sources_pk_columns_input} }) - /** update multiples rows of table: "e_sanction_sources" */ - update_e_sanction_sources_many?: (e_sanction_sources_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_sanction_sources_updates[]} }) - /** update data of the table: "e_sanction_types" */ - update_e_sanction_types?: (e_sanction_types_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_sanction_types_set_input | null), - /** filter the rows which have to be updated */ - where: e_sanction_types_bool_exp} }) - /** update single row of the table: "e_sanction_types" */ - update_e_sanction_types_by_pk?: (e_sanction_typesGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_sanction_types_set_input | null), pk_columns: e_sanction_types_pk_columns_input} }) - /** update multiples rows of table: "e_sanction_types" */ - update_e_sanction_types_many?: (e_sanction_types_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_sanction_types_updates[]} }) - /** update data of the table: "e_scrim_request_statuses" */ - update_e_scrim_request_statuses?: (e_scrim_request_statuses_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_scrim_request_statuses_set_input | null), - /** filter the rows which have to be updated */ - where: e_scrim_request_statuses_bool_exp} }) - /** update single row of the table: "e_scrim_request_statuses" */ - update_e_scrim_request_statuses_by_pk?: (e_scrim_request_statusesGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_scrim_request_statuses_set_input | null), pk_columns: e_scrim_request_statuses_pk_columns_input} }) - /** update multiples rows of table: "e_scrim_request_statuses" */ - update_e_scrim_request_statuses_many?: (e_scrim_request_statuses_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_scrim_request_statuses_updates[]} }) - /** update data of the table: "e_server_types" */ - update_e_server_types?: (e_server_types_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_server_types_set_input | null), - /** filter the rows which have to be updated */ - where: e_server_types_bool_exp} }) - /** update single row of the table: "e_server_types" */ - update_e_server_types_by_pk?: (e_server_typesGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_server_types_set_input | null), pk_columns: e_server_types_pk_columns_input} }) - /** update multiples rows of table: "e_server_types" */ - update_e_server_types_many?: (e_server_types_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_server_types_updates[]} }) - /** update data of the table: "e_sides" */ - update_e_sides?: (e_sides_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_sides_set_input | null), - /** filter the rows which have to be updated */ - where: e_sides_bool_exp} }) - /** update single row of the table: "e_sides" */ - update_e_sides_by_pk?: (e_sidesGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_sides_set_input | null), pk_columns: e_sides_pk_columns_input} }) - /** update multiples rows of table: "e_sides" */ - update_e_sides_many?: (e_sides_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_sides_updates[]} }) - /** update data of the table: "e_system_alert_types" */ - update_e_system_alert_types?: (e_system_alert_types_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_system_alert_types_set_input | null), - /** filter the rows which have to be updated */ - where: e_system_alert_types_bool_exp} }) - /** update single row of the table: "e_system_alert_types" */ - update_e_system_alert_types_by_pk?: (e_system_alert_typesGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_system_alert_types_set_input | null), pk_columns: e_system_alert_types_pk_columns_input} }) - /** update multiples rows of table: "e_system_alert_types" */ - update_e_system_alert_types_many?: (e_system_alert_types_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_system_alert_types_updates[]} }) - /** update data of the table: "e_team_roles" */ - update_e_team_roles?: (e_team_roles_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_team_roles_set_input | null), - /** filter the rows which have to be updated */ - where: e_team_roles_bool_exp} }) - /** update single row of the table: "e_team_roles" */ - update_e_team_roles_by_pk?: (e_team_rolesGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_team_roles_set_input | null), pk_columns: e_team_roles_pk_columns_input} }) - /** update multiples rows of table: "e_team_roles" */ - update_e_team_roles_many?: (e_team_roles_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_team_roles_updates[]} }) - /** update data of the table: "e_team_roster_statuses" */ - update_e_team_roster_statuses?: (e_team_roster_statuses_mutation_responseGenqlSelection & { __args: { - /** 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} }) - /** update single row of the table: "e_team_roster_statuses" */ - update_e_team_roster_statuses_by_pk?: (e_team_roster_statusesGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_team_roster_statuses_set_input | null), pk_columns: e_team_roster_statuses_pk_columns_input} }) - /** update multiples rows of table: "e_team_roster_statuses" */ - update_e_team_roster_statuses_many?: (e_team_roster_statuses_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_team_roster_statuses_updates[]} }) - /** update data of the table: "e_timeout_settings" */ - update_e_timeout_settings?: (e_timeout_settings_mutation_responseGenqlSelection & { __args: { - /** 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} }) - /** update single row of the table: "e_timeout_settings" */ - update_e_timeout_settings_by_pk?: (e_timeout_settingsGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_timeout_settings_set_input | null), pk_columns: e_timeout_settings_pk_columns_input} }) - /** update multiples rows of table: "e_timeout_settings" */ - update_e_timeout_settings_many?: (e_timeout_settings_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_timeout_settings_updates[]} }) - /** update data of the table: "e_tournament_categories" */ - update_e_tournament_categories?: (e_tournament_categories_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_tournament_categories_set_input | null), - /** filter the rows which have to be updated */ - where: e_tournament_categories_bool_exp} }) - /** update single row of the table: "e_tournament_categories" */ - update_e_tournament_categories_by_pk?: (e_tournament_categoriesGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_tournament_categories_set_input | null), pk_columns: e_tournament_categories_pk_columns_input} }) - /** update multiples rows of table: "e_tournament_categories" */ - update_e_tournament_categories_many?: (e_tournament_categories_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_tournament_categories_updates[]} }) - /** update data of the table: "e_tournament_free_agent_statuses" */ - update_e_tournament_free_agent_statuses?: (e_tournament_free_agent_statuses_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_tournament_free_agent_statuses_set_input | null), - /** filter the rows which have to be updated */ - where: e_tournament_free_agent_statuses_bool_exp} }) - /** update single row of the table: "e_tournament_free_agent_statuses" */ - update_e_tournament_free_agent_statuses_by_pk?: (e_tournament_free_agent_statusesGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_tournament_free_agent_statuses_set_input | null), pk_columns: e_tournament_free_agent_statuses_pk_columns_input} }) - /** update multiples rows of table: "e_tournament_free_agent_statuses" */ - update_e_tournament_free_agent_statuses_many?: (e_tournament_free_agent_statuses_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_tournament_free_agent_statuses_updates[]} }) - /** update data of the table: "e_tournament_registration_types" */ - update_e_tournament_registration_types?: (e_tournament_registration_types_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_tournament_registration_types_set_input | null), - /** filter the rows which have to be updated */ - where: e_tournament_registration_types_bool_exp} }) - /** update single row of the table: "e_tournament_registration_types" */ - update_e_tournament_registration_types_by_pk?: (e_tournament_registration_typesGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_tournament_registration_types_set_input | null), pk_columns: e_tournament_registration_types_pk_columns_input} }) - /** update multiples rows of table: "e_tournament_registration_types" */ - update_e_tournament_registration_types_many?: (e_tournament_registration_types_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_tournament_registration_types_updates[]} }) - /** update data of the table: "e_tournament_stage_types" */ - update_e_tournament_stage_types?: (e_tournament_stage_types_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_tournament_stage_types_set_input | null), - /** filter the rows which have to be updated */ - where: e_tournament_stage_types_bool_exp} }) - /** update single row of the table: "e_tournament_stage_types" */ - update_e_tournament_stage_types_by_pk?: (e_tournament_stage_typesGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_tournament_stage_types_set_input | null), pk_columns: e_tournament_stage_types_pk_columns_input} }) - /** update multiples rows of table: "e_tournament_stage_types" */ - update_e_tournament_stage_types_many?: (e_tournament_stage_types_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_tournament_stage_types_updates[]} }) - /** update data of the table: "e_tournament_status" */ - update_e_tournament_status?: (e_tournament_status_mutation_responseGenqlSelection & { __args: { - /** 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} }) - /** update single row of the table: "e_tournament_status" */ - update_e_tournament_status_by_pk?: (e_tournament_statusGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_tournament_status_set_input | null), pk_columns: e_tournament_status_pk_columns_input} }) - /** update multiples rows of table: "e_tournament_status" */ - update_e_tournament_status_many?: (e_tournament_status_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_tournament_status_updates[]} }) - /** update data of the table: "e_utility_practice_access" */ - update_e_utility_practice_access?: (e_utility_practice_access_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_utility_practice_access_set_input | null), - /** filter the rows which have to be updated */ - where: e_utility_practice_access_bool_exp} }) - /** update single row of the table: "e_utility_practice_access" */ - update_e_utility_practice_access_by_pk?: (e_utility_practice_accessGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_utility_practice_access_set_input | null), pk_columns: e_utility_practice_access_pk_columns_input} }) - /** update multiples rows of table: "e_utility_practice_access" */ - update_e_utility_practice_access_many?: (e_utility_practice_access_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_utility_practice_access_updates[]} }) - /** update data of the table: "e_utility_practice_statuses" */ - update_e_utility_practice_statuses?: (e_utility_practice_statuses_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_utility_practice_statuses_set_input | null), - /** filter the rows which have to be updated */ - where: e_utility_practice_statuses_bool_exp} }) - /** update single row of the table: "e_utility_practice_statuses" */ - update_e_utility_practice_statuses_by_pk?: (e_utility_practice_statusesGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_utility_practice_statuses_set_input | null), pk_columns: e_utility_practice_statuses_pk_columns_input} }) - /** update multiples rows of table: "e_utility_practice_statuses" */ - update_e_utility_practice_statuses_many?: (e_utility_practice_statuses_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_utility_practice_statuses_updates[]} }) - /** update data of the table: "e_utility_sources" */ - update_e_utility_sources?: (e_utility_sources_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_utility_sources_set_input | null), - /** filter the rows which have to be updated */ - where: e_utility_sources_bool_exp} }) - /** update single row of the table: "e_utility_sources" */ - update_e_utility_sources_by_pk?: (e_utility_sourcesGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_utility_sources_set_input | null), pk_columns: e_utility_sources_pk_columns_input} }) - /** update multiples rows of table: "e_utility_sources" */ - update_e_utility_sources_many?: (e_utility_sources_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_utility_sources_updates[]} }) - /** update data of the table: "e_utility_techniques" */ - update_e_utility_techniques?: (e_utility_techniques_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_utility_techniques_set_input | null), - /** filter the rows which have to be updated */ - where: e_utility_techniques_bool_exp} }) - /** update single row of the table: "e_utility_techniques" */ - update_e_utility_techniques_by_pk?: (e_utility_techniquesGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_utility_techniques_set_input | null), pk_columns: e_utility_techniques_pk_columns_input} }) - /** update multiples rows of table: "e_utility_techniques" */ - update_e_utility_techniques_many?: (e_utility_techniques_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_utility_techniques_updates[]} }) - /** update data of the table: "e_utility_throw_strengths" */ - update_e_utility_throw_strengths?: (e_utility_throw_strengths_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_utility_throw_strengths_set_input | null), - /** filter the rows which have to be updated */ - where: e_utility_throw_strengths_bool_exp} }) - /** update single row of the table: "e_utility_throw_strengths" */ - update_e_utility_throw_strengths_by_pk?: (e_utility_throw_strengthsGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_utility_throw_strengths_set_input | null), pk_columns: e_utility_throw_strengths_pk_columns_input} }) - /** update multiples rows of table: "e_utility_throw_strengths" */ - update_e_utility_throw_strengths_many?: (e_utility_throw_strengths_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_utility_throw_strengths_updates[]} }) - /** update data of the table: "e_utility_types" */ - update_e_utility_types?: (e_utility_types_mutation_responseGenqlSelection & { __args: { - /** 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} }) - /** update single row of the table: "e_utility_types" */ - update_e_utility_types_by_pk?: (e_utility_typesGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_utility_types_set_input | null), pk_columns: e_utility_types_pk_columns_input} }) - /** update multiples rows of table: "e_utility_types" */ - update_e_utility_types_many?: (e_utility_types_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_utility_types_updates[]} }) - /** update data of the table: "e_utility_visibility" */ - update_e_utility_visibility?: (e_utility_visibility_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_utility_visibility_set_input | null), - /** filter the rows which have to be updated */ - where: e_utility_visibility_bool_exp} }) - /** update single row of the table: "e_utility_visibility" */ - update_e_utility_visibility_by_pk?: (e_utility_visibilityGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_utility_visibility_set_input | null), pk_columns: e_utility_visibility_pk_columns_input} }) - /** update multiples rows of table: "e_utility_visibility" */ - update_e_utility_visibility_many?: (e_utility_visibility_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_utility_visibility_updates[]} }) - /** update data of the table: "e_veto_pick_types" */ - update_e_veto_pick_types?: (e_veto_pick_types_mutation_responseGenqlSelection & { __args: { - /** 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} }) - /** update single row of the table: "e_veto_pick_types" */ - update_e_veto_pick_types_by_pk?: (e_veto_pick_typesGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_veto_pick_types_set_input | null), pk_columns: e_veto_pick_types_pk_columns_input} }) - /** update multiples rows of table: "e_veto_pick_types" */ - update_e_veto_pick_types_many?: (e_veto_pick_types_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_veto_pick_types_updates[]} }) - /** update data of the table: "e_winning_reasons" */ - update_e_winning_reasons?: (e_winning_reasons_mutation_responseGenqlSelection & { __args: { - /** 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} }) - /** update single row of the table: "e_winning_reasons" */ - update_e_winning_reasons_by_pk?: (e_winning_reasonsGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (e_winning_reasons_set_input | null), pk_columns: e_winning_reasons_pk_columns_input} }) - /** update multiples rows of table: "e_winning_reasons" */ - update_e_winning_reasons_many?: (e_winning_reasons_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: e_winning_reasons_updates[]} }) - /** update data of the table: "event_match_links" */ - update_event_match_links?: (event_match_links_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (event_match_links_set_input | null), - /** filter the rows which have to be updated */ - where: event_match_links_bool_exp} }) - /** update single row of the table: "event_match_links" */ - update_event_match_links_by_pk?: (event_match_linksGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (event_match_links_set_input | null), pk_columns: event_match_links_pk_columns_input} }) - /** update multiples rows of table: "event_match_links" */ - update_event_match_links_many?: (event_match_links_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: event_match_links_updates[]} }) - /** update data of the table: "event_media" */ - update_event_media?: (event_media_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (event_media_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (event_media_set_input | null), - /** filter the rows which have to be updated */ - where: event_media_bool_exp} }) - /** update single row of the table: "event_media" */ - update_event_media_by_pk?: (event_mediaGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (event_media_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (event_media_set_input | null), pk_columns: event_media_pk_columns_input} }) - /** update multiples rows of table: "event_media" */ - update_event_media_many?: (event_media_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: event_media_updates[]} }) - /** update data of the table: "event_media_players" */ - update_event_media_players?: (event_media_players_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (event_media_players_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (event_media_players_set_input | null), - /** filter the rows which have to be updated */ - where: event_media_players_bool_exp} }) - /** update single row of the table: "event_media_players" */ - update_event_media_players_by_pk?: (event_media_playersGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (event_media_players_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (event_media_players_set_input | null), pk_columns: event_media_players_pk_columns_input} }) - /** update multiples rows of table: "event_media_players" */ - update_event_media_players_many?: (event_media_players_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: event_media_players_updates[]} }) - /** update data of the table: "event_organizers" */ - update_event_organizers?: (event_organizers_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (event_organizers_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (event_organizers_set_input | null), - /** filter the rows which have to be updated */ - where: event_organizers_bool_exp} }) - /** update single row of the table: "event_organizers" */ - update_event_organizers_by_pk?: (event_organizersGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (event_organizers_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (event_organizers_set_input | null), pk_columns: event_organizers_pk_columns_input} }) - /** update multiples rows of table: "event_organizers" */ - update_event_organizers_many?: (event_organizers_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: event_organizers_updates[]} }) - /** update data of the table: "event_players" */ - update_event_players?: (event_players_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (event_players_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (event_players_set_input | null), - /** filter the rows which have to be updated */ - where: event_players_bool_exp} }) - /** update single row of the table: "event_players" */ - update_event_players_by_pk?: (event_playersGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (event_players_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (event_players_set_input | null), pk_columns: event_players_pk_columns_input} }) - /** update multiples rows of table: "event_players" */ - update_event_players_many?: (event_players_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: event_players_updates[]} }) - /** update data of the table: "event_teams" */ - update_event_teams?: (event_teams_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (event_teams_set_input | null), - /** filter the rows which have to be updated */ - where: event_teams_bool_exp} }) - /** update single row of the table: "event_teams" */ - update_event_teams_by_pk?: (event_teamsGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (event_teams_set_input | null), pk_columns: event_teams_pk_columns_input} }) - /** update multiples rows of table: "event_teams" */ - update_event_teams_many?: (event_teams_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: event_teams_updates[]} }) - /** update data of the table: "event_tournaments" */ - update_event_tournaments?: (event_tournaments_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (event_tournaments_set_input | null), - /** filter the rows which have to be updated */ - where: event_tournaments_bool_exp} }) - /** update single row of the table: "event_tournaments" */ - update_event_tournaments_by_pk?: (event_tournamentsGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (event_tournaments_set_input | null), pk_columns: event_tournaments_pk_columns_input} }) - /** update multiples rows of table: "event_tournaments" */ - update_event_tournaments_many?: (event_tournaments_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: event_tournaments_updates[]} }) - /** update data of the table: "events" */ - update_events?: (events_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (events_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (events_set_input | null), - /** filter the rows which have to be updated */ - where: events_bool_exp} }) - /** update single row of the table: "events" */ - update_events_by_pk?: (eventsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (events_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (events_set_input | null), pk_columns: events_pk_columns_input} }) - /** update multiples rows of table: "events" */ - update_events_many?: (events_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: events_updates[]} }) - /** update data of the table: "friends" */ - update_friends?: (friends_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (friends_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (friends_set_input | null), - /** filter the rows which have to be updated */ - where: friends_bool_exp} }) - /** update single row of the table: "friends" */ - update_friends_by_pk?: (friendsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (friends_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (friends_set_input | null), pk_columns: friends_pk_columns_input} }) - /** update multiples rows of table: "friends" */ - update_friends_many?: (friends_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: friends_updates[]} }) - /** update data of the table: "game_mode_plugins" */ - update_game_mode_plugins?: (game_mode_plugins_mutation_responseGenqlSelection & { __args: { - /** append existing jsonb value of filtered columns with new jsonb value */ - _append?: (game_mode_plugins_append_input | null), - /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ - _delete_at_path?: (game_mode_plugins_delete_at_path_input | null), - /** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */ - _delete_elem?: (game_mode_plugins_delete_elem_input | null), - /** delete key/value pair or string element. key/value pairs are matched based on their key value */ - _delete_key?: (game_mode_plugins_delete_key_input | null), - /** increments the numeric columns with given value of the filtered values */ - _inc?: (game_mode_plugins_inc_input | null), - /** prepend existing jsonb value of filtered columns with new jsonb value */ - _prepend?: (game_mode_plugins_prepend_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (game_mode_plugins_set_input | null), - /** filter the rows which have to be updated */ - where: game_mode_plugins_bool_exp} }) - /** update single row of the table: "game_mode_plugins" */ - update_game_mode_plugins_by_pk?: (game_mode_pluginsGenqlSelection & { __args: { - /** append existing jsonb value of filtered columns with new jsonb value */ - _append?: (game_mode_plugins_append_input | null), - /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ - _delete_at_path?: (game_mode_plugins_delete_at_path_input | null), - /** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */ - _delete_elem?: (game_mode_plugins_delete_elem_input | null), - /** delete key/value pair or string element. key/value pairs are matched based on their key value */ - _delete_key?: (game_mode_plugins_delete_key_input | null), - /** increments the numeric columns with given value of the filtered values */ - _inc?: (game_mode_plugins_inc_input | null), - /** prepend existing jsonb value of filtered columns with new jsonb value */ - _prepend?: (game_mode_plugins_prepend_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (game_mode_plugins_set_input | null), pk_columns: game_mode_plugins_pk_columns_input} }) - /** update multiples rows of table: "game_mode_plugins" */ - update_game_mode_plugins_many?: (game_mode_plugins_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: game_mode_plugins_updates[]} }) - /** update data of the table: "game_modes" */ - update_game_modes?: (game_modes_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (game_modes_set_input | null), - /** filter the rows which have to be updated */ - where: game_modes_bool_exp} }) - /** update single row of the table: "game_modes" */ - update_game_modes_by_pk?: (game_modesGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (game_modes_set_input | null), pk_columns: game_modes_pk_columns_input} }) - /** update multiples rows of table: "game_modes" */ - update_game_modes_many?: (game_modes_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: game_modes_updates[]} }) - /** update data of the table: "game_plugin_installs" */ - update_game_plugin_installs?: (game_plugin_installs_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (game_plugin_installs_set_input | null), - /** filter the rows which have to be updated */ - where: game_plugin_installs_bool_exp} }) - /** update single row of the table: "game_plugin_installs" */ - update_game_plugin_installs_by_pk?: (game_plugin_installsGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (game_plugin_installs_set_input | null), pk_columns: game_plugin_installs_pk_columns_input} }) - /** update multiples rows of table: "game_plugin_installs" */ - update_game_plugin_installs_many?: (game_plugin_installs_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: game_plugin_installs_updates[]} }) - /** update data of the table: "game_plugin_versions" */ - update_game_plugin_versions?: (game_plugin_versions_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (game_plugin_versions_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (game_plugin_versions_set_input | null), - /** filter the rows which have to be updated */ - where: game_plugin_versions_bool_exp} }) - /** update single row of the table: "game_plugin_versions" */ - update_game_plugin_versions_by_pk?: (game_plugin_versionsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (game_plugin_versions_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (game_plugin_versions_set_input | null), pk_columns: game_plugin_versions_pk_columns_input} }) - /** update multiples rows of table: "game_plugin_versions" */ - update_game_plugin_versions_many?: (game_plugin_versions_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: game_plugin_versions_updates[]} }) - /** update data of the table: "game_plugins" */ - update_game_plugins?: (game_plugins_mutation_responseGenqlSelection & { __args: { - /** append existing jsonb value of filtered columns with new jsonb value */ - _append?: (game_plugins_append_input | null), - /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ - _delete_at_path?: (game_plugins_delete_at_path_input | null), - /** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */ - _delete_elem?: (game_plugins_delete_elem_input | null), - /** delete key/value pair or string element. key/value pairs are matched based on their key value */ - _delete_key?: (game_plugins_delete_key_input | null), - /** prepend existing jsonb value of filtered columns with new jsonb value */ - _prepend?: (game_plugins_prepend_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (game_plugins_set_input | null), - /** filter the rows which have to be updated */ - where: game_plugins_bool_exp} }) - /** update single row of the table: "game_plugins" */ - update_game_plugins_by_pk?: (game_pluginsGenqlSelection & { __args: { - /** append existing jsonb value of filtered columns with new jsonb value */ - _append?: (game_plugins_append_input | null), - /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ - _delete_at_path?: (game_plugins_delete_at_path_input | null), - /** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */ - _delete_elem?: (game_plugins_delete_elem_input | null), - /** delete key/value pair or string element. key/value pairs are matched based on their key value */ - _delete_key?: (game_plugins_delete_key_input | null), - /** prepend existing jsonb value of filtered columns with new jsonb value */ - _prepend?: (game_plugins_prepend_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (game_plugins_set_input | null), pk_columns: game_plugins_pk_columns_input} }) - /** update multiples rows of table: "game_plugins" */ - update_game_plugins_many?: (game_plugins_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: game_plugins_updates[]} }) - /** update data of the table: "game_server_node_plugins" */ - update_game_server_node_plugins?: (game_server_node_plugins_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (game_server_node_plugins_set_input | null), - /** filter the rows which have to be updated */ - where: game_server_node_plugins_bool_exp} }) - /** update single row of the table: "game_server_node_plugins" */ - update_game_server_node_plugins_by_pk?: (game_server_node_pluginsGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (game_server_node_plugins_set_input | null), pk_columns: game_server_node_plugins_pk_columns_input} }) - /** update multiples rows of table: "game_server_node_plugins" */ - update_game_server_node_plugins_many?: (game_server_node_plugins_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: game_server_node_plugins_updates[]} }) - /** update data of the table: "game_server_nodes" */ - update_game_server_nodes?: (game_server_nodes_mutation_responseGenqlSelection & { __args: { - /** append existing jsonb value of filtered columns with new jsonb value */ - _append?: (game_server_nodes_append_input | null), - /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ - _delete_at_path?: (game_server_nodes_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_server_nodes_delete_elem_input | null), - /** delete key/value pair or string element. key/value pairs are matched based on their key value */ - _delete_key?: (game_server_nodes_delete_key_input | null), - /** increments the numeric columns with given value of the filtered values */ - _inc?: (game_server_nodes_inc_input | null), - /** prepend existing jsonb value of filtered columns with new jsonb value */ - _prepend?: (game_server_nodes_prepend_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (game_server_nodes_set_input | null), - /** filter the rows which have to be updated */ - where: game_server_nodes_bool_exp} }) - /** update single row of the table: "game_server_nodes" */ - update_game_server_nodes_by_pk?: (game_server_nodesGenqlSelection & { __args: { - /** append existing jsonb value of filtered columns with new jsonb value */ - _append?: (game_server_nodes_append_input | null), - /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ - _delete_at_path?: (game_server_nodes_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_server_nodes_delete_elem_input | null), - /** delete key/value pair or string element. key/value pairs are matched based on their key value */ - _delete_key?: (game_server_nodes_delete_key_input | null), - /** increments the numeric columns with given value of the filtered values */ - _inc?: (game_server_nodes_inc_input | null), - /** prepend existing jsonb value of filtered columns with new jsonb value */ - _prepend?: (game_server_nodes_prepend_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (game_server_nodes_set_input | null), pk_columns: game_server_nodes_pk_columns_input} }) - /** update multiples rows of table: "game_server_nodes" */ - update_game_server_nodes_many?: (game_server_nodes_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: game_server_nodes_updates[]} }) - /** update data of the table: "game_versions" */ - update_game_versions?: (game_versions_mutation_responseGenqlSelection & { __args: { - /** append existing jsonb value of filtered columns with new jsonb value */ - _append?: (game_versions_append_input | null), - /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ - _delete_at_path?: (game_versions_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_versions_delete_elem_input | null), - /** delete key/value pair or string element. key/value pairs are matched based on their key value */ - _delete_key?: (game_versions_delete_key_input | null), - /** increments the numeric columns with given value of the filtered values */ - _inc?: (game_versions_inc_input | null), - /** prepend existing jsonb value of filtered columns with new jsonb value */ - _prepend?: (game_versions_prepend_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (game_versions_set_input | null), - /** filter the rows which have to be updated */ - where: game_versions_bool_exp} }) - /** update single row of the table: "game_versions" */ - update_game_versions_by_pk?: (game_versionsGenqlSelection & { __args: { - /** append existing jsonb value of filtered columns with new jsonb value */ - _append?: (game_versions_append_input | null), - /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ - _delete_at_path?: (game_versions_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_versions_delete_elem_input | null), - /** delete key/value pair or string element. key/value pairs are matched based on their key value */ - _delete_key?: (game_versions_delete_key_input | null), - /** increments the numeric columns with given value of the filtered values */ - _inc?: (game_versions_inc_input | null), - /** prepend existing jsonb value of filtered columns with new jsonb value */ - _prepend?: (game_versions_prepend_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (game_versions_set_input | null), pk_columns: game_versions_pk_columns_input} }) - /** update multiples rows of table: "game_versions" */ - update_game_versions_many?: (game_versions_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: game_versions_updates[]} }) - /** update data of the table: "gamedata_signature_validations" */ - update_gamedata_signature_validations?: (gamedata_signature_validations_mutation_responseGenqlSelection & { __args: { - /** append existing jsonb value of filtered columns with new jsonb value */ - _append?: (gamedata_signature_validations_append_input | null), - /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ - _delete_at_path?: (gamedata_signature_validations_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?: (gamedata_signature_validations_delete_elem_input | null), - /** delete key/value pair or string element. key/value pairs are matched based on their key value */ - _delete_key?: (gamedata_signature_validations_delete_key_input | null), - /** increments the numeric columns with given value of the filtered values */ - _inc?: (gamedata_signature_validations_inc_input | null), - /** prepend existing jsonb value of filtered columns with new jsonb value */ - _prepend?: (gamedata_signature_validations_prepend_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (gamedata_signature_validations_set_input | null), - /** filter the rows which have to be updated */ - where: gamedata_signature_validations_bool_exp} }) - /** update single row of the table: "gamedata_signature_validations" */ - update_gamedata_signature_validations_by_pk?: (gamedata_signature_validationsGenqlSelection & { __args: { - /** append existing jsonb value of filtered columns with new jsonb value */ - _append?: (gamedata_signature_validations_append_input | null), - /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ - _delete_at_path?: (gamedata_signature_validations_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?: (gamedata_signature_validations_delete_elem_input | null), - /** delete key/value pair or string element. key/value pairs are matched based on their key value */ - _delete_key?: (gamedata_signature_validations_delete_key_input | null), - /** increments the numeric columns with given value of the filtered values */ - _inc?: (gamedata_signature_validations_inc_input | null), - /** prepend existing jsonb value of filtered columns with new jsonb value */ - _prepend?: (gamedata_signature_validations_prepend_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (gamedata_signature_validations_set_input | null), pk_columns: gamedata_signature_validations_pk_columns_input} }) - /** update multiples rows of table: "gamedata_signature_validations" */ - update_gamedata_signature_validations_many?: (gamedata_signature_validations_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: gamedata_signature_validations_updates[]} }) - /** update data of the table: "leaderboard_entries" */ - update_leaderboard_entries?: (leaderboard_entries_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (leaderboard_entries_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (leaderboard_entries_set_input | null), - /** filter the rows which have to be updated */ - where: leaderboard_entries_bool_exp} }) - /** update multiples rows of table: "leaderboard_entries" */ - update_leaderboard_entries_many?: (leaderboard_entries_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: leaderboard_entries_updates[]} }) - /** update data of the table: "league_divisions" */ - update_league_divisions?: (league_divisions_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (league_divisions_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (league_divisions_set_input | null), - /** filter the rows which have to be updated */ - where: league_divisions_bool_exp} }) - /** update single row of the table: "league_divisions" */ - update_league_divisions_by_pk?: (league_divisionsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (league_divisions_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (league_divisions_set_input | null), pk_columns: league_divisions_pk_columns_input} }) - /** update multiples rows of table: "league_divisions" */ - update_league_divisions_many?: (league_divisions_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: league_divisions_updates[]} }) - /** update data of the table: "league_match_weeks" */ - update_league_match_weeks?: (league_match_weeks_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (league_match_weeks_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (league_match_weeks_set_input | null), - /** filter the rows which have to be updated */ - where: league_match_weeks_bool_exp} }) - /** update single row of the table: "league_match_weeks" */ - update_league_match_weeks_by_pk?: (league_match_weeksGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (league_match_weeks_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (league_match_weeks_set_input | null), pk_columns: league_match_weeks_pk_columns_input} }) - /** update multiples rows of table: "league_match_weeks" */ - update_league_match_weeks_many?: (league_match_weeks_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: league_match_weeks_updates[]} }) - /** update data of the table: "league_relegation_playoffs" */ - update_league_relegation_playoffs?: (league_relegation_playoffs_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (league_relegation_playoffs_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (league_relegation_playoffs_set_input | null), - /** filter the rows which have to be updated */ - where: league_relegation_playoffs_bool_exp} }) - /** update single row of the table: "league_relegation_playoffs" */ - update_league_relegation_playoffs_by_pk?: (league_relegation_playoffsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (league_relegation_playoffs_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (league_relegation_playoffs_set_input | null), pk_columns: league_relegation_playoffs_pk_columns_input} }) - /** update multiples rows of table: "league_relegation_playoffs" */ - update_league_relegation_playoffs_many?: (league_relegation_playoffs_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: league_relegation_playoffs_updates[]} }) - /** update data of the table: "league_scheduling_proposals" */ - update_league_scheduling_proposals?: (league_scheduling_proposals_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (league_scheduling_proposals_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (league_scheduling_proposals_set_input | null), - /** filter the rows which have to be updated */ - where: league_scheduling_proposals_bool_exp} }) - /** update single row of the table: "league_scheduling_proposals" */ - update_league_scheduling_proposals_by_pk?: (league_scheduling_proposalsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (league_scheduling_proposals_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (league_scheduling_proposals_set_input | null), pk_columns: league_scheduling_proposals_pk_columns_input} }) - /** update multiples rows of table: "league_scheduling_proposals" */ - update_league_scheduling_proposals_many?: (league_scheduling_proposals_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: league_scheduling_proposals_updates[]} }) - /** update data of the table: "league_season_divisions" */ - update_league_season_divisions?: (league_season_divisions_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (league_season_divisions_set_input | null), - /** filter the rows which have to be updated */ - where: league_season_divisions_bool_exp} }) - /** update single row of the table: "league_season_divisions" */ - update_league_season_divisions_by_pk?: (league_season_divisionsGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (league_season_divisions_set_input | null), pk_columns: league_season_divisions_pk_columns_input} }) - /** update multiples rows of table: "league_season_divisions" */ - update_league_season_divisions_many?: (league_season_divisions_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: league_season_divisions_updates[]} }) - /** update data of the table: "league_seasons" */ - update_league_seasons?: (league_seasons_mutation_responseGenqlSelection & { __args: { - /** append existing jsonb value of filtered columns with new jsonb value */ - _append?: (league_seasons_append_input | null), - /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ - _delete_at_path?: (league_seasons_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?: (league_seasons_delete_elem_input | null), - /** delete key/value pair or string element. key/value pairs are matched based on their key value */ - _delete_key?: (league_seasons_delete_key_input | null), - /** increments the numeric columns with given value of the filtered values */ - _inc?: (league_seasons_inc_input | null), - /** prepend existing jsonb value of filtered columns with new jsonb value */ - _prepend?: (league_seasons_prepend_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (league_seasons_set_input | null), - /** filter the rows which have to be updated */ - where: league_seasons_bool_exp} }) - /** update single row of the table: "league_seasons" */ - update_league_seasons_by_pk?: (league_seasonsGenqlSelection & { __args: { - /** append existing jsonb value of filtered columns with new jsonb value */ - _append?: (league_seasons_append_input | null), - /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ - _delete_at_path?: (league_seasons_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?: (league_seasons_delete_elem_input | null), - /** delete key/value pair or string element. key/value pairs are matched based on their key value */ - _delete_key?: (league_seasons_delete_key_input | null), - /** increments the numeric columns with given value of the filtered values */ - _inc?: (league_seasons_inc_input | null), - /** prepend existing jsonb value of filtered columns with new jsonb value */ - _prepend?: (league_seasons_prepend_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (league_seasons_set_input | null), pk_columns: league_seasons_pk_columns_input} }) - /** update multiples rows of table: "league_seasons" */ - update_league_seasons_many?: (league_seasons_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: league_seasons_updates[]} }) - /** update data of the table: "league_team_movements" */ - update_league_team_movements?: (league_team_movements_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (league_team_movements_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (league_team_movements_set_input | null), - /** filter the rows which have to be updated */ - where: league_team_movements_bool_exp} }) - /** update single row of the table: "league_team_movements" */ - update_league_team_movements_by_pk?: (league_team_movementsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (league_team_movements_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (league_team_movements_set_input | null), pk_columns: league_team_movements_pk_columns_input} }) - /** update multiples rows of table: "league_team_movements" */ - update_league_team_movements_many?: (league_team_movements_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: league_team_movements_updates[]} }) - /** update data of the table: "league_team_rosters" */ - update_league_team_rosters?: (league_team_rosters_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (league_team_rosters_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (league_team_rosters_set_input | null), - /** filter the rows which have to be updated */ - where: league_team_rosters_bool_exp} }) - /** update single row of the table: "league_team_rosters" */ - update_league_team_rosters_by_pk?: (league_team_rostersGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (league_team_rosters_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (league_team_rosters_set_input | null), pk_columns: league_team_rosters_pk_columns_input} }) - /** update multiples rows of table: "league_team_rosters" */ - update_league_team_rosters_many?: (league_team_rosters_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: league_team_rosters_updates[]} }) - /** update data of the table: "league_team_seasons" */ - update_league_team_seasons?: (league_team_seasons_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (league_team_seasons_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (league_team_seasons_set_input | null), - /** filter the rows which have to be updated */ - where: league_team_seasons_bool_exp} }) - /** update single row of the table: "league_team_seasons" */ - update_league_team_seasons_by_pk?: (league_team_seasonsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (league_team_seasons_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (league_team_seasons_set_input | null), pk_columns: league_team_seasons_pk_columns_input} }) - /** update multiples rows of table: "league_team_seasons" */ - update_league_team_seasons_many?: (league_team_seasons_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: league_team_seasons_updates[]} }) - /** update data of the table: "league_teams" */ - update_league_teams?: (league_teams_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (league_teams_set_input | null), - /** filter the rows which have to be updated */ - where: league_teams_bool_exp} }) - /** update single row of the table: "league_teams" */ - update_league_teams_by_pk?: (league_teamsGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (league_teams_set_input | null), pk_columns: league_teams_pk_columns_input} }) - /** update multiples rows of table: "league_teams" */ - update_league_teams_many?: (league_teams_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: league_teams_updates[]} }) - /** update data of the table: "lobbies" */ - update_lobbies?: (lobbies_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (lobbies_set_input | null), - /** filter the rows which have to be updated */ - where: lobbies_bool_exp} }) - /** update single row of the table: "lobbies" */ - update_lobbies_by_pk?: (lobbiesGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (lobbies_set_input | null), pk_columns: lobbies_pk_columns_input} }) - /** update multiples rows of table: "lobbies" */ - update_lobbies_many?: (lobbies_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: lobbies_updates[]} }) - /** update data of the table: "lobby_players" */ - update_lobby_players?: (lobby_players_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (lobby_players_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (lobby_players_set_input | null), - /** filter the rows which have to be updated */ - where: lobby_players_bool_exp} }) - /** update single row of the table: "lobby_players" */ - update_lobby_players_by_pk?: (lobby_playersGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (lobby_players_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (lobby_players_set_input | null), pk_columns: lobby_players_pk_columns_input} }) - /** update multiples rows of table: "lobby_players" */ - update_lobby_players_many?: (lobby_players_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: lobby_players_updates[]} }) - /** update data of the table: "map_callouts" */ - update_map_callouts?: (map_callouts_mutation_responseGenqlSelection & { __args: { - /** append existing jsonb value of filtered columns with new jsonb value */ - _append?: (map_callouts_append_input | null), - /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ - _delete_at_path?: (map_callouts_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?: (map_callouts_delete_elem_input | null), - /** delete key/value pair or string element. key/value pairs are matched based on their key value */ - _delete_key?: (map_callouts_delete_key_input | null), - /** prepend existing jsonb value of filtered columns with new jsonb value */ - _prepend?: (map_callouts_prepend_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (map_callouts_set_input | null), - /** filter the rows which have to be updated */ - where: map_callouts_bool_exp} }) - /** update single row of the table: "map_callouts" */ - update_map_callouts_by_pk?: (map_calloutsGenqlSelection & { __args: { - /** append existing jsonb value of filtered columns with new jsonb value */ - _append?: (map_callouts_append_input | null), - /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ - _delete_at_path?: (map_callouts_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?: (map_callouts_delete_elem_input | null), - /** delete key/value pair or string element. key/value pairs are matched based on their key value */ - _delete_key?: (map_callouts_delete_key_input | null), - /** prepend existing jsonb value of filtered columns with new jsonb value */ - _prepend?: (map_callouts_prepend_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (map_callouts_set_input | null), pk_columns: map_callouts_pk_columns_input} }) - /** update multiples rows of table: "map_callouts" */ - update_map_callouts_many?: (map_callouts_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: map_callouts_updates[]} }) - /** update data of the table: "map_pools" */ - update_map_pools?: (map_pools_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (map_pools_set_input | null), - /** filter the rows which have to be updated */ - where: map_pools_bool_exp} }) - /** update single row of the table: "map_pools" */ - update_map_pools_by_pk?: (map_poolsGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (map_pools_set_input | null), pk_columns: map_pools_pk_columns_input} }) - /** update multiples rows of table: "map_pools" */ - update_map_pools_many?: (map_pools_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: map_pools_updates[]} }) - /** update data of the table: "maps" */ - update_maps?: (maps_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (maps_set_input | null), - /** filter the rows which have to be updated */ - where: maps_bool_exp} }) - /** update single row of the table: "maps" */ - update_maps_by_pk?: (mapsGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (maps_set_input | null), pk_columns: maps_pk_columns_input} }) - /** update multiples rows of table: "maps" */ - update_maps_many?: (maps_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: maps_updates[]} }) - /** update data of the table: "match_clips" */ - update_match_clips?: (match_clips_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (match_clips_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (match_clips_set_input | null), - /** filter the rows which have to be updated */ - where: match_clips_bool_exp} }) - /** update single row of the table: "match_clips" */ - update_match_clips_by_pk?: (match_clipsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (match_clips_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (match_clips_set_input | null), pk_columns: match_clips_pk_columns_input} }) - /** update multiples rows of table: "match_clips" */ - update_match_clips_many?: (match_clips_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: match_clips_updates[]} }) - /** update data of the table: "match_demo_sessions" */ - update_match_demo_sessions?: (match_demo_sessions_mutation_responseGenqlSelection & { __args: { - /** append existing jsonb value of filtered columns with new jsonb value */ - _append?: (match_demo_sessions_append_input | null), - /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ - _delete_at_path?: (match_demo_sessions_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?: (match_demo_sessions_delete_elem_input | null), - /** delete key/value pair or string element. key/value pairs are matched based on their key value */ - _delete_key?: (match_demo_sessions_delete_key_input | null), - /** increments the numeric columns with given value of the filtered values */ - _inc?: (match_demo_sessions_inc_input | null), - /** prepend existing jsonb value of filtered columns with new jsonb value */ - _prepend?: (match_demo_sessions_prepend_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (match_demo_sessions_set_input | null), - /** filter the rows which have to be updated */ - where: match_demo_sessions_bool_exp} }) - /** update single row of the table: "match_demo_sessions" */ - update_match_demo_sessions_by_pk?: (match_demo_sessionsGenqlSelection & { __args: { - /** append existing jsonb value of filtered columns with new jsonb value */ - _append?: (match_demo_sessions_append_input | null), - /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ - _delete_at_path?: (match_demo_sessions_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?: (match_demo_sessions_delete_elem_input | null), - /** delete key/value pair or string element. key/value pairs are matched based on their key value */ - _delete_key?: (match_demo_sessions_delete_key_input | null), - /** increments the numeric columns with given value of the filtered values */ - _inc?: (match_demo_sessions_inc_input | null), - /** prepend existing jsonb value of filtered columns with new jsonb value */ - _prepend?: (match_demo_sessions_prepend_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (match_demo_sessions_set_input | null), pk_columns: match_demo_sessions_pk_columns_input} }) - /** update multiples rows of table: "match_demo_sessions" */ - update_match_demo_sessions_many?: (match_demo_sessions_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: match_demo_sessions_updates[]} }) - /** update data of the table: "match_lineup_players" */ - update_match_lineup_players?: (match_lineup_players_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (match_lineup_players_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (match_lineup_players_set_input | null), - /** filter the rows which have to be updated */ - where: match_lineup_players_bool_exp} }) - /** update single row of the table: "match_lineup_players" */ - update_match_lineup_players_by_pk?: (match_lineup_playersGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (match_lineup_players_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (match_lineup_players_set_input | null), pk_columns: match_lineup_players_pk_columns_input} }) - /** update multiples rows of table: "match_lineup_players" */ - update_match_lineup_players_many?: (match_lineup_players_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: match_lineup_players_updates[]} }) - /** update data of the table: "match_lineups" */ - update_match_lineups?: (match_lineups_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (match_lineups_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (match_lineups_set_input | null), - /** filter the rows which have to be updated */ - where: match_lineups_bool_exp} }) - /** update single row of the table: "match_lineups" */ - update_match_lineups_by_pk?: (match_lineupsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (match_lineups_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (match_lineups_set_input | null), pk_columns: match_lineups_pk_columns_input} }) - /** update multiples rows of table: "match_lineups" */ - update_match_lineups_many?: (match_lineups_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: match_lineups_updates[]} }) - /** update data of the table: "match_map_demos" */ - update_match_map_demos?: (match_map_demos_mutation_responseGenqlSelection & { __args: { - /** append existing jsonb value of filtered columns with new jsonb value */ - _append?: (match_map_demos_append_input | null), - /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ - _delete_at_path?: (match_map_demos_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?: (match_map_demos_delete_elem_input | null), - /** delete key/value pair or string element. key/value pairs are matched based on their key value */ - _delete_key?: (match_map_demos_delete_key_input | null), - /** increments the numeric columns with given value of the filtered values */ - _inc?: (match_map_demos_inc_input | null), - /** prepend existing jsonb value of filtered columns with new jsonb value */ - _prepend?: (match_map_demos_prepend_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (match_map_demos_set_input | null), - /** filter the rows which have to be updated */ - where: match_map_demos_bool_exp} }) - /** update single row of the table: "match_map_demos" */ - update_match_map_demos_by_pk?: (match_map_demosGenqlSelection & { __args: { - /** append existing jsonb value of filtered columns with new jsonb value */ - _append?: (match_map_demos_append_input | null), - /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ - _delete_at_path?: (match_map_demos_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?: (match_map_demos_delete_elem_input | null), - /** delete key/value pair or string element. key/value pairs are matched based on their key value */ - _delete_key?: (match_map_demos_delete_key_input | null), - /** increments the numeric columns with given value of the filtered values */ - _inc?: (match_map_demos_inc_input | null), - /** prepend existing jsonb value of filtered columns with new jsonb value */ - _prepend?: (match_map_demos_prepend_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (match_map_demos_set_input | null), pk_columns: match_map_demos_pk_columns_input} }) - /** update multiples rows of table: "match_map_demos" */ - update_match_map_demos_many?: (match_map_demos_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: match_map_demos_updates[]} }) - /** update data of the table: "match_map_rounds" */ - update_match_map_rounds?: (match_map_rounds_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (match_map_rounds_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (match_map_rounds_set_input | null), - /** filter the rows which have to be updated */ - where: match_map_rounds_bool_exp} }) - /** update single row of the table: "match_map_rounds" */ - update_match_map_rounds_by_pk?: (match_map_roundsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (match_map_rounds_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (match_map_rounds_set_input | null), pk_columns: match_map_rounds_pk_columns_input} }) - /** update multiples rows of table: "match_map_rounds" */ - update_match_map_rounds_many?: (match_map_rounds_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: match_map_rounds_updates[]} }) - /** update data of the table: "match_map_veto_picks" */ - update_match_map_veto_picks?: (match_map_veto_picks_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (match_map_veto_picks_set_input | null), - /** filter the rows which have to be updated */ - where: match_map_veto_picks_bool_exp} }) - /** update single row of the table: "match_map_veto_picks" */ - update_match_map_veto_picks_by_pk?: (match_map_veto_picksGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (match_map_veto_picks_set_input | null), pk_columns: match_map_veto_picks_pk_columns_input} }) - /** update multiples rows of table: "match_map_veto_picks" */ - update_match_map_veto_picks_many?: (match_map_veto_picks_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: match_map_veto_picks_updates[]} }) - /** update data of the table: "match_maps" */ - update_match_maps?: (match_maps_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (match_maps_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (match_maps_set_input | null), - /** filter the rows which have to be updated */ - where: match_maps_bool_exp} }) - /** update single row of the table: "match_maps" */ - update_match_maps_by_pk?: (match_mapsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (match_maps_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (match_maps_set_input | null), pk_columns: match_maps_pk_columns_input} }) - /** update multiples rows of table: "match_maps" */ - update_match_maps_many?: (match_maps_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: match_maps_updates[]} }) - /** update data of the table: "match_options" */ - update_match_options?: (match_options_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (match_options_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (match_options_set_input | null), - /** filter the rows which have to be updated */ - where: match_options_bool_exp} }) - /** update single row of the table: "match_options" */ - update_match_options_by_pk?: (match_optionsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (match_options_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (match_options_set_input | null), pk_columns: match_options_pk_columns_input} }) - /** update multiples rows of table: "match_options" */ - update_match_options_many?: (match_options_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: match_options_updates[]} }) - /** update data of the table: "match_region_veto_picks" */ - update_match_region_veto_picks?: (match_region_veto_picks_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (match_region_veto_picks_set_input | null), - /** filter the rows which have to be updated */ - where: match_region_veto_picks_bool_exp} }) - /** update single row of the table: "match_region_veto_picks" */ - update_match_region_veto_picks_by_pk?: (match_region_veto_picksGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (match_region_veto_picks_set_input | null), pk_columns: match_region_veto_picks_pk_columns_input} }) - /** update multiples rows of table: "match_region_veto_picks" */ - update_match_region_veto_picks_many?: (match_region_veto_picks_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: match_region_veto_picks_updates[]} }) - /** update data of the table: "match_streams" */ - update_match_streams?: (match_streams_mutation_responseGenqlSelection & { __args: { - /** append existing jsonb value of filtered columns with new jsonb value */ - _append?: (match_streams_append_input | null), - /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ - _delete_at_path?: (match_streams_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?: (match_streams_delete_elem_input | null), - /** delete key/value pair or string element. key/value pairs are matched based on their key value */ - _delete_key?: (match_streams_delete_key_input | null), - /** increments the numeric columns with given value of the filtered values */ - _inc?: (match_streams_inc_input | null), - /** prepend existing jsonb value of filtered columns with new jsonb value */ - _prepend?: (match_streams_prepend_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (match_streams_set_input | null), - /** filter the rows which have to be updated */ - where: match_streams_bool_exp} }) - /** update single row of the table: "match_streams" */ - update_match_streams_by_pk?: (match_streamsGenqlSelection & { __args: { - /** append existing jsonb value of filtered columns with new jsonb value */ - _append?: (match_streams_append_input | null), - /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ - _delete_at_path?: (match_streams_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?: (match_streams_delete_elem_input | null), - /** delete key/value pair or string element. key/value pairs are matched based on their key value */ - _delete_key?: (match_streams_delete_key_input | null), - /** increments the numeric columns with given value of the filtered values */ - _inc?: (match_streams_inc_input | null), - /** prepend existing jsonb value of filtered columns with new jsonb value */ - _prepend?: (match_streams_prepend_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (match_streams_set_input | null), pk_columns: match_streams_pk_columns_input} }) - /** update multiples rows of table: "match_streams" */ - update_match_streams_many?: (match_streams_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: match_streams_updates[]} }) - /** update data of the table: "match_type_cfgs" */ - update_match_type_cfgs?: (match_type_cfgs_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (match_type_cfgs_set_input | null), - /** filter the rows which have to be updated */ - where: match_type_cfgs_bool_exp} }) - /** update single row of the table: "match_type_cfgs" */ - update_match_type_cfgs_by_pk?: (match_type_cfgsGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (match_type_cfgs_set_input | null), pk_columns: match_type_cfgs_pk_columns_input} }) - /** update multiples rows of table: "match_type_cfgs" */ - update_match_type_cfgs_many?: (match_type_cfgs_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: match_type_cfgs_updates[]} }) - /** update data of the table: "matches" */ - update_matches?: (matches_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (matches_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (matches_set_input | null), - /** filter the rows which have to be updated */ - where: matches_bool_exp} }) - /** update single row of the table: "matches" */ - update_matches_by_pk?: (matchesGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (matches_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (matches_set_input | null), pk_columns: matches_pk_columns_input} }) - /** update multiples rows of table: "matches" */ - update_matches_many?: (matches_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: matches_updates[]} }) - /** update data of the table: "migration_hashes.hashes" */ - update_migration_hashes_hashes?: (migration_hashes_hashes_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (migration_hashes_hashes_set_input | null), - /** filter the rows which have to be updated */ - where: migration_hashes_hashes_bool_exp} }) - /** update single row of the table: "migration_hashes.hashes" */ - update_migration_hashes_hashes_by_pk?: (migration_hashes_hashesGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (migration_hashes_hashes_set_input | null), pk_columns: migration_hashes_hashes_pk_columns_input} }) - /** update multiples rows of table: "migration_hashes.hashes" */ - update_migration_hashes_hashes_many?: (migration_hashes_hashes_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: migration_hashes_hashes_updates[]} }) - /** update data of the table: "v_my_friends" */ - update_my_friends?: (my_friends_mutation_responseGenqlSelection & { __args: { - /** append existing jsonb value of filtered columns with new jsonb value */ - _append?: (my_friends_append_input | null), - /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ - _delete_at_path?: (my_friends_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?: (my_friends_delete_elem_input | null), - /** delete key/value pair or string element. key/value pairs are matched based on their key value */ - _delete_key?: (my_friends_delete_key_input | null), - /** increments the numeric columns with given value of the filtered values */ - _inc?: (my_friends_inc_input | null), - /** prepend existing jsonb value of filtered columns with new jsonb value */ - _prepend?: (my_friends_prepend_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (my_friends_set_input | null), - /** filter the rows which have to be updated */ - where: my_friends_bool_exp} }) - /** update multiples rows of table: "v_my_friends" */ - update_my_friends_many?: (my_friends_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: my_friends_updates[]} }) - /** update data of the table: "news_articles" */ - update_news_articles?: (news_articles_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (news_articles_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (news_articles_set_input | null), - /** filter the rows which have to be updated */ - where: news_articles_bool_exp} }) - /** update single row of the table: "news_articles" */ - update_news_articles_by_pk?: (news_articlesGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (news_articles_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (news_articles_set_input | null), pk_columns: news_articles_pk_columns_input} }) - /** update multiples rows of table: "news_articles" */ - update_news_articles_many?: (news_articles_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: news_articles_updates[]} }) - /** update data of the table: "notification_preferences" */ - update_notification_preferences?: (notification_preferences_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (notification_preferences_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (notification_preferences_set_input | null), - /** filter the rows which have to be updated */ - where: notification_preferences_bool_exp} }) - /** update single row of the table: "notification_preferences" */ - update_notification_preferences_by_pk?: (notification_preferencesGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (notification_preferences_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (notification_preferences_set_input | null), pk_columns: notification_preferences_pk_columns_input} }) - /** update multiples rows of table: "notification_preferences" */ - update_notification_preferences_many?: (notification_preferences_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: notification_preferences_updates[]} }) - /** update data of the table: "notifications" */ - update_notifications?: (notifications_mutation_responseGenqlSelection & { __args: { - /** append existing jsonb value of filtered columns with new jsonb value */ - _append?: (notifications_append_input | null), - /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ - _delete_at_path?: (notifications_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?: (notifications_delete_elem_input | null), - /** delete key/value pair or string element. key/value pairs are matched based on their key value */ - _delete_key?: (notifications_delete_key_input | null), - /** increments the numeric columns with given value of the filtered values */ - _inc?: (notifications_inc_input | null), - /** prepend existing jsonb value of filtered columns with new jsonb value */ - _prepend?: (notifications_prepend_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (notifications_set_input | null), - /** filter the rows which have to be updated */ - where: notifications_bool_exp} }) - /** update single row of the table: "notifications" */ - update_notifications_by_pk?: (notificationsGenqlSelection & { __args: { - /** append existing jsonb value of filtered columns with new jsonb value */ - _append?: (notifications_append_input | null), - /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ - _delete_at_path?: (notifications_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?: (notifications_delete_elem_input | null), - /** delete key/value pair or string element. key/value pairs are matched based on their key value */ - _delete_key?: (notifications_delete_key_input | null), - /** increments the numeric columns with given value of the filtered values */ - _inc?: (notifications_inc_input | null), - /** prepend existing jsonb value of filtered columns with new jsonb value */ - _prepend?: (notifications_prepend_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (notifications_set_input | null), pk_columns: notifications_pk_columns_input} }) - /** update multiples rows of table: "notifications" */ - update_notifications_many?: (notifications_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: notifications_updates[]} }) - /** update data of the table: "pending_match_import_players" */ - update_pending_match_import_players?: (pending_match_import_players_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (pending_match_import_players_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (pending_match_import_players_set_input | null), - /** filter the rows which have to be updated */ - where: pending_match_import_players_bool_exp} }) - /** update single row of the table: "pending_match_import_players" */ - update_pending_match_import_players_by_pk?: (pending_match_import_playersGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (pending_match_import_players_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (pending_match_import_players_set_input | null), pk_columns: pending_match_import_players_pk_columns_input} }) - /** update multiples rows of table: "pending_match_import_players" */ - update_pending_match_import_players_many?: (pending_match_import_players_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: pending_match_import_players_updates[]} }) - /** update data of the table: "pending_match_imports" */ - update_pending_match_imports?: (pending_match_imports_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (pending_match_imports_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (pending_match_imports_set_input | null), - /** filter the rows which have to be updated */ - where: pending_match_imports_bool_exp} }) - /** update single row of the table: "pending_match_imports" */ - update_pending_match_imports_by_pk?: (pending_match_importsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (pending_match_imports_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (pending_match_imports_set_input | null), pk_columns: pending_match_imports_pk_columns_input} }) - /** update multiples rows of table: "pending_match_imports" */ - update_pending_match_imports_many?: (pending_match_imports_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: pending_match_imports_updates[]} }) - /** update data of the table: "player_aim_stats_demo" */ - update_player_aim_stats_demo?: (player_aim_stats_demo_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (player_aim_stats_demo_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (player_aim_stats_demo_set_input | null), - /** filter the rows which have to be updated */ - where: player_aim_stats_demo_bool_exp} }) - /** update single row of the table: "player_aim_stats_demo" */ - update_player_aim_stats_demo_by_pk?: (player_aim_stats_demoGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (player_aim_stats_demo_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (player_aim_stats_demo_set_input | null), pk_columns: player_aim_stats_demo_pk_columns_input} }) - /** update multiples rows of table: "player_aim_stats_demo" */ - update_player_aim_stats_demo_many?: (player_aim_stats_demo_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: player_aim_stats_demo_updates[]} }) - /** update data of the table: "player_aim_weapon_stats" */ - update_player_aim_weapon_stats?: (player_aim_weapon_stats_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (player_aim_weapon_stats_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (player_aim_weapon_stats_set_input | null), - /** filter the rows which have to be updated */ - where: player_aim_weapon_stats_bool_exp} }) - /** update single row of the table: "player_aim_weapon_stats" */ - update_player_aim_weapon_stats_by_pk?: (player_aim_weapon_statsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (player_aim_weapon_stats_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (player_aim_weapon_stats_set_input | null), pk_columns: player_aim_weapon_stats_pk_columns_input} }) - /** update multiples rows of table: "player_aim_weapon_stats" */ - update_player_aim_weapon_stats_many?: (player_aim_weapon_stats_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: player_aim_weapon_stats_updates[]} }) - /** update data of the table: "player_assists" */ - update_player_assists?: (player_assists_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (player_assists_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (player_assists_set_input | null), - /** filter the rows which have to be updated */ - where: player_assists_bool_exp} }) - /** update single row of the table: "player_assists" */ - update_player_assists_by_pk?: (player_assistsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (player_assists_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (player_assists_set_input | null), pk_columns: player_assists_pk_columns_input} }) - /** update multiples rows of table: "player_assists" */ - update_player_assists_many?: (player_assists_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: player_assists_updates[]} }) - /** update data of the table: "player_damages" */ - update_player_damages?: (player_damages_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (player_damages_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (player_damages_set_input | null), - /** filter the rows which have to be updated */ - where: player_damages_bool_exp} }) - /** update single row of the table: "player_damages" */ - update_player_damages_by_pk?: (player_damagesGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (player_damages_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (player_damages_set_input | null), pk_columns: player_damages_pk_columns_input} }) - /** update multiples rows of table: "player_damages" */ - update_player_damages_many?: (player_damages_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: player_damages_updates[]} }) - /** update data of the table: "player_elo" */ - update_player_elo?: (player_elo_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (player_elo_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (player_elo_set_input | null), - /** filter the rows which have to be updated */ - where: player_elo_bool_exp} }) - /** update single row of the table: "player_elo" */ - update_player_elo_by_pk?: (player_eloGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (player_elo_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (player_elo_set_input | null), pk_columns: player_elo_pk_columns_input} }) - /** update multiples rows of table: "player_elo" */ - update_player_elo_many?: (player_elo_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: player_elo_updates[]} }) - /** update data of the table: "player_faceit_rank_history" */ - update_player_faceit_rank_history?: (player_faceit_rank_history_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (player_faceit_rank_history_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (player_faceit_rank_history_set_input | null), - /** filter the rows which have to be updated */ - where: player_faceit_rank_history_bool_exp} }) - /** update single row of the table: "player_faceit_rank_history" */ - update_player_faceit_rank_history_by_pk?: (player_faceit_rank_historyGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (player_faceit_rank_history_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (player_faceit_rank_history_set_input | null), pk_columns: player_faceit_rank_history_pk_columns_input} }) - /** update multiples rows of table: "player_faceit_rank_history" */ - update_player_faceit_rank_history_many?: (player_faceit_rank_history_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: player_faceit_rank_history_updates[]} }) - /** update data of the table: "player_flashes" */ - update_player_flashes?: (player_flashes_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (player_flashes_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (player_flashes_set_input | null), - /** filter the rows which have to be updated */ - where: player_flashes_bool_exp} }) - /** update single row of the table: "player_flashes" */ - update_player_flashes_by_pk?: (player_flashesGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (player_flashes_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (player_flashes_set_input | null), pk_columns: player_flashes_pk_columns_input} }) - /** update multiples rows of table: "player_flashes" */ - update_player_flashes_many?: (player_flashes_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: player_flashes_updates[]} }) - /** update data of the table: "player_kills" */ - update_player_kills?: (player_kills_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (player_kills_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (player_kills_set_input | null), - /** filter the rows which have to be updated */ - where: player_kills_bool_exp} }) - /** update single row of the table: "player_kills" */ - update_player_kills_by_pk?: (player_killsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (player_kills_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (player_kills_set_input | null), pk_columns: player_kills_pk_columns_input} }) - /** update data of the table: "player_kills_by_weapon" */ - update_player_kills_by_weapon?: (player_kills_by_weapon_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (player_kills_by_weapon_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (player_kills_by_weapon_set_input | null), - /** filter the rows which have to be updated */ - where: player_kills_by_weapon_bool_exp} }) - /** update single row of the table: "player_kills_by_weapon" */ - update_player_kills_by_weapon_by_pk?: (player_kills_by_weaponGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (player_kills_by_weapon_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (player_kills_by_weapon_set_input | null), pk_columns: player_kills_by_weapon_pk_columns_input} }) - /** update multiples rows of table: "player_kills_by_weapon" */ - update_player_kills_by_weapon_many?: (player_kills_by_weapon_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: player_kills_by_weapon_updates[]} }) - /** update multiples rows of table: "player_kills" */ - update_player_kills_many?: (player_kills_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: player_kills_updates[]} }) - /** update data of the table: "player_leaderboard_rank" */ - update_player_leaderboard_rank?: (player_leaderboard_rank_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (player_leaderboard_rank_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (player_leaderboard_rank_set_input | null), - /** filter the rows which have to be updated */ - where: player_leaderboard_rank_bool_exp} }) - /** update multiples rows of table: "player_leaderboard_rank" */ - update_player_leaderboard_rank_many?: (player_leaderboard_rank_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: player_leaderboard_rank_updates[]} }) - /** update data of the table: "player_match_map_stats" */ - update_player_match_map_stats?: (player_match_map_stats_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (player_match_map_stats_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (player_match_map_stats_set_input | null), - /** filter the rows which have to be updated */ - where: player_match_map_stats_bool_exp} }) - /** update single row of the table: "player_match_map_stats" */ - update_player_match_map_stats_by_pk?: (player_match_map_statsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (player_match_map_stats_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (player_match_map_stats_set_input | null), pk_columns: player_match_map_stats_pk_columns_input} }) - /** update multiples rows of table: "player_match_map_stats" */ - update_player_match_map_stats_many?: (player_match_map_stats_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: player_match_map_stats_updates[]} }) - /** update data of the table: "player_objectives" */ - update_player_objectives?: (player_objectives_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (player_objectives_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (player_objectives_set_input | null), - /** filter the rows which have to be updated */ - where: player_objectives_bool_exp} }) - /** update single row of the table: "player_objectives" */ - update_player_objectives_by_pk?: (player_objectivesGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (player_objectives_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (player_objectives_set_input | null), pk_columns: player_objectives_pk_columns_input} }) - /** update multiples rows of table: "player_objectives" */ - update_player_objectives_many?: (player_objectives_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: player_objectives_updates[]} }) - /** update data of the table: "player_premier_rank_history" */ - update_player_premier_rank_history?: (player_premier_rank_history_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (player_premier_rank_history_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (player_premier_rank_history_set_input | null), - /** filter the rows which have to be updated */ - where: player_premier_rank_history_bool_exp} }) - /** update single row of the table: "player_premier_rank_history" */ - update_player_premier_rank_history_by_pk?: (player_premier_rank_historyGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (player_premier_rank_history_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (player_premier_rank_history_set_input | null), pk_columns: player_premier_rank_history_pk_columns_input} }) - /** update multiples rows of table: "player_premier_rank_history" */ - update_player_premier_rank_history_many?: (player_premier_rank_history_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: player_premier_rank_history_updates[]} }) - /** update data of the table: "player_sanctions" */ - update_player_sanctions?: (player_sanctions_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (player_sanctions_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (player_sanctions_set_input | null), - /** filter the rows which have to be updated */ - where: player_sanctions_bool_exp} }) - /** update single row of the table: "player_sanctions" */ - update_player_sanctions_by_pk?: (player_sanctionsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (player_sanctions_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (player_sanctions_set_input | null), pk_columns: player_sanctions_pk_columns_input} }) - /** update multiples rows of table: "player_sanctions" */ - update_player_sanctions_many?: (player_sanctions_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: player_sanctions_updates[]} }) - /** update data of the table: "player_season_stats" */ - update_player_season_stats?: (player_season_stats_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (player_season_stats_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (player_season_stats_set_input | null), - /** filter the rows which have to be updated */ - where: player_season_stats_bool_exp} }) - /** update single row of the table: "player_season_stats" */ - update_player_season_stats_by_pk?: (player_season_statsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (player_season_stats_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (player_season_stats_set_input | null), pk_columns: player_season_stats_pk_columns_input} }) - /** update multiples rows of table: "player_season_stats" */ - update_player_season_stats_many?: (player_season_stats_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: player_season_stats_updates[]} }) - /** update data of the table: "player_stats" */ - update_player_stats?: (player_stats_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (player_stats_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (player_stats_set_input | null), - /** filter the rows which have to be updated */ - where: player_stats_bool_exp} }) - /** update single row of the table: "player_stats" */ - update_player_stats_by_pk?: (player_statsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (player_stats_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (player_stats_set_input | null), pk_columns: player_stats_pk_columns_input} }) - /** update multiples rows of table: "player_stats" */ - update_player_stats_many?: (player_stats_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: player_stats_updates[]} }) - /** update data of the table: "player_steam_bot_friend" */ - update_player_steam_bot_friend?: (player_steam_bot_friend_mutation_responseGenqlSelection & { __args: { - /** append existing jsonb value of filtered columns with new jsonb value */ - _append?: (player_steam_bot_friend_append_input | null), - /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ - _delete_at_path?: (player_steam_bot_friend_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?: (player_steam_bot_friend_delete_elem_input | null), - /** delete key/value pair or string element. key/value pairs are matched based on their key value */ - _delete_key?: (player_steam_bot_friend_delete_key_input | null), - /** increments the numeric columns with given value of the filtered values */ - _inc?: (player_steam_bot_friend_inc_input | null), - /** prepend existing jsonb value of filtered columns with new jsonb value */ - _prepend?: (player_steam_bot_friend_prepend_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (player_steam_bot_friend_set_input | null), - /** filter the rows which have to be updated */ - where: player_steam_bot_friend_bool_exp} }) - /** update single row of the table: "player_steam_bot_friend" */ - update_player_steam_bot_friend_by_pk?: (player_steam_bot_friendGenqlSelection & { __args: { - /** append existing jsonb value of filtered columns with new jsonb value */ - _append?: (player_steam_bot_friend_append_input | null), - /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ - _delete_at_path?: (player_steam_bot_friend_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?: (player_steam_bot_friend_delete_elem_input | null), - /** delete key/value pair or string element. key/value pairs are matched based on their key value */ - _delete_key?: (player_steam_bot_friend_delete_key_input | null), - /** increments the numeric columns with given value of the filtered values */ - _inc?: (player_steam_bot_friend_inc_input | null), - /** prepend existing jsonb value of filtered columns with new jsonb value */ - _prepend?: (player_steam_bot_friend_prepend_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (player_steam_bot_friend_set_input | null), pk_columns: player_steam_bot_friend_pk_columns_input} }) - /** update multiples rows of table: "player_steam_bot_friend" */ - update_player_steam_bot_friend_many?: (player_steam_bot_friend_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: player_steam_bot_friend_updates[]} }) - /** update data of the table: "player_steam_match_auth" */ - update_player_steam_match_auth?: (player_steam_match_auth_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (player_steam_match_auth_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (player_steam_match_auth_set_input | null), - /** filter the rows which have to be updated */ - where: player_steam_match_auth_bool_exp} }) - /** update single row of the table: "player_steam_match_auth" */ - update_player_steam_match_auth_by_pk?: (player_steam_match_authGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (player_steam_match_auth_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (player_steam_match_auth_set_input | null), pk_columns: player_steam_match_auth_pk_columns_input} }) - /** update multiples rows of table: "player_steam_match_auth" */ - update_player_steam_match_auth_many?: (player_steam_match_auth_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: player_steam_match_auth_updates[]} }) - /** update data of the table: "player_unused_utility" */ - update_player_unused_utility?: (player_unused_utility_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (player_unused_utility_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (player_unused_utility_set_input | null), - /** filter the rows which have to be updated */ - where: player_unused_utility_bool_exp} }) - /** update single row of the table: "player_unused_utility" */ - update_player_unused_utility_by_pk?: (player_unused_utilityGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (player_unused_utility_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (player_unused_utility_set_input | null), pk_columns: player_unused_utility_pk_columns_input} }) - /** update multiples rows of table: "player_unused_utility" */ - update_player_unused_utility_many?: (player_unused_utility_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: player_unused_utility_updates[]} }) - /** update data of the table: "player_utility" */ - update_player_utility?: (player_utility_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (player_utility_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (player_utility_set_input | null), - /** filter the rows which have to be updated */ - where: player_utility_bool_exp} }) - /** update single row of the table: "player_utility" */ - update_player_utility_by_pk?: (player_utilityGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (player_utility_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (player_utility_set_input | null), pk_columns: player_utility_pk_columns_input} }) - /** update multiples rows of table: "player_utility" */ - update_player_utility_many?: (player_utility_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: player_utility_updates[]} }) - /** update data of the table: "players" */ - update_players?: (players_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (players_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (players_set_input | null), - /** filter the rows which have to be updated */ - where: players_bool_exp} }) - /** update single row of the table: "players" */ - update_players_by_pk?: (playersGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (players_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (players_set_input | null), pk_columns: players_pk_columns_input} }) - /** update multiples rows of table: "players" */ - update_players_many?: (players_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: players_updates[]} }) - /** update data of the table: "plugin_versions" */ - update_plugin_versions?: (plugin_versions_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (plugin_versions_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (plugin_versions_set_input | null), - /** filter the rows which have to be updated */ - where: plugin_versions_bool_exp} }) - /** update single row of the table: "plugin_versions" */ - update_plugin_versions_by_pk?: (plugin_versionsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (plugin_versions_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (plugin_versions_set_input | null), pk_columns: plugin_versions_pk_columns_input} }) - /** update multiples rows of table: "plugin_versions" */ - update_plugin_versions_many?: (plugin_versions_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: plugin_versions_updates[]} }) - /** update data of the table: "push_subscriptions" */ - update_push_subscriptions?: (push_subscriptions_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (push_subscriptions_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (push_subscriptions_set_input | null), - /** filter the rows which have to be updated */ - where: push_subscriptions_bool_exp} }) - /** update single row of the table: "push_subscriptions" */ - update_push_subscriptions_by_pk?: (push_subscriptionsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (push_subscriptions_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (push_subscriptions_set_input | null), pk_columns: push_subscriptions_pk_columns_input} }) - /** update multiples rows of table: "push_subscriptions" */ - update_push_subscriptions_many?: (push_subscriptions_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: push_subscriptions_updates[]} }) - /** update data of the table: "v_role_permissions" */ - update_role_permissions?: (role_permissions_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (role_permissions_set_input | null), - /** filter the rows which have to be updated */ - where: role_permissions_bool_exp} }) - /** update multiples rows of table: "v_role_permissions" */ - update_role_permissions_many?: (role_permissions_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: role_permissions_updates[]} }) - /** update data of the table: "seasons" */ - update_seasons?: (seasons_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (seasons_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (seasons_set_input | null), - /** filter the rows which have to be updated */ - where: seasons_bool_exp} }) - /** update single row of the table: "seasons" */ - update_seasons_by_pk?: (seasonsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (seasons_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (seasons_set_input | null), pk_columns: seasons_pk_columns_input} }) - /** update multiples rows of table: "seasons" */ - update_seasons_many?: (seasons_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: seasons_updates[]} }) - /** update data of the table: "server_regions" */ - update_server_regions?: (server_regions_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (server_regions_set_input | null), - /** filter the rows which have to be updated */ - where: server_regions_bool_exp} }) - /** update single row of the table: "server_regions" */ - update_server_regions_by_pk?: (server_regionsGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (server_regions_set_input | null), pk_columns: server_regions_pk_columns_input} }) - /** update multiples rows of table: "server_regions" */ - update_server_regions_many?: (server_regions_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - 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" */ - update_servers_many?: (servers_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: servers_updates[]} }) - /** update data of the table: "settings" */ - update_settings?: (settings_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (settings_set_input | null), - /** filter the rows which have to be updated */ - where: settings_bool_exp} }) - /** update single row of the table: "settings" */ - update_settings_by_pk?: (settingsGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (settings_set_input | null), pk_columns: settings_pk_columns_input} }) - /** update multiples rows of table: "settings" */ - update_settings_many?: (settings_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: settings_updates[]} }) - /** update data of the table: "steam_account_claims" */ - update_steam_account_claims?: (steam_account_claims_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (steam_account_claims_set_input | null), - /** filter the rows which have to be updated */ - where: steam_account_claims_bool_exp} }) - /** update single row of the table: "steam_account_claims" */ - update_steam_account_claims_by_pk?: (steam_account_claimsGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (steam_account_claims_set_input | null), pk_columns: steam_account_claims_pk_columns_input} }) - /** update multiples rows of table: "steam_account_claims" */ - update_steam_account_claims_many?: (steam_account_claims_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: steam_account_claims_updates[]} }) - /** update data of the table: "steam_accounts" */ - update_steam_accounts?: (steam_accounts_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (steam_accounts_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (steam_accounts_set_input | null), - /** filter the rows which have to be updated */ - where: steam_accounts_bool_exp} }) - /** update single row of the table: "steam_accounts" */ - update_steam_accounts_by_pk?: (steam_accountsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (steam_accounts_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (steam_accounts_set_input | null), pk_columns: steam_accounts_pk_columns_input} }) - /** update multiples rows of table: "steam_accounts" */ - update_steam_accounts_many?: (steam_accounts_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: steam_accounts_updates[]} }) - /** update data of the table: "system_alerts" */ - update_system_alerts?: (system_alerts_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (system_alerts_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (system_alerts_set_input | null), - /** filter the rows which have to be updated */ - where: system_alerts_bool_exp} }) - /** update single row of the table: "system_alerts" */ - update_system_alerts_by_pk?: (system_alertsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (system_alerts_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (system_alerts_set_input | null), pk_columns: system_alerts_pk_columns_input} }) - /** update multiples rows of table: "system_alerts" */ - update_system_alerts_many?: (system_alerts_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: system_alerts_updates[]} }) - /** update data of the table: "team_invites" */ - update_team_invites?: (team_invites_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (team_invites_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (team_invites_set_input | null), - /** filter the rows which have to be updated */ - where: team_invites_bool_exp} }) - /** update single row of the table: "team_invites" */ - update_team_invites_by_pk?: (team_invitesGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (team_invites_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (team_invites_set_input | null), pk_columns: team_invites_pk_columns_input} }) - /** update multiples rows of table: "team_invites" */ - update_team_invites_many?: (team_invites_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: team_invites_updates[]} }) - /** update data of the table: "team_roster" */ - update_team_roster?: (team_roster_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (team_roster_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (team_roster_set_input | null), - /** filter the rows which have to be updated */ - where: team_roster_bool_exp} }) - /** update single row of the table: "team_roster" */ - update_team_roster_by_pk?: (team_rosterGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (team_roster_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (team_roster_set_input | null), pk_columns: team_roster_pk_columns_input} }) - /** update multiples rows of table: "team_roster" */ - update_team_roster_many?: (team_roster_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: team_roster_updates[]} }) - /** update data of the table: "team_scrim_alerts" */ - update_team_scrim_alerts?: (team_scrim_alerts_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (team_scrim_alerts_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (team_scrim_alerts_set_input | null), - /** filter the rows which have to be updated */ - where: team_scrim_alerts_bool_exp} }) - /** update single row of the table: "team_scrim_alerts" */ - update_team_scrim_alerts_by_pk?: (team_scrim_alertsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (team_scrim_alerts_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (team_scrim_alerts_set_input | null), pk_columns: team_scrim_alerts_pk_columns_input} }) - /** update multiples rows of table: "team_scrim_alerts" */ - update_team_scrim_alerts_many?: (team_scrim_alerts_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: team_scrim_alerts_updates[]} }) - /** update data of the table: "team_scrim_availability" */ - update_team_scrim_availability?: (team_scrim_availability_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (team_scrim_availability_set_input | null), - /** filter the rows which have to be updated */ - where: team_scrim_availability_bool_exp} }) - /** update single row of the table: "team_scrim_availability" */ - update_team_scrim_availability_by_pk?: (team_scrim_availabilityGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (team_scrim_availability_set_input | null), pk_columns: team_scrim_availability_pk_columns_input} }) - /** update multiples rows of table: "team_scrim_availability" */ - update_team_scrim_availability_many?: (team_scrim_availability_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: team_scrim_availability_updates[]} }) - /** update data of the table: "team_scrim_request_proposals" */ - update_team_scrim_request_proposals?: (team_scrim_request_proposals_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (team_scrim_request_proposals_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (team_scrim_request_proposals_set_input | null), - /** filter the rows which have to be updated */ - where: team_scrim_request_proposals_bool_exp} }) - /** update single row of the table: "team_scrim_request_proposals" */ - update_team_scrim_request_proposals_by_pk?: (team_scrim_request_proposalsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (team_scrim_request_proposals_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (team_scrim_request_proposals_set_input | null), pk_columns: team_scrim_request_proposals_pk_columns_input} }) - /** update multiples rows of table: "team_scrim_request_proposals" */ - update_team_scrim_request_proposals_many?: (team_scrim_request_proposals_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: team_scrim_request_proposals_updates[]} }) - /** update data of the table: "team_scrim_requests" */ - update_team_scrim_requests?: (team_scrim_requests_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (team_scrim_requests_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (team_scrim_requests_set_input | null), - /** filter the rows which have to be updated */ - where: team_scrim_requests_bool_exp} }) - /** update single row of the table: "team_scrim_requests" */ - update_team_scrim_requests_by_pk?: (team_scrim_requestsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (team_scrim_requests_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (team_scrim_requests_set_input | null), pk_columns: team_scrim_requests_pk_columns_input} }) - /** update multiples rows of table: "team_scrim_requests" */ - update_team_scrim_requests_many?: (team_scrim_requests_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: team_scrim_requests_updates[]} }) - /** update data of the table: "team_scrim_settings" */ - update_team_scrim_settings?: (team_scrim_settings_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (team_scrim_settings_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (team_scrim_settings_set_input | null), - /** filter the rows which have to be updated */ - where: team_scrim_settings_bool_exp} }) - /** update single row of the table: "team_scrim_settings" */ - update_team_scrim_settings_by_pk?: (team_scrim_settingsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (team_scrim_settings_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (team_scrim_settings_set_input | null), pk_columns: team_scrim_settings_pk_columns_input} }) - /** update multiples rows of table: "team_scrim_settings" */ - update_team_scrim_settings_many?: (team_scrim_settings_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: team_scrim_settings_updates[]} }) - /** update data of the table: "team_suggestions" */ - update_team_suggestions?: (team_suggestions_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (team_suggestions_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (team_suggestions_set_input | null), - /** filter the rows which have to be updated */ - where: team_suggestions_bool_exp} }) - /** update single row of the table: "team_suggestions" */ - update_team_suggestions_by_pk?: (team_suggestionsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (team_suggestions_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (team_suggestions_set_input | null), pk_columns: team_suggestions_pk_columns_input} }) - /** update multiples rows of table: "team_suggestions" */ - update_team_suggestions_many?: (team_suggestions_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: team_suggestions_updates[]} }) - /** update data of the table: "teams" */ - update_teams?: (teams_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (teams_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (teams_set_input | null), - /** filter the rows which have to be updated */ - where: teams_bool_exp} }) - /** update single row of the table: "teams" */ - update_teams_by_pk?: (teamsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (teams_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (teams_set_input | null), pk_columns: teams_pk_columns_input} }) - /** update multiples rows of table: "teams" */ - update_teams_many?: (teams_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: teams_updates[]} }) - /** update data of the table: "tournament_awards" */ - update_tournament_awards?: (tournament_awards_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (tournament_awards_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (tournament_awards_set_input | null), - /** filter the rows which have to be updated */ - where: tournament_awards_bool_exp} }) - /** update single row of the table: "tournament_awards" */ - update_tournament_awards_by_pk?: (tournament_awardsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (tournament_awards_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (tournament_awards_set_input | null), pk_columns: tournament_awards_pk_columns_input} }) - /** update multiples rows of table: "tournament_awards" */ - update_tournament_awards_many?: (tournament_awards_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: tournament_awards_updates[]} }) - /** update data of the table: "tournament_brackets" */ - update_tournament_brackets?: (tournament_brackets_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (tournament_brackets_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (tournament_brackets_set_input | null), - /** filter the rows which have to be updated */ - where: tournament_brackets_bool_exp} }) - /** update single row of the table: "tournament_brackets" */ - update_tournament_brackets_by_pk?: (tournament_bracketsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (tournament_brackets_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (tournament_brackets_set_input | null), pk_columns: tournament_brackets_pk_columns_input} }) - /** update multiples rows of table: "tournament_brackets" */ - update_tournament_brackets_many?: (tournament_brackets_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: tournament_brackets_updates[]} }) - /** update data of the table: "tournament_categories" */ - update_tournament_categories?: (tournament_categories_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (tournament_categories_set_input | null), - /** filter the rows which have to be updated */ - where: tournament_categories_bool_exp} }) - /** update single row of the table: "tournament_categories" */ - update_tournament_categories_by_pk?: (tournament_categoriesGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (tournament_categories_set_input | null), pk_columns: tournament_categories_pk_columns_input} }) - /** update multiples rows of table: "tournament_categories" */ - update_tournament_categories_many?: (tournament_categories_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: tournament_categories_updates[]} }) - /** update data of the table: "tournament_free_agents" */ - update_tournament_free_agents?: (tournament_free_agents_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (tournament_free_agents_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (tournament_free_agents_set_input | null), - /** filter the rows which have to be updated */ - where: tournament_free_agents_bool_exp} }) - /** update single row of the table: "tournament_free_agents" */ - update_tournament_free_agents_by_pk?: (tournament_free_agentsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (tournament_free_agents_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (tournament_free_agents_set_input | null), pk_columns: tournament_free_agents_pk_columns_input} }) - /** update multiples rows of table: "tournament_free_agents" */ - update_tournament_free_agents_many?: (tournament_free_agents_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: tournament_free_agents_updates[]} }) - /** update data of the table: "tournament_invite_code_uses" */ - update_tournament_invite_code_uses?: (tournament_invite_code_uses_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (tournament_invite_code_uses_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (tournament_invite_code_uses_set_input | null), - /** filter the rows which have to be updated */ - where: tournament_invite_code_uses_bool_exp} }) - /** update single row of the table: "tournament_invite_code_uses" */ - update_tournament_invite_code_uses_by_pk?: (tournament_invite_code_usesGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (tournament_invite_code_uses_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (tournament_invite_code_uses_set_input | null), pk_columns: tournament_invite_code_uses_pk_columns_input} }) - /** update multiples rows of table: "tournament_invite_code_uses" */ - update_tournament_invite_code_uses_many?: (tournament_invite_code_uses_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: tournament_invite_code_uses_updates[]} }) - /** update data of the table: "tournament_invite_codes" */ - update_tournament_invite_codes?: (tournament_invite_codes_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (tournament_invite_codes_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (tournament_invite_codes_set_input | null), - /** filter the rows which have to be updated */ - where: tournament_invite_codes_bool_exp} }) - /** update single row of the table: "tournament_invite_codes" */ - update_tournament_invite_codes_by_pk?: (tournament_invite_codesGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (tournament_invite_codes_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (tournament_invite_codes_set_input | null), pk_columns: tournament_invite_codes_pk_columns_input} }) - /** update multiples rows of table: "tournament_invite_codes" */ - update_tournament_invite_codes_many?: (tournament_invite_codes_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: tournament_invite_codes_updates[]} }) - /** update data of the table: "tournament_invites" */ - update_tournament_invites?: (tournament_invites_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (tournament_invites_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (tournament_invites_set_input | null), - /** filter the rows which have to be updated */ - where: tournament_invites_bool_exp} }) - /** update single row of the table: "tournament_invites" */ - update_tournament_invites_by_pk?: (tournament_invitesGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (tournament_invites_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (tournament_invites_set_input | null), pk_columns: tournament_invites_pk_columns_input} }) - /** update multiples rows of table: "tournament_invites" */ - update_tournament_invites_many?: (tournament_invites_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: tournament_invites_updates[]} }) - /** update data of the table: "tournament_leaderboard_entries" */ - update_tournament_leaderboard_entries?: (tournament_leaderboard_entries_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (tournament_leaderboard_entries_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (tournament_leaderboard_entries_set_input | null), - /** filter the rows which have to be updated */ - where: tournament_leaderboard_entries_bool_exp} }) - /** update multiples rows of table: "tournament_leaderboard_entries" */ - update_tournament_leaderboard_entries_many?: (tournament_leaderboard_entries_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: tournament_leaderboard_entries_updates[]} }) - /** update data of the table: "tournament_no_shows" */ - update_tournament_no_shows?: (tournament_no_shows_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (tournament_no_shows_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (tournament_no_shows_set_input | null), - /** filter the rows which have to be updated */ - where: tournament_no_shows_bool_exp} }) - /** update single row of the table: "tournament_no_shows" */ - update_tournament_no_shows_by_pk?: (tournament_no_showsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (tournament_no_shows_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (tournament_no_shows_set_input | null), pk_columns: tournament_no_shows_pk_columns_input} }) - /** update multiples rows of table: "tournament_no_shows" */ - update_tournament_no_shows_many?: (tournament_no_shows_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: tournament_no_shows_updates[]} }) - /** update data of the table: "tournament_organizer_teams" */ - update_tournament_organizer_teams?: (tournament_organizer_teams_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (tournament_organizer_teams_set_input | null), - /** filter the rows which have to be updated */ - where: tournament_organizer_teams_bool_exp} }) - /** update single row of the table: "tournament_organizer_teams" */ - update_tournament_organizer_teams_by_pk?: (tournament_organizer_teamsGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (tournament_organizer_teams_set_input | null), pk_columns: tournament_organizer_teams_pk_columns_input} }) - /** update multiples rows of table: "tournament_organizer_teams" */ - update_tournament_organizer_teams_many?: (tournament_organizer_teams_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: tournament_organizer_teams_updates[]} }) - /** update data of the table: "tournament_organizers" */ - update_tournament_organizers?: (tournament_organizers_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (tournament_organizers_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (tournament_organizers_set_input | null), - /** filter the rows which have to be updated */ - where: tournament_organizers_bool_exp} }) - /** update single row of the table: "tournament_organizers" */ - update_tournament_organizers_by_pk?: (tournament_organizersGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (tournament_organizers_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (tournament_organizers_set_input | null), pk_columns: tournament_organizers_pk_columns_input} }) - /** update multiples rows of table: "tournament_organizers" */ - update_tournament_organizers_many?: (tournament_organizers_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: tournament_organizers_updates[]} }) - /** update data of the table: "tournament_prizes" */ - update_tournament_prizes?: (tournament_prizes_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (tournament_prizes_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (tournament_prizes_set_input | null), - /** filter the rows which have to be updated */ - where: tournament_prizes_bool_exp} }) - /** update single row of the table: "tournament_prizes" */ - update_tournament_prizes_by_pk?: (tournament_prizesGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (tournament_prizes_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (tournament_prizes_set_input | null), pk_columns: tournament_prizes_pk_columns_input} }) - /** update multiples rows of table: "tournament_prizes" */ - update_tournament_prizes_many?: (tournament_prizes_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: tournament_prizes_updates[]} }) - /** update data of the table: "tournament_registration_unlocks" */ - update_tournament_registration_unlocks?: (tournament_registration_unlocks_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (tournament_registration_unlocks_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (tournament_registration_unlocks_set_input | null), - /** filter the rows which have to be updated */ - where: tournament_registration_unlocks_bool_exp} }) - /** update multiples rows of table: "tournament_registration_unlocks" */ - update_tournament_registration_unlocks_many?: (tournament_registration_unlocks_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: tournament_registration_unlocks_updates[]} }) - /** update data of the table: "tournament_stage_windows" */ - update_tournament_stage_windows?: (tournament_stage_windows_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (tournament_stage_windows_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (tournament_stage_windows_set_input | null), - /** filter the rows which have to be updated */ - where: tournament_stage_windows_bool_exp} }) - /** update single row of the table: "tournament_stage_windows" */ - update_tournament_stage_windows_by_pk?: (tournament_stage_windowsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (tournament_stage_windows_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (tournament_stage_windows_set_input | null), pk_columns: tournament_stage_windows_pk_columns_input} }) - /** update multiples rows of table: "tournament_stage_windows" */ - update_tournament_stage_windows_many?: (tournament_stage_windows_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: tournament_stage_windows_updates[]} }) - /** update data of the table: "tournament_stages" */ - update_tournament_stages?: (tournament_stages_mutation_responseGenqlSelection & { __args: { - /** append existing jsonb value of filtered columns with new jsonb value */ - _append?: (tournament_stages_append_input | null), - /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ - _delete_at_path?: (tournament_stages_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?: (tournament_stages_delete_elem_input | null), - /** delete key/value pair or string element. key/value pairs are matched based on their key value */ - _delete_key?: (tournament_stages_delete_key_input | null), - /** increments the numeric columns with given value of the filtered values */ - _inc?: (tournament_stages_inc_input | null), - /** prepend existing jsonb value of filtered columns with new jsonb value */ - _prepend?: (tournament_stages_prepend_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (tournament_stages_set_input | null), - /** filter the rows which have to be updated */ - where: tournament_stages_bool_exp} }) - /** update single row of the table: "tournament_stages" */ - update_tournament_stages_by_pk?: (tournament_stagesGenqlSelection & { __args: { - /** append existing jsonb value of filtered columns with new jsonb value */ - _append?: (tournament_stages_append_input | null), - /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ - _delete_at_path?: (tournament_stages_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?: (tournament_stages_delete_elem_input | null), - /** delete key/value pair or string element. key/value pairs are matched based on their key value */ - _delete_key?: (tournament_stages_delete_key_input | null), - /** increments the numeric columns with given value of the filtered values */ - _inc?: (tournament_stages_inc_input | null), - /** prepend existing jsonb value of filtered columns with new jsonb value */ - _prepend?: (tournament_stages_prepend_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (tournament_stages_set_input | null), pk_columns: tournament_stages_pk_columns_input} }) - /** update multiples rows of table: "tournament_stages" */ - update_tournament_stages_many?: (tournament_stages_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: tournament_stages_updates[]} }) - /** update data of the table: "tournament_team_invites" */ - update_tournament_team_invites?: (tournament_team_invites_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (tournament_team_invites_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (tournament_team_invites_set_input | null), - /** filter the rows which have to be updated */ - where: tournament_team_invites_bool_exp} }) - /** update single row of the table: "tournament_team_invites" */ - update_tournament_team_invites_by_pk?: (tournament_team_invitesGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (tournament_team_invites_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (tournament_team_invites_set_input | null), pk_columns: tournament_team_invites_pk_columns_input} }) - /** update multiples rows of table: "tournament_team_invites" */ - update_tournament_team_invites_many?: (tournament_team_invites_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: tournament_team_invites_updates[]} }) - /** update data of the table: "tournament_team_roster" */ - update_tournament_team_roster?: (tournament_team_roster_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (tournament_team_roster_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (tournament_team_roster_set_input | null), - /** filter the rows which have to be updated */ - where: tournament_team_roster_bool_exp} }) - /** update single row of the table: "tournament_team_roster" */ - update_tournament_team_roster_by_pk?: (tournament_team_rosterGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (tournament_team_roster_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (tournament_team_roster_set_input | null), pk_columns: tournament_team_roster_pk_columns_input} }) - /** update multiples rows of table: "tournament_team_roster" */ - update_tournament_team_roster_many?: (tournament_team_roster_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: tournament_team_roster_updates[]} }) - /** update data of the table: "tournament_teams" */ - update_tournament_teams?: (tournament_teams_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (tournament_teams_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (tournament_teams_set_input | null), - /** filter the rows which have to be updated */ - where: tournament_teams_bool_exp} }) - /** update single row of the table: "tournament_teams" */ - update_tournament_teams_by_pk?: (tournament_teamsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (tournament_teams_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (tournament_teams_set_input | null), pk_columns: tournament_teams_pk_columns_input} }) - /** update multiples rows of table: "tournament_teams" */ - update_tournament_teams_many?: (tournament_teams_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: tournament_teams_updates[]} }) - /** update data of the table: "tournaments" */ - update_tournaments?: (tournaments_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (tournaments_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (tournaments_set_input | null), - /** filter the rows which have to be updated */ - where: tournaments_bool_exp} }) - /** update single row of the table: "tournaments" */ - update_tournaments_by_pk?: (tournamentsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (tournaments_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (tournaments_set_input | null), pk_columns: tournaments_pk_columns_input} }) - /** update multiples rows of table: "tournaments" */ - update_tournaments_many?: (tournaments_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: tournaments_updates[]} }) - /** update data of the table: "utility_collection_items" */ - update_utility_collection_items?: (utility_collection_items_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (utility_collection_items_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (utility_collection_items_set_input | null), - /** filter the rows which have to be updated */ - where: utility_collection_items_bool_exp} }) - /** update single row of the table: "utility_collection_items" */ - update_utility_collection_items_by_pk?: (utility_collection_itemsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (utility_collection_items_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (utility_collection_items_set_input | null), pk_columns: utility_collection_items_pk_columns_input} }) - /** update multiples rows of table: "utility_collection_items" */ - update_utility_collection_items_many?: (utility_collection_items_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: utility_collection_items_updates[]} }) - /** update data of the table: "utility_collections" */ - update_utility_collections?: (utility_collections_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (utility_collections_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (utility_collections_set_input | null), - /** filter the rows which have to be updated */ - where: utility_collections_bool_exp} }) - /** update single row of the table: "utility_collections" */ - update_utility_collections_by_pk?: (utility_collectionsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (utility_collections_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (utility_collections_set_input | null), pk_columns: utility_collections_pk_columns_input} }) - /** update multiples rows of table: "utility_collections" */ - update_utility_collections_many?: (utility_collections_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: utility_collections_updates[]} }) - /** update data of the table: "utility_demo_mines" */ - update_utility_demo_mines?: (utility_demo_mines_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (utility_demo_mines_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (utility_demo_mines_set_input | null), - /** filter the rows which have to be updated */ - where: utility_demo_mines_bool_exp} }) - /** update single row of the table: "utility_demo_mines" */ - update_utility_demo_mines_by_pk?: (utility_demo_minesGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (utility_demo_mines_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (utility_demo_mines_set_input | null), pk_columns: utility_demo_mines_pk_columns_input} }) - /** update multiples rows of table: "utility_demo_mines" */ - update_utility_demo_mines_many?: (utility_demo_mines_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: utility_demo_mines_updates[]} }) - /** update data of the table: "utility_demo_throws" */ - update_utility_demo_throws?: (utility_demo_throws_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (utility_demo_throws_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (utility_demo_throws_set_input | null), - /** filter the rows which have to be updated */ - where: utility_demo_throws_bool_exp} }) - /** update single row of the table: "utility_demo_throws" */ - update_utility_demo_throws_by_pk?: (utility_demo_throwsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (utility_demo_throws_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (utility_demo_throws_set_input | null), pk_columns: utility_demo_throws_pk_columns_input} }) - /** update multiples rows of table: "utility_demo_throws" */ - update_utility_demo_throws_many?: (utility_demo_throws_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: utility_demo_throws_updates[]} }) - /** update data of the table: "utility_drift_results" */ - update_utility_drift_results?: (utility_drift_results_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (utility_drift_results_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (utility_drift_results_set_input | null), - /** filter the rows which have to be updated */ - where: utility_drift_results_bool_exp} }) - /** update single row of the table: "utility_drift_results" */ - update_utility_drift_results_by_pk?: (utility_drift_resultsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (utility_drift_results_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (utility_drift_results_set_input | null), pk_columns: utility_drift_results_pk_columns_input} }) - /** update multiples rows of table: "utility_drift_results" */ - update_utility_drift_results_many?: (utility_drift_results_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: utility_drift_results_updates[]} }) - /** update data of the table: "utility_drift_scans" */ - update_utility_drift_scans?: (utility_drift_scans_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (utility_drift_scans_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (utility_drift_scans_set_input | null), - /** filter the rows which have to be updated */ - where: utility_drift_scans_bool_exp} }) - /** update single row of the table: "utility_drift_scans" */ - update_utility_drift_scans_by_pk?: (utility_drift_scansGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (utility_drift_scans_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (utility_drift_scans_set_input | null), pk_columns: utility_drift_scans_pk_columns_input} }) - /** update multiples rows of table: "utility_drift_scans" */ - update_utility_drift_scans_many?: (utility_drift_scans_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: utility_drift_scans_updates[]} }) - /** update data of the table: "utility_lineup_favorites" */ - update_utility_lineup_favorites?: (utility_lineup_favorites_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (utility_lineup_favorites_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (utility_lineup_favorites_set_input | null), - /** filter the rows which have to be updated */ - where: utility_lineup_favorites_bool_exp} }) - /** update single row of the table: "utility_lineup_favorites" */ - update_utility_lineup_favorites_by_pk?: (utility_lineup_favoritesGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (utility_lineup_favorites_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (utility_lineup_favorites_set_input | null), pk_columns: utility_lineup_favorites_pk_columns_input} }) - /** update multiples rows of table: "utility_lineup_favorites" */ - update_utility_lineup_favorites_many?: (utility_lineup_favorites_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: utility_lineup_favorites_updates[]} }) - /** update data of the table: "utility_lineup_progress" */ - update_utility_lineup_progress?: (utility_lineup_progress_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (utility_lineup_progress_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (utility_lineup_progress_set_input | null), - /** filter the rows which have to be updated */ - where: utility_lineup_progress_bool_exp} }) - /** update single row of the table: "utility_lineup_progress" */ - update_utility_lineup_progress_by_pk?: (utility_lineup_progressGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (utility_lineup_progress_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (utility_lineup_progress_set_input | null), pk_columns: utility_lineup_progress_pk_columns_input} }) - /** update multiples rows of table: "utility_lineup_progress" */ - update_utility_lineup_progress_many?: (utility_lineup_progress_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: utility_lineup_progress_updates[]} }) - /** update data of the table: "utility_lineup_renders" */ - update_utility_lineup_renders?: (utility_lineup_renders_mutation_responseGenqlSelection & { __args: { - /** append existing jsonb value of filtered columns with new jsonb value */ - _append?: (utility_lineup_renders_append_input | null), - /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ - _delete_at_path?: (utility_lineup_renders_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?: (utility_lineup_renders_delete_elem_input | null), - /** delete key/value pair or string element. key/value pairs are matched based on their key value */ - _delete_key?: (utility_lineup_renders_delete_key_input | null), - /** increments the numeric columns with given value of the filtered values */ - _inc?: (utility_lineup_renders_inc_input | null), - /** prepend existing jsonb value of filtered columns with new jsonb value */ - _prepend?: (utility_lineup_renders_prepend_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (utility_lineup_renders_set_input | null), - /** filter the rows which have to be updated */ - where: utility_lineup_renders_bool_exp} }) - /** update single row of the table: "utility_lineup_renders" */ - update_utility_lineup_renders_by_pk?: (utility_lineup_rendersGenqlSelection & { __args: { - /** append existing jsonb value of filtered columns with new jsonb value */ - _append?: (utility_lineup_renders_append_input | null), - /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ - _delete_at_path?: (utility_lineup_renders_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?: (utility_lineup_renders_delete_elem_input | null), - /** delete key/value pair or string element. key/value pairs are matched based on their key value */ - _delete_key?: (utility_lineup_renders_delete_key_input | null), - /** increments the numeric columns with given value of the filtered values */ - _inc?: (utility_lineup_renders_inc_input | null), - /** prepend existing jsonb value of filtered columns with new jsonb value */ - _prepend?: (utility_lineup_renders_prepend_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (utility_lineup_renders_set_input | null), pk_columns: utility_lineup_renders_pk_columns_input} }) - /** update multiples rows of table: "utility_lineup_renders" */ - update_utility_lineup_renders_many?: (utility_lineup_renders_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: utility_lineup_renders_updates[]} }) - /** update data of the table: "utility_lineup_repairs" */ - update_utility_lineup_repairs?: (utility_lineup_repairs_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (utility_lineup_repairs_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (utility_lineup_repairs_set_input | null), - /** filter the rows which have to be updated */ - where: utility_lineup_repairs_bool_exp} }) - /** update single row of the table: "utility_lineup_repairs" */ - update_utility_lineup_repairs_by_pk?: (utility_lineup_repairsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (utility_lineup_repairs_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (utility_lineup_repairs_set_input | null), pk_columns: utility_lineup_repairs_pk_columns_input} }) - /** update multiples rows of table: "utility_lineup_repairs" */ - update_utility_lineup_repairs_many?: (utility_lineup_repairs_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: utility_lineup_repairs_updates[]} }) - /** update data of the table: "utility_lineup_votes" */ - update_utility_lineup_votes?: (utility_lineup_votes_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (utility_lineup_votes_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (utility_lineup_votes_set_input | null), - /** filter the rows which have to be updated */ - where: utility_lineup_votes_bool_exp} }) - /** update single row of the table: "utility_lineup_votes" */ - update_utility_lineup_votes_by_pk?: (utility_lineup_votesGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (utility_lineup_votes_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (utility_lineup_votes_set_input | null), pk_columns: utility_lineup_votes_pk_columns_input} }) - /** update multiples rows of table: "utility_lineup_votes" */ - update_utility_lineup_votes_many?: (utility_lineup_votes_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: utility_lineup_votes_updates[]} }) - /** update data of the table: "utility_lineups" */ - update_utility_lineups?: (utility_lineups_mutation_responseGenqlSelection & { __args: { - /** append existing jsonb value of filtered columns with new jsonb value */ - _append?: (utility_lineups_append_input | null), - /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ - _delete_at_path?: (utility_lineups_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?: (utility_lineups_delete_elem_input | null), - /** delete key/value pair or string element. key/value pairs are matched based on their key value */ - _delete_key?: (utility_lineups_delete_key_input | null), - /** increments the numeric columns with given value of the filtered values */ - _inc?: (utility_lineups_inc_input | null), - /** prepend existing jsonb value of filtered columns with new jsonb value */ - _prepend?: (utility_lineups_prepend_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (utility_lineups_set_input | null), - /** filter the rows which have to be updated */ - where: utility_lineups_bool_exp} }) - /** update single row of the table: "utility_lineups" */ - update_utility_lineups_by_pk?: (utility_lineupsGenqlSelection & { __args: { - /** append existing jsonb value of filtered columns with new jsonb value */ - _append?: (utility_lineups_append_input | null), - /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ - _delete_at_path?: (utility_lineups_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?: (utility_lineups_delete_elem_input | null), - /** delete key/value pair or string element. key/value pairs are matched based on their key value */ - _delete_key?: (utility_lineups_delete_key_input | null), - /** increments the numeric columns with given value of the filtered values */ - _inc?: (utility_lineups_inc_input | null), - /** prepend existing jsonb value of filtered columns with new jsonb value */ - _prepend?: (utility_lineups_prepend_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (utility_lineups_set_input | null), pk_columns: utility_lineups_pk_columns_input} }) - /** update multiples rows of table: "utility_lineups" */ - update_utility_lineups_many?: (utility_lineups_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: utility_lineups_updates[]} }) - /** update data of the table: "utility_meta_lineups" */ - update_utility_meta_lineups?: (utility_meta_lineups_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (utility_meta_lineups_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (utility_meta_lineups_set_input | null), - /** filter the rows which have to be updated */ - where: utility_meta_lineups_bool_exp} }) - /** update single row of the table: "utility_meta_lineups" */ - update_utility_meta_lineups_by_pk?: (utility_meta_lineupsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (utility_meta_lineups_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (utility_meta_lineups_set_input | null), pk_columns: utility_meta_lineups_pk_columns_input} }) - /** update multiples rows of table: "utility_meta_lineups" */ - update_utility_meta_lineups_many?: (utility_meta_lineups_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: utility_meta_lineups_updates[]} }) - /** update data of the table: "utility_playbook_steps" */ - update_utility_playbook_steps?: (utility_playbook_steps_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (utility_playbook_steps_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (utility_playbook_steps_set_input | null), - /** filter the rows which have to be updated */ - where: utility_playbook_steps_bool_exp} }) - /** update single row of the table: "utility_playbook_steps" */ - update_utility_playbook_steps_by_pk?: (utility_playbook_stepsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (utility_playbook_steps_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (utility_playbook_steps_set_input | null), pk_columns: utility_playbook_steps_pk_columns_input} }) - /** update multiples rows of table: "utility_playbook_steps" */ - update_utility_playbook_steps_many?: (utility_playbook_steps_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: utility_playbook_steps_updates[]} }) - /** update data of the table: "utility_playbooks" */ - update_utility_playbooks?: (utility_playbooks_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (utility_playbooks_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (utility_playbooks_set_input | null), - /** filter the rows which have to be updated */ - where: utility_playbooks_bool_exp} }) - /** update single row of the table: "utility_playbooks" */ - update_utility_playbooks_by_pk?: (utility_playbooksGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (utility_playbooks_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (utility_playbooks_set_input | null), pk_columns: utility_playbooks_pk_columns_input} }) - /** update multiples rows of table: "utility_playbooks" */ - update_utility_playbooks_many?: (utility_playbooks_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: utility_playbooks_updates[]} }) - /** update data of the table: "utility_practice_invites" */ - update_utility_practice_invites?: (utility_practice_invites_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (utility_practice_invites_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (utility_practice_invites_set_input | null), - /** filter the rows which have to be updated */ - where: utility_practice_invites_bool_exp} }) - /** update single row of the table: "utility_practice_invites" */ - update_utility_practice_invites_by_pk?: (utility_practice_invitesGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (utility_practice_invites_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (utility_practice_invites_set_input | null), pk_columns: utility_practice_invites_pk_columns_input} }) - /** update multiples rows of table: "utility_practice_invites" */ - update_utility_practice_invites_many?: (utility_practice_invites_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: utility_practice_invites_updates[]} }) - /** update data of the table: "utility_practice_sessions" */ - update_utility_practice_sessions?: (utility_practice_sessions_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (utility_practice_sessions_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (utility_practice_sessions_set_input | null), - /** filter the rows which have to be updated */ - where: utility_practice_sessions_bool_exp} }) - /** update single row of the table: "utility_practice_sessions" */ - update_utility_practice_sessions_by_pk?: (utility_practice_sessionsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (utility_practice_sessions_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (utility_practice_sessions_set_input | null), pk_columns: utility_practice_sessions_pk_columns_input} }) - /** update multiples rows of table: "utility_practice_sessions" */ - update_utility_practice_sessions_many?: (utility_practice_sessions_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: utility_practice_sessions_updates[]} }) - /** update data of the table: "v_match_captains" */ - update_v_match_captains?: (v_match_captains_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (v_match_captains_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (v_match_captains_set_input | null), - /** filter the rows which have to be updated */ - where: v_match_captains_bool_exp} }) - /** update multiples rows of table: "v_match_captains" */ - update_v_match_captains_many?: (v_match_captains_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: v_match_captains_updates[]} }) - /** update data of the table: "v_match_map_backup_rounds" */ - update_v_match_map_backup_rounds?: (v_match_map_backup_rounds_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (v_match_map_backup_rounds_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (v_match_map_backup_rounds_set_input | null), - /** filter the rows which have to be updated */ - where: v_match_map_backup_rounds_bool_exp} }) - /** update multiples rows of table: "v_match_map_backup_rounds" */ - update_v_match_map_backup_rounds_many?: (v_match_map_backup_rounds_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: v_match_map_backup_rounds_updates[]} }) - /** update data of the table: "v_player_match_map_hltv" */ - update_v_player_match_map_hltv?: (v_player_match_map_hltv_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (v_player_match_map_hltv_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (v_player_match_map_hltv_set_input | null), - /** filter the rows which have to be updated */ - where: v_player_match_map_hltv_bool_exp} }) - /** update multiples rows of table: "v_player_match_map_hltv" */ - update_v_player_match_map_hltv_many?: (v_player_match_map_hltv_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: v_player_match_map_hltv_updates[]} }) - /** update data of the table: "v_pool_maps" */ - update_v_pool_maps?: (v_pool_maps_mutation_responseGenqlSelection & { __args: { - /** sets the columns of the filtered rows to the given values */ - _set?: (v_pool_maps_set_input | null), - /** filter the rows which have to be updated */ - where: v_pool_maps_bool_exp} }) - /** update multiples rows of table: "v_pool_maps" */ - update_v_pool_maps_many?: (v_pool_maps_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: v_pool_maps_updates[]} }) - /** update data of the table: "v_team_stage_results" */ - update_v_team_stage_results?: (v_team_stage_results_mutation_responseGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (v_team_stage_results_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (v_team_stage_results_set_input | null), - /** filter the rows which have to be updated */ - where: v_team_stage_results_bool_exp} }) - /** update single row of the table: "v_team_stage_results" */ - update_v_team_stage_results_by_pk?: (v_team_stage_resultsGenqlSelection & { __args: { - /** increments the numeric columns with given value of the filtered values */ - _inc?: (v_team_stage_results_inc_input | null), - /** sets the columns of the filtered rows to the given values */ - _set?: (v_team_stage_results_set_input | null), pk_columns: v_team_stage_results_pk_columns_input} }) - /** update multiples rows of table: "v_team_stage_results" */ - update_v_team_stage_results_many?: (v_team_stage_results_mutation_responseGenqlSelection & { __args: { - /** updates to execute, in order */ - updates: v_team_stage_results_updates[]} }) - /** Validate CS2 gamedata signatures/offsets on a node (5stack.gg test instance only) */ - validateGamedata?: (SuccessOutputGenqlSelection & { __args: {game_server_node_id: Scalars['uuid']} }) - /** Spawn a per-user game-streamer pod to play back a finished match's demo */ - watchDemo?: (WatchDemoOutputGenqlSelection & { __args: {match_map_demo_id?: (Scalars['uuid'] | null), match_map_id: Scalars['uuid']} }) - /** Write content to file on game server */ - writeServerFile?: (SuccessOutputGenqlSelection & { __args: {content: Scalars['String'], file_path: Scalars['String'], node_id: Scalars['String'], server_id?: (Scalars['String'] | null)} }) - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "v_my_friends" */ -export interface my_friendsGenqlSelection{ - avatar_url?: boolean | number - country?: boolean | number - created_at?: boolean | number - custom_avatar_url?: boolean | number - days_since_last_ban?: boolean | number - discord_id?: boolean | number - elo?: { __args: { - /** JSON select path */ - path?: (Scalars['String'] | null)} } | boolean | number - faceit_elo?: boolean | number - faceit_nickname?: boolean | number - faceit_player_id?: boolean | number - faceit_skill_level?: boolean | number - faceit_updated_at?: boolean | number - faceit_url?: boolean | number - friend_steam_id?: boolean | number - game_ban_count?: boolean | number - invited_by_steam_id?: boolean | number - language?: boolean | number - last_presence_state?: { __args: { - /** JSON select path */ - path?: (Scalars['String'] | null)} } | boolean | number - last_read_news_at?: boolean | number - last_sign_in_at?: boolean | number - name?: boolean | number - name_registered?: boolean | number - notification_timezone?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - premier_rank?: boolean | number - premier_rank_updated_at?: boolean | number - presence_updated_at?: boolean | number - profile_url?: boolean | number - quiet_hours_end?: boolean | number - quiet_hours_start?: boolean | number - role?: boolean | number - roster_image_url?: boolean | number - show_match_ready_modal?: boolean | number - status?: boolean | number - steam_bans_checked_at?: boolean | number - steam_id?: boolean | number - vac_ban_count?: boolean | number - vac_banned?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "v_my_friends" */ -export interface my_friends_aggregateGenqlSelection{ - aggregate?: my_friends_aggregate_fieldsGenqlSelection - nodes?: my_friendsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface my_friends_aggregate_bool_exp {bool_and?: (my_friends_aggregate_bool_exp_bool_and | null),bool_or?: (my_friends_aggregate_bool_exp_bool_or | null),count?: (my_friends_aggregate_bool_exp_count | null)} - -export interface my_friends_aggregate_bool_exp_bool_and {arguments: my_friends_select_column_my_friends_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (my_friends_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface my_friends_aggregate_bool_exp_bool_or {arguments: my_friends_select_column_my_friends_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (my_friends_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface my_friends_aggregate_bool_exp_count {arguments?: (my_friends_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (my_friends_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "v_my_friends" */ -export interface my_friends_aggregate_fieldsGenqlSelection{ - avg?: my_friends_avg_fieldsGenqlSelection - count?: { __args: {columns?: (my_friends_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: my_friends_max_fieldsGenqlSelection - min?: my_friends_min_fieldsGenqlSelection - stddev?: my_friends_stddev_fieldsGenqlSelection - stddev_pop?: my_friends_stddev_pop_fieldsGenqlSelection - stddev_samp?: my_friends_stddev_samp_fieldsGenqlSelection - sum?: my_friends_sum_fieldsGenqlSelection - var_pop?: my_friends_var_pop_fieldsGenqlSelection - var_samp?: my_friends_var_samp_fieldsGenqlSelection - variance?: my_friends_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "v_my_friends" */ -export interface my_friends_aggregate_order_by {avg?: (my_friends_avg_order_by | null),count?: (order_by | null),max?: (my_friends_max_order_by | null),min?: (my_friends_min_order_by | null),stddev?: (my_friends_stddev_order_by | null),stddev_pop?: (my_friends_stddev_pop_order_by | null),stddev_samp?: (my_friends_stddev_samp_order_by | null),sum?: (my_friends_sum_order_by | null),var_pop?: (my_friends_var_pop_order_by | null),var_samp?: (my_friends_var_samp_order_by | null),variance?: (my_friends_variance_order_by | null)} - - -/** append existing jsonb value of filtered columns with new jsonb value */ -export interface my_friends_append_input {elo?: (Scalars['jsonb'] | null),last_presence_state?: (Scalars['jsonb'] | null)} - - -/** input type for inserting array relation for remote table "v_my_friends" */ -export interface my_friends_arr_rel_insert_input {data: my_friends_insert_input[]} - - -/** aggregate avg on columns */ -export interface my_friends_avg_fieldsGenqlSelection{ - days_since_last_ban?: boolean | number - faceit_elo?: boolean | number - faceit_skill_level?: boolean | number - friend_steam_id?: boolean | number - game_ban_count?: boolean | number - invited_by_steam_id?: boolean | number - premier_rank?: boolean | number - steam_id?: boolean | number - vac_ban_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "v_my_friends" */ -export interface my_friends_avg_order_by {days_since_last_ban?: (order_by | null),faceit_elo?: (order_by | null),faceit_skill_level?: (order_by | null),friend_steam_id?: (order_by | null),game_ban_count?: (order_by | null),invited_by_steam_id?: (order_by | null),premier_rank?: (order_by | null),steam_id?: (order_by | null),vac_ban_count?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "v_my_friends". All fields are combined with a logical 'AND'. */ -export interface my_friends_bool_exp {_and?: (my_friends_bool_exp[] | null),_not?: (my_friends_bool_exp | null),_or?: (my_friends_bool_exp[] | null),avatar_url?: (String_comparison_exp | null),country?: (String_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),custom_avatar_url?: (String_comparison_exp | null),days_since_last_ban?: (Int_comparison_exp | null),discord_id?: (String_comparison_exp | null),elo?: (jsonb_comparison_exp | null),faceit_elo?: (Int_comparison_exp | null),faceit_nickname?: (String_comparison_exp | null),faceit_player_id?: (String_comparison_exp | null),faceit_skill_level?: (Int_comparison_exp | null),faceit_updated_at?: (timestamptz_comparison_exp | null),faceit_url?: (String_comparison_exp | null),friend_steam_id?: (bigint_comparison_exp | null),game_ban_count?: (Int_comparison_exp | null),invited_by_steam_id?: (bigint_comparison_exp | null),language?: (String_comparison_exp | null),last_presence_state?: (jsonb_comparison_exp | null),last_read_news_at?: (timestamptz_comparison_exp | null),last_sign_in_at?: (timestamptz_comparison_exp | null),name?: (String_comparison_exp | null),name_registered?: (Boolean_comparison_exp | null),notification_timezone?: (String_comparison_exp | null),player?: (players_bool_exp | null),premier_rank?: (Int_comparison_exp | null),premier_rank_updated_at?: (timestamptz_comparison_exp | null),presence_updated_at?: (timestamptz_comparison_exp | null),profile_url?: (String_comparison_exp | null),quiet_hours_end?: (time_comparison_exp | null),quiet_hours_start?: (time_comparison_exp | null),role?: (String_comparison_exp | null),roster_image_url?: (String_comparison_exp | null),show_match_ready_modal?: (Boolean_comparison_exp | null),status?: (String_comparison_exp | null),steam_bans_checked_at?: (timestamptz_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),vac_ban_count?: (Int_comparison_exp | null),vac_banned?: (Boolean_comparison_exp | null)} - - -/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ -export interface my_friends_delete_at_path_input {elo?: (Scalars['String'][] | null),last_presence_state?: (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 my_friends_delete_elem_input {elo?: (Scalars['Int'] | null),last_presence_state?: (Scalars['Int'] | null)} - - -/** delete key/value pair or string element. key/value pairs are matched based on their key value */ -export interface my_friends_delete_key_input {elo?: (Scalars['String'] | null),last_presence_state?: (Scalars['String'] | null)} - - -/** input type for incrementing numeric columns in table "v_my_friends" */ -export interface my_friends_inc_input {days_since_last_ban?: (Scalars['Int'] | null),faceit_elo?: (Scalars['Int'] | null),faceit_skill_level?: (Scalars['Int'] | null),friend_steam_id?: (Scalars['bigint'] | null),game_ban_count?: (Scalars['Int'] | null),invited_by_steam_id?: (Scalars['bigint'] | null),premier_rank?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null),vac_ban_count?: (Scalars['Int'] | null)} - - -/** input type for inserting data into table "v_my_friends" */ -export interface my_friends_insert_input {avatar_url?: (Scalars['String'] | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),custom_avatar_url?: (Scalars['String'] | null),days_since_last_ban?: (Scalars['Int'] | null),discord_id?: (Scalars['String'] | null),elo?: (Scalars['jsonb'] | null),faceit_elo?: (Scalars['Int'] | null),faceit_nickname?: (Scalars['String'] | null),faceit_player_id?: (Scalars['String'] | null),faceit_skill_level?: (Scalars['Int'] | null),faceit_updated_at?: (Scalars['timestamptz'] | null),faceit_url?: (Scalars['String'] | null),friend_steam_id?: (Scalars['bigint'] | null),game_ban_count?: (Scalars['Int'] | null),invited_by_steam_id?: (Scalars['bigint'] | null),language?: (Scalars['String'] | null),last_presence_state?: (Scalars['jsonb'] | null),last_read_news_at?: (Scalars['timestamptz'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),notification_timezone?: (Scalars['String'] | null),player?: (players_obj_rel_insert_input | null),premier_rank?: (Scalars['Int'] | null),premier_rank_updated_at?: (Scalars['timestamptz'] | null),presence_updated_at?: (Scalars['timestamptz'] | null),profile_url?: (Scalars['String'] | null),quiet_hours_end?: (Scalars['time'] | null),quiet_hours_start?: (Scalars['time'] | null),role?: (Scalars['String'] | null),roster_image_url?: (Scalars['String'] | null),show_match_ready_modal?: (Scalars['Boolean'] | null),status?: (Scalars['String'] | null),steam_bans_checked_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),vac_ban_count?: (Scalars['Int'] | null),vac_banned?: (Scalars['Boolean'] | null)} - - -/** aggregate max on columns */ -export interface my_friends_max_fieldsGenqlSelection{ - avatar_url?: boolean | number - country?: boolean | number - created_at?: boolean | number - custom_avatar_url?: boolean | number - days_since_last_ban?: boolean | number - discord_id?: boolean | number - faceit_elo?: boolean | number - faceit_nickname?: boolean | number - faceit_player_id?: boolean | number - faceit_skill_level?: boolean | number - faceit_updated_at?: boolean | number - faceit_url?: boolean | number - friend_steam_id?: boolean | number - game_ban_count?: boolean | number - invited_by_steam_id?: boolean | number - language?: boolean | number - last_read_news_at?: boolean | number - last_sign_in_at?: boolean | number - name?: boolean | number - notification_timezone?: boolean | number - premier_rank?: boolean | number - premier_rank_updated_at?: boolean | number - presence_updated_at?: boolean | number - profile_url?: boolean | number - role?: boolean | number - roster_image_url?: boolean | number - status?: boolean | number - steam_bans_checked_at?: boolean | number - steam_id?: boolean | number - vac_ban_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "v_my_friends" */ -export interface my_friends_max_order_by {avatar_url?: (order_by | null),country?: (order_by | null),created_at?: (order_by | null),custom_avatar_url?: (order_by | null),days_since_last_ban?: (order_by | null),discord_id?: (order_by | null),faceit_elo?: (order_by | null),faceit_nickname?: (order_by | null),faceit_player_id?: (order_by | null),faceit_skill_level?: (order_by | null),faceit_updated_at?: (order_by | null),faceit_url?: (order_by | null),friend_steam_id?: (order_by | null),game_ban_count?: (order_by | null),invited_by_steam_id?: (order_by | null),language?: (order_by | null),last_read_news_at?: (order_by | null),last_sign_in_at?: (order_by | null),name?: (order_by | null),notification_timezone?: (order_by | null),premier_rank?: (order_by | null),premier_rank_updated_at?: (order_by | null),presence_updated_at?: (order_by | null),profile_url?: (order_by | null),role?: (order_by | null),roster_image_url?: (order_by | null),status?: (order_by | null),steam_bans_checked_at?: (order_by | null),steam_id?: (order_by | null),vac_ban_count?: (order_by | null)} - - -/** aggregate min on columns */ -export interface my_friends_min_fieldsGenqlSelection{ - avatar_url?: boolean | number - country?: boolean | number - created_at?: boolean | number - custom_avatar_url?: boolean | number - days_since_last_ban?: boolean | number - discord_id?: boolean | number - faceit_elo?: boolean | number - faceit_nickname?: boolean | number - faceit_player_id?: boolean | number - faceit_skill_level?: boolean | number - faceit_updated_at?: boolean | number - faceit_url?: boolean | number - friend_steam_id?: boolean | number - game_ban_count?: boolean | number - invited_by_steam_id?: boolean | number - language?: boolean | number - last_read_news_at?: boolean | number - last_sign_in_at?: boolean | number - name?: boolean | number - notification_timezone?: boolean | number - premier_rank?: boolean | number - premier_rank_updated_at?: boolean | number - presence_updated_at?: boolean | number - profile_url?: boolean | number - role?: boolean | number - roster_image_url?: boolean | number - status?: boolean | number - steam_bans_checked_at?: boolean | number - steam_id?: boolean | number - vac_ban_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "v_my_friends" */ -export interface my_friends_min_order_by {avatar_url?: (order_by | null),country?: (order_by | null),created_at?: (order_by | null),custom_avatar_url?: (order_by | null),days_since_last_ban?: (order_by | null),discord_id?: (order_by | null),faceit_elo?: (order_by | null),faceit_nickname?: (order_by | null),faceit_player_id?: (order_by | null),faceit_skill_level?: (order_by | null),faceit_updated_at?: (order_by | null),faceit_url?: (order_by | null),friend_steam_id?: (order_by | null),game_ban_count?: (order_by | null),invited_by_steam_id?: (order_by | null),language?: (order_by | null),last_read_news_at?: (order_by | null),last_sign_in_at?: (order_by | null),name?: (order_by | null),notification_timezone?: (order_by | null),premier_rank?: (order_by | null),premier_rank_updated_at?: (order_by | null),presence_updated_at?: (order_by | null),profile_url?: (order_by | null),role?: (order_by | null),roster_image_url?: (order_by | null),status?: (order_by | null),steam_bans_checked_at?: (order_by | null),steam_id?: (order_by | null),vac_ban_count?: (order_by | null)} - - -/** response of any mutation on the table "v_my_friends" */ -export interface my_friends_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: my_friendsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Ordering options when selecting data from "v_my_friends". */ -export interface my_friends_order_by {avatar_url?: (order_by | null),country?: (order_by | null),created_at?: (order_by | null),custom_avatar_url?: (order_by | null),days_since_last_ban?: (order_by | null),discord_id?: (order_by | null),elo?: (order_by | null),faceit_elo?: (order_by | null),faceit_nickname?: (order_by | null),faceit_player_id?: (order_by | null),faceit_skill_level?: (order_by | null),faceit_updated_at?: (order_by | null),faceit_url?: (order_by | null),friend_steam_id?: (order_by | null),game_ban_count?: (order_by | null),invited_by_steam_id?: (order_by | null),language?: (order_by | null),last_presence_state?: (order_by | null),last_read_news_at?: (order_by | null),last_sign_in_at?: (order_by | null),name?: (order_by | null),name_registered?: (order_by | null),notification_timezone?: (order_by | null),player?: (players_order_by | null),premier_rank?: (order_by | null),premier_rank_updated_at?: (order_by | null),presence_updated_at?: (order_by | null),profile_url?: (order_by | null),quiet_hours_end?: (order_by | null),quiet_hours_start?: (order_by | null),role?: (order_by | null),roster_image_url?: (order_by | null),show_match_ready_modal?: (order_by | null),status?: (order_by | null),steam_bans_checked_at?: (order_by | null),steam_id?: (order_by | null),vac_ban_count?: (order_by | null),vac_banned?: (order_by | null)} - - -/** prepend existing jsonb value of filtered columns with new jsonb value */ -export interface my_friends_prepend_input {elo?: (Scalars['jsonb'] | null),last_presence_state?: (Scalars['jsonb'] | null)} - - -/** input type for updating data in table "v_my_friends" */ -export interface my_friends_set_input {avatar_url?: (Scalars['String'] | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),custom_avatar_url?: (Scalars['String'] | null),days_since_last_ban?: (Scalars['Int'] | null),discord_id?: (Scalars['String'] | null),elo?: (Scalars['jsonb'] | null),faceit_elo?: (Scalars['Int'] | null),faceit_nickname?: (Scalars['String'] | null),faceit_player_id?: (Scalars['String'] | null),faceit_skill_level?: (Scalars['Int'] | null),faceit_updated_at?: (Scalars['timestamptz'] | null),faceit_url?: (Scalars['String'] | null),friend_steam_id?: (Scalars['bigint'] | null),game_ban_count?: (Scalars['Int'] | null),invited_by_steam_id?: (Scalars['bigint'] | null),language?: (Scalars['String'] | null),last_presence_state?: (Scalars['jsonb'] | null),last_read_news_at?: (Scalars['timestamptz'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),notification_timezone?: (Scalars['String'] | null),premier_rank?: (Scalars['Int'] | null),premier_rank_updated_at?: (Scalars['timestamptz'] | null),presence_updated_at?: (Scalars['timestamptz'] | null),profile_url?: (Scalars['String'] | null),quiet_hours_end?: (Scalars['time'] | null),quiet_hours_start?: (Scalars['time'] | null),role?: (Scalars['String'] | null),roster_image_url?: (Scalars['String'] | null),show_match_ready_modal?: (Scalars['Boolean'] | null),status?: (Scalars['String'] | null),steam_bans_checked_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),vac_ban_count?: (Scalars['Int'] | null),vac_banned?: (Scalars['Boolean'] | null)} - - -/** aggregate stddev on columns */ -export interface my_friends_stddev_fieldsGenqlSelection{ - days_since_last_ban?: boolean | number - faceit_elo?: boolean | number - faceit_skill_level?: boolean | number - friend_steam_id?: boolean | number - game_ban_count?: boolean | number - invited_by_steam_id?: boolean | number - premier_rank?: boolean | number - steam_id?: boolean | number - vac_ban_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "v_my_friends" */ -export interface my_friends_stddev_order_by {days_since_last_ban?: (order_by | null),faceit_elo?: (order_by | null),faceit_skill_level?: (order_by | null),friend_steam_id?: (order_by | null),game_ban_count?: (order_by | null),invited_by_steam_id?: (order_by | null),premier_rank?: (order_by | null),steam_id?: (order_by | null),vac_ban_count?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface my_friends_stddev_pop_fieldsGenqlSelection{ - days_since_last_ban?: boolean | number - faceit_elo?: boolean | number - faceit_skill_level?: boolean | number - friend_steam_id?: boolean | number - game_ban_count?: boolean | number - invited_by_steam_id?: boolean | number - premier_rank?: boolean | number - steam_id?: boolean | number - vac_ban_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "v_my_friends" */ -export interface my_friends_stddev_pop_order_by {days_since_last_ban?: (order_by | null),faceit_elo?: (order_by | null),faceit_skill_level?: (order_by | null),friend_steam_id?: (order_by | null),game_ban_count?: (order_by | null),invited_by_steam_id?: (order_by | null),premier_rank?: (order_by | null),steam_id?: (order_by | null),vac_ban_count?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface my_friends_stddev_samp_fieldsGenqlSelection{ - days_since_last_ban?: boolean | number - faceit_elo?: boolean | number - faceit_skill_level?: boolean | number - friend_steam_id?: boolean | number - game_ban_count?: boolean | number - invited_by_steam_id?: boolean | number - premier_rank?: boolean | number - steam_id?: boolean | number - vac_ban_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "v_my_friends" */ -export interface my_friends_stddev_samp_order_by {days_since_last_ban?: (order_by | null),faceit_elo?: (order_by | null),faceit_skill_level?: (order_by | null),friend_steam_id?: (order_by | null),game_ban_count?: (order_by | null),invited_by_steam_id?: (order_by | null),premier_rank?: (order_by | null),steam_id?: (order_by | null),vac_ban_count?: (order_by | null)} - - -/** Streaming cursor of the table "my_friends" */ -export interface my_friends_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: my_friends_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface my_friends_stream_cursor_value_input {avatar_url?: (Scalars['String'] | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),custom_avatar_url?: (Scalars['String'] | null),days_since_last_ban?: (Scalars['Int'] | null),discord_id?: (Scalars['String'] | null),elo?: (Scalars['jsonb'] | null),faceit_elo?: (Scalars['Int'] | null),faceit_nickname?: (Scalars['String'] | null),faceit_player_id?: (Scalars['String'] | null),faceit_skill_level?: (Scalars['Int'] | null),faceit_updated_at?: (Scalars['timestamptz'] | null),faceit_url?: (Scalars['String'] | null),friend_steam_id?: (Scalars['bigint'] | null),game_ban_count?: (Scalars['Int'] | null),invited_by_steam_id?: (Scalars['bigint'] | null),language?: (Scalars['String'] | null),last_presence_state?: (Scalars['jsonb'] | null),last_read_news_at?: (Scalars['timestamptz'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),notification_timezone?: (Scalars['String'] | null),premier_rank?: (Scalars['Int'] | null),premier_rank_updated_at?: (Scalars['timestamptz'] | null),presence_updated_at?: (Scalars['timestamptz'] | null),profile_url?: (Scalars['String'] | null),quiet_hours_end?: (Scalars['time'] | null),quiet_hours_start?: (Scalars['time'] | null),role?: (Scalars['String'] | null),roster_image_url?: (Scalars['String'] | null),show_match_ready_modal?: (Scalars['Boolean'] | null),status?: (Scalars['String'] | null),steam_bans_checked_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),vac_ban_count?: (Scalars['Int'] | null),vac_banned?: (Scalars['Boolean'] | null)} - - -/** aggregate sum on columns */ -export interface my_friends_sum_fieldsGenqlSelection{ - days_since_last_ban?: boolean | number - faceit_elo?: boolean | number - faceit_skill_level?: boolean | number - friend_steam_id?: boolean | number - game_ban_count?: boolean | number - invited_by_steam_id?: boolean | number - premier_rank?: boolean | number - steam_id?: boolean | number - vac_ban_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "v_my_friends" */ -export interface my_friends_sum_order_by {days_since_last_ban?: (order_by | null),faceit_elo?: (order_by | null),faceit_skill_level?: (order_by | null),friend_steam_id?: (order_by | null),game_ban_count?: (order_by | null),invited_by_steam_id?: (order_by | null),premier_rank?: (order_by | null),steam_id?: (order_by | null),vac_ban_count?: (order_by | null)} - -export interface my_friends_updates { -/** append existing jsonb value of filtered columns with new jsonb value */ -_append?: (my_friends_append_input | null), -/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ -_delete_at_path?: (my_friends_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?: (my_friends_delete_elem_input | null), -/** delete key/value pair or string element. key/value pairs are matched based on their key value */ -_delete_key?: (my_friends_delete_key_input | null), -/** increments the numeric columns with given value of the filtered values */ -_inc?: (my_friends_inc_input | null), -/** prepend existing jsonb value of filtered columns with new jsonb value */ -_prepend?: (my_friends_prepend_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (my_friends_set_input | null), -/** filter the rows which have to be updated */ -where: my_friends_bool_exp} - - -/** aggregate var_pop on columns */ -export interface my_friends_var_pop_fieldsGenqlSelection{ - days_since_last_ban?: boolean | number - faceit_elo?: boolean | number - faceit_skill_level?: boolean | number - friend_steam_id?: boolean | number - game_ban_count?: boolean | number - invited_by_steam_id?: boolean | number - premier_rank?: boolean | number - steam_id?: boolean | number - vac_ban_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "v_my_friends" */ -export interface my_friends_var_pop_order_by {days_since_last_ban?: (order_by | null),faceit_elo?: (order_by | null),faceit_skill_level?: (order_by | null),friend_steam_id?: (order_by | null),game_ban_count?: (order_by | null),invited_by_steam_id?: (order_by | null),premier_rank?: (order_by | null),steam_id?: (order_by | null),vac_ban_count?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface my_friends_var_samp_fieldsGenqlSelection{ - days_since_last_ban?: boolean | number - faceit_elo?: boolean | number - faceit_skill_level?: boolean | number - friend_steam_id?: boolean | number - game_ban_count?: boolean | number - invited_by_steam_id?: boolean | number - premier_rank?: boolean | number - steam_id?: boolean | number - vac_ban_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "v_my_friends" */ -export interface my_friends_var_samp_order_by {days_since_last_ban?: (order_by | null),faceit_elo?: (order_by | null),faceit_skill_level?: (order_by | null),friend_steam_id?: (order_by | null),game_ban_count?: (order_by | null),invited_by_steam_id?: (order_by | null),premier_rank?: (order_by | null),steam_id?: (order_by | null),vac_ban_count?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface my_friends_variance_fieldsGenqlSelection{ - days_since_last_ban?: boolean | number - faceit_elo?: boolean | number - faceit_skill_level?: boolean | number - friend_steam_id?: boolean | number - game_ban_count?: boolean | number - invited_by_steam_id?: boolean | number - premier_rank?: boolean | number - steam_id?: boolean | number - vac_ban_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "v_my_friends" */ -export interface my_friends_variance_order_by {days_since_last_ban?: (order_by | null),faceit_elo?: (order_by | null),faceit_skill_level?: (order_by | null),friend_steam_id?: (order_by | null),game_ban_count?: (order_by | null),invited_by_steam_id?: (order_by | null),premier_rank?: (order_by | null),steam_id?: (order_by | null),vac_ban_count?: (order_by | null)} - - -/** columns and relationships of "news_articles" */ -export interface news_articlesGenqlSelection{ - /** An object relationship */ - author?: playersGenqlSelection - 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 -} - - -/** aggregated selection of "news_articles" */ -export interface news_articles_aggregateGenqlSelection{ - aggregate?: news_articles_aggregate_fieldsGenqlSelection - nodes?: news_articlesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "news_articles" */ -export interface news_articles_aggregate_fieldsGenqlSelection{ - avg?: news_articles_avg_fieldsGenqlSelection - count?: { __args: {columns?: (news_articles_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: news_articles_max_fieldsGenqlSelection - min?: news_articles_min_fieldsGenqlSelection - stddev?: news_articles_stddev_fieldsGenqlSelection - stddev_pop?: news_articles_stddev_pop_fieldsGenqlSelection - stddev_samp?: news_articles_stddev_samp_fieldsGenqlSelection - sum?: news_articles_sum_fieldsGenqlSelection - var_pop?: news_articles_var_pop_fieldsGenqlSelection - var_samp?: news_articles_var_samp_fieldsGenqlSelection - variance?: news_articles_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface news_articles_avg_fieldsGenqlSelection{ - author_steam_id?: boolean | number - view_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "news_articles". All fields are combined with a logical 'AND'. */ -export interface news_articles_bool_exp {_and?: (news_articles_bool_exp[] | null),_not?: (news_articles_bool_exp | null),_or?: (news_articles_bool_exp[] | null),author?: (players_bool_exp | null),author_steam_id?: (bigint_comparison_exp | null),content_markdown?: (String_comparison_exp | null),cover_image_url?: (String_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),published_at?: (timestamptz_comparison_exp | null),slug?: (String_comparison_exp | null),status?: (String_comparison_exp | null),teaser?: (String_comparison_exp | null),title?: (String_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null),view_count?: (bigint_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "news_articles" */ -export interface news_articles_inc_input {author_steam_id?: (Scalars['bigint'] | null),view_count?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "news_articles" */ -export interface news_articles_insert_input {author?: (players_obj_rel_insert_input | null),author_steam_id?: (Scalars['bigint'] | null),content_markdown?: (Scalars['String'] | null),cover_image_url?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),published_at?: (Scalars['timestamptz'] | null),slug?: (Scalars['String'] | null),status?: (Scalars['String'] | null),teaser?: (Scalars['String'] | null),title?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null),view_count?: (Scalars['bigint'] | null)} - - -/** aggregate max on columns */ -export interface news_articles_max_fieldsGenqlSelection{ - author_steam_id?: boolean | number - content_markdown?: boolean | number - cover_image_url?: boolean | number - created_at?: boolean | number - id?: boolean | number - published_at?: boolean | number - slug?: boolean | number - status?: boolean | number - teaser?: boolean | number - title?: boolean | number - updated_at?: boolean | number - view_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface news_articles_min_fieldsGenqlSelection{ - 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 -} - - -/** response of any mutation on the table "news_articles" */ -export interface news_articles_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: news_articlesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "news_articles" */ -export interface news_articles_on_conflict {constraint: news_articles_constraint,update_columns?: news_articles_update_column[],where?: (news_articles_bool_exp | null)} - - -/** Ordering options when selecting data from "news_articles". */ -export interface news_articles_order_by {author?: (players_order_by | null),author_steam_id?: (order_by | null),content_markdown?: (order_by | null),cover_image_url?: (order_by | null),created_at?: (order_by | null),id?: (order_by | null),published_at?: (order_by | null),slug?: (order_by | null),status?: (order_by | null),teaser?: (order_by | null),title?: (order_by | null),updated_at?: (order_by | null),view_count?: (order_by | null)} - - -/** primary key columns input for table: news_articles */ -export interface news_articles_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "news_articles" */ -export interface news_articles_set_input {author_steam_id?: (Scalars['bigint'] | null),content_markdown?: (Scalars['String'] | null),cover_image_url?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),published_at?: (Scalars['timestamptz'] | null),slug?: (Scalars['String'] | null),status?: (Scalars['String'] | null),teaser?: (Scalars['String'] | null),title?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null),view_count?: (Scalars['bigint'] | null)} - - -/** aggregate stddev on columns */ -export interface news_articles_stddev_fieldsGenqlSelection{ - author_steam_id?: boolean | number - view_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface news_articles_stddev_pop_fieldsGenqlSelection{ - author_steam_id?: boolean | number - view_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface news_articles_stddev_samp_fieldsGenqlSelection{ - author_steam_id?: boolean | number - view_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "news_articles" */ -export interface news_articles_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: news_articles_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface news_articles_stream_cursor_value_input {author_steam_id?: (Scalars['bigint'] | null),content_markdown?: (Scalars['String'] | null),cover_image_url?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),published_at?: (Scalars['timestamptz'] | null),slug?: (Scalars['String'] | null),status?: (Scalars['String'] | null),teaser?: (Scalars['String'] | null),title?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null),view_count?: (Scalars['bigint'] | null)} - - -/** aggregate sum on columns */ -export interface news_articles_sum_fieldsGenqlSelection{ - author_steam_id?: boolean | number - view_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface news_articles_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (news_articles_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (news_articles_set_input | null), -/** filter the rows which have to be updated */ -where: news_articles_bool_exp} - - -/** aggregate var_pop on columns */ -export interface news_articles_var_pop_fieldsGenqlSelection{ - author_steam_id?: boolean | number - view_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface news_articles_var_samp_fieldsGenqlSelection{ - author_steam_id?: boolean | number - view_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface news_articles_variance_fieldsGenqlSelection{ - author_steam_id?: boolean | number - view_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "notification_preferences" */ -export interface notification_preferencesGenqlSelection{ - channel?: boolean | number - enabled?: boolean | number - key?: boolean | number - steam_id?: boolean | number - updated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "notification_preferences" */ -export interface notification_preferences_aggregateGenqlSelection{ - aggregate?: notification_preferences_aggregate_fieldsGenqlSelection - nodes?: notification_preferencesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "notification_preferences" */ -export interface notification_preferences_aggregate_fieldsGenqlSelection{ - avg?: notification_preferences_avg_fieldsGenqlSelection - count?: { __args: {columns?: (notification_preferences_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: notification_preferences_max_fieldsGenqlSelection - min?: notification_preferences_min_fieldsGenqlSelection - stddev?: notification_preferences_stddev_fieldsGenqlSelection - stddev_pop?: notification_preferences_stddev_pop_fieldsGenqlSelection - stddev_samp?: notification_preferences_stddev_samp_fieldsGenqlSelection - sum?: notification_preferences_sum_fieldsGenqlSelection - var_pop?: notification_preferences_var_pop_fieldsGenqlSelection - var_samp?: notification_preferences_var_samp_fieldsGenqlSelection - variance?: notification_preferences_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface notification_preferences_avg_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "notification_preferences". All fields are combined with a logical 'AND'. */ -export interface notification_preferences_bool_exp {_and?: (notification_preferences_bool_exp[] | null),_not?: (notification_preferences_bool_exp | null),_or?: (notification_preferences_bool_exp[] | null),channel?: (String_comparison_exp | null),enabled?: (Boolean_comparison_exp | null),key?: (String_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "notification_preferences" */ -export interface notification_preferences_inc_input {steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "notification_preferences" */ -export interface notification_preferences_insert_input {channel?: (Scalars['String'] | null),enabled?: (Scalars['Boolean'] | null),key?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null),updated_at?: (Scalars['timestamptz'] | null)} - - -/** aggregate max on columns */ -export interface notification_preferences_max_fieldsGenqlSelection{ - channel?: boolean | number - key?: boolean | number - steam_id?: boolean | number - updated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface notification_preferences_min_fieldsGenqlSelection{ - channel?: boolean | number - key?: boolean | number - steam_id?: boolean | number - updated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "notification_preferences" */ -export interface notification_preferences_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: notification_preferencesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "notification_preferences" */ -export interface notification_preferences_on_conflict {constraint: notification_preferences_constraint,update_columns?: notification_preferences_update_column[],where?: (notification_preferences_bool_exp | null)} - - -/** Ordering options when selecting data from "notification_preferences". */ -export interface notification_preferences_order_by {channel?: (order_by | null),enabled?: (order_by | null),key?: (order_by | null),steam_id?: (order_by | null),updated_at?: (order_by | null)} - - -/** primary key columns input for table: notification_preferences */ -export interface notification_preferences_pk_columns_input {channel: Scalars['String'],key: Scalars['String'],steam_id: Scalars['bigint']} - - -/** input type for updating data in table "notification_preferences" */ -export interface notification_preferences_set_input {channel?: (Scalars['String'] | null),enabled?: (Scalars['Boolean'] | null),key?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null),updated_at?: (Scalars['timestamptz'] | null)} - - -/** aggregate stddev on columns */ -export interface notification_preferences_stddev_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface notification_preferences_stddev_pop_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface notification_preferences_stddev_samp_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "notification_preferences" */ -export interface notification_preferences_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: notification_preferences_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface notification_preferences_stream_cursor_value_input {channel?: (Scalars['String'] | null),enabled?: (Scalars['Boolean'] | null),key?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null),updated_at?: (Scalars['timestamptz'] | null)} - - -/** aggregate sum on columns */ -export interface notification_preferences_sum_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface notification_preferences_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (notification_preferences_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (notification_preferences_set_input | null), -/** filter the rows which have to be updated */ -where: notification_preferences_bool_exp} - - -/** aggregate var_pop on columns */ -export interface notification_preferences_var_pop_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface notification_preferences_var_samp_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface notification_preferences_variance_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "notifications" */ -export interface notificationsGenqlSelection{ - actions?: { __args: { - /** JSON select path */ - path?: (Scalars['String'] | null)} } | boolean | number - created_at?: boolean | number - data?: { __args: { - /** JSON select path */ - path?: (Scalars['String'] | null)} } | boolean | number - deletable?: boolean | number - deleted_at?: boolean | number - entity_id?: boolean | number - id?: boolean | number - in_app?: boolean | number - is_read?: boolean | number - message?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - role?: boolean | number - steam_id?: boolean | number - title?: boolean | number - type?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "notifications" */ -export interface notifications_aggregateGenqlSelection{ - aggregate?: notifications_aggregate_fieldsGenqlSelection - nodes?: notificationsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface notifications_aggregate_bool_exp {bool_and?: (notifications_aggregate_bool_exp_bool_and | null),bool_or?: (notifications_aggregate_bool_exp_bool_or | null),count?: (notifications_aggregate_bool_exp_count | null)} - -export interface notifications_aggregate_bool_exp_bool_and {arguments: notifications_select_column_notifications_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (notifications_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface notifications_aggregate_bool_exp_bool_or {arguments: notifications_select_column_notifications_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (notifications_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface notifications_aggregate_bool_exp_count {arguments?: (notifications_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (notifications_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "notifications" */ -export interface notifications_aggregate_fieldsGenqlSelection{ - avg?: notifications_avg_fieldsGenqlSelection - count?: { __args: {columns?: (notifications_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: notifications_max_fieldsGenqlSelection - min?: notifications_min_fieldsGenqlSelection - stddev?: notifications_stddev_fieldsGenqlSelection - stddev_pop?: notifications_stddev_pop_fieldsGenqlSelection - stddev_samp?: notifications_stddev_samp_fieldsGenqlSelection - sum?: notifications_sum_fieldsGenqlSelection - var_pop?: notifications_var_pop_fieldsGenqlSelection - var_samp?: notifications_var_samp_fieldsGenqlSelection - variance?: notifications_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "notifications" */ -export interface notifications_aggregate_order_by {avg?: (notifications_avg_order_by | null),count?: (order_by | null),max?: (notifications_max_order_by | null),min?: (notifications_min_order_by | null),stddev?: (notifications_stddev_order_by | null),stddev_pop?: (notifications_stddev_pop_order_by | null),stddev_samp?: (notifications_stddev_samp_order_by | null),sum?: (notifications_sum_order_by | null),var_pop?: (notifications_var_pop_order_by | null),var_samp?: (notifications_var_samp_order_by | null),variance?: (notifications_variance_order_by | null)} - - -/** append existing jsonb value of filtered columns with new jsonb value */ -export interface notifications_append_input {actions?: (Scalars['jsonb'] | null),data?: (Scalars['jsonb'] | null)} - - -/** input type for inserting array relation for remote table "notifications" */ -export interface notifications_arr_rel_insert_input {data: notifications_insert_input[], -/** upsert condition */ -on_conflict?: (notifications_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface notifications_avg_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "notifications" */ -export interface notifications_avg_order_by {steam_id?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "notifications". All fields are combined with a logical 'AND'. */ -export interface notifications_bool_exp {_and?: (notifications_bool_exp[] | null),_not?: (notifications_bool_exp | null),_or?: (notifications_bool_exp[] | null),actions?: (jsonb_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),data?: (jsonb_comparison_exp | null),deletable?: (Boolean_comparison_exp | null),deleted_at?: (timestamptz_comparison_exp | null),entity_id?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),in_app?: (Boolean_comparison_exp | null),is_read?: (Boolean_comparison_exp | null),message?: (String_comparison_exp | null),player?: (players_bool_exp | null),role?: (e_player_roles_enum_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),title?: (String_comparison_exp | null),type?: (e_notification_types_enum_comparison_exp | null)} - - -/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ -export interface notifications_delete_at_path_input {actions?: (Scalars['String'][] | null),data?: (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 notifications_delete_elem_input {actions?: (Scalars['Int'] | null),data?: (Scalars['Int'] | null)} - - -/** delete key/value pair or string element. key/value pairs are matched based on their key value */ -export interface notifications_delete_key_input {actions?: (Scalars['String'] | null),data?: (Scalars['String'] | null)} - - -/** input type for incrementing numeric columns in table "notifications" */ -export interface notifications_inc_input {steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "notifications" */ -export interface notifications_insert_input {actions?: (Scalars['jsonb'] | null),created_at?: (Scalars['timestamptz'] | null),data?: (Scalars['jsonb'] | null),deletable?: (Scalars['Boolean'] | null),deleted_at?: (Scalars['timestamptz'] | null),entity_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),in_app?: (Scalars['Boolean'] | null),is_read?: (Scalars['Boolean'] | null),message?: (Scalars['String'] | null),player?: (players_obj_rel_insert_input | null),role?: (e_player_roles_enum | null),steam_id?: (Scalars['bigint'] | null),title?: (Scalars['String'] | null),type?: (e_notification_types_enum | null)} - - -/** aggregate max on columns */ -export interface notifications_max_fieldsGenqlSelection{ - created_at?: boolean | number - deleted_at?: boolean | number - entity_id?: boolean | number - id?: boolean | number - message?: boolean | number - steam_id?: boolean | number - title?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "notifications" */ -export interface notifications_max_order_by {created_at?: (order_by | null),deleted_at?: (order_by | null),entity_id?: (order_by | null),id?: (order_by | null),message?: (order_by | null),steam_id?: (order_by | null),title?: (order_by | null)} - - -/** aggregate min on columns */ -export interface notifications_min_fieldsGenqlSelection{ - created_at?: boolean | number - deleted_at?: boolean | number - entity_id?: boolean | number - id?: boolean | number - message?: boolean | number - steam_id?: boolean | number - title?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "notifications" */ -export interface notifications_min_order_by {created_at?: (order_by | null),deleted_at?: (order_by | null),entity_id?: (order_by | null),id?: (order_by | null),message?: (order_by | null),steam_id?: (order_by | null),title?: (order_by | null)} - - -/** response of any mutation on the table "notifications" */ -export interface notifications_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: notificationsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "notifications" */ -export interface notifications_on_conflict {constraint: notifications_constraint,update_columns?: notifications_update_column[],where?: (notifications_bool_exp | null)} - - -/** Ordering options when selecting data from "notifications". */ -export interface notifications_order_by {actions?: (order_by | null),created_at?: (order_by | null),data?: (order_by | null),deletable?: (order_by | null),deleted_at?: (order_by | null),entity_id?: (order_by | null),id?: (order_by | null),in_app?: (order_by | null),is_read?: (order_by | null),message?: (order_by | null),player?: (players_order_by | null),role?: (order_by | null),steam_id?: (order_by | null),title?: (order_by | null),type?: (order_by | null)} - - -/** primary key columns input for table: notifications */ -export interface notifications_pk_columns_input {id: Scalars['uuid']} - - -/** prepend existing jsonb value of filtered columns with new jsonb value */ -export interface notifications_prepend_input {actions?: (Scalars['jsonb'] | null),data?: (Scalars['jsonb'] | null)} - - -/** input type for updating data in table "notifications" */ -export interface notifications_set_input {actions?: (Scalars['jsonb'] | null),created_at?: (Scalars['timestamptz'] | null),data?: (Scalars['jsonb'] | null),deletable?: (Scalars['Boolean'] | null),deleted_at?: (Scalars['timestamptz'] | null),entity_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),in_app?: (Scalars['Boolean'] | null),is_read?: (Scalars['Boolean'] | null),message?: (Scalars['String'] | null),role?: (e_player_roles_enum | null),steam_id?: (Scalars['bigint'] | null),title?: (Scalars['String'] | null),type?: (e_notification_types_enum | null)} - - -/** aggregate stddev on columns */ -export interface notifications_stddev_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "notifications" */ -export interface notifications_stddev_order_by {steam_id?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface notifications_stddev_pop_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "notifications" */ -export interface notifications_stddev_pop_order_by {steam_id?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface notifications_stddev_samp_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "notifications" */ -export interface notifications_stddev_samp_order_by {steam_id?: (order_by | null)} - - -/** Streaming cursor of the table "notifications" */ -export interface notifications_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: notifications_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface notifications_stream_cursor_value_input {actions?: (Scalars['jsonb'] | null),created_at?: (Scalars['timestamptz'] | null),data?: (Scalars['jsonb'] | null),deletable?: (Scalars['Boolean'] | null),deleted_at?: (Scalars['timestamptz'] | null),entity_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),in_app?: (Scalars['Boolean'] | null),is_read?: (Scalars['Boolean'] | null),message?: (Scalars['String'] | null),role?: (e_player_roles_enum | null),steam_id?: (Scalars['bigint'] | null),title?: (Scalars['String'] | null),type?: (e_notification_types_enum | null)} - - -/** aggregate sum on columns */ -export interface notifications_sum_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "notifications" */ -export interface notifications_sum_order_by {steam_id?: (order_by | null)} - -export interface notifications_updates { -/** append existing jsonb value of filtered columns with new jsonb value */ -_append?: (notifications_append_input | null), -/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ -_delete_at_path?: (notifications_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?: (notifications_delete_elem_input | null), -/** delete key/value pair or string element. key/value pairs are matched based on their key value */ -_delete_key?: (notifications_delete_key_input | null), -/** increments the numeric columns with given value of the filtered values */ -_inc?: (notifications_inc_input | null), -/** prepend existing jsonb value of filtered columns with new jsonb value */ -_prepend?: (notifications_prepend_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (notifications_set_input | null), -/** filter the rows which have to be updated */ -where: notifications_bool_exp} - - -/** aggregate var_pop on columns */ -export interface notifications_var_pop_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "notifications" */ -export interface notifications_var_pop_order_by {steam_id?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface notifications_var_samp_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "notifications" */ -export interface notifications_var_samp_order_by {steam_id?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface notifications_variance_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "notifications" */ -export interface notifications_variance_order_by {steam_id?: (order_by | null)} - - -/** Boolean expression to compare columns of type "numeric". All fields are combined with logical 'AND'. */ -export interface numeric_comparison_exp {_eq?: (Scalars['numeric'] | null),_gt?: (Scalars['numeric'] | null),_gte?: (Scalars['numeric'] | null),_in?: (Scalars['numeric'][] | null),_is_null?: (Scalars['Boolean'] | null),_lt?: (Scalars['numeric'] | null),_lte?: (Scalars['numeric'] | null),_neq?: (Scalars['numeric'] | null),_nin?: (Scalars['numeric'][] | null)} - - -/** columns and relationships of "pending_match_import_players" */ -export interface pending_match_import_playersGenqlSelection{ - created_at?: boolean | number - /** An object relationship */ - pending_match_import?: pending_match_importsGenqlSelection - /** An object relationship */ - player?: playersGenqlSelection - steam_id?: boolean | number - valve_match_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "pending_match_import_players" */ -export interface pending_match_import_players_aggregateGenqlSelection{ - aggregate?: pending_match_import_players_aggregate_fieldsGenqlSelection - nodes?: pending_match_import_playersGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface pending_match_import_players_aggregate_bool_exp {count?: (pending_match_import_players_aggregate_bool_exp_count | null)} - -export interface pending_match_import_players_aggregate_bool_exp_count {arguments?: (pending_match_import_players_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (pending_match_import_players_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "pending_match_import_players" */ -export interface pending_match_import_players_aggregate_fieldsGenqlSelection{ - avg?: pending_match_import_players_avg_fieldsGenqlSelection - count?: { __args: {columns?: (pending_match_import_players_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: pending_match_import_players_max_fieldsGenqlSelection - min?: pending_match_import_players_min_fieldsGenqlSelection - stddev?: pending_match_import_players_stddev_fieldsGenqlSelection - stddev_pop?: pending_match_import_players_stddev_pop_fieldsGenqlSelection - stddev_samp?: pending_match_import_players_stddev_samp_fieldsGenqlSelection - sum?: pending_match_import_players_sum_fieldsGenqlSelection - var_pop?: pending_match_import_players_var_pop_fieldsGenqlSelection - var_samp?: pending_match_import_players_var_samp_fieldsGenqlSelection - variance?: pending_match_import_players_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "pending_match_import_players" */ -export interface pending_match_import_players_aggregate_order_by {avg?: (pending_match_import_players_avg_order_by | null),count?: (order_by | null),max?: (pending_match_import_players_max_order_by | null),min?: (pending_match_import_players_min_order_by | null),stddev?: (pending_match_import_players_stddev_order_by | null),stddev_pop?: (pending_match_import_players_stddev_pop_order_by | null),stddev_samp?: (pending_match_import_players_stddev_samp_order_by | null),sum?: (pending_match_import_players_sum_order_by | null),var_pop?: (pending_match_import_players_var_pop_order_by | null),var_samp?: (pending_match_import_players_var_samp_order_by | null),variance?: (pending_match_import_players_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "pending_match_import_players" */ -export interface pending_match_import_players_arr_rel_insert_input {data: pending_match_import_players_insert_input[], -/** upsert condition */ -on_conflict?: (pending_match_import_players_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface pending_match_import_players_avg_fieldsGenqlSelection{ - steam_id?: boolean | number - valve_match_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "pending_match_import_players" */ -export interface pending_match_import_players_avg_order_by {steam_id?: (order_by | null),valve_match_id?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "pending_match_import_players". All fields are combined with a logical 'AND'. */ -export interface pending_match_import_players_bool_exp {_and?: (pending_match_import_players_bool_exp[] | null),_not?: (pending_match_import_players_bool_exp | null),_or?: (pending_match_import_players_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),pending_match_import?: (pending_match_imports_bool_exp | null),player?: (players_bool_exp | null),steam_id?: (bigint_comparison_exp | null),valve_match_id?: (numeric_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "pending_match_import_players" */ -export interface pending_match_import_players_inc_input {steam_id?: (Scalars['bigint'] | null),valve_match_id?: (Scalars['numeric'] | null)} - - -/** input type for inserting data into table "pending_match_import_players" */ -export interface pending_match_import_players_insert_input {created_at?: (Scalars['timestamptz'] | null),pending_match_import?: (pending_match_imports_obj_rel_insert_input | null),player?: (players_obj_rel_insert_input | null),steam_id?: (Scalars['bigint'] | null),valve_match_id?: (Scalars['numeric'] | null)} - - -/** aggregate max on columns */ -export interface pending_match_import_players_max_fieldsGenqlSelection{ - created_at?: boolean | number - steam_id?: boolean | number - valve_match_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "pending_match_import_players" */ -export interface pending_match_import_players_max_order_by {created_at?: (order_by | null),steam_id?: (order_by | null),valve_match_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface pending_match_import_players_min_fieldsGenqlSelection{ - created_at?: boolean | number - steam_id?: boolean | number - valve_match_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "pending_match_import_players" */ -export interface pending_match_import_players_min_order_by {created_at?: (order_by | null),steam_id?: (order_by | null),valve_match_id?: (order_by | null)} - - -/** response of any mutation on the table "pending_match_import_players" */ -export interface pending_match_import_players_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: pending_match_import_playersGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "pending_match_import_players" */ -export interface pending_match_import_players_on_conflict {constraint: pending_match_import_players_constraint,update_columns?: pending_match_import_players_update_column[],where?: (pending_match_import_players_bool_exp | null)} - - -/** Ordering options when selecting data from "pending_match_import_players". */ -export interface pending_match_import_players_order_by {created_at?: (order_by | null),pending_match_import?: (pending_match_imports_order_by | null),player?: (players_order_by | null),steam_id?: (order_by | null),valve_match_id?: (order_by | null)} - - -/** primary key columns input for table: pending_match_import_players */ -export interface pending_match_import_players_pk_columns_input {steam_id: Scalars['bigint'],valve_match_id: Scalars['numeric']} - - -/** input type for updating data in table "pending_match_import_players" */ -export interface pending_match_import_players_set_input {created_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),valve_match_id?: (Scalars['numeric'] | null)} - - -/** aggregate stddev on columns */ -export interface pending_match_import_players_stddev_fieldsGenqlSelection{ - steam_id?: boolean | number - valve_match_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "pending_match_import_players" */ -export interface pending_match_import_players_stddev_order_by {steam_id?: (order_by | null),valve_match_id?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface pending_match_import_players_stddev_pop_fieldsGenqlSelection{ - steam_id?: boolean | number - valve_match_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "pending_match_import_players" */ -export interface pending_match_import_players_stddev_pop_order_by {steam_id?: (order_by | null),valve_match_id?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface pending_match_import_players_stddev_samp_fieldsGenqlSelection{ - steam_id?: boolean | number - valve_match_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "pending_match_import_players" */ -export interface pending_match_import_players_stddev_samp_order_by {steam_id?: (order_by | null),valve_match_id?: (order_by | null)} - - -/** Streaming cursor of the table "pending_match_import_players" */ -export interface pending_match_import_players_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: pending_match_import_players_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface pending_match_import_players_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),valve_match_id?: (Scalars['numeric'] | null)} - - -/** aggregate sum on columns */ -export interface pending_match_import_players_sum_fieldsGenqlSelection{ - steam_id?: boolean | number - valve_match_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "pending_match_import_players" */ -export interface pending_match_import_players_sum_order_by {steam_id?: (order_by | null),valve_match_id?: (order_by | null)} - -export interface pending_match_import_players_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (pending_match_import_players_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (pending_match_import_players_set_input | null), -/** filter the rows which have to be updated */ -where: pending_match_import_players_bool_exp} - - -/** aggregate var_pop on columns */ -export interface pending_match_import_players_var_pop_fieldsGenqlSelection{ - steam_id?: boolean | number - valve_match_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "pending_match_import_players" */ -export interface pending_match_import_players_var_pop_order_by {steam_id?: (order_by | null),valve_match_id?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface pending_match_import_players_var_samp_fieldsGenqlSelection{ - steam_id?: boolean | number - valve_match_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "pending_match_import_players" */ -export interface pending_match_import_players_var_samp_order_by {steam_id?: (order_by | null),valve_match_id?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface pending_match_import_players_variance_fieldsGenqlSelection{ - steam_id?: boolean | number - valve_match_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "pending_match_import_players" */ -export interface pending_match_import_players_variance_order_by {steam_id?: (order_by | null),valve_match_id?: (order_by | null)} - - -/** columns and relationships of "pending_match_imports" */ -export interface pending_match_importsGenqlSelection{ - created_at?: boolean | number - demo_url?: boolean | number - error?: boolean | number - map_name?: boolean | number - match_start_time?: boolean | number - /** An array relationship */ - players?: (pending_match_import_playersGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (pending_match_import_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?: (pending_match_import_players_order_by[] | null), - /** filter the rows returned */ - where?: (pending_match_import_players_bool_exp | null)} }) - /** An aggregate relationship */ - players_aggregate?: (pending_match_import_players_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (pending_match_import_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?: (pending_match_import_players_order_by[] | null), - /** filter the rows returned */ - where?: (pending_match_import_players_bool_exp | null)} }) - share_code?: boolean | number - status?: boolean | number - updated_at?: boolean | number - valve_match_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "pending_match_imports" */ -export interface pending_match_imports_aggregateGenqlSelection{ - aggregate?: pending_match_imports_aggregate_fieldsGenqlSelection - nodes?: pending_match_importsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "pending_match_imports" */ -export interface pending_match_imports_aggregate_fieldsGenqlSelection{ - avg?: pending_match_imports_avg_fieldsGenqlSelection - count?: { __args: {columns?: (pending_match_imports_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: pending_match_imports_max_fieldsGenqlSelection - min?: pending_match_imports_min_fieldsGenqlSelection - stddev?: pending_match_imports_stddev_fieldsGenqlSelection - stddev_pop?: pending_match_imports_stddev_pop_fieldsGenqlSelection - stddev_samp?: pending_match_imports_stddev_samp_fieldsGenqlSelection - sum?: pending_match_imports_sum_fieldsGenqlSelection - var_pop?: pending_match_imports_var_pop_fieldsGenqlSelection - var_samp?: pending_match_imports_var_samp_fieldsGenqlSelection - variance?: pending_match_imports_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface pending_match_imports_avg_fieldsGenqlSelection{ - valve_match_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "pending_match_imports". All fields are combined with a logical 'AND'. */ -export interface pending_match_imports_bool_exp {_and?: (pending_match_imports_bool_exp[] | null),_not?: (pending_match_imports_bool_exp | null),_or?: (pending_match_imports_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),demo_url?: (String_comparison_exp | null),error?: (String_comparison_exp | null),map_name?: (String_comparison_exp | null),match_start_time?: (timestamptz_comparison_exp | null),players?: (pending_match_import_players_bool_exp | null),players_aggregate?: (pending_match_import_players_aggregate_bool_exp | null),share_code?: (String_comparison_exp | null),status?: (String_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null),valve_match_id?: (numeric_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "pending_match_imports" */ -export interface pending_match_imports_inc_input {valve_match_id?: (Scalars['numeric'] | null)} - - -/** input type for inserting data into table "pending_match_imports" */ -export interface pending_match_imports_insert_input {created_at?: (Scalars['timestamptz'] | null),demo_url?: (Scalars['String'] | null),error?: (Scalars['String'] | null),map_name?: (Scalars['String'] | null),match_start_time?: (Scalars['timestamptz'] | null),players?: (pending_match_import_players_arr_rel_insert_input | null),share_code?: (Scalars['String'] | null),status?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null),valve_match_id?: (Scalars['numeric'] | null)} - - -/** aggregate max on columns */ -export interface pending_match_imports_max_fieldsGenqlSelection{ - created_at?: boolean | number - demo_url?: boolean | number - error?: boolean | number - map_name?: boolean | number - match_start_time?: boolean | number - share_code?: boolean | number - status?: boolean | number - updated_at?: boolean | number - valve_match_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface pending_match_imports_min_fieldsGenqlSelection{ - created_at?: boolean | number - demo_url?: boolean | number - error?: boolean | number - map_name?: boolean | number - match_start_time?: boolean | number - share_code?: boolean | number - status?: boolean | number - updated_at?: boolean | number - valve_match_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "pending_match_imports" */ -export interface pending_match_imports_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: pending_match_importsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "pending_match_imports" */ -export interface pending_match_imports_obj_rel_insert_input {data: pending_match_imports_insert_input, -/** upsert condition */ -on_conflict?: (pending_match_imports_on_conflict | null)} - - -/** on_conflict condition type for table "pending_match_imports" */ -export interface pending_match_imports_on_conflict {constraint: pending_match_imports_constraint,update_columns?: pending_match_imports_update_column[],where?: (pending_match_imports_bool_exp | null)} - - -/** Ordering options when selecting data from "pending_match_imports". */ -export interface pending_match_imports_order_by {created_at?: (order_by | null),demo_url?: (order_by | null),error?: (order_by | null),map_name?: (order_by | null),match_start_time?: (order_by | null),players_aggregate?: (pending_match_import_players_aggregate_order_by | null),share_code?: (order_by | null),status?: (order_by | null),updated_at?: (order_by | null),valve_match_id?: (order_by | null)} - - -/** primary key columns input for table: pending_match_imports */ -export interface pending_match_imports_pk_columns_input {valve_match_id: Scalars['numeric']} - - -/** input type for updating data in table "pending_match_imports" */ -export interface pending_match_imports_set_input {created_at?: (Scalars['timestamptz'] | null),demo_url?: (Scalars['String'] | null),error?: (Scalars['String'] | null),map_name?: (Scalars['String'] | null),match_start_time?: (Scalars['timestamptz'] | null),share_code?: (Scalars['String'] | null),status?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null),valve_match_id?: (Scalars['numeric'] | null)} - - -/** aggregate stddev on columns */ -export interface pending_match_imports_stddev_fieldsGenqlSelection{ - valve_match_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface pending_match_imports_stddev_pop_fieldsGenqlSelection{ - valve_match_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface pending_match_imports_stddev_samp_fieldsGenqlSelection{ - valve_match_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "pending_match_imports" */ -export interface pending_match_imports_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: pending_match_imports_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface pending_match_imports_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),demo_url?: (Scalars['String'] | null),error?: (Scalars['String'] | null),map_name?: (Scalars['String'] | null),match_start_time?: (Scalars['timestamptz'] | null),share_code?: (Scalars['String'] | null),status?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null),valve_match_id?: (Scalars['numeric'] | null)} - - -/** aggregate sum on columns */ -export interface pending_match_imports_sum_fieldsGenqlSelection{ - valve_match_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface pending_match_imports_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (pending_match_imports_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (pending_match_imports_set_input | null), -/** filter the rows which have to be updated */ -where: pending_match_imports_bool_exp} - - -/** aggregate var_pop on columns */ -export interface pending_match_imports_var_pop_fieldsGenqlSelection{ - valve_match_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface pending_match_imports_var_samp_fieldsGenqlSelection{ - valve_match_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface pending_match_imports_variance_fieldsGenqlSelection{ - valve_match_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "player_aim_stats_demo" */ -export interface player_aim_stats_demoGenqlSelection{ - /** An object relationship */ - attacker?: playersGenqlSelection - attacker_steam_id?: boolean | number - counter_strafe_eligible_shots?: boolean | number - counter_strafed_shots?: boolean | number - crosshair_angle_count?: boolean | number - crosshair_angle_sum_deg?: boolean | number - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - headshot_hits?: boolean | number - hits?: boolean | number - hits_at_spotted?: boolean | number - /** An object relationship */ - match?: matchesGenqlSelection - match_id?: boolean | number - /** An object relationship */ - match_map?: match_mapsGenqlSelection - match_map_id?: boolean | number - non_awp_hits?: boolean | number - on_target_frames?: boolean | number - shots_at_spotted?: boolean | number - spray_hits?: boolean | number - spray_shots?: boolean | number - time_to_damage_count?: boolean | number - time_to_damage_sum_s?: boolean | number - total_engagement_frames?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "player_aim_stats_demo" */ -export interface player_aim_stats_demo_aggregateGenqlSelection{ - aggregate?: player_aim_stats_demo_aggregate_fieldsGenqlSelection - nodes?: player_aim_stats_demoGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "player_aim_stats_demo" */ -export interface player_aim_stats_demo_aggregate_fieldsGenqlSelection{ - avg?: player_aim_stats_demo_avg_fieldsGenqlSelection - count?: { __args: {columns?: (player_aim_stats_demo_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: player_aim_stats_demo_max_fieldsGenqlSelection - min?: player_aim_stats_demo_min_fieldsGenqlSelection - stddev?: player_aim_stats_demo_stddev_fieldsGenqlSelection - stddev_pop?: player_aim_stats_demo_stddev_pop_fieldsGenqlSelection - stddev_samp?: player_aim_stats_demo_stddev_samp_fieldsGenqlSelection - sum?: player_aim_stats_demo_sum_fieldsGenqlSelection - var_pop?: player_aim_stats_demo_var_pop_fieldsGenqlSelection - var_samp?: player_aim_stats_demo_var_samp_fieldsGenqlSelection - variance?: player_aim_stats_demo_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface player_aim_stats_demo_avg_fieldsGenqlSelection{ - attacker_steam_id?: boolean | number - counter_strafe_eligible_shots?: boolean | number - counter_strafed_shots?: boolean | number - crosshair_angle_count?: boolean | number - crosshair_angle_sum_deg?: boolean | number - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - headshot_hits?: boolean | number - hits?: boolean | number - hits_at_spotted?: boolean | number - non_awp_hits?: boolean | number - on_target_frames?: boolean | number - shots_at_spotted?: boolean | number - spray_hits?: boolean | number - spray_shots?: boolean | number - time_to_damage_count?: boolean | number - time_to_damage_sum_s?: boolean | number - total_engagement_frames?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "player_aim_stats_demo". All fields are combined with a logical 'AND'. */ -export interface player_aim_stats_demo_bool_exp {_and?: (player_aim_stats_demo_bool_exp[] | null),_not?: (player_aim_stats_demo_bool_exp | null),_or?: (player_aim_stats_demo_bool_exp[] | null),attacker?: (players_bool_exp | null),attacker_steam_id?: (bigint_comparison_exp | null),counter_strafe_eligible_shots?: (Int_comparison_exp | null),counter_strafed_shots?: (Int_comparison_exp | null),crosshair_angle_count?: (Int_comparison_exp | null),crosshair_angle_sum_deg?: (numeric_comparison_exp | null),first_bullet_hits?: (Int_comparison_exp | null),first_bullet_shots?: (Int_comparison_exp | null),headshot_hits?: (Int_comparison_exp | null),hits?: (Int_comparison_exp | null),hits_at_spotted?: (Int_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_id?: (uuid_comparison_exp | null),non_awp_hits?: (Int_comparison_exp | null),on_target_frames?: (Int_comparison_exp | null),shots_at_spotted?: (Int_comparison_exp | null),spray_hits?: (Int_comparison_exp | null),spray_shots?: (Int_comparison_exp | null),time_to_damage_count?: (Int_comparison_exp | null),time_to_damage_sum_s?: (numeric_comparison_exp | null),total_engagement_frames?: (Int_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "player_aim_stats_demo" */ -export interface player_aim_stats_demo_inc_input {attacker_steam_id?: (Scalars['bigint'] | null),counter_strafe_eligible_shots?: (Scalars['Int'] | null),counter_strafed_shots?: (Scalars['Int'] | null),crosshair_angle_count?: (Scalars['Int'] | null),crosshair_angle_sum_deg?: (Scalars['numeric'] | null),first_bullet_hits?: (Scalars['Int'] | null),first_bullet_shots?: (Scalars['Int'] | null),headshot_hits?: (Scalars['Int'] | null),hits?: (Scalars['Int'] | null),hits_at_spotted?: (Scalars['Int'] | null),non_awp_hits?: (Scalars['Int'] | null),on_target_frames?: (Scalars['Int'] | null),shots_at_spotted?: (Scalars['Int'] | null),spray_hits?: (Scalars['Int'] | null),spray_shots?: (Scalars['Int'] | null),time_to_damage_count?: (Scalars['Int'] | null),time_to_damage_sum_s?: (Scalars['numeric'] | null),total_engagement_frames?: (Scalars['Int'] | null)} - - -/** input type for inserting data into table "player_aim_stats_demo" */ -export interface player_aim_stats_demo_insert_input {attacker?: (players_obj_rel_insert_input | null),attacker_steam_id?: (Scalars['bigint'] | null),counter_strafe_eligible_shots?: (Scalars['Int'] | null),counter_strafed_shots?: (Scalars['Int'] | null),crosshair_angle_count?: (Scalars['Int'] | null),crosshair_angle_sum_deg?: (Scalars['numeric'] | null),first_bullet_hits?: (Scalars['Int'] | null),first_bullet_shots?: (Scalars['Int'] | null),headshot_hits?: (Scalars['Int'] | null),hits?: (Scalars['Int'] | null),hits_at_spotted?: (Scalars['Int'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_map?: (match_maps_obj_rel_insert_input | null),match_map_id?: (Scalars['uuid'] | null),non_awp_hits?: (Scalars['Int'] | null),on_target_frames?: (Scalars['Int'] | null),shots_at_spotted?: (Scalars['Int'] | null),spray_hits?: (Scalars['Int'] | null),spray_shots?: (Scalars['Int'] | null),time_to_damage_count?: (Scalars['Int'] | null),time_to_damage_sum_s?: (Scalars['numeric'] | null),total_engagement_frames?: (Scalars['Int'] | null)} - - -/** aggregate max on columns */ -export interface player_aim_stats_demo_max_fieldsGenqlSelection{ - attacker_steam_id?: boolean | number - counter_strafe_eligible_shots?: boolean | number - counter_strafed_shots?: boolean | number - crosshair_angle_count?: boolean | number - crosshair_angle_sum_deg?: boolean | number - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - headshot_hits?: boolean | number - hits?: boolean | number - hits_at_spotted?: boolean | number - match_id?: boolean | number - match_map_id?: boolean | number - non_awp_hits?: boolean | number - on_target_frames?: boolean | number - shots_at_spotted?: boolean | number - spray_hits?: boolean | number - spray_shots?: boolean | number - time_to_damage_count?: boolean | number - time_to_damage_sum_s?: boolean | number - total_engagement_frames?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface player_aim_stats_demo_min_fieldsGenqlSelection{ - attacker_steam_id?: boolean | number - counter_strafe_eligible_shots?: boolean | number - counter_strafed_shots?: boolean | number - crosshair_angle_count?: boolean | number - crosshair_angle_sum_deg?: boolean | number - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - headshot_hits?: boolean | number - hits?: boolean | number - hits_at_spotted?: boolean | number - match_id?: boolean | number - match_map_id?: boolean | number - non_awp_hits?: boolean | number - on_target_frames?: boolean | number - shots_at_spotted?: boolean | number - spray_hits?: boolean | number - spray_shots?: boolean | number - time_to_damage_count?: boolean | number - time_to_damage_sum_s?: boolean | number - total_engagement_frames?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "player_aim_stats_demo" */ -export interface player_aim_stats_demo_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: player_aim_stats_demoGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "player_aim_stats_demo" */ -export interface player_aim_stats_demo_on_conflict {constraint: player_aim_stats_demo_constraint,update_columns?: player_aim_stats_demo_update_column[],where?: (player_aim_stats_demo_bool_exp | null)} - - -/** Ordering options when selecting data from "player_aim_stats_demo". */ -export interface player_aim_stats_demo_order_by {attacker?: (players_order_by | null),attacker_steam_id?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),crosshair_angle_count?: (order_by | null),crosshair_angle_sum_deg?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_id?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),shots_at_spotted?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),time_to_damage_count?: (order_by | null),time_to_damage_sum_s?: (order_by | null),total_engagement_frames?: (order_by | null)} - - -/** primary key columns input for table: player_aim_stats_demo */ -export interface player_aim_stats_demo_pk_columns_input {attacker_steam_id: Scalars['bigint'],match_map_id: Scalars['uuid']} - - -/** input type for updating data in table "player_aim_stats_demo" */ -export interface player_aim_stats_demo_set_input {attacker_steam_id?: (Scalars['bigint'] | null),counter_strafe_eligible_shots?: (Scalars['Int'] | null),counter_strafed_shots?: (Scalars['Int'] | null),crosshair_angle_count?: (Scalars['Int'] | null),crosshair_angle_sum_deg?: (Scalars['numeric'] | null),first_bullet_hits?: (Scalars['Int'] | null),first_bullet_shots?: (Scalars['Int'] | null),headshot_hits?: (Scalars['Int'] | null),hits?: (Scalars['Int'] | null),hits_at_spotted?: (Scalars['Int'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),non_awp_hits?: (Scalars['Int'] | null),on_target_frames?: (Scalars['Int'] | null),shots_at_spotted?: (Scalars['Int'] | null),spray_hits?: (Scalars['Int'] | null),spray_shots?: (Scalars['Int'] | null),time_to_damage_count?: (Scalars['Int'] | null),time_to_damage_sum_s?: (Scalars['numeric'] | null),total_engagement_frames?: (Scalars['Int'] | null)} - - -/** aggregate stddev on columns */ -export interface player_aim_stats_demo_stddev_fieldsGenqlSelection{ - attacker_steam_id?: boolean | number - counter_strafe_eligible_shots?: boolean | number - counter_strafed_shots?: boolean | number - crosshair_angle_count?: boolean | number - crosshair_angle_sum_deg?: boolean | number - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - headshot_hits?: boolean | number - hits?: boolean | number - hits_at_spotted?: boolean | number - non_awp_hits?: boolean | number - on_target_frames?: boolean | number - shots_at_spotted?: boolean | number - spray_hits?: boolean | number - spray_shots?: boolean | number - time_to_damage_count?: boolean | number - time_to_damage_sum_s?: boolean | number - total_engagement_frames?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface player_aim_stats_demo_stddev_pop_fieldsGenqlSelection{ - attacker_steam_id?: boolean | number - counter_strafe_eligible_shots?: boolean | number - counter_strafed_shots?: boolean | number - crosshair_angle_count?: boolean | number - crosshair_angle_sum_deg?: boolean | number - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - headshot_hits?: boolean | number - hits?: boolean | number - hits_at_spotted?: boolean | number - non_awp_hits?: boolean | number - on_target_frames?: boolean | number - shots_at_spotted?: boolean | number - spray_hits?: boolean | number - spray_shots?: boolean | number - time_to_damage_count?: boolean | number - time_to_damage_sum_s?: boolean | number - total_engagement_frames?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface player_aim_stats_demo_stddev_samp_fieldsGenqlSelection{ - attacker_steam_id?: boolean | number - counter_strafe_eligible_shots?: boolean | number - counter_strafed_shots?: boolean | number - crosshair_angle_count?: boolean | number - crosshair_angle_sum_deg?: boolean | number - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - headshot_hits?: boolean | number - hits?: boolean | number - hits_at_spotted?: boolean | number - non_awp_hits?: boolean | number - on_target_frames?: boolean | number - shots_at_spotted?: boolean | number - spray_hits?: boolean | number - spray_shots?: boolean | number - time_to_damage_count?: boolean | number - time_to_damage_sum_s?: boolean | number - total_engagement_frames?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "player_aim_stats_demo" */ -export interface player_aim_stats_demo_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: player_aim_stats_demo_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface player_aim_stats_demo_stream_cursor_value_input {attacker_steam_id?: (Scalars['bigint'] | null),counter_strafe_eligible_shots?: (Scalars['Int'] | null),counter_strafed_shots?: (Scalars['Int'] | null),crosshair_angle_count?: (Scalars['Int'] | null),crosshair_angle_sum_deg?: (Scalars['numeric'] | null),first_bullet_hits?: (Scalars['Int'] | null),first_bullet_shots?: (Scalars['Int'] | null),headshot_hits?: (Scalars['Int'] | null),hits?: (Scalars['Int'] | null),hits_at_spotted?: (Scalars['Int'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),non_awp_hits?: (Scalars['Int'] | null),on_target_frames?: (Scalars['Int'] | null),shots_at_spotted?: (Scalars['Int'] | null),spray_hits?: (Scalars['Int'] | null),spray_shots?: (Scalars['Int'] | null),time_to_damage_count?: (Scalars['Int'] | null),time_to_damage_sum_s?: (Scalars['numeric'] | null),total_engagement_frames?: (Scalars['Int'] | null)} - - -/** aggregate sum on columns */ -export interface player_aim_stats_demo_sum_fieldsGenqlSelection{ - attacker_steam_id?: boolean | number - counter_strafe_eligible_shots?: boolean | number - counter_strafed_shots?: boolean | number - crosshair_angle_count?: boolean | number - crosshair_angle_sum_deg?: boolean | number - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - headshot_hits?: boolean | number - hits?: boolean | number - hits_at_spotted?: boolean | number - non_awp_hits?: boolean | number - on_target_frames?: boolean | number - shots_at_spotted?: boolean | number - spray_hits?: boolean | number - spray_shots?: boolean | number - time_to_damage_count?: boolean | number - time_to_damage_sum_s?: boolean | number - total_engagement_frames?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface player_aim_stats_demo_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (player_aim_stats_demo_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (player_aim_stats_demo_set_input | null), -/** filter the rows which have to be updated */ -where: player_aim_stats_demo_bool_exp} - - -/** aggregate var_pop on columns */ -export interface player_aim_stats_demo_var_pop_fieldsGenqlSelection{ - attacker_steam_id?: boolean | number - counter_strafe_eligible_shots?: boolean | number - counter_strafed_shots?: boolean | number - crosshair_angle_count?: boolean | number - crosshair_angle_sum_deg?: boolean | number - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - headshot_hits?: boolean | number - hits?: boolean | number - hits_at_spotted?: boolean | number - non_awp_hits?: boolean | number - on_target_frames?: boolean | number - shots_at_spotted?: boolean | number - spray_hits?: boolean | number - spray_shots?: boolean | number - time_to_damage_count?: boolean | number - time_to_damage_sum_s?: boolean | number - total_engagement_frames?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface player_aim_stats_demo_var_samp_fieldsGenqlSelection{ - attacker_steam_id?: boolean | number - counter_strafe_eligible_shots?: boolean | number - counter_strafed_shots?: boolean | number - crosshair_angle_count?: boolean | number - crosshair_angle_sum_deg?: boolean | number - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - headshot_hits?: boolean | number - hits?: boolean | number - hits_at_spotted?: boolean | number - non_awp_hits?: boolean | number - on_target_frames?: boolean | number - shots_at_spotted?: boolean | number - spray_hits?: boolean | number - spray_shots?: boolean | number - time_to_damage_count?: boolean | number - time_to_damage_sum_s?: boolean | number - total_engagement_frames?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface player_aim_stats_demo_variance_fieldsGenqlSelection{ - attacker_steam_id?: boolean | number - counter_strafe_eligible_shots?: boolean | number - counter_strafed_shots?: boolean | number - crosshair_angle_count?: boolean | number - crosshair_angle_sum_deg?: boolean | number - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - headshot_hits?: boolean | number - hits?: boolean | number - hits_at_spotted?: boolean | number - non_awp_hits?: boolean | number - on_target_frames?: boolean | number - shots_at_spotted?: boolean | number - spray_hits?: boolean | number - spray_shots?: boolean | number - time_to_damage_count?: boolean | number - time_to_damage_sum_s?: boolean | number - total_engagement_frames?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "player_aim_weapon_stats" */ -export interface player_aim_weapon_statsGenqlSelection{ - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - hits?: boolean | number - hits_spotted?: boolean | number - /** An object relationship */ - match?: matchesGenqlSelection - match_id?: boolean | number - /** An object relationship */ - match_map?: match_mapsGenqlSelection - match_map_id?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - shots?: boolean | number - shots_spotted?: boolean | number - steam_id?: boolean | number - weapon_class?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "player_aim_weapon_stats" */ -export interface player_aim_weapon_stats_aggregateGenqlSelection{ - aggregate?: player_aim_weapon_stats_aggregate_fieldsGenqlSelection - nodes?: player_aim_weapon_statsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface player_aim_weapon_stats_aggregate_bool_exp {count?: (player_aim_weapon_stats_aggregate_bool_exp_count | null)} - -export interface player_aim_weapon_stats_aggregate_bool_exp_count {arguments?: (player_aim_weapon_stats_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (player_aim_weapon_stats_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "player_aim_weapon_stats" */ -export interface player_aim_weapon_stats_aggregate_fieldsGenqlSelection{ - avg?: player_aim_weapon_stats_avg_fieldsGenqlSelection - count?: { __args: {columns?: (player_aim_weapon_stats_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: player_aim_weapon_stats_max_fieldsGenqlSelection - min?: player_aim_weapon_stats_min_fieldsGenqlSelection - stddev?: player_aim_weapon_stats_stddev_fieldsGenqlSelection - stddev_pop?: player_aim_weapon_stats_stddev_pop_fieldsGenqlSelection - stddev_samp?: player_aim_weapon_stats_stddev_samp_fieldsGenqlSelection - sum?: player_aim_weapon_stats_sum_fieldsGenqlSelection - var_pop?: player_aim_weapon_stats_var_pop_fieldsGenqlSelection - var_samp?: player_aim_weapon_stats_var_samp_fieldsGenqlSelection - variance?: player_aim_weapon_stats_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "player_aim_weapon_stats" */ -export interface player_aim_weapon_stats_aggregate_order_by {avg?: (player_aim_weapon_stats_avg_order_by | null),count?: (order_by | null),max?: (player_aim_weapon_stats_max_order_by | null),min?: (player_aim_weapon_stats_min_order_by | null),stddev?: (player_aim_weapon_stats_stddev_order_by | null),stddev_pop?: (player_aim_weapon_stats_stddev_pop_order_by | null),stddev_samp?: (player_aim_weapon_stats_stddev_samp_order_by | null),sum?: (player_aim_weapon_stats_sum_order_by | null),var_pop?: (player_aim_weapon_stats_var_pop_order_by | null),var_samp?: (player_aim_weapon_stats_var_samp_order_by | null),variance?: (player_aim_weapon_stats_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "player_aim_weapon_stats" */ -export interface player_aim_weapon_stats_arr_rel_insert_input {data: player_aim_weapon_stats_insert_input[], -/** upsert condition */ -on_conflict?: (player_aim_weapon_stats_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface player_aim_weapon_stats_avg_fieldsGenqlSelection{ - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - hits?: boolean | number - hits_spotted?: boolean | number - shots?: boolean | number - shots_spotted?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "player_aim_weapon_stats" */ -export interface player_aim_weapon_stats_avg_order_by {first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),hits?: (order_by | null),hits_spotted?: (order_by | null),shots?: (order_by | null),shots_spotted?: (order_by | null),steam_id?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "player_aim_weapon_stats". All fields are combined with a logical 'AND'. */ -export interface player_aim_weapon_stats_bool_exp {_and?: (player_aim_weapon_stats_bool_exp[] | null),_not?: (player_aim_weapon_stats_bool_exp | null),_or?: (player_aim_weapon_stats_bool_exp[] | null),first_bullet_hits?: (Int_comparison_exp | null),first_bullet_shots?: (Int_comparison_exp | null),hits?: (Int_comparison_exp | null),hits_spotted?: (Int_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_id?: (uuid_comparison_exp | null),player?: (players_bool_exp | null),shots?: (Int_comparison_exp | null),shots_spotted?: (Int_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),weapon_class?: (String_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "player_aim_weapon_stats" */ -export interface player_aim_weapon_stats_inc_input {first_bullet_hits?: (Scalars['Int'] | null),first_bullet_shots?: (Scalars['Int'] | null),hits?: (Scalars['Int'] | null),hits_spotted?: (Scalars['Int'] | null),shots?: (Scalars['Int'] | null),shots_spotted?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "player_aim_weapon_stats" */ -export interface player_aim_weapon_stats_insert_input {first_bullet_hits?: (Scalars['Int'] | null),first_bullet_shots?: (Scalars['Int'] | null),hits?: (Scalars['Int'] | null),hits_spotted?: (Scalars['Int'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_map?: (match_maps_obj_rel_insert_input | null),match_map_id?: (Scalars['uuid'] | null),player?: (players_obj_rel_insert_input | null),shots?: (Scalars['Int'] | null),shots_spotted?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null),weapon_class?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface player_aim_weapon_stats_max_fieldsGenqlSelection{ - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - hits?: boolean | number - hits_spotted?: boolean | number - match_id?: boolean | number - match_map_id?: boolean | number - shots?: boolean | number - shots_spotted?: boolean | number - steam_id?: boolean | number - weapon_class?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "player_aim_weapon_stats" */ -export interface player_aim_weapon_stats_max_order_by {first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),hits?: (order_by | null),hits_spotted?: (order_by | null),match_id?: (order_by | null),match_map_id?: (order_by | null),shots?: (order_by | null),shots_spotted?: (order_by | null),steam_id?: (order_by | null),weapon_class?: (order_by | null)} - - -/** aggregate min on columns */ -export interface player_aim_weapon_stats_min_fieldsGenqlSelection{ - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - hits?: boolean | number - hits_spotted?: boolean | number - match_id?: boolean | number - match_map_id?: boolean | number - shots?: boolean | number - shots_spotted?: boolean | number - steam_id?: boolean | number - weapon_class?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "player_aim_weapon_stats" */ -export interface player_aim_weapon_stats_min_order_by {first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),hits?: (order_by | null),hits_spotted?: (order_by | null),match_id?: (order_by | null),match_map_id?: (order_by | null),shots?: (order_by | null),shots_spotted?: (order_by | null),steam_id?: (order_by | null),weapon_class?: (order_by | null)} - - -/** response of any mutation on the table "player_aim_weapon_stats" */ -export interface player_aim_weapon_stats_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: player_aim_weapon_statsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "player_aim_weapon_stats" */ -export interface player_aim_weapon_stats_on_conflict {constraint: player_aim_weapon_stats_constraint,update_columns?: player_aim_weapon_stats_update_column[],where?: (player_aim_weapon_stats_bool_exp | null)} - - -/** Ordering options when selecting data from "player_aim_weapon_stats". */ -export interface player_aim_weapon_stats_order_by {first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),hits?: (order_by | null),hits_spotted?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_id?: (order_by | null),player?: (players_order_by | null),shots?: (order_by | null),shots_spotted?: (order_by | null),steam_id?: (order_by | null),weapon_class?: (order_by | null)} - - -/** primary key columns input for table: player_aim_weapon_stats */ -export interface player_aim_weapon_stats_pk_columns_input {match_map_id: Scalars['uuid'],steam_id: Scalars['bigint'],weapon_class: Scalars['String']} - - -/** input type for updating data in table "player_aim_weapon_stats" */ -export interface player_aim_weapon_stats_set_input {first_bullet_hits?: (Scalars['Int'] | null),first_bullet_shots?: (Scalars['Int'] | null),hits?: (Scalars['Int'] | null),hits_spotted?: (Scalars['Int'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),shots?: (Scalars['Int'] | null),shots_spotted?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null),weapon_class?: (Scalars['String'] | null)} - - -/** aggregate stddev on columns */ -export interface player_aim_weapon_stats_stddev_fieldsGenqlSelection{ - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - hits?: boolean | number - hits_spotted?: boolean | number - shots?: boolean | number - shots_spotted?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "player_aim_weapon_stats" */ -export interface player_aim_weapon_stats_stddev_order_by {first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),hits?: (order_by | null),hits_spotted?: (order_by | null),shots?: (order_by | null),shots_spotted?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface player_aim_weapon_stats_stddev_pop_fieldsGenqlSelection{ - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - hits?: boolean | number - hits_spotted?: boolean | number - shots?: boolean | number - shots_spotted?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "player_aim_weapon_stats" */ -export interface player_aim_weapon_stats_stddev_pop_order_by {first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),hits?: (order_by | null),hits_spotted?: (order_by | null),shots?: (order_by | null),shots_spotted?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface player_aim_weapon_stats_stddev_samp_fieldsGenqlSelection{ - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - hits?: boolean | number - hits_spotted?: boolean | number - shots?: boolean | number - shots_spotted?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "player_aim_weapon_stats" */ -export interface player_aim_weapon_stats_stddev_samp_order_by {first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),hits?: (order_by | null),hits_spotted?: (order_by | null),shots?: (order_by | null),shots_spotted?: (order_by | null),steam_id?: (order_by | null)} - - -/** Streaming cursor of the table "player_aim_weapon_stats" */ -export interface player_aim_weapon_stats_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: player_aim_weapon_stats_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface player_aim_weapon_stats_stream_cursor_value_input {first_bullet_hits?: (Scalars['Int'] | null),first_bullet_shots?: (Scalars['Int'] | null),hits?: (Scalars['Int'] | null),hits_spotted?: (Scalars['Int'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),shots?: (Scalars['Int'] | null),shots_spotted?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null),weapon_class?: (Scalars['String'] | null)} - - -/** aggregate sum on columns */ -export interface player_aim_weapon_stats_sum_fieldsGenqlSelection{ - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - hits?: boolean | number - hits_spotted?: boolean | number - shots?: boolean | number - shots_spotted?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "player_aim_weapon_stats" */ -export interface player_aim_weapon_stats_sum_order_by {first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),hits?: (order_by | null),hits_spotted?: (order_by | null),shots?: (order_by | null),shots_spotted?: (order_by | null),steam_id?: (order_by | null)} - -export interface player_aim_weapon_stats_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (player_aim_weapon_stats_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (player_aim_weapon_stats_set_input | null), -/** filter the rows which have to be updated */ -where: player_aim_weapon_stats_bool_exp} - - -/** aggregate var_pop on columns */ -export interface player_aim_weapon_stats_var_pop_fieldsGenqlSelection{ - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - hits?: boolean | number - hits_spotted?: boolean | number - shots?: boolean | number - shots_spotted?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "player_aim_weapon_stats" */ -export interface player_aim_weapon_stats_var_pop_order_by {first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),hits?: (order_by | null),hits_spotted?: (order_by | null),shots?: (order_by | null),shots_spotted?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface player_aim_weapon_stats_var_samp_fieldsGenqlSelection{ - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - hits?: boolean | number - hits_spotted?: boolean | number - shots?: boolean | number - shots_spotted?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "player_aim_weapon_stats" */ -export interface player_aim_weapon_stats_var_samp_order_by {first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),hits?: (order_by | null),hits_spotted?: (order_by | null),shots?: (order_by | null),shots_spotted?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface player_aim_weapon_stats_variance_fieldsGenqlSelection{ - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - hits?: boolean | number - hits_spotted?: boolean | number - shots?: boolean | number - shots_spotted?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "player_aim_weapon_stats" */ -export interface player_aim_weapon_stats_variance_order_by {first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),hits?: (order_by | null),hits_spotted?: (order_by | null),shots?: (order_by | null),shots_spotted?: (order_by | null),steam_id?: (order_by | null)} - - -/** columns and relationships of "player_assists" */ -export interface player_assistsGenqlSelection{ - /** An object relationship */ - attacked_player?: playersGenqlSelection - attacked_steam_id?: boolean | number - attacked_team?: boolean | number - attacker_steam_id?: boolean | number - attacker_team?: boolean | number - deleted_at?: boolean | number - flash?: boolean | number - /** A computed field, executes function "is_team_assist" */ - is_team_assist?: boolean | number - /** An object relationship */ - match?: matchesGenqlSelection - match_id?: boolean | number - /** An object relationship */ - match_map?: match_mapsGenqlSelection - match_map_id?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - round?: boolean | number - time?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "player_assists" */ -export interface player_assists_aggregateGenqlSelection{ - aggregate?: player_assists_aggregate_fieldsGenqlSelection - nodes?: player_assistsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface player_assists_aggregate_bool_exp {bool_and?: (player_assists_aggregate_bool_exp_bool_and | null),bool_or?: (player_assists_aggregate_bool_exp_bool_or | null),count?: (player_assists_aggregate_bool_exp_count | null)} - -export interface player_assists_aggregate_bool_exp_bool_and {arguments: player_assists_select_column_player_assists_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (player_assists_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface player_assists_aggregate_bool_exp_bool_or {arguments: player_assists_select_column_player_assists_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (player_assists_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface player_assists_aggregate_bool_exp_count {arguments?: (player_assists_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (player_assists_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "player_assists" */ -export interface player_assists_aggregate_fieldsGenqlSelection{ - avg?: player_assists_avg_fieldsGenqlSelection - count?: { __args: {columns?: (player_assists_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: player_assists_max_fieldsGenqlSelection - min?: player_assists_min_fieldsGenqlSelection - stddev?: player_assists_stddev_fieldsGenqlSelection - stddev_pop?: player_assists_stddev_pop_fieldsGenqlSelection - stddev_samp?: player_assists_stddev_samp_fieldsGenqlSelection - sum?: player_assists_sum_fieldsGenqlSelection - var_pop?: player_assists_var_pop_fieldsGenqlSelection - var_samp?: player_assists_var_samp_fieldsGenqlSelection - variance?: player_assists_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "player_assists" */ -export interface player_assists_aggregate_order_by {avg?: (player_assists_avg_order_by | null),count?: (order_by | null),max?: (player_assists_max_order_by | null),min?: (player_assists_min_order_by | null),stddev?: (player_assists_stddev_order_by | null),stddev_pop?: (player_assists_stddev_pop_order_by | null),stddev_samp?: (player_assists_stddev_samp_order_by | null),sum?: (player_assists_sum_order_by | null),var_pop?: (player_assists_var_pop_order_by | null),var_samp?: (player_assists_var_samp_order_by | null),variance?: (player_assists_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "player_assists" */ -export interface player_assists_arr_rel_insert_input {data: player_assists_insert_input[], -/** upsert condition */ -on_conflict?: (player_assists_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface player_assists_avg_fieldsGenqlSelection{ - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "player_assists" */ -export interface player_assists_avg_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),round?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "player_assists". All fields are combined with a logical 'AND'. */ -export interface player_assists_bool_exp {_and?: (player_assists_bool_exp[] | null),_not?: (player_assists_bool_exp | null),_or?: (player_assists_bool_exp[] | null),attacked_player?: (players_bool_exp | null),attacked_steam_id?: (bigint_comparison_exp | null),attacked_team?: (String_comparison_exp | null),attacker_steam_id?: (bigint_comparison_exp | null),attacker_team?: (String_comparison_exp | null),deleted_at?: (timestamptz_comparison_exp | null),flash?: (Boolean_comparison_exp | null),is_team_assist?: (Boolean_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_id?: (uuid_comparison_exp | null),player?: (players_bool_exp | null),round?: (Int_comparison_exp | null),time?: (timestamptz_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "player_assists" */ -export interface player_assists_inc_input {attacked_steam_id?: (Scalars['bigint'] | null),attacker_steam_id?: (Scalars['bigint'] | null),round?: (Scalars['Int'] | null)} - - -/** input type for inserting data into table "player_assists" */ -export interface player_assists_insert_input {attacked_player?: (players_obj_rel_insert_input | null),attacked_steam_id?: (Scalars['bigint'] | null),attacked_team?: (Scalars['String'] | null),attacker_steam_id?: (Scalars['bigint'] | null),attacker_team?: (Scalars['String'] | null),deleted_at?: (Scalars['timestamptz'] | null),flash?: (Scalars['Boolean'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_map?: (match_maps_obj_rel_insert_input | null),match_map_id?: (Scalars['uuid'] | null),player?: (players_obj_rel_insert_input | null),round?: (Scalars['Int'] | null),time?: (Scalars['timestamptz'] | null)} - - -/** aggregate max on columns */ -export interface player_assists_max_fieldsGenqlSelection{ - attacked_steam_id?: boolean | number - attacked_team?: boolean | number - attacker_steam_id?: boolean | number - attacker_team?: boolean | number - deleted_at?: boolean | number - match_id?: boolean | number - match_map_id?: boolean | number - round?: boolean | number - time?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "player_assists" */ -export interface player_assists_max_order_by {attacked_steam_id?: (order_by | null),attacked_team?: (order_by | null),attacker_steam_id?: (order_by | null),attacker_team?: (order_by | null),deleted_at?: (order_by | null),match_id?: (order_by | null),match_map_id?: (order_by | null),round?: (order_by | null),time?: (order_by | null)} - - -/** aggregate min on columns */ -export interface player_assists_min_fieldsGenqlSelection{ - attacked_steam_id?: boolean | number - attacked_team?: boolean | number - attacker_steam_id?: boolean | number - attacker_team?: boolean | number - deleted_at?: boolean | number - match_id?: boolean | number - match_map_id?: boolean | number - round?: boolean | number - time?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "player_assists" */ -export interface player_assists_min_order_by {attacked_steam_id?: (order_by | null),attacked_team?: (order_by | null),attacker_steam_id?: (order_by | null),attacker_team?: (order_by | null),deleted_at?: (order_by | null),match_id?: (order_by | null),match_map_id?: (order_by | null),round?: (order_by | null),time?: (order_by | null)} - - -/** response of any mutation on the table "player_assists" */ -export interface player_assists_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: player_assistsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "player_assists" */ -export interface player_assists_on_conflict {constraint: player_assists_constraint,update_columns?: player_assists_update_column[],where?: (player_assists_bool_exp | null)} - - -/** Ordering options when selecting data from "player_assists". */ -export interface player_assists_order_by {attacked_player?: (players_order_by | null),attacked_steam_id?: (order_by | null),attacked_team?: (order_by | null),attacker_steam_id?: (order_by | null),attacker_team?: (order_by | null),deleted_at?: (order_by | null),flash?: (order_by | null),is_team_assist?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_id?: (order_by | null),player?: (players_order_by | null),round?: (order_by | null),time?: (order_by | null)} - - -/** primary key columns input for table: player_assists */ -export interface player_assists_pk_columns_input {attacked_steam_id: Scalars['bigint'],attacker_steam_id: Scalars['bigint'],match_map_id: Scalars['uuid'],time: Scalars['timestamptz']} - - -/** input type for updating data in table "player_assists" */ -export interface player_assists_set_input {attacked_steam_id?: (Scalars['bigint'] | null),attacked_team?: (Scalars['String'] | null),attacker_steam_id?: (Scalars['bigint'] | null),attacker_team?: (Scalars['String'] | null),deleted_at?: (Scalars['timestamptz'] | null),flash?: (Scalars['Boolean'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),round?: (Scalars['Int'] | null),time?: (Scalars['timestamptz'] | null)} - - -/** aggregate stddev on columns */ -export interface player_assists_stddev_fieldsGenqlSelection{ - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "player_assists" */ -export interface player_assists_stddev_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),round?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface player_assists_stddev_pop_fieldsGenqlSelection{ - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "player_assists" */ -export interface player_assists_stddev_pop_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),round?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface player_assists_stddev_samp_fieldsGenqlSelection{ - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "player_assists" */ -export interface player_assists_stddev_samp_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),round?: (order_by | null)} - - -/** Streaming cursor of the table "player_assists" */ -export interface player_assists_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: player_assists_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface player_assists_stream_cursor_value_input {attacked_steam_id?: (Scalars['bigint'] | null),attacked_team?: (Scalars['String'] | null),attacker_steam_id?: (Scalars['bigint'] | null),attacker_team?: (Scalars['String'] | null),deleted_at?: (Scalars['timestamptz'] | null),flash?: (Scalars['Boolean'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),round?: (Scalars['Int'] | null),time?: (Scalars['timestamptz'] | null)} - - -/** aggregate sum on columns */ -export interface player_assists_sum_fieldsGenqlSelection{ - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "player_assists" */ -export interface player_assists_sum_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),round?: (order_by | null)} - -export interface player_assists_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (player_assists_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (player_assists_set_input | null), -/** filter the rows which have to be updated */ -where: player_assists_bool_exp} - - -/** aggregate var_pop on columns */ -export interface player_assists_var_pop_fieldsGenqlSelection{ - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "player_assists" */ -export interface player_assists_var_pop_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),round?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface player_assists_var_samp_fieldsGenqlSelection{ - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "player_assists" */ -export interface player_assists_var_samp_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),round?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface player_assists_variance_fieldsGenqlSelection{ - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "player_assists" */ -export interface player_assists_variance_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),round?: (order_by | null)} - - -/** columns and relationships of "player_career_stats_v" */ -export interface player_career_stats_vGenqlSelection{ - accuracy?: boolean | number - accuracy_spotted?: boolean | number - counter_strafe_pct?: boolean | number - crosshair_deg?: boolean | number - enemy_blind_pr?: boolean | number - flash_assists_pr?: boolean | number - hs_pct?: boolean | number - kast_pct?: boolean | number - maps?: boolean | number - premier_rank?: boolean | number - rounds?: boolean | number - steam_id?: boolean | number - survival_pct?: boolean | number - time_to_damage_s?: boolean | number - traded_death_pct?: boolean | number - util_efficiency?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "player_career_stats_v" */ -export interface player_career_stats_v_aggregateGenqlSelection{ - aggregate?: player_career_stats_v_aggregate_fieldsGenqlSelection - nodes?: player_career_stats_vGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "player_career_stats_v" */ -export interface player_career_stats_v_aggregate_fieldsGenqlSelection{ - avg?: player_career_stats_v_avg_fieldsGenqlSelection - count?: { __args: {columns?: (player_career_stats_v_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: player_career_stats_v_max_fieldsGenqlSelection - min?: player_career_stats_v_min_fieldsGenqlSelection - stddev?: player_career_stats_v_stddev_fieldsGenqlSelection - stddev_pop?: player_career_stats_v_stddev_pop_fieldsGenqlSelection - stddev_samp?: player_career_stats_v_stddev_samp_fieldsGenqlSelection - sum?: player_career_stats_v_sum_fieldsGenqlSelection - var_pop?: player_career_stats_v_var_pop_fieldsGenqlSelection - var_samp?: player_career_stats_v_var_samp_fieldsGenqlSelection - variance?: player_career_stats_v_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface player_career_stats_v_avg_fieldsGenqlSelection{ - accuracy?: boolean | number - accuracy_spotted?: boolean | number - counter_strafe_pct?: boolean | number - crosshair_deg?: boolean | number - enemy_blind_pr?: boolean | number - flash_assists_pr?: boolean | number - hs_pct?: boolean | number - kast_pct?: boolean | number - maps?: boolean | number - premier_rank?: boolean | number - rounds?: boolean | number - steam_id?: boolean | number - survival_pct?: boolean | number - time_to_damage_s?: boolean | number - traded_death_pct?: boolean | number - util_efficiency?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "player_career_stats_v". All fields are combined with a logical 'AND'. */ -export interface player_career_stats_v_bool_exp {_and?: (player_career_stats_v_bool_exp[] | null),_not?: (player_career_stats_v_bool_exp | null),_or?: (player_career_stats_v_bool_exp[] | null),accuracy?: (numeric_comparison_exp | null),accuracy_spotted?: (numeric_comparison_exp | null),counter_strafe_pct?: (numeric_comparison_exp | null),crosshair_deg?: (numeric_comparison_exp | null),enemy_blind_pr?: (numeric_comparison_exp | null),flash_assists_pr?: (numeric_comparison_exp | null),hs_pct?: (numeric_comparison_exp | null),kast_pct?: (numeric_comparison_exp | null),maps?: (Int_comparison_exp | null),premier_rank?: (Int_comparison_exp | null),rounds?: (Int_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),survival_pct?: (numeric_comparison_exp | null),time_to_damage_s?: (numeric_comparison_exp | null),traded_death_pct?: (numeric_comparison_exp | null),util_efficiency?: (numeric_comparison_exp | null)} - - -/** aggregate max on columns */ -export interface player_career_stats_v_max_fieldsGenqlSelection{ - accuracy?: boolean | number - accuracy_spotted?: boolean | number - counter_strafe_pct?: boolean | number - crosshair_deg?: boolean | number - enemy_blind_pr?: boolean | number - flash_assists_pr?: boolean | number - hs_pct?: boolean | number - kast_pct?: boolean | number - maps?: boolean | number - premier_rank?: boolean | number - rounds?: boolean | number - steam_id?: boolean | number - survival_pct?: boolean | number - time_to_damage_s?: boolean | number - traded_death_pct?: boolean | number - util_efficiency?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface player_career_stats_v_min_fieldsGenqlSelection{ - accuracy?: boolean | number - accuracy_spotted?: boolean | number - counter_strafe_pct?: boolean | number - crosshair_deg?: boolean | number - enemy_blind_pr?: boolean | number - flash_assists_pr?: boolean | number - hs_pct?: boolean | number - kast_pct?: boolean | number - maps?: boolean | number - premier_rank?: boolean | number - rounds?: boolean | number - steam_id?: boolean | number - survival_pct?: boolean | number - time_to_damage_s?: boolean | number - traded_death_pct?: boolean | number - util_efficiency?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Ordering options when selecting data from "player_career_stats_v". */ -export interface player_career_stats_v_order_by {accuracy?: (order_by | null),accuracy_spotted?: (order_by | null),counter_strafe_pct?: (order_by | null),crosshair_deg?: (order_by | null),enemy_blind_pr?: (order_by | null),flash_assists_pr?: (order_by | null),hs_pct?: (order_by | null),kast_pct?: (order_by | null),maps?: (order_by | null),premier_rank?: (order_by | null),rounds?: (order_by | null),steam_id?: (order_by | null),survival_pct?: (order_by | null),time_to_damage_s?: (order_by | null),traded_death_pct?: (order_by | null),util_efficiency?: (order_by | null)} - - -/** aggregate stddev on columns */ -export interface player_career_stats_v_stddev_fieldsGenqlSelection{ - accuracy?: boolean | number - accuracy_spotted?: boolean | number - counter_strafe_pct?: boolean | number - crosshair_deg?: boolean | number - enemy_blind_pr?: boolean | number - flash_assists_pr?: boolean | number - hs_pct?: boolean | number - kast_pct?: boolean | number - maps?: boolean | number - premier_rank?: boolean | number - rounds?: boolean | number - steam_id?: boolean | number - survival_pct?: boolean | number - time_to_damage_s?: boolean | number - traded_death_pct?: boolean | number - util_efficiency?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface player_career_stats_v_stddev_pop_fieldsGenqlSelection{ - accuracy?: boolean | number - accuracy_spotted?: boolean | number - counter_strafe_pct?: boolean | number - crosshair_deg?: boolean | number - enemy_blind_pr?: boolean | number - flash_assists_pr?: boolean | number - hs_pct?: boolean | number - kast_pct?: boolean | number - maps?: boolean | number - premier_rank?: boolean | number - rounds?: boolean | number - steam_id?: boolean | number - survival_pct?: boolean | number - time_to_damage_s?: boolean | number - traded_death_pct?: boolean | number - util_efficiency?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface player_career_stats_v_stddev_samp_fieldsGenqlSelection{ - accuracy?: boolean | number - accuracy_spotted?: boolean | number - counter_strafe_pct?: boolean | number - crosshair_deg?: boolean | number - enemy_blind_pr?: boolean | number - flash_assists_pr?: boolean | number - hs_pct?: boolean | number - kast_pct?: boolean | number - maps?: boolean | number - premier_rank?: boolean | number - rounds?: boolean | number - steam_id?: boolean | number - survival_pct?: boolean | number - time_to_damage_s?: boolean | number - traded_death_pct?: boolean | number - util_efficiency?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "player_career_stats_v" */ -export interface player_career_stats_v_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: player_career_stats_v_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface player_career_stats_v_stream_cursor_value_input {accuracy?: (Scalars['numeric'] | null),accuracy_spotted?: (Scalars['numeric'] | null),counter_strafe_pct?: (Scalars['numeric'] | null),crosshair_deg?: (Scalars['numeric'] | null),enemy_blind_pr?: (Scalars['numeric'] | null),flash_assists_pr?: (Scalars['numeric'] | null),hs_pct?: (Scalars['numeric'] | null),kast_pct?: (Scalars['numeric'] | null),maps?: (Scalars['Int'] | null),premier_rank?: (Scalars['Int'] | null),rounds?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null),survival_pct?: (Scalars['numeric'] | null),time_to_damage_s?: (Scalars['numeric'] | null),traded_death_pct?: (Scalars['numeric'] | null),util_efficiency?: (Scalars['numeric'] | null)} - - -/** aggregate sum on columns */ -export interface player_career_stats_v_sum_fieldsGenqlSelection{ - accuracy?: boolean | number - accuracy_spotted?: boolean | number - counter_strafe_pct?: boolean | number - crosshair_deg?: boolean | number - enemy_blind_pr?: boolean | number - flash_assists_pr?: boolean | number - hs_pct?: boolean | number - kast_pct?: boolean | number - maps?: boolean | number - premier_rank?: boolean | number - rounds?: boolean | number - steam_id?: boolean | number - survival_pct?: boolean | number - time_to_damage_s?: boolean | number - traded_death_pct?: boolean | number - util_efficiency?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_pop on columns */ -export interface player_career_stats_v_var_pop_fieldsGenqlSelection{ - accuracy?: boolean | number - accuracy_spotted?: boolean | number - counter_strafe_pct?: boolean | number - crosshair_deg?: boolean | number - enemy_blind_pr?: boolean | number - flash_assists_pr?: boolean | number - hs_pct?: boolean | number - kast_pct?: boolean | number - maps?: boolean | number - premier_rank?: boolean | number - rounds?: boolean | number - steam_id?: boolean | number - survival_pct?: boolean | number - time_to_damage_s?: boolean | number - traded_death_pct?: boolean | number - util_efficiency?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface player_career_stats_v_var_samp_fieldsGenqlSelection{ - accuracy?: boolean | number - accuracy_spotted?: boolean | number - counter_strafe_pct?: boolean | number - crosshair_deg?: boolean | number - enemy_blind_pr?: boolean | number - flash_assists_pr?: boolean | number - hs_pct?: boolean | number - kast_pct?: boolean | number - maps?: boolean | number - premier_rank?: boolean | number - rounds?: boolean | number - steam_id?: boolean | number - survival_pct?: boolean | number - time_to_damage_s?: boolean | number - traded_death_pct?: boolean | number - util_efficiency?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface player_career_stats_v_variance_fieldsGenqlSelection{ - accuracy?: boolean | number - accuracy_spotted?: boolean | number - counter_strafe_pct?: boolean | number - crosshair_deg?: boolean | number - enemy_blind_pr?: boolean | number - flash_assists_pr?: boolean | number - hs_pct?: boolean | number - kast_pct?: boolean | number - maps?: boolean | number - premier_rank?: boolean | number - rounds?: boolean | number - steam_id?: boolean | number - survival_pct?: boolean | number - time_to_damage_s?: boolean | number - traded_death_pct?: boolean | number - util_efficiency?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "player_damages" */ -export interface player_damagesGenqlSelection{ - armor?: boolean | number - attacked_location?: boolean | number - attacked_location_coordinates?: boolean | number - /** An object relationship */ - attacked_player?: playersGenqlSelection - attacked_steam_id?: boolean | number - attacked_team?: boolean | number - attacker_location?: boolean | number - attacker_location_coordinates?: boolean | number - attacker_steam_id?: boolean | number - attacker_team?: boolean | number - damage?: boolean | number - damage_armor?: boolean | number - deleted_at?: boolean | number - health?: boolean | number - hitgroup?: boolean | number - id?: boolean | number - /** An object relationship */ - match?: matchesGenqlSelection - match_id?: boolean | number - /** An object relationship */ - match_map?: match_mapsGenqlSelection - match_map_id?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - round?: boolean | number - /** A computed field, executes function "is_team_damage" */ - team_damage?: boolean | number - time?: boolean | number - with?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "player_damages" */ -export interface player_damages_aggregateGenqlSelection{ - aggregate?: player_damages_aggregate_fieldsGenqlSelection - nodes?: player_damagesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface player_damages_aggregate_bool_exp {count?: (player_damages_aggregate_bool_exp_count | null)} - -export interface player_damages_aggregate_bool_exp_count {arguments?: (player_damages_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (player_damages_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "player_damages" */ -export interface player_damages_aggregate_fieldsGenqlSelection{ - avg?: player_damages_avg_fieldsGenqlSelection - count?: { __args: {columns?: (player_damages_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: player_damages_max_fieldsGenqlSelection - min?: player_damages_min_fieldsGenqlSelection - stddev?: player_damages_stddev_fieldsGenqlSelection - stddev_pop?: player_damages_stddev_pop_fieldsGenqlSelection - stddev_samp?: player_damages_stddev_samp_fieldsGenqlSelection - sum?: player_damages_sum_fieldsGenqlSelection - var_pop?: player_damages_var_pop_fieldsGenqlSelection - var_samp?: player_damages_var_samp_fieldsGenqlSelection - variance?: player_damages_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "player_damages" */ -export interface player_damages_aggregate_order_by {avg?: (player_damages_avg_order_by | null),count?: (order_by | null),max?: (player_damages_max_order_by | null),min?: (player_damages_min_order_by | null),stddev?: (player_damages_stddev_order_by | null),stddev_pop?: (player_damages_stddev_pop_order_by | null),stddev_samp?: (player_damages_stddev_samp_order_by | null),sum?: (player_damages_sum_order_by | null),var_pop?: (player_damages_var_pop_order_by | null),var_samp?: (player_damages_var_samp_order_by | null),variance?: (player_damages_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "player_damages" */ -export interface player_damages_arr_rel_insert_input {data: player_damages_insert_input[], -/** upsert condition */ -on_conflict?: (player_damages_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface player_damages_avg_fieldsGenqlSelection{ - armor?: boolean | number - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - damage?: boolean | number - damage_armor?: boolean | number - health?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "player_damages" */ -export interface player_damages_avg_order_by {armor?: (order_by | null),attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),damage?: (order_by | null),damage_armor?: (order_by | null),health?: (order_by | null),round?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "player_damages". All fields are combined with a logical 'AND'. */ -export interface player_damages_bool_exp {_and?: (player_damages_bool_exp[] | null),_not?: (player_damages_bool_exp | null),_or?: (player_damages_bool_exp[] | null),armor?: (Int_comparison_exp | null),attacked_location?: (String_comparison_exp | null),attacked_location_coordinates?: (String_comparison_exp | null),attacked_player?: (players_bool_exp | null),attacked_steam_id?: (bigint_comparison_exp | null),attacked_team?: (String_comparison_exp | null),attacker_location?: (String_comparison_exp | null),attacker_location_coordinates?: (String_comparison_exp | null),attacker_steam_id?: (bigint_comparison_exp | null),attacker_team?: (String_comparison_exp | null),damage?: (Int_comparison_exp | null),damage_armor?: (Int_comparison_exp | null),deleted_at?: (timestamptz_comparison_exp | null),health?: (Int_comparison_exp | null),hitgroup?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_id?: (uuid_comparison_exp | null),player?: (players_bool_exp | null),round?: (numeric_comparison_exp | null),team_damage?: (Boolean_comparison_exp | null),time?: (timestamptz_comparison_exp | null),with?: (String_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "player_damages" */ -export interface player_damages_inc_input {armor?: (Scalars['Int'] | null),attacked_steam_id?: (Scalars['bigint'] | null),attacker_steam_id?: (Scalars['bigint'] | null),damage?: (Scalars['Int'] | null),damage_armor?: (Scalars['Int'] | null),health?: (Scalars['Int'] | null),round?: (Scalars['numeric'] | null)} - - -/** input type for inserting data into table "player_damages" */ -export interface player_damages_insert_input {armor?: (Scalars['Int'] | null),attacked_location?: (Scalars['String'] | null),attacked_location_coordinates?: (Scalars['String'] | null),attacked_player?: (players_obj_rel_insert_input | null),attacked_steam_id?: (Scalars['bigint'] | null),attacked_team?: (Scalars['String'] | null),attacker_location?: (Scalars['String'] | null),attacker_location_coordinates?: (Scalars['String'] | null),attacker_steam_id?: (Scalars['bigint'] | null),attacker_team?: (Scalars['String'] | null),damage?: (Scalars['Int'] | null),damage_armor?: (Scalars['Int'] | null),deleted_at?: (Scalars['timestamptz'] | null),health?: (Scalars['Int'] | null),hitgroup?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_map?: (match_maps_obj_rel_insert_input | null),match_map_id?: (Scalars['uuid'] | null),player?: (players_obj_rel_insert_input | null),round?: (Scalars['numeric'] | null),time?: (Scalars['timestamptz'] | null),with?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface player_damages_max_fieldsGenqlSelection{ - armor?: boolean | number - attacked_location?: boolean | number - attacked_location_coordinates?: boolean | number - attacked_steam_id?: boolean | number - attacked_team?: boolean | number - attacker_location?: boolean | number - attacker_location_coordinates?: boolean | number - attacker_steam_id?: boolean | number - attacker_team?: boolean | number - damage?: boolean | number - damage_armor?: boolean | number - deleted_at?: boolean | number - health?: boolean | number - hitgroup?: boolean | number - id?: boolean | number - match_id?: boolean | number - match_map_id?: boolean | number - round?: boolean | number - time?: boolean | number - with?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "player_damages" */ -export interface player_damages_max_order_by {armor?: (order_by | null),attacked_location?: (order_by | null),attacked_location_coordinates?: (order_by | null),attacked_steam_id?: (order_by | null),attacked_team?: (order_by | null),attacker_location?: (order_by | null),attacker_location_coordinates?: (order_by | null),attacker_steam_id?: (order_by | null),attacker_team?: (order_by | null),damage?: (order_by | null),damage_armor?: (order_by | null),deleted_at?: (order_by | null),health?: (order_by | null),hitgroup?: (order_by | null),id?: (order_by | null),match_id?: (order_by | null),match_map_id?: (order_by | null),round?: (order_by | null),time?: (order_by | null),with?: (order_by | null)} - - -/** aggregate min on columns */ -export interface player_damages_min_fieldsGenqlSelection{ - armor?: boolean | number - attacked_location?: boolean | number - attacked_location_coordinates?: boolean | number - attacked_steam_id?: boolean | number - attacked_team?: boolean | number - attacker_location?: boolean | number - attacker_location_coordinates?: boolean | number - attacker_steam_id?: boolean | number - attacker_team?: boolean | number - damage?: boolean | number - damage_armor?: boolean | number - deleted_at?: boolean | number - health?: boolean | number - hitgroup?: boolean | number - id?: boolean | number - match_id?: boolean | number - match_map_id?: boolean | number - round?: boolean | number - time?: boolean | number - with?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "player_damages" */ -export interface player_damages_min_order_by {armor?: (order_by | null),attacked_location?: (order_by | null),attacked_location_coordinates?: (order_by | null),attacked_steam_id?: (order_by | null),attacked_team?: (order_by | null),attacker_location?: (order_by | null),attacker_location_coordinates?: (order_by | null),attacker_steam_id?: (order_by | null),attacker_team?: (order_by | null),damage?: (order_by | null),damage_armor?: (order_by | null),deleted_at?: (order_by | null),health?: (order_by | null),hitgroup?: (order_by | null),id?: (order_by | null),match_id?: (order_by | null),match_map_id?: (order_by | null),round?: (order_by | null),time?: (order_by | null),with?: (order_by | null)} - - -/** response of any mutation on the table "player_damages" */ -export interface player_damages_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: player_damagesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "player_damages" */ -export interface player_damages_on_conflict {constraint: player_damages_constraint,update_columns?: player_damages_update_column[],where?: (player_damages_bool_exp | null)} - - -/** Ordering options when selecting data from "player_damages". */ -export interface player_damages_order_by {armor?: (order_by | null),attacked_location?: (order_by | null),attacked_location_coordinates?: (order_by | null),attacked_player?: (players_order_by | null),attacked_steam_id?: (order_by | null),attacked_team?: (order_by | null),attacker_location?: (order_by | null),attacker_location_coordinates?: (order_by | null),attacker_steam_id?: (order_by | null),attacker_team?: (order_by | null),damage?: (order_by | null),damage_armor?: (order_by | null),deleted_at?: (order_by | null),health?: (order_by | null),hitgroup?: (order_by | null),id?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_id?: (order_by | null),player?: (players_order_by | null),round?: (order_by | null),team_damage?: (order_by | null),time?: (order_by | null),with?: (order_by | null)} - - -/** primary key columns input for table: player_damages */ -export interface player_damages_pk_columns_input {id: Scalars['uuid'],match_map_id: Scalars['uuid'],time: Scalars['timestamptz']} - - -/** input type for updating data in table "player_damages" */ -export interface player_damages_set_input {armor?: (Scalars['Int'] | null),attacked_location?: (Scalars['String'] | null),attacked_location_coordinates?: (Scalars['String'] | null),attacked_steam_id?: (Scalars['bigint'] | null),attacked_team?: (Scalars['String'] | null),attacker_location?: (Scalars['String'] | null),attacker_location_coordinates?: (Scalars['String'] | null),attacker_steam_id?: (Scalars['bigint'] | null),attacker_team?: (Scalars['String'] | null),damage?: (Scalars['Int'] | null),damage_armor?: (Scalars['Int'] | null),deleted_at?: (Scalars['timestamptz'] | null),health?: (Scalars['Int'] | null),hitgroup?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),round?: (Scalars['numeric'] | null),time?: (Scalars['timestamptz'] | null),with?: (Scalars['String'] | null)} - - -/** aggregate stddev on columns */ -export interface player_damages_stddev_fieldsGenqlSelection{ - armor?: boolean | number - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - damage?: boolean | number - damage_armor?: boolean | number - health?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "player_damages" */ -export interface player_damages_stddev_order_by {armor?: (order_by | null),attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),damage?: (order_by | null),damage_armor?: (order_by | null),health?: (order_by | null),round?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface player_damages_stddev_pop_fieldsGenqlSelection{ - armor?: boolean | number - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - damage?: boolean | number - damage_armor?: boolean | number - health?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "player_damages" */ -export interface player_damages_stddev_pop_order_by {armor?: (order_by | null),attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),damage?: (order_by | null),damage_armor?: (order_by | null),health?: (order_by | null),round?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface player_damages_stddev_samp_fieldsGenqlSelection{ - armor?: boolean | number - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - damage?: boolean | number - damage_armor?: boolean | number - health?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "player_damages" */ -export interface player_damages_stddev_samp_order_by {armor?: (order_by | null),attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),damage?: (order_by | null),damage_armor?: (order_by | null),health?: (order_by | null),round?: (order_by | null)} - - -/** Streaming cursor of the table "player_damages" */ -export interface player_damages_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: player_damages_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface player_damages_stream_cursor_value_input {armor?: (Scalars['Int'] | null),attacked_location?: (Scalars['String'] | null),attacked_location_coordinates?: (Scalars['String'] | null),attacked_steam_id?: (Scalars['bigint'] | null),attacked_team?: (Scalars['String'] | null),attacker_location?: (Scalars['String'] | null),attacker_location_coordinates?: (Scalars['String'] | null),attacker_steam_id?: (Scalars['bigint'] | null),attacker_team?: (Scalars['String'] | null),damage?: (Scalars['Int'] | null),damage_armor?: (Scalars['Int'] | null),deleted_at?: (Scalars['timestamptz'] | null),health?: (Scalars['Int'] | null),hitgroup?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),round?: (Scalars['numeric'] | null),time?: (Scalars['timestamptz'] | null),with?: (Scalars['String'] | null)} - - -/** aggregate sum on columns */ -export interface player_damages_sum_fieldsGenqlSelection{ - armor?: boolean | number - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - damage?: boolean | number - damage_armor?: boolean | number - health?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "player_damages" */ -export interface player_damages_sum_order_by {armor?: (order_by | null),attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),damage?: (order_by | null),damage_armor?: (order_by | null),health?: (order_by | null),round?: (order_by | null)} - -export interface player_damages_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (player_damages_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (player_damages_set_input | null), -/** filter the rows which have to be updated */ -where: player_damages_bool_exp} - - -/** aggregate var_pop on columns */ -export interface player_damages_var_pop_fieldsGenqlSelection{ - armor?: boolean | number - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - damage?: boolean | number - damage_armor?: boolean | number - health?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "player_damages" */ -export interface player_damages_var_pop_order_by {armor?: (order_by | null),attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),damage?: (order_by | null),damage_armor?: (order_by | null),health?: (order_by | null),round?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface player_damages_var_samp_fieldsGenqlSelection{ - armor?: boolean | number - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - damage?: boolean | number - damage_armor?: boolean | number - health?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "player_damages" */ -export interface player_damages_var_samp_order_by {armor?: (order_by | null),attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),damage?: (order_by | null),damage_armor?: (order_by | null),health?: (order_by | null),round?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface player_damages_variance_fieldsGenqlSelection{ - armor?: boolean | number - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - damage?: boolean | number - damage_armor?: boolean | number - health?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "player_damages" */ -export interface player_damages_variance_order_by {armor?: (order_by | null),attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),damage?: (order_by | null),damage_armor?: (order_by | null),health?: (order_by | null),round?: (order_by | null)} - - -/** columns and relationships of "player_elo" */ -export interface player_eloGenqlSelection{ - actual_score?: boolean | number - assists?: boolean | number - change?: boolean | number - created_at?: boolean | number - current?: boolean | number - damage?: boolean | number - damage_percent?: boolean | number - deaths?: boolean | number - expected_score?: boolean | number - impact?: boolean | number - k_factor?: boolean | number - kda?: boolean | number - kills?: boolean | number - map_losses?: boolean | number - map_wins?: boolean | number - /** An object relationship */ - match?: matchesGenqlSelection - match_id?: boolean | number - opponent_team_elo_avg?: boolean | number - performance_multiplier?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - player_team_elo_avg?: boolean | number - rating_for_expected?: boolean | number - /** An object relationship */ - season?: seasonsGenqlSelection - season_id?: boolean | number - series_multiplier?: boolean | number - steam_id?: boolean | number - team_avg_kda?: boolean | number - type?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "player_elo" */ -export interface player_elo_aggregateGenqlSelection{ - aggregate?: player_elo_aggregate_fieldsGenqlSelection - nodes?: player_eloGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "player_elo" */ -export interface player_elo_aggregate_fieldsGenqlSelection{ - avg?: player_elo_avg_fieldsGenqlSelection - count?: { __args: {columns?: (player_elo_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: player_elo_max_fieldsGenqlSelection - min?: player_elo_min_fieldsGenqlSelection - stddev?: player_elo_stddev_fieldsGenqlSelection - stddev_pop?: player_elo_stddev_pop_fieldsGenqlSelection - stddev_samp?: player_elo_stddev_samp_fieldsGenqlSelection - sum?: player_elo_sum_fieldsGenqlSelection - var_pop?: player_elo_var_pop_fieldsGenqlSelection - var_samp?: player_elo_var_samp_fieldsGenqlSelection - variance?: player_elo_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface player_elo_avg_fieldsGenqlSelection{ - actual_score?: boolean | number - assists?: boolean | number - change?: boolean | number - current?: boolean | number - damage?: boolean | number - damage_percent?: boolean | number - deaths?: boolean | number - expected_score?: boolean | number - impact?: boolean | number - k_factor?: boolean | number - kda?: boolean | number - kills?: boolean | number - map_losses?: boolean | number - map_wins?: boolean | number - opponent_team_elo_avg?: boolean | number - performance_multiplier?: boolean | number - player_team_elo_avg?: boolean | number - rating_for_expected?: boolean | number - series_multiplier?: boolean | number - steam_id?: boolean | number - team_avg_kda?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "player_elo". All fields are combined with a logical 'AND'. */ -export interface player_elo_bool_exp {_and?: (player_elo_bool_exp[] | null),_not?: (player_elo_bool_exp | null),_or?: (player_elo_bool_exp[] | null),actual_score?: (float8_comparison_exp | null),assists?: (Int_comparison_exp | null),change?: (numeric_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),current?: (numeric_comparison_exp | null),damage?: (Int_comparison_exp | null),damage_percent?: (float8_comparison_exp | null),deaths?: (Int_comparison_exp | null),expected_score?: (float8_comparison_exp | null),impact?: (numeric_comparison_exp | null),k_factor?: (Int_comparison_exp | null),kda?: (float8_comparison_exp | null),kills?: (Int_comparison_exp | null),map_losses?: (Int_comparison_exp | null),map_wins?: (Int_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),opponent_team_elo_avg?: (float8_comparison_exp | null),performance_multiplier?: (float8_comparison_exp | null),player?: (players_bool_exp | null),player_team_elo_avg?: (float8_comparison_exp | null),rating_for_expected?: (float8_comparison_exp | null),season?: (seasons_bool_exp | null),season_id?: (uuid_comparison_exp | null),series_multiplier?: (Int_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),team_avg_kda?: (float8_comparison_exp | null),type?: (e_match_types_enum_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "player_elo" */ -export interface player_elo_inc_input {actual_score?: (Scalars['float8'] | null),assists?: (Scalars['Int'] | null),change?: (Scalars['numeric'] | null),current?: (Scalars['numeric'] | null),damage?: (Scalars['Int'] | null),damage_percent?: (Scalars['float8'] | null),deaths?: (Scalars['Int'] | null),expected_score?: (Scalars['float8'] | null),impact?: (Scalars['numeric'] | 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_team_elo_avg?: (Scalars['float8'] | null),rating_for_expected?: (Scalars['float8'] | null),series_multiplier?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null),team_avg_kda?: (Scalars['float8'] | null)} - - -/** input type for inserting data into table "player_elo" */ -export interface player_elo_insert_input {actual_score?: (Scalars['float8'] | null),assists?: (Scalars['Int'] | null),change?: (Scalars['numeric'] | null),created_at?: (Scalars['timestamptz'] | null),current?: (Scalars['numeric'] | null),damage?: (Scalars['Int'] | null),damage_percent?: (Scalars['float8'] | null),deaths?: (Scalars['Int'] | null),expected_score?: (Scalars['float8'] | null),impact?: (Scalars['numeric'] | null),k_factor?: (Scalars['Int'] | null),kda?: (Scalars['float8'] | null),kills?: (Scalars['Int'] | null),map_losses?: (Scalars['Int'] | null),map_wins?: (Scalars['Int'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),opponent_team_elo_avg?: (Scalars['float8'] | null),performance_multiplier?: (Scalars['float8'] | null),player?: (players_obj_rel_insert_input | null),player_team_elo_avg?: (Scalars['float8'] | null),rating_for_expected?: (Scalars['float8'] | null),season?: (seasons_obj_rel_insert_input | null),season_id?: (Scalars['uuid'] | null),series_multiplier?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null),team_avg_kda?: (Scalars['float8'] | null),type?: (e_match_types_enum | null)} - - -/** aggregate max on columns */ -export interface player_elo_max_fieldsGenqlSelection{ - actual_score?: boolean | number - assists?: boolean | number - change?: boolean | number - created_at?: boolean | number - current?: boolean | number - damage?: boolean | number - damage_percent?: boolean | number - deaths?: boolean | number - expected_score?: boolean | number - impact?: boolean | number - k_factor?: boolean | number - kda?: boolean | number - kills?: boolean | number - map_losses?: boolean | number - map_wins?: boolean | number - match_id?: boolean | number - opponent_team_elo_avg?: boolean | number - performance_multiplier?: boolean | number - player_team_elo_avg?: boolean | number - rating_for_expected?: boolean | number - season_id?: boolean | number - series_multiplier?: boolean | number - steam_id?: boolean | number - team_avg_kda?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface player_elo_min_fieldsGenqlSelection{ - actual_score?: boolean | number - assists?: boolean | number - change?: boolean | number - created_at?: boolean | number - current?: boolean | number - damage?: boolean | number - damage_percent?: boolean | number - deaths?: boolean | number - expected_score?: boolean | number - impact?: boolean | number - k_factor?: boolean | number - kda?: boolean | number - kills?: boolean | number - map_losses?: boolean | number - map_wins?: boolean | number - match_id?: boolean | number - opponent_team_elo_avg?: boolean | number - performance_multiplier?: boolean | number - player_team_elo_avg?: boolean | number - rating_for_expected?: boolean | number - season_id?: boolean | number - series_multiplier?: boolean | number - steam_id?: boolean | number - team_avg_kda?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "player_elo" */ -export interface player_elo_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: player_eloGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "player_elo" */ -export interface player_elo_on_conflict {constraint: player_elo_constraint,update_columns?: player_elo_update_column[],where?: (player_elo_bool_exp | null)} - - -/** Ordering options when selecting data from "player_elo". */ -export interface player_elo_order_by {actual_score?: (order_by | null),assists?: (order_by | null),change?: (order_by | null),created_at?: (order_by | null),current?: (order_by | null),damage?: (order_by | null),damage_percent?: (order_by | null),deaths?: (order_by | null),expected_score?: (order_by | null),impact?: (order_by | null),k_factor?: (order_by | null),kda?: (order_by | null),kills?: (order_by | null),map_losses?: (order_by | null),map_wins?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),opponent_team_elo_avg?: (order_by | null),performance_multiplier?: (order_by | null),player?: (players_order_by | null),player_team_elo_avg?: (order_by | null),rating_for_expected?: (order_by | null),season?: (seasons_order_by | null),season_id?: (order_by | null),series_multiplier?: (order_by | null),steam_id?: (order_by | null),team_avg_kda?: (order_by | null),type?: (order_by | null)} - - -/** primary key columns input for table: player_elo */ -export interface player_elo_pk_columns_input {match_id: Scalars['uuid'],steam_id: Scalars['bigint'],type: e_match_types_enum} - - -/** input type for updating data in table "player_elo" */ -export interface player_elo_set_input {actual_score?: (Scalars['float8'] | null),assists?: (Scalars['Int'] | null),change?: (Scalars['numeric'] | null),created_at?: (Scalars['timestamptz'] | null),current?: (Scalars['numeric'] | null),damage?: (Scalars['Int'] | null),damage_percent?: (Scalars['float8'] | null),deaths?: (Scalars['Int'] | null),expected_score?: (Scalars['float8'] | null),impact?: (Scalars['numeric'] | null),k_factor?: (Scalars['Int'] | null),kda?: (Scalars['float8'] | null),kills?: (Scalars['Int'] | null),map_losses?: (Scalars['Int'] | null),map_wins?: (Scalars['Int'] | null),match_id?: (Scalars['uuid'] | null),opponent_team_elo_avg?: (Scalars['float8'] | null),performance_multiplier?: (Scalars['float8'] | null),player_team_elo_avg?: (Scalars['float8'] | null),rating_for_expected?: (Scalars['float8'] | null),season_id?: (Scalars['uuid'] | null),series_multiplier?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null),team_avg_kda?: (Scalars['float8'] | null),type?: (e_match_types_enum | null)} - - -/** aggregate stddev on columns */ -export interface player_elo_stddev_fieldsGenqlSelection{ - actual_score?: boolean | number - assists?: boolean | number - change?: boolean | number - current?: boolean | number - damage?: boolean | number - damage_percent?: boolean | number - deaths?: boolean | number - expected_score?: boolean | number - impact?: boolean | number - k_factor?: boolean | number - kda?: boolean | number - kills?: boolean | number - map_losses?: boolean | number - map_wins?: boolean | number - opponent_team_elo_avg?: boolean | number - performance_multiplier?: boolean | number - player_team_elo_avg?: boolean | number - rating_for_expected?: boolean | number - series_multiplier?: boolean | number - steam_id?: boolean | number - team_avg_kda?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface player_elo_stddev_pop_fieldsGenqlSelection{ - actual_score?: boolean | number - assists?: boolean | number - change?: boolean | number - current?: boolean | number - damage?: boolean | number - damage_percent?: boolean | number - deaths?: boolean | number - expected_score?: boolean | number - impact?: boolean | number - k_factor?: boolean | number - kda?: boolean | number - kills?: boolean | number - map_losses?: boolean | number - map_wins?: boolean | number - opponent_team_elo_avg?: boolean | number - performance_multiplier?: boolean | number - player_team_elo_avg?: boolean | number - rating_for_expected?: boolean | number - series_multiplier?: boolean | number - steam_id?: boolean | number - team_avg_kda?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface player_elo_stddev_samp_fieldsGenqlSelection{ - actual_score?: boolean | number - assists?: boolean | number - change?: boolean | number - current?: boolean | number - damage?: boolean | number - damage_percent?: boolean | number - deaths?: boolean | number - expected_score?: boolean | number - impact?: boolean | number - k_factor?: boolean | number - kda?: boolean | number - kills?: boolean | number - map_losses?: boolean | number - map_wins?: boolean | number - opponent_team_elo_avg?: boolean | number - performance_multiplier?: boolean | number - player_team_elo_avg?: boolean | number - rating_for_expected?: boolean | number - series_multiplier?: boolean | number - steam_id?: boolean | number - team_avg_kda?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "player_elo" */ -export interface player_elo_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: player_elo_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface player_elo_stream_cursor_value_input {actual_score?: (Scalars['float8'] | null),assists?: (Scalars['Int'] | null),change?: (Scalars['numeric'] | null),created_at?: (Scalars['timestamptz'] | null),current?: (Scalars['numeric'] | null),damage?: (Scalars['Int'] | null),damage_percent?: (Scalars['float8'] | null),deaths?: (Scalars['Int'] | null),expected_score?: (Scalars['float8'] | null),impact?: (Scalars['numeric'] | null),k_factor?: (Scalars['Int'] | null),kda?: (Scalars['float8'] | null),kills?: (Scalars['Int'] | null),map_losses?: (Scalars['Int'] | null),map_wins?: (Scalars['Int'] | null),match_id?: (Scalars['uuid'] | null),opponent_team_elo_avg?: (Scalars['float8'] | null),performance_multiplier?: (Scalars['float8'] | null),player_team_elo_avg?: (Scalars['float8'] | null),rating_for_expected?: (Scalars['float8'] | null),season_id?: (Scalars['uuid'] | null),series_multiplier?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null),team_avg_kda?: (Scalars['float8'] | null),type?: (e_match_types_enum | null)} - - -/** aggregate sum on columns */ -export interface player_elo_sum_fieldsGenqlSelection{ - actual_score?: boolean | number - assists?: boolean | number - change?: boolean | number - current?: boolean | number - damage?: boolean | number - damage_percent?: boolean | number - deaths?: boolean | number - expected_score?: boolean | number - impact?: boolean | number - k_factor?: boolean | number - kda?: boolean | number - kills?: boolean | number - map_losses?: boolean | number - map_wins?: boolean | number - opponent_team_elo_avg?: boolean | number - performance_multiplier?: boolean | number - player_team_elo_avg?: boolean | number - rating_for_expected?: boolean | number - series_multiplier?: boolean | number - steam_id?: boolean | number - team_avg_kda?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface player_elo_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (player_elo_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (player_elo_set_input | null), -/** filter the rows which have to be updated */ -where: player_elo_bool_exp} - - -/** aggregate var_pop on columns */ -export interface player_elo_var_pop_fieldsGenqlSelection{ - actual_score?: boolean | number - assists?: boolean | number - change?: boolean | number - current?: boolean | number - damage?: boolean | number - damage_percent?: boolean | number - deaths?: boolean | number - expected_score?: boolean | number - impact?: boolean | number - k_factor?: boolean | number - kda?: boolean | number - kills?: boolean | number - map_losses?: boolean | number - map_wins?: boolean | number - opponent_team_elo_avg?: boolean | number - performance_multiplier?: boolean | number - player_team_elo_avg?: boolean | number - rating_for_expected?: boolean | number - series_multiplier?: boolean | number - steam_id?: boolean | number - team_avg_kda?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface player_elo_var_samp_fieldsGenqlSelection{ - actual_score?: boolean | number - assists?: boolean | number - change?: boolean | number - current?: boolean | number - damage?: boolean | number - damage_percent?: boolean | number - deaths?: boolean | number - expected_score?: boolean | number - impact?: boolean | number - k_factor?: boolean | number - kda?: boolean | number - kills?: boolean | number - map_losses?: boolean | number - map_wins?: boolean | number - opponent_team_elo_avg?: boolean | number - performance_multiplier?: boolean | number - player_team_elo_avg?: boolean | number - rating_for_expected?: boolean | number - series_multiplier?: boolean | number - steam_id?: boolean | number - team_avg_kda?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface player_elo_variance_fieldsGenqlSelection{ - actual_score?: boolean | number - assists?: boolean | number - change?: boolean | number - current?: boolean | number - damage?: boolean | number - damage_percent?: boolean | number - deaths?: boolean | number - expected_score?: boolean | number - impact?: boolean | number - k_factor?: boolean | number - kda?: boolean | number - kills?: boolean | number - map_losses?: boolean | number - map_wins?: boolean | number - opponent_team_elo_avg?: boolean | number - performance_multiplier?: boolean | number - player_team_elo_avg?: boolean | number - rating_for_expected?: boolean | number - series_multiplier?: boolean | number - steam_id?: boolean | number - team_avg_kda?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "player_faceit_rank_history" */ -export interface player_faceit_rank_historyGenqlSelection{ - elo?: boolean | number - id?: boolean | number - /** An object relationship */ - match?: matchesGenqlSelection - match_id?: boolean | number - observed_at?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - previous_rank?: boolean | number - skill_level?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "player_faceit_rank_history" */ -export interface player_faceit_rank_history_aggregateGenqlSelection{ - aggregate?: player_faceit_rank_history_aggregate_fieldsGenqlSelection - nodes?: player_faceit_rank_historyGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface player_faceit_rank_history_aggregate_bool_exp {count?: (player_faceit_rank_history_aggregate_bool_exp_count | null)} - -export interface player_faceit_rank_history_aggregate_bool_exp_count {arguments?: (player_faceit_rank_history_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (player_faceit_rank_history_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "player_faceit_rank_history" */ -export interface player_faceit_rank_history_aggregate_fieldsGenqlSelection{ - avg?: player_faceit_rank_history_avg_fieldsGenqlSelection - count?: { __args: {columns?: (player_faceit_rank_history_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: player_faceit_rank_history_max_fieldsGenqlSelection - min?: player_faceit_rank_history_min_fieldsGenqlSelection - stddev?: player_faceit_rank_history_stddev_fieldsGenqlSelection - stddev_pop?: player_faceit_rank_history_stddev_pop_fieldsGenqlSelection - stddev_samp?: player_faceit_rank_history_stddev_samp_fieldsGenqlSelection - sum?: player_faceit_rank_history_sum_fieldsGenqlSelection - var_pop?: player_faceit_rank_history_var_pop_fieldsGenqlSelection - var_samp?: player_faceit_rank_history_var_samp_fieldsGenqlSelection - variance?: player_faceit_rank_history_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "player_faceit_rank_history" */ -export interface player_faceit_rank_history_aggregate_order_by {avg?: (player_faceit_rank_history_avg_order_by | null),count?: (order_by | null),max?: (player_faceit_rank_history_max_order_by | null),min?: (player_faceit_rank_history_min_order_by | null),stddev?: (player_faceit_rank_history_stddev_order_by | null),stddev_pop?: (player_faceit_rank_history_stddev_pop_order_by | null),stddev_samp?: (player_faceit_rank_history_stddev_samp_order_by | null),sum?: (player_faceit_rank_history_sum_order_by | null),var_pop?: (player_faceit_rank_history_var_pop_order_by | null),var_samp?: (player_faceit_rank_history_var_samp_order_by | null),variance?: (player_faceit_rank_history_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "player_faceit_rank_history" */ -export interface player_faceit_rank_history_arr_rel_insert_input {data: player_faceit_rank_history_insert_input[], -/** upsert condition */ -on_conflict?: (player_faceit_rank_history_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface player_faceit_rank_history_avg_fieldsGenqlSelection{ - elo?: boolean | number - previous_rank?: boolean | number - skill_level?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "player_faceit_rank_history" */ -export interface player_faceit_rank_history_avg_order_by {elo?: (order_by | null),previous_rank?: (order_by | null),skill_level?: (order_by | null),steam_id?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "player_faceit_rank_history". All fields are combined with a logical 'AND'. */ -export interface player_faceit_rank_history_bool_exp {_and?: (player_faceit_rank_history_bool_exp[] | null),_not?: (player_faceit_rank_history_bool_exp | null),_or?: (player_faceit_rank_history_bool_exp[] | null),elo?: (Int_comparison_exp | null),id?: (uuid_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),observed_at?: (timestamptz_comparison_exp | null),player?: (players_bool_exp | null),previous_rank?: (Int_comparison_exp | null),skill_level?: (Int_comparison_exp | null),steam_id?: (bigint_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "player_faceit_rank_history" */ -export interface player_faceit_rank_history_inc_input {elo?: (Scalars['Int'] | null),previous_rank?: (Scalars['Int'] | null),skill_level?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "player_faceit_rank_history" */ -export interface player_faceit_rank_history_insert_input {elo?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),observed_at?: (Scalars['timestamptz'] | null),player?: (players_obj_rel_insert_input | null),previous_rank?: (Scalars['Int'] | null),skill_level?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null)} - - -/** aggregate max on columns */ -export interface player_faceit_rank_history_max_fieldsGenqlSelection{ - elo?: boolean | number - id?: boolean | number - match_id?: boolean | number - observed_at?: boolean | number - previous_rank?: boolean | number - skill_level?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "player_faceit_rank_history" */ -export interface player_faceit_rank_history_max_order_by {elo?: (order_by | null),id?: (order_by | null),match_id?: (order_by | null),observed_at?: (order_by | null),previous_rank?: (order_by | null),skill_level?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface player_faceit_rank_history_min_fieldsGenqlSelection{ - elo?: boolean | number - id?: boolean | number - match_id?: boolean | number - observed_at?: boolean | number - previous_rank?: boolean | number - skill_level?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "player_faceit_rank_history" */ -export interface player_faceit_rank_history_min_order_by {elo?: (order_by | null),id?: (order_by | null),match_id?: (order_by | null),observed_at?: (order_by | null),previous_rank?: (order_by | null),skill_level?: (order_by | null),steam_id?: (order_by | null)} - - -/** response of any mutation on the table "player_faceit_rank_history" */ -export interface player_faceit_rank_history_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: player_faceit_rank_historyGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "player_faceit_rank_history" */ -export interface player_faceit_rank_history_on_conflict {constraint: player_faceit_rank_history_constraint,update_columns?: player_faceit_rank_history_update_column[],where?: (player_faceit_rank_history_bool_exp | null)} - - -/** Ordering options when selecting data from "player_faceit_rank_history". */ -export interface player_faceit_rank_history_order_by {elo?: (order_by | null),id?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),observed_at?: (order_by | null),player?: (players_order_by | null),previous_rank?: (order_by | null),skill_level?: (order_by | null),steam_id?: (order_by | null)} - - -/** primary key columns input for table: player_faceit_rank_history */ -export interface player_faceit_rank_history_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "player_faceit_rank_history" */ -export interface player_faceit_rank_history_set_input {elo?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),observed_at?: (Scalars['timestamptz'] | null),previous_rank?: (Scalars['Int'] | null),skill_level?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null)} - - -/** aggregate stddev on columns */ -export interface player_faceit_rank_history_stddev_fieldsGenqlSelection{ - elo?: boolean | number - previous_rank?: boolean | number - skill_level?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "player_faceit_rank_history" */ -export interface player_faceit_rank_history_stddev_order_by {elo?: (order_by | null),previous_rank?: (order_by | null),skill_level?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface player_faceit_rank_history_stddev_pop_fieldsGenqlSelection{ - elo?: boolean | number - previous_rank?: boolean | number - skill_level?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "player_faceit_rank_history" */ -export interface player_faceit_rank_history_stddev_pop_order_by {elo?: (order_by | null),previous_rank?: (order_by | null),skill_level?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface player_faceit_rank_history_stddev_samp_fieldsGenqlSelection{ - elo?: boolean | number - previous_rank?: boolean | number - skill_level?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "player_faceit_rank_history" */ -export interface player_faceit_rank_history_stddev_samp_order_by {elo?: (order_by | null),previous_rank?: (order_by | null),skill_level?: (order_by | null),steam_id?: (order_by | null)} - - -/** Streaming cursor of the table "player_faceit_rank_history" */ -export interface player_faceit_rank_history_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: player_faceit_rank_history_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface player_faceit_rank_history_stream_cursor_value_input {elo?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),observed_at?: (Scalars['timestamptz'] | null),previous_rank?: (Scalars['Int'] | null),skill_level?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null)} - - -/** aggregate sum on columns */ -export interface player_faceit_rank_history_sum_fieldsGenqlSelection{ - elo?: boolean | number - previous_rank?: boolean | number - skill_level?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "player_faceit_rank_history" */ -export interface player_faceit_rank_history_sum_order_by {elo?: (order_by | null),previous_rank?: (order_by | null),skill_level?: (order_by | null),steam_id?: (order_by | null)} - -export interface player_faceit_rank_history_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (player_faceit_rank_history_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (player_faceit_rank_history_set_input | null), -/** filter the rows which have to be updated */ -where: player_faceit_rank_history_bool_exp} - - -/** aggregate var_pop on columns */ -export interface player_faceit_rank_history_var_pop_fieldsGenqlSelection{ - elo?: boolean | number - previous_rank?: boolean | number - skill_level?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "player_faceit_rank_history" */ -export interface player_faceit_rank_history_var_pop_order_by {elo?: (order_by | null),previous_rank?: (order_by | null),skill_level?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface player_faceit_rank_history_var_samp_fieldsGenqlSelection{ - elo?: boolean | number - previous_rank?: boolean | number - skill_level?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "player_faceit_rank_history" */ -export interface player_faceit_rank_history_var_samp_order_by {elo?: (order_by | null),previous_rank?: (order_by | null),skill_level?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface player_faceit_rank_history_variance_fieldsGenqlSelection{ - elo?: boolean | number - previous_rank?: boolean | number - skill_level?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "player_faceit_rank_history" */ -export interface player_faceit_rank_history_variance_order_by {elo?: (order_by | null),previous_rank?: (order_by | null),skill_level?: (order_by | null),steam_id?: (order_by | null)} - - -/** columns and relationships of "player_flashes" */ -export interface player_flashesGenqlSelection{ - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - /** An object relationship */ - blinded?: playersGenqlSelection - deleted_at?: boolean | number - duration?: boolean | number - /** An object relationship */ - match?: matchesGenqlSelection - match_id?: boolean | number - /** An object relationship */ - match_map?: match_mapsGenqlSelection - match_map_id?: boolean | number - round?: boolean | number - team_flash?: boolean | number - /** An object relationship */ - thrown_by?: playersGenqlSelection - time?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "player_flashes" */ -export interface player_flashes_aggregateGenqlSelection{ - aggregate?: player_flashes_aggregate_fieldsGenqlSelection - nodes?: player_flashesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface player_flashes_aggregate_bool_exp {bool_and?: (player_flashes_aggregate_bool_exp_bool_and | null),bool_or?: (player_flashes_aggregate_bool_exp_bool_or | null),count?: (player_flashes_aggregate_bool_exp_count | null)} - -export interface player_flashes_aggregate_bool_exp_bool_and {arguments: player_flashes_select_column_player_flashes_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (player_flashes_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface player_flashes_aggregate_bool_exp_bool_or {arguments: player_flashes_select_column_player_flashes_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (player_flashes_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface player_flashes_aggregate_bool_exp_count {arguments?: (player_flashes_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (player_flashes_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "player_flashes" */ -export interface player_flashes_aggregate_fieldsGenqlSelection{ - avg?: player_flashes_avg_fieldsGenqlSelection - count?: { __args: {columns?: (player_flashes_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: player_flashes_max_fieldsGenqlSelection - min?: player_flashes_min_fieldsGenqlSelection - stddev?: player_flashes_stddev_fieldsGenqlSelection - stddev_pop?: player_flashes_stddev_pop_fieldsGenqlSelection - stddev_samp?: player_flashes_stddev_samp_fieldsGenqlSelection - sum?: player_flashes_sum_fieldsGenqlSelection - var_pop?: player_flashes_var_pop_fieldsGenqlSelection - var_samp?: player_flashes_var_samp_fieldsGenqlSelection - variance?: player_flashes_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "player_flashes" */ -export interface player_flashes_aggregate_order_by {avg?: (player_flashes_avg_order_by | null),count?: (order_by | null),max?: (player_flashes_max_order_by | null),min?: (player_flashes_min_order_by | null),stddev?: (player_flashes_stddev_order_by | null),stddev_pop?: (player_flashes_stddev_pop_order_by | null),stddev_samp?: (player_flashes_stddev_samp_order_by | null),sum?: (player_flashes_sum_order_by | null),var_pop?: (player_flashes_var_pop_order_by | null),var_samp?: (player_flashes_var_samp_order_by | null),variance?: (player_flashes_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "player_flashes" */ -export interface player_flashes_arr_rel_insert_input {data: player_flashes_insert_input[], -/** upsert condition */ -on_conflict?: (player_flashes_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface player_flashes_avg_fieldsGenqlSelection{ - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - duration?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "player_flashes" */ -export interface player_flashes_avg_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),duration?: (order_by | null),round?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "player_flashes". All fields are combined with a logical 'AND'. */ -export interface player_flashes_bool_exp {_and?: (player_flashes_bool_exp[] | null),_not?: (player_flashes_bool_exp | null),_or?: (player_flashes_bool_exp[] | null),attacked_steam_id?: (bigint_comparison_exp | null),attacker_steam_id?: (bigint_comparison_exp | null),blinded?: (players_bool_exp | null),deleted_at?: (timestamptz_comparison_exp | null),duration?: (numeric_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_id?: (uuid_comparison_exp | null),round?: (Int_comparison_exp | null),team_flash?: (Boolean_comparison_exp | null),thrown_by?: (players_bool_exp | null),time?: (timestamptz_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "player_flashes" */ -export interface player_flashes_inc_input {attacked_steam_id?: (Scalars['bigint'] | null),attacker_steam_id?: (Scalars['bigint'] | null),duration?: (Scalars['numeric'] | null),round?: (Scalars['Int'] | null)} - - -/** input type for inserting data into table "player_flashes" */ -export interface player_flashes_insert_input {attacked_steam_id?: (Scalars['bigint'] | null),attacker_steam_id?: (Scalars['bigint'] | null),blinded?: (players_obj_rel_insert_input | null),deleted_at?: (Scalars['timestamptz'] | null),duration?: (Scalars['numeric'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_map?: (match_maps_obj_rel_insert_input | null),match_map_id?: (Scalars['uuid'] | null),round?: (Scalars['Int'] | null),team_flash?: (Scalars['Boolean'] | null),thrown_by?: (players_obj_rel_insert_input | null),time?: (Scalars['timestamptz'] | null)} - - -/** aggregate max on columns */ -export interface player_flashes_max_fieldsGenqlSelection{ - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - deleted_at?: boolean | number - duration?: boolean | number - match_id?: boolean | number - match_map_id?: boolean | number - round?: boolean | number - time?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "player_flashes" */ -export interface player_flashes_max_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),deleted_at?: (order_by | null),duration?: (order_by | null),match_id?: (order_by | null),match_map_id?: (order_by | null),round?: (order_by | null),time?: (order_by | null)} - - -/** aggregate min on columns */ -export interface player_flashes_min_fieldsGenqlSelection{ - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - deleted_at?: boolean | number - duration?: boolean | number - match_id?: boolean | number - match_map_id?: boolean | number - round?: boolean | number - time?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "player_flashes" */ -export interface player_flashes_min_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),deleted_at?: (order_by | null),duration?: (order_by | null),match_id?: (order_by | null),match_map_id?: (order_by | null),round?: (order_by | null),time?: (order_by | null)} - - -/** response of any mutation on the table "player_flashes" */ -export interface player_flashes_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: player_flashesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "player_flashes" */ -export interface player_flashes_on_conflict {constraint: player_flashes_constraint,update_columns?: player_flashes_update_column[],where?: (player_flashes_bool_exp | null)} - - -/** Ordering options when selecting data from "player_flashes". */ -export interface player_flashes_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),blinded?: (players_order_by | null),deleted_at?: (order_by | null),duration?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_id?: (order_by | null),round?: (order_by | null),team_flash?: (order_by | null),thrown_by?: (players_order_by | null),time?: (order_by | null)} - - -/** primary key columns input for table: player_flashes */ -export interface player_flashes_pk_columns_input {attacked_steam_id: Scalars['bigint'],attacker_steam_id: Scalars['bigint'],match_map_id: Scalars['uuid'],time: Scalars['timestamptz']} - - -/** input type for updating data in table "player_flashes" */ -export interface player_flashes_set_input {attacked_steam_id?: (Scalars['bigint'] | null),attacker_steam_id?: (Scalars['bigint'] | null),deleted_at?: (Scalars['timestamptz'] | null),duration?: (Scalars['numeric'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),round?: (Scalars['Int'] | null),team_flash?: (Scalars['Boolean'] | null),time?: (Scalars['timestamptz'] | null)} - - -/** aggregate stddev on columns */ -export interface player_flashes_stddev_fieldsGenqlSelection{ - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - duration?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "player_flashes" */ -export interface player_flashes_stddev_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),duration?: (order_by | null),round?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface player_flashes_stddev_pop_fieldsGenqlSelection{ - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - duration?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "player_flashes" */ -export interface player_flashes_stddev_pop_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),duration?: (order_by | null),round?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface player_flashes_stddev_samp_fieldsGenqlSelection{ - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - duration?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "player_flashes" */ -export interface player_flashes_stddev_samp_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),duration?: (order_by | null),round?: (order_by | null)} - - -/** Streaming cursor of the table "player_flashes" */ -export interface player_flashes_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: player_flashes_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface player_flashes_stream_cursor_value_input {attacked_steam_id?: (Scalars['bigint'] | null),attacker_steam_id?: (Scalars['bigint'] | null),deleted_at?: (Scalars['timestamptz'] | null),duration?: (Scalars['numeric'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),round?: (Scalars['Int'] | null),team_flash?: (Scalars['Boolean'] | null),time?: (Scalars['timestamptz'] | null)} - - -/** aggregate sum on columns */ -export interface player_flashes_sum_fieldsGenqlSelection{ - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - duration?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "player_flashes" */ -export interface player_flashes_sum_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),duration?: (order_by | null),round?: (order_by | null)} - -export interface player_flashes_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (player_flashes_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (player_flashes_set_input | null), -/** filter the rows which have to be updated */ -where: player_flashes_bool_exp} - - -/** aggregate var_pop on columns */ -export interface player_flashes_var_pop_fieldsGenqlSelection{ - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - duration?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "player_flashes" */ -export interface player_flashes_var_pop_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),duration?: (order_by | null),round?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface player_flashes_var_samp_fieldsGenqlSelection{ - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - duration?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "player_flashes" */ -export interface player_flashes_var_samp_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),duration?: (order_by | null),round?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface player_flashes_variance_fieldsGenqlSelection{ - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - duration?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "player_flashes" */ -export interface player_flashes_variance_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),duration?: (order_by | null),round?: (order_by | null)} - - -/** columns and relationships of "player_kills" */ -export interface player_killsGenqlSelection{ - assisted?: boolean | number - attacked_location?: boolean | number - attacked_location_coordinates?: boolean | number - /** An object relationship */ - attacked_player?: playersGenqlSelection - attacked_steam_id?: boolean | number - attacked_team?: boolean | number - attacker_location?: boolean | number - attacker_location_coordinates?: boolean | number - attacker_steam_id?: boolean | number - attacker_team?: boolean | number - blinded?: boolean | number - deleted_at?: boolean | number - headshot?: boolean | number - hitgroup?: boolean | number - in_air?: boolean | number - /** A computed field, executes function "is_suicide" */ - is_suicide?: boolean | number - /** An object relationship */ - match?: matchesGenqlSelection - match_id?: boolean | number - /** An object relationship */ - match_map?: match_mapsGenqlSelection - match_map_id?: boolean | number - no_scope?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - round?: boolean | number - /** A computed field, executes function "is_team_kill" */ - team_kill?: boolean | number - thru_smoke?: boolean | number - thru_wall?: boolean | number - time?: boolean | number - with?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "player_kills" */ -export interface player_kills_aggregateGenqlSelection{ - aggregate?: player_kills_aggregate_fieldsGenqlSelection - nodes?: player_killsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface player_kills_aggregate_bool_exp {bool_and?: (player_kills_aggregate_bool_exp_bool_and | null),bool_or?: (player_kills_aggregate_bool_exp_bool_or | null),count?: (player_kills_aggregate_bool_exp_count | null)} - -export interface player_kills_aggregate_bool_exp_bool_and {arguments: player_kills_select_column_player_kills_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (player_kills_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface player_kills_aggregate_bool_exp_bool_or {arguments: player_kills_select_column_player_kills_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (player_kills_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface player_kills_aggregate_bool_exp_count {arguments?: (player_kills_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (player_kills_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "player_kills" */ -export interface player_kills_aggregate_fieldsGenqlSelection{ - avg?: player_kills_avg_fieldsGenqlSelection - count?: { __args: {columns?: (player_kills_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: player_kills_max_fieldsGenqlSelection - min?: player_kills_min_fieldsGenqlSelection - stddev?: player_kills_stddev_fieldsGenqlSelection - stddev_pop?: player_kills_stddev_pop_fieldsGenqlSelection - stddev_samp?: player_kills_stddev_samp_fieldsGenqlSelection - sum?: player_kills_sum_fieldsGenqlSelection - var_pop?: player_kills_var_pop_fieldsGenqlSelection - var_samp?: player_kills_var_samp_fieldsGenqlSelection - variance?: player_kills_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "player_kills" */ -export interface player_kills_aggregate_order_by {avg?: (player_kills_avg_order_by | null),count?: (order_by | null),max?: (player_kills_max_order_by | null),min?: (player_kills_min_order_by | null),stddev?: (player_kills_stddev_order_by | null),stddev_pop?: (player_kills_stddev_pop_order_by | null),stddev_samp?: (player_kills_stddev_samp_order_by | null),sum?: (player_kills_sum_order_by | null),var_pop?: (player_kills_var_pop_order_by | null),var_samp?: (player_kills_var_samp_order_by | null),variance?: (player_kills_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "player_kills" */ -export interface player_kills_arr_rel_insert_input {data: player_kills_insert_input[], -/** upsert condition */ -on_conflict?: (player_kills_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface player_kills_avg_fieldsGenqlSelection{ - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "player_kills" */ -export interface player_kills_avg_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),round?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "player_kills". All fields are combined with a logical 'AND'. */ -export interface player_kills_bool_exp {_and?: (player_kills_bool_exp[] | null),_not?: (player_kills_bool_exp | null),_or?: (player_kills_bool_exp[] | null),assisted?: (Boolean_comparison_exp | null),attacked_location?: (String_comparison_exp | null),attacked_location_coordinates?: (String_comparison_exp | null),attacked_player?: (players_bool_exp | null),attacked_steam_id?: (bigint_comparison_exp | null),attacked_team?: (String_comparison_exp | null),attacker_location?: (String_comparison_exp | null),attacker_location_coordinates?: (String_comparison_exp | null),attacker_steam_id?: (bigint_comparison_exp | null),attacker_team?: (String_comparison_exp | null),blinded?: (Boolean_comparison_exp | null),deleted_at?: (timestamptz_comparison_exp | null),headshot?: (Boolean_comparison_exp | null),hitgroup?: (String_comparison_exp | null),in_air?: (Boolean_comparison_exp | null),is_suicide?: (Boolean_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_id?: (uuid_comparison_exp | null),no_scope?: (Boolean_comparison_exp | null),player?: (players_bool_exp | null),round?: (Int_comparison_exp | null),team_kill?: (Boolean_comparison_exp | null),thru_smoke?: (Boolean_comparison_exp | null),thru_wall?: (Boolean_comparison_exp | null),time?: (timestamptz_comparison_exp | null),with?: (String_comparison_exp | null)} - - -/** columns and relationships of "player_kills_by_weapon" */ -export interface player_kills_by_weaponGenqlSelection{ - kill_count?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - player_steam_id?: boolean | number - with?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "player_kills_by_weapon" */ -export interface player_kills_by_weapon_aggregateGenqlSelection{ - aggregate?: player_kills_by_weapon_aggregate_fieldsGenqlSelection - nodes?: player_kills_by_weaponGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface player_kills_by_weapon_aggregate_bool_exp {count?: (player_kills_by_weapon_aggregate_bool_exp_count | null)} - -export interface player_kills_by_weapon_aggregate_bool_exp_count {arguments?: (player_kills_by_weapon_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (player_kills_by_weapon_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "player_kills_by_weapon" */ -export interface player_kills_by_weapon_aggregate_fieldsGenqlSelection{ - avg?: player_kills_by_weapon_avg_fieldsGenqlSelection - count?: { __args: {columns?: (player_kills_by_weapon_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: player_kills_by_weapon_max_fieldsGenqlSelection - min?: player_kills_by_weapon_min_fieldsGenqlSelection - stddev?: player_kills_by_weapon_stddev_fieldsGenqlSelection - stddev_pop?: player_kills_by_weapon_stddev_pop_fieldsGenqlSelection - stddev_samp?: player_kills_by_weapon_stddev_samp_fieldsGenqlSelection - sum?: player_kills_by_weapon_sum_fieldsGenqlSelection - var_pop?: player_kills_by_weapon_var_pop_fieldsGenqlSelection - var_samp?: player_kills_by_weapon_var_samp_fieldsGenqlSelection - variance?: player_kills_by_weapon_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "player_kills_by_weapon" */ -export interface player_kills_by_weapon_aggregate_order_by {avg?: (player_kills_by_weapon_avg_order_by | null),count?: (order_by | null),max?: (player_kills_by_weapon_max_order_by | null),min?: (player_kills_by_weapon_min_order_by | null),stddev?: (player_kills_by_weapon_stddev_order_by | null),stddev_pop?: (player_kills_by_weapon_stddev_pop_order_by | null),stddev_samp?: (player_kills_by_weapon_stddev_samp_order_by | null),sum?: (player_kills_by_weapon_sum_order_by | null),var_pop?: (player_kills_by_weapon_var_pop_order_by | null),var_samp?: (player_kills_by_weapon_var_samp_order_by | null),variance?: (player_kills_by_weapon_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "player_kills_by_weapon" */ -export interface player_kills_by_weapon_arr_rel_insert_input {data: player_kills_by_weapon_insert_input[], -/** upsert condition */ -on_conflict?: (player_kills_by_weapon_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface player_kills_by_weapon_avg_fieldsGenqlSelection{ - kill_count?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "player_kills_by_weapon" */ -export interface player_kills_by_weapon_avg_order_by {kill_count?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "player_kills_by_weapon". All fields are combined with a logical 'AND'. */ -export interface player_kills_by_weapon_bool_exp {_and?: (player_kills_by_weapon_bool_exp[] | null),_not?: (player_kills_by_weapon_bool_exp | null),_or?: (player_kills_by_weapon_bool_exp[] | null),kill_count?: (bigint_comparison_exp | null),player?: (players_bool_exp | null),player_steam_id?: (bigint_comparison_exp | null),with?: (String_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "player_kills_by_weapon" */ -export interface player_kills_by_weapon_inc_input {kill_count?: (Scalars['bigint'] | null),player_steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "player_kills_by_weapon" */ -export interface player_kills_by_weapon_insert_input {kill_count?: (Scalars['bigint'] | null),player?: (players_obj_rel_insert_input | null),player_steam_id?: (Scalars['bigint'] | null),with?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface player_kills_by_weapon_max_fieldsGenqlSelection{ - kill_count?: boolean | number - player_steam_id?: boolean | number - with?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "player_kills_by_weapon" */ -export interface player_kills_by_weapon_max_order_by {kill_count?: (order_by | null),player_steam_id?: (order_by | null),with?: (order_by | null)} - - -/** aggregate min on columns */ -export interface player_kills_by_weapon_min_fieldsGenqlSelection{ - kill_count?: boolean | number - player_steam_id?: boolean | number - with?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "player_kills_by_weapon" */ -export interface player_kills_by_weapon_min_order_by {kill_count?: (order_by | null),player_steam_id?: (order_by | null),with?: (order_by | null)} - - -/** response of any mutation on the table "player_kills_by_weapon" */ -export interface player_kills_by_weapon_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: player_kills_by_weaponGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "player_kills_by_weapon" */ -export interface player_kills_by_weapon_on_conflict {constraint: player_kills_by_weapon_constraint,update_columns?: player_kills_by_weapon_update_column[],where?: (player_kills_by_weapon_bool_exp | null)} - - -/** Ordering options when selecting data from "player_kills_by_weapon". */ -export interface player_kills_by_weapon_order_by {kill_count?: (order_by | null),player?: (players_order_by | null),player_steam_id?: (order_by | null),with?: (order_by | null)} - - -/** primary key columns input for table: player_kills_by_weapon */ -export interface player_kills_by_weapon_pk_columns_input {player_steam_id: Scalars['bigint'],with: Scalars['String']} - - -/** input type for updating data in table "player_kills_by_weapon" */ -export interface player_kills_by_weapon_set_input {kill_count?: (Scalars['bigint'] | null),player_steam_id?: (Scalars['bigint'] | null),with?: (Scalars['String'] | null)} - - -/** aggregate stddev on columns */ -export interface player_kills_by_weapon_stddev_fieldsGenqlSelection{ - kill_count?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "player_kills_by_weapon" */ -export interface player_kills_by_weapon_stddev_order_by {kill_count?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface player_kills_by_weapon_stddev_pop_fieldsGenqlSelection{ - kill_count?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "player_kills_by_weapon" */ -export interface player_kills_by_weapon_stddev_pop_order_by {kill_count?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface player_kills_by_weapon_stddev_samp_fieldsGenqlSelection{ - kill_count?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "player_kills_by_weapon" */ -export interface player_kills_by_weapon_stddev_samp_order_by {kill_count?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** Streaming cursor of the table "player_kills_by_weapon" */ -export interface player_kills_by_weapon_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: player_kills_by_weapon_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface player_kills_by_weapon_stream_cursor_value_input {kill_count?: (Scalars['bigint'] | null),player_steam_id?: (Scalars['bigint'] | null),with?: (Scalars['String'] | null)} - - -/** aggregate sum on columns */ -export interface player_kills_by_weapon_sum_fieldsGenqlSelection{ - kill_count?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "player_kills_by_weapon" */ -export interface player_kills_by_weapon_sum_order_by {kill_count?: (order_by | null),player_steam_id?: (order_by | null)} - -export interface player_kills_by_weapon_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (player_kills_by_weapon_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (player_kills_by_weapon_set_input | null), -/** filter the rows which have to be updated */ -where: player_kills_by_weapon_bool_exp} - - -/** aggregate var_pop on columns */ -export interface player_kills_by_weapon_var_pop_fieldsGenqlSelection{ - kill_count?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "player_kills_by_weapon" */ -export interface player_kills_by_weapon_var_pop_order_by {kill_count?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface player_kills_by_weapon_var_samp_fieldsGenqlSelection{ - kill_count?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "player_kills_by_weapon" */ -export interface player_kills_by_weapon_var_samp_order_by {kill_count?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface player_kills_by_weapon_variance_fieldsGenqlSelection{ - kill_count?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "player_kills_by_weapon" */ -export interface player_kills_by_weapon_variance_order_by {kill_count?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** input type for incrementing numeric columns in table "player_kills" */ -export interface player_kills_inc_input {attacked_steam_id?: (Scalars['bigint'] | null),attacker_steam_id?: (Scalars['bigint'] | null),round?: (Scalars['Int'] | null)} - - -/** input type for inserting data into table "player_kills" */ -export interface player_kills_insert_input {assisted?: (Scalars['Boolean'] | null),attacked_location?: (Scalars['String'] | null),attacked_location_coordinates?: (Scalars['String'] | null),attacked_player?: (players_obj_rel_insert_input | null),attacked_steam_id?: (Scalars['bigint'] | null),attacked_team?: (Scalars['String'] | null),attacker_location?: (Scalars['String'] | null),attacker_location_coordinates?: (Scalars['String'] | null),attacker_steam_id?: (Scalars['bigint'] | null),attacker_team?: (Scalars['String'] | null),blinded?: (Scalars['Boolean'] | null),deleted_at?: (Scalars['timestamptz'] | null),headshot?: (Scalars['Boolean'] | null),hitgroup?: (Scalars['String'] | null),in_air?: (Scalars['Boolean'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_map?: (match_maps_obj_rel_insert_input | null),match_map_id?: (Scalars['uuid'] | null),no_scope?: (Scalars['Boolean'] | null),player?: (players_obj_rel_insert_input | null),round?: (Scalars['Int'] | null),thru_smoke?: (Scalars['Boolean'] | null),thru_wall?: (Scalars['Boolean'] | null),time?: (Scalars['timestamptz'] | null),with?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface player_kills_max_fieldsGenqlSelection{ - attacked_location?: boolean | number - attacked_location_coordinates?: boolean | number - attacked_steam_id?: boolean | number - attacked_team?: boolean | number - attacker_location?: boolean | number - attacker_location_coordinates?: boolean | number - attacker_steam_id?: boolean | number - attacker_team?: boolean | number - deleted_at?: boolean | number - hitgroup?: boolean | number - match_id?: boolean | number - match_map_id?: boolean | number - round?: boolean | number - time?: boolean | number - with?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "player_kills" */ -export interface player_kills_max_order_by {attacked_location?: (order_by | null),attacked_location_coordinates?: (order_by | null),attacked_steam_id?: (order_by | null),attacked_team?: (order_by | null),attacker_location?: (order_by | null),attacker_location_coordinates?: (order_by | null),attacker_steam_id?: (order_by | null),attacker_team?: (order_by | null),deleted_at?: (order_by | null),hitgroup?: (order_by | null),match_id?: (order_by | null),match_map_id?: (order_by | null),round?: (order_by | null),time?: (order_by | null),with?: (order_by | null)} - - -/** aggregate min on columns */ -export interface player_kills_min_fieldsGenqlSelection{ - attacked_location?: boolean | number - attacked_location_coordinates?: boolean | number - attacked_steam_id?: boolean | number - attacked_team?: boolean | number - attacker_location?: boolean | number - attacker_location_coordinates?: boolean | number - attacker_steam_id?: boolean | number - attacker_team?: boolean | number - deleted_at?: boolean | number - hitgroup?: boolean | number - match_id?: boolean | number - match_map_id?: boolean | number - round?: boolean | number - time?: boolean | number - with?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "player_kills" */ -export interface player_kills_min_order_by {attacked_location?: (order_by | null),attacked_location_coordinates?: (order_by | null),attacked_steam_id?: (order_by | null),attacked_team?: (order_by | null),attacker_location?: (order_by | null),attacker_location_coordinates?: (order_by | null),attacker_steam_id?: (order_by | null),attacker_team?: (order_by | null),deleted_at?: (order_by | null),hitgroup?: (order_by | null),match_id?: (order_by | null),match_map_id?: (order_by | null),round?: (order_by | null),time?: (order_by | null),with?: (order_by | null)} - - -/** response of any mutation on the table "player_kills" */ -export interface player_kills_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: player_killsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "player_kills" */ -export interface player_kills_on_conflict {constraint: player_kills_constraint,update_columns?: player_kills_update_column[],where?: (player_kills_bool_exp | null)} - - -/** Ordering options when selecting data from "player_kills". */ -export interface player_kills_order_by {assisted?: (order_by | null),attacked_location?: (order_by | null),attacked_location_coordinates?: (order_by | null),attacked_player?: (players_order_by | null),attacked_steam_id?: (order_by | null),attacked_team?: (order_by | null),attacker_location?: (order_by | null),attacker_location_coordinates?: (order_by | null),attacker_steam_id?: (order_by | null),attacker_team?: (order_by | null),blinded?: (order_by | null),deleted_at?: (order_by | null),headshot?: (order_by | null),hitgroup?: (order_by | null),in_air?: (order_by | null),is_suicide?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_id?: (order_by | null),no_scope?: (order_by | null),player?: (players_order_by | null),round?: (order_by | null),team_kill?: (order_by | null),thru_smoke?: (order_by | null),thru_wall?: (order_by | null),time?: (order_by | null),with?: (order_by | null)} - - -/** primary key columns input for table: player_kills */ -export interface player_kills_pk_columns_input {attacked_steam_id: Scalars['bigint'],attacker_steam_id: Scalars['bigint'],match_map_id: Scalars['uuid'],time: Scalars['timestamptz']} - - -/** input type for updating data in table "player_kills" */ -export interface player_kills_set_input {assisted?: (Scalars['Boolean'] | null),attacked_location?: (Scalars['String'] | null),attacked_location_coordinates?: (Scalars['String'] | null),attacked_steam_id?: (Scalars['bigint'] | null),attacked_team?: (Scalars['String'] | null),attacker_location?: (Scalars['String'] | null),attacker_location_coordinates?: (Scalars['String'] | null),attacker_steam_id?: (Scalars['bigint'] | null),attacker_team?: (Scalars['String'] | null),blinded?: (Scalars['Boolean'] | null),deleted_at?: (Scalars['timestamptz'] | null),headshot?: (Scalars['Boolean'] | null),hitgroup?: (Scalars['String'] | null),in_air?: (Scalars['Boolean'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),no_scope?: (Scalars['Boolean'] | null),round?: (Scalars['Int'] | null),thru_smoke?: (Scalars['Boolean'] | null),thru_wall?: (Scalars['Boolean'] | null),time?: (Scalars['timestamptz'] | null),with?: (Scalars['String'] | null)} - - -/** aggregate stddev on columns */ -export interface player_kills_stddev_fieldsGenqlSelection{ - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "player_kills" */ -export interface player_kills_stddev_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),round?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface player_kills_stddev_pop_fieldsGenqlSelection{ - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "player_kills" */ -export interface player_kills_stddev_pop_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),round?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface player_kills_stddev_samp_fieldsGenqlSelection{ - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "player_kills" */ -export interface player_kills_stddev_samp_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),round?: (order_by | null)} - - -/** Streaming cursor of the table "player_kills" */ -export interface player_kills_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: player_kills_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface player_kills_stream_cursor_value_input {assisted?: (Scalars['Boolean'] | null),attacked_location?: (Scalars['String'] | null),attacked_location_coordinates?: (Scalars['String'] | null),attacked_steam_id?: (Scalars['bigint'] | null),attacked_team?: (Scalars['String'] | null),attacker_location?: (Scalars['String'] | null),attacker_location_coordinates?: (Scalars['String'] | null),attacker_steam_id?: (Scalars['bigint'] | null),attacker_team?: (Scalars['String'] | null),blinded?: (Scalars['Boolean'] | null),deleted_at?: (Scalars['timestamptz'] | null),headshot?: (Scalars['Boolean'] | null),hitgroup?: (Scalars['String'] | null),in_air?: (Scalars['Boolean'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),no_scope?: (Scalars['Boolean'] | null),round?: (Scalars['Int'] | null),thru_smoke?: (Scalars['Boolean'] | null),thru_wall?: (Scalars['Boolean'] | null),time?: (Scalars['timestamptz'] | null),with?: (Scalars['String'] | null)} - - -/** aggregate sum on columns */ -export interface player_kills_sum_fieldsGenqlSelection{ - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "player_kills" */ -export interface player_kills_sum_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),round?: (order_by | null)} - -export interface player_kills_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (player_kills_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (player_kills_set_input | null), -/** filter the rows which have to be updated */ -where: player_kills_bool_exp} - - -/** aggregate var_pop on columns */ -export interface player_kills_var_pop_fieldsGenqlSelection{ - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "player_kills" */ -export interface player_kills_var_pop_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),round?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface player_kills_var_samp_fieldsGenqlSelection{ - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "player_kills" */ -export interface player_kills_var_samp_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),round?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface player_kills_variance_fieldsGenqlSelection{ - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "player_kills" */ -export interface player_kills_variance_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),round?: (order_by | null)} - - -/** columns and relationships of "player_leaderboard_rank" */ -export interface player_leaderboard_rankGenqlSelection{ - player_steam_id?: boolean | number - rank?: boolean | number - total?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface player_leaderboard_rank_aggregateGenqlSelection{ - aggregate?: player_leaderboard_rank_aggregate_fieldsGenqlSelection - nodes?: player_leaderboard_rankGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "player_leaderboard_rank" */ -export interface player_leaderboard_rank_aggregate_fieldsGenqlSelection{ - avg?: player_leaderboard_rank_avg_fieldsGenqlSelection - count?: { __args: {columns?: (player_leaderboard_rank_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: player_leaderboard_rank_max_fieldsGenqlSelection - min?: player_leaderboard_rank_min_fieldsGenqlSelection - stddev?: player_leaderboard_rank_stddev_fieldsGenqlSelection - stddev_pop?: player_leaderboard_rank_stddev_pop_fieldsGenqlSelection - stddev_samp?: player_leaderboard_rank_stddev_samp_fieldsGenqlSelection - sum?: player_leaderboard_rank_sum_fieldsGenqlSelection - var_pop?: player_leaderboard_rank_var_pop_fieldsGenqlSelection - var_samp?: player_leaderboard_rank_var_samp_fieldsGenqlSelection - variance?: player_leaderboard_rank_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface player_leaderboard_rank_avg_fieldsGenqlSelection{ - rank?: boolean | number - total?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "player_leaderboard_rank". All fields are combined with a logical 'AND'. */ -export interface player_leaderboard_rank_bool_exp {_and?: (player_leaderboard_rank_bool_exp[] | null),_not?: (player_leaderboard_rank_bool_exp | null),_or?: (player_leaderboard_rank_bool_exp[] | null),player_steam_id?: (String_comparison_exp | null),rank?: (Int_comparison_exp | null),total?: (Int_comparison_exp | null),value?: (float8_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "player_leaderboard_rank" */ -export interface player_leaderboard_rank_inc_input {rank?: (Scalars['Int'] | null),total?: (Scalars['Int'] | null),value?: (Scalars['float8'] | null)} - - -/** input type for inserting data into table "player_leaderboard_rank" */ -export interface player_leaderboard_rank_insert_input {player_steam_id?: (Scalars['String'] | null),rank?: (Scalars['Int'] | null),total?: (Scalars['Int'] | null),value?: (Scalars['float8'] | null)} - - -/** aggregate max on columns */ -export interface player_leaderboard_rank_max_fieldsGenqlSelection{ - player_steam_id?: boolean | number - rank?: boolean | number - total?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface player_leaderboard_rank_min_fieldsGenqlSelection{ - player_steam_id?: boolean | number - rank?: boolean | number - total?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "player_leaderboard_rank" */ -export interface player_leaderboard_rank_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: player_leaderboard_rankGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Ordering options when selecting data from "player_leaderboard_rank". */ -export interface player_leaderboard_rank_order_by {player_steam_id?: (order_by | null),rank?: (order_by | null),total?: (order_by | null),value?: (order_by | null)} - - -/** input type for updating data in table "player_leaderboard_rank" */ -export interface player_leaderboard_rank_set_input {player_steam_id?: (Scalars['String'] | null),rank?: (Scalars['Int'] | null),total?: (Scalars['Int'] | null),value?: (Scalars['float8'] | null)} - - -/** aggregate stddev on columns */ -export interface player_leaderboard_rank_stddev_fieldsGenqlSelection{ - rank?: boolean | number - total?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface player_leaderboard_rank_stddev_pop_fieldsGenqlSelection{ - rank?: boolean | number - total?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface player_leaderboard_rank_stddev_samp_fieldsGenqlSelection{ - rank?: boolean | number - total?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "player_leaderboard_rank" */ -export interface player_leaderboard_rank_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: player_leaderboard_rank_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface player_leaderboard_rank_stream_cursor_value_input {player_steam_id?: (Scalars['String'] | null),rank?: (Scalars['Int'] | null),total?: (Scalars['Int'] | null),value?: (Scalars['float8'] | null)} - - -/** aggregate sum on columns */ -export interface player_leaderboard_rank_sum_fieldsGenqlSelection{ - rank?: boolean | number - total?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface player_leaderboard_rank_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (player_leaderboard_rank_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (player_leaderboard_rank_set_input | null), -/** filter the rows which have to be updated */ -where: player_leaderboard_rank_bool_exp} - - -/** aggregate var_pop on columns */ -export interface player_leaderboard_rank_var_pop_fieldsGenqlSelection{ - rank?: boolean | number - total?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface player_leaderboard_rank_var_samp_fieldsGenqlSelection{ - rank?: boolean | number - total?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface player_leaderboard_rank_variance_fieldsGenqlSelection{ - rank?: boolean | number - total?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "player_match_map_stats" */ -export interface player_match_map_statsGenqlSelection{ - assists?: boolean | number - assists_ct?: boolean | number - assists_t?: boolean | number - counter_strafe_eligible_shots?: boolean | number - counter_strafed_shots?: boolean | number - crosshair_angle_count?: boolean | number - crosshair_angle_sum_deg?: boolean | number - damage?: boolean | number - damage_ct?: boolean | number - damage_t?: boolean | number - deaths?: boolean | number - deaths_ct?: boolean | number - deaths_t?: boolean | number - decoy_throws?: boolean | number - enemies_flashed?: boolean | number - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - five_kill_rounds?: boolean | number - flash_assists?: boolean | number - flash_duration_count?: boolean | number - flash_duration_sum?: boolean | number - flashes_thrown?: boolean | number - four_kill_rounds?: boolean | number - he_damage?: boolean | number - he_team_damage?: boolean | number - he_throws?: boolean | number - headshot_hits?: boolean | number - hits?: boolean | number - hits_at_spotted?: boolean | number - hs_kills?: boolean | number - hs_kills_ct?: boolean | number - hs_kills_t?: boolean | number - kast_rounds?: boolean | number - kast_total_rounds?: boolean | number - kills?: boolean | number - kills_ct?: boolean | number - kills_t?: boolean | number - knife_kills?: boolean | number - /** An object relationship */ - match?: matchesGenqlSelection - match_id?: boolean | number - /** An object relationship */ - match_map?: match_mapsGenqlSelection - match_map_id?: boolean | number - molotov_damage?: boolean | number - molotov_throws?: boolean | number - non_awp_hits?: boolean | number - on_target_frames?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - rounds_ct?: boolean | number - rounds_played?: boolean | number - rounds_t?: boolean | number - shots_at_spotted?: boolean | number - shots_fired?: boolean | number - smoke_throws?: boolean | number - spotted_count?: boolean | number - spotted_with_damage_count?: boolean | number - spray_hits?: boolean | number - spray_shots?: boolean | number - steam_id?: boolean | number - team_damage?: boolean | number - team_flashed?: boolean | number - three_kill_rounds?: boolean | number - time_to_damage_count?: boolean | number - time_to_damage_sum_s?: boolean | number - total_engagement_frames?: boolean | number - trade_kill_attempts?: boolean | number - trade_kill_opportunities?: boolean | number - trade_kill_successes?: boolean | number - traded_death_attempts?: boolean | number - traded_death_opportunities?: boolean | number - traded_death_successes?: boolean | number - two_kill_rounds?: boolean | number - unused_utility_value?: boolean | number - updated_at?: boolean | number - util_on_death_count?: boolean | number - util_on_death_sum?: boolean | number - wasted_magazine_shots?: boolean | number - zeus_kills?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "player_match_map_stats" */ -export interface player_match_map_stats_aggregateGenqlSelection{ - aggregate?: player_match_map_stats_aggregate_fieldsGenqlSelection - nodes?: player_match_map_statsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface player_match_map_stats_aggregate_bool_exp {count?: (player_match_map_stats_aggregate_bool_exp_count | null)} - -export interface player_match_map_stats_aggregate_bool_exp_count {arguments?: (player_match_map_stats_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (player_match_map_stats_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "player_match_map_stats" */ -export interface player_match_map_stats_aggregate_fieldsGenqlSelection{ - avg?: player_match_map_stats_avg_fieldsGenqlSelection - count?: { __args: {columns?: (player_match_map_stats_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: player_match_map_stats_max_fieldsGenqlSelection - min?: player_match_map_stats_min_fieldsGenqlSelection - stddev?: player_match_map_stats_stddev_fieldsGenqlSelection - stddev_pop?: player_match_map_stats_stddev_pop_fieldsGenqlSelection - stddev_samp?: player_match_map_stats_stddev_samp_fieldsGenqlSelection - sum?: player_match_map_stats_sum_fieldsGenqlSelection - var_pop?: player_match_map_stats_var_pop_fieldsGenqlSelection - var_samp?: player_match_map_stats_var_samp_fieldsGenqlSelection - variance?: player_match_map_stats_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "player_match_map_stats" */ -export interface player_match_map_stats_aggregate_order_by {avg?: (player_match_map_stats_avg_order_by | null),count?: (order_by | null),max?: (player_match_map_stats_max_order_by | null),min?: (player_match_map_stats_min_order_by | null),stddev?: (player_match_map_stats_stddev_order_by | null),stddev_pop?: (player_match_map_stats_stddev_pop_order_by | null),stddev_samp?: (player_match_map_stats_stddev_samp_order_by | null),sum?: (player_match_map_stats_sum_order_by | null),var_pop?: (player_match_map_stats_var_pop_order_by | null),var_samp?: (player_match_map_stats_var_samp_order_by | null),variance?: (player_match_map_stats_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "player_match_map_stats" */ -export interface player_match_map_stats_arr_rel_insert_input {data: player_match_map_stats_insert_input[], -/** upsert condition */ -on_conflict?: (player_match_map_stats_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface player_match_map_stats_avg_fieldsGenqlSelection{ - assists?: boolean | number - assists_ct?: boolean | number - assists_t?: boolean | number - counter_strafe_eligible_shots?: boolean | number - counter_strafed_shots?: boolean | number - crosshair_angle_count?: boolean | number - crosshair_angle_sum_deg?: boolean | number - damage?: boolean | number - damage_ct?: boolean | number - damage_t?: boolean | number - deaths?: boolean | number - deaths_ct?: boolean | number - deaths_t?: boolean | number - decoy_throws?: boolean | number - enemies_flashed?: boolean | number - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - five_kill_rounds?: boolean | number - flash_assists?: boolean | number - flash_duration_count?: boolean | number - flash_duration_sum?: boolean | number - flashes_thrown?: boolean | number - four_kill_rounds?: boolean | number - he_damage?: boolean | number - he_team_damage?: boolean | number - he_throws?: boolean | number - headshot_hits?: boolean | number - hits?: boolean | number - hits_at_spotted?: boolean | number - hs_kills?: boolean | number - hs_kills_ct?: boolean | number - hs_kills_t?: boolean | number - kast_rounds?: boolean | number - kast_total_rounds?: boolean | number - kills?: boolean | number - kills_ct?: boolean | number - kills_t?: boolean | number - knife_kills?: boolean | number - molotov_damage?: boolean | number - molotov_throws?: boolean | number - non_awp_hits?: boolean | number - on_target_frames?: boolean | number - rounds_ct?: boolean | number - rounds_played?: boolean | number - rounds_t?: boolean | number - shots_at_spotted?: boolean | number - shots_fired?: boolean | number - smoke_throws?: boolean | number - spotted_count?: boolean | number - spotted_with_damage_count?: boolean | number - spray_hits?: boolean | number - spray_shots?: boolean | number - steam_id?: boolean | number - team_damage?: boolean | number - team_flashed?: boolean | number - three_kill_rounds?: boolean | number - time_to_damage_count?: boolean | number - time_to_damage_sum_s?: boolean | number - total_engagement_frames?: boolean | number - trade_kill_attempts?: boolean | number - trade_kill_opportunities?: boolean | number - trade_kill_successes?: boolean | number - traded_death_attempts?: boolean | number - traded_death_opportunities?: boolean | number - traded_death_successes?: boolean | number - two_kill_rounds?: boolean | number - unused_utility_value?: boolean | number - util_on_death_count?: boolean | number - util_on_death_sum?: boolean | number - wasted_magazine_shots?: boolean | number - zeus_kills?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "player_match_map_stats" */ -export interface player_match_map_stats_avg_order_by {assists?: (order_by | null),assists_ct?: (order_by | null),assists_t?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),crosshair_angle_count?: (order_by | null),crosshair_angle_sum_deg?: (order_by | null),damage?: (order_by | null),damage_ct?: (order_by | null),damage_t?: (order_by | null),deaths?: (order_by | null),deaths_ct?: (order_by | null),deaths_t?: (order_by | null),decoy_throws?: (order_by | null),enemies_flashed?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),five_kill_rounds?: (order_by | null),flash_assists?: (order_by | null),flash_duration_count?: (order_by | null),flash_duration_sum?: (order_by | null),flashes_thrown?: (order_by | null),four_kill_rounds?: (order_by | null),he_damage?: (order_by | null),he_team_damage?: (order_by | null),he_throws?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),hs_kills?: (order_by | null),hs_kills_ct?: (order_by | null),hs_kills_t?: (order_by | null),kast_rounds?: (order_by | null),kast_total_rounds?: (order_by | null),kills?: (order_by | null),kills_ct?: (order_by | null),kills_t?: (order_by | null),knife_kills?: (order_by | null),molotov_damage?: (order_by | null),molotov_throws?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),rounds_ct?: (order_by | null),rounds_played?: (order_by | null),rounds_t?: (order_by | null),shots_at_spotted?: (order_by | null),shots_fired?: (order_by | null),smoke_throws?: (order_by | null),spotted_count?: (order_by | null),spotted_with_damage_count?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),steam_id?: (order_by | null),team_damage?: (order_by | null),team_flashed?: (order_by | null),three_kill_rounds?: (order_by | null),time_to_damage_count?: (order_by | null),time_to_damage_sum_s?: (order_by | null),total_engagement_frames?: (order_by | null),trade_kill_attempts?: (order_by | null),trade_kill_opportunities?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_attempts?: (order_by | null),traded_death_opportunities?: (order_by | null),traded_death_successes?: (order_by | null),two_kill_rounds?: (order_by | null),unused_utility_value?: (order_by | null),util_on_death_count?: (order_by | null),util_on_death_sum?: (order_by | null),wasted_magazine_shots?: (order_by | null),zeus_kills?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "player_match_map_stats". All fields are combined with a logical 'AND'. */ -export interface player_match_map_stats_bool_exp {_and?: (player_match_map_stats_bool_exp[] | null),_not?: (player_match_map_stats_bool_exp | null),_or?: (player_match_map_stats_bool_exp[] | null),assists?: (Int_comparison_exp | null),assists_ct?: (Int_comparison_exp | null),assists_t?: (Int_comparison_exp | null),counter_strafe_eligible_shots?: (Int_comparison_exp | null),counter_strafed_shots?: (Int_comparison_exp | null),crosshair_angle_count?: (Int_comparison_exp | null),crosshair_angle_sum_deg?: (numeric_comparison_exp | null),damage?: (Int_comparison_exp | null),damage_ct?: (Int_comparison_exp | null),damage_t?: (Int_comparison_exp | null),deaths?: (Int_comparison_exp | null),deaths_ct?: (Int_comparison_exp | null),deaths_t?: (Int_comparison_exp | null),decoy_throws?: (Int_comparison_exp | null),enemies_flashed?: (Int_comparison_exp | null),first_bullet_hits?: (Int_comparison_exp | null),first_bullet_shots?: (Int_comparison_exp | null),five_kill_rounds?: (Int_comparison_exp | null),flash_assists?: (Int_comparison_exp | null),flash_duration_count?: (Int_comparison_exp | null),flash_duration_sum?: (numeric_comparison_exp | null),flashes_thrown?: (Int_comparison_exp | null),four_kill_rounds?: (Int_comparison_exp | null),he_damage?: (Int_comparison_exp | null),he_team_damage?: (Int_comparison_exp | null),he_throws?: (Int_comparison_exp | null),headshot_hits?: (Int_comparison_exp | null),hits?: (Int_comparison_exp | null),hits_at_spotted?: (Int_comparison_exp | null),hs_kills?: (Int_comparison_exp | null),hs_kills_ct?: (Int_comparison_exp | null),hs_kills_t?: (Int_comparison_exp | null),kast_rounds?: (Int_comparison_exp | null),kast_total_rounds?: (Int_comparison_exp | null),kills?: (Int_comparison_exp | null),kills_ct?: (Int_comparison_exp | null),kills_t?: (Int_comparison_exp | null),knife_kills?: (Int_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_id?: (uuid_comparison_exp | null),molotov_damage?: (Int_comparison_exp | null),molotov_throws?: (Int_comparison_exp | null),non_awp_hits?: (Int_comparison_exp | null),on_target_frames?: (Int_comparison_exp | null),player?: (players_bool_exp | null),rounds_ct?: (Int_comparison_exp | null),rounds_played?: (Int_comparison_exp | null),rounds_t?: (Int_comparison_exp | null),shots_at_spotted?: (Int_comparison_exp | null),shots_fired?: (Int_comparison_exp | null),smoke_throws?: (Int_comparison_exp | null),spotted_count?: (Int_comparison_exp | null),spotted_with_damage_count?: (Int_comparison_exp | null),spray_hits?: (Int_comparison_exp | null),spray_shots?: (Int_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),team_damage?: (Int_comparison_exp | null),team_flashed?: (Int_comparison_exp | null),three_kill_rounds?: (Int_comparison_exp | null),time_to_damage_count?: (Int_comparison_exp | null),time_to_damage_sum_s?: (numeric_comparison_exp | null),total_engagement_frames?: (Int_comparison_exp | null),trade_kill_attempts?: (Int_comparison_exp | null),trade_kill_opportunities?: (Int_comparison_exp | null),trade_kill_successes?: (Int_comparison_exp | null),traded_death_attempts?: (Int_comparison_exp | null),traded_death_opportunities?: (Int_comparison_exp | null),traded_death_successes?: (Int_comparison_exp | null),two_kill_rounds?: (Int_comparison_exp | null),unused_utility_value?: (Int_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null),util_on_death_count?: (Int_comparison_exp | null),util_on_death_sum?: (Int_comparison_exp | null),wasted_magazine_shots?: (Int_comparison_exp | null),zeus_kills?: (Int_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "player_match_map_stats" */ -export interface player_match_map_stats_inc_input {assists?: (Scalars['Int'] | null),assists_ct?: (Scalars['Int'] | null),assists_t?: (Scalars['Int'] | null),counter_strafe_eligible_shots?: (Scalars['Int'] | null),counter_strafed_shots?: (Scalars['Int'] | null),crosshair_angle_count?: (Scalars['Int'] | null),crosshair_angle_sum_deg?: (Scalars['numeric'] | null),damage?: (Scalars['Int'] | null),damage_ct?: (Scalars['Int'] | null),damage_t?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),deaths_ct?: (Scalars['Int'] | null),deaths_t?: (Scalars['Int'] | null),decoy_throws?: (Scalars['Int'] | null),enemies_flashed?: (Scalars['Int'] | null),first_bullet_hits?: (Scalars['Int'] | null),first_bullet_shots?: (Scalars['Int'] | null),five_kill_rounds?: (Scalars['Int'] | null),flash_assists?: (Scalars['Int'] | null),flash_duration_count?: (Scalars['Int'] | null),flash_duration_sum?: (Scalars['numeric'] | null),flashes_thrown?: (Scalars['Int'] | null),four_kill_rounds?: (Scalars['Int'] | null),he_damage?: (Scalars['Int'] | null),he_team_damage?: (Scalars['Int'] | null),he_throws?: (Scalars['Int'] | null),headshot_hits?: (Scalars['Int'] | null),hits?: (Scalars['Int'] | null),hits_at_spotted?: (Scalars['Int'] | null),hs_kills?: (Scalars['Int'] | null),hs_kills_ct?: (Scalars['Int'] | null),hs_kills_t?: (Scalars['Int'] | null),kast_rounds?: (Scalars['Int'] | null),kast_total_rounds?: (Scalars['Int'] | null),kills?: (Scalars['Int'] | null),kills_ct?: (Scalars['Int'] | null),kills_t?: (Scalars['Int'] | null),knife_kills?: (Scalars['Int'] | null),molotov_damage?: (Scalars['Int'] | null),molotov_throws?: (Scalars['Int'] | null),non_awp_hits?: (Scalars['Int'] | null),on_target_frames?: (Scalars['Int'] | null),rounds_ct?: (Scalars['Int'] | null),rounds_played?: (Scalars['Int'] | null),rounds_t?: (Scalars['Int'] | null),shots_at_spotted?: (Scalars['Int'] | null),shots_fired?: (Scalars['Int'] | null),smoke_throws?: (Scalars['Int'] | null),spotted_count?: (Scalars['Int'] | null),spotted_with_damage_count?: (Scalars['Int'] | null),spray_hits?: (Scalars['Int'] | null),spray_shots?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null),team_damage?: (Scalars['Int'] | null),team_flashed?: (Scalars['Int'] | null),three_kill_rounds?: (Scalars['Int'] | null),time_to_damage_count?: (Scalars['Int'] | null),time_to_damage_sum_s?: (Scalars['numeric'] | null),total_engagement_frames?: (Scalars['Int'] | null),trade_kill_attempts?: (Scalars['Int'] | null),trade_kill_opportunities?: (Scalars['Int'] | null),trade_kill_successes?: (Scalars['Int'] | null),traded_death_attempts?: (Scalars['Int'] | null),traded_death_opportunities?: (Scalars['Int'] | null),traded_death_successes?: (Scalars['Int'] | null),two_kill_rounds?: (Scalars['Int'] | null),unused_utility_value?: (Scalars['Int'] | null),util_on_death_count?: (Scalars['Int'] | null),util_on_death_sum?: (Scalars['Int'] | null),wasted_magazine_shots?: (Scalars['Int'] | null),zeus_kills?: (Scalars['Int'] | null)} - - -/** input type for inserting data into table "player_match_map_stats" */ -export interface player_match_map_stats_insert_input {assists?: (Scalars['Int'] | null),assists_ct?: (Scalars['Int'] | null),assists_t?: (Scalars['Int'] | null),counter_strafe_eligible_shots?: (Scalars['Int'] | null),counter_strafed_shots?: (Scalars['Int'] | null),crosshair_angle_count?: (Scalars['Int'] | null),crosshair_angle_sum_deg?: (Scalars['numeric'] | null),damage?: (Scalars['Int'] | null),damage_ct?: (Scalars['Int'] | null),damage_t?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),deaths_ct?: (Scalars['Int'] | null),deaths_t?: (Scalars['Int'] | null),decoy_throws?: (Scalars['Int'] | null),enemies_flashed?: (Scalars['Int'] | null),first_bullet_hits?: (Scalars['Int'] | null),first_bullet_shots?: (Scalars['Int'] | null),five_kill_rounds?: (Scalars['Int'] | null),flash_assists?: (Scalars['Int'] | null),flash_duration_count?: (Scalars['Int'] | null),flash_duration_sum?: (Scalars['numeric'] | null),flashes_thrown?: (Scalars['Int'] | null),four_kill_rounds?: (Scalars['Int'] | null),he_damage?: (Scalars['Int'] | null),he_team_damage?: (Scalars['Int'] | null),he_throws?: (Scalars['Int'] | null),headshot_hits?: (Scalars['Int'] | null),hits?: (Scalars['Int'] | null),hits_at_spotted?: (Scalars['Int'] | null),hs_kills?: (Scalars['Int'] | null),hs_kills_ct?: (Scalars['Int'] | null),hs_kills_t?: (Scalars['Int'] | null),kast_rounds?: (Scalars['Int'] | null),kast_total_rounds?: (Scalars['Int'] | null),kills?: (Scalars['Int'] | null),kills_ct?: (Scalars['Int'] | null),kills_t?: (Scalars['Int'] | null),knife_kills?: (Scalars['Int'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_map?: (match_maps_obj_rel_insert_input | null),match_map_id?: (Scalars['uuid'] | null),molotov_damage?: (Scalars['Int'] | null),molotov_throws?: (Scalars['Int'] | null),non_awp_hits?: (Scalars['Int'] | null),on_target_frames?: (Scalars['Int'] | null),player?: (players_obj_rel_insert_input | null),rounds_ct?: (Scalars['Int'] | null),rounds_played?: (Scalars['Int'] | null),rounds_t?: (Scalars['Int'] | null),shots_at_spotted?: (Scalars['Int'] | null),shots_fired?: (Scalars['Int'] | null),smoke_throws?: (Scalars['Int'] | null),spotted_count?: (Scalars['Int'] | null),spotted_with_damage_count?: (Scalars['Int'] | null),spray_hits?: (Scalars['Int'] | null),spray_shots?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null),team_damage?: (Scalars['Int'] | null),team_flashed?: (Scalars['Int'] | null),three_kill_rounds?: (Scalars['Int'] | null),time_to_damage_count?: (Scalars['Int'] | null),time_to_damage_sum_s?: (Scalars['numeric'] | null),total_engagement_frames?: (Scalars['Int'] | null),trade_kill_attempts?: (Scalars['Int'] | null),trade_kill_opportunities?: (Scalars['Int'] | null),trade_kill_successes?: (Scalars['Int'] | null),traded_death_attempts?: (Scalars['Int'] | null),traded_death_opportunities?: (Scalars['Int'] | null),traded_death_successes?: (Scalars['Int'] | null),two_kill_rounds?: (Scalars['Int'] | null),unused_utility_value?: (Scalars['Int'] | null),updated_at?: (Scalars['timestamptz'] | null),util_on_death_count?: (Scalars['Int'] | null),util_on_death_sum?: (Scalars['Int'] | null),wasted_magazine_shots?: (Scalars['Int'] | null),zeus_kills?: (Scalars['Int'] | null)} - - -/** aggregate max on columns */ -export interface player_match_map_stats_max_fieldsGenqlSelection{ - assists?: boolean | number - assists_ct?: boolean | number - assists_t?: boolean | number - counter_strafe_eligible_shots?: boolean | number - counter_strafed_shots?: boolean | number - crosshair_angle_count?: boolean | number - crosshair_angle_sum_deg?: boolean | number - damage?: boolean | number - damage_ct?: boolean | number - damage_t?: boolean | number - deaths?: boolean | number - deaths_ct?: boolean | number - deaths_t?: boolean | number - decoy_throws?: boolean | number - enemies_flashed?: boolean | number - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - five_kill_rounds?: boolean | number - flash_assists?: boolean | number - flash_duration_count?: boolean | number - flash_duration_sum?: boolean | number - flashes_thrown?: boolean | number - four_kill_rounds?: boolean | number - he_damage?: boolean | number - he_team_damage?: boolean | number - he_throws?: boolean | number - headshot_hits?: boolean | number - hits?: boolean | number - hits_at_spotted?: boolean | number - hs_kills?: boolean | number - hs_kills_ct?: boolean | number - hs_kills_t?: boolean | number - kast_rounds?: boolean | number - kast_total_rounds?: boolean | number - kills?: boolean | number - kills_ct?: boolean | number - kills_t?: boolean | number - knife_kills?: boolean | number - match_id?: boolean | number - match_map_id?: boolean | number - molotov_damage?: boolean | number - molotov_throws?: boolean | number - non_awp_hits?: boolean | number - on_target_frames?: boolean | number - rounds_ct?: boolean | number - rounds_played?: boolean | number - rounds_t?: boolean | number - shots_at_spotted?: boolean | number - shots_fired?: boolean | number - smoke_throws?: boolean | number - spotted_count?: boolean | number - spotted_with_damage_count?: boolean | number - spray_hits?: boolean | number - spray_shots?: boolean | number - steam_id?: boolean | number - team_damage?: boolean | number - team_flashed?: boolean | number - three_kill_rounds?: boolean | number - time_to_damage_count?: boolean | number - time_to_damage_sum_s?: boolean | number - total_engagement_frames?: boolean | number - trade_kill_attempts?: boolean | number - trade_kill_opportunities?: boolean | number - trade_kill_successes?: boolean | number - traded_death_attempts?: boolean | number - traded_death_opportunities?: boolean | number - traded_death_successes?: boolean | number - two_kill_rounds?: boolean | number - unused_utility_value?: boolean | number - updated_at?: boolean | number - util_on_death_count?: boolean | number - util_on_death_sum?: boolean | number - wasted_magazine_shots?: boolean | number - zeus_kills?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "player_match_map_stats" */ -export interface player_match_map_stats_max_order_by {assists?: (order_by | null),assists_ct?: (order_by | null),assists_t?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),crosshair_angle_count?: (order_by | null),crosshair_angle_sum_deg?: (order_by | null),damage?: (order_by | null),damage_ct?: (order_by | null),damage_t?: (order_by | null),deaths?: (order_by | null),deaths_ct?: (order_by | null),deaths_t?: (order_by | null),decoy_throws?: (order_by | null),enemies_flashed?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),five_kill_rounds?: (order_by | null),flash_assists?: (order_by | null),flash_duration_count?: (order_by | null),flash_duration_sum?: (order_by | null),flashes_thrown?: (order_by | null),four_kill_rounds?: (order_by | null),he_damage?: (order_by | null),he_team_damage?: (order_by | null),he_throws?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),hs_kills?: (order_by | null),hs_kills_ct?: (order_by | null),hs_kills_t?: (order_by | null),kast_rounds?: (order_by | null),kast_total_rounds?: (order_by | null),kills?: (order_by | null),kills_ct?: (order_by | null),kills_t?: (order_by | null),knife_kills?: (order_by | null),match_id?: (order_by | null),match_map_id?: (order_by | null),molotov_damage?: (order_by | null),molotov_throws?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),rounds_ct?: (order_by | null),rounds_played?: (order_by | null),rounds_t?: (order_by | null),shots_at_spotted?: (order_by | null),shots_fired?: (order_by | null),smoke_throws?: (order_by | null),spotted_count?: (order_by | null),spotted_with_damage_count?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),steam_id?: (order_by | null),team_damage?: (order_by | null),team_flashed?: (order_by | null),three_kill_rounds?: (order_by | null),time_to_damage_count?: (order_by | null),time_to_damage_sum_s?: (order_by | null),total_engagement_frames?: (order_by | null),trade_kill_attempts?: (order_by | null),trade_kill_opportunities?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_attempts?: (order_by | null),traded_death_opportunities?: (order_by | null),traded_death_successes?: (order_by | null),two_kill_rounds?: (order_by | null),unused_utility_value?: (order_by | null),updated_at?: (order_by | null),util_on_death_count?: (order_by | null),util_on_death_sum?: (order_by | null),wasted_magazine_shots?: (order_by | null),zeus_kills?: (order_by | null)} - - -/** aggregate min on columns */ -export interface player_match_map_stats_min_fieldsGenqlSelection{ - assists?: boolean | number - assists_ct?: boolean | number - assists_t?: boolean | number - counter_strafe_eligible_shots?: boolean | number - counter_strafed_shots?: boolean | number - crosshair_angle_count?: boolean | number - crosshair_angle_sum_deg?: boolean | number - damage?: boolean | number - damage_ct?: boolean | number - damage_t?: boolean | number - deaths?: boolean | number - deaths_ct?: boolean | number - deaths_t?: boolean | number - decoy_throws?: boolean | number - enemies_flashed?: boolean | number - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - five_kill_rounds?: boolean | number - flash_assists?: boolean | number - flash_duration_count?: boolean | number - flash_duration_sum?: boolean | number - flashes_thrown?: boolean | number - four_kill_rounds?: boolean | number - he_damage?: boolean | number - he_team_damage?: boolean | number - he_throws?: boolean | number - headshot_hits?: boolean | number - hits?: boolean | number - hits_at_spotted?: boolean | number - hs_kills?: boolean | number - hs_kills_ct?: boolean | number - hs_kills_t?: boolean | number - kast_rounds?: boolean | number - kast_total_rounds?: boolean | number - kills?: boolean | number - kills_ct?: boolean | number - kills_t?: boolean | number - knife_kills?: boolean | number - match_id?: boolean | number - match_map_id?: boolean | number - molotov_damage?: boolean | number - molotov_throws?: boolean | number - non_awp_hits?: boolean | number - on_target_frames?: boolean | number - rounds_ct?: boolean | number - rounds_played?: boolean | number - rounds_t?: boolean | number - shots_at_spotted?: boolean | number - shots_fired?: boolean | number - smoke_throws?: boolean | number - spotted_count?: boolean | number - spotted_with_damage_count?: boolean | number - spray_hits?: boolean | number - spray_shots?: boolean | number - steam_id?: boolean | number - team_damage?: boolean | number - team_flashed?: boolean | number - three_kill_rounds?: boolean | number - time_to_damage_count?: boolean | number - time_to_damage_sum_s?: boolean | number - total_engagement_frames?: boolean | number - trade_kill_attempts?: boolean | number - trade_kill_opportunities?: boolean | number - trade_kill_successes?: boolean | number - traded_death_attempts?: boolean | number - traded_death_opportunities?: boolean | number - traded_death_successes?: boolean | number - two_kill_rounds?: boolean | number - unused_utility_value?: boolean | number - updated_at?: boolean | number - util_on_death_count?: boolean | number - util_on_death_sum?: boolean | number - wasted_magazine_shots?: boolean | number - zeus_kills?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "player_match_map_stats" */ -export interface player_match_map_stats_min_order_by {assists?: (order_by | null),assists_ct?: (order_by | null),assists_t?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),crosshair_angle_count?: (order_by | null),crosshair_angle_sum_deg?: (order_by | null),damage?: (order_by | null),damage_ct?: (order_by | null),damage_t?: (order_by | null),deaths?: (order_by | null),deaths_ct?: (order_by | null),deaths_t?: (order_by | null),decoy_throws?: (order_by | null),enemies_flashed?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),five_kill_rounds?: (order_by | null),flash_assists?: (order_by | null),flash_duration_count?: (order_by | null),flash_duration_sum?: (order_by | null),flashes_thrown?: (order_by | null),four_kill_rounds?: (order_by | null),he_damage?: (order_by | null),he_team_damage?: (order_by | null),he_throws?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),hs_kills?: (order_by | null),hs_kills_ct?: (order_by | null),hs_kills_t?: (order_by | null),kast_rounds?: (order_by | null),kast_total_rounds?: (order_by | null),kills?: (order_by | null),kills_ct?: (order_by | null),kills_t?: (order_by | null),knife_kills?: (order_by | null),match_id?: (order_by | null),match_map_id?: (order_by | null),molotov_damage?: (order_by | null),molotov_throws?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),rounds_ct?: (order_by | null),rounds_played?: (order_by | null),rounds_t?: (order_by | null),shots_at_spotted?: (order_by | null),shots_fired?: (order_by | null),smoke_throws?: (order_by | null),spotted_count?: (order_by | null),spotted_with_damage_count?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),steam_id?: (order_by | null),team_damage?: (order_by | null),team_flashed?: (order_by | null),three_kill_rounds?: (order_by | null),time_to_damage_count?: (order_by | null),time_to_damage_sum_s?: (order_by | null),total_engagement_frames?: (order_by | null),trade_kill_attempts?: (order_by | null),trade_kill_opportunities?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_attempts?: (order_by | null),traded_death_opportunities?: (order_by | null),traded_death_successes?: (order_by | null),two_kill_rounds?: (order_by | null),unused_utility_value?: (order_by | null),updated_at?: (order_by | null),util_on_death_count?: (order_by | null),util_on_death_sum?: (order_by | null),wasted_magazine_shots?: (order_by | null),zeus_kills?: (order_by | null)} - - -/** response of any mutation on the table "player_match_map_stats" */ -export interface player_match_map_stats_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: player_match_map_statsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "player_match_map_stats" */ -export interface player_match_map_stats_on_conflict {constraint: player_match_map_stats_constraint,update_columns?: player_match_map_stats_update_column[],where?: (player_match_map_stats_bool_exp | null)} - - -/** Ordering options when selecting data from "player_match_map_stats". */ -export interface player_match_map_stats_order_by {assists?: (order_by | null),assists_ct?: (order_by | null),assists_t?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),crosshair_angle_count?: (order_by | null),crosshair_angle_sum_deg?: (order_by | null),damage?: (order_by | null),damage_ct?: (order_by | null),damage_t?: (order_by | null),deaths?: (order_by | null),deaths_ct?: (order_by | null),deaths_t?: (order_by | null),decoy_throws?: (order_by | null),enemies_flashed?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),five_kill_rounds?: (order_by | null),flash_assists?: (order_by | null),flash_duration_count?: (order_by | null),flash_duration_sum?: (order_by | null),flashes_thrown?: (order_by | null),four_kill_rounds?: (order_by | null),he_damage?: (order_by | null),he_team_damage?: (order_by | null),he_throws?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),hs_kills?: (order_by | null),hs_kills_ct?: (order_by | null),hs_kills_t?: (order_by | null),kast_rounds?: (order_by | null),kast_total_rounds?: (order_by | null),kills?: (order_by | null),kills_ct?: (order_by | null),kills_t?: (order_by | null),knife_kills?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_id?: (order_by | null),molotov_damage?: (order_by | null),molotov_throws?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),player?: (players_order_by | null),rounds_ct?: (order_by | null),rounds_played?: (order_by | null),rounds_t?: (order_by | null),shots_at_spotted?: (order_by | null),shots_fired?: (order_by | null),smoke_throws?: (order_by | null),spotted_count?: (order_by | null),spotted_with_damage_count?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),steam_id?: (order_by | null),team_damage?: (order_by | null),team_flashed?: (order_by | null),three_kill_rounds?: (order_by | null),time_to_damage_count?: (order_by | null),time_to_damage_sum_s?: (order_by | null),total_engagement_frames?: (order_by | null),trade_kill_attempts?: (order_by | null),trade_kill_opportunities?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_attempts?: (order_by | null),traded_death_opportunities?: (order_by | null),traded_death_successes?: (order_by | null),two_kill_rounds?: (order_by | null),unused_utility_value?: (order_by | null),updated_at?: (order_by | null),util_on_death_count?: (order_by | null),util_on_death_sum?: (order_by | null),wasted_magazine_shots?: (order_by | null),zeus_kills?: (order_by | null)} - - -/** primary key columns input for table: player_match_map_stats */ -export interface player_match_map_stats_pk_columns_input {match_map_id: Scalars['uuid'],steam_id: Scalars['bigint']} - - -/** input type for updating data in table "player_match_map_stats" */ -export interface player_match_map_stats_set_input {assists?: (Scalars['Int'] | null),assists_ct?: (Scalars['Int'] | null),assists_t?: (Scalars['Int'] | null),counter_strafe_eligible_shots?: (Scalars['Int'] | null),counter_strafed_shots?: (Scalars['Int'] | null),crosshair_angle_count?: (Scalars['Int'] | null),crosshair_angle_sum_deg?: (Scalars['numeric'] | null),damage?: (Scalars['Int'] | null),damage_ct?: (Scalars['Int'] | null),damage_t?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),deaths_ct?: (Scalars['Int'] | null),deaths_t?: (Scalars['Int'] | null),decoy_throws?: (Scalars['Int'] | null),enemies_flashed?: (Scalars['Int'] | null),first_bullet_hits?: (Scalars['Int'] | null),first_bullet_shots?: (Scalars['Int'] | null),five_kill_rounds?: (Scalars['Int'] | null),flash_assists?: (Scalars['Int'] | null),flash_duration_count?: (Scalars['Int'] | null),flash_duration_sum?: (Scalars['numeric'] | null),flashes_thrown?: (Scalars['Int'] | null),four_kill_rounds?: (Scalars['Int'] | null),he_damage?: (Scalars['Int'] | null),he_team_damage?: (Scalars['Int'] | null),he_throws?: (Scalars['Int'] | null),headshot_hits?: (Scalars['Int'] | null),hits?: (Scalars['Int'] | null),hits_at_spotted?: (Scalars['Int'] | null),hs_kills?: (Scalars['Int'] | null),hs_kills_ct?: (Scalars['Int'] | null),hs_kills_t?: (Scalars['Int'] | null),kast_rounds?: (Scalars['Int'] | null),kast_total_rounds?: (Scalars['Int'] | null),kills?: (Scalars['Int'] | null),kills_ct?: (Scalars['Int'] | null),kills_t?: (Scalars['Int'] | null),knife_kills?: (Scalars['Int'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),molotov_damage?: (Scalars['Int'] | null),molotov_throws?: (Scalars['Int'] | null),non_awp_hits?: (Scalars['Int'] | null),on_target_frames?: (Scalars['Int'] | null),rounds_ct?: (Scalars['Int'] | null),rounds_played?: (Scalars['Int'] | null),rounds_t?: (Scalars['Int'] | null),shots_at_spotted?: (Scalars['Int'] | null),shots_fired?: (Scalars['Int'] | null),smoke_throws?: (Scalars['Int'] | null),spotted_count?: (Scalars['Int'] | null),spotted_with_damage_count?: (Scalars['Int'] | null),spray_hits?: (Scalars['Int'] | null),spray_shots?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null),team_damage?: (Scalars['Int'] | null),team_flashed?: (Scalars['Int'] | null),three_kill_rounds?: (Scalars['Int'] | null),time_to_damage_count?: (Scalars['Int'] | null),time_to_damage_sum_s?: (Scalars['numeric'] | null),total_engagement_frames?: (Scalars['Int'] | null),trade_kill_attempts?: (Scalars['Int'] | null),trade_kill_opportunities?: (Scalars['Int'] | null),trade_kill_successes?: (Scalars['Int'] | null),traded_death_attempts?: (Scalars['Int'] | null),traded_death_opportunities?: (Scalars['Int'] | null),traded_death_successes?: (Scalars['Int'] | null),two_kill_rounds?: (Scalars['Int'] | null),unused_utility_value?: (Scalars['Int'] | null),updated_at?: (Scalars['timestamptz'] | null),util_on_death_count?: (Scalars['Int'] | null),util_on_death_sum?: (Scalars['Int'] | null),wasted_magazine_shots?: (Scalars['Int'] | null),zeus_kills?: (Scalars['Int'] | null)} - - -/** aggregate stddev on columns */ -export interface player_match_map_stats_stddev_fieldsGenqlSelection{ - assists?: boolean | number - assists_ct?: boolean | number - assists_t?: boolean | number - counter_strafe_eligible_shots?: boolean | number - counter_strafed_shots?: boolean | number - crosshair_angle_count?: boolean | number - crosshair_angle_sum_deg?: boolean | number - damage?: boolean | number - damage_ct?: boolean | number - damage_t?: boolean | number - deaths?: boolean | number - deaths_ct?: boolean | number - deaths_t?: boolean | number - decoy_throws?: boolean | number - enemies_flashed?: boolean | number - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - five_kill_rounds?: boolean | number - flash_assists?: boolean | number - flash_duration_count?: boolean | number - flash_duration_sum?: boolean | number - flashes_thrown?: boolean | number - four_kill_rounds?: boolean | number - he_damage?: boolean | number - he_team_damage?: boolean | number - he_throws?: boolean | number - headshot_hits?: boolean | number - hits?: boolean | number - hits_at_spotted?: boolean | number - hs_kills?: boolean | number - hs_kills_ct?: boolean | number - hs_kills_t?: boolean | number - kast_rounds?: boolean | number - kast_total_rounds?: boolean | number - kills?: boolean | number - kills_ct?: boolean | number - kills_t?: boolean | number - knife_kills?: boolean | number - molotov_damage?: boolean | number - molotov_throws?: boolean | number - non_awp_hits?: boolean | number - on_target_frames?: boolean | number - rounds_ct?: boolean | number - rounds_played?: boolean | number - rounds_t?: boolean | number - shots_at_spotted?: boolean | number - shots_fired?: boolean | number - smoke_throws?: boolean | number - spotted_count?: boolean | number - spotted_with_damage_count?: boolean | number - spray_hits?: boolean | number - spray_shots?: boolean | number - steam_id?: boolean | number - team_damage?: boolean | number - team_flashed?: boolean | number - three_kill_rounds?: boolean | number - time_to_damage_count?: boolean | number - time_to_damage_sum_s?: boolean | number - total_engagement_frames?: boolean | number - trade_kill_attempts?: boolean | number - trade_kill_opportunities?: boolean | number - trade_kill_successes?: boolean | number - traded_death_attempts?: boolean | number - traded_death_opportunities?: boolean | number - traded_death_successes?: boolean | number - two_kill_rounds?: boolean | number - unused_utility_value?: boolean | number - util_on_death_count?: boolean | number - util_on_death_sum?: boolean | number - wasted_magazine_shots?: boolean | number - zeus_kills?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "player_match_map_stats" */ -export interface player_match_map_stats_stddev_order_by {assists?: (order_by | null),assists_ct?: (order_by | null),assists_t?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),crosshair_angle_count?: (order_by | null),crosshair_angle_sum_deg?: (order_by | null),damage?: (order_by | null),damage_ct?: (order_by | null),damage_t?: (order_by | null),deaths?: (order_by | null),deaths_ct?: (order_by | null),deaths_t?: (order_by | null),decoy_throws?: (order_by | null),enemies_flashed?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),five_kill_rounds?: (order_by | null),flash_assists?: (order_by | null),flash_duration_count?: (order_by | null),flash_duration_sum?: (order_by | null),flashes_thrown?: (order_by | null),four_kill_rounds?: (order_by | null),he_damage?: (order_by | null),he_team_damage?: (order_by | null),he_throws?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),hs_kills?: (order_by | null),hs_kills_ct?: (order_by | null),hs_kills_t?: (order_by | null),kast_rounds?: (order_by | null),kast_total_rounds?: (order_by | null),kills?: (order_by | null),kills_ct?: (order_by | null),kills_t?: (order_by | null),knife_kills?: (order_by | null),molotov_damage?: (order_by | null),molotov_throws?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),rounds_ct?: (order_by | null),rounds_played?: (order_by | null),rounds_t?: (order_by | null),shots_at_spotted?: (order_by | null),shots_fired?: (order_by | null),smoke_throws?: (order_by | null),spotted_count?: (order_by | null),spotted_with_damage_count?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),steam_id?: (order_by | null),team_damage?: (order_by | null),team_flashed?: (order_by | null),three_kill_rounds?: (order_by | null),time_to_damage_count?: (order_by | null),time_to_damage_sum_s?: (order_by | null),total_engagement_frames?: (order_by | null),trade_kill_attempts?: (order_by | null),trade_kill_opportunities?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_attempts?: (order_by | null),traded_death_opportunities?: (order_by | null),traded_death_successes?: (order_by | null),two_kill_rounds?: (order_by | null),unused_utility_value?: (order_by | null),util_on_death_count?: (order_by | null),util_on_death_sum?: (order_by | null),wasted_magazine_shots?: (order_by | null),zeus_kills?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface player_match_map_stats_stddev_pop_fieldsGenqlSelection{ - assists?: boolean | number - assists_ct?: boolean | number - assists_t?: boolean | number - counter_strafe_eligible_shots?: boolean | number - counter_strafed_shots?: boolean | number - crosshair_angle_count?: boolean | number - crosshair_angle_sum_deg?: boolean | number - damage?: boolean | number - damage_ct?: boolean | number - damage_t?: boolean | number - deaths?: boolean | number - deaths_ct?: boolean | number - deaths_t?: boolean | number - decoy_throws?: boolean | number - enemies_flashed?: boolean | number - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - five_kill_rounds?: boolean | number - flash_assists?: boolean | number - flash_duration_count?: boolean | number - flash_duration_sum?: boolean | number - flashes_thrown?: boolean | number - four_kill_rounds?: boolean | number - he_damage?: boolean | number - he_team_damage?: boolean | number - he_throws?: boolean | number - headshot_hits?: boolean | number - hits?: boolean | number - hits_at_spotted?: boolean | number - hs_kills?: boolean | number - hs_kills_ct?: boolean | number - hs_kills_t?: boolean | number - kast_rounds?: boolean | number - kast_total_rounds?: boolean | number - kills?: boolean | number - kills_ct?: boolean | number - kills_t?: boolean | number - knife_kills?: boolean | number - molotov_damage?: boolean | number - molotov_throws?: boolean | number - non_awp_hits?: boolean | number - on_target_frames?: boolean | number - rounds_ct?: boolean | number - rounds_played?: boolean | number - rounds_t?: boolean | number - shots_at_spotted?: boolean | number - shots_fired?: boolean | number - smoke_throws?: boolean | number - spotted_count?: boolean | number - spotted_with_damage_count?: boolean | number - spray_hits?: boolean | number - spray_shots?: boolean | number - steam_id?: boolean | number - team_damage?: boolean | number - team_flashed?: boolean | number - three_kill_rounds?: boolean | number - time_to_damage_count?: boolean | number - time_to_damage_sum_s?: boolean | number - total_engagement_frames?: boolean | number - trade_kill_attempts?: boolean | number - trade_kill_opportunities?: boolean | number - trade_kill_successes?: boolean | number - traded_death_attempts?: boolean | number - traded_death_opportunities?: boolean | number - traded_death_successes?: boolean | number - two_kill_rounds?: boolean | number - unused_utility_value?: boolean | number - util_on_death_count?: boolean | number - util_on_death_sum?: boolean | number - wasted_magazine_shots?: boolean | number - zeus_kills?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "player_match_map_stats" */ -export interface player_match_map_stats_stddev_pop_order_by {assists?: (order_by | null),assists_ct?: (order_by | null),assists_t?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),crosshair_angle_count?: (order_by | null),crosshair_angle_sum_deg?: (order_by | null),damage?: (order_by | null),damage_ct?: (order_by | null),damage_t?: (order_by | null),deaths?: (order_by | null),deaths_ct?: (order_by | null),deaths_t?: (order_by | null),decoy_throws?: (order_by | null),enemies_flashed?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),five_kill_rounds?: (order_by | null),flash_assists?: (order_by | null),flash_duration_count?: (order_by | null),flash_duration_sum?: (order_by | null),flashes_thrown?: (order_by | null),four_kill_rounds?: (order_by | null),he_damage?: (order_by | null),he_team_damage?: (order_by | null),he_throws?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),hs_kills?: (order_by | null),hs_kills_ct?: (order_by | null),hs_kills_t?: (order_by | null),kast_rounds?: (order_by | null),kast_total_rounds?: (order_by | null),kills?: (order_by | null),kills_ct?: (order_by | null),kills_t?: (order_by | null),knife_kills?: (order_by | null),molotov_damage?: (order_by | null),molotov_throws?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),rounds_ct?: (order_by | null),rounds_played?: (order_by | null),rounds_t?: (order_by | null),shots_at_spotted?: (order_by | null),shots_fired?: (order_by | null),smoke_throws?: (order_by | null),spotted_count?: (order_by | null),spotted_with_damage_count?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),steam_id?: (order_by | null),team_damage?: (order_by | null),team_flashed?: (order_by | null),three_kill_rounds?: (order_by | null),time_to_damage_count?: (order_by | null),time_to_damage_sum_s?: (order_by | null),total_engagement_frames?: (order_by | null),trade_kill_attempts?: (order_by | null),trade_kill_opportunities?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_attempts?: (order_by | null),traded_death_opportunities?: (order_by | null),traded_death_successes?: (order_by | null),two_kill_rounds?: (order_by | null),unused_utility_value?: (order_by | null),util_on_death_count?: (order_by | null),util_on_death_sum?: (order_by | null),wasted_magazine_shots?: (order_by | null),zeus_kills?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface player_match_map_stats_stddev_samp_fieldsGenqlSelection{ - assists?: boolean | number - assists_ct?: boolean | number - assists_t?: boolean | number - counter_strafe_eligible_shots?: boolean | number - counter_strafed_shots?: boolean | number - crosshair_angle_count?: boolean | number - crosshair_angle_sum_deg?: boolean | number - damage?: boolean | number - damage_ct?: boolean | number - damage_t?: boolean | number - deaths?: boolean | number - deaths_ct?: boolean | number - deaths_t?: boolean | number - decoy_throws?: boolean | number - enemies_flashed?: boolean | number - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - five_kill_rounds?: boolean | number - flash_assists?: boolean | number - flash_duration_count?: boolean | number - flash_duration_sum?: boolean | number - flashes_thrown?: boolean | number - four_kill_rounds?: boolean | number - he_damage?: boolean | number - he_team_damage?: boolean | number - he_throws?: boolean | number - headshot_hits?: boolean | number - hits?: boolean | number - hits_at_spotted?: boolean | number - hs_kills?: boolean | number - hs_kills_ct?: boolean | number - hs_kills_t?: boolean | number - kast_rounds?: boolean | number - kast_total_rounds?: boolean | number - kills?: boolean | number - kills_ct?: boolean | number - kills_t?: boolean | number - knife_kills?: boolean | number - molotov_damage?: boolean | number - molotov_throws?: boolean | number - non_awp_hits?: boolean | number - on_target_frames?: boolean | number - rounds_ct?: boolean | number - rounds_played?: boolean | number - rounds_t?: boolean | number - shots_at_spotted?: boolean | number - shots_fired?: boolean | number - smoke_throws?: boolean | number - spotted_count?: boolean | number - spotted_with_damage_count?: boolean | number - spray_hits?: boolean | number - spray_shots?: boolean | number - steam_id?: boolean | number - team_damage?: boolean | number - team_flashed?: boolean | number - three_kill_rounds?: boolean | number - time_to_damage_count?: boolean | number - time_to_damage_sum_s?: boolean | number - total_engagement_frames?: boolean | number - trade_kill_attempts?: boolean | number - trade_kill_opportunities?: boolean | number - trade_kill_successes?: boolean | number - traded_death_attempts?: boolean | number - traded_death_opportunities?: boolean | number - traded_death_successes?: boolean | number - two_kill_rounds?: boolean | number - unused_utility_value?: boolean | number - util_on_death_count?: boolean | number - util_on_death_sum?: boolean | number - wasted_magazine_shots?: boolean | number - zeus_kills?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "player_match_map_stats" */ -export interface player_match_map_stats_stddev_samp_order_by {assists?: (order_by | null),assists_ct?: (order_by | null),assists_t?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),crosshair_angle_count?: (order_by | null),crosshair_angle_sum_deg?: (order_by | null),damage?: (order_by | null),damage_ct?: (order_by | null),damage_t?: (order_by | null),deaths?: (order_by | null),deaths_ct?: (order_by | null),deaths_t?: (order_by | null),decoy_throws?: (order_by | null),enemies_flashed?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),five_kill_rounds?: (order_by | null),flash_assists?: (order_by | null),flash_duration_count?: (order_by | null),flash_duration_sum?: (order_by | null),flashes_thrown?: (order_by | null),four_kill_rounds?: (order_by | null),he_damage?: (order_by | null),he_team_damage?: (order_by | null),he_throws?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),hs_kills?: (order_by | null),hs_kills_ct?: (order_by | null),hs_kills_t?: (order_by | null),kast_rounds?: (order_by | null),kast_total_rounds?: (order_by | null),kills?: (order_by | null),kills_ct?: (order_by | null),kills_t?: (order_by | null),knife_kills?: (order_by | null),molotov_damage?: (order_by | null),molotov_throws?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),rounds_ct?: (order_by | null),rounds_played?: (order_by | null),rounds_t?: (order_by | null),shots_at_spotted?: (order_by | null),shots_fired?: (order_by | null),smoke_throws?: (order_by | null),spotted_count?: (order_by | null),spotted_with_damage_count?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),steam_id?: (order_by | null),team_damage?: (order_by | null),team_flashed?: (order_by | null),three_kill_rounds?: (order_by | null),time_to_damage_count?: (order_by | null),time_to_damage_sum_s?: (order_by | null),total_engagement_frames?: (order_by | null),trade_kill_attempts?: (order_by | null),trade_kill_opportunities?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_attempts?: (order_by | null),traded_death_opportunities?: (order_by | null),traded_death_successes?: (order_by | null),two_kill_rounds?: (order_by | null),unused_utility_value?: (order_by | null),util_on_death_count?: (order_by | null),util_on_death_sum?: (order_by | null),wasted_magazine_shots?: (order_by | null),zeus_kills?: (order_by | null)} - - -/** Streaming cursor of the table "player_match_map_stats" */ -export interface player_match_map_stats_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: player_match_map_stats_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface player_match_map_stats_stream_cursor_value_input {assists?: (Scalars['Int'] | null),assists_ct?: (Scalars['Int'] | null),assists_t?: (Scalars['Int'] | null),counter_strafe_eligible_shots?: (Scalars['Int'] | null),counter_strafed_shots?: (Scalars['Int'] | null),crosshair_angle_count?: (Scalars['Int'] | null),crosshair_angle_sum_deg?: (Scalars['numeric'] | null),damage?: (Scalars['Int'] | null),damage_ct?: (Scalars['Int'] | null),damage_t?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),deaths_ct?: (Scalars['Int'] | null),deaths_t?: (Scalars['Int'] | null),decoy_throws?: (Scalars['Int'] | null),enemies_flashed?: (Scalars['Int'] | null),first_bullet_hits?: (Scalars['Int'] | null),first_bullet_shots?: (Scalars['Int'] | null),five_kill_rounds?: (Scalars['Int'] | null),flash_assists?: (Scalars['Int'] | null),flash_duration_count?: (Scalars['Int'] | null),flash_duration_sum?: (Scalars['numeric'] | null),flashes_thrown?: (Scalars['Int'] | null),four_kill_rounds?: (Scalars['Int'] | null),he_damage?: (Scalars['Int'] | null),he_team_damage?: (Scalars['Int'] | null),he_throws?: (Scalars['Int'] | null),headshot_hits?: (Scalars['Int'] | null),hits?: (Scalars['Int'] | null),hits_at_spotted?: (Scalars['Int'] | null),hs_kills?: (Scalars['Int'] | null),hs_kills_ct?: (Scalars['Int'] | null),hs_kills_t?: (Scalars['Int'] | null),kast_rounds?: (Scalars['Int'] | null),kast_total_rounds?: (Scalars['Int'] | null),kills?: (Scalars['Int'] | null),kills_ct?: (Scalars['Int'] | null),kills_t?: (Scalars['Int'] | null),knife_kills?: (Scalars['Int'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),molotov_damage?: (Scalars['Int'] | null),molotov_throws?: (Scalars['Int'] | null),non_awp_hits?: (Scalars['Int'] | null),on_target_frames?: (Scalars['Int'] | null),rounds_ct?: (Scalars['Int'] | null),rounds_played?: (Scalars['Int'] | null),rounds_t?: (Scalars['Int'] | null),shots_at_spotted?: (Scalars['Int'] | null),shots_fired?: (Scalars['Int'] | null),smoke_throws?: (Scalars['Int'] | null),spotted_count?: (Scalars['Int'] | null),spotted_with_damage_count?: (Scalars['Int'] | null),spray_hits?: (Scalars['Int'] | null),spray_shots?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null),team_damage?: (Scalars['Int'] | null),team_flashed?: (Scalars['Int'] | null),three_kill_rounds?: (Scalars['Int'] | null),time_to_damage_count?: (Scalars['Int'] | null),time_to_damage_sum_s?: (Scalars['numeric'] | null),total_engagement_frames?: (Scalars['Int'] | null),trade_kill_attempts?: (Scalars['Int'] | null),trade_kill_opportunities?: (Scalars['Int'] | null),trade_kill_successes?: (Scalars['Int'] | null),traded_death_attempts?: (Scalars['Int'] | null),traded_death_opportunities?: (Scalars['Int'] | null),traded_death_successes?: (Scalars['Int'] | null),two_kill_rounds?: (Scalars['Int'] | null),unused_utility_value?: (Scalars['Int'] | null),updated_at?: (Scalars['timestamptz'] | null),util_on_death_count?: (Scalars['Int'] | null),util_on_death_sum?: (Scalars['Int'] | null),wasted_magazine_shots?: (Scalars['Int'] | null),zeus_kills?: (Scalars['Int'] | null)} - - -/** aggregate sum on columns */ -export interface player_match_map_stats_sum_fieldsGenqlSelection{ - assists?: boolean | number - assists_ct?: boolean | number - assists_t?: boolean | number - counter_strafe_eligible_shots?: boolean | number - counter_strafed_shots?: boolean | number - crosshair_angle_count?: boolean | number - crosshair_angle_sum_deg?: boolean | number - damage?: boolean | number - damage_ct?: boolean | number - damage_t?: boolean | number - deaths?: boolean | number - deaths_ct?: boolean | number - deaths_t?: boolean | number - decoy_throws?: boolean | number - enemies_flashed?: boolean | number - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - five_kill_rounds?: boolean | number - flash_assists?: boolean | number - flash_duration_count?: boolean | number - flash_duration_sum?: boolean | number - flashes_thrown?: boolean | number - four_kill_rounds?: boolean | number - he_damage?: boolean | number - he_team_damage?: boolean | number - he_throws?: boolean | number - headshot_hits?: boolean | number - hits?: boolean | number - hits_at_spotted?: boolean | number - hs_kills?: boolean | number - hs_kills_ct?: boolean | number - hs_kills_t?: boolean | number - kast_rounds?: boolean | number - kast_total_rounds?: boolean | number - kills?: boolean | number - kills_ct?: boolean | number - kills_t?: boolean | number - knife_kills?: boolean | number - molotov_damage?: boolean | number - molotov_throws?: boolean | number - non_awp_hits?: boolean | number - on_target_frames?: boolean | number - rounds_ct?: boolean | number - rounds_played?: boolean | number - rounds_t?: boolean | number - shots_at_spotted?: boolean | number - shots_fired?: boolean | number - smoke_throws?: boolean | number - spotted_count?: boolean | number - spotted_with_damage_count?: boolean | number - spray_hits?: boolean | number - spray_shots?: boolean | number - steam_id?: boolean | number - team_damage?: boolean | number - team_flashed?: boolean | number - three_kill_rounds?: boolean | number - time_to_damage_count?: boolean | number - time_to_damage_sum_s?: boolean | number - total_engagement_frames?: boolean | number - trade_kill_attempts?: boolean | number - trade_kill_opportunities?: boolean | number - trade_kill_successes?: boolean | number - traded_death_attempts?: boolean | number - traded_death_opportunities?: boolean | number - traded_death_successes?: boolean | number - two_kill_rounds?: boolean | number - unused_utility_value?: boolean | number - util_on_death_count?: boolean | number - util_on_death_sum?: boolean | number - wasted_magazine_shots?: boolean | number - zeus_kills?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "player_match_map_stats" */ -export interface player_match_map_stats_sum_order_by {assists?: (order_by | null),assists_ct?: (order_by | null),assists_t?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),crosshair_angle_count?: (order_by | null),crosshair_angle_sum_deg?: (order_by | null),damage?: (order_by | null),damage_ct?: (order_by | null),damage_t?: (order_by | null),deaths?: (order_by | null),deaths_ct?: (order_by | null),deaths_t?: (order_by | null),decoy_throws?: (order_by | null),enemies_flashed?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),five_kill_rounds?: (order_by | null),flash_assists?: (order_by | null),flash_duration_count?: (order_by | null),flash_duration_sum?: (order_by | null),flashes_thrown?: (order_by | null),four_kill_rounds?: (order_by | null),he_damage?: (order_by | null),he_team_damage?: (order_by | null),he_throws?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),hs_kills?: (order_by | null),hs_kills_ct?: (order_by | null),hs_kills_t?: (order_by | null),kast_rounds?: (order_by | null),kast_total_rounds?: (order_by | null),kills?: (order_by | null),kills_ct?: (order_by | null),kills_t?: (order_by | null),knife_kills?: (order_by | null),molotov_damage?: (order_by | null),molotov_throws?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),rounds_ct?: (order_by | null),rounds_played?: (order_by | null),rounds_t?: (order_by | null),shots_at_spotted?: (order_by | null),shots_fired?: (order_by | null),smoke_throws?: (order_by | null),spotted_count?: (order_by | null),spotted_with_damage_count?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),steam_id?: (order_by | null),team_damage?: (order_by | null),team_flashed?: (order_by | null),three_kill_rounds?: (order_by | null),time_to_damage_count?: (order_by | null),time_to_damage_sum_s?: (order_by | null),total_engagement_frames?: (order_by | null),trade_kill_attempts?: (order_by | null),trade_kill_opportunities?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_attempts?: (order_by | null),traded_death_opportunities?: (order_by | null),traded_death_successes?: (order_by | null),two_kill_rounds?: (order_by | null),unused_utility_value?: (order_by | null),util_on_death_count?: (order_by | null),util_on_death_sum?: (order_by | null),wasted_magazine_shots?: (order_by | null),zeus_kills?: (order_by | null)} - -export interface player_match_map_stats_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (player_match_map_stats_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (player_match_map_stats_set_input | null), -/** filter the rows which have to be updated */ -where: player_match_map_stats_bool_exp} - - -/** aggregate var_pop on columns */ -export interface player_match_map_stats_var_pop_fieldsGenqlSelection{ - assists?: boolean | number - assists_ct?: boolean | number - assists_t?: boolean | number - counter_strafe_eligible_shots?: boolean | number - counter_strafed_shots?: boolean | number - crosshair_angle_count?: boolean | number - crosshair_angle_sum_deg?: boolean | number - damage?: boolean | number - damage_ct?: boolean | number - damage_t?: boolean | number - deaths?: boolean | number - deaths_ct?: boolean | number - deaths_t?: boolean | number - decoy_throws?: boolean | number - enemies_flashed?: boolean | number - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - five_kill_rounds?: boolean | number - flash_assists?: boolean | number - flash_duration_count?: boolean | number - flash_duration_sum?: boolean | number - flashes_thrown?: boolean | number - four_kill_rounds?: boolean | number - he_damage?: boolean | number - he_team_damage?: boolean | number - he_throws?: boolean | number - headshot_hits?: boolean | number - hits?: boolean | number - hits_at_spotted?: boolean | number - hs_kills?: boolean | number - hs_kills_ct?: boolean | number - hs_kills_t?: boolean | number - kast_rounds?: boolean | number - kast_total_rounds?: boolean | number - kills?: boolean | number - kills_ct?: boolean | number - kills_t?: boolean | number - knife_kills?: boolean | number - molotov_damage?: boolean | number - molotov_throws?: boolean | number - non_awp_hits?: boolean | number - on_target_frames?: boolean | number - rounds_ct?: boolean | number - rounds_played?: boolean | number - rounds_t?: boolean | number - shots_at_spotted?: boolean | number - shots_fired?: boolean | number - smoke_throws?: boolean | number - spotted_count?: boolean | number - spotted_with_damage_count?: boolean | number - spray_hits?: boolean | number - spray_shots?: boolean | number - steam_id?: boolean | number - team_damage?: boolean | number - team_flashed?: boolean | number - three_kill_rounds?: boolean | number - time_to_damage_count?: boolean | number - time_to_damage_sum_s?: boolean | number - total_engagement_frames?: boolean | number - trade_kill_attempts?: boolean | number - trade_kill_opportunities?: boolean | number - trade_kill_successes?: boolean | number - traded_death_attempts?: boolean | number - traded_death_opportunities?: boolean | number - traded_death_successes?: boolean | number - two_kill_rounds?: boolean | number - unused_utility_value?: boolean | number - util_on_death_count?: boolean | number - util_on_death_sum?: boolean | number - wasted_magazine_shots?: boolean | number - zeus_kills?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "player_match_map_stats" */ -export interface player_match_map_stats_var_pop_order_by {assists?: (order_by | null),assists_ct?: (order_by | null),assists_t?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),crosshair_angle_count?: (order_by | null),crosshair_angle_sum_deg?: (order_by | null),damage?: (order_by | null),damage_ct?: (order_by | null),damage_t?: (order_by | null),deaths?: (order_by | null),deaths_ct?: (order_by | null),deaths_t?: (order_by | null),decoy_throws?: (order_by | null),enemies_flashed?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),five_kill_rounds?: (order_by | null),flash_assists?: (order_by | null),flash_duration_count?: (order_by | null),flash_duration_sum?: (order_by | null),flashes_thrown?: (order_by | null),four_kill_rounds?: (order_by | null),he_damage?: (order_by | null),he_team_damage?: (order_by | null),he_throws?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),hs_kills?: (order_by | null),hs_kills_ct?: (order_by | null),hs_kills_t?: (order_by | null),kast_rounds?: (order_by | null),kast_total_rounds?: (order_by | null),kills?: (order_by | null),kills_ct?: (order_by | null),kills_t?: (order_by | null),knife_kills?: (order_by | null),molotov_damage?: (order_by | null),molotov_throws?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),rounds_ct?: (order_by | null),rounds_played?: (order_by | null),rounds_t?: (order_by | null),shots_at_spotted?: (order_by | null),shots_fired?: (order_by | null),smoke_throws?: (order_by | null),spotted_count?: (order_by | null),spotted_with_damage_count?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),steam_id?: (order_by | null),team_damage?: (order_by | null),team_flashed?: (order_by | null),three_kill_rounds?: (order_by | null),time_to_damage_count?: (order_by | null),time_to_damage_sum_s?: (order_by | null),total_engagement_frames?: (order_by | null),trade_kill_attempts?: (order_by | null),trade_kill_opportunities?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_attempts?: (order_by | null),traded_death_opportunities?: (order_by | null),traded_death_successes?: (order_by | null),two_kill_rounds?: (order_by | null),unused_utility_value?: (order_by | null),util_on_death_count?: (order_by | null),util_on_death_sum?: (order_by | null),wasted_magazine_shots?: (order_by | null),zeus_kills?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface player_match_map_stats_var_samp_fieldsGenqlSelection{ - assists?: boolean | number - assists_ct?: boolean | number - assists_t?: boolean | number - counter_strafe_eligible_shots?: boolean | number - counter_strafed_shots?: boolean | number - crosshair_angle_count?: boolean | number - crosshair_angle_sum_deg?: boolean | number - damage?: boolean | number - damage_ct?: boolean | number - damage_t?: boolean | number - deaths?: boolean | number - deaths_ct?: boolean | number - deaths_t?: boolean | number - decoy_throws?: boolean | number - enemies_flashed?: boolean | number - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - five_kill_rounds?: boolean | number - flash_assists?: boolean | number - flash_duration_count?: boolean | number - flash_duration_sum?: boolean | number - flashes_thrown?: boolean | number - four_kill_rounds?: boolean | number - he_damage?: boolean | number - he_team_damage?: boolean | number - he_throws?: boolean | number - headshot_hits?: boolean | number - hits?: boolean | number - hits_at_spotted?: boolean | number - hs_kills?: boolean | number - hs_kills_ct?: boolean | number - hs_kills_t?: boolean | number - kast_rounds?: boolean | number - kast_total_rounds?: boolean | number - kills?: boolean | number - kills_ct?: boolean | number - kills_t?: boolean | number - knife_kills?: boolean | number - molotov_damage?: boolean | number - molotov_throws?: boolean | number - non_awp_hits?: boolean | number - on_target_frames?: boolean | number - rounds_ct?: boolean | number - rounds_played?: boolean | number - rounds_t?: boolean | number - shots_at_spotted?: boolean | number - shots_fired?: boolean | number - smoke_throws?: boolean | number - spotted_count?: boolean | number - spotted_with_damage_count?: boolean | number - spray_hits?: boolean | number - spray_shots?: boolean | number - steam_id?: boolean | number - team_damage?: boolean | number - team_flashed?: boolean | number - three_kill_rounds?: boolean | number - time_to_damage_count?: boolean | number - time_to_damage_sum_s?: boolean | number - total_engagement_frames?: boolean | number - trade_kill_attempts?: boolean | number - trade_kill_opportunities?: boolean | number - trade_kill_successes?: boolean | number - traded_death_attempts?: boolean | number - traded_death_opportunities?: boolean | number - traded_death_successes?: boolean | number - two_kill_rounds?: boolean | number - unused_utility_value?: boolean | number - util_on_death_count?: boolean | number - util_on_death_sum?: boolean | number - wasted_magazine_shots?: boolean | number - zeus_kills?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "player_match_map_stats" */ -export interface player_match_map_stats_var_samp_order_by {assists?: (order_by | null),assists_ct?: (order_by | null),assists_t?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),crosshair_angle_count?: (order_by | null),crosshair_angle_sum_deg?: (order_by | null),damage?: (order_by | null),damage_ct?: (order_by | null),damage_t?: (order_by | null),deaths?: (order_by | null),deaths_ct?: (order_by | null),deaths_t?: (order_by | null),decoy_throws?: (order_by | null),enemies_flashed?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),five_kill_rounds?: (order_by | null),flash_assists?: (order_by | null),flash_duration_count?: (order_by | null),flash_duration_sum?: (order_by | null),flashes_thrown?: (order_by | null),four_kill_rounds?: (order_by | null),he_damage?: (order_by | null),he_team_damage?: (order_by | null),he_throws?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),hs_kills?: (order_by | null),hs_kills_ct?: (order_by | null),hs_kills_t?: (order_by | null),kast_rounds?: (order_by | null),kast_total_rounds?: (order_by | null),kills?: (order_by | null),kills_ct?: (order_by | null),kills_t?: (order_by | null),knife_kills?: (order_by | null),molotov_damage?: (order_by | null),molotov_throws?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),rounds_ct?: (order_by | null),rounds_played?: (order_by | null),rounds_t?: (order_by | null),shots_at_spotted?: (order_by | null),shots_fired?: (order_by | null),smoke_throws?: (order_by | null),spotted_count?: (order_by | null),spotted_with_damage_count?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),steam_id?: (order_by | null),team_damage?: (order_by | null),team_flashed?: (order_by | null),three_kill_rounds?: (order_by | null),time_to_damage_count?: (order_by | null),time_to_damage_sum_s?: (order_by | null),total_engagement_frames?: (order_by | null),trade_kill_attempts?: (order_by | null),trade_kill_opportunities?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_attempts?: (order_by | null),traded_death_opportunities?: (order_by | null),traded_death_successes?: (order_by | null),two_kill_rounds?: (order_by | null),unused_utility_value?: (order_by | null),util_on_death_count?: (order_by | null),util_on_death_sum?: (order_by | null),wasted_magazine_shots?: (order_by | null),zeus_kills?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface player_match_map_stats_variance_fieldsGenqlSelection{ - assists?: boolean | number - assists_ct?: boolean | number - assists_t?: boolean | number - counter_strafe_eligible_shots?: boolean | number - counter_strafed_shots?: boolean | number - crosshair_angle_count?: boolean | number - crosshair_angle_sum_deg?: boolean | number - damage?: boolean | number - damage_ct?: boolean | number - damage_t?: boolean | number - deaths?: boolean | number - deaths_ct?: boolean | number - deaths_t?: boolean | number - decoy_throws?: boolean | number - enemies_flashed?: boolean | number - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - five_kill_rounds?: boolean | number - flash_assists?: boolean | number - flash_duration_count?: boolean | number - flash_duration_sum?: boolean | number - flashes_thrown?: boolean | number - four_kill_rounds?: boolean | number - he_damage?: boolean | number - he_team_damage?: boolean | number - he_throws?: boolean | number - headshot_hits?: boolean | number - hits?: boolean | number - hits_at_spotted?: boolean | number - hs_kills?: boolean | number - hs_kills_ct?: boolean | number - hs_kills_t?: boolean | number - kast_rounds?: boolean | number - kast_total_rounds?: boolean | number - kills?: boolean | number - kills_ct?: boolean | number - kills_t?: boolean | number - knife_kills?: boolean | number - molotov_damage?: boolean | number - molotov_throws?: boolean | number - non_awp_hits?: boolean | number - on_target_frames?: boolean | number - rounds_ct?: boolean | number - rounds_played?: boolean | number - rounds_t?: boolean | number - shots_at_spotted?: boolean | number - shots_fired?: boolean | number - smoke_throws?: boolean | number - spotted_count?: boolean | number - spotted_with_damage_count?: boolean | number - spray_hits?: boolean | number - spray_shots?: boolean | number - steam_id?: boolean | number - team_damage?: boolean | number - team_flashed?: boolean | number - three_kill_rounds?: boolean | number - time_to_damage_count?: boolean | number - time_to_damage_sum_s?: boolean | number - total_engagement_frames?: boolean | number - trade_kill_attempts?: boolean | number - trade_kill_opportunities?: boolean | number - trade_kill_successes?: boolean | number - traded_death_attempts?: boolean | number - traded_death_opportunities?: boolean | number - traded_death_successes?: boolean | number - two_kill_rounds?: boolean | number - unused_utility_value?: boolean | number - util_on_death_count?: boolean | number - util_on_death_sum?: boolean | number - wasted_magazine_shots?: boolean | number - zeus_kills?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "player_match_map_stats" */ -export interface player_match_map_stats_variance_order_by {assists?: (order_by | null),assists_ct?: (order_by | null),assists_t?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),crosshair_angle_count?: (order_by | null),crosshair_angle_sum_deg?: (order_by | null),damage?: (order_by | null),damage_ct?: (order_by | null),damage_t?: (order_by | null),deaths?: (order_by | null),deaths_ct?: (order_by | null),deaths_t?: (order_by | null),decoy_throws?: (order_by | null),enemies_flashed?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),five_kill_rounds?: (order_by | null),flash_assists?: (order_by | null),flash_duration_count?: (order_by | null),flash_duration_sum?: (order_by | null),flashes_thrown?: (order_by | null),four_kill_rounds?: (order_by | null),he_damage?: (order_by | null),he_team_damage?: (order_by | null),he_throws?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),hs_kills?: (order_by | null),hs_kills_ct?: (order_by | null),hs_kills_t?: (order_by | null),kast_rounds?: (order_by | null),kast_total_rounds?: (order_by | null),kills?: (order_by | null),kills_ct?: (order_by | null),kills_t?: (order_by | null),knife_kills?: (order_by | null),molotov_damage?: (order_by | null),molotov_throws?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),rounds_ct?: (order_by | null),rounds_played?: (order_by | null),rounds_t?: (order_by | null),shots_at_spotted?: (order_by | null),shots_fired?: (order_by | null),smoke_throws?: (order_by | null),spotted_count?: (order_by | null),spotted_with_damage_count?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),steam_id?: (order_by | null),team_damage?: (order_by | null),team_flashed?: (order_by | null),three_kill_rounds?: (order_by | null),time_to_damage_count?: (order_by | null),time_to_damage_sum_s?: (order_by | null),total_engagement_frames?: (order_by | null),trade_kill_attempts?: (order_by | null),trade_kill_opportunities?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_attempts?: (order_by | null),traded_death_opportunities?: (order_by | null),traded_death_successes?: (order_by | null),two_kill_rounds?: (order_by | null),unused_utility_value?: (order_by | null),util_on_death_count?: (order_by | null),util_on_death_sum?: (order_by | null),wasted_magazine_shots?: (order_by | null),zeus_kills?: (order_by | null)} - - -/** columns and relationships of "player_match_performance_v" */ -export interface player_match_performance_vGenqlSelection{ - accuracy?: boolean | number - accuracy_spotted?: boolean | number - aim_rating?: boolean | number - counter_strafe_pct?: boolean | number - enemy_blind_pr?: boolean | number - flash_assists_pr?: boolean | number - hs_pct?: boolean | number - kast_pct?: boolean | number - match_id?: boolean | number - overall_rating?: boolean | number - played_at?: boolean | number - positioning_rating?: boolean | number - rounds?: boolean | number - source?: boolean | number - steam_id?: boolean | number - survival_pct?: boolean | number - traded_death_pct?: boolean | number - util_efficiency?: boolean | number - utility_rating?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "player_match_performance_v" */ -export interface player_match_performance_v_aggregateGenqlSelection{ - aggregate?: player_match_performance_v_aggregate_fieldsGenqlSelection - nodes?: player_match_performance_vGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "player_match_performance_v" */ -export interface player_match_performance_v_aggregate_fieldsGenqlSelection{ - avg?: player_match_performance_v_avg_fieldsGenqlSelection - count?: { __args: {columns?: (player_match_performance_v_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: player_match_performance_v_max_fieldsGenqlSelection - min?: player_match_performance_v_min_fieldsGenqlSelection - stddev?: player_match_performance_v_stddev_fieldsGenqlSelection - stddev_pop?: player_match_performance_v_stddev_pop_fieldsGenqlSelection - stddev_samp?: player_match_performance_v_stddev_samp_fieldsGenqlSelection - sum?: player_match_performance_v_sum_fieldsGenqlSelection - var_pop?: player_match_performance_v_var_pop_fieldsGenqlSelection - var_samp?: player_match_performance_v_var_samp_fieldsGenqlSelection - variance?: player_match_performance_v_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface player_match_performance_v_avg_fieldsGenqlSelection{ - accuracy?: boolean | number - accuracy_spotted?: boolean | number - aim_rating?: boolean | number - counter_strafe_pct?: boolean | number - enemy_blind_pr?: boolean | number - flash_assists_pr?: boolean | number - hs_pct?: boolean | number - kast_pct?: boolean | number - overall_rating?: boolean | number - positioning_rating?: boolean | number - rounds?: boolean | number - steam_id?: boolean | number - survival_pct?: boolean | number - traded_death_pct?: boolean | number - util_efficiency?: boolean | number - utility_rating?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "player_match_performance_v". All fields are combined with a logical 'AND'. */ -export interface player_match_performance_v_bool_exp {_and?: (player_match_performance_v_bool_exp[] | null),_not?: (player_match_performance_v_bool_exp | null),_or?: (player_match_performance_v_bool_exp[] | null),accuracy?: (numeric_comparison_exp | null),accuracy_spotted?: (numeric_comparison_exp | null),aim_rating?: (float8_comparison_exp | null),counter_strafe_pct?: (numeric_comparison_exp | null),enemy_blind_pr?: (numeric_comparison_exp | null),flash_assists_pr?: (numeric_comparison_exp | null),hs_pct?: (numeric_comparison_exp | null),kast_pct?: (numeric_comparison_exp | null),match_id?: (uuid_comparison_exp | null),overall_rating?: (float8_comparison_exp | null),played_at?: (timestamptz_comparison_exp | null),positioning_rating?: (float8_comparison_exp | null),rounds?: (Int_comparison_exp | null),source?: (String_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),survival_pct?: (numeric_comparison_exp | null),traded_death_pct?: (numeric_comparison_exp | null),util_efficiency?: (numeric_comparison_exp | null),utility_rating?: (float8_comparison_exp | null)} - - -/** aggregate max on columns */ -export interface player_match_performance_v_max_fieldsGenqlSelection{ - accuracy?: boolean | number - accuracy_spotted?: boolean | number - aim_rating?: boolean | number - counter_strafe_pct?: boolean | number - enemy_blind_pr?: boolean | number - flash_assists_pr?: boolean | number - hs_pct?: boolean | number - kast_pct?: boolean | number - match_id?: boolean | number - overall_rating?: boolean | number - played_at?: boolean | number - positioning_rating?: boolean | number - rounds?: boolean | number - source?: boolean | number - steam_id?: boolean | number - survival_pct?: boolean | number - traded_death_pct?: boolean | number - util_efficiency?: boolean | number - utility_rating?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface player_match_performance_v_min_fieldsGenqlSelection{ - accuracy?: boolean | number - accuracy_spotted?: boolean | number - aim_rating?: boolean | number - counter_strafe_pct?: boolean | number - enemy_blind_pr?: boolean | number - flash_assists_pr?: boolean | number - hs_pct?: boolean | number - kast_pct?: boolean | number - match_id?: boolean | number - overall_rating?: boolean | number - played_at?: boolean | number - positioning_rating?: boolean | number - rounds?: boolean | number - source?: boolean | number - steam_id?: boolean | number - survival_pct?: boolean | number - traded_death_pct?: boolean | number - util_efficiency?: boolean | number - utility_rating?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Ordering options when selecting data from "player_match_performance_v". */ -export interface player_match_performance_v_order_by {accuracy?: (order_by | null),accuracy_spotted?: (order_by | null),aim_rating?: (order_by | null),counter_strafe_pct?: (order_by | null),enemy_blind_pr?: (order_by | null),flash_assists_pr?: (order_by | null),hs_pct?: (order_by | null),kast_pct?: (order_by | null),match_id?: (order_by | null),overall_rating?: (order_by | null),played_at?: (order_by | null),positioning_rating?: (order_by | null),rounds?: (order_by | null),source?: (order_by | null),steam_id?: (order_by | null),survival_pct?: (order_by | null),traded_death_pct?: (order_by | null),util_efficiency?: (order_by | null),utility_rating?: (order_by | null)} - - -/** aggregate stddev on columns */ -export interface player_match_performance_v_stddev_fieldsGenqlSelection{ - accuracy?: boolean | number - accuracy_spotted?: boolean | number - aim_rating?: boolean | number - counter_strafe_pct?: boolean | number - enemy_blind_pr?: boolean | number - flash_assists_pr?: boolean | number - hs_pct?: boolean | number - kast_pct?: boolean | number - overall_rating?: boolean | number - positioning_rating?: boolean | number - rounds?: boolean | number - steam_id?: boolean | number - survival_pct?: boolean | number - traded_death_pct?: boolean | number - util_efficiency?: boolean | number - utility_rating?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface player_match_performance_v_stddev_pop_fieldsGenqlSelection{ - accuracy?: boolean | number - accuracy_spotted?: boolean | number - aim_rating?: boolean | number - counter_strafe_pct?: boolean | number - enemy_blind_pr?: boolean | number - flash_assists_pr?: boolean | number - hs_pct?: boolean | number - kast_pct?: boolean | number - overall_rating?: boolean | number - positioning_rating?: boolean | number - rounds?: boolean | number - steam_id?: boolean | number - survival_pct?: boolean | number - traded_death_pct?: boolean | number - util_efficiency?: boolean | number - utility_rating?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface player_match_performance_v_stddev_samp_fieldsGenqlSelection{ - accuracy?: boolean | number - accuracy_spotted?: boolean | number - aim_rating?: boolean | number - counter_strafe_pct?: boolean | number - enemy_blind_pr?: boolean | number - flash_assists_pr?: boolean | number - hs_pct?: boolean | number - kast_pct?: boolean | number - overall_rating?: boolean | number - positioning_rating?: boolean | number - rounds?: boolean | number - steam_id?: boolean | number - survival_pct?: boolean | number - traded_death_pct?: boolean | number - util_efficiency?: boolean | number - utility_rating?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "player_match_performance_v" */ -export interface player_match_performance_v_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: player_match_performance_v_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface player_match_performance_v_stream_cursor_value_input {accuracy?: (Scalars['numeric'] | null),accuracy_spotted?: (Scalars['numeric'] | null),aim_rating?: (Scalars['float8'] | null),counter_strafe_pct?: (Scalars['numeric'] | null),enemy_blind_pr?: (Scalars['numeric'] | null),flash_assists_pr?: (Scalars['numeric'] | null),hs_pct?: (Scalars['numeric'] | null),kast_pct?: (Scalars['numeric'] | null),match_id?: (Scalars['uuid'] | null),overall_rating?: (Scalars['float8'] | null),played_at?: (Scalars['timestamptz'] | null),positioning_rating?: (Scalars['float8'] | null),rounds?: (Scalars['Int'] | null),source?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null),survival_pct?: (Scalars['numeric'] | null),traded_death_pct?: (Scalars['numeric'] | null),util_efficiency?: (Scalars['numeric'] | null),utility_rating?: (Scalars['float8'] | null)} - - -/** aggregate sum on columns */ -export interface player_match_performance_v_sum_fieldsGenqlSelection{ - accuracy?: boolean | number - accuracy_spotted?: boolean | number - aim_rating?: boolean | number - counter_strafe_pct?: boolean | number - enemy_blind_pr?: boolean | number - flash_assists_pr?: boolean | number - hs_pct?: boolean | number - kast_pct?: boolean | number - overall_rating?: boolean | number - positioning_rating?: boolean | number - rounds?: boolean | number - steam_id?: boolean | number - survival_pct?: boolean | number - traded_death_pct?: boolean | number - util_efficiency?: boolean | number - utility_rating?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_pop on columns */ -export interface player_match_performance_v_var_pop_fieldsGenqlSelection{ - accuracy?: boolean | number - accuracy_spotted?: boolean | number - aim_rating?: boolean | number - counter_strafe_pct?: boolean | number - enemy_blind_pr?: boolean | number - flash_assists_pr?: boolean | number - hs_pct?: boolean | number - kast_pct?: boolean | number - overall_rating?: boolean | number - positioning_rating?: boolean | number - rounds?: boolean | number - steam_id?: boolean | number - survival_pct?: boolean | number - traded_death_pct?: boolean | number - util_efficiency?: boolean | number - utility_rating?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface player_match_performance_v_var_samp_fieldsGenqlSelection{ - accuracy?: boolean | number - accuracy_spotted?: boolean | number - aim_rating?: boolean | number - counter_strafe_pct?: boolean | number - enemy_blind_pr?: boolean | number - flash_assists_pr?: boolean | number - hs_pct?: boolean | number - kast_pct?: boolean | number - overall_rating?: boolean | number - positioning_rating?: boolean | number - rounds?: boolean | number - steam_id?: boolean | number - survival_pct?: boolean | number - traded_death_pct?: boolean | number - util_efficiency?: boolean | number - utility_rating?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface player_match_performance_v_variance_fieldsGenqlSelection{ - accuracy?: boolean | number - accuracy_spotted?: boolean | number - aim_rating?: boolean | number - counter_strafe_pct?: boolean | number - enemy_blind_pr?: boolean | number - flash_assists_pr?: boolean | number - hs_pct?: boolean | number - kast_pct?: boolean | number - overall_rating?: boolean | number - positioning_rating?: boolean | number - rounds?: boolean | number - steam_id?: boolean | number - survival_pct?: boolean | number - traded_death_pct?: boolean | number - util_efficiency?: boolean | number - utility_rating?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "player_match_stats_v" */ -export interface player_match_stats_vGenqlSelection{ - assists?: boolean | number - assists_ct?: boolean | number - assists_t?: boolean | number - avg_crosshair_angle_deg?: boolean | number - avg_flash_duration?: boolean | number - avg_time_to_damage_s?: boolean | number - counter_strafe_eligible_shots?: boolean | number - counter_strafed_shots?: boolean | number - damage?: boolean | number - damage_ct?: boolean | number - damage_t?: boolean | number - deaths?: boolean | number - deaths_ct?: boolean | number - deaths_t?: boolean | number - decoy_throws?: boolean | number - enemies_flashed?: boolean | number - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - five_kill_rounds?: boolean | number - flash_assists?: boolean | number - flashes_thrown?: boolean | number - four_kill_rounds?: boolean | number - he_damage?: boolean | number - he_team_damage?: boolean | number - he_throws?: boolean | number - headshot_hits?: boolean | number - hits?: boolean | number - hits_at_spotted?: boolean | number - hs_kills?: boolean | number - hs_kills_ct?: boolean | number - hs_kills_t?: boolean | number - kills?: boolean | number - kills_ct?: boolean | number - kills_t?: boolean | number - knife_kills?: boolean | number - match_id?: boolean | number - molotov_damage?: boolean | number - molotov_throws?: boolean | number - non_awp_hits?: boolean | number - on_target_frames?: boolean | number - rounds_ct?: boolean | number - rounds_played?: boolean | number - rounds_t?: boolean | number - shots_at_spotted?: boolean | number - shots_fired?: boolean | number - smoke_throws?: boolean | number - spotted_count?: boolean | number - spotted_with_damage_count?: boolean | number - spray_hits?: boolean | number - spray_shots?: boolean | number - steam_id?: boolean | number - team_damage?: boolean | number - team_flashed?: boolean | number - three_kill_rounds?: boolean | number - total_engagement_frames?: boolean | number - trade_kill_attempts?: boolean | number - trade_kill_opportunities?: boolean | number - trade_kill_successes?: boolean | number - traded_death_attempts?: boolean | number - traded_death_opportunities?: boolean | number - traded_death_successes?: boolean | number - two_kill_rounds?: boolean | number - unused_utility_value?: boolean | number - utility_on_death?: boolean | number - wasted_magazine_shots?: boolean | number - zeus_kills?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "player_match_stats_v" */ -export interface player_match_stats_v_aggregateGenqlSelection{ - aggregate?: player_match_stats_v_aggregate_fieldsGenqlSelection - nodes?: player_match_stats_vGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface player_match_stats_v_aggregate_bool_exp {count?: (player_match_stats_v_aggregate_bool_exp_count | null)} - -export interface player_match_stats_v_aggregate_bool_exp_count {arguments?: (player_match_stats_v_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (player_match_stats_v_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "player_match_stats_v" */ -export interface player_match_stats_v_aggregate_fieldsGenqlSelection{ - avg?: player_match_stats_v_avg_fieldsGenqlSelection - count?: { __args: {columns?: (player_match_stats_v_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: player_match_stats_v_max_fieldsGenqlSelection - min?: player_match_stats_v_min_fieldsGenqlSelection - stddev?: player_match_stats_v_stddev_fieldsGenqlSelection - stddev_pop?: player_match_stats_v_stddev_pop_fieldsGenqlSelection - stddev_samp?: player_match_stats_v_stddev_samp_fieldsGenqlSelection - sum?: player_match_stats_v_sum_fieldsGenqlSelection - var_pop?: player_match_stats_v_var_pop_fieldsGenqlSelection - var_samp?: player_match_stats_v_var_samp_fieldsGenqlSelection - variance?: player_match_stats_v_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "player_match_stats_v" */ -export interface player_match_stats_v_aggregate_order_by {avg?: (player_match_stats_v_avg_order_by | null),count?: (order_by | null),max?: (player_match_stats_v_max_order_by | null),min?: (player_match_stats_v_min_order_by | null),stddev?: (player_match_stats_v_stddev_order_by | null),stddev_pop?: (player_match_stats_v_stddev_pop_order_by | null),stddev_samp?: (player_match_stats_v_stddev_samp_order_by | null),sum?: (player_match_stats_v_sum_order_by | null),var_pop?: (player_match_stats_v_var_pop_order_by | null),var_samp?: (player_match_stats_v_var_samp_order_by | null),variance?: (player_match_stats_v_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "player_match_stats_v" */ -export interface player_match_stats_v_arr_rel_insert_input {data: player_match_stats_v_insert_input[]} - - -/** aggregate avg on columns */ -export interface player_match_stats_v_avg_fieldsGenqlSelection{ - assists?: boolean | number - assists_ct?: boolean | number - assists_t?: boolean | number - avg_crosshair_angle_deg?: boolean | number - avg_flash_duration?: boolean | number - avg_time_to_damage_s?: boolean | number - counter_strafe_eligible_shots?: boolean | number - counter_strafed_shots?: boolean | number - damage?: boolean | number - damage_ct?: boolean | number - damage_t?: boolean | number - deaths?: boolean | number - deaths_ct?: boolean | number - deaths_t?: boolean | number - decoy_throws?: boolean | number - enemies_flashed?: boolean | number - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - five_kill_rounds?: boolean | number - flash_assists?: boolean | number - flashes_thrown?: boolean | number - four_kill_rounds?: boolean | number - he_damage?: boolean | number - he_team_damage?: boolean | number - he_throws?: boolean | number - headshot_hits?: boolean | number - hits?: boolean | number - hits_at_spotted?: boolean | number - hs_kills?: boolean | number - hs_kills_ct?: boolean | number - hs_kills_t?: boolean | number - kills?: boolean | number - kills_ct?: boolean | number - kills_t?: boolean | number - knife_kills?: boolean | number - molotov_damage?: boolean | number - molotov_throws?: boolean | number - non_awp_hits?: boolean | number - on_target_frames?: boolean | number - rounds_ct?: boolean | number - rounds_played?: boolean | number - rounds_t?: boolean | number - shots_at_spotted?: boolean | number - shots_fired?: boolean | number - smoke_throws?: boolean | number - spotted_count?: boolean | number - spotted_with_damage_count?: boolean | number - spray_hits?: boolean | number - spray_shots?: boolean | number - steam_id?: boolean | number - team_damage?: boolean | number - team_flashed?: boolean | number - three_kill_rounds?: boolean | number - total_engagement_frames?: boolean | number - trade_kill_attempts?: boolean | number - trade_kill_opportunities?: boolean | number - trade_kill_successes?: boolean | number - traded_death_attempts?: boolean | number - traded_death_opportunities?: boolean | number - traded_death_successes?: boolean | number - two_kill_rounds?: boolean | number - unused_utility_value?: boolean | number - utility_on_death?: boolean | number - wasted_magazine_shots?: boolean | number - zeus_kills?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "player_match_stats_v" */ -export interface player_match_stats_v_avg_order_by {assists?: (order_by | null),assists_ct?: (order_by | null),assists_t?: (order_by | null),avg_crosshair_angle_deg?: (order_by | null),avg_flash_duration?: (order_by | null),avg_time_to_damage_s?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),damage?: (order_by | null),damage_ct?: (order_by | null),damage_t?: (order_by | null),deaths?: (order_by | null),deaths_ct?: (order_by | null),deaths_t?: (order_by | null),decoy_throws?: (order_by | null),enemies_flashed?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),five_kill_rounds?: (order_by | null),flash_assists?: (order_by | null),flashes_thrown?: (order_by | null),four_kill_rounds?: (order_by | null),he_damage?: (order_by | null),he_team_damage?: (order_by | null),he_throws?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),hs_kills?: (order_by | null),hs_kills_ct?: (order_by | null),hs_kills_t?: (order_by | null),kills?: (order_by | null),kills_ct?: (order_by | null),kills_t?: (order_by | null),knife_kills?: (order_by | null),molotov_damage?: (order_by | null),molotov_throws?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),rounds_ct?: (order_by | null),rounds_played?: (order_by | null),rounds_t?: (order_by | null),shots_at_spotted?: (order_by | null),shots_fired?: (order_by | null),smoke_throws?: (order_by | null),spotted_count?: (order_by | null),spotted_with_damage_count?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),steam_id?: (order_by | null),team_damage?: (order_by | null),team_flashed?: (order_by | null),three_kill_rounds?: (order_by | null),total_engagement_frames?: (order_by | null),trade_kill_attempts?: (order_by | null),trade_kill_opportunities?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_attempts?: (order_by | null),traded_death_opportunities?: (order_by | null),traded_death_successes?: (order_by | null),two_kill_rounds?: (order_by | null),unused_utility_value?: (order_by | null),utility_on_death?: (order_by | null),wasted_magazine_shots?: (order_by | null),zeus_kills?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "player_match_stats_v". All fields are combined with a logical 'AND'. */ -export interface player_match_stats_v_bool_exp {_and?: (player_match_stats_v_bool_exp[] | null),_not?: (player_match_stats_v_bool_exp | null),_or?: (player_match_stats_v_bool_exp[] | null),assists?: (Int_comparison_exp | null),assists_ct?: (Int_comparison_exp | null),assists_t?: (Int_comparison_exp | null),avg_crosshair_angle_deg?: (numeric_comparison_exp | null),avg_flash_duration?: (numeric_comparison_exp | null),avg_time_to_damage_s?: (numeric_comparison_exp | null),counter_strafe_eligible_shots?: (Int_comparison_exp | null),counter_strafed_shots?: (Int_comparison_exp | null),damage?: (Int_comparison_exp | null),damage_ct?: (Int_comparison_exp | null),damage_t?: (Int_comparison_exp | null),deaths?: (Int_comparison_exp | null),deaths_ct?: (Int_comparison_exp | null),deaths_t?: (Int_comparison_exp | null),decoy_throws?: (Int_comparison_exp | null),enemies_flashed?: (Int_comparison_exp | null),first_bullet_hits?: (Int_comparison_exp | null),first_bullet_shots?: (Int_comparison_exp | null),five_kill_rounds?: (Int_comparison_exp | null),flash_assists?: (Int_comparison_exp | null),flashes_thrown?: (Int_comparison_exp | null),four_kill_rounds?: (Int_comparison_exp | null),he_damage?: (Int_comparison_exp | null),he_team_damage?: (Int_comparison_exp | null),he_throws?: (Int_comparison_exp | null),headshot_hits?: (Int_comparison_exp | null),hits?: (Int_comparison_exp | null),hits_at_spotted?: (Int_comparison_exp | null),hs_kills?: (Int_comparison_exp | null),hs_kills_ct?: (Int_comparison_exp | null),hs_kills_t?: (Int_comparison_exp | null),kills?: (Int_comparison_exp | null),kills_ct?: (Int_comparison_exp | null),kills_t?: (Int_comparison_exp | null),knife_kills?: (Int_comparison_exp | null),match_id?: (uuid_comparison_exp | null),molotov_damage?: (Int_comparison_exp | null),molotov_throws?: (Int_comparison_exp | null),non_awp_hits?: (Int_comparison_exp | null),on_target_frames?: (Int_comparison_exp | null),rounds_ct?: (Int_comparison_exp | null),rounds_played?: (Int_comparison_exp | null),rounds_t?: (Int_comparison_exp | null),shots_at_spotted?: (Int_comparison_exp | null),shots_fired?: (Int_comparison_exp | null),smoke_throws?: (Int_comparison_exp | null),spotted_count?: (Int_comparison_exp | null),spotted_with_damage_count?: (Int_comparison_exp | null),spray_hits?: (Int_comparison_exp | null),spray_shots?: (Int_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),team_damage?: (Int_comparison_exp | null),team_flashed?: (Int_comparison_exp | null),three_kill_rounds?: (Int_comparison_exp | null),total_engagement_frames?: (Int_comparison_exp | null),trade_kill_attempts?: (Int_comparison_exp | null),trade_kill_opportunities?: (Int_comparison_exp | null),trade_kill_successes?: (Int_comparison_exp | null),traded_death_attempts?: (Int_comparison_exp | null),traded_death_opportunities?: (Int_comparison_exp | null),traded_death_successes?: (Int_comparison_exp | null),two_kill_rounds?: (Int_comparison_exp | null),unused_utility_value?: (Int_comparison_exp | null),utility_on_death?: (numeric_comparison_exp | null),wasted_magazine_shots?: (Int_comparison_exp | null),zeus_kills?: (Int_comparison_exp | null)} - - -/** input type for inserting data into table "player_match_stats_v" */ -export interface player_match_stats_v_insert_input {assists?: (Scalars['Int'] | null),assists_ct?: (Scalars['Int'] | null),assists_t?: (Scalars['Int'] | null),avg_crosshair_angle_deg?: (Scalars['numeric'] | null),avg_flash_duration?: (Scalars['numeric'] | null),avg_time_to_damage_s?: (Scalars['numeric'] | null),counter_strafe_eligible_shots?: (Scalars['Int'] | null),counter_strafed_shots?: (Scalars['Int'] | null),damage?: (Scalars['Int'] | null),damage_ct?: (Scalars['Int'] | null),damage_t?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),deaths_ct?: (Scalars['Int'] | null),deaths_t?: (Scalars['Int'] | null),decoy_throws?: (Scalars['Int'] | null),enemies_flashed?: (Scalars['Int'] | null),first_bullet_hits?: (Scalars['Int'] | null),first_bullet_shots?: (Scalars['Int'] | null),five_kill_rounds?: (Scalars['Int'] | null),flash_assists?: (Scalars['Int'] | null),flashes_thrown?: (Scalars['Int'] | null),four_kill_rounds?: (Scalars['Int'] | null),he_damage?: (Scalars['Int'] | null),he_team_damage?: (Scalars['Int'] | null),he_throws?: (Scalars['Int'] | null),headshot_hits?: (Scalars['Int'] | null),hits?: (Scalars['Int'] | null),hits_at_spotted?: (Scalars['Int'] | null),hs_kills?: (Scalars['Int'] | null),hs_kills_ct?: (Scalars['Int'] | null),hs_kills_t?: (Scalars['Int'] | null),kills?: (Scalars['Int'] | null),kills_ct?: (Scalars['Int'] | null),kills_t?: (Scalars['Int'] | null),knife_kills?: (Scalars['Int'] | null),match_id?: (Scalars['uuid'] | null),molotov_damage?: (Scalars['Int'] | null),molotov_throws?: (Scalars['Int'] | null),non_awp_hits?: (Scalars['Int'] | null),on_target_frames?: (Scalars['Int'] | null),rounds_ct?: (Scalars['Int'] | null),rounds_played?: (Scalars['Int'] | null),rounds_t?: (Scalars['Int'] | null),shots_at_spotted?: (Scalars['Int'] | null),shots_fired?: (Scalars['Int'] | null),smoke_throws?: (Scalars['Int'] | null),spotted_count?: (Scalars['Int'] | null),spotted_with_damage_count?: (Scalars['Int'] | null),spray_hits?: (Scalars['Int'] | null),spray_shots?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null),team_damage?: (Scalars['Int'] | null),team_flashed?: (Scalars['Int'] | null),three_kill_rounds?: (Scalars['Int'] | null),total_engagement_frames?: (Scalars['Int'] | null),trade_kill_attempts?: (Scalars['Int'] | null),trade_kill_opportunities?: (Scalars['Int'] | null),trade_kill_successes?: (Scalars['Int'] | null),traded_death_attempts?: (Scalars['Int'] | null),traded_death_opportunities?: (Scalars['Int'] | null),traded_death_successes?: (Scalars['Int'] | null),two_kill_rounds?: (Scalars['Int'] | null),unused_utility_value?: (Scalars['Int'] | null),utility_on_death?: (Scalars['numeric'] | null),wasted_magazine_shots?: (Scalars['Int'] | null),zeus_kills?: (Scalars['Int'] | null)} - - -/** aggregate max on columns */ -export interface player_match_stats_v_max_fieldsGenqlSelection{ - assists?: boolean | number - assists_ct?: boolean | number - assists_t?: boolean | number - avg_crosshair_angle_deg?: boolean | number - avg_flash_duration?: boolean | number - avg_time_to_damage_s?: boolean | number - counter_strafe_eligible_shots?: boolean | number - counter_strafed_shots?: boolean | number - damage?: boolean | number - damage_ct?: boolean | number - damage_t?: boolean | number - deaths?: boolean | number - deaths_ct?: boolean | number - deaths_t?: boolean | number - decoy_throws?: boolean | number - enemies_flashed?: boolean | number - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - five_kill_rounds?: boolean | number - flash_assists?: boolean | number - flashes_thrown?: boolean | number - four_kill_rounds?: boolean | number - he_damage?: boolean | number - he_team_damage?: boolean | number - he_throws?: boolean | number - headshot_hits?: boolean | number - hits?: boolean | number - hits_at_spotted?: boolean | number - hs_kills?: boolean | number - hs_kills_ct?: boolean | number - hs_kills_t?: boolean | number - kills?: boolean | number - kills_ct?: boolean | number - kills_t?: boolean | number - knife_kills?: boolean | number - match_id?: boolean | number - molotov_damage?: boolean | number - molotov_throws?: boolean | number - non_awp_hits?: boolean | number - on_target_frames?: boolean | number - rounds_ct?: boolean | number - rounds_played?: boolean | number - rounds_t?: boolean | number - shots_at_spotted?: boolean | number - shots_fired?: boolean | number - smoke_throws?: boolean | number - spotted_count?: boolean | number - spotted_with_damage_count?: boolean | number - spray_hits?: boolean | number - spray_shots?: boolean | number - steam_id?: boolean | number - team_damage?: boolean | number - team_flashed?: boolean | number - three_kill_rounds?: boolean | number - total_engagement_frames?: boolean | number - trade_kill_attempts?: boolean | number - trade_kill_opportunities?: boolean | number - trade_kill_successes?: boolean | number - traded_death_attempts?: boolean | number - traded_death_opportunities?: boolean | number - traded_death_successes?: boolean | number - two_kill_rounds?: boolean | number - unused_utility_value?: boolean | number - utility_on_death?: boolean | number - wasted_magazine_shots?: boolean | number - zeus_kills?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "player_match_stats_v" */ -export interface player_match_stats_v_max_order_by {assists?: (order_by | null),assists_ct?: (order_by | null),assists_t?: (order_by | null),avg_crosshair_angle_deg?: (order_by | null),avg_flash_duration?: (order_by | null),avg_time_to_damage_s?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),damage?: (order_by | null),damage_ct?: (order_by | null),damage_t?: (order_by | null),deaths?: (order_by | null),deaths_ct?: (order_by | null),deaths_t?: (order_by | null),decoy_throws?: (order_by | null),enemies_flashed?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),five_kill_rounds?: (order_by | null),flash_assists?: (order_by | null),flashes_thrown?: (order_by | null),four_kill_rounds?: (order_by | null),he_damage?: (order_by | null),he_team_damage?: (order_by | null),he_throws?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),hs_kills?: (order_by | null),hs_kills_ct?: (order_by | null),hs_kills_t?: (order_by | null),kills?: (order_by | null),kills_ct?: (order_by | null),kills_t?: (order_by | null),knife_kills?: (order_by | null),match_id?: (order_by | null),molotov_damage?: (order_by | null),molotov_throws?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),rounds_ct?: (order_by | null),rounds_played?: (order_by | null),rounds_t?: (order_by | null),shots_at_spotted?: (order_by | null),shots_fired?: (order_by | null),smoke_throws?: (order_by | null),spotted_count?: (order_by | null),spotted_with_damage_count?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),steam_id?: (order_by | null),team_damage?: (order_by | null),team_flashed?: (order_by | null),three_kill_rounds?: (order_by | null),total_engagement_frames?: (order_by | null),trade_kill_attempts?: (order_by | null),trade_kill_opportunities?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_attempts?: (order_by | null),traded_death_opportunities?: (order_by | null),traded_death_successes?: (order_by | null),two_kill_rounds?: (order_by | null),unused_utility_value?: (order_by | null),utility_on_death?: (order_by | null),wasted_magazine_shots?: (order_by | null),zeus_kills?: (order_by | null)} - - -/** aggregate min on columns */ -export interface player_match_stats_v_min_fieldsGenqlSelection{ - assists?: boolean | number - assists_ct?: boolean | number - assists_t?: boolean | number - avg_crosshair_angle_deg?: boolean | number - avg_flash_duration?: boolean | number - avg_time_to_damage_s?: boolean | number - counter_strafe_eligible_shots?: boolean | number - counter_strafed_shots?: boolean | number - damage?: boolean | number - damage_ct?: boolean | number - damage_t?: boolean | number - deaths?: boolean | number - deaths_ct?: boolean | number - deaths_t?: boolean | number - decoy_throws?: boolean | number - enemies_flashed?: boolean | number - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - five_kill_rounds?: boolean | number - flash_assists?: boolean | number - flashes_thrown?: boolean | number - four_kill_rounds?: boolean | number - he_damage?: boolean | number - he_team_damage?: boolean | number - he_throws?: boolean | number - headshot_hits?: boolean | number - hits?: boolean | number - hits_at_spotted?: boolean | number - hs_kills?: boolean | number - hs_kills_ct?: boolean | number - hs_kills_t?: boolean | number - kills?: boolean | number - kills_ct?: boolean | number - kills_t?: boolean | number - knife_kills?: boolean | number - match_id?: boolean | number - molotov_damage?: boolean | number - molotov_throws?: boolean | number - non_awp_hits?: boolean | number - on_target_frames?: boolean | number - rounds_ct?: boolean | number - rounds_played?: boolean | number - rounds_t?: boolean | number - shots_at_spotted?: boolean | number - shots_fired?: boolean | number - smoke_throws?: boolean | number - spotted_count?: boolean | number - spotted_with_damage_count?: boolean | number - spray_hits?: boolean | number - spray_shots?: boolean | number - steam_id?: boolean | number - team_damage?: boolean | number - team_flashed?: boolean | number - three_kill_rounds?: boolean | number - total_engagement_frames?: boolean | number - trade_kill_attempts?: boolean | number - trade_kill_opportunities?: boolean | number - trade_kill_successes?: boolean | number - traded_death_attempts?: boolean | number - traded_death_opportunities?: boolean | number - traded_death_successes?: boolean | number - two_kill_rounds?: boolean | number - unused_utility_value?: boolean | number - utility_on_death?: boolean | number - wasted_magazine_shots?: boolean | number - zeus_kills?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "player_match_stats_v" */ -export interface player_match_stats_v_min_order_by {assists?: (order_by | null),assists_ct?: (order_by | null),assists_t?: (order_by | null),avg_crosshair_angle_deg?: (order_by | null),avg_flash_duration?: (order_by | null),avg_time_to_damage_s?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),damage?: (order_by | null),damage_ct?: (order_by | null),damage_t?: (order_by | null),deaths?: (order_by | null),deaths_ct?: (order_by | null),deaths_t?: (order_by | null),decoy_throws?: (order_by | null),enemies_flashed?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),five_kill_rounds?: (order_by | null),flash_assists?: (order_by | null),flashes_thrown?: (order_by | null),four_kill_rounds?: (order_by | null),he_damage?: (order_by | null),he_team_damage?: (order_by | null),he_throws?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),hs_kills?: (order_by | null),hs_kills_ct?: (order_by | null),hs_kills_t?: (order_by | null),kills?: (order_by | null),kills_ct?: (order_by | null),kills_t?: (order_by | null),knife_kills?: (order_by | null),match_id?: (order_by | null),molotov_damage?: (order_by | null),molotov_throws?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),rounds_ct?: (order_by | null),rounds_played?: (order_by | null),rounds_t?: (order_by | null),shots_at_spotted?: (order_by | null),shots_fired?: (order_by | null),smoke_throws?: (order_by | null),spotted_count?: (order_by | null),spotted_with_damage_count?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),steam_id?: (order_by | null),team_damage?: (order_by | null),team_flashed?: (order_by | null),three_kill_rounds?: (order_by | null),total_engagement_frames?: (order_by | null),trade_kill_attempts?: (order_by | null),trade_kill_opportunities?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_attempts?: (order_by | null),traded_death_opportunities?: (order_by | null),traded_death_successes?: (order_by | null),two_kill_rounds?: (order_by | null),unused_utility_value?: (order_by | null),utility_on_death?: (order_by | null),wasted_magazine_shots?: (order_by | null),zeus_kills?: (order_by | null)} - - -/** Ordering options when selecting data from "player_match_stats_v". */ -export interface player_match_stats_v_order_by {assists?: (order_by | null),assists_ct?: (order_by | null),assists_t?: (order_by | null),avg_crosshair_angle_deg?: (order_by | null),avg_flash_duration?: (order_by | null),avg_time_to_damage_s?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),damage?: (order_by | null),damage_ct?: (order_by | null),damage_t?: (order_by | null),deaths?: (order_by | null),deaths_ct?: (order_by | null),deaths_t?: (order_by | null),decoy_throws?: (order_by | null),enemies_flashed?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),five_kill_rounds?: (order_by | null),flash_assists?: (order_by | null),flashes_thrown?: (order_by | null),four_kill_rounds?: (order_by | null),he_damage?: (order_by | null),he_team_damage?: (order_by | null),he_throws?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),hs_kills?: (order_by | null),hs_kills_ct?: (order_by | null),hs_kills_t?: (order_by | null),kills?: (order_by | null),kills_ct?: (order_by | null),kills_t?: (order_by | null),knife_kills?: (order_by | null),match_id?: (order_by | null),molotov_damage?: (order_by | null),molotov_throws?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),rounds_ct?: (order_by | null),rounds_played?: (order_by | null),rounds_t?: (order_by | null),shots_at_spotted?: (order_by | null),shots_fired?: (order_by | null),smoke_throws?: (order_by | null),spotted_count?: (order_by | null),spotted_with_damage_count?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),steam_id?: (order_by | null),team_damage?: (order_by | null),team_flashed?: (order_by | null),three_kill_rounds?: (order_by | null),total_engagement_frames?: (order_by | null),trade_kill_attempts?: (order_by | null),trade_kill_opportunities?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_attempts?: (order_by | null),traded_death_opportunities?: (order_by | null),traded_death_successes?: (order_by | null),two_kill_rounds?: (order_by | null),unused_utility_value?: (order_by | null),utility_on_death?: (order_by | null),wasted_magazine_shots?: (order_by | null),zeus_kills?: (order_by | null)} - - -/** aggregate stddev on columns */ -export interface player_match_stats_v_stddev_fieldsGenqlSelection{ - assists?: boolean | number - assists_ct?: boolean | number - assists_t?: boolean | number - avg_crosshair_angle_deg?: boolean | number - avg_flash_duration?: boolean | number - avg_time_to_damage_s?: boolean | number - counter_strafe_eligible_shots?: boolean | number - counter_strafed_shots?: boolean | number - damage?: boolean | number - damage_ct?: boolean | number - damage_t?: boolean | number - deaths?: boolean | number - deaths_ct?: boolean | number - deaths_t?: boolean | number - decoy_throws?: boolean | number - enemies_flashed?: boolean | number - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - five_kill_rounds?: boolean | number - flash_assists?: boolean | number - flashes_thrown?: boolean | number - four_kill_rounds?: boolean | number - he_damage?: boolean | number - he_team_damage?: boolean | number - he_throws?: boolean | number - headshot_hits?: boolean | number - hits?: boolean | number - hits_at_spotted?: boolean | number - hs_kills?: boolean | number - hs_kills_ct?: boolean | number - hs_kills_t?: boolean | number - kills?: boolean | number - kills_ct?: boolean | number - kills_t?: boolean | number - knife_kills?: boolean | number - molotov_damage?: boolean | number - molotov_throws?: boolean | number - non_awp_hits?: boolean | number - on_target_frames?: boolean | number - rounds_ct?: boolean | number - rounds_played?: boolean | number - rounds_t?: boolean | number - shots_at_spotted?: boolean | number - shots_fired?: boolean | number - smoke_throws?: boolean | number - spotted_count?: boolean | number - spotted_with_damage_count?: boolean | number - spray_hits?: boolean | number - spray_shots?: boolean | number - steam_id?: boolean | number - team_damage?: boolean | number - team_flashed?: boolean | number - three_kill_rounds?: boolean | number - total_engagement_frames?: boolean | number - trade_kill_attempts?: boolean | number - trade_kill_opportunities?: boolean | number - trade_kill_successes?: boolean | number - traded_death_attempts?: boolean | number - traded_death_opportunities?: boolean | number - traded_death_successes?: boolean | number - two_kill_rounds?: boolean | number - unused_utility_value?: boolean | number - utility_on_death?: boolean | number - wasted_magazine_shots?: boolean | number - zeus_kills?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "player_match_stats_v" */ -export interface player_match_stats_v_stddev_order_by {assists?: (order_by | null),assists_ct?: (order_by | null),assists_t?: (order_by | null),avg_crosshair_angle_deg?: (order_by | null),avg_flash_duration?: (order_by | null),avg_time_to_damage_s?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),damage?: (order_by | null),damage_ct?: (order_by | null),damage_t?: (order_by | null),deaths?: (order_by | null),deaths_ct?: (order_by | null),deaths_t?: (order_by | null),decoy_throws?: (order_by | null),enemies_flashed?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),five_kill_rounds?: (order_by | null),flash_assists?: (order_by | null),flashes_thrown?: (order_by | null),four_kill_rounds?: (order_by | null),he_damage?: (order_by | null),he_team_damage?: (order_by | null),he_throws?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),hs_kills?: (order_by | null),hs_kills_ct?: (order_by | null),hs_kills_t?: (order_by | null),kills?: (order_by | null),kills_ct?: (order_by | null),kills_t?: (order_by | null),knife_kills?: (order_by | null),molotov_damage?: (order_by | null),molotov_throws?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),rounds_ct?: (order_by | null),rounds_played?: (order_by | null),rounds_t?: (order_by | null),shots_at_spotted?: (order_by | null),shots_fired?: (order_by | null),smoke_throws?: (order_by | null),spotted_count?: (order_by | null),spotted_with_damage_count?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),steam_id?: (order_by | null),team_damage?: (order_by | null),team_flashed?: (order_by | null),three_kill_rounds?: (order_by | null),total_engagement_frames?: (order_by | null),trade_kill_attempts?: (order_by | null),trade_kill_opportunities?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_attempts?: (order_by | null),traded_death_opportunities?: (order_by | null),traded_death_successes?: (order_by | null),two_kill_rounds?: (order_by | null),unused_utility_value?: (order_by | null),utility_on_death?: (order_by | null),wasted_magazine_shots?: (order_by | null),zeus_kills?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface player_match_stats_v_stddev_pop_fieldsGenqlSelection{ - assists?: boolean | number - assists_ct?: boolean | number - assists_t?: boolean | number - avg_crosshair_angle_deg?: boolean | number - avg_flash_duration?: boolean | number - avg_time_to_damage_s?: boolean | number - counter_strafe_eligible_shots?: boolean | number - counter_strafed_shots?: boolean | number - damage?: boolean | number - damage_ct?: boolean | number - damage_t?: boolean | number - deaths?: boolean | number - deaths_ct?: boolean | number - deaths_t?: boolean | number - decoy_throws?: boolean | number - enemies_flashed?: boolean | number - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - five_kill_rounds?: boolean | number - flash_assists?: boolean | number - flashes_thrown?: boolean | number - four_kill_rounds?: boolean | number - he_damage?: boolean | number - he_team_damage?: boolean | number - he_throws?: boolean | number - headshot_hits?: boolean | number - hits?: boolean | number - hits_at_spotted?: boolean | number - hs_kills?: boolean | number - hs_kills_ct?: boolean | number - hs_kills_t?: boolean | number - kills?: boolean | number - kills_ct?: boolean | number - kills_t?: boolean | number - knife_kills?: boolean | number - molotov_damage?: boolean | number - molotov_throws?: boolean | number - non_awp_hits?: boolean | number - on_target_frames?: boolean | number - rounds_ct?: boolean | number - rounds_played?: boolean | number - rounds_t?: boolean | number - shots_at_spotted?: boolean | number - shots_fired?: boolean | number - smoke_throws?: boolean | number - spotted_count?: boolean | number - spotted_with_damage_count?: boolean | number - spray_hits?: boolean | number - spray_shots?: boolean | number - steam_id?: boolean | number - team_damage?: boolean | number - team_flashed?: boolean | number - three_kill_rounds?: boolean | number - total_engagement_frames?: boolean | number - trade_kill_attempts?: boolean | number - trade_kill_opportunities?: boolean | number - trade_kill_successes?: boolean | number - traded_death_attempts?: boolean | number - traded_death_opportunities?: boolean | number - traded_death_successes?: boolean | number - two_kill_rounds?: boolean | number - unused_utility_value?: boolean | number - utility_on_death?: boolean | number - wasted_magazine_shots?: boolean | number - zeus_kills?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "player_match_stats_v" */ -export interface player_match_stats_v_stddev_pop_order_by {assists?: (order_by | null),assists_ct?: (order_by | null),assists_t?: (order_by | null),avg_crosshair_angle_deg?: (order_by | null),avg_flash_duration?: (order_by | null),avg_time_to_damage_s?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),damage?: (order_by | null),damage_ct?: (order_by | null),damage_t?: (order_by | null),deaths?: (order_by | null),deaths_ct?: (order_by | null),deaths_t?: (order_by | null),decoy_throws?: (order_by | null),enemies_flashed?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),five_kill_rounds?: (order_by | null),flash_assists?: (order_by | null),flashes_thrown?: (order_by | null),four_kill_rounds?: (order_by | null),he_damage?: (order_by | null),he_team_damage?: (order_by | null),he_throws?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),hs_kills?: (order_by | null),hs_kills_ct?: (order_by | null),hs_kills_t?: (order_by | null),kills?: (order_by | null),kills_ct?: (order_by | null),kills_t?: (order_by | null),knife_kills?: (order_by | null),molotov_damage?: (order_by | null),molotov_throws?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),rounds_ct?: (order_by | null),rounds_played?: (order_by | null),rounds_t?: (order_by | null),shots_at_spotted?: (order_by | null),shots_fired?: (order_by | null),smoke_throws?: (order_by | null),spotted_count?: (order_by | null),spotted_with_damage_count?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),steam_id?: (order_by | null),team_damage?: (order_by | null),team_flashed?: (order_by | null),three_kill_rounds?: (order_by | null),total_engagement_frames?: (order_by | null),trade_kill_attempts?: (order_by | null),trade_kill_opportunities?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_attempts?: (order_by | null),traded_death_opportunities?: (order_by | null),traded_death_successes?: (order_by | null),two_kill_rounds?: (order_by | null),unused_utility_value?: (order_by | null),utility_on_death?: (order_by | null),wasted_magazine_shots?: (order_by | null),zeus_kills?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface player_match_stats_v_stddev_samp_fieldsGenqlSelection{ - assists?: boolean | number - assists_ct?: boolean | number - assists_t?: boolean | number - avg_crosshair_angle_deg?: boolean | number - avg_flash_duration?: boolean | number - avg_time_to_damage_s?: boolean | number - counter_strafe_eligible_shots?: boolean | number - counter_strafed_shots?: boolean | number - damage?: boolean | number - damage_ct?: boolean | number - damage_t?: boolean | number - deaths?: boolean | number - deaths_ct?: boolean | number - deaths_t?: boolean | number - decoy_throws?: boolean | number - enemies_flashed?: boolean | number - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - five_kill_rounds?: boolean | number - flash_assists?: boolean | number - flashes_thrown?: boolean | number - four_kill_rounds?: boolean | number - he_damage?: boolean | number - he_team_damage?: boolean | number - he_throws?: boolean | number - headshot_hits?: boolean | number - hits?: boolean | number - hits_at_spotted?: boolean | number - hs_kills?: boolean | number - hs_kills_ct?: boolean | number - hs_kills_t?: boolean | number - kills?: boolean | number - kills_ct?: boolean | number - kills_t?: boolean | number - knife_kills?: boolean | number - molotov_damage?: boolean | number - molotov_throws?: boolean | number - non_awp_hits?: boolean | number - on_target_frames?: boolean | number - rounds_ct?: boolean | number - rounds_played?: boolean | number - rounds_t?: boolean | number - shots_at_spotted?: boolean | number - shots_fired?: boolean | number - smoke_throws?: boolean | number - spotted_count?: boolean | number - spotted_with_damage_count?: boolean | number - spray_hits?: boolean | number - spray_shots?: boolean | number - steam_id?: boolean | number - team_damage?: boolean | number - team_flashed?: boolean | number - three_kill_rounds?: boolean | number - total_engagement_frames?: boolean | number - trade_kill_attempts?: boolean | number - trade_kill_opportunities?: boolean | number - trade_kill_successes?: boolean | number - traded_death_attempts?: boolean | number - traded_death_opportunities?: boolean | number - traded_death_successes?: boolean | number - two_kill_rounds?: boolean | number - unused_utility_value?: boolean | number - utility_on_death?: boolean | number - wasted_magazine_shots?: boolean | number - zeus_kills?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "player_match_stats_v" */ -export interface player_match_stats_v_stddev_samp_order_by {assists?: (order_by | null),assists_ct?: (order_by | null),assists_t?: (order_by | null),avg_crosshair_angle_deg?: (order_by | null),avg_flash_duration?: (order_by | null),avg_time_to_damage_s?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),damage?: (order_by | null),damage_ct?: (order_by | null),damage_t?: (order_by | null),deaths?: (order_by | null),deaths_ct?: (order_by | null),deaths_t?: (order_by | null),decoy_throws?: (order_by | null),enemies_flashed?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),five_kill_rounds?: (order_by | null),flash_assists?: (order_by | null),flashes_thrown?: (order_by | null),four_kill_rounds?: (order_by | null),he_damage?: (order_by | null),he_team_damage?: (order_by | null),he_throws?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),hs_kills?: (order_by | null),hs_kills_ct?: (order_by | null),hs_kills_t?: (order_by | null),kills?: (order_by | null),kills_ct?: (order_by | null),kills_t?: (order_by | null),knife_kills?: (order_by | null),molotov_damage?: (order_by | null),molotov_throws?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),rounds_ct?: (order_by | null),rounds_played?: (order_by | null),rounds_t?: (order_by | null),shots_at_spotted?: (order_by | null),shots_fired?: (order_by | null),smoke_throws?: (order_by | null),spotted_count?: (order_by | null),spotted_with_damage_count?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),steam_id?: (order_by | null),team_damage?: (order_by | null),team_flashed?: (order_by | null),three_kill_rounds?: (order_by | null),total_engagement_frames?: (order_by | null),trade_kill_attempts?: (order_by | null),trade_kill_opportunities?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_attempts?: (order_by | null),traded_death_opportunities?: (order_by | null),traded_death_successes?: (order_by | null),two_kill_rounds?: (order_by | null),unused_utility_value?: (order_by | null),utility_on_death?: (order_by | null),wasted_magazine_shots?: (order_by | null),zeus_kills?: (order_by | null)} - - -/** Streaming cursor of the table "player_match_stats_v" */ -export interface player_match_stats_v_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: player_match_stats_v_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface player_match_stats_v_stream_cursor_value_input {assists?: (Scalars['Int'] | null),assists_ct?: (Scalars['Int'] | null),assists_t?: (Scalars['Int'] | null),avg_crosshair_angle_deg?: (Scalars['numeric'] | null),avg_flash_duration?: (Scalars['numeric'] | null),avg_time_to_damage_s?: (Scalars['numeric'] | null),counter_strafe_eligible_shots?: (Scalars['Int'] | null),counter_strafed_shots?: (Scalars['Int'] | null),damage?: (Scalars['Int'] | null),damage_ct?: (Scalars['Int'] | null),damage_t?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),deaths_ct?: (Scalars['Int'] | null),deaths_t?: (Scalars['Int'] | null),decoy_throws?: (Scalars['Int'] | null),enemies_flashed?: (Scalars['Int'] | null),first_bullet_hits?: (Scalars['Int'] | null),first_bullet_shots?: (Scalars['Int'] | null),five_kill_rounds?: (Scalars['Int'] | null),flash_assists?: (Scalars['Int'] | null),flashes_thrown?: (Scalars['Int'] | null),four_kill_rounds?: (Scalars['Int'] | null),he_damage?: (Scalars['Int'] | null),he_team_damage?: (Scalars['Int'] | null),he_throws?: (Scalars['Int'] | null),headshot_hits?: (Scalars['Int'] | null),hits?: (Scalars['Int'] | null),hits_at_spotted?: (Scalars['Int'] | null),hs_kills?: (Scalars['Int'] | null),hs_kills_ct?: (Scalars['Int'] | null),hs_kills_t?: (Scalars['Int'] | null),kills?: (Scalars['Int'] | null),kills_ct?: (Scalars['Int'] | null),kills_t?: (Scalars['Int'] | null),knife_kills?: (Scalars['Int'] | null),match_id?: (Scalars['uuid'] | null),molotov_damage?: (Scalars['Int'] | null),molotov_throws?: (Scalars['Int'] | null),non_awp_hits?: (Scalars['Int'] | null),on_target_frames?: (Scalars['Int'] | null),rounds_ct?: (Scalars['Int'] | null),rounds_played?: (Scalars['Int'] | null),rounds_t?: (Scalars['Int'] | null),shots_at_spotted?: (Scalars['Int'] | null),shots_fired?: (Scalars['Int'] | null),smoke_throws?: (Scalars['Int'] | null),spotted_count?: (Scalars['Int'] | null),spotted_with_damage_count?: (Scalars['Int'] | null),spray_hits?: (Scalars['Int'] | null),spray_shots?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null),team_damage?: (Scalars['Int'] | null),team_flashed?: (Scalars['Int'] | null),three_kill_rounds?: (Scalars['Int'] | null),total_engagement_frames?: (Scalars['Int'] | null),trade_kill_attempts?: (Scalars['Int'] | null),trade_kill_opportunities?: (Scalars['Int'] | null),trade_kill_successes?: (Scalars['Int'] | null),traded_death_attempts?: (Scalars['Int'] | null),traded_death_opportunities?: (Scalars['Int'] | null),traded_death_successes?: (Scalars['Int'] | null),two_kill_rounds?: (Scalars['Int'] | null),unused_utility_value?: (Scalars['Int'] | null),utility_on_death?: (Scalars['numeric'] | null),wasted_magazine_shots?: (Scalars['Int'] | null),zeus_kills?: (Scalars['Int'] | null)} - - -/** aggregate sum on columns */ -export interface player_match_stats_v_sum_fieldsGenqlSelection{ - assists?: boolean | number - assists_ct?: boolean | number - assists_t?: boolean | number - avg_crosshair_angle_deg?: boolean | number - avg_flash_duration?: boolean | number - avg_time_to_damage_s?: boolean | number - counter_strafe_eligible_shots?: boolean | number - counter_strafed_shots?: boolean | number - damage?: boolean | number - damage_ct?: boolean | number - damage_t?: boolean | number - deaths?: boolean | number - deaths_ct?: boolean | number - deaths_t?: boolean | number - decoy_throws?: boolean | number - enemies_flashed?: boolean | number - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - five_kill_rounds?: boolean | number - flash_assists?: boolean | number - flashes_thrown?: boolean | number - four_kill_rounds?: boolean | number - he_damage?: boolean | number - he_team_damage?: boolean | number - he_throws?: boolean | number - headshot_hits?: boolean | number - hits?: boolean | number - hits_at_spotted?: boolean | number - hs_kills?: boolean | number - hs_kills_ct?: boolean | number - hs_kills_t?: boolean | number - kills?: boolean | number - kills_ct?: boolean | number - kills_t?: boolean | number - knife_kills?: boolean | number - molotov_damage?: boolean | number - molotov_throws?: boolean | number - non_awp_hits?: boolean | number - on_target_frames?: boolean | number - rounds_ct?: boolean | number - rounds_played?: boolean | number - rounds_t?: boolean | number - shots_at_spotted?: boolean | number - shots_fired?: boolean | number - smoke_throws?: boolean | number - spotted_count?: boolean | number - spotted_with_damage_count?: boolean | number - spray_hits?: boolean | number - spray_shots?: boolean | number - steam_id?: boolean | number - team_damage?: boolean | number - team_flashed?: boolean | number - three_kill_rounds?: boolean | number - total_engagement_frames?: boolean | number - trade_kill_attempts?: boolean | number - trade_kill_opportunities?: boolean | number - trade_kill_successes?: boolean | number - traded_death_attempts?: boolean | number - traded_death_opportunities?: boolean | number - traded_death_successes?: boolean | number - two_kill_rounds?: boolean | number - unused_utility_value?: boolean | number - utility_on_death?: boolean | number - wasted_magazine_shots?: boolean | number - zeus_kills?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "player_match_stats_v" */ -export interface player_match_stats_v_sum_order_by {assists?: (order_by | null),assists_ct?: (order_by | null),assists_t?: (order_by | null),avg_crosshair_angle_deg?: (order_by | null),avg_flash_duration?: (order_by | null),avg_time_to_damage_s?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),damage?: (order_by | null),damage_ct?: (order_by | null),damage_t?: (order_by | null),deaths?: (order_by | null),deaths_ct?: (order_by | null),deaths_t?: (order_by | null),decoy_throws?: (order_by | null),enemies_flashed?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),five_kill_rounds?: (order_by | null),flash_assists?: (order_by | null),flashes_thrown?: (order_by | null),four_kill_rounds?: (order_by | null),he_damage?: (order_by | null),he_team_damage?: (order_by | null),he_throws?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),hs_kills?: (order_by | null),hs_kills_ct?: (order_by | null),hs_kills_t?: (order_by | null),kills?: (order_by | null),kills_ct?: (order_by | null),kills_t?: (order_by | null),knife_kills?: (order_by | null),molotov_damage?: (order_by | null),molotov_throws?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),rounds_ct?: (order_by | null),rounds_played?: (order_by | null),rounds_t?: (order_by | null),shots_at_spotted?: (order_by | null),shots_fired?: (order_by | null),smoke_throws?: (order_by | null),spotted_count?: (order_by | null),spotted_with_damage_count?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),steam_id?: (order_by | null),team_damage?: (order_by | null),team_flashed?: (order_by | null),three_kill_rounds?: (order_by | null),total_engagement_frames?: (order_by | null),trade_kill_attempts?: (order_by | null),trade_kill_opportunities?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_attempts?: (order_by | null),traded_death_opportunities?: (order_by | null),traded_death_successes?: (order_by | null),two_kill_rounds?: (order_by | null),unused_utility_value?: (order_by | null),utility_on_death?: (order_by | null),wasted_magazine_shots?: (order_by | null),zeus_kills?: (order_by | null)} - - -/** aggregate var_pop on columns */ -export interface player_match_stats_v_var_pop_fieldsGenqlSelection{ - assists?: boolean | number - assists_ct?: boolean | number - assists_t?: boolean | number - avg_crosshair_angle_deg?: boolean | number - avg_flash_duration?: boolean | number - avg_time_to_damage_s?: boolean | number - counter_strafe_eligible_shots?: boolean | number - counter_strafed_shots?: boolean | number - damage?: boolean | number - damage_ct?: boolean | number - damage_t?: boolean | number - deaths?: boolean | number - deaths_ct?: boolean | number - deaths_t?: boolean | number - decoy_throws?: boolean | number - enemies_flashed?: boolean | number - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - five_kill_rounds?: boolean | number - flash_assists?: boolean | number - flashes_thrown?: boolean | number - four_kill_rounds?: boolean | number - he_damage?: boolean | number - he_team_damage?: boolean | number - he_throws?: boolean | number - headshot_hits?: boolean | number - hits?: boolean | number - hits_at_spotted?: boolean | number - hs_kills?: boolean | number - hs_kills_ct?: boolean | number - hs_kills_t?: boolean | number - kills?: boolean | number - kills_ct?: boolean | number - kills_t?: boolean | number - knife_kills?: boolean | number - molotov_damage?: boolean | number - molotov_throws?: boolean | number - non_awp_hits?: boolean | number - on_target_frames?: boolean | number - rounds_ct?: boolean | number - rounds_played?: boolean | number - rounds_t?: boolean | number - shots_at_spotted?: boolean | number - shots_fired?: boolean | number - smoke_throws?: boolean | number - spotted_count?: boolean | number - spotted_with_damage_count?: boolean | number - spray_hits?: boolean | number - spray_shots?: boolean | number - steam_id?: boolean | number - team_damage?: boolean | number - team_flashed?: boolean | number - three_kill_rounds?: boolean | number - total_engagement_frames?: boolean | number - trade_kill_attempts?: boolean | number - trade_kill_opportunities?: boolean | number - trade_kill_successes?: boolean | number - traded_death_attempts?: boolean | number - traded_death_opportunities?: boolean | number - traded_death_successes?: boolean | number - two_kill_rounds?: boolean | number - unused_utility_value?: boolean | number - utility_on_death?: boolean | number - wasted_magazine_shots?: boolean | number - zeus_kills?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "player_match_stats_v" */ -export interface player_match_stats_v_var_pop_order_by {assists?: (order_by | null),assists_ct?: (order_by | null),assists_t?: (order_by | null),avg_crosshair_angle_deg?: (order_by | null),avg_flash_duration?: (order_by | null),avg_time_to_damage_s?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),damage?: (order_by | null),damage_ct?: (order_by | null),damage_t?: (order_by | null),deaths?: (order_by | null),deaths_ct?: (order_by | null),deaths_t?: (order_by | null),decoy_throws?: (order_by | null),enemies_flashed?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),five_kill_rounds?: (order_by | null),flash_assists?: (order_by | null),flashes_thrown?: (order_by | null),four_kill_rounds?: (order_by | null),he_damage?: (order_by | null),he_team_damage?: (order_by | null),he_throws?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),hs_kills?: (order_by | null),hs_kills_ct?: (order_by | null),hs_kills_t?: (order_by | null),kills?: (order_by | null),kills_ct?: (order_by | null),kills_t?: (order_by | null),knife_kills?: (order_by | null),molotov_damage?: (order_by | null),molotov_throws?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),rounds_ct?: (order_by | null),rounds_played?: (order_by | null),rounds_t?: (order_by | null),shots_at_spotted?: (order_by | null),shots_fired?: (order_by | null),smoke_throws?: (order_by | null),spotted_count?: (order_by | null),spotted_with_damage_count?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),steam_id?: (order_by | null),team_damage?: (order_by | null),team_flashed?: (order_by | null),three_kill_rounds?: (order_by | null),total_engagement_frames?: (order_by | null),trade_kill_attempts?: (order_by | null),trade_kill_opportunities?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_attempts?: (order_by | null),traded_death_opportunities?: (order_by | null),traded_death_successes?: (order_by | null),two_kill_rounds?: (order_by | null),unused_utility_value?: (order_by | null),utility_on_death?: (order_by | null),wasted_magazine_shots?: (order_by | null),zeus_kills?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface player_match_stats_v_var_samp_fieldsGenqlSelection{ - assists?: boolean | number - assists_ct?: boolean | number - assists_t?: boolean | number - avg_crosshair_angle_deg?: boolean | number - avg_flash_duration?: boolean | number - avg_time_to_damage_s?: boolean | number - counter_strafe_eligible_shots?: boolean | number - counter_strafed_shots?: boolean | number - damage?: boolean | number - damage_ct?: boolean | number - damage_t?: boolean | number - deaths?: boolean | number - deaths_ct?: boolean | number - deaths_t?: boolean | number - decoy_throws?: boolean | number - enemies_flashed?: boolean | number - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - five_kill_rounds?: boolean | number - flash_assists?: boolean | number - flashes_thrown?: boolean | number - four_kill_rounds?: boolean | number - he_damage?: boolean | number - he_team_damage?: boolean | number - he_throws?: boolean | number - headshot_hits?: boolean | number - hits?: boolean | number - hits_at_spotted?: boolean | number - hs_kills?: boolean | number - hs_kills_ct?: boolean | number - hs_kills_t?: boolean | number - kills?: boolean | number - kills_ct?: boolean | number - kills_t?: boolean | number - knife_kills?: boolean | number - molotov_damage?: boolean | number - molotov_throws?: boolean | number - non_awp_hits?: boolean | number - on_target_frames?: boolean | number - rounds_ct?: boolean | number - rounds_played?: boolean | number - rounds_t?: boolean | number - shots_at_spotted?: boolean | number - shots_fired?: boolean | number - smoke_throws?: boolean | number - spotted_count?: boolean | number - spotted_with_damage_count?: boolean | number - spray_hits?: boolean | number - spray_shots?: boolean | number - steam_id?: boolean | number - team_damage?: boolean | number - team_flashed?: boolean | number - three_kill_rounds?: boolean | number - total_engagement_frames?: boolean | number - trade_kill_attempts?: boolean | number - trade_kill_opportunities?: boolean | number - trade_kill_successes?: boolean | number - traded_death_attempts?: boolean | number - traded_death_opportunities?: boolean | number - traded_death_successes?: boolean | number - two_kill_rounds?: boolean | number - unused_utility_value?: boolean | number - utility_on_death?: boolean | number - wasted_magazine_shots?: boolean | number - zeus_kills?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "player_match_stats_v" */ -export interface player_match_stats_v_var_samp_order_by {assists?: (order_by | null),assists_ct?: (order_by | null),assists_t?: (order_by | null),avg_crosshair_angle_deg?: (order_by | null),avg_flash_duration?: (order_by | null),avg_time_to_damage_s?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),damage?: (order_by | null),damage_ct?: (order_by | null),damage_t?: (order_by | null),deaths?: (order_by | null),deaths_ct?: (order_by | null),deaths_t?: (order_by | null),decoy_throws?: (order_by | null),enemies_flashed?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),five_kill_rounds?: (order_by | null),flash_assists?: (order_by | null),flashes_thrown?: (order_by | null),four_kill_rounds?: (order_by | null),he_damage?: (order_by | null),he_team_damage?: (order_by | null),he_throws?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),hs_kills?: (order_by | null),hs_kills_ct?: (order_by | null),hs_kills_t?: (order_by | null),kills?: (order_by | null),kills_ct?: (order_by | null),kills_t?: (order_by | null),knife_kills?: (order_by | null),molotov_damage?: (order_by | null),molotov_throws?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),rounds_ct?: (order_by | null),rounds_played?: (order_by | null),rounds_t?: (order_by | null),shots_at_spotted?: (order_by | null),shots_fired?: (order_by | null),smoke_throws?: (order_by | null),spotted_count?: (order_by | null),spotted_with_damage_count?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),steam_id?: (order_by | null),team_damage?: (order_by | null),team_flashed?: (order_by | null),three_kill_rounds?: (order_by | null),total_engagement_frames?: (order_by | null),trade_kill_attempts?: (order_by | null),trade_kill_opportunities?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_attempts?: (order_by | null),traded_death_opportunities?: (order_by | null),traded_death_successes?: (order_by | null),two_kill_rounds?: (order_by | null),unused_utility_value?: (order_by | null),utility_on_death?: (order_by | null),wasted_magazine_shots?: (order_by | null),zeus_kills?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface player_match_stats_v_variance_fieldsGenqlSelection{ - assists?: boolean | number - assists_ct?: boolean | number - assists_t?: boolean | number - avg_crosshair_angle_deg?: boolean | number - avg_flash_duration?: boolean | number - avg_time_to_damage_s?: boolean | number - counter_strafe_eligible_shots?: boolean | number - counter_strafed_shots?: boolean | number - damage?: boolean | number - damage_ct?: boolean | number - damage_t?: boolean | number - deaths?: boolean | number - deaths_ct?: boolean | number - deaths_t?: boolean | number - decoy_throws?: boolean | number - enemies_flashed?: boolean | number - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - five_kill_rounds?: boolean | number - flash_assists?: boolean | number - flashes_thrown?: boolean | number - four_kill_rounds?: boolean | number - he_damage?: boolean | number - he_team_damage?: boolean | number - he_throws?: boolean | number - headshot_hits?: boolean | number - hits?: boolean | number - hits_at_spotted?: boolean | number - hs_kills?: boolean | number - hs_kills_ct?: boolean | number - hs_kills_t?: boolean | number - kills?: boolean | number - kills_ct?: boolean | number - kills_t?: boolean | number - knife_kills?: boolean | number - molotov_damage?: boolean | number - molotov_throws?: boolean | number - non_awp_hits?: boolean | number - on_target_frames?: boolean | number - rounds_ct?: boolean | number - rounds_played?: boolean | number - rounds_t?: boolean | number - shots_at_spotted?: boolean | number - shots_fired?: boolean | number - smoke_throws?: boolean | number - spotted_count?: boolean | number - spotted_with_damage_count?: boolean | number - spray_hits?: boolean | number - spray_shots?: boolean | number - steam_id?: boolean | number - team_damage?: boolean | number - team_flashed?: boolean | number - three_kill_rounds?: boolean | number - total_engagement_frames?: boolean | number - trade_kill_attempts?: boolean | number - trade_kill_opportunities?: boolean | number - trade_kill_successes?: boolean | number - traded_death_attempts?: boolean | number - traded_death_opportunities?: boolean | number - traded_death_successes?: boolean | number - two_kill_rounds?: boolean | number - unused_utility_value?: boolean | number - utility_on_death?: boolean | number - wasted_magazine_shots?: boolean | number - zeus_kills?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "player_match_stats_v" */ -export interface player_match_stats_v_variance_order_by {assists?: (order_by | null),assists_ct?: (order_by | null),assists_t?: (order_by | null),avg_crosshair_angle_deg?: (order_by | null),avg_flash_duration?: (order_by | null),avg_time_to_damage_s?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),damage?: (order_by | null),damage_ct?: (order_by | null),damage_t?: (order_by | null),deaths?: (order_by | null),deaths_ct?: (order_by | null),deaths_t?: (order_by | null),decoy_throws?: (order_by | null),enemies_flashed?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),five_kill_rounds?: (order_by | null),flash_assists?: (order_by | null),flashes_thrown?: (order_by | null),four_kill_rounds?: (order_by | null),he_damage?: (order_by | null),he_team_damage?: (order_by | null),he_throws?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),hs_kills?: (order_by | null),hs_kills_ct?: (order_by | null),hs_kills_t?: (order_by | null),kills?: (order_by | null),kills_ct?: (order_by | null),kills_t?: (order_by | null),knife_kills?: (order_by | null),molotov_damage?: (order_by | null),molotov_throws?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),rounds_ct?: (order_by | null),rounds_played?: (order_by | null),rounds_t?: (order_by | null),shots_at_spotted?: (order_by | null),shots_fired?: (order_by | null),smoke_throws?: (order_by | null),spotted_count?: (order_by | null),spotted_with_damage_count?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),steam_id?: (order_by | null),team_damage?: (order_by | null),team_flashed?: (order_by | null),three_kill_rounds?: (order_by | null),total_engagement_frames?: (order_by | null),trade_kill_attempts?: (order_by | null),trade_kill_opportunities?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_attempts?: (order_by | null),traded_death_opportunities?: (order_by | null),traded_death_successes?: (order_by | null),two_kill_rounds?: (order_by | null),unused_utility_value?: (order_by | null),utility_on_death?: (order_by | null),wasted_magazine_shots?: (order_by | null),zeus_kills?: (order_by | null)} - - -/** columns and relationships of "player_objectives" */ -export interface player_objectivesGenqlSelection{ - deleted_at?: boolean | number - /** An object relationship */ - match?: matchesGenqlSelection - match_id?: boolean | number - /** An object relationship */ - match_map?: match_mapsGenqlSelection - match_map_id?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - player_steam_id?: boolean | number - round?: boolean | number - time?: boolean | number - type?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "player_objectives" */ -export interface player_objectives_aggregateGenqlSelection{ - aggregate?: player_objectives_aggregate_fieldsGenqlSelection - nodes?: player_objectivesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface player_objectives_aggregate_bool_exp {count?: (player_objectives_aggregate_bool_exp_count | null)} - -export interface player_objectives_aggregate_bool_exp_count {arguments?: (player_objectives_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (player_objectives_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "player_objectives" */ -export interface player_objectives_aggregate_fieldsGenqlSelection{ - avg?: player_objectives_avg_fieldsGenqlSelection - count?: { __args: {columns?: (player_objectives_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: player_objectives_max_fieldsGenqlSelection - min?: player_objectives_min_fieldsGenqlSelection - stddev?: player_objectives_stddev_fieldsGenqlSelection - stddev_pop?: player_objectives_stddev_pop_fieldsGenqlSelection - stddev_samp?: player_objectives_stddev_samp_fieldsGenqlSelection - sum?: player_objectives_sum_fieldsGenqlSelection - var_pop?: player_objectives_var_pop_fieldsGenqlSelection - var_samp?: player_objectives_var_samp_fieldsGenqlSelection - variance?: player_objectives_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "player_objectives" */ -export interface player_objectives_aggregate_order_by {avg?: (player_objectives_avg_order_by | null),count?: (order_by | null),max?: (player_objectives_max_order_by | null),min?: (player_objectives_min_order_by | null),stddev?: (player_objectives_stddev_order_by | null),stddev_pop?: (player_objectives_stddev_pop_order_by | null),stddev_samp?: (player_objectives_stddev_samp_order_by | null),sum?: (player_objectives_sum_order_by | null),var_pop?: (player_objectives_var_pop_order_by | null),var_samp?: (player_objectives_var_samp_order_by | null),variance?: (player_objectives_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "player_objectives" */ -export interface player_objectives_arr_rel_insert_input {data: player_objectives_insert_input[], -/** upsert condition */ -on_conflict?: (player_objectives_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface player_objectives_avg_fieldsGenqlSelection{ - player_steam_id?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "player_objectives" */ -export interface player_objectives_avg_order_by {player_steam_id?: (order_by | null),round?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "player_objectives". All fields are combined with a logical 'AND'. */ -export interface player_objectives_bool_exp {_and?: (player_objectives_bool_exp[] | null),_not?: (player_objectives_bool_exp | null),_or?: (player_objectives_bool_exp[] | null),deleted_at?: (timestamptz_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_id?: (uuid_comparison_exp | null),player?: (players_bool_exp | null),player_steam_id?: (bigint_comparison_exp | null),round?: (Int_comparison_exp | null),time?: (timestamptz_comparison_exp | null),type?: (e_objective_types_enum_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "player_objectives" */ -export interface player_objectives_inc_input {player_steam_id?: (Scalars['bigint'] | null),round?: (Scalars['Int'] | null)} - - -/** input type for inserting data into table "player_objectives" */ -export interface player_objectives_insert_input {deleted_at?: (Scalars['timestamptz'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_map?: (match_maps_obj_rel_insert_input | null),match_map_id?: (Scalars['uuid'] | null),player?: (players_obj_rel_insert_input | null),player_steam_id?: (Scalars['bigint'] | null),round?: (Scalars['Int'] | null),time?: (Scalars['timestamptz'] | null),type?: (e_objective_types_enum | null)} - - -/** aggregate max on columns */ -export interface player_objectives_max_fieldsGenqlSelection{ - deleted_at?: boolean | number - match_id?: boolean | number - match_map_id?: boolean | number - player_steam_id?: boolean | number - round?: boolean | number - time?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "player_objectives" */ -export interface player_objectives_max_order_by {deleted_at?: (order_by | null),match_id?: (order_by | null),match_map_id?: (order_by | null),player_steam_id?: (order_by | null),round?: (order_by | null),time?: (order_by | null)} - - -/** aggregate min on columns */ -export interface player_objectives_min_fieldsGenqlSelection{ - deleted_at?: boolean | number - match_id?: boolean | number - match_map_id?: boolean | number - player_steam_id?: boolean | number - round?: boolean | number - time?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "player_objectives" */ -export interface player_objectives_min_order_by {deleted_at?: (order_by | null),match_id?: (order_by | null),match_map_id?: (order_by | null),player_steam_id?: (order_by | null),round?: (order_by | null),time?: (order_by | null)} - - -/** response of any mutation on the table "player_objectives" */ -export interface player_objectives_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: player_objectivesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "player_objectives" */ -export interface player_objectives_on_conflict {constraint: player_objectives_constraint,update_columns?: player_objectives_update_column[],where?: (player_objectives_bool_exp | null)} - - -/** Ordering options when selecting data from "player_objectives". */ -export interface player_objectives_order_by {deleted_at?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_id?: (order_by | null),player?: (players_order_by | null),player_steam_id?: (order_by | null),round?: (order_by | null),time?: (order_by | null),type?: (order_by | null)} - - -/** primary key columns input for table: player_objectives */ -export interface player_objectives_pk_columns_input {match_map_id: Scalars['uuid'],player_steam_id: Scalars['bigint'],time: Scalars['timestamptz']} - - -/** input type for updating data in table "player_objectives" */ -export interface player_objectives_set_input {deleted_at?: (Scalars['timestamptz'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),player_steam_id?: (Scalars['bigint'] | null),round?: (Scalars['Int'] | null),time?: (Scalars['timestamptz'] | null),type?: (e_objective_types_enum | null)} - - -/** aggregate stddev on columns */ -export interface player_objectives_stddev_fieldsGenqlSelection{ - player_steam_id?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "player_objectives" */ -export interface player_objectives_stddev_order_by {player_steam_id?: (order_by | null),round?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface player_objectives_stddev_pop_fieldsGenqlSelection{ - player_steam_id?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "player_objectives" */ -export interface player_objectives_stddev_pop_order_by {player_steam_id?: (order_by | null),round?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface player_objectives_stddev_samp_fieldsGenqlSelection{ - player_steam_id?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "player_objectives" */ -export interface player_objectives_stddev_samp_order_by {player_steam_id?: (order_by | null),round?: (order_by | null)} - - -/** Streaming cursor of the table "player_objectives" */ -export interface player_objectives_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: player_objectives_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface player_objectives_stream_cursor_value_input {deleted_at?: (Scalars['timestamptz'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),player_steam_id?: (Scalars['bigint'] | null),round?: (Scalars['Int'] | null),time?: (Scalars['timestamptz'] | null),type?: (e_objective_types_enum | null)} - - -/** aggregate sum on columns */ -export interface player_objectives_sum_fieldsGenqlSelection{ - player_steam_id?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "player_objectives" */ -export interface player_objectives_sum_order_by {player_steam_id?: (order_by | null),round?: (order_by | null)} - -export interface player_objectives_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (player_objectives_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (player_objectives_set_input | null), -/** filter the rows which have to be updated */ -where: player_objectives_bool_exp} - - -/** aggregate var_pop on columns */ -export interface player_objectives_var_pop_fieldsGenqlSelection{ - player_steam_id?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "player_objectives" */ -export interface player_objectives_var_pop_order_by {player_steam_id?: (order_by | null),round?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface player_objectives_var_samp_fieldsGenqlSelection{ - player_steam_id?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "player_objectives" */ -export interface player_objectives_var_samp_order_by {player_steam_id?: (order_by | null),round?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface player_objectives_variance_fieldsGenqlSelection{ - player_steam_id?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "player_objectives" */ -export interface player_objectives_variance_order_by {player_steam_id?: (order_by | null),round?: (order_by | null)} - - -/** columns and relationships of "player_performance_v" */ -export interface player_performance_vGenqlSelection{ - accuracy_score?: boolean | number - aim_goal?: boolean | number - aim_rating?: boolean | number - band?: boolean | number - band_sample?: boolean | number - blind_score?: boolean | number - counter_strafe_score?: boolean | number - crosshair_score?: boolean | number - flash_assists_score?: boolean | number - hs_score?: boolean | number - kast_score?: boolean | number - maps?: boolean | number - positioning_goal?: boolean | number - positioning_rating?: boolean | number - premier_rank?: boolean | number - rounds?: boolean | number - spotted_score?: boolean | number - steam_id?: boolean | number - survival_score?: boolean | number - traded_score?: boolean | number - ttd_score?: boolean | number - util_eff_score?: boolean | number - utility_goal?: boolean | number - utility_rating?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "player_performance_v" */ -export interface player_performance_v_aggregateGenqlSelection{ - aggregate?: player_performance_v_aggregate_fieldsGenqlSelection - nodes?: player_performance_vGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "player_performance_v" */ -export interface player_performance_v_aggregate_fieldsGenqlSelection{ - avg?: player_performance_v_avg_fieldsGenqlSelection - count?: { __args: {columns?: (player_performance_v_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: player_performance_v_max_fieldsGenqlSelection - min?: player_performance_v_min_fieldsGenqlSelection - stddev?: player_performance_v_stddev_fieldsGenqlSelection - stddev_pop?: player_performance_v_stddev_pop_fieldsGenqlSelection - stddev_samp?: player_performance_v_stddev_samp_fieldsGenqlSelection - sum?: player_performance_v_sum_fieldsGenqlSelection - var_pop?: player_performance_v_var_pop_fieldsGenqlSelection - var_samp?: player_performance_v_var_samp_fieldsGenqlSelection - variance?: player_performance_v_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface player_performance_v_avg_fieldsGenqlSelection{ - accuracy_score?: boolean | number - aim_goal?: boolean | number - aim_rating?: boolean | number - band?: boolean | number - band_sample?: boolean | number - blind_score?: boolean | number - counter_strafe_score?: boolean | number - crosshair_score?: boolean | number - flash_assists_score?: boolean | number - hs_score?: boolean | number - kast_score?: boolean | number - maps?: boolean | number - positioning_goal?: boolean | number - positioning_rating?: boolean | number - premier_rank?: boolean | number - rounds?: boolean | number - spotted_score?: boolean | number - steam_id?: boolean | number - survival_score?: boolean | number - traded_score?: boolean | number - ttd_score?: boolean | number - util_eff_score?: boolean | number - utility_goal?: boolean | number - utility_rating?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "player_performance_v". All fields are combined with a logical 'AND'. */ -export interface player_performance_v_bool_exp {_and?: (player_performance_v_bool_exp[] | null),_not?: (player_performance_v_bool_exp | null),_or?: (player_performance_v_bool_exp[] | null),accuracy_score?: (float8_comparison_exp | null),aim_goal?: (float8_comparison_exp | null),aim_rating?: (float8_comparison_exp | null),band?: (Int_comparison_exp | null),band_sample?: (bigint_comparison_exp | null),blind_score?: (float8_comparison_exp | null),counter_strafe_score?: (float8_comparison_exp | null),crosshair_score?: (float8_comparison_exp | null),flash_assists_score?: (float8_comparison_exp | null),hs_score?: (float8_comparison_exp | null),kast_score?: (float8_comparison_exp | null),maps?: (Int_comparison_exp | null),positioning_goal?: (float8_comparison_exp | null),positioning_rating?: (float8_comparison_exp | null),premier_rank?: (Int_comparison_exp | null),rounds?: (Int_comparison_exp | null),spotted_score?: (float8_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),survival_score?: (float8_comparison_exp | null),traded_score?: (float8_comparison_exp | null),ttd_score?: (float8_comparison_exp | null),util_eff_score?: (float8_comparison_exp | null),utility_goal?: (float8_comparison_exp | null),utility_rating?: (float8_comparison_exp | null)} - - -/** aggregate max on columns */ -export interface player_performance_v_max_fieldsGenqlSelection{ - accuracy_score?: boolean | number - aim_goal?: boolean | number - aim_rating?: boolean | number - band?: boolean | number - band_sample?: boolean | number - blind_score?: boolean | number - counter_strafe_score?: boolean | number - crosshair_score?: boolean | number - flash_assists_score?: boolean | number - hs_score?: boolean | number - kast_score?: boolean | number - maps?: boolean | number - positioning_goal?: boolean | number - positioning_rating?: boolean | number - premier_rank?: boolean | number - rounds?: boolean | number - spotted_score?: boolean | number - steam_id?: boolean | number - survival_score?: boolean | number - traded_score?: boolean | number - ttd_score?: boolean | number - util_eff_score?: boolean | number - utility_goal?: boolean | number - utility_rating?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface player_performance_v_min_fieldsGenqlSelection{ - accuracy_score?: boolean | number - aim_goal?: boolean | number - aim_rating?: boolean | number - band?: boolean | number - band_sample?: boolean | number - blind_score?: boolean | number - counter_strafe_score?: boolean | number - crosshair_score?: boolean | number - flash_assists_score?: boolean | number - hs_score?: boolean | number - kast_score?: boolean | number - maps?: boolean | number - positioning_goal?: boolean | number - positioning_rating?: boolean | number - premier_rank?: boolean | number - rounds?: boolean | number - spotted_score?: boolean | number - steam_id?: boolean | number - survival_score?: boolean | number - traded_score?: boolean | number - ttd_score?: boolean | number - util_eff_score?: boolean | number - utility_goal?: boolean | number - utility_rating?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Ordering options when selecting data from "player_performance_v". */ -export interface player_performance_v_order_by {accuracy_score?: (order_by | null),aim_goal?: (order_by | null),aim_rating?: (order_by | null),band?: (order_by | null),band_sample?: (order_by | null),blind_score?: (order_by | null),counter_strafe_score?: (order_by | null),crosshair_score?: (order_by | null),flash_assists_score?: (order_by | null),hs_score?: (order_by | null),kast_score?: (order_by | null),maps?: (order_by | null),positioning_goal?: (order_by | null),positioning_rating?: (order_by | null),premier_rank?: (order_by | null),rounds?: (order_by | null),spotted_score?: (order_by | null),steam_id?: (order_by | null),survival_score?: (order_by | null),traded_score?: (order_by | null),ttd_score?: (order_by | null),util_eff_score?: (order_by | null),utility_goal?: (order_by | null),utility_rating?: (order_by | null)} - - -/** aggregate stddev on columns */ -export interface player_performance_v_stddev_fieldsGenqlSelection{ - accuracy_score?: boolean | number - aim_goal?: boolean | number - aim_rating?: boolean | number - band?: boolean | number - band_sample?: boolean | number - blind_score?: boolean | number - counter_strafe_score?: boolean | number - crosshair_score?: boolean | number - flash_assists_score?: boolean | number - hs_score?: boolean | number - kast_score?: boolean | number - maps?: boolean | number - positioning_goal?: boolean | number - positioning_rating?: boolean | number - premier_rank?: boolean | number - rounds?: boolean | number - spotted_score?: boolean | number - steam_id?: boolean | number - survival_score?: boolean | number - traded_score?: boolean | number - ttd_score?: boolean | number - util_eff_score?: boolean | number - utility_goal?: boolean | number - utility_rating?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface player_performance_v_stddev_pop_fieldsGenqlSelection{ - accuracy_score?: boolean | number - aim_goal?: boolean | number - aim_rating?: boolean | number - band?: boolean | number - band_sample?: boolean | number - blind_score?: boolean | number - counter_strafe_score?: boolean | number - crosshair_score?: boolean | number - flash_assists_score?: boolean | number - hs_score?: boolean | number - kast_score?: boolean | number - maps?: boolean | number - positioning_goal?: boolean | number - positioning_rating?: boolean | number - premier_rank?: boolean | number - rounds?: boolean | number - spotted_score?: boolean | number - steam_id?: boolean | number - survival_score?: boolean | number - traded_score?: boolean | number - ttd_score?: boolean | number - util_eff_score?: boolean | number - utility_goal?: boolean | number - utility_rating?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface player_performance_v_stddev_samp_fieldsGenqlSelection{ - accuracy_score?: boolean | number - aim_goal?: boolean | number - aim_rating?: boolean | number - band?: boolean | number - band_sample?: boolean | number - blind_score?: boolean | number - counter_strafe_score?: boolean | number - crosshair_score?: boolean | number - flash_assists_score?: boolean | number - hs_score?: boolean | number - kast_score?: boolean | number - maps?: boolean | number - positioning_goal?: boolean | number - positioning_rating?: boolean | number - premier_rank?: boolean | number - rounds?: boolean | number - spotted_score?: boolean | number - steam_id?: boolean | number - survival_score?: boolean | number - traded_score?: boolean | number - ttd_score?: boolean | number - util_eff_score?: boolean | number - utility_goal?: boolean | number - utility_rating?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "player_performance_v" */ -export interface player_performance_v_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: player_performance_v_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface player_performance_v_stream_cursor_value_input {accuracy_score?: (Scalars['float8'] | null),aim_goal?: (Scalars['float8'] | null),aim_rating?: (Scalars['float8'] | null),band?: (Scalars['Int'] | null),band_sample?: (Scalars['bigint'] | null),blind_score?: (Scalars['float8'] | null),counter_strafe_score?: (Scalars['float8'] | null),crosshair_score?: (Scalars['float8'] | null),flash_assists_score?: (Scalars['float8'] | null),hs_score?: (Scalars['float8'] | null),kast_score?: (Scalars['float8'] | null),maps?: (Scalars['Int'] | null),positioning_goal?: (Scalars['float8'] | null),positioning_rating?: (Scalars['float8'] | null),premier_rank?: (Scalars['Int'] | null),rounds?: (Scalars['Int'] | null),spotted_score?: (Scalars['float8'] | null),steam_id?: (Scalars['bigint'] | null),survival_score?: (Scalars['float8'] | null),traded_score?: (Scalars['float8'] | null),ttd_score?: (Scalars['float8'] | null),util_eff_score?: (Scalars['float8'] | null),utility_goal?: (Scalars['float8'] | null),utility_rating?: (Scalars['float8'] | null)} - - -/** aggregate sum on columns */ -export interface player_performance_v_sum_fieldsGenqlSelection{ - accuracy_score?: boolean | number - aim_goal?: boolean | number - aim_rating?: boolean | number - band?: boolean | number - band_sample?: boolean | number - blind_score?: boolean | number - counter_strafe_score?: boolean | number - crosshair_score?: boolean | number - flash_assists_score?: boolean | number - hs_score?: boolean | number - kast_score?: boolean | number - maps?: boolean | number - positioning_goal?: boolean | number - positioning_rating?: boolean | number - premier_rank?: boolean | number - rounds?: boolean | number - spotted_score?: boolean | number - steam_id?: boolean | number - survival_score?: boolean | number - traded_score?: boolean | number - ttd_score?: boolean | number - util_eff_score?: boolean | number - utility_goal?: boolean | number - utility_rating?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_pop on columns */ -export interface player_performance_v_var_pop_fieldsGenqlSelection{ - accuracy_score?: boolean | number - aim_goal?: boolean | number - aim_rating?: boolean | number - band?: boolean | number - band_sample?: boolean | number - blind_score?: boolean | number - counter_strafe_score?: boolean | number - crosshair_score?: boolean | number - flash_assists_score?: boolean | number - hs_score?: boolean | number - kast_score?: boolean | number - maps?: boolean | number - positioning_goal?: boolean | number - positioning_rating?: boolean | number - premier_rank?: boolean | number - rounds?: boolean | number - spotted_score?: boolean | number - steam_id?: boolean | number - survival_score?: boolean | number - traded_score?: boolean | number - ttd_score?: boolean | number - util_eff_score?: boolean | number - utility_goal?: boolean | number - utility_rating?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface player_performance_v_var_samp_fieldsGenqlSelection{ - accuracy_score?: boolean | number - aim_goal?: boolean | number - aim_rating?: boolean | number - band?: boolean | number - band_sample?: boolean | number - blind_score?: boolean | number - counter_strafe_score?: boolean | number - crosshair_score?: boolean | number - flash_assists_score?: boolean | number - hs_score?: boolean | number - kast_score?: boolean | number - maps?: boolean | number - positioning_goal?: boolean | number - positioning_rating?: boolean | number - premier_rank?: boolean | number - rounds?: boolean | number - spotted_score?: boolean | number - steam_id?: boolean | number - survival_score?: boolean | number - traded_score?: boolean | number - ttd_score?: boolean | number - util_eff_score?: boolean | number - utility_goal?: boolean | number - utility_rating?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface player_performance_v_variance_fieldsGenqlSelection{ - accuracy_score?: boolean | number - aim_goal?: boolean | number - aim_rating?: boolean | number - band?: boolean | number - band_sample?: boolean | number - blind_score?: boolean | number - counter_strafe_score?: boolean | number - crosshair_score?: boolean | number - flash_assists_score?: boolean | number - hs_score?: boolean | number - kast_score?: boolean | number - maps?: boolean | number - positioning_goal?: boolean | number - positioning_rating?: boolean | number - premier_rank?: boolean | number - rounds?: boolean | number - spotted_score?: boolean | number - steam_id?: boolean | number - survival_score?: boolean | number - traded_score?: boolean | number - ttd_score?: boolean | number - util_eff_score?: boolean | number - utility_goal?: boolean | number - utility_rating?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "player_premier_rank_history" */ -export interface player_premier_rank_historyGenqlSelection{ - id?: boolean | number - /** An object relationship */ - map?: mapsGenqlSelection - map_id?: boolean | number - /** An object relationship */ - match?: matchesGenqlSelection - match_id?: boolean | number - observed_at?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - previous_rank?: boolean | number - rank?: boolean | number - rank_type?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "player_premier_rank_history" */ -export interface player_premier_rank_history_aggregateGenqlSelection{ - aggregate?: player_premier_rank_history_aggregate_fieldsGenqlSelection - nodes?: player_premier_rank_historyGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface player_premier_rank_history_aggregate_bool_exp {count?: (player_premier_rank_history_aggregate_bool_exp_count | null)} - -export interface player_premier_rank_history_aggregate_bool_exp_count {arguments?: (player_premier_rank_history_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (player_premier_rank_history_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "player_premier_rank_history" */ -export interface player_premier_rank_history_aggregate_fieldsGenqlSelection{ - avg?: player_premier_rank_history_avg_fieldsGenqlSelection - count?: { __args: {columns?: (player_premier_rank_history_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: player_premier_rank_history_max_fieldsGenqlSelection - min?: player_premier_rank_history_min_fieldsGenqlSelection - stddev?: player_premier_rank_history_stddev_fieldsGenqlSelection - stddev_pop?: player_premier_rank_history_stddev_pop_fieldsGenqlSelection - stddev_samp?: player_premier_rank_history_stddev_samp_fieldsGenqlSelection - sum?: player_premier_rank_history_sum_fieldsGenqlSelection - var_pop?: player_premier_rank_history_var_pop_fieldsGenqlSelection - var_samp?: player_premier_rank_history_var_samp_fieldsGenqlSelection - variance?: player_premier_rank_history_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "player_premier_rank_history" */ -export interface player_premier_rank_history_aggregate_order_by {avg?: (player_premier_rank_history_avg_order_by | null),count?: (order_by | null),max?: (player_premier_rank_history_max_order_by | null),min?: (player_premier_rank_history_min_order_by | null),stddev?: (player_premier_rank_history_stddev_order_by | null),stddev_pop?: (player_premier_rank_history_stddev_pop_order_by | null),stddev_samp?: (player_premier_rank_history_stddev_samp_order_by | null),sum?: (player_premier_rank_history_sum_order_by | null),var_pop?: (player_premier_rank_history_var_pop_order_by | null),var_samp?: (player_premier_rank_history_var_samp_order_by | null),variance?: (player_premier_rank_history_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "player_premier_rank_history" */ -export interface player_premier_rank_history_arr_rel_insert_input {data: player_premier_rank_history_insert_input[], -/** upsert condition */ -on_conflict?: (player_premier_rank_history_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface player_premier_rank_history_avg_fieldsGenqlSelection{ - previous_rank?: boolean | number - rank?: boolean | number - rank_type?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "player_premier_rank_history" */ -export interface player_premier_rank_history_avg_order_by {previous_rank?: (order_by | null),rank?: (order_by | null),rank_type?: (order_by | null),steam_id?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "player_premier_rank_history". All fields are combined with a logical 'AND'. */ -export interface player_premier_rank_history_bool_exp {_and?: (player_premier_rank_history_bool_exp[] | null),_not?: (player_premier_rank_history_bool_exp | null),_or?: (player_premier_rank_history_bool_exp[] | null),id?: (uuid_comparison_exp | null),map?: (maps_bool_exp | null),map_id?: (uuid_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),observed_at?: (timestamptz_comparison_exp | null),player?: (players_bool_exp | null),previous_rank?: (Int_comparison_exp | null),rank?: (Int_comparison_exp | null),rank_type?: (Int_comparison_exp | null),steam_id?: (bigint_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "player_premier_rank_history" */ -export interface player_premier_rank_history_inc_input {previous_rank?: (Scalars['Int'] | null),rank?: (Scalars['Int'] | null),rank_type?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "player_premier_rank_history" */ -export interface player_premier_rank_history_insert_input {id?: (Scalars['uuid'] | null),map?: (maps_obj_rel_insert_input | null),map_id?: (Scalars['uuid'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),observed_at?: (Scalars['timestamptz'] | null),player?: (players_obj_rel_insert_input | null),previous_rank?: (Scalars['Int'] | null),rank?: (Scalars['Int'] | null),rank_type?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null)} - - -/** aggregate max on columns */ -export interface player_premier_rank_history_max_fieldsGenqlSelection{ - id?: boolean | number - map_id?: boolean | number - match_id?: boolean | number - observed_at?: boolean | number - previous_rank?: boolean | number - rank?: boolean | number - rank_type?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "player_premier_rank_history" */ -export interface player_premier_rank_history_max_order_by {id?: (order_by | null),map_id?: (order_by | null),match_id?: (order_by | null),observed_at?: (order_by | null),previous_rank?: (order_by | null),rank?: (order_by | null),rank_type?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface player_premier_rank_history_min_fieldsGenqlSelection{ - id?: boolean | number - map_id?: boolean | number - match_id?: boolean | number - observed_at?: boolean | number - previous_rank?: boolean | number - rank?: boolean | number - rank_type?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "player_premier_rank_history" */ -export interface player_premier_rank_history_min_order_by {id?: (order_by | null),map_id?: (order_by | null),match_id?: (order_by | null),observed_at?: (order_by | null),previous_rank?: (order_by | null),rank?: (order_by | null),rank_type?: (order_by | null),steam_id?: (order_by | null)} - - -/** response of any mutation on the table "player_premier_rank_history" */ -export interface player_premier_rank_history_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: player_premier_rank_historyGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "player_premier_rank_history" */ -export interface player_premier_rank_history_on_conflict {constraint: player_premier_rank_history_constraint,update_columns?: player_premier_rank_history_update_column[],where?: (player_premier_rank_history_bool_exp | null)} - - -/** Ordering options when selecting data from "player_premier_rank_history". */ -export interface player_premier_rank_history_order_by {id?: (order_by | null),map?: (maps_order_by | null),map_id?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),observed_at?: (order_by | null),player?: (players_order_by | null),previous_rank?: (order_by | null),rank?: (order_by | null),rank_type?: (order_by | null),steam_id?: (order_by | null)} - - -/** primary key columns input for table: player_premier_rank_history */ -export interface player_premier_rank_history_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "player_premier_rank_history" */ -export interface player_premier_rank_history_set_input {id?: (Scalars['uuid'] | null),map_id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),observed_at?: (Scalars['timestamptz'] | null),previous_rank?: (Scalars['Int'] | null),rank?: (Scalars['Int'] | null),rank_type?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null)} - - -/** aggregate stddev on columns */ -export interface player_premier_rank_history_stddev_fieldsGenqlSelection{ - previous_rank?: boolean | number - rank?: boolean | number - rank_type?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "player_premier_rank_history" */ -export interface player_premier_rank_history_stddev_order_by {previous_rank?: (order_by | null),rank?: (order_by | null),rank_type?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface player_premier_rank_history_stddev_pop_fieldsGenqlSelection{ - previous_rank?: boolean | number - rank?: boolean | number - rank_type?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "player_premier_rank_history" */ -export interface player_premier_rank_history_stddev_pop_order_by {previous_rank?: (order_by | null),rank?: (order_by | null),rank_type?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface player_premier_rank_history_stddev_samp_fieldsGenqlSelection{ - previous_rank?: boolean | number - rank?: boolean | number - rank_type?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "player_premier_rank_history" */ -export interface player_premier_rank_history_stddev_samp_order_by {previous_rank?: (order_by | null),rank?: (order_by | null),rank_type?: (order_by | null),steam_id?: (order_by | null)} - - -/** Streaming cursor of the table "player_premier_rank_history" */ -export interface player_premier_rank_history_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: player_premier_rank_history_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface player_premier_rank_history_stream_cursor_value_input {id?: (Scalars['uuid'] | null),map_id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),observed_at?: (Scalars['timestamptz'] | null),previous_rank?: (Scalars['Int'] | null),rank?: (Scalars['Int'] | null),rank_type?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null)} - - -/** aggregate sum on columns */ -export interface player_premier_rank_history_sum_fieldsGenqlSelection{ - previous_rank?: boolean | number - rank?: boolean | number - rank_type?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "player_premier_rank_history" */ -export interface player_premier_rank_history_sum_order_by {previous_rank?: (order_by | null),rank?: (order_by | null),rank_type?: (order_by | null),steam_id?: (order_by | null)} - -export interface player_premier_rank_history_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (player_premier_rank_history_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (player_premier_rank_history_set_input | null), -/** filter the rows which have to be updated */ -where: player_premier_rank_history_bool_exp} - - -/** aggregate var_pop on columns */ -export interface player_premier_rank_history_var_pop_fieldsGenqlSelection{ - previous_rank?: boolean | number - rank?: boolean | number - rank_type?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "player_premier_rank_history" */ -export interface player_premier_rank_history_var_pop_order_by {previous_rank?: (order_by | null),rank?: (order_by | null),rank_type?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface player_premier_rank_history_var_samp_fieldsGenqlSelection{ - previous_rank?: boolean | number - rank?: boolean | number - rank_type?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "player_premier_rank_history" */ -export interface player_premier_rank_history_var_samp_order_by {previous_rank?: (order_by | null),rank?: (order_by | null),rank_type?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface player_premier_rank_history_variance_fieldsGenqlSelection{ - previous_rank?: boolean | number - rank?: boolean | number - rank_type?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "player_premier_rank_history" */ -export interface player_premier_rank_history_variance_order_by {previous_rank?: (order_by | null),rank?: (order_by | null),rank_type?: (order_by | null),steam_id?: (order_by | null)} - - -/** columns and relationships of "player_sanctions" */ -export interface player_sanctionsGenqlSelection{ - created_at?: boolean | number - deleted_at?: boolean | number - /** An object relationship */ - e_sanction_type?: e_sanction_typesGenqlSelection - id?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - player_steam_id?: boolean | number - reason?: boolean | number - remove_sanction_date?: boolean | number - /** An object relationship */ - sanctioned_by?: playersGenqlSelection - sanctioned_by_steam_id?: boolean | number - type?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "player_sanctions" */ -export interface player_sanctions_aggregateGenqlSelection{ - aggregate?: player_sanctions_aggregate_fieldsGenqlSelection - nodes?: player_sanctionsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface player_sanctions_aggregate_bool_exp {count?: (player_sanctions_aggregate_bool_exp_count | null)} - -export interface player_sanctions_aggregate_bool_exp_count {arguments?: (player_sanctions_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (player_sanctions_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "player_sanctions" */ -export interface player_sanctions_aggregate_fieldsGenqlSelection{ - avg?: player_sanctions_avg_fieldsGenqlSelection - count?: { __args: {columns?: (player_sanctions_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: player_sanctions_max_fieldsGenqlSelection - min?: player_sanctions_min_fieldsGenqlSelection - stddev?: player_sanctions_stddev_fieldsGenqlSelection - stddev_pop?: player_sanctions_stddev_pop_fieldsGenqlSelection - stddev_samp?: player_sanctions_stddev_samp_fieldsGenqlSelection - sum?: player_sanctions_sum_fieldsGenqlSelection - var_pop?: player_sanctions_var_pop_fieldsGenqlSelection - var_samp?: player_sanctions_var_samp_fieldsGenqlSelection - variance?: player_sanctions_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "player_sanctions" */ -export interface player_sanctions_aggregate_order_by {avg?: (player_sanctions_avg_order_by | null),count?: (order_by | null),max?: (player_sanctions_max_order_by | null),min?: (player_sanctions_min_order_by | null),stddev?: (player_sanctions_stddev_order_by | null),stddev_pop?: (player_sanctions_stddev_pop_order_by | null),stddev_samp?: (player_sanctions_stddev_samp_order_by | null),sum?: (player_sanctions_sum_order_by | null),var_pop?: (player_sanctions_var_pop_order_by | null),var_samp?: (player_sanctions_var_samp_order_by | null),variance?: (player_sanctions_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "player_sanctions" */ -export interface player_sanctions_arr_rel_insert_input {data: player_sanctions_insert_input[], -/** upsert condition */ -on_conflict?: (player_sanctions_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface player_sanctions_avg_fieldsGenqlSelection{ - player_steam_id?: boolean | number - sanctioned_by_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "player_sanctions" */ -export interface player_sanctions_avg_order_by {player_steam_id?: (order_by | null),sanctioned_by_steam_id?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "player_sanctions". All fields are combined with a logical 'AND'. */ -export interface player_sanctions_bool_exp {_and?: (player_sanctions_bool_exp[] | null),_not?: (player_sanctions_bool_exp | null),_or?: (player_sanctions_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),deleted_at?: (timestamptz_comparison_exp | null),e_sanction_type?: (e_sanction_types_bool_exp | null),id?: (uuid_comparison_exp | null),player?: (players_bool_exp | null),player_steam_id?: (bigint_comparison_exp | null),reason?: (String_comparison_exp | null),remove_sanction_date?: (timestamptz_comparison_exp | null),sanctioned_by?: (players_bool_exp | null),sanctioned_by_steam_id?: (bigint_comparison_exp | null),type?: (e_sanction_types_enum_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "player_sanctions" */ -export interface player_sanctions_inc_input {player_steam_id?: (Scalars['bigint'] | null),sanctioned_by_steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "player_sanctions" */ -export interface player_sanctions_insert_input {created_at?: (Scalars['timestamptz'] | null),deleted_at?: (Scalars['timestamptz'] | null),e_sanction_type?: (e_sanction_types_obj_rel_insert_input | null),id?: (Scalars['uuid'] | null),player?: (players_obj_rel_insert_input | null),player_steam_id?: (Scalars['bigint'] | null),reason?: (Scalars['String'] | null),remove_sanction_date?: (Scalars['timestamptz'] | null),sanctioned_by?: (players_obj_rel_insert_input | null),sanctioned_by_steam_id?: (Scalars['bigint'] | null),type?: (e_sanction_types_enum | null)} - - -/** aggregate max on columns */ -export interface player_sanctions_max_fieldsGenqlSelection{ - created_at?: boolean | number - deleted_at?: boolean | number - id?: boolean | number - player_steam_id?: boolean | number - reason?: boolean | number - remove_sanction_date?: boolean | number - sanctioned_by_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "player_sanctions" */ -export interface player_sanctions_max_order_by {created_at?: (order_by | null),deleted_at?: (order_by | null),id?: (order_by | null),player_steam_id?: (order_by | null),reason?: (order_by | null),remove_sanction_date?: (order_by | null),sanctioned_by_steam_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface player_sanctions_min_fieldsGenqlSelection{ - created_at?: boolean | number - deleted_at?: boolean | number - id?: boolean | number - player_steam_id?: boolean | number - reason?: boolean | number - remove_sanction_date?: boolean | number - sanctioned_by_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "player_sanctions" */ -export interface player_sanctions_min_order_by {created_at?: (order_by | null),deleted_at?: (order_by | null),id?: (order_by | null),player_steam_id?: (order_by | null),reason?: (order_by | null),remove_sanction_date?: (order_by | null),sanctioned_by_steam_id?: (order_by | null)} - - -/** response of any mutation on the table "player_sanctions" */ -export interface player_sanctions_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: player_sanctionsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "player_sanctions" */ -export interface player_sanctions_on_conflict {constraint: player_sanctions_constraint,update_columns?: player_sanctions_update_column[],where?: (player_sanctions_bool_exp | null)} - - -/** Ordering options when selecting data from "player_sanctions". */ -export interface player_sanctions_order_by {created_at?: (order_by | null),deleted_at?: (order_by | null),e_sanction_type?: (e_sanction_types_order_by | null),id?: (order_by | null),player?: (players_order_by | null),player_steam_id?: (order_by | null),reason?: (order_by | null),remove_sanction_date?: (order_by | null),sanctioned_by?: (players_order_by | null),sanctioned_by_steam_id?: (order_by | null),type?: (order_by | null)} - - -/** primary key columns input for table: player_sanctions */ -export interface player_sanctions_pk_columns_input {created_at: Scalars['timestamptz'],id: Scalars['uuid']} - - -/** input type for updating data in table "player_sanctions" */ -export interface player_sanctions_set_input {created_at?: (Scalars['timestamptz'] | null),deleted_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),player_steam_id?: (Scalars['bigint'] | null),reason?: (Scalars['String'] | null),remove_sanction_date?: (Scalars['timestamptz'] | null),sanctioned_by_steam_id?: (Scalars['bigint'] | null),type?: (e_sanction_types_enum | null)} - - -/** aggregate stddev on columns */ -export interface player_sanctions_stddev_fieldsGenqlSelection{ - player_steam_id?: boolean | number - sanctioned_by_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "player_sanctions" */ -export interface player_sanctions_stddev_order_by {player_steam_id?: (order_by | null),sanctioned_by_steam_id?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface player_sanctions_stddev_pop_fieldsGenqlSelection{ - player_steam_id?: boolean | number - sanctioned_by_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "player_sanctions" */ -export interface player_sanctions_stddev_pop_order_by {player_steam_id?: (order_by | null),sanctioned_by_steam_id?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface player_sanctions_stddev_samp_fieldsGenqlSelection{ - player_steam_id?: boolean | number - sanctioned_by_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "player_sanctions" */ -export interface player_sanctions_stddev_samp_order_by {player_steam_id?: (order_by | null),sanctioned_by_steam_id?: (order_by | null)} - - -/** Streaming cursor of the table "player_sanctions" */ -export interface player_sanctions_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: player_sanctions_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface player_sanctions_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),deleted_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),player_steam_id?: (Scalars['bigint'] | null),reason?: (Scalars['String'] | null),remove_sanction_date?: (Scalars['timestamptz'] | null),sanctioned_by_steam_id?: (Scalars['bigint'] | null),type?: (e_sanction_types_enum | null)} - - -/** aggregate sum on columns */ -export interface player_sanctions_sum_fieldsGenqlSelection{ - player_steam_id?: boolean | number - sanctioned_by_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "player_sanctions" */ -export interface player_sanctions_sum_order_by {player_steam_id?: (order_by | null),sanctioned_by_steam_id?: (order_by | null)} - -export interface player_sanctions_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (player_sanctions_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (player_sanctions_set_input | null), -/** filter the rows which have to be updated */ -where: player_sanctions_bool_exp} - - -/** aggregate var_pop on columns */ -export interface player_sanctions_var_pop_fieldsGenqlSelection{ - player_steam_id?: boolean | number - sanctioned_by_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "player_sanctions" */ -export interface player_sanctions_var_pop_order_by {player_steam_id?: (order_by | null),sanctioned_by_steam_id?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface player_sanctions_var_samp_fieldsGenqlSelection{ - player_steam_id?: boolean | number - sanctioned_by_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "player_sanctions" */ -export interface player_sanctions_var_samp_order_by {player_steam_id?: (order_by | null),sanctioned_by_steam_id?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface player_sanctions_variance_fieldsGenqlSelection{ - player_steam_id?: boolean | number - sanctioned_by_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "player_sanctions" */ -export interface player_sanctions_variance_order_by {player_steam_id?: (order_by | null),sanctioned_by_steam_id?: (order_by | null)} - - -/** columns and relationships of "player_season_stats" */ -export interface player_season_statsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kills?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - player_steam_id?: boolean | number - /** An object relationship */ - season?: seasonsGenqlSelection - season_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "player_season_stats" */ -export interface player_season_stats_aggregateGenqlSelection{ - aggregate?: player_season_stats_aggregate_fieldsGenqlSelection - nodes?: player_season_statsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface player_season_stats_aggregate_bool_exp {avg?: (player_season_stats_aggregate_bool_exp_avg | null),corr?: (player_season_stats_aggregate_bool_exp_corr | null),count?: (player_season_stats_aggregate_bool_exp_count | null),covar_samp?: (player_season_stats_aggregate_bool_exp_covar_samp | null),max?: (player_season_stats_aggregate_bool_exp_max | null),min?: (player_season_stats_aggregate_bool_exp_min | null),stddev_samp?: (player_season_stats_aggregate_bool_exp_stddev_samp | null),sum?: (player_season_stats_aggregate_bool_exp_sum | null),var_samp?: (player_season_stats_aggregate_bool_exp_var_samp | null)} - -export interface player_season_stats_aggregate_bool_exp_avg {arguments: player_season_stats_select_column_player_season_stats_aggregate_bool_exp_avg_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (player_season_stats_bool_exp | null),predicate: float8_comparison_exp} - -export interface player_season_stats_aggregate_bool_exp_corr {arguments: player_season_stats_aggregate_bool_exp_corr_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (player_season_stats_bool_exp | null),predicate: float8_comparison_exp} - -export interface player_season_stats_aggregate_bool_exp_corr_arguments {X: player_season_stats_select_column_player_season_stats_aggregate_bool_exp_corr_arguments_columns,Y: player_season_stats_select_column_player_season_stats_aggregate_bool_exp_corr_arguments_columns} - -export interface player_season_stats_aggregate_bool_exp_count {arguments?: (player_season_stats_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (player_season_stats_bool_exp | null),predicate: Int_comparison_exp} - -export interface player_season_stats_aggregate_bool_exp_covar_samp {arguments: player_season_stats_aggregate_bool_exp_covar_samp_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (player_season_stats_bool_exp | null),predicate: float8_comparison_exp} - -export interface player_season_stats_aggregate_bool_exp_covar_samp_arguments {X: player_season_stats_select_column_player_season_stats_aggregate_bool_exp_covar_samp_arguments_columns,Y: player_season_stats_select_column_player_season_stats_aggregate_bool_exp_covar_samp_arguments_columns} - -export interface player_season_stats_aggregate_bool_exp_max {arguments: player_season_stats_select_column_player_season_stats_aggregate_bool_exp_max_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (player_season_stats_bool_exp | null),predicate: float8_comparison_exp} - -export interface player_season_stats_aggregate_bool_exp_min {arguments: player_season_stats_select_column_player_season_stats_aggregate_bool_exp_min_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (player_season_stats_bool_exp | null),predicate: float8_comparison_exp} - -export interface player_season_stats_aggregate_bool_exp_stddev_samp {arguments: player_season_stats_select_column_player_season_stats_aggregate_bool_exp_stddev_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (player_season_stats_bool_exp | null),predicate: float8_comparison_exp} - -export interface player_season_stats_aggregate_bool_exp_sum {arguments: player_season_stats_select_column_player_season_stats_aggregate_bool_exp_sum_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (player_season_stats_bool_exp | null),predicate: float8_comparison_exp} - -export interface player_season_stats_aggregate_bool_exp_var_samp {arguments: player_season_stats_select_column_player_season_stats_aggregate_bool_exp_var_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (player_season_stats_bool_exp | null),predicate: float8_comparison_exp} - - -/** aggregate fields of "player_season_stats" */ -export interface player_season_stats_aggregate_fieldsGenqlSelection{ - avg?: player_season_stats_avg_fieldsGenqlSelection - count?: { __args: {columns?: (player_season_stats_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: player_season_stats_max_fieldsGenqlSelection - min?: player_season_stats_min_fieldsGenqlSelection - stddev?: player_season_stats_stddev_fieldsGenqlSelection - stddev_pop?: player_season_stats_stddev_pop_fieldsGenqlSelection - stddev_samp?: player_season_stats_stddev_samp_fieldsGenqlSelection - sum?: player_season_stats_sum_fieldsGenqlSelection - var_pop?: player_season_stats_var_pop_fieldsGenqlSelection - var_samp?: player_season_stats_var_samp_fieldsGenqlSelection - variance?: player_season_stats_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "player_season_stats" */ -export interface player_season_stats_aggregate_order_by {avg?: (player_season_stats_avg_order_by | null),count?: (order_by | null),max?: (player_season_stats_max_order_by | null),min?: (player_season_stats_min_order_by | null),stddev?: (player_season_stats_stddev_order_by | null),stddev_pop?: (player_season_stats_stddev_pop_order_by | null),stddev_samp?: (player_season_stats_stddev_samp_order_by | null),sum?: (player_season_stats_sum_order_by | null),var_pop?: (player_season_stats_var_pop_order_by | null),var_samp?: (player_season_stats_var_samp_order_by | null),variance?: (player_season_stats_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "player_season_stats" */ -export interface player_season_stats_arr_rel_insert_input {data: player_season_stats_insert_input[], -/** upsert condition */ -on_conflict?: (player_season_stats_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface player_season_stats_avg_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kills?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "player_season_stats" */ -export interface player_season_stats_avg_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kills?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "player_season_stats". All fields are combined with a logical 'AND'. */ -export interface player_season_stats_bool_exp {_and?: (player_season_stats_bool_exp[] | null),_not?: (player_season_stats_bool_exp | null),_or?: (player_season_stats_bool_exp[] | null),assists?: (bigint_comparison_exp | null),deaths?: (bigint_comparison_exp | null),headshot_percentage?: (float8_comparison_exp | null),headshots?: (bigint_comparison_exp | null),kills?: (bigint_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)} - - -/** input type for incrementing numeric columns in table "player_season_stats" */ -export interface player_season_stats_inc_input {assists?: (Scalars['bigint'] | null),deaths?: (Scalars['bigint'] | null),headshot_percentage?: (Scalars['float8'] | null),headshots?: (Scalars['bigint'] | null),kills?: (Scalars['bigint'] | null),player_steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "player_season_stats" */ -export interface player_season_stats_insert_input {assists?: (Scalars['bigint'] | null),deaths?: (Scalars['bigint'] | null),headshot_percentage?: (Scalars['float8'] | null),headshots?: (Scalars['bigint'] | null),kills?: (Scalars['bigint'] | 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)} - - -/** aggregate max on columns */ -export interface player_season_stats_max_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kills?: boolean | number - player_steam_id?: boolean | number - season_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "player_season_stats" */ -export interface player_season_stats_max_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kills?: (order_by | null),player_steam_id?: (order_by | null),season_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface player_season_stats_min_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kills?: boolean | number - player_steam_id?: boolean | number - season_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "player_season_stats" */ -export interface player_season_stats_min_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kills?: (order_by | null),player_steam_id?: (order_by | null),season_id?: (order_by | null)} - - -/** response of any mutation on the table "player_season_stats" */ -export interface player_season_stats_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: player_season_statsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "player_season_stats" */ -export interface player_season_stats_on_conflict {constraint: player_season_stats_constraint,update_columns?: player_season_stats_update_column[],where?: (player_season_stats_bool_exp | null)} - - -/** Ordering options when selecting data from "player_season_stats". */ -export interface player_season_stats_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kills?: (order_by | null),player?: (players_order_by | null),player_steam_id?: (order_by | null),season?: (seasons_order_by | null),season_id?: (order_by | null)} - - -/** primary key columns input for table: player_season_stats */ -export interface player_season_stats_pk_columns_input {player_steam_id: Scalars['bigint'],season_id: Scalars['uuid']} - - -/** input type for updating data in table "player_season_stats" */ -export interface player_season_stats_set_input {assists?: (Scalars['bigint'] | null),deaths?: (Scalars['bigint'] | null),headshot_percentage?: (Scalars['float8'] | null),headshots?: (Scalars['bigint'] | null),kills?: (Scalars['bigint'] | null),player_steam_id?: (Scalars['bigint'] | null),season_id?: (Scalars['uuid'] | null)} - - -/** aggregate stddev on columns */ -export interface player_season_stats_stddev_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kills?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "player_season_stats" */ -export interface player_season_stats_stddev_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kills?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface player_season_stats_stddev_pop_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kills?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "player_season_stats" */ -export interface player_season_stats_stddev_pop_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kills?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface player_season_stats_stddev_samp_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kills?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "player_season_stats" */ -export interface player_season_stats_stddev_samp_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kills?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** Streaming cursor of the table "player_season_stats" */ -export interface player_season_stats_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: player_season_stats_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface player_season_stats_stream_cursor_value_input {assists?: (Scalars['bigint'] | null),deaths?: (Scalars['bigint'] | null),headshot_percentage?: (Scalars['float8'] | null),headshots?: (Scalars['bigint'] | null),kills?: (Scalars['bigint'] | null),player_steam_id?: (Scalars['bigint'] | null),season_id?: (Scalars['uuid'] | null)} - - -/** aggregate sum on columns */ -export interface player_season_stats_sum_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kills?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "player_season_stats" */ -export interface player_season_stats_sum_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kills?: (order_by | null),player_steam_id?: (order_by | null)} - -export interface player_season_stats_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (player_season_stats_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (player_season_stats_set_input | null), -/** filter the rows which have to be updated */ -where: player_season_stats_bool_exp} - - -/** aggregate var_pop on columns */ -export interface player_season_stats_var_pop_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kills?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "player_season_stats" */ -export interface player_season_stats_var_pop_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kills?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface player_season_stats_var_samp_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kills?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "player_season_stats" */ -export interface player_season_stats_var_samp_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kills?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface player_season_stats_variance_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kills?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "player_season_stats" */ -export interface player_season_stats_variance_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kills?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** columns and relationships of "player_stats" */ -export interface player_statsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kills?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "player_stats" */ -export interface player_stats_aggregateGenqlSelection{ - aggregate?: player_stats_aggregate_fieldsGenqlSelection - nodes?: player_statsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "player_stats" */ -export interface player_stats_aggregate_fieldsGenqlSelection{ - avg?: player_stats_avg_fieldsGenqlSelection - count?: { __args: {columns?: (player_stats_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: player_stats_max_fieldsGenqlSelection - min?: player_stats_min_fieldsGenqlSelection - stddev?: player_stats_stddev_fieldsGenqlSelection - stddev_pop?: player_stats_stddev_pop_fieldsGenqlSelection - stddev_samp?: player_stats_stddev_samp_fieldsGenqlSelection - sum?: player_stats_sum_fieldsGenqlSelection - var_pop?: player_stats_var_pop_fieldsGenqlSelection - var_samp?: player_stats_var_samp_fieldsGenqlSelection - variance?: player_stats_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface player_stats_avg_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kills?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "player_stats". All fields are combined with a logical 'AND'. */ -export interface player_stats_bool_exp {_and?: (player_stats_bool_exp[] | null),_not?: (player_stats_bool_exp | null),_or?: (player_stats_bool_exp[] | null),assists?: (bigint_comparison_exp | null),deaths?: (bigint_comparison_exp | null),headshot_percentage?: (float8_comparison_exp | null),headshots?: (bigint_comparison_exp | null),kills?: (bigint_comparison_exp | null),player?: (players_bool_exp | null),player_steam_id?: (bigint_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "player_stats" */ -export interface player_stats_inc_input {assists?: (Scalars['bigint'] | null),deaths?: (Scalars['bigint'] | null),headshot_percentage?: (Scalars['float8'] | null),headshots?: (Scalars['bigint'] | null),kills?: (Scalars['bigint'] | null),player_steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "player_stats" */ -export interface player_stats_insert_input {assists?: (Scalars['bigint'] | null),deaths?: (Scalars['bigint'] | null),headshot_percentage?: (Scalars['float8'] | null),headshots?: (Scalars['bigint'] | null),kills?: (Scalars['bigint'] | null),player?: (players_obj_rel_insert_input | null),player_steam_id?: (Scalars['bigint'] | null)} - - -/** aggregate max on columns */ -export interface player_stats_max_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kills?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface player_stats_min_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kills?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "player_stats" */ -export interface player_stats_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: player_statsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "player_stats" */ -export interface player_stats_obj_rel_insert_input {data: player_stats_insert_input, -/** upsert condition */ -on_conflict?: (player_stats_on_conflict | null)} - - -/** on_conflict condition type for table "player_stats" */ -export interface player_stats_on_conflict {constraint: player_stats_constraint,update_columns?: player_stats_update_column[],where?: (player_stats_bool_exp | null)} - - -/** Ordering options when selecting data from "player_stats". */ -export interface player_stats_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kills?: (order_by | null),player?: (players_order_by | null),player_steam_id?: (order_by | null)} - - -/** primary key columns input for table: player_stats */ -export interface player_stats_pk_columns_input {player_steam_id: Scalars['bigint']} - - -/** input type for updating data in table "player_stats" */ -export interface player_stats_set_input {assists?: (Scalars['bigint'] | null),deaths?: (Scalars['bigint'] | null),headshot_percentage?: (Scalars['float8'] | null),headshots?: (Scalars['bigint'] | null),kills?: (Scalars['bigint'] | null),player_steam_id?: (Scalars['bigint'] | null)} - - -/** aggregate stddev on columns */ -export interface player_stats_stddev_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kills?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface player_stats_stddev_pop_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kills?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface player_stats_stddev_samp_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kills?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "player_stats" */ -export interface player_stats_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: player_stats_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface player_stats_stream_cursor_value_input {assists?: (Scalars['bigint'] | null),deaths?: (Scalars['bigint'] | null),headshot_percentage?: (Scalars['float8'] | null),headshots?: (Scalars['bigint'] | null),kills?: (Scalars['bigint'] | null),player_steam_id?: (Scalars['bigint'] | null)} - - -/** aggregate sum on columns */ -export interface player_stats_sum_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kills?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface player_stats_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (player_stats_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (player_stats_set_input | null), -/** filter the rows which have to be updated */ -where: player_stats_bool_exp} - - -/** aggregate var_pop on columns */ -export interface player_stats_var_pop_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kills?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface player_stats_var_samp_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kills?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface player_stats_variance_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kills?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "player_steam_bot_friend" */ -export interface player_steam_bot_friendGenqlSelection{ - bot_steam_account_id?: boolean | number - bot_steamid64?: boolean | number - created_at?: boolean | number - friended_at?: boolean | number - last_presence_state?: { __args: { - /** JSON select path */ - path?: (Scalars['String'] | null)} } | boolean | number - /** An object relationship */ - player?: playersGenqlSelection - status?: boolean | number - steam_id?: boolean | number - updated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "player_steam_bot_friend" */ -export interface player_steam_bot_friend_aggregateGenqlSelection{ - aggregate?: player_steam_bot_friend_aggregate_fieldsGenqlSelection - nodes?: player_steam_bot_friendGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "player_steam_bot_friend" */ -export interface player_steam_bot_friend_aggregate_fieldsGenqlSelection{ - avg?: player_steam_bot_friend_avg_fieldsGenqlSelection - count?: { __args: {columns?: (player_steam_bot_friend_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: player_steam_bot_friend_max_fieldsGenqlSelection - min?: player_steam_bot_friend_min_fieldsGenqlSelection - stddev?: player_steam_bot_friend_stddev_fieldsGenqlSelection - stddev_pop?: player_steam_bot_friend_stddev_pop_fieldsGenqlSelection - stddev_samp?: player_steam_bot_friend_stddev_samp_fieldsGenqlSelection - sum?: player_steam_bot_friend_sum_fieldsGenqlSelection - var_pop?: player_steam_bot_friend_var_pop_fieldsGenqlSelection - var_samp?: player_steam_bot_friend_var_samp_fieldsGenqlSelection - variance?: player_steam_bot_friend_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** append existing jsonb value of filtered columns with new jsonb value */ -export interface player_steam_bot_friend_append_input {last_presence_state?: (Scalars['jsonb'] | null)} - - -/** aggregate avg on columns */ -export interface player_steam_bot_friend_avg_fieldsGenqlSelection{ - bot_steamid64?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "player_steam_bot_friend". All fields are combined with a logical 'AND'. */ -export interface player_steam_bot_friend_bool_exp {_and?: (player_steam_bot_friend_bool_exp[] | null),_not?: (player_steam_bot_friend_bool_exp | null),_or?: (player_steam_bot_friend_bool_exp[] | null),bot_steam_account_id?: (uuid_comparison_exp | null),bot_steamid64?: (bigint_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),friended_at?: (timestamptz_comparison_exp | null),last_presence_state?: (jsonb_comparison_exp | null),player?: (players_bool_exp | null),status?: (String_comparison_exp | null),steam_id?: (bigint_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 player_steam_bot_friend_delete_at_path_input {last_presence_state?: (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 player_steam_bot_friend_delete_elem_input {last_presence_state?: (Scalars['Int'] | null)} - - -/** delete key/value pair or string element. key/value pairs are matched based on their key value */ -export interface player_steam_bot_friend_delete_key_input {last_presence_state?: (Scalars['String'] | null)} - - -/** input type for incrementing numeric columns in table "player_steam_bot_friend" */ -export interface player_steam_bot_friend_inc_input {bot_steamid64?: (Scalars['bigint'] | null),steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "player_steam_bot_friend" */ -export interface player_steam_bot_friend_insert_input {bot_steam_account_id?: (Scalars['uuid'] | null),bot_steamid64?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),friended_at?: (Scalars['timestamptz'] | null),last_presence_state?: (Scalars['jsonb'] | null),player?: (players_obj_rel_insert_input | null),status?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null),updated_at?: (Scalars['timestamptz'] | null)} - - -/** aggregate max on columns */ -export interface player_steam_bot_friend_max_fieldsGenqlSelection{ - bot_steam_account_id?: boolean | number - bot_steamid64?: boolean | number - created_at?: boolean | number - friended_at?: boolean | number - status?: boolean | number - steam_id?: boolean | number - updated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface player_steam_bot_friend_min_fieldsGenqlSelection{ - bot_steam_account_id?: boolean | number - bot_steamid64?: boolean | number - created_at?: boolean | number - friended_at?: boolean | number - status?: boolean | number - steam_id?: boolean | number - updated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "player_steam_bot_friend" */ -export interface player_steam_bot_friend_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: player_steam_bot_friendGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "player_steam_bot_friend" */ -export interface player_steam_bot_friend_on_conflict {constraint: player_steam_bot_friend_constraint,update_columns?: player_steam_bot_friend_update_column[],where?: (player_steam_bot_friend_bool_exp | null)} - - -/** Ordering options when selecting data from "player_steam_bot_friend". */ -export interface player_steam_bot_friend_order_by {bot_steam_account_id?: (order_by | null),bot_steamid64?: (order_by | null),created_at?: (order_by | null),friended_at?: (order_by | null),last_presence_state?: (order_by | null),player?: (players_order_by | null),status?: (order_by | null),steam_id?: (order_by | null),updated_at?: (order_by | null)} - - -/** primary key columns input for table: player_steam_bot_friend */ -export interface player_steam_bot_friend_pk_columns_input {steam_id: Scalars['bigint']} - - -/** prepend existing jsonb value of filtered columns with new jsonb value */ -export interface player_steam_bot_friend_prepend_input {last_presence_state?: (Scalars['jsonb'] | null)} - - -/** input type for updating data in table "player_steam_bot_friend" */ -export interface player_steam_bot_friend_set_input {bot_steam_account_id?: (Scalars['uuid'] | null),bot_steamid64?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),friended_at?: (Scalars['timestamptz'] | null),last_presence_state?: (Scalars['jsonb'] | null),status?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null),updated_at?: (Scalars['timestamptz'] | null)} - - -/** aggregate stddev on columns */ -export interface player_steam_bot_friend_stddev_fieldsGenqlSelection{ - bot_steamid64?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface player_steam_bot_friend_stddev_pop_fieldsGenqlSelection{ - bot_steamid64?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface player_steam_bot_friend_stddev_samp_fieldsGenqlSelection{ - bot_steamid64?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "player_steam_bot_friend" */ -export interface player_steam_bot_friend_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: player_steam_bot_friend_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface player_steam_bot_friend_stream_cursor_value_input {bot_steam_account_id?: (Scalars['uuid'] | null),bot_steamid64?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),friended_at?: (Scalars['timestamptz'] | null),last_presence_state?: (Scalars['jsonb'] | null),status?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null),updated_at?: (Scalars['timestamptz'] | null)} - - -/** aggregate sum on columns */ -export interface player_steam_bot_friend_sum_fieldsGenqlSelection{ - bot_steamid64?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface player_steam_bot_friend_updates { -/** append existing jsonb value of filtered columns with new jsonb value */ -_append?: (player_steam_bot_friend_append_input | null), -/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ -_delete_at_path?: (player_steam_bot_friend_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?: (player_steam_bot_friend_delete_elem_input | null), -/** delete key/value pair or string element. key/value pairs are matched based on their key value */ -_delete_key?: (player_steam_bot_friend_delete_key_input | null), -/** increments the numeric columns with given value of the filtered values */ -_inc?: (player_steam_bot_friend_inc_input | null), -/** prepend existing jsonb value of filtered columns with new jsonb value */ -_prepend?: (player_steam_bot_friend_prepend_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (player_steam_bot_friend_set_input | null), -/** filter the rows which have to be updated */ -where: player_steam_bot_friend_bool_exp} - - -/** aggregate var_pop on columns */ -export interface player_steam_bot_friend_var_pop_fieldsGenqlSelection{ - bot_steamid64?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface player_steam_bot_friend_var_samp_fieldsGenqlSelection{ - bot_steamid64?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface player_steam_bot_friend_variance_fieldsGenqlSelection{ - bot_steamid64?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "player_steam_match_auth" */ -export interface player_steam_match_authGenqlSelection{ - auth_code?: boolean | number - created_at?: boolean | number - last_error?: boolean | number - last_known_share_code?: boolean | number - last_polled_at?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - steam_id?: boolean | number - updated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "player_steam_match_auth" */ -export interface player_steam_match_auth_aggregateGenqlSelection{ - aggregate?: player_steam_match_auth_aggregate_fieldsGenqlSelection - nodes?: player_steam_match_authGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "player_steam_match_auth" */ -export interface player_steam_match_auth_aggregate_fieldsGenqlSelection{ - avg?: player_steam_match_auth_avg_fieldsGenqlSelection - count?: { __args: {columns?: (player_steam_match_auth_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: player_steam_match_auth_max_fieldsGenqlSelection - min?: player_steam_match_auth_min_fieldsGenqlSelection - stddev?: player_steam_match_auth_stddev_fieldsGenqlSelection - stddev_pop?: player_steam_match_auth_stddev_pop_fieldsGenqlSelection - stddev_samp?: player_steam_match_auth_stddev_samp_fieldsGenqlSelection - sum?: player_steam_match_auth_sum_fieldsGenqlSelection - var_pop?: player_steam_match_auth_var_pop_fieldsGenqlSelection - var_samp?: player_steam_match_auth_var_samp_fieldsGenqlSelection - variance?: player_steam_match_auth_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface player_steam_match_auth_avg_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "player_steam_match_auth". All fields are combined with a logical 'AND'. */ -export interface player_steam_match_auth_bool_exp {_and?: (player_steam_match_auth_bool_exp[] | null),_not?: (player_steam_match_auth_bool_exp | null),_or?: (player_steam_match_auth_bool_exp[] | null),auth_code?: (String_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),last_error?: (String_comparison_exp | null),last_known_share_code?: (String_comparison_exp | null),last_polled_at?: (timestamptz_comparison_exp | null),player?: (players_bool_exp | null),steam_id?: (bigint_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "player_steam_match_auth" */ -export interface player_steam_match_auth_inc_input {steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "player_steam_match_auth" */ -export interface player_steam_match_auth_insert_input {auth_code?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),last_error?: (Scalars['String'] | null),last_known_share_code?: (Scalars['String'] | null),last_polled_at?: (Scalars['timestamptz'] | null),player?: (players_obj_rel_insert_input | null),steam_id?: (Scalars['bigint'] | null),updated_at?: (Scalars['timestamptz'] | null)} - - -/** aggregate max on columns */ -export interface player_steam_match_auth_max_fieldsGenqlSelection{ - auth_code?: boolean | number - created_at?: boolean | number - last_error?: boolean | number - last_known_share_code?: boolean | number - last_polled_at?: boolean | number - steam_id?: boolean | number - updated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface player_steam_match_auth_min_fieldsGenqlSelection{ - auth_code?: boolean | number - created_at?: boolean | number - last_error?: boolean | number - last_known_share_code?: boolean | number - last_polled_at?: boolean | number - steam_id?: boolean | number - updated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "player_steam_match_auth" */ -export interface player_steam_match_auth_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: player_steam_match_authGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "player_steam_match_auth" */ -export interface player_steam_match_auth_on_conflict {constraint: player_steam_match_auth_constraint,update_columns?: player_steam_match_auth_update_column[],where?: (player_steam_match_auth_bool_exp | null)} - - -/** Ordering options when selecting data from "player_steam_match_auth". */ -export interface player_steam_match_auth_order_by {auth_code?: (order_by | null),created_at?: (order_by | null),last_error?: (order_by | null),last_known_share_code?: (order_by | null),last_polled_at?: (order_by | null),player?: (players_order_by | null),steam_id?: (order_by | null),updated_at?: (order_by | null)} - - -/** primary key columns input for table: player_steam_match_auth */ -export interface player_steam_match_auth_pk_columns_input {steam_id: Scalars['bigint']} - - -/** input type for updating data in table "player_steam_match_auth" */ -export interface player_steam_match_auth_set_input {auth_code?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),last_error?: (Scalars['String'] | null),last_known_share_code?: (Scalars['String'] | null),last_polled_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),updated_at?: (Scalars['timestamptz'] | null)} - - -/** aggregate stddev on columns */ -export interface player_steam_match_auth_stddev_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface player_steam_match_auth_stddev_pop_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface player_steam_match_auth_stddev_samp_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "player_steam_match_auth" */ -export interface player_steam_match_auth_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: player_steam_match_auth_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface player_steam_match_auth_stream_cursor_value_input {auth_code?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),last_error?: (Scalars['String'] | null),last_known_share_code?: (Scalars['String'] | null),last_polled_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),updated_at?: (Scalars['timestamptz'] | null)} - - -/** aggregate sum on columns */ -export interface player_steam_match_auth_sum_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface player_steam_match_auth_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (player_steam_match_auth_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (player_steam_match_auth_set_input | null), -/** filter the rows which have to be updated */ -where: player_steam_match_auth_bool_exp} - - -/** aggregate var_pop on columns */ -export interface player_steam_match_auth_var_pop_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface player_steam_match_auth_var_samp_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface player_steam_match_auth_variance_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "player_unused_utility" */ -export interface player_unused_utilityGenqlSelection{ - deleted_at?: boolean | number - /** An object relationship */ - match?: matchesGenqlSelection - match_id?: boolean | number - /** An object relationship */ - match_map?: match_mapsGenqlSelection - match_map_id?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - player_steam_id?: boolean | number - round?: boolean | number - unused?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "player_unused_utility" */ -export interface player_unused_utility_aggregateGenqlSelection{ - aggregate?: player_unused_utility_aggregate_fieldsGenqlSelection - nodes?: player_unused_utilityGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface player_unused_utility_aggregate_bool_exp {count?: (player_unused_utility_aggregate_bool_exp_count | null)} - -export interface player_unused_utility_aggregate_bool_exp_count {arguments?: (player_unused_utility_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (player_unused_utility_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "player_unused_utility" */ -export interface player_unused_utility_aggregate_fieldsGenqlSelection{ - avg?: player_unused_utility_avg_fieldsGenqlSelection - count?: { __args: {columns?: (player_unused_utility_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: player_unused_utility_max_fieldsGenqlSelection - min?: player_unused_utility_min_fieldsGenqlSelection - stddev?: player_unused_utility_stddev_fieldsGenqlSelection - stddev_pop?: player_unused_utility_stddev_pop_fieldsGenqlSelection - stddev_samp?: player_unused_utility_stddev_samp_fieldsGenqlSelection - sum?: player_unused_utility_sum_fieldsGenqlSelection - var_pop?: player_unused_utility_var_pop_fieldsGenqlSelection - var_samp?: player_unused_utility_var_samp_fieldsGenqlSelection - variance?: player_unused_utility_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "player_unused_utility" */ -export interface player_unused_utility_aggregate_order_by {avg?: (player_unused_utility_avg_order_by | null),count?: (order_by | null),max?: (player_unused_utility_max_order_by | null),min?: (player_unused_utility_min_order_by | null),stddev?: (player_unused_utility_stddev_order_by | null),stddev_pop?: (player_unused_utility_stddev_pop_order_by | null),stddev_samp?: (player_unused_utility_stddev_samp_order_by | null),sum?: (player_unused_utility_sum_order_by | null),var_pop?: (player_unused_utility_var_pop_order_by | null),var_samp?: (player_unused_utility_var_samp_order_by | null),variance?: (player_unused_utility_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "player_unused_utility" */ -export interface player_unused_utility_arr_rel_insert_input {data: player_unused_utility_insert_input[], -/** upsert condition */ -on_conflict?: (player_unused_utility_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface player_unused_utility_avg_fieldsGenqlSelection{ - player_steam_id?: boolean | number - round?: boolean | number - unused?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "player_unused_utility" */ -export interface player_unused_utility_avg_order_by {player_steam_id?: (order_by | null),round?: (order_by | null),unused?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "player_unused_utility". All fields are combined with a logical 'AND'. */ -export interface player_unused_utility_bool_exp {_and?: (player_unused_utility_bool_exp[] | null),_not?: (player_unused_utility_bool_exp | null),_or?: (player_unused_utility_bool_exp[] | null),deleted_at?: (timestamptz_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_id?: (uuid_comparison_exp | null),player?: (players_bool_exp | null),player_steam_id?: (bigint_comparison_exp | null),round?: (Int_comparison_exp | null),unused?: (Int_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "player_unused_utility" */ -export interface player_unused_utility_inc_input {player_steam_id?: (Scalars['bigint'] | null),round?: (Scalars['Int'] | null),unused?: (Scalars['Int'] | null)} - - -/** input type for inserting data into table "player_unused_utility" */ -export interface player_unused_utility_insert_input {deleted_at?: (Scalars['timestamptz'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_map?: (match_maps_obj_rel_insert_input | null),match_map_id?: (Scalars['uuid'] | null),player?: (players_obj_rel_insert_input | null),player_steam_id?: (Scalars['bigint'] | null),round?: (Scalars['Int'] | null),unused?: (Scalars['Int'] | null)} - - -/** aggregate max on columns */ -export interface player_unused_utility_max_fieldsGenqlSelection{ - deleted_at?: boolean | number - match_id?: boolean | number - match_map_id?: boolean | number - player_steam_id?: boolean | number - round?: boolean | number - unused?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "player_unused_utility" */ -export interface player_unused_utility_max_order_by {deleted_at?: (order_by | null),match_id?: (order_by | null),match_map_id?: (order_by | null),player_steam_id?: (order_by | null),round?: (order_by | null),unused?: (order_by | null)} - - -/** aggregate min on columns */ -export interface player_unused_utility_min_fieldsGenqlSelection{ - deleted_at?: boolean | number - match_id?: boolean | number - match_map_id?: boolean | number - player_steam_id?: boolean | number - round?: boolean | number - unused?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "player_unused_utility" */ -export interface player_unused_utility_min_order_by {deleted_at?: (order_by | null),match_id?: (order_by | null),match_map_id?: (order_by | null),player_steam_id?: (order_by | null),round?: (order_by | null),unused?: (order_by | null)} - - -/** response of any mutation on the table "player_unused_utility" */ -export interface player_unused_utility_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: player_unused_utilityGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "player_unused_utility" */ -export interface player_unused_utility_on_conflict {constraint: player_unused_utility_constraint,update_columns?: player_unused_utility_update_column[],where?: (player_unused_utility_bool_exp | null)} - - -/** Ordering options when selecting data from "player_unused_utility". */ -export interface player_unused_utility_order_by {deleted_at?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_id?: (order_by | null),player?: (players_order_by | null),player_steam_id?: (order_by | null),round?: (order_by | null),unused?: (order_by | null)} - - -/** primary key columns input for table: player_unused_utility */ -export interface player_unused_utility_pk_columns_input {match_map_id: Scalars['uuid'],player_steam_id: Scalars['bigint']} - - -/** input type for updating data in table "player_unused_utility" */ -export interface player_unused_utility_set_input {deleted_at?: (Scalars['timestamptz'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),player_steam_id?: (Scalars['bigint'] | null),round?: (Scalars['Int'] | null),unused?: (Scalars['Int'] | null)} - - -/** aggregate stddev on columns */ -export interface player_unused_utility_stddev_fieldsGenqlSelection{ - player_steam_id?: boolean | number - round?: boolean | number - unused?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "player_unused_utility" */ -export interface player_unused_utility_stddev_order_by {player_steam_id?: (order_by | null),round?: (order_by | null),unused?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface player_unused_utility_stddev_pop_fieldsGenqlSelection{ - player_steam_id?: boolean | number - round?: boolean | number - unused?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "player_unused_utility" */ -export interface player_unused_utility_stddev_pop_order_by {player_steam_id?: (order_by | null),round?: (order_by | null),unused?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface player_unused_utility_stddev_samp_fieldsGenqlSelection{ - player_steam_id?: boolean | number - round?: boolean | number - unused?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "player_unused_utility" */ -export interface player_unused_utility_stddev_samp_order_by {player_steam_id?: (order_by | null),round?: (order_by | null),unused?: (order_by | null)} - - -/** Streaming cursor of the table "player_unused_utility" */ -export interface player_unused_utility_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: player_unused_utility_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface player_unused_utility_stream_cursor_value_input {deleted_at?: (Scalars['timestamptz'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),player_steam_id?: (Scalars['bigint'] | null),round?: (Scalars['Int'] | null),unused?: (Scalars['Int'] | null)} - - -/** aggregate sum on columns */ -export interface player_unused_utility_sum_fieldsGenqlSelection{ - player_steam_id?: boolean | number - round?: boolean | number - unused?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "player_unused_utility" */ -export interface player_unused_utility_sum_order_by {player_steam_id?: (order_by | null),round?: (order_by | null),unused?: (order_by | null)} - -export interface player_unused_utility_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (player_unused_utility_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (player_unused_utility_set_input | null), -/** filter the rows which have to be updated */ -where: player_unused_utility_bool_exp} - - -/** aggregate var_pop on columns */ -export interface player_unused_utility_var_pop_fieldsGenqlSelection{ - player_steam_id?: boolean | number - round?: boolean | number - unused?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "player_unused_utility" */ -export interface player_unused_utility_var_pop_order_by {player_steam_id?: (order_by | null),round?: (order_by | null),unused?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface player_unused_utility_var_samp_fieldsGenqlSelection{ - player_steam_id?: boolean | number - round?: boolean | number - unused?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "player_unused_utility" */ -export interface player_unused_utility_var_samp_order_by {player_steam_id?: (order_by | null),round?: (order_by | null),unused?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface player_unused_utility_variance_fieldsGenqlSelection{ - player_steam_id?: boolean | number - round?: boolean | number - unused?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "player_unused_utility" */ -export interface player_unused_utility_variance_order_by {player_steam_id?: (order_by | null),round?: (order_by | null),unused?: (order_by | null)} - - -/** columns and relationships of "player_utility" */ -export interface player_utilityGenqlSelection{ - attacker_location_coordinates?: boolean | number - attacker_steam_id?: boolean | number - deleted_at?: boolean | number - /** An object relationship */ - match?: matchesGenqlSelection - match_id?: boolean | number - /** An object relationship */ - match_map?: match_mapsGenqlSelection - match_map_id?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - round?: boolean | number - time?: boolean | number - type?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "player_utility" */ -export interface player_utility_aggregateGenqlSelection{ - aggregate?: player_utility_aggregate_fieldsGenqlSelection - nodes?: player_utilityGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface player_utility_aggregate_bool_exp {count?: (player_utility_aggregate_bool_exp_count | null)} - -export interface player_utility_aggregate_bool_exp_count {arguments?: (player_utility_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (player_utility_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "player_utility" */ -export interface player_utility_aggregate_fieldsGenqlSelection{ - avg?: player_utility_avg_fieldsGenqlSelection - count?: { __args: {columns?: (player_utility_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: player_utility_max_fieldsGenqlSelection - min?: player_utility_min_fieldsGenqlSelection - stddev?: player_utility_stddev_fieldsGenqlSelection - stddev_pop?: player_utility_stddev_pop_fieldsGenqlSelection - stddev_samp?: player_utility_stddev_samp_fieldsGenqlSelection - sum?: player_utility_sum_fieldsGenqlSelection - var_pop?: player_utility_var_pop_fieldsGenqlSelection - var_samp?: player_utility_var_samp_fieldsGenqlSelection - variance?: player_utility_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "player_utility" */ -export interface player_utility_aggregate_order_by {avg?: (player_utility_avg_order_by | null),count?: (order_by | null),max?: (player_utility_max_order_by | null),min?: (player_utility_min_order_by | null),stddev?: (player_utility_stddev_order_by | null),stddev_pop?: (player_utility_stddev_pop_order_by | null),stddev_samp?: (player_utility_stddev_samp_order_by | null),sum?: (player_utility_sum_order_by | null),var_pop?: (player_utility_var_pop_order_by | null),var_samp?: (player_utility_var_samp_order_by | null),variance?: (player_utility_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "player_utility" */ -export interface player_utility_arr_rel_insert_input {data: player_utility_insert_input[], -/** upsert condition */ -on_conflict?: (player_utility_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface player_utility_avg_fieldsGenqlSelection{ - attacker_steam_id?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "player_utility" */ -export interface player_utility_avg_order_by {attacker_steam_id?: (order_by | null),round?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "player_utility". All fields are combined with a logical 'AND'. */ -export interface player_utility_bool_exp {_and?: (player_utility_bool_exp[] | null),_not?: (player_utility_bool_exp | null),_or?: (player_utility_bool_exp[] | null),attacker_location_coordinates?: (String_comparison_exp | null),attacker_steam_id?: (bigint_comparison_exp | null),deleted_at?: (timestamptz_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_id?: (uuid_comparison_exp | null),player?: (players_bool_exp | null),round?: (Int_comparison_exp | null),time?: (timestamptz_comparison_exp | null),type?: (e_utility_types_enum_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "player_utility" */ -export interface player_utility_inc_input {attacker_steam_id?: (Scalars['bigint'] | null),round?: (Scalars['Int'] | null)} - - -/** input type for inserting data into table "player_utility" */ -export interface player_utility_insert_input {attacker_location_coordinates?: (Scalars['String'] | null),attacker_steam_id?: (Scalars['bigint'] | null),deleted_at?: (Scalars['timestamptz'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_map?: (match_maps_obj_rel_insert_input | null),match_map_id?: (Scalars['uuid'] | null),player?: (players_obj_rel_insert_input | null),round?: (Scalars['Int'] | null),time?: (Scalars['timestamptz'] | null),type?: (e_utility_types_enum | null)} - - -/** aggregate max on columns */ -export interface player_utility_max_fieldsGenqlSelection{ - attacker_location_coordinates?: boolean | number - attacker_steam_id?: boolean | number - deleted_at?: boolean | number - match_id?: boolean | number - match_map_id?: boolean | number - round?: boolean | number - time?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "player_utility" */ -export interface player_utility_max_order_by {attacker_location_coordinates?: (order_by | null),attacker_steam_id?: (order_by | null),deleted_at?: (order_by | null),match_id?: (order_by | null),match_map_id?: (order_by | null),round?: (order_by | null),time?: (order_by | null)} - - -/** aggregate min on columns */ -export interface player_utility_min_fieldsGenqlSelection{ - attacker_location_coordinates?: boolean | number - attacker_steam_id?: boolean | number - deleted_at?: boolean | number - match_id?: boolean | number - match_map_id?: boolean | number - round?: boolean | number - time?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "player_utility" */ -export interface player_utility_min_order_by {attacker_location_coordinates?: (order_by | null),attacker_steam_id?: (order_by | null),deleted_at?: (order_by | null),match_id?: (order_by | null),match_map_id?: (order_by | null),round?: (order_by | null),time?: (order_by | null)} - - -/** response of any mutation on the table "player_utility" */ -export interface player_utility_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: player_utilityGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "player_utility" */ -export interface player_utility_on_conflict {constraint: player_utility_constraint,update_columns?: player_utility_update_column[],where?: (player_utility_bool_exp | null)} - - -/** Ordering options when selecting data from "player_utility". */ -export interface player_utility_order_by {attacker_location_coordinates?: (order_by | null),attacker_steam_id?: (order_by | null),deleted_at?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_id?: (order_by | null),player?: (players_order_by | null),round?: (order_by | null),time?: (order_by | null),type?: (order_by | null)} - - -/** primary key columns input for table: player_utility */ -export interface player_utility_pk_columns_input {attacker_steam_id: Scalars['bigint'],match_map_id: Scalars['uuid'],time: Scalars['timestamptz']} - - -/** input type for updating data in table "player_utility" */ -export interface player_utility_set_input {attacker_location_coordinates?: (Scalars['String'] | null),attacker_steam_id?: (Scalars['bigint'] | null),deleted_at?: (Scalars['timestamptz'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),round?: (Scalars['Int'] | null),time?: (Scalars['timestamptz'] | null),type?: (e_utility_types_enum | null)} - - -/** aggregate stddev on columns */ -export interface player_utility_stddev_fieldsGenqlSelection{ - attacker_steam_id?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "player_utility" */ -export interface player_utility_stddev_order_by {attacker_steam_id?: (order_by | null),round?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface player_utility_stddev_pop_fieldsGenqlSelection{ - attacker_steam_id?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "player_utility" */ -export interface player_utility_stddev_pop_order_by {attacker_steam_id?: (order_by | null),round?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface player_utility_stddev_samp_fieldsGenqlSelection{ - attacker_steam_id?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "player_utility" */ -export interface player_utility_stddev_samp_order_by {attacker_steam_id?: (order_by | null),round?: (order_by | null)} - - -/** Streaming cursor of the table "player_utility" */ -export interface player_utility_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: player_utility_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface player_utility_stream_cursor_value_input {attacker_location_coordinates?: (Scalars['String'] | null),attacker_steam_id?: (Scalars['bigint'] | null),deleted_at?: (Scalars['timestamptz'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),round?: (Scalars['Int'] | null),time?: (Scalars['timestamptz'] | null),type?: (e_utility_types_enum | null)} - - -/** aggregate sum on columns */ -export interface player_utility_sum_fieldsGenqlSelection{ - attacker_steam_id?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "player_utility" */ -export interface player_utility_sum_order_by {attacker_steam_id?: (order_by | null),round?: (order_by | null)} - -export interface player_utility_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (player_utility_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (player_utility_set_input | null), -/** filter the rows which have to be updated */ -where: player_utility_bool_exp} - - -/** aggregate var_pop on columns */ -export interface player_utility_var_pop_fieldsGenqlSelection{ - attacker_steam_id?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "player_utility" */ -export interface player_utility_var_pop_order_by {attacker_steam_id?: (order_by | null),round?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface player_utility_var_samp_fieldsGenqlSelection{ - attacker_steam_id?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "player_utility" */ -export interface player_utility_var_samp_order_by {attacker_steam_id?: (order_by | null),round?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface player_utility_variance_fieldsGenqlSelection{ - attacker_steam_id?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "player_utility" */ -export interface player_utility_variance_order_by {attacker_steam_id?: (order_by | null),round?: (order_by | null)} - - -/** columns and relationships of "player_weapon_stats_v" */ -export interface player_weapon_stats_vGenqlSelection{ - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - hits?: boolean | number - hits_spotted?: boolean | number - match_id?: boolean | number - shots?: boolean | number - shots_spotted?: boolean | number - steam_id?: boolean | number - weapon_class?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "player_weapon_stats_v" */ -export interface player_weapon_stats_v_aggregateGenqlSelection{ - aggregate?: player_weapon_stats_v_aggregate_fieldsGenqlSelection - nodes?: player_weapon_stats_vGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface player_weapon_stats_v_aggregate_bool_exp {count?: (player_weapon_stats_v_aggregate_bool_exp_count | null)} - -export interface player_weapon_stats_v_aggregate_bool_exp_count {arguments?: (player_weapon_stats_v_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (player_weapon_stats_v_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "player_weapon_stats_v" */ -export interface player_weapon_stats_v_aggregate_fieldsGenqlSelection{ - avg?: player_weapon_stats_v_avg_fieldsGenqlSelection - count?: { __args: {columns?: (player_weapon_stats_v_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: player_weapon_stats_v_max_fieldsGenqlSelection - min?: player_weapon_stats_v_min_fieldsGenqlSelection - stddev?: player_weapon_stats_v_stddev_fieldsGenqlSelection - stddev_pop?: player_weapon_stats_v_stddev_pop_fieldsGenqlSelection - stddev_samp?: player_weapon_stats_v_stddev_samp_fieldsGenqlSelection - sum?: player_weapon_stats_v_sum_fieldsGenqlSelection - var_pop?: player_weapon_stats_v_var_pop_fieldsGenqlSelection - var_samp?: player_weapon_stats_v_var_samp_fieldsGenqlSelection - variance?: player_weapon_stats_v_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "player_weapon_stats_v" */ -export interface player_weapon_stats_v_aggregate_order_by {avg?: (player_weapon_stats_v_avg_order_by | null),count?: (order_by | null),max?: (player_weapon_stats_v_max_order_by | null),min?: (player_weapon_stats_v_min_order_by | null),stddev?: (player_weapon_stats_v_stddev_order_by | null),stddev_pop?: (player_weapon_stats_v_stddev_pop_order_by | null),stddev_samp?: (player_weapon_stats_v_stddev_samp_order_by | null),sum?: (player_weapon_stats_v_sum_order_by | null),var_pop?: (player_weapon_stats_v_var_pop_order_by | null),var_samp?: (player_weapon_stats_v_var_samp_order_by | null),variance?: (player_weapon_stats_v_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "player_weapon_stats_v" */ -export interface player_weapon_stats_v_arr_rel_insert_input {data: player_weapon_stats_v_insert_input[]} - - -/** aggregate avg on columns */ -export interface player_weapon_stats_v_avg_fieldsGenqlSelection{ - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - hits?: boolean | number - hits_spotted?: boolean | number - shots?: boolean | number - shots_spotted?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "player_weapon_stats_v" */ -export interface player_weapon_stats_v_avg_order_by {first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),hits?: (order_by | null),hits_spotted?: (order_by | null),shots?: (order_by | null),shots_spotted?: (order_by | null),steam_id?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "player_weapon_stats_v". All fields are combined with a logical 'AND'. */ -export interface player_weapon_stats_v_bool_exp {_and?: (player_weapon_stats_v_bool_exp[] | null),_not?: (player_weapon_stats_v_bool_exp | null),_or?: (player_weapon_stats_v_bool_exp[] | null),first_bullet_hits?: (Int_comparison_exp | null),first_bullet_shots?: (Int_comparison_exp | null),hits?: (Int_comparison_exp | null),hits_spotted?: (Int_comparison_exp | null),match_id?: (uuid_comparison_exp | null),shots?: (Int_comparison_exp | null),shots_spotted?: (Int_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),weapon_class?: (String_comparison_exp | null)} - - -/** input type for inserting data into table "player_weapon_stats_v" */ -export interface player_weapon_stats_v_insert_input {first_bullet_hits?: (Scalars['Int'] | null),first_bullet_shots?: (Scalars['Int'] | null),hits?: (Scalars['Int'] | null),hits_spotted?: (Scalars['Int'] | null),match_id?: (Scalars['uuid'] | null),shots?: (Scalars['Int'] | null),shots_spotted?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null),weapon_class?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface player_weapon_stats_v_max_fieldsGenqlSelection{ - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - hits?: boolean | number - hits_spotted?: boolean | number - match_id?: boolean | number - shots?: boolean | number - shots_spotted?: boolean | number - steam_id?: boolean | number - weapon_class?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "player_weapon_stats_v" */ -export interface player_weapon_stats_v_max_order_by {first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),hits?: (order_by | null),hits_spotted?: (order_by | null),match_id?: (order_by | null),shots?: (order_by | null),shots_spotted?: (order_by | null),steam_id?: (order_by | null),weapon_class?: (order_by | null)} - - -/** aggregate min on columns */ -export interface player_weapon_stats_v_min_fieldsGenqlSelection{ - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - hits?: boolean | number - hits_spotted?: boolean | number - match_id?: boolean | number - shots?: boolean | number - shots_spotted?: boolean | number - steam_id?: boolean | number - weapon_class?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "player_weapon_stats_v" */ -export interface player_weapon_stats_v_min_order_by {first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),hits?: (order_by | null),hits_spotted?: (order_by | null),match_id?: (order_by | null),shots?: (order_by | null),shots_spotted?: (order_by | null),steam_id?: (order_by | null),weapon_class?: (order_by | null)} - - -/** Ordering options when selecting data from "player_weapon_stats_v". */ -export interface player_weapon_stats_v_order_by {first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),hits?: (order_by | null),hits_spotted?: (order_by | null),match_id?: (order_by | null),shots?: (order_by | null),shots_spotted?: (order_by | null),steam_id?: (order_by | null),weapon_class?: (order_by | null)} - - -/** aggregate stddev on columns */ -export interface player_weapon_stats_v_stddev_fieldsGenqlSelection{ - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - hits?: boolean | number - hits_spotted?: boolean | number - shots?: boolean | number - shots_spotted?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "player_weapon_stats_v" */ -export interface player_weapon_stats_v_stddev_order_by {first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),hits?: (order_by | null),hits_spotted?: (order_by | null),shots?: (order_by | null),shots_spotted?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface player_weapon_stats_v_stddev_pop_fieldsGenqlSelection{ - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - hits?: boolean | number - hits_spotted?: boolean | number - shots?: boolean | number - shots_spotted?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "player_weapon_stats_v" */ -export interface player_weapon_stats_v_stddev_pop_order_by {first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),hits?: (order_by | null),hits_spotted?: (order_by | null),shots?: (order_by | null),shots_spotted?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface player_weapon_stats_v_stddev_samp_fieldsGenqlSelection{ - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - hits?: boolean | number - hits_spotted?: boolean | number - shots?: boolean | number - shots_spotted?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "player_weapon_stats_v" */ -export interface player_weapon_stats_v_stddev_samp_order_by {first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),hits?: (order_by | null),hits_spotted?: (order_by | null),shots?: (order_by | null),shots_spotted?: (order_by | null),steam_id?: (order_by | null)} - - -/** Streaming cursor of the table "player_weapon_stats_v" */ -export interface player_weapon_stats_v_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: player_weapon_stats_v_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface player_weapon_stats_v_stream_cursor_value_input {first_bullet_hits?: (Scalars['Int'] | null),first_bullet_shots?: (Scalars['Int'] | null),hits?: (Scalars['Int'] | null),hits_spotted?: (Scalars['Int'] | null),match_id?: (Scalars['uuid'] | null),shots?: (Scalars['Int'] | null),shots_spotted?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null),weapon_class?: (Scalars['String'] | null)} - - -/** aggregate sum on columns */ -export interface player_weapon_stats_v_sum_fieldsGenqlSelection{ - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - hits?: boolean | number - hits_spotted?: boolean | number - shots?: boolean | number - shots_spotted?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "player_weapon_stats_v" */ -export interface player_weapon_stats_v_sum_order_by {first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),hits?: (order_by | null),hits_spotted?: (order_by | null),shots?: (order_by | null),shots_spotted?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate var_pop on columns */ -export interface player_weapon_stats_v_var_pop_fieldsGenqlSelection{ - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - hits?: boolean | number - hits_spotted?: boolean | number - shots?: boolean | number - shots_spotted?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "player_weapon_stats_v" */ -export interface player_weapon_stats_v_var_pop_order_by {first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),hits?: (order_by | null),hits_spotted?: (order_by | null),shots?: (order_by | null),shots_spotted?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface player_weapon_stats_v_var_samp_fieldsGenqlSelection{ - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - hits?: boolean | number - hits_spotted?: boolean | number - shots?: boolean | number - shots_spotted?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "player_weapon_stats_v" */ -export interface player_weapon_stats_v_var_samp_order_by {first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),hits?: (order_by | null),hits_spotted?: (order_by | null),shots?: (order_by | null),shots_spotted?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface player_weapon_stats_v_variance_fieldsGenqlSelection{ - first_bullet_hits?: boolean | number - first_bullet_shots?: boolean | number - hits?: boolean | number - hits_spotted?: boolean | number - shots?: boolean | number - shots_spotted?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "player_weapon_stats_v" */ -export interface player_weapon_stats_v_variance_order_by {first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),hits?: (order_by | null),hits_spotted?: (order_by | null),shots?: (order_by | null),shots_spotted?: (order_by | null),steam_id?: (order_by | null)} - - -/** columns and relationships of "players" */ -export interface playersGenqlSelection{ - /** An array relationship */ - abandoned_matches?: (abandoned_matchesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (abandoned_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?: (abandoned_matches_order_by[] | null), - /** filter the rows returned */ - where?: (abandoned_matches_bool_exp | null)} }) - /** An aggregate relationship */ - abandoned_matches_aggregate?: (abandoned_matches_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (abandoned_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?: (abandoned_matches_order_by[] | null), - /** filter the rows returned */ - where?: (abandoned_matches_bool_exp | null)} }) - /** An array relationship */ - aim_weapon_stats?: (player_aim_weapon_statsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_aim_weapon_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?: (player_aim_weapon_stats_order_by[] | null), - /** filter the rows returned */ - where?: (player_aim_weapon_stats_bool_exp | null)} }) - /** An aggregate relationship */ - aim_weapon_stats_aggregate?: (player_aim_weapon_stats_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_aim_weapon_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?: (player_aim_weapon_stats_order_by[] | null), - /** filter the rows returned */ - where?: (player_aim_weapon_stats_bool_exp | null)} }) - /** An array relationship */ - assists?: (player_assistsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_assists_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_assists_order_by[] | null), - /** filter the rows returned */ - where?: (player_assists_bool_exp | null)} }) - /** An aggregate relationship */ - assists_aggregate?: (player_assists_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_assists_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_assists_order_by[] | null), - /** filter the rows returned */ - where?: (player_assists_bool_exp | null)} }) - /** An array relationship */ - assited_by_players?: (player_assistsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_assists_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_assists_order_by[] | null), - /** filter the rows returned */ - where?: (player_assists_bool_exp | null)} }) - /** An aggregate relationship */ - assited_by_players_aggregate?: (player_assists_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_assists_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_assists_order_by[] | null), - /** filter the rows returned */ - where?: (player_assists_bool_exp | null)} }) - avatar_url?: boolean | number - /** 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)} }) - /** A computed field, executes function "banned_until" */ - banned_until?: boolean | number - /** An array relationship */ - coach_lineups?: (match_lineupsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_lineups_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_lineups_order_by[] | null), - /** filter the rows returned */ - where?: (match_lineups_bool_exp | null)} }) - /** An aggregate relationship */ - coach_lineups_aggregate?: (match_lineups_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_lineups_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_lineups_order_by[] | null), - /** filter the rows returned */ - where?: (match_lineups_bool_exp | null)} }) - country?: boolean | number - created_at?: boolean | number - /** A computed field, executes function "get_player_current_lobby_id" */ - current_lobby_id?: boolean | number - custom_avatar_url?: boolean | number - /** An array relationship */ - damage_dealt?: (player_damagesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_damages_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_damages_order_by[] | null), - /** filter the rows returned */ - where?: (player_damages_bool_exp | null)} }) - /** An aggregate relationship */ - damage_dealt_aggregate?: (player_damages_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_damages_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_damages_order_by[] | null), - /** filter the rows returned */ - where?: (player_damages_bool_exp | null)} }) - /** An array relationship */ - damage_taken?: (player_damagesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_damages_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_damages_order_by[] | null), - /** filter the rows returned */ - where?: (player_damages_bool_exp | null)} }) - /** An aggregate relationship */ - damage_taken_aggregate?: (player_damages_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_damages_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_damages_order_by[] | null), - /** filter the rows returned */ - where?: (player_damages_bool_exp | null)} }) - days_since_last_ban?: boolean | number - /** An array relationship */ - deaths?: (player_killsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_kills_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_kills_order_by[] | null), - /** filter the rows returned */ - where?: (player_kills_bool_exp | null)} }) - /** An aggregate relationship */ - deaths_aggregate?: (player_kills_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_kills_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_kills_order_by[] | null), - /** filter the rows returned */ - where?: (player_kills_bool_exp | null)} }) - discord_id?: boolean | number - /** An array relationship */ - draft_game_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 */ - draft_game_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)} }) - /** A computed field, executes function "get_player_elo" */ - elo?: { __args: { - /** JSON select path */ - path?: (Scalars['String'] | null)} } | boolean | number - /** An array relationship */ - elo_history?: (v_player_eloGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_elo_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_elo_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_elo_bool_exp | null)} }) - /** An aggregate relationship */ - elo_history_aggregate?: (v_player_elo_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_elo_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_elo_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_elo_bool_exp | null)} }) - faceit_elo?: boolean | number - faceit_nickname?: boolean | number - faceit_player_id?: boolean | number - /** An array relationship */ - faceit_rank_history?: (player_faceit_rank_historyGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_faceit_rank_history_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_faceit_rank_history_order_by[] | null), - /** filter the rows returned */ - where?: (player_faceit_rank_history_bool_exp | null)} }) - /** An aggregate relationship */ - faceit_rank_history_aggregate?: (player_faceit_rank_history_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_faceit_rank_history_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_faceit_rank_history_order_by[] | null), - /** filter the rows returned */ - where?: (player_faceit_rank_history_bool_exp | null)} }) - faceit_skill_level?: boolean | number - faceit_updated_at?: boolean | number - faceit_url?: boolean | number - /** An array relationship */ - flashed_by_players?: (player_flashesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_flashes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_flashes_order_by[] | null), - /** filter the rows returned */ - where?: (player_flashes_bool_exp | null)} }) - /** An aggregate relationship */ - flashed_by_players_aggregate?: (player_flashes_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_flashes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_flashes_order_by[] | null), - /** filter the rows returned */ - where?: (player_flashes_bool_exp | null)} }) - /** An array relationship */ - flashed_players?: (player_flashesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_flashes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_flashes_order_by[] | null), - /** filter the rows returned */ - where?: (player_flashes_bool_exp | null)} }) - /** An aggregate relationship */ - flashed_players_aggregate?: (player_flashes_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_flashes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_flashes_order_by[] | null), - /** filter the rows returned */ - where?: (player_flashes_bool_exp | null)} }) - /** An array relationship */ - friends?: (my_friendsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (my_friends_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (my_friends_order_by[] | null), - /** filter the rows returned */ - where?: (my_friends_bool_exp | null)} }) - /** An aggregate relationship */ - friends_aggregate?: (my_friends_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (my_friends_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (my_friends_order_by[] | null), - /** filter the rows returned */ - where?: (my_friends_bool_exp | null)} }) - game_ban_count?: boolean | number - /** An array relationship */ - invited_players?: (team_invitesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (team_invites_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_invites_order_by[] | null), - /** filter the rows returned */ - where?: (team_invites_bool_exp | null)} }) - /** An aggregate relationship */ - invited_players_aggregate?: (team_invites_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (team_invites_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_invites_order_by[] | null), - /** filter the rows returned */ - where?: (team_invites_bool_exp | null)} }) - /** A computed field, executes function "is_admin_sanctioned" */ - is_admin_sanctioned?: boolean | number - /** A computed field, executes function "is_banned" */ - is_banned?: boolean | number - /** A computed field, executes function "is_gagged" */ - is_gagged?: boolean | number - /** A computed field, executes function "is_in_another_match" */ - is_in_another_match?: boolean | number - /** A computed field, executes function "is_in_draft" */ - is_in_draft?: boolean | number - /** A computed field, executes function "is_in_lobby" */ - is_in_lobby?: boolean | number - /** A computed field, executes function "is_muted" */ - is_muted?: boolean | number - /** A computed field, executes function "is_registered" */ - is_registered?: boolean | number - /** An array relationship */ - kills?: (player_killsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_kills_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_kills_order_by[] | null), - /** filter the rows returned */ - where?: (player_kills_bool_exp | null)} }) - /** An aggregate relationship */ - kills_aggregate?: (player_kills_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_kills_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_kills_order_by[] | null), - /** filter the rows returned */ - where?: (player_kills_bool_exp | null)} }) - /** An array relationship */ - kills_by_weapons?: (player_kills_by_weaponGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_kills_by_weapon_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_kills_by_weapon_order_by[] | null), - /** filter the rows returned */ - where?: (player_kills_by_weapon_bool_exp | null)} }) - /** An aggregate relationship */ - kills_by_weapons_aggregate?: (player_kills_by_weapon_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_kills_by_weapon_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_kills_by_weapon_order_by[] | null), - /** filter the rows returned */ - where?: (player_kills_by_weapon_bool_exp | null)} }) - language?: boolean | number - last_read_news_at?: boolean | number - last_sign_in_at?: boolean | number - /** An array relationship */ - lobby_players?: (lobby_playersGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (lobby_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?: (lobby_players_order_by[] | null), - /** filter the rows returned */ - where?: (lobby_players_bool_exp | null)} }) - /** An aggregate relationship */ - lobby_players_aggregate?: (lobby_players_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (lobby_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?: (lobby_players_order_by[] | null), - /** filter the rows returned */ - where?: (lobby_players_bool_exp | null)} }) - /** A computed field, executes function "get_total_player_losses" */ - losses?: boolean | number - /** A computed field, executes function "get_total_player_losses_competitive" */ - losses_competitive?: boolean | number - /** A computed field, executes function "get_total_player_losses_duel" */ - losses_duel?: boolean | number - /** A computed field, executes function "get_total_player_losses_wingman" */ - losses_wingman?: boolean | number - /** An array relationship */ - match_map_hltv?: (v_player_match_map_hltvGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_match_map_hltv_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_match_map_hltv_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_match_map_hltv_bool_exp | null)} }) - /** An aggregate relationship */ - match_map_hltv_aggregate?: (v_player_match_map_hltv_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_match_map_hltv_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_match_map_hltv_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_match_map_hltv_bool_exp | null)} }) - /** An array relationship */ - match_map_stats?: (player_match_map_statsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_match_map_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?: (player_match_map_stats_order_by[] | null), - /** filter the rows returned */ - where?: (player_match_map_stats_bool_exp | null)} }) - /** An aggregate relationship */ - match_map_stats_aggregate?: (player_match_map_stats_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_match_map_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?: (player_match_map_stats_order_by[] | null), - /** filter the rows returned */ - where?: (player_match_map_stats_bool_exp | null)} }) - /** An array relationship */ - match_stats?: (player_match_stats_vGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_match_stats_v_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_stats_v_order_by[] | null), - /** filter the rows returned */ - where?: (player_match_stats_v_bool_exp | null)} }) - /** An aggregate relationship */ - match_stats_aggregate?: (player_match_stats_v_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_match_stats_v_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_stats_v_order_by[] | null), - /** filter the rows returned */ - where?: (player_match_stats_v_bool_exp | null)} }) - /** A computed field, executes function "get_player_matches" */ - 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)} }) - /** A computed field, executes function "get_player_matchmaking_cooldown" */ - matchmaking_cooldown?: boolean | number - /** An array relationship */ - multi_kills?: (v_player_multi_killsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_multi_kills_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_multi_kills_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_multi_kills_bool_exp | null)} }) - /** An aggregate relationship */ - multi_kills_aggregate?: (v_player_multi_kills_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_multi_kills_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_multi_kills_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_multi_kills_bool_exp | null)} }) - name?: boolean | number - name_registered?: boolean | number - notification_timezone?: boolean | number - /** An array relationship */ - notifications?: (notificationsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (notifications_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (notifications_order_by[] | null), - /** filter the rows returned */ - where?: (notifications_bool_exp | null)} }) - /** An aggregate relationship */ - notifications_aggregate?: (notifications_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (notifications_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (notifications_order_by[] | null), - /** filter the rows returned */ - where?: (notifications_bool_exp | null)} }) - /** An array relationship */ - 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 */ - 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)} }) - /** An array relationship */ - owned_teams?: (teamsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (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?: (teams_order_by[] | null), - /** filter the rows returned */ - where?: (teams_bool_exp | null)} }) - /** An aggregate relationship */ - owned_teams_aggregate?: (teams_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (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?: (teams_order_by[] | null), - /** filter the rows returned */ - where?: (teams_bool_exp | null)} }) - /** A computed field, executes function "get_player_peak_elo" */ - peak_elo?: { __args: { - /** JSON select path */ - path?: (Scalars['String'] | null)} } | boolean | number - /** An array relationship */ - pending_match_imports?: (pending_match_import_playersGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (pending_match_import_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?: (pending_match_import_players_order_by[] | null), - /** filter the rows returned */ - where?: (pending_match_import_players_bool_exp | null)} }) - /** An aggregate relationship */ - pending_match_imports_aggregate?: (pending_match_import_players_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (pending_match_import_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?: (pending_match_import_players_order_by[] | null), - /** filter the rows returned */ - where?: (pending_match_import_players_bool_exp | null)} }) - /** An array relationship */ - player_lineup?: (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 */ - player_lineup_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)} }) - /** An array relationship */ - player_unused_utilities?: (player_unused_utilityGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_unused_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_unused_utility_order_by[] | null), - /** filter the rows returned */ - where?: (player_unused_utility_bool_exp | null)} }) - /** An aggregate relationship */ - player_unused_utilities_aggregate?: (player_unused_utility_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_unused_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_unused_utility_order_by[] | null), - /** filter the rows returned */ - where?: (player_unused_utility_bool_exp | null)} }) - premier_rank?: boolean | number - /** An array relationship */ - premier_rank_history?: (player_premier_rank_historyGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_premier_rank_history_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_premier_rank_history_order_by[] | null), - /** filter the rows returned */ - where?: (player_premier_rank_history_bool_exp | null)} }) - /** An aggregate relationship */ - premier_rank_history_aggregate?: (player_premier_rank_history_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_premier_rank_history_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_premier_rank_history_order_by[] | null), - /** filter the rows returned */ - where?: (player_premier_rank_history_bool_exp | null)} }) - premier_rank_updated_at?: boolean | number - profile_url?: boolean | number - quiet_hours_end?: boolean | number - quiet_hours_start?: boolean | number - role?: boolean | number - roster_image_url?: boolean | number - /** An array relationship */ - sanctions?: (player_sanctionsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_sanctions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_sanctions_order_by[] | null), - /** filter the rows returned */ - where?: (player_sanctions_bool_exp | null)} }) - /** An aggregate relationship */ - sanctions_aggregate?: (player_sanctions_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_sanctions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_sanctions_order_by[] | null), - /** filter the rows returned */ - where?: (player_sanctions_bool_exp | null)} }) - /** An array relationship */ - season_stats?: (player_season_statsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_season_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?: (player_season_stats_order_by[] | null), - /** filter the rows returned */ - where?: (player_season_stats_bool_exp | null)} }) - /** An aggregate relationship */ - season_stats_aggregate?: (player_season_stats_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_season_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?: (player_season_stats_order_by[] | null), - /** filter the rows returned */ - where?: (player_season_stats_bool_exp | null)} }) - show_match_ready_modal?: boolean | number - /** An object relationship */ - stats?: player_statsGenqlSelection - steam_bans_checked_at?: boolean | number - steam_id?: boolean | number - /** An array relationship */ - team_invites?: (team_invitesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (team_invites_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_invites_order_by[] | null), - /** filter the rows returned */ - where?: (team_invites_bool_exp | null)} }) - /** An aggregate relationship */ - team_invites_aggregate?: (team_invites_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (team_invites_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_invites_order_by[] | null), - /** filter the rows returned */ - where?: (team_invites_bool_exp | null)} }) - /** An array relationship */ - team_members?: (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_members_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)} }) - /** A computed field, executes function "get_player_teams" */ - teams?: (teamsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (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?: (teams_order_by[] | null), - /** filter the rows returned */ - where?: (teams_bool_exp | null)} }) - /** A computed field, executes function "get_total_player_matches" */ - total_matches?: boolean | number - /** A computed field, executes function "get_player_tournament_cooldown" */ - tournament_cooldown?: boolean | number - /** An array relationship */ - tournament_organizers?: (tournament_organizersGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_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?: (tournament_organizers_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_organizers_bool_exp | null)} }) - /** An aggregate relationship */ - tournament_organizers_aggregate?: (tournament_organizers_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_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?: (tournament_organizers_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_organizers_bool_exp | null)} }) - /** An array relationship */ - tournament_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_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)} }) - /** 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)} }) - /** An array relationship */ - utility_thrown?: (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 */ - utility_thrown_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)} }) - vac_ban_count?: boolean | number - vac_banned?: boolean | number - /** An array relationship */ - weapon_stats?: (player_weapon_stats_vGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_weapon_stats_v_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_weapon_stats_v_order_by[] | null), - /** filter the rows returned */ - where?: (player_weapon_stats_v_bool_exp | null)} }) - /** An aggregate relationship */ - weapon_stats_aggregate?: (player_weapon_stats_v_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_weapon_stats_v_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_weapon_stats_v_order_by[] | null), - /** filter the rows returned */ - where?: (player_weapon_stats_v_bool_exp | null)} }) - /** A computed field, executes function "get_total_player_wins" */ - wins?: boolean | number - /** A computed field, executes function "get_total_player_wins_competitive" */ - wins_competitive?: boolean | number - /** A computed field, executes function "get_total_player_wins_duel" */ - wins_duel?: boolean | number - /** A computed field, executes function "get_total_player_wins_wingman" */ - wins_wingman?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "players" */ -export interface players_aggregateGenqlSelection{ - aggregate?: players_aggregate_fieldsGenqlSelection - nodes?: playersGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "players" */ -export interface players_aggregate_fieldsGenqlSelection{ - avg?: players_avg_fieldsGenqlSelection - count?: { __args: {columns?: (players_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: players_max_fieldsGenqlSelection - min?: players_min_fieldsGenqlSelection - stddev?: players_stddev_fieldsGenqlSelection - stddev_pop?: players_stddev_pop_fieldsGenqlSelection - stddev_samp?: players_stddev_samp_fieldsGenqlSelection - sum?: players_sum_fieldsGenqlSelection - var_pop?: players_var_pop_fieldsGenqlSelection - var_samp?: players_var_samp_fieldsGenqlSelection - variance?: players_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface players_avg_fieldsGenqlSelection{ - days_since_last_ban?: boolean | number - faceit_elo?: boolean | number - faceit_skill_level?: boolean | number - game_ban_count?: boolean | number - /** A computed field, executes function "get_total_player_losses" */ - losses?: boolean | number - /** A computed field, executes function "get_total_player_losses_competitive" */ - losses_competitive?: boolean | number - /** A computed field, executes function "get_total_player_losses_duel" */ - losses_duel?: boolean | number - /** A computed field, executes function "get_total_player_losses_wingman" */ - losses_wingman?: boolean | number - premier_rank?: boolean | number - steam_id?: boolean | number - /** A computed field, executes function "get_total_player_matches" */ - total_matches?: boolean | number - vac_ban_count?: boolean | number - /** A computed field, executes function "get_total_player_wins" */ - wins?: boolean | number - /** A computed field, executes function "get_total_player_wins_competitive" */ - wins_competitive?: boolean | number - /** A computed field, executes function "get_total_player_wins_duel" */ - wins_duel?: boolean | number - /** A computed field, executes function "get_total_player_wins_wingman" */ - wins_wingman?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "players". All fields are combined with a logical 'AND'. */ -export interface players_bool_exp {_and?: (players_bool_exp[] | null),_not?: (players_bool_exp | null),_or?: (players_bool_exp[] | null),abandoned_matches?: (abandoned_matches_bool_exp | null),abandoned_matches_aggregate?: (abandoned_matches_aggregate_bool_exp | null),aim_weapon_stats?: (player_aim_weapon_stats_bool_exp | null),aim_weapon_stats_aggregate?: (player_aim_weapon_stats_aggregate_bool_exp | null),assists?: (player_assists_bool_exp | null),assists_aggregate?: (player_assists_aggregate_bool_exp | null),assited_by_players?: (player_assists_bool_exp | null),assited_by_players_aggregate?: (player_assists_aggregate_bool_exp | null),avatar_url?: (String_comparison_exp | null),awards?: (award_recipients_bool_exp | null),awards_aggregate?: (award_recipients_aggregate_bool_exp | null),banned_until?: (timestamptz_comparison_exp | null),coach_lineups?: (match_lineups_bool_exp | null),coach_lineups_aggregate?: (match_lineups_aggregate_bool_exp | null),country?: (String_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),current_lobby_id?: (uuid_comparison_exp | null),custom_avatar_url?: (String_comparison_exp | null),damage_dealt?: (player_damages_bool_exp | null),damage_dealt_aggregate?: (player_damages_aggregate_bool_exp | null),damage_taken?: (player_damages_bool_exp | null),damage_taken_aggregate?: (player_damages_aggregate_bool_exp | null),days_since_last_ban?: (Int_comparison_exp | null),deaths?: (player_kills_bool_exp | null),deaths_aggregate?: (player_kills_aggregate_bool_exp | null),discord_id?: (String_comparison_exp | null),draft_game_players?: (draft_game_players_bool_exp | null),draft_game_players_aggregate?: (draft_game_players_aggregate_bool_exp | null),elo?: (jsonb_comparison_exp | null),elo_history?: (v_player_elo_bool_exp | null),elo_history_aggregate?: (v_player_elo_aggregate_bool_exp | null),faceit_elo?: (Int_comparison_exp | null),faceit_nickname?: (String_comparison_exp | null),faceit_player_id?: (String_comparison_exp | null),faceit_rank_history?: (player_faceit_rank_history_bool_exp | null),faceit_rank_history_aggregate?: (player_faceit_rank_history_aggregate_bool_exp | null),faceit_skill_level?: (Int_comparison_exp | null),faceit_updated_at?: (timestamptz_comparison_exp | null),faceit_url?: (String_comparison_exp | null),flashed_by_players?: (player_flashes_bool_exp | null),flashed_by_players_aggregate?: (player_flashes_aggregate_bool_exp | null),flashed_players?: (player_flashes_bool_exp | null),flashed_players_aggregate?: (player_flashes_aggregate_bool_exp | null),friends?: (my_friends_bool_exp | null),friends_aggregate?: (my_friends_aggregate_bool_exp | null),game_ban_count?: (Int_comparison_exp | null),invited_players?: (team_invites_bool_exp | null),invited_players_aggregate?: (team_invites_aggregate_bool_exp | null),is_admin_sanctioned?: (Boolean_comparison_exp | null),is_banned?: (Boolean_comparison_exp | null),is_gagged?: (Boolean_comparison_exp | null),is_in_another_match?: (Boolean_comparison_exp | null),is_in_draft?: (Boolean_comparison_exp | null),is_in_lobby?: (Boolean_comparison_exp | null),is_muted?: (Boolean_comparison_exp | null),is_registered?: (Boolean_comparison_exp | null),kills?: (player_kills_bool_exp | null),kills_aggregate?: (player_kills_aggregate_bool_exp | null),kills_by_weapons?: (player_kills_by_weapon_bool_exp | null),kills_by_weapons_aggregate?: (player_kills_by_weapon_aggregate_bool_exp | null),language?: (String_comparison_exp | null),last_read_news_at?: (timestamptz_comparison_exp | null),last_sign_in_at?: (timestamptz_comparison_exp | null),lobby_players?: (lobby_players_bool_exp | null),lobby_players_aggregate?: (lobby_players_aggregate_bool_exp | null),losses?: (Int_comparison_exp | null),losses_competitive?: (Int_comparison_exp | null),losses_duel?: (Int_comparison_exp | null),losses_wingman?: (Int_comparison_exp | null),match_map_hltv?: (v_player_match_map_hltv_bool_exp | null),match_map_hltv_aggregate?: (v_player_match_map_hltv_aggregate_bool_exp | null),match_map_stats?: (player_match_map_stats_bool_exp | null),match_map_stats_aggregate?: (player_match_map_stats_aggregate_bool_exp | null),match_stats?: (player_match_stats_v_bool_exp | null),match_stats_aggregate?: (player_match_stats_v_aggregate_bool_exp | null),matches?: (matches_bool_exp | null),matchmaking_cooldown?: (timestamptz_comparison_exp | null),multi_kills?: (v_player_multi_kills_bool_exp | null),multi_kills_aggregate?: (v_player_multi_kills_aggregate_bool_exp | null),name?: (String_comparison_exp | null),name_registered?: (Boolean_comparison_exp | null),notification_timezone?: (String_comparison_exp | null),notifications?: (notifications_bool_exp | null),notifications_aggregate?: (notifications_aggregate_bool_exp | null),objectives?: (player_objectives_bool_exp | null),objectives_aggregate?: (player_objectives_aggregate_bool_exp | null),owned_teams?: (teams_bool_exp | null),owned_teams_aggregate?: (teams_aggregate_bool_exp | null),peak_elo?: (jsonb_comparison_exp | null),pending_match_imports?: (pending_match_import_players_bool_exp | null),pending_match_imports_aggregate?: (pending_match_import_players_aggregate_bool_exp | null),player_lineup?: (match_lineup_players_bool_exp | null),player_lineup_aggregate?: (match_lineup_players_aggregate_bool_exp | null),player_unused_utilities?: (player_unused_utility_bool_exp | null),player_unused_utilities_aggregate?: (player_unused_utility_aggregate_bool_exp | null),premier_rank?: (Int_comparison_exp | null),premier_rank_history?: (player_premier_rank_history_bool_exp | null),premier_rank_history_aggregate?: (player_premier_rank_history_aggregate_bool_exp | null),premier_rank_updated_at?: (timestamptz_comparison_exp | null),profile_url?: (String_comparison_exp | null),quiet_hours_end?: (time_comparison_exp | null),quiet_hours_start?: (time_comparison_exp | null),role?: (e_player_roles_enum_comparison_exp | null),roster_image_url?: (String_comparison_exp | null),sanctions?: (player_sanctions_bool_exp | null),sanctions_aggregate?: (player_sanctions_aggregate_bool_exp | null),season_stats?: (player_season_stats_bool_exp | null),season_stats_aggregate?: (player_season_stats_aggregate_bool_exp | null),show_match_ready_modal?: (Boolean_comparison_exp | null),stats?: (player_stats_bool_exp | null),steam_bans_checked_at?: (timestamptz_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),team_invites?: (team_invites_bool_exp | null),team_invites_aggregate?: (team_invites_aggregate_bool_exp | null),team_members?: (team_roster_bool_exp | null),team_members_aggregate?: (team_roster_aggregate_bool_exp | null),teams?: (teams_bool_exp | null),total_matches?: (Int_comparison_exp | null),tournament_cooldown?: (timestamptz_comparison_exp | null),tournament_organizers?: (tournament_organizers_bool_exp | null),tournament_organizers_aggregate?: (tournament_organizers_aggregate_bool_exp | null),tournament_rosters?: (tournament_team_roster_bool_exp | null),tournament_rosters_aggregate?: (tournament_team_roster_aggregate_bool_exp | null),tournaments?: (tournaments_bool_exp | null),tournaments_aggregate?: (tournaments_aggregate_bool_exp | null),utility_thrown?: (player_utility_bool_exp | null),utility_thrown_aggregate?: (player_utility_aggregate_bool_exp | null),vac_ban_count?: (Int_comparison_exp | null),vac_banned?: (Boolean_comparison_exp | null),weapon_stats?: (player_weapon_stats_v_bool_exp | null),weapon_stats_aggregate?: (player_weapon_stats_v_aggregate_bool_exp | null),wins?: (Int_comparison_exp | null),wins_competitive?: (Int_comparison_exp | null),wins_duel?: (Int_comparison_exp | null),wins_wingman?: (Int_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "players" */ -export interface players_inc_input {days_since_last_ban?: (Scalars['Int'] | null),faceit_elo?: (Scalars['Int'] | null),faceit_skill_level?: (Scalars['Int'] | null),game_ban_count?: (Scalars['Int'] | null),premier_rank?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null),vac_ban_count?: (Scalars['Int'] | null)} - - -/** input type for inserting data into table "players" */ -export interface players_insert_input {abandoned_matches?: (abandoned_matches_arr_rel_insert_input | null),aim_weapon_stats?: (player_aim_weapon_stats_arr_rel_insert_input | null),assists?: (player_assists_arr_rel_insert_input | null),assited_by_players?: (player_assists_arr_rel_insert_input | null),avatar_url?: (Scalars['String'] | null),awards?: (award_recipients_arr_rel_insert_input | null),coach_lineups?: (match_lineups_arr_rel_insert_input | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),custom_avatar_url?: (Scalars['String'] | null),damage_dealt?: (player_damages_arr_rel_insert_input | null),damage_taken?: (player_damages_arr_rel_insert_input | null),days_since_last_ban?: (Scalars['Int'] | null),deaths?: (player_kills_arr_rel_insert_input | null),discord_id?: (Scalars['String'] | null),draft_game_players?: (draft_game_players_arr_rel_insert_input | null),elo_history?: (v_player_elo_arr_rel_insert_input | null),faceit_elo?: (Scalars['Int'] | null),faceit_nickname?: (Scalars['String'] | null),faceit_player_id?: (Scalars['String'] | null),faceit_rank_history?: (player_faceit_rank_history_arr_rel_insert_input | null),faceit_skill_level?: (Scalars['Int'] | null),faceit_updated_at?: (Scalars['timestamptz'] | null),faceit_url?: (Scalars['String'] | null),flashed_by_players?: (player_flashes_arr_rel_insert_input | null),flashed_players?: (player_flashes_arr_rel_insert_input | null),friends?: (my_friends_arr_rel_insert_input | null),game_ban_count?: (Scalars['Int'] | null),invited_players?: (team_invites_arr_rel_insert_input | null),kills?: (player_kills_arr_rel_insert_input | null),kills_by_weapons?: (player_kills_by_weapon_arr_rel_insert_input | null),language?: (Scalars['String'] | null),last_read_news_at?: (Scalars['timestamptz'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),lobby_players?: (lobby_players_arr_rel_insert_input | null),match_map_hltv?: (v_player_match_map_hltv_arr_rel_insert_input | null),match_map_stats?: (player_match_map_stats_arr_rel_insert_input | null),match_stats?: (player_match_stats_v_arr_rel_insert_input | null),multi_kills?: (v_player_multi_kills_arr_rel_insert_input | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),notification_timezone?: (Scalars['String'] | null),notifications?: (notifications_arr_rel_insert_input | null),objectives?: (player_objectives_arr_rel_insert_input | null),owned_teams?: (teams_arr_rel_insert_input | null),pending_match_imports?: (pending_match_import_players_arr_rel_insert_input | null),player_lineup?: (match_lineup_players_arr_rel_insert_input | null),player_unused_utilities?: (player_unused_utility_arr_rel_insert_input | null),premier_rank?: (Scalars['Int'] | null),premier_rank_history?: (player_premier_rank_history_arr_rel_insert_input | null),premier_rank_updated_at?: (Scalars['timestamptz'] | null),profile_url?: (Scalars['String'] | null),quiet_hours_end?: (Scalars['time'] | null),quiet_hours_start?: (Scalars['time'] | null),role?: (e_player_roles_enum | null),roster_image_url?: (Scalars['String'] | null),sanctions?: (player_sanctions_arr_rel_insert_input | null),season_stats?: (player_season_stats_arr_rel_insert_input | null),show_match_ready_modal?: (Scalars['Boolean'] | null),stats?: (player_stats_obj_rel_insert_input | null),steam_bans_checked_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),team_invites?: (team_invites_arr_rel_insert_input | null),team_members?: (team_roster_arr_rel_insert_input | null),tournament_organizers?: (tournament_organizers_arr_rel_insert_input | null),tournament_rosters?: (tournament_team_roster_arr_rel_insert_input | null),tournaments?: (tournaments_arr_rel_insert_input | null),utility_thrown?: (player_utility_arr_rel_insert_input | null),vac_ban_count?: (Scalars['Int'] | null),vac_banned?: (Scalars['Boolean'] | null),weapon_stats?: (player_weapon_stats_v_arr_rel_insert_input | null)} - - -/** aggregate max on columns */ -export interface players_max_fieldsGenqlSelection{ - avatar_url?: boolean | number - /** A computed field, executes function "banned_until" */ - banned_until?: boolean | number - country?: boolean | number - created_at?: boolean | number - /** A computed field, executes function "get_player_current_lobby_id" */ - current_lobby_id?: boolean | number - custom_avatar_url?: boolean | number - days_since_last_ban?: boolean | number - discord_id?: boolean | number - faceit_elo?: boolean | number - faceit_nickname?: boolean | number - faceit_player_id?: boolean | number - faceit_skill_level?: boolean | number - faceit_updated_at?: boolean | number - faceit_url?: boolean | number - game_ban_count?: boolean | number - language?: boolean | number - last_read_news_at?: boolean | number - last_sign_in_at?: boolean | number - /** A computed field, executes function "get_total_player_losses" */ - losses?: boolean | number - /** A computed field, executes function "get_total_player_losses_competitive" */ - losses_competitive?: boolean | number - /** A computed field, executes function "get_total_player_losses_duel" */ - losses_duel?: boolean | number - /** A computed field, executes function "get_total_player_losses_wingman" */ - losses_wingman?: boolean | number - /** A computed field, executes function "get_player_matchmaking_cooldown" */ - matchmaking_cooldown?: boolean | number - name?: boolean | number - notification_timezone?: boolean | number - premier_rank?: boolean | number - premier_rank_updated_at?: boolean | number - profile_url?: boolean | number - roster_image_url?: boolean | number - steam_bans_checked_at?: boolean | number - steam_id?: boolean | number - /** A computed field, executes function "get_total_player_matches" */ - total_matches?: boolean | number - /** A computed field, executes function "get_player_tournament_cooldown" */ - tournament_cooldown?: boolean | number - vac_ban_count?: boolean | number - /** A computed field, executes function "get_total_player_wins" */ - wins?: boolean | number - /** A computed field, executes function "get_total_player_wins_competitive" */ - wins_competitive?: boolean | number - /** A computed field, executes function "get_total_player_wins_duel" */ - wins_duel?: boolean | number - /** A computed field, executes function "get_total_player_wins_wingman" */ - wins_wingman?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface players_min_fieldsGenqlSelection{ - avatar_url?: boolean | number - /** A computed field, executes function "banned_until" */ - banned_until?: boolean | number - country?: boolean | number - created_at?: boolean | number - /** A computed field, executes function "get_player_current_lobby_id" */ - current_lobby_id?: boolean | number - custom_avatar_url?: boolean | number - days_since_last_ban?: boolean | number - discord_id?: boolean | number - faceit_elo?: boolean | number - faceit_nickname?: boolean | number - faceit_player_id?: boolean | number - faceit_skill_level?: boolean | number - faceit_updated_at?: boolean | number - faceit_url?: boolean | number - game_ban_count?: boolean | number - language?: boolean | number - last_read_news_at?: boolean | number - last_sign_in_at?: boolean | number - /** A computed field, executes function "get_total_player_losses" */ - losses?: boolean | number - /** A computed field, executes function "get_total_player_losses_competitive" */ - losses_competitive?: boolean | number - /** A computed field, executes function "get_total_player_losses_duel" */ - losses_duel?: boolean | number - /** A computed field, executes function "get_total_player_losses_wingman" */ - losses_wingman?: boolean | number - /** A computed field, executes function "get_player_matchmaking_cooldown" */ - matchmaking_cooldown?: boolean | number - name?: boolean | number - notification_timezone?: boolean | number - premier_rank?: boolean | number - premier_rank_updated_at?: boolean | number - profile_url?: boolean | number - roster_image_url?: boolean | number - steam_bans_checked_at?: boolean | number - steam_id?: boolean | number - /** A computed field, executes function "get_total_player_matches" */ - total_matches?: boolean | number - /** A computed field, executes function "get_player_tournament_cooldown" */ - tournament_cooldown?: boolean | number - vac_ban_count?: boolean | number - /** A computed field, executes function "get_total_player_wins" */ - wins?: boolean | number - /** A computed field, executes function "get_total_player_wins_competitive" */ - wins_competitive?: boolean | number - /** A computed field, executes function "get_total_player_wins_duel" */ - wins_duel?: boolean | number - /** A computed field, executes function "get_total_player_wins_wingman" */ - wins_wingman?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "players" */ -export interface players_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: playersGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "players" */ -export interface players_obj_rel_insert_input {data: players_insert_input, -/** upsert condition */ -on_conflict?: (players_on_conflict | null)} - - -/** on_conflict condition type for table "players" */ -export interface players_on_conflict {constraint: players_constraint,update_columns?: players_update_column[],where?: (players_bool_exp | null)} - - -/** Ordering options when selecting data from "players". */ -export interface players_order_by {abandoned_matches_aggregate?: (abandoned_matches_aggregate_order_by | null),aim_weapon_stats_aggregate?: (player_aim_weapon_stats_aggregate_order_by | null),assists_aggregate?: (player_assists_aggregate_order_by | null),assited_by_players_aggregate?: (player_assists_aggregate_order_by | null),avatar_url?: (order_by | null),awards_aggregate?: (award_recipients_aggregate_order_by | null),banned_until?: (order_by | null),coach_lineups_aggregate?: (match_lineups_aggregate_order_by | null),country?: (order_by | null),created_at?: (order_by | null),current_lobby_id?: (order_by | null),custom_avatar_url?: (order_by | null),damage_dealt_aggregate?: (player_damages_aggregate_order_by | null),damage_taken_aggregate?: (player_damages_aggregate_order_by | null),days_since_last_ban?: (order_by | null),deaths_aggregate?: (player_kills_aggregate_order_by | null),discord_id?: (order_by | null),draft_game_players_aggregate?: (draft_game_players_aggregate_order_by | null),elo?: (order_by | null),elo_history_aggregate?: (v_player_elo_aggregate_order_by | null),faceit_elo?: (order_by | null),faceit_nickname?: (order_by | null),faceit_player_id?: (order_by | null),faceit_rank_history_aggregate?: (player_faceit_rank_history_aggregate_order_by | null),faceit_skill_level?: (order_by | null),faceit_updated_at?: (order_by | null),faceit_url?: (order_by | null),flashed_by_players_aggregate?: (player_flashes_aggregate_order_by | null),flashed_players_aggregate?: (player_flashes_aggregate_order_by | null),friends_aggregate?: (my_friends_aggregate_order_by | null),game_ban_count?: (order_by | null),invited_players_aggregate?: (team_invites_aggregate_order_by | null),is_admin_sanctioned?: (order_by | null),is_banned?: (order_by | null),is_gagged?: (order_by | null),is_in_another_match?: (order_by | null),is_in_draft?: (order_by | null),is_in_lobby?: (order_by | null),is_muted?: (order_by | null),is_registered?: (order_by | null),kills_aggregate?: (player_kills_aggregate_order_by | null),kills_by_weapons_aggregate?: (player_kills_by_weapon_aggregate_order_by | null),language?: (order_by | null),last_read_news_at?: (order_by | null),last_sign_in_at?: (order_by | null),lobby_players_aggregate?: (lobby_players_aggregate_order_by | null),losses?: (order_by | null),losses_competitive?: (order_by | null),losses_duel?: (order_by | null),losses_wingman?: (order_by | null),match_map_hltv_aggregate?: (v_player_match_map_hltv_aggregate_order_by | null),match_map_stats_aggregate?: (player_match_map_stats_aggregate_order_by | null),match_stats_aggregate?: (player_match_stats_v_aggregate_order_by | null),matches_aggregate?: (matches_aggregate_order_by | null),matchmaking_cooldown?: (order_by | null),multi_kills_aggregate?: (v_player_multi_kills_aggregate_order_by | null),name?: (order_by | null),name_registered?: (order_by | null),notification_timezone?: (order_by | null),notifications_aggregate?: (notifications_aggregate_order_by | null),objectives_aggregate?: (player_objectives_aggregate_order_by | null),owned_teams_aggregate?: (teams_aggregate_order_by | null),peak_elo?: (order_by | null),pending_match_imports_aggregate?: (pending_match_import_players_aggregate_order_by | null),player_lineup_aggregate?: (match_lineup_players_aggregate_order_by | null),player_unused_utilities_aggregate?: (player_unused_utility_aggregate_order_by | null),premier_rank?: (order_by | null),premier_rank_history_aggregate?: (player_premier_rank_history_aggregate_order_by | null),premier_rank_updated_at?: (order_by | null),profile_url?: (order_by | null),quiet_hours_end?: (order_by | null),quiet_hours_start?: (order_by | null),role?: (order_by | null),roster_image_url?: (order_by | null),sanctions_aggregate?: (player_sanctions_aggregate_order_by | null),season_stats_aggregate?: (player_season_stats_aggregate_order_by | null),show_match_ready_modal?: (order_by | null),stats?: (player_stats_order_by | null),steam_bans_checked_at?: (order_by | null),steam_id?: (order_by | null),team_invites_aggregate?: (team_invites_aggregate_order_by | null),team_members_aggregate?: (team_roster_aggregate_order_by | null),teams_aggregate?: (teams_aggregate_order_by | null),total_matches?: (order_by | null),tournament_cooldown?: (order_by | null),tournament_organizers_aggregate?: (tournament_organizers_aggregate_order_by | null),tournament_rosters_aggregate?: (tournament_team_roster_aggregate_order_by | null),tournaments_aggregate?: (tournaments_aggregate_order_by | null),utility_thrown_aggregate?: (player_utility_aggregate_order_by | null),vac_ban_count?: (order_by | null),vac_banned?: (order_by | null),weapon_stats_aggregate?: (player_weapon_stats_v_aggregate_order_by | null),wins?: (order_by | null),wins_competitive?: (order_by | null),wins_duel?: (order_by | null),wins_wingman?: (order_by | null)} - - -/** primary key columns input for table: players */ -export interface players_pk_columns_input {steam_id: Scalars['bigint']} - - -/** input type for updating data in table "players" */ -export interface players_set_input {avatar_url?: (Scalars['String'] | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),custom_avatar_url?: (Scalars['String'] | null),days_since_last_ban?: (Scalars['Int'] | null),discord_id?: (Scalars['String'] | null),faceit_elo?: (Scalars['Int'] | null),faceit_nickname?: (Scalars['String'] | null),faceit_player_id?: (Scalars['String'] | null),faceit_skill_level?: (Scalars['Int'] | null),faceit_updated_at?: (Scalars['timestamptz'] | null),faceit_url?: (Scalars['String'] | null),game_ban_count?: (Scalars['Int'] | null),language?: (Scalars['String'] | null),last_read_news_at?: (Scalars['timestamptz'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),notification_timezone?: (Scalars['String'] | null),premier_rank?: (Scalars['Int'] | null),premier_rank_updated_at?: (Scalars['timestamptz'] | null),profile_url?: (Scalars['String'] | null),quiet_hours_end?: (Scalars['time'] | null),quiet_hours_start?: (Scalars['time'] | null),role?: (e_player_roles_enum | null),roster_image_url?: (Scalars['String'] | null),show_match_ready_modal?: (Scalars['Boolean'] | null),steam_bans_checked_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),vac_ban_count?: (Scalars['Int'] | null),vac_banned?: (Scalars['Boolean'] | null)} - - -/** aggregate stddev on columns */ -export interface players_stddev_fieldsGenqlSelection{ - days_since_last_ban?: boolean | number - faceit_elo?: boolean | number - faceit_skill_level?: boolean | number - game_ban_count?: boolean | number - /** A computed field, executes function "get_total_player_losses" */ - losses?: boolean | number - /** A computed field, executes function "get_total_player_losses_competitive" */ - losses_competitive?: boolean | number - /** A computed field, executes function "get_total_player_losses_duel" */ - losses_duel?: boolean | number - /** A computed field, executes function "get_total_player_losses_wingman" */ - losses_wingman?: boolean | number - premier_rank?: boolean | number - steam_id?: boolean | number - /** A computed field, executes function "get_total_player_matches" */ - total_matches?: boolean | number - vac_ban_count?: boolean | number - /** A computed field, executes function "get_total_player_wins" */ - wins?: boolean | number - /** A computed field, executes function "get_total_player_wins_competitive" */ - wins_competitive?: boolean | number - /** A computed field, executes function "get_total_player_wins_duel" */ - wins_duel?: boolean | number - /** A computed field, executes function "get_total_player_wins_wingman" */ - wins_wingman?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface players_stddev_pop_fieldsGenqlSelection{ - days_since_last_ban?: boolean | number - faceit_elo?: boolean | number - faceit_skill_level?: boolean | number - game_ban_count?: boolean | number - /** A computed field, executes function "get_total_player_losses" */ - losses?: boolean | number - /** A computed field, executes function "get_total_player_losses_competitive" */ - losses_competitive?: boolean | number - /** A computed field, executes function "get_total_player_losses_duel" */ - losses_duel?: boolean | number - /** A computed field, executes function "get_total_player_losses_wingman" */ - losses_wingman?: boolean | number - premier_rank?: boolean | number - steam_id?: boolean | number - /** A computed field, executes function "get_total_player_matches" */ - total_matches?: boolean | number - vac_ban_count?: boolean | number - /** A computed field, executes function "get_total_player_wins" */ - wins?: boolean | number - /** A computed field, executes function "get_total_player_wins_competitive" */ - wins_competitive?: boolean | number - /** A computed field, executes function "get_total_player_wins_duel" */ - wins_duel?: boolean | number - /** A computed field, executes function "get_total_player_wins_wingman" */ - wins_wingman?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface players_stddev_samp_fieldsGenqlSelection{ - days_since_last_ban?: boolean | number - faceit_elo?: boolean | number - faceit_skill_level?: boolean | number - game_ban_count?: boolean | number - /** A computed field, executes function "get_total_player_losses" */ - losses?: boolean | number - /** A computed field, executes function "get_total_player_losses_competitive" */ - losses_competitive?: boolean | number - /** A computed field, executes function "get_total_player_losses_duel" */ - losses_duel?: boolean | number - /** A computed field, executes function "get_total_player_losses_wingman" */ - losses_wingman?: boolean | number - premier_rank?: boolean | number - steam_id?: boolean | number - /** A computed field, executes function "get_total_player_matches" */ - total_matches?: boolean | number - vac_ban_count?: boolean | number - /** A computed field, executes function "get_total_player_wins" */ - wins?: boolean | number - /** A computed field, executes function "get_total_player_wins_competitive" */ - wins_competitive?: boolean | number - /** A computed field, executes function "get_total_player_wins_duel" */ - wins_duel?: boolean | number - /** A computed field, executes function "get_total_player_wins_wingman" */ - wins_wingman?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "players" */ -export interface players_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: players_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface players_stream_cursor_value_input {avatar_url?: (Scalars['String'] | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),custom_avatar_url?: (Scalars['String'] | null),days_since_last_ban?: (Scalars['Int'] | null),discord_id?: (Scalars['String'] | null),faceit_elo?: (Scalars['Int'] | null),faceit_nickname?: (Scalars['String'] | null),faceit_player_id?: (Scalars['String'] | null),faceit_skill_level?: (Scalars['Int'] | null),faceit_updated_at?: (Scalars['timestamptz'] | null),faceit_url?: (Scalars['String'] | null),game_ban_count?: (Scalars['Int'] | null),language?: (Scalars['String'] | null),last_read_news_at?: (Scalars['timestamptz'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),notification_timezone?: (Scalars['String'] | null),premier_rank?: (Scalars['Int'] | null),premier_rank_updated_at?: (Scalars['timestamptz'] | null),profile_url?: (Scalars['String'] | null),quiet_hours_end?: (Scalars['time'] | null),quiet_hours_start?: (Scalars['time'] | null),role?: (e_player_roles_enum | null),roster_image_url?: (Scalars['String'] | null),show_match_ready_modal?: (Scalars['Boolean'] | null),steam_bans_checked_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),vac_ban_count?: (Scalars['Int'] | null),vac_banned?: (Scalars['Boolean'] | null)} - - -/** aggregate sum on columns */ -export interface players_sum_fieldsGenqlSelection{ - days_since_last_ban?: boolean | number - faceit_elo?: boolean | number - faceit_skill_level?: boolean | number - game_ban_count?: boolean | number - /** A computed field, executes function "get_total_player_losses" */ - losses?: boolean | number - /** A computed field, executes function "get_total_player_losses_competitive" */ - losses_competitive?: boolean | number - /** A computed field, executes function "get_total_player_losses_duel" */ - losses_duel?: boolean | number - /** A computed field, executes function "get_total_player_losses_wingman" */ - losses_wingman?: boolean | number - premier_rank?: boolean | number - steam_id?: boolean | number - /** A computed field, executes function "get_total_player_matches" */ - total_matches?: boolean | number - vac_ban_count?: boolean | number - /** A computed field, executes function "get_total_player_wins" */ - wins?: boolean | number - /** A computed field, executes function "get_total_player_wins_competitive" */ - wins_competitive?: boolean | number - /** A computed field, executes function "get_total_player_wins_duel" */ - wins_duel?: boolean | number - /** A computed field, executes function "get_total_player_wins_wingman" */ - wins_wingman?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface players_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (players_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (players_set_input | null), -/** filter the rows which have to be updated */ -where: players_bool_exp} - - -/** aggregate var_pop on columns */ -export interface players_var_pop_fieldsGenqlSelection{ - days_since_last_ban?: boolean | number - faceit_elo?: boolean | number - faceit_skill_level?: boolean | number - game_ban_count?: boolean | number - /** A computed field, executes function "get_total_player_losses" */ - losses?: boolean | number - /** A computed field, executes function "get_total_player_losses_competitive" */ - losses_competitive?: boolean | number - /** A computed field, executes function "get_total_player_losses_duel" */ - losses_duel?: boolean | number - /** A computed field, executes function "get_total_player_losses_wingman" */ - losses_wingman?: boolean | number - premier_rank?: boolean | number - steam_id?: boolean | number - /** A computed field, executes function "get_total_player_matches" */ - total_matches?: boolean | number - vac_ban_count?: boolean | number - /** A computed field, executes function "get_total_player_wins" */ - wins?: boolean | number - /** A computed field, executes function "get_total_player_wins_competitive" */ - wins_competitive?: boolean | number - /** A computed field, executes function "get_total_player_wins_duel" */ - wins_duel?: boolean | number - /** A computed field, executes function "get_total_player_wins_wingman" */ - wins_wingman?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface players_var_samp_fieldsGenqlSelection{ - days_since_last_ban?: boolean | number - faceit_elo?: boolean | number - faceit_skill_level?: boolean | number - game_ban_count?: boolean | number - /** A computed field, executes function "get_total_player_losses" */ - losses?: boolean | number - /** A computed field, executes function "get_total_player_losses_competitive" */ - losses_competitive?: boolean | number - /** A computed field, executes function "get_total_player_losses_duel" */ - losses_duel?: boolean | number - /** A computed field, executes function "get_total_player_losses_wingman" */ - losses_wingman?: boolean | number - premier_rank?: boolean | number - steam_id?: boolean | number - /** A computed field, executes function "get_total_player_matches" */ - total_matches?: boolean | number - vac_ban_count?: boolean | number - /** A computed field, executes function "get_total_player_wins" */ - wins?: boolean | number - /** A computed field, executes function "get_total_player_wins_competitive" */ - wins_competitive?: boolean | number - /** A computed field, executes function "get_total_player_wins_duel" */ - wins_duel?: boolean | number - /** A computed field, executes function "get_total_player_wins_wingman" */ - wins_wingman?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface players_variance_fieldsGenqlSelection{ - days_since_last_ban?: boolean | number - faceit_elo?: boolean | number - faceit_skill_level?: boolean | number - game_ban_count?: boolean | number - /** A computed field, executes function "get_total_player_losses" */ - losses?: boolean | number - /** A computed field, executes function "get_total_player_losses_competitive" */ - losses_competitive?: boolean | number - /** A computed field, executes function "get_total_player_losses_duel" */ - losses_duel?: boolean | number - /** A computed field, executes function "get_total_player_losses_wingman" */ - losses_wingman?: boolean | number - premier_rank?: boolean | number - steam_id?: boolean | number - /** A computed field, executes function "get_total_player_matches" */ - total_matches?: boolean | number - vac_ban_count?: boolean | number - /** A computed field, executes function "get_total_player_wins" */ - wins?: boolean | number - /** A computed field, executes function "get_total_player_wins_competitive" */ - wins_competitive?: boolean | number - /** A computed field, executes function "get_total_player_wins_duel" */ - wins_duel?: boolean | number - /** A computed field, executes function "get_total_player_wins_wingman" */ - wins_wingman?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "plugin_versions" */ -export interface plugin_versionsGenqlSelection{ - min_game_build_id?: boolean | number - published_at?: boolean | number - runtime?: boolean | number - version?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "plugin_versions" */ -export interface plugin_versions_aggregateGenqlSelection{ - aggregate?: plugin_versions_aggregate_fieldsGenqlSelection - nodes?: plugin_versionsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "plugin_versions" */ -export interface plugin_versions_aggregate_fieldsGenqlSelection{ - avg?: plugin_versions_avg_fieldsGenqlSelection - count?: { __args: {columns?: (plugin_versions_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: plugin_versions_max_fieldsGenqlSelection - min?: plugin_versions_min_fieldsGenqlSelection - stddev?: plugin_versions_stddev_fieldsGenqlSelection - stddev_pop?: plugin_versions_stddev_pop_fieldsGenqlSelection - stddev_samp?: plugin_versions_stddev_samp_fieldsGenqlSelection - sum?: plugin_versions_sum_fieldsGenqlSelection - var_pop?: plugin_versions_var_pop_fieldsGenqlSelection - var_samp?: plugin_versions_var_samp_fieldsGenqlSelection - variance?: plugin_versions_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface plugin_versions_avg_fieldsGenqlSelection{ - min_game_build_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "plugin_versions". All fields are combined with a logical 'AND'. */ -export interface plugin_versions_bool_exp {_and?: (plugin_versions_bool_exp[] | null),_not?: (plugin_versions_bool_exp | null),_or?: (plugin_versions_bool_exp[] | null),min_game_build_id?: (Int_comparison_exp | null),published_at?: (timestamptz_comparison_exp | null),runtime?: (e_plugin_runtimes_enum_comparison_exp | null),version?: (String_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "plugin_versions" */ -export interface plugin_versions_inc_input {min_game_build_id?: (Scalars['Int'] | null)} - - -/** input type for inserting data into table "plugin_versions" */ -export interface plugin_versions_insert_input {min_game_build_id?: (Scalars['Int'] | null),published_at?: (Scalars['timestamptz'] | null),runtime?: (e_plugin_runtimes_enum | null),version?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface plugin_versions_max_fieldsGenqlSelection{ - min_game_build_id?: boolean | number - published_at?: boolean | number - version?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface plugin_versions_min_fieldsGenqlSelection{ - min_game_build_id?: boolean | number - published_at?: boolean | number - version?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "plugin_versions" */ -export interface plugin_versions_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: plugin_versionsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "plugin_versions" */ -export interface plugin_versions_on_conflict {constraint: plugin_versions_constraint,update_columns?: plugin_versions_update_column[],where?: (plugin_versions_bool_exp | null)} - - -/** Ordering options when selecting data from "plugin_versions". */ -export interface plugin_versions_order_by {min_game_build_id?: (order_by | null),published_at?: (order_by | null),runtime?: (order_by | null),version?: (order_by | null)} - - -/** primary key columns input for table: plugin_versions */ -export interface plugin_versions_pk_columns_input {runtime: e_plugin_runtimes_enum,version: Scalars['String']} - - -/** input type for updating data in table "plugin_versions" */ -export interface plugin_versions_set_input {min_game_build_id?: (Scalars['Int'] | null),published_at?: (Scalars['timestamptz'] | null),runtime?: (e_plugin_runtimes_enum | null),version?: (Scalars['String'] | null)} - - -/** aggregate stddev on columns */ -export interface plugin_versions_stddev_fieldsGenqlSelection{ - min_game_build_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface plugin_versions_stddev_pop_fieldsGenqlSelection{ - min_game_build_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface plugin_versions_stddev_samp_fieldsGenqlSelection{ - min_game_build_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "plugin_versions" */ -export interface plugin_versions_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: 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 plugin_versions_stream_cursor_value_input {min_game_build_id?: (Scalars['Int'] | null),published_at?: (Scalars['timestamptz'] | null),runtime?: (e_plugin_runtimes_enum | null),version?: (Scalars['String'] | null)} - - -/** aggregate sum on columns */ -export interface plugin_versions_sum_fieldsGenqlSelection{ - min_game_build_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface plugin_versions_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (plugin_versions_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (plugin_versions_set_input | null), -/** filter the rows which have to be updated */ -where: plugin_versions_bool_exp} - - -/** aggregate var_pop on columns */ -export interface plugin_versions_var_pop_fieldsGenqlSelection{ - min_game_build_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface plugin_versions_var_samp_fieldsGenqlSelection{ - min_game_build_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface plugin_versions_variance_fieldsGenqlSelection{ - min_game_build_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "push_subscriptions" */ -export interface push_subscriptionsGenqlSelection{ - auth?: boolean | number - created_at?: boolean | number - endpoint?: boolean | number - id?: boolean | number - last_used_at?: boolean | number - p256dh?: boolean | number - steam_id?: boolean | number - user_agent?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "push_subscriptions" */ -export interface push_subscriptions_aggregateGenqlSelection{ - aggregate?: push_subscriptions_aggregate_fieldsGenqlSelection - nodes?: push_subscriptionsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "push_subscriptions" */ -export interface push_subscriptions_aggregate_fieldsGenqlSelection{ - avg?: push_subscriptions_avg_fieldsGenqlSelection - count?: { __args: {columns?: (push_subscriptions_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: push_subscriptions_max_fieldsGenqlSelection - min?: push_subscriptions_min_fieldsGenqlSelection - stddev?: push_subscriptions_stddev_fieldsGenqlSelection - stddev_pop?: push_subscriptions_stddev_pop_fieldsGenqlSelection - stddev_samp?: push_subscriptions_stddev_samp_fieldsGenqlSelection - sum?: push_subscriptions_sum_fieldsGenqlSelection - var_pop?: push_subscriptions_var_pop_fieldsGenqlSelection - var_samp?: push_subscriptions_var_samp_fieldsGenqlSelection - variance?: push_subscriptions_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface push_subscriptions_avg_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "push_subscriptions". All fields are combined with a logical 'AND'. */ -export interface push_subscriptions_bool_exp {_and?: (push_subscriptions_bool_exp[] | null),_not?: (push_subscriptions_bool_exp | null),_or?: (push_subscriptions_bool_exp[] | null),auth?: (String_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),endpoint?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),last_used_at?: (timestamptz_comparison_exp | null),p256dh?: (String_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),user_agent?: (String_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "push_subscriptions" */ -export interface push_subscriptions_inc_input {steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "push_subscriptions" */ -export interface push_subscriptions_insert_input {auth?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),endpoint?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),last_used_at?: (Scalars['timestamptz'] | null),p256dh?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null),user_agent?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface push_subscriptions_max_fieldsGenqlSelection{ - auth?: boolean | number - created_at?: boolean | number - endpoint?: boolean | number - id?: boolean | number - last_used_at?: boolean | number - p256dh?: boolean | number - steam_id?: boolean | number - user_agent?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface push_subscriptions_min_fieldsGenqlSelection{ - auth?: boolean | number - created_at?: boolean | number - endpoint?: boolean | number - id?: boolean | number - last_used_at?: boolean | number - p256dh?: boolean | number - steam_id?: boolean | number - user_agent?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "push_subscriptions" */ -export interface push_subscriptions_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: push_subscriptionsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "push_subscriptions" */ -export interface push_subscriptions_on_conflict {constraint: push_subscriptions_constraint,update_columns?: push_subscriptions_update_column[],where?: (push_subscriptions_bool_exp | null)} - - -/** Ordering options when selecting data from "push_subscriptions". */ -export interface push_subscriptions_order_by {auth?: (order_by | null),created_at?: (order_by | null),endpoint?: (order_by | null),id?: (order_by | null),last_used_at?: (order_by | null),p256dh?: (order_by | null),steam_id?: (order_by | null),user_agent?: (order_by | null)} - - -/** primary key columns input for table: push_subscriptions */ -export interface push_subscriptions_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "push_subscriptions" */ -export interface push_subscriptions_set_input {auth?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),endpoint?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),last_used_at?: (Scalars['timestamptz'] | null),p256dh?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null),user_agent?: (Scalars['String'] | null)} - - -/** aggregate stddev on columns */ -export interface push_subscriptions_stddev_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface push_subscriptions_stddev_pop_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface push_subscriptions_stddev_samp_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "push_subscriptions" */ -export interface push_subscriptions_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: push_subscriptions_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface push_subscriptions_stream_cursor_value_input {auth?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),endpoint?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),last_used_at?: (Scalars['timestamptz'] | null),p256dh?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null),user_agent?: (Scalars['String'] | null)} - - -/** aggregate sum on columns */ -export interface push_subscriptions_sum_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface push_subscriptions_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (push_subscriptions_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (push_subscriptions_set_input | null), -/** filter the rows which have to be updated */ -where: push_subscriptions_bool_exp} - - -/** aggregate var_pop on columns */ -export interface push_subscriptions_var_pop_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface push_subscriptions_var_samp_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface push_subscriptions_variance_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface query_rootGenqlSelection{ - /** fetch data from the table: "_map_pool" */ - _map_pool?: (_map_poolGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (_map_pool_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (_map_pool_order_by[] | null), - /** filter the rows returned */ - where?: (_map_pool_bool_exp | null)} }) - /** fetch aggregated fields from the table: "_map_pool" */ - _map_pool_aggregate?: (_map_pool_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (_map_pool_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (_map_pool_order_by[] | null), - /** filter the rows returned */ - where?: (_map_pool_bool_exp | null)} }) - /** fetch data from the table: "_map_pool" using primary key columns */ - _map_pool_by_pk?: (_map_poolGenqlSelection & { __args: {map_id: Scalars['uuid'], map_pool_id: Scalars['uuid']} }) - /** An array relationship */ - abandoned_matches?: (abandoned_matchesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (abandoned_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?: (abandoned_matches_order_by[] | null), - /** filter the rows returned */ - where?: (abandoned_matches_bool_exp | null)} }) - /** An aggregate relationship */ - abandoned_matches_aggregate?: (abandoned_matches_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (abandoned_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?: (abandoned_matches_order_by[] | null), - /** filter the rows returned */ - where?: (abandoned_matches_bool_exp | null)} }) - /** fetch data from the table: "abandoned_matches" using primary key columns */ - abandoned_matches_by_pk?: (abandoned_matchesGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** Ask which sightlines a playbook's smokes leave open */ - analyseUtilityPlaybookCoverage?: (UtilityPlaybookCoverageOutputGenqlSelection & { __args: {pairs: UtilitySightlinePairInput[], playbook_id: Scalars['uuid']} }) - /** fetch data from the table: "api_keys" */ - api_keys?: (api_keysGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (api_keys_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (api_keys_order_by[] | null), - /** filter the rows returned */ - where?: (api_keys_bool_exp | null)} }) - /** fetch aggregated fields from the table: "api_keys" */ - api_keys_aggregate?: (api_keys_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (api_keys_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (api_keys_order_by[] | null), - /** filter the rows returned */ - where?: (api_keys_bool_exp | null)} }) - /** fetch data from the table: "api_keys" using primary key columns */ - api_keys_by_pk?: (api_keysGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "award_recipients" */ - award_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)} }) - /** fetch aggregated fields from the table: "award_recipients" */ - award_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)} }) - /** fetch data from the table: "award_recipients" using primary key columns */ - award_recipients_by_pk?: (award_recipientsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "awards" */ - awards?: (awardsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (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?: (awards_order_by[] | null), - /** filter the rows returned */ - where?: (awards_bool_exp | null)} }) - /** fetch aggregated fields from the table: "awards" */ - awards_aggregate?: (awards_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (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?: (awards_order_by[] | null), - /** filter the rows returned */ - where?: (awards_bool_exp | null)} }) - /** fetch data from the table: "awards" using primary key columns */ - awards_by_pk?: (awardsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "chat_read_state" */ - chat_read_state?: (chat_read_stateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (chat_read_state_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (chat_read_state_order_by[] | null), - /** filter the rows returned */ - where?: (chat_read_state_bool_exp | null)} }) - /** fetch aggregated fields from the table: "chat_read_state" */ - chat_read_state_aggregate?: (chat_read_state_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (chat_read_state_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (chat_read_state_order_by[] | null), - /** filter the rows returned */ - where?: (chat_read_state_bool_exp | null)} }) - /** fetch data from the table: "chat_read_state" using primary key columns */ - chat_read_state_by_pk?: (chat_read_stateGenqlSelection & { __args: {steam_id: Scalars['bigint'], thread: Scalars['String']} }) - /** Ask whether a lineup's smoke makes an angle one-way */ - checkUtilityOneWay?: (UtilityOneWayOutputGenqlSelection & { __args: {lineup_id: Scalars['uuid'], pairs: UtilitySightlinePairInput[]} }) - /** Ask whether a lineup's smoke blocks a set of sightlines */ - checkUtilitySightlines?: (UtilitySightlineOutputGenqlSelection & { __args: {lineup_id: Scalars['uuid'], pairs: UtilitySightlinePairInput[], threshold?: (Scalars['Float'] | null)} }) - /** An array relationship */ - clip_render_jobs?: (clip_render_jobsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (clip_render_jobs_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (clip_render_jobs_order_by[] | null), - /** filter the rows returned */ - where?: (clip_render_jobs_bool_exp | null)} }) - /** An aggregate relationship */ - clip_render_jobs_aggregate?: (clip_render_jobs_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (clip_render_jobs_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (clip_render_jobs_order_by[] | null), - /** filter the rows returned */ - where?: (clip_render_jobs_bool_exp | null)} }) - /** fetch data from the table: "clip_render_jobs" using primary key columns */ - clip_render_jobs_by_pk?: (clip_render_jobsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "custom_pages" */ - custom_pages?: (custom_pagesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (custom_pages_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (custom_pages_order_by[] | null), - /** filter the rows returned */ - where?: (custom_pages_bool_exp | null)} }) - /** fetch aggregated fields from the table: "custom_pages" */ - custom_pages_aggregate?: (custom_pages_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (custom_pages_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (custom_pages_order_by[] | null), - /** filter the rows returned */ - where?: (custom_pages_bool_exp | null)} }) - /** fetch data from the table: "custom_pages" using primary key columns */ - custom_pages_by_pk?: (custom_pagesGenqlSelection & { __args: {id: Scalars['uuid']} }) - dbStats?: DbStatsGenqlSelection - /** fetch data from the table: "db_backups" */ - db_backups?: (db_backupsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (db_backups_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (db_backups_order_by[] | null), - /** filter the rows returned */ - where?: (db_backups_bool_exp | null)} }) - /** fetch aggregated fields from the table: "db_backups" */ - db_backups_aggregate?: (db_backups_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (db_backups_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (db_backups_order_by[] | null), - /** filter the rows returned */ - where?: (db_backups_bool_exp | null)} }) - /** fetch data from the table: "db_backups" using primary key columns */ - db_backups_by_pk?: (db_backupsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "direct_conversations" */ - direct_conversations?: (direct_conversationsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (direct_conversations_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (direct_conversations_order_by[] | null), - /** filter the rows returned */ - where?: (direct_conversations_bool_exp | null)} }) - /** fetch aggregated fields from the table: "direct_conversations" */ - direct_conversations_aggregate?: (direct_conversations_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (direct_conversations_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (direct_conversations_order_by[] | null), - /** filter the rows returned */ - where?: (direct_conversations_bool_exp | null)} }) - /** fetch data from the table: "direct_conversations" using primary key columns */ - direct_conversations_by_pk?: (direct_conversationsGenqlSelection & { __args: {room_id: Scalars['String'], steam_id: Scalars['bigint']} }) - /** fetch data from the table: "direct_messages" */ - direct_messages?: (direct_messagesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (direct_messages_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (direct_messages_order_by[] | null), - /** filter the rows returned */ - where?: (direct_messages_bool_exp | null)} }) - /** fetch aggregated fields from the table: "direct_messages" */ - direct_messages_aggregate?: (direct_messages_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (direct_messages_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (direct_messages_order_by[] | null), - /** filter the rows returned */ - where?: (direct_messages_bool_exp | null)} }) - /** fetch data from the table: "direct_messages" using primary key columns */ - direct_messages_by_pk?: (direct_messagesGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "draft_game_picks" */ - draft_game_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)} }) - /** fetch aggregated fields from the table: "draft_game_picks" */ - draft_game_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)} }) - /** fetch data from the table: "draft_game_picks" using primary key columns */ - draft_game_picks_by_pk?: (draft_game_picksGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** An array relationship */ - draft_game_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 */ - draft_game_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)} }) - /** fetch data from the table: "draft_game_players" using primary key columns */ - draft_game_players_by_pk?: (draft_game_playersGenqlSelection & { __args: {draft_game_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) - /** An array relationship */ - draft_games?: (draft_gamesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (draft_games_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_games_order_by[] | null), - /** filter the rows returned */ - where?: (draft_games_bool_exp | null)} }) - /** An aggregate relationship */ - draft_games_aggregate?: (draft_games_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (draft_games_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_games_order_by[] | null), - /** filter the rows returned */ - where?: (draft_games_bool_exp | null)} }) - /** fetch data from the table: "draft_games" using primary key columns */ - draft_games_by_pk?: (draft_gamesGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "e_award_sources" */ - e_award_sources?: (e_award_sourcesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_award_sources_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_award_sources_order_by[] | null), - /** filter the rows returned */ - where?: (e_award_sources_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_award_sources" */ - e_award_sources_aggregate?: (e_award_sources_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_award_sources_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_award_sources_order_by[] | null), - /** filter the rows returned */ - where?: (e_award_sources_bool_exp | null)} }) - /** fetch data from the table: "e_award_sources" using primary key columns */ - e_award_sources_by_pk?: (e_award_sourcesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_award_tiers" */ - e_award_tiers?: (e_award_tiersGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_award_tiers_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_award_tiers_order_by[] | null), - /** filter the rows returned */ - where?: (e_award_tiers_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_award_tiers" */ - e_award_tiers_aggregate?: (e_award_tiers_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_award_tiers_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_award_tiers_order_by[] | null), - /** filter the rows returned */ - where?: (e_award_tiers_bool_exp | null)} }) - /** fetch data from the table: "e_award_tiers" using primary key columns */ - e_award_tiers_by_pk?: (e_award_tiersGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_check_in_settings" */ - e_check_in_settings?: (e_check_in_settingsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_check_in_settings_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_check_in_settings_order_by[] | null), - /** filter the rows returned */ - where?: (e_check_in_settings_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_check_in_settings" */ - e_check_in_settings_aggregate?: (e_check_in_settings_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_check_in_settings_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_check_in_settings_order_by[] | null), - /** filter the rows returned */ - where?: (e_check_in_settings_bool_exp | null)} }) - /** fetch data from the table: "e_check_in_settings" using primary key columns */ - e_check_in_settings_by_pk?: (e_check_in_settingsGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_draft_game_captain_selection" */ - e_draft_game_captain_selection?: (e_draft_game_captain_selectionGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_draft_game_captain_selection_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_draft_game_captain_selection_order_by[] | null), - /** filter the rows returned */ - where?: (e_draft_game_captain_selection_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_draft_game_captain_selection" */ - e_draft_game_captain_selection_aggregate?: (e_draft_game_captain_selection_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_draft_game_captain_selection_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_draft_game_captain_selection_order_by[] | null), - /** filter the rows returned */ - where?: (e_draft_game_captain_selection_bool_exp | null)} }) - /** fetch data from the table: "e_draft_game_captain_selection" using primary key columns */ - e_draft_game_captain_selection_by_pk?: (e_draft_game_captain_selectionGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_draft_game_draft_order" */ - e_draft_game_draft_order?: (e_draft_game_draft_orderGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_draft_game_draft_order_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_draft_game_draft_order_order_by[] | null), - /** filter the rows returned */ - where?: (e_draft_game_draft_order_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_draft_game_draft_order" */ - e_draft_game_draft_order_aggregate?: (e_draft_game_draft_order_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_draft_game_draft_order_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_draft_game_draft_order_order_by[] | null), - /** filter the rows returned */ - where?: (e_draft_game_draft_order_bool_exp | null)} }) - /** fetch data from the table: "e_draft_game_draft_order" using primary key columns */ - e_draft_game_draft_order_by_pk?: (e_draft_game_draft_orderGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_draft_game_mode" */ - e_draft_game_mode?: (e_draft_game_modeGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_draft_game_mode_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_draft_game_mode_order_by[] | null), - /** filter the rows returned */ - where?: (e_draft_game_mode_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_draft_game_mode" */ - e_draft_game_mode_aggregate?: (e_draft_game_mode_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_draft_game_mode_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_draft_game_mode_order_by[] | null), - /** filter the rows returned */ - where?: (e_draft_game_mode_bool_exp | null)} }) - /** fetch data from the table: "e_draft_game_mode" using primary key columns */ - e_draft_game_mode_by_pk?: (e_draft_game_modeGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_draft_game_player_status" */ - e_draft_game_player_status?: (e_draft_game_player_statusGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_draft_game_player_status_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_draft_game_player_status_order_by[] | null), - /** filter the rows returned */ - where?: (e_draft_game_player_status_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_draft_game_player_status" */ - e_draft_game_player_status_aggregate?: (e_draft_game_player_status_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_draft_game_player_status_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_draft_game_player_status_order_by[] | null), - /** filter the rows returned */ - where?: (e_draft_game_player_status_bool_exp | null)} }) - /** fetch data from the table: "e_draft_game_player_status" using primary key columns */ - e_draft_game_player_status_by_pk?: (e_draft_game_player_statusGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_draft_game_status" */ - e_draft_game_status?: (e_draft_game_statusGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_draft_game_status_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_draft_game_status_order_by[] | null), - /** filter the rows returned */ - where?: (e_draft_game_status_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_draft_game_status" */ - e_draft_game_status_aggregate?: (e_draft_game_status_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_draft_game_status_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_draft_game_status_order_by[] | null), - /** filter the rows returned */ - where?: (e_draft_game_status_bool_exp | null)} }) - /** fetch data from the table: "e_draft_game_status" using primary key columns */ - e_draft_game_status_by_pk?: (e_draft_game_statusGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_event_media_access" */ - e_event_media_access?: (e_event_media_accessGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_event_media_access_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (e_event_media_access_order_by[] | null), - /** filter the rows returned */ - where?: (e_event_media_access_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_event_media_access" */ - e_event_media_access_aggregate?: (e_event_media_access_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_event_media_access_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (e_event_media_access_order_by[] | null), - /** filter the rows returned */ - where?: (e_event_media_access_bool_exp | null)} }) - /** fetch data from the table: "e_event_media_access" using primary key columns */ - e_event_media_access_by_pk?: (e_event_media_accessGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_event_visibility" */ - e_event_visibility?: (e_event_visibilityGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_event_visibility_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (e_event_visibility_order_by[] | null), - /** filter the rows returned */ - where?: (e_event_visibility_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_event_visibility" */ - e_event_visibility_aggregate?: (e_event_visibility_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_event_visibility_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (e_event_visibility_order_by[] | null), - /** filter the rows returned */ - where?: (e_event_visibility_bool_exp | null)} }) - /** fetch data from the table: "e_event_visibility" using primary key columns */ - e_event_visibility_by_pk?: (e_event_visibilityGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_friend_status" */ - e_friend_status?: (e_friend_statusGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_friend_status_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_friend_status_order_by[] | null), - /** filter the rows returned */ - where?: (e_friend_status_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_friend_status" */ - e_friend_status_aggregate?: (e_friend_status_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_friend_status_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_friend_status_order_by[] | null), - /** filter the rows returned */ - where?: (e_friend_status_bool_exp | null)} }) - /** fetch data from the table: "e_friend_status" using primary key columns */ - e_friend_status_by_pk?: (e_friend_statusGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_game_cfg_types" */ - e_game_cfg_types?: (e_game_cfg_typesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_game_cfg_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_cfg_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_game_cfg_types_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_game_cfg_types" */ - e_game_cfg_types_aggregate?: (e_game_cfg_types_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_game_cfg_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_cfg_types_order_by[] | null), - /** filter the rows returned */ - 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 */ - distinct_on?: (e_game_server_node_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_server_node_statuses_order_by[] | null), - /** filter the rows returned */ - where?: (e_game_server_node_statuses_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_game_server_node_statuses" */ - e_game_server_node_statuses_aggregate?: (e_game_server_node_statuses_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_game_server_node_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_server_node_statuses_order_by[] | null), - /** filter the rows returned */ - where?: (e_game_server_node_statuses_bool_exp | null)} }) - /** fetch data from the table: "e_game_server_node_statuses" using primary key columns */ - e_game_server_node_statuses_by_pk?: (e_game_server_node_statusesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_league_movement_types" */ - e_league_movement_types?: (e_league_movement_typesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_league_movement_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_league_movement_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_league_movement_types_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_league_movement_types" */ - e_league_movement_types_aggregate?: (e_league_movement_types_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_league_movement_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_league_movement_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_league_movement_types_bool_exp | null)} }) - /** fetch data from the table: "e_league_movement_types" using primary key columns */ - e_league_movement_types_by_pk?: (e_league_movement_typesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_league_proposal_statuses" */ - e_league_proposal_statuses?: (e_league_proposal_statusesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_league_proposal_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_league_proposal_statuses_order_by[] | null), - /** filter the rows returned */ - where?: (e_league_proposal_statuses_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_league_proposal_statuses" */ - e_league_proposal_statuses_aggregate?: (e_league_proposal_statuses_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_league_proposal_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_league_proposal_statuses_order_by[] | null), - /** filter the rows returned */ - where?: (e_league_proposal_statuses_bool_exp | null)} }) - /** fetch data from the table: "e_league_proposal_statuses" using primary key columns */ - e_league_proposal_statuses_by_pk?: (e_league_proposal_statusesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_league_registration_statuses" */ - e_league_registration_statuses?: (e_league_registration_statusesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_league_registration_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_league_registration_statuses_order_by[] | null), - /** filter the rows returned */ - where?: (e_league_registration_statuses_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_league_registration_statuses" */ - e_league_registration_statuses_aggregate?: (e_league_registration_statuses_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_league_registration_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_league_registration_statuses_order_by[] | null), - /** filter the rows returned */ - where?: (e_league_registration_statuses_bool_exp | null)} }) - /** fetch data from the table: "e_league_registration_statuses" using primary key columns */ - e_league_registration_statuses_by_pk?: (e_league_registration_statusesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_league_season_statuses" */ - e_league_season_statuses?: (e_league_season_statusesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_league_season_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_league_season_statuses_order_by[] | null), - /** filter the rows returned */ - where?: (e_league_season_statuses_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_league_season_statuses" */ - e_league_season_statuses_aggregate?: (e_league_season_statuses_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_league_season_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_league_season_statuses_order_by[] | null), - /** filter the rows returned */ - where?: (e_league_season_statuses_bool_exp | null)} }) - /** fetch data from the table: "e_league_season_statuses" using primary key columns */ - e_league_season_statuses_by_pk?: (e_league_season_statusesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_lobby_access" */ - e_lobby_access?: (e_lobby_accessGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_lobby_access_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (e_lobby_access_order_by[] | null), - /** filter the rows returned */ - where?: (e_lobby_access_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_lobby_access" */ - e_lobby_access_aggregate?: (e_lobby_access_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_lobby_access_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (e_lobby_access_order_by[] | null), - /** filter the rows returned */ - where?: (e_lobby_access_bool_exp | null)} }) - /** fetch data from the table: "e_lobby_access" using primary key columns */ - e_lobby_access_by_pk?: (e_lobby_accessGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_lobby_player_status" */ - e_lobby_player_status?: (e_lobby_player_statusGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_lobby_player_status_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_lobby_player_status_order_by[] | null), - /** filter the rows returned */ - where?: (e_lobby_player_status_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_lobby_player_status" */ - e_lobby_player_status_aggregate?: (e_lobby_player_status_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_lobby_player_status_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_lobby_player_status_order_by[] | null), - /** filter the rows returned */ - where?: (e_lobby_player_status_bool_exp | null)} }) - /** fetch data from the table: "e_lobby_player_status" using primary key columns */ - e_lobby_player_status_by_pk?: (e_lobby_player_statusGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_map_pool_types" */ - e_map_pool_types?: (e_map_pool_typesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_map_pool_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_map_pool_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_map_pool_types_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_map_pool_types" */ - e_map_pool_types_aggregate?: (e_map_pool_types_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_map_pool_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_map_pool_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_map_pool_types_bool_exp | null)} }) - /** fetch data from the table: "e_map_pool_types" using primary key columns */ - e_map_pool_types_by_pk?: (e_map_pool_typesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_match_clip_visibility" */ - e_match_clip_visibility?: (e_match_clip_visibilityGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_match_clip_visibility_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (e_match_clip_visibility_order_by[] | null), - /** filter the rows returned */ - where?: (e_match_clip_visibility_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_match_clip_visibility" */ - e_match_clip_visibility_aggregate?: (e_match_clip_visibility_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_match_clip_visibility_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (e_match_clip_visibility_order_by[] | null), - /** filter the rows returned */ - where?: (e_match_clip_visibility_bool_exp | null)} }) - /** fetch data from the table: "e_match_clip_visibility" using primary key columns */ - e_match_clip_visibility_by_pk?: (e_match_clip_visibilityGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_match_map_status" */ - e_match_map_status?: (e_match_map_statusGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_match_map_status_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_map_status_order_by[] | null), - /** filter the rows returned */ - where?: (e_match_map_status_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_match_map_status" */ - e_match_map_status_aggregate?: (e_match_map_status_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_match_map_status_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_map_status_order_by[] | null), - /** filter the rows returned */ - where?: (e_match_map_status_bool_exp | null)} }) - /** fetch data from the table: "e_match_map_status" using primary key columns */ - e_match_map_status_by_pk?: (e_match_map_statusGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_match_mode" */ - e_match_mode?: (e_match_modeGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_match_mode_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_mode_order_by[] | null), - /** filter the rows returned */ - where?: (e_match_mode_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_match_mode" */ - e_match_mode_aggregate?: (e_match_mode_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_match_mode_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_mode_order_by[] | null), - /** filter the rows returned */ - where?: (e_match_mode_bool_exp | null)} }) - /** fetch data from the table: "e_match_mode" using primary key columns */ - e_match_mode_by_pk?: (e_match_modeGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_match_party_sources" */ - e_match_party_sources?: (e_match_party_sourcesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_match_party_sources_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_party_sources_order_by[] | null), - /** filter the rows returned */ - where?: (e_match_party_sources_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_match_party_sources" */ - e_match_party_sources_aggregate?: (e_match_party_sources_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_match_party_sources_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_party_sources_order_by[] | null), - /** filter the rows returned */ - where?: (e_match_party_sources_bool_exp | null)} }) - /** fetch data from the table: "e_match_party_sources" using primary key columns */ - e_match_party_sources_by_pk?: (e_match_party_sourcesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_match_status" */ - e_match_status?: (e_match_statusGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_match_status_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_status_order_by[] | null), - /** filter the rows returned */ - where?: (e_match_status_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_match_status" */ - e_match_status_aggregate?: (e_match_status_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_match_status_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_status_order_by[] | null), - /** filter the rows returned */ - where?: (e_match_status_bool_exp | null)} }) - /** fetch data from the table: "e_match_status" using primary key columns */ - e_match_status_by_pk?: (e_match_statusGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_match_types" */ - e_match_types?: (e_match_typesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_match_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_match_types_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_match_types" */ - e_match_types_aggregate?: (e_match_types_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_match_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_match_types_bool_exp | null)} }) - /** fetch data from the table: "e_match_types" using primary key columns */ - e_match_types_by_pk?: (e_match_typesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_notification_types" */ - e_notification_types?: (e_notification_typesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_notification_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_notification_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_notification_types_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_notification_types" */ - e_notification_types_aggregate?: (e_notification_types_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_notification_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_notification_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_notification_types_bool_exp | null)} }) - /** fetch data from the table: "e_notification_types" using primary key columns */ - e_notification_types_by_pk?: (e_notification_typesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_objective_types" */ - e_objective_types?: (e_objective_typesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_objective_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_objective_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_objective_types_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_objective_types" */ - e_objective_types_aggregate?: (e_objective_types_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_objective_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_objective_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_objective_types_bool_exp | null)} }) - /** fetch data from the table: "e_objective_types" using primary key columns */ - e_objective_types_by_pk?: (e_objective_typesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_player_roles" */ - e_player_roles?: (e_player_rolesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_player_roles_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_roles_order_by[] | null), - /** filter the rows returned */ - where?: (e_player_roles_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_player_roles" */ - e_player_roles_aggregate?: (e_player_roles_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_player_roles_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_roles_order_by[] | null), - /** filter the rows returned */ - where?: (e_player_roles_bool_exp | null)} }) - /** fetch data from the table: "e_player_roles" using primary key columns */ - e_player_roles_by_pk?: (e_player_rolesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_plugin_runtimes" */ - e_plugin_runtimes?: (e_plugin_runtimesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_plugin_runtimes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_plugin_runtimes_order_by[] | null), - /** filter the rows returned */ - where?: (e_plugin_runtimes_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_plugin_runtimes" */ - e_plugin_runtimes_aggregate?: (e_plugin_runtimes_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_plugin_runtimes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_plugin_runtimes_order_by[] | null), - /** filter the rows returned */ - where?: (e_plugin_runtimes_bool_exp | null)} }) - /** fetch data from the table: "e_plugin_runtimes" using primary key columns */ - e_plugin_runtimes_by_pk?: (e_plugin_runtimesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_ready_settings" */ - e_ready_settings?: (e_ready_settingsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_ready_settings_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_ready_settings_order_by[] | null), - /** filter the rows returned */ - where?: (e_ready_settings_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_ready_settings" */ - e_ready_settings_aggregate?: (e_ready_settings_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_ready_settings_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_ready_settings_order_by[] | null), - /** filter the rows returned */ - where?: (e_ready_settings_bool_exp | null)} }) - /** fetch data from the table: "e_ready_settings" using primary key columns */ - e_ready_settings_by_pk?: (e_ready_settingsGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_sanction_scopes" */ - e_sanction_scopes?: (e_sanction_scopesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_sanction_scopes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_sanction_scopes_order_by[] | null), - /** filter the rows returned */ - where?: (e_sanction_scopes_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_sanction_scopes" */ - e_sanction_scopes_aggregate?: (e_sanction_scopes_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_sanction_scopes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_sanction_scopes_order_by[] | null), - /** filter the rows returned */ - where?: (e_sanction_scopes_bool_exp | null)} }) - /** fetch data from the table: "e_sanction_scopes" using primary key columns */ - e_sanction_scopes_by_pk?: (e_sanction_scopesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_sanction_sources" */ - e_sanction_sources?: (e_sanction_sourcesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_sanction_sources_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_sanction_sources_order_by[] | null), - /** filter the rows returned */ - where?: (e_sanction_sources_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_sanction_sources" */ - e_sanction_sources_aggregate?: (e_sanction_sources_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_sanction_sources_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_sanction_sources_order_by[] | null), - /** filter the rows returned */ - where?: (e_sanction_sources_bool_exp | null)} }) - /** fetch data from the table: "e_sanction_sources" using primary key columns */ - e_sanction_sources_by_pk?: (e_sanction_sourcesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_sanction_types" */ - e_sanction_types?: (e_sanction_typesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_sanction_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_sanction_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_sanction_types_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_sanction_types" */ - e_sanction_types_aggregate?: (e_sanction_types_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_sanction_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_sanction_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_sanction_types_bool_exp | null)} }) - /** fetch data from the table: "e_sanction_types" using primary key columns */ - e_sanction_types_by_pk?: (e_sanction_typesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_scrim_request_statuses" */ - e_scrim_request_statuses?: (e_scrim_request_statusesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_scrim_request_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_scrim_request_statuses_order_by[] | null), - /** filter the rows returned */ - where?: (e_scrim_request_statuses_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_scrim_request_statuses" */ - e_scrim_request_statuses_aggregate?: (e_scrim_request_statuses_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_scrim_request_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_scrim_request_statuses_order_by[] | null), - /** filter the rows returned */ - where?: (e_scrim_request_statuses_bool_exp | null)} }) - /** fetch data from the table: "e_scrim_request_statuses" using primary key columns */ - e_scrim_request_statuses_by_pk?: (e_scrim_request_statusesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_server_types" */ - e_server_types?: (e_server_typesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_server_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_server_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_server_types_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_server_types" */ - e_server_types_aggregate?: (e_server_types_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_server_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_server_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_server_types_bool_exp | null)} }) - /** fetch data from the table: "e_server_types" using primary key columns */ - e_server_types_by_pk?: (e_server_typesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_sides" */ - e_sides?: (e_sidesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_sides_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_sides_order_by[] | null), - /** filter the rows returned */ - where?: (e_sides_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_sides" */ - e_sides_aggregate?: (e_sides_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_sides_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_sides_order_by[] | null), - /** filter the rows returned */ - where?: (e_sides_bool_exp | null)} }) - /** fetch data from the table: "e_sides" using primary key columns */ - e_sides_by_pk?: (e_sidesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_system_alert_types" */ - e_system_alert_types?: (e_system_alert_typesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_system_alert_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_system_alert_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_system_alert_types_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_system_alert_types" */ - e_system_alert_types_aggregate?: (e_system_alert_types_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_system_alert_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_system_alert_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_system_alert_types_bool_exp | null)} }) - /** fetch data from the table: "e_system_alert_types" using primary key columns */ - e_system_alert_types_by_pk?: (e_system_alert_typesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_team_roles" */ - e_team_roles?: (e_team_rolesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_team_roles_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_team_roles_order_by[] | null), - /** filter the rows returned */ - where?: (e_team_roles_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_team_roles" */ - e_team_roles_aggregate?: (e_team_roles_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_team_roles_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_team_roles_order_by[] | null), - /** filter the rows returned */ - where?: (e_team_roles_bool_exp | null)} }) - /** fetch data from the table: "e_team_roles" using primary key columns */ - e_team_roles_by_pk?: (e_team_rolesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_team_roster_statuses" */ - e_team_roster_statuses?: (e_team_roster_statusesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_team_roster_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_team_roster_statuses_order_by[] | null), - /** filter the rows returned */ - where?: (e_team_roster_statuses_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_team_roster_statuses" */ - e_team_roster_statuses_aggregate?: (e_team_roster_statuses_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_team_roster_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_team_roster_statuses_order_by[] | null), - /** filter the rows returned */ - where?: (e_team_roster_statuses_bool_exp | null)} }) - /** fetch data from the table: "e_team_roster_statuses" using primary key columns */ - e_team_roster_statuses_by_pk?: (e_team_roster_statusesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_timeout_settings" */ - e_timeout_settings?: (e_timeout_settingsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_timeout_settings_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_timeout_settings_order_by[] | null), - /** filter the rows returned */ - where?: (e_timeout_settings_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_timeout_settings" */ - e_timeout_settings_aggregate?: (e_timeout_settings_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_timeout_settings_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_timeout_settings_order_by[] | null), - /** filter the rows returned */ - where?: (e_timeout_settings_bool_exp | null)} }) - /** fetch data from the table: "e_timeout_settings" using primary key columns */ - e_timeout_settings_by_pk?: (e_timeout_settingsGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_tournament_categories" */ - e_tournament_categories?: (e_tournament_categoriesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_tournament_categories_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (e_tournament_categories_order_by[] | null), - /** filter the rows returned */ - where?: (e_tournament_categories_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_tournament_categories" */ - e_tournament_categories_aggregate?: (e_tournament_categories_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_tournament_categories_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (e_tournament_categories_order_by[] | null), - /** filter the rows returned */ - where?: (e_tournament_categories_bool_exp | null)} }) - /** fetch data from the table: "e_tournament_categories" using primary key columns */ - e_tournament_categories_by_pk?: (e_tournament_categoriesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_tournament_free_agent_statuses" */ - e_tournament_free_agent_statuses?: (e_tournament_free_agent_statusesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_tournament_free_agent_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_tournament_free_agent_statuses_order_by[] | null), - /** filter the rows returned */ - where?: (e_tournament_free_agent_statuses_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_tournament_free_agent_statuses" */ - e_tournament_free_agent_statuses_aggregate?: (e_tournament_free_agent_statuses_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_tournament_free_agent_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_tournament_free_agent_statuses_order_by[] | null), - /** filter the rows returned */ - where?: (e_tournament_free_agent_statuses_bool_exp | null)} }) - /** fetch data from the table: "e_tournament_free_agent_statuses" using primary key columns */ - e_tournament_free_agent_statuses_by_pk?: (e_tournament_free_agent_statusesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_tournament_registration_types" */ - e_tournament_registration_types?: (e_tournament_registration_typesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_tournament_registration_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (e_tournament_registration_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_tournament_registration_types_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_tournament_registration_types" */ - e_tournament_registration_types_aggregate?: (e_tournament_registration_types_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_tournament_registration_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (e_tournament_registration_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_tournament_registration_types_bool_exp | null)} }) - /** fetch data from the table: "e_tournament_registration_types" using primary key columns */ - e_tournament_registration_types_by_pk?: (e_tournament_registration_typesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_tournament_stage_types" */ - e_tournament_stage_types?: (e_tournament_stage_typesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_tournament_stage_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (e_tournament_stage_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_tournament_stage_types_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_tournament_stage_types" */ - e_tournament_stage_types_aggregate?: (e_tournament_stage_types_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_tournament_stage_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (e_tournament_stage_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_tournament_stage_types_bool_exp | null)} }) - /** fetch data from the table: "e_tournament_stage_types" using primary key columns */ - e_tournament_stage_types_by_pk?: (e_tournament_stage_typesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_tournament_status" */ - e_tournament_status?: (e_tournament_statusGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_tournament_status_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (e_tournament_status_order_by[] | null), - /** filter the rows returned */ - where?: (e_tournament_status_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_tournament_status" */ - e_tournament_status_aggregate?: (e_tournament_status_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_tournament_status_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (e_tournament_status_order_by[] | null), - /** filter the rows returned */ - where?: (e_tournament_status_bool_exp | null)} }) - /** fetch data from the table: "e_tournament_status" using primary key columns */ - e_tournament_status_by_pk?: (e_tournament_statusGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_utility_practice_access" */ - e_utility_practice_access?: (e_utility_practice_accessGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_utility_practice_access_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (e_utility_practice_access_order_by[] | null), - /** filter the rows returned */ - where?: (e_utility_practice_access_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_utility_practice_access" */ - e_utility_practice_access_aggregate?: (e_utility_practice_access_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_utility_practice_access_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (e_utility_practice_access_order_by[] | null), - /** filter the rows returned */ - where?: (e_utility_practice_access_bool_exp | null)} }) - /** fetch data from the table: "e_utility_practice_access" using primary key columns */ - e_utility_practice_access_by_pk?: (e_utility_practice_accessGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_utility_practice_statuses" */ - e_utility_practice_statuses?: (e_utility_practice_statusesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_utility_practice_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_utility_practice_statuses_order_by[] | null), - /** filter the rows returned */ - where?: (e_utility_practice_statuses_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_utility_practice_statuses" */ - e_utility_practice_statuses_aggregate?: (e_utility_practice_statuses_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_utility_practice_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_utility_practice_statuses_order_by[] | null), - /** filter the rows returned */ - where?: (e_utility_practice_statuses_bool_exp | null)} }) - /** fetch data from the table: "e_utility_practice_statuses" using primary key columns */ - e_utility_practice_statuses_by_pk?: (e_utility_practice_statusesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_utility_sources" */ - e_utility_sources?: (e_utility_sourcesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_utility_sources_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_utility_sources_order_by[] | null), - /** filter the rows returned */ - where?: (e_utility_sources_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_utility_sources" */ - e_utility_sources_aggregate?: (e_utility_sources_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_utility_sources_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_utility_sources_order_by[] | null), - /** filter the rows returned */ - where?: (e_utility_sources_bool_exp | null)} }) - /** fetch data from the table: "e_utility_sources" using primary key columns */ - e_utility_sources_by_pk?: (e_utility_sourcesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_utility_techniques" */ - e_utility_techniques?: (e_utility_techniquesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_utility_techniques_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_utility_techniques_order_by[] | null), - /** filter the rows returned */ - where?: (e_utility_techniques_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_utility_techniques" */ - e_utility_techniques_aggregate?: (e_utility_techniques_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_utility_techniques_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_utility_techniques_order_by[] | null), - /** filter the rows returned */ - where?: (e_utility_techniques_bool_exp | null)} }) - /** fetch data from the table: "e_utility_techniques" using primary key columns */ - e_utility_techniques_by_pk?: (e_utility_techniquesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_utility_throw_strengths" */ - e_utility_throw_strengths?: (e_utility_throw_strengthsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_utility_throw_strengths_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_utility_throw_strengths_order_by[] | null), - /** filter the rows returned */ - where?: (e_utility_throw_strengths_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_utility_throw_strengths" */ - e_utility_throw_strengths_aggregate?: (e_utility_throw_strengths_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_utility_throw_strengths_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_utility_throw_strengths_order_by[] | null), - /** filter the rows returned */ - where?: (e_utility_throw_strengths_bool_exp | null)} }) - /** fetch data from the table: "e_utility_throw_strengths" using primary key columns */ - e_utility_throw_strengths_by_pk?: (e_utility_throw_strengthsGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_utility_types" */ - e_utility_types?: (e_utility_typesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_utility_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_utility_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_utility_types_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_utility_types" */ - e_utility_types_aggregate?: (e_utility_types_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_utility_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_utility_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_utility_types_bool_exp | null)} }) - /** fetch data from the table: "e_utility_types" using primary key columns */ - e_utility_types_by_pk?: (e_utility_typesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_utility_visibility" */ - e_utility_visibility?: (e_utility_visibilityGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_utility_visibility_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (e_utility_visibility_order_by[] | null), - /** filter the rows returned */ - where?: (e_utility_visibility_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_utility_visibility" */ - e_utility_visibility_aggregate?: (e_utility_visibility_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_utility_visibility_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (e_utility_visibility_order_by[] | null), - /** filter the rows returned */ - where?: (e_utility_visibility_bool_exp | null)} }) - /** fetch data from the table: "e_utility_visibility" using primary key columns */ - e_utility_visibility_by_pk?: (e_utility_visibilityGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_veto_pick_types" */ - e_veto_pick_types?: (e_veto_pick_typesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_veto_pick_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_veto_pick_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_veto_pick_types_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_veto_pick_types" */ - e_veto_pick_types_aggregate?: (e_veto_pick_types_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_veto_pick_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_veto_pick_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_veto_pick_types_bool_exp | null)} }) - /** fetch data from the table: "e_veto_pick_types" using primary key columns */ - e_veto_pick_types_by_pk?: (e_veto_pick_typesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_winning_reasons" */ - e_winning_reasons?: (e_winning_reasonsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_winning_reasons_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_winning_reasons_order_by[] | null), - /** filter the rows returned */ - where?: (e_winning_reasons_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_winning_reasons" */ - e_winning_reasons_aggregate?: (e_winning_reasons_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_winning_reasons_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_winning_reasons_order_by[] | null), - /** filter the rows returned */ - where?: (e_winning_reasons_bool_exp | null)} }) - /** fetch data from the table: "e_winning_reasons" using primary key columns */ - e_winning_reasons_by_pk?: (e_winning_reasonsGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "event_match_links" */ - event_match_links?: (event_match_linksGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (event_match_links_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (event_match_links_order_by[] | null), - /** filter the rows returned */ - where?: (event_match_links_bool_exp | null)} }) - /** fetch aggregated fields from the table: "event_match_links" */ - event_match_links_aggregate?: (event_match_links_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (event_match_links_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (event_match_links_order_by[] | null), - /** filter the rows returned */ - where?: (event_match_links_bool_exp | null)} }) - /** fetch data from the table: "event_match_links" using primary key columns */ - event_match_links_by_pk?: (event_match_linksGenqlSelection & { __args: {event_id: Scalars['uuid'], match_id: Scalars['uuid']} }) - /** fetch data from the table: "event_media" */ - event_media?: (event_mediaGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (event_media_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (event_media_order_by[] | null), - /** filter the rows returned */ - where?: (event_media_bool_exp | null)} }) - /** fetch aggregated fields from the table: "event_media" */ - event_media_aggregate?: (event_media_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (event_media_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (event_media_order_by[] | null), - /** filter the rows returned */ - where?: (event_media_bool_exp | null)} }) - /** fetch data from the table: "event_media" using primary key columns */ - event_media_by_pk?: (event_mediaGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "event_media_players" */ - event_media_players?: (event_media_playersGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (event_media_players_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (event_media_players_order_by[] | null), - /** filter the rows returned */ - where?: (event_media_players_bool_exp | null)} }) - /** fetch aggregated fields from the table: "event_media_players" */ - event_media_players_aggregate?: (event_media_players_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (event_media_players_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (event_media_players_order_by[] | null), - /** filter the rows returned */ - where?: (event_media_players_bool_exp | null)} }) - /** fetch data from the table: "event_media_players" using primary key columns */ - event_media_players_by_pk?: (event_media_playersGenqlSelection & { __args: {media_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) - /** fetch data from the table: "event_organizers" */ - event_organizers?: (event_organizersGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (event_organizers_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (event_organizers_order_by[] | null), - /** filter the rows returned */ - where?: (event_organizers_bool_exp | null)} }) - /** fetch aggregated fields from the table: "event_organizers" */ - event_organizers_aggregate?: (event_organizers_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (event_organizers_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (event_organizers_order_by[] | null), - /** filter the rows returned */ - where?: (event_organizers_bool_exp | null)} }) - /** fetch data from the table: "event_organizers" using primary key columns */ - event_organizers_by_pk?: (event_organizersGenqlSelection & { __args: {event_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) - /** fetch data from the table: "event_players" */ - event_players?: (event_playersGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (event_players_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (event_players_order_by[] | null), - /** filter the rows returned */ - where?: (event_players_bool_exp | null)} }) - /** fetch aggregated fields from the table: "event_players" */ - event_players_aggregate?: (event_players_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (event_players_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (event_players_order_by[] | null), - /** filter the rows returned */ - where?: (event_players_bool_exp | null)} }) - /** fetch data from the table: "event_players" using primary key columns */ - event_players_by_pk?: (event_playersGenqlSelection & { __args: {event_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) - /** fetch data from the table: "event_teams" */ - event_teams?: (event_teamsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (event_teams_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (event_teams_order_by[] | null), - /** filter the rows returned */ - where?: (event_teams_bool_exp | null)} }) - /** fetch aggregated fields from the table: "event_teams" */ - event_teams_aggregate?: (event_teams_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (event_teams_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (event_teams_order_by[] | null), - /** filter the rows returned */ - where?: (event_teams_bool_exp | null)} }) - /** fetch data from the table: "event_teams" using primary key columns */ - event_teams_by_pk?: (event_teamsGenqlSelection & { __args: {event_id: Scalars['uuid'], team_id: Scalars['uuid']} }) - /** fetch data from the table: "event_tournaments" */ - event_tournaments?: (event_tournamentsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (event_tournaments_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (event_tournaments_order_by[] | null), - /** filter the rows returned */ - where?: (event_tournaments_bool_exp | null)} }) - /** fetch aggregated fields from the table: "event_tournaments" */ - event_tournaments_aggregate?: (event_tournaments_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (event_tournaments_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (event_tournaments_order_by[] | null), - /** filter the rows returned */ - where?: (event_tournaments_bool_exp | null)} }) - /** fetch data from the table: "event_tournaments" using primary key columns */ - event_tournaments_by_pk?: (event_tournamentsGenqlSelection & { __args: {event_id: Scalars['uuid'], tournament_id: Scalars['uuid']} }) - /** fetch data from the table: "events" */ - events?: (eventsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (events_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (events_order_by[] | null), - /** filter the rows returned */ - where?: (events_bool_exp | null)} }) - /** fetch aggregated fields from the table: "events" */ - events_aggregate?: (events_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (events_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (events_order_by[] | null), - /** filter the rows returned */ - where?: (events_bool_exp | null)} }) - /** fetch data from the table: "events" using primary key columns */ - events_by_pk?: (eventsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** Find the saved smokes that close a given sightline */ - findUtilityLineupsBlocking?: (UtilityBlockingOutputGenqlSelection & { __args: {from_x: Scalars['Float'], from_y: Scalars['Float'], from_z: Scalars['Float'], limit?: (Scalars['Int'] | null), map_name: Scalars['String'], side?: (Scalars['String'] | null), to_x: Scalars['Float'], to_y: Scalars['Float'], to_z: Scalars['Float']} }) - /** fetch data from the table: "friends" */ - friends?: (friendsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (friends_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (friends_order_by[] | null), - /** filter the rows returned */ - where?: (friends_bool_exp | null)} }) - /** fetch aggregated fields from the table: "friends" */ - friends_aggregate?: (friends_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (friends_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (friends_order_by[] | null), - /** filter the rows returned */ - 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 */ - distinct_on?: (game_server_nodes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_nodes_order_by[] | null), - /** filter the rows returned */ - where?: (game_server_nodes_bool_exp | null)} }) - /** An aggregate relationship */ - game_server_nodes_aggregate?: (game_server_nodes_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (game_server_nodes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_nodes_order_by[] | null), - /** filter the rows returned */ - where?: (game_server_nodes_bool_exp | null)} }) - /** fetch data from the table: "game_server_nodes" using primary key columns */ - game_server_nodes_by_pk?: (game_server_nodesGenqlSelection & { __args: {id: Scalars['String']} }) - /** fetch data from the table: "game_versions" */ - game_versions?: (game_versionsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (game_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_versions_order_by[] | null), - /** filter the rows returned */ - where?: (game_versions_bool_exp | null)} }) - /** fetch aggregated fields from the table: "game_versions" */ - game_versions_aggregate?: (game_versions_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (game_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_versions_order_by[] | null), - /** filter the rows returned */ - where?: (game_versions_bool_exp | null)} }) - /** fetch data from the table: "game_versions" using primary key columns */ - game_versions_by_pk?: (game_versionsGenqlSelection & { __args: {build_id: Scalars['Int']} }) - /** fetch data from the table: "gamedata_signature_validations" */ - gamedata_signature_validations?: (gamedata_signature_validationsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (gamedata_signature_validations_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (gamedata_signature_validations_order_by[] | null), - /** filter the rows returned */ - where?: (gamedata_signature_validations_bool_exp | null)} }) - /** fetch aggregated fields from the table: "gamedata_signature_validations" */ - gamedata_signature_validations_aggregate?: (gamedata_signature_validations_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (gamedata_signature_validations_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (gamedata_signature_validations_order_by[] | null), - /** filter the rows returned */ - where?: (gamedata_signature_validations_bool_exp | null)} }) - /** fetch data from the table: "gamedata_signature_validations" using primary key columns */ - gamedata_signature_validations_by_pk?: (gamedata_signature_validationsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** Get list of active connections */ - getActiveConnections?: ActiveConnectionGenqlSelection - /** Get currently executing queries */ - getActiveQueries?: ActiveQueryGenqlSelection - /** Get connection statistics */ - getConnectionStats?: ConnectionStatsGenqlSelection - /** Get current database locks */ - getCurrentLocks?: LockInfoGenqlSelection - /** Get database-wide statistics */ - getDatabaseStats?: DatabaseStatsGenqlSelection - getDedicatedServerInfo?: DedicatedSeverInfoGenqlSelection - getDedicatedServerPlayers?: (ServerPlayerGenqlSelection & { __args: {serverId: Scalars['String']} }) - /** Which highlight presets have content for a player on a map's demo */ - getHighlightPresetAvailability?: (HighlightPresetAvailabilityGenqlSelection & { __args: {match_map_id: Scalars['uuid'], target_steam_id: Scalars['String']} }) - /** Get index I/O statistics */ - getIndexIOStats?: (IndexIOStatGenqlSelection & { __args?: {schemas?: (Scalars['String'][] | null)} }) - /** Get index usage statistics */ - getIndexStats?: (IndexStatGenqlSelection & { __args?: {schemas?: (Scalars['String'][] | null)} }) - getNodeStats?: (NodeStatsGenqlSelection & { __args: {node: Scalars['String']} }) - /** Get detailed query analysis with EXPLAIN plan */ - getQueryDetail?: (QueryDetailGenqlSelection & { __args: {queryid: Scalars['String']} }) - /** Get enhanced query performance statistics */ - getQueryStats?: QueryStatGenqlSelection - /** Get available database schemas */ - getSchemas?: boolean | number - getServiceStats?: PodStatsGenqlSelection - /** Get database storage statistics and reclaimable space */ - getStorageStats?: (StorageStatsGenqlSelection & { __args?: {schemas?: (Scalars['String'][] | null)} }) - /** Get table I/O statistics */ - getTableIOStats?: (TableIOStatGenqlSelection & { __args?: {schemas?: (Scalars['String'][] | null)} }) - /** Get table access statistics */ - getTableStats?: (TableStatGenqlSelection & { __args?: {schemas?: (Scalars['String'][] | null)} }) - /** Get TimescaleDB statistics */ - getTimescaleStats?: TimescaleStatsGenqlSelection - /** execute function "get_event_leaderboard" which returns "leaderboard_entries" */ - get_event_leaderboard?: (leaderboard_entriesGenqlSelection & { __args: { - /** input parameters for function "get_event_leaderboard" */ - args: get_event_leaderboard_args, - /** distinct select on columns */ - distinct_on?: (leaderboard_entries_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (leaderboard_entries_order_by[] | null), - /** filter the rows returned */ - where?: (leaderboard_entries_bool_exp | null)} }) - /** execute function "get_event_leaderboard" and query aggregates on result of table type "leaderboard_entries" */ - get_event_leaderboard_aggregate?: (leaderboard_entries_aggregateGenqlSelection & { __args: { - /** input parameters for function "get_event_leaderboard_aggregate" */ - args: get_event_leaderboard_args, - /** distinct select on columns */ - distinct_on?: (leaderboard_entries_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (leaderboard_entries_order_by[] | null), - /** filter the rows returned */ - where?: (leaderboard_entries_bool_exp | null)} }) - /** execute function "get_leaderboard" which returns "leaderboard_entries" */ - get_leaderboard?: (leaderboard_entriesGenqlSelection & { __args: { - /** input parameters for function "get_leaderboard" */ - args: get_leaderboard_args, - /** distinct select on columns */ - distinct_on?: (leaderboard_entries_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (leaderboard_entries_order_by[] | null), - /** filter the rows returned */ - where?: (leaderboard_entries_bool_exp | null)} }) - /** execute function "get_leaderboard" and query aggregates on result of table type "leaderboard_entries" */ - get_leaderboard_aggregate?: (leaderboard_entries_aggregateGenqlSelection & { __args: { - /** input parameters for function "get_leaderboard_aggregate" */ - args: get_leaderboard_args, - /** distinct select on columns */ - distinct_on?: (leaderboard_entries_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (leaderboard_entries_order_by[] | null), - /** filter the rows returned */ - where?: (leaderboard_entries_bool_exp | null)} }) - /** execute function "get_league_season_leaderboard" which returns "leaderboard_entries" */ - get_league_season_leaderboard?: (leaderboard_entriesGenqlSelection & { __args: { - /** input parameters for function "get_league_season_leaderboard" */ - args: get_league_season_leaderboard_args, - /** distinct select on columns */ - distinct_on?: (leaderboard_entries_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (leaderboard_entries_order_by[] | null), - /** filter the rows returned */ - where?: (leaderboard_entries_bool_exp | null)} }) - /** execute function "get_league_season_leaderboard" and query aggregates on result of table type "leaderboard_entries" */ - get_league_season_leaderboard_aggregate?: (leaderboard_entries_aggregateGenqlSelection & { __args: { - /** input parameters for function "get_league_season_leaderboard_aggregate" */ - args: get_league_season_leaderboard_args, - /** distinct select on columns */ - distinct_on?: (leaderboard_entries_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (leaderboard_entries_order_by[] | null), - /** filter the rows returned */ - where?: (leaderboard_entries_bool_exp | null)} }) - /** execute function "get_player_leaderboard_rank" which returns "player_leaderboard_rank" */ - get_player_leaderboard_rank?: (player_leaderboard_rankGenqlSelection & { __args: { - /** input parameters for function "get_player_leaderboard_rank" */ - args: get_player_leaderboard_rank_args, - /** distinct select on columns */ - distinct_on?: (player_leaderboard_rank_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_leaderboard_rank_order_by[] | null), - /** filter the rows returned */ - where?: (player_leaderboard_rank_bool_exp | null)} }) - /** execute function "get_player_leaderboard_rank" and query aggregates on result of table type "player_leaderboard_rank" */ - get_player_leaderboard_rank_aggregate?: (player_leaderboard_rank_aggregateGenqlSelection & { __args: { - /** input parameters for function "get_player_leaderboard_rank_aggregate" */ - args: get_player_leaderboard_rank_args, - /** distinct select on columns */ - distinct_on?: (player_leaderboard_rank_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_leaderboard_rank_order_by[] | null), - /** filter the rows returned */ - where?: (player_leaderboard_rank_bool_exp | null)} }) - /** execute function "get_tournament_leaderboard" which returns "tournament_leaderboard_entries" */ - get_tournament_leaderboard?: (tournament_leaderboard_entriesGenqlSelection & { __args: { - /** input parameters for function "get_tournament_leaderboard" */ - args: get_tournament_leaderboard_args, - /** distinct select on columns */ - distinct_on?: (tournament_leaderboard_entries_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (tournament_leaderboard_entries_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_leaderboard_entries_bool_exp | null)} }) - /** execute function "get_tournament_leaderboard" and query aggregates on result of table type "tournament_leaderboard_entries" */ - get_tournament_leaderboard_aggregate?: (tournament_leaderboard_entries_aggregateGenqlSelection & { __args: { - /** input parameters for function "get_tournament_leaderboard_aggregate" */ - args: get_tournament_leaderboard_args, - /** distinct select on columns */ - distinct_on?: (tournament_leaderboard_entries_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (tournament_leaderboard_entries_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_leaderboard_entries_bool_exp | null)} }) - /** fetch data from the table: "leaderboard_entries" */ - leaderboard_entries?: (leaderboard_entriesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (leaderboard_entries_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (leaderboard_entries_order_by[] | null), - /** filter the rows returned */ - where?: (leaderboard_entries_bool_exp | null)} }) - /** fetch aggregated fields from the table: "leaderboard_entries" */ - leaderboard_entries_aggregate?: (leaderboard_entries_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (leaderboard_entries_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (leaderboard_entries_order_by[] | null), - /** filter the rows returned */ - where?: (leaderboard_entries_bool_exp | null)} }) - /** fetch data from the table: "league_divisions" */ - league_divisions?: (league_divisionsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_divisions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_divisions_order_by[] | null), - /** filter the rows returned */ - where?: (league_divisions_bool_exp | null)} }) - /** fetch aggregated fields from the table: "league_divisions" */ - league_divisions_aggregate?: (league_divisions_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_divisions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_divisions_order_by[] | null), - /** filter the rows returned */ - where?: (league_divisions_bool_exp | null)} }) - /** fetch data from the table: "league_divisions" using primary key columns */ - league_divisions_by_pk?: (league_divisionsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "league_match_weeks" */ - league_match_weeks?: (league_match_weeksGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_match_weeks_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_match_weeks_order_by[] | null), - /** filter the rows returned */ - where?: (league_match_weeks_bool_exp | null)} }) - /** fetch aggregated fields from the table: "league_match_weeks" */ - league_match_weeks_aggregate?: (league_match_weeks_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_match_weeks_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_match_weeks_order_by[] | null), - /** filter the rows returned */ - where?: (league_match_weeks_bool_exp | null)} }) - /** fetch data from the table: "league_match_weeks" using primary key columns */ - league_match_weeks_by_pk?: (league_match_weeksGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "league_relegation_playoffs" */ - league_relegation_playoffs?: (league_relegation_playoffsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_relegation_playoffs_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_relegation_playoffs_order_by[] | null), - /** filter the rows returned */ - where?: (league_relegation_playoffs_bool_exp | null)} }) - /** fetch aggregated fields from the table: "league_relegation_playoffs" */ - league_relegation_playoffs_aggregate?: (league_relegation_playoffs_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_relegation_playoffs_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_relegation_playoffs_order_by[] | null), - /** filter the rows returned */ - where?: (league_relegation_playoffs_bool_exp | null)} }) - /** fetch data from the table: "league_relegation_playoffs" using primary key columns */ - league_relegation_playoffs_by_pk?: (league_relegation_playoffsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "league_scheduling_proposals" */ - league_scheduling_proposals?: (league_scheduling_proposalsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_scheduling_proposals_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_scheduling_proposals_order_by[] | null), - /** filter the rows returned */ - where?: (league_scheduling_proposals_bool_exp | null)} }) - /** fetch aggregated fields from the table: "league_scheduling_proposals" */ - league_scheduling_proposals_aggregate?: (league_scheduling_proposals_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_scheduling_proposals_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_scheduling_proposals_order_by[] | null), - /** filter the rows returned */ - where?: (league_scheduling_proposals_bool_exp | null)} }) - /** fetch data from the table: "league_scheduling_proposals" using primary key columns */ - league_scheduling_proposals_by_pk?: (league_scheduling_proposalsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "league_season_divisions" */ - league_season_divisions?: (league_season_divisionsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_season_divisions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_season_divisions_order_by[] | null), - /** filter the rows returned */ - where?: (league_season_divisions_bool_exp | null)} }) - /** fetch aggregated fields from the table: "league_season_divisions" */ - league_season_divisions_aggregate?: (league_season_divisions_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_season_divisions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_season_divisions_order_by[] | null), - /** filter the rows returned */ - where?: (league_season_divisions_bool_exp | null)} }) - /** fetch data from the table: "league_season_divisions" using primary key columns */ - league_season_divisions_by_pk?: (league_season_divisionsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "league_seasons" */ - league_seasons?: (league_seasonsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_seasons_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_seasons_order_by[] | null), - /** filter the rows returned */ - where?: (league_seasons_bool_exp | null)} }) - /** fetch aggregated fields from the table: "league_seasons" */ - league_seasons_aggregate?: (league_seasons_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_seasons_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_seasons_order_by[] | null), - /** filter the rows returned */ - where?: (league_seasons_bool_exp | null)} }) - /** fetch data from the table: "league_seasons" using primary key columns */ - league_seasons_by_pk?: (league_seasonsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "league_team_movements" */ - league_team_movements?: (league_team_movementsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_team_movements_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_team_movements_order_by[] | null), - /** filter the rows returned */ - where?: (league_team_movements_bool_exp | null)} }) - /** fetch aggregated fields from the table: "league_team_movements" */ - league_team_movements_aggregate?: (league_team_movements_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_team_movements_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_team_movements_order_by[] | null), - /** filter the rows returned */ - where?: (league_team_movements_bool_exp | null)} }) - /** fetch data from the table: "league_team_movements" using primary key columns */ - league_team_movements_by_pk?: (league_team_movementsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "league_team_rosters" */ - league_team_rosters?: (league_team_rostersGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_team_rosters_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_team_rosters_order_by[] | null), - /** filter the rows returned */ - where?: (league_team_rosters_bool_exp | null)} }) - /** fetch aggregated fields from the table: "league_team_rosters" */ - league_team_rosters_aggregate?: (league_team_rosters_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_team_rosters_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_team_rosters_order_by[] | null), - /** filter the rows returned */ - where?: (league_team_rosters_bool_exp | null)} }) - /** fetch data from the table: "league_team_rosters" using primary key columns */ - league_team_rosters_by_pk?: (league_team_rostersGenqlSelection & { __args: {league_team_season_id: Scalars['uuid'], player_steam_id: Scalars['bigint']} }) - /** fetch data from the table: "league_team_seasons" */ - league_team_seasons?: (league_team_seasonsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_team_seasons_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_team_seasons_order_by[] | null), - /** filter the rows returned */ - where?: (league_team_seasons_bool_exp | null)} }) - /** fetch aggregated fields from the table: "league_team_seasons" */ - league_team_seasons_aggregate?: (league_team_seasons_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_team_seasons_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_team_seasons_order_by[] | null), - /** filter the rows returned */ - where?: (league_team_seasons_bool_exp | null)} }) - /** fetch data from the table: "league_team_seasons" using primary key columns */ - league_team_seasons_by_pk?: (league_team_seasonsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "league_teams" */ - league_teams?: (league_teamsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_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?: (league_teams_order_by[] | null), - /** filter the rows returned */ - where?: (league_teams_bool_exp | null)} }) - /** fetch aggregated fields from the table: "league_teams" */ - league_teams_aggregate?: (league_teams_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_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?: (league_teams_order_by[] | null), - /** filter the rows returned */ - where?: (league_teams_bool_exp | null)} }) - /** fetch data from the table: "league_teams" using primary key columns */ - league_teams_by_pk?: (league_teamsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** List files in game server directory */ - listServerFiles?: (FileListResponseGenqlSelection & { __args: {node_id: Scalars['String'], path?: (Scalars['String'] | null), server_id?: (Scalars['String'] | null)} }) - /** fetch data from the table: "lobbies" */ - lobbies?: (lobbiesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (lobbies_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (lobbies_order_by[] | null), - /** filter the rows returned */ - where?: (lobbies_bool_exp | null)} }) - /** fetch aggregated fields from the table: "lobbies" */ - lobbies_aggregate?: (lobbies_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (lobbies_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (lobbies_order_by[] | null), - /** filter the rows returned */ - where?: (lobbies_bool_exp | null)} }) - /** fetch data from the table: "lobbies" using primary key columns */ - lobbies_by_pk?: (lobbiesGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** An array relationship */ - lobby_players?: (lobby_playersGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (lobby_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?: (lobby_players_order_by[] | null), - /** filter the rows returned */ - where?: (lobby_players_bool_exp | null)} }) - /** An aggregate relationship */ - lobby_players_aggregate?: (lobby_players_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (lobby_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?: (lobby_players_order_by[] | null), - /** filter the rows returned */ - where?: (lobby_players_bool_exp | null)} }) - /** fetch data from the table: "lobby_players" using primary key columns */ - lobby_players_by_pk?: (lobby_playersGenqlSelection & { __args: {lobby_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) - /** fetch data from the table: "map_callouts" */ - map_callouts?: (map_calloutsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (map_callouts_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (map_callouts_order_by[] | null), - /** filter the rows returned */ - where?: (map_callouts_bool_exp | null)} }) - /** fetch aggregated fields from the table: "map_callouts" */ - map_callouts_aggregate?: (map_callouts_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (map_callouts_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (map_callouts_order_by[] | null), - /** filter the rows returned */ - where?: (map_callouts_bool_exp | null)} }) - /** fetch data from the table: "map_callouts" using primary key columns */ - map_callouts_by_pk?: (map_calloutsGenqlSelection & { __args: {map_name: Scalars['String'], name: Scalars['String']} }) - /** fetch data from the table: "map_pools" */ - map_pools?: (map_poolsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (map_pools_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (map_pools_order_by[] | null), - /** filter the rows returned */ - where?: (map_pools_bool_exp | null)} }) - /** fetch aggregated fields from the table: "map_pools" */ - map_pools_aggregate?: (map_pools_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (map_pools_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (map_pools_order_by[] | null), - /** filter the rows returned */ - where?: (map_pools_bool_exp | null)} }) - /** fetch data from the table: "map_pools" using primary key columns */ - map_pools_by_pk?: (map_poolsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** 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)} }) - /** fetch data from the table: "maps" using primary key columns */ - maps_by_pk?: (mapsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** 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)} }) - /** fetch data from the table: "match_clips" using primary key columns */ - match_clips_by_pk?: (match_clipsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "match_demo_sessions" */ - match_demo_sessions?: (match_demo_sessionsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_demo_sessions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_demo_sessions_order_by[] | null), - /** filter the rows returned */ - where?: (match_demo_sessions_bool_exp | null)} }) - /** fetch aggregated fields from the table: "match_demo_sessions" */ - match_demo_sessions_aggregate?: (match_demo_sessions_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_demo_sessions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_demo_sessions_order_by[] | null), - /** filter the rows returned */ - where?: (match_demo_sessions_bool_exp | null)} }) - /** fetch data from the table: "match_demo_sessions" using primary key columns */ - match_demo_sessions_by_pk?: (match_demo_sessionsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** 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)} }) - /** fetch data from the table: "match_lineup_players" using primary key columns */ - match_lineup_players_by_pk?: (match_lineup_playersGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** An array relationship */ - match_lineups?: (match_lineupsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_lineups_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_lineups_order_by[] | null), - /** filter the rows returned */ - where?: (match_lineups_bool_exp | null)} }) - /** An aggregate relationship */ - match_lineups_aggregate?: (match_lineups_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_lineups_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_lineups_order_by[] | null), - /** filter the rows returned */ - where?: (match_lineups_bool_exp | null)} }) - /** fetch data from the table: "match_lineups" using primary key columns */ - match_lineups_by_pk?: (match_lineupsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "match_map_demos" */ - match_map_demos?: (match_map_demosGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_map_demos_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_demos_order_by[] | null), - /** filter the rows returned */ - where?: (match_map_demos_bool_exp | null)} }) - /** fetch aggregated fields from the table: "match_map_demos" */ - match_map_demos_aggregate?: (match_map_demos_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_map_demos_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_demos_order_by[] | null), - /** filter the rows returned */ - where?: (match_map_demos_bool_exp | null)} }) - /** fetch data from the table: "match_map_demos" using primary key columns */ - match_map_demos_by_pk?: (match_map_demosGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "match_map_rounds" */ - match_map_rounds?: (match_map_roundsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_map_rounds_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_rounds_order_by[] | null), - /** filter the rows returned */ - where?: (match_map_rounds_bool_exp | null)} }) - /** fetch aggregated fields from the table: "match_map_rounds" */ - match_map_rounds_aggregate?: (match_map_rounds_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_map_rounds_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_rounds_order_by[] | null), - /** filter the rows returned */ - where?: (match_map_rounds_bool_exp | null)} }) - /** fetch data from the table: "match_map_rounds" using primary key columns */ - match_map_rounds_by_pk?: (match_map_roundsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "match_map_veto_picks" */ - match_map_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)} }) - /** fetch aggregated fields from the table: "match_map_veto_picks" */ - match_map_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)} }) - /** fetch data from the table: "match_map_veto_picks" using primary key columns */ - match_map_veto_picks_by_pk?: (match_map_veto_picksGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** 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)} }) - /** fetch data from the table: "match_maps" using primary key columns */ - match_maps_by_pk?: (match_mapsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** 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)} }) - /** fetch data from the table: "match_options" using primary key columns */ - match_options_by_pk?: (match_optionsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "match_region_veto_picks" */ - match_region_veto_picks?: (match_region_veto_picksGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_region_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_region_veto_picks_order_by[] | null), - /** filter the rows returned */ - where?: (match_region_veto_picks_bool_exp | null)} }) - /** fetch aggregated fields from the table: "match_region_veto_picks" */ - match_region_veto_picks_aggregate?: (match_region_veto_picks_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_region_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_region_veto_picks_order_by[] | null), - /** filter the rows returned */ - where?: (match_region_veto_picks_bool_exp | null)} }) - /** fetch data from the table: "match_region_veto_picks" using primary key columns */ - match_region_veto_picks_by_pk?: (match_region_veto_picksGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "match_streams" */ - match_streams?: (match_streamsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_streams_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_streams_order_by[] | null), - /** filter the rows returned */ - where?: (match_streams_bool_exp | null)} }) - /** fetch aggregated fields from the table: "match_streams" */ - match_streams_aggregate?: (match_streams_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_streams_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_streams_order_by[] | null), - /** filter the rows returned */ - where?: (match_streams_bool_exp | null)} }) - /** fetch data from the table: "match_streams" using primary key columns */ - match_streams_by_pk?: (match_streamsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "match_type_cfgs" */ - match_type_cfgs?: (match_type_cfgsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_type_cfgs_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_type_cfgs_order_by[] | null), - /** filter the rows returned */ - where?: (match_type_cfgs_bool_exp | null)} }) - /** fetch aggregated fields from the table: "match_type_cfgs" */ - match_type_cfgs_aggregate?: (match_type_cfgs_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_type_cfgs_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_type_cfgs_order_by[] | null), - /** filter the rows returned */ - where?: (match_type_cfgs_bool_exp | null)} }) - /** fetch data from the table: "match_type_cfgs" using primary key columns */ - match_type_cfgs_by_pk?: (match_type_cfgsGenqlSelection & { __args: {type: e_game_cfg_types_enum} }) - /** 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)} }) - /** fetch data from the table: "matches" using primary key columns */ - matches_by_pk?: (matchesGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** Gets Current User */ - me?: MeResponseGenqlSelection - /** fetch data from the table: "migration_hashes.hashes" */ - migration_hashes_hashes?: (migration_hashes_hashesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (migration_hashes_hashes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (migration_hashes_hashes_order_by[] | null), - /** filter the rows returned */ - where?: (migration_hashes_hashes_bool_exp | null)} }) - /** fetch aggregated fields from the table: "migration_hashes.hashes" */ - migration_hashes_hashes_aggregate?: (migration_hashes_hashes_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (migration_hashes_hashes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (migration_hashes_hashes_order_by[] | null), - /** filter the rows returned */ - where?: (migration_hashes_hashes_bool_exp | null)} }) - /** fetch data from the table: "migration_hashes.hashes" using primary key columns */ - migration_hashes_hashes_by_pk?: (migration_hashes_hashesGenqlSelection & { __args: {name: Scalars['String']} }) - /** fetch data from the table: "v_my_friends" */ - my_friends?: (my_friendsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (my_friends_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (my_friends_order_by[] | null), - /** filter the rows returned */ - where?: (my_friends_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_my_friends" */ - my_friends_aggregate?: (my_friends_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (my_friends_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (my_friends_order_by[] | null), - /** filter the rows returned */ - where?: (my_friends_bool_exp | null)} }) - /** Fetch a single news post including draft content for editing. Caller role is verified against public.post_news_role. */ - newsPostAdmin?: (NewsPostGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** List all news posts including drafts for the management area. Caller role is verified against public.post_news_role. */ - newsPostsAdmin?: NewsPostGenqlSelection - /** fetch data from the table: "news_articles" */ - news_articles?: (news_articlesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (news_articles_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (news_articles_order_by[] | null), - /** filter the rows returned */ - where?: (news_articles_bool_exp | null)} }) - /** fetch aggregated fields from the table: "news_articles" */ - news_articles_aggregate?: (news_articles_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (news_articles_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (news_articles_order_by[] | null), - /** filter the rows returned */ - where?: (news_articles_bool_exp | null)} }) - /** fetch data from the table: "news_articles" using primary key columns */ - news_articles_by_pk?: (news_articlesGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "notification_preferences" */ - notification_preferences?: (notification_preferencesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (notification_preferences_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (notification_preferences_order_by[] | null), - /** filter the rows returned */ - where?: (notification_preferences_bool_exp | null)} }) - /** fetch aggregated fields from the table: "notification_preferences" */ - notification_preferences_aggregate?: (notification_preferences_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (notification_preferences_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (notification_preferences_order_by[] | null), - /** filter the rows returned */ - where?: (notification_preferences_bool_exp | null)} }) - /** fetch data from the table: "notification_preferences" using primary key columns */ - notification_preferences_by_pk?: (notification_preferencesGenqlSelection & { __args: {channel: Scalars['String'], key: Scalars['String'], steam_id: Scalars['bigint']} }) - /** An array relationship */ - notifications?: (notificationsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (notifications_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (notifications_order_by[] | null), - /** filter the rows returned */ - where?: (notifications_bool_exp | null)} }) - /** An aggregate relationship */ - notifications_aggregate?: (notifications_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (notifications_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (notifications_order_by[] | null), - /** filter the rows returned */ - where?: (notifications_bool_exp | null)} }) - /** fetch data from the table: "notifications" using primary key columns */ - notifications_by_pk?: (notificationsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "pending_match_import_players" */ - pending_match_import_players?: (pending_match_import_playersGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (pending_match_import_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?: (pending_match_import_players_order_by[] | null), - /** filter the rows returned */ - where?: (pending_match_import_players_bool_exp | null)} }) - /** fetch aggregated fields from the table: "pending_match_import_players" */ - pending_match_import_players_aggregate?: (pending_match_import_players_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (pending_match_import_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?: (pending_match_import_players_order_by[] | null), - /** filter the rows returned */ - where?: (pending_match_import_players_bool_exp | null)} }) - /** fetch data from the table: "pending_match_import_players" using primary key columns */ - pending_match_import_players_by_pk?: (pending_match_import_playersGenqlSelection & { __args: {steam_id: Scalars['bigint'], valve_match_id: Scalars['numeric']} }) - /** fetch data from the table: "pending_match_imports" */ - pending_match_imports?: (pending_match_importsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (pending_match_imports_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (pending_match_imports_order_by[] | null), - /** filter the rows returned */ - where?: (pending_match_imports_bool_exp | null)} }) - /** fetch aggregated fields from the table: "pending_match_imports" */ - pending_match_imports_aggregate?: (pending_match_imports_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (pending_match_imports_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (pending_match_imports_order_by[] | null), - /** filter the rows returned */ - where?: (pending_match_imports_bool_exp | null)} }) - /** fetch data from the table: "pending_match_imports" using primary key columns */ - pending_match_imports_by_pk?: (pending_match_importsGenqlSelection & { __args: {valve_match_id: Scalars['numeric']} }) - /** fetch data from the table: "player_aim_stats_demo" */ - player_aim_stats_demo?: (player_aim_stats_demoGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_aim_stats_demo_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_aim_stats_demo_order_by[] | null), - /** filter the rows returned */ - where?: (player_aim_stats_demo_bool_exp | null)} }) - /** fetch aggregated fields from the table: "player_aim_stats_demo" */ - player_aim_stats_demo_aggregate?: (player_aim_stats_demo_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_aim_stats_demo_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_aim_stats_demo_order_by[] | null), - /** filter the rows returned */ - where?: (player_aim_stats_demo_bool_exp | null)} }) - /** fetch data from the table: "player_aim_stats_demo" using primary key columns */ - player_aim_stats_demo_by_pk?: (player_aim_stats_demoGenqlSelection & { __args: {attacker_steam_id: Scalars['bigint'], match_map_id: Scalars['uuid']} }) - /** fetch data from the table: "player_aim_weapon_stats" */ - player_aim_weapon_stats?: (player_aim_weapon_statsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_aim_weapon_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?: (player_aim_weapon_stats_order_by[] | null), - /** filter the rows returned */ - where?: (player_aim_weapon_stats_bool_exp | null)} }) - /** fetch aggregated fields from the table: "player_aim_weapon_stats" */ - player_aim_weapon_stats_aggregate?: (player_aim_weapon_stats_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_aim_weapon_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?: (player_aim_weapon_stats_order_by[] | null), - /** filter the rows returned */ - where?: (player_aim_weapon_stats_bool_exp | null)} }) - /** fetch data from the table: "player_aim_weapon_stats" using primary key columns */ - player_aim_weapon_stats_by_pk?: (player_aim_weapon_statsGenqlSelection & { __args: {match_map_id: Scalars['uuid'], steam_id: Scalars['bigint'], weapon_class: Scalars['String']} }) - /** An array relationship */ - player_assists?: (player_assistsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_assists_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_assists_order_by[] | null), - /** filter the rows returned */ - where?: (player_assists_bool_exp | null)} }) - /** An aggregate relationship */ - player_assists_aggregate?: (player_assists_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_assists_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_assists_order_by[] | null), - /** filter the rows returned */ - where?: (player_assists_bool_exp | null)} }) - /** fetch data from the table: "player_assists" using primary key columns */ - player_assists_by_pk?: (player_assistsGenqlSelection & { __args: {attacked_steam_id: Scalars['bigint'], attacker_steam_id: Scalars['bigint'], match_map_id: Scalars['uuid'], time: Scalars['timestamptz']} }) - /** fetch data from the table: "player_career_stats_v" */ - player_career_stats_v?: (player_career_stats_vGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_career_stats_v_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_career_stats_v_order_by[] | null), - /** filter the rows returned */ - where?: (player_career_stats_v_bool_exp | null)} }) - /** fetch aggregated fields from the table: "player_career_stats_v" */ - player_career_stats_v_aggregate?: (player_career_stats_v_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_career_stats_v_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_career_stats_v_order_by[] | null), - /** filter the rows returned */ - where?: (player_career_stats_v_bool_exp | null)} }) - /** An array relationship */ - player_damages?: (player_damagesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_damages_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_damages_order_by[] | null), - /** filter the rows returned */ - where?: (player_damages_bool_exp | null)} }) - /** An aggregate relationship */ - player_damages_aggregate?: (player_damages_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_damages_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_damages_order_by[] | null), - /** filter the rows returned */ - where?: (player_damages_bool_exp | null)} }) - /** fetch data from the table: "player_damages" using primary key columns */ - player_damages_by_pk?: (player_damagesGenqlSelection & { __args: {id: Scalars['uuid'], match_map_id: Scalars['uuid'], time: Scalars['timestamptz']} }) - /** fetch data from the table: "player_elo" */ - player_elo?: (player_eloGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_elo_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_elo_order_by[] | null), - /** filter the rows returned */ - where?: (player_elo_bool_exp | null)} }) - /** fetch aggregated fields from the table: "player_elo" */ - player_elo_aggregate?: (player_elo_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_elo_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_elo_order_by[] | null), - /** filter the rows returned */ - where?: (player_elo_bool_exp | null)} }) - /** fetch data from the table: "player_elo" using primary key columns */ - player_elo_by_pk?: (player_eloGenqlSelection & { __args: {match_id: Scalars['uuid'], steam_id: Scalars['bigint'], type: e_match_types_enum} }) - /** fetch data from the table: "player_faceit_rank_history" */ - player_faceit_rank_history?: (player_faceit_rank_historyGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_faceit_rank_history_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_faceit_rank_history_order_by[] | null), - /** filter the rows returned */ - where?: (player_faceit_rank_history_bool_exp | null)} }) - /** fetch aggregated fields from the table: "player_faceit_rank_history" */ - player_faceit_rank_history_aggregate?: (player_faceit_rank_history_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_faceit_rank_history_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_faceit_rank_history_order_by[] | null), - /** filter the rows returned */ - where?: (player_faceit_rank_history_bool_exp | null)} }) - /** fetch data from the table: "player_faceit_rank_history" using primary key columns */ - player_faceit_rank_history_by_pk?: (player_faceit_rank_historyGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** An array relationship */ - player_flashes?: (player_flashesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_flashes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_flashes_order_by[] | null), - /** filter the rows returned */ - where?: (player_flashes_bool_exp | null)} }) - /** An aggregate relationship */ - player_flashes_aggregate?: (player_flashes_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_flashes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_flashes_order_by[] | null), - /** filter the rows returned */ - where?: (player_flashes_bool_exp | null)} }) - /** fetch data from the table: "player_flashes" using primary key columns */ - player_flashes_by_pk?: (player_flashesGenqlSelection & { __args: {attacked_steam_id: Scalars['bigint'], attacker_steam_id: Scalars['bigint'], match_map_id: Scalars['uuid'], time: Scalars['timestamptz']} }) - /** An array relationship */ - player_kills?: (player_killsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_kills_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_kills_order_by[] | null), - /** filter the rows returned */ - where?: (player_kills_bool_exp | null)} }) - /** An aggregate relationship */ - player_kills_aggregate?: (player_kills_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_kills_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_kills_order_by[] | null), - /** filter the rows returned */ - where?: (player_kills_bool_exp | null)} }) - /** fetch data from the table: "player_kills" using primary key columns */ - player_kills_by_pk?: (player_killsGenqlSelection & { __args: {attacked_steam_id: Scalars['bigint'], attacker_steam_id: Scalars['bigint'], match_map_id: Scalars['uuid'], time: Scalars['timestamptz']} }) - /** fetch data from the table: "player_kills_by_weapon" */ - player_kills_by_weapon?: (player_kills_by_weaponGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_kills_by_weapon_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_kills_by_weapon_order_by[] | null), - /** filter the rows returned */ - where?: (player_kills_by_weapon_bool_exp | null)} }) - /** fetch aggregated fields from the table: "player_kills_by_weapon" */ - player_kills_by_weapon_aggregate?: (player_kills_by_weapon_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_kills_by_weapon_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_kills_by_weapon_order_by[] | null), - /** filter the rows returned */ - where?: (player_kills_by_weapon_bool_exp | null)} }) - /** fetch data from the table: "player_kills_by_weapon" using primary key columns */ - player_kills_by_weapon_by_pk?: (player_kills_by_weaponGenqlSelection & { __args: {player_steam_id: Scalars['bigint'], with: Scalars['String']} }) - /** fetch data from the table: "player_leaderboard_rank" */ - player_leaderboard_rank?: (player_leaderboard_rankGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_leaderboard_rank_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_leaderboard_rank_order_by[] | null), - /** filter the rows returned */ - where?: (player_leaderboard_rank_bool_exp | null)} }) - /** fetch aggregated fields from the table: "player_leaderboard_rank" */ - player_leaderboard_rank_aggregate?: (player_leaderboard_rank_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_leaderboard_rank_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_leaderboard_rank_order_by[] | null), - /** filter the rows returned */ - where?: (player_leaderboard_rank_bool_exp | null)} }) - /** fetch data from the table: "player_match_map_stats" */ - player_match_map_stats?: (player_match_map_statsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_match_map_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?: (player_match_map_stats_order_by[] | null), - /** filter the rows returned */ - where?: (player_match_map_stats_bool_exp | null)} }) - /** fetch aggregated fields from the table: "player_match_map_stats" */ - player_match_map_stats_aggregate?: (player_match_map_stats_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_match_map_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?: (player_match_map_stats_order_by[] | null), - /** filter the rows returned */ - where?: (player_match_map_stats_bool_exp | null)} }) - /** fetch data from the table: "player_match_map_stats" using primary key columns */ - player_match_map_stats_by_pk?: (player_match_map_statsGenqlSelection & { __args: {match_map_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) - /** fetch data from the table: "player_match_performance_v" */ - player_match_performance_v?: (player_match_performance_vGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_match_performance_v_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_performance_v_order_by[] | null), - /** filter the rows returned */ - where?: (player_match_performance_v_bool_exp | null)} }) - /** fetch aggregated fields from the table: "player_match_performance_v" */ - player_match_performance_v_aggregate?: (player_match_performance_v_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_match_performance_v_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_performance_v_order_by[] | null), - /** filter the rows returned */ - where?: (player_match_performance_v_bool_exp | null)} }) - /** fetch data from the table: "player_match_stats_v" */ - player_match_stats_v?: (player_match_stats_vGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_match_stats_v_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_stats_v_order_by[] | null), - /** filter the rows returned */ - where?: (player_match_stats_v_bool_exp | null)} }) - /** fetch aggregated fields from the table: "player_match_stats_v" */ - player_match_stats_v_aggregate?: (player_match_stats_v_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_match_stats_v_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_stats_v_order_by[] | null), - /** filter the rows returned */ - where?: (player_match_stats_v_bool_exp | null)} }) - /** 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)} }) - /** fetch data from the table: "player_objectives" using primary key columns */ - player_objectives_by_pk?: (player_objectivesGenqlSelection & { __args: {match_map_id: Scalars['uuid'], player_steam_id: Scalars['bigint'], time: Scalars['timestamptz']} }) - /** fetch data from the table: "player_performance_v" */ - player_performance_v?: (player_performance_vGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_performance_v_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_performance_v_order_by[] | null), - /** filter the rows returned */ - where?: (player_performance_v_bool_exp | null)} }) - /** fetch aggregated fields from the table: "player_performance_v" */ - player_performance_v_aggregate?: (player_performance_v_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_performance_v_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_performance_v_order_by[] | null), - /** filter the rows returned */ - where?: (player_performance_v_bool_exp | null)} }) - /** fetch data from the table: "player_premier_rank_history" */ - player_premier_rank_history?: (player_premier_rank_historyGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_premier_rank_history_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_premier_rank_history_order_by[] | null), - /** filter the rows returned */ - where?: (player_premier_rank_history_bool_exp | null)} }) - /** fetch aggregated fields from the table: "player_premier_rank_history" */ - player_premier_rank_history_aggregate?: (player_premier_rank_history_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_premier_rank_history_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_premier_rank_history_order_by[] | null), - /** filter the rows returned */ - where?: (player_premier_rank_history_bool_exp | null)} }) - /** fetch data from the table: "player_premier_rank_history" using primary key columns */ - player_premier_rank_history_by_pk?: (player_premier_rank_historyGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "player_sanctions" */ - player_sanctions?: (player_sanctionsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_sanctions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_sanctions_order_by[] | null), - /** filter the rows returned */ - where?: (player_sanctions_bool_exp | null)} }) - /** fetch aggregated fields from the table: "player_sanctions" */ - player_sanctions_aggregate?: (player_sanctions_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_sanctions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_sanctions_order_by[] | null), - /** filter the rows returned */ - where?: (player_sanctions_bool_exp | null)} }) - /** fetch data from the table: "player_sanctions" using primary key columns */ - player_sanctions_by_pk?: (player_sanctionsGenqlSelection & { __args: {created_at: Scalars['timestamptz'], id: Scalars['uuid']} }) - /** An array relationship */ - player_season_stats?: (player_season_statsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_season_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?: (player_season_stats_order_by[] | null), - /** filter the rows returned */ - where?: (player_season_stats_bool_exp | null)} }) - /** An aggregate relationship */ - player_season_stats_aggregate?: (player_season_stats_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_season_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?: (player_season_stats_order_by[] | null), - /** filter the rows returned */ - where?: (player_season_stats_bool_exp | null)} }) - /** fetch data from the table: "player_season_stats" using primary key columns */ - player_season_stats_by_pk?: (player_season_statsGenqlSelection & { __args: {player_steam_id: Scalars['bigint'], season_id: Scalars['uuid']} }) - /** fetch data from the table: "player_stats" */ - player_stats?: (player_statsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (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?: (player_stats_order_by[] | null), - /** filter the rows returned */ - where?: (player_stats_bool_exp | null)} }) - /** fetch aggregated fields from the table: "player_stats" */ - player_stats_aggregate?: (player_stats_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (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?: (player_stats_order_by[] | null), - /** filter the rows returned */ - where?: (player_stats_bool_exp | null)} }) - /** fetch data from the table: "player_stats" using primary key columns */ - player_stats_by_pk?: (player_statsGenqlSelection & { __args: {player_steam_id: Scalars['bigint']} }) - /** fetch data from the table: "player_steam_bot_friend" */ - player_steam_bot_friend?: (player_steam_bot_friendGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_steam_bot_friend_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_steam_bot_friend_order_by[] | null), - /** filter the rows returned */ - where?: (player_steam_bot_friend_bool_exp | null)} }) - /** fetch aggregated fields from the table: "player_steam_bot_friend" */ - player_steam_bot_friend_aggregate?: (player_steam_bot_friend_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_steam_bot_friend_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_steam_bot_friend_order_by[] | null), - /** filter the rows returned */ - where?: (player_steam_bot_friend_bool_exp | null)} }) - /** fetch data from the table: "player_steam_bot_friend" using primary key columns */ - player_steam_bot_friend_by_pk?: (player_steam_bot_friendGenqlSelection & { __args: {steam_id: Scalars['bigint']} }) - /** fetch data from the table: "player_steam_match_auth" */ - player_steam_match_auth?: (player_steam_match_authGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_steam_match_auth_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_steam_match_auth_order_by[] | null), - /** filter the rows returned */ - where?: (player_steam_match_auth_bool_exp | null)} }) - /** fetch aggregated fields from the table: "player_steam_match_auth" */ - player_steam_match_auth_aggregate?: (player_steam_match_auth_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_steam_match_auth_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_steam_match_auth_order_by[] | null), - /** filter the rows returned */ - where?: (player_steam_match_auth_bool_exp | null)} }) - /** fetch data from the table: "player_steam_match_auth" using primary key columns */ - player_steam_match_auth_by_pk?: (player_steam_match_authGenqlSelection & { __args: {steam_id: Scalars['bigint']} }) - /** fetch data from the table: "player_unused_utility" */ - player_unused_utility?: (player_unused_utilityGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_unused_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_unused_utility_order_by[] | null), - /** filter the rows returned */ - where?: (player_unused_utility_bool_exp | null)} }) - /** fetch aggregated fields from the table: "player_unused_utility" */ - player_unused_utility_aggregate?: (player_unused_utility_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_unused_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_unused_utility_order_by[] | null), - /** filter the rows returned */ - where?: (player_unused_utility_bool_exp | null)} }) - /** fetch data from the table: "player_unused_utility" using primary key columns */ - player_unused_utility_by_pk?: (player_unused_utilityGenqlSelection & { __args: {match_map_id: Scalars['uuid'], player_steam_id: Scalars['bigint']} }) - /** An array relationship */ - player_utility?: (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_utility_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)} }) - /** fetch data from the table: "player_utility" using primary key columns */ - player_utility_by_pk?: (player_utilityGenqlSelection & { __args: {attacker_steam_id: Scalars['bigint'], match_map_id: Scalars['uuid'], time: Scalars['timestamptz']} }) - /** fetch data from the table: "player_weapon_stats_v" */ - player_weapon_stats_v?: (player_weapon_stats_vGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_weapon_stats_v_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_weapon_stats_v_order_by[] | null), - /** filter the rows returned */ - where?: (player_weapon_stats_v_bool_exp | null)} }) - /** fetch aggregated fields from the table: "player_weapon_stats_v" */ - player_weapon_stats_v_aggregate?: (player_weapon_stats_v_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_weapon_stats_v_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_weapon_stats_v_order_by[] | null), - /** filter the rows returned */ - where?: (player_weapon_stats_v_bool_exp | null)} }) - /** fetch data from the table: "players" */ - players?: (playersGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (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?: (players_order_by[] | null), - /** filter the rows returned */ - where?: (players_bool_exp | null)} }) - /** fetch aggregated fields from the table: "players" */ - players_aggregate?: (players_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (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?: (players_order_by[] | null), - /** filter the rows returned */ - where?: (players_bool_exp | null)} }) - /** fetch data from the table: "players" using primary key columns */ - players_by_pk?: (playersGenqlSelection & { __args: {steam_id: Scalars['bigint']} }) - /** fetch data from the table: "plugin_versions" */ - plugin_versions?: (plugin_versionsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (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?: (plugin_versions_order_by[] | null), - /** filter the rows returned */ - where?: (plugin_versions_bool_exp | null)} }) - /** fetch aggregated fields from the table: "plugin_versions" */ - plugin_versions_aggregate?: (plugin_versions_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (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?: (plugin_versions_order_by[] | null), - /** filter the rows returned */ - where?: (plugin_versions_bool_exp | null)} }) - /** fetch data from the table: "plugin_versions" using primary key columns */ - plugin_versions_by_pk?: (plugin_versionsGenqlSelection & { __args: {runtime: e_plugin_runtimes_enum, version: Scalars['String']} }) - /** fetch data from the table: "push_subscriptions" */ - push_subscriptions?: (push_subscriptionsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (push_subscriptions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (push_subscriptions_order_by[] | null), - /** filter the rows returned */ - where?: (push_subscriptions_bool_exp | null)} }) - /** fetch aggregated fields from the table: "push_subscriptions" */ - push_subscriptions_aggregate?: (push_subscriptions_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (push_subscriptions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (push_subscriptions_order_by[] | null), - /** filter the rows returned */ - where?: (push_subscriptions_bool_exp | null)} }) - /** fetch data from the table: "push_subscriptions" using primary key columns */ - push_subscriptions_by_pk?: (push_subscriptionsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** Read file content from game server */ - readServerFile?: (FileContentResponseGenqlSelection & { __args: {file_path: Scalars['String'], node_id: Scalars['String'], server_id?: (Scalars['String'] | null)} }) - /** fetch data from the table: "v_role_permissions" */ - role_permissions?: (role_permissionsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (role_permissions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (role_permissions_order_by[] | null), - /** filter the rows returned */ - where?: (role_permissions_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_role_permissions" */ - role_permissions_aggregate?: (role_permissions_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (role_permissions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (role_permissions_order_by[] | null), - /** filter the rows returned */ - where?: (role_permissions_bool_exp | null)} }) - /** fetch data from the table: "seasons" */ - seasons?: (seasonsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (seasons_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (seasons_order_by[] | null), - /** filter the rows returned */ - where?: (seasons_bool_exp | null)} }) - /** fetch aggregated fields from the table: "seasons" */ - seasons_aggregate?: (seasons_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (seasons_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (seasons_order_by[] | null), - /** filter the rows returned */ - where?: (seasons_bool_exp | null)} }) - /** fetch data from the table: "seasons" using primary key columns */ - seasons_by_pk?: (seasonsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "server_regions" */ - server_regions?: (server_regionsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (server_regions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (server_regions_order_by[] | null), - /** filter the rows returned */ - where?: (server_regions_bool_exp | null)} }) - /** fetch aggregated fields from the table: "server_regions" */ - server_regions_aggregate?: (server_regions_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (server_regions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (server_regions_order_by[] | null), - /** filter the rows returned */ - where?: (server_regions_bool_exp | null)} }) - /** fetch data from the table: "server_regions" using primary key columns */ - server_regions_by_pk?: (server_regionsGenqlSelection & { __args: {value: Scalars['String']} }) - /** An array relationship */ - servers?: (serversGenqlSelection & { __args?: { - /** distinct select on columns */ - 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?: (servers_order_by[] | null), - /** filter the rows returned */ - where?: (servers_bool_exp | null)} }) - /** An aggregate relationship */ - servers_aggregate?: (servers_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - 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?: (servers_order_by[] | null), - /** filter the rows returned */ - where?: (servers_bool_exp | null)} }) - /** fetch data from the table: "servers" using primary key columns */ - servers_by_pk?: (serversGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "settings" */ - settings?: (settingsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (settings_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (settings_order_by[] | null), - /** filter the rows returned */ - where?: (settings_bool_exp | null)} }) - /** fetch aggregated fields from the table: "settings" */ - settings_aggregate?: (settings_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (settings_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (settings_order_by[] | null), - /** filter the rows returned */ - where?: (settings_bool_exp | null)} }) - /** fetch data from the table: "settings" using primary key columns */ - settings_by_pk?: (settingsGenqlSelection & { __args: {name: Scalars['String']} }) - /** Steam presence bot admin dashboard status */ - steamPresenceAdminStatus?: SteamPresenceAdminStatusOutputGenqlSelection - /** fetch data from the table: "steam_account_claims" */ - steam_account_claims?: (steam_account_claimsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (steam_account_claims_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (steam_account_claims_order_by[] | null), - /** filter the rows returned */ - where?: (steam_account_claims_bool_exp | null)} }) - /** fetch aggregated fields from the table: "steam_account_claims" */ - steam_account_claims_aggregate?: (steam_account_claims_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (steam_account_claims_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (steam_account_claims_order_by[] | null), - /** filter the rows returned */ - where?: (steam_account_claims_bool_exp | null)} }) - /** fetch data from the table: "steam_account_claims" using primary key columns */ - steam_account_claims_by_pk?: (steam_account_claimsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "steam_accounts" */ - steam_accounts?: (steam_accountsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (steam_accounts_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (steam_accounts_order_by[] | null), - /** filter the rows returned */ - where?: (steam_accounts_bool_exp | null)} }) - /** fetch aggregated fields from the table: "steam_accounts" */ - steam_accounts_aggregate?: (steam_accounts_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (steam_accounts_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (steam_accounts_order_by[] | null), - /** filter the rows returned */ - where?: (steam_accounts_bool_exp | null)} }) - /** fetch data from the table: "steam_accounts" using primary key columns */ - steam_accounts_by_pk?: (steam_accountsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "system_alerts" */ - system_alerts?: (system_alertsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (system_alerts_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (system_alerts_order_by[] | null), - /** filter the rows returned */ - where?: (system_alerts_bool_exp | null)} }) - /** fetch aggregated fields from the table: "system_alerts" */ - system_alerts_aggregate?: (system_alerts_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (system_alerts_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (system_alerts_order_by[] | null), - /** filter the rows returned */ - where?: (system_alerts_bool_exp | null)} }) - /** fetch data from the table: "system_alerts" using primary key columns */ - system_alerts_by_pk?: (system_alertsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** teamCalendarUrl */ - teamCalendarUrl?: (TeamCalendarOutputGenqlSelection & { __args: {team_id: Scalars['uuid']} }) - /** An array relationship */ - team_invites?: (team_invitesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (team_invites_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_invites_order_by[] | null), - /** filter the rows returned */ - where?: (team_invites_bool_exp | null)} }) - /** An aggregate relationship */ - team_invites_aggregate?: (team_invites_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (team_invites_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_invites_order_by[] | null), - /** filter the rows returned */ - where?: (team_invites_bool_exp | null)} }) - /** fetch data from the table: "team_invites" using primary key columns */ - team_invites_by_pk?: (team_invitesGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "team_roster" */ - team_roster?: (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)} }) - /** fetch aggregated fields from the table: "team_roster" */ - team_roster_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)} }) - /** fetch data from the table: "team_roster" using primary key columns */ - team_roster_by_pk?: (team_rosterGenqlSelection & { __args: {player_steam_id: Scalars['bigint'], team_id: Scalars['uuid']} }) - /** fetch data from the table: "team_scrim_alerts" */ - team_scrim_alerts?: (team_scrim_alertsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (team_scrim_alerts_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_alerts_order_by[] | null), - /** filter the rows returned */ - where?: (team_scrim_alerts_bool_exp | null)} }) - /** fetch aggregated fields from the table: "team_scrim_alerts" */ - team_scrim_alerts_aggregate?: (team_scrim_alerts_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (team_scrim_alerts_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_alerts_order_by[] | null), - /** filter the rows returned */ - where?: (team_scrim_alerts_bool_exp | null)} }) - /** fetch data from the table: "team_scrim_alerts" using primary key columns */ - team_scrim_alerts_by_pk?: (team_scrim_alertsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "team_scrim_availability" */ - team_scrim_availability?: (team_scrim_availabilityGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (team_scrim_availability_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_availability_order_by[] | null), - /** filter the rows returned */ - where?: (team_scrim_availability_bool_exp | null)} }) - /** fetch aggregated fields from the table: "team_scrim_availability" */ - team_scrim_availability_aggregate?: (team_scrim_availability_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (team_scrim_availability_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_availability_order_by[] | null), - /** filter the rows returned */ - where?: (team_scrim_availability_bool_exp | null)} }) - /** fetch data from the table: "team_scrim_availability" using primary key columns */ - team_scrim_availability_by_pk?: (team_scrim_availabilityGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "team_scrim_request_proposals" */ - team_scrim_request_proposals?: (team_scrim_request_proposalsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (team_scrim_request_proposals_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_request_proposals_order_by[] | null), - /** filter the rows returned */ - where?: (team_scrim_request_proposals_bool_exp | null)} }) - /** fetch aggregated fields from the table: "team_scrim_request_proposals" */ - team_scrim_request_proposals_aggregate?: (team_scrim_request_proposals_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (team_scrim_request_proposals_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_request_proposals_order_by[] | null), - /** filter the rows returned */ - where?: (team_scrim_request_proposals_bool_exp | null)} }) - /** fetch data from the table: "team_scrim_request_proposals" using primary key columns */ - team_scrim_request_proposals_by_pk?: (team_scrim_request_proposalsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "team_scrim_requests" */ - team_scrim_requests?: (team_scrim_requestsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (team_scrim_requests_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (team_scrim_requests_order_by[] | null), - /** filter the rows returned */ - where?: (team_scrim_requests_bool_exp | null)} }) - /** fetch aggregated fields from the table: "team_scrim_requests" */ - team_scrim_requests_aggregate?: (team_scrim_requests_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (team_scrim_requests_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (team_scrim_requests_order_by[] | null), - /** filter the rows returned */ - where?: (team_scrim_requests_bool_exp | null)} }) - /** fetch data from the table: "team_scrim_requests" using primary key columns */ - team_scrim_requests_by_pk?: (team_scrim_requestsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "team_scrim_settings" */ - team_scrim_settings?: (team_scrim_settingsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (team_scrim_settings_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_settings_order_by[] | null), - /** filter the rows returned */ - where?: (team_scrim_settings_bool_exp | null)} }) - /** fetch aggregated fields from the table: "team_scrim_settings" */ - team_scrim_settings_aggregate?: (team_scrim_settings_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (team_scrim_settings_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_settings_order_by[] | null), - /** filter the rows returned */ - where?: (team_scrim_settings_bool_exp | null)} }) - /** fetch data from the table: "team_scrim_settings" using primary key columns */ - team_scrim_settings_by_pk?: (team_scrim_settingsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "team_suggestions" */ - team_suggestions?: (team_suggestionsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (team_suggestions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_suggestions_order_by[] | null), - /** filter the rows returned */ - where?: (team_suggestions_bool_exp | null)} }) - /** fetch aggregated fields from the table: "team_suggestions" */ - team_suggestions_aggregate?: (team_suggestions_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (team_suggestions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_suggestions_order_by[] | null), - /** filter the rows returned */ - where?: (team_suggestions_bool_exp | null)} }) - /** fetch data from the table: "team_suggestions" using primary key columns */ - team_suggestions_by_pk?: (team_suggestionsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "teams" */ - teams?: (teamsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (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?: (teams_order_by[] | null), - /** filter the rows returned */ - where?: (teams_bool_exp | null)} }) - /** fetch aggregated fields from the table: "teams" */ - teams_aggregate?: (teams_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (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?: (teams_order_by[] | null), - /** filter the rows returned */ - where?: (teams_bool_exp | null)} }) - /** fetch data from the table: "teams" using primary key columns */ - teams_by_pk?: (teamsGenqlSelection & { __args: {id: Scalars['uuid']} }) - telemetryStats?: (TelemetryStatsGenqlSelection & { __args?: {includeSelf?: (Scalars['Boolean'] | null)} }) - /** fetch data from the table: "tournament_awards" */ - tournament_awards?: (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)} }) - /** fetch aggregated fields from the table: "tournament_awards" */ - tournament_awards_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)} }) - /** fetch data from the table: "tournament_awards" using primary key columns */ - tournament_awards_by_pk?: (tournament_awardsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** An array relationship */ - tournament_brackets?: (tournament_bracketsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_brackets_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_brackets_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_brackets_bool_exp | null)} }) - /** An aggregate relationship */ - tournament_brackets_aggregate?: (tournament_brackets_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_brackets_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_brackets_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_brackets_bool_exp | null)} }) - /** fetch data from the table: "tournament_brackets" using primary key columns */ - tournament_brackets_by_pk?: (tournament_bracketsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** An array relationship */ - tournament_categories?: (tournament_categoriesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_categories_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (tournament_categories_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_categories_bool_exp | null)} }) - /** An aggregate relationship */ - tournament_categories_aggregate?: (tournament_categories_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_categories_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (tournament_categories_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_categories_bool_exp | null)} }) - /** fetch data from the table: "tournament_categories" using primary key columns */ - tournament_categories_by_pk?: (tournament_categoriesGenqlSelection & { __args: {category: e_tournament_categories_enum, tournament_id: Scalars['uuid']} }) - /** An array relationship */ - tournament_free_agents?: (tournament_free_agentsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_free_agents_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_free_agents_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_free_agents_bool_exp | null)} }) - /** An aggregate relationship */ - tournament_free_agents_aggregate?: (tournament_free_agents_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_free_agents_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_free_agents_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_free_agents_bool_exp | null)} }) - /** fetch data from the table: "tournament_free_agents" using primary key columns */ - tournament_free_agents_by_pk?: (tournament_free_agentsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "tournament_invite_code_uses" */ - tournament_invite_code_uses?: (tournament_invite_code_usesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_invite_code_uses_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_invite_code_uses_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_invite_code_uses_bool_exp | null)} }) - /** fetch aggregated fields from the table: "tournament_invite_code_uses" */ - tournament_invite_code_uses_aggregate?: (tournament_invite_code_uses_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_invite_code_uses_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_invite_code_uses_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_invite_code_uses_bool_exp | null)} }) - /** fetch data from the table: "tournament_invite_code_uses" using primary key columns */ - tournament_invite_code_uses_by_pk?: (tournament_invite_code_usesGenqlSelection & { __args: {invite_code_id: Scalars['uuid'], player_steam_id: Scalars['bigint']} }) - /** fetch data from the table: "tournament_invite_codes" */ - tournament_invite_codes?: (tournament_invite_codesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_invite_codes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_invite_codes_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_invite_codes_bool_exp | null)} }) - /** fetch aggregated fields from the table: "tournament_invite_codes" */ - tournament_invite_codes_aggregate?: (tournament_invite_codes_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_invite_codes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_invite_codes_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_invite_codes_bool_exp | null)} }) - /** fetch data from the table: "tournament_invite_codes" using primary key columns */ - tournament_invite_codes_by_pk?: (tournament_invite_codesGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "tournament_invites" */ - tournament_invites?: (tournament_invitesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_invites_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_invites_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_invites_bool_exp | null)} }) - /** fetch aggregated fields from the table: "tournament_invites" */ - tournament_invites_aggregate?: (tournament_invites_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_invites_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_invites_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_invites_bool_exp | null)} }) - /** fetch data from the table: "tournament_invites" using primary key columns */ - tournament_invites_by_pk?: (tournament_invitesGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "tournament_leaderboard_entries" */ - tournament_leaderboard_entries?: (tournament_leaderboard_entriesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_leaderboard_entries_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (tournament_leaderboard_entries_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_leaderboard_entries_bool_exp | null)} }) - /** fetch aggregated fields from the table: "tournament_leaderboard_entries" */ - tournament_leaderboard_entries_aggregate?: (tournament_leaderboard_entries_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_leaderboard_entries_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (tournament_leaderboard_entries_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_leaderboard_entries_bool_exp | null)} }) - /** fetch data from the table: "tournament_no_shows" */ - tournament_no_shows?: (tournament_no_showsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_no_shows_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_no_shows_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_no_shows_bool_exp | null)} }) - /** fetch aggregated fields from the table: "tournament_no_shows" */ - tournament_no_shows_aggregate?: (tournament_no_shows_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_no_shows_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_no_shows_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_no_shows_bool_exp | null)} }) - /** fetch data from the table: "tournament_no_shows" using primary key columns */ - tournament_no_shows_by_pk?: (tournament_no_showsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "tournament_organizer_teams" */ - tournament_organizer_teams?: (tournament_organizer_teamsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_organizer_teams_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (tournament_organizer_teams_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_organizer_teams_bool_exp | null)} }) - /** fetch aggregated fields from the table: "tournament_organizer_teams" */ - tournament_organizer_teams_aggregate?: (tournament_organizer_teams_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_organizer_teams_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (tournament_organizer_teams_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_organizer_teams_bool_exp | null)} }) - /** fetch data from the table: "tournament_organizer_teams" using primary key columns */ - tournament_organizer_teams_by_pk?: (tournament_organizer_teamsGenqlSelection & { __args: {team_id: Scalars['uuid'], tournament_id: Scalars['uuid']} }) - /** An array relationship */ - tournament_organizers?: (tournament_organizersGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_organizers_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_organizers_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_organizers_bool_exp | null)} }) - /** An aggregate relationship */ - tournament_organizers_aggregate?: (tournament_organizers_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_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?: (tournament_organizers_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_organizers_bool_exp | null)} }) - /** fetch data from the table: "tournament_organizers" using primary key columns */ - tournament_organizers_by_pk?: (tournament_organizersGenqlSelection & { __args: {steam_id: Scalars['bigint'], tournament_id: Scalars['uuid']} }) - /** fetch data from the table: "tournament_prizes" */ - tournament_prizes?: (tournament_prizesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_prizes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (tournament_prizes_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_prizes_bool_exp | null)} }) - /** fetch aggregated fields from the table: "tournament_prizes" */ - tournament_prizes_aggregate?: (tournament_prizes_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_prizes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (tournament_prizes_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_prizes_bool_exp | null)} }) - /** fetch data from the table: "tournament_prizes" using primary key columns */ - tournament_prizes_by_pk?: (tournament_prizesGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "tournament_registration_unlocks" */ - tournament_registration_unlocks?: (tournament_registration_unlocksGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_registration_unlocks_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_registration_unlocks_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_registration_unlocks_bool_exp | null)} }) - /** fetch aggregated fields from the table: "tournament_registration_unlocks" */ - tournament_registration_unlocks_aggregate?: (tournament_registration_unlocks_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_registration_unlocks_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_registration_unlocks_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_registration_unlocks_bool_exp | null)} }) - /** fetch data from the table: "tournament_stage_windows" */ - tournament_stage_windows?: (tournament_stage_windowsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_stage_windows_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_stage_windows_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_stage_windows_bool_exp | null)} }) - /** fetch aggregated fields from the table: "tournament_stage_windows" */ - tournament_stage_windows_aggregate?: (tournament_stage_windows_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_stage_windows_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_stage_windows_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_stage_windows_bool_exp | null)} }) - /** fetch data from the table: "tournament_stage_windows" using primary key columns */ - tournament_stage_windows_by_pk?: (tournament_stage_windowsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** 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)} }) - /** fetch data from the table: "tournament_stages" using primary key columns */ - tournament_stages_by_pk?: (tournament_stagesGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "tournament_team_invites" */ - tournament_team_invites?: (tournament_team_invitesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_team_invites_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_invites_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_team_invites_bool_exp | null)} }) - /** fetch aggregated fields from the table: "tournament_team_invites" */ - tournament_team_invites_aggregate?: (tournament_team_invites_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_team_invites_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_invites_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_team_invites_bool_exp | null)} }) - /** fetch data from the table: "tournament_team_invites" using primary key columns */ - tournament_team_invites_by_pk?: (tournament_team_invitesGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "tournament_team_roster" */ - tournament_team_roster?: (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)} }) - /** fetch aggregated fields from the table: "tournament_team_roster" */ - tournament_team_roster_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)} }) - /** fetch data from the table: "tournament_team_roster" using primary key columns */ - tournament_team_roster_by_pk?: (tournament_team_rosterGenqlSelection & { __args: {player_steam_id: Scalars['bigint'], tournament_id: Scalars['uuid']} }) - /** An array relationship */ - tournament_teams?: (tournament_teamsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_teams_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (tournament_teams_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_teams_bool_exp | null)} }) - /** An aggregate relationship */ - tournament_teams_aggregate?: (tournament_teams_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_teams_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (tournament_teams_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_teams_bool_exp | null)} }) - /** fetch data from the table: "tournament_teams" using primary key columns */ - tournament_teams_by_pk?: (tournament_teamsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** 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)} }) - /** fetch data from the table: "tournaments" using primary key columns */ - tournaments_by_pk?: (tournamentsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** Which way everybody misses one lineup, from their practice throws */ - utilityLineupMissPattern?: (UtilityMissPatternOutputGenqlSelection & { __args: {utility_lineup_id: Scalars['uuid']} }) - /** Report a player's mined utility throws for a match */ - utilityMatchUtilityReport?: (UtilityUtilityReportOutputGenqlSelection & { __args: {match_id: Scalars['uuid'], steam_id?: (Scalars['String'] | null)} }) - /** Rank what to practise next on a map from the mined meta */ - utilityPracticePlan?: (UtilityPracticePlanOutputGenqlSelection & { __args: {limit?: (Scalars['Int'] | null), map_name: Scalars['String'], order?: (Scalars['String'] | null), side?: (Scalars['String'] | null)} }) - /** Dedicated practice servers free to book right now */ - utilityPracticeServers?: UtilityPracticeServersOutputGenqlSelection - utilityPracticeWhereAmI?: UtilityPracticeWhereOutputGenqlSelection - /** Read the practice server solver's calibration gate */ - utilitySolverCalibration?: (UtilityCalibrationOutputGenqlSelection & { __args: {session_id: Scalars['uuid']} }) - /** Aggregate a team's mined utility throws against its saved lineups */ - utilityTeamUtilityReport?: (UtilityTeamUtilityOutputGenqlSelection & { __args: {limit?: (Scalars['Int'] | null), map_name?: (Scalars['String'] | null), team_id: Scalars['uuid']} }) - /** fetch data from the table: "utility_collection_items" */ - utility_collection_items?: (utility_collection_itemsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_collection_items_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_collection_items_order_by[] | null), - /** filter the rows returned */ - where?: (utility_collection_items_bool_exp | null)} }) - /** fetch aggregated fields from the table: "utility_collection_items" */ - utility_collection_items_aggregate?: (utility_collection_items_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_collection_items_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_collection_items_order_by[] | null), - /** filter the rows returned */ - where?: (utility_collection_items_bool_exp | null)} }) - /** fetch data from the table: "utility_collection_items" using primary key columns */ - utility_collection_items_by_pk?: (utility_collection_itemsGenqlSelection & { __args: {collection_id: Scalars['uuid'], utility_lineup_id: Scalars['uuid']} }) - /** fetch data from the table: "utility_collections" */ - utility_collections?: (utility_collectionsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_collections_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_collections_order_by[] | null), - /** filter the rows returned */ - where?: (utility_collections_bool_exp | null)} }) - /** fetch aggregated fields from the table: "utility_collections" */ - utility_collections_aggregate?: (utility_collections_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_collections_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_collections_order_by[] | null), - /** filter the rows returned */ - where?: (utility_collections_bool_exp | null)} }) - /** fetch data from the table: "utility_collections" using primary key columns */ - utility_collections_by_pk?: (utility_collectionsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "utility_demo_mines" */ - utility_demo_mines?: (utility_demo_minesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_demo_mines_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_demo_mines_order_by[] | null), - /** filter the rows returned */ - where?: (utility_demo_mines_bool_exp | null)} }) - /** fetch aggregated fields from the table: "utility_demo_mines" */ - utility_demo_mines_aggregate?: (utility_demo_mines_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_demo_mines_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_demo_mines_order_by[] | null), - /** filter the rows returned */ - where?: (utility_demo_mines_bool_exp | null)} }) - /** fetch data from the table: "utility_demo_mines" using primary key columns */ - utility_demo_mines_by_pk?: (utility_demo_minesGenqlSelection & { __args: {match_map_demo_id: Scalars['uuid']} }) - /** fetch data from the table: "utility_demo_throws" */ - utility_demo_throws?: (utility_demo_throwsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_demo_throws_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_demo_throws_order_by[] | null), - /** filter the rows returned */ - where?: (utility_demo_throws_bool_exp | null)} }) - /** fetch aggregated fields from the table: "utility_demo_throws" */ - utility_demo_throws_aggregate?: (utility_demo_throws_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_demo_throws_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_demo_throws_order_by[] | null), - /** filter the rows returned */ - where?: (utility_demo_throws_bool_exp | null)} }) - /** fetch data from the table: "utility_demo_throws" using primary key columns */ - utility_demo_throws_by_pk?: (utility_demo_throwsGenqlSelection & { __args: {grenade_id: Scalars['Int'], match_map_demo_id: Scalars['uuid']} }) - /** fetch data from the table: "utility_drift_results" */ - utility_drift_results?: (utility_drift_resultsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_drift_results_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_drift_results_order_by[] | null), - /** filter the rows returned */ - where?: (utility_drift_results_bool_exp | null)} }) - /** fetch aggregated fields from the table: "utility_drift_results" */ - utility_drift_results_aggregate?: (utility_drift_results_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_drift_results_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_drift_results_order_by[] | null), - /** filter the rows returned */ - where?: (utility_drift_results_bool_exp | null)} }) - /** fetch data from the table: "utility_drift_results" using primary key columns */ - utility_drift_results_by_pk?: (utility_drift_resultsGenqlSelection & { __args: {utility_drift_scan_id: Scalars['uuid'], utility_lineup_id: Scalars['uuid']} }) - /** fetch data from the table: "utility_drift_scans" */ - utility_drift_scans?: (utility_drift_scansGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_drift_scans_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_drift_scans_order_by[] | null), - /** filter the rows returned */ - where?: (utility_drift_scans_bool_exp | null)} }) - /** fetch aggregated fields from the table: "utility_drift_scans" */ - utility_drift_scans_aggregate?: (utility_drift_scans_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_drift_scans_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_drift_scans_order_by[] | null), - /** filter the rows returned */ - where?: (utility_drift_scans_bool_exp | null)} }) - /** fetch data from the table: "utility_drift_scans" using primary key columns */ - utility_drift_scans_by_pk?: (utility_drift_scansGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "utility_lineup_favorites" */ - utility_lineup_favorites?: (utility_lineup_favoritesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_lineup_favorites_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_lineup_favorites_order_by[] | null), - /** filter the rows returned */ - where?: (utility_lineup_favorites_bool_exp | null)} }) - /** fetch aggregated fields from the table: "utility_lineup_favorites" */ - utility_lineup_favorites_aggregate?: (utility_lineup_favorites_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_lineup_favorites_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_lineup_favorites_order_by[] | null), - /** filter the rows returned */ - where?: (utility_lineup_favorites_bool_exp | null)} }) - /** fetch data from the table: "utility_lineup_favorites" using primary key columns */ - utility_lineup_favorites_by_pk?: (utility_lineup_favoritesGenqlSelection & { __args: {steam_id: Scalars['bigint'], utility_lineup_id: Scalars['uuid']} }) - /** fetch data from the table: "utility_lineup_progress" */ - utility_lineup_progress?: (utility_lineup_progressGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_lineup_progress_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_lineup_progress_order_by[] | null), - /** filter the rows returned */ - where?: (utility_lineup_progress_bool_exp | null)} }) - /** fetch aggregated fields from the table: "utility_lineup_progress" */ - utility_lineup_progress_aggregate?: (utility_lineup_progress_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_lineup_progress_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_lineup_progress_order_by[] | null), - /** filter the rows returned */ - where?: (utility_lineup_progress_bool_exp | null)} }) - /** fetch data from the table: "utility_lineup_progress" using primary key columns */ - utility_lineup_progress_by_pk?: (utility_lineup_progressGenqlSelection & { __args: {steam_id: Scalars['bigint'], utility_lineup_id: Scalars['uuid']} }) - /** fetch data from the table: "utility_lineup_renders" */ - utility_lineup_renders?: (utility_lineup_rendersGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_lineup_renders_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_lineup_renders_order_by[] | null), - /** filter the rows returned */ - where?: (utility_lineup_renders_bool_exp | null)} }) - /** fetch aggregated fields from the table: "utility_lineup_renders" */ - utility_lineup_renders_aggregate?: (utility_lineup_renders_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_lineup_renders_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_lineup_renders_order_by[] | null), - /** filter the rows returned */ - where?: (utility_lineup_renders_bool_exp | null)} }) - /** fetch data from the table: "utility_lineup_renders" using primary key columns */ - utility_lineup_renders_by_pk?: (utility_lineup_rendersGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "utility_lineup_repairs" */ - utility_lineup_repairs?: (utility_lineup_repairsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_lineup_repairs_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_lineup_repairs_order_by[] | null), - /** filter the rows returned */ - where?: (utility_lineup_repairs_bool_exp | null)} }) - /** fetch aggregated fields from the table: "utility_lineup_repairs" */ - utility_lineup_repairs_aggregate?: (utility_lineup_repairs_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_lineup_repairs_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_lineup_repairs_order_by[] | null), - /** filter the rows returned */ - where?: (utility_lineup_repairs_bool_exp | null)} }) - /** fetch data from the table: "utility_lineup_repairs" using primary key columns */ - utility_lineup_repairs_by_pk?: (utility_lineup_repairsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "utility_lineup_votes" */ - utility_lineup_votes?: (utility_lineup_votesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_lineup_votes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_lineup_votes_order_by[] | null), - /** filter the rows returned */ - where?: (utility_lineup_votes_bool_exp | null)} }) - /** fetch aggregated fields from the table: "utility_lineup_votes" */ - utility_lineup_votes_aggregate?: (utility_lineup_votes_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_lineup_votes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_lineup_votes_order_by[] | null), - /** filter the rows returned */ - where?: (utility_lineup_votes_bool_exp | null)} }) - /** fetch data from the table: "utility_lineup_votes" using primary key columns */ - utility_lineup_votes_by_pk?: (utility_lineup_votesGenqlSelection & { __args: {steam_id: Scalars['bigint'], utility_lineup_id: Scalars['uuid']} }) - /** An array relationship */ - utility_lineups?: (utility_lineupsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_lineups_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_lineups_order_by[] | null), - /** filter the rows returned */ - where?: (utility_lineups_bool_exp | null)} }) - /** An aggregate relationship */ - utility_lineups_aggregate?: (utility_lineups_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_lineups_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_lineups_order_by[] | null), - /** filter the rows returned */ - where?: (utility_lineups_bool_exp | null)} }) - /** fetch data from the table: "utility_lineups" using primary key columns */ - utility_lineups_by_pk?: (utility_lineupsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "utility_meta_lineups" */ - utility_meta_lineups?: (utility_meta_lineupsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_meta_lineups_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_meta_lineups_order_by[] | null), - /** filter the rows returned */ - where?: (utility_meta_lineups_bool_exp | null)} }) - /** fetch aggregated fields from the table: "utility_meta_lineups" */ - utility_meta_lineups_aggregate?: (utility_meta_lineups_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_meta_lineups_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_meta_lineups_order_by[] | null), - /** filter the rows returned */ - where?: (utility_meta_lineups_bool_exp | null)} }) - /** fetch data from the table: "utility_meta_lineups" using primary key columns */ - utility_meta_lineups_by_pk?: (utility_meta_lineupsGenqlSelection & { __args: {lineup_bucket: Scalars['String']} }) - /** fetch data from the table: "utility_playbook_steps" */ - utility_playbook_steps?: (utility_playbook_stepsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_playbook_steps_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_playbook_steps_order_by[] | null), - /** filter the rows returned */ - where?: (utility_playbook_steps_bool_exp | null)} }) - /** fetch aggregated fields from the table: "utility_playbook_steps" */ - utility_playbook_steps_aggregate?: (utility_playbook_steps_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_playbook_steps_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_playbook_steps_order_by[] | null), - /** filter the rows returned */ - where?: (utility_playbook_steps_bool_exp | null)} }) - /** fetch data from the table: "utility_playbook_steps" using primary key columns */ - utility_playbook_steps_by_pk?: (utility_playbook_stepsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "utility_playbooks" */ - utility_playbooks?: (utility_playbooksGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_playbooks_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_playbooks_order_by[] | null), - /** filter the rows returned */ - where?: (utility_playbooks_bool_exp | null)} }) - /** fetch aggregated fields from the table: "utility_playbooks" */ - utility_playbooks_aggregate?: (utility_playbooks_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_playbooks_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_playbooks_order_by[] | null), - /** filter the rows returned */ - where?: (utility_playbooks_bool_exp | null)} }) - /** fetch data from the table: "utility_playbooks" using primary key columns */ - utility_playbooks_by_pk?: (utility_playbooksGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "utility_practice_invites" */ - utility_practice_invites?: (utility_practice_invitesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_practice_invites_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_practice_invites_order_by[] | null), - /** filter the rows returned */ - where?: (utility_practice_invites_bool_exp | null)} }) - /** fetch aggregated fields from the table: "utility_practice_invites" */ - utility_practice_invites_aggregate?: (utility_practice_invites_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_practice_invites_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_practice_invites_order_by[] | null), - /** filter the rows returned */ - where?: (utility_practice_invites_bool_exp | null)} }) - /** fetch data from the table: "utility_practice_invites" using primary key columns */ - utility_practice_invites_by_pk?: (utility_practice_invitesGenqlSelection & { __args: {steam_id: Scalars['bigint'], utility_practice_session_id: Scalars['uuid']} }) - /** An array relationship */ - utility_practice_sessions?: (utility_practice_sessionsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_practice_sessions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_practice_sessions_order_by[] | null), - /** filter the rows returned */ - where?: (utility_practice_sessions_bool_exp | null)} }) - /** An aggregate relationship */ - utility_practice_sessions_aggregate?: (utility_practice_sessions_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_practice_sessions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_practice_sessions_order_by[] | null), - /** filter the rows returned */ - where?: (utility_practice_sessions_bool_exp | null)} }) - /** fetch data from the table: "utility_practice_sessions" using primary key columns */ - utility_practice_sessions_by_pk?: (utility_practice_sessionsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "v_event_player_stats" */ - v_event_player_stats?: (v_event_player_statsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_event_player_stats_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (v_event_player_stats_order_by[] | null), - /** filter the rows returned */ - where?: (v_event_player_stats_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_event_player_stats" */ - v_event_player_stats_aggregate?: (v_event_player_stats_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_event_player_stats_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (v_event_player_stats_order_by[] | null), - /** filter the rows returned */ - where?: (v_event_player_stats_bool_exp | null)} }) - /** fetch data from the table: "v_gpu_pool_status" */ - v_gpu_pool_status?: (v_gpu_pool_statusGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_gpu_pool_status_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_gpu_pool_status_order_by[] | null), - /** filter the rows returned */ - where?: (v_gpu_pool_status_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_gpu_pool_status" */ - v_gpu_pool_status_aggregate?: (v_gpu_pool_status_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_gpu_pool_status_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_gpu_pool_status_order_by[] | null), - /** filter the rows returned */ - where?: (v_gpu_pool_status_bool_exp | null)} }) - /** fetch data from the table: "v_league_division_standings" */ - v_league_division_standings?: (v_league_division_standingsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_league_division_standings_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_league_division_standings_order_by[] | null), - /** filter the rows returned */ - where?: (v_league_division_standings_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_league_division_standings" */ - v_league_division_standings_aggregate?: (v_league_division_standings_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_league_division_standings_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_league_division_standings_order_by[] | null), - /** filter the rows returned */ - where?: (v_league_division_standings_bool_exp | null)} }) - /** fetch data from the table: "v_league_season_player_stats" */ - v_league_season_player_stats?: (v_league_season_player_statsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_league_season_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_league_season_player_stats_order_by[] | null), - /** filter the rows returned */ - where?: (v_league_season_player_stats_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_league_season_player_stats" */ - v_league_season_player_stats_aggregate?: (v_league_season_player_stats_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_league_season_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_league_season_player_stats_order_by[] | null), - /** filter the rows returned */ - where?: (v_league_season_player_stats_bool_exp | null)} }) - /** fetch data from the table: "v_match_captains" */ - v_match_captains?: (v_match_captainsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_match_captains_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_captains_order_by[] | null), - /** filter the rows returned */ - where?: (v_match_captains_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_match_captains" */ - v_match_captains_aggregate?: (v_match_captains_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_match_captains_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_captains_order_by[] | null), - /** filter the rows returned */ - where?: (v_match_captains_bool_exp | null)} }) - /** fetch data from the table: "v_match_clutches" */ - v_match_clutches?: (v_match_clutchesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_match_clutches_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_clutches_order_by[] | null), - /** filter the rows returned */ - where?: (v_match_clutches_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_match_clutches" */ - v_match_clutches_aggregate?: (v_match_clutches_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_match_clutches_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_clutches_order_by[] | null), - /** filter the rows returned */ - where?: (v_match_clutches_bool_exp | null)} }) - /** fetch data from the table: "v_match_kill_pairs" */ - v_match_kill_pairs?: (v_match_kill_pairsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_match_kill_pairs_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_kill_pairs_order_by[] | null), - /** filter the rows returned */ - where?: (v_match_kill_pairs_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_match_kill_pairs" */ - v_match_kill_pairs_aggregate?: (v_match_kill_pairs_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_match_kill_pairs_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_kill_pairs_order_by[] | null), - /** filter the rows returned */ - where?: (v_match_kill_pairs_bool_exp | null)} }) - /** fetch data from the table: "v_match_lineup_buy_types" */ - v_match_lineup_buy_types?: (v_match_lineup_buy_typesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_match_lineup_buy_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_lineup_buy_types_order_by[] | null), - /** filter the rows returned */ - where?: (v_match_lineup_buy_types_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_match_lineup_buy_types" */ - v_match_lineup_buy_types_aggregate?: (v_match_lineup_buy_types_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_match_lineup_buy_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_lineup_buy_types_order_by[] | null), - /** filter the rows returned */ - where?: (v_match_lineup_buy_types_bool_exp | null)} }) - /** fetch data from the table: "v_match_lineup_map_stats" */ - v_match_lineup_map_stats?: (v_match_lineup_map_statsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_match_lineup_map_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_match_lineup_map_stats_order_by[] | null), - /** filter the rows returned */ - where?: (v_match_lineup_map_stats_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_match_lineup_map_stats" */ - v_match_lineup_map_stats_aggregate?: (v_match_lineup_map_stats_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_match_lineup_map_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_match_lineup_map_stats_order_by[] | null), - /** filter the rows returned */ - where?: (v_match_lineup_map_stats_bool_exp | null)} }) - /** fetch data from the table: "v_match_map_backup_rounds" */ - v_match_map_backup_rounds?: (v_match_map_backup_roundsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_match_map_backup_rounds_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_map_backup_rounds_order_by[] | null), - /** filter the rows returned */ - where?: (v_match_map_backup_rounds_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_match_map_backup_rounds" */ - v_match_map_backup_rounds_aggregate?: (v_match_map_backup_rounds_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_match_map_backup_rounds_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_map_backup_rounds_order_by[] | null), - /** filter the rows returned */ - where?: (v_match_map_backup_rounds_bool_exp | null)} }) - /** fetch data from the table: "v_match_player_buy_types" */ - v_match_player_buy_types?: (v_match_player_buy_typesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_match_player_buy_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_player_buy_types_order_by[] | null), - /** filter the rows returned */ - where?: (v_match_player_buy_types_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_match_player_buy_types" */ - v_match_player_buy_types_aggregate?: (v_match_player_buy_types_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_match_player_buy_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_player_buy_types_order_by[] | null), - /** filter the rows returned */ - where?: (v_match_player_buy_types_bool_exp | null)} }) - /** fetch data from the table: "v_match_player_opening_duels" */ - v_match_player_opening_duels?: (v_match_player_opening_duelsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_match_player_opening_duels_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_player_opening_duels_order_by[] | null), - /** filter the rows returned */ - where?: (v_match_player_opening_duels_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_match_player_opening_duels" */ - v_match_player_opening_duels_aggregate?: (v_match_player_opening_duels_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_match_player_opening_duels_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_player_opening_duels_order_by[] | null), - /** filter the rows returned */ - where?: (v_match_player_opening_duels_bool_exp | null)} }) - /** fetch data from the table: "v_player_arch_nemesis" */ - v_player_arch_nemesis?: (v_player_arch_nemesisGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_arch_nemesis_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_arch_nemesis_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_arch_nemesis_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_player_arch_nemesis" */ - v_player_arch_nemesis_aggregate?: (v_player_arch_nemesis_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_arch_nemesis_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_arch_nemesis_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_arch_nemesis_bool_exp | null)} }) - /** fetch data from the table: "v_player_damage" */ - v_player_damage?: (v_player_damageGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_damage_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_damage_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_damage_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_player_damage" */ - v_player_damage_aggregate?: (v_player_damage_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_damage_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_damage_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_damage_bool_exp | null)} }) - /** fetch data from the table: "v_player_elo" */ - v_player_elo?: (v_player_eloGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_elo_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_elo_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_elo_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_player_elo" */ - v_player_elo_aggregate?: (v_player_elo_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_elo_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_elo_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_elo_bool_exp | null)} }) - /** fetch data from the table: "v_player_map_losses" */ - v_player_map_losses?: (v_player_map_lossesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_map_losses_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_map_losses_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_map_losses_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_player_map_losses" */ - v_player_map_losses_aggregate?: (v_player_map_losses_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_map_losses_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_map_losses_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_map_losses_bool_exp | null)} }) - /** fetch data from the table: "v_player_map_wins" */ - v_player_map_wins?: (v_player_map_winsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_map_wins_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_map_wins_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_map_wins_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_player_map_wins" */ - v_player_map_wins_aggregate?: (v_player_map_wins_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_map_wins_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_map_wins_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_map_wins_bool_exp | null)} }) - /** fetch data from the table: "v_player_match_head_to_head" */ - v_player_match_head_to_head?: (v_player_match_head_to_headGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_match_head_to_head_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_match_head_to_head_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_match_head_to_head_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_player_match_head_to_head" */ - v_player_match_head_to_head_aggregate?: (v_player_match_head_to_head_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_match_head_to_head_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_match_head_to_head_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_match_head_to_head_bool_exp | null)} }) - /** fetch data from the table: "v_player_match_map_hltv" */ - v_player_match_map_hltv?: (v_player_match_map_hltvGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_match_map_hltv_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_match_map_hltv_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_match_map_hltv_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_player_match_map_hltv" */ - v_player_match_map_hltv_aggregate?: (v_player_match_map_hltv_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_match_map_hltv_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_match_map_hltv_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_match_map_hltv_bool_exp | null)} }) - /** fetch data from the table: "v_player_match_map_roles" */ - v_player_match_map_roles?: (v_player_match_map_rolesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_match_map_roles_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_match_map_roles_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_match_map_roles_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_player_match_map_roles" */ - v_player_match_map_roles_aggregate?: (v_player_match_map_roles_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_match_map_roles_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_match_map_roles_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_match_map_roles_bool_exp | null)} }) - /** fetch data from the table: "v_player_match_performance" */ - v_player_match_performance?: (v_player_match_performanceGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_match_performance_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_match_performance_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_match_performance_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_player_match_performance" */ - v_player_match_performance_aggregate?: (v_player_match_performance_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_match_performance_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_match_performance_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_match_performance_bool_exp | null)} }) - /** fetch data from the table: "v_player_match_rating" */ - v_player_match_rating?: (v_player_match_ratingGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_match_rating_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_match_rating_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_match_rating_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_player_match_rating" */ - v_player_match_rating_aggregate?: (v_player_match_rating_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_match_rating_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_match_rating_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_match_rating_bool_exp | null)} }) - /** fetch data from the table: "v_player_multi_kills" */ - v_player_multi_kills?: (v_player_multi_killsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_multi_kills_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_multi_kills_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_multi_kills_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_player_multi_kills" */ - v_player_multi_kills_aggregate?: (v_player_multi_kills_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_multi_kills_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_multi_kills_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_multi_kills_bool_exp | null)} }) - /** fetch data from the table: "v_player_queue_partners" */ - v_player_queue_partners?: (v_player_queue_partnersGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_queue_partners_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_queue_partners_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_queue_partners_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_player_queue_partners" */ - v_player_queue_partners_aggregate?: (v_player_queue_partners_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_queue_partners_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_queue_partners_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_queue_partners_bool_exp | null)} }) - /** fetch data from the table: "v_player_weapon_damage" */ - v_player_weapon_damage?: (v_player_weapon_damageGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_weapon_damage_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_weapon_damage_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_weapon_damage_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_player_weapon_damage" */ - v_player_weapon_damage_aggregate?: (v_player_weapon_damage_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_weapon_damage_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_weapon_damage_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_weapon_damage_bool_exp | null)} }) - /** fetch data from the table: "v_player_weapon_kills" */ - v_player_weapon_kills?: (v_player_weapon_killsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_weapon_kills_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_weapon_kills_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_weapon_kills_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_player_weapon_kills" */ - v_player_weapon_kills_aggregate?: (v_player_weapon_kills_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_weapon_kills_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_weapon_kills_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_weapon_kills_bool_exp | null)} }) - /** fetch data from the table: "v_pool_maps" */ - v_pool_maps?: (v_pool_mapsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_pool_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?: (v_pool_maps_order_by[] | null), - /** filter the rows returned */ - where?: (v_pool_maps_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_pool_maps" */ - v_pool_maps_aggregate?: (v_pool_maps_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_pool_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?: (v_pool_maps_order_by[] | null), - /** filter the rows returned */ - where?: (v_pool_maps_bool_exp | null)} }) - /** fetch data from the table: "v_steam_account_pool_status" */ - v_steam_account_pool_status?: (v_steam_account_pool_statusGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_steam_account_pool_status_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_steam_account_pool_status_order_by[] | null), - /** filter the rows returned */ - where?: (v_steam_account_pool_status_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_steam_account_pool_status" */ - v_steam_account_pool_status_aggregate?: (v_steam_account_pool_status_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_steam_account_pool_status_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_steam_account_pool_status_order_by[] | null), - /** filter the rows returned */ - where?: (v_steam_account_pool_status_bool_exp | null)} }) - /** fetch data from the table: "v_team_ranks" */ - v_team_ranks?: (v_team_ranksGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_team_ranks_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_team_ranks_order_by[] | null), - /** filter the rows returned */ - where?: (v_team_ranks_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_team_ranks" */ - v_team_ranks_aggregate?: (v_team_ranks_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_team_ranks_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_team_ranks_order_by[] | null), - /** filter the rows returned */ - where?: (v_team_ranks_bool_exp | null)} }) - /** fetch data from the table: "v_team_reputation" */ - v_team_reputation?: (v_team_reputationGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_team_reputation_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_team_reputation_order_by[] | null), - /** filter the rows returned */ - where?: (v_team_reputation_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_team_reputation" */ - v_team_reputation_aggregate?: (v_team_reputation_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_team_reputation_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_team_reputation_order_by[] | null), - /** filter the rows returned */ - where?: (v_team_reputation_bool_exp | null)} }) - /** fetch data from the table: "v_team_stage_results" */ - v_team_stage_results?: (v_team_stage_resultsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_team_stage_results_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_team_stage_results_order_by[] | null), - /** filter the rows returned */ - where?: (v_team_stage_results_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_team_stage_results" */ - v_team_stage_results_aggregate?: (v_team_stage_results_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_team_stage_results_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_team_stage_results_order_by[] | null), - /** filter the rows returned */ - where?: (v_team_stage_results_bool_exp | null)} }) - /** fetch data from the table: "v_team_stage_results" using primary key columns */ - v_team_stage_results_by_pk?: (v_team_stage_resultsGenqlSelection & { __args: {tournament_stage_id: Scalars['uuid'], tournament_team_id: Scalars['uuid']} }) - /** fetch data from the table: "v_team_tournament_results" */ - v_team_tournament_results?: (v_team_tournament_resultsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_team_tournament_results_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_team_tournament_results_order_by[] | null), - /** filter the rows returned */ - where?: (v_team_tournament_results_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_team_tournament_results" */ - v_team_tournament_results_aggregate?: (v_team_tournament_results_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_team_tournament_results_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_team_tournament_results_order_by[] | null), - /** filter the rows returned */ - where?: (v_team_tournament_results_bool_exp | null)} }) - /** fetch data from the table: "v_tournament_player_stats" */ - v_tournament_player_stats?: (v_tournament_player_statsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_tournament_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_tournament_player_stats_order_by[] | null), - /** filter the rows returned */ - where?: (v_tournament_player_stats_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_tournament_player_stats" */ - v_tournament_player_stats_aggregate?: (v_tournament_player_stats_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_tournament_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_tournament_player_stats_order_by[] | null), - /** filter the rows returned */ - where?: (v_tournament_player_stats_bool_exp | null)} }) - /** Web push setup status for the application settings page; never returns the private key */ - webPushStatus?: WebPushStatusOutputGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface recalculate_tournament_awards_args {_tournament_id?: (Scalars['uuid'] | null)} - -export interface remove_league_team_from_season_args {_league_team_season_id?: (Scalars['uuid'] | null)} - -export interface reorder_league_divisions_args {_division_ids?: (Scalars['_uuid'] | null)} - -export interface restart_league_season_args {_league_season_id?: (Scalars['uuid'] | null)} - - -/** columns and relationships of "v_role_permissions" */ -export interface role_permissionsGenqlSelection{ - can_create_events?: boolean | number - can_create_matches?: boolean | number - can_create_tournaments?: boolean | number - role?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "v_role_permissions" */ -export interface role_permissions_aggregateGenqlSelection{ - aggregate?: role_permissions_aggregate_fieldsGenqlSelection - nodes?: role_permissionsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "v_role_permissions" */ -export interface role_permissions_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (role_permissions_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: role_permissions_max_fieldsGenqlSelection - min?: role_permissions_min_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "v_role_permissions". All fields are combined with a logical 'AND'. */ -export interface role_permissions_bool_exp {_and?: (role_permissions_bool_exp[] | null),_not?: (role_permissions_bool_exp | null),_or?: (role_permissions_bool_exp[] | null),can_create_events?: (Boolean_comparison_exp | null),can_create_matches?: (Boolean_comparison_exp | null),can_create_tournaments?: (Boolean_comparison_exp | null),role?: (String_comparison_exp | null)} - - -/** input type for inserting data into table "v_role_permissions" */ -export interface role_permissions_insert_input {can_create_events?: (Scalars['Boolean'] | null),can_create_matches?: (Scalars['Boolean'] | null),can_create_tournaments?: (Scalars['Boolean'] | null),role?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface role_permissions_max_fieldsGenqlSelection{ - role?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface role_permissions_min_fieldsGenqlSelection{ - role?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "v_role_permissions" */ -export interface role_permissions_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: role_permissionsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Ordering options when selecting data from "v_role_permissions". */ -export interface role_permissions_order_by {can_create_events?: (order_by | null),can_create_matches?: (order_by | null),can_create_tournaments?: (order_by | null),role?: (order_by | null)} - - -/** input type for updating data in table "v_role_permissions" */ -export interface role_permissions_set_input {can_create_events?: (Scalars['Boolean'] | null),can_create_matches?: (Scalars['Boolean'] | null),can_create_tournaments?: (Scalars['Boolean'] | null),role?: (Scalars['String'] | null)} - - -/** Streaming cursor of the table "role_permissions" */ -export interface role_permissions_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: role_permissions_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface role_permissions_stream_cursor_value_input {can_create_events?: (Scalars['Boolean'] | null),can_create_matches?: (Scalars['Boolean'] | null),can_create_tournaments?: (Scalars['Boolean'] | null),role?: (Scalars['String'] | null)} - -export interface role_permissions_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (role_permissions_set_input | null), -/** filter the rows which have to be updated */ -where: role_permissions_bool_exp} - - -/** columns and relationships of "seasons" */ -export interface seasonsGenqlSelection{ - /** 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)} }) - created_at?: boolean | number - description?: boolean | number - ends_at?: boolean | number - id?: boolean | number - needs_rebuild?: boolean | number - number?: boolean | number - /** An array relationship */ - player_season_stats?: (player_season_statsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_season_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?: (player_season_stats_order_by[] | null), - /** filter the rows returned */ - where?: (player_season_stats_bool_exp | null)} }) - /** An aggregate relationship */ - player_season_stats_aggregate?: (player_season_stats_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_season_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?: (player_season_stats_order_by[] | null), - /** filter the rows returned */ - where?: (player_season_stats_bool_exp | null)} }) - starts_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "seasons" */ -export interface seasons_aggregateGenqlSelection{ - aggregate?: seasons_aggregate_fieldsGenqlSelection - nodes?: seasonsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "seasons" */ -export interface seasons_aggregate_fieldsGenqlSelection{ - avg?: seasons_avg_fieldsGenqlSelection - count?: { __args: {columns?: (seasons_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: seasons_max_fieldsGenqlSelection - min?: seasons_min_fieldsGenqlSelection - stddev?: seasons_stddev_fieldsGenqlSelection - stddev_pop?: seasons_stddev_pop_fieldsGenqlSelection - stddev_samp?: seasons_stddev_samp_fieldsGenqlSelection - sum?: seasons_sum_fieldsGenqlSelection - var_pop?: seasons_var_pop_fieldsGenqlSelection - var_samp?: seasons_var_samp_fieldsGenqlSelection - variance?: seasons_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface seasons_avg_fieldsGenqlSelection{ - number?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "seasons". All fields are combined with a logical 'AND'. */ -export interface seasons_bool_exp {_and?: (seasons_bool_exp[] | null),_not?: (seasons_bool_exp | null),_or?: (seasons_bool_exp[] | null),awards?: (award_recipients_bool_exp | null),awards_aggregate?: (award_recipients_aggregate_bool_exp | null),created_at?: (timestamptz_comparison_exp | null),description?: (String_comparison_exp | null),ends_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),needs_rebuild?: (Boolean_comparison_exp | null),number?: (Int_comparison_exp | null),player_season_stats?: (player_season_stats_bool_exp | null),player_season_stats_aggregate?: (player_season_stats_aggregate_bool_exp | null),starts_at?: (timestamptz_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "seasons" */ -export interface seasons_inc_input {number?: (Scalars['Int'] | null)} - - -/** input type for inserting data into table "seasons" */ -export interface seasons_insert_input {awards?: (award_recipients_arr_rel_insert_input | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),ends_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),needs_rebuild?: (Scalars['Boolean'] | null),number?: (Scalars['Int'] | null),player_season_stats?: (player_season_stats_arr_rel_insert_input | null),starts_at?: (Scalars['timestamptz'] | null)} - - -/** aggregate max on columns */ -export interface seasons_max_fieldsGenqlSelection{ - created_at?: boolean | number - description?: boolean | number - ends_at?: boolean | number - id?: boolean | number - number?: boolean | number - starts_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface seasons_min_fieldsGenqlSelection{ - created_at?: boolean | number - description?: boolean | number - ends_at?: boolean | number - id?: boolean | number - number?: boolean | number - starts_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "seasons" */ -export interface seasons_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: seasonsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "seasons" */ -export interface seasons_obj_rel_insert_input {data: seasons_insert_input, -/** upsert condition */ -on_conflict?: (seasons_on_conflict | null)} - - -/** on_conflict condition type for table "seasons" */ -export interface seasons_on_conflict {constraint: seasons_constraint,update_columns?: seasons_update_column[],where?: (seasons_bool_exp | null)} - - -/** Ordering options when selecting data from "seasons". */ -export interface seasons_order_by {awards_aggregate?: (award_recipients_aggregate_order_by | null),created_at?: (order_by | null),description?: (order_by | null),ends_at?: (order_by | null),id?: (order_by | null),needs_rebuild?: (order_by | null),number?: (order_by | null),player_season_stats_aggregate?: (player_season_stats_aggregate_order_by | null),starts_at?: (order_by | null)} - - -/** primary key columns input for table: seasons */ -export interface seasons_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "seasons" */ -export interface seasons_set_input {created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),ends_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),needs_rebuild?: (Scalars['Boolean'] | null),number?: (Scalars['Int'] | null),starts_at?: (Scalars['timestamptz'] | null)} - - -/** aggregate stddev on columns */ -export interface seasons_stddev_fieldsGenqlSelection{ - number?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface seasons_stddev_pop_fieldsGenqlSelection{ - number?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface seasons_stddev_samp_fieldsGenqlSelection{ - number?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "seasons" */ -export interface seasons_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: seasons_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface seasons_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),ends_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),needs_rebuild?: (Scalars['Boolean'] | null),number?: (Scalars['Int'] | null),starts_at?: (Scalars['timestamptz'] | null)} - - -/** aggregate sum on columns */ -export interface seasons_sum_fieldsGenqlSelection{ - number?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface seasons_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (seasons_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (seasons_set_input | null), -/** filter the rows which have to be updated */ -where: seasons_bool_exp} - - -/** aggregate var_pop on columns */ -export interface seasons_var_pop_fieldsGenqlSelection{ - number?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface seasons_var_samp_fieldsGenqlSelection{ - number?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface seasons_variance_fieldsGenqlSelection{ - number?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "server_regions" */ -export interface server_regionsGenqlSelection{ - /** A computed field, executes function "available_region_server_count" */ - available_server_count?: boolean | number - description?: boolean | number - /** An array relationship */ - game_server_nodes?: (game_server_nodesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (game_server_nodes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_nodes_order_by[] | null), - /** filter the rows returned */ - where?: (game_server_nodes_bool_exp | null)} }) - /** An aggregate relationship */ - game_server_nodes_aggregate?: (game_server_nodes_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (game_server_nodes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_nodes_order_by[] | null), - /** filter the rows returned */ - where?: (game_server_nodes_bool_exp | null)} }) - /** A computed field, executes function "region_has_node" */ - has_node?: boolean | number - is_lan?: boolean | number - /** A computed field, executes function "region_status" */ - status?: boolean | number - steam_relay?: boolean | number - /** A computed field, executes function "total_region_server_count" */ - total_server_count?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "server_regions" */ -export interface server_regions_aggregateGenqlSelection{ - aggregate?: server_regions_aggregate_fieldsGenqlSelection - nodes?: server_regionsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "server_regions" */ -export interface server_regions_aggregate_fieldsGenqlSelection{ - avg?: server_regions_avg_fieldsGenqlSelection - count?: { __args: {columns?: (server_regions_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: server_regions_max_fieldsGenqlSelection - min?: server_regions_min_fieldsGenqlSelection - stddev?: server_regions_stddev_fieldsGenqlSelection - stddev_pop?: server_regions_stddev_pop_fieldsGenqlSelection - stddev_samp?: server_regions_stddev_samp_fieldsGenqlSelection - sum?: server_regions_sum_fieldsGenqlSelection - var_pop?: server_regions_var_pop_fieldsGenqlSelection - var_samp?: server_regions_var_samp_fieldsGenqlSelection - variance?: server_regions_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface server_regions_avg_fieldsGenqlSelection{ - /** A computed field, executes function "available_region_server_count" */ - available_server_count?: boolean | number - /** A computed field, executes function "total_region_server_count" */ - total_server_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "server_regions". All fields are combined with a logical 'AND'. */ -export interface server_regions_bool_exp {_and?: (server_regions_bool_exp[] | null),_not?: (server_regions_bool_exp | null),_or?: (server_regions_bool_exp[] | null),available_server_count?: (Int_comparison_exp | null),description?: (String_comparison_exp | null),game_server_nodes?: (game_server_nodes_bool_exp | null),game_server_nodes_aggregate?: (game_server_nodes_aggregate_bool_exp | null),has_node?: (Boolean_comparison_exp | null),is_lan?: (Boolean_comparison_exp | null),status?: (String_comparison_exp | null),steam_relay?: (Boolean_comparison_exp | null),total_server_count?: (Int_comparison_exp | null),value?: (String_comparison_exp | null)} - - -/** input type for inserting data into table "server_regions" */ -export interface server_regions_insert_input {description?: (Scalars['String'] | null),game_server_nodes?: (game_server_nodes_arr_rel_insert_input | null),is_lan?: (Scalars['Boolean'] | null),steam_relay?: (Scalars['Boolean'] | null),value?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface server_regions_max_fieldsGenqlSelection{ - /** A computed field, executes function "available_region_server_count" */ - available_server_count?: boolean | number - description?: boolean | number - /** A computed field, executes function "region_status" */ - status?: boolean | number - /** A computed field, executes function "total_region_server_count" */ - total_server_count?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface server_regions_min_fieldsGenqlSelection{ - /** A computed field, executes function "available_region_server_count" */ - available_server_count?: boolean | number - description?: boolean | number - /** A computed field, executes function "region_status" */ - status?: boolean | number - /** A computed field, executes function "total_region_server_count" */ - total_server_count?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "server_regions" */ -export interface server_regions_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: server_regionsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "server_regions" */ -export interface server_regions_obj_rel_insert_input {data: server_regions_insert_input, -/** upsert condition */ -on_conflict?: (server_regions_on_conflict | null)} - - -/** on_conflict condition type for table "server_regions" */ -export interface server_regions_on_conflict {constraint: server_regions_constraint,update_columns?: server_regions_update_column[],where?: (server_regions_bool_exp | null)} - - -/** Ordering options when selecting data from "server_regions". */ -export interface server_regions_order_by {available_server_count?: (order_by | null),description?: (order_by | null),game_server_nodes_aggregate?: (game_server_nodes_aggregate_order_by | null),has_node?: (order_by | null),is_lan?: (order_by | null),status?: (order_by | null),steam_relay?: (order_by | null),total_server_count?: (order_by | null),value?: (order_by | null)} - - -/** primary key columns input for table: server_regions */ -export interface server_regions_pk_columns_input {value: Scalars['String']} - - -/** input type for updating data in table "server_regions" */ -export interface server_regions_set_input {description?: (Scalars['String'] | null),is_lan?: (Scalars['Boolean'] | null),steam_relay?: (Scalars['Boolean'] | null),value?: (Scalars['String'] | null)} - - -/** aggregate stddev on columns */ -export interface server_regions_stddev_fieldsGenqlSelection{ - /** A computed field, executes function "available_region_server_count" */ - available_server_count?: boolean | number - /** A computed field, executes function "total_region_server_count" */ - total_server_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface server_regions_stddev_pop_fieldsGenqlSelection{ - /** A computed field, executes function "available_region_server_count" */ - available_server_count?: boolean | number - /** A computed field, executes function "total_region_server_count" */ - total_server_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface server_regions_stddev_samp_fieldsGenqlSelection{ - /** A computed field, executes function "available_region_server_count" */ - available_server_count?: boolean | number - /** A computed field, executes function "total_region_server_count" */ - total_server_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "server_regions" */ -export interface server_regions_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: server_regions_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface server_regions_stream_cursor_value_input {description?: (Scalars['String'] | null),is_lan?: (Scalars['Boolean'] | null),steam_relay?: (Scalars['Boolean'] | null),value?: (Scalars['String'] | null)} - - -/** aggregate sum on columns */ -export interface server_regions_sum_fieldsGenqlSelection{ - /** A computed field, executes function "available_region_server_count" */ - available_server_count?: boolean | number - /** A computed field, executes function "total_region_server_count" */ - total_server_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface server_regions_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (server_regions_set_input | null), -/** filter the rows which have to be updated */ -where: server_regions_bool_exp} - - -/** aggregate var_pop on columns */ -export interface server_regions_var_pop_fieldsGenqlSelection{ - /** A computed field, executes function "available_region_server_count" */ - available_server_count?: boolean | number - /** A computed field, executes function "total_region_server_count" */ - total_server_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface server_regions_var_samp_fieldsGenqlSelection{ - /** A computed field, executes function "available_region_server_count" */ - available_server_count?: boolean | number - /** A computed field, executes function "total_region_server_count" */ - total_server_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface server_regions_variance_fieldsGenqlSelection{ - /** A computed field, executes function "available_region_server_count" */ - available_server_count?: boolean | number - /** A computed field, executes function "total_region_server_count" */ - total_server_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "servers" */ -export interface serversGenqlSelection{ - api_password?: boolean | number - boot_status?: boolean | number - boot_status_detail?: boolean | number - connect_password?: boolean | number - connected?: boolean | number - /** A computed field, executes function "get_server_connection_link" */ - connection_link?: boolean | number - /** A computed field, executes function "get_server_connection_string" */ - connection_string?: boolean | number - /** An object relationship */ - current_match?: matchesGenqlSelection - 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 */ - 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)} }) - max_players?: boolean | number - 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 - region?: boolean | number - reserved_by_match_id?: boolean | number - /** An object relationship */ - server_region?: server_regionsGenqlSelection - steam_relay?: boolean | number - tv_port?: boolean | number - type?: boolean | number - updated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "servers" */ -export interface servers_aggregateGenqlSelection{ - aggregate?: servers_aggregate_fieldsGenqlSelection - nodes?: serversGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface servers_aggregate_bool_exp {bool_and?: (servers_aggregate_bool_exp_bool_and | null),bool_or?: (servers_aggregate_bool_exp_bool_or | null),count?: (servers_aggregate_bool_exp_count | null)} - -export interface servers_aggregate_bool_exp_bool_and {arguments: servers_select_column_servers_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (servers_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface servers_aggregate_bool_exp_bool_or {arguments: servers_select_column_servers_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (servers_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface servers_aggregate_bool_exp_count {arguments?: (servers_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (servers_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "servers" */ -export interface servers_aggregate_fieldsGenqlSelection{ - avg?: servers_avg_fieldsGenqlSelection - count?: { __args: {columns?: (servers_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: servers_max_fieldsGenqlSelection - min?: servers_min_fieldsGenqlSelection - stddev?: servers_stddev_fieldsGenqlSelection - stddev_pop?: servers_stddev_pop_fieldsGenqlSelection - stddev_samp?: servers_stddev_samp_fieldsGenqlSelection - sum?: servers_sum_fieldsGenqlSelection - var_pop?: servers_var_pop_fieldsGenqlSelection - var_samp?: servers_var_samp_fieldsGenqlSelection - variance?: servers_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "servers" */ -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 */ -on_conflict?: (servers_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface servers_avg_fieldsGenqlSelection{ - max_players?: boolean | number - port?: boolean | number - tv_port?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "servers" */ -export interface servers_avg_order_by {max_players?: (order_by | null),port?: (order_by | null),tv_port?: (order_by | null)} - - -/** 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_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" */ -export interface servers_inc_input {max_players?: (Scalars['Int'] | null),port?: (Scalars['Int'] | null),tv_port?: (Scalars['Int'] | null)} - - -/** 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_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 */ -export interface servers_max_fieldsGenqlSelection{ - api_password?: boolean | number - boot_status?: boolean | number - boot_status_detail?: boolean | number - connect_password?: boolean | number - /** A computed field, executes function "get_server_connection_link" */ - connection_link?: boolean | number - /** 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 - label?: boolean | number - 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 - steam_relay?: boolean | number - tv_port?: boolean | number - updated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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_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 */ -export interface servers_min_fieldsGenqlSelection{ - api_password?: boolean | number - boot_status?: boolean | number - boot_status_detail?: boolean | number - connect_password?: boolean | number - /** A computed field, executes function "get_server_connection_link" */ - connection_link?: boolean | number - /** 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 - label?: boolean | number - 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 - steam_relay?: boolean | number - tv_port?: boolean | number - updated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** 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_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" */ -export interface servers_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: serversGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "servers" */ -export interface servers_obj_rel_insert_input {data: servers_insert_input, -/** upsert condition */ -on_conflict?: (servers_on_conflict | null)} - - -/** on_conflict condition type for table "servers" */ -export interface servers_on_conflict {constraint: servers_constraint,update_columns?: servers_update_column[],where?: (servers_bool_exp | null)} - - -/** 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_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_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 */ -export interface servers_stddev_fieldsGenqlSelection{ - max_players?: boolean | number - port?: boolean | number - tv_port?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "servers" */ -export interface servers_stddev_order_by {max_players?: (order_by | null),port?: (order_by | null),tv_port?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface servers_stddev_pop_fieldsGenqlSelection{ - max_players?: boolean | number - port?: boolean | number - tv_port?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "servers" */ -export interface servers_stddev_pop_order_by {max_players?: (order_by | null),port?: (order_by | null),tv_port?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface servers_stddev_samp_fieldsGenqlSelection{ - max_players?: boolean | number - port?: boolean | number - tv_port?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "servers" */ -export interface servers_stddev_samp_order_by {max_players?: (order_by | null),port?: (order_by | null),tv_port?: (order_by | null)} - - -/** Streaming cursor of the table "servers" */ -export interface servers_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: servers_stream_cursor_value_input, -/** cursor ordering */ -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_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 */ -export interface servers_sum_fieldsGenqlSelection{ - max_players?: boolean | number - port?: boolean | number - tv_port?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "servers" */ -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 */ -where: servers_bool_exp} - - -/** aggregate var_pop on columns */ -export interface servers_var_pop_fieldsGenqlSelection{ - max_players?: boolean | number - port?: boolean | number - tv_port?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "servers" */ -export interface servers_var_pop_order_by {max_players?: (order_by | null),port?: (order_by | null),tv_port?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface servers_var_samp_fieldsGenqlSelection{ - max_players?: boolean | number - port?: boolean | number - tv_port?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "servers" */ -export interface servers_var_samp_order_by {max_players?: (order_by | null),port?: (order_by | null),tv_port?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface servers_variance_fieldsGenqlSelection{ - max_players?: boolean | number - port?: boolean | number - tv_port?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "servers" */ -export interface servers_variance_order_by {max_players?: (order_by | null),port?: (order_by | null),tv_port?: (order_by | null)} - - -/** columns and relationships of "settings" */ -export interface settingsGenqlSelection{ - name?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "settings" */ -export interface settings_aggregateGenqlSelection{ - aggregate?: settings_aggregate_fieldsGenqlSelection - nodes?: settingsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "settings" */ -export interface settings_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (settings_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: settings_max_fieldsGenqlSelection - min?: settings_min_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "settings". All fields are combined with a logical 'AND'. */ -export interface settings_bool_exp {_and?: (settings_bool_exp[] | null),_not?: (settings_bool_exp | null),_or?: (settings_bool_exp[] | null),name?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} - - -/** input type for inserting data into table "settings" */ -export interface settings_insert_input {name?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface settings_max_fieldsGenqlSelection{ - name?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface settings_min_fieldsGenqlSelection{ - name?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "settings" */ -export interface settings_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: settingsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "settings" */ -export interface settings_on_conflict {constraint: settings_constraint,update_columns?: settings_update_column[],where?: (settings_bool_exp | null)} - - -/** Ordering options when selecting data from "settings". */ -export interface settings_order_by {name?: (order_by | null),value?: (order_by | null)} - - -/** primary key columns input for table: settings */ -export interface settings_pk_columns_input {name: Scalars['String']} - - -/** input type for updating data in table "settings" */ -export interface settings_set_input {name?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - - -/** Streaming cursor of the table "settings" */ -export interface settings_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: settings_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface settings_stream_cursor_value_input {name?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface settings_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (settings_set_input | null), -/** filter the rows which have to be updated */ -where: settings_bool_exp} - - -/** Boolean expression to compare columns of type "smallint". All fields are combined with logical 'AND'. */ -export interface smallint_comparison_exp {_eq?: (Scalars['smallint'] | null),_gt?: (Scalars['smallint'] | null),_gte?: (Scalars['smallint'] | null),_in?: (Scalars['smallint'][] | null),_is_null?: (Scalars['Boolean'] | null),_lt?: (Scalars['smallint'] | null),_lte?: (Scalars['smallint'] | null),_neq?: (Scalars['smallint'] | null),_nin?: (Scalars['smallint'][] | null)} - - -/** columns and relationships of "steam_account_claims" */ -export interface steam_account_claimsGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - k8s_job_name?: boolean | number - /** An object relationship */ - node?: game_server_nodesGenqlSelection - node_id?: boolean | number - purpose?: boolean | number - /** An object relationship */ - steam_account?: steam_accountsGenqlSelection - steam_account_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "steam_account_claims" */ -export interface steam_account_claims_aggregateGenqlSelection{ - aggregate?: steam_account_claims_aggregate_fieldsGenqlSelection - nodes?: steam_account_claimsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface steam_account_claims_aggregate_bool_exp {count?: (steam_account_claims_aggregate_bool_exp_count | null)} - -export interface steam_account_claims_aggregate_bool_exp_count {arguments?: (steam_account_claims_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (steam_account_claims_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "steam_account_claims" */ -export interface steam_account_claims_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (steam_account_claims_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: steam_account_claims_max_fieldsGenqlSelection - min?: steam_account_claims_min_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "steam_account_claims" */ -export interface steam_account_claims_aggregate_order_by {count?: (order_by | null),max?: (steam_account_claims_max_order_by | null),min?: (steam_account_claims_min_order_by | null)} - - -/** input type for inserting array relation for remote table "steam_account_claims" */ -export interface steam_account_claims_arr_rel_insert_input {data: steam_account_claims_insert_input[], -/** upsert condition */ -on_conflict?: (steam_account_claims_on_conflict | null)} - - -/** Boolean expression to filter rows from the table "steam_account_claims". All fields are combined with a logical 'AND'. */ -export interface steam_account_claims_bool_exp {_and?: (steam_account_claims_bool_exp[] | null),_not?: (steam_account_claims_bool_exp | null),_or?: (steam_account_claims_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),k8s_job_name?: (String_comparison_exp | null),node?: (game_server_nodes_bool_exp | null),node_id?: (String_comparison_exp | null),purpose?: (String_comparison_exp | null),steam_account?: (steam_accounts_bool_exp | null),steam_account_id?: (uuid_comparison_exp | null)} - - -/** input type for inserting data into table "steam_account_claims" */ -export interface steam_account_claims_insert_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),k8s_job_name?: (Scalars['String'] | null),node?: (game_server_nodes_obj_rel_insert_input | null),node_id?: (Scalars['String'] | null),purpose?: (Scalars['String'] | null),steam_account?: (steam_accounts_obj_rel_insert_input | null),steam_account_id?: (Scalars['uuid'] | null)} - - -/** aggregate max on columns */ -export interface steam_account_claims_max_fieldsGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - k8s_job_name?: boolean | number - node_id?: boolean | number - purpose?: boolean | number - steam_account_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "steam_account_claims" */ -export interface steam_account_claims_max_order_by {created_at?: (order_by | null),id?: (order_by | null),k8s_job_name?: (order_by | null),node_id?: (order_by | null),purpose?: (order_by | null),steam_account_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface steam_account_claims_min_fieldsGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - k8s_job_name?: boolean | number - node_id?: boolean | number - purpose?: boolean | number - steam_account_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "steam_account_claims" */ -export interface steam_account_claims_min_order_by {created_at?: (order_by | null),id?: (order_by | null),k8s_job_name?: (order_by | null),node_id?: (order_by | null),purpose?: (order_by | null),steam_account_id?: (order_by | null)} - - -/** response of any mutation on the table "steam_account_claims" */ -export interface steam_account_claims_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: steam_account_claimsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "steam_account_claims" */ -export interface steam_account_claims_on_conflict {constraint: steam_account_claims_constraint,update_columns?: steam_account_claims_update_column[],where?: (steam_account_claims_bool_exp | null)} - - -/** Ordering options when selecting data from "steam_account_claims". */ -export interface steam_account_claims_order_by {created_at?: (order_by | null),id?: (order_by | null),k8s_job_name?: (order_by | null),node?: (game_server_nodes_order_by | null),node_id?: (order_by | null),purpose?: (order_by | null),steam_account?: (steam_accounts_order_by | null),steam_account_id?: (order_by | null)} - - -/** primary key columns input for table: steam_account_claims */ -export interface steam_account_claims_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "steam_account_claims" */ -export interface steam_account_claims_set_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),k8s_job_name?: (Scalars['String'] | null),node_id?: (Scalars['String'] | null),purpose?: (Scalars['String'] | null),steam_account_id?: (Scalars['uuid'] | null)} - - -/** Streaming cursor of the table "steam_account_claims" */ -export interface steam_account_claims_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: steam_account_claims_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface steam_account_claims_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),k8s_job_name?: (Scalars['String'] | null),node_id?: (Scalars['String'] | null),purpose?: (Scalars['String'] | null),steam_account_id?: (Scalars['uuid'] | null)} - -export interface steam_account_claims_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (steam_account_claims_set_input | null), -/** filter the rows which have to be updated */ -where: steam_account_claims_bool_exp} - - -/** columns and relationships of "steam_accounts" */ -export interface steam_accountsGenqlSelection{ - /** An array relationship */ - claims?: (steam_account_claimsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (steam_account_claims_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (steam_account_claims_order_by[] | null), - /** filter the rows returned */ - where?: (steam_account_claims_bool_exp | null)} }) - /** An aggregate relationship */ - claims_aggregate?: (steam_account_claims_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (steam_account_claims_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (steam_account_claims_order_by[] | null), - /** filter the rows returned */ - where?: (steam_account_claims_bool_exp | null)} }) - created_at?: boolean | number - friend_capacity?: boolean | number - id?: boolean | number - /** An object relationship */ - last_node?: game_server_nodesGenqlSelection - last_node_id?: boolean | number - password?: boolean | number - role?: boolean | number - steam_level?: boolean | number - steamid64?: boolean | number - updated_at?: boolean | number - username?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "steam_accounts" */ -export interface steam_accounts_aggregateGenqlSelection{ - aggregate?: steam_accounts_aggregate_fieldsGenqlSelection - nodes?: steam_accountsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "steam_accounts" */ -export interface steam_accounts_aggregate_fieldsGenqlSelection{ - avg?: steam_accounts_avg_fieldsGenqlSelection - count?: { __args: {columns?: (steam_accounts_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: steam_accounts_max_fieldsGenqlSelection - min?: steam_accounts_min_fieldsGenqlSelection - stddev?: steam_accounts_stddev_fieldsGenqlSelection - stddev_pop?: steam_accounts_stddev_pop_fieldsGenqlSelection - stddev_samp?: steam_accounts_stddev_samp_fieldsGenqlSelection - sum?: steam_accounts_sum_fieldsGenqlSelection - var_pop?: steam_accounts_var_pop_fieldsGenqlSelection - var_samp?: steam_accounts_var_samp_fieldsGenqlSelection - variance?: steam_accounts_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface steam_accounts_avg_fieldsGenqlSelection{ - friend_capacity?: boolean | number - steam_level?: boolean | number - steamid64?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "steam_accounts". All fields are combined with a logical 'AND'. */ -export interface steam_accounts_bool_exp {_and?: (steam_accounts_bool_exp[] | null),_not?: (steam_accounts_bool_exp | null),_or?: (steam_accounts_bool_exp[] | null),claims?: (steam_account_claims_bool_exp | null),claims_aggregate?: (steam_account_claims_aggregate_bool_exp | null),created_at?: (timestamptz_comparison_exp | null),friend_capacity?: (Int_comparison_exp | null),id?: (uuid_comparison_exp | null),last_node?: (game_server_nodes_bool_exp | null),last_node_id?: (String_comparison_exp | null),password?: (String_comparison_exp | null),role?: (String_comparison_exp | null),steam_level?: (Int_comparison_exp | null),steamid64?: (bigint_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null),username?: (String_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "steam_accounts" */ -export interface steam_accounts_inc_input {friend_capacity?: (Scalars['Int'] | null),steam_level?: (Scalars['Int'] | null),steamid64?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "steam_accounts" */ -export interface steam_accounts_insert_input {claims?: (steam_account_claims_arr_rel_insert_input | null),created_at?: (Scalars['timestamptz'] | null),friend_capacity?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),last_node?: (game_server_nodes_obj_rel_insert_input | null),last_node_id?: (Scalars['String'] | null),password?: (Scalars['String'] | null),role?: (Scalars['String'] | null),steam_level?: (Scalars['Int'] | null),steamid64?: (Scalars['bigint'] | null),updated_at?: (Scalars['timestamptz'] | null),username?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface steam_accounts_max_fieldsGenqlSelection{ - created_at?: boolean | number - friend_capacity?: boolean | number - id?: boolean | number - last_node_id?: boolean | number - password?: boolean | number - role?: boolean | number - steam_level?: boolean | number - steamid64?: boolean | number - updated_at?: boolean | number - username?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface steam_accounts_min_fieldsGenqlSelection{ - created_at?: boolean | number - friend_capacity?: boolean | number - id?: boolean | number - last_node_id?: boolean | number - password?: boolean | number - role?: boolean | number - steam_level?: boolean | number - steamid64?: boolean | number - updated_at?: boolean | number - username?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "steam_accounts" */ -export interface steam_accounts_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: steam_accountsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "steam_accounts" */ -export interface steam_accounts_obj_rel_insert_input {data: steam_accounts_insert_input, -/** upsert condition */ -on_conflict?: (steam_accounts_on_conflict | null)} - - -/** on_conflict condition type for table "steam_accounts" */ -export interface steam_accounts_on_conflict {constraint: steam_accounts_constraint,update_columns?: steam_accounts_update_column[],where?: (steam_accounts_bool_exp | null)} - - -/** Ordering options when selecting data from "steam_accounts". */ -export interface steam_accounts_order_by {claims_aggregate?: (steam_account_claims_aggregate_order_by | null),created_at?: (order_by | null),friend_capacity?: (order_by | null),id?: (order_by | null),last_node?: (game_server_nodes_order_by | null),last_node_id?: (order_by | null),password?: (order_by | null),role?: (order_by | null),steam_level?: (order_by | null),steamid64?: (order_by | null),updated_at?: (order_by | null),username?: (order_by | null)} - - -/** primary key columns input for table: steam_accounts */ -export interface steam_accounts_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "steam_accounts" */ -export interface steam_accounts_set_input {created_at?: (Scalars['timestamptz'] | null),friend_capacity?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),last_node_id?: (Scalars['String'] | null),password?: (Scalars['String'] | null),role?: (Scalars['String'] | null),steam_level?: (Scalars['Int'] | null),steamid64?: (Scalars['bigint'] | null),updated_at?: (Scalars['timestamptz'] | null),username?: (Scalars['String'] | null)} - - -/** aggregate stddev on columns */ -export interface steam_accounts_stddev_fieldsGenqlSelection{ - friend_capacity?: boolean | number - steam_level?: boolean | number - steamid64?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface steam_accounts_stddev_pop_fieldsGenqlSelection{ - friend_capacity?: boolean | number - steam_level?: boolean | number - steamid64?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface steam_accounts_stddev_samp_fieldsGenqlSelection{ - friend_capacity?: boolean | number - steam_level?: boolean | number - steamid64?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "steam_accounts" */ -export interface steam_accounts_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: steam_accounts_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface steam_accounts_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),friend_capacity?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),last_node_id?: (Scalars['String'] | null),password?: (Scalars['String'] | null),role?: (Scalars['String'] | null),steam_level?: (Scalars['Int'] | null),steamid64?: (Scalars['bigint'] | null),updated_at?: (Scalars['timestamptz'] | null),username?: (Scalars['String'] | null)} - - -/** aggregate sum on columns */ -export interface steam_accounts_sum_fieldsGenqlSelection{ - friend_capacity?: boolean | number - steam_level?: boolean | number - steamid64?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface steam_accounts_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (steam_accounts_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (steam_accounts_set_input | null), -/** filter the rows which have to be updated */ -where: steam_accounts_bool_exp} - - -/** aggregate var_pop on columns */ -export interface steam_accounts_var_pop_fieldsGenqlSelection{ - friend_capacity?: boolean | number - steam_level?: boolean | number - steamid64?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface steam_accounts_var_samp_fieldsGenqlSelection{ - friend_capacity?: boolean | number - steam_level?: boolean | number - steamid64?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface steam_accounts_variance_fieldsGenqlSelection{ - friend_capacity?: boolean | number - steam_level?: boolean | number - steamid64?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface subscription_rootGenqlSelection{ - /** fetch data from the table: "_map_pool" */ - _map_pool?: (_map_poolGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (_map_pool_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (_map_pool_order_by[] | null), - /** filter the rows returned */ - where?: (_map_pool_bool_exp | null)} }) - /** fetch aggregated fields from the table: "_map_pool" */ - _map_pool_aggregate?: (_map_pool_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (_map_pool_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (_map_pool_order_by[] | null), - /** filter the rows returned */ - where?: (_map_pool_bool_exp | null)} }) - /** fetch data from the table: "_map_pool" using primary key columns */ - _map_pool_by_pk?: (_map_poolGenqlSelection & { __args: {map_id: Scalars['uuid'], map_pool_id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "_map_pool" */ - _map_pool_stream?: (_map_poolGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (_map_pool_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (_map_pool_bool_exp | null)} }) - /** An array relationship */ - abandoned_matches?: (abandoned_matchesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (abandoned_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?: (abandoned_matches_order_by[] | null), - /** filter the rows returned */ - where?: (abandoned_matches_bool_exp | null)} }) - /** An aggregate relationship */ - abandoned_matches_aggregate?: (abandoned_matches_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (abandoned_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?: (abandoned_matches_order_by[] | null), - /** filter the rows returned */ - where?: (abandoned_matches_bool_exp | null)} }) - /** fetch data from the table: "abandoned_matches" using primary key columns */ - abandoned_matches_by_pk?: (abandoned_matchesGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "abandoned_matches" */ - abandoned_matches_stream?: (abandoned_matchesGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (abandoned_matches_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (abandoned_matches_bool_exp | null)} }) - /** fetch data from the table: "api_keys" */ - api_keys?: (api_keysGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (api_keys_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (api_keys_order_by[] | null), - /** filter the rows returned */ - where?: (api_keys_bool_exp | null)} }) - /** fetch aggregated fields from the table: "api_keys" */ - api_keys_aggregate?: (api_keys_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (api_keys_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (api_keys_order_by[] | null), - /** filter the rows returned */ - where?: (api_keys_bool_exp | null)} }) - /** fetch data from the table: "api_keys" using primary key columns */ - api_keys_by_pk?: (api_keysGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "api_keys" */ - api_keys_stream?: (api_keysGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (api_keys_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (api_keys_bool_exp | null)} }) - /** fetch data from the table: "award_recipients" */ - award_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)} }) - /** fetch aggregated fields from the table: "award_recipients" */ - award_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)} }) - /** fetch data from the table: "award_recipients" using primary key columns */ - award_recipients_by_pk?: (award_recipientsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "award_recipients" */ - award_recipients_stream?: (award_recipientsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (award_recipients_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (award_recipients_bool_exp | null)} }) - /** fetch data from the table: "awards" */ - awards?: (awardsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (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?: (awards_order_by[] | null), - /** filter the rows returned */ - where?: (awards_bool_exp | null)} }) - /** fetch aggregated fields from the table: "awards" */ - awards_aggregate?: (awards_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (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?: (awards_order_by[] | null), - /** filter the rows returned */ - where?: (awards_bool_exp | null)} }) - /** fetch data from the table: "awards" using primary key columns */ - awards_by_pk?: (awardsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "awards" */ - awards_stream?: (awardsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (awards_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (awards_bool_exp | null)} }) - /** fetch data from the table: "chat_read_state" */ - chat_read_state?: (chat_read_stateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (chat_read_state_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (chat_read_state_order_by[] | null), - /** filter the rows returned */ - where?: (chat_read_state_bool_exp | null)} }) - /** fetch aggregated fields from the table: "chat_read_state" */ - chat_read_state_aggregate?: (chat_read_state_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (chat_read_state_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (chat_read_state_order_by[] | null), - /** filter the rows returned */ - where?: (chat_read_state_bool_exp | null)} }) - /** fetch data from the table: "chat_read_state" using primary key columns */ - chat_read_state_by_pk?: (chat_read_stateGenqlSelection & { __args: {steam_id: Scalars['bigint'], thread: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "chat_read_state" */ - chat_read_state_stream?: (chat_read_stateGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (chat_read_state_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (chat_read_state_bool_exp | null)} }) - /** An array relationship */ - clip_render_jobs?: (clip_render_jobsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (clip_render_jobs_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (clip_render_jobs_order_by[] | null), - /** filter the rows returned */ - where?: (clip_render_jobs_bool_exp | null)} }) - /** An aggregate relationship */ - clip_render_jobs_aggregate?: (clip_render_jobs_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (clip_render_jobs_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (clip_render_jobs_order_by[] | null), - /** filter the rows returned */ - where?: (clip_render_jobs_bool_exp | null)} }) - /** fetch data from the table: "clip_render_jobs" using primary key columns */ - clip_render_jobs_by_pk?: (clip_render_jobsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "clip_render_jobs" */ - clip_render_jobs_stream?: (clip_render_jobsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (clip_render_jobs_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (clip_render_jobs_bool_exp | null)} }) - /** fetch data from the table: "custom_pages" */ - custom_pages?: (custom_pagesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (custom_pages_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (custom_pages_order_by[] | null), - /** filter the rows returned */ - where?: (custom_pages_bool_exp | null)} }) - /** fetch aggregated fields from the table: "custom_pages" */ - custom_pages_aggregate?: (custom_pages_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (custom_pages_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (custom_pages_order_by[] | null), - /** filter the rows returned */ - where?: (custom_pages_bool_exp | null)} }) - /** fetch data from the table: "custom_pages" using primary key columns */ - custom_pages_by_pk?: (custom_pagesGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "custom_pages" */ - custom_pages_stream?: (custom_pagesGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (custom_pages_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (custom_pages_bool_exp | null)} }) - /** fetch data from the table: "db_backups" */ - db_backups?: (db_backupsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (db_backups_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (db_backups_order_by[] | null), - /** filter the rows returned */ - where?: (db_backups_bool_exp | null)} }) - /** fetch aggregated fields from the table: "db_backups" */ - db_backups_aggregate?: (db_backups_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (db_backups_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (db_backups_order_by[] | null), - /** filter the rows returned */ - where?: (db_backups_bool_exp | null)} }) - /** fetch data from the table: "db_backups" using primary key columns */ - db_backups_by_pk?: (db_backupsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "db_backups" */ - db_backups_stream?: (db_backupsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (db_backups_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (db_backups_bool_exp | null)} }) - /** fetch data from the table: "direct_conversations" */ - direct_conversations?: (direct_conversationsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (direct_conversations_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (direct_conversations_order_by[] | null), - /** filter the rows returned */ - where?: (direct_conversations_bool_exp | null)} }) - /** fetch aggregated fields from the table: "direct_conversations" */ - direct_conversations_aggregate?: (direct_conversations_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (direct_conversations_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (direct_conversations_order_by[] | null), - /** filter the rows returned */ - where?: (direct_conversations_bool_exp | null)} }) - /** fetch data from the table: "direct_conversations" using primary key columns */ - direct_conversations_by_pk?: (direct_conversationsGenqlSelection & { __args: {room_id: Scalars['String'], steam_id: Scalars['bigint']} }) - /** fetch data from the table in a streaming manner: "direct_conversations" */ - direct_conversations_stream?: (direct_conversationsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (direct_conversations_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (direct_conversations_bool_exp | null)} }) - /** fetch data from the table: "direct_messages" */ - direct_messages?: (direct_messagesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (direct_messages_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (direct_messages_order_by[] | null), - /** filter the rows returned */ - where?: (direct_messages_bool_exp | null)} }) - /** fetch aggregated fields from the table: "direct_messages" */ - direct_messages_aggregate?: (direct_messages_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (direct_messages_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (direct_messages_order_by[] | null), - /** filter the rows returned */ - where?: (direct_messages_bool_exp | null)} }) - /** fetch data from the table: "direct_messages" using primary key columns */ - direct_messages_by_pk?: (direct_messagesGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "direct_messages" */ - direct_messages_stream?: (direct_messagesGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (direct_messages_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (direct_messages_bool_exp | null)} }) - /** fetch data from the table: "draft_game_picks" */ - draft_game_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)} }) - /** fetch aggregated fields from the table: "draft_game_picks" */ - draft_game_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)} }) - /** fetch data from the table: "draft_game_picks" using primary key columns */ - draft_game_picks_by_pk?: (draft_game_picksGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "draft_game_picks" */ - draft_game_picks_stream?: (draft_game_picksGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (draft_game_picks_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (draft_game_picks_bool_exp | null)} }) - /** An array relationship */ - draft_game_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 */ - draft_game_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)} }) - /** fetch data from the table: "draft_game_players" using primary key columns */ - draft_game_players_by_pk?: (draft_game_playersGenqlSelection & { __args: {draft_game_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) - /** fetch data from the table in a streaming manner: "draft_game_players" */ - draft_game_players_stream?: (draft_game_playersGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (draft_game_players_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (draft_game_players_bool_exp | null)} }) - /** An array relationship */ - draft_games?: (draft_gamesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (draft_games_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_games_order_by[] | null), - /** filter the rows returned */ - where?: (draft_games_bool_exp | null)} }) - /** An aggregate relationship */ - draft_games_aggregate?: (draft_games_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (draft_games_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_games_order_by[] | null), - /** filter the rows returned */ - where?: (draft_games_bool_exp | null)} }) - /** fetch data from the table: "draft_games" using primary key columns */ - draft_games_by_pk?: (draft_gamesGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "draft_games" */ - draft_games_stream?: (draft_gamesGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (draft_games_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (draft_games_bool_exp | null)} }) - /** fetch data from the table: "e_award_sources" */ - e_award_sources?: (e_award_sourcesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_award_sources_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_award_sources_order_by[] | null), - /** filter the rows returned */ - where?: (e_award_sources_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_award_sources" */ - e_award_sources_aggregate?: (e_award_sources_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_award_sources_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_award_sources_order_by[] | null), - /** filter the rows returned */ - where?: (e_award_sources_bool_exp | null)} }) - /** fetch data from the table: "e_award_sources" using primary key columns */ - e_award_sources_by_pk?: (e_award_sourcesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_award_sources" */ - e_award_sources_stream?: (e_award_sourcesGenqlSelection & { __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_award_sources_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_award_sources_bool_exp | null)} }) - /** fetch data from the table: "e_award_tiers" */ - e_award_tiers?: (e_award_tiersGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_award_tiers_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_award_tiers_order_by[] | null), - /** filter the rows returned */ - where?: (e_award_tiers_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_award_tiers" */ - e_award_tiers_aggregate?: (e_award_tiers_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_award_tiers_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_award_tiers_order_by[] | null), - /** filter the rows returned */ - where?: (e_award_tiers_bool_exp | null)} }) - /** fetch data from the table: "e_award_tiers" using primary key columns */ - e_award_tiers_by_pk?: (e_award_tiersGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_award_tiers" */ - e_award_tiers_stream?: (e_award_tiersGenqlSelection & { __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_award_tiers_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_award_tiers_bool_exp | null)} }) - /** fetch data from the table: "e_check_in_settings" */ - e_check_in_settings?: (e_check_in_settingsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_check_in_settings_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_check_in_settings_order_by[] | null), - /** filter the rows returned */ - where?: (e_check_in_settings_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_check_in_settings" */ - e_check_in_settings_aggregate?: (e_check_in_settings_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_check_in_settings_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_check_in_settings_order_by[] | null), - /** filter the rows returned */ - where?: (e_check_in_settings_bool_exp | null)} }) - /** fetch data from the table: "e_check_in_settings" using primary key columns */ - e_check_in_settings_by_pk?: (e_check_in_settingsGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_check_in_settings" */ - e_check_in_settings_stream?: (e_check_in_settingsGenqlSelection & { __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_check_in_settings_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_check_in_settings_bool_exp | null)} }) - /** fetch data from the table: "e_draft_game_captain_selection" */ - e_draft_game_captain_selection?: (e_draft_game_captain_selectionGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_draft_game_captain_selection_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_draft_game_captain_selection_order_by[] | null), - /** filter the rows returned */ - where?: (e_draft_game_captain_selection_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_draft_game_captain_selection" */ - e_draft_game_captain_selection_aggregate?: (e_draft_game_captain_selection_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_draft_game_captain_selection_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_draft_game_captain_selection_order_by[] | null), - /** filter the rows returned */ - where?: (e_draft_game_captain_selection_bool_exp | null)} }) - /** fetch data from the table: "e_draft_game_captain_selection" using primary key columns */ - e_draft_game_captain_selection_by_pk?: (e_draft_game_captain_selectionGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_draft_game_captain_selection" */ - e_draft_game_captain_selection_stream?: (e_draft_game_captain_selectionGenqlSelection & { __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_draft_game_captain_selection_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_draft_game_captain_selection_bool_exp | null)} }) - /** fetch data from the table: "e_draft_game_draft_order" */ - e_draft_game_draft_order?: (e_draft_game_draft_orderGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_draft_game_draft_order_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_draft_game_draft_order_order_by[] | null), - /** filter the rows returned */ - where?: (e_draft_game_draft_order_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_draft_game_draft_order" */ - e_draft_game_draft_order_aggregate?: (e_draft_game_draft_order_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_draft_game_draft_order_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_draft_game_draft_order_order_by[] | null), - /** filter the rows returned */ - where?: (e_draft_game_draft_order_bool_exp | null)} }) - /** fetch data from the table: "e_draft_game_draft_order" using primary key columns */ - e_draft_game_draft_order_by_pk?: (e_draft_game_draft_orderGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_draft_game_draft_order" */ - e_draft_game_draft_order_stream?: (e_draft_game_draft_orderGenqlSelection & { __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_draft_game_draft_order_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_draft_game_draft_order_bool_exp | null)} }) - /** fetch data from the table: "e_draft_game_mode" */ - e_draft_game_mode?: (e_draft_game_modeGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_draft_game_mode_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_draft_game_mode_order_by[] | null), - /** filter the rows returned */ - where?: (e_draft_game_mode_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_draft_game_mode" */ - e_draft_game_mode_aggregate?: (e_draft_game_mode_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_draft_game_mode_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_draft_game_mode_order_by[] | null), - /** filter the rows returned */ - where?: (e_draft_game_mode_bool_exp | null)} }) - /** fetch data from the table: "e_draft_game_mode" using primary key columns */ - e_draft_game_mode_by_pk?: (e_draft_game_modeGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_draft_game_mode" */ - e_draft_game_mode_stream?: (e_draft_game_modeGenqlSelection & { __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_draft_game_mode_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_draft_game_mode_bool_exp | null)} }) - /** fetch data from the table: "e_draft_game_player_status" */ - e_draft_game_player_status?: (e_draft_game_player_statusGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_draft_game_player_status_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_draft_game_player_status_order_by[] | null), - /** filter the rows returned */ - where?: (e_draft_game_player_status_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_draft_game_player_status" */ - e_draft_game_player_status_aggregate?: (e_draft_game_player_status_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_draft_game_player_status_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_draft_game_player_status_order_by[] | null), - /** filter the rows returned */ - where?: (e_draft_game_player_status_bool_exp | null)} }) - /** fetch data from the table: "e_draft_game_player_status" using primary key columns */ - e_draft_game_player_status_by_pk?: (e_draft_game_player_statusGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_draft_game_player_status" */ - e_draft_game_player_status_stream?: (e_draft_game_player_statusGenqlSelection & { __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_draft_game_player_status_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_draft_game_player_status_bool_exp | null)} }) - /** fetch data from the table: "e_draft_game_status" */ - e_draft_game_status?: (e_draft_game_statusGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_draft_game_status_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_draft_game_status_order_by[] | null), - /** filter the rows returned */ - where?: (e_draft_game_status_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_draft_game_status" */ - e_draft_game_status_aggregate?: (e_draft_game_status_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_draft_game_status_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_draft_game_status_order_by[] | null), - /** filter the rows returned */ - where?: (e_draft_game_status_bool_exp | null)} }) - /** fetch data from the table: "e_draft_game_status" using primary key columns */ - e_draft_game_status_by_pk?: (e_draft_game_statusGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_draft_game_status" */ - e_draft_game_status_stream?: (e_draft_game_statusGenqlSelection & { __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_draft_game_status_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_draft_game_status_bool_exp | null)} }) - /** fetch data from the table: "e_event_media_access" */ - e_event_media_access?: (e_event_media_accessGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_event_media_access_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (e_event_media_access_order_by[] | null), - /** filter the rows returned */ - where?: (e_event_media_access_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_event_media_access" */ - e_event_media_access_aggregate?: (e_event_media_access_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_event_media_access_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (e_event_media_access_order_by[] | null), - /** filter the rows returned */ - where?: (e_event_media_access_bool_exp | null)} }) - /** fetch data from the table: "e_event_media_access" using primary key columns */ - e_event_media_access_by_pk?: (e_event_media_accessGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_event_media_access" */ - e_event_media_access_stream?: (e_event_media_accessGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (e_event_media_access_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_event_media_access_bool_exp | null)} }) - /** fetch data from the table: "e_event_visibility" */ - e_event_visibility?: (e_event_visibilityGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_event_visibility_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (e_event_visibility_order_by[] | null), - /** filter the rows returned */ - where?: (e_event_visibility_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_event_visibility" */ - e_event_visibility_aggregate?: (e_event_visibility_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_event_visibility_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (e_event_visibility_order_by[] | null), - /** filter the rows returned */ - where?: (e_event_visibility_bool_exp | null)} }) - /** fetch data from the table: "e_event_visibility" using primary key columns */ - e_event_visibility_by_pk?: (e_event_visibilityGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_event_visibility" */ - e_event_visibility_stream?: (e_event_visibilityGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (e_event_visibility_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_event_visibility_bool_exp | null)} }) - /** fetch data from the table: "e_friend_status" */ - e_friend_status?: (e_friend_statusGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_friend_status_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_friend_status_order_by[] | null), - /** filter the rows returned */ - where?: (e_friend_status_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_friend_status" */ - e_friend_status_aggregate?: (e_friend_status_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_friend_status_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_friend_status_order_by[] | null), - /** filter the rows returned */ - where?: (e_friend_status_bool_exp | null)} }) - /** fetch data from the table: "e_friend_status" using primary key columns */ - e_friend_status_by_pk?: (e_friend_statusGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_friend_status" */ - e_friend_status_stream?: (e_friend_statusGenqlSelection & { __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_friend_status_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_friend_status_bool_exp | null)} }) - /** fetch data from the table: "e_game_cfg_types" */ - e_game_cfg_types?: (e_game_cfg_typesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_game_cfg_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_cfg_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_game_cfg_types_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_game_cfg_types" */ - e_game_cfg_types_aggregate?: (e_game_cfg_types_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_game_cfg_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_cfg_types_order_by[] | null), - /** filter the rows returned */ - 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 in a streaming manner: "e_game_cfg_types" */ - e_game_cfg_types_stream?: (e_game_cfg_typesGenqlSelection & { __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_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 */ - distinct_on?: (e_game_server_node_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_server_node_statuses_order_by[] | null), - /** filter the rows returned */ - where?: (e_game_server_node_statuses_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_game_server_node_statuses" */ - e_game_server_node_statuses_aggregate?: (e_game_server_node_statuses_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_game_server_node_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_server_node_statuses_order_by[] | null), - /** filter the rows returned */ - where?: (e_game_server_node_statuses_bool_exp | null)} }) - /** fetch data from the table: "e_game_server_node_statuses" using primary key columns */ - e_game_server_node_statuses_by_pk?: (e_game_server_node_statusesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_game_server_node_statuses" */ - e_game_server_node_statuses_stream?: (e_game_server_node_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_server_node_statuses_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_game_server_node_statuses_bool_exp | null)} }) - /** fetch data from the table: "e_league_movement_types" */ - e_league_movement_types?: (e_league_movement_typesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_league_movement_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_league_movement_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_league_movement_types_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_league_movement_types" */ - e_league_movement_types_aggregate?: (e_league_movement_types_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_league_movement_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_league_movement_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_league_movement_types_bool_exp | null)} }) - /** fetch data from the table: "e_league_movement_types" using primary key columns */ - e_league_movement_types_by_pk?: (e_league_movement_typesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_league_movement_types" */ - e_league_movement_types_stream?: (e_league_movement_typesGenqlSelection & { __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_league_movement_types_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_league_movement_types_bool_exp | null)} }) - /** fetch data from the table: "e_league_proposal_statuses" */ - e_league_proposal_statuses?: (e_league_proposal_statusesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_league_proposal_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_league_proposal_statuses_order_by[] | null), - /** filter the rows returned */ - where?: (e_league_proposal_statuses_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_league_proposal_statuses" */ - e_league_proposal_statuses_aggregate?: (e_league_proposal_statuses_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_league_proposal_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_league_proposal_statuses_order_by[] | null), - /** filter the rows returned */ - where?: (e_league_proposal_statuses_bool_exp | null)} }) - /** fetch data from the table: "e_league_proposal_statuses" using primary key columns */ - e_league_proposal_statuses_by_pk?: (e_league_proposal_statusesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_league_proposal_statuses" */ - e_league_proposal_statuses_stream?: (e_league_proposal_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_league_proposal_statuses_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_league_proposal_statuses_bool_exp | null)} }) - /** fetch data from the table: "e_league_registration_statuses" */ - e_league_registration_statuses?: (e_league_registration_statusesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_league_registration_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_league_registration_statuses_order_by[] | null), - /** filter the rows returned */ - where?: (e_league_registration_statuses_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_league_registration_statuses" */ - e_league_registration_statuses_aggregate?: (e_league_registration_statuses_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_league_registration_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_league_registration_statuses_order_by[] | null), - /** filter the rows returned */ - where?: (e_league_registration_statuses_bool_exp | null)} }) - /** fetch data from the table: "e_league_registration_statuses" using primary key columns */ - e_league_registration_statuses_by_pk?: (e_league_registration_statusesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_league_registration_statuses" */ - e_league_registration_statuses_stream?: (e_league_registration_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_league_registration_statuses_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_league_registration_statuses_bool_exp | null)} }) - /** fetch data from the table: "e_league_season_statuses" */ - e_league_season_statuses?: (e_league_season_statusesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_league_season_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_league_season_statuses_order_by[] | null), - /** filter the rows returned */ - where?: (e_league_season_statuses_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_league_season_statuses" */ - e_league_season_statuses_aggregate?: (e_league_season_statuses_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_league_season_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_league_season_statuses_order_by[] | null), - /** filter the rows returned */ - where?: (e_league_season_statuses_bool_exp | null)} }) - /** fetch data from the table: "e_league_season_statuses" using primary key columns */ - e_league_season_statuses_by_pk?: (e_league_season_statusesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_league_season_statuses" */ - e_league_season_statuses_stream?: (e_league_season_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_league_season_statuses_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_league_season_statuses_bool_exp | null)} }) - /** fetch data from the table: "e_lobby_access" */ - e_lobby_access?: (e_lobby_accessGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_lobby_access_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (e_lobby_access_order_by[] | null), - /** filter the rows returned */ - where?: (e_lobby_access_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_lobby_access" */ - e_lobby_access_aggregate?: (e_lobby_access_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_lobby_access_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (e_lobby_access_order_by[] | null), - /** filter the rows returned */ - where?: (e_lobby_access_bool_exp | null)} }) - /** fetch data from the table: "e_lobby_access" using primary key columns */ - e_lobby_access_by_pk?: (e_lobby_accessGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_lobby_access" */ - e_lobby_access_stream?: (e_lobby_accessGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (e_lobby_access_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_lobby_access_bool_exp | null)} }) - /** fetch data from the table: "e_lobby_player_status" */ - e_lobby_player_status?: (e_lobby_player_statusGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_lobby_player_status_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_lobby_player_status_order_by[] | null), - /** filter the rows returned */ - where?: (e_lobby_player_status_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_lobby_player_status" */ - e_lobby_player_status_aggregate?: (e_lobby_player_status_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_lobby_player_status_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_lobby_player_status_order_by[] | null), - /** filter the rows returned */ - where?: (e_lobby_player_status_bool_exp | null)} }) - /** fetch data from the table: "e_lobby_player_status" using primary key columns */ - e_lobby_player_status_by_pk?: (e_lobby_player_statusGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_lobby_player_status" */ - e_lobby_player_status_stream?: (e_lobby_player_statusGenqlSelection & { __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_lobby_player_status_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_lobby_player_status_bool_exp | null)} }) - /** fetch data from the table: "e_map_pool_types" */ - e_map_pool_types?: (e_map_pool_typesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_map_pool_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_map_pool_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_map_pool_types_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_map_pool_types" */ - e_map_pool_types_aggregate?: (e_map_pool_types_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_map_pool_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_map_pool_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_map_pool_types_bool_exp | null)} }) - /** fetch data from the table: "e_map_pool_types" using primary key columns */ - e_map_pool_types_by_pk?: (e_map_pool_typesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_map_pool_types" */ - e_map_pool_types_stream?: (e_map_pool_typesGenqlSelection & { __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_map_pool_types_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_map_pool_types_bool_exp | null)} }) - /** fetch data from the table: "e_match_clip_visibility" */ - e_match_clip_visibility?: (e_match_clip_visibilityGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_match_clip_visibility_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (e_match_clip_visibility_order_by[] | null), - /** filter the rows returned */ - where?: (e_match_clip_visibility_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_match_clip_visibility" */ - e_match_clip_visibility_aggregate?: (e_match_clip_visibility_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_match_clip_visibility_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (e_match_clip_visibility_order_by[] | null), - /** filter the rows returned */ - where?: (e_match_clip_visibility_bool_exp | null)} }) - /** fetch data from the table: "e_match_clip_visibility" using primary key columns */ - e_match_clip_visibility_by_pk?: (e_match_clip_visibilityGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_match_clip_visibility" */ - e_match_clip_visibility_stream?: (e_match_clip_visibilityGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (e_match_clip_visibility_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_match_clip_visibility_bool_exp | null)} }) - /** fetch data from the table: "e_match_map_status" */ - e_match_map_status?: (e_match_map_statusGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_match_map_status_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_map_status_order_by[] | null), - /** filter the rows returned */ - where?: (e_match_map_status_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_match_map_status" */ - e_match_map_status_aggregate?: (e_match_map_status_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_match_map_status_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_map_status_order_by[] | null), - /** filter the rows returned */ - where?: (e_match_map_status_bool_exp | null)} }) - /** fetch data from the table: "e_match_map_status" using primary key columns */ - e_match_map_status_by_pk?: (e_match_map_statusGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_match_map_status" */ - e_match_map_status_stream?: (e_match_map_statusGenqlSelection & { __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_match_map_status_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_match_map_status_bool_exp | null)} }) - /** fetch data from the table: "e_match_mode" */ - e_match_mode?: (e_match_modeGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_match_mode_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_mode_order_by[] | null), - /** filter the rows returned */ - where?: (e_match_mode_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_match_mode" */ - e_match_mode_aggregate?: (e_match_mode_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_match_mode_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_mode_order_by[] | null), - /** filter the rows returned */ - where?: (e_match_mode_bool_exp | null)} }) - /** fetch data from the table: "e_match_mode" using primary key columns */ - e_match_mode_by_pk?: (e_match_modeGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_match_mode" */ - e_match_mode_stream?: (e_match_modeGenqlSelection & { __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_match_mode_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_match_mode_bool_exp | null)} }) - /** fetch data from the table: "e_match_party_sources" */ - e_match_party_sources?: (e_match_party_sourcesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_match_party_sources_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_party_sources_order_by[] | null), - /** filter the rows returned */ - where?: (e_match_party_sources_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_match_party_sources" */ - e_match_party_sources_aggregate?: (e_match_party_sources_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_match_party_sources_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_party_sources_order_by[] | null), - /** filter the rows returned */ - where?: (e_match_party_sources_bool_exp | null)} }) - /** fetch data from the table: "e_match_party_sources" using primary key columns */ - e_match_party_sources_by_pk?: (e_match_party_sourcesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_match_party_sources" */ - e_match_party_sources_stream?: (e_match_party_sourcesGenqlSelection & { __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_match_party_sources_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_match_party_sources_bool_exp | null)} }) - /** fetch data from the table: "e_match_status" */ - e_match_status?: (e_match_statusGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_match_status_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_status_order_by[] | null), - /** filter the rows returned */ - where?: (e_match_status_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_match_status" */ - e_match_status_aggregate?: (e_match_status_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_match_status_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_status_order_by[] | null), - /** filter the rows returned */ - where?: (e_match_status_bool_exp | null)} }) - /** fetch data from the table: "e_match_status" using primary key columns */ - e_match_status_by_pk?: (e_match_statusGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_match_status" */ - e_match_status_stream?: (e_match_statusGenqlSelection & { __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_match_status_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_match_status_bool_exp | null)} }) - /** fetch data from the table: "e_match_types" */ - e_match_types?: (e_match_typesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_match_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_match_types_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_match_types" */ - e_match_types_aggregate?: (e_match_types_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_match_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_match_types_bool_exp | null)} }) - /** fetch data from the table: "e_match_types" using primary key columns */ - e_match_types_by_pk?: (e_match_typesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_match_types" */ - e_match_types_stream?: (e_match_typesGenqlSelection & { __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_match_types_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_match_types_bool_exp | null)} }) - /** fetch data from the table: "e_notification_types" */ - e_notification_types?: (e_notification_typesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_notification_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_notification_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_notification_types_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_notification_types" */ - e_notification_types_aggregate?: (e_notification_types_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_notification_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_notification_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_notification_types_bool_exp | null)} }) - /** fetch data from the table: "e_notification_types" using primary key columns */ - e_notification_types_by_pk?: (e_notification_typesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_notification_types" */ - e_notification_types_stream?: (e_notification_typesGenqlSelection & { __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_notification_types_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_notification_types_bool_exp | null)} }) - /** fetch data from the table: "e_objective_types" */ - e_objective_types?: (e_objective_typesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_objective_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_objective_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_objective_types_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_objective_types" */ - e_objective_types_aggregate?: (e_objective_types_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_objective_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_objective_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_objective_types_bool_exp | null)} }) - /** fetch data from the table: "e_objective_types" using primary key columns */ - e_objective_types_by_pk?: (e_objective_typesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_objective_types" */ - e_objective_types_stream?: (e_objective_typesGenqlSelection & { __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_objective_types_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_objective_types_bool_exp | null)} }) - /** fetch data from the table: "e_player_roles" */ - e_player_roles?: (e_player_rolesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_player_roles_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_roles_order_by[] | null), - /** filter the rows returned */ - where?: (e_player_roles_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_player_roles" */ - e_player_roles_aggregate?: (e_player_roles_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_player_roles_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_roles_order_by[] | null), - /** filter the rows returned */ - where?: (e_player_roles_bool_exp | null)} }) - /** fetch data from the table: "e_player_roles" using primary key columns */ - e_player_roles_by_pk?: (e_player_rolesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_player_roles" */ - e_player_roles_stream?: (e_player_rolesGenqlSelection & { __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_player_roles_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_player_roles_bool_exp | null)} }) - /** fetch data from the table: "e_plugin_runtimes" */ - e_plugin_runtimes?: (e_plugin_runtimesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_plugin_runtimes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_plugin_runtimes_order_by[] | null), - /** filter the rows returned */ - where?: (e_plugin_runtimes_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_plugin_runtimes" */ - e_plugin_runtimes_aggregate?: (e_plugin_runtimes_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_plugin_runtimes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_plugin_runtimes_order_by[] | null), - /** filter the rows returned */ - where?: (e_plugin_runtimes_bool_exp | null)} }) - /** fetch data from the table: "e_plugin_runtimes" using primary key columns */ - e_plugin_runtimes_by_pk?: (e_plugin_runtimesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_plugin_runtimes" */ - e_plugin_runtimes_stream?: (e_plugin_runtimesGenqlSelection & { __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_plugin_runtimes_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_plugin_runtimes_bool_exp | null)} }) - /** fetch data from the table: "e_ready_settings" */ - e_ready_settings?: (e_ready_settingsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_ready_settings_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_ready_settings_order_by[] | null), - /** filter the rows returned */ - where?: (e_ready_settings_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_ready_settings" */ - e_ready_settings_aggregate?: (e_ready_settings_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_ready_settings_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_ready_settings_order_by[] | null), - /** filter the rows returned */ - where?: (e_ready_settings_bool_exp | null)} }) - /** fetch data from the table: "e_ready_settings" using primary key columns */ - e_ready_settings_by_pk?: (e_ready_settingsGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_ready_settings" */ - e_ready_settings_stream?: (e_ready_settingsGenqlSelection & { __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_ready_settings_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_ready_settings_bool_exp | null)} }) - /** fetch data from the table: "e_sanction_scopes" */ - e_sanction_scopes?: (e_sanction_scopesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_sanction_scopes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_sanction_scopes_order_by[] | null), - /** filter the rows returned */ - where?: (e_sanction_scopes_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_sanction_scopes" */ - e_sanction_scopes_aggregate?: (e_sanction_scopes_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_sanction_scopes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_sanction_scopes_order_by[] | null), - /** filter the rows returned */ - where?: (e_sanction_scopes_bool_exp | null)} }) - /** fetch data from the table: "e_sanction_scopes" using primary key columns */ - e_sanction_scopes_by_pk?: (e_sanction_scopesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_sanction_scopes" */ - e_sanction_scopes_stream?: (e_sanction_scopesGenqlSelection & { __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_sanction_scopes_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_sanction_scopes_bool_exp | null)} }) - /** fetch data from the table: "e_sanction_sources" */ - e_sanction_sources?: (e_sanction_sourcesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_sanction_sources_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_sanction_sources_order_by[] | null), - /** filter the rows returned */ - where?: (e_sanction_sources_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_sanction_sources" */ - e_sanction_sources_aggregate?: (e_sanction_sources_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_sanction_sources_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_sanction_sources_order_by[] | null), - /** filter the rows returned */ - where?: (e_sanction_sources_bool_exp | null)} }) - /** fetch data from the table: "e_sanction_sources" using primary key columns */ - e_sanction_sources_by_pk?: (e_sanction_sourcesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_sanction_sources" */ - e_sanction_sources_stream?: (e_sanction_sourcesGenqlSelection & { __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_sanction_sources_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_sanction_sources_bool_exp | null)} }) - /** fetch data from the table: "e_sanction_types" */ - e_sanction_types?: (e_sanction_typesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_sanction_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_sanction_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_sanction_types_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_sanction_types" */ - e_sanction_types_aggregate?: (e_sanction_types_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_sanction_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_sanction_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_sanction_types_bool_exp | null)} }) - /** fetch data from the table: "e_sanction_types" using primary key columns */ - e_sanction_types_by_pk?: (e_sanction_typesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_sanction_types" */ - e_sanction_types_stream?: (e_sanction_typesGenqlSelection & { __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_sanction_types_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_sanction_types_bool_exp | null)} }) - /** fetch data from the table: "e_scrim_request_statuses" */ - e_scrim_request_statuses?: (e_scrim_request_statusesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_scrim_request_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_scrim_request_statuses_order_by[] | null), - /** filter the rows returned */ - where?: (e_scrim_request_statuses_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_scrim_request_statuses" */ - e_scrim_request_statuses_aggregate?: (e_scrim_request_statuses_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_scrim_request_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_scrim_request_statuses_order_by[] | null), - /** filter the rows returned */ - where?: (e_scrim_request_statuses_bool_exp | null)} }) - /** fetch data from the table: "e_scrim_request_statuses" using primary key columns */ - e_scrim_request_statuses_by_pk?: (e_scrim_request_statusesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_scrim_request_statuses" */ - e_scrim_request_statuses_stream?: (e_scrim_request_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_scrim_request_statuses_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_scrim_request_statuses_bool_exp | null)} }) - /** fetch data from the table: "e_server_types" */ - e_server_types?: (e_server_typesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_server_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_server_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_server_types_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_server_types" */ - e_server_types_aggregate?: (e_server_types_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_server_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_server_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_server_types_bool_exp | null)} }) - /** fetch data from the table: "e_server_types" using primary key columns */ - e_server_types_by_pk?: (e_server_typesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_server_types" */ - e_server_types_stream?: (e_server_typesGenqlSelection & { __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_server_types_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_server_types_bool_exp | null)} }) - /** fetch data from the table: "e_sides" */ - e_sides?: (e_sidesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_sides_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_sides_order_by[] | null), - /** filter the rows returned */ - where?: (e_sides_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_sides" */ - e_sides_aggregate?: (e_sides_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_sides_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_sides_order_by[] | null), - /** filter the rows returned */ - where?: (e_sides_bool_exp | null)} }) - /** fetch data from the table: "e_sides" using primary key columns */ - e_sides_by_pk?: (e_sidesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_sides" */ - e_sides_stream?: (e_sidesGenqlSelection & { __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_sides_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_sides_bool_exp | null)} }) - /** fetch data from the table: "e_system_alert_types" */ - e_system_alert_types?: (e_system_alert_typesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_system_alert_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_system_alert_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_system_alert_types_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_system_alert_types" */ - e_system_alert_types_aggregate?: (e_system_alert_types_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_system_alert_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_system_alert_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_system_alert_types_bool_exp | null)} }) - /** fetch data from the table: "e_system_alert_types" using primary key columns */ - e_system_alert_types_by_pk?: (e_system_alert_typesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_system_alert_types" */ - e_system_alert_types_stream?: (e_system_alert_typesGenqlSelection & { __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_system_alert_types_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_system_alert_types_bool_exp | null)} }) - /** fetch data from the table: "e_team_roles" */ - e_team_roles?: (e_team_rolesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_team_roles_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_team_roles_order_by[] | null), - /** filter the rows returned */ - where?: (e_team_roles_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_team_roles" */ - e_team_roles_aggregate?: (e_team_roles_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_team_roles_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_team_roles_order_by[] | null), - /** filter the rows returned */ - where?: (e_team_roles_bool_exp | null)} }) - /** fetch data from the table: "e_team_roles" using primary key columns */ - e_team_roles_by_pk?: (e_team_rolesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_team_roles" */ - e_team_roles_stream?: (e_team_rolesGenqlSelection & { __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_team_roles_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_team_roles_bool_exp | null)} }) - /** fetch data from the table: "e_team_roster_statuses" */ - e_team_roster_statuses?: (e_team_roster_statusesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_team_roster_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_team_roster_statuses_order_by[] | null), - /** filter the rows returned */ - where?: (e_team_roster_statuses_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_team_roster_statuses" */ - e_team_roster_statuses_aggregate?: (e_team_roster_statuses_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_team_roster_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_team_roster_statuses_order_by[] | null), - /** filter the rows returned */ - where?: (e_team_roster_statuses_bool_exp | null)} }) - /** fetch data from the table: "e_team_roster_statuses" using primary key columns */ - e_team_roster_statuses_by_pk?: (e_team_roster_statusesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_team_roster_statuses" */ - e_team_roster_statuses_stream?: (e_team_roster_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_team_roster_statuses_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_team_roster_statuses_bool_exp | null)} }) - /** fetch data from the table: "e_timeout_settings" */ - e_timeout_settings?: (e_timeout_settingsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_timeout_settings_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_timeout_settings_order_by[] | null), - /** filter the rows returned */ - where?: (e_timeout_settings_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_timeout_settings" */ - e_timeout_settings_aggregate?: (e_timeout_settings_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_timeout_settings_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_timeout_settings_order_by[] | null), - /** filter the rows returned */ - where?: (e_timeout_settings_bool_exp | null)} }) - /** fetch data from the table: "e_timeout_settings" using primary key columns */ - e_timeout_settings_by_pk?: (e_timeout_settingsGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_timeout_settings" */ - e_timeout_settings_stream?: (e_timeout_settingsGenqlSelection & { __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_timeout_settings_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_timeout_settings_bool_exp | null)} }) - /** fetch data from the table: "e_tournament_categories" */ - e_tournament_categories?: (e_tournament_categoriesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_tournament_categories_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (e_tournament_categories_order_by[] | null), - /** filter the rows returned */ - where?: (e_tournament_categories_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_tournament_categories" */ - e_tournament_categories_aggregate?: (e_tournament_categories_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_tournament_categories_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (e_tournament_categories_order_by[] | null), - /** filter the rows returned */ - where?: (e_tournament_categories_bool_exp | null)} }) - /** fetch data from the table: "e_tournament_categories" using primary key columns */ - e_tournament_categories_by_pk?: (e_tournament_categoriesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_tournament_categories" */ - e_tournament_categories_stream?: (e_tournament_categoriesGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (e_tournament_categories_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_tournament_categories_bool_exp | null)} }) - /** fetch data from the table: "e_tournament_free_agent_statuses" */ - e_tournament_free_agent_statuses?: (e_tournament_free_agent_statusesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_tournament_free_agent_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_tournament_free_agent_statuses_order_by[] | null), - /** filter the rows returned */ - where?: (e_tournament_free_agent_statuses_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_tournament_free_agent_statuses" */ - e_tournament_free_agent_statuses_aggregate?: (e_tournament_free_agent_statuses_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_tournament_free_agent_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_tournament_free_agent_statuses_order_by[] | null), - /** filter the rows returned */ - where?: (e_tournament_free_agent_statuses_bool_exp | null)} }) - /** fetch data from the table: "e_tournament_free_agent_statuses" using primary key columns */ - e_tournament_free_agent_statuses_by_pk?: (e_tournament_free_agent_statusesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_tournament_free_agent_statuses" */ - e_tournament_free_agent_statuses_stream?: (e_tournament_free_agent_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_tournament_free_agent_statuses_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_tournament_free_agent_statuses_bool_exp | null)} }) - /** fetch data from the table: "e_tournament_registration_types" */ - e_tournament_registration_types?: (e_tournament_registration_typesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_tournament_registration_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (e_tournament_registration_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_tournament_registration_types_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_tournament_registration_types" */ - e_tournament_registration_types_aggregate?: (e_tournament_registration_types_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_tournament_registration_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (e_tournament_registration_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_tournament_registration_types_bool_exp | null)} }) - /** fetch data from the table: "e_tournament_registration_types" using primary key columns */ - e_tournament_registration_types_by_pk?: (e_tournament_registration_typesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_tournament_registration_types" */ - e_tournament_registration_types_stream?: (e_tournament_registration_typesGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (e_tournament_registration_types_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_tournament_registration_types_bool_exp | null)} }) - /** fetch data from the table: "e_tournament_stage_types" */ - e_tournament_stage_types?: (e_tournament_stage_typesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_tournament_stage_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (e_tournament_stage_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_tournament_stage_types_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_tournament_stage_types" */ - e_tournament_stage_types_aggregate?: (e_tournament_stage_types_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_tournament_stage_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (e_tournament_stage_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_tournament_stage_types_bool_exp | null)} }) - /** fetch data from the table: "e_tournament_stage_types" using primary key columns */ - e_tournament_stage_types_by_pk?: (e_tournament_stage_typesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_tournament_stage_types" */ - e_tournament_stage_types_stream?: (e_tournament_stage_typesGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (e_tournament_stage_types_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_tournament_stage_types_bool_exp | null)} }) - /** fetch data from the table: "e_tournament_status" */ - e_tournament_status?: (e_tournament_statusGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_tournament_status_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (e_tournament_status_order_by[] | null), - /** filter the rows returned */ - where?: (e_tournament_status_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_tournament_status" */ - e_tournament_status_aggregate?: (e_tournament_status_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_tournament_status_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (e_tournament_status_order_by[] | null), - /** filter the rows returned */ - where?: (e_tournament_status_bool_exp | null)} }) - /** fetch data from the table: "e_tournament_status" using primary key columns */ - e_tournament_status_by_pk?: (e_tournament_statusGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_tournament_status" */ - e_tournament_status_stream?: (e_tournament_statusGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (e_tournament_status_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_tournament_status_bool_exp | null)} }) - /** fetch data from the table: "e_utility_practice_access" */ - e_utility_practice_access?: (e_utility_practice_accessGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_utility_practice_access_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (e_utility_practice_access_order_by[] | null), - /** filter the rows returned */ - where?: (e_utility_practice_access_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_utility_practice_access" */ - e_utility_practice_access_aggregate?: (e_utility_practice_access_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_utility_practice_access_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (e_utility_practice_access_order_by[] | null), - /** filter the rows returned */ - where?: (e_utility_practice_access_bool_exp | null)} }) - /** fetch data from the table: "e_utility_practice_access" using primary key columns */ - e_utility_practice_access_by_pk?: (e_utility_practice_accessGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_utility_practice_access" */ - e_utility_practice_access_stream?: (e_utility_practice_accessGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (e_utility_practice_access_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_utility_practice_access_bool_exp | null)} }) - /** fetch data from the table: "e_utility_practice_statuses" */ - e_utility_practice_statuses?: (e_utility_practice_statusesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_utility_practice_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_utility_practice_statuses_order_by[] | null), - /** filter the rows returned */ - where?: (e_utility_practice_statuses_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_utility_practice_statuses" */ - e_utility_practice_statuses_aggregate?: (e_utility_practice_statuses_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_utility_practice_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_utility_practice_statuses_order_by[] | null), - /** filter the rows returned */ - where?: (e_utility_practice_statuses_bool_exp | null)} }) - /** fetch data from the table: "e_utility_practice_statuses" using primary key columns */ - e_utility_practice_statuses_by_pk?: (e_utility_practice_statusesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_utility_practice_statuses" */ - e_utility_practice_statuses_stream?: (e_utility_practice_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_utility_practice_statuses_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_utility_practice_statuses_bool_exp | null)} }) - /** fetch data from the table: "e_utility_sources" */ - e_utility_sources?: (e_utility_sourcesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_utility_sources_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_utility_sources_order_by[] | null), - /** filter the rows returned */ - where?: (e_utility_sources_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_utility_sources" */ - e_utility_sources_aggregate?: (e_utility_sources_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_utility_sources_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_utility_sources_order_by[] | null), - /** filter the rows returned */ - where?: (e_utility_sources_bool_exp | null)} }) - /** fetch data from the table: "e_utility_sources" using primary key columns */ - e_utility_sources_by_pk?: (e_utility_sourcesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_utility_sources" */ - e_utility_sources_stream?: (e_utility_sourcesGenqlSelection & { __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_utility_sources_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_utility_sources_bool_exp | null)} }) - /** fetch data from the table: "e_utility_techniques" */ - e_utility_techniques?: (e_utility_techniquesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_utility_techniques_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_utility_techniques_order_by[] | null), - /** filter the rows returned */ - where?: (e_utility_techniques_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_utility_techniques" */ - e_utility_techniques_aggregate?: (e_utility_techniques_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_utility_techniques_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_utility_techniques_order_by[] | null), - /** filter the rows returned */ - where?: (e_utility_techniques_bool_exp | null)} }) - /** fetch data from the table: "e_utility_techniques" using primary key columns */ - e_utility_techniques_by_pk?: (e_utility_techniquesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_utility_techniques" */ - e_utility_techniques_stream?: (e_utility_techniquesGenqlSelection & { __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_utility_techniques_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_utility_techniques_bool_exp | null)} }) - /** fetch data from the table: "e_utility_throw_strengths" */ - e_utility_throw_strengths?: (e_utility_throw_strengthsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_utility_throw_strengths_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_utility_throw_strengths_order_by[] | null), - /** filter the rows returned */ - where?: (e_utility_throw_strengths_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_utility_throw_strengths" */ - e_utility_throw_strengths_aggregate?: (e_utility_throw_strengths_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_utility_throw_strengths_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_utility_throw_strengths_order_by[] | null), - /** filter the rows returned */ - where?: (e_utility_throw_strengths_bool_exp | null)} }) - /** fetch data from the table: "e_utility_throw_strengths" using primary key columns */ - e_utility_throw_strengths_by_pk?: (e_utility_throw_strengthsGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_utility_throw_strengths" */ - e_utility_throw_strengths_stream?: (e_utility_throw_strengthsGenqlSelection & { __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_utility_throw_strengths_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_utility_throw_strengths_bool_exp | null)} }) - /** fetch data from the table: "e_utility_types" */ - e_utility_types?: (e_utility_typesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_utility_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_utility_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_utility_types_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_utility_types" */ - e_utility_types_aggregate?: (e_utility_types_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_utility_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_utility_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_utility_types_bool_exp | null)} }) - /** fetch data from the table: "e_utility_types" using primary key columns */ - e_utility_types_by_pk?: (e_utility_typesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_utility_types" */ - e_utility_types_stream?: (e_utility_typesGenqlSelection & { __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_utility_types_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_utility_types_bool_exp | null)} }) - /** fetch data from the table: "e_utility_visibility" */ - e_utility_visibility?: (e_utility_visibilityGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_utility_visibility_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (e_utility_visibility_order_by[] | null), - /** filter the rows returned */ - where?: (e_utility_visibility_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_utility_visibility" */ - e_utility_visibility_aggregate?: (e_utility_visibility_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_utility_visibility_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (e_utility_visibility_order_by[] | null), - /** filter the rows returned */ - where?: (e_utility_visibility_bool_exp | null)} }) - /** fetch data from the table: "e_utility_visibility" using primary key columns */ - e_utility_visibility_by_pk?: (e_utility_visibilityGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_utility_visibility" */ - e_utility_visibility_stream?: (e_utility_visibilityGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (e_utility_visibility_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_utility_visibility_bool_exp | null)} }) - /** fetch data from the table: "e_veto_pick_types" */ - e_veto_pick_types?: (e_veto_pick_typesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_veto_pick_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_veto_pick_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_veto_pick_types_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_veto_pick_types" */ - e_veto_pick_types_aggregate?: (e_veto_pick_types_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_veto_pick_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_veto_pick_types_order_by[] | null), - /** filter the rows returned */ - where?: (e_veto_pick_types_bool_exp | null)} }) - /** fetch data from the table: "e_veto_pick_types" using primary key columns */ - e_veto_pick_types_by_pk?: (e_veto_pick_typesGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_veto_pick_types" */ - e_veto_pick_types_stream?: (e_veto_pick_typesGenqlSelection & { __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_veto_pick_types_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_veto_pick_types_bool_exp | null)} }) - /** fetch data from the table: "e_winning_reasons" */ - e_winning_reasons?: (e_winning_reasonsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_winning_reasons_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_winning_reasons_order_by[] | null), - /** filter the rows returned */ - where?: (e_winning_reasons_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_winning_reasons" */ - e_winning_reasons_aggregate?: (e_winning_reasons_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (e_winning_reasons_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_winning_reasons_order_by[] | null), - /** filter the rows returned */ - where?: (e_winning_reasons_bool_exp | null)} }) - /** fetch data from the table: "e_winning_reasons" using primary key columns */ - e_winning_reasons_by_pk?: (e_winning_reasonsGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_winning_reasons" */ - e_winning_reasons_stream?: (e_winning_reasonsGenqlSelection & { __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_winning_reasons_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (e_winning_reasons_bool_exp | null)} }) - /** fetch data from the table: "event_match_links" */ - event_match_links?: (event_match_linksGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (event_match_links_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (event_match_links_order_by[] | null), - /** filter the rows returned */ - where?: (event_match_links_bool_exp | null)} }) - /** fetch aggregated fields from the table: "event_match_links" */ - event_match_links_aggregate?: (event_match_links_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (event_match_links_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (event_match_links_order_by[] | null), - /** filter the rows returned */ - where?: (event_match_links_bool_exp | null)} }) - /** fetch data from the table: "event_match_links" using primary key columns */ - event_match_links_by_pk?: (event_match_linksGenqlSelection & { __args: {event_id: Scalars['uuid'], match_id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "event_match_links" */ - event_match_links_stream?: (event_match_linksGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (event_match_links_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (event_match_links_bool_exp | null)} }) - /** fetch data from the table: "event_media" */ - event_media?: (event_mediaGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (event_media_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (event_media_order_by[] | null), - /** filter the rows returned */ - where?: (event_media_bool_exp | null)} }) - /** fetch aggregated fields from the table: "event_media" */ - event_media_aggregate?: (event_media_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (event_media_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (event_media_order_by[] | null), - /** filter the rows returned */ - where?: (event_media_bool_exp | null)} }) - /** fetch data from the table: "event_media" using primary key columns */ - event_media_by_pk?: (event_mediaGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "event_media_players" */ - event_media_players?: (event_media_playersGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (event_media_players_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (event_media_players_order_by[] | null), - /** filter the rows returned */ - where?: (event_media_players_bool_exp | null)} }) - /** fetch aggregated fields from the table: "event_media_players" */ - event_media_players_aggregate?: (event_media_players_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (event_media_players_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (event_media_players_order_by[] | null), - /** filter the rows returned */ - where?: (event_media_players_bool_exp | null)} }) - /** fetch data from the table: "event_media_players" using primary key columns */ - event_media_players_by_pk?: (event_media_playersGenqlSelection & { __args: {media_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) - /** fetch data from the table in a streaming manner: "event_media_players" */ - event_media_players_stream?: (event_media_playersGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (event_media_players_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (event_media_players_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "event_media" */ - event_media_stream?: (event_mediaGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (event_media_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (event_media_bool_exp | null)} }) - /** fetch data from the table: "event_organizers" */ - event_organizers?: (event_organizersGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (event_organizers_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (event_organizers_order_by[] | null), - /** filter the rows returned */ - where?: (event_organizers_bool_exp | null)} }) - /** fetch aggregated fields from the table: "event_organizers" */ - event_organizers_aggregate?: (event_organizers_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (event_organizers_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (event_organizers_order_by[] | null), - /** filter the rows returned */ - where?: (event_organizers_bool_exp | null)} }) - /** fetch data from the table: "event_organizers" using primary key columns */ - event_organizers_by_pk?: (event_organizersGenqlSelection & { __args: {event_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) - /** fetch data from the table in a streaming manner: "event_organizers" */ - event_organizers_stream?: (event_organizersGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (event_organizers_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (event_organizers_bool_exp | null)} }) - /** fetch data from the table: "event_players" */ - event_players?: (event_playersGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (event_players_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (event_players_order_by[] | null), - /** filter the rows returned */ - where?: (event_players_bool_exp | null)} }) - /** fetch aggregated fields from the table: "event_players" */ - event_players_aggregate?: (event_players_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (event_players_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (event_players_order_by[] | null), - /** filter the rows returned */ - where?: (event_players_bool_exp | null)} }) - /** fetch data from the table: "event_players" using primary key columns */ - event_players_by_pk?: (event_playersGenqlSelection & { __args: {event_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) - /** fetch data from the table in a streaming manner: "event_players" */ - event_players_stream?: (event_playersGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (event_players_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (event_players_bool_exp | null)} }) - /** fetch data from the table: "event_teams" */ - event_teams?: (event_teamsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (event_teams_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (event_teams_order_by[] | null), - /** filter the rows returned */ - where?: (event_teams_bool_exp | null)} }) - /** fetch aggregated fields from the table: "event_teams" */ - event_teams_aggregate?: (event_teams_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (event_teams_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (event_teams_order_by[] | null), - /** filter the rows returned */ - where?: (event_teams_bool_exp | null)} }) - /** fetch data from the table: "event_teams" using primary key columns */ - event_teams_by_pk?: (event_teamsGenqlSelection & { __args: {event_id: Scalars['uuid'], team_id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "event_teams" */ - event_teams_stream?: (event_teamsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (event_teams_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (event_teams_bool_exp | null)} }) - /** fetch data from the table: "event_tournaments" */ - event_tournaments?: (event_tournamentsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (event_tournaments_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (event_tournaments_order_by[] | null), - /** filter the rows returned */ - where?: (event_tournaments_bool_exp | null)} }) - /** fetch aggregated fields from the table: "event_tournaments" */ - event_tournaments_aggregate?: (event_tournaments_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (event_tournaments_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (event_tournaments_order_by[] | null), - /** filter the rows returned */ - where?: (event_tournaments_bool_exp | null)} }) - /** fetch data from the table: "event_tournaments" using primary key columns */ - event_tournaments_by_pk?: (event_tournamentsGenqlSelection & { __args: {event_id: Scalars['uuid'], tournament_id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "event_tournaments" */ - event_tournaments_stream?: (event_tournamentsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (event_tournaments_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (event_tournaments_bool_exp | null)} }) - /** fetch data from the table: "events" */ - events?: (eventsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (events_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (events_order_by[] | null), - /** filter the rows returned */ - where?: (events_bool_exp | null)} }) - /** fetch aggregated fields from the table: "events" */ - events_aggregate?: (events_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (events_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (events_order_by[] | null), - /** filter the rows returned */ - where?: (events_bool_exp | null)} }) - /** fetch data from the table: "events" using primary key columns */ - events_by_pk?: (eventsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "events" */ - events_stream?: (eventsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (events_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (events_bool_exp | null)} }) - /** fetch data from the table: "friends" */ - friends?: (friendsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (friends_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (friends_order_by[] | null), - /** filter the rows returned */ - where?: (friends_bool_exp | null)} }) - /** fetch aggregated fields from the table: "friends" */ - friends_aggregate?: (friends_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (friends_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (friends_order_by[] | null), - /** filter the rows returned */ - 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 in a streaming manner: "friends" */ - friends_stream?: (friendsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - 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 */ - distinct_on?: (game_server_nodes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_nodes_order_by[] | null), - /** filter the rows returned */ - where?: (game_server_nodes_bool_exp | null)} }) - /** An aggregate relationship */ - game_server_nodes_aggregate?: (game_server_nodes_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (game_server_nodes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_nodes_order_by[] | null), - /** filter the rows returned */ - where?: (game_server_nodes_bool_exp | null)} }) - /** fetch data from the table: "game_server_nodes" using primary key columns */ - game_server_nodes_by_pk?: (game_server_nodesGenqlSelection & { __args: {id: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "game_server_nodes" */ - game_server_nodes_stream?: (game_server_nodesGenqlSelection & { __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_nodes_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (game_server_nodes_bool_exp | null)} }) - /** fetch data from the table: "game_versions" */ - game_versions?: (game_versionsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (game_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_versions_order_by[] | null), - /** filter the rows returned */ - where?: (game_versions_bool_exp | null)} }) - /** fetch aggregated fields from the table: "game_versions" */ - game_versions_aggregate?: (game_versions_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (game_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_versions_order_by[] | null), - /** filter the rows returned */ - where?: (game_versions_bool_exp | null)} }) - /** fetch data from the table: "game_versions" using primary key columns */ - game_versions_by_pk?: (game_versionsGenqlSelection & { __args: {build_id: Scalars['Int']} }) - /** fetch data from the table in a streaming manner: "game_versions" */ - game_versions_stream?: (game_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_versions_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (game_versions_bool_exp | null)} }) - /** fetch data from the table: "gamedata_signature_validations" */ - gamedata_signature_validations?: (gamedata_signature_validationsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (gamedata_signature_validations_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (gamedata_signature_validations_order_by[] | null), - /** filter the rows returned */ - where?: (gamedata_signature_validations_bool_exp | null)} }) - /** fetch aggregated fields from the table: "gamedata_signature_validations" */ - gamedata_signature_validations_aggregate?: (gamedata_signature_validations_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (gamedata_signature_validations_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (gamedata_signature_validations_order_by[] | null), - /** filter the rows returned */ - where?: (gamedata_signature_validations_bool_exp | null)} }) - /** fetch data from the table: "gamedata_signature_validations" using primary key columns */ - gamedata_signature_validations_by_pk?: (gamedata_signature_validationsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "gamedata_signature_validations" */ - gamedata_signature_validations_stream?: (gamedata_signature_validationsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (gamedata_signature_validations_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (gamedata_signature_validations_bool_exp | null)} }) - /** execute function "get_event_leaderboard" which returns "leaderboard_entries" */ - get_event_leaderboard?: (leaderboard_entriesGenqlSelection & { __args: { - /** input parameters for function "get_event_leaderboard" */ - args: get_event_leaderboard_args, - /** distinct select on columns */ - distinct_on?: (leaderboard_entries_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (leaderboard_entries_order_by[] | null), - /** filter the rows returned */ - where?: (leaderboard_entries_bool_exp | null)} }) - /** execute function "get_event_leaderboard" and query aggregates on result of table type "leaderboard_entries" */ - get_event_leaderboard_aggregate?: (leaderboard_entries_aggregateGenqlSelection & { __args: { - /** input parameters for function "get_event_leaderboard_aggregate" */ - args: get_event_leaderboard_args, - /** distinct select on columns */ - distinct_on?: (leaderboard_entries_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (leaderboard_entries_order_by[] | null), - /** filter the rows returned */ - where?: (leaderboard_entries_bool_exp | null)} }) - /** execute function "get_leaderboard" which returns "leaderboard_entries" */ - get_leaderboard?: (leaderboard_entriesGenqlSelection & { __args: { - /** input parameters for function "get_leaderboard" */ - args: get_leaderboard_args, - /** distinct select on columns */ - distinct_on?: (leaderboard_entries_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (leaderboard_entries_order_by[] | null), - /** filter the rows returned */ - where?: (leaderboard_entries_bool_exp | null)} }) - /** execute function "get_leaderboard" and query aggregates on result of table type "leaderboard_entries" */ - get_leaderboard_aggregate?: (leaderboard_entries_aggregateGenqlSelection & { __args: { - /** input parameters for function "get_leaderboard_aggregate" */ - args: get_leaderboard_args, - /** distinct select on columns */ - distinct_on?: (leaderboard_entries_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (leaderboard_entries_order_by[] | null), - /** filter the rows returned */ - where?: (leaderboard_entries_bool_exp | null)} }) - /** execute function "get_league_season_leaderboard" which returns "leaderboard_entries" */ - get_league_season_leaderboard?: (leaderboard_entriesGenqlSelection & { __args: { - /** input parameters for function "get_league_season_leaderboard" */ - args: get_league_season_leaderboard_args, - /** distinct select on columns */ - distinct_on?: (leaderboard_entries_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (leaderboard_entries_order_by[] | null), - /** filter the rows returned */ - where?: (leaderboard_entries_bool_exp | null)} }) - /** execute function "get_league_season_leaderboard" and query aggregates on result of table type "leaderboard_entries" */ - get_league_season_leaderboard_aggregate?: (leaderboard_entries_aggregateGenqlSelection & { __args: { - /** input parameters for function "get_league_season_leaderboard_aggregate" */ - args: get_league_season_leaderboard_args, - /** distinct select on columns */ - distinct_on?: (leaderboard_entries_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (leaderboard_entries_order_by[] | null), - /** filter the rows returned */ - where?: (leaderboard_entries_bool_exp | null)} }) - /** execute function "get_player_leaderboard_rank" which returns "player_leaderboard_rank" */ - get_player_leaderboard_rank?: (player_leaderboard_rankGenqlSelection & { __args: { - /** input parameters for function "get_player_leaderboard_rank" */ - args: get_player_leaderboard_rank_args, - /** distinct select on columns */ - distinct_on?: (player_leaderboard_rank_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_leaderboard_rank_order_by[] | null), - /** filter the rows returned */ - where?: (player_leaderboard_rank_bool_exp | null)} }) - /** execute function "get_player_leaderboard_rank" and query aggregates on result of table type "player_leaderboard_rank" */ - get_player_leaderboard_rank_aggregate?: (player_leaderboard_rank_aggregateGenqlSelection & { __args: { - /** input parameters for function "get_player_leaderboard_rank_aggregate" */ - args: get_player_leaderboard_rank_args, - /** distinct select on columns */ - distinct_on?: (player_leaderboard_rank_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_leaderboard_rank_order_by[] | null), - /** filter the rows returned */ - where?: (player_leaderboard_rank_bool_exp | null)} }) - /** execute function "get_tournament_leaderboard" which returns "tournament_leaderboard_entries" */ - get_tournament_leaderboard?: (tournament_leaderboard_entriesGenqlSelection & { __args: { - /** input parameters for function "get_tournament_leaderboard" */ - args: get_tournament_leaderboard_args, - /** distinct select on columns */ - distinct_on?: (tournament_leaderboard_entries_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (tournament_leaderboard_entries_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_leaderboard_entries_bool_exp | null)} }) - /** execute function "get_tournament_leaderboard" and query aggregates on result of table type "tournament_leaderboard_entries" */ - get_tournament_leaderboard_aggregate?: (tournament_leaderboard_entries_aggregateGenqlSelection & { __args: { - /** input parameters for function "get_tournament_leaderboard_aggregate" */ - args: get_tournament_leaderboard_args, - /** distinct select on columns */ - distinct_on?: (tournament_leaderboard_entries_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (tournament_leaderboard_entries_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_leaderboard_entries_bool_exp | null)} }) - /** fetch data from the table: "leaderboard_entries" */ - leaderboard_entries?: (leaderboard_entriesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (leaderboard_entries_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (leaderboard_entries_order_by[] | null), - /** filter the rows returned */ - where?: (leaderboard_entries_bool_exp | null)} }) - /** fetch aggregated fields from the table: "leaderboard_entries" */ - leaderboard_entries_aggregate?: (leaderboard_entries_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (leaderboard_entries_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (leaderboard_entries_order_by[] | null), - /** filter the rows returned */ - where?: (leaderboard_entries_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "leaderboard_entries" */ - leaderboard_entries_stream?: (leaderboard_entriesGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (leaderboard_entries_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (leaderboard_entries_bool_exp | null)} }) - /** fetch data from the table: "league_divisions" */ - league_divisions?: (league_divisionsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_divisions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_divisions_order_by[] | null), - /** filter the rows returned */ - where?: (league_divisions_bool_exp | null)} }) - /** fetch aggregated fields from the table: "league_divisions" */ - league_divisions_aggregate?: (league_divisions_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_divisions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_divisions_order_by[] | null), - /** filter the rows returned */ - where?: (league_divisions_bool_exp | null)} }) - /** fetch data from the table: "league_divisions" using primary key columns */ - league_divisions_by_pk?: (league_divisionsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "league_divisions" */ - league_divisions_stream?: (league_divisionsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (league_divisions_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (league_divisions_bool_exp | null)} }) - /** fetch data from the table: "league_match_weeks" */ - league_match_weeks?: (league_match_weeksGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_match_weeks_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_match_weeks_order_by[] | null), - /** filter the rows returned */ - where?: (league_match_weeks_bool_exp | null)} }) - /** fetch aggregated fields from the table: "league_match_weeks" */ - league_match_weeks_aggregate?: (league_match_weeks_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_match_weeks_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_match_weeks_order_by[] | null), - /** filter the rows returned */ - where?: (league_match_weeks_bool_exp | null)} }) - /** fetch data from the table: "league_match_weeks" using primary key columns */ - league_match_weeks_by_pk?: (league_match_weeksGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "league_match_weeks" */ - league_match_weeks_stream?: (league_match_weeksGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (league_match_weeks_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (league_match_weeks_bool_exp | null)} }) - /** fetch data from the table: "league_relegation_playoffs" */ - league_relegation_playoffs?: (league_relegation_playoffsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_relegation_playoffs_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_relegation_playoffs_order_by[] | null), - /** filter the rows returned */ - where?: (league_relegation_playoffs_bool_exp | null)} }) - /** fetch aggregated fields from the table: "league_relegation_playoffs" */ - league_relegation_playoffs_aggregate?: (league_relegation_playoffs_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_relegation_playoffs_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_relegation_playoffs_order_by[] | null), - /** filter the rows returned */ - where?: (league_relegation_playoffs_bool_exp | null)} }) - /** fetch data from the table: "league_relegation_playoffs" using primary key columns */ - league_relegation_playoffs_by_pk?: (league_relegation_playoffsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "league_relegation_playoffs" */ - league_relegation_playoffs_stream?: (league_relegation_playoffsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (league_relegation_playoffs_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (league_relegation_playoffs_bool_exp | null)} }) - /** fetch data from the table: "league_scheduling_proposals" */ - league_scheduling_proposals?: (league_scheduling_proposalsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_scheduling_proposals_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_scheduling_proposals_order_by[] | null), - /** filter the rows returned */ - where?: (league_scheduling_proposals_bool_exp | null)} }) - /** fetch aggregated fields from the table: "league_scheduling_proposals" */ - league_scheduling_proposals_aggregate?: (league_scheduling_proposals_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_scheduling_proposals_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_scheduling_proposals_order_by[] | null), - /** filter the rows returned */ - where?: (league_scheduling_proposals_bool_exp | null)} }) - /** fetch data from the table: "league_scheduling_proposals" using primary key columns */ - league_scheduling_proposals_by_pk?: (league_scheduling_proposalsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "league_scheduling_proposals" */ - league_scheduling_proposals_stream?: (league_scheduling_proposalsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (league_scheduling_proposals_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (league_scheduling_proposals_bool_exp | null)} }) - /** fetch data from the table: "league_season_divisions" */ - league_season_divisions?: (league_season_divisionsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_season_divisions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_season_divisions_order_by[] | null), - /** filter the rows returned */ - where?: (league_season_divisions_bool_exp | null)} }) - /** fetch aggregated fields from the table: "league_season_divisions" */ - league_season_divisions_aggregate?: (league_season_divisions_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_season_divisions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_season_divisions_order_by[] | null), - /** filter the rows returned */ - where?: (league_season_divisions_bool_exp | null)} }) - /** fetch data from the table: "league_season_divisions" using primary key columns */ - league_season_divisions_by_pk?: (league_season_divisionsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "league_season_divisions" */ - league_season_divisions_stream?: (league_season_divisionsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (league_season_divisions_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (league_season_divisions_bool_exp | null)} }) - /** fetch data from the table: "league_seasons" */ - league_seasons?: (league_seasonsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_seasons_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_seasons_order_by[] | null), - /** filter the rows returned */ - where?: (league_seasons_bool_exp | null)} }) - /** fetch aggregated fields from the table: "league_seasons" */ - league_seasons_aggregate?: (league_seasons_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_seasons_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_seasons_order_by[] | null), - /** filter the rows returned */ - where?: (league_seasons_bool_exp | null)} }) - /** fetch data from the table: "league_seasons" using primary key columns */ - league_seasons_by_pk?: (league_seasonsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "league_seasons" */ - league_seasons_stream?: (league_seasonsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (league_seasons_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (league_seasons_bool_exp | null)} }) - /** fetch data from the table: "league_team_movements" */ - league_team_movements?: (league_team_movementsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_team_movements_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_team_movements_order_by[] | null), - /** filter the rows returned */ - where?: (league_team_movements_bool_exp | null)} }) - /** fetch aggregated fields from the table: "league_team_movements" */ - league_team_movements_aggregate?: (league_team_movements_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_team_movements_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_team_movements_order_by[] | null), - /** filter the rows returned */ - where?: (league_team_movements_bool_exp | null)} }) - /** fetch data from the table: "league_team_movements" using primary key columns */ - league_team_movements_by_pk?: (league_team_movementsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "league_team_movements" */ - league_team_movements_stream?: (league_team_movementsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (league_team_movements_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (league_team_movements_bool_exp | null)} }) - /** fetch data from the table: "league_team_rosters" */ - league_team_rosters?: (league_team_rostersGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_team_rosters_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_team_rosters_order_by[] | null), - /** filter the rows returned */ - where?: (league_team_rosters_bool_exp | null)} }) - /** fetch aggregated fields from the table: "league_team_rosters" */ - league_team_rosters_aggregate?: (league_team_rosters_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_team_rosters_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_team_rosters_order_by[] | null), - /** filter the rows returned */ - where?: (league_team_rosters_bool_exp | null)} }) - /** fetch data from the table: "league_team_rosters" using primary key columns */ - league_team_rosters_by_pk?: (league_team_rostersGenqlSelection & { __args: {league_team_season_id: Scalars['uuid'], player_steam_id: Scalars['bigint']} }) - /** fetch data from the table in a streaming manner: "league_team_rosters" */ - league_team_rosters_stream?: (league_team_rostersGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (league_team_rosters_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (league_team_rosters_bool_exp | null)} }) - /** fetch data from the table: "league_team_seasons" */ - league_team_seasons?: (league_team_seasonsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_team_seasons_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_team_seasons_order_by[] | null), - /** filter the rows returned */ - where?: (league_team_seasons_bool_exp | null)} }) - /** fetch aggregated fields from the table: "league_team_seasons" */ - league_team_seasons_aggregate?: (league_team_seasons_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_team_seasons_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_team_seasons_order_by[] | null), - /** filter the rows returned */ - where?: (league_team_seasons_bool_exp | null)} }) - /** fetch data from the table: "league_team_seasons" using primary key columns */ - league_team_seasons_by_pk?: (league_team_seasonsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "league_team_seasons" */ - league_team_seasons_stream?: (league_team_seasonsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (league_team_seasons_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (league_team_seasons_bool_exp | null)} }) - /** fetch data from the table: "league_teams" */ - league_teams?: (league_teamsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_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?: (league_teams_order_by[] | null), - /** filter the rows returned */ - where?: (league_teams_bool_exp | null)} }) - /** fetch aggregated fields from the table: "league_teams" */ - league_teams_aggregate?: (league_teams_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_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?: (league_teams_order_by[] | null), - /** filter the rows returned */ - where?: (league_teams_bool_exp | null)} }) - /** fetch data from the table: "league_teams" using primary key columns */ - league_teams_by_pk?: (league_teamsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "league_teams" */ - league_teams_stream?: (league_teamsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (league_teams_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (league_teams_bool_exp | null)} }) - /** fetch data from the table: "lobbies" */ - lobbies?: (lobbiesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (lobbies_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (lobbies_order_by[] | null), - /** filter the rows returned */ - where?: (lobbies_bool_exp | null)} }) - /** fetch aggregated fields from the table: "lobbies" */ - lobbies_aggregate?: (lobbies_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (lobbies_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (lobbies_order_by[] | null), - /** filter the rows returned */ - where?: (lobbies_bool_exp | null)} }) - /** fetch data from the table: "lobbies" using primary key columns */ - lobbies_by_pk?: (lobbiesGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "lobbies" */ - lobbies_stream?: (lobbiesGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (lobbies_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (lobbies_bool_exp | null)} }) - /** An array relationship */ - lobby_players?: (lobby_playersGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (lobby_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?: (lobby_players_order_by[] | null), - /** filter the rows returned */ - where?: (lobby_players_bool_exp | null)} }) - /** An aggregate relationship */ - lobby_players_aggregate?: (lobby_players_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (lobby_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?: (lobby_players_order_by[] | null), - /** filter the rows returned */ - where?: (lobby_players_bool_exp | null)} }) - /** fetch data from the table: "lobby_players" using primary key columns */ - lobby_players_by_pk?: (lobby_playersGenqlSelection & { __args: {lobby_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) - /** fetch data from the table in a streaming manner: "lobby_players" */ - lobby_players_stream?: (lobby_playersGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (lobby_players_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (lobby_players_bool_exp | null)} }) - /** fetch data from the table: "map_callouts" */ - map_callouts?: (map_calloutsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (map_callouts_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (map_callouts_order_by[] | null), - /** filter the rows returned */ - where?: (map_callouts_bool_exp | null)} }) - /** fetch aggregated fields from the table: "map_callouts" */ - map_callouts_aggregate?: (map_callouts_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (map_callouts_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (map_callouts_order_by[] | null), - /** filter the rows returned */ - where?: (map_callouts_bool_exp | null)} }) - /** fetch data from the table: "map_callouts" using primary key columns */ - map_callouts_by_pk?: (map_calloutsGenqlSelection & { __args: {map_name: Scalars['String'], name: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "map_callouts" */ - map_callouts_stream?: (map_calloutsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (map_callouts_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (map_callouts_bool_exp | null)} }) - /** fetch data from the table: "map_pools" */ - map_pools?: (map_poolsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (map_pools_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (map_pools_order_by[] | null), - /** filter the rows returned */ - where?: (map_pools_bool_exp | null)} }) - /** fetch aggregated fields from the table: "map_pools" */ - map_pools_aggregate?: (map_pools_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (map_pools_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (map_pools_order_by[] | null), - /** filter the rows returned */ - where?: (map_pools_bool_exp | null)} }) - /** fetch data from the table: "map_pools" using primary key columns */ - map_pools_by_pk?: (map_poolsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "map_pools" */ - map_pools_stream?: (map_poolsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (map_pools_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (map_pools_bool_exp | null)} }) - /** 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)} }) - /** fetch data from the table: "maps" using primary key columns */ - maps_by_pk?: (mapsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "maps" */ - maps_stream?: (mapsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (maps_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (maps_bool_exp | null)} }) - /** 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)} }) - /** fetch data from the table: "match_clips" using primary key columns */ - match_clips_by_pk?: (match_clipsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "match_clips" */ - match_clips_stream?: (match_clipsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (match_clips_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (match_clips_bool_exp | null)} }) - /** fetch data from the table: "match_demo_sessions" */ - match_demo_sessions?: (match_demo_sessionsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_demo_sessions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_demo_sessions_order_by[] | null), - /** filter the rows returned */ - where?: (match_demo_sessions_bool_exp | null)} }) - /** fetch aggregated fields from the table: "match_demo_sessions" */ - match_demo_sessions_aggregate?: (match_demo_sessions_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_demo_sessions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_demo_sessions_order_by[] | null), - /** filter the rows returned */ - where?: (match_demo_sessions_bool_exp | null)} }) - /** fetch data from the table: "match_demo_sessions" using primary key columns */ - match_demo_sessions_by_pk?: (match_demo_sessionsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "match_demo_sessions" */ - match_demo_sessions_stream?: (match_demo_sessionsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (match_demo_sessions_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (match_demo_sessions_bool_exp | null)} }) - /** 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)} }) - /** fetch data from the table: "match_lineup_players" using primary key columns */ - match_lineup_players_by_pk?: (match_lineup_playersGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "match_lineup_players" */ - match_lineup_players_stream?: (match_lineup_playersGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (match_lineup_players_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (match_lineup_players_bool_exp | null)} }) - /** An array relationship */ - match_lineups?: (match_lineupsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_lineups_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_lineups_order_by[] | null), - /** filter the rows returned */ - where?: (match_lineups_bool_exp | null)} }) - /** An aggregate relationship */ - match_lineups_aggregate?: (match_lineups_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_lineups_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_lineups_order_by[] | null), - /** filter the rows returned */ - where?: (match_lineups_bool_exp | null)} }) - /** fetch data from the table: "match_lineups" using primary key columns */ - match_lineups_by_pk?: (match_lineupsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "match_lineups" */ - match_lineups_stream?: (match_lineupsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (match_lineups_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (match_lineups_bool_exp | null)} }) - /** fetch data from the table: "match_map_demos" */ - match_map_demos?: (match_map_demosGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_map_demos_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_demos_order_by[] | null), - /** filter the rows returned */ - where?: (match_map_demos_bool_exp | null)} }) - /** fetch aggregated fields from the table: "match_map_demos" */ - match_map_demos_aggregate?: (match_map_demos_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_map_demos_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_demos_order_by[] | null), - /** filter the rows returned */ - where?: (match_map_demos_bool_exp | null)} }) - /** fetch data from the table: "match_map_demos" using primary key columns */ - match_map_demos_by_pk?: (match_map_demosGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "match_map_demos" */ - match_map_demos_stream?: (match_map_demosGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (match_map_demos_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (match_map_demos_bool_exp | null)} }) - /** fetch data from the table: "match_map_rounds" */ - match_map_rounds?: (match_map_roundsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_map_rounds_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_rounds_order_by[] | null), - /** filter the rows returned */ - where?: (match_map_rounds_bool_exp | null)} }) - /** fetch aggregated fields from the table: "match_map_rounds" */ - match_map_rounds_aggregate?: (match_map_rounds_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_map_rounds_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_rounds_order_by[] | null), - /** filter the rows returned */ - where?: (match_map_rounds_bool_exp | null)} }) - /** fetch data from the table: "match_map_rounds" using primary key columns */ - match_map_rounds_by_pk?: (match_map_roundsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "match_map_rounds" */ - match_map_rounds_stream?: (match_map_roundsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (match_map_rounds_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (match_map_rounds_bool_exp | null)} }) - /** fetch data from the table: "match_map_veto_picks" */ - match_map_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)} }) - /** fetch aggregated fields from the table: "match_map_veto_picks" */ - match_map_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)} }) - /** fetch data from the table: "match_map_veto_picks" using primary key columns */ - match_map_veto_picks_by_pk?: (match_map_veto_picksGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "match_map_veto_picks" */ - match_map_veto_picks_stream?: (match_map_veto_picksGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (match_map_veto_picks_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (match_map_veto_picks_bool_exp | null)} }) - /** 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)} }) - /** 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 in a streaming manner: "match_maps" */ - match_maps_stream?: (match_mapsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (match_maps_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (match_maps_bool_exp | null)} }) - /** 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)} }) - /** fetch data from the table: "match_options" using primary key columns */ - match_options_by_pk?: (match_optionsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "match_options" */ - match_options_stream?: (match_optionsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (match_options_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (match_options_bool_exp | null)} }) - /** fetch data from the table: "match_region_veto_picks" */ - match_region_veto_picks?: (match_region_veto_picksGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_region_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_region_veto_picks_order_by[] | null), - /** filter the rows returned */ - where?: (match_region_veto_picks_bool_exp | null)} }) - /** fetch aggregated fields from the table: "match_region_veto_picks" */ - match_region_veto_picks_aggregate?: (match_region_veto_picks_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_region_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_region_veto_picks_order_by[] | null), - /** filter the rows returned */ - where?: (match_region_veto_picks_bool_exp | null)} }) - /** fetch data from the table: "match_region_veto_picks" using primary key columns */ - match_region_veto_picks_by_pk?: (match_region_veto_picksGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "match_region_veto_picks" */ - match_region_veto_picks_stream?: (match_region_veto_picksGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (match_region_veto_picks_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (match_region_veto_picks_bool_exp | null)} }) - /** fetch data from the table: "match_streams" */ - match_streams?: (match_streamsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_streams_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_streams_order_by[] | null), - /** filter the rows returned */ - where?: (match_streams_bool_exp | null)} }) - /** fetch aggregated fields from the table: "match_streams" */ - match_streams_aggregate?: (match_streams_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_streams_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_streams_order_by[] | null), - /** filter the rows returned */ - where?: (match_streams_bool_exp | null)} }) - /** fetch data from the table: "match_streams" using primary key columns */ - match_streams_by_pk?: (match_streamsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "match_streams" */ - match_streams_stream?: (match_streamsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (match_streams_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (match_streams_bool_exp | null)} }) - /** fetch data from the table: "match_type_cfgs" */ - match_type_cfgs?: (match_type_cfgsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_type_cfgs_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_type_cfgs_order_by[] | null), - /** filter the rows returned */ - where?: (match_type_cfgs_bool_exp | null)} }) - /** fetch aggregated fields from the table: "match_type_cfgs" */ - match_type_cfgs_aggregate?: (match_type_cfgs_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_type_cfgs_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_type_cfgs_order_by[] | null), - /** filter the rows returned */ - where?: (match_type_cfgs_bool_exp | null)} }) - /** fetch data from the table: "match_type_cfgs" using primary key columns */ - match_type_cfgs_by_pk?: (match_type_cfgsGenqlSelection & { __args: {type: e_game_cfg_types_enum} }) - /** fetch data from the table in a streaming manner: "match_type_cfgs" */ - match_type_cfgs_stream?: (match_type_cfgsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (match_type_cfgs_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (match_type_cfgs_bool_exp | null)} }) - /** 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)} }) - /** fetch data from the table: "matches" using primary key columns */ - matches_by_pk?: (matchesGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "matches" */ - matches_stream?: (matchesGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (matches_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (matches_bool_exp | null)} }) - /** fetch data from the table: "migration_hashes.hashes" */ - migration_hashes_hashes?: (migration_hashes_hashesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (migration_hashes_hashes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (migration_hashes_hashes_order_by[] | null), - /** filter the rows returned */ - where?: (migration_hashes_hashes_bool_exp | null)} }) - /** fetch aggregated fields from the table: "migration_hashes.hashes" */ - migration_hashes_hashes_aggregate?: (migration_hashes_hashes_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (migration_hashes_hashes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (migration_hashes_hashes_order_by[] | null), - /** filter the rows returned */ - where?: (migration_hashes_hashes_bool_exp | null)} }) - /** fetch data from the table: "migration_hashes.hashes" using primary key columns */ - migration_hashes_hashes_by_pk?: (migration_hashes_hashesGenqlSelection & { __args: {name: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "migration_hashes.hashes" */ - migration_hashes_hashes_stream?: (migration_hashes_hashesGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (migration_hashes_hashes_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (migration_hashes_hashes_bool_exp | null)} }) - /** fetch data from the table: "v_my_friends" */ - my_friends?: (my_friendsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (my_friends_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (my_friends_order_by[] | null), - /** filter the rows returned */ - where?: (my_friends_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_my_friends" */ - my_friends_aggregate?: (my_friends_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (my_friends_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (my_friends_order_by[] | null), - /** filter the rows returned */ - where?: (my_friends_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "v_my_friends" */ - my_friends_stream?: (my_friendsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (my_friends_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (my_friends_bool_exp | null)} }) - /** fetch data from the table: "news_articles" */ - news_articles?: (news_articlesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (news_articles_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (news_articles_order_by[] | null), - /** filter the rows returned */ - where?: (news_articles_bool_exp | null)} }) - /** fetch aggregated fields from the table: "news_articles" */ - news_articles_aggregate?: (news_articles_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (news_articles_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (news_articles_order_by[] | null), - /** filter the rows returned */ - where?: (news_articles_bool_exp | null)} }) - /** fetch data from the table: "news_articles" using primary key columns */ - news_articles_by_pk?: (news_articlesGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "news_articles" */ - news_articles_stream?: (news_articlesGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (news_articles_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (news_articles_bool_exp | null)} }) - /** fetch data from the table: "notification_preferences" */ - notification_preferences?: (notification_preferencesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (notification_preferences_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (notification_preferences_order_by[] | null), - /** filter the rows returned */ - where?: (notification_preferences_bool_exp | null)} }) - /** fetch aggregated fields from the table: "notification_preferences" */ - notification_preferences_aggregate?: (notification_preferences_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (notification_preferences_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (notification_preferences_order_by[] | null), - /** filter the rows returned */ - where?: (notification_preferences_bool_exp | null)} }) - /** fetch data from the table: "notification_preferences" using primary key columns */ - notification_preferences_by_pk?: (notification_preferencesGenqlSelection & { __args: {channel: Scalars['String'], key: Scalars['String'], steam_id: Scalars['bigint']} }) - /** fetch data from the table in a streaming manner: "notification_preferences" */ - notification_preferences_stream?: (notification_preferencesGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (notification_preferences_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (notification_preferences_bool_exp | null)} }) - /** An array relationship */ - notifications?: (notificationsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (notifications_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (notifications_order_by[] | null), - /** filter the rows returned */ - where?: (notifications_bool_exp | null)} }) - /** An aggregate relationship */ - notifications_aggregate?: (notifications_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (notifications_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (notifications_order_by[] | null), - /** filter the rows returned */ - where?: (notifications_bool_exp | null)} }) - /** fetch data from the table: "notifications" using primary key columns */ - notifications_by_pk?: (notificationsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "notifications" */ - notifications_stream?: (notificationsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (notifications_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (notifications_bool_exp | null)} }) - /** fetch data from the table: "pending_match_import_players" */ - pending_match_import_players?: (pending_match_import_playersGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (pending_match_import_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?: (pending_match_import_players_order_by[] | null), - /** filter the rows returned */ - where?: (pending_match_import_players_bool_exp | null)} }) - /** fetch aggregated fields from the table: "pending_match_import_players" */ - pending_match_import_players_aggregate?: (pending_match_import_players_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (pending_match_import_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?: (pending_match_import_players_order_by[] | null), - /** filter the rows returned */ - where?: (pending_match_import_players_bool_exp | null)} }) - /** fetch data from the table: "pending_match_import_players" using primary key columns */ - pending_match_import_players_by_pk?: (pending_match_import_playersGenqlSelection & { __args: {steam_id: Scalars['bigint'], valve_match_id: Scalars['numeric']} }) - /** fetch data from the table in a streaming manner: "pending_match_import_players" */ - pending_match_import_players_stream?: (pending_match_import_playersGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (pending_match_import_players_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (pending_match_import_players_bool_exp | null)} }) - /** fetch data from the table: "pending_match_imports" */ - pending_match_imports?: (pending_match_importsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (pending_match_imports_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (pending_match_imports_order_by[] | null), - /** filter the rows returned */ - where?: (pending_match_imports_bool_exp | null)} }) - /** fetch aggregated fields from the table: "pending_match_imports" */ - pending_match_imports_aggregate?: (pending_match_imports_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (pending_match_imports_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (pending_match_imports_order_by[] | null), - /** filter the rows returned */ - where?: (pending_match_imports_bool_exp | null)} }) - /** fetch data from the table: "pending_match_imports" using primary key columns */ - pending_match_imports_by_pk?: (pending_match_importsGenqlSelection & { __args: {valve_match_id: Scalars['numeric']} }) - /** fetch data from the table in a streaming manner: "pending_match_imports" */ - pending_match_imports_stream?: (pending_match_importsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (pending_match_imports_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (pending_match_imports_bool_exp | null)} }) - /** fetch data from the table: "player_aim_stats_demo" */ - player_aim_stats_demo?: (player_aim_stats_demoGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_aim_stats_demo_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_aim_stats_demo_order_by[] | null), - /** filter the rows returned */ - where?: (player_aim_stats_demo_bool_exp | null)} }) - /** fetch aggregated fields from the table: "player_aim_stats_demo" */ - player_aim_stats_demo_aggregate?: (player_aim_stats_demo_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_aim_stats_demo_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_aim_stats_demo_order_by[] | null), - /** filter the rows returned */ - where?: (player_aim_stats_demo_bool_exp | null)} }) - /** fetch data from the table: "player_aim_stats_demo" using primary key columns */ - player_aim_stats_demo_by_pk?: (player_aim_stats_demoGenqlSelection & { __args: {attacker_steam_id: Scalars['bigint'], match_map_id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "player_aim_stats_demo" */ - player_aim_stats_demo_stream?: (player_aim_stats_demoGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (player_aim_stats_demo_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (player_aim_stats_demo_bool_exp | null)} }) - /** fetch data from the table: "player_aim_weapon_stats" */ - player_aim_weapon_stats?: (player_aim_weapon_statsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_aim_weapon_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?: (player_aim_weapon_stats_order_by[] | null), - /** filter the rows returned */ - where?: (player_aim_weapon_stats_bool_exp | null)} }) - /** fetch aggregated fields from the table: "player_aim_weapon_stats" */ - player_aim_weapon_stats_aggregate?: (player_aim_weapon_stats_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_aim_weapon_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?: (player_aim_weapon_stats_order_by[] | null), - /** filter the rows returned */ - where?: (player_aim_weapon_stats_bool_exp | null)} }) - /** fetch data from the table: "player_aim_weapon_stats" using primary key columns */ - player_aim_weapon_stats_by_pk?: (player_aim_weapon_statsGenqlSelection & { __args: {match_map_id: Scalars['uuid'], steam_id: Scalars['bigint'], weapon_class: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "player_aim_weapon_stats" */ - player_aim_weapon_stats_stream?: (player_aim_weapon_statsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (player_aim_weapon_stats_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (player_aim_weapon_stats_bool_exp | null)} }) - /** An array relationship */ - player_assists?: (player_assistsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_assists_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_assists_order_by[] | null), - /** filter the rows returned */ - where?: (player_assists_bool_exp | null)} }) - /** An aggregate relationship */ - player_assists_aggregate?: (player_assists_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_assists_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_assists_order_by[] | null), - /** filter the rows returned */ - where?: (player_assists_bool_exp | null)} }) - /** fetch data from the table: "player_assists" using primary key columns */ - player_assists_by_pk?: (player_assistsGenqlSelection & { __args: {attacked_steam_id: Scalars['bigint'], attacker_steam_id: Scalars['bigint'], match_map_id: Scalars['uuid'], time: Scalars['timestamptz']} }) - /** fetch data from the table in a streaming manner: "player_assists" */ - player_assists_stream?: (player_assistsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (player_assists_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (player_assists_bool_exp | null)} }) - /** fetch data from the table: "player_career_stats_v" */ - player_career_stats_v?: (player_career_stats_vGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_career_stats_v_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_career_stats_v_order_by[] | null), - /** filter the rows returned */ - where?: (player_career_stats_v_bool_exp | null)} }) - /** fetch aggregated fields from the table: "player_career_stats_v" */ - player_career_stats_v_aggregate?: (player_career_stats_v_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_career_stats_v_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_career_stats_v_order_by[] | null), - /** filter the rows returned */ - where?: (player_career_stats_v_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "player_career_stats_v" */ - player_career_stats_v_stream?: (player_career_stats_vGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (player_career_stats_v_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (player_career_stats_v_bool_exp | null)} }) - /** An array relationship */ - player_damages?: (player_damagesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_damages_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_damages_order_by[] | null), - /** filter the rows returned */ - where?: (player_damages_bool_exp | null)} }) - /** An aggregate relationship */ - player_damages_aggregate?: (player_damages_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_damages_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_damages_order_by[] | null), - /** filter the rows returned */ - where?: (player_damages_bool_exp | null)} }) - /** fetch data from the table: "player_damages" using primary key columns */ - player_damages_by_pk?: (player_damagesGenqlSelection & { __args: {id: Scalars['uuid'], match_map_id: Scalars['uuid'], time: Scalars['timestamptz']} }) - /** fetch data from the table in a streaming manner: "player_damages" */ - player_damages_stream?: (player_damagesGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (player_damages_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (player_damages_bool_exp | null)} }) - /** fetch data from the table: "player_elo" */ - player_elo?: (player_eloGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_elo_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_elo_order_by[] | null), - /** filter the rows returned */ - where?: (player_elo_bool_exp | null)} }) - /** fetch aggregated fields from the table: "player_elo" */ - player_elo_aggregate?: (player_elo_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_elo_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_elo_order_by[] | null), - /** filter the rows returned */ - where?: (player_elo_bool_exp | null)} }) - /** fetch data from the table: "player_elo" using primary key columns */ - player_elo_by_pk?: (player_eloGenqlSelection & { __args: {match_id: Scalars['uuid'], steam_id: Scalars['bigint'], type: e_match_types_enum} }) - /** fetch data from the table in a streaming manner: "player_elo" */ - player_elo_stream?: (player_eloGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (player_elo_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (player_elo_bool_exp | null)} }) - /** fetch data from the table: "player_faceit_rank_history" */ - player_faceit_rank_history?: (player_faceit_rank_historyGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_faceit_rank_history_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_faceit_rank_history_order_by[] | null), - /** filter the rows returned */ - where?: (player_faceit_rank_history_bool_exp | null)} }) - /** fetch aggregated fields from the table: "player_faceit_rank_history" */ - player_faceit_rank_history_aggregate?: (player_faceit_rank_history_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_faceit_rank_history_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_faceit_rank_history_order_by[] | null), - /** filter the rows returned */ - where?: (player_faceit_rank_history_bool_exp | null)} }) - /** fetch data from the table: "player_faceit_rank_history" using primary key columns */ - player_faceit_rank_history_by_pk?: (player_faceit_rank_historyGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "player_faceit_rank_history" */ - player_faceit_rank_history_stream?: (player_faceit_rank_historyGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (player_faceit_rank_history_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (player_faceit_rank_history_bool_exp | null)} }) - /** An array relationship */ - player_flashes?: (player_flashesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_flashes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_flashes_order_by[] | null), - /** filter the rows returned */ - where?: (player_flashes_bool_exp | null)} }) - /** An aggregate relationship */ - player_flashes_aggregate?: (player_flashes_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_flashes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_flashes_order_by[] | null), - /** filter the rows returned */ - where?: (player_flashes_bool_exp | null)} }) - /** fetch data from the table: "player_flashes" using primary key columns */ - player_flashes_by_pk?: (player_flashesGenqlSelection & { __args: {attacked_steam_id: Scalars['bigint'], attacker_steam_id: Scalars['bigint'], match_map_id: Scalars['uuid'], time: Scalars['timestamptz']} }) - /** fetch data from the table in a streaming manner: "player_flashes" */ - player_flashes_stream?: (player_flashesGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (player_flashes_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (player_flashes_bool_exp | null)} }) - /** An array relationship */ - player_kills?: (player_killsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_kills_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_kills_order_by[] | null), - /** filter the rows returned */ - where?: (player_kills_bool_exp | null)} }) - /** An aggregate relationship */ - player_kills_aggregate?: (player_kills_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_kills_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_kills_order_by[] | null), - /** filter the rows returned */ - where?: (player_kills_bool_exp | null)} }) - /** fetch data from the table: "player_kills" using primary key columns */ - player_kills_by_pk?: (player_killsGenqlSelection & { __args: {attacked_steam_id: Scalars['bigint'], attacker_steam_id: Scalars['bigint'], match_map_id: Scalars['uuid'], time: Scalars['timestamptz']} }) - /** fetch data from the table: "player_kills_by_weapon" */ - player_kills_by_weapon?: (player_kills_by_weaponGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_kills_by_weapon_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_kills_by_weapon_order_by[] | null), - /** filter the rows returned */ - where?: (player_kills_by_weapon_bool_exp | null)} }) - /** fetch aggregated fields from the table: "player_kills_by_weapon" */ - player_kills_by_weapon_aggregate?: (player_kills_by_weapon_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_kills_by_weapon_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_kills_by_weapon_order_by[] | null), - /** filter the rows returned */ - where?: (player_kills_by_weapon_bool_exp | null)} }) - /** fetch data from the table: "player_kills_by_weapon" using primary key columns */ - player_kills_by_weapon_by_pk?: (player_kills_by_weaponGenqlSelection & { __args: {player_steam_id: Scalars['bigint'], with: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "player_kills_by_weapon" */ - player_kills_by_weapon_stream?: (player_kills_by_weaponGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (player_kills_by_weapon_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (player_kills_by_weapon_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "player_kills" */ - player_kills_stream?: (player_killsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (player_kills_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (player_kills_bool_exp | null)} }) - /** fetch data from the table: "player_leaderboard_rank" */ - player_leaderboard_rank?: (player_leaderboard_rankGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_leaderboard_rank_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_leaderboard_rank_order_by[] | null), - /** filter the rows returned */ - where?: (player_leaderboard_rank_bool_exp | null)} }) - /** fetch aggregated fields from the table: "player_leaderboard_rank" */ - player_leaderboard_rank_aggregate?: (player_leaderboard_rank_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_leaderboard_rank_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_leaderboard_rank_order_by[] | null), - /** filter the rows returned */ - where?: (player_leaderboard_rank_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "player_leaderboard_rank" */ - player_leaderboard_rank_stream?: (player_leaderboard_rankGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (player_leaderboard_rank_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (player_leaderboard_rank_bool_exp | null)} }) - /** fetch data from the table: "player_match_map_stats" */ - player_match_map_stats?: (player_match_map_statsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_match_map_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?: (player_match_map_stats_order_by[] | null), - /** filter the rows returned */ - where?: (player_match_map_stats_bool_exp | null)} }) - /** fetch aggregated fields from the table: "player_match_map_stats" */ - player_match_map_stats_aggregate?: (player_match_map_stats_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_match_map_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?: (player_match_map_stats_order_by[] | null), - /** filter the rows returned */ - where?: (player_match_map_stats_bool_exp | null)} }) - /** fetch data from the table: "player_match_map_stats" using primary key columns */ - player_match_map_stats_by_pk?: (player_match_map_statsGenqlSelection & { __args: {match_map_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) - /** fetch data from the table in a streaming manner: "player_match_map_stats" */ - player_match_map_stats_stream?: (player_match_map_statsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (player_match_map_stats_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (player_match_map_stats_bool_exp | null)} }) - /** fetch data from the table: "player_match_performance_v" */ - player_match_performance_v?: (player_match_performance_vGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_match_performance_v_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_performance_v_order_by[] | null), - /** filter the rows returned */ - where?: (player_match_performance_v_bool_exp | null)} }) - /** fetch aggregated fields from the table: "player_match_performance_v" */ - player_match_performance_v_aggregate?: (player_match_performance_v_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_match_performance_v_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_performance_v_order_by[] | null), - /** filter the rows returned */ - where?: (player_match_performance_v_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "player_match_performance_v" */ - player_match_performance_v_stream?: (player_match_performance_vGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (player_match_performance_v_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (player_match_performance_v_bool_exp | null)} }) - /** fetch data from the table: "player_match_stats_v" */ - player_match_stats_v?: (player_match_stats_vGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_match_stats_v_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_stats_v_order_by[] | null), - /** filter the rows returned */ - where?: (player_match_stats_v_bool_exp | null)} }) - /** fetch aggregated fields from the table: "player_match_stats_v" */ - player_match_stats_v_aggregate?: (player_match_stats_v_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_match_stats_v_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_stats_v_order_by[] | null), - /** filter the rows returned */ - where?: (player_match_stats_v_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "player_match_stats_v" */ - player_match_stats_v_stream?: (player_match_stats_vGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (player_match_stats_v_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (player_match_stats_v_bool_exp | null)} }) - /** 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)} }) - /** fetch data from the table: "player_objectives" using primary key columns */ - player_objectives_by_pk?: (player_objectivesGenqlSelection & { __args: {match_map_id: Scalars['uuid'], player_steam_id: Scalars['bigint'], time: Scalars['timestamptz']} }) - /** fetch data from the table in a streaming manner: "player_objectives" */ - player_objectives_stream?: (player_objectivesGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (player_objectives_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (player_objectives_bool_exp | null)} }) - /** fetch data from the table: "player_performance_v" */ - player_performance_v?: (player_performance_vGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_performance_v_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_performance_v_order_by[] | null), - /** filter the rows returned */ - where?: (player_performance_v_bool_exp | null)} }) - /** fetch aggregated fields from the table: "player_performance_v" */ - player_performance_v_aggregate?: (player_performance_v_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_performance_v_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_performance_v_order_by[] | null), - /** filter the rows returned */ - where?: (player_performance_v_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "player_performance_v" */ - player_performance_v_stream?: (player_performance_vGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (player_performance_v_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (player_performance_v_bool_exp | null)} }) - /** fetch data from the table: "player_premier_rank_history" */ - player_premier_rank_history?: (player_premier_rank_historyGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_premier_rank_history_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_premier_rank_history_order_by[] | null), - /** filter the rows returned */ - where?: (player_premier_rank_history_bool_exp | null)} }) - /** fetch aggregated fields from the table: "player_premier_rank_history" */ - player_premier_rank_history_aggregate?: (player_premier_rank_history_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_premier_rank_history_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_premier_rank_history_order_by[] | null), - /** filter the rows returned */ - where?: (player_premier_rank_history_bool_exp | null)} }) - /** fetch data from the table: "player_premier_rank_history" using primary key columns */ - player_premier_rank_history_by_pk?: (player_premier_rank_historyGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "player_premier_rank_history" */ - player_premier_rank_history_stream?: (player_premier_rank_historyGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (player_premier_rank_history_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (player_premier_rank_history_bool_exp | null)} }) - /** fetch data from the table: "player_sanctions" */ - player_sanctions?: (player_sanctionsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_sanctions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_sanctions_order_by[] | null), - /** filter the rows returned */ - where?: (player_sanctions_bool_exp | null)} }) - /** fetch aggregated fields from the table: "player_sanctions" */ - player_sanctions_aggregate?: (player_sanctions_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_sanctions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_sanctions_order_by[] | null), - /** filter the rows returned */ - where?: (player_sanctions_bool_exp | null)} }) - /** fetch data from the table: "player_sanctions" using primary key columns */ - player_sanctions_by_pk?: (player_sanctionsGenqlSelection & { __args: {created_at: Scalars['timestamptz'], id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "player_sanctions" */ - player_sanctions_stream?: (player_sanctionsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (player_sanctions_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (player_sanctions_bool_exp | null)} }) - /** An array relationship */ - player_season_stats?: (player_season_statsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_season_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?: (player_season_stats_order_by[] | null), - /** filter the rows returned */ - where?: (player_season_stats_bool_exp | null)} }) - /** An aggregate relationship */ - player_season_stats_aggregate?: (player_season_stats_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_season_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?: (player_season_stats_order_by[] | null), - /** filter the rows returned */ - where?: (player_season_stats_bool_exp | null)} }) - /** fetch data from the table: "player_season_stats" using primary key columns */ - player_season_stats_by_pk?: (player_season_statsGenqlSelection & { __args: {player_steam_id: Scalars['bigint'], season_id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "player_season_stats" */ - player_season_stats_stream?: (player_season_statsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (player_season_stats_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (player_season_stats_bool_exp | null)} }) - /** fetch data from the table: "player_stats" */ - player_stats?: (player_statsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (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?: (player_stats_order_by[] | null), - /** filter the rows returned */ - where?: (player_stats_bool_exp | null)} }) - /** fetch aggregated fields from the table: "player_stats" */ - player_stats_aggregate?: (player_stats_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (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?: (player_stats_order_by[] | null), - /** filter the rows returned */ - where?: (player_stats_bool_exp | null)} }) - /** fetch data from the table: "player_stats" using primary key columns */ - player_stats_by_pk?: (player_statsGenqlSelection & { __args: {player_steam_id: Scalars['bigint']} }) - /** fetch data from the table in a streaming manner: "player_stats" */ - player_stats_stream?: (player_statsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (player_stats_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (player_stats_bool_exp | null)} }) - /** fetch data from the table: "player_steam_bot_friend" */ - player_steam_bot_friend?: (player_steam_bot_friendGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_steam_bot_friend_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_steam_bot_friend_order_by[] | null), - /** filter the rows returned */ - where?: (player_steam_bot_friend_bool_exp | null)} }) - /** fetch aggregated fields from the table: "player_steam_bot_friend" */ - player_steam_bot_friend_aggregate?: (player_steam_bot_friend_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_steam_bot_friend_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_steam_bot_friend_order_by[] | null), - /** filter the rows returned */ - where?: (player_steam_bot_friend_bool_exp | null)} }) - /** fetch data from the table: "player_steam_bot_friend" using primary key columns */ - player_steam_bot_friend_by_pk?: (player_steam_bot_friendGenqlSelection & { __args: {steam_id: Scalars['bigint']} }) - /** fetch data from the table in a streaming manner: "player_steam_bot_friend" */ - player_steam_bot_friend_stream?: (player_steam_bot_friendGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (player_steam_bot_friend_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (player_steam_bot_friend_bool_exp | null)} }) - /** fetch data from the table: "player_steam_match_auth" */ - player_steam_match_auth?: (player_steam_match_authGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_steam_match_auth_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_steam_match_auth_order_by[] | null), - /** filter the rows returned */ - where?: (player_steam_match_auth_bool_exp | null)} }) - /** fetch aggregated fields from the table: "player_steam_match_auth" */ - player_steam_match_auth_aggregate?: (player_steam_match_auth_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_steam_match_auth_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_steam_match_auth_order_by[] | null), - /** filter the rows returned */ - where?: (player_steam_match_auth_bool_exp | null)} }) - /** fetch data from the table: "player_steam_match_auth" using primary key columns */ - player_steam_match_auth_by_pk?: (player_steam_match_authGenqlSelection & { __args: {steam_id: Scalars['bigint']} }) - /** fetch data from the table in a streaming manner: "player_steam_match_auth" */ - player_steam_match_auth_stream?: (player_steam_match_authGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (player_steam_match_auth_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (player_steam_match_auth_bool_exp | null)} }) - /** fetch data from the table: "player_unused_utility" */ - player_unused_utility?: (player_unused_utilityGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_unused_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_unused_utility_order_by[] | null), - /** filter the rows returned */ - where?: (player_unused_utility_bool_exp | null)} }) - /** fetch aggregated fields from the table: "player_unused_utility" */ - player_unused_utility_aggregate?: (player_unused_utility_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_unused_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_unused_utility_order_by[] | null), - /** filter the rows returned */ - where?: (player_unused_utility_bool_exp | null)} }) - /** fetch data from the table: "player_unused_utility" using primary key columns */ - player_unused_utility_by_pk?: (player_unused_utilityGenqlSelection & { __args: {match_map_id: Scalars['uuid'], player_steam_id: Scalars['bigint']} }) - /** fetch data from the table in a streaming manner: "player_unused_utility" */ - player_unused_utility_stream?: (player_unused_utilityGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (player_unused_utility_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (player_unused_utility_bool_exp | null)} }) - /** An array relationship */ - player_utility?: (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_utility_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)} }) - /** fetch data from the table: "player_utility" using primary key columns */ - player_utility_by_pk?: (player_utilityGenqlSelection & { __args: {attacker_steam_id: Scalars['bigint'], match_map_id: Scalars['uuid'], time: Scalars['timestamptz']} }) - /** fetch data from the table in a streaming manner: "player_utility" */ - player_utility_stream?: (player_utilityGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (player_utility_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (player_utility_bool_exp | null)} }) - /** fetch data from the table: "player_weapon_stats_v" */ - player_weapon_stats_v?: (player_weapon_stats_vGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_weapon_stats_v_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_weapon_stats_v_order_by[] | null), - /** filter the rows returned */ - where?: (player_weapon_stats_v_bool_exp | null)} }) - /** fetch aggregated fields from the table: "player_weapon_stats_v" */ - player_weapon_stats_v_aggregate?: (player_weapon_stats_v_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_weapon_stats_v_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_weapon_stats_v_order_by[] | null), - /** filter the rows returned */ - where?: (player_weapon_stats_v_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "player_weapon_stats_v" */ - player_weapon_stats_v_stream?: (player_weapon_stats_vGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (player_weapon_stats_v_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (player_weapon_stats_v_bool_exp | null)} }) - /** fetch data from the table: "players" */ - players?: (playersGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (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?: (players_order_by[] | null), - /** filter the rows returned */ - where?: (players_bool_exp | null)} }) - /** fetch aggregated fields from the table: "players" */ - players_aggregate?: (players_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (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?: (players_order_by[] | null), - /** filter the rows returned */ - where?: (players_bool_exp | null)} }) - /** fetch data from the table: "players" using primary key columns */ - players_by_pk?: (playersGenqlSelection & { __args: {steam_id: Scalars['bigint']} }) - /** fetch data from the table in a streaming manner: "players" */ - players_stream?: (playersGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (players_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (players_bool_exp | null)} }) - /** fetch data from the table: "plugin_versions" */ - plugin_versions?: (plugin_versionsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (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?: (plugin_versions_order_by[] | null), - /** filter the rows returned */ - where?: (plugin_versions_bool_exp | null)} }) - /** fetch aggregated fields from the table: "plugin_versions" */ - plugin_versions_aggregate?: (plugin_versions_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (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?: (plugin_versions_order_by[] | null), - /** filter the rows returned */ - where?: (plugin_versions_bool_exp | null)} }) - /** fetch data from the table: "plugin_versions" using primary key columns */ - plugin_versions_by_pk?: (plugin_versionsGenqlSelection & { __args: {runtime: e_plugin_runtimes_enum, version: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "plugin_versions" */ - plugin_versions_stream?: (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: (plugin_versions_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (plugin_versions_bool_exp | null)} }) - /** fetch data from the table: "push_subscriptions" */ - push_subscriptions?: (push_subscriptionsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (push_subscriptions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (push_subscriptions_order_by[] | null), - /** filter the rows returned */ - where?: (push_subscriptions_bool_exp | null)} }) - /** fetch aggregated fields from the table: "push_subscriptions" */ - push_subscriptions_aggregate?: (push_subscriptions_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (push_subscriptions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (push_subscriptions_order_by[] | null), - /** filter the rows returned */ - where?: (push_subscriptions_bool_exp | null)} }) - /** fetch data from the table: "push_subscriptions" using primary key columns */ - push_subscriptions_by_pk?: (push_subscriptionsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "push_subscriptions" */ - push_subscriptions_stream?: (push_subscriptionsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (push_subscriptions_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (push_subscriptions_bool_exp | null)} }) - /** fetch data from the table: "v_role_permissions" */ - role_permissions?: (role_permissionsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (role_permissions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (role_permissions_order_by[] | null), - /** filter the rows returned */ - where?: (role_permissions_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_role_permissions" */ - role_permissions_aggregate?: (role_permissions_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (role_permissions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (role_permissions_order_by[] | null), - /** filter the rows returned */ - where?: (role_permissions_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "v_role_permissions" */ - role_permissions_stream?: (role_permissionsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (role_permissions_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (role_permissions_bool_exp | null)} }) - /** fetch data from the table: "seasons" */ - seasons?: (seasonsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (seasons_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (seasons_order_by[] | null), - /** filter the rows returned */ - where?: (seasons_bool_exp | null)} }) - /** fetch aggregated fields from the table: "seasons" */ - seasons_aggregate?: (seasons_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (seasons_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (seasons_order_by[] | null), - /** filter the rows returned */ - where?: (seasons_bool_exp | null)} }) - /** fetch data from the table: "seasons" using primary key columns */ - seasons_by_pk?: (seasonsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "seasons" */ - seasons_stream?: (seasonsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (seasons_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (seasons_bool_exp | null)} }) - /** fetch data from the table: "server_regions" */ - server_regions?: (server_regionsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (server_regions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (server_regions_order_by[] | null), - /** filter the rows returned */ - where?: (server_regions_bool_exp | null)} }) - /** fetch aggregated fields from the table: "server_regions" */ - server_regions_aggregate?: (server_regions_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (server_regions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (server_regions_order_by[] | null), - /** filter the rows returned */ - where?: (server_regions_bool_exp | null)} }) - /** fetch data from the table: "server_regions" using primary key columns */ - server_regions_by_pk?: (server_regionsGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "server_regions" */ - server_regions_stream?: (server_regionsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (server_regions_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (server_regions_bool_exp | null)} }) - /** An array relationship */ - servers?: (serversGenqlSelection & { __args?: { - /** distinct select on columns */ - 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?: (servers_order_by[] | null), - /** filter the rows returned */ - where?: (servers_bool_exp | null)} }) - /** An aggregate relationship */ - servers_aggregate?: (servers_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - 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?: (servers_order_by[] | null), - /** filter the rows returned */ - where?: (servers_bool_exp | null)} }) - /** fetch data from the table: "servers" using primary key columns */ - servers_by_pk?: (serversGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "servers" */ - servers_stream?: (serversGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (servers_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (servers_bool_exp | null)} }) - /** fetch data from the table: "settings" */ - settings?: (settingsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (settings_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (settings_order_by[] | null), - /** filter the rows returned */ - where?: (settings_bool_exp | null)} }) - /** fetch aggregated fields from the table: "settings" */ - settings_aggregate?: (settings_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (settings_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (settings_order_by[] | null), - /** filter the rows returned */ - where?: (settings_bool_exp | null)} }) - /** fetch data from the table: "settings" using primary key columns */ - settings_by_pk?: (settingsGenqlSelection & { __args: {name: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "settings" */ - settings_stream?: (settingsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (settings_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (settings_bool_exp | null)} }) - /** fetch data from the table: "steam_account_claims" */ - steam_account_claims?: (steam_account_claimsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (steam_account_claims_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (steam_account_claims_order_by[] | null), - /** filter the rows returned */ - where?: (steam_account_claims_bool_exp | null)} }) - /** fetch aggregated fields from the table: "steam_account_claims" */ - steam_account_claims_aggregate?: (steam_account_claims_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (steam_account_claims_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (steam_account_claims_order_by[] | null), - /** filter the rows returned */ - where?: (steam_account_claims_bool_exp | null)} }) - /** fetch data from the table: "steam_account_claims" using primary key columns */ - steam_account_claims_by_pk?: (steam_account_claimsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "steam_account_claims" */ - steam_account_claims_stream?: (steam_account_claimsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (steam_account_claims_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (steam_account_claims_bool_exp | null)} }) - /** fetch data from the table: "steam_accounts" */ - steam_accounts?: (steam_accountsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (steam_accounts_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (steam_accounts_order_by[] | null), - /** filter the rows returned */ - where?: (steam_accounts_bool_exp | null)} }) - /** fetch aggregated fields from the table: "steam_accounts" */ - steam_accounts_aggregate?: (steam_accounts_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (steam_accounts_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (steam_accounts_order_by[] | null), - /** filter the rows returned */ - where?: (steam_accounts_bool_exp | null)} }) - /** fetch data from the table: "steam_accounts" using primary key columns */ - steam_accounts_by_pk?: (steam_accountsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "steam_accounts" */ - steam_accounts_stream?: (steam_accountsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (steam_accounts_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (steam_accounts_bool_exp | null)} }) - /** fetch data from the table: "system_alerts" */ - system_alerts?: (system_alertsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (system_alerts_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (system_alerts_order_by[] | null), - /** filter the rows returned */ - where?: (system_alerts_bool_exp | null)} }) - /** fetch aggregated fields from the table: "system_alerts" */ - system_alerts_aggregate?: (system_alerts_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (system_alerts_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (system_alerts_order_by[] | null), - /** filter the rows returned */ - where?: (system_alerts_bool_exp | null)} }) - /** fetch data from the table: "system_alerts" using primary key columns */ - system_alerts_by_pk?: (system_alertsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "system_alerts" */ - system_alerts_stream?: (system_alertsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (system_alerts_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (system_alerts_bool_exp | null)} }) - /** An array relationship */ - team_invites?: (team_invitesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (team_invites_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_invites_order_by[] | null), - /** filter the rows returned */ - where?: (team_invites_bool_exp | null)} }) - /** An aggregate relationship */ - team_invites_aggregate?: (team_invites_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (team_invites_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_invites_order_by[] | null), - /** filter the rows returned */ - where?: (team_invites_bool_exp | null)} }) - /** fetch data from the table: "team_invites" using primary key columns */ - team_invites_by_pk?: (team_invitesGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "team_invites" */ - team_invites_stream?: (team_invitesGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (team_invites_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (team_invites_bool_exp | null)} }) - /** fetch data from the table: "team_roster" */ - team_roster?: (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)} }) - /** fetch aggregated fields from the table: "team_roster" */ - team_roster_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)} }) - /** fetch data from the table: "team_roster" using primary key columns */ - team_roster_by_pk?: (team_rosterGenqlSelection & { __args: {player_steam_id: Scalars['bigint'], team_id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "team_roster" */ - team_roster_stream?: (team_rosterGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (team_roster_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (team_roster_bool_exp | null)} }) - /** fetch data from the table: "team_scrim_alerts" */ - team_scrim_alerts?: (team_scrim_alertsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (team_scrim_alerts_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_alerts_order_by[] | null), - /** filter the rows returned */ - where?: (team_scrim_alerts_bool_exp | null)} }) - /** fetch aggregated fields from the table: "team_scrim_alerts" */ - team_scrim_alerts_aggregate?: (team_scrim_alerts_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (team_scrim_alerts_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_alerts_order_by[] | null), - /** filter the rows returned */ - where?: (team_scrim_alerts_bool_exp | null)} }) - /** fetch data from the table: "team_scrim_alerts" using primary key columns */ - team_scrim_alerts_by_pk?: (team_scrim_alertsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "team_scrim_alerts" */ - team_scrim_alerts_stream?: (team_scrim_alertsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (team_scrim_alerts_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (team_scrim_alerts_bool_exp | null)} }) - /** fetch data from the table: "team_scrim_availability" */ - team_scrim_availability?: (team_scrim_availabilityGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (team_scrim_availability_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_availability_order_by[] | null), - /** filter the rows returned */ - where?: (team_scrim_availability_bool_exp | null)} }) - /** fetch aggregated fields from the table: "team_scrim_availability" */ - team_scrim_availability_aggregate?: (team_scrim_availability_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (team_scrim_availability_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_availability_order_by[] | null), - /** filter the rows returned */ - where?: (team_scrim_availability_bool_exp | null)} }) - /** fetch data from the table: "team_scrim_availability" using primary key columns */ - team_scrim_availability_by_pk?: (team_scrim_availabilityGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "team_scrim_availability" */ - team_scrim_availability_stream?: (team_scrim_availabilityGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (team_scrim_availability_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (team_scrim_availability_bool_exp | null)} }) - /** fetch data from the table: "team_scrim_request_proposals" */ - team_scrim_request_proposals?: (team_scrim_request_proposalsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (team_scrim_request_proposals_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_request_proposals_order_by[] | null), - /** filter the rows returned */ - where?: (team_scrim_request_proposals_bool_exp | null)} }) - /** fetch aggregated fields from the table: "team_scrim_request_proposals" */ - team_scrim_request_proposals_aggregate?: (team_scrim_request_proposals_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (team_scrim_request_proposals_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_request_proposals_order_by[] | null), - /** filter the rows returned */ - where?: (team_scrim_request_proposals_bool_exp | null)} }) - /** fetch data from the table: "team_scrim_request_proposals" using primary key columns */ - team_scrim_request_proposals_by_pk?: (team_scrim_request_proposalsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "team_scrim_request_proposals" */ - team_scrim_request_proposals_stream?: (team_scrim_request_proposalsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (team_scrim_request_proposals_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (team_scrim_request_proposals_bool_exp | null)} }) - /** fetch data from the table: "team_scrim_requests" */ - team_scrim_requests?: (team_scrim_requestsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (team_scrim_requests_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (team_scrim_requests_order_by[] | null), - /** filter the rows returned */ - where?: (team_scrim_requests_bool_exp | null)} }) - /** fetch aggregated fields from the table: "team_scrim_requests" */ - team_scrim_requests_aggregate?: (team_scrim_requests_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (team_scrim_requests_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (team_scrim_requests_order_by[] | null), - /** filter the rows returned */ - where?: (team_scrim_requests_bool_exp | null)} }) - /** fetch data from the table: "team_scrim_requests" using primary key columns */ - team_scrim_requests_by_pk?: (team_scrim_requestsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "team_scrim_requests" */ - team_scrim_requests_stream?: (team_scrim_requestsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (team_scrim_requests_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (team_scrim_requests_bool_exp | null)} }) - /** fetch data from the table: "team_scrim_settings" */ - team_scrim_settings?: (team_scrim_settingsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (team_scrim_settings_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_settings_order_by[] | null), - /** filter the rows returned */ - where?: (team_scrim_settings_bool_exp | null)} }) - /** fetch aggregated fields from the table: "team_scrim_settings" */ - team_scrim_settings_aggregate?: (team_scrim_settings_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (team_scrim_settings_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_settings_order_by[] | null), - /** filter the rows returned */ - where?: (team_scrim_settings_bool_exp | null)} }) - /** fetch data from the table: "team_scrim_settings" using primary key columns */ - team_scrim_settings_by_pk?: (team_scrim_settingsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "team_scrim_settings" */ - team_scrim_settings_stream?: (team_scrim_settingsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (team_scrim_settings_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (team_scrim_settings_bool_exp | null)} }) - /** fetch data from the table: "team_suggestions" */ - team_suggestions?: (team_suggestionsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (team_suggestions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_suggestions_order_by[] | null), - /** filter the rows returned */ - where?: (team_suggestions_bool_exp | null)} }) - /** fetch aggregated fields from the table: "team_suggestions" */ - team_suggestions_aggregate?: (team_suggestions_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (team_suggestions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_suggestions_order_by[] | null), - /** filter the rows returned */ - where?: (team_suggestions_bool_exp | null)} }) - /** fetch data from the table: "team_suggestions" using primary key columns */ - team_suggestions_by_pk?: (team_suggestionsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "team_suggestions" */ - team_suggestions_stream?: (team_suggestionsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (team_suggestions_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (team_suggestions_bool_exp | null)} }) - /** fetch data from the table: "teams" */ - teams?: (teamsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (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?: (teams_order_by[] | null), - /** filter the rows returned */ - where?: (teams_bool_exp | null)} }) - /** fetch aggregated fields from the table: "teams" */ - teams_aggregate?: (teams_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (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?: (teams_order_by[] | null), - /** filter the rows returned */ - where?: (teams_bool_exp | null)} }) - /** fetch data from the table: "teams" using primary key columns */ - teams_by_pk?: (teamsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "teams" */ - teams_stream?: (teamsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (teams_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (teams_bool_exp | null)} }) - /** fetch data from the table: "tournament_awards" */ - tournament_awards?: (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)} }) - /** fetch aggregated fields from the table: "tournament_awards" */ - tournament_awards_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)} }) - /** fetch data from the table: "tournament_awards" using primary key columns */ - tournament_awards_by_pk?: (tournament_awardsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "tournament_awards" */ - tournament_awards_stream?: (tournament_awardsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (tournament_awards_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (tournament_awards_bool_exp | null)} }) - /** An array relationship */ - tournament_brackets?: (tournament_bracketsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_brackets_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_brackets_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_brackets_bool_exp | null)} }) - /** An aggregate relationship */ - tournament_brackets_aggregate?: (tournament_brackets_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_brackets_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_brackets_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_brackets_bool_exp | null)} }) - /** fetch data from the table: "tournament_brackets" using primary key columns */ - tournament_brackets_by_pk?: (tournament_bracketsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "tournament_brackets" */ - tournament_brackets_stream?: (tournament_bracketsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (tournament_brackets_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (tournament_brackets_bool_exp | null)} }) - /** An array relationship */ - tournament_categories?: (tournament_categoriesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_categories_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (tournament_categories_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_categories_bool_exp | null)} }) - /** An aggregate relationship */ - tournament_categories_aggregate?: (tournament_categories_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_categories_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (tournament_categories_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_categories_bool_exp | null)} }) - /** fetch data from the table: "tournament_categories" using primary key columns */ - tournament_categories_by_pk?: (tournament_categoriesGenqlSelection & { __args: {category: e_tournament_categories_enum, tournament_id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "tournament_categories" */ - tournament_categories_stream?: (tournament_categoriesGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (tournament_categories_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (tournament_categories_bool_exp | null)} }) - /** An array relationship */ - tournament_free_agents?: (tournament_free_agentsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_free_agents_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_free_agents_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_free_agents_bool_exp | null)} }) - /** An aggregate relationship */ - tournament_free_agents_aggregate?: (tournament_free_agents_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_free_agents_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_free_agents_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_free_agents_bool_exp | null)} }) - /** fetch data from the table: "tournament_free_agents" using primary key columns */ - tournament_free_agents_by_pk?: (tournament_free_agentsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "tournament_free_agents" */ - tournament_free_agents_stream?: (tournament_free_agentsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (tournament_free_agents_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (tournament_free_agents_bool_exp | null)} }) - /** fetch data from the table: "tournament_invite_code_uses" */ - tournament_invite_code_uses?: (tournament_invite_code_usesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_invite_code_uses_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_invite_code_uses_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_invite_code_uses_bool_exp | null)} }) - /** fetch aggregated fields from the table: "tournament_invite_code_uses" */ - tournament_invite_code_uses_aggregate?: (tournament_invite_code_uses_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_invite_code_uses_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_invite_code_uses_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_invite_code_uses_bool_exp | null)} }) - /** fetch data from the table: "tournament_invite_code_uses" using primary key columns */ - tournament_invite_code_uses_by_pk?: (tournament_invite_code_usesGenqlSelection & { __args: {invite_code_id: Scalars['uuid'], player_steam_id: Scalars['bigint']} }) - /** fetch data from the table in a streaming manner: "tournament_invite_code_uses" */ - tournament_invite_code_uses_stream?: (tournament_invite_code_usesGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (tournament_invite_code_uses_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (tournament_invite_code_uses_bool_exp | null)} }) - /** fetch data from the table: "tournament_invite_codes" */ - tournament_invite_codes?: (tournament_invite_codesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_invite_codes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_invite_codes_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_invite_codes_bool_exp | null)} }) - /** fetch aggregated fields from the table: "tournament_invite_codes" */ - tournament_invite_codes_aggregate?: (tournament_invite_codes_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_invite_codes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_invite_codes_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_invite_codes_bool_exp | null)} }) - /** fetch data from the table: "tournament_invite_codes" using primary key columns */ - tournament_invite_codes_by_pk?: (tournament_invite_codesGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "tournament_invite_codes" */ - tournament_invite_codes_stream?: (tournament_invite_codesGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (tournament_invite_codes_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (tournament_invite_codes_bool_exp | null)} }) - /** fetch data from the table: "tournament_invites" */ - tournament_invites?: (tournament_invitesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_invites_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_invites_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_invites_bool_exp | null)} }) - /** fetch aggregated fields from the table: "tournament_invites" */ - tournament_invites_aggregate?: (tournament_invites_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_invites_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_invites_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_invites_bool_exp | null)} }) - /** fetch data from the table: "tournament_invites" using primary key columns */ - tournament_invites_by_pk?: (tournament_invitesGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "tournament_invites" */ - tournament_invites_stream?: (tournament_invitesGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (tournament_invites_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (tournament_invites_bool_exp | null)} }) - /** fetch data from the table: "tournament_leaderboard_entries" */ - tournament_leaderboard_entries?: (tournament_leaderboard_entriesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_leaderboard_entries_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (tournament_leaderboard_entries_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_leaderboard_entries_bool_exp | null)} }) - /** fetch aggregated fields from the table: "tournament_leaderboard_entries" */ - tournament_leaderboard_entries_aggregate?: (tournament_leaderboard_entries_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_leaderboard_entries_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (tournament_leaderboard_entries_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_leaderboard_entries_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "tournament_leaderboard_entries" */ - tournament_leaderboard_entries_stream?: (tournament_leaderboard_entriesGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (tournament_leaderboard_entries_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (tournament_leaderboard_entries_bool_exp | null)} }) - /** fetch data from the table: "tournament_no_shows" */ - tournament_no_shows?: (tournament_no_showsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_no_shows_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_no_shows_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_no_shows_bool_exp | null)} }) - /** fetch aggregated fields from the table: "tournament_no_shows" */ - tournament_no_shows_aggregate?: (tournament_no_shows_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_no_shows_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_no_shows_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_no_shows_bool_exp | null)} }) - /** fetch data from the table: "tournament_no_shows" using primary key columns */ - tournament_no_shows_by_pk?: (tournament_no_showsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "tournament_no_shows" */ - tournament_no_shows_stream?: (tournament_no_showsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (tournament_no_shows_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (tournament_no_shows_bool_exp | null)} }) - /** fetch data from the table: "tournament_organizer_teams" */ - tournament_organizer_teams?: (tournament_organizer_teamsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_organizer_teams_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (tournament_organizer_teams_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_organizer_teams_bool_exp | null)} }) - /** fetch aggregated fields from the table: "tournament_organizer_teams" */ - tournament_organizer_teams_aggregate?: (tournament_organizer_teams_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_organizer_teams_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (tournament_organizer_teams_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_organizer_teams_bool_exp | null)} }) - /** fetch data from the table: "tournament_organizer_teams" using primary key columns */ - tournament_organizer_teams_by_pk?: (tournament_organizer_teamsGenqlSelection & { __args: {team_id: Scalars['uuid'], tournament_id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "tournament_organizer_teams" */ - tournament_organizer_teams_stream?: (tournament_organizer_teamsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (tournament_organizer_teams_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (tournament_organizer_teams_bool_exp | null)} }) - /** An array relationship */ - tournament_organizers?: (tournament_organizersGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_organizers_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_organizers_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_organizers_bool_exp | null)} }) - /** An aggregate relationship */ - tournament_organizers_aggregate?: (tournament_organizers_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_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?: (tournament_organizers_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_organizers_bool_exp | null)} }) - /** fetch data from the table: "tournament_organizers" using primary key columns */ - tournament_organizers_by_pk?: (tournament_organizersGenqlSelection & { __args: {steam_id: Scalars['bigint'], tournament_id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "tournament_organizers" */ - tournament_organizers_stream?: (tournament_organizersGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (tournament_organizers_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (tournament_organizers_bool_exp | null)} }) - /** fetch data from the table: "tournament_prizes" */ - tournament_prizes?: (tournament_prizesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_prizes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (tournament_prizes_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_prizes_bool_exp | null)} }) - /** fetch aggregated fields from the table: "tournament_prizes" */ - tournament_prizes_aggregate?: (tournament_prizes_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_prizes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (tournament_prizes_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_prizes_bool_exp | null)} }) - /** fetch data from the table: "tournament_prizes" using primary key columns */ - tournament_prizes_by_pk?: (tournament_prizesGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "tournament_prizes" */ - tournament_prizes_stream?: (tournament_prizesGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (tournament_prizes_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (tournament_prizes_bool_exp | null)} }) - /** fetch data from the table: "tournament_registration_unlocks" */ - tournament_registration_unlocks?: (tournament_registration_unlocksGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_registration_unlocks_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_registration_unlocks_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_registration_unlocks_bool_exp | null)} }) - /** fetch aggregated fields from the table: "tournament_registration_unlocks" */ - tournament_registration_unlocks_aggregate?: (tournament_registration_unlocks_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_registration_unlocks_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_registration_unlocks_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_registration_unlocks_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "tournament_registration_unlocks" */ - tournament_registration_unlocks_stream?: (tournament_registration_unlocksGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (tournament_registration_unlocks_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (tournament_registration_unlocks_bool_exp | null)} }) - /** fetch data from the table: "tournament_stage_windows" */ - tournament_stage_windows?: (tournament_stage_windowsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_stage_windows_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_stage_windows_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_stage_windows_bool_exp | null)} }) - /** fetch aggregated fields from the table: "tournament_stage_windows" */ - tournament_stage_windows_aggregate?: (tournament_stage_windows_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_stage_windows_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_stage_windows_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_stage_windows_bool_exp | null)} }) - /** fetch data from the table: "tournament_stage_windows" using primary key columns */ - tournament_stage_windows_by_pk?: (tournament_stage_windowsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "tournament_stage_windows" */ - tournament_stage_windows_stream?: (tournament_stage_windowsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (tournament_stage_windows_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (tournament_stage_windows_bool_exp | null)} }) - /** 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)} }) - /** fetch data from the table: "tournament_stages" using primary key columns */ - tournament_stages_by_pk?: (tournament_stagesGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "tournament_stages" */ - tournament_stages_stream?: (tournament_stagesGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (tournament_stages_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (tournament_stages_bool_exp | null)} }) - /** fetch data from the table: "tournament_team_invites" */ - tournament_team_invites?: (tournament_team_invitesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_team_invites_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_invites_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_team_invites_bool_exp | null)} }) - /** fetch aggregated fields from the table: "tournament_team_invites" */ - tournament_team_invites_aggregate?: (tournament_team_invites_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_team_invites_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_invites_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_team_invites_bool_exp | null)} }) - /** fetch data from the table: "tournament_team_invites" using primary key columns */ - tournament_team_invites_by_pk?: (tournament_team_invitesGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "tournament_team_invites" */ - tournament_team_invites_stream?: (tournament_team_invitesGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (tournament_team_invites_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (tournament_team_invites_bool_exp | null)} }) - /** fetch data from the table: "tournament_team_roster" */ - tournament_team_roster?: (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)} }) - /** fetch aggregated fields from the table: "tournament_team_roster" */ - tournament_team_roster_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)} }) - /** fetch data from the table: "tournament_team_roster" using primary key columns */ - tournament_team_roster_by_pk?: (tournament_team_rosterGenqlSelection & { __args: {player_steam_id: Scalars['bigint'], tournament_id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "tournament_team_roster" */ - tournament_team_roster_stream?: (tournament_team_rosterGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (tournament_team_roster_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (tournament_team_roster_bool_exp | null)} }) - /** An array relationship */ - tournament_teams?: (tournament_teamsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_teams_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (tournament_teams_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_teams_bool_exp | null)} }) - /** An aggregate relationship */ - tournament_teams_aggregate?: (tournament_teams_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_teams_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (tournament_teams_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_teams_bool_exp | null)} }) - /** fetch data from the table: "tournament_teams" using primary key columns */ - tournament_teams_by_pk?: (tournament_teamsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "tournament_teams" */ - tournament_teams_stream?: (tournament_teamsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (tournament_teams_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (tournament_teams_bool_exp | null)} }) - /** 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)} }) - /** fetch data from the table: "tournaments" using primary key columns */ - tournaments_by_pk?: (tournamentsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "tournaments" */ - tournaments_stream?: (tournamentsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (tournaments_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (tournaments_bool_exp | null)} }) - /** fetch data from the table: "utility_collection_items" */ - utility_collection_items?: (utility_collection_itemsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_collection_items_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_collection_items_order_by[] | null), - /** filter the rows returned */ - where?: (utility_collection_items_bool_exp | null)} }) - /** fetch aggregated fields from the table: "utility_collection_items" */ - utility_collection_items_aggregate?: (utility_collection_items_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_collection_items_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_collection_items_order_by[] | null), - /** filter the rows returned */ - where?: (utility_collection_items_bool_exp | null)} }) - /** fetch data from the table: "utility_collection_items" using primary key columns */ - utility_collection_items_by_pk?: (utility_collection_itemsGenqlSelection & { __args: {collection_id: Scalars['uuid'], utility_lineup_id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "utility_collection_items" */ - utility_collection_items_stream?: (utility_collection_itemsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (utility_collection_items_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (utility_collection_items_bool_exp | null)} }) - /** fetch data from the table: "utility_collections" */ - utility_collections?: (utility_collectionsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_collections_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_collections_order_by[] | null), - /** filter the rows returned */ - where?: (utility_collections_bool_exp | null)} }) - /** fetch aggregated fields from the table: "utility_collections" */ - utility_collections_aggregate?: (utility_collections_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_collections_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_collections_order_by[] | null), - /** filter the rows returned */ - where?: (utility_collections_bool_exp | null)} }) - /** fetch data from the table: "utility_collections" using primary key columns */ - utility_collections_by_pk?: (utility_collectionsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "utility_collections" */ - utility_collections_stream?: (utility_collectionsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (utility_collections_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (utility_collections_bool_exp | null)} }) - /** fetch data from the table: "utility_demo_mines" */ - utility_demo_mines?: (utility_demo_minesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_demo_mines_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_demo_mines_order_by[] | null), - /** filter the rows returned */ - where?: (utility_demo_mines_bool_exp | null)} }) - /** fetch aggregated fields from the table: "utility_demo_mines" */ - utility_demo_mines_aggregate?: (utility_demo_mines_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_demo_mines_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_demo_mines_order_by[] | null), - /** filter the rows returned */ - where?: (utility_demo_mines_bool_exp | null)} }) - /** fetch data from the table: "utility_demo_mines" using primary key columns */ - utility_demo_mines_by_pk?: (utility_demo_minesGenqlSelection & { __args: {match_map_demo_id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "utility_demo_mines" */ - utility_demo_mines_stream?: (utility_demo_minesGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (utility_demo_mines_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (utility_demo_mines_bool_exp | null)} }) - /** fetch data from the table: "utility_demo_throws" */ - utility_demo_throws?: (utility_demo_throwsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_demo_throws_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_demo_throws_order_by[] | null), - /** filter the rows returned */ - where?: (utility_demo_throws_bool_exp | null)} }) - /** fetch aggregated fields from the table: "utility_demo_throws" */ - utility_demo_throws_aggregate?: (utility_demo_throws_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_demo_throws_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_demo_throws_order_by[] | null), - /** filter the rows returned */ - where?: (utility_demo_throws_bool_exp | null)} }) - /** fetch data from the table: "utility_demo_throws" using primary key columns */ - utility_demo_throws_by_pk?: (utility_demo_throwsGenqlSelection & { __args: {grenade_id: Scalars['Int'], match_map_demo_id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "utility_demo_throws" */ - utility_demo_throws_stream?: (utility_demo_throwsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (utility_demo_throws_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (utility_demo_throws_bool_exp | null)} }) - /** fetch data from the table: "utility_drift_results" */ - utility_drift_results?: (utility_drift_resultsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_drift_results_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_drift_results_order_by[] | null), - /** filter the rows returned */ - where?: (utility_drift_results_bool_exp | null)} }) - /** fetch aggregated fields from the table: "utility_drift_results" */ - utility_drift_results_aggregate?: (utility_drift_results_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_drift_results_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_drift_results_order_by[] | null), - /** filter the rows returned */ - where?: (utility_drift_results_bool_exp | null)} }) - /** fetch data from the table: "utility_drift_results" using primary key columns */ - utility_drift_results_by_pk?: (utility_drift_resultsGenqlSelection & { __args: {utility_drift_scan_id: Scalars['uuid'], utility_lineup_id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "utility_drift_results" */ - utility_drift_results_stream?: (utility_drift_resultsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (utility_drift_results_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (utility_drift_results_bool_exp | null)} }) - /** fetch data from the table: "utility_drift_scans" */ - utility_drift_scans?: (utility_drift_scansGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_drift_scans_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_drift_scans_order_by[] | null), - /** filter the rows returned */ - where?: (utility_drift_scans_bool_exp | null)} }) - /** fetch aggregated fields from the table: "utility_drift_scans" */ - utility_drift_scans_aggregate?: (utility_drift_scans_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_drift_scans_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_drift_scans_order_by[] | null), - /** filter the rows returned */ - where?: (utility_drift_scans_bool_exp | null)} }) - /** fetch data from the table: "utility_drift_scans" using primary key columns */ - utility_drift_scans_by_pk?: (utility_drift_scansGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "utility_drift_scans" */ - utility_drift_scans_stream?: (utility_drift_scansGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (utility_drift_scans_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (utility_drift_scans_bool_exp | null)} }) - /** fetch data from the table: "utility_lineup_favorites" */ - utility_lineup_favorites?: (utility_lineup_favoritesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_lineup_favorites_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_lineup_favorites_order_by[] | null), - /** filter the rows returned */ - where?: (utility_lineup_favorites_bool_exp | null)} }) - /** fetch aggregated fields from the table: "utility_lineup_favorites" */ - utility_lineup_favorites_aggregate?: (utility_lineup_favorites_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_lineup_favorites_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_lineup_favorites_order_by[] | null), - /** filter the rows returned */ - where?: (utility_lineup_favorites_bool_exp | null)} }) - /** fetch data from the table: "utility_lineup_favorites" using primary key columns */ - utility_lineup_favorites_by_pk?: (utility_lineup_favoritesGenqlSelection & { __args: {steam_id: Scalars['bigint'], utility_lineup_id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "utility_lineup_favorites" */ - utility_lineup_favorites_stream?: (utility_lineup_favoritesGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (utility_lineup_favorites_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (utility_lineup_favorites_bool_exp | null)} }) - /** fetch data from the table: "utility_lineup_progress" */ - utility_lineup_progress?: (utility_lineup_progressGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_lineup_progress_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_lineup_progress_order_by[] | null), - /** filter the rows returned */ - where?: (utility_lineup_progress_bool_exp | null)} }) - /** fetch aggregated fields from the table: "utility_lineup_progress" */ - utility_lineup_progress_aggregate?: (utility_lineup_progress_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_lineup_progress_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_lineup_progress_order_by[] | null), - /** filter the rows returned */ - where?: (utility_lineup_progress_bool_exp | null)} }) - /** fetch data from the table: "utility_lineup_progress" using primary key columns */ - utility_lineup_progress_by_pk?: (utility_lineup_progressGenqlSelection & { __args: {steam_id: Scalars['bigint'], utility_lineup_id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "utility_lineup_progress" */ - utility_lineup_progress_stream?: (utility_lineup_progressGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (utility_lineup_progress_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (utility_lineup_progress_bool_exp | null)} }) - /** fetch data from the table: "utility_lineup_renders" */ - utility_lineup_renders?: (utility_lineup_rendersGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_lineup_renders_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_lineup_renders_order_by[] | null), - /** filter the rows returned */ - where?: (utility_lineup_renders_bool_exp | null)} }) - /** fetch aggregated fields from the table: "utility_lineup_renders" */ - utility_lineup_renders_aggregate?: (utility_lineup_renders_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_lineup_renders_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_lineup_renders_order_by[] | null), - /** filter the rows returned */ - where?: (utility_lineup_renders_bool_exp | null)} }) - /** fetch data from the table: "utility_lineup_renders" using primary key columns */ - utility_lineup_renders_by_pk?: (utility_lineup_rendersGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "utility_lineup_renders" */ - utility_lineup_renders_stream?: (utility_lineup_rendersGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (utility_lineup_renders_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (utility_lineup_renders_bool_exp | null)} }) - /** fetch data from the table: "utility_lineup_repairs" */ - utility_lineup_repairs?: (utility_lineup_repairsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_lineup_repairs_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_lineup_repairs_order_by[] | null), - /** filter the rows returned */ - where?: (utility_lineup_repairs_bool_exp | null)} }) - /** fetch aggregated fields from the table: "utility_lineup_repairs" */ - utility_lineup_repairs_aggregate?: (utility_lineup_repairs_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_lineup_repairs_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_lineup_repairs_order_by[] | null), - /** filter the rows returned */ - where?: (utility_lineup_repairs_bool_exp | null)} }) - /** fetch data from the table: "utility_lineup_repairs" using primary key columns */ - utility_lineup_repairs_by_pk?: (utility_lineup_repairsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "utility_lineup_repairs" */ - utility_lineup_repairs_stream?: (utility_lineup_repairsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (utility_lineup_repairs_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (utility_lineup_repairs_bool_exp | null)} }) - /** fetch data from the table: "utility_lineup_votes" */ - utility_lineup_votes?: (utility_lineup_votesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_lineup_votes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_lineup_votes_order_by[] | null), - /** filter the rows returned */ - where?: (utility_lineup_votes_bool_exp | null)} }) - /** fetch aggregated fields from the table: "utility_lineup_votes" */ - utility_lineup_votes_aggregate?: (utility_lineup_votes_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_lineup_votes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_lineup_votes_order_by[] | null), - /** filter the rows returned */ - where?: (utility_lineup_votes_bool_exp | null)} }) - /** fetch data from the table: "utility_lineup_votes" using primary key columns */ - utility_lineup_votes_by_pk?: (utility_lineup_votesGenqlSelection & { __args: {steam_id: Scalars['bigint'], utility_lineup_id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "utility_lineup_votes" */ - utility_lineup_votes_stream?: (utility_lineup_votesGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (utility_lineup_votes_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (utility_lineup_votes_bool_exp | null)} }) - /** An array relationship */ - utility_lineups?: (utility_lineupsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_lineups_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_lineups_order_by[] | null), - /** filter the rows returned */ - where?: (utility_lineups_bool_exp | null)} }) - /** An aggregate relationship */ - utility_lineups_aggregate?: (utility_lineups_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_lineups_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_lineups_order_by[] | null), - /** filter the rows returned */ - where?: (utility_lineups_bool_exp | null)} }) - /** fetch data from the table: "utility_lineups" using primary key columns */ - utility_lineups_by_pk?: (utility_lineupsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "utility_lineups" */ - utility_lineups_stream?: (utility_lineupsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (utility_lineups_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (utility_lineups_bool_exp | null)} }) - /** fetch data from the table: "utility_meta_lineups" */ - utility_meta_lineups?: (utility_meta_lineupsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_meta_lineups_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_meta_lineups_order_by[] | null), - /** filter the rows returned */ - where?: (utility_meta_lineups_bool_exp | null)} }) - /** fetch aggregated fields from the table: "utility_meta_lineups" */ - utility_meta_lineups_aggregate?: (utility_meta_lineups_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_meta_lineups_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_meta_lineups_order_by[] | null), - /** filter the rows returned */ - where?: (utility_meta_lineups_bool_exp | null)} }) - /** fetch data from the table: "utility_meta_lineups" using primary key columns */ - utility_meta_lineups_by_pk?: (utility_meta_lineupsGenqlSelection & { __args: {lineup_bucket: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "utility_meta_lineups" */ - utility_meta_lineups_stream?: (utility_meta_lineupsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (utility_meta_lineups_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (utility_meta_lineups_bool_exp | null)} }) - /** fetch data from the table: "utility_playbook_steps" */ - utility_playbook_steps?: (utility_playbook_stepsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_playbook_steps_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_playbook_steps_order_by[] | null), - /** filter the rows returned */ - where?: (utility_playbook_steps_bool_exp | null)} }) - /** fetch aggregated fields from the table: "utility_playbook_steps" */ - utility_playbook_steps_aggregate?: (utility_playbook_steps_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_playbook_steps_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_playbook_steps_order_by[] | null), - /** filter the rows returned */ - where?: (utility_playbook_steps_bool_exp | null)} }) - /** fetch data from the table: "utility_playbook_steps" using primary key columns */ - utility_playbook_steps_by_pk?: (utility_playbook_stepsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "utility_playbook_steps" */ - utility_playbook_steps_stream?: (utility_playbook_stepsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (utility_playbook_steps_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (utility_playbook_steps_bool_exp | null)} }) - /** fetch data from the table: "utility_playbooks" */ - utility_playbooks?: (utility_playbooksGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_playbooks_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_playbooks_order_by[] | null), - /** filter the rows returned */ - where?: (utility_playbooks_bool_exp | null)} }) - /** fetch aggregated fields from the table: "utility_playbooks" */ - utility_playbooks_aggregate?: (utility_playbooks_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_playbooks_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_playbooks_order_by[] | null), - /** filter the rows returned */ - where?: (utility_playbooks_bool_exp | null)} }) - /** fetch data from the table: "utility_playbooks" using primary key columns */ - utility_playbooks_by_pk?: (utility_playbooksGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "utility_playbooks" */ - utility_playbooks_stream?: (utility_playbooksGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (utility_playbooks_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (utility_playbooks_bool_exp | null)} }) - /** fetch data from the table: "utility_practice_invites" */ - utility_practice_invites?: (utility_practice_invitesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_practice_invites_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_practice_invites_order_by[] | null), - /** filter the rows returned */ - where?: (utility_practice_invites_bool_exp | null)} }) - /** fetch aggregated fields from the table: "utility_practice_invites" */ - utility_practice_invites_aggregate?: (utility_practice_invites_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_practice_invites_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_practice_invites_order_by[] | null), - /** filter the rows returned */ - where?: (utility_practice_invites_bool_exp | null)} }) - /** fetch data from the table: "utility_practice_invites" using primary key columns */ - utility_practice_invites_by_pk?: (utility_practice_invitesGenqlSelection & { __args: {steam_id: Scalars['bigint'], utility_practice_session_id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "utility_practice_invites" */ - utility_practice_invites_stream?: (utility_practice_invitesGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (utility_practice_invites_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (utility_practice_invites_bool_exp | null)} }) - /** An array relationship */ - utility_practice_sessions?: (utility_practice_sessionsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_practice_sessions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_practice_sessions_order_by[] | null), - /** filter the rows returned */ - where?: (utility_practice_sessions_bool_exp | null)} }) - /** An aggregate relationship */ - utility_practice_sessions_aggregate?: (utility_practice_sessions_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_practice_sessions_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_practice_sessions_order_by[] | null), - /** filter the rows returned */ - where?: (utility_practice_sessions_bool_exp | null)} }) - /** fetch data from the table: "utility_practice_sessions" using primary key columns */ - utility_practice_sessions_by_pk?: (utility_practice_sessionsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "utility_practice_sessions" */ - utility_practice_sessions_stream?: (utility_practice_sessionsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (utility_practice_sessions_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (utility_practice_sessions_bool_exp | null)} }) - /** fetch data from the table: "v_event_player_stats" */ - v_event_player_stats?: (v_event_player_statsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_event_player_stats_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (v_event_player_stats_order_by[] | null), - /** filter the rows returned */ - where?: (v_event_player_stats_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_event_player_stats" */ - v_event_player_stats_aggregate?: (v_event_player_stats_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_event_player_stats_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (v_event_player_stats_order_by[] | null), - /** filter the rows returned */ - where?: (v_event_player_stats_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "v_event_player_stats" */ - v_event_player_stats_stream?: (v_event_player_statsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (v_event_player_stats_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (v_event_player_stats_bool_exp | null)} }) - /** fetch data from the table: "v_gpu_pool_status" */ - v_gpu_pool_status?: (v_gpu_pool_statusGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_gpu_pool_status_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_gpu_pool_status_order_by[] | null), - /** filter the rows returned */ - where?: (v_gpu_pool_status_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_gpu_pool_status" */ - v_gpu_pool_status_aggregate?: (v_gpu_pool_status_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_gpu_pool_status_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_gpu_pool_status_order_by[] | null), - /** filter the rows returned */ - where?: (v_gpu_pool_status_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "v_gpu_pool_status" */ - v_gpu_pool_status_stream?: (v_gpu_pool_statusGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (v_gpu_pool_status_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (v_gpu_pool_status_bool_exp | null)} }) - /** fetch data from the table: "v_league_division_standings" */ - v_league_division_standings?: (v_league_division_standingsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_league_division_standings_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_league_division_standings_order_by[] | null), - /** filter the rows returned */ - where?: (v_league_division_standings_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_league_division_standings" */ - v_league_division_standings_aggregate?: (v_league_division_standings_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_league_division_standings_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_league_division_standings_order_by[] | null), - /** filter the rows returned */ - where?: (v_league_division_standings_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "v_league_division_standings" */ - v_league_division_standings_stream?: (v_league_division_standingsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (v_league_division_standings_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (v_league_division_standings_bool_exp | null)} }) - /** fetch data from the table: "v_league_season_player_stats" */ - v_league_season_player_stats?: (v_league_season_player_statsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_league_season_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_league_season_player_stats_order_by[] | null), - /** filter the rows returned */ - where?: (v_league_season_player_stats_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_league_season_player_stats" */ - v_league_season_player_stats_aggregate?: (v_league_season_player_stats_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_league_season_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_league_season_player_stats_order_by[] | null), - /** filter the rows returned */ - where?: (v_league_season_player_stats_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "v_league_season_player_stats" */ - v_league_season_player_stats_stream?: (v_league_season_player_statsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (v_league_season_player_stats_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (v_league_season_player_stats_bool_exp | null)} }) - /** fetch data from the table: "v_match_captains" */ - v_match_captains?: (v_match_captainsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_match_captains_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_captains_order_by[] | null), - /** filter the rows returned */ - where?: (v_match_captains_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_match_captains" */ - v_match_captains_aggregate?: (v_match_captains_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_match_captains_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_captains_order_by[] | null), - /** filter the rows returned */ - where?: (v_match_captains_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "v_match_captains" */ - v_match_captains_stream?: (v_match_captainsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (v_match_captains_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (v_match_captains_bool_exp | null)} }) - /** fetch data from the table: "v_match_clutches" */ - v_match_clutches?: (v_match_clutchesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_match_clutches_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_clutches_order_by[] | null), - /** filter the rows returned */ - where?: (v_match_clutches_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_match_clutches" */ - v_match_clutches_aggregate?: (v_match_clutches_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_match_clutches_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_clutches_order_by[] | null), - /** filter the rows returned */ - where?: (v_match_clutches_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "v_match_clutches" */ - v_match_clutches_stream?: (v_match_clutchesGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (v_match_clutches_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (v_match_clutches_bool_exp | null)} }) - /** fetch data from the table: "v_match_kill_pairs" */ - v_match_kill_pairs?: (v_match_kill_pairsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_match_kill_pairs_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_kill_pairs_order_by[] | null), - /** filter the rows returned */ - where?: (v_match_kill_pairs_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_match_kill_pairs" */ - v_match_kill_pairs_aggregate?: (v_match_kill_pairs_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_match_kill_pairs_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_kill_pairs_order_by[] | null), - /** filter the rows returned */ - where?: (v_match_kill_pairs_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "v_match_kill_pairs" */ - v_match_kill_pairs_stream?: (v_match_kill_pairsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (v_match_kill_pairs_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (v_match_kill_pairs_bool_exp | null)} }) - /** fetch data from the table: "v_match_lineup_buy_types" */ - v_match_lineup_buy_types?: (v_match_lineup_buy_typesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_match_lineup_buy_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_lineup_buy_types_order_by[] | null), - /** filter the rows returned */ - where?: (v_match_lineup_buy_types_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_match_lineup_buy_types" */ - v_match_lineup_buy_types_aggregate?: (v_match_lineup_buy_types_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_match_lineup_buy_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_lineup_buy_types_order_by[] | null), - /** filter the rows returned */ - where?: (v_match_lineup_buy_types_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "v_match_lineup_buy_types" */ - v_match_lineup_buy_types_stream?: (v_match_lineup_buy_typesGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (v_match_lineup_buy_types_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (v_match_lineup_buy_types_bool_exp | null)} }) - /** fetch data from the table: "v_match_lineup_map_stats" */ - v_match_lineup_map_stats?: (v_match_lineup_map_statsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_match_lineup_map_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_match_lineup_map_stats_order_by[] | null), - /** filter the rows returned */ - where?: (v_match_lineup_map_stats_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_match_lineup_map_stats" */ - v_match_lineup_map_stats_aggregate?: (v_match_lineup_map_stats_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_match_lineup_map_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_match_lineup_map_stats_order_by[] | null), - /** filter the rows returned */ - where?: (v_match_lineup_map_stats_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "v_match_lineup_map_stats" */ - v_match_lineup_map_stats_stream?: (v_match_lineup_map_statsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (v_match_lineup_map_stats_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (v_match_lineup_map_stats_bool_exp | null)} }) - /** fetch data from the table: "v_match_map_backup_rounds" */ - v_match_map_backup_rounds?: (v_match_map_backup_roundsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_match_map_backup_rounds_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_map_backup_rounds_order_by[] | null), - /** filter the rows returned */ - where?: (v_match_map_backup_rounds_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_match_map_backup_rounds" */ - v_match_map_backup_rounds_aggregate?: (v_match_map_backup_rounds_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_match_map_backup_rounds_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_map_backup_rounds_order_by[] | null), - /** filter the rows returned */ - where?: (v_match_map_backup_rounds_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "v_match_map_backup_rounds" */ - v_match_map_backup_rounds_stream?: (v_match_map_backup_roundsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (v_match_map_backup_rounds_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (v_match_map_backup_rounds_bool_exp | null)} }) - /** fetch data from the table: "v_match_player_buy_types" */ - v_match_player_buy_types?: (v_match_player_buy_typesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_match_player_buy_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_player_buy_types_order_by[] | null), - /** filter the rows returned */ - where?: (v_match_player_buy_types_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_match_player_buy_types" */ - v_match_player_buy_types_aggregate?: (v_match_player_buy_types_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_match_player_buy_types_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_player_buy_types_order_by[] | null), - /** filter the rows returned */ - where?: (v_match_player_buy_types_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "v_match_player_buy_types" */ - v_match_player_buy_types_stream?: (v_match_player_buy_typesGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (v_match_player_buy_types_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (v_match_player_buy_types_bool_exp | null)} }) - /** fetch data from the table: "v_match_player_opening_duels" */ - v_match_player_opening_duels?: (v_match_player_opening_duelsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_match_player_opening_duels_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_player_opening_duels_order_by[] | null), - /** filter the rows returned */ - where?: (v_match_player_opening_duels_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_match_player_opening_duels" */ - v_match_player_opening_duels_aggregate?: (v_match_player_opening_duels_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_match_player_opening_duels_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_match_player_opening_duels_order_by[] | null), - /** filter the rows returned */ - where?: (v_match_player_opening_duels_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "v_match_player_opening_duels" */ - v_match_player_opening_duels_stream?: (v_match_player_opening_duelsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (v_match_player_opening_duels_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (v_match_player_opening_duels_bool_exp | null)} }) - /** fetch data from the table: "v_player_arch_nemesis" */ - v_player_arch_nemesis?: (v_player_arch_nemesisGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_arch_nemesis_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_arch_nemesis_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_arch_nemesis_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_player_arch_nemesis" */ - v_player_arch_nemesis_aggregate?: (v_player_arch_nemesis_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_arch_nemesis_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_arch_nemesis_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_arch_nemesis_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "v_player_arch_nemesis" */ - v_player_arch_nemesis_stream?: (v_player_arch_nemesisGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (v_player_arch_nemesis_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (v_player_arch_nemesis_bool_exp | null)} }) - /** fetch data from the table: "v_player_damage" */ - v_player_damage?: (v_player_damageGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_damage_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_damage_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_damage_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_player_damage" */ - v_player_damage_aggregate?: (v_player_damage_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_damage_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_damage_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_damage_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "v_player_damage" */ - v_player_damage_stream?: (v_player_damageGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (v_player_damage_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (v_player_damage_bool_exp | null)} }) - /** fetch data from the table: "v_player_elo" */ - v_player_elo?: (v_player_eloGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_elo_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_elo_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_elo_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_player_elo" */ - v_player_elo_aggregate?: (v_player_elo_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_elo_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_elo_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_elo_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "v_player_elo" */ - v_player_elo_stream?: (v_player_eloGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (v_player_elo_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (v_player_elo_bool_exp | null)} }) - /** fetch data from the table: "v_player_map_losses" */ - v_player_map_losses?: (v_player_map_lossesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_map_losses_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_map_losses_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_map_losses_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_player_map_losses" */ - v_player_map_losses_aggregate?: (v_player_map_losses_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_map_losses_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_map_losses_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_map_losses_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "v_player_map_losses" */ - v_player_map_losses_stream?: (v_player_map_lossesGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (v_player_map_losses_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (v_player_map_losses_bool_exp | null)} }) - /** fetch data from the table: "v_player_map_wins" */ - v_player_map_wins?: (v_player_map_winsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_map_wins_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_map_wins_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_map_wins_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_player_map_wins" */ - v_player_map_wins_aggregate?: (v_player_map_wins_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_map_wins_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_map_wins_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_map_wins_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "v_player_map_wins" */ - v_player_map_wins_stream?: (v_player_map_winsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (v_player_map_wins_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (v_player_map_wins_bool_exp | null)} }) - /** fetch data from the table: "v_player_match_head_to_head" */ - v_player_match_head_to_head?: (v_player_match_head_to_headGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_match_head_to_head_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_match_head_to_head_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_match_head_to_head_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_player_match_head_to_head" */ - v_player_match_head_to_head_aggregate?: (v_player_match_head_to_head_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_match_head_to_head_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_match_head_to_head_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_match_head_to_head_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "v_player_match_head_to_head" */ - v_player_match_head_to_head_stream?: (v_player_match_head_to_headGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (v_player_match_head_to_head_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (v_player_match_head_to_head_bool_exp | null)} }) - /** fetch data from the table: "v_player_match_map_hltv" */ - v_player_match_map_hltv?: (v_player_match_map_hltvGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_match_map_hltv_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_match_map_hltv_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_match_map_hltv_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_player_match_map_hltv" */ - v_player_match_map_hltv_aggregate?: (v_player_match_map_hltv_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_match_map_hltv_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_match_map_hltv_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_match_map_hltv_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "v_player_match_map_hltv" */ - v_player_match_map_hltv_stream?: (v_player_match_map_hltvGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (v_player_match_map_hltv_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (v_player_match_map_hltv_bool_exp | null)} }) - /** fetch data from the table: "v_player_match_map_roles" */ - v_player_match_map_roles?: (v_player_match_map_rolesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_match_map_roles_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_match_map_roles_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_match_map_roles_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_player_match_map_roles" */ - v_player_match_map_roles_aggregate?: (v_player_match_map_roles_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_match_map_roles_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_match_map_roles_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_match_map_roles_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "v_player_match_map_roles" */ - v_player_match_map_roles_stream?: (v_player_match_map_rolesGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (v_player_match_map_roles_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (v_player_match_map_roles_bool_exp | null)} }) - /** fetch data from the table: "v_player_match_performance" */ - v_player_match_performance?: (v_player_match_performanceGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_match_performance_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_match_performance_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_match_performance_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_player_match_performance" */ - v_player_match_performance_aggregate?: (v_player_match_performance_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_match_performance_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_match_performance_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_match_performance_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "v_player_match_performance" */ - v_player_match_performance_stream?: (v_player_match_performanceGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (v_player_match_performance_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (v_player_match_performance_bool_exp | null)} }) - /** fetch data from the table: "v_player_match_rating" */ - v_player_match_rating?: (v_player_match_ratingGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_match_rating_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_match_rating_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_match_rating_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_player_match_rating" */ - v_player_match_rating_aggregate?: (v_player_match_rating_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_match_rating_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_match_rating_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_match_rating_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "v_player_match_rating" */ - v_player_match_rating_stream?: (v_player_match_ratingGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (v_player_match_rating_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (v_player_match_rating_bool_exp | null)} }) - /** fetch data from the table: "v_player_multi_kills" */ - v_player_multi_kills?: (v_player_multi_killsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_multi_kills_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_multi_kills_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_multi_kills_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_player_multi_kills" */ - v_player_multi_kills_aggregate?: (v_player_multi_kills_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_multi_kills_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_multi_kills_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_multi_kills_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "v_player_multi_kills" */ - v_player_multi_kills_stream?: (v_player_multi_killsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (v_player_multi_kills_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (v_player_multi_kills_bool_exp | null)} }) - /** fetch data from the table: "v_player_queue_partners" */ - v_player_queue_partners?: (v_player_queue_partnersGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_queue_partners_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_queue_partners_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_queue_partners_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_player_queue_partners" */ - v_player_queue_partners_aggregate?: (v_player_queue_partners_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_queue_partners_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_queue_partners_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_queue_partners_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "v_player_queue_partners" */ - v_player_queue_partners_stream?: (v_player_queue_partnersGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (v_player_queue_partners_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (v_player_queue_partners_bool_exp | null)} }) - /** fetch data from the table: "v_player_weapon_damage" */ - v_player_weapon_damage?: (v_player_weapon_damageGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_weapon_damage_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_weapon_damage_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_weapon_damage_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_player_weapon_damage" */ - v_player_weapon_damage_aggregate?: (v_player_weapon_damage_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_weapon_damage_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_weapon_damage_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_weapon_damage_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "v_player_weapon_damage" */ - v_player_weapon_damage_stream?: (v_player_weapon_damageGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (v_player_weapon_damage_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (v_player_weapon_damage_bool_exp | null)} }) - /** fetch data from the table: "v_player_weapon_kills" */ - v_player_weapon_kills?: (v_player_weapon_killsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_weapon_kills_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_weapon_kills_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_weapon_kills_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_player_weapon_kills" */ - v_player_weapon_kills_aggregate?: (v_player_weapon_kills_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_player_weapon_kills_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_player_weapon_kills_order_by[] | null), - /** filter the rows returned */ - where?: (v_player_weapon_kills_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "v_player_weapon_kills" */ - v_player_weapon_kills_stream?: (v_player_weapon_killsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (v_player_weapon_kills_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (v_player_weapon_kills_bool_exp | null)} }) - /** fetch data from the table: "v_pool_maps" */ - v_pool_maps?: (v_pool_mapsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_pool_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?: (v_pool_maps_order_by[] | null), - /** filter the rows returned */ - where?: (v_pool_maps_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_pool_maps" */ - v_pool_maps_aggregate?: (v_pool_maps_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_pool_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?: (v_pool_maps_order_by[] | null), - /** filter the rows returned */ - where?: (v_pool_maps_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "v_pool_maps" */ - v_pool_maps_stream?: (v_pool_mapsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (v_pool_maps_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (v_pool_maps_bool_exp | null)} }) - /** fetch data from the table: "v_steam_account_pool_status" */ - v_steam_account_pool_status?: (v_steam_account_pool_statusGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_steam_account_pool_status_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_steam_account_pool_status_order_by[] | null), - /** filter the rows returned */ - where?: (v_steam_account_pool_status_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_steam_account_pool_status" */ - v_steam_account_pool_status_aggregate?: (v_steam_account_pool_status_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_steam_account_pool_status_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_steam_account_pool_status_order_by[] | null), - /** filter the rows returned */ - where?: (v_steam_account_pool_status_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "v_steam_account_pool_status" */ - v_steam_account_pool_status_stream?: (v_steam_account_pool_statusGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (v_steam_account_pool_status_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (v_steam_account_pool_status_bool_exp | null)} }) - /** fetch data from the table: "v_team_ranks" */ - v_team_ranks?: (v_team_ranksGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_team_ranks_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_team_ranks_order_by[] | null), - /** filter the rows returned */ - where?: (v_team_ranks_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_team_ranks" */ - v_team_ranks_aggregate?: (v_team_ranks_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_team_ranks_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_team_ranks_order_by[] | null), - /** filter the rows returned */ - where?: (v_team_ranks_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "v_team_ranks" */ - v_team_ranks_stream?: (v_team_ranksGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (v_team_ranks_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (v_team_ranks_bool_exp | null)} }) - /** fetch data from the table: "v_team_reputation" */ - v_team_reputation?: (v_team_reputationGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_team_reputation_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_team_reputation_order_by[] | null), - /** filter the rows returned */ - where?: (v_team_reputation_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_team_reputation" */ - v_team_reputation_aggregate?: (v_team_reputation_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_team_reputation_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_team_reputation_order_by[] | null), - /** filter the rows returned */ - where?: (v_team_reputation_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "v_team_reputation" */ - v_team_reputation_stream?: (v_team_reputationGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (v_team_reputation_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (v_team_reputation_bool_exp | null)} }) - /** fetch data from the table: "v_team_stage_results" */ - v_team_stage_results?: (v_team_stage_resultsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_team_stage_results_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_team_stage_results_order_by[] | null), - /** filter the rows returned */ - where?: (v_team_stage_results_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_team_stage_results" */ - v_team_stage_results_aggregate?: (v_team_stage_results_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_team_stage_results_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_team_stage_results_order_by[] | null), - /** filter the rows returned */ - where?: (v_team_stage_results_bool_exp | null)} }) - /** fetch data from the table: "v_team_stage_results" using primary key columns */ - v_team_stage_results_by_pk?: (v_team_stage_resultsGenqlSelection & { __args: {tournament_stage_id: Scalars['uuid'], tournament_team_id: Scalars['uuid']} }) - /** fetch data from the table in a streaming manner: "v_team_stage_results" */ - v_team_stage_results_stream?: (v_team_stage_resultsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (v_team_stage_results_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (v_team_stage_results_bool_exp | null)} }) - /** fetch data from the table: "v_team_tournament_results" */ - v_team_tournament_results?: (v_team_tournament_resultsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_team_tournament_results_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_team_tournament_results_order_by[] | null), - /** filter the rows returned */ - where?: (v_team_tournament_results_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_team_tournament_results" */ - v_team_tournament_results_aggregate?: (v_team_tournament_results_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_team_tournament_results_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_team_tournament_results_order_by[] | null), - /** filter the rows returned */ - where?: (v_team_tournament_results_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "v_team_tournament_results" */ - v_team_tournament_results_stream?: (v_team_tournament_resultsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (v_team_tournament_results_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (v_team_tournament_results_bool_exp | null)} }) - /** fetch data from the table: "v_tournament_player_stats" */ - v_tournament_player_stats?: (v_tournament_player_statsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_tournament_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_tournament_player_stats_order_by[] | null), - /** filter the rows returned */ - where?: (v_tournament_player_stats_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_tournament_player_stats" */ - v_tournament_player_stats_aggregate?: (v_tournament_player_stats_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_tournament_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_tournament_player_stats_order_by[] | null), - /** filter the rows returned */ - where?: (v_tournament_player_stats_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "v_tournament_player_stats" */ - v_tournament_player_stats_stream?: (v_tournament_player_statsGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (v_tournament_player_stats_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (v_tournament_player_stats_bool_exp | null)} }) - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "system_alerts" */ -export interface system_alertsGenqlSelection{ - created_at?: boolean | number - created_by?: boolean | number - dismissible?: boolean | number - expires_at?: boolean | number - id?: boolean | number - is_active?: boolean | number - message?: boolean | number - title?: boolean | number - type?: boolean | number - updated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "system_alerts" */ -export interface system_alerts_aggregateGenqlSelection{ - aggregate?: system_alerts_aggregate_fieldsGenqlSelection - nodes?: system_alertsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "system_alerts" */ -export interface system_alerts_aggregate_fieldsGenqlSelection{ - avg?: system_alerts_avg_fieldsGenqlSelection - count?: { __args: {columns?: (system_alerts_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: system_alerts_max_fieldsGenqlSelection - min?: system_alerts_min_fieldsGenqlSelection - stddev?: system_alerts_stddev_fieldsGenqlSelection - stddev_pop?: system_alerts_stddev_pop_fieldsGenqlSelection - stddev_samp?: system_alerts_stddev_samp_fieldsGenqlSelection - sum?: system_alerts_sum_fieldsGenqlSelection - var_pop?: system_alerts_var_pop_fieldsGenqlSelection - var_samp?: system_alerts_var_samp_fieldsGenqlSelection - variance?: system_alerts_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface system_alerts_avg_fieldsGenqlSelection{ - created_by?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "system_alerts". All fields are combined with a logical 'AND'. */ -export interface system_alerts_bool_exp {_and?: (system_alerts_bool_exp[] | null),_not?: (system_alerts_bool_exp | null),_or?: (system_alerts_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),created_by?: (bigint_comparison_exp | null),dismissible?: (Boolean_comparison_exp | null),expires_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),is_active?: (Boolean_comparison_exp | null),message?: (String_comparison_exp | null),title?: (String_comparison_exp | null),type?: (e_system_alert_types_enum_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "system_alerts" */ -export interface system_alerts_inc_input {created_by?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "system_alerts" */ -export interface system_alerts_insert_input {created_at?: (Scalars['timestamptz'] | null),created_by?: (Scalars['bigint'] | null),dismissible?: (Scalars['Boolean'] | null),expires_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),is_active?: (Scalars['Boolean'] | null),message?: (Scalars['String'] | null),title?: (Scalars['String'] | null),type?: (e_system_alert_types_enum | null),updated_at?: (Scalars['timestamptz'] | null)} - - -/** aggregate max on columns */ -export interface system_alerts_max_fieldsGenqlSelection{ - created_at?: boolean | number - created_by?: boolean | number - expires_at?: boolean | number - id?: boolean | number - message?: boolean | number - title?: boolean | number - updated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface system_alerts_min_fieldsGenqlSelection{ - created_at?: boolean | number - created_by?: boolean | number - expires_at?: boolean | number - id?: boolean | number - message?: boolean | number - title?: boolean | number - updated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "system_alerts" */ -export interface system_alerts_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: system_alertsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "system_alerts" */ -export interface system_alerts_on_conflict {constraint: system_alerts_constraint,update_columns?: system_alerts_update_column[],where?: (system_alerts_bool_exp | null)} - - -/** Ordering options when selecting data from "system_alerts". */ -export interface system_alerts_order_by {created_at?: (order_by | null),created_by?: (order_by | null),dismissible?: (order_by | null),expires_at?: (order_by | null),id?: (order_by | null),is_active?: (order_by | null),message?: (order_by | null),title?: (order_by | null),type?: (order_by | null),updated_at?: (order_by | null)} - - -/** primary key columns input for table: system_alerts */ -export interface system_alerts_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "system_alerts" */ -export interface system_alerts_set_input {created_at?: (Scalars['timestamptz'] | null),created_by?: (Scalars['bigint'] | null),dismissible?: (Scalars['Boolean'] | null),expires_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),is_active?: (Scalars['Boolean'] | null),message?: (Scalars['String'] | null),title?: (Scalars['String'] | null),type?: (e_system_alert_types_enum | null),updated_at?: (Scalars['timestamptz'] | null)} - - -/** aggregate stddev on columns */ -export interface system_alerts_stddev_fieldsGenqlSelection{ - created_by?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface system_alerts_stddev_pop_fieldsGenqlSelection{ - created_by?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface system_alerts_stddev_samp_fieldsGenqlSelection{ - created_by?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "system_alerts" */ -export interface system_alerts_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: system_alerts_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface system_alerts_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),created_by?: (Scalars['bigint'] | null),dismissible?: (Scalars['Boolean'] | null),expires_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),is_active?: (Scalars['Boolean'] | null),message?: (Scalars['String'] | null),title?: (Scalars['String'] | null),type?: (e_system_alert_types_enum | null),updated_at?: (Scalars['timestamptz'] | null)} - - -/** aggregate sum on columns */ -export interface system_alerts_sum_fieldsGenqlSelection{ - created_by?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface system_alerts_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (system_alerts_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (system_alerts_set_input | null), -/** filter the rows which have to be updated */ -where: system_alerts_bool_exp} - - -/** aggregate var_pop on columns */ -export interface system_alerts_var_pop_fieldsGenqlSelection{ - created_by?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface system_alerts_var_samp_fieldsGenqlSelection{ - created_by?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface system_alerts_variance_fieldsGenqlSelection{ - created_by?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "team_invites" */ -export interface team_invitesGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - /** An object relationship */ - invited_by?: playersGenqlSelection - invited_by_player_steam_id?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - steam_id?: boolean | number - /** An object relationship */ - team?: teamsGenqlSelection - team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "team_invites" */ -export interface team_invites_aggregateGenqlSelection{ - aggregate?: team_invites_aggregate_fieldsGenqlSelection - nodes?: team_invitesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface team_invites_aggregate_bool_exp {count?: (team_invites_aggregate_bool_exp_count | null)} - -export interface team_invites_aggregate_bool_exp_count {arguments?: (team_invites_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (team_invites_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "team_invites" */ -export interface team_invites_aggregate_fieldsGenqlSelection{ - avg?: team_invites_avg_fieldsGenqlSelection - count?: { __args: {columns?: (team_invites_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: team_invites_max_fieldsGenqlSelection - min?: team_invites_min_fieldsGenqlSelection - stddev?: team_invites_stddev_fieldsGenqlSelection - stddev_pop?: team_invites_stddev_pop_fieldsGenqlSelection - stddev_samp?: team_invites_stddev_samp_fieldsGenqlSelection - sum?: team_invites_sum_fieldsGenqlSelection - var_pop?: team_invites_var_pop_fieldsGenqlSelection - var_samp?: team_invites_var_samp_fieldsGenqlSelection - variance?: team_invites_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "team_invites" */ -export interface team_invites_aggregate_order_by {avg?: (team_invites_avg_order_by | null),count?: (order_by | null),max?: (team_invites_max_order_by | null),min?: (team_invites_min_order_by | null),stddev?: (team_invites_stddev_order_by | null),stddev_pop?: (team_invites_stddev_pop_order_by | null),stddev_samp?: (team_invites_stddev_samp_order_by | null),sum?: (team_invites_sum_order_by | null),var_pop?: (team_invites_var_pop_order_by | null),var_samp?: (team_invites_var_samp_order_by | null),variance?: (team_invites_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "team_invites" */ -export interface team_invites_arr_rel_insert_input {data: team_invites_insert_input[], -/** upsert condition */ -on_conflict?: (team_invites_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface team_invites_avg_fieldsGenqlSelection{ - invited_by_player_steam_id?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "team_invites" */ -export interface team_invites_avg_order_by {invited_by_player_steam_id?: (order_by | null),steam_id?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "team_invites". All fields are combined with a logical 'AND'. */ -export interface team_invites_bool_exp {_and?: (team_invites_bool_exp[] | null),_not?: (team_invites_bool_exp | null),_or?: (team_invites_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),invited_by?: (players_bool_exp | null),invited_by_player_steam_id?: (bigint_comparison_exp | null),player?: (players_bool_exp | null),steam_id?: (bigint_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "team_invites" */ -export interface team_invites_inc_input {invited_by_player_steam_id?: (Scalars['bigint'] | null),steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "team_invites" */ -export interface team_invites_insert_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),invited_by?: (players_obj_rel_insert_input | null),invited_by_player_steam_id?: (Scalars['bigint'] | null),player?: (players_obj_rel_insert_input | null),steam_id?: (Scalars['bigint'] | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null)} - - -/** aggregate max on columns */ -export interface team_invites_max_fieldsGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - invited_by_player_steam_id?: boolean | number - steam_id?: boolean | number - team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "team_invites" */ -export interface team_invites_max_order_by {created_at?: (order_by | null),id?: (order_by | null),invited_by_player_steam_id?: (order_by | null),steam_id?: (order_by | null),team_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface team_invites_min_fieldsGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - invited_by_player_steam_id?: boolean | number - steam_id?: boolean | number - team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "team_invites" */ -export interface team_invites_min_order_by {created_at?: (order_by | null),id?: (order_by | null),invited_by_player_steam_id?: (order_by | null),steam_id?: (order_by | null),team_id?: (order_by | null)} - - -/** response of any mutation on the table "team_invites" */ -export interface team_invites_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: team_invitesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "team_invites" */ -export interface team_invites_on_conflict {constraint: team_invites_constraint,update_columns?: team_invites_update_column[],where?: (team_invites_bool_exp | null)} - - -/** Ordering options when selecting data from "team_invites". */ -export interface team_invites_order_by {created_at?: (order_by | null),id?: (order_by | null),invited_by?: (players_order_by | null),invited_by_player_steam_id?: (order_by | null),player?: (players_order_by | null),steam_id?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null)} - - -/** primary key columns input for table: team_invites */ -export interface team_invites_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "team_invites" */ -export interface team_invites_set_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),invited_by_player_steam_id?: (Scalars['bigint'] | null),steam_id?: (Scalars['bigint'] | null),team_id?: (Scalars['uuid'] | null)} - - -/** aggregate stddev on columns */ -export interface team_invites_stddev_fieldsGenqlSelection{ - invited_by_player_steam_id?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "team_invites" */ -export interface team_invites_stddev_order_by {invited_by_player_steam_id?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface team_invites_stddev_pop_fieldsGenqlSelection{ - invited_by_player_steam_id?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "team_invites" */ -export interface team_invites_stddev_pop_order_by {invited_by_player_steam_id?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface team_invites_stddev_samp_fieldsGenqlSelection{ - invited_by_player_steam_id?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "team_invites" */ -export interface team_invites_stddev_samp_order_by {invited_by_player_steam_id?: (order_by | null),steam_id?: (order_by | null)} - - -/** Streaming cursor of the table "team_invites" */ -export interface team_invites_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: team_invites_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface team_invites_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),invited_by_player_steam_id?: (Scalars['bigint'] | null),steam_id?: (Scalars['bigint'] | null),team_id?: (Scalars['uuid'] | null)} - - -/** aggregate sum on columns */ -export interface team_invites_sum_fieldsGenqlSelection{ - invited_by_player_steam_id?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "team_invites" */ -export interface team_invites_sum_order_by {invited_by_player_steam_id?: (order_by | null),steam_id?: (order_by | null)} - -export interface team_invites_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (team_invites_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (team_invites_set_input | null), -/** filter the rows which have to be updated */ -where: team_invites_bool_exp} - - -/** aggregate var_pop on columns */ -export interface team_invites_var_pop_fieldsGenqlSelection{ - invited_by_player_steam_id?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "team_invites" */ -export interface team_invites_var_pop_order_by {invited_by_player_steam_id?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface team_invites_var_samp_fieldsGenqlSelection{ - invited_by_player_steam_id?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "team_invites" */ -export interface team_invites_var_samp_order_by {invited_by_player_steam_id?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface team_invites_variance_fieldsGenqlSelection{ - invited_by_player_steam_id?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "team_invites" */ -export interface team_invites_variance_order_by {invited_by_player_steam_id?: (order_by | null),steam_id?: (order_by | null)} - - -/** columns and relationships of "team_roster" */ -export interface team_rosterGenqlSelection{ - coach?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - player_steam_id?: boolean | number - role?: boolean | number - roster_image_url?: boolean | number - status?: boolean | number - /** An object relationship */ - team?: teamsGenqlSelection - team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "team_roster" */ -export interface team_roster_aggregateGenqlSelection{ - aggregate?: team_roster_aggregate_fieldsGenqlSelection - nodes?: team_rosterGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface team_roster_aggregate_bool_exp {bool_and?: (team_roster_aggregate_bool_exp_bool_and | null),bool_or?: (team_roster_aggregate_bool_exp_bool_or | null),count?: (team_roster_aggregate_bool_exp_count | null)} - -export interface team_roster_aggregate_bool_exp_bool_and {arguments: team_roster_select_column_team_roster_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (team_roster_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface team_roster_aggregate_bool_exp_bool_or {arguments: team_roster_select_column_team_roster_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (team_roster_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface team_roster_aggregate_bool_exp_count {arguments?: (team_roster_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (team_roster_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "team_roster" */ -export interface team_roster_aggregate_fieldsGenqlSelection{ - avg?: team_roster_avg_fieldsGenqlSelection - count?: { __args: {columns?: (team_roster_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: team_roster_max_fieldsGenqlSelection - min?: team_roster_min_fieldsGenqlSelection - stddev?: team_roster_stddev_fieldsGenqlSelection - stddev_pop?: team_roster_stddev_pop_fieldsGenqlSelection - stddev_samp?: team_roster_stddev_samp_fieldsGenqlSelection - sum?: team_roster_sum_fieldsGenqlSelection - var_pop?: team_roster_var_pop_fieldsGenqlSelection - var_samp?: team_roster_var_samp_fieldsGenqlSelection - variance?: team_roster_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "team_roster" */ -export interface team_roster_aggregate_order_by {avg?: (team_roster_avg_order_by | null),count?: (order_by | null),max?: (team_roster_max_order_by | null),min?: (team_roster_min_order_by | null),stddev?: (team_roster_stddev_order_by | null),stddev_pop?: (team_roster_stddev_pop_order_by | null),stddev_samp?: (team_roster_stddev_samp_order_by | null),sum?: (team_roster_sum_order_by | null),var_pop?: (team_roster_var_pop_order_by | null),var_samp?: (team_roster_var_samp_order_by | null),variance?: (team_roster_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "team_roster" */ -export interface team_roster_arr_rel_insert_input {data: team_roster_insert_input[], -/** upsert condition */ -on_conflict?: (team_roster_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface team_roster_avg_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "team_roster" */ -export interface team_roster_avg_order_by {player_steam_id?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "team_roster". All fields are combined with a logical 'AND'. */ -export interface team_roster_bool_exp {_and?: (team_roster_bool_exp[] | null),_not?: (team_roster_bool_exp | null),_or?: (team_roster_bool_exp[] | null),coach?: (Boolean_comparison_exp | null),player?: (players_bool_exp | null),player_steam_id?: (bigint_comparison_exp | null),role?: (e_team_roles_enum_comparison_exp | null),roster_image_url?: (String_comparison_exp | null),status?: (e_team_roster_statuses_enum_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "team_roster" */ -export interface team_roster_inc_input {player_steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "team_roster" */ -export interface team_roster_insert_input {coach?: (Scalars['Boolean'] | null),player?: (players_obj_rel_insert_input | null),player_steam_id?: (Scalars['bigint'] | null),role?: (e_team_roles_enum | null),roster_image_url?: (Scalars['String'] | null),status?: (e_team_roster_statuses_enum | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null)} - - -/** aggregate max on columns */ -export interface team_roster_max_fieldsGenqlSelection{ - player_steam_id?: boolean | number - roster_image_url?: boolean | number - team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "team_roster" */ -export interface team_roster_max_order_by {player_steam_id?: (order_by | null),roster_image_url?: (order_by | null),team_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface team_roster_min_fieldsGenqlSelection{ - player_steam_id?: boolean | number - roster_image_url?: boolean | number - team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "team_roster" */ -export interface team_roster_min_order_by {player_steam_id?: (order_by | null),roster_image_url?: (order_by | null),team_id?: (order_by | null)} - - -/** response of any mutation on the table "team_roster" */ -export interface team_roster_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: team_rosterGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "team_roster" */ -export interface team_roster_on_conflict {constraint: team_roster_constraint,update_columns?: team_roster_update_column[],where?: (team_roster_bool_exp | null)} - - -/** Ordering options when selecting data from "team_roster". */ -export interface team_roster_order_by {coach?: (order_by | null),player?: (players_order_by | null),player_steam_id?: (order_by | null),role?: (order_by | null),roster_image_url?: (order_by | null),status?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null)} - - -/** primary key columns input for table: team_roster */ -export interface team_roster_pk_columns_input {player_steam_id: Scalars['bigint'],team_id: Scalars['uuid']} - - -/** input type for updating data in table "team_roster" */ -export interface team_roster_set_input {coach?: (Scalars['Boolean'] | null),player_steam_id?: (Scalars['bigint'] | null),role?: (e_team_roles_enum | null),roster_image_url?: (Scalars['String'] | null),status?: (e_team_roster_statuses_enum | null),team_id?: (Scalars['uuid'] | null)} - - -/** aggregate stddev on columns */ -export interface team_roster_stddev_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "team_roster" */ -export interface team_roster_stddev_order_by {player_steam_id?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface team_roster_stddev_pop_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "team_roster" */ -export interface team_roster_stddev_pop_order_by {player_steam_id?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface team_roster_stddev_samp_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "team_roster" */ -export interface team_roster_stddev_samp_order_by {player_steam_id?: (order_by | null)} - - -/** Streaming cursor of the table "team_roster" */ -export interface team_roster_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: team_roster_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface team_roster_stream_cursor_value_input {coach?: (Scalars['Boolean'] | null),player_steam_id?: (Scalars['bigint'] | null),role?: (e_team_roles_enum | null),roster_image_url?: (Scalars['String'] | null),status?: (e_team_roster_statuses_enum | null),team_id?: (Scalars['uuid'] | null)} - - -/** aggregate sum on columns */ -export interface team_roster_sum_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "team_roster" */ -export interface team_roster_sum_order_by {player_steam_id?: (order_by | null)} - -export interface team_roster_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (team_roster_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (team_roster_set_input | null), -/** filter the rows which have to be updated */ -where: team_roster_bool_exp} - - -/** aggregate var_pop on columns */ -export interface team_roster_var_pop_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "team_roster" */ -export interface team_roster_var_pop_order_by {player_steam_id?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface team_roster_var_samp_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "team_roster" */ -export interface team_roster_var_samp_order_by {player_steam_id?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface team_roster_variance_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "team_roster" */ -export interface team_roster_variance_order_by {player_steam_id?: (order_by | null)} - - -/** columns and relationships of "team_scrim_alerts" */ -export interface team_scrim_alertsGenqlSelection{ - created_at?: boolean | number - elo_max?: boolean | number - elo_min?: boolean | number - enabled?: boolean | number - id?: boolean | number - last_notified_at?: boolean | number - regions?: boolean | number - /** An object relationship */ - team?: teamsGenqlSelection - team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "team_scrim_alerts" */ -export interface team_scrim_alerts_aggregateGenqlSelection{ - aggregate?: team_scrim_alerts_aggregate_fieldsGenqlSelection - nodes?: team_scrim_alertsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "team_scrim_alerts" */ -export interface team_scrim_alerts_aggregate_fieldsGenqlSelection{ - avg?: team_scrim_alerts_avg_fieldsGenqlSelection - count?: { __args: {columns?: (team_scrim_alerts_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: team_scrim_alerts_max_fieldsGenqlSelection - min?: team_scrim_alerts_min_fieldsGenqlSelection - stddev?: team_scrim_alerts_stddev_fieldsGenqlSelection - stddev_pop?: team_scrim_alerts_stddev_pop_fieldsGenqlSelection - stddev_samp?: team_scrim_alerts_stddev_samp_fieldsGenqlSelection - sum?: team_scrim_alerts_sum_fieldsGenqlSelection - var_pop?: team_scrim_alerts_var_pop_fieldsGenqlSelection - var_samp?: team_scrim_alerts_var_samp_fieldsGenqlSelection - variance?: team_scrim_alerts_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface team_scrim_alerts_avg_fieldsGenqlSelection{ - elo_max?: boolean | number - elo_min?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "team_scrim_alerts". All fields are combined with a logical 'AND'. */ -export interface team_scrim_alerts_bool_exp {_and?: (team_scrim_alerts_bool_exp[] | null),_not?: (team_scrim_alerts_bool_exp | null),_or?: (team_scrim_alerts_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),elo_max?: (Int_comparison_exp | null),elo_min?: (Int_comparison_exp | null),enabled?: (Boolean_comparison_exp | null),id?: (uuid_comparison_exp | null),last_notified_at?: (timestamptz_comparison_exp | null),regions?: (String_array_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "team_scrim_alerts" */ -export interface team_scrim_alerts_inc_input {elo_max?: (Scalars['Int'] | null),elo_min?: (Scalars['Int'] | null)} - - -/** input type for inserting data into table "team_scrim_alerts" */ -export interface team_scrim_alerts_insert_input {created_at?: (Scalars['timestamptz'] | null),elo_max?: (Scalars['Int'] | null),elo_min?: (Scalars['Int'] | null),enabled?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),last_notified_at?: (Scalars['timestamptz'] | null),regions?: (Scalars['String'][] | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null)} - - -/** aggregate max on columns */ -export interface team_scrim_alerts_max_fieldsGenqlSelection{ - created_at?: boolean | number - elo_max?: boolean | number - elo_min?: boolean | number - id?: boolean | number - last_notified_at?: boolean | number - regions?: boolean | number - team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface team_scrim_alerts_min_fieldsGenqlSelection{ - created_at?: boolean | number - elo_max?: boolean | number - elo_min?: boolean | number - id?: boolean | number - last_notified_at?: boolean | number - regions?: boolean | number - team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "team_scrim_alerts" */ -export interface team_scrim_alerts_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: team_scrim_alertsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "team_scrim_alerts" */ -export interface team_scrim_alerts_on_conflict {constraint: team_scrim_alerts_constraint,update_columns?: team_scrim_alerts_update_column[],where?: (team_scrim_alerts_bool_exp | null)} - - -/** Ordering options when selecting data from "team_scrim_alerts". */ -export interface team_scrim_alerts_order_by {created_at?: (order_by | null),elo_max?: (order_by | null),elo_min?: (order_by | null),enabled?: (order_by | null),id?: (order_by | null),last_notified_at?: (order_by | null),regions?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null)} - - -/** primary key columns input for table: team_scrim_alerts */ -export interface team_scrim_alerts_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "team_scrim_alerts" */ -export interface team_scrim_alerts_set_input {created_at?: (Scalars['timestamptz'] | null),elo_max?: (Scalars['Int'] | null),elo_min?: (Scalars['Int'] | null),enabled?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),last_notified_at?: (Scalars['timestamptz'] | null),regions?: (Scalars['String'][] | null),team_id?: (Scalars['uuid'] | null)} - - -/** aggregate stddev on columns */ -export interface team_scrim_alerts_stddev_fieldsGenqlSelection{ - elo_max?: boolean | number - elo_min?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface team_scrim_alerts_stddev_pop_fieldsGenqlSelection{ - elo_max?: boolean | number - elo_min?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface team_scrim_alerts_stddev_samp_fieldsGenqlSelection{ - elo_max?: boolean | number - elo_min?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "team_scrim_alerts" */ -export interface team_scrim_alerts_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: team_scrim_alerts_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface team_scrim_alerts_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),elo_max?: (Scalars['Int'] | null),elo_min?: (Scalars['Int'] | null),enabled?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),last_notified_at?: (Scalars['timestamptz'] | null),regions?: (Scalars['String'][] | null),team_id?: (Scalars['uuid'] | null)} - - -/** aggregate sum on columns */ -export interface team_scrim_alerts_sum_fieldsGenqlSelection{ - elo_max?: boolean | number - elo_min?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface team_scrim_alerts_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (team_scrim_alerts_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (team_scrim_alerts_set_input | null), -/** filter the rows which have to be updated */ -where: team_scrim_alerts_bool_exp} - - -/** aggregate var_pop on columns */ -export interface team_scrim_alerts_var_pop_fieldsGenqlSelection{ - elo_max?: boolean | number - elo_min?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface team_scrim_alerts_var_samp_fieldsGenqlSelection{ - elo_max?: boolean | number - elo_min?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface team_scrim_alerts_variance_fieldsGenqlSelection{ - elo_max?: boolean | number - elo_min?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "team_scrim_availability" */ -export interface team_scrim_availabilityGenqlSelection{ - created_at?: boolean | number - ends_at?: boolean | number - id?: boolean | number - recurring_weekly?: boolean | number - starts_at?: boolean | number - /** An object relationship */ - team?: teamsGenqlSelection - team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "team_scrim_availability" */ -export interface team_scrim_availability_aggregateGenqlSelection{ - aggregate?: team_scrim_availability_aggregate_fieldsGenqlSelection - nodes?: team_scrim_availabilityGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface team_scrim_availability_aggregate_bool_exp {bool_and?: (team_scrim_availability_aggregate_bool_exp_bool_and | null),bool_or?: (team_scrim_availability_aggregate_bool_exp_bool_or | null),count?: (team_scrim_availability_aggregate_bool_exp_count | null)} - -export interface team_scrim_availability_aggregate_bool_exp_bool_and {arguments: team_scrim_availability_select_column_team_scrim_availability_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (team_scrim_availability_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface team_scrim_availability_aggregate_bool_exp_bool_or {arguments: team_scrim_availability_select_column_team_scrim_availability_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (team_scrim_availability_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface team_scrim_availability_aggregate_bool_exp_count {arguments?: (team_scrim_availability_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (team_scrim_availability_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "team_scrim_availability" */ -export interface team_scrim_availability_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (team_scrim_availability_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: team_scrim_availability_max_fieldsGenqlSelection - min?: team_scrim_availability_min_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "team_scrim_availability" */ -export interface team_scrim_availability_aggregate_order_by {count?: (order_by | null),max?: (team_scrim_availability_max_order_by | null),min?: (team_scrim_availability_min_order_by | null)} - - -/** input type for inserting array relation for remote table "team_scrim_availability" */ -export interface team_scrim_availability_arr_rel_insert_input {data: team_scrim_availability_insert_input[], -/** upsert condition */ -on_conflict?: (team_scrim_availability_on_conflict | null)} - - -/** Boolean expression to filter rows from the table "team_scrim_availability". All fields are combined with a logical 'AND'. */ -export interface team_scrim_availability_bool_exp {_and?: (team_scrim_availability_bool_exp[] | null),_not?: (team_scrim_availability_bool_exp | null),_or?: (team_scrim_availability_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),ends_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),recurring_weekly?: (Boolean_comparison_exp | null),starts_at?: (timestamptz_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null)} - - -/** input type for inserting data into table "team_scrim_availability" */ -export interface team_scrim_availability_insert_input {created_at?: (Scalars['timestamptz'] | null),ends_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),recurring_weekly?: (Scalars['Boolean'] | null),starts_at?: (Scalars['timestamptz'] | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null)} - - -/** aggregate max on columns */ -export interface team_scrim_availability_max_fieldsGenqlSelection{ - created_at?: boolean | number - ends_at?: boolean | number - id?: boolean | number - starts_at?: boolean | number - team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "team_scrim_availability" */ -export interface team_scrim_availability_max_order_by {created_at?: (order_by | null),ends_at?: (order_by | null),id?: (order_by | null),starts_at?: (order_by | null),team_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface team_scrim_availability_min_fieldsGenqlSelection{ - created_at?: boolean | number - ends_at?: boolean | number - id?: boolean | number - starts_at?: boolean | number - team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "team_scrim_availability" */ -export interface team_scrim_availability_min_order_by {created_at?: (order_by | null),ends_at?: (order_by | null),id?: (order_by | null),starts_at?: (order_by | null),team_id?: (order_by | null)} - - -/** response of any mutation on the table "team_scrim_availability" */ -export interface team_scrim_availability_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: team_scrim_availabilityGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "team_scrim_availability" */ -export interface team_scrim_availability_on_conflict {constraint: team_scrim_availability_constraint,update_columns?: team_scrim_availability_update_column[],where?: (team_scrim_availability_bool_exp | null)} - - -/** Ordering options when selecting data from "team_scrim_availability". */ -export interface team_scrim_availability_order_by {created_at?: (order_by | null),ends_at?: (order_by | null),id?: (order_by | null),recurring_weekly?: (order_by | null),starts_at?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null)} - - -/** primary key columns input for table: team_scrim_availability */ -export interface team_scrim_availability_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "team_scrim_availability" */ -export interface team_scrim_availability_set_input {created_at?: (Scalars['timestamptz'] | null),ends_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),recurring_weekly?: (Scalars['Boolean'] | null),starts_at?: (Scalars['timestamptz'] | null),team_id?: (Scalars['uuid'] | null)} - - -/** Streaming cursor of the table "team_scrim_availability" */ -export interface team_scrim_availability_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: team_scrim_availability_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface team_scrim_availability_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),ends_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),recurring_weekly?: (Scalars['Boolean'] | null),starts_at?: (Scalars['timestamptz'] | null),team_id?: (Scalars['uuid'] | null)} - -export interface team_scrim_availability_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (team_scrim_availability_set_input | null), -/** filter the rows which have to be updated */ -where: team_scrim_availability_bool_exp} - - -/** columns and relationships of "team_scrim_request_proposals" */ -export interface team_scrim_request_proposalsGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - /** An object relationship */ - proposed_by?: playersGenqlSelection - proposed_by_steam_id?: boolean | number - /** An object relationship */ - proposed_by_team?: teamsGenqlSelection - proposed_by_team_id?: boolean | number - proposed_scheduled_at?: boolean | number - /** An object relationship */ - request?: team_scrim_requestsGenqlSelection - request_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "team_scrim_request_proposals" */ -export interface team_scrim_request_proposals_aggregateGenqlSelection{ - aggregate?: team_scrim_request_proposals_aggregate_fieldsGenqlSelection - nodes?: team_scrim_request_proposalsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface team_scrim_request_proposals_aggregate_bool_exp {count?: (team_scrim_request_proposals_aggregate_bool_exp_count | null)} - -export interface team_scrim_request_proposals_aggregate_bool_exp_count {arguments?: (team_scrim_request_proposals_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (team_scrim_request_proposals_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "team_scrim_request_proposals" */ -export interface team_scrim_request_proposals_aggregate_fieldsGenqlSelection{ - avg?: team_scrim_request_proposals_avg_fieldsGenqlSelection - count?: { __args: {columns?: (team_scrim_request_proposals_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: team_scrim_request_proposals_max_fieldsGenqlSelection - min?: team_scrim_request_proposals_min_fieldsGenqlSelection - stddev?: team_scrim_request_proposals_stddev_fieldsGenqlSelection - stddev_pop?: team_scrim_request_proposals_stddev_pop_fieldsGenqlSelection - stddev_samp?: team_scrim_request_proposals_stddev_samp_fieldsGenqlSelection - sum?: team_scrim_request_proposals_sum_fieldsGenqlSelection - var_pop?: team_scrim_request_proposals_var_pop_fieldsGenqlSelection - var_samp?: team_scrim_request_proposals_var_samp_fieldsGenqlSelection - variance?: team_scrim_request_proposals_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "team_scrim_request_proposals" */ -export interface team_scrim_request_proposals_aggregate_order_by {avg?: (team_scrim_request_proposals_avg_order_by | null),count?: (order_by | null),max?: (team_scrim_request_proposals_max_order_by | null),min?: (team_scrim_request_proposals_min_order_by | null),stddev?: (team_scrim_request_proposals_stddev_order_by | null),stddev_pop?: (team_scrim_request_proposals_stddev_pop_order_by | null),stddev_samp?: (team_scrim_request_proposals_stddev_samp_order_by | null),sum?: (team_scrim_request_proposals_sum_order_by | null),var_pop?: (team_scrim_request_proposals_var_pop_order_by | null),var_samp?: (team_scrim_request_proposals_var_samp_order_by | null),variance?: (team_scrim_request_proposals_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "team_scrim_request_proposals" */ -export interface team_scrim_request_proposals_arr_rel_insert_input {data: team_scrim_request_proposals_insert_input[], -/** upsert condition */ -on_conflict?: (team_scrim_request_proposals_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface team_scrim_request_proposals_avg_fieldsGenqlSelection{ - proposed_by_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "team_scrim_request_proposals" */ -export interface team_scrim_request_proposals_avg_order_by {proposed_by_steam_id?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "team_scrim_request_proposals". All fields are combined with a logical 'AND'. */ -export interface team_scrim_request_proposals_bool_exp {_and?: (team_scrim_request_proposals_bool_exp[] | null),_not?: (team_scrim_request_proposals_bool_exp | null),_or?: (team_scrim_request_proposals_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),proposed_by?: (players_bool_exp | null),proposed_by_steam_id?: (bigint_comparison_exp | null),proposed_by_team?: (teams_bool_exp | null),proposed_by_team_id?: (uuid_comparison_exp | null),proposed_scheduled_at?: (timestamptz_comparison_exp | null),request?: (team_scrim_requests_bool_exp | null),request_id?: (uuid_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "team_scrim_request_proposals" */ -export interface team_scrim_request_proposals_inc_input {proposed_by_steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "team_scrim_request_proposals" */ -export interface team_scrim_request_proposals_insert_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),proposed_by?: (players_obj_rel_insert_input | null),proposed_by_steam_id?: (Scalars['bigint'] | null),proposed_by_team?: (teams_obj_rel_insert_input | null),proposed_by_team_id?: (Scalars['uuid'] | null),proposed_scheduled_at?: (Scalars['timestamptz'] | null),request?: (team_scrim_requests_obj_rel_insert_input | null),request_id?: (Scalars['uuid'] | null)} - - -/** aggregate max on columns */ -export interface team_scrim_request_proposals_max_fieldsGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - proposed_by_steam_id?: boolean | number - proposed_by_team_id?: boolean | number - proposed_scheduled_at?: boolean | number - request_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "team_scrim_request_proposals" */ -export interface team_scrim_request_proposals_max_order_by {created_at?: (order_by | null),id?: (order_by | null),proposed_by_steam_id?: (order_by | null),proposed_by_team_id?: (order_by | null),proposed_scheduled_at?: (order_by | null),request_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface team_scrim_request_proposals_min_fieldsGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - proposed_by_steam_id?: boolean | number - proposed_by_team_id?: boolean | number - proposed_scheduled_at?: boolean | number - request_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "team_scrim_request_proposals" */ -export interface team_scrim_request_proposals_min_order_by {created_at?: (order_by | null),id?: (order_by | null),proposed_by_steam_id?: (order_by | null),proposed_by_team_id?: (order_by | null),proposed_scheduled_at?: (order_by | null),request_id?: (order_by | null)} - - -/** response of any mutation on the table "team_scrim_request_proposals" */ -export interface team_scrim_request_proposals_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: team_scrim_request_proposalsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "team_scrim_request_proposals" */ -export interface team_scrim_request_proposals_on_conflict {constraint: team_scrim_request_proposals_constraint,update_columns?: team_scrim_request_proposals_update_column[],where?: (team_scrim_request_proposals_bool_exp | null)} - - -/** Ordering options when selecting data from "team_scrim_request_proposals". */ -export interface team_scrim_request_proposals_order_by {created_at?: (order_by | null),id?: (order_by | null),proposed_by?: (players_order_by | null),proposed_by_steam_id?: (order_by | null),proposed_by_team?: (teams_order_by | null),proposed_by_team_id?: (order_by | null),proposed_scheduled_at?: (order_by | null),request?: (team_scrim_requests_order_by | null),request_id?: (order_by | null)} - - -/** primary key columns input for table: team_scrim_request_proposals */ -export interface team_scrim_request_proposals_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "team_scrim_request_proposals" */ -export interface team_scrim_request_proposals_set_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),proposed_by_steam_id?: (Scalars['bigint'] | null),proposed_by_team_id?: (Scalars['uuid'] | null),proposed_scheduled_at?: (Scalars['timestamptz'] | null),request_id?: (Scalars['uuid'] | null)} - - -/** aggregate stddev on columns */ -export interface team_scrim_request_proposals_stddev_fieldsGenqlSelection{ - proposed_by_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "team_scrim_request_proposals" */ -export interface team_scrim_request_proposals_stddev_order_by {proposed_by_steam_id?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface team_scrim_request_proposals_stddev_pop_fieldsGenqlSelection{ - proposed_by_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "team_scrim_request_proposals" */ -export interface team_scrim_request_proposals_stddev_pop_order_by {proposed_by_steam_id?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface team_scrim_request_proposals_stddev_samp_fieldsGenqlSelection{ - proposed_by_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "team_scrim_request_proposals" */ -export interface team_scrim_request_proposals_stddev_samp_order_by {proposed_by_steam_id?: (order_by | null)} - - -/** Streaming cursor of the table "team_scrim_request_proposals" */ -export interface team_scrim_request_proposals_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: team_scrim_request_proposals_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface team_scrim_request_proposals_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),proposed_by_steam_id?: (Scalars['bigint'] | null),proposed_by_team_id?: (Scalars['uuid'] | null),proposed_scheduled_at?: (Scalars['timestamptz'] | null),request_id?: (Scalars['uuid'] | null)} - - -/** aggregate sum on columns */ -export interface team_scrim_request_proposals_sum_fieldsGenqlSelection{ - proposed_by_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "team_scrim_request_proposals" */ -export interface team_scrim_request_proposals_sum_order_by {proposed_by_steam_id?: (order_by | null)} - -export interface team_scrim_request_proposals_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (team_scrim_request_proposals_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (team_scrim_request_proposals_set_input | null), -/** filter the rows which have to be updated */ -where: team_scrim_request_proposals_bool_exp} - - -/** aggregate var_pop on columns */ -export interface team_scrim_request_proposals_var_pop_fieldsGenqlSelection{ - proposed_by_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "team_scrim_request_proposals" */ -export interface team_scrim_request_proposals_var_pop_order_by {proposed_by_steam_id?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface team_scrim_request_proposals_var_samp_fieldsGenqlSelection{ - proposed_by_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "team_scrim_request_proposals" */ -export interface team_scrim_request_proposals_var_samp_order_by {proposed_by_steam_id?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface team_scrim_request_proposals_variance_fieldsGenqlSelection{ - proposed_by_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "team_scrim_request_proposals" */ -export interface team_scrim_request_proposals_variance_order_by {proposed_by_steam_id?: (order_by | null)} - - -/** columns and relationships of "team_scrim_requests" */ -export interface team_scrim_requestsGenqlSelection{ - auto_generated?: boolean | number - /** An object relationship */ - awaiting_team?: teamsGenqlSelection - awaiting_team_id?: boolean | number - canceled_by_team_id?: boolean | number - canceled_late?: boolean | number - created_at?: boolean | number - expires_at?: boolean | number - /** An object relationship */ - from_team?: teamsGenqlSelection - from_team_checked_in?: boolean | number - from_team_id?: boolean | number - id?: boolean | number - /** An object relationship */ - match?: matchesGenqlSelection - match_id?: boolean | number - /** An object relationship */ - match_options?: match_optionsGenqlSelection - match_options_id?: boolean | number - /** Terminal match status captured by tbd_match_cancel_scrim before the match row is deleted, so v_team_reputation survives canceled-match GC. */ - match_outcome?: boolean | number - /** An array relationship */ - proposals?: (team_scrim_request_proposalsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (team_scrim_request_proposals_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_request_proposals_order_by[] | null), - /** filter the rows returned */ - where?: (team_scrim_request_proposals_bool_exp | null)} }) - /** An aggregate relationship */ - proposals_aggregate?: (team_scrim_request_proposals_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (team_scrim_request_proposals_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_request_proposals_order_by[] | null), - /** filter the rows returned */ - where?: (team_scrim_request_proposals_bool_exp | null)} }) - proposed_scheduled_at?: boolean | number - region?: boolean | number - /** An object relationship */ - requested_by?: playersGenqlSelection - requested_by_steam_id?: boolean | number - responded_at?: boolean | number - status?: boolean | number - /** An object relationship */ - to_team?: teamsGenqlSelection - to_team_checked_in?: boolean | number - to_team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "team_scrim_requests" */ -export interface team_scrim_requests_aggregateGenqlSelection{ - aggregate?: team_scrim_requests_aggregate_fieldsGenqlSelection - nodes?: team_scrim_requestsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface team_scrim_requests_aggregate_bool_exp {bool_and?: (team_scrim_requests_aggregate_bool_exp_bool_and | null),bool_or?: (team_scrim_requests_aggregate_bool_exp_bool_or | null),count?: (team_scrim_requests_aggregate_bool_exp_count | null)} - -export interface team_scrim_requests_aggregate_bool_exp_bool_and {arguments: team_scrim_requests_select_column_team_scrim_requests_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (team_scrim_requests_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface team_scrim_requests_aggregate_bool_exp_bool_or {arguments: team_scrim_requests_select_column_team_scrim_requests_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (team_scrim_requests_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface team_scrim_requests_aggregate_bool_exp_count {arguments?: (team_scrim_requests_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (team_scrim_requests_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "team_scrim_requests" */ -export interface team_scrim_requests_aggregate_fieldsGenqlSelection{ - avg?: team_scrim_requests_avg_fieldsGenqlSelection - count?: { __args: {columns?: (team_scrim_requests_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: team_scrim_requests_max_fieldsGenqlSelection - min?: team_scrim_requests_min_fieldsGenqlSelection - stddev?: team_scrim_requests_stddev_fieldsGenqlSelection - stddev_pop?: team_scrim_requests_stddev_pop_fieldsGenqlSelection - stddev_samp?: team_scrim_requests_stddev_samp_fieldsGenqlSelection - sum?: team_scrim_requests_sum_fieldsGenqlSelection - var_pop?: team_scrim_requests_var_pop_fieldsGenqlSelection - var_samp?: team_scrim_requests_var_samp_fieldsGenqlSelection - variance?: team_scrim_requests_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "team_scrim_requests" */ -export interface team_scrim_requests_aggregate_order_by {avg?: (team_scrim_requests_avg_order_by | null),count?: (order_by | null),max?: (team_scrim_requests_max_order_by | null),min?: (team_scrim_requests_min_order_by | null),stddev?: (team_scrim_requests_stddev_order_by | null),stddev_pop?: (team_scrim_requests_stddev_pop_order_by | null),stddev_samp?: (team_scrim_requests_stddev_samp_order_by | null),sum?: (team_scrim_requests_sum_order_by | null),var_pop?: (team_scrim_requests_var_pop_order_by | null),var_samp?: (team_scrim_requests_var_samp_order_by | null),variance?: (team_scrim_requests_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "team_scrim_requests" */ -export interface team_scrim_requests_arr_rel_insert_input {data: team_scrim_requests_insert_input[], -/** upsert condition */ -on_conflict?: (team_scrim_requests_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface team_scrim_requests_avg_fieldsGenqlSelection{ - requested_by_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "team_scrim_requests" */ -export interface team_scrim_requests_avg_order_by {requested_by_steam_id?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "team_scrim_requests". All fields are combined with a logical 'AND'. */ -export interface team_scrim_requests_bool_exp {_and?: (team_scrim_requests_bool_exp[] | null),_not?: (team_scrim_requests_bool_exp | null),_or?: (team_scrim_requests_bool_exp[] | null),auto_generated?: (Boolean_comparison_exp | null),awaiting_team?: (teams_bool_exp | null),awaiting_team_id?: (uuid_comparison_exp | null),canceled_by_team_id?: (uuid_comparison_exp | null),canceled_late?: (Boolean_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),expires_at?: (timestamptz_comparison_exp | null),from_team?: (teams_bool_exp | null),from_team_checked_in?: (Boolean_comparison_exp | null),from_team_id?: (uuid_comparison_exp | null),id?: (uuid_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_options?: (match_options_bool_exp | null),match_options_id?: (uuid_comparison_exp | null),match_outcome?: (String_comparison_exp | null),proposals?: (team_scrim_request_proposals_bool_exp | null),proposals_aggregate?: (team_scrim_request_proposals_aggregate_bool_exp | null),proposed_scheduled_at?: (timestamptz_comparison_exp | null),region?: (String_comparison_exp | null),requested_by?: (players_bool_exp | null),requested_by_steam_id?: (bigint_comparison_exp | null),responded_at?: (timestamptz_comparison_exp | null),status?: (e_scrim_request_statuses_enum_comparison_exp | null),to_team?: (teams_bool_exp | null),to_team_checked_in?: (Boolean_comparison_exp | null),to_team_id?: (uuid_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "team_scrim_requests" */ -export interface team_scrim_requests_inc_input {requested_by_steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "team_scrim_requests" */ -export interface team_scrim_requests_insert_input {auto_generated?: (Scalars['Boolean'] | null),awaiting_team?: (teams_obj_rel_insert_input | null),awaiting_team_id?: (Scalars['uuid'] | null),canceled_by_team_id?: (Scalars['uuid'] | null),canceled_late?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),expires_at?: (Scalars['timestamptz'] | null),from_team?: (teams_obj_rel_insert_input | null),from_team_checked_in?: (Scalars['Boolean'] | null),from_team_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_options?: (match_options_obj_rel_insert_input | null),match_options_id?: (Scalars['uuid'] | null), -/** Terminal match status captured by tbd_match_cancel_scrim before the match row is deleted, so v_team_reputation survives canceled-match GC. */ -match_outcome?: (Scalars['String'] | null),proposals?: (team_scrim_request_proposals_arr_rel_insert_input | null),proposed_scheduled_at?: (Scalars['timestamptz'] | null),region?: (Scalars['String'] | null),requested_by?: (players_obj_rel_insert_input | null),requested_by_steam_id?: (Scalars['bigint'] | null),responded_at?: (Scalars['timestamptz'] | null),status?: (e_scrim_request_statuses_enum | null),to_team?: (teams_obj_rel_insert_input | null),to_team_checked_in?: (Scalars['Boolean'] | null),to_team_id?: (Scalars['uuid'] | null)} - - -/** aggregate max on columns */ -export interface team_scrim_requests_max_fieldsGenqlSelection{ - awaiting_team_id?: boolean | number - canceled_by_team_id?: boolean | number - created_at?: boolean | number - expires_at?: boolean | number - from_team_id?: boolean | number - id?: boolean | number - match_id?: boolean | number - match_options_id?: boolean | number - /** Terminal match status captured by tbd_match_cancel_scrim before the match row is deleted, so v_team_reputation survives canceled-match GC. */ - match_outcome?: boolean | number - proposed_scheduled_at?: boolean | number - region?: boolean | number - requested_by_steam_id?: boolean | number - responded_at?: boolean | number - to_team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "team_scrim_requests" */ -export interface team_scrim_requests_max_order_by {awaiting_team_id?: (order_by | null),canceled_by_team_id?: (order_by | null),created_at?: (order_by | null),expires_at?: (order_by | null),from_team_id?: (order_by | null),id?: (order_by | null),match_id?: (order_by | null),match_options_id?: (order_by | null), -/** Terminal match status captured by tbd_match_cancel_scrim before the match row is deleted, so v_team_reputation survives canceled-match GC. */ -match_outcome?: (order_by | null),proposed_scheduled_at?: (order_by | null),region?: (order_by | null),requested_by_steam_id?: (order_by | null),responded_at?: (order_by | null),to_team_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface team_scrim_requests_min_fieldsGenqlSelection{ - awaiting_team_id?: boolean | number - canceled_by_team_id?: boolean | number - created_at?: boolean | number - expires_at?: boolean | number - from_team_id?: boolean | number - id?: boolean | number - match_id?: boolean | number - match_options_id?: boolean | number - /** Terminal match status captured by tbd_match_cancel_scrim before the match row is deleted, so v_team_reputation survives canceled-match GC. */ - match_outcome?: boolean | number - proposed_scheduled_at?: boolean | number - region?: boolean | number - requested_by_steam_id?: boolean | number - responded_at?: boolean | number - to_team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "team_scrim_requests" */ -export interface team_scrim_requests_min_order_by {awaiting_team_id?: (order_by | null),canceled_by_team_id?: (order_by | null),created_at?: (order_by | null),expires_at?: (order_by | null),from_team_id?: (order_by | null),id?: (order_by | null),match_id?: (order_by | null),match_options_id?: (order_by | null), -/** Terminal match status captured by tbd_match_cancel_scrim before the match row is deleted, so v_team_reputation survives canceled-match GC. */ -match_outcome?: (order_by | null),proposed_scheduled_at?: (order_by | null),region?: (order_by | null),requested_by_steam_id?: (order_by | null),responded_at?: (order_by | null),to_team_id?: (order_by | null)} - - -/** response of any mutation on the table "team_scrim_requests" */ -export interface team_scrim_requests_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: team_scrim_requestsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "team_scrim_requests" */ -export interface team_scrim_requests_obj_rel_insert_input {data: team_scrim_requests_insert_input, -/** upsert condition */ -on_conflict?: (team_scrim_requests_on_conflict | null)} - - -/** on_conflict condition type for table "team_scrim_requests" */ -export interface team_scrim_requests_on_conflict {constraint: team_scrim_requests_constraint,update_columns?: team_scrim_requests_update_column[],where?: (team_scrim_requests_bool_exp | null)} - - -/** Ordering options when selecting data from "team_scrim_requests". */ -export interface team_scrim_requests_order_by {auto_generated?: (order_by | null),awaiting_team?: (teams_order_by | null),awaiting_team_id?: (order_by | null),canceled_by_team_id?: (order_by | null),canceled_late?: (order_by | null),created_at?: (order_by | null),expires_at?: (order_by | null),from_team?: (teams_order_by | null),from_team_checked_in?: (order_by | null),from_team_id?: (order_by | null),id?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_options?: (match_options_order_by | null),match_options_id?: (order_by | null),match_outcome?: (order_by | null),proposals_aggregate?: (team_scrim_request_proposals_aggregate_order_by | null),proposed_scheduled_at?: (order_by | null),region?: (order_by | null),requested_by?: (players_order_by | null),requested_by_steam_id?: (order_by | null),responded_at?: (order_by | null),status?: (order_by | null),to_team?: (teams_order_by | null),to_team_checked_in?: (order_by | null),to_team_id?: (order_by | null)} - - -/** primary key columns input for table: team_scrim_requests */ -export interface team_scrim_requests_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "team_scrim_requests" */ -export interface team_scrim_requests_set_input {auto_generated?: (Scalars['Boolean'] | null),awaiting_team_id?: (Scalars['uuid'] | null),canceled_by_team_id?: (Scalars['uuid'] | null),canceled_late?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),expires_at?: (Scalars['timestamptz'] | null),from_team_checked_in?: (Scalars['Boolean'] | null),from_team_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null), -/** Terminal match status captured by tbd_match_cancel_scrim before the match row is deleted, so v_team_reputation survives canceled-match GC. */ -match_outcome?: (Scalars['String'] | null),proposed_scheduled_at?: (Scalars['timestamptz'] | null),region?: (Scalars['String'] | null),requested_by_steam_id?: (Scalars['bigint'] | null),responded_at?: (Scalars['timestamptz'] | null),status?: (e_scrim_request_statuses_enum | null),to_team_checked_in?: (Scalars['Boolean'] | null),to_team_id?: (Scalars['uuid'] | null)} - - -/** aggregate stddev on columns */ -export interface team_scrim_requests_stddev_fieldsGenqlSelection{ - requested_by_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "team_scrim_requests" */ -export interface team_scrim_requests_stddev_order_by {requested_by_steam_id?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface team_scrim_requests_stddev_pop_fieldsGenqlSelection{ - requested_by_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "team_scrim_requests" */ -export interface team_scrim_requests_stddev_pop_order_by {requested_by_steam_id?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface team_scrim_requests_stddev_samp_fieldsGenqlSelection{ - requested_by_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "team_scrim_requests" */ -export interface team_scrim_requests_stddev_samp_order_by {requested_by_steam_id?: (order_by | null)} - - -/** Streaming cursor of the table "team_scrim_requests" */ -export interface team_scrim_requests_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: team_scrim_requests_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface team_scrim_requests_stream_cursor_value_input {auto_generated?: (Scalars['Boolean'] | null),awaiting_team_id?: (Scalars['uuid'] | null),canceled_by_team_id?: (Scalars['uuid'] | null),canceled_late?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),expires_at?: (Scalars['timestamptz'] | null),from_team_checked_in?: (Scalars['Boolean'] | null),from_team_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null), -/** Terminal match status captured by tbd_match_cancel_scrim before the match row is deleted, so v_team_reputation survives canceled-match GC. */ -match_outcome?: (Scalars['String'] | null),proposed_scheduled_at?: (Scalars['timestamptz'] | null),region?: (Scalars['String'] | null),requested_by_steam_id?: (Scalars['bigint'] | null),responded_at?: (Scalars['timestamptz'] | null),status?: (e_scrim_request_statuses_enum | null),to_team_checked_in?: (Scalars['Boolean'] | null),to_team_id?: (Scalars['uuid'] | null)} - - -/** aggregate sum on columns */ -export interface team_scrim_requests_sum_fieldsGenqlSelection{ - requested_by_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "team_scrim_requests" */ -export interface team_scrim_requests_sum_order_by {requested_by_steam_id?: (order_by | null)} - -export interface team_scrim_requests_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (team_scrim_requests_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (team_scrim_requests_set_input | null), -/** filter the rows which have to be updated */ -where: team_scrim_requests_bool_exp} - - -/** aggregate var_pop on columns */ -export interface team_scrim_requests_var_pop_fieldsGenqlSelection{ - requested_by_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "team_scrim_requests" */ -export interface team_scrim_requests_var_pop_order_by {requested_by_steam_id?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface team_scrim_requests_var_samp_fieldsGenqlSelection{ - requested_by_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "team_scrim_requests" */ -export interface team_scrim_requests_var_samp_order_by {requested_by_steam_id?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface team_scrim_requests_variance_fieldsGenqlSelection{ - requested_by_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "team_scrim_requests" */ -export interface team_scrim_requests_variance_order_by {requested_by_steam_id?: (order_by | null)} - - -/** columns and relationships of "team_scrim_settings" */ -export interface team_scrim_settingsGenqlSelection{ - allow_outside_availability?: boolean | number - created_at?: boolean | number - elo_max?: boolean | number - elo_min?: boolean | number - enabled?: boolean | number - id?: boolean | number - map_ids?: boolean | number - notes?: boolean | number - regions?: boolean | number - /** An object relationship */ - team?: teamsGenqlSelection - team_id?: boolean | number - updated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "team_scrim_settings" */ -export interface team_scrim_settings_aggregateGenqlSelection{ - aggregate?: team_scrim_settings_aggregate_fieldsGenqlSelection - nodes?: team_scrim_settingsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "team_scrim_settings" */ -export interface team_scrim_settings_aggregate_fieldsGenqlSelection{ - avg?: team_scrim_settings_avg_fieldsGenqlSelection - count?: { __args: {columns?: (team_scrim_settings_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: team_scrim_settings_max_fieldsGenqlSelection - min?: team_scrim_settings_min_fieldsGenqlSelection - stddev?: team_scrim_settings_stddev_fieldsGenqlSelection - stddev_pop?: team_scrim_settings_stddev_pop_fieldsGenqlSelection - stddev_samp?: team_scrim_settings_stddev_samp_fieldsGenqlSelection - sum?: team_scrim_settings_sum_fieldsGenqlSelection - var_pop?: team_scrim_settings_var_pop_fieldsGenqlSelection - var_samp?: team_scrim_settings_var_samp_fieldsGenqlSelection - variance?: team_scrim_settings_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface team_scrim_settings_avg_fieldsGenqlSelection{ - elo_max?: boolean | number - elo_min?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "team_scrim_settings". All fields are combined with a logical 'AND'. */ -export interface team_scrim_settings_bool_exp {_and?: (team_scrim_settings_bool_exp[] | null),_not?: (team_scrim_settings_bool_exp | null),_or?: (team_scrim_settings_bool_exp[] | null),allow_outside_availability?: (Boolean_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),elo_max?: (Int_comparison_exp | null),elo_min?: (Int_comparison_exp | null),enabled?: (Boolean_comparison_exp | null),id?: (uuid_comparison_exp | null),map_ids?: (uuid_array_comparison_exp | null),notes?: (String_comparison_exp | null),regions?: (String_array_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "team_scrim_settings" */ -export interface team_scrim_settings_inc_input {elo_max?: (Scalars['Int'] | null),elo_min?: (Scalars['Int'] | null)} - - -/** input type for inserting data into table "team_scrim_settings" */ -export interface team_scrim_settings_insert_input {allow_outside_availability?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),elo_max?: (Scalars['Int'] | null),elo_min?: (Scalars['Int'] | null),enabled?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),map_ids?: (Scalars['uuid'][] | null),notes?: (Scalars['String'] | null),regions?: (Scalars['String'][] | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null)} - - -/** aggregate max on columns */ -export interface team_scrim_settings_max_fieldsGenqlSelection{ - created_at?: boolean | number - elo_max?: boolean | number - elo_min?: boolean | number - id?: boolean | number - map_ids?: boolean | number - notes?: boolean | number - regions?: boolean | number - team_id?: boolean | number - updated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface team_scrim_settings_min_fieldsGenqlSelection{ - created_at?: boolean | number - elo_max?: boolean | number - elo_min?: boolean | number - id?: boolean | number - map_ids?: boolean | number - notes?: boolean | number - regions?: boolean | number - team_id?: boolean | number - updated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "team_scrim_settings" */ -export interface team_scrim_settings_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: team_scrim_settingsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "team_scrim_settings" */ -export interface team_scrim_settings_obj_rel_insert_input {data: team_scrim_settings_insert_input, -/** upsert condition */ -on_conflict?: (team_scrim_settings_on_conflict | null)} - - -/** on_conflict condition type for table "team_scrim_settings" */ -export interface team_scrim_settings_on_conflict {constraint: team_scrim_settings_constraint,update_columns?: team_scrim_settings_update_column[],where?: (team_scrim_settings_bool_exp | null)} - - -/** Ordering options when selecting data from "team_scrim_settings". */ -export interface team_scrim_settings_order_by {allow_outside_availability?: (order_by | null),created_at?: (order_by | null),elo_max?: (order_by | null),elo_min?: (order_by | null),enabled?: (order_by | null),id?: (order_by | null),map_ids?: (order_by | null),notes?: (order_by | null),regions?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null),updated_at?: (order_by | null)} - - -/** primary key columns input for table: team_scrim_settings */ -export interface team_scrim_settings_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "team_scrim_settings" */ -export interface team_scrim_settings_set_input {allow_outside_availability?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),elo_max?: (Scalars['Int'] | null),elo_min?: (Scalars['Int'] | null),enabled?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),map_ids?: (Scalars['uuid'][] | null),notes?: (Scalars['String'] | null),regions?: (Scalars['String'][] | null),team_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null)} - - -/** aggregate stddev on columns */ -export interface team_scrim_settings_stddev_fieldsGenqlSelection{ - elo_max?: boolean | number - elo_min?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface team_scrim_settings_stddev_pop_fieldsGenqlSelection{ - elo_max?: boolean | number - elo_min?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface team_scrim_settings_stddev_samp_fieldsGenqlSelection{ - elo_max?: boolean | number - elo_min?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "team_scrim_settings" */ -export interface team_scrim_settings_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: team_scrim_settings_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface team_scrim_settings_stream_cursor_value_input {allow_outside_availability?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),elo_max?: (Scalars['Int'] | null),elo_min?: (Scalars['Int'] | null),enabled?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),map_ids?: (Scalars['uuid'][] | null),notes?: (Scalars['String'] | null),regions?: (Scalars['String'][] | null),team_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null)} - - -/** aggregate sum on columns */ -export interface team_scrim_settings_sum_fieldsGenqlSelection{ - elo_max?: boolean | number - elo_min?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface team_scrim_settings_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (team_scrim_settings_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (team_scrim_settings_set_input | null), -/** filter the rows which have to be updated */ -where: team_scrim_settings_bool_exp} - - -/** aggregate var_pop on columns */ -export interface team_scrim_settings_var_pop_fieldsGenqlSelection{ - elo_max?: boolean | number - elo_min?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface team_scrim_settings_var_samp_fieldsGenqlSelection{ - elo_max?: boolean | number - elo_min?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface team_scrim_settings_variance_fieldsGenqlSelection{ - elo_max?: boolean | number - elo_min?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "team_suggestions" */ -export interface team_suggestionsGenqlSelection{ - created_at?: boolean | number - group_hash?: boolean | number - id?: boolean | number - last_notified_at?: boolean | number - member_steam_ids?: boolean | number - status?: boolean | number - together_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "team_suggestions" */ -export interface team_suggestions_aggregateGenqlSelection{ - aggregate?: team_suggestions_aggregate_fieldsGenqlSelection - nodes?: team_suggestionsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "team_suggestions" */ -export interface team_suggestions_aggregate_fieldsGenqlSelection{ - avg?: team_suggestions_avg_fieldsGenqlSelection - count?: { __args: {columns?: (team_suggestions_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: team_suggestions_max_fieldsGenqlSelection - min?: team_suggestions_min_fieldsGenqlSelection - stddev?: team_suggestions_stddev_fieldsGenqlSelection - stddev_pop?: team_suggestions_stddev_pop_fieldsGenqlSelection - stddev_samp?: team_suggestions_stddev_samp_fieldsGenqlSelection - sum?: team_suggestions_sum_fieldsGenqlSelection - var_pop?: team_suggestions_var_pop_fieldsGenqlSelection - var_samp?: team_suggestions_var_samp_fieldsGenqlSelection - variance?: team_suggestions_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface team_suggestions_avg_fieldsGenqlSelection{ - together_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "team_suggestions". All fields are combined with a logical 'AND'. */ -export interface team_suggestions_bool_exp {_and?: (team_suggestions_bool_exp[] | null),_not?: (team_suggestions_bool_exp | null),_or?: (team_suggestions_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),group_hash?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),last_notified_at?: (timestamptz_comparison_exp | null),member_steam_ids?: (bigint_array_comparison_exp | null),status?: (String_comparison_exp | null),together_count?: (Int_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "team_suggestions" */ -export interface team_suggestions_inc_input {together_count?: (Scalars['Int'] | null)} - - -/** input type for inserting data into table "team_suggestions" */ -export interface team_suggestions_insert_input {created_at?: (Scalars['timestamptz'] | null),group_hash?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),last_notified_at?: (Scalars['timestamptz'] | null),member_steam_ids?: (Scalars['bigint'][] | null),status?: (Scalars['String'] | null),together_count?: (Scalars['Int'] | null)} - - -/** aggregate max on columns */ -export interface team_suggestions_max_fieldsGenqlSelection{ - created_at?: boolean | number - group_hash?: boolean | number - id?: boolean | number - last_notified_at?: boolean | number - member_steam_ids?: boolean | number - status?: boolean | number - together_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface team_suggestions_min_fieldsGenqlSelection{ - created_at?: boolean | number - group_hash?: boolean | number - id?: boolean | number - last_notified_at?: boolean | number - member_steam_ids?: boolean | number - status?: boolean | number - together_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "team_suggestions" */ -export interface team_suggestions_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: team_suggestionsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "team_suggestions" */ -export interface team_suggestions_on_conflict {constraint: team_suggestions_constraint,update_columns?: team_suggestions_update_column[],where?: (team_suggestions_bool_exp | null)} - - -/** Ordering options when selecting data from "team_suggestions". */ -export interface team_suggestions_order_by {created_at?: (order_by | null),group_hash?: (order_by | null),id?: (order_by | null),last_notified_at?: (order_by | null),member_steam_ids?: (order_by | null),status?: (order_by | null),together_count?: (order_by | null)} - - -/** primary key columns input for table: team_suggestions */ -export interface team_suggestions_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "team_suggestions" */ -export interface team_suggestions_set_input {created_at?: (Scalars['timestamptz'] | null),group_hash?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),last_notified_at?: (Scalars['timestamptz'] | null),member_steam_ids?: (Scalars['bigint'][] | null),status?: (Scalars['String'] | null),together_count?: (Scalars['Int'] | null)} - - -/** aggregate stddev on columns */ -export interface team_suggestions_stddev_fieldsGenqlSelection{ - together_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface team_suggestions_stddev_pop_fieldsGenqlSelection{ - together_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface team_suggestions_stddev_samp_fieldsGenqlSelection{ - together_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "team_suggestions" */ -export interface team_suggestions_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: team_suggestions_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface team_suggestions_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),group_hash?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),last_notified_at?: (Scalars['timestamptz'] | null),member_steam_ids?: (Scalars['bigint'][] | null),status?: (Scalars['String'] | null),together_count?: (Scalars['Int'] | null)} - - -/** aggregate sum on columns */ -export interface team_suggestions_sum_fieldsGenqlSelection{ - together_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface team_suggestions_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (team_suggestions_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (team_suggestions_set_input | null), -/** filter the rows which have to be updated */ -where: team_suggestions_bool_exp} - - -/** aggregate var_pop on columns */ -export interface team_suggestions_var_pop_fieldsGenqlSelection{ - together_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface team_suggestions_var_samp_fieldsGenqlSelection{ - together_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface team_suggestions_variance_fieldsGenqlSelection{ - together_count?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "teams" */ -export interface teamsGenqlSelection{ - avatar_url?: boolean | number - /** 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)} }) - /** A computed field, executes function "can_change_team_role" */ - can_change_role?: boolean | number - /** A computed field, executes function "can_invite_to_team" */ - can_invite?: boolean | number - /** A computed field, executes function "can_manage_team_scrims" */ - can_manage_scrims?: boolean | number - /** A computed field, executes function "can_remove_from_team" */ - can_remove?: boolean | number - /** An object relationship */ - captain?: playersGenqlSelection - captain_steam_id?: boolean | number - id?: boolean | number - /** An array relationship */ - invites?: (team_invitesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (team_invites_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_invites_order_by[] | null), - /** filter the rows returned */ - where?: (team_invites_bool_exp | null)} }) - /** An aggregate relationship */ - invites_aggregate?: (team_invites_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (team_invites_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_invites_order_by[] | null), - /** filter the rows returned */ - where?: (team_invites_bool_exp | null)} }) - is_organization?: boolean | number - /** An array relationship */ - match_lineups?: (match_lineupsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_lineups_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_lineups_order_by[] | null), - /** filter the rows returned */ - where?: (match_lineups_bool_exp | null)} }) - /** An aggregate relationship */ - match_lineups_aggregate?: (match_lineups_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_lineups_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_lineups_order_by[] | null), - /** filter the rows returned */ - where?: (match_lineups_bool_exp | null)} }) - /** A computed field, executes function "get_team_matches" */ - 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)} }) - name?: boolean | number - /** An object relationship */ - owner?: playersGenqlSelection - owner_steam_id?: boolean | number - /** An object relationship */ - ranks?: v_team_ranksGenqlSelection - /** An object relationship */ - reputation?: v_team_reputationGenqlSelection - /** A computed field, executes function "team_role" */ - role?: boolean | number - /** An array relationship */ - roster?: (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 */ - roster_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 */ - scrim_availability?: (team_scrim_availabilityGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (team_scrim_availability_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_availability_order_by[] | null), - /** filter the rows returned */ - where?: (team_scrim_availability_bool_exp | null)} }) - /** An aggregate relationship */ - scrim_availability_aggregate?: (team_scrim_availability_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (team_scrim_availability_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_availability_order_by[] | null), - /** filter the rows returned */ - where?: (team_scrim_availability_bool_exp | null)} }) - /** An object relationship */ - scrim_settings?: team_scrim_settingsGenqlSelection - short_name?: boolean | number - /** An array relationship */ - tournament_teams?: (tournament_teamsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_teams_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (tournament_teams_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_teams_bool_exp | null)} }) - /** An aggregate relationship */ - tournament_teams_aggregate?: (tournament_teams_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_teams_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (tournament_teams_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_teams_bool_exp | null)} }) - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "teams" */ -export interface teams_aggregateGenqlSelection{ - aggregate?: teams_aggregate_fieldsGenqlSelection - nodes?: teamsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface teams_aggregate_bool_exp {bool_and?: (teams_aggregate_bool_exp_bool_and | null),bool_or?: (teams_aggregate_bool_exp_bool_or | null),count?: (teams_aggregate_bool_exp_count | null)} - -export interface teams_aggregate_bool_exp_bool_and {arguments: teams_select_column_teams_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (teams_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface teams_aggregate_bool_exp_bool_or {arguments: teams_select_column_teams_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (teams_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface teams_aggregate_bool_exp_count {arguments?: (teams_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (teams_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "teams" */ -export interface teams_aggregate_fieldsGenqlSelection{ - avg?: teams_avg_fieldsGenqlSelection - count?: { __args: {columns?: (teams_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: teams_max_fieldsGenqlSelection - min?: teams_min_fieldsGenqlSelection - stddev?: teams_stddev_fieldsGenqlSelection - stddev_pop?: teams_stddev_pop_fieldsGenqlSelection - stddev_samp?: teams_stddev_samp_fieldsGenqlSelection - sum?: teams_sum_fieldsGenqlSelection - var_pop?: teams_var_pop_fieldsGenqlSelection - var_samp?: teams_var_samp_fieldsGenqlSelection - variance?: teams_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "teams" */ -export interface teams_aggregate_order_by {avg?: (teams_avg_order_by | null),count?: (order_by | null),max?: (teams_max_order_by | null),min?: (teams_min_order_by | null),stddev?: (teams_stddev_order_by | null),stddev_pop?: (teams_stddev_pop_order_by | null),stddev_samp?: (teams_stddev_samp_order_by | null),sum?: (teams_sum_order_by | null),var_pop?: (teams_var_pop_order_by | null),var_samp?: (teams_var_samp_order_by | null),variance?: (teams_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "teams" */ -export interface teams_arr_rel_insert_input {data: teams_insert_input[], -/** upsert condition */ -on_conflict?: (teams_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface teams_avg_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - owner_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "teams" */ -export interface teams_avg_order_by {captain_steam_id?: (order_by | null),owner_steam_id?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "teams". All fields are combined with a logical 'AND'. */ -export interface teams_bool_exp {_and?: (teams_bool_exp[] | null),_not?: (teams_bool_exp | null),_or?: (teams_bool_exp[] | null),avatar_url?: (String_comparison_exp | null),awards?: (award_recipients_bool_exp | null),awards_aggregate?: (award_recipients_aggregate_bool_exp | null),can_change_role?: (Boolean_comparison_exp | null),can_invite?: (Boolean_comparison_exp | null),can_manage_scrims?: (Boolean_comparison_exp | null),can_remove?: (Boolean_comparison_exp | null),captain?: (players_bool_exp | null),captain_steam_id?: (bigint_comparison_exp | null),id?: (uuid_comparison_exp | null),invites?: (team_invites_bool_exp | null),invites_aggregate?: (team_invites_aggregate_bool_exp | null),is_organization?: (Boolean_comparison_exp | null),match_lineups?: (match_lineups_bool_exp | null),match_lineups_aggregate?: (match_lineups_aggregate_bool_exp | null),matches?: (matches_bool_exp | null),name?: (String_comparison_exp | null),owner?: (players_bool_exp | null),owner_steam_id?: (bigint_comparison_exp | null),ranks?: (v_team_ranks_bool_exp | null),reputation?: (v_team_reputation_bool_exp | null),role?: (String_comparison_exp | null),roster?: (team_roster_bool_exp | null),roster_aggregate?: (team_roster_aggregate_bool_exp | null),scrim_availability?: (team_scrim_availability_bool_exp | null),scrim_availability_aggregate?: (team_scrim_availability_aggregate_bool_exp | null),scrim_settings?: (team_scrim_settings_bool_exp | null),short_name?: (String_comparison_exp | null),tournament_teams?: (tournament_teams_bool_exp | null),tournament_teams_aggregate?: (tournament_teams_aggregate_bool_exp | null)} - - -/** input type for incrementing numeric columns in table "teams" */ -export interface teams_inc_input {captain_steam_id?: (Scalars['bigint'] | null),owner_steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "teams" */ -export interface teams_insert_input {avatar_url?: (Scalars['String'] | null),awards?: (award_recipients_arr_rel_insert_input | null),captain?: (players_obj_rel_insert_input | null),captain_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),invites?: (team_invites_arr_rel_insert_input | null),is_organization?: (Scalars['Boolean'] | null),match_lineups?: (match_lineups_arr_rel_insert_input | null),name?: (Scalars['String'] | null),owner?: (players_obj_rel_insert_input | null),owner_steam_id?: (Scalars['bigint'] | null),ranks?: (v_team_ranks_obj_rel_insert_input | null),reputation?: (v_team_reputation_obj_rel_insert_input | null),roster?: (team_roster_arr_rel_insert_input | null),scrim_availability?: (team_scrim_availability_arr_rel_insert_input | null),scrim_settings?: (team_scrim_settings_obj_rel_insert_input | null),short_name?: (Scalars['String'] | null),tournament_teams?: (tournament_teams_arr_rel_insert_input | null)} - - -/** aggregate max on columns */ -export interface teams_max_fieldsGenqlSelection{ - avatar_url?: boolean | number - captain_steam_id?: boolean | number - id?: boolean | number - name?: boolean | number - owner_steam_id?: boolean | number - /** A computed field, executes function "team_role" */ - role?: boolean | number - short_name?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "teams" */ -export interface teams_max_order_by {avatar_url?: (order_by | null),captain_steam_id?: (order_by | null),id?: (order_by | null),name?: (order_by | null),owner_steam_id?: (order_by | null),short_name?: (order_by | null)} - - -/** aggregate min on columns */ -export interface teams_min_fieldsGenqlSelection{ - avatar_url?: boolean | number - captain_steam_id?: boolean | number - id?: boolean | number - name?: boolean | number - owner_steam_id?: boolean | number - /** A computed field, executes function "team_role" */ - role?: boolean | number - short_name?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "teams" */ -export interface teams_min_order_by {avatar_url?: (order_by | null),captain_steam_id?: (order_by | null),id?: (order_by | null),name?: (order_by | null),owner_steam_id?: (order_by | null),short_name?: (order_by | null)} - - -/** response of any mutation on the table "teams" */ -export interface teams_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: teamsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "teams" */ -export interface teams_obj_rel_insert_input {data: teams_insert_input, -/** upsert condition */ -on_conflict?: (teams_on_conflict | null)} - - -/** on_conflict condition type for table "teams" */ -export interface teams_on_conflict {constraint: teams_constraint,update_columns?: teams_update_column[],where?: (teams_bool_exp | null)} - - -/** Ordering options when selecting data from "teams". */ -export interface teams_order_by {avatar_url?: (order_by | null),awards_aggregate?: (award_recipients_aggregate_order_by | null),can_change_role?: (order_by | null),can_invite?: (order_by | null),can_manage_scrims?: (order_by | null),can_remove?: (order_by | null),captain?: (players_order_by | null),captain_steam_id?: (order_by | null),id?: (order_by | null),invites_aggregate?: (team_invites_aggregate_order_by | null),is_organization?: (order_by | null),match_lineups_aggregate?: (match_lineups_aggregate_order_by | null),matches_aggregate?: (matches_aggregate_order_by | null),name?: (order_by | null),owner?: (players_order_by | null),owner_steam_id?: (order_by | null),ranks?: (v_team_ranks_order_by | null),reputation?: (v_team_reputation_order_by | null),role?: (order_by | null),roster_aggregate?: (team_roster_aggregate_order_by | null),scrim_availability_aggregate?: (team_scrim_availability_aggregate_order_by | null),scrim_settings?: (team_scrim_settings_order_by | null),short_name?: (order_by | null),tournament_teams_aggregate?: (tournament_teams_aggregate_order_by | null)} - - -/** primary key columns input for table: teams */ -export interface teams_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "teams" */ -export interface teams_set_input {avatar_url?: (Scalars['String'] | null),captain_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),is_organization?: (Scalars['Boolean'] | null),name?: (Scalars['String'] | null),owner_steam_id?: (Scalars['bigint'] | null),short_name?: (Scalars['String'] | null)} - - -/** aggregate stddev on columns */ -export interface teams_stddev_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - owner_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "teams" */ -export interface teams_stddev_order_by {captain_steam_id?: (order_by | null),owner_steam_id?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface teams_stddev_pop_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - owner_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "teams" */ -export interface teams_stddev_pop_order_by {captain_steam_id?: (order_by | null),owner_steam_id?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface teams_stddev_samp_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - owner_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "teams" */ -export interface teams_stddev_samp_order_by {captain_steam_id?: (order_by | null),owner_steam_id?: (order_by | null)} - - -/** Streaming cursor of the table "teams" */ -export interface teams_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: teams_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface teams_stream_cursor_value_input {avatar_url?: (Scalars['String'] | null),captain_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),is_organization?: (Scalars['Boolean'] | null),name?: (Scalars['String'] | null),owner_steam_id?: (Scalars['bigint'] | null),short_name?: (Scalars['String'] | null)} - - -/** aggregate sum on columns */ -export interface teams_sum_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - owner_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "teams" */ -export interface teams_sum_order_by {captain_steam_id?: (order_by | null),owner_steam_id?: (order_by | null)} - -export interface teams_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (teams_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (teams_set_input | null), -/** filter the rows which have to be updated */ -where: teams_bool_exp} - - -/** aggregate var_pop on columns */ -export interface teams_var_pop_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - owner_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "teams" */ -export interface teams_var_pop_order_by {captain_steam_id?: (order_by | null),owner_steam_id?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface teams_var_samp_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - owner_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "teams" */ -export interface teams_var_samp_order_by {captain_steam_id?: (order_by | null),owner_steam_id?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface teams_variance_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - owner_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "teams" */ -export interface teams_variance_order_by {captain_steam_id?: (order_by | null),owner_steam_id?: (order_by | null)} - - -/** Boolean expression to compare columns of type "time". All fields are combined with logical 'AND'. */ -export interface time_comparison_exp {_eq?: (Scalars['time'] | null),_gt?: (Scalars['time'] | null),_gte?: (Scalars['time'] | null),_in?: (Scalars['time'][] | null),_is_null?: (Scalars['Boolean'] | null),_lt?: (Scalars['time'] | null),_lte?: (Scalars['time'] | null),_neq?: (Scalars['time'] | null),_nin?: (Scalars['time'][] | null)} - - -/** Boolean expression to compare columns of type "timestamptz". All fields are combined with logical 'AND'. */ -export interface timestamptz_comparison_exp {_eq?: (Scalars['timestamptz'] | null),_gt?: (Scalars['timestamptz'] | null),_gte?: (Scalars['timestamptz'] | null),_in?: (Scalars['timestamptz'][] | null),_is_null?: (Scalars['Boolean'] | null),_lt?: (Scalars['timestamptz'] | null),_lte?: (Scalars['timestamptz'] | null),_neq?: (Scalars['timestamptz'] | null),_nin?: (Scalars['timestamptz'][] | null)} - - -/** columns and relationships of "tournament_awards" */ -export interface tournament_awardsGenqlSelection{ - /** An object relationship */ - award?: awardsGenqlSelection - award_id?: boolean | number - created_at?: boolean | number - custom_name?: boolean | number - id?: boolean | number - image_url?: boolean | number - placement?: boolean | number - silhouette?: boolean | number - /** An object relationship */ - tournament?: tournamentsGenqlSelection - tournament_id?: boolean | number - updated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "tournament_awards" */ -export interface tournament_awards_aggregateGenqlSelection{ - aggregate?: tournament_awards_aggregate_fieldsGenqlSelection - nodes?: tournament_awardsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface tournament_awards_aggregate_bool_exp {count?: (tournament_awards_aggregate_bool_exp_count | null)} - -export interface tournament_awards_aggregate_bool_exp_count {arguments?: (tournament_awards_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (tournament_awards_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "tournament_awards" */ -export interface tournament_awards_aggregate_fieldsGenqlSelection{ - avg?: tournament_awards_avg_fieldsGenqlSelection - count?: { __args: {columns?: (tournament_awards_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: tournament_awards_max_fieldsGenqlSelection - min?: tournament_awards_min_fieldsGenqlSelection - stddev?: tournament_awards_stddev_fieldsGenqlSelection - stddev_pop?: tournament_awards_stddev_pop_fieldsGenqlSelection - stddev_samp?: tournament_awards_stddev_samp_fieldsGenqlSelection - sum?: tournament_awards_sum_fieldsGenqlSelection - var_pop?: tournament_awards_var_pop_fieldsGenqlSelection - var_samp?: tournament_awards_var_samp_fieldsGenqlSelection - variance?: tournament_awards_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "tournament_awards" */ -export interface tournament_awards_aggregate_order_by {avg?: (tournament_awards_avg_order_by | null),count?: (order_by | null),max?: (tournament_awards_max_order_by | null),min?: (tournament_awards_min_order_by | null),stddev?: (tournament_awards_stddev_order_by | null),stddev_pop?: (tournament_awards_stddev_pop_order_by | null),stddev_samp?: (tournament_awards_stddev_samp_order_by | null),sum?: (tournament_awards_sum_order_by | null),var_pop?: (tournament_awards_var_pop_order_by | null),var_samp?: (tournament_awards_var_samp_order_by | null),variance?: (tournament_awards_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "tournament_awards" */ -export interface tournament_awards_arr_rel_insert_input {data: tournament_awards_insert_input[], -/** upsert condition */ -on_conflict?: (tournament_awards_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface tournament_awards_avg_fieldsGenqlSelection{ - placement?: boolean | number - silhouette?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "tournament_awards" */ -export interface tournament_awards_avg_order_by {placement?: (order_by | null),silhouette?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "tournament_awards". All fields are combined with a logical 'AND'. */ -export interface tournament_awards_bool_exp {_and?: (tournament_awards_bool_exp[] | null),_not?: (tournament_awards_bool_exp | null),_or?: (tournament_awards_bool_exp[] | null),award?: (awards_bool_exp | null),award_id?: (uuid_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),custom_name?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),image_url?: (String_comparison_exp | null),placement?: (Int_comparison_exp | null),silhouette?: (Int_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "tournament_awards" */ -export interface tournament_awards_inc_input {placement?: (Scalars['Int'] | null),silhouette?: (Scalars['Int'] | null)} - - -/** input type for inserting data into table "tournament_awards" */ -export interface tournament_awards_insert_input {award?: (awards_obj_rel_insert_input | null),award_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),custom_name?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),image_url?: (Scalars['String'] | null),placement?: (Scalars['Int'] | null),silhouette?: (Scalars['Int'] | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null)} - - -/** aggregate max on columns */ -export interface tournament_awards_max_fieldsGenqlSelection{ - award_id?: boolean | number - created_at?: boolean | number - custom_name?: boolean | number - id?: boolean | number - image_url?: boolean | number - placement?: boolean | number - silhouette?: boolean | number - tournament_id?: boolean | number - updated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "tournament_awards" */ -export interface tournament_awards_max_order_by {award_id?: (order_by | null),created_at?: (order_by | null),custom_name?: (order_by | null),id?: (order_by | null),image_url?: (order_by | null),placement?: (order_by | null),silhouette?: (order_by | null),tournament_id?: (order_by | null),updated_at?: (order_by | null)} - - -/** aggregate min on columns */ -export interface tournament_awards_min_fieldsGenqlSelection{ - award_id?: boolean | number - created_at?: boolean | number - custom_name?: boolean | number - id?: boolean | number - image_url?: boolean | number - placement?: boolean | number - silhouette?: boolean | number - tournament_id?: boolean | number - updated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "tournament_awards" */ -export interface tournament_awards_min_order_by {award_id?: (order_by | null),created_at?: (order_by | null),custom_name?: (order_by | null),id?: (order_by | null),image_url?: (order_by | null),placement?: (order_by | null),silhouette?: (order_by | null),tournament_id?: (order_by | null),updated_at?: (order_by | null)} - - -/** response of any mutation on the table "tournament_awards" */ -export interface tournament_awards_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: tournament_awardsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "tournament_awards" */ -export interface tournament_awards_obj_rel_insert_input {data: tournament_awards_insert_input, -/** upsert condition */ -on_conflict?: (tournament_awards_on_conflict | null)} - - -/** on_conflict condition type for table "tournament_awards" */ -export interface tournament_awards_on_conflict {constraint: tournament_awards_constraint,update_columns?: tournament_awards_update_column[],where?: (tournament_awards_bool_exp | null)} - - -/** Ordering options when selecting data from "tournament_awards". */ -export interface tournament_awards_order_by {award?: (awards_order_by | null),award_id?: (order_by | null),created_at?: (order_by | null),custom_name?: (order_by | null),id?: (order_by | null),image_url?: (order_by | null),placement?: (order_by | null),silhouette?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null),updated_at?: (order_by | null)} - - -/** primary key columns input for table: tournament_awards */ -export interface tournament_awards_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "tournament_awards" */ -export interface tournament_awards_set_input {award_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),custom_name?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),image_url?: (Scalars['String'] | null),placement?: (Scalars['Int'] | null),silhouette?: (Scalars['Int'] | null),tournament_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null)} - - -/** aggregate stddev on columns */ -export interface tournament_awards_stddev_fieldsGenqlSelection{ - placement?: boolean | number - silhouette?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "tournament_awards" */ -export interface tournament_awards_stddev_order_by {placement?: (order_by | null),silhouette?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface tournament_awards_stddev_pop_fieldsGenqlSelection{ - placement?: boolean | number - silhouette?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "tournament_awards" */ -export interface tournament_awards_stddev_pop_order_by {placement?: (order_by | null),silhouette?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface tournament_awards_stddev_samp_fieldsGenqlSelection{ - placement?: boolean | number - silhouette?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "tournament_awards" */ -export interface tournament_awards_stddev_samp_order_by {placement?: (order_by | null),silhouette?: (order_by | null)} - - -/** Streaming cursor of the table "tournament_awards" */ -export interface tournament_awards_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: tournament_awards_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface tournament_awards_stream_cursor_value_input {award_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),custom_name?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),image_url?: (Scalars['String'] | null),placement?: (Scalars['Int'] | null),silhouette?: (Scalars['Int'] | null),tournament_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null)} - - -/** aggregate sum on columns */ -export interface tournament_awards_sum_fieldsGenqlSelection{ - placement?: boolean | number - silhouette?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "tournament_awards" */ -export interface tournament_awards_sum_order_by {placement?: (order_by | null),silhouette?: (order_by | null)} - -export interface tournament_awards_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (tournament_awards_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (tournament_awards_set_input | null), -/** filter the rows which have to be updated */ -where: tournament_awards_bool_exp} - - -/** aggregate var_pop on columns */ -export interface tournament_awards_var_pop_fieldsGenqlSelection{ - placement?: boolean | number - silhouette?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "tournament_awards" */ -export interface tournament_awards_var_pop_order_by {placement?: (order_by | null),silhouette?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface tournament_awards_var_samp_fieldsGenqlSelection{ - placement?: boolean | number - silhouette?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "tournament_awards" */ -export interface tournament_awards_var_samp_order_by {placement?: (order_by | null),silhouette?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface tournament_awards_variance_fieldsGenqlSelection{ - placement?: boolean | number - silhouette?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "tournament_awards" */ -export interface tournament_awards_variance_order_by {placement?: (order_by | null),silhouette?: (order_by | null)} - - -/** columns and relationships of "tournament_brackets" */ -export interface tournament_bracketsGenqlSelection{ - bye?: boolean | number - created_at?: boolean | number - /** A computed field, executes function "get_feeding_brackets" */ - feeding_brackets?: (tournament_bracketsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_brackets_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_brackets_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_brackets_bool_exp | null)} }) - finished?: boolean | number - group?: boolean | number - id?: boolean | number - /** An object relationship */ - loser_bracket?: tournament_bracketsGenqlSelection - loser_parent_bracket_id?: boolean | number - /** An object relationship */ - match?: matchesGenqlSelection - match_id?: boolean | number - match_number?: boolean | number - match_options_id?: boolean | number - /** An object relationship */ - options?: match_optionsGenqlSelection - /** An object relationship */ - parent_bracket?: tournament_bracketsGenqlSelection - parent_bracket_id?: boolean | number - path?: boolean | number - round?: boolean | number - scheduled_at?: boolean | number - scheduled_eta?: boolean | number - /** An array relationship */ - scheduling_proposals?: (league_scheduling_proposalsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_scheduling_proposals_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_scheduling_proposals_order_by[] | null), - /** filter the rows returned */ - where?: (league_scheduling_proposals_bool_exp | null)} }) - /** An aggregate relationship */ - scheduling_proposals_aggregate?: (league_scheduling_proposals_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (league_scheduling_proposals_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (league_scheduling_proposals_order_by[] | null), - /** filter the rows returned */ - where?: (league_scheduling_proposals_bool_exp | null)} }) - /** An object relationship */ - stage?: tournament_stagesGenqlSelection - /** An object relationship */ - team_1?: tournament_teamsGenqlSelection - team_1_seed?: boolean | number - /** An object relationship */ - team_2?: tournament_teamsGenqlSelection - team_2_seed?: boolean | number - tournament_stage_id?: boolean | number - tournament_team_id_1?: boolean | number - tournament_team_id_2?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "tournament_brackets" */ -export interface tournament_brackets_aggregateGenqlSelection{ - aggregate?: tournament_brackets_aggregate_fieldsGenqlSelection - nodes?: tournament_bracketsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface tournament_brackets_aggregate_bool_exp {bool_and?: (tournament_brackets_aggregate_bool_exp_bool_and | null),bool_or?: (tournament_brackets_aggregate_bool_exp_bool_or | null),count?: (tournament_brackets_aggregate_bool_exp_count | null)} - -export interface tournament_brackets_aggregate_bool_exp_bool_and {arguments: tournament_brackets_select_column_tournament_brackets_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (tournament_brackets_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface tournament_brackets_aggregate_bool_exp_bool_or {arguments: tournament_brackets_select_column_tournament_brackets_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (tournament_brackets_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface tournament_brackets_aggregate_bool_exp_count {arguments?: (tournament_brackets_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (tournament_brackets_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "tournament_brackets" */ -export interface tournament_brackets_aggregate_fieldsGenqlSelection{ - avg?: tournament_brackets_avg_fieldsGenqlSelection - count?: { __args: {columns?: (tournament_brackets_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: tournament_brackets_max_fieldsGenqlSelection - min?: tournament_brackets_min_fieldsGenqlSelection - stddev?: tournament_brackets_stddev_fieldsGenqlSelection - stddev_pop?: tournament_brackets_stddev_pop_fieldsGenqlSelection - stddev_samp?: tournament_brackets_stddev_samp_fieldsGenqlSelection - sum?: tournament_brackets_sum_fieldsGenqlSelection - var_pop?: tournament_brackets_var_pop_fieldsGenqlSelection - var_samp?: tournament_brackets_var_samp_fieldsGenqlSelection - variance?: tournament_brackets_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "tournament_brackets" */ -export interface tournament_brackets_aggregate_order_by {avg?: (tournament_brackets_avg_order_by | null),count?: (order_by | null),max?: (tournament_brackets_max_order_by | null),min?: (tournament_brackets_min_order_by | null),stddev?: (tournament_brackets_stddev_order_by | null),stddev_pop?: (tournament_brackets_stddev_pop_order_by | null),stddev_samp?: (tournament_brackets_stddev_samp_order_by | null),sum?: (tournament_brackets_sum_order_by | null),var_pop?: (tournament_brackets_var_pop_order_by | null),var_samp?: (tournament_brackets_var_samp_order_by | null),variance?: (tournament_brackets_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "tournament_brackets" */ -export interface tournament_brackets_arr_rel_insert_input {data: tournament_brackets_insert_input[], -/** upsert condition */ -on_conflict?: (tournament_brackets_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface tournament_brackets_avg_fieldsGenqlSelection{ - group?: boolean | number - match_number?: boolean | number - round?: boolean | number - team_1_seed?: boolean | number - team_2_seed?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "tournament_brackets" */ -export interface tournament_brackets_avg_order_by {group?: (order_by | null),match_number?: (order_by | null),round?: (order_by | null),team_1_seed?: (order_by | null),team_2_seed?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "tournament_brackets". All fields are combined with a logical 'AND'. */ -export interface tournament_brackets_bool_exp {_and?: (tournament_brackets_bool_exp[] | null),_not?: (tournament_brackets_bool_exp | null),_or?: (tournament_brackets_bool_exp[] | null),bye?: (Boolean_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),feeding_brackets?: (tournament_brackets_bool_exp | null),finished?: (Boolean_comparison_exp | null),group?: (numeric_comparison_exp | null),id?: (uuid_comparison_exp | null),loser_bracket?: (tournament_brackets_bool_exp | null),loser_parent_bracket_id?: (uuid_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_number?: (Int_comparison_exp | null),match_options_id?: (uuid_comparison_exp | null),options?: (match_options_bool_exp | null),parent_bracket?: (tournament_brackets_bool_exp | null),parent_bracket_id?: (uuid_comparison_exp | null),path?: (String_comparison_exp | null),round?: (Int_comparison_exp | null),scheduled_at?: (timestamptz_comparison_exp | null),scheduled_eta?: (timestamptz_comparison_exp | null),scheduling_proposals?: (league_scheduling_proposals_bool_exp | null),scheduling_proposals_aggregate?: (league_scheduling_proposals_aggregate_bool_exp | null),stage?: (tournament_stages_bool_exp | null),team_1?: (tournament_teams_bool_exp | null),team_1_seed?: (Int_comparison_exp | null),team_2?: (tournament_teams_bool_exp | null),team_2_seed?: (Int_comparison_exp | null),tournament_stage_id?: (uuid_comparison_exp | null),tournament_team_id_1?: (uuid_comparison_exp | null),tournament_team_id_2?: (uuid_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "tournament_brackets" */ -export interface tournament_brackets_inc_input {group?: (Scalars['numeric'] | null),match_number?: (Scalars['Int'] | null),round?: (Scalars['Int'] | null),team_1_seed?: (Scalars['Int'] | null),team_2_seed?: (Scalars['Int'] | null)} - - -/** input type for inserting data into table "tournament_brackets" */ -export interface tournament_brackets_insert_input {bye?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),finished?: (Scalars['Boolean'] | null),group?: (Scalars['numeric'] | null),id?: (Scalars['uuid'] | null),loser_bracket?: (tournament_brackets_obj_rel_insert_input | null),loser_parent_bracket_id?: (Scalars['uuid'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_number?: (Scalars['Int'] | null),match_options_id?: (Scalars['uuid'] | null),options?: (match_options_obj_rel_insert_input | null),parent_bracket?: (tournament_brackets_obj_rel_insert_input | null),parent_bracket_id?: (Scalars['uuid'] | null),path?: (Scalars['String'] | null),round?: (Scalars['Int'] | null),scheduled_at?: (Scalars['timestamptz'] | null),scheduled_eta?: (Scalars['timestamptz'] | null),scheduling_proposals?: (league_scheduling_proposals_arr_rel_insert_input | null),stage?: (tournament_stages_obj_rel_insert_input | null),team_1?: (tournament_teams_obj_rel_insert_input | null),team_1_seed?: (Scalars['Int'] | null),team_2?: (tournament_teams_obj_rel_insert_input | null),team_2_seed?: (Scalars['Int'] | null),tournament_stage_id?: (Scalars['uuid'] | null),tournament_team_id_1?: (Scalars['uuid'] | null),tournament_team_id_2?: (Scalars['uuid'] | null)} - - -/** aggregate max on columns */ -export interface tournament_brackets_max_fieldsGenqlSelection{ - created_at?: boolean | number - group?: boolean | number - id?: boolean | number - loser_parent_bracket_id?: boolean | number - match_id?: boolean | number - match_number?: boolean | number - match_options_id?: boolean | number - parent_bracket_id?: boolean | number - path?: boolean | number - round?: boolean | number - scheduled_at?: boolean | number - scheduled_eta?: boolean | number - team_1_seed?: boolean | number - team_2_seed?: boolean | number - tournament_stage_id?: boolean | number - tournament_team_id_1?: boolean | number - tournament_team_id_2?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "tournament_brackets" */ -export interface tournament_brackets_max_order_by {created_at?: (order_by | null),group?: (order_by | null),id?: (order_by | null),loser_parent_bracket_id?: (order_by | null),match_id?: (order_by | null),match_number?: (order_by | null),match_options_id?: (order_by | null),parent_bracket_id?: (order_by | null),path?: (order_by | null),round?: (order_by | null),scheduled_at?: (order_by | null),scheduled_eta?: (order_by | null),team_1_seed?: (order_by | null),team_2_seed?: (order_by | null),tournament_stage_id?: (order_by | null),tournament_team_id_1?: (order_by | null),tournament_team_id_2?: (order_by | null)} - - -/** aggregate min on columns */ -export interface tournament_brackets_min_fieldsGenqlSelection{ - created_at?: boolean | number - group?: boolean | number - id?: boolean | number - loser_parent_bracket_id?: boolean | number - match_id?: boolean | number - match_number?: boolean | number - match_options_id?: boolean | number - parent_bracket_id?: boolean | number - path?: boolean | number - round?: boolean | number - scheduled_at?: boolean | number - scheduled_eta?: boolean | number - team_1_seed?: boolean | number - team_2_seed?: boolean | number - tournament_stage_id?: boolean | number - tournament_team_id_1?: boolean | number - tournament_team_id_2?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "tournament_brackets" */ -export interface tournament_brackets_min_order_by {created_at?: (order_by | null),group?: (order_by | null),id?: (order_by | null),loser_parent_bracket_id?: (order_by | null),match_id?: (order_by | null),match_number?: (order_by | null),match_options_id?: (order_by | null),parent_bracket_id?: (order_by | null),path?: (order_by | null),round?: (order_by | null),scheduled_at?: (order_by | null),scheduled_eta?: (order_by | null),team_1_seed?: (order_by | null),team_2_seed?: (order_by | null),tournament_stage_id?: (order_by | null),tournament_team_id_1?: (order_by | null),tournament_team_id_2?: (order_by | null)} - - -/** response of any mutation on the table "tournament_brackets" */ -export interface tournament_brackets_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: tournament_bracketsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "tournament_brackets" */ -export interface tournament_brackets_obj_rel_insert_input {data: tournament_brackets_insert_input, -/** upsert condition */ -on_conflict?: (tournament_brackets_on_conflict | null)} - - -/** on_conflict condition type for table "tournament_brackets" */ -export interface tournament_brackets_on_conflict {constraint: tournament_brackets_constraint,update_columns?: tournament_brackets_update_column[],where?: (tournament_brackets_bool_exp | null)} - - -/** Ordering options when selecting data from "tournament_brackets". */ -export interface tournament_brackets_order_by {bye?: (order_by | null),created_at?: (order_by | null),feeding_brackets_aggregate?: (tournament_brackets_aggregate_order_by | null),finished?: (order_by | null),group?: (order_by | null),id?: (order_by | null),loser_bracket?: (tournament_brackets_order_by | null),loser_parent_bracket_id?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_number?: (order_by | null),match_options_id?: (order_by | null),options?: (match_options_order_by | null),parent_bracket?: (tournament_brackets_order_by | null),parent_bracket_id?: (order_by | null),path?: (order_by | null),round?: (order_by | null),scheduled_at?: (order_by | null),scheduled_eta?: (order_by | null),scheduling_proposals_aggregate?: (league_scheduling_proposals_aggregate_order_by | null),stage?: (tournament_stages_order_by | null),team_1?: (tournament_teams_order_by | null),team_1_seed?: (order_by | null),team_2?: (tournament_teams_order_by | null),team_2_seed?: (order_by | null),tournament_stage_id?: (order_by | null),tournament_team_id_1?: (order_by | null),tournament_team_id_2?: (order_by | null)} - - -/** primary key columns input for table: tournament_brackets */ -export interface tournament_brackets_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "tournament_brackets" */ -export interface tournament_brackets_set_input {bye?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),finished?: (Scalars['Boolean'] | null),group?: (Scalars['numeric'] | null),id?: (Scalars['uuid'] | null),loser_parent_bracket_id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),match_number?: (Scalars['Int'] | null),match_options_id?: (Scalars['uuid'] | null),parent_bracket_id?: (Scalars['uuid'] | null),path?: (Scalars['String'] | null),round?: (Scalars['Int'] | null),scheduled_at?: (Scalars['timestamptz'] | null),scheduled_eta?: (Scalars['timestamptz'] | null),team_1_seed?: (Scalars['Int'] | null),team_2_seed?: (Scalars['Int'] | null),tournament_stage_id?: (Scalars['uuid'] | null),tournament_team_id_1?: (Scalars['uuid'] | null),tournament_team_id_2?: (Scalars['uuid'] | null)} - - -/** aggregate stddev on columns */ -export interface tournament_brackets_stddev_fieldsGenqlSelection{ - group?: boolean | number - match_number?: boolean | number - round?: boolean | number - team_1_seed?: boolean | number - team_2_seed?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "tournament_brackets" */ -export interface tournament_brackets_stddev_order_by {group?: (order_by | null),match_number?: (order_by | null),round?: (order_by | null),team_1_seed?: (order_by | null),team_2_seed?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface tournament_brackets_stddev_pop_fieldsGenqlSelection{ - group?: boolean | number - match_number?: boolean | number - round?: boolean | number - team_1_seed?: boolean | number - team_2_seed?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "tournament_brackets" */ -export interface tournament_brackets_stddev_pop_order_by {group?: (order_by | null),match_number?: (order_by | null),round?: (order_by | null),team_1_seed?: (order_by | null),team_2_seed?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface tournament_brackets_stddev_samp_fieldsGenqlSelection{ - group?: boolean | number - match_number?: boolean | number - round?: boolean | number - team_1_seed?: boolean | number - team_2_seed?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "tournament_brackets" */ -export interface tournament_brackets_stddev_samp_order_by {group?: (order_by | null),match_number?: (order_by | null),round?: (order_by | null),team_1_seed?: (order_by | null),team_2_seed?: (order_by | null)} - - -/** Streaming cursor of the table "tournament_brackets" */ -export interface tournament_brackets_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: tournament_brackets_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface tournament_brackets_stream_cursor_value_input {bye?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),finished?: (Scalars['Boolean'] | null),group?: (Scalars['numeric'] | null),id?: (Scalars['uuid'] | null),loser_parent_bracket_id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),match_number?: (Scalars['Int'] | null),match_options_id?: (Scalars['uuid'] | null),parent_bracket_id?: (Scalars['uuid'] | null),path?: (Scalars['String'] | null),round?: (Scalars['Int'] | null),scheduled_at?: (Scalars['timestamptz'] | null),scheduled_eta?: (Scalars['timestamptz'] | null),team_1_seed?: (Scalars['Int'] | null),team_2_seed?: (Scalars['Int'] | null),tournament_stage_id?: (Scalars['uuid'] | null),tournament_team_id_1?: (Scalars['uuid'] | null),tournament_team_id_2?: (Scalars['uuid'] | null)} - - -/** aggregate sum on columns */ -export interface tournament_brackets_sum_fieldsGenqlSelection{ - group?: boolean | number - match_number?: boolean | number - round?: boolean | number - team_1_seed?: boolean | number - team_2_seed?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "tournament_brackets" */ -export interface tournament_brackets_sum_order_by {group?: (order_by | null),match_number?: (order_by | null),round?: (order_by | null),team_1_seed?: (order_by | null),team_2_seed?: (order_by | null)} - -export interface tournament_brackets_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (tournament_brackets_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (tournament_brackets_set_input | null), -/** filter the rows which have to be updated */ -where: tournament_brackets_bool_exp} - - -/** aggregate var_pop on columns */ -export interface tournament_brackets_var_pop_fieldsGenqlSelection{ - group?: boolean | number - match_number?: boolean | number - round?: boolean | number - team_1_seed?: boolean | number - team_2_seed?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "tournament_brackets" */ -export interface tournament_brackets_var_pop_order_by {group?: (order_by | null),match_number?: (order_by | null),round?: (order_by | null),team_1_seed?: (order_by | null),team_2_seed?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface tournament_brackets_var_samp_fieldsGenqlSelection{ - group?: boolean | number - match_number?: boolean | number - round?: boolean | number - team_1_seed?: boolean | number - team_2_seed?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "tournament_brackets" */ -export interface tournament_brackets_var_samp_order_by {group?: (order_by | null),match_number?: (order_by | null),round?: (order_by | null),team_1_seed?: (order_by | null),team_2_seed?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface tournament_brackets_variance_fieldsGenqlSelection{ - group?: boolean | number - match_number?: boolean | number - round?: boolean | number - team_1_seed?: boolean | number - team_2_seed?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "tournament_brackets" */ -export interface tournament_brackets_variance_order_by {group?: (order_by | null),match_number?: (order_by | null),round?: (order_by | null),team_1_seed?: (order_by | null),team_2_seed?: (order_by | null)} - - -/** columns and relationships of "tournament_categories" */ -export interface tournament_categoriesGenqlSelection{ - category?: boolean | number - /** An object relationship */ - e_tournament_category?: e_tournament_categoriesGenqlSelection - /** An object relationship */ - tournament?: tournamentsGenqlSelection - tournament_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "tournament_categories" */ -export interface tournament_categories_aggregateGenqlSelection{ - aggregate?: tournament_categories_aggregate_fieldsGenqlSelection - nodes?: tournament_categoriesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface tournament_categories_aggregate_bool_exp {count?: (tournament_categories_aggregate_bool_exp_count | null)} - -export interface tournament_categories_aggregate_bool_exp_count {arguments?: (tournament_categories_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (tournament_categories_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "tournament_categories" */ -export interface tournament_categories_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (tournament_categories_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: tournament_categories_max_fieldsGenqlSelection - min?: tournament_categories_min_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "tournament_categories" */ -export interface tournament_categories_aggregate_order_by {count?: (order_by | null),max?: (tournament_categories_max_order_by | null),min?: (tournament_categories_min_order_by | null)} - - -/** input type for inserting array relation for remote table "tournament_categories" */ -export interface tournament_categories_arr_rel_insert_input {data: tournament_categories_insert_input[], -/** upsert condition */ -on_conflict?: (tournament_categories_on_conflict | null)} - - -/** Boolean expression to filter rows from the table "tournament_categories". All fields are combined with a logical 'AND'. */ -export interface tournament_categories_bool_exp {_and?: (tournament_categories_bool_exp[] | null),_not?: (tournament_categories_bool_exp | null),_or?: (tournament_categories_bool_exp[] | null),category?: (e_tournament_categories_enum_comparison_exp | null),e_tournament_category?: (e_tournament_categories_bool_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null)} - - -/** input type for inserting data into table "tournament_categories" */ -export interface tournament_categories_insert_input {category?: (e_tournament_categories_enum | null),e_tournament_category?: (e_tournament_categories_obj_rel_insert_input | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null)} - - -/** aggregate max on columns */ -export interface tournament_categories_max_fieldsGenqlSelection{ - tournament_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "tournament_categories" */ -export interface tournament_categories_max_order_by {tournament_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface tournament_categories_min_fieldsGenqlSelection{ - tournament_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "tournament_categories" */ -export interface tournament_categories_min_order_by {tournament_id?: (order_by | null)} - - -/** response of any mutation on the table "tournament_categories" */ -export interface tournament_categories_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: tournament_categoriesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "tournament_categories" */ -export interface tournament_categories_on_conflict {constraint: tournament_categories_constraint,update_columns?: tournament_categories_update_column[],where?: (tournament_categories_bool_exp | null)} - - -/** Ordering options when selecting data from "tournament_categories". */ -export interface tournament_categories_order_by {category?: (order_by | null),e_tournament_category?: (e_tournament_categories_order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null)} - - -/** primary key columns input for table: tournament_categories */ -export interface tournament_categories_pk_columns_input {category: e_tournament_categories_enum,tournament_id: Scalars['uuid']} - - -/** input type for updating data in table "tournament_categories" */ -export interface tournament_categories_set_input {category?: (e_tournament_categories_enum | null),tournament_id?: (Scalars['uuid'] | null)} - - -/** Streaming cursor of the table "tournament_categories" */ -export interface tournament_categories_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: tournament_categories_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface tournament_categories_stream_cursor_value_input {category?: (e_tournament_categories_enum | null),tournament_id?: (Scalars['uuid'] | null)} - -export interface tournament_categories_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (tournament_categories_set_input | null), -/** filter the rows which have to be updated */ -where: tournament_categories_bool_exp} - - -/** columns and relationships of "tournament_free_agents" */ -export interface tournament_free_agentsGenqlSelection{ - checked_in_at?: boolean | number - /** Registration priority: decides who makes the cut */ - created_at?: boolean | number - /** An object relationship */ - e_tournament_free_agent_status?: e_tournament_free_agent_statusesGenqlSelection - id?: boolean | number - party_id?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - player_steam_id?: boolean | number - status?: boolean | number - /** An object relationship */ - tournament?: tournamentsGenqlSelection - tournament_id?: boolean | number - /** An object relationship */ - tournament_team?: tournament_teamsGenqlSelection - tournament_team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "tournament_free_agents" */ -export interface tournament_free_agents_aggregateGenqlSelection{ - aggregate?: tournament_free_agents_aggregate_fieldsGenqlSelection - nodes?: tournament_free_agentsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface tournament_free_agents_aggregate_bool_exp {count?: (tournament_free_agents_aggregate_bool_exp_count | null)} - -export interface tournament_free_agents_aggregate_bool_exp_count {arguments?: (tournament_free_agents_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (tournament_free_agents_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "tournament_free_agents" */ -export interface tournament_free_agents_aggregate_fieldsGenqlSelection{ - avg?: tournament_free_agents_avg_fieldsGenqlSelection - count?: { __args: {columns?: (tournament_free_agents_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: tournament_free_agents_max_fieldsGenqlSelection - min?: tournament_free_agents_min_fieldsGenqlSelection - stddev?: tournament_free_agents_stddev_fieldsGenqlSelection - stddev_pop?: tournament_free_agents_stddev_pop_fieldsGenqlSelection - stddev_samp?: tournament_free_agents_stddev_samp_fieldsGenqlSelection - sum?: tournament_free_agents_sum_fieldsGenqlSelection - var_pop?: tournament_free_agents_var_pop_fieldsGenqlSelection - var_samp?: tournament_free_agents_var_samp_fieldsGenqlSelection - variance?: tournament_free_agents_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "tournament_free_agents" */ -export interface tournament_free_agents_aggregate_order_by {avg?: (tournament_free_agents_avg_order_by | null),count?: (order_by | null),max?: (tournament_free_agents_max_order_by | null),min?: (tournament_free_agents_min_order_by | null),stddev?: (tournament_free_agents_stddev_order_by | null),stddev_pop?: (tournament_free_agents_stddev_pop_order_by | null),stddev_samp?: (tournament_free_agents_stddev_samp_order_by | null),sum?: (tournament_free_agents_sum_order_by | null),var_pop?: (tournament_free_agents_var_pop_order_by | null),var_samp?: (tournament_free_agents_var_samp_order_by | null),variance?: (tournament_free_agents_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "tournament_free_agents" */ -export interface tournament_free_agents_arr_rel_insert_input {data: tournament_free_agents_insert_input[], -/** upsert condition */ -on_conflict?: (tournament_free_agents_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface tournament_free_agents_avg_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "tournament_free_agents" */ -export interface tournament_free_agents_avg_order_by {player_steam_id?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "tournament_free_agents". All fields are combined with a logical 'AND'. */ -export interface tournament_free_agents_bool_exp {_and?: (tournament_free_agents_bool_exp[] | null),_not?: (tournament_free_agents_bool_exp | null),_or?: (tournament_free_agents_bool_exp[] | null),checked_in_at?: (timestamptz_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),e_tournament_free_agent_status?: (e_tournament_free_agent_statuses_bool_exp | null),id?: (uuid_comparison_exp | null),party_id?: (uuid_comparison_exp | null),player?: (players_bool_exp | null),player_steam_id?: (bigint_comparison_exp | null),status?: (e_tournament_free_agent_statuses_enum_comparison_exp | null),tournament?: (tournaments_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 "tournament_free_agents" */ -export interface tournament_free_agents_inc_input {player_steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "tournament_free_agents" */ -export interface tournament_free_agents_insert_input {checked_in_at?: (Scalars['timestamptz'] | null), -/** Registration priority: decides who makes the cut */ -created_at?: (Scalars['timestamptz'] | null),e_tournament_free_agent_status?: (e_tournament_free_agent_statuses_obj_rel_insert_input | null),id?: (Scalars['uuid'] | null),party_id?: (Scalars['uuid'] | null),player?: (players_obj_rel_insert_input | null),player_steam_id?: (Scalars['bigint'] | null),status?: (e_tournament_free_agent_statuses_enum | null),tournament?: (tournaments_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 tournament_free_agents_max_fieldsGenqlSelection{ - checked_in_at?: boolean | number - /** Registration priority: decides who makes the cut */ - created_at?: boolean | number - id?: boolean | number - party_id?: boolean | number - player_steam_id?: boolean | number - tournament_id?: boolean | number - tournament_team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "tournament_free_agents" */ -export interface tournament_free_agents_max_order_by {checked_in_at?: (order_by | null), -/** Registration priority: decides who makes the cut */ -created_at?: (order_by | null),id?: (order_by | null),party_id?: (order_by | null),player_steam_id?: (order_by | null),tournament_id?: (order_by | null),tournament_team_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface tournament_free_agents_min_fieldsGenqlSelection{ - checked_in_at?: boolean | number - /** Registration priority: decides who makes the cut */ - created_at?: boolean | number - id?: boolean | number - party_id?: boolean | number - player_steam_id?: boolean | number - tournament_id?: boolean | number - tournament_team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "tournament_free_agents" */ -export interface tournament_free_agents_min_order_by {checked_in_at?: (order_by | null), -/** Registration priority: decides who makes the cut */ -created_at?: (order_by | null),id?: (order_by | null),party_id?: (order_by | null),player_steam_id?: (order_by | null),tournament_id?: (order_by | null),tournament_team_id?: (order_by | null)} - - -/** response of any mutation on the table "tournament_free_agents" */ -export interface tournament_free_agents_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: tournament_free_agentsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "tournament_free_agents" */ -export interface tournament_free_agents_on_conflict {constraint: tournament_free_agents_constraint,update_columns?: tournament_free_agents_update_column[],where?: (tournament_free_agents_bool_exp | null)} - - -/** Ordering options when selecting data from "tournament_free_agents". */ -export interface tournament_free_agents_order_by {checked_in_at?: (order_by | null),created_at?: (order_by | null),e_tournament_free_agent_status?: (e_tournament_free_agent_statuses_order_by | null),id?: (order_by | null),party_id?: (order_by | null),player?: (players_order_by | null),player_steam_id?: (order_by | null),status?: (order_by | null),tournament?: (tournaments_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: tournament_free_agents */ -export interface tournament_free_agents_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "tournament_free_agents" */ -export interface tournament_free_agents_set_input {checked_in_at?: (Scalars['timestamptz'] | null), -/** Registration priority: decides who makes the cut */ -created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),party_id?: (Scalars['uuid'] | null),player_steam_id?: (Scalars['bigint'] | null),status?: (e_tournament_free_agent_statuses_enum | null),tournament_id?: (Scalars['uuid'] | null),tournament_team_id?: (Scalars['uuid'] | null)} - - -/** aggregate stddev on columns */ -export interface tournament_free_agents_stddev_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "tournament_free_agents" */ -export interface tournament_free_agents_stddev_order_by {player_steam_id?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface tournament_free_agents_stddev_pop_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "tournament_free_agents" */ -export interface tournament_free_agents_stddev_pop_order_by {player_steam_id?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface tournament_free_agents_stddev_samp_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "tournament_free_agents" */ -export interface tournament_free_agents_stddev_samp_order_by {player_steam_id?: (order_by | null)} - - -/** Streaming cursor of the table "tournament_free_agents" */ -export interface tournament_free_agents_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: tournament_free_agents_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface tournament_free_agents_stream_cursor_value_input {checked_in_at?: (Scalars['timestamptz'] | null), -/** Registration priority: decides who makes the cut */ -created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),party_id?: (Scalars['uuid'] | null),player_steam_id?: (Scalars['bigint'] | null),status?: (e_tournament_free_agent_statuses_enum | null),tournament_id?: (Scalars['uuid'] | null),tournament_team_id?: (Scalars['uuid'] | null)} - - -/** aggregate sum on columns */ -export interface tournament_free_agents_sum_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "tournament_free_agents" */ -export interface tournament_free_agents_sum_order_by {player_steam_id?: (order_by | null)} - -export interface tournament_free_agents_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (tournament_free_agents_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (tournament_free_agents_set_input | null), -/** filter the rows which have to be updated */ -where: tournament_free_agents_bool_exp} - - -/** aggregate var_pop on columns */ -export interface tournament_free_agents_var_pop_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "tournament_free_agents" */ -export interface tournament_free_agents_var_pop_order_by {player_steam_id?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface tournament_free_agents_var_samp_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "tournament_free_agents" */ -export interface tournament_free_agents_var_samp_order_by {player_steam_id?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface tournament_free_agents_variance_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "tournament_free_agents" */ -export interface tournament_free_agents_variance_order_by {player_steam_id?: (order_by | null)} - - -/** columns and relationships of "tournament_invite_code_uses" */ -export interface tournament_invite_code_usesGenqlSelection{ - /** An object relationship */ - invite_code?: tournament_invite_codesGenqlSelection - invite_code_id?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - player_steam_id?: boolean | number - /** An object relationship */ - team?: teamsGenqlSelection - team_id?: boolean | number - used_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "tournament_invite_code_uses" */ -export interface tournament_invite_code_uses_aggregateGenqlSelection{ - aggregate?: tournament_invite_code_uses_aggregate_fieldsGenqlSelection - nodes?: tournament_invite_code_usesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface tournament_invite_code_uses_aggregate_bool_exp {count?: (tournament_invite_code_uses_aggregate_bool_exp_count | null)} - -export interface tournament_invite_code_uses_aggregate_bool_exp_count {arguments?: (tournament_invite_code_uses_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (tournament_invite_code_uses_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "tournament_invite_code_uses" */ -export interface tournament_invite_code_uses_aggregate_fieldsGenqlSelection{ - avg?: tournament_invite_code_uses_avg_fieldsGenqlSelection - count?: { __args: {columns?: (tournament_invite_code_uses_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: tournament_invite_code_uses_max_fieldsGenqlSelection - min?: tournament_invite_code_uses_min_fieldsGenqlSelection - stddev?: tournament_invite_code_uses_stddev_fieldsGenqlSelection - stddev_pop?: tournament_invite_code_uses_stddev_pop_fieldsGenqlSelection - stddev_samp?: tournament_invite_code_uses_stddev_samp_fieldsGenqlSelection - sum?: tournament_invite_code_uses_sum_fieldsGenqlSelection - var_pop?: tournament_invite_code_uses_var_pop_fieldsGenqlSelection - var_samp?: tournament_invite_code_uses_var_samp_fieldsGenqlSelection - variance?: tournament_invite_code_uses_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "tournament_invite_code_uses" */ -export interface tournament_invite_code_uses_aggregate_order_by {avg?: (tournament_invite_code_uses_avg_order_by | null),count?: (order_by | null),max?: (tournament_invite_code_uses_max_order_by | null),min?: (tournament_invite_code_uses_min_order_by | null),stddev?: (tournament_invite_code_uses_stddev_order_by | null),stddev_pop?: (tournament_invite_code_uses_stddev_pop_order_by | null),stddev_samp?: (tournament_invite_code_uses_stddev_samp_order_by | null),sum?: (tournament_invite_code_uses_sum_order_by | null),var_pop?: (tournament_invite_code_uses_var_pop_order_by | null),var_samp?: (tournament_invite_code_uses_var_samp_order_by | null),variance?: (tournament_invite_code_uses_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "tournament_invite_code_uses" */ -export interface tournament_invite_code_uses_arr_rel_insert_input {data: tournament_invite_code_uses_insert_input[], -/** upsert condition */ -on_conflict?: (tournament_invite_code_uses_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface tournament_invite_code_uses_avg_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "tournament_invite_code_uses" */ -export interface tournament_invite_code_uses_avg_order_by {player_steam_id?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "tournament_invite_code_uses". All fields are combined with a logical 'AND'. */ -export interface tournament_invite_code_uses_bool_exp {_and?: (tournament_invite_code_uses_bool_exp[] | null),_not?: (tournament_invite_code_uses_bool_exp | null),_or?: (tournament_invite_code_uses_bool_exp[] | null),invite_code?: (tournament_invite_codes_bool_exp | null),invite_code_id?: (uuid_comparison_exp | null),player?: (players_bool_exp | null),player_steam_id?: (bigint_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null),used_at?: (timestamptz_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "tournament_invite_code_uses" */ -export interface tournament_invite_code_uses_inc_input {player_steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "tournament_invite_code_uses" */ -export interface tournament_invite_code_uses_insert_input {invite_code?: (tournament_invite_codes_obj_rel_insert_input | null),invite_code_id?: (Scalars['uuid'] | null),player?: (players_obj_rel_insert_input | null),player_steam_id?: (Scalars['bigint'] | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null),used_at?: (Scalars['timestamptz'] | null)} - - -/** aggregate max on columns */ -export interface tournament_invite_code_uses_max_fieldsGenqlSelection{ - invite_code_id?: boolean | number - player_steam_id?: boolean | number - team_id?: boolean | number - used_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "tournament_invite_code_uses" */ -export interface tournament_invite_code_uses_max_order_by {invite_code_id?: (order_by | null),player_steam_id?: (order_by | null),team_id?: (order_by | null),used_at?: (order_by | null)} - - -/** aggregate min on columns */ -export interface tournament_invite_code_uses_min_fieldsGenqlSelection{ - invite_code_id?: boolean | number - player_steam_id?: boolean | number - team_id?: boolean | number - used_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "tournament_invite_code_uses" */ -export interface tournament_invite_code_uses_min_order_by {invite_code_id?: (order_by | null),player_steam_id?: (order_by | null),team_id?: (order_by | null),used_at?: (order_by | null)} - - -/** response of any mutation on the table "tournament_invite_code_uses" */ -export interface tournament_invite_code_uses_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: tournament_invite_code_usesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "tournament_invite_code_uses" */ -export interface tournament_invite_code_uses_on_conflict {constraint: tournament_invite_code_uses_constraint,update_columns?: tournament_invite_code_uses_update_column[],where?: (tournament_invite_code_uses_bool_exp | null)} - - -/** Ordering options when selecting data from "tournament_invite_code_uses". */ -export interface tournament_invite_code_uses_order_by {invite_code?: (tournament_invite_codes_order_by | null),invite_code_id?: (order_by | null),player?: (players_order_by | null),player_steam_id?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null),used_at?: (order_by | null)} - - -/** primary key columns input for table: tournament_invite_code_uses */ -export interface tournament_invite_code_uses_pk_columns_input {invite_code_id: Scalars['uuid'],player_steam_id: Scalars['bigint']} - - -/** input type for updating data in table "tournament_invite_code_uses" */ -export interface tournament_invite_code_uses_set_input {invite_code_id?: (Scalars['uuid'] | null),player_steam_id?: (Scalars['bigint'] | null),team_id?: (Scalars['uuid'] | null),used_at?: (Scalars['timestamptz'] | null)} - - -/** aggregate stddev on columns */ -export interface tournament_invite_code_uses_stddev_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "tournament_invite_code_uses" */ -export interface tournament_invite_code_uses_stddev_order_by {player_steam_id?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface tournament_invite_code_uses_stddev_pop_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "tournament_invite_code_uses" */ -export interface tournament_invite_code_uses_stddev_pop_order_by {player_steam_id?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface tournament_invite_code_uses_stddev_samp_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "tournament_invite_code_uses" */ -export interface tournament_invite_code_uses_stddev_samp_order_by {player_steam_id?: (order_by | null)} - - -/** Streaming cursor of the table "tournament_invite_code_uses" */ -export interface tournament_invite_code_uses_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: tournament_invite_code_uses_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface tournament_invite_code_uses_stream_cursor_value_input {invite_code_id?: (Scalars['uuid'] | null),player_steam_id?: (Scalars['bigint'] | null),team_id?: (Scalars['uuid'] | null),used_at?: (Scalars['timestamptz'] | null)} - - -/** aggregate sum on columns */ -export interface tournament_invite_code_uses_sum_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "tournament_invite_code_uses" */ -export interface tournament_invite_code_uses_sum_order_by {player_steam_id?: (order_by | null)} - -export interface tournament_invite_code_uses_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (tournament_invite_code_uses_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (tournament_invite_code_uses_set_input | null), -/** filter the rows which have to be updated */ -where: tournament_invite_code_uses_bool_exp} - - -/** aggregate var_pop on columns */ -export interface tournament_invite_code_uses_var_pop_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "tournament_invite_code_uses" */ -export interface tournament_invite_code_uses_var_pop_order_by {player_steam_id?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface tournament_invite_code_uses_var_samp_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "tournament_invite_code_uses" */ -export interface tournament_invite_code_uses_var_samp_order_by {player_steam_id?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface tournament_invite_code_uses_variance_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "tournament_invite_code_uses" */ -export interface tournament_invite_code_uses_variance_order_by {player_steam_id?: (order_by | null)} - - -/** columns and relationships of "tournament_invite_codes" */ -export interface tournament_invite_codesGenqlSelection{ - code?: boolean | number - created_at?: boolean | number - /** An object relationship */ - created_by?: playersGenqlSelection - created_by_player_steam_id?: boolean | number - expires_at?: boolean | number - id?: boolean | number - max_uses?: boolean | number - revoked_at?: boolean | number - /** An object relationship */ - tournament?: tournamentsGenqlSelection - tournament_id?: boolean | number - /** An array relationship */ - used_by?: (tournament_invite_code_usesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_invite_code_uses_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_invite_code_uses_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_invite_code_uses_bool_exp | null)} }) - /** An aggregate relationship */ - used_by_aggregate?: (tournament_invite_code_uses_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_invite_code_uses_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_invite_code_uses_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_invite_code_uses_bool_exp | null)} }) - uses?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "tournament_invite_codes" */ -export interface tournament_invite_codes_aggregateGenqlSelection{ - aggregate?: tournament_invite_codes_aggregate_fieldsGenqlSelection - nodes?: tournament_invite_codesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "tournament_invite_codes" */ -export interface tournament_invite_codes_aggregate_fieldsGenqlSelection{ - avg?: tournament_invite_codes_avg_fieldsGenqlSelection - count?: { __args: {columns?: (tournament_invite_codes_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: tournament_invite_codes_max_fieldsGenqlSelection - min?: tournament_invite_codes_min_fieldsGenqlSelection - stddev?: tournament_invite_codes_stddev_fieldsGenqlSelection - stddev_pop?: tournament_invite_codes_stddev_pop_fieldsGenqlSelection - stddev_samp?: tournament_invite_codes_stddev_samp_fieldsGenqlSelection - sum?: tournament_invite_codes_sum_fieldsGenqlSelection - var_pop?: tournament_invite_codes_var_pop_fieldsGenqlSelection - var_samp?: tournament_invite_codes_var_samp_fieldsGenqlSelection - variance?: tournament_invite_codes_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface tournament_invite_codes_avg_fieldsGenqlSelection{ - created_by_player_steam_id?: boolean | number - max_uses?: boolean | number - uses?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "tournament_invite_codes". All fields are combined with a logical 'AND'. */ -export interface tournament_invite_codes_bool_exp {_and?: (tournament_invite_codes_bool_exp[] | null),_not?: (tournament_invite_codes_bool_exp | null),_or?: (tournament_invite_codes_bool_exp[] | null),code?: (String_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),created_by?: (players_bool_exp | null),created_by_player_steam_id?: (bigint_comparison_exp | null),expires_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),max_uses?: (Int_comparison_exp | null),revoked_at?: (timestamptz_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null),used_by?: (tournament_invite_code_uses_bool_exp | null),used_by_aggregate?: (tournament_invite_code_uses_aggregate_bool_exp | null),uses?: (Int_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "tournament_invite_codes" */ -export interface tournament_invite_codes_inc_input {created_by_player_steam_id?: (Scalars['bigint'] | null),max_uses?: (Scalars['Int'] | null),uses?: (Scalars['Int'] | null)} - - -/** input type for inserting data into table "tournament_invite_codes" */ -export interface tournament_invite_codes_insert_input {code?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),created_by?: (players_obj_rel_insert_input | null),created_by_player_steam_id?: (Scalars['bigint'] | null),expires_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),max_uses?: (Scalars['Int'] | null),revoked_at?: (Scalars['timestamptz'] | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null),used_by?: (tournament_invite_code_uses_arr_rel_insert_input | null),uses?: (Scalars['Int'] | null)} - - -/** aggregate max on columns */ -export interface tournament_invite_codes_max_fieldsGenqlSelection{ - code?: boolean | number - created_at?: boolean | number - created_by_player_steam_id?: boolean | number - expires_at?: boolean | number - id?: boolean | number - max_uses?: boolean | number - revoked_at?: boolean | number - tournament_id?: boolean | number - uses?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface tournament_invite_codes_min_fieldsGenqlSelection{ - code?: boolean | number - created_at?: boolean | number - created_by_player_steam_id?: boolean | number - expires_at?: boolean | number - id?: boolean | number - max_uses?: boolean | number - revoked_at?: boolean | number - tournament_id?: boolean | number - uses?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "tournament_invite_codes" */ -export interface tournament_invite_codes_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: tournament_invite_codesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "tournament_invite_codes" */ -export interface tournament_invite_codes_obj_rel_insert_input {data: tournament_invite_codes_insert_input, -/** upsert condition */ -on_conflict?: (tournament_invite_codes_on_conflict | null)} - - -/** on_conflict condition type for table "tournament_invite_codes" */ -export interface tournament_invite_codes_on_conflict {constraint: tournament_invite_codes_constraint,update_columns?: tournament_invite_codes_update_column[],where?: (tournament_invite_codes_bool_exp | null)} - - -/** Ordering options when selecting data from "tournament_invite_codes". */ -export interface tournament_invite_codes_order_by {code?: (order_by | null),created_at?: (order_by | null),created_by?: (players_order_by | null),created_by_player_steam_id?: (order_by | null),expires_at?: (order_by | null),id?: (order_by | null),max_uses?: (order_by | null),revoked_at?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null),used_by_aggregate?: (tournament_invite_code_uses_aggregate_order_by | null),uses?: (order_by | null)} - - -/** primary key columns input for table: tournament_invite_codes */ -export interface tournament_invite_codes_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "tournament_invite_codes" */ -export interface tournament_invite_codes_set_input {code?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),created_by_player_steam_id?: (Scalars['bigint'] | null),expires_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),max_uses?: (Scalars['Int'] | null),revoked_at?: (Scalars['timestamptz'] | null),tournament_id?: (Scalars['uuid'] | null),uses?: (Scalars['Int'] | null)} - - -/** aggregate stddev on columns */ -export interface tournament_invite_codes_stddev_fieldsGenqlSelection{ - created_by_player_steam_id?: boolean | number - max_uses?: boolean | number - uses?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface tournament_invite_codes_stddev_pop_fieldsGenqlSelection{ - created_by_player_steam_id?: boolean | number - max_uses?: boolean | number - uses?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface tournament_invite_codes_stddev_samp_fieldsGenqlSelection{ - created_by_player_steam_id?: boolean | number - max_uses?: boolean | number - uses?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "tournament_invite_codes" */ -export interface tournament_invite_codes_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: tournament_invite_codes_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface tournament_invite_codes_stream_cursor_value_input {code?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),created_by_player_steam_id?: (Scalars['bigint'] | null),expires_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),max_uses?: (Scalars['Int'] | null),revoked_at?: (Scalars['timestamptz'] | null),tournament_id?: (Scalars['uuid'] | null),uses?: (Scalars['Int'] | null)} - - -/** aggregate sum on columns */ -export interface tournament_invite_codes_sum_fieldsGenqlSelection{ - created_by_player_steam_id?: boolean | number - max_uses?: boolean | number - uses?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface tournament_invite_codes_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (tournament_invite_codes_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (tournament_invite_codes_set_input | null), -/** filter the rows which have to be updated */ -where: tournament_invite_codes_bool_exp} - - -/** aggregate var_pop on columns */ -export interface tournament_invite_codes_var_pop_fieldsGenqlSelection{ - created_by_player_steam_id?: boolean | number - max_uses?: boolean | number - uses?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface tournament_invite_codes_var_samp_fieldsGenqlSelection{ - created_by_player_steam_id?: boolean | number - max_uses?: boolean | number - uses?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface tournament_invite_codes_variance_fieldsGenqlSelection{ - created_by_player_steam_id?: boolean | number - max_uses?: boolean | number - uses?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "tournament_invites" */ -export interface tournament_invitesGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - /** An object relationship */ - invited_by?: playersGenqlSelection - invited_by_player_steam_id?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - steam_id?: boolean | number - /** An object relationship */ - team?: teamsGenqlSelection - team_id?: boolean | number - /** An object relationship */ - tournament?: tournamentsGenqlSelection - tournament_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "tournament_invites" */ -export interface tournament_invites_aggregateGenqlSelection{ - aggregate?: tournament_invites_aggregate_fieldsGenqlSelection - nodes?: tournament_invitesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "tournament_invites" */ -export interface tournament_invites_aggregate_fieldsGenqlSelection{ - avg?: tournament_invites_avg_fieldsGenqlSelection - count?: { __args: {columns?: (tournament_invites_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: tournament_invites_max_fieldsGenqlSelection - min?: tournament_invites_min_fieldsGenqlSelection - stddev?: tournament_invites_stddev_fieldsGenqlSelection - stddev_pop?: tournament_invites_stddev_pop_fieldsGenqlSelection - stddev_samp?: tournament_invites_stddev_samp_fieldsGenqlSelection - sum?: tournament_invites_sum_fieldsGenqlSelection - var_pop?: tournament_invites_var_pop_fieldsGenqlSelection - var_samp?: tournament_invites_var_samp_fieldsGenqlSelection - variance?: tournament_invites_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface tournament_invites_avg_fieldsGenqlSelection{ - invited_by_player_steam_id?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "tournament_invites". All fields are combined with a logical 'AND'. */ -export interface tournament_invites_bool_exp {_and?: (tournament_invites_bool_exp[] | null),_not?: (tournament_invites_bool_exp | null),_or?: (tournament_invites_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),invited_by?: (players_bool_exp | null),invited_by_player_steam_id?: (bigint_comparison_exp | null),player?: (players_bool_exp | null),steam_id?: (bigint_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "tournament_invites" */ -export interface tournament_invites_inc_input {invited_by_player_steam_id?: (Scalars['bigint'] | null),steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "tournament_invites" */ -export interface tournament_invites_insert_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),invited_by?: (players_obj_rel_insert_input | null),invited_by_player_steam_id?: (Scalars['bigint'] | null),player?: (players_obj_rel_insert_input | null),steam_id?: (Scalars['bigint'] | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null)} - - -/** aggregate max on columns */ -export interface tournament_invites_max_fieldsGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - invited_by_player_steam_id?: boolean | number - steam_id?: boolean | number - team_id?: boolean | number - tournament_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface tournament_invites_min_fieldsGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - invited_by_player_steam_id?: boolean | number - steam_id?: boolean | number - team_id?: boolean | number - tournament_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "tournament_invites" */ -export interface tournament_invites_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: tournament_invitesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "tournament_invites" */ -export interface tournament_invites_on_conflict {constraint: tournament_invites_constraint,update_columns?: tournament_invites_update_column[],where?: (tournament_invites_bool_exp | null)} - - -/** Ordering options when selecting data from "tournament_invites". */ -export interface tournament_invites_order_by {created_at?: (order_by | null),id?: (order_by | null),invited_by?: (players_order_by | null),invited_by_player_steam_id?: (order_by | null),player?: (players_order_by | null),steam_id?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null)} - - -/** primary key columns input for table: tournament_invites */ -export interface tournament_invites_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "tournament_invites" */ -export interface tournament_invites_set_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),invited_by_player_steam_id?: (Scalars['bigint'] | null),steam_id?: (Scalars['bigint'] | null),team_id?: (Scalars['uuid'] | null),tournament_id?: (Scalars['uuid'] | null)} - - -/** aggregate stddev on columns */ -export interface tournament_invites_stddev_fieldsGenqlSelection{ - invited_by_player_steam_id?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface tournament_invites_stddev_pop_fieldsGenqlSelection{ - invited_by_player_steam_id?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface tournament_invites_stddev_samp_fieldsGenqlSelection{ - invited_by_player_steam_id?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "tournament_invites" */ -export interface tournament_invites_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: tournament_invites_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface tournament_invites_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),invited_by_player_steam_id?: (Scalars['bigint'] | null),steam_id?: (Scalars['bigint'] | null),team_id?: (Scalars['uuid'] | null),tournament_id?: (Scalars['uuid'] | null)} - - -/** aggregate sum on columns */ -export interface tournament_invites_sum_fieldsGenqlSelection{ - invited_by_player_steam_id?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface tournament_invites_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (tournament_invites_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (tournament_invites_set_input | null), -/** filter the rows which have to be updated */ -where: tournament_invites_bool_exp} - - -/** aggregate var_pop on columns */ -export interface tournament_invites_var_pop_fieldsGenqlSelection{ - invited_by_player_steam_id?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface tournament_invites_var_samp_fieldsGenqlSelection{ - invited_by_player_steam_id?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface tournament_invites_variance_fieldsGenqlSelection{ - invited_by_player_steam_id?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "tournament_leaderboard_entries" */ -export interface tournament_leaderboard_entriesGenqlSelection{ - adr?: boolean | number - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - player_avatar_url?: boolean | number - player_country?: boolean | number - player_custom_avatar_url?: boolean | number - player_name?: boolean | number - player_steam_id?: boolean | number - rating?: boolean | number - rounds_played?: boolean | number - team_name?: boolean | number - tournament_team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface tournament_leaderboard_entries_aggregateGenqlSelection{ - aggregate?: tournament_leaderboard_entries_aggregate_fieldsGenqlSelection - nodes?: tournament_leaderboard_entriesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "tournament_leaderboard_entries" */ -export interface tournament_leaderboard_entries_aggregate_fieldsGenqlSelection{ - avg?: tournament_leaderboard_entries_avg_fieldsGenqlSelection - count?: { __args: {columns?: (tournament_leaderboard_entries_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: tournament_leaderboard_entries_max_fieldsGenqlSelection - min?: tournament_leaderboard_entries_min_fieldsGenqlSelection - stddev?: tournament_leaderboard_entries_stddev_fieldsGenqlSelection - stddev_pop?: tournament_leaderboard_entries_stddev_pop_fieldsGenqlSelection - stddev_samp?: tournament_leaderboard_entries_stddev_samp_fieldsGenqlSelection - sum?: tournament_leaderboard_entries_sum_fieldsGenqlSelection - var_pop?: tournament_leaderboard_entries_var_pop_fieldsGenqlSelection - var_samp?: tournament_leaderboard_entries_var_samp_fieldsGenqlSelection - variance?: tournament_leaderboard_entries_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface tournament_leaderboard_entries_avg_fieldsGenqlSelection{ - adr?: boolean | number - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - rating?: boolean | number - rounds_played?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "tournament_leaderboard_entries". All fields are combined with a logical 'AND'. */ -export interface tournament_leaderboard_entries_bool_exp {_and?: (tournament_leaderboard_entries_bool_exp[] | null),_not?: (tournament_leaderboard_entries_bool_exp | null),_or?: (tournament_leaderboard_entries_bool_exp[] | null),adr?: (float8_comparison_exp | null),assists?: (Int_comparison_exp | null),deaths?: (Int_comparison_exp | null),headshot_percentage?: (float8_comparison_exp | null),kdr?: (float8_comparison_exp | null),kills?: (Int_comparison_exp | null),matches_played?: (Int_comparison_exp | null),player_avatar_url?: (String_comparison_exp | null),player_country?: (String_comparison_exp | null),player_custom_avatar_url?: (String_comparison_exp | null),player_name?: (String_comparison_exp | null),player_steam_id?: (String_comparison_exp | null),rating?: (float8_comparison_exp | null),rounds_played?: (Int_comparison_exp | null),team_name?: (String_comparison_exp | null),tournament_team_id?: (uuid_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "tournament_leaderboard_entries" */ -export interface tournament_leaderboard_entries_inc_input {adr?: (Scalars['float8'] | null),assists?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),headshot_percentage?: (Scalars['float8'] | null),kdr?: (Scalars['float8'] | null),kills?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),rating?: (Scalars['float8'] | null),rounds_played?: (Scalars['Int'] | null)} - - -/** input type for inserting data into table "tournament_leaderboard_entries" */ -export interface tournament_leaderboard_entries_insert_input {adr?: (Scalars['float8'] | null),assists?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),headshot_percentage?: (Scalars['float8'] | null),kdr?: (Scalars['float8'] | null),kills?: (Scalars['Int'] | null),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),rating?: (Scalars['float8'] | null),rounds_played?: (Scalars['Int'] | null),team_name?: (Scalars['String'] | null),tournament_team_id?: (Scalars['uuid'] | null)} - - -/** aggregate max on columns */ -export interface tournament_leaderboard_entries_max_fieldsGenqlSelection{ - adr?: boolean | number - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - player_avatar_url?: boolean | number - player_country?: boolean | number - player_custom_avatar_url?: boolean | number - player_name?: boolean | number - player_steam_id?: boolean | number - rating?: boolean | number - rounds_played?: boolean | number - team_name?: boolean | number - tournament_team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface tournament_leaderboard_entries_min_fieldsGenqlSelection{ - adr?: boolean | number - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - player_avatar_url?: boolean | number - player_country?: boolean | number - player_custom_avatar_url?: boolean | number - player_name?: boolean | number - player_steam_id?: boolean | number - rating?: boolean | number - rounds_played?: boolean | number - team_name?: boolean | number - tournament_team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "tournament_leaderboard_entries" */ -export interface tournament_leaderboard_entries_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: tournament_leaderboard_entriesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Ordering options when selecting data from "tournament_leaderboard_entries". */ -export interface tournament_leaderboard_entries_order_by {adr?: (order_by | null),assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_avatar_url?: (order_by | null),player_country?: (order_by | null),player_custom_avatar_url?: (order_by | null),player_name?: (order_by | null),player_steam_id?: (order_by | null),rating?: (order_by | null),rounds_played?: (order_by | null),team_name?: (order_by | null),tournament_team_id?: (order_by | null)} - - -/** input type for updating data in table "tournament_leaderboard_entries" */ -export interface tournament_leaderboard_entries_set_input {adr?: (Scalars['float8'] | null),assists?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),headshot_percentage?: (Scalars['float8'] | null),kdr?: (Scalars['float8'] | null),kills?: (Scalars['Int'] | null),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),rating?: (Scalars['float8'] | null),rounds_played?: (Scalars['Int'] | null),team_name?: (Scalars['String'] | null),tournament_team_id?: (Scalars['uuid'] | null)} - - -/** aggregate stddev on columns */ -export interface tournament_leaderboard_entries_stddev_fieldsGenqlSelection{ - adr?: boolean | number - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - rating?: boolean | number - rounds_played?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface tournament_leaderboard_entries_stddev_pop_fieldsGenqlSelection{ - adr?: boolean | number - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - rating?: boolean | number - rounds_played?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface tournament_leaderboard_entries_stddev_samp_fieldsGenqlSelection{ - adr?: boolean | number - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - rating?: boolean | number - rounds_played?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "tournament_leaderboard_entries" */ -export interface tournament_leaderboard_entries_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: tournament_leaderboard_entries_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface tournament_leaderboard_entries_stream_cursor_value_input {adr?: (Scalars['float8'] | null),assists?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),headshot_percentage?: (Scalars['float8'] | null),kdr?: (Scalars['float8'] | null),kills?: (Scalars['Int'] | null),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),rating?: (Scalars['float8'] | null),rounds_played?: (Scalars['Int'] | null),team_name?: (Scalars['String'] | null),tournament_team_id?: (Scalars['uuid'] | null)} - - -/** aggregate sum on columns */ -export interface tournament_leaderboard_entries_sum_fieldsGenqlSelection{ - adr?: boolean | number - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - rating?: boolean | number - rounds_played?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface tournament_leaderboard_entries_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (tournament_leaderboard_entries_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (tournament_leaderboard_entries_set_input | null), -/** filter the rows which have to be updated */ -where: tournament_leaderboard_entries_bool_exp} - - -/** aggregate var_pop on columns */ -export interface tournament_leaderboard_entries_var_pop_fieldsGenqlSelection{ - adr?: boolean | number - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - rating?: boolean | number - rounds_played?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface tournament_leaderboard_entries_var_samp_fieldsGenqlSelection{ - adr?: boolean | number - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - rating?: boolean | number - rounds_played?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface tournament_leaderboard_entries_variance_fieldsGenqlSelection{ - adr?: boolean | number - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - rating?: boolean | number - rounds_played?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "tournament_no_shows" */ -export interface tournament_no_showsGenqlSelection{ - id?: boolean | number - occurred_at?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - player_steam_id?: boolean | number - /** An object relationship */ - tournament?: tournamentsGenqlSelection - tournament_id?: boolean | number - /** An object relationship */ - tournament_team?: tournament_teamsGenqlSelection - tournament_team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "tournament_no_shows" */ -export interface tournament_no_shows_aggregateGenqlSelection{ - aggregate?: tournament_no_shows_aggregate_fieldsGenqlSelection - nodes?: tournament_no_showsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "tournament_no_shows" */ -export interface tournament_no_shows_aggregate_fieldsGenqlSelection{ - avg?: tournament_no_shows_avg_fieldsGenqlSelection - count?: { __args: {columns?: (tournament_no_shows_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: tournament_no_shows_max_fieldsGenqlSelection - min?: tournament_no_shows_min_fieldsGenqlSelection - stddev?: tournament_no_shows_stddev_fieldsGenqlSelection - stddev_pop?: tournament_no_shows_stddev_pop_fieldsGenqlSelection - stddev_samp?: tournament_no_shows_stddev_samp_fieldsGenqlSelection - sum?: tournament_no_shows_sum_fieldsGenqlSelection - var_pop?: tournament_no_shows_var_pop_fieldsGenqlSelection - var_samp?: tournament_no_shows_var_samp_fieldsGenqlSelection - variance?: tournament_no_shows_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface tournament_no_shows_avg_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "tournament_no_shows". All fields are combined with a logical 'AND'. */ -export interface tournament_no_shows_bool_exp {_and?: (tournament_no_shows_bool_exp[] | null),_not?: (tournament_no_shows_bool_exp | null),_or?: (tournament_no_shows_bool_exp[] | null),id?: (uuid_comparison_exp | null),occurred_at?: (timestamptz_comparison_exp | null),player?: (players_bool_exp | null),player_steam_id?: (bigint_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null),tournament_team?: (tournament_teams_bool_exp | null),tournament_team_id?: (uuid_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "tournament_no_shows" */ -export interface tournament_no_shows_inc_input {player_steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "tournament_no_shows" */ -export interface tournament_no_shows_insert_input {id?: (Scalars['uuid'] | null),occurred_at?: (Scalars['timestamptz'] | null),player?: (players_obj_rel_insert_input | null),player_steam_id?: (Scalars['bigint'] | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null),tournament_team?: (tournament_teams_obj_rel_insert_input | null),tournament_team_id?: (Scalars['uuid'] | null)} - - -/** aggregate max on columns */ -export interface tournament_no_shows_max_fieldsGenqlSelection{ - id?: boolean | number - occurred_at?: boolean | number - player_steam_id?: boolean | number - tournament_id?: boolean | number - tournament_team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface tournament_no_shows_min_fieldsGenqlSelection{ - id?: boolean | number - occurred_at?: boolean | number - player_steam_id?: boolean | number - tournament_id?: boolean | number - tournament_team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "tournament_no_shows" */ -export interface tournament_no_shows_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: tournament_no_showsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "tournament_no_shows" */ -export interface tournament_no_shows_on_conflict {constraint: tournament_no_shows_constraint,update_columns?: tournament_no_shows_update_column[],where?: (tournament_no_shows_bool_exp | null)} - - -/** Ordering options when selecting data from "tournament_no_shows". */ -export interface tournament_no_shows_order_by {id?: (order_by | null),occurred_at?: (order_by | null),player?: (players_order_by | null),player_steam_id?: (order_by | null),tournament?: (tournaments_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: tournament_no_shows */ -export interface tournament_no_shows_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "tournament_no_shows" */ -export interface tournament_no_shows_set_input {id?: (Scalars['uuid'] | null),occurred_at?: (Scalars['timestamptz'] | null),player_steam_id?: (Scalars['bigint'] | null),tournament_id?: (Scalars['uuid'] | null),tournament_team_id?: (Scalars['uuid'] | null)} - - -/** aggregate stddev on columns */ -export interface tournament_no_shows_stddev_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface tournament_no_shows_stddev_pop_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface tournament_no_shows_stddev_samp_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "tournament_no_shows" */ -export interface tournament_no_shows_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: tournament_no_shows_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface tournament_no_shows_stream_cursor_value_input {id?: (Scalars['uuid'] | null),occurred_at?: (Scalars['timestamptz'] | null),player_steam_id?: (Scalars['bigint'] | null),tournament_id?: (Scalars['uuid'] | null),tournament_team_id?: (Scalars['uuid'] | null)} - - -/** aggregate sum on columns */ -export interface tournament_no_shows_sum_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface tournament_no_shows_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (tournament_no_shows_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (tournament_no_shows_set_input | null), -/** filter the rows which have to be updated */ -where: tournament_no_shows_bool_exp} - - -/** aggregate var_pop on columns */ -export interface tournament_no_shows_var_pop_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface tournament_no_shows_var_samp_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface tournament_no_shows_variance_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "tournament_organizer_teams" */ -export interface tournament_organizer_teamsGenqlSelection{ - created_at?: boolean | number - /** An object relationship */ - team?: teamsGenqlSelection - team_id?: boolean | number - /** An object relationship */ - tournament?: tournamentsGenqlSelection - tournament_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "tournament_organizer_teams" */ -export interface tournament_organizer_teams_aggregateGenqlSelection{ - aggregate?: tournament_organizer_teams_aggregate_fieldsGenqlSelection - nodes?: tournament_organizer_teamsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface tournament_organizer_teams_aggregate_bool_exp {count?: (tournament_organizer_teams_aggregate_bool_exp_count | null)} - -export interface tournament_organizer_teams_aggregate_bool_exp_count {arguments?: (tournament_organizer_teams_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (tournament_organizer_teams_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "tournament_organizer_teams" */ -export interface tournament_organizer_teams_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (tournament_organizer_teams_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: tournament_organizer_teams_max_fieldsGenqlSelection - min?: tournament_organizer_teams_min_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "tournament_organizer_teams" */ -export interface tournament_organizer_teams_aggregate_order_by {count?: (order_by | null),max?: (tournament_organizer_teams_max_order_by | null),min?: (tournament_organizer_teams_min_order_by | null)} - - -/** input type for inserting array relation for remote table "tournament_organizer_teams" */ -export interface tournament_organizer_teams_arr_rel_insert_input {data: tournament_organizer_teams_insert_input[], -/** upsert condition */ -on_conflict?: (tournament_organizer_teams_on_conflict | null)} - - -/** Boolean expression to filter rows from the table "tournament_organizer_teams". All fields are combined with a logical 'AND'. */ -export interface tournament_organizer_teams_bool_exp {_and?: (tournament_organizer_teams_bool_exp[] | null),_not?: (tournament_organizer_teams_bool_exp | null),_or?: (tournament_organizer_teams_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null)} - - -/** input type for inserting data into table "tournament_organizer_teams" */ -export interface tournament_organizer_teams_insert_input {created_at?: (Scalars['timestamptz'] | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null)} - - -/** aggregate max on columns */ -export interface tournament_organizer_teams_max_fieldsGenqlSelection{ - created_at?: boolean | number - team_id?: boolean | number - tournament_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "tournament_organizer_teams" */ -export interface tournament_organizer_teams_max_order_by {created_at?: (order_by | null),team_id?: (order_by | null),tournament_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface tournament_organizer_teams_min_fieldsGenqlSelection{ - created_at?: boolean | number - team_id?: boolean | number - tournament_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "tournament_organizer_teams" */ -export interface tournament_organizer_teams_min_order_by {created_at?: (order_by | null),team_id?: (order_by | null),tournament_id?: (order_by | null)} - - -/** response of any mutation on the table "tournament_organizer_teams" */ -export interface tournament_organizer_teams_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: tournament_organizer_teamsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "tournament_organizer_teams" */ -export interface tournament_organizer_teams_on_conflict {constraint: tournament_organizer_teams_constraint,update_columns?: tournament_organizer_teams_update_column[],where?: (tournament_organizer_teams_bool_exp | null)} - - -/** Ordering options when selecting data from "tournament_organizer_teams". */ -export interface tournament_organizer_teams_order_by {created_at?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null)} - - -/** primary key columns input for table: tournament_organizer_teams */ -export interface tournament_organizer_teams_pk_columns_input {team_id: Scalars['uuid'],tournament_id: Scalars['uuid']} - - -/** input type for updating data in table "tournament_organizer_teams" */ -export interface tournament_organizer_teams_set_input {created_at?: (Scalars['timestamptz'] | null),team_id?: (Scalars['uuid'] | null),tournament_id?: (Scalars['uuid'] | null)} - - -/** Streaming cursor of the table "tournament_organizer_teams" */ -export interface tournament_organizer_teams_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: tournament_organizer_teams_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface tournament_organizer_teams_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),team_id?: (Scalars['uuid'] | null),tournament_id?: (Scalars['uuid'] | null)} - -export interface tournament_organizer_teams_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (tournament_organizer_teams_set_input | null), -/** filter the rows which have to be updated */ -where: tournament_organizer_teams_bool_exp} - - -/** columns and relationships of "tournament_organizers" */ -export interface tournament_organizersGenqlSelection{ - /** An object relationship */ - organization_team?: teamsGenqlSelection - organization_team_id?: boolean | number - /** An object relationship */ - organizer?: playersGenqlSelection - steam_id?: boolean | number - /** An object relationship */ - tournament?: tournamentsGenqlSelection - tournament_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "tournament_organizers" */ -export interface tournament_organizers_aggregateGenqlSelection{ - aggregate?: tournament_organizers_aggregate_fieldsGenqlSelection - nodes?: tournament_organizersGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface tournament_organizers_aggregate_bool_exp {count?: (tournament_organizers_aggregate_bool_exp_count | null)} - -export interface tournament_organizers_aggregate_bool_exp_count {arguments?: (tournament_organizers_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (tournament_organizers_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "tournament_organizers" */ -export interface tournament_organizers_aggregate_fieldsGenqlSelection{ - avg?: tournament_organizers_avg_fieldsGenqlSelection - count?: { __args: {columns?: (tournament_organizers_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: tournament_organizers_max_fieldsGenqlSelection - min?: tournament_organizers_min_fieldsGenqlSelection - stddev?: tournament_organizers_stddev_fieldsGenqlSelection - stddev_pop?: tournament_organizers_stddev_pop_fieldsGenqlSelection - stddev_samp?: tournament_organizers_stddev_samp_fieldsGenqlSelection - sum?: tournament_organizers_sum_fieldsGenqlSelection - var_pop?: tournament_organizers_var_pop_fieldsGenqlSelection - var_samp?: tournament_organizers_var_samp_fieldsGenqlSelection - variance?: tournament_organizers_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "tournament_organizers" */ -export interface tournament_organizers_aggregate_order_by {avg?: (tournament_organizers_avg_order_by | null),count?: (order_by | null),max?: (tournament_organizers_max_order_by | null),min?: (tournament_organizers_min_order_by | null),stddev?: (tournament_organizers_stddev_order_by | null),stddev_pop?: (tournament_organizers_stddev_pop_order_by | null),stddev_samp?: (tournament_organizers_stddev_samp_order_by | null),sum?: (tournament_organizers_sum_order_by | null),var_pop?: (tournament_organizers_var_pop_order_by | null),var_samp?: (tournament_organizers_var_samp_order_by | null),variance?: (tournament_organizers_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "tournament_organizers" */ -export interface tournament_organizers_arr_rel_insert_input {data: tournament_organizers_insert_input[], -/** upsert condition */ -on_conflict?: (tournament_organizers_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface tournament_organizers_avg_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "tournament_organizers" */ -export interface tournament_organizers_avg_order_by {steam_id?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "tournament_organizers". All fields are combined with a logical 'AND'. */ -export interface tournament_organizers_bool_exp {_and?: (tournament_organizers_bool_exp[] | null),_not?: (tournament_organizers_bool_exp | null),_or?: (tournament_organizers_bool_exp[] | null),organization_team?: (teams_bool_exp | null),organization_team_id?: (uuid_comparison_exp | null),organizer?: (players_bool_exp | null),steam_id?: (bigint_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "tournament_organizers" */ -export interface tournament_organizers_inc_input {steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "tournament_organizers" */ -export interface tournament_organizers_insert_input {organization_team?: (teams_obj_rel_insert_input | null),organization_team_id?: (Scalars['uuid'] | null),organizer?: (players_obj_rel_insert_input | null),steam_id?: (Scalars['bigint'] | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null)} - - -/** aggregate max on columns */ -export interface tournament_organizers_max_fieldsGenqlSelection{ - organization_team_id?: boolean | number - steam_id?: boolean | number - tournament_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "tournament_organizers" */ -export interface tournament_organizers_max_order_by {organization_team_id?: (order_by | null),steam_id?: (order_by | null),tournament_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface tournament_organizers_min_fieldsGenqlSelection{ - organization_team_id?: boolean | number - steam_id?: boolean | number - tournament_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "tournament_organizers" */ -export interface tournament_organizers_min_order_by {organization_team_id?: (order_by | null),steam_id?: (order_by | null),tournament_id?: (order_by | null)} - - -/** response of any mutation on the table "tournament_organizers" */ -export interface tournament_organizers_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: tournament_organizersGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "tournament_organizers" */ -export interface tournament_organizers_on_conflict {constraint: tournament_organizers_constraint,update_columns?: tournament_organizers_update_column[],where?: (tournament_organizers_bool_exp | null)} - - -/** Ordering options when selecting data from "tournament_organizers". */ -export interface tournament_organizers_order_by {organization_team?: (teams_order_by | null),organization_team_id?: (order_by | null),organizer?: (players_order_by | null),steam_id?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null)} - - -/** primary key columns input for table: tournament_organizers */ -export interface tournament_organizers_pk_columns_input {steam_id: Scalars['bigint'],tournament_id: Scalars['uuid']} - - -/** input type for updating data in table "tournament_organizers" */ -export interface tournament_organizers_set_input {organization_team_id?: (Scalars['uuid'] | null),steam_id?: (Scalars['bigint'] | null),tournament_id?: (Scalars['uuid'] | null)} - - -/** aggregate stddev on columns */ -export interface tournament_organizers_stddev_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "tournament_organizers" */ -export interface tournament_organizers_stddev_order_by {steam_id?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface tournament_organizers_stddev_pop_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "tournament_organizers" */ -export interface tournament_organizers_stddev_pop_order_by {steam_id?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface tournament_organizers_stddev_samp_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "tournament_organizers" */ -export interface tournament_organizers_stddev_samp_order_by {steam_id?: (order_by | null)} - - -/** Streaming cursor of the table "tournament_organizers" */ -export interface tournament_organizers_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: tournament_organizers_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface tournament_organizers_stream_cursor_value_input {organization_team_id?: (Scalars['uuid'] | null),steam_id?: (Scalars['bigint'] | null),tournament_id?: (Scalars['uuid'] | null)} - - -/** aggregate sum on columns */ -export interface tournament_organizers_sum_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "tournament_organizers" */ -export interface tournament_organizers_sum_order_by {steam_id?: (order_by | null)} - -export interface tournament_organizers_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (tournament_organizers_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (tournament_organizers_set_input | null), -/** filter the rows which have to be updated */ -where: tournament_organizers_bool_exp} - - -/** aggregate var_pop on columns */ -export interface tournament_organizers_var_pop_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "tournament_organizers" */ -export interface tournament_organizers_var_pop_order_by {steam_id?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface tournament_organizers_var_samp_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "tournament_organizers" */ -export interface tournament_organizers_var_samp_order_by {steam_id?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface tournament_organizers_variance_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "tournament_organizers" */ -export interface tournament_organizers_variance_order_by {steam_id?: (order_by | null)} - - -/** columns and relationships of "tournament_prizes" */ -export interface tournament_prizesGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - order?: boolean | number - place?: boolean | number - prize?: boolean | number - /** An object relationship */ - tournament?: tournamentsGenqlSelection - tournament_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "tournament_prizes" */ -export interface tournament_prizes_aggregateGenqlSelection{ - aggregate?: tournament_prizes_aggregate_fieldsGenqlSelection - nodes?: tournament_prizesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface tournament_prizes_aggregate_bool_exp {count?: (tournament_prizes_aggregate_bool_exp_count | null)} - -export interface tournament_prizes_aggregate_bool_exp_count {arguments?: (tournament_prizes_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (tournament_prizes_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "tournament_prizes" */ -export interface tournament_prizes_aggregate_fieldsGenqlSelection{ - avg?: tournament_prizes_avg_fieldsGenqlSelection - count?: { __args: {columns?: (tournament_prizes_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: tournament_prizes_max_fieldsGenqlSelection - min?: tournament_prizes_min_fieldsGenqlSelection - stddev?: tournament_prizes_stddev_fieldsGenqlSelection - stddev_pop?: tournament_prizes_stddev_pop_fieldsGenqlSelection - stddev_samp?: tournament_prizes_stddev_samp_fieldsGenqlSelection - sum?: tournament_prizes_sum_fieldsGenqlSelection - var_pop?: tournament_prizes_var_pop_fieldsGenqlSelection - var_samp?: tournament_prizes_var_samp_fieldsGenqlSelection - variance?: tournament_prizes_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "tournament_prizes" */ -export interface tournament_prizes_aggregate_order_by {avg?: (tournament_prizes_avg_order_by | null),count?: (order_by | null),max?: (tournament_prizes_max_order_by | null),min?: (tournament_prizes_min_order_by | null),stddev?: (tournament_prizes_stddev_order_by | null),stddev_pop?: (tournament_prizes_stddev_pop_order_by | null),stddev_samp?: (tournament_prizes_stddev_samp_order_by | null),sum?: (tournament_prizes_sum_order_by | null),var_pop?: (tournament_prizes_var_pop_order_by | null),var_samp?: (tournament_prizes_var_samp_order_by | null),variance?: (tournament_prizes_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "tournament_prizes" */ -export interface tournament_prizes_arr_rel_insert_input {data: tournament_prizes_insert_input[], -/** upsert condition */ -on_conflict?: (tournament_prizes_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface tournament_prizes_avg_fieldsGenqlSelection{ - order?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "tournament_prizes" */ -export interface tournament_prizes_avg_order_by {order?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "tournament_prizes". All fields are combined with a logical 'AND'. */ -export interface tournament_prizes_bool_exp {_and?: (tournament_prizes_bool_exp[] | null),_not?: (tournament_prizes_bool_exp | null),_or?: (tournament_prizes_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),order?: (Int_comparison_exp | null),place?: (String_comparison_exp | null),prize?: (String_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "tournament_prizes" */ -export interface tournament_prizes_inc_input {order?: (Scalars['Int'] | null)} - - -/** input type for inserting data into table "tournament_prizes" */ -export interface tournament_prizes_insert_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),order?: (Scalars['Int'] | null),place?: (Scalars['String'] | null),prize?: (Scalars['String'] | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null)} - - -/** aggregate max on columns */ -export interface tournament_prizes_max_fieldsGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - order?: boolean | number - place?: boolean | number - prize?: boolean | number - tournament_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "tournament_prizes" */ -export interface tournament_prizes_max_order_by {created_at?: (order_by | null),id?: (order_by | null),order?: (order_by | null),place?: (order_by | null),prize?: (order_by | null),tournament_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface tournament_prizes_min_fieldsGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - order?: boolean | number - place?: boolean | number - prize?: boolean | number - tournament_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "tournament_prizes" */ -export interface tournament_prizes_min_order_by {created_at?: (order_by | null),id?: (order_by | null),order?: (order_by | null),place?: (order_by | null),prize?: (order_by | null),tournament_id?: (order_by | null)} - - -/** response of any mutation on the table "tournament_prizes" */ -export interface tournament_prizes_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: tournament_prizesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "tournament_prizes" */ -export interface tournament_prizes_on_conflict {constraint: tournament_prizes_constraint,update_columns?: tournament_prizes_update_column[],where?: (tournament_prizes_bool_exp | null)} - - -/** Ordering options when selecting data from "tournament_prizes". */ -export interface tournament_prizes_order_by {created_at?: (order_by | null),id?: (order_by | null),order?: (order_by | null),place?: (order_by | null),prize?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null)} - - -/** primary key columns input for table: tournament_prizes */ -export interface tournament_prizes_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "tournament_prizes" */ -export interface tournament_prizes_set_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),order?: (Scalars['Int'] | null),place?: (Scalars['String'] | null),prize?: (Scalars['String'] | null),tournament_id?: (Scalars['uuid'] | null)} - - -/** aggregate stddev on columns */ -export interface tournament_prizes_stddev_fieldsGenqlSelection{ - order?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "tournament_prizes" */ -export interface tournament_prizes_stddev_order_by {order?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface tournament_prizes_stddev_pop_fieldsGenqlSelection{ - order?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "tournament_prizes" */ -export interface tournament_prizes_stddev_pop_order_by {order?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface tournament_prizes_stddev_samp_fieldsGenqlSelection{ - order?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "tournament_prizes" */ -export interface tournament_prizes_stddev_samp_order_by {order?: (order_by | null)} - - -/** Streaming cursor of the table "tournament_prizes" */ -export interface tournament_prizes_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: tournament_prizes_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface tournament_prizes_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),order?: (Scalars['Int'] | null),place?: (Scalars['String'] | null),prize?: (Scalars['String'] | null),tournament_id?: (Scalars['uuid'] | null)} - - -/** aggregate sum on columns */ -export interface tournament_prizes_sum_fieldsGenqlSelection{ - order?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "tournament_prizes" */ -export interface tournament_prizes_sum_order_by {order?: (order_by | null)} - -export interface tournament_prizes_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (tournament_prizes_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (tournament_prizes_set_input | null), -/** filter the rows which have to be updated */ -where: tournament_prizes_bool_exp} - - -/** aggregate var_pop on columns */ -export interface tournament_prizes_var_pop_fieldsGenqlSelection{ - order?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "tournament_prizes" */ -export interface tournament_prizes_var_pop_order_by {order?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface tournament_prizes_var_samp_fieldsGenqlSelection{ - order?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "tournament_prizes" */ -export interface tournament_prizes_var_samp_order_by {order?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface tournament_prizes_variance_fieldsGenqlSelection{ - order?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "tournament_prizes" */ -export interface tournament_prizes_variance_order_by {order?: (order_by | null)} - - -/** columns and relationships of "tournament_registration_unlocks" */ -export interface tournament_registration_unlocksGenqlSelection{ - created_at?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - player_steam_id?: boolean | number - /** An object relationship */ - team?: teamsGenqlSelection - team_id?: boolean | number - /** An object relationship */ - tournament?: tournamentsGenqlSelection - tournament_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "tournament_registration_unlocks" */ -export interface tournament_registration_unlocks_aggregateGenqlSelection{ - aggregate?: tournament_registration_unlocks_aggregate_fieldsGenqlSelection - nodes?: tournament_registration_unlocksGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "tournament_registration_unlocks" */ -export interface tournament_registration_unlocks_aggregate_fieldsGenqlSelection{ - avg?: tournament_registration_unlocks_avg_fieldsGenqlSelection - count?: { __args: {columns?: (tournament_registration_unlocks_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: tournament_registration_unlocks_max_fieldsGenqlSelection - min?: tournament_registration_unlocks_min_fieldsGenqlSelection - stddev?: tournament_registration_unlocks_stddev_fieldsGenqlSelection - stddev_pop?: tournament_registration_unlocks_stddev_pop_fieldsGenqlSelection - stddev_samp?: tournament_registration_unlocks_stddev_samp_fieldsGenqlSelection - sum?: tournament_registration_unlocks_sum_fieldsGenqlSelection - var_pop?: tournament_registration_unlocks_var_pop_fieldsGenqlSelection - var_samp?: tournament_registration_unlocks_var_samp_fieldsGenqlSelection - variance?: tournament_registration_unlocks_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface tournament_registration_unlocks_avg_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "tournament_registration_unlocks". All fields are combined with a logical 'AND'. */ -export interface tournament_registration_unlocks_bool_exp {_and?: (tournament_registration_unlocks_bool_exp[] | null),_not?: (tournament_registration_unlocks_bool_exp | null),_or?: (tournament_registration_unlocks_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),player?: (players_bool_exp | null),player_steam_id?: (bigint_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "tournament_registration_unlocks" */ -export interface tournament_registration_unlocks_inc_input {player_steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "tournament_registration_unlocks" */ -export interface tournament_registration_unlocks_insert_input {created_at?: (Scalars['timestamptz'] | null),player?: (players_obj_rel_insert_input | null),player_steam_id?: (Scalars['bigint'] | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null)} - - -/** aggregate max on columns */ -export interface tournament_registration_unlocks_max_fieldsGenqlSelection{ - created_at?: boolean | number - player_steam_id?: boolean | number - team_id?: boolean | number - tournament_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface tournament_registration_unlocks_min_fieldsGenqlSelection{ - created_at?: boolean | number - player_steam_id?: boolean | number - team_id?: boolean | number - tournament_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "tournament_registration_unlocks" */ -export interface tournament_registration_unlocks_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: tournament_registration_unlocksGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "tournament_registration_unlocks" */ -export interface tournament_registration_unlocks_on_conflict {constraint: tournament_registration_unlocks_constraint,update_columns?: tournament_registration_unlocks_update_column[],where?: (tournament_registration_unlocks_bool_exp | null)} - - -/** Ordering options when selecting data from "tournament_registration_unlocks". */ -export interface tournament_registration_unlocks_order_by {created_at?: (order_by | null),player?: (players_order_by | null),player_steam_id?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null)} - - -/** input type for updating data in table "tournament_registration_unlocks" */ -export interface tournament_registration_unlocks_set_input {created_at?: (Scalars['timestamptz'] | null),player_steam_id?: (Scalars['bigint'] | null),team_id?: (Scalars['uuid'] | null),tournament_id?: (Scalars['uuid'] | null)} - - -/** aggregate stddev on columns */ -export interface tournament_registration_unlocks_stddev_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface tournament_registration_unlocks_stddev_pop_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface tournament_registration_unlocks_stddev_samp_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "tournament_registration_unlocks" */ -export interface tournament_registration_unlocks_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: tournament_registration_unlocks_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface tournament_registration_unlocks_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),player_steam_id?: (Scalars['bigint'] | null),team_id?: (Scalars['uuid'] | null),tournament_id?: (Scalars['uuid'] | null)} - - -/** aggregate sum on columns */ -export interface tournament_registration_unlocks_sum_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface tournament_registration_unlocks_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (tournament_registration_unlocks_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (tournament_registration_unlocks_set_input | null), -/** filter the rows which have to be updated */ -where: tournament_registration_unlocks_bool_exp} - - -/** aggregate var_pop on columns */ -export interface tournament_registration_unlocks_var_pop_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface tournament_registration_unlocks_var_samp_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface tournament_registration_unlocks_variance_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "tournament_stage_windows" */ -export interface tournament_stage_windowsGenqlSelection{ - closes_at?: boolean | number - created_at?: boolean | number - default_match_at?: boolean | number - id?: boolean | number - opens_at?: boolean | number - round?: boolean | number - /** An object relationship */ - stage?: tournament_stagesGenqlSelection - tournament_stage_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "tournament_stage_windows" */ -export interface tournament_stage_windows_aggregateGenqlSelection{ - aggregate?: tournament_stage_windows_aggregate_fieldsGenqlSelection - nodes?: tournament_stage_windowsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface tournament_stage_windows_aggregate_bool_exp {count?: (tournament_stage_windows_aggregate_bool_exp_count | null)} - -export interface tournament_stage_windows_aggregate_bool_exp_count {arguments?: (tournament_stage_windows_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (tournament_stage_windows_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "tournament_stage_windows" */ -export interface tournament_stage_windows_aggregate_fieldsGenqlSelection{ - avg?: tournament_stage_windows_avg_fieldsGenqlSelection - count?: { __args: {columns?: (tournament_stage_windows_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: tournament_stage_windows_max_fieldsGenqlSelection - min?: tournament_stage_windows_min_fieldsGenqlSelection - stddev?: tournament_stage_windows_stddev_fieldsGenqlSelection - stddev_pop?: tournament_stage_windows_stddev_pop_fieldsGenqlSelection - stddev_samp?: tournament_stage_windows_stddev_samp_fieldsGenqlSelection - sum?: tournament_stage_windows_sum_fieldsGenqlSelection - var_pop?: tournament_stage_windows_var_pop_fieldsGenqlSelection - var_samp?: tournament_stage_windows_var_samp_fieldsGenqlSelection - variance?: tournament_stage_windows_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "tournament_stage_windows" */ -export interface tournament_stage_windows_aggregate_order_by {avg?: (tournament_stage_windows_avg_order_by | null),count?: (order_by | null),max?: (tournament_stage_windows_max_order_by | null),min?: (tournament_stage_windows_min_order_by | null),stddev?: (tournament_stage_windows_stddev_order_by | null),stddev_pop?: (tournament_stage_windows_stddev_pop_order_by | null),stddev_samp?: (tournament_stage_windows_stddev_samp_order_by | null),sum?: (tournament_stage_windows_sum_order_by | null),var_pop?: (tournament_stage_windows_var_pop_order_by | null),var_samp?: (tournament_stage_windows_var_samp_order_by | null),variance?: (tournament_stage_windows_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "tournament_stage_windows" */ -export interface tournament_stage_windows_arr_rel_insert_input {data: tournament_stage_windows_insert_input[], -/** upsert condition */ -on_conflict?: (tournament_stage_windows_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface tournament_stage_windows_avg_fieldsGenqlSelection{ - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "tournament_stage_windows" */ -export interface tournament_stage_windows_avg_order_by {round?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "tournament_stage_windows". All fields are combined with a logical 'AND'. */ -export interface tournament_stage_windows_bool_exp {_and?: (tournament_stage_windows_bool_exp[] | null),_not?: (tournament_stage_windows_bool_exp | null),_or?: (tournament_stage_windows_bool_exp[] | null),closes_at?: (timestamptz_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),default_match_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),opens_at?: (timestamptz_comparison_exp | null),round?: (Int_comparison_exp | null),stage?: (tournament_stages_bool_exp | null),tournament_stage_id?: (uuid_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "tournament_stage_windows" */ -export interface tournament_stage_windows_inc_input {round?: (Scalars['Int'] | null)} - - -/** input type for inserting data into table "tournament_stage_windows" */ -export interface tournament_stage_windows_insert_input {closes_at?: (Scalars['timestamptz'] | null),created_at?: (Scalars['timestamptz'] | null),default_match_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),opens_at?: (Scalars['timestamptz'] | null),round?: (Scalars['Int'] | null),stage?: (tournament_stages_obj_rel_insert_input | null),tournament_stage_id?: (Scalars['uuid'] | null)} - - -/** aggregate max on columns */ -export interface tournament_stage_windows_max_fieldsGenqlSelection{ - closes_at?: boolean | number - created_at?: boolean | number - default_match_at?: boolean | number - id?: boolean | number - opens_at?: boolean | number - round?: boolean | number - tournament_stage_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "tournament_stage_windows" */ -export interface tournament_stage_windows_max_order_by {closes_at?: (order_by | null),created_at?: (order_by | null),default_match_at?: (order_by | null),id?: (order_by | null),opens_at?: (order_by | null),round?: (order_by | null),tournament_stage_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface tournament_stage_windows_min_fieldsGenqlSelection{ - closes_at?: boolean | number - created_at?: boolean | number - default_match_at?: boolean | number - id?: boolean | number - opens_at?: boolean | number - round?: boolean | number - tournament_stage_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "tournament_stage_windows" */ -export interface tournament_stage_windows_min_order_by {closes_at?: (order_by | null),created_at?: (order_by | null),default_match_at?: (order_by | null),id?: (order_by | null),opens_at?: (order_by | null),round?: (order_by | null),tournament_stage_id?: (order_by | null)} - - -/** response of any mutation on the table "tournament_stage_windows" */ -export interface tournament_stage_windows_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: tournament_stage_windowsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "tournament_stage_windows" */ -export interface tournament_stage_windows_on_conflict {constraint: tournament_stage_windows_constraint,update_columns?: tournament_stage_windows_update_column[],where?: (tournament_stage_windows_bool_exp | null)} - - -/** Ordering options when selecting data from "tournament_stage_windows". */ -export interface tournament_stage_windows_order_by {closes_at?: (order_by | null),created_at?: (order_by | null),default_match_at?: (order_by | null),id?: (order_by | null),opens_at?: (order_by | null),round?: (order_by | null),stage?: (tournament_stages_order_by | null),tournament_stage_id?: (order_by | null)} - - -/** primary key columns input for table: tournament_stage_windows */ -export interface tournament_stage_windows_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "tournament_stage_windows" */ -export interface tournament_stage_windows_set_input {closes_at?: (Scalars['timestamptz'] | null),created_at?: (Scalars['timestamptz'] | null),default_match_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),opens_at?: (Scalars['timestamptz'] | null),round?: (Scalars['Int'] | null),tournament_stage_id?: (Scalars['uuid'] | null)} - - -/** aggregate stddev on columns */ -export interface tournament_stage_windows_stddev_fieldsGenqlSelection{ - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "tournament_stage_windows" */ -export interface tournament_stage_windows_stddev_order_by {round?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface tournament_stage_windows_stddev_pop_fieldsGenqlSelection{ - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "tournament_stage_windows" */ -export interface tournament_stage_windows_stddev_pop_order_by {round?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface tournament_stage_windows_stddev_samp_fieldsGenqlSelection{ - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "tournament_stage_windows" */ -export interface tournament_stage_windows_stddev_samp_order_by {round?: (order_by | null)} - - -/** Streaming cursor of the table "tournament_stage_windows" */ -export interface tournament_stage_windows_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: tournament_stage_windows_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface tournament_stage_windows_stream_cursor_value_input {closes_at?: (Scalars['timestamptz'] | null),created_at?: (Scalars['timestamptz'] | null),default_match_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),opens_at?: (Scalars['timestamptz'] | null),round?: (Scalars['Int'] | null),tournament_stage_id?: (Scalars['uuid'] | null)} - - -/** aggregate sum on columns */ -export interface tournament_stage_windows_sum_fieldsGenqlSelection{ - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "tournament_stage_windows" */ -export interface tournament_stage_windows_sum_order_by {round?: (order_by | null)} - -export interface tournament_stage_windows_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (tournament_stage_windows_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (tournament_stage_windows_set_input | null), -/** filter the rows which have to be updated */ -where: tournament_stage_windows_bool_exp} - - -/** aggregate var_pop on columns */ -export interface tournament_stage_windows_var_pop_fieldsGenqlSelection{ - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "tournament_stage_windows" */ -export interface tournament_stage_windows_var_pop_order_by {round?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface tournament_stage_windows_var_samp_fieldsGenqlSelection{ - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "tournament_stage_windows" */ -export interface tournament_stage_windows_var_samp_order_by {round?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface tournament_stage_windows_variance_fieldsGenqlSelection{ - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "tournament_stage_windows" */ -export interface tournament_stage_windows_variance_order_by {round?: (order_by | null)} - - -/** columns and relationships of "tournament_stages" */ -export interface tournament_stagesGenqlSelection{ - /** An array relationship */ - brackets?: (tournament_bracketsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_brackets_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_brackets_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_brackets_bool_exp | null)} }) - /** An aggregate relationship */ - brackets_aggregate?: (tournament_brackets_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_brackets_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_brackets_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_brackets_bool_exp | null)} }) - decider_best_of?: boolean | number - default_best_of?: boolean | number - /** An object relationship */ - e_tournament_stage_type?: e_tournament_stage_typesGenqlSelection - final_map_advantage?: boolean | number - groups?: boolean | number - id?: boolean | number - match_options_id?: boolean | number - max_rounds?: boolean | number - max_teams?: boolean | number - min_teams?: boolean | number - /** An object relationship */ - options?: match_optionsGenqlSelection - order?: boolean | number - /** An array relationship */ - results?: (v_team_stage_resultsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_team_stage_results_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_team_stage_results_order_by[] | null), - /** filter the rows returned */ - where?: (v_team_stage_results_bool_exp | null)} }) - /** An aggregate relationship */ - results_aggregate?: (v_team_stage_results_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_team_stage_results_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_team_stage_results_order_by[] | null), - /** filter the rows returned */ - where?: (v_team_stage_results_bool_exp | null)} }) - settings?: { __args: { - /** JSON select path */ - path?: (Scalars['String'] | null)} } | boolean | number - swiss_no_elimination?: boolean | number - third_place_match?: boolean | number - /** An object relationship */ - tournament?: tournamentsGenqlSelection - tournament_id?: boolean | number - type?: boolean | number - /** An array relationship */ - windows?: (tournament_stage_windowsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_stage_windows_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_stage_windows_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_stage_windows_bool_exp | null)} }) - /** An aggregate relationship */ - windows_aggregate?: (tournament_stage_windows_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_stage_windows_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_stage_windows_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_stage_windows_bool_exp | null)} }) - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "tournament_stages" */ -export interface tournament_stages_aggregateGenqlSelection{ - aggregate?: tournament_stages_aggregate_fieldsGenqlSelection - nodes?: tournament_stagesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface tournament_stages_aggregate_bool_exp {bool_and?: (tournament_stages_aggregate_bool_exp_bool_and | null),bool_or?: (tournament_stages_aggregate_bool_exp_bool_or | null),count?: (tournament_stages_aggregate_bool_exp_count | null)} - -export interface tournament_stages_aggregate_bool_exp_bool_and {arguments: tournament_stages_select_column_tournament_stages_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (tournament_stages_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface tournament_stages_aggregate_bool_exp_bool_or {arguments: tournament_stages_select_column_tournament_stages_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (tournament_stages_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface tournament_stages_aggregate_bool_exp_count {arguments?: (tournament_stages_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (tournament_stages_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "tournament_stages" */ -export interface tournament_stages_aggregate_fieldsGenqlSelection{ - avg?: tournament_stages_avg_fieldsGenqlSelection - count?: { __args: {columns?: (tournament_stages_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: tournament_stages_max_fieldsGenqlSelection - min?: tournament_stages_min_fieldsGenqlSelection - stddev?: tournament_stages_stddev_fieldsGenqlSelection - stddev_pop?: tournament_stages_stddev_pop_fieldsGenqlSelection - stddev_samp?: tournament_stages_stddev_samp_fieldsGenqlSelection - sum?: tournament_stages_sum_fieldsGenqlSelection - var_pop?: tournament_stages_var_pop_fieldsGenqlSelection - var_samp?: tournament_stages_var_samp_fieldsGenqlSelection - variance?: tournament_stages_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "tournament_stages" */ -export interface tournament_stages_aggregate_order_by {avg?: (tournament_stages_avg_order_by | null),count?: (order_by | null),max?: (tournament_stages_max_order_by | null),min?: (tournament_stages_min_order_by | null),stddev?: (tournament_stages_stddev_order_by | null),stddev_pop?: (tournament_stages_stddev_pop_order_by | null),stddev_samp?: (tournament_stages_stddev_samp_order_by | null),sum?: (tournament_stages_sum_order_by | null),var_pop?: (tournament_stages_var_pop_order_by | null),var_samp?: (tournament_stages_var_samp_order_by | null),variance?: (tournament_stages_variance_order_by | null)} - - -/** append existing jsonb value of filtered columns with new jsonb value */ -export interface tournament_stages_append_input {settings?: (Scalars['jsonb'] | null)} - - -/** input type for inserting array relation for remote table "tournament_stages" */ -export interface tournament_stages_arr_rel_insert_input {data: tournament_stages_insert_input[], -/** upsert condition */ -on_conflict?: (tournament_stages_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface tournament_stages_avg_fieldsGenqlSelection{ - decider_best_of?: boolean | number - default_best_of?: boolean | number - final_map_advantage?: boolean | number - groups?: boolean | number - max_rounds?: boolean | number - max_teams?: boolean | number - min_teams?: boolean | number - order?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "tournament_stages" */ -export interface tournament_stages_avg_order_by {decider_best_of?: (order_by | null),default_best_of?: (order_by | null),final_map_advantage?: (order_by | null),groups?: (order_by | null),max_rounds?: (order_by | null),max_teams?: (order_by | null),min_teams?: (order_by | null),order?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "tournament_stages". All fields are combined with a logical 'AND'. */ -export interface tournament_stages_bool_exp {_and?: (tournament_stages_bool_exp[] | null),_not?: (tournament_stages_bool_exp | null),_or?: (tournament_stages_bool_exp[] | null),brackets?: (tournament_brackets_bool_exp | null),brackets_aggregate?: (tournament_brackets_aggregate_bool_exp | null),decider_best_of?: (Int_comparison_exp | null),default_best_of?: (Int_comparison_exp | null),e_tournament_stage_type?: (e_tournament_stage_types_bool_exp | null),final_map_advantage?: (Int_comparison_exp | null),groups?: (Int_comparison_exp | null),id?: (uuid_comparison_exp | null),match_options_id?: (uuid_comparison_exp | null),max_rounds?: (Int_comparison_exp | null),max_teams?: (Int_comparison_exp | null),min_teams?: (Int_comparison_exp | null),options?: (match_options_bool_exp | null),order?: (Int_comparison_exp | null),results?: (v_team_stage_results_bool_exp | null),results_aggregate?: (v_team_stage_results_aggregate_bool_exp | null),settings?: (jsonb_comparison_exp | null),swiss_no_elimination?: (Boolean_comparison_exp | null),third_place_match?: (Boolean_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null),type?: (e_tournament_stage_types_enum_comparison_exp | null),windows?: (tournament_stage_windows_bool_exp | null),windows_aggregate?: (tournament_stage_windows_aggregate_bool_exp | null)} - - -/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ -export interface tournament_stages_delete_at_path_input {settings?: (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 tournament_stages_delete_elem_input {settings?: (Scalars['Int'] | null)} - - -/** delete key/value pair or string element. key/value pairs are matched based on their key value */ -export interface tournament_stages_delete_key_input {settings?: (Scalars['String'] | null)} - - -/** input type for incrementing numeric columns in table "tournament_stages" */ -export interface tournament_stages_inc_input {decider_best_of?: (Scalars['Int'] | null),default_best_of?: (Scalars['Int'] | null),final_map_advantage?: (Scalars['Int'] | null),groups?: (Scalars['Int'] | null),max_rounds?: (Scalars['Int'] | null),max_teams?: (Scalars['Int'] | null),min_teams?: (Scalars['Int'] | null),order?: (Scalars['Int'] | null)} - - -/** input type for inserting data into table "tournament_stages" */ -export interface tournament_stages_insert_input {brackets?: (tournament_brackets_arr_rel_insert_input | null),decider_best_of?: (Scalars['Int'] | null),default_best_of?: (Scalars['Int'] | null),e_tournament_stage_type?: (e_tournament_stage_types_obj_rel_insert_input | null),final_map_advantage?: (Scalars['Int'] | null),groups?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),max_rounds?: (Scalars['Int'] | null),max_teams?: (Scalars['Int'] | null),min_teams?: (Scalars['Int'] | null),options?: (match_options_obj_rel_insert_input | null),order?: (Scalars['Int'] | null),results?: (v_team_stage_results_arr_rel_insert_input | null),settings?: (Scalars['jsonb'] | null),swiss_no_elimination?: (Scalars['Boolean'] | null),third_place_match?: (Scalars['Boolean'] | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null),type?: (e_tournament_stage_types_enum | null),windows?: (tournament_stage_windows_arr_rel_insert_input | null)} - - -/** aggregate max on columns */ -export interface tournament_stages_max_fieldsGenqlSelection{ - decider_best_of?: boolean | number - default_best_of?: boolean | number - final_map_advantage?: boolean | number - groups?: boolean | number - id?: boolean | number - match_options_id?: boolean | number - max_rounds?: boolean | number - max_teams?: boolean | number - min_teams?: boolean | number - order?: boolean | number - tournament_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "tournament_stages" */ -export interface tournament_stages_max_order_by {decider_best_of?: (order_by | null),default_best_of?: (order_by | null),final_map_advantage?: (order_by | null),groups?: (order_by | null),id?: (order_by | null),match_options_id?: (order_by | null),max_rounds?: (order_by | null),max_teams?: (order_by | null),min_teams?: (order_by | null),order?: (order_by | null),tournament_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface tournament_stages_min_fieldsGenqlSelection{ - decider_best_of?: boolean | number - default_best_of?: boolean | number - final_map_advantage?: boolean | number - groups?: boolean | number - id?: boolean | number - match_options_id?: boolean | number - max_rounds?: boolean | number - max_teams?: boolean | number - min_teams?: boolean | number - order?: boolean | number - tournament_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "tournament_stages" */ -export interface tournament_stages_min_order_by {decider_best_of?: (order_by | null),default_best_of?: (order_by | null),final_map_advantage?: (order_by | null),groups?: (order_by | null),id?: (order_by | null),match_options_id?: (order_by | null),max_rounds?: (order_by | null),max_teams?: (order_by | null),min_teams?: (order_by | null),order?: (order_by | null),tournament_id?: (order_by | null)} - - -/** response of any mutation on the table "tournament_stages" */ -export interface tournament_stages_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: tournament_stagesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "tournament_stages" */ -export interface tournament_stages_obj_rel_insert_input {data: tournament_stages_insert_input, -/** upsert condition */ -on_conflict?: (tournament_stages_on_conflict | null)} - - -/** on_conflict condition type for table "tournament_stages" */ -export interface tournament_stages_on_conflict {constraint: tournament_stages_constraint,update_columns?: tournament_stages_update_column[],where?: (tournament_stages_bool_exp | null)} - - -/** Ordering options when selecting data from "tournament_stages". */ -export interface tournament_stages_order_by {brackets_aggregate?: (tournament_brackets_aggregate_order_by | null),decider_best_of?: (order_by | null),default_best_of?: (order_by | null),e_tournament_stage_type?: (e_tournament_stage_types_order_by | null),final_map_advantage?: (order_by | null),groups?: (order_by | null),id?: (order_by | null),match_options_id?: (order_by | null),max_rounds?: (order_by | null),max_teams?: (order_by | null),min_teams?: (order_by | null),options?: (match_options_order_by | null),order?: (order_by | null),results_aggregate?: (v_team_stage_results_aggregate_order_by | null),settings?: (order_by | null),swiss_no_elimination?: (order_by | null),third_place_match?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null),type?: (order_by | null),windows_aggregate?: (tournament_stage_windows_aggregate_order_by | null)} - - -/** primary key columns input for table: tournament_stages */ -export interface tournament_stages_pk_columns_input {id: Scalars['uuid']} - - -/** prepend existing jsonb value of filtered columns with new jsonb value */ -export interface tournament_stages_prepend_input {settings?: (Scalars['jsonb'] | null)} - - -/** input type for updating data in table "tournament_stages" */ -export interface tournament_stages_set_input {decider_best_of?: (Scalars['Int'] | null),default_best_of?: (Scalars['Int'] | null),final_map_advantage?: (Scalars['Int'] | null),groups?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),max_rounds?: (Scalars['Int'] | null),max_teams?: (Scalars['Int'] | null),min_teams?: (Scalars['Int'] | null),order?: (Scalars['Int'] | null),settings?: (Scalars['jsonb'] | null),swiss_no_elimination?: (Scalars['Boolean'] | null),third_place_match?: (Scalars['Boolean'] | null),tournament_id?: (Scalars['uuid'] | null),type?: (e_tournament_stage_types_enum | null)} - - -/** aggregate stddev on columns */ -export interface tournament_stages_stddev_fieldsGenqlSelection{ - decider_best_of?: boolean | number - default_best_of?: boolean | number - final_map_advantage?: boolean | number - groups?: boolean | number - max_rounds?: boolean | number - max_teams?: boolean | number - min_teams?: boolean | number - order?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "tournament_stages" */ -export interface tournament_stages_stddev_order_by {decider_best_of?: (order_by | null),default_best_of?: (order_by | null),final_map_advantage?: (order_by | null),groups?: (order_by | null),max_rounds?: (order_by | null),max_teams?: (order_by | null),min_teams?: (order_by | null),order?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface tournament_stages_stddev_pop_fieldsGenqlSelection{ - decider_best_of?: boolean | number - default_best_of?: boolean | number - final_map_advantage?: boolean | number - groups?: boolean | number - max_rounds?: boolean | number - max_teams?: boolean | number - min_teams?: boolean | number - order?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "tournament_stages" */ -export interface tournament_stages_stddev_pop_order_by {decider_best_of?: (order_by | null),default_best_of?: (order_by | null),final_map_advantage?: (order_by | null),groups?: (order_by | null),max_rounds?: (order_by | null),max_teams?: (order_by | null),min_teams?: (order_by | null),order?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface tournament_stages_stddev_samp_fieldsGenqlSelection{ - decider_best_of?: boolean | number - default_best_of?: boolean | number - final_map_advantage?: boolean | number - groups?: boolean | number - max_rounds?: boolean | number - max_teams?: boolean | number - min_teams?: boolean | number - order?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "tournament_stages" */ -export interface tournament_stages_stddev_samp_order_by {decider_best_of?: (order_by | null),default_best_of?: (order_by | null),final_map_advantage?: (order_by | null),groups?: (order_by | null),max_rounds?: (order_by | null),max_teams?: (order_by | null),min_teams?: (order_by | null),order?: (order_by | null)} - - -/** Streaming cursor of the table "tournament_stages" */ -export interface tournament_stages_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: tournament_stages_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface tournament_stages_stream_cursor_value_input {decider_best_of?: (Scalars['Int'] | null),default_best_of?: (Scalars['Int'] | null),final_map_advantage?: (Scalars['Int'] | null),groups?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),max_rounds?: (Scalars['Int'] | null),max_teams?: (Scalars['Int'] | null),min_teams?: (Scalars['Int'] | null),order?: (Scalars['Int'] | null),settings?: (Scalars['jsonb'] | null),swiss_no_elimination?: (Scalars['Boolean'] | null),third_place_match?: (Scalars['Boolean'] | null),tournament_id?: (Scalars['uuid'] | null),type?: (e_tournament_stage_types_enum | null)} - - -/** aggregate sum on columns */ -export interface tournament_stages_sum_fieldsGenqlSelection{ - decider_best_of?: boolean | number - default_best_of?: boolean | number - final_map_advantage?: boolean | number - groups?: boolean | number - max_rounds?: boolean | number - max_teams?: boolean | number - min_teams?: boolean | number - order?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "tournament_stages" */ -export interface tournament_stages_sum_order_by {decider_best_of?: (order_by | null),default_best_of?: (order_by | null),final_map_advantage?: (order_by | null),groups?: (order_by | null),max_rounds?: (order_by | null),max_teams?: (order_by | null),min_teams?: (order_by | null),order?: (order_by | null)} - -export interface tournament_stages_updates { -/** append existing jsonb value of filtered columns with new jsonb value */ -_append?: (tournament_stages_append_input | null), -/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ -_delete_at_path?: (tournament_stages_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?: (tournament_stages_delete_elem_input | null), -/** delete key/value pair or string element. key/value pairs are matched based on their key value */ -_delete_key?: (tournament_stages_delete_key_input | null), -/** increments the numeric columns with given value of the filtered values */ -_inc?: (tournament_stages_inc_input | null), -/** prepend existing jsonb value of filtered columns with new jsonb value */ -_prepend?: (tournament_stages_prepend_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (tournament_stages_set_input | null), -/** filter the rows which have to be updated */ -where: tournament_stages_bool_exp} - - -/** aggregate var_pop on columns */ -export interface tournament_stages_var_pop_fieldsGenqlSelection{ - decider_best_of?: boolean | number - default_best_of?: boolean | number - final_map_advantage?: boolean | number - groups?: boolean | number - max_rounds?: boolean | number - max_teams?: boolean | number - min_teams?: boolean | number - order?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "tournament_stages" */ -export interface tournament_stages_var_pop_order_by {decider_best_of?: (order_by | null),default_best_of?: (order_by | null),final_map_advantage?: (order_by | null),groups?: (order_by | null),max_rounds?: (order_by | null),max_teams?: (order_by | null),min_teams?: (order_by | null),order?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface tournament_stages_var_samp_fieldsGenqlSelection{ - decider_best_of?: boolean | number - default_best_of?: boolean | number - final_map_advantage?: boolean | number - groups?: boolean | number - max_rounds?: boolean | number - max_teams?: boolean | number - min_teams?: boolean | number - order?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "tournament_stages" */ -export interface tournament_stages_var_samp_order_by {decider_best_of?: (order_by | null),default_best_of?: (order_by | null),final_map_advantage?: (order_by | null),groups?: (order_by | null),max_rounds?: (order_by | null),max_teams?: (order_by | null),min_teams?: (order_by | null),order?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface tournament_stages_variance_fieldsGenqlSelection{ - decider_best_of?: boolean | number - default_best_of?: boolean | number - final_map_advantage?: boolean | number - groups?: boolean | number - max_rounds?: boolean | number - max_teams?: boolean | number - min_teams?: boolean | number - order?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "tournament_stages" */ -export interface tournament_stages_variance_order_by {decider_best_of?: (order_by | null),default_best_of?: (order_by | null),final_map_advantage?: (order_by | null),groups?: (order_by | null),max_rounds?: (order_by | null),max_teams?: (order_by | null),min_teams?: (order_by | null),order?: (order_by | null)} - - -/** columns and relationships of "tournament_team_invites" */ -export interface tournament_team_invitesGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - /** An object relationship */ - invited_by?: playersGenqlSelection - invited_by_player_steam_id?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - steam_id?: boolean | number - /** An object relationship */ - team?: tournament_teamsGenqlSelection - tournament_team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "tournament_team_invites" */ -export interface tournament_team_invites_aggregateGenqlSelection{ - aggregate?: tournament_team_invites_aggregate_fieldsGenqlSelection - nodes?: tournament_team_invitesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface tournament_team_invites_aggregate_bool_exp {count?: (tournament_team_invites_aggregate_bool_exp_count | null)} - -export interface tournament_team_invites_aggregate_bool_exp_count {arguments?: (tournament_team_invites_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (tournament_team_invites_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "tournament_team_invites" */ -export interface tournament_team_invites_aggregate_fieldsGenqlSelection{ - avg?: tournament_team_invites_avg_fieldsGenqlSelection - count?: { __args: {columns?: (tournament_team_invites_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: tournament_team_invites_max_fieldsGenqlSelection - min?: tournament_team_invites_min_fieldsGenqlSelection - stddev?: tournament_team_invites_stddev_fieldsGenqlSelection - stddev_pop?: tournament_team_invites_stddev_pop_fieldsGenqlSelection - stddev_samp?: tournament_team_invites_stddev_samp_fieldsGenqlSelection - sum?: tournament_team_invites_sum_fieldsGenqlSelection - var_pop?: tournament_team_invites_var_pop_fieldsGenqlSelection - var_samp?: tournament_team_invites_var_samp_fieldsGenqlSelection - variance?: tournament_team_invites_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "tournament_team_invites" */ -export interface tournament_team_invites_aggregate_order_by {avg?: (tournament_team_invites_avg_order_by | null),count?: (order_by | null),max?: (tournament_team_invites_max_order_by | null),min?: (tournament_team_invites_min_order_by | null),stddev?: (tournament_team_invites_stddev_order_by | null),stddev_pop?: (tournament_team_invites_stddev_pop_order_by | null),stddev_samp?: (tournament_team_invites_stddev_samp_order_by | null),sum?: (tournament_team_invites_sum_order_by | null),var_pop?: (tournament_team_invites_var_pop_order_by | null),var_samp?: (tournament_team_invites_var_samp_order_by | null),variance?: (tournament_team_invites_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "tournament_team_invites" */ -export interface tournament_team_invites_arr_rel_insert_input {data: tournament_team_invites_insert_input[], -/** upsert condition */ -on_conflict?: (tournament_team_invites_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface tournament_team_invites_avg_fieldsGenqlSelection{ - invited_by_player_steam_id?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "tournament_team_invites" */ -export interface tournament_team_invites_avg_order_by {invited_by_player_steam_id?: (order_by | null),steam_id?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "tournament_team_invites". All fields are combined with a logical 'AND'. */ -export interface tournament_team_invites_bool_exp {_and?: (tournament_team_invites_bool_exp[] | null),_not?: (tournament_team_invites_bool_exp | null),_or?: (tournament_team_invites_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),invited_by?: (players_bool_exp | null),invited_by_player_steam_id?: (bigint_comparison_exp | null),player?: (players_bool_exp | null),steam_id?: (bigint_comparison_exp | null),team?: (tournament_teams_bool_exp | null),tournament_team_id?: (uuid_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "tournament_team_invites" */ -export interface tournament_team_invites_inc_input {invited_by_player_steam_id?: (Scalars['bigint'] | null),steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "tournament_team_invites" */ -export interface tournament_team_invites_insert_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),invited_by?: (players_obj_rel_insert_input | null),invited_by_player_steam_id?: (Scalars['bigint'] | null),player?: (players_obj_rel_insert_input | null),steam_id?: (Scalars['bigint'] | null),team?: (tournament_teams_obj_rel_insert_input | null),tournament_team_id?: (Scalars['uuid'] | null)} - - -/** aggregate max on columns */ -export interface tournament_team_invites_max_fieldsGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - invited_by_player_steam_id?: boolean | number - steam_id?: boolean | number - tournament_team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "tournament_team_invites" */ -export interface tournament_team_invites_max_order_by {created_at?: (order_by | null),id?: (order_by | null),invited_by_player_steam_id?: (order_by | null),steam_id?: (order_by | null),tournament_team_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface tournament_team_invites_min_fieldsGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - invited_by_player_steam_id?: boolean | number - steam_id?: boolean | number - tournament_team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "tournament_team_invites" */ -export interface tournament_team_invites_min_order_by {created_at?: (order_by | null),id?: (order_by | null),invited_by_player_steam_id?: (order_by | null),steam_id?: (order_by | null),tournament_team_id?: (order_by | null)} - - -/** response of any mutation on the table "tournament_team_invites" */ -export interface tournament_team_invites_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: tournament_team_invitesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "tournament_team_invites" */ -export interface tournament_team_invites_on_conflict {constraint: tournament_team_invites_constraint,update_columns?: tournament_team_invites_update_column[],where?: (tournament_team_invites_bool_exp | null)} - - -/** Ordering options when selecting data from "tournament_team_invites". */ -export interface tournament_team_invites_order_by {created_at?: (order_by | null),id?: (order_by | null),invited_by?: (players_order_by | null),invited_by_player_steam_id?: (order_by | null),player?: (players_order_by | null),steam_id?: (order_by | null),team?: (tournament_teams_order_by | null),tournament_team_id?: (order_by | null)} - - -/** primary key columns input for table: tournament_team_invites */ -export interface tournament_team_invites_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "tournament_team_invites" */ -export interface tournament_team_invites_set_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),invited_by_player_steam_id?: (Scalars['bigint'] | null),steam_id?: (Scalars['bigint'] | null),tournament_team_id?: (Scalars['uuid'] | null)} - - -/** aggregate stddev on columns */ -export interface tournament_team_invites_stddev_fieldsGenqlSelection{ - invited_by_player_steam_id?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "tournament_team_invites" */ -export interface tournament_team_invites_stddev_order_by {invited_by_player_steam_id?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface tournament_team_invites_stddev_pop_fieldsGenqlSelection{ - invited_by_player_steam_id?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "tournament_team_invites" */ -export interface tournament_team_invites_stddev_pop_order_by {invited_by_player_steam_id?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface tournament_team_invites_stddev_samp_fieldsGenqlSelection{ - invited_by_player_steam_id?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "tournament_team_invites" */ -export interface tournament_team_invites_stddev_samp_order_by {invited_by_player_steam_id?: (order_by | null),steam_id?: (order_by | null)} - - -/** Streaming cursor of the table "tournament_team_invites" */ -export interface tournament_team_invites_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: tournament_team_invites_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface tournament_team_invites_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),invited_by_player_steam_id?: (Scalars['bigint'] | null),steam_id?: (Scalars['bigint'] | null),tournament_team_id?: (Scalars['uuid'] | null)} - - -/** aggregate sum on columns */ -export interface tournament_team_invites_sum_fieldsGenqlSelection{ - invited_by_player_steam_id?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "tournament_team_invites" */ -export interface tournament_team_invites_sum_order_by {invited_by_player_steam_id?: (order_by | null),steam_id?: (order_by | null)} - -export interface tournament_team_invites_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (tournament_team_invites_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (tournament_team_invites_set_input | null), -/** filter the rows which have to be updated */ -where: tournament_team_invites_bool_exp} - - -/** aggregate var_pop on columns */ -export interface tournament_team_invites_var_pop_fieldsGenqlSelection{ - invited_by_player_steam_id?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "tournament_team_invites" */ -export interface tournament_team_invites_var_pop_order_by {invited_by_player_steam_id?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface tournament_team_invites_var_samp_fieldsGenqlSelection{ - invited_by_player_steam_id?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "tournament_team_invites" */ -export interface tournament_team_invites_var_samp_order_by {invited_by_player_steam_id?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface tournament_team_invites_variance_fieldsGenqlSelection{ - invited_by_player_steam_id?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "tournament_team_invites" */ -export interface tournament_team_invites_variance_order_by {invited_by_player_steam_id?: (order_by | null),steam_id?: (order_by | null)} - - -/** columns and relationships of "tournament_team_roster" */ -export interface tournament_team_rosterGenqlSelection{ - checked_in_at?: boolean | number - /** An object relationship */ - e_team_role?: e_team_rolesGenqlSelection - /** An object relationship */ - player?: playersGenqlSelection - player_steam_id?: boolean | number - role?: boolean | number - /** A computed field, executes function "tournament_team_roster_target_eligible" */ - target_eligible?: boolean | number - /** An object relationship */ - tournament?: tournamentsGenqlSelection - tournament_id?: boolean | number - /** An object relationship */ - tournament_team?: tournament_teamsGenqlSelection - tournament_team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "tournament_team_roster" */ -export interface tournament_team_roster_aggregateGenqlSelection{ - aggregate?: tournament_team_roster_aggregate_fieldsGenqlSelection - nodes?: tournament_team_rosterGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface tournament_team_roster_aggregate_bool_exp {count?: (tournament_team_roster_aggregate_bool_exp_count | null)} - -export interface tournament_team_roster_aggregate_bool_exp_count {arguments?: (tournament_team_roster_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (tournament_team_roster_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "tournament_team_roster" */ -export interface tournament_team_roster_aggregate_fieldsGenqlSelection{ - avg?: tournament_team_roster_avg_fieldsGenqlSelection - count?: { __args: {columns?: (tournament_team_roster_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: tournament_team_roster_max_fieldsGenqlSelection - min?: tournament_team_roster_min_fieldsGenqlSelection - stddev?: tournament_team_roster_stddev_fieldsGenqlSelection - stddev_pop?: tournament_team_roster_stddev_pop_fieldsGenqlSelection - stddev_samp?: tournament_team_roster_stddev_samp_fieldsGenqlSelection - sum?: tournament_team_roster_sum_fieldsGenqlSelection - var_pop?: tournament_team_roster_var_pop_fieldsGenqlSelection - var_samp?: tournament_team_roster_var_samp_fieldsGenqlSelection - variance?: tournament_team_roster_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "tournament_team_roster" */ -export interface tournament_team_roster_aggregate_order_by {avg?: (tournament_team_roster_avg_order_by | null),count?: (order_by | null),max?: (tournament_team_roster_max_order_by | null),min?: (tournament_team_roster_min_order_by | null),stddev?: (tournament_team_roster_stddev_order_by | null),stddev_pop?: (tournament_team_roster_stddev_pop_order_by | null),stddev_samp?: (tournament_team_roster_stddev_samp_order_by | null),sum?: (tournament_team_roster_sum_order_by | null),var_pop?: (tournament_team_roster_var_pop_order_by | null),var_samp?: (tournament_team_roster_var_samp_order_by | null),variance?: (tournament_team_roster_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "tournament_team_roster" */ -export interface tournament_team_roster_arr_rel_insert_input {data: tournament_team_roster_insert_input[], -/** upsert condition */ -on_conflict?: (tournament_team_roster_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface tournament_team_roster_avg_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "tournament_team_roster" */ -export interface tournament_team_roster_avg_order_by {player_steam_id?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "tournament_team_roster". All fields are combined with a logical 'AND'. */ -export interface tournament_team_roster_bool_exp {_and?: (tournament_team_roster_bool_exp[] | null),_not?: (tournament_team_roster_bool_exp | null),_or?: (tournament_team_roster_bool_exp[] | null),checked_in_at?: (timestamptz_comparison_exp | null),e_team_role?: (e_team_roles_bool_exp | null),player?: (players_bool_exp | null),player_steam_id?: (bigint_comparison_exp | null),role?: (e_team_roles_enum_comparison_exp | null),target_eligible?: (Boolean_comparison_exp | null),tournament?: (tournaments_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 "tournament_team_roster" */ -export interface tournament_team_roster_inc_input {player_steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "tournament_team_roster" */ -export interface tournament_team_roster_insert_input {checked_in_at?: (Scalars['timestamptz'] | null),e_team_role?: (e_team_roles_obj_rel_insert_input | null),player?: (players_obj_rel_insert_input | null),player_steam_id?: (Scalars['bigint'] | null),role?: (e_team_roles_enum | null),tournament?: (tournaments_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 tournament_team_roster_max_fieldsGenqlSelection{ - checked_in_at?: boolean | number - player_steam_id?: boolean | number - tournament_id?: boolean | number - tournament_team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "tournament_team_roster" */ -export interface tournament_team_roster_max_order_by {checked_in_at?: (order_by | null),player_steam_id?: (order_by | null),tournament_id?: (order_by | null),tournament_team_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface tournament_team_roster_min_fieldsGenqlSelection{ - checked_in_at?: boolean | number - player_steam_id?: boolean | number - tournament_id?: boolean | number - tournament_team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "tournament_team_roster" */ -export interface tournament_team_roster_min_order_by {checked_in_at?: (order_by | null),player_steam_id?: (order_by | null),tournament_id?: (order_by | null),tournament_team_id?: (order_by | null)} - - -/** response of any mutation on the table "tournament_team_roster" */ -export interface tournament_team_roster_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: tournament_team_rosterGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "tournament_team_roster" */ -export interface tournament_team_roster_on_conflict {constraint: tournament_team_roster_constraint,update_columns?: tournament_team_roster_update_column[],where?: (tournament_team_roster_bool_exp | null)} - - -/** Ordering options when selecting data from "tournament_team_roster". */ -export interface tournament_team_roster_order_by {checked_in_at?: (order_by | null),e_team_role?: (e_team_roles_order_by | null),player?: (players_order_by | null),player_steam_id?: (order_by | null),role?: (order_by | null),target_eligible?: (order_by | null),tournament?: (tournaments_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: tournament_team_roster */ -export interface tournament_team_roster_pk_columns_input {player_steam_id: Scalars['bigint'],tournament_id: Scalars['uuid']} - - -/** input type for updating data in table "tournament_team_roster" */ -export interface tournament_team_roster_set_input {checked_in_at?: (Scalars['timestamptz'] | null),player_steam_id?: (Scalars['bigint'] | null),role?: (e_team_roles_enum | null),tournament_id?: (Scalars['uuid'] | null),tournament_team_id?: (Scalars['uuid'] | null)} - - -/** aggregate stddev on columns */ -export interface tournament_team_roster_stddev_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "tournament_team_roster" */ -export interface tournament_team_roster_stddev_order_by {player_steam_id?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface tournament_team_roster_stddev_pop_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "tournament_team_roster" */ -export interface tournament_team_roster_stddev_pop_order_by {player_steam_id?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface tournament_team_roster_stddev_samp_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "tournament_team_roster" */ -export interface tournament_team_roster_stddev_samp_order_by {player_steam_id?: (order_by | null)} - - -/** Streaming cursor of the table "tournament_team_roster" */ -export interface tournament_team_roster_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: tournament_team_roster_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface tournament_team_roster_stream_cursor_value_input {checked_in_at?: (Scalars['timestamptz'] | null),player_steam_id?: (Scalars['bigint'] | null),role?: (e_team_roles_enum | null),tournament_id?: (Scalars['uuid'] | null),tournament_team_id?: (Scalars['uuid'] | null)} - - -/** aggregate sum on columns */ -export interface tournament_team_roster_sum_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "tournament_team_roster" */ -export interface tournament_team_roster_sum_order_by {player_steam_id?: (order_by | null)} - -export interface tournament_team_roster_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (tournament_team_roster_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (tournament_team_roster_set_input | null), -/** filter the rows which have to be updated */ -where: tournament_team_roster_bool_exp} - - -/** aggregate var_pop on columns */ -export interface tournament_team_roster_var_pop_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "tournament_team_roster" */ -export interface tournament_team_roster_var_pop_order_by {player_steam_id?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface tournament_team_roster_var_samp_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "tournament_team_roster" */ -export interface tournament_team_roster_var_samp_order_by {player_steam_id?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface tournament_team_roster_variance_fieldsGenqlSelection{ - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "tournament_team_roster" */ -export interface tournament_team_roster_variance_order_by {player_steam_id?: (order_by | null)} - - -/** columns and relationships of "tournament_teams" */ -export interface tournament_teamsGenqlSelection{ - /** A computed field, executes function "can_manage_tournament_team" */ - can_manage?: boolean | number - /** An object relationship */ - captain?: playersGenqlSelection - captain_steam_id?: boolean | number - /** A computed field, executes function "tournament_team_checked_in" */ - checked_in?: boolean | number - checked_in_at?: boolean | number - created_at?: boolean | number - /** An object relationship */ - creator?: playersGenqlSelection - eligible_at?: boolean | number - /** An array relationship */ - free_agents?: (tournament_free_agentsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_free_agents_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_free_agents_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_free_agents_bool_exp | null)} }) - /** An aggregate relationship */ - free_agents_aggregate?: (tournament_free_agents_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_free_agents_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_free_agents_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_free_agents_bool_exp | null)} }) - id?: boolean | number - /** An array relationship */ - invites?: (tournament_team_invitesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_team_invites_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_invites_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_team_invites_bool_exp | null)} }) - /** An aggregate relationship */ - invites_aggregate?: (tournament_team_invites_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_team_invites_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_invites_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_team_invites_bool_exp | null)} }) - /** Created by draft_tournament_free_agent_teams rather than registered */ - is_drafted?: boolean | number - name?: boolean | number - owner_steam_id?: boolean | number - /** An object relationship */ - results?: v_team_stage_resultsGenqlSelection - /** An array relationship */ - roster?: (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 */ - roster_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)} }) - seed?: boolean | number - short_name?: boolean | number - /** An object relationship */ - team?: teamsGenqlSelection - team_id?: boolean | number - /** An object relationship */ - tournament?: tournamentsGenqlSelection - tournament_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "tournament_teams" */ -export interface tournament_teams_aggregateGenqlSelection{ - aggregate?: tournament_teams_aggregate_fieldsGenqlSelection - nodes?: tournament_teamsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface tournament_teams_aggregate_bool_exp {bool_and?: (tournament_teams_aggregate_bool_exp_bool_and | null),bool_or?: (tournament_teams_aggregate_bool_exp_bool_or | null),count?: (tournament_teams_aggregate_bool_exp_count | null)} - -export interface tournament_teams_aggregate_bool_exp_bool_and {arguments: tournament_teams_select_column_tournament_teams_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (tournament_teams_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface tournament_teams_aggregate_bool_exp_bool_or {arguments: tournament_teams_select_column_tournament_teams_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (tournament_teams_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface tournament_teams_aggregate_bool_exp_count {arguments?: (tournament_teams_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (tournament_teams_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "tournament_teams" */ -export interface tournament_teams_aggregate_fieldsGenqlSelection{ - avg?: tournament_teams_avg_fieldsGenqlSelection - count?: { __args: {columns?: (tournament_teams_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: tournament_teams_max_fieldsGenqlSelection - min?: tournament_teams_min_fieldsGenqlSelection - stddev?: tournament_teams_stddev_fieldsGenqlSelection - stddev_pop?: tournament_teams_stddev_pop_fieldsGenqlSelection - stddev_samp?: tournament_teams_stddev_samp_fieldsGenqlSelection - sum?: tournament_teams_sum_fieldsGenqlSelection - var_pop?: tournament_teams_var_pop_fieldsGenqlSelection - var_samp?: tournament_teams_var_samp_fieldsGenqlSelection - variance?: tournament_teams_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "tournament_teams" */ -export interface tournament_teams_aggregate_order_by {avg?: (tournament_teams_avg_order_by | null),count?: (order_by | null),max?: (tournament_teams_max_order_by | null),min?: (tournament_teams_min_order_by | null),stddev?: (tournament_teams_stddev_order_by | null),stddev_pop?: (tournament_teams_stddev_pop_order_by | null),stddev_samp?: (tournament_teams_stddev_samp_order_by | null),sum?: (tournament_teams_sum_order_by | null),var_pop?: (tournament_teams_var_pop_order_by | null),var_samp?: (tournament_teams_var_samp_order_by | null),variance?: (tournament_teams_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "tournament_teams" */ -export interface tournament_teams_arr_rel_insert_input {data: tournament_teams_insert_input[], -/** upsert condition */ -on_conflict?: (tournament_teams_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface tournament_teams_avg_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - owner_steam_id?: boolean | number - seed?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "tournament_teams" */ -export interface tournament_teams_avg_order_by {captain_steam_id?: (order_by | null),owner_steam_id?: (order_by | null),seed?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "tournament_teams". All fields are combined with a logical 'AND'. */ -export interface tournament_teams_bool_exp {_and?: (tournament_teams_bool_exp[] | null),_not?: (tournament_teams_bool_exp | null),_or?: (tournament_teams_bool_exp[] | null),can_manage?: (Boolean_comparison_exp | null),captain?: (players_bool_exp | null),captain_steam_id?: (bigint_comparison_exp | null),checked_in?: (Boolean_comparison_exp | null),checked_in_at?: (timestamptz_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),creator?: (players_bool_exp | null),eligible_at?: (timestamptz_comparison_exp | null),free_agents?: (tournament_free_agents_bool_exp | null),free_agents_aggregate?: (tournament_free_agents_aggregate_bool_exp | null),id?: (uuid_comparison_exp | null),invites?: (tournament_team_invites_bool_exp | null),invites_aggregate?: (tournament_team_invites_aggregate_bool_exp | null),is_drafted?: (Boolean_comparison_exp | null),name?: (String_comparison_exp | null),owner_steam_id?: (bigint_comparison_exp | null),results?: (v_team_stage_results_bool_exp | null),roster?: (tournament_team_roster_bool_exp | null),roster_aggregate?: (tournament_team_roster_aggregate_bool_exp | null),seed?: (Int_comparison_exp | null),short_name?: (String_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "tournament_teams" */ -export interface tournament_teams_inc_input {captain_steam_id?: (Scalars['bigint'] | null),owner_steam_id?: (Scalars['bigint'] | null),seed?: (Scalars['Int'] | null)} - - -/** input type for inserting data into table "tournament_teams" */ -export interface tournament_teams_insert_input {captain?: (players_obj_rel_insert_input | null),captain_steam_id?: (Scalars['bigint'] | null),checked_in_at?: (Scalars['timestamptz'] | null),created_at?: (Scalars['timestamptz'] | null),creator?: (players_obj_rel_insert_input | null),eligible_at?: (Scalars['timestamptz'] | null),free_agents?: (tournament_free_agents_arr_rel_insert_input | null),id?: (Scalars['uuid'] | null),invites?: (tournament_team_invites_arr_rel_insert_input | null), -/** Created by draft_tournament_free_agent_teams rather than registered */ -is_drafted?: (Scalars['Boolean'] | null),name?: (Scalars['String'] | null),owner_steam_id?: (Scalars['bigint'] | null),results?: (v_team_stage_results_obj_rel_insert_input | null),roster?: (tournament_team_roster_arr_rel_insert_input | null),seed?: (Scalars['Int'] | null),short_name?: (Scalars['String'] | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null)} - - -/** aggregate max on columns */ -export interface tournament_teams_max_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - checked_in_at?: boolean | number - created_at?: boolean | number - eligible_at?: boolean | number - id?: boolean | number - name?: boolean | number - owner_steam_id?: boolean | number - seed?: boolean | number - short_name?: boolean | number - team_id?: boolean | number - tournament_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "tournament_teams" */ -export interface tournament_teams_max_order_by {captain_steam_id?: (order_by | null),checked_in_at?: (order_by | null),created_at?: (order_by | null),eligible_at?: (order_by | null),id?: (order_by | null),name?: (order_by | null),owner_steam_id?: (order_by | null),seed?: (order_by | null),short_name?: (order_by | null),team_id?: (order_by | null),tournament_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface tournament_teams_min_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - checked_in_at?: boolean | number - created_at?: boolean | number - eligible_at?: boolean | number - id?: boolean | number - name?: boolean | number - owner_steam_id?: boolean | number - seed?: boolean | number - short_name?: boolean | number - team_id?: boolean | number - tournament_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "tournament_teams" */ -export interface tournament_teams_min_order_by {captain_steam_id?: (order_by | null),checked_in_at?: (order_by | null),created_at?: (order_by | null),eligible_at?: (order_by | null),id?: (order_by | null),name?: (order_by | null),owner_steam_id?: (order_by | null),seed?: (order_by | null),short_name?: (order_by | null),team_id?: (order_by | null),tournament_id?: (order_by | null)} - - -/** response of any mutation on the table "tournament_teams" */ -export interface tournament_teams_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: tournament_teamsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "tournament_teams" */ -export interface tournament_teams_obj_rel_insert_input {data: tournament_teams_insert_input, -/** upsert condition */ -on_conflict?: (tournament_teams_on_conflict | null)} - - -/** on_conflict condition type for table "tournament_teams" */ -export interface tournament_teams_on_conflict {constraint: tournament_teams_constraint,update_columns?: tournament_teams_update_column[],where?: (tournament_teams_bool_exp | null)} - - -/** Ordering options when selecting data from "tournament_teams". */ -export interface tournament_teams_order_by {can_manage?: (order_by | null),captain?: (players_order_by | null),captain_steam_id?: (order_by | null),checked_in?: (order_by | null),checked_in_at?: (order_by | null),created_at?: (order_by | null),creator?: (players_order_by | null),eligible_at?: (order_by | null),free_agents_aggregate?: (tournament_free_agents_aggregate_order_by | null),id?: (order_by | null),invites_aggregate?: (tournament_team_invites_aggregate_order_by | null),is_drafted?: (order_by | null),name?: (order_by | null),owner_steam_id?: (order_by | null),results?: (v_team_stage_results_order_by | null),roster_aggregate?: (tournament_team_roster_aggregate_order_by | null),seed?: (order_by | null),short_name?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null)} - - -/** primary key columns input for table: tournament_teams */ -export interface tournament_teams_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "tournament_teams" */ -export interface tournament_teams_set_input {captain_steam_id?: (Scalars['bigint'] | null),checked_in_at?: (Scalars['timestamptz'] | null),created_at?: (Scalars['timestamptz'] | null),eligible_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null), -/** Created by draft_tournament_free_agent_teams rather than registered */ -is_drafted?: (Scalars['Boolean'] | null),name?: (Scalars['String'] | null),owner_steam_id?: (Scalars['bigint'] | null),seed?: (Scalars['Int'] | null),short_name?: (Scalars['String'] | null),team_id?: (Scalars['uuid'] | null),tournament_id?: (Scalars['uuid'] | null)} - - -/** aggregate stddev on columns */ -export interface tournament_teams_stddev_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - owner_steam_id?: boolean | number - seed?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "tournament_teams" */ -export interface tournament_teams_stddev_order_by {captain_steam_id?: (order_by | null),owner_steam_id?: (order_by | null),seed?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface tournament_teams_stddev_pop_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - owner_steam_id?: boolean | number - seed?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "tournament_teams" */ -export interface tournament_teams_stddev_pop_order_by {captain_steam_id?: (order_by | null),owner_steam_id?: (order_by | null),seed?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface tournament_teams_stddev_samp_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - owner_steam_id?: boolean | number - seed?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "tournament_teams" */ -export interface tournament_teams_stddev_samp_order_by {captain_steam_id?: (order_by | null),owner_steam_id?: (order_by | null),seed?: (order_by | null)} - - -/** Streaming cursor of the table "tournament_teams" */ -export interface tournament_teams_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: tournament_teams_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface tournament_teams_stream_cursor_value_input {captain_steam_id?: (Scalars['bigint'] | null),checked_in_at?: (Scalars['timestamptz'] | null),created_at?: (Scalars['timestamptz'] | null),eligible_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null), -/** Created by draft_tournament_free_agent_teams rather than registered */ -is_drafted?: (Scalars['Boolean'] | null),name?: (Scalars['String'] | null),owner_steam_id?: (Scalars['bigint'] | null),seed?: (Scalars['Int'] | null),short_name?: (Scalars['String'] | null),team_id?: (Scalars['uuid'] | null),tournament_id?: (Scalars['uuid'] | null)} - - -/** aggregate sum on columns */ -export interface tournament_teams_sum_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - owner_steam_id?: boolean | number - seed?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "tournament_teams" */ -export interface tournament_teams_sum_order_by {captain_steam_id?: (order_by | null),owner_steam_id?: (order_by | null),seed?: (order_by | null)} - -export interface tournament_teams_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (tournament_teams_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (tournament_teams_set_input | null), -/** filter the rows which have to be updated */ -where: tournament_teams_bool_exp} - - -/** aggregate var_pop on columns */ -export interface tournament_teams_var_pop_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - owner_steam_id?: boolean | number - seed?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "tournament_teams" */ -export interface tournament_teams_var_pop_order_by {captain_steam_id?: (order_by | null),owner_steam_id?: (order_by | null),seed?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface tournament_teams_var_samp_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - owner_steam_id?: boolean | number - seed?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "tournament_teams" */ -export interface tournament_teams_var_samp_order_by {captain_steam_id?: (order_by | null),owner_steam_id?: (order_by | null),seed?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface tournament_teams_variance_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - owner_steam_id?: boolean | number - seed?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "tournament_teams" */ -export interface tournament_teams_variance_order_by {captain_steam_id?: (order_by | null),owner_steam_id?: (order_by | null),seed?: (order_by | null)} - - -/** columns and relationships of "tournaments" */ -export interface tournamentsGenqlSelection{ - /** An object relationship */ - admin?: playersGenqlSelection - auto_start?: boolean | number - /** An array relationship */ - award_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 */ - award_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)} }) - /** 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)} }) - awards_enabled?: boolean | number - banner?: boolean | number - /** A computed field, executes function "can_cancel_tournament" */ - can_cancel?: boolean | number - /** A computed field, executes function "can_close_tournament_registration" */ - can_close_registration?: boolean | number - /** A computed field, executes function "can_join_tournament" */ - can_join?: boolean | number - /** A computed field, executes function "can_open_tournament_registration" */ - can_open_registration?: boolean | number - /** A computed field, executes function "can_pause_tournament" */ - can_pause?: boolean | number - /** A computed field, executes function "can_resume_tournament" */ - can_resume?: boolean | number - /** A computed field, executes function "can_review_tournament_check_in" */ - can_review_check_in?: boolean | number - /** A computed field, executes function "can_setup_tournament" */ - can_setup?: boolean | number - /** A computed field, executes function "can_start_tournament" */ - can_start?: boolean | number - /** An array relationship */ - categories?: (tournament_categoriesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_categories_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (tournament_categories_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_categories_bool_exp | null)} }) - /** An aggregate relationship */ - categories_aggregate?: (tournament_categories_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_categories_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (tournament_categories_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_categories_bool_exp | null)} }) - /** The check_in_ends_at the close pass has already acted on */ - check_in_closed_for?: boolean | number - check_in_closes_before_minutes?: boolean | number - /** The check_in_ends_at the closing reminder was sent for */ - check_in_closing_notified_for?: boolean | number - /** When the check-in window closes; NULL until it opens */ - check_in_ends_at?: boolean | number - /** A computed field, executes function "tournament_check_in_open" */ - check_in_open?: boolean | number - check_in_opens_before_minutes?: boolean | number - check_in_required?: boolean | number - /** Who confirms a team: Captains, every rostered Player, or the organizer (Admin) */ - check_in_setting?: boolean | number - /** A computed field, executes function "tournament_check_in_started" */ - check_in_started?: boolean | number - created_at?: boolean | number - description?: boolean | number - discord_guild_id?: boolean | number - discord_notifications_enabled?: boolean | number - discord_notify_Canceled?: boolean | number - discord_notify_Finished?: boolean | number - discord_notify_Forfeit?: boolean | number - discord_notify_Live?: boolean | number - discord_notify_MapPaused?: boolean | number - discord_notify_PickingPlayers?: boolean | number - discord_notify_Scheduled?: boolean | number - discord_notify_Surrendered?: boolean | number - discord_notify_Tie?: boolean | number - discord_notify_Veto?: boolean | number - discord_notify_WaitingForCheckIn?: boolean | number - discord_notify_WaitingForServer?: boolean | number - discord_role_id?: boolean | number - discord_voice_enabled?: boolean | number - discord_webhook?: boolean | number - /** An object relationship */ - e_tournament_status?: e_tournament_statusGenqlSelection - /** An array relationship */ - free_agents?: (tournament_free_agentsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_free_agents_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_free_agents_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_free_agents_bool_exp | null)} }) - /** An aggregate relationship */ - free_agents_aggregate?: (tournament_free_agents_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_free_agents_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_free_agents_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_free_agents_bool_exp | null)} }) - /** A computed field, executes function "tournament_has_min_teams" */ - has_min_teams?: boolean | number - homepage?: boolean | number - id?: boolean | number - invite_only?: boolean | number - is_league?: boolean | number - /** A computed field, executes function "is_tournament_organizer" */ - is_organizer?: boolean | number - /** A computed field, executes function "joined_tournament" */ - joined_tournament?: boolean | number - latitude?: boolean | number - /** An object relationship */ - league_season_division?: league_season_divisionsGenqlSelection - location?: boolean | number - logo?: boolean | number - longitude?: boolean | number - match_options_id?: boolean | number - max_elo?: boolean | number - /** A computed field, executes function "tournament_max_players_per_lineup" */ - max_players_per_lineup?: boolean | number - /** A computed field, executes function "meets_min_role" */ - meets_min_role?: boolean | number - min_elo?: boolean | number - /** A computed field, executes function "tournament_min_players_per_lineup" */ - min_players_per_lineup?: boolean | number - min_role?: boolean | number - /** A computed field, executes function "tournament_missed_check_in_count" */ - missed_check_in_count?: boolean | number - name?: boolean | number - /** An object relationship */ - options?: match_optionsGenqlSelection - organizer_steam_id?: boolean | number - /** An array relationship */ - organizer_teams?: (tournament_organizer_teamsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_organizer_teams_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (tournament_organizer_teams_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_organizer_teams_bool_exp | null)} }) - /** An aggregate relationship */ - organizer_teams_aggregate?: (tournament_organizer_teams_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_organizer_teams_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (tournament_organizer_teams_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_organizer_teams_bool_exp | null)} }) - /** An array relationship */ - organizers?: (tournament_organizersGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_organizers_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_organizers_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_organizers_bool_exp | null)} }) - /** An aggregate relationship */ - organizers_aggregate?: (tournament_organizers_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_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?: (tournament_organizers_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_organizers_bool_exp | null)} }) - /** An array relationship */ - player_stats?: (v_tournament_player_statsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_tournament_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_tournament_player_stats_order_by[] | null), - /** filter the rows returned */ - where?: (v_tournament_player_stats_bool_exp | null)} }) - /** An aggregate relationship */ - player_stats_aggregate?: (v_tournament_player_stats_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_tournament_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_tournament_player_stats_order_by[] | null), - /** filter the rows returned */ - where?: (v_tournament_player_stats_bool_exp | null)} }) - /** An array relationship */ - prizes?: (tournament_prizesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_prizes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (tournament_prizes_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_prizes_bool_exp | null)} }) - /** An aggregate relationship */ - prizes_aggregate?: (tournament_prizes_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_prizes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (tournament_prizes_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_prizes_bool_exp | null)} }) - /** Preferred server regions for hosted matches */ - regions?: boolean | number - registration_type?: boolean | number - /** A computed field, executes function "tournament_registration_unlocked_for_session" */ - registration_unlocked?: boolean | number - /** An array relationship */ - results?: (v_team_tournament_resultsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_team_tournament_results_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_team_tournament_results_order_by[] | null), - /** filter the rows returned */ - where?: (v_team_tournament_results_bool_exp | null)} }) - /** An aggregate relationship */ - results_aggregate?: (v_team_tournament_results_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_team_tournament_results_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** 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_team_tournament_results_order_by[] | null), - /** filter the rows returned */ - where?: (v_team_tournament_results_bool_exp | null)} }) - /** An array relationship */ - 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 */ - 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)} }) - scheduling_mode?: boolean | number - /** An array relationship */ - 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 */ - 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)} }) - start?: boolean | number - status?: boolean | number - /** An array relationship */ - teams?: (tournament_teamsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_teams_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (tournament_teams_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_teams_bool_exp | null)} }) - /** An aggregate relationship */ - teams_aggregate?: (tournament_teams_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_teams_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (tournament_teams_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_teams_bool_exp | null)} }) - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "tournaments" */ -export interface tournaments_aggregateGenqlSelection{ - aggregate?: tournaments_aggregate_fieldsGenqlSelection - nodes?: tournamentsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface tournaments_aggregate_bool_exp {avg?: (tournaments_aggregate_bool_exp_avg | null),bool_and?: (tournaments_aggregate_bool_exp_bool_and | null),bool_or?: (tournaments_aggregate_bool_exp_bool_or | null),corr?: (tournaments_aggregate_bool_exp_corr | null),count?: (tournaments_aggregate_bool_exp_count | null),covar_samp?: (tournaments_aggregate_bool_exp_covar_samp | null),max?: (tournaments_aggregate_bool_exp_max | null),min?: (tournaments_aggregate_bool_exp_min | null),stddev_samp?: (tournaments_aggregate_bool_exp_stddev_samp | null),sum?: (tournaments_aggregate_bool_exp_sum | null),var_samp?: (tournaments_aggregate_bool_exp_var_samp | null)} - -export interface tournaments_aggregate_bool_exp_avg {arguments: tournaments_select_column_tournaments_aggregate_bool_exp_avg_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (tournaments_bool_exp | null),predicate: float8_comparison_exp} - -export interface tournaments_aggregate_bool_exp_bool_and {arguments: tournaments_select_column_tournaments_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (tournaments_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface tournaments_aggregate_bool_exp_bool_or {arguments: tournaments_select_column_tournaments_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (tournaments_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface tournaments_aggregate_bool_exp_corr {arguments: tournaments_aggregate_bool_exp_corr_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (tournaments_bool_exp | null),predicate: float8_comparison_exp} - -export interface tournaments_aggregate_bool_exp_corr_arguments {X: tournaments_select_column_tournaments_aggregate_bool_exp_corr_arguments_columns,Y: tournaments_select_column_tournaments_aggregate_bool_exp_corr_arguments_columns} - -export interface tournaments_aggregate_bool_exp_count {arguments?: (tournaments_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (tournaments_bool_exp | null),predicate: Int_comparison_exp} - -export interface tournaments_aggregate_bool_exp_covar_samp {arguments: tournaments_aggregate_bool_exp_covar_samp_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (tournaments_bool_exp | null),predicate: float8_comparison_exp} - -export interface tournaments_aggregate_bool_exp_covar_samp_arguments {X: tournaments_select_column_tournaments_aggregate_bool_exp_covar_samp_arguments_columns,Y: tournaments_select_column_tournaments_aggregate_bool_exp_covar_samp_arguments_columns} - -export interface tournaments_aggregate_bool_exp_max {arguments: tournaments_select_column_tournaments_aggregate_bool_exp_max_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (tournaments_bool_exp | null),predicate: float8_comparison_exp} - -export interface tournaments_aggregate_bool_exp_min {arguments: tournaments_select_column_tournaments_aggregate_bool_exp_min_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (tournaments_bool_exp | null),predicate: float8_comparison_exp} - -export interface tournaments_aggregate_bool_exp_stddev_samp {arguments: tournaments_select_column_tournaments_aggregate_bool_exp_stddev_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (tournaments_bool_exp | null),predicate: float8_comparison_exp} - -export interface tournaments_aggregate_bool_exp_sum {arguments: tournaments_select_column_tournaments_aggregate_bool_exp_sum_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (tournaments_bool_exp | null),predicate: float8_comparison_exp} - -export interface tournaments_aggregate_bool_exp_var_samp {arguments: tournaments_select_column_tournaments_aggregate_bool_exp_var_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (tournaments_bool_exp | null),predicate: float8_comparison_exp} - - -/** aggregate fields of "tournaments" */ -export interface tournaments_aggregate_fieldsGenqlSelection{ - avg?: tournaments_avg_fieldsGenqlSelection - count?: { __args: {columns?: (tournaments_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: tournaments_max_fieldsGenqlSelection - min?: tournaments_min_fieldsGenqlSelection - stddev?: tournaments_stddev_fieldsGenqlSelection - stddev_pop?: tournaments_stddev_pop_fieldsGenqlSelection - stddev_samp?: tournaments_stddev_samp_fieldsGenqlSelection - sum?: tournaments_sum_fieldsGenqlSelection - var_pop?: tournaments_var_pop_fieldsGenqlSelection - var_samp?: tournaments_var_samp_fieldsGenqlSelection - variance?: tournaments_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "tournaments" */ -export interface tournaments_aggregate_order_by {avg?: (tournaments_avg_order_by | null),count?: (order_by | null),max?: (tournaments_max_order_by | null),min?: (tournaments_min_order_by | null),stddev?: (tournaments_stddev_order_by | null),stddev_pop?: (tournaments_stddev_pop_order_by | null),stddev_samp?: (tournaments_stddev_samp_order_by | null),sum?: (tournaments_sum_order_by | null),var_pop?: (tournaments_var_pop_order_by | null),var_samp?: (tournaments_var_samp_order_by | null),variance?: (tournaments_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "tournaments" */ -export interface tournaments_arr_rel_insert_input {data: tournaments_insert_input[], -/** upsert condition */ -on_conflict?: (tournaments_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface tournaments_avg_fieldsGenqlSelection{ - check_in_closes_before_minutes?: boolean | number - check_in_opens_before_minutes?: boolean | number - latitude?: boolean | number - longitude?: boolean | number - max_elo?: boolean | number - /** A computed field, executes function "tournament_max_players_per_lineup" */ - max_players_per_lineup?: boolean | number - min_elo?: boolean | number - /** A computed field, executes function "tournament_min_players_per_lineup" */ - min_players_per_lineup?: boolean | number - /** A computed field, executes function "tournament_missed_check_in_count" */ - missed_check_in_count?: boolean | number - organizer_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "tournaments" */ -export interface tournaments_avg_order_by {check_in_closes_before_minutes?: (order_by | null),check_in_opens_before_minutes?: (order_by | null),latitude?: (order_by | null),longitude?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null),organizer_steam_id?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "tournaments". All fields are combined with a logical 'AND'. */ -export interface tournaments_bool_exp {_and?: (tournaments_bool_exp[] | null),_not?: (tournaments_bool_exp | null),_or?: (tournaments_bool_exp[] | null),admin?: (players_bool_exp | null),auto_start?: (Boolean_comparison_exp | null),award_configs?: (tournament_awards_bool_exp | null),award_configs_aggregate?: (tournament_awards_aggregate_bool_exp | null),awards?: (award_recipients_bool_exp | null),awards_aggregate?: (award_recipients_aggregate_bool_exp | null),awards_enabled?: (Boolean_comparison_exp | null),banner?: (String_comparison_exp | null),can_cancel?: (Boolean_comparison_exp | null),can_close_registration?: (Boolean_comparison_exp | null),can_join?: (Boolean_comparison_exp | null),can_open_registration?: (Boolean_comparison_exp | null),can_pause?: (Boolean_comparison_exp | null),can_resume?: (Boolean_comparison_exp | null),can_review_check_in?: (Boolean_comparison_exp | null),can_setup?: (Boolean_comparison_exp | null),can_start?: (Boolean_comparison_exp | null),categories?: (tournament_categories_bool_exp | null),categories_aggregate?: (tournament_categories_aggregate_bool_exp | null),check_in_closed_for?: (timestamptz_comparison_exp | null),check_in_closes_before_minutes?: (Int_comparison_exp | null),check_in_closing_notified_for?: (timestamptz_comparison_exp | null),check_in_ends_at?: (timestamptz_comparison_exp | null),check_in_open?: (Boolean_comparison_exp | null),check_in_opens_before_minutes?: (Int_comparison_exp | null),check_in_required?: (Boolean_comparison_exp | null),check_in_setting?: (e_check_in_settings_enum_comparison_exp | null),check_in_started?: (Boolean_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),description?: (String_comparison_exp | null),discord_guild_id?: (String_comparison_exp | null),discord_notifications_enabled?: (Boolean_comparison_exp | null),discord_notify_Canceled?: (Boolean_comparison_exp | null),discord_notify_Finished?: (Boolean_comparison_exp | null),discord_notify_Forfeit?: (Boolean_comparison_exp | null),discord_notify_Live?: (Boolean_comparison_exp | null),discord_notify_MapPaused?: (Boolean_comparison_exp | null),discord_notify_PickingPlayers?: (Boolean_comparison_exp | null),discord_notify_Scheduled?: (Boolean_comparison_exp | null),discord_notify_Surrendered?: (Boolean_comparison_exp | null),discord_notify_Tie?: (Boolean_comparison_exp | null),discord_notify_Veto?: (Boolean_comparison_exp | null),discord_notify_WaitingForCheckIn?: (Boolean_comparison_exp | null),discord_notify_WaitingForServer?: (Boolean_comparison_exp | null),discord_role_id?: (String_comparison_exp | null),discord_voice_enabled?: (Boolean_comparison_exp | null),discord_webhook?: (String_comparison_exp | null),e_tournament_status?: (e_tournament_status_bool_exp | null),free_agents?: (tournament_free_agents_bool_exp | null),free_agents_aggregate?: (tournament_free_agents_aggregate_bool_exp | null),has_min_teams?: (Boolean_comparison_exp | null),homepage?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),invite_only?: (Boolean_comparison_exp | null),is_league?: (Boolean_comparison_exp | null),is_organizer?: (Boolean_comparison_exp | null),joined_tournament?: (Boolean_comparison_exp | null),latitude?: (float8_comparison_exp | null),league_season_division?: (league_season_divisions_bool_exp | null),location?: (String_comparison_exp | null),logo?: (String_comparison_exp | null),longitude?: (float8_comparison_exp | null),match_options_id?: (uuid_comparison_exp | null),max_elo?: (Int_comparison_exp | null),max_players_per_lineup?: (Int_comparison_exp | null),meets_min_role?: (Boolean_comparison_exp | null),min_elo?: (Int_comparison_exp | null),min_players_per_lineup?: (Int_comparison_exp | null),min_role?: (e_player_roles_enum_comparison_exp | null),missed_check_in_count?: (Int_comparison_exp | null),name?: (String_comparison_exp | null),options?: (match_options_bool_exp | null),organizer_steam_id?: (bigint_comparison_exp | null),organizer_teams?: (tournament_organizer_teams_bool_exp | null),organizer_teams_aggregate?: (tournament_organizer_teams_aggregate_bool_exp | null),organizers?: (tournament_organizers_bool_exp | null),organizers_aggregate?: (tournament_organizers_aggregate_bool_exp | null),player_stats?: (v_tournament_player_stats_bool_exp | null),player_stats_aggregate?: (v_tournament_player_stats_aggregate_bool_exp | null),prizes?: (tournament_prizes_bool_exp | null),prizes_aggregate?: (tournament_prizes_aggregate_bool_exp | null),regions?: (String_array_comparison_exp | null),registration_type?: (e_tournament_registration_types_enum_comparison_exp | null),registration_unlocked?: (Boolean_comparison_exp | null),results?: (v_team_tournament_results_bool_exp | null),results_aggregate?: (v_team_tournament_results_aggregate_bool_exp | null),rosters?: (tournament_team_roster_bool_exp | null),rosters_aggregate?: (tournament_team_roster_aggregate_bool_exp | null),scheduling_mode?: (String_comparison_exp | null),stages?: (tournament_stages_bool_exp | null),stages_aggregate?: (tournament_stages_aggregate_bool_exp | null),start?: (timestamptz_comparison_exp | null),status?: (e_tournament_status_enum_comparison_exp | null),teams?: (tournament_teams_bool_exp | null),teams_aggregate?: (tournament_teams_aggregate_bool_exp | null)} - - -/** input type for incrementing numeric columns in table "tournaments" */ -export interface tournaments_inc_input {check_in_closes_before_minutes?: (Scalars['Int'] | null),check_in_opens_before_minutes?: (Scalars['Int'] | null),latitude?: (Scalars['float8'] | null),longitude?: (Scalars['float8'] | null),max_elo?: (Scalars['Int'] | null),min_elo?: (Scalars['Int'] | null),organizer_steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "tournaments" */ -export interface tournaments_insert_input {admin?: (players_obj_rel_insert_input | null),auto_start?: (Scalars['Boolean'] | null),award_configs?: (tournament_awards_arr_rel_insert_input | null),awards?: (award_recipients_arr_rel_insert_input | null),awards_enabled?: (Scalars['Boolean'] | null),banner?: (Scalars['String'] | null),categories?: (tournament_categories_arr_rel_insert_input | null), -/** The check_in_ends_at the close pass has already acted on */ -check_in_closed_for?: (Scalars['timestamptz'] | null),check_in_closes_before_minutes?: (Scalars['Int'] | null), -/** The check_in_ends_at the closing reminder was sent for */ -check_in_closing_notified_for?: (Scalars['timestamptz'] | null), -/** When the check-in window closes; NULL until it opens */ -check_in_ends_at?: (Scalars['timestamptz'] | null),check_in_opens_before_minutes?: (Scalars['Int'] | null),check_in_required?: (Scalars['Boolean'] | null), -/** Who confirms a team: Captains, every rostered Player, or the organizer (Admin) */ -check_in_setting?: (e_check_in_settings_enum | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),discord_guild_id?: (Scalars['String'] | null),discord_notifications_enabled?: (Scalars['Boolean'] | null),discord_notify_Canceled?: (Scalars['Boolean'] | null),discord_notify_Finished?: (Scalars['Boolean'] | null),discord_notify_Forfeit?: (Scalars['Boolean'] | null),discord_notify_Live?: (Scalars['Boolean'] | null),discord_notify_MapPaused?: (Scalars['Boolean'] | null),discord_notify_PickingPlayers?: (Scalars['Boolean'] | null),discord_notify_Scheduled?: (Scalars['Boolean'] | null),discord_notify_Surrendered?: (Scalars['Boolean'] | null),discord_notify_Tie?: (Scalars['Boolean'] | null),discord_notify_Veto?: (Scalars['Boolean'] | null),discord_notify_WaitingForCheckIn?: (Scalars['Boolean'] | null),discord_notify_WaitingForServer?: (Scalars['Boolean'] | null),discord_role_id?: (Scalars['String'] | null),discord_voice_enabled?: (Scalars['Boolean'] | null),discord_webhook?: (Scalars['String'] | null),e_tournament_status?: (e_tournament_status_obj_rel_insert_input | null),free_agents?: (tournament_free_agents_arr_rel_insert_input | null),homepage?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),invite_only?: (Scalars['Boolean'] | null),is_league?: (Scalars['Boolean'] | null),latitude?: (Scalars['float8'] | null),league_season_division?: (league_season_divisions_obj_rel_insert_input | null),location?: (Scalars['String'] | null),logo?: (Scalars['String'] | null),longitude?: (Scalars['float8'] | null),match_options_id?: (Scalars['uuid'] | null),max_elo?: (Scalars['Int'] | null),min_elo?: (Scalars['Int'] | null),min_role?: (e_player_roles_enum | null),name?: (Scalars['String'] | null),options?: (match_options_obj_rel_insert_input | null),organizer_steam_id?: (Scalars['bigint'] | null),organizer_teams?: (tournament_organizer_teams_arr_rel_insert_input | null),organizers?: (tournament_organizers_arr_rel_insert_input | null),player_stats?: (v_tournament_player_stats_arr_rel_insert_input | null),prizes?: (tournament_prizes_arr_rel_insert_input | null), -/** Preferred server regions for hosted matches */ -regions?: (Scalars['String'][] | null),registration_type?: (e_tournament_registration_types_enum | null),results?: (v_team_tournament_results_arr_rel_insert_input | null),rosters?: (tournament_team_roster_arr_rel_insert_input | null),scheduling_mode?: (Scalars['String'] | null),stages?: (tournament_stages_arr_rel_insert_input | null),start?: (Scalars['timestamptz'] | null),status?: (e_tournament_status_enum | null),teams?: (tournament_teams_arr_rel_insert_input | null)} - - -/** aggregate max on columns */ -export interface tournaments_max_fieldsGenqlSelection{ - banner?: boolean | number - /** The check_in_ends_at the close pass has already acted on */ - check_in_closed_for?: boolean | number - check_in_closes_before_minutes?: boolean | number - /** The check_in_ends_at the closing reminder was sent for */ - check_in_closing_notified_for?: boolean | number - /** When the check-in window closes; NULL until it opens */ - check_in_ends_at?: boolean | number - check_in_opens_before_minutes?: boolean | number - created_at?: boolean | number - description?: boolean | number - discord_guild_id?: boolean | number - discord_role_id?: boolean | number - discord_webhook?: boolean | number - homepage?: boolean | number - id?: boolean | number - latitude?: boolean | number - location?: boolean | number - logo?: boolean | number - longitude?: boolean | number - match_options_id?: boolean | number - max_elo?: boolean | number - /** A computed field, executes function "tournament_max_players_per_lineup" */ - max_players_per_lineup?: boolean | number - min_elo?: boolean | number - /** A computed field, executes function "tournament_min_players_per_lineup" */ - min_players_per_lineup?: boolean | number - /** A computed field, executes function "tournament_missed_check_in_count" */ - missed_check_in_count?: boolean | number - name?: boolean | number - organizer_steam_id?: boolean | number - /** Preferred server regions for hosted matches */ - regions?: boolean | number - scheduling_mode?: boolean | number - start?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "tournaments" */ -export interface tournaments_max_order_by {banner?: (order_by | null), -/** The check_in_ends_at the close pass has already acted on */ -check_in_closed_for?: (order_by | null),check_in_closes_before_minutes?: (order_by | null), -/** The check_in_ends_at the closing reminder was sent for */ -check_in_closing_notified_for?: (order_by | null), -/** When the check-in window closes; NULL until it opens */ -check_in_ends_at?: (order_by | null),check_in_opens_before_minutes?: (order_by | null),created_at?: (order_by | null),description?: (order_by | null),discord_guild_id?: (order_by | null),discord_role_id?: (order_by | null),discord_webhook?: (order_by | null),homepage?: (order_by | null),id?: (order_by | null),latitude?: (order_by | null),location?: (order_by | null),logo?: (order_by | null),longitude?: (order_by | null),match_options_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null),name?: (order_by | null),organizer_steam_id?: (order_by | null), -/** Preferred server regions for hosted matches */ -regions?: (order_by | null),scheduling_mode?: (order_by | null),start?: (order_by | null)} - - -/** aggregate min on columns */ -export interface tournaments_min_fieldsGenqlSelection{ - banner?: boolean | number - /** The check_in_ends_at the close pass has already acted on */ - check_in_closed_for?: boolean | number - check_in_closes_before_minutes?: boolean | number - /** The check_in_ends_at the closing reminder was sent for */ - check_in_closing_notified_for?: boolean | number - /** When the check-in window closes; NULL until it opens */ - check_in_ends_at?: boolean | number - check_in_opens_before_minutes?: boolean | number - created_at?: boolean | number - description?: boolean | number - discord_guild_id?: boolean | number - discord_role_id?: boolean | number - discord_webhook?: boolean | number - homepage?: boolean | number - id?: boolean | number - latitude?: boolean | number - location?: boolean | number - logo?: boolean | number - longitude?: boolean | number - match_options_id?: boolean | number - max_elo?: boolean | number - /** A computed field, executes function "tournament_max_players_per_lineup" */ - max_players_per_lineup?: boolean | number - min_elo?: boolean | number - /** A computed field, executes function "tournament_min_players_per_lineup" */ - min_players_per_lineup?: boolean | number - /** A computed field, executes function "tournament_missed_check_in_count" */ - missed_check_in_count?: boolean | number - name?: boolean | number - organizer_steam_id?: boolean | number - /** Preferred server regions for hosted matches */ - regions?: boolean | number - scheduling_mode?: boolean | number - start?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "tournaments" */ -export interface tournaments_min_order_by {banner?: (order_by | null), -/** The check_in_ends_at the close pass has already acted on */ -check_in_closed_for?: (order_by | null),check_in_closes_before_minutes?: (order_by | null), -/** The check_in_ends_at the closing reminder was sent for */ -check_in_closing_notified_for?: (order_by | null), -/** When the check-in window closes; NULL until it opens */ -check_in_ends_at?: (order_by | null),check_in_opens_before_minutes?: (order_by | null),created_at?: (order_by | null),description?: (order_by | null),discord_guild_id?: (order_by | null),discord_role_id?: (order_by | null),discord_webhook?: (order_by | null),homepage?: (order_by | null),id?: (order_by | null),latitude?: (order_by | null),location?: (order_by | null),logo?: (order_by | null),longitude?: (order_by | null),match_options_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null),name?: (order_by | null),organizer_steam_id?: (order_by | null), -/** Preferred server regions for hosted matches */ -regions?: (order_by | null),scheduling_mode?: (order_by | null),start?: (order_by | null)} - - -/** response of any mutation on the table "tournaments" */ -export interface tournaments_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: tournamentsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "tournaments" */ -export interface tournaments_obj_rel_insert_input {data: tournaments_insert_input, -/** upsert condition */ -on_conflict?: (tournaments_on_conflict | null)} - - -/** on_conflict condition type for table "tournaments" */ -export interface tournaments_on_conflict {constraint: tournaments_constraint,update_columns?: tournaments_update_column[],where?: (tournaments_bool_exp | null)} - - -/** Ordering options when selecting data from "tournaments". */ -export interface tournaments_order_by {admin?: (players_order_by | null),auto_start?: (order_by | null),award_configs_aggregate?: (tournament_awards_aggregate_order_by | null),awards_aggregate?: (award_recipients_aggregate_order_by | null),awards_enabled?: (order_by | null),banner?: (order_by | null),can_cancel?: (order_by | null),can_close_registration?: (order_by | null),can_join?: (order_by | null),can_open_registration?: (order_by | null),can_pause?: (order_by | null),can_resume?: (order_by | null),can_review_check_in?: (order_by | null),can_setup?: (order_by | null),can_start?: (order_by | null),categories_aggregate?: (tournament_categories_aggregate_order_by | null),check_in_closed_for?: (order_by | null),check_in_closes_before_minutes?: (order_by | null),check_in_closing_notified_for?: (order_by | null),check_in_ends_at?: (order_by | null),check_in_open?: (order_by | null),check_in_opens_before_minutes?: (order_by | null),check_in_required?: (order_by | null),check_in_setting?: (order_by | null),check_in_started?: (order_by | null),created_at?: (order_by | null),description?: (order_by | null),discord_guild_id?: (order_by | null),discord_notifications_enabled?: (order_by | null),discord_notify_Canceled?: (order_by | null),discord_notify_Finished?: (order_by | null),discord_notify_Forfeit?: (order_by | null),discord_notify_Live?: (order_by | null),discord_notify_MapPaused?: (order_by | null),discord_notify_PickingPlayers?: (order_by | null),discord_notify_Scheduled?: (order_by | null),discord_notify_Surrendered?: (order_by | null),discord_notify_Tie?: (order_by | null),discord_notify_Veto?: (order_by | null),discord_notify_WaitingForCheckIn?: (order_by | null),discord_notify_WaitingForServer?: (order_by | null),discord_role_id?: (order_by | null),discord_voice_enabled?: (order_by | null),discord_webhook?: (order_by | null),e_tournament_status?: (e_tournament_status_order_by | null),free_agents_aggregate?: (tournament_free_agents_aggregate_order_by | null),has_min_teams?: (order_by | null),homepage?: (order_by | null),id?: (order_by | null),invite_only?: (order_by | null),is_league?: (order_by | null),is_organizer?: (order_by | null),joined_tournament?: (order_by | null),latitude?: (order_by | null),league_season_division?: (league_season_divisions_order_by | null),location?: (order_by | null),logo?: (order_by | null),longitude?: (order_by | null),match_options_id?: (order_by | null),max_elo?: (order_by | null),max_players_per_lineup?: (order_by | null),meets_min_role?: (order_by | null),min_elo?: (order_by | null),min_players_per_lineup?: (order_by | null),min_role?: (order_by | null),missed_check_in_count?: (order_by | null),name?: (order_by | null),options?: (match_options_order_by | null),organizer_steam_id?: (order_by | null),organizer_teams_aggregate?: (tournament_organizer_teams_aggregate_order_by | null),organizers_aggregate?: (tournament_organizers_aggregate_order_by | null),player_stats_aggregate?: (v_tournament_player_stats_aggregate_order_by | null),prizes_aggregate?: (tournament_prizes_aggregate_order_by | null),regions?: (order_by | null),registration_type?: (order_by | null),registration_unlocked?: (order_by | null),results_aggregate?: (v_team_tournament_results_aggregate_order_by | null),rosters_aggregate?: (tournament_team_roster_aggregate_order_by | null),scheduling_mode?: (order_by | null),stages_aggregate?: (tournament_stages_aggregate_order_by | null),start?: (order_by | null),status?: (order_by | null),teams_aggregate?: (tournament_teams_aggregate_order_by | null)} - - -/** primary key columns input for table: tournaments */ -export interface tournaments_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "tournaments" */ -export interface tournaments_set_input {auto_start?: (Scalars['Boolean'] | null),awards_enabled?: (Scalars['Boolean'] | null),banner?: (Scalars['String'] | null), -/** The check_in_ends_at the close pass has already acted on */ -check_in_closed_for?: (Scalars['timestamptz'] | null),check_in_closes_before_minutes?: (Scalars['Int'] | null), -/** The check_in_ends_at the closing reminder was sent for */ -check_in_closing_notified_for?: (Scalars['timestamptz'] | null), -/** When the check-in window closes; NULL until it opens */ -check_in_ends_at?: (Scalars['timestamptz'] | null),check_in_opens_before_minutes?: (Scalars['Int'] | null),check_in_required?: (Scalars['Boolean'] | null), -/** Who confirms a team: Captains, every rostered Player, or the organizer (Admin) */ -check_in_setting?: (e_check_in_settings_enum | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),discord_guild_id?: (Scalars['String'] | null),discord_notifications_enabled?: (Scalars['Boolean'] | null),discord_notify_Canceled?: (Scalars['Boolean'] | null),discord_notify_Finished?: (Scalars['Boolean'] | null),discord_notify_Forfeit?: (Scalars['Boolean'] | null),discord_notify_Live?: (Scalars['Boolean'] | null),discord_notify_MapPaused?: (Scalars['Boolean'] | null),discord_notify_PickingPlayers?: (Scalars['Boolean'] | null),discord_notify_Scheduled?: (Scalars['Boolean'] | null),discord_notify_Surrendered?: (Scalars['Boolean'] | null),discord_notify_Tie?: (Scalars['Boolean'] | null),discord_notify_Veto?: (Scalars['Boolean'] | null),discord_notify_WaitingForCheckIn?: (Scalars['Boolean'] | null),discord_notify_WaitingForServer?: (Scalars['Boolean'] | null),discord_role_id?: (Scalars['String'] | null),discord_voice_enabled?: (Scalars['Boolean'] | null),discord_webhook?: (Scalars['String'] | null),homepage?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),invite_only?: (Scalars['Boolean'] | null),is_league?: (Scalars['Boolean'] | null),latitude?: (Scalars['float8'] | null),location?: (Scalars['String'] | null),logo?: (Scalars['String'] | null),longitude?: (Scalars['float8'] | null),match_options_id?: (Scalars['uuid'] | null),max_elo?: (Scalars['Int'] | null),min_elo?: (Scalars['Int'] | null),min_role?: (e_player_roles_enum | null),name?: (Scalars['String'] | null),organizer_steam_id?: (Scalars['bigint'] | null), -/** Preferred server regions for hosted matches */ -regions?: (Scalars['String'][] | null),registration_type?: (e_tournament_registration_types_enum | null),scheduling_mode?: (Scalars['String'] | null),start?: (Scalars['timestamptz'] | null),status?: (e_tournament_status_enum | null)} - - -/** aggregate stddev on columns */ -export interface tournaments_stddev_fieldsGenqlSelection{ - check_in_closes_before_minutes?: boolean | number - check_in_opens_before_minutes?: boolean | number - latitude?: boolean | number - longitude?: boolean | number - max_elo?: boolean | number - /** A computed field, executes function "tournament_max_players_per_lineup" */ - max_players_per_lineup?: boolean | number - min_elo?: boolean | number - /** A computed field, executes function "tournament_min_players_per_lineup" */ - min_players_per_lineup?: boolean | number - /** A computed field, executes function "tournament_missed_check_in_count" */ - missed_check_in_count?: boolean | number - organizer_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "tournaments" */ -export interface tournaments_stddev_order_by {check_in_closes_before_minutes?: (order_by | null),check_in_opens_before_minutes?: (order_by | null),latitude?: (order_by | null),longitude?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null),organizer_steam_id?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface tournaments_stddev_pop_fieldsGenqlSelection{ - check_in_closes_before_minutes?: boolean | number - check_in_opens_before_minutes?: boolean | number - latitude?: boolean | number - longitude?: boolean | number - max_elo?: boolean | number - /** A computed field, executes function "tournament_max_players_per_lineup" */ - max_players_per_lineup?: boolean | number - min_elo?: boolean | number - /** A computed field, executes function "tournament_min_players_per_lineup" */ - min_players_per_lineup?: boolean | number - /** A computed field, executes function "tournament_missed_check_in_count" */ - missed_check_in_count?: boolean | number - organizer_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "tournaments" */ -export interface tournaments_stddev_pop_order_by {check_in_closes_before_minutes?: (order_by | null),check_in_opens_before_minutes?: (order_by | null),latitude?: (order_by | null),longitude?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null),organizer_steam_id?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface tournaments_stddev_samp_fieldsGenqlSelection{ - check_in_closes_before_minutes?: boolean | number - check_in_opens_before_minutes?: boolean | number - latitude?: boolean | number - longitude?: boolean | number - max_elo?: boolean | number - /** A computed field, executes function "tournament_max_players_per_lineup" */ - max_players_per_lineup?: boolean | number - min_elo?: boolean | number - /** A computed field, executes function "tournament_min_players_per_lineup" */ - min_players_per_lineup?: boolean | number - /** A computed field, executes function "tournament_missed_check_in_count" */ - missed_check_in_count?: boolean | number - organizer_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "tournaments" */ -export interface tournaments_stddev_samp_order_by {check_in_closes_before_minutes?: (order_by | null),check_in_opens_before_minutes?: (order_by | null),latitude?: (order_by | null),longitude?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null),organizer_steam_id?: (order_by | null)} - - -/** Streaming cursor of the table "tournaments" */ -export interface tournaments_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: tournaments_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface tournaments_stream_cursor_value_input {auto_start?: (Scalars['Boolean'] | null),awards_enabled?: (Scalars['Boolean'] | null),banner?: (Scalars['String'] | null), -/** The check_in_ends_at the close pass has already acted on */ -check_in_closed_for?: (Scalars['timestamptz'] | null),check_in_closes_before_minutes?: (Scalars['Int'] | null), -/** The check_in_ends_at the closing reminder was sent for */ -check_in_closing_notified_for?: (Scalars['timestamptz'] | null), -/** When the check-in window closes; NULL until it opens */ -check_in_ends_at?: (Scalars['timestamptz'] | null),check_in_opens_before_minutes?: (Scalars['Int'] | null),check_in_required?: (Scalars['Boolean'] | null), -/** Who confirms a team: Captains, every rostered Player, or the organizer (Admin) */ -check_in_setting?: (e_check_in_settings_enum | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),discord_guild_id?: (Scalars['String'] | null),discord_notifications_enabled?: (Scalars['Boolean'] | null),discord_notify_Canceled?: (Scalars['Boolean'] | null),discord_notify_Finished?: (Scalars['Boolean'] | null),discord_notify_Forfeit?: (Scalars['Boolean'] | null),discord_notify_Live?: (Scalars['Boolean'] | null),discord_notify_MapPaused?: (Scalars['Boolean'] | null),discord_notify_PickingPlayers?: (Scalars['Boolean'] | null),discord_notify_Scheduled?: (Scalars['Boolean'] | null),discord_notify_Surrendered?: (Scalars['Boolean'] | null),discord_notify_Tie?: (Scalars['Boolean'] | null),discord_notify_Veto?: (Scalars['Boolean'] | null),discord_notify_WaitingForCheckIn?: (Scalars['Boolean'] | null),discord_notify_WaitingForServer?: (Scalars['Boolean'] | null),discord_role_id?: (Scalars['String'] | null),discord_voice_enabled?: (Scalars['Boolean'] | null),discord_webhook?: (Scalars['String'] | null),homepage?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),invite_only?: (Scalars['Boolean'] | null),is_league?: (Scalars['Boolean'] | null),latitude?: (Scalars['float8'] | null),location?: (Scalars['String'] | null),logo?: (Scalars['String'] | null),longitude?: (Scalars['float8'] | null),match_options_id?: (Scalars['uuid'] | null),max_elo?: (Scalars['Int'] | null),min_elo?: (Scalars['Int'] | null),min_role?: (e_player_roles_enum | null),name?: (Scalars['String'] | null),organizer_steam_id?: (Scalars['bigint'] | null), -/** Preferred server regions for hosted matches */ -regions?: (Scalars['String'][] | null),registration_type?: (e_tournament_registration_types_enum | null),scheduling_mode?: (Scalars['String'] | null),start?: (Scalars['timestamptz'] | null),status?: (e_tournament_status_enum | null)} - - -/** aggregate sum on columns */ -export interface tournaments_sum_fieldsGenqlSelection{ - check_in_closes_before_minutes?: boolean | number - check_in_opens_before_minutes?: boolean | number - latitude?: boolean | number - longitude?: boolean | number - max_elo?: boolean | number - /** A computed field, executes function "tournament_max_players_per_lineup" */ - max_players_per_lineup?: boolean | number - min_elo?: boolean | number - /** A computed field, executes function "tournament_min_players_per_lineup" */ - min_players_per_lineup?: boolean | number - /** A computed field, executes function "tournament_missed_check_in_count" */ - missed_check_in_count?: boolean | number - organizer_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "tournaments" */ -export interface tournaments_sum_order_by {check_in_closes_before_minutes?: (order_by | null),check_in_opens_before_minutes?: (order_by | null),latitude?: (order_by | null),longitude?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null),organizer_steam_id?: (order_by | null)} - -export interface tournaments_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (tournaments_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (tournaments_set_input | null), -/** filter the rows which have to be updated */ -where: tournaments_bool_exp} - - -/** aggregate var_pop on columns */ -export interface tournaments_var_pop_fieldsGenqlSelection{ - check_in_closes_before_minutes?: boolean | number - check_in_opens_before_minutes?: boolean | number - latitude?: boolean | number - longitude?: boolean | number - max_elo?: boolean | number - /** A computed field, executes function "tournament_max_players_per_lineup" */ - max_players_per_lineup?: boolean | number - min_elo?: boolean | number - /** A computed field, executes function "tournament_min_players_per_lineup" */ - min_players_per_lineup?: boolean | number - /** A computed field, executes function "tournament_missed_check_in_count" */ - missed_check_in_count?: boolean | number - organizer_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "tournaments" */ -export interface tournaments_var_pop_order_by {check_in_closes_before_minutes?: (order_by | null),check_in_opens_before_minutes?: (order_by | null),latitude?: (order_by | null),longitude?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null),organizer_steam_id?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface tournaments_var_samp_fieldsGenqlSelection{ - check_in_closes_before_minutes?: boolean | number - check_in_opens_before_minutes?: boolean | number - latitude?: boolean | number - longitude?: boolean | number - max_elo?: boolean | number - /** A computed field, executes function "tournament_max_players_per_lineup" */ - max_players_per_lineup?: boolean | number - min_elo?: boolean | number - /** A computed field, executes function "tournament_min_players_per_lineup" */ - min_players_per_lineup?: boolean | number - /** A computed field, executes function "tournament_missed_check_in_count" */ - missed_check_in_count?: boolean | number - organizer_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "tournaments" */ -export interface tournaments_var_samp_order_by {check_in_closes_before_minutes?: (order_by | null),check_in_opens_before_minutes?: (order_by | null),latitude?: (order_by | null),longitude?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null),organizer_steam_id?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface tournaments_variance_fieldsGenqlSelection{ - check_in_closes_before_minutes?: boolean | number - check_in_opens_before_minutes?: boolean | number - latitude?: boolean | number - longitude?: boolean | number - max_elo?: boolean | number - /** A computed field, executes function "tournament_max_players_per_lineup" */ - max_players_per_lineup?: boolean | number - min_elo?: boolean | number - /** A computed field, executes function "tournament_min_players_per_lineup" */ - min_players_per_lineup?: boolean | number - /** A computed field, executes function "tournament_missed_check_in_count" */ - missed_check_in_count?: boolean | number - organizer_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "tournaments" */ -export interface tournaments_variance_order_by {check_in_closes_before_minutes?: (order_by | null),check_in_opens_before_minutes?: (order_by | null),latitude?: (order_by | null),longitude?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null),organizer_steam_id?: (order_by | null)} - - -/** columns and relationships of "utility_collection_items" */ -export interface utility_collection_itemsGenqlSelection{ - /** An object relationship */ - collection?: utility_collectionsGenqlSelection - collection_id?: boolean | number - created_at?: boolean | number - note?: boolean | number - position?: boolean | number - /** An object relationship */ - utility_lineup?: utility_lineupsGenqlSelection - utility_lineup_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "utility_collection_items" */ -export interface utility_collection_items_aggregateGenqlSelection{ - aggregate?: utility_collection_items_aggregate_fieldsGenqlSelection - nodes?: utility_collection_itemsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface utility_collection_items_aggregate_bool_exp {count?: (utility_collection_items_aggregate_bool_exp_count | null)} - -export interface utility_collection_items_aggregate_bool_exp_count {arguments?: (utility_collection_items_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (utility_collection_items_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "utility_collection_items" */ -export interface utility_collection_items_aggregate_fieldsGenqlSelection{ - avg?: utility_collection_items_avg_fieldsGenqlSelection - count?: { __args: {columns?: (utility_collection_items_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: utility_collection_items_max_fieldsGenqlSelection - min?: utility_collection_items_min_fieldsGenqlSelection - stddev?: utility_collection_items_stddev_fieldsGenqlSelection - stddev_pop?: utility_collection_items_stddev_pop_fieldsGenqlSelection - stddev_samp?: utility_collection_items_stddev_samp_fieldsGenqlSelection - sum?: utility_collection_items_sum_fieldsGenqlSelection - var_pop?: utility_collection_items_var_pop_fieldsGenqlSelection - var_samp?: utility_collection_items_var_samp_fieldsGenqlSelection - variance?: utility_collection_items_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "utility_collection_items" */ -export interface utility_collection_items_aggregate_order_by {avg?: (utility_collection_items_avg_order_by | null),count?: (order_by | null),max?: (utility_collection_items_max_order_by | null),min?: (utility_collection_items_min_order_by | null),stddev?: (utility_collection_items_stddev_order_by | null),stddev_pop?: (utility_collection_items_stddev_pop_order_by | null),stddev_samp?: (utility_collection_items_stddev_samp_order_by | null),sum?: (utility_collection_items_sum_order_by | null),var_pop?: (utility_collection_items_var_pop_order_by | null),var_samp?: (utility_collection_items_var_samp_order_by | null),variance?: (utility_collection_items_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "utility_collection_items" */ -export interface utility_collection_items_arr_rel_insert_input {data: utility_collection_items_insert_input[], -/** upsert condition */ -on_conflict?: (utility_collection_items_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface utility_collection_items_avg_fieldsGenqlSelection{ - position?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "utility_collection_items" */ -export interface utility_collection_items_avg_order_by {position?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "utility_collection_items". All fields are combined with a logical 'AND'. */ -export interface utility_collection_items_bool_exp {_and?: (utility_collection_items_bool_exp[] | null),_not?: (utility_collection_items_bool_exp | null),_or?: (utility_collection_items_bool_exp[] | null),collection?: (utility_collections_bool_exp | null),collection_id?: (uuid_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),note?: (String_comparison_exp | null),position?: (Int_comparison_exp | null),utility_lineup?: (utility_lineups_bool_exp | null),utility_lineup_id?: (uuid_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "utility_collection_items" */ -export interface utility_collection_items_inc_input {position?: (Scalars['Int'] | null)} - - -/** input type for inserting data into table "utility_collection_items" */ -export interface utility_collection_items_insert_input {collection?: (utility_collections_obj_rel_insert_input | null),collection_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),note?: (Scalars['String'] | null),position?: (Scalars['Int'] | null),utility_lineup?: (utility_lineups_obj_rel_insert_input | null),utility_lineup_id?: (Scalars['uuid'] | null)} - - -/** aggregate max on columns */ -export interface utility_collection_items_max_fieldsGenqlSelection{ - collection_id?: boolean | number - created_at?: boolean | number - note?: boolean | number - position?: boolean | number - utility_lineup_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "utility_collection_items" */ -export interface utility_collection_items_max_order_by {collection_id?: (order_by | null),created_at?: (order_by | null),note?: (order_by | null),position?: (order_by | null),utility_lineup_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface utility_collection_items_min_fieldsGenqlSelection{ - collection_id?: boolean | number - created_at?: boolean | number - note?: boolean | number - position?: boolean | number - utility_lineup_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "utility_collection_items" */ -export interface utility_collection_items_min_order_by {collection_id?: (order_by | null),created_at?: (order_by | null),note?: (order_by | null),position?: (order_by | null),utility_lineup_id?: (order_by | null)} - - -/** response of any mutation on the table "utility_collection_items" */ -export interface utility_collection_items_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: utility_collection_itemsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "utility_collection_items" */ -export interface utility_collection_items_on_conflict {constraint: utility_collection_items_constraint,update_columns?: utility_collection_items_update_column[],where?: (utility_collection_items_bool_exp | null)} - - -/** Ordering options when selecting data from "utility_collection_items". */ -export interface utility_collection_items_order_by {collection?: (utility_collections_order_by | null),collection_id?: (order_by | null),created_at?: (order_by | null),note?: (order_by | null),position?: (order_by | null),utility_lineup?: (utility_lineups_order_by | null),utility_lineup_id?: (order_by | null)} - - -/** primary key columns input for table: utility_collection_items */ -export interface utility_collection_items_pk_columns_input {collection_id: Scalars['uuid'],utility_lineup_id: Scalars['uuid']} - - -/** input type for updating data in table "utility_collection_items" */ -export interface utility_collection_items_set_input {collection_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),note?: (Scalars['String'] | null),position?: (Scalars['Int'] | null),utility_lineup_id?: (Scalars['uuid'] | null)} - - -/** aggregate stddev on columns */ -export interface utility_collection_items_stddev_fieldsGenqlSelection{ - position?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "utility_collection_items" */ -export interface utility_collection_items_stddev_order_by {position?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface utility_collection_items_stddev_pop_fieldsGenqlSelection{ - position?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "utility_collection_items" */ -export interface utility_collection_items_stddev_pop_order_by {position?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface utility_collection_items_stddev_samp_fieldsGenqlSelection{ - position?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "utility_collection_items" */ -export interface utility_collection_items_stddev_samp_order_by {position?: (order_by | null)} - - -/** Streaming cursor of the table "utility_collection_items" */ -export interface utility_collection_items_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: utility_collection_items_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface utility_collection_items_stream_cursor_value_input {collection_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),note?: (Scalars['String'] | null),position?: (Scalars['Int'] | null),utility_lineup_id?: (Scalars['uuid'] | null)} - - -/** aggregate sum on columns */ -export interface utility_collection_items_sum_fieldsGenqlSelection{ - position?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "utility_collection_items" */ -export interface utility_collection_items_sum_order_by {position?: (order_by | null)} - -export interface utility_collection_items_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (utility_collection_items_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (utility_collection_items_set_input | null), -/** filter the rows which have to be updated */ -where: utility_collection_items_bool_exp} - - -/** aggregate var_pop on columns */ -export interface utility_collection_items_var_pop_fieldsGenqlSelection{ - position?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "utility_collection_items" */ -export interface utility_collection_items_var_pop_order_by {position?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface utility_collection_items_var_samp_fieldsGenqlSelection{ - position?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "utility_collection_items" */ -export interface utility_collection_items_var_samp_order_by {position?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface utility_collection_items_variance_fieldsGenqlSelection{ - position?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "utility_collection_items" */ -export interface utility_collection_items_variance_order_by {position?: (order_by | null)} - - -/** columns and relationships of "utility_collections" */ -export interface utility_collectionsGenqlSelection{ - /** A computed field, executes function "can_edit_utility_collection" */ - can_edit?: boolean | number - /** A computed field, executes function "can_view_utility_collection" */ - can_view?: boolean | number - created_at?: boolean | number - description?: boolean | number - id?: boolean | number - /** An array relationship */ - items?: (utility_collection_itemsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_collection_items_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_collection_items_order_by[] | null), - /** filter the rows returned */ - where?: (utility_collection_items_bool_exp | null)} }) - /** An aggregate relationship */ - items_aggregate?: (utility_collection_items_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_collection_items_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_collection_items_order_by[] | null), - /** filter the rows returned */ - where?: (utility_collection_items_bool_exp | null)} }) - map_name?: boolean | number - name?: boolean | number - /** An object relationship */ - owner?: playersGenqlSelection - owner_steam_id?: boolean | number - /** An object relationship */ - team?: teamsGenqlSelection - team_id?: boolean | number - updated_at?: boolean | number - visibility?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "utility_collections" */ -export interface utility_collections_aggregateGenqlSelection{ - aggregate?: utility_collections_aggregate_fieldsGenqlSelection - nodes?: utility_collectionsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "utility_collections" */ -export interface utility_collections_aggregate_fieldsGenqlSelection{ - avg?: utility_collections_avg_fieldsGenqlSelection - count?: { __args: {columns?: (utility_collections_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: utility_collections_max_fieldsGenqlSelection - min?: utility_collections_min_fieldsGenqlSelection - stddev?: utility_collections_stddev_fieldsGenqlSelection - stddev_pop?: utility_collections_stddev_pop_fieldsGenqlSelection - stddev_samp?: utility_collections_stddev_samp_fieldsGenqlSelection - sum?: utility_collections_sum_fieldsGenqlSelection - var_pop?: utility_collections_var_pop_fieldsGenqlSelection - var_samp?: utility_collections_var_samp_fieldsGenqlSelection - variance?: utility_collections_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface utility_collections_avg_fieldsGenqlSelection{ - owner_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "utility_collections". All fields are combined with a logical 'AND'. */ -export interface utility_collections_bool_exp {_and?: (utility_collections_bool_exp[] | null),_not?: (utility_collections_bool_exp | null),_or?: (utility_collections_bool_exp[] | null),can_edit?: (Boolean_comparison_exp | null),can_view?: (Boolean_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),description?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),items?: (utility_collection_items_bool_exp | null),items_aggregate?: (utility_collection_items_aggregate_bool_exp | null),map_name?: (String_comparison_exp | null),name?: (String_comparison_exp | null),owner?: (players_bool_exp | null),owner_steam_id?: (bigint_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null),visibility?: (e_utility_visibility_enum_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "utility_collections" */ -export interface utility_collections_inc_input {owner_steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "utility_collections" */ -export interface utility_collections_insert_input {created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),items?: (utility_collection_items_arr_rel_insert_input | null),map_name?: (Scalars['String'] | null),name?: (Scalars['String'] | null),owner?: (players_obj_rel_insert_input | null),owner_steam_id?: (Scalars['bigint'] | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null),visibility?: (e_utility_visibility_enum | null)} - - -/** aggregate max on columns */ -export interface utility_collections_max_fieldsGenqlSelection{ - created_at?: boolean | number - description?: boolean | number - id?: boolean | number - map_name?: boolean | number - name?: boolean | number - owner_steam_id?: boolean | number - team_id?: boolean | number - updated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface utility_collections_min_fieldsGenqlSelection{ - created_at?: boolean | number - description?: boolean | number - id?: boolean | number - map_name?: boolean | number - name?: boolean | number - owner_steam_id?: boolean | number - team_id?: boolean | number - updated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "utility_collections" */ -export interface utility_collections_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: utility_collectionsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "utility_collections" */ -export interface utility_collections_obj_rel_insert_input {data: utility_collections_insert_input, -/** upsert condition */ -on_conflict?: (utility_collections_on_conflict | null)} - - -/** on_conflict condition type for table "utility_collections" */ -export interface utility_collections_on_conflict {constraint: utility_collections_constraint,update_columns?: utility_collections_update_column[],where?: (utility_collections_bool_exp | null)} - - -/** Ordering options when selecting data from "utility_collections". */ -export interface utility_collections_order_by {can_edit?: (order_by | null),can_view?: (order_by | null),created_at?: (order_by | null),description?: (order_by | null),id?: (order_by | null),items_aggregate?: (utility_collection_items_aggregate_order_by | null),map_name?: (order_by | null),name?: (order_by | null),owner?: (players_order_by | null),owner_steam_id?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null),updated_at?: (order_by | null),visibility?: (order_by | null)} - - -/** primary key columns input for table: utility_collections */ -export interface utility_collections_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "utility_collections" */ -export interface utility_collections_set_input {created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),map_name?: (Scalars['String'] | null),name?: (Scalars['String'] | null),owner_steam_id?: (Scalars['bigint'] | null),team_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null),visibility?: (e_utility_visibility_enum | null)} - - -/** aggregate stddev on columns */ -export interface utility_collections_stddev_fieldsGenqlSelection{ - owner_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface utility_collections_stddev_pop_fieldsGenqlSelection{ - owner_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface utility_collections_stddev_samp_fieldsGenqlSelection{ - owner_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "utility_collections" */ -export interface utility_collections_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: utility_collections_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface utility_collections_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),map_name?: (Scalars['String'] | null),name?: (Scalars['String'] | null),owner_steam_id?: (Scalars['bigint'] | null),team_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null),visibility?: (e_utility_visibility_enum | null)} - - -/** aggregate sum on columns */ -export interface utility_collections_sum_fieldsGenqlSelection{ - owner_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface utility_collections_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (utility_collections_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (utility_collections_set_input | null), -/** filter the rows which have to be updated */ -where: utility_collections_bool_exp} - - -/** aggregate var_pop on columns */ -export interface utility_collections_var_pop_fieldsGenqlSelection{ - owner_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface utility_collections_var_samp_fieldsGenqlSelection{ - owner_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface utility_collections_variance_fieldsGenqlSelection{ - owner_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "utility_demo_mines" */ -export interface utility_demo_minesGenqlSelection{ - failed_reason?: boolean | number - match_map_demo_id?: boolean | number - mined_at?: boolean | number - throws?: boolean | number - version?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "utility_demo_mines" */ -export interface utility_demo_mines_aggregateGenqlSelection{ - aggregate?: utility_demo_mines_aggregate_fieldsGenqlSelection - nodes?: utility_demo_minesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "utility_demo_mines" */ -export interface utility_demo_mines_aggregate_fieldsGenqlSelection{ - avg?: utility_demo_mines_avg_fieldsGenqlSelection - count?: { __args: {columns?: (utility_demo_mines_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: utility_demo_mines_max_fieldsGenqlSelection - min?: utility_demo_mines_min_fieldsGenqlSelection - stddev?: utility_demo_mines_stddev_fieldsGenqlSelection - stddev_pop?: utility_demo_mines_stddev_pop_fieldsGenqlSelection - stddev_samp?: utility_demo_mines_stddev_samp_fieldsGenqlSelection - sum?: utility_demo_mines_sum_fieldsGenqlSelection - var_pop?: utility_demo_mines_var_pop_fieldsGenqlSelection - var_samp?: utility_demo_mines_var_samp_fieldsGenqlSelection - variance?: utility_demo_mines_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface utility_demo_mines_avg_fieldsGenqlSelection{ - throws?: boolean | number - version?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "utility_demo_mines". All fields are combined with a logical 'AND'. */ -export interface utility_demo_mines_bool_exp {_and?: (utility_demo_mines_bool_exp[] | null),_not?: (utility_demo_mines_bool_exp | null),_or?: (utility_demo_mines_bool_exp[] | null),failed_reason?: (String_comparison_exp | null),match_map_demo_id?: (uuid_comparison_exp | null),mined_at?: (timestamptz_comparison_exp | null),throws?: (Int_comparison_exp | null),version?: (Int_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "utility_demo_mines" */ -export interface utility_demo_mines_inc_input {throws?: (Scalars['Int'] | null),version?: (Scalars['Int'] | null)} - - -/** input type for inserting data into table "utility_demo_mines" */ -export interface utility_demo_mines_insert_input {failed_reason?: (Scalars['String'] | null),match_map_demo_id?: (Scalars['uuid'] | null),mined_at?: (Scalars['timestamptz'] | null),throws?: (Scalars['Int'] | null),version?: (Scalars['Int'] | null)} - - -/** aggregate max on columns */ -export interface utility_demo_mines_max_fieldsGenqlSelection{ - failed_reason?: boolean | number - match_map_demo_id?: boolean | number - mined_at?: boolean | number - throws?: boolean | number - version?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface utility_demo_mines_min_fieldsGenqlSelection{ - failed_reason?: boolean | number - match_map_demo_id?: boolean | number - mined_at?: boolean | number - throws?: boolean | number - version?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "utility_demo_mines" */ -export interface utility_demo_mines_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: utility_demo_minesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "utility_demo_mines" */ -export interface utility_demo_mines_on_conflict {constraint: utility_demo_mines_constraint,update_columns?: utility_demo_mines_update_column[],where?: (utility_demo_mines_bool_exp | null)} - - -/** Ordering options when selecting data from "utility_demo_mines". */ -export interface utility_demo_mines_order_by {failed_reason?: (order_by | null),match_map_demo_id?: (order_by | null),mined_at?: (order_by | null),throws?: (order_by | null),version?: (order_by | null)} - - -/** primary key columns input for table: utility_demo_mines */ -export interface utility_demo_mines_pk_columns_input {match_map_demo_id: Scalars['uuid']} - - -/** input type for updating data in table "utility_demo_mines" */ -export interface utility_demo_mines_set_input {failed_reason?: (Scalars['String'] | null),match_map_demo_id?: (Scalars['uuid'] | null),mined_at?: (Scalars['timestamptz'] | null),throws?: (Scalars['Int'] | null),version?: (Scalars['Int'] | null)} - - -/** aggregate stddev on columns */ -export interface utility_demo_mines_stddev_fieldsGenqlSelection{ - throws?: boolean | number - version?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface utility_demo_mines_stddev_pop_fieldsGenqlSelection{ - throws?: boolean | number - version?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface utility_demo_mines_stddev_samp_fieldsGenqlSelection{ - throws?: boolean | number - version?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "utility_demo_mines" */ -export interface utility_demo_mines_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: utility_demo_mines_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface utility_demo_mines_stream_cursor_value_input {failed_reason?: (Scalars['String'] | null),match_map_demo_id?: (Scalars['uuid'] | null),mined_at?: (Scalars['timestamptz'] | null),throws?: (Scalars['Int'] | null),version?: (Scalars['Int'] | null)} - - -/** aggregate sum on columns */ -export interface utility_demo_mines_sum_fieldsGenqlSelection{ - throws?: boolean | number - version?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface utility_demo_mines_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (utility_demo_mines_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (utility_demo_mines_set_input | null), -/** filter the rows which have to be updated */ -where: utility_demo_mines_bool_exp} - - -/** aggregate var_pop on columns */ -export interface utility_demo_mines_var_pop_fieldsGenqlSelection{ - throws?: boolean | number - version?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface utility_demo_mines_var_samp_fieldsGenqlSelection{ - throws?: boolean | number - version?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface utility_demo_mines_variance_fieldsGenqlSelection{ - throws?: boolean | number - version?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "utility_demo_throws" */ -export interface utility_demo_throwsGenqlSelection{ - created_at?: boolean | number - flight_time_ms?: boolean | number - grenade_id?: boolean | number - land_x?: boolean | number - land_y?: boolean | number - land_z?: boolean | number - lineup_bucket?: boolean | number - map_name?: boolean | number - /** An object relationship */ - match?: matchesGenqlSelection - match_id?: boolean | number - /** An object relationship */ - match_map?: match_mapsGenqlSelection - match_map_demo_id?: boolean | number - match_map_id?: boolean | number - origin_x?: boolean | number - origin_y?: boolean | number - origin_z?: boolean | number - round?: boolean | number - side?: boolean | number - technique?: boolean | number - throw_strength?: boolean | number - thrower_steam_id?: boolean | number - thrown_at?: boolean | number - tick?: boolean | number - utility_type?: boolean | number - view_pitch?: boolean | number - view_yaw?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "utility_demo_throws" */ -export interface utility_demo_throws_aggregateGenqlSelection{ - aggregate?: utility_demo_throws_aggregate_fieldsGenqlSelection - nodes?: utility_demo_throwsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "utility_demo_throws" */ -export interface utility_demo_throws_aggregate_fieldsGenqlSelection{ - avg?: utility_demo_throws_avg_fieldsGenqlSelection - count?: { __args: {columns?: (utility_demo_throws_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: utility_demo_throws_max_fieldsGenqlSelection - min?: utility_demo_throws_min_fieldsGenqlSelection - stddev?: utility_demo_throws_stddev_fieldsGenqlSelection - stddev_pop?: utility_demo_throws_stddev_pop_fieldsGenqlSelection - stddev_samp?: utility_demo_throws_stddev_samp_fieldsGenqlSelection - sum?: utility_demo_throws_sum_fieldsGenqlSelection - var_pop?: utility_demo_throws_var_pop_fieldsGenqlSelection - var_samp?: utility_demo_throws_var_samp_fieldsGenqlSelection - variance?: utility_demo_throws_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface utility_demo_throws_avg_fieldsGenqlSelection{ - flight_time_ms?: boolean | number - grenade_id?: boolean | number - land_x?: boolean | number - land_y?: boolean | number - land_z?: boolean | number - origin_x?: boolean | number - origin_y?: boolean | number - origin_z?: boolean | number - round?: boolean | number - thrower_steam_id?: boolean | number - tick?: boolean | number - view_pitch?: boolean | number - view_yaw?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "utility_demo_throws". All fields are combined with a logical 'AND'. */ -export interface utility_demo_throws_bool_exp {_and?: (utility_demo_throws_bool_exp[] | null),_not?: (utility_demo_throws_bool_exp | null),_or?: (utility_demo_throws_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),flight_time_ms?: (Int_comparison_exp | null),grenade_id?: (Int_comparison_exp | null),land_x?: (float8_comparison_exp | null),land_y?: (float8_comparison_exp | null),land_z?: (float8_comparison_exp | null),lineup_bucket?: (String_comparison_exp | null),map_name?: (String_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_demo_id?: (uuid_comparison_exp | null),match_map_id?: (uuid_comparison_exp | null),origin_x?: (float8_comparison_exp | null),origin_y?: (float8_comparison_exp | null),origin_z?: (float8_comparison_exp | null),round?: (Int_comparison_exp | null),side?: (e_sides_enum_comparison_exp | null),technique?: (e_utility_techniques_enum_comparison_exp | null),throw_strength?: (e_utility_throw_strengths_enum_comparison_exp | null),thrower_steam_id?: (bigint_comparison_exp | null),thrown_at?: (timestamptz_comparison_exp | null),tick?: (Int_comparison_exp | null),utility_type?: (e_utility_types_enum_comparison_exp | null),view_pitch?: (float8_comparison_exp | null),view_yaw?: (float8_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "utility_demo_throws" */ -export interface utility_demo_throws_inc_input {flight_time_ms?: (Scalars['Int'] | null),grenade_id?: (Scalars['Int'] | null),land_x?: (Scalars['float8'] | null),land_y?: (Scalars['float8'] | null),land_z?: (Scalars['float8'] | null),origin_x?: (Scalars['float8'] | null),origin_y?: (Scalars['float8'] | null),origin_z?: (Scalars['float8'] | null),round?: (Scalars['Int'] | null),thrower_steam_id?: (Scalars['bigint'] | null),tick?: (Scalars['Int'] | null),view_pitch?: (Scalars['float8'] | null),view_yaw?: (Scalars['float8'] | null)} - - -/** input type for inserting data into table "utility_demo_throws" */ -export interface utility_demo_throws_insert_input {created_at?: (Scalars['timestamptz'] | null),flight_time_ms?: (Scalars['Int'] | null),grenade_id?: (Scalars['Int'] | null),land_x?: (Scalars['float8'] | null),land_y?: (Scalars['float8'] | null),land_z?: (Scalars['float8'] | null),map_name?: (Scalars['String'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_map?: (match_maps_obj_rel_insert_input | null),match_map_demo_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),origin_x?: (Scalars['float8'] | null),origin_y?: (Scalars['float8'] | null),origin_z?: (Scalars['float8'] | null),round?: (Scalars['Int'] | null),side?: (e_sides_enum | null),technique?: (e_utility_techniques_enum | null),throw_strength?: (e_utility_throw_strengths_enum | null),thrower_steam_id?: (Scalars['bigint'] | null),thrown_at?: (Scalars['timestamptz'] | null),tick?: (Scalars['Int'] | null),utility_type?: (e_utility_types_enum | null),view_pitch?: (Scalars['float8'] | null),view_yaw?: (Scalars['float8'] | null)} - - -/** aggregate max on columns */ -export interface utility_demo_throws_max_fieldsGenqlSelection{ - created_at?: boolean | number - flight_time_ms?: boolean | number - grenade_id?: boolean | number - land_x?: boolean | number - land_y?: boolean | number - land_z?: boolean | number - lineup_bucket?: boolean | number - map_name?: boolean | number - match_id?: boolean | number - match_map_demo_id?: boolean | number - match_map_id?: boolean | number - origin_x?: boolean | number - origin_y?: boolean | number - origin_z?: boolean | number - round?: boolean | number - thrower_steam_id?: boolean | number - thrown_at?: boolean | number - tick?: boolean | number - view_pitch?: boolean | number - view_yaw?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface utility_demo_throws_min_fieldsGenqlSelection{ - created_at?: boolean | number - flight_time_ms?: boolean | number - grenade_id?: boolean | number - land_x?: boolean | number - land_y?: boolean | number - land_z?: boolean | number - lineup_bucket?: boolean | number - map_name?: boolean | number - match_id?: boolean | number - match_map_demo_id?: boolean | number - match_map_id?: boolean | number - origin_x?: boolean | number - origin_y?: boolean | number - origin_z?: boolean | number - round?: boolean | number - thrower_steam_id?: boolean | number - thrown_at?: boolean | number - tick?: boolean | number - view_pitch?: boolean | number - view_yaw?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "utility_demo_throws" */ -export interface utility_demo_throws_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: utility_demo_throwsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "utility_demo_throws" */ -export interface utility_demo_throws_on_conflict {constraint: utility_demo_throws_constraint,update_columns?: utility_demo_throws_update_column[],where?: (utility_demo_throws_bool_exp | null)} - - -/** Ordering options when selecting data from "utility_demo_throws". */ -export interface utility_demo_throws_order_by {created_at?: (order_by | null),flight_time_ms?: (order_by | null),grenade_id?: (order_by | null),land_x?: (order_by | null),land_y?: (order_by | null),land_z?: (order_by | null),lineup_bucket?: (order_by | null),map_name?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_demo_id?: (order_by | null),match_map_id?: (order_by | null),origin_x?: (order_by | null),origin_y?: (order_by | null),origin_z?: (order_by | null),round?: (order_by | null),side?: (order_by | null),technique?: (order_by | null),throw_strength?: (order_by | null),thrower_steam_id?: (order_by | null),thrown_at?: (order_by | null),tick?: (order_by | null),utility_type?: (order_by | null),view_pitch?: (order_by | null),view_yaw?: (order_by | null)} - - -/** primary key columns input for table: utility_demo_throws */ -export interface utility_demo_throws_pk_columns_input {grenade_id: Scalars['Int'],match_map_demo_id: Scalars['uuid']} - - -/** input type for updating data in table "utility_demo_throws" */ -export interface utility_demo_throws_set_input {created_at?: (Scalars['timestamptz'] | null),flight_time_ms?: (Scalars['Int'] | null),grenade_id?: (Scalars['Int'] | null),land_x?: (Scalars['float8'] | null),land_y?: (Scalars['float8'] | null),land_z?: (Scalars['float8'] | null),map_name?: (Scalars['String'] | null),match_id?: (Scalars['uuid'] | null),match_map_demo_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),origin_x?: (Scalars['float8'] | null),origin_y?: (Scalars['float8'] | null),origin_z?: (Scalars['float8'] | null),round?: (Scalars['Int'] | null),side?: (e_sides_enum | null),technique?: (e_utility_techniques_enum | null),throw_strength?: (e_utility_throw_strengths_enum | null),thrower_steam_id?: (Scalars['bigint'] | null),thrown_at?: (Scalars['timestamptz'] | null),tick?: (Scalars['Int'] | null),utility_type?: (e_utility_types_enum | null),view_pitch?: (Scalars['float8'] | null),view_yaw?: (Scalars['float8'] | null)} - - -/** aggregate stddev on columns */ -export interface utility_demo_throws_stddev_fieldsGenqlSelection{ - flight_time_ms?: boolean | number - grenade_id?: boolean | number - land_x?: boolean | number - land_y?: boolean | number - land_z?: boolean | number - origin_x?: boolean | number - origin_y?: boolean | number - origin_z?: boolean | number - round?: boolean | number - thrower_steam_id?: boolean | number - tick?: boolean | number - view_pitch?: boolean | number - view_yaw?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface utility_demo_throws_stddev_pop_fieldsGenqlSelection{ - flight_time_ms?: boolean | number - grenade_id?: boolean | number - land_x?: boolean | number - land_y?: boolean | number - land_z?: boolean | number - origin_x?: boolean | number - origin_y?: boolean | number - origin_z?: boolean | number - round?: boolean | number - thrower_steam_id?: boolean | number - tick?: boolean | number - view_pitch?: boolean | number - view_yaw?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface utility_demo_throws_stddev_samp_fieldsGenqlSelection{ - flight_time_ms?: boolean | number - grenade_id?: boolean | number - land_x?: boolean | number - land_y?: boolean | number - land_z?: boolean | number - origin_x?: boolean | number - origin_y?: boolean | number - origin_z?: boolean | number - round?: boolean | number - thrower_steam_id?: boolean | number - tick?: boolean | number - view_pitch?: boolean | number - view_yaw?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "utility_demo_throws" */ -export interface utility_demo_throws_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: utility_demo_throws_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface utility_demo_throws_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),flight_time_ms?: (Scalars['Int'] | null),grenade_id?: (Scalars['Int'] | null),land_x?: (Scalars['float8'] | null),land_y?: (Scalars['float8'] | null),land_z?: (Scalars['float8'] | null),lineup_bucket?: (Scalars['String'] | null),map_name?: (Scalars['String'] | null),match_id?: (Scalars['uuid'] | null),match_map_demo_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),origin_x?: (Scalars['float8'] | null),origin_y?: (Scalars['float8'] | null),origin_z?: (Scalars['float8'] | null),round?: (Scalars['Int'] | null),side?: (e_sides_enum | null),technique?: (e_utility_techniques_enum | null),throw_strength?: (e_utility_throw_strengths_enum | null),thrower_steam_id?: (Scalars['bigint'] | null),thrown_at?: (Scalars['timestamptz'] | null),tick?: (Scalars['Int'] | null),utility_type?: (e_utility_types_enum | null),view_pitch?: (Scalars['float8'] | null),view_yaw?: (Scalars['float8'] | null)} - - -/** aggregate sum on columns */ -export interface utility_demo_throws_sum_fieldsGenqlSelection{ - flight_time_ms?: boolean | number - grenade_id?: boolean | number - land_x?: boolean | number - land_y?: boolean | number - land_z?: boolean | number - origin_x?: boolean | number - origin_y?: boolean | number - origin_z?: boolean | number - round?: boolean | number - thrower_steam_id?: boolean | number - tick?: boolean | number - view_pitch?: boolean | number - view_yaw?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface utility_demo_throws_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (utility_demo_throws_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (utility_demo_throws_set_input | null), -/** filter the rows which have to be updated */ -where: utility_demo_throws_bool_exp} - - -/** aggregate var_pop on columns */ -export interface utility_demo_throws_var_pop_fieldsGenqlSelection{ - flight_time_ms?: boolean | number - grenade_id?: boolean | number - land_x?: boolean | number - land_y?: boolean | number - land_z?: boolean | number - origin_x?: boolean | number - origin_y?: boolean | number - origin_z?: boolean | number - round?: boolean | number - thrower_steam_id?: boolean | number - tick?: boolean | number - view_pitch?: boolean | number - view_yaw?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface utility_demo_throws_var_samp_fieldsGenqlSelection{ - flight_time_ms?: boolean | number - grenade_id?: boolean | number - land_x?: boolean | number - land_y?: boolean | number - land_z?: boolean | number - origin_x?: boolean | number - origin_y?: boolean | number - origin_z?: boolean | number - round?: boolean | number - thrower_steam_id?: boolean | number - tick?: boolean | number - view_pitch?: boolean | number - view_yaw?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface utility_demo_throws_variance_fieldsGenqlSelection{ - flight_time_ms?: boolean | number - grenade_id?: boolean | number - land_x?: boolean | number - land_y?: boolean | number - land_z?: boolean | number - origin_x?: boolean | number - origin_y?: boolean | number - origin_z?: boolean | number - round?: boolean | number - thrower_steam_id?: boolean | number - tick?: boolean | number - view_pitch?: boolean | number - view_yaw?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "utility_drift_results" */ -export interface utility_drift_resultsGenqlSelection{ - created_at?: boolean | number - distance?: boolean | number - distance_xy?: boolean | number - distance_z?: boolean | number - reason?: boolean | number - /** An object relationship */ - scan?: utility_drift_scansGenqlSelection - severity?: boolean | number - utility_drift_scan_id?: boolean | number - /** An object relationship */ - utility_lineup?: utility_lineupsGenqlSelection - utility_lineup_id?: boolean | number - verdict?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "utility_drift_results" */ -export interface utility_drift_results_aggregateGenqlSelection{ - aggregate?: utility_drift_results_aggregate_fieldsGenqlSelection - nodes?: utility_drift_resultsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface utility_drift_results_aggregate_bool_exp {avg?: (utility_drift_results_aggregate_bool_exp_avg | null),corr?: (utility_drift_results_aggregate_bool_exp_corr | null),count?: (utility_drift_results_aggregate_bool_exp_count | null),covar_samp?: (utility_drift_results_aggregate_bool_exp_covar_samp | null),max?: (utility_drift_results_aggregate_bool_exp_max | null),min?: (utility_drift_results_aggregate_bool_exp_min | null),stddev_samp?: (utility_drift_results_aggregate_bool_exp_stddev_samp | null),sum?: (utility_drift_results_aggregate_bool_exp_sum | null),var_samp?: (utility_drift_results_aggregate_bool_exp_var_samp | null)} - -export interface utility_drift_results_aggregate_bool_exp_avg {arguments: utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_avg_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_drift_results_bool_exp | null),predicate: float8_comparison_exp} - -export interface utility_drift_results_aggregate_bool_exp_corr {arguments: utility_drift_results_aggregate_bool_exp_corr_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (utility_drift_results_bool_exp | null),predicate: float8_comparison_exp} - -export interface utility_drift_results_aggregate_bool_exp_corr_arguments {X: utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_corr_arguments_columns,Y: utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_corr_arguments_columns} - -export interface utility_drift_results_aggregate_bool_exp_count {arguments?: (utility_drift_results_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (utility_drift_results_bool_exp | null),predicate: Int_comparison_exp} - -export interface utility_drift_results_aggregate_bool_exp_covar_samp {arguments: utility_drift_results_aggregate_bool_exp_covar_samp_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (utility_drift_results_bool_exp | null),predicate: float8_comparison_exp} - -export interface utility_drift_results_aggregate_bool_exp_covar_samp_arguments {X: utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_covar_samp_arguments_columns,Y: utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_covar_samp_arguments_columns} - -export interface utility_drift_results_aggregate_bool_exp_max {arguments: utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_max_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_drift_results_bool_exp | null),predicate: float8_comparison_exp} - -export interface utility_drift_results_aggregate_bool_exp_min {arguments: utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_min_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_drift_results_bool_exp | null),predicate: float8_comparison_exp} - -export interface utility_drift_results_aggregate_bool_exp_stddev_samp {arguments: utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_stddev_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_drift_results_bool_exp | null),predicate: float8_comparison_exp} - -export interface utility_drift_results_aggregate_bool_exp_sum {arguments: utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_sum_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_drift_results_bool_exp | null),predicate: float8_comparison_exp} - -export interface utility_drift_results_aggregate_bool_exp_var_samp {arguments: utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_var_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_drift_results_bool_exp | null),predicate: float8_comparison_exp} - - -/** aggregate fields of "utility_drift_results" */ -export interface utility_drift_results_aggregate_fieldsGenqlSelection{ - avg?: utility_drift_results_avg_fieldsGenqlSelection - count?: { __args: {columns?: (utility_drift_results_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: utility_drift_results_max_fieldsGenqlSelection - min?: utility_drift_results_min_fieldsGenqlSelection - stddev?: utility_drift_results_stddev_fieldsGenqlSelection - stddev_pop?: utility_drift_results_stddev_pop_fieldsGenqlSelection - stddev_samp?: utility_drift_results_stddev_samp_fieldsGenqlSelection - sum?: utility_drift_results_sum_fieldsGenqlSelection - var_pop?: utility_drift_results_var_pop_fieldsGenqlSelection - var_samp?: utility_drift_results_var_samp_fieldsGenqlSelection - variance?: utility_drift_results_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "utility_drift_results" */ -export interface utility_drift_results_aggregate_order_by {avg?: (utility_drift_results_avg_order_by | null),count?: (order_by | null),max?: (utility_drift_results_max_order_by | null),min?: (utility_drift_results_min_order_by | null),stddev?: (utility_drift_results_stddev_order_by | null),stddev_pop?: (utility_drift_results_stddev_pop_order_by | null),stddev_samp?: (utility_drift_results_stddev_samp_order_by | null),sum?: (utility_drift_results_sum_order_by | null),var_pop?: (utility_drift_results_var_pop_order_by | null),var_samp?: (utility_drift_results_var_samp_order_by | null),variance?: (utility_drift_results_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "utility_drift_results" */ -export interface utility_drift_results_arr_rel_insert_input {data: utility_drift_results_insert_input[], -/** upsert condition */ -on_conflict?: (utility_drift_results_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface utility_drift_results_avg_fieldsGenqlSelection{ - distance?: boolean | number - distance_xy?: boolean | number - distance_z?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "utility_drift_results" */ -export interface utility_drift_results_avg_order_by {distance?: (order_by | null),distance_xy?: (order_by | null),distance_z?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "utility_drift_results". All fields are combined with a logical 'AND'. */ -export interface utility_drift_results_bool_exp {_and?: (utility_drift_results_bool_exp[] | null),_not?: (utility_drift_results_bool_exp | null),_or?: (utility_drift_results_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),distance?: (float8_comparison_exp | null),distance_xy?: (float8_comparison_exp | null),distance_z?: (float8_comparison_exp | null),reason?: (String_comparison_exp | null),scan?: (utility_drift_scans_bool_exp | null),severity?: (String_comparison_exp | null),utility_drift_scan_id?: (uuid_comparison_exp | null),utility_lineup?: (utility_lineups_bool_exp | null),utility_lineup_id?: (uuid_comparison_exp | null),verdict?: (String_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "utility_drift_results" */ -export interface utility_drift_results_inc_input {distance?: (Scalars['float8'] | null),distance_xy?: (Scalars['float8'] | null),distance_z?: (Scalars['float8'] | null)} - - -/** input type for inserting data into table "utility_drift_results" */ -export interface utility_drift_results_insert_input {created_at?: (Scalars['timestamptz'] | null),distance?: (Scalars['float8'] | null),distance_xy?: (Scalars['float8'] | null),distance_z?: (Scalars['float8'] | null),reason?: (Scalars['String'] | null),scan?: (utility_drift_scans_obj_rel_insert_input | null),severity?: (Scalars['String'] | null),utility_drift_scan_id?: (Scalars['uuid'] | null),utility_lineup?: (utility_lineups_obj_rel_insert_input | null),utility_lineup_id?: (Scalars['uuid'] | null),verdict?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface utility_drift_results_max_fieldsGenqlSelection{ - created_at?: boolean | number - distance?: boolean | number - distance_xy?: boolean | number - distance_z?: boolean | number - reason?: boolean | number - severity?: boolean | number - utility_drift_scan_id?: boolean | number - utility_lineup_id?: boolean | number - verdict?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "utility_drift_results" */ -export interface utility_drift_results_max_order_by {created_at?: (order_by | null),distance?: (order_by | null),distance_xy?: (order_by | null),distance_z?: (order_by | null),reason?: (order_by | null),severity?: (order_by | null),utility_drift_scan_id?: (order_by | null),utility_lineup_id?: (order_by | null),verdict?: (order_by | null)} - - -/** aggregate min on columns */ -export interface utility_drift_results_min_fieldsGenqlSelection{ - created_at?: boolean | number - distance?: boolean | number - distance_xy?: boolean | number - distance_z?: boolean | number - reason?: boolean | number - severity?: boolean | number - utility_drift_scan_id?: boolean | number - utility_lineup_id?: boolean | number - verdict?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "utility_drift_results" */ -export interface utility_drift_results_min_order_by {created_at?: (order_by | null),distance?: (order_by | null),distance_xy?: (order_by | null),distance_z?: (order_by | null),reason?: (order_by | null),severity?: (order_by | null),utility_drift_scan_id?: (order_by | null),utility_lineup_id?: (order_by | null),verdict?: (order_by | null)} - - -/** response of any mutation on the table "utility_drift_results" */ -export interface utility_drift_results_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: utility_drift_resultsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "utility_drift_results" */ -export interface utility_drift_results_on_conflict {constraint: utility_drift_results_constraint,update_columns?: utility_drift_results_update_column[],where?: (utility_drift_results_bool_exp | null)} - - -/** Ordering options when selecting data from "utility_drift_results". */ -export interface utility_drift_results_order_by {created_at?: (order_by | null),distance?: (order_by | null),distance_xy?: (order_by | null),distance_z?: (order_by | null),reason?: (order_by | null),scan?: (utility_drift_scans_order_by | null),severity?: (order_by | null),utility_drift_scan_id?: (order_by | null),utility_lineup?: (utility_lineups_order_by | null),utility_lineup_id?: (order_by | null),verdict?: (order_by | null)} - - -/** primary key columns input for table: utility_drift_results */ -export interface utility_drift_results_pk_columns_input {utility_drift_scan_id: Scalars['uuid'],utility_lineup_id: Scalars['uuid']} - - -/** input type for updating data in table "utility_drift_results" */ -export interface utility_drift_results_set_input {created_at?: (Scalars['timestamptz'] | null),distance?: (Scalars['float8'] | null),distance_xy?: (Scalars['float8'] | null),distance_z?: (Scalars['float8'] | null),reason?: (Scalars['String'] | null),severity?: (Scalars['String'] | null),utility_drift_scan_id?: (Scalars['uuid'] | null),utility_lineup_id?: (Scalars['uuid'] | null),verdict?: (Scalars['String'] | null)} - - -/** aggregate stddev on columns */ -export interface utility_drift_results_stddev_fieldsGenqlSelection{ - distance?: boolean | number - distance_xy?: boolean | number - distance_z?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "utility_drift_results" */ -export interface utility_drift_results_stddev_order_by {distance?: (order_by | null),distance_xy?: (order_by | null),distance_z?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface utility_drift_results_stddev_pop_fieldsGenqlSelection{ - distance?: boolean | number - distance_xy?: boolean | number - distance_z?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "utility_drift_results" */ -export interface utility_drift_results_stddev_pop_order_by {distance?: (order_by | null),distance_xy?: (order_by | null),distance_z?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface utility_drift_results_stddev_samp_fieldsGenqlSelection{ - distance?: boolean | number - distance_xy?: boolean | number - distance_z?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "utility_drift_results" */ -export interface utility_drift_results_stddev_samp_order_by {distance?: (order_by | null),distance_xy?: (order_by | null),distance_z?: (order_by | null)} - - -/** Streaming cursor of the table "utility_drift_results" */ -export interface utility_drift_results_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: utility_drift_results_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface utility_drift_results_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),distance?: (Scalars['float8'] | null),distance_xy?: (Scalars['float8'] | null),distance_z?: (Scalars['float8'] | null),reason?: (Scalars['String'] | null),severity?: (Scalars['String'] | null),utility_drift_scan_id?: (Scalars['uuid'] | null),utility_lineup_id?: (Scalars['uuid'] | null),verdict?: (Scalars['String'] | null)} - - -/** aggregate sum on columns */ -export interface utility_drift_results_sum_fieldsGenqlSelection{ - distance?: boolean | number - distance_xy?: boolean | number - distance_z?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "utility_drift_results" */ -export interface utility_drift_results_sum_order_by {distance?: (order_by | null),distance_xy?: (order_by | null),distance_z?: (order_by | null)} - -export interface utility_drift_results_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (utility_drift_results_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (utility_drift_results_set_input | null), -/** filter the rows which have to be updated */ -where: utility_drift_results_bool_exp} - - -/** aggregate var_pop on columns */ -export interface utility_drift_results_var_pop_fieldsGenqlSelection{ - distance?: boolean | number - distance_xy?: boolean | number - distance_z?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "utility_drift_results" */ -export interface utility_drift_results_var_pop_order_by {distance?: (order_by | null),distance_xy?: (order_by | null),distance_z?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface utility_drift_results_var_samp_fieldsGenqlSelection{ - distance?: boolean | number - distance_xy?: boolean | number - distance_z?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "utility_drift_results" */ -export interface utility_drift_results_var_samp_order_by {distance?: (order_by | null),distance_xy?: (order_by | null),distance_z?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface utility_drift_results_variance_fieldsGenqlSelection{ - distance?: boolean | number - distance_xy?: boolean | number - distance_z?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "utility_drift_results" */ -export interface utility_drift_results_variance_order_by {distance?: (order_by | null),distance_xy?: (order_by | null),distance_z?: (order_by | null)} - - -/** columns and relationships of "utility_drift_scans" */ -export interface utility_drift_scansGenqlSelection{ - broken?: boolean | number - created_at?: boolean | number - failure_reason?: boolean | number - finished_at?: boolean | number - from_revision?: boolean | number - id?: boolean | number - lineups?: boolean | number - map_name?: boolean | number - max_distance?: boolean | number - moved?: boolean | number - /** An object relationship */ - requested_by?: playersGenqlSelection - requested_by_steam_id?: boolean | number - /** An array relationship */ - results?: (utility_drift_resultsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_drift_results_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_drift_results_order_by[] | null), - /** filter the rows returned */ - where?: (utility_drift_results_bool_exp | null)} }) - /** An aggregate relationship */ - results_aggregate?: (utility_drift_results_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_drift_results_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_drift_results_order_by[] | null), - /** filter the rows returned */ - where?: (utility_drift_results_bool_exp | null)} }) - scanned?: boolean | number - started_at?: boolean | number - status?: boolean | number - to_revision?: boolean | number - unchanged?: boolean | number - unsimulatable?: boolean | number - updated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "utility_drift_scans" */ -export interface utility_drift_scans_aggregateGenqlSelection{ - aggregate?: utility_drift_scans_aggregate_fieldsGenqlSelection - nodes?: utility_drift_scansGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "utility_drift_scans" */ -export interface utility_drift_scans_aggregate_fieldsGenqlSelection{ - avg?: utility_drift_scans_avg_fieldsGenqlSelection - count?: { __args: {columns?: (utility_drift_scans_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: utility_drift_scans_max_fieldsGenqlSelection - min?: utility_drift_scans_min_fieldsGenqlSelection - stddev?: utility_drift_scans_stddev_fieldsGenqlSelection - stddev_pop?: utility_drift_scans_stddev_pop_fieldsGenqlSelection - stddev_samp?: utility_drift_scans_stddev_samp_fieldsGenqlSelection - sum?: utility_drift_scans_sum_fieldsGenqlSelection - var_pop?: utility_drift_scans_var_pop_fieldsGenqlSelection - var_samp?: utility_drift_scans_var_samp_fieldsGenqlSelection - variance?: utility_drift_scans_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface utility_drift_scans_avg_fieldsGenqlSelection{ - broken?: boolean | number - lineups?: boolean | number - max_distance?: boolean | number - moved?: boolean | number - requested_by_steam_id?: boolean | number - scanned?: boolean | number - unchanged?: boolean | number - unsimulatable?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "utility_drift_scans". All fields are combined with a logical 'AND'. */ -export interface utility_drift_scans_bool_exp {_and?: (utility_drift_scans_bool_exp[] | null),_not?: (utility_drift_scans_bool_exp | null),_or?: (utility_drift_scans_bool_exp[] | null),broken?: (Int_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),failure_reason?: (String_comparison_exp | null),finished_at?: (timestamptz_comparison_exp | null),from_revision?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),lineups?: (Int_comparison_exp | null),map_name?: (String_comparison_exp | null),max_distance?: (float8_comparison_exp | null),moved?: (Int_comparison_exp | null),requested_by?: (players_bool_exp | null),requested_by_steam_id?: (bigint_comparison_exp | null),results?: (utility_drift_results_bool_exp | null),results_aggregate?: (utility_drift_results_aggregate_bool_exp | null),scanned?: (Int_comparison_exp | null),started_at?: (timestamptz_comparison_exp | null),status?: (String_comparison_exp | null),to_revision?: (String_comparison_exp | null),unchanged?: (Int_comparison_exp | null),unsimulatable?: (Int_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "utility_drift_scans" */ -export interface utility_drift_scans_inc_input {broken?: (Scalars['Int'] | null),lineups?: (Scalars['Int'] | null),max_distance?: (Scalars['float8'] | null),moved?: (Scalars['Int'] | null),requested_by_steam_id?: (Scalars['bigint'] | null),scanned?: (Scalars['Int'] | null),unchanged?: (Scalars['Int'] | null),unsimulatable?: (Scalars['Int'] | null)} - - -/** input type for inserting data into table "utility_drift_scans" */ -export interface utility_drift_scans_insert_input {broken?: (Scalars['Int'] | null),created_at?: (Scalars['timestamptz'] | null),failure_reason?: (Scalars['String'] | null),finished_at?: (Scalars['timestamptz'] | null),from_revision?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),lineups?: (Scalars['Int'] | null),map_name?: (Scalars['String'] | null),max_distance?: (Scalars['float8'] | null),moved?: (Scalars['Int'] | null),requested_by?: (players_obj_rel_insert_input | null),requested_by_steam_id?: (Scalars['bigint'] | null),results?: (utility_drift_results_arr_rel_insert_input | null),scanned?: (Scalars['Int'] | null),started_at?: (Scalars['timestamptz'] | null),status?: (Scalars['String'] | null),to_revision?: (Scalars['String'] | null),unchanged?: (Scalars['Int'] | null),unsimulatable?: (Scalars['Int'] | null),updated_at?: (Scalars['timestamptz'] | null)} - - -/** aggregate max on columns */ -export interface utility_drift_scans_max_fieldsGenqlSelection{ - broken?: boolean | number - created_at?: boolean | number - failure_reason?: boolean | number - finished_at?: boolean | number - from_revision?: boolean | number - id?: boolean | number - lineups?: boolean | number - map_name?: boolean | number - max_distance?: boolean | number - moved?: boolean | number - requested_by_steam_id?: boolean | number - scanned?: boolean | number - started_at?: boolean | number - status?: boolean | number - to_revision?: boolean | number - unchanged?: boolean | number - unsimulatable?: boolean | number - updated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface utility_drift_scans_min_fieldsGenqlSelection{ - broken?: boolean | number - created_at?: boolean | number - failure_reason?: boolean | number - finished_at?: boolean | number - from_revision?: boolean | number - id?: boolean | number - lineups?: boolean | number - map_name?: boolean | number - max_distance?: boolean | number - moved?: boolean | number - requested_by_steam_id?: boolean | number - scanned?: boolean | number - started_at?: boolean | number - status?: boolean | number - to_revision?: boolean | number - unchanged?: boolean | number - unsimulatable?: boolean | number - updated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "utility_drift_scans" */ -export interface utility_drift_scans_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: utility_drift_scansGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "utility_drift_scans" */ -export interface utility_drift_scans_obj_rel_insert_input {data: utility_drift_scans_insert_input, -/** upsert condition */ -on_conflict?: (utility_drift_scans_on_conflict | null)} - - -/** on_conflict condition type for table "utility_drift_scans" */ -export interface utility_drift_scans_on_conflict {constraint: utility_drift_scans_constraint,update_columns?: utility_drift_scans_update_column[],where?: (utility_drift_scans_bool_exp | null)} - - -/** Ordering options when selecting data from "utility_drift_scans". */ -export interface utility_drift_scans_order_by {broken?: (order_by | null),created_at?: (order_by | null),failure_reason?: (order_by | null),finished_at?: (order_by | null),from_revision?: (order_by | null),id?: (order_by | null),lineups?: (order_by | null),map_name?: (order_by | null),max_distance?: (order_by | null),moved?: (order_by | null),requested_by?: (players_order_by | null),requested_by_steam_id?: (order_by | null),results_aggregate?: (utility_drift_results_aggregate_order_by | null),scanned?: (order_by | null),started_at?: (order_by | null),status?: (order_by | null),to_revision?: (order_by | null),unchanged?: (order_by | null),unsimulatable?: (order_by | null),updated_at?: (order_by | null)} - - -/** primary key columns input for table: utility_drift_scans */ -export interface utility_drift_scans_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "utility_drift_scans" */ -export interface utility_drift_scans_set_input {broken?: (Scalars['Int'] | null),created_at?: (Scalars['timestamptz'] | null),failure_reason?: (Scalars['String'] | null),finished_at?: (Scalars['timestamptz'] | null),from_revision?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),lineups?: (Scalars['Int'] | null),map_name?: (Scalars['String'] | null),max_distance?: (Scalars['float8'] | null),moved?: (Scalars['Int'] | null),requested_by_steam_id?: (Scalars['bigint'] | null),scanned?: (Scalars['Int'] | null),started_at?: (Scalars['timestamptz'] | null),status?: (Scalars['String'] | null),to_revision?: (Scalars['String'] | null),unchanged?: (Scalars['Int'] | null),unsimulatable?: (Scalars['Int'] | null),updated_at?: (Scalars['timestamptz'] | null)} - - -/** aggregate stddev on columns */ -export interface utility_drift_scans_stddev_fieldsGenqlSelection{ - broken?: boolean | number - lineups?: boolean | number - max_distance?: boolean | number - moved?: boolean | number - requested_by_steam_id?: boolean | number - scanned?: boolean | number - unchanged?: boolean | number - unsimulatable?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface utility_drift_scans_stddev_pop_fieldsGenqlSelection{ - broken?: boolean | number - lineups?: boolean | number - max_distance?: boolean | number - moved?: boolean | number - requested_by_steam_id?: boolean | number - scanned?: boolean | number - unchanged?: boolean | number - unsimulatable?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface utility_drift_scans_stddev_samp_fieldsGenqlSelection{ - broken?: boolean | number - lineups?: boolean | number - max_distance?: boolean | number - moved?: boolean | number - requested_by_steam_id?: boolean | number - scanned?: boolean | number - unchanged?: boolean | number - unsimulatable?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "utility_drift_scans" */ -export interface utility_drift_scans_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: utility_drift_scans_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface utility_drift_scans_stream_cursor_value_input {broken?: (Scalars['Int'] | null),created_at?: (Scalars['timestamptz'] | null),failure_reason?: (Scalars['String'] | null),finished_at?: (Scalars['timestamptz'] | null),from_revision?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),lineups?: (Scalars['Int'] | null),map_name?: (Scalars['String'] | null),max_distance?: (Scalars['float8'] | null),moved?: (Scalars['Int'] | null),requested_by_steam_id?: (Scalars['bigint'] | null),scanned?: (Scalars['Int'] | null),started_at?: (Scalars['timestamptz'] | null),status?: (Scalars['String'] | null),to_revision?: (Scalars['String'] | null),unchanged?: (Scalars['Int'] | null),unsimulatable?: (Scalars['Int'] | null),updated_at?: (Scalars['timestamptz'] | null)} - - -/** aggregate sum on columns */ -export interface utility_drift_scans_sum_fieldsGenqlSelection{ - broken?: boolean | number - lineups?: boolean | number - max_distance?: boolean | number - moved?: boolean | number - requested_by_steam_id?: boolean | number - scanned?: boolean | number - unchanged?: boolean | number - unsimulatable?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface utility_drift_scans_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (utility_drift_scans_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (utility_drift_scans_set_input | null), -/** filter the rows which have to be updated */ -where: utility_drift_scans_bool_exp} - - -/** aggregate var_pop on columns */ -export interface utility_drift_scans_var_pop_fieldsGenqlSelection{ - broken?: boolean | number - lineups?: boolean | number - max_distance?: boolean | number - moved?: boolean | number - requested_by_steam_id?: boolean | number - scanned?: boolean | number - unchanged?: boolean | number - unsimulatable?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface utility_drift_scans_var_samp_fieldsGenqlSelection{ - broken?: boolean | number - lineups?: boolean | number - max_distance?: boolean | number - moved?: boolean | number - requested_by_steam_id?: boolean | number - scanned?: boolean | number - unchanged?: boolean | number - unsimulatable?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface utility_drift_scans_variance_fieldsGenqlSelection{ - broken?: boolean | number - lineups?: boolean | number - max_distance?: boolean | number - moved?: boolean | number - requested_by_steam_id?: boolean | number - scanned?: boolean | number - unchanged?: boolean | number - unsimulatable?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "utility_lineup_favorites" */ -export interface utility_lineup_favoritesGenqlSelection{ - created_at?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - steam_id?: boolean | number - /** An object relationship */ - utility_lineup?: utility_lineupsGenqlSelection - utility_lineup_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "utility_lineup_favorites" */ -export interface utility_lineup_favorites_aggregateGenqlSelection{ - aggregate?: utility_lineup_favorites_aggregate_fieldsGenqlSelection - nodes?: utility_lineup_favoritesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface utility_lineup_favorites_aggregate_bool_exp {count?: (utility_lineup_favorites_aggregate_bool_exp_count | null)} - -export interface utility_lineup_favorites_aggregate_bool_exp_count {arguments?: (utility_lineup_favorites_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_favorites_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "utility_lineup_favorites" */ -export interface utility_lineup_favorites_aggregate_fieldsGenqlSelection{ - avg?: utility_lineup_favorites_avg_fieldsGenqlSelection - count?: { __args: {columns?: (utility_lineup_favorites_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: utility_lineup_favorites_max_fieldsGenqlSelection - min?: utility_lineup_favorites_min_fieldsGenqlSelection - stddev?: utility_lineup_favorites_stddev_fieldsGenqlSelection - stddev_pop?: utility_lineup_favorites_stddev_pop_fieldsGenqlSelection - stddev_samp?: utility_lineup_favorites_stddev_samp_fieldsGenqlSelection - sum?: utility_lineup_favorites_sum_fieldsGenqlSelection - var_pop?: utility_lineup_favorites_var_pop_fieldsGenqlSelection - var_samp?: utility_lineup_favorites_var_samp_fieldsGenqlSelection - variance?: utility_lineup_favorites_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "utility_lineup_favorites" */ -export interface utility_lineup_favorites_aggregate_order_by {avg?: (utility_lineup_favorites_avg_order_by | null),count?: (order_by | null),max?: (utility_lineup_favorites_max_order_by | null),min?: (utility_lineup_favorites_min_order_by | null),stddev?: (utility_lineup_favorites_stddev_order_by | null),stddev_pop?: (utility_lineup_favorites_stddev_pop_order_by | null),stddev_samp?: (utility_lineup_favorites_stddev_samp_order_by | null),sum?: (utility_lineup_favorites_sum_order_by | null),var_pop?: (utility_lineup_favorites_var_pop_order_by | null),var_samp?: (utility_lineup_favorites_var_samp_order_by | null),variance?: (utility_lineup_favorites_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "utility_lineup_favorites" */ -export interface utility_lineup_favorites_arr_rel_insert_input {data: utility_lineup_favorites_insert_input[], -/** upsert condition */ -on_conflict?: (utility_lineup_favorites_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface utility_lineup_favorites_avg_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "utility_lineup_favorites" */ -export interface utility_lineup_favorites_avg_order_by {steam_id?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "utility_lineup_favorites". All fields are combined with a logical 'AND'. */ -export interface utility_lineup_favorites_bool_exp {_and?: (utility_lineup_favorites_bool_exp[] | null),_not?: (utility_lineup_favorites_bool_exp | null),_or?: (utility_lineup_favorites_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),player?: (players_bool_exp | null),steam_id?: (bigint_comparison_exp | null),utility_lineup?: (utility_lineups_bool_exp | null),utility_lineup_id?: (uuid_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "utility_lineup_favorites" */ -export interface utility_lineup_favorites_inc_input {steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "utility_lineup_favorites" */ -export interface utility_lineup_favorites_insert_input {created_at?: (Scalars['timestamptz'] | null),player?: (players_obj_rel_insert_input | null),steam_id?: (Scalars['bigint'] | null),utility_lineup?: (utility_lineups_obj_rel_insert_input | null),utility_lineup_id?: (Scalars['uuid'] | null)} - - -/** aggregate max on columns */ -export interface utility_lineup_favorites_max_fieldsGenqlSelection{ - created_at?: boolean | number - steam_id?: boolean | number - utility_lineup_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "utility_lineup_favorites" */ -export interface utility_lineup_favorites_max_order_by {created_at?: (order_by | null),steam_id?: (order_by | null),utility_lineup_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface utility_lineup_favorites_min_fieldsGenqlSelection{ - created_at?: boolean | number - steam_id?: boolean | number - utility_lineup_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "utility_lineup_favorites" */ -export interface utility_lineup_favorites_min_order_by {created_at?: (order_by | null),steam_id?: (order_by | null),utility_lineup_id?: (order_by | null)} - - -/** response of any mutation on the table "utility_lineup_favorites" */ -export interface utility_lineup_favorites_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: utility_lineup_favoritesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "utility_lineup_favorites" */ -export interface utility_lineup_favorites_on_conflict {constraint: utility_lineup_favorites_constraint,update_columns?: utility_lineup_favorites_update_column[],where?: (utility_lineup_favorites_bool_exp | null)} - - -/** Ordering options when selecting data from "utility_lineup_favorites". */ -export interface utility_lineup_favorites_order_by {created_at?: (order_by | null),player?: (players_order_by | null),steam_id?: (order_by | null),utility_lineup?: (utility_lineups_order_by | null),utility_lineup_id?: (order_by | null)} - - -/** primary key columns input for table: utility_lineup_favorites */ -export interface utility_lineup_favorites_pk_columns_input {steam_id: Scalars['bigint'],utility_lineup_id: Scalars['uuid']} - - -/** input type for updating data in table "utility_lineup_favorites" */ -export interface utility_lineup_favorites_set_input {created_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),utility_lineup_id?: (Scalars['uuid'] | null)} - - -/** aggregate stddev on columns */ -export interface utility_lineup_favorites_stddev_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "utility_lineup_favorites" */ -export interface utility_lineup_favorites_stddev_order_by {steam_id?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface utility_lineup_favorites_stddev_pop_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "utility_lineup_favorites" */ -export interface utility_lineup_favorites_stddev_pop_order_by {steam_id?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface utility_lineup_favorites_stddev_samp_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "utility_lineup_favorites" */ -export interface utility_lineup_favorites_stddev_samp_order_by {steam_id?: (order_by | null)} - - -/** Streaming cursor of the table "utility_lineup_favorites" */ -export interface utility_lineup_favorites_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: utility_lineup_favorites_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface utility_lineup_favorites_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),utility_lineup_id?: (Scalars['uuid'] | null)} - - -/** aggregate sum on columns */ -export interface utility_lineup_favorites_sum_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "utility_lineup_favorites" */ -export interface utility_lineup_favorites_sum_order_by {steam_id?: (order_by | null)} - -export interface utility_lineup_favorites_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (utility_lineup_favorites_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (utility_lineup_favorites_set_input | null), -/** filter the rows which have to be updated */ -where: utility_lineup_favorites_bool_exp} - - -/** aggregate var_pop on columns */ -export interface utility_lineup_favorites_var_pop_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "utility_lineup_favorites" */ -export interface utility_lineup_favorites_var_pop_order_by {steam_id?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface utility_lineup_favorites_var_samp_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "utility_lineup_favorites" */ -export interface utility_lineup_favorites_var_samp_order_by {steam_id?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface utility_lineup_favorites_variance_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "utility_lineup_favorites" */ -export interface utility_lineup_favorites_variance_order_by {steam_id?: (order_by | null)} - - -/** columns and relationships of "utility_lineup_progress" */ -export interface utility_lineup_progressGenqlSelection{ - attempts?: boolean | number - best_streak?: boolean | number - current_streak?: boolean | number - last_practiced_at?: boolean | number - mastered_at?: boolean | number - miss_along_sum?: boolean | number - miss_lateral_sum?: boolean | number - miss_samples?: boolean | number - miss_vertical_sum?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - steam_id?: boolean | number - successes?: boolean | number - /** An object relationship */ - utility_lineup?: utility_lineupsGenqlSelection - utility_lineup_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "utility_lineup_progress" */ -export interface utility_lineup_progress_aggregateGenqlSelection{ - aggregate?: utility_lineup_progress_aggregate_fieldsGenqlSelection - nodes?: utility_lineup_progressGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface utility_lineup_progress_aggregate_bool_exp {avg?: (utility_lineup_progress_aggregate_bool_exp_avg | null),corr?: (utility_lineup_progress_aggregate_bool_exp_corr | null),count?: (utility_lineup_progress_aggregate_bool_exp_count | null),covar_samp?: (utility_lineup_progress_aggregate_bool_exp_covar_samp | null),max?: (utility_lineup_progress_aggregate_bool_exp_max | null),min?: (utility_lineup_progress_aggregate_bool_exp_min | null),stddev_samp?: (utility_lineup_progress_aggregate_bool_exp_stddev_samp | null),sum?: (utility_lineup_progress_aggregate_bool_exp_sum | null),var_samp?: (utility_lineup_progress_aggregate_bool_exp_var_samp | null)} - -export interface utility_lineup_progress_aggregate_bool_exp_avg {arguments: utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_avg_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_progress_bool_exp | null),predicate: float8_comparison_exp} - -export interface utility_lineup_progress_aggregate_bool_exp_corr {arguments: utility_lineup_progress_aggregate_bool_exp_corr_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_progress_bool_exp | null),predicate: float8_comparison_exp} - -export interface utility_lineup_progress_aggregate_bool_exp_corr_arguments {X: utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_corr_arguments_columns,Y: utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_corr_arguments_columns} - -export interface utility_lineup_progress_aggregate_bool_exp_count {arguments?: (utility_lineup_progress_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_progress_bool_exp | null),predicate: Int_comparison_exp} - -export interface utility_lineup_progress_aggregate_bool_exp_covar_samp {arguments: utility_lineup_progress_aggregate_bool_exp_covar_samp_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_progress_bool_exp | null),predicate: float8_comparison_exp} - -export interface utility_lineup_progress_aggregate_bool_exp_covar_samp_arguments {X: utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_covar_samp_arguments_columns,Y: utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_covar_samp_arguments_columns} - -export interface utility_lineup_progress_aggregate_bool_exp_max {arguments: utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_max_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_progress_bool_exp | null),predicate: float8_comparison_exp} - -export interface utility_lineup_progress_aggregate_bool_exp_min {arguments: utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_min_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_progress_bool_exp | null),predicate: float8_comparison_exp} - -export interface utility_lineup_progress_aggregate_bool_exp_stddev_samp {arguments: utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_stddev_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_progress_bool_exp | null),predicate: float8_comparison_exp} - -export interface utility_lineup_progress_aggregate_bool_exp_sum {arguments: utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_sum_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_progress_bool_exp | null),predicate: float8_comparison_exp} - -export interface utility_lineup_progress_aggregate_bool_exp_var_samp {arguments: utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_var_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_progress_bool_exp | null),predicate: float8_comparison_exp} - - -/** aggregate fields of "utility_lineup_progress" */ -export interface utility_lineup_progress_aggregate_fieldsGenqlSelection{ - avg?: utility_lineup_progress_avg_fieldsGenqlSelection - count?: { __args: {columns?: (utility_lineup_progress_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: utility_lineup_progress_max_fieldsGenqlSelection - min?: utility_lineup_progress_min_fieldsGenqlSelection - stddev?: utility_lineup_progress_stddev_fieldsGenqlSelection - stddev_pop?: utility_lineup_progress_stddev_pop_fieldsGenqlSelection - stddev_samp?: utility_lineup_progress_stddev_samp_fieldsGenqlSelection - sum?: utility_lineup_progress_sum_fieldsGenqlSelection - var_pop?: utility_lineup_progress_var_pop_fieldsGenqlSelection - var_samp?: utility_lineup_progress_var_samp_fieldsGenqlSelection - variance?: utility_lineup_progress_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "utility_lineup_progress" */ -export interface utility_lineup_progress_aggregate_order_by {avg?: (utility_lineup_progress_avg_order_by | null),count?: (order_by | null),max?: (utility_lineup_progress_max_order_by | null),min?: (utility_lineup_progress_min_order_by | null),stddev?: (utility_lineup_progress_stddev_order_by | null),stddev_pop?: (utility_lineup_progress_stddev_pop_order_by | null),stddev_samp?: (utility_lineup_progress_stddev_samp_order_by | null),sum?: (utility_lineup_progress_sum_order_by | null),var_pop?: (utility_lineup_progress_var_pop_order_by | null),var_samp?: (utility_lineup_progress_var_samp_order_by | null),variance?: (utility_lineup_progress_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "utility_lineup_progress" */ -export interface utility_lineup_progress_arr_rel_insert_input {data: utility_lineup_progress_insert_input[], -/** upsert condition */ -on_conflict?: (utility_lineup_progress_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface utility_lineup_progress_avg_fieldsGenqlSelection{ - attempts?: boolean | number - best_streak?: boolean | number - current_streak?: boolean | number - miss_along_sum?: boolean | number - miss_lateral_sum?: boolean | number - miss_samples?: boolean | number - miss_vertical_sum?: boolean | number - steam_id?: boolean | number - successes?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "utility_lineup_progress" */ -export interface utility_lineup_progress_avg_order_by {attempts?: (order_by | null),best_streak?: (order_by | null),current_streak?: (order_by | null),miss_along_sum?: (order_by | null),miss_lateral_sum?: (order_by | null),miss_samples?: (order_by | null),miss_vertical_sum?: (order_by | null),steam_id?: (order_by | null),successes?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "utility_lineup_progress". All fields are combined with a logical 'AND'. */ -export interface utility_lineup_progress_bool_exp {_and?: (utility_lineup_progress_bool_exp[] | null),_not?: (utility_lineup_progress_bool_exp | null),_or?: (utility_lineup_progress_bool_exp[] | null),attempts?: (Int_comparison_exp | null),best_streak?: (Int_comparison_exp | null),current_streak?: (Int_comparison_exp | null),last_practiced_at?: (timestamptz_comparison_exp | null),mastered_at?: (timestamptz_comparison_exp | null),miss_along_sum?: (float8_comparison_exp | null),miss_lateral_sum?: (float8_comparison_exp | null),miss_samples?: (Int_comparison_exp | null),miss_vertical_sum?: (float8_comparison_exp | null),player?: (players_bool_exp | null),steam_id?: (bigint_comparison_exp | null),successes?: (Int_comparison_exp | null),utility_lineup?: (utility_lineups_bool_exp | null),utility_lineup_id?: (uuid_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "utility_lineup_progress" */ -export interface utility_lineup_progress_inc_input {attempts?: (Scalars['Int'] | null),best_streak?: (Scalars['Int'] | null),current_streak?: (Scalars['Int'] | null),miss_along_sum?: (Scalars['float8'] | null),miss_lateral_sum?: (Scalars['float8'] | null),miss_samples?: (Scalars['Int'] | null),miss_vertical_sum?: (Scalars['float8'] | null),steam_id?: (Scalars['bigint'] | null),successes?: (Scalars['Int'] | null)} - - -/** input type for inserting data into table "utility_lineup_progress" */ -export interface utility_lineup_progress_insert_input {attempts?: (Scalars['Int'] | null),best_streak?: (Scalars['Int'] | null),current_streak?: (Scalars['Int'] | null),last_practiced_at?: (Scalars['timestamptz'] | null),mastered_at?: (Scalars['timestamptz'] | null),miss_along_sum?: (Scalars['float8'] | null),miss_lateral_sum?: (Scalars['float8'] | null),miss_samples?: (Scalars['Int'] | null),miss_vertical_sum?: (Scalars['float8'] | null),player?: (players_obj_rel_insert_input | null),steam_id?: (Scalars['bigint'] | null),successes?: (Scalars['Int'] | null),utility_lineup?: (utility_lineups_obj_rel_insert_input | null),utility_lineup_id?: (Scalars['uuid'] | null)} - - -/** aggregate max on columns */ -export interface utility_lineup_progress_max_fieldsGenqlSelection{ - attempts?: boolean | number - best_streak?: boolean | number - current_streak?: boolean | number - last_practiced_at?: boolean | number - mastered_at?: boolean | number - miss_along_sum?: boolean | number - miss_lateral_sum?: boolean | number - miss_samples?: boolean | number - miss_vertical_sum?: boolean | number - steam_id?: boolean | number - successes?: boolean | number - utility_lineup_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "utility_lineup_progress" */ -export interface utility_lineup_progress_max_order_by {attempts?: (order_by | null),best_streak?: (order_by | null),current_streak?: (order_by | null),last_practiced_at?: (order_by | null),mastered_at?: (order_by | null),miss_along_sum?: (order_by | null),miss_lateral_sum?: (order_by | null),miss_samples?: (order_by | null),miss_vertical_sum?: (order_by | null),steam_id?: (order_by | null),successes?: (order_by | null),utility_lineup_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface utility_lineup_progress_min_fieldsGenqlSelection{ - attempts?: boolean | number - best_streak?: boolean | number - current_streak?: boolean | number - last_practiced_at?: boolean | number - mastered_at?: boolean | number - miss_along_sum?: boolean | number - miss_lateral_sum?: boolean | number - miss_samples?: boolean | number - miss_vertical_sum?: boolean | number - steam_id?: boolean | number - successes?: boolean | number - utility_lineup_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "utility_lineup_progress" */ -export interface utility_lineup_progress_min_order_by {attempts?: (order_by | null),best_streak?: (order_by | null),current_streak?: (order_by | null),last_practiced_at?: (order_by | null),mastered_at?: (order_by | null),miss_along_sum?: (order_by | null),miss_lateral_sum?: (order_by | null),miss_samples?: (order_by | null),miss_vertical_sum?: (order_by | null),steam_id?: (order_by | null),successes?: (order_by | null),utility_lineup_id?: (order_by | null)} - - -/** response of any mutation on the table "utility_lineup_progress" */ -export interface utility_lineup_progress_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: utility_lineup_progressGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "utility_lineup_progress" */ -export interface utility_lineup_progress_on_conflict {constraint: utility_lineup_progress_constraint,update_columns?: utility_lineup_progress_update_column[],where?: (utility_lineup_progress_bool_exp | null)} - - -/** Ordering options when selecting data from "utility_lineup_progress". */ -export interface utility_lineup_progress_order_by {attempts?: (order_by | null),best_streak?: (order_by | null),current_streak?: (order_by | null),last_practiced_at?: (order_by | null),mastered_at?: (order_by | null),miss_along_sum?: (order_by | null),miss_lateral_sum?: (order_by | null),miss_samples?: (order_by | null),miss_vertical_sum?: (order_by | null),player?: (players_order_by | null),steam_id?: (order_by | null),successes?: (order_by | null),utility_lineup?: (utility_lineups_order_by | null),utility_lineup_id?: (order_by | null)} - - -/** primary key columns input for table: utility_lineup_progress */ -export interface utility_lineup_progress_pk_columns_input {steam_id: Scalars['bigint'],utility_lineup_id: Scalars['uuid']} - - -/** input type for updating data in table "utility_lineup_progress" */ -export interface utility_lineup_progress_set_input {attempts?: (Scalars['Int'] | null),best_streak?: (Scalars['Int'] | null),current_streak?: (Scalars['Int'] | null),last_practiced_at?: (Scalars['timestamptz'] | null),mastered_at?: (Scalars['timestamptz'] | null),miss_along_sum?: (Scalars['float8'] | null),miss_lateral_sum?: (Scalars['float8'] | null),miss_samples?: (Scalars['Int'] | null),miss_vertical_sum?: (Scalars['float8'] | null),steam_id?: (Scalars['bigint'] | null),successes?: (Scalars['Int'] | null),utility_lineup_id?: (Scalars['uuid'] | null)} - - -/** aggregate stddev on columns */ -export interface utility_lineup_progress_stddev_fieldsGenqlSelection{ - attempts?: boolean | number - best_streak?: boolean | number - current_streak?: boolean | number - miss_along_sum?: boolean | number - miss_lateral_sum?: boolean | number - miss_samples?: boolean | number - miss_vertical_sum?: boolean | number - steam_id?: boolean | number - successes?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "utility_lineup_progress" */ -export interface utility_lineup_progress_stddev_order_by {attempts?: (order_by | null),best_streak?: (order_by | null),current_streak?: (order_by | null),miss_along_sum?: (order_by | null),miss_lateral_sum?: (order_by | null),miss_samples?: (order_by | null),miss_vertical_sum?: (order_by | null),steam_id?: (order_by | null),successes?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface utility_lineup_progress_stddev_pop_fieldsGenqlSelection{ - attempts?: boolean | number - best_streak?: boolean | number - current_streak?: boolean | number - miss_along_sum?: boolean | number - miss_lateral_sum?: boolean | number - miss_samples?: boolean | number - miss_vertical_sum?: boolean | number - steam_id?: boolean | number - successes?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "utility_lineup_progress" */ -export interface utility_lineup_progress_stddev_pop_order_by {attempts?: (order_by | null),best_streak?: (order_by | null),current_streak?: (order_by | null),miss_along_sum?: (order_by | null),miss_lateral_sum?: (order_by | null),miss_samples?: (order_by | null),miss_vertical_sum?: (order_by | null),steam_id?: (order_by | null),successes?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface utility_lineup_progress_stddev_samp_fieldsGenqlSelection{ - attempts?: boolean | number - best_streak?: boolean | number - current_streak?: boolean | number - miss_along_sum?: boolean | number - miss_lateral_sum?: boolean | number - miss_samples?: boolean | number - miss_vertical_sum?: boolean | number - steam_id?: boolean | number - successes?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "utility_lineup_progress" */ -export interface utility_lineup_progress_stddev_samp_order_by {attempts?: (order_by | null),best_streak?: (order_by | null),current_streak?: (order_by | null),miss_along_sum?: (order_by | null),miss_lateral_sum?: (order_by | null),miss_samples?: (order_by | null),miss_vertical_sum?: (order_by | null),steam_id?: (order_by | null),successes?: (order_by | null)} - - -/** Streaming cursor of the table "utility_lineup_progress" */ -export interface utility_lineup_progress_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: utility_lineup_progress_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface utility_lineup_progress_stream_cursor_value_input {attempts?: (Scalars['Int'] | null),best_streak?: (Scalars['Int'] | null),current_streak?: (Scalars['Int'] | null),last_practiced_at?: (Scalars['timestamptz'] | null),mastered_at?: (Scalars['timestamptz'] | null),miss_along_sum?: (Scalars['float8'] | null),miss_lateral_sum?: (Scalars['float8'] | null),miss_samples?: (Scalars['Int'] | null),miss_vertical_sum?: (Scalars['float8'] | null),steam_id?: (Scalars['bigint'] | null),successes?: (Scalars['Int'] | null),utility_lineup_id?: (Scalars['uuid'] | null)} - - -/** aggregate sum on columns */ -export interface utility_lineup_progress_sum_fieldsGenqlSelection{ - attempts?: boolean | number - best_streak?: boolean | number - current_streak?: boolean | number - miss_along_sum?: boolean | number - miss_lateral_sum?: boolean | number - miss_samples?: boolean | number - miss_vertical_sum?: boolean | number - steam_id?: boolean | number - successes?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "utility_lineup_progress" */ -export interface utility_lineup_progress_sum_order_by {attempts?: (order_by | null),best_streak?: (order_by | null),current_streak?: (order_by | null),miss_along_sum?: (order_by | null),miss_lateral_sum?: (order_by | null),miss_samples?: (order_by | null),miss_vertical_sum?: (order_by | null),steam_id?: (order_by | null),successes?: (order_by | null)} - -export interface utility_lineup_progress_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (utility_lineup_progress_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (utility_lineup_progress_set_input | null), -/** filter the rows which have to be updated */ -where: utility_lineup_progress_bool_exp} - - -/** aggregate var_pop on columns */ -export interface utility_lineup_progress_var_pop_fieldsGenqlSelection{ - attempts?: boolean | number - best_streak?: boolean | number - current_streak?: boolean | number - miss_along_sum?: boolean | number - miss_lateral_sum?: boolean | number - miss_samples?: boolean | number - miss_vertical_sum?: boolean | number - steam_id?: boolean | number - successes?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "utility_lineup_progress" */ -export interface utility_lineup_progress_var_pop_order_by {attempts?: (order_by | null),best_streak?: (order_by | null),current_streak?: (order_by | null),miss_along_sum?: (order_by | null),miss_lateral_sum?: (order_by | null),miss_samples?: (order_by | null),miss_vertical_sum?: (order_by | null),steam_id?: (order_by | null),successes?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface utility_lineup_progress_var_samp_fieldsGenqlSelection{ - attempts?: boolean | number - best_streak?: boolean | number - current_streak?: boolean | number - miss_along_sum?: boolean | number - miss_lateral_sum?: boolean | number - miss_samples?: boolean | number - miss_vertical_sum?: boolean | number - steam_id?: boolean | number - successes?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "utility_lineup_progress" */ -export interface utility_lineup_progress_var_samp_order_by {attempts?: (order_by | null),best_streak?: (order_by | null),current_streak?: (order_by | null),miss_along_sum?: (order_by | null),miss_lateral_sum?: (order_by | null),miss_samples?: (order_by | null),miss_vertical_sum?: (order_by | null),steam_id?: (order_by | null),successes?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface utility_lineup_progress_variance_fieldsGenqlSelection{ - attempts?: boolean | number - best_streak?: boolean | number - current_streak?: boolean | number - miss_along_sum?: boolean | number - miss_lateral_sum?: boolean | number - miss_samples?: boolean | number - miss_vertical_sum?: boolean | number - steam_id?: boolean | number - successes?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "utility_lineup_progress" */ -export interface utility_lineup_progress_variance_order_by {attempts?: (order_by | null),best_streak?: (order_by | null),current_streak?: (order_by | null),miss_along_sum?: (order_by | null),miss_lateral_sum?: (order_by | null),miss_samples?: (order_by | null),miss_vertical_sum?: (order_by | null),steam_id?: (order_by | null),successes?: (order_by | null)} - - -/** columns and relationships of "utility_lineup_renders" */ -export interface utility_lineup_rendersGenqlSelection{ - created_at?: boolean | number - duration_ms?: 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 */ - lineup?: utility_lineupsGenqlSelection - map_name?: boolean | number - paused?: boolean | number - /** An object relationship */ - practice_session?: utility_practice_sessionsGenqlSelection - progress?: boolean | number - /** An object relationship */ - requested_by?: playersGenqlSelection - requested_by_steam_id?: boolean | number - session_token?: boolean | number - skip_reason?: 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 - utility_lineup_id?: boolean | number - utility_practice_session_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "utility_lineup_renders" */ -export interface utility_lineup_renders_aggregateGenqlSelection{ - aggregate?: utility_lineup_renders_aggregate_fieldsGenqlSelection - nodes?: utility_lineup_rendersGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface utility_lineup_renders_aggregate_bool_exp {bool_and?: (utility_lineup_renders_aggregate_bool_exp_bool_and | null),bool_or?: (utility_lineup_renders_aggregate_bool_exp_bool_or | null),count?: (utility_lineup_renders_aggregate_bool_exp_count | null)} - -export interface utility_lineup_renders_aggregate_bool_exp_bool_and {arguments: utility_lineup_renders_select_column_utility_lineup_renders_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_renders_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface utility_lineup_renders_aggregate_bool_exp_bool_or {arguments: utility_lineup_renders_select_column_utility_lineup_renders_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_renders_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface utility_lineup_renders_aggregate_bool_exp_count {arguments?: (utility_lineup_renders_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_renders_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "utility_lineup_renders" */ -export interface utility_lineup_renders_aggregate_fieldsGenqlSelection{ - avg?: utility_lineup_renders_avg_fieldsGenqlSelection - count?: { __args: {columns?: (utility_lineup_renders_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: utility_lineup_renders_max_fieldsGenqlSelection - min?: utility_lineup_renders_min_fieldsGenqlSelection - stddev?: utility_lineup_renders_stddev_fieldsGenqlSelection - stddev_pop?: utility_lineup_renders_stddev_pop_fieldsGenqlSelection - stddev_samp?: utility_lineup_renders_stddev_samp_fieldsGenqlSelection - sum?: utility_lineup_renders_sum_fieldsGenqlSelection - var_pop?: utility_lineup_renders_var_pop_fieldsGenqlSelection - var_samp?: utility_lineup_renders_var_samp_fieldsGenqlSelection - variance?: utility_lineup_renders_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "utility_lineup_renders" */ -export interface utility_lineup_renders_aggregate_order_by {avg?: (utility_lineup_renders_avg_order_by | null),count?: (order_by | null),max?: (utility_lineup_renders_max_order_by | null),min?: (utility_lineup_renders_min_order_by | null),stddev?: (utility_lineup_renders_stddev_order_by | null),stddev_pop?: (utility_lineup_renders_stddev_pop_order_by | null),stddev_samp?: (utility_lineup_renders_stddev_samp_order_by | null),sum?: (utility_lineup_renders_sum_order_by | null),var_pop?: (utility_lineup_renders_var_pop_order_by | null),var_samp?: (utility_lineup_renders_var_samp_order_by | null),variance?: (utility_lineup_renders_variance_order_by | null)} - - -/** append existing jsonb value of filtered columns with new jsonb value */ -export interface utility_lineup_renders_append_input {spec?: (Scalars['jsonb'] | null),status_history?: (Scalars['jsonb'] | null)} - - -/** input type for inserting array relation for remote table "utility_lineup_renders" */ -export interface utility_lineup_renders_arr_rel_insert_input {data: utility_lineup_renders_insert_input[], -/** upsert condition */ -on_conflict?: (utility_lineup_renders_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface utility_lineup_renders_avg_fieldsGenqlSelection{ - duration_ms?: boolean | number - progress?: boolean | number - requested_by_steam_id?: boolean | number - sort_index?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "utility_lineup_renders" */ -export interface utility_lineup_renders_avg_order_by {duration_ms?: (order_by | null),progress?: (order_by | null),requested_by_steam_id?: (order_by | null),sort_index?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "utility_lineup_renders". All fields are combined with a logical 'AND'. */ -export interface utility_lineup_renders_bool_exp {_and?: (utility_lineup_renders_bool_exp[] | null),_not?: (utility_lineup_renders_bool_exp | null),_or?: (utility_lineup_renders_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),duration_ms?: (Int_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),lineup?: (utility_lineups_bool_exp | null),map_name?: (String_comparison_exp | null),paused?: (Boolean_comparison_exp | null),practice_session?: (utility_practice_sessions_bool_exp | null),progress?: (numeric_comparison_exp | null),requested_by?: (players_bool_exp | null),requested_by_steam_id?: (bigint_comparison_exp | null),session_token?: (String_comparison_exp | null),skip_reason?: (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),utility_lineup_id?: (uuid_comparison_exp | null),utility_practice_session_id?: (uuid_comparison_exp | null)} - - -/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ -export interface utility_lineup_renders_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 utility_lineup_renders_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 utility_lineup_renders_delete_key_input {spec?: (Scalars['String'] | null),status_history?: (Scalars['String'] | null)} - - -/** input type for incrementing numeric columns in table "utility_lineup_renders" */ -export interface utility_lineup_renders_inc_input {duration_ms?: (Scalars['Int'] | null),progress?: (Scalars['numeric'] | null),requested_by_steam_id?: (Scalars['bigint'] | null),sort_index?: (Scalars['Int'] | null)} - - -/** input type for inserting data into table "utility_lineup_renders" */ -export interface utility_lineup_renders_insert_input {created_at?: (Scalars['timestamptz'] | null),duration_ms?: (Scalars['Int'] | 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),lineup?: (utility_lineups_obj_rel_insert_input | null),map_name?: (Scalars['String'] | null),paused?: (Scalars['Boolean'] | null),practice_session?: (utility_practice_sessions_obj_rel_insert_input | null),progress?: (Scalars['numeric'] | null),requested_by?: (players_obj_rel_insert_input | null),requested_by_steam_id?: (Scalars['bigint'] | null),session_token?: (Scalars['String'] | null),skip_reason?: (Scalars['String'] | null),sort_index?: (Scalars['Int'] | null),spec?: (Scalars['jsonb'] | null),status?: (Scalars['String'] | null),status_history?: (Scalars['jsonb'] | null),utility_lineup_id?: (Scalars['uuid'] | null),utility_practice_session_id?: (Scalars['uuid'] | null)} - - -/** aggregate max on columns */ -export interface utility_lineup_renders_max_fieldsGenqlSelection{ - created_at?: boolean | number - duration_ms?: 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 - map_name?: boolean | number - progress?: boolean | number - requested_by_steam_id?: boolean | number - session_token?: boolean | number - skip_reason?: boolean | number - sort_index?: boolean | number - status?: boolean | number - utility_lineup_id?: boolean | number - utility_practice_session_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "utility_lineup_renders" */ -export interface utility_lineup_renders_max_order_by {created_at?: (order_by | null),duration_ms?: (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),map_name?: (order_by | null),progress?: (order_by | null),requested_by_steam_id?: (order_by | null),session_token?: (order_by | null),skip_reason?: (order_by | null),sort_index?: (order_by | null),status?: (order_by | null),utility_lineup_id?: (order_by | null),utility_practice_session_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface utility_lineup_renders_min_fieldsGenqlSelection{ - created_at?: boolean | number - duration_ms?: 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 - map_name?: boolean | number - progress?: boolean | number - requested_by_steam_id?: boolean | number - session_token?: boolean | number - skip_reason?: boolean | number - sort_index?: boolean | number - status?: boolean | number - utility_lineup_id?: boolean | number - utility_practice_session_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "utility_lineup_renders" */ -export interface utility_lineup_renders_min_order_by {created_at?: (order_by | null),duration_ms?: (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),map_name?: (order_by | null),progress?: (order_by | null),requested_by_steam_id?: (order_by | null),session_token?: (order_by | null),skip_reason?: (order_by | null),sort_index?: (order_by | null),status?: (order_by | null),utility_lineup_id?: (order_by | null),utility_practice_session_id?: (order_by | null)} - - -/** response of any mutation on the table "utility_lineup_renders" */ -export interface utility_lineup_renders_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: utility_lineup_rendersGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "utility_lineup_renders" */ -export interface utility_lineup_renders_on_conflict {constraint: utility_lineup_renders_constraint,update_columns?: utility_lineup_renders_update_column[],where?: (utility_lineup_renders_bool_exp | null)} - - -/** Ordering options when selecting data from "utility_lineup_renders". */ -export interface utility_lineup_renders_order_by {created_at?: (order_by | null),duration_ms?: (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),lineup?: (utility_lineups_order_by | null),map_name?: (order_by | null),paused?: (order_by | null),practice_session?: (utility_practice_sessions_order_by | null),progress?: (order_by | null),requested_by?: (players_order_by | null),requested_by_steam_id?: (order_by | null),session_token?: (order_by | null),skip_reason?: (order_by | null),sort_index?: (order_by | null),spec?: (order_by | null),status?: (order_by | null),status_history?: (order_by | null),utility_lineup_id?: (order_by | null),utility_practice_session_id?: (order_by | null)} - - -/** primary key columns input for table: utility_lineup_renders */ -export interface utility_lineup_renders_pk_columns_input {id: Scalars['uuid']} - - -/** prepend existing jsonb value of filtered columns with new jsonb value */ -export interface utility_lineup_renders_prepend_input {spec?: (Scalars['jsonb'] | null),status_history?: (Scalars['jsonb'] | null)} - - -/** input type for updating data in table "utility_lineup_renders" */ -export interface utility_lineup_renders_set_input {created_at?: (Scalars['timestamptz'] | null),duration_ms?: (Scalars['Int'] | 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),map_name?: (Scalars['String'] | null),paused?: (Scalars['Boolean'] | null),progress?: (Scalars['numeric'] | null),requested_by_steam_id?: (Scalars['bigint'] | null),session_token?: (Scalars['String'] | null),skip_reason?: (Scalars['String'] | null),sort_index?: (Scalars['Int'] | null),spec?: (Scalars['jsonb'] | null),status?: (Scalars['String'] | null),status_history?: (Scalars['jsonb'] | null),utility_lineup_id?: (Scalars['uuid'] | null),utility_practice_session_id?: (Scalars['uuid'] | null)} - - -/** aggregate stddev on columns */ -export interface utility_lineup_renders_stddev_fieldsGenqlSelection{ - duration_ms?: boolean | number - progress?: boolean | number - requested_by_steam_id?: boolean | number - sort_index?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "utility_lineup_renders" */ -export interface utility_lineup_renders_stddev_order_by {duration_ms?: (order_by | null),progress?: (order_by | null),requested_by_steam_id?: (order_by | null),sort_index?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface utility_lineup_renders_stddev_pop_fieldsGenqlSelection{ - duration_ms?: boolean | number - progress?: boolean | number - requested_by_steam_id?: boolean | number - sort_index?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "utility_lineup_renders" */ -export interface utility_lineup_renders_stddev_pop_order_by {duration_ms?: (order_by | null),progress?: (order_by | null),requested_by_steam_id?: (order_by | null),sort_index?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface utility_lineup_renders_stddev_samp_fieldsGenqlSelection{ - duration_ms?: boolean | number - progress?: boolean | number - requested_by_steam_id?: boolean | number - sort_index?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "utility_lineup_renders" */ -export interface utility_lineup_renders_stddev_samp_order_by {duration_ms?: (order_by | null),progress?: (order_by | null),requested_by_steam_id?: (order_by | null),sort_index?: (order_by | null)} - - -/** Streaming cursor of the table "utility_lineup_renders" */ -export interface utility_lineup_renders_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: utility_lineup_renders_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface utility_lineup_renders_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),duration_ms?: (Scalars['Int'] | 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),map_name?: (Scalars['String'] | null),paused?: (Scalars['Boolean'] | null),progress?: (Scalars['numeric'] | null),requested_by_steam_id?: (Scalars['bigint'] | null),session_token?: (Scalars['String'] | null),skip_reason?: (Scalars['String'] | null),sort_index?: (Scalars['Int'] | null),spec?: (Scalars['jsonb'] | null),status?: (Scalars['String'] | null),status_history?: (Scalars['jsonb'] | null),utility_lineup_id?: (Scalars['uuid'] | null),utility_practice_session_id?: (Scalars['uuid'] | null)} - - -/** aggregate sum on columns */ -export interface utility_lineup_renders_sum_fieldsGenqlSelection{ - duration_ms?: boolean | number - progress?: boolean | number - requested_by_steam_id?: boolean | number - sort_index?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "utility_lineup_renders" */ -export interface utility_lineup_renders_sum_order_by {duration_ms?: (order_by | null),progress?: (order_by | null),requested_by_steam_id?: (order_by | null),sort_index?: (order_by | null)} - -export interface utility_lineup_renders_updates { -/** append existing jsonb value of filtered columns with new jsonb value */ -_append?: (utility_lineup_renders_append_input | null), -/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ -_delete_at_path?: (utility_lineup_renders_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?: (utility_lineup_renders_delete_elem_input | null), -/** delete key/value pair or string element. key/value pairs are matched based on their key value */ -_delete_key?: (utility_lineup_renders_delete_key_input | null), -/** increments the numeric columns with given value of the filtered values */ -_inc?: (utility_lineup_renders_inc_input | null), -/** prepend existing jsonb value of filtered columns with new jsonb value */ -_prepend?: (utility_lineup_renders_prepend_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (utility_lineup_renders_set_input | null), -/** filter the rows which have to be updated */ -where: utility_lineup_renders_bool_exp} - - -/** aggregate var_pop on columns */ -export interface utility_lineup_renders_var_pop_fieldsGenqlSelection{ - duration_ms?: boolean | number - progress?: boolean | number - requested_by_steam_id?: boolean | number - sort_index?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "utility_lineup_renders" */ -export interface utility_lineup_renders_var_pop_order_by {duration_ms?: (order_by | null),progress?: (order_by | null),requested_by_steam_id?: (order_by | null),sort_index?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface utility_lineup_renders_var_samp_fieldsGenqlSelection{ - duration_ms?: boolean | number - progress?: boolean | number - requested_by_steam_id?: boolean | number - sort_index?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "utility_lineup_renders" */ -export interface utility_lineup_renders_var_samp_order_by {duration_ms?: (order_by | null),progress?: (order_by | null),requested_by_steam_id?: (order_by | null),sort_index?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface utility_lineup_renders_variance_fieldsGenqlSelection{ - duration_ms?: boolean | number - progress?: boolean | number - requested_by_steam_id?: boolean | number - sort_index?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "utility_lineup_renders" */ -export interface utility_lineup_renders_variance_order_by {duration_ms?: (order_by | null),progress?: (order_by | null),requested_by_steam_id?: (order_by | null),sort_index?: (order_by | null)} - - -/** columns and relationships of "utility_lineup_repairs" */ -export interface utility_lineup_repairsGenqlSelection{ - created_at?: boolean | number - drift_distance?: boolean | number - expires_at?: boolean | number - id?: boolean | number - repaired_at?: boolean | number - /** An object relationship */ - repaired_utility_lineup?: utility_lineupsGenqlSelection - repaired_utility_lineup_id?: boolean | number - /** An object relationship */ - requested_by?: playersGenqlSelection - requested_by_steam_id?: boolean | number - status?: boolean | number - /** An object relationship */ - utility_drift_scan?: utility_drift_scansGenqlSelection - utility_drift_scan_id?: boolean | number - /** An object relationship */ - utility_lineup?: utility_lineupsGenqlSelection - utility_lineup_id?: boolean | number - /** An object relationship */ - utility_practice_session?: utility_practice_sessionsGenqlSelection - utility_practice_session_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "utility_lineup_repairs" */ -export interface utility_lineup_repairs_aggregateGenqlSelection{ - aggregate?: utility_lineup_repairs_aggregate_fieldsGenqlSelection - nodes?: utility_lineup_repairsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface utility_lineup_repairs_aggregate_bool_exp {avg?: (utility_lineup_repairs_aggregate_bool_exp_avg | null),corr?: (utility_lineup_repairs_aggregate_bool_exp_corr | null),count?: (utility_lineup_repairs_aggregate_bool_exp_count | null),covar_samp?: (utility_lineup_repairs_aggregate_bool_exp_covar_samp | null),max?: (utility_lineup_repairs_aggregate_bool_exp_max | null),min?: (utility_lineup_repairs_aggregate_bool_exp_min | null),stddev_samp?: (utility_lineup_repairs_aggregate_bool_exp_stddev_samp | null),sum?: (utility_lineup_repairs_aggregate_bool_exp_sum | null),var_samp?: (utility_lineup_repairs_aggregate_bool_exp_var_samp | null)} - -export interface utility_lineup_repairs_aggregate_bool_exp_avg {arguments: utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_avg_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_repairs_bool_exp | null),predicate: float8_comparison_exp} - -export interface utility_lineup_repairs_aggregate_bool_exp_corr {arguments: utility_lineup_repairs_aggregate_bool_exp_corr_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_repairs_bool_exp | null),predicate: float8_comparison_exp} - -export interface utility_lineup_repairs_aggregate_bool_exp_corr_arguments {X: utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_corr_arguments_columns,Y: utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_corr_arguments_columns} - -export interface utility_lineup_repairs_aggregate_bool_exp_count {arguments?: (utility_lineup_repairs_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_repairs_bool_exp | null),predicate: Int_comparison_exp} - -export interface utility_lineup_repairs_aggregate_bool_exp_covar_samp {arguments: utility_lineup_repairs_aggregate_bool_exp_covar_samp_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_repairs_bool_exp | null),predicate: float8_comparison_exp} - -export interface utility_lineup_repairs_aggregate_bool_exp_covar_samp_arguments {X: utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_covar_samp_arguments_columns,Y: utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_covar_samp_arguments_columns} - -export interface utility_lineup_repairs_aggregate_bool_exp_max {arguments: utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_max_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_repairs_bool_exp | null),predicate: float8_comparison_exp} - -export interface utility_lineup_repairs_aggregate_bool_exp_min {arguments: utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_min_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_repairs_bool_exp | null),predicate: float8_comparison_exp} - -export interface utility_lineup_repairs_aggregate_bool_exp_stddev_samp {arguments: utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_stddev_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_repairs_bool_exp | null),predicate: float8_comparison_exp} - -export interface utility_lineup_repairs_aggregate_bool_exp_sum {arguments: utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_sum_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_repairs_bool_exp | null),predicate: float8_comparison_exp} - -export interface utility_lineup_repairs_aggregate_bool_exp_var_samp {arguments: utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_var_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_repairs_bool_exp | null),predicate: float8_comparison_exp} - - -/** aggregate fields of "utility_lineup_repairs" */ -export interface utility_lineup_repairs_aggregate_fieldsGenqlSelection{ - avg?: utility_lineup_repairs_avg_fieldsGenqlSelection - count?: { __args: {columns?: (utility_lineup_repairs_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: utility_lineup_repairs_max_fieldsGenqlSelection - min?: utility_lineup_repairs_min_fieldsGenqlSelection - stddev?: utility_lineup_repairs_stddev_fieldsGenqlSelection - stddev_pop?: utility_lineup_repairs_stddev_pop_fieldsGenqlSelection - stddev_samp?: utility_lineup_repairs_stddev_samp_fieldsGenqlSelection - sum?: utility_lineup_repairs_sum_fieldsGenqlSelection - var_pop?: utility_lineup_repairs_var_pop_fieldsGenqlSelection - var_samp?: utility_lineup_repairs_var_samp_fieldsGenqlSelection - variance?: utility_lineup_repairs_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "utility_lineup_repairs" */ -export interface utility_lineup_repairs_aggregate_order_by {avg?: (utility_lineup_repairs_avg_order_by | null),count?: (order_by | null),max?: (utility_lineup_repairs_max_order_by | null),min?: (utility_lineup_repairs_min_order_by | null),stddev?: (utility_lineup_repairs_stddev_order_by | null),stddev_pop?: (utility_lineup_repairs_stddev_pop_order_by | null),stddev_samp?: (utility_lineup_repairs_stddev_samp_order_by | null),sum?: (utility_lineup_repairs_sum_order_by | null),var_pop?: (utility_lineup_repairs_var_pop_order_by | null),var_samp?: (utility_lineup_repairs_var_samp_order_by | null),variance?: (utility_lineup_repairs_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "utility_lineup_repairs" */ -export interface utility_lineup_repairs_arr_rel_insert_input {data: utility_lineup_repairs_insert_input[], -/** upsert condition */ -on_conflict?: (utility_lineup_repairs_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface utility_lineup_repairs_avg_fieldsGenqlSelection{ - drift_distance?: boolean | number - requested_by_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "utility_lineup_repairs" */ -export interface utility_lineup_repairs_avg_order_by {drift_distance?: (order_by | null),requested_by_steam_id?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "utility_lineup_repairs". All fields are combined with a logical 'AND'. */ -export interface utility_lineup_repairs_bool_exp {_and?: (utility_lineup_repairs_bool_exp[] | null),_not?: (utility_lineup_repairs_bool_exp | null),_or?: (utility_lineup_repairs_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),drift_distance?: (float8_comparison_exp | null),expires_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),repaired_at?: (timestamptz_comparison_exp | null),repaired_utility_lineup?: (utility_lineups_bool_exp | null),repaired_utility_lineup_id?: (uuid_comparison_exp | null),requested_by?: (players_bool_exp | null),requested_by_steam_id?: (bigint_comparison_exp | null),status?: (String_comparison_exp | null),utility_drift_scan?: (utility_drift_scans_bool_exp | null),utility_drift_scan_id?: (uuid_comparison_exp | null),utility_lineup?: (utility_lineups_bool_exp | null),utility_lineup_id?: (uuid_comparison_exp | null),utility_practice_session?: (utility_practice_sessions_bool_exp | null),utility_practice_session_id?: (uuid_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "utility_lineup_repairs" */ -export interface utility_lineup_repairs_inc_input {drift_distance?: (Scalars['float8'] | null),requested_by_steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "utility_lineup_repairs" */ -export interface utility_lineup_repairs_insert_input {created_at?: (Scalars['timestamptz'] | null),drift_distance?: (Scalars['float8'] | null),expires_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),repaired_at?: (Scalars['timestamptz'] | null),repaired_utility_lineup?: (utility_lineups_obj_rel_insert_input | null),repaired_utility_lineup_id?: (Scalars['uuid'] | null),requested_by?: (players_obj_rel_insert_input | null),requested_by_steam_id?: (Scalars['bigint'] | null),status?: (Scalars['String'] | null),utility_drift_scan?: (utility_drift_scans_obj_rel_insert_input | null),utility_drift_scan_id?: (Scalars['uuid'] | null),utility_lineup?: (utility_lineups_obj_rel_insert_input | null),utility_lineup_id?: (Scalars['uuid'] | null),utility_practice_session?: (utility_practice_sessions_obj_rel_insert_input | null),utility_practice_session_id?: (Scalars['uuid'] | null)} - - -/** aggregate max on columns */ -export interface utility_lineup_repairs_max_fieldsGenqlSelection{ - created_at?: boolean | number - drift_distance?: boolean | number - expires_at?: boolean | number - id?: boolean | number - repaired_at?: boolean | number - repaired_utility_lineup_id?: boolean | number - requested_by_steam_id?: boolean | number - status?: boolean | number - utility_drift_scan_id?: boolean | number - utility_lineup_id?: boolean | number - utility_practice_session_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "utility_lineup_repairs" */ -export interface utility_lineup_repairs_max_order_by {created_at?: (order_by | null),drift_distance?: (order_by | null),expires_at?: (order_by | null),id?: (order_by | null),repaired_at?: (order_by | null),repaired_utility_lineup_id?: (order_by | null),requested_by_steam_id?: (order_by | null),status?: (order_by | null),utility_drift_scan_id?: (order_by | null),utility_lineup_id?: (order_by | null),utility_practice_session_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface utility_lineup_repairs_min_fieldsGenqlSelection{ - created_at?: boolean | number - drift_distance?: boolean | number - expires_at?: boolean | number - id?: boolean | number - repaired_at?: boolean | number - repaired_utility_lineup_id?: boolean | number - requested_by_steam_id?: boolean | number - status?: boolean | number - utility_drift_scan_id?: boolean | number - utility_lineup_id?: boolean | number - utility_practice_session_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "utility_lineup_repairs" */ -export interface utility_lineup_repairs_min_order_by {created_at?: (order_by | null),drift_distance?: (order_by | null),expires_at?: (order_by | null),id?: (order_by | null),repaired_at?: (order_by | null),repaired_utility_lineup_id?: (order_by | null),requested_by_steam_id?: (order_by | null),status?: (order_by | null),utility_drift_scan_id?: (order_by | null),utility_lineup_id?: (order_by | null),utility_practice_session_id?: (order_by | null)} - - -/** response of any mutation on the table "utility_lineup_repairs" */ -export interface utility_lineup_repairs_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: utility_lineup_repairsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "utility_lineup_repairs" */ -export interface utility_lineup_repairs_on_conflict {constraint: utility_lineup_repairs_constraint,update_columns?: utility_lineup_repairs_update_column[],where?: (utility_lineup_repairs_bool_exp | null)} - - -/** Ordering options when selecting data from "utility_lineup_repairs". */ -export interface utility_lineup_repairs_order_by {created_at?: (order_by | null),drift_distance?: (order_by | null),expires_at?: (order_by | null),id?: (order_by | null),repaired_at?: (order_by | null),repaired_utility_lineup?: (utility_lineups_order_by | null),repaired_utility_lineup_id?: (order_by | null),requested_by?: (players_order_by | null),requested_by_steam_id?: (order_by | null),status?: (order_by | null),utility_drift_scan?: (utility_drift_scans_order_by | null),utility_drift_scan_id?: (order_by | null),utility_lineup?: (utility_lineups_order_by | null),utility_lineup_id?: (order_by | null),utility_practice_session?: (utility_practice_sessions_order_by | null),utility_practice_session_id?: (order_by | null)} - - -/** primary key columns input for table: utility_lineup_repairs */ -export interface utility_lineup_repairs_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "utility_lineup_repairs" */ -export interface utility_lineup_repairs_set_input {created_at?: (Scalars['timestamptz'] | null),drift_distance?: (Scalars['float8'] | null),expires_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),repaired_at?: (Scalars['timestamptz'] | null),repaired_utility_lineup_id?: (Scalars['uuid'] | null),requested_by_steam_id?: (Scalars['bigint'] | null),status?: (Scalars['String'] | null),utility_drift_scan_id?: (Scalars['uuid'] | null),utility_lineup_id?: (Scalars['uuid'] | null),utility_practice_session_id?: (Scalars['uuid'] | null)} - - -/** aggregate stddev on columns */ -export interface utility_lineup_repairs_stddev_fieldsGenqlSelection{ - drift_distance?: boolean | number - requested_by_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "utility_lineup_repairs" */ -export interface utility_lineup_repairs_stddev_order_by {drift_distance?: (order_by | null),requested_by_steam_id?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface utility_lineup_repairs_stddev_pop_fieldsGenqlSelection{ - drift_distance?: boolean | number - requested_by_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "utility_lineup_repairs" */ -export interface utility_lineup_repairs_stddev_pop_order_by {drift_distance?: (order_by | null),requested_by_steam_id?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface utility_lineup_repairs_stddev_samp_fieldsGenqlSelection{ - drift_distance?: boolean | number - requested_by_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "utility_lineup_repairs" */ -export interface utility_lineup_repairs_stddev_samp_order_by {drift_distance?: (order_by | null),requested_by_steam_id?: (order_by | null)} - - -/** Streaming cursor of the table "utility_lineup_repairs" */ -export interface utility_lineup_repairs_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: utility_lineup_repairs_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface utility_lineup_repairs_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),drift_distance?: (Scalars['float8'] | null),expires_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),repaired_at?: (Scalars['timestamptz'] | null),repaired_utility_lineup_id?: (Scalars['uuid'] | null),requested_by_steam_id?: (Scalars['bigint'] | null),status?: (Scalars['String'] | null),utility_drift_scan_id?: (Scalars['uuid'] | null),utility_lineup_id?: (Scalars['uuid'] | null),utility_practice_session_id?: (Scalars['uuid'] | null)} - - -/** aggregate sum on columns */ -export interface utility_lineup_repairs_sum_fieldsGenqlSelection{ - drift_distance?: boolean | number - requested_by_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "utility_lineup_repairs" */ -export interface utility_lineup_repairs_sum_order_by {drift_distance?: (order_by | null),requested_by_steam_id?: (order_by | null)} - -export interface utility_lineup_repairs_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (utility_lineup_repairs_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (utility_lineup_repairs_set_input | null), -/** filter the rows which have to be updated */ -where: utility_lineup_repairs_bool_exp} - - -/** aggregate var_pop on columns */ -export interface utility_lineup_repairs_var_pop_fieldsGenqlSelection{ - drift_distance?: boolean | number - requested_by_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "utility_lineup_repairs" */ -export interface utility_lineup_repairs_var_pop_order_by {drift_distance?: (order_by | null),requested_by_steam_id?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface utility_lineup_repairs_var_samp_fieldsGenqlSelection{ - drift_distance?: boolean | number - requested_by_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "utility_lineup_repairs" */ -export interface utility_lineup_repairs_var_samp_order_by {drift_distance?: (order_by | null),requested_by_steam_id?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface utility_lineup_repairs_variance_fieldsGenqlSelection{ - drift_distance?: boolean | number - requested_by_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "utility_lineup_repairs" */ -export interface utility_lineup_repairs_variance_order_by {drift_distance?: (order_by | null),requested_by_steam_id?: (order_by | null)} - - -/** columns and relationships of "utility_lineup_votes" */ -export interface utility_lineup_votesGenqlSelection{ - created_at?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - steam_id?: boolean | number - /** An object relationship */ - utility_lineup?: utility_lineupsGenqlSelection - utility_lineup_id?: boolean | number - vote?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "utility_lineup_votes" */ -export interface utility_lineup_votes_aggregateGenqlSelection{ - aggregate?: utility_lineup_votes_aggregate_fieldsGenqlSelection - nodes?: utility_lineup_votesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface utility_lineup_votes_aggregate_bool_exp {count?: (utility_lineup_votes_aggregate_bool_exp_count | null)} - -export interface utility_lineup_votes_aggregate_bool_exp_count {arguments?: (utility_lineup_votes_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_votes_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "utility_lineup_votes" */ -export interface utility_lineup_votes_aggregate_fieldsGenqlSelection{ - avg?: utility_lineup_votes_avg_fieldsGenqlSelection - count?: { __args: {columns?: (utility_lineup_votes_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: utility_lineup_votes_max_fieldsGenqlSelection - min?: utility_lineup_votes_min_fieldsGenqlSelection - stddev?: utility_lineup_votes_stddev_fieldsGenqlSelection - stddev_pop?: utility_lineup_votes_stddev_pop_fieldsGenqlSelection - stddev_samp?: utility_lineup_votes_stddev_samp_fieldsGenqlSelection - sum?: utility_lineup_votes_sum_fieldsGenqlSelection - var_pop?: utility_lineup_votes_var_pop_fieldsGenqlSelection - var_samp?: utility_lineup_votes_var_samp_fieldsGenqlSelection - variance?: utility_lineup_votes_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "utility_lineup_votes" */ -export interface utility_lineup_votes_aggregate_order_by {avg?: (utility_lineup_votes_avg_order_by | null),count?: (order_by | null),max?: (utility_lineup_votes_max_order_by | null),min?: (utility_lineup_votes_min_order_by | null),stddev?: (utility_lineup_votes_stddev_order_by | null),stddev_pop?: (utility_lineup_votes_stddev_pop_order_by | null),stddev_samp?: (utility_lineup_votes_stddev_samp_order_by | null),sum?: (utility_lineup_votes_sum_order_by | null),var_pop?: (utility_lineup_votes_var_pop_order_by | null),var_samp?: (utility_lineup_votes_var_samp_order_by | null),variance?: (utility_lineup_votes_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "utility_lineup_votes" */ -export interface utility_lineup_votes_arr_rel_insert_input {data: utility_lineup_votes_insert_input[], -/** upsert condition */ -on_conflict?: (utility_lineup_votes_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface utility_lineup_votes_avg_fieldsGenqlSelection{ - steam_id?: boolean | number - vote?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "utility_lineup_votes" */ -export interface utility_lineup_votes_avg_order_by {steam_id?: (order_by | null),vote?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "utility_lineup_votes". All fields are combined with a logical 'AND'. */ -export interface utility_lineup_votes_bool_exp {_and?: (utility_lineup_votes_bool_exp[] | null),_not?: (utility_lineup_votes_bool_exp | null),_or?: (utility_lineup_votes_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),player?: (players_bool_exp | null),steam_id?: (bigint_comparison_exp | null),utility_lineup?: (utility_lineups_bool_exp | null),utility_lineup_id?: (uuid_comparison_exp | null),vote?: (smallint_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "utility_lineup_votes" */ -export interface utility_lineup_votes_inc_input {steam_id?: (Scalars['bigint'] | null),vote?: (Scalars['smallint'] | null)} - - -/** input type for inserting data into table "utility_lineup_votes" */ -export interface utility_lineup_votes_insert_input {created_at?: (Scalars['timestamptz'] | null),player?: (players_obj_rel_insert_input | null),steam_id?: (Scalars['bigint'] | null),utility_lineup?: (utility_lineups_obj_rel_insert_input | null),utility_lineup_id?: (Scalars['uuid'] | null),vote?: (Scalars['smallint'] | null)} - - -/** aggregate max on columns */ -export interface utility_lineup_votes_max_fieldsGenqlSelection{ - created_at?: boolean | number - steam_id?: boolean | number - utility_lineup_id?: boolean | number - vote?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "utility_lineup_votes" */ -export interface utility_lineup_votes_max_order_by {created_at?: (order_by | null),steam_id?: (order_by | null),utility_lineup_id?: (order_by | null),vote?: (order_by | null)} - - -/** aggregate min on columns */ -export interface utility_lineup_votes_min_fieldsGenqlSelection{ - created_at?: boolean | number - steam_id?: boolean | number - utility_lineup_id?: boolean | number - vote?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "utility_lineup_votes" */ -export interface utility_lineup_votes_min_order_by {created_at?: (order_by | null),steam_id?: (order_by | null),utility_lineup_id?: (order_by | null),vote?: (order_by | null)} - - -/** response of any mutation on the table "utility_lineup_votes" */ -export interface utility_lineup_votes_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: utility_lineup_votesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "utility_lineup_votes" */ -export interface utility_lineup_votes_on_conflict {constraint: utility_lineup_votes_constraint,update_columns?: utility_lineup_votes_update_column[],where?: (utility_lineup_votes_bool_exp | null)} - - -/** Ordering options when selecting data from "utility_lineup_votes". */ -export interface utility_lineup_votes_order_by {created_at?: (order_by | null),player?: (players_order_by | null),steam_id?: (order_by | null),utility_lineup?: (utility_lineups_order_by | null),utility_lineup_id?: (order_by | null),vote?: (order_by | null)} - - -/** primary key columns input for table: utility_lineup_votes */ -export interface utility_lineup_votes_pk_columns_input {steam_id: Scalars['bigint'],utility_lineup_id: Scalars['uuid']} - - -/** input type for updating data in table "utility_lineup_votes" */ -export interface utility_lineup_votes_set_input {created_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),utility_lineup_id?: (Scalars['uuid'] | null),vote?: (Scalars['smallint'] | null)} - - -/** aggregate stddev on columns */ -export interface utility_lineup_votes_stddev_fieldsGenqlSelection{ - steam_id?: boolean | number - vote?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "utility_lineup_votes" */ -export interface utility_lineup_votes_stddev_order_by {steam_id?: (order_by | null),vote?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface utility_lineup_votes_stddev_pop_fieldsGenqlSelection{ - steam_id?: boolean | number - vote?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "utility_lineup_votes" */ -export interface utility_lineup_votes_stddev_pop_order_by {steam_id?: (order_by | null),vote?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface utility_lineup_votes_stddev_samp_fieldsGenqlSelection{ - steam_id?: boolean | number - vote?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "utility_lineup_votes" */ -export interface utility_lineup_votes_stddev_samp_order_by {steam_id?: (order_by | null),vote?: (order_by | null)} - - -/** Streaming cursor of the table "utility_lineup_votes" */ -export interface utility_lineup_votes_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: utility_lineup_votes_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface utility_lineup_votes_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),utility_lineup_id?: (Scalars['uuid'] | null),vote?: (Scalars['smallint'] | null)} - - -/** aggregate sum on columns */ -export interface utility_lineup_votes_sum_fieldsGenqlSelection{ - steam_id?: boolean | number - vote?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "utility_lineup_votes" */ -export interface utility_lineup_votes_sum_order_by {steam_id?: (order_by | null),vote?: (order_by | null)} - -export interface utility_lineup_votes_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (utility_lineup_votes_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (utility_lineup_votes_set_input | null), -/** filter the rows which have to be updated */ -where: utility_lineup_votes_bool_exp} - - -/** aggregate var_pop on columns */ -export interface utility_lineup_votes_var_pop_fieldsGenqlSelection{ - steam_id?: boolean | number - vote?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "utility_lineup_votes" */ -export interface utility_lineup_votes_var_pop_order_by {steam_id?: (order_by | null),vote?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface utility_lineup_votes_var_samp_fieldsGenqlSelection{ - steam_id?: boolean | number - vote?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "utility_lineup_votes" */ -export interface utility_lineup_votes_var_samp_order_by {steam_id?: (order_by | null),vote?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface utility_lineup_votes_variance_fieldsGenqlSelection{ - steam_id?: boolean | number - vote?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "utility_lineup_votes" */ -export interface utility_lineup_votes_variance_order_by {steam_id?: (order_by | null),vote?: (order_by | null)} - - -/** columns and relationships of "utility_lineups" */ -export interface utility_lineupsGenqlSelection{ - aim_tolerance?: boolean | number - archived_at?: boolean | number - /** An object relationship */ - author?: playersGenqlSelection - author_steam_id?: boolean | number - /** A computed field, executes function "can_edit_utility_lineup" */ - can_edit?: boolean | number - /** A computed field, executes function "can_view_utility_lineup" */ - can_view?: boolean | number - /** An array relationship */ - collection_items?: (utility_collection_itemsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_collection_items_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_collection_items_order_by[] | null), - /** filter the rows returned */ - where?: (utility_collection_items_bool_exp | null)} }) - /** An aggregate relationship */ - collection_items_aggregate?: (utility_collection_items_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_collection_items_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_collection_items_order_by[] | null), - /** filter the rows returned */ - where?: (utility_collection_items_bool_exp | null)} }) - confidence?: boolean | number - created_at?: boolean | number - description?: boolean | number - /** A computed field, executes function "utility_lineup_difficulty" */ - difficulty?: boolean | number - downvotes?: boolean | number - external_id?: boolean | number - eye_z?: boolean | number - /** An array relationship */ - favorited_by?: (utility_lineup_favoritesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_lineup_favorites_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_lineup_favorites_order_by[] | null), - /** filter the rows returned */ - where?: (utility_lineup_favorites_bool_exp | null)} }) - /** An aggregate relationship */ - favorited_by_aggregate?: (utility_lineup_favorites_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_lineup_favorites_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_lineup_favorites_order_by[] | null), - /** filter the rows returned */ - where?: (utility_lineup_favorites_bool_exp | null)} }) - favorites?: boolean | number - flight_time_ms?: boolean | number - /** An object relationship */ - forked_from?: utility_lineupsGenqlSelection - forked_from_utility_lineup_id?: boolean | number - id?: boolean | number - initial_pos_x?: boolean | number - initial_pos_y?: boolean | number - initial_pos_z?: boolean | number - initial_vel_x?: boolean | number - initial_vel_y?: boolean | number - initial_vel_z?: boolean | number - /** A computed field, executes function "utility_lineup_is_favorited" */ - is_favorited?: boolean | number - jump_throw_bind?: boolean | number - land_x?: boolean | number - land_y?: boolean | number - land_z?: boolean | number - lineup_bucket?: boolean | number - map_name?: boolean | number - /** A computed field, executes function "utility_lineup_my_vote" */ - my_vote?: boolean | number - name?: boolean | number - origin_source?: boolean | number - origin_x?: boolean | number - origin_y?: boolean | number - origin_z?: boolean | number - practice_attempts?: boolean | number - practice_players?: boolean | number - practice_successes?: boolean | number - preview_duration_ms?: boolean | number - preview_file?: boolean | number - preview_rendered_at?: boolean | number - preview_thumbnail?: boolean | number - /** A computed field, executes function "utility_lineup_preview_thumbnail_url" */ - preview_thumbnail_url?: boolean | number - /** A computed field, executes function "utility_lineup_preview_url" */ - preview_url?: boolean | number - /** An array relationship */ - progress?: (utility_lineup_progressGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_lineup_progress_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_lineup_progress_order_by[] | null), - /** filter the rows returned */ - where?: (utility_lineup_progress_bool_exp | null)} }) - /** An aggregate relationship */ - progress_aggregate?: (utility_lineup_progress_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_lineup_progress_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_lineup_progress_order_by[] | null), - /** filter the rows returned */ - where?: (utility_lineup_progress_bool_exp | null)} }) - public_requested_at?: boolean | number - public_review_note?: boolean | number - public_reviewed_at?: boolean | number - public_reviewed_by?: boolean | number - /** An array relationship */ - renders?: (utility_lineup_rendersGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_lineup_renders_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_lineup_renders_order_by[] | null), - /** filter the rows returned */ - where?: (utility_lineup_renders_bool_exp | null)} }) - /** An aggregate relationship */ - renders_aggregate?: (utility_lineup_renders_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_lineup_renders_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_lineup_renders_order_by[] | null), - /** filter the rows returned */ - where?: (utility_lineup_renders_bool_exp | null)} }) - /** An array relationship */ - repairs?: (utility_lineup_repairsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_lineup_repairs_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_lineup_repairs_order_by[] | null), - /** filter the rows returned */ - where?: (utility_lineup_repairs_bool_exp | null)} }) - /** An aggregate relationship */ - repairs_aggregate?: (utility_lineup_repairs_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_lineup_repairs_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_lineup_repairs_order_by[] | null), - /** filter the rows returned */ - where?: (utility_lineup_repairs_bool_exp | null)} }) - side?: boolean | number - source_grenade_id?: boolean | number - /** An object relationship */ - source_match?: matchesGenqlSelection - source_match_id?: boolean | number - /** An object relationship */ - source_match_map?: match_mapsGenqlSelection - source_match_map_id?: boolean | number - source_url?: boolean | number - tags?: boolean | number - /** An object relationship */ - team?: teamsGenqlSelection - team_id?: boolean | number - technique?: boolean | number - throw_strength?: boolean | number - trajectory_file?: boolean | number - trajectory_preview?: { __args: { - /** JSON select path */ - path?: (Scalars['String'] | null)} } | boolean | number - trajectory_size?: boolean | number - updated_at?: boolean | number - upvotes?: boolean | number - utility_type?: boolean | number - verified_at?: boolean | number - view_pitch?: boolean | number - view_pitch_delta?: boolean | number - view_yaw?: boolean | number - view_yaw_delta?: boolean | number - visibility?: boolean | number - /** An array relationship */ - votes?: (utility_lineup_votesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_lineup_votes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_lineup_votes_order_by[] | null), - /** filter the rows returned */ - where?: (utility_lineup_votes_bool_exp | null)} }) - /** An aggregate relationship */ - votes_aggregate?: (utility_lineup_votes_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_lineup_votes_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_lineup_votes_order_by[] | null), - /** filter the rows returned */ - where?: (utility_lineup_votes_bool_exp | null)} }) - workshop_map_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "utility_lineups" */ -export interface utility_lineups_aggregateGenqlSelection{ - aggregate?: utility_lineups_aggregate_fieldsGenqlSelection - nodes?: utility_lineupsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface utility_lineups_aggregate_bool_exp {avg?: (utility_lineups_aggregate_bool_exp_avg | null),bool_and?: (utility_lineups_aggregate_bool_exp_bool_and | null),bool_or?: (utility_lineups_aggregate_bool_exp_bool_or | null),corr?: (utility_lineups_aggregate_bool_exp_corr | null),count?: (utility_lineups_aggregate_bool_exp_count | null),covar_samp?: (utility_lineups_aggregate_bool_exp_covar_samp | null),max?: (utility_lineups_aggregate_bool_exp_max | null),min?: (utility_lineups_aggregate_bool_exp_min | null),stddev_samp?: (utility_lineups_aggregate_bool_exp_stddev_samp | null),sum?: (utility_lineups_aggregate_bool_exp_sum | null),var_samp?: (utility_lineups_aggregate_bool_exp_var_samp | null)} - -export interface utility_lineups_aggregate_bool_exp_avg {arguments: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_avg_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineups_bool_exp | null),predicate: float8_comparison_exp} - -export interface utility_lineups_aggregate_bool_exp_bool_and {arguments: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineups_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface utility_lineups_aggregate_bool_exp_bool_or {arguments: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineups_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface utility_lineups_aggregate_bool_exp_corr {arguments: utility_lineups_aggregate_bool_exp_corr_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineups_bool_exp | null),predicate: float8_comparison_exp} - -export interface utility_lineups_aggregate_bool_exp_corr_arguments {X: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_corr_arguments_columns,Y: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_corr_arguments_columns} - -export interface utility_lineups_aggregate_bool_exp_count {arguments?: (utility_lineups_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineups_bool_exp | null),predicate: Int_comparison_exp} - -export interface utility_lineups_aggregate_bool_exp_covar_samp {arguments: utility_lineups_aggregate_bool_exp_covar_samp_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineups_bool_exp | null),predicate: float8_comparison_exp} - -export interface utility_lineups_aggregate_bool_exp_covar_samp_arguments {X: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_covar_samp_arguments_columns,Y: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_covar_samp_arguments_columns} - -export interface utility_lineups_aggregate_bool_exp_max {arguments: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_max_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineups_bool_exp | null),predicate: float8_comparison_exp} - -export interface utility_lineups_aggregate_bool_exp_min {arguments: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_min_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineups_bool_exp | null),predicate: float8_comparison_exp} - -export interface utility_lineups_aggregate_bool_exp_stddev_samp {arguments: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_stddev_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineups_bool_exp | null),predicate: float8_comparison_exp} - -export interface utility_lineups_aggregate_bool_exp_sum {arguments: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_sum_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineups_bool_exp | null),predicate: float8_comparison_exp} - -export interface utility_lineups_aggregate_bool_exp_var_samp {arguments: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_var_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineups_bool_exp | null),predicate: float8_comparison_exp} - - -/** aggregate fields of "utility_lineups" */ -export interface utility_lineups_aggregate_fieldsGenqlSelection{ - avg?: utility_lineups_avg_fieldsGenqlSelection - count?: { __args: {columns?: (utility_lineups_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: utility_lineups_max_fieldsGenqlSelection - min?: utility_lineups_min_fieldsGenqlSelection - stddev?: utility_lineups_stddev_fieldsGenqlSelection - stddev_pop?: utility_lineups_stddev_pop_fieldsGenqlSelection - stddev_samp?: utility_lineups_stddev_samp_fieldsGenqlSelection - sum?: utility_lineups_sum_fieldsGenqlSelection - var_pop?: utility_lineups_var_pop_fieldsGenqlSelection - var_samp?: utility_lineups_var_samp_fieldsGenqlSelection - variance?: utility_lineups_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "utility_lineups" */ -export interface utility_lineups_aggregate_order_by {avg?: (utility_lineups_avg_order_by | null),count?: (order_by | null),max?: (utility_lineups_max_order_by | null),min?: (utility_lineups_min_order_by | null),stddev?: (utility_lineups_stddev_order_by | null),stddev_pop?: (utility_lineups_stddev_pop_order_by | null),stddev_samp?: (utility_lineups_stddev_samp_order_by | null),sum?: (utility_lineups_sum_order_by | null),var_pop?: (utility_lineups_var_pop_order_by | null),var_samp?: (utility_lineups_var_samp_order_by | null),variance?: (utility_lineups_variance_order_by | null)} - - -/** append existing jsonb value of filtered columns with new jsonb value */ -export interface utility_lineups_append_input {trajectory_preview?: (Scalars['jsonb'] | null)} - - -/** input type for inserting array relation for remote table "utility_lineups" */ -export interface utility_lineups_arr_rel_insert_input {data: utility_lineups_insert_input[], -/** upsert condition */ -on_conflict?: (utility_lineups_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface utility_lineups_avg_fieldsGenqlSelection{ - aim_tolerance?: boolean | number - author_steam_id?: boolean | number - downvotes?: boolean | number - eye_z?: boolean | number - favorites?: boolean | number - flight_time_ms?: boolean | number - initial_pos_x?: boolean | number - initial_pos_y?: boolean | number - initial_pos_z?: boolean | number - initial_vel_x?: boolean | number - initial_vel_y?: boolean | number - initial_vel_z?: boolean | number - land_x?: boolean | number - land_y?: boolean | number - land_z?: boolean | number - /** A computed field, executes function "utility_lineup_my_vote" */ - my_vote?: boolean | number - origin_x?: boolean | number - origin_y?: boolean | number - origin_z?: boolean | number - practice_attempts?: boolean | number - practice_players?: boolean | number - practice_successes?: boolean | number - preview_duration_ms?: boolean | number - public_reviewed_by?: boolean | number - source_grenade_id?: boolean | number - trajectory_size?: boolean | number - upvotes?: boolean | number - view_pitch?: boolean | number - view_pitch_delta?: boolean | number - view_yaw?: boolean | number - view_yaw_delta?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "utility_lineups" */ -export interface utility_lineups_avg_order_by {aim_tolerance?: (order_by | null),author_steam_id?: (order_by | null),downvotes?: (order_by | null),eye_z?: (order_by | null),favorites?: (order_by | null),flight_time_ms?: (order_by | null),initial_pos_x?: (order_by | null),initial_pos_y?: (order_by | null),initial_pos_z?: (order_by | null),initial_vel_x?: (order_by | null),initial_vel_y?: (order_by | null),initial_vel_z?: (order_by | null),land_x?: (order_by | null),land_y?: (order_by | null),land_z?: (order_by | null),origin_x?: (order_by | null),origin_y?: (order_by | null),origin_z?: (order_by | null),practice_attempts?: (order_by | null),practice_players?: (order_by | null),practice_successes?: (order_by | null),preview_duration_ms?: (order_by | null),public_reviewed_by?: (order_by | null),source_grenade_id?: (order_by | null),trajectory_size?: (order_by | null),upvotes?: (order_by | null),view_pitch?: (order_by | null),view_pitch_delta?: (order_by | null),view_yaw?: (order_by | null),view_yaw_delta?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "utility_lineups". All fields are combined with a logical 'AND'. */ -export interface utility_lineups_bool_exp {_and?: (utility_lineups_bool_exp[] | null),_not?: (utility_lineups_bool_exp | null),_or?: (utility_lineups_bool_exp[] | null),aim_tolerance?: (float8_comparison_exp | null),archived_at?: (timestamptz_comparison_exp | null),author?: (players_bool_exp | null),author_steam_id?: (bigint_comparison_exp | null),can_edit?: (Boolean_comparison_exp | null),can_view?: (Boolean_comparison_exp | null),collection_items?: (utility_collection_items_bool_exp | null),collection_items_aggregate?: (utility_collection_items_aggregate_bool_exp | null),confidence?: (String_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),description?: (String_comparison_exp | null),difficulty?: (String_comparison_exp | null),downvotes?: (Int_comparison_exp | null),external_id?: (String_comparison_exp | null),eye_z?: (float8_comparison_exp | null),favorited_by?: (utility_lineup_favorites_bool_exp | null),favorited_by_aggregate?: (utility_lineup_favorites_aggregate_bool_exp | null),favorites?: (Int_comparison_exp | null),flight_time_ms?: (Int_comparison_exp | null),forked_from?: (utility_lineups_bool_exp | null),forked_from_utility_lineup_id?: (uuid_comparison_exp | null),id?: (uuid_comparison_exp | null),initial_pos_x?: (float8_comparison_exp | null),initial_pos_y?: (float8_comparison_exp | null),initial_pos_z?: (float8_comparison_exp | null),initial_vel_x?: (float8_comparison_exp | null),initial_vel_y?: (float8_comparison_exp | null),initial_vel_z?: (float8_comparison_exp | null),is_favorited?: (Boolean_comparison_exp | null),jump_throw_bind?: (Boolean_comparison_exp | null),land_x?: (float8_comparison_exp | null),land_y?: (float8_comparison_exp | null),land_z?: (float8_comparison_exp | null),lineup_bucket?: (String_comparison_exp | null),map_name?: (String_comparison_exp | null),my_vote?: (smallint_comparison_exp | null),name?: (String_comparison_exp | null),origin_source?: (e_utility_sources_enum_comparison_exp | null),origin_x?: (float8_comparison_exp | null),origin_y?: (float8_comparison_exp | null),origin_z?: (float8_comparison_exp | null),practice_attempts?: (Int_comparison_exp | null),practice_players?: (Int_comparison_exp | null),practice_successes?: (Int_comparison_exp | null),preview_duration_ms?: (Int_comparison_exp | null),preview_file?: (String_comparison_exp | null),preview_rendered_at?: (timestamptz_comparison_exp | null),preview_thumbnail?: (String_comparison_exp | null),preview_thumbnail_url?: (String_comparison_exp | null),preview_url?: (String_comparison_exp | null),progress?: (utility_lineup_progress_bool_exp | null),progress_aggregate?: (utility_lineup_progress_aggregate_bool_exp | null),public_requested_at?: (timestamptz_comparison_exp | null),public_review_note?: (String_comparison_exp | null),public_reviewed_at?: (timestamptz_comparison_exp | null),public_reviewed_by?: (bigint_comparison_exp | null),renders?: (utility_lineup_renders_bool_exp | null),renders_aggregate?: (utility_lineup_renders_aggregate_bool_exp | null),repairs?: (utility_lineup_repairs_bool_exp | null),repairs_aggregate?: (utility_lineup_repairs_aggregate_bool_exp | null),side?: (e_sides_enum_comparison_exp | null),source_grenade_id?: (Int_comparison_exp | null),source_match?: (matches_bool_exp | null),source_match_id?: (uuid_comparison_exp | null),source_match_map?: (match_maps_bool_exp | null),source_match_map_id?: (uuid_comparison_exp | null),source_url?: (String_comparison_exp | null),tags?: (String_array_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null),technique?: (e_utility_techniques_enum_comparison_exp | null),throw_strength?: (e_utility_throw_strengths_enum_comparison_exp | null),trajectory_file?: (String_comparison_exp | null),trajectory_preview?: (jsonb_comparison_exp | null),trajectory_size?: (Int_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null),upvotes?: (Int_comparison_exp | null),utility_type?: (e_utility_types_enum_comparison_exp | null),verified_at?: (timestamptz_comparison_exp | null),view_pitch?: (float8_comparison_exp | null),view_pitch_delta?: (float8_comparison_exp | null),view_yaw?: (float8_comparison_exp | null),view_yaw_delta?: (float8_comparison_exp | null),visibility?: (e_utility_visibility_enum_comparison_exp | null),votes?: (utility_lineup_votes_bool_exp | null),votes_aggregate?: (utility_lineup_votes_aggregate_bool_exp | null),workshop_map_id?: (String_comparison_exp | null)} - - -/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ -export interface utility_lineups_delete_at_path_input {trajectory_preview?: (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 utility_lineups_delete_elem_input {trajectory_preview?: (Scalars['Int'] | null)} - - -/** delete key/value pair or string element. key/value pairs are matched based on their key value */ -export interface utility_lineups_delete_key_input {trajectory_preview?: (Scalars['String'] | null)} - - -/** input type for incrementing numeric columns in table "utility_lineups" */ -export interface utility_lineups_inc_input {aim_tolerance?: (Scalars['float8'] | null),author_steam_id?: (Scalars['bigint'] | null),downvotes?: (Scalars['Int'] | null),eye_z?: (Scalars['float8'] | null),favorites?: (Scalars['Int'] | null),flight_time_ms?: (Scalars['Int'] | null),initial_pos_x?: (Scalars['float8'] | null),initial_pos_y?: (Scalars['float8'] | null),initial_pos_z?: (Scalars['float8'] | null),initial_vel_x?: (Scalars['float8'] | null),initial_vel_y?: (Scalars['float8'] | null),initial_vel_z?: (Scalars['float8'] | null),land_x?: (Scalars['float8'] | null),land_y?: (Scalars['float8'] | null),land_z?: (Scalars['float8'] | null),origin_x?: (Scalars['float8'] | null),origin_y?: (Scalars['float8'] | null),origin_z?: (Scalars['float8'] | null),practice_attempts?: (Scalars['Int'] | null),practice_players?: (Scalars['Int'] | null),practice_successes?: (Scalars['Int'] | null),preview_duration_ms?: (Scalars['Int'] | null),public_reviewed_by?: (Scalars['bigint'] | null),source_grenade_id?: (Scalars['Int'] | null),trajectory_size?: (Scalars['Int'] | null),upvotes?: (Scalars['Int'] | null),view_pitch?: (Scalars['float8'] | null),view_pitch_delta?: (Scalars['float8'] | null),view_yaw?: (Scalars['float8'] | null),view_yaw_delta?: (Scalars['float8'] | null)} - - -/** input type for inserting data into table "utility_lineups" */ -export interface utility_lineups_insert_input {aim_tolerance?: (Scalars['float8'] | null),archived_at?: (Scalars['timestamptz'] | null),author?: (players_obj_rel_insert_input | null),author_steam_id?: (Scalars['bigint'] | null),collection_items?: (utility_collection_items_arr_rel_insert_input | null),confidence?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),downvotes?: (Scalars['Int'] | null),external_id?: (Scalars['String'] | null),eye_z?: (Scalars['float8'] | null),favorited_by?: (utility_lineup_favorites_arr_rel_insert_input | null),favorites?: (Scalars['Int'] | null),flight_time_ms?: (Scalars['Int'] | null),forked_from?: (utility_lineups_obj_rel_insert_input | null),forked_from_utility_lineup_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),initial_pos_x?: (Scalars['float8'] | null),initial_pos_y?: (Scalars['float8'] | null),initial_pos_z?: (Scalars['float8'] | null),initial_vel_x?: (Scalars['float8'] | null),initial_vel_y?: (Scalars['float8'] | null),initial_vel_z?: (Scalars['float8'] | null),jump_throw_bind?: (Scalars['Boolean'] | null),land_x?: (Scalars['float8'] | null),land_y?: (Scalars['float8'] | null),land_z?: (Scalars['float8'] | null),map_name?: (Scalars['String'] | null),name?: (Scalars['String'] | null),origin_source?: (e_utility_sources_enum | null),origin_x?: (Scalars['float8'] | null),origin_y?: (Scalars['float8'] | null),origin_z?: (Scalars['float8'] | null),practice_attempts?: (Scalars['Int'] | null),practice_players?: (Scalars['Int'] | null),practice_successes?: (Scalars['Int'] | null),preview_duration_ms?: (Scalars['Int'] | null),preview_file?: (Scalars['String'] | null),preview_rendered_at?: (Scalars['timestamptz'] | null),preview_thumbnail?: (Scalars['String'] | null),progress?: (utility_lineup_progress_arr_rel_insert_input | null),public_requested_at?: (Scalars['timestamptz'] | null),public_review_note?: (Scalars['String'] | null),public_reviewed_at?: (Scalars['timestamptz'] | null),public_reviewed_by?: (Scalars['bigint'] | null),renders?: (utility_lineup_renders_arr_rel_insert_input | null),repairs?: (utility_lineup_repairs_arr_rel_insert_input | null),side?: (e_sides_enum | null),source_grenade_id?: (Scalars['Int'] | null),source_match?: (matches_obj_rel_insert_input | null),source_match_id?: (Scalars['uuid'] | null),source_match_map?: (match_maps_obj_rel_insert_input | null),source_match_map_id?: (Scalars['uuid'] | null),source_url?: (Scalars['String'] | null),tags?: (Scalars['String'][] | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null),technique?: (e_utility_techniques_enum | null),throw_strength?: (e_utility_throw_strengths_enum | null),trajectory_file?: (Scalars['String'] | null),trajectory_preview?: (Scalars['jsonb'] | null),trajectory_size?: (Scalars['Int'] | null),updated_at?: (Scalars['timestamptz'] | null),upvotes?: (Scalars['Int'] | null),utility_type?: (e_utility_types_enum | null),verified_at?: (Scalars['timestamptz'] | null),view_pitch?: (Scalars['float8'] | null),view_pitch_delta?: (Scalars['float8'] | null),view_yaw?: (Scalars['float8'] | null),view_yaw_delta?: (Scalars['float8'] | null),visibility?: (e_utility_visibility_enum | null),votes?: (utility_lineup_votes_arr_rel_insert_input | null),workshop_map_id?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface utility_lineups_max_fieldsGenqlSelection{ - aim_tolerance?: boolean | number - archived_at?: boolean | number - author_steam_id?: boolean | number - confidence?: boolean | number - created_at?: boolean | number - description?: boolean | number - /** A computed field, executes function "utility_lineup_difficulty" */ - difficulty?: boolean | number - downvotes?: boolean | number - external_id?: boolean | number - eye_z?: boolean | number - favorites?: boolean | number - flight_time_ms?: boolean | number - forked_from_utility_lineup_id?: boolean | number - id?: boolean | number - initial_pos_x?: boolean | number - initial_pos_y?: boolean | number - initial_pos_z?: boolean | number - initial_vel_x?: boolean | number - initial_vel_y?: boolean | number - initial_vel_z?: boolean | number - land_x?: boolean | number - land_y?: boolean | number - land_z?: boolean | number - lineup_bucket?: boolean | number - map_name?: boolean | number - /** A computed field, executes function "utility_lineup_my_vote" */ - my_vote?: boolean | number - name?: boolean | number - origin_x?: boolean | number - origin_y?: boolean | number - origin_z?: boolean | number - practice_attempts?: boolean | number - practice_players?: boolean | number - practice_successes?: boolean | number - preview_duration_ms?: boolean | number - preview_file?: boolean | number - preview_rendered_at?: boolean | number - preview_thumbnail?: boolean | number - /** A computed field, executes function "utility_lineup_preview_thumbnail_url" */ - preview_thumbnail_url?: boolean | number - /** A computed field, executes function "utility_lineup_preview_url" */ - preview_url?: boolean | number - public_requested_at?: boolean | number - public_review_note?: boolean | number - public_reviewed_at?: boolean | number - public_reviewed_by?: boolean | number - source_grenade_id?: boolean | number - source_match_id?: boolean | number - source_match_map_id?: boolean | number - source_url?: boolean | number - tags?: boolean | number - team_id?: boolean | number - trajectory_file?: boolean | number - trajectory_size?: boolean | number - updated_at?: boolean | number - upvotes?: boolean | number - verified_at?: boolean | number - view_pitch?: boolean | number - view_pitch_delta?: boolean | number - view_yaw?: boolean | number - view_yaw_delta?: boolean | number - workshop_map_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "utility_lineups" */ -export interface utility_lineups_max_order_by {aim_tolerance?: (order_by | null),archived_at?: (order_by | null),author_steam_id?: (order_by | null),confidence?: (order_by | null),created_at?: (order_by | null),description?: (order_by | null),downvotes?: (order_by | null),external_id?: (order_by | null),eye_z?: (order_by | null),favorites?: (order_by | null),flight_time_ms?: (order_by | null),forked_from_utility_lineup_id?: (order_by | null),id?: (order_by | null),initial_pos_x?: (order_by | null),initial_pos_y?: (order_by | null),initial_pos_z?: (order_by | null),initial_vel_x?: (order_by | null),initial_vel_y?: (order_by | null),initial_vel_z?: (order_by | null),land_x?: (order_by | null),land_y?: (order_by | null),land_z?: (order_by | null),lineup_bucket?: (order_by | null),map_name?: (order_by | null),name?: (order_by | null),origin_x?: (order_by | null),origin_y?: (order_by | null),origin_z?: (order_by | null),practice_attempts?: (order_by | null),practice_players?: (order_by | null),practice_successes?: (order_by | null),preview_duration_ms?: (order_by | null),preview_file?: (order_by | null),preview_rendered_at?: (order_by | null),preview_thumbnail?: (order_by | null),public_requested_at?: (order_by | null),public_review_note?: (order_by | null),public_reviewed_at?: (order_by | null),public_reviewed_by?: (order_by | null),source_grenade_id?: (order_by | null),source_match_id?: (order_by | null),source_match_map_id?: (order_by | null),source_url?: (order_by | null),tags?: (order_by | null),team_id?: (order_by | null),trajectory_file?: (order_by | null),trajectory_size?: (order_by | null),updated_at?: (order_by | null),upvotes?: (order_by | null),verified_at?: (order_by | null),view_pitch?: (order_by | null),view_pitch_delta?: (order_by | null),view_yaw?: (order_by | null),view_yaw_delta?: (order_by | null),workshop_map_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface utility_lineups_min_fieldsGenqlSelection{ - aim_tolerance?: boolean | number - archived_at?: boolean | number - author_steam_id?: boolean | number - confidence?: boolean | number - created_at?: boolean | number - description?: boolean | number - /** A computed field, executes function "utility_lineup_difficulty" */ - difficulty?: boolean | number - downvotes?: boolean | number - external_id?: boolean | number - eye_z?: boolean | number - favorites?: boolean | number - flight_time_ms?: boolean | number - forked_from_utility_lineup_id?: boolean | number - id?: boolean | number - initial_pos_x?: boolean | number - initial_pos_y?: boolean | number - initial_pos_z?: boolean | number - initial_vel_x?: boolean | number - initial_vel_y?: boolean | number - initial_vel_z?: boolean | number - land_x?: boolean | number - land_y?: boolean | number - land_z?: boolean | number - lineup_bucket?: boolean | number - map_name?: boolean | number - /** A computed field, executes function "utility_lineup_my_vote" */ - my_vote?: boolean | number - name?: boolean | number - origin_x?: boolean | number - origin_y?: boolean | number - origin_z?: boolean | number - practice_attempts?: boolean | number - practice_players?: boolean | number - practice_successes?: boolean | number - preview_duration_ms?: boolean | number - preview_file?: boolean | number - preview_rendered_at?: boolean | number - preview_thumbnail?: boolean | number - /** A computed field, executes function "utility_lineup_preview_thumbnail_url" */ - preview_thumbnail_url?: boolean | number - /** A computed field, executes function "utility_lineup_preview_url" */ - preview_url?: boolean | number - public_requested_at?: boolean | number - public_review_note?: boolean | number - public_reviewed_at?: boolean | number - public_reviewed_by?: boolean | number - source_grenade_id?: boolean | number - source_match_id?: boolean | number - source_match_map_id?: boolean | number - source_url?: boolean | number - tags?: boolean | number - team_id?: boolean | number - trajectory_file?: boolean | number - trajectory_size?: boolean | number - updated_at?: boolean | number - upvotes?: boolean | number - verified_at?: boolean | number - view_pitch?: boolean | number - view_pitch_delta?: boolean | number - view_yaw?: boolean | number - view_yaw_delta?: boolean | number - workshop_map_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "utility_lineups" */ -export interface utility_lineups_min_order_by {aim_tolerance?: (order_by | null),archived_at?: (order_by | null),author_steam_id?: (order_by | null),confidence?: (order_by | null),created_at?: (order_by | null),description?: (order_by | null),downvotes?: (order_by | null),external_id?: (order_by | null),eye_z?: (order_by | null),favorites?: (order_by | null),flight_time_ms?: (order_by | null),forked_from_utility_lineup_id?: (order_by | null),id?: (order_by | null),initial_pos_x?: (order_by | null),initial_pos_y?: (order_by | null),initial_pos_z?: (order_by | null),initial_vel_x?: (order_by | null),initial_vel_y?: (order_by | null),initial_vel_z?: (order_by | null),land_x?: (order_by | null),land_y?: (order_by | null),land_z?: (order_by | null),lineup_bucket?: (order_by | null),map_name?: (order_by | null),name?: (order_by | null),origin_x?: (order_by | null),origin_y?: (order_by | null),origin_z?: (order_by | null),practice_attempts?: (order_by | null),practice_players?: (order_by | null),practice_successes?: (order_by | null),preview_duration_ms?: (order_by | null),preview_file?: (order_by | null),preview_rendered_at?: (order_by | null),preview_thumbnail?: (order_by | null),public_requested_at?: (order_by | null),public_review_note?: (order_by | null),public_reviewed_at?: (order_by | null),public_reviewed_by?: (order_by | null),source_grenade_id?: (order_by | null),source_match_id?: (order_by | null),source_match_map_id?: (order_by | null),source_url?: (order_by | null),tags?: (order_by | null),team_id?: (order_by | null),trajectory_file?: (order_by | null),trajectory_size?: (order_by | null),updated_at?: (order_by | null),upvotes?: (order_by | null),verified_at?: (order_by | null),view_pitch?: (order_by | null),view_pitch_delta?: (order_by | null),view_yaw?: (order_by | null),view_yaw_delta?: (order_by | null),workshop_map_id?: (order_by | null)} - - -/** response of any mutation on the table "utility_lineups" */ -export interface utility_lineups_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: utility_lineupsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "utility_lineups" */ -export interface utility_lineups_obj_rel_insert_input {data: utility_lineups_insert_input, -/** upsert condition */ -on_conflict?: (utility_lineups_on_conflict | null)} - - -/** on_conflict condition type for table "utility_lineups" */ -export interface utility_lineups_on_conflict {constraint: utility_lineups_constraint,update_columns?: utility_lineups_update_column[],where?: (utility_lineups_bool_exp | null)} - - -/** Ordering options when selecting data from "utility_lineups". */ -export interface utility_lineups_order_by {aim_tolerance?: (order_by | null),archived_at?: (order_by | null),author?: (players_order_by | null),author_steam_id?: (order_by | null),can_edit?: (order_by | null),can_view?: (order_by | null),collection_items_aggregate?: (utility_collection_items_aggregate_order_by | null),confidence?: (order_by | null),created_at?: (order_by | null),description?: (order_by | null),difficulty?: (order_by | null),downvotes?: (order_by | null),external_id?: (order_by | null),eye_z?: (order_by | null),favorited_by_aggregate?: (utility_lineup_favorites_aggregate_order_by | null),favorites?: (order_by | null),flight_time_ms?: (order_by | null),forked_from?: (utility_lineups_order_by | null),forked_from_utility_lineup_id?: (order_by | null),id?: (order_by | null),initial_pos_x?: (order_by | null),initial_pos_y?: (order_by | null),initial_pos_z?: (order_by | null),initial_vel_x?: (order_by | null),initial_vel_y?: (order_by | null),initial_vel_z?: (order_by | null),is_favorited?: (order_by | null),jump_throw_bind?: (order_by | null),land_x?: (order_by | null),land_y?: (order_by | null),land_z?: (order_by | null),lineup_bucket?: (order_by | null),map_name?: (order_by | null),my_vote?: (order_by | null),name?: (order_by | null),origin_source?: (order_by | null),origin_x?: (order_by | null),origin_y?: (order_by | null),origin_z?: (order_by | null),practice_attempts?: (order_by | null),practice_players?: (order_by | null),practice_successes?: (order_by | null),preview_duration_ms?: (order_by | null),preview_file?: (order_by | null),preview_rendered_at?: (order_by | null),preview_thumbnail?: (order_by | null),preview_thumbnail_url?: (order_by | null),preview_url?: (order_by | null),progress_aggregate?: (utility_lineup_progress_aggregate_order_by | null),public_requested_at?: (order_by | null),public_review_note?: (order_by | null),public_reviewed_at?: (order_by | null),public_reviewed_by?: (order_by | null),renders_aggregate?: (utility_lineup_renders_aggregate_order_by | null),repairs_aggregate?: (utility_lineup_repairs_aggregate_order_by | null),side?: (order_by | null),source_grenade_id?: (order_by | null),source_match?: (matches_order_by | null),source_match_id?: (order_by | null),source_match_map?: (match_maps_order_by | null),source_match_map_id?: (order_by | null),source_url?: (order_by | null),tags?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null),technique?: (order_by | null),throw_strength?: (order_by | null),trajectory_file?: (order_by | null),trajectory_preview?: (order_by | null),trajectory_size?: (order_by | null),updated_at?: (order_by | null),upvotes?: (order_by | null),utility_type?: (order_by | null),verified_at?: (order_by | null),view_pitch?: (order_by | null),view_pitch_delta?: (order_by | null),view_yaw?: (order_by | null),view_yaw_delta?: (order_by | null),visibility?: (order_by | null),votes_aggregate?: (utility_lineup_votes_aggregate_order_by | null),workshop_map_id?: (order_by | null)} - - -/** primary key columns input for table: utility_lineups */ -export interface utility_lineups_pk_columns_input {id: Scalars['uuid']} - - -/** prepend existing jsonb value of filtered columns with new jsonb value */ -export interface utility_lineups_prepend_input {trajectory_preview?: (Scalars['jsonb'] | null)} - - -/** input type for updating data in table "utility_lineups" */ -export interface utility_lineups_set_input {aim_tolerance?: (Scalars['float8'] | null),archived_at?: (Scalars['timestamptz'] | null),author_steam_id?: (Scalars['bigint'] | null),confidence?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),downvotes?: (Scalars['Int'] | null),external_id?: (Scalars['String'] | null),eye_z?: (Scalars['float8'] | null),favorites?: (Scalars['Int'] | null),flight_time_ms?: (Scalars['Int'] | null),forked_from_utility_lineup_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),initial_pos_x?: (Scalars['float8'] | null),initial_pos_y?: (Scalars['float8'] | null),initial_pos_z?: (Scalars['float8'] | null),initial_vel_x?: (Scalars['float8'] | null),initial_vel_y?: (Scalars['float8'] | null),initial_vel_z?: (Scalars['float8'] | null),jump_throw_bind?: (Scalars['Boolean'] | null),land_x?: (Scalars['float8'] | null),land_y?: (Scalars['float8'] | null),land_z?: (Scalars['float8'] | null),map_name?: (Scalars['String'] | null),name?: (Scalars['String'] | null),origin_source?: (e_utility_sources_enum | null),origin_x?: (Scalars['float8'] | null),origin_y?: (Scalars['float8'] | null),origin_z?: (Scalars['float8'] | null),practice_attempts?: (Scalars['Int'] | null),practice_players?: (Scalars['Int'] | null),practice_successes?: (Scalars['Int'] | null),preview_duration_ms?: (Scalars['Int'] | null),preview_file?: (Scalars['String'] | null),preview_rendered_at?: (Scalars['timestamptz'] | null),preview_thumbnail?: (Scalars['String'] | null),public_requested_at?: (Scalars['timestamptz'] | null),public_review_note?: (Scalars['String'] | null),public_reviewed_at?: (Scalars['timestamptz'] | null),public_reviewed_by?: (Scalars['bigint'] | null),side?: (e_sides_enum | null),source_grenade_id?: (Scalars['Int'] | null),source_match_id?: (Scalars['uuid'] | null),source_match_map_id?: (Scalars['uuid'] | null),source_url?: (Scalars['String'] | null),tags?: (Scalars['String'][] | null),team_id?: (Scalars['uuid'] | null),technique?: (e_utility_techniques_enum | null),throw_strength?: (e_utility_throw_strengths_enum | null),trajectory_file?: (Scalars['String'] | null),trajectory_preview?: (Scalars['jsonb'] | null),trajectory_size?: (Scalars['Int'] | null),updated_at?: (Scalars['timestamptz'] | null),upvotes?: (Scalars['Int'] | null),utility_type?: (e_utility_types_enum | null),verified_at?: (Scalars['timestamptz'] | null),view_pitch?: (Scalars['float8'] | null),view_pitch_delta?: (Scalars['float8'] | null),view_yaw?: (Scalars['float8'] | null),view_yaw_delta?: (Scalars['float8'] | null),visibility?: (e_utility_visibility_enum | null),workshop_map_id?: (Scalars['String'] | null)} - - -/** aggregate stddev on columns */ -export interface utility_lineups_stddev_fieldsGenqlSelection{ - aim_tolerance?: boolean | number - author_steam_id?: boolean | number - downvotes?: boolean | number - eye_z?: boolean | number - favorites?: boolean | number - flight_time_ms?: boolean | number - initial_pos_x?: boolean | number - initial_pos_y?: boolean | number - initial_pos_z?: boolean | number - initial_vel_x?: boolean | number - initial_vel_y?: boolean | number - initial_vel_z?: boolean | number - land_x?: boolean | number - land_y?: boolean | number - land_z?: boolean | number - /** A computed field, executes function "utility_lineup_my_vote" */ - my_vote?: boolean | number - origin_x?: boolean | number - origin_y?: boolean | number - origin_z?: boolean | number - practice_attempts?: boolean | number - practice_players?: boolean | number - practice_successes?: boolean | number - preview_duration_ms?: boolean | number - public_reviewed_by?: boolean | number - source_grenade_id?: boolean | number - trajectory_size?: boolean | number - upvotes?: boolean | number - view_pitch?: boolean | number - view_pitch_delta?: boolean | number - view_yaw?: boolean | number - view_yaw_delta?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "utility_lineups" */ -export interface utility_lineups_stddev_order_by {aim_tolerance?: (order_by | null),author_steam_id?: (order_by | null),downvotes?: (order_by | null),eye_z?: (order_by | null),favorites?: (order_by | null),flight_time_ms?: (order_by | null),initial_pos_x?: (order_by | null),initial_pos_y?: (order_by | null),initial_pos_z?: (order_by | null),initial_vel_x?: (order_by | null),initial_vel_y?: (order_by | null),initial_vel_z?: (order_by | null),land_x?: (order_by | null),land_y?: (order_by | null),land_z?: (order_by | null),origin_x?: (order_by | null),origin_y?: (order_by | null),origin_z?: (order_by | null),practice_attempts?: (order_by | null),practice_players?: (order_by | null),practice_successes?: (order_by | null),preview_duration_ms?: (order_by | null),public_reviewed_by?: (order_by | null),source_grenade_id?: (order_by | null),trajectory_size?: (order_by | null),upvotes?: (order_by | null),view_pitch?: (order_by | null),view_pitch_delta?: (order_by | null),view_yaw?: (order_by | null),view_yaw_delta?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface utility_lineups_stddev_pop_fieldsGenqlSelection{ - aim_tolerance?: boolean | number - author_steam_id?: boolean | number - downvotes?: boolean | number - eye_z?: boolean | number - favorites?: boolean | number - flight_time_ms?: boolean | number - initial_pos_x?: boolean | number - initial_pos_y?: boolean | number - initial_pos_z?: boolean | number - initial_vel_x?: boolean | number - initial_vel_y?: boolean | number - initial_vel_z?: boolean | number - land_x?: boolean | number - land_y?: boolean | number - land_z?: boolean | number - /** A computed field, executes function "utility_lineup_my_vote" */ - my_vote?: boolean | number - origin_x?: boolean | number - origin_y?: boolean | number - origin_z?: boolean | number - practice_attempts?: boolean | number - practice_players?: boolean | number - practice_successes?: boolean | number - preview_duration_ms?: boolean | number - public_reviewed_by?: boolean | number - source_grenade_id?: boolean | number - trajectory_size?: boolean | number - upvotes?: boolean | number - view_pitch?: boolean | number - view_pitch_delta?: boolean | number - view_yaw?: boolean | number - view_yaw_delta?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "utility_lineups" */ -export interface utility_lineups_stddev_pop_order_by {aim_tolerance?: (order_by | null),author_steam_id?: (order_by | null),downvotes?: (order_by | null),eye_z?: (order_by | null),favorites?: (order_by | null),flight_time_ms?: (order_by | null),initial_pos_x?: (order_by | null),initial_pos_y?: (order_by | null),initial_pos_z?: (order_by | null),initial_vel_x?: (order_by | null),initial_vel_y?: (order_by | null),initial_vel_z?: (order_by | null),land_x?: (order_by | null),land_y?: (order_by | null),land_z?: (order_by | null),origin_x?: (order_by | null),origin_y?: (order_by | null),origin_z?: (order_by | null),practice_attempts?: (order_by | null),practice_players?: (order_by | null),practice_successes?: (order_by | null),preview_duration_ms?: (order_by | null),public_reviewed_by?: (order_by | null),source_grenade_id?: (order_by | null),trajectory_size?: (order_by | null),upvotes?: (order_by | null),view_pitch?: (order_by | null),view_pitch_delta?: (order_by | null),view_yaw?: (order_by | null),view_yaw_delta?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface utility_lineups_stddev_samp_fieldsGenqlSelection{ - aim_tolerance?: boolean | number - author_steam_id?: boolean | number - downvotes?: boolean | number - eye_z?: boolean | number - favorites?: boolean | number - flight_time_ms?: boolean | number - initial_pos_x?: boolean | number - initial_pos_y?: boolean | number - initial_pos_z?: boolean | number - initial_vel_x?: boolean | number - initial_vel_y?: boolean | number - initial_vel_z?: boolean | number - land_x?: boolean | number - land_y?: boolean | number - land_z?: boolean | number - /** A computed field, executes function "utility_lineup_my_vote" */ - my_vote?: boolean | number - origin_x?: boolean | number - origin_y?: boolean | number - origin_z?: boolean | number - practice_attempts?: boolean | number - practice_players?: boolean | number - practice_successes?: boolean | number - preview_duration_ms?: boolean | number - public_reviewed_by?: boolean | number - source_grenade_id?: boolean | number - trajectory_size?: boolean | number - upvotes?: boolean | number - view_pitch?: boolean | number - view_pitch_delta?: boolean | number - view_yaw?: boolean | number - view_yaw_delta?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "utility_lineups" */ -export interface utility_lineups_stddev_samp_order_by {aim_tolerance?: (order_by | null),author_steam_id?: (order_by | null),downvotes?: (order_by | null),eye_z?: (order_by | null),favorites?: (order_by | null),flight_time_ms?: (order_by | null),initial_pos_x?: (order_by | null),initial_pos_y?: (order_by | null),initial_pos_z?: (order_by | null),initial_vel_x?: (order_by | null),initial_vel_y?: (order_by | null),initial_vel_z?: (order_by | null),land_x?: (order_by | null),land_y?: (order_by | null),land_z?: (order_by | null),origin_x?: (order_by | null),origin_y?: (order_by | null),origin_z?: (order_by | null),practice_attempts?: (order_by | null),practice_players?: (order_by | null),practice_successes?: (order_by | null),preview_duration_ms?: (order_by | null),public_reviewed_by?: (order_by | null),source_grenade_id?: (order_by | null),trajectory_size?: (order_by | null),upvotes?: (order_by | null),view_pitch?: (order_by | null),view_pitch_delta?: (order_by | null),view_yaw?: (order_by | null),view_yaw_delta?: (order_by | null)} - - -/** Streaming cursor of the table "utility_lineups" */ -export interface utility_lineups_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: utility_lineups_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface utility_lineups_stream_cursor_value_input {aim_tolerance?: (Scalars['float8'] | null),archived_at?: (Scalars['timestamptz'] | null),author_steam_id?: (Scalars['bigint'] | null),confidence?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),downvotes?: (Scalars['Int'] | null),external_id?: (Scalars['String'] | null),eye_z?: (Scalars['float8'] | null),favorites?: (Scalars['Int'] | null),flight_time_ms?: (Scalars['Int'] | null),forked_from_utility_lineup_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),initial_pos_x?: (Scalars['float8'] | null),initial_pos_y?: (Scalars['float8'] | null),initial_pos_z?: (Scalars['float8'] | null),initial_vel_x?: (Scalars['float8'] | null),initial_vel_y?: (Scalars['float8'] | null),initial_vel_z?: (Scalars['float8'] | null),jump_throw_bind?: (Scalars['Boolean'] | null),land_x?: (Scalars['float8'] | null),land_y?: (Scalars['float8'] | null),land_z?: (Scalars['float8'] | null),lineup_bucket?: (Scalars['String'] | null),map_name?: (Scalars['String'] | null),name?: (Scalars['String'] | null),origin_source?: (e_utility_sources_enum | null),origin_x?: (Scalars['float8'] | null),origin_y?: (Scalars['float8'] | null),origin_z?: (Scalars['float8'] | null),practice_attempts?: (Scalars['Int'] | null),practice_players?: (Scalars['Int'] | null),practice_successes?: (Scalars['Int'] | null),preview_duration_ms?: (Scalars['Int'] | null),preview_file?: (Scalars['String'] | null),preview_rendered_at?: (Scalars['timestamptz'] | null),preview_thumbnail?: (Scalars['String'] | null),public_requested_at?: (Scalars['timestamptz'] | null),public_review_note?: (Scalars['String'] | null),public_reviewed_at?: (Scalars['timestamptz'] | null),public_reviewed_by?: (Scalars['bigint'] | null),side?: (e_sides_enum | null),source_grenade_id?: (Scalars['Int'] | null),source_match_id?: (Scalars['uuid'] | null),source_match_map_id?: (Scalars['uuid'] | null),source_url?: (Scalars['String'] | null),tags?: (Scalars['String'][] | null),team_id?: (Scalars['uuid'] | null),technique?: (e_utility_techniques_enum | null),throw_strength?: (e_utility_throw_strengths_enum | null),trajectory_file?: (Scalars['String'] | null),trajectory_preview?: (Scalars['jsonb'] | null),trajectory_size?: (Scalars['Int'] | null),updated_at?: (Scalars['timestamptz'] | null),upvotes?: (Scalars['Int'] | null),utility_type?: (e_utility_types_enum | null),verified_at?: (Scalars['timestamptz'] | null),view_pitch?: (Scalars['float8'] | null),view_pitch_delta?: (Scalars['float8'] | null),view_yaw?: (Scalars['float8'] | null),view_yaw_delta?: (Scalars['float8'] | null),visibility?: (e_utility_visibility_enum | null),workshop_map_id?: (Scalars['String'] | null)} - - -/** aggregate sum on columns */ -export interface utility_lineups_sum_fieldsGenqlSelection{ - aim_tolerance?: boolean | number - author_steam_id?: boolean | number - downvotes?: boolean | number - eye_z?: boolean | number - favorites?: boolean | number - flight_time_ms?: boolean | number - initial_pos_x?: boolean | number - initial_pos_y?: boolean | number - initial_pos_z?: boolean | number - initial_vel_x?: boolean | number - initial_vel_y?: boolean | number - initial_vel_z?: boolean | number - land_x?: boolean | number - land_y?: boolean | number - land_z?: boolean | number - /** A computed field, executes function "utility_lineup_my_vote" */ - my_vote?: boolean | number - origin_x?: boolean | number - origin_y?: boolean | number - origin_z?: boolean | number - practice_attempts?: boolean | number - practice_players?: boolean | number - practice_successes?: boolean | number - preview_duration_ms?: boolean | number - public_reviewed_by?: boolean | number - source_grenade_id?: boolean | number - trajectory_size?: boolean | number - upvotes?: boolean | number - view_pitch?: boolean | number - view_pitch_delta?: boolean | number - view_yaw?: boolean | number - view_yaw_delta?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "utility_lineups" */ -export interface utility_lineups_sum_order_by {aim_tolerance?: (order_by | null),author_steam_id?: (order_by | null),downvotes?: (order_by | null),eye_z?: (order_by | null),favorites?: (order_by | null),flight_time_ms?: (order_by | null),initial_pos_x?: (order_by | null),initial_pos_y?: (order_by | null),initial_pos_z?: (order_by | null),initial_vel_x?: (order_by | null),initial_vel_y?: (order_by | null),initial_vel_z?: (order_by | null),land_x?: (order_by | null),land_y?: (order_by | null),land_z?: (order_by | null),origin_x?: (order_by | null),origin_y?: (order_by | null),origin_z?: (order_by | null),practice_attempts?: (order_by | null),practice_players?: (order_by | null),practice_successes?: (order_by | null),preview_duration_ms?: (order_by | null),public_reviewed_by?: (order_by | null),source_grenade_id?: (order_by | null),trajectory_size?: (order_by | null),upvotes?: (order_by | null),view_pitch?: (order_by | null),view_pitch_delta?: (order_by | null),view_yaw?: (order_by | null),view_yaw_delta?: (order_by | null)} - -export interface utility_lineups_updates { -/** append existing jsonb value of filtered columns with new jsonb value */ -_append?: (utility_lineups_append_input | null), -/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ -_delete_at_path?: (utility_lineups_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?: (utility_lineups_delete_elem_input | null), -/** delete key/value pair or string element. key/value pairs are matched based on their key value */ -_delete_key?: (utility_lineups_delete_key_input | null), -/** increments the numeric columns with given value of the filtered values */ -_inc?: (utility_lineups_inc_input | null), -/** prepend existing jsonb value of filtered columns with new jsonb value */ -_prepend?: (utility_lineups_prepend_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (utility_lineups_set_input | null), -/** filter the rows which have to be updated */ -where: utility_lineups_bool_exp} - - -/** aggregate var_pop on columns */ -export interface utility_lineups_var_pop_fieldsGenqlSelection{ - aim_tolerance?: boolean | number - author_steam_id?: boolean | number - downvotes?: boolean | number - eye_z?: boolean | number - favorites?: boolean | number - flight_time_ms?: boolean | number - initial_pos_x?: boolean | number - initial_pos_y?: boolean | number - initial_pos_z?: boolean | number - initial_vel_x?: boolean | number - initial_vel_y?: boolean | number - initial_vel_z?: boolean | number - land_x?: boolean | number - land_y?: boolean | number - land_z?: boolean | number - /** A computed field, executes function "utility_lineup_my_vote" */ - my_vote?: boolean | number - origin_x?: boolean | number - origin_y?: boolean | number - origin_z?: boolean | number - practice_attempts?: boolean | number - practice_players?: boolean | number - practice_successes?: boolean | number - preview_duration_ms?: boolean | number - public_reviewed_by?: boolean | number - source_grenade_id?: boolean | number - trajectory_size?: boolean | number - upvotes?: boolean | number - view_pitch?: boolean | number - view_pitch_delta?: boolean | number - view_yaw?: boolean | number - view_yaw_delta?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "utility_lineups" */ -export interface utility_lineups_var_pop_order_by {aim_tolerance?: (order_by | null),author_steam_id?: (order_by | null),downvotes?: (order_by | null),eye_z?: (order_by | null),favorites?: (order_by | null),flight_time_ms?: (order_by | null),initial_pos_x?: (order_by | null),initial_pos_y?: (order_by | null),initial_pos_z?: (order_by | null),initial_vel_x?: (order_by | null),initial_vel_y?: (order_by | null),initial_vel_z?: (order_by | null),land_x?: (order_by | null),land_y?: (order_by | null),land_z?: (order_by | null),origin_x?: (order_by | null),origin_y?: (order_by | null),origin_z?: (order_by | null),practice_attempts?: (order_by | null),practice_players?: (order_by | null),practice_successes?: (order_by | null),preview_duration_ms?: (order_by | null),public_reviewed_by?: (order_by | null),source_grenade_id?: (order_by | null),trajectory_size?: (order_by | null),upvotes?: (order_by | null),view_pitch?: (order_by | null),view_pitch_delta?: (order_by | null),view_yaw?: (order_by | null),view_yaw_delta?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface utility_lineups_var_samp_fieldsGenqlSelection{ - aim_tolerance?: boolean | number - author_steam_id?: boolean | number - downvotes?: boolean | number - eye_z?: boolean | number - favorites?: boolean | number - flight_time_ms?: boolean | number - initial_pos_x?: boolean | number - initial_pos_y?: boolean | number - initial_pos_z?: boolean | number - initial_vel_x?: boolean | number - initial_vel_y?: boolean | number - initial_vel_z?: boolean | number - land_x?: boolean | number - land_y?: boolean | number - land_z?: boolean | number - /** A computed field, executes function "utility_lineup_my_vote" */ - my_vote?: boolean | number - origin_x?: boolean | number - origin_y?: boolean | number - origin_z?: boolean | number - practice_attempts?: boolean | number - practice_players?: boolean | number - practice_successes?: boolean | number - preview_duration_ms?: boolean | number - public_reviewed_by?: boolean | number - source_grenade_id?: boolean | number - trajectory_size?: boolean | number - upvotes?: boolean | number - view_pitch?: boolean | number - view_pitch_delta?: boolean | number - view_yaw?: boolean | number - view_yaw_delta?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "utility_lineups" */ -export interface utility_lineups_var_samp_order_by {aim_tolerance?: (order_by | null),author_steam_id?: (order_by | null),downvotes?: (order_by | null),eye_z?: (order_by | null),favorites?: (order_by | null),flight_time_ms?: (order_by | null),initial_pos_x?: (order_by | null),initial_pos_y?: (order_by | null),initial_pos_z?: (order_by | null),initial_vel_x?: (order_by | null),initial_vel_y?: (order_by | null),initial_vel_z?: (order_by | null),land_x?: (order_by | null),land_y?: (order_by | null),land_z?: (order_by | null),origin_x?: (order_by | null),origin_y?: (order_by | null),origin_z?: (order_by | null),practice_attempts?: (order_by | null),practice_players?: (order_by | null),practice_successes?: (order_by | null),preview_duration_ms?: (order_by | null),public_reviewed_by?: (order_by | null),source_grenade_id?: (order_by | null),trajectory_size?: (order_by | null),upvotes?: (order_by | null),view_pitch?: (order_by | null),view_pitch_delta?: (order_by | null),view_yaw?: (order_by | null),view_yaw_delta?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface utility_lineups_variance_fieldsGenqlSelection{ - aim_tolerance?: boolean | number - author_steam_id?: boolean | number - downvotes?: boolean | number - eye_z?: boolean | number - favorites?: boolean | number - flight_time_ms?: boolean | number - initial_pos_x?: boolean | number - initial_pos_y?: boolean | number - initial_pos_z?: boolean | number - initial_vel_x?: boolean | number - initial_vel_y?: boolean | number - initial_vel_z?: boolean | number - land_x?: boolean | number - land_y?: boolean | number - land_z?: boolean | number - /** A computed field, executes function "utility_lineup_my_vote" */ - my_vote?: boolean | number - origin_x?: boolean | number - origin_y?: boolean | number - origin_z?: boolean | number - practice_attempts?: boolean | number - practice_players?: boolean | number - practice_successes?: boolean | number - preview_duration_ms?: boolean | number - public_reviewed_by?: boolean | number - source_grenade_id?: boolean | number - trajectory_size?: boolean | number - upvotes?: boolean | number - view_pitch?: boolean | number - view_pitch_delta?: boolean | number - view_yaw?: boolean | number - view_yaw_delta?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "utility_lineups" */ -export interface utility_lineups_variance_order_by {aim_tolerance?: (order_by | null),author_steam_id?: (order_by | null),downvotes?: (order_by | null),eye_z?: (order_by | null),favorites?: (order_by | null),flight_time_ms?: (order_by | null),initial_pos_x?: (order_by | null),initial_pos_y?: (order_by | null),initial_pos_z?: (order_by | null),initial_vel_x?: (order_by | null),initial_vel_y?: (order_by | null),initial_vel_z?: (order_by | null),land_x?: (order_by | null),land_y?: (order_by | null),land_z?: (order_by | null),origin_x?: (order_by | null),origin_y?: (order_by | null),origin_z?: (order_by | null),practice_attempts?: (order_by | null),practice_players?: (order_by | null),practice_successes?: (order_by | null),preview_duration_ms?: (order_by | null),public_reviewed_by?: (order_by | null),source_grenade_id?: (order_by | null),trajectory_size?: (order_by | null),upvotes?: (order_by | null),view_pitch?: (order_by | null),view_pitch_delta?: (order_by | null),view_yaw?: (order_by | null),view_yaw_delta?: (order_by | null)} - - -/** columns and relationships of "utility_meta_lineups" */ -export interface utility_meta_lineupsGenqlSelection{ - first_seen_at?: boolean | number - land_x?: boolean | number - land_y?: boolean | number - land_z?: boolean | number - last_seen_at?: boolean | number - lineup_bucket?: boolean | number - lineups?: boolean | number - map_name?: boolean | number - matches?: boolean | number - origin_x?: boolean | number - origin_y?: boolean | number - origin_z?: boolean | number - refreshed_at?: boolean | number - side?: boolean | number - technique?: boolean | number - throw_strength?: boolean | number - throwers?: boolean | number - throws?: boolean | number - utility_type?: boolean | number - view_pitch?: boolean | number - view_yaw?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "utility_meta_lineups" */ -export interface utility_meta_lineups_aggregateGenqlSelection{ - aggregate?: utility_meta_lineups_aggregate_fieldsGenqlSelection - nodes?: utility_meta_lineupsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "utility_meta_lineups" */ -export interface utility_meta_lineups_aggregate_fieldsGenqlSelection{ - avg?: utility_meta_lineups_avg_fieldsGenqlSelection - count?: { __args: {columns?: (utility_meta_lineups_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: utility_meta_lineups_max_fieldsGenqlSelection - min?: utility_meta_lineups_min_fieldsGenqlSelection - stddev?: utility_meta_lineups_stddev_fieldsGenqlSelection - stddev_pop?: utility_meta_lineups_stddev_pop_fieldsGenqlSelection - stddev_samp?: utility_meta_lineups_stddev_samp_fieldsGenqlSelection - sum?: utility_meta_lineups_sum_fieldsGenqlSelection - var_pop?: utility_meta_lineups_var_pop_fieldsGenqlSelection - var_samp?: utility_meta_lineups_var_samp_fieldsGenqlSelection - variance?: utility_meta_lineups_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface utility_meta_lineups_avg_fieldsGenqlSelection{ - land_x?: boolean | number - land_y?: boolean | number - land_z?: boolean | number - lineups?: boolean | number - matches?: boolean | number - origin_x?: boolean | number - origin_y?: boolean | number - origin_z?: boolean | number - throwers?: boolean | number - throws?: boolean | number - view_pitch?: boolean | number - view_yaw?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "utility_meta_lineups". All fields are combined with a logical 'AND'. */ -export interface utility_meta_lineups_bool_exp {_and?: (utility_meta_lineups_bool_exp[] | null),_not?: (utility_meta_lineups_bool_exp | null),_or?: (utility_meta_lineups_bool_exp[] | null),first_seen_at?: (timestamptz_comparison_exp | null),land_x?: (float8_comparison_exp | null),land_y?: (float8_comparison_exp | null),land_z?: (float8_comparison_exp | null),last_seen_at?: (timestamptz_comparison_exp | null),lineup_bucket?: (String_comparison_exp | null),lineups?: (Int_comparison_exp | null),map_name?: (String_comparison_exp | null),matches?: (Int_comparison_exp | null),origin_x?: (float8_comparison_exp | null),origin_y?: (float8_comparison_exp | null),origin_z?: (float8_comparison_exp | null),refreshed_at?: (timestamptz_comparison_exp | null),side?: (e_sides_enum_comparison_exp | null),technique?: (e_utility_techniques_enum_comparison_exp | null),throw_strength?: (String_comparison_exp | null),throwers?: (Int_comparison_exp | null),throws?: (Int_comparison_exp | null),utility_type?: (e_utility_types_enum_comparison_exp | null),view_pitch?: (float8_comparison_exp | null),view_yaw?: (float8_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "utility_meta_lineups" */ -export interface utility_meta_lineups_inc_input {land_x?: (Scalars['float8'] | null),land_y?: (Scalars['float8'] | null),land_z?: (Scalars['float8'] | null),lineups?: (Scalars['Int'] | null),matches?: (Scalars['Int'] | null),origin_x?: (Scalars['float8'] | null),origin_y?: (Scalars['float8'] | null),origin_z?: (Scalars['float8'] | null),throwers?: (Scalars['Int'] | null),throws?: (Scalars['Int'] | null),view_pitch?: (Scalars['float8'] | null),view_yaw?: (Scalars['float8'] | null)} - - -/** input type for inserting data into table "utility_meta_lineups" */ -export interface utility_meta_lineups_insert_input {first_seen_at?: (Scalars['timestamptz'] | null),land_x?: (Scalars['float8'] | null),land_y?: (Scalars['float8'] | null),land_z?: (Scalars['float8'] | null),last_seen_at?: (Scalars['timestamptz'] | null),lineup_bucket?: (Scalars['String'] | null),lineups?: (Scalars['Int'] | null),map_name?: (Scalars['String'] | null),matches?: (Scalars['Int'] | null),origin_x?: (Scalars['float8'] | null),origin_y?: (Scalars['float8'] | null),origin_z?: (Scalars['float8'] | null),refreshed_at?: (Scalars['timestamptz'] | null),side?: (e_sides_enum | null),technique?: (e_utility_techniques_enum | null),throw_strength?: (Scalars['String'] | null),throwers?: (Scalars['Int'] | null),throws?: (Scalars['Int'] | null),utility_type?: (e_utility_types_enum | null),view_pitch?: (Scalars['float8'] | null),view_yaw?: (Scalars['float8'] | null)} - - -/** aggregate max on columns */ -export interface utility_meta_lineups_max_fieldsGenqlSelection{ - first_seen_at?: boolean | number - land_x?: boolean | number - land_y?: boolean | number - land_z?: boolean | number - last_seen_at?: boolean | number - lineup_bucket?: boolean | number - lineups?: boolean | number - map_name?: boolean | number - matches?: boolean | number - origin_x?: boolean | number - origin_y?: boolean | number - origin_z?: boolean | number - refreshed_at?: boolean | number - throw_strength?: boolean | number - throwers?: boolean | number - throws?: boolean | number - view_pitch?: boolean | number - view_yaw?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface utility_meta_lineups_min_fieldsGenqlSelection{ - first_seen_at?: boolean | number - land_x?: boolean | number - land_y?: boolean | number - land_z?: boolean | number - last_seen_at?: boolean | number - lineup_bucket?: boolean | number - lineups?: boolean | number - map_name?: boolean | number - matches?: boolean | number - origin_x?: boolean | number - origin_y?: boolean | number - origin_z?: boolean | number - refreshed_at?: boolean | number - throw_strength?: boolean | number - throwers?: boolean | number - throws?: boolean | number - view_pitch?: boolean | number - view_yaw?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "utility_meta_lineups" */ -export interface utility_meta_lineups_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: utility_meta_lineupsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "utility_meta_lineups" */ -export interface utility_meta_lineups_on_conflict {constraint: utility_meta_lineups_constraint,update_columns?: utility_meta_lineups_update_column[],where?: (utility_meta_lineups_bool_exp | null)} - - -/** Ordering options when selecting data from "utility_meta_lineups". */ -export interface utility_meta_lineups_order_by {first_seen_at?: (order_by | null),land_x?: (order_by | null),land_y?: (order_by | null),land_z?: (order_by | null),last_seen_at?: (order_by | null),lineup_bucket?: (order_by | null),lineups?: (order_by | null),map_name?: (order_by | null),matches?: (order_by | null),origin_x?: (order_by | null),origin_y?: (order_by | null),origin_z?: (order_by | null),refreshed_at?: (order_by | null),side?: (order_by | null),technique?: (order_by | null),throw_strength?: (order_by | null),throwers?: (order_by | null),throws?: (order_by | null),utility_type?: (order_by | null),view_pitch?: (order_by | null),view_yaw?: (order_by | null)} - - -/** primary key columns input for table: utility_meta_lineups */ -export interface utility_meta_lineups_pk_columns_input {lineup_bucket: Scalars['String']} - - -/** input type for updating data in table "utility_meta_lineups" */ -export interface utility_meta_lineups_set_input {first_seen_at?: (Scalars['timestamptz'] | null),land_x?: (Scalars['float8'] | null),land_y?: (Scalars['float8'] | null),land_z?: (Scalars['float8'] | null),last_seen_at?: (Scalars['timestamptz'] | null),lineup_bucket?: (Scalars['String'] | null),lineups?: (Scalars['Int'] | null),map_name?: (Scalars['String'] | null),matches?: (Scalars['Int'] | null),origin_x?: (Scalars['float8'] | null),origin_y?: (Scalars['float8'] | null),origin_z?: (Scalars['float8'] | null),refreshed_at?: (Scalars['timestamptz'] | null),side?: (e_sides_enum | null),technique?: (e_utility_techniques_enum | null),throw_strength?: (Scalars['String'] | null),throwers?: (Scalars['Int'] | null),throws?: (Scalars['Int'] | null),utility_type?: (e_utility_types_enum | null),view_pitch?: (Scalars['float8'] | null),view_yaw?: (Scalars['float8'] | null)} - - -/** aggregate stddev on columns */ -export interface utility_meta_lineups_stddev_fieldsGenqlSelection{ - land_x?: boolean | number - land_y?: boolean | number - land_z?: boolean | number - lineups?: boolean | number - matches?: boolean | number - origin_x?: boolean | number - origin_y?: boolean | number - origin_z?: boolean | number - throwers?: boolean | number - throws?: boolean | number - view_pitch?: boolean | number - view_yaw?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface utility_meta_lineups_stddev_pop_fieldsGenqlSelection{ - land_x?: boolean | number - land_y?: boolean | number - land_z?: boolean | number - lineups?: boolean | number - matches?: boolean | number - origin_x?: boolean | number - origin_y?: boolean | number - origin_z?: boolean | number - throwers?: boolean | number - throws?: boolean | number - view_pitch?: boolean | number - view_yaw?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface utility_meta_lineups_stddev_samp_fieldsGenqlSelection{ - land_x?: boolean | number - land_y?: boolean | number - land_z?: boolean | number - lineups?: boolean | number - matches?: boolean | number - origin_x?: boolean | number - origin_y?: boolean | number - origin_z?: boolean | number - throwers?: boolean | number - throws?: boolean | number - view_pitch?: boolean | number - view_yaw?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "utility_meta_lineups" */ -export interface utility_meta_lineups_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: utility_meta_lineups_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface utility_meta_lineups_stream_cursor_value_input {first_seen_at?: (Scalars['timestamptz'] | null),land_x?: (Scalars['float8'] | null),land_y?: (Scalars['float8'] | null),land_z?: (Scalars['float8'] | null),last_seen_at?: (Scalars['timestamptz'] | null),lineup_bucket?: (Scalars['String'] | null),lineups?: (Scalars['Int'] | null),map_name?: (Scalars['String'] | null),matches?: (Scalars['Int'] | null),origin_x?: (Scalars['float8'] | null),origin_y?: (Scalars['float8'] | null),origin_z?: (Scalars['float8'] | null),refreshed_at?: (Scalars['timestamptz'] | null),side?: (e_sides_enum | null),technique?: (e_utility_techniques_enum | null),throw_strength?: (Scalars['String'] | null),throwers?: (Scalars['Int'] | null),throws?: (Scalars['Int'] | null),utility_type?: (e_utility_types_enum | null),view_pitch?: (Scalars['float8'] | null),view_yaw?: (Scalars['float8'] | null)} - - -/** aggregate sum on columns */ -export interface utility_meta_lineups_sum_fieldsGenqlSelection{ - land_x?: boolean | number - land_y?: boolean | number - land_z?: boolean | number - lineups?: boolean | number - matches?: boolean | number - origin_x?: boolean | number - origin_y?: boolean | number - origin_z?: boolean | number - throwers?: boolean | number - throws?: boolean | number - view_pitch?: boolean | number - view_yaw?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface utility_meta_lineups_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (utility_meta_lineups_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (utility_meta_lineups_set_input | null), -/** filter the rows which have to be updated */ -where: utility_meta_lineups_bool_exp} - - -/** aggregate var_pop on columns */ -export interface utility_meta_lineups_var_pop_fieldsGenqlSelection{ - land_x?: boolean | number - land_y?: boolean | number - land_z?: boolean | number - lineups?: boolean | number - matches?: boolean | number - origin_x?: boolean | number - origin_y?: boolean | number - origin_z?: boolean | number - throwers?: boolean | number - throws?: boolean | number - view_pitch?: boolean | number - view_yaw?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface utility_meta_lineups_var_samp_fieldsGenqlSelection{ - land_x?: boolean | number - land_y?: boolean | number - land_z?: boolean | number - lineups?: boolean | number - matches?: boolean | number - origin_x?: boolean | number - origin_y?: boolean | number - origin_z?: boolean | number - throwers?: boolean | number - throws?: boolean | number - view_pitch?: boolean | number - view_yaw?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface utility_meta_lineups_variance_fieldsGenqlSelection{ - land_x?: boolean | number - land_y?: boolean | number - land_z?: boolean | number - lineups?: boolean | number - matches?: boolean | number - origin_x?: boolean | number - origin_y?: boolean | number - origin_z?: boolean | number - throwers?: boolean | number - throws?: boolean | number - view_pitch?: boolean | number - view_yaw?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "utility_playbook_steps" */ -export interface utility_playbook_stepsGenqlSelection{ - /** An object relationship */ - assigned_player?: playersGenqlSelection - assigned_steam_id?: boolean | number - created_at?: boolean | number - id?: boolean | number - note?: boolean | number - offset_ms?: boolean | number - /** An object relationship */ - playbook?: utility_playbooksGenqlSelection - playbook_id?: boolean | number - step_order?: boolean | number - /** An object relationship */ - utility_lineup?: utility_lineupsGenqlSelection - utility_lineup_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "utility_playbook_steps" */ -export interface utility_playbook_steps_aggregateGenqlSelection{ - aggregate?: utility_playbook_steps_aggregate_fieldsGenqlSelection - nodes?: utility_playbook_stepsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface utility_playbook_steps_aggregate_bool_exp {count?: (utility_playbook_steps_aggregate_bool_exp_count | null)} - -export interface utility_playbook_steps_aggregate_bool_exp_count {arguments?: (utility_playbook_steps_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (utility_playbook_steps_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "utility_playbook_steps" */ -export interface utility_playbook_steps_aggregate_fieldsGenqlSelection{ - avg?: utility_playbook_steps_avg_fieldsGenqlSelection - count?: { __args: {columns?: (utility_playbook_steps_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: utility_playbook_steps_max_fieldsGenqlSelection - min?: utility_playbook_steps_min_fieldsGenqlSelection - stddev?: utility_playbook_steps_stddev_fieldsGenqlSelection - stddev_pop?: utility_playbook_steps_stddev_pop_fieldsGenqlSelection - stddev_samp?: utility_playbook_steps_stddev_samp_fieldsGenqlSelection - sum?: utility_playbook_steps_sum_fieldsGenqlSelection - var_pop?: utility_playbook_steps_var_pop_fieldsGenqlSelection - var_samp?: utility_playbook_steps_var_samp_fieldsGenqlSelection - variance?: utility_playbook_steps_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "utility_playbook_steps" */ -export interface utility_playbook_steps_aggregate_order_by {avg?: (utility_playbook_steps_avg_order_by | null),count?: (order_by | null),max?: (utility_playbook_steps_max_order_by | null),min?: (utility_playbook_steps_min_order_by | null),stddev?: (utility_playbook_steps_stddev_order_by | null),stddev_pop?: (utility_playbook_steps_stddev_pop_order_by | null),stddev_samp?: (utility_playbook_steps_stddev_samp_order_by | null),sum?: (utility_playbook_steps_sum_order_by | null),var_pop?: (utility_playbook_steps_var_pop_order_by | null),var_samp?: (utility_playbook_steps_var_samp_order_by | null),variance?: (utility_playbook_steps_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "utility_playbook_steps" */ -export interface utility_playbook_steps_arr_rel_insert_input {data: utility_playbook_steps_insert_input[], -/** upsert condition */ -on_conflict?: (utility_playbook_steps_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface utility_playbook_steps_avg_fieldsGenqlSelection{ - assigned_steam_id?: boolean | number - offset_ms?: boolean | number - step_order?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "utility_playbook_steps" */ -export interface utility_playbook_steps_avg_order_by {assigned_steam_id?: (order_by | null),offset_ms?: (order_by | null),step_order?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "utility_playbook_steps". All fields are combined with a logical 'AND'. */ -export interface utility_playbook_steps_bool_exp {_and?: (utility_playbook_steps_bool_exp[] | null),_not?: (utility_playbook_steps_bool_exp | null),_or?: (utility_playbook_steps_bool_exp[] | null),assigned_player?: (players_bool_exp | null),assigned_steam_id?: (bigint_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),note?: (String_comparison_exp | null),offset_ms?: (Int_comparison_exp | null),playbook?: (utility_playbooks_bool_exp | null),playbook_id?: (uuid_comparison_exp | null),step_order?: (Int_comparison_exp | null),utility_lineup?: (utility_lineups_bool_exp | null),utility_lineup_id?: (uuid_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "utility_playbook_steps" */ -export interface utility_playbook_steps_inc_input {assigned_steam_id?: (Scalars['bigint'] | null),offset_ms?: (Scalars['Int'] | null),step_order?: (Scalars['Int'] | null)} - - -/** input type for inserting data into table "utility_playbook_steps" */ -export interface utility_playbook_steps_insert_input {assigned_player?: (players_obj_rel_insert_input | null),assigned_steam_id?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),note?: (Scalars['String'] | null),offset_ms?: (Scalars['Int'] | null),playbook?: (utility_playbooks_obj_rel_insert_input | null),playbook_id?: (Scalars['uuid'] | null),step_order?: (Scalars['Int'] | null),utility_lineup?: (utility_lineups_obj_rel_insert_input | null),utility_lineup_id?: (Scalars['uuid'] | null)} - - -/** aggregate max on columns */ -export interface utility_playbook_steps_max_fieldsGenqlSelection{ - assigned_steam_id?: boolean | number - created_at?: boolean | number - id?: boolean | number - note?: boolean | number - offset_ms?: boolean | number - playbook_id?: boolean | number - step_order?: boolean | number - utility_lineup_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "utility_playbook_steps" */ -export interface utility_playbook_steps_max_order_by {assigned_steam_id?: (order_by | null),created_at?: (order_by | null),id?: (order_by | null),note?: (order_by | null),offset_ms?: (order_by | null),playbook_id?: (order_by | null),step_order?: (order_by | null),utility_lineup_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface utility_playbook_steps_min_fieldsGenqlSelection{ - assigned_steam_id?: boolean | number - created_at?: boolean | number - id?: boolean | number - note?: boolean | number - offset_ms?: boolean | number - playbook_id?: boolean | number - step_order?: boolean | number - utility_lineup_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "utility_playbook_steps" */ -export interface utility_playbook_steps_min_order_by {assigned_steam_id?: (order_by | null),created_at?: (order_by | null),id?: (order_by | null),note?: (order_by | null),offset_ms?: (order_by | null),playbook_id?: (order_by | null),step_order?: (order_by | null),utility_lineup_id?: (order_by | null)} - - -/** response of any mutation on the table "utility_playbook_steps" */ -export interface utility_playbook_steps_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: utility_playbook_stepsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "utility_playbook_steps" */ -export interface utility_playbook_steps_on_conflict {constraint: utility_playbook_steps_constraint,update_columns?: utility_playbook_steps_update_column[],where?: (utility_playbook_steps_bool_exp | null)} - - -/** Ordering options when selecting data from "utility_playbook_steps". */ -export interface utility_playbook_steps_order_by {assigned_player?: (players_order_by | null),assigned_steam_id?: (order_by | null),created_at?: (order_by | null),id?: (order_by | null),note?: (order_by | null),offset_ms?: (order_by | null),playbook?: (utility_playbooks_order_by | null),playbook_id?: (order_by | null),step_order?: (order_by | null),utility_lineup?: (utility_lineups_order_by | null),utility_lineup_id?: (order_by | null)} - - -/** primary key columns input for table: utility_playbook_steps */ -export interface utility_playbook_steps_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "utility_playbook_steps" */ -export interface utility_playbook_steps_set_input {assigned_steam_id?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),note?: (Scalars['String'] | null),offset_ms?: (Scalars['Int'] | null),playbook_id?: (Scalars['uuid'] | null),step_order?: (Scalars['Int'] | null),utility_lineup_id?: (Scalars['uuid'] | null)} - - -/** aggregate stddev on columns */ -export interface utility_playbook_steps_stddev_fieldsGenqlSelection{ - assigned_steam_id?: boolean | number - offset_ms?: boolean | number - step_order?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "utility_playbook_steps" */ -export interface utility_playbook_steps_stddev_order_by {assigned_steam_id?: (order_by | null),offset_ms?: (order_by | null),step_order?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface utility_playbook_steps_stddev_pop_fieldsGenqlSelection{ - assigned_steam_id?: boolean | number - offset_ms?: boolean | number - step_order?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "utility_playbook_steps" */ -export interface utility_playbook_steps_stddev_pop_order_by {assigned_steam_id?: (order_by | null),offset_ms?: (order_by | null),step_order?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface utility_playbook_steps_stddev_samp_fieldsGenqlSelection{ - assigned_steam_id?: boolean | number - offset_ms?: boolean | number - step_order?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "utility_playbook_steps" */ -export interface utility_playbook_steps_stddev_samp_order_by {assigned_steam_id?: (order_by | null),offset_ms?: (order_by | null),step_order?: (order_by | null)} - - -/** Streaming cursor of the table "utility_playbook_steps" */ -export interface utility_playbook_steps_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: utility_playbook_steps_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface utility_playbook_steps_stream_cursor_value_input {assigned_steam_id?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),note?: (Scalars['String'] | null),offset_ms?: (Scalars['Int'] | null),playbook_id?: (Scalars['uuid'] | null),step_order?: (Scalars['Int'] | null),utility_lineup_id?: (Scalars['uuid'] | null)} - - -/** aggregate sum on columns */ -export interface utility_playbook_steps_sum_fieldsGenqlSelection{ - assigned_steam_id?: boolean | number - offset_ms?: boolean | number - step_order?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "utility_playbook_steps" */ -export interface utility_playbook_steps_sum_order_by {assigned_steam_id?: (order_by | null),offset_ms?: (order_by | null),step_order?: (order_by | null)} - -export interface utility_playbook_steps_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (utility_playbook_steps_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (utility_playbook_steps_set_input | null), -/** filter the rows which have to be updated */ -where: utility_playbook_steps_bool_exp} - - -/** aggregate var_pop on columns */ -export interface utility_playbook_steps_var_pop_fieldsGenqlSelection{ - assigned_steam_id?: boolean | number - offset_ms?: boolean | number - step_order?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "utility_playbook_steps" */ -export interface utility_playbook_steps_var_pop_order_by {assigned_steam_id?: (order_by | null),offset_ms?: (order_by | null),step_order?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface utility_playbook_steps_var_samp_fieldsGenqlSelection{ - assigned_steam_id?: boolean | number - offset_ms?: boolean | number - step_order?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "utility_playbook_steps" */ -export interface utility_playbook_steps_var_samp_order_by {assigned_steam_id?: (order_by | null),offset_ms?: (order_by | null),step_order?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface utility_playbook_steps_variance_fieldsGenqlSelection{ - assigned_steam_id?: boolean | number - offset_ms?: boolean | number - step_order?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "utility_playbook_steps" */ -export interface utility_playbook_steps_variance_order_by {assigned_steam_id?: (order_by | null),offset_ms?: (order_by | null),step_order?: (order_by | null)} - - -/** columns and relationships of "utility_playbooks" */ -export interface utility_playbooksGenqlSelection{ - /** A computed field, executes function "can_edit_utility_playbook" */ - can_edit?: boolean | number - /** A computed field, executes function "can_view_utility_playbook" */ - can_view?: boolean | number - created_at?: boolean | number - description?: boolean | number - id?: boolean | number - map_name?: boolean | number - name?: boolean | number - /** An object relationship */ - owner?: playersGenqlSelection - owner_steam_id?: boolean | number - side?: boolean | number - /** An array relationship */ - steps?: (utility_playbook_stepsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_playbook_steps_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_playbook_steps_order_by[] | null), - /** filter the rows returned */ - where?: (utility_playbook_steps_bool_exp | null)} }) - /** An aggregate relationship */ - steps_aggregate?: (utility_playbook_steps_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_playbook_steps_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_playbook_steps_order_by[] | null), - /** filter the rows returned */ - where?: (utility_playbook_steps_bool_exp | null)} }) - /** An object relationship */ - team?: teamsGenqlSelection - team_id?: boolean | number - updated_at?: boolean | number - visibility?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "utility_playbooks" */ -export interface utility_playbooks_aggregateGenqlSelection{ - aggregate?: utility_playbooks_aggregate_fieldsGenqlSelection - nodes?: utility_playbooksGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "utility_playbooks" */ -export interface utility_playbooks_aggregate_fieldsGenqlSelection{ - avg?: utility_playbooks_avg_fieldsGenqlSelection - count?: { __args: {columns?: (utility_playbooks_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: utility_playbooks_max_fieldsGenqlSelection - min?: utility_playbooks_min_fieldsGenqlSelection - stddev?: utility_playbooks_stddev_fieldsGenqlSelection - stddev_pop?: utility_playbooks_stddev_pop_fieldsGenqlSelection - stddev_samp?: utility_playbooks_stddev_samp_fieldsGenqlSelection - sum?: utility_playbooks_sum_fieldsGenqlSelection - var_pop?: utility_playbooks_var_pop_fieldsGenqlSelection - var_samp?: utility_playbooks_var_samp_fieldsGenqlSelection - variance?: utility_playbooks_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface utility_playbooks_avg_fieldsGenqlSelection{ - owner_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "utility_playbooks". All fields are combined with a logical 'AND'. */ -export interface utility_playbooks_bool_exp {_and?: (utility_playbooks_bool_exp[] | null),_not?: (utility_playbooks_bool_exp | null),_or?: (utility_playbooks_bool_exp[] | null),can_edit?: (Boolean_comparison_exp | null),can_view?: (Boolean_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),description?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),map_name?: (String_comparison_exp | null),name?: (String_comparison_exp | null),owner?: (players_bool_exp | null),owner_steam_id?: (bigint_comparison_exp | null),side?: (e_sides_enum_comparison_exp | null),steps?: (utility_playbook_steps_bool_exp | null),steps_aggregate?: (utility_playbook_steps_aggregate_bool_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null),visibility?: (e_utility_visibility_enum_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "utility_playbooks" */ -export interface utility_playbooks_inc_input {owner_steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "utility_playbooks" */ -export interface utility_playbooks_insert_input {created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),map_name?: (Scalars['String'] | null),name?: (Scalars['String'] | null),owner?: (players_obj_rel_insert_input | null),owner_steam_id?: (Scalars['bigint'] | null),side?: (e_sides_enum | null),steps?: (utility_playbook_steps_arr_rel_insert_input | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null),visibility?: (e_utility_visibility_enum | null)} - - -/** aggregate max on columns */ -export interface utility_playbooks_max_fieldsGenqlSelection{ - created_at?: boolean | number - description?: boolean | number - id?: boolean | number - map_name?: boolean | number - name?: boolean | number - owner_steam_id?: boolean | number - team_id?: boolean | number - updated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface utility_playbooks_min_fieldsGenqlSelection{ - created_at?: boolean | number - description?: boolean | number - id?: boolean | number - map_name?: boolean | number - name?: boolean | number - owner_steam_id?: boolean | number - team_id?: boolean | number - updated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "utility_playbooks" */ -export interface utility_playbooks_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: utility_playbooksGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "utility_playbooks" */ -export interface utility_playbooks_obj_rel_insert_input {data: utility_playbooks_insert_input, -/** upsert condition */ -on_conflict?: (utility_playbooks_on_conflict | null)} - - -/** on_conflict condition type for table "utility_playbooks" */ -export interface utility_playbooks_on_conflict {constraint: utility_playbooks_constraint,update_columns?: utility_playbooks_update_column[],where?: (utility_playbooks_bool_exp | null)} - - -/** Ordering options when selecting data from "utility_playbooks". */ -export interface utility_playbooks_order_by {can_edit?: (order_by | null),can_view?: (order_by | null),created_at?: (order_by | null),description?: (order_by | null),id?: (order_by | null),map_name?: (order_by | null),name?: (order_by | null),owner?: (players_order_by | null),owner_steam_id?: (order_by | null),side?: (order_by | null),steps_aggregate?: (utility_playbook_steps_aggregate_order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null),updated_at?: (order_by | null),visibility?: (order_by | null)} - - -/** primary key columns input for table: utility_playbooks */ -export interface utility_playbooks_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "utility_playbooks" */ -export interface utility_playbooks_set_input {created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),map_name?: (Scalars['String'] | null),name?: (Scalars['String'] | null),owner_steam_id?: (Scalars['bigint'] | null),side?: (e_sides_enum | null),team_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null),visibility?: (e_utility_visibility_enum | null)} - - -/** aggregate stddev on columns */ -export interface utility_playbooks_stddev_fieldsGenqlSelection{ - owner_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface utility_playbooks_stddev_pop_fieldsGenqlSelection{ - owner_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface utility_playbooks_stddev_samp_fieldsGenqlSelection{ - owner_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "utility_playbooks" */ -export interface utility_playbooks_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: utility_playbooks_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface utility_playbooks_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),map_name?: (Scalars['String'] | null),name?: (Scalars['String'] | null),owner_steam_id?: (Scalars['bigint'] | null),side?: (e_sides_enum | null),team_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null),visibility?: (e_utility_visibility_enum | null)} - - -/** aggregate sum on columns */ -export interface utility_playbooks_sum_fieldsGenqlSelection{ - owner_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface utility_playbooks_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (utility_playbooks_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (utility_playbooks_set_input | null), -/** filter the rows which have to be updated */ -where: utility_playbooks_bool_exp} - - -/** aggregate var_pop on columns */ -export interface utility_playbooks_var_pop_fieldsGenqlSelection{ - owner_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface utility_playbooks_var_samp_fieldsGenqlSelection{ - owner_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface utility_playbooks_variance_fieldsGenqlSelection{ - owner_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "utility_practice_invites" */ -export interface utility_practice_invitesGenqlSelection{ - created_at?: boolean | number - /** An object relationship */ - invited_by?: playersGenqlSelection - invited_by_steam_id?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - /** An object relationship */ - session?: utility_practice_sessionsGenqlSelection - steam_id?: boolean | number - utility_practice_session_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "utility_practice_invites" */ -export interface utility_practice_invites_aggregateGenqlSelection{ - aggregate?: utility_practice_invites_aggregate_fieldsGenqlSelection - nodes?: utility_practice_invitesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface utility_practice_invites_aggregate_bool_exp {count?: (utility_practice_invites_aggregate_bool_exp_count | null)} - -export interface utility_practice_invites_aggregate_bool_exp_count {arguments?: (utility_practice_invites_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (utility_practice_invites_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "utility_practice_invites" */ -export interface utility_practice_invites_aggregate_fieldsGenqlSelection{ - avg?: utility_practice_invites_avg_fieldsGenqlSelection - count?: { __args: {columns?: (utility_practice_invites_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: utility_practice_invites_max_fieldsGenqlSelection - min?: utility_practice_invites_min_fieldsGenqlSelection - stddev?: utility_practice_invites_stddev_fieldsGenqlSelection - stddev_pop?: utility_practice_invites_stddev_pop_fieldsGenqlSelection - stddev_samp?: utility_practice_invites_stddev_samp_fieldsGenqlSelection - sum?: utility_practice_invites_sum_fieldsGenqlSelection - var_pop?: utility_practice_invites_var_pop_fieldsGenqlSelection - var_samp?: utility_practice_invites_var_samp_fieldsGenqlSelection - variance?: utility_practice_invites_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "utility_practice_invites" */ -export interface utility_practice_invites_aggregate_order_by {avg?: (utility_practice_invites_avg_order_by | null),count?: (order_by | null),max?: (utility_practice_invites_max_order_by | null),min?: (utility_practice_invites_min_order_by | null),stddev?: (utility_practice_invites_stddev_order_by | null),stddev_pop?: (utility_practice_invites_stddev_pop_order_by | null),stddev_samp?: (utility_practice_invites_stddev_samp_order_by | null),sum?: (utility_practice_invites_sum_order_by | null),var_pop?: (utility_practice_invites_var_pop_order_by | null),var_samp?: (utility_practice_invites_var_samp_order_by | null),variance?: (utility_practice_invites_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "utility_practice_invites" */ -export interface utility_practice_invites_arr_rel_insert_input {data: utility_practice_invites_insert_input[], -/** upsert condition */ -on_conflict?: (utility_practice_invites_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface utility_practice_invites_avg_fieldsGenqlSelection{ - invited_by_steam_id?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "utility_practice_invites" */ -export interface utility_practice_invites_avg_order_by {invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "utility_practice_invites". All fields are combined with a logical 'AND'. */ -export interface utility_practice_invites_bool_exp {_and?: (utility_practice_invites_bool_exp[] | null),_not?: (utility_practice_invites_bool_exp | null),_or?: (utility_practice_invites_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),invited_by?: (players_bool_exp | null),invited_by_steam_id?: (bigint_comparison_exp | null),player?: (players_bool_exp | null),session?: (utility_practice_sessions_bool_exp | null),steam_id?: (bigint_comparison_exp | null),utility_practice_session_id?: (uuid_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "utility_practice_invites" */ -export interface utility_practice_invites_inc_input {invited_by_steam_id?: (Scalars['bigint'] | null),steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "utility_practice_invites" */ -export interface utility_practice_invites_insert_input {created_at?: (Scalars['timestamptz'] | null),invited_by?: (players_obj_rel_insert_input | null),invited_by_steam_id?: (Scalars['bigint'] | null),player?: (players_obj_rel_insert_input | null),session?: (utility_practice_sessions_obj_rel_insert_input | null),steam_id?: (Scalars['bigint'] | null),utility_practice_session_id?: (Scalars['uuid'] | null)} - - -/** aggregate max on columns */ -export interface utility_practice_invites_max_fieldsGenqlSelection{ - created_at?: boolean | number - invited_by_steam_id?: boolean | number - steam_id?: boolean | number - utility_practice_session_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "utility_practice_invites" */ -export interface utility_practice_invites_max_order_by {created_at?: (order_by | null),invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null),utility_practice_session_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface utility_practice_invites_min_fieldsGenqlSelection{ - created_at?: boolean | number - invited_by_steam_id?: boolean | number - steam_id?: boolean | number - utility_practice_session_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "utility_practice_invites" */ -export interface utility_practice_invites_min_order_by {created_at?: (order_by | null),invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null),utility_practice_session_id?: (order_by | null)} - - -/** response of any mutation on the table "utility_practice_invites" */ -export interface utility_practice_invites_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: utility_practice_invitesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** on_conflict condition type for table "utility_practice_invites" */ -export interface utility_practice_invites_on_conflict {constraint: utility_practice_invites_constraint,update_columns?: utility_practice_invites_update_column[],where?: (utility_practice_invites_bool_exp | null)} - - -/** Ordering options when selecting data from "utility_practice_invites". */ -export interface utility_practice_invites_order_by {created_at?: (order_by | null),invited_by?: (players_order_by | null),invited_by_steam_id?: (order_by | null),player?: (players_order_by | null),session?: (utility_practice_sessions_order_by | null),steam_id?: (order_by | null),utility_practice_session_id?: (order_by | null)} - - -/** primary key columns input for table: utility_practice_invites */ -export interface utility_practice_invites_pk_columns_input {steam_id: Scalars['bigint'],utility_practice_session_id: Scalars['uuid']} - - -/** input type for updating data in table "utility_practice_invites" */ -export interface utility_practice_invites_set_input {created_at?: (Scalars['timestamptz'] | null),invited_by_steam_id?: (Scalars['bigint'] | null),steam_id?: (Scalars['bigint'] | null),utility_practice_session_id?: (Scalars['uuid'] | null)} - - -/** aggregate stddev on columns */ -export interface utility_practice_invites_stddev_fieldsGenqlSelection{ - invited_by_steam_id?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "utility_practice_invites" */ -export interface utility_practice_invites_stddev_order_by {invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface utility_practice_invites_stddev_pop_fieldsGenqlSelection{ - invited_by_steam_id?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "utility_practice_invites" */ -export interface utility_practice_invites_stddev_pop_order_by {invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface utility_practice_invites_stddev_samp_fieldsGenqlSelection{ - invited_by_steam_id?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "utility_practice_invites" */ -export interface utility_practice_invites_stddev_samp_order_by {invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null)} - - -/** Streaming cursor of the table "utility_practice_invites" */ -export interface utility_practice_invites_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: utility_practice_invites_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface utility_practice_invites_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),invited_by_steam_id?: (Scalars['bigint'] | null),steam_id?: (Scalars['bigint'] | null),utility_practice_session_id?: (Scalars['uuid'] | null)} - - -/** aggregate sum on columns */ -export interface utility_practice_invites_sum_fieldsGenqlSelection{ - invited_by_steam_id?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "utility_practice_invites" */ -export interface utility_practice_invites_sum_order_by {invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null)} - -export interface utility_practice_invites_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (utility_practice_invites_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (utility_practice_invites_set_input | null), -/** filter the rows which have to be updated */ -where: utility_practice_invites_bool_exp} - - -/** aggregate var_pop on columns */ -export interface utility_practice_invites_var_pop_fieldsGenqlSelection{ - invited_by_steam_id?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "utility_practice_invites" */ -export interface utility_practice_invites_var_pop_order_by {invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface utility_practice_invites_var_samp_fieldsGenqlSelection{ - invited_by_steam_id?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "utility_practice_invites" */ -export interface utility_practice_invites_var_samp_order_by {invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface utility_practice_invites_variance_fieldsGenqlSelection{ - invited_by_steam_id?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "utility_practice_invites" */ -export interface utility_practice_invites_variance_order_by {invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null)} - - -/** columns and relationships of "utility_practice_sessions" */ -export interface utility_practice_sessionsGenqlSelection{ - access?: boolean | number - /** A computed field, executes function "can_manage_utility_practice_session" */ - can_manage?: boolean | number - /** A computed field, executes function "can_view_utility_practice_session" */ - can_view?: boolean | number - /** An object relationship */ - collection?: utility_collectionsGenqlSelection - collection_id?: boolean | number - /** A computed field, executes function "utility_practice_connection_link" */ - connection_link?: boolean | number - /** A computed field, executes function "utility_practice_connection_string" */ - connection_string?: boolean | number - created_at?: boolean | number - /** An object relationship */ - e_utility_practice_status?: e_utility_practice_statusesGenqlSelection - empty_since?: boolean | number - expires_at?: boolean | number - failure_reason?: boolean | number - first_joined_at?: boolean | number - /** An object relationship */ - host?: playersGenqlSelection - host_steam_id?: boolean | number - id?: boolean | number - invite_code?: boolean | number - /** An array relationship */ - invites?: (utility_practice_invitesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_practice_invites_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_practice_invites_order_by[] | null), - /** filter the rows returned */ - where?: (utility_practice_invites_bool_exp | null)} }) - /** An aggregate relationship */ - invites_aggregate?: (utility_practice_invites_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (utility_practice_invites_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (utility_practice_invites_order_by[] | null), - /** filter the rows returned */ - where?: (utility_practice_invites_bool_exp | null)} }) - /** A computed field, executes function "is_utility_practice_member" */ - is_member?: boolean | number - is_open?: boolean | number - is_render?: boolean | number - last_occupied_at?: boolean | number - map_changing_at?: boolean | number - map_name?: boolean | number - /** An object relationship */ - match?: matchesGenqlSelection - match_id?: boolean | number - notify_when_ready?: boolean | number - /** An object relationship */ - playbook?: utility_playbooksGenqlSelection - playbook_id?: boolean | number - region?: boolean | number - status?: boolean | number - /** An object relationship */ - team?: teamsGenqlSelection - team_id?: boolean | number - updated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "utility_practice_sessions" */ -export interface utility_practice_sessions_aggregateGenqlSelection{ - aggregate?: utility_practice_sessions_aggregate_fieldsGenqlSelection - nodes?: utility_practice_sessionsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface utility_practice_sessions_aggregate_bool_exp {bool_and?: (utility_practice_sessions_aggregate_bool_exp_bool_and | null),bool_or?: (utility_practice_sessions_aggregate_bool_exp_bool_or | null),count?: (utility_practice_sessions_aggregate_bool_exp_count | null)} - -export interface utility_practice_sessions_aggregate_bool_exp_bool_and {arguments: utility_practice_sessions_select_column_utility_practice_sessions_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_practice_sessions_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface utility_practice_sessions_aggregate_bool_exp_bool_or {arguments: utility_practice_sessions_select_column_utility_practice_sessions_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_practice_sessions_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface utility_practice_sessions_aggregate_bool_exp_count {arguments?: (utility_practice_sessions_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (utility_practice_sessions_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "utility_practice_sessions" */ -export interface utility_practice_sessions_aggregate_fieldsGenqlSelection{ - avg?: utility_practice_sessions_avg_fieldsGenqlSelection - count?: { __args: {columns?: (utility_practice_sessions_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: utility_practice_sessions_max_fieldsGenqlSelection - min?: utility_practice_sessions_min_fieldsGenqlSelection - stddev?: utility_practice_sessions_stddev_fieldsGenqlSelection - stddev_pop?: utility_practice_sessions_stddev_pop_fieldsGenqlSelection - stddev_samp?: utility_practice_sessions_stddev_samp_fieldsGenqlSelection - sum?: utility_practice_sessions_sum_fieldsGenqlSelection - var_pop?: utility_practice_sessions_var_pop_fieldsGenqlSelection - var_samp?: utility_practice_sessions_var_samp_fieldsGenqlSelection - variance?: utility_practice_sessions_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "utility_practice_sessions" */ -export interface utility_practice_sessions_aggregate_order_by {avg?: (utility_practice_sessions_avg_order_by | null),count?: (order_by | null),max?: (utility_practice_sessions_max_order_by | null),min?: (utility_practice_sessions_min_order_by | null),stddev?: (utility_practice_sessions_stddev_order_by | null),stddev_pop?: (utility_practice_sessions_stddev_pop_order_by | null),stddev_samp?: (utility_practice_sessions_stddev_samp_order_by | null),sum?: (utility_practice_sessions_sum_order_by | null),var_pop?: (utility_practice_sessions_var_pop_order_by | null),var_samp?: (utility_practice_sessions_var_samp_order_by | null),variance?: (utility_practice_sessions_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "utility_practice_sessions" */ -export interface utility_practice_sessions_arr_rel_insert_input {data: utility_practice_sessions_insert_input[], -/** upsert condition */ -on_conflict?: (utility_practice_sessions_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface utility_practice_sessions_avg_fieldsGenqlSelection{ - host_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "utility_practice_sessions" */ -export interface utility_practice_sessions_avg_order_by {host_steam_id?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "utility_practice_sessions". All fields are combined with a logical 'AND'. */ -export interface utility_practice_sessions_bool_exp {_and?: (utility_practice_sessions_bool_exp[] | null),_not?: (utility_practice_sessions_bool_exp | null),_or?: (utility_practice_sessions_bool_exp[] | null),access?: (e_utility_practice_access_enum_comparison_exp | null),can_manage?: (Boolean_comparison_exp | null),can_view?: (Boolean_comparison_exp | null),collection?: (utility_collections_bool_exp | null),collection_id?: (uuid_comparison_exp | null),connection_link?: (String_comparison_exp | null),connection_string?: (String_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),e_utility_practice_status?: (e_utility_practice_statuses_bool_exp | null),empty_since?: (timestamptz_comparison_exp | null),expires_at?: (timestamptz_comparison_exp | null),failure_reason?: (String_comparison_exp | null),first_joined_at?: (timestamptz_comparison_exp | null),host?: (players_bool_exp | null),host_steam_id?: (bigint_comparison_exp | null),id?: (uuid_comparison_exp | null),invite_code?: (String_comparison_exp | null),invites?: (utility_practice_invites_bool_exp | null),invites_aggregate?: (utility_practice_invites_aggregate_bool_exp | null),is_member?: (Boolean_comparison_exp | null),is_open?: (Boolean_comparison_exp | null),is_render?: (Boolean_comparison_exp | null),last_occupied_at?: (timestamptz_comparison_exp | null),map_changing_at?: (timestamptz_comparison_exp | null),map_name?: (String_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),notify_when_ready?: (Boolean_comparison_exp | null),playbook?: (utility_playbooks_bool_exp | null),playbook_id?: (uuid_comparison_exp | null),region?: (String_comparison_exp | null),status?: (e_utility_practice_statuses_enum_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "utility_practice_sessions" */ -export interface utility_practice_sessions_inc_input {host_steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "utility_practice_sessions" */ -export interface utility_practice_sessions_insert_input {access?: (e_utility_practice_access_enum | null),collection?: (utility_collections_obj_rel_insert_input | null),collection_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),e_utility_practice_status?: (e_utility_practice_statuses_obj_rel_insert_input | null),empty_since?: (Scalars['timestamptz'] | null),expires_at?: (Scalars['timestamptz'] | null),failure_reason?: (Scalars['String'] | null),first_joined_at?: (Scalars['timestamptz'] | null),host?: (players_obj_rel_insert_input | null),host_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),invite_code?: (Scalars['String'] | null),invites?: (utility_practice_invites_arr_rel_insert_input | null),is_open?: (Scalars['Boolean'] | null),is_render?: (Scalars['Boolean'] | null),last_occupied_at?: (Scalars['timestamptz'] | null),map_changing_at?: (Scalars['timestamptz'] | null),map_name?: (Scalars['String'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),notify_when_ready?: (Scalars['Boolean'] | null),playbook?: (utility_playbooks_obj_rel_insert_input | null),playbook_id?: (Scalars['uuid'] | null),region?: (Scalars['String'] | null),status?: (e_utility_practice_statuses_enum | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null)} - - -/** aggregate max on columns */ -export interface utility_practice_sessions_max_fieldsGenqlSelection{ - collection_id?: boolean | number - /** A computed field, executes function "utility_practice_connection_link" */ - connection_link?: boolean | number - /** A computed field, executes function "utility_practice_connection_string" */ - connection_string?: boolean | number - created_at?: boolean | number - empty_since?: boolean | number - expires_at?: boolean | number - failure_reason?: boolean | number - first_joined_at?: boolean | number - host_steam_id?: boolean | number - id?: boolean | number - invite_code?: boolean | number - last_occupied_at?: boolean | number - map_changing_at?: boolean | number - map_name?: boolean | number - match_id?: boolean | number - playbook_id?: boolean | number - region?: boolean | number - team_id?: boolean | number - updated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "utility_practice_sessions" */ -export interface utility_practice_sessions_max_order_by {collection_id?: (order_by | null),created_at?: (order_by | null),empty_since?: (order_by | null),expires_at?: (order_by | null),failure_reason?: (order_by | null),first_joined_at?: (order_by | null),host_steam_id?: (order_by | null),id?: (order_by | null),invite_code?: (order_by | null),last_occupied_at?: (order_by | null),map_changing_at?: (order_by | null),map_name?: (order_by | null),match_id?: (order_by | null),playbook_id?: (order_by | null),region?: (order_by | null),team_id?: (order_by | null),updated_at?: (order_by | null)} - - -/** aggregate min on columns */ -export interface utility_practice_sessions_min_fieldsGenqlSelection{ - collection_id?: boolean | number - /** A computed field, executes function "utility_practice_connection_link" */ - connection_link?: boolean | number - /** A computed field, executes function "utility_practice_connection_string" */ - connection_string?: boolean | number - created_at?: boolean | number - empty_since?: boolean | number - expires_at?: boolean | number - failure_reason?: boolean | number - first_joined_at?: boolean | number - host_steam_id?: boolean | number - id?: boolean | number - invite_code?: boolean | number - last_occupied_at?: boolean | number - map_changing_at?: boolean | number - map_name?: boolean | number - match_id?: boolean | number - playbook_id?: boolean | number - region?: boolean | number - team_id?: boolean | number - updated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "utility_practice_sessions" */ -export interface utility_practice_sessions_min_order_by {collection_id?: (order_by | null),created_at?: (order_by | null),empty_since?: (order_by | null),expires_at?: (order_by | null),failure_reason?: (order_by | null),first_joined_at?: (order_by | null),host_steam_id?: (order_by | null),id?: (order_by | null),invite_code?: (order_by | null),last_occupied_at?: (order_by | null),map_changing_at?: (order_by | null),map_name?: (order_by | null),match_id?: (order_by | null),playbook_id?: (order_by | null),region?: (order_by | null),team_id?: (order_by | null),updated_at?: (order_by | null)} - - -/** response of any mutation on the table "utility_practice_sessions" */ -export interface utility_practice_sessions_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: utility_practice_sessionsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "utility_practice_sessions" */ -export interface utility_practice_sessions_obj_rel_insert_input {data: utility_practice_sessions_insert_input, -/** upsert condition */ -on_conflict?: (utility_practice_sessions_on_conflict | null)} - - -/** on_conflict condition type for table "utility_practice_sessions" */ -export interface utility_practice_sessions_on_conflict {constraint: utility_practice_sessions_constraint,update_columns?: utility_practice_sessions_update_column[],where?: (utility_practice_sessions_bool_exp | null)} - - -/** Ordering options when selecting data from "utility_practice_sessions". */ -export interface utility_practice_sessions_order_by {access?: (order_by | null),can_manage?: (order_by | null),can_view?: (order_by | null),collection?: (utility_collections_order_by | null),collection_id?: (order_by | null),connection_link?: (order_by | null),connection_string?: (order_by | null),created_at?: (order_by | null),e_utility_practice_status?: (e_utility_practice_statuses_order_by | null),empty_since?: (order_by | null),expires_at?: (order_by | null),failure_reason?: (order_by | null),first_joined_at?: (order_by | null),host?: (players_order_by | null),host_steam_id?: (order_by | null),id?: (order_by | null),invite_code?: (order_by | null),invites_aggregate?: (utility_practice_invites_aggregate_order_by | null),is_member?: (order_by | null),is_open?: (order_by | null),is_render?: (order_by | null),last_occupied_at?: (order_by | null),map_changing_at?: (order_by | null),map_name?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),notify_when_ready?: (order_by | null),playbook?: (utility_playbooks_order_by | null),playbook_id?: (order_by | null),region?: (order_by | null),status?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null),updated_at?: (order_by | null)} - - -/** primary key columns input for table: utility_practice_sessions */ -export interface utility_practice_sessions_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "utility_practice_sessions" */ -export interface utility_practice_sessions_set_input {access?: (e_utility_practice_access_enum | null),collection_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),empty_since?: (Scalars['timestamptz'] | null),expires_at?: (Scalars['timestamptz'] | null),failure_reason?: (Scalars['String'] | null),first_joined_at?: (Scalars['timestamptz'] | null),host_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),invite_code?: (Scalars['String'] | null),is_open?: (Scalars['Boolean'] | null),is_render?: (Scalars['Boolean'] | null),last_occupied_at?: (Scalars['timestamptz'] | null),map_changing_at?: (Scalars['timestamptz'] | null),map_name?: (Scalars['String'] | null),match_id?: (Scalars['uuid'] | null),notify_when_ready?: (Scalars['Boolean'] | null),playbook_id?: (Scalars['uuid'] | null),region?: (Scalars['String'] | null),status?: (e_utility_practice_statuses_enum | null),team_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null)} - - -/** aggregate stddev on columns */ -export interface utility_practice_sessions_stddev_fieldsGenqlSelection{ - host_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "utility_practice_sessions" */ -export interface utility_practice_sessions_stddev_order_by {host_steam_id?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface utility_practice_sessions_stddev_pop_fieldsGenqlSelection{ - host_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "utility_practice_sessions" */ -export interface utility_practice_sessions_stddev_pop_order_by {host_steam_id?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface utility_practice_sessions_stddev_samp_fieldsGenqlSelection{ - host_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "utility_practice_sessions" */ -export interface utility_practice_sessions_stddev_samp_order_by {host_steam_id?: (order_by | null)} - - -/** Streaming cursor of the table "utility_practice_sessions" */ -export interface utility_practice_sessions_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: utility_practice_sessions_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface utility_practice_sessions_stream_cursor_value_input {access?: (e_utility_practice_access_enum | null),collection_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),empty_since?: (Scalars['timestamptz'] | null),expires_at?: (Scalars['timestamptz'] | null),failure_reason?: (Scalars['String'] | null),first_joined_at?: (Scalars['timestamptz'] | null),host_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),invite_code?: (Scalars['String'] | null),is_open?: (Scalars['Boolean'] | null),is_render?: (Scalars['Boolean'] | null),last_occupied_at?: (Scalars['timestamptz'] | null),map_changing_at?: (Scalars['timestamptz'] | null),map_name?: (Scalars['String'] | null),match_id?: (Scalars['uuid'] | null),notify_when_ready?: (Scalars['Boolean'] | null),playbook_id?: (Scalars['uuid'] | null),region?: (Scalars['String'] | null),status?: (e_utility_practice_statuses_enum | null),team_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null)} - - -/** aggregate sum on columns */ -export interface utility_practice_sessions_sum_fieldsGenqlSelection{ - host_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "utility_practice_sessions" */ -export interface utility_practice_sessions_sum_order_by {host_steam_id?: (order_by | null)} - -export interface utility_practice_sessions_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (utility_practice_sessions_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (utility_practice_sessions_set_input | null), -/** filter the rows which have to be updated */ -where: utility_practice_sessions_bool_exp} - - -/** aggregate var_pop on columns */ -export interface utility_practice_sessions_var_pop_fieldsGenqlSelection{ - host_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "utility_practice_sessions" */ -export interface utility_practice_sessions_var_pop_order_by {host_steam_id?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface utility_practice_sessions_var_samp_fieldsGenqlSelection{ - host_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "utility_practice_sessions" */ -export interface utility_practice_sessions_var_samp_order_by {host_steam_id?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface utility_practice_sessions_variance_fieldsGenqlSelection{ - host_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "utility_practice_sessions" */ -export interface utility_practice_sessions_variance_order_by {host_steam_id?: (order_by | null)} - - -/** Boolean expression to compare columns of type "uuid". All fields are combined with logical 'AND'. */ -export interface uuid_array_comparison_exp { -/** is the array contained in the given array value */ -_contained_in?: (Scalars['uuid'][] | null), -/** does the array contain the given value */ -_contains?: (Scalars['uuid'][] | null),_eq?: (Scalars['uuid'][] | null),_gt?: (Scalars['uuid'][] | null),_gte?: (Scalars['uuid'][] | null),_in?: (Scalars['uuid'][][] | null),_is_null?: (Scalars['Boolean'] | null),_lt?: (Scalars['uuid'][] | null),_lte?: (Scalars['uuid'][] | null),_neq?: (Scalars['uuid'][] | null),_nin?: (Scalars['uuid'][][] | null)} - - -/** Boolean expression to compare columns of type "uuid". All fields are combined with logical 'AND'. */ -export interface uuid_comparison_exp {_eq?: (Scalars['uuid'] | null),_gt?: (Scalars['uuid'] | null),_gte?: (Scalars['uuid'] | null),_in?: (Scalars['uuid'][] | null),_is_null?: (Scalars['Boolean'] | null),_lt?: (Scalars['uuid'] | null),_lte?: (Scalars['uuid'] | null),_neq?: (Scalars['uuid'] | null),_nin?: (Scalars['uuid'][] | null)} - - -/** columns and relationships of "v_event_player_stats" */ -export interface v_event_player_statsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - /** An object relationship */ - event?: eventsGenqlSelection - event_id?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "v_event_player_stats" */ -export interface v_event_player_stats_aggregateGenqlSelection{ - aggregate?: v_event_player_stats_aggregate_fieldsGenqlSelection - nodes?: v_event_player_statsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface v_event_player_stats_aggregate_bool_exp {avg?: (v_event_player_stats_aggregate_bool_exp_avg | null),corr?: (v_event_player_stats_aggregate_bool_exp_corr | null),count?: (v_event_player_stats_aggregate_bool_exp_count | null),covar_samp?: (v_event_player_stats_aggregate_bool_exp_covar_samp | null),max?: (v_event_player_stats_aggregate_bool_exp_max | null),min?: (v_event_player_stats_aggregate_bool_exp_min | null),stddev_samp?: (v_event_player_stats_aggregate_bool_exp_stddev_samp | null),sum?: (v_event_player_stats_aggregate_bool_exp_sum | null),var_samp?: (v_event_player_stats_aggregate_bool_exp_var_samp | null)} - -export interface v_event_player_stats_aggregate_bool_exp_avg {arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_avg_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_event_player_stats_bool_exp | null),predicate: float8_comparison_exp} - -export interface v_event_player_stats_aggregate_bool_exp_corr {arguments: v_event_player_stats_aggregate_bool_exp_corr_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (v_event_player_stats_bool_exp | null),predicate: float8_comparison_exp} - -export interface v_event_player_stats_aggregate_bool_exp_corr_arguments {X: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_corr_arguments_columns,Y: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_corr_arguments_columns} - -export interface v_event_player_stats_aggregate_bool_exp_count {arguments?: (v_event_player_stats_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (v_event_player_stats_bool_exp | null),predicate: Int_comparison_exp} - -export interface v_event_player_stats_aggregate_bool_exp_covar_samp {arguments: v_event_player_stats_aggregate_bool_exp_covar_samp_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (v_event_player_stats_bool_exp | null),predicate: float8_comparison_exp} - -export interface v_event_player_stats_aggregate_bool_exp_covar_samp_arguments {X: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_covar_samp_arguments_columns,Y: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_covar_samp_arguments_columns} - -export interface v_event_player_stats_aggregate_bool_exp_max {arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_max_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_event_player_stats_bool_exp | null),predicate: float8_comparison_exp} - -export interface v_event_player_stats_aggregate_bool_exp_min {arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_min_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_event_player_stats_bool_exp | null),predicate: float8_comparison_exp} - -export interface v_event_player_stats_aggregate_bool_exp_stddev_samp {arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_event_player_stats_bool_exp | null),predicate: float8_comparison_exp} - -export interface v_event_player_stats_aggregate_bool_exp_sum {arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_sum_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_event_player_stats_bool_exp | null),predicate: float8_comparison_exp} - -export interface v_event_player_stats_aggregate_bool_exp_var_samp {arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_var_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_event_player_stats_bool_exp | null),predicate: float8_comparison_exp} - - -/** aggregate fields of "v_event_player_stats" */ -export interface v_event_player_stats_aggregate_fieldsGenqlSelection{ - avg?: v_event_player_stats_avg_fieldsGenqlSelection - count?: { __args: {columns?: (v_event_player_stats_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: v_event_player_stats_max_fieldsGenqlSelection - min?: v_event_player_stats_min_fieldsGenqlSelection - stddev?: v_event_player_stats_stddev_fieldsGenqlSelection - stddev_pop?: v_event_player_stats_stddev_pop_fieldsGenqlSelection - stddev_samp?: v_event_player_stats_stddev_samp_fieldsGenqlSelection - sum?: v_event_player_stats_sum_fieldsGenqlSelection - var_pop?: v_event_player_stats_var_pop_fieldsGenqlSelection - var_samp?: v_event_player_stats_var_samp_fieldsGenqlSelection - variance?: v_event_player_stats_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "v_event_player_stats" */ -export interface v_event_player_stats_aggregate_order_by {avg?: (v_event_player_stats_avg_order_by | null),count?: (order_by | null),max?: (v_event_player_stats_max_order_by | null),min?: (v_event_player_stats_min_order_by | null),stddev?: (v_event_player_stats_stddev_order_by | null),stddev_pop?: (v_event_player_stats_stddev_pop_order_by | null),stddev_samp?: (v_event_player_stats_stddev_samp_order_by | null),sum?: (v_event_player_stats_sum_order_by | null),var_pop?: (v_event_player_stats_var_pop_order_by | null),var_samp?: (v_event_player_stats_var_samp_order_by | null),variance?: (v_event_player_stats_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "v_event_player_stats" */ -export interface v_event_player_stats_arr_rel_insert_input {data: v_event_player_stats_insert_input[]} - - -/** aggregate avg on columns */ -export interface v_event_player_stats_avg_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "v_event_player_stats" */ -export interface v_event_player_stats_avg_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "v_event_player_stats". All fields are combined with a logical 'AND'. */ -export interface v_event_player_stats_bool_exp {_and?: (v_event_player_stats_bool_exp[] | null),_not?: (v_event_player_stats_bool_exp | null),_or?: (v_event_player_stats_bool_exp[] | null),assists?: (Int_comparison_exp | null),deaths?: (Int_comparison_exp | null),event?: (events_bool_exp | null),event_id?: (uuid_comparison_exp | null),headshot_percentage?: (float8_comparison_exp | null),headshots?: (Int_comparison_exp | null),kdr?: (float8_comparison_exp | null),kills?: (Int_comparison_exp | null),matches_played?: (Int_comparison_exp | null),player?: (players_bool_exp | null),player_steam_id?: (bigint_comparison_exp | null)} - - -/** input type for inserting data into table "v_event_player_stats" */ -export interface v_event_player_stats_insert_input {assists?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),event?: (events_obj_rel_insert_input | null),event_id?: (Scalars['uuid'] | null),headshot_percentage?: (Scalars['float8'] | null),headshots?: (Scalars['Int'] | null),kdr?: (Scalars['float8'] | null),kills?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),player?: (players_obj_rel_insert_input | null),player_steam_id?: (Scalars['bigint'] | null)} - - -/** aggregate max on columns */ -export interface v_event_player_stats_max_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - event_id?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "v_event_player_stats" */ -export interface v_event_player_stats_max_order_by {assists?: (order_by | null),deaths?: (order_by | null),event_id?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface v_event_player_stats_min_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - event_id?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "v_event_player_stats" */ -export interface v_event_player_stats_min_order_by {assists?: (order_by | null),deaths?: (order_by | null),event_id?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** Ordering options when selecting data from "v_event_player_stats". */ -export interface v_event_player_stats_order_by {assists?: (order_by | null),deaths?: (order_by | null),event?: (events_order_by | null),event_id?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player?: (players_order_by | null),player_steam_id?: (order_by | null)} - - -/** aggregate stddev on columns */ -export interface v_event_player_stats_stddev_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "v_event_player_stats" */ -export interface v_event_player_stats_stddev_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface v_event_player_stats_stddev_pop_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "v_event_player_stats" */ -export interface v_event_player_stats_stddev_pop_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface v_event_player_stats_stddev_samp_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "v_event_player_stats" */ -export interface v_event_player_stats_stddev_samp_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** Streaming cursor of the table "v_event_player_stats" */ -export interface v_event_player_stats_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: v_event_player_stats_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface v_event_player_stats_stream_cursor_value_input {assists?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),event_id?: (Scalars['uuid'] | null),headshot_percentage?: (Scalars['float8'] | null),headshots?: (Scalars['Int'] | null),kdr?: (Scalars['float8'] | null),kills?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),player_steam_id?: (Scalars['bigint'] | null)} - - -/** aggregate sum on columns */ -export interface v_event_player_stats_sum_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "v_event_player_stats" */ -export interface v_event_player_stats_sum_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** aggregate var_pop on columns */ -export interface v_event_player_stats_var_pop_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "v_event_player_stats" */ -export interface v_event_player_stats_var_pop_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface v_event_player_stats_var_samp_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "v_event_player_stats" */ -export interface v_event_player_stats_var_samp_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface v_event_player_stats_variance_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "v_event_player_stats" */ -export interface v_event_player_stats_variance_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** columns and relationships of "v_gpu_pool_status" */ -export interface v_gpu_pool_statusGenqlSelection{ - demo_free_gpu_nodes?: boolean | number - demo_in_progress?: boolean | number - demo_total_gpu_nodes?: boolean | number - free_gpu_nodes?: boolean | number - free_gpu_nodes_for_batch?: boolean | number - highlights_in_progress?: boolean | number - id?: boolean | number - live_in_progress?: boolean | number - registered_gpu_nodes?: boolean | number - rendering_total_gpu_nodes?: boolean | number - renders_paused_for_active_match?: boolean | number - streaming_free_gpu_nodes?: boolean | number - streaming_total_gpu_nodes?: boolean | number - total_gpu_nodes?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "v_gpu_pool_status" */ -export interface v_gpu_pool_status_aggregateGenqlSelection{ - aggregate?: v_gpu_pool_status_aggregate_fieldsGenqlSelection - nodes?: v_gpu_pool_statusGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "v_gpu_pool_status" */ -export interface v_gpu_pool_status_aggregate_fieldsGenqlSelection{ - avg?: v_gpu_pool_status_avg_fieldsGenqlSelection - count?: { __args: {columns?: (v_gpu_pool_status_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: v_gpu_pool_status_max_fieldsGenqlSelection - min?: v_gpu_pool_status_min_fieldsGenqlSelection - stddev?: v_gpu_pool_status_stddev_fieldsGenqlSelection - stddev_pop?: v_gpu_pool_status_stddev_pop_fieldsGenqlSelection - stddev_samp?: v_gpu_pool_status_stddev_samp_fieldsGenqlSelection - sum?: v_gpu_pool_status_sum_fieldsGenqlSelection - var_pop?: v_gpu_pool_status_var_pop_fieldsGenqlSelection - var_samp?: v_gpu_pool_status_var_samp_fieldsGenqlSelection - variance?: v_gpu_pool_status_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface v_gpu_pool_status_avg_fieldsGenqlSelection{ - demo_free_gpu_nodes?: boolean | number - demo_total_gpu_nodes?: boolean | number - free_gpu_nodes?: boolean | number - free_gpu_nodes_for_batch?: boolean | number - id?: boolean | number - registered_gpu_nodes?: boolean | number - rendering_total_gpu_nodes?: boolean | number - streaming_free_gpu_nodes?: boolean | number - streaming_total_gpu_nodes?: boolean | number - total_gpu_nodes?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "v_gpu_pool_status". All fields are combined with a logical 'AND'. */ -export interface v_gpu_pool_status_bool_exp {_and?: (v_gpu_pool_status_bool_exp[] | null),_not?: (v_gpu_pool_status_bool_exp | null),_or?: (v_gpu_pool_status_bool_exp[] | null),demo_free_gpu_nodes?: (Int_comparison_exp | null),demo_in_progress?: (Boolean_comparison_exp | null),demo_total_gpu_nodes?: (Int_comparison_exp | null),free_gpu_nodes?: (Int_comparison_exp | null),free_gpu_nodes_for_batch?: (Int_comparison_exp | null),highlights_in_progress?: (Boolean_comparison_exp | null),id?: (Int_comparison_exp | null),live_in_progress?: (Boolean_comparison_exp | null),registered_gpu_nodes?: (Int_comparison_exp | null),rendering_total_gpu_nodes?: (Int_comparison_exp | null),renders_paused_for_active_match?: (Boolean_comparison_exp | null),streaming_free_gpu_nodes?: (Int_comparison_exp | null),streaming_total_gpu_nodes?: (Int_comparison_exp | null),total_gpu_nodes?: (Int_comparison_exp | null)} - - -/** aggregate max on columns */ -export interface v_gpu_pool_status_max_fieldsGenqlSelection{ - demo_free_gpu_nodes?: boolean | number - demo_total_gpu_nodes?: boolean | number - free_gpu_nodes?: boolean | number - free_gpu_nodes_for_batch?: boolean | number - id?: boolean | number - registered_gpu_nodes?: boolean | number - rendering_total_gpu_nodes?: boolean | number - streaming_free_gpu_nodes?: boolean | number - streaming_total_gpu_nodes?: boolean | number - total_gpu_nodes?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface v_gpu_pool_status_min_fieldsGenqlSelection{ - demo_free_gpu_nodes?: boolean | number - demo_total_gpu_nodes?: boolean | number - free_gpu_nodes?: boolean | number - free_gpu_nodes_for_batch?: boolean | number - id?: boolean | number - registered_gpu_nodes?: boolean | number - rendering_total_gpu_nodes?: boolean | number - streaming_free_gpu_nodes?: boolean | number - streaming_total_gpu_nodes?: boolean | number - total_gpu_nodes?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Ordering options when selecting data from "v_gpu_pool_status". */ -export interface v_gpu_pool_status_order_by {demo_free_gpu_nodes?: (order_by | null),demo_in_progress?: (order_by | null),demo_total_gpu_nodes?: (order_by | null),free_gpu_nodes?: (order_by | null),free_gpu_nodes_for_batch?: (order_by | null),highlights_in_progress?: (order_by | null),id?: (order_by | null),live_in_progress?: (order_by | null),registered_gpu_nodes?: (order_by | null),rendering_total_gpu_nodes?: (order_by | null),renders_paused_for_active_match?: (order_by | null),streaming_free_gpu_nodes?: (order_by | null),streaming_total_gpu_nodes?: (order_by | null),total_gpu_nodes?: (order_by | null)} - - -/** aggregate stddev on columns */ -export interface v_gpu_pool_status_stddev_fieldsGenqlSelection{ - demo_free_gpu_nodes?: boolean | number - demo_total_gpu_nodes?: boolean | number - free_gpu_nodes?: boolean | number - free_gpu_nodes_for_batch?: boolean | number - id?: boolean | number - registered_gpu_nodes?: boolean | number - rendering_total_gpu_nodes?: boolean | number - streaming_free_gpu_nodes?: boolean | number - streaming_total_gpu_nodes?: boolean | number - total_gpu_nodes?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface v_gpu_pool_status_stddev_pop_fieldsGenqlSelection{ - demo_free_gpu_nodes?: boolean | number - demo_total_gpu_nodes?: boolean | number - free_gpu_nodes?: boolean | number - free_gpu_nodes_for_batch?: boolean | number - id?: boolean | number - registered_gpu_nodes?: boolean | number - rendering_total_gpu_nodes?: boolean | number - streaming_free_gpu_nodes?: boolean | number - streaming_total_gpu_nodes?: boolean | number - total_gpu_nodes?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface v_gpu_pool_status_stddev_samp_fieldsGenqlSelection{ - demo_free_gpu_nodes?: boolean | number - demo_total_gpu_nodes?: boolean | number - free_gpu_nodes?: boolean | number - free_gpu_nodes_for_batch?: boolean | number - id?: boolean | number - registered_gpu_nodes?: boolean | number - rendering_total_gpu_nodes?: boolean | number - streaming_free_gpu_nodes?: boolean | number - streaming_total_gpu_nodes?: boolean | number - total_gpu_nodes?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "v_gpu_pool_status" */ -export interface v_gpu_pool_status_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: v_gpu_pool_status_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface v_gpu_pool_status_stream_cursor_value_input {demo_free_gpu_nodes?: (Scalars['Int'] | null),demo_in_progress?: (Scalars['Boolean'] | null),demo_total_gpu_nodes?: (Scalars['Int'] | null),free_gpu_nodes?: (Scalars['Int'] | null),free_gpu_nodes_for_batch?: (Scalars['Int'] | null),highlights_in_progress?: (Scalars['Boolean'] | null),id?: (Scalars['Int'] | null),live_in_progress?: (Scalars['Boolean'] | null),registered_gpu_nodes?: (Scalars['Int'] | null),rendering_total_gpu_nodes?: (Scalars['Int'] | null),renders_paused_for_active_match?: (Scalars['Boolean'] | null),streaming_free_gpu_nodes?: (Scalars['Int'] | null),streaming_total_gpu_nodes?: (Scalars['Int'] | null),total_gpu_nodes?: (Scalars['Int'] | null)} - - -/** aggregate sum on columns */ -export interface v_gpu_pool_status_sum_fieldsGenqlSelection{ - demo_free_gpu_nodes?: boolean | number - demo_total_gpu_nodes?: boolean | number - free_gpu_nodes?: boolean | number - free_gpu_nodes_for_batch?: boolean | number - id?: boolean | number - registered_gpu_nodes?: boolean | number - rendering_total_gpu_nodes?: boolean | number - streaming_free_gpu_nodes?: boolean | number - streaming_total_gpu_nodes?: boolean | number - total_gpu_nodes?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_pop on columns */ -export interface v_gpu_pool_status_var_pop_fieldsGenqlSelection{ - demo_free_gpu_nodes?: boolean | number - demo_total_gpu_nodes?: boolean | number - free_gpu_nodes?: boolean | number - free_gpu_nodes_for_batch?: boolean | number - id?: boolean | number - registered_gpu_nodes?: boolean | number - rendering_total_gpu_nodes?: boolean | number - streaming_free_gpu_nodes?: boolean | number - streaming_total_gpu_nodes?: boolean | number - total_gpu_nodes?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface v_gpu_pool_status_var_samp_fieldsGenqlSelection{ - demo_free_gpu_nodes?: boolean | number - demo_total_gpu_nodes?: boolean | number - free_gpu_nodes?: boolean | number - free_gpu_nodes_for_batch?: boolean | number - id?: boolean | number - registered_gpu_nodes?: boolean | number - rendering_total_gpu_nodes?: boolean | number - streaming_free_gpu_nodes?: boolean | number - streaming_total_gpu_nodes?: boolean | number - total_gpu_nodes?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface v_gpu_pool_status_variance_fieldsGenqlSelection{ - demo_free_gpu_nodes?: boolean | number - demo_total_gpu_nodes?: boolean | number - free_gpu_nodes?: boolean | number - free_gpu_nodes_for_batch?: boolean | number - id?: boolean | number - registered_gpu_nodes?: boolean | number - rendering_total_gpu_nodes?: boolean | number - streaming_free_gpu_nodes?: boolean | number - streaming_total_gpu_nodes?: boolean | number - total_gpu_nodes?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "v_league_division_standings" */ -export interface v_league_division_standingsGenqlSelection{ - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - league_division_id?: boolean | number - league_season_division_id?: boolean | number - league_season_id?: boolean | number - /** An object relationship */ - league_team?: league_teamsGenqlSelection - league_team_id?: boolean | number - league_team_season_id?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number - matches_played?: boolean | number - matches_remaining?: boolean | number - rank?: boolean | number - round_diff?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - /** An object relationship */ - season_division?: league_season_divisionsGenqlSelection - /** An object relationship */ - team_season?: league_team_seasonsGenqlSelection - tournament_team_id?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "v_league_division_standings" */ -export interface v_league_division_standings_aggregateGenqlSelection{ - aggregate?: v_league_division_standings_aggregate_fieldsGenqlSelection - nodes?: v_league_division_standingsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface v_league_division_standings_aggregate_bool_exp {count?: (v_league_division_standings_aggregate_bool_exp_count | null)} - -export interface v_league_division_standings_aggregate_bool_exp_count {arguments?: (v_league_division_standings_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (v_league_division_standings_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "v_league_division_standings" */ -export interface v_league_division_standings_aggregate_fieldsGenqlSelection{ - avg?: v_league_division_standings_avg_fieldsGenqlSelection - count?: { __args: {columns?: (v_league_division_standings_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: v_league_division_standings_max_fieldsGenqlSelection - min?: v_league_division_standings_min_fieldsGenqlSelection - stddev?: v_league_division_standings_stddev_fieldsGenqlSelection - stddev_pop?: v_league_division_standings_stddev_pop_fieldsGenqlSelection - stddev_samp?: v_league_division_standings_stddev_samp_fieldsGenqlSelection - sum?: v_league_division_standings_sum_fieldsGenqlSelection - var_pop?: v_league_division_standings_var_pop_fieldsGenqlSelection - var_samp?: v_league_division_standings_var_samp_fieldsGenqlSelection - variance?: v_league_division_standings_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "v_league_division_standings" */ -export interface v_league_division_standings_aggregate_order_by {avg?: (v_league_division_standings_avg_order_by | null),count?: (order_by | null),max?: (v_league_division_standings_max_order_by | null),min?: (v_league_division_standings_min_order_by | null),stddev?: (v_league_division_standings_stddev_order_by | null),stddev_pop?: (v_league_division_standings_stddev_pop_order_by | null),stddev_samp?: (v_league_division_standings_stddev_samp_order_by | null),sum?: (v_league_division_standings_sum_order_by | null),var_pop?: (v_league_division_standings_var_pop_order_by | null),var_samp?: (v_league_division_standings_var_samp_order_by | null),variance?: (v_league_division_standings_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "v_league_division_standings" */ -export interface v_league_division_standings_arr_rel_insert_input {data: v_league_division_standings_insert_input[]} - - -/** aggregate avg on columns */ -export interface v_league_division_standings_avg_fieldsGenqlSelection{ - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number - matches_played?: boolean | number - matches_remaining?: boolean | number - rank?: boolean | number - round_diff?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "v_league_division_standings" */ -export interface v_league_division_standings_avg_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rank?: (order_by | null),round_diff?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),wins?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "v_league_division_standings". All fields are combined with a logical 'AND'. */ -export interface v_league_division_standings_bool_exp {_and?: (v_league_division_standings_bool_exp[] | null),_not?: (v_league_division_standings_bool_exp | null),_or?: (v_league_division_standings_bool_exp[] | null),head_to_head_match_wins?: (Int_comparison_exp | null),head_to_head_rounds_won?: (Int_comparison_exp | null),league_division_id?: (uuid_comparison_exp | null),league_season_division_id?: (uuid_comparison_exp | null),league_season_id?: (uuid_comparison_exp | null),league_team?: (league_teams_bool_exp | null),league_team_id?: (uuid_comparison_exp | null),league_team_season_id?: (uuid_comparison_exp | null),losses?: (Int_comparison_exp | null),maps_lost?: (Int_comparison_exp | null),maps_won?: (Int_comparison_exp | null),matches_played?: (Int_comparison_exp | null),matches_remaining?: (Int_comparison_exp | null),rank?: (Int_comparison_exp | null),round_diff?: (Int_comparison_exp | null),rounds_lost?: (Int_comparison_exp | null),rounds_won?: (Int_comparison_exp | null),season_division?: (league_season_divisions_bool_exp | null),team_season?: (league_team_seasons_bool_exp | null),tournament_team_id?: (uuid_comparison_exp | null),wins?: (Int_comparison_exp | null)} - - -/** input type for inserting data into table "v_league_division_standings" */ -export interface v_league_division_standings_insert_input {head_to_head_match_wins?: (Scalars['Int'] | null),head_to_head_rounds_won?: (Scalars['Int'] | null),league_division_id?: (Scalars['uuid'] | null),league_season_division_id?: (Scalars['uuid'] | null),league_season_id?: (Scalars['uuid'] | null),league_team?: (league_teams_obj_rel_insert_input | null),league_team_id?: (Scalars['uuid'] | null),league_team_season_id?: (Scalars['uuid'] | null),losses?: (Scalars['Int'] | null),maps_lost?: (Scalars['Int'] | null),maps_won?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),matches_remaining?: (Scalars['Int'] | null),rank?: (Scalars['Int'] | null),round_diff?: (Scalars['Int'] | null),rounds_lost?: (Scalars['Int'] | null),rounds_won?: (Scalars['Int'] | null),season_division?: (league_season_divisions_obj_rel_insert_input | null),team_season?: (league_team_seasons_obj_rel_insert_input | null),tournament_team_id?: (Scalars['uuid'] | null),wins?: (Scalars['Int'] | null)} - - -/** aggregate max on columns */ -export interface v_league_division_standings_max_fieldsGenqlSelection{ - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - league_division_id?: boolean | number - league_season_division_id?: boolean | number - league_season_id?: boolean | number - league_team_id?: boolean | number - league_team_season_id?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number - matches_played?: boolean | number - matches_remaining?: boolean | number - rank?: boolean | number - round_diff?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - tournament_team_id?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "v_league_division_standings" */ -export interface v_league_division_standings_max_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),league_division_id?: (order_by | null),league_season_division_id?: (order_by | null),league_season_id?: (order_by | null),league_team_id?: (order_by | null),league_team_season_id?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rank?: (order_by | null),round_diff?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),tournament_team_id?: (order_by | null),wins?: (order_by | null)} - - -/** aggregate min on columns */ -export interface v_league_division_standings_min_fieldsGenqlSelection{ - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - league_division_id?: boolean | number - league_season_division_id?: boolean | number - league_season_id?: boolean | number - league_team_id?: boolean | number - league_team_season_id?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number - matches_played?: boolean | number - matches_remaining?: boolean | number - rank?: boolean | number - round_diff?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - tournament_team_id?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "v_league_division_standings" */ -export interface v_league_division_standings_min_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),league_division_id?: (order_by | null),league_season_division_id?: (order_by | null),league_season_id?: (order_by | null),league_team_id?: (order_by | null),league_team_season_id?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rank?: (order_by | null),round_diff?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),tournament_team_id?: (order_by | null),wins?: (order_by | null)} - - -/** Ordering options when selecting data from "v_league_division_standings". */ -export interface v_league_division_standings_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),league_division_id?: (order_by | null),league_season_division_id?: (order_by | null),league_season_id?: (order_by | null),league_team?: (league_teams_order_by | null),league_team_id?: (order_by | null),league_team_season_id?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rank?: (order_by | null),round_diff?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),season_division?: (league_season_divisions_order_by | null),team_season?: (league_team_seasons_order_by | null),tournament_team_id?: (order_by | null),wins?: (order_by | null)} - - -/** aggregate stddev on columns */ -export interface v_league_division_standings_stddev_fieldsGenqlSelection{ - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number - matches_played?: boolean | number - matches_remaining?: boolean | number - rank?: boolean | number - round_diff?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "v_league_division_standings" */ -export interface v_league_division_standings_stddev_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rank?: (order_by | null),round_diff?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),wins?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface v_league_division_standings_stddev_pop_fieldsGenqlSelection{ - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number - matches_played?: boolean | number - matches_remaining?: boolean | number - rank?: boolean | number - round_diff?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "v_league_division_standings" */ -export interface v_league_division_standings_stddev_pop_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rank?: (order_by | null),round_diff?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),wins?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface v_league_division_standings_stddev_samp_fieldsGenqlSelection{ - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number - matches_played?: boolean | number - matches_remaining?: boolean | number - rank?: boolean | number - round_diff?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "v_league_division_standings" */ -export interface v_league_division_standings_stddev_samp_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rank?: (order_by | null),round_diff?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),wins?: (order_by | null)} - - -/** Streaming cursor of the table "v_league_division_standings" */ -export interface v_league_division_standings_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: v_league_division_standings_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface v_league_division_standings_stream_cursor_value_input {head_to_head_match_wins?: (Scalars['Int'] | null),head_to_head_rounds_won?: (Scalars['Int'] | null),league_division_id?: (Scalars['uuid'] | null),league_season_division_id?: (Scalars['uuid'] | null),league_season_id?: (Scalars['uuid'] | null),league_team_id?: (Scalars['uuid'] | null),league_team_season_id?: (Scalars['uuid'] | null),losses?: (Scalars['Int'] | null),maps_lost?: (Scalars['Int'] | null),maps_won?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),matches_remaining?: (Scalars['Int'] | null),rank?: (Scalars['Int'] | null),round_diff?: (Scalars['Int'] | null),rounds_lost?: (Scalars['Int'] | null),rounds_won?: (Scalars['Int'] | null),tournament_team_id?: (Scalars['uuid'] | null),wins?: (Scalars['Int'] | null)} - - -/** aggregate sum on columns */ -export interface v_league_division_standings_sum_fieldsGenqlSelection{ - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number - matches_played?: boolean | number - matches_remaining?: boolean | number - rank?: boolean | number - round_diff?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "v_league_division_standings" */ -export interface v_league_division_standings_sum_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rank?: (order_by | null),round_diff?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),wins?: (order_by | null)} - - -/** aggregate var_pop on columns */ -export interface v_league_division_standings_var_pop_fieldsGenqlSelection{ - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number - matches_played?: boolean | number - matches_remaining?: boolean | number - rank?: boolean | number - round_diff?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "v_league_division_standings" */ -export interface v_league_division_standings_var_pop_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rank?: (order_by | null),round_diff?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),wins?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface v_league_division_standings_var_samp_fieldsGenqlSelection{ - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number - matches_played?: boolean | number - matches_remaining?: boolean | number - rank?: boolean | number - round_diff?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "v_league_division_standings" */ -export interface v_league_division_standings_var_samp_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rank?: (order_by | null),round_diff?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),wins?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface v_league_division_standings_variance_fieldsGenqlSelection{ - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number - matches_played?: boolean | number - matches_remaining?: boolean | number - rank?: boolean | number - round_diff?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "v_league_division_standings" */ -export interface v_league_division_standings_variance_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rank?: (order_by | null),round_diff?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),wins?: (order_by | null)} - - -/** columns and relationships of "v_league_season_player_stats" */ -export interface v_league_season_player_statsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kdr?: boolean | number - kills?: boolean | number - league_division_id?: boolean | number - league_season_division_id?: boolean | number - league_season_id?: boolean | number - /** An object relationship */ - league_team?: league_teamsGenqlSelection - league_team_id?: boolean | number - league_team_season_id?: boolean | number - matches_played?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "v_league_season_player_stats" */ -export interface v_league_season_player_stats_aggregateGenqlSelection{ - aggregate?: v_league_season_player_stats_aggregate_fieldsGenqlSelection - nodes?: v_league_season_player_statsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface v_league_season_player_stats_aggregate_bool_exp {avg?: (v_league_season_player_stats_aggregate_bool_exp_avg | null),corr?: (v_league_season_player_stats_aggregate_bool_exp_corr | null),count?: (v_league_season_player_stats_aggregate_bool_exp_count | null),covar_samp?: (v_league_season_player_stats_aggregate_bool_exp_covar_samp | null),max?: (v_league_season_player_stats_aggregate_bool_exp_max | null),min?: (v_league_season_player_stats_aggregate_bool_exp_min | null),stddev_samp?: (v_league_season_player_stats_aggregate_bool_exp_stddev_samp | null),sum?: (v_league_season_player_stats_aggregate_bool_exp_sum | null),var_samp?: (v_league_season_player_stats_aggregate_bool_exp_var_samp | null)} - -export interface v_league_season_player_stats_aggregate_bool_exp_avg {arguments: v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_avg_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_league_season_player_stats_bool_exp | null),predicate: float8_comparison_exp} - -export interface v_league_season_player_stats_aggregate_bool_exp_corr {arguments: v_league_season_player_stats_aggregate_bool_exp_corr_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (v_league_season_player_stats_bool_exp | null),predicate: float8_comparison_exp} - -export interface v_league_season_player_stats_aggregate_bool_exp_corr_arguments {X: v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_corr_arguments_columns,Y: v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_corr_arguments_columns} - -export interface v_league_season_player_stats_aggregate_bool_exp_count {arguments?: (v_league_season_player_stats_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (v_league_season_player_stats_bool_exp | null),predicate: Int_comparison_exp} - -export interface v_league_season_player_stats_aggregate_bool_exp_covar_samp {arguments: v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (v_league_season_player_stats_bool_exp | null),predicate: float8_comparison_exp} - -export interface v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments {X: v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments_columns,Y: v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments_columns} - -export interface v_league_season_player_stats_aggregate_bool_exp_max {arguments: v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_max_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_league_season_player_stats_bool_exp | null),predicate: float8_comparison_exp} - -export interface v_league_season_player_stats_aggregate_bool_exp_min {arguments: v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_min_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_league_season_player_stats_bool_exp | null),predicate: float8_comparison_exp} - -export interface v_league_season_player_stats_aggregate_bool_exp_stddev_samp {arguments: v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_league_season_player_stats_bool_exp | null),predicate: float8_comparison_exp} - -export interface v_league_season_player_stats_aggregate_bool_exp_sum {arguments: v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_sum_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_league_season_player_stats_bool_exp | null),predicate: float8_comparison_exp} - -export interface v_league_season_player_stats_aggregate_bool_exp_var_samp {arguments: v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_var_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_league_season_player_stats_bool_exp | null),predicate: float8_comparison_exp} - - -/** aggregate fields of "v_league_season_player_stats" */ -export interface v_league_season_player_stats_aggregate_fieldsGenqlSelection{ - avg?: v_league_season_player_stats_avg_fieldsGenqlSelection - count?: { __args: {columns?: (v_league_season_player_stats_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: v_league_season_player_stats_max_fieldsGenqlSelection - min?: v_league_season_player_stats_min_fieldsGenqlSelection - stddev?: v_league_season_player_stats_stddev_fieldsGenqlSelection - stddev_pop?: v_league_season_player_stats_stddev_pop_fieldsGenqlSelection - stddev_samp?: v_league_season_player_stats_stddev_samp_fieldsGenqlSelection - sum?: v_league_season_player_stats_sum_fieldsGenqlSelection - var_pop?: v_league_season_player_stats_var_pop_fieldsGenqlSelection - var_samp?: v_league_season_player_stats_var_samp_fieldsGenqlSelection - variance?: v_league_season_player_stats_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "v_league_season_player_stats" */ -export interface v_league_season_player_stats_aggregate_order_by {avg?: (v_league_season_player_stats_avg_order_by | null),count?: (order_by | null),max?: (v_league_season_player_stats_max_order_by | null),min?: (v_league_season_player_stats_min_order_by | null),stddev?: (v_league_season_player_stats_stddev_order_by | null),stddev_pop?: (v_league_season_player_stats_stddev_pop_order_by | null),stddev_samp?: (v_league_season_player_stats_stddev_samp_order_by | null),sum?: (v_league_season_player_stats_sum_order_by | null),var_pop?: (v_league_season_player_stats_var_pop_order_by | null),var_samp?: (v_league_season_player_stats_var_samp_order_by | null),variance?: (v_league_season_player_stats_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "v_league_season_player_stats" */ -export interface v_league_season_player_stats_arr_rel_insert_input {data: v_league_season_player_stats_insert_input[]} - - -/** aggregate avg on columns */ -export interface v_league_season_player_stats_avg_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "v_league_season_player_stats" */ -export interface v_league_season_player_stats_avg_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "v_league_season_player_stats". All fields are combined with a logical 'AND'. */ -export interface v_league_season_player_stats_bool_exp {_and?: (v_league_season_player_stats_bool_exp[] | null),_not?: (v_league_season_player_stats_bool_exp | null),_or?: (v_league_season_player_stats_bool_exp[] | null),assists?: (Int_comparison_exp | null),deaths?: (Int_comparison_exp | null),headshot_percentage?: (float8_comparison_exp | null),headshots?: (Int_comparison_exp | null),kdr?: (float8_comparison_exp | null),kills?: (Int_comparison_exp | null),league_division_id?: (uuid_comparison_exp | null),league_season_division_id?: (uuid_comparison_exp | null),league_season_id?: (uuid_comparison_exp | null),league_team?: (league_teams_bool_exp | null),league_team_id?: (uuid_comparison_exp | null),league_team_season_id?: (uuid_comparison_exp | null),matches_played?: (Int_comparison_exp | null),player?: (players_bool_exp | null),player_steam_id?: (bigint_comparison_exp | null)} - - -/** input type for inserting data into table "v_league_season_player_stats" */ -export interface v_league_season_player_stats_insert_input {assists?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),headshot_percentage?: (Scalars['float8'] | null),headshots?: (Scalars['Int'] | null),kdr?: (Scalars['float8'] | null),kills?: (Scalars['Int'] | null),league_division_id?: (Scalars['uuid'] | null),league_season_division_id?: (Scalars['uuid'] | null),league_season_id?: (Scalars['uuid'] | null),league_team?: (league_teams_obj_rel_insert_input | null),league_team_id?: (Scalars['uuid'] | null),league_team_season_id?: (Scalars['uuid'] | null),matches_played?: (Scalars['Int'] | null),player?: (players_obj_rel_insert_input | null),player_steam_id?: (Scalars['bigint'] | null)} - - -/** aggregate max on columns */ -export interface v_league_season_player_stats_max_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kdr?: boolean | number - kills?: boolean | number - league_division_id?: boolean | number - league_season_division_id?: boolean | number - league_season_id?: boolean | number - league_team_id?: boolean | number - league_team_season_id?: boolean | number - matches_played?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "v_league_season_player_stats" */ -export interface v_league_season_player_stats_max_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),league_division_id?: (order_by | null),league_season_division_id?: (order_by | null),league_season_id?: (order_by | null),league_team_id?: (order_by | null),league_team_season_id?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface v_league_season_player_stats_min_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kdr?: boolean | number - kills?: boolean | number - league_division_id?: boolean | number - league_season_division_id?: boolean | number - league_season_id?: boolean | number - league_team_id?: boolean | number - league_team_season_id?: boolean | number - matches_played?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "v_league_season_player_stats" */ -export interface v_league_season_player_stats_min_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),league_division_id?: (order_by | null),league_season_division_id?: (order_by | null),league_season_id?: (order_by | null),league_team_id?: (order_by | null),league_team_season_id?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** Ordering options when selecting data from "v_league_season_player_stats". */ -export interface v_league_season_player_stats_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),league_division_id?: (order_by | null),league_season_division_id?: (order_by | null),league_season_id?: (order_by | null),league_team?: (league_teams_order_by | null),league_team_id?: (order_by | null),league_team_season_id?: (order_by | null),matches_played?: (order_by | null),player?: (players_order_by | null),player_steam_id?: (order_by | null)} - - -/** aggregate stddev on columns */ -export interface v_league_season_player_stats_stddev_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "v_league_season_player_stats" */ -export interface v_league_season_player_stats_stddev_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface v_league_season_player_stats_stddev_pop_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "v_league_season_player_stats" */ -export interface v_league_season_player_stats_stddev_pop_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface v_league_season_player_stats_stddev_samp_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "v_league_season_player_stats" */ -export interface v_league_season_player_stats_stddev_samp_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** Streaming cursor of the table "v_league_season_player_stats" */ -export interface v_league_season_player_stats_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: v_league_season_player_stats_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface v_league_season_player_stats_stream_cursor_value_input {assists?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),headshot_percentage?: (Scalars['float8'] | null),headshots?: (Scalars['Int'] | null),kdr?: (Scalars['float8'] | null),kills?: (Scalars['Int'] | null),league_division_id?: (Scalars['uuid'] | null),league_season_division_id?: (Scalars['uuid'] | null),league_season_id?: (Scalars['uuid'] | null),league_team_id?: (Scalars['uuid'] | null),league_team_season_id?: (Scalars['uuid'] | null),matches_played?: (Scalars['Int'] | null),player_steam_id?: (Scalars['bigint'] | null)} - - -/** aggregate sum on columns */ -export interface v_league_season_player_stats_sum_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "v_league_season_player_stats" */ -export interface v_league_season_player_stats_sum_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** aggregate var_pop on columns */ -export interface v_league_season_player_stats_var_pop_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "v_league_season_player_stats" */ -export interface v_league_season_player_stats_var_pop_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface v_league_season_player_stats_var_samp_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "v_league_season_player_stats" */ -export interface v_league_season_player_stats_var_samp_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface v_league_season_player_stats_variance_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "v_league_season_player_stats" */ -export interface v_league_season_player_stats_variance_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** columns and relationships of "v_match_captains" */ -export interface v_match_captainsGenqlSelection{ - captain?: boolean | number - discord_id?: boolean | number - id?: boolean | number - /** An object relationship */ - lineup?: match_lineupsGenqlSelection - match_lineup_id?: boolean | number - placeholder_name?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "v_match_captains" */ -export interface v_match_captains_aggregateGenqlSelection{ - aggregate?: v_match_captains_aggregate_fieldsGenqlSelection - nodes?: v_match_captainsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "v_match_captains" */ -export interface v_match_captains_aggregate_fieldsGenqlSelection{ - avg?: v_match_captains_avg_fieldsGenqlSelection - count?: { __args: {columns?: (v_match_captains_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: v_match_captains_max_fieldsGenqlSelection - min?: v_match_captains_min_fieldsGenqlSelection - stddev?: v_match_captains_stddev_fieldsGenqlSelection - stddev_pop?: v_match_captains_stddev_pop_fieldsGenqlSelection - stddev_samp?: v_match_captains_stddev_samp_fieldsGenqlSelection - sum?: v_match_captains_sum_fieldsGenqlSelection - var_pop?: v_match_captains_var_pop_fieldsGenqlSelection - var_samp?: v_match_captains_var_samp_fieldsGenqlSelection - variance?: v_match_captains_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface v_match_captains_avg_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "v_match_captains". All fields are combined with a logical 'AND'. */ -export interface v_match_captains_bool_exp {_and?: (v_match_captains_bool_exp[] | null),_not?: (v_match_captains_bool_exp | null),_or?: (v_match_captains_bool_exp[] | null),captain?: (Boolean_comparison_exp | null),discord_id?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),lineup?: (match_lineups_bool_exp | null),match_lineup_id?: (uuid_comparison_exp | null),placeholder_name?: (String_comparison_exp | null),player?: (players_bool_exp | null),steam_id?: (bigint_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "v_match_captains" */ -export interface v_match_captains_inc_input {steam_id?: (Scalars['bigint'] | null)} - - -/** input type for inserting data into table "v_match_captains" */ -export interface v_match_captains_insert_input {captain?: (Scalars['Boolean'] | null),discord_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),lineup?: (match_lineups_obj_rel_insert_input | null),match_lineup_id?: (Scalars['uuid'] | null),placeholder_name?: (Scalars['String'] | null),player?: (players_obj_rel_insert_input | null),steam_id?: (Scalars['bigint'] | null)} - - -/** aggregate max on columns */ -export interface v_match_captains_max_fieldsGenqlSelection{ - discord_id?: boolean | number - id?: boolean | number - match_lineup_id?: boolean | number - placeholder_name?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface v_match_captains_min_fieldsGenqlSelection{ - discord_id?: boolean | number - id?: boolean | number - match_lineup_id?: boolean | number - placeholder_name?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "v_match_captains" */ -export interface v_match_captains_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: v_match_captainsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "v_match_captains" */ -export interface v_match_captains_obj_rel_insert_input {data: v_match_captains_insert_input} - - -/** Ordering options when selecting data from "v_match_captains". */ -export interface v_match_captains_order_by {captain?: (order_by | null),discord_id?: (order_by | null),id?: (order_by | null),lineup?: (match_lineups_order_by | null),match_lineup_id?: (order_by | null),placeholder_name?: (order_by | null),player?: (players_order_by | null),steam_id?: (order_by | null)} - - -/** input type for updating data in table "v_match_captains" */ -export interface v_match_captains_set_input {captain?: (Scalars['Boolean'] | null),discord_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),match_lineup_id?: (Scalars['uuid'] | null),placeholder_name?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null)} - - -/** aggregate stddev on columns */ -export interface v_match_captains_stddev_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface v_match_captains_stddev_pop_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface v_match_captains_stddev_samp_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "v_match_captains" */ -export interface v_match_captains_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: v_match_captains_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface v_match_captains_stream_cursor_value_input {captain?: (Scalars['Boolean'] | null),discord_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),match_lineup_id?: (Scalars['uuid'] | null),placeholder_name?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null)} - - -/** aggregate sum on columns */ -export interface v_match_captains_sum_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface v_match_captains_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (v_match_captains_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (v_match_captains_set_input | null), -/** filter the rows which have to be updated */ -where: v_match_captains_bool_exp} - - -/** aggregate var_pop on columns */ -export interface v_match_captains_var_pop_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface v_match_captains_var_samp_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface v_match_captains_variance_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "v_match_clutches" */ -export interface v_match_clutchesGenqlSelection{ - against_count?: boolean | number - /** An object relationship */ - clutcher?: playersGenqlSelection - clutcher_steam_id?: boolean | number - kills_in_clutch?: boolean | number - /** An object relationship */ - match?: matchesGenqlSelection - match_id?: boolean | number - /** An object relationship */ - match_lineup?: match_lineupsGenqlSelection - match_lineup_id?: boolean | number - /** An object relationship */ - match_map?: match_mapsGenqlSelection - match_map_id?: boolean | number - outcome?: boolean | number - round?: boolean | number - side?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "v_match_clutches" */ -export interface v_match_clutches_aggregateGenqlSelection{ - aggregate?: v_match_clutches_aggregate_fieldsGenqlSelection - nodes?: v_match_clutchesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface v_match_clutches_aggregate_bool_exp {count?: (v_match_clutches_aggregate_bool_exp_count | null)} - -export interface v_match_clutches_aggregate_bool_exp_count {arguments?: (v_match_clutches_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (v_match_clutches_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "v_match_clutches" */ -export interface v_match_clutches_aggregate_fieldsGenqlSelection{ - avg?: v_match_clutches_avg_fieldsGenqlSelection - count?: { __args: {columns?: (v_match_clutches_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: v_match_clutches_max_fieldsGenqlSelection - min?: v_match_clutches_min_fieldsGenqlSelection - stddev?: v_match_clutches_stddev_fieldsGenqlSelection - stddev_pop?: v_match_clutches_stddev_pop_fieldsGenqlSelection - stddev_samp?: v_match_clutches_stddev_samp_fieldsGenqlSelection - sum?: v_match_clutches_sum_fieldsGenqlSelection - var_pop?: v_match_clutches_var_pop_fieldsGenqlSelection - var_samp?: v_match_clutches_var_samp_fieldsGenqlSelection - variance?: v_match_clutches_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "v_match_clutches" */ -export interface v_match_clutches_aggregate_order_by {avg?: (v_match_clutches_avg_order_by | null),count?: (order_by | null),max?: (v_match_clutches_max_order_by | null),min?: (v_match_clutches_min_order_by | null),stddev?: (v_match_clutches_stddev_order_by | null),stddev_pop?: (v_match_clutches_stddev_pop_order_by | null),stddev_samp?: (v_match_clutches_stddev_samp_order_by | null),sum?: (v_match_clutches_sum_order_by | null),var_pop?: (v_match_clutches_var_pop_order_by | null),var_samp?: (v_match_clutches_var_samp_order_by | null),variance?: (v_match_clutches_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "v_match_clutches" */ -export interface v_match_clutches_arr_rel_insert_input {data: v_match_clutches_insert_input[]} - - -/** aggregate avg on columns */ -export interface v_match_clutches_avg_fieldsGenqlSelection{ - against_count?: boolean | number - clutcher_steam_id?: boolean | number - kills_in_clutch?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "v_match_clutches" */ -export interface v_match_clutches_avg_order_by {against_count?: (order_by | null),clutcher_steam_id?: (order_by | null),kills_in_clutch?: (order_by | null),round?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "v_match_clutches". All fields are combined with a logical 'AND'. */ -export interface v_match_clutches_bool_exp {_and?: (v_match_clutches_bool_exp[] | null),_not?: (v_match_clutches_bool_exp | null),_or?: (v_match_clutches_bool_exp[] | null),against_count?: (Int_comparison_exp | null),clutcher?: (players_bool_exp | null),clutcher_steam_id?: (bigint_comparison_exp | null),kills_in_clutch?: (Int_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_lineup?: (match_lineups_bool_exp | null),match_lineup_id?: (uuid_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_id?: (uuid_comparison_exp | null),outcome?: (String_comparison_exp | null),round?: (Int_comparison_exp | null),side?: (String_comparison_exp | null)} - - -/** input type for inserting data into table "v_match_clutches" */ -export interface v_match_clutches_insert_input {against_count?: (Scalars['Int'] | null),clutcher?: (players_obj_rel_insert_input | null),clutcher_steam_id?: (Scalars['bigint'] | null),kills_in_clutch?: (Scalars['Int'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_lineup?: (match_lineups_obj_rel_insert_input | null),match_lineup_id?: (Scalars['uuid'] | null),match_map?: (match_maps_obj_rel_insert_input | null),match_map_id?: (Scalars['uuid'] | null),outcome?: (Scalars['String'] | null),round?: (Scalars['Int'] | null),side?: (Scalars['String'] | null)} - - -/** aggregate max on columns */ -export interface v_match_clutches_max_fieldsGenqlSelection{ - against_count?: boolean | number - clutcher_steam_id?: boolean | number - kills_in_clutch?: boolean | number - match_id?: boolean | number - match_lineup_id?: boolean | number - match_map_id?: boolean | number - outcome?: boolean | number - round?: boolean | number - side?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "v_match_clutches" */ -export interface v_match_clutches_max_order_by {against_count?: (order_by | null),clutcher_steam_id?: (order_by | null),kills_in_clutch?: (order_by | null),match_id?: (order_by | null),match_lineup_id?: (order_by | null),match_map_id?: (order_by | null),outcome?: (order_by | null),round?: (order_by | null),side?: (order_by | null)} - - -/** aggregate min on columns */ -export interface v_match_clutches_min_fieldsGenqlSelection{ - against_count?: boolean | number - clutcher_steam_id?: boolean | number - kills_in_clutch?: boolean | number - match_id?: boolean | number - match_lineup_id?: boolean | number - match_map_id?: boolean | number - outcome?: boolean | number - round?: boolean | number - side?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "v_match_clutches" */ -export interface v_match_clutches_min_order_by {against_count?: (order_by | null),clutcher_steam_id?: (order_by | null),kills_in_clutch?: (order_by | null),match_id?: (order_by | null),match_lineup_id?: (order_by | null),match_map_id?: (order_by | null),outcome?: (order_by | null),round?: (order_by | null),side?: (order_by | null)} - - -/** Ordering options when selecting data from "v_match_clutches". */ -export interface v_match_clutches_order_by {against_count?: (order_by | null),clutcher?: (players_order_by | null),clutcher_steam_id?: (order_by | null),kills_in_clutch?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_lineup?: (match_lineups_order_by | null),match_lineup_id?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_id?: (order_by | null),outcome?: (order_by | null),round?: (order_by | null),side?: (order_by | null)} - - -/** aggregate stddev on columns */ -export interface v_match_clutches_stddev_fieldsGenqlSelection{ - against_count?: boolean | number - clutcher_steam_id?: boolean | number - kills_in_clutch?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "v_match_clutches" */ -export interface v_match_clutches_stddev_order_by {against_count?: (order_by | null),clutcher_steam_id?: (order_by | null),kills_in_clutch?: (order_by | null),round?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface v_match_clutches_stddev_pop_fieldsGenqlSelection{ - against_count?: boolean | number - clutcher_steam_id?: boolean | number - kills_in_clutch?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "v_match_clutches" */ -export interface v_match_clutches_stddev_pop_order_by {against_count?: (order_by | null),clutcher_steam_id?: (order_by | null),kills_in_clutch?: (order_by | null),round?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface v_match_clutches_stddev_samp_fieldsGenqlSelection{ - against_count?: boolean | number - clutcher_steam_id?: boolean | number - kills_in_clutch?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "v_match_clutches" */ -export interface v_match_clutches_stddev_samp_order_by {against_count?: (order_by | null),clutcher_steam_id?: (order_by | null),kills_in_clutch?: (order_by | null),round?: (order_by | null)} - - -/** Streaming cursor of the table "v_match_clutches" */ -export interface v_match_clutches_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: v_match_clutches_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface v_match_clutches_stream_cursor_value_input {against_count?: (Scalars['Int'] | null),clutcher_steam_id?: (Scalars['bigint'] | null),kills_in_clutch?: (Scalars['Int'] | null),match_id?: (Scalars['uuid'] | null),match_lineup_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),outcome?: (Scalars['String'] | null),round?: (Scalars['Int'] | null),side?: (Scalars['String'] | null)} - - -/** aggregate sum on columns */ -export interface v_match_clutches_sum_fieldsGenqlSelection{ - against_count?: boolean | number - clutcher_steam_id?: boolean | number - kills_in_clutch?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "v_match_clutches" */ -export interface v_match_clutches_sum_order_by {against_count?: (order_by | null),clutcher_steam_id?: (order_by | null),kills_in_clutch?: (order_by | null),round?: (order_by | null)} - - -/** aggregate var_pop on columns */ -export interface v_match_clutches_var_pop_fieldsGenqlSelection{ - against_count?: boolean | number - clutcher_steam_id?: boolean | number - kills_in_clutch?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "v_match_clutches" */ -export interface v_match_clutches_var_pop_order_by {against_count?: (order_by | null),clutcher_steam_id?: (order_by | null),kills_in_clutch?: (order_by | null),round?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface v_match_clutches_var_samp_fieldsGenqlSelection{ - against_count?: boolean | number - clutcher_steam_id?: boolean | number - kills_in_clutch?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "v_match_clutches" */ -export interface v_match_clutches_var_samp_order_by {against_count?: (order_by | null),clutcher_steam_id?: (order_by | null),kills_in_clutch?: (order_by | null),round?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface v_match_clutches_variance_fieldsGenqlSelection{ - against_count?: boolean | number - clutcher_steam_id?: boolean | number - kills_in_clutch?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "v_match_clutches" */ -export interface v_match_clutches_variance_order_by {against_count?: (order_by | null),clutcher_steam_id?: (order_by | null),kills_in_clutch?: (order_by | null),round?: (order_by | null)} - - -/** columns and relationships of "v_match_kill_pairs" */ -export interface v_match_kill_pairsGenqlSelection{ - killer_side?: boolean | number - killer_steam_id?: boolean | number - kills?: boolean | number - /** An object relationship */ - match?: matchesGenqlSelection - match_id?: boolean | number - /** An object relationship */ - match_map?: match_mapsGenqlSelection - match_map_id?: boolean | number - victim_side?: boolean | number - victim_steam_id?: boolean | number - weapon?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "v_match_kill_pairs" */ -export interface v_match_kill_pairs_aggregateGenqlSelection{ - aggregate?: v_match_kill_pairs_aggregate_fieldsGenqlSelection - nodes?: v_match_kill_pairsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "v_match_kill_pairs" */ -export interface v_match_kill_pairs_aggregate_fieldsGenqlSelection{ - avg?: v_match_kill_pairs_avg_fieldsGenqlSelection - count?: { __args: {columns?: (v_match_kill_pairs_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: v_match_kill_pairs_max_fieldsGenqlSelection - min?: v_match_kill_pairs_min_fieldsGenqlSelection - stddev?: v_match_kill_pairs_stddev_fieldsGenqlSelection - stddev_pop?: v_match_kill_pairs_stddev_pop_fieldsGenqlSelection - stddev_samp?: v_match_kill_pairs_stddev_samp_fieldsGenqlSelection - sum?: v_match_kill_pairs_sum_fieldsGenqlSelection - var_pop?: v_match_kill_pairs_var_pop_fieldsGenqlSelection - var_samp?: v_match_kill_pairs_var_samp_fieldsGenqlSelection - variance?: v_match_kill_pairs_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface v_match_kill_pairs_avg_fieldsGenqlSelection{ - killer_steam_id?: boolean | number - kills?: boolean | number - victim_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "v_match_kill_pairs". All fields are combined with a logical 'AND'. */ -export interface v_match_kill_pairs_bool_exp {_and?: (v_match_kill_pairs_bool_exp[] | null),_not?: (v_match_kill_pairs_bool_exp | null),_or?: (v_match_kill_pairs_bool_exp[] | null),killer_side?: (String_comparison_exp | null),killer_steam_id?: (bigint_comparison_exp | null),kills?: (Int_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_id?: (uuid_comparison_exp | null),victim_side?: (String_comparison_exp | null),victim_steam_id?: (bigint_comparison_exp | null),weapon?: (String_comparison_exp | null)} - - -/** aggregate max on columns */ -export interface v_match_kill_pairs_max_fieldsGenqlSelection{ - killer_side?: boolean | number - killer_steam_id?: boolean | number - kills?: boolean | number - match_id?: boolean | number - match_map_id?: boolean | number - victim_side?: boolean | number - victim_steam_id?: boolean | number - weapon?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface v_match_kill_pairs_min_fieldsGenqlSelection{ - killer_side?: boolean | number - killer_steam_id?: boolean | number - kills?: boolean | number - match_id?: boolean | number - match_map_id?: boolean | number - victim_side?: boolean | number - victim_steam_id?: boolean | number - weapon?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Ordering options when selecting data from "v_match_kill_pairs". */ -export interface v_match_kill_pairs_order_by {killer_side?: (order_by | null),killer_steam_id?: (order_by | null),kills?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_id?: (order_by | null),victim_side?: (order_by | null),victim_steam_id?: (order_by | null),weapon?: (order_by | null)} - - -/** aggregate stddev on columns */ -export interface v_match_kill_pairs_stddev_fieldsGenqlSelection{ - killer_steam_id?: boolean | number - kills?: boolean | number - victim_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface v_match_kill_pairs_stddev_pop_fieldsGenqlSelection{ - killer_steam_id?: boolean | number - kills?: boolean | number - victim_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface v_match_kill_pairs_stddev_samp_fieldsGenqlSelection{ - killer_steam_id?: boolean | number - kills?: boolean | number - victim_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "v_match_kill_pairs" */ -export interface v_match_kill_pairs_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: v_match_kill_pairs_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface v_match_kill_pairs_stream_cursor_value_input {killer_side?: (Scalars['String'] | null),killer_steam_id?: (Scalars['bigint'] | null),kills?: (Scalars['Int'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),victim_side?: (Scalars['String'] | null),victim_steam_id?: (Scalars['bigint'] | null),weapon?: (Scalars['String'] | null)} - - -/** aggregate sum on columns */ -export interface v_match_kill_pairs_sum_fieldsGenqlSelection{ - killer_steam_id?: boolean | number - kills?: boolean | number - victim_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_pop on columns */ -export interface v_match_kill_pairs_var_pop_fieldsGenqlSelection{ - killer_steam_id?: boolean | number - kills?: boolean | number - victim_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface v_match_kill_pairs_var_samp_fieldsGenqlSelection{ - killer_steam_id?: boolean | number - kills?: boolean | number - victim_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface v_match_kill_pairs_variance_fieldsGenqlSelection{ - killer_steam_id?: boolean | number - kills?: boolean | number - victim_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "v_match_lineup_buy_types" */ -export interface v_match_lineup_buy_typesGenqlSelection{ - /** An object relationship */ - match?: matchesGenqlSelection - match_id?: boolean | number - /** An object relationship */ - match_lineup?: match_lineupsGenqlSelection - match_lineup_id?: boolean | number - /** An object relationship */ - match_map?: match_mapsGenqlSelection - match_map_id?: boolean | number - matchup?: boolean | number - rounds?: boolean | number - side?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "v_match_lineup_buy_types" */ -export interface v_match_lineup_buy_types_aggregateGenqlSelection{ - aggregate?: v_match_lineup_buy_types_aggregate_fieldsGenqlSelection - nodes?: v_match_lineup_buy_typesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "v_match_lineup_buy_types" */ -export interface v_match_lineup_buy_types_aggregate_fieldsGenqlSelection{ - avg?: v_match_lineup_buy_types_avg_fieldsGenqlSelection - count?: { __args: {columns?: (v_match_lineup_buy_types_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: v_match_lineup_buy_types_max_fieldsGenqlSelection - min?: v_match_lineup_buy_types_min_fieldsGenqlSelection - stddev?: v_match_lineup_buy_types_stddev_fieldsGenqlSelection - stddev_pop?: v_match_lineup_buy_types_stddev_pop_fieldsGenqlSelection - stddev_samp?: v_match_lineup_buy_types_stddev_samp_fieldsGenqlSelection - sum?: v_match_lineup_buy_types_sum_fieldsGenqlSelection - var_pop?: v_match_lineup_buy_types_var_pop_fieldsGenqlSelection - var_samp?: v_match_lineup_buy_types_var_samp_fieldsGenqlSelection - variance?: v_match_lineup_buy_types_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface v_match_lineup_buy_types_avg_fieldsGenqlSelection{ - rounds?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "v_match_lineup_buy_types". All fields are combined with a logical 'AND'. */ -export interface v_match_lineup_buy_types_bool_exp {_and?: (v_match_lineup_buy_types_bool_exp[] | null),_not?: (v_match_lineup_buy_types_bool_exp | null),_or?: (v_match_lineup_buy_types_bool_exp[] | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_lineup?: (match_lineups_bool_exp | null),match_lineup_id?: (uuid_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_id?: (uuid_comparison_exp | null),matchup?: (String_comparison_exp | null),rounds?: (Int_comparison_exp | null),side?: (String_comparison_exp | null),wins?: (Int_comparison_exp | null)} - - -/** aggregate max on columns */ -export interface v_match_lineup_buy_types_max_fieldsGenqlSelection{ - match_id?: boolean | number - match_lineup_id?: boolean | number - match_map_id?: boolean | number - matchup?: boolean | number - rounds?: boolean | number - side?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface v_match_lineup_buy_types_min_fieldsGenqlSelection{ - match_id?: boolean | number - match_lineup_id?: boolean | number - match_map_id?: boolean | number - matchup?: boolean | number - rounds?: boolean | number - side?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Ordering options when selecting data from "v_match_lineup_buy_types". */ -export interface v_match_lineup_buy_types_order_by {match?: (matches_order_by | null),match_id?: (order_by | null),match_lineup?: (match_lineups_order_by | null),match_lineup_id?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_id?: (order_by | null),matchup?: (order_by | null),rounds?: (order_by | null),side?: (order_by | null),wins?: (order_by | null)} - - -/** aggregate stddev on columns */ -export interface v_match_lineup_buy_types_stddev_fieldsGenqlSelection{ - rounds?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface v_match_lineup_buy_types_stddev_pop_fieldsGenqlSelection{ - rounds?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface v_match_lineup_buy_types_stddev_samp_fieldsGenqlSelection{ - rounds?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "v_match_lineup_buy_types" */ -export interface v_match_lineup_buy_types_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: v_match_lineup_buy_types_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface v_match_lineup_buy_types_stream_cursor_value_input {match_id?: (Scalars['uuid'] | null),match_lineup_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),matchup?: (Scalars['String'] | null),rounds?: (Scalars['Int'] | null),side?: (Scalars['String'] | null),wins?: (Scalars['Int'] | null)} - - -/** aggregate sum on columns */ -export interface v_match_lineup_buy_types_sum_fieldsGenqlSelection{ - rounds?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_pop on columns */ -export interface v_match_lineup_buy_types_var_pop_fieldsGenqlSelection{ - rounds?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface v_match_lineup_buy_types_var_samp_fieldsGenqlSelection{ - rounds?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface v_match_lineup_buy_types_variance_fieldsGenqlSelection{ - rounds?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "v_match_lineup_map_stats" */ -export interface v_match_lineup_map_statsGenqlSelection{ - man_adv_rounds?: boolean | number - man_adv_wins?: boolean | number - man_dis_rounds?: boolean | number - man_dis_wins?: boolean | number - /** An object relationship */ - match?: matchesGenqlSelection - match_id?: boolean | number - /** An object relationship */ - match_lineup?: match_lineupsGenqlSelection - match_lineup_id?: boolean | number - /** An object relationship */ - match_map?: match_mapsGenqlSelection - match_map_id?: boolean | number - opening_attempts?: boolean | number - opening_wins?: boolean | number - pistol_rounds?: boolean | number - pistol_wins?: boolean | number - round_wins?: boolean | number - rounds?: boolean | number - side?: boolean | number - won_buy_eco?: boolean | number - won_buy_force?: boolean | number - won_buy_full?: boolean | number - won_buy_pistol?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "v_match_lineup_map_stats" */ -export interface v_match_lineup_map_stats_aggregateGenqlSelection{ - aggregate?: v_match_lineup_map_stats_aggregate_fieldsGenqlSelection - nodes?: v_match_lineup_map_statsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "v_match_lineup_map_stats" */ -export interface v_match_lineup_map_stats_aggregate_fieldsGenqlSelection{ - avg?: v_match_lineup_map_stats_avg_fieldsGenqlSelection - count?: { __args: {columns?: (v_match_lineup_map_stats_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: v_match_lineup_map_stats_max_fieldsGenqlSelection - min?: v_match_lineup_map_stats_min_fieldsGenqlSelection - stddev?: v_match_lineup_map_stats_stddev_fieldsGenqlSelection - stddev_pop?: v_match_lineup_map_stats_stddev_pop_fieldsGenqlSelection - stddev_samp?: v_match_lineup_map_stats_stddev_samp_fieldsGenqlSelection - sum?: v_match_lineup_map_stats_sum_fieldsGenqlSelection - var_pop?: v_match_lineup_map_stats_var_pop_fieldsGenqlSelection - var_samp?: v_match_lineup_map_stats_var_samp_fieldsGenqlSelection - variance?: v_match_lineup_map_stats_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface v_match_lineup_map_stats_avg_fieldsGenqlSelection{ - man_adv_rounds?: boolean | number - man_adv_wins?: boolean | number - man_dis_rounds?: boolean | number - man_dis_wins?: boolean | number - opening_attempts?: boolean | number - opening_wins?: boolean | number - pistol_rounds?: boolean | number - pistol_wins?: boolean | number - round_wins?: boolean | number - rounds?: boolean | number - won_buy_eco?: boolean | number - won_buy_force?: boolean | number - won_buy_full?: boolean | number - won_buy_pistol?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "v_match_lineup_map_stats". All fields are combined with a logical 'AND'. */ -export interface v_match_lineup_map_stats_bool_exp {_and?: (v_match_lineup_map_stats_bool_exp[] | null),_not?: (v_match_lineup_map_stats_bool_exp | null),_or?: (v_match_lineup_map_stats_bool_exp[] | null),man_adv_rounds?: (Int_comparison_exp | null),man_adv_wins?: (Int_comparison_exp | null),man_dis_rounds?: (Int_comparison_exp | null),man_dis_wins?: (Int_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_lineup?: (match_lineups_bool_exp | null),match_lineup_id?: (uuid_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_id?: (uuid_comparison_exp | null),opening_attempts?: (Int_comparison_exp | null),opening_wins?: (Int_comparison_exp | null),pistol_rounds?: (Int_comparison_exp | null),pistol_wins?: (Int_comparison_exp | null),round_wins?: (Int_comparison_exp | null),rounds?: (Int_comparison_exp | null),side?: (String_comparison_exp | null),won_buy_eco?: (Int_comparison_exp | null),won_buy_force?: (Int_comparison_exp | null),won_buy_full?: (Int_comparison_exp | null),won_buy_pistol?: (Int_comparison_exp | null)} - - -/** aggregate max on columns */ -export interface v_match_lineup_map_stats_max_fieldsGenqlSelection{ - man_adv_rounds?: boolean | number - man_adv_wins?: boolean | number - man_dis_rounds?: boolean | number - man_dis_wins?: boolean | number - match_id?: boolean | number - match_lineup_id?: boolean | number - match_map_id?: boolean | number - opening_attempts?: boolean | number - opening_wins?: boolean | number - pistol_rounds?: boolean | number - pistol_wins?: boolean | number - round_wins?: boolean | number - rounds?: boolean | number - side?: boolean | number - won_buy_eco?: boolean | number - won_buy_force?: boolean | number - won_buy_full?: boolean | number - won_buy_pistol?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface v_match_lineup_map_stats_min_fieldsGenqlSelection{ - man_adv_rounds?: boolean | number - man_adv_wins?: boolean | number - man_dis_rounds?: boolean | number - man_dis_wins?: boolean | number - match_id?: boolean | number - match_lineup_id?: boolean | number - match_map_id?: boolean | number - opening_attempts?: boolean | number - opening_wins?: boolean | number - pistol_rounds?: boolean | number - pistol_wins?: boolean | number - round_wins?: boolean | number - rounds?: boolean | number - side?: boolean | number - won_buy_eco?: boolean | number - won_buy_force?: boolean | number - won_buy_full?: boolean | number - won_buy_pistol?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Ordering options when selecting data from "v_match_lineup_map_stats". */ -export interface v_match_lineup_map_stats_order_by {man_adv_rounds?: (order_by | null),man_adv_wins?: (order_by | null),man_dis_rounds?: (order_by | null),man_dis_wins?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_lineup?: (match_lineups_order_by | null),match_lineup_id?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_id?: (order_by | null),opening_attempts?: (order_by | null),opening_wins?: (order_by | null),pistol_rounds?: (order_by | null),pistol_wins?: (order_by | null),round_wins?: (order_by | null),rounds?: (order_by | null),side?: (order_by | null),won_buy_eco?: (order_by | null),won_buy_force?: (order_by | null),won_buy_full?: (order_by | null),won_buy_pistol?: (order_by | null)} - - -/** aggregate stddev on columns */ -export interface v_match_lineup_map_stats_stddev_fieldsGenqlSelection{ - man_adv_rounds?: boolean | number - man_adv_wins?: boolean | number - man_dis_rounds?: boolean | number - man_dis_wins?: boolean | number - opening_attempts?: boolean | number - opening_wins?: boolean | number - pistol_rounds?: boolean | number - pistol_wins?: boolean | number - round_wins?: boolean | number - rounds?: boolean | number - won_buy_eco?: boolean | number - won_buy_force?: boolean | number - won_buy_full?: boolean | number - won_buy_pistol?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface v_match_lineup_map_stats_stddev_pop_fieldsGenqlSelection{ - man_adv_rounds?: boolean | number - man_adv_wins?: boolean | number - man_dis_rounds?: boolean | number - man_dis_wins?: boolean | number - opening_attempts?: boolean | number - opening_wins?: boolean | number - pistol_rounds?: boolean | number - pistol_wins?: boolean | number - round_wins?: boolean | number - rounds?: boolean | number - won_buy_eco?: boolean | number - won_buy_force?: boolean | number - won_buy_full?: boolean | number - won_buy_pistol?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface v_match_lineup_map_stats_stddev_samp_fieldsGenqlSelection{ - man_adv_rounds?: boolean | number - man_adv_wins?: boolean | number - man_dis_rounds?: boolean | number - man_dis_wins?: boolean | number - opening_attempts?: boolean | number - opening_wins?: boolean | number - pistol_rounds?: boolean | number - pistol_wins?: boolean | number - round_wins?: boolean | number - rounds?: boolean | number - won_buy_eco?: boolean | number - won_buy_force?: boolean | number - won_buy_full?: boolean | number - won_buy_pistol?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "v_match_lineup_map_stats" */ -export interface v_match_lineup_map_stats_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: v_match_lineup_map_stats_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface v_match_lineup_map_stats_stream_cursor_value_input {man_adv_rounds?: (Scalars['Int'] | null),man_adv_wins?: (Scalars['Int'] | null),man_dis_rounds?: (Scalars['Int'] | null),man_dis_wins?: (Scalars['Int'] | null),match_id?: (Scalars['uuid'] | null),match_lineup_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),opening_attempts?: (Scalars['Int'] | null),opening_wins?: (Scalars['Int'] | null),pistol_rounds?: (Scalars['Int'] | null),pistol_wins?: (Scalars['Int'] | null),round_wins?: (Scalars['Int'] | null),rounds?: (Scalars['Int'] | null),side?: (Scalars['String'] | null),won_buy_eco?: (Scalars['Int'] | null),won_buy_force?: (Scalars['Int'] | null),won_buy_full?: (Scalars['Int'] | null),won_buy_pistol?: (Scalars['Int'] | null)} - - -/** aggregate sum on columns */ -export interface v_match_lineup_map_stats_sum_fieldsGenqlSelection{ - man_adv_rounds?: boolean | number - man_adv_wins?: boolean | number - man_dis_rounds?: boolean | number - man_dis_wins?: boolean | number - opening_attempts?: boolean | number - opening_wins?: boolean | number - pistol_rounds?: boolean | number - pistol_wins?: boolean | number - round_wins?: boolean | number - rounds?: boolean | number - won_buy_eco?: boolean | number - won_buy_force?: boolean | number - won_buy_full?: boolean | number - won_buy_pistol?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_pop on columns */ -export interface v_match_lineup_map_stats_var_pop_fieldsGenqlSelection{ - man_adv_rounds?: boolean | number - man_adv_wins?: boolean | number - man_dis_rounds?: boolean | number - man_dis_wins?: boolean | number - opening_attempts?: boolean | number - opening_wins?: boolean | number - pistol_rounds?: boolean | number - pistol_wins?: boolean | number - round_wins?: boolean | number - rounds?: boolean | number - won_buy_eco?: boolean | number - won_buy_force?: boolean | number - won_buy_full?: boolean | number - won_buy_pistol?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface v_match_lineup_map_stats_var_samp_fieldsGenqlSelection{ - man_adv_rounds?: boolean | number - man_adv_wins?: boolean | number - man_dis_rounds?: boolean | number - man_dis_wins?: boolean | number - opening_attempts?: boolean | number - opening_wins?: boolean | number - pistol_rounds?: boolean | number - pistol_wins?: boolean | number - round_wins?: boolean | number - rounds?: boolean | number - won_buy_eco?: boolean | number - won_buy_force?: boolean | number - won_buy_full?: boolean | number - won_buy_pistol?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface v_match_lineup_map_stats_variance_fieldsGenqlSelection{ - man_adv_rounds?: boolean | number - man_adv_wins?: boolean | number - man_dis_rounds?: boolean | number - man_dis_wins?: boolean | number - opening_attempts?: boolean | number - opening_wins?: boolean | number - pistol_rounds?: boolean | number - pistol_wins?: boolean | number - round_wins?: boolean | number - rounds?: boolean | number - won_buy_eco?: boolean | number - won_buy_force?: boolean | number - won_buy_full?: boolean | number - won_buy_pistol?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "v_match_map_backup_rounds" */ -export interface v_match_map_backup_roundsGenqlSelection{ - has_backup_file?: boolean | number - match_map_id?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "v_match_map_backup_rounds" */ -export interface v_match_map_backup_rounds_aggregateGenqlSelection{ - aggregate?: v_match_map_backup_rounds_aggregate_fieldsGenqlSelection - nodes?: v_match_map_backup_roundsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "v_match_map_backup_rounds" */ -export interface v_match_map_backup_rounds_aggregate_fieldsGenqlSelection{ - avg?: v_match_map_backup_rounds_avg_fieldsGenqlSelection - count?: { __args: {columns?: (v_match_map_backup_rounds_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: v_match_map_backup_rounds_max_fieldsGenqlSelection - min?: v_match_map_backup_rounds_min_fieldsGenqlSelection - stddev?: v_match_map_backup_rounds_stddev_fieldsGenqlSelection - stddev_pop?: v_match_map_backup_rounds_stddev_pop_fieldsGenqlSelection - stddev_samp?: v_match_map_backup_rounds_stddev_samp_fieldsGenqlSelection - sum?: v_match_map_backup_rounds_sum_fieldsGenqlSelection - var_pop?: v_match_map_backup_rounds_var_pop_fieldsGenqlSelection - var_samp?: v_match_map_backup_rounds_var_samp_fieldsGenqlSelection - variance?: v_match_map_backup_rounds_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface v_match_map_backup_rounds_avg_fieldsGenqlSelection{ - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "v_match_map_backup_rounds". All fields are combined with a logical 'AND'. */ -export interface v_match_map_backup_rounds_bool_exp {_and?: (v_match_map_backup_rounds_bool_exp[] | null),_not?: (v_match_map_backup_rounds_bool_exp | null),_or?: (v_match_map_backup_rounds_bool_exp[] | null),has_backup_file?: (Boolean_comparison_exp | null),match_map_id?: (uuid_comparison_exp | null),round?: (Int_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "v_match_map_backup_rounds" */ -export interface v_match_map_backup_rounds_inc_input {round?: (Scalars['Int'] | null)} - - -/** input type for inserting data into table "v_match_map_backup_rounds" */ -export interface v_match_map_backup_rounds_insert_input {has_backup_file?: (Scalars['Boolean'] | null),match_map_id?: (Scalars['uuid'] | null),round?: (Scalars['Int'] | null)} - - -/** aggregate max on columns */ -export interface v_match_map_backup_rounds_max_fieldsGenqlSelection{ - match_map_id?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface v_match_map_backup_rounds_min_fieldsGenqlSelection{ - match_map_id?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** response of any mutation on the table "v_match_map_backup_rounds" */ -export interface v_match_map_backup_rounds_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: v_match_map_backup_roundsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Ordering options when selecting data from "v_match_map_backup_rounds". */ -export interface v_match_map_backup_rounds_order_by {has_backup_file?: (order_by | null),match_map_id?: (order_by | null),round?: (order_by | null)} - - -/** input type for updating data in table "v_match_map_backup_rounds" */ -export interface v_match_map_backup_rounds_set_input {has_backup_file?: (Scalars['Boolean'] | null),match_map_id?: (Scalars['uuid'] | null),round?: (Scalars['Int'] | null)} - - -/** aggregate stddev on columns */ -export interface v_match_map_backup_rounds_stddev_fieldsGenqlSelection{ - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface v_match_map_backup_rounds_stddev_pop_fieldsGenqlSelection{ - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface v_match_map_backup_rounds_stddev_samp_fieldsGenqlSelection{ - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "v_match_map_backup_rounds" */ -export interface v_match_map_backup_rounds_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: v_match_map_backup_rounds_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface v_match_map_backup_rounds_stream_cursor_value_input {has_backup_file?: (Scalars['Boolean'] | null),match_map_id?: (Scalars['uuid'] | null),round?: (Scalars['Int'] | null)} - - -/** aggregate sum on columns */ -export interface v_match_map_backup_rounds_sum_fieldsGenqlSelection{ - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface v_match_map_backup_rounds_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (v_match_map_backup_rounds_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (v_match_map_backup_rounds_set_input | null), -/** filter the rows which have to be updated */ -where: v_match_map_backup_rounds_bool_exp} - - -/** aggregate var_pop on columns */ -export interface v_match_map_backup_rounds_var_pop_fieldsGenqlSelection{ - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface v_match_map_backup_rounds_var_samp_fieldsGenqlSelection{ - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface v_match_map_backup_rounds_variance_fieldsGenqlSelection{ - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "v_match_player_buy_types" */ -export interface v_match_player_buy_typesGenqlSelection{ - deaths?: boolean | number - kills?: boolean | number - /** An object relationship */ - match?: matchesGenqlSelection - match_id?: boolean | number - /** An object relationship */ - match_lineup?: match_lineupsGenqlSelection - match_lineup_id?: boolean | number - /** An object relationship */ - match_map?: match_mapsGenqlSelection - match_map_id?: boolean | number - matchup?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - rounds?: boolean | number - side?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "v_match_player_buy_types" */ -export interface v_match_player_buy_types_aggregateGenqlSelection{ - aggregate?: v_match_player_buy_types_aggregate_fieldsGenqlSelection - nodes?: v_match_player_buy_typesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "v_match_player_buy_types" */ -export interface v_match_player_buy_types_aggregate_fieldsGenqlSelection{ - avg?: v_match_player_buy_types_avg_fieldsGenqlSelection - count?: { __args: {columns?: (v_match_player_buy_types_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: v_match_player_buy_types_max_fieldsGenqlSelection - min?: v_match_player_buy_types_min_fieldsGenqlSelection - stddev?: v_match_player_buy_types_stddev_fieldsGenqlSelection - stddev_pop?: v_match_player_buy_types_stddev_pop_fieldsGenqlSelection - stddev_samp?: v_match_player_buy_types_stddev_samp_fieldsGenqlSelection - sum?: v_match_player_buy_types_sum_fieldsGenqlSelection - var_pop?: v_match_player_buy_types_var_pop_fieldsGenqlSelection - var_samp?: v_match_player_buy_types_var_samp_fieldsGenqlSelection - variance?: v_match_player_buy_types_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface v_match_player_buy_types_avg_fieldsGenqlSelection{ - deaths?: boolean | number - kills?: boolean | number - rounds?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "v_match_player_buy_types". All fields are combined with a logical 'AND'. */ -export interface v_match_player_buy_types_bool_exp {_and?: (v_match_player_buy_types_bool_exp[] | null),_not?: (v_match_player_buy_types_bool_exp | null),_or?: (v_match_player_buy_types_bool_exp[] | null),deaths?: (Int_comparison_exp | null),kills?: (Int_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_lineup?: (match_lineups_bool_exp | null),match_lineup_id?: (uuid_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_id?: (uuid_comparison_exp | null),matchup?: (String_comparison_exp | null),player?: (players_bool_exp | null),rounds?: (Int_comparison_exp | null),side?: (String_comparison_exp | null),steam_id?: (bigint_comparison_exp | null)} - - -/** aggregate max on columns */ -export interface v_match_player_buy_types_max_fieldsGenqlSelection{ - deaths?: boolean | number - kills?: boolean | number - match_id?: boolean | number - match_lineup_id?: boolean | number - match_map_id?: boolean | number - matchup?: boolean | number - rounds?: boolean | number - side?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface v_match_player_buy_types_min_fieldsGenqlSelection{ - deaths?: boolean | number - kills?: boolean | number - match_id?: boolean | number - match_lineup_id?: boolean | number - match_map_id?: boolean | number - matchup?: boolean | number - rounds?: boolean | number - side?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Ordering options when selecting data from "v_match_player_buy_types". */ -export interface v_match_player_buy_types_order_by {deaths?: (order_by | null),kills?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_lineup?: (match_lineups_order_by | null),match_lineup_id?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_id?: (order_by | null),matchup?: (order_by | null),player?: (players_order_by | null),rounds?: (order_by | null),side?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate stddev on columns */ -export interface v_match_player_buy_types_stddev_fieldsGenqlSelection{ - deaths?: boolean | number - kills?: boolean | number - rounds?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface v_match_player_buy_types_stddev_pop_fieldsGenqlSelection{ - deaths?: boolean | number - kills?: boolean | number - rounds?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface v_match_player_buy_types_stddev_samp_fieldsGenqlSelection{ - deaths?: boolean | number - kills?: boolean | number - rounds?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "v_match_player_buy_types" */ -export interface v_match_player_buy_types_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: v_match_player_buy_types_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface v_match_player_buy_types_stream_cursor_value_input {deaths?: (Scalars['Int'] | null),kills?: (Scalars['Int'] | null),match_id?: (Scalars['uuid'] | null),match_lineup_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),matchup?: (Scalars['String'] | null),rounds?: (Scalars['Int'] | null),side?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null)} - - -/** aggregate sum on columns */ -export interface v_match_player_buy_types_sum_fieldsGenqlSelection{ - deaths?: boolean | number - kills?: boolean | number - rounds?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_pop on columns */ -export interface v_match_player_buy_types_var_pop_fieldsGenqlSelection{ - deaths?: boolean | number - kills?: boolean | number - rounds?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface v_match_player_buy_types_var_samp_fieldsGenqlSelection{ - deaths?: boolean | number - kills?: boolean | number - rounds?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface v_match_player_buy_types_variance_fieldsGenqlSelection{ - deaths?: boolean | number - kills?: boolean | number - rounds?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "v_match_player_opening_duels" */ -export interface v_match_player_opening_duelsGenqlSelection{ - attempts?: boolean | number - deaths?: boolean | number - /** An object relationship */ - match?: matchesGenqlSelection - match_id?: boolean | number - /** An object relationship */ - match_lineup?: match_lineupsGenqlSelection - match_lineup_id?: boolean | number - /** An object relationship */ - match_map?: match_mapsGenqlSelection - match_map_id?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - side?: boolean | number - steam_id?: boolean | number - traded_deaths?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "v_match_player_opening_duels" */ -export interface v_match_player_opening_duels_aggregateGenqlSelection{ - aggregate?: v_match_player_opening_duels_aggregate_fieldsGenqlSelection - nodes?: v_match_player_opening_duelsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface v_match_player_opening_duels_aggregate_bool_exp {count?: (v_match_player_opening_duels_aggregate_bool_exp_count | null)} - -export interface v_match_player_opening_duels_aggregate_bool_exp_count {arguments?: (v_match_player_opening_duels_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (v_match_player_opening_duels_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "v_match_player_opening_duels" */ -export interface v_match_player_opening_duels_aggregate_fieldsGenqlSelection{ - avg?: v_match_player_opening_duels_avg_fieldsGenqlSelection - count?: { __args: {columns?: (v_match_player_opening_duels_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: v_match_player_opening_duels_max_fieldsGenqlSelection - min?: v_match_player_opening_duels_min_fieldsGenqlSelection - stddev?: v_match_player_opening_duels_stddev_fieldsGenqlSelection - stddev_pop?: v_match_player_opening_duels_stddev_pop_fieldsGenqlSelection - stddev_samp?: v_match_player_opening_duels_stddev_samp_fieldsGenqlSelection - sum?: v_match_player_opening_duels_sum_fieldsGenqlSelection - var_pop?: v_match_player_opening_duels_var_pop_fieldsGenqlSelection - var_samp?: v_match_player_opening_duels_var_samp_fieldsGenqlSelection - variance?: v_match_player_opening_duels_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "v_match_player_opening_duels" */ -export interface v_match_player_opening_duels_aggregate_order_by {avg?: (v_match_player_opening_duels_avg_order_by | null),count?: (order_by | null),max?: (v_match_player_opening_duels_max_order_by | null),min?: (v_match_player_opening_duels_min_order_by | null),stddev?: (v_match_player_opening_duels_stddev_order_by | null),stddev_pop?: (v_match_player_opening_duels_stddev_pop_order_by | null),stddev_samp?: (v_match_player_opening_duels_stddev_samp_order_by | null),sum?: (v_match_player_opening_duels_sum_order_by | null),var_pop?: (v_match_player_opening_duels_var_pop_order_by | null),var_samp?: (v_match_player_opening_duels_var_samp_order_by | null),variance?: (v_match_player_opening_duels_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "v_match_player_opening_duels" */ -export interface v_match_player_opening_duels_arr_rel_insert_input {data: v_match_player_opening_duels_insert_input[]} - - -/** aggregate avg on columns */ -export interface v_match_player_opening_duels_avg_fieldsGenqlSelection{ - attempts?: boolean | number - deaths?: boolean | number - steam_id?: boolean | number - traded_deaths?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "v_match_player_opening_duels" */ -export interface v_match_player_opening_duels_avg_order_by {attempts?: (order_by | null),deaths?: (order_by | null),steam_id?: (order_by | null),traded_deaths?: (order_by | null),wins?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "v_match_player_opening_duels". All fields are combined with a logical 'AND'. */ -export interface v_match_player_opening_duels_bool_exp {_and?: (v_match_player_opening_duels_bool_exp[] | null),_not?: (v_match_player_opening_duels_bool_exp | null),_or?: (v_match_player_opening_duels_bool_exp[] | null),attempts?: (Int_comparison_exp | null),deaths?: (Int_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_lineup?: (match_lineups_bool_exp | null),match_lineup_id?: (uuid_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_id?: (uuid_comparison_exp | null),player?: (players_bool_exp | null),side?: (String_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),traded_deaths?: (Int_comparison_exp | null),wins?: (Int_comparison_exp | null)} - - -/** input type for inserting data into table "v_match_player_opening_duels" */ -export interface v_match_player_opening_duels_insert_input {attempts?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_lineup?: (match_lineups_obj_rel_insert_input | null),match_lineup_id?: (Scalars['uuid'] | null),match_map?: (match_maps_obj_rel_insert_input | null),match_map_id?: (Scalars['uuid'] | null),player?: (players_obj_rel_insert_input | null),side?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null),traded_deaths?: (Scalars['Int'] | null),wins?: (Scalars['Int'] | null)} - - -/** aggregate max on columns */ -export interface v_match_player_opening_duels_max_fieldsGenqlSelection{ - attempts?: boolean | number - deaths?: boolean | number - match_id?: boolean | number - match_lineup_id?: boolean | number - match_map_id?: boolean | number - side?: boolean | number - steam_id?: boolean | number - traded_deaths?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "v_match_player_opening_duels" */ -export interface v_match_player_opening_duels_max_order_by {attempts?: (order_by | null),deaths?: (order_by | null),match_id?: (order_by | null),match_lineup_id?: (order_by | null),match_map_id?: (order_by | null),side?: (order_by | null),steam_id?: (order_by | null),traded_deaths?: (order_by | null),wins?: (order_by | null)} - - -/** aggregate min on columns */ -export interface v_match_player_opening_duels_min_fieldsGenqlSelection{ - attempts?: boolean | number - deaths?: boolean | number - match_id?: boolean | number - match_lineup_id?: boolean | number - match_map_id?: boolean | number - side?: boolean | number - steam_id?: boolean | number - traded_deaths?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "v_match_player_opening_duels" */ -export interface v_match_player_opening_duels_min_order_by {attempts?: (order_by | null),deaths?: (order_by | null),match_id?: (order_by | null),match_lineup_id?: (order_by | null),match_map_id?: (order_by | null),side?: (order_by | null),steam_id?: (order_by | null),traded_deaths?: (order_by | null),wins?: (order_by | null)} - - -/** Ordering options when selecting data from "v_match_player_opening_duels". */ -export interface v_match_player_opening_duels_order_by {attempts?: (order_by | null),deaths?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_lineup?: (match_lineups_order_by | null),match_lineup_id?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_id?: (order_by | null),player?: (players_order_by | null),side?: (order_by | null),steam_id?: (order_by | null),traded_deaths?: (order_by | null),wins?: (order_by | null)} - - -/** aggregate stddev on columns */ -export interface v_match_player_opening_duels_stddev_fieldsGenqlSelection{ - attempts?: boolean | number - deaths?: boolean | number - steam_id?: boolean | number - traded_deaths?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "v_match_player_opening_duels" */ -export interface v_match_player_opening_duels_stddev_order_by {attempts?: (order_by | null),deaths?: (order_by | null),steam_id?: (order_by | null),traded_deaths?: (order_by | null),wins?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface v_match_player_opening_duels_stddev_pop_fieldsGenqlSelection{ - attempts?: boolean | number - deaths?: boolean | number - steam_id?: boolean | number - traded_deaths?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "v_match_player_opening_duels" */ -export interface v_match_player_opening_duels_stddev_pop_order_by {attempts?: (order_by | null),deaths?: (order_by | null),steam_id?: (order_by | null),traded_deaths?: (order_by | null),wins?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface v_match_player_opening_duels_stddev_samp_fieldsGenqlSelection{ - attempts?: boolean | number - deaths?: boolean | number - steam_id?: boolean | number - traded_deaths?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "v_match_player_opening_duels" */ -export interface v_match_player_opening_duels_stddev_samp_order_by {attempts?: (order_by | null),deaths?: (order_by | null),steam_id?: (order_by | null),traded_deaths?: (order_by | null),wins?: (order_by | null)} - - -/** Streaming cursor of the table "v_match_player_opening_duels" */ -export interface v_match_player_opening_duels_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: v_match_player_opening_duels_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface v_match_player_opening_duels_stream_cursor_value_input {attempts?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),match_id?: (Scalars['uuid'] | null),match_lineup_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),side?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null),traded_deaths?: (Scalars['Int'] | null),wins?: (Scalars['Int'] | null)} - - -/** aggregate sum on columns */ -export interface v_match_player_opening_duels_sum_fieldsGenqlSelection{ - attempts?: boolean | number - deaths?: boolean | number - steam_id?: boolean | number - traded_deaths?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "v_match_player_opening_duels" */ -export interface v_match_player_opening_duels_sum_order_by {attempts?: (order_by | null),deaths?: (order_by | null),steam_id?: (order_by | null),traded_deaths?: (order_by | null),wins?: (order_by | null)} - - -/** aggregate var_pop on columns */ -export interface v_match_player_opening_duels_var_pop_fieldsGenqlSelection{ - attempts?: boolean | number - deaths?: boolean | number - steam_id?: boolean | number - traded_deaths?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "v_match_player_opening_duels" */ -export interface v_match_player_opening_duels_var_pop_order_by {attempts?: (order_by | null),deaths?: (order_by | null),steam_id?: (order_by | null),traded_deaths?: (order_by | null),wins?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface v_match_player_opening_duels_var_samp_fieldsGenqlSelection{ - attempts?: boolean | number - deaths?: boolean | number - steam_id?: boolean | number - traded_deaths?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "v_match_player_opening_duels" */ -export interface v_match_player_opening_duels_var_samp_order_by {attempts?: (order_by | null),deaths?: (order_by | null),steam_id?: (order_by | null),traded_deaths?: (order_by | null),wins?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface v_match_player_opening_duels_variance_fieldsGenqlSelection{ - attempts?: boolean | number - deaths?: boolean | number - steam_id?: boolean | number - traded_deaths?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "v_match_player_opening_duels" */ -export interface v_match_player_opening_duels_variance_order_by {attempts?: (order_by | null),deaths?: (order_by | null),steam_id?: (order_by | null),traded_deaths?: (order_by | null),wins?: (order_by | null)} - - -/** columns and relationships of "v_player_arch_nemesis" */ -export interface v_player_arch_nemesisGenqlSelection{ - attacker_id?: boolean | number - kill_count?: boolean | number - /** An object relationship */ - nemsis?: playersGenqlSelection - /** An object relationship */ - player?: playersGenqlSelection - victim_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "v_player_arch_nemesis" */ -export interface v_player_arch_nemesis_aggregateGenqlSelection{ - aggregate?: v_player_arch_nemesis_aggregate_fieldsGenqlSelection - nodes?: v_player_arch_nemesisGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "v_player_arch_nemesis" */ -export interface v_player_arch_nemesis_aggregate_fieldsGenqlSelection{ - avg?: v_player_arch_nemesis_avg_fieldsGenqlSelection - count?: { __args: {columns?: (v_player_arch_nemesis_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: v_player_arch_nemesis_max_fieldsGenqlSelection - min?: v_player_arch_nemesis_min_fieldsGenqlSelection - stddev?: v_player_arch_nemesis_stddev_fieldsGenqlSelection - stddev_pop?: v_player_arch_nemesis_stddev_pop_fieldsGenqlSelection - stddev_samp?: v_player_arch_nemesis_stddev_samp_fieldsGenqlSelection - sum?: v_player_arch_nemesis_sum_fieldsGenqlSelection - var_pop?: v_player_arch_nemesis_var_pop_fieldsGenqlSelection - var_samp?: v_player_arch_nemesis_var_samp_fieldsGenqlSelection - variance?: v_player_arch_nemesis_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface v_player_arch_nemesis_avg_fieldsGenqlSelection{ - attacker_id?: boolean | number - kill_count?: boolean | number - victim_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "v_player_arch_nemesis". All fields are combined with a logical 'AND'. */ -export interface v_player_arch_nemesis_bool_exp {_and?: (v_player_arch_nemesis_bool_exp[] | null),_not?: (v_player_arch_nemesis_bool_exp | null),_or?: (v_player_arch_nemesis_bool_exp[] | null),attacker_id?: (bigint_comparison_exp | null),kill_count?: (bigint_comparison_exp | null),nemsis?: (players_bool_exp | null),player?: (players_bool_exp | null),victim_id?: (bigint_comparison_exp | null)} - - -/** aggregate max on columns */ -export interface v_player_arch_nemesis_max_fieldsGenqlSelection{ - attacker_id?: boolean | number - kill_count?: boolean | number - victim_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface v_player_arch_nemesis_min_fieldsGenqlSelection{ - attacker_id?: boolean | number - kill_count?: boolean | number - victim_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Ordering options when selecting data from "v_player_arch_nemesis". */ -export interface v_player_arch_nemesis_order_by {attacker_id?: (order_by | null),kill_count?: (order_by | null),nemsis?: (players_order_by | null),player?: (players_order_by | null),victim_id?: (order_by | null)} - - -/** aggregate stddev on columns */ -export interface v_player_arch_nemesis_stddev_fieldsGenqlSelection{ - attacker_id?: boolean | number - kill_count?: boolean | number - victim_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface v_player_arch_nemesis_stddev_pop_fieldsGenqlSelection{ - attacker_id?: boolean | number - kill_count?: boolean | number - victim_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface v_player_arch_nemesis_stddev_samp_fieldsGenqlSelection{ - attacker_id?: boolean | number - kill_count?: boolean | number - victim_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "v_player_arch_nemesis" */ -export interface v_player_arch_nemesis_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: v_player_arch_nemesis_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface v_player_arch_nemesis_stream_cursor_value_input {attacker_id?: (Scalars['bigint'] | null),kill_count?: (Scalars['bigint'] | null),victim_id?: (Scalars['bigint'] | null)} - - -/** aggregate sum on columns */ -export interface v_player_arch_nemesis_sum_fieldsGenqlSelection{ - attacker_id?: boolean | number - kill_count?: boolean | number - victim_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_pop on columns */ -export interface v_player_arch_nemesis_var_pop_fieldsGenqlSelection{ - attacker_id?: boolean | number - kill_count?: boolean | number - victim_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface v_player_arch_nemesis_var_samp_fieldsGenqlSelection{ - attacker_id?: boolean | number - kill_count?: boolean | number - victim_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface v_player_arch_nemesis_variance_fieldsGenqlSelection{ - attacker_id?: boolean | number - kill_count?: boolean | number - victim_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "v_player_damage" */ -export interface v_player_damageGenqlSelection{ - avg_damage_per_round?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - player_steam_id?: boolean | number - total_damage?: boolean | number - total_rounds?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "v_player_damage" */ -export interface v_player_damage_aggregateGenqlSelection{ - aggregate?: v_player_damage_aggregate_fieldsGenqlSelection - nodes?: v_player_damageGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "v_player_damage" */ -export interface v_player_damage_aggregate_fieldsGenqlSelection{ - avg?: v_player_damage_avg_fieldsGenqlSelection - count?: { __args: {columns?: (v_player_damage_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: v_player_damage_max_fieldsGenqlSelection - min?: v_player_damage_min_fieldsGenqlSelection - stddev?: v_player_damage_stddev_fieldsGenqlSelection - stddev_pop?: v_player_damage_stddev_pop_fieldsGenqlSelection - stddev_samp?: v_player_damage_stddev_samp_fieldsGenqlSelection - sum?: v_player_damage_sum_fieldsGenqlSelection - var_pop?: v_player_damage_var_pop_fieldsGenqlSelection - var_samp?: v_player_damage_var_samp_fieldsGenqlSelection - variance?: v_player_damage_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface v_player_damage_avg_fieldsGenqlSelection{ - avg_damage_per_round?: boolean | number - player_steam_id?: boolean | number - total_damage?: boolean | number - total_rounds?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "v_player_damage". All fields are combined with a logical 'AND'. */ -export interface v_player_damage_bool_exp {_and?: (v_player_damage_bool_exp[] | null),_not?: (v_player_damage_bool_exp | null),_or?: (v_player_damage_bool_exp[] | null),avg_damage_per_round?: (bigint_comparison_exp | null),player?: (players_bool_exp | null),player_steam_id?: (bigint_comparison_exp | null),total_damage?: (bigint_comparison_exp | null),total_rounds?: (bigint_comparison_exp | null)} - - -/** aggregate max on columns */ -export interface v_player_damage_max_fieldsGenqlSelection{ - avg_damage_per_round?: boolean | number - player_steam_id?: boolean | number - total_damage?: boolean | number - total_rounds?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface v_player_damage_min_fieldsGenqlSelection{ - avg_damage_per_round?: boolean | number - player_steam_id?: boolean | number - total_damage?: boolean | number - total_rounds?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Ordering options when selecting data from "v_player_damage". */ -export interface v_player_damage_order_by {avg_damage_per_round?: (order_by | null),player?: (players_order_by | null),player_steam_id?: (order_by | null),total_damage?: (order_by | null),total_rounds?: (order_by | null)} - - -/** aggregate stddev on columns */ -export interface v_player_damage_stddev_fieldsGenqlSelection{ - avg_damage_per_round?: boolean | number - player_steam_id?: boolean | number - total_damage?: boolean | number - total_rounds?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface v_player_damage_stddev_pop_fieldsGenqlSelection{ - avg_damage_per_round?: boolean | number - player_steam_id?: boolean | number - total_damage?: boolean | number - total_rounds?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface v_player_damage_stddev_samp_fieldsGenqlSelection{ - avg_damage_per_round?: boolean | number - player_steam_id?: boolean | number - total_damage?: boolean | number - total_rounds?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "v_player_damage" */ -export interface v_player_damage_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: v_player_damage_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface v_player_damage_stream_cursor_value_input {avg_damage_per_round?: (Scalars['bigint'] | null),player_steam_id?: (Scalars['bigint'] | null),total_damage?: (Scalars['bigint'] | null),total_rounds?: (Scalars['bigint'] | null)} - - -/** aggregate sum on columns */ -export interface v_player_damage_sum_fieldsGenqlSelection{ - avg_damage_per_round?: boolean | number - player_steam_id?: boolean | number - total_damage?: boolean | number - total_rounds?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_pop on columns */ -export interface v_player_damage_var_pop_fieldsGenqlSelection{ - avg_damage_per_round?: boolean | number - player_steam_id?: boolean | number - total_damage?: boolean | number - total_rounds?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface v_player_damage_var_samp_fieldsGenqlSelection{ - avg_damage_per_round?: boolean | number - player_steam_id?: boolean | number - total_damage?: boolean | number - total_rounds?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface v_player_damage_variance_fieldsGenqlSelection{ - avg_damage_per_round?: boolean | number - player_steam_id?: boolean | number - total_damage?: boolean | number - total_rounds?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "v_player_elo" */ -export interface v_player_eloGenqlSelection{ - actual_score?: boolean | number - assists?: boolean | number - current_elo?: boolean | number - damage?: boolean | number - damage_percent?: boolean | number - deaths?: boolean | number - elo_change?: boolean | number - expected_score?: boolean | number - impact?: boolean | number - k_factor?: boolean | number - kda?: boolean | number - kills?: boolean | number - map_losses?: boolean | number - map_wins?: boolean | number - /** An object relationship */ - match?: matchesGenqlSelection - match_created_at?: boolean | number - match_id?: boolean | number - match_result?: boolean | number - opponent_team_elo_avg?: boolean | number - performance_multiplier?: boolean | number - player_name?: boolean | number - player_steam_id?: boolean | number - player_team_elo_avg?: boolean | number - rating_for_expected?: boolean | number - season_id?: boolean | number - series_multiplier?: boolean | number - team_avg_kda?: boolean | number - type?: boolean | number - updated_elo?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "v_player_elo" */ -export interface v_player_elo_aggregateGenqlSelection{ - aggregate?: v_player_elo_aggregate_fieldsGenqlSelection - nodes?: v_player_eloGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface v_player_elo_aggregate_bool_exp {avg?: (v_player_elo_aggregate_bool_exp_avg | null),corr?: (v_player_elo_aggregate_bool_exp_corr | null),count?: (v_player_elo_aggregate_bool_exp_count | null),covar_samp?: (v_player_elo_aggregate_bool_exp_covar_samp | null),max?: (v_player_elo_aggregate_bool_exp_max | null),min?: (v_player_elo_aggregate_bool_exp_min | null),stddev_samp?: (v_player_elo_aggregate_bool_exp_stddev_samp | null),sum?: (v_player_elo_aggregate_bool_exp_sum | null),var_samp?: (v_player_elo_aggregate_bool_exp_var_samp | null)} - -export interface v_player_elo_aggregate_bool_exp_avg {arguments: v_player_elo_select_column_v_player_elo_aggregate_bool_exp_avg_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_player_elo_bool_exp | null),predicate: float8_comparison_exp} - -export interface v_player_elo_aggregate_bool_exp_corr {arguments: v_player_elo_aggregate_bool_exp_corr_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (v_player_elo_bool_exp | null),predicate: float8_comparison_exp} - -export interface v_player_elo_aggregate_bool_exp_corr_arguments {X: v_player_elo_select_column_v_player_elo_aggregate_bool_exp_corr_arguments_columns,Y: v_player_elo_select_column_v_player_elo_aggregate_bool_exp_corr_arguments_columns} - -export interface v_player_elo_aggregate_bool_exp_count {arguments?: (v_player_elo_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (v_player_elo_bool_exp | null),predicate: Int_comparison_exp} - -export interface v_player_elo_aggregate_bool_exp_covar_samp {arguments: v_player_elo_aggregate_bool_exp_covar_samp_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (v_player_elo_bool_exp | null),predicate: float8_comparison_exp} - -export interface v_player_elo_aggregate_bool_exp_covar_samp_arguments {X: v_player_elo_select_column_v_player_elo_aggregate_bool_exp_covar_samp_arguments_columns,Y: v_player_elo_select_column_v_player_elo_aggregate_bool_exp_covar_samp_arguments_columns} - -export interface v_player_elo_aggregate_bool_exp_max {arguments: v_player_elo_select_column_v_player_elo_aggregate_bool_exp_max_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_player_elo_bool_exp | null),predicate: float8_comparison_exp} - -export interface v_player_elo_aggregate_bool_exp_min {arguments: v_player_elo_select_column_v_player_elo_aggregate_bool_exp_min_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_player_elo_bool_exp | null),predicate: float8_comparison_exp} - -export interface v_player_elo_aggregate_bool_exp_stddev_samp {arguments: v_player_elo_select_column_v_player_elo_aggregate_bool_exp_stddev_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_player_elo_bool_exp | null),predicate: float8_comparison_exp} - -export interface v_player_elo_aggregate_bool_exp_sum {arguments: v_player_elo_select_column_v_player_elo_aggregate_bool_exp_sum_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_player_elo_bool_exp | null),predicate: float8_comparison_exp} - -export interface v_player_elo_aggregate_bool_exp_var_samp {arguments: v_player_elo_select_column_v_player_elo_aggregate_bool_exp_var_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_player_elo_bool_exp | null),predicate: float8_comparison_exp} - - -/** aggregate fields of "v_player_elo" */ -export interface v_player_elo_aggregate_fieldsGenqlSelection{ - avg?: v_player_elo_avg_fieldsGenqlSelection - count?: { __args: {columns?: (v_player_elo_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: v_player_elo_max_fieldsGenqlSelection - min?: v_player_elo_min_fieldsGenqlSelection - stddev?: v_player_elo_stddev_fieldsGenqlSelection - stddev_pop?: v_player_elo_stddev_pop_fieldsGenqlSelection - stddev_samp?: v_player_elo_stddev_samp_fieldsGenqlSelection - sum?: v_player_elo_sum_fieldsGenqlSelection - var_pop?: v_player_elo_var_pop_fieldsGenqlSelection - var_samp?: v_player_elo_var_samp_fieldsGenqlSelection - variance?: v_player_elo_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "v_player_elo" */ -export interface v_player_elo_aggregate_order_by {avg?: (v_player_elo_avg_order_by | null),count?: (order_by | null),max?: (v_player_elo_max_order_by | null),min?: (v_player_elo_min_order_by | null),stddev?: (v_player_elo_stddev_order_by | null),stddev_pop?: (v_player_elo_stddev_pop_order_by | null),stddev_samp?: (v_player_elo_stddev_samp_order_by | null),sum?: (v_player_elo_sum_order_by | null),var_pop?: (v_player_elo_var_pop_order_by | null),var_samp?: (v_player_elo_var_samp_order_by | null),variance?: (v_player_elo_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "v_player_elo" */ -export interface v_player_elo_arr_rel_insert_input {data: v_player_elo_insert_input[]} - - -/** aggregate avg on columns */ -export interface v_player_elo_avg_fieldsGenqlSelection{ - actual_score?: boolean | number - assists?: boolean | number - current_elo?: boolean | number - damage?: boolean | number - damage_percent?: boolean | number - deaths?: boolean | number - elo_change?: boolean | number - expected_score?: boolean | number - impact?: boolean | number - k_factor?: boolean | number - kda?: boolean | number - kills?: boolean | number - map_losses?: boolean | number - map_wins?: boolean | number - opponent_team_elo_avg?: boolean | number - performance_multiplier?: boolean | number - player_steam_id?: boolean | number - player_team_elo_avg?: boolean | number - rating_for_expected?: boolean | number - series_multiplier?: boolean | number - team_avg_kda?: boolean | number - updated_elo?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "v_player_elo" */ -export interface v_player_elo_avg_order_by {actual_score?: (order_by | null),assists?: (order_by | null),current_elo?: (order_by | null),damage?: (order_by | null),damage_percent?: (order_by | null),deaths?: (order_by | null),elo_change?: (order_by | null),expected_score?: (order_by | null),impact?: (order_by | null),k_factor?: (order_by | null),kda?: (order_by | null),kills?: (order_by | null),map_losses?: (order_by | null),map_wins?: (order_by | null),opponent_team_elo_avg?: (order_by | null),performance_multiplier?: (order_by | null),player_steam_id?: (order_by | null),player_team_elo_avg?: (order_by | null),rating_for_expected?: (order_by | null),series_multiplier?: (order_by | null),team_avg_kda?: (order_by | null),updated_elo?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "v_player_elo". All fields are combined with a logical 'AND'. */ -export interface v_player_elo_bool_exp {_and?: (v_player_elo_bool_exp[] | null),_not?: (v_player_elo_bool_exp | null),_or?: (v_player_elo_bool_exp[] | null),actual_score?: (float8_comparison_exp | null),assists?: (Int_comparison_exp | null),current_elo?: (Int_comparison_exp | null),damage?: (Int_comparison_exp | null),damage_percent?: (float8_comparison_exp | null),deaths?: (Int_comparison_exp | null),elo_change?: (Int_comparison_exp | null),expected_score?: (float8_comparison_exp | null),impact?: (float8_comparison_exp | null),k_factor?: (Int_comparison_exp | null),kda?: (float8_comparison_exp | null),kills?: (Int_comparison_exp | null),map_losses?: (Int_comparison_exp | null),map_wins?: (Int_comparison_exp | null),match?: (matches_bool_exp | null),match_created_at?: (timestamptz_comparison_exp | null),match_id?: (uuid_comparison_exp | null),match_result?: (String_comparison_exp | null),opponent_team_elo_avg?: (float8_comparison_exp | null),performance_multiplier?: (float8_comparison_exp | null),player_name?: (String_comparison_exp | null),player_steam_id?: (bigint_comparison_exp | null),player_team_elo_avg?: (float8_comparison_exp | null),rating_for_expected?: (float8_comparison_exp | null),season_id?: (uuid_comparison_exp | null),series_multiplier?: (Int_comparison_exp | null),team_avg_kda?: (float8_comparison_exp | null),type?: (String_comparison_exp | null),updated_elo?: (Int_comparison_exp | null)} - - -/** input type for inserting data into table "v_player_elo" */ -export interface v_player_elo_insert_input {actual_score?: (Scalars['float8'] | null),assists?: (Scalars['Int'] | null),current_elo?: (Scalars['Int'] | null),damage?: (Scalars['Int'] | null),damage_percent?: (Scalars['float8'] | null),deaths?: (Scalars['Int'] | null),elo_change?: (Scalars['Int'] | null),expected_score?: (Scalars['float8'] | null),impact?: (Scalars['float8'] | null),k_factor?: (Scalars['Int'] | null),kda?: (Scalars['float8'] | null),kills?: (Scalars['Int'] | null),map_losses?: (Scalars['Int'] | null),map_wins?: (Scalars['Int'] | null),match?: (matches_obj_rel_insert_input | null),match_created_at?: (Scalars['timestamptz'] | null),match_id?: (Scalars['uuid'] | null),match_result?: (Scalars['String'] | null),opponent_team_elo_avg?: (Scalars['float8'] | null),performance_multiplier?: (Scalars['float8'] | null),player_name?: (Scalars['String'] | null),player_steam_id?: (Scalars['bigint'] | null),player_team_elo_avg?: (Scalars['float8'] | null),rating_for_expected?: (Scalars['float8'] | null),season_id?: (Scalars['uuid'] | null),series_multiplier?: (Scalars['Int'] | null),team_avg_kda?: (Scalars['float8'] | null),type?: (Scalars['String'] | null),updated_elo?: (Scalars['Int'] | null)} - - -/** aggregate max on columns */ -export interface v_player_elo_max_fieldsGenqlSelection{ - actual_score?: boolean | number - assists?: boolean | number - current_elo?: boolean | number - damage?: boolean | number - damage_percent?: boolean | number - deaths?: boolean | number - elo_change?: boolean | number - expected_score?: boolean | number - impact?: boolean | number - k_factor?: boolean | number - kda?: boolean | number - kills?: boolean | number - map_losses?: boolean | number - map_wins?: boolean | number - match_created_at?: boolean | number - match_id?: boolean | number - match_result?: boolean | number - opponent_team_elo_avg?: boolean | number - performance_multiplier?: boolean | number - player_name?: boolean | number - player_steam_id?: boolean | number - player_team_elo_avg?: boolean | number - rating_for_expected?: boolean | number - season_id?: boolean | number - series_multiplier?: boolean | number - team_avg_kda?: boolean | number - type?: boolean | number - updated_elo?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "v_player_elo" */ -export interface v_player_elo_max_order_by {actual_score?: (order_by | null),assists?: (order_by | null),current_elo?: (order_by | null),damage?: (order_by | null),damage_percent?: (order_by | null),deaths?: (order_by | null),elo_change?: (order_by | null),expected_score?: (order_by | null),impact?: (order_by | null),k_factor?: (order_by | null),kda?: (order_by | null),kills?: (order_by | null),map_losses?: (order_by | null),map_wins?: (order_by | null),match_created_at?: (order_by | null),match_id?: (order_by | null),match_result?: (order_by | null),opponent_team_elo_avg?: (order_by | null),performance_multiplier?: (order_by | null),player_name?: (order_by | null),player_steam_id?: (order_by | null),player_team_elo_avg?: (order_by | null),rating_for_expected?: (order_by | null),season_id?: (order_by | null),series_multiplier?: (order_by | null),team_avg_kda?: (order_by | null),type?: (order_by | null),updated_elo?: (order_by | null)} - - -/** aggregate min on columns */ -export interface v_player_elo_min_fieldsGenqlSelection{ - actual_score?: boolean | number - assists?: boolean | number - current_elo?: boolean | number - damage?: boolean | number - damage_percent?: boolean | number - deaths?: boolean | number - elo_change?: boolean | number - expected_score?: boolean | number - impact?: boolean | number - k_factor?: boolean | number - kda?: boolean | number - kills?: boolean | number - map_losses?: boolean | number - map_wins?: boolean | number - match_created_at?: boolean | number - match_id?: boolean | number - match_result?: boolean | number - opponent_team_elo_avg?: boolean | number - performance_multiplier?: boolean | number - player_name?: boolean | number - player_steam_id?: boolean | number - player_team_elo_avg?: boolean | number - rating_for_expected?: boolean | number - season_id?: boolean | number - series_multiplier?: boolean | number - team_avg_kda?: boolean | number - type?: boolean | number - updated_elo?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "v_player_elo" */ -export interface v_player_elo_min_order_by {actual_score?: (order_by | null),assists?: (order_by | null),current_elo?: (order_by | null),damage?: (order_by | null),damage_percent?: (order_by | null),deaths?: (order_by | null),elo_change?: (order_by | null),expected_score?: (order_by | null),impact?: (order_by | null),k_factor?: (order_by | null),kda?: (order_by | null),kills?: (order_by | null),map_losses?: (order_by | null),map_wins?: (order_by | null),match_created_at?: (order_by | null),match_id?: (order_by | null),match_result?: (order_by | null),opponent_team_elo_avg?: (order_by | null),performance_multiplier?: (order_by | null),player_name?: (order_by | null),player_steam_id?: (order_by | null),player_team_elo_avg?: (order_by | null),rating_for_expected?: (order_by | null),season_id?: (order_by | null),series_multiplier?: (order_by | null),team_avg_kda?: (order_by | null),type?: (order_by | null),updated_elo?: (order_by | null)} - - -/** Ordering options when selecting data from "v_player_elo". */ -export interface v_player_elo_order_by {actual_score?: (order_by | null),assists?: (order_by | null),current_elo?: (order_by | null),damage?: (order_by | null),damage_percent?: (order_by | null),deaths?: (order_by | null),elo_change?: (order_by | null),expected_score?: (order_by | null),impact?: (order_by | null),k_factor?: (order_by | null),kda?: (order_by | null),kills?: (order_by | null),map_losses?: (order_by | null),map_wins?: (order_by | null),match?: (matches_order_by | null),match_created_at?: (order_by | null),match_id?: (order_by | null),match_result?: (order_by | null),opponent_team_elo_avg?: (order_by | null),performance_multiplier?: (order_by | null),player_name?: (order_by | null),player_steam_id?: (order_by | null),player_team_elo_avg?: (order_by | null),rating_for_expected?: (order_by | null),season_id?: (order_by | null),series_multiplier?: (order_by | null),team_avg_kda?: (order_by | null),type?: (order_by | null),updated_elo?: (order_by | null)} - - -/** aggregate stddev on columns */ -export interface v_player_elo_stddev_fieldsGenqlSelection{ - actual_score?: boolean | number - assists?: boolean | number - current_elo?: boolean | number - damage?: boolean | number - damage_percent?: boolean | number - deaths?: boolean | number - elo_change?: boolean | number - expected_score?: boolean | number - impact?: boolean | number - k_factor?: boolean | number - kda?: boolean | number - kills?: boolean | number - map_losses?: boolean | number - map_wins?: boolean | number - opponent_team_elo_avg?: boolean | number - performance_multiplier?: boolean | number - player_steam_id?: boolean | number - player_team_elo_avg?: boolean | number - rating_for_expected?: boolean | number - series_multiplier?: boolean | number - team_avg_kda?: boolean | number - updated_elo?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "v_player_elo" */ -export interface v_player_elo_stddev_order_by {actual_score?: (order_by | null),assists?: (order_by | null),current_elo?: (order_by | null),damage?: (order_by | null),damage_percent?: (order_by | null),deaths?: (order_by | null),elo_change?: (order_by | null),expected_score?: (order_by | null),impact?: (order_by | null),k_factor?: (order_by | null),kda?: (order_by | null),kills?: (order_by | null),map_losses?: (order_by | null),map_wins?: (order_by | null),opponent_team_elo_avg?: (order_by | null),performance_multiplier?: (order_by | null),player_steam_id?: (order_by | null),player_team_elo_avg?: (order_by | null),rating_for_expected?: (order_by | null),series_multiplier?: (order_by | null),team_avg_kda?: (order_by | null),updated_elo?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface v_player_elo_stddev_pop_fieldsGenqlSelection{ - actual_score?: boolean | number - assists?: boolean | number - current_elo?: boolean | number - damage?: boolean | number - damage_percent?: boolean | number - deaths?: boolean | number - elo_change?: boolean | number - expected_score?: boolean | number - impact?: boolean | number - k_factor?: boolean | number - kda?: boolean | number - kills?: boolean | number - map_losses?: boolean | number - map_wins?: boolean | number - opponent_team_elo_avg?: boolean | number - performance_multiplier?: boolean | number - player_steam_id?: boolean | number - player_team_elo_avg?: boolean | number - rating_for_expected?: boolean | number - series_multiplier?: boolean | number - team_avg_kda?: boolean | number - updated_elo?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "v_player_elo" */ -export interface v_player_elo_stddev_pop_order_by {actual_score?: (order_by | null),assists?: (order_by | null),current_elo?: (order_by | null),damage?: (order_by | null),damage_percent?: (order_by | null),deaths?: (order_by | null),elo_change?: (order_by | null),expected_score?: (order_by | null),impact?: (order_by | null),k_factor?: (order_by | null),kda?: (order_by | null),kills?: (order_by | null),map_losses?: (order_by | null),map_wins?: (order_by | null),opponent_team_elo_avg?: (order_by | null),performance_multiplier?: (order_by | null),player_steam_id?: (order_by | null),player_team_elo_avg?: (order_by | null),rating_for_expected?: (order_by | null),series_multiplier?: (order_by | null),team_avg_kda?: (order_by | null),updated_elo?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface v_player_elo_stddev_samp_fieldsGenqlSelection{ - actual_score?: boolean | number - assists?: boolean | number - current_elo?: boolean | number - damage?: boolean | number - damage_percent?: boolean | number - deaths?: boolean | number - elo_change?: boolean | number - expected_score?: boolean | number - impact?: boolean | number - k_factor?: boolean | number - kda?: boolean | number - kills?: boolean | number - map_losses?: boolean | number - map_wins?: boolean | number - opponent_team_elo_avg?: boolean | number - performance_multiplier?: boolean | number - player_steam_id?: boolean | number - player_team_elo_avg?: boolean | number - rating_for_expected?: boolean | number - series_multiplier?: boolean | number - team_avg_kda?: boolean | number - updated_elo?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "v_player_elo" */ -export interface v_player_elo_stddev_samp_order_by {actual_score?: (order_by | null),assists?: (order_by | null),current_elo?: (order_by | null),damage?: (order_by | null),damage_percent?: (order_by | null),deaths?: (order_by | null),elo_change?: (order_by | null),expected_score?: (order_by | null),impact?: (order_by | null),k_factor?: (order_by | null),kda?: (order_by | null),kills?: (order_by | null),map_losses?: (order_by | null),map_wins?: (order_by | null),opponent_team_elo_avg?: (order_by | null),performance_multiplier?: (order_by | null),player_steam_id?: (order_by | null),player_team_elo_avg?: (order_by | null),rating_for_expected?: (order_by | null),series_multiplier?: (order_by | null),team_avg_kda?: (order_by | null),updated_elo?: (order_by | null)} - - -/** Streaming cursor of the table "v_player_elo" */ -export interface v_player_elo_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: v_player_elo_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface v_player_elo_stream_cursor_value_input {actual_score?: (Scalars['float8'] | null),assists?: (Scalars['Int'] | null),current_elo?: (Scalars['Int'] | null),damage?: (Scalars['Int'] | null),damage_percent?: (Scalars['float8'] | null),deaths?: (Scalars['Int'] | null),elo_change?: (Scalars['Int'] | null),expected_score?: (Scalars['float8'] | null),impact?: (Scalars['float8'] | null),k_factor?: (Scalars['Int'] | null),kda?: (Scalars['float8'] | null),kills?: (Scalars['Int'] | null),map_losses?: (Scalars['Int'] | null),map_wins?: (Scalars['Int'] | null),match_created_at?: (Scalars['timestamptz'] | null),match_id?: (Scalars['uuid'] | null),match_result?: (Scalars['String'] | null),opponent_team_elo_avg?: (Scalars['float8'] | null),performance_multiplier?: (Scalars['float8'] | null),player_name?: (Scalars['String'] | null),player_steam_id?: (Scalars['bigint'] | null),player_team_elo_avg?: (Scalars['float8'] | null),rating_for_expected?: (Scalars['float8'] | null),season_id?: (Scalars['uuid'] | null),series_multiplier?: (Scalars['Int'] | null),team_avg_kda?: (Scalars['float8'] | null),type?: (Scalars['String'] | null),updated_elo?: (Scalars['Int'] | null)} - - -/** aggregate sum on columns */ -export interface v_player_elo_sum_fieldsGenqlSelection{ - actual_score?: boolean | number - assists?: boolean | number - current_elo?: boolean | number - damage?: boolean | number - damage_percent?: boolean | number - deaths?: boolean | number - elo_change?: boolean | number - expected_score?: boolean | number - impact?: boolean | number - k_factor?: boolean | number - kda?: boolean | number - kills?: boolean | number - map_losses?: boolean | number - map_wins?: boolean | number - opponent_team_elo_avg?: boolean | number - performance_multiplier?: boolean | number - player_steam_id?: boolean | number - player_team_elo_avg?: boolean | number - rating_for_expected?: boolean | number - series_multiplier?: boolean | number - team_avg_kda?: boolean | number - updated_elo?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "v_player_elo" */ -export interface v_player_elo_sum_order_by {actual_score?: (order_by | null),assists?: (order_by | null),current_elo?: (order_by | null),damage?: (order_by | null),damage_percent?: (order_by | null),deaths?: (order_by | null),elo_change?: (order_by | null),expected_score?: (order_by | null),impact?: (order_by | null),k_factor?: (order_by | null),kda?: (order_by | null),kills?: (order_by | null),map_losses?: (order_by | null),map_wins?: (order_by | null),opponent_team_elo_avg?: (order_by | null),performance_multiplier?: (order_by | null),player_steam_id?: (order_by | null),player_team_elo_avg?: (order_by | null),rating_for_expected?: (order_by | null),series_multiplier?: (order_by | null),team_avg_kda?: (order_by | null),updated_elo?: (order_by | null)} - - -/** aggregate var_pop on columns */ -export interface v_player_elo_var_pop_fieldsGenqlSelection{ - actual_score?: boolean | number - assists?: boolean | number - current_elo?: boolean | number - damage?: boolean | number - damage_percent?: boolean | number - deaths?: boolean | number - elo_change?: boolean | number - expected_score?: boolean | number - impact?: boolean | number - k_factor?: boolean | number - kda?: boolean | number - kills?: boolean | number - map_losses?: boolean | number - map_wins?: boolean | number - opponent_team_elo_avg?: boolean | number - performance_multiplier?: boolean | number - player_steam_id?: boolean | number - player_team_elo_avg?: boolean | number - rating_for_expected?: boolean | number - series_multiplier?: boolean | number - team_avg_kda?: boolean | number - updated_elo?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "v_player_elo" */ -export interface v_player_elo_var_pop_order_by {actual_score?: (order_by | null),assists?: (order_by | null),current_elo?: (order_by | null),damage?: (order_by | null),damage_percent?: (order_by | null),deaths?: (order_by | null),elo_change?: (order_by | null),expected_score?: (order_by | null),impact?: (order_by | null),k_factor?: (order_by | null),kda?: (order_by | null),kills?: (order_by | null),map_losses?: (order_by | null),map_wins?: (order_by | null),opponent_team_elo_avg?: (order_by | null),performance_multiplier?: (order_by | null),player_steam_id?: (order_by | null),player_team_elo_avg?: (order_by | null),rating_for_expected?: (order_by | null),series_multiplier?: (order_by | null),team_avg_kda?: (order_by | null),updated_elo?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface v_player_elo_var_samp_fieldsGenqlSelection{ - actual_score?: boolean | number - assists?: boolean | number - current_elo?: boolean | number - damage?: boolean | number - damage_percent?: boolean | number - deaths?: boolean | number - elo_change?: boolean | number - expected_score?: boolean | number - impact?: boolean | number - k_factor?: boolean | number - kda?: boolean | number - kills?: boolean | number - map_losses?: boolean | number - map_wins?: boolean | number - opponent_team_elo_avg?: boolean | number - performance_multiplier?: boolean | number - player_steam_id?: boolean | number - player_team_elo_avg?: boolean | number - rating_for_expected?: boolean | number - series_multiplier?: boolean | number - team_avg_kda?: boolean | number - updated_elo?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "v_player_elo" */ -export interface v_player_elo_var_samp_order_by {actual_score?: (order_by | null),assists?: (order_by | null),current_elo?: (order_by | null),damage?: (order_by | null),damage_percent?: (order_by | null),deaths?: (order_by | null),elo_change?: (order_by | null),expected_score?: (order_by | null),impact?: (order_by | null),k_factor?: (order_by | null),kda?: (order_by | null),kills?: (order_by | null),map_losses?: (order_by | null),map_wins?: (order_by | null),opponent_team_elo_avg?: (order_by | null),performance_multiplier?: (order_by | null),player_steam_id?: (order_by | null),player_team_elo_avg?: (order_by | null),rating_for_expected?: (order_by | null),series_multiplier?: (order_by | null),team_avg_kda?: (order_by | null),updated_elo?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface v_player_elo_variance_fieldsGenqlSelection{ - actual_score?: boolean | number - assists?: boolean | number - current_elo?: boolean | number - damage?: boolean | number - damage_percent?: boolean | number - deaths?: boolean | number - elo_change?: boolean | number - expected_score?: boolean | number - impact?: boolean | number - k_factor?: boolean | number - kda?: boolean | number - kills?: boolean | number - map_losses?: boolean | number - map_wins?: boolean | number - opponent_team_elo_avg?: boolean | number - performance_multiplier?: boolean | number - player_steam_id?: boolean | number - player_team_elo_avg?: boolean | number - rating_for_expected?: boolean | number - series_multiplier?: boolean | number - team_avg_kda?: boolean | number - updated_elo?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "v_player_elo" */ -export interface v_player_elo_variance_order_by {actual_score?: (order_by | null),assists?: (order_by | null),current_elo?: (order_by | null),damage?: (order_by | null),damage_percent?: (order_by | null),deaths?: (order_by | null),elo_change?: (order_by | null),expected_score?: (order_by | null),impact?: (order_by | null),k_factor?: (order_by | null),kda?: (order_by | null),kills?: (order_by | null),map_losses?: (order_by | null),map_wins?: (order_by | null),opponent_team_elo_avg?: (order_by | null),performance_multiplier?: (order_by | null),player_steam_id?: (order_by | null),player_team_elo_avg?: (order_by | null),rating_for_expected?: (order_by | null),series_multiplier?: (order_by | null),team_avg_kda?: (order_by | null),updated_elo?: (order_by | null)} - - -/** columns and relationships of "v_player_map_losses" */ -export interface v_player_map_lossesGenqlSelection{ - /** An object relationship */ - map?: mapsGenqlSelection - map_id?: boolean | number - /** An object relationship */ - match?: matchesGenqlSelection - match_id?: boolean | number - started_at?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "v_player_map_losses" */ -export interface v_player_map_losses_aggregateGenqlSelection{ - aggregate?: v_player_map_losses_aggregate_fieldsGenqlSelection - nodes?: v_player_map_lossesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "v_player_map_losses" */ -export interface v_player_map_losses_aggregate_fieldsGenqlSelection{ - avg?: v_player_map_losses_avg_fieldsGenqlSelection - count?: { __args: {columns?: (v_player_map_losses_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: v_player_map_losses_max_fieldsGenqlSelection - min?: v_player_map_losses_min_fieldsGenqlSelection - stddev?: v_player_map_losses_stddev_fieldsGenqlSelection - stddev_pop?: v_player_map_losses_stddev_pop_fieldsGenqlSelection - stddev_samp?: v_player_map_losses_stddev_samp_fieldsGenqlSelection - sum?: v_player_map_losses_sum_fieldsGenqlSelection - var_pop?: v_player_map_losses_var_pop_fieldsGenqlSelection - var_samp?: v_player_map_losses_var_samp_fieldsGenqlSelection - variance?: v_player_map_losses_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface v_player_map_losses_avg_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "v_player_map_losses". All fields are combined with a logical 'AND'. */ -export interface v_player_map_losses_bool_exp {_and?: (v_player_map_losses_bool_exp[] | null),_not?: (v_player_map_losses_bool_exp | null),_or?: (v_player_map_losses_bool_exp[] | null),map?: (maps_bool_exp | null),map_id?: (uuid_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),started_at?: (timestamptz_comparison_exp | null),steam_id?: (bigint_comparison_exp | null)} - - -/** aggregate max on columns */ -export interface v_player_map_losses_max_fieldsGenqlSelection{ - map_id?: boolean | number - match_id?: boolean | number - started_at?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface v_player_map_losses_min_fieldsGenqlSelection{ - map_id?: boolean | number - match_id?: boolean | number - started_at?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Ordering options when selecting data from "v_player_map_losses". */ -export interface v_player_map_losses_order_by {map?: (maps_order_by | null),map_id?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),started_at?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate stddev on columns */ -export interface v_player_map_losses_stddev_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface v_player_map_losses_stddev_pop_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface v_player_map_losses_stddev_samp_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "v_player_map_losses" */ -export interface v_player_map_losses_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: v_player_map_losses_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface v_player_map_losses_stream_cursor_value_input {map_id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),started_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null)} - - -/** aggregate sum on columns */ -export interface v_player_map_losses_sum_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_pop on columns */ -export interface v_player_map_losses_var_pop_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface v_player_map_losses_var_samp_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface v_player_map_losses_variance_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "v_player_map_wins" */ -export interface v_player_map_winsGenqlSelection{ - /** An object relationship */ - map?: mapsGenqlSelection - map_id?: boolean | number - /** An object relationship */ - match?: matchesGenqlSelection - match_id?: boolean | number - started_at?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "v_player_map_wins" */ -export interface v_player_map_wins_aggregateGenqlSelection{ - aggregate?: v_player_map_wins_aggregate_fieldsGenqlSelection - nodes?: v_player_map_winsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "v_player_map_wins" */ -export interface v_player_map_wins_aggregate_fieldsGenqlSelection{ - avg?: v_player_map_wins_avg_fieldsGenqlSelection - count?: { __args: {columns?: (v_player_map_wins_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: v_player_map_wins_max_fieldsGenqlSelection - min?: v_player_map_wins_min_fieldsGenqlSelection - stddev?: v_player_map_wins_stddev_fieldsGenqlSelection - stddev_pop?: v_player_map_wins_stddev_pop_fieldsGenqlSelection - stddev_samp?: v_player_map_wins_stddev_samp_fieldsGenqlSelection - sum?: v_player_map_wins_sum_fieldsGenqlSelection - var_pop?: v_player_map_wins_var_pop_fieldsGenqlSelection - var_samp?: v_player_map_wins_var_samp_fieldsGenqlSelection - variance?: v_player_map_wins_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface v_player_map_wins_avg_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "v_player_map_wins". All fields are combined with a logical 'AND'. */ -export interface v_player_map_wins_bool_exp {_and?: (v_player_map_wins_bool_exp[] | null),_not?: (v_player_map_wins_bool_exp | null),_or?: (v_player_map_wins_bool_exp[] | null),map?: (maps_bool_exp | null),map_id?: (uuid_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),started_at?: (timestamptz_comparison_exp | null),steam_id?: (bigint_comparison_exp | null)} - - -/** aggregate max on columns */ -export interface v_player_map_wins_max_fieldsGenqlSelection{ - map_id?: boolean | number - match_id?: boolean | number - started_at?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface v_player_map_wins_min_fieldsGenqlSelection{ - map_id?: boolean | number - match_id?: boolean | number - started_at?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Ordering options when selecting data from "v_player_map_wins". */ -export interface v_player_map_wins_order_by {map?: (maps_order_by | null),map_id?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),started_at?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate stddev on columns */ -export interface v_player_map_wins_stddev_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface v_player_map_wins_stddev_pop_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface v_player_map_wins_stddev_samp_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "v_player_map_wins" */ -export interface v_player_map_wins_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: v_player_map_wins_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface v_player_map_wins_stream_cursor_value_input {map_id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),started_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null)} - - -/** aggregate sum on columns */ -export interface v_player_map_wins_sum_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_pop on columns */ -export interface v_player_map_wins_var_pop_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface v_player_map_wins_var_samp_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface v_player_map_wins_variance_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "v_player_match_head_to_head" */ -export interface v_player_match_head_to_headGenqlSelection{ - /** An object relationship */ - attacked?: playersGenqlSelection - attacked_steam_id?: boolean | number - /** An object relationship */ - attacker?: playersGenqlSelection - attacker_steam_id?: boolean | number - damage_dealt?: boolean | number - flash_count?: boolean | number - headshot_kills?: boolean | number - hits?: boolean | number - kills?: boolean | number - /** An object relationship */ - match?: matchesGenqlSelection - match_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "v_player_match_head_to_head" */ -export interface v_player_match_head_to_head_aggregateGenqlSelection{ - aggregate?: v_player_match_head_to_head_aggregate_fieldsGenqlSelection - nodes?: v_player_match_head_to_headGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "v_player_match_head_to_head" */ -export interface v_player_match_head_to_head_aggregate_fieldsGenqlSelection{ - avg?: v_player_match_head_to_head_avg_fieldsGenqlSelection - count?: { __args: {columns?: (v_player_match_head_to_head_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: v_player_match_head_to_head_max_fieldsGenqlSelection - min?: v_player_match_head_to_head_min_fieldsGenqlSelection - stddev?: v_player_match_head_to_head_stddev_fieldsGenqlSelection - stddev_pop?: v_player_match_head_to_head_stddev_pop_fieldsGenqlSelection - stddev_samp?: v_player_match_head_to_head_stddev_samp_fieldsGenqlSelection - sum?: v_player_match_head_to_head_sum_fieldsGenqlSelection - var_pop?: v_player_match_head_to_head_var_pop_fieldsGenqlSelection - var_samp?: v_player_match_head_to_head_var_samp_fieldsGenqlSelection - variance?: v_player_match_head_to_head_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface v_player_match_head_to_head_avg_fieldsGenqlSelection{ - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - damage_dealt?: boolean | number - flash_count?: boolean | number - headshot_kills?: boolean | number - hits?: boolean | number - kills?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "v_player_match_head_to_head". All fields are combined with a logical 'AND'. */ -export interface v_player_match_head_to_head_bool_exp {_and?: (v_player_match_head_to_head_bool_exp[] | null),_not?: (v_player_match_head_to_head_bool_exp | null),_or?: (v_player_match_head_to_head_bool_exp[] | null),attacked?: (players_bool_exp | null),attacked_steam_id?: (bigint_comparison_exp | null),attacker?: (players_bool_exp | null),attacker_steam_id?: (bigint_comparison_exp | null),damage_dealt?: (Int_comparison_exp | null),flash_count?: (bigint_comparison_exp | null),headshot_kills?: (bigint_comparison_exp | null),hits?: (bigint_comparison_exp | null),kills?: (bigint_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null)} - - -/** aggregate max on columns */ -export interface v_player_match_head_to_head_max_fieldsGenqlSelection{ - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - damage_dealt?: boolean | number - flash_count?: boolean | number - headshot_kills?: boolean | number - hits?: boolean | number - kills?: boolean | number - match_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface v_player_match_head_to_head_min_fieldsGenqlSelection{ - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - damage_dealt?: boolean | number - flash_count?: boolean | number - headshot_kills?: boolean | number - hits?: boolean | number - kills?: boolean | number - match_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Ordering options when selecting data from "v_player_match_head_to_head". */ -export interface v_player_match_head_to_head_order_by {attacked?: (players_order_by | null),attacked_steam_id?: (order_by | null),attacker?: (players_order_by | null),attacker_steam_id?: (order_by | null),damage_dealt?: (order_by | null),flash_count?: (order_by | null),headshot_kills?: (order_by | null),hits?: (order_by | null),kills?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null)} - - -/** aggregate stddev on columns */ -export interface v_player_match_head_to_head_stddev_fieldsGenqlSelection{ - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - damage_dealt?: boolean | number - flash_count?: boolean | number - headshot_kills?: boolean | number - hits?: boolean | number - kills?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface v_player_match_head_to_head_stddev_pop_fieldsGenqlSelection{ - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - damage_dealt?: boolean | number - flash_count?: boolean | number - headshot_kills?: boolean | number - hits?: boolean | number - kills?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface v_player_match_head_to_head_stddev_samp_fieldsGenqlSelection{ - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - damage_dealt?: boolean | number - flash_count?: boolean | number - headshot_kills?: boolean | number - hits?: boolean | number - kills?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "v_player_match_head_to_head" */ -export interface v_player_match_head_to_head_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: v_player_match_head_to_head_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface v_player_match_head_to_head_stream_cursor_value_input {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)} - - -/** aggregate sum on columns */ -export interface v_player_match_head_to_head_sum_fieldsGenqlSelection{ - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - damage_dealt?: boolean | number - flash_count?: boolean | number - headshot_kills?: boolean | number - hits?: boolean | number - kills?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_pop on columns */ -export interface v_player_match_head_to_head_var_pop_fieldsGenqlSelection{ - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - damage_dealt?: boolean | number - flash_count?: boolean | number - headshot_kills?: boolean | number - hits?: boolean | number - kills?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface v_player_match_head_to_head_var_samp_fieldsGenqlSelection{ - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - damage_dealt?: boolean | number - flash_count?: boolean | number - headshot_kills?: boolean | number - hits?: boolean | number - kills?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface v_player_match_head_to_head_variance_fieldsGenqlSelection{ - attacked_steam_id?: boolean | number - attacker_steam_id?: boolean | number - damage_dealt?: boolean | number - flash_count?: boolean | number - headshot_kills?: boolean | number - hits?: boolean | number - kills?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "v_player_match_map_hltv" */ -export interface v_player_match_map_hltvGenqlSelection{ - adr?: boolean | number - apr?: boolean | number - dpr?: boolean | number - hltv_rating?: boolean | number - kast_pct?: boolean | number - kpr?: boolean | number - /** An object relationship */ - match?: matchesGenqlSelection - match_id?: boolean | number - /** An object relationship */ - match_map?: match_mapsGenqlSelection - match_map_id?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - rounds_played?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "v_player_match_map_hltv" */ -export interface v_player_match_map_hltv_aggregateGenqlSelection{ - aggregate?: v_player_match_map_hltv_aggregate_fieldsGenqlSelection - nodes?: v_player_match_map_hltvGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface v_player_match_map_hltv_aggregate_bool_exp {count?: (v_player_match_map_hltv_aggregate_bool_exp_count | null)} - -export interface v_player_match_map_hltv_aggregate_bool_exp_count {arguments?: (v_player_match_map_hltv_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (v_player_match_map_hltv_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "v_player_match_map_hltv" */ -export interface v_player_match_map_hltv_aggregate_fieldsGenqlSelection{ - avg?: v_player_match_map_hltv_avg_fieldsGenqlSelection - count?: { __args: {columns?: (v_player_match_map_hltv_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: v_player_match_map_hltv_max_fieldsGenqlSelection - min?: v_player_match_map_hltv_min_fieldsGenqlSelection - stddev?: v_player_match_map_hltv_stddev_fieldsGenqlSelection - stddev_pop?: v_player_match_map_hltv_stddev_pop_fieldsGenqlSelection - stddev_samp?: v_player_match_map_hltv_stddev_samp_fieldsGenqlSelection - sum?: v_player_match_map_hltv_sum_fieldsGenqlSelection - var_pop?: v_player_match_map_hltv_var_pop_fieldsGenqlSelection - var_samp?: v_player_match_map_hltv_var_samp_fieldsGenqlSelection - variance?: v_player_match_map_hltv_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "v_player_match_map_hltv" */ -export interface v_player_match_map_hltv_aggregate_order_by {avg?: (v_player_match_map_hltv_avg_order_by | null),count?: (order_by | null),max?: (v_player_match_map_hltv_max_order_by | null),min?: (v_player_match_map_hltv_min_order_by | null),stddev?: (v_player_match_map_hltv_stddev_order_by | null),stddev_pop?: (v_player_match_map_hltv_stddev_pop_order_by | null),stddev_samp?: (v_player_match_map_hltv_stddev_samp_order_by | null),sum?: (v_player_match_map_hltv_sum_order_by | null),var_pop?: (v_player_match_map_hltv_var_pop_order_by | null),var_samp?: (v_player_match_map_hltv_var_samp_order_by | null),variance?: (v_player_match_map_hltv_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "v_player_match_map_hltv" */ -export interface v_player_match_map_hltv_arr_rel_insert_input {data: v_player_match_map_hltv_insert_input[]} - - -/** aggregate avg on columns */ -export interface v_player_match_map_hltv_avg_fieldsGenqlSelection{ - adr?: boolean | number - apr?: boolean | number - dpr?: boolean | number - hltv_rating?: boolean | number - kast_pct?: boolean | number - kpr?: boolean | number - rounds_played?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "v_player_match_map_hltv" */ -export interface v_player_match_map_hltv_avg_order_by {adr?: (order_by | null),apr?: (order_by | null),dpr?: (order_by | null),hltv_rating?: (order_by | null),kast_pct?: (order_by | null),kpr?: (order_by | null),rounds_played?: (order_by | null),steam_id?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "v_player_match_map_hltv". All fields are combined with a logical 'AND'. */ -export interface v_player_match_map_hltv_bool_exp {_and?: (v_player_match_map_hltv_bool_exp[] | null),_not?: (v_player_match_map_hltv_bool_exp | null),_or?: (v_player_match_map_hltv_bool_exp[] | null),adr?: (numeric_comparison_exp | null),apr?: (numeric_comparison_exp | null),dpr?: (numeric_comparison_exp | null),hltv_rating?: (numeric_comparison_exp | null),kast_pct?: (numeric_comparison_exp | null),kpr?: (numeric_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_id?: (uuid_comparison_exp | null),player?: (players_bool_exp | null),rounds_played?: (Int_comparison_exp | null),steam_id?: (bigint_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "v_player_match_map_hltv" */ -export interface v_player_match_map_hltv_inc_input {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)} - - -/** input type for inserting data into table "v_player_match_map_hltv" */ -export interface v_player_match_map_hltv_insert_input {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?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_map?: (match_maps_obj_rel_insert_input | null),match_map_id?: (Scalars['uuid'] | null),player?: (players_obj_rel_insert_input | null),rounds_played?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null)} - - -/** aggregate max on columns */ -export interface v_player_match_map_hltv_max_fieldsGenqlSelection{ - adr?: boolean | number - apr?: boolean | number - dpr?: boolean | number - hltv_rating?: boolean | number - kast_pct?: boolean | number - kpr?: boolean | number - match_id?: boolean | number - match_map_id?: boolean | number - rounds_played?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "v_player_match_map_hltv" */ -export interface v_player_match_map_hltv_max_order_by {adr?: (order_by | null),apr?: (order_by | null),dpr?: (order_by | null),hltv_rating?: (order_by | null),kast_pct?: (order_by | null),kpr?: (order_by | null),match_id?: (order_by | null),match_map_id?: (order_by | null),rounds_played?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface v_player_match_map_hltv_min_fieldsGenqlSelection{ - adr?: boolean | number - apr?: boolean | number - dpr?: boolean | number - hltv_rating?: boolean | number - kast_pct?: boolean | number - kpr?: boolean | number - match_id?: boolean | number - match_map_id?: boolean | number - rounds_played?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "v_player_match_map_hltv" */ -export interface v_player_match_map_hltv_min_order_by {adr?: (order_by | null),apr?: (order_by | null),dpr?: (order_by | null),hltv_rating?: (order_by | null),kast_pct?: (order_by | null),kpr?: (order_by | null),match_id?: (order_by | null),match_map_id?: (order_by | null),rounds_played?: (order_by | null),steam_id?: (order_by | null)} - - -/** response of any mutation on the table "v_player_match_map_hltv" */ -export interface v_player_match_map_hltv_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: v_player_match_map_hltvGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Ordering options when selecting data from "v_player_match_map_hltv". */ -export interface v_player_match_map_hltv_order_by {adr?: (order_by | null),apr?: (order_by | null),dpr?: (order_by | null),hltv_rating?: (order_by | null),kast_pct?: (order_by | null),kpr?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_id?: (order_by | null),player?: (players_order_by | null),rounds_played?: (order_by | null),steam_id?: (order_by | null)} - - -/** input type for updating data in table "v_player_match_map_hltv" */ -export interface v_player_match_map_hltv_set_input {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)} - - -/** aggregate stddev on columns */ -export interface v_player_match_map_hltv_stddev_fieldsGenqlSelection{ - adr?: boolean | number - apr?: boolean | number - dpr?: boolean | number - hltv_rating?: boolean | number - kast_pct?: boolean | number - kpr?: boolean | number - rounds_played?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "v_player_match_map_hltv" */ -export interface v_player_match_map_hltv_stddev_order_by {adr?: (order_by | null),apr?: (order_by | null),dpr?: (order_by | null),hltv_rating?: (order_by | null),kast_pct?: (order_by | null),kpr?: (order_by | null),rounds_played?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface v_player_match_map_hltv_stddev_pop_fieldsGenqlSelection{ - adr?: boolean | number - apr?: boolean | number - dpr?: boolean | number - hltv_rating?: boolean | number - kast_pct?: boolean | number - kpr?: boolean | number - rounds_played?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "v_player_match_map_hltv" */ -export interface v_player_match_map_hltv_stddev_pop_order_by {adr?: (order_by | null),apr?: (order_by | null),dpr?: (order_by | null),hltv_rating?: (order_by | null),kast_pct?: (order_by | null),kpr?: (order_by | null),rounds_played?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface v_player_match_map_hltv_stddev_samp_fieldsGenqlSelection{ - adr?: boolean | number - apr?: boolean | number - dpr?: boolean | number - hltv_rating?: boolean | number - kast_pct?: boolean | number - kpr?: boolean | number - rounds_played?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "v_player_match_map_hltv" */ -export interface v_player_match_map_hltv_stddev_samp_order_by {adr?: (order_by | null),apr?: (order_by | null),dpr?: (order_by | null),hltv_rating?: (order_by | null),kast_pct?: (order_by | null),kpr?: (order_by | null),rounds_played?: (order_by | null),steam_id?: (order_by | null)} - - -/** Streaming cursor of the table "v_player_match_map_hltv" */ -export interface v_player_match_map_hltv_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: v_player_match_map_hltv_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface v_player_match_map_hltv_stream_cursor_value_input {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)} - - -/** aggregate sum on columns */ -export interface v_player_match_map_hltv_sum_fieldsGenqlSelection{ - adr?: boolean | number - apr?: boolean | number - dpr?: boolean | number - hltv_rating?: boolean | number - kast_pct?: boolean | number - kpr?: boolean | number - rounds_played?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "v_player_match_map_hltv" */ -export interface v_player_match_map_hltv_sum_order_by {adr?: (order_by | null),apr?: (order_by | null),dpr?: (order_by | null),hltv_rating?: (order_by | null),kast_pct?: (order_by | null),kpr?: (order_by | null),rounds_played?: (order_by | null),steam_id?: (order_by | null)} - -export interface v_player_match_map_hltv_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (v_player_match_map_hltv_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (v_player_match_map_hltv_set_input | null), -/** filter the rows which have to be updated */ -where: v_player_match_map_hltv_bool_exp} - - -/** aggregate var_pop on columns */ -export interface v_player_match_map_hltv_var_pop_fieldsGenqlSelection{ - adr?: boolean | number - apr?: boolean | number - dpr?: boolean | number - hltv_rating?: boolean | number - kast_pct?: boolean | number - kpr?: boolean | number - rounds_played?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "v_player_match_map_hltv" */ -export interface v_player_match_map_hltv_var_pop_order_by {adr?: (order_by | null),apr?: (order_by | null),dpr?: (order_by | null),hltv_rating?: (order_by | null),kast_pct?: (order_by | null),kpr?: (order_by | null),rounds_played?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface v_player_match_map_hltv_var_samp_fieldsGenqlSelection{ - adr?: boolean | number - apr?: boolean | number - dpr?: boolean | number - hltv_rating?: boolean | number - kast_pct?: boolean | number - kpr?: boolean | number - rounds_played?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "v_player_match_map_hltv" */ -export interface v_player_match_map_hltv_var_samp_order_by {adr?: (order_by | null),apr?: (order_by | null),dpr?: (order_by | null),hltv_rating?: (order_by | null),kast_pct?: (order_by | null),kpr?: (order_by | null),rounds_played?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface v_player_match_map_hltv_variance_fieldsGenqlSelection{ - adr?: boolean | number - apr?: boolean | number - dpr?: boolean | number - hltv_rating?: boolean | number - kast_pct?: boolean | number - kpr?: boolean | number - rounds_played?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "v_player_match_map_hltv" */ -export interface v_player_match_map_hltv_variance_order_by {adr?: (order_by | null),apr?: (order_by | null),dpr?: (order_by | null),hltv_rating?: (order_by | null),kast_pct?: (order_by | null),kpr?: (order_by | null),rounds_played?: (order_by | null),steam_id?: (order_by | null)} - - -/** columns and relationships of "v_player_match_map_roles" */ -export interface v_player_match_map_rolesGenqlSelection{ - adr?: boolean | number - awp_kills?: boolean | number - awp_share?: boolean | number - deaths?: boolean | number - dpr?: boolean | number - entry_rate?: boolean | number - flash_assists?: boolean | number - hltv_rating?: boolean | number - kast_pct?: boolean | number - kills?: boolean | number - kpr?: boolean | number - lineup_id?: boolean | number - /** An object relationship */ - match?: matchesGenqlSelection - match_id?: boolean | number - /** An object relationship */ - match_map?: match_mapsGenqlSelection - match_map_id?: boolean | number - open_deaths?: boolean | number - open_kills?: boolean | number - opening_attempts?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - role?: boolean | number - rounds?: boolean | number - steam_id?: boolean | number - support_idx?: boolean | number - total_kills?: boolean | number - trade_kill_successes?: boolean | number - traded_death_successes?: boolean | number - util_damage?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "v_player_match_map_roles" */ -export interface v_player_match_map_roles_aggregateGenqlSelection{ - aggregate?: v_player_match_map_roles_aggregate_fieldsGenqlSelection - nodes?: v_player_match_map_rolesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "v_player_match_map_roles" */ -export interface v_player_match_map_roles_aggregate_fieldsGenqlSelection{ - avg?: v_player_match_map_roles_avg_fieldsGenqlSelection - count?: { __args: {columns?: (v_player_match_map_roles_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: v_player_match_map_roles_max_fieldsGenqlSelection - min?: v_player_match_map_roles_min_fieldsGenqlSelection - stddev?: v_player_match_map_roles_stddev_fieldsGenqlSelection - stddev_pop?: v_player_match_map_roles_stddev_pop_fieldsGenqlSelection - stddev_samp?: v_player_match_map_roles_stddev_samp_fieldsGenqlSelection - sum?: v_player_match_map_roles_sum_fieldsGenqlSelection - var_pop?: v_player_match_map_roles_var_pop_fieldsGenqlSelection - var_samp?: v_player_match_map_roles_var_samp_fieldsGenqlSelection - variance?: v_player_match_map_roles_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface v_player_match_map_roles_avg_fieldsGenqlSelection{ - adr?: boolean | number - awp_kills?: boolean | number - awp_share?: boolean | number - deaths?: boolean | number - dpr?: boolean | number - entry_rate?: boolean | number - flash_assists?: boolean | number - hltv_rating?: boolean | number - kast_pct?: boolean | number - kills?: boolean | number - kpr?: boolean | number - open_deaths?: boolean | number - open_kills?: boolean | number - opening_attempts?: boolean | number - rounds?: boolean | number - steam_id?: boolean | number - support_idx?: boolean | number - total_kills?: boolean | number - trade_kill_successes?: boolean | number - traded_death_successes?: boolean | number - util_damage?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "v_player_match_map_roles". All fields are combined with a logical 'AND'. */ -export interface v_player_match_map_roles_bool_exp {_and?: (v_player_match_map_roles_bool_exp[] | null),_not?: (v_player_match_map_roles_bool_exp | null),_or?: (v_player_match_map_roles_bool_exp[] | null),adr?: (numeric_comparison_exp | null),awp_kills?: (Int_comparison_exp | null),awp_share?: (numeric_comparison_exp | null),deaths?: (Int_comparison_exp | null),dpr?: (numeric_comparison_exp | null),entry_rate?: (numeric_comparison_exp | null),flash_assists?: (Int_comparison_exp | null),hltv_rating?: (numeric_comparison_exp | null),kast_pct?: (numeric_comparison_exp | null),kills?: (Int_comparison_exp | null),kpr?: (numeric_comparison_exp | null),lineup_id?: (uuid_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_id?: (uuid_comparison_exp | null),open_deaths?: (Int_comparison_exp | null),open_kills?: (Int_comparison_exp | null),opening_attempts?: (Int_comparison_exp | null),player?: (players_bool_exp | null),role?: (String_comparison_exp | null),rounds?: (Int_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),support_idx?: (numeric_comparison_exp | null),total_kills?: (Int_comparison_exp | null),trade_kill_successes?: (Int_comparison_exp | null),traded_death_successes?: (Int_comparison_exp | null),util_damage?: (Int_comparison_exp | null)} - - -/** aggregate max on columns */ -export interface v_player_match_map_roles_max_fieldsGenqlSelection{ - adr?: boolean | number - awp_kills?: boolean | number - awp_share?: boolean | number - deaths?: boolean | number - dpr?: boolean | number - entry_rate?: boolean | number - flash_assists?: boolean | number - hltv_rating?: boolean | number - kast_pct?: boolean | number - kills?: boolean | number - kpr?: boolean | number - lineup_id?: boolean | number - match_id?: boolean | number - match_map_id?: boolean | number - open_deaths?: boolean | number - open_kills?: boolean | number - opening_attempts?: boolean | number - role?: boolean | number - rounds?: boolean | number - steam_id?: boolean | number - support_idx?: boolean | number - total_kills?: boolean | number - trade_kill_successes?: boolean | number - traded_death_successes?: boolean | number - util_damage?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface v_player_match_map_roles_min_fieldsGenqlSelection{ - adr?: boolean | number - awp_kills?: boolean | number - awp_share?: boolean | number - deaths?: boolean | number - dpr?: boolean | number - entry_rate?: boolean | number - flash_assists?: boolean | number - hltv_rating?: boolean | number - kast_pct?: boolean | number - kills?: boolean | number - kpr?: boolean | number - lineup_id?: boolean | number - match_id?: boolean | number - match_map_id?: boolean | number - open_deaths?: boolean | number - open_kills?: boolean | number - opening_attempts?: boolean | number - role?: boolean | number - rounds?: boolean | number - steam_id?: boolean | number - support_idx?: boolean | number - total_kills?: boolean | number - trade_kill_successes?: boolean | number - traded_death_successes?: boolean | number - util_damage?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Ordering options when selecting data from "v_player_match_map_roles". */ -export interface v_player_match_map_roles_order_by {adr?: (order_by | null),awp_kills?: (order_by | null),awp_share?: (order_by | null),deaths?: (order_by | null),dpr?: (order_by | null),entry_rate?: (order_by | null),flash_assists?: (order_by | null),hltv_rating?: (order_by | null),kast_pct?: (order_by | null),kills?: (order_by | null),kpr?: (order_by | null),lineup_id?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_id?: (order_by | null),open_deaths?: (order_by | null),open_kills?: (order_by | null),opening_attempts?: (order_by | null),player?: (players_order_by | null),role?: (order_by | null),rounds?: (order_by | null),steam_id?: (order_by | null),support_idx?: (order_by | null),total_kills?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_successes?: (order_by | null),util_damage?: (order_by | null)} - - -/** aggregate stddev on columns */ -export interface v_player_match_map_roles_stddev_fieldsGenqlSelection{ - adr?: boolean | number - awp_kills?: boolean | number - awp_share?: boolean | number - deaths?: boolean | number - dpr?: boolean | number - entry_rate?: boolean | number - flash_assists?: boolean | number - hltv_rating?: boolean | number - kast_pct?: boolean | number - kills?: boolean | number - kpr?: boolean | number - open_deaths?: boolean | number - open_kills?: boolean | number - opening_attempts?: boolean | number - rounds?: boolean | number - steam_id?: boolean | number - support_idx?: boolean | number - total_kills?: boolean | number - trade_kill_successes?: boolean | number - traded_death_successes?: boolean | number - util_damage?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface v_player_match_map_roles_stddev_pop_fieldsGenqlSelection{ - adr?: boolean | number - awp_kills?: boolean | number - awp_share?: boolean | number - deaths?: boolean | number - dpr?: boolean | number - entry_rate?: boolean | number - flash_assists?: boolean | number - hltv_rating?: boolean | number - kast_pct?: boolean | number - kills?: boolean | number - kpr?: boolean | number - open_deaths?: boolean | number - open_kills?: boolean | number - opening_attempts?: boolean | number - rounds?: boolean | number - steam_id?: boolean | number - support_idx?: boolean | number - total_kills?: boolean | number - trade_kill_successes?: boolean | number - traded_death_successes?: boolean | number - util_damage?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface v_player_match_map_roles_stddev_samp_fieldsGenqlSelection{ - adr?: boolean | number - awp_kills?: boolean | number - awp_share?: boolean | number - deaths?: boolean | number - dpr?: boolean | number - entry_rate?: boolean | number - flash_assists?: boolean | number - hltv_rating?: boolean | number - kast_pct?: boolean | number - kills?: boolean | number - kpr?: boolean | number - open_deaths?: boolean | number - open_kills?: boolean | number - opening_attempts?: boolean | number - rounds?: boolean | number - steam_id?: boolean | number - support_idx?: boolean | number - total_kills?: boolean | number - trade_kill_successes?: boolean | number - traded_death_successes?: boolean | number - util_damage?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "v_player_match_map_roles" */ -export interface v_player_match_map_roles_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: v_player_match_map_roles_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface v_player_match_map_roles_stream_cursor_value_input {adr?: (Scalars['numeric'] | null),awp_kills?: (Scalars['Int'] | null),awp_share?: (Scalars['numeric'] | null),deaths?: (Scalars['Int'] | null),dpr?: (Scalars['numeric'] | null),entry_rate?: (Scalars['numeric'] | null),flash_assists?: (Scalars['Int'] | null),hltv_rating?: (Scalars['numeric'] | null),kast_pct?: (Scalars['numeric'] | null),kills?: (Scalars['Int'] | null),kpr?: (Scalars['numeric'] | null),lineup_id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),open_deaths?: (Scalars['Int'] | null),open_kills?: (Scalars['Int'] | null),opening_attempts?: (Scalars['Int'] | null),role?: (Scalars['String'] | null),rounds?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null),support_idx?: (Scalars['numeric'] | null),total_kills?: (Scalars['Int'] | null),trade_kill_successes?: (Scalars['Int'] | null),traded_death_successes?: (Scalars['Int'] | null),util_damage?: (Scalars['Int'] | null)} - - -/** aggregate sum on columns */ -export interface v_player_match_map_roles_sum_fieldsGenqlSelection{ - adr?: boolean | number - awp_kills?: boolean | number - awp_share?: boolean | number - deaths?: boolean | number - dpr?: boolean | number - entry_rate?: boolean | number - flash_assists?: boolean | number - hltv_rating?: boolean | number - kast_pct?: boolean | number - kills?: boolean | number - kpr?: boolean | number - open_deaths?: boolean | number - open_kills?: boolean | number - opening_attempts?: boolean | number - rounds?: boolean | number - steam_id?: boolean | number - support_idx?: boolean | number - total_kills?: boolean | number - trade_kill_successes?: boolean | number - traded_death_successes?: boolean | number - util_damage?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_pop on columns */ -export interface v_player_match_map_roles_var_pop_fieldsGenqlSelection{ - adr?: boolean | number - awp_kills?: boolean | number - awp_share?: boolean | number - deaths?: boolean | number - dpr?: boolean | number - entry_rate?: boolean | number - flash_assists?: boolean | number - hltv_rating?: boolean | number - kast_pct?: boolean | number - kills?: boolean | number - kpr?: boolean | number - open_deaths?: boolean | number - open_kills?: boolean | number - opening_attempts?: boolean | number - rounds?: boolean | number - steam_id?: boolean | number - support_idx?: boolean | number - total_kills?: boolean | number - trade_kill_successes?: boolean | number - traded_death_successes?: boolean | number - util_damage?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface v_player_match_map_roles_var_samp_fieldsGenqlSelection{ - adr?: boolean | number - awp_kills?: boolean | number - awp_share?: boolean | number - deaths?: boolean | number - dpr?: boolean | number - entry_rate?: boolean | number - flash_assists?: boolean | number - hltv_rating?: boolean | number - kast_pct?: boolean | number - kills?: boolean | number - kpr?: boolean | number - open_deaths?: boolean | number - open_kills?: boolean | number - opening_attempts?: boolean | number - rounds?: boolean | number - steam_id?: boolean | number - support_idx?: boolean | number - total_kills?: boolean | number - trade_kill_successes?: boolean | number - traded_death_successes?: boolean | number - util_damage?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface v_player_match_map_roles_variance_fieldsGenqlSelection{ - adr?: boolean | number - awp_kills?: boolean | number - awp_share?: boolean | number - deaths?: boolean | number - dpr?: boolean | number - entry_rate?: boolean | number - flash_assists?: boolean | number - hltv_rating?: boolean | number - kast_pct?: boolean | number - kills?: boolean | number - kpr?: boolean | number - open_deaths?: boolean | number - open_kills?: boolean | number - opening_attempts?: boolean | number - rounds?: boolean | number - steam_id?: boolean | number - support_idx?: boolean | number - total_kills?: boolean | number - trade_kill_successes?: boolean | number - traded_death_successes?: boolean | number - util_damage?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "v_player_match_performance" */ -export interface v_player_match_performanceGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - kills?: boolean | number - /** An object relationship */ - map?: mapsGenqlSelection - map_id?: boolean | number - /** An object relationship */ - match?: matchesGenqlSelection - match_created_at?: boolean | number - match_id?: boolean | number - match_result?: boolean | number - player_steam_id?: boolean | number - source?: boolean | number - type?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "v_player_match_performance" */ -export interface v_player_match_performance_aggregateGenqlSelection{ - aggregate?: v_player_match_performance_aggregate_fieldsGenqlSelection - nodes?: v_player_match_performanceGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "v_player_match_performance" */ -export interface v_player_match_performance_aggregate_fieldsGenqlSelection{ - avg?: v_player_match_performance_avg_fieldsGenqlSelection - count?: { __args: {columns?: (v_player_match_performance_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: v_player_match_performance_max_fieldsGenqlSelection - min?: v_player_match_performance_min_fieldsGenqlSelection - stddev?: v_player_match_performance_stddev_fieldsGenqlSelection - stddev_pop?: v_player_match_performance_stddev_pop_fieldsGenqlSelection - stddev_samp?: v_player_match_performance_stddev_samp_fieldsGenqlSelection - sum?: v_player_match_performance_sum_fieldsGenqlSelection - var_pop?: v_player_match_performance_var_pop_fieldsGenqlSelection - var_samp?: v_player_match_performance_var_samp_fieldsGenqlSelection - variance?: v_player_match_performance_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface v_player_match_performance_avg_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - kills?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "v_player_match_performance". All fields are combined with a logical 'AND'. */ -export interface v_player_match_performance_bool_exp {_and?: (v_player_match_performance_bool_exp[] | null),_not?: (v_player_match_performance_bool_exp | null),_or?: (v_player_match_performance_bool_exp[] | null),assists?: (Int_comparison_exp | null),deaths?: (Int_comparison_exp | null),kills?: (Int_comparison_exp | null),map?: (maps_bool_exp | null),map_id?: (uuid_comparison_exp | null),match?: (matches_bool_exp | null),match_created_at?: (timestamptz_comparison_exp | null),match_id?: (uuid_comparison_exp | null),match_result?: (String_comparison_exp | null),player_steam_id?: (bigint_comparison_exp | null),source?: (String_comparison_exp | null),type?: (String_comparison_exp | null)} - - -/** aggregate max on columns */ -export interface v_player_match_performance_max_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - kills?: boolean | number - map_id?: boolean | number - match_created_at?: boolean | number - match_id?: boolean | number - match_result?: boolean | number - player_steam_id?: boolean | number - source?: boolean | number - type?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface v_player_match_performance_min_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - kills?: boolean | number - map_id?: boolean | number - match_created_at?: boolean | number - match_id?: boolean | number - match_result?: boolean | number - player_steam_id?: boolean | number - source?: boolean | number - type?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Ordering options when selecting data from "v_player_match_performance". */ -export interface v_player_match_performance_order_by {assists?: (order_by | null),deaths?: (order_by | null),kills?: (order_by | null),map?: (maps_order_by | null),map_id?: (order_by | null),match?: (matches_order_by | null),match_created_at?: (order_by | null),match_id?: (order_by | null),match_result?: (order_by | null),player_steam_id?: (order_by | null),source?: (order_by | null),type?: (order_by | null)} - - -/** aggregate stddev on columns */ -export interface v_player_match_performance_stddev_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - kills?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface v_player_match_performance_stddev_pop_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - kills?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface v_player_match_performance_stddev_samp_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - kills?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "v_player_match_performance" */ -export interface v_player_match_performance_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: v_player_match_performance_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface v_player_match_performance_stream_cursor_value_input {assists?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),kills?: (Scalars['Int'] | null),map_id?: (Scalars['uuid'] | null),match_created_at?: (Scalars['timestamptz'] | null),match_id?: (Scalars['uuid'] | null),match_result?: (Scalars['String'] | null),player_steam_id?: (Scalars['bigint'] | null),source?: (Scalars['String'] | null),type?: (Scalars['String'] | null)} - - -/** aggregate sum on columns */ -export interface v_player_match_performance_sum_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - kills?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_pop on columns */ -export interface v_player_match_performance_var_pop_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - kills?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface v_player_match_performance_var_samp_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - kills?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface v_player_match_performance_variance_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - kills?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "v_player_match_rating" */ -export interface v_player_match_ratingGenqlSelection{ - adr?: boolean | number - dpr?: boolean | number - hltv_rating?: boolean | number - kast_pct?: boolean | number - kpr?: boolean | number - /** An object relationship */ - match?: matchesGenqlSelection - match_id?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - rounds_played?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "v_player_match_rating" */ -export interface v_player_match_rating_aggregateGenqlSelection{ - aggregate?: v_player_match_rating_aggregate_fieldsGenqlSelection - nodes?: v_player_match_ratingGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "v_player_match_rating" */ -export interface v_player_match_rating_aggregate_fieldsGenqlSelection{ - avg?: v_player_match_rating_avg_fieldsGenqlSelection - count?: { __args: {columns?: (v_player_match_rating_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: v_player_match_rating_max_fieldsGenqlSelection - min?: v_player_match_rating_min_fieldsGenqlSelection - stddev?: v_player_match_rating_stddev_fieldsGenqlSelection - stddev_pop?: v_player_match_rating_stddev_pop_fieldsGenqlSelection - stddev_samp?: v_player_match_rating_stddev_samp_fieldsGenqlSelection - sum?: v_player_match_rating_sum_fieldsGenqlSelection - var_pop?: v_player_match_rating_var_pop_fieldsGenqlSelection - var_samp?: v_player_match_rating_var_samp_fieldsGenqlSelection - variance?: v_player_match_rating_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface v_player_match_rating_avg_fieldsGenqlSelection{ - adr?: boolean | number - dpr?: boolean | number - hltv_rating?: boolean | number - kast_pct?: boolean | number - kpr?: boolean | number - rounds_played?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "v_player_match_rating". All fields are combined with a logical 'AND'. */ -export interface v_player_match_rating_bool_exp {_and?: (v_player_match_rating_bool_exp[] | null),_not?: (v_player_match_rating_bool_exp | null),_or?: (v_player_match_rating_bool_exp[] | null),adr?: (numeric_comparison_exp | null),dpr?: (numeric_comparison_exp | null),hltv_rating?: (numeric_comparison_exp | null),kast_pct?: (numeric_comparison_exp | null),kpr?: (numeric_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),player?: (players_bool_exp | null),rounds_played?: (Int_comparison_exp | null),steam_id?: (bigint_comparison_exp | null)} - - -/** aggregate max on columns */ -export interface v_player_match_rating_max_fieldsGenqlSelection{ - adr?: boolean | number - dpr?: boolean | number - hltv_rating?: boolean | number - kast_pct?: boolean | number - kpr?: boolean | number - match_id?: boolean | number - rounds_played?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface v_player_match_rating_min_fieldsGenqlSelection{ - adr?: boolean | number - dpr?: boolean | number - hltv_rating?: boolean | number - kast_pct?: boolean | number - kpr?: boolean | number - match_id?: boolean | number - rounds_played?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Ordering options when selecting data from "v_player_match_rating". */ -export interface v_player_match_rating_order_by {adr?: (order_by | null),dpr?: (order_by | null),hltv_rating?: (order_by | null),kast_pct?: (order_by | null),kpr?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),player?: (players_order_by | null),rounds_played?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate stddev on columns */ -export interface v_player_match_rating_stddev_fieldsGenqlSelection{ - adr?: boolean | number - dpr?: boolean | number - hltv_rating?: boolean | number - kast_pct?: boolean | number - kpr?: boolean | number - rounds_played?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface v_player_match_rating_stddev_pop_fieldsGenqlSelection{ - adr?: boolean | number - dpr?: boolean | number - hltv_rating?: boolean | number - kast_pct?: boolean | number - kpr?: boolean | number - rounds_played?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface v_player_match_rating_stddev_samp_fieldsGenqlSelection{ - adr?: boolean | number - dpr?: boolean | number - hltv_rating?: boolean | number - kast_pct?: boolean | number - kpr?: boolean | number - rounds_played?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "v_player_match_rating" */ -export interface v_player_match_rating_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: v_player_match_rating_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface v_player_match_rating_stream_cursor_value_input {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)} - - -/** aggregate sum on columns */ -export interface v_player_match_rating_sum_fieldsGenqlSelection{ - adr?: boolean | number - dpr?: boolean | number - hltv_rating?: boolean | number - kast_pct?: boolean | number - kpr?: boolean | number - rounds_played?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_pop on columns */ -export interface v_player_match_rating_var_pop_fieldsGenqlSelection{ - adr?: boolean | number - dpr?: boolean | number - hltv_rating?: boolean | number - kast_pct?: boolean | number - kpr?: boolean | number - rounds_played?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface v_player_match_rating_var_samp_fieldsGenqlSelection{ - adr?: boolean | number - dpr?: boolean | number - hltv_rating?: boolean | number - kast_pct?: boolean | number - kpr?: boolean | number - rounds_played?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface v_player_match_rating_variance_fieldsGenqlSelection{ - adr?: boolean | number - dpr?: boolean | number - hltv_rating?: boolean | number - kast_pct?: boolean | number - kpr?: boolean | number - rounds_played?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "v_player_multi_kills" */ -export interface v_player_multi_killsGenqlSelection{ - attacker_steam_id?: boolean | number - kills?: boolean | number - match_id?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "v_player_multi_kills" */ -export interface v_player_multi_kills_aggregateGenqlSelection{ - aggregate?: v_player_multi_kills_aggregate_fieldsGenqlSelection - nodes?: v_player_multi_killsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface v_player_multi_kills_aggregate_bool_exp {count?: (v_player_multi_kills_aggregate_bool_exp_count | null)} - -export interface v_player_multi_kills_aggregate_bool_exp_count {arguments?: (v_player_multi_kills_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (v_player_multi_kills_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "v_player_multi_kills" */ -export interface v_player_multi_kills_aggregate_fieldsGenqlSelection{ - avg?: v_player_multi_kills_avg_fieldsGenqlSelection - count?: { __args: {columns?: (v_player_multi_kills_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: v_player_multi_kills_max_fieldsGenqlSelection - min?: v_player_multi_kills_min_fieldsGenqlSelection - stddev?: v_player_multi_kills_stddev_fieldsGenqlSelection - stddev_pop?: v_player_multi_kills_stddev_pop_fieldsGenqlSelection - stddev_samp?: v_player_multi_kills_stddev_samp_fieldsGenqlSelection - sum?: v_player_multi_kills_sum_fieldsGenqlSelection - var_pop?: v_player_multi_kills_var_pop_fieldsGenqlSelection - var_samp?: v_player_multi_kills_var_samp_fieldsGenqlSelection - variance?: v_player_multi_kills_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "v_player_multi_kills" */ -export interface v_player_multi_kills_aggregate_order_by {avg?: (v_player_multi_kills_avg_order_by | null),count?: (order_by | null),max?: (v_player_multi_kills_max_order_by | null),min?: (v_player_multi_kills_min_order_by | null),stddev?: (v_player_multi_kills_stddev_order_by | null),stddev_pop?: (v_player_multi_kills_stddev_pop_order_by | null),stddev_samp?: (v_player_multi_kills_stddev_samp_order_by | null),sum?: (v_player_multi_kills_sum_order_by | null),var_pop?: (v_player_multi_kills_var_pop_order_by | null),var_samp?: (v_player_multi_kills_var_samp_order_by | null),variance?: (v_player_multi_kills_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "v_player_multi_kills" */ -export interface v_player_multi_kills_arr_rel_insert_input {data: v_player_multi_kills_insert_input[]} - - -/** aggregate avg on columns */ -export interface v_player_multi_kills_avg_fieldsGenqlSelection{ - attacker_steam_id?: boolean | number - kills?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "v_player_multi_kills" */ -export interface v_player_multi_kills_avg_order_by {attacker_steam_id?: (order_by | null),kills?: (order_by | null),round?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "v_player_multi_kills". All fields are combined with a logical 'AND'. */ -export interface v_player_multi_kills_bool_exp {_and?: (v_player_multi_kills_bool_exp[] | null),_not?: (v_player_multi_kills_bool_exp | null),_or?: (v_player_multi_kills_bool_exp[] | null),attacker_steam_id?: (bigint_comparison_exp | null),kills?: (bigint_comparison_exp | null),match_id?: (uuid_comparison_exp | null),round?: (Int_comparison_exp | null)} - - -/** input type for inserting data into table "v_player_multi_kills" */ -export interface v_player_multi_kills_insert_input {attacker_steam_id?: (Scalars['bigint'] | null),kills?: (Scalars['bigint'] | null),match_id?: (Scalars['uuid'] | null),round?: (Scalars['Int'] | null)} - - -/** aggregate max on columns */ -export interface v_player_multi_kills_max_fieldsGenqlSelection{ - attacker_steam_id?: boolean | number - kills?: boolean | number - match_id?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "v_player_multi_kills" */ -export interface v_player_multi_kills_max_order_by {attacker_steam_id?: (order_by | null),kills?: (order_by | null),match_id?: (order_by | null),round?: (order_by | null)} - - -/** aggregate min on columns */ -export interface v_player_multi_kills_min_fieldsGenqlSelection{ - attacker_steam_id?: boolean | number - kills?: boolean | number - match_id?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "v_player_multi_kills" */ -export interface v_player_multi_kills_min_order_by {attacker_steam_id?: (order_by | null),kills?: (order_by | null),match_id?: (order_by | null),round?: (order_by | null)} - - -/** Ordering options when selecting data from "v_player_multi_kills". */ -export interface v_player_multi_kills_order_by {attacker_steam_id?: (order_by | null),kills?: (order_by | null),match_id?: (order_by | null),round?: (order_by | null)} - - -/** aggregate stddev on columns */ -export interface v_player_multi_kills_stddev_fieldsGenqlSelection{ - attacker_steam_id?: boolean | number - kills?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "v_player_multi_kills" */ -export interface v_player_multi_kills_stddev_order_by {attacker_steam_id?: (order_by | null),kills?: (order_by | null),round?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface v_player_multi_kills_stddev_pop_fieldsGenqlSelection{ - attacker_steam_id?: boolean | number - kills?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "v_player_multi_kills" */ -export interface v_player_multi_kills_stddev_pop_order_by {attacker_steam_id?: (order_by | null),kills?: (order_by | null),round?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface v_player_multi_kills_stddev_samp_fieldsGenqlSelection{ - attacker_steam_id?: boolean | number - kills?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "v_player_multi_kills" */ -export interface v_player_multi_kills_stddev_samp_order_by {attacker_steam_id?: (order_by | null),kills?: (order_by | null),round?: (order_by | null)} - - -/** Streaming cursor of the table "v_player_multi_kills" */ -export interface v_player_multi_kills_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: v_player_multi_kills_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface v_player_multi_kills_stream_cursor_value_input {attacker_steam_id?: (Scalars['bigint'] | null),kills?: (Scalars['bigint'] | null),match_id?: (Scalars['uuid'] | null),round?: (Scalars['Int'] | null)} - - -/** aggregate sum on columns */ -export interface v_player_multi_kills_sum_fieldsGenqlSelection{ - attacker_steam_id?: boolean | number - kills?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "v_player_multi_kills" */ -export interface v_player_multi_kills_sum_order_by {attacker_steam_id?: (order_by | null),kills?: (order_by | null),round?: (order_by | null)} - - -/** aggregate var_pop on columns */ -export interface v_player_multi_kills_var_pop_fieldsGenqlSelection{ - attacker_steam_id?: boolean | number - kills?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "v_player_multi_kills" */ -export interface v_player_multi_kills_var_pop_order_by {attacker_steam_id?: (order_by | null),kills?: (order_by | null),round?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface v_player_multi_kills_var_samp_fieldsGenqlSelection{ - attacker_steam_id?: boolean | number - kills?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "v_player_multi_kills" */ -export interface v_player_multi_kills_var_samp_order_by {attacker_steam_id?: (order_by | null),kills?: (order_by | null),round?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface v_player_multi_kills_variance_fieldsGenqlSelection{ - attacker_steam_id?: boolean | number - kills?: boolean | number - round?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "v_player_multi_kills" */ -export interface v_player_multi_kills_variance_order_by {attacker_steam_id?: (order_by | null),kills?: (order_by | null),round?: (order_by | null)} - - -/** columns and relationships of "v_player_queue_partners" */ -export interface v_player_queue_partnersGenqlSelection{ - first_played_at?: boolean | number - last_played_at?: boolean | number - matches_together?: boolean | number - /** An object relationship */ - partner?: playersGenqlSelection - partner_steam_id?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - steam_id?: boolean | number - wins_together?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "v_player_queue_partners" */ -export interface v_player_queue_partners_aggregateGenqlSelection{ - aggregate?: v_player_queue_partners_aggregate_fieldsGenqlSelection - nodes?: v_player_queue_partnersGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "v_player_queue_partners" */ -export interface v_player_queue_partners_aggregate_fieldsGenqlSelection{ - avg?: v_player_queue_partners_avg_fieldsGenqlSelection - count?: { __args: {columns?: (v_player_queue_partners_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: v_player_queue_partners_max_fieldsGenqlSelection - min?: v_player_queue_partners_min_fieldsGenqlSelection - stddev?: v_player_queue_partners_stddev_fieldsGenqlSelection - stddev_pop?: v_player_queue_partners_stddev_pop_fieldsGenqlSelection - stddev_samp?: v_player_queue_partners_stddev_samp_fieldsGenqlSelection - sum?: v_player_queue_partners_sum_fieldsGenqlSelection - var_pop?: v_player_queue_partners_var_pop_fieldsGenqlSelection - var_samp?: v_player_queue_partners_var_samp_fieldsGenqlSelection - variance?: v_player_queue_partners_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface v_player_queue_partners_avg_fieldsGenqlSelection{ - matches_together?: boolean | number - partner_steam_id?: boolean | number - steam_id?: boolean | number - wins_together?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "v_player_queue_partners". All fields are combined with a logical 'AND'. */ -export interface v_player_queue_partners_bool_exp {_and?: (v_player_queue_partners_bool_exp[] | null),_not?: (v_player_queue_partners_bool_exp | null),_or?: (v_player_queue_partners_bool_exp[] | null),first_played_at?: (timestamptz_comparison_exp | null),last_played_at?: (timestamptz_comparison_exp | null),matches_together?: (Int_comparison_exp | null),partner?: (players_bool_exp | null),partner_steam_id?: (bigint_comparison_exp | null),player?: (players_bool_exp | null),steam_id?: (bigint_comparison_exp | null),wins_together?: (Int_comparison_exp | null)} - - -/** aggregate max on columns */ -export interface v_player_queue_partners_max_fieldsGenqlSelection{ - first_played_at?: boolean | number - last_played_at?: boolean | number - matches_together?: boolean | number - partner_steam_id?: boolean | number - steam_id?: boolean | number - wins_together?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface v_player_queue_partners_min_fieldsGenqlSelection{ - first_played_at?: boolean | number - last_played_at?: boolean | number - matches_together?: boolean | number - partner_steam_id?: boolean | number - steam_id?: boolean | number - wins_together?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Ordering options when selecting data from "v_player_queue_partners". */ -export interface v_player_queue_partners_order_by {first_played_at?: (order_by | null),last_played_at?: (order_by | null),matches_together?: (order_by | null),partner?: (players_order_by | null),partner_steam_id?: (order_by | null),player?: (players_order_by | null),steam_id?: (order_by | null),wins_together?: (order_by | null)} - - -/** aggregate stddev on columns */ -export interface v_player_queue_partners_stddev_fieldsGenqlSelection{ - matches_together?: boolean | number - partner_steam_id?: boolean | number - steam_id?: boolean | number - wins_together?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface v_player_queue_partners_stddev_pop_fieldsGenqlSelection{ - matches_together?: boolean | number - partner_steam_id?: boolean | number - steam_id?: boolean | number - wins_together?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface v_player_queue_partners_stddev_samp_fieldsGenqlSelection{ - matches_together?: boolean | number - partner_steam_id?: boolean | number - steam_id?: boolean | number - wins_together?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "v_player_queue_partners" */ -export interface v_player_queue_partners_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: v_player_queue_partners_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface v_player_queue_partners_stream_cursor_value_input {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)} - - -/** aggregate sum on columns */ -export interface v_player_queue_partners_sum_fieldsGenqlSelection{ - matches_together?: boolean | number - partner_steam_id?: boolean | number - steam_id?: boolean | number - wins_together?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_pop on columns */ -export interface v_player_queue_partners_var_pop_fieldsGenqlSelection{ - matches_together?: boolean | number - partner_steam_id?: boolean | number - steam_id?: boolean | number - wins_together?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface v_player_queue_partners_var_samp_fieldsGenqlSelection{ - matches_together?: boolean | number - partner_steam_id?: boolean | number - steam_id?: boolean | number - wins_together?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface v_player_queue_partners_variance_fieldsGenqlSelection{ - matches_together?: boolean | number - partner_steam_id?: boolean | number - steam_id?: boolean | number - wins_together?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "v_player_weapon_damage" */ -export interface v_player_weapon_damageGenqlSelection{ - damage?: boolean | number - hits?: boolean | number - player_steam_id?: boolean | number - source?: boolean | number - type?: boolean | number - with?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "v_player_weapon_damage" */ -export interface v_player_weapon_damage_aggregateGenqlSelection{ - aggregate?: v_player_weapon_damage_aggregate_fieldsGenqlSelection - nodes?: v_player_weapon_damageGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "v_player_weapon_damage" */ -export interface v_player_weapon_damage_aggregate_fieldsGenqlSelection{ - avg?: v_player_weapon_damage_avg_fieldsGenqlSelection - count?: { __args: {columns?: (v_player_weapon_damage_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: v_player_weapon_damage_max_fieldsGenqlSelection - min?: v_player_weapon_damage_min_fieldsGenqlSelection - stddev?: v_player_weapon_damage_stddev_fieldsGenqlSelection - stddev_pop?: v_player_weapon_damage_stddev_pop_fieldsGenqlSelection - stddev_samp?: v_player_weapon_damage_stddev_samp_fieldsGenqlSelection - sum?: v_player_weapon_damage_sum_fieldsGenqlSelection - var_pop?: v_player_weapon_damage_var_pop_fieldsGenqlSelection - var_samp?: v_player_weapon_damage_var_samp_fieldsGenqlSelection - variance?: v_player_weapon_damage_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface v_player_weapon_damage_avg_fieldsGenqlSelection{ - damage?: boolean | number - hits?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "v_player_weapon_damage". All fields are combined with a logical 'AND'. */ -export interface v_player_weapon_damage_bool_exp {_and?: (v_player_weapon_damage_bool_exp[] | null),_not?: (v_player_weapon_damage_bool_exp | null),_or?: (v_player_weapon_damage_bool_exp[] | null),damage?: (bigint_comparison_exp | null),hits?: (bigint_comparison_exp | null),player_steam_id?: (bigint_comparison_exp | null),source?: (String_comparison_exp | null),type?: (String_comparison_exp | null),with?: (String_comparison_exp | null)} - - -/** aggregate max on columns */ -export interface v_player_weapon_damage_max_fieldsGenqlSelection{ - damage?: boolean | number - hits?: boolean | number - player_steam_id?: boolean | number - source?: boolean | number - type?: boolean | number - with?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface v_player_weapon_damage_min_fieldsGenqlSelection{ - damage?: boolean | number - hits?: boolean | number - player_steam_id?: boolean | number - source?: boolean | number - type?: boolean | number - with?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Ordering options when selecting data from "v_player_weapon_damage". */ -export interface v_player_weapon_damage_order_by {damage?: (order_by | null),hits?: (order_by | null),player_steam_id?: (order_by | null),source?: (order_by | null),type?: (order_by | null),with?: (order_by | null)} - - -/** aggregate stddev on columns */ -export interface v_player_weapon_damage_stddev_fieldsGenqlSelection{ - damage?: boolean | number - hits?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface v_player_weapon_damage_stddev_pop_fieldsGenqlSelection{ - damage?: boolean | number - hits?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface v_player_weapon_damage_stddev_samp_fieldsGenqlSelection{ - damage?: boolean | number - hits?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "v_player_weapon_damage" */ -export interface v_player_weapon_damage_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: v_player_weapon_damage_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface v_player_weapon_damage_stream_cursor_value_input {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)} - - -/** aggregate sum on columns */ -export interface v_player_weapon_damage_sum_fieldsGenqlSelection{ - damage?: boolean | number - hits?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_pop on columns */ -export interface v_player_weapon_damage_var_pop_fieldsGenqlSelection{ - damage?: boolean | number - hits?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface v_player_weapon_damage_var_samp_fieldsGenqlSelection{ - damage?: boolean | number - hits?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface v_player_weapon_damage_variance_fieldsGenqlSelection{ - damage?: boolean | number - hits?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "v_player_weapon_kills" */ -export interface v_player_weapon_killsGenqlSelection{ - kill_count?: boolean | number - player_steam_id?: boolean | number - rounds?: boolean | number - source?: boolean | number - type?: boolean | number - with?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "v_player_weapon_kills" */ -export interface v_player_weapon_kills_aggregateGenqlSelection{ - aggregate?: v_player_weapon_kills_aggregate_fieldsGenqlSelection - nodes?: v_player_weapon_killsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "v_player_weapon_kills" */ -export interface v_player_weapon_kills_aggregate_fieldsGenqlSelection{ - avg?: v_player_weapon_kills_avg_fieldsGenqlSelection - count?: { __args: {columns?: (v_player_weapon_kills_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: v_player_weapon_kills_max_fieldsGenqlSelection - min?: v_player_weapon_kills_min_fieldsGenqlSelection - stddev?: v_player_weapon_kills_stddev_fieldsGenqlSelection - stddev_pop?: v_player_weapon_kills_stddev_pop_fieldsGenqlSelection - stddev_samp?: v_player_weapon_kills_stddev_samp_fieldsGenqlSelection - sum?: v_player_weapon_kills_sum_fieldsGenqlSelection - var_pop?: v_player_weapon_kills_var_pop_fieldsGenqlSelection - var_samp?: v_player_weapon_kills_var_samp_fieldsGenqlSelection - variance?: v_player_weapon_kills_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface v_player_weapon_kills_avg_fieldsGenqlSelection{ - kill_count?: boolean | number - player_steam_id?: boolean | number - rounds?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "v_player_weapon_kills". All fields are combined with a logical 'AND'. */ -export interface v_player_weapon_kills_bool_exp {_and?: (v_player_weapon_kills_bool_exp[] | null),_not?: (v_player_weapon_kills_bool_exp | null),_or?: (v_player_weapon_kills_bool_exp[] | null),kill_count?: (bigint_comparison_exp | null),player_steam_id?: (bigint_comparison_exp | null),rounds?: (bigint_comparison_exp | null),source?: (String_comparison_exp | null),type?: (String_comparison_exp | null),with?: (String_comparison_exp | null)} - - -/** aggregate max on columns */ -export interface v_player_weapon_kills_max_fieldsGenqlSelection{ - kill_count?: boolean | number - player_steam_id?: boolean | number - rounds?: boolean | number - source?: boolean | number - type?: boolean | number - with?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface v_player_weapon_kills_min_fieldsGenqlSelection{ - kill_count?: boolean | number - player_steam_id?: boolean | number - rounds?: boolean | number - source?: boolean | number - type?: boolean | number - with?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Ordering options when selecting data from "v_player_weapon_kills". */ -export interface v_player_weapon_kills_order_by {kill_count?: (order_by | null),player_steam_id?: (order_by | null),rounds?: (order_by | null),source?: (order_by | null),type?: (order_by | null),with?: (order_by | null)} - - -/** aggregate stddev on columns */ -export interface v_player_weapon_kills_stddev_fieldsGenqlSelection{ - kill_count?: boolean | number - player_steam_id?: boolean | number - rounds?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface v_player_weapon_kills_stddev_pop_fieldsGenqlSelection{ - kill_count?: boolean | number - player_steam_id?: boolean | number - rounds?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface v_player_weapon_kills_stddev_samp_fieldsGenqlSelection{ - kill_count?: boolean | number - player_steam_id?: boolean | number - rounds?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "v_player_weapon_kills" */ -export interface v_player_weapon_kills_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: v_player_weapon_kills_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface v_player_weapon_kills_stream_cursor_value_input {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)} - - -/** aggregate sum on columns */ -export interface v_player_weapon_kills_sum_fieldsGenqlSelection{ - kill_count?: boolean | number - player_steam_id?: boolean | number - rounds?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_pop on columns */ -export interface v_player_weapon_kills_var_pop_fieldsGenqlSelection{ - kill_count?: boolean | number - player_steam_id?: boolean | number - rounds?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface v_player_weapon_kills_var_samp_fieldsGenqlSelection{ - kill_count?: boolean | number - player_steam_id?: boolean | number - rounds?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface v_player_weapon_kills_variance_fieldsGenqlSelection{ - kill_count?: boolean | number - player_steam_id?: boolean | number - rounds?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "v_pool_maps" */ -export interface v_pool_mapsGenqlSelection{ - active_pool?: boolean | number - id?: boolean | number - label?: boolean | number - /** An object relationship */ - map_pool?: map_poolsGenqlSelection - map_pool_id?: boolean | number - name?: boolean | number - patch?: boolean | number - poster?: boolean | number - type?: boolean | number - workshop_map_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "v_pool_maps" */ -export interface v_pool_maps_aggregateGenqlSelection{ - aggregate?: v_pool_maps_aggregate_fieldsGenqlSelection - nodes?: v_pool_mapsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface v_pool_maps_aggregate_bool_exp {bool_and?: (v_pool_maps_aggregate_bool_exp_bool_and | null),bool_or?: (v_pool_maps_aggregate_bool_exp_bool_or | null),count?: (v_pool_maps_aggregate_bool_exp_count | null)} - -export interface v_pool_maps_aggregate_bool_exp_bool_and {arguments: v_pool_maps_select_column_v_pool_maps_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_pool_maps_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface v_pool_maps_aggregate_bool_exp_bool_or {arguments: v_pool_maps_select_column_v_pool_maps_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_pool_maps_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface v_pool_maps_aggregate_bool_exp_count {arguments?: (v_pool_maps_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (v_pool_maps_bool_exp | null),predicate: Int_comparison_exp} - - -/** aggregate fields of "v_pool_maps" */ -export interface v_pool_maps_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (v_pool_maps_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: v_pool_maps_max_fieldsGenqlSelection - min?: v_pool_maps_min_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "v_pool_maps" */ -export interface v_pool_maps_aggregate_order_by {count?: (order_by | null),max?: (v_pool_maps_max_order_by | null),min?: (v_pool_maps_min_order_by | null)} - - -/** input type for inserting array relation for remote table "v_pool_maps" */ -export interface v_pool_maps_arr_rel_insert_input {data: v_pool_maps_insert_input[]} - - -/** Boolean expression to filter rows from the table "v_pool_maps". All fields are combined with a logical 'AND'. */ -export interface v_pool_maps_bool_exp {_and?: (v_pool_maps_bool_exp[] | null),_not?: (v_pool_maps_bool_exp | null),_or?: (v_pool_maps_bool_exp[] | null),active_pool?: (Boolean_comparison_exp | null),id?: (uuid_comparison_exp | null),label?: (String_comparison_exp | null),map_pool?: (map_pools_bool_exp | null),map_pool_id?: (uuid_comparison_exp | null),name?: (String_comparison_exp | null),patch?: (String_comparison_exp | null),poster?: (String_comparison_exp | null),type?: (String_comparison_exp | null),workshop_map_id?: (String_comparison_exp | null)} - - -/** input type for inserting data into table "v_pool_maps" */ -export interface v_pool_maps_insert_input {active_pool?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),label?: (Scalars['String'] | null),map_pool?: (map_pools_obj_rel_insert_input | 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)} - - -/** aggregate max on columns */ -export interface v_pool_maps_max_fieldsGenqlSelection{ - id?: boolean | number - label?: boolean | number - map_pool_id?: boolean | number - name?: boolean | number - patch?: boolean | number - poster?: boolean | number - type?: boolean | number - workshop_map_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "v_pool_maps" */ -export interface v_pool_maps_max_order_by {id?: (order_by | null),label?: (order_by | null),map_pool_id?: (order_by | null),name?: (order_by | null),patch?: (order_by | null),poster?: (order_by | null),type?: (order_by | null),workshop_map_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface v_pool_maps_min_fieldsGenqlSelection{ - id?: boolean | number - label?: boolean | number - map_pool_id?: boolean | number - name?: boolean | number - patch?: boolean | number - poster?: boolean | number - type?: boolean | number - workshop_map_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "v_pool_maps" */ -export interface v_pool_maps_min_order_by {id?: (order_by | null),label?: (order_by | null),map_pool_id?: (order_by | null),name?: (order_by | null),patch?: (order_by | null),poster?: (order_by | null),type?: (order_by | null),workshop_map_id?: (order_by | null)} - - -/** response of any mutation on the table "v_pool_maps" */ -export interface v_pool_maps_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: v_pool_mapsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Ordering options when selecting data from "v_pool_maps". */ -export interface v_pool_maps_order_by {active_pool?: (order_by | null),id?: (order_by | null),label?: (order_by | null),map_pool?: (map_pools_order_by | null),map_pool_id?: (order_by | null),name?: (order_by | null),patch?: (order_by | null),poster?: (order_by | null),type?: (order_by | null),workshop_map_id?: (order_by | null)} - - -/** input type for updating data in table "v_pool_maps" */ -export interface v_pool_maps_set_input {active_pool?: (Scalars['Boolean'] | null),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)} - - -/** Streaming cursor of the table "v_pool_maps" */ -export interface v_pool_maps_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: v_pool_maps_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface v_pool_maps_stream_cursor_value_input {active_pool?: (Scalars['Boolean'] | null),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)} - -export interface v_pool_maps_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (v_pool_maps_set_input | null), -/** filter the rows which have to be updated */ -where: v_pool_maps_bool_exp} - - -/** columns and relationships of "v_steam_account_pool_status" */ -export interface v_steam_account_pool_statusGenqlSelection{ - busy_accounts?: boolean | number - free_accounts?: boolean | number - id?: boolean | number - total_accounts?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "v_steam_account_pool_status" */ -export interface v_steam_account_pool_status_aggregateGenqlSelection{ - aggregate?: v_steam_account_pool_status_aggregate_fieldsGenqlSelection - nodes?: v_steam_account_pool_statusGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "v_steam_account_pool_status" */ -export interface v_steam_account_pool_status_aggregate_fieldsGenqlSelection{ - avg?: v_steam_account_pool_status_avg_fieldsGenqlSelection - count?: { __args: {columns?: (v_steam_account_pool_status_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: v_steam_account_pool_status_max_fieldsGenqlSelection - min?: v_steam_account_pool_status_min_fieldsGenqlSelection - stddev?: v_steam_account_pool_status_stddev_fieldsGenqlSelection - stddev_pop?: v_steam_account_pool_status_stddev_pop_fieldsGenqlSelection - stddev_samp?: v_steam_account_pool_status_stddev_samp_fieldsGenqlSelection - sum?: v_steam_account_pool_status_sum_fieldsGenqlSelection - var_pop?: v_steam_account_pool_status_var_pop_fieldsGenqlSelection - var_samp?: v_steam_account_pool_status_var_samp_fieldsGenqlSelection - variance?: v_steam_account_pool_status_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface v_steam_account_pool_status_avg_fieldsGenqlSelection{ - busy_accounts?: boolean | number - free_accounts?: boolean | number - id?: boolean | number - total_accounts?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "v_steam_account_pool_status". All fields are combined with a logical 'AND'. */ -export interface v_steam_account_pool_status_bool_exp {_and?: (v_steam_account_pool_status_bool_exp[] | null),_not?: (v_steam_account_pool_status_bool_exp | null),_or?: (v_steam_account_pool_status_bool_exp[] | null),busy_accounts?: (Int_comparison_exp | null),free_accounts?: (Int_comparison_exp | null),id?: (Int_comparison_exp | null),total_accounts?: (Int_comparison_exp | null)} - - -/** aggregate max on columns */ -export interface v_steam_account_pool_status_max_fieldsGenqlSelection{ - busy_accounts?: boolean | number - free_accounts?: boolean | number - id?: boolean | number - total_accounts?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface v_steam_account_pool_status_min_fieldsGenqlSelection{ - busy_accounts?: boolean | number - free_accounts?: boolean | number - id?: boolean | number - total_accounts?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Ordering options when selecting data from "v_steam_account_pool_status". */ -export interface v_steam_account_pool_status_order_by {busy_accounts?: (order_by | null),free_accounts?: (order_by | null),id?: (order_by | null),total_accounts?: (order_by | null)} - - -/** aggregate stddev on columns */ -export interface v_steam_account_pool_status_stddev_fieldsGenqlSelection{ - busy_accounts?: boolean | number - free_accounts?: boolean | number - id?: boolean | number - total_accounts?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface v_steam_account_pool_status_stddev_pop_fieldsGenqlSelection{ - busy_accounts?: boolean | number - free_accounts?: boolean | number - id?: boolean | number - total_accounts?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface v_steam_account_pool_status_stddev_samp_fieldsGenqlSelection{ - busy_accounts?: boolean | number - free_accounts?: boolean | number - id?: boolean | number - total_accounts?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "v_steam_account_pool_status" */ -export interface v_steam_account_pool_status_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: v_steam_account_pool_status_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface v_steam_account_pool_status_stream_cursor_value_input {busy_accounts?: (Scalars['Int'] | null),free_accounts?: (Scalars['Int'] | null),id?: (Scalars['Int'] | null),total_accounts?: (Scalars['Int'] | null)} - - -/** aggregate sum on columns */ -export interface v_steam_account_pool_status_sum_fieldsGenqlSelection{ - busy_accounts?: boolean | number - free_accounts?: boolean | number - id?: boolean | number - total_accounts?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_pop on columns */ -export interface v_steam_account_pool_status_var_pop_fieldsGenqlSelection{ - busy_accounts?: boolean | number - free_accounts?: boolean | number - id?: boolean | number - total_accounts?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface v_steam_account_pool_status_var_samp_fieldsGenqlSelection{ - busy_accounts?: boolean | number - free_accounts?: boolean | number - id?: boolean | number - total_accounts?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface v_steam_account_pool_status_variance_fieldsGenqlSelection{ - busy_accounts?: boolean | number - free_accounts?: boolean | number - id?: boolean | number - total_accounts?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "v_team_ranks" */ -export interface v_team_ranksGenqlSelection{ - avg_duel_elo?: boolean | number - avg_elo?: boolean | number - avg_faceit_elo?: boolean | number - avg_faceit_level?: boolean | number - avg_premier?: boolean | number - avg_wingman_elo?: boolean | number - max_elo?: boolean | number - min_elo?: boolean | number - roster_size?: boolean | number - /** An object relationship */ - team?: teamsGenqlSelection - team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "v_team_ranks" */ -export interface v_team_ranks_aggregateGenqlSelection{ - aggregate?: v_team_ranks_aggregate_fieldsGenqlSelection - nodes?: v_team_ranksGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "v_team_ranks" */ -export interface v_team_ranks_aggregate_fieldsGenqlSelection{ - avg?: v_team_ranks_avg_fieldsGenqlSelection - count?: { __args: {columns?: (v_team_ranks_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: v_team_ranks_max_fieldsGenqlSelection - min?: v_team_ranks_min_fieldsGenqlSelection - stddev?: v_team_ranks_stddev_fieldsGenqlSelection - stddev_pop?: v_team_ranks_stddev_pop_fieldsGenqlSelection - stddev_samp?: v_team_ranks_stddev_samp_fieldsGenqlSelection - sum?: v_team_ranks_sum_fieldsGenqlSelection - var_pop?: v_team_ranks_var_pop_fieldsGenqlSelection - var_samp?: v_team_ranks_var_samp_fieldsGenqlSelection - variance?: v_team_ranks_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface v_team_ranks_avg_fieldsGenqlSelection{ - avg_duel_elo?: boolean | number - avg_elo?: boolean | number - avg_faceit_elo?: boolean | number - avg_faceit_level?: boolean | number - avg_premier?: boolean | number - avg_wingman_elo?: boolean | number - max_elo?: boolean | number - min_elo?: boolean | number - roster_size?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "v_team_ranks". All fields are combined with a logical 'AND'. */ -export interface v_team_ranks_bool_exp {_and?: (v_team_ranks_bool_exp[] | null),_not?: (v_team_ranks_bool_exp | null),_or?: (v_team_ranks_bool_exp[] | null),avg_duel_elo?: (Int_comparison_exp | null),avg_elo?: (Int_comparison_exp | null),avg_faceit_elo?: (Int_comparison_exp | null),avg_faceit_level?: (float8_comparison_exp | null),avg_premier?: (Int_comparison_exp | null),avg_wingman_elo?: (Int_comparison_exp | null),max_elo?: (Int_comparison_exp | null),min_elo?: (Int_comparison_exp | null),roster_size?: (bigint_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null)} - - -/** input type for inserting data into table "v_team_ranks" */ -export interface v_team_ranks_insert_input {avg_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?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null)} - - -/** aggregate max on columns */ -export interface v_team_ranks_max_fieldsGenqlSelection{ - avg_duel_elo?: boolean | number - avg_elo?: boolean | number - avg_faceit_elo?: boolean | number - avg_faceit_level?: boolean | number - avg_premier?: boolean | number - avg_wingman_elo?: boolean | number - max_elo?: boolean | number - min_elo?: boolean | number - roster_size?: boolean | number - team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface v_team_ranks_min_fieldsGenqlSelection{ - avg_duel_elo?: boolean | number - avg_elo?: boolean | number - avg_faceit_elo?: boolean | number - avg_faceit_level?: boolean | number - avg_premier?: boolean | number - avg_wingman_elo?: boolean | number - max_elo?: boolean | number - min_elo?: boolean | number - roster_size?: boolean | number - team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "v_team_ranks" */ -export interface v_team_ranks_obj_rel_insert_input {data: v_team_ranks_insert_input} - - -/** Ordering options when selecting data from "v_team_ranks". */ -export interface v_team_ranks_order_by {avg_duel_elo?: (order_by | null),avg_elo?: (order_by | null),avg_faceit_elo?: (order_by | null),avg_faceit_level?: (order_by | null),avg_premier?: (order_by | null),avg_wingman_elo?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null),roster_size?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null)} - - -/** aggregate stddev on columns */ -export interface v_team_ranks_stddev_fieldsGenqlSelection{ - avg_duel_elo?: boolean | number - avg_elo?: boolean | number - avg_faceit_elo?: boolean | number - avg_faceit_level?: boolean | number - avg_premier?: boolean | number - avg_wingman_elo?: boolean | number - max_elo?: boolean | number - min_elo?: boolean | number - roster_size?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface v_team_ranks_stddev_pop_fieldsGenqlSelection{ - avg_duel_elo?: boolean | number - avg_elo?: boolean | number - avg_faceit_elo?: boolean | number - avg_faceit_level?: boolean | number - avg_premier?: boolean | number - avg_wingman_elo?: boolean | number - max_elo?: boolean | number - min_elo?: boolean | number - roster_size?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface v_team_ranks_stddev_samp_fieldsGenqlSelection{ - avg_duel_elo?: boolean | number - avg_elo?: boolean | number - avg_faceit_elo?: boolean | number - avg_faceit_level?: boolean | number - avg_premier?: boolean | number - avg_wingman_elo?: boolean | number - max_elo?: boolean | number - min_elo?: boolean | number - roster_size?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "v_team_ranks" */ -export interface v_team_ranks_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: v_team_ranks_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface v_team_ranks_stream_cursor_value_input {avg_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)} - - -/** aggregate sum on columns */ -export interface v_team_ranks_sum_fieldsGenqlSelection{ - avg_duel_elo?: boolean | number - avg_elo?: boolean | number - avg_faceit_elo?: boolean | number - avg_faceit_level?: boolean | number - avg_premier?: boolean | number - avg_wingman_elo?: boolean | number - max_elo?: boolean | number - min_elo?: boolean | number - roster_size?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_pop on columns */ -export interface v_team_ranks_var_pop_fieldsGenqlSelection{ - avg_duel_elo?: boolean | number - avg_elo?: boolean | number - avg_faceit_elo?: boolean | number - avg_faceit_level?: boolean | number - avg_premier?: boolean | number - avg_wingman_elo?: boolean | number - max_elo?: boolean | number - min_elo?: boolean | number - roster_size?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface v_team_ranks_var_samp_fieldsGenqlSelection{ - avg_duel_elo?: boolean | number - avg_elo?: boolean | number - avg_faceit_elo?: boolean | number - avg_faceit_level?: boolean | number - avg_premier?: boolean | number - avg_wingman_elo?: boolean | number - max_elo?: boolean | number - min_elo?: boolean | number - roster_size?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface v_team_ranks_variance_fieldsGenqlSelection{ - avg_duel_elo?: boolean | number - avg_elo?: boolean | number - avg_faceit_elo?: boolean | number - avg_faceit_level?: boolean | number - avg_premier?: boolean | number - avg_wingman_elo?: boolean | number - max_elo?: boolean | number - min_elo?: boolean | number - roster_size?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "v_team_reputation" */ -export interface v_team_reputationGenqlSelection{ - late_cancels?: boolean | number - no_shows?: boolean | number - reliability_pct?: boolean | number - scrims_completed?: boolean | number - /** An object relationship */ - team?: teamsGenqlSelection - team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "v_team_reputation" */ -export interface v_team_reputation_aggregateGenqlSelection{ - aggregate?: v_team_reputation_aggregate_fieldsGenqlSelection - nodes?: v_team_reputationGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "v_team_reputation" */ -export interface v_team_reputation_aggregate_fieldsGenqlSelection{ - avg?: v_team_reputation_avg_fieldsGenqlSelection - count?: { __args: {columns?: (v_team_reputation_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: v_team_reputation_max_fieldsGenqlSelection - min?: v_team_reputation_min_fieldsGenqlSelection - stddev?: v_team_reputation_stddev_fieldsGenqlSelection - stddev_pop?: v_team_reputation_stddev_pop_fieldsGenqlSelection - stddev_samp?: v_team_reputation_stddev_samp_fieldsGenqlSelection - sum?: v_team_reputation_sum_fieldsGenqlSelection - var_pop?: v_team_reputation_var_pop_fieldsGenqlSelection - var_samp?: v_team_reputation_var_samp_fieldsGenqlSelection - variance?: v_team_reputation_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate avg on columns */ -export interface v_team_reputation_avg_fieldsGenqlSelection{ - late_cancels?: boolean | number - no_shows?: boolean | number - reliability_pct?: boolean | number - scrims_completed?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "v_team_reputation". All fields are combined with a logical 'AND'. */ -export interface v_team_reputation_bool_exp {_and?: (v_team_reputation_bool_exp[] | null),_not?: (v_team_reputation_bool_exp | null),_or?: (v_team_reputation_bool_exp[] | null),late_cancels?: (bigint_comparison_exp | null),no_shows?: (bigint_comparison_exp | null),reliability_pct?: (numeric_comparison_exp | null),scrims_completed?: (bigint_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null)} - - -/** input type for inserting data into table "v_team_reputation" */ -export interface v_team_reputation_insert_input {late_cancels?: (Scalars['bigint'] | null),no_shows?: (Scalars['bigint'] | null),reliability_pct?: (Scalars['numeric'] | null),scrims_completed?: (Scalars['bigint'] | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null)} - - -/** aggregate max on columns */ -export interface v_team_reputation_max_fieldsGenqlSelection{ - late_cancels?: boolean | number - no_shows?: boolean | number - reliability_pct?: boolean | number - scrims_completed?: boolean | number - team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface v_team_reputation_min_fieldsGenqlSelection{ - late_cancels?: boolean | number - no_shows?: boolean | number - reliability_pct?: boolean | number - scrims_completed?: boolean | number - team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "v_team_reputation" */ -export interface v_team_reputation_obj_rel_insert_input {data: v_team_reputation_insert_input} - - -/** Ordering options when selecting data from "v_team_reputation". */ -export interface v_team_reputation_order_by {late_cancels?: (order_by | null),no_shows?: (order_by | null),reliability_pct?: (order_by | null),scrims_completed?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null)} - - -/** aggregate stddev on columns */ -export interface v_team_reputation_stddev_fieldsGenqlSelection{ - late_cancels?: boolean | number - no_shows?: boolean | number - reliability_pct?: boolean | number - scrims_completed?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_pop on columns */ -export interface v_team_reputation_stddev_pop_fieldsGenqlSelection{ - late_cancels?: boolean | number - no_shows?: boolean | number - reliability_pct?: boolean | number - scrims_completed?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate stddev_samp on columns */ -export interface v_team_reputation_stddev_samp_fieldsGenqlSelection{ - late_cancels?: boolean | number - no_shows?: boolean | number - reliability_pct?: boolean | number - scrims_completed?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Streaming cursor of the table "v_team_reputation" */ -export interface v_team_reputation_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: v_team_reputation_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface v_team_reputation_stream_cursor_value_input {late_cancels?: (Scalars['bigint'] | null),no_shows?: (Scalars['bigint'] | null),reliability_pct?: (Scalars['numeric'] | null),scrims_completed?: (Scalars['bigint'] | null),team_id?: (Scalars['uuid'] | null)} - - -/** aggregate sum on columns */ -export interface v_team_reputation_sum_fieldsGenqlSelection{ - late_cancels?: boolean | number - no_shows?: boolean | number - reliability_pct?: boolean | number - scrims_completed?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_pop on columns */ -export interface v_team_reputation_var_pop_fieldsGenqlSelection{ - late_cancels?: boolean | number - no_shows?: boolean | number - reliability_pct?: boolean | number - scrims_completed?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate var_samp on columns */ -export interface v_team_reputation_var_samp_fieldsGenqlSelection{ - late_cancels?: boolean | number - no_shows?: boolean | number - reliability_pct?: boolean | number - scrims_completed?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate variance on columns */ -export interface v_team_reputation_variance_fieldsGenqlSelection{ - late_cancels?: boolean | number - no_shows?: boolean | number - reliability_pct?: boolean | number - scrims_completed?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** columns and relationships of "v_team_stage_results" */ -export interface v_team_stage_resultsGenqlSelection{ - group_number?: boolean | number - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number - matches_played?: boolean | number - matches_remaining?: boolean | number - placement?: boolean | number - rank?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - /** An object relationship */ - stage?: tournament_stagesGenqlSelection - /** An object relationship */ - team?: tournament_teamsGenqlSelection - team_kdr?: boolean | number - total_deaths?: boolean | number - total_kills?: boolean | number - tournament_stage_id?: boolean | number - tournament_team_id?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "v_team_stage_results" */ -export interface v_team_stage_results_aggregateGenqlSelection{ - aggregate?: v_team_stage_results_aggregate_fieldsGenqlSelection - nodes?: v_team_stage_resultsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface v_team_stage_results_aggregate_bool_exp {avg?: (v_team_stage_results_aggregate_bool_exp_avg | null),corr?: (v_team_stage_results_aggregate_bool_exp_corr | null),count?: (v_team_stage_results_aggregate_bool_exp_count | null),covar_samp?: (v_team_stage_results_aggregate_bool_exp_covar_samp | null),max?: (v_team_stage_results_aggregate_bool_exp_max | null),min?: (v_team_stage_results_aggregate_bool_exp_min | null),stddev_samp?: (v_team_stage_results_aggregate_bool_exp_stddev_samp | null),sum?: (v_team_stage_results_aggregate_bool_exp_sum | null),var_samp?: (v_team_stage_results_aggregate_bool_exp_var_samp | null)} - -export interface v_team_stage_results_aggregate_bool_exp_avg {arguments: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_avg_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_stage_results_bool_exp | null),predicate: float8_comparison_exp} - -export interface v_team_stage_results_aggregate_bool_exp_corr {arguments: v_team_stage_results_aggregate_bool_exp_corr_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_stage_results_bool_exp | null),predicate: float8_comparison_exp} - -export interface v_team_stage_results_aggregate_bool_exp_corr_arguments {X: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_corr_arguments_columns,Y: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_corr_arguments_columns} - -export interface v_team_stage_results_aggregate_bool_exp_count {arguments?: (v_team_stage_results_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (v_team_stage_results_bool_exp | null),predicate: Int_comparison_exp} - -export interface v_team_stage_results_aggregate_bool_exp_covar_samp {arguments: v_team_stage_results_aggregate_bool_exp_covar_samp_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_stage_results_bool_exp | null),predicate: float8_comparison_exp} - -export interface v_team_stage_results_aggregate_bool_exp_covar_samp_arguments {X: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_covar_samp_arguments_columns,Y: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_covar_samp_arguments_columns} - -export interface v_team_stage_results_aggregate_bool_exp_max {arguments: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_max_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_stage_results_bool_exp | null),predicate: float8_comparison_exp} - -export interface v_team_stage_results_aggregate_bool_exp_min {arguments: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_min_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_stage_results_bool_exp | null),predicate: float8_comparison_exp} - -export interface v_team_stage_results_aggregate_bool_exp_stddev_samp {arguments: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_stddev_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_stage_results_bool_exp | null),predicate: float8_comparison_exp} - -export interface v_team_stage_results_aggregate_bool_exp_sum {arguments: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_sum_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_stage_results_bool_exp | null),predicate: float8_comparison_exp} - -export interface v_team_stage_results_aggregate_bool_exp_var_samp {arguments: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_var_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_stage_results_bool_exp | null),predicate: float8_comparison_exp} - - -/** aggregate fields of "v_team_stage_results" */ -export interface v_team_stage_results_aggregate_fieldsGenqlSelection{ - avg?: v_team_stage_results_avg_fieldsGenqlSelection - count?: { __args: {columns?: (v_team_stage_results_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: v_team_stage_results_max_fieldsGenqlSelection - min?: v_team_stage_results_min_fieldsGenqlSelection - stddev?: v_team_stage_results_stddev_fieldsGenqlSelection - stddev_pop?: v_team_stage_results_stddev_pop_fieldsGenqlSelection - stddev_samp?: v_team_stage_results_stddev_samp_fieldsGenqlSelection - sum?: v_team_stage_results_sum_fieldsGenqlSelection - var_pop?: v_team_stage_results_var_pop_fieldsGenqlSelection - var_samp?: v_team_stage_results_var_samp_fieldsGenqlSelection - variance?: v_team_stage_results_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "v_team_stage_results" */ -export interface v_team_stage_results_aggregate_order_by {avg?: (v_team_stage_results_avg_order_by | null),count?: (order_by | null),max?: (v_team_stage_results_max_order_by | null),min?: (v_team_stage_results_min_order_by | null),stddev?: (v_team_stage_results_stddev_order_by | null),stddev_pop?: (v_team_stage_results_stddev_pop_order_by | null),stddev_samp?: (v_team_stage_results_stddev_samp_order_by | null),sum?: (v_team_stage_results_sum_order_by | null),var_pop?: (v_team_stage_results_var_pop_order_by | null),var_samp?: (v_team_stage_results_var_samp_order_by | null),variance?: (v_team_stage_results_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "v_team_stage_results" */ -export interface v_team_stage_results_arr_rel_insert_input {data: v_team_stage_results_insert_input[], -/** upsert condition */ -on_conflict?: (v_team_stage_results_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface v_team_stage_results_avg_fieldsGenqlSelection{ - group_number?: boolean | number - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number - matches_played?: boolean | number - matches_remaining?: boolean | number - placement?: boolean | number - rank?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - team_kdr?: boolean | number - total_deaths?: boolean | number - total_kills?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "v_team_stage_results" */ -export interface v_team_stage_results_avg_order_by {group_number?: (order_by | null),head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),placement?: (order_by | null),rank?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "v_team_stage_results". All fields are combined with a logical 'AND'. */ -export interface v_team_stage_results_bool_exp {_and?: (v_team_stage_results_bool_exp[] | null),_not?: (v_team_stage_results_bool_exp | null),_or?: (v_team_stage_results_bool_exp[] | null),group_number?: (Int_comparison_exp | null),head_to_head_match_wins?: (Int_comparison_exp | null),head_to_head_rounds_won?: (Int_comparison_exp | null),losses?: (Int_comparison_exp | null),maps_lost?: (Int_comparison_exp | null),maps_won?: (Int_comparison_exp | null),matches_played?: (Int_comparison_exp | null),matches_remaining?: (Int_comparison_exp | null),placement?: (Int_comparison_exp | null),rank?: (Int_comparison_exp | null),rounds_lost?: (Int_comparison_exp | null),rounds_won?: (Int_comparison_exp | null),stage?: (tournament_stages_bool_exp | null),team?: (tournament_teams_bool_exp | null),team_kdr?: (float8_comparison_exp | null),total_deaths?: (Int_comparison_exp | null),total_kills?: (Int_comparison_exp | null),tournament_stage_id?: (uuid_comparison_exp | null),tournament_team_id?: (uuid_comparison_exp | null),wins?: (Int_comparison_exp | null)} - - -/** input type for incrementing numeric columns in table "v_team_stage_results" */ -export interface v_team_stage_results_inc_input {group_number?: (Scalars['Int'] | null),head_to_head_match_wins?: (Scalars['Int'] | null),head_to_head_rounds_won?: (Scalars['Int'] | null),losses?: (Scalars['Int'] | null),maps_lost?: (Scalars['Int'] | null),maps_won?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),matches_remaining?: (Scalars['Int'] | null),placement?: (Scalars['Int'] | null),rank?: (Scalars['Int'] | null),rounds_lost?: (Scalars['Int'] | null),rounds_won?: (Scalars['Int'] | null),team_kdr?: (Scalars['float8'] | null),total_deaths?: (Scalars['Int'] | null),total_kills?: (Scalars['Int'] | null),wins?: (Scalars['Int'] | null)} - - -/** input type for inserting data into table "v_team_stage_results" */ -export interface v_team_stage_results_insert_input {group_number?: (Scalars['Int'] | null),head_to_head_match_wins?: (Scalars['Int'] | null),head_to_head_rounds_won?: (Scalars['Int'] | null),losses?: (Scalars['Int'] | null),maps_lost?: (Scalars['Int'] | null),maps_won?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),matches_remaining?: (Scalars['Int'] | null),placement?: (Scalars['Int'] | null),rank?: (Scalars['Int'] | null),rounds_lost?: (Scalars['Int'] | null),rounds_won?: (Scalars['Int'] | null),stage?: (tournament_stages_obj_rel_insert_input | null),team?: (tournament_teams_obj_rel_insert_input | null),team_kdr?: (Scalars['float8'] | null),total_deaths?: (Scalars['Int'] | null),total_kills?: (Scalars['Int'] | null),tournament_stage_id?: (Scalars['uuid'] | null),tournament_team_id?: (Scalars['uuid'] | null),wins?: (Scalars['Int'] | null)} - - -/** aggregate max on columns */ -export interface v_team_stage_results_max_fieldsGenqlSelection{ - group_number?: boolean | number - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number - matches_played?: boolean | number - matches_remaining?: boolean | number - placement?: boolean | number - rank?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - team_kdr?: boolean | number - total_deaths?: boolean | number - total_kills?: boolean | number - tournament_stage_id?: boolean | number - tournament_team_id?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "v_team_stage_results" */ -export interface v_team_stage_results_max_order_by {group_number?: (order_by | null),head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),placement?: (order_by | null),rank?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),tournament_stage_id?: (order_by | null),tournament_team_id?: (order_by | null),wins?: (order_by | null)} - - -/** aggregate min on columns */ -export interface v_team_stage_results_min_fieldsGenqlSelection{ - group_number?: boolean | number - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number - matches_played?: boolean | number - matches_remaining?: boolean | number - placement?: boolean | number - rank?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - team_kdr?: boolean | number - total_deaths?: boolean | number - total_kills?: boolean | number - tournament_stage_id?: boolean | number - tournament_team_id?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "v_team_stage_results" */ -export interface v_team_stage_results_min_order_by {group_number?: (order_by | null),head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),placement?: (order_by | null),rank?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),tournament_stage_id?: (order_by | null),tournament_team_id?: (order_by | null),wins?: (order_by | null)} - - -/** response of any mutation on the table "v_team_stage_results" */ -export interface v_team_stage_results_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: v_team_stage_resultsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** input type for inserting object relation for remote table "v_team_stage_results" */ -export interface v_team_stage_results_obj_rel_insert_input {data: v_team_stage_results_insert_input, -/** upsert condition */ -on_conflict?: (v_team_stage_results_on_conflict | null)} - - -/** on_conflict condition type for table "v_team_stage_results" */ -export interface v_team_stage_results_on_conflict {constraint: v_team_stage_results_constraint,update_columns?: v_team_stage_results_update_column[],where?: (v_team_stage_results_bool_exp | null)} - - -/** Ordering options when selecting data from "v_team_stage_results". */ -export interface v_team_stage_results_order_by {group_number?: (order_by | null),head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),placement?: (order_by | null),rank?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),stage?: (tournament_stages_order_by | null),team?: (tournament_teams_order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),tournament_stage_id?: (order_by | null),tournament_team_id?: (order_by | null),wins?: (order_by | null)} - - -/** primary key columns input for table: v_team_stage_results */ -export interface v_team_stage_results_pk_columns_input {tournament_stage_id: Scalars['uuid'],tournament_team_id: Scalars['uuid']} - - -/** input type for updating data in table "v_team_stage_results" */ -export interface v_team_stage_results_set_input {group_number?: (Scalars['Int'] | null),head_to_head_match_wins?: (Scalars['Int'] | null),head_to_head_rounds_won?: (Scalars['Int'] | null),losses?: (Scalars['Int'] | null),maps_lost?: (Scalars['Int'] | null),maps_won?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),matches_remaining?: (Scalars['Int'] | null),placement?: (Scalars['Int'] | null),rank?: (Scalars['Int'] | null),rounds_lost?: (Scalars['Int'] | null),rounds_won?: (Scalars['Int'] | null),team_kdr?: (Scalars['float8'] | null),total_deaths?: (Scalars['Int'] | null),total_kills?: (Scalars['Int'] | null),tournament_stage_id?: (Scalars['uuid'] | null),tournament_team_id?: (Scalars['uuid'] | null),wins?: (Scalars['Int'] | null)} - - -/** aggregate stddev on columns */ -export interface v_team_stage_results_stddev_fieldsGenqlSelection{ - group_number?: boolean | number - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number - matches_played?: boolean | number - matches_remaining?: boolean | number - placement?: boolean | number - rank?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - team_kdr?: boolean | number - total_deaths?: boolean | number - total_kills?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "v_team_stage_results" */ -export interface v_team_stage_results_stddev_order_by {group_number?: (order_by | null),head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),placement?: (order_by | null),rank?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface v_team_stage_results_stddev_pop_fieldsGenqlSelection{ - group_number?: boolean | number - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number - matches_played?: boolean | number - matches_remaining?: boolean | number - placement?: boolean | number - rank?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - team_kdr?: boolean | number - total_deaths?: boolean | number - total_kills?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "v_team_stage_results" */ -export interface v_team_stage_results_stddev_pop_order_by {group_number?: (order_by | null),head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),placement?: (order_by | null),rank?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface v_team_stage_results_stddev_samp_fieldsGenqlSelection{ - group_number?: boolean | number - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number - matches_played?: boolean | number - matches_remaining?: boolean | number - placement?: boolean | number - rank?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - team_kdr?: boolean | number - total_deaths?: boolean | number - total_kills?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "v_team_stage_results" */ -export interface v_team_stage_results_stddev_samp_order_by {group_number?: (order_by | null),head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),placement?: (order_by | null),rank?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} - - -/** Streaming cursor of the table "v_team_stage_results" */ -export interface v_team_stage_results_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: v_team_stage_results_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface v_team_stage_results_stream_cursor_value_input {group_number?: (Scalars['Int'] | null),head_to_head_match_wins?: (Scalars['Int'] | null),head_to_head_rounds_won?: (Scalars['Int'] | null),losses?: (Scalars['Int'] | null),maps_lost?: (Scalars['Int'] | null),maps_won?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),matches_remaining?: (Scalars['Int'] | null),placement?: (Scalars['Int'] | null),rank?: (Scalars['Int'] | null),rounds_lost?: (Scalars['Int'] | null),rounds_won?: (Scalars['Int'] | null),team_kdr?: (Scalars['float8'] | null),total_deaths?: (Scalars['Int'] | null),total_kills?: (Scalars['Int'] | null),tournament_stage_id?: (Scalars['uuid'] | null),tournament_team_id?: (Scalars['uuid'] | null),wins?: (Scalars['Int'] | null)} - - -/** aggregate sum on columns */ -export interface v_team_stage_results_sum_fieldsGenqlSelection{ - group_number?: boolean | number - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number - matches_played?: boolean | number - matches_remaining?: boolean | number - placement?: boolean | number - rank?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - team_kdr?: boolean | number - total_deaths?: boolean | number - total_kills?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "v_team_stage_results" */ -export interface v_team_stage_results_sum_order_by {group_number?: (order_by | null),head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),placement?: (order_by | null),rank?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} - -export interface v_team_stage_results_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (v_team_stage_results_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (v_team_stage_results_set_input | null), -/** filter the rows which have to be updated */ -where: v_team_stage_results_bool_exp} - - -/** aggregate var_pop on columns */ -export interface v_team_stage_results_var_pop_fieldsGenqlSelection{ - group_number?: boolean | number - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number - matches_played?: boolean | number - matches_remaining?: boolean | number - placement?: boolean | number - rank?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - team_kdr?: boolean | number - total_deaths?: boolean | number - total_kills?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "v_team_stage_results" */ -export interface v_team_stage_results_var_pop_order_by {group_number?: (order_by | null),head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),placement?: (order_by | null),rank?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface v_team_stage_results_var_samp_fieldsGenqlSelection{ - group_number?: boolean | number - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number - matches_played?: boolean | number - matches_remaining?: boolean | number - placement?: boolean | number - rank?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - team_kdr?: boolean | number - total_deaths?: boolean | number - total_kills?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "v_team_stage_results" */ -export interface v_team_stage_results_var_samp_order_by {group_number?: (order_by | null),head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),placement?: (order_by | null),rank?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface v_team_stage_results_variance_fieldsGenqlSelection{ - group_number?: boolean | number - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number - matches_played?: boolean | number - matches_remaining?: boolean | number - placement?: boolean | number - rank?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - team_kdr?: boolean | number - total_deaths?: boolean | number - total_kills?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "v_team_stage_results" */ -export interface v_team_stage_results_variance_order_by {group_number?: (order_by | null),head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),placement?: (order_by | null),rank?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} - - -/** columns and relationships of "v_team_tournament_results" */ -export interface v_team_tournament_resultsGenqlSelection{ - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number - matches_played?: boolean | number - matches_remaining?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - /** An object relationship */ - team?: tournament_teamsGenqlSelection - team_kdr?: boolean | number - total_deaths?: boolean | number - total_kills?: boolean | number - /** An object relationship */ - tournament?: tournamentsGenqlSelection - tournament_id?: boolean | number - tournament_team_id?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "v_team_tournament_results" */ -export interface v_team_tournament_results_aggregateGenqlSelection{ - aggregate?: v_team_tournament_results_aggregate_fieldsGenqlSelection - nodes?: v_team_tournament_resultsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface v_team_tournament_results_aggregate_bool_exp {avg?: (v_team_tournament_results_aggregate_bool_exp_avg | null),corr?: (v_team_tournament_results_aggregate_bool_exp_corr | null),count?: (v_team_tournament_results_aggregate_bool_exp_count | null),covar_samp?: (v_team_tournament_results_aggregate_bool_exp_covar_samp | null),max?: (v_team_tournament_results_aggregate_bool_exp_max | null),min?: (v_team_tournament_results_aggregate_bool_exp_min | null),stddev_samp?: (v_team_tournament_results_aggregate_bool_exp_stddev_samp | null),sum?: (v_team_tournament_results_aggregate_bool_exp_sum | null),var_samp?: (v_team_tournament_results_aggregate_bool_exp_var_samp | null)} - -export interface v_team_tournament_results_aggregate_bool_exp_avg {arguments: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_avg_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_tournament_results_bool_exp | null),predicate: float8_comparison_exp} - -export interface v_team_tournament_results_aggregate_bool_exp_corr {arguments: v_team_tournament_results_aggregate_bool_exp_corr_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_tournament_results_bool_exp | null),predicate: float8_comparison_exp} - -export interface v_team_tournament_results_aggregate_bool_exp_corr_arguments {X: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_corr_arguments_columns,Y: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_corr_arguments_columns} - -export interface v_team_tournament_results_aggregate_bool_exp_count {arguments?: (v_team_tournament_results_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (v_team_tournament_results_bool_exp | null),predicate: Int_comparison_exp} - -export interface v_team_tournament_results_aggregate_bool_exp_covar_samp {arguments: v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_tournament_results_bool_exp | null),predicate: float8_comparison_exp} - -export interface v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments {X: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments_columns,Y: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments_columns} - -export interface v_team_tournament_results_aggregate_bool_exp_max {arguments: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_max_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_tournament_results_bool_exp | null),predicate: float8_comparison_exp} - -export interface v_team_tournament_results_aggregate_bool_exp_min {arguments: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_min_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_tournament_results_bool_exp | null),predicate: float8_comparison_exp} - -export interface v_team_tournament_results_aggregate_bool_exp_stddev_samp {arguments: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_stddev_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_tournament_results_bool_exp | null),predicate: float8_comparison_exp} - -export interface v_team_tournament_results_aggregate_bool_exp_sum {arguments: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_sum_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_tournament_results_bool_exp | null),predicate: float8_comparison_exp} - -export interface v_team_tournament_results_aggregate_bool_exp_var_samp {arguments: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_var_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_tournament_results_bool_exp | null),predicate: float8_comparison_exp} - - -/** aggregate fields of "v_team_tournament_results" */ -export interface v_team_tournament_results_aggregate_fieldsGenqlSelection{ - avg?: v_team_tournament_results_avg_fieldsGenqlSelection - count?: { __args: {columns?: (v_team_tournament_results_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: v_team_tournament_results_max_fieldsGenqlSelection - min?: v_team_tournament_results_min_fieldsGenqlSelection - stddev?: v_team_tournament_results_stddev_fieldsGenqlSelection - stddev_pop?: v_team_tournament_results_stddev_pop_fieldsGenqlSelection - stddev_samp?: v_team_tournament_results_stddev_samp_fieldsGenqlSelection - sum?: v_team_tournament_results_sum_fieldsGenqlSelection - var_pop?: v_team_tournament_results_var_pop_fieldsGenqlSelection - var_samp?: v_team_tournament_results_var_samp_fieldsGenqlSelection - variance?: v_team_tournament_results_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "v_team_tournament_results" */ -export interface v_team_tournament_results_aggregate_order_by {avg?: (v_team_tournament_results_avg_order_by | null),count?: (order_by | null),max?: (v_team_tournament_results_max_order_by | null),min?: (v_team_tournament_results_min_order_by | null),stddev?: (v_team_tournament_results_stddev_order_by | null),stddev_pop?: (v_team_tournament_results_stddev_pop_order_by | null),stddev_samp?: (v_team_tournament_results_stddev_samp_order_by | null),sum?: (v_team_tournament_results_sum_order_by | null),var_pop?: (v_team_tournament_results_var_pop_order_by | null),var_samp?: (v_team_tournament_results_var_samp_order_by | null),variance?: (v_team_tournament_results_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "v_team_tournament_results" */ -export interface v_team_tournament_results_arr_rel_insert_input {data: v_team_tournament_results_insert_input[]} - - -/** aggregate avg on columns */ -export interface v_team_tournament_results_avg_fieldsGenqlSelection{ - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number - matches_played?: boolean | number - matches_remaining?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - team_kdr?: boolean | number - total_deaths?: boolean | number - total_kills?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "v_team_tournament_results" */ -export interface v_team_tournament_results_avg_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "v_team_tournament_results". All fields are combined with a logical 'AND'. */ -export interface v_team_tournament_results_bool_exp {_and?: (v_team_tournament_results_bool_exp[] | null),_not?: (v_team_tournament_results_bool_exp | null),_or?: (v_team_tournament_results_bool_exp[] | null),head_to_head_match_wins?: (Int_comparison_exp | null),head_to_head_rounds_won?: (Int_comparison_exp | null),losses?: (Int_comparison_exp | null),maps_lost?: (Int_comparison_exp | null),maps_won?: (Int_comparison_exp | null),matches_played?: (Int_comparison_exp | null),matches_remaining?: (Int_comparison_exp | null),rounds_lost?: (Int_comparison_exp | null),rounds_won?: (Int_comparison_exp | null),team?: (tournament_teams_bool_exp | null),team_kdr?: (float8_comparison_exp | null),total_deaths?: (Int_comparison_exp | null),total_kills?: (Int_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null),tournament_team_id?: (uuid_comparison_exp | null),wins?: (Int_comparison_exp | null)} - - -/** input type for inserting data into table "v_team_tournament_results" */ -export interface v_team_tournament_results_insert_input {head_to_head_match_wins?: (Scalars['Int'] | null),head_to_head_rounds_won?: (Scalars['Int'] | null),losses?: (Scalars['Int'] | null),maps_lost?: (Scalars['Int'] | null),maps_won?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),matches_remaining?: (Scalars['Int'] | null),rounds_lost?: (Scalars['Int'] | null),rounds_won?: (Scalars['Int'] | null),team?: (tournament_teams_obj_rel_insert_input | null),team_kdr?: (Scalars['float8'] | null),total_deaths?: (Scalars['Int'] | null),total_kills?: (Scalars['Int'] | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null),tournament_team_id?: (Scalars['uuid'] | null),wins?: (Scalars['Int'] | null)} - - -/** aggregate max on columns */ -export interface v_team_tournament_results_max_fieldsGenqlSelection{ - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number - matches_played?: boolean | number - matches_remaining?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - team_kdr?: boolean | number - total_deaths?: boolean | number - total_kills?: boolean | number - tournament_id?: boolean | number - tournament_team_id?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "v_team_tournament_results" */ -export interface v_team_tournament_results_max_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),tournament_id?: (order_by | null),tournament_team_id?: (order_by | null),wins?: (order_by | null)} - - -/** aggregate min on columns */ -export interface v_team_tournament_results_min_fieldsGenqlSelection{ - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number - matches_played?: boolean | number - matches_remaining?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - team_kdr?: boolean | number - total_deaths?: boolean | number - total_kills?: boolean | number - tournament_id?: boolean | number - tournament_team_id?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "v_team_tournament_results" */ -export interface v_team_tournament_results_min_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),tournament_id?: (order_by | null),tournament_team_id?: (order_by | null),wins?: (order_by | null)} - - -/** Ordering options when selecting data from "v_team_tournament_results". */ -export interface v_team_tournament_results_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team?: (tournament_teams_order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null),tournament_team_id?: (order_by | null),wins?: (order_by | null)} - - -/** aggregate stddev on columns */ -export interface v_team_tournament_results_stddev_fieldsGenqlSelection{ - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number - matches_played?: boolean | number - matches_remaining?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - team_kdr?: boolean | number - total_deaths?: boolean | number - total_kills?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "v_team_tournament_results" */ -export interface v_team_tournament_results_stddev_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface v_team_tournament_results_stddev_pop_fieldsGenqlSelection{ - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number - matches_played?: boolean | number - matches_remaining?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - team_kdr?: boolean | number - total_deaths?: boolean | number - total_kills?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "v_team_tournament_results" */ -export interface v_team_tournament_results_stddev_pop_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface v_team_tournament_results_stddev_samp_fieldsGenqlSelection{ - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number - matches_played?: boolean | number - matches_remaining?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - team_kdr?: boolean | number - total_deaths?: boolean | number - total_kills?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "v_team_tournament_results" */ -export interface v_team_tournament_results_stddev_samp_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} - - -/** Streaming cursor of the table "v_team_tournament_results" */ -export interface v_team_tournament_results_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: v_team_tournament_results_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface v_team_tournament_results_stream_cursor_value_input {head_to_head_match_wins?: (Scalars['Int'] | null),head_to_head_rounds_won?: (Scalars['Int'] | null),losses?: (Scalars['Int'] | null),maps_lost?: (Scalars['Int'] | null),maps_won?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),matches_remaining?: (Scalars['Int'] | null),rounds_lost?: (Scalars['Int'] | null),rounds_won?: (Scalars['Int'] | null),team_kdr?: (Scalars['float8'] | null),total_deaths?: (Scalars['Int'] | null),total_kills?: (Scalars['Int'] | null),tournament_id?: (Scalars['uuid'] | null),tournament_team_id?: (Scalars['uuid'] | null),wins?: (Scalars['Int'] | null)} - - -/** aggregate sum on columns */ -export interface v_team_tournament_results_sum_fieldsGenqlSelection{ - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number - matches_played?: boolean | number - matches_remaining?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - team_kdr?: boolean | number - total_deaths?: boolean | number - total_kills?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "v_team_tournament_results" */ -export interface v_team_tournament_results_sum_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} - - -/** aggregate var_pop on columns */ -export interface v_team_tournament_results_var_pop_fieldsGenqlSelection{ - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number - matches_played?: boolean | number - matches_remaining?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - team_kdr?: boolean | number - total_deaths?: boolean | number - total_kills?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "v_team_tournament_results" */ -export interface v_team_tournament_results_var_pop_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface v_team_tournament_results_var_samp_fieldsGenqlSelection{ - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number - matches_played?: boolean | number - matches_remaining?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - team_kdr?: boolean | number - total_deaths?: boolean | number - total_kills?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "v_team_tournament_results" */ -export interface v_team_tournament_results_var_samp_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface v_team_tournament_results_variance_fieldsGenqlSelection{ - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number - matches_played?: boolean | number - matches_remaining?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - team_kdr?: boolean | number - total_deaths?: boolean | number - total_kills?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "v_team_tournament_results" */ -export interface v_team_tournament_results_variance_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} - - -/** columns and relationships of "v_tournament_player_stats" */ -export interface v_tournament_player_statsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - player_steam_id?: boolean | number - /** An object relationship */ - tournament?: tournamentsGenqlSelection - tournament_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "v_tournament_player_stats" */ -export interface v_tournament_player_stats_aggregateGenqlSelection{ - aggregate?: v_tournament_player_stats_aggregate_fieldsGenqlSelection - nodes?: v_tournament_player_statsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - -export interface v_tournament_player_stats_aggregate_bool_exp {avg?: (v_tournament_player_stats_aggregate_bool_exp_avg | null),corr?: (v_tournament_player_stats_aggregate_bool_exp_corr | null),count?: (v_tournament_player_stats_aggregate_bool_exp_count | null),covar_samp?: (v_tournament_player_stats_aggregate_bool_exp_covar_samp | null),max?: (v_tournament_player_stats_aggregate_bool_exp_max | null),min?: (v_tournament_player_stats_aggregate_bool_exp_min | null),stddev_samp?: (v_tournament_player_stats_aggregate_bool_exp_stddev_samp | null),sum?: (v_tournament_player_stats_aggregate_bool_exp_sum | null),var_samp?: (v_tournament_player_stats_aggregate_bool_exp_var_samp | null)} - -export interface v_tournament_player_stats_aggregate_bool_exp_avg {arguments: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_avg_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_tournament_player_stats_bool_exp | null),predicate: float8_comparison_exp} - -export interface v_tournament_player_stats_aggregate_bool_exp_corr {arguments: v_tournament_player_stats_aggregate_bool_exp_corr_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (v_tournament_player_stats_bool_exp | null),predicate: float8_comparison_exp} - -export interface v_tournament_player_stats_aggregate_bool_exp_corr_arguments {X: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_corr_arguments_columns,Y: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_corr_arguments_columns} - -export interface v_tournament_player_stats_aggregate_bool_exp_count {arguments?: (v_tournament_player_stats_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (v_tournament_player_stats_bool_exp | null),predicate: Int_comparison_exp} - -export interface v_tournament_player_stats_aggregate_bool_exp_covar_samp {arguments: v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (v_tournament_player_stats_bool_exp | null),predicate: float8_comparison_exp} - -export interface v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments {X: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments_columns,Y: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments_columns} - -export interface v_tournament_player_stats_aggregate_bool_exp_max {arguments: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_max_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_tournament_player_stats_bool_exp | null),predicate: float8_comparison_exp} - -export interface v_tournament_player_stats_aggregate_bool_exp_min {arguments: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_min_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_tournament_player_stats_bool_exp | null),predicate: float8_comparison_exp} - -export interface v_tournament_player_stats_aggregate_bool_exp_stddev_samp {arguments: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_tournament_player_stats_bool_exp | null),predicate: float8_comparison_exp} - -export interface v_tournament_player_stats_aggregate_bool_exp_sum {arguments: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_sum_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_tournament_player_stats_bool_exp | null),predicate: float8_comparison_exp} - -export interface v_tournament_player_stats_aggregate_bool_exp_var_samp {arguments: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_var_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_tournament_player_stats_bool_exp | null),predicate: float8_comparison_exp} - - -/** aggregate fields of "v_tournament_player_stats" */ -export interface v_tournament_player_stats_aggregate_fieldsGenqlSelection{ - avg?: v_tournament_player_stats_avg_fieldsGenqlSelection - count?: { __args: {columns?: (v_tournament_player_stats_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: v_tournament_player_stats_max_fieldsGenqlSelection - min?: v_tournament_player_stats_min_fieldsGenqlSelection - stddev?: v_tournament_player_stats_stddev_fieldsGenqlSelection - stddev_pop?: v_tournament_player_stats_stddev_pop_fieldsGenqlSelection - stddev_samp?: v_tournament_player_stats_stddev_samp_fieldsGenqlSelection - sum?: v_tournament_player_stats_sum_fieldsGenqlSelection - var_pop?: v_tournament_player_stats_var_pop_fieldsGenqlSelection - var_samp?: v_tournament_player_stats_var_samp_fieldsGenqlSelection - variance?: v_tournament_player_stats_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by aggregate values of table "v_tournament_player_stats" */ -export interface v_tournament_player_stats_aggregate_order_by {avg?: (v_tournament_player_stats_avg_order_by | null),count?: (order_by | null),max?: (v_tournament_player_stats_max_order_by | null),min?: (v_tournament_player_stats_min_order_by | null),stddev?: (v_tournament_player_stats_stddev_order_by | null),stddev_pop?: (v_tournament_player_stats_stddev_pop_order_by | null),stddev_samp?: (v_tournament_player_stats_stddev_samp_order_by | null),sum?: (v_tournament_player_stats_sum_order_by | null),var_pop?: (v_tournament_player_stats_var_pop_order_by | null),var_samp?: (v_tournament_player_stats_var_samp_order_by | null),variance?: (v_tournament_player_stats_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "v_tournament_player_stats" */ -export interface v_tournament_player_stats_arr_rel_insert_input {data: v_tournament_player_stats_insert_input[]} - - -/** aggregate avg on columns */ -export interface v_tournament_player_stats_avg_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by avg() on columns of table "v_tournament_player_stats" */ -export interface v_tournament_player_stats_avg_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "v_tournament_player_stats". All fields are combined with a logical 'AND'. */ -export interface v_tournament_player_stats_bool_exp {_and?: (v_tournament_player_stats_bool_exp[] | null),_not?: (v_tournament_player_stats_bool_exp | null),_or?: (v_tournament_player_stats_bool_exp[] | null),assists?: (Int_comparison_exp | null),deaths?: (Int_comparison_exp | null),headshot_percentage?: (float8_comparison_exp | null),headshots?: (Int_comparison_exp | null),kdr?: (float8_comparison_exp | null),kills?: (Int_comparison_exp | null),matches_played?: (Int_comparison_exp | null),player?: (players_bool_exp | null),player_steam_id?: (bigint_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null)} - - -/** input type for inserting data into table "v_tournament_player_stats" */ -export interface v_tournament_player_stats_insert_input {assists?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),headshot_percentage?: (Scalars['float8'] | null),headshots?: (Scalars['Int'] | null),kdr?: (Scalars['float8'] | null),kills?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),player?: (players_obj_rel_insert_input | null),player_steam_id?: (Scalars['bigint'] | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null)} - - -/** aggregate max on columns */ -export interface v_tournament_player_stats_max_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - player_steam_id?: boolean | number - tournament_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by max() on columns of table "v_tournament_player_stats" */ -export interface v_tournament_player_stats_max_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null),tournament_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface v_tournament_player_stats_min_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - player_steam_id?: boolean | number - tournament_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by min() on columns of table "v_tournament_player_stats" */ -export interface v_tournament_player_stats_min_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null),tournament_id?: (order_by | null)} - - -/** Ordering options when selecting data from "v_tournament_player_stats". */ -export interface v_tournament_player_stats_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player?: (players_order_by | null),player_steam_id?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null)} - - -/** aggregate stddev on columns */ -export interface v_tournament_player_stats_stddev_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev() on columns of table "v_tournament_player_stats" */ -export interface v_tournament_player_stats_stddev_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** aggregate stddev_pop on columns */ -export interface v_tournament_player_stats_stddev_pop_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_pop() on columns of table "v_tournament_player_stats" */ -export interface v_tournament_player_stats_stddev_pop_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** aggregate stddev_samp on columns */ -export interface v_tournament_player_stats_stddev_samp_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by stddev_samp() on columns of table "v_tournament_player_stats" */ -export interface v_tournament_player_stats_stddev_samp_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** Streaming cursor of the table "v_tournament_player_stats" */ -export interface v_tournament_player_stats_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: v_tournament_player_stats_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface v_tournament_player_stats_stream_cursor_value_input {assists?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),headshot_percentage?: (Scalars['float8'] | null),headshots?: (Scalars['Int'] | null),kdr?: (Scalars['float8'] | null),kills?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),player_steam_id?: (Scalars['bigint'] | null),tournament_id?: (Scalars['uuid'] | null)} - - -/** aggregate sum on columns */ -export interface v_tournament_player_stats_sum_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by sum() on columns of table "v_tournament_player_stats" */ -export interface v_tournament_player_stats_sum_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** aggregate var_pop on columns */ -export interface v_tournament_player_stats_var_pop_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_pop() on columns of table "v_tournament_player_stats" */ -export interface v_tournament_player_stats_var_pop_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface v_tournament_player_stats_var_samp_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by var_samp() on columns of table "v_tournament_player_stats" */ -export interface v_tournament_player_stats_var_samp_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} - - -/** aggregate variance on columns */ -export interface v_tournament_player_stats_variance_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** order by variance() on columns of table "v_tournament_player_stats" */ -export interface v_tournament_player_stats_variance_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} - -export type QueryGenqlSelection = query_rootGenqlSelection -export type MutationGenqlSelection = mutation_rootGenqlSelection -export type SubscriptionGenqlSelection = subscription_rootGenqlSelection - - - const ActiveConnection_possibleTypes: string[] = ['ActiveConnection'] - export const isActiveConnection = (obj?: { __typename?: any } | null): obj is ActiveConnection => { - if (!obj?.__typename) throw new Error('__typename is missing in "isActiveConnection"') - return ActiveConnection_possibleTypes.includes(obj.__typename) - } - - - - const ActiveQuery_possibleTypes: string[] = ['ActiveQuery'] - export const isActiveQuery = (obj?: { __typename?: any } | null): obj is ActiveQuery => { - if (!obj?.__typename) throw new Error('__typename is missing in "isActiveQuery"') - return ActiveQuery_possibleTypes.includes(obj.__typename) - } - - - - const 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"') - return ApiKeyResponse_possibleTypes.includes(obj.__typename) - } - - - - const Award_possibleTypes: string[] = ['Award'] - export const isAward = (obj?: { __typename?: any } | null): obj is Award => { - if (!obj?.__typename) throw new Error('__typename is missing in "isAward"') - return Award_possibleTypes.includes(obj.__typename) - } - - - - const AwardRecipient_possibleTypes: string[] = ['AwardRecipient'] - export const isAwardRecipient = (obj?: { __typename?: any } | null): obj is AwardRecipient => { - if (!obj?.__typename) throw new Error('__typename is missing in "isAwardRecipient"') - return AwardRecipient_possibleTypes.includes(obj.__typename) - } - - - - const ConnectionByState_possibleTypes: string[] = ['ConnectionByState'] - export const isConnectionByState = (obj?: { __typename?: any } | null): obj is ConnectionByState => { - if (!obj?.__typename) throw new Error('__typename is missing in "isConnectionByState"') - return ConnectionByState_possibleTypes.includes(obj.__typename) - } - - - - const ConnectionStats_possibleTypes: string[] = ['ConnectionStats'] - export const isConnectionStats = (obj?: { __typename?: any } | null): obj is ConnectionStats => { - if (!obj?.__typename) throw new Error('__typename is missing in "isConnectionStats"') - return ConnectionStats_possibleTypes.includes(obj.__typename) - } - - - - const CpuStat_possibleTypes: string[] = ['CpuStat'] - export const isCpuStat = (obj?: { __typename?: any } | null): obj is CpuStat => { - if (!obj?.__typename) throw new Error('__typename is missing in "isCpuStat"') - return CpuStat_possibleTypes.includes(obj.__typename) - } - - - - const CreateClipRenderOutput_possibleTypes: string[] = ['CreateClipRenderOutput'] - export const isCreateClipRenderOutput = (obj?: { __typename?: any } | null): obj is CreateClipRenderOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isCreateClipRenderOutput"') - return CreateClipRenderOutput_possibleTypes.includes(obj.__typename) - } - - - - const CreateDraftGameOutput_possibleTypes: string[] = ['CreateDraftGameOutput'] - export const isCreateDraftGameOutput = (obj?: { __typename?: any } | null): obj is CreateDraftGameOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isCreateDraftGameOutput"') - return CreateDraftGameOutput_possibleTypes.includes(obj.__typename) - } - - - - const CreateScheduledMatchOutput_possibleTypes: string[] = ['CreateScheduledMatchOutput'] - export const isCreateScheduledMatchOutput = (obj?: { __typename?: any } | null): obj is CreateScheduledMatchOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isCreateScheduledMatchOutput"') - return CreateScheduledMatchOutput_possibleTypes.includes(obj.__typename) - } - - - - const DatabaseStats_possibleTypes: string[] = ['DatabaseStats'] - export const isDatabaseStats = (obj?: { __typename?: any } | null): obj is DatabaseStats => { - if (!obj?.__typename) throw new Error('__typename is missing in "isDatabaseStats"') - return DatabaseStats_possibleTypes.includes(obj.__typename) - } - - - - const DbStats_possibleTypes: string[] = ['DbStats'] - export const isDbStats = (obj?: { __typename?: any } | null): obj is DbStats => { - if (!obj?.__typename) throw new Error('__typename is missing in "isDbStats"') - return DbStats_possibleTypes.includes(obj.__typename) - } - - - - const DedicatedSeverInfo_possibleTypes: string[] = ['DedicatedSeverInfo'] - export const isDedicatedSeverInfo = (obj?: { __typename?: any } | null): obj is DedicatedSeverInfo => { - if (!obj?.__typename) throw new Error('__typename is missing in "isDedicatedSeverInfo"') - return DedicatedSeverInfo_possibleTypes.includes(obj.__typename) - } - - - - const DeleteOrphansOutput_possibleTypes: string[] = ['DeleteOrphansOutput'] - export const isDeleteOrphansOutput = (obj?: { __typename?: any } | null): obj is DeleteOrphansOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isDeleteOrphansOutput"') - return DeleteOrphansOutput_possibleTypes.includes(obj.__typename) - } - - - - const DiskStat_possibleTypes: string[] = ['DiskStat'] - export const isDiskStat = (obj?: { __typename?: any } | null): obj is DiskStat => { - if (!obj?.__typename) throw new Error('__typename is missing in "isDiskStat"') - return DiskStat_possibleTypes.includes(obj.__typename) - } - - - - const DiskStats_possibleTypes: string[] = ['DiskStats'] - export const isDiskStats = (obj?: { __typename?: any } | null): obj is DiskStats => { - if (!obj?.__typename) throw new Error('__typename is missing in "isDiskStats"') - return DiskStats_possibleTypes.includes(obj.__typename) - } - - - - const DraftGamePreviewOutput_possibleTypes: string[] = ['DraftGamePreviewOutput'] - export const isDraftGamePreviewOutput = (obj?: { __typename?: any } | null): obj is DraftGamePreviewOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isDraftGamePreviewOutput"') - return DraftGamePreviewOutput_possibleTypes.includes(obj.__typename) - } - - - - const DraftGamePreviewPlayer_possibleTypes: string[] = ['DraftGamePreviewPlayer'] - export const isDraftGamePreviewPlayer = (obj?: { __typename?: any } | null): obj is DraftGamePreviewPlayer => { - if (!obj?.__typename) throw new Error('__typename is missing in "isDraftGamePreviewPlayer"') - return DraftGamePreviewPlayer_possibleTypes.includes(obj.__typename) - } - - - - const FaceitTestOutput_possibleTypes: string[] = ['FaceitTestOutput'] - export const isFaceitTestOutput = (obj?: { __typename?: any } | null): obj is FaceitTestOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isFaceitTestOutput"') - return FaceitTestOutput_possibleTypes.includes(obj.__typename) - } - - - - const FaceitTestResult_possibleTypes: string[] = ['FaceitTestResult'] - export const isFaceitTestResult = (obj?: { __typename?: any } | null): obj is FaceitTestResult => { - if (!obj?.__typename) throw new Error('__typename is missing in "isFaceitTestResult"') - return FaceitTestResult_possibleTypes.includes(obj.__typename) - } - - - - const FileContentResponse_possibleTypes: string[] = ['FileContentResponse'] - export const isFileContentResponse = (obj?: { __typename?: any } | null): obj is FileContentResponse => { - if (!obj?.__typename) throw new Error('__typename is missing in "isFileContentResponse"') - return FileContentResponse_possibleTypes.includes(obj.__typename) - } - - - - const FileItem_possibleTypes: string[] = ['FileItem'] - export const isFileItem = (obj?: { __typename?: any } | null): obj is FileItem => { - if (!obj?.__typename) throw new Error('__typename is missing in "isFileItem"') - return FileItem_possibleTypes.includes(obj.__typename) - } - - - - const FileListResponse_possibleTypes: string[] = ['FileListResponse'] - export const isFileListResponse = (obj?: { __typename?: any } | null): obj is FileListResponse => { - if (!obj?.__typename) throw new Error('__typename is missing in "isFileListResponse"') - return FileListResponse_possibleTypes.includes(obj.__typename) - } - - - - const GetTestUploadResponse_possibleTypes: string[] = ['GetTestUploadResponse'] - export const isGetTestUploadResponse = (obj?: { __typename?: any } | null): obj is GetTestUploadResponse => { - if (!obj?.__typename) throw new Error('__typename is missing in "isGetTestUploadResponse"') - return GetTestUploadResponse_possibleTypes.includes(obj.__typename) - } - - - - const GpuDeviceStat_possibleTypes: string[] = ['GpuDeviceStat'] - export const isGpuDeviceStat = (obj?: { __typename?: any } | null): obj is GpuDeviceStat => { - if (!obj?.__typename) throw new Error('__typename is missing in "isGpuDeviceStat"') - return GpuDeviceStat_possibleTypes.includes(obj.__typename) - } - - - - const GpuStats_possibleTypes: string[] = ['GpuStats'] - export const isGpuStats = (obj?: { __typename?: any } | null): obj is GpuStats => { - if (!obj?.__typename) throw new Error('__typename is missing in "isGpuStats"') - return GpuStats_possibleTypes.includes(obj.__typename) - } - - - - const HighlightPresetAvailability_possibleTypes: string[] = ['HighlightPresetAvailability'] - export const isHighlightPresetAvailability = (obj?: { __typename?: any } | null): obj is HighlightPresetAvailability => { - if (!obj?.__typename) throw new Error('__typename is missing in "isHighlightPresetAvailability"') - return HighlightPresetAvailability_possibleTypes.includes(obj.__typename) - } - - - - const HypertableInfo_possibleTypes: string[] = ['HypertableInfo'] - export const isHypertableInfo = (obj?: { __typename?: any } | null): obj is HypertableInfo => { - if (!obj?.__typename) throw new Error('__typename is missing in "isHypertableInfo"') - return HypertableInfo_possibleTypes.includes(obj.__typename) - } - - - - const IndexIOStat_possibleTypes: string[] = ['IndexIOStat'] - export const isIndexIOStat = (obj?: { __typename?: any } | null): obj is IndexIOStat => { - if (!obj?.__typename) throw new Error('__typename is missing in "isIndexIOStat"') - return IndexIOStat_possibleTypes.includes(obj.__typename) - } - - - - const IndexStat_possibleTypes: string[] = ['IndexStat'] - export const isIndexStat = (obj?: { __typename?: any } | null): obj is IndexStat => { - if (!obj?.__typename) throw new Error('__typename is missing in "isIndexStat"') - return IndexStat_possibleTypes.includes(obj.__typename) - } - - - - const KickResult_possibleTypes: string[] = ['KickResult'] - export const isKickResult = (obj?: { __typename?: any } | null): obj is KickResult => { - if (!obj?.__typename) throw new Error('__typename is missing in "isKickResult"') - return KickResult_possibleTypes.includes(obj.__typename) - } - - - - const LiveSpecGsi_possibleTypes: string[] = ['LiveSpecGsi'] - export const isLiveSpecGsi = (obj?: { __typename?: any } | null): obj is LiveSpecGsi => { - if (!obj?.__typename) throw new Error('__typename is missing in "isLiveSpecGsi"') - return LiveSpecGsi_possibleTypes.includes(obj.__typename) - } - - - - const LiveSpecSlot_possibleTypes: string[] = ['LiveSpecSlot'] - export const isLiveSpecSlot = (obj?: { __typename?: any } | null): obj is LiveSpecSlot => { - if (!obj?.__typename) throw new Error('__typename is missing in "isLiveSpecSlot"') - return LiveSpecSlot_possibleTypes.includes(obj.__typename) - } - - - - const LiveStreamSpecState_possibleTypes: string[] = ['LiveStreamSpecState'] - export const isLiveStreamSpecState = (obj?: { __typename?: any } | null): obj is LiveStreamSpecState => { - if (!obj?.__typename) throw new Error('__typename is missing in "isLiveStreamSpecState"') - return LiveStreamSpecState_possibleTypes.includes(obj.__typename) - } - - - - const LockInfo_possibleTypes: string[] = ['LockInfo'] - export const isLockInfo = (obj?: { __typename?: any } | null): obj is LockInfo => { - if (!obj?.__typename) throw new Error('__typename is missing in "isLockInfo"') - return LockInfo_possibleTypes.includes(obj.__typename) - } - - - - const MapCalloutSyncOutput_possibleTypes: string[] = ['MapCalloutSyncOutput'] - export const isMapCalloutSyncOutput = (obj?: { __typename?: any } | null): obj is MapCalloutSyncOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isMapCalloutSyncOutput"') - return MapCalloutSyncOutput_possibleTypes.includes(obj.__typename) - } - - - - const MeResponse_possibleTypes: string[] = ['MeResponse'] - export const isMeResponse = (obj?: { __typename?: any } | null): obj is MeResponse => { - if (!obj?.__typename) throw new Error('__typename is missing in "isMeResponse"') - return MeResponse_possibleTypes.includes(obj.__typename) - } - - - - const MemoryStat_possibleTypes: string[] = ['MemoryStat'] - export const isMemoryStat = (obj?: { __typename?: any } | null): obj is MemoryStat => { - if (!obj?.__typename) throw new Error('__typename is missing in "isMemoryStat"') - return MemoryStat_possibleTypes.includes(obj.__typename) - } - - - - const NetworkStats_possibleTypes: string[] = ['NetworkStats'] - export const isNetworkStats = (obj?: { __typename?: any } | null): obj is NetworkStats => { - if (!obj?.__typename) throw new Error('__typename is missing in "isNetworkStats"') - return NetworkStats_possibleTypes.includes(obj.__typename) - } - - - - const NewsPost_possibleTypes: string[] = ['NewsPost'] - export const isNewsPost = (obj?: { __typename?: any } | null): obj is NewsPost => { - if (!obj?.__typename) throw new Error('__typename is missing in "isNewsPost"') - return NewsPost_possibleTypes.includes(obj.__typename) - } - - - - const NicStat_possibleTypes: string[] = ['NicStat'] - export const isNicStat = (obj?: { __typename?: any } | null): obj is NicStat => { - if (!obj?.__typename) throw new Error('__typename is missing in "isNicStat"') - return NicStat_possibleTypes.includes(obj.__typename) - } - - - - const NodeStats_possibleTypes: string[] = ['NodeStats'] - export const isNodeStats = (obj?: { __typename?: any } | null): obj is NodeStats => { - if (!obj?.__typename) throw new Error('__typename is missing in "isNodeStats"') - return NodeStats_possibleTypes.includes(obj.__typename) - } - - - - const OrphanObject_possibleTypes: string[] = ['OrphanObject'] - export const isOrphanObject = (obj?: { __typename?: any } | null): obj is OrphanObject => { - if (!obj?.__typename) throw new Error('__typename is missing in "isOrphanObject"') - return OrphanObject_possibleTypes.includes(obj.__typename) - } - - - - const OrphanScanResultOutput_possibleTypes: string[] = ['OrphanScanResultOutput'] - export const isOrphanScanResultOutput = (obj?: { __typename?: any } | null): obj is OrphanScanResultOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isOrphanScanResultOutput"') - return OrphanScanResultOutput_possibleTypes.includes(obj.__typename) - } - - - - const PendingMatchImportActionOutput_possibleTypes: string[] = ['PendingMatchImportActionOutput'] - export const isPendingMatchImportActionOutput = (obj?: { __typename?: any } | null): obj is PendingMatchImportActionOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isPendingMatchImportActionOutput"') - return PendingMatchImportActionOutput_possibleTypes.includes(obj.__typename) - } - - - - const 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"') - return PodStats_possibleTypes.includes(obj.__typename) - } - - - - 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"') - return PreviewTournamentMatchResetOutput_possibleTypes.includes(obj.__typename) - } - - - - const QueryDetail_possibleTypes: string[] = ['QueryDetail'] - export const isQueryDetail = (obj?: { __typename?: any } | null): obj is QueryDetail => { - if (!obj?.__typename) throw new Error('__typename is missing in "isQueryDetail"') - return QueryDetail_possibleTypes.includes(obj.__typename) - } - - - - const QueryStat_possibleTypes: string[] = ['QueryStat'] - export const isQueryStat = (obj?: { __typename?: any } | null): obj is QueryStat => { - if (!obj?.__typename) throw new Error('__typename is missing in "isQueryStat"') - return QueryStat_possibleTypes.includes(obj.__typename) - } - - - - const RecomputeEloStartedOutput_possibleTypes: string[] = ['RecomputeEloStartedOutput'] - export const isRecomputeEloStartedOutput = (obj?: { __typename?: any } | null): obj is RecomputeEloStartedOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isRecomputeEloStartedOutput"') - return RecomputeEloStartedOutput_possibleTypes.includes(obj.__typename) - } - - - - const RecomputeEloStatusOutput_possibleTypes: string[] = ['RecomputeEloStatusOutput'] - export const isRecomputeEloStatusOutput = (obj?: { __typename?: any } | null): obj is RecomputeEloStatusOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isRecomputeEloStatusOutput"') - return RecomputeEloStatusOutput_possibleTypes.includes(obj.__typename) - } - - - - const 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"') - return ReindexStartedOutput_possibleTypes.includes(obj.__typename) - } - - - - const ReindexStatusOutput_possibleTypes: string[] = ['ReindexStatusOutput'] - export const isReindexStatusOutput = (obj?: { __typename?: any } | null): obj is ReindexStatusOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isReindexStatusOutput"') - return ReindexStatusOutput_possibleTypes.includes(obj.__typename) - } - - - - const ReparseAllStartedOutput_possibleTypes: string[] = ['ReparseAllStartedOutput'] - export const isReparseAllStartedOutput = (obj?: { __typename?: any } | null): obj is ReparseAllStartedOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isReparseAllStartedOutput"') - return ReparseAllStartedOutput_possibleTypes.includes(obj.__typename) - } - - - - const ReparseAllStatusOutput_possibleTypes: string[] = ['ReparseAllStatusOutput'] - export const isReparseAllStatusOutput = (obj?: { __typename?: any } | null): obj is ReparseAllStatusOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isReparseAllStatusOutput"') - return ReparseAllStatusOutput_possibleTypes.includes(obj.__typename) - } - - - - const SanctionResult_possibleTypes: string[] = ['SanctionResult'] - export const isSanctionResult = (obj?: { __typename?: any } | null): obj is SanctionResult => { - if (!obj?.__typename) throw new Error('__typename is missing in "isSanctionResult"') - return SanctionResult_possibleTypes.includes(obj.__typename) - } - - - - const ScanStartedOutput_possibleTypes: string[] = ['ScanStartedOutput'] - export const isScanStartedOutput = (obj?: { __typename?: any } | null): obj is ScanStartedOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isScanStartedOutput"') - return ScanStartedOutput_possibleTypes.includes(obj.__typename) - } - - - - const SeasonBackfillStatusOutput_possibleTypes: string[] = ['SeasonBackfillStatusOutput'] - export const isSeasonBackfillStatusOutput = (obj?: { __typename?: any } | null): obj is SeasonBackfillStatusOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isSeasonBackfillStatusOutput"') - return SeasonBackfillStatusOutput_possibleTypes.includes(obj.__typename) - } - - - - const ServerPlayer_possibleTypes: string[] = ['ServerPlayer'] - export const isServerPlayer = (obj?: { __typename?: any } | null): obj is ServerPlayer => { - if (!obj?.__typename) throw new Error('__typename is missing in "isServerPlayer"') - return ServerPlayer_possibleTypes.includes(obj.__typename) - } - - - - const SetupGameServeOutput_possibleTypes: string[] = ['SetupGameServeOutput'] - export const isSetupGameServeOutput = (obj?: { __typename?: any } | null): obj is SetupGameServeOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isSetupGameServeOutput"') - return SetupGameServeOutput_possibleTypes.includes(obj.__typename) - } - - - - const SteamMatchHistoryLinkOutput_possibleTypes: string[] = ['SteamMatchHistoryLinkOutput'] - export const isSteamMatchHistoryLinkOutput = (obj?: { __typename?: any } | null): obj is SteamMatchHistoryLinkOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isSteamMatchHistoryLinkOutput"') - return SteamMatchHistoryLinkOutput_possibleTypes.includes(obj.__typename) - } - - - - const SteamMatchHistoryPollOutput_possibleTypes: string[] = ['SteamMatchHistoryPollOutput'] - export const isSteamMatchHistoryPollOutput = (obj?: { __typename?: any } | null): obj is SteamMatchHistoryPollOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isSteamMatchHistoryPollOutput"') - return SteamMatchHistoryPollOutput_possibleTypes.includes(obj.__typename) - } - - - - const SteamPresenceAdminStatusOutput_possibleTypes: string[] = ['SteamPresenceAdminStatusOutput'] - export const isSteamPresenceAdminStatusOutput = (obj?: { __typename?: any } | null): obj is SteamPresenceAdminStatusOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isSteamPresenceAdminStatusOutput"') - return SteamPresenceAdminStatusOutput_possibleTypes.includes(obj.__typename) - } - - - - const SteamPresenceBot_possibleTypes: string[] = ['SteamPresenceBot'] - export const isSteamPresenceBot = (obj?: { __typename?: any } | null): obj is SteamPresenceBot => { - if (!obj?.__typename) throw new Error('__typename is missing in "isSteamPresenceBot"') - return SteamPresenceBot_possibleTypes.includes(obj.__typename) - } - - - - const SteamPresenceBotAssignment_possibleTypes: string[] = ['SteamPresenceBotAssignment'] - export const isSteamPresenceBotAssignment = (obj?: { __typename?: any } | null): obj is SteamPresenceBotAssignment => { - if (!obj?.__typename) throw new Error('__typename is missing in "isSteamPresenceBotAssignment"') - return SteamPresenceBotAssignment_possibleTypes.includes(obj.__typename) - } - - - - const SteamPresencePool_possibleTypes: string[] = ['SteamPresencePool'] - export const isSteamPresencePool = (obj?: { __typename?: any } | null): obj is SteamPresencePool => { - if (!obj?.__typename) throw new Error('__typename is missing in "isSteamPresencePool"') - return SteamPresencePool_possibleTypes.includes(obj.__typename) - } - - - - const StorageStats_possibleTypes: string[] = ['StorageStats'] - export const isStorageStats = (obj?: { __typename?: any } | null): obj is StorageStats => { - if (!obj?.__typename) throw new Error('__typename is missing in "isStorageStats"') - return StorageStats_possibleTypes.includes(obj.__typename) - } - - - - const StorageSummary_possibleTypes: string[] = ['StorageSummary'] - export const isStorageSummary = (obj?: { __typename?: any } | null): obj is StorageSummary => { - if (!obj?.__typename) throw new Error('__typename is missing in "isStorageSummary"') - return StorageSummary_possibleTypes.includes(obj.__typename) - } - - - - const SuccessOutput_possibleTypes: string[] = ['SuccessOutput'] - export const isSuccessOutput = (obj?: { __typename?: any } | null): obj is SuccessOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isSuccessOutput"') - return SuccessOutput_possibleTypes.includes(obj.__typename) - } - - - - const 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"') - return TableIOStat_possibleTypes.includes(obj.__typename) - } - - - - const TableSizeInfo_possibleTypes: string[] = ['TableSizeInfo'] - export const isTableSizeInfo = (obj?: { __typename?: any } | null): obj is TableSizeInfo => { - if (!obj?.__typename) throw new Error('__typename is missing in "isTableSizeInfo"') - return TableSizeInfo_possibleTypes.includes(obj.__typename) - } - - - - const TableStat_possibleTypes: string[] = ['TableStat'] - export const isTableStat = (obj?: { __typename?: any } | null): obj is TableStat => { - if (!obj?.__typename) throw new Error('__typename is missing in "isTableStat"') - return TableStat_possibleTypes.includes(obj.__typename) - } - - - - const TeamCalendarOutput_possibleTypes: string[] = ['TeamCalendarOutput'] - export const isTeamCalendarOutput = (obj?: { __typename?: any } | null): obj is TeamCalendarOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isTeamCalendarOutput"') - return TeamCalendarOutput_possibleTypes.includes(obj.__typename) - } - - - - const TelemetryActivityPoint_possibleTypes: string[] = ['TelemetryActivityPoint'] - export const isTelemetryActivityPoint = (obj?: { __typename?: any } | null): obj is TelemetryActivityPoint => { - if (!obj?.__typename) throw new Error('__typename is missing in "isTelemetryActivityPoint"') - return TelemetryActivityPoint_possibleTypes.includes(obj.__typename) - } - - - - const TelemetryCountryCount_possibleTypes: string[] = ['TelemetryCountryCount'] - export const isTelemetryCountryCount = (obj?: { __typename?: any } | null): obj is TelemetryCountryCount => { - if (!obj?.__typename) throw new Error('__typename is missing in "isTelemetryCountryCount"') - return TelemetryCountryCount_possibleTypes.includes(obj.__typename) - } - - - - const TelemetryFeatureAdoption_possibleTypes: string[] = ['TelemetryFeatureAdoption'] - export const isTelemetryFeatureAdoption = (obj?: { __typename?: any } | null): obj is TelemetryFeatureAdoption => { - if (!obj?.__typename) throw new Error('__typename is missing in "isTelemetryFeatureAdoption"') - return TelemetryFeatureAdoption_possibleTypes.includes(obj.__typename) - } - - - - const TelemetryFleetTotals_possibleTypes: string[] = ['TelemetryFleetTotals'] - export const isTelemetryFleetTotals = (obj?: { __typename?: any } | null): obj is TelemetryFleetTotals => { - if (!obj?.__typename) throw new Error('__typename is missing in "isTelemetryFleetTotals"') - return TelemetryFleetTotals_possibleTypes.includes(obj.__typename) - } - - - - const TelemetryGrowthPoint_possibleTypes: string[] = ['TelemetryGrowthPoint'] - export const isTelemetryGrowthPoint = (obj?: { __typename?: any } | null): obj is TelemetryGrowthPoint => { - if (!obj?.__typename) throw new Error('__typename is missing in "isTelemetryGrowthPoint"') - return TelemetryGrowthPoint_possibleTypes.includes(obj.__typename) - } - - - - const TelemetryInstallCounts_possibleTypes: string[] = ['TelemetryInstallCounts'] - export const isTelemetryInstallCounts = (obj?: { __typename?: any } | null): obj is TelemetryInstallCounts => { - if (!obj?.__typename) throw new Error('__typename is missing in "isTelemetryInstallCounts"') - return TelemetryInstallCounts_possibleTypes.includes(obj.__typename) - } - - - - const TelemetryMatchSourceCount_possibleTypes: string[] = ['TelemetryMatchSourceCount'] - export const isTelemetryMatchSourceCount = (obj?: { __typename?: any } | null): obj is TelemetryMatchSourceCount => { - if (!obj?.__typename) throw new Error('__typename is missing in "isTelemetryMatchSourceCount"') - return TelemetryMatchSourceCount_possibleTypes.includes(obj.__typename) - } - - - - const TelemetryMatchTypeCount_possibleTypes: string[] = ['TelemetryMatchTypeCount'] - export const isTelemetryMatchTypeCount = (obj?: { __typename?: any } | null): obj is TelemetryMatchTypeCount => { - if (!obj?.__typename) throw new Error('__typename is missing in "isTelemetryMatchTypeCount"') - return TelemetryMatchTypeCount_possibleTypes.includes(obj.__typename) - } - - - - const TelemetryRuntimeCount_possibleTypes: string[] = ['TelemetryRuntimeCount'] - export const isTelemetryRuntimeCount = (obj?: { __typename?: any } | null): obj is TelemetryRuntimeCount => { - if (!obj?.__typename) throw new Error('__typename is missing in "isTelemetryRuntimeCount"') - return TelemetryRuntimeCount_possibleTypes.includes(obj.__typename) - } - - - - const TelemetryStats_possibleTypes: string[] = ['TelemetryStats'] - export const isTelemetryStats = (obj?: { __typename?: any } | null): obj is TelemetryStats => { - if (!obj?.__typename) throw new Error('__typename is missing in "isTelemetryStats"') - return TelemetryStats_possibleTypes.includes(obj.__typename) - } - - - - const TelemetryUtilitySourceCount_possibleTypes: string[] = ['TelemetryUtilitySourceCount'] - export const isTelemetryUtilitySourceCount = (obj?: { __typename?: any } | null): obj is TelemetryUtilitySourceCount => { - if (!obj?.__typename) throw new Error('__typename is missing in "isTelemetryUtilitySourceCount"') - return TelemetryUtilitySourceCount_possibleTypes.includes(obj.__typename) - } - - - - const TelemetryUtilityTotals_possibleTypes: string[] = ['TelemetryUtilityTotals'] - export const isTelemetryUtilityTotals = (obj?: { __typename?: any } | null): obj is TelemetryUtilityTotals => { - if (!obj?.__typename) throw new Error('__typename is missing in "isTelemetryUtilityTotals"') - return TelemetryUtilityTotals_possibleTypes.includes(obj.__typename) - } - - - - const TelemetryUtilityTypeCount_possibleTypes: string[] = ['TelemetryUtilityTypeCount'] - export const isTelemetryUtilityTypeCount = (obj?: { __typename?: any } | null): obj is TelemetryUtilityTypeCount => { - if (!obj?.__typename) throw new Error('__typename is missing in "isTelemetryUtilityTypeCount"') - return TelemetryUtilityTypeCount_possibleTypes.includes(obj.__typename) - } - - - - const TelemetryVersionCount_possibleTypes: string[] = ['TelemetryVersionCount'] - export const isTelemetryVersionCount = (obj?: { __typename?: any } | null): obj is TelemetryVersionCount => { - if (!obj?.__typename) throw new Error('__typename is missing in "isTelemetryVersionCount"') - return TelemetryVersionCount_possibleTypes.includes(obj.__typename) - } - - - - const TestUploadResponse_possibleTypes: string[] = ['TestUploadResponse'] - export const isTestUploadResponse = (obj?: { __typename?: any } | null): obj is TestUploadResponse => { - if (!obj?.__typename) throw new Error('__typename is missing in "isTestUploadResponse"') - return TestUploadResponse_possibleTypes.includes(obj.__typename) - } - - - - const TimescaleJob_possibleTypes: string[] = ['TimescaleJob'] - export const isTimescaleJob = (obj?: { __typename?: any } | null): obj is TimescaleJob => { - if (!obj?.__typename) throw new Error('__typename is missing in "isTimescaleJob"') - return TimescaleJob_possibleTypes.includes(obj.__typename) - } - - - - const TimescaleStats_possibleTypes: string[] = ['TimescaleStats'] - export const isTimescaleStats = (obj?: { __typename?: any } | null): obj is TimescaleStats => { - if (!obj?.__typename) throw new Error('__typename is missing in "isTimescaleStats"') - return TimescaleStats_possibleTypes.includes(obj.__typename) - } - - - - const TournamentAward_possibleTypes: string[] = ['TournamentAward'] - export const isTournamentAward = (obj?: { __typename?: any } | null): obj is TournamentAward => { - if (!obj?.__typename) throw new Error('__typename is missing in "isTournamentAward"') - return TournamentAward_possibleTypes.includes(obj.__typename) - } - - - - const TournamentDraftOutput_possibleTypes: string[] = ['TournamentDraftOutput'] - export const isTournamentDraftOutput = (obj?: { __typename?: any } | null): obj is TournamentDraftOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isTournamentDraftOutput"') - return TournamentDraftOutput_possibleTypes.includes(obj.__typename) - } - - - - const TournamentInviteCodeOutput_possibleTypes: string[] = ['TournamentInviteCodeOutput'] - export const isTournamentInviteCodeOutput = (obj?: { __typename?: any } | null): obj is TournamentInviteCodeOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isTournamentInviteCodeOutput"') - return TournamentInviteCodeOutput_possibleTypes.includes(obj.__typename) - } - - - - const TournamentMatchResetImpact_possibleTypes: string[] = ['TournamentMatchResetImpact'] - export const isTournamentMatchResetImpact = (obj?: { __typename?: any } | null): obj is TournamentMatchResetImpact => { - if (!obj?.__typename) throw new Error('__typename is missing in "isTournamentMatchResetImpact"') - return TournamentMatchResetImpact_possibleTypes.includes(obj.__typename) - } - - - - const UtilityBlockingOutput_possibleTypes: string[] = ['UtilityBlockingOutput'] - export const isUtilityBlockingOutput = (obj?: { __typename?: any } | null): obj is UtilityBlockingOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityBlockingOutput"') - return UtilityBlockingOutput_possibleTypes.includes(obj.__typename) - } - - - - const UtilityBlockingResult_possibleTypes: string[] = ['UtilityBlockingResult'] - export const isUtilityBlockingResult = (obj?: { __typename?: any } | null): obj is UtilityBlockingResult => { - if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityBlockingResult"') - return UtilityBlockingResult_possibleTypes.includes(obj.__typename) - } - - - - const UtilityCalibrationOutput_possibleTypes: string[] = ['UtilityCalibrationOutput'] - export const isUtilityCalibrationOutput = (obj?: { __typename?: any } | null): obj is UtilityCalibrationOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityCalibrationOutput"') - return UtilityCalibrationOutput_possibleTypes.includes(obj.__typename) - } - - - - const UtilityDriftScanOutput_possibleTypes: string[] = ['UtilityDriftScanOutput'] - export const isUtilityDriftScanOutput = (obj?: { __typename?: any } | null): obj is UtilityDriftScanOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityDriftScanOutput"') - return UtilityDriftScanOutput_possibleTypes.includes(obj.__typename) - } - - - - const UtilityDrillLoadOutput_possibleTypes: string[] = ['UtilityDrillLoadOutput'] - export const isUtilityDrillLoadOutput = (obj?: { __typename?: any } | null): obj is UtilityDrillLoadOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityDrillLoadOutput"') - return UtilityDrillLoadOutput_possibleTypes.includes(obj.__typename) - } - - - - const UtilityImportError_possibleTypes: string[] = ['UtilityImportError'] - export const isUtilityImportError = (obj?: { __typename?: any } | null): obj is UtilityImportError => { - if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityImportError"') - return UtilityImportError_possibleTypes.includes(obj.__typename) - } - - - - const UtilityImportOutput_possibleTypes: string[] = ['UtilityImportOutput'] - export const isUtilityImportOutput = (obj?: { __typename?: any } | null): obj is UtilityImportOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityImportOutput"') - return UtilityImportOutput_possibleTypes.includes(obj.__typename) - } - - - - const UtilityLaunchSeedBackfillOutput_possibleTypes: string[] = ['UtilityLaunchSeedBackfillOutput'] - export const isUtilityLaunchSeedBackfillOutput = (obj?: { __typename?: any } | null): obj is UtilityLaunchSeedBackfillOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityLaunchSeedBackfillOutput"') - return UtilityLaunchSeedBackfillOutput_possibleTypes.includes(obj.__typename) - } - - - - const UtilityLineupOutput_possibleTypes: string[] = ['UtilityLineupOutput'] - export const isUtilityLineupOutput = (obj?: { __typename?: any } | null): obj is UtilityLineupOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityLineupOutput"') - return UtilityLineupOutput_possibleTypes.includes(obj.__typename) - } - - - - const UtilityLoadOutput_possibleTypes: string[] = ['UtilityLoadOutput'] - export const isUtilityLoadOutput = (obj?: { __typename?: any } | null): obj is UtilityLoadOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityLoadOutput"') - return UtilityLoadOutput_possibleTypes.includes(obj.__typename) - } - - - - const UtilityMissPatternOutput_possibleTypes: string[] = ['UtilityMissPatternOutput'] - export const isUtilityMissPatternOutput = (obj?: { __typename?: any } | null): obj is UtilityMissPatternOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityMissPatternOutput"') - return UtilityMissPatternOutput_possibleTypes.includes(obj.__typename) - } - - - - const UtilityOneWayOutput_possibleTypes: string[] = ['UtilityOneWayOutput'] - export const isUtilityOneWayOutput = (obj?: { __typename?: any } | null): obj is UtilityOneWayOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityOneWayOutput"') - return UtilityOneWayOutput_possibleTypes.includes(obj.__typename) - } - - - - const UtilityOneWayResult_possibleTypes: string[] = ['UtilityOneWayResult'] - export const isUtilityOneWayResult = (obj?: { __typename?: any } | null): obj is UtilityOneWayResult => { - if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityOneWayResult"') - return UtilityOneWayResult_possibleTypes.includes(obj.__typename) - } - - - - const UtilityPlaybookCoverageOutput_possibleTypes: string[] = ['UtilityPlaybookCoverageOutput'] - export const isUtilityPlaybookCoverageOutput = (obj?: { __typename?: any } | null): obj is UtilityPlaybookCoverageOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityPlaybookCoverageOutput"') - return UtilityPlaybookCoverageOutput_possibleTypes.includes(obj.__typename) - } - - - - const UtilityPlaybookCoverageResult_possibleTypes: string[] = ['UtilityPlaybookCoverageResult'] - export const isUtilityPlaybookCoverageResult = (obj?: { __typename?: any } | null): obj is UtilityPlaybookCoverageResult => { - if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityPlaybookCoverageResult"') - return UtilityPlaybookCoverageResult_possibleTypes.includes(obj.__typename) - } - - - - const UtilityPlaybookOutput_possibleTypes: string[] = ['UtilityPlaybookOutput'] - export const isUtilityPlaybookOutput = (obj?: { __typename?: any } | null): obj is UtilityPlaybookOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityPlaybookOutput"') - return UtilityPlaybookOutput_possibleTypes.includes(obj.__typename) - } - - - - const UtilityPracticeMapChangeOutput_possibleTypes: string[] = ['UtilityPracticeMapChangeOutput'] - export const isUtilityPracticeMapChangeOutput = (obj?: { __typename?: any } | null): obj is UtilityPracticeMapChangeOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityPracticeMapChangeOutput"') - return UtilityPracticeMapChangeOutput_possibleTypes.includes(obj.__typename) - } - - - - const UtilityPracticePlanEntry_possibleTypes: string[] = ['UtilityPracticePlanEntry'] - export const isUtilityPracticePlanEntry = (obj?: { __typename?: any } | null): obj is UtilityPracticePlanEntry => { - if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityPracticePlanEntry"') - return UtilityPracticePlanEntry_possibleTypes.includes(obj.__typename) - } - - - - const UtilityPracticePlanOutput_possibleTypes: string[] = ['UtilityPracticePlanOutput'] - export const isUtilityPracticePlanOutput = (obj?: { __typename?: any } | null): obj is UtilityPracticePlanOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityPracticePlanOutput"') - return UtilityPracticePlanOutput_possibleTypes.includes(obj.__typename) - } - - - - const UtilityPracticeServer_possibleTypes: string[] = ['UtilityPracticeServer'] - export const isUtilityPracticeServer = (obj?: { __typename?: any } | null): obj is UtilityPracticeServer => { - if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityPracticeServer"') - return UtilityPracticeServer_possibleTypes.includes(obj.__typename) - } - - - - const UtilityPracticeServersOutput_possibleTypes: string[] = ['UtilityPracticeServersOutput'] - export const isUtilityPracticeServersOutput = (obj?: { __typename?: any } | null): obj is UtilityPracticeServersOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityPracticeServersOutput"') - return UtilityPracticeServersOutput_possibleTypes.includes(obj.__typename) - } - - - - const UtilityPracticeSessionOutput_possibleTypes: string[] = ['UtilityPracticeSessionOutput'] - export const isUtilityPracticeSessionOutput = (obj?: { __typename?: any } | null): obj is UtilityPracticeSessionOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityPracticeSessionOutput"') - return UtilityPracticeSessionOutput_possibleTypes.includes(obj.__typename) - } - - - - const UtilityPracticeWhereOutput_possibleTypes: string[] = ['UtilityPracticeWhereOutput'] - export const isUtilityPracticeWhereOutput = (obj?: { __typename?: any } | null): obj is UtilityPracticeWhereOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityPracticeWhereOutput"') - return UtilityPracticeWhereOutput_possibleTypes.includes(obj.__typename) - } - - - - const UtilityPurgeOutput_possibleTypes: string[] = ['UtilityPurgeOutput'] - export const isUtilityPurgeOutput = (obj?: { __typename?: any } | null): obj is UtilityPurgeOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityPurgeOutput"') - return UtilityPurgeOutput_possibleTypes.includes(obj.__typename) - } - - - - const UtilityRemineOutput_possibleTypes: string[] = ['UtilityRemineOutput'] - export const isUtilityRemineOutput = (obj?: { __typename?: any } | null): obj is UtilityRemineOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityRemineOutput"') - return UtilityRemineOutput_possibleTypes.includes(obj.__typename) - } - - - - const UtilityRenderClearOutput_possibleTypes: string[] = ['UtilityRenderClearOutput'] - export const isUtilityRenderClearOutput = (obj?: { __typename?: any } | null): obj is UtilityRenderClearOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityRenderClearOutput"') - return UtilityRenderClearOutput_possibleTypes.includes(obj.__typename) - } - - - - const UtilityRenderQueueOutput_possibleTypes: string[] = ['UtilityRenderQueueOutput'] - export const isUtilityRenderQueueOutput = (obj?: { __typename?: any } | null): obj is UtilityRenderQueueOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityRenderQueueOutput"') - return UtilityRenderQueueOutput_possibleTypes.includes(obj.__typename) - } - - - - const UtilitySightlineOutput_possibleTypes: string[] = ['UtilitySightlineOutput'] - export const isUtilitySightlineOutput = (obj?: { __typename?: any } | null): obj is UtilitySightlineOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isUtilitySightlineOutput"') - return UtilitySightlineOutput_possibleTypes.includes(obj.__typename) - } - - - - const UtilitySightlineResult_possibleTypes: string[] = ['UtilitySightlineResult'] - export const isUtilitySightlineResult = (obj?: { __typename?: any } | null): obj is UtilitySightlineResult => { - if (!obj?.__typename) throw new Error('__typename is missing in "isUtilitySightlineResult"') - return UtilitySightlineResult_possibleTypes.includes(obj.__typename) - } - - - - const UtilitySolveOutput_possibleTypes: string[] = ['UtilitySolveOutput'] - export const isUtilitySolveOutput = (obj?: { __typename?: any } | null): obj is UtilitySolveOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isUtilitySolveOutput"') - return UtilitySolveOutput_possibleTypes.includes(obj.__typename) - } - - - - const UtilityTeamUtilityEntry_possibleTypes: string[] = ['UtilityTeamUtilityEntry'] - export const isUtilityTeamUtilityEntry = (obj?: { __typename?: any } | null): obj is UtilityTeamUtilityEntry => { - if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityTeamUtilityEntry"') - return UtilityTeamUtilityEntry_possibleTypes.includes(obj.__typename) - } - - - - const UtilityTeamUtilityOutput_possibleTypes: string[] = ['UtilityTeamUtilityOutput'] - export const isUtilityTeamUtilityOutput = (obj?: { __typename?: any } | null): obj is UtilityTeamUtilityOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityTeamUtilityOutput"') - return UtilityTeamUtilityOutput_possibleTypes.includes(obj.__typename) - } - - - - const UtilityUtilityReportOutput_possibleTypes: string[] = ['UtilityUtilityReportOutput'] - export const isUtilityUtilityReportOutput = (obj?: { __typename?: any } | null): obj is UtilityUtilityReportOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityUtilityReportOutput"') - return UtilityUtilityReportOutput_possibleTypes.includes(obj.__typename) - } - - - - const UtilityUtilityTypeReport_possibleTypes: string[] = ['UtilityUtilityTypeReport'] - export const isUtilityUtilityTypeReport = (obj?: { __typename?: any } | null): obj is UtilityUtilityTypeReport => { - if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityUtilityTypeReport"') - return UtilityUtilityTypeReport_possibleTypes.includes(obj.__typename) - } - - - - const WatchDemoOutput_possibleTypes: string[] = ['WatchDemoOutput'] - export const isWatchDemoOutput = (obj?: { __typename?: any } | null): obj is WatchDemoOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isWatchDemoOutput"') - return WatchDemoOutput_possibleTypes.includes(obj.__typename) - } - - - - const WebPushPlatformCount_possibleTypes: string[] = ['WebPushPlatformCount'] - export const isWebPushPlatformCount = (obj?: { __typename?: any } | null): obj is WebPushPlatformCount => { - if (!obj?.__typename) throw new Error('__typename is missing in "isWebPushPlatformCount"') - return WebPushPlatformCount_possibleTypes.includes(obj.__typename) - } - - - - const WebPushStatusOutput_possibleTypes: string[] = ['WebPushStatusOutput'] - export const isWebPushStatusOutput = (obj?: { __typename?: any } | null): obj is WebPushStatusOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isWebPushStatusOutput"') - return WebPushStatusOutput_possibleTypes.includes(obj.__typename) - } - - - - const _map_pool_possibleTypes: string[] = ['_map_pool'] - export const is_map_pool = (obj?: { __typename?: any } | null): obj is _map_pool => { - if (!obj?.__typename) throw new Error('__typename is missing in "is_map_pool"') - return _map_pool_possibleTypes.includes(obj.__typename) - } - - - - const _map_pool_aggregate_possibleTypes: string[] = ['_map_pool_aggregate'] - export const is_map_pool_aggregate = (obj?: { __typename?: any } | null): obj is _map_pool_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "is_map_pool_aggregate"') - return _map_pool_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const _map_pool_aggregate_fields_possibleTypes: string[] = ['_map_pool_aggregate_fields'] - export const is_map_pool_aggregate_fields = (obj?: { __typename?: any } | null): obj is _map_pool_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "is_map_pool_aggregate_fields"') - return _map_pool_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const _map_pool_max_fields_possibleTypes: string[] = ['_map_pool_max_fields'] - export const is_map_pool_max_fields = (obj?: { __typename?: any } | null): obj is _map_pool_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "is_map_pool_max_fields"') - return _map_pool_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const _map_pool_min_fields_possibleTypes: string[] = ['_map_pool_min_fields'] - export const is_map_pool_min_fields = (obj?: { __typename?: any } | null): obj is _map_pool_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "is_map_pool_min_fields"') - return _map_pool_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const _map_pool_mutation_response_possibleTypes: string[] = ['_map_pool_mutation_response'] - export const is_map_pool_mutation_response = (obj?: { __typename?: any } | null): obj is _map_pool_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "is_map_pool_mutation_response"') - return _map_pool_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const abandoned_matches_possibleTypes: string[] = ['abandoned_matches'] - export const isabandoned_matches = (obj?: { __typename?: any } | null): obj is abandoned_matches => { - if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches"') - return abandoned_matches_possibleTypes.includes(obj.__typename) - } - - - - const abandoned_matches_aggregate_possibleTypes: string[] = ['abandoned_matches_aggregate'] - export const isabandoned_matches_aggregate = (obj?: { __typename?: any } | null): obj is abandoned_matches_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_aggregate"') - return abandoned_matches_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const abandoned_matches_aggregate_fields_possibleTypes: string[] = ['abandoned_matches_aggregate_fields'] - export const isabandoned_matches_aggregate_fields = (obj?: { __typename?: any } | null): obj is abandoned_matches_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_aggregate_fields"') - return abandoned_matches_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const abandoned_matches_avg_fields_possibleTypes: string[] = ['abandoned_matches_avg_fields'] - export const isabandoned_matches_avg_fields = (obj?: { __typename?: any } | null): obj is abandoned_matches_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_avg_fields"') - return abandoned_matches_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const abandoned_matches_max_fields_possibleTypes: string[] = ['abandoned_matches_max_fields'] - export const isabandoned_matches_max_fields = (obj?: { __typename?: any } | null): obj is abandoned_matches_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_max_fields"') - return abandoned_matches_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const abandoned_matches_min_fields_possibleTypes: string[] = ['abandoned_matches_min_fields'] - export const isabandoned_matches_min_fields = (obj?: { __typename?: any } | null): obj is abandoned_matches_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_min_fields"') - return abandoned_matches_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const abandoned_matches_mutation_response_possibleTypes: string[] = ['abandoned_matches_mutation_response'] - export const isabandoned_matches_mutation_response = (obj?: { __typename?: any } | null): obj is abandoned_matches_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_mutation_response"') - return abandoned_matches_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const abandoned_matches_stddev_fields_possibleTypes: string[] = ['abandoned_matches_stddev_fields'] - export const isabandoned_matches_stddev_fields = (obj?: { __typename?: any } | null): obj is abandoned_matches_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_stddev_fields"') - return abandoned_matches_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const abandoned_matches_stddev_pop_fields_possibleTypes: string[] = ['abandoned_matches_stddev_pop_fields'] - export const isabandoned_matches_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is abandoned_matches_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_stddev_pop_fields"') - return abandoned_matches_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const abandoned_matches_stddev_samp_fields_possibleTypes: string[] = ['abandoned_matches_stddev_samp_fields'] - export const isabandoned_matches_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is abandoned_matches_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_stddev_samp_fields"') - return abandoned_matches_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const abandoned_matches_sum_fields_possibleTypes: string[] = ['abandoned_matches_sum_fields'] - export const isabandoned_matches_sum_fields = (obj?: { __typename?: any } | null): obj is abandoned_matches_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_sum_fields"') - return abandoned_matches_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const abandoned_matches_var_pop_fields_possibleTypes: string[] = ['abandoned_matches_var_pop_fields'] - export const isabandoned_matches_var_pop_fields = (obj?: { __typename?: any } | null): obj is abandoned_matches_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_var_pop_fields"') - return abandoned_matches_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const abandoned_matches_var_samp_fields_possibleTypes: string[] = ['abandoned_matches_var_samp_fields'] - export const isabandoned_matches_var_samp_fields = (obj?: { __typename?: any } | null): obj is abandoned_matches_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_var_samp_fields"') - return abandoned_matches_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const abandoned_matches_variance_fields_possibleTypes: string[] = ['abandoned_matches_variance_fields'] - export const isabandoned_matches_variance_fields = (obj?: { __typename?: any } | null): obj is abandoned_matches_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_variance_fields"') - return abandoned_matches_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const api_keys_possibleTypes: string[] = ['api_keys'] - export const isapi_keys = (obj?: { __typename?: any } | null): obj is api_keys => { - if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys"') - return api_keys_possibleTypes.includes(obj.__typename) - } - - - - const api_keys_aggregate_possibleTypes: string[] = ['api_keys_aggregate'] - export const isapi_keys_aggregate = (obj?: { __typename?: any } | null): obj is api_keys_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_aggregate"') - return api_keys_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const api_keys_aggregate_fields_possibleTypes: string[] = ['api_keys_aggregate_fields'] - export const isapi_keys_aggregate_fields = (obj?: { __typename?: any } | null): obj is api_keys_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_aggregate_fields"') - return api_keys_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const api_keys_avg_fields_possibleTypes: string[] = ['api_keys_avg_fields'] - export const isapi_keys_avg_fields = (obj?: { __typename?: any } | null): obj is api_keys_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_avg_fields"') - return api_keys_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const api_keys_max_fields_possibleTypes: string[] = ['api_keys_max_fields'] - export const isapi_keys_max_fields = (obj?: { __typename?: any } | null): obj is api_keys_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_max_fields"') - return api_keys_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const api_keys_min_fields_possibleTypes: string[] = ['api_keys_min_fields'] - export const isapi_keys_min_fields = (obj?: { __typename?: any } | null): obj is api_keys_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_min_fields"') - return api_keys_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const api_keys_mutation_response_possibleTypes: string[] = ['api_keys_mutation_response'] - export const isapi_keys_mutation_response = (obj?: { __typename?: any } | null): obj is api_keys_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_mutation_response"') - return api_keys_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const api_keys_stddev_fields_possibleTypes: string[] = ['api_keys_stddev_fields'] - export const isapi_keys_stddev_fields = (obj?: { __typename?: any } | null): obj is api_keys_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_stddev_fields"') - return api_keys_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const api_keys_stddev_pop_fields_possibleTypes: string[] = ['api_keys_stddev_pop_fields'] - export const isapi_keys_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is api_keys_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_stddev_pop_fields"') - return api_keys_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const api_keys_stddev_samp_fields_possibleTypes: string[] = ['api_keys_stddev_samp_fields'] - export const isapi_keys_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is api_keys_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_stddev_samp_fields"') - return api_keys_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const api_keys_sum_fields_possibleTypes: string[] = ['api_keys_sum_fields'] - export const isapi_keys_sum_fields = (obj?: { __typename?: any } | null): obj is api_keys_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_sum_fields"') - return api_keys_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const api_keys_var_pop_fields_possibleTypes: string[] = ['api_keys_var_pop_fields'] - export const isapi_keys_var_pop_fields = (obj?: { __typename?: any } | null): obj is api_keys_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_var_pop_fields"') - return api_keys_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const api_keys_var_samp_fields_possibleTypes: string[] = ['api_keys_var_samp_fields'] - export const isapi_keys_var_samp_fields = (obj?: { __typename?: any } | null): obj is api_keys_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_var_samp_fields"') - return api_keys_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const api_keys_variance_fields_possibleTypes: string[] = ['api_keys_variance_fields'] - export const isapi_keys_variance_fields = (obj?: { __typename?: any } | null): obj is api_keys_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_variance_fields"') - return api_keys_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const award_recipients_possibleTypes: string[] = ['award_recipients'] - export const isaward_recipients = (obj?: { __typename?: any } | null): obj is award_recipients => { - if (!obj?.__typename) throw new Error('__typename is missing in "isaward_recipients"') - return award_recipients_possibleTypes.includes(obj.__typename) - } - - - - const award_recipients_aggregate_possibleTypes: string[] = ['award_recipients_aggregate'] - export const isaward_recipients_aggregate = (obj?: { __typename?: any } | null): obj is award_recipients_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isaward_recipients_aggregate"') - return award_recipients_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const award_recipients_aggregate_fields_possibleTypes: string[] = ['award_recipients_aggregate_fields'] - export const isaward_recipients_aggregate_fields = (obj?: { __typename?: any } | null): obj is award_recipients_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isaward_recipients_aggregate_fields"') - return award_recipients_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const award_recipients_avg_fields_possibleTypes: string[] = ['award_recipients_avg_fields'] - export const isaward_recipients_avg_fields = (obj?: { __typename?: any } | null): obj is award_recipients_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isaward_recipients_avg_fields"') - return award_recipients_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const award_recipients_max_fields_possibleTypes: string[] = ['award_recipients_max_fields'] - export const isaward_recipients_max_fields = (obj?: { __typename?: any } | null): obj is award_recipients_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isaward_recipients_max_fields"') - return award_recipients_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const award_recipients_min_fields_possibleTypes: string[] = ['award_recipients_min_fields'] - export const isaward_recipients_min_fields = (obj?: { __typename?: any } | null): obj is award_recipients_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isaward_recipients_min_fields"') - return award_recipients_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const award_recipients_mutation_response_possibleTypes: string[] = ['award_recipients_mutation_response'] - export const isaward_recipients_mutation_response = (obj?: { __typename?: any } | null): obj is award_recipients_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isaward_recipients_mutation_response"') - return award_recipients_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const award_recipients_stddev_fields_possibleTypes: string[] = ['award_recipients_stddev_fields'] - export const isaward_recipients_stddev_fields = (obj?: { __typename?: any } | null): obj is award_recipients_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isaward_recipients_stddev_fields"') - return award_recipients_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const award_recipients_stddev_pop_fields_possibleTypes: string[] = ['award_recipients_stddev_pop_fields'] - export const isaward_recipients_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is award_recipients_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isaward_recipients_stddev_pop_fields"') - return award_recipients_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const award_recipients_stddev_samp_fields_possibleTypes: string[] = ['award_recipients_stddev_samp_fields'] - export const isaward_recipients_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is award_recipients_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isaward_recipients_stddev_samp_fields"') - return award_recipients_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const award_recipients_sum_fields_possibleTypes: string[] = ['award_recipients_sum_fields'] - export const isaward_recipients_sum_fields = (obj?: { __typename?: any } | null): obj is award_recipients_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isaward_recipients_sum_fields"') - return award_recipients_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const award_recipients_var_pop_fields_possibleTypes: string[] = ['award_recipients_var_pop_fields'] - export const isaward_recipients_var_pop_fields = (obj?: { __typename?: any } | null): obj is award_recipients_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isaward_recipients_var_pop_fields"') - return award_recipients_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const award_recipients_var_samp_fields_possibleTypes: string[] = ['award_recipients_var_samp_fields'] - export const isaward_recipients_var_samp_fields = (obj?: { __typename?: any } | null): obj is award_recipients_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isaward_recipients_var_samp_fields"') - return award_recipients_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const award_recipients_variance_fields_possibleTypes: string[] = ['award_recipients_variance_fields'] - export const isaward_recipients_variance_fields = (obj?: { __typename?: any } | null): obj is award_recipients_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isaward_recipients_variance_fields"') - return award_recipients_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const awards_possibleTypes: string[] = ['awards'] - export const isawards = (obj?: { __typename?: any } | null): obj is awards => { - if (!obj?.__typename) throw new Error('__typename is missing in "isawards"') - return awards_possibleTypes.includes(obj.__typename) - } - - - - const awards_aggregate_possibleTypes: string[] = ['awards_aggregate'] - export const isawards_aggregate = (obj?: { __typename?: any } | null): obj is awards_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isawards_aggregate"') - return awards_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const awards_aggregate_fields_possibleTypes: string[] = ['awards_aggregate_fields'] - export const isawards_aggregate_fields = (obj?: { __typename?: any } | null): obj is awards_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isawards_aggregate_fields"') - return awards_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const awards_avg_fields_possibleTypes: string[] = ['awards_avg_fields'] - export const isawards_avg_fields = (obj?: { __typename?: any } | null): obj is awards_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isawards_avg_fields"') - return awards_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const awards_max_fields_possibleTypes: string[] = ['awards_max_fields'] - export const isawards_max_fields = (obj?: { __typename?: any } | null): obj is awards_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isawards_max_fields"') - return awards_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const awards_min_fields_possibleTypes: string[] = ['awards_min_fields'] - export const isawards_min_fields = (obj?: { __typename?: any } | null): obj is awards_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isawards_min_fields"') - return awards_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const awards_mutation_response_possibleTypes: string[] = ['awards_mutation_response'] - export const isawards_mutation_response = (obj?: { __typename?: any } | null): obj is awards_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isawards_mutation_response"') - return awards_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const awards_stddev_fields_possibleTypes: string[] = ['awards_stddev_fields'] - export const isawards_stddev_fields = (obj?: { __typename?: any } | null): obj is awards_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isawards_stddev_fields"') - return awards_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const awards_stddev_pop_fields_possibleTypes: string[] = ['awards_stddev_pop_fields'] - export const isawards_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is awards_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isawards_stddev_pop_fields"') - return awards_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const awards_stddev_samp_fields_possibleTypes: string[] = ['awards_stddev_samp_fields'] - export const isawards_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is awards_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isawards_stddev_samp_fields"') - return awards_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const awards_sum_fields_possibleTypes: string[] = ['awards_sum_fields'] - export const isawards_sum_fields = (obj?: { __typename?: any } | null): obj is awards_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isawards_sum_fields"') - return awards_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const awards_var_pop_fields_possibleTypes: string[] = ['awards_var_pop_fields'] - export const isawards_var_pop_fields = (obj?: { __typename?: any } | null): obj is awards_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isawards_var_pop_fields"') - return awards_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const awards_var_samp_fields_possibleTypes: string[] = ['awards_var_samp_fields'] - export const isawards_var_samp_fields = (obj?: { __typename?: any } | null): obj is awards_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isawards_var_samp_fields"') - return awards_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const awards_variance_fields_possibleTypes: string[] = ['awards_variance_fields'] - export const isawards_variance_fields = (obj?: { __typename?: any } | null): obj is awards_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isawards_variance_fields"') - return awards_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const chat_read_state_possibleTypes: string[] = ['chat_read_state'] - export const ischat_read_state = (obj?: { __typename?: any } | null): obj is chat_read_state => { - if (!obj?.__typename) throw new Error('__typename is missing in "ischat_read_state"') - return chat_read_state_possibleTypes.includes(obj.__typename) - } - - - - const chat_read_state_aggregate_possibleTypes: string[] = ['chat_read_state_aggregate'] - export const ischat_read_state_aggregate = (obj?: { __typename?: any } | null): obj is chat_read_state_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ischat_read_state_aggregate"') - return chat_read_state_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const chat_read_state_aggregate_fields_possibleTypes: string[] = ['chat_read_state_aggregate_fields'] - export const ischat_read_state_aggregate_fields = (obj?: { __typename?: any } | null): obj is chat_read_state_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ischat_read_state_aggregate_fields"') - return chat_read_state_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const chat_read_state_avg_fields_possibleTypes: string[] = ['chat_read_state_avg_fields'] - export const ischat_read_state_avg_fields = (obj?: { __typename?: any } | null): obj is chat_read_state_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ischat_read_state_avg_fields"') - return chat_read_state_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const chat_read_state_max_fields_possibleTypes: string[] = ['chat_read_state_max_fields'] - export const ischat_read_state_max_fields = (obj?: { __typename?: any } | null): obj is chat_read_state_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ischat_read_state_max_fields"') - return chat_read_state_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const chat_read_state_min_fields_possibleTypes: string[] = ['chat_read_state_min_fields'] - export const ischat_read_state_min_fields = (obj?: { __typename?: any } | null): obj is chat_read_state_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ischat_read_state_min_fields"') - return chat_read_state_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const chat_read_state_mutation_response_possibleTypes: string[] = ['chat_read_state_mutation_response'] - export const ischat_read_state_mutation_response = (obj?: { __typename?: any } | null): obj is chat_read_state_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ischat_read_state_mutation_response"') - return chat_read_state_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const chat_read_state_stddev_fields_possibleTypes: string[] = ['chat_read_state_stddev_fields'] - export const ischat_read_state_stddev_fields = (obj?: { __typename?: any } | null): obj is chat_read_state_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ischat_read_state_stddev_fields"') - return chat_read_state_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const chat_read_state_stddev_pop_fields_possibleTypes: string[] = ['chat_read_state_stddev_pop_fields'] - export const ischat_read_state_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is chat_read_state_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ischat_read_state_stddev_pop_fields"') - return chat_read_state_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const chat_read_state_stddev_samp_fields_possibleTypes: string[] = ['chat_read_state_stddev_samp_fields'] - export const ischat_read_state_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is chat_read_state_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ischat_read_state_stddev_samp_fields"') - return chat_read_state_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const chat_read_state_sum_fields_possibleTypes: string[] = ['chat_read_state_sum_fields'] - export const ischat_read_state_sum_fields = (obj?: { __typename?: any } | null): obj is chat_read_state_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ischat_read_state_sum_fields"') - return chat_read_state_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const chat_read_state_var_pop_fields_possibleTypes: string[] = ['chat_read_state_var_pop_fields'] - export const ischat_read_state_var_pop_fields = (obj?: { __typename?: any } | null): obj is chat_read_state_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ischat_read_state_var_pop_fields"') - return chat_read_state_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const chat_read_state_var_samp_fields_possibleTypes: string[] = ['chat_read_state_var_samp_fields'] - export const ischat_read_state_var_samp_fields = (obj?: { __typename?: any } | null): obj is chat_read_state_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ischat_read_state_var_samp_fields"') - return chat_read_state_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const chat_read_state_variance_fields_possibleTypes: string[] = ['chat_read_state_variance_fields'] - export const ischat_read_state_variance_fields = (obj?: { __typename?: any } | null): obj is chat_read_state_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ischat_read_state_variance_fields"') - return chat_read_state_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const clip_render_jobs_possibleTypes: string[] = ['clip_render_jobs'] - export const isclip_render_jobs = (obj?: { __typename?: any } | null): obj is clip_render_jobs => { - if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs"') - return clip_render_jobs_possibleTypes.includes(obj.__typename) - } - - - - const clip_render_jobs_aggregate_possibleTypes: string[] = ['clip_render_jobs_aggregate'] - export const isclip_render_jobs_aggregate = (obj?: { __typename?: any } | null): obj is clip_render_jobs_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_aggregate"') - return clip_render_jobs_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const clip_render_jobs_aggregate_fields_possibleTypes: string[] = ['clip_render_jobs_aggregate_fields'] - export const isclip_render_jobs_aggregate_fields = (obj?: { __typename?: any } | null): obj is clip_render_jobs_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_aggregate_fields"') - return clip_render_jobs_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const clip_render_jobs_avg_fields_possibleTypes: string[] = ['clip_render_jobs_avg_fields'] - export const isclip_render_jobs_avg_fields = (obj?: { __typename?: any } | null): obj is clip_render_jobs_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_avg_fields"') - return clip_render_jobs_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const clip_render_jobs_max_fields_possibleTypes: string[] = ['clip_render_jobs_max_fields'] - export const isclip_render_jobs_max_fields = (obj?: { __typename?: any } | null): obj is clip_render_jobs_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_max_fields"') - return clip_render_jobs_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const clip_render_jobs_min_fields_possibleTypes: string[] = ['clip_render_jobs_min_fields'] - export const isclip_render_jobs_min_fields = (obj?: { __typename?: any } | null): obj is clip_render_jobs_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_min_fields"') - return clip_render_jobs_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const clip_render_jobs_mutation_response_possibleTypes: string[] = ['clip_render_jobs_mutation_response'] - export const isclip_render_jobs_mutation_response = (obj?: { __typename?: any } | null): obj is clip_render_jobs_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_mutation_response"') - return clip_render_jobs_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const clip_render_jobs_stddev_fields_possibleTypes: string[] = ['clip_render_jobs_stddev_fields'] - export const isclip_render_jobs_stddev_fields = (obj?: { __typename?: any } | null): obj is clip_render_jobs_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_stddev_fields"') - return clip_render_jobs_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const clip_render_jobs_stddev_pop_fields_possibleTypes: string[] = ['clip_render_jobs_stddev_pop_fields'] - export const isclip_render_jobs_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is clip_render_jobs_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_stddev_pop_fields"') - return clip_render_jobs_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const clip_render_jobs_stddev_samp_fields_possibleTypes: string[] = ['clip_render_jobs_stddev_samp_fields'] - export const isclip_render_jobs_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is clip_render_jobs_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_stddev_samp_fields"') - return clip_render_jobs_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const clip_render_jobs_sum_fields_possibleTypes: string[] = ['clip_render_jobs_sum_fields'] - export const isclip_render_jobs_sum_fields = (obj?: { __typename?: any } | null): obj is clip_render_jobs_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_sum_fields"') - return clip_render_jobs_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const clip_render_jobs_var_pop_fields_possibleTypes: string[] = ['clip_render_jobs_var_pop_fields'] - export const isclip_render_jobs_var_pop_fields = (obj?: { __typename?: any } | null): obj is clip_render_jobs_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_var_pop_fields"') - return clip_render_jobs_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const clip_render_jobs_var_samp_fields_possibleTypes: string[] = ['clip_render_jobs_var_samp_fields'] - export const isclip_render_jobs_var_samp_fields = (obj?: { __typename?: any } | null): obj is clip_render_jobs_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_var_samp_fields"') - return clip_render_jobs_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const clip_render_jobs_variance_fields_possibleTypes: string[] = ['clip_render_jobs_variance_fields'] - export const isclip_render_jobs_variance_fields = (obj?: { __typename?: any } | null): obj is clip_render_jobs_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_variance_fields"') - return clip_render_jobs_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const custom_pages_possibleTypes: string[] = ['custom_pages'] - export const iscustom_pages = (obj?: { __typename?: any } | null): obj is custom_pages => { - if (!obj?.__typename) throw new Error('__typename is missing in "iscustom_pages"') - return custom_pages_possibleTypes.includes(obj.__typename) - } - - - - const custom_pages_aggregate_possibleTypes: string[] = ['custom_pages_aggregate'] - export const iscustom_pages_aggregate = (obj?: { __typename?: any } | null): obj is custom_pages_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "iscustom_pages_aggregate"') - return custom_pages_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const custom_pages_aggregate_fields_possibleTypes: string[] = ['custom_pages_aggregate_fields'] - export const iscustom_pages_aggregate_fields = (obj?: { __typename?: any } | null): obj is custom_pages_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "iscustom_pages_aggregate_fields"') - return custom_pages_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const custom_pages_avg_fields_possibleTypes: string[] = ['custom_pages_avg_fields'] - export const iscustom_pages_avg_fields = (obj?: { __typename?: any } | null): obj is custom_pages_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "iscustom_pages_avg_fields"') - return custom_pages_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const custom_pages_max_fields_possibleTypes: string[] = ['custom_pages_max_fields'] - export const iscustom_pages_max_fields = (obj?: { __typename?: any } | null): obj is custom_pages_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "iscustom_pages_max_fields"') - return custom_pages_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const custom_pages_min_fields_possibleTypes: string[] = ['custom_pages_min_fields'] - export const iscustom_pages_min_fields = (obj?: { __typename?: any } | null): obj is custom_pages_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "iscustom_pages_min_fields"') - return custom_pages_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const custom_pages_mutation_response_possibleTypes: string[] = ['custom_pages_mutation_response'] - export const iscustom_pages_mutation_response = (obj?: { __typename?: any } | null): obj is custom_pages_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "iscustom_pages_mutation_response"') - return custom_pages_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const custom_pages_stddev_fields_possibleTypes: string[] = ['custom_pages_stddev_fields'] - export const iscustom_pages_stddev_fields = (obj?: { __typename?: any } | null): obj is custom_pages_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "iscustom_pages_stddev_fields"') - return custom_pages_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const custom_pages_stddev_pop_fields_possibleTypes: string[] = ['custom_pages_stddev_pop_fields'] - export const iscustom_pages_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is custom_pages_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "iscustom_pages_stddev_pop_fields"') - return custom_pages_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const custom_pages_stddev_samp_fields_possibleTypes: string[] = ['custom_pages_stddev_samp_fields'] - export const iscustom_pages_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is custom_pages_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "iscustom_pages_stddev_samp_fields"') - return custom_pages_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const custom_pages_sum_fields_possibleTypes: string[] = ['custom_pages_sum_fields'] - export const iscustom_pages_sum_fields = (obj?: { __typename?: any } | null): obj is custom_pages_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "iscustom_pages_sum_fields"') - return custom_pages_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const custom_pages_var_pop_fields_possibleTypes: string[] = ['custom_pages_var_pop_fields'] - export const iscustom_pages_var_pop_fields = (obj?: { __typename?: any } | null): obj is custom_pages_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "iscustom_pages_var_pop_fields"') - return custom_pages_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const custom_pages_var_samp_fields_possibleTypes: string[] = ['custom_pages_var_samp_fields'] - export const iscustom_pages_var_samp_fields = (obj?: { __typename?: any } | null): obj is custom_pages_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "iscustom_pages_var_samp_fields"') - return custom_pages_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const custom_pages_variance_fields_possibleTypes: string[] = ['custom_pages_variance_fields'] - export const iscustom_pages_variance_fields = (obj?: { __typename?: any } | null): obj is custom_pages_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "iscustom_pages_variance_fields"') - return custom_pages_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const db_backups_possibleTypes: string[] = ['db_backups'] - export const isdb_backups = (obj?: { __typename?: any } | null): obj is db_backups => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups"') - return db_backups_possibleTypes.includes(obj.__typename) - } - - - - const db_backups_aggregate_possibleTypes: string[] = ['db_backups_aggregate'] - export const isdb_backups_aggregate = (obj?: { __typename?: any } | null): obj is db_backups_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_aggregate"') - return db_backups_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const db_backups_aggregate_fields_possibleTypes: string[] = ['db_backups_aggregate_fields'] - export const isdb_backups_aggregate_fields = (obj?: { __typename?: any } | null): obj is db_backups_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_aggregate_fields"') - return db_backups_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const db_backups_avg_fields_possibleTypes: string[] = ['db_backups_avg_fields'] - export const isdb_backups_avg_fields = (obj?: { __typename?: any } | null): obj is db_backups_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_avg_fields"') - return db_backups_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const db_backups_max_fields_possibleTypes: string[] = ['db_backups_max_fields'] - export const isdb_backups_max_fields = (obj?: { __typename?: any } | null): obj is db_backups_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_max_fields"') - return db_backups_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const db_backups_min_fields_possibleTypes: string[] = ['db_backups_min_fields'] - export const isdb_backups_min_fields = (obj?: { __typename?: any } | null): obj is db_backups_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_min_fields"') - return db_backups_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const db_backups_mutation_response_possibleTypes: string[] = ['db_backups_mutation_response'] - export const isdb_backups_mutation_response = (obj?: { __typename?: any } | null): obj is db_backups_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_mutation_response"') - return db_backups_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const db_backups_stddev_fields_possibleTypes: string[] = ['db_backups_stddev_fields'] - export const isdb_backups_stddev_fields = (obj?: { __typename?: any } | null): obj is db_backups_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_stddev_fields"') - return db_backups_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const db_backups_stddev_pop_fields_possibleTypes: string[] = ['db_backups_stddev_pop_fields'] - export const isdb_backups_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is db_backups_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_stddev_pop_fields"') - return db_backups_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const db_backups_stddev_samp_fields_possibleTypes: string[] = ['db_backups_stddev_samp_fields'] - export const isdb_backups_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is db_backups_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_stddev_samp_fields"') - return db_backups_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const db_backups_sum_fields_possibleTypes: string[] = ['db_backups_sum_fields'] - export const isdb_backups_sum_fields = (obj?: { __typename?: any } | null): obj is db_backups_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_sum_fields"') - return db_backups_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const db_backups_var_pop_fields_possibleTypes: string[] = ['db_backups_var_pop_fields'] - export const isdb_backups_var_pop_fields = (obj?: { __typename?: any } | null): obj is db_backups_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_var_pop_fields"') - return db_backups_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const db_backups_var_samp_fields_possibleTypes: string[] = ['db_backups_var_samp_fields'] - export const isdb_backups_var_samp_fields = (obj?: { __typename?: any } | null): obj is db_backups_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_var_samp_fields"') - return db_backups_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const db_backups_variance_fields_possibleTypes: string[] = ['db_backups_variance_fields'] - export const isdb_backups_variance_fields = (obj?: { __typename?: any } | null): obj is db_backups_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_variance_fields"') - return db_backups_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const direct_conversations_possibleTypes: string[] = ['direct_conversations'] - export const isdirect_conversations = (obj?: { __typename?: any } | null): obj is direct_conversations => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_conversations"') - return direct_conversations_possibleTypes.includes(obj.__typename) - } - - - - const direct_conversations_aggregate_possibleTypes: string[] = ['direct_conversations_aggregate'] - export const isdirect_conversations_aggregate = (obj?: { __typename?: any } | null): obj is direct_conversations_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_conversations_aggregate"') - return direct_conversations_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const direct_conversations_aggregate_fields_possibleTypes: string[] = ['direct_conversations_aggregate_fields'] - export const isdirect_conversations_aggregate_fields = (obj?: { __typename?: any } | null): obj is direct_conversations_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_conversations_aggregate_fields"') - return direct_conversations_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const direct_conversations_avg_fields_possibleTypes: string[] = ['direct_conversations_avg_fields'] - export const isdirect_conversations_avg_fields = (obj?: { __typename?: any } | null): obj is direct_conversations_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_conversations_avg_fields"') - return direct_conversations_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const direct_conversations_max_fields_possibleTypes: string[] = ['direct_conversations_max_fields'] - export const isdirect_conversations_max_fields = (obj?: { __typename?: any } | null): obj is direct_conversations_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_conversations_max_fields"') - return direct_conversations_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const direct_conversations_min_fields_possibleTypes: string[] = ['direct_conversations_min_fields'] - export const isdirect_conversations_min_fields = (obj?: { __typename?: any } | null): obj is direct_conversations_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_conversations_min_fields"') - return direct_conversations_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const direct_conversations_mutation_response_possibleTypes: string[] = ['direct_conversations_mutation_response'] - export const isdirect_conversations_mutation_response = (obj?: { __typename?: any } | null): obj is direct_conversations_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_conversations_mutation_response"') - return direct_conversations_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const direct_conversations_stddev_fields_possibleTypes: string[] = ['direct_conversations_stddev_fields'] - export const isdirect_conversations_stddev_fields = (obj?: { __typename?: any } | null): obj is direct_conversations_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_conversations_stddev_fields"') - return direct_conversations_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const direct_conversations_stddev_pop_fields_possibleTypes: string[] = ['direct_conversations_stddev_pop_fields'] - export const isdirect_conversations_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is direct_conversations_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_conversations_stddev_pop_fields"') - return direct_conversations_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const direct_conversations_stddev_samp_fields_possibleTypes: string[] = ['direct_conversations_stddev_samp_fields'] - export const isdirect_conversations_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is direct_conversations_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_conversations_stddev_samp_fields"') - return direct_conversations_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const direct_conversations_sum_fields_possibleTypes: string[] = ['direct_conversations_sum_fields'] - export const isdirect_conversations_sum_fields = (obj?: { __typename?: any } | null): obj is direct_conversations_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_conversations_sum_fields"') - return direct_conversations_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const direct_conversations_var_pop_fields_possibleTypes: string[] = ['direct_conversations_var_pop_fields'] - export const isdirect_conversations_var_pop_fields = (obj?: { __typename?: any } | null): obj is direct_conversations_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_conversations_var_pop_fields"') - return direct_conversations_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const direct_conversations_var_samp_fields_possibleTypes: string[] = ['direct_conversations_var_samp_fields'] - export const isdirect_conversations_var_samp_fields = (obj?: { __typename?: any } | null): obj is direct_conversations_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_conversations_var_samp_fields"') - return direct_conversations_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const direct_conversations_variance_fields_possibleTypes: string[] = ['direct_conversations_variance_fields'] - export const isdirect_conversations_variance_fields = (obj?: { __typename?: any } | null): obj is direct_conversations_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_conversations_variance_fields"') - return direct_conversations_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const direct_messages_possibleTypes: string[] = ['direct_messages'] - export const isdirect_messages = (obj?: { __typename?: any } | null): obj is direct_messages => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_messages"') - return direct_messages_possibleTypes.includes(obj.__typename) - } - - - - const direct_messages_aggregate_possibleTypes: string[] = ['direct_messages_aggregate'] - export const isdirect_messages_aggregate = (obj?: { __typename?: any } | null): obj is direct_messages_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_messages_aggregate"') - return direct_messages_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const direct_messages_aggregate_fields_possibleTypes: string[] = ['direct_messages_aggregate_fields'] - export const isdirect_messages_aggregate_fields = (obj?: { __typename?: any } | null): obj is direct_messages_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_messages_aggregate_fields"') - return direct_messages_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const direct_messages_avg_fields_possibleTypes: string[] = ['direct_messages_avg_fields'] - export const isdirect_messages_avg_fields = (obj?: { __typename?: any } | null): obj is direct_messages_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_messages_avg_fields"') - return direct_messages_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const direct_messages_max_fields_possibleTypes: string[] = ['direct_messages_max_fields'] - export const isdirect_messages_max_fields = (obj?: { __typename?: any } | null): obj is direct_messages_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_messages_max_fields"') - return direct_messages_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const direct_messages_min_fields_possibleTypes: string[] = ['direct_messages_min_fields'] - export const isdirect_messages_min_fields = (obj?: { __typename?: any } | null): obj is direct_messages_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_messages_min_fields"') - return direct_messages_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const direct_messages_mutation_response_possibleTypes: string[] = ['direct_messages_mutation_response'] - export const isdirect_messages_mutation_response = (obj?: { __typename?: any } | null): obj is direct_messages_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_messages_mutation_response"') - return direct_messages_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const direct_messages_stddev_fields_possibleTypes: string[] = ['direct_messages_stddev_fields'] - export const isdirect_messages_stddev_fields = (obj?: { __typename?: any } | null): obj is direct_messages_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_messages_stddev_fields"') - return direct_messages_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const direct_messages_stddev_pop_fields_possibleTypes: string[] = ['direct_messages_stddev_pop_fields'] - export const isdirect_messages_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is direct_messages_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_messages_stddev_pop_fields"') - return direct_messages_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const direct_messages_stddev_samp_fields_possibleTypes: string[] = ['direct_messages_stddev_samp_fields'] - export const isdirect_messages_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is direct_messages_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_messages_stddev_samp_fields"') - return direct_messages_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const direct_messages_sum_fields_possibleTypes: string[] = ['direct_messages_sum_fields'] - export const isdirect_messages_sum_fields = (obj?: { __typename?: any } | null): obj is direct_messages_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_messages_sum_fields"') - return direct_messages_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const direct_messages_var_pop_fields_possibleTypes: string[] = ['direct_messages_var_pop_fields'] - export const isdirect_messages_var_pop_fields = (obj?: { __typename?: any } | null): obj is direct_messages_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_messages_var_pop_fields"') - return direct_messages_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const direct_messages_var_samp_fields_possibleTypes: string[] = ['direct_messages_var_samp_fields'] - export const isdirect_messages_var_samp_fields = (obj?: { __typename?: any } | null): obj is direct_messages_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_messages_var_samp_fields"') - return direct_messages_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const direct_messages_variance_fields_possibleTypes: string[] = ['direct_messages_variance_fields'] - export const isdirect_messages_variance_fields = (obj?: { __typename?: any } | null): obj is direct_messages_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_messages_variance_fields"') - return direct_messages_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const draft_game_picks_possibleTypes: string[] = ['draft_game_picks'] - export const isdraft_game_picks = (obj?: { __typename?: any } | null): obj is draft_game_picks => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks"') - return draft_game_picks_possibleTypes.includes(obj.__typename) - } - - - - const draft_game_picks_aggregate_possibleTypes: string[] = ['draft_game_picks_aggregate'] - export const isdraft_game_picks_aggregate = (obj?: { __typename?: any } | null): obj is draft_game_picks_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_aggregate"') - return draft_game_picks_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const draft_game_picks_aggregate_fields_possibleTypes: string[] = ['draft_game_picks_aggregate_fields'] - export const isdraft_game_picks_aggregate_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_aggregate_fields"') - return draft_game_picks_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const draft_game_picks_avg_fields_possibleTypes: string[] = ['draft_game_picks_avg_fields'] - export const isdraft_game_picks_avg_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_avg_fields"') - return draft_game_picks_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const draft_game_picks_max_fields_possibleTypes: string[] = ['draft_game_picks_max_fields'] - export const isdraft_game_picks_max_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_max_fields"') - return draft_game_picks_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const draft_game_picks_min_fields_possibleTypes: string[] = ['draft_game_picks_min_fields'] - export const isdraft_game_picks_min_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_min_fields"') - return draft_game_picks_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const draft_game_picks_mutation_response_possibleTypes: string[] = ['draft_game_picks_mutation_response'] - export const isdraft_game_picks_mutation_response = (obj?: { __typename?: any } | null): obj is draft_game_picks_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_mutation_response"') - return draft_game_picks_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const draft_game_picks_stddev_fields_possibleTypes: string[] = ['draft_game_picks_stddev_fields'] - export const isdraft_game_picks_stddev_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_stddev_fields"') - return draft_game_picks_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const draft_game_picks_stddev_pop_fields_possibleTypes: string[] = ['draft_game_picks_stddev_pop_fields'] - export const isdraft_game_picks_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_stddev_pop_fields"') - return draft_game_picks_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const draft_game_picks_stddev_samp_fields_possibleTypes: string[] = ['draft_game_picks_stddev_samp_fields'] - export const isdraft_game_picks_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_stddev_samp_fields"') - return draft_game_picks_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const draft_game_picks_sum_fields_possibleTypes: string[] = ['draft_game_picks_sum_fields'] - export const isdraft_game_picks_sum_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_sum_fields"') - return draft_game_picks_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const draft_game_picks_var_pop_fields_possibleTypes: string[] = ['draft_game_picks_var_pop_fields'] - export const isdraft_game_picks_var_pop_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_var_pop_fields"') - return draft_game_picks_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const draft_game_picks_var_samp_fields_possibleTypes: string[] = ['draft_game_picks_var_samp_fields'] - export const isdraft_game_picks_var_samp_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_var_samp_fields"') - return draft_game_picks_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const draft_game_picks_variance_fields_possibleTypes: string[] = ['draft_game_picks_variance_fields'] - export const isdraft_game_picks_variance_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_variance_fields"') - return draft_game_picks_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const draft_game_players_possibleTypes: string[] = ['draft_game_players'] - export const isdraft_game_players = (obj?: { __typename?: any } | null): obj is draft_game_players => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players"') - return draft_game_players_possibleTypes.includes(obj.__typename) - } - - - - const draft_game_players_aggregate_possibleTypes: string[] = ['draft_game_players_aggregate'] - export const isdraft_game_players_aggregate = (obj?: { __typename?: any } | null): obj is draft_game_players_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_aggregate"') - return draft_game_players_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const draft_game_players_aggregate_fields_possibleTypes: string[] = ['draft_game_players_aggregate_fields'] - export const isdraft_game_players_aggregate_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_aggregate_fields"') - return draft_game_players_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const draft_game_players_avg_fields_possibleTypes: string[] = ['draft_game_players_avg_fields'] - export const isdraft_game_players_avg_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_avg_fields"') - return draft_game_players_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const draft_game_players_max_fields_possibleTypes: string[] = ['draft_game_players_max_fields'] - export const isdraft_game_players_max_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_max_fields"') - return draft_game_players_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const draft_game_players_min_fields_possibleTypes: string[] = ['draft_game_players_min_fields'] - export const isdraft_game_players_min_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_min_fields"') - return draft_game_players_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const draft_game_players_mutation_response_possibleTypes: string[] = ['draft_game_players_mutation_response'] - export const isdraft_game_players_mutation_response = (obj?: { __typename?: any } | null): obj is draft_game_players_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_mutation_response"') - return draft_game_players_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const draft_game_players_stddev_fields_possibleTypes: string[] = ['draft_game_players_stddev_fields'] - export const isdraft_game_players_stddev_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_stddev_fields"') - return draft_game_players_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const draft_game_players_stddev_pop_fields_possibleTypes: string[] = ['draft_game_players_stddev_pop_fields'] - export const isdraft_game_players_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_stddev_pop_fields"') - return draft_game_players_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const draft_game_players_stddev_samp_fields_possibleTypes: string[] = ['draft_game_players_stddev_samp_fields'] - export const isdraft_game_players_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_stddev_samp_fields"') - return draft_game_players_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const draft_game_players_sum_fields_possibleTypes: string[] = ['draft_game_players_sum_fields'] - export const isdraft_game_players_sum_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_sum_fields"') - return draft_game_players_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const draft_game_players_var_pop_fields_possibleTypes: string[] = ['draft_game_players_var_pop_fields'] - export const isdraft_game_players_var_pop_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_var_pop_fields"') - return draft_game_players_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const draft_game_players_var_samp_fields_possibleTypes: string[] = ['draft_game_players_var_samp_fields'] - export const isdraft_game_players_var_samp_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_var_samp_fields"') - return draft_game_players_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const draft_game_players_variance_fields_possibleTypes: string[] = ['draft_game_players_variance_fields'] - export const isdraft_game_players_variance_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_variance_fields"') - return draft_game_players_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const draft_games_possibleTypes: string[] = ['draft_games'] - export const isdraft_games = (obj?: { __typename?: any } | null): obj is draft_games => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games"') - return draft_games_possibleTypes.includes(obj.__typename) - } - - - - const draft_games_aggregate_possibleTypes: string[] = ['draft_games_aggregate'] - export const isdraft_games_aggregate = (obj?: { __typename?: any } | null): obj is draft_games_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_aggregate"') - return draft_games_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const draft_games_aggregate_fields_possibleTypes: string[] = ['draft_games_aggregate_fields'] - export const isdraft_games_aggregate_fields = (obj?: { __typename?: any } | null): obj is draft_games_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_aggregate_fields"') - return draft_games_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const draft_games_avg_fields_possibleTypes: string[] = ['draft_games_avg_fields'] - export const isdraft_games_avg_fields = (obj?: { __typename?: any } | null): obj is draft_games_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_avg_fields"') - return draft_games_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const draft_games_max_fields_possibleTypes: string[] = ['draft_games_max_fields'] - export const isdraft_games_max_fields = (obj?: { __typename?: any } | null): obj is draft_games_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_max_fields"') - return draft_games_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const draft_games_min_fields_possibleTypes: string[] = ['draft_games_min_fields'] - export const isdraft_games_min_fields = (obj?: { __typename?: any } | null): obj is draft_games_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_min_fields"') - return draft_games_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const draft_games_mutation_response_possibleTypes: string[] = ['draft_games_mutation_response'] - export const isdraft_games_mutation_response = (obj?: { __typename?: any } | null): obj is draft_games_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_mutation_response"') - return draft_games_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const draft_games_stddev_fields_possibleTypes: string[] = ['draft_games_stddev_fields'] - export const isdraft_games_stddev_fields = (obj?: { __typename?: any } | null): obj is draft_games_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_stddev_fields"') - return draft_games_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const draft_games_stddev_pop_fields_possibleTypes: string[] = ['draft_games_stddev_pop_fields'] - export const isdraft_games_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is draft_games_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_stddev_pop_fields"') - return draft_games_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const draft_games_stddev_samp_fields_possibleTypes: string[] = ['draft_games_stddev_samp_fields'] - export const isdraft_games_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is draft_games_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_stddev_samp_fields"') - return draft_games_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const draft_games_sum_fields_possibleTypes: string[] = ['draft_games_sum_fields'] - export const isdraft_games_sum_fields = (obj?: { __typename?: any } | null): obj is draft_games_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_sum_fields"') - return draft_games_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const draft_games_var_pop_fields_possibleTypes: string[] = ['draft_games_var_pop_fields'] - export const isdraft_games_var_pop_fields = (obj?: { __typename?: any } | null): obj is draft_games_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_var_pop_fields"') - return draft_games_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const draft_games_var_samp_fields_possibleTypes: string[] = ['draft_games_var_samp_fields'] - export const isdraft_games_var_samp_fields = (obj?: { __typename?: any } | null): obj is draft_games_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_var_samp_fields"') - return draft_games_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const draft_games_variance_fields_possibleTypes: string[] = ['draft_games_variance_fields'] - export const isdraft_games_variance_fields = (obj?: { __typename?: any } | null): obj is draft_games_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_variance_fields"') - return draft_games_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_award_sources_possibleTypes: string[] = ['e_award_sources'] - export const ise_award_sources = (obj?: { __typename?: any } | null): obj is e_award_sources => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_award_sources"') - return e_award_sources_possibleTypes.includes(obj.__typename) - } - - - - const e_award_sources_aggregate_possibleTypes: string[] = ['e_award_sources_aggregate'] - export const ise_award_sources_aggregate = (obj?: { __typename?: any } | null): obj is e_award_sources_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_award_sources_aggregate"') - return e_award_sources_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_award_sources_aggregate_fields_possibleTypes: string[] = ['e_award_sources_aggregate_fields'] - export const ise_award_sources_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_award_sources_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_award_sources_aggregate_fields"') - return e_award_sources_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_award_sources_max_fields_possibleTypes: string[] = ['e_award_sources_max_fields'] - export const ise_award_sources_max_fields = (obj?: { __typename?: any } | null): obj is e_award_sources_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_award_sources_max_fields"') - return e_award_sources_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_award_sources_min_fields_possibleTypes: string[] = ['e_award_sources_min_fields'] - export const ise_award_sources_min_fields = (obj?: { __typename?: any } | null): obj is e_award_sources_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_award_sources_min_fields"') - return e_award_sources_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_award_sources_mutation_response_possibleTypes: string[] = ['e_award_sources_mutation_response'] - export const ise_award_sources_mutation_response = (obj?: { __typename?: any } | null): obj is e_award_sources_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_award_sources_mutation_response"') - return e_award_sources_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_award_tiers_possibleTypes: string[] = ['e_award_tiers'] - export const ise_award_tiers = (obj?: { __typename?: any } | null): obj is e_award_tiers => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_award_tiers"') - return e_award_tiers_possibleTypes.includes(obj.__typename) - } - - - - const e_award_tiers_aggregate_possibleTypes: string[] = ['e_award_tiers_aggregate'] - export const ise_award_tiers_aggregate = (obj?: { __typename?: any } | null): obj is e_award_tiers_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_award_tiers_aggregate"') - return e_award_tiers_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_award_tiers_aggregate_fields_possibleTypes: string[] = ['e_award_tiers_aggregate_fields'] - export const ise_award_tiers_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_award_tiers_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_award_tiers_aggregate_fields"') - return e_award_tiers_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_award_tiers_max_fields_possibleTypes: string[] = ['e_award_tiers_max_fields'] - export const ise_award_tiers_max_fields = (obj?: { __typename?: any } | null): obj is e_award_tiers_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_award_tiers_max_fields"') - return e_award_tiers_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_award_tiers_min_fields_possibleTypes: string[] = ['e_award_tiers_min_fields'] - export const ise_award_tiers_min_fields = (obj?: { __typename?: any } | null): obj is e_award_tiers_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_award_tiers_min_fields"') - return e_award_tiers_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_award_tiers_mutation_response_possibleTypes: string[] = ['e_award_tiers_mutation_response'] - export const ise_award_tiers_mutation_response = (obj?: { __typename?: any } | null): obj is e_award_tiers_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_award_tiers_mutation_response"') - return e_award_tiers_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_check_in_settings_possibleTypes: string[] = ['e_check_in_settings'] - export const ise_check_in_settings = (obj?: { __typename?: any } | null): obj is e_check_in_settings => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_check_in_settings"') - return e_check_in_settings_possibleTypes.includes(obj.__typename) - } - - - - const e_check_in_settings_aggregate_possibleTypes: string[] = ['e_check_in_settings_aggregate'] - export const ise_check_in_settings_aggregate = (obj?: { __typename?: any } | null): obj is e_check_in_settings_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_check_in_settings_aggregate"') - return e_check_in_settings_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_check_in_settings_aggregate_fields_possibleTypes: string[] = ['e_check_in_settings_aggregate_fields'] - export const ise_check_in_settings_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_check_in_settings_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_check_in_settings_aggregate_fields"') - return e_check_in_settings_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_check_in_settings_max_fields_possibleTypes: string[] = ['e_check_in_settings_max_fields'] - export const ise_check_in_settings_max_fields = (obj?: { __typename?: any } | null): obj is e_check_in_settings_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_check_in_settings_max_fields"') - return e_check_in_settings_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_check_in_settings_min_fields_possibleTypes: string[] = ['e_check_in_settings_min_fields'] - export const ise_check_in_settings_min_fields = (obj?: { __typename?: any } | null): obj is e_check_in_settings_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_check_in_settings_min_fields"') - return e_check_in_settings_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_check_in_settings_mutation_response_possibleTypes: string[] = ['e_check_in_settings_mutation_response'] - export const ise_check_in_settings_mutation_response = (obj?: { __typename?: any } | null): obj is e_check_in_settings_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_check_in_settings_mutation_response"') - return e_check_in_settings_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_draft_game_captain_selection_possibleTypes: string[] = ['e_draft_game_captain_selection'] - export const ise_draft_game_captain_selection = (obj?: { __typename?: any } | null): obj is e_draft_game_captain_selection => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_captain_selection"') - return e_draft_game_captain_selection_possibleTypes.includes(obj.__typename) - } - - - - const e_draft_game_captain_selection_aggregate_possibleTypes: string[] = ['e_draft_game_captain_selection_aggregate'] - export const ise_draft_game_captain_selection_aggregate = (obj?: { __typename?: any } | null): obj is e_draft_game_captain_selection_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_captain_selection_aggregate"') - return e_draft_game_captain_selection_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_draft_game_captain_selection_aggregate_fields_possibleTypes: string[] = ['e_draft_game_captain_selection_aggregate_fields'] - export const ise_draft_game_captain_selection_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_captain_selection_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_captain_selection_aggregate_fields"') - return e_draft_game_captain_selection_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_draft_game_captain_selection_max_fields_possibleTypes: string[] = ['e_draft_game_captain_selection_max_fields'] - export const ise_draft_game_captain_selection_max_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_captain_selection_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_captain_selection_max_fields"') - return e_draft_game_captain_selection_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_draft_game_captain_selection_min_fields_possibleTypes: string[] = ['e_draft_game_captain_selection_min_fields'] - export const ise_draft_game_captain_selection_min_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_captain_selection_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_captain_selection_min_fields"') - return e_draft_game_captain_selection_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_draft_game_captain_selection_mutation_response_possibleTypes: string[] = ['e_draft_game_captain_selection_mutation_response'] - export const ise_draft_game_captain_selection_mutation_response = (obj?: { __typename?: any } | null): obj is e_draft_game_captain_selection_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_captain_selection_mutation_response"') - return e_draft_game_captain_selection_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_draft_game_draft_order_possibleTypes: string[] = ['e_draft_game_draft_order'] - export const ise_draft_game_draft_order = (obj?: { __typename?: any } | null): obj is e_draft_game_draft_order => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_draft_order"') - return e_draft_game_draft_order_possibleTypes.includes(obj.__typename) - } - - - - const e_draft_game_draft_order_aggregate_possibleTypes: string[] = ['e_draft_game_draft_order_aggregate'] - export const ise_draft_game_draft_order_aggregate = (obj?: { __typename?: any } | null): obj is e_draft_game_draft_order_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_draft_order_aggregate"') - return e_draft_game_draft_order_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_draft_game_draft_order_aggregate_fields_possibleTypes: string[] = ['e_draft_game_draft_order_aggregate_fields'] - export const ise_draft_game_draft_order_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_draft_order_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_draft_order_aggregate_fields"') - return e_draft_game_draft_order_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_draft_game_draft_order_max_fields_possibleTypes: string[] = ['e_draft_game_draft_order_max_fields'] - export const ise_draft_game_draft_order_max_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_draft_order_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_draft_order_max_fields"') - return e_draft_game_draft_order_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_draft_game_draft_order_min_fields_possibleTypes: string[] = ['e_draft_game_draft_order_min_fields'] - export const ise_draft_game_draft_order_min_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_draft_order_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_draft_order_min_fields"') - return e_draft_game_draft_order_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_draft_game_draft_order_mutation_response_possibleTypes: string[] = ['e_draft_game_draft_order_mutation_response'] - export const ise_draft_game_draft_order_mutation_response = (obj?: { __typename?: any } | null): obj is e_draft_game_draft_order_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_draft_order_mutation_response"') - return e_draft_game_draft_order_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_draft_game_mode_possibleTypes: string[] = ['e_draft_game_mode'] - export const ise_draft_game_mode = (obj?: { __typename?: any } | null): obj is e_draft_game_mode => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_mode"') - return e_draft_game_mode_possibleTypes.includes(obj.__typename) - } - - - - const e_draft_game_mode_aggregate_possibleTypes: string[] = ['e_draft_game_mode_aggregate'] - export const ise_draft_game_mode_aggregate = (obj?: { __typename?: any } | null): obj is e_draft_game_mode_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_mode_aggregate"') - return e_draft_game_mode_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_draft_game_mode_aggregate_fields_possibleTypes: string[] = ['e_draft_game_mode_aggregate_fields'] - export const ise_draft_game_mode_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_mode_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_mode_aggregate_fields"') - return e_draft_game_mode_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_draft_game_mode_max_fields_possibleTypes: string[] = ['e_draft_game_mode_max_fields'] - export const ise_draft_game_mode_max_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_mode_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_mode_max_fields"') - return e_draft_game_mode_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_draft_game_mode_min_fields_possibleTypes: string[] = ['e_draft_game_mode_min_fields'] - export const ise_draft_game_mode_min_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_mode_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_mode_min_fields"') - return e_draft_game_mode_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_draft_game_mode_mutation_response_possibleTypes: string[] = ['e_draft_game_mode_mutation_response'] - export const ise_draft_game_mode_mutation_response = (obj?: { __typename?: any } | null): obj is e_draft_game_mode_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_mode_mutation_response"') - return e_draft_game_mode_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_draft_game_player_status_possibleTypes: string[] = ['e_draft_game_player_status'] - export const ise_draft_game_player_status = (obj?: { __typename?: any } | null): obj is e_draft_game_player_status => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_player_status"') - return e_draft_game_player_status_possibleTypes.includes(obj.__typename) - } - - - - const e_draft_game_player_status_aggregate_possibleTypes: string[] = ['e_draft_game_player_status_aggregate'] - export const ise_draft_game_player_status_aggregate = (obj?: { __typename?: any } | null): obj is e_draft_game_player_status_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_player_status_aggregate"') - return e_draft_game_player_status_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_draft_game_player_status_aggregate_fields_possibleTypes: string[] = ['e_draft_game_player_status_aggregate_fields'] - export const ise_draft_game_player_status_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_player_status_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_player_status_aggregate_fields"') - return e_draft_game_player_status_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_draft_game_player_status_max_fields_possibleTypes: string[] = ['e_draft_game_player_status_max_fields'] - export const ise_draft_game_player_status_max_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_player_status_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_player_status_max_fields"') - return e_draft_game_player_status_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_draft_game_player_status_min_fields_possibleTypes: string[] = ['e_draft_game_player_status_min_fields'] - export const ise_draft_game_player_status_min_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_player_status_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_player_status_min_fields"') - return e_draft_game_player_status_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_draft_game_player_status_mutation_response_possibleTypes: string[] = ['e_draft_game_player_status_mutation_response'] - export const ise_draft_game_player_status_mutation_response = (obj?: { __typename?: any } | null): obj is e_draft_game_player_status_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_player_status_mutation_response"') - return e_draft_game_player_status_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_draft_game_status_possibleTypes: string[] = ['e_draft_game_status'] - export const ise_draft_game_status = (obj?: { __typename?: any } | null): obj is e_draft_game_status => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_status"') - return e_draft_game_status_possibleTypes.includes(obj.__typename) - } - - - - const e_draft_game_status_aggregate_possibleTypes: string[] = ['e_draft_game_status_aggregate'] - export const ise_draft_game_status_aggregate = (obj?: { __typename?: any } | null): obj is e_draft_game_status_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_status_aggregate"') - return e_draft_game_status_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_draft_game_status_aggregate_fields_possibleTypes: string[] = ['e_draft_game_status_aggregate_fields'] - export const ise_draft_game_status_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_status_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_status_aggregate_fields"') - return e_draft_game_status_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_draft_game_status_max_fields_possibleTypes: string[] = ['e_draft_game_status_max_fields'] - export const ise_draft_game_status_max_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_status_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_status_max_fields"') - return e_draft_game_status_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_draft_game_status_min_fields_possibleTypes: string[] = ['e_draft_game_status_min_fields'] - export const ise_draft_game_status_min_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_status_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_status_min_fields"') - return e_draft_game_status_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_draft_game_status_mutation_response_possibleTypes: string[] = ['e_draft_game_status_mutation_response'] - export const ise_draft_game_status_mutation_response = (obj?: { __typename?: any } | null): obj is e_draft_game_status_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_status_mutation_response"') - return e_draft_game_status_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_event_media_access_possibleTypes: string[] = ['e_event_media_access'] - export const ise_event_media_access = (obj?: { __typename?: any } | null): obj is e_event_media_access => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_media_access"') - return e_event_media_access_possibleTypes.includes(obj.__typename) - } - - - - const e_event_media_access_aggregate_possibleTypes: string[] = ['e_event_media_access_aggregate'] - export const ise_event_media_access_aggregate = (obj?: { __typename?: any } | null): obj is e_event_media_access_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_media_access_aggregate"') - return e_event_media_access_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_event_media_access_aggregate_fields_possibleTypes: string[] = ['e_event_media_access_aggregate_fields'] - export const ise_event_media_access_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_event_media_access_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_media_access_aggregate_fields"') - return e_event_media_access_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_event_media_access_max_fields_possibleTypes: string[] = ['e_event_media_access_max_fields'] - export const ise_event_media_access_max_fields = (obj?: { __typename?: any } | null): obj is e_event_media_access_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_media_access_max_fields"') - return e_event_media_access_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_event_media_access_min_fields_possibleTypes: string[] = ['e_event_media_access_min_fields'] - export const ise_event_media_access_min_fields = (obj?: { __typename?: any } | null): obj is e_event_media_access_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_media_access_min_fields"') - return e_event_media_access_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_event_media_access_mutation_response_possibleTypes: string[] = ['e_event_media_access_mutation_response'] - export const ise_event_media_access_mutation_response = (obj?: { __typename?: any } | null): obj is e_event_media_access_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_media_access_mutation_response"') - return e_event_media_access_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_event_visibility_possibleTypes: string[] = ['e_event_visibility'] - export const ise_event_visibility = (obj?: { __typename?: any } | null): obj is e_event_visibility => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_visibility"') - return e_event_visibility_possibleTypes.includes(obj.__typename) - } - - - - const e_event_visibility_aggregate_possibleTypes: string[] = ['e_event_visibility_aggregate'] - export const ise_event_visibility_aggregate = (obj?: { __typename?: any } | null): obj is e_event_visibility_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_visibility_aggregate"') - return e_event_visibility_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_event_visibility_aggregate_fields_possibleTypes: string[] = ['e_event_visibility_aggregate_fields'] - export const ise_event_visibility_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_event_visibility_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_visibility_aggregate_fields"') - return e_event_visibility_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_event_visibility_max_fields_possibleTypes: string[] = ['e_event_visibility_max_fields'] - export const ise_event_visibility_max_fields = (obj?: { __typename?: any } | null): obj is e_event_visibility_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_visibility_max_fields"') - return e_event_visibility_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_event_visibility_min_fields_possibleTypes: string[] = ['e_event_visibility_min_fields'] - export const ise_event_visibility_min_fields = (obj?: { __typename?: any } | null): obj is e_event_visibility_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_visibility_min_fields"') - return e_event_visibility_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_event_visibility_mutation_response_possibleTypes: string[] = ['e_event_visibility_mutation_response'] - export const ise_event_visibility_mutation_response = (obj?: { __typename?: any } | null): obj is e_event_visibility_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_visibility_mutation_response"') - return e_event_visibility_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_friend_status_possibleTypes: string[] = ['e_friend_status'] - export const ise_friend_status = (obj?: { __typename?: any } | null): obj is e_friend_status => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_friend_status"') - return e_friend_status_possibleTypes.includes(obj.__typename) - } - - - - const e_friend_status_aggregate_possibleTypes: string[] = ['e_friend_status_aggregate'] - export const ise_friend_status_aggregate = (obj?: { __typename?: any } | null): obj is e_friend_status_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_friend_status_aggregate"') - return e_friend_status_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_friend_status_aggregate_fields_possibleTypes: string[] = ['e_friend_status_aggregate_fields'] - export const ise_friend_status_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_friend_status_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_friend_status_aggregate_fields"') - return e_friend_status_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_friend_status_max_fields_possibleTypes: string[] = ['e_friend_status_max_fields'] - export const ise_friend_status_max_fields = (obj?: { __typename?: any } | null): obj is e_friend_status_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_friend_status_max_fields"') - return e_friend_status_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_friend_status_min_fields_possibleTypes: string[] = ['e_friend_status_min_fields'] - export const ise_friend_status_min_fields = (obj?: { __typename?: any } | null): obj is e_friend_status_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_friend_status_min_fields"') - return e_friend_status_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_friend_status_mutation_response_possibleTypes: string[] = ['e_friend_status_mutation_response'] - export const ise_friend_status_mutation_response = (obj?: { __typename?: any } | null): obj is e_friend_status_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_friend_status_mutation_response"') - return e_friend_status_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_game_cfg_types_possibleTypes: string[] = ['e_game_cfg_types'] - export const ise_game_cfg_types = (obj?: { __typename?: any } | null): obj is e_game_cfg_types => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_cfg_types"') - return e_game_cfg_types_possibleTypes.includes(obj.__typename) - } - - - - const e_game_cfg_types_aggregate_possibleTypes: string[] = ['e_game_cfg_types_aggregate'] - export const ise_game_cfg_types_aggregate = (obj?: { __typename?: any } | null): obj is e_game_cfg_types_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_cfg_types_aggregate"') - return e_game_cfg_types_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_game_cfg_types_aggregate_fields_possibleTypes: string[] = ['e_game_cfg_types_aggregate_fields'] - export const ise_game_cfg_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_game_cfg_types_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_cfg_types_aggregate_fields"') - return e_game_cfg_types_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_game_cfg_types_max_fields_possibleTypes: string[] = ['e_game_cfg_types_max_fields'] - export const ise_game_cfg_types_max_fields = (obj?: { __typename?: any } | null): obj is e_game_cfg_types_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_cfg_types_max_fields"') - return e_game_cfg_types_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_game_cfg_types_min_fields_possibleTypes: string[] = ['e_game_cfg_types_min_fields'] - export const ise_game_cfg_types_min_fields = (obj?: { __typename?: any } | null): obj is e_game_cfg_types_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_cfg_types_min_fields"') - return e_game_cfg_types_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_game_cfg_types_mutation_response_possibleTypes: string[] = ['e_game_cfg_types_mutation_response'] - export const ise_game_cfg_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_game_cfg_types_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_cfg_types_mutation_response"') - return e_game_cfg_types_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_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"') - return e_game_server_node_statuses_possibleTypes.includes(obj.__typename) - } - - - - const e_game_server_node_statuses_aggregate_possibleTypes: string[] = ['e_game_server_node_statuses_aggregate'] - export const ise_game_server_node_statuses_aggregate = (obj?: { __typename?: any } | null): obj is e_game_server_node_statuses_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_server_node_statuses_aggregate"') - return e_game_server_node_statuses_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_game_server_node_statuses_aggregate_fields_possibleTypes: string[] = ['e_game_server_node_statuses_aggregate_fields'] - export const ise_game_server_node_statuses_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_game_server_node_statuses_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_server_node_statuses_aggregate_fields"') - return e_game_server_node_statuses_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_game_server_node_statuses_max_fields_possibleTypes: string[] = ['e_game_server_node_statuses_max_fields'] - export const ise_game_server_node_statuses_max_fields = (obj?: { __typename?: any } | null): obj is e_game_server_node_statuses_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_server_node_statuses_max_fields"') - return e_game_server_node_statuses_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_game_server_node_statuses_min_fields_possibleTypes: string[] = ['e_game_server_node_statuses_min_fields'] - export const ise_game_server_node_statuses_min_fields = (obj?: { __typename?: any } | null): obj is e_game_server_node_statuses_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_server_node_statuses_min_fields"') - return e_game_server_node_statuses_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_game_server_node_statuses_mutation_response_possibleTypes: string[] = ['e_game_server_node_statuses_mutation_response'] - export const ise_game_server_node_statuses_mutation_response = (obj?: { __typename?: any } | null): obj is e_game_server_node_statuses_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_server_node_statuses_mutation_response"') - return e_game_server_node_statuses_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_league_movement_types_possibleTypes: string[] = ['e_league_movement_types'] - export const ise_league_movement_types = (obj?: { __typename?: any } | null): obj is e_league_movement_types => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_movement_types"') - return e_league_movement_types_possibleTypes.includes(obj.__typename) - } - - - - const e_league_movement_types_aggregate_possibleTypes: string[] = ['e_league_movement_types_aggregate'] - export const ise_league_movement_types_aggregate = (obj?: { __typename?: any } | null): obj is e_league_movement_types_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_movement_types_aggregate"') - return e_league_movement_types_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_league_movement_types_aggregate_fields_possibleTypes: string[] = ['e_league_movement_types_aggregate_fields'] - export const ise_league_movement_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_league_movement_types_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_movement_types_aggregate_fields"') - return e_league_movement_types_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_league_movement_types_max_fields_possibleTypes: string[] = ['e_league_movement_types_max_fields'] - export const ise_league_movement_types_max_fields = (obj?: { __typename?: any } | null): obj is e_league_movement_types_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_movement_types_max_fields"') - return e_league_movement_types_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_league_movement_types_min_fields_possibleTypes: string[] = ['e_league_movement_types_min_fields'] - export const ise_league_movement_types_min_fields = (obj?: { __typename?: any } | null): obj is e_league_movement_types_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_movement_types_min_fields"') - return e_league_movement_types_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_league_movement_types_mutation_response_possibleTypes: string[] = ['e_league_movement_types_mutation_response'] - export const ise_league_movement_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_league_movement_types_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_movement_types_mutation_response"') - return e_league_movement_types_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_league_proposal_statuses_possibleTypes: string[] = ['e_league_proposal_statuses'] - export const ise_league_proposal_statuses = (obj?: { __typename?: any } | null): obj is e_league_proposal_statuses => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_proposal_statuses"') - return e_league_proposal_statuses_possibleTypes.includes(obj.__typename) - } - - - - const e_league_proposal_statuses_aggregate_possibleTypes: string[] = ['e_league_proposal_statuses_aggregate'] - export const ise_league_proposal_statuses_aggregate = (obj?: { __typename?: any } | null): obj is e_league_proposal_statuses_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_proposal_statuses_aggregate"') - return e_league_proposal_statuses_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_league_proposal_statuses_aggregate_fields_possibleTypes: string[] = ['e_league_proposal_statuses_aggregate_fields'] - export const ise_league_proposal_statuses_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_league_proposal_statuses_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_proposal_statuses_aggregate_fields"') - return e_league_proposal_statuses_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_league_proposal_statuses_max_fields_possibleTypes: string[] = ['e_league_proposal_statuses_max_fields'] - export const ise_league_proposal_statuses_max_fields = (obj?: { __typename?: any } | null): obj is e_league_proposal_statuses_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_proposal_statuses_max_fields"') - return e_league_proposal_statuses_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_league_proposal_statuses_min_fields_possibleTypes: string[] = ['e_league_proposal_statuses_min_fields'] - export const ise_league_proposal_statuses_min_fields = (obj?: { __typename?: any } | null): obj is e_league_proposal_statuses_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_proposal_statuses_min_fields"') - return e_league_proposal_statuses_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_league_proposal_statuses_mutation_response_possibleTypes: string[] = ['e_league_proposal_statuses_mutation_response'] - export const ise_league_proposal_statuses_mutation_response = (obj?: { __typename?: any } | null): obj is e_league_proposal_statuses_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_proposal_statuses_mutation_response"') - return e_league_proposal_statuses_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_league_registration_statuses_possibleTypes: string[] = ['e_league_registration_statuses'] - export const ise_league_registration_statuses = (obj?: { __typename?: any } | null): obj is e_league_registration_statuses => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_registration_statuses"') - return e_league_registration_statuses_possibleTypes.includes(obj.__typename) - } - - - - const e_league_registration_statuses_aggregate_possibleTypes: string[] = ['e_league_registration_statuses_aggregate'] - export const ise_league_registration_statuses_aggregate = (obj?: { __typename?: any } | null): obj is e_league_registration_statuses_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_registration_statuses_aggregate"') - return e_league_registration_statuses_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_league_registration_statuses_aggregate_fields_possibleTypes: string[] = ['e_league_registration_statuses_aggregate_fields'] - export const ise_league_registration_statuses_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_league_registration_statuses_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_registration_statuses_aggregate_fields"') - return e_league_registration_statuses_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_league_registration_statuses_max_fields_possibleTypes: string[] = ['e_league_registration_statuses_max_fields'] - export const ise_league_registration_statuses_max_fields = (obj?: { __typename?: any } | null): obj is e_league_registration_statuses_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_registration_statuses_max_fields"') - return e_league_registration_statuses_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_league_registration_statuses_min_fields_possibleTypes: string[] = ['e_league_registration_statuses_min_fields'] - export const ise_league_registration_statuses_min_fields = (obj?: { __typename?: any } | null): obj is e_league_registration_statuses_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_registration_statuses_min_fields"') - return e_league_registration_statuses_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_league_registration_statuses_mutation_response_possibleTypes: string[] = ['e_league_registration_statuses_mutation_response'] - export const ise_league_registration_statuses_mutation_response = (obj?: { __typename?: any } | null): obj is e_league_registration_statuses_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_registration_statuses_mutation_response"') - return e_league_registration_statuses_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_league_season_statuses_possibleTypes: string[] = ['e_league_season_statuses'] - export const ise_league_season_statuses = (obj?: { __typename?: any } | null): obj is e_league_season_statuses => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_season_statuses"') - return e_league_season_statuses_possibleTypes.includes(obj.__typename) - } - - - - const e_league_season_statuses_aggregate_possibleTypes: string[] = ['e_league_season_statuses_aggregate'] - export const ise_league_season_statuses_aggregate = (obj?: { __typename?: any } | null): obj is e_league_season_statuses_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_season_statuses_aggregate"') - return e_league_season_statuses_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_league_season_statuses_aggregate_fields_possibleTypes: string[] = ['e_league_season_statuses_aggregate_fields'] - export const ise_league_season_statuses_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_league_season_statuses_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_season_statuses_aggregate_fields"') - return e_league_season_statuses_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_league_season_statuses_max_fields_possibleTypes: string[] = ['e_league_season_statuses_max_fields'] - export const ise_league_season_statuses_max_fields = (obj?: { __typename?: any } | null): obj is e_league_season_statuses_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_season_statuses_max_fields"') - return e_league_season_statuses_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_league_season_statuses_min_fields_possibleTypes: string[] = ['e_league_season_statuses_min_fields'] - export const ise_league_season_statuses_min_fields = (obj?: { __typename?: any } | null): obj is e_league_season_statuses_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_season_statuses_min_fields"') - return e_league_season_statuses_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_league_season_statuses_mutation_response_possibleTypes: string[] = ['e_league_season_statuses_mutation_response'] - export const ise_league_season_statuses_mutation_response = (obj?: { __typename?: any } | null): obj is e_league_season_statuses_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_season_statuses_mutation_response"') - return e_league_season_statuses_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_lobby_access_possibleTypes: string[] = ['e_lobby_access'] - export const ise_lobby_access = (obj?: { __typename?: any } | null): obj is e_lobby_access => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_access"') - return e_lobby_access_possibleTypes.includes(obj.__typename) - } - - - - const e_lobby_access_aggregate_possibleTypes: string[] = ['e_lobby_access_aggregate'] - export const ise_lobby_access_aggregate = (obj?: { __typename?: any } | null): obj is e_lobby_access_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_access_aggregate"') - return e_lobby_access_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_lobby_access_aggregate_fields_possibleTypes: string[] = ['e_lobby_access_aggregate_fields'] - export const ise_lobby_access_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_lobby_access_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_access_aggregate_fields"') - return e_lobby_access_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_lobby_access_max_fields_possibleTypes: string[] = ['e_lobby_access_max_fields'] - export const ise_lobby_access_max_fields = (obj?: { __typename?: any } | null): obj is e_lobby_access_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_access_max_fields"') - return e_lobby_access_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_lobby_access_min_fields_possibleTypes: string[] = ['e_lobby_access_min_fields'] - export const ise_lobby_access_min_fields = (obj?: { __typename?: any } | null): obj is e_lobby_access_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_access_min_fields"') - return e_lobby_access_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_lobby_access_mutation_response_possibleTypes: string[] = ['e_lobby_access_mutation_response'] - export const ise_lobby_access_mutation_response = (obj?: { __typename?: any } | null): obj is e_lobby_access_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_access_mutation_response"') - return e_lobby_access_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_lobby_player_status_possibleTypes: string[] = ['e_lobby_player_status'] - export const ise_lobby_player_status = (obj?: { __typename?: any } | null): obj is e_lobby_player_status => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_player_status"') - return e_lobby_player_status_possibleTypes.includes(obj.__typename) - } - - - - const e_lobby_player_status_aggregate_possibleTypes: string[] = ['e_lobby_player_status_aggregate'] - export const ise_lobby_player_status_aggregate = (obj?: { __typename?: any } | null): obj is e_lobby_player_status_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_player_status_aggregate"') - return e_lobby_player_status_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_lobby_player_status_aggregate_fields_possibleTypes: string[] = ['e_lobby_player_status_aggregate_fields'] - export const ise_lobby_player_status_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_lobby_player_status_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_player_status_aggregate_fields"') - return e_lobby_player_status_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_lobby_player_status_max_fields_possibleTypes: string[] = ['e_lobby_player_status_max_fields'] - export const ise_lobby_player_status_max_fields = (obj?: { __typename?: any } | null): obj is e_lobby_player_status_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_player_status_max_fields"') - return e_lobby_player_status_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_lobby_player_status_min_fields_possibleTypes: string[] = ['e_lobby_player_status_min_fields'] - export const ise_lobby_player_status_min_fields = (obj?: { __typename?: any } | null): obj is e_lobby_player_status_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_player_status_min_fields"') - return e_lobby_player_status_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_lobby_player_status_mutation_response_possibleTypes: string[] = ['e_lobby_player_status_mutation_response'] - export const ise_lobby_player_status_mutation_response = (obj?: { __typename?: any } | null): obj is e_lobby_player_status_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_player_status_mutation_response"') - return e_lobby_player_status_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_map_pool_types_possibleTypes: string[] = ['e_map_pool_types'] - export const ise_map_pool_types = (obj?: { __typename?: any } | null): obj is e_map_pool_types => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_map_pool_types"') - return e_map_pool_types_possibleTypes.includes(obj.__typename) - } - - - - const e_map_pool_types_aggregate_possibleTypes: string[] = ['e_map_pool_types_aggregate'] - export const ise_map_pool_types_aggregate = (obj?: { __typename?: any } | null): obj is e_map_pool_types_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_map_pool_types_aggregate"') - return e_map_pool_types_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_map_pool_types_aggregate_fields_possibleTypes: string[] = ['e_map_pool_types_aggregate_fields'] - export const ise_map_pool_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_map_pool_types_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_map_pool_types_aggregate_fields"') - return e_map_pool_types_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_map_pool_types_max_fields_possibleTypes: string[] = ['e_map_pool_types_max_fields'] - export const ise_map_pool_types_max_fields = (obj?: { __typename?: any } | null): obj is e_map_pool_types_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_map_pool_types_max_fields"') - return e_map_pool_types_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_map_pool_types_min_fields_possibleTypes: string[] = ['e_map_pool_types_min_fields'] - export const ise_map_pool_types_min_fields = (obj?: { __typename?: any } | null): obj is e_map_pool_types_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_map_pool_types_min_fields"') - return e_map_pool_types_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_map_pool_types_mutation_response_possibleTypes: string[] = ['e_map_pool_types_mutation_response'] - export const ise_map_pool_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_map_pool_types_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_map_pool_types_mutation_response"') - return e_map_pool_types_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_match_clip_visibility_possibleTypes: string[] = ['e_match_clip_visibility'] - export const ise_match_clip_visibility = (obj?: { __typename?: any } | null): obj is e_match_clip_visibility => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_clip_visibility"') - return e_match_clip_visibility_possibleTypes.includes(obj.__typename) - } - - - - const e_match_clip_visibility_aggregate_possibleTypes: string[] = ['e_match_clip_visibility_aggregate'] - export const ise_match_clip_visibility_aggregate = (obj?: { __typename?: any } | null): obj is e_match_clip_visibility_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_clip_visibility_aggregate"') - return e_match_clip_visibility_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_match_clip_visibility_aggregate_fields_possibleTypes: string[] = ['e_match_clip_visibility_aggregate_fields'] - export const ise_match_clip_visibility_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_match_clip_visibility_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_clip_visibility_aggregate_fields"') - return e_match_clip_visibility_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_match_clip_visibility_max_fields_possibleTypes: string[] = ['e_match_clip_visibility_max_fields'] - export const ise_match_clip_visibility_max_fields = (obj?: { __typename?: any } | null): obj is e_match_clip_visibility_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_clip_visibility_max_fields"') - return e_match_clip_visibility_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_match_clip_visibility_min_fields_possibleTypes: string[] = ['e_match_clip_visibility_min_fields'] - export const ise_match_clip_visibility_min_fields = (obj?: { __typename?: any } | null): obj is e_match_clip_visibility_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_clip_visibility_min_fields"') - return e_match_clip_visibility_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_match_clip_visibility_mutation_response_possibleTypes: string[] = ['e_match_clip_visibility_mutation_response'] - export const ise_match_clip_visibility_mutation_response = (obj?: { __typename?: any } | null): obj is e_match_clip_visibility_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_clip_visibility_mutation_response"') - return e_match_clip_visibility_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_match_map_status_possibleTypes: string[] = ['e_match_map_status'] - export const ise_match_map_status = (obj?: { __typename?: any } | null): obj is e_match_map_status => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_map_status"') - return e_match_map_status_possibleTypes.includes(obj.__typename) - } - - - - const e_match_map_status_aggregate_possibleTypes: string[] = ['e_match_map_status_aggregate'] - export const ise_match_map_status_aggregate = (obj?: { __typename?: any } | null): obj is e_match_map_status_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_map_status_aggregate"') - return e_match_map_status_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_match_map_status_aggregate_fields_possibleTypes: string[] = ['e_match_map_status_aggregate_fields'] - export const ise_match_map_status_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_match_map_status_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_map_status_aggregate_fields"') - return e_match_map_status_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_match_map_status_max_fields_possibleTypes: string[] = ['e_match_map_status_max_fields'] - export const ise_match_map_status_max_fields = (obj?: { __typename?: any } | null): obj is e_match_map_status_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_map_status_max_fields"') - return e_match_map_status_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_match_map_status_min_fields_possibleTypes: string[] = ['e_match_map_status_min_fields'] - export const ise_match_map_status_min_fields = (obj?: { __typename?: any } | null): obj is e_match_map_status_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_map_status_min_fields"') - return e_match_map_status_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_match_map_status_mutation_response_possibleTypes: string[] = ['e_match_map_status_mutation_response'] - export const ise_match_map_status_mutation_response = (obj?: { __typename?: any } | null): obj is e_match_map_status_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_map_status_mutation_response"') - return e_match_map_status_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_match_mode_possibleTypes: string[] = ['e_match_mode'] - export const ise_match_mode = (obj?: { __typename?: any } | null): obj is e_match_mode => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_mode"') - return e_match_mode_possibleTypes.includes(obj.__typename) - } - - - - const e_match_mode_aggregate_possibleTypes: string[] = ['e_match_mode_aggregate'] - export const ise_match_mode_aggregate = (obj?: { __typename?: any } | null): obj is e_match_mode_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_mode_aggregate"') - return e_match_mode_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_match_mode_aggregate_fields_possibleTypes: string[] = ['e_match_mode_aggregate_fields'] - export const ise_match_mode_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_match_mode_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_mode_aggregate_fields"') - return e_match_mode_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_match_mode_max_fields_possibleTypes: string[] = ['e_match_mode_max_fields'] - export const ise_match_mode_max_fields = (obj?: { __typename?: any } | null): obj is e_match_mode_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_mode_max_fields"') - return e_match_mode_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_match_mode_min_fields_possibleTypes: string[] = ['e_match_mode_min_fields'] - export const ise_match_mode_min_fields = (obj?: { __typename?: any } | null): obj is e_match_mode_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_mode_min_fields"') - return e_match_mode_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_match_mode_mutation_response_possibleTypes: string[] = ['e_match_mode_mutation_response'] - export const ise_match_mode_mutation_response = (obj?: { __typename?: any } | null): obj is e_match_mode_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_mode_mutation_response"') - return e_match_mode_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_match_party_sources_possibleTypes: string[] = ['e_match_party_sources'] - export const ise_match_party_sources = (obj?: { __typename?: any } | null): obj is e_match_party_sources => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_party_sources"') - return e_match_party_sources_possibleTypes.includes(obj.__typename) - } - - - - const e_match_party_sources_aggregate_possibleTypes: string[] = ['e_match_party_sources_aggregate'] - export const ise_match_party_sources_aggregate = (obj?: { __typename?: any } | null): obj is e_match_party_sources_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_party_sources_aggregate"') - return e_match_party_sources_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_match_party_sources_aggregate_fields_possibleTypes: string[] = ['e_match_party_sources_aggregate_fields'] - export const ise_match_party_sources_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_match_party_sources_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_party_sources_aggregate_fields"') - return e_match_party_sources_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_match_party_sources_max_fields_possibleTypes: string[] = ['e_match_party_sources_max_fields'] - export const ise_match_party_sources_max_fields = (obj?: { __typename?: any } | null): obj is e_match_party_sources_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_party_sources_max_fields"') - return e_match_party_sources_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_match_party_sources_min_fields_possibleTypes: string[] = ['e_match_party_sources_min_fields'] - export const ise_match_party_sources_min_fields = (obj?: { __typename?: any } | null): obj is e_match_party_sources_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_party_sources_min_fields"') - return e_match_party_sources_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_match_party_sources_mutation_response_possibleTypes: string[] = ['e_match_party_sources_mutation_response'] - export const ise_match_party_sources_mutation_response = (obj?: { __typename?: any } | null): obj is e_match_party_sources_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_party_sources_mutation_response"') - return e_match_party_sources_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_match_status_possibleTypes: string[] = ['e_match_status'] - export const ise_match_status = (obj?: { __typename?: any } | null): obj is e_match_status => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_status"') - return e_match_status_possibleTypes.includes(obj.__typename) - } - - - - const e_match_status_aggregate_possibleTypes: string[] = ['e_match_status_aggregate'] - export const ise_match_status_aggregate = (obj?: { __typename?: any } | null): obj is e_match_status_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_status_aggregate"') - return e_match_status_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_match_status_aggregate_fields_possibleTypes: string[] = ['e_match_status_aggregate_fields'] - export const ise_match_status_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_match_status_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_status_aggregate_fields"') - return e_match_status_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_match_status_max_fields_possibleTypes: string[] = ['e_match_status_max_fields'] - export const ise_match_status_max_fields = (obj?: { __typename?: any } | null): obj is e_match_status_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_status_max_fields"') - return e_match_status_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_match_status_min_fields_possibleTypes: string[] = ['e_match_status_min_fields'] - export const ise_match_status_min_fields = (obj?: { __typename?: any } | null): obj is e_match_status_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_status_min_fields"') - return e_match_status_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_match_status_mutation_response_possibleTypes: string[] = ['e_match_status_mutation_response'] - export const ise_match_status_mutation_response = (obj?: { __typename?: any } | null): obj is e_match_status_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_status_mutation_response"') - return e_match_status_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_match_types_possibleTypes: string[] = ['e_match_types'] - export const ise_match_types = (obj?: { __typename?: any } | null): obj is e_match_types => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_types"') - return e_match_types_possibleTypes.includes(obj.__typename) - } - - - - const e_match_types_aggregate_possibleTypes: string[] = ['e_match_types_aggregate'] - export const ise_match_types_aggregate = (obj?: { __typename?: any } | null): obj is e_match_types_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_types_aggregate"') - return e_match_types_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_match_types_aggregate_fields_possibleTypes: string[] = ['e_match_types_aggregate_fields'] - export const ise_match_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_match_types_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_types_aggregate_fields"') - return e_match_types_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_match_types_max_fields_possibleTypes: string[] = ['e_match_types_max_fields'] - export const ise_match_types_max_fields = (obj?: { __typename?: any } | null): obj is e_match_types_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_types_max_fields"') - return e_match_types_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_match_types_min_fields_possibleTypes: string[] = ['e_match_types_min_fields'] - export const ise_match_types_min_fields = (obj?: { __typename?: any } | null): obj is e_match_types_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_types_min_fields"') - return e_match_types_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_match_types_mutation_response_possibleTypes: string[] = ['e_match_types_mutation_response'] - export const ise_match_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_match_types_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_types_mutation_response"') - return e_match_types_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_notification_types_possibleTypes: string[] = ['e_notification_types'] - export const ise_notification_types = (obj?: { __typename?: any } | null): obj is e_notification_types => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_notification_types"') - return e_notification_types_possibleTypes.includes(obj.__typename) - } - - - - const e_notification_types_aggregate_possibleTypes: string[] = ['e_notification_types_aggregate'] - export const ise_notification_types_aggregate = (obj?: { __typename?: any } | null): obj is e_notification_types_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_notification_types_aggregate"') - return e_notification_types_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_notification_types_aggregate_fields_possibleTypes: string[] = ['e_notification_types_aggregate_fields'] - export const ise_notification_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_notification_types_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_notification_types_aggregate_fields"') - return e_notification_types_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_notification_types_max_fields_possibleTypes: string[] = ['e_notification_types_max_fields'] - export const ise_notification_types_max_fields = (obj?: { __typename?: any } | null): obj is e_notification_types_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_notification_types_max_fields"') - return e_notification_types_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_notification_types_min_fields_possibleTypes: string[] = ['e_notification_types_min_fields'] - export const ise_notification_types_min_fields = (obj?: { __typename?: any } | null): obj is e_notification_types_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_notification_types_min_fields"') - return e_notification_types_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_notification_types_mutation_response_possibleTypes: string[] = ['e_notification_types_mutation_response'] - export const ise_notification_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_notification_types_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_notification_types_mutation_response"') - return e_notification_types_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_objective_types_possibleTypes: string[] = ['e_objective_types'] - export const ise_objective_types = (obj?: { __typename?: any } | null): obj is e_objective_types => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_objective_types"') - return e_objective_types_possibleTypes.includes(obj.__typename) - } - - - - const e_objective_types_aggregate_possibleTypes: string[] = ['e_objective_types_aggregate'] - export const ise_objective_types_aggregate = (obj?: { __typename?: any } | null): obj is e_objective_types_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_objective_types_aggregate"') - return e_objective_types_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_objective_types_aggregate_fields_possibleTypes: string[] = ['e_objective_types_aggregate_fields'] - export const ise_objective_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_objective_types_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_objective_types_aggregate_fields"') - return e_objective_types_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_objective_types_max_fields_possibleTypes: string[] = ['e_objective_types_max_fields'] - export const ise_objective_types_max_fields = (obj?: { __typename?: any } | null): obj is e_objective_types_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_objective_types_max_fields"') - return e_objective_types_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_objective_types_min_fields_possibleTypes: string[] = ['e_objective_types_min_fields'] - export const ise_objective_types_min_fields = (obj?: { __typename?: any } | null): obj is e_objective_types_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_objective_types_min_fields"') - return e_objective_types_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_objective_types_mutation_response_possibleTypes: string[] = ['e_objective_types_mutation_response'] - export const ise_objective_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_objective_types_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_objective_types_mutation_response"') - return e_objective_types_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_player_roles_possibleTypes: string[] = ['e_player_roles'] - export const ise_player_roles = (obj?: { __typename?: any } | null): obj is e_player_roles => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_player_roles"') - return e_player_roles_possibleTypes.includes(obj.__typename) - } - - - - const e_player_roles_aggregate_possibleTypes: string[] = ['e_player_roles_aggregate'] - export const ise_player_roles_aggregate = (obj?: { __typename?: any } | null): obj is e_player_roles_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_player_roles_aggregate"') - return e_player_roles_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_player_roles_aggregate_fields_possibleTypes: string[] = ['e_player_roles_aggregate_fields'] - export const ise_player_roles_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_player_roles_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_player_roles_aggregate_fields"') - return e_player_roles_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_player_roles_max_fields_possibleTypes: string[] = ['e_player_roles_max_fields'] - export const ise_player_roles_max_fields = (obj?: { __typename?: any } | null): obj is e_player_roles_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_player_roles_max_fields"') - return e_player_roles_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_player_roles_min_fields_possibleTypes: string[] = ['e_player_roles_min_fields'] - export const ise_player_roles_min_fields = (obj?: { __typename?: any } | null): obj is e_player_roles_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_player_roles_min_fields"') - return e_player_roles_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_player_roles_mutation_response_possibleTypes: string[] = ['e_player_roles_mutation_response'] - export const ise_player_roles_mutation_response = (obj?: { __typename?: any } | null): obj is e_player_roles_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_player_roles_mutation_response"') - return e_player_roles_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_plugin_runtimes_possibleTypes: string[] = ['e_plugin_runtimes'] - export const ise_plugin_runtimes = (obj?: { __typename?: any } | null): obj is e_plugin_runtimes => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_plugin_runtimes"') - return e_plugin_runtimes_possibleTypes.includes(obj.__typename) - } - - - - const e_plugin_runtimes_aggregate_possibleTypes: string[] = ['e_plugin_runtimes_aggregate'] - export const ise_plugin_runtimes_aggregate = (obj?: { __typename?: any } | null): obj is e_plugin_runtimes_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_plugin_runtimes_aggregate"') - return e_plugin_runtimes_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_plugin_runtimes_aggregate_fields_possibleTypes: string[] = ['e_plugin_runtimes_aggregate_fields'] - export const ise_plugin_runtimes_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_plugin_runtimes_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_plugin_runtimes_aggregate_fields"') - return e_plugin_runtimes_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_plugin_runtimes_max_fields_possibleTypes: string[] = ['e_plugin_runtimes_max_fields'] - export const ise_plugin_runtimes_max_fields = (obj?: { __typename?: any } | null): obj is e_plugin_runtimes_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_plugin_runtimes_max_fields"') - return e_plugin_runtimes_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_plugin_runtimes_min_fields_possibleTypes: string[] = ['e_plugin_runtimes_min_fields'] - export const ise_plugin_runtimes_min_fields = (obj?: { __typename?: any } | null): obj is e_plugin_runtimes_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_plugin_runtimes_min_fields"') - return e_plugin_runtimes_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_plugin_runtimes_mutation_response_possibleTypes: string[] = ['e_plugin_runtimes_mutation_response'] - export const ise_plugin_runtimes_mutation_response = (obj?: { __typename?: any } | null): obj is e_plugin_runtimes_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_plugin_runtimes_mutation_response"') - return e_plugin_runtimes_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_ready_settings_possibleTypes: string[] = ['e_ready_settings'] - export const ise_ready_settings = (obj?: { __typename?: any } | null): obj is e_ready_settings => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_ready_settings"') - return e_ready_settings_possibleTypes.includes(obj.__typename) - } - - - - const e_ready_settings_aggregate_possibleTypes: string[] = ['e_ready_settings_aggregate'] - export const ise_ready_settings_aggregate = (obj?: { __typename?: any } | null): obj is e_ready_settings_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_ready_settings_aggregate"') - return e_ready_settings_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_ready_settings_aggregate_fields_possibleTypes: string[] = ['e_ready_settings_aggregate_fields'] - export const ise_ready_settings_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_ready_settings_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_ready_settings_aggregate_fields"') - return e_ready_settings_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_ready_settings_max_fields_possibleTypes: string[] = ['e_ready_settings_max_fields'] - export const ise_ready_settings_max_fields = (obj?: { __typename?: any } | null): obj is e_ready_settings_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_ready_settings_max_fields"') - return e_ready_settings_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_ready_settings_min_fields_possibleTypes: string[] = ['e_ready_settings_min_fields'] - export const ise_ready_settings_min_fields = (obj?: { __typename?: any } | null): obj is e_ready_settings_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_ready_settings_min_fields"') - return e_ready_settings_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_ready_settings_mutation_response_possibleTypes: string[] = ['e_ready_settings_mutation_response'] - export const ise_ready_settings_mutation_response = (obj?: { __typename?: any } | null): obj is e_ready_settings_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_ready_settings_mutation_response"') - return e_ready_settings_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_sanction_scopes_possibleTypes: string[] = ['e_sanction_scopes'] - export const ise_sanction_scopes = (obj?: { __typename?: any } | null): obj is e_sanction_scopes => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_scopes"') - return e_sanction_scopes_possibleTypes.includes(obj.__typename) - } - - - - const e_sanction_scopes_aggregate_possibleTypes: string[] = ['e_sanction_scopes_aggregate'] - export const ise_sanction_scopes_aggregate = (obj?: { __typename?: any } | null): obj is e_sanction_scopes_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_scopes_aggregate"') - return e_sanction_scopes_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_sanction_scopes_aggregate_fields_possibleTypes: string[] = ['e_sanction_scopes_aggregate_fields'] - export const ise_sanction_scopes_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_sanction_scopes_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_scopes_aggregate_fields"') - return e_sanction_scopes_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_sanction_scopes_max_fields_possibleTypes: string[] = ['e_sanction_scopes_max_fields'] - export const ise_sanction_scopes_max_fields = (obj?: { __typename?: any } | null): obj is e_sanction_scopes_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_scopes_max_fields"') - return e_sanction_scopes_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_sanction_scopes_min_fields_possibleTypes: string[] = ['e_sanction_scopes_min_fields'] - export const ise_sanction_scopes_min_fields = (obj?: { __typename?: any } | null): obj is e_sanction_scopes_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_scopes_min_fields"') - return e_sanction_scopes_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_sanction_scopes_mutation_response_possibleTypes: string[] = ['e_sanction_scopes_mutation_response'] - export const ise_sanction_scopes_mutation_response = (obj?: { __typename?: any } | null): obj is e_sanction_scopes_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_scopes_mutation_response"') - return e_sanction_scopes_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_sanction_sources_possibleTypes: string[] = ['e_sanction_sources'] - export const ise_sanction_sources = (obj?: { __typename?: any } | null): obj is e_sanction_sources => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_sources"') - return e_sanction_sources_possibleTypes.includes(obj.__typename) - } - - - - const e_sanction_sources_aggregate_possibleTypes: string[] = ['e_sanction_sources_aggregate'] - export const ise_sanction_sources_aggregate = (obj?: { __typename?: any } | null): obj is e_sanction_sources_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_sources_aggregate"') - return e_sanction_sources_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_sanction_sources_aggregate_fields_possibleTypes: string[] = ['e_sanction_sources_aggregate_fields'] - export const ise_sanction_sources_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_sanction_sources_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_sources_aggregate_fields"') - return e_sanction_sources_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_sanction_sources_avg_fields_possibleTypes: string[] = ['e_sanction_sources_avg_fields'] - export const ise_sanction_sources_avg_fields = (obj?: { __typename?: any } | null): obj is e_sanction_sources_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_sources_avg_fields"') - return e_sanction_sources_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_sanction_sources_max_fields_possibleTypes: string[] = ['e_sanction_sources_max_fields'] - export const ise_sanction_sources_max_fields = (obj?: { __typename?: any } | null): obj is e_sanction_sources_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_sources_max_fields"') - return e_sanction_sources_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_sanction_sources_min_fields_possibleTypes: string[] = ['e_sanction_sources_min_fields'] - export const ise_sanction_sources_min_fields = (obj?: { __typename?: any } | null): obj is e_sanction_sources_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_sources_min_fields"') - return e_sanction_sources_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_sanction_sources_mutation_response_possibleTypes: string[] = ['e_sanction_sources_mutation_response'] - export const ise_sanction_sources_mutation_response = (obj?: { __typename?: any } | null): obj is e_sanction_sources_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_sources_mutation_response"') - return e_sanction_sources_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_sanction_sources_stddev_fields_possibleTypes: string[] = ['e_sanction_sources_stddev_fields'] - export const ise_sanction_sources_stddev_fields = (obj?: { __typename?: any } | null): obj is e_sanction_sources_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_sources_stddev_fields"') - return e_sanction_sources_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_sanction_sources_stddev_pop_fields_possibleTypes: string[] = ['e_sanction_sources_stddev_pop_fields'] - export const ise_sanction_sources_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is e_sanction_sources_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_sources_stddev_pop_fields"') - return e_sanction_sources_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_sanction_sources_stddev_samp_fields_possibleTypes: string[] = ['e_sanction_sources_stddev_samp_fields'] - export const ise_sanction_sources_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is e_sanction_sources_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_sources_stddev_samp_fields"') - return e_sanction_sources_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_sanction_sources_sum_fields_possibleTypes: string[] = ['e_sanction_sources_sum_fields'] - export const ise_sanction_sources_sum_fields = (obj?: { __typename?: any } | null): obj is e_sanction_sources_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_sources_sum_fields"') - return e_sanction_sources_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_sanction_sources_var_pop_fields_possibleTypes: string[] = ['e_sanction_sources_var_pop_fields'] - export const ise_sanction_sources_var_pop_fields = (obj?: { __typename?: any } | null): obj is e_sanction_sources_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_sources_var_pop_fields"') - return e_sanction_sources_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_sanction_sources_var_samp_fields_possibleTypes: string[] = ['e_sanction_sources_var_samp_fields'] - export const ise_sanction_sources_var_samp_fields = (obj?: { __typename?: any } | null): obj is e_sanction_sources_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_sources_var_samp_fields"') - return e_sanction_sources_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_sanction_sources_variance_fields_possibleTypes: string[] = ['e_sanction_sources_variance_fields'] - export const ise_sanction_sources_variance_fields = (obj?: { __typename?: any } | null): obj is e_sanction_sources_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_sources_variance_fields"') - return e_sanction_sources_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_sanction_types_possibleTypes: string[] = ['e_sanction_types'] - export const ise_sanction_types = (obj?: { __typename?: any } | null): obj is e_sanction_types => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_types"') - return e_sanction_types_possibleTypes.includes(obj.__typename) - } - - - - const e_sanction_types_aggregate_possibleTypes: string[] = ['e_sanction_types_aggregate'] - export const ise_sanction_types_aggregate = (obj?: { __typename?: any } | null): obj is e_sanction_types_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_types_aggregate"') - return e_sanction_types_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_sanction_types_aggregate_fields_possibleTypes: string[] = ['e_sanction_types_aggregate_fields'] - export const ise_sanction_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_sanction_types_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_types_aggregate_fields"') - return e_sanction_types_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_sanction_types_max_fields_possibleTypes: string[] = ['e_sanction_types_max_fields'] - export const ise_sanction_types_max_fields = (obj?: { __typename?: any } | null): obj is e_sanction_types_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_types_max_fields"') - return e_sanction_types_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_sanction_types_min_fields_possibleTypes: string[] = ['e_sanction_types_min_fields'] - export const ise_sanction_types_min_fields = (obj?: { __typename?: any } | null): obj is e_sanction_types_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_types_min_fields"') - return e_sanction_types_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_sanction_types_mutation_response_possibleTypes: string[] = ['e_sanction_types_mutation_response'] - export const ise_sanction_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_sanction_types_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_types_mutation_response"') - return e_sanction_types_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_scrim_request_statuses_possibleTypes: string[] = ['e_scrim_request_statuses'] - export const ise_scrim_request_statuses = (obj?: { __typename?: any } | null): obj is e_scrim_request_statuses => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_scrim_request_statuses"') - return e_scrim_request_statuses_possibleTypes.includes(obj.__typename) - } - - - - const e_scrim_request_statuses_aggregate_possibleTypes: string[] = ['e_scrim_request_statuses_aggregate'] - export const ise_scrim_request_statuses_aggregate = (obj?: { __typename?: any } | null): obj is e_scrim_request_statuses_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_scrim_request_statuses_aggregate"') - return e_scrim_request_statuses_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_scrim_request_statuses_aggregate_fields_possibleTypes: string[] = ['e_scrim_request_statuses_aggregate_fields'] - export const ise_scrim_request_statuses_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_scrim_request_statuses_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_scrim_request_statuses_aggregate_fields"') - return e_scrim_request_statuses_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_scrim_request_statuses_max_fields_possibleTypes: string[] = ['e_scrim_request_statuses_max_fields'] - export const ise_scrim_request_statuses_max_fields = (obj?: { __typename?: any } | null): obj is e_scrim_request_statuses_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_scrim_request_statuses_max_fields"') - return e_scrim_request_statuses_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_scrim_request_statuses_min_fields_possibleTypes: string[] = ['e_scrim_request_statuses_min_fields'] - export const ise_scrim_request_statuses_min_fields = (obj?: { __typename?: any } | null): obj is e_scrim_request_statuses_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_scrim_request_statuses_min_fields"') - return e_scrim_request_statuses_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_scrim_request_statuses_mutation_response_possibleTypes: string[] = ['e_scrim_request_statuses_mutation_response'] - export const ise_scrim_request_statuses_mutation_response = (obj?: { __typename?: any } | null): obj is e_scrim_request_statuses_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_scrim_request_statuses_mutation_response"') - return e_scrim_request_statuses_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_server_types_possibleTypes: string[] = ['e_server_types'] - export const ise_server_types = (obj?: { __typename?: any } | null): obj is e_server_types => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_server_types"') - return e_server_types_possibleTypes.includes(obj.__typename) - } - - - - const e_server_types_aggregate_possibleTypes: string[] = ['e_server_types_aggregate'] - export const ise_server_types_aggregate = (obj?: { __typename?: any } | null): obj is e_server_types_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_server_types_aggregate"') - return e_server_types_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_server_types_aggregate_fields_possibleTypes: string[] = ['e_server_types_aggregate_fields'] - export const ise_server_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_server_types_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_server_types_aggregate_fields"') - return e_server_types_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_server_types_max_fields_possibleTypes: string[] = ['e_server_types_max_fields'] - export const ise_server_types_max_fields = (obj?: { __typename?: any } | null): obj is e_server_types_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_server_types_max_fields"') - return e_server_types_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_server_types_min_fields_possibleTypes: string[] = ['e_server_types_min_fields'] - export const ise_server_types_min_fields = (obj?: { __typename?: any } | null): obj is e_server_types_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_server_types_min_fields"') - return e_server_types_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_server_types_mutation_response_possibleTypes: string[] = ['e_server_types_mutation_response'] - export const ise_server_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_server_types_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_server_types_mutation_response"') - return e_server_types_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_sides_possibleTypes: string[] = ['e_sides'] - export const ise_sides = (obj?: { __typename?: any } | null): obj is e_sides => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_sides"') - return e_sides_possibleTypes.includes(obj.__typename) - } - - - - const e_sides_aggregate_possibleTypes: string[] = ['e_sides_aggregate'] - export const ise_sides_aggregate = (obj?: { __typename?: any } | null): obj is e_sides_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_sides_aggregate"') - return e_sides_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_sides_aggregate_fields_possibleTypes: string[] = ['e_sides_aggregate_fields'] - export const ise_sides_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_sides_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_sides_aggregate_fields"') - return e_sides_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_sides_max_fields_possibleTypes: string[] = ['e_sides_max_fields'] - export const ise_sides_max_fields = (obj?: { __typename?: any } | null): obj is e_sides_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_sides_max_fields"') - return e_sides_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_sides_min_fields_possibleTypes: string[] = ['e_sides_min_fields'] - export const ise_sides_min_fields = (obj?: { __typename?: any } | null): obj is e_sides_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_sides_min_fields"') - return e_sides_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_sides_mutation_response_possibleTypes: string[] = ['e_sides_mutation_response'] - export const ise_sides_mutation_response = (obj?: { __typename?: any } | null): obj is e_sides_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_sides_mutation_response"') - return e_sides_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_system_alert_types_possibleTypes: string[] = ['e_system_alert_types'] - export const ise_system_alert_types = (obj?: { __typename?: any } | null): obj is e_system_alert_types => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_system_alert_types"') - return e_system_alert_types_possibleTypes.includes(obj.__typename) - } - - - - const e_system_alert_types_aggregate_possibleTypes: string[] = ['e_system_alert_types_aggregate'] - export const ise_system_alert_types_aggregate = (obj?: { __typename?: any } | null): obj is e_system_alert_types_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_system_alert_types_aggregate"') - return e_system_alert_types_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_system_alert_types_aggregate_fields_possibleTypes: string[] = ['e_system_alert_types_aggregate_fields'] - export const ise_system_alert_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_system_alert_types_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_system_alert_types_aggregate_fields"') - return e_system_alert_types_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_system_alert_types_max_fields_possibleTypes: string[] = ['e_system_alert_types_max_fields'] - export const ise_system_alert_types_max_fields = (obj?: { __typename?: any } | null): obj is e_system_alert_types_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_system_alert_types_max_fields"') - return e_system_alert_types_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_system_alert_types_min_fields_possibleTypes: string[] = ['e_system_alert_types_min_fields'] - export const ise_system_alert_types_min_fields = (obj?: { __typename?: any } | null): obj is e_system_alert_types_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_system_alert_types_min_fields"') - return e_system_alert_types_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_system_alert_types_mutation_response_possibleTypes: string[] = ['e_system_alert_types_mutation_response'] - export const ise_system_alert_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_system_alert_types_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_system_alert_types_mutation_response"') - return e_system_alert_types_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_team_roles_possibleTypes: string[] = ['e_team_roles'] - export const ise_team_roles = (obj?: { __typename?: any } | null): obj is e_team_roles => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roles"') - return e_team_roles_possibleTypes.includes(obj.__typename) - } - - - - const e_team_roles_aggregate_possibleTypes: string[] = ['e_team_roles_aggregate'] - export const ise_team_roles_aggregate = (obj?: { __typename?: any } | null): obj is e_team_roles_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roles_aggregate"') - return e_team_roles_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_team_roles_aggregate_fields_possibleTypes: string[] = ['e_team_roles_aggregate_fields'] - export const ise_team_roles_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_team_roles_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roles_aggregate_fields"') - return e_team_roles_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_team_roles_max_fields_possibleTypes: string[] = ['e_team_roles_max_fields'] - export const ise_team_roles_max_fields = (obj?: { __typename?: any } | null): obj is e_team_roles_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roles_max_fields"') - return e_team_roles_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_team_roles_min_fields_possibleTypes: string[] = ['e_team_roles_min_fields'] - export const ise_team_roles_min_fields = (obj?: { __typename?: any } | null): obj is e_team_roles_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roles_min_fields"') - return e_team_roles_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_team_roles_mutation_response_possibleTypes: string[] = ['e_team_roles_mutation_response'] - export const ise_team_roles_mutation_response = (obj?: { __typename?: any } | null): obj is e_team_roles_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roles_mutation_response"') - return e_team_roles_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_team_roster_statuses_possibleTypes: string[] = ['e_team_roster_statuses'] - export const ise_team_roster_statuses = (obj?: { __typename?: any } | null): obj is e_team_roster_statuses => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roster_statuses"') - return e_team_roster_statuses_possibleTypes.includes(obj.__typename) - } - - - - const e_team_roster_statuses_aggregate_possibleTypes: string[] = ['e_team_roster_statuses_aggregate'] - export const ise_team_roster_statuses_aggregate = (obj?: { __typename?: any } | null): obj is e_team_roster_statuses_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roster_statuses_aggregate"') - return e_team_roster_statuses_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_team_roster_statuses_aggregate_fields_possibleTypes: string[] = ['e_team_roster_statuses_aggregate_fields'] - export const ise_team_roster_statuses_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_team_roster_statuses_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roster_statuses_aggregate_fields"') - return e_team_roster_statuses_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_team_roster_statuses_max_fields_possibleTypes: string[] = ['e_team_roster_statuses_max_fields'] - export const ise_team_roster_statuses_max_fields = (obj?: { __typename?: any } | null): obj is e_team_roster_statuses_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roster_statuses_max_fields"') - return e_team_roster_statuses_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_team_roster_statuses_min_fields_possibleTypes: string[] = ['e_team_roster_statuses_min_fields'] - export const ise_team_roster_statuses_min_fields = (obj?: { __typename?: any } | null): obj is e_team_roster_statuses_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roster_statuses_min_fields"') - return e_team_roster_statuses_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_team_roster_statuses_mutation_response_possibleTypes: string[] = ['e_team_roster_statuses_mutation_response'] - export const ise_team_roster_statuses_mutation_response = (obj?: { __typename?: any } | null): obj is e_team_roster_statuses_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roster_statuses_mutation_response"') - return e_team_roster_statuses_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_timeout_settings_possibleTypes: string[] = ['e_timeout_settings'] - export const ise_timeout_settings = (obj?: { __typename?: any } | null): obj is e_timeout_settings => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_timeout_settings"') - return e_timeout_settings_possibleTypes.includes(obj.__typename) - } - - - - const e_timeout_settings_aggregate_possibleTypes: string[] = ['e_timeout_settings_aggregate'] - export const ise_timeout_settings_aggregate = (obj?: { __typename?: any } | null): obj is e_timeout_settings_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_timeout_settings_aggregate"') - return e_timeout_settings_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_timeout_settings_aggregate_fields_possibleTypes: string[] = ['e_timeout_settings_aggregate_fields'] - export const ise_timeout_settings_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_timeout_settings_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_timeout_settings_aggregate_fields"') - return e_timeout_settings_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_timeout_settings_max_fields_possibleTypes: string[] = ['e_timeout_settings_max_fields'] - export const ise_timeout_settings_max_fields = (obj?: { __typename?: any } | null): obj is e_timeout_settings_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_timeout_settings_max_fields"') - return e_timeout_settings_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_timeout_settings_min_fields_possibleTypes: string[] = ['e_timeout_settings_min_fields'] - export const ise_timeout_settings_min_fields = (obj?: { __typename?: any } | null): obj is e_timeout_settings_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_timeout_settings_min_fields"') - return e_timeout_settings_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_timeout_settings_mutation_response_possibleTypes: string[] = ['e_timeout_settings_mutation_response'] - export const ise_timeout_settings_mutation_response = (obj?: { __typename?: any } | null): obj is e_timeout_settings_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_timeout_settings_mutation_response"') - return e_timeout_settings_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_tournament_categories_possibleTypes: string[] = ['e_tournament_categories'] - export const ise_tournament_categories = (obj?: { __typename?: any } | null): obj is e_tournament_categories => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_categories"') - return e_tournament_categories_possibleTypes.includes(obj.__typename) - } - - - - const e_tournament_categories_aggregate_possibleTypes: string[] = ['e_tournament_categories_aggregate'] - export const ise_tournament_categories_aggregate = (obj?: { __typename?: any } | null): obj is e_tournament_categories_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_categories_aggregate"') - return e_tournament_categories_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_tournament_categories_aggregate_fields_possibleTypes: string[] = ['e_tournament_categories_aggregate_fields'] - export const ise_tournament_categories_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_tournament_categories_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_categories_aggregate_fields"') - return e_tournament_categories_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_tournament_categories_max_fields_possibleTypes: string[] = ['e_tournament_categories_max_fields'] - export const ise_tournament_categories_max_fields = (obj?: { __typename?: any } | null): obj is e_tournament_categories_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_categories_max_fields"') - return e_tournament_categories_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_tournament_categories_min_fields_possibleTypes: string[] = ['e_tournament_categories_min_fields'] - export const ise_tournament_categories_min_fields = (obj?: { __typename?: any } | null): obj is e_tournament_categories_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_categories_min_fields"') - return e_tournament_categories_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_tournament_categories_mutation_response_possibleTypes: string[] = ['e_tournament_categories_mutation_response'] - export const ise_tournament_categories_mutation_response = (obj?: { __typename?: any } | null): obj is e_tournament_categories_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_categories_mutation_response"') - return e_tournament_categories_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_tournament_free_agent_statuses_possibleTypes: string[] = ['e_tournament_free_agent_statuses'] - export const ise_tournament_free_agent_statuses = (obj?: { __typename?: any } | null): obj is e_tournament_free_agent_statuses => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_free_agent_statuses"') - return e_tournament_free_agent_statuses_possibleTypes.includes(obj.__typename) - } - - - - const e_tournament_free_agent_statuses_aggregate_possibleTypes: string[] = ['e_tournament_free_agent_statuses_aggregate'] - export const ise_tournament_free_agent_statuses_aggregate = (obj?: { __typename?: any } | null): obj is e_tournament_free_agent_statuses_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_free_agent_statuses_aggregate"') - return e_tournament_free_agent_statuses_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_tournament_free_agent_statuses_aggregate_fields_possibleTypes: string[] = ['e_tournament_free_agent_statuses_aggregate_fields'] - export const ise_tournament_free_agent_statuses_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_tournament_free_agent_statuses_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_free_agent_statuses_aggregate_fields"') - return e_tournament_free_agent_statuses_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_tournament_free_agent_statuses_max_fields_possibleTypes: string[] = ['e_tournament_free_agent_statuses_max_fields'] - export const ise_tournament_free_agent_statuses_max_fields = (obj?: { __typename?: any } | null): obj is e_tournament_free_agent_statuses_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_free_agent_statuses_max_fields"') - return e_tournament_free_agent_statuses_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_tournament_free_agent_statuses_min_fields_possibleTypes: string[] = ['e_tournament_free_agent_statuses_min_fields'] - export const ise_tournament_free_agent_statuses_min_fields = (obj?: { __typename?: any } | null): obj is e_tournament_free_agent_statuses_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_free_agent_statuses_min_fields"') - return e_tournament_free_agent_statuses_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_tournament_free_agent_statuses_mutation_response_possibleTypes: string[] = ['e_tournament_free_agent_statuses_mutation_response'] - export const ise_tournament_free_agent_statuses_mutation_response = (obj?: { __typename?: any } | null): obj is e_tournament_free_agent_statuses_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_free_agent_statuses_mutation_response"') - return e_tournament_free_agent_statuses_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_tournament_registration_types_possibleTypes: string[] = ['e_tournament_registration_types'] - export const ise_tournament_registration_types = (obj?: { __typename?: any } | null): obj is e_tournament_registration_types => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_registration_types"') - return e_tournament_registration_types_possibleTypes.includes(obj.__typename) - } - - - - const e_tournament_registration_types_aggregate_possibleTypes: string[] = ['e_tournament_registration_types_aggregate'] - export const ise_tournament_registration_types_aggregate = (obj?: { __typename?: any } | null): obj is e_tournament_registration_types_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_registration_types_aggregate"') - return e_tournament_registration_types_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_tournament_registration_types_aggregate_fields_possibleTypes: string[] = ['e_tournament_registration_types_aggregate_fields'] - export const ise_tournament_registration_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_tournament_registration_types_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_registration_types_aggregate_fields"') - return e_tournament_registration_types_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_tournament_registration_types_max_fields_possibleTypes: string[] = ['e_tournament_registration_types_max_fields'] - export const ise_tournament_registration_types_max_fields = (obj?: { __typename?: any } | null): obj is e_tournament_registration_types_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_registration_types_max_fields"') - return e_tournament_registration_types_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_tournament_registration_types_min_fields_possibleTypes: string[] = ['e_tournament_registration_types_min_fields'] - export const ise_tournament_registration_types_min_fields = (obj?: { __typename?: any } | null): obj is e_tournament_registration_types_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_registration_types_min_fields"') - return e_tournament_registration_types_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_tournament_registration_types_mutation_response_possibleTypes: string[] = ['e_tournament_registration_types_mutation_response'] - export const ise_tournament_registration_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_tournament_registration_types_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_registration_types_mutation_response"') - return e_tournament_registration_types_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_tournament_stage_types_possibleTypes: string[] = ['e_tournament_stage_types'] - export const ise_tournament_stage_types = (obj?: { __typename?: any } | null): obj is e_tournament_stage_types => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_stage_types"') - return e_tournament_stage_types_possibleTypes.includes(obj.__typename) - } - - - - const e_tournament_stage_types_aggregate_possibleTypes: string[] = ['e_tournament_stage_types_aggregate'] - export const ise_tournament_stage_types_aggregate = (obj?: { __typename?: any } | null): obj is e_tournament_stage_types_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_stage_types_aggregate"') - return e_tournament_stage_types_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_tournament_stage_types_aggregate_fields_possibleTypes: string[] = ['e_tournament_stage_types_aggregate_fields'] - export const ise_tournament_stage_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_tournament_stage_types_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_stage_types_aggregate_fields"') - return e_tournament_stage_types_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_tournament_stage_types_max_fields_possibleTypes: string[] = ['e_tournament_stage_types_max_fields'] - export const ise_tournament_stage_types_max_fields = (obj?: { __typename?: any } | null): obj is e_tournament_stage_types_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_stage_types_max_fields"') - return e_tournament_stage_types_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_tournament_stage_types_min_fields_possibleTypes: string[] = ['e_tournament_stage_types_min_fields'] - export const ise_tournament_stage_types_min_fields = (obj?: { __typename?: any } | null): obj is e_tournament_stage_types_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_stage_types_min_fields"') - return e_tournament_stage_types_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_tournament_stage_types_mutation_response_possibleTypes: string[] = ['e_tournament_stage_types_mutation_response'] - export const ise_tournament_stage_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_tournament_stage_types_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_stage_types_mutation_response"') - return e_tournament_stage_types_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_tournament_status_possibleTypes: string[] = ['e_tournament_status'] - export const ise_tournament_status = (obj?: { __typename?: any } | null): obj is e_tournament_status => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_status"') - return e_tournament_status_possibleTypes.includes(obj.__typename) - } - - - - const e_tournament_status_aggregate_possibleTypes: string[] = ['e_tournament_status_aggregate'] - export const ise_tournament_status_aggregate = (obj?: { __typename?: any } | null): obj is e_tournament_status_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_status_aggregate"') - return e_tournament_status_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_tournament_status_aggregate_fields_possibleTypes: string[] = ['e_tournament_status_aggregate_fields'] - export const ise_tournament_status_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_tournament_status_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_status_aggregate_fields"') - return e_tournament_status_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_tournament_status_max_fields_possibleTypes: string[] = ['e_tournament_status_max_fields'] - export const ise_tournament_status_max_fields = (obj?: { __typename?: any } | null): obj is e_tournament_status_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_status_max_fields"') - return e_tournament_status_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_tournament_status_min_fields_possibleTypes: string[] = ['e_tournament_status_min_fields'] - export const ise_tournament_status_min_fields = (obj?: { __typename?: any } | null): obj is e_tournament_status_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_status_min_fields"') - return e_tournament_status_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_tournament_status_mutation_response_possibleTypes: string[] = ['e_tournament_status_mutation_response'] - export const ise_tournament_status_mutation_response = (obj?: { __typename?: any } | null): obj is e_tournament_status_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_status_mutation_response"') - return e_tournament_status_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_utility_practice_access_possibleTypes: string[] = ['e_utility_practice_access'] - export const ise_utility_practice_access = (obj?: { __typename?: any } | null): obj is e_utility_practice_access => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_practice_access"') - return e_utility_practice_access_possibleTypes.includes(obj.__typename) - } - - - - const e_utility_practice_access_aggregate_possibleTypes: string[] = ['e_utility_practice_access_aggregate'] - export const ise_utility_practice_access_aggregate = (obj?: { __typename?: any } | null): obj is e_utility_practice_access_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_practice_access_aggregate"') - return e_utility_practice_access_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_utility_practice_access_aggregate_fields_possibleTypes: string[] = ['e_utility_practice_access_aggregate_fields'] - export const ise_utility_practice_access_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_utility_practice_access_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_practice_access_aggregate_fields"') - return e_utility_practice_access_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_utility_practice_access_max_fields_possibleTypes: string[] = ['e_utility_practice_access_max_fields'] - export const ise_utility_practice_access_max_fields = (obj?: { __typename?: any } | null): obj is e_utility_practice_access_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_practice_access_max_fields"') - return e_utility_practice_access_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_utility_practice_access_min_fields_possibleTypes: string[] = ['e_utility_practice_access_min_fields'] - export const ise_utility_practice_access_min_fields = (obj?: { __typename?: any } | null): obj is e_utility_practice_access_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_practice_access_min_fields"') - return e_utility_practice_access_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_utility_practice_access_mutation_response_possibleTypes: string[] = ['e_utility_practice_access_mutation_response'] - export const ise_utility_practice_access_mutation_response = (obj?: { __typename?: any } | null): obj is e_utility_practice_access_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_practice_access_mutation_response"') - return e_utility_practice_access_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_utility_practice_statuses_possibleTypes: string[] = ['e_utility_practice_statuses'] - export const ise_utility_practice_statuses = (obj?: { __typename?: any } | null): obj is e_utility_practice_statuses => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_practice_statuses"') - return e_utility_practice_statuses_possibleTypes.includes(obj.__typename) - } - - - - const e_utility_practice_statuses_aggregate_possibleTypes: string[] = ['e_utility_practice_statuses_aggregate'] - export const ise_utility_practice_statuses_aggregate = (obj?: { __typename?: any } | null): obj is e_utility_practice_statuses_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_practice_statuses_aggregate"') - return e_utility_practice_statuses_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_utility_practice_statuses_aggregate_fields_possibleTypes: string[] = ['e_utility_practice_statuses_aggregate_fields'] - export const ise_utility_practice_statuses_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_utility_practice_statuses_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_practice_statuses_aggregate_fields"') - return e_utility_practice_statuses_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_utility_practice_statuses_max_fields_possibleTypes: string[] = ['e_utility_practice_statuses_max_fields'] - export const ise_utility_practice_statuses_max_fields = (obj?: { __typename?: any } | null): obj is e_utility_practice_statuses_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_practice_statuses_max_fields"') - return e_utility_practice_statuses_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_utility_practice_statuses_min_fields_possibleTypes: string[] = ['e_utility_practice_statuses_min_fields'] - export const ise_utility_practice_statuses_min_fields = (obj?: { __typename?: any } | null): obj is e_utility_practice_statuses_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_practice_statuses_min_fields"') - return e_utility_practice_statuses_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_utility_practice_statuses_mutation_response_possibleTypes: string[] = ['e_utility_practice_statuses_mutation_response'] - export const ise_utility_practice_statuses_mutation_response = (obj?: { __typename?: any } | null): obj is e_utility_practice_statuses_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_practice_statuses_mutation_response"') - return e_utility_practice_statuses_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_utility_sources_possibleTypes: string[] = ['e_utility_sources'] - export const ise_utility_sources = (obj?: { __typename?: any } | null): obj is e_utility_sources => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_sources"') - return e_utility_sources_possibleTypes.includes(obj.__typename) - } - - - - const e_utility_sources_aggregate_possibleTypes: string[] = ['e_utility_sources_aggregate'] - export const ise_utility_sources_aggregate = (obj?: { __typename?: any } | null): obj is e_utility_sources_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_sources_aggregate"') - return e_utility_sources_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_utility_sources_aggregate_fields_possibleTypes: string[] = ['e_utility_sources_aggregate_fields'] - export const ise_utility_sources_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_utility_sources_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_sources_aggregate_fields"') - return e_utility_sources_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_utility_sources_max_fields_possibleTypes: string[] = ['e_utility_sources_max_fields'] - export const ise_utility_sources_max_fields = (obj?: { __typename?: any } | null): obj is e_utility_sources_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_sources_max_fields"') - return e_utility_sources_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_utility_sources_min_fields_possibleTypes: string[] = ['e_utility_sources_min_fields'] - export const ise_utility_sources_min_fields = (obj?: { __typename?: any } | null): obj is e_utility_sources_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_sources_min_fields"') - return e_utility_sources_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_utility_sources_mutation_response_possibleTypes: string[] = ['e_utility_sources_mutation_response'] - export const ise_utility_sources_mutation_response = (obj?: { __typename?: any } | null): obj is e_utility_sources_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_sources_mutation_response"') - return e_utility_sources_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_utility_techniques_possibleTypes: string[] = ['e_utility_techniques'] - export const ise_utility_techniques = (obj?: { __typename?: any } | null): obj is e_utility_techniques => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_techniques"') - return e_utility_techniques_possibleTypes.includes(obj.__typename) - } - - - - const e_utility_techniques_aggregate_possibleTypes: string[] = ['e_utility_techniques_aggregate'] - export const ise_utility_techniques_aggregate = (obj?: { __typename?: any } | null): obj is e_utility_techniques_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_techniques_aggregate"') - return e_utility_techniques_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_utility_techniques_aggregate_fields_possibleTypes: string[] = ['e_utility_techniques_aggregate_fields'] - export const ise_utility_techniques_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_utility_techniques_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_techniques_aggregate_fields"') - return e_utility_techniques_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_utility_techniques_max_fields_possibleTypes: string[] = ['e_utility_techniques_max_fields'] - export const ise_utility_techniques_max_fields = (obj?: { __typename?: any } | null): obj is e_utility_techniques_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_techniques_max_fields"') - return e_utility_techniques_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_utility_techniques_min_fields_possibleTypes: string[] = ['e_utility_techniques_min_fields'] - export const ise_utility_techniques_min_fields = (obj?: { __typename?: any } | null): obj is e_utility_techniques_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_techniques_min_fields"') - return e_utility_techniques_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_utility_techniques_mutation_response_possibleTypes: string[] = ['e_utility_techniques_mutation_response'] - export const ise_utility_techniques_mutation_response = (obj?: { __typename?: any } | null): obj is e_utility_techniques_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_techniques_mutation_response"') - return e_utility_techniques_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_utility_throw_strengths_possibleTypes: string[] = ['e_utility_throw_strengths'] - export const ise_utility_throw_strengths = (obj?: { __typename?: any } | null): obj is e_utility_throw_strengths => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_throw_strengths"') - return e_utility_throw_strengths_possibleTypes.includes(obj.__typename) - } - - - - const e_utility_throw_strengths_aggregate_possibleTypes: string[] = ['e_utility_throw_strengths_aggregate'] - export const ise_utility_throw_strengths_aggregate = (obj?: { __typename?: any } | null): obj is e_utility_throw_strengths_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_throw_strengths_aggregate"') - return e_utility_throw_strengths_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_utility_throw_strengths_aggregate_fields_possibleTypes: string[] = ['e_utility_throw_strengths_aggregate_fields'] - export const ise_utility_throw_strengths_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_utility_throw_strengths_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_throw_strengths_aggregate_fields"') - return e_utility_throw_strengths_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_utility_throw_strengths_max_fields_possibleTypes: string[] = ['e_utility_throw_strengths_max_fields'] - export const ise_utility_throw_strengths_max_fields = (obj?: { __typename?: any } | null): obj is e_utility_throw_strengths_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_throw_strengths_max_fields"') - return e_utility_throw_strengths_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_utility_throw_strengths_min_fields_possibleTypes: string[] = ['e_utility_throw_strengths_min_fields'] - export const ise_utility_throw_strengths_min_fields = (obj?: { __typename?: any } | null): obj is e_utility_throw_strengths_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_throw_strengths_min_fields"') - return e_utility_throw_strengths_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_utility_throw_strengths_mutation_response_possibleTypes: string[] = ['e_utility_throw_strengths_mutation_response'] - export const ise_utility_throw_strengths_mutation_response = (obj?: { __typename?: any } | null): obj is e_utility_throw_strengths_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_throw_strengths_mutation_response"') - return e_utility_throw_strengths_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_utility_types_possibleTypes: string[] = ['e_utility_types'] - export const ise_utility_types = (obj?: { __typename?: any } | null): obj is e_utility_types => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_types"') - return e_utility_types_possibleTypes.includes(obj.__typename) - } - - - - const e_utility_types_aggregate_possibleTypes: string[] = ['e_utility_types_aggregate'] - export const ise_utility_types_aggregate = (obj?: { __typename?: any } | null): obj is e_utility_types_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_types_aggregate"') - return e_utility_types_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_utility_types_aggregate_fields_possibleTypes: string[] = ['e_utility_types_aggregate_fields'] - export const ise_utility_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_utility_types_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_types_aggregate_fields"') - return e_utility_types_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_utility_types_max_fields_possibleTypes: string[] = ['e_utility_types_max_fields'] - export const ise_utility_types_max_fields = (obj?: { __typename?: any } | null): obj is e_utility_types_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_types_max_fields"') - return e_utility_types_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_utility_types_min_fields_possibleTypes: string[] = ['e_utility_types_min_fields'] - export const ise_utility_types_min_fields = (obj?: { __typename?: any } | null): obj is e_utility_types_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_types_min_fields"') - return e_utility_types_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_utility_types_mutation_response_possibleTypes: string[] = ['e_utility_types_mutation_response'] - export const ise_utility_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_utility_types_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_types_mutation_response"') - return e_utility_types_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_utility_visibility_possibleTypes: string[] = ['e_utility_visibility'] - export const ise_utility_visibility = (obj?: { __typename?: any } | null): obj is e_utility_visibility => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_visibility"') - return e_utility_visibility_possibleTypes.includes(obj.__typename) - } - - - - const e_utility_visibility_aggregate_possibleTypes: string[] = ['e_utility_visibility_aggregate'] - export const ise_utility_visibility_aggregate = (obj?: { __typename?: any } | null): obj is e_utility_visibility_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_visibility_aggregate"') - return e_utility_visibility_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_utility_visibility_aggregate_fields_possibleTypes: string[] = ['e_utility_visibility_aggregate_fields'] - export const ise_utility_visibility_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_utility_visibility_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_visibility_aggregate_fields"') - return e_utility_visibility_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_utility_visibility_max_fields_possibleTypes: string[] = ['e_utility_visibility_max_fields'] - export const ise_utility_visibility_max_fields = (obj?: { __typename?: any } | null): obj is e_utility_visibility_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_visibility_max_fields"') - return e_utility_visibility_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_utility_visibility_min_fields_possibleTypes: string[] = ['e_utility_visibility_min_fields'] - export const ise_utility_visibility_min_fields = (obj?: { __typename?: any } | null): obj is e_utility_visibility_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_visibility_min_fields"') - return e_utility_visibility_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_utility_visibility_mutation_response_possibleTypes: string[] = ['e_utility_visibility_mutation_response'] - export const ise_utility_visibility_mutation_response = (obj?: { __typename?: any } | null): obj is e_utility_visibility_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_visibility_mutation_response"') - return e_utility_visibility_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_veto_pick_types_possibleTypes: string[] = ['e_veto_pick_types'] - export const ise_veto_pick_types = (obj?: { __typename?: any } | null): obj is e_veto_pick_types => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_veto_pick_types"') - return e_veto_pick_types_possibleTypes.includes(obj.__typename) - } - - - - const e_veto_pick_types_aggregate_possibleTypes: string[] = ['e_veto_pick_types_aggregate'] - export const ise_veto_pick_types_aggregate = (obj?: { __typename?: any } | null): obj is e_veto_pick_types_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_veto_pick_types_aggregate"') - return e_veto_pick_types_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_veto_pick_types_aggregate_fields_possibleTypes: string[] = ['e_veto_pick_types_aggregate_fields'] - export const ise_veto_pick_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_veto_pick_types_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_veto_pick_types_aggregate_fields"') - return e_veto_pick_types_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_veto_pick_types_max_fields_possibleTypes: string[] = ['e_veto_pick_types_max_fields'] - export const ise_veto_pick_types_max_fields = (obj?: { __typename?: any } | null): obj is e_veto_pick_types_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_veto_pick_types_max_fields"') - return e_veto_pick_types_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_veto_pick_types_min_fields_possibleTypes: string[] = ['e_veto_pick_types_min_fields'] - export const ise_veto_pick_types_min_fields = (obj?: { __typename?: any } | null): obj is e_veto_pick_types_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_veto_pick_types_min_fields"') - return e_veto_pick_types_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_veto_pick_types_mutation_response_possibleTypes: string[] = ['e_veto_pick_types_mutation_response'] - export const ise_veto_pick_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_veto_pick_types_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_veto_pick_types_mutation_response"') - return e_veto_pick_types_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const e_winning_reasons_possibleTypes: string[] = ['e_winning_reasons'] - export const ise_winning_reasons = (obj?: { __typename?: any } | null): obj is e_winning_reasons => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_winning_reasons"') - return e_winning_reasons_possibleTypes.includes(obj.__typename) - } - - - - const e_winning_reasons_aggregate_possibleTypes: string[] = ['e_winning_reasons_aggregate'] - export const ise_winning_reasons_aggregate = (obj?: { __typename?: any } | null): obj is e_winning_reasons_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_winning_reasons_aggregate"') - return e_winning_reasons_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const e_winning_reasons_aggregate_fields_possibleTypes: string[] = ['e_winning_reasons_aggregate_fields'] - export const ise_winning_reasons_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_winning_reasons_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_winning_reasons_aggregate_fields"') - return e_winning_reasons_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_winning_reasons_max_fields_possibleTypes: string[] = ['e_winning_reasons_max_fields'] - export const ise_winning_reasons_max_fields = (obj?: { __typename?: any } | null): obj is e_winning_reasons_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_winning_reasons_max_fields"') - return e_winning_reasons_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_winning_reasons_min_fields_possibleTypes: string[] = ['e_winning_reasons_min_fields'] - export const ise_winning_reasons_min_fields = (obj?: { __typename?: any } | null): obj is e_winning_reasons_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_winning_reasons_min_fields"') - return e_winning_reasons_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const e_winning_reasons_mutation_response_possibleTypes: string[] = ['e_winning_reasons_mutation_response'] - export const ise_winning_reasons_mutation_response = (obj?: { __typename?: any } | null): obj is e_winning_reasons_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_winning_reasons_mutation_response"') - return e_winning_reasons_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const event_match_links_possibleTypes: string[] = ['event_match_links'] - export const isevent_match_links = (obj?: { __typename?: any } | null): obj is event_match_links => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_match_links"') - return event_match_links_possibleTypes.includes(obj.__typename) - } - - - - const event_match_links_aggregate_possibleTypes: string[] = ['event_match_links_aggregate'] - export const isevent_match_links_aggregate = (obj?: { __typename?: any } | null): obj is event_match_links_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_match_links_aggregate"') - return event_match_links_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const event_match_links_aggregate_fields_possibleTypes: string[] = ['event_match_links_aggregate_fields'] - export const isevent_match_links_aggregate_fields = (obj?: { __typename?: any } | null): obj is event_match_links_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_match_links_aggregate_fields"') - return event_match_links_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_match_links_max_fields_possibleTypes: string[] = ['event_match_links_max_fields'] - export const isevent_match_links_max_fields = (obj?: { __typename?: any } | null): obj is event_match_links_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_match_links_max_fields"') - return event_match_links_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_match_links_min_fields_possibleTypes: string[] = ['event_match_links_min_fields'] - export const isevent_match_links_min_fields = (obj?: { __typename?: any } | null): obj is event_match_links_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_match_links_min_fields"') - return event_match_links_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_match_links_mutation_response_possibleTypes: string[] = ['event_match_links_mutation_response'] - export const isevent_match_links_mutation_response = (obj?: { __typename?: any } | null): obj is event_match_links_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_match_links_mutation_response"') - return event_match_links_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const event_media_possibleTypes: string[] = ['event_media'] - export const isevent_media = (obj?: { __typename?: any } | null): obj is event_media => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media"') - return event_media_possibleTypes.includes(obj.__typename) - } - - - - const event_media_aggregate_possibleTypes: string[] = ['event_media_aggregate'] - export const isevent_media_aggregate = (obj?: { __typename?: any } | null): obj is event_media_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_aggregate"') - return event_media_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const event_media_aggregate_fields_possibleTypes: string[] = ['event_media_aggregate_fields'] - export const isevent_media_aggregate_fields = (obj?: { __typename?: any } | null): obj is event_media_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_aggregate_fields"') - return event_media_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_media_avg_fields_possibleTypes: string[] = ['event_media_avg_fields'] - export const isevent_media_avg_fields = (obj?: { __typename?: any } | null): obj is event_media_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_avg_fields"') - return event_media_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_media_max_fields_possibleTypes: string[] = ['event_media_max_fields'] - export const isevent_media_max_fields = (obj?: { __typename?: any } | null): obj is event_media_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_max_fields"') - return event_media_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_media_min_fields_possibleTypes: string[] = ['event_media_min_fields'] - export const isevent_media_min_fields = (obj?: { __typename?: any } | null): obj is event_media_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_min_fields"') - return event_media_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_media_mutation_response_possibleTypes: string[] = ['event_media_mutation_response'] - export const isevent_media_mutation_response = (obj?: { __typename?: any } | null): obj is event_media_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_mutation_response"') - return event_media_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const event_media_players_possibleTypes: string[] = ['event_media_players'] - export const isevent_media_players = (obj?: { __typename?: any } | null): obj is event_media_players => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players"') - return event_media_players_possibleTypes.includes(obj.__typename) - } - - - - const event_media_players_aggregate_possibleTypes: string[] = ['event_media_players_aggregate'] - export const isevent_media_players_aggregate = (obj?: { __typename?: any } | null): obj is event_media_players_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_aggregate"') - return event_media_players_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const event_media_players_aggregate_fields_possibleTypes: string[] = ['event_media_players_aggregate_fields'] - export const isevent_media_players_aggregate_fields = (obj?: { __typename?: any } | null): obj is event_media_players_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_aggregate_fields"') - return event_media_players_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_media_players_avg_fields_possibleTypes: string[] = ['event_media_players_avg_fields'] - export const isevent_media_players_avg_fields = (obj?: { __typename?: any } | null): obj is event_media_players_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_avg_fields"') - return event_media_players_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_media_players_max_fields_possibleTypes: string[] = ['event_media_players_max_fields'] - export const isevent_media_players_max_fields = (obj?: { __typename?: any } | null): obj is event_media_players_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_max_fields"') - return event_media_players_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_media_players_min_fields_possibleTypes: string[] = ['event_media_players_min_fields'] - export const isevent_media_players_min_fields = (obj?: { __typename?: any } | null): obj is event_media_players_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_min_fields"') - return event_media_players_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_media_players_mutation_response_possibleTypes: string[] = ['event_media_players_mutation_response'] - export const isevent_media_players_mutation_response = (obj?: { __typename?: any } | null): obj is event_media_players_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_mutation_response"') - return event_media_players_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const event_media_players_stddev_fields_possibleTypes: string[] = ['event_media_players_stddev_fields'] - export const isevent_media_players_stddev_fields = (obj?: { __typename?: any } | null): obj is event_media_players_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_stddev_fields"') - return event_media_players_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_media_players_stddev_pop_fields_possibleTypes: string[] = ['event_media_players_stddev_pop_fields'] - export const isevent_media_players_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is event_media_players_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_stddev_pop_fields"') - return event_media_players_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_media_players_stddev_samp_fields_possibleTypes: string[] = ['event_media_players_stddev_samp_fields'] - export const isevent_media_players_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is event_media_players_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_stddev_samp_fields"') - return event_media_players_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_media_players_sum_fields_possibleTypes: string[] = ['event_media_players_sum_fields'] - export const isevent_media_players_sum_fields = (obj?: { __typename?: any } | null): obj is event_media_players_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_sum_fields"') - return event_media_players_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_media_players_var_pop_fields_possibleTypes: string[] = ['event_media_players_var_pop_fields'] - export const isevent_media_players_var_pop_fields = (obj?: { __typename?: any } | null): obj is event_media_players_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_var_pop_fields"') - return event_media_players_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_media_players_var_samp_fields_possibleTypes: string[] = ['event_media_players_var_samp_fields'] - export const isevent_media_players_var_samp_fields = (obj?: { __typename?: any } | null): obj is event_media_players_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_var_samp_fields"') - return event_media_players_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_media_players_variance_fields_possibleTypes: string[] = ['event_media_players_variance_fields'] - export const isevent_media_players_variance_fields = (obj?: { __typename?: any } | null): obj is event_media_players_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_variance_fields"') - return event_media_players_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_media_stddev_fields_possibleTypes: string[] = ['event_media_stddev_fields'] - export const isevent_media_stddev_fields = (obj?: { __typename?: any } | null): obj is event_media_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_stddev_fields"') - return event_media_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_media_stddev_pop_fields_possibleTypes: string[] = ['event_media_stddev_pop_fields'] - export const isevent_media_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is event_media_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_stddev_pop_fields"') - return event_media_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_media_stddev_samp_fields_possibleTypes: string[] = ['event_media_stddev_samp_fields'] - export const isevent_media_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is event_media_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_stddev_samp_fields"') - return event_media_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_media_sum_fields_possibleTypes: string[] = ['event_media_sum_fields'] - export const isevent_media_sum_fields = (obj?: { __typename?: any } | null): obj is event_media_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_sum_fields"') - return event_media_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_media_var_pop_fields_possibleTypes: string[] = ['event_media_var_pop_fields'] - export const isevent_media_var_pop_fields = (obj?: { __typename?: any } | null): obj is event_media_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_var_pop_fields"') - return event_media_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_media_var_samp_fields_possibleTypes: string[] = ['event_media_var_samp_fields'] - export const isevent_media_var_samp_fields = (obj?: { __typename?: any } | null): obj is event_media_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_var_samp_fields"') - return event_media_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_media_variance_fields_possibleTypes: string[] = ['event_media_variance_fields'] - export const isevent_media_variance_fields = (obj?: { __typename?: any } | null): obj is event_media_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_variance_fields"') - return event_media_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_organizers_possibleTypes: string[] = ['event_organizers'] - export const isevent_organizers = (obj?: { __typename?: any } | null): obj is event_organizers => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers"') - return event_organizers_possibleTypes.includes(obj.__typename) - } - - - - const event_organizers_aggregate_possibleTypes: string[] = ['event_organizers_aggregate'] - export const isevent_organizers_aggregate = (obj?: { __typename?: any } | null): obj is event_organizers_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_aggregate"') - return event_organizers_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const event_organizers_aggregate_fields_possibleTypes: string[] = ['event_organizers_aggregate_fields'] - export const isevent_organizers_aggregate_fields = (obj?: { __typename?: any } | null): obj is event_organizers_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_aggregate_fields"') - return event_organizers_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_organizers_avg_fields_possibleTypes: string[] = ['event_organizers_avg_fields'] - export const isevent_organizers_avg_fields = (obj?: { __typename?: any } | null): obj is event_organizers_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_avg_fields"') - return event_organizers_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_organizers_max_fields_possibleTypes: string[] = ['event_organizers_max_fields'] - export const isevent_organizers_max_fields = (obj?: { __typename?: any } | null): obj is event_organizers_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_max_fields"') - return event_organizers_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_organizers_min_fields_possibleTypes: string[] = ['event_organizers_min_fields'] - export const isevent_organizers_min_fields = (obj?: { __typename?: any } | null): obj is event_organizers_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_min_fields"') - return event_organizers_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_organizers_mutation_response_possibleTypes: string[] = ['event_organizers_mutation_response'] - export const isevent_organizers_mutation_response = (obj?: { __typename?: any } | null): obj is event_organizers_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_mutation_response"') - return event_organizers_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const event_organizers_stddev_fields_possibleTypes: string[] = ['event_organizers_stddev_fields'] - export const isevent_organizers_stddev_fields = (obj?: { __typename?: any } | null): obj is event_organizers_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_stddev_fields"') - return event_organizers_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_organizers_stddev_pop_fields_possibleTypes: string[] = ['event_organizers_stddev_pop_fields'] - export const isevent_organizers_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is event_organizers_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_stddev_pop_fields"') - return event_organizers_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_organizers_stddev_samp_fields_possibleTypes: string[] = ['event_organizers_stddev_samp_fields'] - export const isevent_organizers_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is event_organizers_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_stddev_samp_fields"') - return event_organizers_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_organizers_sum_fields_possibleTypes: string[] = ['event_organizers_sum_fields'] - export const isevent_organizers_sum_fields = (obj?: { __typename?: any } | null): obj is event_organizers_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_sum_fields"') - return event_organizers_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_organizers_var_pop_fields_possibleTypes: string[] = ['event_organizers_var_pop_fields'] - export const isevent_organizers_var_pop_fields = (obj?: { __typename?: any } | null): obj is event_organizers_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_var_pop_fields"') - return event_organizers_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_organizers_var_samp_fields_possibleTypes: string[] = ['event_organizers_var_samp_fields'] - export const isevent_organizers_var_samp_fields = (obj?: { __typename?: any } | null): obj is event_organizers_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_var_samp_fields"') - return event_organizers_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_organizers_variance_fields_possibleTypes: string[] = ['event_organizers_variance_fields'] - export const isevent_organizers_variance_fields = (obj?: { __typename?: any } | null): obj is event_organizers_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_variance_fields"') - return event_organizers_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_players_possibleTypes: string[] = ['event_players'] - export const isevent_players = (obj?: { __typename?: any } | null): obj is event_players => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players"') - return event_players_possibleTypes.includes(obj.__typename) - } - - - - const event_players_aggregate_possibleTypes: string[] = ['event_players_aggregate'] - export const isevent_players_aggregate = (obj?: { __typename?: any } | null): obj is event_players_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_aggregate"') - return event_players_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const event_players_aggregate_fields_possibleTypes: string[] = ['event_players_aggregate_fields'] - export const isevent_players_aggregate_fields = (obj?: { __typename?: any } | null): obj is event_players_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_aggregate_fields"') - return event_players_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_players_avg_fields_possibleTypes: string[] = ['event_players_avg_fields'] - export const isevent_players_avg_fields = (obj?: { __typename?: any } | null): obj is event_players_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_avg_fields"') - return event_players_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_players_max_fields_possibleTypes: string[] = ['event_players_max_fields'] - export const isevent_players_max_fields = (obj?: { __typename?: any } | null): obj is event_players_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_max_fields"') - return event_players_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_players_min_fields_possibleTypes: string[] = ['event_players_min_fields'] - export const isevent_players_min_fields = (obj?: { __typename?: any } | null): obj is event_players_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_min_fields"') - return event_players_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_players_mutation_response_possibleTypes: string[] = ['event_players_mutation_response'] - export const isevent_players_mutation_response = (obj?: { __typename?: any } | null): obj is event_players_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_mutation_response"') - return event_players_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const event_players_stddev_fields_possibleTypes: string[] = ['event_players_stddev_fields'] - export const isevent_players_stddev_fields = (obj?: { __typename?: any } | null): obj is event_players_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_stddev_fields"') - return event_players_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_players_stddev_pop_fields_possibleTypes: string[] = ['event_players_stddev_pop_fields'] - export const isevent_players_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is event_players_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_stddev_pop_fields"') - return event_players_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_players_stddev_samp_fields_possibleTypes: string[] = ['event_players_stddev_samp_fields'] - export const isevent_players_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is event_players_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_stddev_samp_fields"') - return event_players_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_players_sum_fields_possibleTypes: string[] = ['event_players_sum_fields'] - export const isevent_players_sum_fields = (obj?: { __typename?: any } | null): obj is event_players_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_sum_fields"') - return event_players_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_players_var_pop_fields_possibleTypes: string[] = ['event_players_var_pop_fields'] - export const isevent_players_var_pop_fields = (obj?: { __typename?: any } | null): obj is event_players_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_var_pop_fields"') - return event_players_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_players_var_samp_fields_possibleTypes: string[] = ['event_players_var_samp_fields'] - export const isevent_players_var_samp_fields = (obj?: { __typename?: any } | null): obj is event_players_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_var_samp_fields"') - return event_players_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_players_variance_fields_possibleTypes: string[] = ['event_players_variance_fields'] - export const isevent_players_variance_fields = (obj?: { __typename?: any } | null): obj is event_players_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_variance_fields"') - return event_players_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_teams_possibleTypes: string[] = ['event_teams'] - export const isevent_teams = (obj?: { __typename?: any } | null): obj is event_teams => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_teams"') - return event_teams_possibleTypes.includes(obj.__typename) - } - - - - const event_teams_aggregate_possibleTypes: string[] = ['event_teams_aggregate'] - export const isevent_teams_aggregate = (obj?: { __typename?: any } | null): obj is event_teams_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_teams_aggregate"') - return event_teams_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const event_teams_aggregate_fields_possibleTypes: string[] = ['event_teams_aggregate_fields'] - export const isevent_teams_aggregate_fields = (obj?: { __typename?: any } | null): obj is event_teams_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_teams_aggregate_fields"') - return event_teams_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_teams_max_fields_possibleTypes: string[] = ['event_teams_max_fields'] - export const isevent_teams_max_fields = (obj?: { __typename?: any } | null): obj is event_teams_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_teams_max_fields"') - return event_teams_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_teams_min_fields_possibleTypes: string[] = ['event_teams_min_fields'] - export const isevent_teams_min_fields = (obj?: { __typename?: any } | null): obj is event_teams_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_teams_min_fields"') - return event_teams_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_teams_mutation_response_possibleTypes: string[] = ['event_teams_mutation_response'] - export const isevent_teams_mutation_response = (obj?: { __typename?: any } | null): obj is event_teams_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_teams_mutation_response"') - return event_teams_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const event_tournaments_possibleTypes: string[] = ['event_tournaments'] - export const isevent_tournaments = (obj?: { __typename?: any } | null): obj is event_tournaments => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_tournaments"') - return event_tournaments_possibleTypes.includes(obj.__typename) - } - - - - const event_tournaments_aggregate_possibleTypes: string[] = ['event_tournaments_aggregate'] - export const isevent_tournaments_aggregate = (obj?: { __typename?: any } | null): obj is event_tournaments_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_tournaments_aggregate"') - return event_tournaments_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const event_tournaments_aggregate_fields_possibleTypes: string[] = ['event_tournaments_aggregate_fields'] - export const isevent_tournaments_aggregate_fields = (obj?: { __typename?: any } | null): obj is event_tournaments_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_tournaments_aggregate_fields"') - return event_tournaments_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_tournaments_max_fields_possibleTypes: string[] = ['event_tournaments_max_fields'] - export const isevent_tournaments_max_fields = (obj?: { __typename?: any } | null): obj is event_tournaments_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_tournaments_max_fields"') - return event_tournaments_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_tournaments_min_fields_possibleTypes: string[] = ['event_tournaments_min_fields'] - export const isevent_tournaments_min_fields = (obj?: { __typename?: any } | null): obj is event_tournaments_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_tournaments_min_fields"') - return event_tournaments_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const event_tournaments_mutation_response_possibleTypes: string[] = ['event_tournaments_mutation_response'] - export const isevent_tournaments_mutation_response = (obj?: { __typename?: any } | null): obj is event_tournaments_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevent_tournaments_mutation_response"') - return event_tournaments_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const events_possibleTypes: string[] = ['events'] - export const isevents = (obj?: { __typename?: any } | null): obj is events => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevents"') - return events_possibleTypes.includes(obj.__typename) - } - - - - const events_aggregate_possibleTypes: string[] = ['events_aggregate'] - export const isevents_aggregate = (obj?: { __typename?: any } | null): obj is events_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevents_aggregate"') - return events_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const events_aggregate_fields_possibleTypes: string[] = ['events_aggregate_fields'] - export const isevents_aggregate_fields = (obj?: { __typename?: any } | null): obj is events_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevents_aggregate_fields"') - return events_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const events_avg_fields_possibleTypes: string[] = ['events_avg_fields'] - export const isevents_avg_fields = (obj?: { __typename?: any } | null): obj is events_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevents_avg_fields"') - return events_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const events_max_fields_possibleTypes: string[] = ['events_max_fields'] - export const isevents_max_fields = (obj?: { __typename?: any } | null): obj is events_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevents_max_fields"') - return events_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const events_min_fields_possibleTypes: string[] = ['events_min_fields'] - export const isevents_min_fields = (obj?: { __typename?: any } | null): obj is events_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevents_min_fields"') - return events_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const events_mutation_response_possibleTypes: string[] = ['events_mutation_response'] - export const isevents_mutation_response = (obj?: { __typename?: any } | null): obj is events_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevents_mutation_response"') - return events_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const events_stddev_fields_possibleTypes: string[] = ['events_stddev_fields'] - export const isevents_stddev_fields = (obj?: { __typename?: any } | null): obj is events_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevents_stddev_fields"') - return events_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const events_stddev_pop_fields_possibleTypes: string[] = ['events_stddev_pop_fields'] - export const isevents_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is events_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevents_stddev_pop_fields"') - return events_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const events_stddev_samp_fields_possibleTypes: string[] = ['events_stddev_samp_fields'] - export const isevents_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is events_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevents_stddev_samp_fields"') - return events_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const events_sum_fields_possibleTypes: string[] = ['events_sum_fields'] - export const isevents_sum_fields = (obj?: { __typename?: any } | null): obj is events_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevents_sum_fields"') - return events_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const events_var_pop_fields_possibleTypes: string[] = ['events_var_pop_fields'] - export const isevents_var_pop_fields = (obj?: { __typename?: any } | null): obj is events_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevents_var_pop_fields"') - return events_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const events_var_samp_fields_possibleTypes: string[] = ['events_var_samp_fields'] - export const isevents_var_samp_fields = (obj?: { __typename?: any } | null): obj is events_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevents_var_samp_fields"') - return events_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const events_variance_fields_possibleTypes: string[] = ['events_variance_fields'] - export const isevents_variance_fields = (obj?: { __typename?: any } | null): obj is events_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isevents_variance_fields"') - return events_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const friends_possibleTypes: string[] = ['friends'] - export const isfriends = (obj?: { __typename?: any } | null): obj is friends => { - if (!obj?.__typename) throw new Error('__typename is missing in "isfriends"') - return friends_possibleTypes.includes(obj.__typename) - } - - - - const friends_aggregate_possibleTypes: string[] = ['friends_aggregate'] - export const isfriends_aggregate = (obj?: { __typename?: any } | null): obj is friends_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isfriends_aggregate"') - return friends_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const friends_aggregate_fields_possibleTypes: string[] = ['friends_aggregate_fields'] - export const isfriends_aggregate_fields = (obj?: { __typename?: any } | null): obj is friends_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isfriends_aggregate_fields"') - return friends_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const friends_avg_fields_possibleTypes: string[] = ['friends_avg_fields'] - export const isfriends_avg_fields = (obj?: { __typename?: any } | null): obj is friends_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isfriends_avg_fields"') - return friends_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const friends_max_fields_possibleTypes: string[] = ['friends_max_fields'] - export const isfriends_max_fields = (obj?: { __typename?: any } | null): obj is friends_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isfriends_max_fields"') - return friends_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const friends_min_fields_possibleTypes: string[] = ['friends_min_fields'] - export const isfriends_min_fields = (obj?: { __typename?: any } | null): obj is friends_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isfriends_min_fields"') - return friends_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const friends_mutation_response_possibleTypes: string[] = ['friends_mutation_response'] - export const isfriends_mutation_response = (obj?: { __typename?: any } | null): obj is friends_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isfriends_mutation_response"') - return friends_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const friends_stddev_fields_possibleTypes: string[] = ['friends_stddev_fields'] - export const isfriends_stddev_fields = (obj?: { __typename?: any } | null): obj is friends_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isfriends_stddev_fields"') - return friends_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const friends_stddev_pop_fields_possibleTypes: string[] = ['friends_stddev_pop_fields'] - export const isfriends_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is friends_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isfriends_stddev_pop_fields"') - return friends_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const friends_stddev_samp_fields_possibleTypes: string[] = ['friends_stddev_samp_fields'] - export const isfriends_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is friends_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isfriends_stddev_samp_fields"') - return friends_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const friends_sum_fields_possibleTypes: string[] = ['friends_sum_fields'] - export const isfriends_sum_fields = (obj?: { __typename?: any } | null): obj is friends_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isfriends_sum_fields"') - return friends_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const friends_var_pop_fields_possibleTypes: string[] = ['friends_var_pop_fields'] - export const isfriends_var_pop_fields = (obj?: { __typename?: any } | null): obj is friends_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isfriends_var_pop_fields"') - return friends_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const friends_var_samp_fields_possibleTypes: string[] = ['friends_var_samp_fields'] - export const isfriends_var_samp_fields = (obj?: { __typename?: any } | null): obj is friends_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isfriends_var_samp_fields"') - return friends_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const friends_variance_fields_possibleTypes: string[] = ['friends_variance_fields'] - export const isfriends_variance_fields = (obj?: { __typename?: any } | null): obj is friends_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isfriends_variance_fields"') - return friends_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - 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"') - return game_server_nodes_possibleTypes.includes(obj.__typename) - } - - - - const game_server_nodes_aggregate_possibleTypes: string[] = ['game_server_nodes_aggregate'] - export const isgame_server_nodes_aggregate = (obj?: { __typename?: any } | null): obj is game_server_nodes_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isgame_server_nodes_aggregate"') - return game_server_nodes_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const game_server_nodes_aggregate_fields_possibleTypes: string[] = ['game_server_nodes_aggregate_fields'] - export const isgame_server_nodes_aggregate_fields = (obj?: { __typename?: any } | null): obj is game_server_nodes_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isgame_server_nodes_aggregate_fields"') - return game_server_nodes_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const game_server_nodes_avg_fields_possibleTypes: string[] = ['game_server_nodes_avg_fields'] - export const isgame_server_nodes_avg_fields = (obj?: { __typename?: any } | null): obj is game_server_nodes_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isgame_server_nodes_avg_fields"') - return game_server_nodes_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const game_server_nodes_max_fields_possibleTypes: string[] = ['game_server_nodes_max_fields'] - export const isgame_server_nodes_max_fields = (obj?: { __typename?: any } | null): obj is game_server_nodes_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isgame_server_nodes_max_fields"') - return game_server_nodes_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const game_server_nodes_min_fields_possibleTypes: string[] = ['game_server_nodes_min_fields'] - export const isgame_server_nodes_min_fields = (obj?: { __typename?: any } | null): obj is game_server_nodes_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isgame_server_nodes_min_fields"') - return game_server_nodes_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const game_server_nodes_mutation_response_possibleTypes: string[] = ['game_server_nodes_mutation_response'] - export const isgame_server_nodes_mutation_response = (obj?: { __typename?: any } | null): obj is game_server_nodes_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isgame_server_nodes_mutation_response"') - return game_server_nodes_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const game_server_nodes_stddev_fields_possibleTypes: string[] = ['game_server_nodes_stddev_fields'] - export const isgame_server_nodes_stddev_fields = (obj?: { __typename?: any } | null): obj is game_server_nodes_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isgame_server_nodes_stddev_fields"') - return game_server_nodes_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const game_server_nodes_stddev_pop_fields_possibleTypes: string[] = ['game_server_nodes_stddev_pop_fields'] - export const isgame_server_nodes_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is game_server_nodes_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isgame_server_nodes_stddev_pop_fields"') - return game_server_nodes_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const game_server_nodes_stddev_samp_fields_possibleTypes: string[] = ['game_server_nodes_stddev_samp_fields'] - export const isgame_server_nodes_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is game_server_nodes_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isgame_server_nodes_stddev_samp_fields"') - return game_server_nodes_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const game_server_nodes_sum_fields_possibleTypes: string[] = ['game_server_nodes_sum_fields'] - export const isgame_server_nodes_sum_fields = (obj?: { __typename?: any } | null): obj is game_server_nodes_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isgame_server_nodes_sum_fields"') - return game_server_nodes_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const game_server_nodes_var_pop_fields_possibleTypes: string[] = ['game_server_nodes_var_pop_fields'] - export const isgame_server_nodes_var_pop_fields = (obj?: { __typename?: any } | null): obj is game_server_nodes_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isgame_server_nodes_var_pop_fields"') - return game_server_nodes_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const game_server_nodes_var_samp_fields_possibleTypes: string[] = ['game_server_nodes_var_samp_fields'] - export const isgame_server_nodes_var_samp_fields = (obj?: { __typename?: any } | null): obj is game_server_nodes_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isgame_server_nodes_var_samp_fields"') - return game_server_nodes_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const game_server_nodes_variance_fields_possibleTypes: string[] = ['game_server_nodes_variance_fields'] - export const isgame_server_nodes_variance_fields = (obj?: { __typename?: any } | null): obj is game_server_nodes_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isgame_server_nodes_variance_fields"') - return game_server_nodes_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const game_versions_possibleTypes: string[] = ['game_versions'] - export const isgame_versions = (obj?: { __typename?: any } | null): obj is game_versions => { - if (!obj?.__typename) throw new Error('__typename is missing in "isgame_versions"') - return game_versions_possibleTypes.includes(obj.__typename) - } - - - - const game_versions_aggregate_possibleTypes: string[] = ['game_versions_aggregate'] - export const isgame_versions_aggregate = (obj?: { __typename?: any } | null): obj is game_versions_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isgame_versions_aggregate"') - return game_versions_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const game_versions_aggregate_fields_possibleTypes: string[] = ['game_versions_aggregate_fields'] - export const isgame_versions_aggregate_fields = (obj?: { __typename?: any } | null): obj is game_versions_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isgame_versions_aggregate_fields"') - return game_versions_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const game_versions_avg_fields_possibleTypes: string[] = ['game_versions_avg_fields'] - export const isgame_versions_avg_fields = (obj?: { __typename?: any } | null): obj is game_versions_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isgame_versions_avg_fields"') - return game_versions_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const game_versions_max_fields_possibleTypes: string[] = ['game_versions_max_fields'] - export const isgame_versions_max_fields = (obj?: { __typename?: any } | null): obj is game_versions_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isgame_versions_max_fields"') - return game_versions_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const game_versions_min_fields_possibleTypes: string[] = ['game_versions_min_fields'] - export const isgame_versions_min_fields = (obj?: { __typename?: any } | null): obj is game_versions_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isgame_versions_min_fields"') - return game_versions_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const game_versions_mutation_response_possibleTypes: string[] = ['game_versions_mutation_response'] - export const isgame_versions_mutation_response = (obj?: { __typename?: any } | null): obj is game_versions_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isgame_versions_mutation_response"') - return game_versions_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const game_versions_stddev_fields_possibleTypes: string[] = ['game_versions_stddev_fields'] - export const isgame_versions_stddev_fields = (obj?: { __typename?: any } | null): obj is game_versions_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isgame_versions_stddev_fields"') - return game_versions_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const game_versions_stddev_pop_fields_possibleTypes: string[] = ['game_versions_stddev_pop_fields'] - export const isgame_versions_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is game_versions_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isgame_versions_stddev_pop_fields"') - return game_versions_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const game_versions_stddev_samp_fields_possibleTypes: string[] = ['game_versions_stddev_samp_fields'] - export const isgame_versions_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is game_versions_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isgame_versions_stddev_samp_fields"') - return game_versions_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const game_versions_sum_fields_possibleTypes: string[] = ['game_versions_sum_fields'] - export const isgame_versions_sum_fields = (obj?: { __typename?: any } | null): obj is game_versions_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isgame_versions_sum_fields"') - return game_versions_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const game_versions_var_pop_fields_possibleTypes: string[] = ['game_versions_var_pop_fields'] - export const isgame_versions_var_pop_fields = (obj?: { __typename?: any } | null): obj is game_versions_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isgame_versions_var_pop_fields"') - return game_versions_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const game_versions_var_samp_fields_possibleTypes: string[] = ['game_versions_var_samp_fields'] - export const isgame_versions_var_samp_fields = (obj?: { __typename?: any } | null): obj is game_versions_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isgame_versions_var_samp_fields"') - return game_versions_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const game_versions_variance_fields_possibleTypes: string[] = ['game_versions_variance_fields'] - export const isgame_versions_variance_fields = (obj?: { __typename?: any } | null): obj is game_versions_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isgame_versions_variance_fields"') - return game_versions_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const gamedata_signature_validations_possibleTypes: string[] = ['gamedata_signature_validations'] - export const isgamedata_signature_validations = (obj?: { __typename?: any } | null): obj is gamedata_signature_validations => { - if (!obj?.__typename) throw new Error('__typename is missing in "isgamedata_signature_validations"') - return gamedata_signature_validations_possibleTypes.includes(obj.__typename) - } - - - - const gamedata_signature_validations_aggregate_possibleTypes: string[] = ['gamedata_signature_validations_aggregate'] - export const isgamedata_signature_validations_aggregate = (obj?: { __typename?: any } | null): obj is gamedata_signature_validations_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isgamedata_signature_validations_aggregate"') - return gamedata_signature_validations_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const gamedata_signature_validations_aggregate_fields_possibleTypes: string[] = ['gamedata_signature_validations_aggregate_fields'] - export const isgamedata_signature_validations_aggregate_fields = (obj?: { __typename?: any } | null): obj is gamedata_signature_validations_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isgamedata_signature_validations_aggregate_fields"') - return gamedata_signature_validations_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const gamedata_signature_validations_avg_fields_possibleTypes: string[] = ['gamedata_signature_validations_avg_fields'] - export const isgamedata_signature_validations_avg_fields = (obj?: { __typename?: any } | null): obj is gamedata_signature_validations_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isgamedata_signature_validations_avg_fields"') - return gamedata_signature_validations_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const gamedata_signature_validations_max_fields_possibleTypes: string[] = ['gamedata_signature_validations_max_fields'] - export const isgamedata_signature_validations_max_fields = (obj?: { __typename?: any } | null): obj is gamedata_signature_validations_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isgamedata_signature_validations_max_fields"') - return gamedata_signature_validations_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const gamedata_signature_validations_min_fields_possibleTypes: string[] = ['gamedata_signature_validations_min_fields'] - export const isgamedata_signature_validations_min_fields = (obj?: { __typename?: any } | null): obj is gamedata_signature_validations_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isgamedata_signature_validations_min_fields"') - return gamedata_signature_validations_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const gamedata_signature_validations_mutation_response_possibleTypes: string[] = ['gamedata_signature_validations_mutation_response'] - export const isgamedata_signature_validations_mutation_response = (obj?: { __typename?: any } | null): obj is gamedata_signature_validations_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isgamedata_signature_validations_mutation_response"') - return gamedata_signature_validations_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const gamedata_signature_validations_stddev_fields_possibleTypes: string[] = ['gamedata_signature_validations_stddev_fields'] - export const isgamedata_signature_validations_stddev_fields = (obj?: { __typename?: any } | null): obj is gamedata_signature_validations_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isgamedata_signature_validations_stddev_fields"') - return gamedata_signature_validations_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const gamedata_signature_validations_stddev_pop_fields_possibleTypes: string[] = ['gamedata_signature_validations_stddev_pop_fields'] - export const isgamedata_signature_validations_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is gamedata_signature_validations_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isgamedata_signature_validations_stddev_pop_fields"') - return gamedata_signature_validations_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const gamedata_signature_validations_stddev_samp_fields_possibleTypes: string[] = ['gamedata_signature_validations_stddev_samp_fields'] - export const isgamedata_signature_validations_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is gamedata_signature_validations_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isgamedata_signature_validations_stddev_samp_fields"') - return gamedata_signature_validations_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const gamedata_signature_validations_sum_fields_possibleTypes: string[] = ['gamedata_signature_validations_sum_fields'] - export const isgamedata_signature_validations_sum_fields = (obj?: { __typename?: any } | null): obj is gamedata_signature_validations_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isgamedata_signature_validations_sum_fields"') - return gamedata_signature_validations_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const gamedata_signature_validations_var_pop_fields_possibleTypes: string[] = ['gamedata_signature_validations_var_pop_fields'] - export const isgamedata_signature_validations_var_pop_fields = (obj?: { __typename?: any } | null): obj is gamedata_signature_validations_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isgamedata_signature_validations_var_pop_fields"') - return gamedata_signature_validations_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const gamedata_signature_validations_var_samp_fields_possibleTypes: string[] = ['gamedata_signature_validations_var_samp_fields'] - export const isgamedata_signature_validations_var_samp_fields = (obj?: { __typename?: any } | null): obj is gamedata_signature_validations_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isgamedata_signature_validations_var_samp_fields"') - return gamedata_signature_validations_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const gamedata_signature_validations_variance_fields_possibleTypes: string[] = ['gamedata_signature_validations_variance_fields'] - export const isgamedata_signature_validations_variance_fields = (obj?: { __typename?: any } | null): obj is gamedata_signature_validations_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isgamedata_signature_validations_variance_fields"') - return gamedata_signature_validations_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const leaderboard_entries_possibleTypes: string[] = ['leaderboard_entries'] - export const isleaderboard_entries = (obj?: { __typename?: any } | null): obj is leaderboard_entries => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleaderboard_entries"') - return leaderboard_entries_possibleTypes.includes(obj.__typename) - } - - - - const leaderboard_entries_aggregate_possibleTypes: string[] = ['leaderboard_entries_aggregate'] - export const isleaderboard_entries_aggregate = (obj?: { __typename?: any } | null): obj is leaderboard_entries_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleaderboard_entries_aggregate"') - return leaderboard_entries_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const leaderboard_entries_aggregate_fields_possibleTypes: string[] = ['leaderboard_entries_aggregate_fields'] - export const isleaderboard_entries_aggregate_fields = (obj?: { __typename?: any } | null): obj is leaderboard_entries_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleaderboard_entries_aggregate_fields"') - return leaderboard_entries_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const leaderboard_entries_avg_fields_possibleTypes: string[] = ['leaderboard_entries_avg_fields'] - export const isleaderboard_entries_avg_fields = (obj?: { __typename?: any } | null): obj is leaderboard_entries_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleaderboard_entries_avg_fields"') - return leaderboard_entries_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const leaderboard_entries_max_fields_possibleTypes: string[] = ['leaderboard_entries_max_fields'] - export const isleaderboard_entries_max_fields = (obj?: { __typename?: any } | null): obj is leaderboard_entries_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleaderboard_entries_max_fields"') - return leaderboard_entries_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const leaderboard_entries_min_fields_possibleTypes: string[] = ['leaderboard_entries_min_fields'] - export const isleaderboard_entries_min_fields = (obj?: { __typename?: any } | null): obj is leaderboard_entries_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleaderboard_entries_min_fields"') - return leaderboard_entries_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const leaderboard_entries_mutation_response_possibleTypes: string[] = ['leaderboard_entries_mutation_response'] - export const isleaderboard_entries_mutation_response = (obj?: { __typename?: any } | null): obj is leaderboard_entries_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleaderboard_entries_mutation_response"') - return leaderboard_entries_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const leaderboard_entries_stddev_fields_possibleTypes: string[] = ['leaderboard_entries_stddev_fields'] - export const isleaderboard_entries_stddev_fields = (obj?: { __typename?: any } | null): obj is leaderboard_entries_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleaderboard_entries_stddev_fields"') - return leaderboard_entries_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const leaderboard_entries_stddev_pop_fields_possibleTypes: string[] = ['leaderboard_entries_stddev_pop_fields'] - export const isleaderboard_entries_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is leaderboard_entries_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleaderboard_entries_stddev_pop_fields"') - return leaderboard_entries_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const leaderboard_entries_stddev_samp_fields_possibleTypes: string[] = ['leaderboard_entries_stddev_samp_fields'] - export const isleaderboard_entries_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is leaderboard_entries_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleaderboard_entries_stddev_samp_fields"') - return leaderboard_entries_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const leaderboard_entries_sum_fields_possibleTypes: string[] = ['leaderboard_entries_sum_fields'] - export const isleaderboard_entries_sum_fields = (obj?: { __typename?: any } | null): obj is leaderboard_entries_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleaderboard_entries_sum_fields"') - return leaderboard_entries_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const leaderboard_entries_var_pop_fields_possibleTypes: string[] = ['leaderboard_entries_var_pop_fields'] - export const isleaderboard_entries_var_pop_fields = (obj?: { __typename?: any } | null): obj is leaderboard_entries_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleaderboard_entries_var_pop_fields"') - return leaderboard_entries_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const leaderboard_entries_var_samp_fields_possibleTypes: string[] = ['leaderboard_entries_var_samp_fields'] - export const isleaderboard_entries_var_samp_fields = (obj?: { __typename?: any } | null): obj is leaderboard_entries_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleaderboard_entries_var_samp_fields"') - return leaderboard_entries_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const leaderboard_entries_variance_fields_possibleTypes: string[] = ['leaderboard_entries_variance_fields'] - export const isleaderboard_entries_variance_fields = (obj?: { __typename?: any } | null): obj is leaderboard_entries_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleaderboard_entries_variance_fields"') - return leaderboard_entries_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_divisions_possibleTypes: string[] = ['league_divisions'] - export const isleague_divisions = (obj?: { __typename?: any } | null): obj is league_divisions => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_divisions"') - return league_divisions_possibleTypes.includes(obj.__typename) - } - - - - const league_divisions_aggregate_possibleTypes: string[] = ['league_divisions_aggregate'] - export const isleague_divisions_aggregate = (obj?: { __typename?: any } | null): obj is league_divisions_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_divisions_aggregate"') - return league_divisions_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const league_divisions_aggregate_fields_possibleTypes: string[] = ['league_divisions_aggregate_fields'] - export const isleague_divisions_aggregate_fields = (obj?: { __typename?: any } | null): obj is league_divisions_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_divisions_aggregate_fields"') - return league_divisions_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_divisions_avg_fields_possibleTypes: string[] = ['league_divisions_avg_fields'] - export const isleague_divisions_avg_fields = (obj?: { __typename?: any } | null): obj is league_divisions_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_divisions_avg_fields"') - return league_divisions_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_divisions_max_fields_possibleTypes: string[] = ['league_divisions_max_fields'] - export const isleague_divisions_max_fields = (obj?: { __typename?: any } | null): obj is league_divisions_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_divisions_max_fields"') - return league_divisions_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_divisions_min_fields_possibleTypes: string[] = ['league_divisions_min_fields'] - export const isleague_divisions_min_fields = (obj?: { __typename?: any } | null): obj is league_divisions_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_divisions_min_fields"') - return league_divisions_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_divisions_mutation_response_possibleTypes: string[] = ['league_divisions_mutation_response'] - export const isleague_divisions_mutation_response = (obj?: { __typename?: any } | null): obj is league_divisions_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_divisions_mutation_response"') - return league_divisions_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const league_divisions_stddev_fields_possibleTypes: string[] = ['league_divisions_stddev_fields'] - export const isleague_divisions_stddev_fields = (obj?: { __typename?: any } | null): obj is league_divisions_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_divisions_stddev_fields"') - return league_divisions_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_divisions_stddev_pop_fields_possibleTypes: string[] = ['league_divisions_stddev_pop_fields'] - export const isleague_divisions_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is league_divisions_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_divisions_stddev_pop_fields"') - return league_divisions_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_divisions_stddev_samp_fields_possibleTypes: string[] = ['league_divisions_stddev_samp_fields'] - export const isleague_divisions_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is league_divisions_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_divisions_stddev_samp_fields"') - return league_divisions_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_divisions_sum_fields_possibleTypes: string[] = ['league_divisions_sum_fields'] - export const isleague_divisions_sum_fields = (obj?: { __typename?: any } | null): obj is league_divisions_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_divisions_sum_fields"') - return league_divisions_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_divisions_var_pop_fields_possibleTypes: string[] = ['league_divisions_var_pop_fields'] - export const isleague_divisions_var_pop_fields = (obj?: { __typename?: any } | null): obj is league_divisions_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_divisions_var_pop_fields"') - return league_divisions_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_divisions_var_samp_fields_possibleTypes: string[] = ['league_divisions_var_samp_fields'] - export const isleague_divisions_var_samp_fields = (obj?: { __typename?: any } | null): obj is league_divisions_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_divisions_var_samp_fields"') - return league_divisions_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_divisions_variance_fields_possibleTypes: string[] = ['league_divisions_variance_fields'] - export const isleague_divisions_variance_fields = (obj?: { __typename?: any } | null): obj is league_divisions_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_divisions_variance_fields"') - return league_divisions_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_match_weeks_possibleTypes: string[] = ['league_match_weeks'] - export const isleague_match_weeks = (obj?: { __typename?: any } | null): obj is league_match_weeks => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_match_weeks"') - return league_match_weeks_possibleTypes.includes(obj.__typename) - } - - - - const league_match_weeks_aggregate_possibleTypes: string[] = ['league_match_weeks_aggregate'] - export const isleague_match_weeks_aggregate = (obj?: { __typename?: any } | null): obj is league_match_weeks_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_match_weeks_aggregate"') - return league_match_weeks_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const league_match_weeks_aggregate_fields_possibleTypes: string[] = ['league_match_weeks_aggregate_fields'] - export const isleague_match_weeks_aggregate_fields = (obj?: { __typename?: any } | null): obj is league_match_weeks_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_match_weeks_aggregate_fields"') - return league_match_weeks_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_match_weeks_avg_fields_possibleTypes: string[] = ['league_match_weeks_avg_fields'] - export const isleague_match_weeks_avg_fields = (obj?: { __typename?: any } | null): obj is league_match_weeks_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_match_weeks_avg_fields"') - return league_match_weeks_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_match_weeks_max_fields_possibleTypes: string[] = ['league_match_weeks_max_fields'] - export const isleague_match_weeks_max_fields = (obj?: { __typename?: any } | null): obj is league_match_weeks_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_match_weeks_max_fields"') - return league_match_weeks_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_match_weeks_min_fields_possibleTypes: string[] = ['league_match_weeks_min_fields'] - export const isleague_match_weeks_min_fields = (obj?: { __typename?: any } | null): obj is league_match_weeks_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_match_weeks_min_fields"') - return league_match_weeks_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_match_weeks_mutation_response_possibleTypes: string[] = ['league_match_weeks_mutation_response'] - export const isleague_match_weeks_mutation_response = (obj?: { __typename?: any } | null): obj is league_match_weeks_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_match_weeks_mutation_response"') - return league_match_weeks_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const league_match_weeks_stddev_fields_possibleTypes: string[] = ['league_match_weeks_stddev_fields'] - export const isleague_match_weeks_stddev_fields = (obj?: { __typename?: any } | null): obj is league_match_weeks_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_match_weeks_stddev_fields"') - return league_match_weeks_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_match_weeks_stddev_pop_fields_possibleTypes: string[] = ['league_match_weeks_stddev_pop_fields'] - export const isleague_match_weeks_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is league_match_weeks_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_match_weeks_stddev_pop_fields"') - return league_match_weeks_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_match_weeks_stddev_samp_fields_possibleTypes: string[] = ['league_match_weeks_stddev_samp_fields'] - export const isleague_match_weeks_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is league_match_weeks_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_match_weeks_stddev_samp_fields"') - return league_match_weeks_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_match_weeks_sum_fields_possibleTypes: string[] = ['league_match_weeks_sum_fields'] - export const isleague_match_weeks_sum_fields = (obj?: { __typename?: any } | null): obj is league_match_weeks_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_match_weeks_sum_fields"') - return league_match_weeks_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_match_weeks_var_pop_fields_possibleTypes: string[] = ['league_match_weeks_var_pop_fields'] - export const isleague_match_weeks_var_pop_fields = (obj?: { __typename?: any } | null): obj is league_match_weeks_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_match_weeks_var_pop_fields"') - return league_match_weeks_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_match_weeks_var_samp_fields_possibleTypes: string[] = ['league_match_weeks_var_samp_fields'] - export const isleague_match_weeks_var_samp_fields = (obj?: { __typename?: any } | null): obj is league_match_weeks_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_match_weeks_var_samp_fields"') - return league_match_weeks_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_match_weeks_variance_fields_possibleTypes: string[] = ['league_match_weeks_variance_fields'] - export const isleague_match_weeks_variance_fields = (obj?: { __typename?: any } | null): obj is league_match_weeks_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_match_weeks_variance_fields"') - return league_match_weeks_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_relegation_playoffs_possibleTypes: string[] = ['league_relegation_playoffs'] - export const isleague_relegation_playoffs = (obj?: { __typename?: any } | null): obj is league_relegation_playoffs => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_relegation_playoffs"') - return league_relegation_playoffs_possibleTypes.includes(obj.__typename) - } - - - - const league_relegation_playoffs_aggregate_possibleTypes: string[] = ['league_relegation_playoffs_aggregate'] - export const isleague_relegation_playoffs_aggregate = (obj?: { __typename?: any } | null): obj is league_relegation_playoffs_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_relegation_playoffs_aggregate"') - return league_relegation_playoffs_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const league_relegation_playoffs_aggregate_fields_possibleTypes: string[] = ['league_relegation_playoffs_aggregate_fields'] - export const isleague_relegation_playoffs_aggregate_fields = (obj?: { __typename?: any } | null): obj is league_relegation_playoffs_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_relegation_playoffs_aggregate_fields"') - return league_relegation_playoffs_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_relegation_playoffs_avg_fields_possibleTypes: string[] = ['league_relegation_playoffs_avg_fields'] - export const isleague_relegation_playoffs_avg_fields = (obj?: { __typename?: any } | null): obj is league_relegation_playoffs_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_relegation_playoffs_avg_fields"') - return league_relegation_playoffs_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_relegation_playoffs_max_fields_possibleTypes: string[] = ['league_relegation_playoffs_max_fields'] - export const isleague_relegation_playoffs_max_fields = (obj?: { __typename?: any } | null): obj is league_relegation_playoffs_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_relegation_playoffs_max_fields"') - return league_relegation_playoffs_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_relegation_playoffs_min_fields_possibleTypes: string[] = ['league_relegation_playoffs_min_fields'] - export const isleague_relegation_playoffs_min_fields = (obj?: { __typename?: any } | null): obj is league_relegation_playoffs_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_relegation_playoffs_min_fields"') - return league_relegation_playoffs_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_relegation_playoffs_mutation_response_possibleTypes: string[] = ['league_relegation_playoffs_mutation_response'] - export const isleague_relegation_playoffs_mutation_response = (obj?: { __typename?: any } | null): obj is league_relegation_playoffs_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_relegation_playoffs_mutation_response"') - return league_relegation_playoffs_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const league_relegation_playoffs_stddev_fields_possibleTypes: string[] = ['league_relegation_playoffs_stddev_fields'] - export const isleague_relegation_playoffs_stddev_fields = (obj?: { __typename?: any } | null): obj is league_relegation_playoffs_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_relegation_playoffs_stddev_fields"') - return league_relegation_playoffs_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_relegation_playoffs_stddev_pop_fields_possibleTypes: string[] = ['league_relegation_playoffs_stddev_pop_fields'] - export const isleague_relegation_playoffs_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is league_relegation_playoffs_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_relegation_playoffs_stddev_pop_fields"') - return league_relegation_playoffs_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_relegation_playoffs_stddev_samp_fields_possibleTypes: string[] = ['league_relegation_playoffs_stddev_samp_fields'] - export const isleague_relegation_playoffs_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is league_relegation_playoffs_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_relegation_playoffs_stddev_samp_fields"') - return league_relegation_playoffs_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_relegation_playoffs_sum_fields_possibleTypes: string[] = ['league_relegation_playoffs_sum_fields'] - export const isleague_relegation_playoffs_sum_fields = (obj?: { __typename?: any } | null): obj is league_relegation_playoffs_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_relegation_playoffs_sum_fields"') - return league_relegation_playoffs_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_relegation_playoffs_var_pop_fields_possibleTypes: string[] = ['league_relegation_playoffs_var_pop_fields'] - export const isleague_relegation_playoffs_var_pop_fields = (obj?: { __typename?: any } | null): obj is league_relegation_playoffs_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_relegation_playoffs_var_pop_fields"') - return league_relegation_playoffs_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_relegation_playoffs_var_samp_fields_possibleTypes: string[] = ['league_relegation_playoffs_var_samp_fields'] - export const isleague_relegation_playoffs_var_samp_fields = (obj?: { __typename?: any } | null): obj is league_relegation_playoffs_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_relegation_playoffs_var_samp_fields"') - return league_relegation_playoffs_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_relegation_playoffs_variance_fields_possibleTypes: string[] = ['league_relegation_playoffs_variance_fields'] - export const isleague_relegation_playoffs_variance_fields = (obj?: { __typename?: any } | null): obj is league_relegation_playoffs_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_relegation_playoffs_variance_fields"') - return league_relegation_playoffs_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_scheduling_proposals_possibleTypes: string[] = ['league_scheduling_proposals'] - export const isleague_scheduling_proposals = (obj?: { __typename?: any } | null): obj is league_scheduling_proposals => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_scheduling_proposals"') - return league_scheduling_proposals_possibleTypes.includes(obj.__typename) - } - - - - const league_scheduling_proposals_aggregate_possibleTypes: string[] = ['league_scheduling_proposals_aggregate'] - export const isleague_scheduling_proposals_aggregate = (obj?: { __typename?: any } | null): obj is league_scheduling_proposals_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_scheduling_proposals_aggregate"') - return league_scheduling_proposals_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const league_scheduling_proposals_aggregate_fields_possibleTypes: string[] = ['league_scheduling_proposals_aggregate_fields'] - export const isleague_scheduling_proposals_aggregate_fields = (obj?: { __typename?: any } | null): obj is league_scheduling_proposals_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_scheduling_proposals_aggregate_fields"') - return league_scheduling_proposals_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_scheduling_proposals_avg_fields_possibleTypes: string[] = ['league_scheduling_proposals_avg_fields'] - export const isleague_scheduling_proposals_avg_fields = (obj?: { __typename?: any } | null): obj is league_scheduling_proposals_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_scheduling_proposals_avg_fields"') - return league_scheduling_proposals_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_scheduling_proposals_max_fields_possibleTypes: string[] = ['league_scheduling_proposals_max_fields'] - export const isleague_scheduling_proposals_max_fields = (obj?: { __typename?: any } | null): obj is league_scheduling_proposals_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_scheduling_proposals_max_fields"') - return league_scheduling_proposals_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_scheduling_proposals_min_fields_possibleTypes: string[] = ['league_scheduling_proposals_min_fields'] - export const isleague_scheduling_proposals_min_fields = (obj?: { __typename?: any } | null): obj is league_scheduling_proposals_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_scheduling_proposals_min_fields"') - return league_scheduling_proposals_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_scheduling_proposals_mutation_response_possibleTypes: string[] = ['league_scheduling_proposals_mutation_response'] - export const isleague_scheduling_proposals_mutation_response = (obj?: { __typename?: any } | null): obj is league_scheduling_proposals_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_scheduling_proposals_mutation_response"') - return league_scheduling_proposals_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const league_scheduling_proposals_stddev_fields_possibleTypes: string[] = ['league_scheduling_proposals_stddev_fields'] - export const isleague_scheduling_proposals_stddev_fields = (obj?: { __typename?: any } | null): obj is league_scheduling_proposals_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_scheduling_proposals_stddev_fields"') - return league_scheduling_proposals_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_scheduling_proposals_stddev_pop_fields_possibleTypes: string[] = ['league_scheduling_proposals_stddev_pop_fields'] - export const isleague_scheduling_proposals_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is league_scheduling_proposals_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_scheduling_proposals_stddev_pop_fields"') - return league_scheduling_proposals_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_scheduling_proposals_stddev_samp_fields_possibleTypes: string[] = ['league_scheduling_proposals_stddev_samp_fields'] - export const isleague_scheduling_proposals_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is league_scheduling_proposals_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_scheduling_proposals_stddev_samp_fields"') - return league_scheduling_proposals_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_scheduling_proposals_sum_fields_possibleTypes: string[] = ['league_scheduling_proposals_sum_fields'] - export const isleague_scheduling_proposals_sum_fields = (obj?: { __typename?: any } | null): obj is league_scheduling_proposals_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_scheduling_proposals_sum_fields"') - return league_scheduling_proposals_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_scheduling_proposals_var_pop_fields_possibleTypes: string[] = ['league_scheduling_proposals_var_pop_fields'] - export const isleague_scheduling_proposals_var_pop_fields = (obj?: { __typename?: any } | null): obj is league_scheduling_proposals_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_scheduling_proposals_var_pop_fields"') - return league_scheduling_proposals_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_scheduling_proposals_var_samp_fields_possibleTypes: string[] = ['league_scheduling_proposals_var_samp_fields'] - export const isleague_scheduling_proposals_var_samp_fields = (obj?: { __typename?: any } | null): obj is league_scheduling_proposals_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_scheduling_proposals_var_samp_fields"') - return league_scheduling_proposals_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_scheduling_proposals_variance_fields_possibleTypes: string[] = ['league_scheduling_proposals_variance_fields'] - export const isleague_scheduling_proposals_variance_fields = (obj?: { __typename?: any } | null): obj is league_scheduling_proposals_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_scheduling_proposals_variance_fields"') - return league_scheduling_proposals_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_season_divisions_possibleTypes: string[] = ['league_season_divisions'] - export const isleague_season_divisions = (obj?: { __typename?: any } | null): obj is league_season_divisions => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_season_divisions"') - return league_season_divisions_possibleTypes.includes(obj.__typename) - } - - - - const league_season_divisions_aggregate_possibleTypes: string[] = ['league_season_divisions_aggregate'] - export const isleague_season_divisions_aggregate = (obj?: { __typename?: any } | null): obj is league_season_divisions_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_season_divisions_aggregate"') - return league_season_divisions_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const league_season_divisions_aggregate_fields_possibleTypes: string[] = ['league_season_divisions_aggregate_fields'] - export const isleague_season_divisions_aggregate_fields = (obj?: { __typename?: any } | null): obj is league_season_divisions_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_season_divisions_aggregate_fields"') - return league_season_divisions_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_season_divisions_max_fields_possibleTypes: string[] = ['league_season_divisions_max_fields'] - export const isleague_season_divisions_max_fields = (obj?: { __typename?: any } | null): obj is league_season_divisions_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_season_divisions_max_fields"') - return league_season_divisions_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_season_divisions_min_fields_possibleTypes: string[] = ['league_season_divisions_min_fields'] - export const isleague_season_divisions_min_fields = (obj?: { __typename?: any } | null): obj is league_season_divisions_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_season_divisions_min_fields"') - return league_season_divisions_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_season_divisions_mutation_response_possibleTypes: string[] = ['league_season_divisions_mutation_response'] - export const isleague_season_divisions_mutation_response = (obj?: { __typename?: any } | null): obj is league_season_divisions_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_season_divisions_mutation_response"') - return league_season_divisions_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const league_seasons_possibleTypes: string[] = ['league_seasons'] - export const isleague_seasons = (obj?: { __typename?: any } | null): obj is league_seasons => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_seasons"') - return league_seasons_possibleTypes.includes(obj.__typename) - } - - - - const league_seasons_aggregate_possibleTypes: string[] = ['league_seasons_aggregate'] - export const isleague_seasons_aggregate = (obj?: { __typename?: any } | null): obj is league_seasons_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_seasons_aggregate"') - return league_seasons_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const league_seasons_aggregate_fields_possibleTypes: string[] = ['league_seasons_aggregate_fields'] - export const isleague_seasons_aggregate_fields = (obj?: { __typename?: any } | null): obj is league_seasons_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_seasons_aggregate_fields"') - return league_seasons_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_seasons_avg_fields_possibleTypes: string[] = ['league_seasons_avg_fields'] - export const isleague_seasons_avg_fields = (obj?: { __typename?: any } | null): obj is league_seasons_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_seasons_avg_fields"') - return league_seasons_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_seasons_max_fields_possibleTypes: string[] = ['league_seasons_max_fields'] - export const isleague_seasons_max_fields = (obj?: { __typename?: any } | null): obj is league_seasons_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_seasons_max_fields"') - return league_seasons_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_seasons_min_fields_possibleTypes: string[] = ['league_seasons_min_fields'] - export const isleague_seasons_min_fields = (obj?: { __typename?: any } | null): obj is league_seasons_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_seasons_min_fields"') - return league_seasons_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_seasons_mutation_response_possibleTypes: string[] = ['league_seasons_mutation_response'] - export const isleague_seasons_mutation_response = (obj?: { __typename?: any } | null): obj is league_seasons_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_seasons_mutation_response"') - return league_seasons_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const league_seasons_stddev_fields_possibleTypes: string[] = ['league_seasons_stddev_fields'] - export const isleague_seasons_stddev_fields = (obj?: { __typename?: any } | null): obj is league_seasons_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_seasons_stddev_fields"') - return league_seasons_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_seasons_stddev_pop_fields_possibleTypes: string[] = ['league_seasons_stddev_pop_fields'] - export const isleague_seasons_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is league_seasons_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_seasons_stddev_pop_fields"') - return league_seasons_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_seasons_stddev_samp_fields_possibleTypes: string[] = ['league_seasons_stddev_samp_fields'] - export const isleague_seasons_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is league_seasons_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_seasons_stddev_samp_fields"') - return league_seasons_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_seasons_sum_fields_possibleTypes: string[] = ['league_seasons_sum_fields'] - export const isleague_seasons_sum_fields = (obj?: { __typename?: any } | null): obj is league_seasons_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_seasons_sum_fields"') - return league_seasons_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_seasons_var_pop_fields_possibleTypes: string[] = ['league_seasons_var_pop_fields'] - export const isleague_seasons_var_pop_fields = (obj?: { __typename?: any } | null): obj is league_seasons_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_seasons_var_pop_fields"') - return league_seasons_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_seasons_var_samp_fields_possibleTypes: string[] = ['league_seasons_var_samp_fields'] - export const isleague_seasons_var_samp_fields = (obj?: { __typename?: any } | null): obj is league_seasons_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_seasons_var_samp_fields"') - return league_seasons_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_seasons_variance_fields_possibleTypes: string[] = ['league_seasons_variance_fields'] - export const isleague_seasons_variance_fields = (obj?: { __typename?: any } | null): obj is league_seasons_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_seasons_variance_fields"') - return league_seasons_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_team_movements_possibleTypes: string[] = ['league_team_movements'] - export const isleague_team_movements = (obj?: { __typename?: any } | null): obj is league_team_movements => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_movements"') - return league_team_movements_possibleTypes.includes(obj.__typename) - } - - - - const league_team_movements_aggregate_possibleTypes: string[] = ['league_team_movements_aggregate'] - export const isleague_team_movements_aggregate = (obj?: { __typename?: any } | null): obj is league_team_movements_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_movements_aggregate"') - return league_team_movements_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const league_team_movements_aggregate_fields_possibleTypes: string[] = ['league_team_movements_aggregate_fields'] - export const isleague_team_movements_aggregate_fields = (obj?: { __typename?: any } | null): obj is league_team_movements_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_movements_aggregate_fields"') - return league_team_movements_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_team_movements_avg_fields_possibleTypes: string[] = ['league_team_movements_avg_fields'] - export const isleague_team_movements_avg_fields = (obj?: { __typename?: any } | null): obj is league_team_movements_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_movements_avg_fields"') - return league_team_movements_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_team_movements_max_fields_possibleTypes: string[] = ['league_team_movements_max_fields'] - export const isleague_team_movements_max_fields = (obj?: { __typename?: any } | null): obj is league_team_movements_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_movements_max_fields"') - return league_team_movements_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_team_movements_min_fields_possibleTypes: string[] = ['league_team_movements_min_fields'] - export const isleague_team_movements_min_fields = (obj?: { __typename?: any } | null): obj is league_team_movements_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_movements_min_fields"') - return league_team_movements_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_team_movements_mutation_response_possibleTypes: string[] = ['league_team_movements_mutation_response'] - export const isleague_team_movements_mutation_response = (obj?: { __typename?: any } | null): obj is league_team_movements_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_movements_mutation_response"') - return league_team_movements_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const league_team_movements_stddev_fields_possibleTypes: string[] = ['league_team_movements_stddev_fields'] - export const isleague_team_movements_stddev_fields = (obj?: { __typename?: any } | null): obj is league_team_movements_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_movements_stddev_fields"') - return league_team_movements_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_team_movements_stddev_pop_fields_possibleTypes: string[] = ['league_team_movements_stddev_pop_fields'] - export const isleague_team_movements_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is league_team_movements_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_movements_stddev_pop_fields"') - return league_team_movements_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_team_movements_stddev_samp_fields_possibleTypes: string[] = ['league_team_movements_stddev_samp_fields'] - export const isleague_team_movements_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is league_team_movements_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_movements_stddev_samp_fields"') - return league_team_movements_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_team_movements_sum_fields_possibleTypes: string[] = ['league_team_movements_sum_fields'] - export const isleague_team_movements_sum_fields = (obj?: { __typename?: any } | null): obj is league_team_movements_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_movements_sum_fields"') - return league_team_movements_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_team_movements_var_pop_fields_possibleTypes: string[] = ['league_team_movements_var_pop_fields'] - export const isleague_team_movements_var_pop_fields = (obj?: { __typename?: any } | null): obj is league_team_movements_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_movements_var_pop_fields"') - return league_team_movements_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_team_movements_var_samp_fields_possibleTypes: string[] = ['league_team_movements_var_samp_fields'] - export const isleague_team_movements_var_samp_fields = (obj?: { __typename?: any } | null): obj is league_team_movements_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_movements_var_samp_fields"') - return league_team_movements_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_team_movements_variance_fields_possibleTypes: string[] = ['league_team_movements_variance_fields'] - export const isleague_team_movements_variance_fields = (obj?: { __typename?: any } | null): obj is league_team_movements_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_movements_variance_fields"') - return league_team_movements_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_team_rosters_possibleTypes: string[] = ['league_team_rosters'] - export const isleague_team_rosters = (obj?: { __typename?: any } | null): obj is league_team_rosters => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_rosters"') - return league_team_rosters_possibleTypes.includes(obj.__typename) - } - - - - const league_team_rosters_aggregate_possibleTypes: string[] = ['league_team_rosters_aggregate'] - export const isleague_team_rosters_aggregate = (obj?: { __typename?: any } | null): obj is league_team_rosters_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_rosters_aggregate"') - return league_team_rosters_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const league_team_rosters_aggregate_fields_possibleTypes: string[] = ['league_team_rosters_aggregate_fields'] - export const isleague_team_rosters_aggregate_fields = (obj?: { __typename?: any } | null): obj is league_team_rosters_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_rosters_aggregate_fields"') - return league_team_rosters_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_team_rosters_avg_fields_possibleTypes: string[] = ['league_team_rosters_avg_fields'] - export const isleague_team_rosters_avg_fields = (obj?: { __typename?: any } | null): obj is league_team_rosters_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_rosters_avg_fields"') - return league_team_rosters_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_team_rosters_max_fields_possibleTypes: string[] = ['league_team_rosters_max_fields'] - export const isleague_team_rosters_max_fields = (obj?: { __typename?: any } | null): obj is league_team_rosters_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_rosters_max_fields"') - return league_team_rosters_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_team_rosters_min_fields_possibleTypes: string[] = ['league_team_rosters_min_fields'] - export const isleague_team_rosters_min_fields = (obj?: { __typename?: any } | null): obj is league_team_rosters_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_rosters_min_fields"') - return league_team_rosters_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_team_rosters_mutation_response_possibleTypes: string[] = ['league_team_rosters_mutation_response'] - export const isleague_team_rosters_mutation_response = (obj?: { __typename?: any } | null): obj is league_team_rosters_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_rosters_mutation_response"') - return league_team_rosters_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const league_team_rosters_stddev_fields_possibleTypes: string[] = ['league_team_rosters_stddev_fields'] - export const isleague_team_rosters_stddev_fields = (obj?: { __typename?: any } | null): obj is league_team_rosters_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_rosters_stddev_fields"') - return league_team_rosters_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_team_rosters_stddev_pop_fields_possibleTypes: string[] = ['league_team_rosters_stddev_pop_fields'] - export const isleague_team_rosters_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is league_team_rosters_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_rosters_stddev_pop_fields"') - return league_team_rosters_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_team_rosters_stddev_samp_fields_possibleTypes: string[] = ['league_team_rosters_stddev_samp_fields'] - export const isleague_team_rosters_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is league_team_rosters_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_rosters_stddev_samp_fields"') - return league_team_rosters_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_team_rosters_sum_fields_possibleTypes: string[] = ['league_team_rosters_sum_fields'] - export const isleague_team_rosters_sum_fields = (obj?: { __typename?: any } | null): obj is league_team_rosters_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_rosters_sum_fields"') - return league_team_rosters_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_team_rosters_var_pop_fields_possibleTypes: string[] = ['league_team_rosters_var_pop_fields'] - export const isleague_team_rosters_var_pop_fields = (obj?: { __typename?: any } | null): obj is league_team_rosters_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_rosters_var_pop_fields"') - return league_team_rosters_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_team_rosters_var_samp_fields_possibleTypes: string[] = ['league_team_rosters_var_samp_fields'] - export const isleague_team_rosters_var_samp_fields = (obj?: { __typename?: any } | null): obj is league_team_rosters_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_rosters_var_samp_fields"') - return league_team_rosters_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_team_rosters_variance_fields_possibleTypes: string[] = ['league_team_rosters_variance_fields'] - export const isleague_team_rosters_variance_fields = (obj?: { __typename?: any } | null): obj is league_team_rosters_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_rosters_variance_fields"') - return league_team_rosters_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_team_seasons_possibleTypes: string[] = ['league_team_seasons'] - export const isleague_team_seasons = (obj?: { __typename?: any } | null): obj is league_team_seasons => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_seasons"') - return league_team_seasons_possibleTypes.includes(obj.__typename) - } - - - - const league_team_seasons_aggregate_possibleTypes: string[] = ['league_team_seasons_aggregate'] - export const isleague_team_seasons_aggregate = (obj?: { __typename?: any } | null): obj is league_team_seasons_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_seasons_aggregate"') - return league_team_seasons_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const league_team_seasons_aggregate_fields_possibleTypes: string[] = ['league_team_seasons_aggregate_fields'] - export const isleague_team_seasons_aggregate_fields = (obj?: { __typename?: any } | null): obj is league_team_seasons_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_seasons_aggregate_fields"') - return league_team_seasons_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_team_seasons_avg_fields_possibleTypes: string[] = ['league_team_seasons_avg_fields'] - export const isleague_team_seasons_avg_fields = (obj?: { __typename?: any } | null): obj is league_team_seasons_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_seasons_avg_fields"') - return league_team_seasons_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_team_seasons_max_fields_possibleTypes: string[] = ['league_team_seasons_max_fields'] - export const isleague_team_seasons_max_fields = (obj?: { __typename?: any } | null): obj is league_team_seasons_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_seasons_max_fields"') - return league_team_seasons_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_team_seasons_min_fields_possibleTypes: string[] = ['league_team_seasons_min_fields'] - export const isleague_team_seasons_min_fields = (obj?: { __typename?: any } | null): obj is league_team_seasons_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_seasons_min_fields"') - return league_team_seasons_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_team_seasons_mutation_response_possibleTypes: string[] = ['league_team_seasons_mutation_response'] - export const isleague_team_seasons_mutation_response = (obj?: { __typename?: any } | null): obj is league_team_seasons_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_seasons_mutation_response"') - return league_team_seasons_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const league_team_seasons_stddev_fields_possibleTypes: string[] = ['league_team_seasons_stddev_fields'] - export const isleague_team_seasons_stddev_fields = (obj?: { __typename?: any } | null): obj is league_team_seasons_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_seasons_stddev_fields"') - return league_team_seasons_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_team_seasons_stddev_pop_fields_possibleTypes: string[] = ['league_team_seasons_stddev_pop_fields'] - export const isleague_team_seasons_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is league_team_seasons_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_seasons_stddev_pop_fields"') - return league_team_seasons_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_team_seasons_stddev_samp_fields_possibleTypes: string[] = ['league_team_seasons_stddev_samp_fields'] - export const isleague_team_seasons_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is league_team_seasons_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_seasons_stddev_samp_fields"') - return league_team_seasons_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_team_seasons_sum_fields_possibleTypes: string[] = ['league_team_seasons_sum_fields'] - export const isleague_team_seasons_sum_fields = (obj?: { __typename?: any } | null): obj is league_team_seasons_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_seasons_sum_fields"') - return league_team_seasons_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_team_seasons_var_pop_fields_possibleTypes: string[] = ['league_team_seasons_var_pop_fields'] - export const isleague_team_seasons_var_pop_fields = (obj?: { __typename?: any } | null): obj is league_team_seasons_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_seasons_var_pop_fields"') - return league_team_seasons_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_team_seasons_var_samp_fields_possibleTypes: string[] = ['league_team_seasons_var_samp_fields'] - export const isleague_team_seasons_var_samp_fields = (obj?: { __typename?: any } | null): obj is league_team_seasons_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_seasons_var_samp_fields"') - return league_team_seasons_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_team_seasons_variance_fields_possibleTypes: string[] = ['league_team_seasons_variance_fields'] - export const isleague_team_seasons_variance_fields = (obj?: { __typename?: any } | null): obj is league_team_seasons_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_seasons_variance_fields"') - return league_team_seasons_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_teams_possibleTypes: string[] = ['league_teams'] - export const isleague_teams = (obj?: { __typename?: any } | null): obj is league_teams => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_teams"') - return league_teams_possibleTypes.includes(obj.__typename) - } - - - - const league_teams_aggregate_possibleTypes: string[] = ['league_teams_aggregate'] - export const isleague_teams_aggregate = (obj?: { __typename?: any } | null): obj is league_teams_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_teams_aggregate"') - return league_teams_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const league_teams_aggregate_fields_possibleTypes: string[] = ['league_teams_aggregate_fields'] - export const isleague_teams_aggregate_fields = (obj?: { __typename?: any } | null): obj is league_teams_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_teams_aggregate_fields"') - return league_teams_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_teams_max_fields_possibleTypes: string[] = ['league_teams_max_fields'] - export const isleague_teams_max_fields = (obj?: { __typename?: any } | null): obj is league_teams_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_teams_max_fields"') - return league_teams_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_teams_min_fields_possibleTypes: string[] = ['league_teams_min_fields'] - export const isleague_teams_min_fields = (obj?: { __typename?: any } | null): obj is league_teams_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_teams_min_fields"') - return league_teams_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const league_teams_mutation_response_possibleTypes: string[] = ['league_teams_mutation_response'] - export const isleague_teams_mutation_response = (obj?: { __typename?: any } | null): obj is league_teams_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isleague_teams_mutation_response"') - return league_teams_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const lobbies_possibleTypes: string[] = ['lobbies'] - export const islobbies = (obj?: { __typename?: any } | null): obj is lobbies => { - if (!obj?.__typename) throw new Error('__typename is missing in "islobbies"') - return lobbies_possibleTypes.includes(obj.__typename) - } - - - - const lobbies_aggregate_possibleTypes: string[] = ['lobbies_aggregate'] - export const islobbies_aggregate = (obj?: { __typename?: any } | null): obj is lobbies_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "islobbies_aggregate"') - return lobbies_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const lobbies_aggregate_fields_possibleTypes: string[] = ['lobbies_aggregate_fields'] - export const islobbies_aggregate_fields = (obj?: { __typename?: any } | null): obj is lobbies_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "islobbies_aggregate_fields"') - return lobbies_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const lobbies_max_fields_possibleTypes: string[] = ['lobbies_max_fields'] - export const islobbies_max_fields = (obj?: { __typename?: any } | null): obj is lobbies_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "islobbies_max_fields"') - return lobbies_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const lobbies_min_fields_possibleTypes: string[] = ['lobbies_min_fields'] - export const islobbies_min_fields = (obj?: { __typename?: any } | null): obj is lobbies_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "islobbies_min_fields"') - return lobbies_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const lobbies_mutation_response_possibleTypes: string[] = ['lobbies_mutation_response'] - export const islobbies_mutation_response = (obj?: { __typename?: any } | null): obj is lobbies_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "islobbies_mutation_response"') - return lobbies_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const lobby_players_possibleTypes: string[] = ['lobby_players'] - export const islobby_players = (obj?: { __typename?: any } | null): obj is lobby_players => { - if (!obj?.__typename) throw new Error('__typename is missing in "islobby_players"') - return lobby_players_possibleTypes.includes(obj.__typename) - } - - - - const lobby_players_aggregate_possibleTypes: string[] = ['lobby_players_aggregate'] - export const islobby_players_aggregate = (obj?: { __typename?: any } | null): obj is lobby_players_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "islobby_players_aggregate"') - return lobby_players_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const lobby_players_aggregate_fields_possibleTypes: string[] = ['lobby_players_aggregate_fields'] - export const islobby_players_aggregate_fields = (obj?: { __typename?: any } | null): obj is lobby_players_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "islobby_players_aggregate_fields"') - return lobby_players_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const lobby_players_avg_fields_possibleTypes: string[] = ['lobby_players_avg_fields'] - export const islobby_players_avg_fields = (obj?: { __typename?: any } | null): obj is lobby_players_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "islobby_players_avg_fields"') - return lobby_players_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const lobby_players_max_fields_possibleTypes: string[] = ['lobby_players_max_fields'] - export const islobby_players_max_fields = (obj?: { __typename?: any } | null): obj is lobby_players_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "islobby_players_max_fields"') - return lobby_players_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const lobby_players_min_fields_possibleTypes: string[] = ['lobby_players_min_fields'] - export const islobby_players_min_fields = (obj?: { __typename?: any } | null): obj is lobby_players_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "islobby_players_min_fields"') - return lobby_players_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const lobby_players_mutation_response_possibleTypes: string[] = ['lobby_players_mutation_response'] - export const islobby_players_mutation_response = (obj?: { __typename?: any } | null): obj is lobby_players_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "islobby_players_mutation_response"') - return lobby_players_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const lobby_players_stddev_fields_possibleTypes: string[] = ['lobby_players_stddev_fields'] - export const islobby_players_stddev_fields = (obj?: { __typename?: any } | null): obj is lobby_players_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "islobby_players_stddev_fields"') - return lobby_players_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const lobby_players_stddev_pop_fields_possibleTypes: string[] = ['lobby_players_stddev_pop_fields'] - export const islobby_players_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is lobby_players_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "islobby_players_stddev_pop_fields"') - return lobby_players_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const lobby_players_stddev_samp_fields_possibleTypes: string[] = ['lobby_players_stddev_samp_fields'] - export const islobby_players_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is lobby_players_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "islobby_players_stddev_samp_fields"') - return lobby_players_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const lobby_players_sum_fields_possibleTypes: string[] = ['lobby_players_sum_fields'] - export const islobby_players_sum_fields = (obj?: { __typename?: any } | null): obj is lobby_players_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "islobby_players_sum_fields"') - return lobby_players_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const lobby_players_var_pop_fields_possibleTypes: string[] = ['lobby_players_var_pop_fields'] - export const islobby_players_var_pop_fields = (obj?: { __typename?: any } | null): obj is lobby_players_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "islobby_players_var_pop_fields"') - return lobby_players_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const lobby_players_var_samp_fields_possibleTypes: string[] = ['lobby_players_var_samp_fields'] - export const islobby_players_var_samp_fields = (obj?: { __typename?: any } | null): obj is lobby_players_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "islobby_players_var_samp_fields"') - return lobby_players_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const lobby_players_variance_fields_possibleTypes: string[] = ['lobby_players_variance_fields'] - export const islobby_players_variance_fields = (obj?: { __typename?: any } | null): obj is lobby_players_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "islobby_players_variance_fields"') - return lobby_players_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const map_callouts_possibleTypes: string[] = ['map_callouts'] - export const ismap_callouts = (obj?: { __typename?: any } | null): obj is map_callouts => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismap_callouts"') - return map_callouts_possibleTypes.includes(obj.__typename) - } - - - - const map_callouts_aggregate_possibleTypes: string[] = ['map_callouts_aggregate'] - export const ismap_callouts_aggregate = (obj?: { __typename?: any } | null): obj is map_callouts_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismap_callouts_aggregate"') - return map_callouts_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const map_callouts_aggregate_fields_possibleTypes: string[] = ['map_callouts_aggregate_fields'] - export const ismap_callouts_aggregate_fields = (obj?: { __typename?: any } | null): obj is map_callouts_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismap_callouts_aggregate_fields"') - return map_callouts_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const map_callouts_max_fields_possibleTypes: string[] = ['map_callouts_max_fields'] - export const ismap_callouts_max_fields = (obj?: { __typename?: any } | null): obj is map_callouts_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismap_callouts_max_fields"') - return map_callouts_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const map_callouts_min_fields_possibleTypes: string[] = ['map_callouts_min_fields'] - export const ismap_callouts_min_fields = (obj?: { __typename?: any } | null): obj is map_callouts_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismap_callouts_min_fields"') - return map_callouts_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const map_callouts_mutation_response_possibleTypes: string[] = ['map_callouts_mutation_response'] - export const ismap_callouts_mutation_response = (obj?: { __typename?: any } | null): obj is map_callouts_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismap_callouts_mutation_response"') - return map_callouts_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const map_pools_possibleTypes: string[] = ['map_pools'] - export const ismap_pools = (obj?: { __typename?: any } | null): obj is map_pools => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismap_pools"') - return map_pools_possibleTypes.includes(obj.__typename) - } - - - - const map_pools_aggregate_possibleTypes: string[] = ['map_pools_aggregate'] - export const ismap_pools_aggregate = (obj?: { __typename?: any } | null): obj is map_pools_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismap_pools_aggregate"') - return map_pools_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const map_pools_aggregate_fields_possibleTypes: string[] = ['map_pools_aggregate_fields'] - export const ismap_pools_aggregate_fields = (obj?: { __typename?: any } | null): obj is map_pools_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismap_pools_aggregate_fields"') - return map_pools_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const map_pools_max_fields_possibleTypes: string[] = ['map_pools_max_fields'] - export const ismap_pools_max_fields = (obj?: { __typename?: any } | null): obj is map_pools_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismap_pools_max_fields"') - return map_pools_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const map_pools_min_fields_possibleTypes: string[] = ['map_pools_min_fields'] - export const ismap_pools_min_fields = (obj?: { __typename?: any } | null): obj is map_pools_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismap_pools_min_fields"') - return map_pools_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const map_pools_mutation_response_possibleTypes: string[] = ['map_pools_mutation_response'] - export const ismap_pools_mutation_response = (obj?: { __typename?: any } | null): obj is map_pools_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismap_pools_mutation_response"') - return map_pools_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const maps_possibleTypes: string[] = ['maps'] - export const ismaps = (obj?: { __typename?: any } | null): obj is maps => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismaps"') - return maps_possibleTypes.includes(obj.__typename) - } - - - - const maps_aggregate_possibleTypes: string[] = ['maps_aggregate'] - export const ismaps_aggregate = (obj?: { __typename?: any } | null): obj is maps_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismaps_aggregate"') - return maps_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const maps_aggregate_fields_possibleTypes: string[] = ['maps_aggregate_fields'] - export const ismaps_aggregate_fields = (obj?: { __typename?: any } | null): obj is maps_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismaps_aggregate_fields"') - return maps_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const maps_max_fields_possibleTypes: string[] = ['maps_max_fields'] - export const ismaps_max_fields = (obj?: { __typename?: any } | null): obj is maps_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismaps_max_fields"') - return maps_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const maps_min_fields_possibleTypes: string[] = ['maps_min_fields'] - export const ismaps_min_fields = (obj?: { __typename?: any } | null): obj is maps_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismaps_min_fields"') - return maps_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const maps_mutation_response_possibleTypes: string[] = ['maps_mutation_response'] - export const ismaps_mutation_response = (obj?: { __typename?: any } | null): obj is maps_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismaps_mutation_response"') - return maps_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const match_clips_possibleTypes: string[] = ['match_clips'] - export const ismatch_clips = (obj?: { __typename?: any } | null): obj is match_clips => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_clips"') - return match_clips_possibleTypes.includes(obj.__typename) - } - - - - const match_clips_aggregate_possibleTypes: string[] = ['match_clips_aggregate'] - export const ismatch_clips_aggregate = (obj?: { __typename?: any } | null): obj is match_clips_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_clips_aggregate"') - return match_clips_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const match_clips_aggregate_fields_possibleTypes: string[] = ['match_clips_aggregate_fields'] - export const ismatch_clips_aggregate_fields = (obj?: { __typename?: any } | null): obj is match_clips_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_clips_aggregate_fields"') - return match_clips_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_clips_avg_fields_possibleTypes: string[] = ['match_clips_avg_fields'] - export const ismatch_clips_avg_fields = (obj?: { __typename?: any } | null): obj is match_clips_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_clips_avg_fields"') - return match_clips_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_clips_max_fields_possibleTypes: string[] = ['match_clips_max_fields'] - export const ismatch_clips_max_fields = (obj?: { __typename?: any } | null): obj is match_clips_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_clips_max_fields"') - return match_clips_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_clips_min_fields_possibleTypes: string[] = ['match_clips_min_fields'] - export const ismatch_clips_min_fields = (obj?: { __typename?: any } | null): obj is match_clips_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_clips_min_fields"') - return match_clips_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_clips_mutation_response_possibleTypes: string[] = ['match_clips_mutation_response'] - export const ismatch_clips_mutation_response = (obj?: { __typename?: any } | null): obj is match_clips_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_clips_mutation_response"') - return match_clips_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const match_clips_stddev_fields_possibleTypes: string[] = ['match_clips_stddev_fields'] - export const ismatch_clips_stddev_fields = (obj?: { __typename?: any } | null): obj is match_clips_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_clips_stddev_fields"') - return match_clips_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_clips_stddev_pop_fields_possibleTypes: string[] = ['match_clips_stddev_pop_fields'] - export const ismatch_clips_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is match_clips_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_clips_stddev_pop_fields"') - return match_clips_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_clips_stddev_samp_fields_possibleTypes: string[] = ['match_clips_stddev_samp_fields'] - export const ismatch_clips_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is match_clips_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_clips_stddev_samp_fields"') - return match_clips_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_clips_sum_fields_possibleTypes: string[] = ['match_clips_sum_fields'] - export const ismatch_clips_sum_fields = (obj?: { __typename?: any } | null): obj is match_clips_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_clips_sum_fields"') - return match_clips_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_clips_var_pop_fields_possibleTypes: string[] = ['match_clips_var_pop_fields'] - export const ismatch_clips_var_pop_fields = (obj?: { __typename?: any } | null): obj is match_clips_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_clips_var_pop_fields"') - return match_clips_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_clips_var_samp_fields_possibleTypes: string[] = ['match_clips_var_samp_fields'] - export const ismatch_clips_var_samp_fields = (obj?: { __typename?: any } | null): obj is match_clips_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_clips_var_samp_fields"') - return match_clips_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_clips_variance_fields_possibleTypes: string[] = ['match_clips_variance_fields'] - export const ismatch_clips_variance_fields = (obj?: { __typename?: any } | null): obj is match_clips_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_clips_variance_fields"') - return match_clips_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_demo_sessions_possibleTypes: string[] = ['match_demo_sessions'] - export const ismatch_demo_sessions = (obj?: { __typename?: any } | null): obj is match_demo_sessions => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_demo_sessions"') - return match_demo_sessions_possibleTypes.includes(obj.__typename) - } - - - - const match_demo_sessions_aggregate_possibleTypes: string[] = ['match_demo_sessions_aggregate'] - export const ismatch_demo_sessions_aggregate = (obj?: { __typename?: any } | null): obj is match_demo_sessions_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_demo_sessions_aggregate"') - return match_demo_sessions_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const match_demo_sessions_aggregate_fields_possibleTypes: string[] = ['match_demo_sessions_aggregate_fields'] - export const ismatch_demo_sessions_aggregate_fields = (obj?: { __typename?: any } | null): obj is match_demo_sessions_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_demo_sessions_aggregate_fields"') - return match_demo_sessions_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_demo_sessions_avg_fields_possibleTypes: string[] = ['match_demo_sessions_avg_fields'] - export const ismatch_demo_sessions_avg_fields = (obj?: { __typename?: any } | null): obj is match_demo_sessions_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_demo_sessions_avg_fields"') - return match_demo_sessions_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_demo_sessions_max_fields_possibleTypes: string[] = ['match_demo_sessions_max_fields'] - export const ismatch_demo_sessions_max_fields = (obj?: { __typename?: any } | null): obj is match_demo_sessions_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_demo_sessions_max_fields"') - return match_demo_sessions_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_demo_sessions_min_fields_possibleTypes: string[] = ['match_demo_sessions_min_fields'] - export const ismatch_demo_sessions_min_fields = (obj?: { __typename?: any } | null): obj is match_demo_sessions_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_demo_sessions_min_fields"') - return match_demo_sessions_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_demo_sessions_mutation_response_possibleTypes: string[] = ['match_demo_sessions_mutation_response'] - export const ismatch_demo_sessions_mutation_response = (obj?: { __typename?: any } | null): obj is match_demo_sessions_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_demo_sessions_mutation_response"') - return match_demo_sessions_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const match_demo_sessions_stddev_fields_possibleTypes: string[] = ['match_demo_sessions_stddev_fields'] - export const ismatch_demo_sessions_stddev_fields = (obj?: { __typename?: any } | null): obj is match_demo_sessions_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_demo_sessions_stddev_fields"') - return match_demo_sessions_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_demo_sessions_stddev_pop_fields_possibleTypes: string[] = ['match_demo_sessions_stddev_pop_fields'] - export const ismatch_demo_sessions_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is match_demo_sessions_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_demo_sessions_stddev_pop_fields"') - return match_demo_sessions_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_demo_sessions_stddev_samp_fields_possibleTypes: string[] = ['match_demo_sessions_stddev_samp_fields'] - export const ismatch_demo_sessions_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is match_demo_sessions_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_demo_sessions_stddev_samp_fields"') - return match_demo_sessions_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_demo_sessions_sum_fields_possibleTypes: string[] = ['match_demo_sessions_sum_fields'] - export const ismatch_demo_sessions_sum_fields = (obj?: { __typename?: any } | null): obj is match_demo_sessions_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_demo_sessions_sum_fields"') - return match_demo_sessions_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_demo_sessions_var_pop_fields_possibleTypes: string[] = ['match_demo_sessions_var_pop_fields'] - export const ismatch_demo_sessions_var_pop_fields = (obj?: { __typename?: any } | null): obj is match_demo_sessions_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_demo_sessions_var_pop_fields"') - return match_demo_sessions_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_demo_sessions_var_samp_fields_possibleTypes: string[] = ['match_demo_sessions_var_samp_fields'] - export const ismatch_demo_sessions_var_samp_fields = (obj?: { __typename?: any } | null): obj is match_demo_sessions_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_demo_sessions_var_samp_fields"') - return match_demo_sessions_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_demo_sessions_variance_fields_possibleTypes: string[] = ['match_demo_sessions_variance_fields'] - export const ismatch_demo_sessions_variance_fields = (obj?: { __typename?: any } | null): obj is match_demo_sessions_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_demo_sessions_variance_fields"') - return match_demo_sessions_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_lineup_players_possibleTypes: string[] = ['match_lineup_players'] - export const ismatch_lineup_players = (obj?: { __typename?: any } | null): obj is match_lineup_players => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineup_players"') - return match_lineup_players_possibleTypes.includes(obj.__typename) - } - - - - const match_lineup_players_aggregate_possibleTypes: string[] = ['match_lineup_players_aggregate'] - export const ismatch_lineup_players_aggregate = (obj?: { __typename?: any } | null): obj is match_lineup_players_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineup_players_aggregate"') - return match_lineup_players_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const match_lineup_players_aggregate_fields_possibleTypes: string[] = ['match_lineup_players_aggregate_fields'] - export const ismatch_lineup_players_aggregate_fields = (obj?: { __typename?: any } | null): obj is match_lineup_players_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineup_players_aggregate_fields"') - return match_lineup_players_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_lineup_players_avg_fields_possibleTypes: string[] = ['match_lineup_players_avg_fields'] - export const ismatch_lineup_players_avg_fields = (obj?: { __typename?: any } | null): obj is match_lineup_players_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineup_players_avg_fields"') - return match_lineup_players_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_lineup_players_max_fields_possibleTypes: string[] = ['match_lineup_players_max_fields'] - export const ismatch_lineup_players_max_fields = (obj?: { __typename?: any } | null): obj is match_lineup_players_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineup_players_max_fields"') - return match_lineup_players_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_lineup_players_min_fields_possibleTypes: string[] = ['match_lineup_players_min_fields'] - export const ismatch_lineup_players_min_fields = (obj?: { __typename?: any } | null): obj is match_lineup_players_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineup_players_min_fields"') - return match_lineup_players_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_lineup_players_mutation_response_possibleTypes: string[] = ['match_lineup_players_mutation_response'] - export const ismatch_lineup_players_mutation_response = (obj?: { __typename?: any } | null): obj is match_lineup_players_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineup_players_mutation_response"') - return match_lineup_players_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const match_lineup_players_stddev_fields_possibleTypes: string[] = ['match_lineup_players_stddev_fields'] - export const ismatch_lineup_players_stddev_fields = (obj?: { __typename?: any } | null): obj is match_lineup_players_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineup_players_stddev_fields"') - return match_lineup_players_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_lineup_players_stddev_pop_fields_possibleTypes: string[] = ['match_lineup_players_stddev_pop_fields'] - export const ismatch_lineup_players_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is match_lineup_players_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineup_players_stddev_pop_fields"') - return match_lineup_players_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_lineup_players_stddev_samp_fields_possibleTypes: string[] = ['match_lineup_players_stddev_samp_fields'] - export const ismatch_lineup_players_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is match_lineup_players_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineup_players_stddev_samp_fields"') - return match_lineup_players_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_lineup_players_sum_fields_possibleTypes: string[] = ['match_lineup_players_sum_fields'] - export const ismatch_lineup_players_sum_fields = (obj?: { __typename?: any } | null): obj is match_lineup_players_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineup_players_sum_fields"') - return match_lineup_players_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_lineup_players_var_pop_fields_possibleTypes: string[] = ['match_lineup_players_var_pop_fields'] - export const ismatch_lineup_players_var_pop_fields = (obj?: { __typename?: any } | null): obj is match_lineup_players_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineup_players_var_pop_fields"') - return match_lineup_players_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_lineup_players_var_samp_fields_possibleTypes: string[] = ['match_lineup_players_var_samp_fields'] - export const ismatch_lineup_players_var_samp_fields = (obj?: { __typename?: any } | null): obj is match_lineup_players_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineup_players_var_samp_fields"') - return match_lineup_players_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_lineup_players_variance_fields_possibleTypes: string[] = ['match_lineup_players_variance_fields'] - export const ismatch_lineup_players_variance_fields = (obj?: { __typename?: any } | null): obj is match_lineup_players_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineup_players_variance_fields"') - return match_lineup_players_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_lineups_possibleTypes: string[] = ['match_lineups'] - export const ismatch_lineups = (obj?: { __typename?: any } | null): obj is match_lineups => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineups"') - return match_lineups_possibleTypes.includes(obj.__typename) - } - - - - const match_lineups_aggregate_possibleTypes: string[] = ['match_lineups_aggregate'] - export const ismatch_lineups_aggregate = (obj?: { __typename?: any } | null): obj is match_lineups_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineups_aggregate"') - return match_lineups_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const match_lineups_aggregate_fields_possibleTypes: string[] = ['match_lineups_aggregate_fields'] - export const ismatch_lineups_aggregate_fields = (obj?: { __typename?: any } | null): obj is match_lineups_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineups_aggregate_fields"') - return match_lineups_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_lineups_avg_fields_possibleTypes: string[] = ['match_lineups_avg_fields'] - export const ismatch_lineups_avg_fields = (obj?: { __typename?: any } | null): obj is match_lineups_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineups_avg_fields"') - return match_lineups_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_lineups_max_fields_possibleTypes: string[] = ['match_lineups_max_fields'] - export const ismatch_lineups_max_fields = (obj?: { __typename?: any } | null): obj is match_lineups_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineups_max_fields"') - return match_lineups_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_lineups_min_fields_possibleTypes: string[] = ['match_lineups_min_fields'] - export const ismatch_lineups_min_fields = (obj?: { __typename?: any } | null): obj is match_lineups_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineups_min_fields"') - return match_lineups_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_lineups_mutation_response_possibleTypes: string[] = ['match_lineups_mutation_response'] - export const ismatch_lineups_mutation_response = (obj?: { __typename?: any } | null): obj is match_lineups_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineups_mutation_response"') - return match_lineups_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const match_lineups_stddev_fields_possibleTypes: string[] = ['match_lineups_stddev_fields'] - export const ismatch_lineups_stddev_fields = (obj?: { __typename?: any } | null): obj is match_lineups_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineups_stddev_fields"') - return match_lineups_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_lineups_stddev_pop_fields_possibleTypes: string[] = ['match_lineups_stddev_pop_fields'] - export const ismatch_lineups_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is match_lineups_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineups_stddev_pop_fields"') - return match_lineups_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_lineups_stddev_samp_fields_possibleTypes: string[] = ['match_lineups_stddev_samp_fields'] - export const ismatch_lineups_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is match_lineups_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineups_stddev_samp_fields"') - return match_lineups_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_lineups_sum_fields_possibleTypes: string[] = ['match_lineups_sum_fields'] - export const ismatch_lineups_sum_fields = (obj?: { __typename?: any } | null): obj is match_lineups_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineups_sum_fields"') - return match_lineups_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_lineups_var_pop_fields_possibleTypes: string[] = ['match_lineups_var_pop_fields'] - export const ismatch_lineups_var_pop_fields = (obj?: { __typename?: any } | null): obj is match_lineups_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineups_var_pop_fields"') - return match_lineups_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_lineups_var_samp_fields_possibleTypes: string[] = ['match_lineups_var_samp_fields'] - export const ismatch_lineups_var_samp_fields = (obj?: { __typename?: any } | null): obj is match_lineups_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineups_var_samp_fields"') - return match_lineups_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_lineups_variance_fields_possibleTypes: string[] = ['match_lineups_variance_fields'] - export const ismatch_lineups_variance_fields = (obj?: { __typename?: any } | null): obj is match_lineups_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineups_variance_fields"') - return match_lineups_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_map_demos_possibleTypes: string[] = ['match_map_demos'] - export const ismatch_map_demos = (obj?: { __typename?: any } | null): obj is match_map_demos => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_demos"') - return match_map_demos_possibleTypes.includes(obj.__typename) - } - - - - const match_map_demos_aggregate_possibleTypes: string[] = ['match_map_demos_aggregate'] - export const ismatch_map_demos_aggregate = (obj?: { __typename?: any } | null): obj is match_map_demos_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_demos_aggregate"') - return match_map_demos_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const match_map_demos_aggregate_fields_possibleTypes: string[] = ['match_map_demos_aggregate_fields'] - export const ismatch_map_demos_aggregate_fields = (obj?: { __typename?: any } | null): obj is match_map_demos_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_demos_aggregate_fields"') - return match_map_demos_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_map_demos_avg_fields_possibleTypes: string[] = ['match_map_demos_avg_fields'] - export const ismatch_map_demos_avg_fields = (obj?: { __typename?: any } | null): obj is match_map_demos_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_demos_avg_fields"') - return match_map_demos_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_map_demos_max_fields_possibleTypes: string[] = ['match_map_demos_max_fields'] - export const ismatch_map_demos_max_fields = (obj?: { __typename?: any } | null): obj is match_map_demos_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_demos_max_fields"') - return match_map_demos_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_map_demos_min_fields_possibleTypes: string[] = ['match_map_demos_min_fields'] - export const ismatch_map_demos_min_fields = (obj?: { __typename?: any } | null): obj is match_map_demos_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_demos_min_fields"') - return match_map_demos_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_map_demos_mutation_response_possibleTypes: string[] = ['match_map_demos_mutation_response'] - export const ismatch_map_demos_mutation_response = (obj?: { __typename?: any } | null): obj is match_map_demos_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_demos_mutation_response"') - return match_map_demos_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const match_map_demos_stddev_fields_possibleTypes: string[] = ['match_map_demos_stddev_fields'] - export const ismatch_map_demos_stddev_fields = (obj?: { __typename?: any } | null): obj is match_map_demos_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_demos_stddev_fields"') - return match_map_demos_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_map_demos_stddev_pop_fields_possibleTypes: string[] = ['match_map_demos_stddev_pop_fields'] - export const ismatch_map_demos_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is match_map_demos_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_demos_stddev_pop_fields"') - return match_map_demos_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_map_demos_stddev_samp_fields_possibleTypes: string[] = ['match_map_demos_stddev_samp_fields'] - export const ismatch_map_demos_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is match_map_demos_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_demos_stddev_samp_fields"') - return match_map_demos_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_map_demos_sum_fields_possibleTypes: string[] = ['match_map_demos_sum_fields'] - export const ismatch_map_demos_sum_fields = (obj?: { __typename?: any } | null): obj is match_map_demos_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_demos_sum_fields"') - return match_map_demos_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_map_demos_var_pop_fields_possibleTypes: string[] = ['match_map_demos_var_pop_fields'] - export const ismatch_map_demos_var_pop_fields = (obj?: { __typename?: any } | null): obj is match_map_demos_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_demos_var_pop_fields"') - return match_map_demos_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_map_demos_var_samp_fields_possibleTypes: string[] = ['match_map_demos_var_samp_fields'] - export const ismatch_map_demos_var_samp_fields = (obj?: { __typename?: any } | null): obj is match_map_demos_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_demos_var_samp_fields"') - return match_map_demos_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_map_demos_variance_fields_possibleTypes: string[] = ['match_map_demos_variance_fields'] - export const ismatch_map_demos_variance_fields = (obj?: { __typename?: any } | null): obj is match_map_demos_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_demos_variance_fields"') - return match_map_demos_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_map_rounds_possibleTypes: string[] = ['match_map_rounds'] - export const ismatch_map_rounds = (obj?: { __typename?: any } | null): obj is match_map_rounds => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_rounds"') - return match_map_rounds_possibleTypes.includes(obj.__typename) - } - - - - const match_map_rounds_aggregate_possibleTypes: string[] = ['match_map_rounds_aggregate'] - export const ismatch_map_rounds_aggregate = (obj?: { __typename?: any } | null): obj is match_map_rounds_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_rounds_aggregate"') - return match_map_rounds_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const match_map_rounds_aggregate_fields_possibleTypes: string[] = ['match_map_rounds_aggregate_fields'] - export const ismatch_map_rounds_aggregate_fields = (obj?: { __typename?: any } | null): obj is match_map_rounds_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_rounds_aggregate_fields"') - return match_map_rounds_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_map_rounds_avg_fields_possibleTypes: string[] = ['match_map_rounds_avg_fields'] - export const ismatch_map_rounds_avg_fields = (obj?: { __typename?: any } | null): obj is match_map_rounds_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_rounds_avg_fields"') - return match_map_rounds_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_map_rounds_max_fields_possibleTypes: string[] = ['match_map_rounds_max_fields'] - export const ismatch_map_rounds_max_fields = (obj?: { __typename?: any } | null): obj is match_map_rounds_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_rounds_max_fields"') - return match_map_rounds_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_map_rounds_min_fields_possibleTypes: string[] = ['match_map_rounds_min_fields'] - export const ismatch_map_rounds_min_fields = (obj?: { __typename?: any } | null): obj is match_map_rounds_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_rounds_min_fields"') - return match_map_rounds_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_map_rounds_mutation_response_possibleTypes: string[] = ['match_map_rounds_mutation_response'] - export const ismatch_map_rounds_mutation_response = (obj?: { __typename?: any } | null): obj is match_map_rounds_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_rounds_mutation_response"') - return match_map_rounds_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const match_map_rounds_stddev_fields_possibleTypes: string[] = ['match_map_rounds_stddev_fields'] - export const ismatch_map_rounds_stddev_fields = (obj?: { __typename?: any } | null): obj is match_map_rounds_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_rounds_stddev_fields"') - return match_map_rounds_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_map_rounds_stddev_pop_fields_possibleTypes: string[] = ['match_map_rounds_stddev_pop_fields'] - export const ismatch_map_rounds_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is match_map_rounds_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_rounds_stddev_pop_fields"') - return match_map_rounds_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_map_rounds_stddev_samp_fields_possibleTypes: string[] = ['match_map_rounds_stddev_samp_fields'] - export const ismatch_map_rounds_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is match_map_rounds_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_rounds_stddev_samp_fields"') - return match_map_rounds_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_map_rounds_sum_fields_possibleTypes: string[] = ['match_map_rounds_sum_fields'] - export const ismatch_map_rounds_sum_fields = (obj?: { __typename?: any } | null): obj is match_map_rounds_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_rounds_sum_fields"') - return match_map_rounds_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_map_rounds_var_pop_fields_possibleTypes: string[] = ['match_map_rounds_var_pop_fields'] - export const ismatch_map_rounds_var_pop_fields = (obj?: { __typename?: any } | null): obj is match_map_rounds_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_rounds_var_pop_fields"') - return match_map_rounds_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_map_rounds_var_samp_fields_possibleTypes: string[] = ['match_map_rounds_var_samp_fields'] - export const ismatch_map_rounds_var_samp_fields = (obj?: { __typename?: any } | null): obj is match_map_rounds_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_rounds_var_samp_fields"') - return match_map_rounds_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_map_rounds_variance_fields_possibleTypes: string[] = ['match_map_rounds_variance_fields'] - export const ismatch_map_rounds_variance_fields = (obj?: { __typename?: any } | null): obj is match_map_rounds_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_rounds_variance_fields"') - return match_map_rounds_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_map_veto_picks_possibleTypes: string[] = ['match_map_veto_picks'] - export const ismatch_map_veto_picks = (obj?: { __typename?: any } | null): obj is match_map_veto_picks => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_veto_picks"') - return match_map_veto_picks_possibleTypes.includes(obj.__typename) - } - - - - const match_map_veto_picks_aggregate_possibleTypes: string[] = ['match_map_veto_picks_aggregate'] - export const ismatch_map_veto_picks_aggregate = (obj?: { __typename?: any } | null): obj is match_map_veto_picks_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_veto_picks_aggregate"') - return match_map_veto_picks_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const match_map_veto_picks_aggregate_fields_possibleTypes: string[] = ['match_map_veto_picks_aggregate_fields'] - export const ismatch_map_veto_picks_aggregate_fields = (obj?: { __typename?: any } | null): obj is match_map_veto_picks_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_veto_picks_aggregate_fields"') - return match_map_veto_picks_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_map_veto_picks_max_fields_possibleTypes: string[] = ['match_map_veto_picks_max_fields'] - export const ismatch_map_veto_picks_max_fields = (obj?: { __typename?: any } | null): obj is match_map_veto_picks_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_veto_picks_max_fields"') - return match_map_veto_picks_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_map_veto_picks_min_fields_possibleTypes: string[] = ['match_map_veto_picks_min_fields'] - export const ismatch_map_veto_picks_min_fields = (obj?: { __typename?: any } | null): obj is match_map_veto_picks_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_veto_picks_min_fields"') - return match_map_veto_picks_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_map_veto_picks_mutation_response_possibleTypes: string[] = ['match_map_veto_picks_mutation_response'] - export const ismatch_map_veto_picks_mutation_response = (obj?: { __typename?: any } | null): obj is match_map_veto_picks_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_veto_picks_mutation_response"') - return match_map_veto_picks_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const match_maps_possibleTypes: string[] = ['match_maps'] - export const ismatch_maps = (obj?: { __typename?: any } | null): obj is match_maps => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_maps"') - return match_maps_possibleTypes.includes(obj.__typename) - } - - - - const match_maps_aggregate_possibleTypes: string[] = ['match_maps_aggregate'] - export const ismatch_maps_aggregate = (obj?: { __typename?: any } | null): obj is match_maps_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_maps_aggregate"') - return match_maps_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const match_maps_aggregate_fields_possibleTypes: string[] = ['match_maps_aggregate_fields'] - export const ismatch_maps_aggregate_fields = (obj?: { __typename?: any } | null): obj is match_maps_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_maps_aggregate_fields"') - return match_maps_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_maps_avg_fields_possibleTypes: string[] = ['match_maps_avg_fields'] - export const ismatch_maps_avg_fields = (obj?: { __typename?: any } | null): obj is match_maps_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_maps_avg_fields"') - return match_maps_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_maps_max_fields_possibleTypes: string[] = ['match_maps_max_fields'] - export const ismatch_maps_max_fields = (obj?: { __typename?: any } | null): obj is match_maps_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_maps_max_fields"') - return match_maps_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_maps_min_fields_possibleTypes: string[] = ['match_maps_min_fields'] - export const ismatch_maps_min_fields = (obj?: { __typename?: any } | null): obj is match_maps_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_maps_min_fields"') - return match_maps_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_maps_mutation_response_possibleTypes: string[] = ['match_maps_mutation_response'] - export const ismatch_maps_mutation_response = (obj?: { __typename?: any } | null): obj is match_maps_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_maps_mutation_response"') - return match_maps_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const match_maps_stddev_fields_possibleTypes: string[] = ['match_maps_stddev_fields'] - export const ismatch_maps_stddev_fields = (obj?: { __typename?: any } | null): obj is match_maps_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_maps_stddev_fields"') - return match_maps_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_maps_stddev_pop_fields_possibleTypes: string[] = ['match_maps_stddev_pop_fields'] - export const ismatch_maps_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is match_maps_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_maps_stddev_pop_fields"') - return match_maps_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_maps_stddev_samp_fields_possibleTypes: string[] = ['match_maps_stddev_samp_fields'] - export const ismatch_maps_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is match_maps_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_maps_stddev_samp_fields"') - return match_maps_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_maps_sum_fields_possibleTypes: string[] = ['match_maps_sum_fields'] - export const ismatch_maps_sum_fields = (obj?: { __typename?: any } | null): obj is match_maps_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_maps_sum_fields"') - return match_maps_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_maps_var_pop_fields_possibleTypes: string[] = ['match_maps_var_pop_fields'] - export const ismatch_maps_var_pop_fields = (obj?: { __typename?: any } | null): obj is match_maps_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_maps_var_pop_fields"') - return match_maps_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_maps_var_samp_fields_possibleTypes: string[] = ['match_maps_var_samp_fields'] - export const ismatch_maps_var_samp_fields = (obj?: { __typename?: any } | null): obj is match_maps_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_maps_var_samp_fields"') - return match_maps_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_maps_variance_fields_possibleTypes: string[] = ['match_maps_variance_fields'] - export const ismatch_maps_variance_fields = (obj?: { __typename?: any } | null): obj is match_maps_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_maps_variance_fields"') - return match_maps_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_options_possibleTypes: string[] = ['match_options'] - export const ismatch_options = (obj?: { __typename?: any } | null): obj is match_options => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_options"') - return match_options_possibleTypes.includes(obj.__typename) - } - - - - const match_options_aggregate_possibleTypes: string[] = ['match_options_aggregate'] - export const ismatch_options_aggregate = (obj?: { __typename?: any } | null): obj is match_options_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_options_aggregate"') - return match_options_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const match_options_aggregate_fields_possibleTypes: string[] = ['match_options_aggregate_fields'] - export const ismatch_options_aggregate_fields = (obj?: { __typename?: any } | null): obj is match_options_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_options_aggregate_fields"') - return match_options_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_options_avg_fields_possibleTypes: string[] = ['match_options_avg_fields'] - export const ismatch_options_avg_fields = (obj?: { __typename?: any } | null): obj is match_options_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_options_avg_fields"') - return match_options_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_options_max_fields_possibleTypes: string[] = ['match_options_max_fields'] - export const ismatch_options_max_fields = (obj?: { __typename?: any } | null): obj is match_options_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_options_max_fields"') - return match_options_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_options_min_fields_possibleTypes: string[] = ['match_options_min_fields'] - export const ismatch_options_min_fields = (obj?: { __typename?: any } | null): obj is match_options_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_options_min_fields"') - return match_options_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_options_mutation_response_possibleTypes: string[] = ['match_options_mutation_response'] - export const ismatch_options_mutation_response = (obj?: { __typename?: any } | null): obj is match_options_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_options_mutation_response"') - return match_options_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const match_options_stddev_fields_possibleTypes: string[] = ['match_options_stddev_fields'] - export const ismatch_options_stddev_fields = (obj?: { __typename?: any } | null): obj is match_options_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_options_stddev_fields"') - return match_options_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_options_stddev_pop_fields_possibleTypes: string[] = ['match_options_stddev_pop_fields'] - export const ismatch_options_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is match_options_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_options_stddev_pop_fields"') - return match_options_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_options_stddev_samp_fields_possibleTypes: string[] = ['match_options_stddev_samp_fields'] - export const ismatch_options_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is match_options_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_options_stddev_samp_fields"') - return match_options_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_options_sum_fields_possibleTypes: string[] = ['match_options_sum_fields'] - export const ismatch_options_sum_fields = (obj?: { __typename?: any } | null): obj is match_options_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_options_sum_fields"') - return match_options_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_options_var_pop_fields_possibleTypes: string[] = ['match_options_var_pop_fields'] - export const ismatch_options_var_pop_fields = (obj?: { __typename?: any } | null): obj is match_options_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_options_var_pop_fields"') - return match_options_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_options_var_samp_fields_possibleTypes: string[] = ['match_options_var_samp_fields'] - export const ismatch_options_var_samp_fields = (obj?: { __typename?: any } | null): obj is match_options_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_options_var_samp_fields"') - return match_options_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_options_variance_fields_possibleTypes: string[] = ['match_options_variance_fields'] - export const ismatch_options_variance_fields = (obj?: { __typename?: any } | null): obj is match_options_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_options_variance_fields"') - return match_options_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_region_veto_picks_possibleTypes: string[] = ['match_region_veto_picks'] - export const ismatch_region_veto_picks = (obj?: { __typename?: any } | null): obj is match_region_veto_picks => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_region_veto_picks"') - return match_region_veto_picks_possibleTypes.includes(obj.__typename) - } - - - - const match_region_veto_picks_aggregate_possibleTypes: string[] = ['match_region_veto_picks_aggregate'] - export const ismatch_region_veto_picks_aggregate = (obj?: { __typename?: any } | null): obj is match_region_veto_picks_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_region_veto_picks_aggregate"') - return match_region_veto_picks_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const match_region_veto_picks_aggregate_fields_possibleTypes: string[] = ['match_region_veto_picks_aggregate_fields'] - export const ismatch_region_veto_picks_aggregate_fields = (obj?: { __typename?: any } | null): obj is match_region_veto_picks_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_region_veto_picks_aggregate_fields"') - return match_region_veto_picks_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_region_veto_picks_max_fields_possibleTypes: string[] = ['match_region_veto_picks_max_fields'] - export const ismatch_region_veto_picks_max_fields = (obj?: { __typename?: any } | null): obj is match_region_veto_picks_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_region_veto_picks_max_fields"') - return match_region_veto_picks_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_region_veto_picks_min_fields_possibleTypes: string[] = ['match_region_veto_picks_min_fields'] - export const ismatch_region_veto_picks_min_fields = (obj?: { __typename?: any } | null): obj is match_region_veto_picks_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_region_veto_picks_min_fields"') - return match_region_veto_picks_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_region_veto_picks_mutation_response_possibleTypes: string[] = ['match_region_veto_picks_mutation_response'] - export const ismatch_region_veto_picks_mutation_response = (obj?: { __typename?: any } | null): obj is match_region_veto_picks_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_region_veto_picks_mutation_response"') - return match_region_veto_picks_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const match_streams_possibleTypes: string[] = ['match_streams'] - export const ismatch_streams = (obj?: { __typename?: any } | null): obj is match_streams => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_streams"') - return match_streams_possibleTypes.includes(obj.__typename) - } - - - - const match_streams_aggregate_possibleTypes: string[] = ['match_streams_aggregate'] - export const ismatch_streams_aggregate = (obj?: { __typename?: any } | null): obj is match_streams_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_streams_aggregate"') - return match_streams_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const match_streams_aggregate_fields_possibleTypes: string[] = ['match_streams_aggregate_fields'] - export const ismatch_streams_aggregate_fields = (obj?: { __typename?: any } | null): obj is match_streams_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_streams_aggregate_fields"') - return match_streams_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_streams_avg_fields_possibleTypes: string[] = ['match_streams_avg_fields'] - export const ismatch_streams_avg_fields = (obj?: { __typename?: any } | null): obj is match_streams_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_streams_avg_fields"') - return match_streams_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_streams_max_fields_possibleTypes: string[] = ['match_streams_max_fields'] - export const ismatch_streams_max_fields = (obj?: { __typename?: any } | null): obj is match_streams_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_streams_max_fields"') - return match_streams_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_streams_min_fields_possibleTypes: string[] = ['match_streams_min_fields'] - export const ismatch_streams_min_fields = (obj?: { __typename?: any } | null): obj is match_streams_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_streams_min_fields"') - return match_streams_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_streams_mutation_response_possibleTypes: string[] = ['match_streams_mutation_response'] - export const ismatch_streams_mutation_response = (obj?: { __typename?: any } | null): obj is match_streams_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_streams_mutation_response"') - return match_streams_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const match_streams_stddev_fields_possibleTypes: string[] = ['match_streams_stddev_fields'] - export const ismatch_streams_stddev_fields = (obj?: { __typename?: any } | null): obj is match_streams_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_streams_stddev_fields"') - return match_streams_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_streams_stddev_pop_fields_possibleTypes: string[] = ['match_streams_stddev_pop_fields'] - export const ismatch_streams_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is match_streams_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_streams_stddev_pop_fields"') - return match_streams_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_streams_stddev_samp_fields_possibleTypes: string[] = ['match_streams_stddev_samp_fields'] - export const ismatch_streams_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is match_streams_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_streams_stddev_samp_fields"') - return match_streams_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_streams_sum_fields_possibleTypes: string[] = ['match_streams_sum_fields'] - export const ismatch_streams_sum_fields = (obj?: { __typename?: any } | null): obj is match_streams_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_streams_sum_fields"') - return match_streams_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_streams_var_pop_fields_possibleTypes: string[] = ['match_streams_var_pop_fields'] - export const ismatch_streams_var_pop_fields = (obj?: { __typename?: any } | null): obj is match_streams_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_streams_var_pop_fields"') - return match_streams_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_streams_var_samp_fields_possibleTypes: string[] = ['match_streams_var_samp_fields'] - export const ismatch_streams_var_samp_fields = (obj?: { __typename?: any } | null): obj is match_streams_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_streams_var_samp_fields"') - return match_streams_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_streams_variance_fields_possibleTypes: string[] = ['match_streams_variance_fields'] - export const ismatch_streams_variance_fields = (obj?: { __typename?: any } | null): obj is match_streams_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_streams_variance_fields"') - return match_streams_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_type_cfgs_possibleTypes: string[] = ['match_type_cfgs'] - export const ismatch_type_cfgs = (obj?: { __typename?: any } | null): obj is match_type_cfgs => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_type_cfgs"') - return match_type_cfgs_possibleTypes.includes(obj.__typename) - } - - - - const match_type_cfgs_aggregate_possibleTypes: string[] = ['match_type_cfgs_aggregate'] - export const ismatch_type_cfgs_aggregate = (obj?: { __typename?: any } | null): obj is match_type_cfgs_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_type_cfgs_aggregate"') - return match_type_cfgs_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const match_type_cfgs_aggregate_fields_possibleTypes: string[] = ['match_type_cfgs_aggregate_fields'] - export const ismatch_type_cfgs_aggregate_fields = (obj?: { __typename?: any } | null): obj is match_type_cfgs_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_type_cfgs_aggregate_fields"') - return match_type_cfgs_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_type_cfgs_max_fields_possibleTypes: string[] = ['match_type_cfgs_max_fields'] - export const ismatch_type_cfgs_max_fields = (obj?: { __typename?: any } | null): obj is match_type_cfgs_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_type_cfgs_max_fields"') - return match_type_cfgs_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_type_cfgs_min_fields_possibleTypes: string[] = ['match_type_cfgs_min_fields'] - export const ismatch_type_cfgs_min_fields = (obj?: { __typename?: any } | null): obj is match_type_cfgs_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_type_cfgs_min_fields"') - return match_type_cfgs_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const match_type_cfgs_mutation_response_possibleTypes: string[] = ['match_type_cfgs_mutation_response'] - export const ismatch_type_cfgs_mutation_response = (obj?: { __typename?: any } | null): obj is match_type_cfgs_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_type_cfgs_mutation_response"') - return match_type_cfgs_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const matches_possibleTypes: string[] = ['matches'] - export const ismatches = (obj?: { __typename?: any } | null): obj is matches => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatches"') - return matches_possibleTypes.includes(obj.__typename) - } - - - - const matches_aggregate_possibleTypes: string[] = ['matches_aggregate'] - export const ismatches_aggregate = (obj?: { __typename?: any } | null): obj is matches_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatches_aggregate"') - return matches_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const matches_aggregate_fields_possibleTypes: string[] = ['matches_aggregate_fields'] - export const ismatches_aggregate_fields = (obj?: { __typename?: any } | null): obj is matches_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatches_aggregate_fields"') - return matches_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const matches_avg_fields_possibleTypes: string[] = ['matches_avg_fields'] - export const ismatches_avg_fields = (obj?: { __typename?: any } | null): obj is matches_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatches_avg_fields"') - return matches_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const matches_max_fields_possibleTypes: string[] = ['matches_max_fields'] - export const ismatches_max_fields = (obj?: { __typename?: any } | null): obj is matches_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatches_max_fields"') - return matches_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const matches_min_fields_possibleTypes: string[] = ['matches_min_fields'] - export const ismatches_min_fields = (obj?: { __typename?: any } | null): obj is matches_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatches_min_fields"') - return matches_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const matches_mutation_response_possibleTypes: string[] = ['matches_mutation_response'] - export const ismatches_mutation_response = (obj?: { __typename?: any } | null): obj is matches_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatches_mutation_response"') - return matches_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const matches_stddev_fields_possibleTypes: string[] = ['matches_stddev_fields'] - export const ismatches_stddev_fields = (obj?: { __typename?: any } | null): obj is matches_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatches_stddev_fields"') - return matches_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const matches_stddev_pop_fields_possibleTypes: string[] = ['matches_stddev_pop_fields'] - export const ismatches_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is matches_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatches_stddev_pop_fields"') - return matches_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const matches_stddev_samp_fields_possibleTypes: string[] = ['matches_stddev_samp_fields'] - export const ismatches_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is matches_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatches_stddev_samp_fields"') - return matches_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const matches_sum_fields_possibleTypes: string[] = ['matches_sum_fields'] - export const ismatches_sum_fields = (obj?: { __typename?: any } | null): obj is matches_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatches_sum_fields"') - return matches_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const matches_var_pop_fields_possibleTypes: string[] = ['matches_var_pop_fields'] - export const ismatches_var_pop_fields = (obj?: { __typename?: any } | null): obj is matches_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatches_var_pop_fields"') - return matches_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const matches_var_samp_fields_possibleTypes: string[] = ['matches_var_samp_fields'] - export const ismatches_var_samp_fields = (obj?: { __typename?: any } | null): obj is matches_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatches_var_samp_fields"') - return matches_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const matches_variance_fields_possibleTypes: string[] = ['matches_variance_fields'] - export const ismatches_variance_fields = (obj?: { __typename?: any } | null): obj is matches_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismatches_variance_fields"') - return matches_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const migration_hashes_hashes_possibleTypes: string[] = ['migration_hashes_hashes'] - export const ismigration_hashes_hashes = (obj?: { __typename?: any } | null): obj is migration_hashes_hashes => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismigration_hashes_hashes"') - return migration_hashes_hashes_possibleTypes.includes(obj.__typename) - } - - - - const migration_hashes_hashes_aggregate_possibleTypes: string[] = ['migration_hashes_hashes_aggregate'] - export const ismigration_hashes_hashes_aggregate = (obj?: { __typename?: any } | null): obj is migration_hashes_hashes_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismigration_hashes_hashes_aggregate"') - return migration_hashes_hashes_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const migration_hashes_hashes_aggregate_fields_possibleTypes: string[] = ['migration_hashes_hashes_aggregate_fields'] - export const ismigration_hashes_hashes_aggregate_fields = (obj?: { __typename?: any } | null): obj is migration_hashes_hashes_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismigration_hashes_hashes_aggregate_fields"') - return migration_hashes_hashes_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const migration_hashes_hashes_max_fields_possibleTypes: string[] = ['migration_hashes_hashes_max_fields'] - export const ismigration_hashes_hashes_max_fields = (obj?: { __typename?: any } | null): obj is migration_hashes_hashes_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismigration_hashes_hashes_max_fields"') - return migration_hashes_hashes_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const migration_hashes_hashes_min_fields_possibleTypes: string[] = ['migration_hashes_hashes_min_fields'] - export const ismigration_hashes_hashes_min_fields = (obj?: { __typename?: any } | null): obj is migration_hashes_hashes_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismigration_hashes_hashes_min_fields"') - return migration_hashes_hashes_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const migration_hashes_hashes_mutation_response_possibleTypes: string[] = ['migration_hashes_hashes_mutation_response'] - export const ismigration_hashes_hashes_mutation_response = (obj?: { __typename?: any } | null): obj is migration_hashes_hashes_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismigration_hashes_hashes_mutation_response"') - return migration_hashes_hashes_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const mutation_root_possibleTypes: string[] = ['mutation_root'] - export const ismutation_root = (obj?: { __typename?: any } | null): obj is mutation_root => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismutation_root"') - return mutation_root_possibleTypes.includes(obj.__typename) - } - - - - const my_friends_possibleTypes: string[] = ['my_friends'] - export const ismy_friends = (obj?: { __typename?: any } | null): obj is my_friends => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismy_friends"') - return my_friends_possibleTypes.includes(obj.__typename) - } - - - - const my_friends_aggregate_possibleTypes: string[] = ['my_friends_aggregate'] - export const ismy_friends_aggregate = (obj?: { __typename?: any } | null): obj is my_friends_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismy_friends_aggregate"') - return my_friends_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const my_friends_aggregate_fields_possibleTypes: string[] = ['my_friends_aggregate_fields'] - export const ismy_friends_aggregate_fields = (obj?: { __typename?: any } | null): obj is my_friends_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismy_friends_aggregate_fields"') - return my_friends_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const my_friends_avg_fields_possibleTypes: string[] = ['my_friends_avg_fields'] - export const ismy_friends_avg_fields = (obj?: { __typename?: any } | null): obj is my_friends_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismy_friends_avg_fields"') - return my_friends_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const my_friends_max_fields_possibleTypes: string[] = ['my_friends_max_fields'] - export const ismy_friends_max_fields = (obj?: { __typename?: any } | null): obj is my_friends_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismy_friends_max_fields"') - return my_friends_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const my_friends_min_fields_possibleTypes: string[] = ['my_friends_min_fields'] - export const ismy_friends_min_fields = (obj?: { __typename?: any } | null): obj is my_friends_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismy_friends_min_fields"') - return my_friends_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const my_friends_mutation_response_possibleTypes: string[] = ['my_friends_mutation_response'] - export const ismy_friends_mutation_response = (obj?: { __typename?: any } | null): obj is my_friends_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismy_friends_mutation_response"') - return my_friends_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const my_friends_stddev_fields_possibleTypes: string[] = ['my_friends_stddev_fields'] - export const ismy_friends_stddev_fields = (obj?: { __typename?: any } | null): obj is my_friends_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismy_friends_stddev_fields"') - return my_friends_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const my_friends_stddev_pop_fields_possibleTypes: string[] = ['my_friends_stddev_pop_fields'] - export const ismy_friends_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is my_friends_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismy_friends_stddev_pop_fields"') - return my_friends_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const my_friends_stddev_samp_fields_possibleTypes: string[] = ['my_friends_stddev_samp_fields'] - export const ismy_friends_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is my_friends_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismy_friends_stddev_samp_fields"') - return my_friends_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const my_friends_sum_fields_possibleTypes: string[] = ['my_friends_sum_fields'] - export const ismy_friends_sum_fields = (obj?: { __typename?: any } | null): obj is my_friends_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismy_friends_sum_fields"') - return my_friends_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const my_friends_var_pop_fields_possibleTypes: string[] = ['my_friends_var_pop_fields'] - export const ismy_friends_var_pop_fields = (obj?: { __typename?: any } | null): obj is my_friends_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismy_friends_var_pop_fields"') - return my_friends_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const my_friends_var_samp_fields_possibleTypes: string[] = ['my_friends_var_samp_fields'] - export const ismy_friends_var_samp_fields = (obj?: { __typename?: any } | null): obj is my_friends_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismy_friends_var_samp_fields"') - return my_friends_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const my_friends_variance_fields_possibleTypes: string[] = ['my_friends_variance_fields'] - export const ismy_friends_variance_fields = (obj?: { __typename?: any } | null): obj is my_friends_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ismy_friends_variance_fields"') - return my_friends_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const news_articles_possibleTypes: string[] = ['news_articles'] - export const isnews_articles = (obj?: { __typename?: any } | null): obj is news_articles => { - if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles"') - return news_articles_possibleTypes.includes(obj.__typename) - } - - - - const news_articles_aggregate_possibleTypes: string[] = ['news_articles_aggregate'] - export const isnews_articles_aggregate = (obj?: { __typename?: any } | null): obj is news_articles_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_aggregate"') - return news_articles_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const news_articles_aggregate_fields_possibleTypes: string[] = ['news_articles_aggregate_fields'] - export const isnews_articles_aggregate_fields = (obj?: { __typename?: any } | null): obj is news_articles_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_aggregate_fields"') - return news_articles_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const news_articles_avg_fields_possibleTypes: string[] = ['news_articles_avg_fields'] - export const isnews_articles_avg_fields = (obj?: { __typename?: any } | null): obj is news_articles_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_avg_fields"') - return news_articles_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const news_articles_max_fields_possibleTypes: string[] = ['news_articles_max_fields'] - export const isnews_articles_max_fields = (obj?: { __typename?: any } | null): obj is news_articles_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_max_fields"') - return news_articles_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const news_articles_min_fields_possibleTypes: string[] = ['news_articles_min_fields'] - export const isnews_articles_min_fields = (obj?: { __typename?: any } | null): obj is news_articles_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_min_fields"') - return news_articles_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const news_articles_mutation_response_possibleTypes: string[] = ['news_articles_mutation_response'] - export const isnews_articles_mutation_response = (obj?: { __typename?: any } | null): obj is news_articles_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_mutation_response"') - return news_articles_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const news_articles_stddev_fields_possibleTypes: string[] = ['news_articles_stddev_fields'] - export const isnews_articles_stddev_fields = (obj?: { __typename?: any } | null): obj is news_articles_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_stddev_fields"') - return news_articles_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const news_articles_stddev_pop_fields_possibleTypes: string[] = ['news_articles_stddev_pop_fields'] - export const isnews_articles_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is news_articles_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_stddev_pop_fields"') - return news_articles_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const news_articles_stddev_samp_fields_possibleTypes: string[] = ['news_articles_stddev_samp_fields'] - export const isnews_articles_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is news_articles_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_stddev_samp_fields"') - return news_articles_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const news_articles_sum_fields_possibleTypes: string[] = ['news_articles_sum_fields'] - export const isnews_articles_sum_fields = (obj?: { __typename?: any } | null): obj is news_articles_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_sum_fields"') - return news_articles_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const news_articles_var_pop_fields_possibleTypes: string[] = ['news_articles_var_pop_fields'] - export const isnews_articles_var_pop_fields = (obj?: { __typename?: any } | null): obj is news_articles_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_var_pop_fields"') - return news_articles_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const news_articles_var_samp_fields_possibleTypes: string[] = ['news_articles_var_samp_fields'] - export const isnews_articles_var_samp_fields = (obj?: { __typename?: any } | null): obj is news_articles_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_var_samp_fields"') - return news_articles_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const news_articles_variance_fields_possibleTypes: string[] = ['news_articles_variance_fields'] - export const isnews_articles_variance_fields = (obj?: { __typename?: any } | null): obj is news_articles_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_variance_fields"') - return news_articles_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const notification_preferences_possibleTypes: string[] = ['notification_preferences'] - export const isnotification_preferences = (obj?: { __typename?: any } | null): obj is notification_preferences => { - if (!obj?.__typename) throw new Error('__typename is missing in "isnotification_preferences"') - return notification_preferences_possibleTypes.includes(obj.__typename) - } - - - - const notification_preferences_aggregate_possibleTypes: string[] = ['notification_preferences_aggregate'] - export const isnotification_preferences_aggregate = (obj?: { __typename?: any } | null): obj is notification_preferences_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isnotification_preferences_aggregate"') - return notification_preferences_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const notification_preferences_aggregate_fields_possibleTypes: string[] = ['notification_preferences_aggregate_fields'] - export const isnotification_preferences_aggregate_fields = (obj?: { __typename?: any } | null): obj is notification_preferences_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isnotification_preferences_aggregate_fields"') - return notification_preferences_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const notification_preferences_avg_fields_possibleTypes: string[] = ['notification_preferences_avg_fields'] - export const isnotification_preferences_avg_fields = (obj?: { __typename?: any } | null): obj is notification_preferences_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isnotification_preferences_avg_fields"') - return notification_preferences_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const notification_preferences_max_fields_possibleTypes: string[] = ['notification_preferences_max_fields'] - export const isnotification_preferences_max_fields = (obj?: { __typename?: any } | null): obj is notification_preferences_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isnotification_preferences_max_fields"') - return notification_preferences_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const notification_preferences_min_fields_possibleTypes: string[] = ['notification_preferences_min_fields'] - export const isnotification_preferences_min_fields = (obj?: { __typename?: any } | null): obj is notification_preferences_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isnotification_preferences_min_fields"') - return notification_preferences_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const notification_preferences_mutation_response_possibleTypes: string[] = ['notification_preferences_mutation_response'] - export const isnotification_preferences_mutation_response = (obj?: { __typename?: any } | null): obj is notification_preferences_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isnotification_preferences_mutation_response"') - return notification_preferences_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const notification_preferences_stddev_fields_possibleTypes: string[] = ['notification_preferences_stddev_fields'] - export const isnotification_preferences_stddev_fields = (obj?: { __typename?: any } | null): obj is notification_preferences_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isnotification_preferences_stddev_fields"') - return notification_preferences_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const notification_preferences_stddev_pop_fields_possibleTypes: string[] = ['notification_preferences_stddev_pop_fields'] - export const isnotification_preferences_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is notification_preferences_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isnotification_preferences_stddev_pop_fields"') - return notification_preferences_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const notification_preferences_stddev_samp_fields_possibleTypes: string[] = ['notification_preferences_stddev_samp_fields'] - export const isnotification_preferences_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is notification_preferences_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isnotification_preferences_stddev_samp_fields"') - return notification_preferences_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const notification_preferences_sum_fields_possibleTypes: string[] = ['notification_preferences_sum_fields'] - export const isnotification_preferences_sum_fields = (obj?: { __typename?: any } | null): obj is notification_preferences_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isnotification_preferences_sum_fields"') - return notification_preferences_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const notification_preferences_var_pop_fields_possibleTypes: string[] = ['notification_preferences_var_pop_fields'] - export const isnotification_preferences_var_pop_fields = (obj?: { __typename?: any } | null): obj is notification_preferences_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isnotification_preferences_var_pop_fields"') - return notification_preferences_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const notification_preferences_var_samp_fields_possibleTypes: string[] = ['notification_preferences_var_samp_fields'] - export const isnotification_preferences_var_samp_fields = (obj?: { __typename?: any } | null): obj is notification_preferences_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isnotification_preferences_var_samp_fields"') - return notification_preferences_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const notification_preferences_variance_fields_possibleTypes: string[] = ['notification_preferences_variance_fields'] - export const isnotification_preferences_variance_fields = (obj?: { __typename?: any } | null): obj is notification_preferences_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isnotification_preferences_variance_fields"') - return notification_preferences_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const notifications_possibleTypes: string[] = ['notifications'] - export const isnotifications = (obj?: { __typename?: any } | null): obj is notifications => { - if (!obj?.__typename) throw new Error('__typename is missing in "isnotifications"') - return notifications_possibleTypes.includes(obj.__typename) - } - - - - const notifications_aggregate_possibleTypes: string[] = ['notifications_aggregate'] - export const isnotifications_aggregate = (obj?: { __typename?: any } | null): obj is notifications_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isnotifications_aggregate"') - return notifications_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const notifications_aggregate_fields_possibleTypes: string[] = ['notifications_aggregate_fields'] - export const isnotifications_aggregate_fields = (obj?: { __typename?: any } | null): obj is notifications_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isnotifications_aggregate_fields"') - return notifications_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const notifications_avg_fields_possibleTypes: string[] = ['notifications_avg_fields'] - export const isnotifications_avg_fields = (obj?: { __typename?: any } | null): obj is notifications_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isnotifications_avg_fields"') - return notifications_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const notifications_max_fields_possibleTypes: string[] = ['notifications_max_fields'] - export const isnotifications_max_fields = (obj?: { __typename?: any } | null): obj is notifications_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isnotifications_max_fields"') - return notifications_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const notifications_min_fields_possibleTypes: string[] = ['notifications_min_fields'] - export const isnotifications_min_fields = (obj?: { __typename?: any } | null): obj is notifications_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isnotifications_min_fields"') - return notifications_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const notifications_mutation_response_possibleTypes: string[] = ['notifications_mutation_response'] - export const isnotifications_mutation_response = (obj?: { __typename?: any } | null): obj is notifications_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isnotifications_mutation_response"') - return notifications_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const notifications_stddev_fields_possibleTypes: string[] = ['notifications_stddev_fields'] - export const isnotifications_stddev_fields = (obj?: { __typename?: any } | null): obj is notifications_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isnotifications_stddev_fields"') - return notifications_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const notifications_stddev_pop_fields_possibleTypes: string[] = ['notifications_stddev_pop_fields'] - export const isnotifications_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is notifications_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isnotifications_stddev_pop_fields"') - return notifications_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const notifications_stddev_samp_fields_possibleTypes: string[] = ['notifications_stddev_samp_fields'] - export const isnotifications_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is notifications_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isnotifications_stddev_samp_fields"') - return notifications_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const notifications_sum_fields_possibleTypes: string[] = ['notifications_sum_fields'] - export const isnotifications_sum_fields = (obj?: { __typename?: any } | null): obj is notifications_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isnotifications_sum_fields"') - return notifications_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const notifications_var_pop_fields_possibleTypes: string[] = ['notifications_var_pop_fields'] - export const isnotifications_var_pop_fields = (obj?: { __typename?: any } | null): obj is notifications_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isnotifications_var_pop_fields"') - return notifications_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const notifications_var_samp_fields_possibleTypes: string[] = ['notifications_var_samp_fields'] - export const isnotifications_var_samp_fields = (obj?: { __typename?: any } | null): obj is notifications_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isnotifications_var_samp_fields"') - return notifications_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const notifications_variance_fields_possibleTypes: string[] = ['notifications_variance_fields'] - export const isnotifications_variance_fields = (obj?: { __typename?: any } | null): obj is notifications_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isnotifications_variance_fields"') - return notifications_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const pending_match_import_players_possibleTypes: string[] = ['pending_match_import_players'] - export const ispending_match_import_players = (obj?: { __typename?: any } | null): obj is pending_match_import_players => { - if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_import_players"') - return pending_match_import_players_possibleTypes.includes(obj.__typename) - } - - - - const pending_match_import_players_aggregate_possibleTypes: string[] = ['pending_match_import_players_aggregate'] - export const ispending_match_import_players_aggregate = (obj?: { __typename?: any } | null): obj is pending_match_import_players_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_import_players_aggregate"') - return pending_match_import_players_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const pending_match_import_players_aggregate_fields_possibleTypes: string[] = ['pending_match_import_players_aggregate_fields'] - export const ispending_match_import_players_aggregate_fields = (obj?: { __typename?: any } | null): obj is pending_match_import_players_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_import_players_aggregate_fields"') - return pending_match_import_players_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const pending_match_import_players_avg_fields_possibleTypes: string[] = ['pending_match_import_players_avg_fields'] - export const ispending_match_import_players_avg_fields = (obj?: { __typename?: any } | null): obj is pending_match_import_players_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_import_players_avg_fields"') - return pending_match_import_players_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const pending_match_import_players_max_fields_possibleTypes: string[] = ['pending_match_import_players_max_fields'] - export const ispending_match_import_players_max_fields = (obj?: { __typename?: any } | null): obj is pending_match_import_players_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_import_players_max_fields"') - return pending_match_import_players_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const pending_match_import_players_min_fields_possibleTypes: string[] = ['pending_match_import_players_min_fields'] - export const ispending_match_import_players_min_fields = (obj?: { __typename?: any } | null): obj is pending_match_import_players_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_import_players_min_fields"') - return pending_match_import_players_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const pending_match_import_players_mutation_response_possibleTypes: string[] = ['pending_match_import_players_mutation_response'] - export const ispending_match_import_players_mutation_response = (obj?: { __typename?: any } | null): obj is pending_match_import_players_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_import_players_mutation_response"') - return pending_match_import_players_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const pending_match_import_players_stddev_fields_possibleTypes: string[] = ['pending_match_import_players_stddev_fields'] - export const ispending_match_import_players_stddev_fields = (obj?: { __typename?: any } | null): obj is pending_match_import_players_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_import_players_stddev_fields"') - return pending_match_import_players_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const pending_match_import_players_stddev_pop_fields_possibleTypes: string[] = ['pending_match_import_players_stddev_pop_fields'] - export const ispending_match_import_players_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is pending_match_import_players_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_import_players_stddev_pop_fields"') - return pending_match_import_players_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const pending_match_import_players_stddev_samp_fields_possibleTypes: string[] = ['pending_match_import_players_stddev_samp_fields'] - export const ispending_match_import_players_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is pending_match_import_players_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_import_players_stddev_samp_fields"') - return pending_match_import_players_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const pending_match_import_players_sum_fields_possibleTypes: string[] = ['pending_match_import_players_sum_fields'] - export const ispending_match_import_players_sum_fields = (obj?: { __typename?: any } | null): obj is pending_match_import_players_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_import_players_sum_fields"') - return pending_match_import_players_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const pending_match_import_players_var_pop_fields_possibleTypes: string[] = ['pending_match_import_players_var_pop_fields'] - export const ispending_match_import_players_var_pop_fields = (obj?: { __typename?: any } | null): obj is pending_match_import_players_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_import_players_var_pop_fields"') - return pending_match_import_players_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const pending_match_import_players_var_samp_fields_possibleTypes: string[] = ['pending_match_import_players_var_samp_fields'] - export const ispending_match_import_players_var_samp_fields = (obj?: { __typename?: any } | null): obj is pending_match_import_players_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_import_players_var_samp_fields"') - return pending_match_import_players_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const pending_match_import_players_variance_fields_possibleTypes: string[] = ['pending_match_import_players_variance_fields'] - export const ispending_match_import_players_variance_fields = (obj?: { __typename?: any } | null): obj is pending_match_import_players_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_import_players_variance_fields"') - return pending_match_import_players_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const pending_match_imports_possibleTypes: string[] = ['pending_match_imports'] - export const ispending_match_imports = (obj?: { __typename?: any } | null): obj is pending_match_imports => { - if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_imports"') - return pending_match_imports_possibleTypes.includes(obj.__typename) - } - - - - const pending_match_imports_aggregate_possibleTypes: string[] = ['pending_match_imports_aggregate'] - export const ispending_match_imports_aggregate = (obj?: { __typename?: any } | null): obj is pending_match_imports_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_imports_aggregate"') - return pending_match_imports_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const pending_match_imports_aggregate_fields_possibleTypes: string[] = ['pending_match_imports_aggregate_fields'] - export const ispending_match_imports_aggregate_fields = (obj?: { __typename?: any } | null): obj is pending_match_imports_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_imports_aggregate_fields"') - return pending_match_imports_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const pending_match_imports_avg_fields_possibleTypes: string[] = ['pending_match_imports_avg_fields'] - export const ispending_match_imports_avg_fields = (obj?: { __typename?: any } | null): obj is pending_match_imports_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_imports_avg_fields"') - return pending_match_imports_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const pending_match_imports_max_fields_possibleTypes: string[] = ['pending_match_imports_max_fields'] - export const ispending_match_imports_max_fields = (obj?: { __typename?: any } | null): obj is pending_match_imports_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_imports_max_fields"') - return pending_match_imports_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const pending_match_imports_min_fields_possibleTypes: string[] = ['pending_match_imports_min_fields'] - export const ispending_match_imports_min_fields = (obj?: { __typename?: any } | null): obj is pending_match_imports_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_imports_min_fields"') - return pending_match_imports_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const pending_match_imports_mutation_response_possibleTypes: string[] = ['pending_match_imports_mutation_response'] - export const ispending_match_imports_mutation_response = (obj?: { __typename?: any } | null): obj is pending_match_imports_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_imports_mutation_response"') - return pending_match_imports_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const pending_match_imports_stddev_fields_possibleTypes: string[] = ['pending_match_imports_stddev_fields'] - export const ispending_match_imports_stddev_fields = (obj?: { __typename?: any } | null): obj is pending_match_imports_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_imports_stddev_fields"') - return pending_match_imports_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const pending_match_imports_stddev_pop_fields_possibleTypes: string[] = ['pending_match_imports_stddev_pop_fields'] - export const ispending_match_imports_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is pending_match_imports_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_imports_stddev_pop_fields"') - return pending_match_imports_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const pending_match_imports_stddev_samp_fields_possibleTypes: string[] = ['pending_match_imports_stddev_samp_fields'] - export const ispending_match_imports_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is pending_match_imports_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_imports_stddev_samp_fields"') - return pending_match_imports_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const pending_match_imports_sum_fields_possibleTypes: string[] = ['pending_match_imports_sum_fields'] - export const ispending_match_imports_sum_fields = (obj?: { __typename?: any } | null): obj is pending_match_imports_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_imports_sum_fields"') - return pending_match_imports_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const pending_match_imports_var_pop_fields_possibleTypes: string[] = ['pending_match_imports_var_pop_fields'] - export const ispending_match_imports_var_pop_fields = (obj?: { __typename?: any } | null): obj is pending_match_imports_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_imports_var_pop_fields"') - return pending_match_imports_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const pending_match_imports_var_samp_fields_possibleTypes: string[] = ['pending_match_imports_var_samp_fields'] - export const ispending_match_imports_var_samp_fields = (obj?: { __typename?: any } | null): obj is pending_match_imports_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_imports_var_samp_fields"') - return pending_match_imports_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const pending_match_imports_variance_fields_possibleTypes: string[] = ['pending_match_imports_variance_fields'] - export const ispending_match_imports_variance_fields = (obj?: { __typename?: any } | null): obj is pending_match_imports_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_imports_variance_fields"') - return pending_match_imports_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_aim_stats_demo_possibleTypes: string[] = ['player_aim_stats_demo'] - export const isplayer_aim_stats_demo = (obj?: { __typename?: any } | null): obj is player_aim_stats_demo => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_stats_demo"') - return player_aim_stats_demo_possibleTypes.includes(obj.__typename) - } - - - - const player_aim_stats_demo_aggregate_possibleTypes: string[] = ['player_aim_stats_demo_aggregate'] - export const isplayer_aim_stats_demo_aggregate = (obj?: { __typename?: any } | null): obj is player_aim_stats_demo_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_stats_demo_aggregate"') - return player_aim_stats_demo_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const player_aim_stats_demo_aggregate_fields_possibleTypes: string[] = ['player_aim_stats_demo_aggregate_fields'] - export const isplayer_aim_stats_demo_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_aim_stats_demo_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_stats_demo_aggregate_fields"') - return player_aim_stats_demo_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_aim_stats_demo_avg_fields_possibleTypes: string[] = ['player_aim_stats_demo_avg_fields'] - export const isplayer_aim_stats_demo_avg_fields = (obj?: { __typename?: any } | null): obj is player_aim_stats_demo_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_stats_demo_avg_fields"') - return player_aim_stats_demo_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_aim_stats_demo_max_fields_possibleTypes: string[] = ['player_aim_stats_demo_max_fields'] - export const isplayer_aim_stats_demo_max_fields = (obj?: { __typename?: any } | null): obj is player_aim_stats_demo_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_stats_demo_max_fields"') - return player_aim_stats_demo_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_aim_stats_demo_min_fields_possibleTypes: string[] = ['player_aim_stats_demo_min_fields'] - export const isplayer_aim_stats_demo_min_fields = (obj?: { __typename?: any } | null): obj is player_aim_stats_demo_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_stats_demo_min_fields"') - return player_aim_stats_demo_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_aim_stats_demo_mutation_response_possibleTypes: string[] = ['player_aim_stats_demo_mutation_response'] - export const isplayer_aim_stats_demo_mutation_response = (obj?: { __typename?: any } | null): obj is player_aim_stats_demo_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_stats_demo_mutation_response"') - return player_aim_stats_demo_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const player_aim_stats_demo_stddev_fields_possibleTypes: string[] = ['player_aim_stats_demo_stddev_fields'] - export const isplayer_aim_stats_demo_stddev_fields = (obj?: { __typename?: any } | null): obj is player_aim_stats_demo_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_stats_demo_stddev_fields"') - return player_aim_stats_demo_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_aim_stats_demo_stddev_pop_fields_possibleTypes: string[] = ['player_aim_stats_demo_stddev_pop_fields'] - export const isplayer_aim_stats_demo_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_aim_stats_demo_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_stats_demo_stddev_pop_fields"') - return player_aim_stats_demo_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_aim_stats_demo_stddev_samp_fields_possibleTypes: string[] = ['player_aim_stats_demo_stddev_samp_fields'] - export const isplayer_aim_stats_demo_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_aim_stats_demo_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_stats_demo_stddev_samp_fields"') - return player_aim_stats_demo_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_aim_stats_demo_sum_fields_possibleTypes: string[] = ['player_aim_stats_demo_sum_fields'] - export const isplayer_aim_stats_demo_sum_fields = (obj?: { __typename?: any } | null): obj is player_aim_stats_demo_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_stats_demo_sum_fields"') - return player_aim_stats_demo_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_aim_stats_demo_var_pop_fields_possibleTypes: string[] = ['player_aim_stats_demo_var_pop_fields'] - export const isplayer_aim_stats_demo_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_aim_stats_demo_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_stats_demo_var_pop_fields"') - return player_aim_stats_demo_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_aim_stats_demo_var_samp_fields_possibleTypes: string[] = ['player_aim_stats_demo_var_samp_fields'] - export const isplayer_aim_stats_demo_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_aim_stats_demo_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_stats_demo_var_samp_fields"') - return player_aim_stats_demo_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_aim_stats_demo_variance_fields_possibleTypes: string[] = ['player_aim_stats_demo_variance_fields'] - export const isplayer_aim_stats_demo_variance_fields = (obj?: { __typename?: any } | null): obj is player_aim_stats_demo_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_stats_demo_variance_fields"') - return player_aim_stats_demo_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_aim_weapon_stats_possibleTypes: string[] = ['player_aim_weapon_stats'] - export const isplayer_aim_weapon_stats = (obj?: { __typename?: any } | null): obj is player_aim_weapon_stats => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_weapon_stats"') - return player_aim_weapon_stats_possibleTypes.includes(obj.__typename) - } - - - - const player_aim_weapon_stats_aggregate_possibleTypes: string[] = ['player_aim_weapon_stats_aggregate'] - export const isplayer_aim_weapon_stats_aggregate = (obj?: { __typename?: any } | null): obj is player_aim_weapon_stats_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_weapon_stats_aggregate"') - return player_aim_weapon_stats_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const player_aim_weapon_stats_aggregate_fields_possibleTypes: string[] = ['player_aim_weapon_stats_aggregate_fields'] - export const isplayer_aim_weapon_stats_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_aim_weapon_stats_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_weapon_stats_aggregate_fields"') - return player_aim_weapon_stats_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_aim_weapon_stats_avg_fields_possibleTypes: string[] = ['player_aim_weapon_stats_avg_fields'] - export const isplayer_aim_weapon_stats_avg_fields = (obj?: { __typename?: any } | null): obj is player_aim_weapon_stats_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_weapon_stats_avg_fields"') - return player_aim_weapon_stats_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_aim_weapon_stats_max_fields_possibleTypes: string[] = ['player_aim_weapon_stats_max_fields'] - export const isplayer_aim_weapon_stats_max_fields = (obj?: { __typename?: any } | null): obj is player_aim_weapon_stats_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_weapon_stats_max_fields"') - return player_aim_weapon_stats_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_aim_weapon_stats_min_fields_possibleTypes: string[] = ['player_aim_weapon_stats_min_fields'] - export const isplayer_aim_weapon_stats_min_fields = (obj?: { __typename?: any } | null): obj is player_aim_weapon_stats_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_weapon_stats_min_fields"') - return player_aim_weapon_stats_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_aim_weapon_stats_mutation_response_possibleTypes: string[] = ['player_aim_weapon_stats_mutation_response'] - export const isplayer_aim_weapon_stats_mutation_response = (obj?: { __typename?: any } | null): obj is player_aim_weapon_stats_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_weapon_stats_mutation_response"') - return player_aim_weapon_stats_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const player_aim_weapon_stats_stddev_fields_possibleTypes: string[] = ['player_aim_weapon_stats_stddev_fields'] - export const isplayer_aim_weapon_stats_stddev_fields = (obj?: { __typename?: any } | null): obj is player_aim_weapon_stats_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_weapon_stats_stddev_fields"') - return player_aim_weapon_stats_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_aim_weapon_stats_stddev_pop_fields_possibleTypes: string[] = ['player_aim_weapon_stats_stddev_pop_fields'] - export const isplayer_aim_weapon_stats_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_aim_weapon_stats_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_weapon_stats_stddev_pop_fields"') - return player_aim_weapon_stats_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_aim_weapon_stats_stddev_samp_fields_possibleTypes: string[] = ['player_aim_weapon_stats_stddev_samp_fields'] - export const isplayer_aim_weapon_stats_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_aim_weapon_stats_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_weapon_stats_stddev_samp_fields"') - return player_aim_weapon_stats_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_aim_weapon_stats_sum_fields_possibleTypes: string[] = ['player_aim_weapon_stats_sum_fields'] - export const isplayer_aim_weapon_stats_sum_fields = (obj?: { __typename?: any } | null): obj is player_aim_weapon_stats_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_weapon_stats_sum_fields"') - return player_aim_weapon_stats_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_aim_weapon_stats_var_pop_fields_possibleTypes: string[] = ['player_aim_weapon_stats_var_pop_fields'] - export const isplayer_aim_weapon_stats_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_aim_weapon_stats_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_weapon_stats_var_pop_fields"') - return player_aim_weapon_stats_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_aim_weapon_stats_var_samp_fields_possibleTypes: string[] = ['player_aim_weapon_stats_var_samp_fields'] - export const isplayer_aim_weapon_stats_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_aim_weapon_stats_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_weapon_stats_var_samp_fields"') - return player_aim_weapon_stats_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_aim_weapon_stats_variance_fields_possibleTypes: string[] = ['player_aim_weapon_stats_variance_fields'] - export const isplayer_aim_weapon_stats_variance_fields = (obj?: { __typename?: any } | null): obj is player_aim_weapon_stats_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_weapon_stats_variance_fields"') - return player_aim_weapon_stats_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_assists_possibleTypes: string[] = ['player_assists'] - export const isplayer_assists = (obj?: { __typename?: any } | null): obj is player_assists => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_assists"') - return player_assists_possibleTypes.includes(obj.__typename) - } - - - - const player_assists_aggregate_possibleTypes: string[] = ['player_assists_aggregate'] - export const isplayer_assists_aggregate = (obj?: { __typename?: any } | null): obj is player_assists_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_assists_aggregate"') - return player_assists_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const player_assists_aggregate_fields_possibleTypes: string[] = ['player_assists_aggregate_fields'] - export const isplayer_assists_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_assists_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_assists_aggregate_fields"') - return player_assists_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_assists_avg_fields_possibleTypes: string[] = ['player_assists_avg_fields'] - export const isplayer_assists_avg_fields = (obj?: { __typename?: any } | null): obj is player_assists_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_assists_avg_fields"') - return player_assists_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_assists_max_fields_possibleTypes: string[] = ['player_assists_max_fields'] - export const isplayer_assists_max_fields = (obj?: { __typename?: any } | null): obj is player_assists_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_assists_max_fields"') - return player_assists_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_assists_min_fields_possibleTypes: string[] = ['player_assists_min_fields'] - export const isplayer_assists_min_fields = (obj?: { __typename?: any } | null): obj is player_assists_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_assists_min_fields"') - return player_assists_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_assists_mutation_response_possibleTypes: string[] = ['player_assists_mutation_response'] - export const isplayer_assists_mutation_response = (obj?: { __typename?: any } | null): obj is player_assists_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_assists_mutation_response"') - return player_assists_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const player_assists_stddev_fields_possibleTypes: string[] = ['player_assists_stddev_fields'] - export const isplayer_assists_stddev_fields = (obj?: { __typename?: any } | null): obj is player_assists_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_assists_stddev_fields"') - return player_assists_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_assists_stddev_pop_fields_possibleTypes: string[] = ['player_assists_stddev_pop_fields'] - export const isplayer_assists_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_assists_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_assists_stddev_pop_fields"') - return player_assists_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_assists_stddev_samp_fields_possibleTypes: string[] = ['player_assists_stddev_samp_fields'] - export const isplayer_assists_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_assists_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_assists_stddev_samp_fields"') - return player_assists_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_assists_sum_fields_possibleTypes: string[] = ['player_assists_sum_fields'] - export const isplayer_assists_sum_fields = (obj?: { __typename?: any } | null): obj is player_assists_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_assists_sum_fields"') - return player_assists_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_assists_var_pop_fields_possibleTypes: string[] = ['player_assists_var_pop_fields'] - export const isplayer_assists_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_assists_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_assists_var_pop_fields"') - return player_assists_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_assists_var_samp_fields_possibleTypes: string[] = ['player_assists_var_samp_fields'] - export const isplayer_assists_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_assists_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_assists_var_samp_fields"') - return player_assists_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_assists_variance_fields_possibleTypes: string[] = ['player_assists_variance_fields'] - export const isplayer_assists_variance_fields = (obj?: { __typename?: any } | null): obj is player_assists_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_assists_variance_fields"') - return player_assists_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_career_stats_v_possibleTypes: string[] = ['player_career_stats_v'] - export const isplayer_career_stats_v = (obj?: { __typename?: any } | null): obj is player_career_stats_v => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_career_stats_v"') - return player_career_stats_v_possibleTypes.includes(obj.__typename) - } - - - - const player_career_stats_v_aggregate_possibleTypes: string[] = ['player_career_stats_v_aggregate'] - export const isplayer_career_stats_v_aggregate = (obj?: { __typename?: any } | null): obj is player_career_stats_v_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_career_stats_v_aggregate"') - return player_career_stats_v_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const player_career_stats_v_aggregate_fields_possibleTypes: string[] = ['player_career_stats_v_aggregate_fields'] - export const isplayer_career_stats_v_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_career_stats_v_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_career_stats_v_aggregate_fields"') - return player_career_stats_v_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_career_stats_v_avg_fields_possibleTypes: string[] = ['player_career_stats_v_avg_fields'] - export const isplayer_career_stats_v_avg_fields = (obj?: { __typename?: any } | null): obj is player_career_stats_v_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_career_stats_v_avg_fields"') - return player_career_stats_v_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_career_stats_v_max_fields_possibleTypes: string[] = ['player_career_stats_v_max_fields'] - export const isplayer_career_stats_v_max_fields = (obj?: { __typename?: any } | null): obj is player_career_stats_v_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_career_stats_v_max_fields"') - return player_career_stats_v_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_career_stats_v_min_fields_possibleTypes: string[] = ['player_career_stats_v_min_fields'] - export const isplayer_career_stats_v_min_fields = (obj?: { __typename?: any } | null): obj is player_career_stats_v_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_career_stats_v_min_fields"') - return player_career_stats_v_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_career_stats_v_stddev_fields_possibleTypes: string[] = ['player_career_stats_v_stddev_fields'] - export const isplayer_career_stats_v_stddev_fields = (obj?: { __typename?: any } | null): obj is player_career_stats_v_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_career_stats_v_stddev_fields"') - return player_career_stats_v_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_career_stats_v_stddev_pop_fields_possibleTypes: string[] = ['player_career_stats_v_stddev_pop_fields'] - export const isplayer_career_stats_v_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_career_stats_v_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_career_stats_v_stddev_pop_fields"') - return player_career_stats_v_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_career_stats_v_stddev_samp_fields_possibleTypes: string[] = ['player_career_stats_v_stddev_samp_fields'] - export const isplayer_career_stats_v_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_career_stats_v_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_career_stats_v_stddev_samp_fields"') - return player_career_stats_v_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_career_stats_v_sum_fields_possibleTypes: string[] = ['player_career_stats_v_sum_fields'] - export const isplayer_career_stats_v_sum_fields = (obj?: { __typename?: any } | null): obj is player_career_stats_v_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_career_stats_v_sum_fields"') - return player_career_stats_v_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_career_stats_v_var_pop_fields_possibleTypes: string[] = ['player_career_stats_v_var_pop_fields'] - export const isplayer_career_stats_v_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_career_stats_v_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_career_stats_v_var_pop_fields"') - return player_career_stats_v_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_career_stats_v_var_samp_fields_possibleTypes: string[] = ['player_career_stats_v_var_samp_fields'] - export const isplayer_career_stats_v_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_career_stats_v_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_career_stats_v_var_samp_fields"') - return player_career_stats_v_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_career_stats_v_variance_fields_possibleTypes: string[] = ['player_career_stats_v_variance_fields'] - export const isplayer_career_stats_v_variance_fields = (obj?: { __typename?: any } | null): obj is player_career_stats_v_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_career_stats_v_variance_fields"') - return player_career_stats_v_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_damages_possibleTypes: string[] = ['player_damages'] - export const isplayer_damages = (obj?: { __typename?: any } | null): obj is player_damages => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_damages"') - return player_damages_possibleTypes.includes(obj.__typename) - } - - - - const player_damages_aggregate_possibleTypes: string[] = ['player_damages_aggregate'] - export const isplayer_damages_aggregate = (obj?: { __typename?: any } | null): obj is player_damages_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_damages_aggregate"') - return player_damages_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const player_damages_aggregate_fields_possibleTypes: string[] = ['player_damages_aggregate_fields'] - export const isplayer_damages_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_damages_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_damages_aggregate_fields"') - return player_damages_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_damages_avg_fields_possibleTypes: string[] = ['player_damages_avg_fields'] - export const isplayer_damages_avg_fields = (obj?: { __typename?: any } | null): obj is player_damages_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_damages_avg_fields"') - return player_damages_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_damages_max_fields_possibleTypes: string[] = ['player_damages_max_fields'] - export const isplayer_damages_max_fields = (obj?: { __typename?: any } | null): obj is player_damages_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_damages_max_fields"') - return player_damages_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_damages_min_fields_possibleTypes: string[] = ['player_damages_min_fields'] - export const isplayer_damages_min_fields = (obj?: { __typename?: any } | null): obj is player_damages_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_damages_min_fields"') - return player_damages_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_damages_mutation_response_possibleTypes: string[] = ['player_damages_mutation_response'] - export const isplayer_damages_mutation_response = (obj?: { __typename?: any } | null): obj is player_damages_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_damages_mutation_response"') - return player_damages_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const player_damages_stddev_fields_possibleTypes: string[] = ['player_damages_stddev_fields'] - export const isplayer_damages_stddev_fields = (obj?: { __typename?: any } | null): obj is player_damages_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_damages_stddev_fields"') - return player_damages_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_damages_stddev_pop_fields_possibleTypes: string[] = ['player_damages_stddev_pop_fields'] - export const isplayer_damages_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_damages_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_damages_stddev_pop_fields"') - return player_damages_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_damages_stddev_samp_fields_possibleTypes: string[] = ['player_damages_stddev_samp_fields'] - export const isplayer_damages_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_damages_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_damages_stddev_samp_fields"') - return player_damages_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_damages_sum_fields_possibleTypes: string[] = ['player_damages_sum_fields'] - export const isplayer_damages_sum_fields = (obj?: { __typename?: any } | null): obj is player_damages_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_damages_sum_fields"') - return player_damages_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_damages_var_pop_fields_possibleTypes: string[] = ['player_damages_var_pop_fields'] - export const isplayer_damages_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_damages_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_damages_var_pop_fields"') - return player_damages_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_damages_var_samp_fields_possibleTypes: string[] = ['player_damages_var_samp_fields'] - export const isplayer_damages_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_damages_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_damages_var_samp_fields"') - return player_damages_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_damages_variance_fields_possibleTypes: string[] = ['player_damages_variance_fields'] - export const isplayer_damages_variance_fields = (obj?: { __typename?: any } | null): obj is player_damages_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_damages_variance_fields"') - return player_damages_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_elo_possibleTypes: string[] = ['player_elo'] - export const isplayer_elo = (obj?: { __typename?: any } | null): obj is player_elo => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_elo"') - return player_elo_possibleTypes.includes(obj.__typename) - } - - - - const player_elo_aggregate_possibleTypes: string[] = ['player_elo_aggregate'] - export const isplayer_elo_aggregate = (obj?: { __typename?: any } | null): obj is player_elo_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_elo_aggregate"') - return player_elo_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const player_elo_aggregate_fields_possibleTypes: string[] = ['player_elo_aggregate_fields'] - export const isplayer_elo_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_elo_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_elo_aggregate_fields"') - return player_elo_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_elo_avg_fields_possibleTypes: string[] = ['player_elo_avg_fields'] - export const isplayer_elo_avg_fields = (obj?: { __typename?: any } | null): obj is player_elo_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_elo_avg_fields"') - return player_elo_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_elo_max_fields_possibleTypes: string[] = ['player_elo_max_fields'] - export const isplayer_elo_max_fields = (obj?: { __typename?: any } | null): obj is player_elo_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_elo_max_fields"') - return player_elo_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_elo_min_fields_possibleTypes: string[] = ['player_elo_min_fields'] - export const isplayer_elo_min_fields = (obj?: { __typename?: any } | null): obj is player_elo_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_elo_min_fields"') - return player_elo_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_elo_mutation_response_possibleTypes: string[] = ['player_elo_mutation_response'] - export const isplayer_elo_mutation_response = (obj?: { __typename?: any } | null): obj is player_elo_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_elo_mutation_response"') - return player_elo_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const player_elo_stddev_fields_possibleTypes: string[] = ['player_elo_stddev_fields'] - export const isplayer_elo_stddev_fields = (obj?: { __typename?: any } | null): obj is player_elo_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_elo_stddev_fields"') - return player_elo_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_elo_stddev_pop_fields_possibleTypes: string[] = ['player_elo_stddev_pop_fields'] - export const isplayer_elo_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_elo_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_elo_stddev_pop_fields"') - return player_elo_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_elo_stddev_samp_fields_possibleTypes: string[] = ['player_elo_stddev_samp_fields'] - export const isplayer_elo_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_elo_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_elo_stddev_samp_fields"') - return player_elo_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_elo_sum_fields_possibleTypes: string[] = ['player_elo_sum_fields'] - export const isplayer_elo_sum_fields = (obj?: { __typename?: any } | null): obj is player_elo_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_elo_sum_fields"') - return player_elo_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_elo_var_pop_fields_possibleTypes: string[] = ['player_elo_var_pop_fields'] - export const isplayer_elo_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_elo_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_elo_var_pop_fields"') - return player_elo_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_elo_var_samp_fields_possibleTypes: string[] = ['player_elo_var_samp_fields'] - export const isplayer_elo_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_elo_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_elo_var_samp_fields"') - return player_elo_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_elo_variance_fields_possibleTypes: string[] = ['player_elo_variance_fields'] - export const isplayer_elo_variance_fields = (obj?: { __typename?: any } | null): obj is player_elo_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_elo_variance_fields"') - return player_elo_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_faceit_rank_history_possibleTypes: string[] = ['player_faceit_rank_history'] - export const isplayer_faceit_rank_history = (obj?: { __typename?: any } | null): obj is player_faceit_rank_history => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_faceit_rank_history"') - return player_faceit_rank_history_possibleTypes.includes(obj.__typename) - } - - - - const player_faceit_rank_history_aggregate_possibleTypes: string[] = ['player_faceit_rank_history_aggregate'] - export const isplayer_faceit_rank_history_aggregate = (obj?: { __typename?: any } | null): obj is player_faceit_rank_history_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_faceit_rank_history_aggregate"') - return player_faceit_rank_history_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const player_faceit_rank_history_aggregate_fields_possibleTypes: string[] = ['player_faceit_rank_history_aggregate_fields'] - export const isplayer_faceit_rank_history_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_faceit_rank_history_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_faceit_rank_history_aggregate_fields"') - return player_faceit_rank_history_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_faceit_rank_history_avg_fields_possibleTypes: string[] = ['player_faceit_rank_history_avg_fields'] - export const isplayer_faceit_rank_history_avg_fields = (obj?: { __typename?: any } | null): obj is player_faceit_rank_history_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_faceit_rank_history_avg_fields"') - return player_faceit_rank_history_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_faceit_rank_history_max_fields_possibleTypes: string[] = ['player_faceit_rank_history_max_fields'] - export const isplayer_faceit_rank_history_max_fields = (obj?: { __typename?: any } | null): obj is player_faceit_rank_history_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_faceit_rank_history_max_fields"') - return player_faceit_rank_history_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_faceit_rank_history_min_fields_possibleTypes: string[] = ['player_faceit_rank_history_min_fields'] - export const isplayer_faceit_rank_history_min_fields = (obj?: { __typename?: any } | null): obj is player_faceit_rank_history_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_faceit_rank_history_min_fields"') - return player_faceit_rank_history_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_faceit_rank_history_mutation_response_possibleTypes: string[] = ['player_faceit_rank_history_mutation_response'] - export const isplayer_faceit_rank_history_mutation_response = (obj?: { __typename?: any } | null): obj is player_faceit_rank_history_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_faceit_rank_history_mutation_response"') - return player_faceit_rank_history_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const player_faceit_rank_history_stddev_fields_possibleTypes: string[] = ['player_faceit_rank_history_stddev_fields'] - export const isplayer_faceit_rank_history_stddev_fields = (obj?: { __typename?: any } | null): obj is player_faceit_rank_history_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_faceit_rank_history_stddev_fields"') - return player_faceit_rank_history_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_faceit_rank_history_stddev_pop_fields_possibleTypes: string[] = ['player_faceit_rank_history_stddev_pop_fields'] - export const isplayer_faceit_rank_history_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_faceit_rank_history_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_faceit_rank_history_stddev_pop_fields"') - return player_faceit_rank_history_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_faceit_rank_history_stddev_samp_fields_possibleTypes: string[] = ['player_faceit_rank_history_stddev_samp_fields'] - export const isplayer_faceit_rank_history_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_faceit_rank_history_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_faceit_rank_history_stddev_samp_fields"') - return player_faceit_rank_history_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_faceit_rank_history_sum_fields_possibleTypes: string[] = ['player_faceit_rank_history_sum_fields'] - export const isplayer_faceit_rank_history_sum_fields = (obj?: { __typename?: any } | null): obj is player_faceit_rank_history_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_faceit_rank_history_sum_fields"') - return player_faceit_rank_history_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_faceit_rank_history_var_pop_fields_possibleTypes: string[] = ['player_faceit_rank_history_var_pop_fields'] - export const isplayer_faceit_rank_history_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_faceit_rank_history_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_faceit_rank_history_var_pop_fields"') - return player_faceit_rank_history_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_faceit_rank_history_var_samp_fields_possibleTypes: string[] = ['player_faceit_rank_history_var_samp_fields'] - export const isplayer_faceit_rank_history_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_faceit_rank_history_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_faceit_rank_history_var_samp_fields"') - return player_faceit_rank_history_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_faceit_rank_history_variance_fields_possibleTypes: string[] = ['player_faceit_rank_history_variance_fields'] - export const isplayer_faceit_rank_history_variance_fields = (obj?: { __typename?: any } | null): obj is player_faceit_rank_history_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_faceit_rank_history_variance_fields"') - return player_faceit_rank_history_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_flashes_possibleTypes: string[] = ['player_flashes'] - export const isplayer_flashes = (obj?: { __typename?: any } | null): obj is player_flashes => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_flashes"') - return player_flashes_possibleTypes.includes(obj.__typename) - } - - - - const player_flashes_aggregate_possibleTypes: string[] = ['player_flashes_aggregate'] - export const isplayer_flashes_aggregate = (obj?: { __typename?: any } | null): obj is player_flashes_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_flashes_aggregate"') - return player_flashes_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const player_flashes_aggregate_fields_possibleTypes: string[] = ['player_flashes_aggregate_fields'] - export const isplayer_flashes_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_flashes_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_flashes_aggregate_fields"') - return player_flashes_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_flashes_avg_fields_possibleTypes: string[] = ['player_flashes_avg_fields'] - export const isplayer_flashes_avg_fields = (obj?: { __typename?: any } | null): obj is player_flashes_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_flashes_avg_fields"') - return player_flashes_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_flashes_max_fields_possibleTypes: string[] = ['player_flashes_max_fields'] - export const isplayer_flashes_max_fields = (obj?: { __typename?: any } | null): obj is player_flashes_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_flashes_max_fields"') - return player_flashes_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_flashes_min_fields_possibleTypes: string[] = ['player_flashes_min_fields'] - export const isplayer_flashes_min_fields = (obj?: { __typename?: any } | null): obj is player_flashes_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_flashes_min_fields"') - return player_flashes_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_flashes_mutation_response_possibleTypes: string[] = ['player_flashes_mutation_response'] - export const isplayer_flashes_mutation_response = (obj?: { __typename?: any } | null): obj is player_flashes_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_flashes_mutation_response"') - return player_flashes_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const player_flashes_stddev_fields_possibleTypes: string[] = ['player_flashes_stddev_fields'] - export const isplayer_flashes_stddev_fields = (obj?: { __typename?: any } | null): obj is player_flashes_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_flashes_stddev_fields"') - return player_flashes_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_flashes_stddev_pop_fields_possibleTypes: string[] = ['player_flashes_stddev_pop_fields'] - export const isplayer_flashes_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_flashes_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_flashes_stddev_pop_fields"') - return player_flashes_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_flashes_stddev_samp_fields_possibleTypes: string[] = ['player_flashes_stddev_samp_fields'] - export const isplayer_flashes_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_flashes_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_flashes_stddev_samp_fields"') - return player_flashes_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_flashes_sum_fields_possibleTypes: string[] = ['player_flashes_sum_fields'] - export const isplayer_flashes_sum_fields = (obj?: { __typename?: any } | null): obj is player_flashes_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_flashes_sum_fields"') - return player_flashes_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_flashes_var_pop_fields_possibleTypes: string[] = ['player_flashes_var_pop_fields'] - export const isplayer_flashes_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_flashes_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_flashes_var_pop_fields"') - return player_flashes_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_flashes_var_samp_fields_possibleTypes: string[] = ['player_flashes_var_samp_fields'] - export const isplayer_flashes_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_flashes_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_flashes_var_samp_fields"') - return player_flashes_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_flashes_variance_fields_possibleTypes: string[] = ['player_flashes_variance_fields'] - export const isplayer_flashes_variance_fields = (obj?: { __typename?: any } | null): obj is player_flashes_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_flashes_variance_fields"') - return player_flashes_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_kills_possibleTypes: string[] = ['player_kills'] - export const isplayer_kills = (obj?: { __typename?: any } | null): obj is player_kills => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills"') - return player_kills_possibleTypes.includes(obj.__typename) - } - - - - const player_kills_aggregate_possibleTypes: string[] = ['player_kills_aggregate'] - export const isplayer_kills_aggregate = (obj?: { __typename?: any } | null): obj is player_kills_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_aggregate"') - return player_kills_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const player_kills_aggregate_fields_possibleTypes: string[] = ['player_kills_aggregate_fields'] - export const isplayer_kills_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_kills_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_aggregate_fields"') - return player_kills_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_kills_avg_fields_possibleTypes: string[] = ['player_kills_avg_fields'] - export const isplayer_kills_avg_fields = (obj?: { __typename?: any } | null): obj is player_kills_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_avg_fields"') - return player_kills_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_kills_by_weapon_possibleTypes: string[] = ['player_kills_by_weapon'] - export const isplayer_kills_by_weapon = (obj?: { __typename?: any } | null): obj is player_kills_by_weapon => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_by_weapon"') - return player_kills_by_weapon_possibleTypes.includes(obj.__typename) - } - - - - const player_kills_by_weapon_aggregate_possibleTypes: string[] = ['player_kills_by_weapon_aggregate'] - export const isplayer_kills_by_weapon_aggregate = (obj?: { __typename?: any } | null): obj is player_kills_by_weapon_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_by_weapon_aggregate"') - return player_kills_by_weapon_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const player_kills_by_weapon_aggregate_fields_possibleTypes: string[] = ['player_kills_by_weapon_aggregate_fields'] - export const isplayer_kills_by_weapon_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_kills_by_weapon_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_by_weapon_aggregate_fields"') - return player_kills_by_weapon_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_kills_by_weapon_avg_fields_possibleTypes: string[] = ['player_kills_by_weapon_avg_fields'] - export const isplayer_kills_by_weapon_avg_fields = (obj?: { __typename?: any } | null): obj is player_kills_by_weapon_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_by_weapon_avg_fields"') - return player_kills_by_weapon_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_kills_by_weapon_max_fields_possibleTypes: string[] = ['player_kills_by_weapon_max_fields'] - export const isplayer_kills_by_weapon_max_fields = (obj?: { __typename?: any } | null): obj is player_kills_by_weapon_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_by_weapon_max_fields"') - return player_kills_by_weapon_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_kills_by_weapon_min_fields_possibleTypes: string[] = ['player_kills_by_weapon_min_fields'] - export const isplayer_kills_by_weapon_min_fields = (obj?: { __typename?: any } | null): obj is player_kills_by_weapon_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_by_weapon_min_fields"') - return player_kills_by_weapon_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_kills_by_weapon_mutation_response_possibleTypes: string[] = ['player_kills_by_weapon_mutation_response'] - export const isplayer_kills_by_weapon_mutation_response = (obj?: { __typename?: any } | null): obj is player_kills_by_weapon_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_by_weapon_mutation_response"') - return player_kills_by_weapon_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const player_kills_by_weapon_stddev_fields_possibleTypes: string[] = ['player_kills_by_weapon_stddev_fields'] - export const isplayer_kills_by_weapon_stddev_fields = (obj?: { __typename?: any } | null): obj is player_kills_by_weapon_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_by_weapon_stddev_fields"') - return player_kills_by_weapon_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_kills_by_weapon_stddev_pop_fields_possibleTypes: string[] = ['player_kills_by_weapon_stddev_pop_fields'] - export const isplayer_kills_by_weapon_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_kills_by_weapon_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_by_weapon_stddev_pop_fields"') - return player_kills_by_weapon_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_kills_by_weapon_stddev_samp_fields_possibleTypes: string[] = ['player_kills_by_weapon_stddev_samp_fields'] - export const isplayer_kills_by_weapon_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_kills_by_weapon_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_by_weapon_stddev_samp_fields"') - return player_kills_by_weapon_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_kills_by_weapon_sum_fields_possibleTypes: string[] = ['player_kills_by_weapon_sum_fields'] - export const isplayer_kills_by_weapon_sum_fields = (obj?: { __typename?: any } | null): obj is player_kills_by_weapon_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_by_weapon_sum_fields"') - return player_kills_by_weapon_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_kills_by_weapon_var_pop_fields_possibleTypes: string[] = ['player_kills_by_weapon_var_pop_fields'] - export const isplayer_kills_by_weapon_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_kills_by_weapon_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_by_weapon_var_pop_fields"') - return player_kills_by_weapon_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_kills_by_weapon_var_samp_fields_possibleTypes: string[] = ['player_kills_by_weapon_var_samp_fields'] - export const isplayer_kills_by_weapon_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_kills_by_weapon_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_by_weapon_var_samp_fields"') - return player_kills_by_weapon_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_kills_by_weapon_variance_fields_possibleTypes: string[] = ['player_kills_by_weapon_variance_fields'] - export const isplayer_kills_by_weapon_variance_fields = (obj?: { __typename?: any } | null): obj is player_kills_by_weapon_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_by_weapon_variance_fields"') - return player_kills_by_weapon_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_kills_max_fields_possibleTypes: string[] = ['player_kills_max_fields'] - export const isplayer_kills_max_fields = (obj?: { __typename?: any } | null): obj is player_kills_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_max_fields"') - return player_kills_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_kills_min_fields_possibleTypes: string[] = ['player_kills_min_fields'] - export const isplayer_kills_min_fields = (obj?: { __typename?: any } | null): obj is player_kills_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_min_fields"') - return player_kills_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_kills_mutation_response_possibleTypes: string[] = ['player_kills_mutation_response'] - export const isplayer_kills_mutation_response = (obj?: { __typename?: any } | null): obj is player_kills_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_mutation_response"') - return player_kills_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const player_kills_stddev_fields_possibleTypes: string[] = ['player_kills_stddev_fields'] - export const isplayer_kills_stddev_fields = (obj?: { __typename?: any } | null): obj is player_kills_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_stddev_fields"') - return player_kills_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_kills_stddev_pop_fields_possibleTypes: string[] = ['player_kills_stddev_pop_fields'] - export const isplayer_kills_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_kills_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_stddev_pop_fields"') - return player_kills_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_kills_stddev_samp_fields_possibleTypes: string[] = ['player_kills_stddev_samp_fields'] - export const isplayer_kills_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_kills_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_stddev_samp_fields"') - return player_kills_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_kills_sum_fields_possibleTypes: string[] = ['player_kills_sum_fields'] - export const isplayer_kills_sum_fields = (obj?: { __typename?: any } | null): obj is player_kills_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_sum_fields"') - return player_kills_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_kills_var_pop_fields_possibleTypes: string[] = ['player_kills_var_pop_fields'] - export const isplayer_kills_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_kills_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_var_pop_fields"') - return player_kills_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_kills_var_samp_fields_possibleTypes: string[] = ['player_kills_var_samp_fields'] - export const isplayer_kills_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_kills_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_var_samp_fields"') - return player_kills_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_kills_variance_fields_possibleTypes: string[] = ['player_kills_variance_fields'] - export const isplayer_kills_variance_fields = (obj?: { __typename?: any } | null): obj is player_kills_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_variance_fields"') - return player_kills_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_leaderboard_rank_possibleTypes: string[] = ['player_leaderboard_rank'] - export const isplayer_leaderboard_rank = (obj?: { __typename?: any } | null): obj is player_leaderboard_rank => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_leaderboard_rank"') - return player_leaderboard_rank_possibleTypes.includes(obj.__typename) - } - - - - const player_leaderboard_rank_aggregate_possibleTypes: string[] = ['player_leaderboard_rank_aggregate'] - export const isplayer_leaderboard_rank_aggregate = (obj?: { __typename?: any } | null): obj is player_leaderboard_rank_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_leaderboard_rank_aggregate"') - return player_leaderboard_rank_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const player_leaderboard_rank_aggregate_fields_possibleTypes: string[] = ['player_leaderboard_rank_aggregate_fields'] - export const isplayer_leaderboard_rank_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_leaderboard_rank_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_leaderboard_rank_aggregate_fields"') - return player_leaderboard_rank_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_leaderboard_rank_avg_fields_possibleTypes: string[] = ['player_leaderboard_rank_avg_fields'] - export const isplayer_leaderboard_rank_avg_fields = (obj?: { __typename?: any } | null): obj is player_leaderboard_rank_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_leaderboard_rank_avg_fields"') - return player_leaderboard_rank_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_leaderboard_rank_max_fields_possibleTypes: string[] = ['player_leaderboard_rank_max_fields'] - export const isplayer_leaderboard_rank_max_fields = (obj?: { __typename?: any } | null): obj is player_leaderboard_rank_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_leaderboard_rank_max_fields"') - return player_leaderboard_rank_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_leaderboard_rank_min_fields_possibleTypes: string[] = ['player_leaderboard_rank_min_fields'] - export const isplayer_leaderboard_rank_min_fields = (obj?: { __typename?: any } | null): obj is player_leaderboard_rank_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_leaderboard_rank_min_fields"') - return player_leaderboard_rank_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_leaderboard_rank_mutation_response_possibleTypes: string[] = ['player_leaderboard_rank_mutation_response'] - export const isplayer_leaderboard_rank_mutation_response = (obj?: { __typename?: any } | null): obj is player_leaderboard_rank_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_leaderboard_rank_mutation_response"') - return player_leaderboard_rank_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const player_leaderboard_rank_stddev_fields_possibleTypes: string[] = ['player_leaderboard_rank_stddev_fields'] - export const isplayer_leaderboard_rank_stddev_fields = (obj?: { __typename?: any } | null): obj is player_leaderboard_rank_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_leaderboard_rank_stddev_fields"') - return player_leaderboard_rank_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_leaderboard_rank_stddev_pop_fields_possibleTypes: string[] = ['player_leaderboard_rank_stddev_pop_fields'] - export const isplayer_leaderboard_rank_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_leaderboard_rank_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_leaderboard_rank_stddev_pop_fields"') - return player_leaderboard_rank_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_leaderboard_rank_stddev_samp_fields_possibleTypes: string[] = ['player_leaderboard_rank_stddev_samp_fields'] - export const isplayer_leaderboard_rank_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_leaderboard_rank_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_leaderboard_rank_stddev_samp_fields"') - return player_leaderboard_rank_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_leaderboard_rank_sum_fields_possibleTypes: string[] = ['player_leaderboard_rank_sum_fields'] - export const isplayer_leaderboard_rank_sum_fields = (obj?: { __typename?: any } | null): obj is player_leaderboard_rank_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_leaderboard_rank_sum_fields"') - return player_leaderboard_rank_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_leaderboard_rank_var_pop_fields_possibleTypes: string[] = ['player_leaderboard_rank_var_pop_fields'] - export const isplayer_leaderboard_rank_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_leaderboard_rank_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_leaderboard_rank_var_pop_fields"') - return player_leaderboard_rank_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_leaderboard_rank_var_samp_fields_possibleTypes: string[] = ['player_leaderboard_rank_var_samp_fields'] - export const isplayer_leaderboard_rank_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_leaderboard_rank_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_leaderboard_rank_var_samp_fields"') - return player_leaderboard_rank_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_leaderboard_rank_variance_fields_possibleTypes: string[] = ['player_leaderboard_rank_variance_fields'] - export const isplayer_leaderboard_rank_variance_fields = (obj?: { __typename?: any } | null): obj is player_leaderboard_rank_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_leaderboard_rank_variance_fields"') - return player_leaderboard_rank_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_match_map_stats_possibleTypes: string[] = ['player_match_map_stats'] - export const isplayer_match_map_stats = (obj?: { __typename?: any } | null): obj is player_match_map_stats => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_map_stats"') - return player_match_map_stats_possibleTypes.includes(obj.__typename) - } - - - - const player_match_map_stats_aggregate_possibleTypes: string[] = ['player_match_map_stats_aggregate'] - export const isplayer_match_map_stats_aggregate = (obj?: { __typename?: any } | null): obj is player_match_map_stats_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_map_stats_aggregate"') - return player_match_map_stats_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const player_match_map_stats_aggregate_fields_possibleTypes: string[] = ['player_match_map_stats_aggregate_fields'] - export const isplayer_match_map_stats_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_match_map_stats_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_map_stats_aggregate_fields"') - return player_match_map_stats_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_match_map_stats_avg_fields_possibleTypes: string[] = ['player_match_map_stats_avg_fields'] - export const isplayer_match_map_stats_avg_fields = (obj?: { __typename?: any } | null): obj is player_match_map_stats_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_map_stats_avg_fields"') - return player_match_map_stats_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_match_map_stats_max_fields_possibleTypes: string[] = ['player_match_map_stats_max_fields'] - export const isplayer_match_map_stats_max_fields = (obj?: { __typename?: any } | null): obj is player_match_map_stats_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_map_stats_max_fields"') - return player_match_map_stats_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_match_map_stats_min_fields_possibleTypes: string[] = ['player_match_map_stats_min_fields'] - export const isplayer_match_map_stats_min_fields = (obj?: { __typename?: any } | null): obj is player_match_map_stats_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_map_stats_min_fields"') - return player_match_map_stats_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_match_map_stats_mutation_response_possibleTypes: string[] = ['player_match_map_stats_mutation_response'] - export const isplayer_match_map_stats_mutation_response = (obj?: { __typename?: any } | null): obj is player_match_map_stats_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_map_stats_mutation_response"') - return player_match_map_stats_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const player_match_map_stats_stddev_fields_possibleTypes: string[] = ['player_match_map_stats_stddev_fields'] - export const isplayer_match_map_stats_stddev_fields = (obj?: { __typename?: any } | null): obj is player_match_map_stats_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_map_stats_stddev_fields"') - return player_match_map_stats_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_match_map_stats_stddev_pop_fields_possibleTypes: string[] = ['player_match_map_stats_stddev_pop_fields'] - export const isplayer_match_map_stats_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_match_map_stats_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_map_stats_stddev_pop_fields"') - return player_match_map_stats_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_match_map_stats_stddev_samp_fields_possibleTypes: string[] = ['player_match_map_stats_stddev_samp_fields'] - export const isplayer_match_map_stats_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_match_map_stats_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_map_stats_stddev_samp_fields"') - return player_match_map_stats_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_match_map_stats_sum_fields_possibleTypes: string[] = ['player_match_map_stats_sum_fields'] - export const isplayer_match_map_stats_sum_fields = (obj?: { __typename?: any } | null): obj is player_match_map_stats_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_map_stats_sum_fields"') - return player_match_map_stats_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_match_map_stats_var_pop_fields_possibleTypes: string[] = ['player_match_map_stats_var_pop_fields'] - export const isplayer_match_map_stats_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_match_map_stats_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_map_stats_var_pop_fields"') - return player_match_map_stats_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_match_map_stats_var_samp_fields_possibleTypes: string[] = ['player_match_map_stats_var_samp_fields'] - export const isplayer_match_map_stats_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_match_map_stats_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_map_stats_var_samp_fields"') - return player_match_map_stats_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_match_map_stats_variance_fields_possibleTypes: string[] = ['player_match_map_stats_variance_fields'] - export const isplayer_match_map_stats_variance_fields = (obj?: { __typename?: any } | null): obj is player_match_map_stats_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_map_stats_variance_fields"') - return player_match_map_stats_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_match_performance_v_possibleTypes: string[] = ['player_match_performance_v'] - export const isplayer_match_performance_v = (obj?: { __typename?: any } | null): obj is player_match_performance_v => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_performance_v"') - return player_match_performance_v_possibleTypes.includes(obj.__typename) - } - - - - const player_match_performance_v_aggregate_possibleTypes: string[] = ['player_match_performance_v_aggregate'] - export const isplayer_match_performance_v_aggregate = (obj?: { __typename?: any } | null): obj is player_match_performance_v_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_performance_v_aggregate"') - return player_match_performance_v_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const player_match_performance_v_aggregate_fields_possibleTypes: string[] = ['player_match_performance_v_aggregate_fields'] - export const isplayer_match_performance_v_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_match_performance_v_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_performance_v_aggregate_fields"') - return player_match_performance_v_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_match_performance_v_avg_fields_possibleTypes: string[] = ['player_match_performance_v_avg_fields'] - export const isplayer_match_performance_v_avg_fields = (obj?: { __typename?: any } | null): obj is player_match_performance_v_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_performance_v_avg_fields"') - return player_match_performance_v_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_match_performance_v_max_fields_possibleTypes: string[] = ['player_match_performance_v_max_fields'] - export const isplayer_match_performance_v_max_fields = (obj?: { __typename?: any } | null): obj is player_match_performance_v_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_performance_v_max_fields"') - return player_match_performance_v_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_match_performance_v_min_fields_possibleTypes: string[] = ['player_match_performance_v_min_fields'] - export const isplayer_match_performance_v_min_fields = (obj?: { __typename?: any } | null): obj is player_match_performance_v_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_performance_v_min_fields"') - return player_match_performance_v_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_match_performance_v_stddev_fields_possibleTypes: string[] = ['player_match_performance_v_stddev_fields'] - export const isplayer_match_performance_v_stddev_fields = (obj?: { __typename?: any } | null): obj is player_match_performance_v_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_performance_v_stddev_fields"') - return player_match_performance_v_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_match_performance_v_stddev_pop_fields_possibleTypes: string[] = ['player_match_performance_v_stddev_pop_fields'] - export const isplayer_match_performance_v_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_match_performance_v_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_performance_v_stddev_pop_fields"') - return player_match_performance_v_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_match_performance_v_stddev_samp_fields_possibleTypes: string[] = ['player_match_performance_v_stddev_samp_fields'] - export const isplayer_match_performance_v_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_match_performance_v_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_performance_v_stddev_samp_fields"') - return player_match_performance_v_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_match_performance_v_sum_fields_possibleTypes: string[] = ['player_match_performance_v_sum_fields'] - export const isplayer_match_performance_v_sum_fields = (obj?: { __typename?: any } | null): obj is player_match_performance_v_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_performance_v_sum_fields"') - return player_match_performance_v_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_match_performance_v_var_pop_fields_possibleTypes: string[] = ['player_match_performance_v_var_pop_fields'] - export const isplayer_match_performance_v_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_match_performance_v_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_performance_v_var_pop_fields"') - return player_match_performance_v_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_match_performance_v_var_samp_fields_possibleTypes: string[] = ['player_match_performance_v_var_samp_fields'] - export const isplayer_match_performance_v_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_match_performance_v_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_performance_v_var_samp_fields"') - return player_match_performance_v_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_match_performance_v_variance_fields_possibleTypes: string[] = ['player_match_performance_v_variance_fields'] - export const isplayer_match_performance_v_variance_fields = (obj?: { __typename?: any } | null): obj is player_match_performance_v_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_performance_v_variance_fields"') - return player_match_performance_v_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_match_stats_v_possibleTypes: string[] = ['player_match_stats_v'] - export const isplayer_match_stats_v = (obj?: { __typename?: any } | null): obj is player_match_stats_v => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_stats_v"') - return player_match_stats_v_possibleTypes.includes(obj.__typename) - } - - - - const player_match_stats_v_aggregate_possibleTypes: string[] = ['player_match_stats_v_aggregate'] - export const isplayer_match_stats_v_aggregate = (obj?: { __typename?: any } | null): obj is player_match_stats_v_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_stats_v_aggregate"') - return player_match_stats_v_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const player_match_stats_v_aggregate_fields_possibleTypes: string[] = ['player_match_stats_v_aggregate_fields'] - export const isplayer_match_stats_v_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_match_stats_v_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_stats_v_aggregate_fields"') - return player_match_stats_v_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_match_stats_v_avg_fields_possibleTypes: string[] = ['player_match_stats_v_avg_fields'] - export const isplayer_match_stats_v_avg_fields = (obj?: { __typename?: any } | null): obj is player_match_stats_v_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_stats_v_avg_fields"') - return player_match_stats_v_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_match_stats_v_max_fields_possibleTypes: string[] = ['player_match_stats_v_max_fields'] - export const isplayer_match_stats_v_max_fields = (obj?: { __typename?: any } | null): obj is player_match_stats_v_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_stats_v_max_fields"') - return player_match_stats_v_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_match_stats_v_min_fields_possibleTypes: string[] = ['player_match_stats_v_min_fields'] - export const isplayer_match_stats_v_min_fields = (obj?: { __typename?: any } | null): obj is player_match_stats_v_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_stats_v_min_fields"') - return player_match_stats_v_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_match_stats_v_stddev_fields_possibleTypes: string[] = ['player_match_stats_v_stddev_fields'] - export const isplayer_match_stats_v_stddev_fields = (obj?: { __typename?: any } | null): obj is player_match_stats_v_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_stats_v_stddev_fields"') - return player_match_stats_v_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_match_stats_v_stddev_pop_fields_possibleTypes: string[] = ['player_match_stats_v_stddev_pop_fields'] - export const isplayer_match_stats_v_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_match_stats_v_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_stats_v_stddev_pop_fields"') - return player_match_stats_v_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_match_stats_v_stddev_samp_fields_possibleTypes: string[] = ['player_match_stats_v_stddev_samp_fields'] - export const isplayer_match_stats_v_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_match_stats_v_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_stats_v_stddev_samp_fields"') - return player_match_stats_v_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_match_stats_v_sum_fields_possibleTypes: string[] = ['player_match_stats_v_sum_fields'] - export const isplayer_match_stats_v_sum_fields = (obj?: { __typename?: any } | null): obj is player_match_stats_v_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_stats_v_sum_fields"') - return player_match_stats_v_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_match_stats_v_var_pop_fields_possibleTypes: string[] = ['player_match_stats_v_var_pop_fields'] - export const isplayer_match_stats_v_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_match_stats_v_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_stats_v_var_pop_fields"') - return player_match_stats_v_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_match_stats_v_var_samp_fields_possibleTypes: string[] = ['player_match_stats_v_var_samp_fields'] - export const isplayer_match_stats_v_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_match_stats_v_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_stats_v_var_samp_fields"') - return player_match_stats_v_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_match_stats_v_variance_fields_possibleTypes: string[] = ['player_match_stats_v_variance_fields'] - export const isplayer_match_stats_v_variance_fields = (obj?: { __typename?: any } | null): obj is player_match_stats_v_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_stats_v_variance_fields"') - return player_match_stats_v_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_objectives_possibleTypes: string[] = ['player_objectives'] - export const isplayer_objectives = (obj?: { __typename?: any } | null): obj is player_objectives => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_objectives"') - return player_objectives_possibleTypes.includes(obj.__typename) - } - - - - const player_objectives_aggregate_possibleTypes: string[] = ['player_objectives_aggregate'] - export const isplayer_objectives_aggregate = (obj?: { __typename?: any } | null): obj is player_objectives_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_objectives_aggregate"') - return player_objectives_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const player_objectives_aggregate_fields_possibleTypes: string[] = ['player_objectives_aggregate_fields'] - export const isplayer_objectives_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_objectives_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_objectives_aggregate_fields"') - return player_objectives_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_objectives_avg_fields_possibleTypes: string[] = ['player_objectives_avg_fields'] - export const isplayer_objectives_avg_fields = (obj?: { __typename?: any } | null): obj is player_objectives_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_objectives_avg_fields"') - return player_objectives_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_objectives_max_fields_possibleTypes: string[] = ['player_objectives_max_fields'] - export const isplayer_objectives_max_fields = (obj?: { __typename?: any } | null): obj is player_objectives_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_objectives_max_fields"') - return player_objectives_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_objectives_min_fields_possibleTypes: string[] = ['player_objectives_min_fields'] - export const isplayer_objectives_min_fields = (obj?: { __typename?: any } | null): obj is player_objectives_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_objectives_min_fields"') - return player_objectives_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_objectives_mutation_response_possibleTypes: string[] = ['player_objectives_mutation_response'] - export const isplayer_objectives_mutation_response = (obj?: { __typename?: any } | null): obj is player_objectives_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_objectives_mutation_response"') - return player_objectives_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const player_objectives_stddev_fields_possibleTypes: string[] = ['player_objectives_stddev_fields'] - export const isplayer_objectives_stddev_fields = (obj?: { __typename?: any } | null): obj is player_objectives_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_objectives_stddev_fields"') - return player_objectives_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_objectives_stddev_pop_fields_possibleTypes: string[] = ['player_objectives_stddev_pop_fields'] - export const isplayer_objectives_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_objectives_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_objectives_stddev_pop_fields"') - return player_objectives_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_objectives_stddev_samp_fields_possibleTypes: string[] = ['player_objectives_stddev_samp_fields'] - export const isplayer_objectives_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_objectives_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_objectives_stddev_samp_fields"') - return player_objectives_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_objectives_sum_fields_possibleTypes: string[] = ['player_objectives_sum_fields'] - export const isplayer_objectives_sum_fields = (obj?: { __typename?: any } | null): obj is player_objectives_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_objectives_sum_fields"') - return player_objectives_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_objectives_var_pop_fields_possibleTypes: string[] = ['player_objectives_var_pop_fields'] - export const isplayer_objectives_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_objectives_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_objectives_var_pop_fields"') - return player_objectives_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_objectives_var_samp_fields_possibleTypes: string[] = ['player_objectives_var_samp_fields'] - export const isplayer_objectives_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_objectives_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_objectives_var_samp_fields"') - return player_objectives_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_objectives_variance_fields_possibleTypes: string[] = ['player_objectives_variance_fields'] - export const isplayer_objectives_variance_fields = (obj?: { __typename?: any } | null): obj is player_objectives_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_objectives_variance_fields"') - return player_objectives_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_performance_v_possibleTypes: string[] = ['player_performance_v'] - export const isplayer_performance_v = (obj?: { __typename?: any } | null): obj is player_performance_v => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_performance_v"') - return player_performance_v_possibleTypes.includes(obj.__typename) - } - - - - const player_performance_v_aggregate_possibleTypes: string[] = ['player_performance_v_aggregate'] - export const isplayer_performance_v_aggregate = (obj?: { __typename?: any } | null): obj is player_performance_v_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_performance_v_aggregate"') - return player_performance_v_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const player_performance_v_aggregate_fields_possibleTypes: string[] = ['player_performance_v_aggregate_fields'] - export const isplayer_performance_v_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_performance_v_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_performance_v_aggregate_fields"') - return player_performance_v_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_performance_v_avg_fields_possibleTypes: string[] = ['player_performance_v_avg_fields'] - export const isplayer_performance_v_avg_fields = (obj?: { __typename?: any } | null): obj is player_performance_v_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_performance_v_avg_fields"') - return player_performance_v_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_performance_v_max_fields_possibleTypes: string[] = ['player_performance_v_max_fields'] - export const isplayer_performance_v_max_fields = (obj?: { __typename?: any } | null): obj is player_performance_v_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_performance_v_max_fields"') - return player_performance_v_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_performance_v_min_fields_possibleTypes: string[] = ['player_performance_v_min_fields'] - export const isplayer_performance_v_min_fields = (obj?: { __typename?: any } | null): obj is player_performance_v_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_performance_v_min_fields"') - return player_performance_v_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_performance_v_stddev_fields_possibleTypes: string[] = ['player_performance_v_stddev_fields'] - export const isplayer_performance_v_stddev_fields = (obj?: { __typename?: any } | null): obj is player_performance_v_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_performance_v_stddev_fields"') - return player_performance_v_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_performance_v_stddev_pop_fields_possibleTypes: string[] = ['player_performance_v_stddev_pop_fields'] - export const isplayer_performance_v_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_performance_v_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_performance_v_stddev_pop_fields"') - return player_performance_v_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_performance_v_stddev_samp_fields_possibleTypes: string[] = ['player_performance_v_stddev_samp_fields'] - export const isplayer_performance_v_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_performance_v_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_performance_v_stddev_samp_fields"') - return player_performance_v_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_performance_v_sum_fields_possibleTypes: string[] = ['player_performance_v_sum_fields'] - export const isplayer_performance_v_sum_fields = (obj?: { __typename?: any } | null): obj is player_performance_v_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_performance_v_sum_fields"') - return player_performance_v_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_performance_v_var_pop_fields_possibleTypes: string[] = ['player_performance_v_var_pop_fields'] - export const isplayer_performance_v_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_performance_v_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_performance_v_var_pop_fields"') - return player_performance_v_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_performance_v_var_samp_fields_possibleTypes: string[] = ['player_performance_v_var_samp_fields'] - export const isplayer_performance_v_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_performance_v_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_performance_v_var_samp_fields"') - return player_performance_v_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_performance_v_variance_fields_possibleTypes: string[] = ['player_performance_v_variance_fields'] - export const isplayer_performance_v_variance_fields = (obj?: { __typename?: any } | null): obj is player_performance_v_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_performance_v_variance_fields"') - return player_performance_v_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_premier_rank_history_possibleTypes: string[] = ['player_premier_rank_history'] - export const isplayer_premier_rank_history = (obj?: { __typename?: any } | null): obj is player_premier_rank_history => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_premier_rank_history"') - return player_premier_rank_history_possibleTypes.includes(obj.__typename) - } - - - - const player_premier_rank_history_aggregate_possibleTypes: string[] = ['player_premier_rank_history_aggregate'] - export const isplayer_premier_rank_history_aggregate = (obj?: { __typename?: any } | null): obj is player_premier_rank_history_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_premier_rank_history_aggregate"') - return player_premier_rank_history_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const player_premier_rank_history_aggregate_fields_possibleTypes: string[] = ['player_premier_rank_history_aggregate_fields'] - export const isplayer_premier_rank_history_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_premier_rank_history_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_premier_rank_history_aggregate_fields"') - return player_premier_rank_history_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_premier_rank_history_avg_fields_possibleTypes: string[] = ['player_premier_rank_history_avg_fields'] - export const isplayer_premier_rank_history_avg_fields = (obj?: { __typename?: any } | null): obj is player_premier_rank_history_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_premier_rank_history_avg_fields"') - return player_premier_rank_history_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_premier_rank_history_max_fields_possibleTypes: string[] = ['player_premier_rank_history_max_fields'] - export const isplayer_premier_rank_history_max_fields = (obj?: { __typename?: any } | null): obj is player_premier_rank_history_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_premier_rank_history_max_fields"') - return player_premier_rank_history_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_premier_rank_history_min_fields_possibleTypes: string[] = ['player_premier_rank_history_min_fields'] - export const isplayer_premier_rank_history_min_fields = (obj?: { __typename?: any } | null): obj is player_premier_rank_history_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_premier_rank_history_min_fields"') - return player_premier_rank_history_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_premier_rank_history_mutation_response_possibleTypes: string[] = ['player_premier_rank_history_mutation_response'] - export const isplayer_premier_rank_history_mutation_response = (obj?: { __typename?: any } | null): obj is player_premier_rank_history_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_premier_rank_history_mutation_response"') - return player_premier_rank_history_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const player_premier_rank_history_stddev_fields_possibleTypes: string[] = ['player_premier_rank_history_stddev_fields'] - export const isplayer_premier_rank_history_stddev_fields = (obj?: { __typename?: any } | null): obj is player_premier_rank_history_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_premier_rank_history_stddev_fields"') - return player_premier_rank_history_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_premier_rank_history_stddev_pop_fields_possibleTypes: string[] = ['player_premier_rank_history_stddev_pop_fields'] - export const isplayer_premier_rank_history_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_premier_rank_history_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_premier_rank_history_stddev_pop_fields"') - return player_premier_rank_history_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_premier_rank_history_stddev_samp_fields_possibleTypes: string[] = ['player_premier_rank_history_stddev_samp_fields'] - export const isplayer_premier_rank_history_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_premier_rank_history_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_premier_rank_history_stddev_samp_fields"') - return player_premier_rank_history_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_premier_rank_history_sum_fields_possibleTypes: string[] = ['player_premier_rank_history_sum_fields'] - export const isplayer_premier_rank_history_sum_fields = (obj?: { __typename?: any } | null): obj is player_premier_rank_history_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_premier_rank_history_sum_fields"') - return player_premier_rank_history_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_premier_rank_history_var_pop_fields_possibleTypes: string[] = ['player_premier_rank_history_var_pop_fields'] - export const isplayer_premier_rank_history_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_premier_rank_history_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_premier_rank_history_var_pop_fields"') - return player_premier_rank_history_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_premier_rank_history_var_samp_fields_possibleTypes: string[] = ['player_premier_rank_history_var_samp_fields'] - export const isplayer_premier_rank_history_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_premier_rank_history_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_premier_rank_history_var_samp_fields"') - return player_premier_rank_history_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_premier_rank_history_variance_fields_possibleTypes: string[] = ['player_premier_rank_history_variance_fields'] - export const isplayer_premier_rank_history_variance_fields = (obj?: { __typename?: any } | null): obj is player_premier_rank_history_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_premier_rank_history_variance_fields"') - return player_premier_rank_history_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_sanctions_possibleTypes: string[] = ['player_sanctions'] - export const isplayer_sanctions = (obj?: { __typename?: any } | null): obj is player_sanctions => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_sanctions"') - return player_sanctions_possibleTypes.includes(obj.__typename) - } - - - - const player_sanctions_aggregate_possibleTypes: string[] = ['player_sanctions_aggregate'] - export const isplayer_sanctions_aggregate = (obj?: { __typename?: any } | null): obj is player_sanctions_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_sanctions_aggregate"') - return player_sanctions_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const player_sanctions_aggregate_fields_possibleTypes: string[] = ['player_sanctions_aggregate_fields'] - export const isplayer_sanctions_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_sanctions_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_sanctions_aggregate_fields"') - return player_sanctions_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_sanctions_avg_fields_possibleTypes: string[] = ['player_sanctions_avg_fields'] - export const isplayer_sanctions_avg_fields = (obj?: { __typename?: any } | null): obj is player_sanctions_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_sanctions_avg_fields"') - return player_sanctions_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_sanctions_max_fields_possibleTypes: string[] = ['player_sanctions_max_fields'] - export const isplayer_sanctions_max_fields = (obj?: { __typename?: any } | null): obj is player_sanctions_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_sanctions_max_fields"') - return player_sanctions_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_sanctions_min_fields_possibleTypes: string[] = ['player_sanctions_min_fields'] - export const isplayer_sanctions_min_fields = (obj?: { __typename?: any } | null): obj is player_sanctions_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_sanctions_min_fields"') - return player_sanctions_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_sanctions_mutation_response_possibleTypes: string[] = ['player_sanctions_mutation_response'] - export const isplayer_sanctions_mutation_response = (obj?: { __typename?: any } | null): obj is player_sanctions_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_sanctions_mutation_response"') - return player_sanctions_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const player_sanctions_stddev_fields_possibleTypes: string[] = ['player_sanctions_stddev_fields'] - export const isplayer_sanctions_stddev_fields = (obj?: { __typename?: any } | null): obj is player_sanctions_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_sanctions_stddev_fields"') - return player_sanctions_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_sanctions_stddev_pop_fields_possibleTypes: string[] = ['player_sanctions_stddev_pop_fields'] - export const isplayer_sanctions_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_sanctions_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_sanctions_stddev_pop_fields"') - return player_sanctions_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_sanctions_stddev_samp_fields_possibleTypes: string[] = ['player_sanctions_stddev_samp_fields'] - export const isplayer_sanctions_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_sanctions_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_sanctions_stddev_samp_fields"') - return player_sanctions_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_sanctions_sum_fields_possibleTypes: string[] = ['player_sanctions_sum_fields'] - export const isplayer_sanctions_sum_fields = (obj?: { __typename?: any } | null): obj is player_sanctions_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_sanctions_sum_fields"') - return player_sanctions_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_sanctions_var_pop_fields_possibleTypes: string[] = ['player_sanctions_var_pop_fields'] - export const isplayer_sanctions_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_sanctions_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_sanctions_var_pop_fields"') - return player_sanctions_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_sanctions_var_samp_fields_possibleTypes: string[] = ['player_sanctions_var_samp_fields'] - export const isplayer_sanctions_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_sanctions_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_sanctions_var_samp_fields"') - return player_sanctions_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_sanctions_variance_fields_possibleTypes: string[] = ['player_sanctions_variance_fields'] - export const isplayer_sanctions_variance_fields = (obj?: { __typename?: any } | null): obj is player_sanctions_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_sanctions_variance_fields"') - return player_sanctions_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_season_stats_possibleTypes: string[] = ['player_season_stats'] - export const isplayer_season_stats = (obj?: { __typename?: any } | null): obj is player_season_stats => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_season_stats"') - return player_season_stats_possibleTypes.includes(obj.__typename) - } - - - - const player_season_stats_aggregate_possibleTypes: string[] = ['player_season_stats_aggregate'] - export const isplayer_season_stats_aggregate = (obj?: { __typename?: any } | null): obj is player_season_stats_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_season_stats_aggregate"') - return player_season_stats_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const player_season_stats_aggregate_fields_possibleTypes: string[] = ['player_season_stats_aggregate_fields'] - export const isplayer_season_stats_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_season_stats_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_season_stats_aggregate_fields"') - return player_season_stats_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_season_stats_avg_fields_possibleTypes: string[] = ['player_season_stats_avg_fields'] - export const isplayer_season_stats_avg_fields = (obj?: { __typename?: any } | null): obj is player_season_stats_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_season_stats_avg_fields"') - return player_season_stats_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_season_stats_max_fields_possibleTypes: string[] = ['player_season_stats_max_fields'] - export const isplayer_season_stats_max_fields = (obj?: { __typename?: any } | null): obj is player_season_stats_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_season_stats_max_fields"') - return player_season_stats_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_season_stats_min_fields_possibleTypes: string[] = ['player_season_stats_min_fields'] - export const isplayer_season_stats_min_fields = (obj?: { __typename?: any } | null): obj is player_season_stats_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_season_stats_min_fields"') - return player_season_stats_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_season_stats_mutation_response_possibleTypes: string[] = ['player_season_stats_mutation_response'] - export const isplayer_season_stats_mutation_response = (obj?: { __typename?: any } | null): obj is player_season_stats_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_season_stats_mutation_response"') - return player_season_stats_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const player_season_stats_stddev_fields_possibleTypes: string[] = ['player_season_stats_stddev_fields'] - export const isplayer_season_stats_stddev_fields = (obj?: { __typename?: any } | null): obj is player_season_stats_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_season_stats_stddev_fields"') - return player_season_stats_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_season_stats_stddev_pop_fields_possibleTypes: string[] = ['player_season_stats_stddev_pop_fields'] - export const isplayer_season_stats_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_season_stats_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_season_stats_stddev_pop_fields"') - return player_season_stats_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_season_stats_stddev_samp_fields_possibleTypes: string[] = ['player_season_stats_stddev_samp_fields'] - export const isplayer_season_stats_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_season_stats_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_season_stats_stddev_samp_fields"') - return player_season_stats_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_season_stats_sum_fields_possibleTypes: string[] = ['player_season_stats_sum_fields'] - export const isplayer_season_stats_sum_fields = (obj?: { __typename?: any } | null): obj is player_season_stats_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_season_stats_sum_fields"') - return player_season_stats_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_season_stats_var_pop_fields_possibleTypes: string[] = ['player_season_stats_var_pop_fields'] - export const isplayer_season_stats_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_season_stats_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_season_stats_var_pop_fields"') - return player_season_stats_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_season_stats_var_samp_fields_possibleTypes: string[] = ['player_season_stats_var_samp_fields'] - export const isplayer_season_stats_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_season_stats_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_season_stats_var_samp_fields"') - return player_season_stats_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_season_stats_variance_fields_possibleTypes: string[] = ['player_season_stats_variance_fields'] - export const isplayer_season_stats_variance_fields = (obj?: { __typename?: any } | null): obj is player_season_stats_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_season_stats_variance_fields"') - return player_season_stats_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_stats_possibleTypes: string[] = ['player_stats'] - export const isplayer_stats = (obj?: { __typename?: any } | null): obj is player_stats => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_stats"') - return player_stats_possibleTypes.includes(obj.__typename) - } - - - - const player_stats_aggregate_possibleTypes: string[] = ['player_stats_aggregate'] - export const isplayer_stats_aggregate = (obj?: { __typename?: any } | null): obj is player_stats_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_stats_aggregate"') - return player_stats_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const player_stats_aggregate_fields_possibleTypes: string[] = ['player_stats_aggregate_fields'] - export const isplayer_stats_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_stats_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_stats_aggregate_fields"') - return player_stats_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_stats_avg_fields_possibleTypes: string[] = ['player_stats_avg_fields'] - export const isplayer_stats_avg_fields = (obj?: { __typename?: any } | null): obj is player_stats_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_stats_avg_fields"') - return player_stats_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_stats_max_fields_possibleTypes: string[] = ['player_stats_max_fields'] - export const isplayer_stats_max_fields = (obj?: { __typename?: any } | null): obj is player_stats_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_stats_max_fields"') - return player_stats_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_stats_min_fields_possibleTypes: string[] = ['player_stats_min_fields'] - export const isplayer_stats_min_fields = (obj?: { __typename?: any } | null): obj is player_stats_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_stats_min_fields"') - return player_stats_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_stats_mutation_response_possibleTypes: string[] = ['player_stats_mutation_response'] - export const isplayer_stats_mutation_response = (obj?: { __typename?: any } | null): obj is player_stats_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_stats_mutation_response"') - return player_stats_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const player_stats_stddev_fields_possibleTypes: string[] = ['player_stats_stddev_fields'] - export const isplayer_stats_stddev_fields = (obj?: { __typename?: any } | null): obj is player_stats_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_stats_stddev_fields"') - return player_stats_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_stats_stddev_pop_fields_possibleTypes: string[] = ['player_stats_stddev_pop_fields'] - export const isplayer_stats_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_stats_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_stats_stddev_pop_fields"') - return player_stats_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_stats_stddev_samp_fields_possibleTypes: string[] = ['player_stats_stddev_samp_fields'] - export const isplayer_stats_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_stats_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_stats_stddev_samp_fields"') - return player_stats_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_stats_sum_fields_possibleTypes: string[] = ['player_stats_sum_fields'] - export const isplayer_stats_sum_fields = (obj?: { __typename?: any } | null): obj is player_stats_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_stats_sum_fields"') - return player_stats_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_stats_var_pop_fields_possibleTypes: string[] = ['player_stats_var_pop_fields'] - export const isplayer_stats_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_stats_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_stats_var_pop_fields"') - return player_stats_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_stats_var_samp_fields_possibleTypes: string[] = ['player_stats_var_samp_fields'] - export const isplayer_stats_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_stats_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_stats_var_samp_fields"') - return player_stats_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_stats_variance_fields_possibleTypes: string[] = ['player_stats_variance_fields'] - export const isplayer_stats_variance_fields = (obj?: { __typename?: any } | null): obj is player_stats_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_stats_variance_fields"') - return player_stats_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_steam_bot_friend_possibleTypes: string[] = ['player_steam_bot_friend'] - export const isplayer_steam_bot_friend = (obj?: { __typename?: any } | null): obj is player_steam_bot_friend => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_bot_friend"') - return player_steam_bot_friend_possibleTypes.includes(obj.__typename) - } - - - - const player_steam_bot_friend_aggregate_possibleTypes: string[] = ['player_steam_bot_friend_aggregate'] - export const isplayer_steam_bot_friend_aggregate = (obj?: { __typename?: any } | null): obj is player_steam_bot_friend_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_bot_friend_aggregate"') - return player_steam_bot_friend_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const player_steam_bot_friend_aggregate_fields_possibleTypes: string[] = ['player_steam_bot_friend_aggregate_fields'] - export const isplayer_steam_bot_friend_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_steam_bot_friend_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_bot_friend_aggregate_fields"') - return player_steam_bot_friend_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_steam_bot_friend_avg_fields_possibleTypes: string[] = ['player_steam_bot_friend_avg_fields'] - export const isplayer_steam_bot_friend_avg_fields = (obj?: { __typename?: any } | null): obj is player_steam_bot_friend_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_bot_friend_avg_fields"') - return player_steam_bot_friend_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_steam_bot_friend_max_fields_possibleTypes: string[] = ['player_steam_bot_friend_max_fields'] - export const isplayer_steam_bot_friend_max_fields = (obj?: { __typename?: any } | null): obj is player_steam_bot_friend_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_bot_friend_max_fields"') - return player_steam_bot_friend_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_steam_bot_friend_min_fields_possibleTypes: string[] = ['player_steam_bot_friend_min_fields'] - export const isplayer_steam_bot_friend_min_fields = (obj?: { __typename?: any } | null): obj is player_steam_bot_friend_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_bot_friend_min_fields"') - return player_steam_bot_friend_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_steam_bot_friend_mutation_response_possibleTypes: string[] = ['player_steam_bot_friend_mutation_response'] - export const isplayer_steam_bot_friend_mutation_response = (obj?: { __typename?: any } | null): obj is player_steam_bot_friend_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_bot_friend_mutation_response"') - return player_steam_bot_friend_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const player_steam_bot_friend_stddev_fields_possibleTypes: string[] = ['player_steam_bot_friend_stddev_fields'] - export const isplayer_steam_bot_friend_stddev_fields = (obj?: { __typename?: any } | null): obj is player_steam_bot_friend_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_bot_friend_stddev_fields"') - return player_steam_bot_friend_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_steam_bot_friend_stddev_pop_fields_possibleTypes: string[] = ['player_steam_bot_friend_stddev_pop_fields'] - export const isplayer_steam_bot_friend_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_steam_bot_friend_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_bot_friend_stddev_pop_fields"') - return player_steam_bot_friend_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_steam_bot_friend_stddev_samp_fields_possibleTypes: string[] = ['player_steam_bot_friend_stddev_samp_fields'] - export const isplayer_steam_bot_friend_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_steam_bot_friend_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_bot_friend_stddev_samp_fields"') - return player_steam_bot_friend_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_steam_bot_friend_sum_fields_possibleTypes: string[] = ['player_steam_bot_friend_sum_fields'] - export const isplayer_steam_bot_friend_sum_fields = (obj?: { __typename?: any } | null): obj is player_steam_bot_friend_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_bot_friend_sum_fields"') - return player_steam_bot_friend_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_steam_bot_friend_var_pop_fields_possibleTypes: string[] = ['player_steam_bot_friend_var_pop_fields'] - export const isplayer_steam_bot_friend_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_steam_bot_friend_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_bot_friend_var_pop_fields"') - return player_steam_bot_friend_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_steam_bot_friend_var_samp_fields_possibleTypes: string[] = ['player_steam_bot_friend_var_samp_fields'] - export const isplayer_steam_bot_friend_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_steam_bot_friend_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_bot_friend_var_samp_fields"') - return player_steam_bot_friend_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_steam_bot_friend_variance_fields_possibleTypes: string[] = ['player_steam_bot_friend_variance_fields'] - export const isplayer_steam_bot_friend_variance_fields = (obj?: { __typename?: any } | null): obj is player_steam_bot_friend_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_bot_friend_variance_fields"') - return player_steam_bot_friend_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_steam_match_auth_possibleTypes: string[] = ['player_steam_match_auth'] - export const isplayer_steam_match_auth = (obj?: { __typename?: any } | null): obj is player_steam_match_auth => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_match_auth"') - return player_steam_match_auth_possibleTypes.includes(obj.__typename) - } - - - - const player_steam_match_auth_aggregate_possibleTypes: string[] = ['player_steam_match_auth_aggregate'] - export const isplayer_steam_match_auth_aggregate = (obj?: { __typename?: any } | null): obj is player_steam_match_auth_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_match_auth_aggregate"') - return player_steam_match_auth_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const player_steam_match_auth_aggregate_fields_possibleTypes: string[] = ['player_steam_match_auth_aggregate_fields'] - export const isplayer_steam_match_auth_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_steam_match_auth_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_match_auth_aggregate_fields"') - return player_steam_match_auth_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_steam_match_auth_avg_fields_possibleTypes: string[] = ['player_steam_match_auth_avg_fields'] - export const isplayer_steam_match_auth_avg_fields = (obj?: { __typename?: any } | null): obj is player_steam_match_auth_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_match_auth_avg_fields"') - return player_steam_match_auth_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_steam_match_auth_max_fields_possibleTypes: string[] = ['player_steam_match_auth_max_fields'] - export const isplayer_steam_match_auth_max_fields = (obj?: { __typename?: any } | null): obj is player_steam_match_auth_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_match_auth_max_fields"') - return player_steam_match_auth_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_steam_match_auth_min_fields_possibleTypes: string[] = ['player_steam_match_auth_min_fields'] - export const isplayer_steam_match_auth_min_fields = (obj?: { __typename?: any } | null): obj is player_steam_match_auth_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_match_auth_min_fields"') - return player_steam_match_auth_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_steam_match_auth_mutation_response_possibleTypes: string[] = ['player_steam_match_auth_mutation_response'] - export const isplayer_steam_match_auth_mutation_response = (obj?: { __typename?: any } | null): obj is player_steam_match_auth_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_match_auth_mutation_response"') - return player_steam_match_auth_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const player_steam_match_auth_stddev_fields_possibleTypes: string[] = ['player_steam_match_auth_stddev_fields'] - export const isplayer_steam_match_auth_stddev_fields = (obj?: { __typename?: any } | null): obj is player_steam_match_auth_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_match_auth_stddev_fields"') - return player_steam_match_auth_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_steam_match_auth_stddev_pop_fields_possibleTypes: string[] = ['player_steam_match_auth_stddev_pop_fields'] - export const isplayer_steam_match_auth_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_steam_match_auth_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_match_auth_stddev_pop_fields"') - return player_steam_match_auth_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_steam_match_auth_stddev_samp_fields_possibleTypes: string[] = ['player_steam_match_auth_stddev_samp_fields'] - export const isplayer_steam_match_auth_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_steam_match_auth_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_match_auth_stddev_samp_fields"') - return player_steam_match_auth_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_steam_match_auth_sum_fields_possibleTypes: string[] = ['player_steam_match_auth_sum_fields'] - export const isplayer_steam_match_auth_sum_fields = (obj?: { __typename?: any } | null): obj is player_steam_match_auth_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_match_auth_sum_fields"') - return player_steam_match_auth_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_steam_match_auth_var_pop_fields_possibleTypes: string[] = ['player_steam_match_auth_var_pop_fields'] - export const isplayer_steam_match_auth_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_steam_match_auth_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_match_auth_var_pop_fields"') - return player_steam_match_auth_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_steam_match_auth_var_samp_fields_possibleTypes: string[] = ['player_steam_match_auth_var_samp_fields'] - export const isplayer_steam_match_auth_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_steam_match_auth_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_match_auth_var_samp_fields"') - return player_steam_match_auth_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_steam_match_auth_variance_fields_possibleTypes: string[] = ['player_steam_match_auth_variance_fields'] - export const isplayer_steam_match_auth_variance_fields = (obj?: { __typename?: any } | null): obj is player_steam_match_auth_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_match_auth_variance_fields"') - return player_steam_match_auth_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_unused_utility_possibleTypes: string[] = ['player_unused_utility'] - export const isplayer_unused_utility = (obj?: { __typename?: any } | null): obj is player_unused_utility => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_unused_utility"') - return player_unused_utility_possibleTypes.includes(obj.__typename) - } - - - - const player_unused_utility_aggregate_possibleTypes: string[] = ['player_unused_utility_aggregate'] - export const isplayer_unused_utility_aggregate = (obj?: { __typename?: any } | null): obj is player_unused_utility_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_unused_utility_aggregate"') - return player_unused_utility_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const player_unused_utility_aggregate_fields_possibleTypes: string[] = ['player_unused_utility_aggregate_fields'] - export const isplayer_unused_utility_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_unused_utility_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_unused_utility_aggregate_fields"') - return player_unused_utility_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_unused_utility_avg_fields_possibleTypes: string[] = ['player_unused_utility_avg_fields'] - export const isplayer_unused_utility_avg_fields = (obj?: { __typename?: any } | null): obj is player_unused_utility_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_unused_utility_avg_fields"') - return player_unused_utility_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_unused_utility_max_fields_possibleTypes: string[] = ['player_unused_utility_max_fields'] - export const isplayer_unused_utility_max_fields = (obj?: { __typename?: any } | null): obj is player_unused_utility_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_unused_utility_max_fields"') - return player_unused_utility_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_unused_utility_min_fields_possibleTypes: string[] = ['player_unused_utility_min_fields'] - export const isplayer_unused_utility_min_fields = (obj?: { __typename?: any } | null): obj is player_unused_utility_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_unused_utility_min_fields"') - return player_unused_utility_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_unused_utility_mutation_response_possibleTypes: string[] = ['player_unused_utility_mutation_response'] - export const isplayer_unused_utility_mutation_response = (obj?: { __typename?: any } | null): obj is player_unused_utility_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_unused_utility_mutation_response"') - return player_unused_utility_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const player_unused_utility_stddev_fields_possibleTypes: string[] = ['player_unused_utility_stddev_fields'] - export const isplayer_unused_utility_stddev_fields = (obj?: { __typename?: any } | null): obj is player_unused_utility_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_unused_utility_stddev_fields"') - return player_unused_utility_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_unused_utility_stddev_pop_fields_possibleTypes: string[] = ['player_unused_utility_stddev_pop_fields'] - export const isplayer_unused_utility_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_unused_utility_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_unused_utility_stddev_pop_fields"') - return player_unused_utility_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_unused_utility_stddev_samp_fields_possibleTypes: string[] = ['player_unused_utility_stddev_samp_fields'] - export const isplayer_unused_utility_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_unused_utility_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_unused_utility_stddev_samp_fields"') - return player_unused_utility_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_unused_utility_sum_fields_possibleTypes: string[] = ['player_unused_utility_sum_fields'] - export const isplayer_unused_utility_sum_fields = (obj?: { __typename?: any } | null): obj is player_unused_utility_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_unused_utility_sum_fields"') - return player_unused_utility_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_unused_utility_var_pop_fields_possibleTypes: string[] = ['player_unused_utility_var_pop_fields'] - export const isplayer_unused_utility_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_unused_utility_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_unused_utility_var_pop_fields"') - return player_unused_utility_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_unused_utility_var_samp_fields_possibleTypes: string[] = ['player_unused_utility_var_samp_fields'] - export const isplayer_unused_utility_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_unused_utility_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_unused_utility_var_samp_fields"') - return player_unused_utility_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_unused_utility_variance_fields_possibleTypes: string[] = ['player_unused_utility_variance_fields'] - export const isplayer_unused_utility_variance_fields = (obj?: { __typename?: any } | null): obj is player_unused_utility_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_unused_utility_variance_fields"') - return player_unused_utility_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_utility_possibleTypes: string[] = ['player_utility'] - export const isplayer_utility = (obj?: { __typename?: any } | null): obj is player_utility => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_utility"') - return player_utility_possibleTypes.includes(obj.__typename) - } - - - - const player_utility_aggregate_possibleTypes: string[] = ['player_utility_aggregate'] - export const isplayer_utility_aggregate = (obj?: { __typename?: any } | null): obj is player_utility_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_utility_aggregate"') - return player_utility_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const player_utility_aggregate_fields_possibleTypes: string[] = ['player_utility_aggregate_fields'] - export const isplayer_utility_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_utility_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_utility_aggregate_fields"') - return player_utility_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_utility_avg_fields_possibleTypes: string[] = ['player_utility_avg_fields'] - export const isplayer_utility_avg_fields = (obj?: { __typename?: any } | null): obj is player_utility_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_utility_avg_fields"') - return player_utility_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_utility_max_fields_possibleTypes: string[] = ['player_utility_max_fields'] - export const isplayer_utility_max_fields = (obj?: { __typename?: any } | null): obj is player_utility_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_utility_max_fields"') - return player_utility_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_utility_min_fields_possibleTypes: string[] = ['player_utility_min_fields'] - export const isplayer_utility_min_fields = (obj?: { __typename?: any } | null): obj is player_utility_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_utility_min_fields"') - return player_utility_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_utility_mutation_response_possibleTypes: string[] = ['player_utility_mutation_response'] - export const isplayer_utility_mutation_response = (obj?: { __typename?: any } | null): obj is player_utility_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_utility_mutation_response"') - return player_utility_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const player_utility_stddev_fields_possibleTypes: string[] = ['player_utility_stddev_fields'] - export const isplayer_utility_stddev_fields = (obj?: { __typename?: any } | null): obj is player_utility_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_utility_stddev_fields"') - return player_utility_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_utility_stddev_pop_fields_possibleTypes: string[] = ['player_utility_stddev_pop_fields'] - export const isplayer_utility_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_utility_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_utility_stddev_pop_fields"') - return player_utility_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_utility_stddev_samp_fields_possibleTypes: string[] = ['player_utility_stddev_samp_fields'] - export const isplayer_utility_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_utility_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_utility_stddev_samp_fields"') - return player_utility_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_utility_sum_fields_possibleTypes: string[] = ['player_utility_sum_fields'] - export const isplayer_utility_sum_fields = (obj?: { __typename?: any } | null): obj is player_utility_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_utility_sum_fields"') - return player_utility_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_utility_var_pop_fields_possibleTypes: string[] = ['player_utility_var_pop_fields'] - export const isplayer_utility_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_utility_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_utility_var_pop_fields"') - return player_utility_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_utility_var_samp_fields_possibleTypes: string[] = ['player_utility_var_samp_fields'] - export const isplayer_utility_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_utility_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_utility_var_samp_fields"') - return player_utility_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_utility_variance_fields_possibleTypes: string[] = ['player_utility_variance_fields'] - export const isplayer_utility_variance_fields = (obj?: { __typename?: any } | null): obj is player_utility_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_utility_variance_fields"') - return player_utility_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_weapon_stats_v_possibleTypes: string[] = ['player_weapon_stats_v'] - export const isplayer_weapon_stats_v = (obj?: { __typename?: any } | null): obj is player_weapon_stats_v => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_weapon_stats_v"') - return player_weapon_stats_v_possibleTypes.includes(obj.__typename) - } - - - - const player_weapon_stats_v_aggregate_possibleTypes: string[] = ['player_weapon_stats_v_aggregate'] - export const isplayer_weapon_stats_v_aggregate = (obj?: { __typename?: any } | null): obj is player_weapon_stats_v_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_weapon_stats_v_aggregate"') - return player_weapon_stats_v_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const player_weapon_stats_v_aggregate_fields_possibleTypes: string[] = ['player_weapon_stats_v_aggregate_fields'] - export const isplayer_weapon_stats_v_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_weapon_stats_v_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_weapon_stats_v_aggregate_fields"') - return player_weapon_stats_v_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_weapon_stats_v_avg_fields_possibleTypes: string[] = ['player_weapon_stats_v_avg_fields'] - export const isplayer_weapon_stats_v_avg_fields = (obj?: { __typename?: any } | null): obj is player_weapon_stats_v_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_weapon_stats_v_avg_fields"') - return player_weapon_stats_v_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_weapon_stats_v_max_fields_possibleTypes: string[] = ['player_weapon_stats_v_max_fields'] - export const isplayer_weapon_stats_v_max_fields = (obj?: { __typename?: any } | null): obj is player_weapon_stats_v_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_weapon_stats_v_max_fields"') - return player_weapon_stats_v_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_weapon_stats_v_min_fields_possibleTypes: string[] = ['player_weapon_stats_v_min_fields'] - export const isplayer_weapon_stats_v_min_fields = (obj?: { __typename?: any } | null): obj is player_weapon_stats_v_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_weapon_stats_v_min_fields"') - return player_weapon_stats_v_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_weapon_stats_v_stddev_fields_possibleTypes: string[] = ['player_weapon_stats_v_stddev_fields'] - export const isplayer_weapon_stats_v_stddev_fields = (obj?: { __typename?: any } | null): obj is player_weapon_stats_v_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_weapon_stats_v_stddev_fields"') - return player_weapon_stats_v_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_weapon_stats_v_stddev_pop_fields_possibleTypes: string[] = ['player_weapon_stats_v_stddev_pop_fields'] - export const isplayer_weapon_stats_v_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_weapon_stats_v_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_weapon_stats_v_stddev_pop_fields"') - return player_weapon_stats_v_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_weapon_stats_v_stddev_samp_fields_possibleTypes: string[] = ['player_weapon_stats_v_stddev_samp_fields'] - export const isplayer_weapon_stats_v_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_weapon_stats_v_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_weapon_stats_v_stddev_samp_fields"') - return player_weapon_stats_v_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_weapon_stats_v_sum_fields_possibleTypes: string[] = ['player_weapon_stats_v_sum_fields'] - export const isplayer_weapon_stats_v_sum_fields = (obj?: { __typename?: any } | null): obj is player_weapon_stats_v_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_weapon_stats_v_sum_fields"') - return player_weapon_stats_v_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_weapon_stats_v_var_pop_fields_possibleTypes: string[] = ['player_weapon_stats_v_var_pop_fields'] - export const isplayer_weapon_stats_v_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_weapon_stats_v_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_weapon_stats_v_var_pop_fields"') - return player_weapon_stats_v_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_weapon_stats_v_var_samp_fields_possibleTypes: string[] = ['player_weapon_stats_v_var_samp_fields'] - export const isplayer_weapon_stats_v_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_weapon_stats_v_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_weapon_stats_v_var_samp_fields"') - return player_weapon_stats_v_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const player_weapon_stats_v_variance_fields_possibleTypes: string[] = ['player_weapon_stats_v_variance_fields'] - export const isplayer_weapon_stats_v_variance_fields = (obj?: { __typename?: any } | null): obj is player_weapon_stats_v_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_weapon_stats_v_variance_fields"') - return player_weapon_stats_v_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const players_possibleTypes: string[] = ['players'] - export const isplayers = (obj?: { __typename?: any } | null): obj is players => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayers"') - return players_possibleTypes.includes(obj.__typename) - } - - - - const players_aggregate_possibleTypes: string[] = ['players_aggregate'] - export const isplayers_aggregate = (obj?: { __typename?: any } | null): obj is players_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayers_aggregate"') - return players_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const players_aggregate_fields_possibleTypes: string[] = ['players_aggregate_fields'] - export const isplayers_aggregate_fields = (obj?: { __typename?: any } | null): obj is players_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayers_aggregate_fields"') - return players_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const players_avg_fields_possibleTypes: string[] = ['players_avg_fields'] - export const isplayers_avg_fields = (obj?: { __typename?: any } | null): obj is players_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayers_avg_fields"') - return players_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const players_max_fields_possibleTypes: string[] = ['players_max_fields'] - export const isplayers_max_fields = (obj?: { __typename?: any } | null): obj is players_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayers_max_fields"') - return players_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const players_min_fields_possibleTypes: string[] = ['players_min_fields'] - export const isplayers_min_fields = (obj?: { __typename?: any } | null): obj is players_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayers_min_fields"') - return players_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const players_mutation_response_possibleTypes: string[] = ['players_mutation_response'] - export const isplayers_mutation_response = (obj?: { __typename?: any } | null): obj is players_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayers_mutation_response"') - return players_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const players_stddev_fields_possibleTypes: string[] = ['players_stddev_fields'] - export const isplayers_stddev_fields = (obj?: { __typename?: any } | null): obj is players_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayers_stddev_fields"') - return players_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const players_stddev_pop_fields_possibleTypes: string[] = ['players_stddev_pop_fields'] - export const isplayers_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is players_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayers_stddev_pop_fields"') - return players_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const players_stddev_samp_fields_possibleTypes: string[] = ['players_stddev_samp_fields'] - export const isplayers_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is players_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayers_stddev_samp_fields"') - return players_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const players_sum_fields_possibleTypes: string[] = ['players_sum_fields'] - export const isplayers_sum_fields = (obj?: { __typename?: any } | null): obj is players_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayers_sum_fields"') - return players_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const players_var_pop_fields_possibleTypes: string[] = ['players_var_pop_fields'] - export const isplayers_var_pop_fields = (obj?: { __typename?: any } | null): obj is players_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayers_var_pop_fields"') - return players_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const players_var_samp_fields_possibleTypes: string[] = ['players_var_samp_fields'] - export const isplayers_var_samp_fields = (obj?: { __typename?: any } | null): obj is players_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayers_var_samp_fields"') - return players_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const players_variance_fields_possibleTypes: string[] = ['players_variance_fields'] - export const isplayers_variance_fields = (obj?: { __typename?: any } | null): obj is players_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplayers_variance_fields"') - return players_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const plugin_versions_possibleTypes: string[] = ['plugin_versions'] - export const isplugin_versions = (obj?: { __typename?: any } | null): obj is plugin_versions => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplugin_versions"') - return plugin_versions_possibleTypes.includes(obj.__typename) - } - - - - const plugin_versions_aggregate_possibleTypes: string[] = ['plugin_versions_aggregate'] - export const isplugin_versions_aggregate = (obj?: { __typename?: any } | null): obj is plugin_versions_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplugin_versions_aggregate"') - return plugin_versions_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const plugin_versions_aggregate_fields_possibleTypes: string[] = ['plugin_versions_aggregate_fields'] - export const isplugin_versions_aggregate_fields = (obj?: { __typename?: any } | null): obj is plugin_versions_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplugin_versions_aggregate_fields"') - return plugin_versions_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const plugin_versions_avg_fields_possibleTypes: string[] = ['plugin_versions_avg_fields'] - export const isplugin_versions_avg_fields = (obj?: { __typename?: any } | null): obj is plugin_versions_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplugin_versions_avg_fields"') - return plugin_versions_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const plugin_versions_max_fields_possibleTypes: string[] = ['plugin_versions_max_fields'] - export const isplugin_versions_max_fields = (obj?: { __typename?: any } | null): obj is plugin_versions_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplugin_versions_max_fields"') - return plugin_versions_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const plugin_versions_min_fields_possibleTypes: string[] = ['plugin_versions_min_fields'] - export const isplugin_versions_min_fields = (obj?: { __typename?: any } | null): obj is plugin_versions_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplugin_versions_min_fields"') - return plugin_versions_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const plugin_versions_mutation_response_possibleTypes: string[] = ['plugin_versions_mutation_response'] - export const isplugin_versions_mutation_response = (obj?: { __typename?: any } | null): obj is plugin_versions_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplugin_versions_mutation_response"') - return plugin_versions_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const plugin_versions_stddev_fields_possibleTypes: string[] = ['plugin_versions_stddev_fields'] - export const isplugin_versions_stddev_fields = (obj?: { __typename?: any } | null): obj is plugin_versions_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplugin_versions_stddev_fields"') - return plugin_versions_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const plugin_versions_stddev_pop_fields_possibleTypes: string[] = ['plugin_versions_stddev_pop_fields'] - export const isplugin_versions_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is plugin_versions_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplugin_versions_stddev_pop_fields"') - return plugin_versions_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const plugin_versions_stddev_samp_fields_possibleTypes: string[] = ['plugin_versions_stddev_samp_fields'] - export const isplugin_versions_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is plugin_versions_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplugin_versions_stddev_samp_fields"') - return plugin_versions_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const plugin_versions_sum_fields_possibleTypes: string[] = ['plugin_versions_sum_fields'] - export const isplugin_versions_sum_fields = (obj?: { __typename?: any } | null): obj is plugin_versions_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplugin_versions_sum_fields"') - return plugin_versions_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const plugin_versions_var_pop_fields_possibleTypes: string[] = ['plugin_versions_var_pop_fields'] - export const isplugin_versions_var_pop_fields = (obj?: { __typename?: any } | null): obj is plugin_versions_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplugin_versions_var_pop_fields"') - return plugin_versions_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const plugin_versions_var_samp_fields_possibleTypes: string[] = ['plugin_versions_var_samp_fields'] - export const isplugin_versions_var_samp_fields = (obj?: { __typename?: any } | null): obj is plugin_versions_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplugin_versions_var_samp_fields"') - return plugin_versions_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const plugin_versions_variance_fields_possibleTypes: string[] = ['plugin_versions_variance_fields'] - export const isplugin_versions_variance_fields = (obj?: { __typename?: any } | null): obj is plugin_versions_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isplugin_versions_variance_fields"') - return plugin_versions_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const push_subscriptions_possibleTypes: string[] = ['push_subscriptions'] - export const ispush_subscriptions = (obj?: { __typename?: any } | null): obj is push_subscriptions => { - if (!obj?.__typename) throw new Error('__typename is missing in "ispush_subscriptions"') - return push_subscriptions_possibleTypes.includes(obj.__typename) - } - - - - const push_subscriptions_aggregate_possibleTypes: string[] = ['push_subscriptions_aggregate'] - export const ispush_subscriptions_aggregate = (obj?: { __typename?: any } | null): obj is push_subscriptions_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ispush_subscriptions_aggregate"') - return push_subscriptions_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const push_subscriptions_aggregate_fields_possibleTypes: string[] = ['push_subscriptions_aggregate_fields'] - export const ispush_subscriptions_aggregate_fields = (obj?: { __typename?: any } | null): obj is push_subscriptions_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ispush_subscriptions_aggregate_fields"') - return push_subscriptions_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const push_subscriptions_avg_fields_possibleTypes: string[] = ['push_subscriptions_avg_fields'] - export const ispush_subscriptions_avg_fields = (obj?: { __typename?: any } | null): obj is push_subscriptions_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ispush_subscriptions_avg_fields"') - return push_subscriptions_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const push_subscriptions_max_fields_possibleTypes: string[] = ['push_subscriptions_max_fields'] - export const ispush_subscriptions_max_fields = (obj?: { __typename?: any } | null): obj is push_subscriptions_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ispush_subscriptions_max_fields"') - return push_subscriptions_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const push_subscriptions_min_fields_possibleTypes: string[] = ['push_subscriptions_min_fields'] - export const ispush_subscriptions_min_fields = (obj?: { __typename?: any } | null): obj is push_subscriptions_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ispush_subscriptions_min_fields"') - return push_subscriptions_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const push_subscriptions_mutation_response_possibleTypes: string[] = ['push_subscriptions_mutation_response'] - export const ispush_subscriptions_mutation_response = (obj?: { __typename?: any } | null): obj is push_subscriptions_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ispush_subscriptions_mutation_response"') - return push_subscriptions_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const push_subscriptions_stddev_fields_possibleTypes: string[] = ['push_subscriptions_stddev_fields'] - export const ispush_subscriptions_stddev_fields = (obj?: { __typename?: any } | null): obj is push_subscriptions_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ispush_subscriptions_stddev_fields"') - return push_subscriptions_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const push_subscriptions_stddev_pop_fields_possibleTypes: string[] = ['push_subscriptions_stddev_pop_fields'] - export const ispush_subscriptions_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is push_subscriptions_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ispush_subscriptions_stddev_pop_fields"') - return push_subscriptions_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const push_subscriptions_stddev_samp_fields_possibleTypes: string[] = ['push_subscriptions_stddev_samp_fields'] - export const ispush_subscriptions_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is push_subscriptions_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ispush_subscriptions_stddev_samp_fields"') - return push_subscriptions_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const push_subscriptions_sum_fields_possibleTypes: string[] = ['push_subscriptions_sum_fields'] - export const ispush_subscriptions_sum_fields = (obj?: { __typename?: any } | null): obj is push_subscriptions_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ispush_subscriptions_sum_fields"') - return push_subscriptions_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const push_subscriptions_var_pop_fields_possibleTypes: string[] = ['push_subscriptions_var_pop_fields'] - export const ispush_subscriptions_var_pop_fields = (obj?: { __typename?: any } | null): obj is push_subscriptions_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ispush_subscriptions_var_pop_fields"') - return push_subscriptions_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const push_subscriptions_var_samp_fields_possibleTypes: string[] = ['push_subscriptions_var_samp_fields'] - export const ispush_subscriptions_var_samp_fields = (obj?: { __typename?: any } | null): obj is push_subscriptions_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ispush_subscriptions_var_samp_fields"') - return push_subscriptions_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const push_subscriptions_variance_fields_possibleTypes: string[] = ['push_subscriptions_variance_fields'] - export const ispush_subscriptions_variance_fields = (obj?: { __typename?: any } | null): obj is push_subscriptions_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ispush_subscriptions_variance_fields"') - return push_subscriptions_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const query_root_possibleTypes: string[] = ['query_root'] - export const isquery_root = (obj?: { __typename?: any } | null): obj is query_root => { - if (!obj?.__typename) throw new Error('__typename is missing in "isquery_root"') - return query_root_possibleTypes.includes(obj.__typename) - } - - - - const role_permissions_possibleTypes: string[] = ['role_permissions'] - export const isrole_permissions = (obj?: { __typename?: any } | null): obj is role_permissions => { - if (!obj?.__typename) throw new Error('__typename is missing in "isrole_permissions"') - return role_permissions_possibleTypes.includes(obj.__typename) - } - - - - const role_permissions_aggregate_possibleTypes: string[] = ['role_permissions_aggregate'] - export const isrole_permissions_aggregate = (obj?: { __typename?: any } | null): obj is role_permissions_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isrole_permissions_aggregate"') - return role_permissions_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const role_permissions_aggregate_fields_possibleTypes: string[] = ['role_permissions_aggregate_fields'] - export const isrole_permissions_aggregate_fields = (obj?: { __typename?: any } | null): obj is role_permissions_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isrole_permissions_aggregate_fields"') - return role_permissions_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const role_permissions_max_fields_possibleTypes: string[] = ['role_permissions_max_fields'] - export const isrole_permissions_max_fields = (obj?: { __typename?: any } | null): obj is role_permissions_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isrole_permissions_max_fields"') - return role_permissions_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const role_permissions_min_fields_possibleTypes: string[] = ['role_permissions_min_fields'] - export const isrole_permissions_min_fields = (obj?: { __typename?: any } | null): obj is role_permissions_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isrole_permissions_min_fields"') - return role_permissions_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const role_permissions_mutation_response_possibleTypes: string[] = ['role_permissions_mutation_response'] - export const isrole_permissions_mutation_response = (obj?: { __typename?: any } | null): obj is role_permissions_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isrole_permissions_mutation_response"') - return role_permissions_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const seasons_possibleTypes: string[] = ['seasons'] - export const isseasons = (obj?: { __typename?: any } | null): obj is seasons => { - if (!obj?.__typename) throw new Error('__typename is missing in "isseasons"') - return seasons_possibleTypes.includes(obj.__typename) - } - - - - const seasons_aggregate_possibleTypes: string[] = ['seasons_aggregate'] - export const isseasons_aggregate = (obj?: { __typename?: any } | null): obj is seasons_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isseasons_aggregate"') - return seasons_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const seasons_aggregate_fields_possibleTypes: string[] = ['seasons_aggregate_fields'] - export const isseasons_aggregate_fields = (obj?: { __typename?: any } | null): obj is seasons_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isseasons_aggregate_fields"') - return seasons_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const seasons_avg_fields_possibleTypes: string[] = ['seasons_avg_fields'] - export const isseasons_avg_fields = (obj?: { __typename?: any } | null): obj is seasons_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isseasons_avg_fields"') - return seasons_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const seasons_max_fields_possibleTypes: string[] = ['seasons_max_fields'] - export const isseasons_max_fields = (obj?: { __typename?: any } | null): obj is seasons_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isseasons_max_fields"') - return seasons_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const seasons_min_fields_possibleTypes: string[] = ['seasons_min_fields'] - export const isseasons_min_fields = (obj?: { __typename?: any } | null): obj is seasons_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isseasons_min_fields"') - return seasons_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const seasons_mutation_response_possibleTypes: string[] = ['seasons_mutation_response'] - export const isseasons_mutation_response = (obj?: { __typename?: any } | null): obj is seasons_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isseasons_mutation_response"') - return seasons_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const seasons_stddev_fields_possibleTypes: string[] = ['seasons_stddev_fields'] - export const isseasons_stddev_fields = (obj?: { __typename?: any } | null): obj is seasons_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isseasons_stddev_fields"') - return seasons_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const seasons_stddev_pop_fields_possibleTypes: string[] = ['seasons_stddev_pop_fields'] - export const isseasons_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is seasons_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isseasons_stddev_pop_fields"') - return seasons_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const seasons_stddev_samp_fields_possibleTypes: string[] = ['seasons_stddev_samp_fields'] - export const isseasons_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is seasons_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isseasons_stddev_samp_fields"') - return seasons_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const seasons_sum_fields_possibleTypes: string[] = ['seasons_sum_fields'] - export const isseasons_sum_fields = (obj?: { __typename?: any } | null): obj is seasons_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isseasons_sum_fields"') - return seasons_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const seasons_var_pop_fields_possibleTypes: string[] = ['seasons_var_pop_fields'] - export const isseasons_var_pop_fields = (obj?: { __typename?: any } | null): obj is seasons_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isseasons_var_pop_fields"') - return seasons_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const seasons_var_samp_fields_possibleTypes: string[] = ['seasons_var_samp_fields'] - export const isseasons_var_samp_fields = (obj?: { __typename?: any } | null): obj is seasons_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isseasons_var_samp_fields"') - return seasons_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const seasons_variance_fields_possibleTypes: string[] = ['seasons_variance_fields'] - export const isseasons_variance_fields = (obj?: { __typename?: any } | null): obj is seasons_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isseasons_variance_fields"') - return seasons_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const server_regions_possibleTypes: string[] = ['server_regions'] - export const isserver_regions = (obj?: { __typename?: any } | null): obj is server_regions => { - if (!obj?.__typename) throw new Error('__typename is missing in "isserver_regions"') - return server_regions_possibleTypes.includes(obj.__typename) - } - - - - const server_regions_aggregate_possibleTypes: string[] = ['server_regions_aggregate'] - export const isserver_regions_aggregate = (obj?: { __typename?: any } | null): obj is server_regions_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isserver_regions_aggregate"') - return server_regions_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const server_regions_aggregate_fields_possibleTypes: string[] = ['server_regions_aggregate_fields'] - export const isserver_regions_aggregate_fields = (obj?: { __typename?: any } | null): obj is server_regions_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isserver_regions_aggregate_fields"') - return server_regions_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const server_regions_avg_fields_possibleTypes: string[] = ['server_regions_avg_fields'] - export const isserver_regions_avg_fields = (obj?: { __typename?: any } | null): obj is server_regions_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isserver_regions_avg_fields"') - return server_regions_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const server_regions_max_fields_possibleTypes: string[] = ['server_regions_max_fields'] - export const isserver_regions_max_fields = (obj?: { __typename?: any } | null): obj is server_regions_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isserver_regions_max_fields"') - return server_regions_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const server_regions_min_fields_possibleTypes: string[] = ['server_regions_min_fields'] - export const isserver_regions_min_fields = (obj?: { __typename?: any } | null): obj is server_regions_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isserver_regions_min_fields"') - return server_regions_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const server_regions_mutation_response_possibleTypes: string[] = ['server_regions_mutation_response'] - export const isserver_regions_mutation_response = (obj?: { __typename?: any } | null): obj is server_regions_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isserver_regions_mutation_response"') - return server_regions_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const server_regions_stddev_fields_possibleTypes: string[] = ['server_regions_stddev_fields'] - export const isserver_regions_stddev_fields = (obj?: { __typename?: any } | null): obj is server_regions_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isserver_regions_stddev_fields"') - return server_regions_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const server_regions_stddev_pop_fields_possibleTypes: string[] = ['server_regions_stddev_pop_fields'] - export const isserver_regions_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is server_regions_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isserver_regions_stddev_pop_fields"') - return server_regions_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const server_regions_stddev_samp_fields_possibleTypes: string[] = ['server_regions_stddev_samp_fields'] - export const isserver_regions_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is server_regions_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isserver_regions_stddev_samp_fields"') - return server_regions_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const server_regions_sum_fields_possibleTypes: string[] = ['server_regions_sum_fields'] - export const isserver_regions_sum_fields = (obj?: { __typename?: any } | null): obj is server_regions_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isserver_regions_sum_fields"') - return server_regions_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const server_regions_var_pop_fields_possibleTypes: string[] = ['server_regions_var_pop_fields'] - export const isserver_regions_var_pop_fields = (obj?: { __typename?: any } | null): obj is server_regions_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isserver_regions_var_pop_fields"') - return server_regions_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const server_regions_var_samp_fields_possibleTypes: string[] = ['server_regions_var_samp_fields'] - export const isserver_regions_var_samp_fields = (obj?: { __typename?: any } | null): obj is server_regions_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isserver_regions_var_samp_fields"') - return server_regions_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const server_regions_variance_fields_possibleTypes: string[] = ['server_regions_variance_fields'] - export const isserver_regions_variance_fields = (obj?: { __typename?: any } | null): obj is server_regions_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isserver_regions_variance_fields"') - return server_regions_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const servers_possibleTypes: string[] = ['servers'] - export const isservers = (obj?: { __typename?: any } | null): obj is servers => { - if (!obj?.__typename) throw new Error('__typename is missing in "isservers"') - return servers_possibleTypes.includes(obj.__typename) - } - - - - const servers_aggregate_possibleTypes: string[] = ['servers_aggregate'] - export const isservers_aggregate = (obj?: { __typename?: any } | null): obj is servers_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isservers_aggregate"') - return servers_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const servers_aggregate_fields_possibleTypes: string[] = ['servers_aggregate_fields'] - export const isservers_aggregate_fields = (obj?: { __typename?: any } | null): obj is servers_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isservers_aggregate_fields"') - return servers_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const servers_avg_fields_possibleTypes: string[] = ['servers_avg_fields'] - export const isservers_avg_fields = (obj?: { __typename?: any } | null): obj is servers_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isservers_avg_fields"') - return servers_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const servers_max_fields_possibleTypes: string[] = ['servers_max_fields'] - export const isservers_max_fields = (obj?: { __typename?: any } | null): obj is servers_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isservers_max_fields"') - return servers_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const servers_min_fields_possibleTypes: string[] = ['servers_min_fields'] - export const isservers_min_fields = (obj?: { __typename?: any } | null): obj is servers_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isservers_min_fields"') - return servers_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const servers_mutation_response_possibleTypes: string[] = ['servers_mutation_response'] - export const isservers_mutation_response = (obj?: { __typename?: any } | null): obj is servers_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isservers_mutation_response"') - return servers_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const servers_stddev_fields_possibleTypes: string[] = ['servers_stddev_fields'] - export const isservers_stddev_fields = (obj?: { __typename?: any } | null): obj is servers_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isservers_stddev_fields"') - return servers_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const servers_stddev_pop_fields_possibleTypes: string[] = ['servers_stddev_pop_fields'] - export const isservers_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is servers_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isservers_stddev_pop_fields"') - return servers_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const servers_stddev_samp_fields_possibleTypes: string[] = ['servers_stddev_samp_fields'] - export const isservers_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is servers_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isservers_stddev_samp_fields"') - return servers_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const servers_sum_fields_possibleTypes: string[] = ['servers_sum_fields'] - export const isservers_sum_fields = (obj?: { __typename?: any } | null): obj is servers_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isservers_sum_fields"') - return servers_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const servers_var_pop_fields_possibleTypes: string[] = ['servers_var_pop_fields'] - export const isservers_var_pop_fields = (obj?: { __typename?: any } | null): obj is servers_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isservers_var_pop_fields"') - return servers_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const servers_var_samp_fields_possibleTypes: string[] = ['servers_var_samp_fields'] - export const isservers_var_samp_fields = (obj?: { __typename?: any } | null): obj is servers_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isservers_var_samp_fields"') - return servers_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const servers_variance_fields_possibleTypes: string[] = ['servers_variance_fields'] - export const isservers_variance_fields = (obj?: { __typename?: any } | null): obj is servers_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isservers_variance_fields"') - return servers_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const settings_possibleTypes: string[] = ['settings'] - export const issettings = (obj?: { __typename?: any } | null): obj is settings => { - if (!obj?.__typename) throw new Error('__typename is missing in "issettings"') - return settings_possibleTypes.includes(obj.__typename) - } - - - - const settings_aggregate_possibleTypes: string[] = ['settings_aggregate'] - export const issettings_aggregate = (obj?: { __typename?: any } | null): obj is settings_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "issettings_aggregate"') - return settings_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const settings_aggregate_fields_possibleTypes: string[] = ['settings_aggregate_fields'] - export const issettings_aggregate_fields = (obj?: { __typename?: any } | null): obj is settings_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "issettings_aggregate_fields"') - return settings_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const settings_max_fields_possibleTypes: string[] = ['settings_max_fields'] - export const issettings_max_fields = (obj?: { __typename?: any } | null): obj is settings_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "issettings_max_fields"') - return settings_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const settings_min_fields_possibleTypes: string[] = ['settings_min_fields'] - export const issettings_min_fields = (obj?: { __typename?: any } | null): obj is settings_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "issettings_min_fields"') - return settings_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const settings_mutation_response_possibleTypes: string[] = ['settings_mutation_response'] - export const issettings_mutation_response = (obj?: { __typename?: any } | null): obj is settings_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "issettings_mutation_response"') - return settings_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const steam_account_claims_possibleTypes: string[] = ['steam_account_claims'] - export const issteam_account_claims = (obj?: { __typename?: any } | null): obj is steam_account_claims => { - if (!obj?.__typename) throw new Error('__typename is missing in "issteam_account_claims"') - return steam_account_claims_possibleTypes.includes(obj.__typename) - } - - - - const steam_account_claims_aggregate_possibleTypes: string[] = ['steam_account_claims_aggregate'] - export const issteam_account_claims_aggregate = (obj?: { __typename?: any } | null): obj is steam_account_claims_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "issteam_account_claims_aggregate"') - return steam_account_claims_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const steam_account_claims_aggregate_fields_possibleTypes: string[] = ['steam_account_claims_aggregate_fields'] - export const issteam_account_claims_aggregate_fields = (obj?: { __typename?: any } | null): obj is steam_account_claims_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "issteam_account_claims_aggregate_fields"') - return steam_account_claims_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const steam_account_claims_max_fields_possibleTypes: string[] = ['steam_account_claims_max_fields'] - export const issteam_account_claims_max_fields = (obj?: { __typename?: any } | null): obj is steam_account_claims_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "issteam_account_claims_max_fields"') - return steam_account_claims_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const steam_account_claims_min_fields_possibleTypes: string[] = ['steam_account_claims_min_fields'] - export const issteam_account_claims_min_fields = (obj?: { __typename?: any } | null): obj is steam_account_claims_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "issteam_account_claims_min_fields"') - return steam_account_claims_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const steam_account_claims_mutation_response_possibleTypes: string[] = ['steam_account_claims_mutation_response'] - export const issteam_account_claims_mutation_response = (obj?: { __typename?: any } | null): obj is steam_account_claims_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "issteam_account_claims_mutation_response"') - return steam_account_claims_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const steam_accounts_possibleTypes: string[] = ['steam_accounts'] - export const issteam_accounts = (obj?: { __typename?: any } | null): obj is steam_accounts => { - if (!obj?.__typename) throw new Error('__typename is missing in "issteam_accounts"') - return steam_accounts_possibleTypes.includes(obj.__typename) - } - - - - const steam_accounts_aggregate_possibleTypes: string[] = ['steam_accounts_aggregate'] - export const issteam_accounts_aggregate = (obj?: { __typename?: any } | null): obj is steam_accounts_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "issteam_accounts_aggregate"') - return steam_accounts_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const steam_accounts_aggregate_fields_possibleTypes: string[] = ['steam_accounts_aggregate_fields'] - export const issteam_accounts_aggregate_fields = (obj?: { __typename?: any } | null): obj is steam_accounts_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "issteam_accounts_aggregate_fields"') - return steam_accounts_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const steam_accounts_avg_fields_possibleTypes: string[] = ['steam_accounts_avg_fields'] - export const issteam_accounts_avg_fields = (obj?: { __typename?: any } | null): obj is steam_accounts_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "issteam_accounts_avg_fields"') - return steam_accounts_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const steam_accounts_max_fields_possibleTypes: string[] = ['steam_accounts_max_fields'] - export const issteam_accounts_max_fields = (obj?: { __typename?: any } | null): obj is steam_accounts_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "issteam_accounts_max_fields"') - return steam_accounts_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const steam_accounts_min_fields_possibleTypes: string[] = ['steam_accounts_min_fields'] - export const issteam_accounts_min_fields = (obj?: { __typename?: any } | null): obj is steam_accounts_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "issteam_accounts_min_fields"') - return steam_accounts_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const steam_accounts_mutation_response_possibleTypes: string[] = ['steam_accounts_mutation_response'] - export const issteam_accounts_mutation_response = (obj?: { __typename?: any } | null): obj is steam_accounts_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "issteam_accounts_mutation_response"') - return steam_accounts_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const steam_accounts_stddev_fields_possibleTypes: string[] = ['steam_accounts_stddev_fields'] - export const issteam_accounts_stddev_fields = (obj?: { __typename?: any } | null): obj is steam_accounts_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "issteam_accounts_stddev_fields"') - return steam_accounts_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const steam_accounts_stddev_pop_fields_possibleTypes: string[] = ['steam_accounts_stddev_pop_fields'] - export const issteam_accounts_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is steam_accounts_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "issteam_accounts_stddev_pop_fields"') - return steam_accounts_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const steam_accounts_stddev_samp_fields_possibleTypes: string[] = ['steam_accounts_stddev_samp_fields'] - export const issteam_accounts_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is steam_accounts_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "issteam_accounts_stddev_samp_fields"') - return steam_accounts_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const steam_accounts_sum_fields_possibleTypes: string[] = ['steam_accounts_sum_fields'] - export const issteam_accounts_sum_fields = (obj?: { __typename?: any } | null): obj is steam_accounts_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "issteam_accounts_sum_fields"') - return steam_accounts_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const steam_accounts_var_pop_fields_possibleTypes: string[] = ['steam_accounts_var_pop_fields'] - export const issteam_accounts_var_pop_fields = (obj?: { __typename?: any } | null): obj is steam_accounts_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "issteam_accounts_var_pop_fields"') - return steam_accounts_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const steam_accounts_var_samp_fields_possibleTypes: string[] = ['steam_accounts_var_samp_fields'] - export const issteam_accounts_var_samp_fields = (obj?: { __typename?: any } | null): obj is steam_accounts_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "issteam_accounts_var_samp_fields"') - return steam_accounts_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const steam_accounts_variance_fields_possibleTypes: string[] = ['steam_accounts_variance_fields'] - export const issteam_accounts_variance_fields = (obj?: { __typename?: any } | null): obj is steam_accounts_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "issteam_accounts_variance_fields"') - return steam_accounts_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const subscription_root_possibleTypes: string[] = ['subscription_root'] - export const issubscription_root = (obj?: { __typename?: any } | null): obj is subscription_root => { - if (!obj?.__typename) throw new Error('__typename is missing in "issubscription_root"') - return subscription_root_possibleTypes.includes(obj.__typename) - } - - - - const system_alerts_possibleTypes: string[] = ['system_alerts'] - export const issystem_alerts = (obj?: { __typename?: any } | null): obj is system_alerts => { - if (!obj?.__typename) throw new Error('__typename is missing in "issystem_alerts"') - return system_alerts_possibleTypes.includes(obj.__typename) - } - - - - const system_alerts_aggregate_possibleTypes: string[] = ['system_alerts_aggregate'] - export const issystem_alerts_aggregate = (obj?: { __typename?: any } | null): obj is system_alerts_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "issystem_alerts_aggregate"') - return system_alerts_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const system_alerts_aggregate_fields_possibleTypes: string[] = ['system_alerts_aggregate_fields'] - export const issystem_alerts_aggregate_fields = (obj?: { __typename?: any } | null): obj is system_alerts_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "issystem_alerts_aggregate_fields"') - return system_alerts_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const system_alerts_avg_fields_possibleTypes: string[] = ['system_alerts_avg_fields'] - export const issystem_alerts_avg_fields = (obj?: { __typename?: any } | null): obj is system_alerts_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "issystem_alerts_avg_fields"') - return system_alerts_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const system_alerts_max_fields_possibleTypes: string[] = ['system_alerts_max_fields'] - export const issystem_alerts_max_fields = (obj?: { __typename?: any } | null): obj is system_alerts_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "issystem_alerts_max_fields"') - return system_alerts_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const system_alerts_min_fields_possibleTypes: string[] = ['system_alerts_min_fields'] - export const issystem_alerts_min_fields = (obj?: { __typename?: any } | null): obj is system_alerts_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "issystem_alerts_min_fields"') - return system_alerts_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const system_alerts_mutation_response_possibleTypes: string[] = ['system_alerts_mutation_response'] - export const issystem_alerts_mutation_response = (obj?: { __typename?: any } | null): obj is system_alerts_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "issystem_alerts_mutation_response"') - return system_alerts_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const system_alerts_stddev_fields_possibleTypes: string[] = ['system_alerts_stddev_fields'] - export const issystem_alerts_stddev_fields = (obj?: { __typename?: any } | null): obj is system_alerts_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "issystem_alerts_stddev_fields"') - return system_alerts_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const system_alerts_stddev_pop_fields_possibleTypes: string[] = ['system_alerts_stddev_pop_fields'] - export const issystem_alerts_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is system_alerts_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "issystem_alerts_stddev_pop_fields"') - return system_alerts_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const system_alerts_stddev_samp_fields_possibleTypes: string[] = ['system_alerts_stddev_samp_fields'] - export const issystem_alerts_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is system_alerts_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "issystem_alerts_stddev_samp_fields"') - return system_alerts_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const system_alerts_sum_fields_possibleTypes: string[] = ['system_alerts_sum_fields'] - export const issystem_alerts_sum_fields = (obj?: { __typename?: any } | null): obj is system_alerts_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "issystem_alerts_sum_fields"') - return system_alerts_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const system_alerts_var_pop_fields_possibleTypes: string[] = ['system_alerts_var_pop_fields'] - export const issystem_alerts_var_pop_fields = (obj?: { __typename?: any } | null): obj is system_alerts_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "issystem_alerts_var_pop_fields"') - return system_alerts_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const system_alerts_var_samp_fields_possibleTypes: string[] = ['system_alerts_var_samp_fields'] - export const issystem_alerts_var_samp_fields = (obj?: { __typename?: any } | null): obj is system_alerts_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "issystem_alerts_var_samp_fields"') - return system_alerts_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const system_alerts_variance_fields_possibleTypes: string[] = ['system_alerts_variance_fields'] - export const issystem_alerts_variance_fields = (obj?: { __typename?: any } | null): obj is system_alerts_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "issystem_alerts_variance_fields"') - return system_alerts_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_invites_possibleTypes: string[] = ['team_invites'] - export const isteam_invites = (obj?: { __typename?: any } | null): obj is team_invites => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_invites"') - return team_invites_possibleTypes.includes(obj.__typename) - } - - - - const team_invites_aggregate_possibleTypes: string[] = ['team_invites_aggregate'] - export const isteam_invites_aggregate = (obj?: { __typename?: any } | null): obj is team_invites_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_invites_aggregate"') - return team_invites_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const team_invites_aggregate_fields_possibleTypes: string[] = ['team_invites_aggregate_fields'] - export const isteam_invites_aggregate_fields = (obj?: { __typename?: any } | null): obj is team_invites_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_invites_aggregate_fields"') - return team_invites_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_invites_avg_fields_possibleTypes: string[] = ['team_invites_avg_fields'] - export const isteam_invites_avg_fields = (obj?: { __typename?: any } | null): obj is team_invites_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_invites_avg_fields"') - return team_invites_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_invites_max_fields_possibleTypes: string[] = ['team_invites_max_fields'] - export const isteam_invites_max_fields = (obj?: { __typename?: any } | null): obj is team_invites_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_invites_max_fields"') - return team_invites_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_invites_min_fields_possibleTypes: string[] = ['team_invites_min_fields'] - export const isteam_invites_min_fields = (obj?: { __typename?: any } | null): obj is team_invites_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_invites_min_fields"') - return team_invites_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_invites_mutation_response_possibleTypes: string[] = ['team_invites_mutation_response'] - export const isteam_invites_mutation_response = (obj?: { __typename?: any } | null): obj is team_invites_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_invites_mutation_response"') - return team_invites_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const team_invites_stddev_fields_possibleTypes: string[] = ['team_invites_stddev_fields'] - export const isteam_invites_stddev_fields = (obj?: { __typename?: any } | null): obj is team_invites_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_invites_stddev_fields"') - return team_invites_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_invites_stddev_pop_fields_possibleTypes: string[] = ['team_invites_stddev_pop_fields'] - export const isteam_invites_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is team_invites_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_invites_stddev_pop_fields"') - return team_invites_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_invites_stddev_samp_fields_possibleTypes: string[] = ['team_invites_stddev_samp_fields'] - export const isteam_invites_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is team_invites_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_invites_stddev_samp_fields"') - return team_invites_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_invites_sum_fields_possibleTypes: string[] = ['team_invites_sum_fields'] - export const isteam_invites_sum_fields = (obj?: { __typename?: any } | null): obj is team_invites_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_invites_sum_fields"') - return team_invites_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_invites_var_pop_fields_possibleTypes: string[] = ['team_invites_var_pop_fields'] - export const isteam_invites_var_pop_fields = (obj?: { __typename?: any } | null): obj is team_invites_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_invites_var_pop_fields"') - return team_invites_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_invites_var_samp_fields_possibleTypes: string[] = ['team_invites_var_samp_fields'] - export const isteam_invites_var_samp_fields = (obj?: { __typename?: any } | null): obj is team_invites_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_invites_var_samp_fields"') - return team_invites_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_invites_variance_fields_possibleTypes: string[] = ['team_invites_variance_fields'] - export const isteam_invites_variance_fields = (obj?: { __typename?: any } | null): obj is team_invites_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_invites_variance_fields"') - return team_invites_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_roster_possibleTypes: string[] = ['team_roster'] - export const isteam_roster = (obj?: { __typename?: any } | null): obj is team_roster => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_roster"') - return team_roster_possibleTypes.includes(obj.__typename) - } - - - - const team_roster_aggregate_possibleTypes: string[] = ['team_roster_aggregate'] - export const isteam_roster_aggregate = (obj?: { __typename?: any } | null): obj is team_roster_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_roster_aggregate"') - return team_roster_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const team_roster_aggregate_fields_possibleTypes: string[] = ['team_roster_aggregate_fields'] - export const isteam_roster_aggregate_fields = (obj?: { __typename?: any } | null): obj is team_roster_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_roster_aggregate_fields"') - return team_roster_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_roster_avg_fields_possibleTypes: string[] = ['team_roster_avg_fields'] - export const isteam_roster_avg_fields = (obj?: { __typename?: any } | null): obj is team_roster_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_roster_avg_fields"') - return team_roster_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_roster_max_fields_possibleTypes: string[] = ['team_roster_max_fields'] - export const isteam_roster_max_fields = (obj?: { __typename?: any } | null): obj is team_roster_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_roster_max_fields"') - return team_roster_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_roster_min_fields_possibleTypes: string[] = ['team_roster_min_fields'] - export const isteam_roster_min_fields = (obj?: { __typename?: any } | null): obj is team_roster_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_roster_min_fields"') - return team_roster_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_roster_mutation_response_possibleTypes: string[] = ['team_roster_mutation_response'] - export const isteam_roster_mutation_response = (obj?: { __typename?: any } | null): obj is team_roster_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_roster_mutation_response"') - return team_roster_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const team_roster_stddev_fields_possibleTypes: string[] = ['team_roster_stddev_fields'] - export const isteam_roster_stddev_fields = (obj?: { __typename?: any } | null): obj is team_roster_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_roster_stddev_fields"') - return team_roster_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_roster_stddev_pop_fields_possibleTypes: string[] = ['team_roster_stddev_pop_fields'] - export const isteam_roster_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is team_roster_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_roster_stddev_pop_fields"') - return team_roster_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_roster_stddev_samp_fields_possibleTypes: string[] = ['team_roster_stddev_samp_fields'] - export const isteam_roster_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is team_roster_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_roster_stddev_samp_fields"') - return team_roster_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_roster_sum_fields_possibleTypes: string[] = ['team_roster_sum_fields'] - export const isteam_roster_sum_fields = (obj?: { __typename?: any } | null): obj is team_roster_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_roster_sum_fields"') - return team_roster_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_roster_var_pop_fields_possibleTypes: string[] = ['team_roster_var_pop_fields'] - export const isteam_roster_var_pop_fields = (obj?: { __typename?: any } | null): obj is team_roster_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_roster_var_pop_fields"') - return team_roster_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_roster_var_samp_fields_possibleTypes: string[] = ['team_roster_var_samp_fields'] - export const isteam_roster_var_samp_fields = (obj?: { __typename?: any } | null): obj is team_roster_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_roster_var_samp_fields"') - return team_roster_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_roster_variance_fields_possibleTypes: string[] = ['team_roster_variance_fields'] - export const isteam_roster_variance_fields = (obj?: { __typename?: any } | null): obj is team_roster_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_roster_variance_fields"') - return team_roster_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_alerts_possibleTypes: string[] = ['team_scrim_alerts'] - export const isteam_scrim_alerts = (obj?: { __typename?: any } | null): obj is team_scrim_alerts => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_alerts"') - return team_scrim_alerts_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_alerts_aggregate_possibleTypes: string[] = ['team_scrim_alerts_aggregate'] - export const isteam_scrim_alerts_aggregate = (obj?: { __typename?: any } | null): obj is team_scrim_alerts_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_alerts_aggregate"') - return team_scrim_alerts_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_alerts_aggregate_fields_possibleTypes: string[] = ['team_scrim_alerts_aggregate_fields'] - export const isteam_scrim_alerts_aggregate_fields = (obj?: { __typename?: any } | null): obj is team_scrim_alerts_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_alerts_aggregate_fields"') - return team_scrim_alerts_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_alerts_avg_fields_possibleTypes: string[] = ['team_scrim_alerts_avg_fields'] - export const isteam_scrim_alerts_avg_fields = (obj?: { __typename?: any } | null): obj is team_scrim_alerts_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_alerts_avg_fields"') - return team_scrim_alerts_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_alerts_max_fields_possibleTypes: string[] = ['team_scrim_alerts_max_fields'] - export const isteam_scrim_alerts_max_fields = (obj?: { __typename?: any } | null): obj is team_scrim_alerts_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_alerts_max_fields"') - return team_scrim_alerts_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_alerts_min_fields_possibleTypes: string[] = ['team_scrim_alerts_min_fields'] - export const isteam_scrim_alerts_min_fields = (obj?: { __typename?: any } | null): obj is team_scrim_alerts_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_alerts_min_fields"') - return team_scrim_alerts_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_alerts_mutation_response_possibleTypes: string[] = ['team_scrim_alerts_mutation_response'] - export const isteam_scrim_alerts_mutation_response = (obj?: { __typename?: any } | null): obj is team_scrim_alerts_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_alerts_mutation_response"') - return team_scrim_alerts_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_alerts_stddev_fields_possibleTypes: string[] = ['team_scrim_alerts_stddev_fields'] - export const isteam_scrim_alerts_stddev_fields = (obj?: { __typename?: any } | null): obj is team_scrim_alerts_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_alerts_stddev_fields"') - return team_scrim_alerts_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_alerts_stddev_pop_fields_possibleTypes: string[] = ['team_scrim_alerts_stddev_pop_fields'] - export const isteam_scrim_alerts_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is team_scrim_alerts_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_alerts_stddev_pop_fields"') - return team_scrim_alerts_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_alerts_stddev_samp_fields_possibleTypes: string[] = ['team_scrim_alerts_stddev_samp_fields'] - export const isteam_scrim_alerts_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is team_scrim_alerts_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_alerts_stddev_samp_fields"') - return team_scrim_alerts_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_alerts_sum_fields_possibleTypes: string[] = ['team_scrim_alerts_sum_fields'] - export const isteam_scrim_alerts_sum_fields = (obj?: { __typename?: any } | null): obj is team_scrim_alerts_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_alerts_sum_fields"') - return team_scrim_alerts_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_alerts_var_pop_fields_possibleTypes: string[] = ['team_scrim_alerts_var_pop_fields'] - export const isteam_scrim_alerts_var_pop_fields = (obj?: { __typename?: any } | null): obj is team_scrim_alerts_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_alerts_var_pop_fields"') - return team_scrim_alerts_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_alerts_var_samp_fields_possibleTypes: string[] = ['team_scrim_alerts_var_samp_fields'] - export const isteam_scrim_alerts_var_samp_fields = (obj?: { __typename?: any } | null): obj is team_scrim_alerts_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_alerts_var_samp_fields"') - return team_scrim_alerts_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_alerts_variance_fields_possibleTypes: string[] = ['team_scrim_alerts_variance_fields'] - export const isteam_scrim_alerts_variance_fields = (obj?: { __typename?: any } | null): obj is team_scrim_alerts_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_alerts_variance_fields"') - return team_scrim_alerts_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_availability_possibleTypes: string[] = ['team_scrim_availability'] - export const isteam_scrim_availability = (obj?: { __typename?: any } | null): obj is team_scrim_availability => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_availability"') - return team_scrim_availability_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_availability_aggregate_possibleTypes: string[] = ['team_scrim_availability_aggregate'] - export const isteam_scrim_availability_aggregate = (obj?: { __typename?: any } | null): obj is team_scrim_availability_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_availability_aggregate"') - return team_scrim_availability_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_availability_aggregate_fields_possibleTypes: string[] = ['team_scrim_availability_aggregate_fields'] - export const isteam_scrim_availability_aggregate_fields = (obj?: { __typename?: any } | null): obj is team_scrim_availability_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_availability_aggregate_fields"') - return team_scrim_availability_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_availability_max_fields_possibleTypes: string[] = ['team_scrim_availability_max_fields'] - export const isteam_scrim_availability_max_fields = (obj?: { __typename?: any } | null): obj is team_scrim_availability_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_availability_max_fields"') - return team_scrim_availability_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_availability_min_fields_possibleTypes: string[] = ['team_scrim_availability_min_fields'] - export const isteam_scrim_availability_min_fields = (obj?: { __typename?: any } | null): obj is team_scrim_availability_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_availability_min_fields"') - return team_scrim_availability_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_availability_mutation_response_possibleTypes: string[] = ['team_scrim_availability_mutation_response'] - export const isteam_scrim_availability_mutation_response = (obj?: { __typename?: any } | null): obj is team_scrim_availability_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_availability_mutation_response"') - return team_scrim_availability_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_request_proposals_possibleTypes: string[] = ['team_scrim_request_proposals'] - export const isteam_scrim_request_proposals = (obj?: { __typename?: any } | null): obj is team_scrim_request_proposals => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_request_proposals"') - return team_scrim_request_proposals_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_request_proposals_aggregate_possibleTypes: string[] = ['team_scrim_request_proposals_aggregate'] - export const isteam_scrim_request_proposals_aggregate = (obj?: { __typename?: any } | null): obj is team_scrim_request_proposals_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_request_proposals_aggregate"') - return team_scrim_request_proposals_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_request_proposals_aggregate_fields_possibleTypes: string[] = ['team_scrim_request_proposals_aggregate_fields'] - export const isteam_scrim_request_proposals_aggregate_fields = (obj?: { __typename?: any } | null): obj is team_scrim_request_proposals_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_request_proposals_aggregate_fields"') - return team_scrim_request_proposals_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_request_proposals_avg_fields_possibleTypes: string[] = ['team_scrim_request_proposals_avg_fields'] - export const isteam_scrim_request_proposals_avg_fields = (obj?: { __typename?: any } | null): obj is team_scrim_request_proposals_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_request_proposals_avg_fields"') - return team_scrim_request_proposals_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_request_proposals_max_fields_possibleTypes: string[] = ['team_scrim_request_proposals_max_fields'] - export const isteam_scrim_request_proposals_max_fields = (obj?: { __typename?: any } | null): obj is team_scrim_request_proposals_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_request_proposals_max_fields"') - return team_scrim_request_proposals_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_request_proposals_min_fields_possibleTypes: string[] = ['team_scrim_request_proposals_min_fields'] - export const isteam_scrim_request_proposals_min_fields = (obj?: { __typename?: any } | null): obj is team_scrim_request_proposals_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_request_proposals_min_fields"') - return team_scrim_request_proposals_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_request_proposals_mutation_response_possibleTypes: string[] = ['team_scrim_request_proposals_mutation_response'] - export const isteam_scrim_request_proposals_mutation_response = (obj?: { __typename?: any } | null): obj is team_scrim_request_proposals_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_request_proposals_mutation_response"') - return team_scrim_request_proposals_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_request_proposals_stddev_fields_possibleTypes: string[] = ['team_scrim_request_proposals_stddev_fields'] - export const isteam_scrim_request_proposals_stddev_fields = (obj?: { __typename?: any } | null): obj is team_scrim_request_proposals_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_request_proposals_stddev_fields"') - return team_scrim_request_proposals_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_request_proposals_stddev_pop_fields_possibleTypes: string[] = ['team_scrim_request_proposals_stddev_pop_fields'] - export const isteam_scrim_request_proposals_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is team_scrim_request_proposals_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_request_proposals_stddev_pop_fields"') - return team_scrim_request_proposals_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_request_proposals_stddev_samp_fields_possibleTypes: string[] = ['team_scrim_request_proposals_stddev_samp_fields'] - export const isteam_scrim_request_proposals_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is team_scrim_request_proposals_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_request_proposals_stddev_samp_fields"') - return team_scrim_request_proposals_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_request_proposals_sum_fields_possibleTypes: string[] = ['team_scrim_request_proposals_sum_fields'] - export const isteam_scrim_request_proposals_sum_fields = (obj?: { __typename?: any } | null): obj is team_scrim_request_proposals_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_request_proposals_sum_fields"') - return team_scrim_request_proposals_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_request_proposals_var_pop_fields_possibleTypes: string[] = ['team_scrim_request_proposals_var_pop_fields'] - export const isteam_scrim_request_proposals_var_pop_fields = (obj?: { __typename?: any } | null): obj is team_scrim_request_proposals_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_request_proposals_var_pop_fields"') - return team_scrim_request_proposals_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_request_proposals_var_samp_fields_possibleTypes: string[] = ['team_scrim_request_proposals_var_samp_fields'] - export const isteam_scrim_request_proposals_var_samp_fields = (obj?: { __typename?: any } | null): obj is team_scrim_request_proposals_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_request_proposals_var_samp_fields"') - return team_scrim_request_proposals_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_request_proposals_variance_fields_possibleTypes: string[] = ['team_scrim_request_proposals_variance_fields'] - export const isteam_scrim_request_proposals_variance_fields = (obj?: { __typename?: any } | null): obj is team_scrim_request_proposals_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_request_proposals_variance_fields"') - return team_scrim_request_proposals_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_requests_possibleTypes: string[] = ['team_scrim_requests'] - export const isteam_scrim_requests = (obj?: { __typename?: any } | null): obj is team_scrim_requests => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_requests"') - return team_scrim_requests_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_requests_aggregate_possibleTypes: string[] = ['team_scrim_requests_aggregate'] - export const isteam_scrim_requests_aggregate = (obj?: { __typename?: any } | null): obj is team_scrim_requests_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_requests_aggregate"') - return team_scrim_requests_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_requests_aggregate_fields_possibleTypes: string[] = ['team_scrim_requests_aggregate_fields'] - export const isteam_scrim_requests_aggregate_fields = (obj?: { __typename?: any } | null): obj is team_scrim_requests_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_requests_aggregate_fields"') - return team_scrim_requests_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_requests_avg_fields_possibleTypes: string[] = ['team_scrim_requests_avg_fields'] - export const isteam_scrim_requests_avg_fields = (obj?: { __typename?: any } | null): obj is team_scrim_requests_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_requests_avg_fields"') - return team_scrim_requests_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_requests_max_fields_possibleTypes: string[] = ['team_scrim_requests_max_fields'] - export const isteam_scrim_requests_max_fields = (obj?: { __typename?: any } | null): obj is team_scrim_requests_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_requests_max_fields"') - return team_scrim_requests_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_requests_min_fields_possibleTypes: string[] = ['team_scrim_requests_min_fields'] - export const isteam_scrim_requests_min_fields = (obj?: { __typename?: any } | null): obj is team_scrim_requests_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_requests_min_fields"') - return team_scrim_requests_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_requests_mutation_response_possibleTypes: string[] = ['team_scrim_requests_mutation_response'] - export const isteam_scrim_requests_mutation_response = (obj?: { __typename?: any } | null): obj is team_scrim_requests_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_requests_mutation_response"') - return team_scrim_requests_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_requests_stddev_fields_possibleTypes: string[] = ['team_scrim_requests_stddev_fields'] - export const isteam_scrim_requests_stddev_fields = (obj?: { __typename?: any } | null): obj is team_scrim_requests_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_requests_stddev_fields"') - return team_scrim_requests_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_requests_stddev_pop_fields_possibleTypes: string[] = ['team_scrim_requests_stddev_pop_fields'] - export const isteam_scrim_requests_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is team_scrim_requests_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_requests_stddev_pop_fields"') - return team_scrim_requests_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_requests_stddev_samp_fields_possibleTypes: string[] = ['team_scrim_requests_stddev_samp_fields'] - export const isteam_scrim_requests_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is team_scrim_requests_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_requests_stddev_samp_fields"') - return team_scrim_requests_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_requests_sum_fields_possibleTypes: string[] = ['team_scrim_requests_sum_fields'] - export const isteam_scrim_requests_sum_fields = (obj?: { __typename?: any } | null): obj is team_scrim_requests_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_requests_sum_fields"') - return team_scrim_requests_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_requests_var_pop_fields_possibleTypes: string[] = ['team_scrim_requests_var_pop_fields'] - export const isteam_scrim_requests_var_pop_fields = (obj?: { __typename?: any } | null): obj is team_scrim_requests_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_requests_var_pop_fields"') - return team_scrim_requests_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_requests_var_samp_fields_possibleTypes: string[] = ['team_scrim_requests_var_samp_fields'] - export const isteam_scrim_requests_var_samp_fields = (obj?: { __typename?: any } | null): obj is team_scrim_requests_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_requests_var_samp_fields"') - return team_scrim_requests_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_requests_variance_fields_possibleTypes: string[] = ['team_scrim_requests_variance_fields'] - export const isteam_scrim_requests_variance_fields = (obj?: { __typename?: any } | null): obj is team_scrim_requests_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_requests_variance_fields"') - return team_scrim_requests_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_settings_possibleTypes: string[] = ['team_scrim_settings'] - export const isteam_scrim_settings = (obj?: { __typename?: any } | null): obj is team_scrim_settings => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_settings"') - return team_scrim_settings_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_settings_aggregate_possibleTypes: string[] = ['team_scrim_settings_aggregate'] - export const isteam_scrim_settings_aggregate = (obj?: { __typename?: any } | null): obj is team_scrim_settings_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_settings_aggregate"') - return team_scrim_settings_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_settings_aggregate_fields_possibleTypes: string[] = ['team_scrim_settings_aggregate_fields'] - export const isteam_scrim_settings_aggregate_fields = (obj?: { __typename?: any } | null): obj is team_scrim_settings_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_settings_aggregate_fields"') - return team_scrim_settings_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_settings_avg_fields_possibleTypes: string[] = ['team_scrim_settings_avg_fields'] - export const isteam_scrim_settings_avg_fields = (obj?: { __typename?: any } | null): obj is team_scrim_settings_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_settings_avg_fields"') - return team_scrim_settings_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_settings_max_fields_possibleTypes: string[] = ['team_scrim_settings_max_fields'] - export const isteam_scrim_settings_max_fields = (obj?: { __typename?: any } | null): obj is team_scrim_settings_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_settings_max_fields"') - return team_scrim_settings_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_settings_min_fields_possibleTypes: string[] = ['team_scrim_settings_min_fields'] - export const isteam_scrim_settings_min_fields = (obj?: { __typename?: any } | null): obj is team_scrim_settings_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_settings_min_fields"') - return team_scrim_settings_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_settings_mutation_response_possibleTypes: string[] = ['team_scrim_settings_mutation_response'] - export const isteam_scrim_settings_mutation_response = (obj?: { __typename?: any } | null): obj is team_scrim_settings_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_settings_mutation_response"') - return team_scrim_settings_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_settings_stddev_fields_possibleTypes: string[] = ['team_scrim_settings_stddev_fields'] - export const isteam_scrim_settings_stddev_fields = (obj?: { __typename?: any } | null): obj is team_scrim_settings_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_settings_stddev_fields"') - return team_scrim_settings_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_settings_stddev_pop_fields_possibleTypes: string[] = ['team_scrim_settings_stddev_pop_fields'] - export const isteam_scrim_settings_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is team_scrim_settings_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_settings_stddev_pop_fields"') - return team_scrim_settings_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_settings_stddev_samp_fields_possibleTypes: string[] = ['team_scrim_settings_stddev_samp_fields'] - export const isteam_scrim_settings_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is team_scrim_settings_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_settings_stddev_samp_fields"') - return team_scrim_settings_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_settings_sum_fields_possibleTypes: string[] = ['team_scrim_settings_sum_fields'] - export const isteam_scrim_settings_sum_fields = (obj?: { __typename?: any } | null): obj is team_scrim_settings_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_settings_sum_fields"') - return team_scrim_settings_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_settings_var_pop_fields_possibleTypes: string[] = ['team_scrim_settings_var_pop_fields'] - export const isteam_scrim_settings_var_pop_fields = (obj?: { __typename?: any } | null): obj is team_scrim_settings_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_settings_var_pop_fields"') - return team_scrim_settings_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_settings_var_samp_fields_possibleTypes: string[] = ['team_scrim_settings_var_samp_fields'] - export const isteam_scrim_settings_var_samp_fields = (obj?: { __typename?: any } | null): obj is team_scrim_settings_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_settings_var_samp_fields"') - return team_scrim_settings_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_scrim_settings_variance_fields_possibleTypes: string[] = ['team_scrim_settings_variance_fields'] - export const isteam_scrim_settings_variance_fields = (obj?: { __typename?: any } | null): obj is team_scrim_settings_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_settings_variance_fields"') - return team_scrim_settings_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_suggestions_possibleTypes: string[] = ['team_suggestions'] - export const isteam_suggestions = (obj?: { __typename?: any } | null): obj is team_suggestions => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_suggestions"') - return team_suggestions_possibleTypes.includes(obj.__typename) - } - - - - const team_suggestions_aggregate_possibleTypes: string[] = ['team_suggestions_aggregate'] - export const isteam_suggestions_aggregate = (obj?: { __typename?: any } | null): obj is team_suggestions_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_suggestions_aggregate"') - return team_suggestions_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const team_suggestions_aggregate_fields_possibleTypes: string[] = ['team_suggestions_aggregate_fields'] - export const isteam_suggestions_aggregate_fields = (obj?: { __typename?: any } | null): obj is team_suggestions_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_suggestions_aggregate_fields"') - return team_suggestions_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_suggestions_avg_fields_possibleTypes: string[] = ['team_suggestions_avg_fields'] - export const isteam_suggestions_avg_fields = (obj?: { __typename?: any } | null): obj is team_suggestions_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_suggestions_avg_fields"') - return team_suggestions_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_suggestions_max_fields_possibleTypes: string[] = ['team_suggestions_max_fields'] - export const isteam_suggestions_max_fields = (obj?: { __typename?: any } | null): obj is team_suggestions_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_suggestions_max_fields"') - return team_suggestions_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_suggestions_min_fields_possibleTypes: string[] = ['team_suggestions_min_fields'] - export const isteam_suggestions_min_fields = (obj?: { __typename?: any } | null): obj is team_suggestions_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_suggestions_min_fields"') - return team_suggestions_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_suggestions_mutation_response_possibleTypes: string[] = ['team_suggestions_mutation_response'] - export const isteam_suggestions_mutation_response = (obj?: { __typename?: any } | null): obj is team_suggestions_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_suggestions_mutation_response"') - return team_suggestions_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const team_suggestions_stddev_fields_possibleTypes: string[] = ['team_suggestions_stddev_fields'] - export const isteam_suggestions_stddev_fields = (obj?: { __typename?: any } | null): obj is team_suggestions_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_suggestions_stddev_fields"') - return team_suggestions_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_suggestions_stddev_pop_fields_possibleTypes: string[] = ['team_suggestions_stddev_pop_fields'] - export const isteam_suggestions_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is team_suggestions_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_suggestions_stddev_pop_fields"') - return team_suggestions_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_suggestions_stddev_samp_fields_possibleTypes: string[] = ['team_suggestions_stddev_samp_fields'] - export const isteam_suggestions_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is team_suggestions_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_suggestions_stddev_samp_fields"') - return team_suggestions_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_suggestions_sum_fields_possibleTypes: string[] = ['team_suggestions_sum_fields'] - export const isteam_suggestions_sum_fields = (obj?: { __typename?: any } | null): obj is team_suggestions_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_suggestions_sum_fields"') - return team_suggestions_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_suggestions_var_pop_fields_possibleTypes: string[] = ['team_suggestions_var_pop_fields'] - export const isteam_suggestions_var_pop_fields = (obj?: { __typename?: any } | null): obj is team_suggestions_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_suggestions_var_pop_fields"') - return team_suggestions_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_suggestions_var_samp_fields_possibleTypes: string[] = ['team_suggestions_var_samp_fields'] - export const isteam_suggestions_var_samp_fields = (obj?: { __typename?: any } | null): obj is team_suggestions_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_suggestions_var_samp_fields"') - return team_suggestions_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const team_suggestions_variance_fields_possibleTypes: string[] = ['team_suggestions_variance_fields'] - export const isteam_suggestions_variance_fields = (obj?: { __typename?: any } | null): obj is team_suggestions_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteam_suggestions_variance_fields"') - return team_suggestions_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const teams_possibleTypes: string[] = ['teams'] - export const isteams = (obj?: { __typename?: any } | null): obj is teams => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteams"') - return teams_possibleTypes.includes(obj.__typename) - } - - - - const teams_aggregate_possibleTypes: string[] = ['teams_aggregate'] - export const isteams_aggregate = (obj?: { __typename?: any } | null): obj is teams_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteams_aggregate"') - return teams_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const teams_aggregate_fields_possibleTypes: string[] = ['teams_aggregate_fields'] - export const isteams_aggregate_fields = (obj?: { __typename?: any } | null): obj is teams_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteams_aggregate_fields"') - return teams_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const teams_avg_fields_possibleTypes: string[] = ['teams_avg_fields'] - export const isteams_avg_fields = (obj?: { __typename?: any } | null): obj is teams_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteams_avg_fields"') - return teams_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const teams_max_fields_possibleTypes: string[] = ['teams_max_fields'] - export const isteams_max_fields = (obj?: { __typename?: any } | null): obj is teams_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteams_max_fields"') - return teams_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const teams_min_fields_possibleTypes: string[] = ['teams_min_fields'] - export const isteams_min_fields = (obj?: { __typename?: any } | null): obj is teams_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteams_min_fields"') - return teams_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const teams_mutation_response_possibleTypes: string[] = ['teams_mutation_response'] - export const isteams_mutation_response = (obj?: { __typename?: any } | null): obj is teams_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteams_mutation_response"') - return teams_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const teams_stddev_fields_possibleTypes: string[] = ['teams_stddev_fields'] - export const isteams_stddev_fields = (obj?: { __typename?: any } | null): obj is teams_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteams_stddev_fields"') - return teams_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const teams_stddev_pop_fields_possibleTypes: string[] = ['teams_stddev_pop_fields'] - export const isteams_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is teams_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteams_stddev_pop_fields"') - return teams_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const teams_stddev_samp_fields_possibleTypes: string[] = ['teams_stddev_samp_fields'] - export const isteams_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is teams_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteams_stddev_samp_fields"') - return teams_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const teams_sum_fields_possibleTypes: string[] = ['teams_sum_fields'] - export const isteams_sum_fields = (obj?: { __typename?: any } | null): obj is teams_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteams_sum_fields"') - return teams_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const teams_var_pop_fields_possibleTypes: string[] = ['teams_var_pop_fields'] - export const isteams_var_pop_fields = (obj?: { __typename?: any } | null): obj is teams_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteams_var_pop_fields"') - return teams_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const teams_var_samp_fields_possibleTypes: string[] = ['teams_var_samp_fields'] - export const isteams_var_samp_fields = (obj?: { __typename?: any } | null): obj is teams_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteams_var_samp_fields"') - return teams_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const teams_variance_fields_possibleTypes: string[] = ['teams_variance_fields'] - export const isteams_variance_fields = (obj?: { __typename?: any } | null): obj is teams_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isteams_variance_fields"') - return teams_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_awards_possibleTypes: string[] = ['tournament_awards'] - export const istournament_awards = (obj?: { __typename?: any } | null): obj is tournament_awards => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_awards"') - return tournament_awards_possibleTypes.includes(obj.__typename) - } - - - - const tournament_awards_aggregate_possibleTypes: string[] = ['tournament_awards_aggregate'] - export const istournament_awards_aggregate = (obj?: { __typename?: any } | null): obj is tournament_awards_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_awards_aggregate"') - return tournament_awards_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const tournament_awards_aggregate_fields_possibleTypes: string[] = ['tournament_awards_aggregate_fields'] - export const istournament_awards_aggregate_fields = (obj?: { __typename?: any } | null): obj is tournament_awards_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_awards_aggregate_fields"') - return tournament_awards_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_awards_avg_fields_possibleTypes: string[] = ['tournament_awards_avg_fields'] - export const istournament_awards_avg_fields = (obj?: { __typename?: any } | null): obj is tournament_awards_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_awards_avg_fields"') - return tournament_awards_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_awards_max_fields_possibleTypes: string[] = ['tournament_awards_max_fields'] - export const istournament_awards_max_fields = (obj?: { __typename?: any } | null): obj is tournament_awards_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_awards_max_fields"') - return tournament_awards_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_awards_min_fields_possibleTypes: string[] = ['tournament_awards_min_fields'] - export const istournament_awards_min_fields = (obj?: { __typename?: any } | null): obj is tournament_awards_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_awards_min_fields"') - return tournament_awards_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_awards_mutation_response_possibleTypes: string[] = ['tournament_awards_mutation_response'] - export const istournament_awards_mutation_response = (obj?: { __typename?: any } | null): obj is tournament_awards_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_awards_mutation_response"') - return tournament_awards_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const tournament_awards_stddev_fields_possibleTypes: string[] = ['tournament_awards_stddev_fields'] - export const istournament_awards_stddev_fields = (obj?: { __typename?: any } | null): obj is tournament_awards_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_awards_stddev_fields"') - return tournament_awards_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_awards_stddev_pop_fields_possibleTypes: string[] = ['tournament_awards_stddev_pop_fields'] - export const istournament_awards_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_awards_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_awards_stddev_pop_fields"') - return tournament_awards_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_awards_stddev_samp_fields_possibleTypes: string[] = ['tournament_awards_stddev_samp_fields'] - export const istournament_awards_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_awards_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_awards_stddev_samp_fields"') - return tournament_awards_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_awards_sum_fields_possibleTypes: string[] = ['tournament_awards_sum_fields'] - export const istournament_awards_sum_fields = (obj?: { __typename?: any } | null): obj is tournament_awards_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_awards_sum_fields"') - return tournament_awards_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_awards_var_pop_fields_possibleTypes: string[] = ['tournament_awards_var_pop_fields'] - export const istournament_awards_var_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_awards_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_awards_var_pop_fields"') - return tournament_awards_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_awards_var_samp_fields_possibleTypes: string[] = ['tournament_awards_var_samp_fields'] - export const istournament_awards_var_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_awards_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_awards_var_samp_fields"') - return tournament_awards_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_awards_variance_fields_possibleTypes: string[] = ['tournament_awards_variance_fields'] - export const istournament_awards_variance_fields = (obj?: { __typename?: any } | null): obj is tournament_awards_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_awards_variance_fields"') - return tournament_awards_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_brackets_possibleTypes: string[] = ['tournament_brackets'] - export const istournament_brackets = (obj?: { __typename?: any } | null): obj is tournament_brackets => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_brackets"') - return tournament_brackets_possibleTypes.includes(obj.__typename) - } - - - - const tournament_brackets_aggregate_possibleTypes: string[] = ['tournament_brackets_aggregate'] - export const istournament_brackets_aggregate = (obj?: { __typename?: any } | null): obj is tournament_brackets_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_brackets_aggregate"') - return tournament_brackets_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const tournament_brackets_aggregate_fields_possibleTypes: string[] = ['tournament_brackets_aggregate_fields'] - export const istournament_brackets_aggregate_fields = (obj?: { __typename?: any } | null): obj is tournament_brackets_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_brackets_aggregate_fields"') - return tournament_brackets_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_brackets_avg_fields_possibleTypes: string[] = ['tournament_brackets_avg_fields'] - export const istournament_brackets_avg_fields = (obj?: { __typename?: any } | null): obj is tournament_brackets_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_brackets_avg_fields"') - return tournament_brackets_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_brackets_max_fields_possibleTypes: string[] = ['tournament_brackets_max_fields'] - export const istournament_brackets_max_fields = (obj?: { __typename?: any } | null): obj is tournament_brackets_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_brackets_max_fields"') - return tournament_brackets_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_brackets_min_fields_possibleTypes: string[] = ['tournament_brackets_min_fields'] - export const istournament_brackets_min_fields = (obj?: { __typename?: any } | null): obj is tournament_brackets_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_brackets_min_fields"') - return tournament_brackets_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_brackets_mutation_response_possibleTypes: string[] = ['tournament_brackets_mutation_response'] - export const istournament_brackets_mutation_response = (obj?: { __typename?: any } | null): obj is tournament_brackets_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_brackets_mutation_response"') - return tournament_brackets_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const tournament_brackets_stddev_fields_possibleTypes: string[] = ['tournament_brackets_stddev_fields'] - export const istournament_brackets_stddev_fields = (obj?: { __typename?: any } | null): obj is tournament_brackets_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_brackets_stddev_fields"') - return tournament_brackets_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_brackets_stddev_pop_fields_possibleTypes: string[] = ['tournament_brackets_stddev_pop_fields'] - export const istournament_brackets_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_brackets_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_brackets_stddev_pop_fields"') - return tournament_brackets_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_brackets_stddev_samp_fields_possibleTypes: string[] = ['tournament_brackets_stddev_samp_fields'] - export const istournament_brackets_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_brackets_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_brackets_stddev_samp_fields"') - return tournament_brackets_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_brackets_sum_fields_possibleTypes: string[] = ['tournament_brackets_sum_fields'] - export const istournament_brackets_sum_fields = (obj?: { __typename?: any } | null): obj is tournament_brackets_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_brackets_sum_fields"') - return tournament_brackets_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_brackets_var_pop_fields_possibleTypes: string[] = ['tournament_brackets_var_pop_fields'] - export const istournament_brackets_var_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_brackets_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_brackets_var_pop_fields"') - return tournament_brackets_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_brackets_var_samp_fields_possibleTypes: string[] = ['tournament_brackets_var_samp_fields'] - export const istournament_brackets_var_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_brackets_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_brackets_var_samp_fields"') - return tournament_brackets_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_brackets_variance_fields_possibleTypes: string[] = ['tournament_brackets_variance_fields'] - export const istournament_brackets_variance_fields = (obj?: { __typename?: any } | null): obj is tournament_brackets_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_brackets_variance_fields"') - return tournament_brackets_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_categories_possibleTypes: string[] = ['tournament_categories'] - export const istournament_categories = (obj?: { __typename?: any } | null): obj is tournament_categories => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_categories"') - return tournament_categories_possibleTypes.includes(obj.__typename) - } - - - - const tournament_categories_aggregate_possibleTypes: string[] = ['tournament_categories_aggregate'] - export const istournament_categories_aggregate = (obj?: { __typename?: any } | null): obj is tournament_categories_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_categories_aggregate"') - return tournament_categories_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const tournament_categories_aggregate_fields_possibleTypes: string[] = ['tournament_categories_aggregate_fields'] - export const istournament_categories_aggregate_fields = (obj?: { __typename?: any } | null): obj is tournament_categories_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_categories_aggregate_fields"') - return tournament_categories_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_categories_max_fields_possibleTypes: string[] = ['tournament_categories_max_fields'] - export const istournament_categories_max_fields = (obj?: { __typename?: any } | null): obj is tournament_categories_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_categories_max_fields"') - return tournament_categories_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_categories_min_fields_possibleTypes: string[] = ['tournament_categories_min_fields'] - export const istournament_categories_min_fields = (obj?: { __typename?: any } | null): obj is tournament_categories_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_categories_min_fields"') - return tournament_categories_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_categories_mutation_response_possibleTypes: string[] = ['tournament_categories_mutation_response'] - export const istournament_categories_mutation_response = (obj?: { __typename?: any } | null): obj is tournament_categories_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_categories_mutation_response"') - return tournament_categories_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const tournament_free_agents_possibleTypes: string[] = ['tournament_free_agents'] - export const istournament_free_agents = (obj?: { __typename?: any } | null): obj is tournament_free_agents => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_free_agents"') - return tournament_free_agents_possibleTypes.includes(obj.__typename) - } - - - - const tournament_free_agents_aggregate_possibleTypes: string[] = ['tournament_free_agents_aggregate'] - export const istournament_free_agents_aggregate = (obj?: { __typename?: any } | null): obj is tournament_free_agents_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_free_agents_aggregate"') - return tournament_free_agents_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const tournament_free_agents_aggregate_fields_possibleTypes: string[] = ['tournament_free_agents_aggregate_fields'] - export const istournament_free_agents_aggregate_fields = (obj?: { __typename?: any } | null): obj is tournament_free_agents_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_free_agents_aggregate_fields"') - return tournament_free_agents_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_free_agents_avg_fields_possibleTypes: string[] = ['tournament_free_agents_avg_fields'] - export const istournament_free_agents_avg_fields = (obj?: { __typename?: any } | null): obj is tournament_free_agents_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_free_agents_avg_fields"') - return tournament_free_agents_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_free_agents_max_fields_possibleTypes: string[] = ['tournament_free_agents_max_fields'] - export const istournament_free_agents_max_fields = (obj?: { __typename?: any } | null): obj is tournament_free_agents_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_free_agents_max_fields"') - return tournament_free_agents_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_free_agents_min_fields_possibleTypes: string[] = ['tournament_free_agents_min_fields'] - export const istournament_free_agents_min_fields = (obj?: { __typename?: any } | null): obj is tournament_free_agents_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_free_agents_min_fields"') - return tournament_free_agents_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_free_agents_mutation_response_possibleTypes: string[] = ['tournament_free_agents_mutation_response'] - export const istournament_free_agents_mutation_response = (obj?: { __typename?: any } | null): obj is tournament_free_agents_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_free_agents_mutation_response"') - return tournament_free_agents_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const tournament_free_agents_stddev_fields_possibleTypes: string[] = ['tournament_free_agents_stddev_fields'] - export const istournament_free_agents_stddev_fields = (obj?: { __typename?: any } | null): obj is tournament_free_agents_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_free_agents_stddev_fields"') - return tournament_free_agents_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_free_agents_stddev_pop_fields_possibleTypes: string[] = ['tournament_free_agents_stddev_pop_fields'] - export const istournament_free_agents_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_free_agents_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_free_agents_stddev_pop_fields"') - return tournament_free_agents_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_free_agents_stddev_samp_fields_possibleTypes: string[] = ['tournament_free_agents_stddev_samp_fields'] - export const istournament_free_agents_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_free_agents_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_free_agents_stddev_samp_fields"') - return tournament_free_agents_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_free_agents_sum_fields_possibleTypes: string[] = ['tournament_free_agents_sum_fields'] - export const istournament_free_agents_sum_fields = (obj?: { __typename?: any } | null): obj is tournament_free_agents_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_free_agents_sum_fields"') - return tournament_free_agents_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_free_agents_var_pop_fields_possibleTypes: string[] = ['tournament_free_agents_var_pop_fields'] - export const istournament_free_agents_var_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_free_agents_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_free_agents_var_pop_fields"') - return tournament_free_agents_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_free_agents_var_samp_fields_possibleTypes: string[] = ['tournament_free_agents_var_samp_fields'] - export const istournament_free_agents_var_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_free_agents_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_free_agents_var_samp_fields"') - return tournament_free_agents_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_free_agents_variance_fields_possibleTypes: string[] = ['tournament_free_agents_variance_fields'] - export const istournament_free_agents_variance_fields = (obj?: { __typename?: any } | null): obj is tournament_free_agents_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_free_agents_variance_fields"') - return tournament_free_agents_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_invite_code_uses_possibleTypes: string[] = ['tournament_invite_code_uses'] - export const istournament_invite_code_uses = (obj?: { __typename?: any } | null): obj is tournament_invite_code_uses => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_code_uses"') - return tournament_invite_code_uses_possibleTypes.includes(obj.__typename) - } - - - - const tournament_invite_code_uses_aggregate_possibleTypes: string[] = ['tournament_invite_code_uses_aggregate'] - export const istournament_invite_code_uses_aggregate = (obj?: { __typename?: any } | null): obj is tournament_invite_code_uses_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_code_uses_aggregate"') - return tournament_invite_code_uses_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const tournament_invite_code_uses_aggregate_fields_possibleTypes: string[] = ['tournament_invite_code_uses_aggregate_fields'] - export const istournament_invite_code_uses_aggregate_fields = (obj?: { __typename?: any } | null): obj is tournament_invite_code_uses_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_code_uses_aggregate_fields"') - return tournament_invite_code_uses_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_invite_code_uses_avg_fields_possibleTypes: string[] = ['tournament_invite_code_uses_avg_fields'] - export const istournament_invite_code_uses_avg_fields = (obj?: { __typename?: any } | null): obj is tournament_invite_code_uses_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_code_uses_avg_fields"') - return tournament_invite_code_uses_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_invite_code_uses_max_fields_possibleTypes: string[] = ['tournament_invite_code_uses_max_fields'] - export const istournament_invite_code_uses_max_fields = (obj?: { __typename?: any } | null): obj is tournament_invite_code_uses_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_code_uses_max_fields"') - return tournament_invite_code_uses_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_invite_code_uses_min_fields_possibleTypes: string[] = ['tournament_invite_code_uses_min_fields'] - export const istournament_invite_code_uses_min_fields = (obj?: { __typename?: any } | null): obj is tournament_invite_code_uses_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_code_uses_min_fields"') - return tournament_invite_code_uses_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_invite_code_uses_mutation_response_possibleTypes: string[] = ['tournament_invite_code_uses_mutation_response'] - export const istournament_invite_code_uses_mutation_response = (obj?: { __typename?: any } | null): obj is tournament_invite_code_uses_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_code_uses_mutation_response"') - return tournament_invite_code_uses_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const tournament_invite_code_uses_stddev_fields_possibleTypes: string[] = ['tournament_invite_code_uses_stddev_fields'] - export const istournament_invite_code_uses_stddev_fields = (obj?: { __typename?: any } | null): obj is tournament_invite_code_uses_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_code_uses_stddev_fields"') - return tournament_invite_code_uses_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_invite_code_uses_stddev_pop_fields_possibleTypes: string[] = ['tournament_invite_code_uses_stddev_pop_fields'] - export const istournament_invite_code_uses_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_invite_code_uses_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_code_uses_stddev_pop_fields"') - return tournament_invite_code_uses_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_invite_code_uses_stddev_samp_fields_possibleTypes: string[] = ['tournament_invite_code_uses_stddev_samp_fields'] - export const istournament_invite_code_uses_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_invite_code_uses_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_code_uses_stddev_samp_fields"') - return tournament_invite_code_uses_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_invite_code_uses_sum_fields_possibleTypes: string[] = ['tournament_invite_code_uses_sum_fields'] - export const istournament_invite_code_uses_sum_fields = (obj?: { __typename?: any } | null): obj is tournament_invite_code_uses_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_code_uses_sum_fields"') - return tournament_invite_code_uses_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_invite_code_uses_var_pop_fields_possibleTypes: string[] = ['tournament_invite_code_uses_var_pop_fields'] - export const istournament_invite_code_uses_var_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_invite_code_uses_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_code_uses_var_pop_fields"') - return tournament_invite_code_uses_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_invite_code_uses_var_samp_fields_possibleTypes: string[] = ['tournament_invite_code_uses_var_samp_fields'] - export const istournament_invite_code_uses_var_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_invite_code_uses_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_code_uses_var_samp_fields"') - return tournament_invite_code_uses_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_invite_code_uses_variance_fields_possibleTypes: string[] = ['tournament_invite_code_uses_variance_fields'] - export const istournament_invite_code_uses_variance_fields = (obj?: { __typename?: any } | null): obj is tournament_invite_code_uses_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_code_uses_variance_fields"') - return tournament_invite_code_uses_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_invite_codes_possibleTypes: string[] = ['tournament_invite_codes'] - export const istournament_invite_codes = (obj?: { __typename?: any } | null): obj is tournament_invite_codes => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_codes"') - return tournament_invite_codes_possibleTypes.includes(obj.__typename) - } - - - - const tournament_invite_codes_aggregate_possibleTypes: string[] = ['tournament_invite_codes_aggregate'] - export const istournament_invite_codes_aggregate = (obj?: { __typename?: any } | null): obj is tournament_invite_codes_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_codes_aggregate"') - return tournament_invite_codes_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const tournament_invite_codes_aggregate_fields_possibleTypes: string[] = ['tournament_invite_codes_aggregate_fields'] - export const istournament_invite_codes_aggregate_fields = (obj?: { __typename?: any } | null): obj is tournament_invite_codes_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_codes_aggregate_fields"') - return tournament_invite_codes_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_invite_codes_avg_fields_possibleTypes: string[] = ['tournament_invite_codes_avg_fields'] - export const istournament_invite_codes_avg_fields = (obj?: { __typename?: any } | null): obj is tournament_invite_codes_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_codes_avg_fields"') - return tournament_invite_codes_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_invite_codes_max_fields_possibleTypes: string[] = ['tournament_invite_codes_max_fields'] - export const istournament_invite_codes_max_fields = (obj?: { __typename?: any } | null): obj is tournament_invite_codes_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_codes_max_fields"') - return tournament_invite_codes_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_invite_codes_min_fields_possibleTypes: string[] = ['tournament_invite_codes_min_fields'] - export const istournament_invite_codes_min_fields = (obj?: { __typename?: any } | null): obj is tournament_invite_codes_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_codes_min_fields"') - return tournament_invite_codes_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_invite_codes_mutation_response_possibleTypes: string[] = ['tournament_invite_codes_mutation_response'] - export const istournament_invite_codes_mutation_response = (obj?: { __typename?: any } | null): obj is tournament_invite_codes_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_codes_mutation_response"') - return tournament_invite_codes_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const tournament_invite_codes_stddev_fields_possibleTypes: string[] = ['tournament_invite_codes_stddev_fields'] - export const istournament_invite_codes_stddev_fields = (obj?: { __typename?: any } | null): obj is tournament_invite_codes_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_codes_stddev_fields"') - return tournament_invite_codes_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_invite_codes_stddev_pop_fields_possibleTypes: string[] = ['tournament_invite_codes_stddev_pop_fields'] - export const istournament_invite_codes_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_invite_codes_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_codes_stddev_pop_fields"') - return tournament_invite_codes_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_invite_codes_stddev_samp_fields_possibleTypes: string[] = ['tournament_invite_codes_stddev_samp_fields'] - export const istournament_invite_codes_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_invite_codes_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_codes_stddev_samp_fields"') - return tournament_invite_codes_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_invite_codes_sum_fields_possibleTypes: string[] = ['tournament_invite_codes_sum_fields'] - export const istournament_invite_codes_sum_fields = (obj?: { __typename?: any } | null): obj is tournament_invite_codes_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_codes_sum_fields"') - return tournament_invite_codes_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_invite_codes_var_pop_fields_possibleTypes: string[] = ['tournament_invite_codes_var_pop_fields'] - export const istournament_invite_codes_var_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_invite_codes_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_codes_var_pop_fields"') - return tournament_invite_codes_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_invite_codes_var_samp_fields_possibleTypes: string[] = ['tournament_invite_codes_var_samp_fields'] - export const istournament_invite_codes_var_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_invite_codes_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_codes_var_samp_fields"') - return tournament_invite_codes_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_invite_codes_variance_fields_possibleTypes: string[] = ['tournament_invite_codes_variance_fields'] - export const istournament_invite_codes_variance_fields = (obj?: { __typename?: any } | null): obj is tournament_invite_codes_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_codes_variance_fields"') - return tournament_invite_codes_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_invites_possibleTypes: string[] = ['tournament_invites'] - export const istournament_invites = (obj?: { __typename?: any } | null): obj is tournament_invites => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invites"') - return tournament_invites_possibleTypes.includes(obj.__typename) - } - - - - const tournament_invites_aggregate_possibleTypes: string[] = ['tournament_invites_aggregate'] - export const istournament_invites_aggregate = (obj?: { __typename?: any } | null): obj is tournament_invites_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invites_aggregate"') - return tournament_invites_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const tournament_invites_aggregate_fields_possibleTypes: string[] = ['tournament_invites_aggregate_fields'] - export const istournament_invites_aggregate_fields = (obj?: { __typename?: any } | null): obj is tournament_invites_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invites_aggregate_fields"') - return tournament_invites_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_invites_avg_fields_possibleTypes: string[] = ['tournament_invites_avg_fields'] - export const istournament_invites_avg_fields = (obj?: { __typename?: any } | null): obj is tournament_invites_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invites_avg_fields"') - return tournament_invites_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_invites_max_fields_possibleTypes: string[] = ['tournament_invites_max_fields'] - export const istournament_invites_max_fields = (obj?: { __typename?: any } | null): obj is tournament_invites_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invites_max_fields"') - return tournament_invites_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_invites_min_fields_possibleTypes: string[] = ['tournament_invites_min_fields'] - export const istournament_invites_min_fields = (obj?: { __typename?: any } | null): obj is tournament_invites_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invites_min_fields"') - return tournament_invites_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_invites_mutation_response_possibleTypes: string[] = ['tournament_invites_mutation_response'] - export const istournament_invites_mutation_response = (obj?: { __typename?: any } | null): obj is tournament_invites_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invites_mutation_response"') - return tournament_invites_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const tournament_invites_stddev_fields_possibleTypes: string[] = ['tournament_invites_stddev_fields'] - export const istournament_invites_stddev_fields = (obj?: { __typename?: any } | null): obj is tournament_invites_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invites_stddev_fields"') - return tournament_invites_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_invites_stddev_pop_fields_possibleTypes: string[] = ['tournament_invites_stddev_pop_fields'] - export const istournament_invites_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_invites_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invites_stddev_pop_fields"') - return tournament_invites_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_invites_stddev_samp_fields_possibleTypes: string[] = ['tournament_invites_stddev_samp_fields'] - export const istournament_invites_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_invites_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invites_stddev_samp_fields"') - return tournament_invites_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_invites_sum_fields_possibleTypes: string[] = ['tournament_invites_sum_fields'] - export const istournament_invites_sum_fields = (obj?: { __typename?: any } | null): obj is tournament_invites_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invites_sum_fields"') - return tournament_invites_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_invites_var_pop_fields_possibleTypes: string[] = ['tournament_invites_var_pop_fields'] - export const istournament_invites_var_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_invites_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invites_var_pop_fields"') - return tournament_invites_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_invites_var_samp_fields_possibleTypes: string[] = ['tournament_invites_var_samp_fields'] - export const istournament_invites_var_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_invites_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invites_var_samp_fields"') - return tournament_invites_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_invites_variance_fields_possibleTypes: string[] = ['tournament_invites_variance_fields'] - export const istournament_invites_variance_fields = (obj?: { __typename?: any } | null): obj is tournament_invites_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invites_variance_fields"') - return tournament_invites_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_leaderboard_entries_possibleTypes: string[] = ['tournament_leaderboard_entries'] - export const istournament_leaderboard_entries = (obj?: { __typename?: any } | null): obj is tournament_leaderboard_entries => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_leaderboard_entries"') - return tournament_leaderboard_entries_possibleTypes.includes(obj.__typename) - } - - - - const tournament_leaderboard_entries_aggregate_possibleTypes: string[] = ['tournament_leaderboard_entries_aggregate'] - export const istournament_leaderboard_entries_aggregate = (obj?: { __typename?: any } | null): obj is tournament_leaderboard_entries_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_leaderboard_entries_aggregate"') - return tournament_leaderboard_entries_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const tournament_leaderboard_entries_aggregate_fields_possibleTypes: string[] = ['tournament_leaderboard_entries_aggregate_fields'] - export const istournament_leaderboard_entries_aggregate_fields = (obj?: { __typename?: any } | null): obj is tournament_leaderboard_entries_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_leaderboard_entries_aggregate_fields"') - return tournament_leaderboard_entries_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_leaderboard_entries_avg_fields_possibleTypes: string[] = ['tournament_leaderboard_entries_avg_fields'] - export const istournament_leaderboard_entries_avg_fields = (obj?: { __typename?: any } | null): obj is tournament_leaderboard_entries_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_leaderboard_entries_avg_fields"') - return tournament_leaderboard_entries_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_leaderboard_entries_max_fields_possibleTypes: string[] = ['tournament_leaderboard_entries_max_fields'] - export const istournament_leaderboard_entries_max_fields = (obj?: { __typename?: any } | null): obj is tournament_leaderboard_entries_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_leaderboard_entries_max_fields"') - return tournament_leaderboard_entries_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_leaderboard_entries_min_fields_possibleTypes: string[] = ['tournament_leaderboard_entries_min_fields'] - export const istournament_leaderboard_entries_min_fields = (obj?: { __typename?: any } | null): obj is tournament_leaderboard_entries_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_leaderboard_entries_min_fields"') - return tournament_leaderboard_entries_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_leaderboard_entries_mutation_response_possibleTypes: string[] = ['tournament_leaderboard_entries_mutation_response'] - export const istournament_leaderboard_entries_mutation_response = (obj?: { __typename?: any } | null): obj is tournament_leaderboard_entries_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_leaderboard_entries_mutation_response"') - return tournament_leaderboard_entries_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const tournament_leaderboard_entries_stddev_fields_possibleTypes: string[] = ['tournament_leaderboard_entries_stddev_fields'] - export const istournament_leaderboard_entries_stddev_fields = (obj?: { __typename?: any } | null): obj is tournament_leaderboard_entries_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_leaderboard_entries_stddev_fields"') - return tournament_leaderboard_entries_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_leaderboard_entries_stddev_pop_fields_possibleTypes: string[] = ['tournament_leaderboard_entries_stddev_pop_fields'] - export const istournament_leaderboard_entries_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_leaderboard_entries_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_leaderboard_entries_stddev_pop_fields"') - return tournament_leaderboard_entries_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_leaderboard_entries_stddev_samp_fields_possibleTypes: string[] = ['tournament_leaderboard_entries_stddev_samp_fields'] - export const istournament_leaderboard_entries_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_leaderboard_entries_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_leaderboard_entries_stddev_samp_fields"') - return tournament_leaderboard_entries_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_leaderboard_entries_sum_fields_possibleTypes: string[] = ['tournament_leaderboard_entries_sum_fields'] - export const istournament_leaderboard_entries_sum_fields = (obj?: { __typename?: any } | null): obj is tournament_leaderboard_entries_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_leaderboard_entries_sum_fields"') - return tournament_leaderboard_entries_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_leaderboard_entries_var_pop_fields_possibleTypes: string[] = ['tournament_leaderboard_entries_var_pop_fields'] - export const istournament_leaderboard_entries_var_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_leaderboard_entries_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_leaderboard_entries_var_pop_fields"') - return tournament_leaderboard_entries_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_leaderboard_entries_var_samp_fields_possibleTypes: string[] = ['tournament_leaderboard_entries_var_samp_fields'] - export const istournament_leaderboard_entries_var_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_leaderboard_entries_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_leaderboard_entries_var_samp_fields"') - return tournament_leaderboard_entries_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_leaderboard_entries_variance_fields_possibleTypes: string[] = ['tournament_leaderboard_entries_variance_fields'] - export const istournament_leaderboard_entries_variance_fields = (obj?: { __typename?: any } | null): obj is tournament_leaderboard_entries_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_leaderboard_entries_variance_fields"') - return tournament_leaderboard_entries_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_no_shows_possibleTypes: string[] = ['tournament_no_shows'] - export const istournament_no_shows = (obj?: { __typename?: any } | null): obj is tournament_no_shows => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_no_shows"') - return tournament_no_shows_possibleTypes.includes(obj.__typename) - } - - - - const tournament_no_shows_aggregate_possibleTypes: string[] = ['tournament_no_shows_aggregate'] - export const istournament_no_shows_aggregate = (obj?: { __typename?: any } | null): obj is tournament_no_shows_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_no_shows_aggregate"') - return tournament_no_shows_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const tournament_no_shows_aggregate_fields_possibleTypes: string[] = ['tournament_no_shows_aggregate_fields'] - export const istournament_no_shows_aggregate_fields = (obj?: { __typename?: any } | null): obj is tournament_no_shows_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_no_shows_aggregate_fields"') - return tournament_no_shows_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_no_shows_avg_fields_possibleTypes: string[] = ['tournament_no_shows_avg_fields'] - export const istournament_no_shows_avg_fields = (obj?: { __typename?: any } | null): obj is tournament_no_shows_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_no_shows_avg_fields"') - return tournament_no_shows_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_no_shows_max_fields_possibleTypes: string[] = ['tournament_no_shows_max_fields'] - export const istournament_no_shows_max_fields = (obj?: { __typename?: any } | null): obj is tournament_no_shows_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_no_shows_max_fields"') - return tournament_no_shows_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_no_shows_min_fields_possibleTypes: string[] = ['tournament_no_shows_min_fields'] - export const istournament_no_shows_min_fields = (obj?: { __typename?: any } | null): obj is tournament_no_shows_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_no_shows_min_fields"') - return tournament_no_shows_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_no_shows_mutation_response_possibleTypes: string[] = ['tournament_no_shows_mutation_response'] - export const istournament_no_shows_mutation_response = (obj?: { __typename?: any } | null): obj is tournament_no_shows_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_no_shows_mutation_response"') - return tournament_no_shows_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const tournament_no_shows_stddev_fields_possibleTypes: string[] = ['tournament_no_shows_stddev_fields'] - export const istournament_no_shows_stddev_fields = (obj?: { __typename?: any } | null): obj is tournament_no_shows_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_no_shows_stddev_fields"') - return tournament_no_shows_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_no_shows_stddev_pop_fields_possibleTypes: string[] = ['tournament_no_shows_stddev_pop_fields'] - export const istournament_no_shows_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_no_shows_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_no_shows_stddev_pop_fields"') - return tournament_no_shows_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_no_shows_stddev_samp_fields_possibleTypes: string[] = ['tournament_no_shows_stddev_samp_fields'] - export const istournament_no_shows_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_no_shows_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_no_shows_stddev_samp_fields"') - return tournament_no_shows_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_no_shows_sum_fields_possibleTypes: string[] = ['tournament_no_shows_sum_fields'] - export const istournament_no_shows_sum_fields = (obj?: { __typename?: any } | null): obj is tournament_no_shows_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_no_shows_sum_fields"') - return tournament_no_shows_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_no_shows_var_pop_fields_possibleTypes: string[] = ['tournament_no_shows_var_pop_fields'] - export const istournament_no_shows_var_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_no_shows_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_no_shows_var_pop_fields"') - return tournament_no_shows_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_no_shows_var_samp_fields_possibleTypes: string[] = ['tournament_no_shows_var_samp_fields'] - export const istournament_no_shows_var_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_no_shows_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_no_shows_var_samp_fields"') - return tournament_no_shows_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_no_shows_variance_fields_possibleTypes: string[] = ['tournament_no_shows_variance_fields'] - export const istournament_no_shows_variance_fields = (obj?: { __typename?: any } | null): obj is tournament_no_shows_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_no_shows_variance_fields"') - return tournament_no_shows_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_organizer_teams_possibleTypes: string[] = ['tournament_organizer_teams'] - export const istournament_organizer_teams = (obj?: { __typename?: any } | null): obj is tournament_organizer_teams => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizer_teams"') - return tournament_organizer_teams_possibleTypes.includes(obj.__typename) - } - - - - const tournament_organizer_teams_aggregate_possibleTypes: string[] = ['tournament_organizer_teams_aggregate'] - export const istournament_organizer_teams_aggregate = (obj?: { __typename?: any } | null): obj is tournament_organizer_teams_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizer_teams_aggregate"') - return tournament_organizer_teams_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const tournament_organizer_teams_aggregate_fields_possibleTypes: string[] = ['tournament_organizer_teams_aggregate_fields'] - export const istournament_organizer_teams_aggregate_fields = (obj?: { __typename?: any } | null): obj is tournament_organizer_teams_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizer_teams_aggregate_fields"') - return tournament_organizer_teams_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_organizer_teams_max_fields_possibleTypes: string[] = ['tournament_organizer_teams_max_fields'] - export const istournament_organizer_teams_max_fields = (obj?: { __typename?: any } | null): obj is tournament_organizer_teams_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizer_teams_max_fields"') - return tournament_organizer_teams_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_organizer_teams_min_fields_possibleTypes: string[] = ['tournament_organizer_teams_min_fields'] - export const istournament_organizer_teams_min_fields = (obj?: { __typename?: any } | null): obj is tournament_organizer_teams_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizer_teams_min_fields"') - return tournament_organizer_teams_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_organizer_teams_mutation_response_possibleTypes: string[] = ['tournament_organizer_teams_mutation_response'] - export const istournament_organizer_teams_mutation_response = (obj?: { __typename?: any } | null): obj is tournament_organizer_teams_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizer_teams_mutation_response"') - return tournament_organizer_teams_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const tournament_organizers_possibleTypes: string[] = ['tournament_organizers'] - export const istournament_organizers = (obj?: { __typename?: any } | null): obj is tournament_organizers => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizers"') - return tournament_organizers_possibleTypes.includes(obj.__typename) - } - - - - const tournament_organizers_aggregate_possibleTypes: string[] = ['tournament_organizers_aggregate'] - export const istournament_organizers_aggregate = (obj?: { __typename?: any } | null): obj is tournament_organizers_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizers_aggregate"') - return tournament_organizers_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const tournament_organizers_aggregate_fields_possibleTypes: string[] = ['tournament_organizers_aggregate_fields'] - export const istournament_organizers_aggregate_fields = (obj?: { __typename?: any } | null): obj is tournament_organizers_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizers_aggregate_fields"') - return tournament_organizers_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_organizers_avg_fields_possibleTypes: string[] = ['tournament_organizers_avg_fields'] - export const istournament_organizers_avg_fields = (obj?: { __typename?: any } | null): obj is tournament_organizers_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizers_avg_fields"') - return tournament_organizers_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_organizers_max_fields_possibleTypes: string[] = ['tournament_organizers_max_fields'] - export const istournament_organizers_max_fields = (obj?: { __typename?: any } | null): obj is tournament_organizers_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizers_max_fields"') - return tournament_organizers_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_organizers_min_fields_possibleTypes: string[] = ['tournament_organizers_min_fields'] - export const istournament_organizers_min_fields = (obj?: { __typename?: any } | null): obj is tournament_organizers_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizers_min_fields"') - return tournament_organizers_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_organizers_mutation_response_possibleTypes: string[] = ['tournament_organizers_mutation_response'] - export const istournament_organizers_mutation_response = (obj?: { __typename?: any } | null): obj is tournament_organizers_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizers_mutation_response"') - return tournament_organizers_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const tournament_organizers_stddev_fields_possibleTypes: string[] = ['tournament_organizers_stddev_fields'] - export const istournament_organizers_stddev_fields = (obj?: { __typename?: any } | null): obj is tournament_organizers_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizers_stddev_fields"') - return tournament_organizers_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_organizers_stddev_pop_fields_possibleTypes: string[] = ['tournament_organizers_stddev_pop_fields'] - export const istournament_organizers_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_organizers_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizers_stddev_pop_fields"') - return tournament_organizers_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_organizers_stddev_samp_fields_possibleTypes: string[] = ['tournament_organizers_stddev_samp_fields'] - export const istournament_organizers_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_organizers_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizers_stddev_samp_fields"') - return tournament_organizers_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_organizers_sum_fields_possibleTypes: string[] = ['tournament_organizers_sum_fields'] - export const istournament_organizers_sum_fields = (obj?: { __typename?: any } | null): obj is tournament_organizers_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizers_sum_fields"') - return tournament_organizers_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_organizers_var_pop_fields_possibleTypes: string[] = ['tournament_organizers_var_pop_fields'] - export const istournament_organizers_var_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_organizers_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizers_var_pop_fields"') - return tournament_organizers_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_organizers_var_samp_fields_possibleTypes: string[] = ['tournament_organizers_var_samp_fields'] - export const istournament_organizers_var_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_organizers_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizers_var_samp_fields"') - return tournament_organizers_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_organizers_variance_fields_possibleTypes: string[] = ['tournament_organizers_variance_fields'] - export const istournament_organizers_variance_fields = (obj?: { __typename?: any } | null): obj is tournament_organizers_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizers_variance_fields"') - return tournament_organizers_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_prizes_possibleTypes: string[] = ['tournament_prizes'] - export const istournament_prizes = (obj?: { __typename?: any } | null): obj is tournament_prizes => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_prizes"') - return tournament_prizes_possibleTypes.includes(obj.__typename) - } - - - - const tournament_prizes_aggregate_possibleTypes: string[] = ['tournament_prizes_aggregate'] - export const istournament_prizes_aggregate = (obj?: { __typename?: any } | null): obj is tournament_prizes_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_prizes_aggregate"') - return tournament_prizes_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const tournament_prizes_aggregate_fields_possibleTypes: string[] = ['tournament_prizes_aggregate_fields'] - export const istournament_prizes_aggregate_fields = (obj?: { __typename?: any } | null): obj is tournament_prizes_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_prizes_aggregate_fields"') - return tournament_prizes_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_prizes_avg_fields_possibleTypes: string[] = ['tournament_prizes_avg_fields'] - export const istournament_prizes_avg_fields = (obj?: { __typename?: any } | null): obj is tournament_prizes_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_prizes_avg_fields"') - return tournament_prizes_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_prizes_max_fields_possibleTypes: string[] = ['tournament_prizes_max_fields'] - export const istournament_prizes_max_fields = (obj?: { __typename?: any } | null): obj is tournament_prizes_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_prizes_max_fields"') - return tournament_prizes_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_prizes_min_fields_possibleTypes: string[] = ['tournament_prizes_min_fields'] - export const istournament_prizes_min_fields = (obj?: { __typename?: any } | null): obj is tournament_prizes_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_prizes_min_fields"') - return tournament_prizes_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_prizes_mutation_response_possibleTypes: string[] = ['tournament_prizes_mutation_response'] - export const istournament_prizes_mutation_response = (obj?: { __typename?: any } | null): obj is tournament_prizes_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_prizes_mutation_response"') - return tournament_prizes_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const tournament_prizes_stddev_fields_possibleTypes: string[] = ['tournament_prizes_stddev_fields'] - export const istournament_prizes_stddev_fields = (obj?: { __typename?: any } | null): obj is tournament_prizes_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_prizes_stddev_fields"') - return tournament_prizes_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_prizes_stddev_pop_fields_possibleTypes: string[] = ['tournament_prizes_stddev_pop_fields'] - export const istournament_prizes_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_prizes_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_prizes_stddev_pop_fields"') - return tournament_prizes_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_prizes_stddev_samp_fields_possibleTypes: string[] = ['tournament_prizes_stddev_samp_fields'] - export const istournament_prizes_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_prizes_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_prizes_stddev_samp_fields"') - return tournament_prizes_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_prizes_sum_fields_possibleTypes: string[] = ['tournament_prizes_sum_fields'] - export const istournament_prizes_sum_fields = (obj?: { __typename?: any } | null): obj is tournament_prizes_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_prizes_sum_fields"') - return tournament_prizes_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_prizes_var_pop_fields_possibleTypes: string[] = ['tournament_prizes_var_pop_fields'] - export const istournament_prizes_var_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_prizes_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_prizes_var_pop_fields"') - return tournament_prizes_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_prizes_var_samp_fields_possibleTypes: string[] = ['tournament_prizes_var_samp_fields'] - export const istournament_prizes_var_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_prizes_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_prizes_var_samp_fields"') - return tournament_prizes_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_prizes_variance_fields_possibleTypes: string[] = ['tournament_prizes_variance_fields'] - export const istournament_prizes_variance_fields = (obj?: { __typename?: any } | null): obj is tournament_prizes_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_prizes_variance_fields"') - return tournament_prizes_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_registration_unlocks_possibleTypes: string[] = ['tournament_registration_unlocks'] - export const istournament_registration_unlocks = (obj?: { __typename?: any } | null): obj is tournament_registration_unlocks => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_registration_unlocks"') - return tournament_registration_unlocks_possibleTypes.includes(obj.__typename) - } - - - - const tournament_registration_unlocks_aggregate_possibleTypes: string[] = ['tournament_registration_unlocks_aggregate'] - export const istournament_registration_unlocks_aggregate = (obj?: { __typename?: any } | null): obj is tournament_registration_unlocks_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_registration_unlocks_aggregate"') - return tournament_registration_unlocks_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const tournament_registration_unlocks_aggregate_fields_possibleTypes: string[] = ['tournament_registration_unlocks_aggregate_fields'] - export const istournament_registration_unlocks_aggregate_fields = (obj?: { __typename?: any } | null): obj is tournament_registration_unlocks_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_registration_unlocks_aggregate_fields"') - return tournament_registration_unlocks_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_registration_unlocks_avg_fields_possibleTypes: string[] = ['tournament_registration_unlocks_avg_fields'] - export const istournament_registration_unlocks_avg_fields = (obj?: { __typename?: any } | null): obj is tournament_registration_unlocks_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_registration_unlocks_avg_fields"') - return tournament_registration_unlocks_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_registration_unlocks_max_fields_possibleTypes: string[] = ['tournament_registration_unlocks_max_fields'] - export const istournament_registration_unlocks_max_fields = (obj?: { __typename?: any } | null): obj is tournament_registration_unlocks_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_registration_unlocks_max_fields"') - return tournament_registration_unlocks_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_registration_unlocks_min_fields_possibleTypes: string[] = ['tournament_registration_unlocks_min_fields'] - export const istournament_registration_unlocks_min_fields = (obj?: { __typename?: any } | null): obj is tournament_registration_unlocks_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_registration_unlocks_min_fields"') - return tournament_registration_unlocks_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_registration_unlocks_mutation_response_possibleTypes: string[] = ['tournament_registration_unlocks_mutation_response'] - export const istournament_registration_unlocks_mutation_response = (obj?: { __typename?: any } | null): obj is tournament_registration_unlocks_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_registration_unlocks_mutation_response"') - return tournament_registration_unlocks_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const tournament_registration_unlocks_stddev_fields_possibleTypes: string[] = ['tournament_registration_unlocks_stddev_fields'] - export const istournament_registration_unlocks_stddev_fields = (obj?: { __typename?: any } | null): obj is tournament_registration_unlocks_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_registration_unlocks_stddev_fields"') - return tournament_registration_unlocks_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_registration_unlocks_stddev_pop_fields_possibleTypes: string[] = ['tournament_registration_unlocks_stddev_pop_fields'] - export const istournament_registration_unlocks_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_registration_unlocks_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_registration_unlocks_stddev_pop_fields"') - return tournament_registration_unlocks_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_registration_unlocks_stddev_samp_fields_possibleTypes: string[] = ['tournament_registration_unlocks_stddev_samp_fields'] - export const istournament_registration_unlocks_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_registration_unlocks_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_registration_unlocks_stddev_samp_fields"') - return tournament_registration_unlocks_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_registration_unlocks_sum_fields_possibleTypes: string[] = ['tournament_registration_unlocks_sum_fields'] - export const istournament_registration_unlocks_sum_fields = (obj?: { __typename?: any } | null): obj is tournament_registration_unlocks_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_registration_unlocks_sum_fields"') - return tournament_registration_unlocks_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_registration_unlocks_var_pop_fields_possibleTypes: string[] = ['tournament_registration_unlocks_var_pop_fields'] - export const istournament_registration_unlocks_var_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_registration_unlocks_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_registration_unlocks_var_pop_fields"') - return tournament_registration_unlocks_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_registration_unlocks_var_samp_fields_possibleTypes: string[] = ['tournament_registration_unlocks_var_samp_fields'] - export const istournament_registration_unlocks_var_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_registration_unlocks_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_registration_unlocks_var_samp_fields"') - return tournament_registration_unlocks_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_registration_unlocks_variance_fields_possibleTypes: string[] = ['tournament_registration_unlocks_variance_fields'] - export const istournament_registration_unlocks_variance_fields = (obj?: { __typename?: any } | null): obj is tournament_registration_unlocks_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_registration_unlocks_variance_fields"') - return tournament_registration_unlocks_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_stage_windows_possibleTypes: string[] = ['tournament_stage_windows'] - export const istournament_stage_windows = (obj?: { __typename?: any } | null): obj is tournament_stage_windows => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stage_windows"') - return tournament_stage_windows_possibleTypes.includes(obj.__typename) - } - - - - const tournament_stage_windows_aggregate_possibleTypes: string[] = ['tournament_stage_windows_aggregate'] - export const istournament_stage_windows_aggregate = (obj?: { __typename?: any } | null): obj is tournament_stage_windows_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stage_windows_aggregate"') - return tournament_stage_windows_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const tournament_stage_windows_aggregate_fields_possibleTypes: string[] = ['tournament_stage_windows_aggregate_fields'] - export const istournament_stage_windows_aggregate_fields = (obj?: { __typename?: any } | null): obj is tournament_stage_windows_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stage_windows_aggregate_fields"') - return tournament_stage_windows_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_stage_windows_avg_fields_possibleTypes: string[] = ['tournament_stage_windows_avg_fields'] - export const istournament_stage_windows_avg_fields = (obj?: { __typename?: any } | null): obj is tournament_stage_windows_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stage_windows_avg_fields"') - return tournament_stage_windows_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_stage_windows_max_fields_possibleTypes: string[] = ['tournament_stage_windows_max_fields'] - export const istournament_stage_windows_max_fields = (obj?: { __typename?: any } | null): obj is tournament_stage_windows_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stage_windows_max_fields"') - return tournament_stage_windows_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_stage_windows_min_fields_possibleTypes: string[] = ['tournament_stage_windows_min_fields'] - export const istournament_stage_windows_min_fields = (obj?: { __typename?: any } | null): obj is tournament_stage_windows_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stage_windows_min_fields"') - return tournament_stage_windows_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_stage_windows_mutation_response_possibleTypes: string[] = ['tournament_stage_windows_mutation_response'] - export const istournament_stage_windows_mutation_response = (obj?: { __typename?: any } | null): obj is tournament_stage_windows_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stage_windows_mutation_response"') - return tournament_stage_windows_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const tournament_stage_windows_stddev_fields_possibleTypes: string[] = ['tournament_stage_windows_stddev_fields'] - export const istournament_stage_windows_stddev_fields = (obj?: { __typename?: any } | null): obj is tournament_stage_windows_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stage_windows_stddev_fields"') - return tournament_stage_windows_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_stage_windows_stddev_pop_fields_possibleTypes: string[] = ['tournament_stage_windows_stddev_pop_fields'] - export const istournament_stage_windows_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_stage_windows_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stage_windows_stddev_pop_fields"') - return tournament_stage_windows_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_stage_windows_stddev_samp_fields_possibleTypes: string[] = ['tournament_stage_windows_stddev_samp_fields'] - export const istournament_stage_windows_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_stage_windows_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stage_windows_stddev_samp_fields"') - return tournament_stage_windows_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_stage_windows_sum_fields_possibleTypes: string[] = ['tournament_stage_windows_sum_fields'] - export const istournament_stage_windows_sum_fields = (obj?: { __typename?: any } | null): obj is tournament_stage_windows_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stage_windows_sum_fields"') - return tournament_stage_windows_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_stage_windows_var_pop_fields_possibleTypes: string[] = ['tournament_stage_windows_var_pop_fields'] - export const istournament_stage_windows_var_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_stage_windows_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stage_windows_var_pop_fields"') - return tournament_stage_windows_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_stage_windows_var_samp_fields_possibleTypes: string[] = ['tournament_stage_windows_var_samp_fields'] - export const istournament_stage_windows_var_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_stage_windows_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stage_windows_var_samp_fields"') - return tournament_stage_windows_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_stage_windows_variance_fields_possibleTypes: string[] = ['tournament_stage_windows_variance_fields'] - export const istournament_stage_windows_variance_fields = (obj?: { __typename?: any } | null): obj is tournament_stage_windows_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stage_windows_variance_fields"') - return tournament_stage_windows_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_stages_possibleTypes: string[] = ['tournament_stages'] - export const istournament_stages = (obj?: { __typename?: any } | null): obj is tournament_stages => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stages"') - return tournament_stages_possibleTypes.includes(obj.__typename) - } - - - - const tournament_stages_aggregate_possibleTypes: string[] = ['tournament_stages_aggregate'] - export const istournament_stages_aggregate = (obj?: { __typename?: any } | null): obj is tournament_stages_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stages_aggregate"') - return tournament_stages_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const tournament_stages_aggregate_fields_possibleTypes: string[] = ['tournament_stages_aggregate_fields'] - export const istournament_stages_aggregate_fields = (obj?: { __typename?: any } | null): obj is tournament_stages_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stages_aggregate_fields"') - return tournament_stages_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_stages_avg_fields_possibleTypes: string[] = ['tournament_stages_avg_fields'] - export const istournament_stages_avg_fields = (obj?: { __typename?: any } | null): obj is tournament_stages_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stages_avg_fields"') - return tournament_stages_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_stages_max_fields_possibleTypes: string[] = ['tournament_stages_max_fields'] - export const istournament_stages_max_fields = (obj?: { __typename?: any } | null): obj is tournament_stages_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stages_max_fields"') - return tournament_stages_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_stages_min_fields_possibleTypes: string[] = ['tournament_stages_min_fields'] - export const istournament_stages_min_fields = (obj?: { __typename?: any } | null): obj is tournament_stages_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stages_min_fields"') - return tournament_stages_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_stages_mutation_response_possibleTypes: string[] = ['tournament_stages_mutation_response'] - export const istournament_stages_mutation_response = (obj?: { __typename?: any } | null): obj is tournament_stages_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stages_mutation_response"') - return tournament_stages_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const tournament_stages_stddev_fields_possibleTypes: string[] = ['tournament_stages_stddev_fields'] - export const istournament_stages_stddev_fields = (obj?: { __typename?: any } | null): obj is tournament_stages_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stages_stddev_fields"') - return tournament_stages_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_stages_stddev_pop_fields_possibleTypes: string[] = ['tournament_stages_stddev_pop_fields'] - export const istournament_stages_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_stages_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stages_stddev_pop_fields"') - return tournament_stages_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_stages_stddev_samp_fields_possibleTypes: string[] = ['tournament_stages_stddev_samp_fields'] - export const istournament_stages_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_stages_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stages_stddev_samp_fields"') - return tournament_stages_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_stages_sum_fields_possibleTypes: string[] = ['tournament_stages_sum_fields'] - export const istournament_stages_sum_fields = (obj?: { __typename?: any } | null): obj is tournament_stages_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stages_sum_fields"') - return tournament_stages_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_stages_var_pop_fields_possibleTypes: string[] = ['tournament_stages_var_pop_fields'] - export const istournament_stages_var_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_stages_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stages_var_pop_fields"') - return tournament_stages_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_stages_var_samp_fields_possibleTypes: string[] = ['tournament_stages_var_samp_fields'] - export const istournament_stages_var_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_stages_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stages_var_samp_fields"') - return tournament_stages_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_stages_variance_fields_possibleTypes: string[] = ['tournament_stages_variance_fields'] - export const istournament_stages_variance_fields = (obj?: { __typename?: any } | null): obj is tournament_stages_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stages_variance_fields"') - return tournament_stages_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_team_invites_possibleTypes: string[] = ['tournament_team_invites'] - export const istournament_team_invites = (obj?: { __typename?: any } | null): obj is tournament_team_invites => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_invites"') - return tournament_team_invites_possibleTypes.includes(obj.__typename) - } - - - - const tournament_team_invites_aggregate_possibleTypes: string[] = ['tournament_team_invites_aggregate'] - export const istournament_team_invites_aggregate = (obj?: { __typename?: any } | null): obj is tournament_team_invites_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_invites_aggregate"') - return tournament_team_invites_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const tournament_team_invites_aggregate_fields_possibleTypes: string[] = ['tournament_team_invites_aggregate_fields'] - export const istournament_team_invites_aggregate_fields = (obj?: { __typename?: any } | null): obj is tournament_team_invites_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_invites_aggregate_fields"') - return tournament_team_invites_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_team_invites_avg_fields_possibleTypes: string[] = ['tournament_team_invites_avg_fields'] - export const istournament_team_invites_avg_fields = (obj?: { __typename?: any } | null): obj is tournament_team_invites_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_invites_avg_fields"') - return tournament_team_invites_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_team_invites_max_fields_possibleTypes: string[] = ['tournament_team_invites_max_fields'] - export const istournament_team_invites_max_fields = (obj?: { __typename?: any } | null): obj is tournament_team_invites_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_invites_max_fields"') - return tournament_team_invites_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_team_invites_min_fields_possibleTypes: string[] = ['tournament_team_invites_min_fields'] - export const istournament_team_invites_min_fields = (obj?: { __typename?: any } | null): obj is tournament_team_invites_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_invites_min_fields"') - return tournament_team_invites_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_team_invites_mutation_response_possibleTypes: string[] = ['tournament_team_invites_mutation_response'] - export const istournament_team_invites_mutation_response = (obj?: { __typename?: any } | null): obj is tournament_team_invites_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_invites_mutation_response"') - return tournament_team_invites_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const tournament_team_invites_stddev_fields_possibleTypes: string[] = ['tournament_team_invites_stddev_fields'] - export const istournament_team_invites_stddev_fields = (obj?: { __typename?: any } | null): obj is tournament_team_invites_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_invites_stddev_fields"') - return tournament_team_invites_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_team_invites_stddev_pop_fields_possibleTypes: string[] = ['tournament_team_invites_stddev_pop_fields'] - export const istournament_team_invites_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_team_invites_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_invites_stddev_pop_fields"') - return tournament_team_invites_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_team_invites_stddev_samp_fields_possibleTypes: string[] = ['tournament_team_invites_stddev_samp_fields'] - export const istournament_team_invites_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_team_invites_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_invites_stddev_samp_fields"') - return tournament_team_invites_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_team_invites_sum_fields_possibleTypes: string[] = ['tournament_team_invites_sum_fields'] - export const istournament_team_invites_sum_fields = (obj?: { __typename?: any } | null): obj is tournament_team_invites_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_invites_sum_fields"') - return tournament_team_invites_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_team_invites_var_pop_fields_possibleTypes: string[] = ['tournament_team_invites_var_pop_fields'] - export const istournament_team_invites_var_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_team_invites_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_invites_var_pop_fields"') - return tournament_team_invites_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_team_invites_var_samp_fields_possibleTypes: string[] = ['tournament_team_invites_var_samp_fields'] - export const istournament_team_invites_var_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_team_invites_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_invites_var_samp_fields"') - return tournament_team_invites_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_team_invites_variance_fields_possibleTypes: string[] = ['tournament_team_invites_variance_fields'] - export const istournament_team_invites_variance_fields = (obj?: { __typename?: any } | null): obj is tournament_team_invites_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_invites_variance_fields"') - return tournament_team_invites_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_team_roster_possibleTypes: string[] = ['tournament_team_roster'] - export const istournament_team_roster = (obj?: { __typename?: any } | null): obj is tournament_team_roster => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_roster"') - return tournament_team_roster_possibleTypes.includes(obj.__typename) - } - - - - const tournament_team_roster_aggregate_possibleTypes: string[] = ['tournament_team_roster_aggregate'] - export const istournament_team_roster_aggregate = (obj?: { __typename?: any } | null): obj is tournament_team_roster_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_roster_aggregate"') - return tournament_team_roster_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const tournament_team_roster_aggregate_fields_possibleTypes: string[] = ['tournament_team_roster_aggregate_fields'] - export const istournament_team_roster_aggregate_fields = (obj?: { __typename?: any } | null): obj is tournament_team_roster_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_roster_aggregate_fields"') - return tournament_team_roster_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_team_roster_avg_fields_possibleTypes: string[] = ['tournament_team_roster_avg_fields'] - export const istournament_team_roster_avg_fields = (obj?: { __typename?: any } | null): obj is tournament_team_roster_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_roster_avg_fields"') - return tournament_team_roster_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_team_roster_max_fields_possibleTypes: string[] = ['tournament_team_roster_max_fields'] - export const istournament_team_roster_max_fields = (obj?: { __typename?: any } | null): obj is tournament_team_roster_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_roster_max_fields"') - return tournament_team_roster_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_team_roster_min_fields_possibleTypes: string[] = ['tournament_team_roster_min_fields'] - export const istournament_team_roster_min_fields = (obj?: { __typename?: any } | null): obj is tournament_team_roster_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_roster_min_fields"') - return tournament_team_roster_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_team_roster_mutation_response_possibleTypes: string[] = ['tournament_team_roster_mutation_response'] - export const istournament_team_roster_mutation_response = (obj?: { __typename?: any } | null): obj is tournament_team_roster_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_roster_mutation_response"') - return tournament_team_roster_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const tournament_team_roster_stddev_fields_possibleTypes: string[] = ['tournament_team_roster_stddev_fields'] - export const istournament_team_roster_stddev_fields = (obj?: { __typename?: any } | null): obj is tournament_team_roster_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_roster_stddev_fields"') - return tournament_team_roster_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_team_roster_stddev_pop_fields_possibleTypes: string[] = ['tournament_team_roster_stddev_pop_fields'] - export const istournament_team_roster_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_team_roster_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_roster_stddev_pop_fields"') - return tournament_team_roster_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_team_roster_stddev_samp_fields_possibleTypes: string[] = ['tournament_team_roster_stddev_samp_fields'] - export const istournament_team_roster_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_team_roster_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_roster_stddev_samp_fields"') - return tournament_team_roster_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_team_roster_sum_fields_possibleTypes: string[] = ['tournament_team_roster_sum_fields'] - export const istournament_team_roster_sum_fields = (obj?: { __typename?: any } | null): obj is tournament_team_roster_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_roster_sum_fields"') - return tournament_team_roster_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_team_roster_var_pop_fields_possibleTypes: string[] = ['tournament_team_roster_var_pop_fields'] - export const istournament_team_roster_var_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_team_roster_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_roster_var_pop_fields"') - return tournament_team_roster_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_team_roster_var_samp_fields_possibleTypes: string[] = ['tournament_team_roster_var_samp_fields'] - export const istournament_team_roster_var_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_team_roster_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_roster_var_samp_fields"') - return tournament_team_roster_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_team_roster_variance_fields_possibleTypes: string[] = ['tournament_team_roster_variance_fields'] - export const istournament_team_roster_variance_fields = (obj?: { __typename?: any } | null): obj is tournament_team_roster_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_roster_variance_fields"') - return tournament_team_roster_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_teams_possibleTypes: string[] = ['tournament_teams'] - export const istournament_teams = (obj?: { __typename?: any } | null): obj is tournament_teams => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_teams"') - return tournament_teams_possibleTypes.includes(obj.__typename) - } - - - - const tournament_teams_aggregate_possibleTypes: string[] = ['tournament_teams_aggregate'] - export const istournament_teams_aggregate = (obj?: { __typename?: any } | null): obj is tournament_teams_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_teams_aggregate"') - return tournament_teams_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const tournament_teams_aggregate_fields_possibleTypes: string[] = ['tournament_teams_aggregate_fields'] - export const istournament_teams_aggregate_fields = (obj?: { __typename?: any } | null): obj is tournament_teams_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_teams_aggregate_fields"') - return tournament_teams_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_teams_avg_fields_possibleTypes: string[] = ['tournament_teams_avg_fields'] - export const istournament_teams_avg_fields = (obj?: { __typename?: any } | null): obj is tournament_teams_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_teams_avg_fields"') - return tournament_teams_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_teams_max_fields_possibleTypes: string[] = ['tournament_teams_max_fields'] - export const istournament_teams_max_fields = (obj?: { __typename?: any } | null): obj is tournament_teams_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_teams_max_fields"') - return tournament_teams_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_teams_min_fields_possibleTypes: string[] = ['tournament_teams_min_fields'] - export const istournament_teams_min_fields = (obj?: { __typename?: any } | null): obj is tournament_teams_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_teams_min_fields"') - return tournament_teams_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_teams_mutation_response_possibleTypes: string[] = ['tournament_teams_mutation_response'] - export const istournament_teams_mutation_response = (obj?: { __typename?: any } | null): obj is tournament_teams_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_teams_mutation_response"') - return tournament_teams_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const tournament_teams_stddev_fields_possibleTypes: string[] = ['tournament_teams_stddev_fields'] - export const istournament_teams_stddev_fields = (obj?: { __typename?: any } | null): obj is tournament_teams_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_teams_stddev_fields"') - return tournament_teams_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_teams_stddev_pop_fields_possibleTypes: string[] = ['tournament_teams_stddev_pop_fields'] - export const istournament_teams_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_teams_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_teams_stddev_pop_fields"') - return tournament_teams_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_teams_stddev_samp_fields_possibleTypes: string[] = ['tournament_teams_stddev_samp_fields'] - export const istournament_teams_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_teams_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_teams_stddev_samp_fields"') - return tournament_teams_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_teams_sum_fields_possibleTypes: string[] = ['tournament_teams_sum_fields'] - export const istournament_teams_sum_fields = (obj?: { __typename?: any } | null): obj is tournament_teams_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_teams_sum_fields"') - return tournament_teams_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_teams_var_pop_fields_possibleTypes: string[] = ['tournament_teams_var_pop_fields'] - export const istournament_teams_var_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_teams_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_teams_var_pop_fields"') - return tournament_teams_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_teams_var_samp_fields_possibleTypes: string[] = ['tournament_teams_var_samp_fields'] - export const istournament_teams_var_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_teams_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_teams_var_samp_fields"') - return tournament_teams_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournament_teams_variance_fields_possibleTypes: string[] = ['tournament_teams_variance_fields'] - export const istournament_teams_variance_fields = (obj?: { __typename?: any } | null): obj is tournament_teams_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournament_teams_variance_fields"') - return tournament_teams_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournaments_possibleTypes: string[] = ['tournaments'] - export const istournaments = (obj?: { __typename?: any } | null): obj is tournaments => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournaments"') - return tournaments_possibleTypes.includes(obj.__typename) - } - - - - const tournaments_aggregate_possibleTypes: string[] = ['tournaments_aggregate'] - export const istournaments_aggregate = (obj?: { __typename?: any } | null): obj is tournaments_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournaments_aggregate"') - return tournaments_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const tournaments_aggregate_fields_possibleTypes: string[] = ['tournaments_aggregate_fields'] - export const istournaments_aggregate_fields = (obj?: { __typename?: any } | null): obj is tournaments_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournaments_aggregate_fields"') - return tournaments_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournaments_avg_fields_possibleTypes: string[] = ['tournaments_avg_fields'] - export const istournaments_avg_fields = (obj?: { __typename?: any } | null): obj is tournaments_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournaments_avg_fields"') - return tournaments_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournaments_max_fields_possibleTypes: string[] = ['tournaments_max_fields'] - export const istournaments_max_fields = (obj?: { __typename?: any } | null): obj is tournaments_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournaments_max_fields"') - return tournaments_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournaments_min_fields_possibleTypes: string[] = ['tournaments_min_fields'] - export const istournaments_min_fields = (obj?: { __typename?: any } | null): obj is tournaments_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournaments_min_fields"') - return tournaments_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournaments_mutation_response_possibleTypes: string[] = ['tournaments_mutation_response'] - export const istournaments_mutation_response = (obj?: { __typename?: any } | null): obj is tournaments_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournaments_mutation_response"') - return tournaments_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const tournaments_stddev_fields_possibleTypes: string[] = ['tournaments_stddev_fields'] - export const istournaments_stddev_fields = (obj?: { __typename?: any } | null): obj is tournaments_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournaments_stddev_fields"') - return tournaments_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournaments_stddev_pop_fields_possibleTypes: string[] = ['tournaments_stddev_pop_fields'] - export const istournaments_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is tournaments_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournaments_stddev_pop_fields"') - return tournaments_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournaments_stddev_samp_fields_possibleTypes: string[] = ['tournaments_stddev_samp_fields'] - export const istournaments_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is tournaments_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournaments_stddev_samp_fields"') - return tournaments_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournaments_sum_fields_possibleTypes: string[] = ['tournaments_sum_fields'] - export const istournaments_sum_fields = (obj?: { __typename?: any } | null): obj is tournaments_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournaments_sum_fields"') - return tournaments_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournaments_var_pop_fields_possibleTypes: string[] = ['tournaments_var_pop_fields'] - export const istournaments_var_pop_fields = (obj?: { __typename?: any } | null): obj is tournaments_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournaments_var_pop_fields"') - return tournaments_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournaments_var_samp_fields_possibleTypes: string[] = ['tournaments_var_samp_fields'] - export const istournaments_var_samp_fields = (obj?: { __typename?: any } | null): obj is tournaments_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournaments_var_samp_fields"') - return tournaments_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const tournaments_variance_fields_possibleTypes: string[] = ['tournaments_variance_fields'] - export const istournaments_variance_fields = (obj?: { __typename?: any } | null): obj is tournaments_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "istournaments_variance_fields"') - return tournaments_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_collection_items_possibleTypes: string[] = ['utility_collection_items'] - export const isutility_collection_items = (obj?: { __typename?: any } | null): obj is utility_collection_items => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collection_items"') - return utility_collection_items_possibleTypes.includes(obj.__typename) - } - - - - const utility_collection_items_aggregate_possibleTypes: string[] = ['utility_collection_items_aggregate'] - export const isutility_collection_items_aggregate = (obj?: { __typename?: any } | null): obj is utility_collection_items_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collection_items_aggregate"') - return utility_collection_items_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const utility_collection_items_aggregate_fields_possibleTypes: string[] = ['utility_collection_items_aggregate_fields'] - export const isutility_collection_items_aggregate_fields = (obj?: { __typename?: any } | null): obj is utility_collection_items_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collection_items_aggregate_fields"') - return utility_collection_items_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_collection_items_avg_fields_possibleTypes: string[] = ['utility_collection_items_avg_fields'] - export const isutility_collection_items_avg_fields = (obj?: { __typename?: any } | null): obj is utility_collection_items_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collection_items_avg_fields"') - return utility_collection_items_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_collection_items_max_fields_possibleTypes: string[] = ['utility_collection_items_max_fields'] - export const isutility_collection_items_max_fields = (obj?: { __typename?: any } | null): obj is utility_collection_items_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collection_items_max_fields"') - return utility_collection_items_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_collection_items_min_fields_possibleTypes: string[] = ['utility_collection_items_min_fields'] - export const isutility_collection_items_min_fields = (obj?: { __typename?: any } | null): obj is utility_collection_items_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collection_items_min_fields"') - return utility_collection_items_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_collection_items_mutation_response_possibleTypes: string[] = ['utility_collection_items_mutation_response'] - export const isutility_collection_items_mutation_response = (obj?: { __typename?: any } | null): obj is utility_collection_items_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collection_items_mutation_response"') - return utility_collection_items_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const utility_collection_items_stddev_fields_possibleTypes: string[] = ['utility_collection_items_stddev_fields'] - export const isutility_collection_items_stddev_fields = (obj?: { __typename?: any } | null): obj is utility_collection_items_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collection_items_stddev_fields"') - return utility_collection_items_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_collection_items_stddev_pop_fields_possibleTypes: string[] = ['utility_collection_items_stddev_pop_fields'] - export const isutility_collection_items_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is utility_collection_items_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collection_items_stddev_pop_fields"') - return utility_collection_items_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_collection_items_stddev_samp_fields_possibleTypes: string[] = ['utility_collection_items_stddev_samp_fields'] - export const isutility_collection_items_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is utility_collection_items_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collection_items_stddev_samp_fields"') - return utility_collection_items_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_collection_items_sum_fields_possibleTypes: string[] = ['utility_collection_items_sum_fields'] - export const isutility_collection_items_sum_fields = (obj?: { __typename?: any } | null): obj is utility_collection_items_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collection_items_sum_fields"') - return utility_collection_items_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_collection_items_var_pop_fields_possibleTypes: string[] = ['utility_collection_items_var_pop_fields'] - export const isutility_collection_items_var_pop_fields = (obj?: { __typename?: any } | null): obj is utility_collection_items_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collection_items_var_pop_fields"') - return utility_collection_items_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_collection_items_var_samp_fields_possibleTypes: string[] = ['utility_collection_items_var_samp_fields'] - export const isutility_collection_items_var_samp_fields = (obj?: { __typename?: any } | null): obj is utility_collection_items_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collection_items_var_samp_fields"') - return utility_collection_items_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_collection_items_variance_fields_possibleTypes: string[] = ['utility_collection_items_variance_fields'] - export const isutility_collection_items_variance_fields = (obj?: { __typename?: any } | null): obj is utility_collection_items_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collection_items_variance_fields"') - return utility_collection_items_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_collections_possibleTypes: string[] = ['utility_collections'] - export const isutility_collections = (obj?: { __typename?: any } | null): obj is utility_collections => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collections"') - return utility_collections_possibleTypes.includes(obj.__typename) - } - - - - const utility_collections_aggregate_possibleTypes: string[] = ['utility_collections_aggregate'] - export const isutility_collections_aggregate = (obj?: { __typename?: any } | null): obj is utility_collections_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collections_aggregate"') - return utility_collections_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const utility_collections_aggregate_fields_possibleTypes: string[] = ['utility_collections_aggregate_fields'] - export const isutility_collections_aggregate_fields = (obj?: { __typename?: any } | null): obj is utility_collections_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collections_aggregate_fields"') - return utility_collections_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_collections_avg_fields_possibleTypes: string[] = ['utility_collections_avg_fields'] - export const isutility_collections_avg_fields = (obj?: { __typename?: any } | null): obj is utility_collections_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collections_avg_fields"') - return utility_collections_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_collections_max_fields_possibleTypes: string[] = ['utility_collections_max_fields'] - export const isutility_collections_max_fields = (obj?: { __typename?: any } | null): obj is utility_collections_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collections_max_fields"') - return utility_collections_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_collections_min_fields_possibleTypes: string[] = ['utility_collections_min_fields'] - export const isutility_collections_min_fields = (obj?: { __typename?: any } | null): obj is utility_collections_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collections_min_fields"') - return utility_collections_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_collections_mutation_response_possibleTypes: string[] = ['utility_collections_mutation_response'] - export const isutility_collections_mutation_response = (obj?: { __typename?: any } | null): obj is utility_collections_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collections_mutation_response"') - return utility_collections_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const utility_collections_stddev_fields_possibleTypes: string[] = ['utility_collections_stddev_fields'] - export const isutility_collections_stddev_fields = (obj?: { __typename?: any } | null): obj is utility_collections_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collections_stddev_fields"') - return utility_collections_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_collections_stddev_pop_fields_possibleTypes: string[] = ['utility_collections_stddev_pop_fields'] - export const isutility_collections_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is utility_collections_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collections_stddev_pop_fields"') - return utility_collections_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_collections_stddev_samp_fields_possibleTypes: string[] = ['utility_collections_stddev_samp_fields'] - export const isutility_collections_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is utility_collections_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collections_stddev_samp_fields"') - return utility_collections_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_collections_sum_fields_possibleTypes: string[] = ['utility_collections_sum_fields'] - export const isutility_collections_sum_fields = (obj?: { __typename?: any } | null): obj is utility_collections_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collections_sum_fields"') - return utility_collections_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_collections_var_pop_fields_possibleTypes: string[] = ['utility_collections_var_pop_fields'] - export const isutility_collections_var_pop_fields = (obj?: { __typename?: any } | null): obj is utility_collections_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collections_var_pop_fields"') - return utility_collections_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_collections_var_samp_fields_possibleTypes: string[] = ['utility_collections_var_samp_fields'] - export const isutility_collections_var_samp_fields = (obj?: { __typename?: any } | null): obj is utility_collections_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collections_var_samp_fields"') - return utility_collections_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_collections_variance_fields_possibleTypes: string[] = ['utility_collections_variance_fields'] - export const isutility_collections_variance_fields = (obj?: { __typename?: any } | null): obj is utility_collections_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collections_variance_fields"') - return utility_collections_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_demo_mines_possibleTypes: string[] = ['utility_demo_mines'] - export const isutility_demo_mines = (obj?: { __typename?: any } | null): obj is utility_demo_mines => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_mines"') - return utility_demo_mines_possibleTypes.includes(obj.__typename) - } - - - - const utility_demo_mines_aggregate_possibleTypes: string[] = ['utility_demo_mines_aggregate'] - export const isutility_demo_mines_aggregate = (obj?: { __typename?: any } | null): obj is utility_demo_mines_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_mines_aggregate"') - return utility_demo_mines_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const utility_demo_mines_aggregate_fields_possibleTypes: string[] = ['utility_demo_mines_aggregate_fields'] - export const isutility_demo_mines_aggregate_fields = (obj?: { __typename?: any } | null): obj is utility_demo_mines_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_mines_aggregate_fields"') - return utility_demo_mines_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_demo_mines_avg_fields_possibleTypes: string[] = ['utility_demo_mines_avg_fields'] - export const isutility_demo_mines_avg_fields = (obj?: { __typename?: any } | null): obj is utility_demo_mines_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_mines_avg_fields"') - return utility_demo_mines_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_demo_mines_max_fields_possibleTypes: string[] = ['utility_demo_mines_max_fields'] - export const isutility_demo_mines_max_fields = (obj?: { __typename?: any } | null): obj is utility_demo_mines_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_mines_max_fields"') - return utility_demo_mines_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_demo_mines_min_fields_possibleTypes: string[] = ['utility_demo_mines_min_fields'] - export const isutility_demo_mines_min_fields = (obj?: { __typename?: any } | null): obj is utility_demo_mines_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_mines_min_fields"') - return utility_demo_mines_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_demo_mines_mutation_response_possibleTypes: string[] = ['utility_demo_mines_mutation_response'] - export const isutility_demo_mines_mutation_response = (obj?: { __typename?: any } | null): obj is utility_demo_mines_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_mines_mutation_response"') - return utility_demo_mines_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const utility_demo_mines_stddev_fields_possibleTypes: string[] = ['utility_demo_mines_stddev_fields'] - export const isutility_demo_mines_stddev_fields = (obj?: { __typename?: any } | null): obj is utility_demo_mines_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_mines_stddev_fields"') - return utility_demo_mines_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_demo_mines_stddev_pop_fields_possibleTypes: string[] = ['utility_demo_mines_stddev_pop_fields'] - export const isutility_demo_mines_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is utility_demo_mines_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_mines_stddev_pop_fields"') - return utility_demo_mines_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_demo_mines_stddev_samp_fields_possibleTypes: string[] = ['utility_demo_mines_stddev_samp_fields'] - export const isutility_demo_mines_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is utility_demo_mines_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_mines_stddev_samp_fields"') - return utility_demo_mines_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_demo_mines_sum_fields_possibleTypes: string[] = ['utility_demo_mines_sum_fields'] - export const isutility_demo_mines_sum_fields = (obj?: { __typename?: any } | null): obj is utility_demo_mines_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_mines_sum_fields"') - return utility_demo_mines_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_demo_mines_var_pop_fields_possibleTypes: string[] = ['utility_demo_mines_var_pop_fields'] - export const isutility_demo_mines_var_pop_fields = (obj?: { __typename?: any } | null): obj is utility_demo_mines_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_mines_var_pop_fields"') - return utility_demo_mines_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_demo_mines_var_samp_fields_possibleTypes: string[] = ['utility_demo_mines_var_samp_fields'] - export const isutility_demo_mines_var_samp_fields = (obj?: { __typename?: any } | null): obj is utility_demo_mines_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_mines_var_samp_fields"') - return utility_demo_mines_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_demo_mines_variance_fields_possibleTypes: string[] = ['utility_demo_mines_variance_fields'] - export const isutility_demo_mines_variance_fields = (obj?: { __typename?: any } | null): obj is utility_demo_mines_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_mines_variance_fields"') - return utility_demo_mines_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_demo_throws_possibleTypes: string[] = ['utility_demo_throws'] - export const isutility_demo_throws = (obj?: { __typename?: any } | null): obj is utility_demo_throws => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_throws"') - return utility_demo_throws_possibleTypes.includes(obj.__typename) - } - - - - const utility_demo_throws_aggregate_possibleTypes: string[] = ['utility_demo_throws_aggregate'] - export const isutility_demo_throws_aggregate = (obj?: { __typename?: any } | null): obj is utility_demo_throws_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_throws_aggregate"') - return utility_demo_throws_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const utility_demo_throws_aggregate_fields_possibleTypes: string[] = ['utility_demo_throws_aggregate_fields'] - export const isutility_demo_throws_aggregate_fields = (obj?: { __typename?: any } | null): obj is utility_demo_throws_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_throws_aggregate_fields"') - return utility_demo_throws_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_demo_throws_avg_fields_possibleTypes: string[] = ['utility_demo_throws_avg_fields'] - export const isutility_demo_throws_avg_fields = (obj?: { __typename?: any } | null): obj is utility_demo_throws_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_throws_avg_fields"') - return utility_demo_throws_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_demo_throws_max_fields_possibleTypes: string[] = ['utility_demo_throws_max_fields'] - export const isutility_demo_throws_max_fields = (obj?: { __typename?: any } | null): obj is utility_demo_throws_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_throws_max_fields"') - return utility_demo_throws_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_demo_throws_min_fields_possibleTypes: string[] = ['utility_demo_throws_min_fields'] - export const isutility_demo_throws_min_fields = (obj?: { __typename?: any } | null): obj is utility_demo_throws_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_throws_min_fields"') - return utility_demo_throws_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_demo_throws_mutation_response_possibleTypes: string[] = ['utility_demo_throws_mutation_response'] - export const isutility_demo_throws_mutation_response = (obj?: { __typename?: any } | null): obj is utility_demo_throws_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_throws_mutation_response"') - return utility_demo_throws_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const utility_demo_throws_stddev_fields_possibleTypes: string[] = ['utility_demo_throws_stddev_fields'] - export const isutility_demo_throws_stddev_fields = (obj?: { __typename?: any } | null): obj is utility_demo_throws_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_throws_stddev_fields"') - return utility_demo_throws_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_demo_throws_stddev_pop_fields_possibleTypes: string[] = ['utility_demo_throws_stddev_pop_fields'] - export const isutility_demo_throws_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is utility_demo_throws_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_throws_stddev_pop_fields"') - return utility_demo_throws_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_demo_throws_stddev_samp_fields_possibleTypes: string[] = ['utility_demo_throws_stddev_samp_fields'] - export const isutility_demo_throws_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is utility_demo_throws_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_throws_stddev_samp_fields"') - return utility_demo_throws_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_demo_throws_sum_fields_possibleTypes: string[] = ['utility_demo_throws_sum_fields'] - export const isutility_demo_throws_sum_fields = (obj?: { __typename?: any } | null): obj is utility_demo_throws_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_throws_sum_fields"') - return utility_demo_throws_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_demo_throws_var_pop_fields_possibleTypes: string[] = ['utility_demo_throws_var_pop_fields'] - export const isutility_demo_throws_var_pop_fields = (obj?: { __typename?: any } | null): obj is utility_demo_throws_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_throws_var_pop_fields"') - return utility_demo_throws_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_demo_throws_var_samp_fields_possibleTypes: string[] = ['utility_demo_throws_var_samp_fields'] - export const isutility_demo_throws_var_samp_fields = (obj?: { __typename?: any } | null): obj is utility_demo_throws_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_throws_var_samp_fields"') - return utility_demo_throws_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_demo_throws_variance_fields_possibleTypes: string[] = ['utility_demo_throws_variance_fields'] - export const isutility_demo_throws_variance_fields = (obj?: { __typename?: any } | null): obj is utility_demo_throws_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_throws_variance_fields"') - return utility_demo_throws_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_drift_results_possibleTypes: string[] = ['utility_drift_results'] - export const isutility_drift_results = (obj?: { __typename?: any } | null): obj is utility_drift_results => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_results"') - return utility_drift_results_possibleTypes.includes(obj.__typename) - } - - - - const utility_drift_results_aggregate_possibleTypes: string[] = ['utility_drift_results_aggregate'] - export const isutility_drift_results_aggregate = (obj?: { __typename?: any } | null): obj is utility_drift_results_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_results_aggregate"') - return utility_drift_results_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const utility_drift_results_aggregate_fields_possibleTypes: string[] = ['utility_drift_results_aggregate_fields'] - export const isutility_drift_results_aggregate_fields = (obj?: { __typename?: any } | null): obj is utility_drift_results_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_results_aggregate_fields"') - return utility_drift_results_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_drift_results_avg_fields_possibleTypes: string[] = ['utility_drift_results_avg_fields'] - export const isutility_drift_results_avg_fields = (obj?: { __typename?: any } | null): obj is utility_drift_results_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_results_avg_fields"') - return utility_drift_results_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_drift_results_max_fields_possibleTypes: string[] = ['utility_drift_results_max_fields'] - export const isutility_drift_results_max_fields = (obj?: { __typename?: any } | null): obj is utility_drift_results_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_results_max_fields"') - return utility_drift_results_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_drift_results_min_fields_possibleTypes: string[] = ['utility_drift_results_min_fields'] - export const isutility_drift_results_min_fields = (obj?: { __typename?: any } | null): obj is utility_drift_results_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_results_min_fields"') - return utility_drift_results_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_drift_results_mutation_response_possibleTypes: string[] = ['utility_drift_results_mutation_response'] - export const isutility_drift_results_mutation_response = (obj?: { __typename?: any } | null): obj is utility_drift_results_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_results_mutation_response"') - return utility_drift_results_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const utility_drift_results_stddev_fields_possibleTypes: string[] = ['utility_drift_results_stddev_fields'] - export const isutility_drift_results_stddev_fields = (obj?: { __typename?: any } | null): obj is utility_drift_results_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_results_stddev_fields"') - return utility_drift_results_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_drift_results_stddev_pop_fields_possibleTypes: string[] = ['utility_drift_results_stddev_pop_fields'] - export const isutility_drift_results_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is utility_drift_results_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_results_stddev_pop_fields"') - return utility_drift_results_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_drift_results_stddev_samp_fields_possibleTypes: string[] = ['utility_drift_results_stddev_samp_fields'] - export const isutility_drift_results_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is utility_drift_results_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_results_stddev_samp_fields"') - return utility_drift_results_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_drift_results_sum_fields_possibleTypes: string[] = ['utility_drift_results_sum_fields'] - export const isutility_drift_results_sum_fields = (obj?: { __typename?: any } | null): obj is utility_drift_results_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_results_sum_fields"') - return utility_drift_results_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_drift_results_var_pop_fields_possibleTypes: string[] = ['utility_drift_results_var_pop_fields'] - export const isutility_drift_results_var_pop_fields = (obj?: { __typename?: any } | null): obj is utility_drift_results_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_results_var_pop_fields"') - return utility_drift_results_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_drift_results_var_samp_fields_possibleTypes: string[] = ['utility_drift_results_var_samp_fields'] - export const isutility_drift_results_var_samp_fields = (obj?: { __typename?: any } | null): obj is utility_drift_results_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_results_var_samp_fields"') - return utility_drift_results_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_drift_results_variance_fields_possibleTypes: string[] = ['utility_drift_results_variance_fields'] - export const isutility_drift_results_variance_fields = (obj?: { __typename?: any } | null): obj is utility_drift_results_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_results_variance_fields"') - return utility_drift_results_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_drift_scans_possibleTypes: string[] = ['utility_drift_scans'] - export const isutility_drift_scans = (obj?: { __typename?: any } | null): obj is utility_drift_scans => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_scans"') - return utility_drift_scans_possibleTypes.includes(obj.__typename) - } - - - - const utility_drift_scans_aggregate_possibleTypes: string[] = ['utility_drift_scans_aggregate'] - export const isutility_drift_scans_aggregate = (obj?: { __typename?: any } | null): obj is utility_drift_scans_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_scans_aggregate"') - return utility_drift_scans_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const utility_drift_scans_aggregate_fields_possibleTypes: string[] = ['utility_drift_scans_aggregate_fields'] - export const isutility_drift_scans_aggregate_fields = (obj?: { __typename?: any } | null): obj is utility_drift_scans_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_scans_aggregate_fields"') - return utility_drift_scans_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_drift_scans_avg_fields_possibleTypes: string[] = ['utility_drift_scans_avg_fields'] - export const isutility_drift_scans_avg_fields = (obj?: { __typename?: any } | null): obj is utility_drift_scans_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_scans_avg_fields"') - return utility_drift_scans_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_drift_scans_max_fields_possibleTypes: string[] = ['utility_drift_scans_max_fields'] - export const isutility_drift_scans_max_fields = (obj?: { __typename?: any } | null): obj is utility_drift_scans_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_scans_max_fields"') - return utility_drift_scans_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_drift_scans_min_fields_possibleTypes: string[] = ['utility_drift_scans_min_fields'] - export const isutility_drift_scans_min_fields = (obj?: { __typename?: any } | null): obj is utility_drift_scans_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_scans_min_fields"') - return utility_drift_scans_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_drift_scans_mutation_response_possibleTypes: string[] = ['utility_drift_scans_mutation_response'] - export const isutility_drift_scans_mutation_response = (obj?: { __typename?: any } | null): obj is utility_drift_scans_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_scans_mutation_response"') - return utility_drift_scans_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const utility_drift_scans_stddev_fields_possibleTypes: string[] = ['utility_drift_scans_stddev_fields'] - export const isutility_drift_scans_stddev_fields = (obj?: { __typename?: any } | null): obj is utility_drift_scans_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_scans_stddev_fields"') - return utility_drift_scans_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_drift_scans_stddev_pop_fields_possibleTypes: string[] = ['utility_drift_scans_stddev_pop_fields'] - export const isutility_drift_scans_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is utility_drift_scans_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_scans_stddev_pop_fields"') - return utility_drift_scans_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_drift_scans_stddev_samp_fields_possibleTypes: string[] = ['utility_drift_scans_stddev_samp_fields'] - export const isutility_drift_scans_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is utility_drift_scans_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_scans_stddev_samp_fields"') - return utility_drift_scans_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_drift_scans_sum_fields_possibleTypes: string[] = ['utility_drift_scans_sum_fields'] - export const isutility_drift_scans_sum_fields = (obj?: { __typename?: any } | null): obj is utility_drift_scans_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_scans_sum_fields"') - return utility_drift_scans_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_drift_scans_var_pop_fields_possibleTypes: string[] = ['utility_drift_scans_var_pop_fields'] - export const isutility_drift_scans_var_pop_fields = (obj?: { __typename?: any } | null): obj is utility_drift_scans_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_scans_var_pop_fields"') - return utility_drift_scans_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_drift_scans_var_samp_fields_possibleTypes: string[] = ['utility_drift_scans_var_samp_fields'] - export const isutility_drift_scans_var_samp_fields = (obj?: { __typename?: any } | null): obj is utility_drift_scans_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_scans_var_samp_fields"') - return utility_drift_scans_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_drift_scans_variance_fields_possibleTypes: string[] = ['utility_drift_scans_variance_fields'] - export const isutility_drift_scans_variance_fields = (obj?: { __typename?: any } | null): obj is utility_drift_scans_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_scans_variance_fields"') - return utility_drift_scans_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_favorites_possibleTypes: string[] = ['utility_lineup_favorites'] - export const isutility_lineup_favorites = (obj?: { __typename?: any } | null): obj is utility_lineup_favorites => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_favorites"') - return utility_lineup_favorites_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_favorites_aggregate_possibleTypes: string[] = ['utility_lineup_favorites_aggregate'] - export const isutility_lineup_favorites_aggregate = (obj?: { __typename?: any } | null): obj is utility_lineup_favorites_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_favorites_aggregate"') - return utility_lineup_favorites_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_favorites_aggregate_fields_possibleTypes: string[] = ['utility_lineup_favorites_aggregate_fields'] - export const isutility_lineup_favorites_aggregate_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_favorites_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_favorites_aggregate_fields"') - return utility_lineup_favorites_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_favorites_avg_fields_possibleTypes: string[] = ['utility_lineup_favorites_avg_fields'] - export const isutility_lineup_favorites_avg_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_favorites_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_favorites_avg_fields"') - return utility_lineup_favorites_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_favorites_max_fields_possibleTypes: string[] = ['utility_lineup_favorites_max_fields'] - export const isutility_lineup_favorites_max_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_favorites_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_favorites_max_fields"') - return utility_lineup_favorites_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_favorites_min_fields_possibleTypes: string[] = ['utility_lineup_favorites_min_fields'] - export const isutility_lineup_favorites_min_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_favorites_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_favorites_min_fields"') - return utility_lineup_favorites_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_favorites_mutation_response_possibleTypes: string[] = ['utility_lineup_favorites_mutation_response'] - export const isutility_lineup_favorites_mutation_response = (obj?: { __typename?: any } | null): obj is utility_lineup_favorites_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_favorites_mutation_response"') - return utility_lineup_favorites_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_favorites_stddev_fields_possibleTypes: string[] = ['utility_lineup_favorites_stddev_fields'] - export const isutility_lineup_favorites_stddev_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_favorites_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_favorites_stddev_fields"') - return utility_lineup_favorites_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_favorites_stddev_pop_fields_possibleTypes: string[] = ['utility_lineup_favorites_stddev_pop_fields'] - export const isutility_lineup_favorites_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_favorites_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_favorites_stddev_pop_fields"') - return utility_lineup_favorites_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_favorites_stddev_samp_fields_possibleTypes: string[] = ['utility_lineup_favorites_stddev_samp_fields'] - export const isutility_lineup_favorites_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_favorites_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_favorites_stddev_samp_fields"') - return utility_lineup_favorites_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_favorites_sum_fields_possibleTypes: string[] = ['utility_lineup_favorites_sum_fields'] - export const isutility_lineup_favorites_sum_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_favorites_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_favorites_sum_fields"') - return utility_lineup_favorites_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_favorites_var_pop_fields_possibleTypes: string[] = ['utility_lineup_favorites_var_pop_fields'] - export const isutility_lineup_favorites_var_pop_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_favorites_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_favorites_var_pop_fields"') - return utility_lineup_favorites_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_favorites_var_samp_fields_possibleTypes: string[] = ['utility_lineup_favorites_var_samp_fields'] - export const isutility_lineup_favorites_var_samp_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_favorites_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_favorites_var_samp_fields"') - return utility_lineup_favorites_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_favorites_variance_fields_possibleTypes: string[] = ['utility_lineup_favorites_variance_fields'] - export const isutility_lineup_favorites_variance_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_favorites_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_favorites_variance_fields"') - return utility_lineup_favorites_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_progress_possibleTypes: string[] = ['utility_lineup_progress'] - export const isutility_lineup_progress = (obj?: { __typename?: any } | null): obj is utility_lineup_progress => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_progress"') - return utility_lineup_progress_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_progress_aggregate_possibleTypes: string[] = ['utility_lineup_progress_aggregate'] - export const isutility_lineup_progress_aggregate = (obj?: { __typename?: any } | null): obj is utility_lineup_progress_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_progress_aggregate"') - return utility_lineup_progress_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_progress_aggregate_fields_possibleTypes: string[] = ['utility_lineup_progress_aggregate_fields'] - export const isutility_lineup_progress_aggregate_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_progress_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_progress_aggregate_fields"') - return utility_lineup_progress_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_progress_avg_fields_possibleTypes: string[] = ['utility_lineup_progress_avg_fields'] - export const isutility_lineup_progress_avg_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_progress_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_progress_avg_fields"') - return utility_lineup_progress_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_progress_max_fields_possibleTypes: string[] = ['utility_lineup_progress_max_fields'] - export const isutility_lineup_progress_max_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_progress_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_progress_max_fields"') - return utility_lineup_progress_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_progress_min_fields_possibleTypes: string[] = ['utility_lineup_progress_min_fields'] - export const isutility_lineup_progress_min_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_progress_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_progress_min_fields"') - return utility_lineup_progress_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_progress_mutation_response_possibleTypes: string[] = ['utility_lineup_progress_mutation_response'] - export const isutility_lineup_progress_mutation_response = (obj?: { __typename?: any } | null): obj is utility_lineup_progress_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_progress_mutation_response"') - return utility_lineup_progress_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_progress_stddev_fields_possibleTypes: string[] = ['utility_lineup_progress_stddev_fields'] - export const isutility_lineup_progress_stddev_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_progress_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_progress_stddev_fields"') - return utility_lineup_progress_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_progress_stddev_pop_fields_possibleTypes: string[] = ['utility_lineup_progress_stddev_pop_fields'] - export const isutility_lineup_progress_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_progress_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_progress_stddev_pop_fields"') - return utility_lineup_progress_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_progress_stddev_samp_fields_possibleTypes: string[] = ['utility_lineup_progress_stddev_samp_fields'] - export const isutility_lineup_progress_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_progress_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_progress_stddev_samp_fields"') - return utility_lineup_progress_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_progress_sum_fields_possibleTypes: string[] = ['utility_lineup_progress_sum_fields'] - export const isutility_lineup_progress_sum_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_progress_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_progress_sum_fields"') - return utility_lineup_progress_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_progress_var_pop_fields_possibleTypes: string[] = ['utility_lineup_progress_var_pop_fields'] - export const isutility_lineup_progress_var_pop_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_progress_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_progress_var_pop_fields"') - return utility_lineup_progress_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_progress_var_samp_fields_possibleTypes: string[] = ['utility_lineup_progress_var_samp_fields'] - export const isutility_lineup_progress_var_samp_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_progress_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_progress_var_samp_fields"') - return utility_lineup_progress_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_progress_variance_fields_possibleTypes: string[] = ['utility_lineup_progress_variance_fields'] - export const isutility_lineup_progress_variance_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_progress_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_progress_variance_fields"') - return utility_lineup_progress_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_renders_possibleTypes: string[] = ['utility_lineup_renders'] - export const isutility_lineup_renders = (obj?: { __typename?: any } | null): obj is utility_lineup_renders => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_renders"') - return utility_lineup_renders_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_renders_aggregate_possibleTypes: string[] = ['utility_lineup_renders_aggregate'] - export const isutility_lineup_renders_aggregate = (obj?: { __typename?: any } | null): obj is utility_lineup_renders_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_renders_aggregate"') - return utility_lineup_renders_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_renders_aggregate_fields_possibleTypes: string[] = ['utility_lineup_renders_aggregate_fields'] - export const isutility_lineup_renders_aggregate_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_renders_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_renders_aggregate_fields"') - return utility_lineup_renders_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_renders_avg_fields_possibleTypes: string[] = ['utility_lineup_renders_avg_fields'] - export const isutility_lineup_renders_avg_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_renders_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_renders_avg_fields"') - return utility_lineup_renders_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_renders_max_fields_possibleTypes: string[] = ['utility_lineup_renders_max_fields'] - export const isutility_lineup_renders_max_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_renders_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_renders_max_fields"') - return utility_lineup_renders_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_renders_min_fields_possibleTypes: string[] = ['utility_lineup_renders_min_fields'] - export const isutility_lineup_renders_min_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_renders_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_renders_min_fields"') - return utility_lineup_renders_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_renders_mutation_response_possibleTypes: string[] = ['utility_lineup_renders_mutation_response'] - export const isutility_lineup_renders_mutation_response = (obj?: { __typename?: any } | null): obj is utility_lineup_renders_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_renders_mutation_response"') - return utility_lineup_renders_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_renders_stddev_fields_possibleTypes: string[] = ['utility_lineup_renders_stddev_fields'] - export const isutility_lineup_renders_stddev_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_renders_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_renders_stddev_fields"') - return utility_lineup_renders_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_renders_stddev_pop_fields_possibleTypes: string[] = ['utility_lineup_renders_stddev_pop_fields'] - export const isutility_lineup_renders_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_renders_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_renders_stddev_pop_fields"') - return utility_lineup_renders_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_renders_stddev_samp_fields_possibleTypes: string[] = ['utility_lineup_renders_stddev_samp_fields'] - export const isutility_lineup_renders_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_renders_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_renders_stddev_samp_fields"') - return utility_lineup_renders_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_renders_sum_fields_possibleTypes: string[] = ['utility_lineup_renders_sum_fields'] - export const isutility_lineup_renders_sum_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_renders_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_renders_sum_fields"') - return utility_lineup_renders_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_renders_var_pop_fields_possibleTypes: string[] = ['utility_lineup_renders_var_pop_fields'] - export const isutility_lineup_renders_var_pop_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_renders_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_renders_var_pop_fields"') - return utility_lineup_renders_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_renders_var_samp_fields_possibleTypes: string[] = ['utility_lineup_renders_var_samp_fields'] - export const isutility_lineup_renders_var_samp_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_renders_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_renders_var_samp_fields"') - return utility_lineup_renders_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_renders_variance_fields_possibleTypes: string[] = ['utility_lineup_renders_variance_fields'] - export const isutility_lineup_renders_variance_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_renders_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_renders_variance_fields"') - return utility_lineup_renders_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_repairs_possibleTypes: string[] = ['utility_lineup_repairs'] - export const isutility_lineup_repairs = (obj?: { __typename?: any } | null): obj is utility_lineup_repairs => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_repairs"') - return utility_lineup_repairs_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_repairs_aggregate_possibleTypes: string[] = ['utility_lineup_repairs_aggregate'] - export const isutility_lineup_repairs_aggregate = (obj?: { __typename?: any } | null): obj is utility_lineup_repairs_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_repairs_aggregate"') - return utility_lineup_repairs_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_repairs_aggregate_fields_possibleTypes: string[] = ['utility_lineup_repairs_aggregate_fields'] - export const isutility_lineup_repairs_aggregate_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_repairs_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_repairs_aggregate_fields"') - return utility_lineup_repairs_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_repairs_avg_fields_possibleTypes: string[] = ['utility_lineup_repairs_avg_fields'] - export const isutility_lineup_repairs_avg_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_repairs_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_repairs_avg_fields"') - return utility_lineup_repairs_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_repairs_max_fields_possibleTypes: string[] = ['utility_lineup_repairs_max_fields'] - export const isutility_lineup_repairs_max_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_repairs_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_repairs_max_fields"') - return utility_lineup_repairs_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_repairs_min_fields_possibleTypes: string[] = ['utility_lineup_repairs_min_fields'] - export const isutility_lineup_repairs_min_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_repairs_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_repairs_min_fields"') - return utility_lineup_repairs_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_repairs_mutation_response_possibleTypes: string[] = ['utility_lineup_repairs_mutation_response'] - export const isutility_lineup_repairs_mutation_response = (obj?: { __typename?: any } | null): obj is utility_lineup_repairs_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_repairs_mutation_response"') - return utility_lineup_repairs_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_repairs_stddev_fields_possibleTypes: string[] = ['utility_lineup_repairs_stddev_fields'] - export const isutility_lineup_repairs_stddev_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_repairs_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_repairs_stddev_fields"') - return utility_lineup_repairs_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_repairs_stddev_pop_fields_possibleTypes: string[] = ['utility_lineup_repairs_stddev_pop_fields'] - export const isutility_lineup_repairs_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_repairs_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_repairs_stddev_pop_fields"') - return utility_lineup_repairs_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_repairs_stddev_samp_fields_possibleTypes: string[] = ['utility_lineup_repairs_stddev_samp_fields'] - export const isutility_lineup_repairs_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_repairs_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_repairs_stddev_samp_fields"') - return utility_lineup_repairs_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_repairs_sum_fields_possibleTypes: string[] = ['utility_lineup_repairs_sum_fields'] - export const isutility_lineup_repairs_sum_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_repairs_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_repairs_sum_fields"') - return utility_lineup_repairs_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_repairs_var_pop_fields_possibleTypes: string[] = ['utility_lineup_repairs_var_pop_fields'] - export const isutility_lineup_repairs_var_pop_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_repairs_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_repairs_var_pop_fields"') - return utility_lineup_repairs_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_repairs_var_samp_fields_possibleTypes: string[] = ['utility_lineup_repairs_var_samp_fields'] - export const isutility_lineup_repairs_var_samp_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_repairs_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_repairs_var_samp_fields"') - return utility_lineup_repairs_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_repairs_variance_fields_possibleTypes: string[] = ['utility_lineup_repairs_variance_fields'] - export const isutility_lineup_repairs_variance_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_repairs_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_repairs_variance_fields"') - return utility_lineup_repairs_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_votes_possibleTypes: string[] = ['utility_lineup_votes'] - export const isutility_lineup_votes = (obj?: { __typename?: any } | null): obj is utility_lineup_votes => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_votes"') - return utility_lineup_votes_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_votes_aggregate_possibleTypes: string[] = ['utility_lineup_votes_aggregate'] - export const isutility_lineup_votes_aggregate = (obj?: { __typename?: any } | null): obj is utility_lineup_votes_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_votes_aggregate"') - return utility_lineup_votes_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_votes_aggregate_fields_possibleTypes: string[] = ['utility_lineup_votes_aggregate_fields'] - export const isutility_lineup_votes_aggregate_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_votes_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_votes_aggregate_fields"') - return utility_lineup_votes_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_votes_avg_fields_possibleTypes: string[] = ['utility_lineup_votes_avg_fields'] - export const isutility_lineup_votes_avg_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_votes_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_votes_avg_fields"') - return utility_lineup_votes_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_votes_max_fields_possibleTypes: string[] = ['utility_lineup_votes_max_fields'] - export const isutility_lineup_votes_max_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_votes_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_votes_max_fields"') - return utility_lineup_votes_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_votes_min_fields_possibleTypes: string[] = ['utility_lineup_votes_min_fields'] - export const isutility_lineup_votes_min_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_votes_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_votes_min_fields"') - return utility_lineup_votes_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_votes_mutation_response_possibleTypes: string[] = ['utility_lineup_votes_mutation_response'] - export const isutility_lineup_votes_mutation_response = (obj?: { __typename?: any } | null): obj is utility_lineup_votes_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_votes_mutation_response"') - return utility_lineup_votes_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_votes_stddev_fields_possibleTypes: string[] = ['utility_lineup_votes_stddev_fields'] - export const isutility_lineup_votes_stddev_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_votes_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_votes_stddev_fields"') - return utility_lineup_votes_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_votes_stddev_pop_fields_possibleTypes: string[] = ['utility_lineup_votes_stddev_pop_fields'] - export const isutility_lineup_votes_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_votes_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_votes_stddev_pop_fields"') - return utility_lineup_votes_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_votes_stddev_samp_fields_possibleTypes: string[] = ['utility_lineup_votes_stddev_samp_fields'] - export const isutility_lineup_votes_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_votes_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_votes_stddev_samp_fields"') - return utility_lineup_votes_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_votes_sum_fields_possibleTypes: string[] = ['utility_lineup_votes_sum_fields'] - export const isutility_lineup_votes_sum_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_votes_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_votes_sum_fields"') - return utility_lineup_votes_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_votes_var_pop_fields_possibleTypes: string[] = ['utility_lineup_votes_var_pop_fields'] - export const isutility_lineup_votes_var_pop_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_votes_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_votes_var_pop_fields"') - return utility_lineup_votes_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_votes_var_samp_fields_possibleTypes: string[] = ['utility_lineup_votes_var_samp_fields'] - export const isutility_lineup_votes_var_samp_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_votes_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_votes_var_samp_fields"') - return utility_lineup_votes_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineup_votes_variance_fields_possibleTypes: string[] = ['utility_lineup_votes_variance_fields'] - export const isutility_lineup_votes_variance_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_votes_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_votes_variance_fields"') - return utility_lineup_votes_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineups_possibleTypes: string[] = ['utility_lineups'] - export const isutility_lineups = (obj?: { __typename?: any } | null): obj is utility_lineups => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineups"') - return utility_lineups_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineups_aggregate_possibleTypes: string[] = ['utility_lineups_aggregate'] - export const isutility_lineups_aggregate = (obj?: { __typename?: any } | null): obj is utility_lineups_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineups_aggregate"') - return utility_lineups_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineups_aggregate_fields_possibleTypes: string[] = ['utility_lineups_aggregate_fields'] - export const isutility_lineups_aggregate_fields = (obj?: { __typename?: any } | null): obj is utility_lineups_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineups_aggregate_fields"') - return utility_lineups_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineups_avg_fields_possibleTypes: string[] = ['utility_lineups_avg_fields'] - export const isutility_lineups_avg_fields = (obj?: { __typename?: any } | null): obj is utility_lineups_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineups_avg_fields"') - return utility_lineups_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineups_max_fields_possibleTypes: string[] = ['utility_lineups_max_fields'] - export const isutility_lineups_max_fields = (obj?: { __typename?: any } | null): obj is utility_lineups_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineups_max_fields"') - return utility_lineups_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineups_min_fields_possibleTypes: string[] = ['utility_lineups_min_fields'] - export const isutility_lineups_min_fields = (obj?: { __typename?: any } | null): obj is utility_lineups_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineups_min_fields"') - return utility_lineups_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineups_mutation_response_possibleTypes: string[] = ['utility_lineups_mutation_response'] - export const isutility_lineups_mutation_response = (obj?: { __typename?: any } | null): obj is utility_lineups_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineups_mutation_response"') - return utility_lineups_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineups_stddev_fields_possibleTypes: string[] = ['utility_lineups_stddev_fields'] - export const isutility_lineups_stddev_fields = (obj?: { __typename?: any } | null): obj is utility_lineups_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineups_stddev_fields"') - return utility_lineups_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineups_stddev_pop_fields_possibleTypes: string[] = ['utility_lineups_stddev_pop_fields'] - export const isutility_lineups_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is utility_lineups_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineups_stddev_pop_fields"') - return utility_lineups_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineups_stddev_samp_fields_possibleTypes: string[] = ['utility_lineups_stddev_samp_fields'] - export const isutility_lineups_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is utility_lineups_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineups_stddev_samp_fields"') - return utility_lineups_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineups_sum_fields_possibleTypes: string[] = ['utility_lineups_sum_fields'] - export const isutility_lineups_sum_fields = (obj?: { __typename?: any } | null): obj is utility_lineups_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineups_sum_fields"') - return utility_lineups_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineups_var_pop_fields_possibleTypes: string[] = ['utility_lineups_var_pop_fields'] - export const isutility_lineups_var_pop_fields = (obj?: { __typename?: any } | null): obj is utility_lineups_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineups_var_pop_fields"') - return utility_lineups_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineups_var_samp_fields_possibleTypes: string[] = ['utility_lineups_var_samp_fields'] - export const isutility_lineups_var_samp_fields = (obj?: { __typename?: any } | null): obj is utility_lineups_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineups_var_samp_fields"') - return utility_lineups_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_lineups_variance_fields_possibleTypes: string[] = ['utility_lineups_variance_fields'] - export const isutility_lineups_variance_fields = (obj?: { __typename?: any } | null): obj is utility_lineups_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineups_variance_fields"') - return utility_lineups_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_meta_lineups_possibleTypes: string[] = ['utility_meta_lineups'] - export const isutility_meta_lineups = (obj?: { __typename?: any } | null): obj is utility_meta_lineups => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_meta_lineups"') - return utility_meta_lineups_possibleTypes.includes(obj.__typename) - } - - - - const utility_meta_lineups_aggregate_possibleTypes: string[] = ['utility_meta_lineups_aggregate'] - export const isutility_meta_lineups_aggregate = (obj?: { __typename?: any } | null): obj is utility_meta_lineups_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_meta_lineups_aggregate"') - return utility_meta_lineups_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const utility_meta_lineups_aggregate_fields_possibleTypes: string[] = ['utility_meta_lineups_aggregate_fields'] - export const isutility_meta_lineups_aggregate_fields = (obj?: { __typename?: any } | null): obj is utility_meta_lineups_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_meta_lineups_aggregate_fields"') - return utility_meta_lineups_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_meta_lineups_avg_fields_possibleTypes: string[] = ['utility_meta_lineups_avg_fields'] - export const isutility_meta_lineups_avg_fields = (obj?: { __typename?: any } | null): obj is utility_meta_lineups_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_meta_lineups_avg_fields"') - return utility_meta_lineups_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_meta_lineups_max_fields_possibleTypes: string[] = ['utility_meta_lineups_max_fields'] - export const isutility_meta_lineups_max_fields = (obj?: { __typename?: any } | null): obj is utility_meta_lineups_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_meta_lineups_max_fields"') - return utility_meta_lineups_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_meta_lineups_min_fields_possibleTypes: string[] = ['utility_meta_lineups_min_fields'] - export const isutility_meta_lineups_min_fields = (obj?: { __typename?: any } | null): obj is utility_meta_lineups_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_meta_lineups_min_fields"') - return utility_meta_lineups_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_meta_lineups_mutation_response_possibleTypes: string[] = ['utility_meta_lineups_mutation_response'] - export const isutility_meta_lineups_mutation_response = (obj?: { __typename?: any } | null): obj is utility_meta_lineups_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_meta_lineups_mutation_response"') - return utility_meta_lineups_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const utility_meta_lineups_stddev_fields_possibleTypes: string[] = ['utility_meta_lineups_stddev_fields'] - export const isutility_meta_lineups_stddev_fields = (obj?: { __typename?: any } | null): obj is utility_meta_lineups_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_meta_lineups_stddev_fields"') - return utility_meta_lineups_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_meta_lineups_stddev_pop_fields_possibleTypes: string[] = ['utility_meta_lineups_stddev_pop_fields'] - export const isutility_meta_lineups_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is utility_meta_lineups_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_meta_lineups_stddev_pop_fields"') - return utility_meta_lineups_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_meta_lineups_stddev_samp_fields_possibleTypes: string[] = ['utility_meta_lineups_stddev_samp_fields'] - export const isutility_meta_lineups_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is utility_meta_lineups_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_meta_lineups_stddev_samp_fields"') - return utility_meta_lineups_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_meta_lineups_sum_fields_possibleTypes: string[] = ['utility_meta_lineups_sum_fields'] - export const isutility_meta_lineups_sum_fields = (obj?: { __typename?: any } | null): obj is utility_meta_lineups_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_meta_lineups_sum_fields"') - return utility_meta_lineups_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_meta_lineups_var_pop_fields_possibleTypes: string[] = ['utility_meta_lineups_var_pop_fields'] - export const isutility_meta_lineups_var_pop_fields = (obj?: { __typename?: any } | null): obj is utility_meta_lineups_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_meta_lineups_var_pop_fields"') - return utility_meta_lineups_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_meta_lineups_var_samp_fields_possibleTypes: string[] = ['utility_meta_lineups_var_samp_fields'] - export const isutility_meta_lineups_var_samp_fields = (obj?: { __typename?: any } | null): obj is utility_meta_lineups_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_meta_lineups_var_samp_fields"') - return utility_meta_lineups_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_meta_lineups_variance_fields_possibleTypes: string[] = ['utility_meta_lineups_variance_fields'] - export const isutility_meta_lineups_variance_fields = (obj?: { __typename?: any } | null): obj is utility_meta_lineups_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_meta_lineups_variance_fields"') - return utility_meta_lineups_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_playbook_steps_possibleTypes: string[] = ['utility_playbook_steps'] - export const isutility_playbook_steps = (obj?: { __typename?: any } | null): obj is utility_playbook_steps => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbook_steps"') - return utility_playbook_steps_possibleTypes.includes(obj.__typename) - } - - - - const utility_playbook_steps_aggregate_possibleTypes: string[] = ['utility_playbook_steps_aggregate'] - export const isutility_playbook_steps_aggregate = (obj?: { __typename?: any } | null): obj is utility_playbook_steps_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbook_steps_aggregate"') - return utility_playbook_steps_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const utility_playbook_steps_aggregate_fields_possibleTypes: string[] = ['utility_playbook_steps_aggregate_fields'] - export const isutility_playbook_steps_aggregate_fields = (obj?: { __typename?: any } | null): obj is utility_playbook_steps_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbook_steps_aggregate_fields"') - return utility_playbook_steps_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_playbook_steps_avg_fields_possibleTypes: string[] = ['utility_playbook_steps_avg_fields'] - export const isutility_playbook_steps_avg_fields = (obj?: { __typename?: any } | null): obj is utility_playbook_steps_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbook_steps_avg_fields"') - return utility_playbook_steps_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_playbook_steps_max_fields_possibleTypes: string[] = ['utility_playbook_steps_max_fields'] - export const isutility_playbook_steps_max_fields = (obj?: { __typename?: any } | null): obj is utility_playbook_steps_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbook_steps_max_fields"') - return utility_playbook_steps_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_playbook_steps_min_fields_possibleTypes: string[] = ['utility_playbook_steps_min_fields'] - export const isutility_playbook_steps_min_fields = (obj?: { __typename?: any } | null): obj is utility_playbook_steps_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbook_steps_min_fields"') - return utility_playbook_steps_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_playbook_steps_mutation_response_possibleTypes: string[] = ['utility_playbook_steps_mutation_response'] - export const isutility_playbook_steps_mutation_response = (obj?: { __typename?: any } | null): obj is utility_playbook_steps_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbook_steps_mutation_response"') - return utility_playbook_steps_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const utility_playbook_steps_stddev_fields_possibleTypes: string[] = ['utility_playbook_steps_stddev_fields'] - export const isutility_playbook_steps_stddev_fields = (obj?: { __typename?: any } | null): obj is utility_playbook_steps_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbook_steps_stddev_fields"') - return utility_playbook_steps_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_playbook_steps_stddev_pop_fields_possibleTypes: string[] = ['utility_playbook_steps_stddev_pop_fields'] - export const isutility_playbook_steps_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is utility_playbook_steps_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbook_steps_stddev_pop_fields"') - return utility_playbook_steps_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_playbook_steps_stddev_samp_fields_possibleTypes: string[] = ['utility_playbook_steps_stddev_samp_fields'] - export const isutility_playbook_steps_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is utility_playbook_steps_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbook_steps_stddev_samp_fields"') - return utility_playbook_steps_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_playbook_steps_sum_fields_possibleTypes: string[] = ['utility_playbook_steps_sum_fields'] - export const isutility_playbook_steps_sum_fields = (obj?: { __typename?: any } | null): obj is utility_playbook_steps_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbook_steps_sum_fields"') - return utility_playbook_steps_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_playbook_steps_var_pop_fields_possibleTypes: string[] = ['utility_playbook_steps_var_pop_fields'] - export const isutility_playbook_steps_var_pop_fields = (obj?: { __typename?: any } | null): obj is utility_playbook_steps_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbook_steps_var_pop_fields"') - return utility_playbook_steps_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_playbook_steps_var_samp_fields_possibleTypes: string[] = ['utility_playbook_steps_var_samp_fields'] - export const isutility_playbook_steps_var_samp_fields = (obj?: { __typename?: any } | null): obj is utility_playbook_steps_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbook_steps_var_samp_fields"') - return utility_playbook_steps_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_playbook_steps_variance_fields_possibleTypes: string[] = ['utility_playbook_steps_variance_fields'] - export const isutility_playbook_steps_variance_fields = (obj?: { __typename?: any } | null): obj is utility_playbook_steps_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbook_steps_variance_fields"') - return utility_playbook_steps_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_playbooks_possibleTypes: string[] = ['utility_playbooks'] - export const isutility_playbooks = (obj?: { __typename?: any } | null): obj is utility_playbooks => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbooks"') - return utility_playbooks_possibleTypes.includes(obj.__typename) - } - - - - const utility_playbooks_aggregate_possibleTypes: string[] = ['utility_playbooks_aggregate'] - export const isutility_playbooks_aggregate = (obj?: { __typename?: any } | null): obj is utility_playbooks_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbooks_aggregate"') - return utility_playbooks_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const utility_playbooks_aggregate_fields_possibleTypes: string[] = ['utility_playbooks_aggregate_fields'] - export const isutility_playbooks_aggregate_fields = (obj?: { __typename?: any } | null): obj is utility_playbooks_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbooks_aggregate_fields"') - return utility_playbooks_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_playbooks_avg_fields_possibleTypes: string[] = ['utility_playbooks_avg_fields'] - export const isutility_playbooks_avg_fields = (obj?: { __typename?: any } | null): obj is utility_playbooks_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbooks_avg_fields"') - return utility_playbooks_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_playbooks_max_fields_possibleTypes: string[] = ['utility_playbooks_max_fields'] - export const isutility_playbooks_max_fields = (obj?: { __typename?: any } | null): obj is utility_playbooks_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbooks_max_fields"') - return utility_playbooks_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_playbooks_min_fields_possibleTypes: string[] = ['utility_playbooks_min_fields'] - export const isutility_playbooks_min_fields = (obj?: { __typename?: any } | null): obj is utility_playbooks_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbooks_min_fields"') - return utility_playbooks_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_playbooks_mutation_response_possibleTypes: string[] = ['utility_playbooks_mutation_response'] - export const isutility_playbooks_mutation_response = (obj?: { __typename?: any } | null): obj is utility_playbooks_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbooks_mutation_response"') - return utility_playbooks_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const utility_playbooks_stddev_fields_possibleTypes: string[] = ['utility_playbooks_stddev_fields'] - export const isutility_playbooks_stddev_fields = (obj?: { __typename?: any } | null): obj is utility_playbooks_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbooks_stddev_fields"') - return utility_playbooks_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_playbooks_stddev_pop_fields_possibleTypes: string[] = ['utility_playbooks_stddev_pop_fields'] - export const isutility_playbooks_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is utility_playbooks_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbooks_stddev_pop_fields"') - return utility_playbooks_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_playbooks_stddev_samp_fields_possibleTypes: string[] = ['utility_playbooks_stddev_samp_fields'] - export const isutility_playbooks_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is utility_playbooks_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbooks_stddev_samp_fields"') - return utility_playbooks_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_playbooks_sum_fields_possibleTypes: string[] = ['utility_playbooks_sum_fields'] - export const isutility_playbooks_sum_fields = (obj?: { __typename?: any } | null): obj is utility_playbooks_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbooks_sum_fields"') - return utility_playbooks_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_playbooks_var_pop_fields_possibleTypes: string[] = ['utility_playbooks_var_pop_fields'] - export const isutility_playbooks_var_pop_fields = (obj?: { __typename?: any } | null): obj is utility_playbooks_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbooks_var_pop_fields"') - return utility_playbooks_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_playbooks_var_samp_fields_possibleTypes: string[] = ['utility_playbooks_var_samp_fields'] - export const isutility_playbooks_var_samp_fields = (obj?: { __typename?: any } | null): obj is utility_playbooks_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbooks_var_samp_fields"') - return utility_playbooks_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_playbooks_variance_fields_possibleTypes: string[] = ['utility_playbooks_variance_fields'] - export const isutility_playbooks_variance_fields = (obj?: { __typename?: any } | null): obj is utility_playbooks_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbooks_variance_fields"') - return utility_playbooks_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_practice_invites_possibleTypes: string[] = ['utility_practice_invites'] - export const isutility_practice_invites = (obj?: { __typename?: any } | null): obj is utility_practice_invites => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_invites"') - return utility_practice_invites_possibleTypes.includes(obj.__typename) - } - - - - const utility_practice_invites_aggregate_possibleTypes: string[] = ['utility_practice_invites_aggregate'] - export const isutility_practice_invites_aggregate = (obj?: { __typename?: any } | null): obj is utility_practice_invites_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_invites_aggregate"') - return utility_practice_invites_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const utility_practice_invites_aggregate_fields_possibleTypes: string[] = ['utility_practice_invites_aggregate_fields'] - export const isutility_practice_invites_aggregate_fields = (obj?: { __typename?: any } | null): obj is utility_practice_invites_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_invites_aggregate_fields"') - return utility_practice_invites_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_practice_invites_avg_fields_possibleTypes: string[] = ['utility_practice_invites_avg_fields'] - export const isutility_practice_invites_avg_fields = (obj?: { __typename?: any } | null): obj is utility_practice_invites_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_invites_avg_fields"') - return utility_practice_invites_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_practice_invites_max_fields_possibleTypes: string[] = ['utility_practice_invites_max_fields'] - export const isutility_practice_invites_max_fields = (obj?: { __typename?: any } | null): obj is utility_practice_invites_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_invites_max_fields"') - return utility_practice_invites_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_practice_invites_min_fields_possibleTypes: string[] = ['utility_practice_invites_min_fields'] - export const isutility_practice_invites_min_fields = (obj?: { __typename?: any } | null): obj is utility_practice_invites_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_invites_min_fields"') - return utility_practice_invites_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_practice_invites_mutation_response_possibleTypes: string[] = ['utility_practice_invites_mutation_response'] - export const isutility_practice_invites_mutation_response = (obj?: { __typename?: any } | null): obj is utility_practice_invites_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_invites_mutation_response"') - return utility_practice_invites_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const utility_practice_invites_stddev_fields_possibleTypes: string[] = ['utility_practice_invites_stddev_fields'] - export const isutility_practice_invites_stddev_fields = (obj?: { __typename?: any } | null): obj is utility_practice_invites_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_invites_stddev_fields"') - return utility_practice_invites_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_practice_invites_stddev_pop_fields_possibleTypes: string[] = ['utility_practice_invites_stddev_pop_fields'] - export const isutility_practice_invites_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is utility_practice_invites_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_invites_stddev_pop_fields"') - return utility_practice_invites_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_practice_invites_stddev_samp_fields_possibleTypes: string[] = ['utility_practice_invites_stddev_samp_fields'] - export const isutility_practice_invites_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is utility_practice_invites_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_invites_stddev_samp_fields"') - return utility_practice_invites_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_practice_invites_sum_fields_possibleTypes: string[] = ['utility_practice_invites_sum_fields'] - export const isutility_practice_invites_sum_fields = (obj?: { __typename?: any } | null): obj is utility_practice_invites_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_invites_sum_fields"') - return utility_practice_invites_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_practice_invites_var_pop_fields_possibleTypes: string[] = ['utility_practice_invites_var_pop_fields'] - export const isutility_practice_invites_var_pop_fields = (obj?: { __typename?: any } | null): obj is utility_practice_invites_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_invites_var_pop_fields"') - return utility_practice_invites_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_practice_invites_var_samp_fields_possibleTypes: string[] = ['utility_practice_invites_var_samp_fields'] - export const isutility_practice_invites_var_samp_fields = (obj?: { __typename?: any } | null): obj is utility_practice_invites_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_invites_var_samp_fields"') - return utility_practice_invites_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_practice_invites_variance_fields_possibleTypes: string[] = ['utility_practice_invites_variance_fields'] - export const isutility_practice_invites_variance_fields = (obj?: { __typename?: any } | null): obj is utility_practice_invites_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_invites_variance_fields"') - return utility_practice_invites_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_practice_sessions_possibleTypes: string[] = ['utility_practice_sessions'] - export const isutility_practice_sessions = (obj?: { __typename?: any } | null): obj is utility_practice_sessions => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_sessions"') - return utility_practice_sessions_possibleTypes.includes(obj.__typename) - } - - - - const utility_practice_sessions_aggregate_possibleTypes: string[] = ['utility_practice_sessions_aggregate'] - export const isutility_practice_sessions_aggregate = (obj?: { __typename?: any } | null): obj is utility_practice_sessions_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_sessions_aggregate"') - return utility_practice_sessions_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const utility_practice_sessions_aggregate_fields_possibleTypes: string[] = ['utility_practice_sessions_aggregate_fields'] - export const isutility_practice_sessions_aggregate_fields = (obj?: { __typename?: any } | null): obj is utility_practice_sessions_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_sessions_aggregate_fields"') - return utility_practice_sessions_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_practice_sessions_avg_fields_possibleTypes: string[] = ['utility_practice_sessions_avg_fields'] - export const isutility_practice_sessions_avg_fields = (obj?: { __typename?: any } | null): obj is utility_practice_sessions_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_sessions_avg_fields"') - return utility_practice_sessions_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_practice_sessions_max_fields_possibleTypes: string[] = ['utility_practice_sessions_max_fields'] - export const isutility_practice_sessions_max_fields = (obj?: { __typename?: any } | null): obj is utility_practice_sessions_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_sessions_max_fields"') - return utility_practice_sessions_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_practice_sessions_min_fields_possibleTypes: string[] = ['utility_practice_sessions_min_fields'] - export const isutility_practice_sessions_min_fields = (obj?: { __typename?: any } | null): obj is utility_practice_sessions_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_sessions_min_fields"') - return utility_practice_sessions_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_practice_sessions_mutation_response_possibleTypes: string[] = ['utility_practice_sessions_mutation_response'] - export const isutility_practice_sessions_mutation_response = (obj?: { __typename?: any } | null): obj is utility_practice_sessions_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_sessions_mutation_response"') - return utility_practice_sessions_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const utility_practice_sessions_stddev_fields_possibleTypes: string[] = ['utility_practice_sessions_stddev_fields'] - export const isutility_practice_sessions_stddev_fields = (obj?: { __typename?: any } | null): obj is utility_practice_sessions_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_sessions_stddev_fields"') - return utility_practice_sessions_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_practice_sessions_stddev_pop_fields_possibleTypes: string[] = ['utility_practice_sessions_stddev_pop_fields'] - export const isutility_practice_sessions_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is utility_practice_sessions_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_sessions_stddev_pop_fields"') - return utility_practice_sessions_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_practice_sessions_stddev_samp_fields_possibleTypes: string[] = ['utility_practice_sessions_stddev_samp_fields'] - export const isutility_practice_sessions_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is utility_practice_sessions_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_sessions_stddev_samp_fields"') - return utility_practice_sessions_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_practice_sessions_sum_fields_possibleTypes: string[] = ['utility_practice_sessions_sum_fields'] - export const isutility_practice_sessions_sum_fields = (obj?: { __typename?: any } | null): obj is utility_practice_sessions_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_sessions_sum_fields"') - return utility_practice_sessions_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_practice_sessions_var_pop_fields_possibleTypes: string[] = ['utility_practice_sessions_var_pop_fields'] - export const isutility_practice_sessions_var_pop_fields = (obj?: { __typename?: any } | null): obj is utility_practice_sessions_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_sessions_var_pop_fields"') - return utility_practice_sessions_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_practice_sessions_var_samp_fields_possibleTypes: string[] = ['utility_practice_sessions_var_samp_fields'] - export const isutility_practice_sessions_var_samp_fields = (obj?: { __typename?: any } | null): obj is utility_practice_sessions_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_sessions_var_samp_fields"') - return utility_practice_sessions_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const utility_practice_sessions_variance_fields_possibleTypes: string[] = ['utility_practice_sessions_variance_fields'] - export const isutility_practice_sessions_variance_fields = (obj?: { __typename?: any } | null): obj is utility_practice_sessions_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_sessions_variance_fields"') - return utility_practice_sessions_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_event_player_stats_possibleTypes: string[] = ['v_event_player_stats'] - export const isv_event_player_stats = (obj?: { __typename?: any } | null): obj is v_event_player_stats => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats"') - return v_event_player_stats_possibleTypes.includes(obj.__typename) - } - - - - const v_event_player_stats_aggregate_possibleTypes: string[] = ['v_event_player_stats_aggregate'] - export const isv_event_player_stats_aggregate = (obj?: { __typename?: any } | null): obj is v_event_player_stats_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_aggregate"') - return v_event_player_stats_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const v_event_player_stats_aggregate_fields_possibleTypes: string[] = ['v_event_player_stats_aggregate_fields'] - export const isv_event_player_stats_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_event_player_stats_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_aggregate_fields"') - return v_event_player_stats_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_event_player_stats_avg_fields_possibleTypes: string[] = ['v_event_player_stats_avg_fields'] - export const isv_event_player_stats_avg_fields = (obj?: { __typename?: any } | null): obj is v_event_player_stats_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_avg_fields"') - return v_event_player_stats_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_event_player_stats_max_fields_possibleTypes: string[] = ['v_event_player_stats_max_fields'] - export const isv_event_player_stats_max_fields = (obj?: { __typename?: any } | null): obj is v_event_player_stats_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_max_fields"') - return v_event_player_stats_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_event_player_stats_min_fields_possibleTypes: string[] = ['v_event_player_stats_min_fields'] - export const isv_event_player_stats_min_fields = (obj?: { __typename?: any } | null): obj is v_event_player_stats_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_min_fields"') - return v_event_player_stats_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_event_player_stats_stddev_fields_possibleTypes: string[] = ['v_event_player_stats_stddev_fields'] - export const isv_event_player_stats_stddev_fields = (obj?: { __typename?: any } | null): obj is v_event_player_stats_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_stddev_fields"') - return v_event_player_stats_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_event_player_stats_stddev_pop_fields_possibleTypes: string[] = ['v_event_player_stats_stddev_pop_fields'] - export const isv_event_player_stats_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_event_player_stats_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_stddev_pop_fields"') - return v_event_player_stats_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_event_player_stats_stddev_samp_fields_possibleTypes: string[] = ['v_event_player_stats_stddev_samp_fields'] - export const isv_event_player_stats_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_event_player_stats_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_stddev_samp_fields"') - return v_event_player_stats_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_event_player_stats_sum_fields_possibleTypes: string[] = ['v_event_player_stats_sum_fields'] - export const isv_event_player_stats_sum_fields = (obj?: { __typename?: any } | null): obj is v_event_player_stats_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_sum_fields"') - return v_event_player_stats_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_event_player_stats_var_pop_fields_possibleTypes: string[] = ['v_event_player_stats_var_pop_fields'] - export const isv_event_player_stats_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_event_player_stats_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_var_pop_fields"') - return v_event_player_stats_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_event_player_stats_var_samp_fields_possibleTypes: string[] = ['v_event_player_stats_var_samp_fields'] - export const isv_event_player_stats_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_event_player_stats_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_var_samp_fields"') - return v_event_player_stats_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_event_player_stats_variance_fields_possibleTypes: string[] = ['v_event_player_stats_variance_fields'] - export const isv_event_player_stats_variance_fields = (obj?: { __typename?: any } | null): obj is v_event_player_stats_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_variance_fields"') - return v_event_player_stats_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_gpu_pool_status_possibleTypes: string[] = ['v_gpu_pool_status'] - export const isv_gpu_pool_status = (obj?: { __typename?: any } | null): obj is v_gpu_pool_status => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_gpu_pool_status"') - return v_gpu_pool_status_possibleTypes.includes(obj.__typename) - } - - - - const v_gpu_pool_status_aggregate_possibleTypes: string[] = ['v_gpu_pool_status_aggregate'] - export const isv_gpu_pool_status_aggregate = (obj?: { __typename?: any } | null): obj is v_gpu_pool_status_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_gpu_pool_status_aggregate"') - return v_gpu_pool_status_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const v_gpu_pool_status_aggregate_fields_possibleTypes: string[] = ['v_gpu_pool_status_aggregate_fields'] - export const isv_gpu_pool_status_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_gpu_pool_status_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_gpu_pool_status_aggregate_fields"') - return v_gpu_pool_status_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_gpu_pool_status_avg_fields_possibleTypes: string[] = ['v_gpu_pool_status_avg_fields'] - export const isv_gpu_pool_status_avg_fields = (obj?: { __typename?: any } | null): obj is v_gpu_pool_status_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_gpu_pool_status_avg_fields"') - return v_gpu_pool_status_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_gpu_pool_status_max_fields_possibleTypes: string[] = ['v_gpu_pool_status_max_fields'] - export const isv_gpu_pool_status_max_fields = (obj?: { __typename?: any } | null): obj is v_gpu_pool_status_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_gpu_pool_status_max_fields"') - return v_gpu_pool_status_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_gpu_pool_status_min_fields_possibleTypes: string[] = ['v_gpu_pool_status_min_fields'] - export const isv_gpu_pool_status_min_fields = (obj?: { __typename?: any } | null): obj is v_gpu_pool_status_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_gpu_pool_status_min_fields"') - return v_gpu_pool_status_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_gpu_pool_status_stddev_fields_possibleTypes: string[] = ['v_gpu_pool_status_stddev_fields'] - export const isv_gpu_pool_status_stddev_fields = (obj?: { __typename?: any } | null): obj is v_gpu_pool_status_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_gpu_pool_status_stddev_fields"') - return v_gpu_pool_status_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_gpu_pool_status_stddev_pop_fields_possibleTypes: string[] = ['v_gpu_pool_status_stddev_pop_fields'] - export const isv_gpu_pool_status_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_gpu_pool_status_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_gpu_pool_status_stddev_pop_fields"') - return v_gpu_pool_status_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_gpu_pool_status_stddev_samp_fields_possibleTypes: string[] = ['v_gpu_pool_status_stddev_samp_fields'] - export const isv_gpu_pool_status_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_gpu_pool_status_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_gpu_pool_status_stddev_samp_fields"') - return v_gpu_pool_status_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_gpu_pool_status_sum_fields_possibleTypes: string[] = ['v_gpu_pool_status_sum_fields'] - export const isv_gpu_pool_status_sum_fields = (obj?: { __typename?: any } | null): obj is v_gpu_pool_status_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_gpu_pool_status_sum_fields"') - return v_gpu_pool_status_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_gpu_pool_status_var_pop_fields_possibleTypes: string[] = ['v_gpu_pool_status_var_pop_fields'] - export const isv_gpu_pool_status_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_gpu_pool_status_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_gpu_pool_status_var_pop_fields"') - return v_gpu_pool_status_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_gpu_pool_status_var_samp_fields_possibleTypes: string[] = ['v_gpu_pool_status_var_samp_fields'] - export const isv_gpu_pool_status_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_gpu_pool_status_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_gpu_pool_status_var_samp_fields"') - return v_gpu_pool_status_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_gpu_pool_status_variance_fields_possibleTypes: string[] = ['v_gpu_pool_status_variance_fields'] - export const isv_gpu_pool_status_variance_fields = (obj?: { __typename?: any } | null): obj is v_gpu_pool_status_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_gpu_pool_status_variance_fields"') - return v_gpu_pool_status_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_league_division_standings_possibleTypes: string[] = ['v_league_division_standings'] - export const isv_league_division_standings = (obj?: { __typename?: any } | null): obj is v_league_division_standings => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_division_standings"') - return v_league_division_standings_possibleTypes.includes(obj.__typename) - } - - - - const v_league_division_standings_aggregate_possibleTypes: string[] = ['v_league_division_standings_aggregate'] - export const isv_league_division_standings_aggregate = (obj?: { __typename?: any } | null): obj is v_league_division_standings_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_division_standings_aggregate"') - return v_league_division_standings_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const v_league_division_standings_aggregate_fields_possibleTypes: string[] = ['v_league_division_standings_aggregate_fields'] - export const isv_league_division_standings_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_league_division_standings_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_division_standings_aggregate_fields"') - return v_league_division_standings_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_league_division_standings_avg_fields_possibleTypes: string[] = ['v_league_division_standings_avg_fields'] - export const isv_league_division_standings_avg_fields = (obj?: { __typename?: any } | null): obj is v_league_division_standings_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_division_standings_avg_fields"') - return v_league_division_standings_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_league_division_standings_max_fields_possibleTypes: string[] = ['v_league_division_standings_max_fields'] - export const isv_league_division_standings_max_fields = (obj?: { __typename?: any } | null): obj is v_league_division_standings_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_division_standings_max_fields"') - return v_league_division_standings_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_league_division_standings_min_fields_possibleTypes: string[] = ['v_league_division_standings_min_fields'] - export const isv_league_division_standings_min_fields = (obj?: { __typename?: any } | null): obj is v_league_division_standings_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_division_standings_min_fields"') - return v_league_division_standings_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_league_division_standings_stddev_fields_possibleTypes: string[] = ['v_league_division_standings_stddev_fields'] - export const isv_league_division_standings_stddev_fields = (obj?: { __typename?: any } | null): obj is v_league_division_standings_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_division_standings_stddev_fields"') - return v_league_division_standings_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_league_division_standings_stddev_pop_fields_possibleTypes: string[] = ['v_league_division_standings_stddev_pop_fields'] - export const isv_league_division_standings_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_league_division_standings_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_division_standings_stddev_pop_fields"') - return v_league_division_standings_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_league_division_standings_stddev_samp_fields_possibleTypes: string[] = ['v_league_division_standings_stddev_samp_fields'] - export const isv_league_division_standings_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_league_division_standings_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_division_standings_stddev_samp_fields"') - return v_league_division_standings_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_league_division_standings_sum_fields_possibleTypes: string[] = ['v_league_division_standings_sum_fields'] - export const isv_league_division_standings_sum_fields = (obj?: { __typename?: any } | null): obj is v_league_division_standings_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_division_standings_sum_fields"') - return v_league_division_standings_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_league_division_standings_var_pop_fields_possibleTypes: string[] = ['v_league_division_standings_var_pop_fields'] - export const isv_league_division_standings_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_league_division_standings_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_division_standings_var_pop_fields"') - return v_league_division_standings_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_league_division_standings_var_samp_fields_possibleTypes: string[] = ['v_league_division_standings_var_samp_fields'] - export const isv_league_division_standings_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_league_division_standings_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_division_standings_var_samp_fields"') - return v_league_division_standings_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_league_division_standings_variance_fields_possibleTypes: string[] = ['v_league_division_standings_variance_fields'] - export const isv_league_division_standings_variance_fields = (obj?: { __typename?: any } | null): obj is v_league_division_standings_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_division_standings_variance_fields"') - return v_league_division_standings_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_league_season_player_stats_possibleTypes: string[] = ['v_league_season_player_stats'] - export const isv_league_season_player_stats = (obj?: { __typename?: any } | null): obj is v_league_season_player_stats => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_season_player_stats"') - return v_league_season_player_stats_possibleTypes.includes(obj.__typename) - } - - - - const v_league_season_player_stats_aggregate_possibleTypes: string[] = ['v_league_season_player_stats_aggregate'] - export const isv_league_season_player_stats_aggregate = (obj?: { __typename?: any } | null): obj is v_league_season_player_stats_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_season_player_stats_aggregate"') - return v_league_season_player_stats_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const v_league_season_player_stats_aggregate_fields_possibleTypes: string[] = ['v_league_season_player_stats_aggregate_fields'] - export const isv_league_season_player_stats_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_league_season_player_stats_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_season_player_stats_aggregate_fields"') - return v_league_season_player_stats_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_league_season_player_stats_avg_fields_possibleTypes: string[] = ['v_league_season_player_stats_avg_fields'] - export const isv_league_season_player_stats_avg_fields = (obj?: { __typename?: any } | null): obj is v_league_season_player_stats_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_season_player_stats_avg_fields"') - return v_league_season_player_stats_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_league_season_player_stats_max_fields_possibleTypes: string[] = ['v_league_season_player_stats_max_fields'] - export const isv_league_season_player_stats_max_fields = (obj?: { __typename?: any } | null): obj is v_league_season_player_stats_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_season_player_stats_max_fields"') - return v_league_season_player_stats_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_league_season_player_stats_min_fields_possibleTypes: string[] = ['v_league_season_player_stats_min_fields'] - export const isv_league_season_player_stats_min_fields = (obj?: { __typename?: any } | null): obj is v_league_season_player_stats_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_season_player_stats_min_fields"') - return v_league_season_player_stats_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_league_season_player_stats_stddev_fields_possibleTypes: string[] = ['v_league_season_player_stats_stddev_fields'] - export const isv_league_season_player_stats_stddev_fields = (obj?: { __typename?: any } | null): obj is v_league_season_player_stats_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_season_player_stats_stddev_fields"') - return v_league_season_player_stats_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_league_season_player_stats_stddev_pop_fields_possibleTypes: string[] = ['v_league_season_player_stats_stddev_pop_fields'] - export const isv_league_season_player_stats_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_league_season_player_stats_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_season_player_stats_stddev_pop_fields"') - return v_league_season_player_stats_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_league_season_player_stats_stddev_samp_fields_possibleTypes: string[] = ['v_league_season_player_stats_stddev_samp_fields'] - export const isv_league_season_player_stats_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_league_season_player_stats_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_season_player_stats_stddev_samp_fields"') - return v_league_season_player_stats_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_league_season_player_stats_sum_fields_possibleTypes: string[] = ['v_league_season_player_stats_sum_fields'] - export const isv_league_season_player_stats_sum_fields = (obj?: { __typename?: any } | null): obj is v_league_season_player_stats_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_season_player_stats_sum_fields"') - return v_league_season_player_stats_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_league_season_player_stats_var_pop_fields_possibleTypes: string[] = ['v_league_season_player_stats_var_pop_fields'] - export const isv_league_season_player_stats_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_league_season_player_stats_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_season_player_stats_var_pop_fields"') - return v_league_season_player_stats_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_league_season_player_stats_var_samp_fields_possibleTypes: string[] = ['v_league_season_player_stats_var_samp_fields'] - export const isv_league_season_player_stats_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_league_season_player_stats_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_season_player_stats_var_samp_fields"') - return v_league_season_player_stats_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_league_season_player_stats_variance_fields_possibleTypes: string[] = ['v_league_season_player_stats_variance_fields'] - export const isv_league_season_player_stats_variance_fields = (obj?: { __typename?: any } | null): obj is v_league_season_player_stats_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_season_player_stats_variance_fields"') - return v_league_season_player_stats_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_captains_possibleTypes: string[] = ['v_match_captains'] - export const isv_match_captains = (obj?: { __typename?: any } | null): obj is v_match_captains => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_captains"') - return v_match_captains_possibleTypes.includes(obj.__typename) - } - - - - const v_match_captains_aggregate_possibleTypes: string[] = ['v_match_captains_aggregate'] - export const isv_match_captains_aggregate = (obj?: { __typename?: any } | null): obj is v_match_captains_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_captains_aggregate"') - return v_match_captains_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const v_match_captains_aggregate_fields_possibleTypes: string[] = ['v_match_captains_aggregate_fields'] - export const isv_match_captains_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_match_captains_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_captains_aggregate_fields"') - return v_match_captains_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_captains_avg_fields_possibleTypes: string[] = ['v_match_captains_avg_fields'] - export const isv_match_captains_avg_fields = (obj?: { __typename?: any } | null): obj is v_match_captains_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_captains_avg_fields"') - return v_match_captains_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_captains_max_fields_possibleTypes: string[] = ['v_match_captains_max_fields'] - export const isv_match_captains_max_fields = (obj?: { __typename?: any } | null): obj is v_match_captains_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_captains_max_fields"') - return v_match_captains_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_captains_min_fields_possibleTypes: string[] = ['v_match_captains_min_fields'] - export const isv_match_captains_min_fields = (obj?: { __typename?: any } | null): obj is v_match_captains_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_captains_min_fields"') - return v_match_captains_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_captains_mutation_response_possibleTypes: string[] = ['v_match_captains_mutation_response'] - export const isv_match_captains_mutation_response = (obj?: { __typename?: any } | null): obj is v_match_captains_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_captains_mutation_response"') - return v_match_captains_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const v_match_captains_stddev_fields_possibleTypes: string[] = ['v_match_captains_stddev_fields'] - export const isv_match_captains_stddev_fields = (obj?: { __typename?: any } | null): obj is v_match_captains_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_captains_stddev_fields"') - return v_match_captains_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_captains_stddev_pop_fields_possibleTypes: string[] = ['v_match_captains_stddev_pop_fields'] - export const isv_match_captains_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_match_captains_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_captains_stddev_pop_fields"') - return v_match_captains_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_captains_stddev_samp_fields_possibleTypes: string[] = ['v_match_captains_stddev_samp_fields'] - export const isv_match_captains_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_match_captains_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_captains_stddev_samp_fields"') - return v_match_captains_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_captains_sum_fields_possibleTypes: string[] = ['v_match_captains_sum_fields'] - export const isv_match_captains_sum_fields = (obj?: { __typename?: any } | null): obj is v_match_captains_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_captains_sum_fields"') - return v_match_captains_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_captains_var_pop_fields_possibleTypes: string[] = ['v_match_captains_var_pop_fields'] - export const isv_match_captains_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_match_captains_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_captains_var_pop_fields"') - return v_match_captains_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_captains_var_samp_fields_possibleTypes: string[] = ['v_match_captains_var_samp_fields'] - export const isv_match_captains_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_match_captains_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_captains_var_samp_fields"') - return v_match_captains_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_captains_variance_fields_possibleTypes: string[] = ['v_match_captains_variance_fields'] - export const isv_match_captains_variance_fields = (obj?: { __typename?: any } | null): obj is v_match_captains_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_captains_variance_fields"') - return v_match_captains_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_clutches_possibleTypes: string[] = ['v_match_clutches'] - export const isv_match_clutches = (obj?: { __typename?: any } | null): obj is v_match_clutches => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_clutches"') - return v_match_clutches_possibleTypes.includes(obj.__typename) - } - - - - const v_match_clutches_aggregate_possibleTypes: string[] = ['v_match_clutches_aggregate'] - export const isv_match_clutches_aggregate = (obj?: { __typename?: any } | null): obj is v_match_clutches_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_clutches_aggregate"') - return v_match_clutches_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const v_match_clutches_aggregate_fields_possibleTypes: string[] = ['v_match_clutches_aggregate_fields'] - export const isv_match_clutches_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_match_clutches_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_clutches_aggregate_fields"') - return v_match_clutches_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_clutches_avg_fields_possibleTypes: string[] = ['v_match_clutches_avg_fields'] - export const isv_match_clutches_avg_fields = (obj?: { __typename?: any } | null): obj is v_match_clutches_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_clutches_avg_fields"') - return v_match_clutches_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_clutches_max_fields_possibleTypes: string[] = ['v_match_clutches_max_fields'] - export const isv_match_clutches_max_fields = (obj?: { __typename?: any } | null): obj is v_match_clutches_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_clutches_max_fields"') - return v_match_clutches_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_clutches_min_fields_possibleTypes: string[] = ['v_match_clutches_min_fields'] - export const isv_match_clutches_min_fields = (obj?: { __typename?: any } | null): obj is v_match_clutches_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_clutches_min_fields"') - return v_match_clutches_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_clutches_stddev_fields_possibleTypes: string[] = ['v_match_clutches_stddev_fields'] - export const isv_match_clutches_stddev_fields = (obj?: { __typename?: any } | null): obj is v_match_clutches_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_clutches_stddev_fields"') - return v_match_clutches_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_clutches_stddev_pop_fields_possibleTypes: string[] = ['v_match_clutches_stddev_pop_fields'] - export const isv_match_clutches_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_match_clutches_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_clutches_stddev_pop_fields"') - return v_match_clutches_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_clutches_stddev_samp_fields_possibleTypes: string[] = ['v_match_clutches_stddev_samp_fields'] - export const isv_match_clutches_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_match_clutches_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_clutches_stddev_samp_fields"') - return v_match_clutches_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_clutches_sum_fields_possibleTypes: string[] = ['v_match_clutches_sum_fields'] - export const isv_match_clutches_sum_fields = (obj?: { __typename?: any } | null): obj is v_match_clutches_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_clutches_sum_fields"') - return v_match_clutches_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_clutches_var_pop_fields_possibleTypes: string[] = ['v_match_clutches_var_pop_fields'] - export const isv_match_clutches_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_match_clutches_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_clutches_var_pop_fields"') - return v_match_clutches_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_clutches_var_samp_fields_possibleTypes: string[] = ['v_match_clutches_var_samp_fields'] - export const isv_match_clutches_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_match_clutches_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_clutches_var_samp_fields"') - return v_match_clutches_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_clutches_variance_fields_possibleTypes: string[] = ['v_match_clutches_variance_fields'] - export const isv_match_clutches_variance_fields = (obj?: { __typename?: any } | null): obj is v_match_clutches_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_clutches_variance_fields"') - return v_match_clutches_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_kill_pairs_possibleTypes: string[] = ['v_match_kill_pairs'] - export const isv_match_kill_pairs = (obj?: { __typename?: any } | null): obj is v_match_kill_pairs => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_kill_pairs"') - return v_match_kill_pairs_possibleTypes.includes(obj.__typename) - } - - - - const v_match_kill_pairs_aggregate_possibleTypes: string[] = ['v_match_kill_pairs_aggregate'] - export const isv_match_kill_pairs_aggregate = (obj?: { __typename?: any } | null): obj is v_match_kill_pairs_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_kill_pairs_aggregate"') - return v_match_kill_pairs_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const v_match_kill_pairs_aggregate_fields_possibleTypes: string[] = ['v_match_kill_pairs_aggregate_fields'] - export const isv_match_kill_pairs_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_match_kill_pairs_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_kill_pairs_aggregate_fields"') - return v_match_kill_pairs_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_kill_pairs_avg_fields_possibleTypes: string[] = ['v_match_kill_pairs_avg_fields'] - export const isv_match_kill_pairs_avg_fields = (obj?: { __typename?: any } | null): obj is v_match_kill_pairs_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_kill_pairs_avg_fields"') - return v_match_kill_pairs_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_kill_pairs_max_fields_possibleTypes: string[] = ['v_match_kill_pairs_max_fields'] - export const isv_match_kill_pairs_max_fields = (obj?: { __typename?: any } | null): obj is v_match_kill_pairs_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_kill_pairs_max_fields"') - return v_match_kill_pairs_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_kill_pairs_min_fields_possibleTypes: string[] = ['v_match_kill_pairs_min_fields'] - export const isv_match_kill_pairs_min_fields = (obj?: { __typename?: any } | null): obj is v_match_kill_pairs_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_kill_pairs_min_fields"') - return v_match_kill_pairs_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_kill_pairs_stddev_fields_possibleTypes: string[] = ['v_match_kill_pairs_stddev_fields'] - export const isv_match_kill_pairs_stddev_fields = (obj?: { __typename?: any } | null): obj is v_match_kill_pairs_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_kill_pairs_stddev_fields"') - return v_match_kill_pairs_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_kill_pairs_stddev_pop_fields_possibleTypes: string[] = ['v_match_kill_pairs_stddev_pop_fields'] - export const isv_match_kill_pairs_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_match_kill_pairs_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_kill_pairs_stddev_pop_fields"') - return v_match_kill_pairs_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_kill_pairs_stddev_samp_fields_possibleTypes: string[] = ['v_match_kill_pairs_stddev_samp_fields'] - export const isv_match_kill_pairs_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_match_kill_pairs_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_kill_pairs_stddev_samp_fields"') - return v_match_kill_pairs_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_kill_pairs_sum_fields_possibleTypes: string[] = ['v_match_kill_pairs_sum_fields'] - export const isv_match_kill_pairs_sum_fields = (obj?: { __typename?: any } | null): obj is v_match_kill_pairs_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_kill_pairs_sum_fields"') - return v_match_kill_pairs_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_kill_pairs_var_pop_fields_possibleTypes: string[] = ['v_match_kill_pairs_var_pop_fields'] - export const isv_match_kill_pairs_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_match_kill_pairs_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_kill_pairs_var_pop_fields"') - return v_match_kill_pairs_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_kill_pairs_var_samp_fields_possibleTypes: string[] = ['v_match_kill_pairs_var_samp_fields'] - export const isv_match_kill_pairs_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_match_kill_pairs_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_kill_pairs_var_samp_fields"') - return v_match_kill_pairs_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_kill_pairs_variance_fields_possibleTypes: string[] = ['v_match_kill_pairs_variance_fields'] - export const isv_match_kill_pairs_variance_fields = (obj?: { __typename?: any } | null): obj is v_match_kill_pairs_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_kill_pairs_variance_fields"') - return v_match_kill_pairs_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_lineup_buy_types_possibleTypes: string[] = ['v_match_lineup_buy_types'] - export const isv_match_lineup_buy_types = (obj?: { __typename?: any } | null): obj is v_match_lineup_buy_types => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_buy_types"') - return v_match_lineup_buy_types_possibleTypes.includes(obj.__typename) - } - - - - const v_match_lineup_buy_types_aggregate_possibleTypes: string[] = ['v_match_lineup_buy_types_aggregate'] - export const isv_match_lineup_buy_types_aggregate = (obj?: { __typename?: any } | null): obj is v_match_lineup_buy_types_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_buy_types_aggregate"') - return v_match_lineup_buy_types_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const v_match_lineup_buy_types_aggregate_fields_possibleTypes: string[] = ['v_match_lineup_buy_types_aggregate_fields'] - export const isv_match_lineup_buy_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_match_lineup_buy_types_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_buy_types_aggregate_fields"') - return v_match_lineup_buy_types_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_lineup_buy_types_avg_fields_possibleTypes: string[] = ['v_match_lineup_buy_types_avg_fields'] - export const isv_match_lineup_buy_types_avg_fields = (obj?: { __typename?: any } | null): obj is v_match_lineup_buy_types_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_buy_types_avg_fields"') - return v_match_lineup_buy_types_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_lineup_buy_types_max_fields_possibleTypes: string[] = ['v_match_lineup_buy_types_max_fields'] - export const isv_match_lineup_buy_types_max_fields = (obj?: { __typename?: any } | null): obj is v_match_lineup_buy_types_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_buy_types_max_fields"') - return v_match_lineup_buy_types_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_lineup_buy_types_min_fields_possibleTypes: string[] = ['v_match_lineup_buy_types_min_fields'] - export const isv_match_lineup_buy_types_min_fields = (obj?: { __typename?: any } | null): obj is v_match_lineup_buy_types_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_buy_types_min_fields"') - return v_match_lineup_buy_types_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_lineup_buy_types_stddev_fields_possibleTypes: string[] = ['v_match_lineup_buy_types_stddev_fields'] - export const isv_match_lineup_buy_types_stddev_fields = (obj?: { __typename?: any } | null): obj is v_match_lineup_buy_types_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_buy_types_stddev_fields"') - return v_match_lineup_buy_types_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_lineup_buy_types_stddev_pop_fields_possibleTypes: string[] = ['v_match_lineup_buy_types_stddev_pop_fields'] - export const isv_match_lineup_buy_types_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_match_lineup_buy_types_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_buy_types_stddev_pop_fields"') - return v_match_lineup_buy_types_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_lineup_buy_types_stddev_samp_fields_possibleTypes: string[] = ['v_match_lineup_buy_types_stddev_samp_fields'] - export const isv_match_lineup_buy_types_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_match_lineup_buy_types_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_buy_types_stddev_samp_fields"') - return v_match_lineup_buy_types_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_lineup_buy_types_sum_fields_possibleTypes: string[] = ['v_match_lineup_buy_types_sum_fields'] - export const isv_match_lineup_buy_types_sum_fields = (obj?: { __typename?: any } | null): obj is v_match_lineup_buy_types_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_buy_types_sum_fields"') - return v_match_lineup_buy_types_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_lineup_buy_types_var_pop_fields_possibleTypes: string[] = ['v_match_lineup_buy_types_var_pop_fields'] - export const isv_match_lineup_buy_types_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_match_lineup_buy_types_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_buy_types_var_pop_fields"') - return v_match_lineup_buy_types_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_lineup_buy_types_var_samp_fields_possibleTypes: string[] = ['v_match_lineup_buy_types_var_samp_fields'] - export const isv_match_lineup_buy_types_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_match_lineup_buy_types_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_buy_types_var_samp_fields"') - return v_match_lineup_buy_types_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_lineup_buy_types_variance_fields_possibleTypes: string[] = ['v_match_lineup_buy_types_variance_fields'] - export const isv_match_lineup_buy_types_variance_fields = (obj?: { __typename?: any } | null): obj is v_match_lineup_buy_types_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_buy_types_variance_fields"') - return v_match_lineup_buy_types_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_lineup_map_stats_possibleTypes: string[] = ['v_match_lineup_map_stats'] - export const isv_match_lineup_map_stats = (obj?: { __typename?: any } | null): obj is v_match_lineup_map_stats => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_map_stats"') - return v_match_lineup_map_stats_possibleTypes.includes(obj.__typename) - } - - - - const v_match_lineup_map_stats_aggregate_possibleTypes: string[] = ['v_match_lineup_map_stats_aggregate'] - export const isv_match_lineup_map_stats_aggregate = (obj?: { __typename?: any } | null): obj is v_match_lineup_map_stats_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_map_stats_aggregate"') - return v_match_lineup_map_stats_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const v_match_lineup_map_stats_aggregate_fields_possibleTypes: string[] = ['v_match_lineup_map_stats_aggregate_fields'] - export const isv_match_lineup_map_stats_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_match_lineup_map_stats_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_map_stats_aggregate_fields"') - return v_match_lineup_map_stats_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_lineup_map_stats_avg_fields_possibleTypes: string[] = ['v_match_lineup_map_stats_avg_fields'] - export const isv_match_lineup_map_stats_avg_fields = (obj?: { __typename?: any } | null): obj is v_match_lineup_map_stats_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_map_stats_avg_fields"') - return v_match_lineup_map_stats_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_lineup_map_stats_max_fields_possibleTypes: string[] = ['v_match_lineup_map_stats_max_fields'] - export const isv_match_lineup_map_stats_max_fields = (obj?: { __typename?: any } | null): obj is v_match_lineup_map_stats_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_map_stats_max_fields"') - return v_match_lineup_map_stats_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_lineup_map_stats_min_fields_possibleTypes: string[] = ['v_match_lineup_map_stats_min_fields'] - export const isv_match_lineup_map_stats_min_fields = (obj?: { __typename?: any } | null): obj is v_match_lineup_map_stats_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_map_stats_min_fields"') - return v_match_lineup_map_stats_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_lineup_map_stats_stddev_fields_possibleTypes: string[] = ['v_match_lineup_map_stats_stddev_fields'] - export const isv_match_lineup_map_stats_stddev_fields = (obj?: { __typename?: any } | null): obj is v_match_lineup_map_stats_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_map_stats_stddev_fields"') - return v_match_lineup_map_stats_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_lineup_map_stats_stddev_pop_fields_possibleTypes: string[] = ['v_match_lineup_map_stats_stddev_pop_fields'] - export const isv_match_lineup_map_stats_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_match_lineup_map_stats_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_map_stats_stddev_pop_fields"') - return v_match_lineup_map_stats_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_lineup_map_stats_stddev_samp_fields_possibleTypes: string[] = ['v_match_lineup_map_stats_stddev_samp_fields'] - export const isv_match_lineup_map_stats_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_match_lineup_map_stats_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_map_stats_stddev_samp_fields"') - return v_match_lineup_map_stats_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_lineup_map_stats_sum_fields_possibleTypes: string[] = ['v_match_lineup_map_stats_sum_fields'] - export const isv_match_lineup_map_stats_sum_fields = (obj?: { __typename?: any } | null): obj is v_match_lineup_map_stats_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_map_stats_sum_fields"') - return v_match_lineup_map_stats_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_lineup_map_stats_var_pop_fields_possibleTypes: string[] = ['v_match_lineup_map_stats_var_pop_fields'] - export const isv_match_lineup_map_stats_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_match_lineup_map_stats_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_map_stats_var_pop_fields"') - return v_match_lineup_map_stats_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_lineup_map_stats_var_samp_fields_possibleTypes: string[] = ['v_match_lineup_map_stats_var_samp_fields'] - export const isv_match_lineup_map_stats_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_match_lineup_map_stats_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_map_stats_var_samp_fields"') - return v_match_lineup_map_stats_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_lineup_map_stats_variance_fields_possibleTypes: string[] = ['v_match_lineup_map_stats_variance_fields'] - export const isv_match_lineup_map_stats_variance_fields = (obj?: { __typename?: any } | null): obj is v_match_lineup_map_stats_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_map_stats_variance_fields"') - return v_match_lineup_map_stats_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_map_backup_rounds_possibleTypes: string[] = ['v_match_map_backup_rounds'] - export const isv_match_map_backup_rounds = (obj?: { __typename?: any } | null): obj is v_match_map_backup_rounds => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_map_backup_rounds"') - return v_match_map_backup_rounds_possibleTypes.includes(obj.__typename) - } - - - - const v_match_map_backup_rounds_aggregate_possibleTypes: string[] = ['v_match_map_backup_rounds_aggregate'] - export const isv_match_map_backup_rounds_aggregate = (obj?: { __typename?: any } | null): obj is v_match_map_backup_rounds_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_map_backup_rounds_aggregate"') - return v_match_map_backup_rounds_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const v_match_map_backup_rounds_aggregate_fields_possibleTypes: string[] = ['v_match_map_backup_rounds_aggregate_fields'] - export const isv_match_map_backup_rounds_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_match_map_backup_rounds_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_map_backup_rounds_aggregate_fields"') - return v_match_map_backup_rounds_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_map_backup_rounds_avg_fields_possibleTypes: string[] = ['v_match_map_backup_rounds_avg_fields'] - export const isv_match_map_backup_rounds_avg_fields = (obj?: { __typename?: any } | null): obj is v_match_map_backup_rounds_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_map_backup_rounds_avg_fields"') - return v_match_map_backup_rounds_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_map_backup_rounds_max_fields_possibleTypes: string[] = ['v_match_map_backup_rounds_max_fields'] - export const isv_match_map_backup_rounds_max_fields = (obj?: { __typename?: any } | null): obj is v_match_map_backup_rounds_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_map_backup_rounds_max_fields"') - return v_match_map_backup_rounds_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_map_backup_rounds_min_fields_possibleTypes: string[] = ['v_match_map_backup_rounds_min_fields'] - export const isv_match_map_backup_rounds_min_fields = (obj?: { __typename?: any } | null): obj is v_match_map_backup_rounds_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_map_backup_rounds_min_fields"') - return v_match_map_backup_rounds_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_map_backup_rounds_mutation_response_possibleTypes: string[] = ['v_match_map_backup_rounds_mutation_response'] - export const isv_match_map_backup_rounds_mutation_response = (obj?: { __typename?: any } | null): obj is v_match_map_backup_rounds_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_map_backup_rounds_mutation_response"') - return v_match_map_backup_rounds_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const v_match_map_backup_rounds_stddev_fields_possibleTypes: string[] = ['v_match_map_backup_rounds_stddev_fields'] - export const isv_match_map_backup_rounds_stddev_fields = (obj?: { __typename?: any } | null): obj is v_match_map_backup_rounds_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_map_backup_rounds_stddev_fields"') - return v_match_map_backup_rounds_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_map_backup_rounds_stddev_pop_fields_possibleTypes: string[] = ['v_match_map_backup_rounds_stddev_pop_fields'] - export const isv_match_map_backup_rounds_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_match_map_backup_rounds_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_map_backup_rounds_stddev_pop_fields"') - return v_match_map_backup_rounds_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_map_backup_rounds_stddev_samp_fields_possibleTypes: string[] = ['v_match_map_backup_rounds_stddev_samp_fields'] - export const isv_match_map_backup_rounds_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_match_map_backup_rounds_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_map_backup_rounds_stddev_samp_fields"') - return v_match_map_backup_rounds_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_map_backup_rounds_sum_fields_possibleTypes: string[] = ['v_match_map_backup_rounds_sum_fields'] - export const isv_match_map_backup_rounds_sum_fields = (obj?: { __typename?: any } | null): obj is v_match_map_backup_rounds_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_map_backup_rounds_sum_fields"') - return v_match_map_backup_rounds_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_map_backup_rounds_var_pop_fields_possibleTypes: string[] = ['v_match_map_backup_rounds_var_pop_fields'] - export const isv_match_map_backup_rounds_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_match_map_backup_rounds_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_map_backup_rounds_var_pop_fields"') - return v_match_map_backup_rounds_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_map_backup_rounds_var_samp_fields_possibleTypes: string[] = ['v_match_map_backup_rounds_var_samp_fields'] - export const isv_match_map_backup_rounds_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_match_map_backup_rounds_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_map_backup_rounds_var_samp_fields"') - return v_match_map_backup_rounds_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_map_backup_rounds_variance_fields_possibleTypes: string[] = ['v_match_map_backup_rounds_variance_fields'] - export const isv_match_map_backup_rounds_variance_fields = (obj?: { __typename?: any } | null): obj is v_match_map_backup_rounds_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_map_backup_rounds_variance_fields"') - return v_match_map_backup_rounds_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_player_buy_types_possibleTypes: string[] = ['v_match_player_buy_types'] - export const isv_match_player_buy_types = (obj?: { __typename?: any } | null): obj is v_match_player_buy_types => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_buy_types"') - return v_match_player_buy_types_possibleTypes.includes(obj.__typename) - } - - - - const v_match_player_buy_types_aggregate_possibleTypes: string[] = ['v_match_player_buy_types_aggregate'] - export const isv_match_player_buy_types_aggregate = (obj?: { __typename?: any } | null): obj is v_match_player_buy_types_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_buy_types_aggregate"') - return v_match_player_buy_types_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const v_match_player_buy_types_aggregate_fields_possibleTypes: string[] = ['v_match_player_buy_types_aggregate_fields'] - export const isv_match_player_buy_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_match_player_buy_types_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_buy_types_aggregate_fields"') - return v_match_player_buy_types_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_player_buy_types_avg_fields_possibleTypes: string[] = ['v_match_player_buy_types_avg_fields'] - export const isv_match_player_buy_types_avg_fields = (obj?: { __typename?: any } | null): obj is v_match_player_buy_types_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_buy_types_avg_fields"') - return v_match_player_buy_types_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_player_buy_types_max_fields_possibleTypes: string[] = ['v_match_player_buy_types_max_fields'] - export const isv_match_player_buy_types_max_fields = (obj?: { __typename?: any } | null): obj is v_match_player_buy_types_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_buy_types_max_fields"') - return v_match_player_buy_types_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_player_buy_types_min_fields_possibleTypes: string[] = ['v_match_player_buy_types_min_fields'] - export const isv_match_player_buy_types_min_fields = (obj?: { __typename?: any } | null): obj is v_match_player_buy_types_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_buy_types_min_fields"') - return v_match_player_buy_types_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_player_buy_types_stddev_fields_possibleTypes: string[] = ['v_match_player_buy_types_stddev_fields'] - export const isv_match_player_buy_types_stddev_fields = (obj?: { __typename?: any } | null): obj is v_match_player_buy_types_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_buy_types_stddev_fields"') - return v_match_player_buy_types_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_player_buy_types_stddev_pop_fields_possibleTypes: string[] = ['v_match_player_buy_types_stddev_pop_fields'] - export const isv_match_player_buy_types_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_match_player_buy_types_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_buy_types_stddev_pop_fields"') - return v_match_player_buy_types_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_player_buy_types_stddev_samp_fields_possibleTypes: string[] = ['v_match_player_buy_types_stddev_samp_fields'] - export const isv_match_player_buy_types_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_match_player_buy_types_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_buy_types_stddev_samp_fields"') - return v_match_player_buy_types_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_player_buy_types_sum_fields_possibleTypes: string[] = ['v_match_player_buy_types_sum_fields'] - export const isv_match_player_buy_types_sum_fields = (obj?: { __typename?: any } | null): obj is v_match_player_buy_types_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_buy_types_sum_fields"') - return v_match_player_buy_types_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_player_buy_types_var_pop_fields_possibleTypes: string[] = ['v_match_player_buy_types_var_pop_fields'] - export const isv_match_player_buy_types_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_match_player_buy_types_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_buy_types_var_pop_fields"') - return v_match_player_buy_types_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_player_buy_types_var_samp_fields_possibleTypes: string[] = ['v_match_player_buy_types_var_samp_fields'] - export const isv_match_player_buy_types_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_match_player_buy_types_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_buy_types_var_samp_fields"') - return v_match_player_buy_types_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_player_buy_types_variance_fields_possibleTypes: string[] = ['v_match_player_buy_types_variance_fields'] - export const isv_match_player_buy_types_variance_fields = (obj?: { __typename?: any } | null): obj is v_match_player_buy_types_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_buy_types_variance_fields"') - return v_match_player_buy_types_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_player_opening_duels_possibleTypes: string[] = ['v_match_player_opening_duels'] - export const isv_match_player_opening_duels = (obj?: { __typename?: any } | null): obj is v_match_player_opening_duels => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_opening_duels"') - return v_match_player_opening_duels_possibleTypes.includes(obj.__typename) - } - - - - const v_match_player_opening_duels_aggregate_possibleTypes: string[] = ['v_match_player_opening_duels_aggregate'] - export const isv_match_player_opening_duels_aggregate = (obj?: { __typename?: any } | null): obj is v_match_player_opening_duels_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_opening_duels_aggregate"') - return v_match_player_opening_duels_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const v_match_player_opening_duels_aggregate_fields_possibleTypes: string[] = ['v_match_player_opening_duels_aggregate_fields'] - export const isv_match_player_opening_duels_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_match_player_opening_duels_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_opening_duels_aggregate_fields"') - return v_match_player_opening_duels_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_player_opening_duels_avg_fields_possibleTypes: string[] = ['v_match_player_opening_duels_avg_fields'] - export const isv_match_player_opening_duels_avg_fields = (obj?: { __typename?: any } | null): obj is v_match_player_opening_duels_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_opening_duels_avg_fields"') - return v_match_player_opening_duels_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_player_opening_duels_max_fields_possibleTypes: string[] = ['v_match_player_opening_duels_max_fields'] - export const isv_match_player_opening_duels_max_fields = (obj?: { __typename?: any } | null): obj is v_match_player_opening_duels_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_opening_duels_max_fields"') - return v_match_player_opening_duels_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_player_opening_duels_min_fields_possibleTypes: string[] = ['v_match_player_opening_duels_min_fields'] - export const isv_match_player_opening_duels_min_fields = (obj?: { __typename?: any } | null): obj is v_match_player_opening_duels_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_opening_duels_min_fields"') - return v_match_player_opening_duels_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_player_opening_duels_stddev_fields_possibleTypes: string[] = ['v_match_player_opening_duels_stddev_fields'] - export const isv_match_player_opening_duels_stddev_fields = (obj?: { __typename?: any } | null): obj is v_match_player_opening_duels_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_opening_duels_stddev_fields"') - return v_match_player_opening_duels_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_player_opening_duels_stddev_pop_fields_possibleTypes: string[] = ['v_match_player_opening_duels_stddev_pop_fields'] - export const isv_match_player_opening_duels_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_match_player_opening_duels_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_opening_duels_stddev_pop_fields"') - return v_match_player_opening_duels_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_player_opening_duels_stddev_samp_fields_possibleTypes: string[] = ['v_match_player_opening_duels_stddev_samp_fields'] - export const isv_match_player_opening_duels_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_match_player_opening_duels_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_opening_duels_stddev_samp_fields"') - return v_match_player_opening_duels_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_player_opening_duels_sum_fields_possibleTypes: string[] = ['v_match_player_opening_duels_sum_fields'] - export const isv_match_player_opening_duels_sum_fields = (obj?: { __typename?: any } | null): obj is v_match_player_opening_duels_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_opening_duels_sum_fields"') - return v_match_player_opening_duels_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_player_opening_duels_var_pop_fields_possibleTypes: string[] = ['v_match_player_opening_duels_var_pop_fields'] - export const isv_match_player_opening_duels_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_match_player_opening_duels_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_opening_duels_var_pop_fields"') - return v_match_player_opening_duels_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_player_opening_duels_var_samp_fields_possibleTypes: string[] = ['v_match_player_opening_duels_var_samp_fields'] - export const isv_match_player_opening_duels_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_match_player_opening_duels_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_opening_duels_var_samp_fields"') - return v_match_player_opening_duels_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_match_player_opening_duels_variance_fields_possibleTypes: string[] = ['v_match_player_opening_duels_variance_fields'] - export const isv_match_player_opening_duels_variance_fields = (obj?: { __typename?: any } | null): obj is v_match_player_opening_duels_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_opening_duels_variance_fields"') - return v_match_player_opening_duels_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_arch_nemesis_possibleTypes: string[] = ['v_player_arch_nemesis'] - export const isv_player_arch_nemesis = (obj?: { __typename?: any } | null): obj is v_player_arch_nemesis => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_arch_nemesis"') - return v_player_arch_nemesis_possibleTypes.includes(obj.__typename) - } - - - - const v_player_arch_nemesis_aggregate_possibleTypes: string[] = ['v_player_arch_nemesis_aggregate'] - export const isv_player_arch_nemesis_aggregate = (obj?: { __typename?: any } | null): obj is v_player_arch_nemesis_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_arch_nemesis_aggregate"') - return v_player_arch_nemesis_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const v_player_arch_nemesis_aggregate_fields_possibleTypes: string[] = ['v_player_arch_nemesis_aggregate_fields'] - export const isv_player_arch_nemesis_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_player_arch_nemesis_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_arch_nemesis_aggregate_fields"') - return v_player_arch_nemesis_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_arch_nemesis_avg_fields_possibleTypes: string[] = ['v_player_arch_nemesis_avg_fields'] - export const isv_player_arch_nemesis_avg_fields = (obj?: { __typename?: any } | null): obj is v_player_arch_nemesis_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_arch_nemesis_avg_fields"') - return v_player_arch_nemesis_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_arch_nemesis_max_fields_possibleTypes: string[] = ['v_player_arch_nemesis_max_fields'] - export const isv_player_arch_nemesis_max_fields = (obj?: { __typename?: any } | null): obj is v_player_arch_nemesis_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_arch_nemesis_max_fields"') - return v_player_arch_nemesis_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_arch_nemesis_min_fields_possibleTypes: string[] = ['v_player_arch_nemesis_min_fields'] - export const isv_player_arch_nemesis_min_fields = (obj?: { __typename?: any } | null): obj is v_player_arch_nemesis_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_arch_nemesis_min_fields"') - return v_player_arch_nemesis_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_arch_nemesis_stddev_fields_possibleTypes: string[] = ['v_player_arch_nemesis_stddev_fields'] - export const isv_player_arch_nemesis_stddev_fields = (obj?: { __typename?: any } | null): obj is v_player_arch_nemesis_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_arch_nemesis_stddev_fields"') - return v_player_arch_nemesis_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_arch_nemesis_stddev_pop_fields_possibleTypes: string[] = ['v_player_arch_nemesis_stddev_pop_fields'] - export const isv_player_arch_nemesis_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_arch_nemesis_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_arch_nemesis_stddev_pop_fields"') - return v_player_arch_nemesis_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_arch_nemesis_stddev_samp_fields_possibleTypes: string[] = ['v_player_arch_nemesis_stddev_samp_fields'] - export const isv_player_arch_nemesis_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_arch_nemesis_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_arch_nemesis_stddev_samp_fields"') - return v_player_arch_nemesis_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_arch_nemesis_sum_fields_possibleTypes: string[] = ['v_player_arch_nemesis_sum_fields'] - export const isv_player_arch_nemesis_sum_fields = (obj?: { __typename?: any } | null): obj is v_player_arch_nemesis_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_arch_nemesis_sum_fields"') - return v_player_arch_nemesis_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_arch_nemesis_var_pop_fields_possibleTypes: string[] = ['v_player_arch_nemesis_var_pop_fields'] - export const isv_player_arch_nemesis_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_arch_nemesis_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_arch_nemesis_var_pop_fields"') - return v_player_arch_nemesis_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_arch_nemesis_var_samp_fields_possibleTypes: string[] = ['v_player_arch_nemesis_var_samp_fields'] - export const isv_player_arch_nemesis_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_arch_nemesis_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_arch_nemesis_var_samp_fields"') - return v_player_arch_nemesis_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_arch_nemesis_variance_fields_possibleTypes: string[] = ['v_player_arch_nemesis_variance_fields'] - export const isv_player_arch_nemesis_variance_fields = (obj?: { __typename?: any } | null): obj is v_player_arch_nemesis_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_arch_nemesis_variance_fields"') - return v_player_arch_nemesis_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_damage_possibleTypes: string[] = ['v_player_damage'] - export const isv_player_damage = (obj?: { __typename?: any } | null): obj is v_player_damage => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_damage"') - return v_player_damage_possibleTypes.includes(obj.__typename) - } - - - - const v_player_damage_aggregate_possibleTypes: string[] = ['v_player_damage_aggregate'] - export const isv_player_damage_aggregate = (obj?: { __typename?: any } | null): obj is v_player_damage_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_damage_aggregate"') - return v_player_damage_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const v_player_damage_aggregate_fields_possibleTypes: string[] = ['v_player_damage_aggregate_fields'] - export const isv_player_damage_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_player_damage_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_damage_aggregate_fields"') - return v_player_damage_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_damage_avg_fields_possibleTypes: string[] = ['v_player_damage_avg_fields'] - export const isv_player_damage_avg_fields = (obj?: { __typename?: any } | null): obj is v_player_damage_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_damage_avg_fields"') - return v_player_damage_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_damage_max_fields_possibleTypes: string[] = ['v_player_damage_max_fields'] - export const isv_player_damage_max_fields = (obj?: { __typename?: any } | null): obj is v_player_damage_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_damage_max_fields"') - return v_player_damage_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_damage_min_fields_possibleTypes: string[] = ['v_player_damage_min_fields'] - export const isv_player_damage_min_fields = (obj?: { __typename?: any } | null): obj is v_player_damage_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_damage_min_fields"') - return v_player_damage_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_damage_stddev_fields_possibleTypes: string[] = ['v_player_damage_stddev_fields'] - export const isv_player_damage_stddev_fields = (obj?: { __typename?: any } | null): obj is v_player_damage_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_damage_stddev_fields"') - return v_player_damage_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_damage_stddev_pop_fields_possibleTypes: string[] = ['v_player_damage_stddev_pop_fields'] - export const isv_player_damage_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_damage_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_damage_stddev_pop_fields"') - return v_player_damage_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_damage_stddev_samp_fields_possibleTypes: string[] = ['v_player_damage_stddev_samp_fields'] - export const isv_player_damage_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_damage_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_damage_stddev_samp_fields"') - return v_player_damage_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_damage_sum_fields_possibleTypes: string[] = ['v_player_damage_sum_fields'] - export const isv_player_damage_sum_fields = (obj?: { __typename?: any } | null): obj is v_player_damage_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_damage_sum_fields"') - return v_player_damage_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_damage_var_pop_fields_possibleTypes: string[] = ['v_player_damage_var_pop_fields'] - export const isv_player_damage_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_damage_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_damage_var_pop_fields"') - return v_player_damage_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_damage_var_samp_fields_possibleTypes: string[] = ['v_player_damage_var_samp_fields'] - export const isv_player_damage_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_damage_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_damage_var_samp_fields"') - return v_player_damage_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_damage_variance_fields_possibleTypes: string[] = ['v_player_damage_variance_fields'] - export const isv_player_damage_variance_fields = (obj?: { __typename?: any } | null): obj is v_player_damage_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_damage_variance_fields"') - return v_player_damage_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_elo_possibleTypes: string[] = ['v_player_elo'] - export const isv_player_elo = (obj?: { __typename?: any } | null): obj is v_player_elo => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_elo"') - return v_player_elo_possibleTypes.includes(obj.__typename) - } - - - - const v_player_elo_aggregate_possibleTypes: string[] = ['v_player_elo_aggregate'] - export const isv_player_elo_aggregate = (obj?: { __typename?: any } | null): obj is v_player_elo_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_elo_aggregate"') - return v_player_elo_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const v_player_elo_aggregate_fields_possibleTypes: string[] = ['v_player_elo_aggregate_fields'] - export const isv_player_elo_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_player_elo_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_elo_aggregate_fields"') - return v_player_elo_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_elo_avg_fields_possibleTypes: string[] = ['v_player_elo_avg_fields'] - export const isv_player_elo_avg_fields = (obj?: { __typename?: any } | null): obj is v_player_elo_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_elo_avg_fields"') - return v_player_elo_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_elo_max_fields_possibleTypes: string[] = ['v_player_elo_max_fields'] - export const isv_player_elo_max_fields = (obj?: { __typename?: any } | null): obj is v_player_elo_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_elo_max_fields"') - return v_player_elo_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_elo_min_fields_possibleTypes: string[] = ['v_player_elo_min_fields'] - export const isv_player_elo_min_fields = (obj?: { __typename?: any } | null): obj is v_player_elo_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_elo_min_fields"') - return v_player_elo_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_elo_stddev_fields_possibleTypes: string[] = ['v_player_elo_stddev_fields'] - export const isv_player_elo_stddev_fields = (obj?: { __typename?: any } | null): obj is v_player_elo_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_elo_stddev_fields"') - return v_player_elo_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_elo_stddev_pop_fields_possibleTypes: string[] = ['v_player_elo_stddev_pop_fields'] - export const isv_player_elo_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_elo_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_elo_stddev_pop_fields"') - return v_player_elo_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_elo_stddev_samp_fields_possibleTypes: string[] = ['v_player_elo_stddev_samp_fields'] - export const isv_player_elo_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_elo_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_elo_stddev_samp_fields"') - return v_player_elo_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_elo_sum_fields_possibleTypes: string[] = ['v_player_elo_sum_fields'] - export const isv_player_elo_sum_fields = (obj?: { __typename?: any } | null): obj is v_player_elo_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_elo_sum_fields"') - return v_player_elo_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_elo_var_pop_fields_possibleTypes: string[] = ['v_player_elo_var_pop_fields'] - export const isv_player_elo_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_elo_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_elo_var_pop_fields"') - return v_player_elo_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_elo_var_samp_fields_possibleTypes: string[] = ['v_player_elo_var_samp_fields'] - export const isv_player_elo_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_elo_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_elo_var_samp_fields"') - return v_player_elo_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_elo_variance_fields_possibleTypes: string[] = ['v_player_elo_variance_fields'] - export const isv_player_elo_variance_fields = (obj?: { __typename?: any } | null): obj is v_player_elo_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_elo_variance_fields"') - return v_player_elo_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_map_losses_possibleTypes: string[] = ['v_player_map_losses'] - export const isv_player_map_losses = (obj?: { __typename?: any } | null): obj is v_player_map_losses => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_losses"') - return v_player_map_losses_possibleTypes.includes(obj.__typename) - } - - - - const v_player_map_losses_aggregate_possibleTypes: string[] = ['v_player_map_losses_aggregate'] - export const isv_player_map_losses_aggregate = (obj?: { __typename?: any } | null): obj is v_player_map_losses_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_losses_aggregate"') - return v_player_map_losses_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const v_player_map_losses_aggregate_fields_possibleTypes: string[] = ['v_player_map_losses_aggregate_fields'] - export const isv_player_map_losses_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_player_map_losses_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_losses_aggregate_fields"') - return v_player_map_losses_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_map_losses_avg_fields_possibleTypes: string[] = ['v_player_map_losses_avg_fields'] - export const isv_player_map_losses_avg_fields = (obj?: { __typename?: any } | null): obj is v_player_map_losses_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_losses_avg_fields"') - return v_player_map_losses_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_map_losses_max_fields_possibleTypes: string[] = ['v_player_map_losses_max_fields'] - export const isv_player_map_losses_max_fields = (obj?: { __typename?: any } | null): obj is v_player_map_losses_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_losses_max_fields"') - return v_player_map_losses_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_map_losses_min_fields_possibleTypes: string[] = ['v_player_map_losses_min_fields'] - export const isv_player_map_losses_min_fields = (obj?: { __typename?: any } | null): obj is v_player_map_losses_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_losses_min_fields"') - return v_player_map_losses_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_map_losses_stddev_fields_possibleTypes: string[] = ['v_player_map_losses_stddev_fields'] - export const isv_player_map_losses_stddev_fields = (obj?: { __typename?: any } | null): obj is v_player_map_losses_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_losses_stddev_fields"') - return v_player_map_losses_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_map_losses_stddev_pop_fields_possibleTypes: string[] = ['v_player_map_losses_stddev_pop_fields'] - export const isv_player_map_losses_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_map_losses_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_losses_stddev_pop_fields"') - return v_player_map_losses_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_map_losses_stddev_samp_fields_possibleTypes: string[] = ['v_player_map_losses_stddev_samp_fields'] - export const isv_player_map_losses_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_map_losses_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_losses_stddev_samp_fields"') - return v_player_map_losses_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_map_losses_sum_fields_possibleTypes: string[] = ['v_player_map_losses_sum_fields'] - export const isv_player_map_losses_sum_fields = (obj?: { __typename?: any } | null): obj is v_player_map_losses_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_losses_sum_fields"') - return v_player_map_losses_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_map_losses_var_pop_fields_possibleTypes: string[] = ['v_player_map_losses_var_pop_fields'] - export const isv_player_map_losses_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_map_losses_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_losses_var_pop_fields"') - return v_player_map_losses_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_map_losses_var_samp_fields_possibleTypes: string[] = ['v_player_map_losses_var_samp_fields'] - export const isv_player_map_losses_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_map_losses_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_losses_var_samp_fields"') - return v_player_map_losses_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_map_losses_variance_fields_possibleTypes: string[] = ['v_player_map_losses_variance_fields'] - export const isv_player_map_losses_variance_fields = (obj?: { __typename?: any } | null): obj is v_player_map_losses_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_losses_variance_fields"') - return v_player_map_losses_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_map_wins_possibleTypes: string[] = ['v_player_map_wins'] - export const isv_player_map_wins = (obj?: { __typename?: any } | null): obj is v_player_map_wins => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_wins"') - return v_player_map_wins_possibleTypes.includes(obj.__typename) - } - - - - const v_player_map_wins_aggregate_possibleTypes: string[] = ['v_player_map_wins_aggregate'] - export const isv_player_map_wins_aggregate = (obj?: { __typename?: any } | null): obj is v_player_map_wins_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_wins_aggregate"') - return v_player_map_wins_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const v_player_map_wins_aggregate_fields_possibleTypes: string[] = ['v_player_map_wins_aggregate_fields'] - export const isv_player_map_wins_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_player_map_wins_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_wins_aggregate_fields"') - return v_player_map_wins_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_map_wins_avg_fields_possibleTypes: string[] = ['v_player_map_wins_avg_fields'] - export const isv_player_map_wins_avg_fields = (obj?: { __typename?: any } | null): obj is v_player_map_wins_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_wins_avg_fields"') - return v_player_map_wins_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_map_wins_max_fields_possibleTypes: string[] = ['v_player_map_wins_max_fields'] - export const isv_player_map_wins_max_fields = (obj?: { __typename?: any } | null): obj is v_player_map_wins_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_wins_max_fields"') - return v_player_map_wins_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_map_wins_min_fields_possibleTypes: string[] = ['v_player_map_wins_min_fields'] - export const isv_player_map_wins_min_fields = (obj?: { __typename?: any } | null): obj is v_player_map_wins_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_wins_min_fields"') - return v_player_map_wins_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_map_wins_stddev_fields_possibleTypes: string[] = ['v_player_map_wins_stddev_fields'] - export const isv_player_map_wins_stddev_fields = (obj?: { __typename?: any } | null): obj is v_player_map_wins_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_wins_stddev_fields"') - return v_player_map_wins_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_map_wins_stddev_pop_fields_possibleTypes: string[] = ['v_player_map_wins_stddev_pop_fields'] - export const isv_player_map_wins_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_map_wins_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_wins_stddev_pop_fields"') - return v_player_map_wins_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_map_wins_stddev_samp_fields_possibleTypes: string[] = ['v_player_map_wins_stddev_samp_fields'] - export const isv_player_map_wins_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_map_wins_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_wins_stddev_samp_fields"') - return v_player_map_wins_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_map_wins_sum_fields_possibleTypes: string[] = ['v_player_map_wins_sum_fields'] - export const isv_player_map_wins_sum_fields = (obj?: { __typename?: any } | null): obj is v_player_map_wins_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_wins_sum_fields"') - return v_player_map_wins_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_map_wins_var_pop_fields_possibleTypes: string[] = ['v_player_map_wins_var_pop_fields'] - export const isv_player_map_wins_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_map_wins_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_wins_var_pop_fields"') - return v_player_map_wins_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_map_wins_var_samp_fields_possibleTypes: string[] = ['v_player_map_wins_var_samp_fields'] - export const isv_player_map_wins_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_map_wins_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_wins_var_samp_fields"') - return v_player_map_wins_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_map_wins_variance_fields_possibleTypes: string[] = ['v_player_map_wins_variance_fields'] - export const isv_player_map_wins_variance_fields = (obj?: { __typename?: any } | null): obj is v_player_map_wins_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_wins_variance_fields"') - return v_player_map_wins_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_head_to_head_possibleTypes: string[] = ['v_player_match_head_to_head'] - export const isv_player_match_head_to_head = (obj?: { __typename?: any } | null): obj is v_player_match_head_to_head => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_head_to_head"') - return v_player_match_head_to_head_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_head_to_head_aggregate_possibleTypes: string[] = ['v_player_match_head_to_head_aggregate'] - export const isv_player_match_head_to_head_aggregate = (obj?: { __typename?: any } | null): obj is v_player_match_head_to_head_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_head_to_head_aggregate"') - return v_player_match_head_to_head_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_head_to_head_aggregate_fields_possibleTypes: string[] = ['v_player_match_head_to_head_aggregate_fields'] - export const isv_player_match_head_to_head_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_player_match_head_to_head_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_head_to_head_aggregate_fields"') - return v_player_match_head_to_head_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_head_to_head_avg_fields_possibleTypes: string[] = ['v_player_match_head_to_head_avg_fields'] - export const isv_player_match_head_to_head_avg_fields = (obj?: { __typename?: any } | null): obj is v_player_match_head_to_head_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_head_to_head_avg_fields"') - return v_player_match_head_to_head_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_head_to_head_max_fields_possibleTypes: string[] = ['v_player_match_head_to_head_max_fields'] - export const isv_player_match_head_to_head_max_fields = (obj?: { __typename?: any } | null): obj is v_player_match_head_to_head_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_head_to_head_max_fields"') - return v_player_match_head_to_head_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_head_to_head_min_fields_possibleTypes: string[] = ['v_player_match_head_to_head_min_fields'] - export const isv_player_match_head_to_head_min_fields = (obj?: { __typename?: any } | null): obj is v_player_match_head_to_head_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_head_to_head_min_fields"') - return v_player_match_head_to_head_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_head_to_head_stddev_fields_possibleTypes: string[] = ['v_player_match_head_to_head_stddev_fields'] - export const isv_player_match_head_to_head_stddev_fields = (obj?: { __typename?: any } | null): obj is v_player_match_head_to_head_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_head_to_head_stddev_fields"') - return v_player_match_head_to_head_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_head_to_head_stddev_pop_fields_possibleTypes: string[] = ['v_player_match_head_to_head_stddev_pop_fields'] - export const isv_player_match_head_to_head_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_match_head_to_head_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_head_to_head_stddev_pop_fields"') - return v_player_match_head_to_head_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_head_to_head_stddev_samp_fields_possibleTypes: string[] = ['v_player_match_head_to_head_stddev_samp_fields'] - export const isv_player_match_head_to_head_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_match_head_to_head_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_head_to_head_stddev_samp_fields"') - return v_player_match_head_to_head_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_head_to_head_sum_fields_possibleTypes: string[] = ['v_player_match_head_to_head_sum_fields'] - export const isv_player_match_head_to_head_sum_fields = (obj?: { __typename?: any } | null): obj is v_player_match_head_to_head_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_head_to_head_sum_fields"') - return v_player_match_head_to_head_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_head_to_head_var_pop_fields_possibleTypes: string[] = ['v_player_match_head_to_head_var_pop_fields'] - export const isv_player_match_head_to_head_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_match_head_to_head_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_head_to_head_var_pop_fields"') - return v_player_match_head_to_head_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_head_to_head_var_samp_fields_possibleTypes: string[] = ['v_player_match_head_to_head_var_samp_fields'] - export const isv_player_match_head_to_head_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_match_head_to_head_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_head_to_head_var_samp_fields"') - return v_player_match_head_to_head_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_head_to_head_variance_fields_possibleTypes: string[] = ['v_player_match_head_to_head_variance_fields'] - export const isv_player_match_head_to_head_variance_fields = (obj?: { __typename?: any } | null): obj is v_player_match_head_to_head_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_head_to_head_variance_fields"') - return v_player_match_head_to_head_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_map_hltv_possibleTypes: string[] = ['v_player_match_map_hltv'] - export const isv_player_match_map_hltv = (obj?: { __typename?: any } | null): obj is v_player_match_map_hltv => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_hltv"') - return v_player_match_map_hltv_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_map_hltv_aggregate_possibleTypes: string[] = ['v_player_match_map_hltv_aggregate'] - export const isv_player_match_map_hltv_aggregate = (obj?: { __typename?: any } | null): obj is v_player_match_map_hltv_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_hltv_aggregate"') - return v_player_match_map_hltv_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_map_hltv_aggregate_fields_possibleTypes: string[] = ['v_player_match_map_hltv_aggregate_fields'] - export const isv_player_match_map_hltv_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_player_match_map_hltv_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_hltv_aggregate_fields"') - return v_player_match_map_hltv_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_map_hltv_avg_fields_possibleTypes: string[] = ['v_player_match_map_hltv_avg_fields'] - export const isv_player_match_map_hltv_avg_fields = (obj?: { __typename?: any } | null): obj is v_player_match_map_hltv_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_hltv_avg_fields"') - return v_player_match_map_hltv_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_map_hltv_max_fields_possibleTypes: string[] = ['v_player_match_map_hltv_max_fields'] - export const isv_player_match_map_hltv_max_fields = (obj?: { __typename?: any } | null): obj is v_player_match_map_hltv_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_hltv_max_fields"') - return v_player_match_map_hltv_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_map_hltv_min_fields_possibleTypes: string[] = ['v_player_match_map_hltv_min_fields'] - export const isv_player_match_map_hltv_min_fields = (obj?: { __typename?: any } | null): obj is v_player_match_map_hltv_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_hltv_min_fields"') - return v_player_match_map_hltv_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_map_hltv_mutation_response_possibleTypes: string[] = ['v_player_match_map_hltv_mutation_response'] - export const isv_player_match_map_hltv_mutation_response = (obj?: { __typename?: any } | null): obj is v_player_match_map_hltv_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_hltv_mutation_response"') - return v_player_match_map_hltv_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_map_hltv_stddev_fields_possibleTypes: string[] = ['v_player_match_map_hltv_stddev_fields'] - export const isv_player_match_map_hltv_stddev_fields = (obj?: { __typename?: any } | null): obj is v_player_match_map_hltv_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_hltv_stddev_fields"') - return v_player_match_map_hltv_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_map_hltv_stddev_pop_fields_possibleTypes: string[] = ['v_player_match_map_hltv_stddev_pop_fields'] - export const isv_player_match_map_hltv_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_match_map_hltv_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_hltv_stddev_pop_fields"') - return v_player_match_map_hltv_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_map_hltv_stddev_samp_fields_possibleTypes: string[] = ['v_player_match_map_hltv_stddev_samp_fields'] - export const isv_player_match_map_hltv_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_match_map_hltv_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_hltv_stddev_samp_fields"') - return v_player_match_map_hltv_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_map_hltv_sum_fields_possibleTypes: string[] = ['v_player_match_map_hltv_sum_fields'] - export const isv_player_match_map_hltv_sum_fields = (obj?: { __typename?: any } | null): obj is v_player_match_map_hltv_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_hltv_sum_fields"') - return v_player_match_map_hltv_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_map_hltv_var_pop_fields_possibleTypes: string[] = ['v_player_match_map_hltv_var_pop_fields'] - export const isv_player_match_map_hltv_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_match_map_hltv_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_hltv_var_pop_fields"') - return v_player_match_map_hltv_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_map_hltv_var_samp_fields_possibleTypes: string[] = ['v_player_match_map_hltv_var_samp_fields'] - export const isv_player_match_map_hltv_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_match_map_hltv_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_hltv_var_samp_fields"') - return v_player_match_map_hltv_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_map_hltv_variance_fields_possibleTypes: string[] = ['v_player_match_map_hltv_variance_fields'] - export const isv_player_match_map_hltv_variance_fields = (obj?: { __typename?: any } | null): obj is v_player_match_map_hltv_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_hltv_variance_fields"') - return v_player_match_map_hltv_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_map_roles_possibleTypes: string[] = ['v_player_match_map_roles'] - export const isv_player_match_map_roles = (obj?: { __typename?: any } | null): obj is v_player_match_map_roles => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_roles"') - return v_player_match_map_roles_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_map_roles_aggregate_possibleTypes: string[] = ['v_player_match_map_roles_aggregate'] - export const isv_player_match_map_roles_aggregate = (obj?: { __typename?: any } | null): obj is v_player_match_map_roles_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_roles_aggregate"') - return v_player_match_map_roles_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_map_roles_aggregate_fields_possibleTypes: string[] = ['v_player_match_map_roles_aggregate_fields'] - export const isv_player_match_map_roles_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_player_match_map_roles_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_roles_aggregate_fields"') - return v_player_match_map_roles_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_map_roles_avg_fields_possibleTypes: string[] = ['v_player_match_map_roles_avg_fields'] - export const isv_player_match_map_roles_avg_fields = (obj?: { __typename?: any } | null): obj is v_player_match_map_roles_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_roles_avg_fields"') - return v_player_match_map_roles_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_map_roles_max_fields_possibleTypes: string[] = ['v_player_match_map_roles_max_fields'] - export const isv_player_match_map_roles_max_fields = (obj?: { __typename?: any } | null): obj is v_player_match_map_roles_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_roles_max_fields"') - return v_player_match_map_roles_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_map_roles_min_fields_possibleTypes: string[] = ['v_player_match_map_roles_min_fields'] - export const isv_player_match_map_roles_min_fields = (obj?: { __typename?: any } | null): obj is v_player_match_map_roles_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_roles_min_fields"') - return v_player_match_map_roles_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_map_roles_stddev_fields_possibleTypes: string[] = ['v_player_match_map_roles_stddev_fields'] - export const isv_player_match_map_roles_stddev_fields = (obj?: { __typename?: any } | null): obj is v_player_match_map_roles_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_roles_stddev_fields"') - return v_player_match_map_roles_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_map_roles_stddev_pop_fields_possibleTypes: string[] = ['v_player_match_map_roles_stddev_pop_fields'] - export const isv_player_match_map_roles_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_match_map_roles_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_roles_stddev_pop_fields"') - return v_player_match_map_roles_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_map_roles_stddev_samp_fields_possibleTypes: string[] = ['v_player_match_map_roles_stddev_samp_fields'] - export const isv_player_match_map_roles_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_match_map_roles_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_roles_stddev_samp_fields"') - return v_player_match_map_roles_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_map_roles_sum_fields_possibleTypes: string[] = ['v_player_match_map_roles_sum_fields'] - export const isv_player_match_map_roles_sum_fields = (obj?: { __typename?: any } | null): obj is v_player_match_map_roles_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_roles_sum_fields"') - return v_player_match_map_roles_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_map_roles_var_pop_fields_possibleTypes: string[] = ['v_player_match_map_roles_var_pop_fields'] - export const isv_player_match_map_roles_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_match_map_roles_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_roles_var_pop_fields"') - return v_player_match_map_roles_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_map_roles_var_samp_fields_possibleTypes: string[] = ['v_player_match_map_roles_var_samp_fields'] - export const isv_player_match_map_roles_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_match_map_roles_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_roles_var_samp_fields"') - return v_player_match_map_roles_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_map_roles_variance_fields_possibleTypes: string[] = ['v_player_match_map_roles_variance_fields'] - export const isv_player_match_map_roles_variance_fields = (obj?: { __typename?: any } | null): obj is v_player_match_map_roles_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_roles_variance_fields"') - return v_player_match_map_roles_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_performance_possibleTypes: string[] = ['v_player_match_performance'] - export const isv_player_match_performance = (obj?: { __typename?: any } | null): obj is v_player_match_performance => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_performance"') - return v_player_match_performance_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_performance_aggregate_possibleTypes: string[] = ['v_player_match_performance_aggregate'] - export const isv_player_match_performance_aggregate = (obj?: { __typename?: any } | null): obj is v_player_match_performance_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_performance_aggregate"') - return v_player_match_performance_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_performance_aggregate_fields_possibleTypes: string[] = ['v_player_match_performance_aggregate_fields'] - export const isv_player_match_performance_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_player_match_performance_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_performance_aggregate_fields"') - return v_player_match_performance_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_performance_avg_fields_possibleTypes: string[] = ['v_player_match_performance_avg_fields'] - export const isv_player_match_performance_avg_fields = (obj?: { __typename?: any } | null): obj is v_player_match_performance_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_performance_avg_fields"') - return v_player_match_performance_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_performance_max_fields_possibleTypes: string[] = ['v_player_match_performance_max_fields'] - export const isv_player_match_performance_max_fields = (obj?: { __typename?: any } | null): obj is v_player_match_performance_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_performance_max_fields"') - return v_player_match_performance_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_performance_min_fields_possibleTypes: string[] = ['v_player_match_performance_min_fields'] - export const isv_player_match_performance_min_fields = (obj?: { __typename?: any } | null): obj is v_player_match_performance_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_performance_min_fields"') - return v_player_match_performance_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_performance_stddev_fields_possibleTypes: string[] = ['v_player_match_performance_stddev_fields'] - export const isv_player_match_performance_stddev_fields = (obj?: { __typename?: any } | null): obj is v_player_match_performance_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_performance_stddev_fields"') - return v_player_match_performance_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_performance_stddev_pop_fields_possibleTypes: string[] = ['v_player_match_performance_stddev_pop_fields'] - export const isv_player_match_performance_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_match_performance_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_performance_stddev_pop_fields"') - return v_player_match_performance_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_performance_stddev_samp_fields_possibleTypes: string[] = ['v_player_match_performance_stddev_samp_fields'] - export const isv_player_match_performance_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_match_performance_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_performance_stddev_samp_fields"') - return v_player_match_performance_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_performance_sum_fields_possibleTypes: string[] = ['v_player_match_performance_sum_fields'] - export const isv_player_match_performance_sum_fields = (obj?: { __typename?: any } | null): obj is v_player_match_performance_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_performance_sum_fields"') - return v_player_match_performance_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_performance_var_pop_fields_possibleTypes: string[] = ['v_player_match_performance_var_pop_fields'] - export const isv_player_match_performance_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_match_performance_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_performance_var_pop_fields"') - return v_player_match_performance_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_performance_var_samp_fields_possibleTypes: string[] = ['v_player_match_performance_var_samp_fields'] - export const isv_player_match_performance_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_match_performance_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_performance_var_samp_fields"') - return v_player_match_performance_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_performance_variance_fields_possibleTypes: string[] = ['v_player_match_performance_variance_fields'] - export const isv_player_match_performance_variance_fields = (obj?: { __typename?: any } | null): obj is v_player_match_performance_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_performance_variance_fields"') - return v_player_match_performance_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_rating_possibleTypes: string[] = ['v_player_match_rating'] - export const isv_player_match_rating = (obj?: { __typename?: any } | null): obj is v_player_match_rating => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_rating"') - return v_player_match_rating_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_rating_aggregate_possibleTypes: string[] = ['v_player_match_rating_aggregate'] - export const isv_player_match_rating_aggregate = (obj?: { __typename?: any } | null): obj is v_player_match_rating_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_rating_aggregate"') - return v_player_match_rating_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_rating_aggregate_fields_possibleTypes: string[] = ['v_player_match_rating_aggregate_fields'] - export const isv_player_match_rating_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_player_match_rating_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_rating_aggregate_fields"') - return v_player_match_rating_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_rating_avg_fields_possibleTypes: string[] = ['v_player_match_rating_avg_fields'] - export const isv_player_match_rating_avg_fields = (obj?: { __typename?: any } | null): obj is v_player_match_rating_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_rating_avg_fields"') - return v_player_match_rating_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_rating_max_fields_possibleTypes: string[] = ['v_player_match_rating_max_fields'] - export const isv_player_match_rating_max_fields = (obj?: { __typename?: any } | null): obj is v_player_match_rating_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_rating_max_fields"') - return v_player_match_rating_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_rating_min_fields_possibleTypes: string[] = ['v_player_match_rating_min_fields'] - export const isv_player_match_rating_min_fields = (obj?: { __typename?: any } | null): obj is v_player_match_rating_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_rating_min_fields"') - return v_player_match_rating_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_rating_stddev_fields_possibleTypes: string[] = ['v_player_match_rating_stddev_fields'] - export const isv_player_match_rating_stddev_fields = (obj?: { __typename?: any } | null): obj is v_player_match_rating_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_rating_stddev_fields"') - return v_player_match_rating_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_rating_stddev_pop_fields_possibleTypes: string[] = ['v_player_match_rating_stddev_pop_fields'] - export const isv_player_match_rating_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_match_rating_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_rating_stddev_pop_fields"') - return v_player_match_rating_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_rating_stddev_samp_fields_possibleTypes: string[] = ['v_player_match_rating_stddev_samp_fields'] - export const isv_player_match_rating_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_match_rating_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_rating_stddev_samp_fields"') - return v_player_match_rating_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_rating_sum_fields_possibleTypes: string[] = ['v_player_match_rating_sum_fields'] - export const isv_player_match_rating_sum_fields = (obj?: { __typename?: any } | null): obj is v_player_match_rating_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_rating_sum_fields"') - return v_player_match_rating_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_rating_var_pop_fields_possibleTypes: string[] = ['v_player_match_rating_var_pop_fields'] - export const isv_player_match_rating_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_match_rating_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_rating_var_pop_fields"') - return v_player_match_rating_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_rating_var_samp_fields_possibleTypes: string[] = ['v_player_match_rating_var_samp_fields'] - export const isv_player_match_rating_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_match_rating_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_rating_var_samp_fields"') - return v_player_match_rating_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_match_rating_variance_fields_possibleTypes: string[] = ['v_player_match_rating_variance_fields'] - export const isv_player_match_rating_variance_fields = (obj?: { __typename?: any } | null): obj is v_player_match_rating_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_rating_variance_fields"') - return v_player_match_rating_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_multi_kills_possibleTypes: string[] = ['v_player_multi_kills'] - export const isv_player_multi_kills = (obj?: { __typename?: any } | null): obj is v_player_multi_kills => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_multi_kills"') - return v_player_multi_kills_possibleTypes.includes(obj.__typename) - } - - - - const v_player_multi_kills_aggregate_possibleTypes: string[] = ['v_player_multi_kills_aggregate'] - export const isv_player_multi_kills_aggregate = (obj?: { __typename?: any } | null): obj is v_player_multi_kills_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_multi_kills_aggregate"') - return v_player_multi_kills_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const v_player_multi_kills_aggregate_fields_possibleTypes: string[] = ['v_player_multi_kills_aggregate_fields'] - export const isv_player_multi_kills_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_player_multi_kills_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_multi_kills_aggregate_fields"') - return v_player_multi_kills_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_multi_kills_avg_fields_possibleTypes: string[] = ['v_player_multi_kills_avg_fields'] - export const isv_player_multi_kills_avg_fields = (obj?: { __typename?: any } | null): obj is v_player_multi_kills_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_multi_kills_avg_fields"') - return v_player_multi_kills_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_multi_kills_max_fields_possibleTypes: string[] = ['v_player_multi_kills_max_fields'] - export const isv_player_multi_kills_max_fields = (obj?: { __typename?: any } | null): obj is v_player_multi_kills_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_multi_kills_max_fields"') - return v_player_multi_kills_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_multi_kills_min_fields_possibleTypes: string[] = ['v_player_multi_kills_min_fields'] - export const isv_player_multi_kills_min_fields = (obj?: { __typename?: any } | null): obj is v_player_multi_kills_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_multi_kills_min_fields"') - return v_player_multi_kills_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_multi_kills_stddev_fields_possibleTypes: string[] = ['v_player_multi_kills_stddev_fields'] - export const isv_player_multi_kills_stddev_fields = (obj?: { __typename?: any } | null): obj is v_player_multi_kills_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_multi_kills_stddev_fields"') - return v_player_multi_kills_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_multi_kills_stddev_pop_fields_possibleTypes: string[] = ['v_player_multi_kills_stddev_pop_fields'] - export const isv_player_multi_kills_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_multi_kills_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_multi_kills_stddev_pop_fields"') - return v_player_multi_kills_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_multi_kills_stddev_samp_fields_possibleTypes: string[] = ['v_player_multi_kills_stddev_samp_fields'] - export const isv_player_multi_kills_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_multi_kills_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_multi_kills_stddev_samp_fields"') - return v_player_multi_kills_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_multi_kills_sum_fields_possibleTypes: string[] = ['v_player_multi_kills_sum_fields'] - export const isv_player_multi_kills_sum_fields = (obj?: { __typename?: any } | null): obj is v_player_multi_kills_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_multi_kills_sum_fields"') - return v_player_multi_kills_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_multi_kills_var_pop_fields_possibleTypes: string[] = ['v_player_multi_kills_var_pop_fields'] - export const isv_player_multi_kills_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_multi_kills_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_multi_kills_var_pop_fields"') - return v_player_multi_kills_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_multi_kills_var_samp_fields_possibleTypes: string[] = ['v_player_multi_kills_var_samp_fields'] - export const isv_player_multi_kills_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_multi_kills_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_multi_kills_var_samp_fields"') - return v_player_multi_kills_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_multi_kills_variance_fields_possibleTypes: string[] = ['v_player_multi_kills_variance_fields'] - export const isv_player_multi_kills_variance_fields = (obj?: { __typename?: any } | null): obj is v_player_multi_kills_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_multi_kills_variance_fields"') - return v_player_multi_kills_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_queue_partners_possibleTypes: string[] = ['v_player_queue_partners'] - export const isv_player_queue_partners = (obj?: { __typename?: any } | null): obj is v_player_queue_partners => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_queue_partners"') - return v_player_queue_partners_possibleTypes.includes(obj.__typename) - } - - - - const v_player_queue_partners_aggregate_possibleTypes: string[] = ['v_player_queue_partners_aggregate'] - export const isv_player_queue_partners_aggregate = (obj?: { __typename?: any } | null): obj is v_player_queue_partners_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_queue_partners_aggregate"') - return v_player_queue_partners_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const v_player_queue_partners_aggregate_fields_possibleTypes: string[] = ['v_player_queue_partners_aggregate_fields'] - export const isv_player_queue_partners_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_player_queue_partners_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_queue_partners_aggregate_fields"') - return v_player_queue_partners_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_queue_partners_avg_fields_possibleTypes: string[] = ['v_player_queue_partners_avg_fields'] - export const isv_player_queue_partners_avg_fields = (obj?: { __typename?: any } | null): obj is v_player_queue_partners_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_queue_partners_avg_fields"') - return v_player_queue_partners_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_queue_partners_max_fields_possibleTypes: string[] = ['v_player_queue_partners_max_fields'] - export const isv_player_queue_partners_max_fields = (obj?: { __typename?: any } | null): obj is v_player_queue_partners_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_queue_partners_max_fields"') - return v_player_queue_partners_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_queue_partners_min_fields_possibleTypes: string[] = ['v_player_queue_partners_min_fields'] - export const isv_player_queue_partners_min_fields = (obj?: { __typename?: any } | null): obj is v_player_queue_partners_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_queue_partners_min_fields"') - return v_player_queue_partners_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_queue_partners_stddev_fields_possibleTypes: string[] = ['v_player_queue_partners_stddev_fields'] - export const isv_player_queue_partners_stddev_fields = (obj?: { __typename?: any } | null): obj is v_player_queue_partners_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_queue_partners_stddev_fields"') - return v_player_queue_partners_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_queue_partners_stddev_pop_fields_possibleTypes: string[] = ['v_player_queue_partners_stddev_pop_fields'] - export const isv_player_queue_partners_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_queue_partners_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_queue_partners_stddev_pop_fields"') - return v_player_queue_partners_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_queue_partners_stddev_samp_fields_possibleTypes: string[] = ['v_player_queue_partners_stddev_samp_fields'] - export const isv_player_queue_partners_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_queue_partners_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_queue_partners_stddev_samp_fields"') - return v_player_queue_partners_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_queue_partners_sum_fields_possibleTypes: string[] = ['v_player_queue_partners_sum_fields'] - export const isv_player_queue_partners_sum_fields = (obj?: { __typename?: any } | null): obj is v_player_queue_partners_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_queue_partners_sum_fields"') - return v_player_queue_partners_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_queue_partners_var_pop_fields_possibleTypes: string[] = ['v_player_queue_partners_var_pop_fields'] - export const isv_player_queue_partners_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_queue_partners_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_queue_partners_var_pop_fields"') - return v_player_queue_partners_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_queue_partners_var_samp_fields_possibleTypes: string[] = ['v_player_queue_partners_var_samp_fields'] - export const isv_player_queue_partners_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_queue_partners_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_queue_partners_var_samp_fields"') - return v_player_queue_partners_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_queue_partners_variance_fields_possibleTypes: string[] = ['v_player_queue_partners_variance_fields'] - export const isv_player_queue_partners_variance_fields = (obj?: { __typename?: any } | null): obj is v_player_queue_partners_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_queue_partners_variance_fields"') - return v_player_queue_partners_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_weapon_damage_possibleTypes: string[] = ['v_player_weapon_damage'] - export const isv_player_weapon_damage = (obj?: { __typename?: any } | null): obj is v_player_weapon_damage => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_damage"') - return v_player_weapon_damage_possibleTypes.includes(obj.__typename) - } - - - - const v_player_weapon_damage_aggregate_possibleTypes: string[] = ['v_player_weapon_damage_aggregate'] - export const isv_player_weapon_damage_aggregate = (obj?: { __typename?: any } | null): obj is v_player_weapon_damage_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_damage_aggregate"') - return v_player_weapon_damage_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const v_player_weapon_damage_aggregate_fields_possibleTypes: string[] = ['v_player_weapon_damage_aggregate_fields'] - export const isv_player_weapon_damage_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_player_weapon_damage_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_damage_aggregate_fields"') - return v_player_weapon_damage_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_weapon_damage_avg_fields_possibleTypes: string[] = ['v_player_weapon_damage_avg_fields'] - export const isv_player_weapon_damage_avg_fields = (obj?: { __typename?: any } | null): obj is v_player_weapon_damage_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_damage_avg_fields"') - return v_player_weapon_damage_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_weapon_damage_max_fields_possibleTypes: string[] = ['v_player_weapon_damage_max_fields'] - export const isv_player_weapon_damage_max_fields = (obj?: { __typename?: any } | null): obj is v_player_weapon_damage_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_damage_max_fields"') - return v_player_weapon_damage_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_weapon_damage_min_fields_possibleTypes: string[] = ['v_player_weapon_damage_min_fields'] - export const isv_player_weapon_damage_min_fields = (obj?: { __typename?: any } | null): obj is v_player_weapon_damage_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_damage_min_fields"') - return v_player_weapon_damage_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_weapon_damage_stddev_fields_possibleTypes: string[] = ['v_player_weapon_damage_stddev_fields'] - export const isv_player_weapon_damage_stddev_fields = (obj?: { __typename?: any } | null): obj is v_player_weapon_damage_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_damage_stddev_fields"') - return v_player_weapon_damage_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_weapon_damage_stddev_pop_fields_possibleTypes: string[] = ['v_player_weapon_damage_stddev_pop_fields'] - export const isv_player_weapon_damage_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_weapon_damage_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_damage_stddev_pop_fields"') - return v_player_weapon_damage_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_weapon_damage_stddev_samp_fields_possibleTypes: string[] = ['v_player_weapon_damage_stddev_samp_fields'] - export const isv_player_weapon_damage_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_weapon_damage_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_damage_stddev_samp_fields"') - return v_player_weapon_damage_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_weapon_damage_sum_fields_possibleTypes: string[] = ['v_player_weapon_damage_sum_fields'] - export const isv_player_weapon_damage_sum_fields = (obj?: { __typename?: any } | null): obj is v_player_weapon_damage_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_damage_sum_fields"') - return v_player_weapon_damage_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_weapon_damage_var_pop_fields_possibleTypes: string[] = ['v_player_weapon_damage_var_pop_fields'] - export const isv_player_weapon_damage_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_weapon_damage_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_damage_var_pop_fields"') - return v_player_weapon_damage_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_weapon_damage_var_samp_fields_possibleTypes: string[] = ['v_player_weapon_damage_var_samp_fields'] - export const isv_player_weapon_damage_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_weapon_damage_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_damage_var_samp_fields"') - return v_player_weapon_damage_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_weapon_damage_variance_fields_possibleTypes: string[] = ['v_player_weapon_damage_variance_fields'] - export const isv_player_weapon_damage_variance_fields = (obj?: { __typename?: any } | null): obj is v_player_weapon_damage_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_damage_variance_fields"') - return v_player_weapon_damage_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_weapon_kills_possibleTypes: string[] = ['v_player_weapon_kills'] - export const isv_player_weapon_kills = (obj?: { __typename?: any } | null): obj is v_player_weapon_kills => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_kills"') - return v_player_weapon_kills_possibleTypes.includes(obj.__typename) - } - - - - const v_player_weapon_kills_aggregate_possibleTypes: string[] = ['v_player_weapon_kills_aggregate'] - export const isv_player_weapon_kills_aggregate = (obj?: { __typename?: any } | null): obj is v_player_weapon_kills_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_kills_aggregate"') - return v_player_weapon_kills_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const v_player_weapon_kills_aggregate_fields_possibleTypes: string[] = ['v_player_weapon_kills_aggregate_fields'] - export const isv_player_weapon_kills_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_player_weapon_kills_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_kills_aggregate_fields"') - return v_player_weapon_kills_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_weapon_kills_avg_fields_possibleTypes: string[] = ['v_player_weapon_kills_avg_fields'] - export const isv_player_weapon_kills_avg_fields = (obj?: { __typename?: any } | null): obj is v_player_weapon_kills_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_kills_avg_fields"') - return v_player_weapon_kills_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_weapon_kills_max_fields_possibleTypes: string[] = ['v_player_weapon_kills_max_fields'] - export const isv_player_weapon_kills_max_fields = (obj?: { __typename?: any } | null): obj is v_player_weapon_kills_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_kills_max_fields"') - return v_player_weapon_kills_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_weapon_kills_min_fields_possibleTypes: string[] = ['v_player_weapon_kills_min_fields'] - export const isv_player_weapon_kills_min_fields = (obj?: { __typename?: any } | null): obj is v_player_weapon_kills_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_kills_min_fields"') - return v_player_weapon_kills_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_weapon_kills_stddev_fields_possibleTypes: string[] = ['v_player_weapon_kills_stddev_fields'] - export const isv_player_weapon_kills_stddev_fields = (obj?: { __typename?: any } | null): obj is v_player_weapon_kills_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_kills_stddev_fields"') - return v_player_weapon_kills_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_weapon_kills_stddev_pop_fields_possibleTypes: string[] = ['v_player_weapon_kills_stddev_pop_fields'] - export const isv_player_weapon_kills_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_weapon_kills_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_kills_stddev_pop_fields"') - return v_player_weapon_kills_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_weapon_kills_stddev_samp_fields_possibleTypes: string[] = ['v_player_weapon_kills_stddev_samp_fields'] - export const isv_player_weapon_kills_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_weapon_kills_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_kills_stddev_samp_fields"') - return v_player_weapon_kills_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_weapon_kills_sum_fields_possibleTypes: string[] = ['v_player_weapon_kills_sum_fields'] - export const isv_player_weapon_kills_sum_fields = (obj?: { __typename?: any } | null): obj is v_player_weapon_kills_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_kills_sum_fields"') - return v_player_weapon_kills_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_weapon_kills_var_pop_fields_possibleTypes: string[] = ['v_player_weapon_kills_var_pop_fields'] - export const isv_player_weapon_kills_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_weapon_kills_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_kills_var_pop_fields"') - return v_player_weapon_kills_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_weapon_kills_var_samp_fields_possibleTypes: string[] = ['v_player_weapon_kills_var_samp_fields'] - export const isv_player_weapon_kills_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_weapon_kills_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_kills_var_samp_fields"') - return v_player_weapon_kills_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_player_weapon_kills_variance_fields_possibleTypes: string[] = ['v_player_weapon_kills_variance_fields'] - export const isv_player_weapon_kills_variance_fields = (obj?: { __typename?: any } | null): obj is v_player_weapon_kills_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_kills_variance_fields"') - return v_player_weapon_kills_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_pool_maps_possibleTypes: string[] = ['v_pool_maps'] - export const isv_pool_maps = (obj?: { __typename?: any } | null): obj is v_pool_maps => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_pool_maps"') - return v_pool_maps_possibleTypes.includes(obj.__typename) - } - - - - const v_pool_maps_aggregate_possibleTypes: string[] = ['v_pool_maps_aggregate'] - export const isv_pool_maps_aggregate = (obj?: { __typename?: any } | null): obj is v_pool_maps_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_pool_maps_aggregate"') - return v_pool_maps_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const v_pool_maps_aggregate_fields_possibleTypes: string[] = ['v_pool_maps_aggregate_fields'] - export const isv_pool_maps_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_pool_maps_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_pool_maps_aggregate_fields"') - return v_pool_maps_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_pool_maps_max_fields_possibleTypes: string[] = ['v_pool_maps_max_fields'] - export const isv_pool_maps_max_fields = (obj?: { __typename?: any } | null): obj is v_pool_maps_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_pool_maps_max_fields"') - return v_pool_maps_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_pool_maps_min_fields_possibleTypes: string[] = ['v_pool_maps_min_fields'] - export const isv_pool_maps_min_fields = (obj?: { __typename?: any } | null): obj is v_pool_maps_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_pool_maps_min_fields"') - return v_pool_maps_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_pool_maps_mutation_response_possibleTypes: string[] = ['v_pool_maps_mutation_response'] - export const isv_pool_maps_mutation_response = (obj?: { __typename?: any } | null): obj is v_pool_maps_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_pool_maps_mutation_response"') - return v_pool_maps_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const v_steam_account_pool_status_possibleTypes: string[] = ['v_steam_account_pool_status'] - export const isv_steam_account_pool_status = (obj?: { __typename?: any } | null): obj is v_steam_account_pool_status => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_steam_account_pool_status"') - return v_steam_account_pool_status_possibleTypes.includes(obj.__typename) - } - - - - const v_steam_account_pool_status_aggregate_possibleTypes: string[] = ['v_steam_account_pool_status_aggregate'] - export const isv_steam_account_pool_status_aggregate = (obj?: { __typename?: any } | null): obj is v_steam_account_pool_status_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_steam_account_pool_status_aggregate"') - return v_steam_account_pool_status_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const v_steam_account_pool_status_aggregate_fields_possibleTypes: string[] = ['v_steam_account_pool_status_aggregate_fields'] - export const isv_steam_account_pool_status_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_steam_account_pool_status_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_steam_account_pool_status_aggregate_fields"') - return v_steam_account_pool_status_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_steam_account_pool_status_avg_fields_possibleTypes: string[] = ['v_steam_account_pool_status_avg_fields'] - export const isv_steam_account_pool_status_avg_fields = (obj?: { __typename?: any } | null): obj is v_steam_account_pool_status_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_steam_account_pool_status_avg_fields"') - return v_steam_account_pool_status_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_steam_account_pool_status_max_fields_possibleTypes: string[] = ['v_steam_account_pool_status_max_fields'] - export const isv_steam_account_pool_status_max_fields = (obj?: { __typename?: any } | null): obj is v_steam_account_pool_status_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_steam_account_pool_status_max_fields"') - return v_steam_account_pool_status_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_steam_account_pool_status_min_fields_possibleTypes: string[] = ['v_steam_account_pool_status_min_fields'] - export const isv_steam_account_pool_status_min_fields = (obj?: { __typename?: any } | null): obj is v_steam_account_pool_status_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_steam_account_pool_status_min_fields"') - return v_steam_account_pool_status_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_steam_account_pool_status_stddev_fields_possibleTypes: string[] = ['v_steam_account_pool_status_stddev_fields'] - export const isv_steam_account_pool_status_stddev_fields = (obj?: { __typename?: any } | null): obj is v_steam_account_pool_status_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_steam_account_pool_status_stddev_fields"') - return v_steam_account_pool_status_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_steam_account_pool_status_stddev_pop_fields_possibleTypes: string[] = ['v_steam_account_pool_status_stddev_pop_fields'] - export const isv_steam_account_pool_status_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_steam_account_pool_status_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_steam_account_pool_status_stddev_pop_fields"') - return v_steam_account_pool_status_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_steam_account_pool_status_stddev_samp_fields_possibleTypes: string[] = ['v_steam_account_pool_status_stddev_samp_fields'] - export const isv_steam_account_pool_status_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_steam_account_pool_status_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_steam_account_pool_status_stddev_samp_fields"') - return v_steam_account_pool_status_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_steam_account_pool_status_sum_fields_possibleTypes: string[] = ['v_steam_account_pool_status_sum_fields'] - export const isv_steam_account_pool_status_sum_fields = (obj?: { __typename?: any } | null): obj is v_steam_account_pool_status_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_steam_account_pool_status_sum_fields"') - return v_steam_account_pool_status_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_steam_account_pool_status_var_pop_fields_possibleTypes: string[] = ['v_steam_account_pool_status_var_pop_fields'] - export const isv_steam_account_pool_status_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_steam_account_pool_status_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_steam_account_pool_status_var_pop_fields"') - return v_steam_account_pool_status_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_steam_account_pool_status_var_samp_fields_possibleTypes: string[] = ['v_steam_account_pool_status_var_samp_fields'] - export const isv_steam_account_pool_status_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_steam_account_pool_status_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_steam_account_pool_status_var_samp_fields"') - return v_steam_account_pool_status_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_steam_account_pool_status_variance_fields_possibleTypes: string[] = ['v_steam_account_pool_status_variance_fields'] - export const isv_steam_account_pool_status_variance_fields = (obj?: { __typename?: any } | null): obj is v_steam_account_pool_status_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_steam_account_pool_status_variance_fields"') - return v_steam_account_pool_status_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_team_ranks_possibleTypes: string[] = ['v_team_ranks'] - export const isv_team_ranks = (obj?: { __typename?: any } | null): obj is v_team_ranks => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_ranks"') - return v_team_ranks_possibleTypes.includes(obj.__typename) - } - - - - const v_team_ranks_aggregate_possibleTypes: string[] = ['v_team_ranks_aggregate'] - export const isv_team_ranks_aggregate = (obj?: { __typename?: any } | null): obj is v_team_ranks_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_ranks_aggregate"') - return v_team_ranks_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const v_team_ranks_aggregate_fields_possibleTypes: string[] = ['v_team_ranks_aggregate_fields'] - export const isv_team_ranks_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_team_ranks_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_ranks_aggregate_fields"') - return v_team_ranks_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_team_ranks_avg_fields_possibleTypes: string[] = ['v_team_ranks_avg_fields'] - export const isv_team_ranks_avg_fields = (obj?: { __typename?: any } | null): obj is v_team_ranks_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_ranks_avg_fields"') - return v_team_ranks_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_team_ranks_max_fields_possibleTypes: string[] = ['v_team_ranks_max_fields'] - export const isv_team_ranks_max_fields = (obj?: { __typename?: any } | null): obj is v_team_ranks_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_ranks_max_fields"') - return v_team_ranks_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_team_ranks_min_fields_possibleTypes: string[] = ['v_team_ranks_min_fields'] - export const isv_team_ranks_min_fields = (obj?: { __typename?: any } | null): obj is v_team_ranks_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_ranks_min_fields"') - return v_team_ranks_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_team_ranks_stddev_fields_possibleTypes: string[] = ['v_team_ranks_stddev_fields'] - export const isv_team_ranks_stddev_fields = (obj?: { __typename?: any } | null): obj is v_team_ranks_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_ranks_stddev_fields"') - return v_team_ranks_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_team_ranks_stddev_pop_fields_possibleTypes: string[] = ['v_team_ranks_stddev_pop_fields'] - export const isv_team_ranks_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_team_ranks_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_ranks_stddev_pop_fields"') - return v_team_ranks_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_team_ranks_stddev_samp_fields_possibleTypes: string[] = ['v_team_ranks_stddev_samp_fields'] - export const isv_team_ranks_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_team_ranks_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_ranks_stddev_samp_fields"') - return v_team_ranks_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_team_ranks_sum_fields_possibleTypes: string[] = ['v_team_ranks_sum_fields'] - export const isv_team_ranks_sum_fields = (obj?: { __typename?: any } | null): obj is v_team_ranks_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_ranks_sum_fields"') - return v_team_ranks_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_team_ranks_var_pop_fields_possibleTypes: string[] = ['v_team_ranks_var_pop_fields'] - export const isv_team_ranks_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_team_ranks_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_ranks_var_pop_fields"') - return v_team_ranks_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_team_ranks_var_samp_fields_possibleTypes: string[] = ['v_team_ranks_var_samp_fields'] - export const isv_team_ranks_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_team_ranks_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_ranks_var_samp_fields"') - return v_team_ranks_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_team_ranks_variance_fields_possibleTypes: string[] = ['v_team_ranks_variance_fields'] - export const isv_team_ranks_variance_fields = (obj?: { __typename?: any } | null): obj is v_team_ranks_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_ranks_variance_fields"') - return v_team_ranks_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_team_reputation_possibleTypes: string[] = ['v_team_reputation'] - export const isv_team_reputation = (obj?: { __typename?: any } | null): obj is v_team_reputation => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_reputation"') - return v_team_reputation_possibleTypes.includes(obj.__typename) - } - - - - const v_team_reputation_aggregate_possibleTypes: string[] = ['v_team_reputation_aggregate'] - export const isv_team_reputation_aggregate = (obj?: { __typename?: any } | null): obj is v_team_reputation_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_reputation_aggregate"') - return v_team_reputation_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const v_team_reputation_aggregate_fields_possibleTypes: string[] = ['v_team_reputation_aggregate_fields'] - export const isv_team_reputation_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_team_reputation_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_reputation_aggregate_fields"') - return v_team_reputation_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_team_reputation_avg_fields_possibleTypes: string[] = ['v_team_reputation_avg_fields'] - export const isv_team_reputation_avg_fields = (obj?: { __typename?: any } | null): obj is v_team_reputation_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_reputation_avg_fields"') - return v_team_reputation_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_team_reputation_max_fields_possibleTypes: string[] = ['v_team_reputation_max_fields'] - export const isv_team_reputation_max_fields = (obj?: { __typename?: any } | null): obj is v_team_reputation_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_reputation_max_fields"') - return v_team_reputation_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_team_reputation_min_fields_possibleTypes: string[] = ['v_team_reputation_min_fields'] - export const isv_team_reputation_min_fields = (obj?: { __typename?: any } | null): obj is v_team_reputation_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_reputation_min_fields"') - return v_team_reputation_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_team_reputation_stddev_fields_possibleTypes: string[] = ['v_team_reputation_stddev_fields'] - export const isv_team_reputation_stddev_fields = (obj?: { __typename?: any } | null): obj is v_team_reputation_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_reputation_stddev_fields"') - return v_team_reputation_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_team_reputation_stddev_pop_fields_possibleTypes: string[] = ['v_team_reputation_stddev_pop_fields'] - export const isv_team_reputation_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_team_reputation_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_reputation_stddev_pop_fields"') - return v_team_reputation_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_team_reputation_stddev_samp_fields_possibleTypes: string[] = ['v_team_reputation_stddev_samp_fields'] - export const isv_team_reputation_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_team_reputation_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_reputation_stddev_samp_fields"') - return v_team_reputation_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_team_reputation_sum_fields_possibleTypes: string[] = ['v_team_reputation_sum_fields'] - export const isv_team_reputation_sum_fields = (obj?: { __typename?: any } | null): obj is v_team_reputation_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_reputation_sum_fields"') - return v_team_reputation_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_team_reputation_var_pop_fields_possibleTypes: string[] = ['v_team_reputation_var_pop_fields'] - export const isv_team_reputation_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_team_reputation_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_reputation_var_pop_fields"') - return v_team_reputation_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_team_reputation_var_samp_fields_possibleTypes: string[] = ['v_team_reputation_var_samp_fields'] - export const isv_team_reputation_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_team_reputation_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_reputation_var_samp_fields"') - return v_team_reputation_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_team_reputation_variance_fields_possibleTypes: string[] = ['v_team_reputation_variance_fields'] - export const isv_team_reputation_variance_fields = (obj?: { __typename?: any } | null): obj is v_team_reputation_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_reputation_variance_fields"') - return v_team_reputation_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_team_stage_results_possibleTypes: string[] = ['v_team_stage_results'] - export const isv_team_stage_results = (obj?: { __typename?: any } | null): obj is v_team_stage_results => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_stage_results"') - return v_team_stage_results_possibleTypes.includes(obj.__typename) - } - - - - const v_team_stage_results_aggregate_possibleTypes: string[] = ['v_team_stage_results_aggregate'] - export const isv_team_stage_results_aggregate = (obj?: { __typename?: any } | null): obj is v_team_stage_results_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_stage_results_aggregate"') - return v_team_stage_results_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const v_team_stage_results_aggregate_fields_possibleTypes: string[] = ['v_team_stage_results_aggregate_fields'] - export const isv_team_stage_results_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_team_stage_results_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_stage_results_aggregate_fields"') - return v_team_stage_results_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_team_stage_results_avg_fields_possibleTypes: string[] = ['v_team_stage_results_avg_fields'] - export const isv_team_stage_results_avg_fields = (obj?: { __typename?: any } | null): obj is v_team_stage_results_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_stage_results_avg_fields"') - return v_team_stage_results_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_team_stage_results_max_fields_possibleTypes: string[] = ['v_team_stage_results_max_fields'] - export const isv_team_stage_results_max_fields = (obj?: { __typename?: any } | null): obj is v_team_stage_results_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_stage_results_max_fields"') - return v_team_stage_results_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_team_stage_results_min_fields_possibleTypes: string[] = ['v_team_stage_results_min_fields'] - export const isv_team_stage_results_min_fields = (obj?: { __typename?: any } | null): obj is v_team_stage_results_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_stage_results_min_fields"') - return v_team_stage_results_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_team_stage_results_mutation_response_possibleTypes: string[] = ['v_team_stage_results_mutation_response'] - export const isv_team_stage_results_mutation_response = (obj?: { __typename?: any } | null): obj is v_team_stage_results_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_stage_results_mutation_response"') - return v_team_stage_results_mutation_response_possibleTypes.includes(obj.__typename) - } - - - - const v_team_stage_results_stddev_fields_possibleTypes: string[] = ['v_team_stage_results_stddev_fields'] - export const isv_team_stage_results_stddev_fields = (obj?: { __typename?: any } | null): obj is v_team_stage_results_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_stage_results_stddev_fields"') - return v_team_stage_results_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_team_stage_results_stddev_pop_fields_possibleTypes: string[] = ['v_team_stage_results_stddev_pop_fields'] - export const isv_team_stage_results_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_team_stage_results_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_stage_results_stddev_pop_fields"') - return v_team_stage_results_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_team_stage_results_stddev_samp_fields_possibleTypes: string[] = ['v_team_stage_results_stddev_samp_fields'] - export const isv_team_stage_results_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_team_stage_results_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_stage_results_stddev_samp_fields"') - return v_team_stage_results_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_team_stage_results_sum_fields_possibleTypes: string[] = ['v_team_stage_results_sum_fields'] - export const isv_team_stage_results_sum_fields = (obj?: { __typename?: any } | null): obj is v_team_stage_results_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_stage_results_sum_fields"') - return v_team_stage_results_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_team_stage_results_var_pop_fields_possibleTypes: string[] = ['v_team_stage_results_var_pop_fields'] - export const isv_team_stage_results_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_team_stage_results_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_stage_results_var_pop_fields"') - return v_team_stage_results_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_team_stage_results_var_samp_fields_possibleTypes: string[] = ['v_team_stage_results_var_samp_fields'] - export const isv_team_stage_results_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_team_stage_results_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_stage_results_var_samp_fields"') - return v_team_stage_results_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_team_stage_results_variance_fields_possibleTypes: string[] = ['v_team_stage_results_variance_fields'] - export const isv_team_stage_results_variance_fields = (obj?: { __typename?: any } | null): obj is v_team_stage_results_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_stage_results_variance_fields"') - return v_team_stage_results_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_team_tournament_results_possibleTypes: string[] = ['v_team_tournament_results'] - export const isv_team_tournament_results = (obj?: { __typename?: any } | null): obj is v_team_tournament_results => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_tournament_results"') - return v_team_tournament_results_possibleTypes.includes(obj.__typename) - } - - - - const v_team_tournament_results_aggregate_possibleTypes: string[] = ['v_team_tournament_results_aggregate'] - export const isv_team_tournament_results_aggregate = (obj?: { __typename?: any } | null): obj is v_team_tournament_results_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_tournament_results_aggregate"') - return v_team_tournament_results_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const v_team_tournament_results_aggregate_fields_possibleTypes: string[] = ['v_team_tournament_results_aggregate_fields'] - export const isv_team_tournament_results_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_team_tournament_results_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_tournament_results_aggregate_fields"') - return v_team_tournament_results_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_team_tournament_results_avg_fields_possibleTypes: string[] = ['v_team_tournament_results_avg_fields'] - export const isv_team_tournament_results_avg_fields = (obj?: { __typename?: any } | null): obj is v_team_tournament_results_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_tournament_results_avg_fields"') - return v_team_tournament_results_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_team_tournament_results_max_fields_possibleTypes: string[] = ['v_team_tournament_results_max_fields'] - export const isv_team_tournament_results_max_fields = (obj?: { __typename?: any } | null): obj is v_team_tournament_results_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_tournament_results_max_fields"') - return v_team_tournament_results_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_team_tournament_results_min_fields_possibleTypes: string[] = ['v_team_tournament_results_min_fields'] - export const isv_team_tournament_results_min_fields = (obj?: { __typename?: any } | null): obj is v_team_tournament_results_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_tournament_results_min_fields"') - return v_team_tournament_results_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_team_tournament_results_stddev_fields_possibleTypes: string[] = ['v_team_tournament_results_stddev_fields'] - export const isv_team_tournament_results_stddev_fields = (obj?: { __typename?: any } | null): obj is v_team_tournament_results_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_tournament_results_stddev_fields"') - return v_team_tournament_results_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_team_tournament_results_stddev_pop_fields_possibleTypes: string[] = ['v_team_tournament_results_stddev_pop_fields'] - export const isv_team_tournament_results_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_team_tournament_results_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_tournament_results_stddev_pop_fields"') - return v_team_tournament_results_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_team_tournament_results_stddev_samp_fields_possibleTypes: string[] = ['v_team_tournament_results_stddev_samp_fields'] - export const isv_team_tournament_results_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_team_tournament_results_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_tournament_results_stddev_samp_fields"') - return v_team_tournament_results_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_team_tournament_results_sum_fields_possibleTypes: string[] = ['v_team_tournament_results_sum_fields'] - export const isv_team_tournament_results_sum_fields = (obj?: { __typename?: any } | null): obj is v_team_tournament_results_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_tournament_results_sum_fields"') - return v_team_tournament_results_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_team_tournament_results_var_pop_fields_possibleTypes: string[] = ['v_team_tournament_results_var_pop_fields'] - export const isv_team_tournament_results_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_team_tournament_results_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_tournament_results_var_pop_fields"') - return v_team_tournament_results_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_team_tournament_results_var_samp_fields_possibleTypes: string[] = ['v_team_tournament_results_var_samp_fields'] - export const isv_team_tournament_results_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_team_tournament_results_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_tournament_results_var_samp_fields"') - return v_team_tournament_results_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_team_tournament_results_variance_fields_possibleTypes: string[] = ['v_team_tournament_results_variance_fields'] - export const isv_team_tournament_results_variance_fields = (obj?: { __typename?: any } | null): obj is v_team_tournament_results_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_tournament_results_variance_fields"') - return v_team_tournament_results_variance_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_tournament_player_stats_possibleTypes: string[] = ['v_tournament_player_stats'] - export const isv_tournament_player_stats = (obj?: { __typename?: any } | null): obj is v_tournament_player_stats => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_tournament_player_stats"') - return v_tournament_player_stats_possibleTypes.includes(obj.__typename) - } - - - - const v_tournament_player_stats_aggregate_possibleTypes: string[] = ['v_tournament_player_stats_aggregate'] - export const isv_tournament_player_stats_aggregate = (obj?: { __typename?: any } | null): obj is v_tournament_player_stats_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_tournament_player_stats_aggregate"') - return v_tournament_player_stats_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const v_tournament_player_stats_aggregate_fields_possibleTypes: string[] = ['v_tournament_player_stats_aggregate_fields'] - export const isv_tournament_player_stats_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_tournament_player_stats_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_tournament_player_stats_aggregate_fields"') - return v_tournament_player_stats_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_tournament_player_stats_avg_fields_possibleTypes: string[] = ['v_tournament_player_stats_avg_fields'] - export const isv_tournament_player_stats_avg_fields = (obj?: { __typename?: any } | null): obj is v_tournament_player_stats_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_tournament_player_stats_avg_fields"') - return v_tournament_player_stats_avg_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_tournament_player_stats_max_fields_possibleTypes: string[] = ['v_tournament_player_stats_max_fields'] - export const isv_tournament_player_stats_max_fields = (obj?: { __typename?: any } | null): obj is v_tournament_player_stats_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_tournament_player_stats_max_fields"') - return v_tournament_player_stats_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_tournament_player_stats_min_fields_possibleTypes: string[] = ['v_tournament_player_stats_min_fields'] - export const isv_tournament_player_stats_min_fields = (obj?: { __typename?: any } | null): obj is v_tournament_player_stats_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_tournament_player_stats_min_fields"') - return v_tournament_player_stats_min_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_tournament_player_stats_stddev_fields_possibleTypes: string[] = ['v_tournament_player_stats_stddev_fields'] - export const isv_tournament_player_stats_stddev_fields = (obj?: { __typename?: any } | null): obj is v_tournament_player_stats_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_tournament_player_stats_stddev_fields"') - return v_tournament_player_stats_stddev_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_tournament_player_stats_stddev_pop_fields_possibleTypes: string[] = ['v_tournament_player_stats_stddev_pop_fields'] - export const isv_tournament_player_stats_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_tournament_player_stats_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_tournament_player_stats_stddev_pop_fields"') - return v_tournament_player_stats_stddev_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_tournament_player_stats_stddev_samp_fields_possibleTypes: string[] = ['v_tournament_player_stats_stddev_samp_fields'] - export const isv_tournament_player_stats_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_tournament_player_stats_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_tournament_player_stats_stddev_samp_fields"') - return v_tournament_player_stats_stddev_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_tournament_player_stats_sum_fields_possibleTypes: string[] = ['v_tournament_player_stats_sum_fields'] - export const isv_tournament_player_stats_sum_fields = (obj?: { __typename?: any } | null): obj is v_tournament_player_stats_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_tournament_player_stats_sum_fields"') - return v_tournament_player_stats_sum_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_tournament_player_stats_var_pop_fields_possibleTypes: string[] = ['v_tournament_player_stats_var_pop_fields'] - export const isv_tournament_player_stats_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_tournament_player_stats_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_tournament_player_stats_var_pop_fields"') - return v_tournament_player_stats_var_pop_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_tournament_player_stats_var_samp_fields_possibleTypes: string[] = ['v_tournament_player_stats_var_samp_fields'] - export const isv_tournament_player_stats_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_tournament_player_stats_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_tournament_player_stats_var_samp_fields"') - return v_tournament_player_stats_var_samp_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_tournament_player_stats_variance_fields_possibleTypes: string[] = ['v_tournament_player_stats_variance_fields'] - export const isv_tournament_player_stats_variance_fields = (obj?: { __typename?: any } | null): obj is v_tournament_player_stats_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_tournament_player_stats_variance_fields"') - return v_tournament_player_stats_variance_fields_possibleTypes.includes(obj.__typename) - } - - -export const enum_mapPoolConstraint = { - map_pool_pkey: 'map_pool_pkey' as const -} - -export const enum_mapPoolSelectColumn = { - map_id: 'map_id' as const, - map_pool_id: 'map_pool_id' as const -} - -export const enum_mapPoolUpdateColumn = { - map_id: 'map_id' as const, - map_pool_id: 'map_pool_id' as const -} - -export const enumAbandonedMatchesConstraint = { - abandoned_matches_pkey: 'abandoned_matches_pkey' as const -} - -export const enumAbandonedMatchesSelectColumn = { - abandoned_at: 'abandoned_at' as const, - id: 'id' as const, - match_id: 'match_id' as const, - steam_id: 'steam_id' as const -} - -export const enumAbandonedMatchesUpdateColumn = { - abandoned_at: 'abandoned_at' as const, - id: 'id' as const, - match_id: 'match_id' as const, - steam_id: 'steam_id' as const -} - -export const enumApiKeysConstraint = { - api_keys_pkey: 'api_keys_pkey' as const -} - -export const enumApiKeysSelectColumn = { - created_at: 'created_at' as const, - id: 'id' as const, - label: 'label' as const, - last_used_at: 'last_used_at' as const, - steam_id: 'steam_id' as const -} - -export const enumApiKeysUpdateColumn = { - created_at: 'created_at' as const, - id: 'id' as const, - label: 'label' as const, - last_used_at: 'last_used_at' as const, - steam_id: 'steam_id' as const -} - -export const enumAwardRecipientsConstraint = { - award_recipients_one_mvp_per_tournament: 'award_recipients_one_mvp_per_tournament' as const, - award_recipients_pkey: 'award_recipients_pkey' as const, - award_recipients_player_recipient_key: 'award_recipients_player_recipient_key' as const, - award_recipients_season_player_key: 'award_recipients_season_player_key' as const, - award_recipients_team_recipient_key: 'award_recipients_team_recipient_key' as const -} - -export const enumAwardRecipientsSelectColumn = { - award_id: 'award_id' as const, - awarded_by_steam_id: 'awarded_by_steam_id' as const, - created_at: 'created_at' as const, - event_id: 'event_id' as const, - id: 'id' as const, - league_season_id: 'league_season_id' as const, - note: 'note' as const, - placement: 'placement' as const, - placement_tier: 'placement_tier' as const, - player_steam_id: 'player_steam_id' as const, - season_id: 'season_id' as const, - source: 'source' as const, - team_id: 'team_id' as const, - tournament_id: 'tournament_id' as const, - tournament_team_id: 'tournament_team_id' as const -} - -export const enumAwardRecipientsUpdateColumn = { - award_id: 'award_id' as const, - awarded_by_steam_id: 'awarded_by_steam_id' as const, - created_at: 'created_at' as const, - event_id: 'event_id' as const, - id: 'id' as const, - league_season_id: 'league_season_id' as const, - note: 'note' as const, - placement: 'placement' as const, - player_steam_id: 'player_steam_id' as const, - season_id: 'season_id' as const, - source: 'source' as const, - team_id: 'team_id' as const, - tournament_id: 'tournament_id' as const, - tournament_team_id: 'tournament_team_id' as const -} - -export const enumAwardsConstraint = { - awards_pkey: 'awards_pkey' as const, - awards_system_key_key: 'awards_system_key_key' as const -} - -export const enumAwardsSelectColumn = { - allow_multiple: 'allow_multiple' as const, - created_at: 'created_at' as const, - created_by_steam_id: 'created_by_steam_id' as const, - description: 'description' as const, - event_id: 'event_id' as const, - id: 'id' as const, - image_url: 'image_url' as const, - league_season_id: 'league_season_id' as const, - name: 'name' as const, - season_id: 'season_id' as const, - silhouette: 'silhouette' as const, - system_key: 'system_key' as const, - tier: 'tier' as const, - tournament_id: 'tournament_id' as const, - updated_at: 'updated_at' as const -} - -export const enumAwardsUpdateColumn = { - allow_multiple: 'allow_multiple' as const, - created_at: 'created_at' as const, - created_by_steam_id: 'created_by_steam_id' as const, - description: 'description' as const, - event_id: 'event_id' as const, - id: 'id' as const, - image_url: 'image_url' as const, - league_season_id: 'league_season_id' as const, - name: 'name' as const, - season_id: 'season_id' as const, - silhouette: 'silhouette' as const, - system_key: 'system_key' as const, - tier: 'tier' as const, - tournament_id: 'tournament_id' as const, - updated_at: 'updated_at' as const -} - -export const enumChatReadStateConstraint = { - chat_read_state_pkey: 'chat_read_state_pkey' as const -} - -export const enumChatReadStateSelectColumn = { - last_read_at: 'last_read_at' as const, - steam_id: 'steam_id' as const, - thread: 'thread' as const -} - -export const enumChatReadStateUpdateColumn = { - last_read_at: 'last_read_at' as const, - steam_id: 'steam_id' as const, - thread: 'thread' as const -} - -export const enumClipRenderJobsConstraint = { - clip_render_jobs_pkey: 'clip_render_jobs_pkey' as const -} - -export const enumClipRenderJobsSelectColumn = { - clip_id: 'clip_id' as const, - created_at: 'created_at' as const, - error_message: 'error_message' as const, - game_server_node_id: 'game_server_node_id' as const, - id: 'id' as const, - k8s_job_name: 'k8s_job_name' as const, - last_status_at: 'last_status_at' as const, - match_map_demo_id: 'match_map_demo_id' as const, - match_map_id: 'match_map_id' as const, - paused: 'paused' as const, - progress: 'progress' as const, - session_token: 'session_token' as const, - sort_index: 'sort_index' as const, - spec: 'spec' as const, - status: 'status' as const, - status_history: 'status_history' as const, - user_steam_id: 'user_steam_id' as const -} - -export const enumClipRenderJobsSelectColumnClipRenderJobsAggregateBoolExpBoolAndArgumentsColumns = { - paused: 'paused' as const -} - -export const enumClipRenderJobsSelectColumnClipRenderJobsAggregateBoolExpBoolOrArgumentsColumns = { - paused: 'paused' as const -} - -export const enumClipRenderJobsUpdateColumn = { - clip_id: 'clip_id' as const, - created_at: 'created_at' as const, - error_message: 'error_message' as const, - game_server_node_id: 'game_server_node_id' as const, - id: 'id' as const, - k8s_job_name: 'k8s_job_name' as const, - last_status_at: 'last_status_at' as const, - match_map_demo_id: 'match_map_demo_id' as const, - match_map_id: 'match_map_id' as const, - paused: 'paused' as const, - progress: 'progress' as const, - session_token: 'session_token' as const, - sort_index: 'sort_index' as const, - spec: 'spec' as const, - status: 'status' as const, - status_history: 'status_history' as const, - user_steam_id: 'user_steam_id' as const -} - -export const enumCursorOrdering = { - ASC: 'ASC' as const, - DESC: 'DESC' as const -} - -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 -} - -export const enumCustomPagesSelectColumn = { - created_at: 'created_at' as const, - deployments: 'deployments' as const, - enabled: 'enabled' as const, - exposed_module: 'exposed_module' as const, - icon: 'icon' as const, - id: 'id' as const, - is_default: 'is_default' as const, - 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, - required_role: 'required_role' as const, - slug: 'slug' as const, - title: 'title' as const, - updated_at: 'updated_at' as const -} - -export const enumCustomPagesUpdateColumn = { - created_at: 'created_at' as const, - deployments: 'deployments' as const, - enabled: 'enabled' as const, - exposed_module: 'exposed_module' as const, - icon: 'icon' as const, - id: 'id' as const, - is_default: 'is_default' as const, - 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, - required_role: 'required_role' as const, - slug: 'slug' as const, - title: 'title' as const, - updated_at: 'updated_at' as const -} - -export const enumDbBackupsConstraint = { - db_backups_pkey: 'db_backups_pkey' as const -} - -export const enumDbBackupsSelectColumn = { - created_at: 'created_at' as const, - id: 'id' as const, - name: 'name' as const, - size: 'size' as const -} - -export const enumDbBackupsUpdateColumn = { - created_at: 'created_at' as const, - id: 'id' as const, - name: 'name' as const, - size: 'size' as const -} - -export const enumDirectConversationsConstraint = { - direct_conversations_pkey: 'direct_conversations_pkey' as const -} - -export const enumDirectConversationsSelectColumn = { - is_open: 'is_open' as const, - last_message_at: 'last_message_at' as const, - position: 'position' as const, - room_id: 'room_id' as const, - steam_id: 'steam_id' as const -} - -export const enumDirectConversationsUpdateColumn = { - is_open: 'is_open' as const, - last_message_at: 'last_message_at' as const, - position: 'position' as const, - room_id: 'room_id' as const, - steam_id: 'steam_id' as const -} - -export const enumDirectMessagesConstraint = { - direct_messages_pkey: 'direct_messages_pkey' as const -} - -export const enumDirectMessagesSelectColumn = { - created_at: 'created_at' as const, - from_steam_id: 'from_steam_id' as const, - id: 'id' as const, - message: 'message' as const, - room_id: 'room_id' as const, - seq: 'seq' as const -} - -export const enumDirectMessagesUpdateColumn = { - created_at: 'created_at' as const, - from_steam_id: 'from_steam_id' as const, - id: 'id' as const, - message: 'message' as const, - room_id: 'room_id' as const, - seq: 'seq' as const -} - -export const enumDraftGamePicksConstraint = { - draft_game_picks_pkey: 'draft_game_picks_pkey' as const -} - -export const enumDraftGamePicksSelectColumn = { - auto_picked: 'auto_picked' as const, - captain_steam_id: 'captain_steam_id' as const, - created_at: 'created_at' as const, - draft_game_id: 'draft_game_id' as const, - id: 'id' as const, - lineup: 'lineup' as const, - picked_steam_id: 'picked_steam_id' as const -} - -export const enumDraftGamePicksSelectColumnDraftGamePicksAggregateBoolExpBoolAndArgumentsColumns = { - auto_picked: 'auto_picked' as const -} - -export const enumDraftGamePicksSelectColumnDraftGamePicksAggregateBoolExpBoolOrArgumentsColumns = { - auto_picked: 'auto_picked' as const -} - -export const enumDraftGamePicksUpdateColumn = { - auto_picked: 'auto_picked' as const, - captain_steam_id: 'captain_steam_id' as const, - created_at: 'created_at' as const, - draft_game_id: 'draft_game_id' as const, - id: 'id' as const, - lineup: 'lineup' as const, - picked_steam_id: 'picked_steam_id' as const -} - -export const enumDraftGamePlayersConstraint = { - draft_game_players_pkey: 'draft_game_players_pkey' as const -} - -export const enumDraftGamePlayersSelectColumn = { - draft_game_id: 'draft_game_id' as const, - elo_snapshot: 'elo_snapshot' as const, - is_captain: 'is_captain' as const, - joined_at: 'joined_at' as const, - lineup: 'lineup' as const, - pick_order: 'pick_order' as const, - status: 'status' as const, - steam_id: 'steam_id' as const -} - -export const enumDraftGamePlayersSelectColumnDraftGamePlayersAggregateBoolExpBoolAndArgumentsColumns = { - is_captain: 'is_captain' as const -} - -export const enumDraftGamePlayersSelectColumnDraftGamePlayersAggregateBoolExpBoolOrArgumentsColumns = { - is_captain: 'is_captain' as const -} - -export const enumDraftGamePlayersUpdateColumn = { - draft_game_id: 'draft_game_id' as const, - elo_snapshot: 'elo_snapshot' as const, - is_captain: 'is_captain' as const, - joined_at: 'joined_at' as const, - lineup: 'lineup' as const, - pick_order: 'pick_order' as const, - status: 'status' as const, - steam_id: 'steam_id' as const -} - -export const enumDraftGamesConstraint = { - draft_games_pkey: 'draft_games_pkey' as const -} - -export const enumDraftGamesSelectColumn = { - access: 'access' as const, - capacity: 'capacity' as const, - captain_selection: 'captain_selection' as const, - created_at: 'created_at' as const, - current_pick_lineup: 'current_pick_lineup' as const, - draft_order: 'draft_order' as const, - expires_at: 'expires_at' as const, - host_steam_id: 'host_steam_id' as const, - id: 'id' as const, - inner_squad: 'inner_squad' as const, - invite_code: 'invite_code' as const, - map_pool_id: 'map_pool_id' as const, - match_id: 'match_id' as const, - match_options_id: 'match_options_id' as const, - max_elo: 'max_elo' as const, - min_elo: 'min_elo' as const, - mode: 'mode' as const, - pick_deadline: 'pick_deadline' as const, - regions: 'regions' as const, - require_approval: 'require_approval' as const, - scheduled_at: 'scheduled_at' as const, - status: 'status' as const, - team_1_id: 'team_1_id' as const, - team_2_id: 'team_2_id' as const, - type: 'type' as const, - updated_at: 'updated_at' as const -} - -export const enumDraftGamesSelectColumnDraftGamesAggregateBoolExpBoolAndArgumentsColumns = { - inner_squad: 'inner_squad' as const, - require_approval: 'require_approval' as const -} - -export const enumDraftGamesSelectColumnDraftGamesAggregateBoolExpBoolOrArgumentsColumns = { - inner_squad: 'inner_squad' as const, - require_approval: 'require_approval' as const -} - -export const enumDraftGamesUpdateColumn = { - access: 'access' as const, - capacity: 'capacity' as const, - captain_selection: 'captain_selection' as const, - created_at: 'created_at' as const, - current_pick_lineup: 'current_pick_lineup' as const, - draft_order: 'draft_order' as const, - expires_at: 'expires_at' as const, - host_steam_id: 'host_steam_id' as const, - id: 'id' as const, - inner_squad: 'inner_squad' as const, - invite_code: 'invite_code' as const, - map_pool_id: 'map_pool_id' as const, - match_id: 'match_id' as const, - match_options_id: 'match_options_id' as const, - max_elo: 'max_elo' as const, - min_elo: 'min_elo' as const, - mode: 'mode' as const, - pick_deadline: 'pick_deadline' as const, - regions: 'regions' as const, - require_approval: 'require_approval' as const, - scheduled_at: 'scheduled_at' as const, - status: 'status' as const, - team_1_id: 'team_1_id' as const, - team_2_id: 'team_2_id' as const, - type: 'type' as const, - updated_at: 'updated_at' as const -} - -export const enumEAwardSourcesConstraint = { - e_award_sources_pkey: 'e_award_sources_pkey' as const -} - -export const enumEAwardSourcesEnum = { - manual: 'manual' as const, - season: 'season' as const, - tournament: 'tournament' as const -} - -export const enumEAwardSourcesSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEAwardSourcesUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEAwardTiersConstraint = { - e_award_tiers_pkey: 'e_award_tiers_pkey' as const -} - -export const enumEAwardTiersEnum = { - bronze: 'bronze' as const, - gold: 'gold' as const, - mvp: 'mvp' as const, - silver: 'silver' as const, - special: 'special' as const -} - -export const enumEAwardTiersSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEAwardTiersUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumECheckInSettingsConstraint = { - e_check_in_settings_pkey: 'e_check_in_settings_pkey' as const -} - -export const enumECheckInSettingsEnum = { - Admin: 'Admin' as const, - Captains: 'Captains' as const, - Players: 'Players' as const -} - -export const enumECheckInSettingsSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumECheckInSettingsUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEDraftGameCaptainSelectionConstraint = { - e_draft_game_captain_selection_pkey: 'e_draft_game_captain_selection_pkey' as const -} - -export const enumEDraftGameCaptainSelectionEnum = { - HostAndNext: 'HostAndNext' as const, - Manual: 'Manual' as const, - RandomTwo: 'RandomTwo' as const, - TopEloTwo: 'TopEloTwo' as const -} - -export const enumEDraftGameCaptainSelectionSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEDraftGameCaptainSelectionUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEDraftGameDraftOrderConstraint = { - e_draft_game_draft_order_pkey: 'e_draft_game_draft_order_pkey' as const -} - -export const enumEDraftGameDraftOrderEnum = { - Alternating: 'Alternating' as const, - FrontLoaded: 'FrontLoaded' as const, - Snake: 'Snake' as const -} - -export const enumEDraftGameDraftOrderSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEDraftGameDraftOrderUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEDraftGameModeConstraint = { - e_draft_game_mode_pkey: 'e_draft_game_mode_pkey' as const -} - -export const enumEDraftGameModeEnum = { - Captains: 'Captains' as const, - Host: 'Host' as const, - Pug: 'Pug' as const, - Teams: 'Teams' as const -} - -export const enumEDraftGameModeSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEDraftGameModeUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEDraftGamePlayerStatusConstraint = { - e_draft_game_player_status_pkey: 'e_draft_game_player_status_pkey' as const -} - -export const enumEDraftGamePlayerStatusEnum = { - Accepted: 'Accepted' as const, - Invited: 'Invited' as const, - Requested: 'Requested' as const, - Waitlist: 'Waitlist' as const -} - -export const enumEDraftGamePlayerStatusSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEDraftGamePlayerStatusUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEDraftGameStatusConstraint = { - e_draft_game_status_pkey: 'e_draft_game_status_pkey' as const -} - -export const enumEDraftGameStatusEnum = { - Canceled: 'Canceled' as const, - Completed: 'Completed' as const, - CreatingMatch: 'CreatingMatch' as const, - Drafting: 'Drafting' as const, - Filled: 'Filled' as const, - Open: 'Open' as const, - SelectingCaptains: 'SelectingCaptains' as const -} - -export const enumEDraftGameStatusSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEDraftGameStatusUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEEventMediaAccessConstraint = { - e_event_media_access_pkey: 'e_event_media_access_pkey' as const -} - -export const enumEEventMediaAccessEnum = { - Involved: 'Involved' as const, - Organizers: 'Organizers' as const -} - -export const enumEEventMediaAccessSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEEventMediaAccessUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEEventVisibilityConstraint = { - e_event_visibility_pkey: 'e_event_visibility_pkey' as const -} - -export const enumEEventVisibilityEnum = { - Friends: 'Friends' as const, - Private: 'Private' as const, - Public: 'Public' as const -} - -export const enumEEventVisibilitySelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEEventVisibilityUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEFriendStatusConstraint = { - e_friend_status_pkey: 'e_friend_status_pkey' as const -} - -export const enumEFriendStatusEnum = { - Accepted: 'Accepted' as const, - Pending: 'Pending' as const -} - -export const enumEFriendStatusSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEFriendStatusUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEGameCfgTypesConstraint = { - e_game_cfg_types_pkey: 'e_game_cfg_types_pkey' as const -} - -export const enumEGameCfgTypesEnum = { - Base: 'Base' as const, - Competitive: 'Competitive' as const, - Duel: 'Duel' as const, - Global: 'Global' as const, - Lan: 'Lan' as const, - Live: 'Live' as const, - Wingman: 'Wingman' as const -} - -export const enumEGameCfgTypesSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEGameCfgTypesUpdateColumn = { - description: 'description' as const, - 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 -} - -export const enumEGameServerNodeStatusesEnum = { - NotAcceptingNewMatches: 'NotAcceptingNewMatches' as const, - Offline: 'Offline' as const, - Online: 'Online' as const, - Setup: 'Setup' as const -} - -export const enumEGameServerNodeStatusesSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEGameServerNodeStatusesUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumELeagueMovementTypesConstraint = { - e_league_movement_types_pkey: 'e_league_movement_types_pkey' as const -} - -export const enumELeagueMovementTypesEnum = { - DirectPromote: 'DirectPromote' as const, - DirectRelegate: 'DirectRelegate' as const, - Hold: 'Hold' as const, - Promote: 'Promote' as const, - Relegate: 'Relegate' as const, - RelegationDown: 'RelegationDown' as const, - RelegationUp: 'RelegationUp' as const, - Remove: 'Remove' as const, - Stay: 'Stay' as const -} - -export const enumELeagueMovementTypesSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumELeagueMovementTypesUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumELeagueProposalStatusesConstraint = { - e_league_proposal_statuses_pkey: 'e_league_proposal_statuses_pkey' as const -} - -export const enumELeagueProposalStatusesEnum = { - Accepted: 'Accepted' as const, - Countered: 'Countered' as const, - Declined: 'Declined' as const, - Expired: 'Expired' as const, - Pending: 'Pending' as const, - Superseded: 'Superseded' as const -} - -export const enumELeagueProposalStatusesSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumELeagueProposalStatusesUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumELeagueRegistrationStatusesConstraint = { - e_league_registration_statuses_pkey: 'e_league_registration_statuses_pkey' as const -} - -export const enumELeagueRegistrationStatusesEnum = { - Approved: 'Approved' as const, - Declined: 'Declined' as const, - Pending: 'Pending' as const, - Waitlisted: 'Waitlisted' as const, - Withdrawn: 'Withdrawn' as const -} - -export const enumELeagueRegistrationStatusesSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumELeagueRegistrationStatusesUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumELeagueSeasonStatusesConstraint = { - e_league_season_statuses_pkey: 'e_league_season_statuses_pkey' as const -} - -export const enumELeagueSeasonStatusesEnum = { - Canceled: 'Canceled' as const, - Finished: 'Finished' as const, - Live: 'Live' as const, - Playoffs: 'Playoffs' as const, - RegistrationClosed: 'RegistrationClosed' as const, - RegistrationOpen: 'RegistrationOpen' as const, - Setup: 'Setup' as const -} - -export const enumELeagueSeasonStatusesSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumELeagueSeasonStatusesUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumELobbyAccessConstraint = { - e_lobby_access_pkey: 'e_lobby_access_pkey' as const -} - -export const enumELobbyAccessEnum = { - Friends: 'Friends' as const, - Invite: 'Invite' as const, - Open: 'Open' as const, - Private: 'Private' as const -} - -export const enumELobbyAccessSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumELobbyAccessUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumELobbyPlayerStatusConstraint = { - e_lobby_player_status_pkey: 'e_lobby_player_status_pkey' as const -} - -export const enumELobbyPlayerStatusEnum = { - Accepted: 'Accepted' as const, - Invited: 'Invited' as const -} - -export const enumELobbyPlayerStatusSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumELobbyPlayerStatusUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEMapPoolTypesConstraint = { - e_map_pool_types_pkey: 'e_map_pool_types_pkey' as const -} - -export const enumEMapPoolTypesEnum = { - Competitive: 'Competitive' as const, - Custom: 'Custom' as const, - Duel: 'Duel' as const, - Wingman: 'Wingman' as const -} - -export const enumEMapPoolTypesSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEMapPoolTypesUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEMatchClipVisibilityConstraint = { - e_match_clip_visibility_pkey: 'e_match_clip_visibility_pkey' as const -} - -export const enumEMatchClipVisibilityEnum = { - match: 'match' as const, - private: 'private' as const, - public: 'public' as const -} - -export const enumEMatchClipVisibilitySelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEMatchClipVisibilityUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEMatchMapStatusConstraint = { - match_map_status_pkey: 'match_map_status_pkey' as const -} - -export const enumEMatchMapStatusEnum = { - Canceled: 'Canceled' as const, - Finished: 'Finished' as const, - Knife: 'Knife' as const, - Live: 'Live' as const, - Overtime: 'Overtime' as const, - Paused: 'Paused' as const, - Scheduled: 'Scheduled' as const, - Surrendered: 'Surrendered' as const, - UploadingDemo: 'UploadingDemo' as const, - WaitingForTV: 'WaitingForTV' as const, - Warmup: 'Warmup' as const -} - -export const enumEMatchMapStatusSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEMatchMapStatusUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEMatchModeConstraint = { - e_match_mode_pkey: 'e_match_mode_pkey' as const -} - -export const enumEMatchModeEnum = { - admin: 'admin' as const, - auto: 'auto' as const -} - -export const enumEMatchModeSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEMatchModeUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEMatchPartySourcesConstraint = { - e_match_party_sources_pkey: 'e_match_party_sources_pkey' as const -} - -export const enumEMatchPartySourcesEnum = { - faceit: 'faceit' as const, - lobby: 'lobby' as const, - valve: 'valve' as const -} - -export const enumEMatchPartySourcesSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEMatchPartySourcesUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEMatchStatusConstraint = { - e_match_status_pkey: 'e_match_status_pkey' as const -} - -export const enumEMatchStatusEnum = { - Canceled: 'Canceled' as const, - Finished: 'Finished' as const, - Forfeit: 'Forfeit' as const, - Live: 'Live' as const, - PickingPlayers: 'PickingPlayers' as const, - Scheduled: 'Scheduled' as const, - Surrendered: 'Surrendered' as const, - Tie: 'Tie' as const, - Veto: 'Veto' as const, - WaitingForCheckIn: 'WaitingForCheckIn' as const, - WaitingForServer: 'WaitingForServer' as const -} - -export const enumEMatchStatusSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEMatchStatusUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEMatchTypesConstraint = { - e_match_types_pkey: 'e_match_types_pkey' as const -} - -export const enumEMatchTypesEnum = { - Competitive: 'Competitive' as const, - Duel: 'Duel' as const, - Faceit: 'Faceit' as const, - Premier: 'Premier' as const, - Wingman: 'Wingman' as const -} - -export const enumEMatchTypesSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEMatchTypesUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumENotificationTypesConstraint = { - e_notification_types_pkey: 'e_notification_types_pkey' as const -} - -export const enumENotificationTypesEnum = { - AwardGranted: 'AwardGranted' as const, - ChatMessage: 'ChatMessage' as const, - ClipReady: 'ClipReady' as const, - DedicatedServerRconStatus: 'DedicatedServerRconStatus' as const, - DedicatedServerStatus: 'DedicatedServerStatus' as const, - DraftInvite: 'DraftInvite' as const, - EloRecompute: 'EloRecompute' as const, - EventReminder: 'EventReminder' as const, - FormTeamSuggestion: 'FormTeamSuggestion' as const, - GameNodeStatus: 'GameNodeStatus' as const, - GameUpdate: 'GameUpdate' as const, - LeagueMatchUnscheduled: 'LeagueMatchUnscheduled' as const, - LeagueProposalAccepted: 'LeagueProposalAccepted' as const, - LeagueProposalDeclined: 'LeagueProposalDeclined' as const, - LeagueProposalReceived: 'LeagueProposalReceived' as const, - LeagueRegistrationDecision: 'LeagueRegistrationDecision' as const, - LeagueRosterUndersized: 'LeagueRosterUndersized' as const, - MatchAbandoned: 'MatchAbandoned' as const, - MatchChatMessage: 'MatchChatMessage' as const, - MatchImported: 'MatchImported' as const, - MatchStatsReady: 'MatchStatsReady' as const, - MatchStatusChange: 'MatchStatusChange' as const, - MatchSupport: 'MatchSupport' as const, - NadeDriftScanFinished: 'NadeDriftScanFinished' as const, - NadePracticeInvite: 'NadePracticeInvite' as const, - NadePracticeReady: 'NadePracticeReady' as const, - NameChangeApproved: 'NameChangeApproved' as const, - NameChangeDenied: 'NameChangeDenied' as const, - NameChangeRequest: 'NameChangeRequest' as const, - NewsPublished: 'NewsPublished' as const, - PlayerReindex: 'PlayerReindex' as const, - PlayerSanctioned: 'PlayerSanctioned' as const, - ScrimAlertMatch: 'ScrimAlertMatch' as const, - ScrimMatchCanceled: 'ScrimMatchCanceled' as const, - ScrimMatchScheduled: 'ScrimMatchScheduled' as const, - ScrimRequestAccepted: 'ScrimRequestAccepted' as const, - ScrimRequestCountered: 'ScrimRequestCountered' as const, - ScrimRequestDeclined: 'ScrimRequestDeclined' as const, - ScrimRequestExpired: 'ScrimRequestExpired' as const, - ScrimRequestReceived: 'ScrimRequestReceived' as const, - ScrimTimeChanged: 'ScrimTimeChanged' as const, - SeasonEnded: 'SeasonEnded' as const, - StorageScan: 'StorageScan' as const, - TeamInvite: 'TeamInvite' as const, - TournamentCheckInClosing: 'TournamentCheckInClosing' as const, - TournamentCheckInMissed: 'TournamentCheckInMissed' as const, - TournamentCheckInOpen: 'TournamentCheckInOpen' as const, - TournamentCreated: 'TournamentCreated' as const, - TournamentInvite: 'TournamentInvite' as const, - TournamentPartySignup: 'TournamentPartySignup' as const, - TournamentReminder: 'TournamentReminder' as const, - TournamentTeamInvite: 'TournamentTeamInvite' as const, - UtilityDriftScanFinished: 'UtilityDriftScanFinished' as const, - UtilityPracticeInvite: 'UtilityPracticeInvite' as const, - UtilityPracticeReady: 'UtilityPracticeReady' as const -} - -export const enumENotificationTypesSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumENotificationTypesUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEObjectiveTypesConstraint = { - e_objective__pkey: 'e_objective__pkey' as const -} - -export const enumEObjectiveTypesEnum = { - Defused: 'Defused' as const, - Exploded: 'Exploded' as const, - Planted: 'Planted' as const -} - -export const enumEObjectiveTypesSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEObjectiveTypesUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEPlayerRolesConstraint = { - e_player_roles_pkey: 'e_player_roles_pkey' as const -} - -export const enumEPlayerRolesEnum = { - administrator: 'administrator' as const, - match_organizer: 'match_organizer' as const, - moderator: 'moderator' as const, - streamer: 'streamer' as const, - tournament_organizer: 'tournament_organizer' as const, - user: 'user' as const, - verified_user: 'verified_user' as const -} - -export const enumEPlayerRolesSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEPlayerRolesUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEPluginRuntimesConstraint = { - e_plugin_runtimes_pkey: 'e_plugin_runtimes_pkey' as const -} - -export const enumEPluginRuntimesEnum = { - counterstrikesharp: 'counterstrikesharp' as const, - swiftlys2: 'swiftlys2' as const -} - -export const enumEPluginRuntimesSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEPluginRuntimesUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEReadySettingsConstraint = { - e_ready_settings_pkey: 'e_ready_settings_pkey' as const -} - -export const enumEReadySettingsEnum = { - Admin: 'Admin' as const, - Captains: 'Captains' as const, - Coach: 'Coach' as const, - Players: 'Players' as const -} - -export const enumEReadySettingsSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEReadySettingsUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumESanctionScopesConstraint = { - e_sanction_scopes_pkey: 'e_sanction_scopes_pkey' as const -} - -export const enumESanctionScopesSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumESanctionScopesUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumESanctionSourcesConstraint = { - e_sanction_sources_pkey: 'e_sanction_sources_pkey' as const -} - -export const enumESanctionSourcesSelectColumn = { - default_durations: 'default_durations' as const, - default_enabled: 'default_enabled' as const, - default_scope: 'default_scope' as const, - default_threshold: 'default_threshold' as const, - default_window_days: 'default_window_days' as const, - description: 'description' as const, - value: 'value' as const, - writes_platform_ban: 'writes_platform_ban' as const -} - -export const enumESanctionSourcesUpdateColumn = { - default_durations: 'default_durations' as const, - default_enabled: 'default_enabled' as const, - default_scope: 'default_scope' as const, - default_threshold: 'default_threshold' as const, - default_window_days: 'default_window_days' as const, - description: 'description' as const, - value: 'value' as const, - writes_platform_ban: 'writes_platform_ban' as const -} - -export const enumESanctionTypesConstraint = { - e_sanction_types_pkey: 'e_sanction_types_pkey' as const -} - -export const enumESanctionTypesEnum = { - ban: 'ban' as const, - gag: 'gag' as const, - mute: 'mute' as const, - silence: 'silence' as const -} - -export const enumESanctionTypesSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumESanctionTypesUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEScrimRequestStatusesConstraint = { - e_scrim_request_statuses_pkey: 'e_scrim_request_statuses_pkey' as const -} - -export const enumEScrimRequestStatusesEnum = { - Accepted: 'Accepted' as const, - Cancelled: 'Cancelled' as const, - Countered: 'Countered' as const, - Declined: 'Declined' as const, - Expired: 'Expired' as const, - Matched: 'Matched' as const, - Pending: 'Pending' as const -} - -export const enumEScrimRequestStatusesSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEScrimRequestStatusesUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEServerTypesConstraint = { - e_server_types_pkey: 'e_server_types_pkey' as const -} - -export const enumEServerTypesEnum = { - ArmsRace: 'ArmsRace' as const, - Casual: 'Casual' as const, - Competitive: 'Competitive' as const, - Custom: 'Custom' as const, - Deathmatch: 'Deathmatch' as const, - Practice: 'Practice' as const, - Ranked: 'Ranked' as const, - Retake: 'Retake' as const, - Wingman: 'Wingman' as const -} - -export const enumEServerTypesSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEServerTypesUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumESidesConstraint = { - e_teams_pkey: 'e_teams_pkey' as const -} - -export const enumESidesEnum = { - CT: 'CT' as const, - None: 'None' as const, - Spectator: 'Spectator' as const, - TERRORIST: 'TERRORIST' as const -} - -export const enumESidesSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumESidesUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumESystemAlertTypesConstraint = { - e_system_alert_types_pkey: 'e_system_alert_types_pkey' as const -} - -export const enumESystemAlertTypesEnum = { - critical: 'critical' as const, - info: 'info' as const, - warning: 'warning' as const -} - -export const enumESystemAlertTypesSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumESystemAlertTypesUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumETeamRolesConstraint = { - e_team_roles_pkey: 'e_team_roles_pkey' as const -} - -export const enumETeamRolesEnum = { - Admin: 'Admin' as const, - Invite: 'Invite' as const, - Member: 'Member' as const -} - -export const enumETeamRolesSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumETeamRolesUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumETeamRosterStatusesConstraint = { - e_team_roster_statuses_pkey: 'e_team_roster_statuses_pkey' as const -} - -export const enumETeamRosterStatusesEnum = { - Benched: 'Benched' as const, - Starter: 'Starter' as const, - Substitute: 'Substitute' as const -} - -export const enumETeamRosterStatusesSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumETeamRosterStatusesUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumETimeoutSettingsConstraint = { - e_timeout_settings_pkey: 'e_timeout_settings_pkey' as const -} - -export const enumETimeoutSettingsEnum = { - Admin: 'Admin' as const, - Coach: 'Coach' as const, - CoachAndCaptains: 'CoachAndCaptains' as const, - CoachAndPlayers: 'CoachAndPlayers' as const -} - -export const enumETimeoutSettingsSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumETimeoutSettingsUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumETournamentCategoriesConstraint = { - e_tournament_categories_pkey: 'e_tournament_categories_pkey' as const -} - -export const enumETournamentCategoriesEnum = { - LAN: 'LAN' as const, - League: 'League' as const, - LocationEvent: 'LocationEvent' as const, - OnlineEvent: 'OnlineEvent' as const -} - -export const enumETournamentCategoriesSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumETournamentCategoriesUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumETournamentFreeAgentStatusesConstraint = { - e_tournament_free_agent_statuses_pkey: 'e_tournament_free_agent_statuses_pkey' as const -} - -export const enumETournamentFreeAgentStatusesEnum = { - drafted: 'drafted' as const, - registered: 'registered' as const, - waitlisted: 'waitlisted' as const, - withdrawn: 'withdrawn' as const -} - -export const enumETournamentFreeAgentStatusesSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumETournamentFreeAgentStatusesUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumETournamentRegistrationTypesConstraint = { - e_tournament_registration_types_pkey: 'e_tournament_registration_types_pkey' as const -} - -export const enumETournamentRegistrationTypesEnum = { - both: 'both' as const, - free_agents: 'free_agents' as const, - teams: 'teams' as const -} - -export const enumETournamentRegistrationTypesSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumETournamentRegistrationTypesUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumETournamentStageTypesConstraint = { - e_tournament_stage_types_pkey: 'e_tournament_stage_types_pkey' as const -} - -export const enumETournamentStageTypesEnum = { - DoubleElimination: 'DoubleElimination' as const, - RoundRobin: 'RoundRobin' as const, - SingleElimination: 'SingleElimination' as const, - Swiss: 'Swiss' as const -} - -export const enumETournamentStageTypesSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumETournamentStageTypesUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumETournamentStatusConstraint = { - e_tournament_status_pkey: 'e_tournament_status_pkey' as const -} - -export const enumETournamentStatusEnum = { - Cancelled: 'Cancelled' as const, - CancelledMinTeams: 'CancelledMinTeams' as const, - CheckInReview: 'CheckInReview' as const, - Finished: 'Finished' as const, - Live: 'Live' as const, - Paused: 'Paused' as const, - RegistrationClosed: 'RegistrationClosed' as const, - RegistrationOpen: 'RegistrationOpen' as const, - Setup: 'Setup' as const -} - -export const enumETournamentStatusSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumETournamentStatusUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEUtilityPracticeAccessConstraint = { - e_utility_practice_access_pkey: 'e_utility_practice_access_pkey' as const -} - -export const enumEUtilityPracticeAccessEnum = { - Friends: 'Friends' as const, - Invite: 'Invite' as const, - Open: 'Open' as const, - Private: 'Private' as const -} - -export const enumEUtilityPracticeAccessSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEUtilityPracticeAccessUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEUtilityPracticeStatusesConstraint = { - e_utility_practice_statuses_pkey: 'e_utility_practice_statuses_pkey' as const -} - -export const enumEUtilityPracticeStatusesEnum = { - Ended: 'Ended' as const, - Failed: 'Failed' as const, - Ready: 'Ready' as const, - Starting: 'Starting' as const -} - -export const enumEUtilityPracticeStatusesSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEUtilityPracticeStatusesUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEUtilitySourcesConstraint = { - e_utility_sources_pkey: 'e_utility_sources_pkey' as const -} - -export const enumEUtilitySourcesEnum = { - demo: 'demo' as const, - editor: 'editor' as const, - fork: 'fork' as const, - import: 'import' as const, - plugin: 'plugin' as const -} - -export const enumEUtilitySourcesSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEUtilitySourcesUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEUtilityTechniquesConstraint = { - e_utility_techniques_pkey: 'e_utility_techniques_pkey' as const -} - -export const enumEUtilityTechniquesEnum = { - Crouch: 'Crouch' as const, - CrouchJump: 'CrouchJump' as const, - Jump: 'Jump' as const, - RunJump: 'RunJump' as const, - Running: 'Running' as const, - Stationary: 'Stationary' as const, - WalkJump: 'WalkJump' as const, - Walking: 'Walking' as const -} - -export const enumEUtilityTechniquesSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEUtilityTechniquesUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEUtilityThrowStrengthsConstraint = { - e_utility_throw_strengths_pkey: 'e_utility_throw_strengths_pkey' as const -} - -export const enumEUtilityThrowStrengthsEnum = { - Drop: 'Drop' as const, - Full: 'Full' as const, - Half: 'Half' as const -} - -export const enumEUtilityThrowStrengthsSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEUtilityThrowStrengthsUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEUtilityTypesConstraint = { - e_utility_types_pkey: 'e_utility_types_pkey' as const -} - -export const enumEUtilityTypesEnum = { - Decoy: 'Decoy' as const, - Flash: 'Flash' as const, - HighExplosive: 'HighExplosive' as const, - Molotov: 'Molotov' as const, - Smoke: 'Smoke' as const -} - -export const enumEUtilityTypesSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEUtilityTypesUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEUtilityVisibilityConstraint = { - e_utility_visibility_pkey: 'e_utility_visibility_pkey' as const -} - -export const enumEUtilityVisibilityEnum = { - Private: 'Private' as const, - Public: 'Public' as const, - Team: 'Team' as const -} - -export const enumEUtilityVisibilitySelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEUtilityVisibilityUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEVetoPickTypesConstraint = { - e_veto_pick_type_pkey: 'e_veto_pick_type_pkey' as const -} - -export const enumEVetoPickTypesEnum = { - Ban: 'Ban' as const, - Decider: 'Decider' as const, - Pick: 'Pick' as const, - Side: 'Side' as const -} - -export const enumEVetoPickTypesSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEVetoPickTypesUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEWinningReasonsConstraint = { - e_winning_reasons_pkey: 'e_winning_reasons_pkey' as const -} - -export const enumEWinningReasonsEnum = { - BombDefused: 'BombDefused' as const, - BombExploded: 'BombExploded' as const, - CTsWin: 'CTsWin' as const, - TerroristsWin: 'TerroristsWin' as const, - TimeRanOut: 'TimeRanOut' as const, - Unknown: 'Unknown' as const -} - -export const enumEWinningReasonsSelectColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEWinningReasonsUpdateColumn = { - description: 'description' as const, - value: 'value' as const -} - -export const enumEventMatchLinksConstraint = { - event_match_links_pkey: 'event_match_links_pkey' as const -} - -export const enumEventMatchLinksSelectColumn = { - created_at: 'created_at' as const, - event_id: 'event_id' as const, - match_id: 'match_id' as const -} - -export const enumEventMatchLinksUpdateColumn = { - created_at: 'created_at' as const, - event_id: 'event_id' as const, - match_id: 'match_id' as const -} - -export const enumEventMediaConstraint = { - event_media_event_id_filename_key: 'event_media_event_id_filename_key' as const, - event_media_pkey: 'event_media_pkey' as const -} - -export const enumEventMediaPlayersConstraint = { - event_media_players_pkey: 'event_media_players_pkey' as const -} - -export const enumEventMediaPlayersSelectColumn = { - created_at: 'created_at' as const, - media_id: 'media_id' as const, - steam_id: 'steam_id' as const -} - -export const enumEventMediaPlayersUpdateColumn = { - created_at: 'created_at' as const, - media_id: 'media_id' as const, - steam_id: 'steam_id' as const -} - -export const enumEventMediaSelectColumn = { - created_at: 'created_at' as const, - event_id: 'event_id' as const, - external_url: 'external_url' as const, - filename: 'filename' as const, - id: 'id' as const, - mime_type: 'mime_type' as const, - size: 'size' as const, - thumbnail_filename: 'thumbnail_filename' as const, - title: 'title' as const, - uploader_steam_id: 'uploader_steam_id' as const -} - -export const enumEventMediaUpdateColumn = { - created_at: 'created_at' as const, - event_id: 'event_id' as const, - external_url: 'external_url' as const, - filename: 'filename' as const, - id: 'id' as const, - mime_type: 'mime_type' as const, - size: 'size' as const, - thumbnail_filename: 'thumbnail_filename' as const, - title: 'title' as const, - uploader_steam_id: 'uploader_steam_id' as const -} - -export const enumEventOrganizersConstraint = { - event_organizers_pkey: 'event_organizers_pkey' as const -} - -export const enumEventOrganizersSelectColumn = { - created_at: 'created_at' as const, - event_id: 'event_id' as const, - steam_id: 'steam_id' as const -} - -export const enumEventOrganizersUpdateColumn = { - created_at: 'created_at' as const, - event_id: 'event_id' as const, - steam_id: 'steam_id' as const -} - -export const enumEventPlayersConstraint = { - event_players_pkey: 'event_players_pkey' as const -} - -export const enumEventPlayersSelectColumn = { - created_at: 'created_at' as const, - event_id: 'event_id' as const, - steam_id: 'steam_id' as const -} - -export const enumEventPlayersUpdateColumn = { - created_at: 'created_at' as const, - event_id: 'event_id' as const, - steam_id: 'steam_id' as const -} - -export const enumEventTeamsConstraint = { - event_teams_pkey: 'event_teams_pkey' as const -} - -export const enumEventTeamsSelectColumn = { - created_at: 'created_at' as const, - event_id: 'event_id' as const, - team_id: 'team_id' as const -} - -export const enumEventTeamsUpdateColumn = { - created_at: 'created_at' as const, - event_id: 'event_id' as const, - team_id: 'team_id' as const -} - -export const enumEventTournamentsConstraint = { - event_tournaments_pkey: 'event_tournaments_pkey' as const -} - -export const enumEventTournamentsSelectColumn = { - created_at: 'created_at' as const, - event_id: 'event_id' as const, - tournament_id: 'tournament_id' as const -} - -export const enumEventTournamentsUpdateColumn = { - created_at: 'created_at' as const, - event_id: 'event_id' as const, - tournament_id: 'tournament_id' as const -} - -export const enumEventsConstraint = { - events_pkey: 'events_pkey' as const -} - -export const enumEventsSelectColumn = { - banner_media_id: 'banner_media_id' as const, - created_at: 'created_at' as const, - description: 'description' as const, - ends_at: 'ends_at' as const, - hide_creator_organizer: 'hide_creator_organizer' as const, - id: 'id' as const, - media_access: 'media_access' as const, - name: 'name' as const, - organizer_steam_id: 'organizer_steam_id' as const, - starts_at: 'starts_at' as const, - visibility: 'visibility' as const -} - -export const enumEventsUpdateColumn = { - banner_media_id: 'banner_media_id' as const, - created_at: 'created_at' as const, - description: 'description' as const, - ends_at: 'ends_at' as const, - hide_creator_organizer: 'hide_creator_organizer' as const, - id: 'id' as const, - media_access: 'media_access' as const, - name: 'name' as const, - organizer_steam_id: 'organizer_steam_id' as const, - starts_at: 'starts_at' as const, - visibility: 'visibility' as const -} - -export const enumFriendsConstraint = { - friends_pkey: 'friends_pkey' as const, - friends_player_steam_id_other_player_steam_id_key: 'friends_player_steam_id_other_player_steam_id_key' as const -} - -export const enumFriendsSelectColumn = { - other_player_steam_id: 'other_player_steam_id' as const, - player_steam_id: 'player_steam_id' as const, - status: 'status' as const -} - -export const enumFriendsUpdateColumn = { - other_player_steam_id: 'other_player_steam_id' as const, - player_steam_id: 'player_steam_id' as const, - status: 'status' as const -} - -export const enumGameModePluginsConstraint = { - game_mode_plugins_pkey: 'game_mode_plugins_pkey' as const -} - -export const enumGameModePluginsSelectColumn = { - config: 'config' as const, - game_mode_id: 'game_mode_id' as const, - load_order: 'load_order' as const, - plugin_slug: 'plugin_slug' as const, - required: 'required' as const -} - -export const enumGameModePluginsSelectColumnGameModePluginsAggregateBoolExpBoolAndArgumentsColumns = { - required: 'required' as const -} - -export const enumGameModePluginsSelectColumnGameModePluginsAggregateBoolExpBoolOrArgumentsColumns = { - required: 'required' as const -} - -export const enumGameModePluginsUpdateColumn = { - config: 'config' as const, - game_mode_id: 'game_mode_id' as const, - load_order: 'load_order' as const, - plugin_slug: 'plugin_slug' as const, - required: 'required' as const -} - -export const enumGameModesConstraint = { - game_modes_pkey: 'game_modes_pkey' as const, - game_modes_slug_key: 'game_modes_slug_key' as const -} - -export const enumGameModesSelectColumn = { - archived_at: 'archived_at' as const, - cfg: 'cfg' as const, - competitive_safe: 'competitive_safe' as const, - created_at: 'created_at' as const, - description: 'description' as const, - enabled: 'enabled' as const, - extra_game_params: 'extra_game_params' as const, - icon: 'icon' as const, - id: 'id' as const, - name: 'name' as const, - slug: 'slug' as const, - updated_at: 'updated_at' as const -} - -export const enumGameModesUpdateColumn = { - archived_at: 'archived_at' as const, - cfg: 'cfg' as const, - competitive_safe: 'competitive_safe' as const, - created_at: 'created_at' as const, - description: 'description' as const, - enabled: 'enabled' as const, - extra_game_params: 'extra_game_params' as const, - icon: 'icon' as const, - id: 'id' as const, - name: 'name' as const, - slug: 'slug' as const, - updated_at: 'updated_at' as const -} - -export const enumGamePluginInstallsConstraint = { - game_plugin_installs_pkey: 'game_plugin_installs_pkey' as const -} - -export const enumGamePluginInstallsSelectColumn = { - cfg: 'cfg' as const, - channel: 'channel' as const, - created_at: 'created_at' as const, - disable_server_guidelines: 'disable_server_guidelines' as const, - enabled: 'enabled' as const, - load_custom: 'load_custom' as const, - load_ranked: 'load_ranked' as const, - load_tournaments: 'load_tournaments' as const, - plugin_slug: 'plugin_slug' as const, - updated_at: 'updated_at' as const, - version: 'version' as const -} - -export const enumGamePluginInstallsUpdateColumn = { - cfg: 'cfg' as const, - channel: 'channel' as const, - created_at: 'created_at' as const, - disable_server_guidelines: 'disable_server_guidelines' as const, - enabled: 'enabled' as const, - load_custom: 'load_custom' as const, - load_ranked: 'load_ranked' as const, - load_tournaments: 'load_tournaments' as const, - plugin_slug: 'plugin_slug' as const, - updated_at: 'updated_at' as const, - version: 'version' as const -} - -export const enumGamePluginVersionsConstraint = { - game_plugin_versions_pkey: 'game_plugin_versions_pkey' as const -} - -export const enumGamePluginVersionsSelectColumn = { - install_path: 'install_path' as const, - layout: 'layout' as const, - plugin_slug: 'plugin_slug' as const, - prerelease: 'prerelease' as const, - published_at: 'published_at' as const, - runtime: 'runtime' as const, - sha256: 'sha256' as const, - size: 'size' as const, - url: 'url' as const, - version: 'version' as const -} - -export const enumGamePluginVersionsSelectColumnGamePluginVersionsAggregateBoolExpBoolAndArgumentsColumns = { - prerelease: 'prerelease' as const -} - -export const enumGamePluginVersionsSelectColumnGamePluginVersionsAggregateBoolExpBoolOrArgumentsColumns = { - prerelease: 'prerelease' as const -} - -export const enumGamePluginVersionsUpdateColumn = { - install_path: 'install_path' as const, - layout: 'layout' as const, - plugin_slug: 'plugin_slug' as const, - prerelease: 'prerelease' as const, - published_at: 'published_at' as const, - runtime: 'runtime' as const, - sha256: 'sha256' as const, - size: 'size' as const, - url: 'url' as const, - version: 'version' as const -} - -export const enumGamePluginsConstraint = { - game_plugins_pkey: 'game_plugins_pkey' as const -} - -export const enumGamePluginsSelectColumn = { - author: 'author' as const, - config_path: 'config_path' as const, - config_schema: 'config_schema' as const, - cvars: 'cvars' as const, - description: 'description' as const, - homepage: 'homepage' as const, - hot_swappable: 'hot_swappable' as const, - kind: 'kind' as const, - name: 'name' as const, - pairs_with: 'pairs_with' as const, - panel: 'panel' as const, - requires_server_guidelines_disabled: 'requires_server_guidelines_disabled' as const, - requires_service: 'requires_service' as const, - slug: 'slug' as const, - source: 'source' as const, - synced_at: 'synced_at' as const, - tags: 'tags' as const, - verified: 'verified' as const, - wiring: 'wiring' as const -} - -export const enumGamePluginsUpdateColumn = { - author: 'author' as const, - config_path: 'config_path' as const, - config_schema: 'config_schema' as const, - cvars: 'cvars' as const, - description: 'description' as const, - homepage: 'homepage' as const, - hot_swappable: 'hot_swappable' as const, - kind: 'kind' as const, - name: 'name' as const, - pairs_with: 'pairs_with' as const, - panel: 'panel' as const, - requires_server_guidelines_disabled: 'requires_server_guidelines_disabled' as const, - requires_service: 'requires_service' as const, - slug: 'slug' as const, - source: 'source' as const, - synced_at: 'synced_at' as const, - tags: 'tags' as const, - verified: 'verified' as const, - wiring: 'wiring' as const -} - -export const enumGameServerNodePluginsConstraint = { - game_server_node_plugins_node_plugin_key: 'game_server_node_plugins_node_plugin_key' as const, - game_server_node_plugins_pkey: 'game_server_node_plugins_pkey' as const -} - -export const enumGameServerNodePluginsSelectColumn = { - channel: 'channel' as const, - created_at: 'created_at' as const, - detected: 'detected' as const, - detected_version: 'detected_version' as const, - game_server_node_id: 'game_server_node_id' as const, - id: 'id' as const, - installed_at: 'installed_at' as const, - last_error: 'last_error' as const, - path: 'path' as const, - plugin_slug: 'plugin_slug' as const, - previous_version: 'previous_version' 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, - path: 'path' as const, - plugin_slug: 'plugin_slug' as const, - previous_version: 'previous_version' 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 -} - -export const enumGameServerNodesSelectColumn = { - build_id: 'build_id' as const, - cpu_cores_per_socket: 'cpu_cores_per_socket' as const, - cpu_frequency_info: 'cpu_frequency_info' as const, - cpu_governor_info: 'cpu_governor_info' as const, - cpu_sockets: 'cpu_sockets' as const, - cpu_threads_per_core: 'cpu_threads_per_core' as const, - cpu_warnings: 'cpu_warnings' as const, - cs2_launch_options: 'cs2_launch_options' as const, - cs2_video_settings: 'cs2_video_settings' as const, - csgo_build_id: 'csgo_build_id' as const, - demo_network_limiter: 'demo_network_limiter' as const, - disk_available_gb: 'disk_available_gb' as const, - disk_used_percent: 'disk_used_percent' as const, - enabled: 'enabled' as const, - enabled_for_match_making: 'enabled_for_match_making' as const, - end_port_range: 'end_port_range' as const, - gpu: 'gpu' as const, - gpu_demos_enabled: 'gpu_demos_enabled' as const, - gpu_info: 'gpu_info' as const, - gpu_rendering_enabled: 'gpu_rendering_enabled' as const, - gpu_streaming_enabled: 'gpu_streaming_enabled' as const, - id: 'id' as const, - label: 'label' as const, - lan_ip: 'lan_ip' as const, - node_ip: 'node_ip' as const, - offline_at: 'offline_at' as const, - 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, - shader_bake_progress_stage: 'shader_bake_progress_stage' as const, - shader_bake_status: 'shader_bake_status' as const, - shader_bake_status_history: 'shader_bake_status_history' as const, - start_port_range: 'start_port_range' as const, - status: 'status' as const, - supports_cpu_pinning: 'supports_cpu_pinning' as const, - supports_low_latency: 'supports_low_latency' as const, - token: 'token' as const, - update_status: 'update_status' as const -} - -export const enumGameServerNodesSelectColumnGameServerNodesAggregateBoolExpBoolAndArgumentsColumns = { - enabled: 'enabled' as const, - enabled_for_match_making: 'enabled_for_match_making' as const, - gpu: 'gpu' as const, - gpu_demos_enabled: 'gpu_demos_enabled' as const, - gpu_rendering_enabled: 'gpu_rendering_enabled' as const, - gpu_streaming_enabled: 'gpu_streaming_enabled' as const, - supports_cpu_pinning: 'supports_cpu_pinning' as const, - supports_low_latency: 'supports_low_latency' as const -} - -export const enumGameServerNodesSelectColumnGameServerNodesAggregateBoolExpBoolOrArgumentsColumns = { - enabled: 'enabled' as const, - enabled_for_match_making: 'enabled_for_match_making' as const, - gpu: 'gpu' as const, - gpu_demos_enabled: 'gpu_demos_enabled' as const, - gpu_rendering_enabled: 'gpu_rendering_enabled' as const, - gpu_streaming_enabled: 'gpu_streaming_enabled' as const, - supports_cpu_pinning: 'supports_cpu_pinning' as const, - supports_low_latency: 'supports_low_latency' as const -} - -export const enumGameServerNodesUpdateColumn = { - build_id: 'build_id' as const, - cpu_cores_per_socket: 'cpu_cores_per_socket' as const, - cpu_frequency_info: 'cpu_frequency_info' as const, - cpu_governor_info: 'cpu_governor_info' as const, - cpu_sockets: 'cpu_sockets' as const, - cpu_threads_per_core: 'cpu_threads_per_core' as const, - cpu_warnings: 'cpu_warnings' as const, - cs2_launch_options: 'cs2_launch_options' as const, - cs2_video_settings: 'cs2_video_settings' as const, - csgo_build_id: 'csgo_build_id' as const, - demo_network_limiter: 'demo_network_limiter' as const, - disk_available_gb: 'disk_available_gb' as const, - disk_used_percent: 'disk_used_percent' as const, - enabled: 'enabled' as const, - enabled_for_match_making: 'enabled_for_match_making' as const, - end_port_range: 'end_port_range' as const, - gpu: 'gpu' as const, - gpu_demos_enabled: 'gpu_demos_enabled' as const, - gpu_info: 'gpu_info' as const, - gpu_rendering_enabled: 'gpu_rendering_enabled' as const, - gpu_streaming_enabled: 'gpu_streaming_enabled' as const, - id: 'id' as const, - label: 'label' as const, - lan_ip: 'lan_ip' as const, - node_ip: 'node_ip' as const, - offline_at: 'offline_at' as const, - 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, - shader_bake_progress_stage: 'shader_bake_progress_stage' as const, - shader_bake_status: 'shader_bake_status' as const, - shader_bake_status_history: 'shader_bake_status_history' as const, - start_port_range: 'start_port_range' as const, - status: 'status' as const, - supports_cpu_pinning: 'supports_cpu_pinning' as const, - supports_low_latency: 'supports_low_latency' as const, - token: 'token' as const, - update_status: 'update_status' as const -} - -export const enumGameVersionsConstraint = { - game_versions_pkey: 'game_versions_pkey' as const, - idx_game_versions_current: 'idx_game_versions_current' as const -} - -export const enumGameVersionsSelectColumn = { - build_id: 'build_id' as const, - current: 'current' as const, - cvars: 'cvars' as const, - description: 'description' as const, - downloads: 'downloads' as const, - updated_at: 'updated_at' as const, - version: 'version' as const -} - -export const enumGameVersionsUpdateColumn = { - build_id: 'build_id' as const, - current: 'current' as const, - cvars: 'cvars' as const, - description: 'description' as const, - downloads: 'downloads' as const, - updated_at: 'updated_at' as const, - version: 'version' as const -} - -export const enumGamedataSignatureValidationsConstraint = { - gamedata_signature_validations_build_branch_idx: 'gamedata_signature_validations_build_branch_idx' as const, - gamedata_signature_validations_pkey: 'gamedata_signature_validations_pkey' as const -} - -export const enumGamedataSignatureValidationsSelectColumn = { - branch: 'branch' as const, - build_id: 'build_id' as const, - id: 'id' as const, - results: 'results' as const, - status: 'status' as const, - validated_at: 'validated_at' as const -} - -export const enumGamedataSignatureValidationsUpdateColumn = { - branch: 'branch' as const, - build_id: 'build_id' as const, - id: 'id' as const, - results: 'results' as const, - status: 'status' as const, - validated_at: 'validated_at' as const -} - -export const enumLeaderboardEntriesSelectColumn = { - matches_played: 'matches_played' as const, - player_avatar_url: 'player_avatar_url' as const, - player_country: 'player_country' as const, - player_custom_avatar_url: 'player_custom_avatar_url' as const, - player_name: 'player_name' as const, - player_steam_id: 'player_steam_id' as const, - secondary_value: 'secondary_value' as const, - tertiary_value: 'tertiary_value' as const, - value: 'value' as const -} - -export const enumLeagueDivisionsConstraint = { - league_divisions_name_key: 'league_divisions_name_key' as const, - league_divisions_pkey: 'league_divisions_pkey' as const, - league_divisions_tier_key: 'league_divisions_tier_key' as const -} - -export const enumLeagueDivisionsSelectColumn = { - created_at: 'created_at' as const, - id: 'id' as const, - name: 'name' as const, - tier: 'tier' as const -} - -export const enumLeagueDivisionsUpdateColumn = { - created_at: 'created_at' as const, - id: 'id' as const, - name: 'name' as const, - tier: 'tier' as const -} - -export const enumLeagueMatchWeeksConstraint = { - league_match_weeks_league_season_id_week_number_key: 'league_match_weeks_league_season_id_week_number_key' as const, - league_match_weeks_pkey: 'league_match_weeks_pkey' as const -} - -export const enumLeagueMatchWeeksSelectColumn = { - closes_at: 'closes_at' as const, - created_at: 'created_at' as const, - default_match_at: 'default_match_at' as const, - id: 'id' as const, - league_season_id: 'league_season_id' as const, - opens_at: 'opens_at' as const, - week_number: 'week_number' as const -} - -export const enumLeagueMatchWeeksUpdateColumn = { - closes_at: 'closes_at' as const, - created_at: 'created_at' as const, - default_match_at: 'default_match_at' as const, - id: 'id' as const, - league_season_id: 'league_season_id' as const, - opens_at: 'opens_at' as const, - week_number: 'week_number' as const -} - -export const enumLeagueRelegationPlayoffsConstraint = { - league_relegation_playoffs_league_season_id_higher_division_key: 'league_relegation_playoffs_league_season_id_higher_division_key' as const, - league_relegation_playoffs_pkey: 'league_relegation_playoffs_pkey' as const -} - -export const enumLeagueRelegationPlayoffsSelectColumn = { - created_at: 'created_at' as const, - higher_division_id: 'higher_division_id' as const, - higher_slots: 'higher_slots' as const, - id: 'id' as const, - league_season_id: 'league_season_id' as const, - lower_division_id: 'lower_division_id' as const, - resolved_at: 'resolved_at' as const, - tournament_id: 'tournament_id' as const -} - -export const enumLeagueRelegationPlayoffsUpdateColumn = { - created_at: 'created_at' as const, - higher_division_id: 'higher_division_id' as const, - higher_slots: 'higher_slots' as const, - id: 'id' as const, - league_season_id: 'league_season_id' as const, - lower_division_id: 'lower_division_id' as const, - resolved_at: 'resolved_at' as const, - tournament_id: 'tournament_id' as const -} - -export const enumLeagueSchedulingProposalsConstraint = { - league_scheduling_proposals_pkey: 'league_scheduling_proposals_pkey' as const -} - -export const enumLeagueSchedulingProposalsSelectColumn = { - created_at: 'created_at' as const, - id: 'id' as const, - message: 'message' as const, - proposed_by_league_team_season_id: 'proposed_by_league_team_season_id' as const, - proposed_by_steam_id: 'proposed_by_steam_id' as const, - proposed_time: 'proposed_time' as const, - responded_by_steam_id: 'responded_by_steam_id' as const, - status: 'status' as const, - tournament_bracket_id: 'tournament_bracket_id' as const -} - -export const enumLeagueSchedulingProposalsUpdateColumn = { - created_at: 'created_at' as const, - id: 'id' as const, - message: 'message' as const, - proposed_by_league_team_season_id: 'proposed_by_league_team_season_id' as const, - proposed_by_steam_id: 'proposed_by_steam_id' as const, - proposed_time: 'proposed_time' as const, - responded_by_steam_id: 'responded_by_steam_id' as const, - status: 'status' as const, - tournament_bracket_id: 'tournament_bracket_id' as const -} - -export const enumLeagueSeasonDivisionsConstraint = { - league_season_divisions_league_season_id_league_division_id_key: 'league_season_divisions_league_season_id_league_division_id_key' as const, - league_season_divisions_pkey: 'league_season_divisions_pkey' as const, - league_season_divisions_tournament_id_key: 'league_season_divisions_tournament_id_key' as const -} - -export const enumLeagueSeasonDivisionsSelectColumn = { - created_at: 'created_at' as const, - id: 'id' as const, - league_division_id: 'league_division_id' as const, - league_season_id: 'league_season_id' as const, - tournament_id: 'tournament_id' as const -} - -export const enumLeagueSeasonDivisionsUpdateColumn = { - created_at: 'created_at' as const, - id: 'id' as const, - league_division_id: 'league_division_id' as const, - league_season_id: 'league_season_id' as const, - tournament_id: 'tournament_id' as const -} - -export const enumLeagueSeasonsConstraint = { - league_seasons_name_key: 'league_seasons_name_key' as const, - league_seasons_pkey: 'league_seasons_pkey' as const, - league_seasons_season_number_key: 'league_seasons_season_number_key' as const -} - -export const enumLeagueSeasonsSelectColumn = { - auto_regular_season_format: 'auto_regular_season_format' as const, - created_at: 'created_at' as const, - created_by_steam_id: 'created_by_steam_id' as const, - default_best_of: 'default_best_of' as const, - direct_promote_count: 'direct_promote_count' as const, - direct_relegate_count: 'direct_relegate_count' as const, - games_per_week: 'games_per_week' as const, - id: 'id' as const, - match_options_id: 'match_options_id' as const, - match_weeks_count: 'match_weeks_count' as const, - max_roster_size: 'max_roster_size' as const, - min_roster_size: 'min_roster_size' as const, - name: 'name' as const, - playoff_best_of: 'playoff_best_of' as const, - playoff_round_best_of: 'playoff_round_best_of' as const, - playoff_seats: 'playoff_seats' as const, - playoff_stage_type: 'playoff_stage_type' as const, - playoff_third_place_match: 'playoff_third_place_match' as const, - promote_count: 'promote_count' as const, - regular_season_stage_type: 'regular_season_stage_type' as const, - relegate_count: 'relegate_count' as const, - relegation_down_count: 'relegation_down_count' as const, - relegation_up_count: 'relegation_up_count' as const, - roster_lock_at: 'roster_lock_at' as const, - season_number: 'season_number' as const, - signup_closes_at: 'signup_closes_at' as const, - signup_opens_at: 'signup_opens_at' as const, - starts_at: 'starts_at' as const, - status: 'status' as const, - week_best_of: 'week_best_of' as const -} - -export const enumLeagueSeasonsUpdateColumn = { - auto_regular_season_format: 'auto_regular_season_format' as const, - created_at: 'created_at' as const, - created_by_steam_id: 'created_by_steam_id' as const, - default_best_of: 'default_best_of' as const, - direct_promote_count: 'direct_promote_count' as const, - direct_relegate_count: 'direct_relegate_count' as const, - games_per_week: 'games_per_week' as const, - id: 'id' as const, - match_options_id: 'match_options_id' as const, - match_weeks_count: 'match_weeks_count' as const, - max_roster_size: 'max_roster_size' as const, - min_roster_size: 'min_roster_size' as const, - name: 'name' as const, - playoff_best_of: 'playoff_best_of' as const, - playoff_round_best_of: 'playoff_round_best_of' as const, - playoff_seats: 'playoff_seats' as const, - playoff_stage_type: 'playoff_stage_type' as const, - playoff_third_place_match: 'playoff_third_place_match' as const, - promote_count: 'promote_count' as const, - regular_season_stage_type: 'regular_season_stage_type' as const, - relegate_count: 'relegate_count' as const, - relegation_down_count: 'relegation_down_count' as const, - relegation_up_count: 'relegation_up_count' as const, - roster_lock_at: 'roster_lock_at' as const, - season_number: 'season_number' as const, - signup_closes_at: 'signup_closes_at' as const, - signup_opens_at: 'signup_opens_at' as const, - starts_at: 'starts_at' as const, - status: 'status' as const, - week_best_of: 'week_best_of' as const -} - -export const enumLeagueTeamMovementsConstraint = { - league_team_movements_league_season_id_league_team_id_key: 'league_team_movements_league_season_id_league_team_id_key' as const, - league_team_movements_pkey: 'league_team_movements_pkey' as const -} - -export const enumLeagueTeamMovementsSelectColumn = { - approved_at: 'approved_at' as const, - approved_by_steam_id: 'approved_by_steam_id' as const, - computed_to_division_id: 'computed_to_division_id' as const, - created_at: 'created_at' as const, - final_rank: 'final_rank' as const, - final_to_division_id: 'final_to_division_id' as const, - from_division_id: 'from_division_id' as const, - id: 'id' as const, - league_season_id: 'league_season_id' as const, - league_team_id: 'league_team_id' as const, - type: 'type' as const -} - -export const enumLeagueTeamMovementsUpdateColumn = { - approved_at: 'approved_at' as const, - approved_by_steam_id: 'approved_by_steam_id' as const, - computed_to_division_id: 'computed_to_division_id' as const, - created_at: 'created_at' as const, - final_rank: 'final_rank' as const, - final_to_division_id: 'final_to_division_id' as const, - from_division_id: 'from_division_id' as const, - id: 'id' as const, - league_season_id: 'league_season_id' as const, - league_team_id: 'league_team_id' as const, - type: 'type' as const -} - -export const enumLeagueTeamRostersConstraint = { - league_team_rosters_pkey: 'league_team_rosters_pkey' as const -} - -export const enumLeagueTeamRostersSelectColumn = { - added_at: 'added_at' as const, - league_team_season_id: 'league_team_season_id' as const, - player_steam_id: 'player_steam_id' as const, - removed_at: 'removed_at' as const, - removed_reason: 'removed_reason' as const, - status: 'status' as const -} - -export const enumLeagueTeamRostersUpdateColumn = { - added_at: 'added_at' as const, - league_team_season_id: 'league_team_season_id' as const, - player_steam_id: 'player_steam_id' as const, - removed_at: 'removed_at' as const, - removed_reason: 'removed_reason' as const, - status: 'status' as const -} - -export const enumLeagueTeamSeasonsConstraint = { - league_team_seasons_league_season_id_league_team_id_key: 'league_team_seasons_league_season_id_league_team_id_key' as const, - league_team_seasons_pkey: 'league_team_seasons_pkey' as const -} - -export const enumLeagueTeamSeasonsSelectColumn = { - assigned_division_id: 'assigned_division_id' as const, - captain_steam_id: 'captain_steam_id' as const, - created_at: 'created_at' as const, - decline_reason: 'decline_reason' as const, - id: 'id' as const, - league_season_id: 'league_season_id' as const, - league_team_id: 'league_team_id' as const, - registered_by_steam_id: 'registered_by_steam_id' as const, - requested_division_id: 'requested_division_id' as const, - seed: 'seed' as const, - status: 'status' as const, - tournament_team_id: 'tournament_team_id' as const -} - -export const enumLeagueTeamSeasonsUpdateColumn = { - assigned_division_id: 'assigned_division_id' as const, - captain_steam_id: 'captain_steam_id' as const, - created_at: 'created_at' as const, - decline_reason: 'decline_reason' as const, - id: 'id' as const, - league_season_id: 'league_season_id' as const, - league_team_id: 'league_team_id' as const, - registered_by_steam_id: 'registered_by_steam_id' as const, - requested_division_id: 'requested_division_id' as const, - seed: 'seed' as const, - status: 'status' as const, - tournament_team_id: 'tournament_team_id' as const -} - -export const enumLeagueTeamsConstraint = { - league_teams_pkey: 'league_teams_pkey' as const, - league_teams_team_id_key: 'league_teams_team_id_key' as const -} - -export const enumLeagueTeamsSelectColumn = { - created_at: 'created_at' as const, - id: 'id' as const, - team_id: 'team_id' as const -} - -export const enumLeagueTeamsUpdateColumn = { - created_at: 'created_at' as const, - id: 'id' as const, - team_id: 'team_id' as const -} - -export const enumLobbiesConstraint = { - lobbies_pkey: 'lobbies_pkey' as const -} - -export const enumLobbiesSelectColumn = { - access: 'access' as const, - created_at: 'created_at' as const, - id: 'id' as const -} - -export const enumLobbiesUpdateColumn = { - access: 'access' as const, - created_at: 'created_at' as const, - id: 'id' as const -} - -export const enumLobbyPlayersConstraint = { - lobby_players_pkey: 'lobby_players_pkey' as const -} - -export const enumLobbyPlayersSelectColumn = { - captain: 'captain' as const, - invited_by_steam_id: 'invited_by_steam_id' as const, - lobby_id: 'lobby_id' as const, - status: 'status' as const, - steam_id: 'steam_id' as const -} - -export const enumLobbyPlayersSelectColumnLobbyPlayersAggregateBoolExpBoolAndArgumentsColumns = { - captain: 'captain' as const -} - -export const enumLobbyPlayersSelectColumnLobbyPlayersAggregateBoolExpBoolOrArgumentsColumns = { - captain: 'captain' as const -} - -export const enumLobbyPlayersUpdateColumn = { - captain: 'captain' as const, - invited_by_steam_id: 'invited_by_steam_id' as const, - lobby_id: 'lobby_id' as const, - status: 'status' as const, - steam_id: 'steam_id' as const -} - -export const enumMapCalloutsConstraint = { - map_callouts_pkey: 'map_callouts_pkey' as const -} - -export const enumMapCalloutsSelectColumn = { - boxes: 'boxes' as const, - map_name: 'map_name' as const, - name: 'name' as const, - source: 'source' as const, - updated_at: 'updated_at' as const -} - -export const enumMapCalloutsUpdateColumn = { - boxes: 'boxes' as const, - map_name: 'map_name' as const, - name: 'name' as const, - source: 'source' as const, - updated_at: 'updated_at' as const -} - -export const enumMapPoolsConstraint = { - map_pools_pkey: 'map_pools_pkey' as const -} - -export const enumMapPoolsSelectColumn = { - enabled: 'enabled' as const, - id: 'id' as const, - seed: 'seed' as const, - type: 'type' as const -} - -export const enumMapPoolsUpdateColumn = { - enabled: 'enabled' as const, - id: 'id' as const, - seed: 'seed' as const, - type: 'type' as const -} - -export const enumMapsConstraint = { - maps_name_type_key: 'maps_name_type_key' as const, - maps_pkey: 'maps_pkey' as const -} - -export const enumMapsSelectColumn = { - active_pool: 'active_pool' as const, - deleted_at: 'deleted_at' as const, - enabled: 'enabled' as const, - id: 'id' as const, - label: 'label' as const, - name: 'name' as const, - patch: 'patch' as const, - poster: 'poster' as const, - type: 'type' as const, - workshop_map_id: 'workshop_map_id' as const -} - -export const enumMapsSelectColumnMapsAggregateBoolExpBoolAndArgumentsColumns = { - active_pool: 'active_pool' as const, - enabled: 'enabled' as const -} - -export const enumMapsSelectColumnMapsAggregateBoolExpBoolOrArgumentsColumns = { - active_pool: 'active_pool' as const, - enabled: 'enabled' as const -} - -export const enumMapsUpdateColumn = { - active_pool: 'active_pool' as const, - deleted_at: 'deleted_at' as const, - enabled: 'enabled' as const, - id: 'id' as const, - label: 'label' as const, - name: 'name' as const, - patch: 'patch' as const, - poster: 'poster' as const, - type: 'type' as const, - workshop_map_id: 'workshop_map_id' as const -} - -export const enumMatchClipsConstraint = { - match_clips_pkey: 'match_clips_pkey' as const -} - -export const enumMatchClipsSelectColumn = { - created_at: 'created_at' as const, - duration_ms: 'duration_ms' as const, - file: 'file' as const, - id: 'id' as const, - kills_count: 'kills_count' as const, - match_map_demo_id: 'match_map_demo_id' as const, - match_map_id: 'match_map_id' as const, - round: 'round' as const, - size: 'size' as const, - target_steam_id: 'target_steam_id' as const, - thumbnail_url: 'thumbnail_url' as const, - title: 'title' as const, - user_steam_id: 'user_steam_id' as const, - views_count: 'views_count' as const, - visibility: 'visibility' as const -} - -export const enumMatchClipsUpdateColumn = { - created_at: 'created_at' as const, - duration_ms: 'duration_ms' as const, - file: 'file' as const, - id: 'id' as const, - kills_count: 'kills_count' as const, - match_map_demo_id: 'match_map_demo_id' as const, - match_map_id: 'match_map_id' as const, - round: 'round' as const, - size: 'size' as const, - target_steam_id: 'target_steam_id' as const, - thumbnail_url: 'thumbnail_url' as const, - title: 'title' as const, - user_steam_id: 'user_steam_id' as const, - views_count: 'views_count' as const, - visibility: 'visibility' as const -} - -export const enumMatchDemoSessionsConstraint = { - match_demo_sessions_per_user_per_map_uniq: 'match_demo_sessions_per_user_per_map_uniq' as const, - match_demo_sessions_pkey: 'match_demo_sessions_pkey' as const -} - -export const enumMatchDemoSessionsSelectColumn = { - created_at: 'created_at' as const, - error_message: 'error_message' as const, - game_server_node_id: 'game_server_node_id' as const, - id: 'id' as const, - k8s_job_name: 'k8s_job_name' as const, - last_activity_at: 'last_activity_at' as const, - last_status_at: 'last_status_at' as const, - match_id: 'match_id' as const, - match_map_demo_id: 'match_map_demo_id' as const, - match_map_id: 'match_map_id' as const, - status: 'status' as const, - status_history: 'status_history' as const, - stream_url: 'stream_url' as const, - watcher_steam_id: 'watcher_steam_id' as const -} - -export const enumMatchDemoSessionsUpdateColumn = { - created_at: 'created_at' as const, - error_message: 'error_message' as const, - game_server_node_id: 'game_server_node_id' as const, - id: 'id' as const, - k8s_job_name: 'k8s_job_name' as const, - last_activity_at: 'last_activity_at' as const, - last_status_at: 'last_status_at' as const, - match_id: 'match_id' as const, - match_map_demo_id: 'match_map_demo_id' as const, - match_map_id: 'match_map_id' as const, - status: 'status' as const, - status_history: 'status_history' as const, - stream_url: 'stream_url' as const, - watcher_steam_id: 'watcher_steam_id' as const -} - -export const enumMatchLineupPlayersConstraint = { - match_lineup_players_match_lineup_id_placeholder_name_key: 'match_lineup_players_match_lineup_id_placeholder_name_key' as const, - match_lineup_players_match_lineup_id_steam_id_key: 'match_lineup_players_match_lineup_id_steam_id_key' as const, - match_members_pkey: 'match_members_pkey' as const -} - -export const enumMatchLineupPlayersSelectColumn = { - captain: 'captain' as const, - checked_in: 'checked_in' as const, - discord_id: 'discord_id' as const, - id: 'id' as const, - is_connected: 'is_connected' as const, - match_lineup_id: 'match_lineup_id' as const, - party_id: 'party_id' as const, - party_source: 'party_source' as const, - placeholder_name: 'placeholder_name' as const, - steam_id: 'steam_id' as const -} - -export const enumMatchLineupPlayersSelectColumnMatchLineupPlayersAggregateBoolExpBoolAndArgumentsColumns = { - captain: 'captain' as const, - checked_in: 'checked_in' as const, - is_connected: 'is_connected' as const -} - -export const enumMatchLineupPlayersSelectColumnMatchLineupPlayersAggregateBoolExpBoolOrArgumentsColumns = { - captain: 'captain' as const, - checked_in: 'checked_in' as const, - is_connected: 'is_connected' as const -} - -export const enumMatchLineupPlayersUpdateColumn = { - captain: 'captain' as const, - checked_in: 'checked_in' as const, - discord_id: 'discord_id' as const, - id: 'id' as const, - is_connected: 'is_connected' as const, - match_lineup_id: 'match_lineup_id' as const, - party_id: 'party_id' as const, - party_source: 'party_source' as const, - placeholder_name: 'placeholder_name' as const, - steam_id: 'steam_id' as const -} - -export const enumMatchLineupsConstraint = { - match_teams_pkey: 'match_teams_pkey' as const -} - -export const enumMatchLineupsSelectColumn = { - coach_steam_id: 'coach_steam_id' as const, - id: 'id' as const, - match_id: 'match_id' as const, - team_id: 'team_id' as const, - team_name: 'team_name' as const -} - -export const enumMatchLineupsUpdateColumn = { - coach_steam_id: 'coach_steam_id' as const, - id: 'id' as const, - match_id: 'match_id' as const, - team_id: 'team_id' as const, - team_name: 'team_name' as const -} - -export const enumMatchMapDemosConstraint = { - match_demos_pkey: 'match_demos_pkey' as const, - match_map_demos_match_map_id_file_key: 'match_map_demos_match_map_id_file_key' as const -} - -export const enumMatchMapDemosSelectColumn = { - bombs: 'bombs' as const, - created_at: 'created_at' as const, - cs2_build: 'cs2_build' as const, - duration_seconds: 'duration_seconds' as const, - file: 'file' as const, - geometry_validated: 'geometry_validated' as const, - id: 'id' as const, - kills: 'kills' as const, - map_name: 'map_name' as const, - match_id: 'match_id' as const, - match_map_id: 'match_map_id' as const, - metadata_parsed_at: 'metadata_parsed_at' as const, - parser_version: 'parser_version' as const, - playback_file: 'playback_file' as const, - playback_size: 'playback_size' as const, - playback_version: 'playback_version' as const, - players: 'players' as const, - round_ticks: 'round_ticks' as const, - size: 'size' as const, - tick_rate: 'tick_rate' as const, - total_ticks: 'total_ticks' as const, - workshop_id: 'workshop_id' as const -} - -export const enumMatchMapDemosSelectColumnMatchMapDemosAggregateBoolExpBoolAndArgumentsColumns = { - geometry_validated: 'geometry_validated' as const -} - -export const enumMatchMapDemosSelectColumnMatchMapDemosAggregateBoolExpBoolOrArgumentsColumns = { - geometry_validated: 'geometry_validated' as const -} - -export const enumMatchMapDemosUpdateColumn = { - bombs: 'bombs' as const, - created_at: 'created_at' as const, - cs2_build: 'cs2_build' as const, - file: 'file' as const, - geometry_validated: 'geometry_validated' as const, - id: 'id' as const, - kills: 'kills' as const, - map_name: 'map_name' as const, - match_id: 'match_id' as const, - match_map_id: 'match_map_id' as const, - metadata_parsed_at: 'metadata_parsed_at' as const, - parser_version: 'parser_version' as const, - playback_file: 'playback_file' as const, - playback_size: 'playback_size' as const, - playback_version: 'playback_version' as const, - players: 'players' as const, - round_ticks: 'round_ticks' as const, - size: 'size' as const, - tick_rate: 'tick_rate' as const, - total_ticks: 'total_ticks' as const, - workshop_id: 'workshop_id' as const -} - -export const enumMatchMapRoundsConstraint = { - match_rounds__id_key: 'match_rounds__id_key' as const, - match_rounds_match_id_round_key: 'match_rounds_match_id_round_key' as const, - match_rounds_pkey: 'match_rounds_pkey' as const -} - -export const enumMatchMapRoundsSelectColumn = { - backup_file: 'backup_file' as const, - created_at: 'created_at' as const, - deleted_at: 'deleted_at' as const, - id: 'id' as const, - lineup_1_money: 'lineup_1_money' as const, - lineup_1_score: 'lineup_1_score' as const, - lineup_1_side: 'lineup_1_side' as const, - lineup_1_timeouts_available: 'lineup_1_timeouts_available' as const, - lineup_2_money: 'lineup_2_money' as const, - lineup_2_score: 'lineup_2_score' as const, - lineup_2_side: 'lineup_2_side' as const, - lineup_2_timeouts_available: 'lineup_2_timeouts_available' as const, - match_map_id: 'match_map_id' as const, - round: 'round' as const, - time: 'time' as const, - winning_reason: 'winning_reason' as const, - winning_side: 'winning_side' as const -} - -export const enumMatchMapRoundsUpdateColumn = { - backup_file: 'backup_file' as const, - created_at: 'created_at' as const, - deleted_at: 'deleted_at' as const, - id: 'id' as const, - lineup_1_money: 'lineup_1_money' as const, - lineup_1_score: 'lineup_1_score' as const, - lineup_1_side: 'lineup_1_side' as const, - lineup_1_timeouts_available: 'lineup_1_timeouts_available' as const, - lineup_2_money: 'lineup_2_money' as const, - lineup_2_score: 'lineup_2_score' as const, - lineup_2_side: 'lineup_2_side' as const, - lineup_2_timeouts_available: 'lineup_2_timeouts_available' as const, - match_map_id: 'match_map_id' as const, - round: 'round' as const, - time: 'time' as const, - winning_reason: 'winning_reason' as const, - winning_side: 'winning_side' as const -} - -export const enumMatchMapVetoPicksConstraint = { - match_map_veto_picks_map_id_match_id_type_key: 'match_map_veto_picks_map_id_match_id_type_key' as const, - match_map_veto_picks_pkey: 'match_map_veto_picks_pkey' as const -} - -export const enumMatchMapVetoPicksSelectColumn = { - auto_picked: 'auto_picked' as const, - created_at: 'created_at' as const, - id: 'id' as const, - map_id: 'map_id' as const, - match_id: 'match_id' as const, - match_lineup_id: 'match_lineup_id' as const, - side: 'side' as const, - type: 'type' as const -} - -export const enumMatchMapVetoPicksSelectColumnMatchMapVetoPicksAggregateBoolExpBoolAndArgumentsColumns = { - auto_picked: 'auto_picked' as const -} - -export const enumMatchMapVetoPicksSelectColumnMatchMapVetoPicksAggregateBoolExpBoolOrArgumentsColumns = { - auto_picked: 'auto_picked' as const -} - -export const enumMatchMapVetoPicksUpdateColumn = { - auto_picked: 'auto_picked' as const, - created_at: 'created_at' as const, - id: 'id' as const, - map_id: 'map_id' as const, - match_id: 'match_id' as const, - match_lineup_id: 'match_lineup_id' as const, - side: 'side' as const, - type: 'type' as const -} - -export const enumMatchMapsConstraint = { - match_maps_match_id_order_key: 'match_maps_match_id_order_key' as const, - match_maps_pkey: 'match_maps_pkey' as const -} - -export const enumMatchMapsSelectColumn = { - clips_count: 'clips_count' as const, - created_at: 'created_at' as const, - demo_processing_started_at: 'demo_processing_started_at' as const, - ended_at: 'ended_at' as const, - id: 'id' as const, - latest_clip_at: 'latest_clip_at' as const, - lineup_1_side: 'lineup_1_side' as const, - lineup_1_timeouts_available: 'lineup_1_timeouts_available' as const, - lineup_2_side: 'lineup_2_side' as const, - lineup_2_timeouts_available: 'lineup_2_timeouts_available' as const, - map_id: 'map_id' as const, - match_id: 'match_id' as const, - order: 'order' as const, - public_clips_count: 'public_clips_count' as const, - public_latest_clip_at: 'public_latest_clip_at' as const, - started_at: 'started_at' as const, - status: 'status' as const, - winning_lineup_id: 'winning_lineup_id' as const -} - -export const enumMatchMapsUpdateColumn = { - clips_count: 'clips_count' as const, - created_at: 'created_at' as const, - demo_processing_started_at: 'demo_processing_started_at' as const, - ended_at: 'ended_at' as const, - id: 'id' as const, - latest_clip_at: 'latest_clip_at' as const, - lineup_1_side: 'lineup_1_side' as const, - lineup_1_timeouts_available: 'lineup_1_timeouts_available' as const, - lineup_2_side: 'lineup_2_side' as const, - lineup_2_timeouts_available: 'lineup_2_timeouts_available' as const, - map_id: 'map_id' as const, - match_id: 'match_id' as const, - order: 'order' as const, - public_clips_count: 'public_clips_count' as const, - public_latest_clip_at: 'public_latest_clip_at' as const, - started_at: 'started_at' as const, - status: 'status' as const, - winning_lineup_id: 'winning_lineup_id' as const -} - -export const enumMatchOptionsConstraint = { - match_options_pkey: 'match_options_pkey' as const -} - -export const enumMatchOptionsSelectColumn = { - auto_cancel_duration: 'auto_cancel_duration' as const, - auto_cancellation: 'auto_cancellation' as const, - best_of: 'best_of' as const, - camera_allow_teammates: 'camera_allow_teammates' as const, - camera_required: 'camera_required' as const, - 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, - knife_round: 'knife_round' as const, - live_match_timeout: 'live_match_timeout' as const, - map_pool_id: 'map_pool_id' as const, - map_veto: 'map_veto' as const, - match_mode: 'match_mode' as const, - mr: 'mr' as const, - number_of_substitutes: 'number_of_substitutes' as const, - overtime: 'overtime' as const, - prefer_dedicated_server: 'prefer_dedicated_server' as const, - ready_setting: 'ready_setting' as const, - region_veto: 'region_veto' as const, - regions: 'regions' as const, - round_restart_delay: 'round_restart_delay' as const, - tech_timeout_setting: 'tech_timeout_setting' as const, - timeout_setting: 'timeout_setting' as const, - tv_delay: 'tv_delay' as const, - type: 'type' as const, - 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, - best_of: 'best_of' as const, - camera_allow_teammates: 'camera_allow_teammates' as const, - camera_required: 'camera_required' as const, - 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, - knife_round: 'knife_round' as const, - live_match_timeout: 'live_match_timeout' as const, - map_pool_id: 'map_pool_id' as const, - map_veto: 'map_veto' as const, - match_mode: 'match_mode' as const, - mr: 'mr' as const, - number_of_substitutes: 'number_of_substitutes' as const, - overtime: 'overtime' as const, - prefer_dedicated_server: 'prefer_dedicated_server' as const, - ready_setting: 'ready_setting' as const, - region_veto: 'region_veto' as const, - regions: 'regions' as const, - round_restart_delay: 'round_restart_delay' as const, - tech_timeout_setting: 'tech_timeout_setting' as const, - timeout_setting: 'timeout_setting' as const, - tv_delay: 'tv_delay' as const, - type: 'type' as const, - veto_pick_timeout: 'veto_pick_timeout' as const -} - -export const enumMatchRegionVetoPicksConstraint = { - match_region_veto_picks_match_id_region_key: 'match_region_veto_picks_match_id_region_key' as const, - match_region_veto_picks_pkey: 'match_region_veto_picks_pkey' as const -} - -export const enumMatchRegionVetoPicksSelectColumn = { - auto_picked: 'auto_picked' as const, - created_at: 'created_at' as const, - id: 'id' as const, - match_id: 'match_id' as const, - match_lineup_id: 'match_lineup_id' as const, - region: 'region' as const, - type: 'type' as const -} - -export const enumMatchRegionVetoPicksSelectColumnMatchRegionVetoPicksAggregateBoolExpBoolAndArgumentsColumns = { - auto_picked: 'auto_picked' as const -} - -export const enumMatchRegionVetoPicksSelectColumnMatchRegionVetoPicksAggregateBoolExpBoolOrArgumentsColumns = { - auto_picked: 'auto_picked' as const -} - -export const enumMatchRegionVetoPicksUpdateColumn = { - auto_picked: 'auto_picked' as const, - created_at: 'created_at' as const, - id: 'id' as const, - match_id: 'match_id' as const, - match_lineup_id: 'match_lineup_id' as const, - region: 'region' as const, - type: 'type' as const -} - -export const enumMatchStreamsConstraint = { - match_streams_pkey: 'match_streams_pkey' as const -} - -export const enumMatchStreamsSelectColumn = { - autodirector: 'autodirector' as const, - error_message: 'error_message' as const, - game_server_node_id: 'game_server_node_id' as const, - id: 'id' as const, - is_game_streamer: 'is_game_streamer' as const, - is_live: 'is_live' as const, - k8s_service_name: 'k8s_service_name' as const, - last_status_at: 'last_status_at' as const, - link: 'link' as const, - match_id: 'match_id' as const, - mode: 'mode' as const, - priority: 'priority' as const, - status: 'status' as const, - status_history: 'status_history' as const, - stream_url: 'stream_url' as const, - title: 'title' as const -} - -export const enumMatchStreamsSelectColumnMatchStreamsAggregateBoolExpBoolAndArgumentsColumns = { - autodirector: 'autodirector' as const, - is_game_streamer: 'is_game_streamer' as const, - is_live: 'is_live' as const -} - -export const enumMatchStreamsSelectColumnMatchStreamsAggregateBoolExpBoolOrArgumentsColumns = { - autodirector: 'autodirector' as const, - is_game_streamer: 'is_game_streamer' as const, - is_live: 'is_live' as const -} - -export const enumMatchStreamsUpdateColumn = { - autodirector: 'autodirector' as const, - error_message: 'error_message' as const, - game_server_node_id: 'game_server_node_id' as const, - id: 'id' as const, - is_game_streamer: 'is_game_streamer' as const, - is_live: 'is_live' as const, - k8s_service_name: 'k8s_service_name' as const, - last_status_at: 'last_status_at' as const, - link: 'link' as const, - match_id: 'match_id' as const, - mode: 'mode' as const, - priority: 'priority' as const, - status: 'status' as const, - status_history: 'status_history' as const, - stream_url: 'stream_url' as const, - title: 'title' as const -} - -export const enumMatchTypeCfgsConstraint = { - match_type_cfgs_pkey: 'match_type_cfgs_pkey' as const -} - -export const enumMatchTypeCfgsSelectColumn = { - cfg: 'cfg' as const, - type: 'type' as const -} - -export const enumMatchTypeCfgsUpdateColumn = { - cfg: 'cfg' as const, - type: 'type' as const -} - -export const enumMatchesConstraint = { - matches_lineup_1_id_key: 'matches_lineup_1_id_key' as const, - matches_lineup_1_id_lineup_2_id_key: 'matches_lineup_1_id_lineup_2_id_key' as const, - matches_lineup_2_id_key: 'matches_lineup_2_id_key' as const, - matches_pkey: 'matches_pkey' as const, - uq_matches_source_external_id: 'uq_matches_source_external_id' as const -} - -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, - external_id: 'external_id' as const, - id: 'id' as const, - label: 'label' as const, - lineup_1_id: 'lineup_1_id' as const, - lineup_2_id: 'lineup_2_id' as const, - match_options_id: 'match_options_id' as const, - organizer_steam_id: 'organizer_steam_id' as const, - password: 'password' as const, - region: 'region' as const, - scheduled_at: 'scheduled_at' as const, - server_error: 'server_error' as const, - server_id: 'server_id' as const, - share_code: 'share_code' as const, - source: 'source' as const, - started_at: 'started_at' as const, - status: 'status' as const, - veto_pick_expires_at: 'veto_pick_expires_at' as const, - 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, - id: 'id' as const, - label: 'label' as const, - lineup_1_id: 'lineup_1_id' as const, - lineup_2_id: 'lineup_2_id' as const, - match_options_id: 'match_options_id' as const, - organizer_steam_id: 'organizer_steam_id' as const, - password: 'password' as const, - region: 'region' as const, - scheduled_at: 'scheduled_at' as const, - server_error: 'server_error' as const, - server_id: 'server_id' as const, - share_code: 'share_code' as const, - source: 'source' as const, - started_at: 'started_at' as const, - status: 'status' as const, - veto_pick_expires_at: 'veto_pick_expires_at' as const, - winning_lineup_id: 'winning_lineup_id' as const -} - -export const enumMigrationHashesHashesConstraint = { - hashes_pkey: 'hashes_pkey' as const -} - -export const enumMigrationHashesHashesSelectColumn = { - hash: 'hash' as const, - name: 'name' as const -} - -export const enumMigrationHashesHashesUpdateColumn = { - hash: 'hash' as const, - name: 'name' as const -} - -export const enumMyFriendsSelectColumn = { - avatar_url: 'avatar_url' as const, - country: 'country' as const, - created_at: 'created_at' as const, - custom_avatar_url: 'custom_avatar_url' as const, - days_since_last_ban: 'days_since_last_ban' as const, - discord_id: 'discord_id' as const, - elo: 'elo' as const, - faceit_elo: 'faceit_elo' as const, - faceit_nickname: 'faceit_nickname' as const, - faceit_player_id: 'faceit_player_id' as const, - faceit_skill_level: 'faceit_skill_level' as const, - faceit_updated_at: 'faceit_updated_at' as const, - faceit_url: 'faceit_url' as const, - friend_steam_id: 'friend_steam_id' as const, - game_ban_count: 'game_ban_count' as const, - invited_by_steam_id: 'invited_by_steam_id' as const, - language: 'language' as const, - last_presence_state: 'last_presence_state' as const, - last_read_news_at: 'last_read_news_at' as const, - last_sign_in_at: 'last_sign_in_at' as const, - name: 'name' as const, - name_registered: 'name_registered' as const, - notification_timezone: 'notification_timezone' as const, - premier_rank: 'premier_rank' as const, - premier_rank_updated_at: 'premier_rank_updated_at' as const, - presence_updated_at: 'presence_updated_at' as const, - profile_url: 'profile_url' as const, - quiet_hours_end: 'quiet_hours_end' as const, - quiet_hours_start: 'quiet_hours_start' as const, - role: 'role' as const, - roster_image_url: 'roster_image_url' as const, - show_match_ready_modal: 'show_match_ready_modal' as const, - status: 'status' as const, - steam_bans_checked_at: 'steam_bans_checked_at' as const, - steam_id: 'steam_id' as const, - vac_ban_count: 'vac_ban_count' as const, - vac_banned: 'vac_banned' as const -} - -export const enumMyFriendsSelectColumnMyFriendsAggregateBoolExpBoolAndArgumentsColumns = { - name_registered: 'name_registered' as const, - show_match_ready_modal: 'show_match_ready_modal' as const, - vac_banned: 'vac_banned' as const -} - -export const enumMyFriendsSelectColumnMyFriendsAggregateBoolExpBoolOrArgumentsColumns = { - name_registered: 'name_registered' as const, - show_match_ready_modal: 'show_match_ready_modal' as const, - vac_banned: 'vac_banned' as const -} - -export const enumNewsArticlesConstraint = { - news_articles_pkey: 'news_articles_pkey' as const, - news_articles_slug_key: 'news_articles_slug_key' as const -} - -export const enumNewsArticlesSelectColumn = { - author_steam_id: 'author_steam_id' as const, - content_markdown: 'content_markdown' as const, - cover_image_url: 'cover_image_url' as const, - created_at: 'created_at' as const, - id: 'id' as const, - published_at: 'published_at' as const, - slug: 'slug' as const, - status: 'status' as const, - teaser: 'teaser' as const, - title: 'title' as const, - updated_at: 'updated_at' as const, - view_count: 'view_count' as const -} - -export const enumNewsArticlesUpdateColumn = { - author_steam_id: 'author_steam_id' as const, - content_markdown: 'content_markdown' as const, - cover_image_url: 'cover_image_url' as const, - created_at: 'created_at' as const, - id: 'id' as const, - published_at: 'published_at' as const, - slug: 'slug' as const, - status: 'status' as const, - teaser: 'teaser' as const, - title: 'title' as const, - updated_at: 'updated_at' as const, - view_count: 'view_count' as const -} - -export const enumNotificationPreferencesConstraint = { - notification_preferences_pkey: 'notification_preferences_pkey' as const -} - -export const enumNotificationPreferencesSelectColumn = { - channel: 'channel' as const, - enabled: 'enabled' as const, - key: 'key' as const, - steam_id: 'steam_id' as const, - updated_at: 'updated_at' as const -} - -export const enumNotificationPreferencesUpdateColumn = { - channel: 'channel' as const, - enabled: 'enabled' as const, - key: 'key' as const, - steam_id: 'steam_id' as const, - updated_at: 'updated_at' as const -} - -export const enumNotificationsConstraint = { - notifications_pkey: 'notifications_pkey' as const -} - -export const enumNotificationsSelectColumn = { - actions: 'actions' as const, - created_at: 'created_at' as const, - data: 'data' as const, - deletable: 'deletable' as const, - deleted_at: 'deleted_at' as const, - entity_id: 'entity_id' as const, - id: 'id' as const, - in_app: 'in_app' as const, - is_read: 'is_read' as const, - message: 'message' as const, - role: 'role' as const, - steam_id: 'steam_id' as const, - title: 'title' as const, - type: 'type' as const -} - -export const enumNotificationsSelectColumnNotificationsAggregateBoolExpBoolAndArgumentsColumns = { - deletable: 'deletable' as const, - in_app: 'in_app' as const, - is_read: 'is_read' as const -} - -export const enumNotificationsSelectColumnNotificationsAggregateBoolExpBoolOrArgumentsColumns = { - deletable: 'deletable' as const, - in_app: 'in_app' as const, - is_read: 'is_read' as const -} - -export const enumNotificationsUpdateColumn = { - actions: 'actions' as const, - created_at: 'created_at' as const, - data: 'data' as const, - deletable: 'deletable' as const, - deleted_at: 'deleted_at' as const, - entity_id: 'entity_id' as const, - id: 'id' as const, - in_app: 'in_app' as const, - is_read: 'is_read' as const, - message: 'message' as const, - role: 'role' as const, - steam_id: 'steam_id' as const, - title: 'title' as const, - type: 'type' as const -} - -export const enumOrderBy = { - asc: 'asc' as const, - asc_nulls_first: 'asc_nulls_first' as const, - asc_nulls_last: 'asc_nulls_last' as const, - desc: 'desc' as const, - desc_nulls_first: 'desc_nulls_first' as const, - desc_nulls_last: 'desc_nulls_last' as const -} - -export const enumPendingMatchImportPlayersConstraint = { - pending_match_import_players_pkey: 'pending_match_import_players_pkey' as const -} - -export const enumPendingMatchImportPlayersSelectColumn = { - created_at: 'created_at' as const, - steam_id: 'steam_id' as const, - valve_match_id: 'valve_match_id' as const -} - -export const enumPendingMatchImportPlayersUpdateColumn = { - created_at: 'created_at' as const, - steam_id: 'steam_id' as const, - valve_match_id: 'valve_match_id' as const -} - -export const enumPendingMatchImportsConstraint = { - pending_match_imports_pkey: 'pending_match_imports_pkey' as const -} - -export const enumPendingMatchImportsSelectColumn = { - created_at: 'created_at' as const, - demo_url: 'demo_url' as const, - error: 'error' as const, - map_name: 'map_name' as const, - match_start_time: 'match_start_time' as const, - share_code: 'share_code' as const, - status: 'status' as const, - updated_at: 'updated_at' as const, - valve_match_id: 'valve_match_id' as const -} - -export const enumPendingMatchImportsUpdateColumn = { - created_at: 'created_at' as const, - demo_url: 'demo_url' as const, - error: 'error' as const, - map_name: 'map_name' as const, - match_start_time: 'match_start_time' as const, - share_code: 'share_code' as const, - status: 'status' as const, - updated_at: 'updated_at' as const, - valve_match_id: 'valve_match_id' as const -} - -export const enumPlayerAimStatsDemoConstraint = { - player_aim_stats_demo_pkey: 'player_aim_stats_demo_pkey' as const -} - -export const enumPlayerAimStatsDemoSelectColumn = { - attacker_steam_id: 'attacker_steam_id' as const, - counter_strafe_eligible_shots: 'counter_strafe_eligible_shots' as const, - counter_strafed_shots: 'counter_strafed_shots' as const, - crosshair_angle_count: 'crosshair_angle_count' as const, - crosshair_angle_sum_deg: 'crosshair_angle_sum_deg' as const, - first_bullet_hits: 'first_bullet_hits' as const, - first_bullet_shots: 'first_bullet_shots' as const, - headshot_hits: 'headshot_hits' as const, - hits: 'hits' as const, - hits_at_spotted: 'hits_at_spotted' as const, - match_id: 'match_id' as const, - match_map_id: 'match_map_id' as const, - non_awp_hits: 'non_awp_hits' as const, - on_target_frames: 'on_target_frames' as const, - shots_at_spotted: 'shots_at_spotted' as const, - spray_hits: 'spray_hits' as const, - spray_shots: 'spray_shots' as const, - time_to_damage_count: 'time_to_damage_count' as const, - time_to_damage_sum_s: 'time_to_damage_sum_s' as const, - total_engagement_frames: 'total_engagement_frames' as const -} - -export const enumPlayerAimStatsDemoUpdateColumn = { - attacker_steam_id: 'attacker_steam_id' as const, - counter_strafe_eligible_shots: 'counter_strafe_eligible_shots' as const, - counter_strafed_shots: 'counter_strafed_shots' as const, - crosshair_angle_count: 'crosshair_angle_count' as const, - crosshair_angle_sum_deg: 'crosshair_angle_sum_deg' as const, - first_bullet_hits: 'first_bullet_hits' as const, - first_bullet_shots: 'first_bullet_shots' as const, - headshot_hits: 'headshot_hits' as const, - hits: 'hits' as const, - hits_at_spotted: 'hits_at_spotted' as const, - match_id: 'match_id' as const, - match_map_id: 'match_map_id' as const, - non_awp_hits: 'non_awp_hits' as const, - on_target_frames: 'on_target_frames' as const, - shots_at_spotted: 'shots_at_spotted' as const, - spray_hits: 'spray_hits' as const, - spray_shots: 'spray_shots' as const, - time_to_damage_count: 'time_to_damage_count' as const, - time_to_damage_sum_s: 'time_to_damage_sum_s' as const, - total_engagement_frames: 'total_engagement_frames' as const -} - -export const enumPlayerAimWeaponStatsConstraint = { - player_aim_weapon_stats_pkey: 'player_aim_weapon_stats_pkey' as const -} - -export const enumPlayerAimWeaponStatsSelectColumn = { - first_bullet_hits: 'first_bullet_hits' as const, - first_bullet_shots: 'first_bullet_shots' as const, - hits: 'hits' as const, - hits_spotted: 'hits_spotted' as const, - match_id: 'match_id' as const, - match_map_id: 'match_map_id' as const, - shots: 'shots' as const, - shots_spotted: 'shots_spotted' as const, - steam_id: 'steam_id' as const, - weapon_class: 'weapon_class' as const -} - -export const enumPlayerAimWeaponStatsUpdateColumn = { - first_bullet_hits: 'first_bullet_hits' as const, - first_bullet_shots: 'first_bullet_shots' as const, - hits: 'hits' as const, - hits_spotted: 'hits_spotted' as const, - match_id: 'match_id' as const, - match_map_id: 'match_map_id' as const, - shots: 'shots' as const, - shots_spotted: 'shots_spotted' as const, - steam_id: 'steam_id' as const, - weapon_class: 'weapon_class' as const -} - -export const enumPlayerAssistsConstraint = { - player_assists_pkey: 'player_assists_pkey' as const -} - -export const enumPlayerAssistsSelectColumn = { - attacked_steam_id: 'attacked_steam_id' as const, - attacked_team: 'attacked_team' as const, - attacker_steam_id: 'attacker_steam_id' as const, - attacker_team: 'attacker_team' as const, - deleted_at: 'deleted_at' as const, - flash: 'flash' as const, - match_id: 'match_id' as const, - match_map_id: 'match_map_id' as const, - round: 'round' as const, - time: 'time' as const -} - -export const enumPlayerAssistsSelectColumnPlayerAssistsAggregateBoolExpBoolAndArgumentsColumns = { - flash: 'flash' as const -} - -export const enumPlayerAssistsSelectColumnPlayerAssistsAggregateBoolExpBoolOrArgumentsColumns = { - flash: 'flash' as const -} - -export const enumPlayerAssistsUpdateColumn = { - attacked_steam_id: 'attacked_steam_id' as const, - attacked_team: 'attacked_team' as const, - attacker_steam_id: 'attacker_steam_id' as const, - attacker_team: 'attacker_team' as const, - deleted_at: 'deleted_at' as const, - flash: 'flash' as const, - match_id: 'match_id' as const, - match_map_id: 'match_map_id' as const, - round: 'round' as const, - time: 'time' as const -} - -export const enumPlayerCareerStatsVSelectColumn = { - accuracy: 'accuracy' as const, - accuracy_spotted: 'accuracy_spotted' as const, - counter_strafe_pct: 'counter_strafe_pct' as const, - crosshair_deg: 'crosshair_deg' as const, - enemy_blind_pr: 'enemy_blind_pr' as const, - flash_assists_pr: 'flash_assists_pr' as const, - hs_pct: 'hs_pct' as const, - kast_pct: 'kast_pct' as const, - maps: 'maps' as const, - premier_rank: 'premier_rank' as const, - rounds: 'rounds' as const, - steam_id: 'steam_id' as const, - survival_pct: 'survival_pct' as const, - time_to_damage_s: 'time_to_damage_s' as const, - traded_death_pct: 'traded_death_pct' as const, - util_efficiency: 'util_efficiency' as const -} - -export const enumPlayerDamagesConstraint = { - player_damages_pkey: 'player_damages_pkey' as const -} - -export const enumPlayerDamagesSelectColumn = { - armor: 'armor' as const, - attacked_location: 'attacked_location' as const, - attacked_location_coordinates: 'attacked_location_coordinates' as const, - attacked_steam_id: 'attacked_steam_id' as const, - attacked_team: 'attacked_team' as const, - attacker_location: 'attacker_location' as const, - attacker_location_coordinates: 'attacker_location_coordinates' as const, - attacker_steam_id: 'attacker_steam_id' as const, - attacker_team: 'attacker_team' as const, - damage: 'damage' as const, - damage_armor: 'damage_armor' as const, - deleted_at: 'deleted_at' as const, - health: 'health' as const, - hitgroup: 'hitgroup' as const, - id: 'id' as const, - match_id: 'match_id' as const, - match_map_id: 'match_map_id' as const, - round: 'round' as const, - time: 'time' as const, - with: 'with' as const -} - -export const enumPlayerDamagesUpdateColumn = { - armor: 'armor' as const, - attacked_location: 'attacked_location' as const, - attacked_location_coordinates: 'attacked_location_coordinates' as const, - attacked_steam_id: 'attacked_steam_id' as const, - attacked_team: 'attacked_team' as const, - attacker_location: 'attacker_location' as const, - attacker_location_coordinates: 'attacker_location_coordinates' as const, - attacker_steam_id: 'attacker_steam_id' as const, - attacker_team: 'attacker_team' as const, - damage: 'damage' as const, - damage_armor: 'damage_armor' as const, - deleted_at: 'deleted_at' as const, - health: 'health' as const, - hitgroup: 'hitgroup' as const, - id: 'id' as const, - match_id: 'match_id' as const, - match_map_id: 'match_map_id' as const, - round: 'round' as const, - time: 'time' as const, - with: 'with' as const -} - -export const enumPlayerEloConstraint = { - player_elo_pkey: 'player_elo_pkey' as const -} - -export const enumPlayerEloSelectColumn = { - actual_score: 'actual_score' as const, - assists: 'assists' as const, - change: 'change' as const, - created_at: 'created_at' as const, - current: 'current' as const, - damage: 'damage' as const, - damage_percent: 'damage_percent' as const, - deaths: 'deaths' as const, - expected_score: 'expected_score' as const, - impact: 'impact' as const, - k_factor: 'k_factor' as const, - kda: 'kda' as const, - kills: 'kills' as const, - map_losses: 'map_losses' as const, - map_wins: 'map_wins' as const, - match_id: 'match_id' as const, - opponent_team_elo_avg: 'opponent_team_elo_avg' as const, - performance_multiplier: 'performance_multiplier' as const, - player_team_elo_avg: 'player_team_elo_avg' as const, - rating_for_expected: 'rating_for_expected' as const, - season_id: 'season_id' as const, - series_multiplier: 'series_multiplier' as const, - steam_id: 'steam_id' as const, - team_avg_kda: 'team_avg_kda' as const, - type: 'type' as const -} - -export const enumPlayerEloUpdateColumn = { - actual_score: 'actual_score' as const, - assists: 'assists' as const, - change: 'change' as const, - created_at: 'created_at' as const, - current: 'current' as const, - damage: 'damage' as const, - damage_percent: 'damage_percent' as const, - deaths: 'deaths' as const, - expected_score: 'expected_score' as const, - impact: 'impact' as const, - k_factor: 'k_factor' as const, - kda: 'kda' as const, - kills: 'kills' as const, - map_losses: 'map_losses' as const, - map_wins: 'map_wins' as const, - match_id: 'match_id' as const, - opponent_team_elo_avg: 'opponent_team_elo_avg' as const, - performance_multiplier: 'performance_multiplier' as const, - player_team_elo_avg: 'player_team_elo_avg' as const, - rating_for_expected: 'rating_for_expected' as const, - season_id: 'season_id' as const, - series_multiplier: 'series_multiplier' as const, - steam_id: 'steam_id' as const, - team_avg_kda: 'team_avg_kda' as const, - type: 'type' as const -} - -export const enumPlayerFaceitRankHistoryConstraint = { - player_faceit_rank_history_pkey: 'player_faceit_rank_history_pkey' as const, - uq_player_faceit_rank_history_steam_match: 'uq_player_faceit_rank_history_steam_match' as const -} - -export const enumPlayerFaceitRankHistorySelectColumn = { - elo: 'elo' as const, - id: 'id' as const, - match_id: 'match_id' as const, - observed_at: 'observed_at' as const, - previous_rank: 'previous_rank' as const, - skill_level: 'skill_level' as const, - steam_id: 'steam_id' as const -} - -export const enumPlayerFaceitRankHistoryUpdateColumn = { - elo: 'elo' as const, - id: 'id' as const, - match_id: 'match_id' as const, - observed_at: 'observed_at' as const, - previous_rank: 'previous_rank' as const, - skill_level: 'skill_level' as const, - steam_id: 'steam_id' as const -} - -export const enumPlayerFlashesConstraint = { - player_flashes_pkey: 'player_flashes_pkey' as const -} - -export const enumPlayerFlashesSelectColumn = { - attacked_steam_id: 'attacked_steam_id' as const, - attacker_steam_id: 'attacker_steam_id' as const, - deleted_at: 'deleted_at' as const, - duration: 'duration' as const, - match_id: 'match_id' as const, - match_map_id: 'match_map_id' as const, - round: 'round' as const, - team_flash: 'team_flash' as const, - time: 'time' as const -} - -export const enumPlayerFlashesSelectColumnPlayerFlashesAggregateBoolExpBoolAndArgumentsColumns = { - team_flash: 'team_flash' as const -} - -export const enumPlayerFlashesSelectColumnPlayerFlashesAggregateBoolExpBoolOrArgumentsColumns = { - team_flash: 'team_flash' as const -} - -export const enumPlayerFlashesUpdateColumn = { - attacked_steam_id: 'attacked_steam_id' as const, - attacker_steam_id: 'attacker_steam_id' as const, - deleted_at: 'deleted_at' as const, - duration: 'duration' as const, - match_id: 'match_id' as const, - match_map_id: 'match_map_id' as const, - round: 'round' as const, - team_flash: 'team_flash' as const, - time: 'time' as const -} - -export const enumPlayerKillsByWeaponConstraint = { - player_kills_by_weapon_pkey: 'player_kills_by_weapon_pkey' as const -} - -export const enumPlayerKillsByWeaponSelectColumn = { - kill_count: 'kill_count' as const, - player_steam_id: 'player_steam_id' as const, - with: 'with' as const -} - -export const enumPlayerKillsByWeaponUpdateColumn = { - kill_count: 'kill_count' as const, - player_steam_id: 'player_steam_id' as const, - with: 'with' as const -} - -export const enumPlayerKillsConstraint = { - player_kills_pkey: 'player_kills_pkey' as const -} - -export const enumPlayerKillsSelectColumn = { - assisted: 'assisted' as const, - attacked_location: 'attacked_location' as const, - attacked_location_coordinates: 'attacked_location_coordinates' as const, - attacked_steam_id: 'attacked_steam_id' as const, - attacked_team: 'attacked_team' as const, - attacker_location: 'attacker_location' as const, - attacker_location_coordinates: 'attacker_location_coordinates' as const, - attacker_steam_id: 'attacker_steam_id' as const, - attacker_team: 'attacker_team' as const, - blinded: 'blinded' as const, - deleted_at: 'deleted_at' as const, - headshot: 'headshot' as const, - hitgroup: 'hitgroup' as const, - in_air: 'in_air' as const, - match_id: 'match_id' as const, - match_map_id: 'match_map_id' as const, - no_scope: 'no_scope' as const, - round: 'round' as const, - thru_smoke: 'thru_smoke' as const, - thru_wall: 'thru_wall' as const, - time: 'time' as const, - with: 'with' as const -} - -export const enumPlayerKillsSelectColumnPlayerKillsAggregateBoolExpBoolAndArgumentsColumns = { - assisted: 'assisted' as const, - blinded: 'blinded' as const, - headshot: 'headshot' as const, - in_air: 'in_air' as const, - no_scope: 'no_scope' as const, - thru_smoke: 'thru_smoke' as const, - thru_wall: 'thru_wall' as const -} - -export const enumPlayerKillsSelectColumnPlayerKillsAggregateBoolExpBoolOrArgumentsColumns = { - assisted: 'assisted' as const, - blinded: 'blinded' as const, - headshot: 'headshot' as const, - in_air: 'in_air' as const, - no_scope: 'no_scope' as const, - thru_smoke: 'thru_smoke' as const, - thru_wall: 'thru_wall' as const -} - -export const enumPlayerKillsUpdateColumn = { - assisted: 'assisted' as const, - attacked_location: 'attacked_location' as const, - attacked_location_coordinates: 'attacked_location_coordinates' as const, - attacked_steam_id: 'attacked_steam_id' as const, - attacked_team: 'attacked_team' as const, - attacker_location: 'attacker_location' as const, - attacker_location_coordinates: 'attacker_location_coordinates' as const, - attacker_steam_id: 'attacker_steam_id' as const, - attacker_team: 'attacker_team' as const, - blinded: 'blinded' as const, - deleted_at: 'deleted_at' as const, - headshot: 'headshot' as const, - hitgroup: 'hitgroup' as const, - in_air: 'in_air' as const, - match_id: 'match_id' as const, - match_map_id: 'match_map_id' as const, - no_scope: 'no_scope' as const, - round: 'round' as const, - thru_smoke: 'thru_smoke' as const, - thru_wall: 'thru_wall' as const, - time: 'time' as const, - with: 'with' as const -} - -export const enumPlayerLeaderboardRankSelectColumn = { - player_steam_id: 'player_steam_id' as const, - rank: 'rank' as const, - total: 'total' as const, - value: 'value' as const -} - -export const enumPlayerMatchMapStatsConstraint = { - player_match_map_stats_pkey: 'player_match_map_stats_pkey' as const -} - -export const enumPlayerMatchMapStatsSelectColumn = { - assists: 'assists' as const, - assists_ct: 'assists_ct' as const, - assists_t: 'assists_t' as const, - counter_strafe_eligible_shots: 'counter_strafe_eligible_shots' as const, - counter_strafed_shots: 'counter_strafed_shots' as const, - crosshair_angle_count: 'crosshair_angle_count' as const, - crosshair_angle_sum_deg: 'crosshair_angle_sum_deg' as const, - damage: 'damage' as const, - damage_ct: 'damage_ct' as const, - damage_t: 'damage_t' as const, - deaths: 'deaths' as const, - deaths_ct: 'deaths_ct' as const, - deaths_t: 'deaths_t' as const, - decoy_throws: 'decoy_throws' as const, - enemies_flashed: 'enemies_flashed' as const, - first_bullet_hits: 'first_bullet_hits' as const, - first_bullet_shots: 'first_bullet_shots' as const, - five_kill_rounds: 'five_kill_rounds' as const, - flash_assists: 'flash_assists' as const, - flash_duration_count: 'flash_duration_count' as const, - flash_duration_sum: 'flash_duration_sum' as const, - flashes_thrown: 'flashes_thrown' as const, - four_kill_rounds: 'four_kill_rounds' as const, - he_damage: 'he_damage' as const, - he_team_damage: 'he_team_damage' as const, - he_throws: 'he_throws' as const, - headshot_hits: 'headshot_hits' as const, - hits: 'hits' as const, - hits_at_spotted: 'hits_at_spotted' as const, - hs_kills: 'hs_kills' as const, - hs_kills_ct: 'hs_kills_ct' as const, - hs_kills_t: 'hs_kills_t' as const, - kast_rounds: 'kast_rounds' as const, - kast_total_rounds: 'kast_total_rounds' as const, - kills: 'kills' as const, - kills_ct: 'kills_ct' as const, - kills_t: 'kills_t' as const, - knife_kills: 'knife_kills' as const, - match_id: 'match_id' as const, - match_map_id: 'match_map_id' as const, - molotov_damage: 'molotov_damage' as const, - molotov_throws: 'molotov_throws' as const, - non_awp_hits: 'non_awp_hits' as const, - on_target_frames: 'on_target_frames' as const, - rounds_ct: 'rounds_ct' as const, - rounds_played: 'rounds_played' as const, - rounds_t: 'rounds_t' as const, - shots_at_spotted: 'shots_at_spotted' as const, - shots_fired: 'shots_fired' as const, - smoke_throws: 'smoke_throws' as const, - spotted_count: 'spotted_count' as const, - spotted_with_damage_count: 'spotted_with_damage_count' as const, - spray_hits: 'spray_hits' as const, - spray_shots: 'spray_shots' as const, - steam_id: 'steam_id' as const, - team_damage: 'team_damage' as const, - team_flashed: 'team_flashed' as const, - three_kill_rounds: 'three_kill_rounds' as const, - time_to_damage_count: 'time_to_damage_count' as const, - time_to_damage_sum_s: 'time_to_damage_sum_s' as const, - total_engagement_frames: 'total_engagement_frames' as const, - trade_kill_attempts: 'trade_kill_attempts' as const, - trade_kill_opportunities: 'trade_kill_opportunities' as const, - trade_kill_successes: 'trade_kill_successes' as const, - traded_death_attempts: 'traded_death_attempts' as const, - traded_death_opportunities: 'traded_death_opportunities' as const, - traded_death_successes: 'traded_death_successes' as const, - two_kill_rounds: 'two_kill_rounds' as const, - unused_utility_value: 'unused_utility_value' as const, - updated_at: 'updated_at' as const, - util_on_death_count: 'util_on_death_count' as const, - util_on_death_sum: 'util_on_death_sum' as const, - wasted_magazine_shots: 'wasted_magazine_shots' as const, - zeus_kills: 'zeus_kills' as const -} - -export const enumPlayerMatchMapStatsUpdateColumn = { - assists: 'assists' as const, - assists_ct: 'assists_ct' as const, - assists_t: 'assists_t' as const, - counter_strafe_eligible_shots: 'counter_strafe_eligible_shots' as const, - counter_strafed_shots: 'counter_strafed_shots' as const, - crosshair_angle_count: 'crosshair_angle_count' as const, - crosshair_angle_sum_deg: 'crosshair_angle_sum_deg' as const, - damage: 'damage' as const, - damage_ct: 'damage_ct' as const, - damage_t: 'damage_t' as const, - deaths: 'deaths' as const, - deaths_ct: 'deaths_ct' as const, - deaths_t: 'deaths_t' as const, - decoy_throws: 'decoy_throws' as const, - enemies_flashed: 'enemies_flashed' as const, - first_bullet_hits: 'first_bullet_hits' as const, - first_bullet_shots: 'first_bullet_shots' as const, - five_kill_rounds: 'five_kill_rounds' as const, - flash_assists: 'flash_assists' as const, - flash_duration_count: 'flash_duration_count' as const, - flash_duration_sum: 'flash_duration_sum' as const, - flashes_thrown: 'flashes_thrown' as const, - four_kill_rounds: 'four_kill_rounds' as const, - he_damage: 'he_damage' as const, - he_team_damage: 'he_team_damage' as const, - he_throws: 'he_throws' as const, - headshot_hits: 'headshot_hits' as const, - hits: 'hits' as const, - hits_at_spotted: 'hits_at_spotted' as const, - hs_kills: 'hs_kills' as const, - hs_kills_ct: 'hs_kills_ct' as const, - hs_kills_t: 'hs_kills_t' as const, - kast_rounds: 'kast_rounds' as const, - kast_total_rounds: 'kast_total_rounds' as const, - kills: 'kills' as const, - kills_ct: 'kills_ct' as const, - kills_t: 'kills_t' as const, - knife_kills: 'knife_kills' as const, - match_id: 'match_id' as const, - match_map_id: 'match_map_id' as const, - molotov_damage: 'molotov_damage' as const, - molotov_throws: 'molotov_throws' as const, - non_awp_hits: 'non_awp_hits' as const, - on_target_frames: 'on_target_frames' as const, - rounds_ct: 'rounds_ct' as const, - rounds_played: 'rounds_played' as const, - rounds_t: 'rounds_t' as const, - shots_at_spotted: 'shots_at_spotted' as const, - shots_fired: 'shots_fired' as const, - smoke_throws: 'smoke_throws' as const, - spotted_count: 'spotted_count' as const, - spotted_with_damage_count: 'spotted_with_damage_count' as const, - spray_hits: 'spray_hits' as const, - spray_shots: 'spray_shots' as const, - steam_id: 'steam_id' as const, - team_damage: 'team_damage' as const, - team_flashed: 'team_flashed' as const, - three_kill_rounds: 'three_kill_rounds' as const, - time_to_damage_count: 'time_to_damage_count' as const, - time_to_damage_sum_s: 'time_to_damage_sum_s' as const, - total_engagement_frames: 'total_engagement_frames' as const, - trade_kill_attempts: 'trade_kill_attempts' as const, - trade_kill_opportunities: 'trade_kill_opportunities' as const, - trade_kill_successes: 'trade_kill_successes' as const, - traded_death_attempts: 'traded_death_attempts' as const, - traded_death_opportunities: 'traded_death_opportunities' as const, - traded_death_successes: 'traded_death_successes' as const, - two_kill_rounds: 'two_kill_rounds' as const, - unused_utility_value: 'unused_utility_value' as const, - updated_at: 'updated_at' as const, - util_on_death_count: 'util_on_death_count' as const, - util_on_death_sum: 'util_on_death_sum' as const, - wasted_magazine_shots: 'wasted_magazine_shots' as const, - zeus_kills: 'zeus_kills' as const -} - -export const enumPlayerMatchPerformanceVSelectColumn = { - accuracy: 'accuracy' as const, - accuracy_spotted: 'accuracy_spotted' as const, - aim_rating: 'aim_rating' as const, - counter_strafe_pct: 'counter_strafe_pct' as const, - enemy_blind_pr: 'enemy_blind_pr' as const, - flash_assists_pr: 'flash_assists_pr' as const, - hs_pct: 'hs_pct' as const, - kast_pct: 'kast_pct' as const, - match_id: 'match_id' as const, - overall_rating: 'overall_rating' as const, - played_at: 'played_at' as const, - positioning_rating: 'positioning_rating' as const, - rounds: 'rounds' as const, - source: 'source' as const, - steam_id: 'steam_id' as const, - survival_pct: 'survival_pct' as const, - traded_death_pct: 'traded_death_pct' as const, - util_efficiency: 'util_efficiency' as const, - utility_rating: 'utility_rating' as const -} - -export const enumPlayerMatchStatsVSelectColumn = { - assists: 'assists' as const, - assists_ct: 'assists_ct' as const, - assists_t: 'assists_t' as const, - avg_crosshair_angle_deg: 'avg_crosshair_angle_deg' as const, - avg_flash_duration: 'avg_flash_duration' as const, - avg_time_to_damage_s: 'avg_time_to_damage_s' as const, - counter_strafe_eligible_shots: 'counter_strafe_eligible_shots' as const, - counter_strafed_shots: 'counter_strafed_shots' as const, - damage: 'damage' as const, - damage_ct: 'damage_ct' as const, - damage_t: 'damage_t' as const, - deaths: 'deaths' as const, - deaths_ct: 'deaths_ct' as const, - deaths_t: 'deaths_t' as const, - decoy_throws: 'decoy_throws' as const, - enemies_flashed: 'enemies_flashed' as const, - first_bullet_hits: 'first_bullet_hits' as const, - first_bullet_shots: 'first_bullet_shots' as const, - five_kill_rounds: 'five_kill_rounds' as const, - flash_assists: 'flash_assists' as const, - flashes_thrown: 'flashes_thrown' as const, - four_kill_rounds: 'four_kill_rounds' as const, - he_damage: 'he_damage' as const, - he_team_damage: 'he_team_damage' as const, - he_throws: 'he_throws' as const, - headshot_hits: 'headshot_hits' as const, - hits: 'hits' as const, - hits_at_spotted: 'hits_at_spotted' as const, - hs_kills: 'hs_kills' as const, - hs_kills_ct: 'hs_kills_ct' as const, - hs_kills_t: 'hs_kills_t' as const, - kills: 'kills' as const, - kills_ct: 'kills_ct' as const, - kills_t: 'kills_t' as const, - knife_kills: 'knife_kills' as const, - match_id: 'match_id' as const, - molotov_damage: 'molotov_damage' as const, - molotov_throws: 'molotov_throws' as const, - non_awp_hits: 'non_awp_hits' as const, - on_target_frames: 'on_target_frames' as const, - rounds_ct: 'rounds_ct' as const, - rounds_played: 'rounds_played' as const, - rounds_t: 'rounds_t' as const, - shots_at_spotted: 'shots_at_spotted' as const, - shots_fired: 'shots_fired' as const, - smoke_throws: 'smoke_throws' as const, - spotted_count: 'spotted_count' as const, - spotted_with_damage_count: 'spotted_with_damage_count' as const, - spray_hits: 'spray_hits' as const, - spray_shots: 'spray_shots' as const, - steam_id: 'steam_id' as const, - team_damage: 'team_damage' as const, - team_flashed: 'team_flashed' as const, - three_kill_rounds: 'three_kill_rounds' as const, - total_engagement_frames: 'total_engagement_frames' as const, - trade_kill_attempts: 'trade_kill_attempts' as const, - trade_kill_opportunities: 'trade_kill_opportunities' as const, - trade_kill_successes: 'trade_kill_successes' as const, - traded_death_attempts: 'traded_death_attempts' as const, - traded_death_opportunities: 'traded_death_opportunities' as const, - traded_death_successes: 'traded_death_successes' as const, - two_kill_rounds: 'two_kill_rounds' as const, - unused_utility_value: 'unused_utility_value' as const, - utility_on_death: 'utility_on_death' as const, - wasted_magazine_shots: 'wasted_magazine_shots' as const, - zeus_kills: 'zeus_kills' as const -} - -export const enumPlayerObjectivesConstraint = { - player_objectives_pkey: 'player_objectives_pkey' as const -} - -export const enumPlayerObjectivesSelectColumn = { - deleted_at: 'deleted_at' as const, - match_id: 'match_id' as const, - match_map_id: 'match_map_id' as const, - player_steam_id: 'player_steam_id' as const, - round: 'round' as const, - time: 'time' as const, - type: 'type' as const -} - -export const enumPlayerObjectivesUpdateColumn = { - deleted_at: 'deleted_at' as const, - match_id: 'match_id' as const, - match_map_id: 'match_map_id' as const, - player_steam_id: 'player_steam_id' as const, - round: 'round' as const, - time: 'time' as const, - type: 'type' as const -} - -export const enumPlayerPerformanceVSelectColumn = { - accuracy_score: 'accuracy_score' as const, - aim_goal: 'aim_goal' as const, - aim_rating: 'aim_rating' as const, - band: 'band' as const, - band_sample: 'band_sample' as const, - blind_score: 'blind_score' as const, - counter_strafe_score: 'counter_strafe_score' as const, - crosshair_score: 'crosshair_score' as const, - flash_assists_score: 'flash_assists_score' as const, - hs_score: 'hs_score' as const, - kast_score: 'kast_score' as const, - maps: 'maps' as const, - positioning_goal: 'positioning_goal' as const, - positioning_rating: 'positioning_rating' as const, - premier_rank: 'premier_rank' as const, - rounds: 'rounds' as const, - spotted_score: 'spotted_score' as const, - steam_id: 'steam_id' as const, - survival_score: 'survival_score' as const, - traded_score: 'traded_score' as const, - ttd_score: 'ttd_score' as const, - util_eff_score: 'util_eff_score' as const, - utility_goal: 'utility_goal' as const, - utility_rating: 'utility_rating' as const -} - -export const enumPlayerPremierRankHistoryConstraint = { - player_premier_rank_history_pkey: 'player_premier_rank_history_pkey' as const, - uq_player_premier_rank_history_steam_match_type: 'uq_player_premier_rank_history_steam_match_type' as const -} - -export const enumPlayerPremierRankHistorySelectColumn = { - id: 'id' as const, - map_id: 'map_id' as const, - match_id: 'match_id' as const, - observed_at: 'observed_at' as const, - previous_rank: 'previous_rank' as const, - rank: 'rank' as const, - rank_type: 'rank_type' as const, - steam_id: 'steam_id' as const -} - -export const enumPlayerPremierRankHistoryUpdateColumn = { - id: 'id' as const, - map_id: 'map_id' as const, - match_id: 'match_id' as const, - observed_at: 'observed_at' as const, - previous_rank: 'previous_rank' as const, - rank: 'rank' as const, - rank_type: 'rank_type' as const, - steam_id: 'steam_id' as const -} - -export const enumPlayerSanctionsConstraint = { - player_sanctions_pkey: 'player_sanctions_pkey' as const -} - -export const enumPlayerSanctionsSelectColumn = { - created_at: 'created_at' as const, - deleted_at: 'deleted_at' as const, - id: 'id' as const, - player_steam_id: 'player_steam_id' as const, - reason: 'reason' as const, - remove_sanction_date: 'remove_sanction_date' as const, - sanctioned_by_steam_id: 'sanctioned_by_steam_id' as const, - type: 'type' as const -} - -export const enumPlayerSanctionsUpdateColumn = { - created_at: 'created_at' as const, - deleted_at: 'deleted_at' as const, - id: 'id' as const, - player_steam_id: 'player_steam_id' as const, - reason: 'reason' as const, - remove_sanction_date: 'remove_sanction_date' as const, - sanctioned_by_steam_id: 'sanctioned_by_steam_id' as const, - type: 'type' as const -} - -export const enumPlayerSeasonStatsConstraint = { - player_season_stats_pkey: 'player_season_stats_pkey' as const -} - -export const enumPlayerSeasonStatsSelectColumn = { - assists: 'assists' as const, - deaths: 'deaths' as const, - headshot_percentage: 'headshot_percentage' as const, - headshots: 'headshots' as const, - kills: 'kills' as const, - player_steam_id: 'player_steam_id' as const, - season_id: 'season_id' as const -} - -export const enumPlayerSeasonStatsSelectColumnPlayerSeasonStatsAggregateBoolExpAvgArgumentsColumns = { - headshot_percentage: 'headshot_percentage' as const -} - -export const enumPlayerSeasonStatsSelectColumnPlayerSeasonStatsAggregateBoolExpCorrArgumentsColumns = { - headshot_percentage: 'headshot_percentage' as const -} - -export const enumPlayerSeasonStatsSelectColumnPlayerSeasonStatsAggregateBoolExpCovarSampArgumentsColumns = { - headshot_percentage: 'headshot_percentage' as const -} - -export const enumPlayerSeasonStatsSelectColumnPlayerSeasonStatsAggregateBoolExpMaxArgumentsColumns = { - headshot_percentage: 'headshot_percentage' as const -} - -export const enumPlayerSeasonStatsSelectColumnPlayerSeasonStatsAggregateBoolExpMinArgumentsColumns = { - headshot_percentage: 'headshot_percentage' as const -} - -export const enumPlayerSeasonStatsSelectColumnPlayerSeasonStatsAggregateBoolExpStddevSampArgumentsColumns = { - headshot_percentage: 'headshot_percentage' as const -} - -export const enumPlayerSeasonStatsSelectColumnPlayerSeasonStatsAggregateBoolExpSumArgumentsColumns = { - headshot_percentage: 'headshot_percentage' as const -} - -export const enumPlayerSeasonStatsSelectColumnPlayerSeasonStatsAggregateBoolExpVarSampArgumentsColumns = { - headshot_percentage: 'headshot_percentage' as const -} - -export const enumPlayerSeasonStatsUpdateColumn = { - assists: 'assists' as const, - deaths: 'deaths' as const, - headshot_percentage: 'headshot_percentage' as const, - headshots: 'headshots' as const, - kills: 'kills' as const, - player_steam_id: 'player_steam_id' as const, - season_id: 'season_id' as const -} - -export const enumPlayerStatsConstraint = { - player_stats_pkey: 'player_stats_pkey' as const -} - -export const enumPlayerStatsSelectColumn = { - assists: 'assists' as const, - deaths: 'deaths' as const, - headshot_percentage: 'headshot_percentage' as const, - headshots: 'headshots' as const, - kills: 'kills' as const, - player_steam_id: 'player_steam_id' as const -} - -export const enumPlayerStatsUpdateColumn = { - assists: 'assists' as const, - deaths: 'deaths' as const, - headshot_percentage: 'headshot_percentage' as const, - headshots: 'headshots' as const, - kills: 'kills' as const, - player_steam_id: 'player_steam_id' as const -} - -export const enumPlayerSteamBotFriendConstraint = { - player_steam_bot_friend_pkey: 'player_steam_bot_friend_pkey' as const -} - -export const enumPlayerSteamBotFriendSelectColumn = { - bot_steam_account_id: 'bot_steam_account_id' as const, - bot_steamid64: 'bot_steamid64' as const, - created_at: 'created_at' as const, - friended_at: 'friended_at' as const, - last_presence_state: 'last_presence_state' as const, - status: 'status' as const, - steam_id: 'steam_id' as const, - updated_at: 'updated_at' as const -} - -export const enumPlayerSteamBotFriendUpdateColumn = { - bot_steam_account_id: 'bot_steam_account_id' as const, - bot_steamid64: 'bot_steamid64' as const, - created_at: 'created_at' as const, - friended_at: 'friended_at' as const, - last_presence_state: 'last_presence_state' as const, - status: 'status' as const, - steam_id: 'steam_id' as const, - updated_at: 'updated_at' as const -} - -export const enumPlayerSteamMatchAuthConstraint = { - player_steam_match_auth_pkey: 'player_steam_match_auth_pkey' as const -} - -export const enumPlayerSteamMatchAuthSelectColumn = { - auth_code: 'auth_code' as const, - created_at: 'created_at' as const, - last_error: 'last_error' as const, - last_known_share_code: 'last_known_share_code' as const, - last_polled_at: 'last_polled_at' as const, - steam_id: 'steam_id' as const, - updated_at: 'updated_at' as const -} - -export const enumPlayerSteamMatchAuthUpdateColumn = { - auth_code: 'auth_code' as const, - created_at: 'created_at' as const, - last_error: 'last_error' as const, - last_known_share_code: 'last_known_share_code' as const, - last_polled_at: 'last_polled_at' as const, - steam_id: 'steam_id' as const, - updated_at: 'updated_at' as const -} - -export const enumPlayerUnusedUtilityConstraint = { - player_unused_utility_pkey: 'player_unused_utility_pkey' as const -} - -export const enumPlayerUnusedUtilitySelectColumn = { - deleted_at: 'deleted_at' as const, - match_id: 'match_id' as const, - match_map_id: 'match_map_id' as const, - player_steam_id: 'player_steam_id' as const, - round: 'round' as const, - unused: 'unused' as const -} - -export const enumPlayerUnusedUtilityUpdateColumn = { - deleted_at: 'deleted_at' as const, - match_id: 'match_id' as const, - match_map_id: 'match_map_id' as const, - player_steam_id: 'player_steam_id' as const, - round: 'round' as const, - unused: 'unused' as const -} - -export const enumPlayerUtilityConstraint = { - player_utility_pkey: 'player_utility_pkey' as const -} - -export const enumPlayerUtilitySelectColumn = { - attacker_location_coordinates: 'attacker_location_coordinates' as const, - attacker_steam_id: 'attacker_steam_id' as const, - deleted_at: 'deleted_at' as const, - match_id: 'match_id' as const, - match_map_id: 'match_map_id' as const, - round: 'round' as const, - time: 'time' as const, - type: 'type' as const -} - -export const enumPlayerUtilityUpdateColumn = { - attacker_location_coordinates: 'attacker_location_coordinates' as const, - attacker_steam_id: 'attacker_steam_id' as const, - deleted_at: 'deleted_at' as const, - match_id: 'match_id' as const, - match_map_id: 'match_map_id' as const, - round: 'round' as const, - time: 'time' as const, - type: 'type' as const -} - -export const enumPlayerWeaponStatsVSelectColumn = { - first_bullet_hits: 'first_bullet_hits' as const, - first_bullet_shots: 'first_bullet_shots' as const, - hits: 'hits' as const, - hits_spotted: 'hits_spotted' as const, - match_id: 'match_id' as const, - shots: 'shots' as const, - shots_spotted: 'shots_spotted' as const, - steam_id: 'steam_id' as const, - weapon_class: 'weapon_class' as const -} - -export const enumPlayersConstraint = { - players_discord_id_key: 'players_discord_id_key' as const, - players_pkey: 'players_pkey' as const, - players_steam_id_key: 'players_steam_id_key' as const -} - -export const enumPlayersSelectColumn = { - avatar_url: 'avatar_url' as const, - country: 'country' as const, - created_at: 'created_at' as const, - custom_avatar_url: 'custom_avatar_url' as const, - days_since_last_ban: 'days_since_last_ban' as const, - discord_id: 'discord_id' as const, - faceit_elo: 'faceit_elo' as const, - faceit_nickname: 'faceit_nickname' as const, - faceit_player_id: 'faceit_player_id' as const, - faceit_skill_level: 'faceit_skill_level' as const, - faceit_updated_at: 'faceit_updated_at' as const, - faceit_url: 'faceit_url' as const, - game_ban_count: 'game_ban_count' as const, - language: 'language' as const, - last_read_news_at: 'last_read_news_at' as const, - last_sign_in_at: 'last_sign_in_at' as const, - name: 'name' as const, - name_registered: 'name_registered' as const, - notification_timezone: 'notification_timezone' as const, - premier_rank: 'premier_rank' as const, - premier_rank_updated_at: 'premier_rank_updated_at' as const, - profile_url: 'profile_url' as const, - quiet_hours_end: 'quiet_hours_end' as const, - quiet_hours_start: 'quiet_hours_start' as const, - role: 'role' as const, - roster_image_url: 'roster_image_url' as const, - show_match_ready_modal: 'show_match_ready_modal' as const, - steam_bans_checked_at: 'steam_bans_checked_at' as const, - steam_id: 'steam_id' as const, - vac_ban_count: 'vac_ban_count' as const, - vac_banned: 'vac_banned' as const -} - -export const enumPlayersUpdateColumn = { - avatar_url: 'avatar_url' as const, - country: 'country' as const, - created_at: 'created_at' as const, - custom_avatar_url: 'custom_avatar_url' as const, - days_since_last_ban: 'days_since_last_ban' as const, - discord_id: 'discord_id' as const, - faceit_elo: 'faceit_elo' as const, - faceit_nickname: 'faceit_nickname' as const, - faceit_player_id: 'faceit_player_id' as const, - faceit_skill_level: 'faceit_skill_level' as const, - faceit_updated_at: 'faceit_updated_at' as const, - faceit_url: 'faceit_url' as const, - game_ban_count: 'game_ban_count' as const, - language: 'language' as const, - last_read_news_at: 'last_read_news_at' as const, - last_sign_in_at: 'last_sign_in_at' as const, - name: 'name' as const, - name_registered: 'name_registered' as const, - notification_timezone: 'notification_timezone' as const, - premier_rank: 'premier_rank' as const, - premier_rank_updated_at: 'premier_rank_updated_at' as const, - profile_url: 'profile_url' as const, - quiet_hours_end: 'quiet_hours_end' as const, - quiet_hours_start: 'quiet_hours_start' as const, - role: 'role' as const, - roster_image_url: 'roster_image_url' as const, - show_match_ready_modal: 'show_match_ready_modal' as const, - steam_bans_checked_at: 'steam_bans_checked_at' as const, - steam_id: 'steam_id' as const, - vac_ban_count: 'vac_ban_count' as const, - vac_banned: 'vac_banned' as const -} - -export const enumPluginVersionsConstraint = { - plugin_versions_pkey: 'plugin_versions_pkey' as const -} - -export const enumPluginVersionsSelectColumn = { - min_game_build_id: 'min_game_build_id' as const, - published_at: 'published_at' as const, - runtime: 'runtime' as const, - version: 'version' as const -} - -export const enumPluginVersionsUpdateColumn = { - min_game_build_id: 'min_game_build_id' as const, - published_at: 'published_at' as const, - runtime: 'runtime' as const, - version: 'version' as const -} - -export const enumPushSubscriptionsConstraint = { - push_subscriptions_endpoint_key: 'push_subscriptions_endpoint_key' as const, - push_subscriptions_pkey: 'push_subscriptions_pkey' as const -} - -export const enumPushSubscriptionsSelectColumn = { - auth: 'auth' as const, - created_at: 'created_at' as const, - endpoint: 'endpoint' as const, - id: 'id' as const, - last_used_at: 'last_used_at' as const, - p256dh: 'p256dh' as const, - steam_id: 'steam_id' as const, - user_agent: 'user_agent' as const -} - -export const enumPushSubscriptionsUpdateColumn = { - auth: 'auth' as const, - created_at: 'created_at' as const, - endpoint: 'endpoint' as const, - id: 'id' as const, - last_used_at: 'last_used_at' as const, - p256dh: 'p256dh' as const, - steam_id: 'steam_id' as const, - user_agent: 'user_agent' as const -} - -export const enumRolePermissionsSelectColumn = { - can_create_events: 'can_create_events' as const, - can_create_matches: 'can_create_matches' as const, - can_create_tournaments: 'can_create_tournaments' as const, - role: 'role' as const -} - -export const enumSeasonsConstraint = { - seasons_pkey: 'seasons_pkey' as const -} - -export const enumSeasonsSelectColumn = { - created_at: 'created_at' as const, - description: 'description' as const, - ends_at: 'ends_at' as const, - id: 'id' as const, - needs_rebuild: 'needs_rebuild' as const, - number: 'number' as const, - starts_at: 'starts_at' as const -} - -export const enumSeasonsUpdateColumn = { - created_at: 'created_at' as const, - description: 'description' as const, - ends_at: 'ends_at' as const, - id: 'id' as const, - needs_rebuild: 'needs_rebuild' as const, - number: 'number' as const, - starts_at: 'starts_at' as const -} - -export const enumServerRegionsConstraint = { - e_server_regions_pkey: 'e_server_regions_pkey' as const -} - -export const enumServerRegionsSelectColumn = { - description: 'description' as const, - is_lan: 'is_lan' as const, - steam_relay: 'steam_relay' as const, - value: 'value' as const -} - -export const enumServerRegionsUpdateColumn = { - description: 'description' as const, - is_lan: 'is_lan' as const, - steam_relay: 'steam_relay' as const, - value: 'value' as const -} - -export const enumServersConstraint = { - servers_pkey: 'servers_pkey' as const, - servers_reserved_by_match_id_key: 'servers_reserved_by_match_id_key' as const -} - -export const enumServersSelectColumn = { - api_password: 'api_password' as const, - boot_status: 'boot_status' as const, - boot_status_detail: 'boot_status_detail' as const, - connect_password: 'connect_password' as const, - 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, - region: 'region' as const, - reserved_by_match_id: 'reserved_by_match_id' as const, - steam_relay: 'steam_relay' as const, - tv_port: 'tv_port' as const, - type: 'type' as const, - updated_at: 'updated_at' as const -} - -export const enumServersSelectColumnServersAggregateBoolExpBoolAndArgumentsColumns = { - connected: 'connected' as const, - enabled: 'enabled' as const, - is_dedicated: 'is_dedicated' as const, - rcon_status: 'rcon_status' as const -} - -export const enumServersSelectColumnServersAggregateBoolExpBoolOrArgumentsColumns = { - connected: 'connected' as const, - enabled: 'enabled' as const, - is_dedicated: 'is_dedicated' as const, - rcon_status: 'rcon_status' as const -} - -export const enumServersUpdateColumn = { - api_password: 'api_password' as const, - boot_status: 'boot_status' as const, - boot_status_detail: 'boot_status_detail' as const, - connect_password: 'connect_password' as const, - 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, - region: 'region' as const, - reserved_by_match_id: 'reserved_by_match_id' as const, - steam_relay: 'steam_relay' as const, - tv_port: 'tv_port' as const, - type: 'type' as const, - updated_at: 'updated_at' as const -} - -export const enumSettingsConstraint = { - settings_pkey: 'settings_pkey' as const -} - -export const enumSettingsSelectColumn = { - name: 'name' as const, - value: 'value' as const -} - -export const enumSettingsUpdateColumn = { - name: 'name' as const, - value: 'value' as const -} - -export const enumSteamAccountClaimsConstraint = { - steam_account_claims_k8s_job_name_key: 'steam_account_claims_k8s_job_name_key' as const, - steam_account_claims_pkey: 'steam_account_claims_pkey' as const -} - -export const enumSteamAccountClaimsSelectColumn = { - created_at: 'created_at' as const, - id: 'id' as const, - k8s_job_name: 'k8s_job_name' as const, - node_id: 'node_id' as const, - purpose: 'purpose' as const, - steam_account_id: 'steam_account_id' as const -} - -export const enumSteamAccountClaimsUpdateColumn = { - created_at: 'created_at' as const, - id: 'id' as const, - k8s_job_name: 'k8s_job_name' as const, - node_id: 'node_id' as const, - purpose: 'purpose' as const, - steam_account_id: 'steam_account_id' as const -} - -export const enumSteamAccountsConstraint = { - steam_accounts_pkey: 'steam_accounts_pkey' as const, - steam_accounts_username_key: 'steam_accounts_username_key' as const -} - -export const enumSteamAccountsSelectColumn = { - created_at: 'created_at' as const, - friend_capacity: 'friend_capacity' as const, - id: 'id' as const, - last_node_id: 'last_node_id' as const, - password: 'password' as const, - role: 'role' as const, - steam_level: 'steam_level' as const, - steamid64: 'steamid64' as const, - updated_at: 'updated_at' as const, - username: 'username' as const -} - -export const enumSteamAccountsUpdateColumn = { - created_at: 'created_at' as const, - friend_capacity: 'friend_capacity' as const, - id: 'id' as const, - last_node_id: 'last_node_id' as const, - password: 'password' as const, - role: 'role' as const, - steam_level: 'steam_level' as const, - steamid64: 'steamid64' as const, - updated_at: 'updated_at' as const, - username: 'username' as const -} - -export const enumSystemAlertsConstraint = { - system_alerts_pkey: 'system_alerts_pkey' as const -} - -export const enumSystemAlertsSelectColumn = { - created_at: 'created_at' as const, - created_by: 'created_by' as const, - dismissible: 'dismissible' as const, - expires_at: 'expires_at' as const, - id: 'id' as const, - is_active: 'is_active' as const, - message: 'message' as const, - title: 'title' as const, - type: 'type' as const, - updated_at: 'updated_at' as const -} - -export const enumSystemAlertsUpdateColumn = { - created_at: 'created_at' as const, - created_by: 'created_by' as const, - dismissible: 'dismissible' as const, - expires_at: 'expires_at' as const, - id: 'id' as const, - is_active: 'is_active' as const, - message: 'message' as const, - title: 'title' as const, - type: 'type' as const, - updated_at: 'updated_at' as const -} - -export const enumTeamInvitesConstraint = { - team_invites_pkey: 'team_invites_pkey' as const, - team_invites_team_id_steam_id_key: 'team_invites_team_id_steam_id_key' as const -} - -export const enumTeamInvitesSelectColumn = { - created_at: 'created_at' as const, - id: 'id' as const, - invited_by_player_steam_id: 'invited_by_player_steam_id' as const, - steam_id: 'steam_id' as const, - team_id: 'team_id' as const -} - -export const enumTeamInvitesUpdateColumn = { - created_at: 'created_at' as const, - id: 'id' as const, - invited_by_player_steam_id: 'invited_by_player_steam_id' as const, - steam_id: 'steam_id' as const, - team_id: 'team_id' as const -} - -export const enumTeamRosterConstraint = { - team_members_pkey: 'team_members_pkey' as const -} - -export const enumTeamRosterSelectColumn = { - coach: 'coach' as const, - player_steam_id: 'player_steam_id' as const, - role: 'role' as const, - roster_image_url: 'roster_image_url' as const, - status: 'status' as const, - team_id: 'team_id' as const -} - -export const enumTeamRosterSelectColumnTeamRosterAggregateBoolExpBoolAndArgumentsColumns = { - coach: 'coach' as const -} - -export const enumTeamRosterSelectColumnTeamRosterAggregateBoolExpBoolOrArgumentsColumns = { - coach: 'coach' as const -} - -export const enumTeamRosterUpdateColumn = { - coach: 'coach' as const, - player_steam_id: 'player_steam_id' as const, - role: 'role' as const, - roster_image_url: 'roster_image_url' as const, - status: 'status' as const, - team_id: 'team_id' as const -} - -export const enumTeamScrimAlertsConstraint = { - team_scrim_alerts_pkey: 'team_scrim_alerts_pkey' as const -} - -export const enumTeamScrimAlertsSelectColumn = { - created_at: 'created_at' as const, - elo_max: 'elo_max' as const, - elo_min: 'elo_min' as const, - enabled: 'enabled' as const, - id: 'id' as const, - last_notified_at: 'last_notified_at' as const, - regions: 'regions' as const, - team_id: 'team_id' as const -} - -export const enumTeamScrimAlertsUpdateColumn = { - created_at: 'created_at' as const, - elo_max: 'elo_max' as const, - elo_min: 'elo_min' as const, - enabled: 'enabled' as const, - id: 'id' as const, - last_notified_at: 'last_notified_at' as const, - regions: 'regions' as const, - team_id: 'team_id' as const -} - -export const enumTeamScrimAvailabilityConstraint = { - team_scrim_availability_pkey: 'team_scrim_availability_pkey' as const -} - -export const enumTeamScrimAvailabilitySelectColumn = { - created_at: 'created_at' as const, - ends_at: 'ends_at' as const, - id: 'id' as const, - recurring_weekly: 'recurring_weekly' as const, - starts_at: 'starts_at' as const, - team_id: 'team_id' as const -} - -export const enumTeamScrimAvailabilitySelectColumnTeamScrimAvailabilityAggregateBoolExpBoolAndArgumentsColumns = { - recurring_weekly: 'recurring_weekly' as const -} - -export const enumTeamScrimAvailabilitySelectColumnTeamScrimAvailabilityAggregateBoolExpBoolOrArgumentsColumns = { - recurring_weekly: 'recurring_weekly' as const -} - -export const enumTeamScrimAvailabilityUpdateColumn = { - created_at: 'created_at' as const, - ends_at: 'ends_at' as const, - id: 'id' as const, - recurring_weekly: 'recurring_weekly' as const, - starts_at: 'starts_at' as const, - team_id: 'team_id' as const -} - -export const enumTeamScrimRequestProposalsConstraint = { - team_scrim_request_proposals_pkey: 'team_scrim_request_proposals_pkey' as const -} - -export const enumTeamScrimRequestProposalsSelectColumn = { - created_at: 'created_at' as const, - id: 'id' as const, - proposed_by_steam_id: 'proposed_by_steam_id' as const, - proposed_by_team_id: 'proposed_by_team_id' as const, - proposed_scheduled_at: 'proposed_scheduled_at' as const, - request_id: 'request_id' as const -} - -export const enumTeamScrimRequestProposalsUpdateColumn = { - created_at: 'created_at' as const, - id: 'id' as const, - proposed_by_steam_id: 'proposed_by_steam_id' as const, - proposed_by_team_id: 'proposed_by_team_id' as const, - proposed_scheduled_at: 'proposed_scheduled_at' as const, - request_id: 'request_id' as const -} - -export const enumTeamScrimRequestsConstraint = { - team_scrim_requests_pkey: 'team_scrim_requests_pkey' as const, - uq_scrim_req_open: 'uq_scrim_req_open' as const -} - -export const enumTeamScrimRequestsSelectColumn = { - auto_generated: 'auto_generated' as const, - awaiting_team_id: 'awaiting_team_id' as const, - canceled_by_team_id: 'canceled_by_team_id' as const, - canceled_late: 'canceled_late' as const, - created_at: 'created_at' as const, - expires_at: 'expires_at' as const, - from_team_checked_in: 'from_team_checked_in' as const, - from_team_id: 'from_team_id' as const, - id: 'id' as const, - match_id: 'match_id' as const, - match_options_id: 'match_options_id' as const, - match_outcome: 'match_outcome' as const, - proposed_scheduled_at: 'proposed_scheduled_at' as const, - region: 'region' as const, - requested_by_steam_id: 'requested_by_steam_id' as const, - responded_at: 'responded_at' as const, - status: 'status' as const, - to_team_checked_in: 'to_team_checked_in' as const, - to_team_id: 'to_team_id' as const -} - -export const enumTeamScrimRequestsSelectColumnTeamScrimRequestsAggregateBoolExpBoolAndArgumentsColumns = { - auto_generated: 'auto_generated' as const, - canceled_late: 'canceled_late' as const, - from_team_checked_in: 'from_team_checked_in' as const, - to_team_checked_in: 'to_team_checked_in' as const -} - -export const enumTeamScrimRequestsSelectColumnTeamScrimRequestsAggregateBoolExpBoolOrArgumentsColumns = { - auto_generated: 'auto_generated' as const, - canceled_late: 'canceled_late' as const, - from_team_checked_in: 'from_team_checked_in' as const, - to_team_checked_in: 'to_team_checked_in' as const -} - -export const enumTeamScrimRequestsUpdateColumn = { - auto_generated: 'auto_generated' as const, - awaiting_team_id: 'awaiting_team_id' as const, - canceled_by_team_id: 'canceled_by_team_id' as const, - canceled_late: 'canceled_late' as const, - created_at: 'created_at' as const, - expires_at: 'expires_at' as const, - from_team_checked_in: 'from_team_checked_in' as const, - from_team_id: 'from_team_id' as const, - id: 'id' as const, - match_id: 'match_id' as const, - match_options_id: 'match_options_id' as const, - match_outcome: 'match_outcome' as const, - proposed_scheduled_at: 'proposed_scheduled_at' as const, - region: 'region' as const, - requested_by_steam_id: 'requested_by_steam_id' as const, - responded_at: 'responded_at' as const, - status: 'status' as const, - to_team_checked_in: 'to_team_checked_in' as const, - to_team_id: 'to_team_id' as const -} - -export const enumTeamScrimSettingsConstraint = { - team_scrim_settings_pkey: 'team_scrim_settings_pkey' as const, - team_scrim_settings_team_id_key: 'team_scrim_settings_team_id_key' as const -} - -export const enumTeamScrimSettingsSelectColumn = { - allow_outside_availability: 'allow_outside_availability' as const, - created_at: 'created_at' as const, - elo_max: 'elo_max' as const, - elo_min: 'elo_min' as const, - enabled: 'enabled' as const, - id: 'id' as const, - map_ids: 'map_ids' as const, - notes: 'notes' as const, - regions: 'regions' as const, - team_id: 'team_id' as const, - updated_at: 'updated_at' as const -} - -export const enumTeamScrimSettingsUpdateColumn = { - allow_outside_availability: 'allow_outside_availability' as const, - created_at: 'created_at' as const, - elo_max: 'elo_max' as const, - elo_min: 'elo_min' as const, - enabled: 'enabled' as const, - id: 'id' as const, - map_ids: 'map_ids' as const, - notes: 'notes' as const, - regions: 'regions' as const, - team_id: 'team_id' as const, - updated_at: 'updated_at' as const -} - -export const enumTeamSuggestionsConstraint = { - team_suggestions_group_hash_key: 'team_suggestions_group_hash_key' as const, - team_suggestions_pkey: 'team_suggestions_pkey' as const -} - -export const enumTeamSuggestionsSelectColumn = { - created_at: 'created_at' as const, - group_hash: 'group_hash' as const, - id: 'id' as const, - last_notified_at: 'last_notified_at' as const, - member_steam_ids: 'member_steam_ids' as const, - status: 'status' as const, - together_count: 'together_count' as const -} - -export const enumTeamSuggestionsUpdateColumn = { - created_at: 'created_at' as const, - group_hash: 'group_hash' as const, - id: 'id' as const, - last_notified_at: 'last_notified_at' as const, - member_steam_ids: 'member_steam_ids' as const, - status: 'status' as const, - together_count: 'together_count' as const -} - -export const enumTeamsConstraint = { - teams_name_key: 'teams_name_key' as const, - teams_pkey: 'teams_pkey' as const -} - -export const enumTeamsSelectColumn = { - avatar_url: 'avatar_url' as const, - captain_steam_id: 'captain_steam_id' as const, - id: 'id' as const, - is_organization: 'is_organization' as const, - name: 'name' as const, - owner_steam_id: 'owner_steam_id' as const, - short_name: 'short_name' as const -} - -export const enumTeamsSelectColumnTeamsAggregateBoolExpBoolAndArgumentsColumns = { - is_organization: 'is_organization' as const -} - -export const enumTeamsSelectColumnTeamsAggregateBoolExpBoolOrArgumentsColumns = { - is_organization: 'is_organization' as const -} - -export const enumTeamsUpdateColumn = { - avatar_url: 'avatar_url' as const, - captain_steam_id: 'captain_steam_id' as const, - id: 'id' as const, - is_organization: 'is_organization' as const, - name: 'name' as const, - owner_steam_id: 'owner_steam_id' as const, - short_name: 'short_name' as const -} - -export const enumTournamentAwardsConstraint = { - tournament_awards_pkey: 'tournament_awards_pkey' as const, - tournament_awards_tournament_id_placement_key: 'tournament_awards_tournament_id_placement_key' as const -} - -export const enumTournamentAwardsSelectColumn = { - award_id: 'award_id' as const, - created_at: 'created_at' as const, - custom_name: 'custom_name' as const, - id: 'id' as const, - image_url: 'image_url' as const, - placement: 'placement' as const, - silhouette: 'silhouette' as const, - tournament_id: 'tournament_id' as const, - updated_at: 'updated_at' as const -} - -export const enumTournamentAwardsUpdateColumn = { - award_id: 'award_id' as const, - created_at: 'created_at' as const, - custom_name: 'custom_name' as const, - id: 'id' as const, - image_url: 'image_url' as const, - placement: 'placement' as const, - silhouette: 'silhouette' as const, - tournament_id: 'tournament_id' as const, - updated_at: 'updated_at' as const -} - -export const enumTournamentBracketsConstraint = { - touarnment_brackets_pkey: 'touarnment_brackets_pkey' as const, - tournament_brackets_id_tournament_team_id_1_tournament_team_id_: 'tournament_brackets_id_tournament_team_id_1_tournament_team_id_' as const -} - -export const enumTournamentBracketsSelectColumn = { - bye: 'bye' as const, - created_at: 'created_at' as const, - finished: 'finished' as const, - group: 'group' as const, - id: 'id' as const, - loser_parent_bracket_id: 'loser_parent_bracket_id' as const, - match_id: 'match_id' as const, - match_number: 'match_number' as const, - match_options_id: 'match_options_id' as const, - parent_bracket_id: 'parent_bracket_id' as const, - path: 'path' as const, - round: 'round' as const, - scheduled_at: 'scheduled_at' as const, - scheduled_eta: 'scheduled_eta' as const, - team_1_seed: 'team_1_seed' as const, - team_2_seed: 'team_2_seed' as const, - tournament_stage_id: 'tournament_stage_id' as const, - tournament_team_id_1: 'tournament_team_id_1' as const, - tournament_team_id_2: 'tournament_team_id_2' as const -} - -export const enumTournamentBracketsSelectColumnTournamentBracketsAggregateBoolExpBoolAndArgumentsColumns = { - bye: 'bye' as const, - finished: 'finished' as const -} - -export const enumTournamentBracketsSelectColumnTournamentBracketsAggregateBoolExpBoolOrArgumentsColumns = { - bye: 'bye' as const, - finished: 'finished' as const -} - -export const enumTournamentBracketsUpdateColumn = { - bye: 'bye' as const, - created_at: 'created_at' as const, - finished: 'finished' as const, - group: 'group' as const, - id: 'id' as const, - loser_parent_bracket_id: 'loser_parent_bracket_id' as const, - match_id: 'match_id' as const, - match_number: 'match_number' as const, - match_options_id: 'match_options_id' as const, - parent_bracket_id: 'parent_bracket_id' as const, - path: 'path' as const, - round: 'round' as const, - scheduled_at: 'scheduled_at' as const, - scheduled_eta: 'scheduled_eta' as const, - team_1_seed: 'team_1_seed' as const, - team_2_seed: 'team_2_seed' as const, - tournament_stage_id: 'tournament_stage_id' as const, - tournament_team_id_1: 'tournament_team_id_1' as const, - tournament_team_id_2: 'tournament_team_id_2' as const -} - -export const enumTournamentCategoriesConstraint = { - tournament_categories_pkey: 'tournament_categories_pkey' as const -} - -export const enumTournamentCategoriesSelectColumn = { - category: 'category' as const, - tournament_id: 'tournament_id' as const -} - -export const enumTournamentCategoriesUpdateColumn = { - category: 'category' as const, - tournament_id: 'tournament_id' as const -} - -export const enumTournamentFreeAgentsConstraint = { - tournament_free_agents_pkey: 'tournament_free_agents_pkey' as const, - tournament_free_agents_tournament_id_player_steam_id_key: 'tournament_free_agents_tournament_id_player_steam_id_key' as const -} - -export const enumTournamentFreeAgentsSelectColumn = { - checked_in_at: 'checked_in_at' as const, - created_at: 'created_at' as const, - id: 'id' as const, - party_id: 'party_id' as const, - player_steam_id: 'player_steam_id' as const, - status: 'status' as const, - tournament_id: 'tournament_id' as const, - tournament_team_id: 'tournament_team_id' as const -} - -export const enumTournamentFreeAgentsUpdateColumn = { - checked_in_at: 'checked_in_at' as const, - created_at: 'created_at' as const, - id: 'id' as const, - party_id: 'party_id' as const, - player_steam_id: 'player_steam_id' as const, - status: 'status' as const, - tournament_id: 'tournament_id' as const, - tournament_team_id: 'tournament_team_id' as const -} - -export const enumTournamentInviteCodeUsesConstraint = { - tournament_invite_code_uses_pkey: 'tournament_invite_code_uses_pkey' as const -} - -export const enumTournamentInviteCodeUsesSelectColumn = { - invite_code_id: 'invite_code_id' as const, - player_steam_id: 'player_steam_id' as const, - team_id: 'team_id' as const, - used_at: 'used_at' as const -} - -export const enumTournamentInviteCodeUsesUpdateColumn = { - invite_code_id: 'invite_code_id' as const, - player_steam_id: 'player_steam_id' as const, - team_id: 'team_id' as const, - used_at: 'used_at' as const -} - -export const enumTournamentInviteCodesConstraint = { - tournament_invite_codes_code_key: 'tournament_invite_codes_code_key' as const, - tournament_invite_codes_pkey: 'tournament_invite_codes_pkey' as const -} - -export const enumTournamentInviteCodesSelectColumn = { - code: 'code' as const, - created_at: 'created_at' as const, - created_by_player_steam_id: 'created_by_player_steam_id' as const, - expires_at: 'expires_at' as const, - id: 'id' as const, - max_uses: 'max_uses' as const, - revoked_at: 'revoked_at' as const, - tournament_id: 'tournament_id' as const, - uses: 'uses' as const -} - -export const enumTournamentInviteCodesUpdateColumn = { - code: 'code' as const, - created_at: 'created_at' as const, - created_by_player_steam_id: 'created_by_player_steam_id' as const, - expires_at: 'expires_at' as const, - id: 'id' as const, - max_uses: 'max_uses' as const, - revoked_at: 'revoked_at' as const, - tournament_id: 'tournament_id' as const, - uses: 'uses' as const -} - -export const enumTournamentInvitesConstraint = { - idx_tournament_invites_player_unique: 'idx_tournament_invites_player_unique' as const, - idx_tournament_invites_team_unique: 'idx_tournament_invites_team_unique' as const, - tournament_invites_pkey: 'tournament_invites_pkey' as const -} - -export const enumTournamentInvitesSelectColumn = { - created_at: 'created_at' as const, - id: 'id' as const, - invited_by_player_steam_id: 'invited_by_player_steam_id' as const, - steam_id: 'steam_id' as const, - team_id: 'team_id' as const, - tournament_id: 'tournament_id' as const -} - -export const enumTournamentInvitesUpdateColumn = { - created_at: 'created_at' as const, - id: 'id' as const, - invited_by_player_steam_id: 'invited_by_player_steam_id' as const, - steam_id: 'steam_id' as const, - team_id: 'team_id' as const, - tournament_id: 'tournament_id' as const -} - -export const enumTournamentLeaderboardEntriesSelectColumn = { - adr: 'adr' as const, - assists: 'assists' as const, - deaths: 'deaths' as const, - headshot_percentage: 'headshot_percentage' as const, - kdr: 'kdr' as const, - kills: 'kills' as const, - matches_played: 'matches_played' as const, - player_avatar_url: 'player_avatar_url' as const, - player_country: 'player_country' as const, - player_custom_avatar_url: 'player_custom_avatar_url' as const, - player_name: 'player_name' as const, - player_steam_id: 'player_steam_id' as const, - rating: 'rating' as const, - rounds_played: 'rounds_played' as const, - team_name: 'team_name' as const, - tournament_team_id: 'tournament_team_id' as const -} - -export const enumTournamentNoShowsConstraint = { - tournament_no_shows_pkey: 'tournament_no_shows_pkey' as const, - tournament_no_shows_tournament_player_key: 'tournament_no_shows_tournament_player_key' as const -} - -export const enumTournamentNoShowsSelectColumn = { - id: 'id' as const, - occurred_at: 'occurred_at' as const, - player_steam_id: 'player_steam_id' as const, - tournament_id: 'tournament_id' as const, - tournament_team_id: 'tournament_team_id' as const -} - -export const enumTournamentNoShowsUpdateColumn = { - id: 'id' as const, - occurred_at: 'occurred_at' as const, - player_steam_id: 'player_steam_id' as const, - tournament_id: 'tournament_id' as const, - tournament_team_id: 'tournament_team_id' as const -} - -export const enumTournamentOrganizerTeamsConstraint = { - tournament_organizer_teams_pkey: 'tournament_organizer_teams_pkey' as const -} - -export const enumTournamentOrganizerTeamsSelectColumn = { - created_at: 'created_at' as const, - team_id: 'team_id' as const, - tournament_id: 'tournament_id' as const -} - -export const enumTournamentOrganizerTeamsUpdateColumn = { - created_at: 'created_at' as const, - team_id: 'team_id' as const, - tournament_id: 'tournament_id' as const -} - -export const enumTournamentOrganizersConstraint = { - tournament_organizers_pkey: 'tournament_organizers_pkey' as const -} - -export const enumTournamentOrganizersSelectColumn = { - organization_team_id: 'organization_team_id' as const, - steam_id: 'steam_id' as const, - tournament_id: 'tournament_id' as const -} - -export const enumTournamentOrganizersUpdateColumn = { - organization_team_id: 'organization_team_id' as const, - steam_id: 'steam_id' as const, - tournament_id: 'tournament_id' as const -} - -export const enumTournamentPrizesConstraint = { - tournament_prizes_pkey: 'tournament_prizes_pkey' as const -} - -export const enumTournamentPrizesSelectColumn = { - created_at: 'created_at' as const, - id: 'id' as const, - order: 'order' as const, - place: 'place' as const, - prize: 'prize' as const, - tournament_id: 'tournament_id' as const -} - -export const enumTournamentPrizesUpdateColumn = { - created_at: 'created_at' as const, - id: 'id' as const, - order: 'order' as const, - place: 'place' as const, - prize: 'prize' as const, - tournament_id: 'tournament_id' as const -} - -export const enumTournamentRegistrationUnlocksConstraint = { - idx_tournament_registration_unlocks_player: 'idx_tournament_registration_unlocks_player' as const, - idx_tournament_registration_unlocks_team: 'idx_tournament_registration_unlocks_team' as const -} - -export const enumTournamentRegistrationUnlocksSelectColumn = { - created_at: 'created_at' as const, - player_steam_id: 'player_steam_id' as const, - team_id: 'team_id' as const, - tournament_id: 'tournament_id' as const -} - -export const enumTournamentRegistrationUnlocksUpdateColumn = { - created_at: 'created_at' as const, - player_steam_id: 'player_steam_id' as const, - team_id: 'team_id' as const, - tournament_id: 'tournament_id' as const -} - -export const enumTournamentStageWindowsConstraint = { - tournament_stage_windows_pkey: 'tournament_stage_windows_pkey' as const, - tournament_stage_windows_tournament_stage_id_round_key: 'tournament_stage_windows_tournament_stage_id_round_key' as const -} - -export const enumTournamentStageWindowsSelectColumn = { - closes_at: 'closes_at' as const, - created_at: 'created_at' as const, - default_match_at: 'default_match_at' as const, - id: 'id' as const, - opens_at: 'opens_at' as const, - round: 'round' as const, - tournament_stage_id: 'tournament_stage_id' as const -} - -export const enumTournamentStageWindowsUpdateColumn = { - closes_at: 'closes_at' as const, - created_at: 'created_at' as const, - default_match_at: 'default_match_at' as const, - id: 'id' as const, - opens_at: 'opens_at' as const, - round: 'round' as const, - tournament_stage_id: 'tournament_stage_id' as const -} - -export const enumTournamentStagesConstraint = { - tournament_stages_pkey: 'tournament_stages_pkey' as const -} - -export const enumTournamentStagesSelectColumn = { - decider_best_of: 'decider_best_of' as const, - default_best_of: 'default_best_of' as const, - final_map_advantage: 'final_map_advantage' as const, - groups: 'groups' as const, - id: 'id' as const, - match_options_id: 'match_options_id' as const, - max_rounds: 'max_rounds' as const, - max_teams: 'max_teams' as const, - min_teams: 'min_teams' as const, - order: 'order' as const, - settings: 'settings' as const, - swiss_no_elimination: 'swiss_no_elimination' as const, - third_place_match: 'third_place_match' as const, - tournament_id: 'tournament_id' as const, - type: 'type' as const -} - -export const enumTournamentStagesSelectColumnTournamentStagesAggregateBoolExpBoolAndArgumentsColumns = { - swiss_no_elimination: 'swiss_no_elimination' as const, - third_place_match: 'third_place_match' as const -} - -export const enumTournamentStagesSelectColumnTournamentStagesAggregateBoolExpBoolOrArgumentsColumns = { - swiss_no_elimination: 'swiss_no_elimination' as const, - third_place_match: 'third_place_match' as const -} - -export const enumTournamentStagesUpdateColumn = { - decider_best_of: 'decider_best_of' as const, - default_best_of: 'default_best_of' as const, - final_map_advantage: 'final_map_advantage' as const, - groups: 'groups' as const, - id: 'id' as const, - match_options_id: 'match_options_id' as const, - max_rounds: 'max_rounds' as const, - max_teams: 'max_teams' as const, - min_teams: 'min_teams' as const, - order: 'order' as const, - settings: 'settings' as const, - swiss_no_elimination: 'swiss_no_elimination' as const, - third_place_match: 'third_place_match' as const, - tournament_id: 'tournament_id' as const, - type: 'type' as const -} - -export const enumTournamentTeamInvitesConstraint = { - tournament_team_invites_pkey: 'tournament_team_invites_pkey' as const, - tournament_team_invites_steam_id_tournament_team_id_key: 'tournament_team_invites_steam_id_tournament_team_id_key' as const -} - -export const enumTournamentTeamInvitesSelectColumn = { - created_at: 'created_at' as const, - id: 'id' as const, - invited_by_player_steam_id: 'invited_by_player_steam_id' as const, - steam_id: 'steam_id' as const, - tournament_team_id: 'tournament_team_id' as const -} - -export const enumTournamentTeamInvitesUpdateColumn = { - created_at: 'created_at' as const, - id: 'id' as const, - invited_by_player_steam_id: 'invited_by_player_steam_id' as const, - steam_id: 'steam_id' as const, - tournament_team_id: 'tournament_team_id' as const -} - -export const enumTournamentTeamRosterConstraint = { - tournament_roster_pkey: 'tournament_roster_pkey' as const, - tournament_roster_player_steam_id_tournament_id_key: 'tournament_roster_player_steam_id_tournament_id_key' as const -} - -export const enumTournamentTeamRosterSelectColumn = { - checked_in_at: 'checked_in_at' as const, - player_steam_id: 'player_steam_id' as const, - role: 'role' as const, - tournament_id: 'tournament_id' as const, - tournament_team_id: 'tournament_team_id' as const -} - -export const enumTournamentTeamRosterUpdateColumn = { - checked_in_at: 'checked_in_at' as const, - player_steam_id: 'player_steam_id' as const, - role: 'role' as const, - tournament_id: 'tournament_id' as const, - tournament_team_id: 'tournament_team_id' as const -} - -export const enumTournamentTeamsConstraint = { - tournament_teams_creator_steam_id_tournament_id_key: 'tournament_teams_creator_steam_id_tournament_id_key' as const, - tournament_teams_pkey: 'tournament_teams_pkey' as const, - tournament_teams_tournament_id_name_key: 'tournament_teams_tournament_id_name_key' as const, - tournament_teams_tournament_id_seed_key: 'tournament_teams_tournament_id_seed_key' as const, - tournament_teams_tournament_id_team_id_key: 'tournament_teams_tournament_id_team_id_key' as const -} - -export const enumTournamentTeamsSelectColumn = { - captain_steam_id: 'captain_steam_id' as const, - checked_in_at: 'checked_in_at' as const, - created_at: 'created_at' as const, - eligible_at: 'eligible_at' as const, - id: 'id' as const, - is_drafted: 'is_drafted' as const, - name: 'name' as const, - owner_steam_id: 'owner_steam_id' as const, - seed: 'seed' as const, - short_name: 'short_name' as const, - team_id: 'team_id' as const, - tournament_id: 'tournament_id' as const -} - -export const enumTournamentTeamsSelectColumnTournamentTeamsAggregateBoolExpBoolAndArgumentsColumns = { - is_drafted: 'is_drafted' as const -} - -export const enumTournamentTeamsSelectColumnTournamentTeamsAggregateBoolExpBoolOrArgumentsColumns = { - is_drafted: 'is_drafted' as const -} - -export const enumTournamentTeamsUpdateColumn = { - captain_steam_id: 'captain_steam_id' as const, - checked_in_at: 'checked_in_at' as const, - created_at: 'created_at' as const, - eligible_at: 'eligible_at' as const, - id: 'id' as const, - is_drafted: 'is_drafted' as const, - name: 'name' as const, - owner_steam_id: 'owner_steam_id' as const, - seed: 'seed' as const, - short_name: 'short_name' as const, - team_id: 'team_id' as const, - tournament_id: 'tournament_id' as const -} - -export const enumTournamentsConstraint = { - tournaments_match_options_id_key: 'tournaments_match_options_id_key' as const, - tournaments_pkey: 'tournaments_pkey' as const -} - -export const enumTournamentsSelectColumn = { - auto_start: 'auto_start' as const, - awards_enabled: 'awards_enabled' as const, - banner: 'banner' as const, - check_in_closed_for: 'check_in_closed_for' as const, - check_in_closes_before_minutes: 'check_in_closes_before_minutes' as const, - check_in_closing_notified_for: 'check_in_closing_notified_for' as const, - check_in_ends_at: 'check_in_ends_at' as const, - check_in_opens_before_minutes: 'check_in_opens_before_minutes' as const, - check_in_required: 'check_in_required' as const, - check_in_setting: 'check_in_setting' as const, - created_at: 'created_at' as const, - description: 'description' as const, - discord_guild_id: 'discord_guild_id' as const, - discord_notifications_enabled: 'discord_notifications_enabled' as const, - discord_notify_Canceled: 'discord_notify_Canceled' as const, - discord_notify_Finished: 'discord_notify_Finished' as const, - discord_notify_Forfeit: 'discord_notify_Forfeit' as const, - discord_notify_Live: 'discord_notify_Live' as const, - discord_notify_MapPaused: 'discord_notify_MapPaused' as const, - discord_notify_PickingPlayers: 'discord_notify_PickingPlayers' as const, - discord_notify_Scheduled: 'discord_notify_Scheduled' as const, - discord_notify_Surrendered: 'discord_notify_Surrendered' as const, - discord_notify_Tie: 'discord_notify_Tie' as const, - discord_notify_Veto: 'discord_notify_Veto' as const, - discord_notify_WaitingForCheckIn: 'discord_notify_WaitingForCheckIn' as const, - discord_notify_WaitingForServer: 'discord_notify_WaitingForServer' as const, - discord_role_id: 'discord_role_id' as const, - discord_voice_enabled: 'discord_voice_enabled' as const, - discord_webhook: 'discord_webhook' as const, - homepage: 'homepage' as const, - id: 'id' as const, - invite_only: 'invite_only' as const, - is_league: 'is_league' as const, - latitude: 'latitude' as const, - location: 'location' as const, - logo: 'logo' as const, - longitude: 'longitude' as const, - match_options_id: 'match_options_id' as const, - max_elo: 'max_elo' as const, - min_elo: 'min_elo' as const, - min_role: 'min_role' as const, - name: 'name' as const, - organizer_steam_id: 'organizer_steam_id' as const, - regions: 'regions' as const, - registration_type: 'registration_type' as const, - scheduling_mode: 'scheduling_mode' as const, - start: 'start' as const, - status: 'status' as const -} - -export const enumTournamentsSelectColumnTournamentsAggregateBoolExpAvgArgumentsColumns = { - latitude: 'latitude' as const, - longitude: 'longitude' as const -} - -export const enumTournamentsSelectColumnTournamentsAggregateBoolExpBoolAndArgumentsColumns = { - auto_start: 'auto_start' as const, - awards_enabled: 'awards_enabled' as const, - check_in_required: 'check_in_required' as const, - discord_notifications_enabled: 'discord_notifications_enabled' as const, - discord_notify_Canceled: 'discord_notify_Canceled' as const, - discord_notify_Finished: 'discord_notify_Finished' as const, - discord_notify_Forfeit: 'discord_notify_Forfeit' as const, - discord_notify_Live: 'discord_notify_Live' as const, - discord_notify_MapPaused: 'discord_notify_MapPaused' as const, - discord_notify_PickingPlayers: 'discord_notify_PickingPlayers' as const, - discord_notify_Scheduled: 'discord_notify_Scheduled' as const, - discord_notify_Surrendered: 'discord_notify_Surrendered' as const, - discord_notify_Tie: 'discord_notify_Tie' as const, - discord_notify_Veto: 'discord_notify_Veto' as const, - discord_notify_WaitingForCheckIn: 'discord_notify_WaitingForCheckIn' as const, - discord_notify_WaitingForServer: 'discord_notify_WaitingForServer' as const, - discord_voice_enabled: 'discord_voice_enabled' as const, - invite_only: 'invite_only' as const, - is_league: 'is_league' as const -} - -export const enumTournamentsSelectColumnTournamentsAggregateBoolExpBoolOrArgumentsColumns = { - auto_start: 'auto_start' as const, - awards_enabled: 'awards_enabled' as const, - check_in_required: 'check_in_required' as const, - discord_notifications_enabled: 'discord_notifications_enabled' as const, - discord_notify_Canceled: 'discord_notify_Canceled' as const, - discord_notify_Finished: 'discord_notify_Finished' as const, - discord_notify_Forfeit: 'discord_notify_Forfeit' as const, - discord_notify_Live: 'discord_notify_Live' as const, - discord_notify_MapPaused: 'discord_notify_MapPaused' as const, - discord_notify_PickingPlayers: 'discord_notify_PickingPlayers' as const, - discord_notify_Scheduled: 'discord_notify_Scheduled' as const, - discord_notify_Surrendered: 'discord_notify_Surrendered' as const, - discord_notify_Tie: 'discord_notify_Tie' as const, - discord_notify_Veto: 'discord_notify_Veto' as const, - discord_notify_WaitingForCheckIn: 'discord_notify_WaitingForCheckIn' as const, - discord_notify_WaitingForServer: 'discord_notify_WaitingForServer' as const, - discord_voice_enabled: 'discord_voice_enabled' as const, - invite_only: 'invite_only' as const, - is_league: 'is_league' as const -} - -export const enumTournamentsSelectColumnTournamentsAggregateBoolExpCorrArgumentsColumns = { - latitude: 'latitude' as const, - longitude: 'longitude' as const -} - -export const enumTournamentsSelectColumnTournamentsAggregateBoolExpCovarSampArgumentsColumns = { - latitude: 'latitude' as const, - longitude: 'longitude' as const -} - -export const enumTournamentsSelectColumnTournamentsAggregateBoolExpMaxArgumentsColumns = { - latitude: 'latitude' as const, - longitude: 'longitude' as const -} - -export const enumTournamentsSelectColumnTournamentsAggregateBoolExpMinArgumentsColumns = { - latitude: 'latitude' as const, - longitude: 'longitude' as const -} - -export const enumTournamentsSelectColumnTournamentsAggregateBoolExpStddevSampArgumentsColumns = { - latitude: 'latitude' as const, - longitude: 'longitude' as const -} - -export const enumTournamentsSelectColumnTournamentsAggregateBoolExpSumArgumentsColumns = { - latitude: 'latitude' as const, - longitude: 'longitude' as const -} - -export const enumTournamentsSelectColumnTournamentsAggregateBoolExpVarSampArgumentsColumns = { - latitude: 'latitude' as const, - longitude: 'longitude' as const -} - -export const enumTournamentsUpdateColumn = { - auto_start: 'auto_start' as const, - awards_enabled: 'awards_enabled' as const, - banner: 'banner' as const, - check_in_closed_for: 'check_in_closed_for' as const, - check_in_closes_before_minutes: 'check_in_closes_before_minutes' as const, - check_in_closing_notified_for: 'check_in_closing_notified_for' as const, - check_in_ends_at: 'check_in_ends_at' as const, - check_in_opens_before_minutes: 'check_in_opens_before_minutes' as const, - check_in_required: 'check_in_required' as const, - check_in_setting: 'check_in_setting' as const, - created_at: 'created_at' as const, - description: 'description' as const, - discord_guild_id: 'discord_guild_id' as const, - discord_notifications_enabled: 'discord_notifications_enabled' as const, - discord_notify_Canceled: 'discord_notify_Canceled' as const, - discord_notify_Finished: 'discord_notify_Finished' as const, - discord_notify_Forfeit: 'discord_notify_Forfeit' as const, - discord_notify_Live: 'discord_notify_Live' as const, - discord_notify_MapPaused: 'discord_notify_MapPaused' as const, - discord_notify_PickingPlayers: 'discord_notify_PickingPlayers' as const, - discord_notify_Scheduled: 'discord_notify_Scheduled' as const, - discord_notify_Surrendered: 'discord_notify_Surrendered' as const, - discord_notify_Tie: 'discord_notify_Tie' as const, - discord_notify_Veto: 'discord_notify_Veto' as const, - discord_notify_WaitingForCheckIn: 'discord_notify_WaitingForCheckIn' as const, - discord_notify_WaitingForServer: 'discord_notify_WaitingForServer' as const, - discord_role_id: 'discord_role_id' as const, - discord_voice_enabled: 'discord_voice_enabled' as const, - discord_webhook: 'discord_webhook' as const, - homepage: 'homepage' as const, - id: 'id' as const, - invite_only: 'invite_only' as const, - is_league: 'is_league' as const, - latitude: 'latitude' as const, - location: 'location' as const, - logo: 'logo' as const, - longitude: 'longitude' as const, - match_options_id: 'match_options_id' as const, - max_elo: 'max_elo' as const, - min_elo: 'min_elo' as const, - min_role: 'min_role' as const, - name: 'name' as const, - organizer_steam_id: 'organizer_steam_id' as const, - regions: 'regions' as const, - registration_type: 'registration_type' as const, - scheduling_mode: 'scheduling_mode' as const, - start: 'start' as const, - status: 'status' as const -} - -export const enumUtilityCollectionItemsConstraint = { - utility_collection_items_pkey: 'utility_collection_items_pkey' as const -} - -export const enumUtilityCollectionItemsSelectColumn = { - collection_id: 'collection_id' as const, - created_at: 'created_at' as const, - note: 'note' as const, - position: 'position' as const, - utility_lineup_id: 'utility_lineup_id' as const -} - -export const enumUtilityCollectionItemsUpdateColumn = { - collection_id: 'collection_id' as const, - created_at: 'created_at' as const, - note: 'note' as const, - position: 'position' as const, - utility_lineup_id: 'utility_lineup_id' as const -} - -export const enumUtilityCollectionsConstraint = { - utility_collections_pkey: 'utility_collections_pkey' as const -} - -export const enumUtilityCollectionsSelectColumn = { - created_at: 'created_at' as const, - description: 'description' as const, - id: 'id' as const, - map_name: 'map_name' as const, - name: 'name' as const, - owner_steam_id: 'owner_steam_id' as const, - team_id: 'team_id' as const, - updated_at: 'updated_at' as const, - visibility: 'visibility' as const -} - -export const enumUtilityCollectionsUpdateColumn = { - created_at: 'created_at' as const, - description: 'description' as const, - id: 'id' as const, - map_name: 'map_name' as const, - name: 'name' as const, - owner_steam_id: 'owner_steam_id' as const, - team_id: 'team_id' as const, - updated_at: 'updated_at' as const, - visibility: 'visibility' as const -} - -export const enumUtilityDemoMinesConstraint = { - utility_demo_mines_pkey: 'utility_demo_mines_pkey' as const -} - -export const enumUtilityDemoMinesSelectColumn = { - failed_reason: 'failed_reason' as const, - match_map_demo_id: 'match_map_demo_id' as const, - mined_at: 'mined_at' as const, - throws: 'throws' as const, - version: 'version' as const -} - -export const enumUtilityDemoMinesUpdateColumn = { - failed_reason: 'failed_reason' as const, - match_map_demo_id: 'match_map_demo_id' as const, - mined_at: 'mined_at' as const, - throws: 'throws' as const, - version: 'version' as const -} - -export const enumUtilityDemoThrowsConstraint = { - utility_demo_throws_pkey: 'utility_demo_throws_pkey' as const -} - -export const enumUtilityDemoThrowsSelectColumn = { - created_at: 'created_at' as const, - flight_time_ms: 'flight_time_ms' as const, - grenade_id: 'grenade_id' as const, - land_x: 'land_x' as const, - land_y: 'land_y' as const, - land_z: 'land_z' as const, - lineup_bucket: 'lineup_bucket' as const, - map_name: 'map_name' as const, - match_id: 'match_id' as const, - match_map_demo_id: 'match_map_demo_id' as const, - match_map_id: 'match_map_id' as const, - origin_x: 'origin_x' as const, - origin_y: 'origin_y' as const, - origin_z: 'origin_z' as const, - round: 'round' as const, - side: 'side' as const, - technique: 'technique' as const, - throw_strength: 'throw_strength' as const, - thrower_steam_id: 'thrower_steam_id' as const, - thrown_at: 'thrown_at' as const, - tick: 'tick' as const, - utility_type: 'utility_type' as const, - view_pitch: 'view_pitch' as const, - view_yaw: 'view_yaw' as const -} - -export const enumUtilityDemoThrowsUpdateColumn = { - created_at: 'created_at' as const, - flight_time_ms: 'flight_time_ms' as const, - grenade_id: 'grenade_id' as const, - land_x: 'land_x' as const, - land_y: 'land_y' as const, - land_z: 'land_z' as const, - map_name: 'map_name' as const, - match_id: 'match_id' as const, - match_map_demo_id: 'match_map_demo_id' as const, - match_map_id: 'match_map_id' as const, - origin_x: 'origin_x' as const, - origin_y: 'origin_y' as const, - origin_z: 'origin_z' as const, - round: 'round' as const, - side: 'side' as const, - technique: 'technique' as const, - throw_strength: 'throw_strength' as const, - thrower_steam_id: 'thrower_steam_id' as const, - thrown_at: 'thrown_at' as const, - tick: 'tick' as const, - utility_type: 'utility_type' as const, - view_pitch: 'view_pitch' as const, - view_yaw: 'view_yaw' as const -} - -export const enumUtilityDriftResultsConstraint = { - utility_drift_results_pkey: 'utility_drift_results_pkey' as const -} - -export const enumUtilityDriftResultsSelectColumn = { - created_at: 'created_at' as const, - distance: 'distance' as const, - distance_xy: 'distance_xy' as const, - distance_z: 'distance_z' as const, - reason: 'reason' as const, - severity: 'severity' as const, - utility_drift_scan_id: 'utility_drift_scan_id' as const, - utility_lineup_id: 'utility_lineup_id' as const, - verdict: 'verdict' as const -} - -export const enumUtilityDriftResultsSelectColumnUtilityDriftResultsAggregateBoolExpAvgArgumentsColumns = { - distance: 'distance' as const, - distance_xy: 'distance_xy' as const, - distance_z: 'distance_z' as const -} - -export const enumUtilityDriftResultsSelectColumnUtilityDriftResultsAggregateBoolExpCorrArgumentsColumns = { - distance: 'distance' as const, - distance_xy: 'distance_xy' as const, - distance_z: 'distance_z' as const -} - -export const enumUtilityDriftResultsSelectColumnUtilityDriftResultsAggregateBoolExpCovarSampArgumentsColumns = { - distance: 'distance' as const, - distance_xy: 'distance_xy' as const, - distance_z: 'distance_z' as const -} - -export const enumUtilityDriftResultsSelectColumnUtilityDriftResultsAggregateBoolExpMaxArgumentsColumns = { - distance: 'distance' as const, - distance_xy: 'distance_xy' as const, - distance_z: 'distance_z' as const -} - -export const enumUtilityDriftResultsSelectColumnUtilityDriftResultsAggregateBoolExpMinArgumentsColumns = { - distance: 'distance' as const, - distance_xy: 'distance_xy' as const, - distance_z: 'distance_z' as const -} - -export const enumUtilityDriftResultsSelectColumnUtilityDriftResultsAggregateBoolExpStddevSampArgumentsColumns = { - distance: 'distance' as const, - distance_xy: 'distance_xy' as const, - distance_z: 'distance_z' as const -} - -export const enumUtilityDriftResultsSelectColumnUtilityDriftResultsAggregateBoolExpSumArgumentsColumns = { - distance: 'distance' as const, - distance_xy: 'distance_xy' as const, - distance_z: 'distance_z' as const -} - -export const enumUtilityDriftResultsSelectColumnUtilityDriftResultsAggregateBoolExpVarSampArgumentsColumns = { - distance: 'distance' as const, - distance_xy: 'distance_xy' as const, - distance_z: 'distance_z' as const -} - -export const enumUtilityDriftResultsUpdateColumn = { - created_at: 'created_at' as const, - distance: 'distance' as const, - distance_xy: 'distance_xy' as const, - distance_z: 'distance_z' as const, - reason: 'reason' as const, - severity: 'severity' as const, - utility_drift_scan_id: 'utility_drift_scan_id' as const, - utility_lineup_id: 'utility_lineup_id' as const, - verdict: 'verdict' as const -} - -export const enumUtilityDriftScansConstraint = { - utility_drift_scans_pkey: 'utility_drift_scans_pkey' as const -} - -export const enumUtilityDriftScansSelectColumn = { - broken: 'broken' as const, - created_at: 'created_at' as const, - failure_reason: 'failure_reason' as const, - finished_at: 'finished_at' as const, - from_revision: 'from_revision' as const, - id: 'id' as const, - lineups: 'lineups' as const, - map_name: 'map_name' as const, - max_distance: 'max_distance' as const, - moved: 'moved' as const, - requested_by_steam_id: 'requested_by_steam_id' as const, - scanned: 'scanned' as const, - started_at: 'started_at' as const, - status: 'status' as const, - to_revision: 'to_revision' as const, - unchanged: 'unchanged' as const, - unsimulatable: 'unsimulatable' as const, - updated_at: 'updated_at' as const -} - -export const enumUtilityDriftScansUpdateColumn = { - broken: 'broken' as const, - created_at: 'created_at' as const, - failure_reason: 'failure_reason' as const, - finished_at: 'finished_at' as const, - from_revision: 'from_revision' as const, - id: 'id' as const, - lineups: 'lineups' as const, - map_name: 'map_name' as const, - max_distance: 'max_distance' as const, - moved: 'moved' as const, - requested_by_steam_id: 'requested_by_steam_id' as const, - scanned: 'scanned' as const, - started_at: 'started_at' as const, - status: 'status' as const, - to_revision: 'to_revision' as const, - unchanged: 'unchanged' as const, - unsimulatable: 'unsimulatable' as const, - updated_at: 'updated_at' as const -} - -export const enumUtilityLineupFavoritesConstraint = { - utility_lineup_favorites_pkey: 'utility_lineup_favorites_pkey' as const -} - -export const enumUtilityLineupFavoritesSelectColumn = { - created_at: 'created_at' as const, - steam_id: 'steam_id' as const, - utility_lineup_id: 'utility_lineup_id' as const -} - -export const enumUtilityLineupFavoritesUpdateColumn = { - created_at: 'created_at' as const, - steam_id: 'steam_id' as const, - utility_lineup_id: 'utility_lineup_id' as const -} - -export const enumUtilityLineupProgressConstraint = { - utility_lineup_progress_pkey: 'utility_lineup_progress_pkey' as const -} - -export const enumUtilityLineupProgressSelectColumn = { - attempts: 'attempts' as const, - best_streak: 'best_streak' as const, - current_streak: 'current_streak' as const, - last_practiced_at: 'last_practiced_at' as const, - mastered_at: 'mastered_at' as const, - miss_along_sum: 'miss_along_sum' as const, - miss_lateral_sum: 'miss_lateral_sum' as const, - miss_samples: 'miss_samples' as const, - miss_vertical_sum: 'miss_vertical_sum' as const, - steam_id: 'steam_id' as const, - successes: 'successes' as const, - utility_lineup_id: 'utility_lineup_id' as const -} - -export const enumUtilityLineupProgressSelectColumnUtilityLineupProgressAggregateBoolExpAvgArgumentsColumns = { - miss_along_sum: 'miss_along_sum' as const, - miss_lateral_sum: 'miss_lateral_sum' as const, - miss_vertical_sum: 'miss_vertical_sum' as const -} - -export const enumUtilityLineupProgressSelectColumnUtilityLineupProgressAggregateBoolExpCorrArgumentsColumns = { - miss_along_sum: 'miss_along_sum' as const, - miss_lateral_sum: 'miss_lateral_sum' as const, - miss_vertical_sum: 'miss_vertical_sum' as const -} - -export const enumUtilityLineupProgressSelectColumnUtilityLineupProgressAggregateBoolExpCovarSampArgumentsColumns = { - miss_along_sum: 'miss_along_sum' as const, - miss_lateral_sum: 'miss_lateral_sum' as const, - miss_vertical_sum: 'miss_vertical_sum' as const -} - -export const enumUtilityLineupProgressSelectColumnUtilityLineupProgressAggregateBoolExpMaxArgumentsColumns = { - miss_along_sum: 'miss_along_sum' as const, - miss_lateral_sum: 'miss_lateral_sum' as const, - miss_vertical_sum: 'miss_vertical_sum' as const -} - -export const enumUtilityLineupProgressSelectColumnUtilityLineupProgressAggregateBoolExpMinArgumentsColumns = { - miss_along_sum: 'miss_along_sum' as const, - miss_lateral_sum: 'miss_lateral_sum' as const, - miss_vertical_sum: 'miss_vertical_sum' as const -} - -export const enumUtilityLineupProgressSelectColumnUtilityLineupProgressAggregateBoolExpStddevSampArgumentsColumns = { - miss_along_sum: 'miss_along_sum' as const, - miss_lateral_sum: 'miss_lateral_sum' as const, - miss_vertical_sum: 'miss_vertical_sum' as const -} - -export const enumUtilityLineupProgressSelectColumnUtilityLineupProgressAggregateBoolExpSumArgumentsColumns = { - miss_along_sum: 'miss_along_sum' as const, - miss_lateral_sum: 'miss_lateral_sum' as const, - miss_vertical_sum: 'miss_vertical_sum' as const -} - -export const enumUtilityLineupProgressSelectColumnUtilityLineupProgressAggregateBoolExpVarSampArgumentsColumns = { - miss_along_sum: 'miss_along_sum' as const, - miss_lateral_sum: 'miss_lateral_sum' as const, - miss_vertical_sum: 'miss_vertical_sum' as const -} - -export const enumUtilityLineupProgressUpdateColumn = { - attempts: 'attempts' as const, - best_streak: 'best_streak' as const, - current_streak: 'current_streak' as const, - last_practiced_at: 'last_practiced_at' as const, - mastered_at: 'mastered_at' as const, - miss_along_sum: 'miss_along_sum' as const, - miss_lateral_sum: 'miss_lateral_sum' as const, - miss_samples: 'miss_samples' as const, - miss_vertical_sum: 'miss_vertical_sum' as const, - steam_id: 'steam_id' as const, - successes: 'successes' as const, - utility_lineup_id: 'utility_lineup_id' as const -} - -export const enumUtilityLineupRendersConstraint = { - utility_lineup_renders_one_in_flight_idx: 'utility_lineup_renders_one_in_flight_idx' as const, - utility_lineup_renders_pkey: 'utility_lineup_renders_pkey' as const -} - -export const enumUtilityLineupRendersSelectColumn = { - created_at: 'created_at' as const, - duration_ms: 'duration_ms' as const, - error_message: 'error_message' as const, - game_server_node_id: 'game_server_node_id' as const, - id: 'id' as const, - k8s_job_name: 'k8s_job_name' as const, - last_status_at: 'last_status_at' as const, - map_name: 'map_name' as const, - paused: 'paused' as const, - progress: 'progress' as const, - requested_by_steam_id: 'requested_by_steam_id' as const, - session_token: 'session_token' as const, - skip_reason: 'skip_reason' as const, - sort_index: 'sort_index' as const, - spec: 'spec' as const, - status: 'status' as const, - status_history: 'status_history' as const, - utility_lineup_id: 'utility_lineup_id' as const, - utility_practice_session_id: 'utility_practice_session_id' as const -} - -export const enumUtilityLineupRendersSelectColumnUtilityLineupRendersAggregateBoolExpBoolAndArgumentsColumns = { - paused: 'paused' as const -} - -export const enumUtilityLineupRendersSelectColumnUtilityLineupRendersAggregateBoolExpBoolOrArgumentsColumns = { - paused: 'paused' as const -} - -export const enumUtilityLineupRendersUpdateColumn = { - created_at: 'created_at' as const, - duration_ms: 'duration_ms' as const, - error_message: 'error_message' as const, - game_server_node_id: 'game_server_node_id' as const, - id: 'id' as const, - k8s_job_name: 'k8s_job_name' as const, - last_status_at: 'last_status_at' as const, - map_name: 'map_name' as const, - paused: 'paused' as const, - progress: 'progress' as const, - requested_by_steam_id: 'requested_by_steam_id' as const, - session_token: 'session_token' as const, - skip_reason: 'skip_reason' as const, - sort_index: 'sort_index' as const, - spec: 'spec' as const, - status: 'status' as const, - status_history: 'status_history' as const, - utility_lineup_id: 'utility_lineup_id' as const, - utility_practice_session_id: 'utility_practice_session_id' as const -} - -export const enumUtilityLineupRepairsConstraint = { - utility_lineup_repairs_open_idx: 'utility_lineup_repairs_open_idx' as const, - utility_lineup_repairs_pkey: 'utility_lineup_repairs_pkey' as const -} - -export const enumUtilityLineupRepairsSelectColumn = { - created_at: 'created_at' as const, - drift_distance: 'drift_distance' as const, - expires_at: 'expires_at' as const, - id: 'id' as const, - repaired_at: 'repaired_at' as const, - repaired_utility_lineup_id: 'repaired_utility_lineup_id' as const, - requested_by_steam_id: 'requested_by_steam_id' as const, - status: 'status' as const, - utility_drift_scan_id: 'utility_drift_scan_id' as const, - utility_lineup_id: 'utility_lineup_id' as const, - utility_practice_session_id: 'utility_practice_session_id' as const -} - -export const enumUtilityLineupRepairsSelectColumnUtilityLineupRepairsAggregateBoolExpAvgArgumentsColumns = { - drift_distance: 'drift_distance' as const -} - -export const enumUtilityLineupRepairsSelectColumnUtilityLineupRepairsAggregateBoolExpCorrArgumentsColumns = { - drift_distance: 'drift_distance' as const -} - -export const enumUtilityLineupRepairsSelectColumnUtilityLineupRepairsAggregateBoolExpCovarSampArgumentsColumns = { - drift_distance: 'drift_distance' as const -} - -export const enumUtilityLineupRepairsSelectColumnUtilityLineupRepairsAggregateBoolExpMaxArgumentsColumns = { - drift_distance: 'drift_distance' as const -} - -export const enumUtilityLineupRepairsSelectColumnUtilityLineupRepairsAggregateBoolExpMinArgumentsColumns = { - drift_distance: 'drift_distance' as const -} - -export const enumUtilityLineupRepairsSelectColumnUtilityLineupRepairsAggregateBoolExpStddevSampArgumentsColumns = { - drift_distance: 'drift_distance' as const -} - -export const enumUtilityLineupRepairsSelectColumnUtilityLineupRepairsAggregateBoolExpSumArgumentsColumns = { - drift_distance: 'drift_distance' as const -} - -export const enumUtilityLineupRepairsSelectColumnUtilityLineupRepairsAggregateBoolExpVarSampArgumentsColumns = { - drift_distance: 'drift_distance' as const -} - -export const enumUtilityLineupRepairsUpdateColumn = { - created_at: 'created_at' as const, - drift_distance: 'drift_distance' as const, - expires_at: 'expires_at' as const, - id: 'id' as const, - repaired_at: 'repaired_at' as const, - repaired_utility_lineup_id: 'repaired_utility_lineup_id' as const, - requested_by_steam_id: 'requested_by_steam_id' as const, - status: 'status' as const, - utility_drift_scan_id: 'utility_drift_scan_id' as const, - utility_lineup_id: 'utility_lineup_id' as const, - utility_practice_session_id: 'utility_practice_session_id' as const -} - -export const enumUtilityLineupVotesConstraint = { - utility_lineup_votes_pkey: 'utility_lineup_votes_pkey' as const -} - -export const enumUtilityLineupVotesSelectColumn = { - created_at: 'created_at' as const, - steam_id: 'steam_id' as const, - utility_lineup_id: 'utility_lineup_id' as const, - vote: 'vote' as const -} - -export const enumUtilityLineupVotesUpdateColumn = { - created_at: 'created_at' as const, - steam_id: 'steam_id' as const, - utility_lineup_id: 'utility_lineup_id' as const, - vote: 'vote' as const -} - -export const enumUtilityLineupsConstraint = { - utility_lineups_external_idx: 'utility_lineups_external_idx' as const, - utility_lineups_pkey: 'utility_lineups_pkey' as const -} - -export const enumUtilityLineupsSelectColumn = { - aim_tolerance: 'aim_tolerance' as const, - archived_at: 'archived_at' as const, - author_steam_id: 'author_steam_id' as const, - confidence: 'confidence' as const, - created_at: 'created_at' as const, - description: 'description' as const, - downvotes: 'downvotes' as const, - external_id: 'external_id' as const, - eye_z: 'eye_z' as const, - favorites: 'favorites' as const, - flight_time_ms: 'flight_time_ms' as const, - forked_from_utility_lineup_id: 'forked_from_utility_lineup_id' as const, - id: 'id' as const, - initial_pos_x: 'initial_pos_x' as const, - initial_pos_y: 'initial_pos_y' as const, - initial_pos_z: 'initial_pos_z' as const, - initial_vel_x: 'initial_vel_x' as const, - initial_vel_y: 'initial_vel_y' as const, - initial_vel_z: 'initial_vel_z' as const, - jump_throw_bind: 'jump_throw_bind' as const, - land_x: 'land_x' as const, - land_y: 'land_y' as const, - land_z: 'land_z' as const, - lineup_bucket: 'lineup_bucket' as const, - map_name: 'map_name' as const, - name: 'name' as const, - origin_source: 'origin_source' as const, - origin_x: 'origin_x' as const, - origin_y: 'origin_y' as const, - origin_z: 'origin_z' as const, - practice_attempts: 'practice_attempts' as const, - practice_players: 'practice_players' as const, - practice_successes: 'practice_successes' as const, - preview_duration_ms: 'preview_duration_ms' as const, - preview_file: 'preview_file' as const, - preview_rendered_at: 'preview_rendered_at' as const, - preview_thumbnail: 'preview_thumbnail' as const, - public_requested_at: 'public_requested_at' as const, - public_review_note: 'public_review_note' as const, - public_reviewed_at: 'public_reviewed_at' as const, - public_reviewed_by: 'public_reviewed_by' as const, - side: 'side' as const, - source_grenade_id: 'source_grenade_id' as const, - source_match_id: 'source_match_id' as const, - source_match_map_id: 'source_match_map_id' as const, - source_url: 'source_url' as const, - tags: 'tags' as const, - team_id: 'team_id' as const, - technique: 'technique' as const, - throw_strength: 'throw_strength' as const, - trajectory_file: 'trajectory_file' as const, - trajectory_preview: 'trajectory_preview' as const, - trajectory_size: 'trajectory_size' as const, - updated_at: 'updated_at' as const, - upvotes: 'upvotes' as const, - utility_type: 'utility_type' as const, - verified_at: 'verified_at' as const, - view_pitch: 'view_pitch' as const, - view_pitch_delta: 'view_pitch_delta' as const, - view_yaw: 'view_yaw' as const, - view_yaw_delta: 'view_yaw_delta' as const, - visibility: 'visibility' as const, - workshop_map_id: 'workshop_map_id' as const -} - -export const enumUtilityLineupsSelectColumnUtilityLineupsAggregateBoolExpAvgArgumentsColumns = { - aim_tolerance: 'aim_tolerance' as const, - eye_z: 'eye_z' as const, - initial_pos_x: 'initial_pos_x' as const, - initial_pos_y: 'initial_pos_y' as const, - initial_pos_z: 'initial_pos_z' as const, - initial_vel_x: 'initial_vel_x' as const, - initial_vel_y: 'initial_vel_y' as const, - initial_vel_z: 'initial_vel_z' as const, - land_x: 'land_x' as const, - land_y: 'land_y' as const, - land_z: 'land_z' as const, - origin_x: 'origin_x' as const, - origin_y: 'origin_y' as const, - origin_z: 'origin_z' as const, - view_pitch: 'view_pitch' as const, - view_pitch_delta: 'view_pitch_delta' as const, - view_yaw: 'view_yaw' as const, - view_yaw_delta: 'view_yaw_delta' as const -} - -export const enumUtilityLineupsSelectColumnUtilityLineupsAggregateBoolExpBoolAndArgumentsColumns = { - jump_throw_bind: 'jump_throw_bind' as const -} - -export const enumUtilityLineupsSelectColumnUtilityLineupsAggregateBoolExpBoolOrArgumentsColumns = { - jump_throw_bind: 'jump_throw_bind' as const -} - -export const enumUtilityLineupsSelectColumnUtilityLineupsAggregateBoolExpCorrArgumentsColumns = { - aim_tolerance: 'aim_tolerance' as const, - eye_z: 'eye_z' as const, - initial_pos_x: 'initial_pos_x' as const, - initial_pos_y: 'initial_pos_y' as const, - initial_pos_z: 'initial_pos_z' as const, - initial_vel_x: 'initial_vel_x' as const, - initial_vel_y: 'initial_vel_y' as const, - initial_vel_z: 'initial_vel_z' as const, - land_x: 'land_x' as const, - land_y: 'land_y' as const, - land_z: 'land_z' as const, - origin_x: 'origin_x' as const, - origin_y: 'origin_y' as const, - origin_z: 'origin_z' as const, - view_pitch: 'view_pitch' as const, - view_pitch_delta: 'view_pitch_delta' as const, - view_yaw: 'view_yaw' as const, - view_yaw_delta: 'view_yaw_delta' as const -} - -export const enumUtilityLineupsSelectColumnUtilityLineupsAggregateBoolExpCovarSampArgumentsColumns = { - aim_tolerance: 'aim_tolerance' as const, - eye_z: 'eye_z' as const, - initial_pos_x: 'initial_pos_x' as const, - initial_pos_y: 'initial_pos_y' as const, - initial_pos_z: 'initial_pos_z' as const, - initial_vel_x: 'initial_vel_x' as const, - initial_vel_y: 'initial_vel_y' as const, - initial_vel_z: 'initial_vel_z' as const, - land_x: 'land_x' as const, - land_y: 'land_y' as const, - land_z: 'land_z' as const, - origin_x: 'origin_x' as const, - origin_y: 'origin_y' as const, - origin_z: 'origin_z' as const, - view_pitch: 'view_pitch' as const, - view_pitch_delta: 'view_pitch_delta' as const, - view_yaw: 'view_yaw' as const, - view_yaw_delta: 'view_yaw_delta' as const -} - -export const enumUtilityLineupsSelectColumnUtilityLineupsAggregateBoolExpMaxArgumentsColumns = { - aim_tolerance: 'aim_tolerance' as const, - eye_z: 'eye_z' as const, - initial_pos_x: 'initial_pos_x' as const, - initial_pos_y: 'initial_pos_y' as const, - initial_pos_z: 'initial_pos_z' as const, - initial_vel_x: 'initial_vel_x' as const, - initial_vel_y: 'initial_vel_y' as const, - initial_vel_z: 'initial_vel_z' as const, - land_x: 'land_x' as const, - land_y: 'land_y' as const, - land_z: 'land_z' as const, - origin_x: 'origin_x' as const, - origin_y: 'origin_y' as const, - origin_z: 'origin_z' as const, - view_pitch: 'view_pitch' as const, - view_pitch_delta: 'view_pitch_delta' as const, - view_yaw: 'view_yaw' as const, - view_yaw_delta: 'view_yaw_delta' as const -} - -export const enumUtilityLineupsSelectColumnUtilityLineupsAggregateBoolExpMinArgumentsColumns = { - aim_tolerance: 'aim_tolerance' as const, - eye_z: 'eye_z' as const, - initial_pos_x: 'initial_pos_x' as const, - initial_pos_y: 'initial_pos_y' as const, - initial_pos_z: 'initial_pos_z' as const, - initial_vel_x: 'initial_vel_x' as const, - initial_vel_y: 'initial_vel_y' as const, - initial_vel_z: 'initial_vel_z' as const, - land_x: 'land_x' as const, - land_y: 'land_y' as const, - land_z: 'land_z' as const, - origin_x: 'origin_x' as const, - origin_y: 'origin_y' as const, - origin_z: 'origin_z' as const, - view_pitch: 'view_pitch' as const, - view_pitch_delta: 'view_pitch_delta' as const, - view_yaw: 'view_yaw' as const, - view_yaw_delta: 'view_yaw_delta' as const -} - -export const enumUtilityLineupsSelectColumnUtilityLineupsAggregateBoolExpStddevSampArgumentsColumns = { - aim_tolerance: 'aim_tolerance' as const, - eye_z: 'eye_z' as const, - initial_pos_x: 'initial_pos_x' as const, - initial_pos_y: 'initial_pos_y' as const, - initial_pos_z: 'initial_pos_z' as const, - initial_vel_x: 'initial_vel_x' as const, - initial_vel_y: 'initial_vel_y' as const, - initial_vel_z: 'initial_vel_z' as const, - land_x: 'land_x' as const, - land_y: 'land_y' as const, - land_z: 'land_z' as const, - origin_x: 'origin_x' as const, - origin_y: 'origin_y' as const, - origin_z: 'origin_z' as const, - view_pitch: 'view_pitch' as const, - view_pitch_delta: 'view_pitch_delta' as const, - view_yaw: 'view_yaw' as const, - view_yaw_delta: 'view_yaw_delta' as const -} - -export const enumUtilityLineupsSelectColumnUtilityLineupsAggregateBoolExpSumArgumentsColumns = { - aim_tolerance: 'aim_tolerance' as const, - eye_z: 'eye_z' as const, - initial_pos_x: 'initial_pos_x' as const, - initial_pos_y: 'initial_pos_y' as const, - initial_pos_z: 'initial_pos_z' as const, - initial_vel_x: 'initial_vel_x' as const, - initial_vel_y: 'initial_vel_y' as const, - initial_vel_z: 'initial_vel_z' as const, - land_x: 'land_x' as const, - land_y: 'land_y' as const, - land_z: 'land_z' as const, - origin_x: 'origin_x' as const, - origin_y: 'origin_y' as const, - origin_z: 'origin_z' as const, - view_pitch: 'view_pitch' as const, - view_pitch_delta: 'view_pitch_delta' as const, - view_yaw: 'view_yaw' as const, - view_yaw_delta: 'view_yaw_delta' as const -} - -export const enumUtilityLineupsSelectColumnUtilityLineupsAggregateBoolExpVarSampArgumentsColumns = { - aim_tolerance: 'aim_tolerance' as const, - eye_z: 'eye_z' as const, - initial_pos_x: 'initial_pos_x' as const, - initial_pos_y: 'initial_pos_y' as const, - initial_pos_z: 'initial_pos_z' as const, - initial_vel_x: 'initial_vel_x' as const, - initial_vel_y: 'initial_vel_y' as const, - initial_vel_z: 'initial_vel_z' as const, - land_x: 'land_x' as const, - land_y: 'land_y' as const, - land_z: 'land_z' as const, - origin_x: 'origin_x' as const, - origin_y: 'origin_y' as const, - origin_z: 'origin_z' as const, - view_pitch: 'view_pitch' as const, - view_pitch_delta: 'view_pitch_delta' as const, - view_yaw: 'view_yaw' as const, - view_yaw_delta: 'view_yaw_delta' as const -} - -export const enumUtilityLineupsUpdateColumn = { - aim_tolerance: 'aim_tolerance' as const, - archived_at: 'archived_at' as const, - author_steam_id: 'author_steam_id' as const, - confidence: 'confidence' as const, - created_at: 'created_at' as const, - description: 'description' as const, - downvotes: 'downvotes' as const, - external_id: 'external_id' as const, - eye_z: 'eye_z' as const, - favorites: 'favorites' as const, - flight_time_ms: 'flight_time_ms' as const, - forked_from_utility_lineup_id: 'forked_from_utility_lineup_id' as const, - id: 'id' as const, - initial_pos_x: 'initial_pos_x' as const, - initial_pos_y: 'initial_pos_y' as const, - initial_pos_z: 'initial_pos_z' as const, - initial_vel_x: 'initial_vel_x' as const, - initial_vel_y: 'initial_vel_y' as const, - initial_vel_z: 'initial_vel_z' as const, - jump_throw_bind: 'jump_throw_bind' as const, - land_x: 'land_x' as const, - land_y: 'land_y' as const, - land_z: 'land_z' as const, - map_name: 'map_name' as const, - name: 'name' as const, - origin_source: 'origin_source' as const, - origin_x: 'origin_x' as const, - origin_y: 'origin_y' as const, - origin_z: 'origin_z' as const, - practice_attempts: 'practice_attempts' as const, - practice_players: 'practice_players' as const, - practice_successes: 'practice_successes' as const, - preview_duration_ms: 'preview_duration_ms' as const, - preview_file: 'preview_file' as const, - preview_rendered_at: 'preview_rendered_at' as const, - preview_thumbnail: 'preview_thumbnail' as const, - public_requested_at: 'public_requested_at' as const, - public_review_note: 'public_review_note' as const, - public_reviewed_at: 'public_reviewed_at' as const, - public_reviewed_by: 'public_reviewed_by' as const, - side: 'side' as const, - source_grenade_id: 'source_grenade_id' as const, - source_match_id: 'source_match_id' as const, - source_match_map_id: 'source_match_map_id' as const, - source_url: 'source_url' as const, - tags: 'tags' as const, - team_id: 'team_id' as const, - technique: 'technique' as const, - throw_strength: 'throw_strength' as const, - trajectory_file: 'trajectory_file' as const, - trajectory_preview: 'trajectory_preview' as const, - trajectory_size: 'trajectory_size' as const, - updated_at: 'updated_at' as const, - upvotes: 'upvotes' as const, - utility_type: 'utility_type' as const, - verified_at: 'verified_at' as const, - view_pitch: 'view_pitch' as const, - view_pitch_delta: 'view_pitch_delta' as const, - view_yaw: 'view_yaw' as const, - view_yaw_delta: 'view_yaw_delta' as const, - visibility: 'visibility' as const, - workshop_map_id: 'workshop_map_id' as const -} - -export const enumUtilityMetaLineupsConstraint = { - utility_meta_lineups_pkey: 'utility_meta_lineups_pkey' as const -} - -export const enumUtilityMetaLineupsSelectColumn = { - first_seen_at: 'first_seen_at' as const, - land_x: 'land_x' as const, - land_y: 'land_y' as const, - land_z: 'land_z' as const, - last_seen_at: 'last_seen_at' as const, - lineup_bucket: 'lineup_bucket' as const, - lineups: 'lineups' as const, - map_name: 'map_name' as const, - matches: 'matches' as const, - origin_x: 'origin_x' as const, - origin_y: 'origin_y' as const, - origin_z: 'origin_z' as const, - refreshed_at: 'refreshed_at' as const, - side: 'side' as const, - technique: 'technique' as const, - throw_strength: 'throw_strength' as const, - throwers: 'throwers' as const, - throws: 'throws' as const, - utility_type: 'utility_type' as const, - view_pitch: 'view_pitch' as const, - view_yaw: 'view_yaw' as const -} - -export const enumUtilityMetaLineupsUpdateColumn = { - first_seen_at: 'first_seen_at' as const, - land_x: 'land_x' as const, - land_y: 'land_y' as const, - land_z: 'land_z' as const, - last_seen_at: 'last_seen_at' as const, - lineup_bucket: 'lineup_bucket' as const, - lineups: 'lineups' as const, - map_name: 'map_name' as const, - matches: 'matches' as const, - origin_x: 'origin_x' as const, - origin_y: 'origin_y' as const, - origin_z: 'origin_z' as const, - refreshed_at: 'refreshed_at' as const, - side: 'side' as const, - technique: 'technique' as const, - throw_strength: 'throw_strength' as const, - throwers: 'throwers' as const, - throws: 'throws' as const, - utility_type: 'utility_type' as const, - view_pitch: 'view_pitch' as const, - view_yaw: 'view_yaw' as const -} - -export const enumUtilityPlaybookStepsConstraint = { - utility_playbook_steps_order_key: 'utility_playbook_steps_order_key' as const, - utility_playbook_steps_pkey: 'utility_playbook_steps_pkey' as const -} - -export const enumUtilityPlaybookStepsSelectColumn = { - assigned_steam_id: 'assigned_steam_id' as const, - created_at: 'created_at' as const, - id: 'id' as const, - note: 'note' as const, - offset_ms: 'offset_ms' as const, - playbook_id: 'playbook_id' as const, - step_order: 'step_order' as const, - utility_lineup_id: 'utility_lineup_id' as const -} - -export const enumUtilityPlaybookStepsUpdateColumn = { - assigned_steam_id: 'assigned_steam_id' as const, - created_at: 'created_at' as const, - id: 'id' as const, - note: 'note' as const, - offset_ms: 'offset_ms' as const, - playbook_id: 'playbook_id' as const, - step_order: 'step_order' as const, - utility_lineup_id: 'utility_lineup_id' as const -} - -export const enumUtilityPlaybooksConstraint = { - utility_playbooks_pkey: 'utility_playbooks_pkey' as const -} - -export const enumUtilityPlaybooksSelectColumn = { - created_at: 'created_at' as const, - description: 'description' as const, - id: 'id' as const, - map_name: 'map_name' as const, - name: 'name' as const, - owner_steam_id: 'owner_steam_id' as const, - side: 'side' as const, - team_id: 'team_id' as const, - updated_at: 'updated_at' as const, - visibility: 'visibility' as const -} - -export const enumUtilityPlaybooksUpdateColumn = { - created_at: 'created_at' as const, - description: 'description' as const, - id: 'id' as const, - map_name: 'map_name' as const, - name: 'name' as const, - owner_steam_id: 'owner_steam_id' as const, - side: 'side' as const, - team_id: 'team_id' as const, - updated_at: 'updated_at' as const, - visibility: 'visibility' as const -} - -export const enumUtilityPracticeInvitesConstraint = { - utility_practice_invites_pkey: 'utility_practice_invites_pkey' as const -} - -export const enumUtilityPracticeInvitesSelectColumn = { - created_at: 'created_at' as const, - invited_by_steam_id: 'invited_by_steam_id' as const, - steam_id: 'steam_id' as const, - utility_practice_session_id: 'utility_practice_session_id' as const -} - -export const enumUtilityPracticeInvitesUpdateColumn = { - created_at: 'created_at' as const, - invited_by_steam_id: 'invited_by_steam_id' as const, - steam_id: 'steam_id' as const, - utility_practice_session_id: 'utility_practice_session_id' as const -} - -export const enumUtilityPracticeSessionsConstraint = { - utility_practice_sessions_invite_code_idx: 'utility_practice_sessions_invite_code_idx' as const, - utility_practice_sessions_match_key: 'utility_practice_sessions_match_key' as const, - utility_practice_sessions_one_live_per_host_idx: 'utility_practice_sessions_one_live_per_host_idx' as const, - utility_practice_sessions_pkey: 'utility_practice_sessions_pkey' as const -} - -export const enumUtilityPracticeSessionsSelectColumn = { - access: 'access' as const, - collection_id: 'collection_id' as const, - created_at: 'created_at' as const, - empty_since: 'empty_since' as const, - expires_at: 'expires_at' as const, - failure_reason: 'failure_reason' as const, - first_joined_at: 'first_joined_at' as const, - host_steam_id: 'host_steam_id' as const, - id: 'id' as const, - invite_code: 'invite_code' as const, - is_open: 'is_open' as const, - is_render: 'is_render' as const, - last_occupied_at: 'last_occupied_at' as const, - map_changing_at: 'map_changing_at' as const, - map_name: 'map_name' as const, - match_id: 'match_id' as const, - notify_when_ready: 'notify_when_ready' as const, - playbook_id: 'playbook_id' as const, - region: 'region' as const, - status: 'status' as const, - team_id: 'team_id' as const, - updated_at: 'updated_at' as const -} - -export const enumUtilityPracticeSessionsSelectColumnUtilityPracticeSessionsAggregateBoolExpBoolAndArgumentsColumns = { - is_open: 'is_open' as const, - is_render: 'is_render' as const, - notify_when_ready: 'notify_when_ready' as const -} - -export const enumUtilityPracticeSessionsSelectColumnUtilityPracticeSessionsAggregateBoolExpBoolOrArgumentsColumns = { - is_open: 'is_open' as const, - is_render: 'is_render' as const, - notify_when_ready: 'notify_when_ready' as const -} - -export const enumUtilityPracticeSessionsUpdateColumn = { - access: 'access' as const, - collection_id: 'collection_id' as const, - created_at: 'created_at' as const, - empty_since: 'empty_since' as const, - expires_at: 'expires_at' as const, - failure_reason: 'failure_reason' as const, - first_joined_at: 'first_joined_at' as const, - host_steam_id: 'host_steam_id' as const, - id: 'id' as const, - invite_code: 'invite_code' as const, - is_open: 'is_open' as const, - is_render: 'is_render' as const, - last_occupied_at: 'last_occupied_at' as const, - map_changing_at: 'map_changing_at' as const, - map_name: 'map_name' as const, - match_id: 'match_id' as const, - notify_when_ready: 'notify_when_ready' as const, - playbook_id: 'playbook_id' as const, - region: 'region' as const, - status: 'status' as const, - team_id: 'team_id' as const, - updated_at: 'updated_at' as const -} - -export const enumVEventPlayerStatsSelectColumn = { - assists: 'assists' as const, - deaths: 'deaths' as const, - event_id: 'event_id' as const, - headshot_percentage: 'headshot_percentage' as const, - headshots: 'headshots' as const, - kdr: 'kdr' as const, - kills: 'kills' as const, - matches_played: 'matches_played' as const, - player_steam_id: 'player_steam_id' as const -} - -export const enumVEventPlayerStatsSelectColumnVEventPlayerStatsAggregateBoolExpAvgArgumentsColumns = { - headshot_percentage: 'headshot_percentage' as const, - kdr: 'kdr' as const -} - -export const enumVEventPlayerStatsSelectColumnVEventPlayerStatsAggregateBoolExpCorrArgumentsColumns = { - headshot_percentage: 'headshot_percentage' as const, - kdr: 'kdr' as const -} - -export const enumVEventPlayerStatsSelectColumnVEventPlayerStatsAggregateBoolExpCovarSampArgumentsColumns = { - headshot_percentage: 'headshot_percentage' as const, - kdr: 'kdr' as const -} - -export const enumVEventPlayerStatsSelectColumnVEventPlayerStatsAggregateBoolExpMaxArgumentsColumns = { - headshot_percentage: 'headshot_percentage' as const, - kdr: 'kdr' as const -} - -export const enumVEventPlayerStatsSelectColumnVEventPlayerStatsAggregateBoolExpMinArgumentsColumns = { - headshot_percentage: 'headshot_percentage' as const, - kdr: 'kdr' as const -} - -export const enumVEventPlayerStatsSelectColumnVEventPlayerStatsAggregateBoolExpStddevSampArgumentsColumns = { - headshot_percentage: 'headshot_percentage' as const, - kdr: 'kdr' as const -} - -export const enumVEventPlayerStatsSelectColumnVEventPlayerStatsAggregateBoolExpSumArgumentsColumns = { - headshot_percentage: 'headshot_percentage' as const, - kdr: 'kdr' as const -} - -export const enumVEventPlayerStatsSelectColumnVEventPlayerStatsAggregateBoolExpVarSampArgumentsColumns = { - headshot_percentage: 'headshot_percentage' as const, - kdr: 'kdr' as const -} - -export const enumVGpuPoolStatusSelectColumn = { - demo_free_gpu_nodes: 'demo_free_gpu_nodes' as const, - demo_in_progress: 'demo_in_progress' as const, - demo_total_gpu_nodes: 'demo_total_gpu_nodes' as const, - free_gpu_nodes: 'free_gpu_nodes' as const, - free_gpu_nodes_for_batch: 'free_gpu_nodes_for_batch' as const, - highlights_in_progress: 'highlights_in_progress' as const, - id: 'id' as const, - live_in_progress: 'live_in_progress' as const, - registered_gpu_nodes: 'registered_gpu_nodes' as const, - rendering_total_gpu_nodes: 'rendering_total_gpu_nodes' as const, - renders_paused_for_active_match: 'renders_paused_for_active_match' as const, - streaming_free_gpu_nodes: 'streaming_free_gpu_nodes' as const, - streaming_total_gpu_nodes: 'streaming_total_gpu_nodes' as const, - total_gpu_nodes: 'total_gpu_nodes' as const -} - -export const enumVLeagueDivisionStandingsSelectColumn = { - head_to_head_match_wins: 'head_to_head_match_wins' as const, - head_to_head_rounds_won: 'head_to_head_rounds_won' as const, - league_division_id: 'league_division_id' as const, - league_season_division_id: 'league_season_division_id' as const, - league_season_id: 'league_season_id' as const, - league_team_id: 'league_team_id' as const, - league_team_season_id: 'league_team_season_id' as const, - losses: 'losses' as const, - maps_lost: 'maps_lost' as const, - maps_won: 'maps_won' as const, - matches_played: 'matches_played' as const, - matches_remaining: 'matches_remaining' as const, - rank: 'rank' as const, - round_diff: 'round_diff' as const, - rounds_lost: 'rounds_lost' as const, - rounds_won: 'rounds_won' as const, - tournament_team_id: 'tournament_team_id' as const, - wins: 'wins' as const -} - -export const enumVLeagueSeasonPlayerStatsSelectColumn = { - assists: 'assists' as const, - deaths: 'deaths' as const, - headshot_percentage: 'headshot_percentage' as const, - headshots: 'headshots' as const, - kdr: 'kdr' as const, - kills: 'kills' as const, - league_division_id: 'league_division_id' as const, - league_season_division_id: 'league_season_division_id' as const, - league_season_id: 'league_season_id' as const, - league_team_id: 'league_team_id' as const, - league_team_season_id: 'league_team_season_id' as const, - matches_played: 'matches_played' as const, - player_steam_id: 'player_steam_id' as const -} - -export const enumVLeagueSeasonPlayerStatsSelectColumnVLeagueSeasonPlayerStatsAggregateBoolExpAvgArgumentsColumns = { - headshot_percentage: 'headshot_percentage' as const, - kdr: 'kdr' as const -} - -export const enumVLeagueSeasonPlayerStatsSelectColumnVLeagueSeasonPlayerStatsAggregateBoolExpCorrArgumentsColumns = { - headshot_percentage: 'headshot_percentage' as const, - kdr: 'kdr' as const -} - -export const enumVLeagueSeasonPlayerStatsSelectColumnVLeagueSeasonPlayerStatsAggregateBoolExpCovarSampArgumentsColumns = { - headshot_percentage: 'headshot_percentage' as const, - kdr: 'kdr' as const -} - -export const enumVLeagueSeasonPlayerStatsSelectColumnVLeagueSeasonPlayerStatsAggregateBoolExpMaxArgumentsColumns = { - headshot_percentage: 'headshot_percentage' as const, - kdr: 'kdr' as const -} - -export const enumVLeagueSeasonPlayerStatsSelectColumnVLeagueSeasonPlayerStatsAggregateBoolExpMinArgumentsColumns = { - headshot_percentage: 'headshot_percentage' as const, - kdr: 'kdr' as const -} - -export const enumVLeagueSeasonPlayerStatsSelectColumnVLeagueSeasonPlayerStatsAggregateBoolExpStddevSampArgumentsColumns = { - headshot_percentage: 'headshot_percentage' as const, - kdr: 'kdr' as const -} - -export const enumVLeagueSeasonPlayerStatsSelectColumnVLeagueSeasonPlayerStatsAggregateBoolExpSumArgumentsColumns = { - headshot_percentage: 'headshot_percentage' as const, - kdr: 'kdr' as const -} - -export const enumVLeagueSeasonPlayerStatsSelectColumnVLeagueSeasonPlayerStatsAggregateBoolExpVarSampArgumentsColumns = { - headshot_percentage: 'headshot_percentage' as const, - kdr: 'kdr' as const -} - -export const enumVMatchCaptainsSelectColumn = { - captain: 'captain' as const, - discord_id: 'discord_id' as const, - id: 'id' as const, - match_lineup_id: 'match_lineup_id' as const, - placeholder_name: 'placeholder_name' as const, - steam_id: 'steam_id' as const -} - -export const enumVMatchClutchesSelectColumn = { - against_count: 'against_count' as const, - clutcher_steam_id: 'clutcher_steam_id' as const, - kills_in_clutch: 'kills_in_clutch' as const, - match_id: 'match_id' as const, - match_lineup_id: 'match_lineup_id' as const, - match_map_id: 'match_map_id' as const, - outcome: 'outcome' as const, - round: 'round' as const, - side: 'side' as const -} - -export const enumVMatchKillPairsSelectColumn = { - killer_side: 'killer_side' as const, - killer_steam_id: 'killer_steam_id' as const, - kills: 'kills' as const, - match_id: 'match_id' as const, - match_map_id: 'match_map_id' as const, - victim_side: 'victim_side' as const, - victim_steam_id: 'victim_steam_id' as const, - weapon: 'weapon' as const -} - -export const enumVMatchLineupBuyTypesSelectColumn = { - match_id: 'match_id' as const, - match_lineup_id: 'match_lineup_id' as const, - match_map_id: 'match_map_id' as const, - matchup: 'matchup' as const, - rounds: 'rounds' as const, - side: 'side' as const, - wins: 'wins' as const -} - -export const enumVMatchLineupMapStatsSelectColumn = { - man_adv_rounds: 'man_adv_rounds' as const, - man_adv_wins: 'man_adv_wins' as const, - man_dis_rounds: 'man_dis_rounds' as const, - man_dis_wins: 'man_dis_wins' as const, - match_id: 'match_id' as const, - match_lineup_id: 'match_lineup_id' as const, - match_map_id: 'match_map_id' as const, - opening_attempts: 'opening_attempts' as const, - opening_wins: 'opening_wins' as const, - pistol_rounds: 'pistol_rounds' as const, - pistol_wins: 'pistol_wins' as const, - round_wins: 'round_wins' as const, - rounds: 'rounds' as const, - side: 'side' as const, - won_buy_eco: 'won_buy_eco' as const, - won_buy_force: 'won_buy_force' as const, - won_buy_full: 'won_buy_full' as const, - won_buy_pistol: 'won_buy_pistol' as const -} - -export const enumVMatchMapBackupRoundsSelectColumn = { - has_backup_file: 'has_backup_file' as const, - match_map_id: 'match_map_id' as const, - round: 'round' as const -} - -export const enumVMatchPlayerBuyTypesSelectColumn = { - deaths: 'deaths' as const, - kills: 'kills' as const, - match_id: 'match_id' as const, - match_lineup_id: 'match_lineup_id' as const, - match_map_id: 'match_map_id' as const, - matchup: 'matchup' as const, - rounds: 'rounds' as const, - side: 'side' as const, - steam_id: 'steam_id' as const -} - -export const enumVMatchPlayerOpeningDuelsSelectColumn = { - attempts: 'attempts' as const, - deaths: 'deaths' as const, - match_id: 'match_id' as const, - match_lineup_id: 'match_lineup_id' as const, - match_map_id: 'match_map_id' as const, - side: 'side' as const, - steam_id: 'steam_id' as const, - traded_deaths: 'traded_deaths' as const, - wins: 'wins' as const -} - -export const enumVPlayerArchNemesisSelectColumn = { - attacker_id: 'attacker_id' as const, - kill_count: 'kill_count' as const, - victim_id: 'victim_id' as const -} - -export const enumVPlayerDamageSelectColumn = { - avg_damage_per_round: 'avg_damage_per_round' as const, - player_steam_id: 'player_steam_id' as const, - total_damage: 'total_damage' as const, - total_rounds: 'total_rounds' as const -} - -export const enumVPlayerEloSelectColumn = { - actual_score: 'actual_score' as const, - assists: 'assists' as const, - current_elo: 'current_elo' as const, - damage: 'damage' as const, - damage_percent: 'damage_percent' as const, - deaths: 'deaths' as const, - elo_change: 'elo_change' as const, - expected_score: 'expected_score' as const, - impact: 'impact' as const, - k_factor: 'k_factor' as const, - kda: 'kda' as const, - kills: 'kills' as const, - map_losses: 'map_losses' as const, - map_wins: 'map_wins' as const, - match_created_at: 'match_created_at' as const, - match_id: 'match_id' as const, - match_result: 'match_result' as const, - opponent_team_elo_avg: 'opponent_team_elo_avg' as const, - performance_multiplier: 'performance_multiplier' as const, - player_name: 'player_name' as const, - player_steam_id: 'player_steam_id' as const, - player_team_elo_avg: 'player_team_elo_avg' as const, - rating_for_expected: 'rating_for_expected' as const, - season_id: 'season_id' as const, - series_multiplier: 'series_multiplier' as const, - team_avg_kda: 'team_avg_kda' as const, - type: 'type' as const, - updated_elo: 'updated_elo' as const -} - -export const enumVPlayerEloSelectColumnVPlayerEloAggregateBoolExpAvgArgumentsColumns = { - actual_score: 'actual_score' as const, - damage_percent: 'damage_percent' as const, - expected_score: 'expected_score' as const, - impact: 'impact' as const, - kda: 'kda' as const, - opponent_team_elo_avg: 'opponent_team_elo_avg' as const, - performance_multiplier: 'performance_multiplier' as const, - player_team_elo_avg: 'player_team_elo_avg' as const, - rating_for_expected: 'rating_for_expected' as const, - team_avg_kda: 'team_avg_kda' as const -} - -export const enumVPlayerEloSelectColumnVPlayerEloAggregateBoolExpCorrArgumentsColumns = { - actual_score: 'actual_score' as const, - damage_percent: 'damage_percent' as const, - expected_score: 'expected_score' as const, - impact: 'impact' as const, - kda: 'kda' as const, - opponent_team_elo_avg: 'opponent_team_elo_avg' as const, - performance_multiplier: 'performance_multiplier' as const, - player_team_elo_avg: 'player_team_elo_avg' as const, - rating_for_expected: 'rating_for_expected' as const, - team_avg_kda: 'team_avg_kda' as const -} - -export const enumVPlayerEloSelectColumnVPlayerEloAggregateBoolExpCovarSampArgumentsColumns = { - actual_score: 'actual_score' as const, - damage_percent: 'damage_percent' as const, - expected_score: 'expected_score' as const, - impact: 'impact' as const, - kda: 'kda' as const, - opponent_team_elo_avg: 'opponent_team_elo_avg' as const, - performance_multiplier: 'performance_multiplier' as const, - player_team_elo_avg: 'player_team_elo_avg' as const, - rating_for_expected: 'rating_for_expected' as const, - team_avg_kda: 'team_avg_kda' as const -} - -export const enumVPlayerEloSelectColumnVPlayerEloAggregateBoolExpMaxArgumentsColumns = { - actual_score: 'actual_score' as const, - damage_percent: 'damage_percent' as const, - expected_score: 'expected_score' as const, - impact: 'impact' as const, - kda: 'kda' as const, - opponent_team_elo_avg: 'opponent_team_elo_avg' as const, - performance_multiplier: 'performance_multiplier' as const, - player_team_elo_avg: 'player_team_elo_avg' as const, - rating_for_expected: 'rating_for_expected' as const, - team_avg_kda: 'team_avg_kda' as const -} - -export const enumVPlayerEloSelectColumnVPlayerEloAggregateBoolExpMinArgumentsColumns = { - actual_score: 'actual_score' as const, - damage_percent: 'damage_percent' as const, - expected_score: 'expected_score' as const, - impact: 'impact' as const, - kda: 'kda' as const, - opponent_team_elo_avg: 'opponent_team_elo_avg' as const, - performance_multiplier: 'performance_multiplier' as const, - player_team_elo_avg: 'player_team_elo_avg' as const, - rating_for_expected: 'rating_for_expected' as const, - team_avg_kda: 'team_avg_kda' as const -} - -export const enumVPlayerEloSelectColumnVPlayerEloAggregateBoolExpStddevSampArgumentsColumns = { - actual_score: 'actual_score' as const, - damage_percent: 'damage_percent' as const, - expected_score: 'expected_score' as const, - impact: 'impact' as const, - kda: 'kda' as const, - opponent_team_elo_avg: 'opponent_team_elo_avg' as const, - performance_multiplier: 'performance_multiplier' as const, - player_team_elo_avg: 'player_team_elo_avg' as const, - rating_for_expected: 'rating_for_expected' as const, - team_avg_kda: 'team_avg_kda' as const -} - -export const enumVPlayerEloSelectColumnVPlayerEloAggregateBoolExpSumArgumentsColumns = { - actual_score: 'actual_score' as const, - damage_percent: 'damage_percent' as const, - expected_score: 'expected_score' as const, - impact: 'impact' as const, - kda: 'kda' as const, - opponent_team_elo_avg: 'opponent_team_elo_avg' as const, - performance_multiplier: 'performance_multiplier' as const, - player_team_elo_avg: 'player_team_elo_avg' as const, - rating_for_expected: 'rating_for_expected' as const, - team_avg_kda: 'team_avg_kda' as const -} - -export const enumVPlayerEloSelectColumnVPlayerEloAggregateBoolExpVarSampArgumentsColumns = { - actual_score: 'actual_score' as const, - damage_percent: 'damage_percent' as const, - expected_score: 'expected_score' as const, - impact: 'impact' as const, - kda: 'kda' as const, - opponent_team_elo_avg: 'opponent_team_elo_avg' as const, - performance_multiplier: 'performance_multiplier' as const, - player_team_elo_avg: 'player_team_elo_avg' as const, - rating_for_expected: 'rating_for_expected' as const, - team_avg_kda: 'team_avg_kda' as const -} - -export const enumVPlayerMapLossesSelectColumn = { - map_id: 'map_id' as const, - match_id: 'match_id' as const, - started_at: 'started_at' as const, - steam_id: 'steam_id' as const -} - -export const enumVPlayerMapWinsSelectColumn = { - map_id: 'map_id' as const, - match_id: 'match_id' as const, - started_at: 'started_at' as const, - steam_id: 'steam_id' as const -} - -export const enumVPlayerMatchHeadToHeadSelectColumn = { - attacked_steam_id: 'attacked_steam_id' as const, - attacker_steam_id: 'attacker_steam_id' as const, - damage_dealt: 'damage_dealt' as const, - flash_count: 'flash_count' as const, - headshot_kills: 'headshot_kills' as const, - hits: 'hits' as const, - kills: 'kills' as const, - match_id: 'match_id' as const -} - -export const enumVPlayerMatchMapHltvSelectColumn = { - adr: 'adr' as const, - apr: 'apr' as const, - dpr: 'dpr' as const, - hltv_rating: 'hltv_rating' as const, - kast_pct: 'kast_pct' as const, - kpr: 'kpr' as const, - match_id: 'match_id' as const, - match_map_id: 'match_map_id' as const, - rounds_played: 'rounds_played' as const, - steam_id: 'steam_id' as const -} - -export const enumVPlayerMatchMapRolesSelectColumn = { - adr: 'adr' as const, - awp_kills: 'awp_kills' as const, - awp_share: 'awp_share' as const, - deaths: 'deaths' as const, - dpr: 'dpr' as const, - entry_rate: 'entry_rate' as const, - flash_assists: 'flash_assists' as const, - hltv_rating: 'hltv_rating' as const, - kast_pct: 'kast_pct' as const, - kills: 'kills' as const, - kpr: 'kpr' as const, - lineup_id: 'lineup_id' as const, - match_id: 'match_id' as const, - match_map_id: 'match_map_id' as const, - open_deaths: 'open_deaths' as const, - open_kills: 'open_kills' as const, - opening_attempts: 'opening_attempts' as const, - role: 'role' as const, - rounds: 'rounds' as const, - steam_id: 'steam_id' as const, - support_idx: 'support_idx' as const, - total_kills: 'total_kills' as const, - trade_kill_successes: 'trade_kill_successes' as const, - traded_death_successes: 'traded_death_successes' as const, - util_damage: 'util_damage' as const -} - -export const enumVPlayerMatchPerformanceSelectColumn = { - assists: 'assists' as const, - deaths: 'deaths' as const, - kills: 'kills' as const, - map_id: 'map_id' as const, - match_created_at: 'match_created_at' as const, - match_id: 'match_id' as const, - match_result: 'match_result' as const, - player_steam_id: 'player_steam_id' as const, - source: 'source' as const, - type: 'type' as const -} - -export const enumVPlayerMatchRatingSelectColumn = { - adr: 'adr' as const, - dpr: 'dpr' as const, - hltv_rating: 'hltv_rating' as const, - kast_pct: 'kast_pct' as const, - kpr: 'kpr' as const, - match_id: 'match_id' as const, - rounds_played: 'rounds_played' as const, - steam_id: 'steam_id' as const -} - -export const enumVPlayerMultiKillsSelectColumn = { - attacker_steam_id: 'attacker_steam_id' as const, - kills: 'kills' as const, - match_id: 'match_id' as const, - round: 'round' as const -} - -export const enumVPlayerQueuePartnersSelectColumn = { - first_played_at: 'first_played_at' as const, - last_played_at: 'last_played_at' as const, - matches_together: 'matches_together' as const, - partner_steam_id: 'partner_steam_id' as const, - steam_id: 'steam_id' as const, - wins_together: 'wins_together' as const -} - -export const enumVPlayerWeaponDamageSelectColumn = { - damage: 'damage' as const, - hits: 'hits' as const, - player_steam_id: 'player_steam_id' as const, - source: 'source' as const, - type: 'type' as const, - with: 'with' as const -} - -export const enumVPlayerWeaponKillsSelectColumn = { - kill_count: 'kill_count' as const, - player_steam_id: 'player_steam_id' as const, - rounds: 'rounds' as const, - source: 'source' as const, - type: 'type' as const, - with: 'with' as const -} - -export const enumVPoolMapsSelectColumn = { - active_pool: 'active_pool' as const, - id: 'id' as const, - label: 'label' as const, - map_pool_id: 'map_pool_id' as const, - name: 'name' as const, - patch: 'patch' as const, - poster: 'poster' as const, - type: 'type' as const, - workshop_map_id: 'workshop_map_id' as const -} - -export const enumVPoolMapsSelectColumnVPoolMapsAggregateBoolExpBoolAndArgumentsColumns = { - active_pool: 'active_pool' as const -} - -export const enumVPoolMapsSelectColumnVPoolMapsAggregateBoolExpBoolOrArgumentsColumns = { - active_pool: 'active_pool' as const -} - -export const enumVSteamAccountPoolStatusSelectColumn = { - busy_accounts: 'busy_accounts' as const, - free_accounts: 'free_accounts' as const, - id: 'id' as const, - total_accounts: 'total_accounts' as const -} - -export const enumVTeamRanksSelectColumn = { - avg_duel_elo: 'avg_duel_elo' as const, - avg_elo: 'avg_elo' as const, - avg_faceit_elo: 'avg_faceit_elo' as const, - avg_faceit_level: 'avg_faceit_level' as const, - avg_premier: 'avg_premier' as const, - avg_wingman_elo: 'avg_wingman_elo' as const, - max_elo: 'max_elo' as const, - min_elo: 'min_elo' as const, - roster_size: 'roster_size' as const, - team_id: 'team_id' as const -} - -export const enumVTeamReputationSelectColumn = { - late_cancels: 'late_cancels' as const, - no_shows: 'no_shows' as const, - reliability_pct: 'reliability_pct' as const, - scrims_completed: 'scrims_completed' as const, - team_id: 'team_id' as const -} - -export const enumVTeamStageResultsConstraint = { - v_team_stage_results_pkey: 'v_team_stage_results_pkey' as const -} - -export const enumVTeamStageResultsSelectColumn = { - group_number: 'group_number' as const, - head_to_head_match_wins: 'head_to_head_match_wins' as const, - head_to_head_rounds_won: 'head_to_head_rounds_won' as const, - losses: 'losses' as const, - maps_lost: 'maps_lost' as const, - maps_won: 'maps_won' as const, - matches_played: 'matches_played' as const, - matches_remaining: 'matches_remaining' as const, - placement: 'placement' as const, - rank: 'rank' as const, - rounds_lost: 'rounds_lost' as const, - rounds_won: 'rounds_won' as const, - team_kdr: 'team_kdr' as const, - total_deaths: 'total_deaths' as const, - total_kills: 'total_kills' as const, - tournament_stage_id: 'tournament_stage_id' as const, - tournament_team_id: 'tournament_team_id' as const, - wins: 'wins' as const -} - -export const enumVTeamStageResultsSelectColumnVTeamStageResultsAggregateBoolExpAvgArgumentsColumns = { - team_kdr: 'team_kdr' as const -} - -export const enumVTeamStageResultsSelectColumnVTeamStageResultsAggregateBoolExpCorrArgumentsColumns = { - team_kdr: 'team_kdr' as const -} - -export const enumVTeamStageResultsSelectColumnVTeamStageResultsAggregateBoolExpCovarSampArgumentsColumns = { - team_kdr: 'team_kdr' as const -} - -export const enumVTeamStageResultsSelectColumnVTeamStageResultsAggregateBoolExpMaxArgumentsColumns = { - team_kdr: 'team_kdr' as const -} - -export const enumVTeamStageResultsSelectColumnVTeamStageResultsAggregateBoolExpMinArgumentsColumns = { - team_kdr: 'team_kdr' as const -} - -export const enumVTeamStageResultsSelectColumnVTeamStageResultsAggregateBoolExpStddevSampArgumentsColumns = { - team_kdr: 'team_kdr' as const -} - -export const enumVTeamStageResultsSelectColumnVTeamStageResultsAggregateBoolExpSumArgumentsColumns = { - team_kdr: 'team_kdr' as const -} - -export const enumVTeamStageResultsSelectColumnVTeamStageResultsAggregateBoolExpVarSampArgumentsColumns = { - team_kdr: 'team_kdr' as const -} - -export const enumVTeamStageResultsUpdateColumn = { - group_number: 'group_number' as const, - head_to_head_match_wins: 'head_to_head_match_wins' as const, - head_to_head_rounds_won: 'head_to_head_rounds_won' as const, - losses: 'losses' as const, - maps_lost: 'maps_lost' as const, - maps_won: 'maps_won' as const, - matches_played: 'matches_played' as const, - matches_remaining: 'matches_remaining' as const, - placement: 'placement' as const, - rank: 'rank' as const, - rounds_lost: 'rounds_lost' as const, - rounds_won: 'rounds_won' as const, - team_kdr: 'team_kdr' as const, - total_deaths: 'total_deaths' as const, - total_kills: 'total_kills' as const, - tournament_stage_id: 'tournament_stage_id' as const, - tournament_team_id: 'tournament_team_id' as const, - wins: 'wins' as const -} - -export const enumVTeamTournamentResultsSelectColumn = { - head_to_head_match_wins: 'head_to_head_match_wins' as const, - head_to_head_rounds_won: 'head_to_head_rounds_won' as const, - losses: 'losses' as const, - maps_lost: 'maps_lost' as const, - maps_won: 'maps_won' as const, - matches_played: 'matches_played' as const, - matches_remaining: 'matches_remaining' as const, - rounds_lost: 'rounds_lost' as const, - rounds_won: 'rounds_won' as const, - team_kdr: 'team_kdr' as const, - total_deaths: 'total_deaths' as const, - total_kills: 'total_kills' as const, - tournament_id: 'tournament_id' as const, - tournament_team_id: 'tournament_team_id' as const, - wins: 'wins' as const -} - -export const enumVTeamTournamentResultsSelectColumnVTeamTournamentResultsAggregateBoolExpAvgArgumentsColumns = { - team_kdr: 'team_kdr' as const -} - -export const enumVTeamTournamentResultsSelectColumnVTeamTournamentResultsAggregateBoolExpCorrArgumentsColumns = { - team_kdr: 'team_kdr' as const -} - -export const enumVTeamTournamentResultsSelectColumnVTeamTournamentResultsAggregateBoolExpCovarSampArgumentsColumns = { - team_kdr: 'team_kdr' as const -} - -export const enumVTeamTournamentResultsSelectColumnVTeamTournamentResultsAggregateBoolExpMaxArgumentsColumns = { - team_kdr: 'team_kdr' as const -} - -export const enumVTeamTournamentResultsSelectColumnVTeamTournamentResultsAggregateBoolExpMinArgumentsColumns = { - team_kdr: 'team_kdr' as const -} - -export const enumVTeamTournamentResultsSelectColumnVTeamTournamentResultsAggregateBoolExpStddevSampArgumentsColumns = { - team_kdr: 'team_kdr' as const -} - -export const enumVTeamTournamentResultsSelectColumnVTeamTournamentResultsAggregateBoolExpSumArgumentsColumns = { - team_kdr: 'team_kdr' as const -} - -export const enumVTeamTournamentResultsSelectColumnVTeamTournamentResultsAggregateBoolExpVarSampArgumentsColumns = { - team_kdr: 'team_kdr' as const -} - -export const enumVTournamentPlayerStatsSelectColumn = { - assists: 'assists' as const, - deaths: 'deaths' as const, - headshot_percentage: 'headshot_percentage' as const, - headshots: 'headshots' as const, - kdr: 'kdr' as const, - kills: 'kills' as const, - matches_played: 'matches_played' as const, - player_steam_id: 'player_steam_id' as const, - tournament_id: 'tournament_id' as const -} - -export const enumVTournamentPlayerStatsSelectColumnVTournamentPlayerStatsAggregateBoolExpAvgArgumentsColumns = { - headshot_percentage: 'headshot_percentage' as const, - kdr: 'kdr' as const -} - -export const enumVTournamentPlayerStatsSelectColumnVTournamentPlayerStatsAggregateBoolExpCorrArgumentsColumns = { - headshot_percentage: 'headshot_percentage' as const, - kdr: 'kdr' as const -} - -export const enumVTournamentPlayerStatsSelectColumnVTournamentPlayerStatsAggregateBoolExpCovarSampArgumentsColumns = { - headshot_percentage: 'headshot_percentage' as const, - kdr: 'kdr' as const -} - -export const enumVTournamentPlayerStatsSelectColumnVTournamentPlayerStatsAggregateBoolExpMaxArgumentsColumns = { - headshot_percentage: 'headshot_percentage' as const, - kdr: 'kdr' as const -} - -export const enumVTournamentPlayerStatsSelectColumnVTournamentPlayerStatsAggregateBoolExpMinArgumentsColumns = { - headshot_percentage: 'headshot_percentage' as const, - kdr: 'kdr' as const -} - -export const enumVTournamentPlayerStatsSelectColumnVTournamentPlayerStatsAggregateBoolExpStddevSampArgumentsColumns = { - headshot_percentage: 'headshot_percentage' as const, - kdr: 'kdr' as const -} - -export const enumVTournamentPlayerStatsSelectColumnVTournamentPlayerStatsAggregateBoolExpSumArgumentsColumns = { - headshot_percentage: 'headshot_percentage' as const, - kdr: 'kdr' as const -} - -export const enumVTournamentPlayerStatsSelectColumnVTournamentPlayerStatsAggregateBoolExpVarSampArgumentsColumns = { - headshot_percentage: 'headshot_percentage' as const, - kdr: 'kdr' as const -} diff --git a/generated/types.ts b/generated/types.ts deleted file mode 100644 index 013b8638..00000000 --- a/generated/types.ts +++ /dev/null @@ -1,221486 +0,0 @@ -export default { - "scalars": [ - 6, - 32, - 41, - 85, - 159, - 167, - 171, - 173, - 184, - 195, - 207, - 220, - 229, - 237, - 253, - 264, - 276, - 289, - 299, - 307, - 312, - 315, - 322, - 331, - 339, - 357, - 372, - 373, - 374, - 386, - 395, - 402, - 415, - 423, - 433, - 442, - 450, - 460, - 469, - 477, - 487, - 496, - 504, - 521, - 532, - 533, - 534, - 546, - 566, - 577, - 578, - 579, - 591, - 611, - 623, - 624, - 625, - 637, - 649, - 650, - 659, - 663, - 669, - 670, - 679, - 683, - 689, - 690, - 699, - 703, - 709, - 710, - 720, - 724, - 730, - 731, - 741, - 745, - 751, - 752, - 762, - 766, - 772, - 773, - 783, - 787, - 793, - 794, - 804, - 808, - 814, - 815, - 824, - 828, - 834, - 835, - 844, - 848, - 854, - 855, - 865, - 869, - 875, - 876, - 885, - 889, - 895, - 896, - 905, - 909, - 915, - 916, - 925, - 929, - 935, - 936, - 945, - 949, - 955, - 956, - 966, - 970, - 976, - 977, - 987, - 991, - 997, - 998, - 1008, - 1012, - 1018, - 1019, - 1029, - 1033, - 1039, - 1040, - 1050, - 1054, - 1060, - 1061, - 1071, - 1075, - 1081, - 1082, - 1091, - 1095, - 1101, - 1102, - 1112, - 1116, - 1122, - 1123, - 1132, - 1136, - 1142, - 1143, - 1153, - 1157, - 1163, - 1164, - 1173, - 1177, - 1183, - 1184, - 1193, - 1197, - 1203, - 1204, - 1214, - 1218, - 1224, - 1225, - 1235, - 1239, - 1245, - 1246, - 1255, - 1259, - 1265, - 1266, - 1275, - 1279, - 1285, - 1286, - 1295, - 1299, - 1305, - 1306, - 1315, - 1319, - 1325, - 1326, - 1335, - 1339, - 1345, - 1354, - 1358, - 1365, - 1374, - 1382, - 1391, - 1392, - 1402, - 1406, - 1412, - 1413, - 1422, - 1426, - 1432, - 1433, - 1442, - 1446, - 1452, - 1453, - 1462, - 1466, - 1472, - 1473, - 1482, - 1486, - 1492, - 1493, - 1503, - 1507, - 1513, - 1514, - 1523, - 1527, - 1533, - 1534, - 1543, - 1547, - 1553, - 1554, - 1564, - 1568, - 1574, - 1575, - 1585, - 1589, - 1595, - 1596, - 1605, - 1609, - 1615, - 1616, - 1626, - 1630, - 1636, - 1637, - 1647, - 1651, - 1657, - 1658, - 1667, - 1671, - 1677, - 1678, - 1688, - 1692, - 1698, - 1699, - 1708, - 1712, - 1718, - 1719, - 1728, - 1732, - 1738, - 1739, - 1748, - 1752, - 1758, - 1759, - 1768, - 1772, - 1778, - 1779, - 1788, - 1792, - 1798, - 1799, - 1808, - 1812, - 1818, - 1819, - 1828, - 1832, - 1838, - 1846, - 1850, - 1862, - 1884, - 1895, - 1907, - 1915, - 1927, - 1945, - 1956, - 1968, - 1986, - 1997, - 2009, - 2025, - 2035, - 2039, - 2049, - 2059, - 2063, - 2070, - 2080, - 2088, - 2093, - 2100, - 2109, - 2117, - 2135, - 2150, - 2151, - 2152, - 2164, - 2176, - 2185, - 2189, - 2195, - 2203, - 2207, - 2221, - 2232, - 2233, - 2234, - 2246, - 2260, - 2273, - 2281, - 2296, - 2306, - 2307, - 2308, - 2312, - 2327, - 2343, - 2344, - 2345, - 2357, - 2371, - 2385, - 2393, - 2404, - 2417, - 2425, - 2435, - 2437, - 2439, - 2453, - 2471, - 2481, - 2489, - 2504, - 2515, - 2527, - 2545, - 2556, - 2568, - 2586, - 2597, - 2609, - 2625, - 2636, - 2640, - 2648, - 2662, - 2670, - 2685, - 2696, - 2708, - 2726, - 2737, - 2749, - 2767, - 2779, - 2791, - 2803, - 2812, - 2816, - 2822, - 2831, - 2835, - 2849, - 2860, - 2861, - 2862, - 2874, - 2887, - 2899, - 2903, - 2909, - 2918, - 2922, - 2934, - 2945, - 2946, - 2947, - 2951, - 2963, - 2975, - 2987, - 3006, - 3021, - 3033, - 3053, - 3064, - 3065, - 3066, - 3078, - 3096, - 3108, - 3120, - 3141, - 3157, - 3158, - 3159, - 3171, - 3189, - 3200, - 3212, - 3230, - 3240, - 3241, - 3242, - 3246, - 3258, - 3270, - 3282, - 3302, - 3314, - 3315, - 3316, - 3328, - 3346, - 3356, - 3357, - 3358, - 3362, - 3377, - 3392, - 3393, - 3394, - 3406, - 3418, - 3426, - 3430, - 3444, - 3456, - 3457, - 3458, - 3470, - 3482, - 3490, - 3494, - 3521, - 3522, - 3523, - 3547, - 3556, - 3564, - 3574, - 3583, - 3591, - 3609, - 3624, - 3625, - 3626, - 3638, - 3646, - 3648, - 3659, - 3670, - 3682, - 3695, - 3705, - 3713, - 3723, - 3732, - 3740, - 3755, - 3766, - 3778, - 3798, - 3809, - 3810, - 3811, - 3823, - 3839, - 3859, - 3870, - 3882, - 3895, - 3904, - 3912, - 3927, - 3938, - 3950, - 3970, - 3981, - 3982, - 3983, - 3995, - 4025, - 4036, - 4048, - 4056, - 4067, - 4068, - 4069, - 4081, - 4100, - 4122, - 4133, - 4145, - 4161, - 4187, - 4214, - 4225, - 4237, - 4253, - 4273, - 4284, - 4296, - 4314, - 4325, - 4337, - 4365, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4396, - 4409, - 4419, - 4427, - 4438, - 4451, - 4459, - 4469, - 4478, - 4486, - 4501, - 4512, - 4524, - 4542, - 4553, - 4565, - 4589, - 4611, - 4621, - 4629, - 4639, - 4648, - 4656, - 4666, - 4675, - 4683, - 4701, - 4711, - 4721, - 4729, - 4739, - 4748, - 4756, - 4774, - 4790, - 4791, - 4792, - 4804, - 4816, - 4824, - 4828, - 4830, - 4840, - 4850, - 4854, - 4861, - 4871, - 4879, - 4889, - 4898, - 4906, - 4921, - 4932, - 4944, - 4964, - 4975, - 4976, - 4977, - 4989, - 5002, - 5011, - 5019, - 5034, - 5044, - 5045, - 5046, - 5050, - 5062, - 5073, - 5085, - 5105, - 5117, - 5118, - 5119, - 5131, - 5144, - 5154, - 5162, - 5172, - 5181, - 5189, - 5206, - 5218, - 5219, - 5220, - 5232, - 5240, - 5242, - 5243, - 5255, - 5267, - 5279, - 5299, - 5311, - 5312, - 5313, - 5325, - 5341, - 5351, - 5355, - 5367, - 5378, - 5390, - 5408, - 5419, - 5431, - 5444, - 5454, - 5462, - 5472, - 5481, - 5489, - 5505, - 5522, - 5531, - 5539, - 5552, - 5562, - 5566, - 5578, - 5589, - 5601, - 5619, - 5630, - 5642, - 5655, - 5663, - 5671, - 5686, - 5697, - 5709, - 5730, - 5746, - 5747, - 5748, - 5760, - 5778, - 5789, - 5801, - 5819, - 5830, - 5842, - 5862, - 5874, - 5875, - 5876, - 5888, - 5918, - 5930, - 5931, - 5932, - 5933, - 5934, - 5935, - 5936, - 5937, - 5938, - 5939, - 5940, - 5952, - 5970, - 5981, - 5993, - 6006, - 6016, - 6024, - 6034, - 6043, - 6051, - 6061, - 6070, - 6078, - 6103, - 6114, - 6115, - 6116, - 6117, - 6118, - 6119, - 6120, - 6121, - 6122, - 6134, - 6147, - 6157, - 6165, - 6180, - 6191, - 6203, - 6231, - 6242, - 6243, - 6244, - 6245, - 6246, - 6247, - 6248, - 6249, - 6250, - 6262, - 6283, - 6298, - 6299, - 6300, - 6312, - 6340, - 6351, - 6352, - 6353, - 6354, - 6355, - 6356, - 6357, - 6358, - 6359, - 6371, - 6389, - 6400, - 6412, - 6443, - 6459, - 6460, - 6461, - 6462, - 6463, - 6464, - 6465, - 6466, - 6467, - 6468, - 6469, - 6481, - 6494, - 6503, - 6511, - 6526, - 6537, - 6549, - 6562, - 6572, - 6580, - 6595, - 6606, - 6618, - 6638, - 6650, - 6651, - 6652, - 6664, - 6672, - 6701, - 6702, - 6703, - 6704, - 6705, - 6706, - 6707, - 6708, - 6709, - 6734, - 6760, - 6803, - 6804, - 6805, - 6806, - 6807, - 6808, - 6809, - 6810, - 6811, - 6840, - 6868, - 6893, - 6911, - 6929, - 6950, - 6970, - 6996, - 7021, - 7039, - 7075, - 7076, - 7077, - 7078, - 7079, - 7080, - 7081, - 7082, - 7083, - 7108, - 7126, - 7144, - 7172, - 7199, - 7217, - 7235, - 7261, - 7286, - 7304, - 7322, - 7349, - 7350, - 7351, - 7364, - 7384, - 7404, - 7434, - 7446, - 7447, - 7448, - 7449, - 7450, - 7451, - 7452, - 7453, - 7454, - 7466, - 7500, - 7501, - 7502, - 7503, - 7504, - 7505, - 7506, - 7507, - 7508, - 7551, - 7552, - 7553, - 7554, - 7555, - 7556, - 7557, - 7558, - 7559 - ], - "types": { - "ActiveConnection": { - "application_name": [ - 85 - ], - "client_addr": [ - 85 - ], - "pid": [ - 41 - ], - "query": [ - 85 - ], - "query_start": [ - 5242 - ], - "state": [ - 85 - ], - "usename": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "ActiveQuery": { - "application_name": [ - 85 - ], - "client_addr": [ - 85 - ], - "duration_seconds": [ - 32 - ], - "pid": [ - 41 - ], - "query": [ - 85 - ], - "query_start": [ - 5242 - ], - "state": [ - 85 - ], - "usename": [ - 85 - ], - "wait_event": [ - 85 - ], - "wait_event_type": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "AddCustomGamePluginOutput": { - "name": [ - 85 - ], - "runtime": [ - 85 - ], - "slug": [ - 85 - ], - "version": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "ApiKeyResponse": { - "key": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "Award": { - "allow_multiple": [ - 6 - ], - "created_at": [ - 85 - ], - "created_by_steam_id": [ - 85 - ], - "description": [ - 85 - ], - "event_id": [ - 6672 - ], - "id": [ - 6672 - ], - "image_url": [ - 85 - ], - "league_season_id": [ - 6672 - ], - "name": [ - 85 - ], - "season_id": [ - 6672 - ], - "silhouette": [ - 41 - ], - "system_key": [ - 85 - ], - "tier": [ - 85 - ], - "tournament_id": [ - 6672 - ], - "updated_at": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "AwardRecipient": { - "award_id": [ - 6672 - ], - "awarded_by_steam_id": [ - 85 - ], - "created_at": [ - 85 - ], - "id": [ - 6672 - ], - "note": [ - 85 - ], - "placement": [ - 41 - ], - "player_steam_id": [ - 85 - ], - "source": [ - 85 - ], - "team_id": [ - 6672 - ], - "tournament_id": [ - 6672 - ], - "tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "Boolean": {}, - "Boolean_comparison_exp": { - "_eq": [ - 6 - ], - "_gt": [ - 6 - ], - "_gte": [ - 6 - ], - "_in": [ - 6 - ], - "_is_null": [ - 6 - ], - "_lt": [ - 6 - ], - "_lte": [ - 6 - ], - "_neq": [ - 6 - ], - "_nin": [ - 6 - ], - "__typename": [ - 85 - ] - }, - "ClipAudioInput": { - "duck_game_audio": [ - 6 - ], - "fade_in_ms": [ - 41 - ], - "fade_out_ms": [ - 41 - ], - "track_url": [ - 85 - ], - "volume": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "ClipOutputInput": { - "format": [ - 85 - ], - "fps": [ - 41 - ], - "resolution": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "ClipOverlayInput": { - "end_ms": [ - 41 - ], - "payload": [ - 2439 - ], - "start_ms": [ - 41 - ], - "type": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "ClipSegmentInput": { - "end_tick": [ - 41 - ], - "pov_steam_id": [ - 85 - ], - "start_tick": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "ClipSpecInput": { - "audio": [ - 8 - ], - "destination": [ - 85 - ], - "match_map_id": [ - 6672 - ], - "output": [ - 9 - ], - "overlays": [ - 10 - ], - "segments": [ - 11 - ], - "title": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "ConnectionByState": { - "count": [ - 41 - ], - "state": [ - 85 - ], - "wait_event_type": [ - 85 - ], - "waiting_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "ConnectionStats": { - "active": [ - 41 - ], - "by_state": [ - 13 - ], - "idle": [ - 41 - ], - "idle_in_transaction": [ - 41 - ], - "total": [ - 41 - ], - "waiting": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "CpuStat": { - "time": [ - 5242 - ], - "total": [ - 312 - ], - "used": [ - 312 - ], - "window": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "CreateClipRenderOutput": { - "job_id": [ - 6672 - ], - "success": [ - 6 - ], - "__typename": [ - 85 - ] - }, - "CreateDraftGameOutput": { - "draftGameId": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "CreateScheduledMatchOutput": { - "matchId": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "DatabaseStats": { - "blks_hit": [ - 41 - ], - "blks_read": [ - 41 - ], - "cache_hit_ratio": [ - 32 - ], - "conflicts": [ - 41 - ], - "datname": [ - 85 - ], - "deadlocks": [ - 41 - ], - "numbackends": [ - 41 - ], - "tup_deleted": [ - 41 - ], - "tup_fetched": [ - 41 - ], - "tup_inserted": [ - 41 - ], - "tup_returned": [ - 41 - ], - "tup_updated": [ - 41 - ], - "xact_commit": [ - 41 - ], - "xact_rollback": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "DbStats": { - "calls": [ - 41 - ], - "local_blks_hit": [ - 41 - ], - "local_blks_read": [ - 41 - ], - "max_exec_time": [ - 32 - ], - "mean_exec_time": [ - 32 - ], - "min_exec_time": [ - 32 - ], - "query": [ - 85 - ], - "queryid": [ - 85 - ], - "shared_blks_hit": [ - 41 - ], - "shared_blks_read": [ - 41 - ], - "total_exec_time": [ - 32 - ], - "total_rows": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "DedicatedSeverInfo": { - "id": [ - 85 - ], - "lastPing": [ - 85 - ], - "map": [ - 85 - ], - "players": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "DeleteOrphansOutput": { - "bytes_freed": [ - 32 - ], - "deleted": [ - 41 - ], - "remaining_orphans": [ - 41 - ], - "success": [ - 6 - ], - "__typename": [ - 85 - ] - }, - "DiskStat": { - "available": [ - 85 - ], - "filesystem": [ - 85 - ], - "mountpoint": [ - 85 - ], - "size": [ - 85 - ], - "used": [ - 85 - ], - "usedPercent": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "DiskStats": { - "disks": [ - 23 - ], - "time": [ - 5242 - ], - "__typename": [ - 85 - ] - }, - "DraftGamePreviewOutput": { - "accepted_count": [ - 41 - ], - "access": [ - 85 - ], - "capacity": [ - 41 - ], - "host_avatar_url": [ - 85 - ], - "host_name": [ - 85 - ], - "host_steam_id": [ - 85 - ], - "id": [ - 6672 - ], - "mode": [ - 85 - ], - "players": [ - 26 - ], - "require_approval": [ - 6 - ], - "status": [ - 85 - ], - "type": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "DraftGamePreviewPlayer": { - "avatar_url": [ - 85 - ], - "name": [ - 85 - ], - "status": [ - 85 - ], - "steam_id": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "FaceitTestOutput": { - "dataApi": [ - 28 - ], - "downloadApi": [ - 28 - ], - "__typename": [ - 85 - ] - }, - "FaceitTestResult": { - "detail": [ - 85 - ], - "ok": [ - 6 - ], - "__typename": [ - 85 - ] - }, - "FileContentResponse": { - "content": [ - 85 - ], - "path": [ - 85 - ], - "size": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "FileItem": { - "isDirectory": [ - 6 - ], - "modified": [ - 5242 - ], - "name": [ - 85 - ], - "path": [ - 85 - ], - "size": [ - 312 - ], - "type": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "FileListResponse": { - "currentPath": [ - 85 - ], - "items": [ - 30 - ], - "__typename": [ - 85 - ] - }, - "Float": {}, - "Float_comparison_exp": { - "_eq": [ - 32 - ], - "_gt": [ - 32 - ], - "_gte": [ - 32 - ], - "_in": [ - 32 - ], - "_is_null": [ - 6 - ], - "_lt": [ - 32 - ], - "_lte": [ - 32 - ], - "_neq": [ - 32 - ], - "_nin": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "GetTestUploadResponse": { - "error": [ - 85 - ], - "link": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "GpuDeviceStat": { - "index": [ - 41 - ], - "memory_mb": [ - 41 - ], - "memory_used_mb": [ - 41 - ], - "name": [ - 85 - ], - "power_w": [ - 41 - ], - "temperature_c": [ - 41 - ], - "utilization_percent": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "GpuStats": { - "devices": [ - 35 - ], - "time": [ - 5242 - ], - "__typename": [ - 85 - ] - }, - "HighlightPresetAvailability": { - "best_round": [ - 6 - ], - "has_demo": [ - 6 - ], - "knife": [ - 6 - ], - "multikills": [ - 6 - ], - "recap": [ - 6 - ], - "__typename": [ - 85 - ] - }, - "HypertableInfo": { - "compression_enabled": [ - 6 - ], - "hypertable_name": [ - 85 - ], - "num_chunks": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "IndexIOStat": { - "idx_blks_hit": [ - 41 - ], - "idx_blks_read": [ - 41 - ], - "indexname": [ - 85 - ], - "schemaname": [ - 85 - ], - "tablename": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "IndexStat": { - "idx_scan": [ - 41 - ], - "idx_tup_fetch": [ - 41 - ], - "idx_tup_read": [ - 41 - ], - "index_size": [ - 41 - ], - "indexname": [ - 85 - ], - "schemaname": [ - 85 - ], - "table_size": [ - 41 - ], - "tablename": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "Int": {}, - "Int_comparison_exp": { - "_eq": [ - 41 - ], - "_gt": [ - 41 - ], - "_gte": [ - 41 - ], - "_in": [ - 41 - ], - "_is_null": [ - 6 - ], - "_lt": [ - 41 - ], - "_lte": [ - 41 - ], - "_neq": [ - 41 - ], - "_nin": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "KickResult": { - "kicked": [ - 6 - ], - "message": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "LiveSpecGsi": { - "map_name": [ - 85 - ], - "map_phase": [ - 85 - ], - "round_number": [ - 41 - ], - "round_phase": [ - 85 - ], - "spec_slots": [ - 45 - ], - "spectated_steam_id": [ - 85 - ], - "team_ct_name": [ - 85 - ], - "team_ct_score": [ - 41 - ], - "team_t_name": [ - 85 - ], - "team_t_score": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "LiveSpecSlot": { - "alive": [ - 6 - ], - "health": [ - 41 - ], - "name": [ - 85 - ], - "slot": [ - 41 - ], - "steam_id": [ - 85 - ], - "team": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "LiveStreamSpecState": { - "gsi": [ - 44 - ], - "__typename": [ - 85 - ] - }, - "LockInfo": { - "granted": [ - 6 - ], - "locktype": [ - 85 - ], - "mode": [ - 85 - ], - "pid": [ - 41 - ], - "query": [ - 85 - ], - "relation": [ - 85 - ], - "usename": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "MapCalloutSyncOutput": { - "callouts": [ - 41 - ], - "maps": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "MeResponse": { - "avatar_url": [ - 85 - ], - "country": [ - 85 - ], - "discord_id": [ - 85 - ], - "language": [ - 85 - ], - "name": [ - 85 - ], - "player": [ - 4606 - ], - "profile_url": [ - 85 - ], - "role": [ - 85 - ], - "steam_id": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "MemoryStat": { - "time": [ - 5242 - ], - "total": [ - 312 - ], - "used": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "NetworkStats": { - "nics": [ - 53 - ], - "time": [ - 5242 - ], - "__typename": [ - 85 - ] - }, - "NewsPost": { - "author_steam_id": [ - 85 - ], - "content_markdown": [ - 85 - ], - "cover_image_url": [ - 85 - ], - "created_at": [ - 85 - ], - "id": [ - 6672 - ], - "published_at": [ - 85 - ], - "slug": [ - 85 - ], - "status": [ - 85 - ], - "teaser": [ - 85 - ], - "title": [ - 85 - ], - "updated_at": [ - 85 - ], - "view_count": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "NicStat": { - "name": [ - 85 - ], - "rx": [ - 312 - ], - "tx": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "NodeStats": { - "cpu": [ - 15 - ], - "disks": [ - 24 - ], - "gpu": [ - 36 - ], - "memory": [ - 50 - ], - "network": [ - 51 - ], - "node": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "OrphanObject": { - "key": [ - 85 - ], - "size": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "OrphanScanResultOutput": { - "bucket": [ - 85 - ], - "clip_bytes": [ - 32 - ], - "clip_objects": [ - 41 - ], - "demo_bytes": [ - 32 - ], - "demo_objects": [ - 41 - ], - "found": [ - 6 - ], - "orphan_bytes": [ - 32 - ], - "orphan_objects": [ - 41 - ], - "orphans": [ - 55 - ], - "other_bytes": [ - 32 - ], - "other_objects": [ - 41 - ], - "scanned_at": [ - 85 - ], - "scanning": [ - 6 - ], - "total_bytes": [ - 32 - ], - "total_objects": [ - 41 - ], - "tracked_bytes": [ - 32 - ], - "tracked_objects": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "PendingMatchImportActionOutput": { - "error": [ - 85 - ], - "success": [ - 6 - ], - "__typename": [ - 85 - ] - }, - "PluginReadmeOutput": { - "content": [ - 85 - ], - "format": [ - 85 - ], - "repo": [ - 85 - ], - "url": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "PodStats": { - "cpu": [ - 15 - ], - "memory": [ - 50 - ], - "name": [ - 85 - ], - "node": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "PreviewGameModeOutput": { - "cfg": [ - 85 - ], - "enabledPlugins": [ - 85 - ], - "extraGameParams": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "PreviewTournamentMatchResetOutput": { - "impacts": [ - 114 - ], - "__typename": [ - 85 - ] - }, - "QueryDetail": { - "explain_plan": [ - 85 - ], - "query": [ - 85 - ], - "queryid": [ - 85 - ], - "stats": [ - 63 - ], - "__typename": [ - 85 - ] - }, - "QueryStat": { - "cache_hit_ratio": [ - 32 - ], - "calls": [ - 41 - ], - "local_blks_hit": [ - 41 - ], - "local_blks_read": [ - 41 - ], - "max_exec_time": [ - 32 - ], - "mean_exec_time": [ - 32 - ], - "min_exec_time": [ - 32 - ], - "query": [ - 85 - ], - "queryid": [ - 85 - ], - "shared_blks_hit": [ - 41 - ], - "shared_blks_read": [ - 41 - ], - "stddev_exec_time": [ - 32 - ], - "temp_blks_written": [ - 41 - ], - "total_exec_time": [ - 32 - ], - "total_rows": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "RecomputeEloStartedOutput": { - "running": [ - 6 - ], - "success": [ - 6 - ], - "__typename": [ - 85 - ] - }, - "RecomputeEloStatusOutput": { - "canceled": [ - 6 - ], - "completed": [ - 41 - ], - "current_match_id": [ - 85 - ], - "failed": [ - 41 - ], - "finished_at": [ - 85 - ], - "running": [ - 6 - ], - "started_at": [ - 85 - ], - "total": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "ReconcileNodePluginsOutput": { - "detected": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "ReindexStartedOutput": { - "running": [ - 6 - ], - "success": [ - 6 - ], - "__typename": [ - 85 - ] - }, - "ReindexStatusOutput": { - "canceled": [ - 6 - ], - "completed": [ - 41 - ], - "current_steam_id": [ - 85 - ], - "failed": [ - 41 - ], - "finished_at": [ - 85 - ], - "running": [ - 6 - ], - "started_at": [ - 85 - ], - "total": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "ReparseAllStartedOutput": { - "running": [ - 6 - ], - "success": [ - 6 - ], - "__typename": [ - 85 - ] - }, - "ReparseAllStatusOutput": { - "canceled": [ - 6 - ], - "completed": [ - 41 - ], - "current_demo_id": [ - 85 - ], - "failed": [ - 41 - ], - "finished_at": [ - 85 - ], - "running": [ - 6 - ], - "started_at": [ - 85 - ], - "total": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "SanctionResult": { - "enforced": [ - 6 - ], - "id": [ - 85 - ], - "message": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "ScanStartedOutput": { - "scanning": [ - 6 - ], - "success": [ - 6 - ], - "__typename": [ - 85 - ] - }, - "ScheduledLineupInput": { - "steam_ids": [ - 85 - ], - "team_id": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "SeasonBackfillStatusOutput": { - "canceled": [ - 6 - ], - "completed": [ - 41 - ], - "current_match_id": [ - 85 - ], - "failed": [ - 41 - ], - "finished_at": [ - 85 - ], - "running": [ - 6 - ], - "season_id": [ - 85 - ], - "started_at": [ - 85 - ], - "total": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "ServerPlayer": { - "name": [ - 85 - ], - "steam_id": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "SetupGameServeOutput": { - "gameServerId": [ - 85 - ], - "link": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "SteamMatchHistoryLinkOutput": { - "error": [ - 85 - ], - "success": [ - 6 - ], - "__typename": [ - 85 - ] - }, - "SteamMatchHistoryPollOutput": { - "collected": [ - 41 - ], - "error": [ - 85 - ], - "success": [ - 6 - ], - "__typename": [ - 85 - ] - }, - "SteamPresenceAdminStatusOutput": { - "bots": [ - 80 - ], - "enabled": [ - 6 - ], - "pool": [ - 82 - ], - "__typename": [ - 85 - ] - }, - "SteamPresenceBot": { - "assigned": [ - 41 - ], - "capacity": [ - 41 - ], - "guardLastWrong": [ - 6 - ], - "guardType": [ - 85 - ], - "id": [ - 85 - ], - "needs2fa": [ - 6 - ], - "online": [ - 6 - ], - "steamId": [ - 85 - ], - "steamLevel": [ - 41 - ], - "username": [ - 85 - ], - "watching": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "SteamPresenceBotAssignment": { - "addUrl": [ - 85 - ], - "enabled": [ - 6 - ], - "status": [ - 85 - ], - "steamId": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "SteamPresencePool": { - "bots": [ - 41 - ], - "capacity": [ - 41 - ], - "online": [ - 41 - ], - "pending": [ - 41 - ], - "watching": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "StorageStats": { - "summary": [ - 84 - ], - "tables": [ - 91 - ], - "__typename": [ - 85 - ] - }, - "StorageSummary": { - "estimated_reclaimable_space": [ - 32 - ], - "total_database_size": [ - 32 - ], - "total_indexes_size": [ - 32 - ], - "total_table_size": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "String": {}, - "String_array_comparison_exp": { - "_contained_in": [ - 85 - ], - "_contains": [ - 85 - ], - "_eq": [ - 85 - ], - "_gt": [ - 85 - ], - "_gte": [ - 85 - ], - "_in": [ - 85 - ], - "_is_null": [ - 6 - ], - "_lt": [ - 85 - ], - "_lte": [ - 85 - ], - "_neq": [ - 85 - ], - "_nin": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "String_comparison_exp": { - "_eq": [ - 85 - ], - "_gt": [ - 85 - ], - "_gte": [ - 85 - ], - "_ilike": [ - 85 - ], - "_in": [ - 85 - ], - "_iregex": [ - 85 - ], - "_is_null": [ - 6 - ], - "_like": [ - 85 - ], - "_lt": [ - 85 - ], - "_lte": [ - 85 - ], - "_neq": [ - 85 - ], - "_nilike": [ - 85 - ], - "_nin": [ - 85 - ], - "_niregex": [ - 85 - ], - "_nlike": [ - 85 - ], - "_nregex": [ - 85 - ], - "_nsimilar": [ - 85 - ], - "_regex": [ - 85 - ], - "_similar": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "SuccessOutput": { - "success": [ - 6 - ], - "__typename": [ - 85 - ] - }, - "SyncPluginRegistryOutput": { - "plugins": [ - 41 - ], - "versions": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "TableIOStat": { - "cache_hit_ratio": [ - 32 - ], - "heap_blks_hit": [ - 41 - ], - "heap_blks_read": [ - 41 - ], - "idx_blks_hit": [ - 41 - ], - "idx_blks_read": [ - 41 - ], - "relname": [ - 85 - ], - "schemaname": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "TableSizeInfo": { - "estimated_dead_tuple_bytes": [ - 32 - ], - "indexes_size": [ - 32 - ], - "n_dead_tup": [ - 41 - ], - "n_live_tup": [ - 41 - ], - "schemaname": [ - 85 - ], - "table_size": [ - 32 - ], - "tablename": [ - 85 - ], - "total_size": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "TableStat": { - "idx_scan": [ - 41 - ], - "idx_tup_fetch": [ - 41 - ], - "last_analyze": [ - 5242 - ], - "last_autoanalyze": [ - 5242 - ], - "last_autovacuum": [ - 5242 - ], - "last_vacuum": [ - 5242 - ], - "n_dead_tup": [ - 41 - ], - "n_live_tup": [ - 41 - ], - "n_tup_del": [ - 41 - ], - "n_tup_hot_upd": [ - 41 - ], - "n_tup_ins": [ - 41 - ], - "n_tup_upd": [ - 41 - ], - "relname": [ - 85 - ], - "schemaname": [ - 85 - ], - "seq_scan": [ - 41 - ], - "seq_tup_read": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "TeamCalendarOutput": { - "url": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "TelemetryActivityPoint": { - "day": [ - 85 - ], - "installs": [ - 41 - ], - "matches": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "TelemetryCountryCount": { - "country": [ - 85 - ], - "installs": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "TelemetryFeatureAdoption": { - "counted": [ - 41 - ], - "enabled": [ - 41 - ], - "flagged": [ - 41 - ], - "installsUsing": [ - 41 - ], - "key": [ - 85 - ], - "kind": [ - 85 - ], - "reporting": [ - 41 - ], - "total": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "TelemetryFleetTotals": { - "appearancesReported": [ - 41 - ], - "competitionReported": [ - 41 - ], - "dedicatedServers": [ - 41 - ], - "eventTeams": [ - 41 - ], - "events": [ - 41 - ], - "gameModes": [ - 41 - ], - "gameModesEnabled": [ - 41 - ], - "gameModesUnranked": [ - 41 - ], - "gameServerNodes": [ - 41 - ], - "gameServerNodesEnabled": [ - 41 - ], - "gameServerNodesOnline": [ - 41 - ], - "gpuNodes": [ - 41 - ], - "leagueRegistrations": [ - 41 - ], - "leagueSeasons": [ - 41 - ], - "leagueSeasonsFinished": [ - 41 - ], - "leagueTeams": [ - 41 - ], - "mapsPlayed": [ - 41 - ], - "matches": [ - 41 - ], - "matchesAbandoned": [ - 41 - ], - "matchesCreated": [ - 41 - ], - "matchesFinished": [ - 41 - ], - "matchesImported": [ - 41 - ], - "matchesImportedMonth": [ - 41 - ], - "matchesImportedYear": [ - 41 - ], - "matchesLeague": [ - 41 - ], - "matchesLive": [ - 41 - ], - "matchesMonth": [ - 41 - ], - "matchesScrim": [ - 41 - ], - "matchesTournament": [ - 41 - ], - "matchesWeek": [ - 41 - ], - "matchesYear": [ - 41 - ], - "outcomesReported": [ - 41 - ], - "panels": [ - 41 - ], - "playerAppearances": [ - 41 - ], - "playersActive30d": [ - 41 - ], - "playersActive7d": [ - 41 - ], - "playersKnown": [ - 41 - ], - "playersPlayed": [ - 41 - ], - "playersRegistered": [ - 41 - ], - "pluginsBySlug": [ - 2439 - ], - "pluginsManual": [ - 41 - ], - "pluginsReported": [ - 41 - ], - "pluginsRequested": [ - 41 - ], - "publicServers": [ - 41 - ], - "regions": [ - 41 - ], - "scrimRequests": [ - 41 - ], - "servers": [ - 41 - ], - "serversEnabled": [ - 41 - ], - "teams": [ - 41 - ], - "tournamentTeams": [ - 41 - ], - "tournaments": [ - 41 - ], - "tournamentsFinished": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "TelemetryGrowthPoint": { - "installs": [ - 41 - ], - "month": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "TelemetryInstallCounts": { - "active24h": [ - 41 - ], - "active30d": [ - 41 - ], - "active7d": [ - 41 - ], - "new30d": [ - 41 - ], - "retained180d": [ - 41 - ], - "total": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "TelemetryMatchSourceCount": { - "matches": [ - 41 - ], - "source": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "TelemetryMatchTypeCount": { - "matches": [ - 41 - ], - "type": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "TelemetryRuntimeCount": { - "installs": [ - 41 - ], - "runtime": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "TelemetryStats": { - "activity": [ - 94 - ], - "countries": [ - 95 - ], - "features": [ - 96 - ], - "growth": [ - 98 - ], - "installs": [ - 99 - ], - "matchSources": [ - 100 - ], - "matchTypes": [ - 101 - ], - "online": [ - 41 - ], - "runtimes": [ - 102 - ], - "totals": [ - 97 - ], - "utility": [ - 105 - ], - "utilitySources": [ - 104 - ], - "utilityTypes": [ - 106 - ], - "versions": [ - 107 - ], - "__typename": [ - 85 - ] - }, - "TelemetryUtilitySourceCount": { - "lineups": [ - 41 - ], - "source": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "TelemetryUtilityTotals": { - "archived": [ - 41 - ], - "attempts": [ - 41 - ], - "authors": [ - 41 - ], - "collections": [ - 41 - ], - "demoThrows": [ - 41 - ], - "demosMined": [ - 41 - ], - "driftFlagged": [ - 41 - ], - "driftScans": [ - 41 - ], - "favorites": [ - 41 - ], - "hosts": [ - 41 - ], - "lineups": [ - 41 - ], - "maps": [ - 41 - ], - "mastered": [ - 41 - ], - "metaLineups": [ - 41 - ], - "month": [ - 41 - ], - "pendingReview": [ - 41 - ], - "playbookSteps": [ - 41 - ], - "playbooks": [ - 41 - ], - "practicing": [ - 41 - ], - "previews": [ - 41 - ], - "private": [ - 41 - ], - "public": [ - 41 - ], - "repairs": [ - 41 - ], - "reported": [ - 41 - ], - "sessions": [ - 41 - ], - "sessionsFailed": [ - 41 - ], - "sessionsMonth": [ - 41 - ], - "sessionsWeek": [ - 41 - ], - "successes": [ - 41 - ], - "team": [ - 41 - ], - "verified": [ - 41 - ], - "votes": [ - 41 - ], - "week": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "TelemetryUtilityTypeCount": { - "lineups": [ - 41 - ], - "type": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "TelemetryVersionCount": { - "installs": [ - 41 - ], - "rank": [ - 41 - ], - "since": [ - 85 - ], - "version": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "TestUploadResponse": { - "error": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "TimescaleJob": { - "hypertable_name": [ - 85 - ], - "job_id": [ - 41 - ], - "job_type": [ - 85 - ], - "last_run_status": [ - 85 - ], - "next_start": [ - 5242 - ], - "__typename": [ - 85 - ] - }, - "TimescaleStats": { - "chunks_count": [ - 41 - ], - "hypertables": [ - 38 - ], - "jobs": [ - 109 - ], - "__typename": [ - 85 - ] - }, - "TournamentAward": { - "award_id": [ - 6672 - ], - "custom_name": [ - 85 - ], - "id": [ - 6672 - ], - "image_url": [ - 85 - ], - "placement": [ - 41 - ], - "silhouette": [ - 41 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "TournamentDraftOutput": { - "teams_created": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "TournamentInviteCodeOutput": { - "code": [ - 85 - ], - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "TournamentMatchResetImpact": { - "bracket_id": [ - 6672 - ], - "depth": [ - 41 - ], - "is_source": [ - 6 - ], - "match_id": [ - 6672 - ], - "match_number": [ - 41 - ], - "match_status": [ - 85 - ], - "path": [ - 85 - ], - "round": [ - 41 - ], - "stage_type": [ - 85 - ], - "will_delete_match": [ - 6 - ], - "__typename": [ - 85 - ] - }, - "UtilityBlockingOutput": { - "degraded": [ - 6 - ], - "message": [ - 85 - ], - "results": [ - 116 - ], - "__typename": [ - 85 - ] - }, - "UtilityBlockingResult": { - "blocked": [ - 6 - ], - "depth": [ - 32 - ], - "transmittance": [ - 32 - ], - "utility_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "UtilityCalibrationOutput": { - "detail": [ - 85 - ], - "ready": [ - 6 - ], - "status": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "UtilityDriftScanOutput": { - "lineups": [ - 41 - ], - "scan_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "UtilityDrillLoadOutput": { - "map_name": [ - 85 - ], - "queued": [ - 41 - ], - "reason": [ - 85 - ], - "sent": [ - 6 - ], - "__typename": [ - 85 - ] - }, - "UtilityImportError": { - "external_id": [ - 85 - ], - "index": [ - 41 - ], - "reason": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "UtilityImportOutput": { - "dry_run": [ - 6 - ], - "errors": [ - 120 - ], - "failed": [ - 41 - ], - "imported": [ - 41 - ], - "total": [ - 41 - ], - "updated": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "UtilityLaunchSeedBackfillOutput": { - "done": [ - 6 - ], - "scanned": [ - 41 - ], - "seeded": [ - 41 - ], - "skipped": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "UtilityLineupOutput": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "UtilityLoadOutput": { - "map_name": [ - 85 - ], - "reason": [ - 85 - ], - "sent": [ - 6 - ], - "__typename": [ - 85 - ] - }, - "UtilityMissPatternOutput": { - "analysed": [ - 6 - ], - "bias": [ - 85 - ], - "mean_along": [ - 32 - ], - "mean_lateral": [ - 32 - ], - "mean_vertical": [ - 32 - ], - "message": [ - 85 - ], - "players": [ - 41 - ], - "samples": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "UtilityOneWayOutput": { - "degraded": [ - 6 - ], - "message": [ - 85 - ], - "results": [ - 127 - ], - "__typename": [ - 85 - ] - }, - "UtilityOneWayResult": { - "cause": [ - 85 - ], - "confidence": [ - 85 - ], - "contested": [ - 6 - ], - "favors": [ - 85 - ], - "index": [ - 41 - ], - "one_way": [ - 6 - ], - "__typename": [ - 85 - ] - }, - "UtilityPlaybookCoverageOutput": { - "degraded": [ - 6 - ], - "message": [ - 85 - ], - "results": [ - 129 - ], - "__typename": [ - 85 - ] - }, - "UtilityPlaybookCoverageResult": { - "by_step": [ - 41 - ], - "covered": [ - 6 - ], - "depth": [ - 32 - ], - "index": [ - 41 - ], - "transmittance": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "UtilityPlaybookOutput": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "UtilityPlaybookStepInput": { - "assigned_steam_id": [ - 85 - ], - "note": [ - 85 - ], - "offset_ms": [ - 41 - ], - "utility_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "UtilityPracticeMapChangeOutput": { - "map_name": [ - 85 - ], - "queued": [ - 6 - ], - "success": [ - 6 - ], - "__typename": [ - 85 - ] - }, - "UtilityPracticePlanEntry": { - "attempts": [ - 41 - ], - "difficulty": [ - 85 - ], - "global_attempts": [ - 41 - ], - "global_landing_rate": [ - 32 - ], - "global_players": [ - 41 - ], - "mastered": [ - 6 - ], - "meta_throwers": [ - 41 - ], - "priority": [ - 32 - ], - "reason": [ - 85 - ], - "successes": [ - 41 - ], - "utility_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "UtilityPracticePlanOutput": { - "analysed": [ - 6 - ], - "entries": [ - 133 - ], - "message": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "UtilityPracticeServer": { - "held_by": [ - 85 - ], - "id": [ - 6672 - ], - "in_use": [ - 6 - ], - "label": [ - 85 - ], - "region": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "UtilityPracticeServersOutput": { - "servers": [ - 135 - ], - "__typename": [ - 85 - ] - }, - "UtilityPracticeSessionOutput": { - "id": [ - 6672 - ], - "invite_code": [ - 85 - ], - "match_id": [ - 6672 - ], - "status": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "UtilityPracticeWhereOutput": { - "map_name": [ - 85 - ], - "on_server": [ - 6 - ], - "session_id": [ - 6672 - ], - "switching": [ - 6 - ], - "__typename": [ - 85 - ] - }, - "UtilityPurgeOutput": { - "dry_run": [ - 6 - ], - "lineups": [ - 41 - ], - "origin_source": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "UtilityRemineOutput": { - "demos": [ - 41 - ], - "done": [ - 6 - ], - "throws": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "UtilityRenderClearOutput": { - "cleared": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "UtilityRenderQueueOutput": { - "reason": [ - 85 - ], - "render_id": [ - 6672 - ], - "status": [ - 85 - ], - "success": [ - 6 - ], - "__typename": [ - 85 - ] - }, - "UtilityScratchLineupInput": { - "client_id": [ - 85 - ], - "eye_z": [ - 32 - ], - "land_x": [ - 32 - ], - "land_y": [ - 32 - ], - "land_z": [ - 32 - ], - "map_name": [ - 85 - ], - "name": [ - 85 - ], - "origin_x": [ - 32 - ], - "origin_y": [ - 32 - ], - "origin_z": [ - 32 - ], - "side": [ - 85 - ], - "technique": [ - 85 - ], - "throw_strength": [ - 85 - ], - "utility_type": [ - 85 - ], - "view_pitch": [ - 32 - ], - "view_yaw": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "UtilitySightlineOutput": { - "degraded": [ - 6 - ], - "message": [ - 85 - ], - "results": [ - 146 - ], - "threshold": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "UtilitySightlinePairInput": { - "from_x": [ - 32 - ], - "from_y": [ - 32 - ], - "from_z": [ - 32 - ], - "to_x": [ - 32 - ], - "to_y": [ - 32 - ], - "to_z": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "UtilitySightlineResult": { - "blocked": [ - 6 - ], - "blocked_by": [ - 85 - ], - "depth": [ - 32 - ], - "index": [ - 41 - ], - "transmittance": [ - 32 - ], - "world_blocked": [ - 6 - ], - "__typename": [ - 85 - ] - }, - "UtilitySolveOutput": { - "accepted": [ - 6 - ], - "message": [ - 85 - ], - "status": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "UtilityTeamUtilityEntry": { - "landed": [ - 41 - ], - "players": [ - 41 - ], - "thrown": [ - 41 - ], - "utility_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "UtilityTeamUtilityOutput": { - "analysed": [ - 6 - ], - "entries": [ - 148 - ], - "message": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "UtilityUtilityReportOutput": { - "analysed": [ - 6 - ], - "by_type": [ - 151 - ], - "landed": [ - 41 - ], - "matched_lineups": [ - 41 - ], - "matched_meta": [ - 41 - ], - "message": [ - 85 - ], - "radius": [ - 32 - ], - "steam_id": [ - 85 - ], - "throws": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "UtilityUtilityTypeReport": { - "landed": [ - 41 - ], - "matched_lineups": [ - 41 - ], - "matched_meta": [ - 41 - ], - "throws": [ - 41 - ], - "utility_type": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "WatchDemoOutput": { - "match_map_id": [ - 85 - ], - "session_id": [ - 85 - ], - "stream_url": [ - 85 - ], - "success": [ - 6 - ], - "__typename": [ - 85 - ] - }, - "WebPushPlatformCount": { - "devices": [ - 41 - ], - "platform": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "WebPushStatusOutput": { - "active_7d": [ - 41 - ], - "configured": [ - 6 - ], - "last_delivered_at": [ - 5243 - ], - "managed_by_environment": [ - 6 - ], - "never_delivered": [ - 41 - ], - "new_7d": [ - 41 - ], - "platforms": [ - 153 - ], - "players": [ - 41 - ], - "subscriptions": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "_map_pool": { - "map_id": [ - 6672 - ], - "map_pool_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "_map_pool_aggregate": { - "aggregate": [ - 157 - ], - "nodes": [ - 155 - ], - "__typename": [ - 85 - ] - }, - "_map_pool_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 167, - "[_map_pool_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 161 - ], - "min": [ - 162 - ], - "__typename": [ - 85 - ] - }, - "_map_pool_bool_exp": { - "_and": [ - 158 - ], - "_not": [ - 158 - ], - "_or": [ - 158 - ], - "map_id": [ - 6674 - ], - "map_pool_id": [ - 6674 - ], - "__typename": [ - 85 - ] - }, - "_map_pool_constraint": {}, - "_map_pool_insert_input": { - "map_id": [ - 6672 - ], - "map_pool_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "_map_pool_max_fields": { - "map_id": [ - 6672 - ], - "map_pool_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "_map_pool_min_fields": { - "map_id": [ - 6672 - ], - "map_pool_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "_map_pool_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 155 - ], - "__typename": [ - 85 - ] - }, - "_map_pool_on_conflict": { - "constraint": [ - 159 - ], - "update_columns": [ - 171 - ], - "where": [ - 158 - ], - "__typename": [ - 85 - ] - }, - "_map_pool_order_by": { - "map_id": [ - 3648 - ], - "map_pool_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "_map_pool_pk_columns_input": { - "map_id": [ - 6672 - ], - "map_pool_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "_map_pool_select_column": {}, - "_map_pool_set_input": { - "map_id": [ - 6672 - ], - "map_pool_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "_map_pool_stream_cursor_input": { - "initial_value": [ - 170 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "_map_pool_stream_cursor_value_input": { - "map_id": [ - 6672 - ], - "map_pool_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "_map_pool_update_column": {}, - "_map_pool_updates": { - "_set": [ - 168 - ], - "where": [ - 158 - ], - "__typename": [ - 85 - ] - }, - "_uuid": {}, - "abandoned_matches": { - "abandoned_at": [ - 5243 - ], - "id": [ - 6672 - ], - "match": [ - 3432 - ], - "match_id": [ - 6672 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "abandoned_matches_aggregate": { - "aggregate": [ - 178 - ], - "nodes": [ - 174 - ], - "__typename": [ - 85 - ] - }, - "abandoned_matches_aggregate_bool_exp": { - "count": [ - 177 - ], - "__typename": [ - 85 - ] - }, - "abandoned_matches_aggregate_bool_exp_count": { - "arguments": [ - 195 - ], - "distinct": [ - 6 - ], - "filter": [ - 183 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "abandoned_matches_aggregate_fields": { - "avg": [ - 181 - ], - "count": [ - 41, - { - "columns": [ - 195, - "[abandoned_matches_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 187 - ], - "min": [ - 189 - ], - "stddev": [ - 197 - ], - "stddev_pop": [ - 199 - ], - "stddev_samp": [ - 201 - ], - "sum": [ - 205 - ], - "var_pop": [ - 209 - ], - "var_samp": [ - 211 - ], - "variance": [ - 213 - ], - "__typename": [ - 85 - ] - }, - "abandoned_matches_aggregate_order_by": { - "avg": [ - 182 - ], - "count": [ - 3648 - ], - "max": [ - 188 - ], - "min": [ - 190 - ], - "stddev": [ - 198 - ], - "stddev_pop": [ - 200 - ], - "stddev_samp": [ - 202 - ], - "sum": [ - 206 - ], - "var_pop": [ - 210 - ], - "var_samp": [ - 212 - ], - "variance": [ - 214 - ], - "__typename": [ - 85 - ] - }, - "abandoned_matches_arr_rel_insert_input": { - "data": [ - 186 - ], - "on_conflict": [ - 192 - ], - "__typename": [ - 85 - ] - }, - "abandoned_matches_avg_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "abandoned_matches_avg_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "abandoned_matches_bool_exp": { - "_and": [ - 183 - ], - "_not": [ - 183 - ], - "_or": [ - 183 - ], - "abandoned_at": [ - 5244 - ], - "id": [ - 6674 - ], - "match": [ - 3443 - ], - "match_id": [ - 6674 - ], - "steam_id": [ - 314 - ], - "__typename": [ - 85 - ] - }, - "abandoned_matches_constraint": {}, - "abandoned_matches_inc_input": { - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "abandoned_matches_insert_input": { - "abandoned_at": [ - 5243 - ], - "id": [ - 6672 - ], - "match": [ - 3452 - ], - "match_id": [ - 6672 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "abandoned_matches_max_fields": { - "abandoned_at": [ - 5243 - ], - "id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "abandoned_matches_max_order_by": { - "abandoned_at": [ - 3648 - ], - "id": [ - 3648 - ], - "match_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "abandoned_matches_min_fields": { - "abandoned_at": [ - 5243 - ], - "id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "abandoned_matches_min_order_by": { - "abandoned_at": [ - 3648 - ], - "id": [ - 3648 - ], - "match_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "abandoned_matches_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 174 - ], - "__typename": [ - 85 - ] - }, - "abandoned_matches_on_conflict": { - "constraint": [ - 184 - ], - "update_columns": [ - 207 - ], - "where": [ - 183 - ], - "__typename": [ - 85 - ] - }, - "abandoned_matches_order_by": { - "abandoned_at": [ - 3648 - ], - "id": [ - 3648 - ], - "match": [ - 3454 - ], - "match_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "abandoned_matches_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "abandoned_matches_select_column": {}, - "abandoned_matches_set_input": { - "abandoned_at": [ - 5243 - ], - "id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "abandoned_matches_stddev_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "abandoned_matches_stddev_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "abandoned_matches_stddev_pop_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "abandoned_matches_stddev_pop_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "abandoned_matches_stddev_samp_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "abandoned_matches_stddev_samp_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "abandoned_matches_stream_cursor_input": { - "initial_value": [ - 204 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "abandoned_matches_stream_cursor_value_input": { - "abandoned_at": [ - 5243 - ], - "id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "abandoned_matches_sum_fields": { - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "abandoned_matches_sum_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "abandoned_matches_update_column": {}, - "abandoned_matches_updates": { - "_inc": [ - 185 - ], - "_set": [ - 196 - ], - "where": [ - 183 - ], - "__typename": [ - 85 - ] - }, - "abandoned_matches_var_pop_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "abandoned_matches_var_pop_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "abandoned_matches_var_samp_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "abandoned_matches_var_samp_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "abandoned_matches_variance_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "abandoned_matches_variance_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "api_keys": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "label": [ - 85 - ], - "last_used_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "api_keys_aggregate": { - "aggregate": [ - 217 - ], - "nodes": [ - 215 - ], - "__typename": [ - 85 - ] - }, - "api_keys_aggregate_fields": { - "avg": [ - 218 - ], - "count": [ - 41, - { - "columns": [ - 229, - "[api_keys_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 223 - ], - "min": [ - 224 - ], - "stddev": [ - 231 - ], - "stddev_pop": [ - 232 - ], - "stddev_samp": [ - 233 - ], - "sum": [ - 236 - ], - "var_pop": [ - 239 - ], - "var_samp": [ - 240 - ], - "variance": [ - 241 - ], - "__typename": [ - 85 - ] - }, - "api_keys_avg_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "api_keys_bool_exp": { - "_and": [ - 219 - ], - "_not": [ - 219 - ], - "_or": [ - 219 - ], - "created_at": [ - 5244 - ], - "id": [ - 6674 - ], - "label": [ - 87 - ], - "last_used_at": [ - 5244 - ], - "steam_id": [ - 314 - ], - "__typename": [ - 85 - ] - }, - "api_keys_constraint": {}, - "api_keys_inc_input": { - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "api_keys_insert_input": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "label": [ - 85 - ], - "last_used_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "api_keys_max_fields": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "label": [ - 85 - ], - "last_used_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "api_keys_min_fields": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "label": [ - 85 - ], - "last_used_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "api_keys_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 215 - ], - "__typename": [ - 85 - ] - }, - "api_keys_on_conflict": { - "constraint": [ - 220 - ], - "update_columns": [ - 237 - ], - "where": [ - 219 - ], - "__typename": [ - 85 - ] - }, - "api_keys_order_by": { - "created_at": [ - 3648 - ], - "id": [ - 3648 - ], - "label": [ - 3648 - ], - "last_used_at": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "api_keys_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "api_keys_select_column": {}, - "api_keys_set_input": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "label": [ - 85 - ], - "last_used_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "api_keys_stddev_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "api_keys_stddev_pop_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "api_keys_stddev_samp_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "api_keys_stream_cursor_input": { - "initial_value": [ - 235 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "api_keys_stream_cursor_value_input": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "label": [ - 85 - ], - "last_used_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "api_keys_sum_fields": { - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "api_keys_update_column": {}, - "api_keys_updates": { - "_inc": [ - 221 - ], - "_set": [ - 230 - ], - "where": [ - 219 - ], - "__typename": [ - 85 - ] - }, - "api_keys_var_pop_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "api_keys_var_samp_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "api_keys_variance_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "approve_league_season_movements_args": { - "_league_season_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "award_recipients": { - "award": [ - 284 - ], - "award_id": [ - 6672 - ], - "awarded_by": [ - 4606 - ], - "awarded_by_steam_id": [ - 312 - ], - "created_at": [ - 5243 - ], - "event": [ - 2065 - ], - "event_id": [ - 6672 - ], - "id": [ - 6672 - ], - "league_season": [ - 2642 - ], - "league_season_id": [ - 6672 - ], - "note": [ - 85 - ], - "placement": [ - 41 - ], - "placement_tier": [ - 85 - ], - "player": [ - 4606 - ], - "player_steam_id": [ - 312 - ], - "season": [ - 4706 - ], - "season_id": [ - 6672 - ], - "source": [ - 650 - ], - "team": [ - 5194 - ], - "team_id": [ - 6672 - ], - "tournament": [ - 5896 - ], - "tournament_award": [ - 5245 - ], - "tournament_id": [ - 6672 - ], - "tournament_team": [ - 5850 - ], - "tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "award_recipients_aggregate": { - "aggregate": [ - 247 - ], - "nodes": [ - 243 - ], - "__typename": [ - 85 - ] - }, - "award_recipients_aggregate_bool_exp": { - "count": [ - 246 - ], - "__typename": [ - 85 - ] - }, - "award_recipients_aggregate_bool_exp_count": { - "arguments": [ - 264 - ], - "distinct": [ - 6 - ], - "filter": [ - 252 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "award_recipients_aggregate_fields": { - "avg": [ - 250 - ], - "count": [ - 41, - { - "columns": [ - 264, - "[award_recipients_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 256 - ], - "min": [ - 258 - ], - "stddev": [ - 266 - ], - "stddev_pop": [ - 268 - ], - "stddev_samp": [ - 270 - ], - "sum": [ - 274 - ], - "var_pop": [ - 278 - ], - "var_samp": [ - 280 - ], - "variance": [ - 282 - ], - "__typename": [ - 85 - ] - }, - "award_recipients_aggregate_order_by": { - "avg": [ - 251 - ], - "count": [ - 3648 - ], - "max": [ - 257 - ], - "min": [ - 259 - ], - "stddev": [ - 267 - ], - "stddev_pop": [ - 269 - ], - "stddev_samp": [ - 271 - ], - "sum": [ - 275 - ], - "var_pop": [ - 279 - ], - "var_samp": [ - 281 - ], - "variance": [ - 283 - ], - "__typename": [ - 85 - ] - }, - "award_recipients_arr_rel_insert_input": { - "data": [ - 255 - ], - "on_conflict": [ - 261 - ], - "__typename": [ - 85 - ] - }, - "award_recipients_avg_fields": { - "awarded_by_steam_id": [ - 32 - ], - "placement": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "award_recipients_avg_order_by": { - "awarded_by_steam_id": [ - 3648 - ], - "placement": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "award_recipients_bool_exp": { - "_and": [ - 252 - ], - "_not": [ - 252 - ], - "_or": [ - 252 - ], - "award": [ - 288 - ], - "award_id": [ - 6674 - ], - "awarded_by": [ - 4610 - ], - "awarded_by_steam_id": [ - 314 - ], - "created_at": [ - 5244 - ], - "event": [ - 2069 - ], - "event_id": [ - 6674 - ], - "id": [ - 6674 - ], - "league_season": [ - 2647 - ], - "league_season_id": [ - 6674 - ], - "note": [ - 87 - ], - "placement": [ - 42 - ], - "placement_tier": [ - 87 - ], - "player": [ - 4610 - ], - "player_steam_id": [ - 314 - ], - "season": [ - 4710 - ], - "season_id": [ - 6674 - ], - "source": [ - 651 - ], - "team": [ - 5205 - ], - "team_id": [ - 6674 - ], - "tournament": [ - 5917 - ], - "tournament_award": [ - 5254 - ], - "tournament_id": [ - 6674 - ], - "tournament_team": [ - 5861 - ], - "tournament_team_id": [ - 6674 - ], - "__typename": [ - 85 - ] - }, - "award_recipients_constraint": {}, - "award_recipients_inc_input": { - "awarded_by_steam_id": [ - 312 - ], - "placement": [ - 41 - ], - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "award_recipients_insert_input": { - "award": [ - 295 - ], - "award_id": [ - 6672 - ], - "awarded_by": [ - 4617 - ], - "awarded_by_steam_id": [ - 312 - ], - "created_at": [ - 5243 - ], - "event": [ - 2076 - ], - "event_id": [ - 6672 - ], - "id": [ - 6672 - ], - "league_season": [ - 2657 - ], - "league_season_id": [ - 6672 - ], - "note": [ - 85 - ], - "placement": [ - 41 - ], - "player": [ - 4617 - ], - "player_steam_id": [ - 312 - ], - "season": [ - 4717 - ], - "season_id": [ - 6672 - ], - "source": [ - 650 - ], - "team": [ - 5214 - ], - "team_id": [ - 6672 - ], - "tournament": [ - 5926 - ], - "tournament_award": [ - 5263 - ], - "tournament_id": [ - 6672 - ], - "tournament_team": [ - 5870 - ], - "tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "award_recipients_max_fields": { - "award_id": [ - 6672 - ], - "awarded_by_steam_id": [ - 312 - ], - "created_at": [ - 5243 - ], - "event_id": [ - 6672 - ], - "id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "note": [ - 85 - ], - "placement": [ - 41 - ], - "placement_tier": [ - 85 - ], - "player_steam_id": [ - 312 - ], - "season_id": [ - 6672 - ], - "team_id": [ - 6672 - ], - "tournament_id": [ - 6672 - ], - "tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "award_recipients_max_order_by": { - "award_id": [ - 3648 - ], - "awarded_by_steam_id": [ - 3648 - ], - "created_at": [ - 3648 - ], - "event_id": [ - 3648 - ], - "id": [ - 3648 - ], - "league_season_id": [ - 3648 - ], - "note": [ - 3648 - ], - "placement": [ - 3648 - ], - "placement_tier": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "season_id": [ - 3648 - ], - "team_id": [ - 3648 - ], - "tournament_id": [ - 3648 - ], - "tournament_team_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "award_recipients_min_fields": { - "award_id": [ - 6672 - ], - "awarded_by_steam_id": [ - 312 - ], - "created_at": [ - 5243 - ], - "event_id": [ - 6672 - ], - "id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "note": [ - 85 - ], - "placement": [ - 41 - ], - "placement_tier": [ - 85 - ], - "player_steam_id": [ - 312 - ], - "season_id": [ - 6672 - ], - "team_id": [ - 6672 - ], - "tournament_id": [ - 6672 - ], - "tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "award_recipients_min_order_by": { - "award_id": [ - 3648 - ], - "awarded_by_steam_id": [ - 3648 - ], - "created_at": [ - 3648 - ], - "event_id": [ - 3648 - ], - "id": [ - 3648 - ], - "league_season_id": [ - 3648 - ], - "note": [ - 3648 - ], - "placement": [ - 3648 - ], - "placement_tier": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "season_id": [ - 3648 - ], - "team_id": [ - 3648 - ], - "tournament_id": [ - 3648 - ], - "tournament_team_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "award_recipients_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 243 - ], - "__typename": [ - 85 - ] - }, - "award_recipients_on_conflict": { - "constraint": [ - 253 - ], - "update_columns": [ - 276 - ], - "where": [ - 252 - ], - "__typename": [ - 85 - ] - }, - "award_recipients_order_by": { - "award": [ - 297 - ], - "award_id": [ - 3648 - ], - "awarded_by": [ - 4619 - ], - "awarded_by_steam_id": [ - 3648 - ], - "created_at": [ - 3648 - ], - "event": [ - 2078 - ], - "event_id": [ - 3648 - ], - "id": [ - 3648 - ], - "league_season": [ - 2659 - ], - "league_season_id": [ - 3648 - ], - "note": [ - 3648 - ], - "placement": [ - 3648 - ], - "placement_tier": [ - 3648 - ], - "player": [ - 4619 - ], - "player_steam_id": [ - 3648 - ], - "season": [ - 4719 - ], - "season_id": [ - 3648 - ], - "source": [ - 3648 - ], - "team": [ - 5216 - ], - "team_id": [ - 3648 - ], - "tournament": [ - 5928 - ], - "tournament_award": [ - 5265 - ], - "tournament_id": [ - 3648 - ], - "tournament_team": [ - 5872 - ], - "tournament_team_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "award_recipients_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "award_recipients_select_column": {}, - "award_recipients_set_input": { - "award_id": [ - 6672 - ], - "awarded_by_steam_id": [ - 312 - ], - "created_at": [ - 5243 - ], - "event_id": [ - 6672 - ], - "id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "note": [ - 85 - ], - "placement": [ - 41 - ], - "player_steam_id": [ - 312 - ], - "season_id": [ - 6672 - ], - "source": [ - 650 - ], - "team_id": [ - 6672 - ], - "tournament_id": [ - 6672 - ], - "tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "award_recipients_stddev_fields": { - "awarded_by_steam_id": [ - 32 - ], - "placement": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "award_recipients_stddev_order_by": { - "awarded_by_steam_id": [ - 3648 - ], - "placement": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "award_recipients_stddev_pop_fields": { - "awarded_by_steam_id": [ - 32 - ], - "placement": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "award_recipients_stddev_pop_order_by": { - "awarded_by_steam_id": [ - 3648 - ], - "placement": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "award_recipients_stddev_samp_fields": { - "awarded_by_steam_id": [ - 32 - ], - "placement": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "award_recipients_stddev_samp_order_by": { - "awarded_by_steam_id": [ - 3648 - ], - "placement": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "award_recipients_stream_cursor_input": { - "initial_value": [ - 273 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "award_recipients_stream_cursor_value_input": { - "award_id": [ - 6672 - ], - "awarded_by_steam_id": [ - 312 - ], - "created_at": [ - 5243 - ], - "event_id": [ - 6672 - ], - "id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "note": [ - 85 - ], - "placement": [ - 41 - ], - "placement_tier": [ - 85 - ], - "player_steam_id": [ - 312 - ], - "season_id": [ - 6672 - ], - "source": [ - 650 - ], - "team_id": [ - 6672 - ], - "tournament_id": [ - 6672 - ], - "tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "award_recipients_sum_fields": { - "awarded_by_steam_id": [ - 312 - ], - "placement": [ - 41 - ], - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "award_recipients_sum_order_by": { - "awarded_by_steam_id": [ - 3648 - ], - "placement": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "award_recipients_update_column": {}, - "award_recipients_updates": { - "_inc": [ - 254 - ], - "_set": [ - 265 - ], - "where": [ - 252 - ], - "__typename": [ - 85 - ] - }, - "award_recipients_var_pop_fields": { - "awarded_by_steam_id": [ - 32 - ], - "placement": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "award_recipients_var_pop_order_by": { - "awarded_by_steam_id": [ - 3648 - ], - "placement": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "award_recipients_var_samp_fields": { - "awarded_by_steam_id": [ - 32 - ], - "placement": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "award_recipients_var_samp_order_by": { - "awarded_by_steam_id": [ - 3648 - ], - "placement": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "award_recipients_variance_fields": { - "awarded_by_steam_id": [ - 32 - ], - "placement": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "award_recipients_variance_order_by": { - "awarded_by_steam_id": [ - 3648 - ], - "placement": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "awards": { - "allow_multiple": [ - 6 - ], - "created_at": [ - 5243 - ], - "created_by": [ - 4606 - ], - "created_by_steam_id": [ - 312 - ], - "description": [ - 85 - ], - "event": [ - 2065 - ], - "event_id": [ - 6672 - ], - "id": [ - 6672 - ], - "image_url": [ - 85 - ], - "league_season": [ - 2642 - ], - "league_season_id": [ - 6672 - ], - "name": [ - 85 - ], - "recipients": [ - 243, - { - "distinct_on": [ - 264, - "[award_recipients_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 262, - "[award_recipients_order_by!]" - ], - "where": [ - 252 - ] - } - ], - "recipients_aggregate": [ - 244, - { - "distinct_on": [ - 264, - "[award_recipients_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 262, - "[award_recipients_order_by!]" - ], - "where": [ - 252 - ] - } - ], - "season": [ - 4706 - ], - "season_id": [ - 6672 - ], - "silhouette": [ - 41 - ], - "system_key": [ - 85 - ], - "tier": [ - 670 - ], - "tournament": [ - 5896 - ], - "tournament_configs": [ - 5245, - { - "distinct_on": [ - 5267, - "[tournament_awards_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5265, - "[tournament_awards_order_by!]" - ], - "where": [ - 5254 - ] - } - ], - "tournament_configs_aggregate": [ - 5246, - { - "distinct_on": [ - 5267, - "[tournament_awards_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5265, - "[tournament_awards_order_by!]" - ], - "where": [ - 5254 - ] - } - ], - "tournament_id": [ - 6672 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "awards_aggregate": { - "aggregate": [ - 286 - ], - "nodes": [ - 284 - ], - "__typename": [ - 85 - ] - }, - "awards_aggregate_fields": { - "avg": [ - 287 - ], - "count": [ - 41, - { - "columns": [ - 299, - "[awards_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 292 - ], - "min": [ - 293 - ], - "stddev": [ - 301 - ], - "stddev_pop": [ - 302 - ], - "stddev_samp": [ - 303 - ], - "sum": [ - 306 - ], - "var_pop": [ - 309 - ], - "var_samp": [ - 310 - ], - "variance": [ - 311 - ], - "__typename": [ - 85 - ] - }, - "awards_avg_fields": { - "created_by_steam_id": [ - 32 - ], - "silhouette": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "awards_bool_exp": { - "_and": [ - 288 - ], - "_not": [ - 288 - ], - "_or": [ - 288 - ], - "allow_multiple": [ - 7 - ], - "created_at": [ - 5244 - ], - "created_by": [ - 4610 - ], - "created_by_steam_id": [ - 314 - ], - "description": [ - 87 - ], - "event": [ - 2069 - ], - "event_id": [ - 6674 - ], - "id": [ - 6674 - ], - "image_url": [ - 87 - ], - "league_season": [ - 2647 - ], - "league_season_id": [ - 6674 - ], - "name": [ - 87 - ], - "recipients": [ - 252 - ], - "recipients_aggregate": [ - 245 - ], - "season": [ - 4710 - ], - "season_id": [ - 6674 - ], - "silhouette": [ - 42 - ], - "system_key": [ - 87 - ], - "tier": [ - 671 - ], - "tournament": [ - 5917 - ], - "tournament_configs": [ - 5254 - ], - "tournament_configs_aggregate": [ - 5247 - ], - "tournament_id": [ - 6674 - ], - "updated_at": [ - 5244 - ], - "__typename": [ - 85 - ] - }, - "awards_constraint": {}, - "awards_inc_input": { - "created_by_steam_id": [ - 312 - ], - "silhouette": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "awards_insert_input": { - "allow_multiple": [ - 6 - ], - "created_at": [ - 5243 - ], - "created_by": [ - 4617 - ], - "created_by_steam_id": [ - 312 - ], - "description": [ - 85 - ], - "event": [ - 2076 - ], - "event_id": [ - 6672 - ], - "id": [ - 6672 - ], - "image_url": [ - 85 - ], - "league_season": [ - 2657 - ], - "league_season_id": [ - 6672 - ], - "name": [ - 85 - ], - "recipients": [ - 249 - ], - "season": [ - 4717 - ], - "season_id": [ - 6672 - ], - "silhouette": [ - 41 - ], - "system_key": [ - 85 - ], - "tier": [ - 670 - ], - "tournament": [ - 5926 - ], - "tournament_configs": [ - 5251 - ], - "tournament_id": [ - 6672 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "awards_max_fields": { - "created_at": [ - 5243 - ], - "created_by_steam_id": [ - 312 - ], - "description": [ - 85 - ], - "event_id": [ - 6672 - ], - "id": [ - 6672 - ], - "image_url": [ - 85 - ], - "league_season_id": [ - 6672 - ], - "name": [ - 85 - ], - "season_id": [ - 6672 - ], - "silhouette": [ - 41 - ], - "system_key": [ - 85 - ], - "tournament_id": [ - 6672 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "awards_min_fields": { - "created_at": [ - 5243 - ], - "created_by_steam_id": [ - 312 - ], - "description": [ - 85 - ], - "event_id": [ - 6672 - ], - "id": [ - 6672 - ], - "image_url": [ - 85 - ], - "league_season_id": [ - 6672 - ], - "name": [ - 85 - ], - "season_id": [ - 6672 - ], - "silhouette": [ - 41 - ], - "system_key": [ - 85 - ], - "tournament_id": [ - 6672 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "awards_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 284 - ], - "__typename": [ - 85 - ] - }, - "awards_obj_rel_insert_input": { - "data": [ - 291 - ], - "on_conflict": [ - 296 - ], - "__typename": [ - 85 - ] - }, - "awards_on_conflict": { - "constraint": [ - 289 - ], - "update_columns": [ - 307 - ], - "where": [ - 288 - ], - "__typename": [ - 85 - ] - }, - "awards_order_by": { - "allow_multiple": [ - 3648 - ], - "created_at": [ - 3648 - ], - "created_by": [ - 4619 - ], - "created_by_steam_id": [ - 3648 - ], - "description": [ - 3648 - ], - "event": [ - 2078 - ], - "event_id": [ - 3648 - ], - "id": [ - 3648 - ], - "image_url": [ - 3648 - ], - "league_season": [ - 2659 - ], - "league_season_id": [ - 3648 - ], - "name": [ - 3648 - ], - "recipients_aggregate": [ - 248 - ], - "season": [ - 4719 - ], - "season_id": [ - 3648 - ], - "silhouette": [ - 3648 - ], - "system_key": [ - 3648 - ], - "tier": [ - 3648 - ], - "tournament": [ - 5928 - ], - "tournament_configs_aggregate": [ - 5250 - ], - "tournament_id": [ - 3648 - ], - "updated_at": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "awards_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "awards_select_column": {}, - "awards_set_input": { - "allow_multiple": [ - 6 - ], - "created_at": [ - 5243 - ], - "created_by_steam_id": [ - 312 - ], - "description": [ - 85 - ], - "event_id": [ - 6672 - ], - "id": [ - 6672 - ], - "image_url": [ - 85 - ], - "league_season_id": [ - 6672 - ], - "name": [ - 85 - ], - "season_id": [ - 6672 - ], - "silhouette": [ - 41 - ], - "system_key": [ - 85 - ], - "tier": [ - 670 - ], - "tournament_id": [ - 6672 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "awards_stddev_fields": { - "created_by_steam_id": [ - 32 - ], - "silhouette": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "awards_stddev_pop_fields": { - "created_by_steam_id": [ - 32 - ], - "silhouette": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "awards_stddev_samp_fields": { - "created_by_steam_id": [ - 32 - ], - "silhouette": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "awards_stream_cursor_input": { - "initial_value": [ - 305 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "awards_stream_cursor_value_input": { - "allow_multiple": [ - 6 - ], - "created_at": [ - 5243 - ], - "created_by_steam_id": [ - 312 - ], - "description": [ - 85 - ], - "event_id": [ - 6672 - ], - "id": [ - 6672 - ], - "image_url": [ - 85 - ], - "league_season_id": [ - 6672 - ], - "name": [ - 85 - ], - "season_id": [ - 6672 - ], - "silhouette": [ - 41 - ], - "system_key": [ - 85 - ], - "tier": [ - 670 - ], - "tournament_id": [ - 6672 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "awards_sum_fields": { - "created_by_steam_id": [ - 312 - ], - "silhouette": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "awards_update_column": {}, - "awards_updates": { - "_inc": [ - 290 - ], - "_set": [ - 300 - ], - "where": [ - 288 - ], - "__typename": [ - 85 - ] - }, - "awards_var_pop_fields": { - "created_by_steam_id": [ - 32 - ], - "silhouette": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "awards_var_samp_fields": { - "created_by_steam_id": [ - 32 - ], - "silhouette": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "awards_variance_fields": { - "created_by_steam_id": [ - 32 - ], - "silhouette": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "bigint": {}, - "bigint_array_comparison_exp": { - "_contained_in": [ - 312 - ], - "_contains": [ - 312 - ], - "_eq": [ - 312 - ], - "_gt": [ - 312 - ], - "_gte": [ - 312 - ], - "_in": [ - 312 - ], - "_is_null": [ - 6 - ], - "_lt": [ - 312 - ], - "_lte": [ - 312 - ], - "_neq": [ - 312 - ], - "_nin": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "bigint_comparison_exp": { - "_eq": [ - 312 - ], - "_gt": [ - 312 - ], - "_gte": [ - 312 - ], - "_in": [ - 312 - ], - "_is_null": [ - 6 - ], - "_lt": [ - 312 - ], - "_lte": [ - 312 - ], - "_neq": [ - 312 - ], - "_nin": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "bytea": {}, - "bytea_comparison_exp": { - "_eq": [ - 315 - ], - "_gt": [ - 315 - ], - "_gte": [ - 315 - ], - "_in": [ - 315 - ], - "_is_null": [ - 6 - ], - "_lt": [ - 315 - ], - "_lte": [ - 315 - ], - "_neq": [ - 315 - ], - "_nin": [ - 315 - ], - "__typename": [ - 85 - ] - }, - "chat_read_state": { - "last_read_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "thread": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "chat_read_state_aggregate": { - "aggregate": [ - 319 - ], - "nodes": [ - 317 - ], - "__typename": [ - 85 - ] - }, - "chat_read_state_aggregate_fields": { - "avg": [ - 320 - ], - "count": [ - 41, - { - "columns": [ - 331, - "[chat_read_state_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 325 - ], - "min": [ - 326 - ], - "stddev": [ - 333 - ], - "stddev_pop": [ - 334 - ], - "stddev_samp": [ - 335 - ], - "sum": [ - 338 - ], - "var_pop": [ - 341 - ], - "var_samp": [ - 342 - ], - "variance": [ - 343 - ], - "__typename": [ - 85 - ] - }, - "chat_read_state_avg_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "chat_read_state_bool_exp": { - "_and": [ - 321 - ], - "_not": [ - 321 - ], - "_or": [ - 321 - ], - "last_read_at": [ - 5244 - ], - "steam_id": [ - 314 - ], - "thread": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "chat_read_state_constraint": {}, - "chat_read_state_inc_input": { - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "chat_read_state_insert_input": { - "last_read_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "thread": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "chat_read_state_max_fields": { - "last_read_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "thread": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "chat_read_state_min_fields": { - "last_read_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "thread": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "chat_read_state_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 317 - ], - "__typename": [ - 85 - ] - }, - "chat_read_state_on_conflict": { - "constraint": [ - 322 - ], - "update_columns": [ - 339 - ], - "where": [ - 321 - ], - "__typename": [ - 85 - ] - }, - "chat_read_state_order_by": { - "last_read_at": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "thread": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "chat_read_state_pk_columns_input": { - "steam_id": [ - 312 - ], - "thread": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "chat_read_state_select_column": {}, - "chat_read_state_set_input": { - "last_read_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "thread": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "chat_read_state_stddev_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "chat_read_state_stddev_pop_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "chat_read_state_stddev_samp_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "chat_read_state_stream_cursor_input": { - "initial_value": [ - 337 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "chat_read_state_stream_cursor_value_input": { - "last_read_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "thread": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "chat_read_state_sum_fields": { - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "chat_read_state_update_column": {}, - "chat_read_state_updates": { - "_inc": [ - 323 - ], - "_set": [ - 332 - ], - "where": [ - 321 - ], - "__typename": [ - 85 - ] - }, - "chat_read_state_var_pop_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "chat_read_state_var_samp_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "chat_read_state_variance_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs": { - "clip": [ - 2953 - ], - "clip_id": [ - 6672 - ], - "created_at": [ - 5243 - ], - "error_message": [ - 85 - ], - "game_server_node": [ - 2314 - ], - "game_server_node_id": [ - 85 - ], - "id": [ - 6672 - ], - "k8s_job_name": [ - 85 - ], - "last_status_at": [ - 5243 - ], - "match_map": [ - 3248 - ], - "match_map_demo": [ - 3128 - ], - "match_map_demo_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "paused": [ - 6 - ], - "progress": [ - 3646 - ], - "session_token": [ - 85 - ], - "sort_index": [ - 41 - ], - "spec": [ - 2439, - { - "path": [ - 85 - ] - } - ], - "status": [ - 85 - ], - "status_history": [ - 2439, - { - "path": [ - 85 - ] - } - ], - "user": [ - 4606 - ], - "user_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs_aggregate": { - "aggregate": [ - 350 - ], - "nodes": [ - 344 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs_aggregate_bool_exp": { - "bool_and": [ - 347 - ], - "bool_or": [ - 348 - ], - "count": [ - 349 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs_aggregate_bool_exp_bool_and": { - "arguments": [ - 373 - ], - "distinct": [ - 6 - ], - "filter": [ - 356 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs_aggregate_bool_exp_bool_or": { - "arguments": [ - 374 - ], - "distinct": [ - 6 - ], - "filter": [ - 356 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs_aggregate_bool_exp_count": { - "arguments": [ - 372 - ], - "distinct": [ - 6 - ], - "filter": [ - 356 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs_aggregate_fields": { - "avg": [ - 354 - ], - "count": [ - 41, - { - "columns": [ - 372, - "[clip_render_jobs_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 363 - ], - "min": [ - 365 - ], - "stddev": [ - 376 - ], - "stddev_pop": [ - 378 - ], - "stddev_samp": [ - 380 - ], - "sum": [ - 384 - ], - "var_pop": [ - 388 - ], - "var_samp": [ - 390 - ], - "variance": [ - 392 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs_aggregate_order_by": { - "avg": [ - 355 - ], - "count": [ - 3648 - ], - "max": [ - 364 - ], - "min": [ - 366 - ], - "stddev": [ - 377 - ], - "stddev_pop": [ - 379 - ], - "stddev_samp": [ - 381 - ], - "sum": [ - 385 - ], - "var_pop": [ - 389 - ], - "var_samp": [ - 391 - ], - "variance": [ - 393 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs_append_input": { - "spec": [ - 2439 - ], - "status_history": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs_arr_rel_insert_input": { - "data": [ - 362 - ], - "on_conflict": [ - 368 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs_avg_fields": { - "progress": [ - 32 - ], - "sort_index": [ - 32 - ], - "user_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs_avg_order_by": { - "progress": [ - 3648 - ], - "sort_index": [ - 3648 - ], - "user_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs_bool_exp": { - "_and": [ - 356 - ], - "_not": [ - 356 - ], - "_or": [ - 356 - ], - "clip": [ - 2962 - ], - "clip_id": [ - 6674 - ], - "created_at": [ - 5244 - ], - "error_message": [ - 87 - ], - "game_server_node": [ - 2326 - ], - "game_server_node_id": [ - 87 - ], - "id": [ - 6674 - ], - "k8s_job_name": [ - 87 - ], - "last_status_at": [ - 5244 - ], - "match_map": [ - 3257 - ], - "match_map_demo": [ - 3140 - ], - "match_map_demo_id": [ - 6674 - ], - "match_map_id": [ - 6674 - ], - "paused": [ - 7 - ], - "progress": [ - 3647 - ], - "session_token": [ - 87 - ], - "sort_index": [ - 42 - ], - "spec": [ - 2441 - ], - "status": [ - 87 - ], - "status_history": [ - 2441 - ], - "user": [ - 4610 - ], - "user_steam_id": [ - 314 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs_constraint": {}, - "clip_render_jobs_delete_at_path_input": { - "spec": [ - 85 - ], - "status_history": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs_delete_elem_input": { - "spec": [ - 41 - ], - "status_history": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs_delete_key_input": { - "spec": [ - 85 - ], - "status_history": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs_inc_input": { - "progress": [ - 3646 - ], - "sort_index": [ - 41 - ], - "user_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs_insert_input": { - "clip": [ - 2971 - ], - "clip_id": [ - 6672 - ], - "created_at": [ - 5243 - ], - "error_message": [ - 85 - ], - "game_server_node": [ - 2338 - ], - "game_server_node_id": [ - 85 - ], - "id": [ - 6672 - ], - "k8s_job_name": [ - 85 - ], - "last_status_at": [ - 5243 - ], - "match_map": [ - 3266 - ], - "match_map_demo": [ - 3152 - ], - "match_map_demo_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "paused": [ - 6 - ], - "progress": [ - 3646 - ], - "session_token": [ - 85 - ], - "sort_index": [ - 41 - ], - "spec": [ - 2439 - ], - "status": [ - 85 - ], - "status_history": [ - 2439 - ], - "user": [ - 4617 - ], - "user_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs_max_fields": { - "clip_id": [ - 6672 - ], - "created_at": [ - 5243 - ], - "error_message": [ - 85 - ], - "game_server_node_id": [ - 85 - ], - "id": [ - 6672 - ], - "k8s_job_name": [ - 85 - ], - "last_status_at": [ - 5243 - ], - "match_map_demo_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "progress": [ - 3646 - ], - "session_token": [ - 85 - ], - "sort_index": [ - 41 - ], - "status": [ - 85 - ], - "user_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs_max_order_by": { - "clip_id": [ - 3648 - ], - "created_at": [ - 3648 - ], - "error_message": [ - 3648 - ], - "game_server_node_id": [ - 3648 - ], - "id": [ - 3648 - ], - "k8s_job_name": [ - 3648 - ], - "last_status_at": [ - 3648 - ], - "match_map_demo_id": [ - 3648 - ], - "match_map_id": [ - 3648 - ], - "progress": [ - 3648 - ], - "session_token": [ - 3648 - ], - "sort_index": [ - 3648 - ], - "status": [ - 3648 - ], - "user_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs_min_fields": { - "clip_id": [ - 6672 - ], - "created_at": [ - 5243 - ], - "error_message": [ - 85 - ], - "game_server_node_id": [ - 85 - ], - "id": [ - 6672 - ], - "k8s_job_name": [ - 85 - ], - "last_status_at": [ - 5243 - ], - "match_map_demo_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "progress": [ - 3646 - ], - "session_token": [ - 85 - ], - "sort_index": [ - 41 - ], - "status": [ - 85 - ], - "user_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs_min_order_by": { - "clip_id": [ - 3648 - ], - "created_at": [ - 3648 - ], - "error_message": [ - 3648 - ], - "game_server_node_id": [ - 3648 - ], - "id": [ - 3648 - ], - "k8s_job_name": [ - 3648 - ], - "last_status_at": [ - 3648 - ], - "match_map_demo_id": [ - 3648 - ], - "match_map_id": [ - 3648 - ], - "progress": [ - 3648 - ], - "session_token": [ - 3648 - ], - "sort_index": [ - 3648 - ], - "status": [ - 3648 - ], - "user_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 344 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs_on_conflict": { - "constraint": [ - 357 - ], - "update_columns": [ - 386 - ], - "where": [ - 356 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs_order_by": { - "clip": [ - 2973 - ], - "clip_id": [ - 3648 - ], - "created_at": [ - 3648 - ], - "error_message": [ - 3648 - ], - "game_server_node": [ - 2340 - ], - "game_server_node_id": [ - 3648 - ], - "id": [ - 3648 - ], - "k8s_job_name": [ - 3648 - ], - "last_status_at": [ - 3648 - ], - "match_map": [ - 3268 - ], - "match_map_demo": [ - 3154 - ], - "match_map_demo_id": [ - 3648 - ], - "match_map_id": [ - 3648 - ], - "paused": [ - 3648 - ], - "progress": [ - 3648 - ], - "session_token": [ - 3648 - ], - "sort_index": [ - 3648 - ], - "spec": [ - 3648 - ], - "status": [ - 3648 - ], - "status_history": [ - 3648 - ], - "user": [ - 4619 - ], - "user_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs_prepend_input": { - "spec": [ - 2439 - ], - "status_history": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs_select_column": {}, - "clip_render_jobs_select_column_clip_render_jobs_aggregate_bool_exp_bool_and_arguments_columns": {}, - "clip_render_jobs_select_column_clip_render_jobs_aggregate_bool_exp_bool_or_arguments_columns": {}, - "clip_render_jobs_set_input": { - "clip_id": [ - 6672 - ], - "created_at": [ - 5243 - ], - "error_message": [ - 85 - ], - "game_server_node_id": [ - 85 - ], - "id": [ - 6672 - ], - "k8s_job_name": [ - 85 - ], - "last_status_at": [ - 5243 - ], - "match_map_demo_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "paused": [ - 6 - ], - "progress": [ - 3646 - ], - "session_token": [ - 85 - ], - "sort_index": [ - 41 - ], - "spec": [ - 2439 - ], - "status": [ - 85 - ], - "status_history": [ - 2439 - ], - "user_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs_stddev_fields": { - "progress": [ - 32 - ], - "sort_index": [ - 32 - ], - "user_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs_stddev_order_by": { - "progress": [ - 3648 - ], - "sort_index": [ - 3648 - ], - "user_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs_stddev_pop_fields": { - "progress": [ - 32 - ], - "sort_index": [ - 32 - ], - "user_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs_stddev_pop_order_by": { - "progress": [ - 3648 - ], - "sort_index": [ - 3648 - ], - "user_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs_stddev_samp_fields": { - "progress": [ - 32 - ], - "sort_index": [ - 32 - ], - "user_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs_stddev_samp_order_by": { - "progress": [ - 3648 - ], - "sort_index": [ - 3648 - ], - "user_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs_stream_cursor_input": { - "initial_value": [ - 383 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs_stream_cursor_value_input": { - "clip_id": [ - 6672 - ], - "created_at": [ - 5243 - ], - "error_message": [ - 85 - ], - "game_server_node_id": [ - 85 - ], - "id": [ - 6672 - ], - "k8s_job_name": [ - 85 - ], - "last_status_at": [ - 5243 - ], - "match_map_demo_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "paused": [ - 6 - ], - "progress": [ - 3646 - ], - "session_token": [ - 85 - ], - "sort_index": [ - 41 - ], - "spec": [ - 2439 - ], - "status": [ - 85 - ], - "status_history": [ - 2439 - ], - "user_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs_sum_fields": { - "progress": [ - 3646 - ], - "sort_index": [ - 41 - ], - "user_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs_sum_order_by": { - "progress": [ - 3648 - ], - "sort_index": [ - 3648 - ], - "user_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs_update_column": {}, - "clip_render_jobs_updates": { - "_append": [ - 352 - ], - "_delete_at_path": [ - 358 - ], - "_delete_elem": [ - 359 - ], - "_delete_key": [ - 360 - ], - "_inc": [ - 361 - ], - "_prepend": [ - 371 - ], - "_set": [ - 375 - ], - "where": [ - 356 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs_var_pop_fields": { - "progress": [ - 32 - ], - "sort_index": [ - 32 - ], - "user_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs_var_pop_order_by": { - "progress": [ - 3648 - ], - "sort_index": [ - 3648 - ], - "user_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs_var_samp_fields": { - "progress": [ - 32 - ], - "sort_index": [ - 32 - ], - "user_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs_var_samp_order_by": { - "progress": [ - 3648 - ], - "sort_index": [ - 3648 - ], - "user_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs_variance_fields": { - "progress": [ - 32 - ], - "sort_index": [ - 32 - ], - "user_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "clip_render_jobs_variance_order_by": { - "progress": [ - 3648 - ], - "sort_index": [ - 3648 - ], - "user_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "clone_league_season_args": { - "_league_season_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "cursor_ordering": {}, - "custom_pages": { - "created_at": [ - 5243 - ], - "deployments": [ - 2439, - { - "path": [ - 85 - ] - } - ], - "enabled": [ - 6 - ], - "exposed_module": [ - 85 - ], - "icon": [ - 85 - ], - "id": [ - 6672 - ], - "is_default": [ - 6 - ], - "manifest_url": [ - 85 - ], - "nav_group": [ - 85 - ], - "nav_order": [ - 41 - ], - "plugin_slug": [ - 85 - ], - "profile_tab_label": [ - 85 - ], - "remote_entry_url": [ - 85 - ], - "remote_scope": [ - 85 - ], - "required_role": [ - 1286 - ], - "slug": [ - 85 - ], - "title": [ - 85 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "custom_pages_aggregate": { - "aggregate": [ - 398 - ], - "nodes": [ - 396 - ], - "__typename": [ - 85 - ] - }, - "custom_pages_aggregate_fields": { - "avg": [ - 400 - ], - "count": [ - 41, - { - "columns": [ - 415, - "[custom_pages_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 408 - ], - "min": [ - 409 - ], - "stddev": [ - 417 - ], - "stddev_pop": [ - 418 - ], - "stddev_samp": [ - 419 - ], - "sum": [ - 422 - ], - "var_pop": [ - 425 - ], - "var_samp": [ - 426 - ], - "variance": [ - 427 - ], - "__typename": [ - 85 - ] - }, - "custom_pages_append_input": { - "deployments": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "custom_pages_avg_fields": { - "nav_order": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "custom_pages_bool_exp": { - "_and": [ - 401 - ], - "_not": [ - 401 - ], - "_or": [ - 401 - ], - "created_at": [ - 5244 - ], - "deployments": [ - 2441 - ], - "enabled": [ - 7 - ], - "exposed_module": [ - 87 - ], - "icon": [ - 87 - ], - "id": [ - 6674 - ], - "is_default": [ - 7 - ], - "manifest_url": [ - 87 - ], - "nav_group": [ - 87 - ], - "nav_order": [ - 42 - ], - "plugin_slug": [ - 87 - ], - "profile_tab_label": [ - 87 - ], - "remote_entry_url": [ - 87 - ], - "remote_scope": [ - 87 - ], - "required_role": [ - 1287 - ], - "slug": [ - 87 - ], - "title": [ - 87 - ], - "updated_at": [ - 5244 - ], - "__typename": [ - 85 - ] - }, - "custom_pages_constraint": {}, - "custom_pages_delete_at_path_input": { - "deployments": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "custom_pages_delete_elem_input": { - "deployments": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "custom_pages_delete_key_input": { - "deployments": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "custom_pages_inc_input": { - "nav_order": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "custom_pages_insert_input": { - "created_at": [ - 5243 - ], - "deployments": [ - 2439 - ], - "enabled": [ - 6 - ], - "exposed_module": [ - 85 - ], - "icon": [ - 85 - ], - "id": [ - 6672 - ], - "is_default": [ - 6 - ], - "manifest_url": [ - 85 - ], - "nav_group": [ - 85 - ], - "nav_order": [ - 41 - ], - "plugin_slug": [ - 85 - ], - "profile_tab_label": [ - 85 - ], - "remote_entry_url": [ - 85 - ], - "remote_scope": [ - 85 - ], - "required_role": [ - 1286 - ], - "slug": [ - 85 - ], - "title": [ - 85 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "custom_pages_max_fields": { - "created_at": [ - 5243 - ], - "exposed_module": [ - 85 - ], - "icon": [ - 85 - ], - "id": [ - 6672 - ], - "manifest_url": [ - 85 - ], - "nav_group": [ - 85 - ], - "nav_order": [ - 41 - ], - "plugin_slug": [ - 85 - ], - "profile_tab_label": [ - 85 - ], - "remote_entry_url": [ - 85 - ], - "remote_scope": [ - 85 - ], - "slug": [ - 85 - ], - "title": [ - 85 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "custom_pages_min_fields": { - "created_at": [ - 5243 - ], - "exposed_module": [ - 85 - ], - "icon": [ - 85 - ], - "id": [ - 6672 - ], - "manifest_url": [ - 85 - ], - "nav_group": [ - 85 - ], - "nav_order": [ - 41 - ], - "plugin_slug": [ - 85 - ], - "profile_tab_label": [ - 85 - ], - "remote_entry_url": [ - 85 - ], - "remote_scope": [ - 85 - ], - "slug": [ - 85 - ], - "title": [ - 85 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "custom_pages_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 396 - ], - "__typename": [ - 85 - ] - }, - "custom_pages_on_conflict": { - "constraint": [ - 402 - ], - "update_columns": [ - 423 - ], - "where": [ - 401 - ], - "__typename": [ - 85 - ] - }, - "custom_pages_order_by": { - "created_at": [ - 3648 - ], - "deployments": [ - 3648 - ], - "enabled": [ - 3648 - ], - "exposed_module": [ - 3648 - ], - "icon": [ - 3648 - ], - "id": [ - 3648 - ], - "is_default": [ - 3648 - ], - "manifest_url": [ - 3648 - ], - "nav_group": [ - 3648 - ], - "nav_order": [ - 3648 - ], - "plugin_slug": [ - 3648 - ], - "profile_tab_label": [ - 3648 - ], - "remote_entry_url": [ - 3648 - ], - "remote_scope": [ - 3648 - ], - "required_role": [ - 3648 - ], - "slug": [ - 3648 - ], - "title": [ - 3648 - ], - "updated_at": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "custom_pages_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "custom_pages_prepend_input": { - "deployments": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "custom_pages_select_column": {}, - "custom_pages_set_input": { - "created_at": [ - 5243 - ], - "deployments": [ - 2439 - ], - "enabled": [ - 6 - ], - "exposed_module": [ - 85 - ], - "icon": [ - 85 - ], - "id": [ - 6672 - ], - "is_default": [ - 6 - ], - "manifest_url": [ - 85 - ], - "nav_group": [ - 85 - ], - "nav_order": [ - 41 - ], - "plugin_slug": [ - 85 - ], - "profile_tab_label": [ - 85 - ], - "remote_entry_url": [ - 85 - ], - "remote_scope": [ - 85 - ], - "required_role": [ - 1286 - ], - "slug": [ - 85 - ], - "title": [ - 85 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "custom_pages_stddev_fields": { - "nav_order": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "custom_pages_stddev_pop_fields": { - "nav_order": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "custom_pages_stddev_samp_fields": { - "nav_order": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "custom_pages_stream_cursor_input": { - "initial_value": [ - 421 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "custom_pages_stream_cursor_value_input": { - "created_at": [ - 5243 - ], - "deployments": [ - 2439 - ], - "enabled": [ - 6 - ], - "exposed_module": [ - 85 - ], - "icon": [ - 85 - ], - "id": [ - 6672 - ], - "is_default": [ - 6 - ], - "manifest_url": [ - 85 - ], - "nav_group": [ - 85 - ], - "nav_order": [ - 41 - ], - "plugin_slug": [ - 85 - ], - "profile_tab_label": [ - 85 - ], - "remote_entry_url": [ - 85 - ], - "remote_scope": [ - 85 - ], - "required_role": [ - 1286 - ], - "slug": [ - 85 - ], - "title": [ - 85 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "custom_pages_sum_fields": { - "nav_order": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "custom_pages_update_column": {}, - "custom_pages_updates": { - "_append": [ - 399 - ], - "_delete_at_path": [ - 403 - ], - "_delete_elem": [ - 404 - ], - "_delete_key": [ - 405 - ], - "_inc": [ - 406 - ], - "_prepend": [ - 414 - ], - "_set": [ - 416 - ], - "where": [ - 401 - ], - "__typename": [ - 85 - ] - }, - "custom_pages_var_pop_fields": { - "nav_order": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "custom_pages_var_samp_fields": { - "nav_order": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "custom_pages_variance_fields": { - "nav_order": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "db_backups": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "name": [ - 85 - ], - "size": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "db_backups_aggregate": { - "aggregate": [ - 430 - ], - "nodes": [ - 428 - ], - "__typename": [ - 85 - ] - }, - "db_backups_aggregate_fields": { - "avg": [ - 431 - ], - "count": [ - 41, - { - "columns": [ - 442, - "[db_backups_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 436 - ], - "min": [ - 437 - ], - "stddev": [ - 444 - ], - "stddev_pop": [ - 445 - ], - "stddev_samp": [ - 446 - ], - "sum": [ - 449 - ], - "var_pop": [ - 452 - ], - "var_samp": [ - 453 - ], - "variance": [ - 454 - ], - "__typename": [ - 85 - ] - }, - "db_backups_avg_fields": { - "size": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "db_backups_bool_exp": { - "_and": [ - 432 - ], - "_not": [ - 432 - ], - "_or": [ - 432 - ], - "created_at": [ - 5244 - ], - "id": [ - 6674 - ], - "name": [ - 87 - ], - "size": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "db_backups_constraint": {}, - "db_backups_inc_input": { - "size": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "db_backups_insert_input": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "name": [ - 85 - ], - "size": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "db_backups_max_fields": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "name": [ - 85 - ], - "size": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "db_backups_min_fields": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "name": [ - 85 - ], - "size": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "db_backups_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 428 - ], - "__typename": [ - 85 - ] - }, - "db_backups_on_conflict": { - "constraint": [ - 433 - ], - "update_columns": [ - 450 - ], - "where": [ - 432 - ], - "__typename": [ - 85 - ] - }, - "db_backups_order_by": { - "created_at": [ - 3648 - ], - "id": [ - 3648 - ], - "name": [ - 3648 - ], - "size": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "db_backups_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "db_backups_select_column": {}, - "db_backups_set_input": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "name": [ - 85 - ], - "size": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "db_backups_stddev_fields": { - "size": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "db_backups_stddev_pop_fields": { - "size": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "db_backups_stddev_samp_fields": { - "size": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "db_backups_stream_cursor_input": { - "initial_value": [ - 448 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "db_backups_stream_cursor_value_input": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "name": [ - 85 - ], - "size": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "db_backups_sum_fields": { - "size": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "db_backups_update_column": {}, - "db_backups_updates": { - "_inc": [ - 434 - ], - "_set": [ - 443 - ], - "where": [ - 432 - ], - "__typename": [ - 85 - ] - }, - "db_backups_var_pop_fields": { - "size": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "db_backups_var_samp_fields": { - "size": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "db_backups_variance_fields": { - "size": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "direct_conversations": { - "is_open": [ - 6 - ], - "last_message_at": [ - 5243 - ], - "position": [ - 41 - ], - "room_id": [ - 85 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "direct_conversations_aggregate": { - "aggregate": [ - 457 - ], - "nodes": [ - 455 - ], - "__typename": [ - 85 - ] - }, - "direct_conversations_aggregate_fields": { - "avg": [ - 458 - ], - "count": [ - 41, - { - "columns": [ - 469, - "[direct_conversations_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 463 - ], - "min": [ - 464 - ], - "stddev": [ - 471 - ], - "stddev_pop": [ - 472 - ], - "stddev_samp": [ - 473 - ], - "sum": [ - 476 - ], - "var_pop": [ - 479 - ], - "var_samp": [ - 480 - ], - "variance": [ - 481 - ], - "__typename": [ - 85 - ] - }, - "direct_conversations_avg_fields": { - "position": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "direct_conversations_bool_exp": { - "_and": [ - 459 - ], - "_not": [ - 459 - ], - "_or": [ - 459 - ], - "is_open": [ - 7 - ], - "last_message_at": [ - 5244 - ], - "position": [ - 42 - ], - "room_id": [ - 87 - ], - "steam_id": [ - 314 - ], - "__typename": [ - 85 - ] - }, - "direct_conversations_constraint": {}, - "direct_conversations_inc_input": { - "position": [ - 41 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "direct_conversations_insert_input": { - "is_open": [ - 6 - ], - "last_message_at": [ - 5243 - ], - "position": [ - 41 - ], - "room_id": [ - 85 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "direct_conversations_max_fields": { - "last_message_at": [ - 5243 - ], - "position": [ - 41 - ], - "room_id": [ - 85 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "direct_conversations_min_fields": { - "last_message_at": [ - 5243 - ], - "position": [ - 41 - ], - "room_id": [ - 85 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "direct_conversations_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 455 - ], - "__typename": [ - 85 - ] - }, - "direct_conversations_on_conflict": { - "constraint": [ - 460 - ], - "update_columns": [ - 477 - ], - "where": [ - 459 - ], - "__typename": [ - 85 - ] - }, - "direct_conversations_order_by": { - "is_open": [ - 3648 - ], - "last_message_at": [ - 3648 - ], - "position": [ - 3648 - ], - "room_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "direct_conversations_pk_columns_input": { - "room_id": [ - 85 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "direct_conversations_select_column": {}, - "direct_conversations_set_input": { - "is_open": [ - 6 - ], - "last_message_at": [ - 5243 - ], - "position": [ - 41 - ], - "room_id": [ - 85 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "direct_conversations_stddev_fields": { - "position": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "direct_conversations_stddev_pop_fields": { - "position": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "direct_conversations_stddev_samp_fields": { - "position": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "direct_conversations_stream_cursor_input": { - "initial_value": [ - 475 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "direct_conversations_stream_cursor_value_input": { - "is_open": [ - 6 - ], - "last_message_at": [ - 5243 - ], - "position": [ - 41 - ], - "room_id": [ - 85 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "direct_conversations_sum_fields": { - "position": [ - 41 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "direct_conversations_update_column": {}, - "direct_conversations_updates": { - "_inc": [ - 461 - ], - "_set": [ - 470 - ], - "where": [ - 459 - ], - "__typename": [ - 85 - ] - }, - "direct_conversations_var_pop_fields": { - "position": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "direct_conversations_var_samp_fields": { - "position": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "direct_conversations_variance_fields": { - "position": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "direct_messages": { - "created_at": [ - 5243 - ], - "from_steam_id": [ - 312 - ], - "id": [ - 6672 - ], - "message": [ - 85 - ], - "room_id": [ - 85 - ], - "seq": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "direct_messages_aggregate": { - "aggregate": [ - 484 - ], - "nodes": [ - 482 - ], - "__typename": [ - 85 - ] - }, - "direct_messages_aggregate_fields": { - "avg": [ - 485 - ], - "count": [ - 41, - { - "columns": [ - 496, - "[direct_messages_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 490 - ], - "min": [ - 491 - ], - "stddev": [ - 498 - ], - "stddev_pop": [ - 499 - ], - "stddev_samp": [ - 500 - ], - "sum": [ - 503 - ], - "var_pop": [ - 506 - ], - "var_samp": [ - 507 - ], - "variance": [ - 508 - ], - "__typename": [ - 85 - ] - }, - "direct_messages_avg_fields": { - "from_steam_id": [ - 32 - ], - "seq": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "direct_messages_bool_exp": { - "_and": [ - 486 - ], - "_not": [ - 486 - ], - "_or": [ - 486 - ], - "created_at": [ - 5244 - ], - "from_steam_id": [ - 314 - ], - "id": [ - 6674 - ], - "message": [ - 87 - ], - "room_id": [ - 87 - ], - "seq": [ - 314 - ], - "__typename": [ - 85 - ] - }, - "direct_messages_constraint": {}, - "direct_messages_inc_input": { - "from_steam_id": [ - 312 - ], - "seq": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "direct_messages_insert_input": { - "created_at": [ - 5243 - ], - "from_steam_id": [ - 312 - ], - "id": [ - 6672 - ], - "message": [ - 85 - ], - "room_id": [ - 85 - ], - "seq": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "direct_messages_max_fields": { - "created_at": [ - 5243 - ], - "from_steam_id": [ - 312 - ], - "id": [ - 6672 - ], - "message": [ - 85 - ], - "room_id": [ - 85 - ], - "seq": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "direct_messages_min_fields": { - "created_at": [ - 5243 - ], - "from_steam_id": [ - 312 - ], - "id": [ - 6672 - ], - "message": [ - 85 - ], - "room_id": [ - 85 - ], - "seq": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "direct_messages_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 482 - ], - "__typename": [ - 85 - ] - }, - "direct_messages_on_conflict": { - "constraint": [ - 487 - ], - "update_columns": [ - 504 - ], - "where": [ - 486 - ], - "__typename": [ - 85 - ] - }, - "direct_messages_order_by": { - "created_at": [ - 3648 - ], - "from_steam_id": [ - 3648 - ], - "id": [ - 3648 - ], - "message": [ - 3648 - ], - "room_id": [ - 3648 - ], - "seq": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "direct_messages_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "direct_messages_select_column": {}, - "direct_messages_set_input": { - "created_at": [ - 5243 - ], - "from_steam_id": [ - 312 - ], - "id": [ - 6672 - ], - "message": [ - 85 - ], - "room_id": [ - 85 - ], - "seq": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "direct_messages_stddev_fields": { - "from_steam_id": [ - 32 - ], - "seq": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "direct_messages_stddev_pop_fields": { - "from_steam_id": [ - 32 - ], - "seq": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "direct_messages_stddev_samp_fields": { - "from_steam_id": [ - 32 - ], - "seq": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "direct_messages_stream_cursor_input": { - "initial_value": [ - 502 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "direct_messages_stream_cursor_value_input": { - "created_at": [ - 5243 - ], - "from_steam_id": [ - 312 - ], - "id": [ - 6672 - ], - "message": [ - 85 - ], - "room_id": [ - 85 - ], - "seq": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "direct_messages_sum_fields": { - "from_steam_id": [ - 312 - ], - "seq": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "direct_messages_update_column": {}, - "direct_messages_updates": { - "_inc": [ - 488 - ], - "_set": [ - 497 - ], - "where": [ - 486 - ], - "__typename": [ - 85 - ] - }, - "direct_messages_var_pop_fields": { - "from_steam_id": [ - 32 - ], - "seq": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "direct_messages_var_samp_fields": { - "from_steam_id": [ - 32 - ], - "seq": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "direct_messages_variance_fields": { - "from_steam_id": [ - 32 - ], - "seq": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "draft_game_picks": { - "auto_picked": [ - 6 - ], - "captain": [ - 4606 - ], - "captain_steam_id": [ - 312 - ], - "created_at": [ - 5243 - ], - "draft_game": [ - 599 - ], - "draft_game_id": [ - 6672 - ], - "id": [ - 6672 - ], - "is_organizer": [ - 6 - ], - "lineup": [ - 41 - ], - "picked": [ - 4606 - ], - "picked_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "draft_game_picks_aggregate": { - "aggregate": [ - 515 - ], - "nodes": [ - 509 - ], - "__typename": [ - 85 - ] - }, - "draft_game_picks_aggregate_bool_exp": { - "bool_and": [ - 512 - ], - "bool_or": [ - 513 - ], - "count": [ - 514 - ], - "__typename": [ - 85 - ] - }, - "draft_game_picks_aggregate_bool_exp_bool_and": { - "arguments": [ - 533 - ], - "distinct": [ - 6 - ], - "filter": [ - 520 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "draft_game_picks_aggregate_bool_exp_bool_or": { - "arguments": [ - 534 - ], - "distinct": [ - 6 - ], - "filter": [ - 520 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "draft_game_picks_aggregate_bool_exp_count": { - "arguments": [ - 532 - ], - "distinct": [ - 6 - ], - "filter": [ - 520 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "draft_game_picks_aggregate_fields": { - "avg": [ - 518 - ], - "count": [ - 41, - { - "columns": [ - 532, - "[draft_game_picks_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 524 - ], - "min": [ - 526 - ], - "stddev": [ - 536 - ], - "stddev_pop": [ - 538 - ], - "stddev_samp": [ - 540 - ], - "sum": [ - 544 - ], - "var_pop": [ - 548 - ], - "var_samp": [ - 550 - ], - "variance": [ - 552 - ], - "__typename": [ - 85 - ] - }, - "draft_game_picks_aggregate_order_by": { - "avg": [ - 519 - ], - "count": [ - 3648 - ], - "max": [ - 525 - ], - "min": [ - 527 - ], - "stddev": [ - 537 - ], - "stddev_pop": [ - 539 - ], - "stddev_samp": [ - 541 - ], - "sum": [ - 545 - ], - "var_pop": [ - 549 - ], - "var_samp": [ - 551 - ], - "variance": [ - 553 - ], - "__typename": [ - 85 - ] - }, - "draft_game_picks_arr_rel_insert_input": { - "data": [ - 523 - ], - "on_conflict": [ - 529 - ], - "__typename": [ - 85 - ] - }, - "draft_game_picks_avg_fields": { - "captain_steam_id": [ - 32 - ], - "lineup": [ - 32 - ], - "picked_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "draft_game_picks_avg_order_by": { - "captain_steam_id": [ - 3648 - ], - "lineup": [ - 3648 - ], - "picked_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "draft_game_picks_bool_exp": { - "_and": [ - 520 - ], - "_not": [ - 520 - ], - "_or": [ - 520 - ], - "auto_picked": [ - 7 - ], - "captain": [ - 4610 - ], - "captain_steam_id": [ - 314 - ], - "created_at": [ - 5244 - ], - "draft_game": [ - 610 - ], - "draft_game_id": [ - 6674 - ], - "id": [ - 6674 - ], - "is_organizer": [ - 7 - ], - "lineup": [ - 42 - ], - "picked": [ - 4610 - ], - "picked_steam_id": [ - 314 - ], - "__typename": [ - 85 - ] - }, - "draft_game_picks_constraint": {}, - "draft_game_picks_inc_input": { - "captain_steam_id": [ - 312 - ], - "lineup": [ - 41 - ], - "picked_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "draft_game_picks_insert_input": { - "auto_picked": [ - 6 - ], - "captain": [ - 4617 - ], - "captain_steam_id": [ - 312 - ], - "created_at": [ - 5243 - ], - "draft_game": [ - 619 - ], - "draft_game_id": [ - 6672 - ], - "id": [ - 6672 - ], - "lineup": [ - 41 - ], - "picked": [ - 4617 - ], - "picked_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "draft_game_picks_max_fields": { - "captain_steam_id": [ - 312 - ], - "created_at": [ - 5243 - ], - "draft_game_id": [ - 6672 - ], - "id": [ - 6672 - ], - "lineup": [ - 41 - ], - "picked_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "draft_game_picks_max_order_by": { - "captain_steam_id": [ - 3648 - ], - "created_at": [ - 3648 - ], - "draft_game_id": [ - 3648 - ], - "id": [ - 3648 - ], - "lineup": [ - 3648 - ], - "picked_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "draft_game_picks_min_fields": { - "captain_steam_id": [ - 312 - ], - "created_at": [ - 5243 - ], - "draft_game_id": [ - 6672 - ], - "id": [ - 6672 - ], - "lineup": [ - 41 - ], - "picked_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "draft_game_picks_min_order_by": { - "captain_steam_id": [ - 3648 - ], - "created_at": [ - 3648 - ], - "draft_game_id": [ - 3648 - ], - "id": [ - 3648 - ], - "lineup": [ - 3648 - ], - "picked_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "draft_game_picks_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 509 - ], - "__typename": [ - 85 - ] - }, - "draft_game_picks_on_conflict": { - "constraint": [ - 521 - ], - "update_columns": [ - 546 - ], - "where": [ - 520 - ], - "__typename": [ - 85 - ] - }, - "draft_game_picks_order_by": { - "auto_picked": [ - 3648 - ], - "captain": [ - 4619 - ], - "captain_steam_id": [ - 3648 - ], - "created_at": [ - 3648 - ], - "draft_game": [ - 621 - ], - "draft_game_id": [ - 3648 - ], - "id": [ - 3648 - ], - "is_organizer": [ - 3648 - ], - "lineup": [ - 3648 - ], - "picked": [ - 4619 - ], - "picked_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "draft_game_picks_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "draft_game_picks_select_column": {}, - "draft_game_picks_select_column_draft_game_picks_aggregate_bool_exp_bool_and_arguments_columns": {}, - "draft_game_picks_select_column_draft_game_picks_aggregate_bool_exp_bool_or_arguments_columns": {}, - "draft_game_picks_set_input": { - "auto_picked": [ - 6 - ], - "captain_steam_id": [ - 312 - ], - "created_at": [ - 5243 - ], - "draft_game_id": [ - 6672 - ], - "id": [ - 6672 - ], - "lineup": [ - 41 - ], - "picked_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "draft_game_picks_stddev_fields": { - "captain_steam_id": [ - 32 - ], - "lineup": [ - 32 - ], - "picked_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "draft_game_picks_stddev_order_by": { - "captain_steam_id": [ - 3648 - ], - "lineup": [ - 3648 - ], - "picked_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "draft_game_picks_stddev_pop_fields": { - "captain_steam_id": [ - 32 - ], - "lineup": [ - 32 - ], - "picked_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "draft_game_picks_stddev_pop_order_by": { - "captain_steam_id": [ - 3648 - ], - "lineup": [ - 3648 - ], - "picked_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "draft_game_picks_stddev_samp_fields": { - "captain_steam_id": [ - 32 - ], - "lineup": [ - 32 - ], - "picked_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "draft_game_picks_stddev_samp_order_by": { - "captain_steam_id": [ - 3648 - ], - "lineup": [ - 3648 - ], - "picked_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "draft_game_picks_stream_cursor_input": { - "initial_value": [ - 543 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "draft_game_picks_stream_cursor_value_input": { - "auto_picked": [ - 6 - ], - "captain_steam_id": [ - 312 - ], - "created_at": [ - 5243 - ], - "draft_game_id": [ - 6672 - ], - "id": [ - 6672 - ], - "lineup": [ - 41 - ], - "picked_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "draft_game_picks_sum_fields": { - "captain_steam_id": [ - 312 - ], - "lineup": [ - 41 - ], - "picked_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "draft_game_picks_sum_order_by": { - "captain_steam_id": [ - 3648 - ], - "lineup": [ - 3648 - ], - "picked_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "draft_game_picks_update_column": {}, - "draft_game_picks_updates": { - "_inc": [ - 522 - ], - "_set": [ - 535 - ], - "where": [ - 520 - ], - "__typename": [ - 85 - ] - }, - "draft_game_picks_var_pop_fields": { - "captain_steam_id": [ - 32 - ], - "lineup": [ - 32 - ], - "picked_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "draft_game_picks_var_pop_order_by": { - "captain_steam_id": [ - 3648 - ], - "lineup": [ - 3648 - ], - "picked_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "draft_game_picks_var_samp_fields": { - "captain_steam_id": [ - 32 - ], - "lineup": [ - 32 - ], - "picked_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "draft_game_picks_var_samp_order_by": { - "captain_steam_id": [ - 3648 - ], - "lineup": [ - 3648 - ], - "picked_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "draft_game_picks_variance_fields": { - "captain_steam_id": [ - 32 - ], - "lineup": [ - 32 - ], - "picked_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "draft_game_picks_variance_order_by": { - "captain_steam_id": [ - 3648 - ], - "lineup": [ - 3648 - ], - "picked_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "draft_game_players": { - "draft_game": [ - 599 - ], - "draft_game_id": [ - 6672 - ], - "e_draft_game_player_status": [ - 768 - ], - "elo_snapshot": [ - 41 - ], - "is_captain": [ - 6 - ], - "is_organizer": [ - 6 - ], - "joined_at": [ - 5243 - ], - "lineup": [ - 41 - ], - "pick_order": [ - 41 - ], - "player": [ - 4606 - ], - "status": [ - 773 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "draft_game_players_aggregate": { - "aggregate": [ - 560 - ], - "nodes": [ - 554 - ], - "__typename": [ - 85 - ] - }, - "draft_game_players_aggregate_bool_exp": { - "bool_and": [ - 557 - ], - "bool_or": [ - 558 - ], - "count": [ - 559 - ], - "__typename": [ - 85 - ] - }, - "draft_game_players_aggregate_bool_exp_bool_and": { - "arguments": [ - 578 - ], - "distinct": [ - 6 - ], - "filter": [ - 565 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "draft_game_players_aggregate_bool_exp_bool_or": { - "arguments": [ - 579 - ], - "distinct": [ - 6 - ], - "filter": [ - 565 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "draft_game_players_aggregate_bool_exp_count": { - "arguments": [ - 577 - ], - "distinct": [ - 6 - ], - "filter": [ - 565 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "draft_game_players_aggregate_fields": { - "avg": [ - 563 - ], - "count": [ - 41, - { - "columns": [ - 577, - "[draft_game_players_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 569 - ], - "min": [ - 571 - ], - "stddev": [ - 581 - ], - "stddev_pop": [ - 583 - ], - "stddev_samp": [ - 585 - ], - "sum": [ - 589 - ], - "var_pop": [ - 593 - ], - "var_samp": [ - 595 - ], - "variance": [ - 597 - ], - "__typename": [ - 85 - ] - }, - "draft_game_players_aggregate_order_by": { - "avg": [ - 564 - ], - "count": [ - 3648 - ], - "max": [ - 570 - ], - "min": [ - 572 - ], - "stddev": [ - 582 - ], - "stddev_pop": [ - 584 - ], - "stddev_samp": [ - 586 - ], - "sum": [ - 590 - ], - "var_pop": [ - 594 - ], - "var_samp": [ - 596 - ], - "variance": [ - 598 - ], - "__typename": [ - 85 - ] - }, - "draft_game_players_arr_rel_insert_input": { - "data": [ - 568 - ], - "on_conflict": [ - 574 - ], - "__typename": [ - 85 - ] - }, - "draft_game_players_avg_fields": { - "elo_snapshot": [ - 32 - ], - "lineup": [ - 32 - ], - "pick_order": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "draft_game_players_avg_order_by": { - "elo_snapshot": [ - 3648 - ], - "lineup": [ - 3648 - ], - "pick_order": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "draft_game_players_bool_exp": { - "_and": [ - 565 - ], - "_not": [ - 565 - ], - "_or": [ - 565 - ], - "draft_game": [ - 610 - ], - "draft_game_id": [ - 6674 - ], - "e_draft_game_player_status": [ - 771 - ], - "elo_snapshot": [ - 42 - ], - "is_captain": [ - 7 - ], - "is_organizer": [ - 7 - ], - "joined_at": [ - 5244 - ], - "lineup": [ - 42 - ], - "pick_order": [ - 42 - ], - "player": [ - 4610 - ], - "status": [ - 774 - ], - "steam_id": [ - 314 - ], - "__typename": [ - 85 - ] - }, - "draft_game_players_constraint": {}, - "draft_game_players_inc_input": { - "elo_snapshot": [ - 41 - ], - "lineup": [ - 41 - ], - "pick_order": [ - 41 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "draft_game_players_insert_input": { - "draft_game": [ - 619 - ], - "draft_game_id": [ - 6672 - ], - "e_draft_game_player_status": [ - 779 - ], - "elo_snapshot": [ - 41 - ], - "is_captain": [ - 6 - ], - "joined_at": [ - 5243 - ], - "lineup": [ - 41 - ], - "pick_order": [ - 41 - ], - "player": [ - 4617 - ], - "status": [ - 773 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "draft_game_players_max_fields": { - "draft_game_id": [ - 6672 - ], - "elo_snapshot": [ - 41 - ], - "joined_at": [ - 5243 - ], - "lineup": [ - 41 - ], - "pick_order": [ - 41 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "draft_game_players_max_order_by": { - "draft_game_id": [ - 3648 - ], - "elo_snapshot": [ - 3648 - ], - "joined_at": [ - 3648 - ], - "lineup": [ - 3648 - ], - "pick_order": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "draft_game_players_min_fields": { - "draft_game_id": [ - 6672 - ], - "elo_snapshot": [ - 41 - ], - "joined_at": [ - 5243 - ], - "lineup": [ - 41 - ], - "pick_order": [ - 41 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "draft_game_players_min_order_by": { - "draft_game_id": [ - 3648 - ], - "elo_snapshot": [ - 3648 - ], - "joined_at": [ - 3648 - ], - "lineup": [ - 3648 - ], - "pick_order": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "draft_game_players_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 554 - ], - "__typename": [ - 85 - ] - }, - "draft_game_players_on_conflict": { - "constraint": [ - 566 - ], - "update_columns": [ - 591 - ], - "where": [ - 565 - ], - "__typename": [ - 85 - ] - }, - "draft_game_players_order_by": { - "draft_game": [ - 621 - ], - "draft_game_id": [ - 3648 - ], - "e_draft_game_player_status": [ - 781 - ], - "elo_snapshot": [ - 3648 - ], - "is_captain": [ - 3648 - ], - "is_organizer": [ - 3648 - ], - "joined_at": [ - 3648 - ], - "lineup": [ - 3648 - ], - "pick_order": [ - 3648 - ], - "player": [ - 4619 - ], - "status": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "draft_game_players_pk_columns_input": { - "draft_game_id": [ - 6672 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "draft_game_players_select_column": {}, - "draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_and_arguments_columns": {}, - "draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_or_arguments_columns": {}, - "draft_game_players_set_input": { - "draft_game_id": [ - 6672 - ], - "elo_snapshot": [ - 41 - ], - "is_captain": [ - 6 - ], - "joined_at": [ - 5243 - ], - "lineup": [ - 41 - ], - "pick_order": [ - 41 - ], - "status": [ - 773 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "draft_game_players_stddev_fields": { - "elo_snapshot": [ - 32 - ], - "lineup": [ - 32 - ], - "pick_order": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "draft_game_players_stddev_order_by": { - "elo_snapshot": [ - 3648 - ], - "lineup": [ - 3648 - ], - "pick_order": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "draft_game_players_stddev_pop_fields": { - "elo_snapshot": [ - 32 - ], - "lineup": [ - 32 - ], - "pick_order": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "draft_game_players_stddev_pop_order_by": { - "elo_snapshot": [ - 3648 - ], - "lineup": [ - 3648 - ], - "pick_order": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "draft_game_players_stddev_samp_fields": { - "elo_snapshot": [ - 32 - ], - "lineup": [ - 32 - ], - "pick_order": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "draft_game_players_stddev_samp_order_by": { - "elo_snapshot": [ - 3648 - ], - "lineup": [ - 3648 - ], - "pick_order": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "draft_game_players_stream_cursor_input": { - "initial_value": [ - 588 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "draft_game_players_stream_cursor_value_input": { - "draft_game_id": [ - 6672 - ], - "elo_snapshot": [ - 41 - ], - "is_captain": [ - 6 - ], - "joined_at": [ - 5243 - ], - "lineup": [ - 41 - ], - "pick_order": [ - 41 - ], - "status": [ - 773 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "draft_game_players_sum_fields": { - "elo_snapshot": [ - 41 - ], - "lineup": [ - 41 - ], - "pick_order": [ - 41 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "draft_game_players_sum_order_by": { - "elo_snapshot": [ - 3648 - ], - "lineup": [ - 3648 - ], - "pick_order": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "draft_game_players_update_column": {}, - "draft_game_players_updates": { - "_inc": [ - 567 - ], - "_set": [ - 580 - ], - "where": [ - 565 - ], - "__typename": [ - 85 - ] - }, - "draft_game_players_var_pop_fields": { - "elo_snapshot": [ - 32 - ], - "lineup": [ - 32 - ], - "pick_order": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "draft_game_players_var_pop_order_by": { - "elo_snapshot": [ - 3648 - ], - "lineup": [ - 3648 - ], - "pick_order": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "draft_game_players_var_samp_fields": { - "elo_snapshot": [ - 32 - ], - "lineup": [ - 32 - ], - "pick_order": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "draft_game_players_var_samp_order_by": { - "elo_snapshot": [ - 3648 - ], - "lineup": [ - 3648 - ], - "pick_order": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "draft_game_players_variance_fields": { - "elo_snapshot": [ - 32 - ], - "lineup": [ - 32 - ], - "pick_order": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "draft_game_players_variance_order_by": { - "elo_snapshot": [ - 3648 - ], - "lineup": [ - 3648 - ], - "pick_order": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "draft_games": { - "access": [ - 1061 - ], - "capacity": [ - 41 - ], - "captain_selection": [ - 710 - ], - "created_at": [ - 5243 - ], - "current_pick_lineup": [ - 41 - ], - "draft_order": [ - 731 - ], - "e_draft_game_captain_selection": [ - 705 - ], - "e_draft_game_draft_order": [ - 726 - ], - "e_draft_game_mode": [ - 747 - ], - "e_draft_game_status": [ - 789 - ], - "e_lobby_access": [ - 1056 - ], - "expires_at": [ - 5243 - ], - "host": [ - 4606 - ], - "host_steam_id": [ - 312 - ], - "id": [ - 6672 - ], - "inner_squad": [ - 6 - ], - "invite_code": [ - 6672 - ], - "is_organizer": [ - 6 - ], - "map_pool": [ - 2905 - ], - "map_pool_id": [ - 6672 - ], - "match": [ - 3432 - ], - "match_id": [ - 6672 - ], - "match_options_id": [ - 6672 - ], - "max_elo": [ - 41 - ], - "min_elo": [ - 41 - ], - "mode": [ - 752 - ], - "options": [ - 3290 - ], - "pattern": [ - 2439, - { - "path": [ - 85 - ] - } - ], - "pick_deadline": [ - 5243 - ], - "picks": [ - 509, - { - "distinct_on": [ - 532, - "[draft_game_picks_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 530, - "[draft_game_picks_order_by!]" - ], - "where": [ - 520 - ] - } - ], - "picks_aggregate": [ - 510, - { - "distinct_on": [ - 532, - "[draft_game_picks_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 530, - "[draft_game_picks_order_by!]" - ], - "where": [ - 520 - ] - } - ], - "players": [ - 554, - { - "distinct_on": [ - 577, - "[draft_game_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 575, - "[draft_game_players_order_by!]" - ], - "where": [ - 565 - ] - } - ], - "players_aggregate": [ - 555, - { - "distinct_on": [ - 577, - "[draft_game_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 575, - "[draft_game_players_order_by!]" - ], - "where": [ - 565 - ] - } - ], - "regions": [ - 85 - ], - "require_approval": [ - 6 - ], - "scheduled_at": [ - 5243 - ], - "status": [ - 794 - ], - "team_1": [ - 5194 - ], - "team_1_id": [ - 6672 - ], - "team_2": [ - 5194 - ], - "team_2_id": [ - 6672 - ], - "type": [ - 1225 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "draft_games_aggregate": { - "aggregate": [ - 605 - ], - "nodes": [ - 599 - ], - "__typename": [ - 85 - ] - }, - "draft_games_aggregate_bool_exp": { - "bool_and": [ - 602 - ], - "bool_or": [ - 603 - ], - "count": [ - 604 - ], - "__typename": [ - 85 - ] - }, - "draft_games_aggregate_bool_exp_bool_and": { - "arguments": [ - 624 - ], - "distinct": [ - 6 - ], - "filter": [ - 610 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "draft_games_aggregate_bool_exp_bool_or": { - "arguments": [ - 625 - ], - "distinct": [ - 6 - ], - "filter": [ - 610 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "draft_games_aggregate_bool_exp_count": { - "arguments": [ - 623 - ], - "distinct": [ - 6 - ], - "filter": [ - 610 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "draft_games_aggregate_fields": { - "avg": [ - 608 - ], - "count": [ - 41, - { - "columns": [ - 623, - "[draft_games_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 614 - ], - "min": [ - 616 - ], - "stddev": [ - 627 - ], - "stddev_pop": [ - 629 - ], - "stddev_samp": [ - 631 - ], - "sum": [ - 635 - ], - "var_pop": [ - 639 - ], - "var_samp": [ - 641 - ], - "variance": [ - 643 - ], - "__typename": [ - 85 - ] - }, - "draft_games_aggregate_order_by": { - "avg": [ - 609 - ], - "count": [ - 3648 - ], - "max": [ - 615 - ], - "min": [ - 617 - ], - "stddev": [ - 628 - ], - "stddev_pop": [ - 630 - ], - "stddev_samp": [ - 632 - ], - "sum": [ - 636 - ], - "var_pop": [ - 640 - ], - "var_samp": [ - 642 - ], - "variance": [ - 644 - ], - "__typename": [ - 85 - ] - }, - "draft_games_arr_rel_insert_input": { - "data": [ - 613 - ], - "on_conflict": [ - 620 - ], - "__typename": [ - 85 - ] - }, - "draft_games_avg_fields": { - "capacity": [ - 32 - ], - "current_pick_lineup": [ - 32 - ], - "host_steam_id": [ - 32 - ], - "max_elo": [ - 32 - ], - "min_elo": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "draft_games_avg_order_by": { - "capacity": [ - 3648 - ], - "current_pick_lineup": [ - 3648 - ], - "host_steam_id": [ - 3648 - ], - "max_elo": [ - 3648 - ], - "min_elo": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "draft_games_bool_exp": { - "_and": [ - 610 - ], - "_not": [ - 610 - ], - "_or": [ - 610 - ], - "access": [ - 1062 - ], - "capacity": [ - 42 - ], - "captain_selection": [ - 711 - ], - "created_at": [ - 5244 - ], - "current_pick_lineup": [ - 42 - ], - "draft_order": [ - 732 - ], - "e_draft_game_captain_selection": [ - 708 - ], - "e_draft_game_draft_order": [ - 729 - ], - "e_draft_game_mode": [ - 750 - ], - "e_draft_game_status": [ - 792 - ], - "e_lobby_access": [ - 1059 - ], - "expires_at": [ - 5244 - ], - "host": [ - 4610 - ], - "host_steam_id": [ - 314 - ], - "id": [ - 6674 - ], - "inner_squad": [ - 7 - ], - "invite_code": [ - 6674 - ], - "is_organizer": [ - 7 - ], - "map_pool": [ - 2908 - ], - "map_pool_id": [ - 6674 - ], - "match": [ - 3443 - ], - "match_id": [ - 6674 - ], - "match_options_id": [ - 6674 - ], - "max_elo": [ - 42 - ], - "min_elo": [ - 42 - ], - "mode": [ - 753 - ], - "options": [ - 3301 - ], - "pattern": [ - 2441 - ], - "pick_deadline": [ - 5244 - ], - "picks": [ - 520 - ], - "picks_aggregate": [ - 511 - ], - "players": [ - 565 - ], - "players_aggregate": [ - 556 - ], - "regions": [ - 86 - ], - "require_approval": [ - 7 - ], - "scheduled_at": [ - 5244 - ], - "status": [ - 795 - ], - "team_1": [ - 5205 - ], - "team_1_id": [ - 6674 - ], - "team_2": [ - 5205 - ], - "team_2_id": [ - 6674 - ], - "type": [ - 1226 - ], - "updated_at": [ - 5244 - ], - "__typename": [ - 85 - ] - }, - "draft_games_constraint": {}, - "draft_games_inc_input": { - "capacity": [ - 41 - ], - "current_pick_lineup": [ - 41 - ], - "host_steam_id": [ - 312 - ], - "max_elo": [ - 41 - ], - "min_elo": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "draft_games_insert_input": { - "access": [ - 1061 - ], - "capacity": [ - 41 - ], - "captain_selection": [ - 710 - ], - "created_at": [ - 5243 - ], - "current_pick_lineup": [ - 41 - ], - "draft_order": [ - 731 - ], - "e_draft_game_captain_selection": [ - 716 - ], - "e_draft_game_draft_order": [ - 737 - ], - "e_draft_game_mode": [ - 758 - ], - "e_draft_game_status": [ - 800 - ], - "e_lobby_access": [ - 1067 - ], - "expires_at": [ - 5243 - ], - "host": [ - 4617 - ], - "host_steam_id": [ - 312 - ], - "id": [ - 6672 - ], - "inner_squad": [ - 6 - ], - "invite_code": [ - 6672 - ], - "map_pool": [ - 2914 - ], - "map_pool_id": [ - 6672 - ], - "match": [ - 3452 - ], - "match_id": [ - 6672 - ], - "match_options_id": [ - 6672 - ], - "max_elo": [ - 41 - ], - "min_elo": [ - 41 - ], - "mode": [ - 752 - ], - "options": [ - 3310 - ], - "pick_deadline": [ - 5243 - ], - "picks": [ - 517 - ], - "players": [ - 562 - ], - "regions": [ - 85 - ], - "require_approval": [ - 6 - ], - "scheduled_at": [ - 5243 - ], - "status": [ - 794 - ], - "team_1": [ - 5214 - ], - "team_1_id": [ - 6672 - ], - "team_2": [ - 5214 - ], - "team_2_id": [ - 6672 - ], - "type": [ - 1225 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "draft_games_max_fields": { - "capacity": [ - 41 - ], - "created_at": [ - 5243 - ], - "current_pick_lineup": [ - 41 - ], - "expires_at": [ - 5243 - ], - "host_steam_id": [ - 312 - ], - "id": [ - 6672 - ], - "invite_code": [ - 6672 - ], - "map_pool_id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "match_options_id": [ - 6672 - ], - "max_elo": [ - 41 - ], - "min_elo": [ - 41 - ], - "pick_deadline": [ - 5243 - ], - "regions": [ - 85 - ], - "scheduled_at": [ - 5243 - ], - "team_1_id": [ - 6672 - ], - "team_2_id": [ - 6672 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "draft_games_max_order_by": { - "capacity": [ - 3648 - ], - "created_at": [ - 3648 - ], - "current_pick_lineup": [ - 3648 - ], - "expires_at": [ - 3648 - ], - "host_steam_id": [ - 3648 - ], - "id": [ - 3648 - ], - "invite_code": [ - 3648 - ], - "map_pool_id": [ - 3648 - ], - "match_id": [ - 3648 - ], - "match_options_id": [ - 3648 - ], - "max_elo": [ - 3648 - ], - "min_elo": [ - 3648 - ], - "pick_deadline": [ - 3648 - ], - "regions": [ - 3648 - ], - "scheduled_at": [ - 3648 - ], - "team_1_id": [ - 3648 - ], - "team_2_id": [ - 3648 - ], - "updated_at": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "draft_games_min_fields": { - "capacity": [ - 41 - ], - "created_at": [ - 5243 - ], - "current_pick_lineup": [ - 41 - ], - "expires_at": [ - 5243 - ], - "host_steam_id": [ - 312 - ], - "id": [ - 6672 - ], - "invite_code": [ - 6672 - ], - "map_pool_id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "match_options_id": [ - 6672 - ], - "max_elo": [ - 41 - ], - "min_elo": [ - 41 - ], - "pick_deadline": [ - 5243 - ], - "regions": [ - 85 - ], - "scheduled_at": [ - 5243 - ], - "team_1_id": [ - 6672 - ], - "team_2_id": [ - 6672 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "draft_games_min_order_by": { - "capacity": [ - 3648 - ], - "created_at": [ - 3648 - ], - "current_pick_lineup": [ - 3648 - ], - "expires_at": [ - 3648 - ], - "host_steam_id": [ - 3648 - ], - "id": [ - 3648 - ], - "invite_code": [ - 3648 - ], - "map_pool_id": [ - 3648 - ], - "match_id": [ - 3648 - ], - "match_options_id": [ - 3648 - ], - "max_elo": [ - 3648 - ], - "min_elo": [ - 3648 - ], - "pick_deadline": [ - 3648 - ], - "regions": [ - 3648 - ], - "scheduled_at": [ - 3648 - ], - "team_1_id": [ - 3648 - ], - "team_2_id": [ - 3648 - ], - "updated_at": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "draft_games_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 599 - ], - "__typename": [ - 85 - ] - }, - "draft_games_obj_rel_insert_input": { - "data": [ - 613 - ], - "on_conflict": [ - 620 - ], - "__typename": [ - 85 - ] - }, - "draft_games_on_conflict": { - "constraint": [ - 611 - ], - "update_columns": [ - 637 - ], - "where": [ - 610 - ], - "__typename": [ - 85 - ] - }, - "draft_games_order_by": { - "access": [ - 3648 - ], - "capacity": [ - 3648 - ], - "captain_selection": [ - 3648 - ], - "created_at": [ - 3648 - ], - "current_pick_lineup": [ - 3648 - ], - "draft_order": [ - 3648 - ], - "e_draft_game_captain_selection": [ - 718 - ], - "e_draft_game_draft_order": [ - 739 - ], - "e_draft_game_mode": [ - 760 - ], - "e_draft_game_status": [ - 802 - ], - "e_lobby_access": [ - 1069 - ], - "expires_at": [ - 3648 - ], - "host": [ - 4619 - ], - "host_steam_id": [ - 3648 - ], - "id": [ - 3648 - ], - "inner_squad": [ - 3648 - ], - "invite_code": [ - 3648 - ], - "is_organizer": [ - 3648 - ], - "map_pool": [ - 2916 - ], - "map_pool_id": [ - 3648 - ], - "match": [ - 3454 - ], - "match_id": [ - 3648 - ], - "match_options_id": [ - 3648 - ], - "max_elo": [ - 3648 - ], - "min_elo": [ - 3648 - ], - "mode": [ - 3648 - ], - "options": [ - 3312 - ], - "pattern": [ - 3648 - ], - "pick_deadline": [ - 3648 - ], - "picks_aggregate": [ - 516 - ], - "players_aggregate": [ - 561 - ], - "regions": [ - 3648 - ], - "require_approval": [ - 3648 - ], - "scheduled_at": [ - 3648 - ], - "status": [ - 3648 - ], - "team_1": [ - 5216 - ], - "team_1_id": [ - 3648 - ], - "team_2": [ - 5216 - ], - "team_2_id": [ - 3648 - ], - "type": [ - 3648 - ], - "updated_at": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "draft_games_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "draft_games_select_column": {}, - "draft_games_select_column_draft_games_aggregate_bool_exp_bool_and_arguments_columns": {}, - "draft_games_select_column_draft_games_aggregate_bool_exp_bool_or_arguments_columns": {}, - "draft_games_set_input": { - "access": [ - 1061 - ], - "capacity": [ - 41 - ], - "captain_selection": [ - 710 - ], - "created_at": [ - 5243 - ], - "current_pick_lineup": [ - 41 - ], - "draft_order": [ - 731 - ], - "expires_at": [ - 5243 - ], - "host_steam_id": [ - 312 - ], - "id": [ - 6672 - ], - "inner_squad": [ - 6 - ], - "invite_code": [ - 6672 - ], - "map_pool_id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "match_options_id": [ - 6672 - ], - "max_elo": [ - 41 - ], - "min_elo": [ - 41 - ], - "mode": [ - 752 - ], - "pick_deadline": [ - 5243 - ], - "regions": [ - 85 - ], - "require_approval": [ - 6 - ], - "scheduled_at": [ - 5243 - ], - "status": [ - 794 - ], - "team_1_id": [ - 6672 - ], - "team_2_id": [ - 6672 - ], - "type": [ - 1225 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "draft_games_stddev_fields": { - "capacity": [ - 32 - ], - "current_pick_lineup": [ - 32 - ], - "host_steam_id": [ - 32 - ], - "max_elo": [ - 32 - ], - "min_elo": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "draft_games_stddev_order_by": { - "capacity": [ - 3648 - ], - "current_pick_lineup": [ - 3648 - ], - "host_steam_id": [ - 3648 - ], - "max_elo": [ - 3648 - ], - "min_elo": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "draft_games_stddev_pop_fields": { - "capacity": [ - 32 - ], - "current_pick_lineup": [ - 32 - ], - "host_steam_id": [ - 32 - ], - "max_elo": [ - 32 - ], - "min_elo": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "draft_games_stddev_pop_order_by": { - "capacity": [ - 3648 - ], - "current_pick_lineup": [ - 3648 - ], - "host_steam_id": [ - 3648 - ], - "max_elo": [ - 3648 - ], - "min_elo": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "draft_games_stddev_samp_fields": { - "capacity": [ - 32 - ], - "current_pick_lineup": [ - 32 - ], - "host_steam_id": [ - 32 - ], - "max_elo": [ - 32 - ], - "min_elo": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "draft_games_stddev_samp_order_by": { - "capacity": [ - 3648 - ], - "current_pick_lineup": [ - 3648 - ], - "host_steam_id": [ - 3648 - ], - "max_elo": [ - 3648 - ], - "min_elo": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "draft_games_stream_cursor_input": { - "initial_value": [ - 634 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "draft_games_stream_cursor_value_input": { - "access": [ - 1061 - ], - "capacity": [ - 41 - ], - "captain_selection": [ - 710 - ], - "created_at": [ - 5243 - ], - "current_pick_lineup": [ - 41 - ], - "draft_order": [ - 731 - ], - "expires_at": [ - 5243 - ], - "host_steam_id": [ - 312 - ], - "id": [ - 6672 - ], - "inner_squad": [ - 6 - ], - "invite_code": [ - 6672 - ], - "map_pool_id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "match_options_id": [ - 6672 - ], - "max_elo": [ - 41 - ], - "min_elo": [ - 41 - ], - "mode": [ - 752 - ], - "pick_deadline": [ - 5243 - ], - "regions": [ - 85 - ], - "require_approval": [ - 6 - ], - "scheduled_at": [ - 5243 - ], - "status": [ - 794 - ], - "team_1_id": [ - 6672 - ], - "team_2_id": [ - 6672 - ], - "type": [ - 1225 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "draft_games_sum_fields": { - "capacity": [ - 41 - ], - "current_pick_lineup": [ - 41 - ], - "host_steam_id": [ - 312 - ], - "max_elo": [ - 41 - ], - "min_elo": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "draft_games_sum_order_by": { - "capacity": [ - 3648 - ], - "current_pick_lineup": [ - 3648 - ], - "host_steam_id": [ - 3648 - ], - "max_elo": [ - 3648 - ], - "min_elo": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "draft_games_update_column": {}, - "draft_games_updates": { - "_inc": [ - 612 - ], - "_set": [ - 626 - ], - "where": [ - 610 - ], - "__typename": [ - 85 - ] - }, - "draft_games_var_pop_fields": { - "capacity": [ - 32 - ], - "current_pick_lineup": [ - 32 - ], - "host_steam_id": [ - 32 - ], - "max_elo": [ - 32 - ], - "min_elo": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "draft_games_var_pop_order_by": { - "capacity": [ - 3648 - ], - "current_pick_lineup": [ - 3648 - ], - "host_steam_id": [ - 3648 - ], - "max_elo": [ - 3648 - ], - "min_elo": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "draft_games_var_samp_fields": { - "capacity": [ - 32 - ], - "current_pick_lineup": [ - 32 - ], - "host_steam_id": [ - 32 - ], - "max_elo": [ - 32 - ], - "min_elo": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "draft_games_var_samp_order_by": { - "capacity": [ - 3648 - ], - "current_pick_lineup": [ - 3648 - ], - "host_steam_id": [ - 3648 - ], - "max_elo": [ - 3648 - ], - "min_elo": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "draft_games_variance_fields": { - "capacity": [ - 32 - ], - "current_pick_lineup": [ - 32 - ], - "host_steam_id": [ - 32 - ], - "max_elo": [ - 32 - ], - "min_elo": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "draft_games_variance_order_by": { - "capacity": [ - 3648 - ], - "current_pick_lineup": [ - 3648 - ], - "host_steam_id": [ - 3648 - ], - "max_elo": [ - 3648 - ], - "min_elo": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_award_sources": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_award_sources_aggregate": { - "aggregate": [ - 647 - ], - "nodes": [ - 645 - ], - "__typename": [ - 85 - ] - }, - "e_award_sources_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 659, - "[e_award_sources_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 653 - ], - "min": [ - 654 - ], - "__typename": [ - 85 - ] - }, - "e_award_sources_bool_exp": { - "_and": [ - 648 - ], - "_not": [ - 648 - ], - "_or": [ - 648 - ], - "description": [ - 87 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_award_sources_constraint": {}, - "e_award_sources_enum": {}, - "e_award_sources_enum_comparison_exp": { - "_eq": [ - 650 - ], - "_in": [ - 650 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 650 - ], - "_nin": [ - 650 - ], - "__typename": [ - 85 - ] - }, - "e_award_sources_insert_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_award_sources_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_award_sources_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_award_sources_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 645 - ], - "__typename": [ - 85 - ] - }, - "e_award_sources_on_conflict": { - "constraint": [ - 649 - ], - "update_columns": [ - 663 - ], - "where": [ - 648 - ], - "__typename": [ - 85 - ] - }, - "e_award_sources_order_by": { - "description": [ - 3648 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_award_sources_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_award_sources_select_column": {}, - "e_award_sources_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_award_sources_stream_cursor_input": { - "initial_value": [ - 662 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_award_sources_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_award_sources_update_column": {}, - "e_award_sources_updates": { - "_set": [ - 660 - ], - "where": [ - 648 - ], - "__typename": [ - 85 - ] - }, - "e_award_tiers": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_award_tiers_aggregate": { - "aggregate": [ - 667 - ], - "nodes": [ - 665 - ], - "__typename": [ - 85 - ] - }, - "e_award_tiers_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 679, - "[e_award_tiers_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 673 - ], - "min": [ - 674 - ], - "__typename": [ - 85 - ] - }, - "e_award_tiers_bool_exp": { - "_and": [ - 668 - ], - "_not": [ - 668 - ], - "_or": [ - 668 - ], - "description": [ - 87 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_award_tiers_constraint": {}, - "e_award_tiers_enum": {}, - "e_award_tiers_enum_comparison_exp": { - "_eq": [ - 670 - ], - "_in": [ - 670 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 670 - ], - "_nin": [ - 670 - ], - "__typename": [ - 85 - ] - }, - "e_award_tiers_insert_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_award_tiers_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_award_tiers_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_award_tiers_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 665 - ], - "__typename": [ - 85 - ] - }, - "e_award_tiers_on_conflict": { - "constraint": [ - 669 - ], - "update_columns": [ - 683 - ], - "where": [ - 668 - ], - "__typename": [ - 85 - ] - }, - "e_award_tiers_order_by": { - "description": [ - 3648 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_award_tiers_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_award_tiers_select_column": {}, - "e_award_tiers_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_award_tiers_stream_cursor_input": { - "initial_value": [ - 682 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_award_tiers_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_award_tiers_update_column": {}, - "e_award_tiers_updates": { - "_set": [ - 680 - ], - "where": [ - 668 - ], - "__typename": [ - 85 - ] - }, - "e_check_in_settings": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_check_in_settings_aggregate": { - "aggregate": [ - 687 - ], - "nodes": [ - 685 - ], - "__typename": [ - 85 - ] - }, - "e_check_in_settings_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 699, - "[e_check_in_settings_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 693 - ], - "min": [ - 694 - ], - "__typename": [ - 85 - ] - }, - "e_check_in_settings_bool_exp": { - "_and": [ - 688 - ], - "_not": [ - 688 - ], - "_or": [ - 688 - ], - "description": [ - 87 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_check_in_settings_constraint": {}, - "e_check_in_settings_enum": {}, - "e_check_in_settings_enum_comparison_exp": { - "_eq": [ - 690 - ], - "_in": [ - 690 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 690 - ], - "_nin": [ - 690 - ], - "__typename": [ - 85 - ] - }, - "e_check_in_settings_insert_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_check_in_settings_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_check_in_settings_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_check_in_settings_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 685 - ], - "__typename": [ - 85 - ] - }, - "e_check_in_settings_on_conflict": { - "constraint": [ - 689 - ], - "update_columns": [ - 703 - ], - "where": [ - 688 - ], - "__typename": [ - 85 - ] - }, - "e_check_in_settings_order_by": { - "description": [ - 3648 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_check_in_settings_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_check_in_settings_select_column": {}, - "e_check_in_settings_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_check_in_settings_stream_cursor_input": { - "initial_value": [ - 702 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_check_in_settings_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_check_in_settings_update_column": {}, - "e_check_in_settings_updates": { - "_set": [ - 700 - ], - "where": [ - 688 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_captain_selection": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_captain_selection_aggregate": { - "aggregate": [ - 707 - ], - "nodes": [ - 705 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_captain_selection_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 720, - "[e_draft_game_captain_selection_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 713 - ], - "min": [ - 714 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_captain_selection_bool_exp": { - "_and": [ - 708 - ], - "_not": [ - 708 - ], - "_or": [ - 708 - ], - "description": [ - 87 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_captain_selection_constraint": {}, - "e_draft_game_captain_selection_enum": {}, - "e_draft_game_captain_selection_enum_comparison_exp": { - "_eq": [ - 710 - ], - "_in": [ - 710 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 710 - ], - "_nin": [ - 710 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_captain_selection_insert_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_captain_selection_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_captain_selection_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_captain_selection_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 705 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_captain_selection_obj_rel_insert_input": { - "data": [ - 712 - ], - "on_conflict": [ - 717 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_captain_selection_on_conflict": { - "constraint": [ - 709 - ], - "update_columns": [ - 724 - ], - "where": [ - 708 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_captain_selection_order_by": { - "description": [ - 3648 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_captain_selection_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_captain_selection_select_column": {}, - "e_draft_game_captain_selection_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_captain_selection_stream_cursor_input": { - "initial_value": [ - 723 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_captain_selection_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_captain_selection_update_column": {}, - "e_draft_game_captain_selection_updates": { - "_set": [ - 721 - ], - "where": [ - 708 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_draft_order": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_draft_order_aggregate": { - "aggregate": [ - 728 - ], - "nodes": [ - 726 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_draft_order_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 741, - "[e_draft_game_draft_order_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 734 - ], - "min": [ - 735 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_draft_order_bool_exp": { - "_and": [ - 729 - ], - "_not": [ - 729 - ], - "_or": [ - 729 - ], - "description": [ - 87 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_draft_order_constraint": {}, - "e_draft_game_draft_order_enum": {}, - "e_draft_game_draft_order_enum_comparison_exp": { - "_eq": [ - 731 - ], - "_in": [ - 731 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 731 - ], - "_nin": [ - 731 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_draft_order_insert_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_draft_order_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_draft_order_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_draft_order_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 726 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_draft_order_obj_rel_insert_input": { - "data": [ - 733 - ], - "on_conflict": [ - 738 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_draft_order_on_conflict": { - "constraint": [ - 730 - ], - "update_columns": [ - 745 - ], - "where": [ - 729 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_draft_order_order_by": { - "description": [ - 3648 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_draft_order_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_draft_order_select_column": {}, - "e_draft_game_draft_order_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_draft_order_stream_cursor_input": { - "initial_value": [ - 744 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_draft_order_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_draft_order_update_column": {}, - "e_draft_game_draft_order_updates": { - "_set": [ - 742 - ], - "where": [ - 729 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_mode": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_mode_aggregate": { - "aggregate": [ - 749 - ], - "nodes": [ - 747 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_mode_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 762, - "[e_draft_game_mode_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 755 - ], - "min": [ - 756 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_mode_bool_exp": { - "_and": [ - 750 - ], - "_not": [ - 750 - ], - "_or": [ - 750 - ], - "description": [ - 87 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_mode_constraint": {}, - "e_draft_game_mode_enum": {}, - "e_draft_game_mode_enum_comparison_exp": { - "_eq": [ - 752 - ], - "_in": [ - 752 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 752 - ], - "_nin": [ - 752 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_mode_insert_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_mode_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_mode_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_mode_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 747 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_mode_obj_rel_insert_input": { - "data": [ - 754 - ], - "on_conflict": [ - 759 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_mode_on_conflict": { - "constraint": [ - 751 - ], - "update_columns": [ - 766 - ], - "where": [ - 750 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_mode_order_by": { - "description": [ - 3648 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_mode_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_mode_select_column": {}, - "e_draft_game_mode_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_mode_stream_cursor_input": { - "initial_value": [ - 765 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_mode_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_mode_update_column": {}, - "e_draft_game_mode_updates": { - "_set": [ - 763 - ], - "where": [ - 750 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_player_status": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_player_status_aggregate": { - "aggregate": [ - 770 - ], - "nodes": [ - 768 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_player_status_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 783, - "[e_draft_game_player_status_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 776 - ], - "min": [ - 777 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_player_status_bool_exp": { - "_and": [ - 771 - ], - "_not": [ - 771 - ], - "_or": [ - 771 - ], - "description": [ - 87 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_player_status_constraint": {}, - "e_draft_game_player_status_enum": {}, - "e_draft_game_player_status_enum_comparison_exp": { - "_eq": [ - 773 - ], - "_in": [ - 773 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 773 - ], - "_nin": [ - 773 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_player_status_insert_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_player_status_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_player_status_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_player_status_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 768 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_player_status_obj_rel_insert_input": { - "data": [ - 775 - ], - "on_conflict": [ - 780 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_player_status_on_conflict": { - "constraint": [ - 772 - ], - "update_columns": [ - 787 - ], - "where": [ - 771 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_player_status_order_by": { - "description": [ - 3648 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_player_status_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_player_status_select_column": {}, - "e_draft_game_player_status_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_player_status_stream_cursor_input": { - "initial_value": [ - 786 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_player_status_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_player_status_update_column": {}, - "e_draft_game_player_status_updates": { - "_set": [ - 784 - ], - "where": [ - 771 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_status": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_status_aggregate": { - "aggregate": [ - 791 - ], - "nodes": [ - 789 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_status_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 804, - "[e_draft_game_status_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 797 - ], - "min": [ - 798 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_status_bool_exp": { - "_and": [ - 792 - ], - "_not": [ - 792 - ], - "_or": [ - 792 - ], - "description": [ - 87 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_status_constraint": {}, - "e_draft_game_status_enum": {}, - "e_draft_game_status_enum_comparison_exp": { - "_eq": [ - 794 - ], - "_in": [ - 794 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 794 - ], - "_nin": [ - 794 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_status_insert_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_status_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_status_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_status_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 789 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_status_obj_rel_insert_input": { - "data": [ - 796 - ], - "on_conflict": [ - 801 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_status_on_conflict": { - "constraint": [ - 793 - ], - "update_columns": [ - 808 - ], - "where": [ - 792 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_status_order_by": { - "description": [ - 3648 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_status_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_status_select_column": {}, - "e_draft_game_status_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_status_stream_cursor_input": { - "initial_value": [ - 807 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_status_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_draft_game_status_update_column": {}, - "e_draft_game_status_updates": { - "_set": [ - 805 - ], - "where": [ - 792 - ], - "__typename": [ - 85 - ] - }, - "e_event_media_access": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_event_media_access_aggregate": { - "aggregate": [ - 812 - ], - "nodes": [ - 810 - ], - "__typename": [ - 85 - ] - }, - "e_event_media_access_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 824, - "[e_event_media_access_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 818 - ], - "min": [ - 819 - ], - "__typename": [ - 85 - ] - }, - "e_event_media_access_bool_exp": { - "_and": [ - 813 - ], - "_not": [ - 813 - ], - "_or": [ - 813 - ], - "description": [ - 87 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_event_media_access_constraint": {}, - "e_event_media_access_enum": {}, - "e_event_media_access_enum_comparison_exp": { - "_eq": [ - 815 - ], - "_in": [ - 815 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 815 - ], - "_nin": [ - 815 - ], - "__typename": [ - 85 - ] - }, - "e_event_media_access_insert_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_event_media_access_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_event_media_access_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_event_media_access_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 810 - ], - "__typename": [ - 85 - ] - }, - "e_event_media_access_on_conflict": { - "constraint": [ - 814 - ], - "update_columns": [ - 828 - ], - "where": [ - 813 - ], - "__typename": [ - 85 - ] - }, - "e_event_media_access_order_by": { - "description": [ - 3648 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_event_media_access_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_event_media_access_select_column": {}, - "e_event_media_access_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_event_media_access_stream_cursor_input": { - "initial_value": [ - 827 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_event_media_access_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_event_media_access_update_column": {}, - "e_event_media_access_updates": { - "_set": [ - 825 - ], - "where": [ - 813 - ], - "__typename": [ - 85 - ] - }, - "e_event_visibility": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_event_visibility_aggregate": { - "aggregate": [ - 832 - ], - "nodes": [ - 830 - ], - "__typename": [ - 85 - ] - }, - "e_event_visibility_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 844, - "[e_event_visibility_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 838 - ], - "min": [ - 839 - ], - "__typename": [ - 85 - ] - }, - "e_event_visibility_bool_exp": { - "_and": [ - 833 - ], - "_not": [ - 833 - ], - "_or": [ - 833 - ], - "description": [ - 87 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_event_visibility_constraint": {}, - "e_event_visibility_enum": {}, - "e_event_visibility_enum_comparison_exp": { - "_eq": [ - 835 - ], - "_in": [ - 835 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 835 - ], - "_nin": [ - 835 - ], - "__typename": [ - 85 - ] - }, - "e_event_visibility_insert_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_event_visibility_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_event_visibility_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_event_visibility_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 830 - ], - "__typename": [ - 85 - ] - }, - "e_event_visibility_on_conflict": { - "constraint": [ - 834 - ], - "update_columns": [ - 848 - ], - "where": [ - 833 - ], - "__typename": [ - 85 - ] - }, - "e_event_visibility_order_by": { - "description": [ - 3648 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_event_visibility_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_event_visibility_select_column": {}, - "e_event_visibility_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_event_visibility_stream_cursor_input": { - "initial_value": [ - 847 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_event_visibility_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_event_visibility_update_column": {}, - "e_event_visibility_updates": { - "_set": [ - 845 - ], - "where": [ - 833 - ], - "__typename": [ - 85 - ] - }, - "e_friend_status": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_friend_status_aggregate": { - "aggregate": [ - 852 - ], - "nodes": [ - 850 - ], - "__typename": [ - 85 - ] - }, - "e_friend_status_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 865, - "[e_friend_status_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 858 - ], - "min": [ - 859 - ], - "__typename": [ - 85 - ] - }, - "e_friend_status_bool_exp": { - "_and": [ - 853 - ], - "_not": [ - 853 - ], - "_or": [ - 853 - ], - "description": [ - 87 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_friend_status_constraint": {}, - "e_friend_status_enum": {}, - "e_friend_status_enum_comparison_exp": { - "_eq": [ - 855 - ], - "_in": [ - 855 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 855 - ], - "_nin": [ - 855 - ], - "__typename": [ - 85 - ] - }, - "e_friend_status_insert_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_friend_status_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_friend_status_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_friend_status_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 850 - ], - "__typename": [ - 85 - ] - }, - "e_friend_status_obj_rel_insert_input": { - "data": [ - 857 - ], - "on_conflict": [ - 862 - ], - "__typename": [ - 85 - ] - }, - "e_friend_status_on_conflict": { - "constraint": [ - 854 - ], - "update_columns": [ - 869 - ], - "where": [ - 853 - ], - "__typename": [ - 85 - ] - }, - "e_friend_status_order_by": { - "description": [ - 3648 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_friend_status_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_friend_status_select_column": {}, - "e_friend_status_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_friend_status_stream_cursor_input": { - "initial_value": [ - 868 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_friend_status_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_friend_status_update_column": {}, - "e_friend_status_updates": { - "_set": [ - 866 - ], - "where": [ - 853 - ], - "__typename": [ - 85 - ] - }, - "e_game_cfg_types": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_game_cfg_types_aggregate": { - "aggregate": [ - 873 - ], - "nodes": [ - 871 - ], - "__typename": [ - 85 - ] - }, - "e_game_cfg_types_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 885, - "[e_game_cfg_types_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 879 - ], - "min": [ - 880 - ], - "__typename": [ - 85 - ] - }, - "e_game_cfg_types_bool_exp": { - "_and": [ - 874 - ], - "_not": [ - 874 - ], - "_or": [ - 874 - ], - "description": [ - 87 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_game_cfg_types_constraint": {}, - "e_game_cfg_types_enum": {}, - "e_game_cfg_types_enum_comparison_exp": { - "_eq": [ - 876 - ], - "_in": [ - 876 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 876 - ], - "_nin": [ - 876 - ], - "__typename": [ - 85 - ] - }, - "e_game_cfg_types_insert_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_game_cfg_types_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_game_cfg_types_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_game_cfg_types_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 871 - ], - "__typename": [ - 85 - ] - }, - "e_game_cfg_types_on_conflict": { - "constraint": [ - 875 - ], - "update_columns": [ - 889 - ], - "where": [ - 874 - ], - "__typename": [ - 85 - ] - }, - "e_game_cfg_types_order_by": { - "description": [ - 3648 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_game_cfg_types_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_game_cfg_types_select_column": {}, - "e_game_cfg_types_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_game_cfg_types_stream_cursor_input": { - "initial_value": [ - 888 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_game_cfg_types_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_game_cfg_types_update_column": {}, - "e_game_cfg_types_updates": { - "_set": [ - 886 - ], - "where": [ - 874 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_channels": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_channels_aggregate": { - "aggregate": [ - 893 - ], - "nodes": [ - 891 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_channels_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 905, - "[e_game_plugin_channels_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 899 - ], - "min": [ - 900 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_channels_bool_exp": { - "_and": [ - 894 - ], - "_not": [ - 894 - ], - "_or": [ - 894 - ], - "description": [ - 87 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_channels_constraint": {}, - "e_game_plugin_channels_enum": {}, - "e_game_plugin_channels_enum_comparison_exp": { - "_eq": [ - 896 - ], - "_in": [ - 896 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 896 - ], - "_nin": [ - 896 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_channels_insert_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_channels_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_channels_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_channels_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 891 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_channels_on_conflict": { - "constraint": [ - 895 - ], - "update_columns": [ - 909 - ], - "where": [ - 894 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_channels_order_by": { - "description": [ - 3648 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_channels_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_channels_select_column": {}, - "e_game_plugin_channels_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_channels_stream_cursor_input": { - "initial_value": [ - 908 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_channels_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_channels_update_column": {}, - "e_game_plugin_channels_updates": { - "_set": [ - 906 - ], - "where": [ - 894 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_install_statuses": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_install_statuses_aggregate": { - "aggregate": [ - 913 - ], - "nodes": [ - 911 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_install_statuses_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 925, - "[e_game_plugin_install_statuses_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 919 - ], - "min": [ - 920 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_install_statuses_bool_exp": { - "_and": [ - 914 - ], - "_not": [ - 914 - ], - "_or": [ - 914 - ], - "description": [ - 87 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_install_statuses_constraint": {}, - "e_game_plugin_install_statuses_enum": {}, - "e_game_plugin_install_statuses_enum_comparison_exp": { - "_eq": [ - 916 - ], - "_in": [ - 916 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 916 - ], - "_nin": [ - 916 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_install_statuses_insert_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_install_statuses_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_install_statuses_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_install_statuses_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 911 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_install_statuses_on_conflict": { - "constraint": [ - 915 - ], - "update_columns": [ - 929 - ], - "where": [ - 914 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_install_statuses_order_by": { - "description": [ - 3648 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_install_statuses_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_install_statuses_select_column": {}, - "e_game_plugin_install_statuses_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_install_statuses_stream_cursor_input": { - "initial_value": [ - 928 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_install_statuses_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_install_statuses_update_column": {}, - "e_game_plugin_install_statuses_updates": { - "_set": [ - 926 - ], - "where": [ - 914 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_kinds": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_kinds_aggregate": { - "aggregate": [ - 933 - ], - "nodes": [ - 931 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_kinds_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 945, - "[e_game_plugin_kinds_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 939 - ], - "min": [ - 940 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_kinds_bool_exp": { - "_and": [ - 934 - ], - "_not": [ - 934 - ], - "_or": [ - 934 - ], - "description": [ - 87 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_kinds_constraint": {}, - "e_game_plugin_kinds_enum": {}, - "e_game_plugin_kinds_enum_comparison_exp": { - "_eq": [ - 936 - ], - "_in": [ - 936 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 936 - ], - "_nin": [ - 936 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_kinds_insert_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_kinds_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_kinds_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_kinds_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 931 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_kinds_on_conflict": { - "constraint": [ - 935 - ], - "update_columns": [ - 949 - ], - "where": [ - 934 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_kinds_order_by": { - "description": [ - 3648 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_kinds_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_kinds_select_column": {}, - "e_game_plugin_kinds_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_kinds_stream_cursor_input": { - "initial_value": [ - 948 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_kinds_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_game_plugin_kinds_update_column": {}, - "e_game_plugin_kinds_updates": { - "_set": [ - 946 - ], - "where": [ - 934 - ], - "__typename": [ - 85 - ] - }, - "e_game_server_node_statuses": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_game_server_node_statuses_aggregate": { - "aggregate": [ - 953 - ], - "nodes": [ - 951 - ], - "__typename": [ - 85 - ] - }, - "e_game_server_node_statuses_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 966, - "[e_game_server_node_statuses_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 959 - ], - "min": [ - 960 - ], - "__typename": [ - 85 - ] - }, - "e_game_server_node_statuses_bool_exp": { - "_and": [ - 954 - ], - "_not": [ - 954 - ], - "_or": [ - 954 - ], - "description": [ - 87 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_game_server_node_statuses_constraint": {}, - "e_game_server_node_statuses_enum": {}, - "e_game_server_node_statuses_enum_comparison_exp": { - "_eq": [ - 956 - ], - "_in": [ - 956 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 956 - ], - "_nin": [ - 956 - ], - "__typename": [ - 85 - ] - }, - "e_game_server_node_statuses_insert_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_game_server_node_statuses_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_game_server_node_statuses_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_game_server_node_statuses_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 951 - ], - "__typename": [ - 85 - ] - }, - "e_game_server_node_statuses_obj_rel_insert_input": { - "data": [ - 958 - ], - "on_conflict": [ - 963 - ], - "__typename": [ - 85 - ] - }, - "e_game_server_node_statuses_on_conflict": { - "constraint": [ - 955 - ], - "update_columns": [ - 970 - ], - "where": [ - 954 - ], - "__typename": [ - 85 - ] - }, - "e_game_server_node_statuses_order_by": { - "description": [ - 3648 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_game_server_node_statuses_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_game_server_node_statuses_select_column": {}, - "e_game_server_node_statuses_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_game_server_node_statuses_stream_cursor_input": { - "initial_value": [ - 969 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_game_server_node_statuses_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_game_server_node_statuses_update_column": {}, - "e_game_server_node_statuses_updates": { - "_set": [ - 967 - ], - "where": [ - 954 - ], - "__typename": [ - 85 - ] - }, - "e_league_movement_types": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_league_movement_types_aggregate": { - "aggregate": [ - 974 - ], - "nodes": [ - 972 - ], - "__typename": [ - 85 - ] - }, - "e_league_movement_types_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 987, - "[e_league_movement_types_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 980 - ], - "min": [ - 981 - ], - "__typename": [ - 85 - ] - }, - "e_league_movement_types_bool_exp": { - "_and": [ - 975 - ], - "_not": [ - 975 - ], - "_or": [ - 975 - ], - "description": [ - 87 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_league_movement_types_constraint": {}, - "e_league_movement_types_enum": {}, - "e_league_movement_types_enum_comparison_exp": { - "_eq": [ - 977 - ], - "_in": [ - 977 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 977 - ], - "_nin": [ - 977 - ], - "__typename": [ - 85 - ] - }, - "e_league_movement_types_insert_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_league_movement_types_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_league_movement_types_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_league_movement_types_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 972 - ], - "__typename": [ - 85 - ] - }, - "e_league_movement_types_obj_rel_insert_input": { - "data": [ - 979 - ], - "on_conflict": [ - 984 - ], - "__typename": [ - 85 - ] - }, - "e_league_movement_types_on_conflict": { - "constraint": [ - 976 - ], - "update_columns": [ - 991 - ], - "where": [ - 975 - ], - "__typename": [ - 85 - ] - }, - "e_league_movement_types_order_by": { - "description": [ - 3648 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_league_movement_types_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_league_movement_types_select_column": {}, - "e_league_movement_types_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_league_movement_types_stream_cursor_input": { - "initial_value": [ - 990 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_league_movement_types_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_league_movement_types_update_column": {}, - "e_league_movement_types_updates": { - "_set": [ - 988 - ], - "where": [ - 975 - ], - "__typename": [ - 85 - ] - }, - "e_league_proposal_statuses": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_league_proposal_statuses_aggregate": { - "aggregate": [ - 995 - ], - "nodes": [ - 993 - ], - "__typename": [ - 85 - ] - }, - "e_league_proposal_statuses_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 1008, - "[e_league_proposal_statuses_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1001 - ], - "min": [ - 1002 - ], - "__typename": [ - 85 - ] - }, - "e_league_proposal_statuses_bool_exp": { - "_and": [ - 996 - ], - "_not": [ - 996 - ], - "_or": [ - 996 - ], - "description": [ - 87 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_league_proposal_statuses_constraint": {}, - "e_league_proposal_statuses_enum": {}, - "e_league_proposal_statuses_enum_comparison_exp": { - "_eq": [ - 998 - ], - "_in": [ - 998 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 998 - ], - "_nin": [ - 998 - ], - "__typename": [ - 85 - ] - }, - "e_league_proposal_statuses_insert_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_league_proposal_statuses_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_league_proposal_statuses_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_league_proposal_statuses_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 993 - ], - "__typename": [ - 85 - ] - }, - "e_league_proposal_statuses_obj_rel_insert_input": { - "data": [ - 1000 - ], - "on_conflict": [ - 1005 - ], - "__typename": [ - 85 - ] - }, - "e_league_proposal_statuses_on_conflict": { - "constraint": [ - 997 - ], - "update_columns": [ - 1012 - ], - "where": [ - 996 - ], - "__typename": [ - 85 - ] - }, - "e_league_proposal_statuses_order_by": { - "description": [ - 3648 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_league_proposal_statuses_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_league_proposal_statuses_select_column": {}, - "e_league_proposal_statuses_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_league_proposal_statuses_stream_cursor_input": { - "initial_value": [ - 1011 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_league_proposal_statuses_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_league_proposal_statuses_update_column": {}, - "e_league_proposal_statuses_updates": { - "_set": [ - 1009 - ], - "where": [ - 996 - ], - "__typename": [ - 85 - ] - }, - "e_league_registration_statuses": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_league_registration_statuses_aggregate": { - "aggregate": [ - 1016 - ], - "nodes": [ - 1014 - ], - "__typename": [ - 85 - ] - }, - "e_league_registration_statuses_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 1029, - "[e_league_registration_statuses_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1022 - ], - "min": [ - 1023 - ], - "__typename": [ - 85 - ] - }, - "e_league_registration_statuses_bool_exp": { - "_and": [ - 1017 - ], - "_not": [ - 1017 - ], - "_or": [ - 1017 - ], - "description": [ - 87 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_league_registration_statuses_constraint": {}, - "e_league_registration_statuses_enum": {}, - "e_league_registration_statuses_enum_comparison_exp": { - "_eq": [ - 1019 - ], - "_in": [ - 1019 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 1019 - ], - "_nin": [ - 1019 - ], - "__typename": [ - 85 - ] - }, - "e_league_registration_statuses_insert_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_league_registration_statuses_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_league_registration_statuses_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_league_registration_statuses_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1014 - ], - "__typename": [ - 85 - ] - }, - "e_league_registration_statuses_obj_rel_insert_input": { - "data": [ - 1021 - ], - "on_conflict": [ - 1026 - ], - "__typename": [ - 85 - ] - }, - "e_league_registration_statuses_on_conflict": { - "constraint": [ - 1018 - ], - "update_columns": [ - 1033 - ], - "where": [ - 1017 - ], - "__typename": [ - 85 - ] - }, - "e_league_registration_statuses_order_by": { - "description": [ - 3648 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_league_registration_statuses_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_league_registration_statuses_select_column": {}, - "e_league_registration_statuses_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_league_registration_statuses_stream_cursor_input": { - "initial_value": [ - 1032 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_league_registration_statuses_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_league_registration_statuses_update_column": {}, - "e_league_registration_statuses_updates": { - "_set": [ - 1030 - ], - "where": [ - 1017 - ], - "__typename": [ - 85 - ] - }, - "e_league_season_statuses": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_league_season_statuses_aggregate": { - "aggregate": [ - 1037 - ], - "nodes": [ - 1035 - ], - "__typename": [ - 85 - ] - }, - "e_league_season_statuses_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 1050, - "[e_league_season_statuses_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1043 - ], - "min": [ - 1044 - ], - "__typename": [ - 85 - ] - }, - "e_league_season_statuses_bool_exp": { - "_and": [ - 1038 - ], - "_not": [ - 1038 - ], - "_or": [ - 1038 - ], - "description": [ - 87 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_league_season_statuses_constraint": {}, - "e_league_season_statuses_enum": {}, - "e_league_season_statuses_enum_comparison_exp": { - "_eq": [ - 1040 - ], - "_in": [ - 1040 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 1040 - ], - "_nin": [ - 1040 - ], - "__typename": [ - 85 - ] - }, - "e_league_season_statuses_insert_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_league_season_statuses_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_league_season_statuses_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_league_season_statuses_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1035 - ], - "__typename": [ - 85 - ] - }, - "e_league_season_statuses_obj_rel_insert_input": { - "data": [ - 1042 - ], - "on_conflict": [ - 1047 - ], - "__typename": [ - 85 - ] - }, - "e_league_season_statuses_on_conflict": { - "constraint": [ - 1039 - ], - "update_columns": [ - 1054 - ], - "where": [ - 1038 - ], - "__typename": [ - 85 - ] - }, - "e_league_season_statuses_order_by": { - "description": [ - 3648 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_league_season_statuses_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_league_season_statuses_select_column": {}, - "e_league_season_statuses_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_league_season_statuses_stream_cursor_input": { - "initial_value": [ - 1053 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_league_season_statuses_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_league_season_statuses_update_column": {}, - "e_league_season_statuses_updates": { - "_set": [ - 1051 - ], - "where": [ - 1038 - ], - "__typename": [ - 85 - ] - }, - "e_lobby_access": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_lobby_access_aggregate": { - "aggregate": [ - 1058 - ], - "nodes": [ - 1056 - ], - "__typename": [ - 85 - ] - }, - "e_lobby_access_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 1071, - "[e_lobby_access_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1064 - ], - "min": [ - 1065 - ], - "__typename": [ - 85 - ] - }, - "e_lobby_access_bool_exp": { - "_and": [ - 1059 - ], - "_not": [ - 1059 - ], - "_or": [ - 1059 - ], - "description": [ - 87 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_lobby_access_constraint": {}, - "e_lobby_access_enum": {}, - "e_lobby_access_enum_comparison_exp": { - "_eq": [ - 1061 - ], - "_in": [ - 1061 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 1061 - ], - "_nin": [ - 1061 - ], - "__typename": [ - 85 - ] - }, - "e_lobby_access_insert_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_lobby_access_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_lobby_access_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_lobby_access_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1056 - ], - "__typename": [ - 85 - ] - }, - "e_lobby_access_obj_rel_insert_input": { - "data": [ - 1063 - ], - "on_conflict": [ - 1068 - ], - "__typename": [ - 85 - ] - }, - "e_lobby_access_on_conflict": { - "constraint": [ - 1060 - ], - "update_columns": [ - 1075 - ], - "where": [ - 1059 - ], - "__typename": [ - 85 - ] - }, - "e_lobby_access_order_by": { - "description": [ - 3648 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_lobby_access_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_lobby_access_select_column": {}, - "e_lobby_access_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_lobby_access_stream_cursor_input": { - "initial_value": [ - 1074 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_lobby_access_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_lobby_access_update_column": {}, - "e_lobby_access_updates": { - "_set": [ - 1072 - ], - "where": [ - 1059 - ], - "__typename": [ - 85 - ] - }, - "e_lobby_player_status": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_lobby_player_status_aggregate": { - "aggregate": [ - 1079 - ], - "nodes": [ - 1077 - ], - "__typename": [ - 85 - ] - }, - "e_lobby_player_status_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 1091, - "[e_lobby_player_status_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1085 - ], - "min": [ - 1086 - ], - "__typename": [ - 85 - ] - }, - "e_lobby_player_status_bool_exp": { - "_and": [ - 1080 - ], - "_not": [ - 1080 - ], - "_or": [ - 1080 - ], - "description": [ - 87 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_lobby_player_status_constraint": {}, - "e_lobby_player_status_enum": {}, - "e_lobby_player_status_enum_comparison_exp": { - "_eq": [ - 1082 - ], - "_in": [ - 1082 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 1082 - ], - "_nin": [ - 1082 - ], - "__typename": [ - 85 - ] - }, - "e_lobby_player_status_insert_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_lobby_player_status_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_lobby_player_status_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_lobby_player_status_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1077 - ], - "__typename": [ - 85 - ] - }, - "e_lobby_player_status_on_conflict": { - "constraint": [ - 1081 - ], - "update_columns": [ - 1095 - ], - "where": [ - 1080 - ], - "__typename": [ - 85 - ] - }, - "e_lobby_player_status_order_by": { - "description": [ - 3648 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_lobby_player_status_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_lobby_player_status_select_column": {}, - "e_lobby_player_status_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_lobby_player_status_stream_cursor_input": { - "initial_value": [ - 1094 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_lobby_player_status_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_lobby_player_status_update_column": {}, - "e_lobby_player_status_updates": { - "_set": [ - 1092 - ], - "where": [ - 1080 - ], - "__typename": [ - 85 - ] - }, - "e_map_pool_types": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_map_pool_types_aggregate": { - "aggregate": [ - 1099 - ], - "nodes": [ - 1097 - ], - "__typename": [ - 85 - ] - }, - "e_map_pool_types_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 1112, - "[e_map_pool_types_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1105 - ], - "min": [ - 1106 - ], - "__typename": [ - 85 - ] - }, - "e_map_pool_types_bool_exp": { - "_and": [ - 1100 - ], - "_not": [ - 1100 - ], - "_or": [ - 1100 - ], - "description": [ - 87 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_map_pool_types_constraint": {}, - "e_map_pool_types_enum": {}, - "e_map_pool_types_enum_comparison_exp": { - "_eq": [ - 1102 - ], - "_in": [ - 1102 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 1102 - ], - "_nin": [ - 1102 - ], - "__typename": [ - 85 - ] - }, - "e_map_pool_types_insert_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_map_pool_types_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_map_pool_types_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_map_pool_types_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1097 - ], - "__typename": [ - 85 - ] - }, - "e_map_pool_types_obj_rel_insert_input": { - "data": [ - 1104 - ], - "on_conflict": [ - 1109 - ], - "__typename": [ - 85 - ] - }, - "e_map_pool_types_on_conflict": { - "constraint": [ - 1101 - ], - "update_columns": [ - 1116 - ], - "where": [ - 1100 - ], - "__typename": [ - 85 - ] - }, - "e_map_pool_types_order_by": { - "description": [ - 3648 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_map_pool_types_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_map_pool_types_select_column": {}, - "e_map_pool_types_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_map_pool_types_stream_cursor_input": { - "initial_value": [ - 1115 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_map_pool_types_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_map_pool_types_update_column": {}, - "e_map_pool_types_updates": { - "_set": [ - 1113 - ], - "where": [ - 1100 - ], - "__typename": [ - 85 - ] - }, - "e_match_clip_visibility": { - "description": [ - 85 - ], - "match_clips": [ - 2953, - { - "distinct_on": [ - 2975, - "[match_clips_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2973, - "[match_clips_order_by!]" - ], - "where": [ - 2962 - ] - } - ], - "match_clips_aggregate": [ - 2954, - { - "distinct_on": [ - 2975, - "[match_clips_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2973, - "[match_clips_order_by!]" - ], - "where": [ - 2962 - ] - } - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_match_clip_visibility_aggregate": { - "aggregate": [ - 1120 - ], - "nodes": [ - 1118 - ], - "__typename": [ - 85 - ] - }, - "e_match_clip_visibility_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 1132, - "[e_match_clip_visibility_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1126 - ], - "min": [ - 1127 - ], - "__typename": [ - 85 - ] - }, - "e_match_clip_visibility_bool_exp": { - "_and": [ - 1121 - ], - "_not": [ - 1121 - ], - "_or": [ - 1121 - ], - "description": [ - 87 - ], - "match_clips": [ - 2962 - ], - "match_clips_aggregate": [ - 2955 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_match_clip_visibility_constraint": {}, - "e_match_clip_visibility_enum": {}, - "e_match_clip_visibility_enum_comparison_exp": { - "_eq": [ - 1123 - ], - "_in": [ - 1123 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 1123 - ], - "_nin": [ - 1123 - ], - "__typename": [ - 85 - ] - }, - "e_match_clip_visibility_insert_input": { - "description": [ - 85 - ], - "match_clips": [ - 2959 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_match_clip_visibility_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_match_clip_visibility_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_match_clip_visibility_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1118 - ], - "__typename": [ - 85 - ] - }, - "e_match_clip_visibility_on_conflict": { - "constraint": [ - 1122 - ], - "update_columns": [ - 1136 - ], - "where": [ - 1121 - ], - "__typename": [ - 85 - ] - }, - "e_match_clip_visibility_order_by": { - "description": [ - 3648 - ], - "match_clips_aggregate": [ - 2958 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_match_clip_visibility_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_match_clip_visibility_select_column": {}, - "e_match_clip_visibility_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_match_clip_visibility_stream_cursor_input": { - "initial_value": [ - 1135 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_match_clip_visibility_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_match_clip_visibility_update_column": {}, - "e_match_clip_visibility_updates": { - "_set": [ - 1133 - ], - "where": [ - 1121 - ], - "__typename": [ - 85 - ] - }, - "e_match_map_status": { - "description": [ - 85 - ], - "match_maps": [ - 3248, - { - "distinct_on": [ - 3270, - "[match_maps_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3268, - "[match_maps_order_by!]" - ], - "where": [ - 3257 - ] - } - ], - "match_maps_aggregate": [ - 3249, - { - "distinct_on": [ - 3270, - "[match_maps_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3268, - "[match_maps_order_by!]" - ], - "where": [ - 3257 - ] - } - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_match_map_status_aggregate": { - "aggregate": [ - 1140 - ], - "nodes": [ - 1138 - ], - "__typename": [ - 85 - ] - }, - "e_match_map_status_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 1153, - "[e_match_map_status_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1146 - ], - "min": [ - 1147 - ], - "__typename": [ - 85 - ] - }, - "e_match_map_status_bool_exp": { - "_and": [ - 1141 - ], - "_not": [ - 1141 - ], - "_or": [ - 1141 - ], - "description": [ - 87 - ], - "match_maps": [ - 3257 - ], - "match_maps_aggregate": [ - 3250 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_match_map_status_constraint": {}, - "e_match_map_status_enum": {}, - "e_match_map_status_enum_comparison_exp": { - "_eq": [ - 1143 - ], - "_in": [ - 1143 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 1143 - ], - "_nin": [ - 1143 - ], - "__typename": [ - 85 - ] - }, - "e_match_map_status_insert_input": { - "description": [ - 85 - ], - "match_maps": [ - 3254 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_match_map_status_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_match_map_status_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_match_map_status_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1138 - ], - "__typename": [ - 85 - ] - }, - "e_match_map_status_obj_rel_insert_input": { - "data": [ - 1145 - ], - "on_conflict": [ - 1150 - ], - "__typename": [ - 85 - ] - }, - "e_match_map_status_on_conflict": { - "constraint": [ - 1142 - ], - "update_columns": [ - 1157 - ], - "where": [ - 1141 - ], - "__typename": [ - 85 - ] - }, - "e_match_map_status_order_by": { - "description": [ - 3648 - ], - "match_maps_aggregate": [ - 3253 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_match_map_status_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_match_map_status_select_column": {}, - "e_match_map_status_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_match_map_status_stream_cursor_input": { - "initial_value": [ - 1156 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_match_map_status_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_match_map_status_update_column": {}, - "e_match_map_status_updates": { - "_set": [ - 1154 - ], - "where": [ - 1141 - ], - "__typename": [ - 85 - ] - }, - "e_match_mode": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_match_mode_aggregate": { - "aggregate": [ - 1161 - ], - "nodes": [ - 1159 - ], - "__typename": [ - 85 - ] - }, - "e_match_mode_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 1173, - "[e_match_mode_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1167 - ], - "min": [ - 1168 - ], - "__typename": [ - 85 - ] - }, - "e_match_mode_bool_exp": { - "_and": [ - 1162 - ], - "_not": [ - 1162 - ], - "_or": [ - 1162 - ], - "description": [ - 87 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_match_mode_constraint": {}, - "e_match_mode_enum": {}, - "e_match_mode_enum_comparison_exp": { - "_eq": [ - 1164 - ], - "_in": [ - 1164 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 1164 - ], - "_nin": [ - 1164 - ], - "__typename": [ - 85 - ] - }, - "e_match_mode_insert_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_match_mode_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_match_mode_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_match_mode_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1159 - ], - "__typename": [ - 85 - ] - }, - "e_match_mode_on_conflict": { - "constraint": [ - 1163 - ], - "update_columns": [ - 1177 - ], - "where": [ - 1162 - ], - "__typename": [ - 85 - ] - }, - "e_match_mode_order_by": { - "description": [ - 3648 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_match_mode_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_match_mode_select_column": {}, - "e_match_mode_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_match_mode_stream_cursor_input": { - "initial_value": [ - 1176 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_match_mode_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_match_mode_update_column": {}, - "e_match_mode_updates": { - "_set": [ - 1174 - ], - "where": [ - 1162 - ], - "__typename": [ - 85 - ] - }, - "e_match_party_sources": { - "description": [ - 85 - ], - "match_lineup_players": [ - 3041, - { - "distinct_on": [ - 3064, - "[match_lineup_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3062, - "[match_lineup_players_order_by!]" - ], - "where": [ - 3052 - ] - } - ], - "match_lineup_players_aggregate": [ - 3042, - { - "distinct_on": [ - 3064, - "[match_lineup_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3062, - "[match_lineup_players_order_by!]" - ], - "where": [ - 3052 - ] - } - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_match_party_sources_aggregate": { - "aggregate": [ - 1181 - ], - "nodes": [ - 1179 - ], - "__typename": [ - 85 - ] - }, - "e_match_party_sources_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 1193, - "[e_match_party_sources_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1187 - ], - "min": [ - 1188 - ], - "__typename": [ - 85 - ] - }, - "e_match_party_sources_bool_exp": { - "_and": [ - 1182 - ], - "_not": [ - 1182 - ], - "_or": [ - 1182 - ], - "description": [ - 87 - ], - "match_lineup_players": [ - 3052 - ], - "match_lineup_players_aggregate": [ - 3043 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_match_party_sources_constraint": {}, - "e_match_party_sources_enum": {}, - "e_match_party_sources_enum_comparison_exp": { - "_eq": [ - 1184 - ], - "_in": [ - 1184 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 1184 - ], - "_nin": [ - 1184 - ], - "__typename": [ - 85 - ] - }, - "e_match_party_sources_insert_input": { - "description": [ - 85 - ], - "match_lineup_players": [ - 3049 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_match_party_sources_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_match_party_sources_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_match_party_sources_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1179 - ], - "__typename": [ - 85 - ] - }, - "e_match_party_sources_on_conflict": { - "constraint": [ - 1183 - ], - "update_columns": [ - 1197 - ], - "where": [ - 1182 - ], - "__typename": [ - 85 - ] - }, - "e_match_party_sources_order_by": { - "description": [ - 3648 - ], - "match_lineup_players_aggregate": [ - 3048 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_match_party_sources_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_match_party_sources_select_column": {}, - "e_match_party_sources_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_match_party_sources_stream_cursor_input": { - "initial_value": [ - 1196 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_match_party_sources_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_match_party_sources_update_column": {}, - "e_match_party_sources_updates": { - "_set": [ - 1194 - ], - "where": [ - 1182 - ], - "__typename": [ - 85 - ] - }, - "e_match_status": { - "description": [ - 85 - ], - "matches": [ - 3432, - { - "distinct_on": [ - 3456, - "[matches_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3454, - "[matches_order_by!]" - ], - "where": [ - 3443 - ] - } - ], - "matches_aggregate": [ - 3433, - { - "distinct_on": [ - 3456, - "[matches_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3454, - "[matches_order_by!]" - ], - "where": [ - 3443 - ] - } - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_match_status_aggregate": { - "aggregate": [ - 1201 - ], - "nodes": [ - 1199 - ], - "__typename": [ - 85 - ] - }, - "e_match_status_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 1214, - "[e_match_status_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1207 - ], - "min": [ - 1208 - ], - "__typename": [ - 85 - ] - }, - "e_match_status_bool_exp": { - "_and": [ - 1202 - ], - "_not": [ - 1202 - ], - "_or": [ - 1202 - ], - "description": [ - 87 - ], - "matches": [ - 3443 - ], - "matches_aggregate": [ - 3434 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_match_status_constraint": {}, - "e_match_status_enum": {}, - "e_match_status_enum_comparison_exp": { - "_eq": [ - 1204 - ], - "_in": [ - 1204 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 1204 - ], - "_nin": [ - 1204 - ], - "__typename": [ - 85 - ] - }, - "e_match_status_insert_input": { - "description": [ - 85 - ], - "matches": [ - 3440 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_match_status_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_match_status_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_match_status_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1199 - ], - "__typename": [ - 85 - ] - }, - "e_match_status_obj_rel_insert_input": { - "data": [ - 1206 - ], - "on_conflict": [ - 1211 - ], - "__typename": [ - 85 - ] - }, - "e_match_status_on_conflict": { - "constraint": [ - 1203 - ], - "update_columns": [ - 1218 - ], - "where": [ - 1202 - ], - "__typename": [ - 85 - ] - }, - "e_match_status_order_by": { - "description": [ - 3648 - ], - "matches_aggregate": [ - 3439 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_match_status_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_match_status_select_column": {}, - "e_match_status_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_match_status_stream_cursor_input": { - "initial_value": [ - 1217 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_match_status_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_match_status_update_column": {}, - "e_match_status_updates": { - "_set": [ - 1215 - ], - "where": [ - 1202 - ], - "__typename": [ - 85 - ] - }, - "e_match_types": { - "description": [ - 85 - ], - "maps": [ - 2924, - { - "distinct_on": [ - 2945, - "[maps_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2943, - "[maps_order_by!]" - ], - "where": [ - 2933 - ] - } - ], - "maps_aggregate": [ - 2925, - { - "distinct_on": [ - 2945, - "[maps_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2943, - "[maps_order_by!]" - ], - "where": [ - 2933 - ] - } - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_match_types_aggregate": { - "aggregate": [ - 1222 - ], - "nodes": [ - 1220 - ], - "__typename": [ - 85 - ] - }, - "e_match_types_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 1235, - "[e_match_types_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1228 - ], - "min": [ - 1229 - ], - "__typename": [ - 85 - ] - }, - "e_match_types_bool_exp": { - "_and": [ - 1223 - ], - "_not": [ - 1223 - ], - "_or": [ - 1223 - ], - "description": [ - 87 - ], - "maps": [ - 2933 - ], - "maps_aggregate": [ - 2926 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_match_types_constraint": {}, - "e_match_types_enum": {}, - "e_match_types_enum_comparison_exp": { - "_eq": [ - 1225 - ], - "_in": [ - 1225 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 1225 - ], - "_nin": [ - 1225 - ], - "__typename": [ - 85 - ] - }, - "e_match_types_insert_input": { - "description": [ - 85 - ], - "maps": [ - 2932 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_match_types_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_match_types_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_match_types_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1220 - ], - "__typename": [ - 85 - ] - }, - "e_match_types_obj_rel_insert_input": { - "data": [ - 1227 - ], - "on_conflict": [ - 1232 - ], - "__typename": [ - 85 - ] - }, - "e_match_types_on_conflict": { - "constraint": [ - 1224 - ], - "update_columns": [ - 1239 - ], - "where": [ - 1223 - ], - "__typename": [ - 85 - ] - }, - "e_match_types_order_by": { - "description": [ - 3648 - ], - "maps_aggregate": [ - 2931 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_match_types_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_match_types_select_column": {}, - "e_match_types_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_match_types_stream_cursor_input": { - "initial_value": [ - 1238 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_match_types_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_match_types_update_column": {}, - "e_match_types_updates": { - "_set": [ - 1236 - ], - "where": [ - 1223 - ], - "__typename": [ - 85 - ] - }, - "e_notification_types": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_notification_types_aggregate": { - "aggregate": [ - 1243 - ], - "nodes": [ - 1241 - ], - "__typename": [ - 85 - ] - }, - "e_notification_types_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 1255, - "[e_notification_types_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1249 - ], - "min": [ - 1250 - ], - "__typename": [ - 85 - ] - }, - "e_notification_types_bool_exp": { - "_and": [ - 1244 - ], - "_not": [ - 1244 - ], - "_or": [ - 1244 - ], - "description": [ - 87 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_notification_types_constraint": {}, - "e_notification_types_enum": {}, - "e_notification_types_enum_comparison_exp": { - "_eq": [ - 1246 - ], - "_in": [ - 1246 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 1246 - ], - "_nin": [ - 1246 - ], - "__typename": [ - 85 - ] - }, - "e_notification_types_insert_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_notification_types_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_notification_types_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_notification_types_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1241 - ], - "__typename": [ - 85 - ] - }, - "e_notification_types_on_conflict": { - "constraint": [ - 1245 - ], - "update_columns": [ - 1259 - ], - "where": [ - 1244 - ], - "__typename": [ - 85 - ] - }, - "e_notification_types_order_by": { - "description": [ - 3648 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_notification_types_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_notification_types_select_column": {}, - "e_notification_types_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_notification_types_stream_cursor_input": { - "initial_value": [ - 1258 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_notification_types_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_notification_types_update_column": {}, - "e_notification_types_updates": { - "_set": [ - 1256 - ], - "where": [ - 1244 - ], - "__typename": [ - 85 - ] - }, - "e_objective_types": { - "description": [ - 85 - ], - "player_objectives": [ - 4204, - { - "distinct_on": [ - 4225, - "[player_objectives_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4223, - "[player_objectives_order_by!]" - ], - "where": [ - 4213 - ] - } - ], - "player_objectives_aggregate": [ - 4205, - { - "distinct_on": [ - 4225, - "[player_objectives_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4223, - "[player_objectives_order_by!]" - ], - "where": [ - 4213 - ] - } - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_objective_types_aggregate": { - "aggregate": [ - 1263 - ], - "nodes": [ - 1261 - ], - "__typename": [ - 85 - ] - }, - "e_objective_types_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 1275, - "[e_objective_types_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1269 - ], - "min": [ - 1270 - ], - "__typename": [ - 85 - ] - }, - "e_objective_types_bool_exp": { - "_and": [ - 1264 - ], - "_not": [ - 1264 - ], - "_or": [ - 1264 - ], - "description": [ - 87 - ], - "player_objectives": [ - 4213 - ], - "player_objectives_aggregate": [ - 4206 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_objective_types_constraint": {}, - "e_objective_types_enum": {}, - "e_objective_types_enum_comparison_exp": { - "_eq": [ - 1266 - ], - "_in": [ - 1266 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 1266 - ], - "_nin": [ - 1266 - ], - "__typename": [ - 85 - ] - }, - "e_objective_types_insert_input": { - "description": [ - 85 - ], - "player_objectives": [ - 4210 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_objective_types_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_objective_types_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_objective_types_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1261 - ], - "__typename": [ - 85 - ] - }, - "e_objective_types_on_conflict": { - "constraint": [ - 1265 - ], - "update_columns": [ - 1279 - ], - "where": [ - 1264 - ], - "__typename": [ - 85 - ] - }, - "e_objective_types_order_by": { - "description": [ - 3648 - ], - "player_objectives_aggregate": [ - 4209 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_objective_types_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_objective_types_select_column": {}, - "e_objective_types_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_objective_types_stream_cursor_input": { - "initial_value": [ - 1278 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_objective_types_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_objective_types_update_column": {}, - "e_objective_types_updates": { - "_set": [ - 1276 - ], - "where": [ - 1264 - ], - "__typename": [ - 85 - ] - }, - "e_player_roles": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_player_roles_aggregate": { - "aggregate": [ - 1283 - ], - "nodes": [ - 1281 - ], - "__typename": [ - 85 - ] - }, - "e_player_roles_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 1295, - "[e_player_roles_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1289 - ], - "min": [ - 1290 - ], - "__typename": [ - 85 - ] - }, - "e_player_roles_bool_exp": { - "_and": [ - 1284 - ], - "_not": [ - 1284 - ], - "_or": [ - 1284 - ], - "description": [ - 87 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_player_roles_constraint": {}, - "e_player_roles_enum": {}, - "e_player_roles_enum_comparison_exp": { - "_eq": [ - 1286 - ], - "_in": [ - 1286 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 1286 - ], - "_nin": [ - 1286 - ], - "__typename": [ - 85 - ] - }, - "e_player_roles_insert_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_player_roles_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_player_roles_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_player_roles_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1281 - ], - "__typename": [ - 85 - ] - }, - "e_player_roles_on_conflict": { - "constraint": [ - 1285 - ], - "update_columns": [ - 1299 - ], - "where": [ - 1284 - ], - "__typename": [ - 85 - ] - }, - "e_player_roles_order_by": { - "description": [ - 3648 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_player_roles_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_player_roles_select_column": {}, - "e_player_roles_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_player_roles_stream_cursor_input": { - "initial_value": [ - 1298 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_player_roles_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_player_roles_update_column": {}, - "e_player_roles_updates": { - "_set": [ - 1296 - ], - "where": [ - 1284 - ], - "__typename": [ - 85 - ] - }, - "e_plugin_runtimes": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_plugin_runtimes_aggregate": { - "aggregate": [ - 1303 - ], - "nodes": [ - 1301 - ], - "__typename": [ - 85 - ] - }, - "e_plugin_runtimes_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 1315, - "[e_plugin_runtimes_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1309 - ], - "min": [ - 1310 - ], - "__typename": [ - 85 - ] - }, - "e_plugin_runtimes_bool_exp": { - "_and": [ - 1304 - ], - "_not": [ - 1304 - ], - "_or": [ - 1304 - ], - "description": [ - 87 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_plugin_runtimes_constraint": {}, - "e_plugin_runtimes_enum": {}, - "e_plugin_runtimes_enum_comparison_exp": { - "_eq": [ - 1306 - ], - "_in": [ - 1306 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 1306 - ], - "_nin": [ - 1306 - ], - "__typename": [ - 85 - ] - }, - "e_plugin_runtimes_insert_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_plugin_runtimes_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_plugin_runtimes_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_plugin_runtimes_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1301 - ], - "__typename": [ - 85 - ] - }, - "e_plugin_runtimes_on_conflict": { - "constraint": [ - 1305 - ], - "update_columns": [ - 1319 - ], - "where": [ - 1304 - ], - "__typename": [ - 85 - ] - }, - "e_plugin_runtimes_order_by": { - "description": [ - 3648 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_plugin_runtimes_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_plugin_runtimes_select_column": {}, - "e_plugin_runtimes_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_plugin_runtimes_stream_cursor_input": { - "initial_value": [ - 1318 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_plugin_runtimes_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_plugin_runtimes_update_column": {}, - "e_plugin_runtimes_updates": { - "_set": [ - 1316 - ], - "where": [ - 1304 - ], - "__typename": [ - 85 - ] - }, - "e_ready_settings": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_ready_settings_aggregate": { - "aggregate": [ - 1323 - ], - "nodes": [ - 1321 - ], - "__typename": [ - 85 - ] - }, - "e_ready_settings_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 1335, - "[e_ready_settings_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1329 - ], - "min": [ - 1330 - ], - "__typename": [ - 85 - ] - }, - "e_ready_settings_bool_exp": { - "_and": [ - 1324 - ], - "_not": [ - 1324 - ], - "_or": [ - 1324 - ], - "description": [ - 87 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_ready_settings_constraint": {}, - "e_ready_settings_enum": {}, - "e_ready_settings_enum_comparison_exp": { - "_eq": [ - 1326 - ], - "_in": [ - 1326 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 1326 - ], - "_nin": [ - 1326 - ], - "__typename": [ - 85 - ] - }, - "e_ready_settings_insert_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_ready_settings_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_ready_settings_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_ready_settings_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1321 - ], - "__typename": [ - 85 - ] - }, - "e_ready_settings_on_conflict": { - "constraint": [ - 1325 - ], - "update_columns": [ - 1339 - ], - "where": [ - 1324 - ], - "__typename": [ - 85 - ] - }, - "e_ready_settings_order_by": { - "description": [ - 3648 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_ready_settings_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_ready_settings_select_column": {}, - "e_ready_settings_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_ready_settings_stream_cursor_input": { - "initial_value": [ - 1338 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_ready_settings_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_ready_settings_update_column": {}, - "e_ready_settings_updates": { - "_set": [ - 1336 - ], - "where": [ - 1324 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_scopes": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_scopes_aggregate": { - "aggregate": [ - 1343 - ], - "nodes": [ - 1341 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_scopes_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 1354, - "[e_sanction_scopes_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1347 - ], - "min": [ - 1348 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_scopes_bool_exp": { - "_and": [ - 1344 - ], - "_not": [ - 1344 - ], - "_or": [ - 1344 - ], - "description": [ - 87 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_scopes_constraint": {}, - "e_sanction_scopes_insert_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_scopes_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_scopes_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_scopes_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1341 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_scopes_obj_rel_insert_input": { - "data": [ - 1346 - ], - "on_conflict": [ - 1351 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_scopes_on_conflict": { - "constraint": [ - 1345 - ], - "update_columns": [ - 1358 - ], - "where": [ - 1344 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_scopes_order_by": { - "description": [ - 3648 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_scopes_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_scopes_select_column": {}, - "e_sanction_scopes_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_scopes_stream_cursor_input": { - "initial_value": [ - 1357 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_scopes_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_scopes_update_column": {}, - "e_sanction_scopes_updates": { - "_set": [ - 1355 - ], - "where": [ - 1344 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_sources": { - "default_durations": [ - 85 - ], - "default_enabled": [ - 6 - ], - "default_scope": [ - 85 - ], - "default_threshold": [ - 41 - ], - "default_window_days": [ - 41 - ], - "description": [ - 85 - ], - "e_sanction_scope": [ - 1341 - ], - "value": [ - 85 - ], - "writes_platform_ban": [ - 6 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_sources_aggregate": { - "aggregate": [ - 1362 - ], - "nodes": [ - 1360 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_sources_aggregate_fields": { - "avg": [ - 1363 - ], - "count": [ - 41, - { - "columns": [ - 1374, - "[e_sanction_sources_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1368 - ], - "min": [ - 1369 - ], - "stddev": [ - 1376 - ], - "stddev_pop": [ - 1377 - ], - "stddev_samp": [ - 1378 - ], - "sum": [ - 1381 - ], - "var_pop": [ - 1384 - ], - "var_samp": [ - 1385 - ], - "variance": [ - 1386 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_sources_avg_fields": { - "default_threshold": [ - 32 - ], - "default_window_days": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_sources_bool_exp": { - "_and": [ - 1364 - ], - "_not": [ - 1364 - ], - "_or": [ - 1364 - ], - "default_durations": [ - 87 - ], - "default_enabled": [ - 7 - ], - "default_scope": [ - 87 - ], - "default_threshold": [ - 42 - ], - "default_window_days": [ - 42 - ], - "description": [ - 87 - ], - "e_sanction_scope": [ - 1344 - ], - "value": [ - 87 - ], - "writes_platform_ban": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_sources_constraint": {}, - "e_sanction_sources_inc_input": { - "default_threshold": [ - 41 - ], - "default_window_days": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_sources_insert_input": { - "default_durations": [ - 85 - ], - "default_enabled": [ - 6 - ], - "default_scope": [ - 85 - ], - "default_threshold": [ - 41 - ], - "default_window_days": [ - 41 - ], - "description": [ - 85 - ], - "e_sanction_scope": [ - 1350 - ], - "value": [ - 85 - ], - "writes_platform_ban": [ - 6 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_sources_max_fields": { - "default_durations": [ - 85 - ], - "default_scope": [ - 85 - ], - "default_threshold": [ - 41 - ], - "default_window_days": [ - 41 - ], - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_sources_min_fields": { - "default_durations": [ - 85 - ], - "default_scope": [ - 85 - ], - "default_threshold": [ - 41 - ], - "default_window_days": [ - 41 - ], - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_sources_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1360 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_sources_on_conflict": { - "constraint": [ - 1365 - ], - "update_columns": [ - 1382 - ], - "where": [ - 1364 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_sources_order_by": { - "default_durations": [ - 3648 - ], - "default_enabled": [ - 3648 - ], - "default_scope": [ - 3648 - ], - "default_threshold": [ - 3648 - ], - "default_window_days": [ - 3648 - ], - "description": [ - 3648 - ], - "e_sanction_scope": [ - 1352 - ], - "value": [ - 3648 - ], - "writes_platform_ban": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_sources_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_sources_select_column": {}, - "e_sanction_sources_set_input": { - "default_durations": [ - 85 - ], - "default_enabled": [ - 6 - ], - "default_scope": [ - 85 - ], - "default_threshold": [ - 41 - ], - "default_window_days": [ - 41 - ], - "description": [ - 85 - ], - "value": [ - 85 - ], - "writes_platform_ban": [ - 6 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_sources_stddev_fields": { - "default_threshold": [ - 32 - ], - "default_window_days": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_sources_stddev_pop_fields": { - "default_threshold": [ - 32 - ], - "default_window_days": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_sources_stddev_samp_fields": { - "default_threshold": [ - 32 - ], - "default_window_days": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_sources_stream_cursor_input": { - "initial_value": [ - 1380 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_sources_stream_cursor_value_input": { - "default_durations": [ - 85 - ], - "default_enabled": [ - 6 - ], - "default_scope": [ - 85 - ], - "default_threshold": [ - 41 - ], - "default_window_days": [ - 41 - ], - "description": [ - 85 - ], - "value": [ - 85 - ], - "writes_platform_ban": [ - 6 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_sources_sum_fields": { - "default_threshold": [ - 41 - ], - "default_window_days": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_sources_update_column": {}, - "e_sanction_sources_updates": { - "_inc": [ - 1366 - ], - "_set": [ - 1375 - ], - "where": [ - 1364 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_sources_var_pop_fields": { - "default_threshold": [ - 32 - ], - "default_window_days": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_sources_var_samp_fields": { - "default_threshold": [ - 32 - ], - "default_window_days": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_sources_variance_fields": { - "default_threshold": [ - 32 - ], - "default_window_days": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_types": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_types_aggregate": { - "aggregate": [ - 1389 - ], - "nodes": [ - 1387 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_types_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 1402, - "[e_sanction_types_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1395 - ], - "min": [ - 1396 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_types_bool_exp": { - "_and": [ - 1390 - ], - "_not": [ - 1390 - ], - "_or": [ - 1390 - ], - "description": [ - 87 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_types_constraint": {}, - "e_sanction_types_enum": {}, - "e_sanction_types_enum_comparison_exp": { - "_eq": [ - 1392 - ], - "_in": [ - 1392 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 1392 - ], - "_nin": [ - 1392 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_types_insert_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_types_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_types_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_types_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1387 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_types_obj_rel_insert_input": { - "data": [ - 1394 - ], - "on_conflict": [ - 1399 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_types_on_conflict": { - "constraint": [ - 1391 - ], - "update_columns": [ - 1406 - ], - "where": [ - 1390 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_types_order_by": { - "description": [ - 3648 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_types_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_types_select_column": {}, - "e_sanction_types_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_types_stream_cursor_input": { - "initial_value": [ - 1405 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_types_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_sanction_types_update_column": {}, - "e_sanction_types_updates": { - "_set": [ - 1403 - ], - "where": [ - 1390 - ], - "__typename": [ - 85 - ] - }, - "e_scrim_request_statuses": { - "description": [ - 85 - ], - "scrim_requests": [ - 5093, - { - "distinct_on": [ - 5117, - "[team_scrim_requests_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5115, - "[team_scrim_requests_order_by!]" - ], - "where": [ - 5104 - ] - } - ], - "scrim_requests_aggregate": [ - 5094, - { - "distinct_on": [ - 5117, - "[team_scrim_requests_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5115, - "[team_scrim_requests_order_by!]" - ], - "where": [ - 5104 - ] - } - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_scrim_request_statuses_aggregate": { - "aggregate": [ - 1410 - ], - "nodes": [ - 1408 - ], - "__typename": [ - 85 - ] - }, - "e_scrim_request_statuses_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 1422, - "[e_scrim_request_statuses_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1416 - ], - "min": [ - 1417 - ], - "__typename": [ - 85 - ] - }, - "e_scrim_request_statuses_bool_exp": { - "_and": [ - 1411 - ], - "_not": [ - 1411 - ], - "_or": [ - 1411 - ], - "description": [ - 87 - ], - "scrim_requests": [ - 5104 - ], - "scrim_requests_aggregate": [ - 5095 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_scrim_request_statuses_constraint": {}, - "e_scrim_request_statuses_enum": {}, - "e_scrim_request_statuses_enum_comparison_exp": { - "_eq": [ - 1413 - ], - "_in": [ - 1413 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 1413 - ], - "_nin": [ - 1413 - ], - "__typename": [ - 85 - ] - }, - "e_scrim_request_statuses_insert_input": { - "description": [ - 85 - ], - "scrim_requests": [ - 5101 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_scrim_request_statuses_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_scrim_request_statuses_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_scrim_request_statuses_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1408 - ], - "__typename": [ - 85 - ] - }, - "e_scrim_request_statuses_on_conflict": { - "constraint": [ - 1412 - ], - "update_columns": [ - 1426 - ], - "where": [ - 1411 - ], - "__typename": [ - 85 - ] - }, - "e_scrim_request_statuses_order_by": { - "description": [ - 3648 - ], - "scrim_requests_aggregate": [ - 5100 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_scrim_request_statuses_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_scrim_request_statuses_select_column": {}, - "e_scrim_request_statuses_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_scrim_request_statuses_stream_cursor_input": { - "initial_value": [ - 1425 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_scrim_request_statuses_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_scrim_request_statuses_update_column": {}, - "e_scrim_request_statuses_updates": { - "_set": [ - 1423 - ], - "where": [ - 1411 - ], - "__typename": [ - 85 - ] - }, - "e_server_types": { - "description": [ - 85 - ], - "servers": [ - 4761, - { - "distinct_on": [ - 4790, - "[servers_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4787, - "[servers_order_by!]" - ], - "where": [ - 4773 - ] - } - ], - "servers_aggregate": [ - 4762, - { - "distinct_on": [ - 4790, - "[servers_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4787, - "[servers_order_by!]" - ], - "where": [ - 4773 - ] - } - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_server_types_aggregate": { - "aggregate": [ - 1430 - ], - "nodes": [ - 1428 - ], - "__typename": [ - 85 - ] - }, - "e_server_types_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 1442, - "[e_server_types_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1436 - ], - "min": [ - 1437 - ], - "__typename": [ - 85 - ] - }, - "e_server_types_bool_exp": { - "_and": [ - 1431 - ], - "_not": [ - 1431 - ], - "_or": [ - 1431 - ], - "description": [ - 87 - ], - "servers": [ - 4773 - ], - "servers_aggregate": [ - 4763 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_server_types_constraint": {}, - "e_server_types_enum": {}, - "e_server_types_enum_comparison_exp": { - "_eq": [ - 1433 - ], - "_in": [ - 1433 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 1433 - ], - "_nin": [ - 1433 - ], - "__typename": [ - 85 - ] - }, - "e_server_types_insert_input": { - "description": [ - 85 - ], - "servers": [ - 4770 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_server_types_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_server_types_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_server_types_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1428 - ], - "__typename": [ - 85 - ] - }, - "e_server_types_on_conflict": { - "constraint": [ - 1432 - ], - "update_columns": [ - 1446 - ], - "where": [ - 1431 - ], - "__typename": [ - 85 - ] - }, - "e_server_types_order_by": { - "description": [ - 3648 - ], - "servers_aggregate": [ - 4768 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_server_types_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_server_types_select_column": {}, - "e_server_types_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_server_types_stream_cursor_input": { - "initial_value": [ - 1445 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_server_types_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_server_types_update_column": {}, - "e_server_types_updates": { - "_set": [ - 1443 - ], - "where": [ - 1431 - ], - "__typename": [ - 85 - ] - }, - "e_sides": { - "description": [ - 85 - ], - "match_map_lineup_1": [ - 3248, - { - "distinct_on": [ - 3270, - "[match_maps_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3268, - "[match_maps_order_by!]" - ], - "where": [ - 3257 - ] - } - ], - "match_map_lineup_1_aggregate": [ - 3249, - { - "distinct_on": [ - 3270, - "[match_maps_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3268, - "[match_maps_order_by!]" - ], - "where": [ - 3257 - ] - } - ], - "match_map_lineup_2": [ - 3248, - { - "distinct_on": [ - 3270, - "[match_maps_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3268, - "[match_maps_order_by!]" - ], - "where": [ - 3257 - ] - } - ], - "match_map_lineup_2_aggregate": [ - 3249, - { - "distinct_on": [ - 3270, - "[match_maps_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3268, - "[match_maps_order_by!]" - ], - "where": [ - 3257 - ] - } - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_sides_aggregate": { - "aggregate": [ - 1450 - ], - "nodes": [ - 1448 - ], - "__typename": [ - 85 - ] - }, - "e_sides_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 1462, - "[e_sides_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1456 - ], - "min": [ - 1457 - ], - "__typename": [ - 85 - ] - }, - "e_sides_bool_exp": { - "_and": [ - 1451 - ], - "_not": [ - 1451 - ], - "_or": [ - 1451 - ], - "description": [ - 87 - ], - "match_map_lineup_1": [ - 3257 - ], - "match_map_lineup_1_aggregate": [ - 3250 - ], - "match_map_lineup_2": [ - 3257 - ], - "match_map_lineup_2_aggregate": [ - 3250 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_sides_constraint": {}, - "e_sides_enum": {}, - "e_sides_enum_comparison_exp": { - "_eq": [ - 1453 - ], - "_in": [ - 1453 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 1453 - ], - "_nin": [ - 1453 - ], - "__typename": [ - 85 - ] - }, - "e_sides_insert_input": { - "description": [ - 85 - ], - "match_map_lineup_1": [ - 3254 - ], - "match_map_lineup_2": [ - 3254 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_sides_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_sides_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_sides_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1448 - ], - "__typename": [ - 85 - ] - }, - "e_sides_on_conflict": { - "constraint": [ - 1452 - ], - "update_columns": [ - 1466 - ], - "where": [ - 1451 - ], - "__typename": [ - 85 - ] - }, - "e_sides_order_by": { - "description": [ - 3648 - ], - "match_map_lineup_1_aggregate": [ - 3253 - ], - "match_map_lineup_2_aggregate": [ - 3253 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_sides_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_sides_select_column": {}, - "e_sides_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_sides_stream_cursor_input": { - "initial_value": [ - 1465 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_sides_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_sides_update_column": {}, - "e_sides_updates": { - "_set": [ - 1463 - ], - "where": [ - 1451 - ], - "__typename": [ - 85 - ] - }, - "e_system_alert_types": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_system_alert_types_aggregate": { - "aggregate": [ - 1470 - ], - "nodes": [ - 1468 - ], - "__typename": [ - 85 - ] - }, - "e_system_alert_types_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 1482, - "[e_system_alert_types_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1476 - ], - "min": [ - 1477 - ], - "__typename": [ - 85 - ] - }, - "e_system_alert_types_bool_exp": { - "_and": [ - 1471 - ], - "_not": [ - 1471 - ], - "_or": [ - 1471 - ], - "description": [ - 87 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_system_alert_types_constraint": {}, - "e_system_alert_types_enum": {}, - "e_system_alert_types_enum_comparison_exp": { - "_eq": [ - 1473 - ], - "_in": [ - 1473 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 1473 - ], - "_nin": [ - 1473 - ], - "__typename": [ - 85 - ] - }, - "e_system_alert_types_insert_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_system_alert_types_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_system_alert_types_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_system_alert_types_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1468 - ], - "__typename": [ - 85 - ] - }, - "e_system_alert_types_on_conflict": { - "constraint": [ - 1472 - ], - "update_columns": [ - 1486 - ], - "where": [ - 1471 - ], - "__typename": [ - 85 - ] - }, - "e_system_alert_types_order_by": { - "description": [ - 3648 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_system_alert_types_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_system_alert_types_select_column": {}, - "e_system_alert_types_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_system_alert_types_stream_cursor_input": { - "initial_value": [ - 1485 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_system_alert_types_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_system_alert_types_update_column": {}, - "e_system_alert_types_updates": { - "_set": [ - 1483 - ], - "where": [ - 1471 - ], - "__typename": [ - 85 - ] - }, - "e_team_roles": { - "description": [ - 85 - ], - "team_rosters": [ - 4952, - { - "distinct_on": [ - 4975, - "[team_roster_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4973, - "[team_roster_order_by!]" - ], - "where": [ - 4963 - ] - } - ], - "team_rosters_aggregate": [ - 4953, - { - "distinct_on": [ - 4975, - "[team_roster_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4973, - "[team_roster_order_by!]" - ], - "where": [ - 4963 - ] - } - ], - "tournament_team_rosters": [ - 5809, - { - "distinct_on": [ - 5830, - "[tournament_team_roster_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5828, - "[tournament_team_roster_order_by!]" - ], - "where": [ - 5818 - ] - } - ], - "tournament_team_rosters_aggregate": [ - 5810, - { - "distinct_on": [ - 5830, - "[tournament_team_roster_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5828, - "[tournament_team_roster_order_by!]" - ], - "where": [ - 5818 - ] - } - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_team_roles_aggregate": { - "aggregate": [ - 1490 - ], - "nodes": [ - 1488 - ], - "__typename": [ - 85 - ] - }, - "e_team_roles_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 1503, - "[e_team_roles_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1496 - ], - "min": [ - 1497 - ], - "__typename": [ - 85 - ] - }, - "e_team_roles_bool_exp": { - "_and": [ - 1491 - ], - "_not": [ - 1491 - ], - "_or": [ - 1491 - ], - "description": [ - 87 - ], - "team_rosters": [ - 4963 - ], - "team_rosters_aggregate": [ - 4954 - ], - "tournament_team_rosters": [ - 5818 - ], - "tournament_team_rosters_aggregate": [ - 5811 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_team_roles_constraint": {}, - "e_team_roles_enum": {}, - "e_team_roles_enum_comparison_exp": { - "_eq": [ - 1493 - ], - "_in": [ - 1493 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 1493 - ], - "_nin": [ - 1493 - ], - "__typename": [ - 85 - ] - }, - "e_team_roles_insert_input": { - "description": [ - 85 - ], - "team_rosters": [ - 4960 - ], - "tournament_team_rosters": [ - 5815 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_team_roles_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_team_roles_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_team_roles_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1488 - ], - "__typename": [ - 85 - ] - }, - "e_team_roles_obj_rel_insert_input": { - "data": [ - 1495 - ], - "on_conflict": [ - 1500 - ], - "__typename": [ - 85 - ] - }, - "e_team_roles_on_conflict": { - "constraint": [ - 1492 - ], - "update_columns": [ - 1507 - ], - "where": [ - 1491 - ], - "__typename": [ - 85 - ] - }, - "e_team_roles_order_by": { - "description": [ - 3648 - ], - "team_rosters_aggregate": [ - 4959 - ], - "tournament_team_rosters_aggregate": [ - 5814 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_team_roles_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_team_roles_select_column": {}, - "e_team_roles_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_team_roles_stream_cursor_input": { - "initial_value": [ - 1506 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_team_roles_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_team_roles_update_column": {}, - "e_team_roles_updates": { - "_set": [ - 1504 - ], - "where": [ - 1491 - ], - "__typename": [ - 85 - ] - }, - "e_team_roster_statuses": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_team_roster_statuses_aggregate": { - "aggregate": [ - 1511 - ], - "nodes": [ - 1509 - ], - "__typename": [ - 85 - ] - }, - "e_team_roster_statuses_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 1523, - "[e_team_roster_statuses_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1517 - ], - "min": [ - 1518 - ], - "__typename": [ - 85 - ] - }, - "e_team_roster_statuses_bool_exp": { - "_and": [ - 1512 - ], - "_not": [ - 1512 - ], - "_or": [ - 1512 - ], - "description": [ - 87 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_team_roster_statuses_constraint": {}, - "e_team_roster_statuses_enum": {}, - "e_team_roster_statuses_enum_comparison_exp": { - "_eq": [ - 1514 - ], - "_in": [ - 1514 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 1514 - ], - "_nin": [ - 1514 - ], - "__typename": [ - 85 - ] - }, - "e_team_roster_statuses_insert_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_team_roster_statuses_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_team_roster_statuses_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_team_roster_statuses_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1509 - ], - "__typename": [ - 85 - ] - }, - "e_team_roster_statuses_on_conflict": { - "constraint": [ - 1513 - ], - "update_columns": [ - 1527 - ], - "where": [ - 1512 - ], - "__typename": [ - 85 - ] - }, - "e_team_roster_statuses_order_by": { - "description": [ - 3648 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_team_roster_statuses_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_team_roster_statuses_select_column": {}, - "e_team_roster_statuses_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_team_roster_statuses_stream_cursor_input": { - "initial_value": [ - 1526 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_team_roster_statuses_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_team_roster_statuses_update_column": {}, - "e_team_roster_statuses_updates": { - "_set": [ - 1524 - ], - "where": [ - 1512 - ], - "__typename": [ - 85 - ] - }, - "e_timeout_settings": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_timeout_settings_aggregate": { - "aggregate": [ - 1531 - ], - "nodes": [ - 1529 - ], - "__typename": [ - 85 - ] - }, - "e_timeout_settings_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 1543, - "[e_timeout_settings_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1537 - ], - "min": [ - 1538 - ], - "__typename": [ - 85 - ] - }, - "e_timeout_settings_bool_exp": { - "_and": [ - 1532 - ], - "_not": [ - 1532 - ], - "_or": [ - 1532 - ], - "description": [ - 87 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_timeout_settings_constraint": {}, - "e_timeout_settings_enum": {}, - "e_timeout_settings_enum_comparison_exp": { - "_eq": [ - 1534 - ], - "_in": [ - 1534 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 1534 - ], - "_nin": [ - 1534 - ], - "__typename": [ - 85 - ] - }, - "e_timeout_settings_insert_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_timeout_settings_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_timeout_settings_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_timeout_settings_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1529 - ], - "__typename": [ - 85 - ] - }, - "e_timeout_settings_on_conflict": { - "constraint": [ - 1533 - ], - "update_columns": [ - 1547 - ], - "where": [ - 1532 - ], - "__typename": [ - 85 - ] - }, - "e_timeout_settings_order_by": { - "description": [ - 3648 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_timeout_settings_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_timeout_settings_select_column": {}, - "e_timeout_settings_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_timeout_settings_stream_cursor_input": { - "initial_value": [ - 1546 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_timeout_settings_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_timeout_settings_update_column": {}, - "e_timeout_settings_updates": { - "_set": [ - 1544 - ], - "where": [ - 1532 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_categories": { - "description": [ - 85 - ], - "tournament_categories": [ - 5333, - { - "distinct_on": [ - 5351, - "[tournament_categories_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5349, - "[tournament_categories_order_by!]" - ], - "where": [ - 5340 - ] - } - ], - "tournament_categories_aggregate": [ - 5334, - { - "distinct_on": [ - 5351, - "[tournament_categories_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5349, - "[tournament_categories_order_by!]" - ], - "where": [ - 5340 - ] - } - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_categories_aggregate": { - "aggregate": [ - 1551 - ], - "nodes": [ - 1549 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_categories_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 1564, - "[e_tournament_categories_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1557 - ], - "min": [ - 1558 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_categories_bool_exp": { - "_and": [ - 1552 - ], - "_not": [ - 1552 - ], - "_or": [ - 1552 - ], - "description": [ - 87 - ], - "tournament_categories": [ - 5340 - ], - "tournament_categories_aggregate": [ - 5335 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_categories_constraint": {}, - "e_tournament_categories_enum": {}, - "e_tournament_categories_enum_comparison_exp": { - "_eq": [ - 1554 - ], - "_in": [ - 1554 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 1554 - ], - "_nin": [ - 1554 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_categories_insert_input": { - "description": [ - 85 - ], - "tournament_categories": [ - 5339 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_categories_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_categories_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_categories_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1549 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_categories_obj_rel_insert_input": { - "data": [ - 1556 - ], - "on_conflict": [ - 1561 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_categories_on_conflict": { - "constraint": [ - 1553 - ], - "update_columns": [ - 1568 - ], - "where": [ - 1552 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_categories_order_by": { - "description": [ - 3648 - ], - "tournament_categories_aggregate": [ - 5338 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_categories_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_categories_select_column": {}, - "e_tournament_categories_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_categories_stream_cursor_input": { - "initial_value": [ - 1567 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_categories_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_categories_update_column": {}, - "e_tournament_categories_updates": { - "_set": [ - 1565 - ], - "where": [ - 1552 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_free_agent_statuses": { - "description": [ - 85 - ], - "tournament_free_agents": [ - 5357, - { - "distinct_on": [ - 5378, - "[tournament_free_agents_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5376, - "[tournament_free_agents_order_by!]" - ], - "where": [ - 5366 - ] - } - ], - "tournament_free_agents_aggregate": [ - 5358, - { - "distinct_on": [ - 5378, - "[tournament_free_agents_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5376, - "[tournament_free_agents_order_by!]" - ], - "where": [ - 5366 - ] - } - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_free_agent_statuses_aggregate": { - "aggregate": [ - 1572 - ], - "nodes": [ - 1570 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_free_agent_statuses_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 1585, - "[e_tournament_free_agent_statuses_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1578 - ], - "min": [ - 1579 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_free_agent_statuses_bool_exp": { - "_and": [ - 1573 - ], - "_not": [ - 1573 - ], - "_or": [ - 1573 - ], - "description": [ - 87 - ], - "tournament_free_agents": [ - 5366 - ], - "tournament_free_agents_aggregate": [ - 5359 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_free_agent_statuses_constraint": {}, - "e_tournament_free_agent_statuses_enum": {}, - "e_tournament_free_agent_statuses_enum_comparison_exp": { - "_eq": [ - 1575 - ], - "_in": [ - 1575 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 1575 - ], - "_nin": [ - 1575 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_free_agent_statuses_insert_input": { - "description": [ - 85 - ], - "tournament_free_agents": [ - 5363 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_free_agent_statuses_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_free_agent_statuses_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_free_agent_statuses_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1570 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_free_agent_statuses_obj_rel_insert_input": { - "data": [ - 1577 - ], - "on_conflict": [ - 1582 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_free_agent_statuses_on_conflict": { - "constraint": [ - 1574 - ], - "update_columns": [ - 1589 - ], - "where": [ - 1573 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_free_agent_statuses_order_by": { - "description": [ - 3648 - ], - "tournament_free_agents_aggregate": [ - 5362 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_free_agent_statuses_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_free_agent_statuses_select_column": {}, - "e_tournament_free_agent_statuses_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_free_agent_statuses_stream_cursor_input": { - "initial_value": [ - 1588 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_free_agent_statuses_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_free_agent_statuses_update_column": {}, - "e_tournament_free_agent_statuses_updates": { - "_set": [ - 1586 - ], - "where": [ - 1573 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_registration_types": { - "description": [ - 85 - ], - "tournaments": [ - 5896, - { - "distinct_on": [ - 5930, - "[tournaments_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5928, - "[tournaments_order_by!]" - ], - "where": [ - 5917 - ] - } - ], - "tournaments_aggregate": [ - 5897, - { - "distinct_on": [ - 5930, - "[tournaments_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5928, - "[tournaments_order_by!]" - ], - "where": [ - 5917 - ] - } - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_registration_types_aggregate": { - "aggregate": [ - 1593 - ], - "nodes": [ - 1591 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_registration_types_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 1605, - "[e_tournament_registration_types_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1599 - ], - "min": [ - 1600 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_registration_types_bool_exp": { - "_and": [ - 1594 - ], - "_not": [ - 1594 - ], - "_or": [ - 1594 - ], - "description": [ - 87 - ], - "tournaments": [ - 5917 - ], - "tournaments_aggregate": [ - 5898 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_registration_types_constraint": {}, - "e_tournament_registration_types_enum": {}, - "e_tournament_registration_types_enum_comparison_exp": { - "_eq": [ - 1596 - ], - "_in": [ - 1596 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 1596 - ], - "_nin": [ - 1596 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_registration_types_insert_input": { - "description": [ - 85 - ], - "tournaments": [ - 5914 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_registration_types_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_registration_types_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_registration_types_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1591 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_registration_types_on_conflict": { - "constraint": [ - 1595 - ], - "update_columns": [ - 1609 - ], - "where": [ - 1594 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_registration_types_order_by": { - "description": [ - 3648 - ], - "tournaments_aggregate": [ - 5913 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_registration_types_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_registration_types_select_column": {}, - "e_tournament_registration_types_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_registration_types_stream_cursor_input": { - "initial_value": [ - 1608 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_registration_types_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_registration_types_update_column": {}, - "e_tournament_registration_types_updates": { - "_set": [ - 1606 - ], - "where": [ - 1594 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_stage_types": { - "description": [ - 85 - ], - "tournament_stages": [ - 5717, - { - "distinct_on": [ - 5746, - "[tournament_stages_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5743, - "[tournament_stages_order_by!]" - ], - "where": [ - 5729 - ] - } - ], - "tournament_stages_aggregate": [ - 5718, - { - "distinct_on": [ - 5746, - "[tournament_stages_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5743, - "[tournament_stages_order_by!]" - ], - "where": [ - 5729 - ] - } - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_stage_types_aggregate": { - "aggregate": [ - 1613 - ], - "nodes": [ - 1611 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_stage_types_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 1626, - "[e_tournament_stage_types_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1619 - ], - "min": [ - 1620 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_stage_types_bool_exp": { - "_and": [ - 1614 - ], - "_not": [ - 1614 - ], - "_or": [ - 1614 - ], - "description": [ - 87 - ], - "tournament_stages": [ - 5729 - ], - "tournament_stages_aggregate": [ - 5719 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_stage_types_constraint": {}, - "e_tournament_stage_types_enum": {}, - "e_tournament_stage_types_enum_comparison_exp": { - "_eq": [ - 1616 - ], - "_in": [ - 1616 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 1616 - ], - "_nin": [ - 1616 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_stage_types_insert_input": { - "description": [ - 85 - ], - "tournament_stages": [ - 5726 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_stage_types_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_stage_types_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_stage_types_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1611 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_stage_types_obj_rel_insert_input": { - "data": [ - 1618 - ], - "on_conflict": [ - 1623 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_stage_types_on_conflict": { - "constraint": [ - 1615 - ], - "update_columns": [ - 1630 - ], - "where": [ - 1614 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_stage_types_order_by": { - "description": [ - 3648 - ], - "tournament_stages_aggregate": [ - 5724 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_stage_types_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_stage_types_select_column": {}, - "e_tournament_stage_types_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_stage_types_stream_cursor_input": { - "initial_value": [ - 1629 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_stage_types_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_stage_types_update_column": {}, - "e_tournament_stage_types_updates": { - "_set": [ - 1627 - ], - "where": [ - 1614 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_status": { - "description": [ - 85 - ], - "tournaments": [ - 5896, - { - "distinct_on": [ - 5930, - "[tournaments_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5928, - "[tournaments_order_by!]" - ], - "where": [ - 5917 - ] - } - ], - "tournaments_aggregate": [ - 5897, - { - "distinct_on": [ - 5930, - "[tournaments_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5928, - "[tournaments_order_by!]" - ], - "where": [ - 5917 - ] - } - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_status_aggregate": { - "aggregate": [ - 1634 - ], - "nodes": [ - 1632 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_status_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 1647, - "[e_tournament_status_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1640 - ], - "min": [ - 1641 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_status_bool_exp": { - "_and": [ - 1635 - ], - "_not": [ - 1635 - ], - "_or": [ - 1635 - ], - "description": [ - 87 - ], - "tournaments": [ - 5917 - ], - "tournaments_aggregate": [ - 5898 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_status_constraint": {}, - "e_tournament_status_enum": {}, - "e_tournament_status_enum_comparison_exp": { - "_eq": [ - 1637 - ], - "_in": [ - 1637 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 1637 - ], - "_nin": [ - 1637 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_status_insert_input": { - "description": [ - 85 - ], - "tournaments": [ - 5914 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_status_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_status_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_status_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1632 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_status_obj_rel_insert_input": { - "data": [ - 1639 - ], - "on_conflict": [ - 1644 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_status_on_conflict": { - "constraint": [ - 1636 - ], - "update_columns": [ - 1651 - ], - "where": [ - 1635 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_status_order_by": { - "description": [ - 3648 - ], - "tournaments_aggregate": [ - 5913 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_status_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_status_select_column": {}, - "e_tournament_status_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_status_stream_cursor_input": { - "initial_value": [ - 1650 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_status_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_tournament_status_update_column": {}, - "e_tournament_status_updates": { - "_set": [ - 1648 - ], - "where": [ - 1635 - ], - "__typename": [ - 85 - ] - }, - "e_utility_practice_access": { - "description": [ - 85 - ], - "utility_practice_sessions": [ - 6626, - { - "distinct_on": [ - 6650, - "[utility_practice_sessions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6648, - "[utility_practice_sessions_order_by!]" - ], - "where": [ - 6637 - ] - } - ], - "utility_practice_sessions_aggregate": [ - 6627, - { - "distinct_on": [ - 6650, - "[utility_practice_sessions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6648, - "[utility_practice_sessions_order_by!]" - ], - "where": [ - 6637 - ] - } - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_practice_access_aggregate": { - "aggregate": [ - 1655 - ], - "nodes": [ - 1653 - ], - "__typename": [ - 85 - ] - }, - "e_utility_practice_access_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 1667, - "[e_utility_practice_access_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1661 - ], - "min": [ - 1662 - ], - "__typename": [ - 85 - ] - }, - "e_utility_practice_access_bool_exp": { - "_and": [ - 1656 - ], - "_not": [ - 1656 - ], - "_or": [ - 1656 - ], - "description": [ - 87 - ], - "utility_practice_sessions": [ - 6637 - ], - "utility_practice_sessions_aggregate": [ - 6628 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_utility_practice_access_constraint": {}, - "e_utility_practice_access_enum": {}, - "e_utility_practice_access_enum_comparison_exp": { - "_eq": [ - 1658 - ], - "_in": [ - 1658 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 1658 - ], - "_nin": [ - 1658 - ], - "__typename": [ - 85 - ] - }, - "e_utility_practice_access_insert_input": { - "description": [ - 85 - ], - "utility_practice_sessions": [ - 6634 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_practice_access_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_practice_access_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_practice_access_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1653 - ], - "__typename": [ - 85 - ] - }, - "e_utility_practice_access_on_conflict": { - "constraint": [ - 1657 - ], - "update_columns": [ - 1671 - ], - "where": [ - 1656 - ], - "__typename": [ - 85 - ] - }, - "e_utility_practice_access_order_by": { - "description": [ - 3648 - ], - "utility_practice_sessions_aggregate": [ - 6633 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_utility_practice_access_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_practice_access_select_column": {}, - "e_utility_practice_access_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_practice_access_stream_cursor_input": { - "initial_value": [ - 1670 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_utility_practice_access_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_practice_access_update_column": {}, - "e_utility_practice_access_updates": { - "_set": [ - 1668 - ], - "where": [ - 1656 - ], - "__typename": [ - 85 - ] - }, - "e_utility_practice_statuses": { - "description": [ - 85 - ], - "utility_practice_sessions": [ - 6626, - { - "distinct_on": [ - 6650, - "[utility_practice_sessions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6648, - "[utility_practice_sessions_order_by!]" - ], - "where": [ - 6637 - ] - } - ], - "utility_practice_sessions_aggregate": [ - 6627, - { - "distinct_on": [ - 6650, - "[utility_practice_sessions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6648, - "[utility_practice_sessions_order_by!]" - ], - "where": [ - 6637 - ] - } - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_practice_statuses_aggregate": { - "aggregate": [ - 1675 - ], - "nodes": [ - 1673 - ], - "__typename": [ - 85 - ] - }, - "e_utility_practice_statuses_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 1688, - "[e_utility_practice_statuses_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1681 - ], - "min": [ - 1682 - ], - "__typename": [ - 85 - ] - }, - "e_utility_practice_statuses_bool_exp": { - "_and": [ - 1676 - ], - "_not": [ - 1676 - ], - "_or": [ - 1676 - ], - "description": [ - 87 - ], - "utility_practice_sessions": [ - 6637 - ], - "utility_practice_sessions_aggregate": [ - 6628 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_utility_practice_statuses_constraint": {}, - "e_utility_practice_statuses_enum": {}, - "e_utility_practice_statuses_enum_comparison_exp": { - "_eq": [ - 1678 - ], - "_in": [ - 1678 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 1678 - ], - "_nin": [ - 1678 - ], - "__typename": [ - 85 - ] - }, - "e_utility_practice_statuses_insert_input": { - "description": [ - 85 - ], - "utility_practice_sessions": [ - 6634 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_practice_statuses_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_practice_statuses_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_practice_statuses_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1673 - ], - "__typename": [ - 85 - ] - }, - "e_utility_practice_statuses_obj_rel_insert_input": { - "data": [ - 1680 - ], - "on_conflict": [ - 1685 - ], - "__typename": [ - 85 - ] - }, - "e_utility_practice_statuses_on_conflict": { - "constraint": [ - 1677 - ], - "update_columns": [ - 1692 - ], - "where": [ - 1676 - ], - "__typename": [ - 85 - ] - }, - "e_utility_practice_statuses_order_by": { - "description": [ - 3648 - ], - "utility_practice_sessions_aggregate": [ - 6633 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_utility_practice_statuses_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_practice_statuses_select_column": {}, - "e_utility_practice_statuses_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_practice_statuses_stream_cursor_input": { - "initial_value": [ - 1691 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_utility_practice_statuses_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_practice_statuses_update_column": {}, - "e_utility_practice_statuses_updates": { - "_set": [ - 1689 - ], - "where": [ - 1676 - ], - "__typename": [ - 85 - ] - }, - "e_utility_sources": { - "description": [ - 85 - ], - "utility_lineups": [ - 6420, - { - "distinct_on": [ - 6459, - "[utility_lineups_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6456, - "[utility_lineups_order_by!]" - ], - "where": [ - 6442 - ] - } - ], - "utility_lineups_aggregate": [ - 6421, - { - "distinct_on": [ - 6459, - "[utility_lineups_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6456, - "[utility_lineups_order_by!]" - ], - "where": [ - 6442 - ] - } - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_sources_aggregate": { - "aggregate": [ - 1696 - ], - "nodes": [ - 1694 - ], - "__typename": [ - 85 - ] - }, - "e_utility_sources_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 1708, - "[e_utility_sources_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1702 - ], - "min": [ - 1703 - ], - "__typename": [ - 85 - ] - }, - "e_utility_sources_bool_exp": { - "_and": [ - 1697 - ], - "_not": [ - 1697 - ], - "_or": [ - 1697 - ], - "description": [ - 87 - ], - "utility_lineups": [ - 6442 - ], - "utility_lineups_aggregate": [ - 6422 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_utility_sources_constraint": {}, - "e_utility_sources_enum": {}, - "e_utility_sources_enum_comparison_exp": { - "_eq": [ - 1699 - ], - "_in": [ - 1699 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 1699 - ], - "_nin": [ - 1699 - ], - "__typename": [ - 85 - ] - }, - "e_utility_sources_insert_input": { - "description": [ - 85 - ], - "utility_lineups": [ - 6439 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_sources_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_sources_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_sources_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1694 - ], - "__typename": [ - 85 - ] - }, - "e_utility_sources_on_conflict": { - "constraint": [ - 1698 - ], - "update_columns": [ - 1712 - ], - "where": [ - 1697 - ], - "__typename": [ - 85 - ] - }, - "e_utility_sources_order_by": { - "description": [ - 3648 - ], - "utility_lineups_aggregate": [ - 6437 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_utility_sources_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_sources_select_column": {}, - "e_utility_sources_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_sources_stream_cursor_input": { - "initial_value": [ - 1711 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_utility_sources_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_sources_update_column": {}, - "e_utility_sources_updates": { - "_set": [ - 1709 - ], - "where": [ - 1697 - ], - "__typename": [ - 85 - ] - }, - "e_utility_techniques": { - "description": [ - 85 - ], - "utility_lineups": [ - 6420, - { - "distinct_on": [ - 6459, - "[utility_lineups_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6456, - "[utility_lineups_order_by!]" - ], - "where": [ - 6442 - ] - } - ], - "utility_lineups_aggregate": [ - 6421, - { - "distinct_on": [ - 6459, - "[utility_lineups_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6456, - "[utility_lineups_order_by!]" - ], - "where": [ - 6442 - ] - } - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_techniques_aggregate": { - "aggregate": [ - 1716 - ], - "nodes": [ - 1714 - ], - "__typename": [ - 85 - ] - }, - "e_utility_techniques_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 1728, - "[e_utility_techniques_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1722 - ], - "min": [ - 1723 - ], - "__typename": [ - 85 - ] - }, - "e_utility_techniques_bool_exp": { - "_and": [ - 1717 - ], - "_not": [ - 1717 - ], - "_or": [ - 1717 - ], - "description": [ - 87 - ], - "utility_lineups": [ - 6442 - ], - "utility_lineups_aggregate": [ - 6422 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_utility_techniques_constraint": {}, - "e_utility_techniques_enum": {}, - "e_utility_techniques_enum_comparison_exp": { - "_eq": [ - 1719 - ], - "_in": [ - 1719 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 1719 - ], - "_nin": [ - 1719 - ], - "__typename": [ - 85 - ] - }, - "e_utility_techniques_insert_input": { - "description": [ - 85 - ], - "utility_lineups": [ - 6439 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_techniques_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_techniques_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_techniques_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1714 - ], - "__typename": [ - 85 - ] - }, - "e_utility_techniques_on_conflict": { - "constraint": [ - 1718 - ], - "update_columns": [ - 1732 - ], - "where": [ - 1717 - ], - "__typename": [ - 85 - ] - }, - "e_utility_techniques_order_by": { - "description": [ - 3648 - ], - "utility_lineups_aggregate": [ - 6437 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_utility_techniques_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_techniques_select_column": {}, - "e_utility_techniques_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_techniques_stream_cursor_input": { - "initial_value": [ - 1731 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_utility_techniques_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_techniques_update_column": {}, - "e_utility_techniques_updates": { - "_set": [ - 1729 - ], - "where": [ - 1717 - ], - "__typename": [ - 85 - ] - }, - "e_utility_throw_strengths": { - "description": [ - 85 - ], - "utility_lineups": [ - 6420, - { - "distinct_on": [ - 6459, - "[utility_lineups_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6456, - "[utility_lineups_order_by!]" - ], - "where": [ - 6442 - ] - } - ], - "utility_lineups_aggregate": [ - 6421, - { - "distinct_on": [ - 6459, - "[utility_lineups_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6456, - "[utility_lineups_order_by!]" - ], - "where": [ - 6442 - ] - } - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_throw_strengths_aggregate": { - "aggregate": [ - 1736 - ], - "nodes": [ - 1734 - ], - "__typename": [ - 85 - ] - }, - "e_utility_throw_strengths_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 1748, - "[e_utility_throw_strengths_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1742 - ], - "min": [ - 1743 - ], - "__typename": [ - 85 - ] - }, - "e_utility_throw_strengths_bool_exp": { - "_and": [ - 1737 - ], - "_not": [ - 1737 - ], - "_or": [ - 1737 - ], - "description": [ - 87 - ], - "utility_lineups": [ - 6442 - ], - "utility_lineups_aggregate": [ - 6422 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_utility_throw_strengths_constraint": {}, - "e_utility_throw_strengths_enum": {}, - "e_utility_throw_strengths_enum_comparison_exp": { - "_eq": [ - 1739 - ], - "_in": [ - 1739 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 1739 - ], - "_nin": [ - 1739 - ], - "__typename": [ - 85 - ] - }, - "e_utility_throw_strengths_insert_input": { - "description": [ - 85 - ], - "utility_lineups": [ - 6439 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_throw_strengths_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_throw_strengths_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_throw_strengths_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1734 - ], - "__typename": [ - 85 - ] - }, - "e_utility_throw_strengths_on_conflict": { - "constraint": [ - 1738 - ], - "update_columns": [ - 1752 - ], - "where": [ - 1737 - ], - "__typename": [ - 85 - ] - }, - "e_utility_throw_strengths_order_by": { - "description": [ - 3648 - ], - "utility_lineups_aggregate": [ - 6437 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_utility_throw_strengths_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_throw_strengths_select_column": {}, - "e_utility_throw_strengths_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_throw_strengths_stream_cursor_input": { - "initial_value": [ - 1751 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_utility_throw_strengths_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_throw_strengths_update_column": {}, - "e_utility_throw_strengths_updates": { - "_set": [ - 1749 - ], - "where": [ - 1737 - ], - "__typename": [ - 85 - ] - }, - "e_utility_types": { - "description": [ - 85 - ], - "player_utilities": [ - 4532, - { - "distinct_on": [ - 4553, - "[player_utility_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4551, - "[player_utility_order_by!]" - ], - "where": [ - 4541 - ] - } - ], - "player_utilities_aggregate": [ - 4533, - { - "distinct_on": [ - 4553, - "[player_utility_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4551, - "[player_utility_order_by!]" - ], - "where": [ - 4541 - ] - } - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_types_aggregate": { - "aggregate": [ - 1756 - ], - "nodes": [ - 1754 - ], - "__typename": [ - 85 - ] - }, - "e_utility_types_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 1768, - "[e_utility_types_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1762 - ], - "min": [ - 1763 - ], - "__typename": [ - 85 - ] - }, - "e_utility_types_bool_exp": { - "_and": [ - 1757 - ], - "_not": [ - 1757 - ], - "_or": [ - 1757 - ], - "description": [ - 87 - ], - "player_utilities": [ - 4541 - ], - "player_utilities_aggregate": [ - 4534 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_utility_types_constraint": {}, - "e_utility_types_enum": {}, - "e_utility_types_enum_comparison_exp": { - "_eq": [ - 1759 - ], - "_in": [ - 1759 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 1759 - ], - "_nin": [ - 1759 - ], - "__typename": [ - 85 - ] - }, - "e_utility_types_insert_input": { - "description": [ - 85 - ], - "player_utilities": [ - 4538 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_types_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_types_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_types_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1754 - ], - "__typename": [ - 85 - ] - }, - "e_utility_types_on_conflict": { - "constraint": [ - 1758 - ], - "update_columns": [ - 1772 - ], - "where": [ - 1757 - ], - "__typename": [ - 85 - ] - }, - "e_utility_types_order_by": { - "description": [ - 3648 - ], - "player_utilities_aggregate": [ - 4537 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_utility_types_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_types_select_column": {}, - "e_utility_types_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_types_stream_cursor_input": { - "initial_value": [ - 1771 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_utility_types_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_types_update_column": {}, - "e_utility_types_updates": { - "_set": [ - 1769 - ], - "where": [ - 1757 - ], - "__typename": [ - 85 - ] - }, - "e_utility_visibility": { - "description": [ - 85 - ], - "utility_lineups": [ - 6420, - { - "distinct_on": [ - 6459, - "[utility_lineups_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6456, - "[utility_lineups_order_by!]" - ], - "where": [ - 6442 - ] - } - ], - "utility_lineups_aggregate": [ - 6421, - { - "distinct_on": [ - 6459, - "[utility_lineups_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6456, - "[utility_lineups_order_by!]" - ], - "where": [ - 6442 - ] - } - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_visibility_aggregate": { - "aggregate": [ - 1776 - ], - "nodes": [ - 1774 - ], - "__typename": [ - 85 - ] - }, - "e_utility_visibility_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 1788, - "[e_utility_visibility_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1782 - ], - "min": [ - 1783 - ], - "__typename": [ - 85 - ] - }, - "e_utility_visibility_bool_exp": { - "_and": [ - 1777 - ], - "_not": [ - 1777 - ], - "_or": [ - 1777 - ], - "description": [ - 87 - ], - "utility_lineups": [ - 6442 - ], - "utility_lineups_aggregate": [ - 6422 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_utility_visibility_constraint": {}, - "e_utility_visibility_enum": {}, - "e_utility_visibility_enum_comparison_exp": { - "_eq": [ - 1779 - ], - "_in": [ - 1779 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 1779 - ], - "_nin": [ - 1779 - ], - "__typename": [ - 85 - ] - }, - "e_utility_visibility_insert_input": { - "description": [ - 85 - ], - "utility_lineups": [ - 6439 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_visibility_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_visibility_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_visibility_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1774 - ], - "__typename": [ - 85 - ] - }, - "e_utility_visibility_on_conflict": { - "constraint": [ - 1778 - ], - "update_columns": [ - 1792 - ], - "where": [ - 1777 - ], - "__typename": [ - 85 - ] - }, - "e_utility_visibility_order_by": { - "description": [ - 3648 - ], - "utility_lineups_aggregate": [ - 6437 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_utility_visibility_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_visibility_select_column": {}, - "e_utility_visibility_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_visibility_stream_cursor_input": { - "initial_value": [ - 1791 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_utility_visibility_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_utility_visibility_update_column": {}, - "e_utility_visibility_updates": { - "_set": [ - 1789 - ], - "where": [ - 1777 - ], - "__typename": [ - 85 - ] - }, - "e_veto_pick_types": { - "description": [ - 85 - ], - "match_veto_picks": [ - 3220, - { - "distinct_on": [ - 3240, - "[match_map_veto_picks_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3238, - "[match_map_veto_picks_order_by!]" - ], - "where": [ - 3229 - ] - } - ], - "match_veto_picks_aggregate": [ - 3221, - { - "distinct_on": [ - 3240, - "[match_map_veto_picks_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3238, - "[match_map_veto_picks_order_by!]" - ], - "where": [ - 3229 - ] - } - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_veto_pick_types_aggregate": { - "aggregate": [ - 1796 - ], - "nodes": [ - 1794 - ], - "__typename": [ - 85 - ] - }, - "e_veto_pick_types_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 1808, - "[e_veto_pick_types_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1802 - ], - "min": [ - 1803 - ], - "__typename": [ - 85 - ] - }, - "e_veto_pick_types_bool_exp": { - "_and": [ - 1797 - ], - "_not": [ - 1797 - ], - "_or": [ - 1797 - ], - "description": [ - 87 - ], - "match_veto_picks": [ - 3229 - ], - "match_veto_picks_aggregate": [ - 3222 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_veto_pick_types_constraint": {}, - "e_veto_pick_types_enum": {}, - "e_veto_pick_types_enum_comparison_exp": { - "_eq": [ - 1799 - ], - "_in": [ - 1799 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 1799 - ], - "_nin": [ - 1799 - ], - "__typename": [ - 85 - ] - }, - "e_veto_pick_types_insert_input": { - "description": [ - 85 - ], - "match_veto_picks": [ - 3228 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_veto_pick_types_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_veto_pick_types_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_veto_pick_types_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1794 - ], - "__typename": [ - 85 - ] - }, - "e_veto_pick_types_on_conflict": { - "constraint": [ - 1798 - ], - "update_columns": [ - 1812 - ], - "where": [ - 1797 - ], - "__typename": [ - 85 - ] - }, - "e_veto_pick_types_order_by": { - "description": [ - 3648 - ], - "match_veto_picks_aggregate": [ - 3227 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_veto_pick_types_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_veto_pick_types_select_column": {}, - "e_veto_pick_types_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_veto_pick_types_stream_cursor_input": { - "initial_value": [ - 1811 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_veto_pick_types_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_veto_pick_types_update_column": {}, - "e_veto_pick_types_updates": { - "_set": [ - 1809 - ], - "where": [ - 1797 - ], - "__typename": [ - 85 - ] - }, - "e_winning_reasons": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_winning_reasons_aggregate": { - "aggregate": [ - 1816 - ], - "nodes": [ - 1814 - ], - "__typename": [ - 85 - ] - }, - "e_winning_reasons_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 1828, - "[e_winning_reasons_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1822 - ], - "min": [ - 1823 - ], - "__typename": [ - 85 - ] - }, - "e_winning_reasons_bool_exp": { - "_and": [ - 1817 - ], - "_not": [ - 1817 - ], - "_or": [ - 1817 - ], - "description": [ - 87 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "e_winning_reasons_constraint": {}, - "e_winning_reasons_enum": {}, - "e_winning_reasons_enum_comparison_exp": { - "_eq": [ - 1819 - ], - "_in": [ - 1819 - ], - "_is_null": [ - 6 - ], - "_neq": [ - 1819 - ], - "_nin": [ - 1819 - ], - "__typename": [ - 85 - ] - }, - "e_winning_reasons_insert_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_winning_reasons_max_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_winning_reasons_min_fields": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_winning_reasons_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1814 - ], - "__typename": [ - 85 - ] - }, - "e_winning_reasons_on_conflict": { - "constraint": [ - 1818 - ], - "update_columns": [ - 1832 - ], - "where": [ - 1817 - ], - "__typename": [ - 85 - ] - }, - "e_winning_reasons_order_by": { - "description": [ - 3648 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "e_winning_reasons_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_winning_reasons_select_column": {}, - "e_winning_reasons_set_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_winning_reasons_stream_cursor_input": { - "initial_value": [ - 1831 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "e_winning_reasons_stream_cursor_value_input": { - "description": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "e_winning_reasons_update_column": {}, - "e_winning_reasons_updates": { - "_set": [ - 1829 - ], - "where": [ - 1817 - ], - "__typename": [ - 85 - ] - }, - "event_match_links": { - "created_at": [ - 5243 - ], - "event": [ - 2065 - ], - "event_id": [ - 6672 - ], - "match": [ - 3432 - ], - "match_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "event_match_links_aggregate": { - "aggregate": [ - 1836 - ], - "nodes": [ - 1834 - ], - "__typename": [ - 85 - ] - }, - "event_match_links_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 1846, - "[event_match_links_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1840 - ], - "min": [ - 1841 - ], - "__typename": [ - 85 - ] - }, - "event_match_links_bool_exp": { - "_and": [ - 1837 - ], - "_not": [ - 1837 - ], - "_or": [ - 1837 - ], - "created_at": [ - 5244 - ], - "event": [ - 2069 - ], - "event_id": [ - 6674 - ], - "match": [ - 3443 - ], - "match_id": [ - 6674 - ], - "__typename": [ - 85 - ] - }, - "event_match_links_constraint": {}, - "event_match_links_insert_input": { - "created_at": [ - 5243 - ], - "event": [ - 2076 - ], - "event_id": [ - 6672 - ], - "match": [ - 3452 - ], - "match_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "event_match_links_max_fields": { - "created_at": [ - 5243 - ], - "event_id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "event_match_links_min_fields": { - "created_at": [ - 5243 - ], - "event_id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "event_match_links_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1834 - ], - "__typename": [ - 85 - ] - }, - "event_match_links_on_conflict": { - "constraint": [ - 1838 - ], - "update_columns": [ - 1850 - ], - "where": [ - 1837 - ], - "__typename": [ - 85 - ] - }, - "event_match_links_order_by": { - "created_at": [ - 3648 - ], - "event": [ - 2078 - ], - "event_id": [ - 3648 - ], - "match": [ - 3454 - ], - "match_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_match_links_pk_columns_input": { - "event_id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "event_match_links_select_column": {}, - "event_match_links_set_input": { - "created_at": [ - 5243 - ], - "event_id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "event_match_links_stream_cursor_input": { - "initial_value": [ - 1849 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "event_match_links_stream_cursor_value_input": { - "created_at": [ - 5243 - ], - "event_id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "event_match_links_update_column": {}, - "event_match_links_updates": { - "_set": [ - 1847 - ], - "where": [ - 1837 - ], - "__typename": [ - 85 - ] - }, - "event_media": { - "created_at": [ - 5243 - ], - "event": [ - 2065 - ], - "event_id": [ - 6672 - ], - "external_url": [ - 85 - ], - "filename": [ - 85 - ], - "id": [ - 6672 - ], - "mime_type": [ - 85 - ], - "players": [ - 1874, - { - "distinct_on": [ - 1895, - "[event_media_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1893, - "[event_media_players_order_by!]" - ], - "where": [ - 1883 - ] - } - ], - "players_aggregate": [ - 1875, - { - "distinct_on": [ - 1895, - "[event_media_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1893, - "[event_media_players_order_by!]" - ], - "where": [ - 1883 - ] - } - ], - "size": [ - 312 - ], - "thumbnail_filename": [ - 85 - ], - "title": [ - 85 - ], - "uploader": [ - 4606 - ], - "uploader_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "event_media_aggregate": { - "aggregate": [ - 1856 - ], - "nodes": [ - 1852 - ], - "__typename": [ - 85 - ] - }, - "event_media_aggregate_bool_exp": { - "count": [ - 1855 - ], - "__typename": [ - 85 - ] - }, - "event_media_aggregate_bool_exp_count": { - "arguments": [ - 1915 - ], - "distinct": [ - 6 - ], - "filter": [ - 1861 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "event_media_aggregate_fields": { - "avg": [ - 1859 - ], - "count": [ - 41, - { - "columns": [ - 1915, - "[event_media_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1865 - ], - "min": [ - 1867 - ], - "stddev": [ - 1917 - ], - "stddev_pop": [ - 1919 - ], - "stddev_samp": [ - 1921 - ], - "sum": [ - 1925 - ], - "var_pop": [ - 1929 - ], - "var_samp": [ - 1931 - ], - "variance": [ - 1933 - ], - "__typename": [ - 85 - ] - }, - "event_media_aggregate_order_by": { - "avg": [ - 1860 - ], - "count": [ - 3648 - ], - "max": [ - 1866 - ], - "min": [ - 1868 - ], - "stddev": [ - 1918 - ], - "stddev_pop": [ - 1920 - ], - "stddev_samp": [ - 1922 - ], - "sum": [ - 1926 - ], - "var_pop": [ - 1930 - ], - "var_samp": [ - 1932 - ], - "variance": [ - 1934 - ], - "__typename": [ - 85 - ] - }, - "event_media_arr_rel_insert_input": { - "data": [ - 1864 - ], - "on_conflict": [ - 1871 - ], - "__typename": [ - 85 - ] - }, - "event_media_avg_fields": { - "size": [ - 32 - ], - "uploader_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "event_media_avg_order_by": { - "size": [ - 3648 - ], - "uploader_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_media_bool_exp": { - "_and": [ - 1861 - ], - "_not": [ - 1861 - ], - "_or": [ - 1861 - ], - "created_at": [ - 5244 - ], - "event": [ - 2069 - ], - "event_id": [ - 6674 - ], - "external_url": [ - 87 - ], - "filename": [ - 87 - ], - "id": [ - 6674 - ], - "mime_type": [ - 87 - ], - "players": [ - 1883 - ], - "players_aggregate": [ - 1876 - ], - "size": [ - 314 - ], - "thumbnail_filename": [ - 87 - ], - "title": [ - 87 - ], - "uploader": [ - 4610 - ], - "uploader_steam_id": [ - 314 - ], - "__typename": [ - 85 - ] - }, - "event_media_constraint": {}, - "event_media_inc_input": { - "size": [ - 312 - ], - "uploader_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "event_media_insert_input": { - "created_at": [ - 5243 - ], - "event": [ - 2076 - ], - "event_id": [ - 6672 - ], - "external_url": [ - 85 - ], - "filename": [ - 85 - ], - "id": [ - 6672 - ], - "mime_type": [ - 85 - ], - "players": [ - 1880 - ], - "size": [ - 312 - ], - "thumbnail_filename": [ - 85 - ], - "title": [ - 85 - ], - "uploader": [ - 4617 - ], - "uploader_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "event_media_max_fields": { - "created_at": [ - 5243 - ], - "event_id": [ - 6672 - ], - "external_url": [ - 85 - ], - "filename": [ - 85 - ], - "id": [ - 6672 - ], - "mime_type": [ - 85 - ], - "size": [ - 312 - ], - "thumbnail_filename": [ - 85 - ], - "title": [ - 85 - ], - "uploader_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "event_media_max_order_by": { - "created_at": [ - 3648 - ], - "event_id": [ - 3648 - ], - "external_url": [ - 3648 - ], - "filename": [ - 3648 - ], - "id": [ - 3648 - ], - "mime_type": [ - 3648 - ], - "size": [ - 3648 - ], - "thumbnail_filename": [ - 3648 - ], - "title": [ - 3648 - ], - "uploader_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_media_min_fields": { - "created_at": [ - 5243 - ], - "event_id": [ - 6672 - ], - "external_url": [ - 85 - ], - "filename": [ - 85 - ], - "id": [ - 6672 - ], - "mime_type": [ - 85 - ], - "size": [ - 312 - ], - "thumbnail_filename": [ - 85 - ], - "title": [ - 85 - ], - "uploader_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "event_media_min_order_by": { - "created_at": [ - 3648 - ], - "event_id": [ - 3648 - ], - "external_url": [ - 3648 - ], - "filename": [ - 3648 - ], - "id": [ - 3648 - ], - "mime_type": [ - 3648 - ], - "size": [ - 3648 - ], - "thumbnail_filename": [ - 3648 - ], - "title": [ - 3648 - ], - "uploader_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_media_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1852 - ], - "__typename": [ - 85 - ] - }, - "event_media_obj_rel_insert_input": { - "data": [ - 1864 - ], - "on_conflict": [ - 1871 - ], - "__typename": [ - 85 - ] - }, - "event_media_on_conflict": { - "constraint": [ - 1862 - ], - "update_columns": [ - 1927 - ], - "where": [ - 1861 - ], - "__typename": [ - 85 - ] - }, - "event_media_order_by": { - "created_at": [ - 3648 - ], - "event": [ - 2078 - ], - "event_id": [ - 3648 - ], - "external_url": [ - 3648 - ], - "filename": [ - 3648 - ], - "id": [ - 3648 - ], - "mime_type": [ - 3648 - ], - "players_aggregate": [ - 1879 - ], - "size": [ - 3648 - ], - "thumbnail_filename": [ - 3648 - ], - "title": [ - 3648 - ], - "uploader": [ - 4619 - ], - "uploader_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_media_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "event_media_players": { - "created_at": [ - 5243 - ], - "media": [ - 1852 - ], - "media_id": [ - 6672 - ], - "player": [ - 4606 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "event_media_players_aggregate": { - "aggregate": [ - 1878 - ], - "nodes": [ - 1874 - ], - "__typename": [ - 85 - ] - }, - "event_media_players_aggregate_bool_exp": { - "count": [ - 1877 - ], - "__typename": [ - 85 - ] - }, - "event_media_players_aggregate_bool_exp_count": { - "arguments": [ - 1895 - ], - "distinct": [ - 6 - ], - "filter": [ - 1883 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "event_media_players_aggregate_fields": { - "avg": [ - 1881 - ], - "count": [ - 41, - { - "columns": [ - 1895, - "[event_media_players_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1887 - ], - "min": [ - 1889 - ], - "stddev": [ - 1897 - ], - "stddev_pop": [ - 1899 - ], - "stddev_samp": [ - 1901 - ], - "sum": [ - 1905 - ], - "var_pop": [ - 1909 - ], - "var_samp": [ - 1911 - ], - "variance": [ - 1913 - ], - "__typename": [ - 85 - ] - }, - "event_media_players_aggregate_order_by": { - "avg": [ - 1882 - ], - "count": [ - 3648 - ], - "max": [ - 1888 - ], - "min": [ - 1890 - ], - "stddev": [ - 1898 - ], - "stddev_pop": [ - 1900 - ], - "stddev_samp": [ - 1902 - ], - "sum": [ - 1906 - ], - "var_pop": [ - 1910 - ], - "var_samp": [ - 1912 - ], - "variance": [ - 1914 - ], - "__typename": [ - 85 - ] - }, - "event_media_players_arr_rel_insert_input": { - "data": [ - 1886 - ], - "on_conflict": [ - 1892 - ], - "__typename": [ - 85 - ] - }, - "event_media_players_avg_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "event_media_players_avg_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_media_players_bool_exp": { - "_and": [ - 1883 - ], - "_not": [ - 1883 - ], - "_or": [ - 1883 - ], - "created_at": [ - 5244 - ], - "media": [ - 1861 - ], - "media_id": [ - 6674 - ], - "player": [ - 4610 - ], - "steam_id": [ - 314 - ], - "__typename": [ - 85 - ] - }, - "event_media_players_constraint": {}, - "event_media_players_inc_input": { - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "event_media_players_insert_input": { - "created_at": [ - 5243 - ], - "media": [ - 1870 - ], - "media_id": [ - 6672 - ], - "player": [ - 4617 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "event_media_players_max_fields": { - "created_at": [ - 5243 - ], - "media_id": [ - 6672 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "event_media_players_max_order_by": { - "created_at": [ - 3648 - ], - "media_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_media_players_min_fields": { - "created_at": [ - 5243 - ], - "media_id": [ - 6672 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "event_media_players_min_order_by": { - "created_at": [ - 3648 - ], - "media_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_media_players_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1874 - ], - "__typename": [ - 85 - ] - }, - "event_media_players_on_conflict": { - "constraint": [ - 1884 - ], - "update_columns": [ - 1907 - ], - "where": [ - 1883 - ], - "__typename": [ - 85 - ] - }, - "event_media_players_order_by": { - "created_at": [ - 3648 - ], - "media": [ - 1872 - ], - "media_id": [ - 3648 - ], - "player": [ - 4619 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_media_players_pk_columns_input": { - "media_id": [ - 6672 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "event_media_players_select_column": {}, - "event_media_players_set_input": { - "created_at": [ - 5243 - ], - "media_id": [ - 6672 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "event_media_players_stddev_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "event_media_players_stddev_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_media_players_stddev_pop_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "event_media_players_stddev_pop_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_media_players_stddev_samp_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "event_media_players_stddev_samp_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_media_players_stream_cursor_input": { - "initial_value": [ - 1904 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "event_media_players_stream_cursor_value_input": { - "created_at": [ - 5243 - ], - "media_id": [ - 6672 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "event_media_players_sum_fields": { - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "event_media_players_sum_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_media_players_update_column": {}, - "event_media_players_updates": { - "_inc": [ - 1885 - ], - "_set": [ - 1896 - ], - "where": [ - 1883 - ], - "__typename": [ - 85 - ] - }, - "event_media_players_var_pop_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "event_media_players_var_pop_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_media_players_var_samp_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "event_media_players_var_samp_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_media_players_variance_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "event_media_players_variance_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_media_select_column": {}, - "event_media_set_input": { - "created_at": [ - 5243 - ], - "event_id": [ - 6672 - ], - "external_url": [ - 85 - ], - "filename": [ - 85 - ], - "id": [ - 6672 - ], - "mime_type": [ - 85 - ], - "size": [ - 312 - ], - "thumbnail_filename": [ - 85 - ], - "title": [ - 85 - ], - "uploader_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "event_media_stddev_fields": { - "size": [ - 32 - ], - "uploader_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "event_media_stddev_order_by": { - "size": [ - 3648 - ], - "uploader_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_media_stddev_pop_fields": { - "size": [ - 32 - ], - "uploader_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "event_media_stddev_pop_order_by": { - "size": [ - 3648 - ], - "uploader_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_media_stddev_samp_fields": { - "size": [ - 32 - ], - "uploader_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "event_media_stddev_samp_order_by": { - "size": [ - 3648 - ], - "uploader_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_media_stream_cursor_input": { - "initial_value": [ - 1924 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "event_media_stream_cursor_value_input": { - "created_at": [ - 5243 - ], - "event_id": [ - 6672 - ], - "external_url": [ - 85 - ], - "filename": [ - 85 - ], - "id": [ - 6672 - ], - "mime_type": [ - 85 - ], - "size": [ - 312 - ], - "thumbnail_filename": [ - 85 - ], - "title": [ - 85 - ], - "uploader_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "event_media_sum_fields": { - "size": [ - 312 - ], - "uploader_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "event_media_sum_order_by": { - "size": [ - 3648 - ], - "uploader_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_media_update_column": {}, - "event_media_updates": { - "_inc": [ - 1863 - ], - "_set": [ - 1916 - ], - "where": [ - 1861 - ], - "__typename": [ - 85 - ] - }, - "event_media_var_pop_fields": { - "size": [ - 32 - ], - "uploader_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "event_media_var_pop_order_by": { - "size": [ - 3648 - ], - "uploader_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_media_var_samp_fields": { - "size": [ - 32 - ], - "uploader_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "event_media_var_samp_order_by": { - "size": [ - 3648 - ], - "uploader_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_media_variance_fields": { - "size": [ - 32 - ], - "uploader_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "event_media_variance_order_by": { - "size": [ - 3648 - ], - "uploader_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_organizers": { - "created_at": [ - 5243 - ], - "event": [ - 2065 - ], - "event_id": [ - 6672 - ], - "organizer": [ - 4606 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "event_organizers_aggregate": { - "aggregate": [ - 1939 - ], - "nodes": [ - 1935 - ], - "__typename": [ - 85 - ] - }, - "event_organizers_aggregate_bool_exp": { - "count": [ - 1938 - ], - "__typename": [ - 85 - ] - }, - "event_organizers_aggregate_bool_exp_count": { - "arguments": [ - 1956 - ], - "distinct": [ - 6 - ], - "filter": [ - 1944 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "event_organizers_aggregate_fields": { - "avg": [ - 1942 - ], - "count": [ - 41, - { - "columns": [ - 1956, - "[event_organizers_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1948 - ], - "min": [ - 1950 - ], - "stddev": [ - 1958 - ], - "stddev_pop": [ - 1960 - ], - "stddev_samp": [ - 1962 - ], - "sum": [ - 1966 - ], - "var_pop": [ - 1970 - ], - "var_samp": [ - 1972 - ], - "variance": [ - 1974 - ], - "__typename": [ - 85 - ] - }, - "event_organizers_aggregate_order_by": { - "avg": [ - 1943 - ], - "count": [ - 3648 - ], - "max": [ - 1949 - ], - "min": [ - 1951 - ], - "stddev": [ - 1959 - ], - "stddev_pop": [ - 1961 - ], - "stddev_samp": [ - 1963 - ], - "sum": [ - 1967 - ], - "var_pop": [ - 1971 - ], - "var_samp": [ - 1973 - ], - "variance": [ - 1975 - ], - "__typename": [ - 85 - ] - }, - "event_organizers_arr_rel_insert_input": { - "data": [ - 1947 - ], - "on_conflict": [ - 1953 - ], - "__typename": [ - 85 - ] - }, - "event_organizers_avg_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "event_organizers_avg_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_organizers_bool_exp": { - "_and": [ - 1944 - ], - "_not": [ - 1944 - ], - "_or": [ - 1944 - ], - "created_at": [ - 5244 - ], - "event": [ - 2069 - ], - "event_id": [ - 6674 - ], - "organizer": [ - 4610 - ], - "steam_id": [ - 314 - ], - "__typename": [ - 85 - ] - }, - "event_organizers_constraint": {}, - "event_organizers_inc_input": { - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "event_organizers_insert_input": { - "created_at": [ - 5243 - ], - "event": [ - 2076 - ], - "event_id": [ - 6672 - ], - "organizer": [ - 4617 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "event_organizers_max_fields": { - "created_at": [ - 5243 - ], - "event_id": [ - 6672 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "event_organizers_max_order_by": { - "created_at": [ - 3648 - ], - "event_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_organizers_min_fields": { - "created_at": [ - 5243 - ], - "event_id": [ - 6672 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "event_organizers_min_order_by": { - "created_at": [ - 3648 - ], - "event_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_organizers_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1935 - ], - "__typename": [ - 85 - ] - }, - "event_organizers_on_conflict": { - "constraint": [ - 1945 - ], - "update_columns": [ - 1968 - ], - "where": [ - 1944 - ], - "__typename": [ - 85 - ] - }, - "event_organizers_order_by": { - "created_at": [ - 3648 - ], - "event": [ - 2078 - ], - "event_id": [ - 3648 - ], - "organizer": [ - 4619 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_organizers_pk_columns_input": { - "event_id": [ - 6672 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "event_organizers_select_column": {}, - "event_organizers_set_input": { - "created_at": [ - 5243 - ], - "event_id": [ - 6672 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "event_organizers_stddev_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "event_organizers_stddev_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_organizers_stddev_pop_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "event_organizers_stddev_pop_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_organizers_stddev_samp_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "event_organizers_stddev_samp_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_organizers_stream_cursor_input": { - "initial_value": [ - 1965 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "event_organizers_stream_cursor_value_input": { - "created_at": [ - 5243 - ], - "event_id": [ - 6672 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "event_organizers_sum_fields": { - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "event_organizers_sum_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_organizers_update_column": {}, - "event_organizers_updates": { - "_inc": [ - 1946 - ], - "_set": [ - 1957 - ], - "where": [ - 1944 - ], - "__typename": [ - 85 - ] - }, - "event_organizers_var_pop_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "event_organizers_var_pop_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_organizers_var_samp_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "event_organizers_var_samp_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_organizers_variance_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "event_organizers_variance_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_players": { - "created_at": [ - 5243 - ], - "event": [ - 2065 - ], - "event_id": [ - 6672 - ], - "player": [ - 4606 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "event_players_aggregate": { - "aggregate": [ - 1980 - ], - "nodes": [ - 1976 - ], - "__typename": [ - 85 - ] - }, - "event_players_aggregate_bool_exp": { - "count": [ - 1979 - ], - "__typename": [ - 85 - ] - }, - "event_players_aggregate_bool_exp_count": { - "arguments": [ - 1997 - ], - "distinct": [ - 6 - ], - "filter": [ - 1985 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "event_players_aggregate_fields": { - "avg": [ - 1983 - ], - "count": [ - 41, - { - "columns": [ - 1997, - "[event_players_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 1989 - ], - "min": [ - 1991 - ], - "stddev": [ - 1999 - ], - "stddev_pop": [ - 2001 - ], - "stddev_samp": [ - 2003 - ], - "sum": [ - 2007 - ], - "var_pop": [ - 2011 - ], - "var_samp": [ - 2013 - ], - "variance": [ - 2015 - ], - "__typename": [ - 85 - ] - }, - "event_players_aggregate_order_by": { - "avg": [ - 1984 - ], - "count": [ - 3648 - ], - "max": [ - 1990 - ], - "min": [ - 1992 - ], - "stddev": [ - 2000 - ], - "stddev_pop": [ - 2002 - ], - "stddev_samp": [ - 2004 - ], - "sum": [ - 2008 - ], - "var_pop": [ - 2012 - ], - "var_samp": [ - 2014 - ], - "variance": [ - 2016 - ], - "__typename": [ - 85 - ] - }, - "event_players_arr_rel_insert_input": { - "data": [ - 1988 - ], - "on_conflict": [ - 1994 - ], - "__typename": [ - 85 - ] - }, - "event_players_avg_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "event_players_avg_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_players_bool_exp": { - "_and": [ - 1985 - ], - "_not": [ - 1985 - ], - "_or": [ - 1985 - ], - "created_at": [ - 5244 - ], - "event": [ - 2069 - ], - "event_id": [ - 6674 - ], - "player": [ - 4610 - ], - "steam_id": [ - 314 - ], - "__typename": [ - 85 - ] - }, - "event_players_constraint": {}, - "event_players_inc_input": { - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "event_players_insert_input": { - "created_at": [ - 5243 - ], - "event": [ - 2076 - ], - "event_id": [ - 6672 - ], - "player": [ - 4617 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "event_players_max_fields": { - "created_at": [ - 5243 - ], - "event_id": [ - 6672 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "event_players_max_order_by": { - "created_at": [ - 3648 - ], - "event_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_players_min_fields": { - "created_at": [ - 5243 - ], - "event_id": [ - 6672 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "event_players_min_order_by": { - "created_at": [ - 3648 - ], - "event_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_players_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 1976 - ], - "__typename": [ - 85 - ] - }, - "event_players_on_conflict": { - "constraint": [ - 1986 - ], - "update_columns": [ - 2009 - ], - "where": [ - 1985 - ], - "__typename": [ - 85 - ] - }, - "event_players_order_by": { - "created_at": [ - 3648 - ], - "event": [ - 2078 - ], - "event_id": [ - 3648 - ], - "player": [ - 4619 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_players_pk_columns_input": { - "event_id": [ - 6672 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "event_players_select_column": {}, - "event_players_set_input": { - "created_at": [ - 5243 - ], - "event_id": [ - 6672 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "event_players_stddev_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "event_players_stddev_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_players_stddev_pop_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "event_players_stddev_pop_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_players_stddev_samp_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "event_players_stddev_samp_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_players_stream_cursor_input": { - "initial_value": [ - 2006 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "event_players_stream_cursor_value_input": { - "created_at": [ - 5243 - ], - "event_id": [ - 6672 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "event_players_sum_fields": { - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "event_players_sum_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_players_update_column": {}, - "event_players_updates": { - "_inc": [ - 1987 - ], - "_set": [ - 1998 - ], - "where": [ - 1985 - ], - "__typename": [ - 85 - ] - }, - "event_players_var_pop_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "event_players_var_pop_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_players_var_samp_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "event_players_var_samp_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_players_variance_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "event_players_variance_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_teams": { - "created_at": [ - 5243 - ], - "event": [ - 2065 - ], - "event_id": [ - 6672 - ], - "team": [ - 5194 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "event_teams_aggregate": { - "aggregate": [ - 2021 - ], - "nodes": [ - 2017 - ], - "__typename": [ - 85 - ] - }, - "event_teams_aggregate_bool_exp": { - "count": [ - 2020 - ], - "__typename": [ - 85 - ] - }, - "event_teams_aggregate_bool_exp_count": { - "arguments": [ - 2035 - ], - "distinct": [ - 6 - ], - "filter": [ - 2024 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "event_teams_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 2035, - "[event_teams_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 2027 - ], - "min": [ - 2029 - ], - "__typename": [ - 85 - ] - }, - "event_teams_aggregate_order_by": { - "count": [ - 3648 - ], - "max": [ - 2028 - ], - "min": [ - 2030 - ], - "__typename": [ - 85 - ] - }, - "event_teams_arr_rel_insert_input": { - "data": [ - 2026 - ], - "on_conflict": [ - 2032 - ], - "__typename": [ - 85 - ] - }, - "event_teams_bool_exp": { - "_and": [ - 2024 - ], - "_not": [ - 2024 - ], - "_or": [ - 2024 - ], - "created_at": [ - 5244 - ], - "event": [ - 2069 - ], - "event_id": [ - 6674 - ], - "team": [ - 5205 - ], - "team_id": [ - 6674 - ], - "__typename": [ - 85 - ] - }, - "event_teams_constraint": {}, - "event_teams_insert_input": { - "created_at": [ - 5243 - ], - "event": [ - 2076 - ], - "event_id": [ - 6672 - ], - "team": [ - 5214 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "event_teams_max_fields": { - "created_at": [ - 5243 - ], - "event_id": [ - 6672 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "event_teams_max_order_by": { - "created_at": [ - 3648 - ], - "event_id": [ - 3648 - ], - "team_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_teams_min_fields": { - "created_at": [ - 5243 - ], - "event_id": [ - 6672 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "event_teams_min_order_by": { - "created_at": [ - 3648 - ], - "event_id": [ - 3648 - ], - "team_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_teams_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 2017 - ], - "__typename": [ - 85 - ] - }, - "event_teams_on_conflict": { - "constraint": [ - 2025 - ], - "update_columns": [ - 2039 - ], - "where": [ - 2024 - ], - "__typename": [ - 85 - ] - }, - "event_teams_order_by": { - "created_at": [ - 3648 - ], - "event": [ - 2078 - ], - "event_id": [ - 3648 - ], - "team": [ - 5216 - ], - "team_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_teams_pk_columns_input": { - "event_id": [ - 6672 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "event_teams_select_column": {}, - "event_teams_set_input": { - "created_at": [ - 5243 - ], - "event_id": [ - 6672 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "event_teams_stream_cursor_input": { - "initial_value": [ - 2038 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "event_teams_stream_cursor_value_input": { - "created_at": [ - 5243 - ], - "event_id": [ - 6672 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "event_teams_update_column": {}, - "event_teams_updates": { - "_set": [ - 2036 - ], - "where": [ - 2024 - ], - "__typename": [ - 85 - ] - }, - "event_tournaments": { - "created_at": [ - 5243 - ], - "event": [ - 2065 - ], - "event_id": [ - 6672 - ], - "tournament": [ - 5896 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "event_tournaments_aggregate": { - "aggregate": [ - 2045 - ], - "nodes": [ - 2041 - ], - "__typename": [ - 85 - ] - }, - "event_tournaments_aggregate_bool_exp": { - "count": [ - 2044 - ], - "__typename": [ - 85 - ] - }, - "event_tournaments_aggregate_bool_exp_count": { - "arguments": [ - 2059 - ], - "distinct": [ - 6 - ], - "filter": [ - 2048 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "event_tournaments_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 2059, - "[event_tournaments_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 2051 - ], - "min": [ - 2053 - ], - "__typename": [ - 85 - ] - }, - "event_tournaments_aggregate_order_by": { - "count": [ - 3648 - ], - "max": [ - 2052 - ], - "min": [ - 2054 - ], - "__typename": [ - 85 - ] - }, - "event_tournaments_arr_rel_insert_input": { - "data": [ - 2050 - ], - "on_conflict": [ - 2056 - ], - "__typename": [ - 85 - ] - }, - "event_tournaments_bool_exp": { - "_and": [ - 2048 - ], - "_not": [ - 2048 - ], - "_or": [ - 2048 - ], - "created_at": [ - 5244 - ], - "event": [ - 2069 - ], - "event_id": [ - 6674 - ], - "tournament": [ - 5917 - ], - "tournament_id": [ - 6674 - ], - "__typename": [ - 85 - ] - }, - "event_tournaments_constraint": {}, - "event_tournaments_insert_input": { - "created_at": [ - 5243 - ], - "event": [ - 2076 - ], - "event_id": [ - 6672 - ], - "tournament": [ - 5926 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "event_tournaments_max_fields": { - "created_at": [ - 5243 - ], - "event_id": [ - 6672 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "event_tournaments_max_order_by": { - "created_at": [ - 3648 - ], - "event_id": [ - 3648 - ], - "tournament_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_tournaments_min_fields": { - "created_at": [ - 5243 - ], - "event_id": [ - 6672 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "event_tournaments_min_order_by": { - "created_at": [ - 3648 - ], - "event_id": [ - 3648 - ], - "tournament_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_tournaments_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 2041 - ], - "__typename": [ - 85 - ] - }, - "event_tournaments_on_conflict": { - "constraint": [ - 2049 - ], - "update_columns": [ - 2063 - ], - "where": [ - 2048 - ], - "__typename": [ - 85 - ] - }, - "event_tournaments_order_by": { - "created_at": [ - 3648 - ], - "event": [ - 2078 - ], - "event_id": [ - 3648 - ], - "tournament": [ - 5928 - ], - "tournament_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "event_tournaments_pk_columns_input": { - "event_id": [ - 6672 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "event_tournaments_select_column": {}, - "event_tournaments_set_input": { - "created_at": [ - 5243 - ], - "event_id": [ - 6672 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "event_tournaments_stream_cursor_input": { - "initial_value": [ - 2062 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "event_tournaments_stream_cursor_value_input": { - "created_at": [ - 5243 - ], - "event_id": [ - 6672 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "event_tournaments_update_column": {}, - "event_tournaments_updates": { - "_set": [ - 2060 - ], - "where": [ - 2048 - ], - "__typename": [ - 85 - ] - }, - "events": { - "awards": [ - 243, - { - "distinct_on": [ - 264, - "[award_recipients_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 262, - "[award_recipients_order_by!]" - ], - "where": [ - 252 - ] - } - ], - "awards_aggregate": [ - 244, - { - "distinct_on": [ - 264, - "[award_recipients_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 262, - "[award_recipients_order_by!]" - ], - "where": [ - 252 - ] - } - ], - "banner": [ - 1852 - ], - "banner_media_id": [ - 6672 - ], - "can_upload_media": [ - 6 - ], - "can_view": [ - 6 - ], - "created_at": [ - 5243 - ], - "description": [ - 85 - ], - "ends_at": [ - 5243 - ], - "hide_creator_organizer": [ - 6 - ], - "id": [ - 6672 - ], - "is_organizer": [ - 6 - ], - "media": [ - 1852, - { - "distinct_on": [ - 1915, - "[event_media_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1872, - "[event_media_order_by!]" - ], - "where": [ - 1861 - ] - } - ], - "media_access": [ - 815 - ], - "media_aggregate": [ - 1853, - { - "distinct_on": [ - 1915, - "[event_media_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1872, - "[event_media_order_by!]" - ], - "where": [ - 1861 - ] - } - ], - "name": [ - 85 - ], - "organizer": [ - 4606 - ], - "organizer_steam_id": [ - 312 - ], - "organizers": [ - 1935, - { - "distinct_on": [ - 1956, - "[event_organizers_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1954, - "[event_organizers_order_by!]" - ], - "where": [ - 1944 - ] - } - ], - "organizers_aggregate": [ - 1936, - { - "distinct_on": [ - 1956, - "[event_organizers_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1954, - "[event_organizers_order_by!]" - ], - "where": [ - 1944 - ] - } - ], - "player_stats": [ - 6675, - { - "distinct_on": [ - 6701, - "[v_event_player_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6700, - "[v_event_player_stats_order_by!]" - ], - "where": [ - 6694 - ] - } - ], - "player_stats_aggregate": [ - 6676, - { - "distinct_on": [ - 6701, - "[v_event_player_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6700, - "[v_event_player_stats_order_by!]" - ], - "where": [ - 6694 - ] - } - ], - "players": [ - 1976, - { - "distinct_on": [ - 1997, - "[event_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1995, - "[event_players_order_by!]" - ], - "where": [ - 1985 - ] - } - ], - "players_aggregate": [ - 1977, - { - "distinct_on": [ - 1997, - "[event_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1995, - "[event_players_order_by!]" - ], - "where": [ - 1985 - ] - } - ], - "starts_at": [ - 5243 - ], - "teams": [ - 2017, - { - "distinct_on": [ - 2035, - "[event_teams_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2033, - "[event_teams_order_by!]" - ], - "where": [ - 2024 - ] - } - ], - "teams_aggregate": [ - 2018, - { - "distinct_on": [ - 2035, - "[event_teams_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2033, - "[event_teams_order_by!]" - ], - "where": [ - 2024 - ] - } - ], - "tournaments": [ - 2041, - { - "distinct_on": [ - 2059, - "[event_tournaments_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2057, - "[event_tournaments_order_by!]" - ], - "where": [ - 2048 - ] - } - ], - "tournaments_aggregate": [ - 2042, - { - "distinct_on": [ - 2059, - "[event_tournaments_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2057, - "[event_tournaments_order_by!]" - ], - "where": [ - 2048 - ] - } - ], - "visibility": [ - 835 - ], - "__typename": [ - 85 - ] - }, - "events_aggregate": { - "aggregate": [ - 2067 - ], - "nodes": [ - 2065 - ], - "__typename": [ - 85 - ] - }, - "events_aggregate_fields": { - "avg": [ - 2068 - ], - "count": [ - 41, - { - "columns": [ - 2080, - "[events_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 2073 - ], - "min": [ - 2074 - ], - "stddev": [ - 2082 - ], - "stddev_pop": [ - 2083 - ], - "stddev_samp": [ - 2084 - ], - "sum": [ - 2087 - ], - "var_pop": [ - 2090 - ], - "var_samp": [ - 2091 - ], - "variance": [ - 2092 - ], - "__typename": [ - 85 - ] - }, - "events_avg_fields": { - "organizer_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "events_bool_exp": { - "_and": [ - 2069 - ], - "_not": [ - 2069 - ], - "_or": [ - 2069 - ], - "awards": [ - 252 - ], - "awards_aggregate": [ - 245 - ], - "banner": [ - 1861 - ], - "banner_media_id": [ - 6674 - ], - "can_upload_media": [ - 7 - ], - "can_view": [ - 7 - ], - "created_at": [ - 5244 - ], - "description": [ - 87 - ], - "ends_at": [ - 5244 - ], - "hide_creator_organizer": [ - 7 - ], - "id": [ - 6674 - ], - "is_organizer": [ - 7 - ], - "media": [ - 1861 - ], - "media_access": [ - 816 - ], - "media_aggregate": [ - 1854 - ], - "name": [ - 87 - ], - "organizer": [ - 4610 - ], - "organizer_steam_id": [ - 314 - ], - "organizers": [ - 1944 - ], - "organizers_aggregate": [ - 1937 - ], - "player_stats": [ - 6694 - ], - "player_stats_aggregate": [ - 6677 - ], - "players": [ - 1985 - ], - "players_aggregate": [ - 1978 - ], - "starts_at": [ - 5244 - ], - "teams": [ - 2024 - ], - "teams_aggregate": [ - 2019 - ], - "tournaments": [ - 2048 - ], - "tournaments_aggregate": [ - 2043 - ], - "visibility": [ - 836 - ], - "__typename": [ - 85 - ] - }, - "events_constraint": {}, - "events_inc_input": { - "organizer_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "events_insert_input": { - "awards": [ - 249 - ], - "banner": [ - 1870 - ], - "banner_media_id": [ - 6672 - ], - "created_at": [ - 5243 - ], - "description": [ - 85 - ], - "ends_at": [ - 5243 - ], - "hide_creator_organizer": [ - 6 - ], - "id": [ - 6672 - ], - "media": [ - 1858 - ], - "media_access": [ - 815 - ], - "name": [ - 85 - ], - "organizer": [ - 4617 - ], - "organizer_steam_id": [ - 312 - ], - "organizers": [ - 1941 - ], - "player_stats": [ - 6691 - ], - "players": [ - 1982 - ], - "starts_at": [ - 5243 - ], - "teams": [ - 2023 - ], - "tournaments": [ - 2047 - ], - "visibility": [ - 835 - ], - "__typename": [ - 85 - ] - }, - "events_max_fields": { - "banner_media_id": [ - 6672 - ], - "created_at": [ - 5243 - ], - "description": [ - 85 - ], - "ends_at": [ - 5243 - ], - "id": [ - 6672 - ], - "name": [ - 85 - ], - "organizer_steam_id": [ - 312 - ], - "starts_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "events_min_fields": { - "banner_media_id": [ - 6672 - ], - "created_at": [ - 5243 - ], - "description": [ - 85 - ], - "ends_at": [ - 5243 - ], - "id": [ - 6672 - ], - "name": [ - 85 - ], - "organizer_steam_id": [ - 312 - ], - "starts_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "events_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 2065 - ], - "__typename": [ - 85 - ] - }, - "events_obj_rel_insert_input": { - "data": [ - 2072 - ], - "on_conflict": [ - 2077 - ], - "__typename": [ - 85 - ] - }, - "events_on_conflict": { - "constraint": [ - 2070 - ], - "update_columns": [ - 2088 - ], - "where": [ - 2069 - ], - "__typename": [ - 85 - ] - }, - "events_order_by": { - "awards_aggregate": [ - 248 - ], - "banner": [ - 1872 - ], - "banner_media_id": [ - 3648 - ], - "can_upload_media": [ - 3648 - ], - "can_view": [ - 3648 - ], - "created_at": [ - 3648 - ], - "description": [ - 3648 - ], - "ends_at": [ - 3648 - ], - "hide_creator_organizer": [ - 3648 - ], - "id": [ - 3648 - ], - "is_organizer": [ - 3648 - ], - "media_access": [ - 3648 - ], - "media_aggregate": [ - 1857 - ], - "name": [ - 3648 - ], - "organizer": [ - 4619 - ], - "organizer_steam_id": [ - 3648 - ], - "organizers_aggregate": [ - 1940 - ], - "player_stats_aggregate": [ - 6690 - ], - "players_aggregate": [ - 1981 - ], - "starts_at": [ - 3648 - ], - "teams_aggregate": [ - 2022 - ], - "tournaments_aggregate": [ - 2046 - ], - "visibility": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "events_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "events_select_column": {}, - "events_set_input": { - "banner_media_id": [ - 6672 - ], - "created_at": [ - 5243 - ], - "description": [ - 85 - ], - "ends_at": [ - 5243 - ], - "hide_creator_organizer": [ - 6 - ], - "id": [ - 6672 - ], - "media_access": [ - 815 - ], - "name": [ - 85 - ], - "organizer_steam_id": [ - 312 - ], - "starts_at": [ - 5243 - ], - "visibility": [ - 835 - ], - "__typename": [ - 85 - ] - }, - "events_stddev_fields": { - "organizer_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "events_stddev_pop_fields": { - "organizer_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "events_stddev_samp_fields": { - "organizer_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "events_stream_cursor_input": { - "initial_value": [ - 2086 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "events_stream_cursor_value_input": { - "banner_media_id": [ - 6672 - ], - "created_at": [ - 5243 - ], - "description": [ - 85 - ], - "ends_at": [ - 5243 - ], - "hide_creator_organizer": [ - 6 - ], - "id": [ - 6672 - ], - "media_access": [ - 815 - ], - "name": [ - 85 - ], - "organizer_steam_id": [ - 312 - ], - "starts_at": [ - 5243 - ], - "visibility": [ - 835 - ], - "__typename": [ - 85 - ] - }, - "events_sum_fields": { - "organizer_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "events_update_column": {}, - "events_updates": { - "_inc": [ - 2071 - ], - "_set": [ - 2081 - ], - "where": [ - 2069 - ], - "__typename": [ - 85 - ] - }, - "events_var_pop_fields": { - "organizer_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "events_var_samp_fields": { - "organizer_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "events_variance_fields": { - "organizer_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "float8": {}, - "float8_comparison_exp": { - "_eq": [ - 2093 - ], - "_gt": [ - 2093 - ], - "_gte": [ - 2093 - ], - "_in": [ - 2093 - ], - "_is_null": [ - 6 - ], - "_lt": [ - 2093 - ], - "_lte": [ - 2093 - ], - "_neq": [ - 2093 - ], - "_nin": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "friends": { - "e_status": [ - 850 - ], - "other_player_steam_id": [ - 312 - ], - "player_steam_id": [ - 312 - ], - "status": [ - 855 - ], - "__typename": [ - 85 - ] - }, - "friends_aggregate": { - "aggregate": [ - 2097 - ], - "nodes": [ - 2095 - ], - "__typename": [ - 85 - ] - }, - "friends_aggregate_fields": { - "avg": [ - 2098 - ], - "count": [ - 41, - { - "columns": [ - 2109, - "[friends_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 2103 - ], - "min": [ - 2104 - ], - "stddev": [ - 2111 - ], - "stddev_pop": [ - 2112 - ], - "stddev_samp": [ - 2113 - ], - "sum": [ - 2116 - ], - "var_pop": [ - 2119 - ], - "var_samp": [ - 2120 - ], - "variance": [ - 2121 - ], - "__typename": [ - 85 - ] - }, - "friends_avg_fields": { - "other_player_steam_id": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "friends_bool_exp": { - "_and": [ - 2099 - ], - "_not": [ - 2099 - ], - "_or": [ - 2099 - ], - "e_status": [ - 853 - ], - "other_player_steam_id": [ - 314 - ], - "player_steam_id": [ - 314 - ], - "status": [ - 856 - ], - "__typename": [ - 85 - ] - }, - "friends_constraint": {}, - "friends_inc_input": { - "other_player_steam_id": [ - 312 - ], - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "friends_insert_input": { - "e_status": [ - 861 - ], - "other_player_steam_id": [ - 312 - ], - "player_steam_id": [ - 312 - ], - "status": [ - 855 - ], - "__typename": [ - 85 - ] - }, - "friends_max_fields": { - "other_player_steam_id": [ - 312 - ], - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "friends_min_fields": { - "other_player_steam_id": [ - 312 - ], - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "friends_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 2095 - ], - "__typename": [ - 85 - ] - }, - "friends_on_conflict": { - "constraint": [ - 2100 - ], - "update_columns": [ - 2117 - ], - "where": [ - 2099 - ], - "__typename": [ - 85 - ] - }, - "friends_order_by": { - "e_status": [ - 863 - ], - "other_player_steam_id": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "status": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "friends_pk_columns_input": { - "other_player_steam_id": [ - 312 - ], - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "friends_select_column": {}, - "friends_set_input": { - "other_player_steam_id": [ - 312 - ], - "player_steam_id": [ - 312 - ], - "status": [ - 855 - ], - "__typename": [ - 85 - ] - }, - "friends_stddev_fields": { - "other_player_steam_id": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "friends_stddev_pop_fields": { - "other_player_steam_id": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "friends_stddev_samp_fields": { - "other_player_steam_id": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "friends_stream_cursor_input": { - "initial_value": [ - 2115 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "friends_stream_cursor_value_input": { - "other_player_steam_id": [ - 312 - ], - "player_steam_id": [ - 312 - ], - "status": [ - 855 - ], - "__typename": [ - 85 - ] - }, - "friends_sum_fields": { - "other_player_steam_id": [ - 312 - ], - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "friends_update_column": {}, - "friends_updates": { - "_inc": [ - 2101 - ], - "_set": [ - 2110 - ], - "where": [ - 2099 - ], - "__typename": [ - 85 - ] - }, - "friends_var_pop_fields": { - "other_player_steam_id": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "friends_var_samp_fields": { - "other_player_steam_id": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "friends_variance_fields": { - "other_player_steam_id": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "game_mode_plugins": { - "config": [ - 2439, - { - "path": [ - 85 - ] - } - ], - "game_mode": [ - 2172 - ], - "game_mode_id": [ - 6672 - ], - "load_order": [ - 41 - ], - "plugin": [ - 2254 - ], - "plugin_slug": [ - 85 - ], - "required": [ - 6 - ], - "__typename": [ - 85 - ] - }, - "game_mode_plugins_aggregate": { - "aggregate": [ - 2128 - ], - "nodes": [ - 2122 - ], - "__typename": [ - 85 - ] - }, - "game_mode_plugins_aggregate_bool_exp": { - "bool_and": [ - 2125 - ], - "bool_or": [ - 2126 - ], - "count": [ - 2127 - ], - "__typename": [ - 85 - ] - }, - "game_mode_plugins_aggregate_bool_exp_bool_and": { - "arguments": [ - 2151 - ], - "distinct": [ - 6 - ], - "filter": [ - 2134 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "game_mode_plugins_aggregate_bool_exp_bool_or": { - "arguments": [ - 2152 - ], - "distinct": [ - 6 - ], - "filter": [ - 2134 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "game_mode_plugins_aggregate_bool_exp_count": { - "arguments": [ - 2150 - ], - "distinct": [ - 6 - ], - "filter": [ - 2134 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "game_mode_plugins_aggregate_fields": { - "avg": [ - 2132 - ], - "count": [ - 41, - { - "columns": [ - 2150, - "[game_mode_plugins_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 2141 - ], - "min": [ - 2143 - ], - "stddev": [ - 2154 - ], - "stddev_pop": [ - 2156 - ], - "stddev_samp": [ - 2158 - ], - "sum": [ - 2162 - ], - "var_pop": [ - 2166 - ], - "var_samp": [ - 2168 - ], - "variance": [ - 2170 - ], - "__typename": [ - 85 - ] - }, - "game_mode_plugins_aggregate_order_by": { - "avg": [ - 2133 - ], - "count": [ - 3648 - ], - "max": [ - 2142 - ], - "min": [ - 2144 - ], - "stddev": [ - 2155 - ], - "stddev_pop": [ - 2157 - ], - "stddev_samp": [ - 2159 - ], - "sum": [ - 2163 - ], - "var_pop": [ - 2167 - ], - "var_samp": [ - 2169 - ], - "variance": [ - 2171 - ], - "__typename": [ - 85 - ] - }, - "game_mode_plugins_append_input": { - "config": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "game_mode_plugins_arr_rel_insert_input": { - "data": [ - 2140 - ], - "on_conflict": [ - 2146 - ], - "__typename": [ - 85 - ] - }, - "game_mode_plugins_avg_fields": { - "load_order": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "game_mode_plugins_avg_order_by": { - "load_order": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "game_mode_plugins_bool_exp": { - "_and": [ - 2134 - ], - "_not": [ - 2134 - ], - "_or": [ - 2134 - ], - "config": [ - 2441 - ], - "game_mode": [ - 2175 - ], - "game_mode_id": [ - 6674 - ], - "load_order": [ - 42 - ], - "plugin": [ - 2259 - ], - "plugin_slug": [ - 87 - ], - "required": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "game_mode_plugins_constraint": {}, - "game_mode_plugins_delete_at_path_input": { - "config": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "game_mode_plugins_delete_elem_input": { - "config": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "game_mode_plugins_delete_key_input": { - "config": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "game_mode_plugins_inc_input": { - "load_order": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "game_mode_plugins_insert_input": { - "config": [ - 2439 - ], - "game_mode": [ - 2181 - ], - "game_mode_id": [ - 6672 - ], - "load_order": [ - 41 - ], - "plugin": [ - 2268 - ], - "plugin_slug": [ - 85 - ], - "required": [ - 6 - ], - "__typename": [ - 85 - ] - }, - "game_mode_plugins_max_fields": { - "game_mode_id": [ - 6672 - ], - "load_order": [ - 41 - ], - "plugin_slug": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "game_mode_plugins_max_order_by": { - "game_mode_id": [ - 3648 - ], - "load_order": [ - 3648 - ], - "plugin_slug": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "game_mode_plugins_min_fields": { - "game_mode_id": [ - 6672 - ], - "load_order": [ - 41 - ], - "plugin_slug": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "game_mode_plugins_min_order_by": { - "game_mode_id": [ - 3648 - ], - "load_order": [ - 3648 - ], - "plugin_slug": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "game_mode_plugins_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 2122 - ], - "__typename": [ - 85 - ] - }, - "game_mode_plugins_on_conflict": { - "constraint": [ - 2135 - ], - "update_columns": [ - 2164 - ], - "where": [ - 2134 - ], - "__typename": [ - 85 - ] - }, - "game_mode_plugins_order_by": { - "config": [ - 3648 - ], - "game_mode": [ - 2183 - ], - "game_mode_id": [ - 3648 - ], - "load_order": [ - 3648 - ], - "plugin": [ - 2270 - ], - "plugin_slug": [ - 3648 - ], - "required": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "game_mode_plugins_pk_columns_input": { - "game_mode_id": [ - 6672 - ], - "plugin_slug": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "game_mode_plugins_prepend_input": { - "config": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "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": [ - 2439 - ], - "game_mode_id": [ - 6672 - ], - "load_order": [ - 41 - ], - "plugin_slug": [ - 85 - ], - "required": [ - 6 - ], - "__typename": [ - 85 - ] - }, - "game_mode_plugins_stddev_fields": { - "load_order": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "game_mode_plugins_stddev_order_by": { - "load_order": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "game_mode_plugins_stddev_pop_fields": { - "load_order": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "game_mode_plugins_stddev_pop_order_by": { - "load_order": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "game_mode_plugins_stddev_samp_fields": { - "load_order": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "game_mode_plugins_stddev_samp_order_by": { - "load_order": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "game_mode_plugins_stream_cursor_input": { - "initial_value": [ - 2161 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "game_mode_plugins_stream_cursor_value_input": { - "config": [ - 2439 - ], - "game_mode_id": [ - 6672 - ], - "load_order": [ - 41 - ], - "plugin_slug": [ - 85 - ], - "required": [ - 6 - ], - "__typename": [ - 85 - ] - }, - "game_mode_plugins_sum_fields": { - "load_order": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "game_mode_plugins_sum_order_by": { - "load_order": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "game_mode_plugins_update_column": {}, - "game_mode_plugins_updates": { - "_append": [ - 2130 - ], - "_delete_at_path": [ - 2136 - ], - "_delete_elem": [ - 2137 - ], - "_delete_key": [ - 2138 - ], - "_inc": [ - 2139 - ], - "_prepend": [ - 2149 - ], - "_set": [ - 2153 - ], - "where": [ - 2134 - ], - "__typename": [ - 85 - ] - }, - "game_mode_plugins_var_pop_fields": { - "load_order": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "game_mode_plugins_var_pop_order_by": { - "load_order": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "game_mode_plugins_var_samp_fields": { - "load_order": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "game_mode_plugins_var_samp_order_by": { - "load_order": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "game_mode_plugins_variance_fields": { - "load_order": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "game_mode_plugins_variance_order_by": { - "load_order": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "game_modes": { - "archived_at": [ - 5243 - ], - "cfg": [ - 85 - ], - "competitive_safe": [ - 6 - ], - "created_at": [ - 5243 - ], - "description": [ - 85 - ], - "enabled": [ - 6 - ], - "extra_game_params": [ - 85 - ], - "icon": [ - 85 - ], - "id": [ - 6672 - ], - "match_options": [ - 3290, - { - "distinct_on": [ - 3314, - "[match_options_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3312, - "[match_options_order_by!]" - ], - "where": [ - 3301 - ] - } - ], - "match_options_aggregate": [ - 3291, - { - "distinct_on": [ - 3314, - "[match_options_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3312, - "[match_options_order_by!]" - ], - "where": [ - 3301 - ] - } - ], - "name": [ - 85 - ], - "plugins": [ - 2122, - { - "distinct_on": [ - 2150, - "[game_mode_plugins_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2147, - "[game_mode_plugins_order_by!]" - ], - "where": [ - 2134 - ] - } - ], - "plugins_aggregate": [ - 2123, - { - "distinct_on": [ - 2150, - "[game_mode_plugins_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2147, - "[game_mode_plugins_order_by!]" - ], - "where": [ - 2134 - ] - } - ], - "runtime_conflicts": [ - 2439, - { - "path": [ - 85 - ] - } - ], - "slug": [ - 85 - ], - "supported_runtimes": [ - 2439, - { - "path": [ - 85 - ] - } - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "game_modes_aggregate": { - "aggregate": [ - 2174 - ], - "nodes": [ - 2172 - ], - "__typename": [ - 85 - ] - }, - "game_modes_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 2185, - "[game_modes_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 2178 - ], - "min": [ - 2179 - ], - "__typename": [ - 85 - ] - }, - "game_modes_bool_exp": { - "_and": [ - 2175 - ], - "_not": [ - 2175 - ], - "_or": [ - 2175 - ], - "archived_at": [ - 5244 - ], - "cfg": [ - 87 - ], - "competitive_safe": [ - 7 - ], - "created_at": [ - 5244 - ], - "description": [ - 87 - ], - "enabled": [ - 7 - ], - "extra_game_params": [ - 87 - ], - "icon": [ - 87 - ], - "id": [ - 6674 - ], - "match_options": [ - 3301 - ], - "match_options_aggregate": [ - 3292 - ], - "name": [ - 87 - ], - "plugins": [ - 2134 - ], - "plugins_aggregate": [ - 2124 - ], - "runtime_conflicts": [ - 2441 - ], - "slug": [ - 87 - ], - "supported_runtimes": [ - 2441 - ], - "updated_at": [ - 5244 - ], - "__typename": [ - 85 - ] - }, - "game_modes_constraint": {}, - "game_modes_insert_input": { - "archived_at": [ - 5243 - ], - "cfg": [ - 85 - ], - "competitive_safe": [ - 6 - ], - "created_at": [ - 5243 - ], - "description": [ - 85 - ], - "enabled": [ - 6 - ], - "extra_game_params": [ - 85 - ], - "icon": [ - 85 - ], - "id": [ - 6672 - ], - "match_options": [ - 3298 - ], - "name": [ - 85 - ], - "plugins": [ - 2131 - ], - "slug": [ - 85 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "game_modes_max_fields": { - "archived_at": [ - 5243 - ], - "cfg": [ - 85 - ], - "created_at": [ - 5243 - ], - "description": [ - 85 - ], - "extra_game_params": [ - 85 - ], - "icon": [ - 85 - ], - "id": [ - 6672 - ], - "name": [ - 85 - ], - "slug": [ - 85 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "game_modes_min_fields": { - "archived_at": [ - 5243 - ], - "cfg": [ - 85 - ], - "created_at": [ - 5243 - ], - "description": [ - 85 - ], - "extra_game_params": [ - 85 - ], - "icon": [ - 85 - ], - "id": [ - 6672 - ], - "name": [ - 85 - ], - "slug": [ - 85 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "game_modes_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 2172 - ], - "__typename": [ - 85 - ] - }, - "game_modes_obj_rel_insert_input": { - "data": [ - 2177 - ], - "on_conflict": [ - 2182 - ], - "__typename": [ - 85 - ] - }, - "game_modes_on_conflict": { - "constraint": [ - 2176 - ], - "update_columns": [ - 2189 - ], - "where": [ - 2175 - ], - "__typename": [ - 85 - ] - }, - "game_modes_order_by": { - "archived_at": [ - 3648 - ], - "cfg": [ - 3648 - ], - "competitive_safe": [ - 3648 - ], - "created_at": [ - 3648 - ], - "description": [ - 3648 - ], - "enabled": [ - 3648 - ], - "extra_game_params": [ - 3648 - ], - "icon": [ - 3648 - ], - "id": [ - 3648 - ], - "match_options_aggregate": [ - 3297 - ], - "name": [ - 3648 - ], - "plugins_aggregate": [ - 2129 - ], - "runtime_conflicts": [ - 3648 - ], - "slug": [ - 3648 - ], - "supported_runtimes": [ - 3648 - ], - "updated_at": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "game_modes_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "game_modes_select_column": {}, - "game_modes_set_input": { - "archived_at": [ - 5243 - ], - "cfg": [ - 85 - ], - "competitive_safe": [ - 6 - ], - "created_at": [ - 5243 - ], - "description": [ - 85 - ], - "enabled": [ - 6 - ], - "extra_game_params": [ - 85 - ], - "icon": [ - 85 - ], - "id": [ - 6672 - ], - "name": [ - 85 - ], - "slug": [ - 85 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "game_modes_stream_cursor_input": { - "initial_value": [ - 2188 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "game_modes_stream_cursor_value_input": { - "archived_at": [ - 5243 - ], - "cfg": [ - 85 - ], - "competitive_safe": [ - 6 - ], - "created_at": [ - 5243 - ], - "description": [ - 85 - ], - "enabled": [ - 6 - ], - "extra_game_params": [ - 85 - ], - "icon": [ - 85 - ], - "id": [ - 6672 - ], - "name": [ - 85 - ], - "slug": [ - 85 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "game_modes_update_column": {}, - "game_modes_updates": { - "_set": [ - 2186 - ], - "where": [ - 2175 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_installs": { - "cfg": [ - 85 - ], - "channel": [ - 896 - ], - "created_at": [ - 5243 - ], - "disable_server_guidelines": [ - 6 - ], - "enabled": [ - 6 - ], - "load_custom": [ - 6 - ], - "load_ranked": [ - 6 - ], - "load_tournaments": [ - 6 - ], - "plugin": [ - 2254 - ], - "plugin_slug": [ - 85 - ], - "updated_at": [ - 5243 - ], - "version": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_installs_aggregate": { - "aggregate": [ - 2193 - ], - "nodes": [ - 2191 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_installs_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 2203, - "[game_plugin_installs_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 2197 - ], - "min": [ - 2198 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_installs_bool_exp": { - "_and": [ - 2194 - ], - "_not": [ - 2194 - ], - "_or": [ - 2194 - ], - "cfg": [ - 87 - ], - "channel": [ - 897 - ], - "created_at": [ - 5244 - ], - "disable_server_guidelines": [ - 7 - ], - "enabled": [ - 7 - ], - "load_custom": [ - 7 - ], - "load_ranked": [ - 7 - ], - "load_tournaments": [ - 7 - ], - "plugin": [ - 2259 - ], - "plugin_slug": [ - 87 - ], - "updated_at": [ - 5244 - ], - "version": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_installs_constraint": {}, - "game_plugin_installs_insert_input": { - "cfg": [ - 85 - ], - "channel": [ - 896 - ], - "created_at": [ - 5243 - ], - "disable_server_guidelines": [ - 6 - ], - "enabled": [ - 6 - ], - "load_custom": [ - 6 - ], - "load_ranked": [ - 6 - ], - "load_tournaments": [ - 6 - ], - "plugin": [ - 2268 - ], - "plugin_slug": [ - 85 - ], - "updated_at": [ - 5243 - ], - "version": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_installs_max_fields": { - "cfg": [ - 85 - ], - "created_at": [ - 5243 - ], - "plugin_slug": [ - 85 - ], - "updated_at": [ - 5243 - ], - "version": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_installs_min_fields": { - "cfg": [ - 85 - ], - "created_at": [ - 5243 - ], - "plugin_slug": [ - 85 - ], - "updated_at": [ - 5243 - ], - "version": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_installs_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 2191 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_installs_on_conflict": { - "constraint": [ - 2195 - ], - "update_columns": [ - 2207 - ], - "where": [ - 2194 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_installs_order_by": { - "cfg": [ - 3648 - ], - "channel": [ - 3648 - ], - "created_at": [ - 3648 - ], - "disable_server_guidelines": [ - 3648 - ], - "enabled": [ - 3648 - ], - "load_custom": [ - 3648 - ], - "load_ranked": [ - 3648 - ], - "load_tournaments": [ - 3648 - ], - "plugin": [ - 2270 - ], - "plugin_slug": [ - 3648 - ], - "updated_at": [ - 3648 - ], - "version": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_installs_pk_columns_input": { - "plugin_slug": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_installs_select_column": {}, - "game_plugin_installs_set_input": { - "cfg": [ - 85 - ], - "channel": [ - 896 - ], - "created_at": [ - 5243 - ], - "disable_server_guidelines": [ - 6 - ], - "enabled": [ - 6 - ], - "load_custom": [ - 6 - ], - "load_ranked": [ - 6 - ], - "load_tournaments": [ - 6 - ], - "plugin_slug": [ - 85 - ], - "updated_at": [ - 5243 - ], - "version": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_installs_stream_cursor_input": { - "initial_value": [ - 2206 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_installs_stream_cursor_value_input": { - "cfg": [ - 85 - ], - "channel": [ - 896 - ], - "created_at": [ - 5243 - ], - "disable_server_guidelines": [ - 6 - ], - "enabled": [ - 6 - ], - "load_custom": [ - 6 - ], - "load_ranked": [ - 6 - ], - "load_tournaments": [ - 6 - ], - "plugin_slug": [ - 85 - ], - "updated_at": [ - 5243 - ], - "version": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_installs_update_column": {}, - "game_plugin_installs_updates": { - "_set": [ - 2204 - ], - "where": [ - 2194 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_versions": { - "install_path": [ - 85 - ], - "layout": [ - 85 - ], - "plugin": [ - 2254 - ], - "plugin_slug": [ - 85 - ], - "prerelease": [ - 6 - ], - "published_at": [ - 5243 - ], - "runtime": [ - 1306 - ], - "sha256": [ - 85 - ], - "size": [ - 41 - ], - "url": [ - 85 - ], - "version": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_versions_aggregate": { - "aggregate": [ - 2215 - ], - "nodes": [ - 2209 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_versions_aggregate_bool_exp": { - "bool_and": [ - 2212 - ], - "bool_or": [ - 2213 - ], - "count": [ - 2214 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_versions_aggregate_bool_exp_bool_and": { - "arguments": [ - 2233 - ], - "distinct": [ - 6 - ], - "filter": [ - 2220 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_versions_aggregate_bool_exp_bool_or": { - "arguments": [ - 2234 - ], - "distinct": [ - 6 - ], - "filter": [ - 2220 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_versions_aggregate_bool_exp_count": { - "arguments": [ - 2232 - ], - "distinct": [ - 6 - ], - "filter": [ - 2220 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_versions_aggregate_fields": { - "avg": [ - 2218 - ], - "count": [ - 41, - { - "columns": [ - 2232, - "[game_plugin_versions_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 2224 - ], - "min": [ - 2226 - ], - "stddev": [ - 2236 - ], - "stddev_pop": [ - 2238 - ], - "stddev_samp": [ - 2240 - ], - "sum": [ - 2244 - ], - "var_pop": [ - 2248 - ], - "var_samp": [ - 2250 - ], - "variance": [ - 2252 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_versions_aggregate_order_by": { - "avg": [ - 2219 - ], - "count": [ - 3648 - ], - "max": [ - 2225 - ], - "min": [ - 2227 - ], - "stddev": [ - 2237 - ], - "stddev_pop": [ - 2239 - ], - "stddev_samp": [ - 2241 - ], - "sum": [ - 2245 - ], - "var_pop": [ - 2249 - ], - "var_samp": [ - 2251 - ], - "variance": [ - 2253 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_versions_arr_rel_insert_input": { - "data": [ - 2223 - ], - "on_conflict": [ - 2229 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_versions_avg_fields": { - "size": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_versions_avg_order_by": { - "size": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_versions_bool_exp": { - "_and": [ - 2220 - ], - "_not": [ - 2220 - ], - "_or": [ - 2220 - ], - "install_path": [ - 87 - ], - "layout": [ - 87 - ], - "plugin": [ - 2259 - ], - "plugin_slug": [ - 87 - ], - "prerelease": [ - 7 - ], - "published_at": [ - 5244 - ], - "runtime": [ - 1307 - ], - "sha256": [ - 87 - ], - "size": [ - 42 - ], - "url": [ - 87 - ], - "version": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_versions_constraint": {}, - "game_plugin_versions_inc_input": { - "size": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_versions_insert_input": { - "install_path": [ - 85 - ], - "layout": [ - 85 - ], - "plugin": [ - 2268 - ], - "plugin_slug": [ - 85 - ], - "prerelease": [ - 6 - ], - "published_at": [ - 5243 - ], - "runtime": [ - 1306 - ], - "sha256": [ - 85 - ], - "size": [ - 41 - ], - "url": [ - 85 - ], - "version": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_versions_max_fields": { - "install_path": [ - 85 - ], - "layout": [ - 85 - ], - "plugin_slug": [ - 85 - ], - "published_at": [ - 5243 - ], - "sha256": [ - 85 - ], - "size": [ - 41 - ], - "url": [ - 85 - ], - "version": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_versions_max_order_by": { - "install_path": [ - 3648 - ], - "layout": [ - 3648 - ], - "plugin_slug": [ - 3648 - ], - "published_at": [ - 3648 - ], - "sha256": [ - 3648 - ], - "size": [ - 3648 - ], - "url": [ - 3648 - ], - "version": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_versions_min_fields": { - "install_path": [ - 85 - ], - "layout": [ - 85 - ], - "plugin_slug": [ - 85 - ], - "published_at": [ - 5243 - ], - "sha256": [ - 85 - ], - "size": [ - 41 - ], - "url": [ - 85 - ], - "version": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_versions_min_order_by": { - "install_path": [ - 3648 - ], - "layout": [ - 3648 - ], - "plugin_slug": [ - 3648 - ], - "published_at": [ - 3648 - ], - "sha256": [ - 3648 - ], - "size": [ - 3648 - ], - "url": [ - 3648 - ], - "version": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_versions_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 2209 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_versions_on_conflict": { - "constraint": [ - 2221 - ], - "update_columns": [ - 2246 - ], - "where": [ - 2220 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_versions_order_by": { - "install_path": [ - 3648 - ], - "layout": [ - 3648 - ], - "plugin": [ - 2270 - ], - "plugin_slug": [ - 3648 - ], - "prerelease": [ - 3648 - ], - "published_at": [ - 3648 - ], - "runtime": [ - 3648 - ], - "sha256": [ - 3648 - ], - "size": [ - 3648 - ], - "url": [ - 3648 - ], - "version": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_versions_pk_columns_input": { - "plugin_slug": [ - 85 - ], - "runtime": [ - 1306 - ], - "version": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "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": [ - 85 - ], - "layout": [ - 85 - ], - "plugin_slug": [ - 85 - ], - "prerelease": [ - 6 - ], - "published_at": [ - 5243 - ], - "runtime": [ - 1306 - ], - "sha256": [ - 85 - ], - "size": [ - 41 - ], - "url": [ - 85 - ], - "version": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_versions_stddev_fields": { - "size": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_versions_stddev_order_by": { - "size": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_versions_stddev_pop_fields": { - "size": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_versions_stddev_pop_order_by": { - "size": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_versions_stddev_samp_fields": { - "size": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_versions_stddev_samp_order_by": { - "size": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_versions_stream_cursor_input": { - "initial_value": [ - 2243 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_versions_stream_cursor_value_input": { - "install_path": [ - 85 - ], - "layout": [ - 85 - ], - "plugin_slug": [ - 85 - ], - "prerelease": [ - 6 - ], - "published_at": [ - 5243 - ], - "runtime": [ - 1306 - ], - "sha256": [ - 85 - ], - "size": [ - 41 - ], - "url": [ - 85 - ], - "version": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_versions_sum_fields": { - "size": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_versions_sum_order_by": { - "size": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_versions_update_column": {}, - "game_plugin_versions_updates": { - "_inc": [ - 2222 - ], - "_set": [ - 2235 - ], - "where": [ - 2220 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_versions_var_pop_fields": { - "size": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_versions_var_pop_order_by": { - "size": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_versions_var_samp_fields": { - "size": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_versions_var_samp_order_by": { - "size": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_versions_variance_fields": { - "size": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "game_plugin_versions_variance_order_by": { - "size": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "game_plugins": { - "author": [ - 85 - ], - "config_path": [ - 85 - ], - "config_schema": [ - 2439, - { - "path": [ - 85 - ] - } - ], - "cvars": [ - 85 - ], - "description": [ - 85 - ], - "game_modes": [ - 2122, - { - "distinct_on": [ - 2150, - "[game_mode_plugins_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2147, - "[game_mode_plugins_order_by!]" - ], - "where": [ - 2134 - ] - } - ], - "game_modes_aggregate": [ - 2123, - { - "distinct_on": [ - 2150, - "[game_mode_plugins_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2147, - "[game_mode_plugins_order_by!]" - ], - "where": [ - 2134 - ] - } - ], - "homepage": [ - 85 - ], - "hot_swappable": [ - 6 - ], - "install_state": [ - 85 - ], - "installed_node_count": [ - 41 - ], - "kind": [ - 936 - ], - "name": [ - 85 - ], - "node_installs": [ - 2286, - { - "distinct_on": [ - 2306, - "[game_server_node_plugins_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2304, - "[game_server_node_plugins_order_by!]" - ], - "where": [ - 2295 - ] - } - ], - "node_installs_aggregate": [ - 2287, - { - "distinct_on": [ - 2306, - "[game_server_node_plugins_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2304, - "[game_server_node_plugins_order_by!]" - ], - "where": [ - 2295 - ] - } - ], - "pairs_with": [ - 85 - ], - "panel": [ - 2439, - { - "path": [ - 85 - ] - } - ], - "requires_server_guidelines_disabled": [ - 6 - ], - "requires_service": [ - 85 - ], - "slug": [ - 85 - ], - "source": [ - 85 - ], - "synced_at": [ - 5243 - ], - "tags": [ - 85 - ], - "target_node_count": [ - 41 - ], - "verified": [ - 6 - ], - "versions": [ - 2209, - { - "distinct_on": [ - 2232, - "[game_plugin_versions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2230, - "[game_plugin_versions_order_by!]" - ], - "where": [ - 2220 - ] - } - ], - "versions_aggregate": [ - 2210, - { - "distinct_on": [ - 2232, - "[game_plugin_versions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2230, - "[game_plugin_versions_order_by!]" - ], - "where": [ - 2220 - ] - } - ], - "wiring": [ - 2439, - { - "path": [ - 85 - ] - } - ], - "__typename": [ - 85 - ] - }, - "game_plugins_aggregate": { - "aggregate": [ - 2256 - ], - "nodes": [ - 2254 - ], - "__typename": [ - 85 - ] - }, - "game_plugins_aggregate_fields": { - "avg": [ - 2258 - ], - "count": [ - 41, - { - "columns": [ - 2273, - "[game_plugins_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 2265 - ], - "min": [ - 2266 - ], - "stddev": [ - 2275 - ], - "stddev_pop": [ - 2276 - ], - "stddev_samp": [ - 2277 - ], - "sum": [ - 2280 - ], - "var_pop": [ - 2283 - ], - "var_samp": [ - 2284 - ], - "variance": [ - 2285 - ], - "__typename": [ - 85 - ] - }, - "game_plugins_append_input": { - "config_schema": [ - 2439 - ], - "panel": [ - 2439 - ], - "wiring": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "game_plugins_avg_fields": { - "installed_node_count": [ - 41 - ], - "target_node_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "game_plugins_bool_exp": { - "_and": [ - 2259 - ], - "_not": [ - 2259 - ], - "_or": [ - 2259 - ], - "author": [ - 87 - ], - "config_path": [ - 87 - ], - "config_schema": [ - 2441 - ], - "cvars": [ - 86 - ], - "description": [ - 87 - ], - "game_modes": [ - 2134 - ], - "game_modes_aggregate": [ - 2124 - ], - "homepage": [ - 87 - ], - "hot_swappable": [ - 7 - ], - "install_state": [ - 87 - ], - "installed_node_count": [ - 42 - ], - "kind": [ - 937 - ], - "name": [ - 87 - ], - "node_installs": [ - 2295 - ], - "node_installs_aggregate": [ - 2288 - ], - "pairs_with": [ - 86 - ], - "panel": [ - 2441 - ], - "requires_server_guidelines_disabled": [ - 7 - ], - "requires_service": [ - 87 - ], - "slug": [ - 87 - ], - "source": [ - 87 - ], - "synced_at": [ - 5244 - ], - "tags": [ - 86 - ], - "target_node_count": [ - 42 - ], - "verified": [ - 7 - ], - "versions": [ - 2220 - ], - "versions_aggregate": [ - 2211 - ], - "wiring": [ - 2441 - ], - "__typename": [ - 85 - ] - }, - "game_plugins_constraint": {}, - "game_plugins_delete_at_path_input": { - "config_schema": [ - 85 - ], - "panel": [ - 85 - ], - "wiring": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "game_plugins_delete_elem_input": { - "config_schema": [ - 41 - ], - "panel": [ - 41 - ], - "wiring": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "game_plugins_delete_key_input": { - "config_schema": [ - 85 - ], - "panel": [ - 85 - ], - "wiring": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "game_plugins_insert_input": { - "author": [ - 85 - ], - "config_path": [ - 85 - ], - "config_schema": [ - 2439 - ], - "cvars": [ - 85 - ], - "description": [ - 85 - ], - "game_modes": [ - 2131 - ], - "homepage": [ - 85 - ], - "hot_swappable": [ - 6 - ], - "kind": [ - 936 - ], - "name": [ - 85 - ], - "node_installs": [ - 2294 - ], - "pairs_with": [ - 85 - ], - "panel": [ - 2439 - ], - "requires_server_guidelines_disabled": [ - 6 - ], - "requires_service": [ - 85 - ], - "slug": [ - 85 - ], - "source": [ - 85 - ], - "synced_at": [ - 5243 - ], - "tags": [ - 85 - ], - "verified": [ - 6 - ], - "versions": [ - 2217 - ], - "wiring": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "game_plugins_max_fields": { - "author": [ - 85 - ], - "config_path": [ - 85 - ], - "cvars": [ - 85 - ], - "description": [ - 85 - ], - "homepage": [ - 85 - ], - "install_state": [ - 85 - ], - "installed_node_count": [ - 41 - ], - "name": [ - 85 - ], - "pairs_with": [ - 85 - ], - "requires_service": [ - 85 - ], - "slug": [ - 85 - ], - "source": [ - 85 - ], - "synced_at": [ - 5243 - ], - "tags": [ - 85 - ], - "target_node_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "game_plugins_min_fields": { - "author": [ - 85 - ], - "config_path": [ - 85 - ], - "cvars": [ - 85 - ], - "description": [ - 85 - ], - "homepage": [ - 85 - ], - "install_state": [ - 85 - ], - "installed_node_count": [ - 41 - ], - "name": [ - 85 - ], - "pairs_with": [ - 85 - ], - "requires_service": [ - 85 - ], - "slug": [ - 85 - ], - "source": [ - 85 - ], - "synced_at": [ - 5243 - ], - "tags": [ - 85 - ], - "target_node_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "game_plugins_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 2254 - ], - "__typename": [ - 85 - ] - }, - "game_plugins_obj_rel_insert_input": { - "data": [ - 2264 - ], - "on_conflict": [ - 2269 - ], - "__typename": [ - 85 - ] - }, - "game_plugins_on_conflict": { - "constraint": [ - 2260 - ], - "update_columns": [ - 2281 - ], - "where": [ - 2259 - ], - "__typename": [ - 85 - ] - }, - "game_plugins_order_by": { - "author": [ - 3648 - ], - "config_path": [ - 3648 - ], - "config_schema": [ - 3648 - ], - "cvars": [ - 3648 - ], - "description": [ - 3648 - ], - "game_modes_aggregate": [ - 2129 - ], - "homepage": [ - 3648 - ], - "hot_swappable": [ - 3648 - ], - "install_state": [ - 3648 - ], - "installed_node_count": [ - 3648 - ], - "kind": [ - 3648 - ], - "name": [ - 3648 - ], - "node_installs_aggregate": [ - 2293 - ], - "pairs_with": [ - 3648 - ], - "panel": [ - 3648 - ], - "requires_server_guidelines_disabled": [ - 3648 - ], - "requires_service": [ - 3648 - ], - "slug": [ - 3648 - ], - "source": [ - 3648 - ], - "synced_at": [ - 3648 - ], - "tags": [ - 3648 - ], - "target_node_count": [ - 3648 - ], - "verified": [ - 3648 - ], - "versions_aggregate": [ - 2216 - ], - "wiring": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "game_plugins_pk_columns_input": { - "slug": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "game_plugins_prepend_input": { - "config_schema": [ - 2439 - ], - "panel": [ - 2439 - ], - "wiring": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "game_plugins_select_column": {}, - "game_plugins_set_input": { - "author": [ - 85 - ], - "config_path": [ - 85 - ], - "config_schema": [ - 2439 - ], - "cvars": [ - 85 - ], - "description": [ - 85 - ], - "homepage": [ - 85 - ], - "hot_swappable": [ - 6 - ], - "kind": [ - 936 - ], - "name": [ - 85 - ], - "pairs_with": [ - 85 - ], - "panel": [ - 2439 - ], - "requires_server_guidelines_disabled": [ - 6 - ], - "requires_service": [ - 85 - ], - "slug": [ - 85 - ], - "source": [ - 85 - ], - "synced_at": [ - 5243 - ], - "tags": [ - 85 - ], - "verified": [ - 6 - ], - "wiring": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "game_plugins_stddev_fields": { - "installed_node_count": [ - 41 - ], - "target_node_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "game_plugins_stddev_pop_fields": { - "installed_node_count": [ - 41 - ], - "target_node_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "game_plugins_stddev_samp_fields": { - "installed_node_count": [ - 41 - ], - "target_node_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "game_plugins_stream_cursor_input": { - "initial_value": [ - 2279 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "game_plugins_stream_cursor_value_input": { - "author": [ - 85 - ], - "config_path": [ - 85 - ], - "config_schema": [ - 2439 - ], - "cvars": [ - 85 - ], - "description": [ - 85 - ], - "homepage": [ - 85 - ], - "hot_swappable": [ - 6 - ], - "kind": [ - 936 - ], - "name": [ - 85 - ], - "pairs_with": [ - 85 - ], - "panel": [ - 2439 - ], - "requires_server_guidelines_disabled": [ - 6 - ], - "requires_service": [ - 85 - ], - "slug": [ - 85 - ], - "source": [ - 85 - ], - "synced_at": [ - 5243 - ], - "tags": [ - 85 - ], - "verified": [ - 6 - ], - "wiring": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "game_plugins_sum_fields": { - "installed_node_count": [ - 41 - ], - "target_node_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "game_plugins_update_column": {}, - "game_plugins_updates": { - "_append": [ - 2257 - ], - "_delete_at_path": [ - 2261 - ], - "_delete_elem": [ - 2262 - ], - "_delete_key": [ - 2263 - ], - "_prepend": [ - 2272 - ], - "_set": [ - 2274 - ], - "where": [ - 2259 - ], - "__typename": [ - 85 - ] - }, - "game_plugins_var_pop_fields": { - "installed_node_count": [ - 41 - ], - "target_node_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "game_plugins_var_samp_fields": { - "installed_node_count": [ - 41 - ], - "target_node_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "game_plugins_variance_fields": { - "installed_node_count": [ - 41 - ], - "target_node_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "game_server_node_plugins": { - "channel": [ - 896 - ], - "created_at": [ - 5243 - ], - "detected": [ - 6 - ], - "detected_version": [ - 85 - ], - "game_server_node": [ - 2314 - ], - "game_server_node_id": [ - 85 - ], - "id": [ - 6672 - ], - "installed_at": [ - 5243 - ], - "last_error": [ - 85 - ], - "path": [ - 85 - ], - "plugin": [ - 2254 - ], - "plugin_slug": [ - 85 - ], - "previous_version": [ - 85 - ], - "runtime": [ - 1306 - ], - "source": [ - 85 - ], - "status": [ - 916 - ], - "updated_at": [ - 5243 - ], - "version": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "game_server_node_plugins_aggregate": { - "aggregate": [ - 2292 - ], - "nodes": [ - 2286 - ], - "__typename": [ - 85 - ] - }, - "game_server_node_plugins_aggregate_bool_exp": { - "bool_and": [ - 2289 - ], - "bool_or": [ - 2290 - ], - "count": [ - 2291 - ], - "__typename": [ - 85 - ] - }, - "game_server_node_plugins_aggregate_bool_exp_bool_and": { - "arguments": [ - 2307 - ], - "distinct": [ - 6 - ], - "filter": [ - 2295 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "game_server_node_plugins_aggregate_bool_exp_bool_or": { - "arguments": [ - 2308 - ], - "distinct": [ - 6 - ], - "filter": [ - 2295 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "game_server_node_plugins_aggregate_bool_exp_count": { - "arguments": [ - 2306 - ], - "distinct": [ - 6 - ], - "filter": [ - 2295 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "game_server_node_plugins_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 2306, - "[game_server_node_plugins_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 2298 - ], - "min": [ - 2300 - ], - "__typename": [ - 85 - ] - }, - "game_server_node_plugins_aggregate_order_by": { - "count": [ - 3648 - ], - "max": [ - 2299 - ], - "min": [ - 2301 - ], - "__typename": [ - 85 - ] - }, - "game_server_node_plugins_arr_rel_insert_input": { - "data": [ - 2297 - ], - "on_conflict": [ - 2303 - ], - "__typename": [ - 85 - ] - }, - "game_server_node_plugins_bool_exp": { - "_and": [ - 2295 - ], - "_not": [ - 2295 - ], - "_or": [ - 2295 - ], - "channel": [ - 897 - ], - "created_at": [ - 5244 - ], - "detected": [ - 7 - ], - "detected_version": [ - 87 - ], - "game_server_node": [ - 2326 - ], - "game_server_node_id": [ - 87 - ], - "id": [ - 6674 - ], - "installed_at": [ - 5244 - ], - "last_error": [ - 87 - ], - "path": [ - 87 - ], - "plugin": [ - 2259 - ], - "plugin_slug": [ - 87 - ], - "previous_version": [ - 87 - ], - "runtime": [ - 1307 - ], - "source": [ - 87 - ], - "status": [ - 917 - ], - "updated_at": [ - 5244 - ], - "version": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "game_server_node_plugins_constraint": {}, - "game_server_node_plugins_insert_input": { - "channel": [ - 896 - ], - "created_at": [ - 5243 - ], - "detected": [ - 6 - ], - "detected_version": [ - 85 - ], - "game_server_node": [ - 2338 - ], - "game_server_node_id": [ - 85 - ], - "id": [ - 6672 - ], - "installed_at": [ - 5243 - ], - "last_error": [ - 85 - ], - "path": [ - 85 - ], - "plugin": [ - 2268 - ], - "plugin_slug": [ - 85 - ], - "previous_version": [ - 85 - ], - "runtime": [ - 1306 - ], - "source": [ - 85 - ], - "status": [ - 916 - ], - "updated_at": [ - 5243 - ], - "version": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "game_server_node_plugins_max_fields": { - "created_at": [ - 5243 - ], - "detected_version": [ - 85 - ], - "game_server_node_id": [ - 85 - ], - "id": [ - 6672 - ], - "installed_at": [ - 5243 - ], - "last_error": [ - 85 - ], - "path": [ - 85 - ], - "plugin_slug": [ - 85 - ], - "previous_version": [ - 85 - ], - "source": [ - 85 - ], - "updated_at": [ - 5243 - ], - "version": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "game_server_node_plugins_max_order_by": { - "created_at": [ - 3648 - ], - "detected_version": [ - 3648 - ], - "game_server_node_id": [ - 3648 - ], - "id": [ - 3648 - ], - "installed_at": [ - 3648 - ], - "last_error": [ - 3648 - ], - "path": [ - 3648 - ], - "plugin_slug": [ - 3648 - ], - "previous_version": [ - 3648 - ], - "source": [ - 3648 - ], - "updated_at": [ - 3648 - ], - "version": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "game_server_node_plugins_min_fields": { - "created_at": [ - 5243 - ], - "detected_version": [ - 85 - ], - "game_server_node_id": [ - 85 - ], - "id": [ - 6672 - ], - "installed_at": [ - 5243 - ], - "last_error": [ - 85 - ], - "path": [ - 85 - ], - "plugin_slug": [ - 85 - ], - "previous_version": [ - 85 - ], - "source": [ - 85 - ], - "updated_at": [ - 5243 - ], - "version": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "game_server_node_plugins_min_order_by": { - "created_at": [ - 3648 - ], - "detected_version": [ - 3648 - ], - "game_server_node_id": [ - 3648 - ], - "id": [ - 3648 - ], - "installed_at": [ - 3648 - ], - "last_error": [ - 3648 - ], - "path": [ - 3648 - ], - "plugin_slug": [ - 3648 - ], - "previous_version": [ - 3648 - ], - "source": [ - 3648 - ], - "updated_at": [ - 3648 - ], - "version": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "game_server_node_plugins_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 2286 - ], - "__typename": [ - 85 - ] - }, - "game_server_node_plugins_on_conflict": { - "constraint": [ - 2296 - ], - "update_columns": [ - 2312 - ], - "where": [ - 2295 - ], - "__typename": [ - 85 - ] - }, - "game_server_node_plugins_order_by": { - "channel": [ - 3648 - ], - "created_at": [ - 3648 - ], - "detected": [ - 3648 - ], - "detected_version": [ - 3648 - ], - "game_server_node": [ - 2340 - ], - "game_server_node_id": [ - 3648 - ], - "id": [ - 3648 - ], - "installed_at": [ - 3648 - ], - "last_error": [ - 3648 - ], - "path": [ - 3648 - ], - "plugin": [ - 2270 - ], - "plugin_slug": [ - 3648 - ], - "previous_version": [ - 3648 - ], - "runtime": [ - 3648 - ], - "source": [ - 3648 - ], - "status": [ - 3648 - ], - "updated_at": [ - 3648 - ], - "version": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "game_server_node_plugins_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "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": [ - 896 - ], - "created_at": [ - 5243 - ], - "detected": [ - 6 - ], - "detected_version": [ - 85 - ], - "game_server_node_id": [ - 85 - ], - "id": [ - 6672 - ], - "installed_at": [ - 5243 - ], - "last_error": [ - 85 - ], - "path": [ - 85 - ], - "plugin_slug": [ - 85 - ], - "previous_version": [ - 85 - ], - "runtime": [ - 1306 - ], - "source": [ - 85 - ], - "status": [ - 916 - ], - "updated_at": [ - 5243 - ], - "version": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "game_server_node_plugins_stream_cursor_input": { - "initial_value": [ - 2311 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "game_server_node_plugins_stream_cursor_value_input": { - "channel": [ - 896 - ], - "created_at": [ - 5243 - ], - "detected": [ - 6 - ], - "detected_version": [ - 85 - ], - "game_server_node_id": [ - 85 - ], - "id": [ - 6672 - ], - "installed_at": [ - 5243 - ], - "last_error": [ - 85 - ], - "path": [ - 85 - ], - "plugin_slug": [ - 85 - ], - "previous_version": [ - 85 - ], - "runtime": [ - 1306 - ], - "source": [ - 85 - ], - "status": [ - 916 - ], - "updated_at": [ - 5243 - ], - "version": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "game_server_node_plugins_update_column": {}, - "game_server_node_plugins_updates": { - "_set": [ - 2309 - ], - "where": [ - 2295 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes": { - "available_server_count": [ - 41 - ], - "build_id": [ - 41 - ], - "cpu_cores_per_socket": [ - 41 - ], - "cpu_frequency_info": [ - 2439, - { - "path": [ - 85 - ] - } - ], - "cpu_governor_info": [ - 2439, - { - "path": [ - 85 - ] - } - ], - "cpu_sockets": [ - 41 - ], - "cpu_threads_per_core": [ - 41 - ], - "cpu_warnings": [ - 2439, - { - "path": [ - 85 - ] - } - ], - "cs2_launch_options": [ - 2439, - { - "path": [ - 85 - ] - } - ], - "cs2_video_settings": [ - 2439, - { - "path": [ - 85 - ] - } - ], - "csgo_build_id": [ - 41 - ], - "demo_network_limiter": [ - 41 - ], - "disk_available_gb": [ - 41 - ], - "disk_used_percent": [ - 41 - ], - "e_region": [ - 4734 - ], - "e_status": [ - 951 - ], - "enabled": [ - 6 - ], - "enabled_for_match_making": [ - 6 - ], - "end_port_range": [ - 41 - ], - "gpu": [ - 6 - ], - "gpu_demos_enabled": [ - 6 - ], - "gpu_info": [ - 2439, - { - "path": [ - 85 - ] - } - ], - "gpu_rendering_enabled": [ - 6 - ], - "gpu_streaming_enabled": [ - 6 - ], - "id": [ - 85 - ], - "label": [ - 85 - ], - "lan_ip": [ - 2435 - ], - "node_ip": [ - 2435 - ], - "offline_at": [ - 5243 - ], - "pin_build_id": [ - 41 - ], - "pin_plugin_runtime": [ - 85 - ], - "pin_plugin_version": [ - 85 - ], - "pinned_version": [ - 2365 - ], - "plugin_supported": [ - 6 - ], - "plugins": [ - 2286, - { - "distinct_on": [ - 2306, - "[game_server_node_plugins_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2304, - "[game_server_node_plugins_order_by!]" - ], - "where": [ - 2295 - ] - } - ], - "plugins_aggregate": [ - 2287, - { - "distinct_on": [ - 2306, - "[game_server_node_plugins_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2304, - "[game_server_node_plugins_order_by!]" - ], - "where": [ - 2295 - ] - } - ], - "plugins_synced_at": [ - 5243 - ], - "public_ip": [ - 2435 - ], - "region": [ - 85 - ], - "servers": [ - 4761, - { - "distinct_on": [ - 4790, - "[servers_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4787, - "[servers_order_by!]" - ], - "where": [ - 4773 - ] - } - ], - "servers_aggregate": [ - 4762, - { - "distinct_on": [ - 4790, - "[servers_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4787, - "[servers_order_by!]" - ], - "where": [ - 4773 - ] - } - ], - "shader_bake_progress": [ - 3646 - ], - "shader_bake_progress_stage": [ - 85 - ], - "shader_bake_status": [ - 85 - ], - "shader_bake_status_history": [ - 2439, - { - "path": [ - 85 - ] - } - ], - "start_port_range": [ - 41 - ], - "status": [ - 956 - ], - "supports_cpu_pinning": [ - 6 - ], - "supports_low_latency": [ - 6 - ], - "token": [ - 85 - ], - "total_server_count": [ - 41 - ], - "update_status": [ - 85 - ], - "version": [ - 2365 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_aggregate": { - "aggregate": [ - 2320 - ], - "nodes": [ - 2314 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_aggregate_bool_exp": { - "bool_and": [ - 2317 - ], - "bool_or": [ - 2318 - ], - "count": [ - 2319 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_aggregate_bool_exp_bool_and": { - "arguments": [ - 2344 - ], - "distinct": [ - 6 - ], - "filter": [ - 2326 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_aggregate_bool_exp_bool_or": { - "arguments": [ - 2345 - ], - "distinct": [ - 6 - ], - "filter": [ - 2326 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_aggregate_bool_exp_count": { - "arguments": [ - 2343 - ], - "distinct": [ - 6 - ], - "filter": [ - 2326 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_aggregate_fields": { - "avg": [ - 2324 - ], - "count": [ - 41, - { - "columns": [ - 2343, - "[game_server_nodes_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 2333 - ], - "min": [ - 2335 - ], - "stddev": [ - 2347 - ], - "stddev_pop": [ - 2349 - ], - "stddev_samp": [ - 2351 - ], - "sum": [ - 2355 - ], - "var_pop": [ - 2359 - ], - "var_samp": [ - 2361 - ], - "variance": [ - 2363 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_aggregate_order_by": { - "avg": [ - 2325 - ], - "count": [ - 3648 - ], - "max": [ - 2334 - ], - "min": [ - 2336 - ], - "stddev": [ - 2348 - ], - "stddev_pop": [ - 2350 - ], - "stddev_samp": [ - 2352 - ], - "sum": [ - 2356 - ], - "var_pop": [ - 2360 - ], - "var_samp": [ - 2362 - ], - "variance": [ - 2364 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_append_input": { - "cpu_frequency_info": [ - 2439 - ], - "cpu_governor_info": [ - 2439 - ], - "cpu_warnings": [ - 2439 - ], - "cs2_launch_options": [ - 2439 - ], - "cs2_video_settings": [ - 2439 - ], - "gpu_info": [ - 2439 - ], - "shader_bake_status_history": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_arr_rel_insert_input": { - "data": [ - 2332 - ], - "on_conflict": [ - 2339 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_avg_fields": { - "available_server_count": [ - 41 - ], - "build_id": [ - 32 - ], - "cpu_cores_per_socket": [ - 32 - ], - "cpu_sockets": [ - 32 - ], - "cpu_threads_per_core": [ - 32 - ], - "csgo_build_id": [ - 32 - ], - "demo_network_limiter": [ - 32 - ], - "disk_available_gb": [ - 32 - ], - "disk_used_percent": [ - 32 - ], - "end_port_range": [ - 32 - ], - "pin_build_id": [ - 32 - ], - "shader_bake_progress": [ - 32 - ], - "start_port_range": [ - 32 - ], - "total_server_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_avg_order_by": { - "build_id": [ - 3648 - ], - "cpu_cores_per_socket": [ - 3648 - ], - "cpu_sockets": [ - 3648 - ], - "cpu_threads_per_core": [ - 3648 - ], - "csgo_build_id": [ - 3648 - ], - "demo_network_limiter": [ - 3648 - ], - "disk_available_gb": [ - 3648 - ], - "disk_used_percent": [ - 3648 - ], - "end_port_range": [ - 3648 - ], - "pin_build_id": [ - 3648 - ], - "shader_bake_progress": [ - 3648 - ], - "start_port_range": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_bool_exp": { - "_and": [ - 2326 - ], - "_not": [ - 2326 - ], - "_or": [ - 2326 - ], - "available_server_count": [ - 42 - ], - "build_id": [ - 42 - ], - "cpu_cores_per_socket": [ - 42 - ], - "cpu_frequency_info": [ - 2441 - ], - "cpu_governor_info": [ - 2441 - ], - "cpu_sockets": [ - 42 - ], - "cpu_threads_per_core": [ - 42 - ], - "cpu_warnings": [ - 2441 - ], - "cs2_launch_options": [ - 2441 - ], - "cs2_video_settings": [ - 2441 - ], - "csgo_build_id": [ - 42 - ], - "demo_network_limiter": [ - 42 - ], - "disk_available_gb": [ - 42 - ], - "disk_used_percent": [ - 42 - ], - "e_region": [ - 4738 - ], - "e_status": [ - 954 - ], - "enabled": [ - 7 - ], - "enabled_for_match_making": [ - 7 - ], - "end_port_range": [ - 42 - ], - "gpu": [ - 7 - ], - "gpu_demos_enabled": [ - 7 - ], - "gpu_info": [ - 2441 - ], - "gpu_rendering_enabled": [ - 7 - ], - "gpu_streaming_enabled": [ - 7 - ], - "id": [ - 87 - ], - "label": [ - 87 - ], - "lan_ip": [ - 2436 - ], - "node_ip": [ - 2436 - ], - "offline_at": [ - 5244 - ], - "pin_build_id": [ - 42 - ], - "pin_plugin_runtime": [ - 87 - ], - "pin_plugin_version": [ - 87 - ], - "pinned_version": [ - 2370 - ], - "plugin_supported": [ - 7 - ], - "plugins": [ - 2295 - ], - "plugins_aggregate": [ - 2288 - ], - "plugins_synced_at": [ - 5244 - ], - "public_ip": [ - 2436 - ], - "region": [ - 87 - ], - "servers": [ - 4773 - ], - "servers_aggregate": [ - 4763 - ], - "shader_bake_progress": [ - 3647 - ], - "shader_bake_progress_stage": [ - 87 - ], - "shader_bake_status": [ - 87 - ], - "shader_bake_status_history": [ - 2441 - ], - "start_port_range": [ - 42 - ], - "status": [ - 957 - ], - "supports_cpu_pinning": [ - 7 - ], - "supports_low_latency": [ - 7 - ], - "token": [ - 87 - ], - "total_server_count": [ - 42 - ], - "update_status": [ - 87 - ], - "version": [ - 2370 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_constraint": {}, - "game_server_nodes_delete_at_path_input": { - "cpu_frequency_info": [ - 85 - ], - "cpu_governor_info": [ - 85 - ], - "cpu_warnings": [ - 85 - ], - "cs2_launch_options": [ - 85 - ], - "cs2_video_settings": [ - 85 - ], - "gpu_info": [ - 85 - ], - "shader_bake_status_history": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_delete_elem_input": { - "cpu_frequency_info": [ - 41 - ], - "cpu_governor_info": [ - 41 - ], - "cpu_warnings": [ - 41 - ], - "cs2_launch_options": [ - 41 - ], - "cs2_video_settings": [ - 41 - ], - "gpu_info": [ - 41 - ], - "shader_bake_status_history": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_delete_key_input": { - "cpu_frequency_info": [ - 85 - ], - "cpu_governor_info": [ - 85 - ], - "cpu_warnings": [ - 85 - ], - "cs2_launch_options": [ - 85 - ], - "cs2_video_settings": [ - 85 - ], - "gpu_info": [ - 85 - ], - "shader_bake_status_history": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_inc_input": { - "build_id": [ - 41 - ], - "cpu_cores_per_socket": [ - 41 - ], - "cpu_sockets": [ - 41 - ], - "cpu_threads_per_core": [ - 41 - ], - "csgo_build_id": [ - 41 - ], - "demo_network_limiter": [ - 41 - ], - "disk_available_gb": [ - 41 - ], - "disk_used_percent": [ - 41 - ], - "end_port_range": [ - 41 - ], - "pin_build_id": [ - 41 - ], - "shader_bake_progress": [ - 3646 - ], - "start_port_range": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_insert_input": { - "build_id": [ - 41 - ], - "cpu_cores_per_socket": [ - 41 - ], - "cpu_frequency_info": [ - 2439 - ], - "cpu_governor_info": [ - 2439 - ], - "cpu_sockets": [ - 41 - ], - "cpu_threads_per_core": [ - 41 - ], - "cpu_warnings": [ - 2439 - ], - "cs2_launch_options": [ - 2439 - ], - "cs2_video_settings": [ - 2439 - ], - "csgo_build_id": [ - 41 - ], - "demo_network_limiter": [ - 41 - ], - "disk_available_gb": [ - 41 - ], - "disk_used_percent": [ - 41 - ], - "e_region": [ - 4744 - ], - "e_status": [ - 962 - ], - "enabled": [ - 6 - ], - "enabled_for_match_making": [ - 6 - ], - "end_port_range": [ - 41 - ], - "gpu": [ - 6 - ], - "gpu_demos_enabled": [ - 6 - ], - "gpu_info": [ - 2439 - ], - "gpu_rendering_enabled": [ - 6 - ], - "gpu_streaming_enabled": [ - 6 - ], - "id": [ - 85 - ], - "label": [ - 85 - ], - "lan_ip": [ - 2435 - ], - "node_ip": [ - 2435 - ], - "offline_at": [ - 5243 - ], - "pin_build_id": [ - 41 - ], - "pin_plugin_runtime": [ - 85 - ], - "pin_plugin_version": [ - 85 - ], - "pinned_version": [ - 2380 - ], - "plugins": [ - 2294 - ], - "plugins_synced_at": [ - 5243 - ], - "public_ip": [ - 2435 - ], - "region": [ - 85 - ], - "servers": [ - 4770 - ], - "shader_bake_progress": [ - 3646 - ], - "shader_bake_progress_stage": [ - 85 - ], - "shader_bake_status": [ - 85 - ], - "shader_bake_status_history": [ - 2439 - ], - "start_port_range": [ - 41 - ], - "status": [ - 956 - ], - "supports_cpu_pinning": [ - 6 - ], - "supports_low_latency": [ - 6 - ], - "token": [ - 85 - ], - "update_status": [ - 85 - ], - "version": [ - 2380 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_max_fields": { - "available_server_count": [ - 41 - ], - "build_id": [ - 41 - ], - "cpu_cores_per_socket": [ - 41 - ], - "cpu_sockets": [ - 41 - ], - "cpu_threads_per_core": [ - 41 - ], - "csgo_build_id": [ - 41 - ], - "demo_network_limiter": [ - 41 - ], - "disk_available_gb": [ - 41 - ], - "disk_used_percent": [ - 41 - ], - "end_port_range": [ - 41 - ], - "id": [ - 85 - ], - "label": [ - 85 - ], - "offline_at": [ - 5243 - ], - "pin_build_id": [ - 41 - ], - "pin_plugin_runtime": [ - 85 - ], - "pin_plugin_version": [ - 85 - ], - "plugins_synced_at": [ - 5243 - ], - "region": [ - 85 - ], - "shader_bake_progress": [ - 3646 - ], - "shader_bake_progress_stage": [ - 85 - ], - "shader_bake_status": [ - 85 - ], - "start_port_range": [ - 41 - ], - "token": [ - 85 - ], - "total_server_count": [ - 41 - ], - "update_status": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_max_order_by": { - "build_id": [ - 3648 - ], - "cpu_cores_per_socket": [ - 3648 - ], - "cpu_sockets": [ - 3648 - ], - "cpu_threads_per_core": [ - 3648 - ], - "csgo_build_id": [ - 3648 - ], - "demo_network_limiter": [ - 3648 - ], - "disk_available_gb": [ - 3648 - ], - "disk_used_percent": [ - 3648 - ], - "end_port_range": [ - 3648 - ], - "id": [ - 3648 - ], - "label": [ - 3648 - ], - "offline_at": [ - 3648 - ], - "pin_build_id": [ - 3648 - ], - "pin_plugin_runtime": [ - 3648 - ], - "pin_plugin_version": [ - 3648 - ], - "plugins_synced_at": [ - 3648 - ], - "region": [ - 3648 - ], - "shader_bake_progress": [ - 3648 - ], - "shader_bake_progress_stage": [ - 3648 - ], - "shader_bake_status": [ - 3648 - ], - "start_port_range": [ - 3648 - ], - "token": [ - 3648 - ], - "update_status": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_min_fields": { - "available_server_count": [ - 41 - ], - "build_id": [ - 41 - ], - "cpu_cores_per_socket": [ - 41 - ], - "cpu_sockets": [ - 41 - ], - "cpu_threads_per_core": [ - 41 - ], - "csgo_build_id": [ - 41 - ], - "demo_network_limiter": [ - 41 - ], - "disk_available_gb": [ - 41 - ], - "disk_used_percent": [ - 41 - ], - "end_port_range": [ - 41 - ], - "id": [ - 85 - ], - "label": [ - 85 - ], - "offline_at": [ - 5243 - ], - "pin_build_id": [ - 41 - ], - "pin_plugin_runtime": [ - 85 - ], - "pin_plugin_version": [ - 85 - ], - "plugins_synced_at": [ - 5243 - ], - "region": [ - 85 - ], - "shader_bake_progress": [ - 3646 - ], - "shader_bake_progress_stage": [ - 85 - ], - "shader_bake_status": [ - 85 - ], - "start_port_range": [ - 41 - ], - "token": [ - 85 - ], - "total_server_count": [ - 41 - ], - "update_status": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_min_order_by": { - "build_id": [ - 3648 - ], - "cpu_cores_per_socket": [ - 3648 - ], - "cpu_sockets": [ - 3648 - ], - "cpu_threads_per_core": [ - 3648 - ], - "csgo_build_id": [ - 3648 - ], - "demo_network_limiter": [ - 3648 - ], - "disk_available_gb": [ - 3648 - ], - "disk_used_percent": [ - 3648 - ], - "end_port_range": [ - 3648 - ], - "id": [ - 3648 - ], - "label": [ - 3648 - ], - "offline_at": [ - 3648 - ], - "pin_build_id": [ - 3648 - ], - "pin_plugin_runtime": [ - 3648 - ], - "pin_plugin_version": [ - 3648 - ], - "plugins_synced_at": [ - 3648 - ], - "region": [ - 3648 - ], - "shader_bake_progress": [ - 3648 - ], - "shader_bake_progress_stage": [ - 3648 - ], - "shader_bake_status": [ - 3648 - ], - "start_port_range": [ - 3648 - ], - "token": [ - 3648 - ], - "update_status": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 2314 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_obj_rel_insert_input": { - "data": [ - 2332 - ], - "on_conflict": [ - 2339 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_on_conflict": { - "constraint": [ - 2327 - ], - "update_columns": [ - 2357 - ], - "where": [ - 2326 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_order_by": { - "available_server_count": [ - 3648 - ], - "build_id": [ - 3648 - ], - "cpu_cores_per_socket": [ - 3648 - ], - "cpu_frequency_info": [ - 3648 - ], - "cpu_governor_info": [ - 3648 - ], - "cpu_sockets": [ - 3648 - ], - "cpu_threads_per_core": [ - 3648 - ], - "cpu_warnings": [ - 3648 - ], - "cs2_launch_options": [ - 3648 - ], - "cs2_video_settings": [ - 3648 - ], - "csgo_build_id": [ - 3648 - ], - "demo_network_limiter": [ - 3648 - ], - "disk_available_gb": [ - 3648 - ], - "disk_used_percent": [ - 3648 - ], - "e_region": [ - 4746 - ], - "e_status": [ - 964 - ], - "enabled": [ - 3648 - ], - "enabled_for_match_making": [ - 3648 - ], - "end_port_range": [ - 3648 - ], - "gpu": [ - 3648 - ], - "gpu_demos_enabled": [ - 3648 - ], - "gpu_info": [ - 3648 - ], - "gpu_rendering_enabled": [ - 3648 - ], - "gpu_streaming_enabled": [ - 3648 - ], - "id": [ - 3648 - ], - "label": [ - 3648 - ], - "lan_ip": [ - 3648 - ], - "node_ip": [ - 3648 - ], - "offline_at": [ - 3648 - ], - "pin_build_id": [ - 3648 - ], - "pin_plugin_runtime": [ - 3648 - ], - "pin_plugin_version": [ - 3648 - ], - "pinned_version": [ - 2382 - ], - "plugin_supported": [ - 3648 - ], - "plugins_aggregate": [ - 2293 - ], - "plugins_synced_at": [ - 3648 - ], - "public_ip": [ - 3648 - ], - "region": [ - 3648 - ], - "servers_aggregate": [ - 4768 - ], - "shader_bake_progress": [ - 3648 - ], - "shader_bake_progress_stage": [ - 3648 - ], - "shader_bake_status": [ - 3648 - ], - "shader_bake_status_history": [ - 3648 - ], - "start_port_range": [ - 3648 - ], - "status": [ - 3648 - ], - "supports_cpu_pinning": [ - 3648 - ], - "supports_low_latency": [ - 3648 - ], - "token": [ - 3648 - ], - "total_server_count": [ - 3648 - ], - "update_status": [ - 3648 - ], - "version": [ - 2382 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_pk_columns_input": { - "id": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_prepend_input": { - "cpu_frequency_info": [ - 2439 - ], - "cpu_governor_info": [ - 2439 - ], - "cpu_warnings": [ - 2439 - ], - "cs2_launch_options": [ - 2439 - ], - "cs2_video_settings": [ - 2439 - ], - "gpu_info": [ - 2439 - ], - "shader_bake_status_history": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_select_column": {}, - "game_server_nodes_select_column_game_server_nodes_aggregate_bool_exp_bool_and_arguments_columns": {}, - "game_server_nodes_select_column_game_server_nodes_aggregate_bool_exp_bool_or_arguments_columns": {}, - "game_server_nodes_set_input": { - "build_id": [ - 41 - ], - "cpu_cores_per_socket": [ - 41 - ], - "cpu_frequency_info": [ - 2439 - ], - "cpu_governor_info": [ - 2439 - ], - "cpu_sockets": [ - 41 - ], - "cpu_threads_per_core": [ - 41 - ], - "cpu_warnings": [ - 2439 - ], - "cs2_launch_options": [ - 2439 - ], - "cs2_video_settings": [ - 2439 - ], - "csgo_build_id": [ - 41 - ], - "demo_network_limiter": [ - 41 - ], - "disk_available_gb": [ - 41 - ], - "disk_used_percent": [ - 41 - ], - "enabled": [ - 6 - ], - "enabled_for_match_making": [ - 6 - ], - "end_port_range": [ - 41 - ], - "gpu": [ - 6 - ], - "gpu_demos_enabled": [ - 6 - ], - "gpu_info": [ - 2439 - ], - "gpu_rendering_enabled": [ - 6 - ], - "gpu_streaming_enabled": [ - 6 - ], - "id": [ - 85 - ], - "label": [ - 85 - ], - "lan_ip": [ - 2435 - ], - "node_ip": [ - 2435 - ], - "offline_at": [ - 5243 - ], - "pin_build_id": [ - 41 - ], - "pin_plugin_runtime": [ - 85 - ], - "pin_plugin_version": [ - 85 - ], - "plugins_synced_at": [ - 5243 - ], - "public_ip": [ - 2435 - ], - "region": [ - 85 - ], - "shader_bake_progress": [ - 3646 - ], - "shader_bake_progress_stage": [ - 85 - ], - "shader_bake_status": [ - 85 - ], - "shader_bake_status_history": [ - 2439 - ], - "start_port_range": [ - 41 - ], - "status": [ - 956 - ], - "supports_cpu_pinning": [ - 6 - ], - "supports_low_latency": [ - 6 - ], - "token": [ - 85 - ], - "update_status": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_stddev_fields": { - "available_server_count": [ - 41 - ], - "build_id": [ - 32 - ], - "cpu_cores_per_socket": [ - 32 - ], - "cpu_sockets": [ - 32 - ], - "cpu_threads_per_core": [ - 32 - ], - "csgo_build_id": [ - 32 - ], - "demo_network_limiter": [ - 32 - ], - "disk_available_gb": [ - 32 - ], - "disk_used_percent": [ - 32 - ], - "end_port_range": [ - 32 - ], - "pin_build_id": [ - 32 - ], - "shader_bake_progress": [ - 32 - ], - "start_port_range": [ - 32 - ], - "total_server_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_stddev_order_by": { - "build_id": [ - 3648 - ], - "cpu_cores_per_socket": [ - 3648 - ], - "cpu_sockets": [ - 3648 - ], - "cpu_threads_per_core": [ - 3648 - ], - "csgo_build_id": [ - 3648 - ], - "demo_network_limiter": [ - 3648 - ], - "disk_available_gb": [ - 3648 - ], - "disk_used_percent": [ - 3648 - ], - "end_port_range": [ - 3648 - ], - "pin_build_id": [ - 3648 - ], - "shader_bake_progress": [ - 3648 - ], - "start_port_range": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_stddev_pop_fields": { - "available_server_count": [ - 41 - ], - "build_id": [ - 32 - ], - "cpu_cores_per_socket": [ - 32 - ], - "cpu_sockets": [ - 32 - ], - "cpu_threads_per_core": [ - 32 - ], - "csgo_build_id": [ - 32 - ], - "demo_network_limiter": [ - 32 - ], - "disk_available_gb": [ - 32 - ], - "disk_used_percent": [ - 32 - ], - "end_port_range": [ - 32 - ], - "pin_build_id": [ - 32 - ], - "shader_bake_progress": [ - 32 - ], - "start_port_range": [ - 32 - ], - "total_server_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_stddev_pop_order_by": { - "build_id": [ - 3648 - ], - "cpu_cores_per_socket": [ - 3648 - ], - "cpu_sockets": [ - 3648 - ], - "cpu_threads_per_core": [ - 3648 - ], - "csgo_build_id": [ - 3648 - ], - "demo_network_limiter": [ - 3648 - ], - "disk_available_gb": [ - 3648 - ], - "disk_used_percent": [ - 3648 - ], - "end_port_range": [ - 3648 - ], - "pin_build_id": [ - 3648 - ], - "shader_bake_progress": [ - 3648 - ], - "start_port_range": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_stddev_samp_fields": { - "available_server_count": [ - 41 - ], - "build_id": [ - 32 - ], - "cpu_cores_per_socket": [ - 32 - ], - "cpu_sockets": [ - 32 - ], - "cpu_threads_per_core": [ - 32 - ], - "csgo_build_id": [ - 32 - ], - "demo_network_limiter": [ - 32 - ], - "disk_available_gb": [ - 32 - ], - "disk_used_percent": [ - 32 - ], - "end_port_range": [ - 32 - ], - "pin_build_id": [ - 32 - ], - "shader_bake_progress": [ - 32 - ], - "start_port_range": [ - 32 - ], - "total_server_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_stddev_samp_order_by": { - "build_id": [ - 3648 - ], - "cpu_cores_per_socket": [ - 3648 - ], - "cpu_sockets": [ - 3648 - ], - "cpu_threads_per_core": [ - 3648 - ], - "csgo_build_id": [ - 3648 - ], - "demo_network_limiter": [ - 3648 - ], - "disk_available_gb": [ - 3648 - ], - "disk_used_percent": [ - 3648 - ], - "end_port_range": [ - 3648 - ], - "pin_build_id": [ - 3648 - ], - "shader_bake_progress": [ - 3648 - ], - "start_port_range": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_stream_cursor_input": { - "initial_value": [ - 2354 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_stream_cursor_value_input": { - "build_id": [ - 41 - ], - "cpu_cores_per_socket": [ - 41 - ], - "cpu_frequency_info": [ - 2439 - ], - "cpu_governor_info": [ - 2439 - ], - "cpu_sockets": [ - 41 - ], - "cpu_threads_per_core": [ - 41 - ], - "cpu_warnings": [ - 2439 - ], - "cs2_launch_options": [ - 2439 - ], - "cs2_video_settings": [ - 2439 - ], - "csgo_build_id": [ - 41 - ], - "demo_network_limiter": [ - 41 - ], - "disk_available_gb": [ - 41 - ], - "disk_used_percent": [ - 41 - ], - "enabled": [ - 6 - ], - "enabled_for_match_making": [ - 6 - ], - "end_port_range": [ - 41 - ], - "gpu": [ - 6 - ], - "gpu_demos_enabled": [ - 6 - ], - "gpu_info": [ - 2439 - ], - "gpu_rendering_enabled": [ - 6 - ], - "gpu_streaming_enabled": [ - 6 - ], - "id": [ - 85 - ], - "label": [ - 85 - ], - "lan_ip": [ - 2435 - ], - "node_ip": [ - 2435 - ], - "offline_at": [ - 5243 - ], - "pin_build_id": [ - 41 - ], - "pin_plugin_runtime": [ - 85 - ], - "pin_plugin_version": [ - 85 - ], - "plugins_synced_at": [ - 5243 - ], - "public_ip": [ - 2435 - ], - "region": [ - 85 - ], - "shader_bake_progress": [ - 3646 - ], - "shader_bake_progress_stage": [ - 85 - ], - "shader_bake_status": [ - 85 - ], - "shader_bake_status_history": [ - 2439 - ], - "start_port_range": [ - 41 - ], - "status": [ - 956 - ], - "supports_cpu_pinning": [ - 6 - ], - "supports_low_latency": [ - 6 - ], - "token": [ - 85 - ], - "update_status": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_sum_fields": { - "available_server_count": [ - 41 - ], - "build_id": [ - 41 - ], - "cpu_cores_per_socket": [ - 41 - ], - "cpu_sockets": [ - 41 - ], - "cpu_threads_per_core": [ - 41 - ], - "csgo_build_id": [ - 41 - ], - "demo_network_limiter": [ - 41 - ], - "disk_available_gb": [ - 41 - ], - "disk_used_percent": [ - 41 - ], - "end_port_range": [ - 41 - ], - "pin_build_id": [ - 41 - ], - "shader_bake_progress": [ - 3646 - ], - "start_port_range": [ - 41 - ], - "total_server_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_sum_order_by": { - "build_id": [ - 3648 - ], - "cpu_cores_per_socket": [ - 3648 - ], - "cpu_sockets": [ - 3648 - ], - "cpu_threads_per_core": [ - 3648 - ], - "csgo_build_id": [ - 3648 - ], - "demo_network_limiter": [ - 3648 - ], - "disk_available_gb": [ - 3648 - ], - "disk_used_percent": [ - 3648 - ], - "end_port_range": [ - 3648 - ], - "pin_build_id": [ - 3648 - ], - "shader_bake_progress": [ - 3648 - ], - "start_port_range": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_update_column": {}, - "game_server_nodes_updates": { - "_append": [ - 2322 - ], - "_delete_at_path": [ - 2328 - ], - "_delete_elem": [ - 2329 - ], - "_delete_key": [ - 2330 - ], - "_inc": [ - 2331 - ], - "_prepend": [ - 2342 - ], - "_set": [ - 2346 - ], - "where": [ - 2326 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_var_pop_fields": { - "available_server_count": [ - 41 - ], - "build_id": [ - 32 - ], - "cpu_cores_per_socket": [ - 32 - ], - "cpu_sockets": [ - 32 - ], - "cpu_threads_per_core": [ - 32 - ], - "csgo_build_id": [ - 32 - ], - "demo_network_limiter": [ - 32 - ], - "disk_available_gb": [ - 32 - ], - "disk_used_percent": [ - 32 - ], - "end_port_range": [ - 32 - ], - "pin_build_id": [ - 32 - ], - "shader_bake_progress": [ - 32 - ], - "start_port_range": [ - 32 - ], - "total_server_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_var_pop_order_by": { - "build_id": [ - 3648 - ], - "cpu_cores_per_socket": [ - 3648 - ], - "cpu_sockets": [ - 3648 - ], - "cpu_threads_per_core": [ - 3648 - ], - "csgo_build_id": [ - 3648 - ], - "demo_network_limiter": [ - 3648 - ], - "disk_available_gb": [ - 3648 - ], - "disk_used_percent": [ - 3648 - ], - "end_port_range": [ - 3648 - ], - "pin_build_id": [ - 3648 - ], - "shader_bake_progress": [ - 3648 - ], - "start_port_range": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_var_samp_fields": { - "available_server_count": [ - 41 - ], - "build_id": [ - 32 - ], - "cpu_cores_per_socket": [ - 32 - ], - "cpu_sockets": [ - 32 - ], - "cpu_threads_per_core": [ - 32 - ], - "csgo_build_id": [ - 32 - ], - "demo_network_limiter": [ - 32 - ], - "disk_available_gb": [ - 32 - ], - "disk_used_percent": [ - 32 - ], - "end_port_range": [ - 32 - ], - "pin_build_id": [ - 32 - ], - "shader_bake_progress": [ - 32 - ], - "start_port_range": [ - 32 - ], - "total_server_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_var_samp_order_by": { - "build_id": [ - 3648 - ], - "cpu_cores_per_socket": [ - 3648 - ], - "cpu_sockets": [ - 3648 - ], - "cpu_threads_per_core": [ - 3648 - ], - "csgo_build_id": [ - 3648 - ], - "demo_network_limiter": [ - 3648 - ], - "disk_available_gb": [ - 3648 - ], - "disk_used_percent": [ - 3648 - ], - "end_port_range": [ - 3648 - ], - "pin_build_id": [ - 3648 - ], - "shader_bake_progress": [ - 3648 - ], - "start_port_range": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_variance_fields": { - "available_server_count": [ - 41 - ], - "build_id": [ - 32 - ], - "cpu_cores_per_socket": [ - 32 - ], - "cpu_sockets": [ - 32 - ], - "cpu_threads_per_core": [ - 32 - ], - "csgo_build_id": [ - 32 - ], - "demo_network_limiter": [ - 32 - ], - "disk_available_gb": [ - 32 - ], - "disk_used_percent": [ - 32 - ], - "end_port_range": [ - 32 - ], - "pin_build_id": [ - 32 - ], - "shader_bake_progress": [ - 32 - ], - "start_port_range": [ - 32 - ], - "total_server_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "game_server_nodes_variance_order_by": { - "build_id": [ - 3648 - ], - "cpu_cores_per_socket": [ - 3648 - ], - "cpu_sockets": [ - 3648 - ], - "cpu_threads_per_core": [ - 3648 - ], - "csgo_build_id": [ - 3648 - ], - "demo_network_limiter": [ - 3648 - ], - "disk_available_gb": [ - 3648 - ], - "disk_used_percent": [ - 3648 - ], - "end_port_range": [ - 3648 - ], - "pin_build_id": [ - 3648 - ], - "shader_bake_progress": [ - 3648 - ], - "start_port_range": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "game_versions": { - "build_id": [ - 41 - ], - "current": [ - 6 - ], - "cvars": [ - 6 - ], - "description": [ - 85 - ], - "downloads": [ - 2439, - { - "path": [ - 85 - ] - } - ], - "updated_at": [ - 5243 - ], - "version": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "game_versions_aggregate": { - "aggregate": [ - 2367 - ], - "nodes": [ - 2365 - ], - "__typename": [ - 85 - ] - }, - "game_versions_aggregate_fields": { - "avg": [ - 2369 - ], - "count": [ - 41, - { - "columns": [ - 2385, - "[game_versions_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 2377 - ], - "min": [ - 2378 - ], - "stddev": [ - 2387 - ], - "stddev_pop": [ - 2388 - ], - "stddev_samp": [ - 2389 - ], - "sum": [ - 2392 - ], - "var_pop": [ - 2395 - ], - "var_samp": [ - 2396 - ], - "variance": [ - 2397 - ], - "__typename": [ - 85 - ] - }, - "game_versions_append_input": { - "downloads": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "game_versions_avg_fields": { - "build_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "game_versions_bool_exp": { - "_and": [ - 2370 - ], - "_not": [ - 2370 - ], - "_or": [ - 2370 - ], - "build_id": [ - 42 - ], - "current": [ - 7 - ], - "cvars": [ - 7 - ], - "description": [ - 87 - ], - "downloads": [ - 2441 - ], - "updated_at": [ - 5244 - ], - "version": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "game_versions_constraint": {}, - "game_versions_delete_at_path_input": { - "downloads": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "game_versions_delete_elem_input": { - "downloads": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "game_versions_delete_key_input": { - "downloads": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "game_versions_inc_input": { - "build_id": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "game_versions_insert_input": { - "build_id": [ - 41 - ], - "current": [ - 6 - ], - "cvars": [ - 6 - ], - "description": [ - 85 - ], - "downloads": [ - 2439 - ], - "updated_at": [ - 5243 - ], - "version": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "game_versions_max_fields": { - "build_id": [ - 41 - ], - "description": [ - 85 - ], - "updated_at": [ - 5243 - ], - "version": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "game_versions_min_fields": { - "build_id": [ - 41 - ], - "description": [ - 85 - ], - "updated_at": [ - 5243 - ], - "version": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "game_versions_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 2365 - ], - "__typename": [ - 85 - ] - }, - "game_versions_obj_rel_insert_input": { - "data": [ - 2376 - ], - "on_conflict": [ - 2381 - ], - "__typename": [ - 85 - ] - }, - "game_versions_on_conflict": { - "constraint": [ - 2371 - ], - "update_columns": [ - 2393 - ], - "where": [ - 2370 - ], - "__typename": [ - 85 - ] - }, - "game_versions_order_by": { - "build_id": [ - 3648 - ], - "current": [ - 3648 - ], - "cvars": [ - 3648 - ], - "description": [ - 3648 - ], - "downloads": [ - 3648 - ], - "updated_at": [ - 3648 - ], - "version": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "game_versions_pk_columns_input": { - "build_id": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "game_versions_prepend_input": { - "downloads": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "game_versions_select_column": {}, - "game_versions_set_input": { - "build_id": [ - 41 - ], - "current": [ - 6 - ], - "cvars": [ - 6 - ], - "description": [ - 85 - ], - "downloads": [ - 2439 - ], - "updated_at": [ - 5243 - ], - "version": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "game_versions_stddev_fields": { - "build_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "game_versions_stddev_pop_fields": { - "build_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "game_versions_stddev_samp_fields": { - "build_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "game_versions_stream_cursor_input": { - "initial_value": [ - 2391 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "game_versions_stream_cursor_value_input": { - "build_id": [ - 41 - ], - "current": [ - 6 - ], - "cvars": [ - 6 - ], - "description": [ - 85 - ], - "downloads": [ - 2439 - ], - "updated_at": [ - 5243 - ], - "version": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "game_versions_sum_fields": { - "build_id": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "game_versions_update_column": {}, - "game_versions_updates": { - "_append": [ - 2368 - ], - "_delete_at_path": [ - 2372 - ], - "_delete_elem": [ - 2373 - ], - "_delete_key": [ - 2374 - ], - "_inc": [ - 2375 - ], - "_prepend": [ - 2384 - ], - "_set": [ - 2386 - ], - "where": [ - 2370 - ], - "__typename": [ - 85 - ] - }, - "game_versions_var_pop_fields": { - "build_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "game_versions_var_samp_fields": { - "build_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "game_versions_variance_fields": { - "build_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "gamedata_signature_validations": { - "branch": [ - 85 - ], - "build_id": [ - 41 - ], - "game_version": [ - 2365 - ], - "id": [ - 6672 - ], - "results": [ - 2439, - { - "path": [ - 85 - ] - } - ], - "status": [ - 85 - ], - "validated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "gamedata_signature_validations_aggregate": { - "aggregate": [ - 2400 - ], - "nodes": [ - 2398 - ], - "__typename": [ - 85 - ] - }, - "gamedata_signature_validations_aggregate_fields": { - "avg": [ - 2402 - ], - "count": [ - 41, - { - "columns": [ - 2417, - "[gamedata_signature_validations_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 2410 - ], - "min": [ - 2411 - ], - "stddev": [ - 2419 - ], - "stddev_pop": [ - 2420 - ], - "stddev_samp": [ - 2421 - ], - "sum": [ - 2424 - ], - "var_pop": [ - 2427 - ], - "var_samp": [ - 2428 - ], - "variance": [ - 2429 - ], - "__typename": [ - 85 - ] - }, - "gamedata_signature_validations_append_input": { - "results": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "gamedata_signature_validations_avg_fields": { - "build_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "gamedata_signature_validations_bool_exp": { - "_and": [ - 2403 - ], - "_not": [ - 2403 - ], - "_or": [ - 2403 - ], - "branch": [ - 87 - ], - "build_id": [ - 42 - ], - "game_version": [ - 2370 - ], - "id": [ - 6674 - ], - "results": [ - 2441 - ], - "status": [ - 87 - ], - "validated_at": [ - 5244 - ], - "__typename": [ - 85 - ] - }, - "gamedata_signature_validations_constraint": {}, - "gamedata_signature_validations_delete_at_path_input": { - "results": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "gamedata_signature_validations_delete_elem_input": { - "results": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "gamedata_signature_validations_delete_key_input": { - "results": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "gamedata_signature_validations_inc_input": { - "build_id": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "gamedata_signature_validations_insert_input": { - "branch": [ - 85 - ], - "build_id": [ - 41 - ], - "game_version": [ - 2380 - ], - "id": [ - 6672 - ], - "results": [ - 2439 - ], - "status": [ - 85 - ], - "validated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "gamedata_signature_validations_max_fields": { - "branch": [ - 85 - ], - "build_id": [ - 41 - ], - "id": [ - 6672 - ], - "status": [ - 85 - ], - "validated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "gamedata_signature_validations_min_fields": { - "branch": [ - 85 - ], - "build_id": [ - 41 - ], - "id": [ - 6672 - ], - "status": [ - 85 - ], - "validated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "gamedata_signature_validations_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 2398 - ], - "__typename": [ - 85 - ] - }, - "gamedata_signature_validations_on_conflict": { - "constraint": [ - 2404 - ], - "update_columns": [ - 2425 - ], - "where": [ - 2403 - ], - "__typename": [ - 85 - ] - }, - "gamedata_signature_validations_order_by": { - "branch": [ - 3648 - ], - "build_id": [ - 3648 - ], - "game_version": [ - 2382 - ], - "id": [ - 3648 - ], - "results": [ - 3648 - ], - "status": [ - 3648 - ], - "validated_at": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "gamedata_signature_validations_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "gamedata_signature_validations_prepend_input": { - "results": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "gamedata_signature_validations_select_column": {}, - "gamedata_signature_validations_set_input": { - "branch": [ - 85 - ], - "build_id": [ - 41 - ], - "id": [ - 6672 - ], - "results": [ - 2439 - ], - "status": [ - 85 - ], - "validated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "gamedata_signature_validations_stddev_fields": { - "build_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "gamedata_signature_validations_stddev_pop_fields": { - "build_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "gamedata_signature_validations_stddev_samp_fields": { - "build_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "gamedata_signature_validations_stream_cursor_input": { - "initial_value": [ - 2423 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "gamedata_signature_validations_stream_cursor_value_input": { - "branch": [ - 85 - ], - "build_id": [ - 41 - ], - "id": [ - 6672 - ], - "results": [ - 2439 - ], - "status": [ - 85 - ], - "validated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "gamedata_signature_validations_sum_fields": { - "build_id": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "gamedata_signature_validations_update_column": {}, - "gamedata_signature_validations_updates": { - "_append": [ - 2401 - ], - "_delete_at_path": [ - 2405 - ], - "_delete_elem": [ - 2406 - ], - "_delete_key": [ - 2407 - ], - "_inc": [ - 2408 - ], - "_prepend": [ - 2416 - ], - "_set": [ - 2418 - ], - "where": [ - 2403 - ], - "__typename": [ - 85 - ] - }, - "gamedata_signature_validations_var_pop_fields": { - "build_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "gamedata_signature_validations_var_samp_fields": { - "build_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "gamedata_signature_validations_variance_fields": { - "build_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "get_event_leaderboard_args": { - "_category": [ - 85 - ], - "_event_id": [ - 6672 - ], - "_match_type": [ - 85 - ], - "_min_rounds": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "get_leaderboard_args": { - "_category": [ - 85 - ], - "_exclude_tournaments": [ - 6 - ], - "_match_type": [ - 85 - ], - "_role": [ - 85 - ], - "_season_id": [ - 6672 - ], - "_source": [ - 85 - ], - "_window_days": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "get_league_season_leaderboard_args": { - "_category": [ - 85 - ], - "_league_season_id": [ - 6672 - ], - "_role": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "get_player_leaderboard_rank_args": { - "_category": [ - 85 - ], - "_exclude_tournaments": [ - 6 - ], - "_match_type": [ - 85 - ], - "_player_steam_id": [ - 85 - ], - "_season_id": [ - 6672 - ], - "_source": [ - 85 - ], - "_window_days": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "get_tournament_leaderboard_args": { - "_tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "inet": {}, - "inet_comparison_exp": { - "_eq": [ - 2435 - ], - "_gt": [ - 2435 - ], - "_gte": [ - 2435 - ], - "_in": [ - 2435 - ], - "_is_null": [ - 6 - ], - "_lt": [ - 2435 - ], - "_lte": [ - 2435 - ], - "_neq": [ - 2435 - ], - "_nin": [ - 2435 - ], - "__typename": [ - 85 - ] - }, - "json": {}, - "json_comparison_exp": { - "_eq": [ - 2437 - ], - "_gt": [ - 2437 - ], - "_gte": [ - 2437 - ], - "_in": [ - 2437 - ], - "_is_null": [ - 6 - ], - "_lt": [ - 2437 - ], - "_lte": [ - 2437 - ], - "_neq": [ - 2437 - ], - "_nin": [ - 2437 - ], - "__typename": [ - 85 - ] - }, - "jsonb": {}, - "jsonb_cast_exp": { - "String": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "jsonb_comparison_exp": { - "_cast": [ - 2440 - ], - "_contained_in": [ - 2439 - ], - "_contains": [ - 2439 - ], - "_eq": [ - 2439 - ], - "_gt": [ - 2439 - ], - "_gte": [ - 2439 - ], - "_has_key": [ - 85 - ], - "_has_keys_all": [ - 85 - ], - "_has_keys_any": [ - 85 - ], - "_in": [ - 2439 - ], - "_is_null": [ - 6 - ], - "_lt": [ - 2439 - ], - "_lte": [ - 2439 - ], - "_neq": [ - 2439 - ], - "_nin": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "leaderboard_entries": { - "matches_played": [ - 41 - ], - "player_avatar_url": [ - 85 - ], - "player_country": [ - 85 - ], - "player_custom_avatar_url": [ - 85 - ], - "player_name": [ - 85 - ], - "player_steam_id": [ - 85 - ], - "secondary_value": [ - 2093 - ], - "tertiary_value": [ - 2093 - ], - "value": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "leaderboard_entries_aggregate": { - "aggregate": [ - 2444 - ], - "nodes": [ - 2442 - ], - "__typename": [ - 85 - ] - }, - "leaderboard_entries_aggregate_fields": { - "avg": [ - 2445 - ], - "count": [ - 41, - { - "columns": [ - 2453, - "[leaderboard_entries_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 2449 - ], - "min": [ - 2450 - ], - "stddev": [ - 2455 - ], - "stddev_pop": [ - 2456 - ], - "stddev_samp": [ - 2457 - ], - "sum": [ - 2460 - ], - "var_pop": [ - 2462 - ], - "var_samp": [ - 2463 - ], - "variance": [ - 2464 - ], - "__typename": [ - 85 - ] - }, - "leaderboard_entries_avg_fields": { - "matches_played": [ - 32 - ], - "secondary_value": [ - 32 - ], - "tertiary_value": [ - 32 - ], - "value": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "leaderboard_entries_bool_exp": { - "_and": [ - 2446 - ], - "_not": [ - 2446 - ], - "_or": [ - 2446 - ], - "matches_played": [ - 42 - ], - "player_avatar_url": [ - 87 - ], - "player_country": [ - 87 - ], - "player_custom_avatar_url": [ - 87 - ], - "player_name": [ - 87 - ], - "player_steam_id": [ - 87 - ], - "secondary_value": [ - 2094 - ], - "tertiary_value": [ - 2094 - ], - "value": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "leaderboard_entries_inc_input": { - "matches_played": [ - 41 - ], - "secondary_value": [ - 2093 - ], - "tertiary_value": [ - 2093 - ], - "value": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "leaderboard_entries_insert_input": { - "matches_played": [ - 41 - ], - "player_avatar_url": [ - 85 - ], - "player_country": [ - 85 - ], - "player_custom_avatar_url": [ - 85 - ], - "player_name": [ - 85 - ], - "player_steam_id": [ - 85 - ], - "secondary_value": [ - 2093 - ], - "tertiary_value": [ - 2093 - ], - "value": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "leaderboard_entries_max_fields": { - "matches_played": [ - 41 - ], - "player_avatar_url": [ - 85 - ], - "player_country": [ - 85 - ], - "player_custom_avatar_url": [ - 85 - ], - "player_name": [ - 85 - ], - "player_steam_id": [ - 85 - ], - "secondary_value": [ - 2093 - ], - "tertiary_value": [ - 2093 - ], - "value": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "leaderboard_entries_min_fields": { - "matches_played": [ - 41 - ], - "player_avatar_url": [ - 85 - ], - "player_country": [ - 85 - ], - "player_custom_avatar_url": [ - 85 - ], - "player_name": [ - 85 - ], - "player_steam_id": [ - 85 - ], - "secondary_value": [ - 2093 - ], - "tertiary_value": [ - 2093 - ], - "value": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "leaderboard_entries_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 2442 - ], - "__typename": [ - 85 - ] - }, - "leaderboard_entries_order_by": { - "matches_played": [ - 3648 - ], - "player_avatar_url": [ - 3648 - ], - "player_country": [ - 3648 - ], - "player_custom_avatar_url": [ - 3648 - ], - "player_name": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "secondary_value": [ - 3648 - ], - "tertiary_value": [ - 3648 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "leaderboard_entries_select_column": {}, - "leaderboard_entries_set_input": { - "matches_played": [ - 41 - ], - "player_avatar_url": [ - 85 - ], - "player_country": [ - 85 - ], - "player_custom_avatar_url": [ - 85 - ], - "player_name": [ - 85 - ], - "player_steam_id": [ - 85 - ], - "secondary_value": [ - 2093 - ], - "tertiary_value": [ - 2093 - ], - "value": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "leaderboard_entries_stddev_fields": { - "matches_played": [ - 32 - ], - "secondary_value": [ - 32 - ], - "tertiary_value": [ - 32 - ], - "value": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "leaderboard_entries_stddev_pop_fields": { - "matches_played": [ - 32 - ], - "secondary_value": [ - 32 - ], - "tertiary_value": [ - 32 - ], - "value": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "leaderboard_entries_stddev_samp_fields": { - "matches_played": [ - 32 - ], - "secondary_value": [ - 32 - ], - "tertiary_value": [ - 32 - ], - "value": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "leaderboard_entries_stream_cursor_input": { - "initial_value": [ - 2459 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "leaderboard_entries_stream_cursor_value_input": { - "matches_played": [ - 41 - ], - "player_avatar_url": [ - 85 - ], - "player_country": [ - 85 - ], - "player_custom_avatar_url": [ - 85 - ], - "player_name": [ - 85 - ], - "player_steam_id": [ - 85 - ], - "secondary_value": [ - 2093 - ], - "tertiary_value": [ - 2093 - ], - "value": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "leaderboard_entries_sum_fields": { - "matches_played": [ - 41 - ], - "secondary_value": [ - 2093 - ], - "tertiary_value": [ - 2093 - ], - "value": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "leaderboard_entries_updates": { - "_inc": [ - 2447 - ], - "_set": [ - 2454 - ], - "where": [ - 2446 - ], - "__typename": [ - 85 - ] - }, - "leaderboard_entries_var_pop_fields": { - "matches_played": [ - 32 - ], - "secondary_value": [ - 32 - ], - "tertiary_value": [ - 32 - ], - "value": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "leaderboard_entries_var_samp_fields": { - "matches_played": [ - 32 - ], - "secondary_value": [ - 32 - ], - "tertiary_value": [ - 32 - ], - "value": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "leaderboard_entries_variance_fields": { - "matches_played": [ - 32 - ], - "secondary_value": [ - 32 - ], - "tertiary_value": [ - 32 - ], - "value": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_award_forfeit_args": { - "_tournament_bracket_id": [ - 6672 - ], - "_winning_tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "league_divisions": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "name": [ - 85 - ], - "season_divisions": [ - 2617, - { - "distinct_on": [ - 2636, - "[league_season_divisions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2634, - "[league_season_divisions_order_by!]" - ], - "where": [ - 2624 - ] - } - ], - "season_divisions_aggregate": [ - 2618, - { - "distinct_on": [ - 2636, - "[league_season_divisions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2634, - "[league_season_divisions_order_by!]" - ], - "where": [ - 2624 - ] - } - ], - "tier": [ - 4830 - ], - "__typename": [ - 85 - ] - }, - "league_divisions_aggregate": { - "aggregate": [ - 2468 - ], - "nodes": [ - 2466 - ], - "__typename": [ - 85 - ] - }, - "league_divisions_aggregate_fields": { - "avg": [ - 2469 - ], - "count": [ - 41, - { - "columns": [ - 2481, - "[league_divisions_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 2474 - ], - "min": [ - 2475 - ], - "stddev": [ - 2483 - ], - "stddev_pop": [ - 2484 - ], - "stddev_samp": [ - 2485 - ], - "sum": [ - 2488 - ], - "var_pop": [ - 2491 - ], - "var_samp": [ - 2492 - ], - "variance": [ - 2493 - ], - "__typename": [ - 85 - ] - }, - "league_divisions_avg_fields": { - "tier": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_divisions_bool_exp": { - "_and": [ - 2470 - ], - "_not": [ - 2470 - ], - "_or": [ - 2470 - ], - "created_at": [ - 5244 - ], - "id": [ - 6674 - ], - "name": [ - 87 - ], - "season_divisions": [ - 2624 - ], - "season_divisions_aggregate": [ - 2619 - ], - "tier": [ - 4831 - ], - "__typename": [ - 85 - ] - }, - "league_divisions_constraint": {}, - "league_divisions_inc_input": { - "tier": [ - 4830 - ], - "__typename": [ - 85 - ] - }, - "league_divisions_insert_input": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "name": [ - 85 - ], - "season_divisions": [ - 2623 - ], - "tier": [ - 4830 - ], - "__typename": [ - 85 - ] - }, - "league_divisions_max_fields": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "name": [ - 85 - ], - "tier": [ - 4830 - ], - "__typename": [ - 85 - ] - }, - "league_divisions_min_fields": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "name": [ - 85 - ], - "tier": [ - 4830 - ], - "__typename": [ - 85 - ] - }, - "league_divisions_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 2466 - ], - "__typename": [ - 85 - ] - }, - "league_divisions_obj_rel_insert_input": { - "data": [ - 2473 - ], - "on_conflict": [ - 2478 - ], - "__typename": [ - 85 - ] - }, - "league_divisions_on_conflict": { - "constraint": [ - 2471 - ], - "update_columns": [ - 2489 - ], - "where": [ - 2470 - ], - "__typename": [ - 85 - ] - }, - "league_divisions_order_by": { - "created_at": [ - 3648 - ], - "id": [ - 3648 - ], - "name": [ - 3648 - ], - "season_divisions_aggregate": [ - 2622 - ], - "tier": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_divisions_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "league_divisions_select_column": {}, - "league_divisions_set_input": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "name": [ - 85 - ], - "tier": [ - 4830 - ], - "__typename": [ - 85 - ] - }, - "league_divisions_stddev_fields": { - "tier": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_divisions_stddev_pop_fields": { - "tier": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_divisions_stddev_samp_fields": { - "tier": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_divisions_stream_cursor_input": { - "initial_value": [ - 2487 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "league_divisions_stream_cursor_value_input": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "name": [ - 85 - ], - "tier": [ - 4830 - ], - "__typename": [ - 85 - ] - }, - "league_divisions_sum_fields": { - "tier": [ - 4830 - ], - "__typename": [ - 85 - ] - }, - "league_divisions_update_column": {}, - "league_divisions_updates": { - "_inc": [ - 2472 - ], - "_set": [ - 2482 - ], - "where": [ - 2470 - ], - "__typename": [ - 85 - ] - }, - "league_divisions_var_pop_fields": { - "tier": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_divisions_var_samp_fields": { - "tier": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_divisions_variance_fields": { - "tier": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_match_weeks": { - "closes_at": [ - 5243 - ], - "created_at": [ - 5243 - ], - "default_match_at": [ - 5243 - ], - "id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "opens_at": [ - 5243 - ], - "season": [ - 2642 - ], - "week_number": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "league_match_weeks_aggregate": { - "aggregate": [ - 2498 - ], - "nodes": [ - 2494 - ], - "__typename": [ - 85 - ] - }, - "league_match_weeks_aggregate_bool_exp": { - "count": [ - 2497 - ], - "__typename": [ - 85 - ] - }, - "league_match_weeks_aggregate_bool_exp_count": { - "arguments": [ - 2515 - ], - "distinct": [ - 6 - ], - "filter": [ - 2503 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "league_match_weeks_aggregate_fields": { - "avg": [ - 2501 - ], - "count": [ - 41, - { - "columns": [ - 2515, - "[league_match_weeks_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 2507 - ], - "min": [ - 2509 - ], - "stddev": [ - 2517 - ], - "stddev_pop": [ - 2519 - ], - "stddev_samp": [ - 2521 - ], - "sum": [ - 2525 - ], - "var_pop": [ - 2529 - ], - "var_samp": [ - 2531 - ], - "variance": [ - 2533 - ], - "__typename": [ - 85 - ] - }, - "league_match_weeks_aggregate_order_by": { - "avg": [ - 2502 - ], - "count": [ - 3648 - ], - "max": [ - 2508 - ], - "min": [ - 2510 - ], - "stddev": [ - 2518 - ], - "stddev_pop": [ - 2520 - ], - "stddev_samp": [ - 2522 - ], - "sum": [ - 2526 - ], - "var_pop": [ - 2530 - ], - "var_samp": [ - 2532 - ], - "variance": [ - 2534 - ], - "__typename": [ - 85 - ] - }, - "league_match_weeks_arr_rel_insert_input": { - "data": [ - 2506 - ], - "on_conflict": [ - 2512 - ], - "__typename": [ - 85 - ] - }, - "league_match_weeks_avg_fields": { - "week_number": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_match_weeks_avg_order_by": { - "week_number": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_match_weeks_bool_exp": { - "_and": [ - 2503 - ], - "_not": [ - 2503 - ], - "_or": [ - 2503 - ], - "closes_at": [ - 5244 - ], - "created_at": [ - 5244 - ], - "default_match_at": [ - 5244 - ], - "id": [ - 6674 - ], - "league_season_id": [ - 6674 - ], - "opens_at": [ - 5244 - ], - "season": [ - 2647 - ], - "week_number": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "league_match_weeks_constraint": {}, - "league_match_weeks_inc_input": { - "week_number": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "league_match_weeks_insert_input": { - "closes_at": [ - 5243 - ], - "created_at": [ - 5243 - ], - "default_match_at": [ - 5243 - ], - "id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "opens_at": [ - 5243 - ], - "season": [ - 2657 - ], - "week_number": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "league_match_weeks_max_fields": { - "closes_at": [ - 5243 - ], - "created_at": [ - 5243 - ], - "default_match_at": [ - 5243 - ], - "id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "opens_at": [ - 5243 - ], - "week_number": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "league_match_weeks_max_order_by": { - "closes_at": [ - 3648 - ], - "created_at": [ - 3648 - ], - "default_match_at": [ - 3648 - ], - "id": [ - 3648 - ], - "league_season_id": [ - 3648 - ], - "opens_at": [ - 3648 - ], - "week_number": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_match_weeks_min_fields": { - "closes_at": [ - 5243 - ], - "created_at": [ - 5243 - ], - "default_match_at": [ - 5243 - ], - "id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "opens_at": [ - 5243 - ], - "week_number": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "league_match_weeks_min_order_by": { - "closes_at": [ - 3648 - ], - "created_at": [ - 3648 - ], - "default_match_at": [ - 3648 - ], - "id": [ - 3648 - ], - "league_season_id": [ - 3648 - ], - "opens_at": [ - 3648 - ], - "week_number": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_match_weeks_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 2494 - ], - "__typename": [ - 85 - ] - }, - "league_match_weeks_on_conflict": { - "constraint": [ - 2504 - ], - "update_columns": [ - 2527 - ], - "where": [ - 2503 - ], - "__typename": [ - 85 - ] - }, - "league_match_weeks_order_by": { - "closes_at": [ - 3648 - ], - "created_at": [ - 3648 - ], - "default_match_at": [ - 3648 - ], - "id": [ - 3648 - ], - "league_season_id": [ - 3648 - ], - "opens_at": [ - 3648 - ], - "season": [ - 2659 - ], - "week_number": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_match_weeks_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "league_match_weeks_select_column": {}, - "league_match_weeks_set_input": { - "closes_at": [ - 5243 - ], - "created_at": [ - 5243 - ], - "default_match_at": [ - 5243 - ], - "id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "opens_at": [ - 5243 - ], - "week_number": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "league_match_weeks_stddev_fields": { - "week_number": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_match_weeks_stddev_order_by": { - "week_number": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_match_weeks_stddev_pop_fields": { - "week_number": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_match_weeks_stddev_pop_order_by": { - "week_number": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_match_weeks_stddev_samp_fields": { - "week_number": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_match_weeks_stddev_samp_order_by": { - "week_number": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_match_weeks_stream_cursor_input": { - "initial_value": [ - 2524 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "league_match_weeks_stream_cursor_value_input": { - "closes_at": [ - 5243 - ], - "created_at": [ - 5243 - ], - "default_match_at": [ - 5243 - ], - "id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "opens_at": [ - 5243 - ], - "week_number": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "league_match_weeks_sum_fields": { - "week_number": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "league_match_weeks_sum_order_by": { - "week_number": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_match_weeks_update_column": {}, - "league_match_weeks_updates": { - "_inc": [ - 2505 - ], - "_set": [ - 2516 - ], - "where": [ - 2503 - ], - "__typename": [ - 85 - ] - }, - "league_match_weeks_var_pop_fields": { - "week_number": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_match_weeks_var_pop_order_by": { - "week_number": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_match_weeks_var_samp_fields": { - "week_number": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_match_weeks_var_samp_order_by": { - "week_number": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_match_weeks_variance_fields": { - "week_number": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_match_weeks_variance_order_by": { - "week_number": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_relegation_playoffs": { - "created_at": [ - 5243 - ], - "higher_division": [ - 2466 - ], - "higher_division_id": [ - 6672 - ], - "higher_slots": [ - 41 - ], - "id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "lower_division": [ - 2466 - ], - "lower_division_id": [ - 6672 - ], - "resolved_at": [ - 5243 - ], - "season": [ - 2642 - ], - "tournament": [ - 5896 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "league_relegation_playoffs_aggregate": { - "aggregate": [ - 2539 - ], - "nodes": [ - 2535 - ], - "__typename": [ - 85 - ] - }, - "league_relegation_playoffs_aggregate_bool_exp": { - "count": [ - 2538 - ], - "__typename": [ - 85 - ] - }, - "league_relegation_playoffs_aggregate_bool_exp_count": { - "arguments": [ - 2556 - ], - "distinct": [ - 6 - ], - "filter": [ - 2544 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "league_relegation_playoffs_aggregate_fields": { - "avg": [ - 2542 - ], - "count": [ - 41, - { - "columns": [ - 2556, - "[league_relegation_playoffs_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 2548 - ], - "min": [ - 2550 - ], - "stddev": [ - 2558 - ], - "stddev_pop": [ - 2560 - ], - "stddev_samp": [ - 2562 - ], - "sum": [ - 2566 - ], - "var_pop": [ - 2570 - ], - "var_samp": [ - 2572 - ], - "variance": [ - 2574 - ], - "__typename": [ - 85 - ] - }, - "league_relegation_playoffs_aggregate_order_by": { - "avg": [ - 2543 - ], - "count": [ - 3648 - ], - "max": [ - 2549 - ], - "min": [ - 2551 - ], - "stddev": [ - 2559 - ], - "stddev_pop": [ - 2561 - ], - "stddev_samp": [ - 2563 - ], - "sum": [ - 2567 - ], - "var_pop": [ - 2571 - ], - "var_samp": [ - 2573 - ], - "variance": [ - 2575 - ], - "__typename": [ - 85 - ] - }, - "league_relegation_playoffs_arr_rel_insert_input": { - "data": [ - 2547 - ], - "on_conflict": [ - 2553 - ], - "__typename": [ - 85 - ] - }, - "league_relegation_playoffs_avg_fields": { - "higher_slots": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_relegation_playoffs_avg_order_by": { - "higher_slots": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_relegation_playoffs_bool_exp": { - "_and": [ - 2544 - ], - "_not": [ - 2544 - ], - "_or": [ - 2544 - ], - "created_at": [ - 5244 - ], - "higher_division": [ - 2470 - ], - "higher_division_id": [ - 6674 - ], - "higher_slots": [ - 42 - ], - "id": [ - 6674 - ], - "league_season_id": [ - 6674 - ], - "lower_division": [ - 2470 - ], - "lower_division_id": [ - 6674 - ], - "resolved_at": [ - 5244 - ], - "season": [ - 2647 - ], - "tournament": [ - 5917 - ], - "tournament_id": [ - 6674 - ], - "__typename": [ - 85 - ] - }, - "league_relegation_playoffs_constraint": {}, - "league_relegation_playoffs_inc_input": { - "higher_slots": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "league_relegation_playoffs_insert_input": { - "created_at": [ - 5243 - ], - "higher_division": [ - 2477 - ], - "higher_division_id": [ - 6672 - ], - "higher_slots": [ - 41 - ], - "id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "lower_division": [ - 2477 - ], - "lower_division_id": [ - 6672 - ], - "resolved_at": [ - 5243 - ], - "season": [ - 2657 - ], - "tournament": [ - 5926 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "league_relegation_playoffs_max_fields": { - "created_at": [ - 5243 - ], - "higher_division_id": [ - 6672 - ], - "higher_slots": [ - 41 - ], - "id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "lower_division_id": [ - 6672 - ], - "resolved_at": [ - 5243 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "league_relegation_playoffs_max_order_by": { - "created_at": [ - 3648 - ], - "higher_division_id": [ - 3648 - ], - "higher_slots": [ - 3648 - ], - "id": [ - 3648 - ], - "league_season_id": [ - 3648 - ], - "lower_division_id": [ - 3648 - ], - "resolved_at": [ - 3648 - ], - "tournament_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_relegation_playoffs_min_fields": { - "created_at": [ - 5243 - ], - "higher_division_id": [ - 6672 - ], - "higher_slots": [ - 41 - ], - "id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "lower_division_id": [ - 6672 - ], - "resolved_at": [ - 5243 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "league_relegation_playoffs_min_order_by": { - "created_at": [ - 3648 - ], - "higher_division_id": [ - 3648 - ], - "higher_slots": [ - 3648 - ], - "id": [ - 3648 - ], - "league_season_id": [ - 3648 - ], - "lower_division_id": [ - 3648 - ], - "resolved_at": [ - 3648 - ], - "tournament_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_relegation_playoffs_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 2535 - ], - "__typename": [ - 85 - ] - }, - "league_relegation_playoffs_on_conflict": { - "constraint": [ - 2545 - ], - "update_columns": [ - 2568 - ], - "where": [ - 2544 - ], - "__typename": [ - 85 - ] - }, - "league_relegation_playoffs_order_by": { - "created_at": [ - 3648 - ], - "higher_division": [ - 2479 - ], - "higher_division_id": [ - 3648 - ], - "higher_slots": [ - 3648 - ], - "id": [ - 3648 - ], - "league_season_id": [ - 3648 - ], - "lower_division": [ - 2479 - ], - "lower_division_id": [ - 3648 - ], - "resolved_at": [ - 3648 - ], - "season": [ - 2659 - ], - "tournament": [ - 5928 - ], - "tournament_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_relegation_playoffs_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "league_relegation_playoffs_select_column": {}, - "league_relegation_playoffs_set_input": { - "created_at": [ - 5243 - ], - "higher_division_id": [ - 6672 - ], - "higher_slots": [ - 41 - ], - "id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "lower_division_id": [ - 6672 - ], - "resolved_at": [ - 5243 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "league_relegation_playoffs_stddev_fields": { - "higher_slots": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_relegation_playoffs_stddev_order_by": { - "higher_slots": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_relegation_playoffs_stddev_pop_fields": { - "higher_slots": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_relegation_playoffs_stddev_pop_order_by": { - "higher_slots": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_relegation_playoffs_stddev_samp_fields": { - "higher_slots": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_relegation_playoffs_stddev_samp_order_by": { - "higher_slots": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_relegation_playoffs_stream_cursor_input": { - "initial_value": [ - 2565 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "league_relegation_playoffs_stream_cursor_value_input": { - "created_at": [ - 5243 - ], - "higher_division_id": [ - 6672 - ], - "higher_slots": [ - 41 - ], - "id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "lower_division_id": [ - 6672 - ], - "resolved_at": [ - 5243 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "league_relegation_playoffs_sum_fields": { - "higher_slots": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "league_relegation_playoffs_sum_order_by": { - "higher_slots": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_relegation_playoffs_update_column": {}, - "league_relegation_playoffs_updates": { - "_inc": [ - 2546 - ], - "_set": [ - 2557 - ], - "where": [ - 2544 - ], - "__typename": [ - 85 - ] - }, - "league_relegation_playoffs_var_pop_fields": { - "higher_slots": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_relegation_playoffs_var_pop_order_by": { - "higher_slots": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_relegation_playoffs_var_samp_fields": { - "higher_slots": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_relegation_playoffs_var_samp_order_by": { - "higher_slots": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_relegation_playoffs_variance_fields": { - "higher_slots": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_relegation_playoffs_variance_order_by": { - "higher_slots": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_scheduling_proposals": { - "bracket": [ - 5287 - ], - "created_at": [ - 5243 - ], - "e_proposal_status": [ - 993 - ], - "id": [ - 6672 - ], - "message": [ - 85 - ], - "proposed_by": [ - 4606 - ], - "proposed_by_league_team_season_id": [ - 6672 - ], - "proposed_by_steam_id": [ - 312 - ], - "proposed_time": [ - 5243 - ], - "responded_by": [ - 4606 - ], - "responded_by_steam_id": [ - 312 - ], - "status": [ - 998 - ], - "team_season": [ - 2757 - ], - "tournament_bracket_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "league_scheduling_proposals_aggregate": { - "aggregate": [ - 2580 - ], - "nodes": [ - 2576 - ], - "__typename": [ - 85 - ] - }, - "league_scheduling_proposals_aggregate_bool_exp": { - "count": [ - 2579 - ], - "__typename": [ - 85 - ] - }, - "league_scheduling_proposals_aggregate_bool_exp_count": { - "arguments": [ - 2597 - ], - "distinct": [ - 6 - ], - "filter": [ - 2585 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "league_scheduling_proposals_aggregate_fields": { - "avg": [ - 2583 - ], - "count": [ - 41, - { - "columns": [ - 2597, - "[league_scheduling_proposals_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 2589 - ], - "min": [ - 2591 - ], - "stddev": [ - 2599 - ], - "stddev_pop": [ - 2601 - ], - "stddev_samp": [ - 2603 - ], - "sum": [ - 2607 - ], - "var_pop": [ - 2611 - ], - "var_samp": [ - 2613 - ], - "variance": [ - 2615 - ], - "__typename": [ - 85 - ] - }, - "league_scheduling_proposals_aggregate_order_by": { - "avg": [ - 2584 - ], - "count": [ - 3648 - ], - "max": [ - 2590 - ], - "min": [ - 2592 - ], - "stddev": [ - 2600 - ], - "stddev_pop": [ - 2602 - ], - "stddev_samp": [ - 2604 - ], - "sum": [ - 2608 - ], - "var_pop": [ - 2612 - ], - "var_samp": [ - 2614 - ], - "variance": [ - 2616 - ], - "__typename": [ - 85 - ] - }, - "league_scheduling_proposals_arr_rel_insert_input": { - "data": [ - 2588 - ], - "on_conflict": [ - 2594 - ], - "__typename": [ - 85 - ] - }, - "league_scheduling_proposals_avg_fields": { - "proposed_by_steam_id": [ - 32 - ], - "responded_by_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_scheduling_proposals_avg_order_by": { - "proposed_by_steam_id": [ - 3648 - ], - "responded_by_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_scheduling_proposals_bool_exp": { - "_and": [ - 2585 - ], - "_not": [ - 2585 - ], - "_or": [ - 2585 - ], - "bracket": [ - 5298 - ], - "created_at": [ - 5244 - ], - "e_proposal_status": [ - 996 - ], - "id": [ - 6674 - ], - "message": [ - 87 - ], - "proposed_by": [ - 4610 - ], - "proposed_by_league_team_season_id": [ - 6674 - ], - "proposed_by_steam_id": [ - 314 - ], - "proposed_time": [ - 5244 - ], - "responded_by": [ - 4610 - ], - "responded_by_steam_id": [ - 314 - ], - "status": [ - 999 - ], - "team_season": [ - 2766 - ], - "tournament_bracket_id": [ - 6674 - ], - "__typename": [ - 85 - ] - }, - "league_scheduling_proposals_constraint": {}, - "league_scheduling_proposals_inc_input": { - "proposed_by_steam_id": [ - 312 - ], - "responded_by_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "league_scheduling_proposals_insert_input": { - "bracket": [ - 5307 - ], - "created_at": [ - 5243 - ], - "e_proposal_status": [ - 1004 - ], - "id": [ - 6672 - ], - "message": [ - 85 - ], - "proposed_by": [ - 4617 - ], - "proposed_by_league_team_season_id": [ - 6672 - ], - "proposed_by_steam_id": [ - 312 - ], - "proposed_time": [ - 5243 - ], - "responded_by": [ - 4617 - ], - "responded_by_steam_id": [ - 312 - ], - "status": [ - 998 - ], - "team_season": [ - 2775 - ], - "tournament_bracket_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "league_scheduling_proposals_max_fields": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "message": [ - 85 - ], - "proposed_by_league_team_season_id": [ - 6672 - ], - "proposed_by_steam_id": [ - 312 - ], - "proposed_time": [ - 5243 - ], - "responded_by_steam_id": [ - 312 - ], - "tournament_bracket_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "league_scheduling_proposals_max_order_by": { - "created_at": [ - 3648 - ], - "id": [ - 3648 - ], - "message": [ - 3648 - ], - "proposed_by_league_team_season_id": [ - 3648 - ], - "proposed_by_steam_id": [ - 3648 - ], - "proposed_time": [ - 3648 - ], - "responded_by_steam_id": [ - 3648 - ], - "tournament_bracket_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_scheduling_proposals_min_fields": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "message": [ - 85 - ], - "proposed_by_league_team_season_id": [ - 6672 - ], - "proposed_by_steam_id": [ - 312 - ], - "proposed_time": [ - 5243 - ], - "responded_by_steam_id": [ - 312 - ], - "tournament_bracket_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "league_scheduling_proposals_min_order_by": { - "created_at": [ - 3648 - ], - "id": [ - 3648 - ], - "message": [ - 3648 - ], - "proposed_by_league_team_season_id": [ - 3648 - ], - "proposed_by_steam_id": [ - 3648 - ], - "proposed_time": [ - 3648 - ], - "responded_by_steam_id": [ - 3648 - ], - "tournament_bracket_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_scheduling_proposals_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 2576 - ], - "__typename": [ - 85 - ] - }, - "league_scheduling_proposals_on_conflict": { - "constraint": [ - 2586 - ], - "update_columns": [ - 2609 - ], - "where": [ - 2585 - ], - "__typename": [ - 85 - ] - }, - "league_scheduling_proposals_order_by": { - "bracket": [ - 5309 - ], - "created_at": [ - 3648 - ], - "e_proposal_status": [ - 1006 - ], - "id": [ - 3648 - ], - "message": [ - 3648 - ], - "proposed_by": [ - 4619 - ], - "proposed_by_league_team_season_id": [ - 3648 - ], - "proposed_by_steam_id": [ - 3648 - ], - "proposed_time": [ - 3648 - ], - "responded_by": [ - 4619 - ], - "responded_by_steam_id": [ - 3648 - ], - "status": [ - 3648 - ], - "team_season": [ - 2777 - ], - "tournament_bracket_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_scheduling_proposals_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "league_scheduling_proposals_select_column": {}, - "league_scheduling_proposals_set_input": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "message": [ - 85 - ], - "proposed_by_league_team_season_id": [ - 6672 - ], - "proposed_by_steam_id": [ - 312 - ], - "proposed_time": [ - 5243 - ], - "responded_by_steam_id": [ - 312 - ], - "status": [ - 998 - ], - "tournament_bracket_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "league_scheduling_proposals_stddev_fields": { - "proposed_by_steam_id": [ - 32 - ], - "responded_by_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_scheduling_proposals_stddev_order_by": { - "proposed_by_steam_id": [ - 3648 - ], - "responded_by_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_scheduling_proposals_stddev_pop_fields": { - "proposed_by_steam_id": [ - 32 - ], - "responded_by_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_scheduling_proposals_stddev_pop_order_by": { - "proposed_by_steam_id": [ - 3648 - ], - "responded_by_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_scheduling_proposals_stddev_samp_fields": { - "proposed_by_steam_id": [ - 32 - ], - "responded_by_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_scheduling_proposals_stddev_samp_order_by": { - "proposed_by_steam_id": [ - 3648 - ], - "responded_by_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_scheduling_proposals_stream_cursor_input": { - "initial_value": [ - 2606 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "league_scheduling_proposals_stream_cursor_value_input": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "message": [ - 85 - ], - "proposed_by_league_team_season_id": [ - 6672 - ], - "proposed_by_steam_id": [ - 312 - ], - "proposed_time": [ - 5243 - ], - "responded_by_steam_id": [ - 312 - ], - "status": [ - 998 - ], - "tournament_bracket_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "league_scheduling_proposals_sum_fields": { - "proposed_by_steam_id": [ - 312 - ], - "responded_by_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "league_scheduling_proposals_sum_order_by": { - "proposed_by_steam_id": [ - 3648 - ], - "responded_by_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_scheduling_proposals_update_column": {}, - "league_scheduling_proposals_updates": { - "_inc": [ - 2587 - ], - "_set": [ - 2598 - ], - "where": [ - 2585 - ], - "__typename": [ - 85 - ] - }, - "league_scheduling_proposals_var_pop_fields": { - "proposed_by_steam_id": [ - 32 - ], - "responded_by_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_scheduling_proposals_var_pop_order_by": { - "proposed_by_steam_id": [ - 3648 - ], - "responded_by_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_scheduling_proposals_var_samp_fields": { - "proposed_by_steam_id": [ - 32 - ], - "responded_by_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_scheduling_proposals_var_samp_order_by": { - "proposed_by_steam_id": [ - 3648 - ], - "responded_by_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_scheduling_proposals_variance_fields": { - "proposed_by_steam_id": [ - 32 - ], - "responded_by_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_scheduling_proposals_variance_order_by": { - "proposed_by_steam_id": [ - 3648 - ], - "responded_by_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_season_divisions": { - "created_at": [ - 5243 - ], - "division": [ - 2466 - ], - "id": [ - 6672 - ], - "league_division_id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "season": [ - 2642 - ], - "standings": [ - 6744, - { - "distinct_on": [ - 6760, - "[v_league_division_standings_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6759, - "[v_league_division_standings_order_by!]" - ], - "where": [ - 6753 - ] - } - ], - "standings_aggregate": [ - 6745, - { - "distinct_on": [ - 6760, - "[v_league_division_standings_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6759, - "[v_league_division_standings_order_by!]" - ], - "where": [ - 6753 - ] - } - ], - "tournament": [ - 5896 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "league_season_divisions_aggregate": { - "aggregate": [ - 2621 - ], - "nodes": [ - 2617 - ], - "__typename": [ - 85 - ] - }, - "league_season_divisions_aggregate_bool_exp": { - "count": [ - 2620 - ], - "__typename": [ - 85 - ] - }, - "league_season_divisions_aggregate_bool_exp_count": { - "arguments": [ - 2636 - ], - "distinct": [ - 6 - ], - "filter": [ - 2624 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "league_season_divisions_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 2636, - "[league_season_divisions_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 2627 - ], - "min": [ - 2629 - ], - "__typename": [ - 85 - ] - }, - "league_season_divisions_aggregate_order_by": { - "count": [ - 3648 - ], - "max": [ - 2628 - ], - "min": [ - 2630 - ], - "__typename": [ - 85 - ] - }, - "league_season_divisions_arr_rel_insert_input": { - "data": [ - 2626 - ], - "on_conflict": [ - 2633 - ], - "__typename": [ - 85 - ] - }, - "league_season_divisions_bool_exp": { - "_and": [ - 2624 - ], - "_not": [ - 2624 - ], - "_or": [ - 2624 - ], - "created_at": [ - 5244 - ], - "division": [ - 2470 - ], - "id": [ - 6674 - ], - "league_division_id": [ - 6674 - ], - "league_season_id": [ - 6674 - ], - "season": [ - 2647 - ], - "standings": [ - 6753 - ], - "standings_aggregate": [ - 6746 - ], - "tournament": [ - 5917 - ], - "tournament_id": [ - 6674 - ], - "__typename": [ - 85 - ] - }, - "league_season_divisions_constraint": {}, - "league_season_divisions_insert_input": { - "created_at": [ - 5243 - ], - "division": [ - 2477 - ], - "id": [ - 6672 - ], - "league_division_id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "season": [ - 2657 - ], - "standings": [ - 6750 - ], - "tournament": [ - 5926 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "league_season_divisions_max_fields": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "league_division_id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "league_season_divisions_max_order_by": { - "created_at": [ - 3648 - ], - "id": [ - 3648 - ], - "league_division_id": [ - 3648 - ], - "league_season_id": [ - 3648 - ], - "tournament_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_season_divisions_min_fields": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "league_division_id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "league_season_divisions_min_order_by": { - "created_at": [ - 3648 - ], - "id": [ - 3648 - ], - "league_division_id": [ - 3648 - ], - "league_season_id": [ - 3648 - ], - "tournament_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_season_divisions_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 2617 - ], - "__typename": [ - 85 - ] - }, - "league_season_divisions_obj_rel_insert_input": { - "data": [ - 2626 - ], - "on_conflict": [ - 2633 - ], - "__typename": [ - 85 - ] - }, - "league_season_divisions_on_conflict": { - "constraint": [ - 2625 - ], - "update_columns": [ - 2640 - ], - "where": [ - 2624 - ], - "__typename": [ - 85 - ] - }, - "league_season_divisions_order_by": { - "created_at": [ - 3648 - ], - "division": [ - 2479 - ], - "id": [ - 3648 - ], - "league_division_id": [ - 3648 - ], - "league_season_id": [ - 3648 - ], - "season": [ - 2659 - ], - "standings_aggregate": [ - 6749 - ], - "tournament": [ - 5928 - ], - "tournament_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_season_divisions_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "league_season_divisions_select_column": {}, - "league_season_divisions_set_input": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "league_division_id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "league_season_divisions_stream_cursor_input": { - "initial_value": [ - 2639 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "league_season_divisions_stream_cursor_value_input": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "league_division_id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "league_season_divisions_update_column": {}, - "league_season_divisions_updates": { - "_set": [ - 2637 - ], - "where": [ - 2624 - ], - "__typename": [ - 85 - ] - }, - "league_seasons": { - "auto_regular_season_format": [ - 6 - ], - "awards": [ - 243, - { - "distinct_on": [ - 264, - "[award_recipients_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 262, - "[award_recipients_order_by!]" - ], - "where": [ - 252 - ] - } - ], - "awards_aggregate": [ - 244, - { - "distinct_on": [ - 264, - "[award_recipients_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 262, - "[award_recipients_order_by!]" - ], - "where": [ - 252 - ] - } - ], - "can_register": [ - 6 - ], - "created_at": [ - 5243 - ], - "created_by_steam_id": [ - 312 - ], - "default_best_of": [ - 41 - ], - "direct_promote_count": [ - 41 - ], - "direct_relegate_count": [ - 41 - ], - "e_league_season_status": [ - 1035 - ], - "games_per_week": [ - 41 - ], - "id": [ - 6672 - ], - "is_league_admin": [ - 6 - ], - "is_roster_locked": [ - 6 - ], - "match_options_id": [ - 6672 - ], - "match_weeks": [ - 2494, - { - "distinct_on": [ - 2515, - "[league_match_weeks_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2513, - "[league_match_weeks_order_by!]" - ], - "where": [ - 2503 - ] - } - ], - "match_weeks_aggregate": [ - 2495, - { - "distinct_on": [ - 2515, - "[league_match_weeks_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2513, - "[league_match_weeks_order_by!]" - ], - "where": [ - 2503 - ] - } - ], - "match_weeks_count": [ - 41 - ], - "max_roster_size": [ - 41 - ], - "min_roster_size": [ - 41 - ], - "movements": [ - 2675, - { - "distinct_on": [ - 2696, - "[league_team_movements_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2694, - "[league_team_movements_order_by!]" - ], - "where": [ - 2684 - ] - } - ], - "movements_aggregate": [ - 2676, - { - "distinct_on": [ - 2696, - "[league_team_movements_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2694, - "[league_team_movements_order_by!]" - ], - "where": [ - 2684 - ] - } - ], - "my_registration": [ - 2757, - { - "distinct_on": [ - 2779, - "[league_team_seasons_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2777, - "[league_team_seasons_order_by!]" - ], - "where": [ - 2766 - ] - } - ], - "name": [ - 85 - ], - "options": [ - 3290 - ], - "player_stats": [ - 6777, - { - "distinct_on": [ - 6803, - "[v_league_season_player_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6802, - "[v_league_season_player_stats_order_by!]" - ], - "where": [ - 6796 - ] - } - ], - "player_stats_aggregate": [ - 6778, - { - "distinct_on": [ - 6803, - "[v_league_season_player_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6802, - "[v_league_season_player_stats_order_by!]" - ], - "where": [ - 6796 - ] - } - ], - "playoff_best_of": [ - 41 - ], - "playoff_round_best_of": [ - 2439, - { - "path": [ - 85 - ] - } - ], - "playoff_seats": [ - 41 - ], - "playoff_stage_type": [ - 1616 - ], - "playoff_third_place_match": [ - 6 - ], - "promote_count": [ - 41 - ], - "regular_season_stage_type": [ - 1616 - ], - "relegate_count": [ - 41 - ], - "relegation_down_count": [ - 41 - ], - "relegation_playoffs": [ - 2535, - { - "distinct_on": [ - 2556, - "[league_relegation_playoffs_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2554, - "[league_relegation_playoffs_order_by!]" - ], - "where": [ - 2544 - ] - } - ], - "relegation_playoffs_aggregate": [ - 2536, - { - "distinct_on": [ - 2556, - "[league_relegation_playoffs_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2554, - "[league_relegation_playoffs_order_by!]" - ], - "where": [ - 2544 - ] - } - ], - "relegation_up_count": [ - 41 - ], - "roster_lock_at": [ - 5243 - ], - "season_divisions": [ - 2617, - { - "distinct_on": [ - 2636, - "[league_season_divisions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2634, - "[league_season_divisions_order_by!]" - ], - "where": [ - 2624 - ] - } - ], - "season_divisions_aggregate": [ - 2618, - { - "distinct_on": [ - 2636, - "[league_season_divisions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2634, - "[league_season_divisions_order_by!]" - ], - "where": [ - 2624 - ] - } - ], - "season_number": [ - 41 - ], - "signup_closes_at": [ - 5243 - ], - "signup_opens_at": [ - 5243 - ], - "standings": [ - 6744, - { - "distinct_on": [ - 6760, - "[v_league_division_standings_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6759, - "[v_league_division_standings_order_by!]" - ], - "where": [ - 6753 - ] - } - ], - "standings_aggregate": [ - 6745, - { - "distinct_on": [ - 6760, - "[v_league_division_standings_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6759, - "[v_league_division_standings_order_by!]" - ], - "where": [ - 6753 - ] - } - ], - "starts_at": [ - 5243 - ], - "status": [ - 1040 - ], - "team_seasons": [ - 2757, - { - "distinct_on": [ - 2779, - "[league_team_seasons_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2777, - "[league_team_seasons_order_by!]" - ], - "where": [ - 2766 - ] - } - ], - "team_seasons_aggregate": [ - 2758, - { - "distinct_on": [ - 2779, - "[league_team_seasons_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2777, - "[league_team_seasons_order_by!]" - ], - "where": [ - 2766 - ] - } - ], - "week_best_of": [ - 2439, - { - "path": [ - 85 - ] - } - ], - "__typename": [ - 85 - ] - }, - "league_seasons_aggregate": { - "aggregate": [ - 2644 - ], - "nodes": [ - 2642 - ], - "__typename": [ - 85 - ] - }, - "league_seasons_aggregate_fields": { - "avg": [ - 2646 - ], - "count": [ - 41, - { - "columns": [ - 2662, - "[league_seasons_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 2654 - ], - "min": [ - 2655 - ], - "stddev": [ - 2664 - ], - "stddev_pop": [ - 2665 - ], - "stddev_samp": [ - 2666 - ], - "sum": [ - 2669 - ], - "var_pop": [ - 2672 - ], - "var_samp": [ - 2673 - ], - "variance": [ - 2674 - ], - "__typename": [ - 85 - ] - }, - "league_seasons_append_input": { - "playoff_round_best_of": [ - 2439 - ], - "week_best_of": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "league_seasons_avg_fields": { - "created_by_steam_id": [ - 32 - ], - "default_best_of": [ - 32 - ], - "direct_promote_count": [ - 32 - ], - "direct_relegate_count": [ - 32 - ], - "games_per_week": [ - 32 - ], - "match_weeks_count": [ - 32 - ], - "max_roster_size": [ - 32 - ], - "min_roster_size": [ - 32 - ], - "playoff_best_of": [ - 32 - ], - "playoff_seats": [ - 32 - ], - "promote_count": [ - 32 - ], - "relegate_count": [ - 32 - ], - "relegation_down_count": [ - 32 - ], - "relegation_up_count": [ - 32 - ], - "season_number": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_seasons_bool_exp": { - "_and": [ - 2647 - ], - "_not": [ - 2647 - ], - "_or": [ - 2647 - ], - "auto_regular_season_format": [ - 7 - ], - "awards": [ - 252 - ], - "awards_aggregate": [ - 245 - ], - "can_register": [ - 7 - ], - "created_at": [ - 5244 - ], - "created_by_steam_id": [ - 314 - ], - "default_best_of": [ - 42 - ], - "direct_promote_count": [ - 42 - ], - "direct_relegate_count": [ - 42 - ], - "e_league_season_status": [ - 1038 - ], - "games_per_week": [ - 42 - ], - "id": [ - 6674 - ], - "is_league_admin": [ - 7 - ], - "is_roster_locked": [ - 7 - ], - "match_options_id": [ - 6674 - ], - "match_weeks": [ - 2503 - ], - "match_weeks_aggregate": [ - 2496 - ], - "match_weeks_count": [ - 42 - ], - "max_roster_size": [ - 42 - ], - "min_roster_size": [ - 42 - ], - "movements": [ - 2684 - ], - "movements_aggregate": [ - 2677 - ], - "my_registration": [ - 2766 - ], - "name": [ - 87 - ], - "options": [ - 3301 - ], - "player_stats": [ - 6796 - ], - "player_stats_aggregate": [ - 6779 - ], - "playoff_best_of": [ - 42 - ], - "playoff_round_best_of": [ - 2441 - ], - "playoff_seats": [ - 42 - ], - "playoff_stage_type": [ - 1617 - ], - "playoff_third_place_match": [ - 7 - ], - "promote_count": [ - 42 - ], - "regular_season_stage_type": [ - 1617 - ], - "relegate_count": [ - 42 - ], - "relegation_down_count": [ - 42 - ], - "relegation_playoffs": [ - 2544 - ], - "relegation_playoffs_aggregate": [ - 2537 - ], - "relegation_up_count": [ - 42 - ], - "roster_lock_at": [ - 5244 - ], - "season_divisions": [ - 2624 - ], - "season_divisions_aggregate": [ - 2619 - ], - "season_number": [ - 42 - ], - "signup_closes_at": [ - 5244 - ], - "signup_opens_at": [ - 5244 - ], - "standings": [ - 6753 - ], - "standings_aggregate": [ - 6746 - ], - "starts_at": [ - 5244 - ], - "status": [ - 1041 - ], - "team_seasons": [ - 2766 - ], - "team_seasons_aggregate": [ - 2759 - ], - "week_best_of": [ - 2441 - ], - "__typename": [ - 85 - ] - }, - "league_seasons_constraint": {}, - "league_seasons_delete_at_path_input": { - "playoff_round_best_of": [ - 85 - ], - "week_best_of": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "league_seasons_delete_elem_input": { - "playoff_round_best_of": [ - 41 - ], - "week_best_of": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "league_seasons_delete_key_input": { - "playoff_round_best_of": [ - 85 - ], - "week_best_of": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "league_seasons_inc_input": { - "created_by_steam_id": [ - 312 - ], - "default_best_of": [ - 41 - ], - "direct_promote_count": [ - 41 - ], - "direct_relegate_count": [ - 41 - ], - "games_per_week": [ - 41 - ], - "match_weeks_count": [ - 41 - ], - "max_roster_size": [ - 41 - ], - "min_roster_size": [ - 41 - ], - "playoff_best_of": [ - 41 - ], - "playoff_seats": [ - 41 - ], - "promote_count": [ - 41 - ], - "relegate_count": [ - 41 - ], - "relegation_down_count": [ - 41 - ], - "relegation_up_count": [ - 41 - ], - "season_number": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "league_seasons_insert_input": { - "auto_regular_season_format": [ - 6 - ], - "awards": [ - 249 - ], - "created_at": [ - 5243 - ], - "created_by_steam_id": [ - 312 - ], - "default_best_of": [ - 41 - ], - "direct_promote_count": [ - 41 - ], - "direct_relegate_count": [ - 41 - ], - "e_league_season_status": [ - 1046 - ], - "games_per_week": [ - 41 - ], - "id": [ - 6672 - ], - "match_options_id": [ - 6672 - ], - "match_weeks": [ - 2500 - ], - "match_weeks_count": [ - 41 - ], - "max_roster_size": [ - 41 - ], - "min_roster_size": [ - 41 - ], - "movements": [ - 2681 - ], - "name": [ - 85 - ], - "options": [ - 3310 - ], - "player_stats": [ - 6793 - ], - "playoff_best_of": [ - 41 - ], - "playoff_round_best_of": [ - 2439 - ], - "playoff_seats": [ - 41 - ], - "playoff_stage_type": [ - 1616 - ], - "playoff_third_place_match": [ - 6 - ], - "promote_count": [ - 41 - ], - "regular_season_stage_type": [ - 1616 - ], - "relegate_count": [ - 41 - ], - "relegation_down_count": [ - 41 - ], - "relegation_playoffs": [ - 2541 - ], - "relegation_up_count": [ - 41 - ], - "roster_lock_at": [ - 5243 - ], - "season_divisions": [ - 2623 - ], - "season_number": [ - 41 - ], - "signup_closes_at": [ - 5243 - ], - "signup_opens_at": [ - 5243 - ], - "standings": [ - 6750 - ], - "starts_at": [ - 5243 - ], - "status": [ - 1040 - ], - "team_seasons": [ - 2763 - ], - "week_best_of": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "league_seasons_max_fields": { - "created_at": [ - 5243 - ], - "created_by_steam_id": [ - 312 - ], - "default_best_of": [ - 41 - ], - "direct_promote_count": [ - 41 - ], - "direct_relegate_count": [ - 41 - ], - "games_per_week": [ - 41 - ], - "id": [ - 6672 - ], - "match_options_id": [ - 6672 - ], - "match_weeks_count": [ - 41 - ], - "max_roster_size": [ - 41 - ], - "min_roster_size": [ - 41 - ], - "name": [ - 85 - ], - "playoff_best_of": [ - 41 - ], - "playoff_seats": [ - 41 - ], - "promote_count": [ - 41 - ], - "relegate_count": [ - 41 - ], - "relegation_down_count": [ - 41 - ], - "relegation_up_count": [ - 41 - ], - "roster_lock_at": [ - 5243 - ], - "season_number": [ - 41 - ], - "signup_closes_at": [ - 5243 - ], - "signup_opens_at": [ - 5243 - ], - "starts_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "league_seasons_min_fields": { - "created_at": [ - 5243 - ], - "created_by_steam_id": [ - 312 - ], - "default_best_of": [ - 41 - ], - "direct_promote_count": [ - 41 - ], - "direct_relegate_count": [ - 41 - ], - "games_per_week": [ - 41 - ], - "id": [ - 6672 - ], - "match_options_id": [ - 6672 - ], - "match_weeks_count": [ - 41 - ], - "max_roster_size": [ - 41 - ], - "min_roster_size": [ - 41 - ], - "name": [ - 85 - ], - "playoff_best_of": [ - 41 - ], - "playoff_seats": [ - 41 - ], - "promote_count": [ - 41 - ], - "relegate_count": [ - 41 - ], - "relegation_down_count": [ - 41 - ], - "relegation_up_count": [ - 41 - ], - "roster_lock_at": [ - 5243 - ], - "season_number": [ - 41 - ], - "signup_closes_at": [ - 5243 - ], - "signup_opens_at": [ - 5243 - ], - "starts_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "league_seasons_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 2642 - ], - "__typename": [ - 85 - ] - }, - "league_seasons_obj_rel_insert_input": { - "data": [ - 2653 - ], - "on_conflict": [ - 2658 - ], - "__typename": [ - 85 - ] - }, - "league_seasons_on_conflict": { - "constraint": [ - 2648 - ], - "update_columns": [ - 2670 - ], - "where": [ - 2647 - ], - "__typename": [ - 85 - ] - }, - "league_seasons_order_by": { - "auto_regular_season_format": [ - 3648 - ], - "awards_aggregate": [ - 248 - ], - "can_register": [ - 3648 - ], - "created_at": [ - 3648 - ], - "created_by_steam_id": [ - 3648 - ], - "default_best_of": [ - 3648 - ], - "direct_promote_count": [ - 3648 - ], - "direct_relegate_count": [ - 3648 - ], - "e_league_season_status": [ - 1048 - ], - "games_per_week": [ - 3648 - ], - "id": [ - 3648 - ], - "is_league_admin": [ - 3648 - ], - "is_roster_locked": [ - 3648 - ], - "match_options_id": [ - 3648 - ], - "match_weeks_aggregate": [ - 2499 - ], - "match_weeks_count": [ - 3648 - ], - "max_roster_size": [ - 3648 - ], - "min_roster_size": [ - 3648 - ], - "movements_aggregate": [ - 2680 - ], - "my_registration_aggregate": [ - 2762 - ], - "name": [ - 3648 - ], - "options": [ - 3312 - ], - "player_stats_aggregate": [ - 6792 - ], - "playoff_best_of": [ - 3648 - ], - "playoff_round_best_of": [ - 3648 - ], - "playoff_seats": [ - 3648 - ], - "playoff_stage_type": [ - 3648 - ], - "playoff_third_place_match": [ - 3648 - ], - "promote_count": [ - 3648 - ], - "regular_season_stage_type": [ - 3648 - ], - "relegate_count": [ - 3648 - ], - "relegation_down_count": [ - 3648 - ], - "relegation_playoffs_aggregate": [ - 2540 - ], - "relegation_up_count": [ - 3648 - ], - "roster_lock_at": [ - 3648 - ], - "season_divisions_aggregate": [ - 2622 - ], - "season_number": [ - 3648 - ], - "signup_closes_at": [ - 3648 - ], - "signup_opens_at": [ - 3648 - ], - "standings_aggregate": [ - 6749 - ], - "starts_at": [ - 3648 - ], - "status": [ - 3648 - ], - "team_seasons_aggregate": [ - 2762 - ], - "week_best_of": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_seasons_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "league_seasons_prepend_input": { - "playoff_round_best_of": [ - 2439 - ], - "week_best_of": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "league_seasons_select_column": {}, - "league_seasons_set_input": { - "auto_regular_season_format": [ - 6 - ], - "created_at": [ - 5243 - ], - "created_by_steam_id": [ - 312 - ], - "default_best_of": [ - 41 - ], - "direct_promote_count": [ - 41 - ], - "direct_relegate_count": [ - 41 - ], - "games_per_week": [ - 41 - ], - "id": [ - 6672 - ], - "match_options_id": [ - 6672 - ], - "match_weeks_count": [ - 41 - ], - "max_roster_size": [ - 41 - ], - "min_roster_size": [ - 41 - ], - "name": [ - 85 - ], - "playoff_best_of": [ - 41 - ], - "playoff_round_best_of": [ - 2439 - ], - "playoff_seats": [ - 41 - ], - "playoff_stage_type": [ - 1616 - ], - "playoff_third_place_match": [ - 6 - ], - "promote_count": [ - 41 - ], - "regular_season_stage_type": [ - 1616 - ], - "relegate_count": [ - 41 - ], - "relegation_down_count": [ - 41 - ], - "relegation_up_count": [ - 41 - ], - "roster_lock_at": [ - 5243 - ], - "season_number": [ - 41 - ], - "signup_closes_at": [ - 5243 - ], - "signup_opens_at": [ - 5243 - ], - "starts_at": [ - 5243 - ], - "status": [ - 1040 - ], - "week_best_of": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "league_seasons_stddev_fields": { - "created_by_steam_id": [ - 32 - ], - "default_best_of": [ - 32 - ], - "direct_promote_count": [ - 32 - ], - "direct_relegate_count": [ - 32 - ], - "games_per_week": [ - 32 - ], - "match_weeks_count": [ - 32 - ], - "max_roster_size": [ - 32 - ], - "min_roster_size": [ - 32 - ], - "playoff_best_of": [ - 32 - ], - "playoff_seats": [ - 32 - ], - "promote_count": [ - 32 - ], - "relegate_count": [ - 32 - ], - "relegation_down_count": [ - 32 - ], - "relegation_up_count": [ - 32 - ], - "season_number": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_seasons_stddev_pop_fields": { - "created_by_steam_id": [ - 32 - ], - "default_best_of": [ - 32 - ], - "direct_promote_count": [ - 32 - ], - "direct_relegate_count": [ - 32 - ], - "games_per_week": [ - 32 - ], - "match_weeks_count": [ - 32 - ], - "max_roster_size": [ - 32 - ], - "min_roster_size": [ - 32 - ], - "playoff_best_of": [ - 32 - ], - "playoff_seats": [ - 32 - ], - "promote_count": [ - 32 - ], - "relegate_count": [ - 32 - ], - "relegation_down_count": [ - 32 - ], - "relegation_up_count": [ - 32 - ], - "season_number": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_seasons_stddev_samp_fields": { - "created_by_steam_id": [ - 32 - ], - "default_best_of": [ - 32 - ], - "direct_promote_count": [ - 32 - ], - "direct_relegate_count": [ - 32 - ], - "games_per_week": [ - 32 - ], - "match_weeks_count": [ - 32 - ], - "max_roster_size": [ - 32 - ], - "min_roster_size": [ - 32 - ], - "playoff_best_of": [ - 32 - ], - "playoff_seats": [ - 32 - ], - "promote_count": [ - 32 - ], - "relegate_count": [ - 32 - ], - "relegation_down_count": [ - 32 - ], - "relegation_up_count": [ - 32 - ], - "season_number": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_seasons_stream_cursor_input": { - "initial_value": [ - 2668 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "league_seasons_stream_cursor_value_input": { - "auto_regular_season_format": [ - 6 - ], - "created_at": [ - 5243 - ], - "created_by_steam_id": [ - 312 - ], - "default_best_of": [ - 41 - ], - "direct_promote_count": [ - 41 - ], - "direct_relegate_count": [ - 41 - ], - "games_per_week": [ - 41 - ], - "id": [ - 6672 - ], - "match_options_id": [ - 6672 - ], - "match_weeks_count": [ - 41 - ], - "max_roster_size": [ - 41 - ], - "min_roster_size": [ - 41 - ], - "name": [ - 85 - ], - "playoff_best_of": [ - 41 - ], - "playoff_round_best_of": [ - 2439 - ], - "playoff_seats": [ - 41 - ], - "playoff_stage_type": [ - 1616 - ], - "playoff_third_place_match": [ - 6 - ], - "promote_count": [ - 41 - ], - "regular_season_stage_type": [ - 1616 - ], - "relegate_count": [ - 41 - ], - "relegation_down_count": [ - 41 - ], - "relegation_up_count": [ - 41 - ], - "roster_lock_at": [ - 5243 - ], - "season_number": [ - 41 - ], - "signup_closes_at": [ - 5243 - ], - "signup_opens_at": [ - 5243 - ], - "starts_at": [ - 5243 - ], - "status": [ - 1040 - ], - "week_best_of": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "league_seasons_sum_fields": { - "created_by_steam_id": [ - 312 - ], - "default_best_of": [ - 41 - ], - "direct_promote_count": [ - 41 - ], - "direct_relegate_count": [ - 41 - ], - "games_per_week": [ - 41 - ], - "match_weeks_count": [ - 41 - ], - "max_roster_size": [ - 41 - ], - "min_roster_size": [ - 41 - ], - "playoff_best_of": [ - 41 - ], - "playoff_seats": [ - 41 - ], - "promote_count": [ - 41 - ], - "relegate_count": [ - 41 - ], - "relegation_down_count": [ - 41 - ], - "relegation_up_count": [ - 41 - ], - "season_number": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "league_seasons_update_column": {}, - "league_seasons_updates": { - "_append": [ - 2645 - ], - "_delete_at_path": [ - 2649 - ], - "_delete_elem": [ - 2650 - ], - "_delete_key": [ - 2651 - ], - "_inc": [ - 2652 - ], - "_prepend": [ - 2661 - ], - "_set": [ - 2663 - ], - "where": [ - 2647 - ], - "__typename": [ - 85 - ] - }, - "league_seasons_var_pop_fields": { - "created_by_steam_id": [ - 32 - ], - "default_best_of": [ - 32 - ], - "direct_promote_count": [ - 32 - ], - "direct_relegate_count": [ - 32 - ], - "games_per_week": [ - 32 - ], - "match_weeks_count": [ - 32 - ], - "max_roster_size": [ - 32 - ], - "min_roster_size": [ - 32 - ], - "playoff_best_of": [ - 32 - ], - "playoff_seats": [ - 32 - ], - "promote_count": [ - 32 - ], - "relegate_count": [ - 32 - ], - "relegation_down_count": [ - 32 - ], - "relegation_up_count": [ - 32 - ], - "season_number": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_seasons_var_samp_fields": { - "created_by_steam_id": [ - 32 - ], - "default_best_of": [ - 32 - ], - "direct_promote_count": [ - 32 - ], - "direct_relegate_count": [ - 32 - ], - "games_per_week": [ - 32 - ], - "match_weeks_count": [ - 32 - ], - "max_roster_size": [ - 32 - ], - "min_roster_size": [ - 32 - ], - "playoff_best_of": [ - 32 - ], - "playoff_seats": [ - 32 - ], - "promote_count": [ - 32 - ], - "relegate_count": [ - 32 - ], - "relegation_down_count": [ - 32 - ], - "relegation_up_count": [ - 32 - ], - "season_number": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_seasons_variance_fields": { - "created_by_steam_id": [ - 32 - ], - "default_best_of": [ - 32 - ], - "direct_promote_count": [ - 32 - ], - "direct_relegate_count": [ - 32 - ], - "games_per_week": [ - 32 - ], - "match_weeks_count": [ - 32 - ], - "max_roster_size": [ - 32 - ], - "min_roster_size": [ - 32 - ], - "playoff_best_of": [ - 32 - ], - "playoff_seats": [ - 32 - ], - "promote_count": [ - 32 - ], - "relegate_count": [ - 32 - ], - "relegation_down_count": [ - 32 - ], - "relegation_up_count": [ - 32 - ], - "season_number": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_team_movements": { - "approved_at": [ - 5243 - ], - "approved_by": [ - 4606 - ], - "approved_by_steam_id": [ - 312 - ], - "computed_to_division": [ - 2466 - ], - "computed_to_division_id": [ - 6672 - ], - "created_at": [ - 5243 - ], - "e_movement_type": [ - 972 - ], - "final_rank": [ - 41 - ], - "final_to_division": [ - 2466 - ], - "final_to_division_id": [ - 6672 - ], - "from_division": [ - 2466 - ], - "from_division_id": [ - 6672 - ], - "id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "league_team": [ - 2799 - ], - "league_team_id": [ - 6672 - ], - "season": [ - 2642 - ], - "type": [ - 977 - ], - "__typename": [ - 85 - ] - }, - "league_team_movements_aggregate": { - "aggregate": [ - 2679 - ], - "nodes": [ - 2675 - ], - "__typename": [ - 85 - ] - }, - "league_team_movements_aggregate_bool_exp": { - "count": [ - 2678 - ], - "__typename": [ - 85 - ] - }, - "league_team_movements_aggregate_bool_exp_count": { - "arguments": [ - 2696 - ], - "distinct": [ - 6 - ], - "filter": [ - 2684 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "league_team_movements_aggregate_fields": { - "avg": [ - 2682 - ], - "count": [ - 41, - { - "columns": [ - 2696, - "[league_team_movements_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 2688 - ], - "min": [ - 2690 - ], - "stddev": [ - 2698 - ], - "stddev_pop": [ - 2700 - ], - "stddev_samp": [ - 2702 - ], - "sum": [ - 2706 - ], - "var_pop": [ - 2710 - ], - "var_samp": [ - 2712 - ], - "variance": [ - 2714 - ], - "__typename": [ - 85 - ] - }, - "league_team_movements_aggregate_order_by": { - "avg": [ - 2683 - ], - "count": [ - 3648 - ], - "max": [ - 2689 - ], - "min": [ - 2691 - ], - "stddev": [ - 2699 - ], - "stddev_pop": [ - 2701 - ], - "stddev_samp": [ - 2703 - ], - "sum": [ - 2707 - ], - "var_pop": [ - 2711 - ], - "var_samp": [ - 2713 - ], - "variance": [ - 2715 - ], - "__typename": [ - 85 - ] - }, - "league_team_movements_arr_rel_insert_input": { - "data": [ - 2687 - ], - "on_conflict": [ - 2693 - ], - "__typename": [ - 85 - ] - }, - "league_team_movements_avg_fields": { - "approved_by_steam_id": [ - 32 - ], - "final_rank": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_team_movements_avg_order_by": { - "approved_by_steam_id": [ - 3648 - ], - "final_rank": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_team_movements_bool_exp": { - "_and": [ - 2684 - ], - "_not": [ - 2684 - ], - "_or": [ - 2684 - ], - "approved_at": [ - 5244 - ], - "approved_by": [ - 4610 - ], - "approved_by_steam_id": [ - 314 - ], - "computed_to_division": [ - 2470 - ], - "computed_to_division_id": [ - 6674 - ], - "created_at": [ - 5244 - ], - "e_movement_type": [ - 975 - ], - "final_rank": [ - 42 - ], - "final_to_division": [ - 2470 - ], - "final_to_division_id": [ - 6674 - ], - "from_division": [ - 2470 - ], - "from_division_id": [ - 6674 - ], - "id": [ - 6674 - ], - "league_season_id": [ - 6674 - ], - "league_team": [ - 2802 - ], - "league_team_id": [ - 6674 - ], - "season": [ - 2647 - ], - "type": [ - 978 - ], - "__typename": [ - 85 - ] - }, - "league_team_movements_constraint": {}, - "league_team_movements_inc_input": { - "approved_by_steam_id": [ - 312 - ], - "final_rank": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "league_team_movements_insert_input": { - "approved_at": [ - 5243 - ], - "approved_by": [ - 4617 - ], - "approved_by_steam_id": [ - 312 - ], - "computed_to_division": [ - 2477 - ], - "computed_to_division_id": [ - 6672 - ], - "created_at": [ - 5243 - ], - "e_movement_type": [ - 983 - ], - "final_rank": [ - 41 - ], - "final_to_division": [ - 2477 - ], - "final_to_division_id": [ - 6672 - ], - "from_division": [ - 2477 - ], - "from_division_id": [ - 6672 - ], - "id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "league_team": [ - 2808 - ], - "league_team_id": [ - 6672 - ], - "season": [ - 2657 - ], - "type": [ - 977 - ], - "__typename": [ - 85 - ] - }, - "league_team_movements_max_fields": { - "approved_at": [ - 5243 - ], - "approved_by_steam_id": [ - 312 - ], - "computed_to_division_id": [ - 6672 - ], - "created_at": [ - 5243 - ], - "final_rank": [ - 41 - ], - "final_to_division_id": [ - 6672 - ], - "from_division_id": [ - 6672 - ], - "id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "league_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "league_team_movements_max_order_by": { - "approved_at": [ - 3648 - ], - "approved_by_steam_id": [ - 3648 - ], - "computed_to_division_id": [ - 3648 - ], - "created_at": [ - 3648 - ], - "final_rank": [ - 3648 - ], - "final_to_division_id": [ - 3648 - ], - "from_division_id": [ - 3648 - ], - "id": [ - 3648 - ], - "league_season_id": [ - 3648 - ], - "league_team_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_team_movements_min_fields": { - "approved_at": [ - 5243 - ], - "approved_by_steam_id": [ - 312 - ], - "computed_to_division_id": [ - 6672 - ], - "created_at": [ - 5243 - ], - "final_rank": [ - 41 - ], - "final_to_division_id": [ - 6672 - ], - "from_division_id": [ - 6672 - ], - "id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "league_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "league_team_movements_min_order_by": { - "approved_at": [ - 3648 - ], - "approved_by_steam_id": [ - 3648 - ], - "computed_to_division_id": [ - 3648 - ], - "created_at": [ - 3648 - ], - "final_rank": [ - 3648 - ], - "final_to_division_id": [ - 3648 - ], - "from_division_id": [ - 3648 - ], - "id": [ - 3648 - ], - "league_season_id": [ - 3648 - ], - "league_team_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_team_movements_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 2675 - ], - "__typename": [ - 85 - ] - }, - "league_team_movements_on_conflict": { - "constraint": [ - 2685 - ], - "update_columns": [ - 2708 - ], - "where": [ - 2684 - ], - "__typename": [ - 85 - ] - }, - "league_team_movements_order_by": { - "approved_at": [ - 3648 - ], - "approved_by": [ - 4619 - ], - "approved_by_steam_id": [ - 3648 - ], - "computed_to_division": [ - 2479 - ], - "computed_to_division_id": [ - 3648 - ], - "created_at": [ - 3648 - ], - "e_movement_type": [ - 985 - ], - "final_rank": [ - 3648 - ], - "final_to_division": [ - 2479 - ], - "final_to_division_id": [ - 3648 - ], - "from_division": [ - 2479 - ], - "from_division_id": [ - 3648 - ], - "id": [ - 3648 - ], - "league_season_id": [ - 3648 - ], - "league_team": [ - 2810 - ], - "league_team_id": [ - 3648 - ], - "season": [ - 2659 - ], - "type": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_team_movements_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "league_team_movements_select_column": {}, - "league_team_movements_set_input": { - "approved_at": [ - 5243 - ], - "approved_by_steam_id": [ - 312 - ], - "computed_to_division_id": [ - 6672 - ], - "created_at": [ - 5243 - ], - "final_rank": [ - 41 - ], - "final_to_division_id": [ - 6672 - ], - "from_division_id": [ - 6672 - ], - "id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "league_team_id": [ - 6672 - ], - "type": [ - 977 - ], - "__typename": [ - 85 - ] - }, - "league_team_movements_stddev_fields": { - "approved_by_steam_id": [ - 32 - ], - "final_rank": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_team_movements_stddev_order_by": { - "approved_by_steam_id": [ - 3648 - ], - "final_rank": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_team_movements_stddev_pop_fields": { - "approved_by_steam_id": [ - 32 - ], - "final_rank": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_team_movements_stddev_pop_order_by": { - "approved_by_steam_id": [ - 3648 - ], - "final_rank": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_team_movements_stddev_samp_fields": { - "approved_by_steam_id": [ - 32 - ], - "final_rank": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_team_movements_stddev_samp_order_by": { - "approved_by_steam_id": [ - 3648 - ], - "final_rank": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_team_movements_stream_cursor_input": { - "initial_value": [ - 2705 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "league_team_movements_stream_cursor_value_input": { - "approved_at": [ - 5243 - ], - "approved_by_steam_id": [ - 312 - ], - "computed_to_division_id": [ - 6672 - ], - "created_at": [ - 5243 - ], - "final_rank": [ - 41 - ], - "final_to_division_id": [ - 6672 - ], - "from_division_id": [ - 6672 - ], - "id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "league_team_id": [ - 6672 - ], - "type": [ - 977 - ], - "__typename": [ - 85 - ] - }, - "league_team_movements_sum_fields": { - "approved_by_steam_id": [ - 312 - ], - "final_rank": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "league_team_movements_sum_order_by": { - "approved_by_steam_id": [ - 3648 - ], - "final_rank": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_team_movements_update_column": {}, - "league_team_movements_updates": { - "_inc": [ - 2686 - ], - "_set": [ - 2697 - ], - "where": [ - 2684 - ], - "__typename": [ - 85 - ] - }, - "league_team_movements_var_pop_fields": { - "approved_by_steam_id": [ - 32 - ], - "final_rank": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_team_movements_var_pop_order_by": { - "approved_by_steam_id": [ - 3648 - ], - "final_rank": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_team_movements_var_samp_fields": { - "approved_by_steam_id": [ - 32 - ], - "final_rank": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_team_movements_var_samp_order_by": { - "approved_by_steam_id": [ - 3648 - ], - "final_rank": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_team_movements_variance_fields": { - "approved_by_steam_id": [ - 32 - ], - "final_rank": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_team_movements_variance_order_by": { - "approved_by_steam_id": [ - 3648 - ], - "final_rank": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_team_rosters": { - "added_at": [ - 5243 - ], - "league_team_season_id": [ - 6672 - ], - "player": [ - 4606 - ], - "player_steam_id": [ - 312 - ], - "removed_at": [ - 5243 - ], - "removed_reason": [ - 85 - ], - "status": [ - 1514 - ], - "team_season": [ - 2757 - ], - "__typename": [ - 85 - ] - }, - "league_team_rosters_aggregate": { - "aggregate": [ - 2720 - ], - "nodes": [ - 2716 - ], - "__typename": [ - 85 - ] - }, - "league_team_rosters_aggregate_bool_exp": { - "count": [ - 2719 - ], - "__typename": [ - 85 - ] - }, - "league_team_rosters_aggregate_bool_exp_count": { - "arguments": [ - 2737 - ], - "distinct": [ - 6 - ], - "filter": [ - 2725 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "league_team_rosters_aggregate_fields": { - "avg": [ - 2723 - ], - "count": [ - 41, - { - "columns": [ - 2737, - "[league_team_rosters_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 2729 - ], - "min": [ - 2731 - ], - "stddev": [ - 2739 - ], - "stddev_pop": [ - 2741 - ], - "stddev_samp": [ - 2743 - ], - "sum": [ - 2747 - ], - "var_pop": [ - 2751 - ], - "var_samp": [ - 2753 - ], - "variance": [ - 2755 - ], - "__typename": [ - 85 - ] - }, - "league_team_rosters_aggregate_order_by": { - "avg": [ - 2724 - ], - "count": [ - 3648 - ], - "max": [ - 2730 - ], - "min": [ - 2732 - ], - "stddev": [ - 2740 - ], - "stddev_pop": [ - 2742 - ], - "stddev_samp": [ - 2744 - ], - "sum": [ - 2748 - ], - "var_pop": [ - 2752 - ], - "var_samp": [ - 2754 - ], - "variance": [ - 2756 - ], - "__typename": [ - 85 - ] - }, - "league_team_rosters_arr_rel_insert_input": { - "data": [ - 2728 - ], - "on_conflict": [ - 2734 - ], - "__typename": [ - 85 - ] - }, - "league_team_rosters_avg_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_team_rosters_avg_order_by": { - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_team_rosters_bool_exp": { - "_and": [ - 2725 - ], - "_not": [ - 2725 - ], - "_or": [ - 2725 - ], - "added_at": [ - 5244 - ], - "league_team_season_id": [ - 6674 - ], - "player": [ - 4610 - ], - "player_steam_id": [ - 314 - ], - "removed_at": [ - 5244 - ], - "removed_reason": [ - 87 - ], - "status": [ - 1515 - ], - "team_season": [ - 2766 - ], - "__typename": [ - 85 - ] - }, - "league_team_rosters_constraint": {}, - "league_team_rosters_inc_input": { - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "league_team_rosters_insert_input": { - "added_at": [ - 5243 - ], - "league_team_season_id": [ - 6672 - ], - "player": [ - 4617 - ], - "player_steam_id": [ - 312 - ], - "removed_at": [ - 5243 - ], - "removed_reason": [ - 85 - ], - "status": [ - 1514 - ], - "team_season": [ - 2775 - ], - "__typename": [ - 85 - ] - }, - "league_team_rosters_max_fields": { - "added_at": [ - 5243 - ], - "league_team_season_id": [ - 6672 - ], - "player_steam_id": [ - 312 - ], - "removed_at": [ - 5243 - ], - "removed_reason": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "league_team_rosters_max_order_by": { - "added_at": [ - 3648 - ], - "league_team_season_id": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "removed_at": [ - 3648 - ], - "removed_reason": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_team_rosters_min_fields": { - "added_at": [ - 5243 - ], - "league_team_season_id": [ - 6672 - ], - "player_steam_id": [ - 312 - ], - "removed_at": [ - 5243 - ], - "removed_reason": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "league_team_rosters_min_order_by": { - "added_at": [ - 3648 - ], - "league_team_season_id": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "removed_at": [ - 3648 - ], - "removed_reason": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_team_rosters_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 2716 - ], - "__typename": [ - 85 - ] - }, - "league_team_rosters_on_conflict": { - "constraint": [ - 2726 - ], - "update_columns": [ - 2749 - ], - "where": [ - 2725 - ], - "__typename": [ - 85 - ] - }, - "league_team_rosters_order_by": { - "added_at": [ - 3648 - ], - "league_team_season_id": [ - 3648 - ], - "player": [ - 4619 - ], - "player_steam_id": [ - 3648 - ], - "removed_at": [ - 3648 - ], - "removed_reason": [ - 3648 - ], - "status": [ - 3648 - ], - "team_season": [ - 2777 - ], - "__typename": [ - 85 - ] - }, - "league_team_rosters_pk_columns_input": { - "league_team_season_id": [ - 6672 - ], - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "league_team_rosters_select_column": {}, - "league_team_rosters_set_input": { - "added_at": [ - 5243 - ], - "league_team_season_id": [ - 6672 - ], - "player_steam_id": [ - 312 - ], - "removed_at": [ - 5243 - ], - "removed_reason": [ - 85 - ], - "status": [ - 1514 - ], - "__typename": [ - 85 - ] - }, - "league_team_rosters_stddev_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_team_rosters_stddev_order_by": { - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_team_rosters_stddev_pop_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_team_rosters_stddev_pop_order_by": { - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_team_rosters_stddev_samp_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_team_rosters_stddev_samp_order_by": { - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_team_rosters_stream_cursor_input": { - "initial_value": [ - 2746 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "league_team_rosters_stream_cursor_value_input": { - "added_at": [ - 5243 - ], - "league_team_season_id": [ - 6672 - ], - "player_steam_id": [ - 312 - ], - "removed_at": [ - 5243 - ], - "removed_reason": [ - 85 - ], - "status": [ - 1514 - ], - "__typename": [ - 85 - ] - }, - "league_team_rosters_sum_fields": { - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "league_team_rosters_sum_order_by": { - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_team_rosters_update_column": {}, - "league_team_rosters_updates": { - "_inc": [ - 2727 - ], - "_set": [ - 2738 - ], - "where": [ - 2725 - ], - "__typename": [ - 85 - ] - }, - "league_team_rosters_var_pop_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_team_rosters_var_pop_order_by": { - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_team_rosters_var_samp_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_team_rosters_var_samp_order_by": { - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_team_rosters_variance_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_team_rosters_variance_order_by": { - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_team_seasons": { - "assigned_division": [ - 2466 - ], - "assigned_division_id": [ - 6672 - ], - "captain": [ - 4606 - ], - "captain_steam_id": [ - 312 - ], - "created_at": [ - 5243 - ], - "decline_reason": [ - 85 - ], - "e_registration_status": [ - 1014 - ], - "id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "league_team": [ - 2799 - ], - "league_team_id": [ - 6672 - ], - "registered_by": [ - 4606 - ], - "registered_by_steam_id": [ - 312 - ], - "requested_division": [ - 2466 - ], - "requested_division_id": [ - 6672 - ], - "roster": [ - 2716, - { - "distinct_on": [ - 2737, - "[league_team_rosters_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2735, - "[league_team_rosters_order_by!]" - ], - "where": [ - 2725 - ] - } - ], - "roster_aggregate": [ - 2717, - { - "distinct_on": [ - 2737, - "[league_team_rosters_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2735, - "[league_team_rosters_order_by!]" - ], - "where": [ - 2725 - ] - } - ], - "season": [ - 2642 - ], - "seed": [ - 41 - ], - "status": [ - 1019 - ], - "tournament_team": [ - 5850 - ], - "tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "league_team_seasons_aggregate": { - "aggregate": [ - 2761 - ], - "nodes": [ - 2757 - ], - "__typename": [ - 85 - ] - }, - "league_team_seasons_aggregate_bool_exp": { - "count": [ - 2760 - ], - "__typename": [ - 85 - ] - }, - "league_team_seasons_aggregate_bool_exp_count": { - "arguments": [ - 2779 - ], - "distinct": [ - 6 - ], - "filter": [ - 2766 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "league_team_seasons_aggregate_fields": { - "avg": [ - 2764 - ], - "count": [ - 41, - { - "columns": [ - 2779, - "[league_team_seasons_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 2770 - ], - "min": [ - 2772 - ], - "stddev": [ - 2781 - ], - "stddev_pop": [ - 2783 - ], - "stddev_samp": [ - 2785 - ], - "sum": [ - 2789 - ], - "var_pop": [ - 2793 - ], - "var_samp": [ - 2795 - ], - "variance": [ - 2797 - ], - "__typename": [ - 85 - ] - }, - "league_team_seasons_aggregate_order_by": { - "avg": [ - 2765 - ], - "count": [ - 3648 - ], - "max": [ - 2771 - ], - "min": [ - 2773 - ], - "stddev": [ - 2782 - ], - "stddev_pop": [ - 2784 - ], - "stddev_samp": [ - 2786 - ], - "sum": [ - 2790 - ], - "var_pop": [ - 2794 - ], - "var_samp": [ - 2796 - ], - "variance": [ - 2798 - ], - "__typename": [ - 85 - ] - }, - "league_team_seasons_arr_rel_insert_input": { - "data": [ - 2769 - ], - "on_conflict": [ - 2776 - ], - "__typename": [ - 85 - ] - }, - "league_team_seasons_avg_fields": { - "captain_steam_id": [ - 32 - ], - "registered_by_steam_id": [ - 32 - ], - "seed": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_team_seasons_avg_order_by": { - "captain_steam_id": [ - 3648 - ], - "registered_by_steam_id": [ - 3648 - ], - "seed": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_team_seasons_bool_exp": { - "_and": [ - 2766 - ], - "_not": [ - 2766 - ], - "_or": [ - 2766 - ], - "assigned_division": [ - 2470 - ], - "assigned_division_id": [ - 6674 - ], - "captain": [ - 4610 - ], - "captain_steam_id": [ - 314 - ], - "created_at": [ - 5244 - ], - "decline_reason": [ - 87 - ], - "e_registration_status": [ - 1017 - ], - "id": [ - 6674 - ], - "league_season_id": [ - 6674 - ], - "league_team": [ - 2802 - ], - "league_team_id": [ - 6674 - ], - "registered_by": [ - 4610 - ], - "registered_by_steam_id": [ - 314 - ], - "requested_division": [ - 2470 - ], - "requested_division_id": [ - 6674 - ], - "roster": [ - 2725 - ], - "roster_aggregate": [ - 2718 - ], - "season": [ - 2647 - ], - "seed": [ - 42 - ], - "status": [ - 1020 - ], - "tournament_team": [ - 5861 - ], - "tournament_team_id": [ - 6674 - ], - "__typename": [ - 85 - ] - }, - "league_team_seasons_constraint": {}, - "league_team_seasons_inc_input": { - "captain_steam_id": [ - 312 - ], - "registered_by_steam_id": [ - 312 - ], - "seed": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "league_team_seasons_insert_input": { - "assigned_division": [ - 2477 - ], - "assigned_division_id": [ - 6672 - ], - "captain": [ - 4617 - ], - "captain_steam_id": [ - 312 - ], - "created_at": [ - 5243 - ], - "decline_reason": [ - 85 - ], - "e_registration_status": [ - 1025 - ], - "id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "league_team": [ - 2808 - ], - "league_team_id": [ - 6672 - ], - "registered_by": [ - 4617 - ], - "registered_by_steam_id": [ - 312 - ], - "requested_division": [ - 2477 - ], - "requested_division_id": [ - 6672 - ], - "roster": [ - 2722 - ], - "season": [ - 2657 - ], - "seed": [ - 41 - ], - "status": [ - 1019 - ], - "tournament_team": [ - 5870 - ], - "tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "league_team_seasons_max_fields": { - "assigned_division_id": [ - 6672 - ], - "captain_steam_id": [ - 312 - ], - "created_at": [ - 5243 - ], - "decline_reason": [ - 85 - ], - "id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "league_team_id": [ - 6672 - ], - "registered_by_steam_id": [ - 312 - ], - "requested_division_id": [ - 6672 - ], - "seed": [ - 41 - ], - "tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "league_team_seasons_max_order_by": { - "assigned_division_id": [ - 3648 - ], - "captain_steam_id": [ - 3648 - ], - "created_at": [ - 3648 - ], - "decline_reason": [ - 3648 - ], - "id": [ - 3648 - ], - "league_season_id": [ - 3648 - ], - "league_team_id": [ - 3648 - ], - "registered_by_steam_id": [ - 3648 - ], - "requested_division_id": [ - 3648 - ], - "seed": [ - 3648 - ], - "tournament_team_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_team_seasons_min_fields": { - "assigned_division_id": [ - 6672 - ], - "captain_steam_id": [ - 312 - ], - "created_at": [ - 5243 - ], - "decline_reason": [ - 85 - ], - "id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "league_team_id": [ - 6672 - ], - "registered_by_steam_id": [ - 312 - ], - "requested_division_id": [ - 6672 - ], - "seed": [ - 41 - ], - "tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "league_team_seasons_min_order_by": { - "assigned_division_id": [ - 3648 - ], - "captain_steam_id": [ - 3648 - ], - "created_at": [ - 3648 - ], - "decline_reason": [ - 3648 - ], - "id": [ - 3648 - ], - "league_season_id": [ - 3648 - ], - "league_team_id": [ - 3648 - ], - "registered_by_steam_id": [ - 3648 - ], - "requested_division_id": [ - 3648 - ], - "seed": [ - 3648 - ], - "tournament_team_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_team_seasons_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 2757 - ], - "__typename": [ - 85 - ] - }, - "league_team_seasons_obj_rel_insert_input": { - "data": [ - 2769 - ], - "on_conflict": [ - 2776 - ], - "__typename": [ - 85 - ] - }, - "league_team_seasons_on_conflict": { - "constraint": [ - 2767 - ], - "update_columns": [ - 2791 - ], - "where": [ - 2766 - ], - "__typename": [ - 85 - ] - }, - "league_team_seasons_order_by": { - "assigned_division": [ - 2479 - ], - "assigned_division_id": [ - 3648 - ], - "captain": [ - 4619 - ], - "captain_steam_id": [ - 3648 - ], - "created_at": [ - 3648 - ], - "decline_reason": [ - 3648 - ], - "e_registration_status": [ - 1027 - ], - "id": [ - 3648 - ], - "league_season_id": [ - 3648 - ], - "league_team": [ - 2810 - ], - "league_team_id": [ - 3648 - ], - "registered_by": [ - 4619 - ], - "registered_by_steam_id": [ - 3648 - ], - "requested_division": [ - 2479 - ], - "requested_division_id": [ - 3648 - ], - "roster_aggregate": [ - 2721 - ], - "season": [ - 2659 - ], - "seed": [ - 3648 - ], - "status": [ - 3648 - ], - "tournament_team": [ - 5872 - ], - "tournament_team_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_team_seasons_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "league_team_seasons_select_column": {}, - "league_team_seasons_set_input": { - "assigned_division_id": [ - 6672 - ], - "captain_steam_id": [ - 312 - ], - "created_at": [ - 5243 - ], - "decline_reason": [ - 85 - ], - "id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "league_team_id": [ - 6672 - ], - "registered_by_steam_id": [ - 312 - ], - "requested_division_id": [ - 6672 - ], - "seed": [ - 41 - ], - "status": [ - 1019 - ], - "tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "league_team_seasons_stddev_fields": { - "captain_steam_id": [ - 32 - ], - "registered_by_steam_id": [ - 32 - ], - "seed": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_team_seasons_stddev_order_by": { - "captain_steam_id": [ - 3648 - ], - "registered_by_steam_id": [ - 3648 - ], - "seed": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_team_seasons_stddev_pop_fields": { - "captain_steam_id": [ - 32 - ], - "registered_by_steam_id": [ - 32 - ], - "seed": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_team_seasons_stddev_pop_order_by": { - "captain_steam_id": [ - 3648 - ], - "registered_by_steam_id": [ - 3648 - ], - "seed": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_team_seasons_stddev_samp_fields": { - "captain_steam_id": [ - 32 - ], - "registered_by_steam_id": [ - 32 - ], - "seed": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_team_seasons_stddev_samp_order_by": { - "captain_steam_id": [ - 3648 - ], - "registered_by_steam_id": [ - 3648 - ], - "seed": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_team_seasons_stream_cursor_input": { - "initial_value": [ - 2788 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "league_team_seasons_stream_cursor_value_input": { - "assigned_division_id": [ - 6672 - ], - "captain_steam_id": [ - 312 - ], - "created_at": [ - 5243 - ], - "decline_reason": [ - 85 - ], - "id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "league_team_id": [ - 6672 - ], - "registered_by_steam_id": [ - 312 - ], - "requested_division_id": [ - 6672 - ], - "seed": [ - 41 - ], - "status": [ - 1019 - ], - "tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "league_team_seasons_sum_fields": { - "captain_steam_id": [ - 312 - ], - "registered_by_steam_id": [ - 312 - ], - "seed": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "league_team_seasons_sum_order_by": { - "captain_steam_id": [ - 3648 - ], - "registered_by_steam_id": [ - 3648 - ], - "seed": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_team_seasons_update_column": {}, - "league_team_seasons_updates": { - "_inc": [ - 2768 - ], - "_set": [ - 2780 - ], - "where": [ - 2766 - ], - "__typename": [ - 85 - ] - }, - "league_team_seasons_var_pop_fields": { - "captain_steam_id": [ - 32 - ], - "registered_by_steam_id": [ - 32 - ], - "seed": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_team_seasons_var_pop_order_by": { - "captain_steam_id": [ - 3648 - ], - "registered_by_steam_id": [ - 3648 - ], - "seed": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_team_seasons_var_samp_fields": { - "captain_steam_id": [ - 32 - ], - "registered_by_steam_id": [ - 32 - ], - "seed": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_team_seasons_var_samp_order_by": { - "captain_steam_id": [ - 3648 - ], - "registered_by_steam_id": [ - 3648 - ], - "seed": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_team_seasons_variance_fields": { - "captain_steam_id": [ - 32 - ], - "registered_by_steam_id": [ - 32 - ], - "seed": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "league_team_seasons_variance_order_by": { - "captain_steam_id": [ - 3648 - ], - "registered_by_steam_id": [ - 3648 - ], - "seed": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "league_teams": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "movements": [ - 2675, - { - "distinct_on": [ - 2696, - "[league_team_movements_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2694, - "[league_team_movements_order_by!]" - ], - "where": [ - 2684 - ] - } - ], - "movements_aggregate": [ - 2676, - { - "distinct_on": [ - 2696, - "[league_team_movements_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2694, - "[league_team_movements_order_by!]" - ], - "where": [ - 2684 - ] - } - ], - "team": [ - 5194 - ], - "team_id": [ - 6672 - ], - "team_seasons": [ - 2757, - { - "distinct_on": [ - 2779, - "[league_team_seasons_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2777, - "[league_team_seasons_order_by!]" - ], - "where": [ - 2766 - ] - } - ], - "team_seasons_aggregate": [ - 2758, - { - "distinct_on": [ - 2779, - "[league_team_seasons_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2777, - "[league_team_seasons_order_by!]" - ], - "where": [ - 2766 - ] - } - ], - "__typename": [ - 85 - ] - }, - "league_teams_aggregate": { - "aggregate": [ - 2801 - ], - "nodes": [ - 2799 - ], - "__typename": [ - 85 - ] - }, - "league_teams_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 2812, - "[league_teams_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 2805 - ], - "min": [ - 2806 - ], - "__typename": [ - 85 - ] - }, - "league_teams_bool_exp": { - "_and": [ - 2802 - ], - "_not": [ - 2802 - ], - "_or": [ - 2802 - ], - "created_at": [ - 5244 - ], - "id": [ - 6674 - ], - "movements": [ - 2684 - ], - "movements_aggregate": [ - 2677 - ], - "team": [ - 5205 - ], - "team_id": [ - 6674 - ], - "team_seasons": [ - 2766 - ], - "team_seasons_aggregate": [ - 2759 - ], - "__typename": [ - 85 - ] - }, - "league_teams_constraint": {}, - "league_teams_insert_input": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "movements": [ - 2681 - ], - "team": [ - 5214 - ], - "team_id": [ - 6672 - ], - "team_seasons": [ - 2763 - ], - "__typename": [ - 85 - ] - }, - "league_teams_max_fields": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "league_teams_min_fields": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "league_teams_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 2799 - ], - "__typename": [ - 85 - ] - }, - "league_teams_obj_rel_insert_input": { - "data": [ - 2804 - ], - "on_conflict": [ - 2809 - ], - "__typename": [ - 85 - ] - }, - "league_teams_on_conflict": { - "constraint": [ - 2803 - ], - "update_columns": [ - 2816 - ], - "where": [ - 2802 - ], - "__typename": [ - 85 - ] - }, - "league_teams_order_by": { - "created_at": [ - 3648 - ], - "id": [ - 3648 - ], - "movements_aggregate": [ - 2680 - ], - "team": [ - 5216 - ], - "team_id": [ - 3648 - ], - "team_seasons_aggregate": [ - 2762 - ], - "__typename": [ - 85 - ] - }, - "league_teams_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "league_teams_select_column": {}, - "league_teams_set_input": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "league_teams_stream_cursor_input": { - "initial_value": [ - 2815 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "league_teams_stream_cursor_value_input": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "league_teams_update_column": {}, - "league_teams_updates": { - "_set": [ - 2813 - ], - "where": [ - 2802 - ], - "__typename": [ - 85 - ] - }, - "lobbies": { - "access": [ - 1061 - ], - "created_at": [ - 5243 - ], - "e_lobby_access": [ - 1056 - ], - "id": [ - 6672 - ], - "players": [ - 2837, - { - "distinct_on": [ - 2860, - "[lobby_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2858, - "[lobby_players_order_by!]" - ], - "where": [ - 2848 - ] - } - ], - "players_aggregate": [ - 2838, - { - "distinct_on": [ - 2860, - "[lobby_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2858, - "[lobby_players_order_by!]" - ], - "where": [ - 2848 - ] - } - ], - "__typename": [ - 85 - ] - }, - "lobbies_aggregate": { - "aggregate": [ - 2820 - ], - "nodes": [ - 2818 - ], - "__typename": [ - 85 - ] - }, - "lobbies_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 2831, - "[lobbies_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 2824 - ], - "min": [ - 2825 - ], - "__typename": [ - 85 - ] - }, - "lobbies_bool_exp": { - "_and": [ - 2821 - ], - "_not": [ - 2821 - ], - "_or": [ - 2821 - ], - "access": [ - 1062 - ], - "created_at": [ - 5244 - ], - "e_lobby_access": [ - 1059 - ], - "id": [ - 6674 - ], - "players": [ - 2848 - ], - "players_aggregate": [ - 2839 - ], - "__typename": [ - 85 - ] - }, - "lobbies_constraint": {}, - "lobbies_insert_input": { - "access": [ - 1061 - ], - "created_at": [ - 5243 - ], - "e_lobby_access": [ - 1067 - ], - "id": [ - 6672 - ], - "players": [ - 2845 - ], - "__typename": [ - 85 - ] - }, - "lobbies_max_fields": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "lobbies_min_fields": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "lobbies_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 2818 - ], - "__typename": [ - 85 - ] - }, - "lobbies_obj_rel_insert_input": { - "data": [ - 2823 - ], - "on_conflict": [ - 2828 - ], - "__typename": [ - 85 - ] - }, - "lobbies_on_conflict": { - "constraint": [ - 2822 - ], - "update_columns": [ - 2835 - ], - "where": [ - 2821 - ], - "__typename": [ - 85 - ] - }, - "lobbies_order_by": { - "access": [ - 3648 - ], - "created_at": [ - 3648 - ], - "e_lobby_access": [ - 1069 - ], - "id": [ - 3648 - ], - "players_aggregate": [ - 2844 - ], - "__typename": [ - 85 - ] - }, - "lobbies_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "lobbies_select_column": {}, - "lobbies_set_input": { - "access": [ - 1061 - ], - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "lobbies_stream_cursor_input": { - "initial_value": [ - 2834 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "lobbies_stream_cursor_value_input": { - "access": [ - 1061 - ], - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "lobbies_update_column": {}, - "lobbies_updates": { - "_set": [ - 2832 - ], - "where": [ - 2821 - ], - "__typename": [ - 85 - ] - }, - "lobby_players": { - "captain": [ - 6 - ], - "invited_by_steam_id": [ - 312 - ], - "lobby": [ - 2818 - ], - "lobby_id": [ - 6672 - ], - "player": [ - 4606 - ], - "status": [ - 1082 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "lobby_players_aggregate": { - "aggregate": [ - 2843 - ], - "nodes": [ - 2837 - ], - "__typename": [ - 85 - ] - }, - "lobby_players_aggregate_bool_exp": { - "bool_and": [ - 2840 - ], - "bool_or": [ - 2841 - ], - "count": [ - 2842 - ], - "__typename": [ - 85 - ] - }, - "lobby_players_aggregate_bool_exp_bool_and": { - "arguments": [ - 2861 - ], - "distinct": [ - 6 - ], - "filter": [ - 2848 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "lobby_players_aggregate_bool_exp_bool_or": { - "arguments": [ - 2862 - ], - "distinct": [ - 6 - ], - "filter": [ - 2848 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "lobby_players_aggregate_bool_exp_count": { - "arguments": [ - 2860 - ], - "distinct": [ - 6 - ], - "filter": [ - 2848 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "lobby_players_aggregate_fields": { - "avg": [ - 2846 - ], - "count": [ - 41, - { - "columns": [ - 2860, - "[lobby_players_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 2852 - ], - "min": [ - 2854 - ], - "stddev": [ - 2864 - ], - "stddev_pop": [ - 2866 - ], - "stddev_samp": [ - 2868 - ], - "sum": [ - 2872 - ], - "var_pop": [ - 2876 - ], - "var_samp": [ - 2878 - ], - "variance": [ - 2880 - ], - "__typename": [ - 85 - ] - }, - "lobby_players_aggregate_order_by": { - "avg": [ - 2847 - ], - "count": [ - 3648 - ], - "max": [ - 2853 - ], - "min": [ - 2855 - ], - "stddev": [ - 2865 - ], - "stddev_pop": [ - 2867 - ], - "stddev_samp": [ - 2869 - ], - "sum": [ - 2873 - ], - "var_pop": [ - 2877 - ], - "var_samp": [ - 2879 - ], - "variance": [ - 2881 - ], - "__typename": [ - 85 - ] - }, - "lobby_players_arr_rel_insert_input": { - "data": [ - 2851 - ], - "on_conflict": [ - 2857 - ], - "__typename": [ - 85 - ] - }, - "lobby_players_avg_fields": { - "invited_by_steam_id": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "lobby_players_avg_order_by": { - "invited_by_steam_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "lobby_players_bool_exp": { - "_and": [ - 2848 - ], - "_not": [ - 2848 - ], - "_or": [ - 2848 - ], - "captain": [ - 7 - ], - "invited_by_steam_id": [ - 314 - ], - "lobby": [ - 2821 - ], - "lobby_id": [ - 6674 - ], - "player": [ - 4610 - ], - "status": [ - 1083 - ], - "steam_id": [ - 314 - ], - "__typename": [ - 85 - ] - }, - "lobby_players_constraint": {}, - "lobby_players_inc_input": { - "invited_by_steam_id": [ - 312 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "lobby_players_insert_input": { - "captain": [ - 6 - ], - "invited_by_steam_id": [ - 312 - ], - "lobby": [ - 2827 - ], - "lobby_id": [ - 6672 - ], - "player": [ - 4617 - ], - "status": [ - 1082 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "lobby_players_max_fields": { - "invited_by_steam_id": [ - 312 - ], - "lobby_id": [ - 6672 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "lobby_players_max_order_by": { - "invited_by_steam_id": [ - 3648 - ], - "lobby_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "lobby_players_min_fields": { - "invited_by_steam_id": [ - 312 - ], - "lobby_id": [ - 6672 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "lobby_players_min_order_by": { - "invited_by_steam_id": [ - 3648 - ], - "lobby_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "lobby_players_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 2837 - ], - "__typename": [ - 85 - ] - }, - "lobby_players_on_conflict": { - "constraint": [ - 2849 - ], - "update_columns": [ - 2874 - ], - "where": [ - 2848 - ], - "__typename": [ - 85 - ] - }, - "lobby_players_order_by": { - "captain": [ - 3648 - ], - "invited_by_steam_id": [ - 3648 - ], - "lobby": [ - 2829 - ], - "lobby_id": [ - 3648 - ], - "player": [ - 4619 - ], - "status": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "lobby_players_pk_columns_input": { - "lobby_id": [ - 6672 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "lobby_players_select_column": {}, - "lobby_players_select_column_lobby_players_aggregate_bool_exp_bool_and_arguments_columns": {}, - "lobby_players_select_column_lobby_players_aggregate_bool_exp_bool_or_arguments_columns": {}, - "lobby_players_set_input": { - "captain": [ - 6 - ], - "invited_by_steam_id": [ - 312 - ], - "lobby_id": [ - 6672 - ], - "status": [ - 1082 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "lobby_players_stddev_fields": { - "invited_by_steam_id": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "lobby_players_stddev_order_by": { - "invited_by_steam_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "lobby_players_stddev_pop_fields": { - "invited_by_steam_id": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "lobby_players_stddev_pop_order_by": { - "invited_by_steam_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "lobby_players_stddev_samp_fields": { - "invited_by_steam_id": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "lobby_players_stddev_samp_order_by": { - "invited_by_steam_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "lobby_players_stream_cursor_input": { - "initial_value": [ - 2871 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "lobby_players_stream_cursor_value_input": { - "captain": [ - 6 - ], - "invited_by_steam_id": [ - 312 - ], - "lobby_id": [ - 6672 - ], - "status": [ - 1082 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "lobby_players_sum_fields": { - "invited_by_steam_id": [ - 312 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "lobby_players_sum_order_by": { - "invited_by_steam_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "lobby_players_update_column": {}, - "lobby_players_updates": { - "_inc": [ - 2850 - ], - "_set": [ - 2863 - ], - "where": [ - 2848 - ], - "__typename": [ - 85 - ] - }, - "lobby_players_var_pop_fields": { - "invited_by_steam_id": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "lobby_players_var_pop_order_by": { - "invited_by_steam_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "lobby_players_var_samp_fields": { - "invited_by_steam_id": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "lobby_players_var_samp_order_by": { - "invited_by_steam_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "lobby_players_variance_fields": { - "invited_by_steam_id": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "lobby_players_variance_order_by": { - "invited_by_steam_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "map_callouts": { - "boxes": [ - 2439, - { - "path": [ - 85 - ] - } - ], - "map_name": [ - 85 - ], - "name": [ - 85 - ], - "source": [ - 85 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "map_callouts_aggregate": { - "aggregate": [ - 2884 - ], - "nodes": [ - 2882 - ], - "__typename": [ - 85 - ] - }, - "map_callouts_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 2899, - "[map_callouts_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 2892 - ], - "min": [ - 2893 - ], - "__typename": [ - 85 - ] - }, - "map_callouts_append_input": { - "boxes": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "map_callouts_bool_exp": { - "_and": [ - 2886 - ], - "_not": [ - 2886 - ], - "_or": [ - 2886 - ], - "boxes": [ - 2441 - ], - "map_name": [ - 87 - ], - "name": [ - 87 - ], - "source": [ - 87 - ], - "updated_at": [ - 5244 - ], - "__typename": [ - 85 - ] - }, - "map_callouts_constraint": {}, - "map_callouts_delete_at_path_input": { - "boxes": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "map_callouts_delete_elem_input": { - "boxes": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "map_callouts_delete_key_input": { - "boxes": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "map_callouts_insert_input": { - "boxes": [ - 2439 - ], - "map_name": [ - 85 - ], - "name": [ - 85 - ], - "source": [ - 85 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "map_callouts_max_fields": { - "map_name": [ - 85 - ], - "name": [ - 85 - ], - "source": [ - 85 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "map_callouts_min_fields": { - "map_name": [ - 85 - ], - "name": [ - 85 - ], - "source": [ - 85 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "map_callouts_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 2882 - ], - "__typename": [ - 85 - ] - }, - "map_callouts_on_conflict": { - "constraint": [ - 2887 - ], - "update_columns": [ - 2903 - ], - "where": [ - 2886 - ], - "__typename": [ - 85 - ] - }, - "map_callouts_order_by": { - "boxes": [ - 3648 - ], - "map_name": [ - 3648 - ], - "name": [ - 3648 - ], - "source": [ - 3648 - ], - "updated_at": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "map_callouts_pk_columns_input": { - "map_name": [ - 85 - ], - "name": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "map_callouts_prepend_input": { - "boxes": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "map_callouts_select_column": {}, - "map_callouts_set_input": { - "boxes": [ - 2439 - ], - "map_name": [ - 85 - ], - "name": [ - 85 - ], - "source": [ - 85 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "map_callouts_stream_cursor_input": { - "initial_value": [ - 2902 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "map_callouts_stream_cursor_value_input": { - "boxes": [ - 2439 - ], - "map_name": [ - 85 - ], - "name": [ - 85 - ], - "source": [ - 85 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "map_callouts_update_column": {}, - "map_callouts_updates": { - "_append": [ - 2885 - ], - "_delete_at_path": [ - 2888 - ], - "_delete_elem": [ - 2889 - ], - "_delete_key": [ - 2890 - ], - "_prepend": [ - 2898 - ], - "_set": [ - 2900 - ], - "where": [ - 2886 - ], - "__typename": [ - 85 - ] - }, - "map_pools": { - "e_type": [ - 1097 - ], - "enabled": [ - 6 - ], - "id": [ - 6672 - ], - "maps": [ - 7332, - { - "distinct_on": [ - 7349, - "[v_pool_maps_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7348, - "[v_pool_maps_order_by!]" - ], - "where": [ - 7341 - ] - } - ], - "maps_aggregate": [ - 7333, - { - "distinct_on": [ - 7349, - "[v_pool_maps_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7348, - "[v_pool_maps_order_by!]" - ], - "where": [ - 7341 - ] - } - ], - "seed": [ - 6 - ], - "type": [ - 1102 - ], - "__typename": [ - 85 - ] - }, - "map_pools_aggregate": { - "aggregate": [ - 2907 - ], - "nodes": [ - 2905 - ], - "__typename": [ - 85 - ] - }, - "map_pools_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 2918, - "[map_pools_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 2911 - ], - "min": [ - 2912 - ], - "__typename": [ - 85 - ] - }, - "map_pools_bool_exp": { - "_and": [ - 2908 - ], - "_not": [ - 2908 - ], - "_or": [ - 2908 - ], - "e_type": [ - 1100 - ], - "enabled": [ - 7 - ], - "id": [ - 6674 - ], - "maps": [ - 7341 - ], - "maps_aggregate": [ - 7334 - ], - "seed": [ - 7 - ], - "type": [ - 1103 - ], - "__typename": [ - 85 - ] - }, - "map_pools_constraint": {}, - "map_pools_insert_input": { - "e_type": [ - 1108 - ], - "enabled": [ - 6 - ], - "id": [ - 6672 - ], - "maps": [ - 7340 - ], - "seed": [ - 6 - ], - "type": [ - 1102 - ], - "__typename": [ - 85 - ] - }, - "map_pools_max_fields": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "map_pools_min_fields": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "map_pools_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 2905 - ], - "__typename": [ - 85 - ] - }, - "map_pools_obj_rel_insert_input": { - "data": [ - 2910 - ], - "on_conflict": [ - 2915 - ], - "__typename": [ - 85 - ] - }, - "map_pools_on_conflict": { - "constraint": [ - 2909 - ], - "update_columns": [ - 2922 - ], - "where": [ - 2908 - ], - "__typename": [ - 85 - ] - }, - "map_pools_order_by": { - "e_type": [ - 1110 - ], - "enabled": [ - 3648 - ], - "id": [ - 3648 - ], - "maps_aggregate": [ - 7339 - ], - "seed": [ - 3648 - ], - "type": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "map_pools_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "map_pools_select_column": {}, - "map_pools_set_input": { - "enabled": [ - 6 - ], - "id": [ - 6672 - ], - "seed": [ - 6 - ], - "type": [ - 1102 - ], - "__typename": [ - 85 - ] - }, - "map_pools_stream_cursor_input": { - "initial_value": [ - 2921 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "map_pools_stream_cursor_value_input": { - "enabled": [ - 6 - ], - "id": [ - 6672 - ], - "seed": [ - 6 - ], - "type": [ - 1102 - ], - "__typename": [ - 85 - ] - }, - "map_pools_update_column": {}, - "map_pools_updates": { - "_set": [ - 2919 - ], - "where": [ - 2908 - ], - "__typename": [ - 85 - ] - }, - "maps": { - "active_pool": [ - 6 - ], - "deleted_at": [ - 5243 - ], - "e_match_type": [ - 1220 - ], - "enabled": [ - 6 - ], - "id": [ - 6672 - ], - "label": [ - 85 - ], - "match_maps": [ - 3248, - { - "distinct_on": [ - 3270, - "[match_maps_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3268, - "[match_maps_order_by!]" - ], - "where": [ - 3257 - ] - } - ], - "match_maps_aggregate": [ - 3249, - { - "distinct_on": [ - 3270, - "[match_maps_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3268, - "[match_maps_order_by!]" - ], - "where": [ - 3257 - ] - } - ], - "match_veto_picks": [ - 3220, - { - "distinct_on": [ - 3240, - "[match_map_veto_picks_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3238, - "[match_map_veto_picks_order_by!]" - ], - "where": [ - 3229 - ] - } - ], - "match_veto_picks_aggregate": [ - 3221, - { - "distinct_on": [ - 3240, - "[match_map_veto_picks_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3238, - "[match_map_veto_picks_order_by!]" - ], - "where": [ - 3229 - ] - } - ], - "name": [ - 85 - ], - "patch": [ - 85 - ], - "poster": [ - 85 - ], - "type": [ - 1225 - ], - "workshop_map_id": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "maps_aggregate": { - "aggregate": [ - 2930 - ], - "nodes": [ - 2924 - ], - "__typename": [ - 85 - ] - }, - "maps_aggregate_bool_exp": { - "bool_and": [ - 2927 - ], - "bool_or": [ - 2928 - ], - "count": [ - 2929 - ], - "__typename": [ - 85 - ] - }, - "maps_aggregate_bool_exp_bool_and": { - "arguments": [ - 2946 - ], - "distinct": [ - 6 - ], - "filter": [ - 2933 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "maps_aggregate_bool_exp_bool_or": { - "arguments": [ - 2947 - ], - "distinct": [ - 6 - ], - "filter": [ - 2933 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "maps_aggregate_bool_exp_count": { - "arguments": [ - 2945 - ], - "distinct": [ - 6 - ], - "filter": [ - 2933 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "maps_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 2945, - "[maps_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 2936 - ], - "min": [ - 2938 - ], - "__typename": [ - 85 - ] - }, - "maps_aggregate_order_by": { - "count": [ - 3648 - ], - "max": [ - 2937 - ], - "min": [ - 2939 - ], - "__typename": [ - 85 - ] - }, - "maps_arr_rel_insert_input": { - "data": [ - 2935 - ], - "on_conflict": [ - 2942 - ], - "__typename": [ - 85 - ] - }, - "maps_bool_exp": { - "_and": [ - 2933 - ], - "_not": [ - 2933 - ], - "_or": [ - 2933 - ], - "active_pool": [ - 7 - ], - "deleted_at": [ - 5244 - ], - "e_match_type": [ - 1223 - ], - "enabled": [ - 7 - ], - "id": [ - 6674 - ], - "label": [ - 87 - ], - "match_maps": [ - 3257 - ], - "match_maps_aggregate": [ - 3250 - ], - "match_veto_picks": [ - 3229 - ], - "match_veto_picks_aggregate": [ - 3222 - ], - "name": [ - 87 - ], - "patch": [ - 87 - ], - "poster": [ - 87 - ], - "type": [ - 1226 - ], - "workshop_map_id": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "maps_constraint": {}, - "maps_insert_input": { - "active_pool": [ - 6 - ], - "deleted_at": [ - 5243 - ], - "e_match_type": [ - 1231 - ], - "enabled": [ - 6 - ], - "id": [ - 6672 - ], - "label": [ - 85 - ], - "match_maps": [ - 3254 - ], - "match_veto_picks": [ - 3228 - ], - "name": [ - 85 - ], - "patch": [ - 85 - ], - "poster": [ - 85 - ], - "type": [ - 1225 - ], - "workshop_map_id": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "maps_max_fields": { - "deleted_at": [ - 5243 - ], - "id": [ - 6672 - ], - "label": [ - 85 - ], - "name": [ - 85 - ], - "patch": [ - 85 - ], - "poster": [ - 85 - ], - "workshop_map_id": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "maps_max_order_by": { - "deleted_at": [ - 3648 - ], - "id": [ - 3648 - ], - "label": [ - 3648 - ], - "name": [ - 3648 - ], - "patch": [ - 3648 - ], - "poster": [ - 3648 - ], - "workshop_map_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "maps_min_fields": { - "deleted_at": [ - 5243 - ], - "id": [ - 6672 - ], - "label": [ - 85 - ], - "name": [ - 85 - ], - "patch": [ - 85 - ], - "poster": [ - 85 - ], - "workshop_map_id": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "maps_min_order_by": { - "deleted_at": [ - 3648 - ], - "id": [ - 3648 - ], - "label": [ - 3648 - ], - "name": [ - 3648 - ], - "patch": [ - 3648 - ], - "poster": [ - 3648 - ], - "workshop_map_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "maps_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 2924 - ], - "__typename": [ - 85 - ] - }, - "maps_obj_rel_insert_input": { - "data": [ - 2935 - ], - "on_conflict": [ - 2942 - ], - "__typename": [ - 85 - ] - }, - "maps_on_conflict": { - "constraint": [ - 2934 - ], - "update_columns": [ - 2951 - ], - "where": [ - 2933 - ], - "__typename": [ - 85 - ] - }, - "maps_order_by": { - "active_pool": [ - 3648 - ], - "deleted_at": [ - 3648 - ], - "e_match_type": [ - 1233 - ], - "enabled": [ - 3648 - ], - "id": [ - 3648 - ], - "label": [ - 3648 - ], - "match_maps_aggregate": [ - 3253 - ], - "match_veto_picks_aggregate": [ - 3227 - ], - "name": [ - 3648 - ], - "patch": [ - 3648 - ], - "poster": [ - 3648 - ], - "type": [ - 3648 - ], - "workshop_map_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "maps_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "maps_select_column": {}, - "maps_select_column_maps_aggregate_bool_exp_bool_and_arguments_columns": {}, - "maps_select_column_maps_aggregate_bool_exp_bool_or_arguments_columns": {}, - "maps_set_input": { - "active_pool": [ - 6 - ], - "deleted_at": [ - 5243 - ], - "enabled": [ - 6 - ], - "id": [ - 6672 - ], - "label": [ - 85 - ], - "name": [ - 85 - ], - "patch": [ - 85 - ], - "poster": [ - 85 - ], - "type": [ - 1225 - ], - "workshop_map_id": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "maps_stream_cursor_input": { - "initial_value": [ - 2950 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "maps_stream_cursor_value_input": { - "active_pool": [ - 6 - ], - "deleted_at": [ - 5243 - ], - "enabled": [ - 6 - ], - "id": [ - 6672 - ], - "label": [ - 85 - ], - "name": [ - 85 - ], - "patch": [ - 85 - ], - "poster": [ - 85 - ], - "type": [ - 1225 - ], - "workshop_map_id": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "maps_update_column": {}, - "maps_updates": { - "_set": [ - 2948 - ], - "where": [ - 2933 - ], - "__typename": [ - 85 - ] - }, - "match_clips": { - "created_at": [ - 5243 - ], - "download_url": [ - 85 - ], - "duration_ms": [ - 41 - ], - "file": [ - 85 - ], - "id": [ - 6672 - ], - "kills_count": [ - 41 - ], - "match_map": [ - 3248 - ], - "match_map_demo": [ - 3128 - ], - "match_map_demo_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "render_jobs": [ - 344, - { - "distinct_on": [ - 372, - "[clip_render_jobs_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 369, - "[clip_render_jobs_order_by!]" - ], - "where": [ - 356 - ] - } - ], - "render_jobs_aggregate": [ - 345, - { - "distinct_on": [ - 372, - "[clip_render_jobs_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 369, - "[clip_render_jobs_order_by!]" - ], - "where": [ - 356 - ] - } - ], - "round": [ - 41 - ], - "size": [ - 312 - ], - "target": [ - 4606 - ], - "target_steam_id": [ - 312 - ], - "thumbnail_download_url": [ - 85 - ], - "thumbnail_url": [ - 85 - ], - "title": [ - 85 - ], - "user": [ - 4606 - ], - "user_steam_id": [ - 312 - ], - "views_count": [ - 41 - ], - "visibility": [ - 1123 - ], - "__typename": [ - 85 - ] - }, - "match_clips_aggregate": { - "aggregate": [ - 2957 - ], - "nodes": [ - 2953 - ], - "__typename": [ - 85 - ] - }, - "match_clips_aggregate_bool_exp": { - "count": [ - 2956 - ], - "__typename": [ - 85 - ] - }, - "match_clips_aggregate_bool_exp_count": { - "arguments": [ - 2975 - ], - "distinct": [ - 6 - ], - "filter": [ - 2962 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "match_clips_aggregate_fields": { - "avg": [ - 2960 - ], - "count": [ - 41, - { - "columns": [ - 2975, - "[match_clips_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 2966 - ], - "min": [ - 2968 - ], - "stddev": [ - 2977 - ], - "stddev_pop": [ - 2979 - ], - "stddev_samp": [ - 2981 - ], - "sum": [ - 2985 - ], - "var_pop": [ - 2989 - ], - "var_samp": [ - 2991 - ], - "variance": [ - 2993 - ], - "__typename": [ - 85 - ] - }, - "match_clips_aggregate_order_by": { - "avg": [ - 2961 - ], - "count": [ - 3648 - ], - "max": [ - 2967 - ], - "min": [ - 2969 - ], - "stddev": [ - 2978 - ], - "stddev_pop": [ - 2980 - ], - "stddev_samp": [ - 2982 - ], - "sum": [ - 2986 - ], - "var_pop": [ - 2990 - ], - "var_samp": [ - 2992 - ], - "variance": [ - 2994 - ], - "__typename": [ - 85 - ] - }, - "match_clips_arr_rel_insert_input": { - "data": [ - 2965 - ], - "on_conflict": [ - 2972 - ], - "__typename": [ - 85 - ] - }, - "match_clips_avg_fields": { - "duration_ms": [ - 32 - ], - "kills_count": [ - 32 - ], - "round": [ - 32 - ], - "size": [ - 32 - ], - "target_steam_id": [ - 32 - ], - "user_steam_id": [ - 32 - ], - "views_count": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_clips_avg_order_by": { - "duration_ms": [ - 3648 - ], - "kills_count": [ - 3648 - ], - "round": [ - 3648 - ], - "size": [ - 3648 - ], - "target_steam_id": [ - 3648 - ], - "user_steam_id": [ - 3648 - ], - "views_count": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_clips_bool_exp": { - "_and": [ - 2962 - ], - "_not": [ - 2962 - ], - "_or": [ - 2962 - ], - "created_at": [ - 5244 - ], - "download_url": [ - 87 - ], - "duration_ms": [ - 42 - ], - "file": [ - 87 - ], - "id": [ - 6674 - ], - "kills_count": [ - 42 - ], - "match_map": [ - 3257 - ], - "match_map_demo": [ - 3140 - ], - "match_map_demo_id": [ - 6674 - ], - "match_map_id": [ - 6674 - ], - "render_jobs": [ - 356 - ], - "render_jobs_aggregate": [ - 346 - ], - "round": [ - 42 - ], - "size": [ - 314 - ], - "target": [ - 4610 - ], - "target_steam_id": [ - 314 - ], - "thumbnail_download_url": [ - 87 - ], - "thumbnail_url": [ - 87 - ], - "title": [ - 87 - ], - "user": [ - 4610 - ], - "user_steam_id": [ - 314 - ], - "views_count": [ - 42 - ], - "visibility": [ - 1124 - ], - "__typename": [ - 85 - ] - }, - "match_clips_constraint": {}, - "match_clips_inc_input": { - "duration_ms": [ - 41 - ], - "kills_count": [ - 41 - ], - "round": [ - 41 - ], - "size": [ - 312 - ], - "target_steam_id": [ - 312 - ], - "user_steam_id": [ - 312 - ], - "views_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "match_clips_insert_input": { - "created_at": [ - 5243 - ], - "duration_ms": [ - 41 - ], - "file": [ - 85 - ], - "id": [ - 6672 - ], - "kills_count": [ - 41 - ], - "match_map": [ - 3266 - ], - "match_map_demo": [ - 3152 - ], - "match_map_demo_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "render_jobs": [ - 353 - ], - "round": [ - 41 - ], - "size": [ - 312 - ], - "target": [ - 4617 - ], - "target_steam_id": [ - 312 - ], - "thumbnail_url": [ - 85 - ], - "title": [ - 85 - ], - "user": [ - 4617 - ], - "user_steam_id": [ - 312 - ], - "views_count": [ - 41 - ], - "visibility": [ - 1123 - ], - "__typename": [ - 85 - ] - }, - "match_clips_max_fields": { - "created_at": [ - 5243 - ], - "download_url": [ - 85 - ], - "duration_ms": [ - 41 - ], - "file": [ - 85 - ], - "id": [ - 6672 - ], - "kills_count": [ - 41 - ], - "match_map_demo_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "round": [ - 41 - ], - "size": [ - 312 - ], - "target_steam_id": [ - 312 - ], - "thumbnail_download_url": [ - 85 - ], - "thumbnail_url": [ - 85 - ], - "title": [ - 85 - ], - "user_steam_id": [ - 312 - ], - "views_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "match_clips_max_order_by": { - "created_at": [ - 3648 - ], - "duration_ms": [ - 3648 - ], - "file": [ - 3648 - ], - "id": [ - 3648 - ], - "kills_count": [ - 3648 - ], - "match_map_demo_id": [ - 3648 - ], - "match_map_id": [ - 3648 - ], - "round": [ - 3648 - ], - "size": [ - 3648 - ], - "target_steam_id": [ - 3648 - ], - "thumbnail_url": [ - 3648 - ], - "title": [ - 3648 - ], - "user_steam_id": [ - 3648 - ], - "views_count": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_clips_min_fields": { - "created_at": [ - 5243 - ], - "download_url": [ - 85 - ], - "duration_ms": [ - 41 - ], - "file": [ - 85 - ], - "id": [ - 6672 - ], - "kills_count": [ - 41 - ], - "match_map_demo_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "round": [ - 41 - ], - "size": [ - 312 - ], - "target_steam_id": [ - 312 - ], - "thumbnail_download_url": [ - 85 - ], - "thumbnail_url": [ - 85 - ], - "title": [ - 85 - ], - "user_steam_id": [ - 312 - ], - "views_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "match_clips_min_order_by": { - "created_at": [ - 3648 - ], - "duration_ms": [ - 3648 - ], - "file": [ - 3648 - ], - "id": [ - 3648 - ], - "kills_count": [ - 3648 - ], - "match_map_demo_id": [ - 3648 - ], - "match_map_id": [ - 3648 - ], - "round": [ - 3648 - ], - "size": [ - 3648 - ], - "target_steam_id": [ - 3648 - ], - "thumbnail_url": [ - 3648 - ], - "title": [ - 3648 - ], - "user_steam_id": [ - 3648 - ], - "views_count": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_clips_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 2953 - ], - "__typename": [ - 85 - ] - }, - "match_clips_obj_rel_insert_input": { - "data": [ - 2965 - ], - "on_conflict": [ - 2972 - ], - "__typename": [ - 85 - ] - }, - "match_clips_on_conflict": { - "constraint": [ - 2963 - ], - "update_columns": [ - 2987 - ], - "where": [ - 2962 - ], - "__typename": [ - 85 - ] - }, - "match_clips_order_by": { - "created_at": [ - 3648 - ], - "download_url": [ - 3648 - ], - "duration_ms": [ - 3648 - ], - "file": [ - 3648 - ], - "id": [ - 3648 - ], - "kills_count": [ - 3648 - ], - "match_map": [ - 3268 - ], - "match_map_demo": [ - 3154 - ], - "match_map_demo_id": [ - 3648 - ], - "match_map_id": [ - 3648 - ], - "render_jobs_aggregate": [ - 351 - ], - "round": [ - 3648 - ], - "size": [ - 3648 - ], - "target": [ - 4619 - ], - "target_steam_id": [ - 3648 - ], - "thumbnail_download_url": [ - 3648 - ], - "thumbnail_url": [ - 3648 - ], - "title": [ - 3648 - ], - "user": [ - 4619 - ], - "user_steam_id": [ - 3648 - ], - "views_count": [ - 3648 - ], - "visibility": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_clips_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "match_clips_select_column": {}, - "match_clips_set_input": { - "created_at": [ - 5243 - ], - "duration_ms": [ - 41 - ], - "file": [ - 85 - ], - "id": [ - 6672 - ], - "kills_count": [ - 41 - ], - "match_map_demo_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "round": [ - 41 - ], - "size": [ - 312 - ], - "target_steam_id": [ - 312 - ], - "thumbnail_url": [ - 85 - ], - "title": [ - 85 - ], - "user_steam_id": [ - 312 - ], - "views_count": [ - 41 - ], - "visibility": [ - 1123 - ], - "__typename": [ - 85 - ] - }, - "match_clips_stddev_fields": { - "duration_ms": [ - 32 - ], - "kills_count": [ - 32 - ], - "round": [ - 32 - ], - "size": [ - 32 - ], - "target_steam_id": [ - 32 - ], - "user_steam_id": [ - 32 - ], - "views_count": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_clips_stddev_order_by": { - "duration_ms": [ - 3648 - ], - "kills_count": [ - 3648 - ], - "round": [ - 3648 - ], - "size": [ - 3648 - ], - "target_steam_id": [ - 3648 - ], - "user_steam_id": [ - 3648 - ], - "views_count": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_clips_stddev_pop_fields": { - "duration_ms": [ - 32 - ], - "kills_count": [ - 32 - ], - "round": [ - 32 - ], - "size": [ - 32 - ], - "target_steam_id": [ - 32 - ], - "user_steam_id": [ - 32 - ], - "views_count": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_clips_stddev_pop_order_by": { - "duration_ms": [ - 3648 - ], - "kills_count": [ - 3648 - ], - "round": [ - 3648 - ], - "size": [ - 3648 - ], - "target_steam_id": [ - 3648 - ], - "user_steam_id": [ - 3648 - ], - "views_count": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_clips_stddev_samp_fields": { - "duration_ms": [ - 32 - ], - "kills_count": [ - 32 - ], - "round": [ - 32 - ], - "size": [ - 32 - ], - "target_steam_id": [ - 32 - ], - "user_steam_id": [ - 32 - ], - "views_count": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_clips_stddev_samp_order_by": { - "duration_ms": [ - 3648 - ], - "kills_count": [ - 3648 - ], - "round": [ - 3648 - ], - "size": [ - 3648 - ], - "target_steam_id": [ - 3648 - ], - "user_steam_id": [ - 3648 - ], - "views_count": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_clips_stream_cursor_input": { - "initial_value": [ - 2984 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "match_clips_stream_cursor_value_input": { - "created_at": [ - 5243 - ], - "duration_ms": [ - 41 - ], - "file": [ - 85 - ], - "id": [ - 6672 - ], - "kills_count": [ - 41 - ], - "match_map_demo_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "round": [ - 41 - ], - "size": [ - 312 - ], - "target_steam_id": [ - 312 - ], - "thumbnail_url": [ - 85 - ], - "title": [ - 85 - ], - "user_steam_id": [ - 312 - ], - "views_count": [ - 41 - ], - "visibility": [ - 1123 - ], - "__typename": [ - 85 - ] - }, - "match_clips_sum_fields": { - "duration_ms": [ - 41 - ], - "kills_count": [ - 41 - ], - "round": [ - 41 - ], - "size": [ - 312 - ], - "target_steam_id": [ - 312 - ], - "user_steam_id": [ - 312 - ], - "views_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "match_clips_sum_order_by": { - "duration_ms": [ - 3648 - ], - "kills_count": [ - 3648 - ], - "round": [ - 3648 - ], - "size": [ - 3648 - ], - "target_steam_id": [ - 3648 - ], - "user_steam_id": [ - 3648 - ], - "views_count": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_clips_update_column": {}, - "match_clips_updates": { - "_inc": [ - 2964 - ], - "_set": [ - 2976 - ], - "where": [ - 2962 - ], - "__typename": [ - 85 - ] - }, - "match_clips_var_pop_fields": { - "duration_ms": [ - 32 - ], - "kills_count": [ - 32 - ], - "round": [ - 32 - ], - "size": [ - 32 - ], - "target_steam_id": [ - 32 - ], - "user_steam_id": [ - 32 - ], - "views_count": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_clips_var_pop_order_by": { - "duration_ms": [ - 3648 - ], - "kills_count": [ - 3648 - ], - "round": [ - 3648 - ], - "size": [ - 3648 - ], - "target_steam_id": [ - 3648 - ], - "user_steam_id": [ - 3648 - ], - "views_count": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_clips_var_samp_fields": { - "duration_ms": [ - 32 - ], - "kills_count": [ - 32 - ], - "round": [ - 32 - ], - "size": [ - 32 - ], - "target_steam_id": [ - 32 - ], - "user_steam_id": [ - 32 - ], - "views_count": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_clips_var_samp_order_by": { - "duration_ms": [ - 3648 - ], - "kills_count": [ - 3648 - ], - "round": [ - 3648 - ], - "size": [ - 3648 - ], - "target_steam_id": [ - 3648 - ], - "user_steam_id": [ - 3648 - ], - "views_count": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_clips_variance_fields": { - "duration_ms": [ - 32 - ], - "kills_count": [ - 32 - ], - "round": [ - 32 - ], - "size": [ - 32 - ], - "target_steam_id": [ - 32 - ], - "user_steam_id": [ - 32 - ], - "views_count": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_clips_variance_order_by": { - "duration_ms": [ - 3648 - ], - "kills_count": [ - 3648 - ], - "round": [ - 3648 - ], - "size": [ - 3648 - ], - "target_steam_id": [ - 3648 - ], - "user_steam_id": [ - 3648 - ], - "views_count": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_demo_sessions": { - "created_at": [ - 5243 - ], - "error_message": [ - 85 - ], - "game_server_node": [ - 2314 - ], - "game_server_node_id": [ - 85 - ], - "id": [ - 6672 - ], - "k8s_job_name": [ - 85 - ], - "last_activity_at": [ - 5243 - ], - "last_status_at": [ - 5243 - ], - "match": [ - 3432 - ], - "match_id": [ - 6672 - ], - "match_map": [ - 3248 - ], - "match_map_demo": [ - 3128 - ], - "match_map_demo_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "status": [ - 85 - ], - "status_history": [ - 2439, - { - "path": [ - 85 - ] - } - ], - "stream_url": [ - 85 - ], - "watcher": [ - 4606 - ], - "watcher_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "match_demo_sessions_aggregate": { - "aggregate": [ - 2999 - ], - "nodes": [ - 2995 - ], - "__typename": [ - 85 - ] - }, - "match_demo_sessions_aggregate_bool_exp": { - "count": [ - 2998 - ], - "__typename": [ - 85 - ] - }, - "match_demo_sessions_aggregate_bool_exp_count": { - "arguments": [ - 3021 - ], - "distinct": [ - 6 - ], - "filter": [ - 3005 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "match_demo_sessions_aggregate_fields": { - "avg": [ - 3003 - ], - "count": [ - 41, - { - "columns": [ - 3021, - "[match_demo_sessions_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 3012 - ], - "min": [ - 3014 - ], - "stddev": [ - 3023 - ], - "stddev_pop": [ - 3025 - ], - "stddev_samp": [ - 3027 - ], - "sum": [ - 3031 - ], - "var_pop": [ - 3035 - ], - "var_samp": [ - 3037 - ], - "variance": [ - 3039 - ], - "__typename": [ - 85 - ] - }, - "match_demo_sessions_aggregate_order_by": { - "avg": [ - 3004 - ], - "count": [ - 3648 - ], - "max": [ - 3013 - ], - "min": [ - 3015 - ], - "stddev": [ - 3024 - ], - "stddev_pop": [ - 3026 - ], - "stddev_samp": [ - 3028 - ], - "sum": [ - 3032 - ], - "var_pop": [ - 3036 - ], - "var_samp": [ - 3038 - ], - "variance": [ - 3040 - ], - "__typename": [ - 85 - ] - }, - "match_demo_sessions_append_input": { - "status_history": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "match_demo_sessions_arr_rel_insert_input": { - "data": [ - 3011 - ], - "on_conflict": [ - 3017 - ], - "__typename": [ - 85 - ] - }, - "match_demo_sessions_avg_fields": { - "watcher_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_demo_sessions_avg_order_by": { - "watcher_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_demo_sessions_bool_exp": { - "_and": [ - 3005 - ], - "_not": [ - 3005 - ], - "_or": [ - 3005 - ], - "created_at": [ - 5244 - ], - "error_message": [ - 87 - ], - "game_server_node": [ - 2326 - ], - "game_server_node_id": [ - 87 - ], - "id": [ - 6674 - ], - "k8s_job_name": [ - 87 - ], - "last_activity_at": [ - 5244 - ], - "last_status_at": [ - 5244 - ], - "match": [ - 3443 - ], - "match_id": [ - 6674 - ], - "match_map": [ - 3257 - ], - "match_map_demo": [ - 3140 - ], - "match_map_demo_id": [ - 6674 - ], - "match_map_id": [ - 6674 - ], - "status": [ - 87 - ], - "status_history": [ - 2441 - ], - "stream_url": [ - 87 - ], - "watcher": [ - 4610 - ], - "watcher_steam_id": [ - 314 - ], - "__typename": [ - 85 - ] - }, - "match_demo_sessions_constraint": {}, - "match_demo_sessions_delete_at_path_input": { - "status_history": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "match_demo_sessions_delete_elem_input": { - "status_history": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "match_demo_sessions_delete_key_input": { - "status_history": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "match_demo_sessions_inc_input": { - "watcher_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "match_demo_sessions_insert_input": { - "created_at": [ - 5243 - ], - "error_message": [ - 85 - ], - "game_server_node": [ - 2338 - ], - "game_server_node_id": [ - 85 - ], - "id": [ - 6672 - ], - "k8s_job_name": [ - 85 - ], - "last_activity_at": [ - 5243 - ], - "last_status_at": [ - 5243 - ], - "match": [ - 3452 - ], - "match_id": [ - 6672 - ], - "match_map": [ - 3266 - ], - "match_map_demo": [ - 3152 - ], - "match_map_demo_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "status": [ - 85 - ], - "status_history": [ - 2439 - ], - "stream_url": [ - 85 - ], - "watcher": [ - 4617 - ], - "watcher_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "match_demo_sessions_max_fields": { - "created_at": [ - 5243 - ], - "error_message": [ - 85 - ], - "game_server_node_id": [ - 85 - ], - "id": [ - 6672 - ], - "k8s_job_name": [ - 85 - ], - "last_activity_at": [ - 5243 - ], - "last_status_at": [ - 5243 - ], - "match_id": [ - 6672 - ], - "match_map_demo_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "status": [ - 85 - ], - "stream_url": [ - 85 - ], - "watcher_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "match_demo_sessions_max_order_by": { - "created_at": [ - 3648 - ], - "error_message": [ - 3648 - ], - "game_server_node_id": [ - 3648 - ], - "id": [ - 3648 - ], - "k8s_job_name": [ - 3648 - ], - "last_activity_at": [ - 3648 - ], - "last_status_at": [ - 3648 - ], - "match_id": [ - 3648 - ], - "match_map_demo_id": [ - 3648 - ], - "match_map_id": [ - 3648 - ], - "status": [ - 3648 - ], - "stream_url": [ - 3648 - ], - "watcher_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_demo_sessions_min_fields": { - "created_at": [ - 5243 - ], - "error_message": [ - 85 - ], - "game_server_node_id": [ - 85 - ], - "id": [ - 6672 - ], - "k8s_job_name": [ - 85 - ], - "last_activity_at": [ - 5243 - ], - "last_status_at": [ - 5243 - ], - "match_id": [ - 6672 - ], - "match_map_demo_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "status": [ - 85 - ], - "stream_url": [ - 85 - ], - "watcher_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "match_demo_sessions_min_order_by": { - "created_at": [ - 3648 - ], - "error_message": [ - 3648 - ], - "game_server_node_id": [ - 3648 - ], - "id": [ - 3648 - ], - "k8s_job_name": [ - 3648 - ], - "last_activity_at": [ - 3648 - ], - "last_status_at": [ - 3648 - ], - "match_id": [ - 3648 - ], - "match_map_demo_id": [ - 3648 - ], - "match_map_id": [ - 3648 - ], - "status": [ - 3648 - ], - "stream_url": [ - 3648 - ], - "watcher_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_demo_sessions_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 2995 - ], - "__typename": [ - 85 - ] - }, - "match_demo_sessions_on_conflict": { - "constraint": [ - 3006 - ], - "update_columns": [ - 3033 - ], - "where": [ - 3005 - ], - "__typename": [ - 85 - ] - }, - "match_demo_sessions_order_by": { - "created_at": [ - 3648 - ], - "error_message": [ - 3648 - ], - "game_server_node": [ - 2340 - ], - "game_server_node_id": [ - 3648 - ], - "id": [ - 3648 - ], - "k8s_job_name": [ - 3648 - ], - "last_activity_at": [ - 3648 - ], - "last_status_at": [ - 3648 - ], - "match": [ - 3454 - ], - "match_id": [ - 3648 - ], - "match_map": [ - 3268 - ], - "match_map_demo": [ - 3154 - ], - "match_map_demo_id": [ - 3648 - ], - "match_map_id": [ - 3648 - ], - "status": [ - 3648 - ], - "status_history": [ - 3648 - ], - "stream_url": [ - 3648 - ], - "watcher": [ - 4619 - ], - "watcher_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_demo_sessions_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "match_demo_sessions_prepend_input": { - "status_history": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "match_demo_sessions_select_column": {}, - "match_demo_sessions_set_input": { - "created_at": [ - 5243 - ], - "error_message": [ - 85 - ], - "game_server_node_id": [ - 85 - ], - "id": [ - 6672 - ], - "k8s_job_name": [ - 85 - ], - "last_activity_at": [ - 5243 - ], - "last_status_at": [ - 5243 - ], - "match_id": [ - 6672 - ], - "match_map_demo_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "status": [ - 85 - ], - "status_history": [ - 2439 - ], - "stream_url": [ - 85 - ], - "watcher_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "match_demo_sessions_stddev_fields": { - "watcher_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_demo_sessions_stddev_order_by": { - "watcher_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_demo_sessions_stddev_pop_fields": { - "watcher_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_demo_sessions_stddev_pop_order_by": { - "watcher_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_demo_sessions_stddev_samp_fields": { - "watcher_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_demo_sessions_stddev_samp_order_by": { - "watcher_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_demo_sessions_stream_cursor_input": { - "initial_value": [ - 3030 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "match_demo_sessions_stream_cursor_value_input": { - "created_at": [ - 5243 - ], - "error_message": [ - 85 - ], - "game_server_node_id": [ - 85 - ], - "id": [ - 6672 - ], - "k8s_job_name": [ - 85 - ], - "last_activity_at": [ - 5243 - ], - "last_status_at": [ - 5243 - ], - "match_id": [ - 6672 - ], - "match_map_demo_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "status": [ - 85 - ], - "status_history": [ - 2439 - ], - "stream_url": [ - 85 - ], - "watcher_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "match_demo_sessions_sum_fields": { - "watcher_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "match_demo_sessions_sum_order_by": { - "watcher_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_demo_sessions_update_column": {}, - "match_demo_sessions_updates": { - "_append": [ - 3001 - ], - "_delete_at_path": [ - 3007 - ], - "_delete_elem": [ - 3008 - ], - "_delete_key": [ - 3009 - ], - "_inc": [ - 3010 - ], - "_prepend": [ - 3020 - ], - "_set": [ - 3022 - ], - "where": [ - 3005 - ], - "__typename": [ - 85 - ] - }, - "match_demo_sessions_var_pop_fields": { - "watcher_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_demo_sessions_var_pop_order_by": { - "watcher_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_demo_sessions_var_samp_fields": { - "watcher_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_demo_sessions_var_samp_order_by": { - "watcher_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_demo_sessions_variance_fields": { - "watcher_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_demo_sessions_variance_order_by": { - "watcher_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_lineup_players": { - "captain": [ - 6 - ], - "checked_in": [ - 6 - ], - "discord_id": [ - 85 - ], - "id": [ - 6672 - ], - "is_connected": [ - 6 - ], - "lineup": [ - 3086 - ], - "match_lineup_id": [ - 6672 - ], - "party_id": [ - 6672 - ], - "party_source": [ - 1184 - ], - "placeholder_name": [ - 85 - ], - "player": [ - 4606 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "match_lineup_players_aggregate": { - "aggregate": [ - 3047 - ], - "nodes": [ - 3041 - ], - "__typename": [ - 85 - ] - }, - "match_lineup_players_aggregate_bool_exp": { - "bool_and": [ - 3044 - ], - "bool_or": [ - 3045 - ], - "count": [ - 3046 - ], - "__typename": [ - 85 - ] - }, - "match_lineup_players_aggregate_bool_exp_bool_and": { - "arguments": [ - 3065 - ], - "distinct": [ - 6 - ], - "filter": [ - 3052 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "match_lineup_players_aggregate_bool_exp_bool_or": { - "arguments": [ - 3066 - ], - "distinct": [ - 6 - ], - "filter": [ - 3052 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "match_lineup_players_aggregate_bool_exp_count": { - "arguments": [ - 3064 - ], - "distinct": [ - 6 - ], - "filter": [ - 3052 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "match_lineup_players_aggregate_fields": { - "avg": [ - 3050 - ], - "count": [ - 41, - { - "columns": [ - 3064, - "[match_lineup_players_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 3056 - ], - "min": [ - 3058 - ], - "stddev": [ - 3068 - ], - "stddev_pop": [ - 3070 - ], - "stddev_samp": [ - 3072 - ], - "sum": [ - 3076 - ], - "var_pop": [ - 3080 - ], - "var_samp": [ - 3082 - ], - "variance": [ - 3084 - ], - "__typename": [ - 85 - ] - }, - "match_lineup_players_aggregate_order_by": { - "avg": [ - 3051 - ], - "count": [ - 3648 - ], - "max": [ - 3057 - ], - "min": [ - 3059 - ], - "stddev": [ - 3069 - ], - "stddev_pop": [ - 3071 - ], - "stddev_samp": [ - 3073 - ], - "sum": [ - 3077 - ], - "var_pop": [ - 3081 - ], - "var_samp": [ - 3083 - ], - "variance": [ - 3085 - ], - "__typename": [ - 85 - ] - }, - "match_lineup_players_arr_rel_insert_input": { - "data": [ - 3055 - ], - "on_conflict": [ - 3061 - ], - "__typename": [ - 85 - ] - }, - "match_lineup_players_avg_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_lineup_players_avg_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_lineup_players_bool_exp": { - "_and": [ - 3052 - ], - "_not": [ - 3052 - ], - "_or": [ - 3052 - ], - "captain": [ - 7 - ], - "checked_in": [ - 7 - ], - "discord_id": [ - 87 - ], - "id": [ - 6674 - ], - "is_connected": [ - 7 - ], - "lineup": [ - 3095 - ], - "match_lineup_id": [ - 6674 - ], - "party_id": [ - 6674 - ], - "party_source": [ - 1185 - ], - "placeholder_name": [ - 87 - ], - "player": [ - 4610 - ], - "steam_id": [ - 314 - ], - "__typename": [ - 85 - ] - }, - "match_lineup_players_constraint": {}, - "match_lineup_players_inc_input": { - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "match_lineup_players_insert_input": { - "captain": [ - 6 - ], - "checked_in": [ - 6 - ], - "discord_id": [ - 85 - ], - "id": [ - 6672 - ], - "is_connected": [ - 6 - ], - "lineup": [ - 3104 - ], - "match_lineup_id": [ - 6672 - ], - "party_id": [ - 6672 - ], - "party_source": [ - 1184 - ], - "placeholder_name": [ - 85 - ], - "player": [ - 4617 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "match_lineup_players_max_fields": { - "discord_id": [ - 85 - ], - "id": [ - 6672 - ], - "match_lineup_id": [ - 6672 - ], - "party_id": [ - 6672 - ], - "placeholder_name": [ - 85 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "match_lineup_players_max_order_by": { - "discord_id": [ - 3648 - ], - "id": [ - 3648 - ], - "match_lineup_id": [ - 3648 - ], - "party_id": [ - 3648 - ], - "placeholder_name": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_lineup_players_min_fields": { - "discord_id": [ - 85 - ], - "id": [ - 6672 - ], - "match_lineup_id": [ - 6672 - ], - "party_id": [ - 6672 - ], - "placeholder_name": [ - 85 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "match_lineup_players_min_order_by": { - "discord_id": [ - 3648 - ], - "id": [ - 3648 - ], - "match_lineup_id": [ - 3648 - ], - "party_id": [ - 3648 - ], - "placeholder_name": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_lineup_players_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 3041 - ], - "__typename": [ - 85 - ] - }, - "match_lineup_players_on_conflict": { - "constraint": [ - 3053 - ], - "update_columns": [ - 3078 - ], - "where": [ - 3052 - ], - "__typename": [ - 85 - ] - }, - "match_lineup_players_order_by": { - "captain": [ - 3648 - ], - "checked_in": [ - 3648 - ], - "discord_id": [ - 3648 - ], - "id": [ - 3648 - ], - "is_connected": [ - 3648 - ], - "lineup": [ - 3106 - ], - "match_lineup_id": [ - 3648 - ], - "party_id": [ - 3648 - ], - "party_source": [ - 3648 - ], - "placeholder_name": [ - 3648 - ], - "player": [ - 4619 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_lineup_players_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "match_lineup_players_select_column": {}, - "match_lineup_players_select_column_match_lineup_players_aggregate_bool_exp_bool_and_arguments_columns": {}, - "match_lineup_players_select_column_match_lineup_players_aggregate_bool_exp_bool_or_arguments_columns": {}, - "match_lineup_players_set_input": { - "captain": [ - 6 - ], - "checked_in": [ - 6 - ], - "discord_id": [ - 85 - ], - "id": [ - 6672 - ], - "is_connected": [ - 6 - ], - "match_lineup_id": [ - 6672 - ], - "party_id": [ - 6672 - ], - "party_source": [ - 1184 - ], - "placeholder_name": [ - 85 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "match_lineup_players_stddev_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_lineup_players_stddev_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_lineup_players_stddev_pop_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_lineup_players_stddev_pop_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_lineup_players_stddev_samp_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_lineup_players_stddev_samp_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_lineup_players_stream_cursor_input": { - "initial_value": [ - 3075 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "match_lineup_players_stream_cursor_value_input": { - "captain": [ - 6 - ], - "checked_in": [ - 6 - ], - "discord_id": [ - 85 - ], - "id": [ - 6672 - ], - "is_connected": [ - 6 - ], - "match_lineup_id": [ - 6672 - ], - "party_id": [ - 6672 - ], - "party_source": [ - 1184 - ], - "placeholder_name": [ - 85 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "match_lineup_players_sum_fields": { - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "match_lineup_players_sum_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_lineup_players_update_column": {}, - "match_lineup_players_updates": { - "_inc": [ - 3054 - ], - "_set": [ - 3067 - ], - "where": [ - 3052 - ], - "__typename": [ - 85 - ] - }, - "match_lineup_players_var_pop_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_lineup_players_var_pop_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_lineup_players_var_samp_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_lineup_players_var_samp_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_lineup_players_variance_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_lineup_players_variance_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_lineups": { - "can_pick_map_veto": [ - 6 - ], - "can_pick_region_veto": [ - 6 - ], - "can_update_lineup": [ - 6 - ], - "captain": [ - 6828 - ], - "coach": [ - 4606 - ], - "coach_steam_id": [ - 312 - ], - "id": [ - 6672 - ], - "is_on_lineup": [ - 6 - ], - "is_picking_map_veto": [ - 6 - ], - "is_picking_region_veto": [ - 6 - ], - "is_ready": [ - 6 - ], - "lineup_players": [ - 3041, - { - "distinct_on": [ - 3064, - "[match_lineup_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3062, - "[match_lineup_players_order_by!]" - ], - "where": [ - 3052 - ] - } - ], - "lineup_players_aggregate": [ - 3042, - { - "distinct_on": [ - 3064, - "[match_lineup_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3062, - "[match_lineup_players_order_by!]" - ], - "where": [ - 3052 - ] - } - ], - "match": [ - 3432 - ], - "match_id": [ - 6672 - ], - "match_veto_picks": [ - 3220, - { - "distinct_on": [ - 3240, - "[match_map_veto_picks_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3238, - "[match_map_veto_picks_order_by!]" - ], - "where": [ - 3229 - ] - } - ], - "match_veto_picks_aggregate": [ - 3221, - { - "distinct_on": [ - 3240, - "[match_map_veto_picks_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3238, - "[match_map_veto_picks_order_by!]" - ], - "where": [ - 3229 - ] - } - ], - "name": [ - 85 - ], - "team": [ - 5194 - ], - "team_id": [ - 6672 - ], - "team_name": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "match_lineups_aggregate": { - "aggregate": [ - 3090 - ], - "nodes": [ - 3086 - ], - "__typename": [ - 85 - ] - }, - "match_lineups_aggregate_bool_exp": { - "count": [ - 3089 - ], - "__typename": [ - 85 - ] - }, - "match_lineups_aggregate_bool_exp_count": { - "arguments": [ - 3108 - ], - "distinct": [ - 6 - ], - "filter": [ - 3095 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "match_lineups_aggregate_fields": { - "avg": [ - 3093 - ], - "count": [ - 41, - { - "columns": [ - 3108, - "[match_lineups_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 3099 - ], - "min": [ - 3101 - ], - "stddev": [ - 3110 - ], - "stddev_pop": [ - 3112 - ], - "stddev_samp": [ - 3114 - ], - "sum": [ - 3118 - ], - "var_pop": [ - 3122 - ], - "var_samp": [ - 3124 - ], - "variance": [ - 3126 - ], - "__typename": [ - 85 - ] - }, - "match_lineups_aggregate_order_by": { - "avg": [ - 3094 - ], - "count": [ - 3648 - ], - "max": [ - 3100 - ], - "min": [ - 3102 - ], - "stddev": [ - 3111 - ], - "stddev_pop": [ - 3113 - ], - "stddev_samp": [ - 3115 - ], - "sum": [ - 3119 - ], - "var_pop": [ - 3123 - ], - "var_samp": [ - 3125 - ], - "variance": [ - 3127 - ], - "__typename": [ - 85 - ] - }, - "match_lineups_arr_rel_insert_input": { - "data": [ - 3098 - ], - "on_conflict": [ - 3105 - ], - "__typename": [ - 85 - ] - }, - "match_lineups_avg_fields": { - "coach_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_lineups_avg_order_by": { - "coach_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_lineups_bool_exp": { - "_and": [ - 3095 - ], - "_not": [ - 3095 - ], - "_or": [ - 3095 - ], - "can_pick_map_veto": [ - 7 - ], - "can_pick_region_veto": [ - 7 - ], - "can_update_lineup": [ - 7 - ], - "captain": [ - 6832 - ], - "coach": [ - 4610 - ], - "coach_steam_id": [ - 314 - ], - "id": [ - 6674 - ], - "is_on_lineup": [ - 7 - ], - "is_picking_map_veto": [ - 7 - ], - "is_picking_region_veto": [ - 7 - ], - "is_ready": [ - 7 - ], - "lineup_players": [ - 3052 - ], - "lineup_players_aggregate": [ - 3043 - ], - "match": [ - 3443 - ], - "match_id": [ - 6674 - ], - "match_veto_picks": [ - 3229 - ], - "match_veto_picks_aggregate": [ - 3222 - ], - "name": [ - 87 - ], - "team": [ - 5205 - ], - "team_id": [ - 6674 - ], - "team_name": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "match_lineups_constraint": {}, - "match_lineups_inc_input": { - "coach_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "match_lineups_insert_input": { - "captain": [ - 6838 - ], - "coach": [ - 4617 - ], - "coach_steam_id": [ - 312 - ], - "id": [ - 6672 - ], - "lineup_players": [ - 3049 - ], - "match": [ - 3452 - ], - "match_id": [ - 6672 - ], - "match_veto_picks": [ - 3228 - ], - "team": [ - 5214 - ], - "team_id": [ - 6672 - ], - "team_name": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "match_lineups_max_fields": { - "coach_steam_id": [ - 312 - ], - "id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "name": [ - 85 - ], - "team_id": [ - 6672 - ], - "team_name": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "match_lineups_max_order_by": { - "coach_steam_id": [ - 3648 - ], - "id": [ - 3648 - ], - "match_id": [ - 3648 - ], - "team_id": [ - 3648 - ], - "team_name": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_lineups_min_fields": { - "coach_steam_id": [ - 312 - ], - "id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "name": [ - 85 - ], - "team_id": [ - 6672 - ], - "team_name": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "match_lineups_min_order_by": { - "coach_steam_id": [ - 3648 - ], - "id": [ - 3648 - ], - "match_id": [ - 3648 - ], - "team_id": [ - 3648 - ], - "team_name": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_lineups_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 3086 - ], - "__typename": [ - 85 - ] - }, - "match_lineups_obj_rel_insert_input": { - "data": [ - 3098 - ], - "on_conflict": [ - 3105 - ], - "__typename": [ - 85 - ] - }, - "match_lineups_on_conflict": { - "constraint": [ - 3096 - ], - "update_columns": [ - 3120 - ], - "where": [ - 3095 - ], - "__typename": [ - 85 - ] - }, - "match_lineups_order_by": { - "can_pick_map_veto": [ - 3648 - ], - "can_pick_region_veto": [ - 3648 - ], - "can_update_lineup": [ - 3648 - ], - "captain": [ - 6839 - ], - "coach": [ - 4619 - ], - "coach_steam_id": [ - 3648 - ], - "id": [ - 3648 - ], - "is_on_lineup": [ - 3648 - ], - "is_picking_map_veto": [ - 3648 - ], - "is_picking_region_veto": [ - 3648 - ], - "is_ready": [ - 3648 - ], - "lineup_players_aggregate": [ - 3048 - ], - "match": [ - 3454 - ], - "match_id": [ - 3648 - ], - "match_veto_picks_aggregate": [ - 3227 - ], - "name": [ - 3648 - ], - "team": [ - 5216 - ], - "team_id": [ - 3648 - ], - "team_name": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_lineups_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "match_lineups_select_column": {}, - "match_lineups_set_input": { - "coach_steam_id": [ - 312 - ], - "id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "team_id": [ - 6672 - ], - "team_name": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "match_lineups_stddev_fields": { - "coach_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_lineups_stddev_order_by": { - "coach_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_lineups_stddev_pop_fields": { - "coach_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_lineups_stddev_pop_order_by": { - "coach_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_lineups_stddev_samp_fields": { - "coach_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_lineups_stddev_samp_order_by": { - "coach_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_lineups_stream_cursor_input": { - "initial_value": [ - 3117 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "match_lineups_stream_cursor_value_input": { - "coach_steam_id": [ - 312 - ], - "id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "team_id": [ - 6672 - ], - "team_name": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "match_lineups_sum_fields": { - "coach_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "match_lineups_sum_order_by": { - "coach_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_lineups_update_column": {}, - "match_lineups_updates": { - "_inc": [ - 3097 - ], - "_set": [ - 3109 - ], - "where": [ - 3095 - ], - "__typename": [ - 85 - ] - }, - "match_lineups_var_pop_fields": { - "coach_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_lineups_var_pop_order_by": { - "coach_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_lineups_var_samp_fields": { - "coach_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_lineups_var_samp_order_by": { - "coach_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_lineups_variance_fields": { - "coach_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_lineups_variance_order_by": { - "coach_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos": { - "bombs": [ - 2439, - { - "path": [ - 85 - ] - } - ], - "clip_render_jobs": [ - 344, - { - "distinct_on": [ - 372, - "[clip_render_jobs_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 369, - "[clip_render_jobs_order_by!]" - ], - "where": [ - 356 - ] - } - ], - "clip_render_jobs_aggregate": [ - 345, - { - "distinct_on": [ - 372, - "[clip_render_jobs_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 369, - "[clip_render_jobs_order_by!]" - ], - "where": [ - 356 - ] - } - ], - "created_at": [ - 5243 - ], - "cs2_build": [ - 85 - ], - "demo_sessions": [ - 2995, - { - "distinct_on": [ - 3021, - "[match_demo_sessions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3018, - "[match_demo_sessions_order_by!]" - ], - "where": [ - 3005 - ] - } - ], - "demo_sessions_aggregate": [ - 2996, - { - "distinct_on": [ - 3021, - "[match_demo_sessions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3018, - "[match_demo_sessions_order_by!]" - ], - "where": [ - 3005 - ] - } - ], - "download_url": [ - 85 - ], - "duration_seconds": [ - 32 - ], - "file": [ - 85 - ], - "geometry_validated": [ - 6 - ], - "id": [ - 6672 - ], - "kills": [ - 2439, - { - "path": [ - 85 - ] - } - ], - "map_name": [ - 85 - ], - "match": [ - 3432 - ], - "match_clips": [ - 2953, - { - "distinct_on": [ - 2975, - "[match_clips_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2973, - "[match_clips_order_by!]" - ], - "where": [ - 2962 - ] - } - ], - "match_clips_aggregate": [ - 2954, - { - "distinct_on": [ - 2975, - "[match_clips_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2973, - "[match_clips_order_by!]" - ], - "where": [ - 2962 - ] - } - ], - "match_id": [ - 6672 - ], - "match_map": [ - 3248 - ], - "match_map_id": [ - 6672 - ], - "metadata_parsed_at": [ - 5243 - ], - "parser_version": [ - 41 - ], - "playback_file": [ - 85 - ], - "playback_size": [ - 41 - ], - "playback_url": [ - 85 - ], - "playback_version": [ - 41 - ], - "players": [ - 2439, - { - "path": [ - 85 - ] - } - ], - "round_ticks": [ - 2439, - { - "path": [ - 85 - ] - } - ], - "size": [ - 41 - ], - "tick_rate": [ - 32 - ], - "total_ticks": [ - 41 - ], - "workshop_id": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_aggregate": { - "aggregate": [ - 3134 - ], - "nodes": [ - 3128 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_aggregate_bool_exp": { - "bool_and": [ - 3131 - ], - "bool_or": [ - 3132 - ], - "count": [ - 3133 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_aggregate_bool_exp_bool_and": { - "arguments": [ - 3158 - ], - "distinct": [ - 6 - ], - "filter": [ - 3140 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_aggregate_bool_exp_bool_or": { - "arguments": [ - 3159 - ], - "distinct": [ - 6 - ], - "filter": [ - 3140 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_aggregate_bool_exp_count": { - "arguments": [ - 3157 - ], - "distinct": [ - 6 - ], - "filter": [ - 3140 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_aggregate_fields": { - "avg": [ - 3138 - ], - "count": [ - 41, - { - "columns": [ - 3157, - "[match_map_demos_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 3147 - ], - "min": [ - 3149 - ], - "stddev": [ - 3161 - ], - "stddev_pop": [ - 3163 - ], - "stddev_samp": [ - 3165 - ], - "sum": [ - 3169 - ], - "var_pop": [ - 3173 - ], - "var_samp": [ - 3175 - ], - "variance": [ - 3177 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_aggregate_order_by": { - "avg": [ - 3139 - ], - "count": [ - 3648 - ], - "max": [ - 3148 - ], - "min": [ - 3150 - ], - "stddev": [ - 3162 - ], - "stddev_pop": [ - 3164 - ], - "stddev_samp": [ - 3166 - ], - "sum": [ - 3170 - ], - "var_pop": [ - 3174 - ], - "var_samp": [ - 3176 - ], - "variance": [ - 3178 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_append_input": { - "bombs": [ - 2439 - ], - "kills": [ - 2439 - ], - "players": [ - 2439 - ], - "round_ticks": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_arr_rel_insert_input": { - "data": [ - 3146 - ], - "on_conflict": [ - 3153 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_avg_fields": { - "duration_seconds": [ - 32 - ], - "parser_version": [ - 32 - ], - "playback_size": [ - 32 - ], - "playback_version": [ - 32 - ], - "size": [ - 32 - ], - "tick_rate": [ - 32 - ], - "total_ticks": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_avg_order_by": { - "duration_seconds": [ - 3648 - ], - "parser_version": [ - 3648 - ], - "playback_size": [ - 3648 - ], - "playback_version": [ - 3648 - ], - "size": [ - 3648 - ], - "tick_rate": [ - 3648 - ], - "total_ticks": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_bool_exp": { - "_and": [ - 3140 - ], - "_not": [ - 3140 - ], - "_or": [ - 3140 - ], - "bombs": [ - 2441 - ], - "clip_render_jobs": [ - 356 - ], - "clip_render_jobs_aggregate": [ - 346 - ], - "created_at": [ - 5244 - ], - "cs2_build": [ - 87 - ], - "demo_sessions": [ - 3005 - ], - "demo_sessions_aggregate": [ - 2997 - ], - "download_url": [ - 87 - ], - "duration_seconds": [ - 33 - ], - "file": [ - 87 - ], - "geometry_validated": [ - 7 - ], - "id": [ - 6674 - ], - "kills": [ - 2441 - ], - "map_name": [ - 87 - ], - "match": [ - 3443 - ], - "match_clips": [ - 2962 - ], - "match_clips_aggregate": [ - 2955 - ], - "match_id": [ - 6674 - ], - "match_map": [ - 3257 - ], - "match_map_id": [ - 6674 - ], - "metadata_parsed_at": [ - 5244 - ], - "parser_version": [ - 42 - ], - "playback_file": [ - 87 - ], - "playback_size": [ - 42 - ], - "playback_url": [ - 87 - ], - "playback_version": [ - 42 - ], - "players": [ - 2441 - ], - "round_ticks": [ - 2441 - ], - "size": [ - 42 - ], - "tick_rate": [ - 33 - ], - "total_ticks": [ - 42 - ], - "workshop_id": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_constraint": {}, - "match_map_demos_delete_at_path_input": { - "bombs": [ - 85 - ], - "kills": [ - 85 - ], - "players": [ - 85 - ], - "round_ticks": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_delete_elem_input": { - "bombs": [ - 41 - ], - "kills": [ - 41 - ], - "players": [ - 41 - ], - "round_ticks": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_delete_key_input": { - "bombs": [ - 85 - ], - "kills": [ - 85 - ], - "players": [ - 85 - ], - "round_ticks": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_inc_input": { - "parser_version": [ - 41 - ], - "playback_size": [ - 41 - ], - "playback_version": [ - 41 - ], - "size": [ - 41 - ], - "tick_rate": [ - 32 - ], - "total_ticks": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_insert_input": { - "bombs": [ - 2439 - ], - "clip_render_jobs": [ - 353 - ], - "created_at": [ - 5243 - ], - "cs2_build": [ - 85 - ], - "demo_sessions": [ - 3002 - ], - "file": [ - 85 - ], - "geometry_validated": [ - 6 - ], - "id": [ - 6672 - ], - "kills": [ - 2439 - ], - "map_name": [ - 85 - ], - "match": [ - 3452 - ], - "match_clips": [ - 2959 - ], - "match_id": [ - 6672 - ], - "match_map": [ - 3266 - ], - "match_map_id": [ - 6672 - ], - "metadata_parsed_at": [ - 5243 - ], - "parser_version": [ - 41 - ], - "playback_file": [ - 85 - ], - "playback_size": [ - 41 - ], - "playback_version": [ - 41 - ], - "players": [ - 2439 - ], - "round_ticks": [ - 2439 - ], - "size": [ - 41 - ], - "tick_rate": [ - 32 - ], - "total_ticks": [ - 41 - ], - "workshop_id": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_max_fields": { - "created_at": [ - 5243 - ], - "cs2_build": [ - 85 - ], - "download_url": [ - 85 - ], - "duration_seconds": [ - 32 - ], - "file": [ - 85 - ], - "id": [ - 6672 - ], - "map_name": [ - 85 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "metadata_parsed_at": [ - 5243 - ], - "parser_version": [ - 41 - ], - "playback_file": [ - 85 - ], - "playback_size": [ - 41 - ], - "playback_url": [ - 85 - ], - "playback_version": [ - 41 - ], - "size": [ - 41 - ], - "tick_rate": [ - 32 - ], - "total_ticks": [ - 41 - ], - "workshop_id": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_max_order_by": { - "created_at": [ - 3648 - ], - "cs2_build": [ - 3648 - ], - "duration_seconds": [ - 3648 - ], - "file": [ - 3648 - ], - "id": [ - 3648 - ], - "map_name": [ - 3648 - ], - "match_id": [ - 3648 - ], - "match_map_id": [ - 3648 - ], - "metadata_parsed_at": [ - 3648 - ], - "parser_version": [ - 3648 - ], - "playback_file": [ - 3648 - ], - "playback_size": [ - 3648 - ], - "playback_version": [ - 3648 - ], - "size": [ - 3648 - ], - "tick_rate": [ - 3648 - ], - "total_ticks": [ - 3648 - ], - "workshop_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_min_fields": { - "created_at": [ - 5243 - ], - "cs2_build": [ - 85 - ], - "download_url": [ - 85 - ], - "duration_seconds": [ - 32 - ], - "file": [ - 85 - ], - "id": [ - 6672 - ], - "map_name": [ - 85 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "metadata_parsed_at": [ - 5243 - ], - "parser_version": [ - 41 - ], - "playback_file": [ - 85 - ], - "playback_size": [ - 41 - ], - "playback_url": [ - 85 - ], - "playback_version": [ - 41 - ], - "size": [ - 41 - ], - "tick_rate": [ - 32 - ], - "total_ticks": [ - 41 - ], - "workshop_id": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_min_order_by": { - "created_at": [ - 3648 - ], - "cs2_build": [ - 3648 - ], - "duration_seconds": [ - 3648 - ], - "file": [ - 3648 - ], - "id": [ - 3648 - ], - "map_name": [ - 3648 - ], - "match_id": [ - 3648 - ], - "match_map_id": [ - 3648 - ], - "metadata_parsed_at": [ - 3648 - ], - "parser_version": [ - 3648 - ], - "playback_file": [ - 3648 - ], - "playback_size": [ - 3648 - ], - "playback_version": [ - 3648 - ], - "size": [ - 3648 - ], - "tick_rate": [ - 3648 - ], - "total_ticks": [ - 3648 - ], - "workshop_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 3128 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_obj_rel_insert_input": { - "data": [ - 3146 - ], - "on_conflict": [ - 3153 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_on_conflict": { - "constraint": [ - 3141 - ], - "update_columns": [ - 3171 - ], - "where": [ - 3140 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_order_by": { - "bombs": [ - 3648 - ], - "clip_render_jobs_aggregate": [ - 351 - ], - "created_at": [ - 3648 - ], - "cs2_build": [ - 3648 - ], - "demo_sessions_aggregate": [ - 3000 - ], - "download_url": [ - 3648 - ], - "duration_seconds": [ - 3648 - ], - "file": [ - 3648 - ], - "geometry_validated": [ - 3648 - ], - "id": [ - 3648 - ], - "kills": [ - 3648 - ], - "map_name": [ - 3648 - ], - "match": [ - 3454 - ], - "match_clips_aggregate": [ - 2958 - ], - "match_id": [ - 3648 - ], - "match_map": [ - 3268 - ], - "match_map_id": [ - 3648 - ], - "metadata_parsed_at": [ - 3648 - ], - "parser_version": [ - 3648 - ], - "playback_file": [ - 3648 - ], - "playback_size": [ - 3648 - ], - "playback_url": [ - 3648 - ], - "playback_version": [ - 3648 - ], - "players": [ - 3648 - ], - "round_ticks": [ - 3648 - ], - "size": [ - 3648 - ], - "tick_rate": [ - 3648 - ], - "total_ticks": [ - 3648 - ], - "workshop_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_prepend_input": { - "bombs": [ - 2439 - ], - "kills": [ - 2439 - ], - "players": [ - 2439 - ], - "round_ticks": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_select_column": {}, - "match_map_demos_select_column_match_map_demos_aggregate_bool_exp_bool_and_arguments_columns": {}, - "match_map_demos_select_column_match_map_demos_aggregate_bool_exp_bool_or_arguments_columns": {}, - "match_map_demos_set_input": { - "bombs": [ - 2439 - ], - "created_at": [ - 5243 - ], - "cs2_build": [ - 85 - ], - "file": [ - 85 - ], - "geometry_validated": [ - 6 - ], - "id": [ - 6672 - ], - "kills": [ - 2439 - ], - "map_name": [ - 85 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "metadata_parsed_at": [ - 5243 - ], - "parser_version": [ - 41 - ], - "playback_file": [ - 85 - ], - "playback_size": [ - 41 - ], - "playback_version": [ - 41 - ], - "players": [ - 2439 - ], - "round_ticks": [ - 2439 - ], - "size": [ - 41 - ], - "tick_rate": [ - 32 - ], - "total_ticks": [ - 41 - ], - "workshop_id": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_stddev_fields": { - "duration_seconds": [ - 32 - ], - "parser_version": [ - 32 - ], - "playback_size": [ - 32 - ], - "playback_version": [ - 32 - ], - "size": [ - 32 - ], - "tick_rate": [ - 32 - ], - "total_ticks": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_stddev_order_by": { - "duration_seconds": [ - 3648 - ], - "parser_version": [ - 3648 - ], - "playback_size": [ - 3648 - ], - "playback_version": [ - 3648 - ], - "size": [ - 3648 - ], - "tick_rate": [ - 3648 - ], - "total_ticks": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_stddev_pop_fields": { - "duration_seconds": [ - 32 - ], - "parser_version": [ - 32 - ], - "playback_size": [ - 32 - ], - "playback_version": [ - 32 - ], - "size": [ - 32 - ], - "tick_rate": [ - 32 - ], - "total_ticks": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_stddev_pop_order_by": { - "duration_seconds": [ - 3648 - ], - "parser_version": [ - 3648 - ], - "playback_size": [ - 3648 - ], - "playback_version": [ - 3648 - ], - "size": [ - 3648 - ], - "tick_rate": [ - 3648 - ], - "total_ticks": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_stddev_samp_fields": { - "duration_seconds": [ - 32 - ], - "parser_version": [ - 32 - ], - "playback_size": [ - 32 - ], - "playback_version": [ - 32 - ], - "size": [ - 32 - ], - "tick_rate": [ - 32 - ], - "total_ticks": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_stddev_samp_order_by": { - "duration_seconds": [ - 3648 - ], - "parser_version": [ - 3648 - ], - "playback_size": [ - 3648 - ], - "playback_version": [ - 3648 - ], - "size": [ - 3648 - ], - "tick_rate": [ - 3648 - ], - "total_ticks": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_stream_cursor_input": { - "initial_value": [ - 3168 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_stream_cursor_value_input": { - "bombs": [ - 2439 - ], - "created_at": [ - 5243 - ], - "cs2_build": [ - 85 - ], - "duration_seconds": [ - 32 - ], - "file": [ - 85 - ], - "geometry_validated": [ - 6 - ], - "id": [ - 6672 - ], - "kills": [ - 2439 - ], - "map_name": [ - 85 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "metadata_parsed_at": [ - 5243 - ], - "parser_version": [ - 41 - ], - "playback_file": [ - 85 - ], - "playback_size": [ - 41 - ], - "playback_version": [ - 41 - ], - "players": [ - 2439 - ], - "round_ticks": [ - 2439 - ], - "size": [ - 41 - ], - "tick_rate": [ - 32 - ], - "total_ticks": [ - 41 - ], - "workshop_id": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_sum_fields": { - "duration_seconds": [ - 32 - ], - "parser_version": [ - 41 - ], - "playback_size": [ - 41 - ], - "playback_version": [ - 41 - ], - "size": [ - 41 - ], - "tick_rate": [ - 32 - ], - "total_ticks": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_sum_order_by": { - "duration_seconds": [ - 3648 - ], - "parser_version": [ - 3648 - ], - "playback_size": [ - 3648 - ], - "playback_version": [ - 3648 - ], - "size": [ - 3648 - ], - "tick_rate": [ - 3648 - ], - "total_ticks": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_update_column": {}, - "match_map_demos_updates": { - "_append": [ - 3136 - ], - "_delete_at_path": [ - 3142 - ], - "_delete_elem": [ - 3143 - ], - "_delete_key": [ - 3144 - ], - "_inc": [ - 3145 - ], - "_prepend": [ - 3156 - ], - "_set": [ - 3160 - ], - "where": [ - 3140 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_var_pop_fields": { - "duration_seconds": [ - 32 - ], - "parser_version": [ - 32 - ], - "playback_size": [ - 32 - ], - "playback_version": [ - 32 - ], - "size": [ - 32 - ], - "tick_rate": [ - 32 - ], - "total_ticks": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_var_pop_order_by": { - "duration_seconds": [ - 3648 - ], - "parser_version": [ - 3648 - ], - "playback_size": [ - 3648 - ], - "playback_version": [ - 3648 - ], - "size": [ - 3648 - ], - "tick_rate": [ - 3648 - ], - "total_ticks": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_var_samp_fields": { - "duration_seconds": [ - 32 - ], - "parser_version": [ - 32 - ], - "playback_size": [ - 32 - ], - "playback_version": [ - 32 - ], - "size": [ - 32 - ], - "tick_rate": [ - 32 - ], - "total_ticks": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_var_samp_order_by": { - "duration_seconds": [ - 3648 - ], - "parser_version": [ - 3648 - ], - "playback_size": [ - 3648 - ], - "playback_version": [ - 3648 - ], - "size": [ - 3648 - ], - "tick_rate": [ - 3648 - ], - "total_ticks": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_variance_fields": { - "duration_seconds": [ - 32 - ], - "parser_version": [ - 32 - ], - "playback_size": [ - 32 - ], - "playback_version": [ - 32 - ], - "size": [ - 32 - ], - "tick_rate": [ - 32 - ], - "total_ticks": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_map_demos_variance_order_by": { - "duration_seconds": [ - 3648 - ], - "parser_version": [ - 3648 - ], - "playback_size": [ - 3648 - ], - "playback_version": [ - 3648 - ], - "size": [ - 3648 - ], - "tick_rate": [ - 3648 - ], - "total_ticks": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_map_rounds": { - "assists": [ - 3786, - { - "distinct_on": [ - 3809, - "[player_assists_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3807, - "[player_assists_order_by!]" - ], - "where": [ - 3797 - ] - } - ], - "assists_aggregate": [ - 3787, - { - "distinct_on": [ - 3809, - "[player_assists_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3807, - "[player_assists_order_by!]" - ], - "where": [ - 3797 - ] - } - ], - "backup_file": [ - 85 - ], - "created_at": [ - 5243 - ], - "deleted_at": [ - 5243 - ], - "has_backup_file": [ - 6 - ], - "id": [ - 6672 - ], - "kills": [ - 4003, - { - "distinct_on": [ - 4067, - "[player_kills_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4065, - "[player_kills_order_by!]" - ], - "where": [ - 4014 - ] - } - ], - "kills_aggregate": [ - 4004, - { - "distinct_on": [ - 4067, - "[player_kills_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4065, - "[player_kills_order_by!]" - ], - "where": [ - 4014 - ] - } - ], - "lineup_1_money": [ - 41 - ], - "lineup_1_score": [ - 41 - ], - "lineup_1_side": [ - 1453 - ], - "lineup_1_timeouts_available": [ - 41 - ], - "lineup_2_money": [ - 41 - ], - "lineup_2_score": [ - 41 - ], - "lineup_2_side": [ - 1453 - ], - "lineup_2_timeouts_available": [ - 41 - ], - "match_map": [ - 3248 - ], - "match_map_id": [ - 6672 - ], - "round": [ - 41 - ], - "time": [ - 5243 - ], - "winning_reason": [ - 1819 - ], - "winning_side": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "match_map_rounds_aggregate": { - "aggregate": [ - 3183 - ], - "nodes": [ - 3179 - ], - "__typename": [ - 85 - ] - }, - "match_map_rounds_aggregate_bool_exp": { - "count": [ - 3182 - ], - "__typename": [ - 85 - ] - }, - "match_map_rounds_aggregate_bool_exp_count": { - "arguments": [ - 3200 - ], - "distinct": [ - 6 - ], - "filter": [ - 3188 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "match_map_rounds_aggregate_fields": { - "avg": [ - 3186 - ], - "count": [ - 41, - { - "columns": [ - 3200, - "[match_map_rounds_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 3192 - ], - "min": [ - 3194 - ], - "stddev": [ - 3202 - ], - "stddev_pop": [ - 3204 - ], - "stddev_samp": [ - 3206 - ], - "sum": [ - 3210 - ], - "var_pop": [ - 3214 - ], - "var_samp": [ - 3216 - ], - "variance": [ - 3218 - ], - "__typename": [ - 85 - ] - }, - "match_map_rounds_aggregate_order_by": { - "avg": [ - 3187 - ], - "count": [ - 3648 - ], - "max": [ - 3193 - ], - "min": [ - 3195 - ], - "stddev": [ - 3203 - ], - "stddev_pop": [ - 3205 - ], - "stddev_samp": [ - 3207 - ], - "sum": [ - 3211 - ], - "var_pop": [ - 3215 - ], - "var_samp": [ - 3217 - ], - "variance": [ - 3219 - ], - "__typename": [ - 85 - ] - }, - "match_map_rounds_arr_rel_insert_input": { - "data": [ - 3191 - ], - "on_conflict": [ - 3197 - ], - "__typename": [ - 85 - ] - }, - "match_map_rounds_avg_fields": { - "lineup_1_money": [ - 32 - ], - "lineup_1_score": [ - 32 - ], - "lineup_1_timeouts_available": [ - 32 - ], - "lineup_2_money": [ - 32 - ], - "lineup_2_score": [ - 32 - ], - "lineup_2_timeouts_available": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_map_rounds_avg_order_by": { - "lineup_1_money": [ - 3648 - ], - "lineup_1_score": [ - 3648 - ], - "lineup_1_timeouts_available": [ - 3648 - ], - "lineup_2_money": [ - 3648 - ], - "lineup_2_score": [ - 3648 - ], - "lineup_2_timeouts_available": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_map_rounds_bool_exp": { - "_and": [ - 3188 - ], - "_not": [ - 3188 - ], - "_or": [ - 3188 - ], - "assists": [ - 3797 - ], - "assists_aggregate": [ - 3788 - ], - "backup_file": [ - 87 - ], - "created_at": [ - 5244 - ], - "deleted_at": [ - 5244 - ], - "has_backup_file": [ - 7 - ], - "id": [ - 6674 - ], - "kills": [ - 4014 - ], - "kills_aggregate": [ - 4005 - ], - "lineup_1_money": [ - 42 - ], - "lineup_1_score": [ - 42 - ], - "lineup_1_side": [ - 1454 - ], - "lineup_1_timeouts_available": [ - 42 - ], - "lineup_2_money": [ - 42 - ], - "lineup_2_score": [ - 42 - ], - "lineup_2_side": [ - 1454 - ], - "lineup_2_timeouts_available": [ - 42 - ], - "match_map": [ - 3257 - ], - "match_map_id": [ - 6674 - ], - "round": [ - 42 - ], - "time": [ - 5244 - ], - "winning_reason": [ - 1820 - ], - "winning_side": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "match_map_rounds_constraint": {}, - "match_map_rounds_inc_input": { - "lineup_1_money": [ - 41 - ], - "lineup_1_score": [ - 41 - ], - "lineup_1_timeouts_available": [ - 41 - ], - "lineup_2_money": [ - 41 - ], - "lineup_2_score": [ - 41 - ], - "lineup_2_timeouts_available": [ - 41 - ], - "round": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "match_map_rounds_insert_input": { - "assists": [ - 3794 - ], - "backup_file": [ - 85 - ], - "created_at": [ - 5243 - ], - "deleted_at": [ - 5243 - ], - "id": [ - 6672 - ], - "kills": [ - 4011 - ], - "lineup_1_money": [ - 41 - ], - "lineup_1_score": [ - 41 - ], - "lineup_1_side": [ - 1453 - ], - "lineup_1_timeouts_available": [ - 41 - ], - "lineup_2_money": [ - 41 - ], - "lineup_2_score": [ - 41 - ], - "lineup_2_side": [ - 1453 - ], - "lineup_2_timeouts_available": [ - 41 - ], - "match_map": [ - 3266 - ], - "match_map_id": [ - 6672 - ], - "round": [ - 41 - ], - "time": [ - 5243 - ], - "winning_reason": [ - 1819 - ], - "winning_side": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "match_map_rounds_max_fields": { - "backup_file": [ - 85 - ], - "created_at": [ - 5243 - ], - "deleted_at": [ - 5243 - ], - "id": [ - 6672 - ], - "lineup_1_money": [ - 41 - ], - "lineup_1_score": [ - 41 - ], - "lineup_1_timeouts_available": [ - 41 - ], - "lineup_2_money": [ - 41 - ], - "lineup_2_score": [ - 41 - ], - "lineup_2_timeouts_available": [ - 41 - ], - "match_map_id": [ - 6672 - ], - "round": [ - 41 - ], - "time": [ - 5243 - ], - "winning_side": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "match_map_rounds_max_order_by": { - "backup_file": [ - 3648 - ], - "created_at": [ - 3648 - ], - "deleted_at": [ - 3648 - ], - "id": [ - 3648 - ], - "lineup_1_money": [ - 3648 - ], - "lineup_1_score": [ - 3648 - ], - "lineup_1_timeouts_available": [ - 3648 - ], - "lineup_2_money": [ - 3648 - ], - "lineup_2_score": [ - 3648 - ], - "lineup_2_timeouts_available": [ - 3648 - ], - "match_map_id": [ - 3648 - ], - "round": [ - 3648 - ], - "time": [ - 3648 - ], - "winning_side": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_map_rounds_min_fields": { - "backup_file": [ - 85 - ], - "created_at": [ - 5243 - ], - "deleted_at": [ - 5243 - ], - "id": [ - 6672 - ], - "lineup_1_money": [ - 41 - ], - "lineup_1_score": [ - 41 - ], - "lineup_1_timeouts_available": [ - 41 - ], - "lineup_2_money": [ - 41 - ], - "lineup_2_score": [ - 41 - ], - "lineup_2_timeouts_available": [ - 41 - ], - "match_map_id": [ - 6672 - ], - "round": [ - 41 - ], - "time": [ - 5243 - ], - "winning_side": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "match_map_rounds_min_order_by": { - "backup_file": [ - 3648 - ], - "created_at": [ - 3648 - ], - "deleted_at": [ - 3648 - ], - "id": [ - 3648 - ], - "lineup_1_money": [ - 3648 - ], - "lineup_1_score": [ - 3648 - ], - "lineup_1_timeouts_available": [ - 3648 - ], - "lineup_2_money": [ - 3648 - ], - "lineup_2_score": [ - 3648 - ], - "lineup_2_timeouts_available": [ - 3648 - ], - "match_map_id": [ - 3648 - ], - "round": [ - 3648 - ], - "time": [ - 3648 - ], - "winning_side": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_map_rounds_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 3179 - ], - "__typename": [ - 85 - ] - }, - "match_map_rounds_on_conflict": { - "constraint": [ - 3189 - ], - "update_columns": [ - 3212 - ], - "where": [ - 3188 - ], - "__typename": [ - 85 - ] - }, - "match_map_rounds_order_by": { - "assists_aggregate": [ - 3793 - ], - "backup_file": [ - 3648 - ], - "created_at": [ - 3648 - ], - "deleted_at": [ - 3648 - ], - "has_backup_file": [ - 3648 - ], - "id": [ - 3648 - ], - "kills_aggregate": [ - 4010 - ], - "lineup_1_money": [ - 3648 - ], - "lineup_1_score": [ - 3648 - ], - "lineup_1_side": [ - 3648 - ], - "lineup_1_timeouts_available": [ - 3648 - ], - "lineup_2_money": [ - 3648 - ], - "lineup_2_score": [ - 3648 - ], - "lineup_2_side": [ - 3648 - ], - "lineup_2_timeouts_available": [ - 3648 - ], - "match_map": [ - 3268 - ], - "match_map_id": [ - 3648 - ], - "round": [ - 3648 - ], - "time": [ - 3648 - ], - "winning_reason": [ - 3648 - ], - "winning_side": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_map_rounds_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "match_map_rounds_select_column": {}, - "match_map_rounds_set_input": { - "backup_file": [ - 85 - ], - "created_at": [ - 5243 - ], - "deleted_at": [ - 5243 - ], - "id": [ - 6672 - ], - "lineup_1_money": [ - 41 - ], - "lineup_1_score": [ - 41 - ], - "lineup_1_side": [ - 1453 - ], - "lineup_1_timeouts_available": [ - 41 - ], - "lineup_2_money": [ - 41 - ], - "lineup_2_score": [ - 41 - ], - "lineup_2_side": [ - 1453 - ], - "lineup_2_timeouts_available": [ - 41 - ], - "match_map_id": [ - 6672 - ], - "round": [ - 41 - ], - "time": [ - 5243 - ], - "winning_reason": [ - 1819 - ], - "winning_side": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "match_map_rounds_stddev_fields": { - "lineup_1_money": [ - 32 - ], - "lineup_1_score": [ - 32 - ], - "lineup_1_timeouts_available": [ - 32 - ], - "lineup_2_money": [ - 32 - ], - "lineup_2_score": [ - 32 - ], - "lineup_2_timeouts_available": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_map_rounds_stddev_order_by": { - "lineup_1_money": [ - 3648 - ], - "lineup_1_score": [ - 3648 - ], - "lineup_1_timeouts_available": [ - 3648 - ], - "lineup_2_money": [ - 3648 - ], - "lineup_2_score": [ - 3648 - ], - "lineup_2_timeouts_available": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_map_rounds_stddev_pop_fields": { - "lineup_1_money": [ - 32 - ], - "lineup_1_score": [ - 32 - ], - "lineup_1_timeouts_available": [ - 32 - ], - "lineup_2_money": [ - 32 - ], - "lineup_2_score": [ - 32 - ], - "lineup_2_timeouts_available": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_map_rounds_stddev_pop_order_by": { - "lineup_1_money": [ - 3648 - ], - "lineup_1_score": [ - 3648 - ], - "lineup_1_timeouts_available": [ - 3648 - ], - "lineup_2_money": [ - 3648 - ], - "lineup_2_score": [ - 3648 - ], - "lineup_2_timeouts_available": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_map_rounds_stddev_samp_fields": { - "lineup_1_money": [ - 32 - ], - "lineup_1_score": [ - 32 - ], - "lineup_1_timeouts_available": [ - 32 - ], - "lineup_2_money": [ - 32 - ], - "lineup_2_score": [ - 32 - ], - "lineup_2_timeouts_available": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_map_rounds_stddev_samp_order_by": { - "lineup_1_money": [ - 3648 - ], - "lineup_1_score": [ - 3648 - ], - "lineup_1_timeouts_available": [ - 3648 - ], - "lineup_2_money": [ - 3648 - ], - "lineup_2_score": [ - 3648 - ], - "lineup_2_timeouts_available": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_map_rounds_stream_cursor_input": { - "initial_value": [ - 3209 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "match_map_rounds_stream_cursor_value_input": { - "backup_file": [ - 85 - ], - "created_at": [ - 5243 - ], - "deleted_at": [ - 5243 - ], - "id": [ - 6672 - ], - "lineup_1_money": [ - 41 - ], - "lineup_1_score": [ - 41 - ], - "lineup_1_side": [ - 1453 - ], - "lineup_1_timeouts_available": [ - 41 - ], - "lineup_2_money": [ - 41 - ], - "lineup_2_score": [ - 41 - ], - "lineup_2_side": [ - 1453 - ], - "lineup_2_timeouts_available": [ - 41 - ], - "match_map_id": [ - 6672 - ], - "round": [ - 41 - ], - "time": [ - 5243 - ], - "winning_reason": [ - 1819 - ], - "winning_side": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "match_map_rounds_sum_fields": { - "lineup_1_money": [ - 41 - ], - "lineup_1_score": [ - 41 - ], - "lineup_1_timeouts_available": [ - 41 - ], - "lineup_2_money": [ - 41 - ], - "lineup_2_score": [ - 41 - ], - "lineup_2_timeouts_available": [ - 41 - ], - "round": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "match_map_rounds_sum_order_by": { - "lineup_1_money": [ - 3648 - ], - "lineup_1_score": [ - 3648 - ], - "lineup_1_timeouts_available": [ - 3648 - ], - "lineup_2_money": [ - 3648 - ], - "lineup_2_score": [ - 3648 - ], - "lineup_2_timeouts_available": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_map_rounds_update_column": {}, - "match_map_rounds_updates": { - "_inc": [ - 3190 - ], - "_set": [ - 3201 - ], - "where": [ - 3188 - ], - "__typename": [ - 85 - ] - }, - "match_map_rounds_var_pop_fields": { - "lineup_1_money": [ - 32 - ], - "lineup_1_score": [ - 32 - ], - "lineup_1_timeouts_available": [ - 32 - ], - "lineup_2_money": [ - 32 - ], - "lineup_2_score": [ - 32 - ], - "lineup_2_timeouts_available": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_map_rounds_var_pop_order_by": { - "lineup_1_money": [ - 3648 - ], - "lineup_1_score": [ - 3648 - ], - "lineup_1_timeouts_available": [ - 3648 - ], - "lineup_2_money": [ - 3648 - ], - "lineup_2_score": [ - 3648 - ], - "lineup_2_timeouts_available": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_map_rounds_var_samp_fields": { - "lineup_1_money": [ - 32 - ], - "lineup_1_score": [ - 32 - ], - "lineup_1_timeouts_available": [ - 32 - ], - "lineup_2_money": [ - 32 - ], - "lineup_2_score": [ - 32 - ], - "lineup_2_timeouts_available": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_map_rounds_var_samp_order_by": { - "lineup_1_money": [ - 3648 - ], - "lineup_1_score": [ - 3648 - ], - "lineup_1_timeouts_available": [ - 3648 - ], - "lineup_2_money": [ - 3648 - ], - "lineup_2_score": [ - 3648 - ], - "lineup_2_timeouts_available": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_map_rounds_variance_fields": { - "lineup_1_money": [ - 32 - ], - "lineup_1_score": [ - 32 - ], - "lineup_1_timeouts_available": [ - 32 - ], - "lineup_2_money": [ - 32 - ], - "lineup_2_score": [ - 32 - ], - "lineup_2_timeouts_available": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_map_rounds_variance_order_by": { - "lineup_1_money": [ - 3648 - ], - "lineup_1_score": [ - 3648 - ], - "lineup_1_timeouts_available": [ - 3648 - ], - "lineup_2_money": [ - 3648 - ], - "lineup_2_score": [ - 3648 - ], - "lineup_2_timeouts_available": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_map_veto_picks": { - "auto_picked": [ - 6 - ], - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "map": [ - 2924 - ], - "map_id": [ - 6672 - ], - "match": [ - 3432 - ], - "match_id": [ - 6672 - ], - "match_lineup": [ - 3086 - ], - "match_lineup_id": [ - 6672 - ], - "side": [ - 85 - ], - "type": [ - 1799 - ], - "__typename": [ - 85 - ] - }, - "match_map_veto_picks_aggregate": { - "aggregate": [ - 3226 - ], - "nodes": [ - 3220 - ], - "__typename": [ - 85 - ] - }, - "match_map_veto_picks_aggregate_bool_exp": { - "bool_and": [ - 3223 - ], - "bool_or": [ - 3224 - ], - "count": [ - 3225 - ], - "__typename": [ - 85 - ] - }, - "match_map_veto_picks_aggregate_bool_exp_bool_and": { - "arguments": [ - 3241 - ], - "distinct": [ - 6 - ], - "filter": [ - 3229 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "match_map_veto_picks_aggregate_bool_exp_bool_or": { - "arguments": [ - 3242 - ], - "distinct": [ - 6 - ], - "filter": [ - 3229 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "match_map_veto_picks_aggregate_bool_exp_count": { - "arguments": [ - 3240 - ], - "distinct": [ - 6 - ], - "filter": [ - 3229 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "match_map_veto_picks_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 3240, - "[match_map_veto_picks_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 3232 - ], - "min": [ - 3234 - ], - "__typename": [ - 85 - ] - }, - "match_map_veto_picks_aggregate_order_by": { - "count": [ - 3648 - ], - "max": [ - 3233 - ], - "min": [ - 3235 - ], - "__typename": [ - 85 - ] - }, - "match_map_veto_picks_arr_rel_insert_input": { - "data": [ - 3231 - ], - "on_conflict": [ - 3237 - ], - "__typename": [ - 85 - ] - }, - "match_map_veto_picks_bool_exp": { - "_and": [ - 3229 - ], - "_not": [ - 3229 - ], - "_or": [ - 3229 - ], - "auto_picked": [ - 7 - ], - "created_at": [ - 5244 - ], - "id": [ - 6674 - ], - "map": [ - 2933 - ], - "map_id": [ - 6674 - ], - "match": [ - 3443 - ], - "match_id": [ - 6674 - ], - "match_lineup": [ - 3095 - ], - "match_lineup_id": [ - 6674 - ], - "side": [ - 87 - ], - "type": [ - 1800 - ], - "__typename": [ - 85 - ] - }, - "match_map_veto_picks_constraint": {}, - "match_map_veto_picks_insert_input": { - "auto_picked": [ - 6 - ], - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "map": [ - 2941 - ], - "map_id": [ - 6672 - ], - "match": [ - 3452 - ], - "match_id": [ - 6672 - ], - "match_lineup": [ - 3104 - ], - "match_lineup_id": [ - 6672 - ], - "side": [ - 85 - ], - "type": [ - 1799 - ], - "__typename": [ - 85 - ] - }, - "match_map_veto_picks_max_fields": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "map_id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "match_lineup_id": [ - 6672 - ], - "side": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "match_map_veto_picks_max_order_by": { - "created_at": [ - 3648 - ], - "id": [ - 3648 - ], - "map_id": [ - 3648 - ], - "match_id": [ - 3648 - ], - "match_lineup_id": [ - 3648 - ], - "side": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_map_veto_picks_min_fields": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "map_id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "match_lineup_id": [ - 6672 - ], - "side": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "match_map_veto_picks_min_order_by": { - "created_at": [ - 3648 - ], - "id": [ - 3648 - ], - "map_id": [ - 3648 - ], - "match_id": [ - 3648 - ], - "match_lineup_id": [ - 3648 - ], - "side": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_map_veto_picks_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 3220 - ], - "__typename": [ - 85 - ] - }, - "match_map_veto_picks_on_conflict": { - "constraint": [ - 3230 - ], - "update_columns": [ - 3246 - ], - "where": [ - 3229 - ], - "__typename": [ - 85 - ] - }, - "match_map_veto_picks_order_by": { - "auto_picked": [ - 3648 - ], - "created_at": [ - 3648 - ], - "id": [ - 3648 - ], - "map": [ - 2943 - ], - "map_id": [ - 3648 - ], - "match": [ - 3454 - ], - "match_id": [ - 3648 - ], - "match_lineup": [ - 3106 - ], - "match_lineup_id": [ - 3648 - ], - "side": [ - 3648 - ], - "type": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_map_veto_picks_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "match_map_veto_picks_select_column": {}, - "match_map_veto_picks_select_column_match_map_veto_picks_aggregate_bool_exp_bool_and_arguments_columns": {}, - "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": [ - 6 - ], - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "map_id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "match_lineup_id": [ - 6672 - ], - "side": [ - 85 - ], - "type": [ - 1799 - ], - "__typename": [ - 85 - ] - }, - "match_map_veto_picks_stream_cursor_input": { - "initial_value": [ - 3245 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "match_map_veto_picks_stream_cursor_value_input": { - "auto_picked": [ - 6 - ], - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "map_id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "match_lineup_id": [ - 6672 - ], - "side": [ - 85 - ], - "type": [ - 1799 - ], - "__typename": [ - 85 - ] - }, - "match_map_veto_picks_update_column": {}, - "match_map_veto_picks_updates": { - "_set": [ - 3243 - ], - "where": [ - 3229 - ], - "__typename": [ - 85 - ] - }, - "match_maps": { - "clips_count": [ - 41 - ], - "created_at": [ - 5243 - ], - "demo_processing_started_at": [ - 5243 - ], - "demos": [ - 3128, - { - "distinct_on": [ - 3157, - "[match_map_demos_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3154, - "[match_map_demos_order_by!]" - ], - "where": [ - 3140 - ] - } - ], - "demos_aggregate": [ - 3129, - { - "distinct_on": [ - 3157, - "[match_map_demos_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3154, - "[match_map_demos_order_by!]" - ], - "where": [ - 3140 - ] - } - ], - "demos_download_url": [ - 85 - ], - "demos_total_size": [ - 41 - ], - "e_match_map_status": [ - 1138 - ], - "ended_at": [ - 5243 - ], - "flashes": [ - 3958, - { - "distinct_on": [ - 3981, - "[player_flashes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3979, - "[player_flashes_order_by!]" - ], - "where": [ - 3969 - ] - } - ], - "flashes_aggregate": [ - 3959, - { - "distinct_on": [ - 3981, - "[player_flashes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3979, - "[player_flashes_order_by!]" - ], - "where": [ - 3969 - ] - } - ], - "id": [ - 6672 - ], - "is_current_map": [ - 6 - ], - "latest_clip_at": [ - 5243 - ], - "lineup_1_score": [ - 41 - ], - "lineup_1_side": [ - 1453 - ], - "lineup_1_timeouts_available": [ - 41 - ], - "lineup_2_score": [ - 41 - ], - "lineup_2_side": [ - 1453 - ], - "lineup_2_timeouts_available": [ - 41 - ], - "map": [ - 2924 - ], - "map_id": [ - 6672 - ], - "match": [ - 3432 - ], - "match_clips": [ - 2953, - { - "distinct_on": [ - 2975, - "[match_clips_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2973, - "[match_clips_order_by!]" - ], - "where": [ - 2962 - ] - } - ], - "match_clips_aggregate": [ - 2954, - { - "distinct_on": [ - 2975, - "[match_clips_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2973, - "[match_clips_order_by!]" - ], - "where": [ - 2962 - ] - } - ], - "match_id": [ - 6672 - ], - "objectives": [ - 4204, - { - "distinct_on": [ - 4225, - "[player_objectives_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4223, - "[player_objectives_order_by!]" - ], - "where": [ - 4213 - ] - } - ], - "objectives_aggregate": [ - 4205, - { - "distinct_on": [ - 4225, - "[player_objectives_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4223, - "[player_objectives_order_by!]" - ], - "where": [ - 4213 - ] - } - ], - "order": [ - 41 - ], - "player_assists": [ - 3786, - { - "distinct_on": [ - 3809, - "[player_assists_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3807, - "[player_assists_order_by!]" - ], - "where": [ - 3797 - ] - } - ], - "player_assists_aggregate": [ - 3787, - { - "distinct_on": [ - 3809, - "[player_assists_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3807, - "[player_assists_order_by!]" - ], - "where": [ - 3797 - ] - } - ], - "player_damages": [ - 3849, - { - "distinct_on": [ - 3870, - "[player_damages_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3868, - "[player_damages_order_by!]" - ], - "where": [ - 3858 - ] - } - ], - "player_damages_aggregate": [ - 3850, - { - "distinct_on": [ - 3870, - "[player_damages_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3868, - "[player_damages_order_by!]" - ], - "where": [ - 3858 - ] - } - ], - "player_kills": [ - 4003, - { - "distinct_on": [ - 4067, - "[player_kills_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4065, - "[player_kills_order_by!]" - ], - "where": [ - 4014 - ] - } - ], - "player_kills_aggregate": [ - 4004, - { - "distinct_on": [ - 4067, - "[player_kills_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4065, - "[player_kills_order_by!]" - ], - "where": [ - 4014 - ] - } - ], - "player_unused_utilities": [ - 4491, - { - "distinct_on": [ - 4512, - "[player_unused_utility_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4510, - "[player_unused_utility_order_by!]" - ], - "where": [ - 4500 - ] - } - ], - "player_unused_utilities_aggregate": [ - 4492, - { - "distinct_on": [ - 4512, - "[player_unused_utility_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4510, - "[player_unused_utility_order_by!]" - ], - "where": [ - 4500 - ] - } - ], - "public_clips_count": [ - 41 - ], - "public_latest_clip_at": [ - 5243 - ], - "rounds": [ - 3179, - { - "distinct_on": [ - 3200, - "[match_map_rounds_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3198, - "[match_map_rounds_order_by!]" - ], - "where": [ - 3188 - ] - } - ], - "rounds_aggregate": [ - 3180, - { - "distinct_on": [ - 3200, - "[match_map_rounds_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3198, - "[match_map_rounds_order_by!]" - ], - "where": [ - 3188 - ] - } - ], - "started_at": [ - 5243 - ], - "status": [ - 1143 - ], - "utility": [ - 4532, - { - "distinct_on": [ - 4553, - "[player_utility_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4551, - "[player_utility_order_by!]" - ], - "where": [ - 4541 - ] - } - ], - "utility_aggregate": [ - 4533, - { - "distinct_on": [ - 4553, - "[player_utility_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4551, - "[player_utility_order_by!]" - ], - "where": [ - 4541 - ] - } - ], - "vetos": [ - 3220, - { - "distinct_on": [ - 3240, - "[match_map_veto_picks_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3238, - "[match_map_veto_picks_order_by!]" - ], - "where": [ - 3229 - ] - } - ], - "vetos_aggregate": [ - 3221, - { - "distinct_on": [ - 3240, - "[match_map_veto_picks_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3238, - "[match_map_veto_picks_order_by!]" - ], - "where": [ - 3229 - ] - } - ], - "winning_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "match_maps_aggregate": { - "aggregate": [ - 3252 - ], - "nodes": [ - 3248 - ], - "__typename": [ - 85 - ] - }, - "match_maps_aggregate_bool_exp": { - "count": [ - 3251 - ], - "__typename": [ - 85 - ] - }, - "match_maps_aggregate_bool_exp_count": { - "arguments": [ - 3270 - ], - "distinct": [ - 6 - ], - "filter": [ - 3257 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "match_maps_aggregate_fields": { - "avg": [ - 3255 - ], - "count": [ - 41, - { - "columns": [ - 3270, - "[match_maps_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 3261 - ], - "min": [ - 3263 - ], - "stddev": [ - 3272 - ], - "stddev_pop": [ - 3274 - ], - "stddev_samp": [ - 3276 - ], - "sum": [ - 3280 - ], - "var_pop": [ - 3284 - ], - "var_samp": [ - 3286 - ], - "variance": [ - 3288 - ], - "__typename": [ - 85 - ] - }, - "match_maps_aggregate_order_by": { - "avg": [ - 3256 - ], - "count": [ - 3648 - ], - "max": [ - 3262 - ], - "min": [ - 3264 - ], - "stddev": [ - 3273 - ], - "stddev_pop": [ - 3275 - ], - "stddev_samp": [ - 3277 - ], - "sum": [ - 3281 - ], - "var_pop": [ - 3285 - ], - "var_samp": [ - 3287 - ], - "variance": [ - 3289 - ], - "__typename": [ - 85 - ] - }, - "match_maps_arr_rel_insert_input": { - "data": [ - 3260 - ], - "on_conflict": [ - 3267 - ], - "__typename": [ - 85 - ] - }, - "match_maps_avg_fields": { - "clips_count": [ - 32 - ], - "demos_total_size": [ - 41 - ], - "lineup_1_score": [ - 41 - ], - "lineup_1_timeouts_available": [ - 32 - ], - "lineup_2_score": [ - 41 - ], - "lineup_2_timeouts_available": [ - 32 - ], - "order": [ - 32 - ], - "public_clips_count": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_maps_avg_order_by": { - "clips_count": [ - 3648 - ], - "lineup_1_timeouts_available": [ - 3648 - ], - "lineup_2_timeouts_available": [ - 3648 - ], - "order": [ - 3648 - ], - "public_clips_count": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_maps_bool_exp": { - "_and": [ - 3257 - ], - "_not": [ - 3257 - ], - "_or": [ - 3257 - ], - "clips_count": [ - 42 - ], - "created_at": [ - 5244 - ], - "demo_processing_started_at": [ - 5244 - ], - "demos": [ - 3140 - ], - "demos_aggregate": [ - 3130 - ], - "demos_download_url": [ - 87 - ], - "demos_total_size": [ - 42 - ], - "e_match_map_status": [ - 1141 - ], - "ended_at": [ - 5244 - ], - "flashes": [ - 3969 - ], - "flashes_aggregate": [ - 3960 - ], - "id": [ - 6674 - ], - "is_current_map": [ - 7 - ], - "latest_clip_at": [ - 5244 - ], - "lineup_1_score": [ - 42 - ], - "lineup_1_side": [ - 1454 - ], - "lineup_1_timeouts_available": [ - 42 - ], - "lineup_2_score": [ - 42 - ], - "lineup_2_side": [ - 1454 - ], - "lineup_2_timeouts_available": [ - 42 - ], - "map": [ - 2933 - ], - "map_id": [ - 6674 - ], - "match": [ - 3443 - ], - "match_clips": [ - 2962 - ], - "match_clips_aggregate": [ - 2955 - ], - "match_id": [ - 6674 - ], - "objectives": [ - 4213 - ], - "objectives_aggregate": [ - 4206 - ], - "order": [ - 42 - ], - "player_assists": [ - 3797 - ], - "player_assists_aggregate": [ - 3788 - ], - "player_damages": [ - 3858 - ], - "player_damages_aggregate": [ - 3851 - ], - "player_kills": [ - 4014 - ], - "player_kills_aggregate": [ - 4005 - ], - "player_unused_utilities": [ - 4500 - ], - "player_unused_utilities_aggregate": [ - 4493 - ], - "public_clips_count": [ - 42 - ], - "public_latest_clip_at": [ - 5244 - ], - "rounds": [ - 3188 - ], - "rounds_aggregate": [ - 3181 - ], - "started_at": [ - 5244 - ], - "status": [ - 1144 - ], - "utility": [ - 4541 - ], - "utility_aggregate": [ - 4534 - ], - "vetos": [ - 3229 - ], - "vetos_aggregate": [ - 3222 - ], - "winning_lineup_id": [ - 6674 - ], - "__typename": [ - 85 - ] - }, - "match_maps_constraint": {}, - "match_maps_inc_input": { - "clips_count": [ - 41 - ], - "lineup_1_timeouts_available": [ - 41 - ], - "lineup_2_timeouts_available": [ - 41 - ], - "order": [ - 41 - ], - "public_clips_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "match_maps_insert_input": { - "clips_count": [ - 41 - ], - "created_at": [ - 5243 - ], - "demo_processing_started_at": [ - 5243 - ], - "demos": [ - 3137 - ], - "e_match_map_status": [ - 1149 - ], - "ended_at": [ - 5243 - ], - "flashes": [ - 3966 - ], - "id": [ - 6672 - ], - "latest_clip_at": [ - 5243 - ], - "lineup_1_side": [ - 1453 - ], - "lineup_1_timeouts_available": [ - 41 - ], - "lineup_2_side": [ - 1453 - ], - "lineup_2_timeouts_available": [ - 41 - ], - "map": [ - 2941 - ], - "map_id": [ - 6672 - ], - "match": [ - 3452 - ], - "match_clips": [ - 2959 - ], - "match_id": [ - 6672 - ], - "objectives": [ - 4210 - ], - "order": [ - 41 - ], - "player_assists": [ - 3794 - ], - "player_damages": [ - 3855 - ], - "player_kills": [ - 4011 - ], - "player_unused_utilities": [ - 4497 - ], - "public_clips_count": [ - 41 - ], - "public_latest_clip_at": [ - 5243 - ], - "rounds": [ - 3185 - ], - "started_at": [ - 5243 - ], - "status": [ - 1143 - ], - "utility": [ - 4538 - ], - "vetos": [ - 3228 - ], - "winning_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "match_maps_max_fields": { - "clips_count": [ - 41 - ], - "created_at": [ - 5243 - ], - "demo_processing_started_at": [ - 5243 - ], - "demos_download_url": [ - 85 - ], - "demos_total_size": [ - 41 - ], - "ended_at": [ - 5243 - ], - "id": [ - 6672 - ], - "latest_clip_at": [ - 5243 - ], - "lineup_1_score": [ - 41 - ], - "lineup_1_timeouts_available": [ - 41 - ], - "lineup_2_score": [ - 41 - ], - "lineup_2_timeouts_available": [ - 41 - ], - "map_id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "order": [ - 41 - ], - "public_clips_count": [ - 41 - ], - "public_latest_clip_at": [ - 5243 - ], - "started_at": [ - 5243 - ], - "winning_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "match_maps_max_order_by": { - "clips_count": [ - 3648 - ], - "created_at": [ - 3648 - ], - "demo_processing_started_at": [ - 3648 - ], - "ended_at": [ - 3648 - ], - "id": [ - 3648 - ], - "latest_clip_at": [ - 3648 - ], - "lineup_1_timeouts_available": [ - 3648 - ], - "lineup_2_timeouts_available": [ - 3648 - ], - "map_id": [ - 3648 - ], - "match_id": [ - 3648 - ], - "order": [ - 3648 - ], - "public_clips_count": [ - 3648 - ], - "public_latest_clip_at": [ - 3648 - ], - "started_at": [ - 3648 - ], - "winning_lineup_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_maps_min_fields": { - "clips_count": [ - 41 - ], - "created_at": [ - 5243 - ], - "demo_processing_started_at": [ - 5243 - ], - "demos_download_url": [ - 85 - ], - "demos_total_size": [ - 41 - ], - "ended_at": [ - 5243 - ], - "id": [ - 6672 - ], - "latest_clip_at": [ - 5243 - ], - "lineup_1_score": [ - 41 - ], - "lineup_1_timeouts_available": [ - 41 - ], - "lineup_2_score": [ - 41 - ], - "lineup_2_timeouts_available": [ - 41 - ], - "map_id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "order": [ - 41 - ], - "public_clips_count": [ - 41 - ], - "public_latest_clip_at": [ - 5243 - ], - "started_at": [ - 5243 - ], - "winning_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "match_maps_min_order_by": { - "clips_count": [ - 3648 - ], - "created_at": [ - 3648 - ], - "demo_processing_started_at": [ - 3648 - ], - "ended_at": [ - 3648 - ], - "id": [ - 3648 - ], - "latest_clip_at": [ - 3648 - ], - "lineup_1_timeouts_available": [ - 3648 - ], - "lineup_2_timeouts_available": [ - 3648 - ], - "map_id": [ - 3648 - ], - "match_id": [ - 3648 - ], - "order": [ - 3648 - ], - "public_clips_count": [ - 3648 - ], - "public_latest_clip_at": [ - 3648 - ], - "started_at": [ - 3648 - ], - "winning_lineup_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_maps_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 3248 - ], - "__typename": [ - 85 - ] - }, - "match_maps_obj_rel_insert_input": { - "data": [ - 3260 - ], - "on_conflict": [ - 3267 - ], - "__typename": [ - 85 - ] - }, - "match_maps_on_conflict": { - "constraint": [ - 3258 - ], - "update_columns": [ - 3282 - ], - "where": [ - 3257 - ], - "__typename": [ - 85 - ] - }, - "match_maps_order_by": { - "clips_count": [ - 3648 - ], - "created_at": [ - 3648 - ], - "demo_processing_started_at": [ - 3648 - ], - "demos_aggregate": [ - 3135 - ], - "demos_download_url": [ - 3648 - ], - "demos_total_size": [ - 3648 - ], - "e_match_map_status": [ - 1151 - ], - "ended_at": [ - 3648 - ], - "flashes_aggregate": [ - 3965 - ], - "id": [ - 3648 - ], - "is_current_map": [ - 3648 - ], - "latest_clip_at": [ - 3648 - ], - "lineup_1_score": [ - 3648 - ], - "lineup_1_side": [ - 3648 - ], - "lineup_1_timeouts_available": [ - 3648 - ], - "lineup_2_score": [ - 3648 - ], - "lineup_2_side": [ - 3648 - ], - "lineup_2_timeouts_available": [ - 3648 - ], - "map": [ - 2943 - ], - "map_id": [ - 3648 - ], - "match": [ - 3454 - ], - "match_clips_aggregate": [ - 2958 - ], - "match_id": [ - 3648 - ], - "objectives_aggregate": [ - 4209 - ], - "order": [ - 3648 - ], - "player_assists_aggregate": [ - 3793 - ], - "player_damages_aggregate": [ - 3854 - ], - "player_kills_aggregate": [ - 4010 - ], - "player_unused_utilities_aggregate": [ - 4496 - ], - "public_clips_count": [ - 3648 - ], - "public_latest_clip_at": [ - 3648 - ], - "rounds_aggregate": [ - 3184 - ], - "started_at": [ - 3648 - ], - "status": [ - 3648 - ], - "utility_aggregate": [ - 4537 - ], - "vetos_aggregate": [ - 3227 - ], - "winning_lineup_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_maps_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "match_maps_select_column": {}, - "match_maps_set_input": { - "clips_count": [ - 41 - ], - "created_at": [ - 5243 - ], - "demo_processing_started_at": [ - 5243 - ], - "ended_at": [ - 5243 - ], - "id": [ - 6672 - ], - "latest_clip_at": [ - 5243 - ], - "lineup_1_side": [ - 1453 - ], - "lineup_1_timeouts_available": [ - 41 - ], - "lineup_2_side": [ - 1453 - ], - "lineup_2_timeouts_available": [ - 41 - ], - "map_id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "order": [ - 41 - ], - "public_clips_count": [ - 41 - ], - "public_latest_clip_at": [ - 5243 - ], - "started_at": [ - 5243 - ], - "status": [ - 1143 - ], - "winning_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "match_maps_stddev_fields": { - "clips_count": [ - 32 - ], - "demos_total_size": [ - 41 - ], - "lineup_1_score": [ - 41 - ], - "lineup_1_timeouts_available": [ - 32 - ], - "lineup_2_score": [ - 41 - ], - "lineup_2_timeouts_available": [ - 32 - ], - "order": [ - 32 - ], - "public_clips_count": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_maps_stddev_order_by": { - "clips_count": [ - 3648 - ], - "lineup_1_timeouts_available": [ - 3648 - ], - "lineup_2_timeouts_available": [ - 3648 - ], - "order": [ - 3648 - ], - "public_clips_count": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_maps_stddev_pop_fields": { - "clips_count": [ - 32 - ], - "demos_total_size": [ - 41 - ], - "lineup_1_score": [ - 41 - ], - "lineup_1_timeouts_available": [ - 32 - ], - "lineup_2_score": [ - 41 - ], - "lineup_2_timeouts_available": [ - 32 - ], - "order": [ - 32 - ], - "public_clips_count": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_maps_stddev_pop_order_by": { - "clips_count": [ - 3648 - ], - "lineup_1_timeouts_available": [ - 3648 - ], - "lineup_2_timeouts_available": [ - 3648 - ], - "order": [ - 3648 - ], - "public_clips_count": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_maps_stddev_samp_fields": { - "clips_count": [ - 32 - ], - "demos_total_size": [ - 41 - ], - "lineup_1_score": [ - 41 - ], - "lineup_1_timeouts_available": [ - 32 - ], - "lineup_2_score": [ - 41 - ], - "lineup_2_timeouts_available": [ - 32 - ], - "order": [ - 32 - ], - "public_clips_count": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_maps_stddev_samp_order_by": { - "clips_count": [ - 3648 - ], - "lineup_1_timeouts_available": [ - 3648 - ], - "lineup_2_timeouts_available": [ - 3648 - ], - "order": [ - 3648 - ], - "public_clips_count": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_maps_stream_cursor_input": { - "initial_value": [ - 3279 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "match_maps_stream_cursor_value_input": { - "clips_count": [ - 41 - ], - "created_at": [ - 5243 - ], - "demo_processing_started_at": [ - 5243 - ], - "ended_at": [ - 5243 - ], - "id": [ - 6672 - ], - "latest_clip_at": [ - 5243 - ], - "lineup_1_side": [ - 1453 - ], - "lineup_1_timeouts_available": [ - 41 - ], - "lineup_2_side": [ - 1453 - ], - "lineup_2_timeouts_available": [ - 41 - ], - "map_id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "order": [ - 41 - ], - "public_clips_count": [ - 41 - ], - "public_latest_clip_at": [ - 5243 - ], - "started_at": [ - 5243 - ], - "status": [ - 1143 - ], - "winning_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "match_maps_sum_fields": { - "clips_count": [ - 41 - ], - "demos_total_size": [ - 41 - ], - "lineup_1_score": [ - 41 - ], - "lineup_1_timeouts_available": [ - 41 - ], - "lineup_2_score": [ - 41 - ], - "lineup_2_timeouts_available": [ - 41 - ], - "order": [ - 41 - ], - "public_clips_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "match_maps_sum_order_by": { - "clips_count": [ - 3648 - ], - "lineup_1_timeouts_available": [ - 3648 - ], - "lineup_2_timeouts_available": [ - 3648 - ], - "order": [ - 3648 - ], - "public_clips_count": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_maps_update_column": {}, - "match_maps_updates": { - "_inc": [ - 3259 - ], - "_set": [ - 3271 - ], - "where": [ - 3257 - ], - "__typename": [ - 85 - ] - }, - "match_maps_var_pop_fields": { - "clips_count": [ - 32 - ], - "demos_total_size": [ - 41 - ], - "lineup_1_score": [ - 41 - ], - "lineup_1_timeouts_available": [ - 32 - ], - "lineup_2_score": [ - 41 - ], - "lineup_2_timeouts_available": [ - 32 - ], - "order": [ - 32 - ], - "public_clips_count": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_maps_var_pop_order_by": { - "clips_count": [ - 3648 - ], - "lineup_1_timeouts_available": [ - 3648 - ], - "lineup_2_timeouts_available": [ - 3648 - ], - "order": [ - 3648 - ], - "public_clips_count": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_maps_var_samp_fields": { - "clips_count": [ - 32 - ], - "demos_total_size": [ - 41 - ], - "lineup_1_score": [ - 41 - ], - "lineup_1_timeouts_available": [ - 32 - ], - "lineup_2_score": [ - 41 - ], - "lineup_2_timeouts_available": [ - 32 - ], - "order": [ - 32 - ], - "public_clips_count": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_maps_var_samp_order_by": { - "clips_count": [ - 3648 - ], - "lineup_1_timeouts_available": [ - 3648 - ], - "lineup_2_timeouts_available": [ - 3648 - ], - "order": [ - 3648 - ], - "public_clips_count": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_maps_variance_fields": { - "clips_count": [ - 32 - ], - "demos_total_size": [ - 41 - ], - "lineup_1_score": [ - 41 - ], - "lineup_1_timeouts_available": [ - 32 - ], - "lineup_2_score": [ - 41 - ], - "lineup_2_timeouts_available": [ - 32 - ], - "order": [ - 32 - ], - "public_clips_count": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_maps_variance_order_by": { - "clips_count": [ - 3648 - ], - "lineup_1_timeouts_available": [ - 3648 - ], - "lineup_2_timeouts_available": [ - 3648 - ], - "order": [ - 3648 - ], - "public_clips_count": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_options": { - "auto_cancel_duration": [ - 41 - ], - "auto_cancellation": [ - 6 - ], - "best_of": [ - 41 - ], - "camera_allow_teammates": [ - 6 - ], - "camera_required": [ - 6 - ], - "check_in_setting": [ - 690 - ], - "coaches": [ - 6 - ], - "default_models": [ - 6 - ], - "game_mode": [ - 2172 - ], - "game_mode_id": [ - 6672 - ], - "halftime_pausematch": [ - 6 - ], - "has_active_matches": [ - 6 - ], - "id": [ - 6672 - ], - "invite_code": [ - 85 - ], - "knife_round": [ - 6 - ], - "live_match_timeout": [ - 41 - ], - "map_pool": [ - 2905 - ], - "map_pool_id": [ - 6672 - ], - "map_veto": [ - 6 - ], - "match_mode": [ - 1164 - ], - "matches": [ - 3432, - { - "distinct_on": [ - 3456, - "[matches_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3454, - "[matches_order_by!]" - ], - "where": [ - 3443 - ] - } - ], - "matches_aggregate": [ - 3433, - { - "distinct_on": [ - 3456, - "[matches_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3454, - "[matches_order_by!]" - ], - "where": [ - 3443 - ] - } - ], - "mr": [ - 41 - ], - "number_of_substitutes": [ - 41 - ], - "overtime": [ - 6 - ], - "prefer_dedicated_server": [ - 6 - ], - "ready_setting": [ - 1326 - ], - "region_veto": [ - 6 - ], - "regions": [ - 85 - ], - "round_restart_delay": [ - 41 - ], - "tech_timeout_setting": [ - 1534 - ], - "timeout_setting": [ - 1534 - ], - "tournament": [ - 5896 - ], - "tournament_bracket": [ - 5287 - ], - "tournament_stage": [ - 5717 - ], - "tv_delay": [ - 41 - ], - "type": [ - 1225 - ], - "veto_pick_timeout": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "match_options_aggregate": { - "aggregate": [ - 3296 - ], - "nodes": [ - 3290 - ], - "__typename": [ - 85 - ] - }, - "match_options_aggregate_bool_exp": { - "bool_and": [ - 3293 - ], - "bool_or": [ - 3294 - ], - "count": [ - 3295 - ], - "__typename": [ - 85 - ] - }, - "match_options_aggregate_bool_exp_bool_and": { - "arguments": [ - 3315 - ], - "distinct": [ - 6 - ], - "filter": [ - 3301 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "match_options_aggregate_bool_exp_bool_or": { - "arguments": [ - 3316 - ], - "distinct": [ - 6 - ], - "filter": [ - 3301 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "match_options_aggregate_bool_exp_count": { - "arguments": [ - 3314 - ], - "distinct": [ - 6 - ], - "filter": [ - 3301 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "match_options_aggregate_fields": { - "avg": [ - 3299 - ], - "count": [ - 41, - { - "columns": [ - 3314, - "[match_options_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 3305 - ], - "min": [ - 3307 - ], - "stddev": [ - 3318 - ], - "stddev_pop": [ - 3320 - ], - "stddev_samp": [ - 3322 - ], - "sum": [ - 3326 - ], - "var_pop": [ - 3330 - ], - "var_samp": [ - 3332 - ], - "variance": [ - 3334 - ], - "__typename": [ - 85 - ] - }, - "match_options_aggregate_order_by": { - "avg": [ - 3300 - ], - "count": [ - 3648 - ], - "max": [ - 3306 - ], - "min": [ - 3308 - ], - "stddev": [ - 3319 - ], - "stddev_pop": [ - 3321 - ], - "stddev_samp": [ - 3323 - ], - "sum": [ - 3327 - ], - "var_pop": [ - 3331 - ], - "var_samp": [ - 3333 - ], - "variance": [ - 3335 - ], - "__typename": [ - 85 - ] - }, - "match_options_arr_rel_insert_input": { - "data": [ - 3304 - ], - "on_conflict": [ - 3311 - ], - "__typename": [ - 85 - ] - }, - "match_options_avg_fields": { - "auto_cancel_duration": [ - 32 - ], - "best_of": [ - 32 - ], - "live_match_timeout": [ - 32 - ], - "mr": [ - 32 - ], - "number_of_substitutes": [ - 32 - ], - "round_restart_delay": [ - 32 - ], - "tv_delay": [ - 32 - ], - "veto_pick_timeout": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_options_avg_order_by": { - "auto_cancel_duration": [ - 3648 - ], - "best_of": [ - 3648 - ], - "live_match_timeout": [ - 3648 - ], - "mr": [ - 3648 - ], - "number_of_substitutes": [ - 3648 - ], - "round_restart_delay": [ - 3648 - ], - "tv_delay": [ - 3648 - ], - "veto_pick_timeout": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_options_bool_exp": { - "_and": [ - 3301 - ], - "_not": [ - 3301 - ], - "_or": [ - 3301 - ], - "auto_cancel_duration": [ - 42 - ], - "auto_cancellation": [ - 7 - ], - "best_of": [ - 42 - ], - "camera_allow_teammates": [ - 7 - ], - "camera_required": [ - 7 - ], - "check_in_setting": [ - 691 - ], - "coaches": [ - 7 - ], - "default_models": [ - 7 - ], - "game_mode": [ - 2175 - ], - "game_mode_id": [ - 6674 - ], - "halftime_pausematch": [ - 7 - ], - "has_active_matches": [ - 7 - ], - "id": [ - 6674 - ], - "invite_code": [ - 87 - ], - "knife_round": [ - 7 - ], - "live_match_timeout": [ - 42 - ], - "map_pool": [ - 2908 - ], - "map_pool_id": [ - 6674 - ], - "map_veto": [ - 7 - ], - "match_mode": [ - 1165 - ], - "matches": [ - 3443 - ], - "matches_aggregate": [ - 3434 - ], - "mr": [ - 42 - ], - "number_of_substitutes": [ - 42 - ], - "overtime": [ - 7 - ], - "prefer_dedicated_server": [ - 7 - ], - "ready_setting": [ - 1327 - ], - "region_veto": [ - 7 - ], - "regions": [ - 86 - ], - "round_restart_delay": [ - 42 - ], - "tech_timeout_setting": [ - 1535 - ], - "timeout_setting": [ - 1535 - ], - "tournament": [ - 5917 - ], - "tournament_bracket": [ - 5298 - ], - "tournament_stage": [ - 5729 - ], - "tv_delay": [ - 42 - ], - "type": [ - 1226 - ], - "veto_pick_timeout": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "match_options_constraint": {}, - "match_options_inc_input": { - "auto_cancel_duration": [ - 41 - ], - "best_of": [ - 41 - ], - "live_match_timeout": [ - 41 - ], - "mr": [ - 41 - ], - "number_of_substitutes": [ - 41 - ], - "round_restart_delay": [ - 41 - ], - "tv_delay": [ - 41 - ], - "veto_pick_timeout": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "match_options_insert_input": { - "auto_cancel_duration": [ - 41 - ], - "auto_cancellation": [ - 6 - ], - "best_of": [ - 41 - ], - "camera_allow_teammates": [ - 6 - ], - "camera_required": [ - 6 - ], - "check_in_setting": [ - 690 - ], - "coaches": [ - 6 - ], - "default_models": [ - 6 - ], - "game_mode": [ - 2181 - ], - "game_mode_id": [ - 6672 - ], - "halftime_pausematch": [ - 6 - ], - "id": [ - 6672 - ], - "invite_code": [ - 85 - ], - "knife_round": [ - 6 - ], - "live_match_timeout": [ - 41 - ], - "map_pool": [ - 2914 - ], - "map_pool_id": [ - 6672 - ], - "map_veto": [ - 6 - ], - "match_mode": [ - 1164 - ], - "matches": [ - 3440 - ], - "mr": [ - 41 - ], - "number_of_substitutes": [ - 41 - ], - "overtime": [ - 6 - ], - "prefer_dedicated_server": [ - 6 - ], - "ready_setting": [ - 1326 - ], - "region_veto": [ - 6 - ], - "regions": [ - 85 - ], - "round_restart_delay": [ - 41 - ], - "tech_timeout_setting": [ - 1534 - ], - "timeout_setting": [ - 1534 - ], - "tournament": [ - 5926 - ], - "tournament_bracket": [ - 5307 - ], - "tournament_stage": [ - 5741 - ], - "tv_delay": [ - 41 - ], - "type": [ - 1225 - ], - "veto_pick_timeout": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "match_options_max_fields": { - "auto_cancel_duration": [ - 41 - ], - "best_of": [ - 41 - ], - "game_mode_id": [ - 6672 - ], - "id": [ - 6672 - ], - "invite_code": [ - 85 - ], - "live_match_timeout": [ - 41 - ], - "map_pool_id": [ - 6672 - ], - "mr": [ - 41 - ], - "number_of_substitutes": [ - 41 - ], - "regions": [ - 85 - ], - "round_restart_delay": [ - 41 - ], - "tv_delay": [ - 41 - ], - "veto_pick_timeout": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "match_options_max_order_by": { - "auto_cancel_duration": [ - 3648 - ], - "best_of": [ - 3648 - ], - "game_mode_id": [ - 3648 - ], - "id": [ - 3648 - ], - "invite_code": [ - 3648 - ], - "live_match_timeout": [ - 3648 - ], - "map_pool_id": [ - 3648 - ], - "mr": [ - 3648 - ], - "number_of_substitutes": [ - 3648 - ], - "regions": [ - 3648 - ], - "round_restart_delay": [ - 3648 - ], - "tv_delay": [ - 3648 - ], - "veto_pick_timeout": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_options_min_fields": { - "auto_cancel_duration": [ - 41 - ], - "best_of": [ - 41 - ], - "game_mode_id": [ - 6672 - ], - "id": [ - 6672 - ], - "invite_code": [ - 85 - ], - "live_match_timeout": [ - 41 - ], - "map_pool_id": [ - 6672 - ], - "mr": [ - 41 - ], - "number_of_substitutes": [ - 41 - ], - "regions": [ - 85 - ], - "round_restart_delay": [ - 41 - ], - "tv_delay": [ - 41 - ], - "veto_pick_timeout": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "match_options_min_order_by": { - "auto_cancel_duration": [ - 3648 - ], - "best_of": [ - 3648 - ], - "game_mode_id": [ - 3648 - ], - "id": [ - 3648 - ], - "invite_code": [ - 3648 - ], - "live_match_timeout": [ - 3648 - ], - "map_pool_id": [ - 3648 - ], - "mr": [ - 3648 - ], - "number_of_substitutes": [ - 3648 - ], - "regions": [ - 3648 - ], - "round_restart_delay": [ - 3648 - ], - "tv_delay": [ - 3648 - ], - "veto_pick_timeout": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_options_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 3290 - ], - "__typename": [ - 85 - ] - }, - "match_options_obj_rel_insert_input": { - "data": [ - 3304 - ], - "on_conflict": [ - 3311 - ], - "__typename": [ - 85 - ] - }, - "match_options_on_conflict": { - "constraint": [ - 3302 - ], - "update_columns": [ - 3328 - ], - "where": [ - 3301 - ], - "__typename": [ - 85 - ] - }, - "match_options_order_by": { - "auto_cancel_duration": [ - 3648 - ], - "auto_cancellation": [ - 3648 - ], - "best_of": [ - 3648 - ], - "camera_allow_teammates": [ - 3648 - ], - "camera_required": [ - 3648 - ], - "check_in_setting": [ - 3648 - ], - "coaches": [ - 3648 - ], - "default_models": [ - 3648 - ], - "game_mode": [ - 2183 - ], - "game_mode_id": [ - 3648 - ], - "halftime_pausematch": [ - 3648 - ], - "has_active_matches": [ - 3648 - ], - "id": [ - 3648 - ], - "invite_code": [ - 3648 - ], - "knife_round": [ - 3648 - ], - "live_match_timeout": [ - 3648 - ], - "map_pool": [ - 2916 - ], - "map_pool_id": [ - 3648 - ], - "map_veto": [ - 3648 - ], - "match_mode": [ - 3648 - ], - "matches_aggregate": [ - 3439 - ], - "mr": [ - 3648 - ], - "number_of_substitutes": [ - 3648 - ], - "overtime": [ - 3648 - ], - "prefer_dedicated_server": [ - 3648 - ], - "ready_setting": [ - 3648 - ], - "region_veto": [ - 3648 - ], - "regions": [ - 3648 - ], - "round_restart_delay": [ - 3648 - ], - "tech_timeout_setting": [ - 3648 - ], - "timeout_setting": [ - 3648 - ], - "tournament": [ - 5928 - ], - "tournament_bracket": [ - 5309 - ], - "tournament_stage": [ - 5743 - ], - "tv_delay": [ - 3648 - ], - "type": [ - 3648 - ], - "veto_pick_timeout": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_options_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "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": [ - 41 - ], - "auto_cancellation": [ - 6 - ], - "best_of": [ - 41 - ], - "camera_allow_teammates": [ - 6 - ], - "camera_required": [ - 6 - ], - "check_in_setting": [ - 690 - ], - "coaches": [ - 6 - ], - "default_models": [ - 6 - ], - "game_mode_id": [ - 6672 - ], - "halftime_pausematch": [ - 6 - ], - "id": [ - 6672 - ], - "invite_code": [ - 85 - ], - "knife_round": [ - 6 - ], - "live_match_timeout": [ - 41 - ], - "map_pool_id": [ - 6672 - ], - "map_veto": [ - 6 - ], - "match_mode": [ - 1164 - ], - "mr": [ - 41 - ], - "number_of_substitutes": [ - 41 - ], - "overtime": [ - 6 - ], - "prefer_dedicated_server": [ - 6 - ], - "ready_setting": [ - 1326 - ], - "region_veto": [ - 6 - ], - "regions": [ - 85 - ], - "round_restart_delay": [ - 41 - ], - "tech_timeout_setting": [ - 1534 - ], - "timeout_setting": [ - 1534 - ], - "tv_delay": [ - 41 - ], - "type": [ - 1225 - ], - "veto_pick_timeout": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "match_options_stddev_fields": { - "auto_cancel_duration": [ - 32 - ], - "best_of": [ - 32 - ], - "live_match_timeout": [ - 32 - ], - "mr": [ - 32 - ], - "number_of_substitutes": [ - 32 - ], - "round_restart_delay": [ - 32 - ], - "tv_delay": [ - 32 - ], - "veto_pick_timeout": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_options_stddev_order_by": { - "auto_cancel_duration": [ - 3648 - ], - "best_of": [ - 3648 - ], - "live_match_timeout": [ - 3648 - ], - "mr": [ - 3648 - ], - "number_of_substitutes": [ - 3648 - ], - "round_restart_delay": [ - 3648 - ], - "tv_delay": [ - 3648 - ], - "veto_pick_timeout": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_options_stddev_pop_fields": { - "auto_cancel_duration": [ - 32 - ], - "best_of": [ - 32 - ], - "live_match_timeout": [ - 32 - ], - "mr": [ - 32 - ], - "number_of_substitutes": [ - 32 - ], - "round_restart_delay": [ - 32 - ], - "tv_delay": [ - 32 - ], - "veto_pick_timeout": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_options_stddev_pop_order_by": { - "auto_cancel_duration": [ - 3648 - ], - "best_of": [ - 3648 - ], - "live_match_timeout": [ - 3648 - ], - "mr": [ - 3648 - ], - "number_of_substitutes": [ - 3648 - ], - "round_restart_delay": [ - 3648 - ], - "tv_delay": [ - 3648 - ], - "veto_pick_timeout": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_options_stddev_samp_fields": { - "auto_cancel_duration": [ - 32 - ], - "best_of": [ - 32 - ], - "live_match_timeout": [ - 32 - ], - "mr": [ - 32 - ], - "number_of_substitutes": [ - 32 - ], - "round_restart_delay": [ - 32 - ], - "tv_delay": [ - 32 - ], - "veto_pick_timeout": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_options_stddev_samp_order_by": { - "auto_cancel_duration": [ - 3648 - ], - "best_of": [ - 3648 - ], - "live_match_timeout": [ - 3648 - ], - "mr": [ - 3648 - ], - "number_of_substitutes": [ - 3648 - ], - "round_restart_delay": [ - 3648 - ], - "tv_delay": [ - 3648 - ], - "veto_pick_timeout": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_options_stream_cursor_input": { - "initial_value": [ - 3325 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "match_options_stream_cursor_value_input": { - "auto_cancel_duration": [ - 41 - ], - "auto_cancellation": [ - 6 - ], - "best_of": [ - 41 - ], - "camera_allow_teammates": [ - 6 - ], - "camera_required": [ - 6 - ], - "check_in_setting": [ - 690 - ], - "coaches": [ - 6 - ], - "default_models": [ - 6 - ], - "game_mode_id": [ - 6672 - ], - "halftime_pausematch": [ - 6 - ], - "id": [ - 6672 - ], - "invite_code": [ - 85 - ], - "knife_round": [ - 6 - ], - "live_match_timeout": [ - 41 - ], - "map_pool_id": [ - 6672 - ], - "map_veto": [ - 6 - ], - "match_mode": [ - 1164 - ], - "mr": [ - 41 - ], - "number_of_substitutes": [ - 41 - ], - "overtime": [ - 6 - ], - "prefer_dedicated_server": [ - 6 - ], - "ready_setting": [ - 1326 - ], - "region_veto": [ - 6 - ], - "regions": [ - 85 - ], - "round_restart_delay": [ - 41 - ], - "tech_timeout_setting": [ - 1534 - ], - "timeout_setting": [ - 1534 - ], - "tv_delay": [ - 41 - ], - "type": [ - 1225 - ], - "veto_pick_timeout": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "match_options_sum_fields": { - "auto_cancel_duration": [ - 41 - ], - "best_of": [ - 41 - ], - "live_match_timeout": [ - 41 - ], - "mr": [ - 41 - ], - "number_of_substitutes": [ - 41 - ], - "round_restart_delay": [ - 41 - ], - "tv_delay": [ - 41 - ], - "veto_pick_timeout": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "match_options_sum_order_by": { - "auto_cancel_duration": [ - 3648 - ], - "best_of": [ - 3648 - ], - "live_match_timeout": [ - 3648 - ], - "mr": [ - 3648 - ], - "number_of_substitutes": [ - 3648 - ], - "round_restart_delay": [ - 3648 - ], - "tv_delay": [ - 3648 - ], - "veto_pick_timeout": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_options_update_column": {}, - "match_options_updates": { - "_inc": [ - 3303 - ], - "_set": [ - 3317 - ], - "where": [ - 3301 - ], - "__typename": [ - 85 - ] - }, - "match_options_var_pop_fields": { - "auto_cancel_duration": [ - 32 - ], - "best_of": [ - 32 - ], - "live_match_timeout": [ - 32 - ], - "mr": [ - 32 - ], - "number_of_substitutes": [ - 32 - ], - "round_restart_delay": [ - 32 - ], - "tv_delay": [ - 32 - ], - "veto_pick_timeout": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_options_var_pop_order_by": { - "auto_cancel_duration": [ - 3648 - ], - "best_of": [ - 3648 - ], - "live_match_timeout": [ - 3648 - ], - "mr": [ - 3648 - ], - "number_of_substitutes": [ - 3648 - ], - "round_restart_delay": [ - 3648 - ], - "tv_delay": [ - 3648 - ], - "veto_pick_timeout": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_options_var_samp_fields": { - "auto_cancel_duration": [ - 32 - ], - "best_of": [ - 32 - ], - "live_match_timeout": [ - 32 - ], - "mr": [ - 32 - ], - "number_of_substitutes": [ - 32 - ], - "round_restart_delay": [ - 32 - ], - "tv_delay": [ - 32 - ], - "veto_pick_timeout": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_options_var_samp_order_by": { - "auto_cancel_duration": [ - 3648 - ], - "best_of": [ - 3648 - ], - "live_match_timeout": [ - 3648 - ], - "mr": [ - 3648 - ], - "number_of_substitutes": [ - 3648 - ], - "round_restart_delay": [ - 3648 - ], - "tv_delay": [ - 3648 - ], - "veto_pick_timeout": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_options_variance_fields": { - "auto_cancel_duration": [ - 32 - ], - "best_of": [ - 32 - ], - "live_match_timeout": [ - 32 - ], - "mr": [ - 32 - ], - "number_of_substitutes": [ - 32 - ], - "round_restart_delay": [ - 32 - ], - "tv_delay": [ - 32 - ], - "veto_pick_timeout": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_options_variance_order_by": { - "auto_cancel_duration": [ - 3648 - ], - "best_of": [ - 3648 - ], - "live_match_timeout": [ - 3648 - ], - "mr": [ - 3648 - ], - "number_of_substitutes": [ - 3648 - ], - "round_restart_delay": [ - 3648 - ], - "tv_delay": [ - 3648 - ], - "veto_pick_timeout": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_region_veto_picks": { - "auto_picked": [ - 6 - ], - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "match": [ - 3432 - ], - "match_id": [ - 6672 - ], - "match_lineup": [ - 3086 - ], - "match_lineup_id": [ - 6672 - ], - "region": [ - 85 - ], - "type": [ - 1799 - ], - "__typename": [ - 85 - ] - }, - "match_region_veto_picks_aggregate": { - "aggregate": [ - 3342 - ], - "nodes": [ - 3336 - ], - "__typename": [ - 85 - ] - }, - "match_region_veto_picks_aggregate_bool_exp": { - "bool_and": [ - 3339 - ], - "bool_or": [ - 3340 - ], - "count": [ - 3341 - ], - "__typename": [ - 85 - ] - }, - "match_region_veto_picks_aggregate_bool_exp_bool_and": { - "arguments": [ - 3357 - ], - "distinct": [ - 6 - ], - "filter": [ - 3345 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "match_region_veto_picks_aggregate_bool_exp_bool_or": { - "arguments": [ - 3358 - ], - "distinct": [ - 6 - ], - "filter": [ - 3345 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "match_region_veto_picks_aggregate_bool_exp_count": { - "arguments": [ - 3356 - ], - "distinct": [ - 6 - ], - "filter": [ - 3345 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "match_region_veto_picks_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 3356, - "[match_region_veto_picks_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 3348 - ], - "min": [ - 3350 - ], - "__typename": [ - 85 - ] - }, - "match_region_veto_picks_aggregate_order_by": { - "count": [ - 3648 - ], - "max": [ - 3349 - ], - "min": [ - 3351 - ], - "__typename": [ - 85 - ] - }, - "match_region_veto_picks_arr_rel_insert_input": { - "data": [ - 3347 - ], - "on_conflict": [ - 3353 - ], - "__typename": [ - 85 - ] - }, - "match_region_veto_picks_bool_exp": { - "_and": [ - 3345 - ], - "_not": [ - 3345 - ], - "_or": [ - 3345 - ], - "auto_picked": [ - 7 - ], - "created_at": [ - 5244 - ], - "id": [ - 6674 - ], - "match": [ - 3443 - ], - "match_id": [ - 6674 - ], - "match_lineup": [ - 3095 - ], - "match_lineup_id": [ - 6674 - ], - "region": [ - 87 - ], - "type": [ - 1800 - ], - "__typename": [ - 85 - ] - }, - "match_region_veto_picks_constraint": {}, - "match_region_veto_picks_insert_input": { - "auto_picked": [ - 6 - ], - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "match": [ - 3452 - ], - "match_id": [ - 6672 - ], - "match_lineup": [ - 3104 - ], - "match_lineup_id": [ - 6672 - ], - "region": [ - 85 - ], - "type": [ - 1799 - ], - "__typename": [ - 85 - ] - }, - "match_region_veto_picks_max_fields": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "match_lineup_id": [ - 6672 - ], - "region": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "match_region_veto_picks_max_order_by": { - "created_at": [ - 3648 - ], - "id": [ - 3648 - ], - "match_id": [ - 3648 - ], - "match_lineup_id": [ - 3648 - ], - "region": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_region_veto_picks_min_fields": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "match_lineup_id": [ - 6672 - ], - "region": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "match_region_veto_picks_min_order_by": { - "created_at": [ - 3648 - ], - "id": [ - 3648 - ], - "match_id": [ - 3648 - ], - "match_lineup_id": [ - 3648 - ], - "region": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_region_veto_picks_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 3336 - ], - "__typename": [ - 85 - ] - }, - "match_region_veto_picks_on_conflict": { - "constraint": [ - 3346 - ], - "update_columns": [ - 3362 - ], - "where": [ - 3345 - ], - "__typename": [ - 85 - ] - }, - "match_region_veto_picks_order_by": { - "auto_picked": [ - 3648 - ], - "created_at": [ - 3648 - ], - "id": [ - 3648 - ], - "match": [ - 3454 - ], - "match_id": [ - 3648 - ], - "match_lineup": [ - 3106 - ], - "match_lineup_id": [ - 3648 - ], - "region": [ - 3648 - ], - "type": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_region_veto_picks_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "match_region_veto_picks_select_column": {}, - "match_region_veto_picks_select_column_match_region_veto_picks_aggregate_bool_exp_bool_and_arguments_columns": {}, - "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": [ - 6 - ], - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "match_lineup_id": [ - 6672 - ], - "region": [ - 85 - ], - "type": [ - 1799 - ], - "__typename": [ - 85 - ] - }, - "match_region_veto_picks_stream_cursor_input": { - "initial_value": [ - 3361 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "match_region_veto_picks_stream_cursor_value_input": { - "auto_picked": [ - 6 - ], - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "match_lineup_id": [ - 6672 - ], - "region": [ - 85 - ], - "type": [ - 1799 - ], - "__typename": [ - 85 - ] - }, - "match_region_veto_picks_update_column": {}, - "match_region_veto_picks_updates": { - "_set": [ - 3359 - ], - "where": [ - 3345 - ], - "__typename": [ - 85 - ] - }, - "match_streams": { - "autodirector": [ - 6 - ], - "error_message": [ - 85 - ], - "game_server_node": [ - 2314 - ], - "game_server_node_id": [ - 85 - ], - "id": [ - 6672 - ], - "is_game_streamer": [ - 6 - ], - "is_live": [ - 6 - ], - "k8s_service_name": [ - 85 - ], - "last_status_at": [ - 5243 - ], - "link": [ - 85 - ], - "match": [ - 3432 - ], - "match_id": [ - 6672 - ], - "mode": [ - 85 - ], - "priority": [ - 41 - ], - "status": [ - 85 - ], - "status_history": [ - 2439, - { - "path": [ - 85 - ] - } - ], - "stream_url": [ - 85 - ], - "title": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "match_streams_aggregate": { - "aggregate": [ - 3370 - ], - "nodes": [ - 3364 - ], - "__typename": [ - 85 - ] - }, - "match_streams_aggregate_bool_exp": { - "bool_and": [ - 3367 - ], - "bool_or": [ - 3368 - ], - "count": [ - 3369 - ], - "__typename": [ - 85 - ] - }, - "match_streams_aggregate_bool_exp_bool_and": { - "arguments": [ - 3393 - ], - "distinct": [ - 6 - ], - "filter": [ - 3376 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "match_streams_aggregate_bool_exp_bool_or": { - "arguments": [ - 3394 - ], - "distinct": [ - 6 - ], - "filter": [ - 3376 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "match_streams_aggregate_bool_exp_count": { - "arguments": [ - 3392 - ], - "distinct": [ - 6 - ], - "filter": [ - 3376 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "match_streams_aggregate_fields": { - "avg": [ - 3374 - ], - "count": [ - 41, - { - "columns": [ - 3392, - "[match_streams_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 3383 - ], - "min": [ - 3385 - ], - "stddev": [ - 3396 - ], - "stddev_pop": [ - 3398 - ], - "stddev_samp": [ - 3400 - ], - "sum": [ - 3404 - ], - "var_pop": [ - 3408 - ], - "var_samp": [ - 3410 - ], - "variance": [ - 3412 - ], - "__typename": [ - 85 - ] - }, - "match_streams_aggregate_order_by": { - "avg": [ - 3375 - ], - "count": [ - 3648 - ], - "max": [ - 3384 - ], - "min": [ - 3386 - ], - "stddev": [ - 3397 - ], - "stddev_pop": [ - 3399 - ], - "stddev_samp": [ - 3401 - ], - "sum": [ - 3405 - ], - "var_pop": [ - 3409 - ], - "var_samp": [ - 3411 - ], - "variance": [ - 3413 - ], - "__typename": [ - 85 - ] - }, - "match_streams_append_input": { - "status_history": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "match_streams_arr_rel_insert_input": { - "data": [ - 3382 - ], - "on_conflict": [ - 3388 - ], - "__typename": [ - 85 - ] - }, - "match_streams_avg_fields": { - "priority": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_streams_avg_order_by": { - "priority": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_streams_bool_exp": { - "_and": [ - 3376 - ], - "_not": [ - 3376 - ], - "_or": [ - 3376 - ], - "autodirector": [ - 7 - ], - "error_message": [ - 87 - ], - "game_server_node": [ - 2326 - ], - "game_server_node_id": [ - 87 - ], - "id": [ - 6674 - ], - "is_game_streamer": [ - 7 - ], - "is_live": [ - 7 - ], - "k8s_service_name": [ - 87 - ], - "last_status_at": [ - 5244 - ], - "link": [ - 87 - ], - "match": [ - 3443 - ], - "match_id": [ - 6674 - ], - "mode": [ - 87 - ], - "priority": [ - 42 - ], - "status": [ - 87 - ], - "status_history": [ - 2441 - ], - "stream_url": [ - 87 - ], - "title": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "match_streams_constraint": {}, - "match_streams_delete_at_path_input": { - "status_history": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "match_streams_delete_elem_input": { - "status_history": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "match_streams_delete_key_input": { - "status_history": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "match_streams_inc_input": { - "priority": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "match_streams_insert_input": { - "autodirector": [ - 6 - ], - "error_message": [ - 85 - ], - "game_server_node": [ - 2338 - ], - "game_server_node_id": [ - 85 - ], - "id": [ - 6672 - ], - "is_game_streamer": [ - 6 - ], - "is_live": [ - 6 - ], - "k8s_service_name": [ - 85 - ], - "last_status_at": [ - 5243 - ], - "link": [ - 85 - ], - "match": [ - 3452 - ], - "match_id": [ - 6672 - ], - "mode": [ - 85 - ], - "priority": [ - 41 - ], - "status": [ - 85 - ], - "status_history": [ - 2439 - ], - "stream_url": [ - 85 - ], - "title": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "match_streams_max_fields": { - "error_message": [ - 85 - ], - "game_server_node_id": [ - 85 - ], - "id": [ - 6672 - ], - "k8s_service_name": [ - 85 - ], - "last_status_at": [ - 5243 - ], - "link": [ - 85 - ], - "match_id": [ - 6672 - ], - "mode": [ - 85 - ], - "priority": [ - 41 - ], - "status": [ - 85 - ], - "stream_url": [ - 85 - ], - "title": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "match_streams_max_order_by": { - "error_message": [ - 3648 - ], - "game_server_node_id": [ - 3648 - ], - "id": [ - 3648 - ], - "k8s_service_name": [ - 3648 - ], - "last_status_at": [ - 3648 - ], - "link": [ - 3648 - ], - "match_id": [ - 3648 - ], - "mode": [ - 3648 - ], - "priority": [ - 3648 - ], - "status": [ - 3648 - ], - "stream_url": [ - 3648 - ], - "title": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_streams_min_fields": { - "error_message": [ - 85 - ], - "game_server_node_id": [ - 85 - ], - "id": [ - 6672 - ], - "k8s_service_name": [ - 85 - ], - "last_status_at": [ - 5243 - ], - "link": [ - 85 - ], - "match_id": [ - 6672 - ], - "mode": [ - 85 - ], - "priority": [ - 41 - ], - "status": [ - 85 - ], - "stream_url": [ - 85 - ], - "title": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "match_streams_min_order_by": { - "error_message": [ - 3648 - ], - "game_server_node_id": [ - 3648 - ], - "id": [ - 3648 - ], - "k8s_service_name": [ - 3648 - ], - "last_status_at": [ - 3648 - ], - "link": [ - 3648 - ], - "match_id": [ - 3648 - ], - "mode": [ - 3648 - ], - "priority": [ - 3648 - ], - "status": [ - 3648 - ], - "stream_url": [ - 3648 - ], - "title": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_streams_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 3364 - ], - "__typename": [ - 85 - ] - }, - "match_streams_on_conflict": { - "constraint": [ - 3377 - ], - "update_columns": [ - 3406 - ], - "where": [ - 3376 - ], - "__typename": [ - 85 - ] - }, - "match_streams_order_by": { - "autodirector": [ - 3648 - ], - "error_message": [ - 3648 - ], - "game_server_node": [ - 2340 - ], - "game_server_node_id": [ - 3648 - ], - "id": [ - 3648 - ], - "is_game_streamer": [ - 3648 - ], - "is_live": [ - 3648 - ], - "k8s_service_name": [ - 3648 - ], - "last_status_at": [ - 3648 - ], - "link": [ - 3648 - ], - "match": [ - 3454 - ], - "match_id": [ - 3648 - ], - "mode": [ - 3648 - ], - "priority": [ - 3648 - ], - "status": [ - 3648 - ], - "status_history": [ - 3648 - ], - "stream_url": [ - 3648 - ], - "title": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_streams_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "match_streams_prepend_input": { - "status_history": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "match_streams_select_column": {}, - "match_streams_select_column_match_streams_aggregate_bool_exp_bool_and_arguments_columns": {}, - "match_streams_select_column_match_streams_aggregate_bool_exp_bool_or_arguments_columns": {}, - "match_streams_set_input": { - "autodirector": [ - 6 - ], - "error_message": [ - 85 - ], - "game_server_node_id": [ - 85 - ], - "id": [ - 6672 - ], - "is_game_streamer": [ - 6 - ], - "is_live": [ - 6 - ], - "k8s_service_name": [ - 85 - ], - "last_status_at": [ - 5243 - ], - "link": [ - 85 - ], - "match_id": [ - 6672 - ], - "mode": [ - 85 - ], - "priority": [ - 41 - ], - "status": [ - 85 - ], - "status_history": [ - 2439 - ], - "stream_url": [ - 85 - ], - "title": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "match_streams_stddev_fields": { - "priority": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_streams_stddev_order_by": { - "priority": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_streams_stddev_pop_fields": { - "priority": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_streams_stddev_pop_order_by": { - "priority": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_streams_stddev_samp_fields": { - "priority": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_streams_stddev_samp_order_by": { - "priority": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_streams_stream_cursor_input": { - "initial_value": [ - 3403 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "match_streams_stream_cursor_value_input": { - "autodirector": [ - 6 - ], - "error_message": [ - 85 - ], - "game_server_node_id": [ - 85 - ], - "id": [ - 6672 - ], - "is_game_streamer": [ - 6 - ], - "is_live": [ - 6 - ], - "k8s_service_name": [ - 85 - ], - "last_status_at": [ - 5243 - ], - "link": [ - 85 - ], - "match_id": [ - 6672 - ], - "mode": [ - 85 - ], - "priority": [ - 41 - ], - "status": [ - 85 - ], - "status_history": [ - 2439 - ], - "stream_url": [ - 85 - ], - "title": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "match_streams_sum_fields": { - "priority": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "match_streams_sum_order_by": { - "priority": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_streams_update_column": {}, - "match_streams_updates": { - "_append": [ - 3372 - ], - "_delete_at_path": [ - 3378 - ], - "_delete_elem": [ - 3379 - ], - "_delete_key": [ - 3380 - ], - "_inc": [ - 3381 - ], - "_prepend": [ - 3391 - ], - "_set": [ - 3395 - ], - "where": [ - 3376 - ], - "__typename": [ - 85 - ] - }, - "match_streams_var_pop_fields": { - "priority": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_streams_var_pop_order_by": { - "priority": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_streams_var_samp_fields": { - "priority": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_streams_var_samp_order_by": { - "priority": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_streams_variance_fields": { - "priority": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "match_streams_variance_order_by": { - "priority": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_type_cfgs": { - "cfg": [ - 85 - ], - "type": [ - 876 - ], - "__typename": [ - 85 - ] - }, - "match_type_cfgs_aggregate": { - "aggregate": [ - 3416 - ], - "nodes": [ - 3414 - ], - "__typename": [ - 85 - ] - }, - "match_type_cfgs_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 3426, - "[match_type_cfgs_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 3420 - ], - "min": [ - 3421 - ], - "__typename": [ - 85 - ] - }, - "match_type_cfgs_bool_exp": { - "_and": [ - 3417 - ], - "_not": [ - 3417 - ], - "_or": [ - 3417 - ], - "cfg": [ - 87 - ], - "type": [ - 877 - ], - "__typename": [ - 85 - ] - }, - "match_type_cfgs_constraint": {}, - "match_type_cfgs_insert_input": { - "cfg": [ - 85 - ], - "type": [ - 876 - ], - "__typename": [ - 85 - ] - }, - "match_type_cfgs_max_fields": { - "cfg": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "match_type_cfgs_min_fields": { - "cfg": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "match_type_cfgs_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 3414 - ], - "__typename": [ - 85 - ] - }, - "match_type_cfgs_on_conflict": { - "constraint": [ - 3418 - ], - "update_columns": [ - 3430 - ], - "where": [ - 3417 - ], - "__typename": [ - 85 - ] - }, - "match_type_cfgs_order_by": { - "cfg": [ - 3648 - ], - "type": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "match_type_cfgs_pk_columns_input": { - "type": [ - 876 - ], - "__typename": [ - 85 - ] - }, - "match_type_cfgs_select_column": {}, - "match_type_cfgs_set_input": { - "cfg": [ - 85 - ], - "type": [ - 876 - ], - "__typename": [ - 85 - ] - }, - "match_type_cfgs_stream_cursor_input": { - "initial_value": [ - 3429 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "match_type_cfgs_stream_cursor_value_input": { - "cfg": [ - 85 - ], - "type": [ - 876 - ], - "__typename": [ - 85 - ] - }, - "match_type_cfgs_update_column": {}, - "match_type_cfgs_updates": { - "_set": [ - 3427 - ], - "where": [ - 3417 - ], - "__typename": [ - 85 - ] - }, - "matches": { - "can_assign_server": [ - 6 - ], - "can_cancel": [ - 6 - ], - "can_check_in": [ - 6 - ], - "can_reassign_winner": [ - 6 - ], - "can_schedule": [ - 6 - ], - "can_start": [ - 6 - ], - "can_stream_live": [ - 6 - ], - "can_stream_tv": [ - 6 - ], - "cancels_at": [ - 5243 - ], - "clutches": [ - 6852, - { - "distinct_on": [ - 6868, - "[v_match_clutches_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6867, - "[v_match_clutches_order_by!]" - ], - "where": [ - 6861 - ] - } - ], - "clutches_aggregate": [ - 6853, - { - "distinct_on": [ - 6868, - "[v_match_clutches_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6867, - "[v_match_clutches_order_by!]" - ], - "where": [ - 6861 - ] - } - ], - "connection_link": [ - 85 - ], - "connection_string": [ - 85 - ], - "counts_toward_ranking": [ - 6 - ], - "created_at": [ - 5243 - ], - "current_match_map_id": [ - 6672 - ], - "demos": [ - 3128, - { - "distinct_on": [ - 3157, - "[match_map_demos_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3154, - "[match_map_demos_order_by!]" - ], - "where": [ - 3140 - ] - } - ], - "demos_aggregate": [ - 3129, - { - "distinct_on": [ - 3157, - "[match_map_demos_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3154, - "[match_map_demos_order_by!]" - ], - "where": [ - 3140 - ] - } - ], - "draft_games": [ - 599, - { - "distinct_on": [ - 623, - "[draft_games_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 621, - "[draft_games_order_by!]" - ], - "where": [ - 610 - ] - } - ], - "draft_games_aggregate": [ - 600, - { - "distinct_on": [ - 623, - "[draft_games_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 621, - "[draft_games_order_by!]" - ], - "where": [ - 610 - ] - } - ], - "e_match_status": [ - 1199 - ], - "e_region": [ - 4734 - ], - "effective_at": [ - 5243 - ], - "elo_changes": [ - 7049, - { - "distinct_on": [ - 7075, - "[v_player_elo_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7074, - "[v_player_elo_order_by!]" - ], - "where": [ - 7068 - ] - } - ], - "elo_changes_aggregate": [ - 7050, - { - "distinct_on": [ - 7075, - "[v_player_elo_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7074, - "[v_player_elo_order_by!]" - ], - "where": [ - 7068 - ] - } - ], - "ended_at": [ - 5243 - ], - "external_id": [ - 85 - ], - "id": [ - 6672 - ], - "invite_code": [ - 85 - ], - "is_captain": [ - 6 - ], - "is_coach": [ - 6 - ], - "is_friend_in_match_lineup": [ - 6 - ], - "is_in_lineup": [ - 6 - ], - "is_match_server_available": [ - 6 - ], - "is_organizer": [ - 6 - ], - "is_server_online": [ - 6 - ], - "is_tournament_match": [ - 6 - ], - "label": [ - 85 - ], - "lineup_1": [ - 3086 - ], - "lineup_1_id": [ - 6672 - ], - "lineup_2": [ - 3086 - ], - "lineup_2_id": [ - 6672 - ], - "lineup_counts": [ - 2437, - { - "path": [ - 85 - ] - } - ], - "map_veto_picking_lineup_id": [ - 6672 - ], - "map_veto_picks": [ - 3220, - { - "distinct_on": [ - 3240, - "[match_map_veto_picks_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3238, - "[match_map_veto_picks_order_by!]" - ], - "where": [ - 3229 - ] - } - ], - "map_veto_picks_aggregate": [ - 3221, - { - "distinct_on": [ - 3240, - "[match_map_veto_picks_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3238, - "[match_map_veto_picks_order_by!]" - ], - "where": [ - 3229 - ] - } - ], - "map_veto_type": [ - 85 - ], - "match_maps": [ - 3248, - { - "distinct_on": [ - 3270, - "[match_maps_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3268, - "[match_maps_order_by!]" - ], - "where": [ - 3257 - ] - } - ], - "match_maps_aggregate": [ - 3249, - { - "distinct_on": [ - 3270, - "[match_maps_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3268, - "[match_maps_order_by!]" - ], - "where": [ - 3257 - ] - } - ], - "match_options_id": [ - 6672 - ], - "max_players_per_lineup": [ - 41 - ], - "min_players_per_lineup": [ - 41 - ], - "opening_duels": [ - 6980, - { - "distinct_on": [ - 6996, - "[v_match_player_opening_duels_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6995, - "[v_match_player_opening_duels_order_by!]" - ], - "where": [ - 6989 - ] - } - ], - "opening_duels_aggregate": [ - 6981, - { - "distinct_on": [ - 6996, - "[v_match_player_opening_duels_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6995, - "[v_match_player_opening_duels_order_by!]" - ], - "where": [ - 6989 - ] - } - ], - "options": [ - 3290 - ], - "organizer": [ - 4606 - ], - "organizer_steam_id": [ - 312 - ], - "password": [ - 85 - ], - "player_assists": [ - 3786, - { - "distinct_on": [ - 3809, - "[player_assists_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3807, - "[player_assists_order_by!]" - ], - "where": [ - 3797 - ] - } - ], - "player_assists_aggregate": [ - 3787, - { - "distinct_on": [ - 3809, - "[player_assists_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3807, - "[player_assists_order_by!]" - ], - "where": [ - 3797 - ] - } - ], - "player_damages": [ - 3849, - { - "distinct_on": [ - 3870, - "[player_damages_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3868, - "[player_damages_order_by!]" - ], - "where": [ - 3858 - ] - } - ], - "player_damages_aggregate": [ - 3850, - { - "distinct_on": [ - 3870, - "[player_damages_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3868, - "[player_damages_order_by!]" - ], - "where": [ - 3858 - ] - } - ], - "player_flashes": [ - 3958, - { - "distinct_on": [ - 3981, - "[player_flashes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3979, - "[player_flashes_order_by!]" - ], - "where": [ - 3969 - ] - } - ], - "player_flashes_aggregate": [ - 3959, - { - "distinct_on": [ - 3981, - "[player_flashes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3979, - "[player_flashes_order_by!]" - ], - "where": [ - 3969 - ] - } - ], - "player_kills": [ - 4003, - { - "distinct_on": [ - 4067, - "[player_kills_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4065, - "[player_kills_order_by!]" - ], - "where": [ - 4014 - ] - } - ], - "player_kills_aggregate": [ - 4004, - { - "distinct_on": [ - 4067, - "[player_kills_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4065, - "[player_kills_order_by!]" - ], - "where": [ - 4014 - ] - } - ], - "player_objectives": [ - 4204, - { - "distinct_on": [ - 4225, - "[player_objectives_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4223, - "[player_objectives_order_by!]" - ], - "where": [ - 4213 - ] - } - ], - "player_objectives_aggregate": [ - 4205, - { - "distinct_on": [ - 4225, - "[player_objectives_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4223, - "[player_objectives_order_by!]" - ], - "where": [ - 4213 - ] - } - ], - "player_unused_utilities": [ - 4491, - { - "distinct_on": [ - 4512, - "[player_unused_utility_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4510, - "[player_unused_utility_order_by!]" - ], - "where": [ - 4500 - ] - } - ], - "player_unused_utilities_aggregate": [ - 4492, - { - "distinct_on": [ - 4512, - "[player_unused_utility_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4510, - "[player_unused_utility_order_by!]" - ], - "where": [ - 4500 - ] - } - ], - "player_utility": [ - 4532, - { - "distinct_on": [ - 4553, - "[player_utility_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4551, - "[player_utility_order_by!]" - ], - "where": [ - 4541 - ] - } - ], - "player_utility_aggregate": [ - 4533, - { - "distinct_on": [ - 4553, - "[player_utility_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4551, - "[player_utility_order_by!]" - ], - "where": [ - 4541 - ] - } - ], - "region": [ - 85 - ], - "region_veto_picking_lineup_id": [ - 6672 - ], - "region_veto_picks": [ - 3336, - { - "distinct_on": [ - 3356, - "[match_region_veto_picks_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3354, - "[match_region_veto_picks_order_by!]" - ], - "where": [ - 3345 - ] - } - ], - "region_veto_picks_aggregate": [ - 3337, - { - "distinct_on": [ - 3356, - "[match_region_veto_picks_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3354, - "[match_region_veto_picks_order_by!]" - ], - "where": [ - 3345 - ] - } - ], - "requested_organizer": [ - 6 - ], - "scheduled_at": [ - 5243 - ], - "server": [ - 4761 - ], - "server_error": [ - 85 - ], - "server_id": [ - 6672 - ], - "server_plugin_runtime": [ - 85 - ], - "server_region": [ - 85 - ], - "server_type": [ - 85 - ], - "share_code": [ - 85 - ], - "source": [ - 85 - ], - "started_at": [ - 5243 - ], - "status": [ - 1204 - ], - "streams": [ - 3364, - { - "distinct_on": [ - 3392, - "[match_streams_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3389, - "[match_streams_order_by!]" - ], - "where": [ - 3376 - ] - } - ], - "streams_aggregate": [ - 3365, - { - "distinct_on": [ - 3392, - "[match_streams_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3389, - "[match_streams_order_by!]" - ], - "where": [ - 3376 - ] - } - ], - "teams": [ - 5194, - { - "distinct_on": [ - 5218, - "[teams_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5216, - "[teams_order_by!]" - ], - "where": [ - 5205 - ] - } - ], - "tournament_brackets": [ - 5287, - { - "distinct_on": [ - 5311, - "[tournament_brackets_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5309, - "[tournament_brackets_order_by!]" - ], - "where": [ - 5298 - ] - } - ], - "tournament_brackets_aggregate": [ - 5288, - { - "distinct_on": [ - 5311, - "[tournament_brackets_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5309, - "[tournament_brackets_order_by!]" - ], - "where": [ - 5298 - ] - } - ], - "tv_connection_string": [ - 85 - ], - "veto_pick_expires_at": [ - 5243 - ], - "winner": [ - 3086 - ], - "winning_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "matches_aggregate": { - "aggregate": [ - 3438 - ], - "nodes": [ - 3432 - ], - "__typename": [ - 85 - ] - }, - "matches_aggregate_bool_exp": { - "bool_and": [ - 3435 - ], - "bool_or": [ - 3436 - ], - "count": [ - 3437 - ], - "__typename": [ - 85 - ] - }, - "matches_aggregate_bool_exp_bool_and": { - "arguments": [ - 3457 - ], - "distinct": [ - 6 - ], - "filter": [ - 3443 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "matches_aggregate_bool_exp_bool_or": { - "arguments": [ - 3458 - ], - "distinct": [ - 6 - ], - "filter": [ - 3443 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "matches_aggregate_bool_exp_count": { - "arguments": [ - 3456 - ], - "distinct": [ - 6 - ], - "filter": [ - 3443 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "matches_aggregate_fields": { - "avg": [ - 3441 - ], - "count": [ - 41, - { - "columns": [ - 3456, - "[matches_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 3447 - ], - "min": [ - 3449 - ], - "stddev": [ - 3460 - ], - "stddev_pop": [ - 3462 - ], - "stddev_samp": [ - 3464 - ], - "sum": [ - 3468 - ], - "var_pop": [ - 3472 - ], - "var_samp": [ - 3474 - ], - "variance": [ - 3476 - ], - "__typename": [ - 85 - ] - }, - "matches_aggregate_order_by": { - "avg": [ - 3442 - ], - "count": [ - 3648 - ], - "max": [ - 3448 - ], - "min": [ - 3450 - ], - "stddev": [ - 3461 - ], - "stddev_pop": [ - 3463 - ], - "stddev_samp": [ - 3465 - ], - "sum": [ - 3469 - ], - "var_pop": [ - 3473 - ], - "var_samp": [ - 3475 - ], - "variance": [ - 3477 - ], - "__typename": [ - 85 - ] - }, - "matches_arr_rel_insert_input": { - "data": [ - 3446 - ], - "on_conflict": [ - 3453 - ], - "__typename": [ - 85 - ] - }, - "matches_avg_fields": { - "max_players_per_lineup": [ - 41 - ], - "min_players_per_lineup": [ - 41 - ], - "organizer_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "matches_avg_order_by": { - "organizer_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "matches_bool_exp": { - "_and": [ - 3443 - ], - "_not": [ - 3443 - ], - "_or": [ - 3443 - ], - "can_assign_server": [ - 7 - ], - "can_cancel": [ - 7 - ], - "can_check_in": [ - 7 - ], - "can_reassign_winner": [ - 7 - ], - "can_schedule": [ - 7 - ], - "can_start": [ - 7 - ], - "can_stream_live": [ - 7 - ], - "can_stream_tv": [ - 7 - ], - "cancels_at": [ - 5244 - ], - "clutches": [ - 6861 - ], - "clutches_aggregate": [ - 6854 - ], - "connection_link": [ - 87 - ], - "connection_string": [ - 87 - ], - "counts_toward_ranking": [ - 7 - ], - "created_at": [ - 5244 - ], - "current_match_map_id": [ - 6674 - ], - "demos": [ - 3140 - ], - "demos_aggregate": [ - 3130 - ], - "draft_games": [ - 610 - ], - "draft_games_aggregate": [ - 601 - ], - "e_match_status": [ - 1202 - ], - "e_region": [ - 4738 - ], - "effective_at": [ - 5244 - ], - "elo_changes": [ - 7068 - ], - "elo_changes_aggregate": [ - 7051 - ], - "ended_at": [ - 5244 - ], - "external_id": [ - 87 - ], - "id": [ - 6674 - ], - "invite_code": [ - 87 - ], - "is_captain": [ - 7 - ], - "is_coach": [ - 7 - ], - "is_friend_in_match_lineup": [ - 7 - ], - "is_in_lineup": [ - 7 - ], - "is_match_server_available": [ - 7 - ], - "is_organizer": [ - 7 - ], - "is_server_online": [ - 7 - ], - "is_tournament_match": [ - 7 - ], - "label": [ - 87 - ], - "lineup_1": [ - 3095 - ], - "lineup_1_id": [ - 6674 - ], - "lineup_2": [ - 3095 - ], - "lineup_2_id": [ - 6674 - ], - "lineup_counts": [ - 2438 - ], - "map_veto_picking_lineup_id": [ - 6674 - ], - "map_veto_picks": [ - 3229 - ], - "map_veto_picks_aggregate": [ - 3222 - ], - "map_veto_type": [ - 87 - ], - "match_maps": [ - 3257 - ], - "match_maps_aggregate": [ - 3250 - ], - "match_options_id": [ - 6674 - ], - "max_players_per_lineup": [ - 42 - ], - "min_players_per_lineup": [ - 42 - ], - "opening_duels": [ - 6989 - ], - "opening_duels_aggregate": [ - 6982 - ], - "options": [ - 3301 - ], - "organizer": [ - 4610 - ], - "organizer_steam_id": [ - 314 - ], - "password": [ - 87 - ], - "player_assists": [ - 3797 - ], - "player_assists_aggregate": [ - 3788 - ], - "player_damages": [ - 3858 - ], - "player_damages_aggregate": [ - 3851 - ], - "player_flashes": [ - 3969 - ], - "player_flashes_aggregate": [ - 3960 - ], - "player_kills": [ - 4014 - ], - "player_kills_aggregate": [ - 4005 - ], - "player_objectives": [ - 4213 - ], - "player_objectives_aggregate": [ - 4206 - ], - "player_unused_utilities": [ - 4500 - ], - "player_unused_utilities_aggregate": [ - 4493 - ], - "player_utility": [ - 4541 - ], - "player_utility_aggregate": [ - 4534 - ], - "region": [ - 87 - ], - "region_veto_picking_lineup_id": [ - 6674 - ], - "region_veto_picks": [ - 3345 - ], - "region_veto_picks_aggregate": [ - 3338 - ], - "requested_organizer": [ - 7 - ], - "scheduled_at": [ - 5244 - ], - "server": [ - 4773 - ], - "server_error": [ - 87 - ], - "server_id": [ - 6674 - ], - "server_plugin_runtime": [ - 87 - ], - "server_region": [ - 87 - ], - "server_type": [ - 87 - ], - "share_code": [ - 87 - ], - "source": [ - 87 - ], - "started_at": [ - 5244 - ], - "status": [ - 1205 - ], - "streams": [ - 3376 - ], - "streams_aggregate": [ - 3366 - ], - "teams": [ - 5205 - ], - "tournament_brackets": [ - 5298 - ], - "tournament_brackets_aggregate": [ - 5289 - ], - "tv_connection_string": [ - 87 - ], - "veto_pick_expires_at": [ - 5244 - ], - "winner": [ - 3095 - ], - "winning_lineup_id": [ - 6674 - ], - "__typename": [ - 85 - ] - }, - "matches_constraint": {}, - "matches_inc_input": { - "organizer_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "matches_insert_input": { - "cancels_at": [ - 5243 - ], - "clutches": [ - 6858 - ], - "counts_toward_ranking": [ - 6 - ], - "created_at": [ - 5243 - ], - "demos": [ - 3137 - ], - "draft_games": [ - 607 - ], - "e_match_status": [ - 1210 - ], - "e_region": [ - 4744 - ], - "elo_changes": [ - 7065 - ], - "ended_at": [ - 5243 - ], - "external_id": [ - 85 - ], - "id": [ - 6672 - ], - "label": [ - 85 - ], - "lineup_1": [ - 3104 - ], - "lineup_1_id": [ - 6672 - ], - "lineup_2": [ - 3104 - ], - "lineup_2_id": [ - 6672 - ], - "map_veto_picks": [ - 3228 - ], - "match_maps": [ - 3254 - ], - "match_options_id": [ - 6672 - ], - "opening_duels": [ - 6986 - ], - "options": [ - 3310 - ], - "organizer": [ - 4617 - ], - "organizer_steam_id": [ - 312 - ], - "password": [ - 85 - ], - "player_assists": [ - 3794 - ], - "player_damages": [ - 3855 - ], - "player_flashes": [ - 3966 - ], - "player_kills": [ - 4011 - ], - "player_objectives": [ - 4210 - ], - "player_unused_utilities": [ - 4497 - ], - "player_utility": [ - 4538 - ], - "region": [ - 85 - ], - "region_veto_picks": [ - 3344 - ], - "scheduled_at": [ - 5243 - ], - "server": [ - 4785 - ], - "server_error": [ - 85 - ], - "server_id": [ - 6672 - ], - "share_code": [ - 85 - ], - "source": [ - 85 - ], - "started_at": [ - 5243 - ], - "status": [ - 1204 - ], - "streams": [ - 3373 - ], - "tournament_brackets": [ - 5295 - ], - "veto_pick_expires_at": [ - 5243 - ], - "winner": [ - 3104 - ], - "winning_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "matches_max_fields": { - "cancels_at": [ - 5243 - ], - "connection_link": [ - 85 - ], - "connection_string": [ - 85 - ], - "created_at": [ - 5243 - ], - "current_match_map_id": [ - 6672 - ], - "effective_at": [ - 5243 - ], - "ended_at": [ - 5243 - ], - "external_id": [ - 85 - ], - "id": [ - 6672 - ], - "invite_code": [ - 85 - ], - "label": [ - 85 - ], - "lineup_1_id": [ - 6672 - ], - "lineup_2_id": [ - 6672 - ], - "map_veto_picking_lineup_id": [ - 6672 - ], - "map_veto_type": [ - 85 - ], - "match_options_id": [ - 6672 - ], - "max_players_per_lineup": [ - 41 - ], - "min_players_per_lineup": [ - 41 - ], - "organizer_steam_id": [ - 312 - ], - "password": [ - 85 - ], - "region": [ - 85 - ], - "region_veto_picking_lineup_id": [ - 6672 - ], - "scheduled_at": [ - 5243 - ], - "server_error": [ - 85 - ], - "server_id": [ - 6672 - ], - "server_plugin_runtime": [ - 85 - ], - "server_region": [ - 85 - ], - "server_type": [ - 85 - ], - "share_code": [ - 85 - ], - "source": [ - 85 - ], - "started_at": [ - 5243 - ], - "tv_connection_string": [ - 85 - ], - "veto_pick_expires_at": [ - 5243 - ], - "winning_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "matches_max_order_by": { - "cancels_at": [ - 3648 - ], - "created_at": [ - 3648 - ], - "effective_at": [ - 3648 - ], - "ended_at": [ - 3648 - ], - "external_id": [ - 3648 - ], - "id": [ - 3648 - ], - "label": [ - 3648 - ], - "lineup_1_id": [ - 3648 - ], - "lineup_2_id": [ - 3648 - ], - "match_options_id": [ - 3648 - ], - "organizer_steam_id": [ - 3648 - ], - "password": [ - 3648 - ], - "region": [ - 3648 - ], - "scheduled_at": [ - 3648 - ], - "server_error": [ - 3648 - ], - "server_id": [ - 3648 - ], - "share_code": [ - 3648 - ], - "source": [ - 3648 - ], - "started_at": [ - 3648 - ], - "veto_pick_expires_at": [ - 3648 - ], - "winning_lineup_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "matches_min_fields": { - "cancels_at": [ - 5243 - ], - "connection_link": [ - 85 - ], - "connection_string": [ - 85 - ], - "created_at": [ - 5243 - ], - "current_match_map_id": [ - 6672 - ], - "effective_at": [ - 5243 - ], - "ended_at": [ - 5243 - ], - "external_id": [ - 85 - ], - "id": [ - 6672 - ], - "invite_code": [ - 85 - ], - "label": [ - 85 - ], - "lineup_1_id": [ - 6672 - ], - "lineup_2_id": [ - 6672 - ], - "map_veto_picking_lineup_id": [ - 6672 - ], - "map_veto_type": [ - 85 - ], - "match_options_id": [ - 6672 - ], - "max_players_per_lineup": [ - 41 - ], - "min_players_per_lineup": [ - 41 - ], - "organizer_steam_id": [ - 312 - ], - "password": [ - 85 - ], - "region": [ - 85 - ], - "region_veto_picking_lineup_id": [ - 6672 - ], - "scheduled_at": [ - 5243 - ], - "server_error": [ - 85 - ], - "server_id": [ - 6672 - ], - "server_plugin_runtime": [ - 85 - ], - "server_region": [ - 85 - ], - "server_type": [ - 85 - ], - "share_code": [ - 85 - ], - "source": [ - 85 - ], - "started_at": [ - 5243 - ], - "tv_connection_string": [ - 85 - ], - "veto_pick_expires_at": [ - 5243 - ], - "winning_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "matches_min_order_by": { - "cancels_at": [ - 3648 - ], - "created_at": [ - 3648 - ], - "effective_at": [ - 3648 - ], - "ended_at": [ - 3648 - ], - "external_id": [ - 3648 - ], - "id": [ - 3648 - ], - "label": [ - 3648 - ], - "lineup_1_id": [ - 3648 - ], - "lineup_2_id": [ - 3648 - ], - "match_options_id": [ - 3648 - ], - "organizer_steam_id": [ - 3648 - ], - "password": [ - 3648 - ], - "region": [ - 3648 - ], - "scheduled_at": [ - 3648 - ], - "server_error": [ - 3648 - ], - "server_id": [ - 3648 - ], - "share_code": [ - 3648 - ], - "source": [ - 3648 - ], - "started_at": [ - 3648 - ], - "veto_pick_expires_at": [ - 3648 - ], - "winning_lineup_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "matches_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 3432 - ], - "__typename": [ - 85 - ] - }, - "matches_obj_rel_insert_input": { - "data": [ - 3446 - ], - "on_conflict": [ - 3453 - ], - "__typename": [ - 85 - ] - }, - "matches_on_conflict": { - "constraint": [ - 3444 - ], - "update_columns": [ - 3470 - ], - "where": [ - 3443 - ], - "__typename": [ - 85 - ] - }, - "matches_order_by": { - "can_assign_server": [ - 3648 - ], - "can_cancel": [ - 3648 - ], - "can_check_in": [ - 3648 - ], - "can_reassign_winner": [ - 3648 - ], - "can_schedule": [ - 3648 - ], - "can_start": [ - 3648 - ], - "can_stream_live": [ - 3648 - ], - "can_stream_tv": [ - 3648 - ], - "cancels_at": [ - 3648 - ], - "clutches_aggregate": [ - 6857 - ], - "connection_link": [ - 3648 - ], - "connection_string": [ - 3648 - ], - "counts_toward_ranking": [ - 3648 - ], - "created_at": [ - 3648 - ], - "current_match_map_id": [ - 3648 - ], - "demos_aggregate": [ - 3135 - ], - "draft_games_aggregate": [ - 606 - ], - "e_match_status": [ - 1212 - ], - "e_region": [ - 4746 - ], - "effective_at": [ - 3648 - ], - "elo_changes_aggregate": [ - 7064 - ], - "ended_at": [ - 3648 - ], - "external_id": [ - 3648 - ], - "id": [ - 3648 - ], - "invite_code": [ - 3648 - ], - "is_captain": [ - 3648 - ], - "is_coach": [ - 3648 - ], - "is_friend_in_match_lineup": [ - 3648 - ], - "is_in_lineup": [ - 3648 - ], - "is_match_server_available": [ - 3648 - ], - "is_organizer": [ - 3648 - ], - "is_server_online": [ - 3648 - ], - "is_tournament_match": [ - 3648 - ], - "label": [ - 3648 - ], - "lineup_1": [ - 3106 - ], - "lineup_1_id": [ - 3648 - ], - "lineup_2": [ - 3106 - ], - "lineup_2_id": [ - 3648 - ], - "lineup_counts": [ - 3648 - ], - "map_veto_picking_lineup_id": [ - 3648 - ], - "map_veto_picks_aggregate": [ - 3227 - ], - "map_veto_type": [ - 3648 - ], - "match_maps_aggregate": [ - 3253 - ], - "match_options_id": [ - 3648 - ], - "max_players_per_lineup": [ - 3648 - ], - "min_players_per_lineup": [ - 3648 - ], - "opening_duels_aggregate": [ - 6985 - ], - "options": [ - 3312 - ], - "organizer": [ - 4619 - ], - "organizer_steam_id": [ - 3648 - ], - "password": [ - 3648 - ], - "player_assists_aggregate": [ - 3793 - ], - "player_damages_aggregate": [ - 3854 - ], - "player_flashes_aggregate": [ - 3965 - ], - "player_kills_aggregate": [ - 4010 - ], - "player_objectives_aggregate": [ - 4209 - ], - "player_unused_utilities_aggregate": [ - 4496 - ], - "player_utility_aggregate": [ - 4537 - ], - "region": [ - 3648 - ], - "region_veto_picking_lineup_id": [ - 3648 - ], - "region_veto_picks_aggregate": [ - 3343 - ], - "requested_organizer": [ - 3648 - ], - "scheduled_at": [ - 3648 - ], - "server": [ - 4787 - ], - "server_error": [ - 3648 - ], - "server_id": [ - 3648 - ], - "server_plugin_runtime": [ - 3648 - ], - "server_region": [ - 3648 - ], - "server_type": [ - 3648 - ], - "share_code": [ - 3648 - ], - "source": [ - 3648 - ], - "started_at": [ - 3648 - ], - "status": [ - 3648 - ], - "streams_aggregate": [ - 3371 - ], - "teams_aggregate": [ - 5201 - ], - "tournament_brackets_aggregate": [ - 5294 - ], - "tv_connection_string": [ - 3648 - ], - "veto_pick_expires_at": [ - 3648 - ], - "winner": [ - 3106 - ], - "winning_lineup_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "matches_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "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": [ - 5243 - ], - "counts_toward_ranking": [ - 6 - ], - "created_at": [ - 5243 - ], - "ended_at": [ - 5243 - ], - "external_id": [ - 85 - ], - "id": [ - 6672 - ], - "label": [ - 85 - ], - "lineup_1_id": [ - 6672 - ], - "lineup_2_id": [ - 6672 - ], - "match_options_id": [ - 6672 - ], - "organizer_steam_id": [ - 312 - ], - "password": [ - 85 - ], - "region": [ - 85 - ], - "scheduled_at": [ - 5243 - ], - "server_error": [ - 85 - ], - "server_id": [ - 6672 - ], - "share_code": [ - 85 - ], - "source": [ - 85 - ], - "started_at": [ - 5243 - ], - "status": [ - 1204 - ], - "veto_pick_expires_at": [ - 5243 - ], - "winning_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "matches_stddev_fields": { - "max_players_per_lineup": [ - 41 - ], - "min_players_per_lineup": [ - 41 - ], - "organizer_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "matches_stddev_order_by": { - "organizer_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "matches_stddev_pop_fields": { - "max_players_per_lineup": [ - 41 - ], - "min_players_per_lineup": [ - 41 - ], - "organizer_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "matches_stddev_pop_order_by": { - "organizer_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "matches_stddev_samp_fields": { - "max_players_per_lineup": [ - 41 - ], - "min_players_per_lineup": [ - 41 - ], - "organizer_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "matches_stddev_samp_order_by": { - "organizer_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "matches_stream_cursor_input": { - "initial_value": [ - 3467 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "matches_stream_cursor_value_input": { - "cancels_at": [ - 5243 - ], - "counts_toward_ranking": [ - 6 - ], - "created_at": [ - 5243 - ], - "effective_at": [ - 5243 - ], - "ended_at": [ - 5243 - ], - "external_id": [ - 85 - ], - "id": [ - 6672 - ], - "label": [ - 85 - ], - "lineup_1_id": [ - 6672 - ], - "lineup_2_id": [ - 6672 - ], - "match_options_id": [ - 6672 - ], - "organizer_steam_id": [ - 312 - ], - "password": [ - 85 - ], - "region": [ - 85 - ], - "scheduled_at": [ - 5243 - ], - "server_error": [ - 85 - ], - "server_id": [ - 6672 - ], - "share_code": [ - 85 - ], - "source": [ - 85 - ], - "started_at": [ - 5243 - ], - "status": [ - 1204 - ], - "veto_pick_expires_at": [ - 5243 - ], - "winning_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "matches_sum_fields": { - "max_players_per_lineup": [ - 41 - ], - "min_players_per_lineup": [ - 41 - ], - "organizer_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "matches_sum_order_by": { - "organizer_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "matches_update_column": {}, - "matches_updates": { - "_inc": [ - 3445 - ], - "_set": [ - 3459 - ], - "where": [ - 3443 - ], - "__typename": [ - 85 - ] - }, - "matches_var_pop_fields": { - "max_players_per_lineup": [ - 41 - ], - "min_players_per_lineup": [ - 41 - ], - "organizer_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "matches_var_pop_order_by": { - "organizer_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "matches_var_samp_fields": { - "max_players_per_lineup": [ - 41 - ], - "min_players_per_lineup": [ - 41 - ], - "organizer_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "matches_var_samp_order_by": { - "organizer_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "matches_variance_fields": { - "max_players_per_lineup": [ - 41 - ], - "min_players_per_lineup": [ - 41 - ], - "organizer_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "matches_variance_order_by": { - "organizer_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "migration_hashes_hashes": { - "hash": [ - 85 - ], - "name": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "migration_hashes_hashes_aggregate": { - "aggregate": [ - 3480 - ], - "nodes": [ - 3478 - ], - "__typename": [ - 85 - ] - }, - "migration_hashes_hashes_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 3490, - "[migration_hashes_hashes_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 3484 - ], - "min": [ - 3485 - ], - "__typename": [ - 85 - ] - }, - "migration_hashes_hashes_bool_exp": { - "_and": [ - 3481 - ], - "_not": [ - 3481 - ], - "_or": [ - 3481 - ], - "hash": [ - 87 - ], - "name": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "migration_hashes_hashes_constraint": {}, - "migration_hashes_hashes_insert_input": { - "hash": [ - 85 - ], - "name": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "migration_hashes_hashes_max_fields": { - "hash": [ - 85 - ], - "name": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "migration_hashes_hashes_min_fields": { - "hash": [ - 85 - ], - "name": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "migration_hashes_hashes_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 3478 - ], - "__typename": [ - 85 - ] - }, - "migration_hashes_hashes_on_conflict": { - "constraint": [ - 3482 - ], - "update_columns": [ - 3494 - ], - "where": [ - 3481 - ], - "__typename": [ - 85 - ] - }, - "migration_hashes_hashes_order_by": { - "hash": [ - 3648 - ], - "name": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "migration_hashes_hashes_pk_columns_input": { - "name": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "migration_hashes_hashes_select_column": {}, - "migration_hashes_hashes_set_input": { - "hash": [ - 85 - ], - "name": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "migration_hashes_hashes_stream_cursor_input": { - "initial_value": [ - 3493 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "migration_hashes_hashes_stream_cursor_value_input": { - "hash": [ - 85 - ], - "name": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "migration_hashes_hashes_update_column": {}, - "migration_hashes_hashes_updates": { - "_set": [ - 3491 - ], - "where": [ - 3481 - ], - "__typename": [ - 85 - ] - }, - "my_friends": { - "avatar_url": [ - 85 - ], - "country": [ - 85 - ], - "created_at": [ - 5243 - ], - "custom_avatar_url": [ - 85 - ], - "days_since_last_ban": [ - 41 - ], - "discord_id": [ - 85 - ], - "elo": [ - 2439, - { - "path": [ - 85 - ] - } - ], - "faceit_elo": [ - 41 - ], - "faceit_nickname": [ - 85 - ], - "faceit_player_id": [ - 85 - ], - "faceit_skill_level": [ - 41 - ], - "faceit_updated_at": [ - 5243 - ], - "faceit_url": [ - 85 - ], - "friend_steam_id": [ - 312 - ], - "game_ban_count": [ - 41 - ], - "invited_by_steam_id": [ - 312 - ], - "language": [ - 85 - ], - "last_presence_state": [ - 2439, - { - "path": [ - 85 - ] - } - ], - "last_read_news_at": [ - 5243 - ], - "last_sign_in_at": [ - 5243 - ], - "name": [ - 85 - ], - "name_registered": [ - 6 - ], - "notification_timezone": [ - 85 - ], - "player": [ - 4606 - ], - "premier_rank": [ - 41 - ], - "premier_rank_updated_at": [ - 5243 - ], - "presence_updated_at": [ - 5243 - ], - "profile_url": [ - 85 - ], - "quiet_hours_end": [ - 5240 - ], - "quiet_hours_start": [ - 5240 - ], - "role": [ - 85 - ], - "roster_image_url": [ - 85 - ], - "show_match_ready_modal": [ - 6 - ], - "status": [ - 85 - ], - "steam_bans_checked_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "vac_ban_count": [ - 41 - ], - "vac_banned": [ - 6 - ], - "__typename": [ - 85 - ] - }, - "my_friends_aggregate": { - "aggregate": [ - 3502 - ], - "nodes": [ - 3496 - ], - "__typename": [ - 85 - ] - }, - "my_friends_aggregate_bool_exp": { - "bool_and": [ - 3499 - ], - "bool_or": [ - 3500 - ], - "count": [ - 3501 - ], - "__typename": [ - 85 - ] - }, - "my_friends_aggregate_bool_exp_bool_and": { - "arguments": [ - 3522 - ], - "distinct": [ - 6 - ], - "filter": [ - 3508 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "my_friends_aggregate_bool_exp_bool_or": { - "arguments": [ - 3523 - ], - "distinct": [ - 6 - ], - "filter": [ - 3508 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "my_friends_aggregate_bool_exp_count": { - "arguments": [ - 3521 - ], - "distinct": [ - 6 - ], - "filter": [ - 3508 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "my_friends_aggregate_fields": { - "avg": [ - 3506 - ], - "count": [ - 41, - { - "columns": [ - 3521, - "[my_friends_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 3514 - ], - "min": [ - 3516 - ], - "stddev": [ - 3525 - ], - "stddev_pop": [ - 3527 - ], - "stddev_samp": [ - 3529 - ], - "sum": [ - 3533 - ], - "var_pop": [ - 3536 - ], - "var_samp": [ - 3538 - ], - "variance": [ - 3540 - ], - "__typename": [ - 85 - ] - }, - "my_friends_aggregate_order_by": { - "avg": [ - 3507 - ], - "count": [ - 3648 - ], - "max": [ - 3515 - ], - "min": [ - 3517 - ], - "stddev": [ - 3526 - ], - "stddev_pop": [ - 3528 - ], - "stddev_samp": [ - 3530 - ], - "sum": [ - 3534 - ], - "var_pop": [ - 3537 - ], - "var_samp": [ - 3539 - ], - "variance": [ - 3541 - ], - "__typename": [ - 85 - ] - }, - "my_friends_append_input": { - "elo": [ - 2439 - ], - "last_presence_state": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "my_friends_arr_rel_insert_input": { - "data": [ - 3513 - ], - "__typename": [ - 85 - ] - }, - "my_friends_avg_fields": { - "days_since_last_ban": [ - 32 - ], - "faceit_elo": [ - 32 - ], - "faceit_skill_level": [ - 32 - ], - "friend_steam_id": [ - 32 - ], - "game_ban_count": [ - 32 - ], - "invited_by_steam_id": [ - 32 - ], - "premier_rank": [ - 32 - ], - "steam_id": [ - 32 - ], - "vac_ban_count": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "my_friends_avg_order_by": { - "days_since_last_ban": [ - 3648 - ], - "faceit_elo": [ - 3648 - ], - "faceit_skill_level": [ - 3648 - ], - "friend_steam_id": [ - 3648 - ], - "game_ban_count": [ - 3648 - ], - "invited_by_steam_id": [ - 3648 - ], - "premier_rank": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "vac_ban_count": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "my_friends_bool_exp": { - "_and": [ - 3508 - ], - "_not": [ - 3508 - ], - "_or": [ - 3508 - ], - "avatar_url": [ - 87 - ], - "country": [ - 87 - ], - "created_at": [ - 5244 - ], - "custom_avatar_url": [ - 87 - ], - "days_since_last_ban": [ - 42 - ], - "discord_id": [ - 87 - ], - "elo": [ - 2441 - ], - "faceit_elo": [ - 42 - ], - "faceit_nickname": [ - 87 - ], - "faceit_player_id": [ - 87 - ], - "faceit_skill_level": [ - 42 - ], - "faceit_updated_at": [ - 5244 - ], - "faceit_url": [ - 87 - ], - "friend_steam_id": [ - 314 - ], - "game_ban_count": [ - 42 - ], - "invited_by_steam_id": [ - 314 - ], - "language": [ - 87 - ], - "last_presence_state": [ - 2441 - ], - "last_read_news_at": [ - 5244 - ], - "last_sign_in_at": [ - 5244 - ], - "name": [ - 87 - ], - "name_registered": [ - 7 - ], - "notification_timezone": [ - 87 - ], - "player": [ - 4610 - ], - "premier_rank": [ - 42 - ], - "premier_rank_updated_at": [ - 5244 - ], - "presence_updated_at": [ - 5244 - ], - "profile_url": [ - 87 - ], - "quiet_hours_end": [ - 5241 - ], - "quiet_hours_start": [ - 5241 - ], - "role": [ - 87 - ], - "roster_image_url": [ - 87 - ], - "show_match_ready_modal": [ - 7 - ], - "status": [ - 87 - ], - "steam_bans_checked_at": [ - 5244 - ], - "steam_id": [ - 314 - ], - "vac_ban_count": [ - 42 - ], - "vac_banned": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "my_friends_delete_at_path_input": { - "elo": [ - 85 - ], - "last_presence_state": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "my_friends_delete_elem_input": { - "elo": [ - 41 - ], - "last_presence_state": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "my_friends_delete_key_input": { - "elo": [ - 85 - ], - "last_presence_state": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "my_friends_inc_input": { - "days_since_last_ban": [ - 41 - ], - "faceit_elo": [ - 41 - ], - "faceit_skill_level": [ - 41 - ], - "friend_steam_id": [ - 312 - ], - "game_ban_count": [ - 41 - ], - "invited_by_steam_id": [ - 312 - ], - "premier_rank": [ - 41 - ], - "steam_id": [ - 312 - ], - "vac_ban_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "my_friends_insert_input": { - "avatar_url": [ - 85 - ], - "country": [ - 85 - ], - "created_at": [ - 5243 - ], - "custom_avatar_url": [ - 85 - ], - "days_since_last_ban": [ - 41 - ], - "discord_id": [ - 85 - ], - "elo": [ - 2439 - ], - "faceit_elo": [ - 41 - ], - "faceit_nickname": [ - 85 - ], - "faceit_player_id": [ - 85 - ], - "faceit_skill_level": [ - 41 - ], - "faceit_updated_at": [ - 5243 - ], - "faceit_url": [ - 85 - ], - "friend_steam_id": [ - 312 - ], - "game_ban_count": [ - 41 - ], - "invited_by_steam_id": [ - 312 - ], - "language": [ - 85 - ], - "last_presence_state": [ - 2439 - ], - "last_read_news_at": [ - 5243 - ], - "last_sign_in_at": [ - 5243 - ], - "name": [ - 85 - ], - "name_registered": [ - 6 - ], - "notification_timezone": [ - 85 - ], - "player": [ - 4617 - ], - "premier_rank": [ - 41 - ], - "premier_rank_updated_at": [ - 5243 - ], - "presence_updated_at": [ - 5243 - ], - "profile_url": [ - 85 - ], - "quiet_hours_end": [ - 5240 - ], - "quiet_hours_start": [ - 5240 - ], - "role": [ - 85 - ], - "roster_image_url": [ - 85 - ], - "show_match_ready_modal": [ - 6 - ], - "status": [ - 85 - ], - "steam_bans_checked_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "vac_ban_count": [ - 41 - ], - "vac_banned": [ - 6 - ], - "__typename": [ - 85 - ] - }, - "my_friends_max_fields": { - "avatar_url": [ - 85 - ], - "country": [ - 85 - ], - "created_at": [ - 5243 - ], - "custom_avatar_url": [ - 85 - ], - "days_since_last_ban": [ - 41 - ], - "discord_id": [ - 85 - ], - "faceit_elo": [ - 41 - ], - "faceit_nickname": [ - 85 - ], - "faceit_player_id": [ - 85 - ], - "faceit_skill_level": [ - 41 - ], - "faceit_updated_at": [ - 5243 - ], - "faceit_url": [ - 85 - ], - "friend_steam_id": [ - 312 - ], - "game_ban_count": [ - 41 - ], - "invited_by_steam_id": [ - 312 - ], - "language": [ - 85 - ], - "last_read_news_at": [ - 5243 - ], - "last_sign_in_at": [ - 5243 - ], - "name": [ - 85 - ], - "notification_timezone": [ - 85 - ], - "premier_rank": [ - 41 - ], - "premier_rank_updated_at": [ - 5243 - ], - "presence_updated_at": [ - 5243 - ], - "profile_url": [ - 85 - ], - "role": [ - 85 - ], - "roster_image_url": [ - 85 - ], - "status": [ - 85 - ], - "steam_bans_checked_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "vac_ban_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "my_friends_max_order_by": { - "avatar_url": [ - 3648 - ], - "country": [ - 3648 - ], - "created_at": [ - 3648 - ], - "custom_avatar_url": [ - 3648 - ], - "days_since_last_ban": [ - 3648 - ], - "discord_id": [ - 3648 - ], - "faceit_elo": [ - 3648 - ], - "faceit_nickname": [ - 3648 - ], - "faceit_player_id": [ - 3648 - ], - "faceit_skill_level": [ - 3648 - ], - "faceit_updated_at": [ - 3648 - ], - "faceit_url": [ - 3648 - ], - "friend_steam_id": [ - 3648 - ], - "game_ban_count": [ - 3648 - ], - "invited_by_steam_id": [ - 3648 - ], - "language": [ - 3648 - ], - "last_read_news_at": [ - 3648 - ], - "last_sign_in_at": [ - 3648 - ], - "name": [ - 3648 - ], - "notification_timezone": [ - 3648 - ], - "premier_rank": [ - 3648 - ], - "premier_rank_updated_at": [ - 3648 - ], - "presence_updated_at": [ - 3648 - ], - "profile_url": [ - 3648 - ], - "role": [ - 3648 - ], - "roster_image_url": [ - 3648 - ], - "status": [ - 3648 - ], - "steam_bans_checked_at": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "vac_ban_count": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "my_friends_min_fields": { - "avatar_url": [ - 85 - ], - "country": [ - 85 - ], - "created_at": [ - 5243 - ], - "custom_avatar_url": [ - 85 - ], - "days_since_last_ban": [ - 41 - ], - "discord_id": [ - 85 - ], - "faceit_elo": [ - 41 - ], - "faceit_nickname": [ - 85 - ], - "faceit_player_id": [ - 85 - ], - "faceit_skill_level": [ - 41 - ], - "faceit_updated_at": [ - 5243 - ], - "faceit_url": [ - 85 - ], - "friend_steam_id": [ - 312 - ], - "game_ban_count": [ - 41 - ], - "invited_by_steam_id": [ - 312 - ], - "language": [ - 85 - ], - "last_read_news_at": [ - 5243 - ], - "last_sign_in_at": [ - 5243 - ], - "name": [ - 85 - ], - "notification_timezone": [ - 85 - ], - "premier_rank": [ - 41 - ], - "premier_rank_updated_at": [ - 5243 - ], - "presence_updated_at": [ - 5243 - ], - "profile_url": [ - 85 - ], - "role": [ - 85 - ], - "roster_image_url": [ - 85 - ], - "status": [ - 85 - ], - "steam_bans_checked_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "vac_ban_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "my_friends_min_order_by": { - "avatar_url": [ - 3648 - ], - "country": [ - 3648 - ], - "created_at": [ - 3648 - ], - "custom_avatar_url": [ - 3648 - ], - "days_since_last_ban": [ - 3648 - ], - "discord_id": [ - 3648 - ], - "faceit_elo": [ - 3648 - ], - "faceit_nickname": [ - 3648 - ], - "faceit_player_id": [ - 3648 - ], - "faceit_skill_level": [ - 3648 - ], - "faceit_updated_at": [ - 3648 - ], - "faceit_url": [ - 3648 - ], - "friend_steam_id": [ - 3648 - ], - "game_ban_count": [ - 3648 - ], - "invited_by_steam_id": [ - 3648 - ], - "language": [ - 3648 - ], - "last_read_news_at": [ - 3648 - ], - "last_sign_in_at": [ - 3648 - ], - "name": [ - 3648 - ], - "notification_timezone": [ - 3648 - ], - "premier_rank": [ - 3648 - ], - "premier_rank_updated_at": [ - 3648 - ], - "presence_updated_at": [ - 3648 - ], - "profile_url": [ - 3648 - ], - "role": [ - 3648 - ], - "roster_image_url": [ - 3648 - ], - "status": [ - 3648 - ], - "steam_bans_checked_at": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "vac_ban_count": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "my_friends_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 3496 - ], - "__typename": [ - 85 - ] - }, - "my_friends_order_by": { - "avatar_url": [ - 3648 - ], - "country": [ - 3648 - ], - "created_at": [ - 3648 - ], - "custom_avatar_url": [ - 3648 - ], - "days_since_last_ban": [ - 3648 - ], - "discord_id": [ - 3648 - ], - "elo": [ - 3648 - ], - "faceit_elo": [ - 3648 - ], - "faceit_nickname": [ - 3648 - ], - "faceit_player_id": [ - 3648 - ], - "faceit_skill_level": [ - 3648 - ], - "faceit_updated_at": [ - 3648 - ], - "faceit_url": [ - 3648 - ], - "friend_steam_id": [ - 3648 - ], - "game_ban_count": [ - 3648 - ], - "invited_by_steam_id": [ - 3648 - ], - "language": [ - 3648 - ], - "last_presence_state": [ - 3648 - ], - "last_read_news_at": [ - 3648 - ], - "last_sign_in_at": [ - 3648 - ], - "name": [ - 3648 - ], - "name_registered": [ - 3648 - ], - "notification_timezone": [ - 3648 - ], - "player": [ - 4619 - ], - "premier_rank": [ - 3648 - ], - "premier_rank_updated_at": [ - 3648 - ], - "presence_updated_at": [ - 3648 - ], - "profile_url": [ - 3648 - ], - "quiet_hours_end": [ - 3648 - ], - "quiet_hours_start": [ - 3648 - ], - "role": [ - 3648 - ], - "roster_image_url": [ - 3648 - ], - "show_match_ready_modal": [ - 3648 - ], - "status": [ - 3648 - ], - "steam_bans_checked_at": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "vac_ban_count": [ - 3648 - ], - "vac_banned": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "my_friends_prepend_input": { - "elo": [ - 2439 - ], - "last_presence_state": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "my_friends_select_column": {}, - "my_friends_select_column_my_friends_aggregate_bool_exp_bool_and_arguments_columns": {}, - "my_friends_select_column_my_friends_aggregate_bool_exp_bool_or_arguments_columns": {}, - "my_friends_set_input": { - "avatar_url": [ - 85 - ], - "country": [ - 85 - ], - "created_at": [ - 5243 - ], - "custom_avatar_url": [ - 85 - ], - "days_since_last_ban": [ - 41 - ], - "discord_id": [ - 85 - ], - "elo": [ - 2439 - ], - "faceit_elo": [ - 41 - ], - "faceit_nickname": [ - 85 - ], - "faceit_player_id": [ - 85 - ], - "faceit_skill_level": [ - 41 - ], - "faceit_updated_at": [ - 5243 - ], - "faceit_url": [ - 85 - ], - "friend_steam_id": [ - 312 - ], - "game_ban_count": [ - 41 - ], - "invited_by_steam_id": [ - 312 - ], - "language": [ - 85 - ], - "last_presence_state": [ - 2439 - ], - "last_read_news_at": [ - 5243 - ], - "last_sign_in_at": [ - 5243 - ], - "name": [ - 85 - ], - "name_registered": [ - 6 - ], - "notification_timezone": [ - 85 - ], - "premier_rank": [ - 41 - ], - "premier_rank_updated_at": [ - 5243 - ], - "presence_updated_at": [ - 5243 - ], - "profile_url": [ - 85 - ], - "quiet_hours_end": [ - 5240 - ], - "quiet_hours_start": [ - 5240 - ], - "role": [ - 85 - ], - "roster_image_url": [ - 85 - ], - "show_match_ready_modal": [ - 6 - ], - "status": [ - 85 - ], - "steam_bans_checked_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "vac_ban_count": [ - 41 - ], - "vac_banned": [ - 6 - ], - "__typename": [ - 85 - ] - }, - "my_friends_stddev_fields": { - "days_since_last_ban": [ - 32 - ], - "faceit_elo": [ - 32 - ], - "faceit_skill_level": [ - 32 - ], - "friend_steam_id": [ - 32 - ], - "game_ban_count": [ - 32 - ], - "invited_by_steam_id": [ - 32 - ], - "premier_rank": [ - 32 - ], - "steam_id": [ - 32 - ], - "vac_ban_count": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "my_friends_stddev_order_by": { - "days_since_last_ban": [ - 3648 - ], - "faceit_elo": [ - 3648 - ], - "faceit_skill_level": [ - 3648 - ], - "friend_steam_id": [ - 3648 - ], - "game_ban_count": [ - 3648 - ], - "invited_by_steam_id": [ - 3648 - ], - "premier_rank": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "vac_ban_count": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "my_friends_stddev_pop_fields": { - "days_since_last_ban": [ - 32 - ], - "faceit_elo": [ - 32 - ], - "faceit_skill_level": [ - 32 - ], - "friend_steam_id": [ - 32 - ], - "game_ban_count": [ - 32 - ], - "invited_by_steam_id": [ - 32 - ], - "premier_rank": [ - 32 - ], - "steam_id": [ - 32 - ], - "vac_ban_count": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "my_friends_stddev_pop_order_by": { - "days_since_last_ban": [ - 3648 - ], - "faceit_elo": [ - 3648 - ], - "faceit_skill_level": [ - 3648 - ], - "friend_steam_id": [ - 3648 - ], - "game_ban_count": [ - 3648 - ], - "invited_by_steam_id": [ - 3648 - ], - "premier_rank": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "vac_ban_count": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "my_friends_stddev_samp_fields": { - "days_since_last_ban": [ - 32 - ], - "faceit_elo": [ - 32 - ], - "faceit_skill_level": [ - 32 - ], - "friend_steam_id": [ - 32 - ], - "game_ban_count": [ - 32 - ], - "invited_by_steam_id": [ - 32 - ], - "premier_rank": [ - 32 - ], - "steam_id": [ - 32 - ], - "vac_ban_count": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "my_friends_stddev_samp_order_by": { - "days_since_last_ban": [ - 3648 - ], - "faceit_elo": [ - 3648 - ], - "faceit_skill_level": [ - 3648 - ], - "friend_steam_id": [ - 3648 - ], - "game_ban_count": [ - 3648 - ], - "invited_by_steam_id": [ - 3648 - ], - "premier_rank": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "vac_ban_count": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "my_friends_stream_cursor_input": { - "initial_value": [ - 3532 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "my_friends_stream_cursor_value_input": { - "avatar_url": [ - 85 - ], - "country": [ - 85 - ], - "created_at": [ - 5243 - ], - "custom_avatar_url": [ - 85 - ], - "days_since_last_ban": [ - 41 - ], - "discord_id": [ - 85 - ], - "elo": [ - 2439 - ], - "faceit_elo": [ - 41 - ], - "faceit_nickname": [ - 85 - ], - "faceit_player_id": [ - 85 - ], - "faceit_skill_level": [ - 41 - ], - "faceit_updated_at": [ - 5243 - ], - "faceit_url": [ - 85 - ], - "friend_steam_id": [ - 312 - ], - "game_ban_count": [ - 41 - ], - "invited_by_steam_id": [ - 312 - ], - "language": [ - 85 - ], - "last_presence_state": [ - 2439 - ], - "last_read_news_at": [ - 5243 - ], - "last_sign_in_at": [ - 5243 - ], - "name": [ - 85 - ], - "name_registered": [ - 6 - ], - "notification_timezone": [ - 85 - ], - "premier_rank": [ - 41 - ], - "premier_rank_updated_at": [ - 5243 - ], - "presence_updated_at": [ - 5243 - ], - "profile_url": [ - 85 - ], - "quiet_hours_end": [ - 5240 - ], - "quiet_hours_start": [ - 5240 - ], - "role": [ - 85 - ], - "roster_image_url": [ - 85 - ], - "show_match_ready_modal": [ - 6 - ], - "status": [ - 85 - ], - "steam_bans_checked_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "vac_ban_count": [ - 41 - ], - "vac_banned": [ - 6 - ], - "__typename": [ - 85 - ] - }, - "my_friends_sum_fields": { - "days_since_last_ban": [ - 41 - ], - "faceit_elo": [ - 41 - ], - "faceit_skill_level": [ - 41 - ], - "friend_steam_id": [ - 312 - ], - "game_ban_count": [ - 41 - ], - "invited_by_steam_id": [ - 312 - ], - "premier_rank": [ - 41 - ], - "steam_id": [ - 312 - ], - "vac_ban_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "my_friends_sum_order_by": { - "days_since_last_ban": [ - 3648 - ], - "faceit_elo": [ - 3648 - ], - "faceit_skill_level": [ - 3648 - ], - "friend_steam_id": [ - 3648 - ], - "game_ban_count": [ - 3648 - ], - "invited_by_steam_id": [ - 3648 - ], - "premier_rank": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "vac_ban_count": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "my_friends_updates": { - "_append": [ - 3504 - ], - "_delete_at_path": [ - 3509 - ], - "_delete_elem": [ - 3510 - ], - "_delete_key": [ - 3511 - ], - "_inc": [ - 3512 - ], - "_prepend": [ - 3520 - ], - "_set": [ - 3524 - ], - "where": [ - 3508 - ], - "__typename": [ - 85 - ] - }, - "my_friends_var_pop_fields": { - "days_since_last_ban": [ - 32 - ], - "faceit_elo": [ - 32 - ], - "faceit_skill_level": [ - 32 - ], - "friend_steam_id": [ - 32 - ], - "game_ban_count": [ - 32 - ], - "invited_by_steam_id": [ - 32 - ], - "premier_rank": [ - 32 - ], - "steam_id": [ - 32 - ], - "vac_ban_count": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "my_friends_var_pop_order_by": { - "days_since_last_ban": [ - 3648 - ], - "faceit_elo": [ - 3648 - ], - "faceit_skill_level": [ - 3648 - ], - "friend_steam_id": [ - 3648 - ], - "game_ban_count": [ - 3648 - ], - "invited_by_steam_id": [ - 3648 - ], - "premier_rank": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "vac_ban_count": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "my_friends_var_samp_fields": { - "days_since_last_ban": [ - 32 - ], - "faceit_elo": [ - 32 - ], - "faceit_skill_level": [ - 32 - ], - "friend_steam_id": [ - 32 - ], - "game_ban_count": [ - 32 - ], - "invited_by_steam_id": [ - 32 - ], - "premier_rank": [ - 32 - ], - "steam_id": [ - 32 - ], - "vac_ban_count": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "my_friends_var_samp_order_by": { - "days_since_last_ban": [ - 3648 - ], - "faceit_elo": [ - 3648 - ], - "faceit_skill_level": [ - 3648 - ], - "friend_steam_id": [ - 3648 - ], - "game_ban_count": [ - 3648 - ], - "invited_by_steam_id": [ - 3648 - ], - "premier_rank": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "vac_ban_count": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "my_friends_variance_fields": { - "days_since_last_ban": [ - 32 - ], - "faceit_elo": [ - 32 - ], - "faceit_skill_level": [ - 32 - ], - "friend_steam_id": [ - 32 - ], - "game_ban_count": [ - 32 - ], - "invited_by_steam_id": [ - 32 - ], - "premier_rank": [ - 32 - ], - "steam_id": [ - 32 - ], - "vac_ban_count": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "my_friends_variance_order_by": { - "days_since_last_ban": [ - 3648 - ], - "faceit_elo": [ - 3648 - ], - "faceit_skill_level": [ - 3648 - ], - "friend_steam_id": [ - 3648 - ], - "game_ban_count": [ - 3648 - ], - "invited_by_steam_id": [ - 3648 - ], - "premier_rank": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "vac_ban_count": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "news_articles": { - "author": [ - 4606 - ], - "author_steam_id": [ - 312 - ], - "content_markdown": [ - 85 - ], - "cover_image_url": [ - 85 - ], - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "published_at": [ - 5243 - ], - "slug": [ - 85 - ], - "status": [ - 85 - ], - "teaser": [ - 85 - ], - "title": [ - 85 - ], - "updated_at": [ - 5243 - ], - "view_count": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "news_articles_aggregate": { - "aggregate": [ - 3544 - ], - "nodes": [ - 3542 - ], - "__typename": [ - 85 - ] - }, - "news_articles_aggregate_fields": { - "avg": [ - 3545 - ], - "count": [ - 41, - { - "columns": [ - 3556, - "[news_articles_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 3550 - ], - "min": [ - 3551 - ], - "stddev": [ - 3558 - ], - "stddev_pop": [ - 3559 - ], - "stddev_samp": [ - 3560 - ], - "sum": [ - 3563 - ], - "var_pop": [ - 3566 - ], - "var_samp": [ - 3567 - ], - "variance": [ - 3568 - ], - "__typename": [ - 85 - ] - }, - "news_articles_avg_fields": { - "author_steam_id": [ - 32 - ], - "view_count": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "news_articles_bool_exp": { - "_and": [ - 3546 - ], - "_not": [ - 3546 - ], - "_or": [ - 3546 - ], - "author": [ - 4610 - ], - "author_steam_id": [ - 314 - ], - "content_markdown": [ - 87 - ], - "cover_image_url": [ - 87 - ], - "created_at": [ - 5244 - ], - "id": [ - 6674 - ], - "published_at": [ - 5244 - ], - "slug": [ - 87 - ], - "status": [ - 87 - ], - "teaser": [ - 87 - ], - "title": [ - 87 - ], - "updated_at": [ - 5244 - ], - "view_count": [ - 314 - ], - "__typename": [ - 85 - ] - }, - "news_articles_constraint": {}, - "news_articles_inc_input": { - "author_steam_id": [ - 312 - ], - "view_count": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "news_articles_insert_input": { - "author": [ - 4617 - ], - "author_steam_id": [ - 312 - ], - "content_markdown": [ - 85 - ], - "cover_image_url": [ - 85 - ], - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "published_at": [ - 5243 - ], - "slug": [ - 85 - ], - "status": [ - 85 - ], - "teaser": [ - 85 - ], - "title": [ - 85 - ], - "updated_at": [ - 5243 - ], - "view_count": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "news_articles_max_fields": { - "author_steam_id": [ - 312 - ], - "content_markdown": [ - 85 - ], - "cover_image_url": [ - 85 - ], - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "published_at": [ - 5243 - ], - "slug": [ - 85 - ], - "status": [ - 85 - ], - "teaser": [ - 85 - ], - "title": [ - 85 - ], - "updated_at": [ - 5243 - ], - "view_count": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "news_articles_min_fields": { - "author_steam_id": [ - 312 - ], - "content_markdown": [ - 85 - ], - "cover_image_url": [ - 85 - ], - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "published_at": [ - 5243 - ], - "slug": [ - 85 - ], - "status": [ - 85 - ], - "teaser": [ - 85 - ], - "title": [ - 85 - ], - "updated_at": [ - 5243 - ], - "view_count": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "news_articles_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 3542 - ], - "__typename": [ - 85 - ] - }, - "news_articles_on_conflict": { - "constraint": [ - 3547 - ], - "update_columns": [ - 3564 - ], - "where": [ - 3546 - ], - "__typename": [ - 85 - ] - }, - "news_articles_order_by": { - "author": [ - 4619 - ], - "author_steam_id": [ - 3648 - ], - "content_markdown": [ - 3648 - ], - "cover_image_url": [ - 3648 - ], - "created_at": [ - 3648 - ], - "id": [ - 3648 - ], - "published_at": [ - 3648 - ], - "slug": [ - 3648 - ], - "status": [ - 3648 - ], - "teaser": [ - 3648 - ], - "title": [ - 3648 - ], - "updated_at": [ - 3648 - ], - "view_count": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "news_articles_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "news_articles_select_column": {}, - "news_articles_set_input": { - "author_steam_id": [ - 312 - ], - "content_markdown": [ - 85 - ], - "cover_image_url": [ - 85 - ], - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "published_at": [ - 5243 - ], - "slug": [ - 85 - ], - "status": [ - 85 - ], - "teaser": [ - 85 - ], - "title": [ - 85 - ], - "updated_at": [ - 5243 - ], - "view_count": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "news_articles_stddev_fields": { - "author_steam_id": [ - 32 - ], - "view_count": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "news_articles_stddev_pop_fields": { - "author_steam_id": [ - 32 - ], - "view_count": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "news_articles_stddev_samp_fields": { - "author_steam_id": [ - 32 - ], - "view_count": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "news_articles_stream_cursor_input": { - "initial_value": [ - 3562 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "news_articles_stream_cursor_value_input": { - "author_steam_id": [ - 312 - ], - "content_markdown": [ - 85 - ], - "cover_image_url": [ - 85 - ], - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "published_at": [ - 5243 - ], - "slug": [ - 85 - ], - "status": [ - 85 - ], - "teaser": [ - 85 - ], - "title": [ - 85 - ], - "updated_at": [ - 5243 - ], - "view_count": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "news_articles_sum_fields": { - "author_steam_id": [ - 312 - ], - "view_count": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "news_articles_update_column": {}, - "news_articles_updates": { - "_inc": [ - 3548 - ], - "_set": [ - 3557 - ], - "where": [ - 3546 - ], - "__typename": [ - 85 - ] - }, - "news_articles_var_pop_fields": { - "author_steam_id": [ - 32 - ], - "view_count": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "news_articles_var_samp_fields": { - "author_steam_id": [ - 32 - ], - "view_count": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "news_articles_variance_fields": { - "author_steam_id": [ - 32 - ], - "view_count": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "notification_preferences": { - "channel": [ - 85 - ], - "enabled": [ - 6 - ], - "key": [ - 85 - ], - "steam_id": [ - 312 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "notification_preferences_aggregate": { - "aggregate": [ - 3571 - ], - "nodes": [ - 3569 - ], - "__typename": [ - 85 - ] - }, - "notification_preferences_aggregate_fields": { - "avg": [ - 3572 - ], - "count": [ - 41, - { - "columns": [ - 3583, - "[notification_preferences_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 3577 - ], - "min": [ - 3578 - ], - "stddev": [ - 3585 - ], - "stddev_pop": [ - 3586 - ], - "stddev_samp": [ - 3587 - ], - "sum": [ - 3590 - ], - "var_pop": [ - 3593 - ], - "var_samp": [ - 3594 - ], - "variance": [ - 3595 - ], - "__typename": [ - 85 - ] - }, - "notification_preferences_avg_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "notification_preferences_bool_exp": { - "_and": [ - 3573 - ], - "_not": [ - 3573 - ], - "_or": [ - 3573 - ], - "channel": [ - 87 - ], - "enabled": [ - 7 - ], - "key": [ - 87 - ], - "steam_id": [ - 314 - ], - "updated_at": [ - 5244 - ], - "__typename": [ - 85 - ] - }, - "notification_preferences_constraint": {}, - "notification_preferences_inc_input": { - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "notification_preferences_insert_input": { - "channel": [ - 85 - ], - "enabled": [ - 6 - ], - "key": [ - 85 - ], - "steam_id": [ - 312 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "notification_preferences_max_fields": { - "channel": [ - 85 - ], - "key": [ - 85 - ], - "steam_id": [ - 312 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "notification_preferences_min_fields": { - "channel": [ - 85 - ], - "key": [ - 85 - ], - "steam_id": [ - 312 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "notification_preferences_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 3569 - ], - "__typename": [ - 85 - ] - }, - "notification_preferences_on_conflict": { - "constraint": [ - 3574 - ], - "update_columns": [ - 3591 - ], - "where": [ - 3573 - ], - "__typename": [ - 85 - ] - }, - "notification_preferences_order_by": { - "channel": [ - 3648 - ], - "enabled": [ - 3648 - ], - "key": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "updated_at": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "notification_preferences_pk_columns_input": { - "channel": [ - 85 - ], - "key": [ - 85 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "notification_preferences_select_column": {}, - "notification_preferences_set_input": { - "channel": [ - 85 - ], - "enabled": [ - 6 - ], - "key": [ - 85 - ], - "steam_id": [ - 312 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "notification_preferences_stddev_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "notification_preferences_stddev_pop_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "notification_preferences_stddev_samp_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "notification_preferences_stream_cursor_input": { - "initial_value": [ - 3589 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "notification_preferences_stream_cursor_value_input": { - "channel": [ - 85 - ], - "enabled": [ - 6 - ], - "key": [ - 85 - ], - "steam_id": [ - 312 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "notification_preferences_sum_fields": { - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "notification_preferences_update_column": {}, - "notification_preferences_updates": { - "_inc": [ - 3575 - ], - "_set": [ - 3584 - ], - "where": [ - 3573 - ], - "__typename": [ - 85 - ] - }, - "notification_preferences_var_pop_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "notification_preferences_var_samp_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "notification_preferences_variance_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "notifications": { - "actions": [ - 2439, - { - "path": [ - 85 - ] - } - ], - "created_at": [ - 5243 - ], - "data": [ - 2439, - { - "path": [ - 85 - ] - } - ], - "deletable": [ - 6 - ], - "deleted_at": [ - 5243 - ], - "entity_id": [ - 85 - ], - "id": [ - 6672 - ], - "in_app": [ - 6 - ], - "is_read": [ - 6 - ], - "message": [ - 85 - ], - "player": [ - 4606 - ], - "role": [ - 1286 - ], - "steam_id": [ - 312 - ], - "title": [ - 85 - ], - "type": [ - 1246 - ], - "__typename": [ - 85 - ] - }, - "notifications_aggregate": { - "aggregate": [ - 3602 - ], - "nodes": [ - 3596 - ], - "__typename": [ - 85 - ] - }, - "notifications_aggregate_bool_exp": { - "bool_and": [ - 3599 - ], - "bool_or": [ - 3600 - ], - "count": [ - 3601 - ], - "__typename": [ - 85 - ] - }, - "notifications_aggregate_bool_exp_bool_and": { - "arguments": [ - 3625 - ], - "distinct": [ - 6 - ], - "filter": [ - 3608 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "notifications_aggregate_bool_exp_bool_or": { - "arguments": [ - 3626 - ], - "distinct": [ - 6 - ], - "filter": [ - 3608 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "notifications_aggregate_bool_exp_count": { - "arguments": [ - 3624 - ], - "distinct": [ - 6 - ], - "filter": [ - 3608 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "notifications_aggregate_fields": { - "avg": [ - 3606 - ], - "count": [ - 41, - { - "columns": [ - 3624, - "[notifications_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 3615 - ], - "min": [ - 3617 - ], - "stddev": [ - 3628 - ], - "stddev_pop": [ - 3630 - ], - "stddev_samp": [ - 3632 - ], - "sum": [ - 3636 - ], - "var_pop": [ - 3640 - ], - "var_samp": [ - 3642 - ], - "variance": [ - 3644 - ], - "__typename": [ - 85 - ] - }, - "notifications_aggregate_order_by": { - "avg": [ - 3607 - ], - "count": [ - 3648 - ], - "max": [ - 3616 - ], - "min": [ - 3618 - ], - "stddev": [ - 3629 - ], - "stddev_pop": [ - 3631 - ], - "stddev_samp": [ - 3633 - ], - "sum": [ - 3637 - ], - "var_pop": [ - 3641 - ], - "var_samp": [ - 3643 - ], - "variance": [ - 3645 - ], - "__typename": [ - 85 - ] - }, - "notifications_append_input": { - "actions": [ - 2439 - ], - "data": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "notifications_arr_rel_insert_input": { - "data": [ - 3614 - ], - "on_conflict": [ - 3620 - ], - "__typename": [ - 85 - ] - }, - "notifications_avg_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "notifications_avg_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "notifications_bool_exp": { - "_and": [ - 3608 - ], - "_not": [ - 3608 - ], - "_or": [ - 3608 - ], - "actions": [ - 2441 - ], - "created_at": [ - 5244 - ], - "data": [ - 2441 - ], - "deletable": [ - 7 - ], - "deleted_at": [ - 5244 - ], - "entity_id": [ - 87 - ], - "id": [ - 6674 - ], - "in_app": [ - 7 - ], - "is_read": [ - 7 - ], - "message": [ - 87 - ], - "player": [ - 4610 - ], - "role": [ - 1287 - ], - "steam_id": [ - 314 - ], - "title": [ - 87 - ], - "type": [ - 1247 - ], - "__typename": [ - 85 - ] - }, - "notifications_constraint": {}, - "notifications_delete_at_path_input": { - "actions": [ - 85 - ], - "data": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "notifications_delete_elem_input": { - "actions": [ - 41 - ], - "data": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "notifications_delete_key_input": { - "actions": [ - 85 - ], - "data": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "notifications_inc_input": { - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "notifications_insert_input": { - "actions": [ - 2439 - ], - "created_at": [ - 5243 - ], - "data": [ - 2439 - ], - "deletable": [ - 6 - ], - "deleted_at": [ - 5243 - ], - "entity_id": [ - 85 - ], - "id": [ - 6672 - ], - "in_app": [ - 6 - ], - "is_read": [ - 6 - ], - "message": [ - 85 - ], - "player": [ - 4617 - ], - "role": [ - 1286 - ], - "steam_id": [ - 312 - ], - "title": [ - 85 - ], - "type": [ - 1246 - ], - "__typename": [ - 85 - ] - }, - "notifications_max_fields": { - "created_at": [ - 5243 - ], - "deleted_at": [ - 5243 - ], - "entity_id": [ - 85 - ], - "id": [ - 6672 - ], - "message": [ - 85 - ], - "steam_id": [ - 312 - ], - "title": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "notifications_max_order_by": { - "created_at": [ - 3648 - ], - "deleted_at": [ - 3648 - ], - "entity_id": [ - 3648 - ], - "id": [ - 3648 - ], - "message": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "title": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "notifications_min_fields": { - "created_at": [ - 5243 - ], - "deleted_at": [ - 5243 - ], - "entity_id": [ - 85 - ], - "id": [ - 6672 - ], - "message": [ - 85 - ], - "steam_id": [ - 312 - ], - "title": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "notifications_min_order_by": { - "created_at": [ - 3648 - ], - "deleted_at": [ - 3648 - ], - "entity_id": [ - 3648 - ], - "id": [ - 3648 - ], - "message": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "title": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "notifications_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 3596 - ], - "__typename": [ - 85 - ] - }, - "notifications_on_conflict": { - "constraint": [ - 3609 - ], - "update_columns": [ - 3638 - ], - "where": [ - 3608 - ], - "__typename": [ - 85 - ] - }, - "notifications_order_by": { - "actions": [ - 3648 - ], - "created_at": [ - 3648 - ], - "data": [ - 3648 - ], - "deletable": [ - 3648 - ], - "deleted_at": [ - 3648 - ], - "entity_id": [ - 3648 - ], - "id": [ - 3648 - ], - "in_app": [ - 3648 - ], - "is_read": [ - 3648 - ], - "message": [ - 3648 - ], - "player": [ - 4619 - ], - "role": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "title": [ - 3648 - ], - "type": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "notifications_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "notifications_prepend_input": { - "actions": [ - 2439 - ], - "data": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "notifications_select_column": {}, - "notifications_select_column_notifications_aggregate_bool_exp_bool_and_arguments_columns": {}, - "notifications_select_column_notifications_aggregate_bool_exp_bool_or_arguments_columns": {}, - "notifications_set_input": { - "actions": [ - 2439 - ], - "created_at": [ - 5243 - ], - "data": [ - 2439 - ], - "deletable": [ - 6 - ], - "deleted_at": [ - 5243 - ], - "entity_id": [ - 85 - ], - "id": [ - 6672 - ], - "in_app": [ - 6 - ], - "is_read": [ - 6 - ], - "message": [ - 85 - ], - "role": [ - 1286 - ], - "steam_id": [ - 312 - ], - "title": [ - 85 - ], - "type": [ - 1246 - ], - "__typename": [ - 85 - ] - }, - "notifications_stddev_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "notifications_stddev_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "notifications_stddev_pop_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "notifications_stddev_pop_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "notifications_stddev_samp_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "notifications_stddev_samp_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "notifications_stream_cursor_input": { - "initial_value": [ - 3635 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "notifications_stream_cursor_value_input": { - "actions": [ - 2439 - ], - "created_at": [ - 5243 - ], - "data": [ - 2439 - ], - "deletable": [ - 6 - ], - "deleted_at": [ - 5243 - ], - "entity_id": [ - 85 - ], - "id": [ - 6672 - ], - "in_app": [ - 6 - ], - "is_read": [ - 6 - ], - "message": [ - 85 - ], - "role": [ - 1286 - ], - "steam_id": [ - 312 - ], - "title": [ - 85 - ], - "type": [ - 1246 - ], - "__typename": [ - 85 - ] - }, - "notifications_sum_fields": { - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "notifications_sum_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "notifications_update_column": {}, - "notifications_updates": { - "_append": [ - 3604 - ], - "_delete_at_path": [ - 3610 - ], - "_delete_elem": [ - 3611 - ], - "_delete_key": [ - 3612 - ], - "_inc": [ - 3613 - ], - "_prepend": [ - 3623 - ], - "_set": [ - 3627 - ], - "where": [ - 3608 - ], - "__typename": [ - 85 - ] - }, - "notifications_var_pop_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "notifications_var_pop_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "notifications_var_samp_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "notifications_var_samp_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "notifications_variance_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "notifications_variance_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "numeric": {}, - "numeric_comparison_exp": { - "_eq": [ - 3646 - ], - "_gt": [ - 3646 - ], - "_gte": [ - 3646 - ], - "_in": [ - 3646 - ], - "_is_null": [ - 6 - ], - "_lt": [ - 3646 - ], - "_lte": [ - 3646 - ], - "_neq": [ - 3646 - ], - "_nin": [ - 3646 - ], - "__typename": [ - 85 - ] - }, - "order_by": {}, - "pending_match_import_players": { - "created_at": [ - 5243 - ], - "pending_match_import": [ - 3690 - ], - "player": [ - 4606 - ], - "steam_id": [ - 312 - ], - "valve_match_id": [ - 3646 - ], - "__typename": [ - 85 - ] - }, - "pending_match_import_players_aggregate": { - "aggregate": [ - 3653 - ], - "nodes": [ - 3649 - ], - "__typename": [ - 85 - ] - }, - "pending_match_import_players_aggregate_bool_exp": { - "count": [ - 3652 - ], - "__typename": [ - 85 - ] - }, - "pending_match_import_players_aggregate_bool_exp_count": { - "arguments": [ - 3670 - ], - "distinct": [ - 6 - ], - "filter": [ - 3658 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "pending_match_import_players_aggregate_fields": { - "avg": [ - 3656 - ], - "count": [ - 41, - { - "columns": [ - 3670, - "[pending_match_import_players_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 3662 - ], - "min": [ - 3664 - ], - "stddev": [ - 3672 - ], - "stddev_pop": [ - 3674 - ], - "stddev_samp": [ - 3676 - ], - "sum": [ - 3680 - ], - "var_pop": [ - 3684 - ], - "var_samp": [ - 3686 - ], - "variance": [ - 3688 - ], - "__typename": [ - 85 - ] - }, - "pending_match_import_players_aggregate_order_by": { - "avg": [ - 3657 - ], - "count": [ - 3648 - ], - "max": [ - 3663 - ], - "min": [ - 3665 - ], - "stddev": [ - 3673 - ], - "stddev_pop": [ - 3675 - ], - "stddev_samp": [ - 3677 - ], - "sum": [ - 3681 - ], - "var_pop": [ - 3685 - ], - "var_samp": [ - 3687 - ], - "variance": [ - 3689 - ], - "__typename": [ - 85 - ] - }, - "pending_match_import_players_arr_rel_insert_input": { - "data": [ - 3661 - ], - "on_conflict": [ - 3667 - ], - "__typename": [ - 85 - ] - }, - "pending_match_import_players_avg_fields": { - "steam_id": [ - 32 - ], - "valve_match_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "pending_match_import_players_avg_order_by": { - "steam_id": [ - 3648 - ], - "valve_match_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "pending_match_import_players_bool_exp": { - "_and": [ - 3658 - ], - "_not": [ - 3658 - ], - "_or": [ - 3658 - ], - "created_at": [ - 5244 - ], - "pending_match_import": [ - 3694 - ], - "player": [ - 4610 - ], - "steam_id": [ - 314 - ], - "valve_match_id": [ - 3647 - ], - "__typename": [ - 85 - ] - }, - "pending_match_import_players_constraint": {}, - "pending_match_import_players_inc_input": { - "steam_id": [ - 312 - ], - "valve_match_id": [ - 3646 - ], - "__typename": [ - 85 - ] - }, - "pending_match_import_players_insert_input": { - "created_at": [ - 5243 - ], - "pending_match_import": [ - 3701 - ], - "player": [ - 4617 - ], - "steam_id": [ - 312 - ], - "valve_match_id": [ - 3646 - ], - "__typename": [ - 85 - ] - }, - "pending_match_import_players_max_fields": { - "created_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "valve_match_id": [ - 3646 - ], - "__typename": [ - 85 - ] - }, - "pending_match_import_players_max_order_by": { - "created_at": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "valve_match_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "pending_match_import_players_min_fields": { - "created_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "valve_match_id": [ - 3646 - ], - "__typename": [ - 85 - ] - }, - "pending_match_import_players_min_order_by": { - "created_at": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "valve_match_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "pending_match_import_players_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 3649 - ], - "__typename": [ - 85 - ] - }, - "pending_match_import_players_on_conflict": { - "constraint": [ - 3659 - ], - "update_columns": [ - 3682 - ], - "where": [ - 3658 - ], - "__typename": [ - 85 - ] - }, - "pending_match_import_players_order_by": { - "created_at": [ - 3648 - ], - "pending_match_import": [ - 3703 - ], - "player": [ - 4619 - ], - "steam_id": [ - 3648 - ], - "valve_match_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "pending_match_import_players_pk_columns_input": { - "steam_id": [ - 312 - ], - "valve_match_id": [ - 3646 - ], - "__typename": [ - 85 - ] - }, - "pending_match_import_players_select_column": {}, - "pending_match_import_players_set_input": { - "created_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "valve_match_id": [ - 3646 - ], - "__typename": [ - 85 - ] - }, - "pending_match_import_players_stddev_fields": { - "steam_id": [ - 32 - ], - "valve_match_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "pending_match_import_players_stddev_order_by": { - "steam_id": [ - 3648 - ], - "valve_match_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "pending_match_import_players_stddev_pop_fields": { - "steam_id": [ - 32 - ], - "valve_match_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "pending_match_import_players_stddev_pop_order_by": { - "steam_id": [ - 3648 - ], - "valve_match_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "pending_match_import_players_stddev_samp_fields": { - "steam_id": [ - 32 - ], - "valve_match_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "pending_match_import_players_stddev_samp_order_by": { - "steam_id": [ - 3648 - ], - "valve_match_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "pending_match_import_players_stream_cursor_input": { - "initial_value": [ - 3679 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "pending_match_import_players_stream_cursor_value_input": { - "created_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "valve_match_id": [ - 3646 - ], - "__typename": [ - 85 - ] - }, - "pending_match_import_players_sum_fields": { - "steam_id": [ - 312 - ], - "valve_match_id": [ - 3646 - ], - "__typename": [ - 85 - ] - }, - "pending_match_import_players_sum_order_by": { - "steam_id": [ - 3648 - ], - "valve_match_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "pending_match_import_players_update_column": {}, - "pending_match_import_players_updates": { - "_inc": [ - 3660 - ], - "_set": [ - 3671 - ], - "where": [ - 3658 - ], - "__typename": [ - 85 - ] - }, - "pending_match_import_players_var_pop_fields": { - "steam_id": [ - 32 - ], - "valve_match_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "pending_match_import_players_var_pop_order_by": { - "steam_id": [ - 3648 - ], - "valve_match_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "pending_match_import_players_var_samp_fields": { - "steam_id": [ - 32 - ], - "valve_match_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "pending_match_import_players_var_samp_order_by": { - "steam_id": [ - 3648 - ], - "valve_match_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "pending_match_import_players_variance_fields": { - "steam_id": [ - 32 - ], - "valve_match_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "pending_match_import_players_variance_order_by": { - "steam_id": [ - 3648 - ], - "valve_match_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "pending_match_imports": { - "created_at": [ - 5243 - ], - "demo_url": [ - 85 - ], - "error": [ - 85 - ], - "map_name": [ - 85 - ], - "match_start_time": [ - 5243 - ], - "players": [ - 3649, - { - "distinct_on": [ - 3670, - "[pending_match_import_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3668, - "[pending_match_import_players_order_by!]" - ], - "where": [ - 3658 - ] - } - ], - "players_aggregate": [ - 3650, - { - "distinct_on": [ - 3670, - "[pending_match_import_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3668, - "[pending_match_import_players_order_by!]" - ], - "where": [ - 3658 - ] - } - ], - "share_code": [ - 85 - ], - "status": [ - 85 - ], - "updated_at": [ - 5243 - ], - "valve_match_id": [ - 3646 - ], - "__typename": [ - 85 - ] - }, - "pending_match_imports_aggregate": { - "aggregate": [ - 3692 - ], - "nodes": [ - 3690 - ], - "__typename": [ - 85 - ] - }, - "pending_match_imports_aggregate_fields": { - "avg": [ - 3693 - ], - "count": [ - 41, - { - "columns": [ - 3705, - "[pending_match_imports_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 3698 - ], - "min": [ - 3699 - ], - "stddev": [ - 3707 - ], - "stddev_pop": [ - 3708 - ], - "stddev_samp": [ - 3709 - ], - "sum": [ - 3712 - ], - "var_pop": [ - 3715 - ], - "var_samp": [ - 3716 - ], - "variance": [ - 3717 - ], - "__typename": [ - 85 - ] - }, - "pending_match_imports_avg_fields": { - "valve_match_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "pending_match_imports_bool_exp": { - "_and": [ - 3694 - ], - "_not": [ - 3694 - ], - "_or": [ - 3694 - ], - "created_at": [ - 5244 - ], - "demo_url": [ - 87 - ], - "error": [ - 87 - ], - "map_name": [ - 87 - ], - "match_start_time": [ - 5244 - ], - "players": [ - 3658 - ], - "players_aggregate": [ - 3651 - ], - "share_code": [ - 87 - ], - "status": [ - 87 - ], - "updated_at": [ - 5244 - ], - "valve_match_id": [ - 3647 - ], - "__typename": [ - 85 - ] - }, - "pending_match_imports_constraint": {}, - "pending_match_imports_inc_input": { - "valve_match_id": [ - 3646 - ], - "__typename": [ - 85 - ] - }, - "pending_match_imports_insert_input": { - "created_at": [ - 5243 - ], - "demo_url": [ - 85 - ], - "error": [ - 85 - ], - "map_name": [ - 85 - ], - "match_start_time": [ - 5243 - ], - "players": [ - 3655 - ], - "share_code": [ - 85 - ], - "status": [ - 85 - ], - "updated_at": [ - 5243 - ], - "valve_match_id": [ - 3646 - ], - "__typename": [ - 85 - ] - }, - "pending_match_imports_max_fields": { - "created_at": [ - 5243 - ], - "demo_url": [ - 85 - ], - "error": [ - 85 - ], - "map_name": [ - 85 - ], - "match_start_time": [ - 5243 - ], - "share_code": [ - 85 - ], - "status": [ - 85 - ], - "updated_at": [ - 5243 - ], - "valve_match_id": [ - 3646 - ], - "__typename": [ - 85 - ] - }, - "pending_match_imports_min_fields": { - "created_at": [ - 5243 - ], - "demo_url": [ - 85 - ], - "error": [ - 85 - ], - "map_name": [ - 85 - ], - "match_start_time": [ - 5243 - ], - "share_code": [ - 85 - ], - "status": [ - 85 - ], - "updated_at": [ - 5243 - ], - "valve_match_id": [ - 3646 - ], - "__typename": [ - 85 - ] - }, - "pending_match_imports_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 3690 - ], - "__typename": [ - 85 - ] - }, - "pending_match_imports_obj_rel_insert_input": { - "data": [ - 3697 - ], - "on_conflict": [ - 3702 - ], - "__typename": [ - 85 - ] - }, - "pending_match_imports_on_conflict": { - "constraint": [ - 3695 - ], - "update_columns": [ - 3713 - ], - "where": [ - 3694 - ], - "__typename": [ - 85 - ] - }, - "pending_match_imports_order_by": { - "created_at": [ - 3648 - ], - "demo_url": [ - 3648 - ], - "error": [ - 3648 - ], - "map_name": [ - 3648 - ], - "match_start_time": [ - 3648 - ], - "players_aggregate": [ - 3654 - ], - "share_code": [ - 3648 - ], - "status": [ - 3648 - ], - "updated_at": [ - 3648 - ], - "valve_match_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "pending_match_imports_pk_columns_input": { - "valve_match_id": [ - 3646 - ], - "__typename": [ - 85 - ] - }, - "pending_match_imports_select_column": {}, - "pending_match_imports_set_input": { - "created_at": [ - 5243 - ], - "demo_url": [ - 85 - ], - "error": [ - 85 - ], - "map_name": [ - 85 - ], - "match_start_time": [ - 5243 - ], - "share_code": [ - 85 - ], - "status": [ - 85 - ], - "updated_at": [ - 5243 - ], - "valve_match_id": [ - 3646 - ], - "__typename": [ - 85 - ] - }, - "pending_match_imports_stddev_fields": { - "valve_match_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "pending_match_imports_stddev_pop_fields": { - "valve_match_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "pending_match_imports_stddev_samp_fields": { - "valve_match_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "pending_match_imports_stream_cursor_input": { - "initial_value": [ - 3711 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "pending_match_imports_stream_cursor_value_input": { - "created_at": [ - 5243 - ], - "demo_url": [ - 85 - ], - "error": [ - 85 - ], - "map_name": [ - 85 - ], - "match_start_time": [ - 5243 - ], - "share_code": [ - 85 - ], - "status": [ - 85 - ], - "updated_at": [ - 5243 - ], - "valve_match_id": [ - 3646 - ], - "__typename": [ - 85 - ] - }, - "pending_match_imports_sum_fields": { - "valve_match_id": [ - 3646 - ], - "__typename": [ - 85 - ] - }, - "pending_match_imports_update_column": {}, - "pending_match_imports_updates": { - "_inc": [ - 3696 - ], - "_set": [ - 3706 - ], - "where": [ - 3694 - ], - "__typename": [ - 85 - ] - }, - "pending_match_imports_var_pop_fields": { - "valve_match_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "pending_match_imports_var_samp_fields": { - "valve_match_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "pending_match_imports_variance_fields": { - "valve_match_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_aim_stats_demo": { - "attacker": [ - 4606 - ], - "attacker_steam_id": [ - 312 - ], - "counter_strafe_eligible_shots": [ - 41 - ], - "counter_strafed_shots": [ - 41 - ], - "crosshair_angle_count": [ - 41 - ], - "crosshair_angle_sum_deg": [ - 3646 - ], - "first_bullet_hits": [ - 41 - ], - "first_bullet_shots": [ - 41 - ], - "headshot_hits": [ - 41 - ], - "hits": [ - 41 - ], - "hits_at_spotted": [ - 41 - ], - "match": [ - 3432 - ], - "match_id": [ - 6672 - ], - "match_map": [ - 3248 - ], - "match_map_id": [ - 6672 - ], - "non_awp_hits": [ - 41 - ], - "on_target_frames": [ - 41 - ], - "shots_at_spotted": [ - 41 - ], - "spray_hits": [ - 41 - ], - "spray_shots": [ - 41 - ], - "time_to_damage_count": [ - 41 - ], - "time_to_damage_sum_s": [ - 3646 - ], - "total_engagement_frames": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "player_aim_stats_demo_aggregate": { - "aggregate": [ - 3720 - ], - "nodes": [ - 3718 - ], - "__typename": [ - 85 - ] - }, - "player_aim_stats_demo_aggregate_fields": { - "avg": [ - 3721 - ], - "count": [ - 41, - { - "columns": [ - 3732, - "[player_aim_stats_demo_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 3726 - ], - "min": [ - 3727 - ], - "stddev": [ - 3734 - ], - "stddev_pop": [ - 3735 - ], - "stddev_samp": [ - 3736 - ], - "sum": [ - 3739 - ], - "var_pop": [ - 3742 - ], - "var_samp": [ - 3743 - ], - "variance": [ - 3744 - ], - "__typename": [ - 85 - ] - }, - "player_aim_stats_demo_avg_fields": { - "attacker_steam_id": [ - 32 - ], - "counter_strafe_eligible_shots": [ - 32 - ], - "counter_strafed_shots": [ - 32 - ], - "crosshair_angle_count": [ - 32 - ], - "crosshair_angle_sum_deg": [ - 32 - ], - "first_bullet_hits": [ - 32 - ], - "first_bullet_shots": [ - 32 - ], - "headshot_hits": [ - 32 - ], - "hits": [ - 32 - ], - "hits_at_spotted": [ - 32 - ], - "non_awp_hits": [ - 32 - ], - "on_target_frames": [ - 32 - ], - "shots_at_spotted": [ - 32 - ], - "spray_hits": [ - 32 - ], - "spray_shots": [ - 32 - ], - "time_to_damage_count": [ - 32 - ], - "time_to_damage_sum_s": [ - 32 - ], - "total_engagement_frames": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_aim_stats_demo_bool_exp": { - "_and": [ - 3722 - ], - "_not": [ - 3722 - ], - "_or": [ - 3722 - ], - "attacker": [ - 4610 - ], - "attacker_steam_id": [ - 314 - ], - "counter_strafe_eligible_shots": [ - 42 - ], - "counter_strafed_shots": [ - 42 - ], - "crosshair_angle_count": [ - 42 - ], - "crosshair_angle_sum_deg": [ - 3647 - ], - "first_bullet_hits": [ - 42 - ], - "first_bullet_shots": [ - 42 - ], - "headshot_hits": [ - 42 - ], - "hits": [ - 42 - ], - "hits_at_spotted": [ - 42 - ], - "match": [ - 3443 - ], - "match_id": [ - 6674 - ], - "match_map": [ - 3257 - ], - "match_map_id": [ - 6674 - ], - "non_awp_hits": [ - 42 - ], - "on_target_frames": [ - 42 - ], - "shots_at_spotted": [ - 42 - ], - "spray_hits": [ - 42 - ], - "spray_shots": [ - 42 - ], - "time_to_damage_count": [ - 42 - ], - "time_to_damage_sum_s": [ - 3647 - ], - "total_engagement_frames": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "player_aim_stats_demo_constraint": {}, - "player_aim_stats_demo_inc_input": { - "attacker_steam_id": [ - 312 - ], - "counter_strafe_eligible_shots": [ - 41 - ], - "counter_strafed_shots": [ - 41 - ], - "crosshair_angle_count": [ - 41 - ], - "crosshair_angle_sum_deg": [ - 3646 - ], - "first_bullet_hits": [ - 41 - ], - "first_bullet_shots": [ - 41 - ], - "headshot_hits": [ - 41 - ], - "hits": [ - 41 - ], - "hits_at_spotted": [ - 41 - ], - "non_awp_hits": [ - 41 - ], - "on_target_frames": [ - 41 - ], - "shots_at_spotted": [ - 41 - ], - "spray_hits": [ - 41 - ], - "spray_shots": [ - 41 - ], - "time_to_damage_count": [ - 41 - ], - "time_to_damage_sum_s": [ - 3646 - ], - "total_engagement_frames": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "player_aim_stats_demo_insert_input": { - "attacker": [ - 4617 - ], - "attacker_steam_id": [ - 312 - ], - "counter_strafe_eligible_shots": [ - 41 - ], - "counter_strafed_shots": [ - 41 - ], - "crosshair_angle_count": [ - 41 - ], - "crosshair_angle_sum_deg": [ - 3646 - ], - "first_bullet_hits": [ - 41 - ], - "first_bullet_shots": [ - 41 - ], - "headshot_hits": [ - 41 - ], - "hits": [ - 41 - ], - "hits_at_spotted": [ - 41 - ], - "match": [ - 3452 - ], - "match_id": [ - 6672 - ], - "match_map": [ - 3266 - ], - "match_map_id": [ - 6672 - ], - "non_awp_hits": [ - 41 - ], - "on_target_frames": [ - 41 - ], - "shots_at_spotted": [ - 41 - ], - "spray_hits": [ - 41 - ], - "spray_shots": [ - 41 - ], - "time_to_damage_count": [ - 41 - ], - "time_to_damage_sum_s": [ - 3646 - ], - "total_engagement_frames": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "player_aim_stats_demo_max_fields": { - "attacker_steam_id": [ - 312 - ], - "counter_strafe_eligible_shots": [ - 41 - ], - "counter_strafed_shots": [ - 41 - ], - "crosshair_angle_count": [ - 41 - ], - "crosshair_angle_sum_deg": [ - 3646 - ], - "first_bullet_hits": [ - 41 - ], - "first_bullet_shots": [ - 41 - ], - "headshot_hits": [ - 41 - ], - "hits": [ - 41 - ], - "hits_at_spotted": [ - 41 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "non_awp_hits": [ - 41 - ], - "on_target_frames": [ - 41 - ], - "shots_at_spotted": [ - 41 - ], - "spray_hits": [ - 41 - ], - "spray_shots": [ - 41 - ], - "time_to_damage_count": [ - 41 - ], - "time_to_damage_sum_s": [ - 3646 - ], - "total_engagement_frames": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "player_aim_stats_demo_min_fields": { - "attacker_steam_id": [ - 312 - ], - "counter_strafe_eligible_shots": [ - 41 - ], - "counter_strafed_shots": [ - 41 - ], - "crosshair_angle_count": [ - 41 - ], - "crosshair_angle_sum_deg": [ - 3646 - ], - "first_bullet_hits": [ - 41 - ], - "first_bullet_shots": [ - 41 - ], - "headshot_hits": [ - 41 - ], - "hits": [ - 41 - ], - "hits_at_spotted": [ - 41 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "non_awp_hits": [ - 41 - ], - "on_target_frames": [ - 41 - ], - "shots_at_spotted": [ - 41 - ], - "spray_hits": [ - 41 - ], - "spray_shots": [ - 41 - ], - "time_to_damage_count": [ - 41 - ], - "time_to_damage_sum_s": [ - 3646 - ], - "total_engagement_frames": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "player_aim_stats_demo_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 3718 - ], - "__typename": [ - 85 - ] - }, - "player_aim_stats_demo_on_conflict": { - "constraint": [ - 3723 - ], - "update_columns": [ - 3740 - ], - "where": [ - 3722 - ], - "__typename": [ - 85 - ] - }, - "player_aim_stats_demo_order_by": { - "attacker": [ - 4619 - ], - "attacker_steam_id": [ - 3648 - ], - "counter_strafe_eligible_shots": [ - 3648 - ], - "counter_strafed_shots": [ - 3648 - ], - "crosshair_angle_count": [ - 3648 - ], - "crosshair_angle_sum_deg": [ - 3648 - ], - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "headshot_hits": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_at_spotted": [ - 3648 - ], - "match": [ - 3454 - ], - "match_id": [ - 3648 - ], - "match_map": [ - 3268 - ], - "match_map_id": [ - 3648 - ], - "non_awp_hits": [ - 3648 - ], - "on_target_frames": [ - 3648 - ], - "shots_at_spotted": [ - 3648 - ], - "spray_hits": [ - 3648 - ], - "spray_shots": [ - 3648 - ], - "time_to_damage_count": [ - 3648 - ], - "time_to_damage_sum_s": [ - 3648 - ], - "total_engagement_frames": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_aim_stats_demo_pk_columns_input": { - "attacker_steam_id": [ - 312 - ], - "match_map_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "player_aim_stats_demo_select_column": {}, - "player_aim_stats_demo_set_input": { - "attacker_steam_id": [ - 312 - ], - "counter_strafe_eligible_shots": [ - 41 - ], - "counter_strafed_shots": [ - 41 - ], - "crosshair_angle_count": [ - 41 - ], - "crosshair_angle_sum_deg": [ - 3646 - ], - "first_bullet_hits": [ - 41 - ], - "first_bullet_shots": [ - 41 - ], - "headshot_hits": [ - 41 - ], - "hits": [ - 41 - ], - "hits_at_spotted": [ - 41 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "non_awp_hits": [ - 41 - ], - "on_target_frames": [ - 41 - ], - "shots_at_spotted": [ - 41 - ], - "spray_hits": [ - 41 - ], - "spray_shots": [ - 41 - ], - "time_to_damage_count": [ - 41 - ], - "time_to_damage_sum_s": [ - 3646 - ], - "total_engagement_frames": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "player_aim_stats_demo_stddev_fields": { - "attacker_steam_id": [ - 32 - ], - "counter_strafe_eligible_shots": [ - 32 - ], - "counter_strafed_shots": [ - 32 - ], - "crosshair_angle_count": [ - 32 - ], - "crosshair_angle_sum_deg": [ - 32 - ], - "first_bullet_hits": [ - 32 - ], - "first_bullet_shots": [ - 32 - ], - "headshot_hits": [ - 32 - ], - "hits": [ - 32 - ], - "hits_at_spotted": [ - 32 - ], - "non_awp_hits": [ - 32 - ], - "on_target_frames": [ - 32 - ], - "shots_at_spotted": [ - 32 - ], - "spray_hits": [ - 32 - ], - "spray_shots": [ - 32 - ], - "time_to_damage_count": [ - 32 - ], - "time_to_damage_sum_s": [ - 32 - ], - "total_engagement_frames": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_aim_stats_demo_stddev_pop_fields": { - "attacker_steam_id": [ - 32 - ], - "counter_strafe_eligible_shots": [ - 32 - ], - "counter_strafed_shots": [ - 32 - ], - "crosshair_angle_count": [ - 32 - ], - "crosshair_angle_sum_deg": [ - 32 - ], - "first_bullet_hits": [ - 32 - ], - "first_bullet_shots": [ - 32 - ], - "headshot_hits": [ - 32 - ], - "hits": [ - 32 - ], - "hits_at_spotted": [ - 32 - ], - "non_awp_hits": [ - 32 - ], - "on_target_frames": [ - 32 - ], - "shots_at_spotted": [ - 32 - ], - "spray_hits": [ - 32 - ], - "spray_shots": [ - 32 - ], - "time_to_damage_count": [ - 32 - ], - "time_to_damage_sum_s": [ - 32 - ], - "total_engagement_frames": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_aim_stats_demo_stddev_samp_fields": { - "attacker_steam_id": [ - 32 - ], - "counter_strafe_eligible_shots": [ - 32 - ], - "counter_strafed_shots": [ - 32 - ], - "crosshair_angle_count": [ - 32 - ], - "crosshair_angle_sum_deg": [ - 32 - ], - "first_bullet_hits": [ - 32 - ], - "first_bullet_shots": [ - 32 - ], - "headshot_hits": [ - 32 - ], - "hits": [ - 32 - ], - "hits_at_spotted": [ - 32 - ], - "non_awp_hits": [ - 32 - ], - "on_target_frames": [ - 32 - ], - "shots_at_spotted": [ - 32 - ], - "spray_hits": [ - 32 - ], - "spray_shots": [ - 32 - ], - "time_to_damage_count": [ - 32 - ], - "time_to_damage_sum_s": [ - 32 - ], - "total_engagement_frames": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_aim_stats_demo_stream_cursor_input": { - "initial_value": [ - 3738 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "player_aim_stats_demo_stream_cursor_value_input": { - "attacker_steam_id": [ - 312 - ], - "counter_strafe_eligible_shots": [ - 41 - ], - "counter_strafed_shots": [ - 41 - ], - "crosshair_angle_count": [ - 41 - ], - "crosshair_angle_sum_deg": [ - 3646 - ], - "first_bullet_hits": [ - 41 - ], - "first_bullet_shots": [ - 41 - ], - "headshot_hits": [ - 41 - ], - "hits": [ - 41 - ], - "hits_at_spotted": [ - 41 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "non_awp_hits": [ - 41 - ], - "on_target_frames": [ - 41 - ], - "shots_at_spotted": [ - 41 - ], - "spray_hits": [ - 41 - ], - "spray_shots": [ - 41 - ], - "time_to_damage_count": [ - 41 - ], - "time_to_damage_sum_s": [ - 3646 - ], - "total_engagement_frames": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "player_aim_stats_demo_sum_fields": { - "attacker_steam_id": [ - 312 - ], - "counter_strafe_eligible_shots": [ - 41 - ], - "counter_strafed_shots": [ - 41 - ], - "crosshair_angle_count": [ - 41 - ], - "crosshair_angle_sum_deg": [ - 3646 - ], - "first_bullet_hits": [ - 41 - ], - "first_bullet_shots": [ - 41 - ], - "headshot_hits": [ - 41 - ], - "hits": [ - 41 - ], - "hits_at_spotted": [ - 41 - ], - "non_awp_hits": [ - 41 - ], - "on_target_frames": [ - 41 - ], - "shots_at_spotted": [ - 41 - ], - "spray_hits": [ - 41 - ], - "spray_shots": [ - 41 - ], - "time_to_damage_count": [ - 41 - ], - "time_to_damage_sum_s": [ - 3646 - ], - "total_engagement_frames": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "player_aim_stats_demo_update_column": {}, - "player_aim_stats_demo_updates": { - "_inc": [ - 3724 - ], - "_set": [ - 3733 - ], - "where": [ - 3722 - ], - "__typename": [ - 85 - ] - }, - "player_aim_stats_demo_var_pop_fields": { - "attacker_steam_id": [ - 32 - ], - "counter_strafe_eligible_shots": [ - 32 - ], - "counter_strafed_shots": [ - 32 - ], - "crosshair_angle_count": [ - 32 - ], - "crosshair_angle_sum_deg": [ - 32 - ], - "first_bullet_hits": [ - 32 - ], - "first_bullet_shots": [ - 32 - ], - "headshot_hits": [ - 32 - ], - "hits": [ - 32 - ], - "hits_at_spotted": [ - 32 - ], - "non_awp_hits": [ - 32 - ], - "on_target_frames": [ - 32 - ], - "shots_at_spotted": [ - 32 - ], - "spray_hits": [ - 32 - ], - "spray_shots": [ - 32 - ], - "time_to_damage_count": [ - 32 - ], - "time_to_damage_sum_s": [ - 32 - ], - "total_engagement_frames": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_aim_stats_demo_var_samp_fields": { - "attacker_steam_id": [ - 32 - ], - "counter_strafe_eligible_shots": [ - 32 - ], - "counter_strafed_shots": [ - 32 - ], - "crosshair_angle_count": [ - 32 - ], - "crosshair_angle_sum_deg": [ - 32 - ], - "first_bullet_hits": [ - 32 - ], - "first_bullet_shots": [ - 32 - ], - "headshot_hits": [ - 32 - ], - "hits": [ - 32 - ], - "hits_at_spotted": [ - 32 - ], - "non_awp_hits": [ - 32 - ], - "on_target_frames": [ - 32 - ], - "shots_at_spotted": [ - 32 - ], - "spray_hits": [ - 32 - ], - "spray_shots": [ - 32 - ], - "time_to_damage_count": [ - 32 - ], - "time_to_damage_sum_s": [ - 32 - ], - "total_engagement_frames": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_aim_stats_demo_variance_fields": { - "attacker_steam_id": [ - 32 - ], - "counter_strafe_eligible_shots": [ - 32 - ], - "counter_strafed_shots": [ - 32 - ], - "crosshair_angle_count": [ - 32 - ], - "crosshair_angle_sum_deg": [ - 32 - ], - "first_bullet_hits": [ - 32 - ], - "first_bullet_shots": [ - 32 - ], - "headshot_hits": [ - 32 - ], - "hits": [ - 32 - ], - "hits_at_spotted": [ - 32 - ], - "non_awp_hits": [ - 32 - ], - "on_target_frames": [ - 32 - ], - "shots_at_spotted": [ - 32 - ], - "spray_hits": [ - 32 - ], - "spray_shots": [ - 32 - ], - "time_to_damage_count": [ - 32 - ], - "time_to_damage_sum_s": [ - 32 - ], - "total_engagement_frames": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_aim_weapon_stats": { - "first_bullet_hits": [ - 41 - ], - "first_bullet_shots": [ - 41 - ], - "hits": [ - 41 - ], - "hits_spotted": [ - 41 - ], - "match": [ - 3432 - ], - "match_id": [ - 6672 - ], - "match_map": [ - 3248 - ], - "match_map_id": [ - 6672 - ], - "player": [ - 4606 - ], - "shots": [ - 41 - ], - "shots_spotted": [ - 41 - ], - "steam_id": [ - 312 - ], - "weapon_class": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "player_aim_weapon_stats_aggregate": { - "aggregate": [ - 3749 - ], - "nodes": [ - 3745 - ], - "__typename": [ - 85 - ] - }, - "player_aim_weapon_stats_aggregate_bool_exp": { - "count": [ - 3748 - ], - "__typename": [ - 85 - ] - }, - "player_aim_weapon_stats_aggregate_bool_exp_count": { - "arguments": [ - 3766 - ], - "distinct": [ - 6 - ], - "filter": [ - 3754 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "player_aim_weapon_stats_aggregate_fields": { - "avg": [ - 3752 - ], - "count": [ - 41, - { - "columns": [ - 3766, - "[player_aim_weapon_stats_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 3758 - ], - "min": [ - 3760 - ], - "stddev": [ - 3768 - ], - "stddev_pop": [ - 3770 - ], - "stddev_samp": [ - 3772 - ], - "sum": [ - 3776 - ], - "var_pop": [ - 3780 - ], - "var_samp": [ - 3782 - ], - "variance": [ - 3784 - ], - "__typename": [ - 85 - ] - }, - "player_aim_weapon_stats_aggregate_order_by": { - "avg": [ - 3753 - ], - "count": [ - 3648 - ], - "max": [ - 3759 - ], - "min": [ - 3761 - ], - "stddev": [ - 3769 - ], - "stddev_pop": [ - 3771 - ], - "stddev_samp": [ - 3773 - ], - "sum": [ - 3777 - ], - "var_pop": [ - 3781 - ], - "var_samp": [ - 3783 - ], - "variance": [ - 3785 - ], - "__typename": [ - 85 - ] - }, - "player_aim_weapon_stats_arr_rel_insert_input": { - "data": [ - 3757 - ], - "on_conflict": [ - 3763 - ], - "__typename": [ - 85 - ] - }, - "player_aim_weapon_stats_avg_fields": { - "first_bullet_hits": [ - 32 - ], - "first_bullet_shots": [ - 32 - ], - "hits": [ - 32 - ], - "hits_spotted": [ - 32 - ], - "shots": [ - 32 - ], - "shots_spotted": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_aim_weapon_stats_avg_order_by": { - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_spotted": [ - 3648 - ], - "shots": [ - 3648 - ], - "shots_spotted": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_aim_weapon_stats_bool_exp": { - "_and": [ - 3754 - ], - "_not": [ - 3754 - ], - "_or": [ - 3754 - ], - "first_bullet_hits": [ - 42 - ], - "first_bullet_shots": [ - 42 - ], - "hits": [ - 42 - ], - "hits_spotted": [ - 42 - ], - "match": [ - 3443 - ], - "match_id": [ - 6674 - ], - "match_map": [ - 3257 - ], - "match_map_id": [ - 6674 - ], - "player": [ - 4610 - ], - "shots": [ - 42 - ], - "shots_spotted": [ - 42 - ], - "steam_id": [ - 314 - ], - "weapon_class": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "player_aim_weapon_stats_constraint": {}, - "player_aim_weapon_stats_inc_input": { - "first_bullet_hits": [ - 41 - ], - "first_bullet_shots": [ - 41 - ], - "hits": [ - 41 - ], - "hits_spotted": [ - 41 - ], - "shots": [ - 41 - ], - "shots_spotted": [ - 41 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "player_aim_weapon_stats_insert_input": { - "first_bullet_hits": [ - 41 - ], - "first_bullet_shots": [ - 41 - ], - "hits": [ - 41 - ], - "hits_spotted": [ - 41 - ], - "match": [ - 3452 - ], - "match_id": [ - 6672 - ], - "match_map": [ - 3266 - ], - "match_map_id": [ - 6672 - ], - "player": [ - 4617 - ], - "shots": [ - 41 - ], - "shots_spotted": [ - 41 - ], - "steam_id": [ - 312 - ], - "weapon_class": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "player_aim_weapon_stats_max_fields": { - "first_bullet_hits": [ - 41 - ], - "first_bullet_shots": [ - 41 - ], - "hits": [ - 41 - ], - "hits_spotted": [ - 41 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "shots": [ - 41 - ], - "shots_spotted": [ - 41 - ], - "steam_id": [ - 312 - ], - "weapon_class": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "player_aim_weapon_stats_max_order_by": { - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_spotted": [ - 3648 - ], - "match_id": [ - 3648 - ], - "match_map_id": [ - 3648 - ], - "shots": [ - 3648 - ], - "shots_spotted": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "weapon_class": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_aim_weapon_stats_min_fields": { - "first_bullet_hits": [ - 41 - ], - "first_bullet_shots": [ - 41 - ], - "hits": [ - 41 - ], - "hits_spotted": [ - 41 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "shots": [ - 41 - ], - "shots_spotted": [ - 41 - ], - "steam_id": [ - 312 - ], - "weapon_class": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "player_aim_weapon_stats_min_order_by": { - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_spotted": [ - 3648 - ], - "match_id": [ - 3648 - ], - "match_map_id": [ - 3648 - ], - "shots": [ - 3648 - ], - "shots_spotted": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "weapon_class": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_aim_weapon_stats_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 3745 - ], - "__typename": [ - 85 - ] - }, - "player_aim_weapon_stats_on_conflict": { - "constraint": [ - 3755 - ], - "update_columns": [ - 3778 - ], - "where": [ - 3754 - ], - "__typename": [ - 85 - ] - }, - "player_aim_weapon_stats_order_by": { - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_spotted": [ - 3648 - ], - "match": [ - 3454 - ], - "match_id": [ - 3648 - ], - "match_map": [ - 3268 - ], - "match_map_id": [ - 3648 - ], - "player": [ - 4619 - ], - "shots": [ - 3648 - ], - "shots_spotted": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "weapon_class": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_aim_weapon_stats_pk_columns_input": { - "match_map_id": [ - 6672 - ], - "steam_id": [ - 312 - ], - "weapon_class": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "player_aim_weapon_stats_select_column": {}, - "player_aim_weapon_stats_set_input": { - "first_bullet_hits": [ - 41 - ], - "first_bullet_shots": [ - 41 - ], - "hits": [ - 41 - ], - "hits_spotted": [ - 41 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "shots": [ - 41 - ], - "shots_spotted": [ - 41 - ], - "steam_id": [ - 312 - ], - "weapon_class": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "player_aim_weapon_stats_stddev_fields": { - "first_bullet_hits": [ - 32 - ], - "first_bullet_shots": [ - 32 - ], - "hits": [ - 32 - ], - "hits_spotted": [ - 32 - ], - "shots": [ - 32 - ], - "shots_spotted": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_aim_weapon_stats_stddev_order_by": { - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_spotted": [ - 3648 - ], - "shots": [ - 3648 - ], - "shots_spotted": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_aim_weapon_stats_stddev_pop_fields": { - "first_bullet_hits": [ - 32 - ], - "first_bullet_shots": [ - 32 - ], - "hits": [ - 32 - ], - "hits_spotted": [ - 32 - ], - "shots": [ - 32 - ], - "shots_spotted": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_aim_weapon_stats_stddev_pop_order_by": { - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_spotted": [ - 3648 - ], - "shots": [ - 3648 - ], - "shots_spotted": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_aim_weapon_stats_stddev_samp_fields": { - "first_bullet_hits": [ - 32 - ], - "first_bullet_shots": [ - 32 - ], - "hits": [ - 32 - ], - "hits_spotted": [ - 32 - ], - "shots": [ - 32 - ], - "shots_spotted": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_aim_weapon_stats_stddev_samp_order_by": { - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_spotted": [ - 3648 - ], - "shots": [ - 3648 - ], - "shots_spotted": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_aim_weapon_stats_stream_cursor_input": { - "initial_value": [ - 3775 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "player_aim_weapon_stats_stream_cursor_value_input": { - "first_bullet_hits": [ - 41 - ], - "first_bullet_shots": [ - 41 - ], - "hits": [ - 41 - ], - "hits_spotted": [ - 41 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "shots": [ - 41 - ], - "shots_spotted": [ - 41 - ], - "steam_id": [ - 312 - ], - "weapon_class": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "player_aim_weapon_stats_sum_fields": { - "first_bullet_hits": [ - 41 - ], - "first_bullet_shots": [ - 41 - ], - "hits": [ - 41 - ], - "hits_spotted": [ - 41 - ], - "shots": [ - 41 - ], - "shots_spotted": [ - 41 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "player_aim_weapon_stats_sum_order_by": { - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_spotted": [ - 3648 - ], - "shots": [ - 3648 - ], - "shots_spotted": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_aim_weapon_stats_update_column": {}, - "player_aim_weapon_stats_updates": { - "_inc": [ - 3756 - ], - "_set": [ - 3767 - ], - "where": [ - 3754 - ], - "__typename": [ - 85 - ] - }, - "player_aim_weapon_stats_var_pop_fields": { - "first_bullet_hits": [ - 32 - ], - "first_bullet_shots": [ - 32 - ], - "hits": [ - 32 - ], - "hits_spotted": [ - 32 - ], - "shots": [ - 32 - ], - "shots_spotted": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_aim_weapon_stats_var_pop_order_by": { - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_spotted": [ - 3648 - ], - "shots": [ - 3648 - ], - "shots_spotted": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_aim_weapon_stats_var_samp_fields": { - "first_bullet_hits": [ - 32 - ], - "first_bullet_shots": [ - 32 - ], - "hits": [ - 32 - ], - "hits_spotted": [ - 32 - ], - "shots": [ - 32 - ], - "shots_spotted": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_aim_weapon_stats_var_samp_order_by": { - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_spotted": [ - 3648 - ], - "shots": [ - 3648 - ], - "shots_spotted": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_aim_weapon_stats_variance_fields": { - "first_bullet_hits": [ - 32 - ], - "first_bullet_shots": [ - 32 - ], - "hits": [ - 32 - ], - "hits_spotted": [ - 32 - ], - "shots": [ - 32 - ], - "shots_spotted": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_aim_weapon_stats_variance_order_by": { - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_spotted": [ - 3648 - ], - "shots": [ - 3648 - ], - "shots_spotted": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_assists": { - "attacked_player": [ - 4606 - ], - "attacked_steam_id": [ - 312 - ], - "attacked_team": [ - 85 - ], - "attacker_steam_id": [ - 312 - ], - "attacker_team": [ - 85 - ], - "deleted_at": [ - 5243 - ], - "flash": [ - 6 - ], - "is_team_assist": [ - 6 - ], - "match": [ - 3432 - ], - "match_id": [ - 6672 - ], - "match_map": [ - 3248 - ], - "match_map_id": [ - 6672 - ], - "player": [ - 4606 - ], - "round": [ - 41 - ], - "time": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "player_assists_aggregate": { - "aggregate": [ - 3792 - ], - "nodes": [ - 3786 - ], - "__typename": [ - 85 - ] - }, - "player_assists_aggregate_bool_exp": { - "bool_and": [ - 3789 - ], - "bool_or": [ - 3790 - ], - "count": [ - 3791 - ], - "__typename": [ - 85 - ] - }, - "player_assists_aggregate_bool_exp_bool_and": { - "arguments": [ - 3810 - ], - "distinct": [ - 6 - ], - "filter": [ - 3797 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "player_assists_aggregate_bool_exp_bool_or": { - "arguments": [ - 3811 - ], - "distinct": [ - 6 - ], - "filter": [ - 3797 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "player_assists_aggregate_bool_exp_count": { - "arguments": [ - 3809 - ], - "distinct": [ - 6 - ], - "filter": [ - 3797 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "player_assists_aggregate_fields": { - "avg": [ - 3795 - ], - "count": [ - 41, - { - "columns": [ - 3809, - "[player_assists_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 3801 - ], - "min": [ - 3803 - ], - "stddev": [ - 3813 - ], - "stddev_pop": [ - 3815 - ], - "stddev_samp": [ - 3817 - ], - "sum": [ - 3821 - ], - "var_pop": [ - 3825 - ], - "var_samp": [ - 3827 - ], - "variance": [ - 3829 - ], - "__typename": [ - 85 - ] - }, - "player_assists_aggregate_order_by": { - "avg": [ - 3796 - ], - "count": [ - 3648 - ], - "max": [ - 3802 - ], - "min": [ - 3804 - ], - "stddev": [ - 3814 - ], - "stddev_pop": [ - 3816 - ], - "stddev_samp": [ - 3818 - ], - "sum": [ - 3822 - ], - "var_pop": [ - 3826 - ], - "var_samp": [ - 3828 - ], - "variance": [ - 3830 - ], - "__typename": [ - 85 - ] - }, - "player_assists_arr_rel_insert_input": { - "data": [ - 3800 - ], - "on_conflict": [ - 3806 - ], - "__typename": [ - 85 - ] - }, - "player_assists_avg_fields": { - "attacked_steam_id": [ - 32 - ], - "attacker_steam_id": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_assists_avg_order_by": { - "attacked_steam_id": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_assists_bool_exp": { - "_and": [ - 3797 - ], - "_not": [ - 3797 - ], - "_or": [ - 3797 - ], - "attacked_player": [ - 4610 - ], - "attacked_steam_id": [ - 314 - ], - "attacked_team": [ - 87 - ], - "attacker_steam_id": [ - 314 - ], - "attacker_team": [ - 87 - ], - "deleted_at": [ - 5244 - ], - "flash": [ - 7 - ], - "is_team_assist": [ - 7 - ], - "match": [ - 3443 - ], - "match_id": [ - 6674 - ], - "match_map": [ - 3257 - ], - "match_map_id": [ - 6674 - ], - "player": [ - 4610 - ], - "round": [ - 42 - ], - "time": [ - 5244 - ], - "__typename": [ - 85 - ] - }, - "player_assists_constraint": {}, - "player_assists_inc_input": { - "attacked_steam_id": [ - 312 - ], - "attacker_steam_id": [ - 312 - ], - "round": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "player_assists_insert_input": { - "attacked_player": [ - 4617 - ], - "attacked_steam_id": [ - 312 - ], - "attacked_team": [ - 85 - ], - "attacker_steam_id": [ - 312 - ], - "attacker_team": [ - 85 - ], - "deleted_at": [ - 5243 - ], - "flash": [ - 6 - ], - "match": [ - 3452 - ], - "match_id": [ - 6672 - ], - "match_map": [ - 3266 - ], - "match_map_id": [ - 6672 - ], - "player": [ - 4617 - ], - "round": [ - 41 - ], - "time": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "player_assists_max_fields": { - "attacked_steam_id": [ - 312 - ], - "attacked_team": [ - 85 - ], - "attacker_steam_id": [ - 312 - ], - "attacker_team": [ - 85 - ], - "deleted_at": [ - 5243 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "round": [ - 41 - ], - "time": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "player_assists_max_order_by": { - "attacked_steam_id": [ - 3648 - ], - "attacked_team": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "attacker_team": [ - 3648 - ], - "deleted_at": [ - 3648 - ], - "match_id": [ - 3648 - ], - "match_map_id": [ - 3648 - ], - "round": [ - 3648 - ], - "time": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_assists_min_fields": { - "attacked_steam_id": [ - 312 - ], - "attacked_team": [ - 85 - ], - "attacker_steam_id": [ - 312 - ], - "attacker_team": [ - 85 - ], - "deleted_at": [ - 5243 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "round": [ - 41 - ], - "time": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "player_assists_min_order_by": { - "attacked_steam_id": [ - 3648 - ], - "attacked_team": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "attacker_team": [ - 3648 - ], - "deleted_at": [ - 3648 - ], - "match_id": [ - 3648 - ], - "match_map_id": [ - 3648 - ], - "round": [ - 3648 - ], - "time": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_assists_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 3786 - ], - "__typename": [ - 85 - ] - }, - "player_assists_on_conflict": { - "constraint": [ - 3798 - ], - "update_columns": [ - 3823 - ], - "where": [ - 3797 - ], - "__typename": [ - 85 - ] - }, - "player_assists_order_by": { - "attacked_player": [ - 4619 - ], - "attacked_steam_id": [ - 3648 - ], - "attacked_team": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "attacker_team": [ - 3648 - ], - "deleted_at": [ - 3648 - ], - "flash": [ - 3648 - ], - "is_team_assist": [ - 3648 - ], - "match": [ - 3454 - ], - "match_id": [ - 3648 - ], - "match_map": [ - 3268 - ], - "match_map_id": [ - 3648 - ], - "player": [ - 4619 - ], - "round": [ - 3648 - ], - "time": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_assists_pk_columns_input": { - "attacked_steam_id": [ - 312 - ], - "attacker_steam_id": [ - 312 - ], - "match_map_id": [ - 6672 - ], - "time": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "player_assists_select_column": {}, - "player_assists_select_column_player_assists_aggregate_bool_exp_bool_and_arguments_columns": {}, - "player_assists_select_column_player_assists_aggregate_bool_exp_bool_or_arguments_columns": {}, - "player_assists_set_input": { - "attacked_steam_id": [ - 312 - ], - "attacked_team": [ - 85 - ], - "attacker_steam_id": [ - 312 - ], - "attacker_team": [ - 85 - ], - "deleted_at": [ - 5243 - ], - "flash": [ - 6 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "round": [ - 41 - ], - "time": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "player_assists_stddev_fields": { - "attacked_steam_id": [ - 32 - ], - "attacker_steam_id": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_assists_stddev_order_by": { - "attacked_steam_id": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_assists_stddev_pop_fields": { - "attacked_steam_id": [ - 32 - ], - "attacker_steam_id": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_assists_stddev_pop_order_by": { - "attacked_steam_id": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_assists_stddev_samp_fields": { - "attacked_steam_id": [ - 32 - ], - "attacker_steam_id": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_assists_stddev_samp_order_by": { - "attacked_steam_id": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_assists_stream_cursor_input": { - "initial_value": [ - 3820 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "player_assists_stream_cursor_value_input": { - "attacked_steam_id": [ - 312 - ], - "attacked_team": [ - 85 - ], - "attacker_steam_id": [ - 312 - ], - "attacker_team": [ - 85 - ], - "deleted_at": [ - 5243 - ], - "flash": [ - 6 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "round": [ - 41 - ], - "time": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "player_assists_sum_fields": { - "attacked_steam_id": [ - 312 - ], - "attacker_steam_id": [ - 312 - ], - "round": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "player_assists_sum_order_by": { - "attacked_steam_id": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_assists_update_column": {}, - "player_assists_updates": { - "_inc": [ - 3799 - ], - "_set": [ - 3812 - ], - "where": [ - 3797 - ], - "__typename": [ - 85 - ] - }, - "player_assists_var_pop_fields": { - "attacked_steam_id": [ - 32 - ], - "attacker_steam_id": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_assists_var_pop_order_by": { - "attacked_steam_id": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_assists_var_samp_fields": { - "attacked_steam_id": [ - 32 - ], - "attacker_steam_id": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_assists_var_samp_order_by": { - "attacked_steam_id": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_assists_variance_fields": { - "attacked_steam_id": [ - 32 - ], - "attacker_steam_id": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_assists_variance_order_by": { - "attacked_steam_id": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_career_stats_v": { - "accuracy": [ - 3646 - ], - "accuracy_spotted": [ - 3646 - ], - "counter_strafe_pct": [ - 3646 - ], - "crosshair_deg": [ - 3646 - ], - "enemy_blind_pr": [ - 3646 - ], - "flash_assists_pr": [ - 3646 - ], - "hs_pct": [ - 3646 - ], - "kast_pct": [ - 3646 - ], - "maps": [ - 41 - ], - "premier_rank": [ - 41 - ], - "rounds": [ - 41 - ], - "steam_id": [ - 312 - ], - "survival_pct": [ - 3646 - ], - "time_to_damage_s": [ - 3646 - ], - "traded_death_pct": [ - 3646 - ], - "util_efficiency": [ - 3646 - ], - "__typename": [ - 85 - ] - }, - "player_career_stats_v_aggregate": { - "aggregate": [ - 3833 - ], - "nodes": [ - 3831 - ], - "__typename": [ - 85 - ] - }, - "player_career_stats_v_aggregate_fields": { - "avg": [ - 3834 - ], - "count": [ - 41, - { - "columns": [ - 3839, - "[player_career_stats_v_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 3836 - ], - "min": [ - 3837 - ], - "stddev": [ - 3840 - ], - "stddev_pop": [ - 3841 - ], - "stddev_samp": [ - 3842 - ], - "sum": [ - 3845 - ], - "var_pop": [ - 3846 - ], - "var_samp": [ - 3847 - ], - "variance": [ - 3848 - ], - "__typename": [ - 85 - ] - }, - "player_career_stats_v_avg_fields": { - "accuracy": [ - 32 - ], - "accuracy_spotted": [ - 32 - ], - "counter_strafe_pct": [ - 32 - ], - "crosshair_deg": [ - 32 - ], - "enemy_blind_pr": [ - 32 - ], - "flash_assists_pr": [ - 32 - ], - "hs_pct": [ - 32 - ], - "kast_pct": [ - 32 - ], - "maps": [ - 32 - ], - "premier_rank": [ - 32 - ], - "rounds": [ - 32 - ], - "steam_id": [ - 32 - ], - "survival_pct": [ - 32 - ], - "time_to_damage_s": [ - 32 - ], - "traded_death_pct": [ - 32 - ], - "util_efficiency": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_career_stats_v_bool_exp": { - "_and": [ - 3835 - ], - "_not": [ - 3835 - ], - "_or": [ - 3835 - ], - "accuracy": [ - 3647 - ], - "accuracy_spotted": [ - 3647 - ], - "counter_strafe_pct": [ - 3647 - ], - "crosshair_deg": [ - 3647 - ], - "enemy_blind_pr": [ - 3647 - ], - "flash_assists_pr": [ - 3647 - ], - "hs_pct": [ - 3647 - ], - "kast_pct": [ - 3647 - ], - "maps": [ - 42 - ], - "premier_rank": [ - 42 - ], - "rounds": [ - 42 - ], - "steam_id": [ - 314 - ], - "survival_pct": [ - 3647 - ], - "time_to_damage_s": [ - 3647 - ], - "traded_death_pct": [ - 3647 - ], - "util_efficiency": [ - 3647 - ], - "__typename": [ - 85 - ] - }, - "player_career_stats_v_max_fields": { - "accuracy": [ - 3646 - ], - "accuracy_spotted": [ - 3646 - ], - "counter_strafe_pct": [ - 3646 - ], - "crosshair_deg": [ - 3646 - ], - "enemy_blind_pr": [ - 3646 - ], - "flash_assists_pr": [ - 3646 - ], - "hs_pct": [ - 3646 - ], - "kast_pct": [ - 3646 - ], - "maps": [ - 41 - ], - "premier_rank": [ - 41 - ], - "rounds": [ - 41 - ], - "steam_id": [ - 312 - ], - "survival_pct": [ - 3646 - ], - "time_to_damage_s": [ - 3646 - ], - "traded_death_pct": [ - 3646 - ], - "util_efficiency": [ - 3646 - ], - "__typename": [ - 85 - ] - }, - "player_career_stats_v_min_fields": { - "accuracy": [ - 3646 - ], - "accuracy_spotted": [ - 3646 - ], - "counter_strafe_pct": [ - 3646 - ], - "crosshair_deg": [ - 3646 - ], - "enemy_blind_pr": [ - 3646 - ], - "flash_assists_pr": [ - 3646 - ], - "hs_pct": [ - 3646 - ], - "kast_pct": [ - 3646 - ], - "maps": [ - 41 - ], - "premier_rank": [ - 41 - ], - "rounds": [ - 41 - ], - "steam_id": [ - 312 - ], - "survival_pct": [ - 3646 - ], - "time_to_damage_s": [ - 3646 - ], - "traded_death_pct": [ - 3646 - ], - "util_efficiency": [ - 3646 - ], - "__typename": [ - 85 - ] - }, - "player_career_stats_v_order_by": { - "accuracy": [ - 3648 - ], - "accuracy_spotted": [ - 3648 - ], - "counter_strafe_pct": [ - 3648 - ], - "crosshair_deg": [ - 3648 - ], - "enemy_blind_pr": [ - 3648 - ], - "flash_assists_pr": [ - 3648 - ], - "hs_pct": [ - 3648 - ], - "kast_pct": [ - 3648 - ], - "maps": [ - 3648 - ], - "premier_rank": [ - 3648 - ], - "rounds": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "survival_pct": [ - 3648 - ], - "time_to_damage_s": [ - 3648 - ], - "traded_death_pct": [ - 3648 - ], - "util_efficiency": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_career_stats_v_select_column": {}, - "player_career_stats_v_stddev_fields": { - "accuracy": [ - 32 - ], - "accuracy_spotted": [ - 32 - ], - "counter_strafe_pct": [ - 32 - ], - "crosshair_deg": [ - 32 - ], - "enemy_blind_pr": [ - 32 - ], - "flash_assists_pr": [ - 32 - ], - "hs_pct": [ - 32 - ], - "kast_pct": [ - 32 - ], - "maps": [ - 32 - ], - "premier_rank": [ - 32 - ], - "rounds": [ - 32 - ], - "steam_id": [ - 32 - ], - "survival_pct": [ - 32 - ], - "time_to_damage_s": [ - 32 - ], - "traded_death_pct": [ - 32 - ], - "util_efficiency": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_career_stats_v_stddev_pop_fields": { - "accuracy": [ - 32 - ], - "accuracy_spotted": [ - 32 - ], - "counter_strafe_pct": [ - 32 - ], - "crosshair_deg": [ - 32 - ], - "enemy_blind_pr": [ - 32 - ], - "flash_assists_pr": [ - 32 - ], - "hs_pct": [ - 32 - ], - "kast_pct": [ - 32 - ], - "maps": [ - 32 - ], - "premier_rank": [ - 32 - ], - "rounds": [ - 32 - ], - "steam_id": [ - 32 - ], - "survival_pct": [ - 32 - ], - "time_to_damage_s": [ - 32 - ], - "traded_death_pct": [ - 32 - ], - "util_efficiency": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_career_stats_v_stddev_samp_fields": { - "accuracy": [ - 32 - ], - "accuracy_spotted": [ - 32 - ], - "counter_strafe_pct": [ - 32 - ], - "crosshair_deg": [ - 32 - ], - "enemy_blind_pr": [ - 32 - ], - "flash_assists_pr": [ - 32 - ], - "hs_pct": [ - 32 - ], - "kast_pct": [ - 32 - ], - "maps": [ - 32 - ], - "premier_rank": [ - 32 - ], - "rounds": [ - 32 - ], - "steam_id": [ - 32 - ], - "survival_pct": [ - 32 - ], - "time_to_damage_s": [ - 32 - ], - "traded_death_pct": [ - 32 - ], - "util_efficiency": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_career_stats_v_stream_cursor_input": { - "initial_value": [ - 3844 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "player_career_stats_v_stream_cursor_value_input": { - "accuracy": [ - 3646 - ], - "accuracy_spotted": [ - 3646 - ], - "counter_strafe_pct": [ - 3646 - ], - "crosshair_deg": [ - 3646 - ], - "enemy_blind_pr": [ - 3646 - ], - "flash_assists_pr": [ - 3646 - ], - "hs_pct": [ - 3646 - ], - "kast_pct": [ - 3646 - ], - "maps": [ - 41 - ], - "premier_rank": [ - 41 - ], - "rounds": [ - 41 - ], - "steam_id": [ - 312 - ], - "survival_pct": [ - 3646 - ], - "time_to_damage_s": [ - 3646 - ], - "traded_death_pct": [ - 3646 - ], - "util_efficiency": [ - 3646 - ], - "__typename": [ - 85 - ] - }, - "player_career_stats_v_sum_fields": { - "accuracy": [ - 3646 - ], - "accuracy_spotted": [ - 3646 - ], - "counter_strafe_pct": [ - 3646 - ], - "crosshair_deg": [ - 3646 - ], - "enemy_blind_pr": [ - 3646 - ], - "flash_assists_pr": [ - 3646 - ], - "hs_pct": [ - 3646 - ], - "kast_pct": [ - 3646 - ], - "maps": [ - 41 - ], - "premier_rank": [ - 41 - ], - "rounds": [ - 41 - ], - "steam_id": [ - 312 - ], - "survival_pct": [ - 3646 - ], - "time_to_damage_s": [ - 3646 - ], - "traded_death_pct": [ - 3646 - ], - "util_efficiency": [ - 3646 - ], - "__typename": [ - 85 - ] - }, - "player_career_stats_v_var_pop_fields": { - "accuracy": [ - 32 - ], - "accuracy_spotted": [ - 32 - ], - "counter_strafe_pct": [ - 32 - ], - "crosshair_deg": [ - 32 - ], - "enemy_blind_pr": [ - 32 - ], - "flash_assists_pr": [ - 32 - ], - "hs_pct": [ - 32 - ], - "kast_pct": [ - 32 - ], - "maps": [ - 32 - ], - "premier_rank": [ - 32 - ], - "rounds": [ - 32 - ], - "steam_id": [ - 32 - ], - "survival_pct": [ - 32 - ], - "time_to_damage_s": [ - 32 - ], - "traded_death_pct": [ - 32 - ], - "util_efficiency": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_career_stats_v_var_samp_fields": { - "accuracy": [ - 32 - ], - "accuracy_spotted": [ - 32 - ], - "counter_strafe_pct": [ - 32 - ], - "crosshair_deg": [ - 32 - ], - "enemy_blind_pr": [ - 32 - ], - "flash_assists_pr": [ - 32 - ], - "hs_pct": [ - 32 - ], - "kast_pct": [ - 32 - ], - "maps": [ - 32 - ], - "premier_rank": [ - 32 - ], - "rounds": [ - 32 - ], - "steam_id": [ - 32 - ], - "survival_pct": [ - 32 - ], - "time_to_damage_s": [ - 32 - ], - "traded_death_pct": [ - 32 - ], - "util_efficiency": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_career_stats_v_variance_fields": { - "accuracy": [ - 32 - ], - "accuracy_spotted": [ - 32 - ], - "counter_strafe_pct": [ - 32 - ], - "crosshair_deg": [ - 32 - ], - "enemy_blind_pr": [ - 32 - ], - "flash_assists_pr": [ - 32 - ], - "hs_pct": [ - 32 - ], - "kast_pct": [ - 32 - ], - "maps": [ - 32 - ], - "premier_rank": [ - 32 - ], - "rounds": [ - 32 - ], - "steam_id": [ - 32 - ], - "survival_pct": [ - 32 - ], - "time_to_damage_s": [ - 32 - ], - "traded_death_pct": [ - 32 - ], - "util_efficiency": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_damages": { - "armor": [ - 41 - ], - "attacked_location": [ - 85 - ], - "attacked_location_coordinates": [ - 85 - ], - "attacked_player": [ - 4606 - ], - "attacked_steam_id": [ - 312 - ], - "attacked_team": [ - 85 - ], - "attacker_location": [ - 85 - ], - "attacker_location_coordinates": [ - 85 - ], - "attacker_steam_id": [ - 312 - ], - "attacker_team": [ - 85 - ], - "damage": [ - 41 - ], - "damage_armor": [ - 41 - ], - "deleted_at": [ - 5243 - ], - "health": [ - 41 - ], - "hitgroup": [ - 85 - ], - "id": [ - 6672 - ], - "match": [ - 3432 - ], - "match_id": [ - 6672 - ], - "match_map": [ - 3248 - ], - "match_map_id": [ - 6672 - ], - "player": [ - 4606 - ], - "round": [ - 3646 - ], - "team_damage": [ - 6 - ], - "time": [ - 5243 - ], - "with": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "player_damages_aggregate": { - "aggregate": [ - 3853 - ], - "nodes": [ - 3849 - ], - "__typename": [ - 85 - ] - }, - "player_damages_aggregate_bool_exp": { - "count": [ - 3852 - ], - "__typename": [ - 85 - ] - }, - "player_damages_aggregate_bool_exp_count": { - "arguments": [ - 3870 - ], - "distinct": [ - 6 - ], - "filter": [ - 3858 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "player_damages_aggregate_fields": { - "avg": [ - 3856 - ], - "count": [ - 41, - { - "columns": [ - 3870, - "[player_damages_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 3862 - ], - "min": [ - 3864 - ], - "stddev": [ - 3872 - ], - "stddev_pop": [ - 3874 - ], - "stddev_samp": [ - 3876 - ], - "sum": [ - 3880 - ], - "var_pop": [ - 3884 - ], - "var_samp": [ - 3886 - ], - "variance": [ - 3888 - ], - "__typename": [ - 85 - ] - }, - "player_damages_aggregate_order_by": { - "avg": [ - 3857 - ], - "count": [ - 3648 - ], - "max": [ - 3863 - ], - "min": [ - 3865 - ], - "stddev": [ - 3873 - ], - "stddev_pop": [ - 3875 - ], - "stddev_samp": [ - 3877 - ], - "sum": [ - 3881 - ], - "var_pop": [ - 3885 - ], - "var_samp": [ - 3887 - ], - "variance": [ - 3889 - ], - "__typename": [ - 85 - ] - }, - "player_damages_arr_rel_insert_input": { - "data": [ - 3861 - ], - "on_conflict": [ - 3867 - ], - "__typename": [ - 85 - ] - }, - "player_damages_avg_fields": { - "armor": [ - 32 - ], - "attacked_steam_id": [ - 32 - ], - "attacker_steam_id": [ - 32 - ], - "damage": [ - 32 - ], - "damage_armor": [ - 32 - ], - "health": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_damages_avg_order_by": { - "armor": [ - 3648 - ], - "attacked_steam_id": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_armor": [ - 3648 - ], - "health": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_damages_bool_exp": { - "_and": [ - 3858 - ], - "_not": [ - 3858 - ], - "_or": [ - 3858 - ], - "armor": [ - 42 - ], - "attacked_location": [ - 87 - ], - "attacked_location_coordinates": [ - 87 - ], - "attacked_player": [ - 4610 - ], - "attacked_steam_id": [ - 314 - ], - "attacked_team": [ - 87 - ], - "attacker_location": [ - 87 - ], - "attacker_location_coordinates": [ - 87 - ], - "attacker_steam_id": [ - 314 - ], - "attacker_team": [ - 87 - ], - "damage": [ - 42 - ], - "damage_armor": [ - 42 - ], - "deleted_at": [ - 5244 - ], - "health": [ - 42 - ], - "hitgroup": [ - 87 - ], - "id": [ - 6674 - ], - "match": [ - 3443 - ], - "match_id": [ - 6674 - ], - "match_map": [ - 3257 - ], - "match_map_id": [ - 6674 - ], - "player": [ - 4610 - ], - "round": [ - 3647 - ], - "team_damage": [ - 7 - ], - "time": [ - 5244 - ], - "with": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "player_damages_constraint": {}, - "player_damages_inc_input": { - "armor": [ - 41 - ], - "attacked_steam_id": [ - 312 - ], - "attacker_steam_id": [ - 312 - ], - "damage": [ - 41 - ], - "damage_armor": [ - 41 - ], - "health": [ - 41 - ], - "round": [ - 3646 - ], - "__typename": [ - 85 - ] - }, - "player_damages_insert_input": { - "armor": [ - 41 - ], - "attacked_location": [ - 85 - ], - "attacked_location_coordinates": [ - 85 - ], - "attacked_player": [ - 4617 - ], - "attacked_steam_id": [ - 312 - ], - "attacked_team": [ - 85 - ], - "attacker_location": [ - 85 - ], - "attacker_location_coordinates": [ - 85 - ], - "attacker_steam_id": [ - 312 - ], - "attacker_team": [ - 85 - ], - "damage": [ - 41 - ], - "damage_armor": [ - 41 - ], - "deleted_at": [ - 5243 - ], - "health": [ - 41 - ], - "hitgroup": [ - 85 - ], - "id": [ - 6672 - ], - "match": [ - 3452 - ], - "match_id": [ - 6672 - ], - "match_map": [ - 3266 - ], - "match_map_id": [ - 6672 - ], - "player": [ - 4617 - ], - "round": [ - 3646 - ], - "time": [ - 5243 - ], - "with": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "player_damages_max_fields": { - "armor": [ - 41 - ], - "attacked_location": [ - 85 - ], - "attacked_location_coordinates": [ - 85 - ], - "attacked_steam_id": [ - 312 - ], - "attacked_team": [ - 85 - ], - "attacker_location": [ - 85 - ], - "attacker_location_coordinates": [ - 85 - ], - "attacker_steam_id": [ - 312 - ], - "attacker_team": [ - 85 - ], - "damage": [ - 41 - ], - "damage_armor": [ - 41 - ], - "deleted_at": [ - 5243 - ], - "health": [ - 41 - ], - "hitgroup": [ - 85 - ], - "id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "round": [ - 3646 - ], - "time": [ - 5243 - ], - "with": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "player_damages_max_order_by": { - "armor": [ - 3648 - ], - "attacked_location": [ - 3648 - ], - "attacked_location_coordinates": [ - 3648 - ], - "attacked_steam_id": [ - 3648 - ], - "attacked_team": [ - 3648 - ], - "attacker_location": [ - 3648 - ], - "attacker_location_coordinates": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "attacker_team": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_armor": [ - 3648 - ], - "deleted_at": [ - 3648 - ], - "health": [ - 3648 - ], - "hitgroup": [ - 3648 - ], - "id": [ - 3648 - ], - "match_id": [ - 3648 - ], - "match_map_id": [ - 3648 - ], - "round": [ - 3648 - ], - "time": [ - 3648 - ], - "with": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_damages_min_fields": { - "armor": [ - 41 - ], - "attacked_location": [ - 85 - ], - "attacked_location_coordinates": [ - 85 - ], - "attacked_steam_id": [ - 312 - ], - "attacked_team": [ - 85 - ], - "attacker_location": [ - 85 - ], - "attacker_location_coordinates": [ - 85 - ], - "attacker_steam_id": [ - 312 - ], - "attacker_team": [ - 85 - ], - "damage": [ - 41 - ], - "damage_armor": [ - 41 - ], - "deleted_at": [ - 5243 - ], - "health": [ - 41 - ], - "hitgroup": [ - 85 - ], - "id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "round": [ - 3646 - ], - "time": [ - 5243 - ], - "with": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "player_damages_min_order_by": { - "armor": [ - 3648 - ], - "attacked_location": [ - 3648 - ], - "attacked_location_coordinates": [ - 3648 - ], - "attacked_steam_id": [ - 3648 - ], - "attacked_team": [ - 3648 - ], - "attacker_location": [ - 3648 - ], - "attacker_location_coordinates": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "attacker_team": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_armor": [ - 3648 - ], - "deleted_at": [ - 3648 - ], - "health": [ - 3648 - ], - "hitgroup": [ - 3648 - ], - "id": [ - 3648 - ], - "match_id": [ - 3648 - ], - "match_map_id": [ - 3648 - ], - "round": [ - 3648 - ], - "time": [ - 3648 - ], - "with": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_damages_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 3849 - ], - "__typename": [ - 85 - ] - }, - "player_damages_on_conflict": { - "constraint": [ - 3859 - ], - "update_columns": [ - 3882 - ], - "where": [ - 3858 - ], - "__typename": [ - 85 - ] - }, - "player_damages_order_by": { - "armor": [ - 3648 - ], - "attacked_location": [ - 3648 - ], - "attacked_location_coordinates": [ - 3648 - ], - "attacked_player": [ - 4619 - ], - "attacked_steam_id": [ - 3648 - ], - "attacked_team": [ - 3648 - ], - "attacker_location": [ - 3648 - ], - "attacker_location_coordinates": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "attacker_team": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_armor": [ - 3648 - ], - "deleted_at": [ - 3648 - ], - "health": [ - 3648 - ], - "hitgroup": [ - 3648 - ], - "id": [ - 3648 - ], - "match": [ - 3454 - ], - "match_id": [ - 3648 - ], - "match_map": [ - 3268 - ], - "match_map_id": [ - 3648 - ], - "player": [ - 4619 - ], - "round": [ - 3648 - ], - "team_damage": [ - 3648 - ], - "time": [ - 3648 - ], - "with": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_damages_pk_columns_input": { - "id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "time": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "player_damages_select_column": {}, - "player_damages_set_input": { - "armor": [ - 41 - ], - "attacked_location": [ - 85 - ], - "attacked_location_coordinates": [ - 85 - ], - "attacked_steam_id": [ - 312 - ], - "attacked_team": [ - 85 - ], - "attacker_location": [ - 85 - ], - "attacker_location_coordinates": [ - 85 - ], - "attacker_steam_id": [ - 312 - ], - "attacker_team": [ - 85 - ], - "damage": [ - 41 - ], - "damage_armor": [ - 41 - ], - "deleted_at": [ - 5243 - ], - "health": [ - 41 - ], - "hitgroup": [ - 85 - ], - "id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "round": [ - 3646 - ], - "time": [ - 5243 - ], - "with": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "player_damages_stddev_fields": { - "armor": [ - 32 - ], - "attacked_steam_id": [ - 32 - ], - "attacker_steam_id": [ - 32 - ], - "damage": [ - 32 - ], - "damage_armor": [ - 32 - ], - "health": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_damages_stddev_order_by": { - "armor": [ - 3648 - ], - "attacked_steam_id": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_armor": [ - 3648 - ], - "health": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_damages_stddev_pop_fields": { - "armor": [ - 32 - ], - "attacked_steam_id": [ - 32 - ], - "attacker_steam_id": [ - 32 - ], - "damage": [ - 32 - ], - "damage_armor": [ - 32 - ], - "health": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_damages_stddev_pop_order_by": { - "armor": [ - 3648 - ], - "attacked_steam_id": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_armor": [ - 3648 - ], - "health": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_damages_stddev_samp_fields": { - "armor": [ - 32 - ], - "attacked_steam_id": [ - 32 - ], - "attacker_steam_id": [ - 32 - ], - "damage": [ - 32 - ], - "damage_armor": [ - 32 - ], - "health": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_damages_stddev_samp_order_by": { - "armor": [ - 3648 - ], - "attacked_steam_id": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_armor": [ - 3648 - ], - "health": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_damages_stream_cursor_input": { - "initial_value": [ - 3879 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "player_damages_stream_cursor_value_input": { - "armor": [ - 41 - ], - "attacked_location": [ - 85 - ], - "attacked_location_coordinates": [ - 85 - ], - "attacked_steam_id": [ - 312 - ], - "attacked_team": [ - 85 - ], - "attacker_location": [ - 85 - ], - "attacker_location_coordinates": [ - 85 - ], - "attacker_steam_id": [ - 312 - ], - "attacker_team": [ - 85 - ], - "damage": [ - 41 - ], - "damage_armor": [ - 41 - ], - "deleted_at": [ - 5243 - ], - "health": [ - 41 - ], - "hitgroup": [ - 85 - ], - "id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "round": [ - 3646 - ], - "time": [ - 5243 - ], - "with": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "player_damages_sum_fields": { - "armor": [ - 41 - ], - "attacked_steam_id": [ - 312 - ], - "attacker_steam_id": [ - 312 - ], - "damage": [ - 41 - ], - "damage_armor": [ - 41 - ], - "health": [ - 41 - ], - "round": [ - 3646 - ], - "__typename": [ - 85 - ] - }, - "player_damages_sum_order_by": { - "armor": [ - 3648 - ], - "attacked_steam_id": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_armor": [ - 3648 - ], - "health": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_damages_update_column": {}, - "player_damages_updates": { - "_inc": [ - 3860 - ], - "_set": [ - 3871 - ], - "where": [ - 3858 - ], - "__typename": [ - 85 - ] - }, - "player_damages_var_pop_fields": { - "armor": [ - 32 - ], - "attacked_steam_id": [ - 32 - ], - "attacker_steam_id": [ - 32 - ], - "damage": [ - 32 - ], - "damage_armor": [ - 32 - ], - "health": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_damages_var_pop_order_by": { - "armor": [ - 3648 - ], - "attacked_steam_id": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_armor": [ - 3648 - ], - "health": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_damages_var_samp_fields": { - "armor": [ - 32 - ], - "attacked_steam_id": [ - 32 - ], - "attacker_steam_id": [ - 32 - ], - "damage": [ - 32 - ], - "damage_armor": [ - 32 - ], - "health": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_damages_var_samp_order_by": { - "armor": [ - 3648 - ], - "attacked_steam_id": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_armor": [ - 3648 - ], - "health": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_damages_variance_fields": { - "armor": [ - 32 - ], - "attacked_steam_id": [ - 32 - ], - "attacker_steam_id": [ - 32 - ], - "damage": [ - 32 - ], - "damage_armor": [ - 32 - ], - "health": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_damages_variance_order_by": { - "armor": [ - 3648 - ], - "attacked_steam_id": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_armor": [ - 3648 - ], - "health": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_elo": { - "actual_score": [ - 2093 - ], - "assists": [ - 41 - ], - "change": [ - 3646 - ], - "created_at": [ - 5243 - ], - "current": [ - 3646 - ], - "damage": [ - 41 - ], - "damage_percent": [ - 2093 - ], - "deaths": [ - 41 - ], - "expected_score": [ - 2093 - ], - "impact": [ - 3646 - ], - "k_factor": [ - 41 - ], - "kda": [ - 2093 - ], - "kills": [ - 41 - ], - "map_losses": [ - 41 - ], - "map_wins": [ - 41 - ], - "match": [ - 3432 - ], - "match_id": [ - 6672 - ], - "opponent_team_elo_avg": [ - 2093 - ], - "performance_multiplier": [ - 2093 - ], - "player": [ - 4606 - ], - "player_team_elo_avg": [ - 2093 - ], - "rating_for_expected": [ - 2093 - ], - "season": [ - 4706 - ], - "season_id": [ - 6672 - ], - "series_multiplier": [ - 41 - ], - "steam_id": [ - 312 - ], - "team_avg_kda": [ - 2093 - ], - "type": [ - 1225 - ], - "__typename": [ - 85 - ] - }, - "player_elo_aggregate": { - "aggregate": [ - 3892 - ], - "nodes": [ - 3890 - ], - "__typename": [ - 85 - ] - }, - "player_elo_aggregate_fields": { - "avg": [ - 3893 - ], - "count": [ - 41, - { - "columns": [ - 3904, - "[player_elo_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 3898 - ], - "min": [ - 3899 - ], - "stddev": [ - 3906 - ], - "stddev_pop": [ - 3907 - ], - "stddev_samp": [ - 3908 - ], - "sum": [ - 3911 - ], - "var_pop": [ - 3914 - ], - "var_samp": [ - 3915 - ], - "variance": [ - 3916 - ], - "__typename": [ - 85 - ] - }, - "player_elo_avg_fields": { - "actual_score": [ - 32 - ], - "assists": [ - 32 - ], - "change": [ - 32 - ], - "current": [ - 32 - ], - "damage": [ - 32 - ], - "damage_percent": [ - 32 - ], - "deaths": [ - 32 - ], - "expected_score": [ - 32 - ], - "impact": [ - 32 - ], - "k_factor": [ - 32 - ], - "kda": [ - 32 - ], - "kills": [ - 32 - ], - "map_losses": [ - 32 - ], - "map_wins": [ - 32 - ], - "opponent_team_elo_avg": [ - 32 - ], - "performance_multiplier": [ - 32 - ], - "player_team_elo_avg": [ - 32 - ], - "rating_for_expected": [ - 32 - ], - "series_multiplier": [ - 32 - ], - "steam_id": [ - 32 - ], - "team_avg_kda": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_elo_bool_exp": { - "_and": [ - 3894 - ], - "_not": [ - 3894 - ], - "_or": [ - 3894 - ], - "actual_score": [ - 2094 - ], - "assists": [ - 42 - ], - "change": [ - 3647 - ], - "created_at": [ - 5244 - ], - "current": [ - 3647 - ], - "damage": [ - 42 - ], - "damage_percent": [ - 2094 - ], - "deaths": [ - 42 - ], - "expected_score": [ - 2094 - ], - "impact": [ - 3647 - ], - "k_factor": [ - 42 - ], - "kda": [ - 2094 - ], - "kills": [ - 42 - ], - "map_losses": [ - 42 - ], - "map_wins": [ - 42 - ], - "match": [ - 3443 - ], - "match_id": [ - 6674 - ], - "opponent_team_elo_avg": [ - 2094 - ], - "performance_multiplier": [ - 2094 - ], - "player": [ - 4610 - ], - "player_team_elo_avg": [ - 2094 - ], - "rating_for_expected": [ - 2094 - ], - "season": [ - 4710 - ], - "season_id": [ - 6674 - ], - "series_multiplier": [ - 42 - ], - "steam_id": [ - 314 - ], - "team_avg_kda": [ - 2094 - ], - "type": [ - 1226 - ], - "__typename": [ - 85 - ] - }, - "player_elo_constraint": {}, - "player_elo_inc_input": { - "actual_score": [ - 2093 - ], - "assists": [ - 41 - ], - "change": [ - 3646 - ], - "current": [ - 3646 - ], - "damage": [ - 41 - ], - "damage_percent": [ - 2093 - ], - "deaths": [ - 41 - ], - "expected_score": [ - 2093 - ], - "impact": [ - 3646 - ], - "k_factor": [ - 41 - ], - "kda": [ - 2093 - ], - "kills": [ - 41 - ], - "map_losses": [ - 41 - ], - "map_wins": [ - 41 - ], - "opponent_team_elo_avg": [ - 2093 - ], - "performance_multiplier": [ - 2093 - ], - "player_team_elo_avg": [ - 2093 - ], - "rating_for_expected": [ - 2093 - ], - "series_multiplier": [ - 41 - ], - "steam_id": [ - 312 - ], - "team_avg_kda": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "player_elo_insert_input": { - "actual_score": [ - 2093 - ], - "assists": [ - 41 - ], - "change": [ - 3646 - ], - "created_at": [ - 5243 - ], - "current": [ - 3646 - ], - "damage": [ - 41 - ], - "damage_percent": [ - 2093 - ], - "deaths": [ - 41 - ], - "expected_score": [ - 2093 - ], - "impact": [ - 3646 - ], - "k_factor": [ - 41 - ], - "kda": [ - 2093 - ], - "kills": [ - 41 - ], - "map_losses": [ - 41 - ], - "map_wins": [ - 41 - ], - "match": [ - 3452 - ], - "match_id": [ - 6672 - ], - "opponent_team_elo_avg": [ - 2093 - ], - "performance_multiplier": [ - 2093 - ], - "player": [ - 4617 - ], - "player_team_elo_avg": [ - 2093 - ], - "rating_for_expected": [ - 2093 - ], - "season": [ - 4717 - ], - "season_id": [ - 6672 - ], - "series_multiplier": [ - 41 - ], - "steam_id": [ - 312 - ], - "team_avg_kda": [ - 2093 - ], - "type": [ - 1225 - ], - "__typename": [ - 85 - ] - }, - "player_elo_max_fields": { - "actual_score": [ - 2093 - ], - "assists": [ - 41 - ], - "change": [ - 3646 - ], - "created_at": [ - 5243 - ], - "current": [ - 3646 - ], - "damage": [ - 41 - ], - "damage_percent": [ - 2093 - ], - "deaths": [ - 41 - ], - "expected_score": [ - 2093 - ], - "impact": [ - 3646 - ], - "k_factor": [ - 41 - ], - "kda": [ - 2093 - ], - "kills": [ - 41 - ], - "map_losses": [ - 41 - ], - "map_wins": [ - 41 - ], - "match_id": [ - 6672 - ], - "opponent_team_elo_avg": [ - 2093 - ], - "performance_multiplier": [ - 2093 - ], - "player_team_elo_avg": [ - 2093 - ], - "rating_for_expected": [ - 2093 - ], - "season_id": [ - 6672 - ], - "series_multiplier": [ - 41 - ], - "steam_id": [ - 312 - ], - "team_avg_kda": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "player_elo_min_fields": { - "actual_score": [ - 2093 - ], - "assists": [ - 41 - ], - "change": [ - 3646 - ], - "created_at": [ - 5243 - ], - "current": [ - 3646 - ], - "damage": [ - 41 - ], - "damage_percent": [ - 2093 - ], - "deaths": [ - 41 - ], - "expected_score": [ - 2093 - ], - "impact": [ - 3646 - ], - "k_factor": [ - 41 - ], - "kda": [ - 2093 - ], - "kills": [ - 41 - ], - "map_losses": [ - 41 - ], - "map_wins": [ - 41 - ], - "match_id": [ - 6672 - ], - "opponent_team_elo_avg": [ - 2093 - ], - "performance_multiplier": [ - 2093 - ], - "player_team_elo_avg": [ - 2093 - ], - "rating_for_expected": [ - 2093 - ], - "season_id": [ - 6672 - ], - "series_multiplier": [ - 41 - ], - "steam_id": [ - 312 - ], - "team_avg_kda": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "player_elo_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 3890 - ], - "__typename": [ - 85 - ] - }, - "player_elo_on_conflict": { - "constraint": [ - 3895 - ], - "update_columns": [ - 3912 - ], - "where": [ - 3894 - ], - "__typename": [ - 85 - ] - }, - "player_elo_order_by": { - "actual_score": [ - 3648 - ], - "assists": [ - 3648 - ], - "change": [ - 3648 - ], - "created_at": [ - 3648 - ], - "current": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_percent": [ - 3648 - ], - "deaths": [ - 3648 - ], - "expected_score": [ - 3648 - ], - "impact": [ - 3648 - ], - "k_factor": [ - 3648 - ], - "kda": [ - 3648 - ], - "kills": [ - 3648 - ], - "map_losses": [ - 3648 - ], - "map_wins": [ - 3648 - ], - "match": [ - 3454 - ], - "match_id": [ - 3648 - ], - "opponent_team_elo_avg": [ - 3648 - ], - "performance_multiplier": [ - 3648 - ], - "player": [ - 4619 - ], - "player_team_elo_avg": [ - 3648 - ], - "rating_for_expected": [ - 3648 - ], - "season": [ - 4719 - ], - "season_id": [ - 3648 - ], - "series_multiplier": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "team_avg_kda": [ - 3648 - ], - "type": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_elo_pk_columns_input": { - "match_id": [ - 6672 - ], - "steam_id": [ - 312 - ], - "type": [ - 1225 - ], - "__typename": [ - 85 - ] - }, - "player_elo_select_column": {}, - "player_elo_set_input": { - "actual_score": [ - 2093 - ], - "assists": [ - 41 - ], - "change": [ - 3646 - ], - "created_at": [ - 5243 - ], - "current": [ - 3646 - ], - "damage": [ - 41 - ], - "damage_percent": [ - 2093 - ], - "deaths": [ - 41 - ], - "expected_score": [ - 2093 - ], - "impact": [ - 3646 - ], - "k_factor": [ - 41 - ], - "kda": [ - 2093 - ], - "kills": [ - 41 - ], - "map_losses": [ - 41 - ], - "map_wins": [ - 41 - ], - "match_id": [ - 6672 - ], - "opponent_team_elo_avg": [ - 2093 - ], - "performance_multiplier": [ - 2093 - ], - "player_team_elo_avg": [ - 2093 - ], - "rating_for_expected": [ - 2093 - ], - "season_id": [ - 6672 - ], - "series_multiplier": [ - 41 - ], - "steam_id": [ - 312 - ], - "team_avg_kda": [ - 2093 - ], - "type": [ - 1225 - ], - "__typename": [ - 85 - ] - }, - "player_elo_stddev_fields": { - "actual_score": [ - 32 - ], - "assists": [ - 32 - ], - "change": [ - 32 - ], - "current": [ - 32 - ], - "damage": [ - 32 - ], - "damage_percent": [ - 32 - ], - "deaths": [ - 32 - ], - "expected_score": [ - 32 - ], - "impact": [ - 32 - ], - "k_factor": [ - 32 - ], - "kda": [ - 32 - ], - "kills": [ - 32 - ], - "map_losses": [ - 32 - ], - "map_wins": [ - 32 - ], - "opponent_team_elo_avg": [ - 32 - ], - "performance_multiplier": [ - 32 - ], - "player_team_elo_avg": [ - 32 - ], - "rating_for_expected": [ - 32 - ], - "series_multiplier": [ - 32 - ], - "steam_id": [ - 32 - ], - "team_avg_kda": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_elo_stddev_pop_fields": { - "actual_score": [ - 32 - ], - "assists": [ - 32 - ], - "change": [ - 32 - ], - "current": [ - 32 - ], - "damage": [ - 32 - ], - "damage_percent": [ - 32 - ], - "deaths": [ - 32 - ], - "expected_score": [ - 32 - ], - "impact": [ - 32 - ], - "k_factor": [ - 32 - ], - "kda": [ - 32 - ], - "kills": [ - 32 - ], - "map_losses": [ - 32 - ], - "map_wins": [ - 32 - ], - "opponent_team_elo_avg": [ - 32 - ], - "performance_multiplier": [ - 32 - ], - "player_team_elo_avg": [ - 32 - ], - "rating_for_expected": [ - 32 - ], - "series_multiplier": [ - 32 - ], - "steam_id": [ - 32 - ], - "team_avg_kda": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_elo_stddev_samp_fields": { - "actual_score": [ - 32 - ], - "assists": [ - 32 - ], - "change": [ - 32 - ], - "current": [ - 32 - ], - "damage": [ - 32 - ], - "damage_percent": [ - 32 - ], - "deaths": [ - 32 - ], - "expected_score": [ - 32 - ], - "impact": [ - 32 - ], - "k_factor": [ - 32 - ], - "kda": [ - 32 - ], - "kills": [ - 32 - ], - "map_losses": [ - 32 - ], - "map_wins": [ - 32 - ], - "opponent_team_elo_avg": [ - 32 - ], - "performance_multiplier": [ - 32 - ], - "player_team_elo_avg": [ - 32 - ], - "rating_for_expected": [ - 32 - ], - "series_multiplier": [ - 32 - ], - "steam_id": [ - 32 - ], - "team_avg_kda": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_elo_stream_cursor_input": { - "initial_value": [ - 3910 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "player_elo_stream_cursor_value_input": { - "actual_score": [ - 2093 - ], - "assists": [ - 41 - ], - "change": [ - 3646 - ], - "created_at": [ - 5243 - ], - "current": [ - 3646 - ], - "damage": [ - 41 - ], - "damage_percent": [ - 2093 - ], - "deaths": [ - 41 - ], - "expected_score": [ - 2093 - ], - "impact": [ - 3646 - ], - "k_factor": [ - 41 - ], - "kda": [ - 2093 - ], - "kills": [ - 41 - ], - "map_losses": [ - 41 - ], - "map_wins": [ - 41 - ], - "match_id": [ - 6672 - ], - "opponent_team_elo_avg": [ - 2093 - ], - "performance_multiplier": [ - 2093 - ], - "player_team_elo_avg": [ - 2093 - ], - "rating_for_expected": [ - 2093 - ], - "season_id": [ - 6672 - ], - "series_multiplier": [ - 41 - ], - "steam_id": [ - 312 - ], - "team_avg_kda": [ - 2093 - ], - "type": [ - 1225 - ], - "__typename": [ - 85 - ] - }, - "player_elo_sum_fields": { - "actual_score": [ - 2093 - ], - "assists": [ - 41 - ], - "change": [ - 3646 - ], - "current": [ - 3646 - ], - "damage": [ - 41 - ], - "damage_percent": [ - 2093 - ], - "deaths": [ - 41 - ], - "expected_score": [ - 2093 - ], - "impact": [ - 3646 - ], - "k_factor": [ - 41 - ], - "kda": [ - 2093 - ], - "kills": [ - 41 - ], - "map_losses": [ - 41 - ], - "map_wins": [ - 41 - ], - "opponent_team_elo_avg": [ - 2093 - ], - "performance_multiplier": [ - 2093 - ], - "player_team_elo_avg": [ - 2093 - ], - "rating_for_expected": [ - 2093 - ], - "series_multiplier": [ - 41 - ], - "steam_id": [ - 312 - ], - "team_avg_kda": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "player_elo_update_column": {}, - "player_elo_updates": { - "_inc": [ - 3896 - ], - "_set": [ - 3905 - ], - "where": [ - 3894 - ], - "__typename": [ - 85 - ] - }, - "player_elo_var_pop_fields": { - "actual_score": [ - 32 - ], - "assists": [ - 32 - ], - "change": [ - 32 - ], - "current": [ - 32 - ], - "damage": [ - 32 - ], - "damage_percent": [ - 32 - ], - "deaths": [ - 32 - ], - "expected_score": [ - 32 - ], - "impact": [ - 32 - ], - "k_factor": [ - 32 - ], - "kda": [ - 32 - ], - "kills": [ - 32 - ], - "map_losses": [ - 32 - ], - "map_wins": [ - 32 - ], - "opponent_team_elo_avg": [ - 32 - ], - "performance_multiplier": [ - 32 - ], - "player_team_elo_avg": [ - 32 - ], - "rating_for_expected": [ - 32 - ], - "series_multiplier": [ - 32 - ], - "steam_id": [ - 32 - ], - "team_avg_kda": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_elo_var_samp_fields": { - "actual_score": [ - 32 - ], - "assists": [ - 32 - ], - "change": [ - 32 - ], - "current": [ - 32 - ], - "damage": [ - 32 - ], - "damage_percent": [ - 32 - ], - "deaths": [ - 32 - ], - "expected_score": [ - 32 - ], - "impact": [ - 32 - ], - "k_factor": [ - 32 - ], - "kda": [ - 32 - ], - "kills": [ - 32 - ], - "map_losses": [ - 32 - ], - "map_wins": [ - 32 - ], - "opponent_team_elo_avg": [ - 32 - ], - "performance_multiplier": [ - 32 - ], - "player_team_elo_avg": [ - 32 - ], - "rating_for_expected": [ - 32 - ], - "series_multiplier": [ - 32 - ], - "steam_id": [ - 32 - ], - "team_avg_kda": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_elo_variance_fields": { - "actual_score": [ - 32 - ], - "assists": [ - 32 - ], - "change": [ - 32 - ], - "current": [ - 32 - ], - "damage": [ - 32 - ], - "damage_percent": [ - 32 - ], - "deaths": [ - 32 - ], - "expected_score": [ - 32 - ], - "impact": [ - 32 - ], - "k_factor": [ - 32 - ], - "kda": [ - 32 - ], - "kills": [ - 32 - ], - "map_losses": [ - 32 - ], - "map_wins": [ - 32 - ], - "opponent_team_elo_avg": [ - 32 - ], - "performance_multiplier": [ - 32 - ], - "player_team_elo_avg": [ - 32 - ], - "rating_for_expected": [ - 32 - ], - "series_multiplier": [ - 32 - ], - "steam_id": [ - 32 - ], - "team_avg_kda": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_faceit_rank_history": { - "elo": [ - 41 - ], - "id": [ - 6672 - ], - "match": [ - 3432 - ], - "match_id": [ - 6672 - ], - "observed_at": [ - 5243 - ], - "player": [ - 4606 - ], - "previous_rank": [ - 41 - ], - "skill_level": [ - 41 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "player_faceit_rank_history_aggregate": { - "aggregate": [ - 3921 - ], - "nodes": [ - 3917 - ], - "__typename": [ - 85 - ] - }, - "player_faceit_rank_history_aggregate_bool_exp": { - "count": [ - 3920 - ], - "__typename": [ - 85 - ] - }, - "player_faceit_rank_history_aggregate_bool_exp_count": { - "arguments": [ - 3938 - ], - "distinct": [ - 6 - ], - "filter": [ - 3926 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "player_faceit_rank_history_aggregate_fields": { - "avg": [ - 3924 - ], - "count": [ - 41, - { - "columns": [ - 3938, - "[player_faceit_rank_history_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 3930 - ], - "min": [ - 3932 - ], - "stddev": [ - 3940 - ], - "stddev_pop": [ - 3942 - ], - "stddev_samp": [ - 3944 - ], - "sum": [ - 3948 - ], - "var_pop": [ - 3952 - ], - "var_samp": [ - 3954 - ], - "variance": [ - 3956 - ], - "__typename": [ - 85 - ] - }, - "player_faceit_rank_history_aggregate_order_by": { - "avg": [ - 3925 - ], - "count": [ - 3648 - ], - "max": [ - 3931 - ], - "min": [ - 3933 - ], - "stddev": [ - 3941 - ], - "stddev_pop": [ - 3943 - ], - "stddev_samp": [ - 3945 - ], - "sum": [ - 3949 - ], - "var_pop": [ - 3953 - ], - "var_samp": [ - 3955 - ], - "variance": [ - 3957 - ], - "__typename": [ - 85 - ] - }, - "player_faceit_rank_history_arr_rel_insert_input": { - "data": [ - 3929 - ], - "on_conflict": [ - 3935 - ], - "__typename": [ - 85 - ] - }, - "player_faceit_rank_history_avg_fields": { - "elo": [ - 32 - ], - "previous_rank": [ - 32 - ], - "skill_level": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_faceit_rank_history_avg_order_by": { - "elo": [ - 3648 - ], - "previous_rank": [ - 3648 - ], - "skill_level": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_faceit_rank_history_bool_exp": { - "_and": [ - 3926 - ], - "_not": [ - 3926 - ], - "_or": [ - 3926 - ], - "elo": [ - 42 - ], - "id": [ - 6674 - ], - "match": [ - 3443 - ], - "match_id": [ - 6674 - ], - "observed_at": [ - 5244 - ], - "player": [ - 4610 - ], - "previous_rank": [ - 42 - ], - "skill_level": [ - 42 - ], - "steam_id": [ - 314 - ], - "__typename": [ - 85 - ] - }, - "player_faceit_rank_history_constraint": {}, - "player_faceit_rank_history_inc_input": { - "elo": [ - 41 - ], - "previous_rank": [ - 41 - ], - "skill_level": [ - 41 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "player_faceit_rank_history_insert_input": { - "elo": [ - 41 - ], - "id": [ - 6672 - ], - "match": [ - 3452 - ], - "match_id": [ - 6672 - ], - "observed_at": [ - 5243 - ], - "player": [ - 4617 - ], - "previous_rank": [ - 41 - ], - "skill_level": [ - 41 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "player_faceit_rank_history_max_fields": { - "elo": [ - 41 - ], - "id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "observed_at": [ - 5243 - ], - "previous_rank": [ - 41 - ], - "skill_level": [ - 41 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "player_faceit_rank_history_max_order_by": { - "elo": [ - 3648 - ], - "id": [ - 3648 - ], - "match_id": [ - 3648 - ], - "observed_at": [ - 3648 - ], - "previous_rank": [ - 3648 - ], - "skill_level": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_faceit_rank_history_min_fields": { - "elo": [ - 41 - ], - "id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "observed_at": [ - 5243 - ], - "previous_rank": [ - 41 - ], - "skill_level": [ - 41 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "player_faceit_rank_history_min_order_by": { - "elo": [ - 3648 - ], - "id": [ - 3648 - ], - "match_id": [ - 3648 - ], - "observed_at": [ - 3648 - ], - "previous_rank": [ - 3648 - ], - "skill_level": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_faceit_rank_history_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 3917 - ], - "__typename": [ - 85 - ] - }, - "player_faceit_rank_history_on_conflict": { - "constraint": [ - 3927 - ], - "update_columns": [ - 3950 - ], - "where": [ - 3926 - ], - "__typename": [ - 85 - ] - }, - "player_faceit_rank_history_order_by": { - "elo": [ - 3648 - ], - "id": [ - 3648 - ], - "match": [ - 3454 - ], - "match_id": [ - 3648 - ], - "observed_at": [ - 3648 - ], - "player": [ - 4619 - ], - "previous_rank": [ - 3648 - ], - "skill_level": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_faceit_rank_history_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "player_faceit_rank_history_select_column": {}, - "player_faceit_rank_history_set_input": { - "elo": [ - 41 - ], - "id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "observed_at": [ - 5243 - ], - "previous_rank": [ - 41 - ], - "skill_level": [ - 41 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "player_faceit_rank_history_stddev_fields": { - "elo": [ - 32 - ], - "previous_rank": [ - 32 - ], - "skill_level": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_faceit_rank_history_stddev_order_by": { - "elo": [ - 3648 - ], - "previous_rank": [ - 3648 - ], - "skill_level": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_faceit_rank_history_stddev_pop_fields": { - "elo": [ - 32 - ], - "previous_rank": [ - 32 - ], - "skill_level": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_faceit_rank_history_stddev_pop_order_by": { - "elo": [ - 3648 - ], - "previous_rank": [ - 3648 - ], - "skill_level": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_faceit_rank_history_stddev_samp_fields": { - "elo": [ - 32 - ], - "previous_rank": [ - 32 - ], - "skill_level": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_faceit_rank_history_stddev_samp_order_by": { - "elo": [ - 3648 - ], - "previous_rank": [ - 3648 - ], - "skill_level": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_faceit_rank_history_stream_cursor_input": { - "initial_value": [ - 3947 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "player_faceit_rank_history_stream_cursor_value_input": { - "elo": [ - 41 - ], - "id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "observed_at": [ - 5243 - ], - "previous_rank": [ - 41 - ], - "skill_level": [ - 41 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "player_faceit_rank_history_sum_fields": { - "elo": [ - 41 - ], - "previous_rank": [ - 41 - ], - "skill_level": [ - 41 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "player_faceit_rank_history_sum_order_by": { - "elo": [ - 3648 - ], - "previous_rank": [ - 3648 - ], - "skill_level": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_faceit_rank_history_update_column": {}, - "player_faceit_rank_history_updates": { - "_inc": [ - 3928 - ], - "_set": [ - 3939 - ], - "where": [ - 3926 - ], - "__typename": [ - 85 - ] - }, - "player_faceit_rank_history_var_pop_fields": { - "elo": [ - 32 - ], - "previous_rank": [ - 32 - ], - "skill_level": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_faceit_rank_history_var_pop_order_by": { - "elo": [ - 3648 - ], - "previous_rank": [ - 3648 - ], - "skill_level": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_faceit_rank_history_var_samp_fields": { - "elo": [ - 32 - ], - "previous_rank": [ - 32 - ], - "skill_level": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_faceit_rank_history_var_samp_order_by": { - "elo": [ - 3648 - ], - "previous_rank": [ - 3648 - ], - "skill_level": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_faceit_rank_history_variance_fields": { - "elo": [ - 32 - ], - "previous_rank": [ - 32 - ], - "skill_level": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_faceit_rank_history_variance_order_by": { - "elo": [ - 3648 - ], - "previous_rank": [ - 3648 - ], - "skill_level": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_flashes": { - "attacked_steam_id": [ - 312 - ], - "attacker_steam_id": [ - 312 - ], - "blinded": [ - 4606 - ], - "deleted_at": [ - 5243 - ], - "duration": [ - 3646 - ], - "match": [ - 3432 - ], - "match_id": [ - 6672 - ], - "match_map": [ - 3248 - ], - "match_map_id": [ - 6672 - ], - "round": [ - 41 - ], - "team_flash": [ - 6 - ], - "thrown_by": [ - 4606 - ], - "time": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "player_flashes_aggregate": { - "aggregate": [ - 3964 - ], - "nodes": [ - 3958 - ], - "__typename": [ - 85 - ] - }, - "player_flashes_aggregate_bool_exp": { - "bool_and": [ - 3961 - ], - "bool_or": [ - 3962 - ], - "count": [ - 3963 - ], - "__typename": [ - 85 - ] - }, - "player_flashes_aggregate_bool_exp_bool_and": { - "arguments": [ - 3982 - ], - "distinct": [ - 6 - ], - "filter": [ - 3969 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "player_flashes_aggregate_bool_exp_bool_or": { - "arguments": [ - 3983 - ], - "distinct": [ - 6 - ], - "filter": [ - 3969 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "player_flashes_aggregate_bool_exp_count": { - "arguments": [ - 3981 - ], - "distinct": [ - 6 - ], - "filter": [ - 3969 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "player_flashes_aggregate_fields": { - "avg": [ - 3967 - ], - "count": [ - 41, - { - "columns": [ - 3981, - "[player_flashes_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 3973 - ], - "min": [ - 3975 - ], - "stddev": [ - 3985 - ], - "stddev_pop": [ - 3987 - ], - "stddev_samp": [ - 3989 - ], - "sum": [ - 3993 - ], - "var_pop": [ - 3997 - ], - "var_samp": [ - 3999 - ], - "variance": [ - 4001 - ], - "__typename": [ - 85 - ] - }, - "player_flashes_aggregate_order_by": { - "avg": [ - 3968 - ], - "count": [ - 3648 - ], - "max": [ - 3974 - ], - "min": [ - 3976 - ], - "stddev": [ - 3986 - ], - "stddev_pop": [ - 3988 - ], - "stddev_samp": [ - 3990 - ], - "sum": [ - 3994 - ], - "var_pop": [ - 3998 - ], - "var_samp": [ - 4000 - ], - "variance": [ - 4002 - ], - "__typename": [ - 85 - ] - }, - "player_flashes_arr_rel_insert_input": { - "data": [ - 3972 - ], - "on_conflict": [ - 3978 - ], - "__typename": [ - 85 - ] - }, - "player_flashes_avg_fields": { - "attacked_steam_id": [ - 32 - ], - "attacker_steam_id": [ - 32 - ], - "duration": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_flashes_avg_order_by": { - "attacked_steam_id": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "duration": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_flashes_bool_exp": { - "_and": [ - 3969 - ], - "_not": [ - 3969 - ], - "_or": [ - 3969 - ], - "attacked_steam_id": [ - 314 - ], - "attacker_steam_id": [ - 314 - ], - "blinded": [ - 4610 - ], - "deleted_at": [ - 5244 - ], - "duration": [ - 3647 - ], - "match": [ - 3443 - ], - "match_id": [ - 6674 - ], - "match_map": [ - 3257 - ], - "match_map_id": [ - 6674 - ], - "round": [ - 42 - ], - "team_flash": [ - 7 - ], - "thrown_by": [ - 4610 - ], - "time": [ - 5244 - ], - "__typename": [ - 85 - ] - }, - "player_flashes_constraint": {}, - "player_flashes_inc_input": { - "attacked_steam_id": [ - 312 - ], - "attacker_steam_id": [ - 312 - ], - "duration": [ - 3646 - ], - "round": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "player_flashes_insert_input": { - "attacked_steam_id": [ - 312 - ], - "attacker_steam_id": [ - 312 - ], - "blinded": [ - 4617 - ], - "deleted_at": [ - 5243 - ], - "duration": [ - 3646 - ], - "match": [ - 3452 - ], - "match_id": [ - 6672 - ], - "match_map": [ - 3266 - ], - "match_map_id": [ - 6672 - ], - "round": [ - 41 - ], - "team_flash": [ - 6 - ], - "thrown_by": [ - 4617 - ], - "time": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "player_flashes_max_fields": { - "attacked_steam_id": [ - 312 - ], - "attacker_steam_id": [ - 312 - ], - "deleted_at": [ - 5243 - ], - "duration": [ - 3646 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "round": [ - 41 - ], - "time": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "player_flashes_max_order_by": { - "attacked_steam_id": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "deleted_at": [ - 3648 - ], - "duration": [ - 3648 - ], - "match_id": [ - 3648 - ], - "match_map_id": [ - 3648 - ], - "round": [ - 3648 - ], - "time": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_flashes_min_fields": { - "attacked_steam_id": [ - 312 - ], - "attacker_steam_id": [ - 312 - ], - "deleted_at": [ - 5243 - ], - "duration": [ - 3646 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "round": [ - 41 - ], - "time": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "player_flashes_min_order_by": { - "attacked_steam_id": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "deleted_at": [ - 3648 - ], - "duration": [ - 3648 - ], - "match_id": [ - 3648 - ], - "match_map_id": [ - 3648 - ], - "round": [ - 3648 - ], - "time": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_flashes_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 3958 - ], - "__typename": [ - 85 - ] - }, - "player_flashes_on_conflict": { - "constraint": [ - 3970 - ], - "update_columns": [ - 3995 - ], - "where": [ - 3969 - ], - "__typename": [ - 85 - ] - }, - "player_flashes_order_by": { - "attacked_steam_id": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "blinded": [ - 4619 - ], - "deleted_at": [ - 3648 - ], - "duration": [ - 3648 - ], - "match": [ - 3454 - ], - "match_id": [ - 3648 - ], - "match_map": [ - 3268 - ], - "match_map_id": [ - 3648 - ], - "round": [ - 3648 - ], - "team_flash": [ - 3648 - ], - "thrown_by": [ - 4619 - ], - "time": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_flashes_pk_columns_input": { - "attacked_steam_id": [ - 312 - ], - "attacker_steam_id": [ - 312 - ], - "match_map_id": [ - 6672 - ], - "time": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "player_flashes_select_column": {}, - "player_flashes_select_column_player_flashes_aggregate_bool_exp_bool_and_arguments_columns": {}, - "player_flashes_select_column_player_flashes_aggregate_bool_exp_bool_or_arguments_columns": {}, - "player_flashes_set_input": { - "attacked_steam_id": [ - 312 - ], - "attacker_steam_id": [ - 312 - ], - "deleted_at": [ - 5243 - ], - "duration": [ - 3646 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "round": [ - 41 - ], - "team_flash": [ - 6 - ], - "time": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "player_flashes_stddev_fields": { - "attacked_steam_id": [ - 32 - ], - "attacker_steam_id": [ - 32 - ], - "duration": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_flashes_stddev_order_by": { - "attacked_steam_id": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "duration": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_flashes_stddev_pop_fields": { - "attacked_steam_id": [ - 32 - ], - "attacker_steam_id": [ - 32 - ], - "duration": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_flashes_stddev_pop_order_by": { - "attacked_steam_id": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "duration": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_flashes_stddev_samp_fields": { - "attacked_steam_id": [ - 32 - ], - "attacker_steam_id": [ - 32 - ], - "duration": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_flashes_stddev_samp_order_by": { - "attacked_steam_id": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "duration": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_flashes_stream_cursor_input": { - "initial_value": [ - 3992 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "player_flashes_stream_cursor_value_input": { - "attacked_steam_id": [ - 312 - ], - "attacker_steam_id": [ - 312 - ], - "deleted_at": [ - 5243 - ], - "duration": [ - 3646 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "round": [ - 41 - ], - "team_flash": [ - 6 - ], - "time": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "player_flashes_sum_fields": { - "attacked_steam_id": [ - 312 - ], - "attacker_steam_id": [ - 312 - ], - "duration": [ - 3646 - ], - "round": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "player_flashes_sum_order_by": { - "attacked_steam_id": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "duration": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_flashes_update_column": {}, - "player_flashes_updates": { - "_inc": [ - 3971 - ], - "_set": [ - 3984 - ], - "where": [ - 3969 - ], - "__typename": [ - 85 - ] - }, - "player_flashes_var_pop_fields": { - "attacked_steam_id": [ - 32 - ], - "attacker_steam_id": [ - 32 - ], - "duration": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_flashes_var_pop_order_by": { - "attacked_steam_id": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "duration": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_flashes_var_samp_fields": { - "attacked_steam_id": [ - 32 - ], - "attacker_steam_id": [ - 32 - ], - "duration": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_flashes_var_samp_order_by": { - "attacked_steam_id": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "duration": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_flashes_variance_fields": { - "attacked_steam_id": [ - 32 - ], - "attacker_steam_id": [ - 32 - ], - "duration": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_flashes_variance_order_by": { - "attacked_steam_id": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "duration": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_kills": { - "assisted": [ - 6 - ], - "attacked_location": [ - 85 - ], - "attacked_location_coordinates": [ - 85 - ], - "attacked_player": [ - 4606 - ], - "attacked_steam_id": [ - 312 - ], - "attacked_team": [ - 85 - ], - "attacker_location": [ - 85 - ], - "attacker_location_coordinates": [ - 85 - ], - "attacker_steam_id": [ - 312 - ], - "attacker_team": [ - 85 - ], - "blinded": [ - 6 - ], - "deleted_at": [ - 5243 - ], - "headshot": [ - 6 - ], - "hitgroup": [ - 85 - ], - "in_air": [ - 6 - ], - "is_suicide": [ - 6 - ], - "match": [ - 3432 - ], - "match_id": [ - 6672 - ], - "match_map": [ - 3248 - ], - "match_map_id": [ - 6672 - ], - "no_scope": [ - 6 - ], - "player": [ - 4606 - ], - "round": [ - 41 - ], - "team_kill": [ - 6 - ], - "thru_smoke": [ - 6 - ], - "thru_wall": [ - 6 - ], - "time": [ - 5243 - ], - "with": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "player_kills_aggregate": { - "aggregate": [ - 4009 - ], - "nodes": [ - 4003 - ], - "__typename": [ - 85 - ] - }, - "player_kills_aggregate_bool_exp": { - "bool_and": [ - 4006 - ], - "bool_or": [ - 4007 - ], - "count": [ - 4008 - ], - "__typename": [ - 85 - ] - }, - "player_kills_aggregate_bool_exp_bool_and": { - "arguments": [ - 4068 - ], - "distinct": [ - 6 - ], - "filter": [ - 4014 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "player_kills_aggregate_bool_exp_bool_or": { - "arguments": [ - 4069 - ], - "distinct": [ - 6 - ], - "filter": [ - 4014 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "player_kills_aggregate_bool_exp_count": { - "arguments": [ - 4067 - ], - "distinct": [ - 6 - ], - "filter": [ - 4014 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "player_kills_aggregate_fields": { - "avg": [ - 4012 - ], - "count": [ - 41, - { - "columns": [ - 4067, - "[player_kills_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 4059 - ], - "min": [ - 4061 - ], - "stddev": [ - 4071 - ], - "stddev_pop": [ - 4073 - ], - "stddev_samp": [ - 4075 - ], - "sum": [ - 4079 - ], - "var_pop": [ - 4083 - ], - "var_samp": [ - 4085 - ], - "variance": [ - 4087 - ], - "__typename": [ - 85 - ] - }, - "player_kills_aggregate_order_by": { - "avg": [ - 4013 - ], - "count": [ - 3648 - ], - "max": [ - 4060 - ], - "min": [ - 4062 - ], - "stddev": [ - 4072 - ], - "stddev_pop": [ - 4074 - ], - "stddev_samp": [ - 4076 - ], - "sum": [ - 4080 - ], - "var_pop": [ - 4084 - ], - "var_samp": [ - 4086 - ], - "variance": [ - 4088 - ], - "__typename": [ - 85 - ] - }, - "player_kills_arr_rel_insert_input": { - "data": [ - 4058 - ], - "on_conflict": [ - 4064 - ], - "__typename": [ - 85 - ] - }, - "player_kills_avg_fields": { - "attacked_steam_id": [ - 32 - ], - "attacker_steam_id": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_kills_avg_order_by": { - "attacked_steam_id": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_kills_bool_exp": { - "_and": [ - 4014 - ], - "_not": [ - 4014 - ], - "_or": [ - 4014 - ], - "assisted": [ - 7 - ], - "attacked_location": [ - 87 - ], - "attacked_location_coordinates": [ - 87 - ], - "attacked_player": [ - 4610 - ], - "attacked_steam_id": [ - 314 - ], - "attacked_team": [ - 87 - ], - "attacker_location": [ - 87 - ], - "attacker_location_coordinates": [ - 87 - ], - "attacker_steam_id": [ - 314 - ], - "attacker_team": [ - 87 - ], - "blinded": [ - 7 - ], - "deleted_at": [ - 5244 - ], - "headshot": [ - 7 - ], - "hitgroup": [ - 87 - ], - "in_air": [ - 7 - ], - "is_suicide": [ - 7 - ], - "match": [ - 3443 - ], - "match_id": [ - 6674 - ], - "match_map": [ - 3257 - ], - "match_map_id": [ - 6674 - ], - "no_scope": [ - 7 - ], - "player": [ - 4610 - ], - "round": [ - 42 - ], - "team_kill": [ - 7 - ], - "thru_smoke": [ - 7 - ], - "thru_wall": [ - 7 - ], - "time": [ - 5244 - ], - "with": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "player_kills_by_weapon": { - "kill_count": [ - 312 - ], - "player": [ - 4606 - ], - "player_steam_id": [ - 312 - ], - "with": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "player_kills_by_weapon_aggregate": { - "aggregate": [ - 4019 - ], - "nodes": [ - 4015 - ], - "__typename": [ - 85 - ] - }, - "player_kills_by_weapon_aggregate_bool_exp": { - "count": [ - 4018 - ], - "__typename": [ - 85 - ] - }, - "player_kills_by_weapon_aggregate_bool_exp_count": { - "arguments": [ - 4036 - ], - "distinct": [ - 6 - ], - "filter": [ - 4024 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "player_kills_by_weapon_aggregate_fields": { - "avg": [ - 4022 - ], - "count": [ - 41, - { - "columns": [ - 4036, - "[player_kills_by_weapon_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 4028 - ], - "min": [ - 4030 - ], - "stddev": [ - 4038 - ], - "stddev_pop": [ - 4040 - ], - "stddev_samp": [ - 4042 - ], - "sum": [ - 4046 - ], - "var_pop": [ - 4050 - ], - "var_samp": [ - 4052 - ], - "variance": [ - 4054 - ], - "__typename": [ - 85 - ] - }, - "player_kills_by_weapon_aggregate_order_by": { - "avg": [ - 4023 - ], - "count": [ - 3648 - ], - "max": [ - 4029 - ], - "min": [ - 4031 - ], - "stddev": [ - 4039 - ], - "stddev_pop": [ - 4041 - ], - "stddev_samp": [ - 4043 - ], - "sum": [ - 4047 - ], - "var_pop": [ - 4051 - ], - "var_samp": [ - 4053 - ], - "variance": [ - 4055 - ], - "__typename": [ - 85 - ] - }, - "player_kills_by_weapon_arr_rel_insert_input": { - "data": [ - 4027 - ], - "on_conflict": [ - 4033 - ], - "__typename": [ - 85 - ] - }, - "player_kills_by_weapon_avg_fields": { - "kill_count": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_kills_by_weapon_avg_order_by": { - "kill_count": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_kills_by_weapon_bool_exp": { - "_and": [ - 4024 - ], - "_not": [ - 4024 - ], - "_or": [ - 4024 - ], - "kill_count": [ - 314 - ], - "player": [ - 4610 - ], - "player_steam_id": [ - 314 - ], - "with": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "player_kills_by_weapon_constraint": {}, - "player_kills_by_weapon_inc_input": { - "kill_count": [ - 312 - ], - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "player_kills_by_weapon_insert_input": { - "kill_count": [ - 312 - ], - "player": [ - 4617 - ], - "player_steam_id": [ - 312 - ], - "with": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "player_kills_by_weapon_max_fields": { - "kill_count": [ - 312 - ], - "player_steam_id": [ - 312 - ], - "with": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "player_kills_by_weapon_max_order_by": { - "kill_count": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "with": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_kills_by_weapon_min_fields": { - "kill_count": [ - 312 - ], - "player_steam_id": [ - 312 - ], - "with": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "player_kills_by_weapon_min_order_by": { - "kill_count": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "with": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_kills_by_weapon_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 4015 - ], - "__typename": [ - 85 - ] - }, - "player_kills_by_weapon_on_conflict": { - "constraint": [ - 4025 - ], - "update_columns": [ - 4048 - ], - "where": [ - 4024 - ], - "__typename": [ - 85 - ] - }, - "player_kills_by_weapon_order_by": { - "kill_count": [ - 3648 - ], - "player": [ - 4619 - ], - "player_steam_id": [ - 3648 - ], - "with": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_kills_by_weapon_pk_columns_input": { - "player_steam_id": [ - 312 - ], - "with": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "player_kills_by_weapon_select_column": {}, - "player_kills_by_weapon_set_input": { - "kill_count": [ - 312 - ], - "player_steam_id": [ - 312 - ], - "with": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "player_kills_by_weapon_stddev_fields": { - "kill_count": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_kills_by_weapon_stddev_order_by": { - "kill_count": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_kills_by_weapon_stddev_pop_fields": { - "kill_count": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_kills_by_weapon_stddev_pop_order_by": { - "kill_count": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_kills_by_weapon_stddev_samp_fields": { - "kill_count": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_kills_by_weapon_stddev_samp_order_by": { - "kill_count": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_kills_by_weapon_stream_cursor_input": { - "initial_value": [ - 4045 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "player_kills_by_weapon_stream_cursor_value_input": { - "kill_count": [ - 312 - ], - "player_steam_id": [ - 312 - ], - "with": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "player_kills_by_weapon_sum_fields": { - "kill_count": [ - 312 - ], - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "player_kills_by_weapon_sum_order_by": { - "kill_count": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_kills_by_weapon_update_column": {}, - "player_kills_by_weapon_updates": { - "_inc": [ - 4026 - ], - "_set": [ - 4037 - ], - "where": [ - 4024 - ], - "__typename": [ - 85 - ] - }, - "player_kills_by_weapon_var_pop_fields": { - "kill_count": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_kills_by_weapon_var_pop_order_by": { - "kill_count": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_kills_by_weapon_var_samp_fields": { - "kill_count": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_kills_by_weapon_var_samp_order_by": { - "kill_count": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_kills_by_weapon_variance_fields": { - "kill_count": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_kills_by_weapon_variance_order_by": { - "kill_count": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_kills_constraint": {}, - "player_kills_inc_input": { - "attacked_steam_id": [ - 312 - ], - "attacker_steam_id": [ - 312 - ], - "round": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "player_kills_insert_input": { - "assisted": [ - 6 - ], - "attacked_location": [ - 85 - ], - "attacked_location_coordinates": [ - 85 - ], - "attacked_player": [ - 4617 - ], - "attacked_steam_id": [ - 312 - ], - "attacked_team": [ - 85 - ], - "attacker_location": [ - 85 - ], - "attacker_location_coordinates": [ - 85 - ], - "attacker_steam_id": [ - 312 - ], - "attacker_team": [ - 85 - ], - "blinded": [ - 6 - ], - "deleted_at": [ - 5243 - ], - "headshot": [ - 6 - ], - "hitgroup": [ - 85 - ], - "in_air": [ - 6 - ], - "match": [ - 3452 - ], - "match_id": [ - 6672 - ], - "match_map": [ - 3266 - ], - "match_map_id": [ - 6672 - ], - "no_scope": [ - 6 - ], - "player": [ - 4617 - ], - "round": [ - 41 - ], - "thru_smoke": [ - 6 - ], - "thru_wall": [ - 6 - ], - "time": [ - 5243 - ], - "with": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "player_kills_max_fields": { - "attacked_location": [ - 85 - ], - "attacked_location_coordinates": [ - 85 - ], - "attacked_steam_id": [ - 312 - ], - "attacked_team": [ - 85 - ], - "attacker_location": [ - 85 - ], - "attacker_location_coordinates": [ - 85 - ], - "attacker_steam_id": [ - 312 - ], - "attacker_team": [ - 85 - ], - "deleted_at": [ - 5243 - ], - "hitgroup": [ - 85 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "round": [ - 41 - ], - "time": [ - 5243 - ], - "with": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "player_kills_max_order_by": { - "attacked_location": [ - 3648 - ], - "attacked_location_coordinates": [ - 3648 - ], - "attacked_steam_id": [ - 3648 - ], - "attacked_team": [ - 3648 - ], - "attacker_location": [ - 3648 - ], - "attacker_location_coordinates": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "attacker_team": [ - 3648 - ], - "deleted_at": [ - 3648 - ], - "hitgroup": [ - 3648 - ], - "match_id": [ - 3648 - ], - "match_map_id": [ - 3648 - ], - "round": [ - 3648 - ], - "time": [ - 3648 - ], - "with": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_kills_min_fields": { - "attacked_location": [ - 85 - ], - "attacked_location_coordinates": [ - 85 - ], - "attacked_steam_id": [ - 312 - ], - "attacked_team": [ - 85 - ], - "attacker_location": [ - 85 - ], - "attacker_location_coordinates": [ - 85 - ], - "attacker_steam_id": [ - 312 - ], - "attacker_team": [ - 85 - ], - "deleted_at": [ - 5243 - ], - "hitgroup": [ - 85 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "round": [ - 41 - ], - "time": [ - 5243 - ], - "with": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "player_kills_min_order_by": { - "attacked_location": [ - 3648 - ], - "attacked_location_coordinates": [ - 3648 - ], - "attacked_steam_id": [ - 3648 - ], - "attacked_team": [ - 3648 - ], - "attacker_location": [ - 3648 - ], - "attacker_location_coordinates": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "attacker_team": [ - 3648 - ], - "deleted_at": [ - 3648 - ], - "hitgroup": [ - 3648 - ], - "match_id": [ - 3648 - ], - "match_map_id": [ - 3648 - ], - "round": [ - 3648 - ], - "time": [ - 3648 - ], - "with": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_kills_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 4003 - ], - "__typename": [ - 85 - ] - }, - "player_kills_on_conflict": { - "constraint": [ - 4056 - ], - "update_columns": [ - 4081 - ], - "where": [ - 4014 - ], - "__typename": [ - 85 - ] - }, - "player_kills_order_by": { - "assisted": [ - 3648 - ], - "attacked_location": [ - 3648 - ], - "attacked_location_coordinates": [ - 3648 - ], - "attacked_player": [ - 4619 - ], - "attacked_steam_id": [ - 3648 - ], - "attacked_team": [ - 3648 - ], - "attacker_location": [ - 3648 - ], - "attacker_location_coordinates": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "attacker_team": [ - 3648 - ], - "blinded": [ - 3648 - ], - "deleted_at": [ - 3648 - ], - "headshot": [ - 3648 - ], - "hitgroup": [ - 3648 - ], - "in_air": [ - 3648 - ], - "is_suicide": [ - 3648 - ], - "match": [ - 3454 - ], - "match_id": [ - 3648 - ], - "match_map": [ - 3268 - ], - "match_map_id": [ - 3648 - ], - "no_scope": [ - 3648 - ], - "player": [ - 4619 - ], - "round": [ - 3648 - ], - "team_kill": [ - 3648 - ], - "thru_smoke": [ - 3648 - ], - "thru_wall": [ - 3648 - ], - "time": [ - 3648 - ], - "with": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_kills_pk_columns_input": { - "attacked_steam_id": [ - 312 - ], - "attacker_steam_id": [ - 312 - ], - "match_map_id": [ - 6672 - ], - "time": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "player_kills_select_column": {}, - "player_kills_select_column_player_kills_aggregate_bool_exp_bool_and_arguments_columns": {}, - "player_kills_select_column_player_kills_aggregate_bool_exp_bool_or_arguments_columns": {}, - "player_kills_set_input": { - "assisted": [ - 6 - ], - "attacked_location": [ - 85 - ], - "attacked_location_coordinates": [ - 85 - ], - "attacked_steam_id": [ - 312 - ], - "attacked_team": [ - 85 - ], - "attacker_location": [ - 85 - ], - "attacker_location_coordinates": [ - 85 - ], - "attacker_steam_id": [ - 312 - ], - "attacker_team": [ - 85 - ], - "blinded": [ - 6 - ], - "deleted_at": [ - 5243 - ], - "headshot": [ - 6 - ], - "hitgroup": [ - 85 - ], - "in_air": [ - 6 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "no_scope": [ - 6 - ], - "round": [ - 41 - ], - "thru_smoke": [ - 6 - ], - "thru_wall": [ - 6 - ], - "time": [ - 5243 - ], - "with": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "player_kills_stddev_fields": { - "attacked_steam_id": [ - 32 - ], - "attacker_steam_id": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_kills_stddev_order_by": { - "attacked_steam_id": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_kills_stddev_pop_fields": { - "attacked_steam_id": [ - 32 - ], - "attacker_steam_id": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_kills_stddev_pop_order_by": { - "attacked_steam_id": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_kills_stddev_samp_fields": { - "attacked_steam_id": [ - 32 - ], - "attacker_steam_id": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_kills_stddev_samp_order_by": { - "attacked_steam_id": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_kills_stream_cursor_input": { - "initial_value": [ - 4078 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "player_kills_stream_cursor_value_input": { - "assisted": [ - 6 - ], - "attacked_location": [ - 85 - ], - "attacked_location_coordinates": [ - 85 - ], - "attacked_steam_id": [ - 312 - ], - "attacked_team": [ - 85 - ], - "attacker_location": [ - 85 - ], - "attacker_location_coordinates": [ - 85 - ], - "attacker_steam_id": [ - 312 - ], - "attacker_team": [ - 85 - ], - "blinded": [ - 6 - ], - "deleted_at": [ - 5243 - ], - "headshot": [ - 6 - ], - "hitgroup": [ - 85 - ], - "in_air": [ - 6 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "no_scope": [ - 6 - ], - "round": [ - 41 - ], - "thru_smoke": [ - 6 - ], - "thru_wall": [ - 6 - ], - "time": [ - 5243 - ], - "with": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "player_kills_sum_fields": { - "attacked_steam_id": [ - 312 - ], - "attacker_steam_id": [ - 312 - ], - "round": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "player_kills_sum_order_by": { - "attacked_steam_id": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_kills_update_column": {}, - "player_kills_updates": { - "_inc": [ - 4057 - ], - "_set": [ - 4070 - ], - "where": [ - 4014 - ], - "__typename": [ - 85 - ] - }, - "player_kills_var_pop_fields": { - "attacked_steam_id": [ - 32 - ], - "attacker_steam_id": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_kills_var_pop_order_by": { - "attacked_steam_id": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_kills_var_samp_fields": { - "attacked_steam_id": [ - 32 - ], - "attacker_steam_id": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_kills_var_samp_order_by": { - "attacked_steam_id": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_kills_variance_fields": { - "attacked_steam_id": [ - 32 - ], - "attacker_steam_id": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_kills_variance_order_by": { - "attacked_steam_id": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_leaderboard_rank": { - "player_steam_id": [ - 85 - ], - "rank": [ - 41 - ], - "total": [ - 41 - ], - "value": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "player_leaderboard_rank_aggregate": { - "aggregate": [ - 4091 - ], - "nodes": [ - 4089 - ], - "__typename": [ - 85 - ] - }, - "player_leaderboard_rank_aggregate_fields": { - "avg": [ - 4092 - ], - "count": [ - 41, - { - "columns": [ - 4100, - "[player_leaderboard_rank_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 4096 - ], - "min": [ - 4097 - ], - "stddev": [ - 4102 - ], - "stddev_pop": [ - 4103 - ], - "stddev_samp": [ - 4104 - ], - "sum": [ - 4107 - ], - "var_pop": [ - 4109 - ], - "var_samp": [ - 4110 - ], - "variance": [ - 4111 - ], - "__typename": [ - 85 - ] - }, - "player_leaderboard_rank_avg_fields": { - "rank": [ - 32 - ], - "total": [ - 32 - ], - "value": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_leaderboard_rank_bool_exp": { - "_and": [ - 4093 - ], - "_not": [ - 4093 - ], - "_or": [ - 4093 - ], - "player_steam_id": [ - 87 - ], - "rank": [ - 42 - ], - "total": [ - 42 - ], - "value": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "player_leaderboard_rank_inc_input": { - "rank": [ - 41 - ], - "total": [ - 41 - ], - "value": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "player_leaderboard_rank_insert_input": { - "player_steam_id": [ - 85 - ], - "rank": [ - 41 - ], - "total": [ - 41 - ], - "value": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "player_leaderboard_rank_max_fields": { - "player_steam_id": [ - 85 - ], - "rank": [ - 41 - ], - "total": [ - 41 - ], - "value": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "player_leaderboard_rank_min_fields": { - "player_steam_id": [ - 85 - ], - "rank": [ - 41 - ], - "total": [ - 41 - ], - "value": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "player_leaderboard_rank_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 4089 - ], - "__typename": [ - 85 - ] - }, - "player_leaderboard_rank_order_by": { - "player_steam_id": [ - 3648 - ], - "rank": [ - 3648 - ], - "total": [ - 3648 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_leaderboard_rank_select_column": {}, - "player_leaderboard_rank_set_input": { - "player_steam_id": [ - 85 - ], - "rank": [ - 41 - ], - "total": [ - 41 - ], - "value": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "player_leaderboard_rank_stddev_fields": { - "rank": [ - 32 - ], - "total": [ - 32 - ], - "value": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_leaderboard_rank_stddev_pop_fields": { - "rank": [ - 32 - ], - "total": [ - 32 - ], - "value": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_leaderboard_rank_stddev_samp_fields": { - "rank": [ - 32 - ], - "total": [ - 32 - ], - "value": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_leaderboard_rank_stream_cursor_input": { - "initial_value": [ - 4106 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "player_leaderboard_rank_stream_cursor_value_input": { - "player_steam_id": [ - 85 - ], - "rank": [ - 41 - ], - "total": [ - 41 - ], - "value": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "player_leaderboard_rank_sum_fields": { - "rank": [ - 41 - ], - "total": [ - 41 - ], - "value": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "player_leaderboard_rank_updates": { - "_inc": [ - 4094 - ], - "_set": [ - 4101 - ], - "where": [ - 4093 - ], - "__typename": [ - 85 - ] - }, - "player_leaderboard_rank_var_pop_fields": { - "rank": [ - 32 - ], - "total": [ - 32 - ], - "value": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_leaderboard_rank_var_samp_fields": { - "rank": [ - 32 - ], - "total": [ - 32 - ], - "value": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_leaderboard_rank_variance_fields": { - "rank": [ - 32 - ], - "total": [ - 32 - ], - "value": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_match_map_stats": { - "assists": [ - 41 - ], - "assists_ct": [ - 41 - ], - "assists_t": [ - 41 - ], - "counter_strafe_eligible_shots": [ - 41 - ], - "counter_strafed_shots": [ - 41 - ], - "crosshair_angle_count": [ - 41 - ], - "crosshair_angle_sum_deg": [ - 3646 - ], - "damage": [ - 41 - ], - "damage_ct": [ - 41 - ], - "damage_t": [ - 41 - ], - "deaths": [ - 41 - ], - "deaths_ct": [ - 41 - ], - "deaths_t": [ - 41 - ], - "decoy_throws": [ - 41 - ], - "enemies_flashed": [ - 41 - ], - "first_bullet_hits": [ - 41 - ], - "first_bullet_shots": [ - 41 - ], - "five_kill_rounds": [ - 41 - ], - "flash_assists": [ - 41 - ], - "flash_duration_count": [ - 41 - ], - "flash_duration_sum": [ - 3646 - ], - "flashes_thrown": [ - 41 - ], - "four_kill_rounds": [ - 41 - ], - "he_damage": [ - 41 - ], - "he_team_damage": [ - 41 - ], - "he_throws": [ - 41 - ], - "headshot_hits": [ - 41 - ], - "hits": [ - 41 - ], - "hits_at_spotted": [ - 41 - ], - "hs_kills": [ - 41 - ], - "hs_kills_ct": [ - 41 - ], - "hs_kills_t": [ - 41 - ], - "kast_rounds": [ - 41 - ], - "kast_total_rounds": [ - 41 - ], - "kills": [ - 41 - ], - "kills_ct": [ - 41 - ], - "kills_t": [ - 41 - ], - "knife_kills": [ - 41 - ], - "match": [ - 3432 - ], - "match_id": [ - 6672 - ], - "match_map": [ - 3248 - ], - "match_map_id": [ - 6672 - ], - "molotov_damage": [ - 41 - ], - "molotov_throws": [ - 41 - ], - "non_awp_hits": [ - 41 - ], - "on_target_frames": [ - 41 - ], - "player": [ - 4606 - ], - "rounds_ct": [ - 41 - ], - "rounds_played": [ - 41 - ], - "rounds_t": [ - 41 - ], - "shots_at_spotted": [ - 41 - ], - "shots_fired": [ - 41 - ], - "smoke_throws": [ - 41 - ], - "spotted_count": [ - 41 - ], - "spotted_with_damage_count": [ - 41 - ], - "spray_hits": [ - 41 - ], - "spray_shots": [ - 41 - ], - "steam_id": [ - 312 - ], - "team_damage": [ - 41 - ], - "team_flashed": [ - 41 - ], - "three_kill_rounds": [ - 41 - ], - "time_to_damage_count": [ - 41 - ], - "time_to_damage_sum_s": [ - 3646 - ], - "total_engagement_frames": [ - 41 - ], - "trade_kill_attempts": [ - 41 - ], - "trade_kill_opportunities": [ - 41 - ], - "trade_kill_successes": [ - 41 - ], - "traded_death_attempts": [ - 41 - ], - "traded_death_opportunities": [ - 41 - ], - "traded_death_successes": [ - 41 - ], - "two_kill_rounds": [ - 41 - ], - "unused_utility_value": [ - 41 - ], - "updated_at": [ - 5243 - ], - "util_on_death_count": [ - 41 - ], - "util_on_death_sum": [ - 41 - ], - "wasted_magazine_shots": [ - 41 - ], - "zeus_kills": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "player_match_map_stats_aggregate": { - "aggregate": [ - 4116 - ], - "nodes": [ - 4112 - ], - "__typename": [ - 85 - ] - }, - "player_match_map_stats_aggregate_bool_exp": { - "count": [ - 4115 - ], - "__typename": [ - 85 - ] - }, - "player_match_map_stats_aggregate_bool_exp_count": { - "arguments": [ - 4133 - ], - "distinct": [ - 6 - ], - "filter": [ - 4121 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "player_match_map_stats_aggregate_fields": { - "avg": [ - 4119 - ], - "count": [ - 41, - { - "columns": [ - 4133, - "[player_match_map_stats_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 4125 - ], - "min": [ - 4127 - ], - "stddev": [ - 4135 - ], - "stddev_pop": [ - 4137 - ], - "stddev_samp": [ - 4139 - ], - "sum": [ - 4143 - ], - "var_pop": [ - 4147 - ], - "var_samp": [ - 4149 - ], - "variance": [ - 4151 - ], - "__typename": [ - 85 - ] - }, - "player_match_map_stats_aggregate_order_by": { - "avg": [ - 4120 - ], - "count": [ - 3648 - ], - "max": [ - 4126 - ], - "min": [ - 4128 - ], - "stddev": [ - 4136 - ], - "stddev_pop": [ - 4138 - ], - "stddev_samp": [ - 4140 - ], - "sum": [ - 4144 - ], - "var_pop": [ - 4148 - ], - "var_samp": [ - 4150 - ], - "variance": [ - 4152 - ], - "__typename": [ - 85 - ] - }, - "player_match_map_stats_arr_rel_insert_input": { - "data": [ - 4124 - ], - "on_conflict": [ - 4130 - ], - "__typename": [ - 85 - ] - }, - "player_match_map_stats_avg_fields": { - "assists": [ - 32 - ], - "assists_ct": [ - 32 - ], - "assists_t": [ - 32 - ], - "counter_strafe_eligible_shots": [ - 32 - ], - "counter_strafed_shots": [ - 32 - ], - "crosshair_angle_count": [ - 32 - ], - "crosshair_angle_sum_deg": [ - 32 - ], - "damage": [ - 32 - ], - "damage_ct": [ - 32 - ], - "damage_t": [ - 32 - ], - "deaths": [ - 32 - ], - "deaths_ct": [ - 32 - ], - "deaths_t": [ - 32 - ], - "decoy_throws": [ - 32 - ], - "enemies_flashed": [ - 32 - ], - "first_bullet_hits": [ - 32 - ], - "first_bullet_shots": [ - 32 - ], - "five_kill_rounds": [ - 32 - ], - "flash_assists": [ - 32 - ], - "flash_duration_count": [ - 32 - ], - "flash_duration_sum": [ - 32 - ], - "flashes_thrown": [ - 32 - ], - "four_kill_rounds": [ - 32 - ], - "he_damage": [ - 32 - ], - "he_team_damage": [ - 32 - ], - "he_throws": [ - 32 - ], - "headshot_hits": [ - 32 - ], - "hits": [ - 32 - ], - "hits_at_spotted": [ - 32 - ], - "hs_kills": [ - 32 - ], - "hs_kills_ct": [ - 32 - ], - "hs_kills_t": [ - 32 - ], - "kast_rounds": [ - 32 - ], - "kast_total_rounds": [ - 32 - ], - "kills": [ - 32 - ], - "kills_ct": [ - 32 - ], - "kills_t": [ - 32 - ], - "knife_kills": [ - 32 - ], - "molotov_damage": [ - 32 - ], - "molotov_throws": [ - 32 - ], - "non_awp_hits": [ - 32 - ], - "on_target_frames": [ - 32 - ], - "rounds_ct": [ - 32 - ], - "rounds_played": [ - 32 - ], - "rounds_t": [ - 32 - ], - "shots_at_spotted": [ - 32 - ], - "shots_fired": [ - 32 - ], - "smoke_throws": [ - 32 - ], - "spotted_count": [ - 32 - ], - "spotted_with_damage_count": [ - 32 - ], - "spray_hits": [ - 32 - ], - "spray_shots": [ - 32 - ], - "steam_id": [ - 32 - ], - "team_damage": [ - 32 - ], - "team_flashed": [ - 32 - ], - "three_kill_rounds": [ - 32 - ], - "time_to_damage_count": [ - 32 - ], - "time_to_damage_sum_s": [ - 32 - ], - "total_engagement_frames": [ - 32 - ], - "trade_kill_attempts": [ - 32 - ], - "trade_kill_opportunities": [ - 32 - ], - "trade_kill_successes": [ - 32 - ], - "traded_death_attempts": [ - 32 - ], - "traded_death_opportunities": [ - 32 - ], - "traded_death_successes": [ - 32 - ], - "two_kill_rounds": [ - 32 - ], - "unused_utility_value": [ - 32 - ], - "util_on_death_count": [ - 32 - ], - "util_on_death_sum": [ - 32 - ], - "wasted_magazine_shots": [ - 32 - ], - "zeus_kills": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_match_map_stats_avg_order_by": { - "assists": [ - 3648 - ], - "assists_ct": [ - 3648 - ], - "assists_t": [ - 3648 - ], - "counter_strafe_eligible_shots": [ - 3648 - ], - "counter_strafed_shots": [ - 3648 - ], - "crosshair_angle_count": [ - 3648 - ], - "crosshair_angle_sum_deg": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_ct": [ - 3648 - ], - "damage_t": [ - 3648 - ], - "deaths": [ - 3648 - ], - "deaths_ct": [ - 3648 - ], - "deaths_t": [ - 3648 - ], - "decoy_throws": [ - 3648 - ], - "enemies_flashed": [ - 3648 - ], - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "five_kill_rounds": [ - 3648 - ], - "flash_assists": [ - 3648 - ], - "flash_duration_count": [ - 3648 - ], - "flash_duration_sum": [ - 3648 - ], - "flashes_thrown": [ - 3648 - ], - "four_kill_rounds": [ - 3648 - ], - "he_damage": [ - 3648 - ], - "he_team_damage": [ - 3648 - ], - "he_throws": [ - 3648 - ], - "headshot_hits": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_at_spotted": [ - 3648 - ], - "hs_kills": [ - 3648 - ], - "hs_kills_ct": [ - 3648 - ], - "hs_kills_t": [ - 3648 - ], - "kast_rounds": [ - 3648 - ], - "kast_total_rounds": [ - 3648 - ], - "kills": [ - 3648 - ], - "kills_ct": [ - 3648 - ], - "kills_t": [ - 3648 - ], - "knife_kills": [ - 3648 - ], - "molotov_damage": [ - 3648 - ], - "molotov_throws": [ - 3648 - ], - "non_awp_hits": [ - 3648 - ], - "on_target_frames": [ - 3648 - ], - "rounds_ct": [ - 3648 - ], - "rounds_played": [ - 3648 - ], - "rounds_t": [ - 3648 - ], - "shots_at_spotted": [ - 3648 - ], - "shots_fired": [ - 3648 - ], - "smoke_throws": [ - 3648 - ], - "spotted_count": [ - 3648 - ], - "spotted_with_damage_count": [ - 3648 - ], - "spray_hits": [ - 3648 - ], - "spray_shots": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "team_damage": [ - 3648 - ], - "team_flashed": [ - 3648 - ], - "three_kill_rounds": [ - 3648 - ], - "time_to_damage_count": [ - 3648 - ], - "time_to_damage_sum_s": [ - 3648 - ], - "total_engagement_frames": [ - 3648 - ], - "trade_kill_attempts": [ - 3648 - ], - "trade_kill_opportunities": [ - 3648 - ], - "trade_kill_successes": [ - 3648 - ], - "traded_death_attempts": [ - 3648 - ], - "traded_death_opportunities": [ - 3648 - ], - "traded_death_successes": [ - 3648 - ], - "two_kill_rounds": [ - 3648 - ], - "unused_utility_value": [ - 3648 - ], - "util_on_death_count": [ - 3648 - ], - "util_on_death_sum": [ - 3648 - ], - "wasted_magazine_shots": [ - 3648 - ], - "zeus_kills": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_match_map_stats_bool_exp": { - "_and": [ - 4121 - ], - "_not": [ - 4121 - ], - "_or": [ - 4121 - ], - "assists": [ - 42 - ], - "assists_ct": [ - 42 - ], - "assists_t": [ - 42 - ], - "counter_strafe_eligible_shots": [ - 42 - ], - "counter_strafed_shots": [ - 42 - ], - "crosshair_angle_count": [ - 42 - ], - "crosshair_angle_sum_deg": [ - 3647 - ], - "damage": [ - 42 - ], - "damage_ct": [ - 42 - ], - "damage_t": [ - 42 - ], - "deaths": [ - 42 - ], - "deaths_ct": [ - 42 - ], - "deaths_t": [ - 42 - ], - "decoy_throws": [ - 42 - ], - "enemies_flashed": [ - 42 - ], - "first_bullet_hits": [ - 42 - ], - "first_bullet_shots": [ - 42 - ], - "five_kill_rounds": [ - 42 - ], - "flash_assists": [ - 42 - ], - "flash_duration_count": [ - 42 - ], - "flash_duration_sum": [ - 3647 - ], - "flashes_thrown": [ - 42 - ], - "four_kill_rounds": [ - 42 - ], - "he_damage": [ - 42 - ], - "he_team_damage": [ - 42 - ], - "he_throws": [ - 42 - ], - "headshot_hits": [ - 42 - ], - "hits": [ - 42 - ], - "hits_at_spotted": [ - 42 - ], - "hs_kills": [ - 42 - ], - "hs_kills_ct": [ - 42 - ], - "hs_kills_t": [ - 42 - ], - "kast_rounds": [ - 42 - ], - "kast_total_rounds": [ - 42 - ], - "kills": [ - 42 - ], - "kills_ct": [ - 42 - ], - "kills_t": [ - 42 - ], - "knife_kills": [ - 42 - ], - "match": [ - 3443 - ], - "match_id": [ - 6674 - ], - "match_map": [ - 3257 - ], - "match_map_id": [ - 6674 - ], - "molotov_damage": [ - 42 - ], - "molotov_throws": [ - 42 - ], - "non_awp_hits": [ - 42 - ], - "on_target_frames": [ - 42 - ], - "player": [ - 4610 - ], - "rounds_ct": [ - 42 - ], - "rounds_played": [ - 42 - ], - "rounds_t": [ - 42 - ], - "shots_at_spotted": [ - 42 - ], - "shots_fired": [ - 42 - ], - "smoke_throws": [ - 42 - ], - "spotted_count": [ - 42 - ], - "spotted_with_damage_count": [ - 42 - ], - "spray_hits": [ - 42 - ], - "spray_shots": [ - 42 - ], - "steam_id": [ - 314 - ], - "team_damage": [ - 42 - ], - "team_flashed": [ - 42 - ], - "three_kill_rounds": [ - 42 - ], - "time_to_damage_count": [ - 42 - ], - "time_to_damage_sum_s": [ - 3647 - ], - "total_engagement_frames": [ - 42 - ], - "trade_kill_attempts": [ - 42 - ], - "trade_kill_opportunities": [ - 42 - ], - "trade_kill_successes": [ - 42 - ], - "traded_death_attempts": [ - 42 - ], - "traded_death_opportunities": [ - 42 - ], - "traded_death_successes": [ - 42 - ], - "two_kill_rounds": [ - 42 - ], - "unused_utility_value": [ - 42 - ], - "updated_at": [ - 5244 - ], - "util_on_death_count": [ - 42 - ], - "util_on_death_sum": [ - 42 - ], - "wasted_magazine_shots": [ - 42 - ], - "zeus_kills": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "player_match_map_stats_constraint": {}, - "player_match_map_stats_inc_input": { - "assists": [ - 41 - ], - "assists_ct": [ - 41 - ], - "assists_t": [ - 41 - ], - "counter_strafe_eligible_shots": [ - 41 - ], - "counter_strafed_shots": [ - 41 - ], - "crosshair_angle_count": [ - 41 - ], - "crosshair_angle_sum_deg": [ - 3646 - ], - "damage": [ - 41 - ], - "damage_ct": [ - 41 - ], - "damage_t": [ - 41 - ], - "deaths": [ - 41 - ], - "deaths_ct": [ - 41 - ], - "deaths_t": [ - 41 - ], - "decoy_throws": [ - 41 - ], - "enemies_flashed": [ - 41 - ], - "first_bullet_hits": [ - 41 - ], - "first_bullet_shots": [ - 41 - ], - "five_kill_rounds": [ - 41 - ], - "flash_assists": [ - 41 - ], - "flash_duration_count": [ - 41 - ], - "flash_duration_sum": [ - 3646 - ], - "flashes_thrown": [ - 41 - ], - "four_kill_rounds": [ - 41 - ], - "he_damage": [ - 41 - ], - "he_team_damage": [ - 41 - ], - "he_throws": [ - 41 - ], - "headshot_hits": [ - 41 - ], - "hits": [ - 41 - ], - "hits_at_spotted": [ - 41 - ], - "hs_kills": [ - 41 - ], - "hs_kills_ct": [ - 41 - ], - "hs_kills_t": [ - 41 - ], - "kast_rounds": [ - 41 - ], - "kast_total_rounds": [ - 41 - ], - "kills": [ - 41 - ], - "kills_ct": [ - 41 - ], - "kills_t": [ - 41 - ], - "knife_kills": [ - 41 - ], - "molotov_damage": [ - 41 - ], - "molotov_throws": [ - 41 - ], - "non_awp_hits": [ - 41 - ], - "on_target_frames": [ - 41 - ], - "rounds_ct": [ - 41 - ], - "rounds_played": [ - 41 - ], - "rounds_t": [ - 41 - ], - "shots_at_spotted": [ - 41 - ], - "shots_fired": [ - 41 - ], - "smoke_throws": [ - 41 - ], - "spotted_count": [ - 41 - ], - "spotted_with_damage_count": [ - 41 - ], - "spray_hits": [ - 41 - ], - "spray_shots": [ - 41 - ], - "steam_id": [ - 312 - ], - "team_damage": [ - 41 - ], - "team_flashed": [ - 41 - ], - "three_kill_rounds": [ - 41 - ], - "time_to_damage_count": [ - 41 - ], - "time_to_damage_sum_s": [ - 3646 - ], - "total_engagement_frames": [ - 41 - ], - "trade_kill_attempts": [ - 41 - ], - "trade_kill_opportunities": [ - 41 - ], - "trade_kill_successes": [ - 41 - ], - "traded_death_attempts": [ - 41 - ], - "traded_death_opportunities": [ - 41 - ], - "traded_death_successes": [ - 41 - ], - "two_kill_rounds": [ - 41 - ], - "unused_utility_value": [ - 41 - ], - "util_on_death_count": [ - 41 - ], - "util_on_death_sum": [ - 41 - ], - "wasted_magazine_shots": [ - 41 - ], - "zeus_kills": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "player_match_map_stats_insert_input": { - "assists": [ - 41 - ], - "assists_ct": [ - 41 - ], - "assists_t": [ - 41 - ], - "counter_strafe_eligible_shots": [ - 41 - ], - "counter_strafed_shots": [ - 41 - ], - "crosshair_angle_count": [ - 41 - ], - "crosshair_angle_sum_deg": [ - 3646 - ], - "damage": [ - 41 - ], - "damage_ct": [ - 41 - ], - "damage_t": [ - 41 - ], - "deaths": [ - 41 - ], - "deaths_ct": [ - 41 - ], - "deaths_t": [ - 41 - ], - "decoy_throws": [ - 41 - ], - "enemies_flashed": [ - 41 - ], - "first_bullet_hits": [ - 41 - ], - "first_bullet_shots": [ - 41 - ], - "five_kill_rounds": [ - 41 - ], - "flash_assists": [ - 41 - ], - "flash_duration_count": [ - 41 - ], - "flash_duration_sum": [ - 3646 - ], - "flashes_thrown": [ - 41 - ], - "four_kill_rounds": [ - 41 - ], - "he_damage": [ - 41 - ], - "he_team_damage": [ - 41 - ], - "he_throws": [ - 41 - ], - "headshot_hits": [ - 41 - ], - "hits": [ - 41 - ], - "hits_at_spotted": [ - 41 - ], - "hs_kills": [ - 41 - ], - "hs_kills_ct": [ - 41 - ], - "hs_kills_t": [ - 41 - ], - "kast_rounds": [ - 41 - ], - "kast_total_rounds": [ - 41 - ], - "kills": [ - 41 - ], - "kills_ct": [ - 41 - ], - "kills_t": [ - 41 - ], - "knife_kills": [ - 41 - ], - "match": [ - 3452 - ], - "match_id": [ - 6672 - ], - "match_map": [ - 3266 - ], - "match_map_id": [ - 6672 - ], - "molotov_damage": [ - 41 - ], - "molotov_throws": [ - 41 - ], - "non_awp_hits": [ - 41 - ], - "on_target_frames": [ - 41 - ], - "player": [ - 4617 - ], - "rounds_ct": [ - 41 - ], - "rounds_played": [ - 41 - ], - "rounds_t": [ - 41 - ], - "shots_at_spotted": [ - 41 - ], - "shots_fired": [ - 41 - ], - "smoke_throws": [ - 41 - ], - "spotted_count": [ - 41 - ], - "spotted_with_damage_count": [ - 41 - ], - "spray_hits": [ - 41 - ], - "spray_shots": [ - 41 - ], - "steam_id": [ - 312 - ], - "team_damage": [ - 41 - ], - "team_flashed": [ - 41 - ], - "three_kill_rounds": [ - 41 - ], - "time_to_damage_count": [ - 41 - ], - "time_to_damage_sum_s": [ - 3646 - ], - "total_engagement_frames": [ - 41 - ], - "trade_kill_attempts": [ - 41 - ], - "trade_kill_opportunities": [ - 41 - ], - "trade_kill_successes": [ - 41 - ], - "traded_death_attempts": [ - 41 - ], - "traded_death_opportunities": [ - 41 - ], - "traded_death_successes": [ - 41 - ], - "two_kill_rounds": [ - 41 - ], - "unused_utility_value": [ - 41 - ], - "updated_at": [ - 5243 - ], - "util_on_death_count": [ - 41 - ], - "util_on_death_sum": [ - 41 - ], - "wasted_magazine_shots": [ - 41 - ], - "zeus_kills": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "player_match_map_stats_max_fields": { - "assists": [ - 41 - ], - "assists_ct": [ - 41 - ], - "assists_t": [ - 41 - ], - "counter_strafe_eligible_shots": [ - 41 - ], - "counter_strafed_shots": [ - 41 - ], - "crosshair_angle_count": [ - 41 - ], - "crosshair_angle_sum_deg": [ - 3646 - ], - "damage": [ - 41 - ], - "damage_ct": [ - 41 - ], - "damage_t": [ - 41 - ], - "deaths": [ - 41 - ], - "deaths_ct": [ - 41 - ], - "deaths_t": [ - 41 - ], - "decoy_throws": [ - 41 - ], - "enemies_flashed": [ - 41 - ], - "first_bullet_hits": [ - 41 - ], - "first_bullet_shots": [ - 41 - ], - "five_kill_rounds": [ - 41 - ], - "flash_assists": [ - 41 - ], - "flash_duration_count": [ - 41 - ], - "flash_duration_sum": [ - 3646 - ], - "flashes_thrown": [ - 41 - ], - "four_kill_rounds": [ - 41 - ], - "he_damage": [ - 41 - ], - "he_team_damage": [ - 41 - ], - "he_throws": [ - 41 - ], - "headshot_hits": [ - 41 - ], - "hits": [ - 41 - ], - "hits_at_spotted": [ - 41 - ], - "hs_kills": [ - 41 - ], - "hs_kills_ct": [ - 41 - ], - "hs_kills_t": [ - 41 - ], - "kast_rounds": [ - 41 - ], - "kast_total_rounds": [ - 41 - ], - "kills": [ - 41 - ], - "kills_ct": [ - 41 - ], - "kills_t": [ - 41 - ], - "knife_kills": [ - 41 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "molotov_damage": [ - 41 - ], - "molotov_throws": [ - 41 - ], - "non_awp_hits": [ - 41 - ], - "on_target_frames": [ - 41 - ], - "rounds_ct": [ - 41 - ], - "rounds_played": [ - 41 - ], - "rounds_t": [ - 41 - ], - "shots_at_spotted": [ - 41 - ], - "shots_fired": [ - 41 - ], - "smoke_throws": [ - 41 - ], - "spotted_count": [ - 41 - ], - "spotted_with_damage_count": [ - 41 - ], - "spray_hits": [ - 41 - ], - "spray_shots": [ - 41 - ], - "steam_id": [ - 312 - ], - "team_damage": [ - 41 - ], - "team_flashed": [ - 41 - ], - "three_kill_rounds": [ - 41 - ], - "time_to_damage_count": [ - 41 - ], - "time_to_damage_sum_s": [ - 3646 - ], - "total_engagement_frames": [ - 41 - ], - "trade_kill_attempts": [ - 41 - ], - "trade_kill_opportunities": [ - 41 - ], - "trade_kill_successes": [ - 41 - ], - "traded_death_attempts": [ - 41 - ], - "traded_death_opportunities": [ - 41 - ], - "traded_death_successes": [ - 41 - ], - "two_kill_rounds": [ - 41 - ], - "unused_utility_value": [ - 41 - ], - "updated_at": [ - 5243 - ], - "util_on_death_count": [ - 41 - ], - "util_on_death_sum": [ - 41 - ], - "wasted_magazine_shots": [ - 41 - ], - "zeus_kills": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "player_match_map_stats_max_order_by": { - "assists": [ - 3648 - ], - "assists_ct": [ - 3648 - ], - "assists_t": [ - 3648 - ], - "counter_strafe_eligible_shots": [ - 3648 - ], - "counter_strafed_shots": [ - 3648 - ], - "crosshair_angle_count": [ - 3648 - ], - "crosshair_angle_sum_deg": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_ct": [ - 3648 - ], - "damage_t": [ - 3648 - ], - "deaths": [ - 3648 - ], - "deaths_ct": [ - 3648 - ], - "deaths_t": [ - 3648 - ], - "decoy_throws": [ - 3648 - ], - "enemies_flashed": [ - 3648 - ], - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "five_kill_rounds": [ - 3648 - ], - "flash_assists": [ - 3648 - ], - "flash_duration_count": [ - 3648 - ], - "flash_duration_sum": [ - 3648 - ], - "flashes_thrown": [ - 3648 - ], - "four_kill_rounds": [ - 3648 - ], - "he_damage": [ - 3648 - ], - "he_team_damage": [ - 3648 - ], - "he_throws": [ - 3648 - ], - "headshot_hits": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_at_spotted": [ - 3648 - ], - "hs_kills": [ - 3648 - ], - "hs_kills_ct": [ - 3648 - ], - "hs_kills_t": [ - 3648 - ], - "kast_rounds": [ - 3648 - ], - "kast_total_rounds": [ - 3648 - ], - "kills": [ - 3648 - ], - "kills_ct": [ - 3648 - ], - "kills_t": [ - 3648 - ], - "knife_kills": [ - 3648 - ], - "match_id": [ - 3648 - ], - "match_map_id": [ - 3648 - ], - "molotov_damage": [ - 3648 - ], - "molotov_throws": [ - 3648 - ], - "non_awp_hits": [ - 3648 - ], - "on_target_frames": [ - 3648 - ], - "rounds_ct": [ - 3648 - ], - "rounds_played": [ - 3648 - ], - "rounds_t": [ - 3648 - ], - "shots_at_spotted": [ - 3648 - ], - "shots_fired": [ - 3648 - ], - "smoke_throws": [ - 3648 - ], - "spotted_count": [ - 3648 - ], - "spotted_with_damage_count": [ - 3648 - ], - "spray_hits": [ - 3648 - ], - "spray_shots": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "team_damage": [ - 3648 - ], - "team_flashed": [ - 3648 - ], - "three_kill_rounds": [ - 3648 - ], - "time_to_damage_count": [ - 3648 - ], - "time_to_damage_sum_s": [ - 3648 - ], - "total_engagement_frames": [ - 3648 - ], - "trade_kill_attempts": [ - 3648 - ], - "trade_kill_opportunities": [ - 3648 - ], - "trade_kill_successes": [ - 3648 - ], - "traded_death_attempts": [ - 3648 - ], - "traded_death_opportunities": [ - 3648 - ], - "traded_death_successes": [ - 3648 - ], - "two_kill_rounds": [ - 3648 - ], - "unused_utility_value": [ - 3648 - ], - "updated_at": [ - 3648 - ], - "util_on_death_count": [ - 3648 - ], - "util_on_death_sum": [ - 3648 - ], - "wasted_magazine_shots": [ - 3648 - ], - "zeus_kills": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_match_map_stats_min_fields": { - "assists": [ - 41 - ], - "assists_ct": [ - 41 - ], - "assists_t": [ - 41 - ], - "counter_strafe_eligible_shots": [ - 41 - ], - "counter_strafed_shots": [ - 41 - ], - "crosshair_angle_count": [ - 41 - ], - "crosshair_angle_sum_deg": [ - 3646 - ], - "damage": [ - 41 - ], - "damage_ct": [ - 41 - ], - "damage_t": [ - 41 - ], - "deaths": [ - 41 - ], - "deaths_ct": [ - 41 - ], - "deaths_t": [ - 41 - ], - "decoy_throws": [ - 41 - ], - "enemies_flashed": [ - 41 - ], - "first_bullet_hits": [ - 41 - ], - "first_bullet_shots": [ - 41 - ], - "five_kill_rounds": [ - 41 - ], - "flash_assists": [ - 41 - ], - "flash_duration_count": [ - 41 - ], - "flash_duration_sum": [ - 3646 - ], - "flashes_thrown": [ - 41 - ], - "four_kill_rounds": [ - 41 - ], - "he_damage": [ - 41 - ], - "he_team_damage": [ - 41 - ], - "he_throws": [ - 41 - ], - "headshot_hits": [ - 41 - ], - "hits": [ - 41 - ], - "hits_at_spotted": [ - 41 - ], - "hs_kills": [ - 41 - ], - "hs_kills_ct": [ - 41 - ], - "hs_kills_t": [ - 41 - ], - "kast_rounds": [ - 41 - ], - "kast_total_rounds": [ - 41 - ], - "kills": [ - 41 - ], - "kills_ct": [ - 41 - ], - "kills_t": [ - 41 - ], - "knife_kills": [ - 41 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "molotov_damage": [ - 41 - ], - "molotov_throws": [ - 41 - ], - "non_awp_hits": [ - 41 - ], - "on_target_frames": [ - 41 - ], - "rounds_ct": [ - 41 - ], - "rounds_played": [ - 41 - ], - "rounds_t": [ - 41 - ], - "shots_at_spotted": [ - 41 - ], - "shots_fired": [ - 41 - ], - "smoke_throws": [ - 41 - ], - "spotted_count": [ - 41 - ], - "spotted_with_damage_count": [ - 41 - ], - "spray_hits": [ - 41 - ], - "spray_shots": [ - 41 - ], - "steam_id": [ - 312 - ], - "team_damage": [ - 41 - ], - "team_flashed": [ - 41 - ], - "three_kill_rounds": [ - 41 - ], - "time_to_damage_count": [ - 41 - ], - "time_to_damage_sum_s": [ - 3646 - ], - "total_engagement_frames": [ - 41 - ], - "trade_kill_attempts": [ - 41 - ], - "trade_kill_opportunities": [ - 41 - ], - "trade_kill_successes": [ - 41 - ], - "traded_death_attempts": [ - 41 - ], - "traded_death_opportunities": [ - 41 - ], - "traded_death_successes": [ - 41 - ], - "two_kill_rounds": [ - 41 - ], - "unused_utility_value": [ - 41 - ], - "updated_at": [ - 5243 - ], - "util_on_death_count": [ - 41 - ], - "util_on_death_sum": [ - 41 - ], - "wasted_magazine_shots": [ - 41 - ], - "zeus_kills": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "player_match_map_stats_min_order_by": { - "assists": [ - 3648 - ], - "assists_ct": [ - 3648 - ], - "assists_t": [ - 3648 - ], - "counter_strafe_eligible_shots": [ - 3648 - ], - "counter_strafed_shots": [ - 3648 - ], - "crosshair_angle_count": [ - 3648 - ], - "crosshair_angle_sum_deg": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_ct": [ - 3648 - ], - "damage_t": [ - 3648 - ], - "deaths": [ - 3648 - ], - "deaths_ct": [ - 3648 - ], - "deaths_t": [ - 3648 - ], - "decoy_throws": [ - 3648 - ], - "enemies_flashed": [ - 3648 - ], - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "five_kill_rounds": [ - 3648 - ], - "flash_assists": [ - 3648 - ], - "flash_duration_count": [ - 3648 - ], - "flash_duration_sum": [ - 3648 - ], - "flashes_thrown": [ - 3648 - ], - "four_kill_rounds": [ - 3648 - ], - "he_damage": [ - 3648 - ], - "he_team_damage": [ - 3648 - ], - "he_throws": [ - 3648 - ], - "headshot_hits": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_at_spotted": [ - 3648 - ], - "hs_kills": [ - 3648 - ], - "hs_kills_ct": [ - 3648 - ], - "hs_kills_t": [ - 3648 - ], - "kast_rounds": [ - 3648 - ], - "kast_total_rounds": [ - 3648 - ], - "kills": [ - 3648 - ], - "kills_ct": [ - 3648 - ], - "kills_t": [ - 3648 - ], - "knife_kills": [ - 3648 - ], - "match_id": [ - 3648 - ], - "match_map_id": [ - 3648 - ], - "molotov_damage": [ - 3648 - ], - "molotov_throws": [ - 3648 - ], - "non_awp_hits": [ - 3648 - ], - "on_target_frames": [ - 3648 - ], - "rounds_ct": [ - 3648 - ], - "rounds_played": [ - 3648 - ], - "rounds_t": [ - 3648 - ], - "shots_at_spotted": [ - 3648 - ], - "shots_fired": [ - 3648 - ], - "smoke_throws": [ - 3648 - ], - "spotted_count": [ - 3648 - ], - "spotted_with_damage_count": [ - 3648 - ], - "spray_hits": [ - 3648 - ], - "spray_shots": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "team_damage": [ - 3648 - ], - "team_flashed": [ - 3648 - ], - "three_kill_rounds": [ - 3648 - ], - "time_to_damage_count": [ - 3648 - ], - "time_to_damage_sum_s": [ - 3648 - ], - "total_engagement_frames": [ - 3648 - ], - "trade_kill_attempts": [ - 3648 - ], - "trade_kill_opportunities": [ - 3648 - ], - "trade_kill_successes": [ - 3648 - ], - "traded_death_attempts": [ - 3648 - ], - "traded_death_opportunities": [ - 3648 - ], - "traded_death_successes": [ - 3648 - ], - "two_kill_rounds": [ - 3648 - ], - "unused_utility_value": [ - 3648 - ], - "updated_at": [ - 3648 - ], - "util_on_death_count": [ - 3648 - ], - "util_on_death_sum": [ - 3648 - ], - "wasted_magazine_shots": [ - 3648 - ], - "zeus_kills": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_match_map_stats_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 4112 - ], - "__typename": [ - 85 - ] - }, - "player_match_map_stats_on_conflict": { - "constraint": [ - 4122 - ], - "update_columns": [ - 4145 - ], - "where": [ - 4121 - ], - "__typename": [ - 85 - ] - }, - "player_match_map_stats_order_by": { - "assists": [ - 3648 - ], - "assists_ct": [ - 3648 - ], - "assists_t": [ - 3648 - ], - "counter_strafe_eligible_shots": [ - 3648 - ], - "counter_strafed_shots": [ - 3648 - ], - "crosshair_angle_count": [ - 3648 - ], - "crosshair_angle_sum_deg": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_ct": [ - 3648 - ], - "damage_t": [ - 3648 - ], - "deaths": [ - 3648 - ], - "deaths_ct": [ - 3648 - ], - "deaths_t": [ - 3648 - ], - "decoy_throws": [ - 3648 - ], - "enemies_flashed": [ - 3648 - ], - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "five_kill_rounds": [ - 3648 - ], - "flash_assists": [ - 3648 - ], - "flash_duration_count": [ - 3648 - ], - "flash_duration_sum": [ - 3648 - ], - "flashes_thrown": [ - 3648 - ], - "four_kill_rounds": [ - 3648 - ], - "he_damage": [ - 3648 - ], - "he_team_damage": [ - 3648 - ], - "he_throws": [ - 3648 - ], - "headshot_hits": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_at_spotted": [ - 3648 - ], - "hs_kills": [ - 3648 - ], - "hs_kills_ct": [ - 3648 - ], - "hs_kills_t": [ - 3648 - ], - "kast_rounds": [ - 3648 - ], - "kast_total_rounds": [ - 3648 - ], - "kills": [ - 3648 - ], - "kills_ct": [ - 3648 - ], - "kills_t": [ - 3648 - ], - "knife_kills": [ - 3648 - ], - "match": [ - 3454 - ], - "match_id": [ - 3648 - ], - "match_map": [ - 3268 - ], - "match_map_id": [ - 3648 - ], - "molotov_damage": [ - 3648 - ], - "molotov_throws": [ - 3648 - ], - "non_awp_hits": [ - 3648 - ], - "on_target_frames": [ - 3648 - ], - "player": [ - 4619 - ], - "rounds_ct": [ - 3648 - ], - "rounds_played": [ - 3648 - ], - "rounds_t": [ - 3648 - ], - "shots_at_spotted": [ - 3648 - ], - "shots_fired": [ - 3648 - ], - "smoke_throws": [ - 3648 - ], - "spotted_count": [ - 3648 - ], - "spotted_with_damage_count": [ - 3648 - ], - "spray_hits": [ - 3648 - ], - "spray_shots": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "team_damage": [ - 3648 - ], - "team_flashed": [ - 3648 - ], - "three_kill_rounds": [ - 3648 - ], - "time_to_damage_count": [ - 3648 - ], - "time_to_damage_sum_s": [ - 3648 - ], - "total_engagement_frames": [ - 3648 - ], - "trade_kill_attempts": [ - 3648 - ], - "trade_kill_opportunities": [ - 3648 - ], - "trade_kill_successes": [ - 3648 - ], - "traded_death_attempts": [ - 3648 - ], - "traded_death_opportunities": [ - 3648 - ], - "traded_death_successes": [ - 3648 - ], - "two_kill_rounds": [ - 3648 - ], - "unused_utility_value": [ - 3648 - ], - "updated_at": [ - 3648 - ], - "util_on_death_count": [ - 3648 - ], - "util_on_death_sum": [ - 3648 - ], - "wasted_magazine_shots": [ - 3648 - ], - "zeus_kills": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_match_map_stats_pk_columns_input": { - "match_map_id": [ - 6672 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "player_match_map_stats_select_column": {}, - "player_match_map_stats_set_input": { - "assists": [ - 41 - ], - "assists_ct": [ - 41 - ], - "assists_t": [ - 41 - ], - "counter_strafe_eligible_shots": [ - 41 - ], - "counter_strafed_shots": [ - 41 - ], - "crosshair_angle_count": [ - 41 - ], - "crosshair_angle_sum_deg": [ - 3646 - ], - "damage": [ - 41 - ], - "damage_ct": [ - 41 - ], - "damage_t": [ - 41 - ], - "deaths": [ - 41 - ], - "deaths_ct": [ - 41 - ], - "deaths_t": [ - 41 - ], - "decoy_throws": [ - 41 - ], - "enemies_flashed": [ - 41 - ], - "first_bullet_hits": [ - 41 - ], - "first_bullet_shots": [ - 41 - ], - "five_kill_rounds": [ - 41 - ], - "flash_assists": [ - 41 - ], - "flash_duration_count": [ - 41 - ], - "flash_duration_sum": [ - 3646 - ], - "flashes_thrown": [ - 41 - ], - "four_kill_rounds": [ - 41 - ], - "he_damage": [ - 41 - ], - "he_team_damage": [ - 41 - ], - "he_throws": [ - 41 - ], - "headshot_hits": [ - 41 - ], - "hits": [ - 41 - ], - "hits_at_spotted": [ - 41 - ], - "hs_kills": [ - 41 - ], - "hs_kills_ct": [ - 41 - ], - "hs_kills_t": [ - 41 - ], - "kast_rounds": [ - 41 - ], - "kast_total_rounds": [ - 41 - ], - "kills": [ - 41 - ], - "kills_ct": [ - 41 - ], - "kills_t": [ - 41 - ], - "knife_kills": [ - 41 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "molotov_damage": [ - 41 - ], - "molotov_throws": [ - 41 - ], - "non_awp_hits": [ - 41 - ], - "on_target_frames": [ - 41 - ], - "rounds_ct": [ - 41 - ], - "rounds_played": [ - 41 - ], - "rounds_t": [ - 41 - ], - "shots_at_spotted": [ - 41 - ], - "shots_fired": [ - 41 - ], - "smoke_throws": [ - 41 - ], - "spotted_count": [ - 41 - ], - "spotted_with_damage_count": [ - 41 - ], - "spray_hits": [ - 41 - ], - "spray_shots": [ - 41 - ], - "steam_id": [ - 312 - ], - "team_damage": [ - 41 - ], - "team_flashed": [ - 41 - ], - "three_kill_rounds": [ - 41 - ], - "time_to_damage_count": [ - 41 - ], - "time_to_damage_sum_s": [ - 3646 - ], - "total_engagement_frames": [ - 41 - ], - "trade_kill_attempts": [ - 41 - ], - "trade_kill_opportunities": [ - 41 - ], - "trade_kill_successes": [ - 41 - ], - "traded_death_attempts": [ - 41 - ], - "traded_death_opportunities": [ - 41 - ], - "traded_death_successes": [ - 41 - ], - "two_kill_rounds": [ - 41 - ], - "unused_utility_value": [ - 41 - ], - "updated_at": [ - 5243 - ], - "util_on_death_count": [ - 41 - ], - "util_on_death_sum": [ - 41 - ], - "wasted_magazine_shots": [ - 41 - ], - "zeus_kills": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "player_match_map_stats_stddev_fields": { - "assists": [ - 32 - ], - "assists_ct": [ - 32 - ], - "assists_t": [ - 32 - ], - "counter_strafe_eligible_shots": [ - 32 - ], - "counter_strafed_shots": [ - 32 - ], - "crosshair_angle_count": [ - 32 - ], - "crosshair_angle_sum_deg": [ - 32 - ], - "damage": [ - 32 - ], - "damage_ct": [ - 32 - ], - "damage_t": [ - 32 - ], - "deaths": [ - 32 - ], - "deaths_ct": [ - 32 - ], - "deaths_t": [ - 32 - ], - "decoy_throws": [ - 32 - ], - "enemies_flashed": [ - 32 - ], - "first_bullet_hits": [ - 32 - ], - "first_bullet_shots": [ - 32 - ], - "five_kill_rounds": [ - 32 - ], - "flash_assists": [ - 32 - ], - "flash_duration_count": [ - 32 - ], - "flash_duration_sum": [ - 32 - ], - "flashes_thrown": [ - 32 - ], - "four_kill_rounds": [ - 32 - ], - "he_damage": [ - 32 - ], - "he_team_damage": [ - 32 - ], - "he_throws": [ - 32 - ], - "headshot_hits": [ - 32 - ], - "hits": [ - 32 - ], - "hits_at_spotted": [ - 32 - ], - "hs_kills": [ - 32 - ], - "hs_kills_ct": [ - 32 - ], - "hs_kills_t": [ - 32 - ], - "kast_rounds": [ - 32 - ], - "kast_total_rounds": [ - 32 - ], - "kills": [ - 32 - ], - "kills_ct": [ - 32 - ], - "kills_t": [ - 32 - ], - "knife_kills": [ - 32 - ], - "molotov_damage": [ - 32 - ], - "molotov_throws": [ - 32 - ], - "non_awp_hits": [ - 32 - ], - "on_target_frames": [ - 32 - ], - "rounds_ct": [ - 32 - ], - "rounds_played": [ - 32 - ], - "rounds_t": [ - 32 - ], - "shots_at_spotted": [ - 32 - ], - "shots_fired": [ - 32 - ], - "smoke_throws": [ - 32 - ], - "spotted_count": [ - 32 - ], - "spotted_with_damage_count": [ - 32 - ], - "spray_hits": [ - 32 - ], - "spray_shots": [ - 32 - ], - "steam_id": [ - 32 - ], - "team_damage": [ - 32 - ], - "team_flashed": [ - 32 - ], - "three_kill_rounds": [ - 32 - ], - "time_to_damage_count": [ - 32 - ], - "time_to_damage_sum_s": [ - 32 - ], - "total_engagement_frames": [ - 32 - ], - "trade_kill_attempts": [ - 32 - ], - "trade_kill_opportunities": [ - 32 - ], - "trade_kill_successes": [ - 32 - ], - "traded_death_attempts": [ - 32 - ], - "traded_death_opportunities": [ - 32 - ], - "traded_death_successes": [ - 32 - ], - "two_kill_rounds": [ - 32 - ], - "unused_utility_value": [ - 32 - ], - "util_on_death_count": [ - 32 - ], - "util_on_death_sum": [ - 32 - ], - "wasted_magazine_shots": [ - 32 - ], - "zeus_kills": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_match_map_stats_stddev_order_by": { - "assists": [ - 3648 - ], - "assists_ct": [ - 3648 - ], - "assists_t": [ - 3648 - ], - "counter_strafe_eligible_shots": [ - 3648 - ], - "counter_strafed_shots": [ - 3648 - ], - "crosshair_angle_count": [ - 3648 - ], - "crosshair_angle_sum_deg": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_ct": [ - 3648 - ], - "damage_t": [ - 3648 - ], - "deaths": [ - 3648 - ], - "deaths_ct": [ - 3648 - ], - "deaths_t": [ - 3648 - ], - "decoy_throws": [ - 3648 - ], - "enemies_flashed": [ - 3648 - ], - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "five_kill_rounds": [ - 3648 - ], - "flash_assists": [ - 3648 - ], - "flash_duration_count": [ - 3648 - ], - "flash_duration_sum": [ - 3648 - ], - "flashes_thrown": [ - 3648 - ], - "four_kill_rounds": [ - 3648 - ], - "he_damage": [ - 3648 - ], - "he_team_damage": [ - 3648 - ], - "he_throws": [ - 3648 - ], - "headshot_hits": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_at_spotted": [ - 3648 - ], - "hs_kills": [ - 3648 - ], - "hs_kills_ct": [ - 3648 - ], - "hs_kills_t": [ - 3648 - ], - "kast_rounds": [ - 3648 - ], - "kast_total_rounds": [ - 3648 - ], - "kills": [ - 3648 - ], - "kills_ct": [ - 3648 - ], - "kills_t": [ - 3648 - ], - "knife_kills": [ - 3648 - ], - "molotov_damage": [ - 3648 - ], - "molotov_throws": [ - 3648 - ], - "non_awp_hits": [ - 3648 - ], - "on_target_frames": [ - 3648 - ], - "rounds_ct": [ - 3648 - ], - "rounds_played": [ - 3648 - ], - "rounds_t": [ - 3648 - ], - "shots_at_spotted": [ - 3648 - ], - "shots_fired": [ - 3648 - ], - "smoke_throws": [ - 3648 - ], - "spotted_count": [ - 3648 - ], - "spotted_with_damage_count": [ - 3648 - ], - "spray_hits": [ - 3648 - ], - "spray_shots": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "team_damage": [ - 3648 - ], - "team_flashed": [ - 3648 - ], - "three_kill_rounds": [ - 3648 - ], - "time_to_damage_count": [ - 3648 - ], - "time_to_damage_sum_s": [ - 3648 - ], - "total_engagement_frames": [ - 3648 - ], - "trade_kill_attempts": [ - 3648 - ], - "trade_kill_opportunities": [ - 3648 - ], - "trade_kill_successes": [ - 3648 - ], - "traded_death_attempts": [ - 3648 - ], - "traded_death_opportunities": [ - 3648 - ], - "traded_death_successes": [ - 3648 - ], - "two_kill_rounds": [ - 3648 - ], - "unused_utility_value": [ - 3648 - ], - "util_on_death_count": [ - 3648 - ], - "util_on_death_sum": [ - 3648 - ], - "wasted_magazine_shots": [ - 3648 - ], - "zeus_kills": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_match_map_stats_stddev_pop_fields": { - "assists": [ - 32 - ], - "assists_ct": [ - 32 - ], - "assists_t": [ - 32 - ], - "counter_strafe_eligible_shots": [ - 32 - ], - "counter_strafed_shots": [ - 32 - ], - "crosshair_angle_count": [ - 32 - ], - "crosshair_angle_sum_deg": [ - 32 - ], - "damage": [ - 32 - ], - "damage_ct": [ - 32 - ], - "damage_t": [ - 32 - ], - "deaths": [ - 32 - ], - "deaths_ct": [ - 32 - ], - "deaths_t": [ - 32 - ], - "decoy_throws": [ - 32 - ], - "enemies_flashed": [ - 32 - ], - "first_bullet_hits": [ - 32 - ], - "first_bullet_shots": [ - 32 - ], - "five_kill_rounds": [ - 32 - ], - "flash_assists": [ - 32 - ], - "flash_duration_count": [ - 32 - ], - "flash_duration_sum": [ - 32 - ], - "flashes_thrown": [ - 32 - ], - "four_kill_rounds": [ - 32 - ], - "he_damage": [ - 32 - ], - "he_team_damage": [ - 32 - ], - "he_throws": [ - 32 - ], - "headshot_hits": [ - 32 - ], - "hits": [ - 32 - ], - "hits_at_spotted": [ - 32 - ], - "hs_kills": [ - 32 - ], - "hs_kills_ct": [ - 32 - ], - "hs_kills_t": [ - 32 - ], - "kast_rounds": [ - 32 - ], - "kast_total_rounds": [ - 32 - ], - "kills": [ - 32 - ], - "kills_ct": [ - 32 - ], - "kills_t": [ - 32 - ], - "knife_kills": [ - 32 - ], - "molotov_damage": [ - 32 - ], - "molotov_throws": [ - 32 - ], - "non_awp_hits": [ - 32 - ], - "on_target_frames": [ - 32 - ], - "rounds_ct": [ - 32 - ], - "rounds_played": [ - 32 - ], - "rounds_t": [ - 32 - ], - "shots_at_spotted": [ - 32 - ], - "shots_fired": [ - 32 - ], - "smoke_throws": [ - 32 - ], - "spotted_count": [ - 32 - ], - "spotted_with_damage_count": [ - 32 - ], - "spray_hits": [ - 32 - ], - "spray_shots": [ - 32 - ], - "steam_id": [ - 32 - ], - "team_damage": [ - 32 - ], - "team_flashed": [ - 32 - ], - "three_kill_rounds": [ - 32 - ], - "time_to_damage_count": [ - 32 - ], - "time_to_damage_sum_s": [ - 32 - ], - "total_engagement_frames": [ - 32 - ], - "trade_kill_attempts": [ - 32 - ], - "trade_kill_opportunities": [ - 32 - ], - "trade_kill_successes": [ - 32 - ], - "traded_death_attempts": [ - 32 - ], - "traded_death_opportunities": [ - 32 - ], - "traded_death_successes": [ - 32 - ], - "two_kill_rounds": [ - 32 - ], - "unused_utility_value": [ - 32 - ], - "util_on_death_count": [ - 32 - ], - "util_on_death_sum": [ - 32 - ], - "wasted_magazine_shots": [ - 32 - ], - "zeus_kills": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_match_map_stats_stddev_pop_order_by": { - "assists": [ - 3648 - ], - "assists_ct": [ - 3648 - ], - "assists_t": [ - 3648 - ], - "counter_strafe_eligible_shots": [ - 3648 - ], - "counter_strafed_shots": [ - 3648 - ], - "crosshair_angle_count": [ - 3648 - ], - "crosshair_angle_sum_deg": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_ct": [ - 3648 - ], - "damage_t": [ - 3648 - ], - "deaths": [ - 3648 - ], - "deaths_ct": [ - 3648 - ], - "deaths_t": [ - 3648 - ], - "decoy_throws": [ - 3648 - ], - "enemies_flashed": [ - 3648 - ], - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "five_kill_rounds": [ - 3648 - ], - "flash_assists": [ - 3648 - ], - "flash_duration_count": [ - 3648 - ], - "flash_duration_sum": [ - 3648 - ], - "flashes_thrown": [ - 3648 - ], - "four_kill_rounds": [ - 3648 - ], - "he_damage": [ - 3648 - ], - "he_team_damage": [ - 3648 - ], - "he_throws": [ - 3648 - ], - "headshot_hits": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_at_spotted": [ - 3648 - ], - "hs_kills": [ - 3648 - ], - "hs_kills_ct": [ - 3648 - ], - "hs_kills_t": [ - 3648 - ], - "kast_rounds": [ - 3648 - ], - "kast_total_rounds": [ - 3648 - ], - "kills": [ - 3648 - ], - "kills_ct": [ - 3648 - ], - "kills_t": [ - 3648 - ], - "knife_kills": [ - 3648 - ], - "molotov_damage": [ - 3648 - ], - "molotov_throws": [ - 3648 - ], - "non_awp_hits": [ - 3648 - ], - "on_target_frames": [ - 3648 - ], - "rounds_ct": [ - 3648 - ], - "rounds_played": [ - 3648 - ], - "rounds_t": [ - 3648 - ], - "shots_at_spotted": [ - 3648 - ], - "shots_fired": [ - 3648 - ], - "smoke_throws": [ - 3648 - ], - "spotted_count": [ - 3648 - ], - "spotted_with_damage_count": [ - 3648 - ], - "spray_hits": [ - 3648 - ], - "spray_shots": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "team_damage": [ - 3648 - ], - "team_flashed": [ - 3648 - ], - "three_kill_rounds": [ - 3648 - ], - "time_to_damage_count": [ - 3648 - ], - "time_to_damage_sum_s": [ - 3648 - ], - "total_engagement_frames": [ - 3648 - ], - "trade_kill_attempts": [ - 3648 - ], - "trade_kill_opportunities": [ - 3648 - ], - "trade_kill_successes": [ - 3648 - ], - "traded_death_attempts": [ - 3648 - ], - "traded_death_opportunities": [ - 3648 - ], - "traded_death_successes": [ - 3648 - ], - "two_kill_rounds": [ - 3648 - ], - "unused_utility_value": [ - 3648 - ], - "util_on_death_count": [ - 3648 - ], - "util_on_death_sum": [ - 3648 - ], - "wasted_magazine_shots": [ - 3648 - ], - "zeus_kills": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_match_map_stats_stddev_samp_fields": { - "assists": [ - 32 - ], - "assists_ct": [ - 32 - ], - "assists_t": [ - 32 - ], - "counter_strafe_eligible_shots": [ - 32 - ], - "counter_strafed_shots": [ - 32 - ], - "crosshair_angle_count": [ - 32 - ], - "crosshair_angle_sum_deg": [ - 32 - ], - "damage": [ - 32 - ], - "damage_ct": [ - 32 - ], - "damage_t": [ - 32 - ], - "deaths": [ - 32 - ], - "deaths_ct": [ - 32 - ], - "deaths_t": [ - 32 - ], - "decoy_throws": [ - 32 - ], - "enemies_flashed": [ - 32 - ], - "first_bullet_hits": [ - 32 - ], - "first_bullet_shots": [ - 32 - ], - "five_kill_rounds": [ - 32 - ], - "flash_assists": [ - 32 - ], - "flash_duration_count": [ - 32 - ], - "flash_duration_sum": [ - 32 - ], - "flashes_thrown": [ - 32 - ], - "four_kill_rounds": [ - 32 - ], - "he_damage": [ - 32 - ], - "he_team_damage": [ - 32 - ], - "he_throws": [ - 32 - ], - "headshot_hits": [ - 32 - ], - "hits": [ - 32 - ], - "hits_at_spotted": [ - 32 - ], - "hs_kills": [ - 32 - ], - "hs_kills_ct": [ - 32 - ], - "hs_kills_t": [ - 32 - ], - "kast_rounds": [ - 32 - ], - "kast_total_rounds": [ - 32 - ], - "kills": [ - 32 - ], - "kills_ct": [ - 32 - ], - "kills_t": [ - 32 - ], - "knife_kills": [ - 32 - ], - "molotov_damage": [ - 32 - ], - "molotov_throws": [ - 32 - ], - "non_awp_hits": [ - 32 - ], - "on_target_frames": [ - 32 - ], - "rounds_ct": [ - 32 - ], - "rounds_played": [ - 32 - ], - "rounds_t": [ - 32 - ], - "shots_at_spotted": [ - 32 - ], - "shots_fired": [ - 32 - ], - "smoke_throws": [ - 32 - ], - "spotted_count": [ - 32 - ], - "spotted_with_damage_count": [ - 32 - ], - "spray_hits": [ - 32 - ], - "spray_shots": [ - 32 - ], - "steam_id": [ - 32 - ], - "team_damage": [ - 32 - ], - "team_flashed": [ - 32 - ], - "three_kill_rounds": [ - 32 - ], - "time_to_damage_count": [ - 32 - ], - "time_to_damage_sum_s": [ - 32 - ], - "total_engagement_frames": [ - 32 - ], - "trade_kill_attempts": [ - 32 - ], - "trade_kill_opportunities": [ - 32 - ], - "trade_kill_successes": [ - 32 - ], - "traded_death_attempts": [ - 32 - ], - "traded_death_opportunities": [ - 32 - ], - "traded_death_successes": [ - 32 - ], - "two_kill_rounds": [ - 32 - ], - "unused_utility_value": [ - 32 - ], - "util_on_death_count": [ - 32 - ], - "util_on_death_sum": [ - 32 - ], - "wasted_magazine_shots": [ - 32 - ], - "zeus_kills": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_match_map_stats_stddev_samp_order_by": { - "assists": [ - 3648 - ], - "assists_ct": [ - 3648 - ], - "assists_t": [ - 3648 - ], - "counter_strafe_eligible_shots": [ - 3648 - ], - "counter_strafed_shots": [ - 3648 - ], - "crosshair_angle_count": [ - 3648 - ], - "crosshair_angle_sum_deg": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_ct": [ - 3648 - ], - "damage_t": [ - 3648 - ], - "deaths": [ - 3648 - ], - "deaths_ct": [ - 3648 - ], - "deaths_t": [ - 3648 - ], - "decoy_throws": [ - 3648 - ], - "enemies_flashed": [ - 3648 - ], - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "five_kill_rounds": [ - 3648 - ], - "flash_assists": [ - 3648 - ], - "flash_duration_count": [ - 3648 - ], - "flash_duration_sum": [ - 3648 - ], - "flashes_thrown": [ - 3648 - ], - "four_kill_rounds": [ - 3648 - ], - "he_damage": [ - 3648 - ], - "he_team_damage": [ - 3648 - ], - "he_throws": [ - 3648 - ], - "headshot_hits": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_at_spotted": [ - 3648 - ], - "hs_kills": [ - 3648 - ], - "hs_kills_ct": [ - 3648 - ], - "hs_kills_t": [ - 3648 - ], - "kast_rounds": [ - 3648 - ], - "kast_total_rounds": [ - 3648 - ], - "kills": [ - 3648 - ], - "kills_ct": [ - 3648 - ], - "kills_t": [ - 3648 - ], - "knife_kills": [ - 3648 - ], - "molotov_damage": [ - 3648 - ], - "molotov_throws": [ - 3648 - ], - "non_awp_hits": [ - 3648 - ], - "on_target_frames": [ - 3648 - ], - "rounds_ct": [ - 3648 - ], - "rounds_played": [ - 3648 - ], - "rounds_t": [ - 3648 - ], - "shots_at_spotted": [ - 3648 - ], - "shots_fired": [ - 3648 - ], - "smoke_throws": [ - 3648 - ], - "spotted_count": [ - 3648 - ], - "spotted_with_damage_count": [ - 3648 - ], - "spray_hits": [ - 3648 - ], - "spray_shots": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "team_damage": [ - 3648 - ], - "team_flashed": [ - 3648 - ], - "three_kill_rounds": [ - 3648 - ], - "time_to_damage_count": [ - 3648 - ], - "time_to_damage_sum_s": [ - 3648 - ], - "total_engagement_frames": [ - 3648 - ], - "trade_kill_attempts": [ - 3648 - ], - "trade_kill_opportunities": [ - 3648 - ], - "trade_kill_successes": [ - 3648 - ], - "traded_death_attempts": [ - 3648 - ], - "traded_death_opportunities": [ - 3648 - ], - "traded_death_successes": [ - 3648 - ], - "two_kill_rounds": [ - 3648 - ], - "unused_utility_value": [ - 3648 - ], - "util_on_death_count": [ - 3648 - ], - "util_on_death_sum": [ - 3648 - ], - "wasted_magazine_shots": [ - 3648 - ], - "zeus_kills": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_match_map_stats_stream_cursor_input": { - "initial_value": [ - 4142 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "player_match_map_stats_stream_cursor_value_input": { - "assists": [ - 41 - ], - "assists_ct": [ - 41 - ], - "assists_t": [ - 41 - ], - "counter_strafe_eligible_shots": [ - 41 - ], - "counter_strafed_shots": [ - 41 - ], - "crosshair_angle_count": [ - 41 - ], - "crosshair_angle_sum_deg": [ - 3646 - ], - "damage": [ - 41 - ], - "damage_ct": [ - 41 - ], - "damage_t": [ - 41 - ], - "deaths": [ - 41 - ], - "deaths_ct": [ - 41 - ], - "deaths_t": [ - 41 - ], - "decoy_throws": [ - 41 - ], - "enemies_flashed": [ - 41 - ], - "first_bullet_hits": [ - 41 - ], - "first_bullet_shots": [ - 41 - ], - "five_kill_rounds": [ - 41 - ], - "flash_assists": [ - 41 - ], - "flash_duration_count": [ - 41 - ], - "flash_duration_sum": [ - 3646 - ], - "flashes_thrown": [ - 41 - ], - "four_kill_rounds": [ - 41 - ], - "he_damage": [ - 41 - ], - "he_team_damage": [ - 41 - ], - "he_throws": [ - 41 - ], - "headshot_hits": [ - 41 - ], - "hits": [ - 41 - ], - "hits_at_spotted": [ - 41 - ], - "hs_kills": [ - 41 - ], - "hs_kills_ct": [ - 41 - ], - "hs_kills_t": [ - 41 - ], - "kast_rounds": [ - 41 - ], - "kast_total_rounds": [ - 41 - ], - "kills": [ - 41 - ], - "kills_ct": [ - 41 - ], - "kills_t": [ - 41 - ], - "knife_kills": [ - 41 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "molotov_damage": [ - 41 - ], - "molotov_throws": [ - 41 - ], - "non_awp_hits": [ - 41 - ], - "on_target_frames": [ - 41 - ], - "rounds_ct": [ - 41 - ], - "rounds_played": [ - 41 - ], - "rounds_t": [ - 41 - ], - "shots_at_spotted": [ - 41 - ], - "shots_fired": [ - 41 - ], - "smoke_throws": [ - 41 - ], - "spotted_count": [ - 41 - ], - "spotted_with_damage_count": [ - 41 - ], - "spray_hits": [ - 41 - ], - "spray_shots": [ - 41 - ], - "steam_id": [ - 312 - ], - "team_damage": [ - 41 - ], - "team_flashed": [ - 41 - ], - "three_kill_rounds": [ - 41 - ], - "time_to_damage_count": [ - 41 - ], - "time_to_damage_sum_s": [ - 3646 - ], - "total_engagement_frames": [ - 41 - ], - "trade_kill_attempts": [ - 41 - ], - "trade_kill_opportunities": [ - 41 - ], - "trade_kill_successes": [ - 41 - ], - "traded_death_attempts": [ - 41 - ], - "traded_death_opportunities": [ - 41 - ], - "traded_death_successes": [ - 41 - ], - "two_kill_rounds": [ - 41 - ], - "unused_utility_value": [ - 41 - ], - "updated_at": [ - 5243 - ], - "util_on_death_count": [ - 41 - ], - "util_on_death_sum": [ - 41 - ], - "wasted_magazine_shots": [ - 41 - ], - "zeus_kills": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "player_match_map_stats_sum_fields": { - "assists": [ - 41 - ], - "assists_ct": [ - 41 - ], - "assists_t": [ - 41 - ], - "counter_strafe_eligible_shots": [ - 41 - ], - "counter_strafed_shots": [ - 41 - ], - "crosshair_angle_count": [ - 41 - ], - "crosshair_angle_sum_deg": [ - 3646 - ], - "damage": [ - 41 - ], - "damage_ct": [ - 41 - ], - "damage_t": [ - 41 - ], - "deaths": [ - 41 - ], - "deaths_ct": [ - 41 - ], - "deaths_t": [ - 41 - ], - "decoy_throws": [ - 41 - ], - "enemies_flashed": [ - 41 - ], - "first_bullet_hits": [ - 41 - ], - "first_bullet_shots": [ - 41 - ], - "five_kill_rounds": [ - 41 - ], - "flash_assists": [ - 41 - ], - "flash_duration_count": [ - 41 - ], - "flash_duration_sum": [ - 3646 - ], - "flashes_thrown": [ - 41 - ], - "four_kill_rounds": [ - 41 - ], - "he_damage": [ - 41 - ], - "he_team_damage": [ - 41 - ], - "he_throws": [ - 41 - ], - "headshot_hits": [ - 41 - ], - "hits": [ - 41 - ], - "hits_at_spotted": [ - 41 - ], - "hs_kills": [ - 41 - ], - "hs_kills_ct": [ - 41 - ], - "hs_kills_t": [ - 41 - ], - "kast_rounds": [ - 41 - ], - "kast_total_rounds": [ - 41 - ], - "kills": [ - 41 - ], - "kills_ct": [ - 41 - ], - "kills_t": [ - 41 - ], - "knife_kills": [ - 41 - ], - "molotov_damage": [ - 41 - ], - "molotov_throws": [ - 41 - ], - "non_awp_hits": [ - 41 - ], - "on_target_frames": [ - 41 - ], - "rounds_ct": [ - 41 - ], - "rounds_played": [ - 41 - ], - "rounds_t": [ - 41 - ], - "shots_at_spotted": [ - 41 - ], - "shots_fired": [ - 41 - ], - "smoke_throws": [ - 41 - ], - "spotted_count": [ - 41 - ], - "spotted_with_damage_count": [ - 41 - ], - "spray_hits": [ - 41 - ], - "spray_shots": [ - 41 - ], - "steam_id": [ - 312 - ], - "team_damage": [ - 41 - ], - "team_flashed": [ - 41 - ], - "three_kill_rounds": [ - 41 - ], - "time_to_damage_count": [ - 41 - ], - "time_to_damage_sum_s": [ - 3646 - ], - "total_engagement_frames": [ - 41 - ], - "trade_kill_attempts": [ - 41 - ], - "trade_kill_opportunities": [ - 41 - ], - "trade_kill_successes": [ - 41 - ], - "traded_death_attempts": [ - 41 - ], - "traded_death_opportunities": [ - 41 - ], - "traded_death_successes": [ - 41 - ], - "two_kill_rounds": [ - 41 - ], - "unused_utility_value": [ - 41 - ], - "util_on_death_count": [ - 41 - ], - "util_on_death_sum": [ - 41 - ], - "wasted_magazine_shots": [ - 41 - ], - "zeus_kills": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "player_match_map_stats_sum_order_by": { - "assists": [ - 3648 - ], - "assists_ct": [ - 3648 - ], - "assists_t": [ - 3648 - ], - "counter_strafe_eligible_shots": [ - 3648 - ], - "counter_strafed_shots": [ - 3648 - ], - "crosshair_angle_count": [ - 3648 - ], - "crosshair_angle_sum_deg": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_ct": [ - 3648 - ], - "damage_t": [ - 3648 - ], - "deaths": [ - 3648 - ], - "deaths_ct": [ - 3648 - ], - "deaths_t": [ - 3648 - ], - "decoy_throws": [ - 3648 - ], - "enemies_flashed": [ - 3648 - ], - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "five_kill_rounds": [ - 3648 - ], - "flash_assists": [ - 3648 - ], - "flash_duration_count": [ - 3648 - ], - "flash_duration_sum": [ - 3648 - ], - "flashes_thrown": [ - 3648 - ], - "four_kill_rounds": [ - 3648 - ], - "he_damage": [ - 3648 - ], - "he_team_damage": [ - 3648 - ], - "he_throws": [ - 3648 - ], - "headshot_hits": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_at_spotted": [ - 3648 - ], - "hs_kills": [ - 3648 - ], - "hs_kills_ct": [ - 3648 - ], - "hs_kills_t": [ - 3648 - ], - "kast_rounds": [ - 3648 - ], - "kast_total_rounds": [ - 3648 - ], - "kills": [ - 3648 - ], - "kills_ct": [ - 3648 - ], - "kills_t": [ - 3648 - ], - "knife_kills": [ - 3648 - ], - "molotov_damage": [ - 3648 - ], - "molotov_throws": [ - 3648 - ], - "non_awp_hits": [ - 3648 - ], - "on_target_frames": [ - 3648 - ], - "rounds_ct": [ - 3648 - ], - "rounds_played": [ - 3648 - ], - "rounds_t": [ - 3648 - ], - "shots_at_spotted": [ - 3648 - ], - "shots_fired": [ - 3648 - ], - "smoke_throws": [ - 3648 - ], - "spotted_count": [ - 3648 - ], - "spotted_with_damage_count": [ - 3648 - ], - "spray_hits": [ - 3648 - ], - "spray_shots": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "team_damage": [ - 3648 - ], - "team_flashed": [ - 3648 - ], - "three_kill_rounds": [ - 3648 - ], - "time_to_damage_count": [ - 3648 - ], - "time_to_damage_sum_s": [ - 3648 - ], - "total_engagement_frames": [ - 3648 - ], - "trade_kill_attempts": [ - 3648 - ], - "trade_kill_opportunities": [ - 3648 - ], - "trade_kill_successes": [ - 3648 - ], - "traded_death_attempts": [ - 3648 - ], - "traded_death_opportunities": [ - 3648 - ], - "traded_death_successes": [ - 3648 - ], - "two_kill_rounds": [ - 3648 - ], - "unused_utility_value": [ - 3648 - ], - "util_on_death_count": [ - 3648 - ], - "util_on_death_sum": [ - 3648 - ], - "wasted_magazine_shots": [ - 3648 - ], - "zeus_kills": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_match_map_stats_update_column": {}, - "player_match_map_stats_updates": { - "_inc": [ - 4123 - ], - "_set": [ - 4134 - ], - "where": [ - 4121 - ], - "__typename": [ - 85 - ] - }, - "player_match_map_stats_var_pop_fields": { - "assists": [ - 32 - ], - "assists_ct": [ - 32 - ], - "assists_t": [ - 32 - ], - "counter_strafe_eligible_shots": [ - 32 - ], - "counter_strafed_shots": [ - 32 - ], - "crosshair_angle_count": [ - 32 - ], - "crosshair_angle_sum_deg": [ - 32 - ], - "damage": [ - 32 - ], - "damage_ct": [ - 32 - ], - "damage_t": [ - 32 - ], - "deaths": [ - 32 - ], - "deaths_ct": [ - 32 - ], - "deaths_t": [ - 32 - ], - "decoy_throws": [ - 32 - ], - "enemies_flashed": [ - 32 - ], - "first_bullet_hits": [ - 32 - ], - "first_bullet_shots": [ - 32 - ], - "five_kill_rounds": [ - 32 - ], - "flash_assists": [ - 32 - ], - "flash_duration_count": [ - 32 - ], - "flash_duration_sum": [ - 32 - ], - "flashes_thrown": [ - 32 - ], - "four_kill_rounds": [ - 32 - ], - "he_damage": [ - 32 - ], - "he_team_damage": [ - 32 - ], - "he_throws": [ - 32 - ], - "headshot_hits": [ - 32 - ], - "hits": [ - 32 - ], - "hits_at_spotted": [ - 32 - ], - "hs_kills": [ - 32 - ], - "hs_kills_ct": [ - 32 - ], - "hs_kills_t": [ - 32 - ], - "kast_rounds": [ - 32 - ], - "kast_total_rounds": [ - 32 - ], - "kills": [ - 32 - ], - "kills_ct": [ - 32 - ], - "kills_t": [ - 32 - ], - "knife_kills": [ - 32 - ], - "molotov_damage": [ - 32 - ], - "molotov_throws": [ - 32 - ], - "non_awp_hits": [ - 32 - ], - "on_target_frames": [ - 32 - ], - "rounds_ct": [ - 32 - ], - "rounds_played": [ - 32 - ], - "rounds_t": [ - 32 - ], - "shots_at_spotted": [ - 32 - ], - "shots_fired": [ - 32 - ], - "smoke_throws": [ - 32 - ], - "spotted_count": [ - 32 - ], - "spotted_with_damage_count": [ - 32 - ], - "spray_hits": [ - 32 - ], - "spray_shots": [ - 32 - ], - "steam_id": [ - 32 - ], - "team_damage": [ - 32 - ], - "team_flashed": [ - 32 - ], - "three_kill_rounds": [ - 32 - ], - "time_to_damage_count": [ - 32 - ], - "time_to_damage_sum_s": [ - 32 - ], - "total_engagement_frames": [ - 32 - ], - "trade_kill_attempts": [ - 32 - ], - "trade_kill_opportunities": [ - 32 - ], - "trade_kill_successes": [ - 32 - ], - "traded_death_attempts": [ - 32 - ], - "traded_death_opportunities": [ - 32 - ], - "traded_death_successes": [ - 32 - ], - "two_kill_rounds": [ - 32 - ], - "unused_utility_value": [ - 32 - ], - "util_on_death_count": [ - 32 - ], - "util_on_death_sum": [ - 32 - ], - "wasted_magazine_shots": [ - 32 - ], - "zeus_kills": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_match_map_stats_var_pop_order_by": { - "assists": [ - 3648 - ], - "assists_ct": [ - 3648 - ], - "assists_t": [ - 3648 - ], - "counter_strafe_eligible_shots": [ - 3648 - ], - "counter_strafed_shots": [ - 3648 - ], - "crosshair_angle_count": [ - 3648 - ], - "crosshair_angle_sum_deg": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_ct": [ - 3648 - ], - "damage_t": [ - 3648 - ], - "deaths": [ - 3648 - ], - "deaths_ct": [ - 3648 - ], - "deaths_t": [ - 3648 - ], - "decoy_throws": [ - 3648 - ], - "enemies_flashed": [ - 3648 - ], - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "five_kill_rounds": [ - 3648 - ], - "flash_assists": [ - 3648 - ], - "flash_duration_count": [ - 3648 - ], - "flash_duration_sum": [ - 3648 - ], - "flashes_thrown": [ - 3648 - ], - "four_kill_rounds": [ - 3648 - ], - "he_damage": [ - 3648 - ], - "he_team_damage": [ - 3648 - ], - "he_throws": [ - 3648 - ], - "headshot_hits": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_at_spotted": [ - 3648 - ], - "hs_kills": [ - 3648 - ], - "hs_kills_ct": [ - 3648 - ], - "hs_kills_t": [ - 3648 - ], - "kast_rounds": [ - 3648 - ], - "kast_total_rounds": [ - 3648 - ], - "kills": [ - 3648 - ], - "kills_ct": [ - 3648 - ], - "kills_t": [ - 3648 - ], - "knife_kills": [ - 3648 - ], - "molotov_damage": [ - 3648 - ], - "molotov_throws": [ - 3648 - ], - "non_awp_hits": [ - 3648 - ], - "on_target_frames": [ - 3648 - ], - "rounds_ct": [ - 3648 - ], - "rounds_played": [ - 3648 - ], - "rounds_t": [ - 3648 - ], - "shots_at_spotted": [ - 3648 - ], - "shots_fired": [ - 3648 - ], - "smoke_throws": [ - 3648 - ], - "spotted_count": [ - 3648 - ], - "spotted_with_damage_count": [ - 3648 - ], - "spray_hits": [ - 3648 - ], - "spray_shots": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "team_damage": [ - 3648 - ], - "team_flashed": [ - 3648 - ], - "three_kill_rounds": [ - 3648 - ], - "time_to_damage_count": [ - 3648 - ], - "time_to_damage_sum_s": [ - 3648 - ], - "total_engagement_frames": [ - 3648 - ], - "trade_kill_attempts": [ - 3648 - ], - "trade_kill_opportunities": [ - 3648 - ], - "trade_kill_successes": [ - 3648 - ], - "traded_death_attempts": [ - 3648 - ], - "traded_death_opportunities": [ - 3648 - ], - "traded_death_successes": [ - 3648 - ], - "two_kill_rounds": [ - 3648 - ], - "unused_utility_value": [ - 3648 - ], - "util_on_death_count": [ - 3648 - ], - "util_on_death_sum": [ - 3648 - ], - "wasted_magazine_shots": [ - 3648 - ], - "zeus_kills": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_match_map_stats_var_samp_fields": { - "assists": [ - 32 - ], - "assists_ct": [ - 32 - ], - "assists_t": [ - 32 - ], - "counter_strafe_eligible_shots": [ - 32 - ], - "counter_strafed_shots": [ - 32 - ], - "crosshair_angle_count": [ - 32 - ], - "crosshair_angle_sum_deg": [ - 32 - ], - "damage": [ - 32 - ], - "damage_ct": [ - 32 - ], - "damage_t": [ - 32 - ], - "deaths": [ - 32 - ], - "deaths_ct": [ - 32 - ], - "deaths_t": [ - 32 - ], - "decoy_throws": [ - 32 - ], - "enemies_flashed": [ - 32 - ], - "first_bullet_hits": [ - 32 - ], - "first_bullet_shots": [ - 32 - ], - "five_kill_rounds": [ - 32 - ], - "flash_assists": [ - 32 - ], - "flash_duration_count": [ - 32 - ], - "flash_duration_sum": [ - 32 - ], - "flashes_thrown": [ - 32 - ], - "four_kill_rounds": [ - 32 - ], - "he_damage": [ - 32 - ], - "he_team_damage": [ - 32 - ], - "he_throws": [ - 32 - ], - "headshot_hits": [ - 32 - ], - "hits": [ - 32 - ], - "hits_at_spotted": [ - 32 - ], - "hs_kills": [ - 32 - ], - "hs_kills_ct": [ - 32 - ], - "hs_kills_t": [ - 32 - ], - "kast_rounds": [ - 32 - ], - "kast_total_rounds": [ - 32 - ], - "kills": [ - 32 - ], - "kills_ct": [ - 32 - ], - "kills_t": [ - 32 - ], - "knife_kills": [ - 32 - ], - "molotov_damage": [ - 32 - ], - "molotov_throws": [ - 32 - ], - "non_awp_hits": [ - 32 - ], - "on_target_frames": [ - 32 - ], - "rounds_ct": [ - 32 - ], - "rounds_played": [ - 32 - ], - "rounds_t": [ - 32 - ], - "shots_at_spotted": [ - 32 - ], - "shots_fired": [ - 32 - ], - "smoke_throws": [ - 32 - ], - "spotted_count": [ - 32 - ], - "spotted_with_damage_count": [ - 32 - ], - "spray_hits": [ - 32 - ], - "spray_shots": [ - 32 - ], - "steam_id": [ - 32 - ], - "team_damage": [ - 32 - ], - "team_flashed": [ - 32 - ], - "three_kill_rounds": [ - 32 - ], - "time_to_damage_count": [ - 32 - ], - "time_to_damage_sum_s": [ - 32 - ], - "total_engagement_frames": [ - 32 - ], - "trade_kill_attempts": [ - 32 - ], - "trade_kill_opportunities": [ - 32 - ], - "trade_kill_successes": [ - 32 - ], - "traded_death_attempts": [ - 32 - ], - "traded_death_opportunities": [ - 32 - ], - "traded_death_successes": [ - 32 - ], - "two_kill_rounds": [ - 32 - ], - "unused_utility_value": [ - 32 - ], - "util_on_death_count": [ - 32 - ], - "util_on_death_sum": [ - 32 - ], - "wasted_magazine_shots": [ - 32 - ], - "zeus_kills": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_match_map_stats_var_samp_order_by": { - "assists": [ - 3648 - ], - "assists_ct": [ - 3648 - ], - "assists_t": [ - 3648 - ], - "counter_strafe_eligible_shots": [ - 3648 - ], - "counter_strafed_shots": [ - 3648 - ], - "crosshair_angle_count": [ - 3648 - ], - "crosshair_angle_sum_deg": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_ct": [ - 3648 - ], - "damage_t": [ - 3648 - ], - "deaths": [ - 3648 - ], - "deaths_ct": [ - 3648 - ], - "deaths_t": [ - 3648 - ], - "decoy_throws": [ - 3648 - ], - "enemies_flashed": [ - 3648 - ], - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "five_kill_rounds": [ - 3648 - ], - "flash_assists": [ - 3648 - ], - "flash_duration_count": [ - 3648 - ], - "flash_duration_sum": [ - 3648 - ], - "flashes_thrown": [ - 3648 - ], - "four_kill_rounds": [ - 3648 - ], - "he_damage": [ - 3648 - ], - "he_team_damage": [ - 3648 - ], - "he_throws": [ - 3648 - ], - "headshot_hits": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_at_spotted": [ - 3648 - ], - "hs_kills": [ - 3648 - ], - "hs_kills_ct": [ - 3648 - ], - "hs_kills_t": [ - 3648 - ], - "kast_rounds": [ - 3648 - ], - "kast_total_rounds": [ - 3648 - ], - "kills": [ - 3648 - ], - "kills_ct": [ - 3648 - ], - "kills_t": [ - 3648 - ], - "knife_kills": [ - 3648 - ], - "molotov_damage": [ - 3648 - ], - "molotov_throws": [ - 3648 - ], - "non_awp_hits": [ - 3648 - ], - "on_target_frames": [ - 3648 - ], - "rounds_ct": [ - 3648 - ], - "rounds_played": [ - 3648 - ], - "rounds_t": [ - 3648 - ], - "shots_at_spotted": [ - 3648 - ], - "shots_fired": [ - 3648 - ], - "smoke_throws": [ - 3648 - ], - "spotted_count": [ - 3648 - ], - "spotted_with_damage_count": [ - 3648 - ], - "spray_hits": [ - 3648 - ], - "spray_shots": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "team_damage": [ - 3648 - ], - "team_flashed": [ - 3648 - ], - "three_kill_rounds": [ - 3648 - ], - "time_to_damage_count": [ - 3648 - ], - "time_to_damage_sum_s": [ - 3648 - ], - "total_engagement_frames": [ - 3648 - ], - "trade_kill_attempts": [ - 3648 - ], - "trade_kill_opportunities": [ - 3648 - ], - "trade_kill_successes": [ - 3648 - ], - "traded_death_attempts": [ - 3648 - ], - "traded_death_opportunities": [ - 3648 - ], - "traded_death_successes": [ - 3648 - ], - "two_kill_rounds": [ - 3648 - ], - "unused_utility_value": [ - 3648 - ], - "util_on_death_count": [ - 3648 - ], - "util_on_death_sum": [ - 3648 - ], - "wasted_magazine_shots": [ - 3648 - ], - "zeus_kills": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_match_map_stats_variance_fields": { - "assists": [ - 32 - ], - "assists_ct": [ - 32 - ], - "assists_t": [ - 32 - ], - "counter_strafe_eligible_shots": [ - 32 - ], - "counter_strafed_shots": [ - 32 - ], - "crosshair_angle_count": [ - 32 - ], - "crosshair_angle_sum_deg": [ - 32 - ], - "damage": [ - 32 - ], - "damage_ct": [ - 32 - ], - "damage_t": [ - 32 - ], - "deaths": [ - 32 - ], - "deaths_ct": [ - 32 - ], - "deaths_t": [ - 32 - ], - "decoy_throws": [ - 32 - ], - "enemies_flashed": [ - 32 - ], - "first_bullet_hits": [ - 32 - ], - "first_bullet_shots": [ - 32 - ], - "five_kill_rounds": [ - 32 - ], - "flash_assists": [ - 32 - ], - "flash_duration_count": [ - 32 - ], - "flash_duration_sum": [ - 32 - ], - "flashes_thrown": [ - 32 - ], - "four_kill_rounds": [ - 32 - ], - "he_damage": [ - 32 - ], - "he_team_damage": [ - 32 - ], - "he_throws": [ - 32 - ], - "headshot_hits": [ - 32 - ], - "hits": [ - 32 - ], - "hits_at_spotted": [ - 32 - ], - "hs_kills": [ - 32 - ], - "hs_kills_ct": [ - 32 - ], - "hs_kills_t": [ - 32 - ], - "kast_rounds": [ - 32 - ], - "kast_total_rounds": [ - 32 - ], - "kills": [ - 32 - ], - "kills_ct": [ - 32 - ], - "kills_t": [ - 32 - ], - "knife_kills": [ - 32 - ], - "molotov_damage": [ - 32 - ], - "molotov_throws": [ - 32 - ], - "non_awp_hits": [ - 32 - ], - "on_target_frames": [ - 32 - ], - "rounds_ct": [ - 32 - ], - "rounds_played": [ - 32 - ], - "rounds_t": [ - 32 - ], - "shots_at_spotted": [ - 32 - ], - "shots_fired": [ - 32 - ], - "smoke_throws": [ - 32 - ], - "spotted_count": [ - 32 - ], - "spotted_with_damage_count": [ - 32 - ], - "spray_hits": [ - 32 - ], - "spray_shots": [ - 32 - ], - "steam_id": [ - 32 - ], - "team_damage": [ - 32 - ], - "team_flashed": [ - 32 - ], - "three_kill_rounds": [ - 32 - ], - "time_to_damage_count": [ - 32 - ], - "time_to_damage_sum_s": [ - 32 - ], - "total_engagement_frames": [ - 32 - ], - "trade_kill_attempts": [ - 32 - ], - "trade_kill_opportunities": [ - 32 - ], - "trade_kill_successes": [ - 32 - ], - "traded_death_attempts": [ - 32 - ], - "traded_death_opportunities": [ - 32 - ], - "traded_death_successes": [ - 32 - ], - "two_kill_rounds": [ - 32 - ], - "unused_utility_value": [ - 32 - ], - "util_on_death_count": [ - 32 - ], - "util_on_death_sum": [ - 32 - ], - "wasted_magazine_shots": [ - 32 - ], - "zeus_kills": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_match_map_stats_variance_order_by": { - "assists": [ - 3648 - ], - "assists_ct": [ - 3648 - ], - "assists_t": [ - 3648 - ], - "counter_strafe_eligible_shots": [ - 3648 - ], - "counter_strafed_shots": [ - 3648 - ], - "crosshair_angle_count": [ - 3648 - ], - "crosshair_angle_sum_deg": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_ct": [ - 3648 - ], - "damage_t": [ - 3648 - ], - "deaths": [ - 3648 - ], - "deaths_ct": [ - 3648 - ], - "deaths_t": [ - 3648 - ], - "decoy_throws": [ - 3648 - ], - "enemies_flashed": [ - 3648 - ], - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "five_kill_rounds": [ - 3648 - ], - "flash_assists": [ - 3648 - ], - "flash_duration_count": [ - 3648 - ], - "flash_duration_sum": [ - 3648 - ], - "flashes_thrown": [ - 3648 - ], - "four_kill_rounds": [ - 3648 - ], - "he_damage": [ - 3648 - ], - "he_team_damage": [ - 3648 - ], - "he_throws": [ - 3648 - ], - "headshot_hits": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_at_spotted": [ - 3648 - ], - "hs_kills": [ - 3648 - ], - "hs_kills_ct": [ - 3648 - ], - "hs_kills_t": [ - 3648 - ], - "kast_rounds": [ - 3648 - ], - "kast_total_rounds": [ - 3648 - ], - "kills": [ - 3648 - ], - "kills_ct": [ - 3648 - ], - "kills_t": [ - 3648 - ], - "knife_kills": [ - 3648 - ], - "molotov_damage": [ - 3648 - ], - "molotov_throws": [ - 3648 - ], - "non_awp_hits": [ - 3648 - ], - "on_target_frames": [ - 3648 - ], - "rounds_ct": [ - 3648 - ], - "rounds_played": [ - 3648 - ], - "rounds_t": [ - 3648 - ], - "shots_at_spotted": [ - 3648 - ], - "shots_fired": [ - 3648 - ], - "smoke_throws": [ - 3648 - ], - "spotted_count": [ - 3648 - ], - "spotted_with_damage_count": [ - 3648 - ], - "spray_hits": [ - 3648 - ], - "spray_shots": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "team_damage": [ - 3648 - ], - "team_flashed": [ - 3648 - ], - "three_kill_rounds": [ - 3648 - ], - "time_to_damage_count": [ - 3648 - ], - "time_to_damage_sum_s": [ - 3648 - ], - "total_engagement_frames": [ - 3648 - ], - "trade_kill_attempts": [ - 3648 - ], - "trade_kill_opportunities": [ - 3648 - ], - "trade_kill_successes": [ - 3648 - ], - "traded_death_attempts": [ - 3648 - ], - "traded_death_opportunities": [ - 3648 - ], - "traded_death_successes": [ - 3648 - ], - "two_kill_rounds": [ - 3648 - ], - "unused_utility_value": [ - 3648 - ], - "util_on_death_count": [ - 3648 - ], - "util_on_death_sum": [ - 3648 - ], - "wasted_magazine_shots": [ - 3648 - ], - "zeus_kills": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_match_performance_v": { - "accuracy": [ - 3646 - ], - "accuracy_spotted": [ - 3646 - ], - "aim_rating": [ - 2093 - ], - "counter_strafe_pct": [ - 3646 - ], - "enemy_blind_pr": [ - 3646 - ], - "flash_assists_pr": [ - 3646 - ], - "hs_pct": [ - 3646 - ], - "kast_pct": [ - 3646 - ], - "match_id": [ - 6672 - ], - "overall_rating": [ - 2093 - ], - "played_at": [ - 5243 - ], - "positioning_rating": [ - 2093 - ], - "rounds": [ - 41 - ], - "source": [ - 85 - ], - "steam_id": [ - 312 - ], - "survival_pct": [ - 3646 - ], - "traded_death_pct": [ - 3646 - ], - "util_efficiency": [ - 3646 - ], - "utility_rating": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "player_match_performance_v_aggregate": { - "aggregate": [ - 4155 - ], - "nodes": [ - 4153 - ], - "__typename": [ - 85 - ] - }, - "player_match_performance_v_aggregate_fields": { - "avg": [ - 4156 - ], - "count": [ - 41, - { - "columns": [ - 4161, - "[player_match_performance_v_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 4158 - ], - "min": [ - 4159 - ], - "stddev": [ - 4162 - ], - "stddev_pop": [ - 4163 - ], - "stddev_samp": [ - 4164 - ], - "sum": [ - 4167 - ], - "var_pop": [ - 4168 - ], - "var_samp": [ - 4169 - ], - "variance": [ - 4170 - ], - "__typename": [ - 85 - ] - }, - "player_match_performance_v_avg_fields": { - "accuracy": [ - 32 - ], - "accuracy_spotted": [ - 32 - ], - "aim_rating": [ - 32 - ], - "counter_strafe_pct": [ - 32 - ], - "enemy_blind_pr": [ - 32 - ], - "flash_assists_pr": [ - 32 - ], - "hs_pct": [ - 32 - ], - "kast_pct": [ - 32 - ], - "overall_rating": [ - 32 - ], - "positioning_rating": [ - 32 - ], - "rounds": [ - 32 - ], - "steam_id": [ - 32 - ], - "survival_pct": [ - 32 - ], - "traded_death_pct": [ - 32 - ], - "util_efficiency": [ - 32 - ], - "utility_rating": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_match_performance_v_bool_exp": { - "_and": [ - 4157 - ], - "_not": [ - 4157 - ], - "_or": [ - 4157 - ], - "accuracy": [ - 3647 - ], - "accuracy_spotted": [ - 3647 - ], - "aim_rating": [ - 2094 - ], - "counter_strafe_pct": [ - 3647 - ], - "enemy_blind_pr": [ - 3647 - ], - "flash_assists_pr": [ - 3647 - ], - "hs_pct": [ - 3647 - ], - "kast_pct": [ - 3647 - ], - "match_id": [ - 6674 - ], - "overall_rating": [ - 2094 - ], - "played_at": [ - 5244 - ], - "positioning_rating": [ - 2094 - ], - "rounds": [ - 42 - ], - "source": [ - 87 - ], - "steam_id": [ - 314 - ], - "survival_pct": [ - 3647 - ], - "traded_death_pct": [ - 3647 - ], - "util_efficiency": [ - 3647 - ], - "utility_rating": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "player_match_performance_v_max_fields": { - "accuracy": [ - 3646 - ], - "accuracy_spotted": [ - 3646 - ], - "aim_rating": [ - 2093 - ], - "counter_strafe_pct": [ - 3646 - ], - "enemy_blind_pr": [ - 3646 - ], - "flash_assists_pr": [ - 3646 - ], - "hs_pct": [ - 3646 - ], - "kast_pct": [ - 3646 - ], - "match_id": [ - 6672 - ], - "overall_rating": [ - 2093 - ], - "played_at": [ - 5243 - ], - "positioning_rating": [ - 2093 - ], - "rounds": [ - 41 - ], - "source": [ - 85 - ], - "steam_id": [ - 312 - ], - "survival_pct": [ - 3646 - ], - "traded_death_pct": [ - 3646 - ], - "util_efficiency": [ - 3646 - ], - "utility_rating": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "player_match_performance_v_min_fields": { - "accuracy": [ - 3646 - ], - "accuracy_spotted": [ - 3646 - ], - "aim_rating": [ - 2093 - ], - "counter_strafe_pct": [ - 3646 - ], - "enemy_blind_pr": [ - 3646 - ], - "flash_assists_pr": [ - 3646 - ], - "hs_pct": [ - 3646 - ], - "kast_pct": [ - 3646 - ], - "match_id": [ - 6672 - ], - "overall_rating": [ - 2093 - ], - "played_at": [ - 5243 - ], - "positioning_rating": [ - 2093 - ], - "rounds": [ - 41 - ], - "source": [ - 85 - ], - "steam_id": [ - 312 - ], - "survival_pct": [ - 3646 - ], - "traded_death_pct": [ - 3646 - ], - "util_efficiency": [ - 3646 - ], - "utility_rating": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "player_match_performance_v_order_by": { - "accuracy": [ - 3648 - ], - "accuracy_spotted": [ - 3648 - ], - "aim_rating": [ - 3648 - ], - "counter_strafe_pct": [ - 3648 - ], - "enemy_blind_pr": [ - 3648 - ], - "flash_assists_pr": [ - 3648 - ], - "hs_pct": [ - 3648 - ], - "kast_pct": [ - 3648 - ], - "match_id": [ - 3648 - ], - "overall_rating": [ - 3648 - ], - "played_at": [ - 3648 - ], - "positioning_rating": [ - 3648 - ], - "rounds": [ - 3648 - ], - "source": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "survival_pct": [ - 3648 - ], - "traded_death_pct": [ - 3648 - ], - "util_efficiency": [ - 3648 - ], - "utility_rating": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_match_performance_v_select_column": {}, - "player_match_performance_v_stddev_fields": { - "accuracy": [ - 32 - ], - "accuracy_spotted": [ - 32 - ], - "aim_rating": [ - 32 - ], - "counter_strafe_pct": [ - 32 - ], - "enemy_blind_pr": [ - 32 - ], - "flash_assists_pr": [ - 32 - ], - "hs_pct": [ - 32 - ], - "kast_pct": [ - 32 - ], - "overall_rating": [ - 32 - ], - "positioning_rating": [ - 32 - ], - "rounds": [ - 32 - ], - "steam_id": [ - 32 - ], - "survival_pct": [ - 32 - ], - "traded_death_pct": [ - 32 - ], - "util_efficiency": [ - 32 - ], - "utility_rating": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_match_performance_v_stddev_pop_fields": { - "accuracy": [ - 32 - ], - "accuracy_spotted": [ - 32 - ], - "aim_rating": [ - 32 - ], - "counter_strafe_pct": [ - 32 - ], - "enemy_blind_pr": [ - 32 - ], - "flash_assists_pr": [ - 32 - ], - "hs_pct": [ - 32 - ], - "kast_pct": [ - 32 - ], - "overall_rating": [ - 32 - ], - "positioning_rating": [ - 32 - ], - "rounds": [ - 32 - ], - "steam_id": [ - 32 - ], - "survival_pct": [ - 32 - ], - "traded_death_pct": [ - 32 - ], - "util_efficiency": [ - 32 - ], - "utility_rating": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_match_performance_v_stddev_samp_fields": { - "accuracy": [ - 32 - ], - "accuracy_spotted": [ - 32 - ], - "aim_rating": [ - 32 - ], - "counter_strafe_pct": [ - 32 - ], - "enemy_blind_pr": [ - 32 - ], - "flash_assists_pr": [ - 32 - ], - "hs_pct": [ - 32 - ], - "kast_pct": [ - 32 - ], - "overall_rating": [ - 32 - ], - "positioning_rating": [ - 32 - ], - "rounds": [ - 32 - ], - "steam_id": [ - 32 - ], - "survival_pct": [ - 32 - ], - "traded_death_pct": [ - 32 - ], - "util_efficiency": [ - 32 - ], - "utility_rating": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_match_performance_v_stream_cursor_input": { - "initial_value": [ - 4166 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "player_match_performance_v_stream_cursor_value_input": { - "accuracy": [ - 3646 - ], - "accuracy_spotted": [ - 3646 - ], - "aim_rating": [ - 2093 - ], - "counter_strafe_pct": [ - 3646 - ], - "enemy_blind_pr": [ - 3646 - ], - "flash_assists_pr": [ - 3646 - ], - "hs_pct": [ - 3646 - ], - "kast_pct": [ - 3646 - ], - "match_id": [ - 6672 - ], - "overall_rating": [ - 2093 - ], - "played_at": [ - 5243 - ], - "positioning_rating": [ - 2093 - ], - "rounds": [ - 41 - ], - "source": [ - 85 - ], - "steam_id": [ - 312 - ], - "survival_pct": [ - 3646 - ], - "traded_death_pct": [ - 3646 - ], - "util_efficiency": [ - 3646 - ], - "utility_rating": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "player_match_performance_v_sum_fields": { - "accuracy": [ - 3646 - ], - "accuracy_spotted": [ - 3646 - ], - "aim_rating": [ - 2093 - ], - "counter_strafe_pct": [ - 3646 - ], - "enemy_blind_pr": [ - 3646 - ], - "flash_assists_pr": [ - 3646 - ], - "hs_pct": [ - 3646 - ], - "kast_pct": [ - 3646 - ], - "overall_rating": [ - 2093 - ], - "positioning_rating": [ - 2093 - ], - "rounds": [ - 41 - ], - "steam_id": [ - 312 - ], - "survival_pct": [ - 3646 - ], - "traded_death_pct": [ - 3646 - ], - "util_efficiency": [ - 3646 - ], - "utility_rating": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "player_match_performance_v_var_pop_fields": { - "accuracy": [ - 32 - ], - "accuracy_spotted": [ - 32 - ], - "aim_rating": [ - 32 - ], - "counter_strafe_pct": [ - 32 - ], - "enemy_blind_pr": [ - 32 - ], - "flash_assists_pr": [ - 32 - ], - "hs_pct": [ - 32 - ], - "kast_pct": [ - 32 - ], - "overall_rating": [ - 32 - ], - "positioning_rating": [ - 32 - ], - "rounds": [ - 32 - ], - "steam_id": [ - 32 - ], - "survival_pct": [ - 32 - ], - "traded_death_pct": [ - 32 - ], - "util_efficiency": [ - 32 - ], - "utility_rating": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_match_performance_v_var_samp_fields": { - "accuracy": [ - 32 - ], - "accuracy_spotted": [ - 32 - ], - "aim_rating": [ - 32 - ], - "counter_strafe_pct": [ - 32 - ], - "enemy_blind_pr": [ - 32 - ], - "flash_assists_pr": [ - 32 - ], - "hs_pct": [ - 32 - ], - "kast_pct": [ - 32 - ], - "overall_rating": [ - 32 - ], - "positioning_rating": [ - 32 - ], - "rounds": [ - 32 - ], - "steam_id": [ - 32 - ], - "survival_pct": [ - 32 - ], - "traded_death_pct": [ - 32 - ], - "util_efficiency": [ - 32 - ], - "utility_rating": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_match_performance_v_variance_fields": { - "accuracy": [ - 32 - ], - "accuracy_spotted": [ - 32 - ], - "aim_rating": [ - 32 - ], - "counter_strafe_pct": [ - 32 - ], - "enemy_blind_pr": [ - 32 - ], - "flash_assists_pr": [ - 32 - ], - "hs_pct": [ - 32 - ], - "kast_pct": [ - 32 - ], - "overall_rating": [ - 32 - ], - "positioning_rating": [ - 32 - ], - "rounds": [ - 32 - ], - "steam_id": [ - 32 - ], - "survival_pct": [ - 32 - ], - "traded_death_pct": [ - 32 - ], - "util_efficiency": [ - 32 - ], - "utility_rating": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_match_stats_v": { - "assists": [ - 41 - ], - "assists_ct": [ - 41 - ], - "assists_t": [ - 41 - ], - "avg_crosshair_angle_deg": [ - 3646 - ], - "avg_flash_duration": [ - 3646 - ], - "avg_time_to_damage_s": [ - 3646 - ], - "counter_strafe_eligible_shots": [ - 41 - ], - "counter_strafed_shots": [ - 41 - ], - "damage": [ - 41 - ], - "damage_ct": [ - 41 - ], - "damage_t": [ - 41 - ], - "deaths": [ - 41 - ], - "deaths_ct": [ - 41 - ], - "deaths_t": [ - 41 - ], - "decoy_throws": [ - 41 - ], - "enemies_flashed": [ - 41 - ], - "first_bullet_hits": [ - 41 - ], - "first_bullet_shots": [ - 41 - ], - "five_kill_rounds": [ - 41 - ], - "flash_assists": [ - 41 - ], - "flashes_thrown": [ - 41 - ], - "four_kill_rounds": [ - 41 - ], - "he_damage": [ - 41 - ], - "he_team_damage": [ - 41 - ], - "he_throws": [ - 41 - ], - "headshot_hits": [ - 41 - ], - "hits": [ - 41 - ], - "hits_at_spotted": [ - 41 - ], - "hs_kills": [ - 41 - ], - "hs_kills_ct": [ - 41 - ], - "hs_kills_t": [ - 41 - ], - "kills": [ - 41 - ], - "kills_ct": [ - 41 - ], - "kills_t": [ - 41 - ], - "knife_kills": [ - 41 - ], - "match_id": [ - 6672 - ], - "molotov_damage": [ - 41 - ], - "molotov_throws": [ - 41 - ], - "non_awp_hits": [ - 41 - ], - "on_target_frames": [ - 41 - ], - "rounds_ct": [ - 41 - ], - "rounds_played": [ - 41 - ], - "rounds_t": [ - 41 - ], - "shots_at_spotted": [ - 41 - ], - "shots_fired": [ - 41 - ], - "smoke_throws": [ - 41 - ], - "spotted_count": [ - 41 - ], - "spotted_with_damage_count": [ - 41 - ], - "spray_hits": [ - 41 - ], - "spray_shots": [ - 41 - ], - "steam_id": [ - 312 - ], - "team_damage": [ - 41 - ], - "team_flashed": [ - 41 - ], - "three_kill_rounds": [ - 41 - ], - "total_engagement_frames": [ - 41 - ], - "trade_kill_attempts": [ - 41 - ], - "trade_kill_opportunities": [ - 41 - ], - "trade_kill_successes": [ - 41 - ], - "traded_death_attempts": [ - 41 - ], - "traded_death_opportunities": [ - 41 - ], - "traded_death_successes": [ - 41 - ], - "two_kill_rounds": [ - 41 - ], - "unused_utility_value": [ - 41 - ], - "utility_on_death": [ - 3646 - ], - "wasted_magazine_shots": [ - 41 - ], - "zeus_kills": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "player_match_stats_v_aggregate": { - "aggregate": [ - 4175 - ], - "nodes": [ - 4171 - ], - "__typename": [ - 85 - ] - }, - "player_match_stats_v_aggregate_bool_exp": { - "count": [ - 4174 - ], - "__typename": [ - 85 - ] - }, - "player_match_stats_v_aggregate_bool_exp_count": { - "arguments": [ - 4187 - ], - "distinct": [ - 6 - ], - "filter": [ - 4180 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "player_match_stats_v_aggregate_fields": { - "avg": [ - 4178 - ], - "count": [ - 41, - { - "columns": [ - 4187, - "[player_match_stats_v_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 4182 - ], - "min": [ - 4184 - ], - "stddev": [ - 4188 - ], - "stddev_pop": [ - 4190 - ], - "stddev_samp": [ - 4192 - ], - "sum": [ - 4196 - ], - "var_pop": [ - 4198 - ], - "var_samp": [ - 4200 - ], - "variance": [ - 4202 - ], - "__typename": [ - 85 - ] - }, - "player_match_stats_v_aggregate_order_by": { - "avg": [ - 4179 - ], - "count": [ - 3648 - ], - "max": [ - 4183 - ], - "min": [ - 4185 - ], - "stddev": [ - 4189 - ], - "stddev_pop": [ - 4191 - ], - "stddev_samp": [ - 4193 - ], - "sum": [ - 4197 - ], - "var_pop": [ - 4199 - ], - "var_samp": [ - 4201 - ], - "variance": [ - 4203 - ], - "__typename": [ - 85 - ] - }, - "player_match_stats_v_arr_rel_insert_input": { - "data": [ - 4181 - ], - "__typename": [ - 85 - ] - }, - "player_match_stats_v_avg_fields": { - "assists": [ - 32 - ], - "assists_ct": [ - 32 - ], - "assists_t": [ - 32 - ], - "avg_crosshair_angle_deg": [ - 32 - ], - "avg_flash_duration": [ - 32 - ], - "avg_time_to_damage_s": [ - 32 - ], - "counter_strafe_eligible_shots": [ - 32 - ], - "counter_strafed_shots": [ - 32 - ], - "damage": [ - 32 - ], - "damage_ct": [ - 32 - ], - "damage_t": [ - 32 - ], - "deaths": [ - 32 - ], - "deaths_ct": [ - 32 - ], - "deaths_t": [ - 32 - ], - "decoy_throws": [ - 32 - ], - "enemies_flashed": [ - 32 - ], - "first_bullet_hits": [ - 32 - ], - "first_bullet_shots": [ - 32 - ], - "five_kill_rounds": [ - 32 - ], - "flash_assists": [ - 32 - ], - "flashes_thrown": [ - 32 - ], - "four_kill_rounds": [ - 32 - ], - "he_damage": [ - 32 - ], - "he_team_damage": [ - 32 - ], - "he_throws": [ - 32 - ], - "headshot_hits": [ - 32 - ], - "hits": [ - 32 - ], - "hits_at_spotted": [ - 32 - ], - "hs_kills": [ - 32 - ], - "hs_kills_ct": [ - 32 - ], - "hs_kills_t": [ - 32 - ], - "kills": [ - 32 - ], - "kills_ct": [ - 32 - ], - "kills_t": [ - 32 - ], - "knife_kills": [ - 32 - ], - "molotov_damage": [ - 32 - ], - "molotov_throws": [ - 32 - ], - "non_awp_hits": [ - 32 - ], - "on_target_frames": [ - 32 - ], - "rounds_ct": [ - 32 - ], - "rounds_played": [ - 32 - ], - "rounds_t": [ - 32 - ], - "shots_at_spotted": [ - 32 - ], - "shots_fired": [ - 32 - ], - "smoke_throws": [ - 32 - ], - "spotted_count": [ - 32 - ], - "spotted_with_damage_count": [ - 32 - ], - "spray_hits": [ - 32 - ], - "spray_shots": [ - 32 - ], - "steam_id": [ - 32 - ], - "team_damage": [ - 32 - ], - "team_flashed": [ - 32 - ], - "three_kill_rounds": [ - 32 - ], - "total_engagement_frames": [ - 32 - ], - "trade_kill_attempts": [ - 32 - ], - "trade_kill_opportunities": [ - 32 - ], - "trade_kill_successes": [ - 32 - ], - "traded_death_attempts": [ - 32 - ], - "traded_death_opportunities": [ - 32 - ], - "traded_death_successes": [ - 32 - ], - "two_kill_rounds": [ - 32 - ], - "unused_utility_value": [ - 32 - ], - "utility_on_death": [ - 32 - ], - "wasted_magazine_shots": [ - 32 - ], - "zeus_kills": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_match_stats_v_avg_order_by": { - "assists": [ - 3648 - ], - "assists_ct": [ - 3648 - ], - "assists_t": [ - 3648 - ], - "avg_crosshair_angle_deg": [ - 3648 - ], - "avg_flash_duration": [ - 3648 - ], - "avg_time_to_damage_s": [ - 3648 - ], - "counter_strafe_eligible_shots": [ - 3648 - ], - "counter_strafed_shots": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_ct": [ - 3648 - ], - "damage_t": [ - 3648 - ], - "deaths": [ - 3648 - ], - "deaths_ct": [ - 3648 - ], - "deaths_t": [ - 3648 - ], - "decoy_throws": [ - 3648 - ], - "enemies_flashed": [ - 3648 - ], - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "five_kill_rounds": [ - 3648 - ], - "flash_assists": [ - 3648 - ], - "flashes_thrown": [ - 3648 - ], - "four_kill_rounds": [ - 3648 - ], - "he_damage": [ - 3648 - ], - "he_team_damage": [ - 3648 - ], - "he_throws": [ - 3648 - ], - "headshot_hits": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_at_spotted": [ - 3648 - ], - "hs_kills": [ - 3648 - ], - "hs_kills_ct": [ - 3648 - ], - "hs_kills_t": [ - 3648 - ], - "kills": [ - 3648 - ], - "kills_ct": [ - 3648 - ], - "kills_t": [ - 3648 - ], - "knife_kills": [ - 3648 - ], - "molotov_damage": [ - 3648 - ], - "molotov_throws": [ - 3648 - ], - "non_awp_hits": [ - 3648 - ], - "on_target_frames": [ - 3648 - ], - "rounds_ct": [ - 3648 - ], - "rounds_played": [ - 3648 - ], - "rounds_t": [ - 3648 - ], - "shots_at_spotted": [ - 3648 - ], - "shots_fired": [ - 3648 - ], - "smoke_throws": [ - 3648 - ], - "spotted_count": [ - 3648 - ], - "spotted_with_damage_count": [ - 3648 - ], - "spray_hits": [ - 3648 - ], - "spray_shots": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "team_damage": [ - 3648 - ], - "team_flashed": [ - 3648 - ], - "three_kill_rounds": [ - 3648 - ], - "total_engagement_frames": [ - 3648 - ], - "trade_kill_attempts": [ - 3648 - ], - "trade_kill_opportunities": [ - 3648 - ], - "trade_kill_successes": [ - 3648 - ], - "traded_death_attempts": [ - 3648 - ], - "traded_death_opportunities": [ - 3648 - ], - "traded_death_successes": [ - 3648 - ], - "two_kill_rounds": [ - 3648 - ], - "unused_utility_value": [ - 3648 - ], - "utility_on_death": [ - 3648 - ], - "wasted_magazine_shots": [ - 3648 - ], - "zeus_kills": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_match_stats_v_bool_exp": { - "_and": [ - 4180 - ], - "_not": [ - 4180 - ], - "_or": [ - 4180 - ], - "assists": [ - 42 - ], - "assists_ct": [ - 42 - ], - "assists_t": [ - 42 - ], - "avg_crosshair_angle_deg": [ - 3647 - ], - "avg_flash_duration": [ - 3647 - ], - "avg_time_to_damage_s": [ - 3647 - ], - "counter_strafe_eligible_shots": [ - 42 - ], - "counter_strafed_shots": [ - 42 - ], - "damage": [ - 42 - ], - "damage_ct": [ - 42 - ], - "damage_t": [ - 42 - ], - "deaths": [ - 42 - ], - "deaths_ct": [ - 42 - ], - "deaths_t": [ - 42 - ], - "decoy_throws": [ - 42 - ], - "enemies_flashed": [ - 42 - ], - "first_bullet_hits": [ - 42 - ], - "first_bullet_shots": [ - 42 - ], - "five_kill_rounds": [ - 42 - ], - "flash_assists": [ - 42 - ], - "flashes_thrown": [ - 42 - ], - "four_kill_rounds": [ - 42 - ], - "he_damage": [ - 42 - ], - "he_team_damage": [ - 42 - ], - "he_throws": [ - 42 - ], - "headshot_hits": [ - 42 - ], - "hits": [ - 42 - ], - "hits_at_spotted": [ - 42 - ], - "hs_kills": [ - 42 - ], - "hs_kills_ct": [ - 42 - ], - "hs_kills_t": [ - 42 - ], - "kills": [ - 42 - ], - "kills_ct": [ - 42 - ], - "kills_t": [ - 42 - ], - "knife_kills": [ - 42 - ], - "match_id": [ - 6674 - ], - "molotov_damage": [ - 42 - ], - "molotov_throws": [ - 42 - ], - "non_awp_hits": [ - 42 - ], - "on_target_frames": [ - 42 - ], - "rounds_ct": [ - 42 - ], - "rounds_played": [ - 42 - ], - "rounds_t": [ - 42 - ], - "shots_at_spotted": [ - 42 - ], - "shots_fired": [ - 42 - ], - "smoke_throws": [ - 42 - ], - "spotted_count": [ - 42 - ], - "spotted_with_damage_count": [ - 42 - ], - "spray_hits": [ - 42 - ], - "spray_shots": [ - 42 - ], - "steam_id": [ - 314 - ], - "team_damage": [ - 42 - ], - "team_flashed": [ - 42 - ], - "three_kill_rounds": [ - 42 - ], - "total_engagement_frames": [ - 42 - ], - "trade_kill_attempts": [ - 42 - ], - "trade_kill_opportunities": [ - 42 - ], - "trade_kill_successes": [ - 42 - ], - "traded_death_attempts": [ - 42 - ], - "traded_death_opportunities": [ - 42 - ], - "traded_death_successes": [ - 42 - ], - "two_kill_rounds": [ - 42 - ], - "unused_utility_value": [ - 42 - ], - "utility_on_death": [ - 3647 - ], - "wasted_magazine_shots": [ - 42 - ], - "zeus_kills": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "player_match_stats_v_insert_input": { - "assists": [ - 41 - ], - "assists_ct": [ - 41 - ], - "assists_t": [ - 41 - ], - "avg_crosshair_angle_deg": [ - 3646 - ], - "avg_flash_duration": [ - 3646 - ], - "avg_time_to_damage_s": [ - 3646 - ], - "counter_strafe_eligible_shots": [ - 41 - ], - "counter_strafed_shots": [ - 41 - ], - "damage": [ - 41 - ], - "damage_ct": [ - 41 - ], - "damage_t": [ - 41 - ], - "deaths": [ - 41 - ], - "deaths_ct": [ - 41 - ], - "deaths_t": [ - 41 - ], - "decoy_throws": [ - 41 - ], - "enemies_flashed": [ - 41 - ], - "first_bullet_hits": [ - 41 - ], - "first_bullet_shots": [ - 41 - ], - "five_kill_rounds": [ - 41 - ], - "flash_assists": [ - 41 - ], - "flashes_thrown": [ - 41 - ], - "four_kill_rounds": [ - 41 - ], - "he_damage": [ - 41 - ], - "he_team_damage": [ - 41 - ], - "he_throws": [ - 41 - ], - "headshot_hits": [ - 41 - ], - "hits": [ - 41 - ], - "hits_at_spotted": [ - 41 - ], - "hs_kills": [ - 41 - ], - "hs_kills_ct": [ - 41 - ], - "hs_kills_t": [ - 41 - ], - "kills": [ - 41 - ], - "kills_ct": [ - 41 - ], - "kills_t": [ - 41 - ], - "knife_kills": [ - 41 - ], - "match_id": [ - 6672 - ], - "molotov_damage": [ - 41 - ], - "molotov_throws": [ - 41 - ], - "non_awp_hits": [ - 41 - ], - "on_target_frames": [ - 41 - ], - "rounds_ct": [ - 41 - ], - "rounds_played": [ - 41 - ], - "rounds_t": [ - 41 - ], - "shots_at_spotted": [ - 41 - ], - "shots_fired": [ - 41 - ], - "smoke_throws": [ - 41 - ], - "spotted_count": [ - 41 - ], - "spotted_with_damage_count": [ - 41 - ], - "spray_hits": [ - 41 - ], - "spray_shots": [ - 41 - ], - "steam_id": [ - 312 - ], - "team_damage": [ - 41 - ], - "team_flashed": [ - 41 - ], - "three_kill_rounds": [ - 41 - ], - "total_engagement_frames": [ - 41 - ], - "trade_kill_attempts": [ - 41 - ], - "trade_kill_opportunities": [ - 41 - ], - "trade_kill_successes": [ - 41 - ], - "traded_death_attempts": [ - 41 - ], - "traded_death_opportunities": [ - 41 - ], - "traded_death_successes": [ - 41 - ], - "two_kill_rounds": [ - 41 - ], - "unused_utility_value": [ - 41 - ], - "utility_on_death": [ - 3646 - ], - "wasted_magazine_shots": [ - 41 - ], - "zeus_kills": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "player_match_stats_v_max_fields": { - "assists": [ - 41 - ], - "assists_ct": [ - 41 - ], - "assists_t": [ - 41 - ], - "avg_crosshair_angle_deg": [ - 3646 - ], - "avg_flash_duration": [ - 3646 - ], - "avg_time_to_damage_s": [ - 3646 - ], - "counter_strafe_eligible_shots": [ - 41 - ], - "counter_strafed_shots": [ - 41 - ], - "damage": [ - 41 - ], - "damage_ct": [ - 41 - ], - "damage_t": [ - 41 - ], - "deaths": [ - 41 - ], - "deaths_ct": [ - 41 - ], - "deaths_t": [ - 41 - ], - "decoy_throws": [ - 41 - ], - "enemies_flashed": [ - 41 - ], - "first_bullet_hits": [ - 41 - ], - "first_bullet_shots": [ - 41 - ], - "five_kill_rounds": [ - 41 - ], - "flash_assists": [ - 41 - ], - "flashes_thrown": [ - 41 - ], - "four_kill_rounds": [ - 41 - ], - "he_damage": [ - 41 - ], - "he_team_damage": [ - 41 - ], - "he_throws": [ - 41 - ], - "headshot_hits": [ - 41 - ], - "hits": [ - 41 - ], - "hits_at_spotted": [ - 41 - ], - "hs_kills": [ - 41 - ], - "hs_kills_ct": [ - 41 - ], - "hs_kills_t": [ - 41 - ], - "kills": [ - 41 - ], - "kills_ct": [ - 41 - ], - "kills_t": [ - 41 - ], - "knife_kills": [ - 41 - ], - "match_id": [ - 6672 - ], - "molotov_damage": [ - 41 - ], - "molotov_throws": [ - 41 - ], - "non_awp_hits": [ - 41 - ], - "on_target_frames": [ - 41 - ], - "rounds_ct": [ - 41 - ], - "rounds_played": [ - 41 - ], - "rounds_t": [ - 41 - ], - "shots_at_spotted": [ - 41 - ], - "shots_fired": [ - 41 - ], - "smoke_throws": [ - 41 - ], - "spotted_count": [ - 41 - ], - "spotted_with_damage_count": [ - 41 - ], - "spray_hits": [ - 41 - ], - "spray_shots": [ - 41 - ], - "steam_id": [ - 312 - ], - "team_damage": [ - 41 - ], - "team_flashed": [ - 41 - ], - "three_kill_rounds": [ - 41 - ], - "total_engagement_frames": [ - 41 - ], - "trade_kill_attempts": [ - 41 - ], - "trade_kill_opportunities": [ - 41 - ], - "trade_kill_successes": [ - 41 - ], - "traded_death_attempts": [ - 41 - ], - "traded_death_opportunities": [ - 41 - ], - "traded_death_successes": [ - 41 - ], - "two_kill_rounds": [ - 41 - ], - "unused_utility_value": [ - 41 - ], - "utility_on_death": [ - 3646 - ], - "wasted_magazine_shots": [ - 41 - ], - "zeus_kills": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "player_match_stats_v_max_order_by": { - "assists": [ - 3648 - ], - "assists_ct": [ - 3648 - ], - "assists_t": [ - 3648 - ], - "avg_crosshair_angle_deg": [ - 3648 - ], - "avg_flash_duration": [ - 3648 - ], - "avg_time_to_damage_s": [ - 3648 - ], - "counter_strafe_eligible_shots": [ - 3648 - ], - "counter_strafed_shots": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_ct": [ - 3648 - ], - "damage_t": [ - 3648 - ], - "deaths": [ - 3648 - ], - "deaths_ct": [ - 3648 - ], - "deaths_t": [ - 3648 - ], - "decoy_throws": [ - 3648 - ], - "enemies_flashed": [ - 3648 - ], - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "five_kill_rounds": [ - 3648 - ], - "flash_assists": [ - 3648 - ], - "flashes_thrown": [ - 3648 - ], - "four_kill_rounds": [ - 3648 - ], - "he_damage": [ - 3648 - ], - "he_team_damage": [ - 3648 - ], - "he_throws": [ - 3648 - ], - "headshot_hits": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_at_spotted": [ - 3648 - ], - "hs_kills": [ - 3648 - ], - "hs_kills_ct": [ - 3648 - ], - "hs_kills_t": [ - 3648 - ], - "kills": [ - 3648 - ], - "kills_ct": [ - 3648 - ], - "kills_t": [ - 3648 - ], - "knife_kills": [ - 3648 - ], - "match_id": [ - 3648 - ], - "molotov_damage": [ - 3648 - ], - "molotov_throws": [ - 3648 - ], - "non_awp_hits": [ - 3648 - ], - "on_target_frames": [ - 3648 - ], - "rounds_ct": [ - 3648 - ], - "rounds_played": [ - 3648 - ], - "rounds_t": [ - 3648 - ], - "shots_at_spotted": [ - 3648 - ], - "shots_fired": [ - 3648 - ], - "smoke_throws": [ - 3648 - ], - "spotted_count": [ - 3648 - ], - "spotted_with_damage_count": [ - 3648 - ], - "spray_hits": [ - 3648 - ], - "spray_shots": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "team_damage": [ - 3648 - ], - "team_flashed": [ - 3648 - ], - "three_kill_rounds": [ - 3648 - ], - "total_engagement_frames": [ - 3648 - ], - "trade_kill_attempts": [ - 3648 - ], - "trade_kill_opportunities": [ - 3648 - ], - "trade_kill_successes": [ - 3648 - ], - "traded_death_attempts": [ - 3648 - ], - "traded_death_opportunities": [ - 3648 - ], - "traded_death_successes": [ - 3648 - ], - "two_kill_rounds": [ - 3648 - ], - "unused_utility_value": [ - 3648 - ], - "utility_on_death": [ - 3648 - ], - "wasted_magazine_shots": [ - 3648 - ], - "zeus_kills": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_match_stats_v_min_fields": { - "assists": [ - 41 - ], - "assists_ct": [ - 41 - ], - "assists_t": [ - 41 - ], - "avg_crosshair_angle_deg": [ - 3646 - ], - "avg_flash_duration": [ - 3646 - ], - "avg_time_to_damage_s": [ - 3646 - ], - "counter_strafe_eligible_shots": [ - 41 - ], - "counter_strafed_shots": [ - 41 - ], - "damage": [ - 41 - ], - "damage_ct": [ - 41 - ], - "damage_t": [ - 41 - ], - "deaths": [ - 41 - ], - "deaths_ct": [ - 41 - ], - "deaths_t": [ - 41 - ], - "decoy_throws": [ - 41 - ], - "enemies_flashed": [ - 41 - ], - "first_bullet_hits": [ - 41 - ], - "first_bullet_shots": [ - 41 - ], - "five_kill_rounds": [ - 41 - ], - "flash_assists": [ - 41 - ], - "flashes_thrown": [ - 41 - ], - "four_kill_rounds": [ - 41 - ], - "he_damage": [ - 41 - ], - "he_team_damage": [ - 41 - ], - "he_throws": [ - 41 - ], - "headshot_hits": [ - 41 - ], - "hits": [ - 41 - ], - "hits_at_spotted": [ - 41 - ], - "hs_kills": [ - 41 - ], - "hs_kills_ct": [ - 41 - ], - "hs_kills_t": [ - 41 - ], - "kills": [ - 41 - ], - "kills_ct": [ - 41 - ], - "kills_t": [ - 41 - ], - "knife_kills": [ - 41 - ], - "match_id": [ - 6672 - ], - "molotov_damage": [ - 41 - ], - "molotov_throws": [ - 41 - ], - "non_awp_hits": [ - 41 - ], - "on_target_frames": [ - 41 - ], - "rounds_ct": [ - 41 - ], - "rounds_played": [ - 41 - ], - "rounds_t": [ - 41 - ], - "shots_at_spotted": [ - 41 - ], - "shots_fired": [ - 41 - ], - "smoke_throws": [ - 41 - ], - "spotted_count": [ - 41 - ], - "spotted_with_damage_count": [ - 41 - ], - "spray_hits": [ - 41 - ], - "spray_shots": [ - 41 - ], - "steam_id": [ - 312 - ], - "team_damage": [ - 41 - ], - "team_flashed": [ - 41 - ], - "three_kill_rounds": [ - 41 - ], - "total_engagement_frames": [ - 41 - ], - "trade_kill_attempts": [ - 41 - ], - "trade_kill_opportunities": [ - 41 - ], - "trade_kill_successes": [ - 41 - ], - "traded_death_attempts": [ - 41 - ], - "traded_death_opportunities": [ - 41 - ], - "traded_death_successes": [ - 41 - ], - "two_kill_rounds": [ - 41 - ], - "unused_utility_value": [ - 41 - ], - "utility_on_death": [ - 3646 - ], - "wasted_magazine_shots": [ - 41 - ], - "zeus_kills": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "player_match_stats_v_min_order_by": { - "assists": [ - 3648 - ], - "assists_ct": [ - 3648 - ], - "assists_t": [ - 3648 - ], - "avg_crosshair_angle_deg": [ - 3648 - ], - "avg_flash_duration": [ - 3648 - ], - "avg_time_to_damage_s": [ - 3648 - ], - "counter_strafe_eligible_shots": [ - 3648 - ], - "counter_strafed_shots": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_ct": [ - 3648 - ], - "damage_t": [ - 3648 - ], - "deaths": [ - 3648 - ], - "deaths_ct": [ - 3648 - ], - "deaths_t": [ - 3648 - ], - "decoy_throws": [ - 3648 - ], - "enemies_flashed": [ - 3648 - ], - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "five_kill_rounds": [ - 3648 - ], - "flash_assists": [ - 3648 - ], - "flashes_thrown": [ - 3648 - ], - "four_kill_rounds": [ - 3648 - ], - "he_damage": [ - 3648 - ], - "he_team_damage": [ - 3648 - ], - "he_throws": [ - 3648 - ], - "headshot_hits": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_at_spotted": [ - 3648 - ], - "hs_kills": [ - 3648 - ], - "hs_kills_ct": [ - 3648 - ], - "hs_kills_t": [ - 3648 - ], - "kills": [ - 3648 - ], - "kills_ct": [ - 3648 - ], - "kills_t": [ - 3648 - ], - "knife_kills": [ - 3648 - ], - "match_id": [ - 3648 - ], - "molotov_damage": [ - 3648 - ], - "molotov_throws": [ - 3648 - ], - "non_awp_hits": [ - 3648 - ], - "on_target_frames": [ - 3648 - ], - "rounds_ct": [ - 3648 - ], - "rounds_played": [ - 3648 - ], - "rounds_t": [ - 3648 - ], - "shots_at_spotted": [ - 3648 - ], - "shots_fired": [ - 3648 - ], - "smoke_throws": [ - 3648 - ], - "spotted_count": [ - 3648 - ], - "spotted_with_damage_count": [ - 3648 - ], - "spray_hits": [ - 3648 - ], - "spray_shots": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "team_damage": [ - 3648 - ], - "team_flashed": [ - 3648 - ], - "three_kill_rounds": [ - 3648 - ], - "total_engagement_frames": [ - 3648 - ], - "trade_kill_attempts": [ - 3648 - ], - "trade_kill_opportunities": [ - 3648 - ], - "trade_kill_successes": [ - 3648 - ], - "traded_death_attempts": [ - 3648 - ], - "traded_death_opportunities": [ - 3648 - ], - "traded_death_successes": [ - 3648 - ], - "two_kill_rounds": [ - 3648 - ], - "unused_utility_value": [ - 3648 - ], - "utility_on_death": [ - 3648 - ], - "wasted_magazine_shots": [ - 3648 - ], - "zeus_kills": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_match_stats_v_order_by": { - "assists": [ - 3648 - ], - "assists_ct": [ - 3648 - ], - "assists_t": [ - 3648 - ], - "avg_crosshair_angle_deg": [ - 3648 - ], - "avg_flash_duration": [ - 3648 - ], - "avg_time_to_damage_s": [ - 3648 - ], - "counter_strafe_eligible_shots": [ - 3648 - ], - "counter_strafed_shots": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_ct": [ - 3648 - ], - "damage_t": [ - 3648 - ], - "deaths": [ - 3648 - ], - "deaths_ct": [ - 3648 - ], - "deaths_t": [ - 3648 - ], - "decoy_throws": [ - 3648 - ], - "enemies_flashed": [ - 3648 - ], - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "five_kill_rounds": [ - 3648 - ], - "flash_assists": [ - 3648 - ], - "flashes_thrown": [ - 3648 - ], - "four_kill_rounds": [ - 3648 - ], - "he_damage": [ - 3648 - ], - "he_team_damage": [ - 3648 - ], - "he_throws": [ - 3648 - ], - "headshot_hits": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_at_spotted": [ - 3648 - ], - "hs_kills": [ - 3648 - ], - "hs_kills_ct": [ - 3648 - ], - "hs_kills_t": [ - 3648 - ], - "kills": [ - 3648 - ], - "kills_ct": [ - 3648 - ], - "kills_t": [ - 3648 - ], - "knife_kills": [ - 3648 - ], - "match_id": [ - 3648 - ], - "molotov_damage": [ - 3648 - ], - "molotov_throws": [ - 3648 - ], - "non_awp_hits": [ - 3648 - ], - "on_target_frames": [ - 3648 - ], - "rounds_ct": [ - 3648 - ], - "rounds_played": [ - 3648 - ], - "rounds_t": [ - 3648 - ], - "shots_at_spotted": [ - 3648 - ], - "shots_fired": [ - 3648 - ], - "smoke_throws": [ - 3648 - ], - "spotted_count": [ - 3648 - ], - "spotted_with_damage_count": [ - 3648 - ], - "spray_hits": [ - 3648 - ], - "spray_shots": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "team_damage": [ - 3648 - ], - "team_flashed": [ - 3648 - ], - "three_kill_rounds": [ - 3648 - ], - "total_engagement_frames": [ - 3648 - ], - "trade_kill_attempts": [ - 3648 - ], - "trade_kill_opportunities": [ - 3648 - ], - "trade_kill_successes": [ - 3648 - ], - "traded_death_attempts": [ - 3648 - ], - "traded_death_opportunities": [ - 3648 - ], - "traded_death_successes": [ - 3648 - ], - "two_kill_rounds": [ - 3648 - ], - "unused_utility_value": [ - 3648 - ], - "utility_on_death": [ - 3648 - ], - "wasted_magazine_shots": [ - 3648 - ], - "zeus_kills": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_match_stats_v_select_column": {}, - "player_match_stats_v_stddev_fields": { - "assists": [ - 32 - ], - "assists_ct": [ - 32 - ], - "assists_t": [ - 32 - ], - "avg_crosshair_angle_deg": [ - 32 - ], - "avg_flash_duration": [ - 32 - ], - "avg_time_to_damage_s": [ - 32 - ], - "counter_strafe_eligible_shots": [ - 32 - ], - "counter_strafed_shots": [ - 32 - ], - "damage": [ - 32 - ], - "damage_ct": [ - 32 - ], - "damage_t": [ - 32 - ], - "deaths": [ - 32 - ], - "deaths_ct": [ - 32 - ], - "deaths_t": [ - 32 - ], - "decoy_throws": [ - 32 - ], - "enemies_flashed": [ - 32 - ], - "first_bullet_hits": [ - 32 - ], - "first_bullet_shots": [ - 32 - ], - "five_kill_rounds": [ - 32 - ], - "flash_assists": [ - 32 - ], - "flashes_thrown": [ - 32 - ], - "four_kill_rounds": [ - 32 - ], - "he_damage": [ - 32 - ], - "he_team_damage": [ - 32 - ], - "he_throws": [ - 32 - ], - "headshot_hits": [ - 32 - ], - "hits": [ - 32 - ], - "hits_at_spotted": [ - 32 - ], - "hs_kills": [ - 32 - ], - "hs_kills_ct": [ - 32 - ], - "hs_kills_t": [ - 32 - ], - "kills": [ - 32 - ], - "kills_ct": [ - 32 - ], - "kills_t": [ - 32 - ], - "knife_kills": [ - 32 - ], - "molotov_damage": [ - 32 - ], - "molotov_throws": [ - 32 - ], - "non_awp_hits": [ - 32 - ], - "on_target_frames": [ - 32 - ], - "rounds_ct": [ - 32 - ], - "rounds_played": [ - 32 - ], - "rounds_t": [ - 32 - ], - "shots_at_spotted": [ - 32 - ], - "shots_fired": [ - 32 - ], - "smoke_throws": [ - 32 - ], - "spotted_count": [ - 32 - ], - "spotted_with_damage_count": [ - 32 - ], - "spray_hits": [ - 32 - ], - "spray_shots": [ - 32 - ], - "steam_id": [ - 32 - ], - "team_damage": [ - 32 - ], - "team_flashed": [ - 32 - ], - "three_kill_rounds": [ - 32 - ], - "total_engagement_frames": [ - 32 - ], - "trade_kill_attempts": [ - 32 - ], - "trade_kill_opportunities": [ - 32 - ], - "trade_kill_successes": [ - 32 - ], - "traded_death_attempts": [ - 32 - ], - "traded_death_opportunities": [ - 32 - ], - "traded_death_successes": [ - 32 - ], - "two_kill_rounds": [ - 32 - ], - "unused_utility_value": [ - 32 - ], - "utility_on_death": [ - 32 - ], - "wasted_magazine_shots": [ - 32 - ], - "zeus_kills": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_match_stats_v_stddev_order_by": { - "assists": [ - 3648 - ], - "assists_ct": [ - 3648 - ], - "assists_t": [ - 3648 - ], - "avg_crosshair_angle_deg": [ - 3648 - ], - "avg_flash_duration": [ - 3648 - ], - "avg_time_to_damage_s": [ - 3648 - ], - "counter_strafe_eligible_shots": [ - 3648 - ], - "counter_strafed_shots": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_ct": [ - 3648 - ], - "damage_t": [ - 3648 - ], - "deaths": [ - 3648 - ], - "deaths_ct": [ - 3648 - ], - "deaths_t": [ - 3648 - ], - "decoy_throws": [ - 3648 - ], - "enemies_flashed": [ - 3648 - ], - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "five_kill_rounds": [ - 3648 - ], - "flash_assists": [ - 3648 - ], - "flashes_thrown": [ - 3648 - ], - "four_kill_rounds": [ - 3648 - ], - "he_damage": [ - 3648 - ], - "he_team_damage": [ - 3648 - ], - "he_throws": [ - 3648 - ], - "headshot_hits": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_at_spotted": [ - 3648 - ], - "hs_kills": [ - 3648 - ], - "hs_kills_ct": [ - 3648 - ], - "hs_kills_t": [ - 3648 - ], - "kills": [ - 3648 - ], - "kills_ct": [ - 3648 - ], - "kills_t": [ - 3648 - ], - "knife_kills": [ - 3648 - ], - "molotov_damage": [ - 3648 - ], - "molotov_throws": [ - 3648 - ], - "non_awp_hits": [ - 3648 - ], - "on_target_frames": [ - 3648 - ], - "rounds_ct": [ - 3648 - ], - "rounds_played": [ - 3648 - ], - "rounds_t": [ - 3648 - ], - "shots_at_spotted": [ - 3648 - ], - "shots_fired": [ - 3648 - ], - "smoke_throws": [ - 3648 - ], - "spotted_count": [ - 3648 - ], - "spotted_with_damage_count": [ - 3648 - ], - "spray_hits": [ - 3648 - ], - "spray_shots": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "team_damage": [ - 3648 - ], - "team_flashed": [ - 3648 - ], - "three_kill_rounds": [ - 3648 - ], - "total_engagement_frames": [ - 3648 - ], - "trade_kill_attempts": [ - 3648 - ], - "trade_kill_opportunities": [ - 3648 - ], - "trade_kill_successes": [ - 3648 - ], - "traded_death_attempts": [ - 3648 - ], - "traded_death_opportunities": [ - 3648 - ], - "traded_death_successes": [ - 3648 - ], - "two_kill_rounds": [ - 3648 - ], - "unused_utility_value": [ - 3648 - ], - "utility_on_death": [ - 3648 - ], - "wasted_magazine_shots": [ - 3648 - ], - "zeus_kills": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_match_stats_v_stddev_pop_fields": { - "assists": [ - 32 - ], - "assists_ct": [ - 32 - ], - "assists_t": [ - 32 - ], - "avg_crosshair_angle_deg": [ - 32 - ], - "avg_flash_duration": [ - 32 - ], - "avg_time_to_damage_s": [ - 32 - ], - "counter_strafe_eligible_shots": [ - 32 - ], - "counter_strafed_shots": [ - 32 - ], - "damage": [ - 32 - ], - "damage_ct": [ - 32 - ], - "damage_t": [ - 32 - ], - "deaths": [ - 32 - ], - "deaths_ct": [ - 32 - ], - "deaths_t": [ - 32 - ], - "decoy_throws": [ - 32 - ], - "enemies_flashed": [ - 32 - ], - "first_bullet_hits": [ - 32 - ], - "first_bullet_shots": [ - 32 - ], - "five_kill_rounds": [ - 32 - ], - "flash_assists": [ - 32 - ], - "flashes_thrown": [ - 32 - ], - "four_kill_rounds": [ - 32 - ], - "he_damage": [ - 32 - ], - "he_team_damage": [ - 32 - ], - "he_throws": [ - 32 - ], - "headshot_hits": [ - 32 - ], - "hits": [ - 32 - ], - "hits_at_spotted": [ - 32 - ], - "hs_kills": [ - 32 - ], - "hs_kills_ct": [ - 32 - ], - "hs_kills_t": [ - 32 - ], - "kills": [ - 32 - ], - "kills_ct": [ - 32 - ], - "kills_t": [ - 32 - ], - "knife_kills": [ - 32 - ], - "molotov_damage": [ - 32 - ], - "molotov_throws": [ - 32 - ], - "non_awp_hits": [ - 32 - ], - "on_target_frames": [ - 32 - ], - "rounds_ct": [ - 32 - ], - "rounds_played": [ - 32 - ], - "rounds_t": [ - 32 - ], - "shots_at_spotted": [ - 32 - ], - "shots_fired": [ - 32 - ], - "smoke_throws": [ - 32 - ], - "spotted_count": [ - 32 - ], - "spotted_with_damage_count": [ - 32 - ], - "spray_hits": [ - 32 - ], - "spray_shots": [ - 32 - ], - "steam_id": [ - 32 - ], - "team_damage": [ - 32 - ], - "team_flashed": [ - 32 - ], - "three_kill_rounds": [ - 32 - ], - "total_engagement_frames": [ - 32 - ], - "trade_kill_attempts": [ - 32 - ], - "trade_kill_opportunities": [ - 32 - ], - "trade_kill_successes": [ - 32 - ], - "traded_death_attempts": [ - 32 - ], - "traded_death_opportunities": [ - 32 - ], - "traded_death_successes": [ - 32 - ], - "two_kill_rounds": [ - 32 - ], - "unused_utility_value": [ - 32 - ], - "utility_on_death": [ - 32 - ], - "wasted_magazine_shots": [ - 32 - ], - "zeus_kills": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_match_stats_v_stddev_pop_order_by": { - "assists": [ - 3648 - ], - "assists_ct": [ - 3648 - ], - "assists_t": [ - 3648 - ], - "avg_crosshair_angle_deg": [ - 3648 - ], - "avg_flash_duration": [ - 3648 - ], - "avg_time_to_damage_s": [ - 3648 - ], - "counter_strafe_eligible_shots": [ - 3648 - ], - "counter_strafed_shots": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_ct": [ - 3648 - ], - "damage_t": [ - 3648 - ], - "deaths": [ - 3648 - ], - "deaths_ct": [ - 3648 - ], - "deaths_t": [ - 3648 - ], - "decoy_throws": [ - 3648 - ], - "enemies_flashed": [ - 3648 - ], - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "five_kill_rounds": [ - 3648 - ], - "flash_assists": [ - 3648 - ], - "flashes_thrown": [ - 3648 - ], - "four_kill_rounds": [ - 3648 - ], - "he_damage": [ - 3648 - ], - "he_team_damage": [ - 3648 - ], - "he_throws": [ - 3648 - ], - "headshot_hits": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_at_spotted": [ - 3648 - ], - "hs_kills": [ - 3648 - ], - "hs_kills_ct": [ - 3648 - ], - "hs_kills_t": [ - 3648 - ], - "kills": [ - 3648 - ], - "kills_ct": [ - 3648 - ], - "kills_t": [ - 3648 - ], - "knife_kills": [ - 3648 - ], - "molotov_damage": [ - 3648 - ], - "molotov_throws": [ - 3648 - ], - "non_awp_hits": [ - 3648 - ], - "on_target_frames": [ - 3648 - ], - "rounds_ct": [ - 3648 - ], - "rounds_played": [ - 3648 - ], - "rounds_t": [ - 3648 - ], - "shots_at_spotted": [ - 3648 - ], - "shots_fired": [ - 3648 - ], - "smoke_throws": [ - 3648 - ], - "spotted_count": [ - 3648 - ], - "spotted_with_damage_count": [ - 3648 - ], - "spray_hits": [ - 3648 - ], - "spray_shots": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "team_damage": [ - 3648 - ], - "team_flashed": [ - 3648 - ], - "three_kill_rounds": [ - 3648 - ], - "total_engagement_frames": [ - 3648 - ], - "trade_kill_attempts": [ - 3648 - ], - "trade_kill_opportunities": [ - 3648 - ], - "trade_kill_successes": [ - 3648 - ], - "traded_death_attempts": [ - 3648 - ], - "traded_death_opportunities": [ - 3648 - ], - "traded_death_successes": [ - 3648 - ], - "two_kill_rounds": [ - 3648 - ], - "unused_utility_value": [ - 3648 - ], - "utility_on_death": [ - 3648 - ], - "wasted_magazine_shots": [ - 3648 - ], - "zeus_kills": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_match_stats_v_stddev_samp_fields": { - "assists": [ - 32 - ], - "assists_ct": [ - 32 - ], - "assists_t": [ - 32 - ], - "avg_crosshair_angle_deg": [ - 32 - ], - "avg_flash_duration": [ - 32 - ], - "avg_time_to_damage_s": [ - 32 - ], - "counter_strafe_eligible_shots": [ - 32 - ], - "counter_strafed_shots": [ - 32 - ], - "damage": [ - 32 - ], - "damage_ct": [ - 32 - ], - "damage_t": [ - 32 - ], - "deaths": [ - 32 - ], - "deaths_ct": [ - 32 - ], - "deaths_t": [ - 32 - ], - "decoy_throws": [ - 32 - ], - "enemies_flashed": [ - 32 - ], - "first_bullet_hits": [ - 32 - ], - "first_bullet_shots": [ - 32 - ], - "five_kill_rounds": [ - 32 - ], - "flash_assists": [ - 32 - ], - "flashes_thrown": [ - 32 - ], - "four_kill_rounds": [ - 32 - ], - "he_damage": [ - 32 - ], - "he_team_damage": [ - 32 - ], - "he_throws": [ - 32 - ], - "headshot_hits": [ - 32 - ], - "hits": [ - 32 - ], - "hits_at_spotted": [ - 32 - ], - "hs_kills": [ - 32 - ], - "hs_kills_ct": [ - 32 - ], - "hs_kills_t": [ - 32 - ], - "kills": [ - 32 - ], - "kills_ct": [ - 32 - ], - "kills_t": [ - 32 - ], - "knife_kills": [ - 32 - ], - "molotov_damage": [ - 32 - ], - "molotov_throws": [ - 32 - ], - "non_awp_hits": [ - 32 - ], - "on_target_frames": [ - 32 - ], - "rounds_ct": [ - 32 - ], - "rounds_played": [ - 32 - ], - "rounds_t": [ - 32 - ], - "shots_at_spotted": [ - 32 - ], - "shots_fired": [ - 32 - ], - "smoke_throws": [ - 32 - ], - "spotted_count": [ - 32 - ], - "spotted_with_damage_count": [ - 32 - ], - "spray_hits": [ - 32 - ], - "spray_shots": [ - 32 - ], - "steam_id": [ - 32 - ], - "team_damage": [ - 32 - ], - "team_flashed": [ - 32 - ], - "three_kill_rounds": [ - 32 - ], - "total_engagement_frames": [ - 32 - ], - "trade_kill_attempts": [ - 32 - ], - "trade_kill_opportunities": [ - 32 - ], - "trade_kill_successes": [ - 32 - ], - "traded_death_attempts": [ - 32 - ], - "traded_death_opportunities": [ - 32 - ], - "traded_death_successes": [ - 32 - ], - "two_kill_rounds": [ - 32 - ], - "unused_utility_value": [ - 32 - ], - "utility_on_death": [ - 32 - ], - "wasted_magazine_shots": [ - 32 - ], - "zeus_kills": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_match_stats_v_stddev_samp_order_by": { - "assists": [ - 3648 - ], - "assists_ct": [ - 3648 - ], - "assists_t": [ - 3648 - ], - "avg_crosshair_angle_deg": [ - 3648 - ], - "avg_flash_duration": [ - 3648 - ], - "avg_time_to_damage_s": [ - 3648 - ], - "counter_strafe_eligible_shots": [ - 3648 - ], - "counter_strafed_shots": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_ct": [ - 3648 - ], - "damage_t": [ - 3648 - ], - "deaths": [ - 3648 - ], - "deaths_ct": [ - 3648 - ], - "deaths_t": [ - 3648 - ], - "decoy_throws": [ - 3648 - ], - "enemies_flashed": [ - 3648 - ], - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "five_kill_rounds": [ - 3648 - ], - "flash_assists": [ - 3648 - ], - "flashes_thrown": [ - 3648 - ], - "four_kill_rounds": [ - 3648 - ], - "he_damage": [ - 3648 - ], - "he_team_damage": [ - 3648 - ], - "he_throws": [ - 3648 - ], - "headshot_hits": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_at_spotted": [ - 3648 - ], - "hs_kills": [ - 3648 - ], - "hs_kills_ct": [ - 3648 - ], - "hs_kills_t": [ - 3648 - ], - "kills": [ - 3648 - ], - "kills_ct": [ - 3648 - ], - "kills_t": [ - 3648 - ], - "knife_kills": [ - 3648 - ], - "molotov_damage": [ - 3648 - ], - "molotov_throws": [ - 3648 - ], - "non_awp_hits": [ - 3648 - ], - "on_target_frames": [ - 3648 - ], - "rounds_ct": [ - 3648 - ], - "rounds_played": [ - 3648 - ], - "rounds_t": [ - 3648 - ], - "shots_at_spotted": [ - 3648 - ], - "shots_fired": [ - 3648 - ], - "smoke_throws": [ - 3648 - ], - "spotted_count": [ - 3648 - ], - "spotted_with_damage_count": [ - 3648 - ], - "spray_hits": [ - 3648 - ], - "spray_shots": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "team_damage": [ - 3648 - ], - "team_flashed": [ - 3648 - ], - "three_kill_rounds": [ - 3648 - ], - "total_engagement_frames": [ - 3648 - ], - "trade_kill_attempts": [ - 3648 - ], - "trade_kill_opportunities": [ - 3648 - ], - "trade_kill_successes": [ - 3648 - ], - "traded_death_attempts": [ - 3648 - ], - "traded_death_opportunities": [ - 3648 - ], - "traded_death_successes": [ - 3648 - ], - "two_kill_rounds": [ - 3648 - ], - "unused_utility_value": [ - 3648 - ], - "utility_on_death": [ - 3648 - ], - "wasted_magazine_shots": [ - 3648 - ], - "zeus_kills": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_match_stats_v_stream_cursor_input": { - "initial_value": [ - 4195 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "player_match_stats_v_stream_cursor_value_input": { - "assists": [ - 41 - ], - "assists_ct": [ - 41 - ], - "assists_t": [ - 41 - ], - "avg_crosshair_angle_deg": [ - 3646 - ], - "avg_flash_duration": [ - 3646 - ], - "avg_time_to_damage_s": [ - 3646 - ], - "counter_strafe_eligible_shots": [ - 41 - ], - "counter_strafed_shots": [ - 41 - ], - "damage": [ - 41 - ], - "damage_ct": [ - 41 - ], - "damage_t": [ - 41 - ], - "deaths": [ - 41 - ], - "deaths_ct": [ - 41 - ], - "deaths_t": [ - 41 - ], - "decoy_throws": [ - 41 - ], - "enemies_flashed": [ - 41 - ], - "first_bullet_hits": [ - 41 - ], - "first_bullet_shots": [ - 41 - ], - "five_kill_rounds": [ - 41 - ], - "flash_assists": [ - 41 - ], - "flashes_thrown": [ - 41 - ], - "four_kill_rounds": [ - 41 - ], - "he_damage": [ - 41 - ], - "he_team_damage": [ - 41 - ], - "he_throws": [ - 41 - ], - "headshot_hits": [ - 41 - ], - "hits": [ - 41 - ], - "hits_at_spotted": [ - 41 - ], - "hs_kills": [ - 41 - ], - "hs_kills_ct": [ - 41 - ], - "hs_kills_t": [ - 41 - ], - "kills": [ - 41 - ], - "kills_ct": [ - 41 - ], - "kills_t": [ - 41 - ], - "knife_kills": [ - 41 - ], - "match_id": [ - 6672 - ], - "molotov_damage": [ - 41 - ], - "molotov_throws": [ - 41 - ], - "non_awp_hits": [ - 41 - ], - "on_target_frames": [ - 41 - ], - "rounds_ct": [ - 41 - ], - "rounds_played": [ - 41 - ], - "rounds_t": [ - 41 - ], - "shots_at_spotted": [ - 41 - ], - "shots_fired": [ - 41 - ], - "smoke_throws": [ - 41 - ], - "spotted_count": [ - 41 - ], - "spotted_with_damage_count": [ - 41 - ], - "spray_hits": [ - 41 - ], - "spray_shots": [ - 41 - ], - "steam_id": [ - 312 - ], - "team_damage": [ - 41 - ], - "team_flashed": [ - 41 - ], - "three_kill_rounds": [ - 41 - ], - "total_engagement_frames": [ - 41 - ], - "trade_kill_attempts": [ - 41 - ], - "trade_kill_opportunities": [ - 41 - ], - "trade_kill_successes": [ - 41 - ], - "traded_death_attempts": [ - 41 - ], - "traded_death_opportunities": [ - 41 - ], - "traded_death_successes": [ - 41 - ], - "two_kill_rounds": [ - 41 - ], - "unused_utility_value": [ - 41 - ], - "utility_on_death": [ - 3646 - ], - "wasted_magazine_shots": [ - 41 - ], - "zeus_kills": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "player_match_stats_v_sum_fields": { - "assists": [ - 41 - ], - "assists_ct": [ - 41 - ], - "assists_t": [ - 41 - ], - "avg_crosshair_angle_deg": [ - 3646 - ], - "avg_flash_duration": [ - 3646 - ], - "avg_time_to_damage_s": [ - 3646 - ], - "counter_strafe_eligible_shots": [ - 41 - ], - "counter_strafed_shots": [ - 41 - ], - "damage": [ - 41 - ], - "damage_ct": [ - 41 - ], - "damage_t": [ - 41 - ], - "deaths": [ - 41 - ], - "deaths_ct": [ - 41 - ], - "deaths_t": [ - 41 - ], - "decoy_throws": [ - 41 - ], - "enemies_flashed": [ - 41 - ], - "first_bullet_hits": [ - 41 - ], - "first_bullet_shots": [ - 41 - ], - "five_kill_rounds": [ - 41 - ], - "flash_assists": [ - 41 - ], - "flashes_thrown": [ - 41 - ], - "four_kill_rounds": [ - 41 - ], - "he_damage": [ - 41 - ], - "he_team_damage": [ - 41 - ], - "he_throws": [ - 41 - ], - "headshot_hits": [ - 41 - ], - "hits": [ - 41 - ], - "hits_at_spotted": [ - 41 - ], - "hs_kills": [ - 41 - ], - "hs_kills_ct": [ - 41 - ], - "hs_kills_t": [ - 41 - ], - "kills": [ - 41 - ], - "kills_ct": [ - 41 - ], - "kills_t": [ - 41 - ], - "knife_kills": [ - 41 - ], - "molotov_damage": [ - 41 - ], - "molotov_throws": [ - 41 - ], - "non_awp_hits": [ - 41 - ], - "on_target_frames": [ - 41 - ], - "rounds_ct": [ - 41 - ], - "rounds_played": [ - 41 - ], - "rounds_t": [ - 41 - ], - "shots_at_spotted": [ - 41 - ], - "shots_fired": [ - 41 - ], - "smoke_throws": [ - 41 - ], - "spotted_count": [ - 41 - ], - "spotted_with_damage_count": [ - 41 - ], - "spray_hits": [ - 41 - ], - "spray_shots": [ - 41 - ], - "steam_id": [ - 312 - ], - "team_damage": [ - 41 - ], - "team_flashed": [ - 41 - ], - "three_kill_rounds": [ - 41 - ], - "total_engagement_frames": [ - 41 - ], - "trade_kill_attempts": [ - 41 - ], - "trade_kill_opportunities": [ - 41 - ], - "trade_kill_successes": [ - 41 - ], - "traded_death_attempts": [ - 41 - ], - "traded_death_opportunities": [ - 41 - ], - "traded_death_successes": [ - 41 - ], - "two_kill_rounds": [ - 41 - ], - "unused_utility_value": [ - 41 - ], - "utility_on_death": [ - 3646 - ], - "wasted_magazine_shots": [ - 41 - ], - "zeus_kills": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "player_match_stats_v_sum_order_by": { - "assists": [ - 3648 - ], - "assists_ct": [ - 3648 - ], - "assists_t": [ - 3648 - ], - "avg_crosshair_angle_deg": [ - 3648 - ], - "avg_flash_duration": [ - 3648 - ], - "avg_time_to_damage_s": [ - 3648 - ], - "counter_strafe_eligible_shots": [ - 3648 - ], - "counter_strafed_shots": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_ct": [ - 3648 - ], - "damage_t": [ - 3648 - ], - "deaths": [ - 3648 - ], - "deaths_ct": [ - 3648 - ], - "deaths_t": [ - 3648 - ], - "decoy_throws": [ - 3648 - ], - "enemies_flashed": [ - 3648 - ], - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "five_kill_rounds": [ - 3648 - ], - "flash_assists": [ - 3648 - ], - "flashes_thrown": [ - 3648 - ], - "four_kill_rounds": [ - 3648 - ], - "he_damage": [ - 3648 - ], - "he_team_damage": [ - 3648 - ], - "he_throws": [ - 3648 - ], - "headshot_hits": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_at_spotted": [ - 3648 - ], - "hs_kills": [ - 3648 - ], - "hs_kills_ct": [ - 3648 - ], - "hs_kills_t": [ - 3648 - ], - "kills": [ - 3648 - ], - "kills_ct": [ - 3648 - ], - "kills_t": [ - 3648 - ], - "knife_kills": [ - 3648 - ], - "molotov_damage": [ - 3648 - ], - "molotov_throws": [ - 3648 - ], - "non_awp_hits": [ - 3648 - ], - "on_target_frames": [ - 3648 - ], - "rounds_ct": [ - 3648 - ], - "rounds_played": [ - 3648 - ], - "rounds_t": [ - 3648 - ], - "shots_at_spotted": [ - 3648 - ], - "shots_fired": [ - 3648 - ], - "smoke_throws": [ - 3648 - ], - "spotted_count": [ - 3648 - ], - "spotted_with_damage_count": [ - 3648 - ], - "spray_hits": [ - 3648 - ], - "spray_shots": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "team_damage": [ - 3648 - ], - "team_flashed": [ - 3648 - ], - "three_kill_rounds": [ - 3648 - ], - "total_engagement_frames": [ - 3648 - ], - "trade_kill_attempts": [ - 3648 - ], - "trade_kill_opportunities": [ - 3648 - ], - "trade_kill_successes": [ - 3648 - ], - "traded_death_attempts": [ - 3648 - ], - "traded_death_opportunities": [ - 3648 - ], - "traded_death_successes": [ - 3648 - ], - "two_kill_rounds": [ - 3648 - ], - "unused_utility_value": [ - 3648 - ], - "utility_on_death": [ - 3648 - ], - "wasted_magazine_shots": [ - 3648 - ], - "zeus_kills": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_match_stats_v_var_pop_fields": { - "assists": [ - 32 - ], - "assists_ct": [ - 32 - ], - "assists_t": [ - 32 - ], - "avg_crosshair_angle_deg": [ - 32 - ], - "avg_flash_duration": [ - 32 - ], - "avg_time_to_damage_s": [ - 32 - ], - "counter_strafe_eligible_shots": [ - 32 - ], - "counter_strafed_shots": [ - 32 - ], - "damage": [ - 32 - ], - "damage_ct": [ - 32 - ], - "damage_t": [ - 32 - ], - "deaths": [ - 32 - ], - "deaths_ct": [ - 32 - ], - "deaths_t": [ - 32 - ], - "decoy_throws": [ - 32 - ], - "enemies_flashed": [ - 32 - ], - "first_bullet_hits": [ - 32 - ], - "first_bullet_shots": [ - 32 - ], - "five_kill_rounds": [ - 32 - ], - "flash_assists": [ - 32 - ], - "flashes_thrown": [ - 32 - ], - "four_kill_rounds": [ - 32 - ], - "he_damage": [ - 32 - ], - "he_team_damage": [ - 32 - ], - "he_throws": [ - 32 - ], - "headshot_hits": [ - 32 - ], - "hits": [ - 32 - ], - "hits_at_spotted": [ - 32 - ], - "hs_kills": [ - 32 - ], - "hs_kills_ct": [ - 32 - ], - "hs_kills_t": [ - 32 - ], - "kills": [ - 32 - ], - "kills_ct": [ - 32 - ], - "kills_t": [ - 32 - ], - "knife_kills": [ - 32 - ], - "molotov_damage": [ - 32 - ], - "molotov_throws": [ - 32 - ], - "non_awp_hits": [ - 32 - ], - "on_target_frames": [ - 32 - ], - "rounds_ct": [ - 32 - ], - "rounds_played": [ - 32 - ], - "rounds_t": [ - 32 - ], - "shots_at_spotted": [ - 32 - ], - "shots_fired": [ - 32 - ], - "smoke_throws": [ - 32 - ], - "spotted_count": [ - 32 - ], - "spotted_with_damage_count": [ - 32 - ], - "spray_hits": [ - 32 - ], - "spray_shots": [ - 32 - ], - "steam_id": [ - 32 - ], - "team_damage": [ - 32 - ], - "team_flashed": [ - 32 - ], - "three_kill_rounds": [ - 32 - ], - "total_engagement_frames": [ - 32 - ], - "trade_kill_attempts": [ - 32 - ], - "trade_kill_opportunities": [ - 32 - ], - "trade_kill_successes": [ - 32 - ], - "traded_death_attempts": [ - 32 - ], - "traded_death_opportunities": [ - 32 - ], - "traded_death_successes": [ - 32 - ], - "two_kill_rounds": [ - 32 - ], - "unused_utility_value": [ - 32 - ], - "utility_on_death": [ - 32 - ], - "wasted_magazine_shots": [ - 32 - ], - "zeus_kills": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_match_stats_v_var_pop_order_by": { - "assists": [ - 3648 - ], - "assists_ct": [ - 3648 - ], - "assists_t": [ - 3648 - ], - "avg_crosshair_angle_deg": [ - 3648 - ], - "avg_flash_duration": [ - 3648 - ], - "avg_time_to_damage_s": [ - 3648 - ], - "counter_strafe_eligible_shots": [ - 3648 - ], - "counter_strafed_shots": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_ct": [ - 3648 - ], - "damage_t": [ - 3648 - ], - "deaths": [ - 3648 - ], - "deaths_ct": [ - 3648 - ], - "deaths_t": [ - 3648 - ], - "decoy_throws": [ - 3648 - ], - "enemies_flashed": [ - 3648 - ], - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "five_kill_rounds": [ - 3648 - ], - "flash_assists": [ - 3648 - ], - "flashes_thrown": [ - 3648 - ], - "four_kill_rounds": [ - 3648 - ], - "he_damage": [ - 3648 - ], - "he_team_damage": [ - 3648 - ], - "he_throws": [ - 3648 - ], - "headshot_hits": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_at_spotted": [ - 3648 - ], - "hs_kills": [ - 3648 - ], - "hs_kills_ct": [ - 3648 - ], - "hs_kills_t": [ - 3648 - ], - "kills": [ - 3648 - ], - "kills_ct": [ - 3648 - ], - "kills_t": [ - 3648 - ], - "knife_kills": [ - 3648 - ], - "molotov_damage": [ - 3648 - ], - "molotov_throws": [ - 3648 - ], - "non_awp_hits": [ - 3648 - ], - "on_target_frames": [ - 3648 - ], - "rounds_ct": [ - 3648 - ], - "rounds_played": [ - 3648 - ], - "rounds_t": [ - 3648 - ], - "shots_at_spotted": [ - 3648 - ], - "shots_fired": [ - 3648 - ], - "smoke_throws": [ - 3648 - ], - "spotted_count": [ - 3648 - ], - "spotted_with_damage_count": [ - 3648 - ], - "spray_hits": [ - 3648 - ], - "spray_shots": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "team_damage": [ - 3648 - ], - "team_flashed": [ - 3648 - ], - "three_kill_rounds": [ - 3648 - ], - "total_engagement_frames": [ - 3648 - ], - "trade_kill_attempts": [ - 3648 - ], - "trade_kill_opportunities": [ - 3648 - ], - "trade_kill_successes": [ - 3648 - ], - "traded_death_attempts": [ - 3648 - ], - "traded_death_opportunities": [ - 3648 - ], - "traded_death_successes": [ - 3648 - ], - "two_kill_rounds": [ - 3648 - ], - "unused_utility_value": [ - 3648 - ], - "utility_on_death": [ - 3648 - ], - "wasted_magazine_shots": [ - 3648 - ], - "zeus_kills": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_match_stats_v_var_samp_fields": { - "assists": [ - 32 - ], - "assists_ct": [ - 32 - ], - "assists_t": [ - 32 - ], - "avg_crosshair_angle_deg": [ - 32 - ], - "avg_flash_duration": [ - 32 - ], - "avg_time_to_damage_s": [ - 32 - ], - "counter_strafe_eligible_shots": [ - 32 - ], - "counter_strafed_shots": [ - 32 - ], - "damage": [ - 32 - ], - "damage_ct": [ - 32 - ], - "damage_t": [ - 32 - ], - "deaths": [ - 32 - ], - "deaths_ct": [ - 32 - ], - "deaths_t": [ - 32 - ], - "decoy_throws": [ - 32 - ], - "enemies_flashed": [ - 32 - ], - "first_bullet_hits": [ - 32 - ], - "first_bullet_shots": [ - 32 - ], - "five_kill_rounds": [ - 32 - ], - "flash_assists": [ - 32 - ], - "flashes_thrown": [ - 32 - ], - "four_kill_rounds": [ - 32 - ], - "he_damage": [ - 32 - ], - "he_team_damage": [ - 32 - ], - "he_throws": [ - 32 - ], - "headshot_hits": [ - 32 - ], - "hits": [ - 32 - ], - "hits_at_spotted": [ - 32 - ], - "hs_kills": [ - 32 - ], - "hs_kills_ct": [ - 32 - ], - "hs_kills_t": [ - 32 - ], - "kills": [ - 32 - ], - "kills_ct": [ - 32 - ], - "kills_t": [ - 32 - ], - "knife_kills": [ - 32 - ], - "molotov_damage": [ - 32 - ], - "molotov_throws": [ - 32 - ], - "non_awp_hits": [ - 32 - ], - "on_target_frames": [ - 32 - ], - "rounds_ct": [ - 32 - ], - "rounds_played": [ - 32 - ], - "rounds_t": [ - 32 - ], - "shots_at_spotted": [ - 32 - ], - "shots_fired": [ - 32 - ], - "smoke_throws": [ - 32 - ], - "spotted_count": [ - 32 - ], - "spotted_with_damage_count": [ - 32 - ], - "spray_hits": [ - 32 - ], - "spray_shots": [ - 32 - ], - "steam_id": [ - 32 - ], - "team_damage": [ - 32 - ], - "team_flashed": [ - 32 - ], - "three_kill_rounds": [ - 32 - ], - "total_engagement_frames": [ - 32 - ], - "trade_kill_attempts": [ - 32 - ], - "trade_kill_opportunities": [ - 32 - ], - "trade_kill_successes": [ - 32 - ], - "traded_death_attempts": [ - 32 - ], - "traded_death_opportunities": [ - 32 - ], - "traded_death_successes": [ - 32 - ], - "two_kill_rounds": [ - 32 - ], - "unused_utility_value": [ - 32 - ], - "utility_on_death": [ - 32 - ], - "wasted_magazine_shots": [ - 32 - ], - "zeus_kills": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_match_stats_v_var_samp_order_by": { - "assists": [ - 3648 - ], - "assists_ct": [ - 3648 - ], - "assists_t": [ - 3648 - ], - "avg_crosshair_angle_deg": [ - 3648 - ], - "avg_flash_duration": [ - 3648 - ], - "avg_time_to_damage_s": [ - 3648 - ], - "counter_strafe_eligible_shots": [ - 3648 - ], - "counter_strafed_shots": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_ct": [ - 3648 - ], - "damage_t": [ - 3648 - ], - "deaths": [ - 3648 - ], - "deaths_ct": [ - 3648 - ], - "deaths_t": [ - 3648 - ], - "decoy_throws": [ - 3648 - ], - "enemies_flashed": [ - 3648 - ], - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "five_kill_rounds": [ - 3648 - ], - "flash_assists": [ - 3648 - ], - "flashes_thrown": [ - 3648 - ], - "four_kill_rounds": [ - 3648 - ], - "he_damage": [ - 3648 - ], - "he_team_damage": [ - 3648 - ], - "he_throws": [ - 3648 - ], - "headshot_hits": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_at_spotted": [ - 3648 - ], - "hs_kills": [ - 3648 - ], - "hs_kills_ct": [ - 3648 - ], - "hs_kills_t": [ - 3648 - ], - "kills": [ - 3648 - ], - "kills_ct": [ - 3648 - ], - "kills_t": [ - 3648 - ], - "knife_kills": [ - 3648 - ], - "molotov_damage": [ - 3648 - ], - "molotov_throws": [ - 3648 - ], - "non_awp_hits": [ - 3648 - ], - "on_target_frames": [ - 3648 - ], - "rounds_ct": [ - 3648 - ], - "rounds_played": [ - 3648 - ], - "rounds_t": [ - 3648 - ], - "shots_at_spotted": [ - 3648 - ], - "shots_fired": [ - 3648 - ], - "smoke_throws": [ - 3648 - ], - "spotted_count": [ - 3648 - ], - "spotted_with_damage_count": [ - 3648 - ], - "spray_hits": [ - 3648 - ], - "spray_shots": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "team_damage": [ - 3648 - ], - "team_flashed": [ - 3648 - ], - "three_kill_rounds": [ - 3648 - ], - "total_engagement_frames": [ - 3648 - ], - "trade_kill_attempts": [ - 3648 - ], - "trade_kill_opportunities": [ - 3648 - ], - "trade_kill_successes": [ - 3648 - ], - "traded_death_attempts": [ - 3648 - ], - "traded_death_opportunities": [ - 3648 - ], - "traded_death_successes": [ - 3648 - ], - "two_kill_rounds": [ - 3648 - ], - "unused_utility_value": [ - 3648 - ], - "utility_on_death": [ - 3648 - ], - "wasted_magazine_shots": [ - 3648 - ], - "zeus_kills": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_match_stats_v_variance_fields": { - "assists": [ - 32 - ], - "assists_ct": [ - 32 - ], - "assists_t": [ - 32 - ], - "avg_crosshair_angle_deg": [ - 32 - ], - "avg_flash_duration": [ - 32 - ], - "avg_time_to_damage_s": [ - 32 - ], - "counter_strafe_eligible_shots": [ - 32 - ], - "counter_strafed_shots": [ - 32 - ], - "damage": [ - 32 - ], - "damage_ct": [ - 32 - ], - "damage_t": [ - 32 - ], - "deaths": [ - 32 - ], - "deaths_ct": [ - 32 - ], - "deaths_t": [ - 32 - ], - "decoy_throws": [ - 32 - ], - "enemies_flashed": [ - 32 - ], - "first_bullet_hits": [ - 32 - ], - "first_bullet_shots": [ - 32 - ], - "five_kill_rounds": [ - 32 - ], - "flash_assists": [ - 32 - ], - "flashes_thrown": [ - 32 - ], - "four_kill_rounds": [ - 32 - ], - "he_damage": [ - 32 - ], - "he_team_damage": [ - 32 - ], - "he_throws": [ - 32 - ], - "headshot_hits": [ - 32 - ], - "hits": [ - 32 - ], - "hits_at_spotted": [ - 32 - ], - "hs_kills": [ - 32 - ], - "hs_kills_ct": [ - 32 - ], - "hs_kills_t": [ - 32 - ], - "kills": [ - 32 - ], - "kills_ct": [ - 32 - ], - "kills_t": [ - 32 - ], - "knife_kills": [ - 32 - ], - "molotov_damage": [ - 32 - ], - "molotov_throws": [ - 32 - ], - "non_awp_hits": [ - 32 - ], - "on_target_frames": [ - 32 - ], - "rounds_ct": [ - 32 - ], - "rounds_played": [ - 32 - ], - "rounds_t": [ - 32 - ], - "shots_at_spotted": [ - 32 - ], - "shots_fired": [ - 32 - ], - "smoke_throws": [ - 32 - ], - "spotted_count": [ - 32 - ], - "spotted_with_damage_count": [ - 32 - ], - "spray_hits": [ - 32 - ], - "spray_shots": [ - 32 - ], - "steam_id": [ - 32 - ], - "team_damage": [ - 32 - ], - "team_flashed": [ - 32 - ], - "three_kill_rounds": [ - 32 - ], - "total_engagement_frames": [ - 32 - ], - "trade_kill_attempts": [ - 32 - ], - "trade_kill_opportunities": [ - 32 - ], - "trade_kill_successes": [ - 32 - ], - "traded_death_attempts": [ - 32 - ], - "traded_death_opportunities": [ - 32 - ], - "traded_death_successes": [ - 32 - ], - "two_kill_rounds": [ - 32 - ], - "unused_utility_value": [ - 32 - ], - "utility_on_death": [ - 32 - ], - "wasted_magazine_shots": [ - 32 - ], - "zeus_kills": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_match_stats_v_variance_order_by": { - "assists": [ - 3648 - ], - "assists_ct": [ - 3648 - ], - "assists_t": [ - 3648 - ], - "avg_crosshair_angle_deg": [ - 3648 - ], - "avg_flash_duration": [ - 3648 - ], - "avg_time_to_damage_s": [ - 3648 - ], - "counter_strafe_eligible_shots": [ - 3648 - ], - "counter_strafed_shots": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_ct": [ - 3648 - ], - "damage_t": [ - 3648 - ], - "deaths": [ - 3648 - ], - "deaths_ct": [ - 3648 - ], - "deaths_t": [ - 3648 - ], - "decoy_throws": [ - 3648 - ], - "enemies_flashed": [ - 3648 - ], - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "five_kill_rounds": [ - 3648 - ], - "flash_assists": [ - 3648 - ], - "flashes_thrown": [ - 3648 - ], - "four_kill_rounds": [ - 3648 - ], - "he_damage": [ - 3648 - ], - "he_team_damage": [ - 3648 - ], - "he_throws": [ - 3648 - ], - "headshot_hits": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_at_spotted": [ - 3648 - ], - "hs_kills": [ - 3648 - ], - "hs_kills_ct": [ - 3648 - ], - "hs_kills_t": [ - 3648 - ], - "kills": [ - 3648 - ], - "kills_ct": [ - 3648 - ], - "kills_t": [ - 3648 - ], - "knife_kills": [ - 3648 - ], - "molotov_damage": [ - 3648 - ], - "molotov_throws": [ - 3648 - ], - "non_awp_hits": [ - 3648 - ], - "on_target_frames": [ - 3648 - ], - "rounds_ct": [ - 3648 - ], - "rounds_played": [ - 3648 - ], - "rounds_t": [ - 3648 - ], - "shots_at_spotted": [ - 3648 - ], - "shots_fired": [ - 3648 - ], - "smoke_throws": [ - 3648 - ], - "spotted_count": [ - 3648 - ], - "spotted_with_damage_count": [ - 3648 - ], - "spray_hits": [ - 3648 - ], - "spray_shots": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "team_damage": [ - 3648 - ], - "team_flashed": [ - 3648 - ], - "three_kill_rounds": [ - 3648 - ], - "total_engagement_frames": [ - 3648 - ], - "trade_kill_attempts": [ - 3648 - ], - "trade_kill_opportunities": [ - 3648 - ], - "trade_kill_successes": [ - 3648 - ], - "traded_death_attempts": [ - 3648 - ], - "traded_death_opportunities": [ - 3648 - ], - "traded_death_successes": [ - 3648 - ], - "two_kill_rounds": [ - 3648 - ], - "unused_utility_value": [ - 3648 - ], - "utility_on_death": [ - 3648 - ], - "wasted_magazine_shots": [ - 3648 - ], - "zeus_kills": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_objectives": { - "deleted_at": [ - 5243 - ], - "match": [ - 3432 - ], - "match_id": [ - 6672 - ], - "match_map": [ - 3248 - ], - "match_map_id": [ - 6672 - ], - "player": [ - 4606 - ], - "player_steam_id": [ - 312 - ], - "round": [ - 41 - ], - "time": [ - 5243 - ], - "type": [ - 1266 - ], - "__typename": [ - 85 - ] - }, - "player_objectives_aggregate": { - "aggregate": [ - 4208 - ], - "nodes": [ - 4204 - ], - "__typename": [ - 85 - ] - }, - "player_objectives_aggregate_bool_exp": { - "count": [ - 4207 - ], - "__typename": [ - 85 - ] - }, - "player_objectives_aggregate_bool_exp_count": { - "arguments": [ - 4225 - ], - "distinct": [ - 6 - ], - "filter": [ - 4213 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "player_objectives_aggregate_fields": { - "avg": [ - 4211 - ], - "count": [ - 41, - { - "columns": [ - 4225, - "[player_objectives_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 4217 - ], - "min": [ - 4219 - ], - "stddev": [ - 4227 - ], - "stddev_pop": [ - 4229 - ], - "stddev_samp": [ - 4231 - ], - "sum": [ - 4235 - ], - "var_pop": [ - 4239 - ], - "var_samp": [ - 4241 - ], - "variance": [ - 4243 - ], - "__typename": [ - 85 - ] - }, - "player_objectives_aggregate_order_by": { - "avg": [ - 4212 - ], - "count": [ - 3648 - ], - "max": [ - 4218 - ], - "min": [ - 4220 - ], - "stddev": [ - 4228 - ], - "stddev_pop": [ - 4230 - ], - "stddev_samp": [ - 4232 - ], - "sum": [ - 4236 - ], - "var_pop": [ - 4240 - ], - "var_samp": [ - 4242 - ], - "variance": [ - 4244 - ], - "__typename": [ - 85 - ] - }, - "player_objectives_arr_rel_insert_input": { - "data": [ - 4216 - ], - "on_conflict": [ - 4222 - ], - "__typename": [ - 85 - ] - }, - "player_objectives_avg_fields": { - "player_steam_id": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_objectives_avg_order_by": { - "player_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_objectives_bool_exp": { - "_and": [ - 4213 - ], - "_not": [ - 4213 - ], - "_or": [ - 4213 - ], - "deleted_at": [ - 5244 - ], - "match": [ - 3443 - ], - "match_id": [ - 6674 - ], - "match_map": [ - 3257 - ], - "match_map_id": [ - 6674 - ], - "player": [ - 4610 - ], - "player_steam_id": [ - 314 - ], - "round": [ - 42 - ], - "time": [ - 5244 - ], - "type": [ - 1267 - ], - "__typename": [ - 85 - ] - }, - "player_objectives_constraint": {}, - "player_objectives_inc_input": { - "player_steam_id": [ - 312 - ], - "round": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "player_objectives_insert_input": { - "deleted_at": [ - 5243 - ], - "match": [ - 3452 - ], - "match_id": [ - 6672 - ], - "match_map": [ - 3266 - ], - "match_map_id": [ - 6672 - ], - "player": [ - 4617 - ], - "player_steam_id": [ - 312 - ], - "round": [ - 41 - ], - "time": [ - 5243 - ], - "type": [ - 1266 - ], - "__typename": [ - 85 - ] - }, - "player_objectives_max_fields": { - "deleted_at": [ - 5243 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "player_steam_id": [ - 312 - ], - "round": [ - 41 - ], - "time": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "player_objectives_max_order_by": { - "deleted_at": [ - 3648 - ], - "match_id": [ - 3648 - ], - "match_map_id": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "time": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_objectives_min_fields": { - "deleted_at": [ - 5243 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "player_steam_id": [ - 312 - ], - "round": [ - 41 - ], - "time": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "player_objectives_min_order_by": { - "deleted_at": [ - 3648 - ], - "match_id": [ - 3648 - ], - "match_map_id": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "time": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_objectives_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 4204 - ], - "__typename": [ - 85 - ] - }, - "player_objectives_on_conflict": { - "constraint": [ - 4214 - ], - "update_columns": [ - 4237 - ], - "where": [ - 4213 - ], - "__typename": [ - 85 - ] - }, - "player_objectives_order_by": { - "deleted_at": [ - 3648 - ], - "match": [ - 3454 - ], - "match_id": [ - 3648 - ], - "match_map": [ - 3268 - ], - "match_map_id": [ - 3648 - ], - "player": [ - 4619 - ], - "player_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "time": [ - 3648 - ], - "type": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_objectives_pk_columns_input": { - "match_map_id": [ - 6672 - ], - "player_steam_id": [ - 312 - ], - "time": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "player_objectives_select_column": {}, - "player_objectives_set_input": { - "deleted_at": [ - 5243 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "player_steam_id": [ - 312 - ], - "round": [ - 41 - ], - "time": [ - 5243 - ], - "type": [ - 1266 - ], - "__typename": [ - 85 - ] - }, - "player_objectives_stddev_fields": { - "player_steam_id": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_objectives_stddev_order_by": { - "player_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_objectives_stddev_pop_fields": { - "player_steam_id": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_objectives_stddev_pop_order_by": { - "player_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_objectives_stddev_samp_fields": { - "player_steam_id": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_objectives_stddev_samp_order_by": { - "player_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_objectives_stream_cursor_input": { - "initial_value": [ - 4234 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "player_objectives_stream_cursor_value_input": { - "deleted_at": [ - 5243 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "player_steam_id": [ - 312 - ], - "round": [ - 41 - ], - "time": [ - 5243 - ], - "type": [ - 1266 - ], - "__typename": [ - 85 - ] - }, - "player_objectives_sum_fields": { - "player_steam_id": [ - 312 - ], - "round": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "player_objectives_sum_order_by": { - "player_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_objectives_update_column": {}, - "player_objectives_updates": { - "_inc": [ - 4215 - ], - "_set": [ - 4226 - ], - "where": [ - 4213 - ], - "__typename": [ - 85 - ] - }, - "player_objectives_var_pop_fields": { - "player_steam_id": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_objectives_var_pop_order_by": { - "player_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_objectives_var_samp_fields": { - "player_steam_id": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_objectives_var_samp_order_by": { - "player_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_objectives_variance_fields": { - "player_steam_id": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_objectives_variance_order_by": { - "player_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_performance_v": { - "accuracy_score": [ - 2093 - ], - "aim_goal": [ - 2093 - ], - "aim_rating": [ - 2093 - ], - "band": [ - 41 - ], - "band_sample": [ - 312 - ], - "blind_score": [ - 2093 - ], - "counter_strafe_score": [ - 2093 - ], - "crosshair_score": [ - 2093 - ], - "flash_assists_score": [ - 2093 - ], - "hs_score": [ - 2093 - ], - "kast_score": [ - 2093 - ], - "maps": [ - 41 - ], - "positioning_goal": [ - 2093 - ], - "positioning_rating": [ - 2093 - ], - "premier_rank": [ - 41 - ], - "rounds": [ - 41 - ], - "spotted_score": [ - 2093 - ], - "steam_id": [ - 312 - ], - "survival_score": [ - 2093 - ], - "traded_score": [ - 2093 - ], - "ttd_score": [ - 2093 - ], - "util_eff_score": [ - 2093 - ], - "utility_goal": [ - 2093 - ], - "utility_rating": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "player_performance_v_aggregate": { - "aggregate": [ - 4247 - ], - "nodes": [ - 4245 - ], - "__typename": [ - 85 - ] - }, - "player_performance_v_aggregate_fields": { - "avg": [ - 4248 - ], - "count": [ - 41, - { - "columns": [ - 4253, - "[player_performance_v_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 4250 - ], - "min": [ - 4251 - ], - "stddev": [ - 4254 - ], - "stddev_pop": [ - 4255 - ], - "stddev_samp": [ - 4256 - ], - "sum": [ - 4259 - ], - "var_pop": [ - 4260 - ], - "var_samp": [ - 4261 - ], - "variance": [ - 4262 - ], - "__typename": [ - 85 - ] - }, - "player_performance_v_avg_fields": { - "accuracy_score": [ - 32 - ], - "aim_goal": [ - 32 - ], - "aim_rating": [ - 32 - ], - "band": [ - 32 - ], - "band_sample": [ - 32 - ], - "blind_score": [ - 32 - ], - "counter_strafe_score": [ - 32 - ], - "crosshair_score": [ - 32 - ], - "flash_assists_score": [ - 32 - ], - "hs_score": [ - 32 - ], - "kast_score": [ - 32 - ], - "maps": [ - 32 - ], - "positioning_goal": [ - 32 - ], - "positioning_rating": [ - 32 - ], - "premier_rank": [ - 32 - ], - "rounds": [ - 32 - ], - "spotted_score": [ - 32 - ], - "steam_id": [ - 32 - ], - "survival_score": [ - 32 - ], - "traded_score": [ - 32 - ], - "ttd_score": [ - 32 - ], - "util_eff_score": [ - 32 - ], - "utility_goal": [ - 32 - ], - "utility_rating": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_performance_v_bool_exp": { - "_and": [ - 4249 - ], - "_not": [ - 4249 - ], - "_or": [ - 4249 - ], - "accuracy_score": [ - 2094 - ], - "aim_goal": [ - 2094 - ], - "aim_rating": [ - 2094 - ], - "band": [ - 42 - ], - "band_sample": [ - 314 - ], - "blind_score": [ - 2094 - ], - "counter_strafe_score": [ - 2094 - ], - "crosshair_score": [ - 2094 - ], - "flash_assists_score": [ - 2094 - ], - "hs_score": [ - 2094 - ], - "kast_score": [ - 2094 - ], - "maps": [ - 42 - ], - "positioning_goal": [ - 2094 - ], - "positioning_rating": [ - 2094 - ], - "premier_rank": [ - 42 - ], - "rounds": [ - 42 - ], - "spotted_score": [ - 2094 - ], - "steam_id": [ - 314 - ], - "survival_score": [ - 2094 - ], - "traded_score": [ - 2094 - ], - "ttd_score": [ - 2094 - ], - "util_eff_score": [ - 2094 - ], - "utility_goal": [ - 2094 - ], - "utility_rating": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "player_performance_v_max_fields": { - "accuracy_score": [ - 2093 - ], - "aim_goal": [ - 2093 - ], - "aim_rating": [ - 2093 - ], - "band": [ - 41 - ], - "band_sample": [ - 312 - ], - "blind_score": [ - 2093 - ], - "counter_strafe_score": [ - 2093 - ], - "crosshair_score": [ - 2093 - ], - "flash_assists_score": [ - 2093 - ], - "hs_score": [ - 2093 - ], - "kast_score": [ - 2093 - ], - "maps": [ - 41 - ], - "positioning_goal": [ - 2093 - ], - "positioning_rating": [ - 2093 - ], - "premier_rank": [ - 41 - ], - "rounds": [ - 41 - ], - "spotted_score": [ - 2093 - ], - "steam_id": [ - 312 - ], - "survival_score": [ - 2093 - ], - "traded_score": [ - 2093 - ], - "ttd_score": [ - 2093 - ], - "util_eff_score": [ - 2093 - ], - "utility_goal": [ - 2093 - ], - "utility_rating": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "player_performance_v_min_fields": { - "accuracy_score": [ - 2093 - ], - "aim_goal": [ - 2093 - ], - "aim_rating": [ - 2093 - ], - "band": [ - 41 - ], - "band_sample": [ - 312 - ], - "blind_score": [ - 2093 - ], - "counter_strafe_score": [ - 2093 - ], - "crosshair_score": [ - 2093 - ], - "flash_assists_score": [ - 2093 - ], - "hs_score": [ - 2093 - ], - "kast_score": [ - 2093 - ], - "maps": [ - 41 - ], - "positioning_goal": [ - 2093 - ], - "positioning_rating": [ - 2093 - ], - "premier_rank": [ - 41 - ], - "rounds": [ - 41 - ], - "spotted_score": [ - 2093 - ], - "steam_id": [ - 312 - ], - "survival_score": [ - 2093 - ], - "traded_score": [ - 2093 - ], - "ttd_score": [ - 2093 - ], - "util_eff_score": [ - 2093 - ], - "utility_goal": [ - 2093 - ], - "utility_rating": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "player_performance_v_order_by": { - "accuracy_score": [ - 3648 - ], - "aim_goal": [ - 3648 - ], - "aim_rating": [ - 3648 - ], - "band": [ - 3648 - ], - "band_sample": [ - 3648 - ], - "blind_score": [ - 3648 - ], - "counter_strafe_score": [ - 3648 - ], - "crosshair_score": [ - 3648 - ], - "flash_assists_score": [ - 3648 - ], - "hs_score": [ - 3648 - ], - "kast_score": [ - 3648 - ], - "maps": [ - 3648 - ], - "positioning_goal": [ - 3648 - ], - "positioning_rating": [ - 3648 - ], - "premier_rank": [ - 3648 - ], - "rounds": [ - 3648 - ], - "spotted_score": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "survival_score": [ - 3648 - ], - "traded_score": [ - 3648 - ], - "ttd_score": [ - 3648 - ], - "util_eff_score": [ - 3648 - ], - "utility_goal": [ - 3648 - ], - "utility_rating": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_performance_v_select_column": {}, - "player_performance_v_stddev_fields": { - "accuracy_score": [ - 32 - ], - "aim_goal": [ - 32 - ], - "aim_rating": [ - 32 - ], - "band": [ - 32 - ], - "band_sample": [ - 32 - ], - "blind_score": [ - 32 - ], - "counter_strafe_score": [ - 32 - ], - "crosshair_score": [ - 32 - ], - "flash_assists_score": [ - 32 - ], - "hs_score": [ - 32 - ], - "kast_score": [ - 32 - ], - "maps": [ - 32 - ], - "positioning_goal": [ - 32 - ], - "positioning_rating": [ - 32 - ], - "premier_rank": [ - 32 - ], - "rounds": [ - 32 - ], - "spotted_score": [ - 32 - ], - "steam_id": [ - 32 - ], - "survival_score": [ - 32 - ], - "traded_score": [ - 32 - ], - "ttd_score": [ - 32 - ], - "util_eff_score": [ - 32 - ], - "utility_goal": [ - 32 - ], - "utility_rating": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_performance_v_stddev_pop_fields": { - "accuracy_score": [ - 32 - ], - "aim_goal": [ - 32 - ], - "aim_rating": [ - 32 - ], - "band": [ - 32 - ], - "band_sample": [ - 32 - ], - "blind_score": [ - 32 - ], - "counter_strafe_score": [ - 32 - ], - "crosshair_score": [ - 32 - ], - "flash_assists_score": [ - 32 - ], - "hs_score": [ - 32 - ], - "kast_score": [ - 32 - ], - "maps": [ - 32 - ], - "positioning_goal": [ - 32 - ], - "positioning_rating": [ - 32 - ], - "premier_rank": [ - 32 - ], - "rounds": [ - 32 - ], - "spotted_score": [ - 32 - ], - "steam_id": [ - 32 - ], - "survival_score": [ - 32 - ], - "traded_score": [ - 32 - ], - "ttd_score": [ - 32 - ], - "util_eff_score": [ - 32 - ], - "utility_goal": [ - 32 - ], - "utility_rating": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_performance_v_stddev_samp_fields": { - "accuracy_score": [ - 32 - ], - "aim_goal": [ - 32 - ], - "aim_rating": [ - 32 - ], - "band": [ - 32 - ], - "band_sample": [ - 32 - ], - "blind_score": [ - 32 - ], - "counter_strafe_score": [ - 32 - ], - "crosshair_score": [ - 32 - ], - "flash_assists_score": [ - 32 - ], - "hs_score": [ - 32 - ], - "kast_score": [ - 32 - ], - "maps": [ - 32 - ], - "positioning_goal": [ - 32 - ], - "positioning_rating": [ - 32 - ], - "premier_rank": [ - 32 - ], - "rounds": [ - 32 - ], - "spotted_score": [ - 32 - ], - "steam_id": [ - 32 - ], - "survival_score": [ - 32 - ], - "traded_score": [ - 32 - ], - "ttd_score": [ - 32 - ], - "util_eff_score": [ - 32 - ], - "utility_goal": [ - 32 - ], - "utility_rating": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_performance_v_stream_cursor_input": { - "initial_value": [ - 4258 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "player_performance_v_stream_cursor_value_input": { - "accuracy_score": [ - 2093 - ], - "aim_goal": [ - 2093 - ], - "aim_rating": [ - 2093 - ], - "band": [ - 41 - ], - "band_sample": [ - 312 - ], - "blind_score": [ - 2093 - ], - "counter_strafe_score": [ - 2093 - ], - "crosshair_score": [ - 2093 - ], - "flash_assists_score": [ - 2093 - ], - "hs_score": [ - 2093 - ], - "kast_score": [ - 2093 - ], - "maps": [ - 41 - ], - "positioning_goal": [ - 2093 - ], - "positioning_rating": [ - 2093 - ], - "premier_rank": [ - 41 - ], - "rounds": [ - 41 - ], - "spotted_score": [ - 2093 - ], - "steam_id": [ - 312 - ], - "survival_score": [ - 2093 - ], - "traded_score": [ - 2093 - ], - "ttd_score": [ - 2093 - ], - "util_eff_score": [ - 2093 - ], - "utility_goal": [ - 2093 - ], - "utility_rating": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "player_performance_v_sum_fields": { - "accuracy_score": [ - 2093 - ], - "aim_goal": [ - 2093 - ], - "aim_rating": [ - 2093 - ], - "band": [ - 41 - ], - "band_sample": [ - 312 - ], - "blind_score": [ - 2093 - ], - "counter_strafe_score": [ - 2093 - ], - "crosshair_score": [ - 2093 - ], - "flash_assists_score": [ - 2093 - ], - "hs_score": [ - 2093 - ], - "kast_score": [ - 2093 - ], - "maps": [ - 41 - ], - "positioning_goal": [ - 2093 - ], - "positioning_rating": [ - 2093 - ], - "premier_rank": [ - 41 - ], - "rounds": [ - 41 - ], - "spotted_score": [ - 2093 - ], - "steam_id": [ - 312 - ], - "survival_score": [ - 2093 - ], - "traded_score": [ - 2093 - ], - "ttd_score": [ - 2093 - ], - "util_eff_score": [ - 2093 - ], - "utility_goal": [ - 2093 - ], - "utility_rating": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "player_performance_v_var_pop_fields": { - "accuracy_score": [ - 32 - ], - "aim_goal": [ - 32 - ], - "aim_rating": [ - 32 - ], - "band": [ - 32 - ], - "band_sample": [ - 32 - ], - "blind_score": [ - 32 - ], - "counter_strafe_score": [ - 32 - ], - "crosshair_score": [ - 32 - ], - "flash_assists_score": [ - 32 - ], - "hs_score": [ - 32 - ], - "kast_score": [ - 32 - ], - "maps": [ - 32 - ], - "positioning_goal": [ - 32 - ], - "positioning_rating": [ - 32 - ], - "premier_rank": [ - 32 - ], - "rounds": [ - 32 - ], - "spotted_score": [ - 32 - ], - "steam_id": [ - 32 - ], - "survival_score": [ - 32 - ], - "traded_score": [ - 32 - ], - "ttd_score": [ - 32 - ], - "util_eff_score": [ - 32 - ], - "utility_goal": [ - 32 - ], - "utility_rating": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_performance_v_var_samp_fields": { - "accuracy_score": [ - 32 - ], - "aim_goal": [ - 32 - ], - "aim_rating": [ - 32 - ], - "band": [ - 32 - ], - "band_sample": [ - 32 - ], - "blind_score": [ - 32 - ], - "counter_strafe_score": [ - 32 - ], - "crosshair_score": [ - 32 - ], - "flash_assists_score": [ - 32 - ], - "hs_score": [ - 32 - ], - "kast_score": [ - 32 - ], - "maps": [ - 32 - ], - "positioning_goal": [ - 32 - ], - "positioning_rating": [ - 32 - ], - "premier_rank": [ - 32 - ], - "rounds": [ - 32 - ], - "spotted_score": [ - 32 - ], - "steam_id": [ - 32 - ], - "survival_score": [ - 32 - ], - "traded_score": [ - 32 - ], - "ttd_score": [ - 32 - ], - "util_eff_score": [ - 32 - ], - "utility_goal": [ - 32 - ], - "utility_rating": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_performance_v_variance_fields": { - "accuracy_score": [ - 32 - ], - "aim_goal": [ - 32 - ], - "aim_rating": [ - 32 - ], - "band": [ - 32 - ], - "band_sample": [ - 32 - ], - "blind_score": [ - 32 - ], - "counter_strafe_score": [ - 32 - ], - "crosshair_score": [ - 32 - ], - "flash_assists_score": [ - 32 - ], - "hs_score": [ - 32 - ], - "kast_score": [ - 32 - ], - "maps": [ - 32 - ], - "positioning_goal": [ - 32 - ], - "positioning_rating": [ - 32 - ], - "premier_rank": [ - 32 - ], - "rounds": [ - 32 - ], - "spotted_score": [ - 32 - ], - "steam_id": [ - 32 - ], - "survival_score": [ - 32 - ], - "traded_score": [ - 32 - ], - "ttd_score": [ - 32 - ], - "util_eff_score": [ - 32 - ], - "utility_goal": [ - 32 - ], - "utility_rating": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_premier_rank_history": { - "id": [ - 6672 - ], - "map": [ - 2924 - ], - "map_id": [ - 6672 - ], - "match": [ - 3432 - ], - "match_id": [ - 6672 - ], - "observed_at": [ - 5243 - ], - "player": [ - 4606 - ], - "previous_rank": [ - 41 - ], - "rank": [ - 41 - ], - "rank_type": [ - 41 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "player_premier_rank_history_aggregate": { - "aggregate": [ - 4267 - ], - "nodes": [ - 4263 - ], - "__typename": [ - 85 - ] - }, - "player_premier_rank_history_aggregate_bool_exp": { - "count": [ - 4266 - ], - "__typename": [ - 85 - ] - }, - "player_premier_rank_history_aggregate_bool_exp_count": { - "arguments": [ - 4284 - ], - "distinct": [ - 6 - ], - "filter": [ - 4272 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "player_premier_rank_history_aggregate_fields": { - "avg": [ - 4270 - ], - "count": [ - 41, - { - "columns": [ - 4284, - "[player_premier_rank_history_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 4276 - ], - "min": [ - 4278 - ], - "stddev": [ - 4286 - ], - "stddev_pop": [ - 4288 - ], - "stddev_samp": [ - 4290 - ], - "sum": [ - 4294 - ], - "var_pop": [ - 4298 - ], - "var_samp": [ - 4300 - ], - "variance": [ - 4302 - ], - "__typename": [ - 85 - ] - }, - "player_premier_rank_history_aggregate_order_by": { - "avg": [ - 4271 - ], - "count": [ - 3648 - ], - "max": [ - 4277 - ], - "min": [ - 4279 - ], - "stddev": [ - 4287 - ], - "stddev_pop": [ - 4289 - ], - "stddev_samp": [ - 4291 - ], - "sum": [ - 4295 - ], - "var_pop": [ - 4299 - ], - "var_samp": [ - 4301 - ], - "variance": [ - 4303 - ], - "__typename": [ - 85 - ] - }, - "player_premier_rank_history_arr_rel_insert_input": { - "data": [ - 4275 - ], - "on_conflict": [ - 4281 - ], - "__typename": [ - 85 - ] - }, - "player_premier_rank_history_avg_fields": { - "previous_rank": [ - 32 - ], - "rank": [ - 32 - ], - "rank_type": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_premier_rank_history_avg_order_by": { - "previous_rank": [ - 3648 - ], - "rank": [ - 3648 - ], - "rank_type": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_premier_rank_history_bool_exp": { - "_and": [ - 4272 - ], - "_not": [ - 4272 - ], - "_or": [ - 4272 - ], - "id": [ - 6674 - ], - "map": [ - 2933 - ], - "map_id": [ - 6674 - ], - "match": [ - 3443 - ], - "match_id": [ - 6674 - ], - "observed_at": [ - 5244 - ], - "player": [ - 4610 - ], - "previous_rank": [ - 42 - ], - "rank": [ - 42 - ], - "rank_type": [ - 42 - ], - "steam_id": [ - 314 - ], - "__typename": [ - 85 - ] - }, - "player_premier_rank_history_constraint": {}, - "player_premier_rank_history_inc_input": { - "previous_rank": [ - 41 - ], - "rank": [ - 41 - ], - "rank_type": [ - 41 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "player_premier_rank_history_insert_input": { - "id": [ - 6672 - ], - "map": [ - 2941 - ], - "map_id": [ - 6672 - ], - "match": [ - 3452 - ], - "match_id": [ - 6672 - ], - "observed_at": [ - 5243 - ], - "player": [ - 4617 - ], - "previous_rank": [ - 41 - ], - "rank": [ - 41 - ], - "rank_type": [ - 41 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "player_premier_rank_history_max_fields": { - "id": [ - 6672 - ], - "map_id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "observed_at": [ - 5243 - ], - "previous_rank": [ - 41 - ], - "rank": [ - 41 - ], - "rank_type": [ - 41 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "player_premier_rank_history_max_order_by": { - "id": [ - 3648 - ], - "map_id": [ - 3648 - ], - "match_id": [ - 3648 - ], - "observed_at": [ - 3648 - ], - "previous_rank": [ - 3648 - ], - "rank": [ - 3648 - ], - "rank_type": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_premier_rank_history_min_fields": { - "id": [ - 6672 - ], - "map_id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "observed_at": [ - 5243 - ], - "previous_rank": [ - 41 - ], - "rank": [ - 41 - ], - "rank_type": [ - 41 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "player_premier_rank_history_min_order_by": { - "id": [ - 3648 - ], - "map_id": [ - 3648 - ], - "match_id": [ - 3648 - ], - "observed_at": [ - 3648 - ], - "previous_rank": [ - 3648 - ], - "rank": [ - 3648 - ], - "rank_type": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_premier_rank_history_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 4263 - ], - "__typename": [ - 85 - ] - }, - "player_premier_rank_history_on_conflict": { - "constraint": [ - 4273 - ], - "update_columns": [ - 4296 - ], - "where": [ - 4272 - ], - "__typename": [ - 85 - ] - }, - "player_premier_rank_history_order_by": { - "id": [ - 3648 - ], - "map": [ - 2943 - ], - "map_id": [ - 3648 - ], - "match": [ - 3454 - ], - "match_id": [ - 3648 - ], - "observed_at": [ - 3648 - ], - "player": [ - 4619 - ], - "previous_rank": [ - 3648 - ], - "rank": [ - 3648 - ], - "rank_type": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_premier_rank_history_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "player_premier_rank_history_select_column": {}, - "player_premier_rank_history_set_input": { - "id": [ - 6672 - ], - "map_id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "observed_at": [ - 5243 - ], - "previous_rank": [ - 41 - ], - "rank": [ - 41 - ], - "rank_type": [ - 41 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "player_premier_rank_history_stddev_fields": { - "previous_rank": [ - 32 - ], - "rank": [ - 32 - ], - "rank_type": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_premier_rank_history_stddev_order_by": { - "previous_rank": [ - 3648 - ], - "rank": [ - 3648 - ], - "rank_type": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_premier_rank_history_stddev_pop_fields": { - "previous_rank": [ - 32 - ], - "rank": [ - 32 - ], - "rank_type": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_premier_rank_history_stddev_pop_order_by": { - "previous_rank": [ - 3648 - ], - "rank": [ - 3648 - ], - "rank_type": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_premier_rank_history_stddev_samp_fields": { - "previous_rank": [ - 32 - ], - "rank": [ - 32 - ], - "rank_type": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_premier_rank_history_stddev_samp_order_by": { - "previous_rank": [ - 3648 - ], - "rank": [ - 3648 - ], - "rank_type": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_premier_rank_history_stream_cursor_input": { - "initial_value": [ - 4293 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "player_premier_rank_history_stream_cursor_value_input": { - "id": [ - 6672 - ], - "map_id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "observed_at": [ - 5243 - ], - "previous_rank": [ - 41 - ], - "rank": [ - 41 - ], - "rank_type": [ - 41 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "player_premier_rank_history_sum_fields": { - "previous_rank": [ - 41 - ], - "rank": [ - 41 - ], - "rank_type": [ - 41 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "player_premier_rank_history_sum_order_by": { - "previous_rank": [ - 3648 - ], - "rank": [ - 3648 - ], - "rank_type": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_premier_rank_history_update_column": {}, - "player_premier_rank_history_updates": { - "_inc": [ - 4274 - ], - "_set": [ - 4285 - ], - "where": [ - 4272 - ], - "__typename": [ - 85 - ] - }, - "player_premier_rank_history_var_pop_fields": { - "previous_rank": [ - 32 - ], - "rank": [ - 32 - ], - "rank_type": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_premier_rank_history_var_pop_order_by": { - "previous_rank": [ - 3648 - ], - "rank": [ - 3648 - ], - "rank_type": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_premier_rank_history_var_samp_fields": { - "previous_rank": [ - 32 - ], - "rank": [ - 32 - ], - "rank_type": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_premier_rank_history_var_samp_order_by": { - "previous_rank": [ - 3648 - ], - "rank": [ - 3648 - ], - "rank_type": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_premier_rank_history_variance_fields": { - "previous_rank": [ - 32 - ], - "rank": [ - 32 - ], - "rank_type": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_premier_rank_history_variance_order_by": { - "previous_rank": [ - 3648 - ], - "rank": [ - 3648 - ], - "rank_type": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_sanctions": { - "created_at": [ - 5243 - ], - "deleted_at": [ - 5243 - ], - "e_sanction_type": [ - 1387 - ], - "id": [ - 6672 - ], - "player": [ - 4606 - ], - "player_steam_id": [ - 312 - ], - "reason": [ - 85 - ], - "remove_sanction_date": [ - 5243 - ], - "sanctioned_by": [ - 4606 - ], - "sanctioned_by_steam_id": [ - 312 - ], - "type": [ - 1392 - ], - "__typename": [ - 85 - ] - }, - "player_sanctions_aggregate": { - "aggregate": [ - 4308 - ], - "nodes": [ - 4304 - ], - "__typename": [ - 85 - ] - }, - "player_sanctions_aggregate_bool_exp": { - "count": [ - 4307 - ], - "__typename": [ - 85 - ] - }, - "player_sanctions_aggregate_bool_exp_count": { - "arguments": [ - 4325 - ], - "distinct": [ - 6 - ], - "filter": [ - 4313 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "player_sanctions_aggregate_fields": { - "avg": [ - 4311 - ], - "count": [ - 41, - { - "columns": [ - 4325, - "[player_sanctions_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 4317 - ], - "min": [ - 4319 - ], - "stddev": [ - 4327 - ], - "stddev_pop": [ - 4329 - ], - "stddev_samp": [ - 4331 - ], - "sum": [ - 4335 - ], - "var_pop": [ - 4339 - ], - "var_samp": [ - 4341 - ], - "variance": [ - 4343 - ], - "__typename": [ - 85 - ] - }, - "player_sanctions_aggregate_order_by": { - "avg": [ - 4312 - ], - "count": [ - 3648 - ], - "max": [ - 4318 - ], - "min": [ - 4320 - ], - "stddev": [ - 4328 - ], - "stddev_pop": [ - 4330 - ], - "stddev_samp": [ - 4332 - ], - "sum": [ - 4336 - ], - "var_pop": [ - 4340 - ], - "var_samp": [ - 4342 - ], - "variance": [ - 4344 - ], - "__typename": [ - 85 - ] - }, - "player_sanctions_arr_rel_insert_input": { - "data": [ - 4316 - ], - "on_conflict": [ - 4322 - ], - "__typename": [ - 85 - ] - }, - "player_sanctions_avg_fields": { - "player_steam_id": [ - 32 - ], - "sanctioned_by_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_sanctions_avg_order_by": { - "player_steam_id": [ - 3648 - ], - "sanctioned_by_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_sanctions_bool_exp": { - "_and": [ - 4313 - ], - "_not": [ - 4313 - ], - "_or": [ - 4313 - ], - "created_at": [ - 5244 - ], - "deleted_at": [ - 5244 - ], - "e_sanction_type": [ - 1390 - ], - "id": [ - 6674 - ], - "player": [ - 4610 - ], - "player_steam_id": [ - 314 - ], - "reason": [ - 87 - ], - "remove_sanction_date": [ - 5244 - ], - "sanctioned_by": [ - 4610 - ], - "sanctioned_by_steam_id": [ - 314 - ], - "type": [ - 1393 - ], - "__typename": [ - 85 - ] - }, - "player_sanctions_constraint": {}, - "player_sanctions_inc_input": { - "player_steam_id": [ - 312 - ], - "sanctioned_by_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "player_sanctions_insert_input": { - "created_at": [ - 5243 - ], - "deleted_at": [ - 5243 - ], - "e_sanction_type": [ - 1398 - ], - "id": [ - 6672 - ], - "player": [ - 4617 - ], - "player_steam_id": [ - 312 - ], - "reason": [ - 85 - ], - "remove_sanction_date": [ - 5243 - ], - "sanctioned_by": [ - 4617 - ], - "sanctioned_by_steam_id": [ - 312 - ], - "type": [ - 1392 - ], - "__typename": [ - 85 - ] - }, - "player_sanctions_max_fields": { - "created_at": [ - 5243 - ], - "deleted_at": [ - 5243 - ], - "id": [ - 6672 - ], - "player_steam_id": [ - 312 - ], - "reason": [ - 85 - ], - "remove_sanction_date": [ - 5243 - ], - "sanctioned_by_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "player_sanctions_max_order_by": { - "created_at": [ - 3648 - ], - "deleted_at": [ - 3648 - ], - "id": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "reason": [ - 3648 - ], - "remove_sanction_date": [ - 3648 - ], - "sanctioned_by_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_sanctions_min_fields": { - "created_at": [ - 5243 - ], - "deleted_at": [ - 5243 - ], - "id": [ - 6672 - ], - "player_steam_id": [ - 312 - ], - "reason": [ - 85 - ], - "remove_sanction_date": [ - 5243 - ], - "sanctioned_by_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "player_sanctions_min_order_by": { - "created_at": [ - 3648 - ], - "deleted_at": [ - 3648 - ], - "id": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "reason": [ - 3648 - ], - "remove_sanction_date": [ - 3648 - ], - "sanctioned_by_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_sanctions_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 4304 - ], - "__typename": [ - 85 - ] - }, - "player_sanctions_on_conflict": { - "constraint": [ - 4314 - ], - "update_columns": [ - 4337 - ], - "where": [ - 4313 - ], - "__typename": [ - 85 - ] - }, - "player_sanctions_order_by": { - "created_at": [ - 3648 - ], - "deleted_at": [ - 3648 - ], - "e_sanction_type": [ - 1400 - ], - "id": [ - 3648 - ], - "player": [ - 4619 - ], - "player_steam_id": [ - 3648 - ], - "reason": [ - 3648 - ], - "remove_sanction_date": [ - 3648 - ], - "sanctioned_by": [ - 4619 - ], - "sanctioned_by_steam_id": [ - 3648 - ], - "type": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_sanctions_pk_columns_input": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "player_sanctions_select_column": {}, - "player_sanctions_set_input": { - "created_at": [ - 5243 - ], - "deleted_at": [ - 5243 - ], - "id": [ - 6672 - ], - "player_steam_id": [ - 312 - ], - "reason": [ - 85 - ], - "remove_sanction_date": [ - 5243 - ], - "sanctioned_by_steam_id": [ - 312 - ], - "type": [ - 1392 - ], - "__typename": [ - 85 - ] - }, - "player_sanctions_stddev_fields": { - "player_steam_id": [ - 32 - ], - "sanctioned_by_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_sanctions_stddev_order_by": { - "player_steam_id": [ - 3648 - ], - "sanctioned_by_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_sanctions_stddev_pop_fields": { - "player_steam_id": [ - 32 - ], - "sanctioned_by_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_sanctions_stddev_pop_order_by": { - "player_steam_id": [ - 3648 - ], - "sanctioned_by_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_sanctions_stddev_samp_fields": { - "player_steam_id": [ - 32 - ], - "sanctioned_by_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_sanctions_stddev_samp_order_by": { - "player_steam_id": [ - 3648 - ], - "sanctioned_by_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_sanctions_stream_cursor_input": { - "initial_value": [ - 4334 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "player_sanctions_stream_cursor_value_input": { - "created_at": [ - 5243 - ], - "deleted_at": [ - 5243 - ], - "id": [ - 6672 - ], - "player_steam_id": [ - 312 - ], - "reason": [ - 85 - ], - "remove_sanction_date": [ - 5243 - ], - "sanctioned_by_steam_id": [ - 312 - ], - "type": [ - 1392 - ], - "__typename": [ - 85 - ] - }, - "player_sanctions_sum_fields": { - "player_steam_id": [ - 312 - ], - "sanctioned_by_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "player_sanctions_sum_order_by": { - "player_steam_id": [ - 3648 - ], - "sanctioned_by_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_sanctions_update_column": {}, - "player_sanctions_updates": { - "_inc": [ - 4315 - ], - "_set": [ - 4326 - ], - "where": [ - 4313 - ], - "__typename": [ - 85 - ] - }, - "player_sanctions_var_pop_fields": { - "player_steam_id": [ - 32 - ], - "sanctioned_by_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_sanctions_var_pop_order_by": { - "player_steam_id": [ - 3648 - ], - "sanctioned_by_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_sanctions_var_samp_fields": { - "player_steam_id": [ - 32 - ], - "sanctioned_by_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_sanctions_var_samp_order_by": { - "player_steam_id": [ - 3648 - ], - "sanctioned_by_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_sanctions_variance_fields": { - "player_steam_id": [ - 32 - ], - "sanctioned_by_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_sanctions_variance_order_by": { - "player_steam_id": [ - 3648 - ], - "sanctioned_by_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats": { - "assists": [ - 312 - ], - "deaths": [ - 312 - ], - "headshot_percentage": [ - 2093 - ], - "headshots": [ - 312 - ], - "kills": [ - 312 - ], - "player": [ - 4606 - ], - "player_steam_id": [ - 312 - ], - "season": [ - 4706 - ], - "season_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_aggregate": { - "aggregate": [ - 4359 - ], - "nodes": [ - 4345 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_aggregate_bool_exp": { - "avg": [ - 4348 - ], - "corr": [ - 4349 - ], - "count": [ - 4351 - ], - "covar_samp": [ - 4352 - ], - "max": [ - 4354 - ], - "min": [ - 4355 - ], - "stddev_samp": [ - 4356 - ], - "sum": [ - 4357 - ], - "var_samp": [ - 4358 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_aggregate_bool_exp_avg": { - "arguments": [ - 4377 - ], - "distinct": [ - 6 - ], - "filter": [ - 4364 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_aggregate_bool_exp_corr": { - "arguments": [ - 4350 - ], - "distinct": [ - 6 - ], - "filter": [ - 4364 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_aggregate_bool_exp_corr_arguments": { - "X": [ - 4378 - ], - "Y": [ - 4378 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_aggregate_bool_exp_count": { - "arguments": [ - 4376 - ], - "distinct": [ - 6 - ], - "filter": [ - 4364 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_aggregate_bool_exp_covar_samp": { - "arguments": [ - 4353 - ], - "distinct": [ - 6 - ], - "filter": [ - 4364 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_aggregate_bool_exp_covar_samp_arguments": { - "X": [ - 4379 - ], - "Y": [ - 4379 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_aggregate_bool_exp_max": { - "arguments": [ - 4380 - ], - "distinct": [ - 6 - ], - "filter": [ - 4364 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_aggregate_bool_exp_min": { - "arguments": [ - 4381 - ], - "distinct": [ - 6 - ], - "filter": [ - 4364 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_aggregate_bool_exp_stddev_samp": { - "arguments": [ - 4382 - ], - "distinct": [ - 6 - ], - "filter": [ - 4364 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_aggregate_bool_exp_sum": { - "arguments": [ - 4383 - ], - "distinct": [ - 6 - ], - "filter": [ - 4364 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_aggregate_bool_exp_var_samp": { - "arguments": [ - 4384 - ], - "distinct": [ - 6 - ], - "filter": [ - 4364 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_aggregate_fields": { - "avg": [ - 4362 - ], - "count": [ - 41, - { - "columns": [ - 4376, - "[player_season_stats_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 4368 - ], - "min": [ - 4370 - ], - "stddev": [ - 4386 - ], - "stddev_pop": [ - 4388 - ], - "stddev_samp": [ - 4390 - ], - "sum": [ - 4394 - ], - "var_pop": [ - 4398 - ], - "var_samp": [ - 4400 - ], - "variance": [ - 4402 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_aggregate_order_by": { - "avg": [ - 4363 - ], - "count": [ - 3648 - ], - "max": [ - 4369 - ], - "min": [ - 4371 - ], - "stddev": [ - 4387 - ], - "stddev_pop": [ - 4389 - ], - "stddev_samp": [ - 4391 - ], - "sum": [ - 4395 - ], - "var_pop": [ - 4399 - ], - "var_samp": [ - 4401 - ], - "variance": [ - 4403 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_arr_rel_insert_input": { - "data": [ - 4367 - ], - "on_conflict": [ - 4373 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_avg_fields": { - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "headshot_percentage": [ - 32 - ], - "headshots": [ - 32 - ], - "kills": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_avg_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kills": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_bool_exp": { - "_and": [ - 4364 - ], - "_not": [ - 4364 - ], - "_or": [ - 4364 - ], - "assists": [ - 314 - ], - "deaths": [ - 314 - ], - "headshot_percentage": [ - 2094 - ], - "headshots": [ - 314 - ], - "kills": [ - 314 - ], - "player": [ - 4610 - ], - "player_steam_id": [ - 314 - ], - "season": [ - 4710 - ], - "season_id": [ - 6674 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_constraint": {}, - "player_season_stats_inc_input": { - "assists": [ - 312 - ], - "deaths": [ - 312 - ], - "headshot_percentage": [ - 2093 - ], - "headshots": [ - 312 - ], - "kills": [ - 312 - ], - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_insert_input": { - "assists": [ - 312 - ], - "deaths": [ - 312 - ], - "headshot_percentage": [ - 2093 - ], - "headshots": [ - 312 - ], - "kills": [ - 312 - ], - "player": [ - 4617 - ], - "player_steam_id": [ - 312 - ], - "season": [ - 4717 - ], - "season_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_max_fields": { - "assists": [ - 312 - ], - "deaths": [ - 312 - ], - "headshot_percentage": [ - 2093 - ], - "headshots": [ - 312 - ], - "kills": [ - 312 - ], - "player_steam_id": [ - 312 - ], - "season_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_max_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kills": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "season_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_min_fields": { - "assists": [ - 312 - ], - "deaths": [ - 312 - ], - "headshot_percentage": [ - 2093 - ], - "headshots": [ - 312 - ], - "kills": [ - 312 - ], - "player_steam_id": [ - 312 - ], - "season_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_min_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kills": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "season_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 4345 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_on_conflict": { - "constraint": [ - 4365 - ], - "update_columns": [ - 4396 - ], - "where": [ - 4364 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kills": [ - 3648 - ], - "player": [ - 4619 - ], - "player_steam_id": [ - 3648 - ], - "season": [ - 4719 - ], - "season_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_pk_columns_input": { - "player_steam_id": [ - 312 - ], - "season_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_select_column": {}, - "player_season_stats_select_column_player_season_stats_aggregate_bool_exp_avg_arguments_columns": {}, - "player_season_stats_select_column_player_season_stats_aggregate_bool_exp_corr_arguments_columns": {}, - "player_season_stats_select_column_player_season_stats_aggregate_bool_exp_covar_samp_arguments_columns": {}, - "player_season_stats_select_column_player_season_stats_aggregate_bool_exp_max_arguments_columns": {}, - "player_season_stats_select_column_player_season_stats_aggregate_bool_exp_min_arguments_columns": {}, - "player_season_stats_select_column_player_season_stats_aggregate_bool_exp_stddev_samp_arguments_columns": {}, - "player_season_stats_select_column_player_season_stats_aggregate_bool_exp_sum_arguments_columns": {}, - "player_season_stats_select_column_player_season_stats_aggregate_bool_exp_var_samp_arguments_columns": {}, - "player_season_stats_set_input": { - "assists": [ - 312 - ], - "deaths": [ - 312 - ], - "headshot_percentage": [ - 2093 - ], - "headshots": [ - 312 - ], - "kills": [ - 312 - ], - "player_steam_id": [ - 312 - ], - "season_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_stddev_fields": { - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "headshot_percentage": [ - 32 - ], - "headshots": [ - 32 - ], - "kills": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_stddev_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kills": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_stddev_pop_fields": { - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "headshot_percentage": [ - 32 - ], - "headshots": [ - 32 - ], - "kills": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_stddev_pop_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kills": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_stddev_samp_fields": { - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "headshot_percentage": [ - 32 - ], - "headshots": [ - 32 - ], - "kills": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_stddev_samp_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kills": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_stream_cursor_input": { - "initial_value": [ - 4393 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_stream_cursor_value_input": { - "assists": [ - 312 - ], - "deaths": [ - 312 - ], - "headshot_percentage": [ - 2093 - ], - "headshots": [ - 312 - ], - "kills": [ - 312 - ], - "player_steam_id": [ - 312 - ], - "season_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_sum_fields": { - "assists": [ - 312 - ], - "deaths": [ - 312 - ], - "headshot_percentage": [ - 2093 - ], - "headshots": [ - 312 - ], - "kills": [ - 312 - ], - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_sum_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kills": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_update_column": {}, - "player_season_stats_updates": { - "_inc": [ - 4366 - ], - "_set": [ - 4385 - ], - "where": [ - 4364 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_var_pop_fields": { - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "headshot_percentage": [ - 32 - ], - "headshots": [ - 32 - ], - "kills": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_var_pop_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kills": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_var_samp_fields": { - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "headshot_percentage": [ - 32 - ], - "headshots": [ - 32 - ], - "kills": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_var_samp_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kills": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_variance_fields": { - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "headshot_percentage": [ - 32 - ], - "headshots": [ - 32 - ], - "kills": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_season_stats_variance_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kills": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_stats": { - "assists": [ - 312 - ], - "deaths": [ - 312 - ], - "headshot_percentage": [ - 2093 - ], - "headshots": [ - 312 - ], - "kills": [ - 312 - ], - "player": [ - 4606 - ], - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "player_stats_aggregate": { - "aggregate": [ - 4406 - ], - "nodes": [ - 4404 - ], - "__typename": [ - 85 - ] - }, - "player_stats_aggregate_fields": { - "avg": [ - 4407 - ], - "count": [ - 41, - { - "columns": [ - 4419, - "[player_stats_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 4412 - ], - "min": [ - 4413 - ], - "stddev": [ - 4421 - ], - "stddev_pop": [ - 4422 - ], - "stddev_samp": [ - 4423 - ], - "sum": [ - 4426 - ], - "var_pop": [ - 4429 - ], - "var_samp": [ - 4430 - ], - "variance": [ - 4431 - ], - "__typename": [ - 85 - ] - }, - "player_stats_avg_fields": { - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "headshot_percentage": [ - 32 - ], - "headshots": [ - 32 - ], - "kills": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_stats_bool_exp": { - "_and": [ - 4408 - ], - "_not": [ - 4408 - ], - "_or": [ - 4408 - ], - "assists": [ - 314 - ], - "deaths": [ - 314 - ], - "headshot_percentage": [ - 2094 - ], - "headshots": [ - 314 - ], - "kills": [ - 314 - ], - "player": [ - 4610 - ], - "player_steam_id": [ - 314 - ], - "__typename": [ - 85 - ] - }, - "player_stats_constraint": {}, - "player_stats_inc_input": { - "assists": [ - 312 - ], - "deaths": [ - 312 - ], - "headshot_percentage": [ - 2093 - ], - "headshots": [ - 312 - ], - "kills": [ - 312 - ], - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "player_stats_insert_input": { - "assists": [ - 312 - ], - "deaths": [ - 312 - ], - "headshot_percentage": [ - 2093 - ], - "headshots": [ - 312 - ], - "kills": [ - 312 - ], - "player": [ - 4617 - ], - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "player_stats_max_fields": { - "assists": [ - 312 - ], - "deaths": [ - 312 - ], - "headshot_percentage": [ - 2093 - ], - "headshots": [ - 312 - ], - "kills": [ - 312 - ], - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "player_stats_min_fields": { - "assists": [ - 312 - ], - "deaths": [ - 312 - ], - "headshot_percentage": [ - 2093 - ], - "headshots": [ - 312 - ], - "kills": [ - 312 - ], - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "player_stats_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 4404 - ], - "__typename": [ - 85 - ] - }, - "player_stats_obj_rel_insert_input": { - "data": [ - 4411 - ], - "on_conflict": [ - 4416 - ], - "__typename": [ - 85 - ] - }, - "player_stats_on_conflict": { - "constraint": [ - 4409 - ], - "update_columns": [ - 4427 - ], - "where": [ - 4408 - ], - "__typename": [ - 85 - ] - }, - "player_stats_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kills": [ - 3648 - ], - "player": [ - 4619 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_stats_pk_columns_input": { - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "player_stats_select_column": {}, - "player_stats_set_input": { - "assists": [ - 312 - ], - "deaths": [ - 312 - ], - "headshot_percentage": [ - 2093 - ], - "headshots": [ - 312 - ], - "kills": [ - 312 - ], - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "player_stats_stddev_fields": { - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "headshot_percentage": [ - 32 - ], - "headshots": [ - 32 - ], - "kills": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_stats_stddev_pop_fields": { - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "headshot_percentage": [ - 32 - ], - "headshots": [ - 32 - ], - "kills": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_stats_stddev_samp_fields": { - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "headshot_percentage": [ - 32 - ], - "headshots": [ - 32 - ], - "kills": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_stats_stream_cursor_input": { - "initial_value": [ - 4425 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "player_stats_stream_cursor_value_input": { - "assists": [ - 312 - ], - "deaths": [ - 312 - ], - "headshot_percentage": [ - 2093 - ], - "headshots": [ - 312 - ], - "kills": [ - 312 - ], - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "player_stats_sum_fields": { - "assists": [ - 312 - ], - "deaths": [ - 312 - ], - "headshot_percentage": [ - 2093 - ], - "headshots": [ - 312 - ], - "kills": [ - 312 - ], - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "player_stats_update_column": {}, - "player_stats_updates": { - "_inc": [ - 4410 - ], - "_set": [ - 4420 - ], - "where": [ - 4408 - ], - "__typename": [ - 85 - ] - }, - "player_stats_var_pop_fields": { - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "headshot_percentage": [ - 32 - ], - "headshots": [ - 32 - ], - "kills": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_stats_var_samp_fields": { - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "headshot_percentage": [ - 32 - ], - "headshots": [ - 32 - ], - "kills": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_stats_variance_fields": { - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "headshot_percentage": [ - 32 - ], - "headshots": [ - 32 - ], - "kills": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_steam_bot_friend": { - "bot_steam_account_id": [ - 6672 - ], - "bot_steamid64": [ - 312 - ], - "created_at": [ - 5243 - ], - "friended_at": [ - 5243 - ], - "last_presence_state": [ - 2439, - { - "path": [ - 85 - ] - } - ], - "player": [ - 4606 - ], - "status": [ - 85 - ], - "steam_id": [ - 312 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "player_steam_bot_friend_aggregate": { - "aggregate": [ - 4434 - ], - "nodes": [ - 4432 - ], - "__typename": [ - 85 - ] - }, - "player_steam_bot_friend_aggregate_fields": { - "avg": [ - 4436 - ], - "count": [ - 41, - { - "columns": [ - 4451, - "[player_steam_bot_friend_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 4444 - ], - "min": [ - 4445 - ], - "stddev": [ - 4453 - ], - "stddev_pop": [ - 4454 - ], - "stddev_samp": [ - 4455 - ], - "sum": [ - 4458 - ], - "var_pop": [ - 4461 - ], - "var_samp": [ - 4462 - ], - "variance": [ - 4463 - ], - "__typename": [ - 85 - ] - }, - "player_steam_bot_friend_append_input": { - "last_presence_state": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "player_steam_bot_friend_avg_fields": { - "bot_steamid64": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_steam_bot_friend_bool_exp": { - "_and": [ - 4437 - ], - "_not": [ - 4437 - ], - "_or": [ - 4437 - ], - "bot_steam_account_id": [ - 6674 - ], - "bot_steamid64": [ - 314 - ], - "created_at": [ - 5244 - ], - "friended_at": [ - 5244 - ], - "last_presence_state": [ - 2441 - ], - "player": [ - 4610 - ], - "status": [ - 87 - ], - "steam_id": [ - 314 - ], - "updated_at": [ - 5244 - ], - "__typename": [ - 85 - ] - }, - "player_steam_bot_friend_constraint": {}, - "player_steam_bot_friend_delete_at_path_input": { - "last_presence_state": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "player_steam_bot_friend_delete_elem_input": { - "last_presence_state": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "player_steam_bot_friend_delete_key_input": { - "last_presence_state": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "player_steam_bot_friend_inc_input": { - "bot_steamid64": [ - 312 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "player_steam_bot_friend_insert_input": { - "bot_steam_account_id": [ - 6672 - ], - "bot_steamid64": [ - 312 - ], - "created_at": [ - 5243 - ], - "friended_at": [ - 5243 - ], - "last_presence_state": [ - 2439 - ], - "player": [ - 4617 - ], - "status": [ - 85 - ], - "steam_id": [ - 312 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "player_steam_bot_friend_max_fields": { - "bot_steam_account_id": [ - 6672 - ], - "bot_steamid64": [ - 312 - ], - "created_at": [ - 5243 - ], - "friended_at": [ - 5243 - ], - "status": [ - 85 - ], - "steam_id": [ - 312 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "player_steam_bot_friend_min_fields": { - "bot_steam_account_id": [ - 6672 - ], - "bot_steamid64": [ - 312 - ], - "created_at": [ - 5243 - ], - "friended_at": [ - 5243 - ], - "status": [ - 85 - ], - "steam_id": [ - 312 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "player_steam_bot_friend_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 4432 - ], - "__typename": [ - 85 - ] - }, - "player_steam_bot_friend_on_conflict": { - "constraint": [ - 4438 - ], - "update_columns": [ - 4459 - ], - "where": [ - 4437 - ], - "__typename": [ - 85 - ] - }, - "player_steam_bot_friend_order_by": { - "bot_steam_account_id": [ - 3648 - ], - "bot_steamid64": [ - 3648 - ], - "created_at": [ - 3648 - ], - "friended_at": [ - 3648 - ], - "last_presence_state": [ - 3648 - ], - "player": [ - 4619 - ], - "status": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "updated_at": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_steam_bot_friend_pk_columns_input": { - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "player_steam_bot_friend_prepend_input": { - "last_presence_state": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "player_steam_bot_friend_select_column": {}, - "player_steam_bot_friend_set_input": { - "bot_steam_account_id": [ - 6672 - ], - "bot_steamid64": [ - 312 - ], - "created_at": [ - 5243 - ], - "friended_at": [ - 5243 - ], - "last_presence_state": [ - 2439 - ], - "status": [ - 85 - ], - "steam_id": [ - 312 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "player_steam_bot_friend_stddev_fields": { - "bot_steamid64": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_steam_bot_friend_stddev_pop_fields": { - "bot_steamid64": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_steam_bot_friend_stddev_samp_fields": { - "bot_steamid64": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_steam_bot_friend_stream_cursor_input": { - "initial_value": [ - 4457 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "player_steam_bot_friend_stream_cursor_value_input": { - "bot_steam_account_id": [ - 6672 - ], - "bot_steamid64": [ - 312 - ], - "created_at": [ - 5243 - ], - "friended_at": [ - 5243 - ], - "last_presence_state": [ - 2439 - ], - "status": [ - 85 - ], - "steam_id": [ - 312 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "player_steam_bot_friend_sum_fields": { - "bot_steamid64": [ - 312 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "player_steam_bot_friend_update_column": {}, - "player_steam_bot_friend_updates": { - "_append": [ - 4435 - ], - "_delete_at_path": [ - 4439 - ], - "_delete_elem": [ - 4440 - ], - "_delete_key": [ - 4441 - ], - "_inc": [ - 4442 - ], - "_prepend": [ - 4450 - ], - "_set": [ - 4452 - ], - "where": [ - 4437 - ], - "__typename": [ - 85 - ] - }, - "player_steam_bot_friend_var_pop_fields": { - "bot_steamid64": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_steam_bot_friend_var_samp_fields": { - "bot_steamid64": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_steam_bot_friend_variance_fields": { - "bot_steamid64": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_steam_match_auth": { - "auth_code": [ - 85 - ], - "created_at": [ - 5243 - ], - "last_error": [ - 85 - ], - "last_known_share_code": [ - 85 - ], - "last_polled_at": [ - 5243 - ], - "player": [ - 4606 - ], - "steam_id": [ - 312 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "player_steam_match_auth_aggregate": { - "aggregate": [ - 4466 - ], - "nodes": [ - 4464 - ], - "__typename": [ - 85 - ] - }, - "player_steam_match_auth_aggregate_fields": { - "avg": [ - 4467 - ], - "count": [ - 41, - { - "columns": [ - 4478, - "[player_steam_match_auth_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 4472 - ], - "min": [ - 4473 - ], - "stddev": [ - 4480 - ], - "stddev_pop": [ - 4481 - ], - "stddev_samp": [ - 4482 - ], - "sum": [ - 4485 - ], - "var_pop": [ - 4488 - ], - "var_samp": [ - 4489 - ], - "variance": [ - 4490 - ], - "__typename": [ - 85 - ] - }, - "player_steam_match_auth_avg_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_steam_match_auth_bool_exp": { - "_and": [ - 4468 - ], - "_not": [ - 4468 - ], - "_or": [ - 4468 - ], - "auth_code": [ - 87 - ], - "created_at": [ - 5244 - ], - "last_error": [ - 87 - ], - "last_known_share_code": [ - 87 - ], - "last_polled_at": [ - 5244 - ], - "player": [ - 4610 - ], - "steam_id": [ - 314 - ], - "updated_at": [ - 5244 - ], - "__typename": [ - 85 - ] - }, - "player_steam_match_auth_constraint": {}, - "player_steam_match_auth_inc_input": { - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "player_steam_match_auth_insert_input": { - "auth_code": [ - 85 - ], - "created_at": [ - 5243 - ], - "last_error": [ - 85 - ], - "last_known_share_code": [ - 85 - ], - "last_polled_at": [ - 5243 - ], - "player": [ - 4617 - ], - "steam_id": [ - 312 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "player_steam_match_auth_max_fields": { - "auth_code": [ - 85 - ], - "created_at": [ - 5243 - ], - "last_error": [ - 85 - ], - "last_known_share_code": [ - 85 - ], - "last_polled_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "player_steam_match_auth_min_fields": { - "auth_code": [ - 85 - ], - "created_at": [ - 5243 - ], - "last_error": [ - 85 - ], - "last_known_share_code": [ - 85 - ], - "last_polled_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "player_steam_match_auth_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 4464 - ], - "__typename": [ - 85 - ] - }, - "player_steam_match_auth_on_conflict": { - "constraint": [ - 4469 - ], - "update_columns": [ - 4486 - ], - "where": [ - 4468 - ], - "__typename": [ - 85 - ] - }, - "player_steam_match_auth_order_by": { - "auth_code": [ - 3648 - ], - "created_at": [ - 3648 - ], - "last_error": [ - 3648 - ], - "last_known_share_code": [ - 3648 - ], - "last_polled_at": [ - 3648 - ], - "player": [ - 4619 - ], - "steam_id": [ - 3648 - ], - "updated_at": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_steam_match_auth_pk_columns_input": { - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "player_steam_match_auth_select_column": {}, - "player_steam_match_auth_set_input": { - "auth_code": [ - 85 - ], - "created_at": [ - 5243 - ], - "last_error": [ - 85 - ], - "last_known_share_code": [ - 85 - ], - "last_polled_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "player_steam_match_auth_stddev_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_steam_match_auth_stddev_pop_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_steam_match_auth_stddev_samp_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_steam_match_auth_stream_cursor_input": { - "initial_value": [ - 4484 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "player_steam_match_auth_stream_cursor_value_input": { - "auth_code": [ - 85 - ], - "created_at": [ - 5243 - ], - "last_error": [ - 85 - ], - "last_known_share_code": [ - 85 - ], - "last_polled_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "player_steam_match_auth_sum_fields": { - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "player_steam_match_auth_update_column": {}, - "player_steam_match_auth_updates": { - "_inc": [ - 4470 - ], - "_set": [ - 4479 - ], - "where": [ - 4468 - ], - "__typename": [ - 85 - ] - }, - "player_steam_match_auth_var_pop_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_steam_match_auth_var_samp_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_steam_match_auth_variance_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_unused_utility": { - "deleted_at": [ - 5243 - ], - "match": [ - 3432 - ], - "match_id": [ - 6672 - ], - "match_map": [ - 3248 - ], - "match_map_id": [ - 6672 - ], - "player": [ - 4606 - ], - "player_steam_id": [ - 312 - ], - "round": [ - 41 - ], - "unused": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "player_unused_utility_aggregate": { - "aggregate": [ - 4495 - ], - "nodes": [ - 4491 - ], - "__typename": [ - 85 - ] - }, - "player_unused_utility_aggregate_bool_exp": { - "count": [ - 4494 - ], - "__typename": [ - 85 - ] - }, - "player_unused_utility_aggregate_bool_exp_count": { - "arguments": [ - 4512 - ], - "distinct": [ - 6 - ], - "filter": [ - 4500 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "player_unused_utility_aggregate_fields": { - "avg": [ - 4498 - ], - "count": [ - 41, - { - "columns": [ - 4512, - "[player_unused_utility_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 4504 - ], - "min": [ - 4506 - ], - "stddev": [ - 4514 - ], - "stddev_pop": [ - 4516 - ], - "stddev_samp": [ - 4518 - ], - "sum": [ - 4522 - ], - "var_pop": [ - 4526 - ], - "var_samp": [ - 4528 - ], - "variance": [ - 4530 - ], - "__typename": [ - 85 - ] - }, - "player_unused_utility_aggregate_order_by": { - "avg": [ - 4499 - ], - "count": [ - 3648 - ], - "max": [ - 4505 - ], - "min": [ - 4507 - ], - "stddev": [ - 4515 - ], - "stddev_pop": [ - 4517 - ], - "stddev_samp": [ - 4519 - ], - "sum": [ - 4523 - ], - "var_pop": [ - 4527 - ], - "var_samp": [ - 4529 - ], - "variance": [ - 4531 - ], - "__typename": [ - 85 - ] - }, - "player_unused_utility_arr_rel_insert_input": { - "data": [ - 4503 - ], - "on_conflict": [ - 4509 - ], - "__typename": [ - 85 - ] - }, - "player_unused_utility_avg_fields": { - "player_steam_id": [ - 32 - ], - "round": [ - 32 - ], - "unused": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_unused_utility_avg_order_by": { - "player_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "unused": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_unused_utility_bool_exp": { - "_and": [ - 4500 - ], - "_not": [ - 4500 - ], - "_or": [ - 4500 - ], - "deleted_at": [ - 5244 - ], - "match": [ - 3443 - ], - "match_id": [ - 6674 - ], - "match_map": [ - 3257 - ], - "match_map_id": [ - 6674 - ], - "player": [ - 4610 - ], - "player_steam_id": [ - 314 - ], - "round": [ - 42 - ], - "unused": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "player_unused_utility_constraint": {}, - "player_unused_utility_inc_input": { - "player_steam_id": [ - 312 - ], - "round": [ - 41 - ], - "unused": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "player_unused_utility_insert_input": { - "deleted_at": [ - 5243 - ], - "match": [ - 3452 - ], - "match_id": [ - 6672 - ], - "match_map": [ - 3266 - ], - "match_map_id": [ - 6672 - ], - "player": [ - 4617 - ], - "player_steam_id": [ - 312 - ], - "round": [ - 41 - ], - "unused": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "player_unused_utility_max_fields": { - "deleted_at": [ - 5243 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "player_steam_id": [ - 312 - ], - "round": [ - 41 - ], - "unused": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "player_unused_utility_max_order_by": { - "deleted_at": [ - 3648 - ], - "match_id": [ - 3648 - ], - "match_map_id": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "unused": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_unused_utility_min_fields": { - "deleted_at": [ - 5243 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "player_steam_id": [ - 312 - ], - "round": [ - 41 - ], - "unused": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "player_unused_utility_min_order_by": { - "deleted_at": [ - 3648 - ], - "match_id": [ - 3648 - ], - "match_map_id": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "unused": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_unused_utility_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 4491 - ], - "__typename": [ - 85 - ] - }, - "player_unused_utility_on_conflict": { - "constraint": [ - 4501 - ], - "update_columns": [ - 4524 - ], - "where": [ - 4500 - ], - "__typename": [ - 85 - ] - }, - "player_unused_utility_order_by": { - "deleted_at": [ - 3648 - ], - "match": [ - 3454 - ], - "match_id": [ - 3648 - ], - "match_map": [ - 3268 - ], - "match_map_id": [ - 3648 - ], - "player": [ - 4619 - ], - "player_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "unused": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_unused_utility_pk_columns_input": { - "match_map_id": [ - 6672 - ], - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "player_unused_utility_select_column": {}, - "player_unused_utility_set_input": { - "deleted_at": [ - 5243 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "player_steam_id": [ - 312 - ], - "round": [ - 41 - ], - "unused": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "player_unused_utility_stddev_fields": { - "player_steam_id": [ - 32 - ], - "round": [ - 32 - ], - "unused": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_unused_utility_stddev_order_by": { - "player_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "unused": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_unused_utility_stddev_pop_fields": { - "player_steam_id": [ - 32 - ], - "round": [ - 32 - ], - "unused": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_unused_utility_stddev_pop_order_by": { - "player_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "unused": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_unused_utility_stddev_samp_fields": { - "player_steam_id": [ - 32 - ], - "round": [ - 32 - ], - "unused": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_unused_utility_stddev_samp_order_by": { - "player_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "unused": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_unused_utility_stream_cursor_input": { - "initial_value": [ - 4521 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "player_unused_utility_stream_cursor_value_input": { - "deleted_at": [ - 5243 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "player_steam_id": [ - 312 - ], - "round": [ - 41 - ], - "unused": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "player_unused_utility_sum_fields": { - "player_steam_id": [ - 312 - ], - "round": [ - 41 - ], - "unused": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "player_unused_utility_sum_order_by": { - "player_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "unused": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_unused_utility_update_column": {}, - "player_unused_utility_updates": { - "_inc": [ - 4502 - ], - "_set": [ - 4513 - ], - "where": [ - 4500 - ], - "__typename": [ - 85 - ] - }, - "player_unused_utility_var_pop_fields": { - "player_steam_id": [ - 32 - ], - "round": [ - 32 - ], - "unused": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_unused_utility_var_pop_order_by": { - "player_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "unused": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_unused_utility_var_samp_fields": { - "player_steam_id": [ - 32 - ], - "round": [ - 32 - ], - "unused": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_unused_utility_var_samp_order_by": { - "player_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "unused": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_unused_utility_variance_fields": { - "player_steam_id": [ - 32 - ], - "round": [ - 32 - ], - "unused": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_unused_utility_variance_order_by": { - "player_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "unused": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_utility": { - "attacker_location_coordinates": [ - 85 - ], - "attacker_steam_id": [ - 312 - ], - "deleted_at": [ - 5243 - ], - "match": [ - 3432 - ], - "match_id": [ - 6672 - ], - "match_map": [ - 3248 - ], - "match_map_id": [ - 6672 - ], - "player": [ - 4606 - ], - "round": [ - 41 - ], - "time": [ - 5243 - ], - "type": [ - 1759 - ], - "__typename": [ - 85 - ] - }, - "player_utility_aggregate": { - "aggregate": [ - 4536 - ], - "nodes": [ - 4532 - ], - "__typename": [ - 85 - ] - }, - "player_utility_aggregate_bool_exp": { - "count": [ - 4535 - ], - "__typename": [ - 85 - ] - }, - "player_utility_aggregate_bool_exp_count": { - "arguments": [ - 4553 - ], - "distinct": [ - 6 - ], - "filter": [ - 4541 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "player_utility_aggregate_fields": { - "avg": [ - 4539 - ], - "count": [ - 41, - { - "columns": [ - 4553, - "[player_utility_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 4545 - ], - "min": [ - 4547 - ], - "stddev": [ - 4555 - ], - "stddev_pop": [ - 4557 - ], - "stddev_samp": [ - 4559 - ], - "sum": [ - 4563 - ], - "var_pop": [ - 4567 - ], - "var_samp": [ - 4569 - ], - "variance": [ - 4571 - ], - "__typename": [ - 85 - ] - }, - "player_utility_aggregate_order_by": { - "avg": [ - 4540 - ], - "count": [ - 3648 - ], - "max": [ - 4546 - ], - "min": [ - 4548 - ], - "stddev": [ - 4556 - ], - "stddev_pop": [ - 4558 - ], - "stddev_samp": [ - 4560 - ], - "sum": [ - 4564 - ], - "var_pop": [ - 4568 - ], - "var_samp": [ - 4570 - ], - "variance": [ - 4572 - ], - "__typename": [ - 85 - ] - }, - "player_utility_arr_rel_insert_input": { - "data": [ - 4544 - ], - "on_conflict": [ - 4550 - ], - "__typename": [ - 85 - ] - }, - "player_utility_avg_fields": { - "attacker_steam_id": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_utility_avg_order_by": { - "attacker_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_utility_bool_exp": { - "_and": [ - 4541 - ], - "_not": [ - 4541 - ], - "_or": [ - 4541 - ], - "attacker_location_coordinates": [ - 87 - ], - "attacker_steam_id": [ - 314 - ], - "deleted_at": [ - 5244 - ], - "match": [ - 3443 - ], - "match_id": [ - 6674 - ], - "match_map": [ - 3257 - ], - "match_map_id": [ - 6674 - ], - "player": [ - 4610 - ], - "round": [ - 42 - ], - "time": [ - 5244 - ], - "type": [ - 1760 - ], - "__typename": [ - 85 - ] - }, - "player_utility_constraint": {}, - "player_utility_inc_input": { - "attacker_steam_id": [ - 312 - ], - "round": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "player_utility_insert_input": { - "attacker_location_coordinates": [ - 85 - ], - "attacker_steam_id": [ - 312 - ], - "deleted_at": [ - 5243 - ], - "match": [ - 3452 - ], - "match_id": [ - 6672 - ], - "match_map": [ - 3266 - ], - "match_map_id": [ - 6672 - ], - "player": [ - 4617 - ], - "round": [ - 41 - ], - "time": [ - 5243 - ], - "type": [ - 1759 - ], - "__typename": [ - 85 - ] - }, - "player_utility_max_fields": { - "attacker_location_coordinates": [ - 85 - ], - "attacker_steam_id": [ - 312 - ], - "deleted_at": [ - 5243 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "round": [ - 41 - ], - "time": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "player_utility_max_order_by": { - "attacker_location_coordinates": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "deleted_at": [ - 3648 - ], - "match_id": [ - 3648 - ], - "match_map_id": [ - 3648 - ], - "round": [ - 3648 - ], - "time": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_utility_min_fields": { - "attacker_location_coordinates": [ - 85 - ], - "attacker_steam_id": [ - 312 - ], - "deleted_at": [ - 5243 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "round": [ - 41 - ], - "time": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "player_utility_min_order_by": { - "attacker_location_coordinates": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "deleted_at": [ - 3648 - ], - "match_id": [ - 3648 - ], - "match_map_id": [ - 3648 - ], - "round": [ - 3648 - ], - "time": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_utility_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 4532 - ], - "__typename": [ - 85 - ] - }, - "player_utility_on_conflict": { - "constraint": [ - 4542 - ], - "update_columns": [ - 4565 - ], - "where": [ - 4541 - ], - "__typename": [ - 85 - ] - }, - "player_utility_order_by": { - "attacker_location_coordinates": [ - 3648 - ], - "attacker_steam_id": [ - 3648 - ], - "deleted_at": [ - 3648 - ], - "match": [ - 3454 - ], - "match_id": [ - 3648 - ], - "match_map": [ - 3268 - ], - "match_map_id": [ - 3648 - ], - "player": [ - 4619 - ], - "round": [ - 3648 - ], - "time": [ - 3648 - ], - "type": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_utility_pk_columns_input": { - "attacker_steam_id": [ - 312 - ], - "match_map_id": [ - 6672 - ], - "time": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "player_utility_select_column": {}, - "player_utility_set_input": { - "attacker_location_coordinates": [ - 85 - ], - "attacker_steam_id": [ - 312 - ], - "deleted_at": [ - 5243 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "round": [ - 41 - ], - "time": [ - 5243 - ], - "type": [ - 1759 - ], - "__typename": [ - 85 - ] - }, - "player_utility_stddev_fields": { - "attacker_steam_id": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_utility_stddev_order_by": { - "attacker_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_utility_stddev_pop_fields": { - "attacker_steam_id": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_utility_stddev_pop_order_by": { - "attacker_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_utility_stddev_samp_fields": { - "attacker_steam_id": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_utility_stddev_samp_order_by": { - "attacker_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_utility_stream_cursor_input": { - "initial_value": [ - 4562 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "player_utility_stream_cursor_value_input": { - "attacker_location_coordinates": [ - 85 - ], - "attacker_steam_id": [ - 312 - ], - "deleted_at": [ - 5243 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "round": [ - 41 - ], - "time": [ - 5243 - ], - "type": [ - 1759 - ], - "__typename": [ - 85 - ] - }, - "player_utility_sum_fields": { - "attacker_steam_id": [ - 312 - ], - "round": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "player_utility_sum_order_by": { - "attacker_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_utility_update_column": {}, - "player_utility_updates": { - "_inc": [ - 4543 - ], - "_set": [ - 4554 - ], - "where": [ - 4541 - ], - "__typename": [ - 85 - ] - }, - "player_utility_var_pop_fields": { - "attacker_steam_id": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_utility_var_pop_order_by": { - "attacker_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_utility_var_samp_fields": { - "attacker_steam_id": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_utility_var_samp_order_by": { - "attacker_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_utility_variance_fields": { - "attacker_steam_id": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_utility_variance_order_by": { - "attacker_steam_id": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_weapon_stats_v": { - "first_bullet_hits": [ - 41 - ], - "first_bullet_shots": [ - 41 - ], - "hits": [ - 41 - ], - "hits_spotted": [ - 41 - ], - "match_id": [ - 6672 - ], - "shots": [ - 41 - ], - "shots_spotted": [ - 41 - ], - "steam_id": [ - 312 - ], - "weapon_class": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "player_weapon_stats_v_aggregate": { - "aggregate": [ - 4577 - ], - "nodes": [ - 4573 - ], - "__typename": [ - 85 - ] - }, - "player_weapon_stats_v_aggregate_bool_exp": { - "count": [ - 4576 - ], - "__typename": [ - 85 - ] - }, - "player_weapon_stats_v_aggregate_bool_exp_count": { - "arguments": [ - 4589 - ], - "distinct": [ - 6 - ], - "filter": [ - 4582 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "player_weapon_stats_v_aggregate_fields": { - "avg": [ - 4580 - ], - "count": [ - 41, - { - "columns": [ - 4589, - "[player_weapon_stats_v_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 4584 - ], - "min": [ - 4586 - ], - "stddev": [ - 4590 - ], - "stddev_pop": [ - 4592 - ], - "stddev_samp": [ - 4594 - ], - "sum": [ - 4598 - ], - "var_pop": [ - 4600 - ], - "var_samp": [ - 4602 - ], - "variance": [ - 4604 - ], - "__typename": [ - 85 - ] - }, - "player_weapon_stats_v_aggregate_order_by": { - "avg": [ - 4581 - ], - "count": [ - 3648 - ], - "max": [ - 4585 - ], - "min": [ - 4587 - ], - "stddev": [ - 4591 - ], - "stddev_pop": [ - 4593 - ], - "stddev_samp": [ - 4595 - ], - "sum": [ - 4599 - ], - "var_pop": [ - 4601 - ], - "var_samp": [ - 4603 - ], - "variance": [ - 4605 - ], - "__typename": [ - 85 - ] - }, - "player_weapon_stats_v_arr_rel_insert_input": { - "data": [ - 4583 - ], - "__typename": [ - 85 - ] - }, - "player_weapon_stats_v_avg_fields": { - "first_bullet_hits": [ - 32 - ], - "first_bullet_shots": [ - 32 - ], - "hits": [ - 32 - ], - "hits_spotted": [ - 32 - ], - "shots": [ - 32 - ], - "shots_spotted": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_weapon_stats_v_avg_order_by": { - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_spotted": [ - 3648 - ], - "shots": [ - 3648 - ], - "shots_spotted": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_weapon_stats_v_bool_exp": { - "_and": [ - 4582 - ], - "_not": [ - 4582 - ], - "_or": [ - 4582 - ], - "first_bullet_hits": [ - 42 - ], - "first_bullet_shots": [ - 42 - ], - "hits": [ - 42 - ], - "hits_spotted": [ - 42 - ], - "match_id": [ - 6674 - ], - "shots": [ - 42 - ], - "shots_spotted": [ - 42 - ], - "steam_id": [ - 314 - ], - "weapon_class": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "player_weapon_stats_v_insert_input": { - "first_bullet_hits": [ - 41 - ], - "first_bullet_shots": [ - 41 - ], - "hits": [ - 41 - ], - "hits_spotted": [ - 41 - ], - "match_id": [ - 6672 - ], - "shots": [ - 41 - ], - "shots_spotted": [ - 41 - ], - "steam_id": [ - 312 - ], - "weapon_class": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "player_weapon_stats_v_max_fields": { - "first_bullet_hits": [ - 41 - ], - "first_bullet_shots": [ - 41 - ], - "hits": [ - 41 - ], - "hits_spotted": [ - 41 - ], - "match_id": [ - 6672 - ], - "shots": [ - 41 - ], - "shots_spotted": [ - 41 - ], - "steam_id": [ - 312 - ], - "weapon_class": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "player_weapon_stats_v_max_order_by": { - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_spotted": [ - 3648 - ], - "match_id": [ - 3648 - ], - "shots": [ - 3648 - ], - "shots_spotted": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "weapon_class": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_weapon_stats_v_min_fields": { - "first_bullet_hits": [ - 41 - ], - "first_bullet_shots": [ - 41 - ], - "hits": [ - 41 - ], - "hits_spotted": [ - 41 - ], - "match_id": [ - 6672 - ], - "shots": [ - 41 - ], - "shots_spotted": [ - 41 - ], - "steam_id": [ - 312 - ], - "weapon_class": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "player_weapon_stats_v_min_order_by": { - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_spotted": [ - 3648 - ], - "match_id": [ - 3648 - ], - "shots": [ - 3648 - ], - "shots_spotted": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "weapon_class": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_weapon_stats_v_order_by": { - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_spotted": [ - 3648 - ], - "match_id": [ - 3648 - ], - "shots": [ - 3648 - ], - "shots_spotted": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "weapon_class": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_weapon_stats_v_select_column": {}, - "player_weapon_stats_v_stddev_fields": { - "first_bullet_hits": [ - 32 - ], - "first_bullet_shots": [ - 32 - ], - "hits": [ - 32 - ], - "hits_spotted": [ - 32 - ], - "shots": [ - 32 - ], - "shots_spotted": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_weapon_stats_v_stddev_order_by": { - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_spotted": [ - 3648 - ], - "shots": [ - 3648 - ], - "shots_spotted": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_weapon_stats_v_stddev_pop_fields": { - "first_bullet_hits": [ - 32 - ], - "first_bullet_shots": [ - 32 - ], - "hits": [ - 32 - ], - "hits_spotted": [ - 32 - ], - "shots": [ - 32 - ], - "shots_spotted": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_weapon_stats_v_stddev_pop_order_by": { - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_spotted": [ - 3648 - ], - "shots": [ - 3648 - ], - "shots_spotted": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_weapon_stats_v_stddev_samp_fields": { - "first_bullet_hits": [ - 32 - ], - "first_bullet_shots": [ - 32 - ], - "hits": [ - 32 - ], - "hits_spotted": [ - 32 - ], - "shots": [ - 32 - ], - "shots_spotted": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_weapon_stats_v_stddev_samp_order_by": { - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_spotted": [ - 3648 - ], - "shots": [ - 3648 - ], - "shots_spotted": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_weapon_stats_v_stream_cursor_input": { - "initial_value": [ - 4597 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "player_weapon_stats_v_stream_cursor_value_input": { - "first_bullet_hits": [ - 41 - ], - "first_bullet_shots": [ - 41 - ], - "hits": [ - 41 - ], - "hits_spotted": [ - 41 - ], - "match_id": [ - 6672 - ], - "shots": [ - 41 - ], - "shots_spotted": [ - 41 - ], - "steam_id": [ - 312 - ], - "weapon_class": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "player_weapon_stats_v_sum_fields": { - "first_bullet_hits": [ - 41 - ], - "first_bullet_shots": [ - 41 - ], - "hits": [ - 41 - ], - "hits_spotted": [ - 41 - ], - "shots": [ - 41 - ], - "shots_spotted": [ - 41 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "player_weapon_stats_v_sum_order_by": { - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_spotted": [ - 3648 - ], - "shots": [ - 3648 - ], - "shots_spotted": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_weapon_stats_v_var_pop_fields": { - "first_bullet_hits": [ - 32 - ], - "first_bullet_shots": [ - 32 - ], - "hits": [ - 32 - ], - "hits_spotted": [ - 32 - ], - "shots": [ - 32 - ], - "shots_spotted": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_weapon_stats_v_var_pop_order_by": { - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_spotted": [ - 3648 - ], - "shots": [ - 3648 - ], - "shots_spotted": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_weapon_stats_v_var_samp_fields": { - "first_bullet_hits": [ - 32 - ], - "first_bullet_shots": [ - 32 - ], - "hits": [ - 32 - ], - "hits_spotted": [ - 32 - ], - "shots": [ - 32 - ], - "shots_spotted": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_weapon_stats_v_var_samp_order_by": { - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_spotted": [ - 3648 - ], - "shots": [ - 3648 - ], - "shots_spotted": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "player_weapon_stats_v_variance_fields": { - "first_bullet_hits": [ - 32 - ], - "first_bullet_shots": [ - 32 - ], - "hits": [ - 32 - ], - "hits_spotted": [ - 32 - ], - "shots": [ - 32 - ], - "shots_spotted": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "player_weapon_stats_v_variance_order_by": { - "first_bullet_hits": [ - 3648 - ], - "first_bullet_shots": [ - 3648 - ], - "hits": [ - 3648 - ], - "hits_spotted": [ - 3648 - ], - "shots": [ - 3648 - ], - "shots_spotted": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "players": { - "abandoned_matches": [ - 174, - { - "distinct_on": [ - 195, - "[abandoned_matches_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 193, - "[abandoned_matches_order_by!]" - ], - "where": [ - 183 - ] - } - ], - "abandoned_matches_aggregate": [ - 175, - { - "distinct_on": [ - 195, - "[abandoned_matches_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 193, - "[abandoned_matches_order_by!]" - ], - "where": [ - 183 - ] - } - ], - "aim_weapon_stats": [ - 3745, - { - "distinct_on": [ - 3766, - "[player_aim_weapon_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3764, - "[player_aim_weapon_stats_order_by!]" - ], - "where": [ - 3754 - ] - } - ], - "aim_weapon_stats_aggregate": [ - 3746, - { - "distinct_on": [ - 3766, - "[player_aim_weapon_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3764, - "[player_aim_weapon_stats_order_by!]" - ], - "where": [ - 3754 - ] - } - ], - "assists": [ - 3786, - { - "distinct_on": [ - 3809, - "[player_assists_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3807, - "[player_assists_order_by!]" - ], - "where": [ - 3797 - ] - } - ], - "assists_aggregate": [ - 3787, - { - "distinct_on": [ - 3809, - "[player_assists_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3807, - "[player_assists_order_by!]" - ], - "where": [ - 3797 - ] - } - ], - "assited_by_players": [ - 3786, - { - "distinct_on": [ - 3809, - "[player_assists_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3807, - "[player_assists_order_by!]" - ], - "where": [ - 3797 - ] - } - ], - "assited_by_players_aggregate": [ - 3787, - { - "distinct_on": [ - 3809, - "[player_assists_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3807, - "[player_assists_order_by!]" - ], - "where": [ - 3797 - ] - } - ], - "avatar_url": [ - 85 - ], - "awards": [ - 243, - { - "distinct_on": [ - 264, - "[award_recipients_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 262, - "[award_recipients_order_by!]" - ], - "where": [ - 252 - ] - } - ], - "awards_aggregate": [ - 244, - { - "distinct_on": [ - 264, - "[award_recipients_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 262, - "[award_recipients_order_by!]" - ], - "where": [ - 252 - ] - } - ], - "banned_until": [ - 5243 - ], - "coach_lineups": [ - 3086, - { - "distinct_on": [ - 3108, - "[match_lineups_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3106, - "[match_lineups_order_by!]" - ], - "where": [ - 3095 - ] - } - ], - "coach_lineups_aggregate": [ - 3087, - { - "distinct_on": [ - 3108, - "[match_lineups_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3106, - "[match_lineups_order_by!]" - ], - "where": [ - 3095 - ] - } - ], - "country": [ - 85 - ], - "created_at": [ - 5243 - ], - "current_lobby_id": [ - 6672 - ], - "custom_avatar_url": [ - 85 - ], - "damage_dealt": [ - 3849, - { - "distinct_on": [ - 3870, - "[player_damages_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3868, - "[player_damages_order_by!]" - ], - "where": [ - 3858 - ] - } - ], - "damage_dealt_aggregate": [ - 3850, - { - "distinct_on": [ - 3870, - "[player_damages_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3868, - "[player_damages_order_by!]" - ], - "where": [ - 3858 - ] - } - ], - "damage_taken": [ - 3849, - { - "distinct_on": [ - 3870, - "[player_damages_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3868, - "[player_damages_order_by!]" - ], - "where": [ - 3858 - ] - } - ], - "damage_taken_aggregate": [ - 3850, - { - "distinct_on": [ - 3870, - "[player_damages_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3868, - "[player_damages_order_by!]" - ], - "where": [ - 3858 - ] - } - ], - "days_since_last_ban": [ - 41 - ], - "deaths": [ - 4003, - { - "distinct_on": [ - 4067, - "[player_kills_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4065, - "[player_kills_order_by!]" - ], - "where": [ - 4014 - ] - } - ], - "deaths_aggregate": [ - 4004, - { - "distinct_on": [ - 4067, - "[player_kills_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4065, - "[player_kills_order_by!]" - ], - "where": [ - 4014 - ] - } - ], - "discord_id": [ - 85 - ], - "draft_game_players": [ - 554, - { - "distinct_on": [ - 577, - "[draft_game_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 575, - "[draft_game_players_order_by!]" - ], - "where": [ - 565 - ] - } - ], - "draft_game_players_aggregate": [ - 555, - { - "distinct_on": [ - 577, - "[draft_game_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 575, - "[draft_game_players_order_by!]" - ], - "where": [ - 565 - ] - } - ], - "elo": [ - 2439, - { - "path": [ - 85 - ] - } - ], - "elo_history": [ - 7049, - { - "distinct_on": [ - 7075, - "[v_player_elo_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7074, - "[v_player_elo_order_by!]" - ], - "where": [ - 7068 - ] - } - ], - "elo_history_aggregate": [ - 7050, - { - "distinct_on": [ - 7075, - "[v_player_elo_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7074, - "[v_player_elo_order_by!]" - ], - "where": [ - 7068 - ] - } - ], - "faceit_elo": [ - 41 - ], - "faceit_nickname": [ - 85 - ], - "faceit_player_id": [ - 85 - ], - "faceit_rank_history": [ - 3917, - { - "distinct_on": [ - 3938, - "[player_faceit_rank_history_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3936, - "[player_faceit_rank_history_order_by!]" - ], - "where": [ - 3926 - ] - } - ], - "faceit_rank_history_aggregate": [ - 3918, - { - "distinct_on": [ - 3938, - "[player_faceit_rank_history_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3936, - "[player_faceit_rank_history_order_by!]" - ], - "where": [ - 3926 - ] - } - ], - "faceit_skill_level": [ - 41 - ], - "faceit_updated_at": [ - 5243 - ], - "faceit_url": [ - 85 - ], - "flashed_by_players": [ - 3958, - { - "distinct_on": [ - 3981, - "[player_flashes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3979, - "[player_flashes_order_by!]" - ], - "where": [ - 3969 - ] - } - ], - "flashed_by_players_aggregate": [ - 3959, - { - "distinct_on": [ - 3981, - "[player_flashes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3979, - "[player_flashes_order_by!]" - ], - "where": [ - 3969 - ] - } - ], - "flashed_players": [ - 3958, - { - "distinct_on": [ - 3981, - "[player_flashes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3979, - "[player_flashes_order_by!]" - ], - "where": [ - 3969 - ] - } - ], - "flashed_players_aggregate": [ - 3959, - { - "distinct_on": [ - 3981, - "[player_flashes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3979, - "[player_flashes_order_by!]" - ], - "where": [ - 3969 - ] - } - ], - "friends": [ - 3496, - { - "distinct_on": [ - 3521, - "[my_friends_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3519, - "[my_friends_order_by!]" - ], - "where": [ - 3508 - ] - } - ], - "friends_aggregate": [ - 3497, - { - "distinct_on": [ - 3521, - "[my_friends_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3519, - "[my_friends_order_by!]" - ], - "where": [ - 3508 - ] - } - ], - "game_ban_count": [ - 41 - ], - "invited_players": [ - 4911, - { - "distinct_on": [ - 4932, - "[team_invites_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4930, - "[team_invites_order_by!]" - ], - "where": [ - 4920 - ] - } - ], - "invited_players_aggregate": [ - 4912, - { - "distinct_on": [ - 4932, - "[team_invites_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4930, - "[team_invites_order_by!]" - ], - "where": [ - 4920 - ] - } - ], - "is_admin_sanctioned": [ - 6 - ], - "is_banned": [ - 6 - ], - "is_gagged": [ - 6 - ], - "is_in_another_match": [ - 6 - ], - "is_in_draft": [ - 6 - ], - "is_in_lobby": [ - 6 - ], - "is_muted": [ - 6 - ], - "is_registered": [ - 6 - ], - "kills": [ - 4003, - { - "distinct_on": [ - 4067, - "[player_kills_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4065, - "[player_kills_order_by!]" - ], - "where": [ - 4014 - ] - } - ], - "kills_aggregate": [ - 4004, - { - "distinct_on": [ - 4067, - "[player_kills_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4065, - "[player_kills_order_by!]" - ], - "where": [ - 4014 - ] - } - ], - "kills_by_weapons": [ - 4015, - { - "distinct_on": [ - 4036, - "[player_kills_by_weapon_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4034, - "[player_kills_by_weapon_order_by!]" - ], - "where": [ - 4024 - ] - } - ], - "kills_by_weapons_aggregate": [ - 4016, - { - "distinct_on": [ - 4036, - "[player_kills_by_weapon_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4034, - "[player_kills_by_weapon_order_by!]" - ], - "where": [ - 4024 - ] - } - ], - "language": [ - 85 - ], - "last_read_news_at": [ - 5243 - ], - "last_sign_in_at": [ - 5243 - ], - "lobby_players": [ - 2837, - { - "distinct_on": [ - 2860, - "[lobby_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2858, - "[lobby_players_order_by!]" - ], - "where": [ - 2848 - ] - } - ], - "lobby_players_aggregate": [ - 2838, - { - "distinct_on": [ - 2860, - "[lobby_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2858, - "[lobby_players_order_by!]" - ], - "where": [ - 2848 - ] - } - ], - "losses": [ - 41 - ], - "losses_competitive": [ - 41 - ], - "losses_duel": [ - 41 - ], - "losses_wingman": [ - 41 - ], - "match_map_hltv": [ - 7154, - { - "distinct_on": [ - 7172, - "[v_player_match_map_hltv_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7171, - "[v_player_match_map_hltv_order_by!]" - ], - "where": [ - 7163 - ] - } - ], - "match_map_hltv_aggregate": [ - 7155, - { - "distinct_on": [ - 7172, - "[v_player_match_map_hltv_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7171, - "[v_player_match_map_hltv_order_by!]" - ], - "where": [ - 7163 - ] - } - ], - "match_map_stats": [ - 4112, - { - "distinct_on": [ - 4133, - "[player_match_map_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4131, - "[player_match_map_stats_order_by!]" - ], - "where": [ - 4121 - ] - } - ], - "match_map_stats_aggregate": [ - 4113, - { - "distinct_on": [ - 4133, - "[player_match_map_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4131, - "[player_match_map_stats_order_by!]" - ], - "where": [ - 4121 - ] - } - ], - "match_stats": [ - 4171, - { - "distinct_on": [ - 4187, - "[player_match_stats_v_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4186, - "[player_match_stats_v_order_by!]" - ], - "where": [ - 4180 - ] - } - ], - "match_stats_aggregate": [ - 4172, - { - "distinct_on": [ - 4187, - "[player_match_stats_v_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4186, - "[player_match_stats_v_order_by!]" - ], - "where": [ - 4180 - ] - } - ], - "matches": [ - 3432, - { - "distinct_on": [ - 3456, - "[matches_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3454, - "[matches_order_by!]" - ], - "where": [ - 3443 - ] - } - ], - "matchmaking_cooldown": [ - 5243 - ], - "multi_kills": [ - 7245, - { - "distinct_on": [ - 7261, - "[v_player_multi_kills_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7260, - "[v_player_multi_kills_order_by!]" - ], - "where": [ - 7254 - ] - } - ], - "multi_kills_aggregate": [ - 7246, - { - "distinct_on": [ - 7261, - "[v_player_multi_kills_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7260, - "[v_player_multi_kills_order_by!]" - ], - "where": [ - 7254 - ] - } - ], - "name": [ - 85 - ], - "name_registered": [ - 6 - ], - "notification_timezone": [ - 85 - ], - "notifications": [ - 3596, - { - "distinct_on": [ - 3624, - "[notifications_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3621, - "[notifications_order_by!]" - ], - "where": [ - 3608 - ] - } - ], - "notifications_aggregate": [ - 3597, - { - "distinct_on": [ - 3624, - "[notifications_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3621, - "[notifications_order_by!]" - ], - "where": [ - 3608 - ] - } - ], - "objectives": [ - 4204, - { - "distinct_on": [ - 4225, - "[player_objectives_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4223, - "[player_objectives_order_by!]" - ], - "where": [ - 4213 - ] - } - ], - "objectives_aggregate": [ - 4205, - { - "distinct_on": [ - 4225, - "[player_objectives_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4223, - "[player_objectives_order_by!]" - ], - "where": [ - 4213 - ] - } - ], - "owned_teams": [ - 5194, - { - "distinct_on": [ - 5218, - "[teams_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5216, - "[teams_order_by!]" - ], - "where": [ - 5205 - ] - } - ], - "owned_teams_aggregate": [ - 5195, - { - "distinct_on": [ - 5218, - "[teams_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5216, - "[teams_order_by!]" - ], - "where": [ - 5205 - ] - } - ], - "peak_elo": [ - 2439, - { - "path": [ - 85 - ] - } - ], - "pending_match_imports": [ - 3649, - { - "distinct_on": [ - 3670, - "[pending_match_import_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3668, - "[pending_match_import_players_order_by!]" - ], - "where": [ - 3658 - ] - } - ], - "pending_match_imports_aggregate": [ - 3650, - { - "distinct_on": [ - 3670, - "[pending_match_import_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3668, - "[pending_match_import_players_order_by!]" - ], - "where": [ - 3658 - ] - } - ], - "player_lineup": [ - 3041, - { - "distinct_on": [ - 3064, - "[match_lineup_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3062, - "[match_lineup_players_order_by!]" - ], - "where": [ - 3052 - ] - } - ], - "player_lineup_aggregate": [ - 3042, - { - "distinct_on": [ - 3064, - "[match_lineup_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3062, - "[match_lineup_players_order_by!]" - ], - "where": [ - 3052 - ] - } - ], - "player_unused_utilities": [ - 4491, - { - "distinct_on": [ - 4512, - "[player_unused_utility_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4510, - "[player_unused_utility_order_by!]" - ], - "where": [ - 4500 - ] - } - ], - "player_unused_utilities_aggregate": [ - 4492, - { - "distinct_on": [ - 4512, - "[player_unused_utility_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4510, - "[player_unused_utility_order_by!]" - ], - "where": [ - 4500 - ] - } - ], - "premier_rank": [ - 41 - ], - "premier_rank_history": [ - 4263, - { - "distinct_on": [ - 4284, - "[player_premier_rank_history_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4282, - "[player_premier_rank_history_order_by!]" - ], - "where": [ - 4272 - ] - } - ], - "premier_rank_history_aggregate": [ - 4264, - { - "distinct_on": [ - 4284, - "[player_premier_rank_history_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4282, - "[player_premier_rank_history_order_by!]" - ], - "where": [ - 4272 - ] - } - ], - "premier_rank_updated_at": [ - 5243 - ], - "profile_url": [ - 85 - ], - "quiet_hours_end": [ - 5240 - ], - "quiet_hours_start": [ - 5240 - ], - "role": [ - 1286 - ], - "roster_image_url": [ - 85 - ], - "sanctions": [ - 4304, - { - "distinct_on": [ - 4325, - "[player_sanctions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4323, - "[player_sanctions_order_by!]" - ], - "where": [ - 4313 - ] - } - ], - "sanctions_aggregate": [ - 4305, - { - "distinct_on": [ - 4325, - "[player_sanctions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4323, - "[player_sanctions_order_by!]" - ], - "where": [ - 4313 - ] - } - ], - "season_stats": [ - 4345, - { - "distinct_on": [ - 4376, - "[player_season_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4374, - "[player_season_stats_order_by!]" - ], - "where": [ - 4364 - ] - } - ], - "season_stats_aggregate": [ - 4346, - { - "distinct_on": [ - 4376, - "[player_season_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4374, - "[player_season_stats_order_by!]" - ], - "where": [ - 4364 - ] - } - ], - "show_match_ready_modal": [ - 6 - ], - "stats": [ - 4404 - ], - "steam_bans_checked_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "team_invites": [ - 4911, - { - "distinct_on": [ - 4932, - "[team_invites_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4930, - "[team_invites_order_by!]" - ], - "where": [ - 4920 - ] - } - ], - "team_invites_aggregate": [ - 4912, - { - "distinct_on": [ - 4932, - "[team_invites_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4930, - "[team_invites_order_by!]" - ], - "where": [ - 4920 - ] - } - ], - "team_members": [ - 4952, - { - "distinct_on": [ - 4975, - "[team_roster_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4973, - "[team_roster_order_by!]" - ], - "where": [ - 4963 - ] - } - ], - "team_members_aggregate": [ - 4953, - { - "distinct_on": [ - 4975, - "[team_roster_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4973, - "[team_roster_order_by!]" - ], - "where": [ - 4963 - ] - } - ], - "teams": [ - 5194, - { - "distinct_on": [ - 5218, - "[teams_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5216, - "[teams_order_by!]" - ], - "where": [ - 5205 - ] - } - ], - "total_matches": [ - 41 - ], - "tournament_cooldown": [ - 5243 - ], - "tournament_organizers": [ - 5568, - { - "distinct_on": [ - 5589, - "[tournament_organizers_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5587, - "[tournament_organizers_order_by!]" - ], - "where": [ - 5577 - ] - } - ], - "tournament_organizers_aggregate": [ - 5569, - { - "distinct_on": [ - 5589, - "[tournament_organizers_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5587, - "[tournament_organizers_order_by!]" - ], - "where": [ - 5577 - ] - } - ], - "tournament_rosters": [ - 5809, - { - "distinct_on": [ - 5830, - "[tournament_team_roster_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5828, - "[tournament_team_roster_order_by!]" - ], - "where": [ - 5818 - ] - } - ], - "tournament_rosters_aggregate": [ - 5810, - { - "distinct_on": [ - 5830, - "[tournament_team_roster_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5828, - "[tournament_team_roster_order_by!]" - ], - "where": [ - 5818 - ] - } - ], - "tournaments": [ - 5896, - { - "distinct_on": [ - 5930, - "[tournaments_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5928, - "[tournaments_order_by!]" - ], - "where": [ - 5917 - ] - } - ], - "tournaments_aggregate": [ - 5897, - { - "distinct_on": [ - 5930, - "[tournaments_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5928, - "[tournaments_order_by!]" - ], - "where": [ - 5917 - ] - } - ], - "utility_thrown": [ - 4532, - { - "distinct_on": [ - 4553, - "[player_utility_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4551, - "[player_utility_order_by!]" - ], - "where": [ - 4541 - ] - } - ], - "utility_thrown_aggregate": [ - 4533, - { - "distinct_on": [ - 4553, - "[player_utility_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4551, - "[player_utility_order_by!]" - ], - "where": [ - 4541 - ] - } - ], - "vac_ban_count": [ - 41 - ], - "vac_banned": [ - 6 - ], - "weapon_stats": [ - 4573, - { - "distinct_on": [ - 4589, - "[player_weapon_stats_v_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4588, - "[player_weapon_stats_v_order_by!]" - ], - "where": [ - 4582 - ] - } - ], - "weapon_stats_aggregate": [ - 4574, - { - "distinct_on": [ - 4589, - "[player_weapon_stats_v_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4588, - "[player_weapon_stats_v_order_by!]" - ], - "where": [ - 4582 - ] - } - ], - "wins": [ - 41 - ], - "wins_competitive": [ - 41 - ], - "wins_duel": [ - 41 - ], - "wins_wingman": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "players_aggregate": { - "aggregate": [ - 4608 - ], - "nodes": [ - 4606 - ], - "__typename": [ - 85 - ] - }, - "players_aggregate_fields": { - "avg": [ - 4609 - ], - "count": [ - 41, - { - "columns": [ - 4621, - "[players_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 4614 - ], - "min": [ - 4615 - ], - "stddev": [ - 4623 - ], - "stddev_pop": [ - 4624 - ], - "stddev_samp": [ - 4625 - ], - "sum": [ - 4628 - ], - "var_pop": [ - 4631 - ], - "var_samp": [ - 4632 - ], - "variance": [ - 4633 - ], - "__typename": [ - 85 - ] - }, - "players_avg_fields": { - "days_since_last_ban": [ - 32 - ], - "faceit_elo": [ - 32 - ], - "faceit_skill_level": [ - 32 - ], - "game_ban_count": [ - 32 - ], - "losses": [ - 41 - ], - "losses_competitive": [ - 41 - ], - "losses_duel": [ - 41 - ], - "losses_wingman": [ - 41 - ], - "premier_rank": [ - 32 - ], - "steam_id": [ - 32 - ], - "total_matches": [ - 41 - ], - "vac_ban_count": [ - 32 - ], - "wins": [ - 41 - ], - "wins_competitive": [ - 41 - ], - "wins_duel": [ - 41 - ], - "wins_wingman": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "players_bool_exp": { - "_and": [ - 4610 - ], - "_not": [ - 4610 - ], - "_or": [ - 4610 - ], - "abandoned_matches": [ - 183 - ], - "abandoned_matches_aggregate": [ - 176 - ], - "aim_weapon_stats": [ - 3754 - ], - "aim_weapon_stats_aggregate": [ - 3747 - ], - "assists": [ - 3797 - ], - "assists_aggregate": [ - 3788 - ], - "assited_by_players": [ - 3797 - ], - "assited_by_players_aggregate": [ - 3788 - ], - "avatar_url": [ - 87 - ], - "awards": [ - 252 - ], - "awards_aggregate": [ - 245 - ], - "banned_until": [ - 5244 - ], - "coach_lineups": [ - 3095 - ], - "coach_lineups_aggregate": [ - 3088 - ], - "country": [ - 87 - ], - "created_at": [ - 5244 - ], - "current_lobby_id": [ - 6674 - ], - "custom_avatar_url": [ - 87 - ], - "damage_dealt": [ - 3858 - ], - "damage_dealt_aggregate": [ - 3851 - ], - "damage_taken": [ - 3858 - ], - "damage_taken_aggregate": [ - 3851 - ], - "days_since_last_ban": [ - 42 - ], - "deaths": [ - 4014 - ], - "deaths_aggregate": [ - 4005 - ], - "discord_id": [ - 87 - ], - "draft_game_players": [ - 565 - ], - "draft_game_players_aggregate": [ - 556 - ], - "elo": [ - 2441 - ], - "elo_history": [ - 7068 - ], - "elo_history_aggregate": [ - 7051 - ], - "faceit_elo": [ - 42 - ], - "faceit_nickname": [ - 87 - ], - "faceit_player_id": [ - 87 - ], - "faceit_rank_history": [ - 3926 - ], - "faceit_rank_history_aggregate": [ - 3919 - ], - "faceit_skill_level": [ - 42 - ], - "faceit_updated_at": [ - 5244 - ], - "faceit_url": [ - 87 - ], - "flashed_by_players": [ - 3969 - ], - "flashed_by_players_aggregate": [ - 3960 - ], - "flashed_players": [ - 3969 - ], - "flashed_players_aggregate": [ - 3960 - ], - "friends": [ - 3508 - ], - "friends_aggregate": [ - 3498 - ], - "game_ban_count": [ - 42 - ], - "invited_players": [ - 4920 - ], - "invited_players_aggregate": [ - 4913 - ], - "is_admin_sanctioned": [ - 7 - ], - "is_banned": [ - 7 - ], - "is_gagged": [ - 7 - ], - "is_in_another_match": [ - 7 - ], - "is_in_draft": [ - 7 - ], - "is_in_lobby": [ - 7 - ], - "is_muted": [ - 7 - ], - "is_registered": [ - 7 - ], - "kills": [ - 4014 - ], - "kills_aggregate": [ - 4005 - ], - "kills_by_weapons": [ - 4024 - ], - "kills_by_weapons_aggregate": [ - 4017 - ], - "language": [ - 87 - ], - "last_read_news_at": [ - 5244 - ], - "last_sign_in_at": [ - 5244 - ], - "lobby_players": [ - 2848 - ], - "lobby_players_aggregate": [ - 2839 - ], - "losses": [ - 42 - ], - "losses_competitive": [ - 42 - ], - "losses_duel": [ - 42 - ], - "losses_wingman": [ - 42 - ], - "match_map_hltv": [ - 7163 - ], - "match_map_hltv_aggregate": [ - 7156 - ], - "match_map_stats": [ - 4121 - ], - "match_map_stats_aggregate": [ - 4114 - ], - "match_stats": [ - 4180 - ], - "match_stats_aggregate": [ - 4173 - ], - "matches": [ - 3443 - ], - "matchmaking_cooldown": [ - 5244 - ], - "multi_kills": [ - 7254 - ], - "multi_kills_aggregate": [ - 7247 - ], - "name": [ - 87 - ], - "name_registered": [ - 7 - ], - "notification_timezone": [ - 87 - ], - "notifications": [ - 3608 - ], - "notifications_aggregate": [ - 3598 - ], - "objectives": [ - 4213 - ], - "objectives_aggregate": [ - 4206 - ], - "owned_teams": [ - 5205 - ], - "owned_teams_aggregate": [ - 5196 - ], - "peak_elo": [ - 2441 - ], - "pending_match_imports": [ - 3658 - ], - "pending_match_imports_aggregate": [ - 3651 - ], - "player_lineup": [ - 3052 - ], - "player_lineup_aggregate": [ - 3043 - ], - "player_unused_utilities": [ - 4500 - ], - "player_unused_utilities_aggregate": [ - 4493 - ], - "premier_rank": [ - 42 - ], - "premier_rank_history": [ - 4272 - ], - "premier_rank_history_aggregate": [ - 4265 - ], - "premier_rank_updated_at": [ - 5244 - ], - "profile_url": [ - 87 - ], - "quiet_hours_end": [ - 5241 - ], - "quiet_hours_start": [ - 5241 - ], - "role": [ - 1287 - ], - "roster_image_url": [ - 87 - ], - "sanctions": [ - 4313 - ], - "sanctions_aggregate": [ - 4306 - ], - "season_stats": [ - 4364 - ], - "season_stats_aggregate": [ - 4347 - ], - "show_match_ready_modal": [ - 7 - ], - "stats": [ - 4408 - ], - "steam_bans_checked_at": [ - 5244 - ], - "steam_id": [ - 314 - ], - "team_invites": [ - 4920 - ], - "team_invites_aggregate": [ - 4913 - ], - "team_members": [ - 4963 - ], - "team_members_aggregate": [ - 4954 - ], - "teams": [ - 5205 - ], - "total_matches": [ - 42 - ], - "tournament_cooldown": [ - 5244 - ], - "tournament_organizers": [ - 5577 - ], - "tournament_organizers_aggregate": [ - 5570 - ], - "tournament_rosters": [ - 5818 - ], - "tournament_rosters_aggregate": [ - 5811 - ], - "tournaments": [ - 5917 - ], - "tournaments_aggregate": [ - 5898 - ], - "utility_thrown": [ - 4541 - ], - "utility_thrown_aggregate": [ - 4534 - ], - "vac_ban_count": [ - 42 - ], - "vac_banned": [ - 7 - ], - "weapon_stats": [ - 4582 - ], - "weapon_stats_aggregate": [ - 4575 - ], - "wins": [ - 42 - ], - "wins_competitive": [ - 42 - ], - "wins_duel": [ - 42 - ], - "wins_wingman": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "players_constraint": {}, - "players_inc_input": { - "days_since_last_ban": [ - 41 - ], - "faceit_elo": [ - 41 - ], - "faceit_skill_level": [ - 41 - ], - "game_ban_count": [ - 41 - ], - "premier_rank": [ - 41 - ], - "steam_id": [ - 312 - ], - "vac_ban_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "players_insert_input": { - "abandoned_matches": [ - 180 - ], - "aim_weapon_stats": [ - 3751 - ], - "assists": [ - 3794 - ], - "assited_by_players": [ - 3794 - ], - "avatar_url": [ - 85 - ], - "awards": [ - 249 - ], - "coach_lineups": [ - 3092 - ], - "country": [ - 85 - ], - "created_at": [ - 5243 - ], - "custom_avatar_url": [ - 85 - ], - "damage_dealt": [ - 3855 - ], - "damage_taken": [ - 3855 - ], - "days_since_last_ban": [ - 41 - ], - "deaths": [ - 4011 - ], - "discord_id": [ - 85 - ], - "draft_game_players": [ - 562 - ], - "elo_history": [ - 7065 - ], - "faceit_elo": [ - 41 - ], - "faceit_nickname": [ - 85 - ], - "faceit_player_id": [ - 85 - ], - "faceit_rank_history": [ - 3923 - ], - "faceit_skill_level": [ - 41 - ], - "faceit_updated_at": [ - 5243 - ], - "faceit_url": [ - 85 - ], - "flashed_by_players": [ - 3966 - ], - "flashed_players": [ - 3966 - ], - "friends": [ - 3505 - ], - "game_ban_count": [ - 41 - ], - "invited_players": [ - 4917 - ], - "kills": [ - 4011 - ], - "kills_by_weapons": [ - 4021 - ], - "language": [ - 85 - ], - "last_read_news_at": [ - 5243 - ], - "last_sign_in_at": [ - 5243 - ], - "lobby_players": [ - 2845 - ], - "match_map_hltv": [ - 7160 - ], - "match_map_stats": [ - 4118 - ], - "match_stats": [ - 4177 - ], - "multi_kills": [ - 7251 - ], - "name": [ - 85 - ], - "name_registered": [ - 6 - ], - "notification_timezone": [ - 85 - ], - "notifications": [ - 3605 - ], - "objectives": [ - 4210 - ], - "owned_teams": [ - 5202 - ], - "pending_match_imports": [ - 3655 - ], - "player_lineup": [ - 3049 - ], - "player_unused_utilities": [ - 4497 - ], - "premier_rank": [ - 41 - ], - "premier_rank_history": [ - 4269 - ], - "premier_rank_updated_at": [ - 5243 - ], - "profile_url": [ - 85 - ], - "quiet_hours_end": [ - 5240 - ], - "quiet_hours_start": [ - 5240 - ], - "role": [ - 1286 - ], - "roster_image_url": [ - 85 - ], - "sanctions": [ - 4310 - ], - "season_stats": [ - 4361 - ], - "show_match_ready_modal": [ - 6 - ], - "stats": [ - 4415 - ], - "steam_bans_checked_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "team_invites": [ - 4917 - ], - "team_members": [ - 4960 - ], - "tournament_organizers": [ - 5574 - ], - "tournament_rosters": [ - 5815 - ], - "tournaments": [ - 5914 - ], - "utility_thrown": [ - 4538 - ], - "vac_ban_count": [ - 41 - ], - "vac_banned": [ - 6 - ], - "weapon_stats": [ - 4579 - ], - "__typename": [ - 85 - ] - }, - "players_max_fields": { - "avatar_url": [ - 85 - ], - "banned_until": [ - 5243 - ], - "country": [ - 85 - ], - "created_at": [ - 5243 - ], - "current_lobby_id": [ - 6672 - ], - "custom_avatar_url": [ - 85 - ], - "days_since_last_ban": [ - 41 - ], - "discord_id": [ - 85 - ], - "faceit_elo": [ - 41 - ], - "faceit_nickname": [ - 85 - ], - "faceit_player_id": [ - 85 - ], - "faceit_skill_level": [ - 41 - ], - "faceit_updated_at": [ - 5243 - ], - "faceit_url": [ - 85 - ], - "game_ban_count": [ - 41 - ], - "language": [ - 85 - ], - "last_read_news_at": [ - 5243 - ], - "last_sign_in_at": [ - 5243 - ], - "losses": [ - 41 - ], - "losses_competitive": [ - 41 - ], - "losses_duel": [ - 41 - ], - "losses_wingman": [ - 41 - ], - "matchmaking_cooldown": [ - 5243 - ], - "name": [ - 85 - ], - "notification_timezone": [ - 85 - ], - "premier_rank": [ - 41 - ], - "premier_rank_updated_at": [ - 5243 - ], - "profile_url": [ - 85 - ], - "roster_image_url": [ - 85 - ], - "steam_bans_checked_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "total_matches": [ - 41 - ], - "tournament_cooldown": [ - 5243 - ], - "vac_ban_count": [ - 41 - ], - "wins": [ - 41 - ], - "wins_competitive": [ - 41 - ], - "wins_duel": [ - 41 - ], - "wins_wingman": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "players_min_fields": { - "avatar_url": [ - 85 - ], - "banned_until": [ - 5243 - ], - "country": [ - 85 - ], - "created_at": [ - 5243 - ], - "current_lobby_id": [ - 6672 - ], - "custom_avatar_url": [ - 85 - ], - "days_since_last_ban": [ - 41 - ], - "discord_id": [ - 85 - ], - "faceit_elo": [ - 41 - ], - "faceit_nickname": [ - 85 - ], - "faceit_player_id": [ - 85 - ], - "faceit_skill_level": [ - 41 - ], - "faceit_updated_at": [ - 5243 - ], - "faceit_url": [ - 85 - ], - "game_ban_count": [ - 41 - ], - "language": [ - 85 - ], - "last_read_news_at": [ - 5243 - ], - "last_sign_in_at": [ - 5243 - ], - "losses": [ - 41 - ], - "losses_competitive": [ - 41 - ], - "losses_duel": [ - 41 - ], - "losses_wingman": [ - 41 - ], - "matchmaking_cooldown": [ - 5243 - ], - "name": [ - 85 - ], - "notification_timezone": [ - 85 - ], - "premier_rank": [ - 41 - ], - "premier_rank_updated_at": [ - 5243 - ], - "profile_url": [ - 85 - ], - "roster_image_url": [ - 85 - ], - "steam_bans_checked_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "total_matches": [ - 41 - ], - "tournament_cooldown": [ - 5243 - ], - "vac_ban_count": [ - 41 - ], - "wins": [ - 41 - ], - "wins_competitive": [ - 41 - ], - "wins_duel": [ - 41 - ], - "wins_wingman": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "players_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 4606 - ], - "__typename": [ - 85 - ] - }, - "players_obj_rel_insert_input": { - "data": [ - 4613 - ], - "on_conflict": [ - 4618 - ], - "__typename": [ - 85 - ] - }, - "players_on_conflict": { - "constraint": [ - 4611 - ], - "update_columns": [ - 4629 - ], - "where": [ - 4610 - ], - "__typename": [ - 85 - ] - }, - "players_order_by": { - "abandoned_matches_aggregate": [ - 179 - ], - "aim_weapon_stats_aggregate": [ - 3750 - ], - "assists_aggregate": [ - 3793 - ], - "assited_by_players_aggregate": [ - 3793 - ], - "avatar_url": [ - 3648 - ], - "awards_aggregate": [ - 248 - ], - "banned_until": [ - 3648 - ], - "coach_lineups_aggregate": [ - 3091 - ], - "country": [ - 3648 - ], - "created_at": [ - 3648 - ], - "current_lobby_id": [ - 3648 - ], - "custom_avatar_url": [ - 3648 - ], - "damage_dealt_aggregate": [ - 3854 - ], - "damage_taken_aggregate": [ - 3854 - ], - "days_since_last_ban": [ - 3648 - ], - "deaths_aggregate": [ - 4010 - ], - "discord_id": [ - 3648 - ], - "draft_game_players_aggregate": [ - 561 - ], - "elo": [ - 3648 - ], - "elo_history_aggregate": [ - 7064 - ], - "faceit_elo": [ - 3648 - ], - "faceit_nickname": [ - 3648 - ], - "faceit_player_id": [ - 3648 - ], - "faceit_rank_history_aggregate": [ - 3922 - ], - "faceit_skill_level": [ - 3648 - ], - "faceit_updated_at": [ - 3648 - ], - "faceit_url": [ - 3648 - ], - "flashed_by_players_aggregate": [ - 3965 - ], - "flashed_players_aggregate": [ - 3965 - ], - "friends_aggregate": [ - 3503 - ], - "game_ban_count": [ - 3648 - ], - "invited_players_aggregate": [ - 4916 - ], - "is_admin_sanctioned": [ - 3648 - ], - "is_banned": [ - 3648 - ], - "is_gagged": [ - 3648 - ], - "is_in_another_match": [ - 3648 - ], - "is_in_draft": [ - 3648 - ], - "is_in_lobby": [ - 3648 - ], - "is_muted": [ - 3648 - ], - "is_registered": [ - 3648 - ], - "kills_aggregate": [ - 4010 - ], - "kills_by_weapons_aggregate": [ - 4020 - ], - "language": [ - 3648 - ], - "last_read_news_at": [ - 3648 - ], - "last_sign_in_at": [ - 3648 - ], - "lobby_players_aggregate": [ - 2844 - ], - "losses": [ - 3648 - ], - "losses_competitive": [ - 3648 - ], - "losses_duel": [ - 3648 - ], - "losses_wingman": [ - 3648 - ], - "match_map_hltv_aggregate": [ - 7159 - ], - "match_map_stats_aggregate": [ - 4117 - ], - "match_stats_aggregate": [ - 4176 - ], - "matches_aggregate": [ - 3439 - ], - "matchmaking_cooldown": [ - 3648 - ], - "multi_kills_aggregate": [ - 7250 - ], - "name": [ - 3648 - ], - "name_registered": [ - 3648 - ], - "notification_timezone": [ - 3648 - ], - "notifications_aggregate": [ - 3603 - ], - "objectives_aggregate": [ - 4209 - ], - "owned_teams_aggregate": [ - 5201 - ], - "peak_elo": [ - 3648 - ], - "pending_match_imports_aggregate": [ - 3654 - ], - "player_lineup_aggregate": [ - 3048 - ], - "player_unused_utilities_aggregate": [ - 4496 - ], - "premier_rank": [ - 3648 - ], - "premier_rank_history_aggregate": [ - 4268 - ], - "premier_rank_updated_at": [ - 3648 - ], - "profile_url": [ - 3648 - ], - "quiet_hours_end": [ - 3648 - ], - "quiet_hours_start": [ - 3648 - ], - "role": [ - 3648 - ], - "roster_image_url": [ - 3648 - ], - "sanctions_aggregate": [ - 4309 - ], - "season_stats_aggregate": [ - 4360 - ], - "show_match_ready_modal": [ - 3648 - ], - "stats": [ - 4417 - ], - "steam_bans_checked_at": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "team_invites_aggregate": [ - 4916 - ], - "team_members_aggregate": [ - 4959 - ], - "teams_aggregate": [ - 5201 - ], - "total_matches": [ - 3648 - ], - "tournament_cooldown": [ - 3648 - ], - "tournament_organizers_aggregate": [ - 5573 - ], - "tournament_rosters_aggregate": [ - 5814 - ], - "tournaments_aggregate": [ - 5913 - ], - "utility_thrown_aggregate": [ - 4537 - ], - "vac_ban_count": [ - 3648 - ], - "vac_banned": [ - 3648 - ], - "weapon_stats_aggregate": [ - 4578 - ], - "wins": [ - 3648 - ], - "wins_competitive": [ - 3648 - ], - "wins_duel": [ - 3648 - ], - "wins_wingman": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "players_pk_columns_input": { - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "players_select_column": {}, - "players_set_input": { - "avatar_url": [ - 85 - ], - "country": [ - 85 - ], - "created_at": [ - 5243 - ], - "custom_avatar_url": [ - 85 - ], - "days_since_last_ban": [ - 41 - ], - "discord_id": [ - 85 - ], - "faceit_elo": [ - 41 - ], - "faceit_nickname": [ - 85 - ], - "faceit_player_id": [ - 85 - ], - "faceit_skill_level": [ - 41 - ], - "faceit_updated_at": [ - 5243 - ], - "faceit_url": [ - 85 - ], - "game_ban_count": [ - 41 - ], - "language": [ - 85 - ], - "last_read_news_at": [ - 5243 - ], - "last_sign_in_at": [ - 5243 - ], - "name": [ - 85 - ], - "name_registered": [ - 6 - ], - "notification_timezone": [ - 85 - ], - "premier_rank": [ - 41 - ], - "premier_rank_updated_at": [ - 5243 - ], - "profile_url": [ - 85 - ], - "quiet_hours_end": [ - 5240 - ], - "quiet_hours_start": [ - 5240 - ], - "role": [ - 1286 - ], - "roster_image_url": [ - 85 - ], - "show_match_ready_modal": [ - 6 - ], - "steam_bans_checked_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "vac_ban_count": [ - 41 - ], - "vac_banned": [ - 6 - ], - "__typename": [ - 85 - ] - }, - "players_stddev_fields": { - "days_since_last_ban": [ - 32 - ], - "faceit_elo": [ - 32 - ], - "faceit_skill_level": [ - 32 - ], - "game_ban_count": [ - 32 - ], - "losses": [ - 41 - ], - "losses_competitive": [ - 41 - ], - "losses_duel": [ - 41 - ], - "losses_wingman": [ - 41 - ], - "premier_rank": [ - 32 - ], - "steam_id": [ - 32 - ], - "total_matches": [ - 41 - ], - "vac_ban_count": [ - 32 - ], - "wins": [ - 41 - ], - "wins_competitive": [ - 41 - ], - "wins_duel": [ - 41 - ], - "wins_wingman": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "players_stddev_pop_fields": { - "days_since_last_ban": [ - 32 - ], - "faceit_elo": [ - 32 - ], - "faceit_skill_level": [ - 32 - ], - "game_ban_count": [ - 32 - ], - "losses": [ - 41 - ], - "losses_competitive": [ - 41 - ], - "losses_duel": [ - 41 - ], - "losses_wingman": [ - 41 - ], - "premier_rank": [ - 32 - ], - "steam_id": [ - 32 - ], - "total_matches": [ - 41 - ], - "vac_ban_count": [ - 32 - ], - "wins": [ - 41 - ], - "wins_competitive": [ - 41 - ], - "wins_duel": [ - 41 - ], - "wins_wingman": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "players_stddev_samp_fields": { - "days_since_last_ban": [ - 32 - ], - "faceit_elo": [ - 32 - ], - "faceit_skill_level": [ - 32 - ], - "game_ban_count": [ - 32 - ], - "losses": [ - 41 - ], - "losses_competitive": [ - 41 - ], - "losses_duel": [ - 41 - ], - "losses_wingman": [ - 41 - ], - "premier_rank": [ - 32 - ], - "steam_id": [ - 32 - ], - "total_matches": [ - 41 - ], - "vac_ban_count": [ - 32 - ], - "wins": [ - 41 - ], - "wins_competitive": [ - 41 - ], - "wins_duel": [ - 41 - ], - "wins_wingman": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "players_stream_cursor_input": { - "initial_value": [ - 4627 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "players_stream_cursor_value_input": { - "avatar_url": [ - 85 - ], - "country": [ - 85 - ], - "created_at": [ - 5243 - ], - "custom_avatar_url": [ - 85 - ], - "days_since_last_ban": [ - 41 - ], - "discord_id": [ - 85 - ], - "faceit_elo": [ - 41 - ], - "faceit_nickname": [ - 85 - ], - "faceit_player_id": [ - 85 - ], - "faceit_skill_level": [ - 41 - ], - "faceit_updated_at": [ - 5243 - ], - "faceit_url": [ - 85 - ], - "game_ban_count": [ - 41 - ], - "language": [ - 85 - ], - "last_read_news_at": [ - 5243 - ], - "last_sign_in_at": [ - 5243 - ], - "name": [ - 85 - ], - "name_registered": [ - 6 - ], - "notification_timezone": [ - 85 - ], - "premier_rank": [ - 41 - ], - "premier_rank_updated_at": [ - 5243 - ], - "profile_url": [ - 85 - ], - "quiet_hours_end": [ - 5240 - ], - "quiet_hours_start": [ - 5240 - ], - "role": [ - 1286 - ], - "roster_image_url": [ - 85 - ], - "show_match_ready_modal": [ - 6 - ], - "steam_bans_checked_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "vac_ban_count": [ - 41 - ], - "vac_banned": [ - 6 - ], - "__typename": [ - 85 - ] - }, - "players_sum_fields": { - "days_since_last_ban": [ - 41 - ], - "faceit_elo": [ - 41 - ], - "faceit_skill_level": [ - 41 - ], - "game_ban_count": [ - 41 - ], - "losses": [ - 41 - ], - "losses_competitive": [ - 41 - ], - "losses_duel": [ - 41 - ], - "losses_wingman": [ - 41 - ], - "premier_rank": [ - 41 - ], - "steam_id": [ - 312 - ], - "total_matches": [ - 41 - ], - "vac_ban_count": [ - 41 - ], - "wins": [ - 41 - ], - "wins_competitive": [ - 41 - ], - "wins_duel": [ - 41 - ], - "wins_wingman": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "players_update_column": {}, - "players_updates": { - "_inc": [ - 4612 - ], - "_set": [ - 4622 - ], - "where": [ - 4610 - ], - "__typename": [ - 85 - ] - }, - "players_var_pop_fields": { - "days_since_last_ban": [ - 32 - ], - "faceit_elo": [ - 32 - ], - "faceit_skill_level": [ - 32 - ], - "game_ban_count": [ - 32 - ], - "losses": [ - 41 - ], - "losses_competitive": [ - 41 - ], - "losses_duel": [ - 41 - ], - "losses_wingman": [ - 41 - ], - "premier_rank": [ - 32 - ], - "steam_id": [ - 32 - ], - "total_matches": [ - 41 - ], - "vac_ban_count": [ - 32 - ], - "wins": [ - 41 - ], - "wins_competitive": [ - 41 - ], - "wins_duel": [ - 41 - ], - "wins_wingman": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "players_var_samp_fields": { - "days_since_last_ban": [ - 32 - ], - "faceit_elo": [ - 32 - ], - "faceit_skill_level": [ - 32 - ], - "game_ban_count": [ - 32 - ], - "losses": [ - 41 - ], - "losses_competitive": [ - 41 - ], - "losses_duel": [ - 41 - ], - "losses_wingman": [ - 41 - ], - "premier_rank": [ - 32 - ], - "steam_id": [ - 32 - ], - "total_matches": [ - 41 - ], - "vac_ban_count": [ - 32 - ], - "wins": [ - 41 - ], - "wins_competitive": [ - 41 - ], - "wins_duel": [ - 41 - ], - "wins_wingman": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "players_variance_fields": { - "days_since_last_ban": [ - 32 - ], - "faceit_elo": [ - 32 - ], - "faceit_skill_level": [ - 32 - ], - "game_ban_count": [ - 32 - ], - "losses": [ - 41 - ], - "losses_competitive": [ - 41 - ], - "losses_duel": [ - 41 - ], - "losses_wingman": [ - 41 - ], - "premier_rank": [ - 32 - ], - "steam_id": [ - 32 - ], - "total_matches": [ - 41 - ], - "vac_ban_count": [ - 32 - ], - "wins": [ - 41 - ], - "wins_competitive": [ - 41 - ], - "wins_duel": [ - 41 - ], - "wins_wingman": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "plugin_versions": { - "min_game_build_id": [ - 41 - ], - "published_at": [ - 5243 - ], - "runtime": [ - 1306 - ], - "version": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "plugin_versions_aggregate": { - "aggregate": [ - 4636 - ], - "nodes": [ - 4634 - ], - "__typename": [ - 85 - ] - }, - "plugin_versions_aggregate_fields": { - "avg": [ - 4637 - ], - "count": [ - 41, - { - "columns": [ - 4648, - "[plugin_versions_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 4642 - ], - "min": [ - 4643 - ], - "stddev": [ - 4650 - ], - "stddev_pop": [ - 4651 - ], - "stddev_samp": [ - 4652 - ], - "sum": [ - 4655 - ], - "var_pop": [ - 4658 - ], - "var_samp": [ - 4659 - ], - "variance": [ - 4660 - ], - "__typename": [ - 85 - ] - }, - "plugin_versions_avg_fields": { - "min_game_build_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "plugin_versions_bool_exp": { - "_and": [ - 4638 - ], - "_not": [ - 4638 - ], - "_or": [ - 4638 - ], - "min_game_build_id": [ - 42 - ], - "published_at": [ - 5244 - ], - "runtime": [ - 1307 - ], - "version": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "plugin_versions_constraint": {}, - "plugin_versions_inc_input": { - "min_game_build_id": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "plugin_versions_insert_input": { - "min_game_build_id": [ - 41 - ], - "published_at": [ - 5243 - ], - "runtime": [ - 1306 - ], - "version": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "plugin_versions_max_fields": { - "min_game_build_id": [ - 41 - ], - "published_at": [ - 5243 - ], - "version": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "plugin_versions_min_fields": { - "min_game_build_id": [ - 41 - ], - "published_at": [ - 5243 - ], - "version": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "plugin_versions_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 4634 - ], - "__typename": [ - 85 - ] - }, - "plugin_versions_on_conflict": { - "constraint": [ - 4639 - ], - "update_columns": [ - 4656 - ], - "where": [ - 4638 - ], - "__typename": [ - 85 - ] - }, - "plugin_versions_order_by": { - "min_game_build_id": [ - 3648 - ], - "published_at": [ - 3648 - ], - "runtime": [ - 3648 - ], - "version": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "plugin_versions_pk_columns_input": { - "runtime": [ - 1306 - ], - "version": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "plugin_versions_select_column": {}, - "plugin_versions_set_input": { - "min_game_build_id": [ - 41 - ], - "published_at": [ - 5243 - ], - "runtime": [ - 1306 - ], - "version": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "plugin_versions_stddev_fields": { - "min_game_build_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "plugin_versions_stddev_pop_fields": { - "min_game_build_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "plugin_versions_stddev_samp_fields": { - "min_game_build_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "plugin_versions_stream_cursor_input": { - "initial_value": [ - 4654 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "plugin_versions_stream_cursor_value_input": { - "min_game_build_id": [ - 41 - ], - "published_at": [ - 5243 - ], - "runtime": [ - 1306 - ], - "version": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "plugin_versions_sum_fields": { - "min_game_build_id": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "plugin_versions_update_column": {}, - "plugin_versions_updates": { - "_inc": [ - 4640 - ], - "_set": [ - 4649 - ], - "where": [ - 4638 - ], - "__typename": [ - 85 - ] - }, - "plugin_versions_var_pop_fields": { - "min_game_build_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "plugin_versions_var_samp_fields": { - "min_game_build_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "plugin_versions_variance_fields": { - "min_game_build_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "push_subscriptions": { - "auth": [ - 85 - ], - "created_at": [ - 5243 - ], - "endpoint": [ - 85 - ], - "id": [ - 6672 - ], - "last_used_at": [ - 5243 - ], - "p256dh": [ - 85 - ], - "steam_id": [ - 312 - ], - "user_agent": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "push_subscriptions_aggregate": { - "aggregate": [ - 4663 - ], - "nodes": [ - 4661 - ], - "__typename": [ - 85 - ] - }, - "push_subscriptions_aggregate_fields": { - "avg": [ - 4664 - ], - "count": [ - 41, - { - "columns": [ - 4675, - "[push_subscriptions_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 4669 - ], - "min": [ - 4670 - ], - "stddev": [ - 4677 - ], - "stddev_pop": [ - 4678 - ], - "stddev_samp": [ - 4679 - ], - "sum": [ - 4682 - ], - "var_pop": [ - 4685 - ], - "var_samp": [ - 4686 - ], - "variance": [ - 4687 - ], - "__typename": [ - 85 - ] - }, - "push_subscriptions_avg_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "push_subscriptions_bool_exp": { - "_and": [ - 4665 - ], - "_not": [ - 4665 - ], - "_or": [ - 4665 - ], - "auth": [ - 87 - ], - "created_at": [ - 5244 - ], - "endpoint": [ - 87 - ], - "id": [ - 6674 - ], - "last_used_at": [ - 5244 - ], - "p256dh": [ - 87 - ], - "steam_id": [ - 314 - ], - "user_agent": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "push_subscriptions_constraint": {}, - "push_subscriptions_inc_input": { - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "push_subscriptions_insert_input": { - "auth": [ - 85 - ], - "created_at": [ - 5243 - ], - "endpoint": [ - 85 - ], - "id": [ - 6672 - ], - "last_used_at": [ - 5243 - ], - "p256dh": [ - 85 - ], - "steam_id": [ - 312 - ], - "user_agent": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "push_subscriptions_max_fields": { - "auth": [ - 85 - ], - "created_at": [ - 5243 - ], - "endpoint": [ - 85 - ], - "id": [ - 6672 - ], - "last_used_at": [ - 5243 - ], - "p256dh": [ - 85 - ], - "steam_id": [ - 312 - ], - "user_agent": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "push_subscriptions_min_fields": { - "auth": [ - 85 - ], - "created_at": [ - 5243 - ], - "endpoint": [ - 85 - ], - "id": [ - 6672 - ], - "last_used_at": [ - 5243 - ], - "p256dh": [ - 85 - ], - "steam_id": [ - 312 - ], - "user_agent": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "push_subscriptions_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 4661 - ], - "__typename": [ - 85 - ] - }, - "push_subscriptions_on_conflict": { - "constraint": [ - 4666 - ], - "update_columns": [ - 4683 - ], - "where": [ - 4665 - ], - "__typename": [ - 85 - ] - }, - "push_subscriptions_order_by": { - "auth": [ - 3648 - ], - "created_at": [ - 3648 - ], - "endpoint": [ - 3648 - ], - "id": [ - 3648 - ], - "last_used_at": [ - 3648 - ], - "p256dh": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "user_agent": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "push_subscriptions_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "push_subscriptions_select_column": {}, - "push_subscriptions_set_input": { - "auth": [ - 85 - ], - "created_at": [ - 5243 - ], - "endpoint": [ - 85 - ], - "id": [ - 6672 - ], - "last_used_at": [ - 5243 - ], - "p256dh": [ - 85 - ], - "steam_id": [ - 312 - ], - "user_agent": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "push_subscriptions_stddev_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "push_subscriptions_stddev_pop_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "push_subscriptions_stddev_samp_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "push_subscriptions_stream_cursor_input": { - "initial_value": [ - 4681 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "push_subscriptions_stream_cursor_value_input": { - "auth": [ - 85 - ], - "created_at": [ - 5243 - ], - "endpoint": [ - 85 - ], - "id": [ - 6672 - ], - "last_used_at": [ - 5243 - ], - "p256dh": [ - 85 - ], - "steam_id": [ - 312 - ], - "user_agent": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "push_subscriptions_sum_fields": { - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "push_subscriptions_update_column": {}, - "push_subscriptions_updates": { - "_inc": [ - 4667 - ], - "_set": [ - 4676 - ], - "where": [ - 4665 - ], - "__typename": [ - 85 - ] - }, - "push_subscriptions_var_pop_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "push_subscriptions_var_samp_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "push_subscriptions_variance_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "recalculate_tournament_awards_args": { - "_tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "remove_league_team_from_season_args": { - "_league_team_season_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "reorder_league_divisions_args": { - "_division_ids": [ - 173 - ], - "__typename": [ - 85 - ] - }, - "restart_league_season_args": { - "_league_season_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "role_permissions": { - "can_create_events": [ - 6 - ], - "can_create_matches": [ - 6 - ], - "can_create_tournaments": [ - 6 - ], - "role": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "role_permissions_aggregate": { - "aggregate": [ - 4694 - ], - "nodes": [ - 4692 - ], - "__typename": [ - 85 - ] - }, - "role_permissions_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 4701, - "[role_permissions_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 4697 - ], - "min": [ - 4698 - ], - "__typename": [ - 85 - ] - }, - "role_permissions_bool_exp": { - "_and": [ - 4695 - ], - "_not": [ - 4695 - ], - "_or": [ - 4695 - ], - "can_create_events": [ - 7 - ], - "can_create_matches": [ - 7 - ], - "can_create_tournaments": [ - 7 - ], - "role": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "role_permissions_insert_input": { - "can_create_events": [ - 6 - ], - "can_create_matches": [ - 6 - ], - "can_create_tournaments": [ - 6 - ], - "role": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "role_permissions_max_fields": { - "role": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "role_permissions_min_fields": { - "role": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "role_permissions_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 4692 - ], - "__typename": [ - 85 - ] - }, - "role_permissions_order_by": { - "can_create_events": [ - 3648 - ], - "can_create_matches": [ - 3648 - ], - "can_create_tournaments": [ - 3648 - ], - "role": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "role_permissions_select_column": {}, - "role_permissions_set_input": { - "can_create_events": [ - 6 - ], - "can_create_matches": [ - 6 - ], - "can_create_tournaments": [ - 6 - ], - "role": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "role_permissions_stream_cursor_input": { - "initial_value": [ - 4704 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "role_permissions_stream_cursor_value_input": { - "can_create_events": [ - 6 - ], - "can_create_matches": [ - 6 - ], - "can_create_tournaments": [ - 6 - ], - "role": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "role_permissions_updates": { - "_set": [ - 4702 - ], - "where": [ - 4695 - ], - "__typename": [ - 85 - ] - }, - "seasons": { - "awards": [ - 243, - { - "distinct_on": [ - 264, - "[award_recipients_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 262, - "[award_recipients_order_by!]" - ], - "where": [ - 252 - ] - } - ], - "awards_aggregate": [ - 244, - { - "distinct_on": [ - 264, - "[award_recipients_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 262, - "[award_recipients_order_by!]" - ], - "where": [ - 252 - ] - } - ], - "created_at": [ - 5243 - ], - "description": [ - 85 - ], - "ends_at": [ - 5243 - ], - "id": [ - 6672 - ], - "needs_rebuild": [ - 6 - ], - "number": [ - 41 - ], - "player_season_stats": [ - 4345, - { - "distinct_on": [ - 4376, - "[player_season_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4374, - "[player_season_stats_order_by!]" - ], - "where": [ - 4364 - ] - } - ], - "player_season_stats_aggregate": [ - 4346, - { - "distinct_on": [ - 4376, - "[player_season_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4374, - "[player_season_stats_order_by!]" - ], - "where": [ - 4364 - ] - } - ], - "starts_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "seasons_aggregate": { - "aggregate": [ - 4708 - ], - "nodes": [ - 4706 - ], - "__typename": [ - 85 - ] - }, - "seasons_aggregate_fields": { - "avg": [ - 4709 - ], - "count": [ - 41, - { - "columns": [ - 4721, - "[seasons_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 4714 - ], - "min": [ - 4715 - ], - "stddev": [ - 4723 - ], - "stddev_pop": [ - 4724 - ], - "stddev_samp": [ - 4725 - ], - "sum": [ - 4728 - ], - "var_pop": [ - 4731 - ], - "var_samp": [ - 4732 - ], - "variance": [ - 4733 - ], - "__typename": [ - 85 - ] - }, - "seasons_avg_fields": { - "number": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "seasons_bool_exp": { - "_and": [ - 4710 - ], - "_not": [ - 4710 - ], - "_or": [ - 4710 - ], - "awards": [ - 252 - ], - "awards_aggregate": [ - 245 - ], - "created_at": [ - 5244 - ], - "description": [ - 87 - ], - "ends_at": [ - 5244 - ], - "id": [ - 6674 - ], - "needs_rebuild": [ - 7 - ], - "number": [ - 42 - ], - "player_season_stats": [ - 4364 - ], - "player_season_stats_aggregate": [ - 4347 - ], - "starts_at": [ - 5244 - ], - "__typename": [ - 85 - ] - }, - "seasons_constraint": {}, - "seasons_inc_input": { - "number": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "seasons_insert_input": { - "awards": [ - 249 - ], - "created_at": [ - 5243 - ], - "description": [ - 85 - ], - "ends_at": [ - 5243 - ], - "id": [ - 6672 - ], - "needs_rebuild": [ - 6 - ], - "number": [ - 41 - ], - "player_season_stats": [ - 4361 - ], - "starts_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "seasons_max_fields": { - "created_at": [ - 5243 - ], - "description": [ - 85 - ], - "ends_at": [ - 5243 - ], - "id": [ - 6672 - ], - "number": [ - 41 - ], - "starts_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "seasons_min_fields": { - "created_at": [ - 5243 - ], - "description": [ - 85 - ], - "ends_at": [ - 5243 - ], - "id": [ - 6672 - ], - "number": [ - 41 - ], - "starts_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "seasons_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 4706 - ], - "__typename": [ - 85 - ] - }, - "seasons_obj_rel_insert_input": { - "data": [ - 4713 - ], - "on_conflict": [ - 4718 - ], - "__typename": [ - 85 - ] - }, - "seasons_on_conflict": { - "constraint": [ - 4711 - ], - "update_columns": [ - 4729 - ], - "where": [ - 4710 - ], - "__typename": [ - 85 - ] - }, - "seasons_order_by": { - "awards_aggregate": [ - 248 - ], - "created_at": [ - 3648 - ], - "description": [ - 3648 - ], - "ends_at": [ - 3648 - ], - "id": [ - 3648 - ], - "needs_rebuild": [ - 3648 - ], - "number": [ - 3648 - ], - "player_season_stats_aggregate": [ - 4360 - ], - "starts_at": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "seasons_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "seasons_select_column": {}, - "seasons_set_input": { - "created_at": [ - 5243 - ], - "description": [ - 85 - ], - "ends_at": [ - 5243 - ], - "id": [ - 6672 - ], - "needs_rebuild": [ - 6 - ], - "number": [ - 41 - ], - "starts_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "seasons_stddev_fields": { - "number": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "seasons_stddev_pop_fields": { - "number": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "seasons_stddev_samp_fields": { - "number": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "seasons_stream_cursor_input": { - "initial_value": [ - 4727 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "seasons_stream_cursor_value_input": { - "created_at": [ - 5243 - ], - "description": [ - 85 - ], - "ends_at": [ - 5243 - ], - "id": [ - 6672 - ], - "needs_rebuild": [ - 6 - ], - "number": [ - 41 - ], - "starts_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "seasons_sum_fields": { - "number": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "seasons_update_column": {}, - "seasons_updates": { - "_inc": [ - 4712 - ], - "_set": [ - 4722 - ], - "where": [ - 4710 - ], - "__typename": [ - 85 - ] - }, - "seasons_var_pop_fields": { - "number": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "seasons_var_samp_fields": { - "number": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "seasons_variance_fields": { - "number": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "server_regions": { - "available_server_count": [ - 41 - ], - "description": [ - 85 - ], - "game_server_nodes": [ - 2314, - { - "distinct_on": [ - 2343, - "[game_server_nodes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2340, - "[game_server_nodes_order_by!]" - ], - "where": [ - 2326 - ] - } - ], - "game_server_nodes_aggregate": [ - 2315, - { - "distinct_on": [ - 2343, - "[game_server_nodes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2340, - "[game_server_nodes_order_by!]" - ], - "where": [ - 2326 - ] - } - ], - "has_node": [ - 6 - ], - "is_lan": [ - 6 - ], - "status": [ - 85 - ], - "steam_relay": [ - 6 - ], - "total_server_count": [ - 41 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "server_regions_aggregate": { - "aggregate": [ - 4736 - ], - "nodes": [ - 4734 - ], - "__typename": [ - 85 - ] - }, - "server_regions_aggregate_fields": { - "avg": [ - 4737 - ], - "count": [ - 41, - { - "columns": [ - 4748, - "[server_regions_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 4741 - ], - "min": [ - 4742 - ], - "stddev": [ - 4750 - ], - "stddev_pop": [ - 4751 - ], - "stddev_samp": [ - 4752 - ], - "sum": [ - 4755 - ], - "var_pop": [ - 4758 - ], - "var_samp": [ - 4759 - ], - "variance": [ - 4760 - ], - "__typename": [ - 85 - ] - }, - "server_regions_avg_fields": { - "available_server_count": [ - 41 - ], - "total_server_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "server_regions_bool_exp": { - "_and": [ - 4738 - ], - "_not": [ - 4738 - ], - "_or": [ - 4738 - ], - "available_server_count": [ - 42 - ], - "description": [ - 87 - ], - "game_server_nodes": [ - 2326 - ], - "game_server_nodes_aggregate": [ - 2316 - ], - "has_node": [ - 7 - ], - "is_lan": [ - 7 - ], - "status": [ - 87 - ], - "steam_relay": [ - 7 - ], - "total_server_count": [ - 42 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "server_regions_constraint": {}, - "server_regions_insert_input": { - "description": [ - 85 - ], - "game_server_nodes": [ - 2323 - ], - "is_lan": [ - 6 - ], - "steam_relay": [ - 6 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "server_regions_max_fields": { - "available_server_count": [ - 41 - ], - "description": [ - 85 - ], - "status": [ - 85 - ], - "total_server_count": [ - 41 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "server_regions_min_fields": { - "available_server_count": [ - 41 - ], - "description": [ - 85 - ], - "status": [ - 85 - ], - "total_server_count": [ - 41 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "server_regions_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 4734 - ], - "__typename": [ - 85 - ] - }, - "server_regions_obj_rel_insert_input": { - "data": [ - 4740 - ], - "on_conflict": [ - 4745 - ], - "__typename": [ - 85 - ] - }, - "server_regions_on_conflict": { - "constraint": [ - 4739 - ], - "update_columns": [ - 4756 - ], - "where": [ - 4738 - ], - "__typename": [ - 85 - ] - }, - "server_regions_order_by": { - "available_server_count": [ - 3648 - ], - "description": [ - 3648 - ], - "game_server_nodes_aggregate": [ - 2321 - ], - "has_node": [ - 3648 - ], - "is_lan": [ - 3648 - ], - "status": [ - 3648 - ], - "steam_relay": [ - 3648 - ], - "total_server_count": [ - 3648 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "server_regions_pk_columns_input": { - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "server_regions_select_column": {}, - "server_regions_set_input": { - "description": [ - 85 - ], - "is_lan": [ - 6 - ], - "steam_relay": [ - 6 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "server_regions_stddev_fields": { - "available_server_count": [ - 41 - ], - "total_server_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "server_regions_stddev_pop_fields": { - "available_server_count": [ - 41 - ], - "total_server_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "server_regions_stddev_samp_fields": { - "available_server_count": [ - 41 - ], - "total_server_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "server_regions_stream_cursor_input": { - "initial_value": [ - 4754 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "server_regions_stream_cursor_value_input": { - "description": [ - 85 - ], - "is_lan": [ - 6 - ], - "steam_relay": [ - 6 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "server_regions_sum_fields": { - "available_server_count": [ - 41 - ], - "total_server_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "server_regions_update_column": {}, - "server_regions_updates": { - "_set": [ - 4749 - ], - "where": [ - 4738 - ], - "__typename": [ - 85 - ] - }, - "server_regions_var_pop_fields": { - "available_server_count": [ - 41 - ], - "total_server_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "server_regions_var_samp_fields": { - "available_server_count": [ - 41 - ], - "total_server_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "server_regions_variance_fields": { - "available_server_count": [ - 41 - ], - "total_server_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "servers": { - "api_password": [ - 6672 - ], - "boot_status": [ - 85 - ], - "boot_status_detail": [ - 85 - ], - "connect_password": [ - 85 - ], - "connected": [ - 6 - ], - "connection_link": [ - 85 - ], - "connection_string": [ - 85 - ], - "current_match": [ - 3432 - ], - "enabled": [ - 6 - ], - "game": [ - 85 - ], - "game_mode": [ - 2172 - ], - "game_mode_id": [ - 6672 - ], - "game_server_node": [ - 2314 - ], - "game_server_node_id": [ - 85 - ], - "host": [ - 85 - ], - "id": [ - 6672 - ], - "is_dedicated": [ - 6 - ], - "label": [ - 85 - ], - "loaded_plugins": [ - 2439, - { - "path": [ - 85 - ] - } - ], - "matches": [ - 3432, - { - "distinct_on": [ - 3456, - "[matches_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3454, - "[matches_order_by!]" - ], - "where": [ - 3443 - ] - } - ], - "matches_aggregate": [ - 3433, - { - "distinct_on": [ - 3456, - "[matches_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3454, - "[matches_order_by!]" - ], - "where": [ - 3443 - ] - } - ], - "max_players": [ - 41 - ], - "offline_at": [ - 5243 - ], - "plugin_runtime": [ - 1306 - ], - "plugin_version": [ - 85 - ], - "plugins_checked_at": [ - 5243 - ], - "port": [ - 41 - ], - "rcon_password": [ - 315 - ], - "rcon_status": [ - 6 - ], - "region": [ - 85 - ], - "reserved_by_match_id": [ - 6672 - ], - "server_region": [ - 4734 - ], - "steam_relay": [ - 85 - ], - "tv_port": [ - 41 - ], - "type": [ - 1433 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "servers_aggregate": { - "aggregate": [ - 4767 - ], - "nodes": [ - 4761 - ], - "__typename": [ - 85 - ] - }, - "servers_aggregate_bool_exp": { - "bool_and": [ - 4764 - ], - "bool_or": [ - 4765 - ], - "count": [ - 4766 - ], - "__typename": [ - 85 - ] - }, - "servers_aggregate_bool_exp_bool_and": { - "arguments": [ - 4791 - ], - "distinct": [ - 6 - ], - "filter": [ - 4773 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "servers_aggregate_bool_exp_bool_or": { - "arguments": [ - 4792 - ], - "distinct": [ - 6 - ], - "filter": [ - 4773 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "servers_aggregate_bool_exp_count": { - "arguments": [ - 4790 - ], - "distinct": [ - 6 - ], - "filter": [ - 4773 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "servers_aggregate_fields": { - "avg": [ - 4771 - ], - "count": [ - 41, - { - "columns": [ - 4790, - "[servers_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 4780 - ], - "min": [ - 4782 - ], - "stddev": [ - 4794 - ], - "stddev_pop": [ - 4796 - ], - "stddev_samp": [ - 4798 - ], - "sum": [ - 4802 - ], - "var_pop": [ - 4806 - ], - "var_samp": [ - 4808 - ], - "variance": [ - 4810 - ], - "__typename": [ - 85 - ] - }, - "servers_aggregate_order_by": { - "avg": [ - 4772 - ], - "count": [ - 3648 - ], - "max": [ - 4781 - ], - "min": [ - 4783 - ], - "stddev": [ - 4795 - ], - "stddev_pop": [ - 4797 - ], - "stddev_samp": [ - 4799 - ], - "sum": [ - 4803 - ], - "var_pop": [ - 4807 - ], - "var_samp": [ - 4809 - ], - "variance": [ - 4811 - ], - "__typename": [ - 85 - ] - }, - "servers_append_input": { - "loaded_plugins": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "servers_arr_rel_insert_input": { - "data": [ - 4779 - ], - "on_conflict": [ - 4786 - ], - "__typename": [ - 85 - ] - }, - "servers_avg_fields": { - "max_players": [ - 32 - ], - "port": [ - 32 - ], - "tv_port": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "servers_avg_order_by": { - "max_players": [ - 3648 - ], - "port": [ - 3648 - ], - "tv_port": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "servers_bool_exp": { - "_and": [ - 4773 - ], - "_not": [ - 4773 - ], - "_or": [ - 4773 - ], - "api_password": [ - 6674 - ], - "boot_status": [ - 87 - ], - "boot_status_detail": [ - 87 - ], - "connect_password": [ - 87 - ], - "connected": [ - 7 - ], - "connection_link": [ - 87 - ], - "connection_string": [ - 87 - ], - "current_match": [ - 3443 - ], - "enabled": [ - 7 - ], - "game": [ - 87 - ], - "game_mode": [ - 2175 - ], - "game_mode_id": [ - 6674 - ], - "game_server_node": [ - 2326 - ], - "game_server_node_id": [ - 87 - ], - "host": [ - 87 - ], - "id": [ - 6674 - ], - "is_dedicated": [ - 7 - ], - "label": [ - 87 - ], - "loaded_plugins": [ - 2441 - ], - "matches": [ - 3443 - ], - "matches_aggregate": [ - 3434 - ], - "max_players": [ - 42 - ], - "offline_at": [ - 5244 - ], - "plugin_runtime": [ - 1307 - ], - "plugin_version": [ - 87 - ], - "plugins_checked_at": [ - 5244 - ], - "port": [ - 42 - ], - "rcon_password": [ - 316 - ], - "rcon_status": [ - 7 - ], - "region": [ - 87 - ], - "reserved_by_match_id": [ - 6674 - ], - "server_region": [ - 4738 - ], - "steam_relay": [ - 87 - ], - "tv_port": [ - 42 - ], - "type": [ - 1434 - ], - "updated_at": [ - 5244 - ], - "__typename": [ - 85 - ] - }, - "servers_constraint": {}, - "servers_delete_at_path_input": { - "loaded_plugins": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "servers_delete_elem_input": { - "loaded_plugins": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "servers_delete_key_input": { - "loaded_plugins": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "servers_inc_input": { - "max_players": [ - 41 - ], - "port": [ - 41 - ], - "tv_port": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "servers_insert_input": { - "api_password": [ - 6672 - ], - "boot_status": [ - 85 - ], - "boot_status_detail": [ - 85 - ], - "connect_password": [ - 85 - ], - "connected": [ - 6 - ], - "current_match": [ - 3452 - ], - "enabled": [ - 6 - ], - "game": [ - 85 - ], - "game_mode": [ - 2181 - ], - "game_mode_id": [ - 6672 - ], - "game_server_node": [ - 2338 - ], - "game_server_node_id": [ - 85 - ], - "host": [ - 85 - ], - "id": [ - 6672 - ], - "is_dedicated": [ - 6 - ], - "label": [ - 85 - ], - "loaded_plugins": [ - 2439 - ], - "matches": [ - 3440 - ], - "max_players": [ - 41 - ], - "offline_at": [ - 5243 - ], - "plugin_runtime": [ - 1306 - ], - "plugin_version": [ - 85 - ], - "plugins_checked_at": [ - 5243 - ], - "port": [ - 41 - ], - "rcon_password": [ - 315 - ], - "rcon_status": [ - 6 - ], - "region": [ - 85 - ], - "reserved_by_match_id": [ - 6672 - ], - "server_region": [ - 4744 - ], - "steam_relay": [ - 85 - ], - "tv_port": [ - 41 - ], - "type": [ - 1433 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "servers_max_fields": { - "api_password": [ - 6672 - ], - "boot_status": [ - 85 - ], - "boot_status_detail": [ - 85 - ], - "connect_password": [ - 85 - ], - "connection_link": [ - 85 - ], - "connection_string": [ - 85 - ], - "game": [ - 85 - ], - "game_mode_id": [ - 6672 - ], - "game_server_node_id": [ - 85 - ], - "host": [ - 85 - ], - "id": [ - 6672 - ], - "label": [ - 85 - ], - "max_players": [ - 41 - ], - "offline_at": [ - 5243 - ], - "plugin_version": [ - 85 - ], - "plugins_checked_at": [ - 5243 - ], - "port": [ - 41 - ], - "region": [ - 85 - ], - "reserved_by_match_id": [ - 6672 - ], - "steam_relay": [ - 85 - ], - "tv_port": [ - 41 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "servers_max_order_by": { - "api_password": [ - 3648 - ], - "boot_status": [ - 3648 - ], - "boot_status_detail": [ - 3648 - ], - "connect_password": [ - 3648 - ], - "game": [ - 3648 - ], - "game_mode_id": [ - 3648 - ], - "game_server_node_id": [ - 3648 - ], - "host": [ - 3648 - ], - "id": [ - 3648 - ], - "label": [ - 3648 - ], - "max_players": [ - 3648 - ], - "offline_at": [ - 3648 - ], - "plugin_version": [ - 3648 - ], - "plugins_checked_at": [ - 3648 - ], - "port": [ - 3648 - ], - "region": [ - 3648 - ], - "reserved_by_match_id": [ - 3648 - ], - "steam_relay": [ - 3648 - ], - "tv_port": [ - 3648 - ], - "updated_at": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "servers_min_fields": { - "api_password": [ - 6672 - ], - "boot_status": [ - 85 - ], - "boot_status_detail": [ - 85 - ], - "connect_password": [ - 85 - ], - "connection_link": [ - 85 - ], - "connection_string": [ - 85 - ], - "game": [ - 85 - ], - "game_mode_id": [ - 6672 - ], - "game_server_node_id": [ - 85 - ], - "host": [ - 85 - ], - "id": [ - 6672 - ], - "label": [ - 85 - ], - "max_players": [ - 41 - ], - "offline_at": [ - 5243 - ], - "plugin_version": [ - 85 - ], - "plugins_checked_at": [ - 5243 - ], - "port": [ - 41 - ], - "region": [ - 85 - ], - "reserved_by_match_id": [ - 6672 - ], - "steam_relay": [ - 85 - ], - "tv_port": [ - 41 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "servers_min_order_by": { - "api_password": [ - 3648 - ], - "boot_status": [ - 3648 - ], - "boot_status_detail": [ - 3648 - ], - "connect_password": [ - 3648 - ], - "game": [ - 3648 - ], - "game_mode_id": [ - 3648 - ], - "game_server_node_id": [ - 3648 - ], - "host": [ - 3648 - ], - "id": [ - 3648 - ], - "label": [ - 3648 - ], - "max_players": [ - 3648 - ], - "offline_at": [ - 3648 - ], - "plugin_version": [ - 3648 - ], - "plugins_checked_at": [ - 3648 - ], - "port": [ - 3648 - ], - "region": [ - 3648 - ], - "reserved_by_match_id": [ - 3648 - ], - "steam_relay": [ - 3648 - ], - "tv_port": [ - 3648 - ], - "updated_at": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "servers_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 4761 - ], - "__typename": [ - 85 - ] - }, - "servers_obj_rel_insert_input": { - "data": [ - 4779 - ], - "on_conflict": [ - 4786 - ], - "__typename": [ - 85 - ] - }, - "servers_on_conflict": { - "constraint": [ - 4774 - ], - "update_columns": [ - 4804 - ], - "where": [ - 4773 - ], - "__typename": [ - 85 - ] - }, - "servers_order_by": { - "api_password": [ - 3648 - ], - "boot_status": [ - 3648 - ], - "boot_status_detail": [ - 3648 - ], - "connect_password": [ - 3648 - ], - "connected": [ - 3648 - ], - "connection_link": [ - 3648 - ], - "connection_string": [ - 3648 - ], - "current_match": [ - 3454 - ], - "enabled": [ - 3648 - ], - "game": [ - 3648 - ], - "game_mode": [ - 2183 - ], - "game_mode_id": [ - 3648 - ], - "game_server_node": [ - 2340 - ], - "game_server_node_id": [ - 3648 - ], - "host": [ - 3648 - ], - "id": [ - 3648 - ], - "is_dedicated": [ - 3648 - ], - "label": [ - 3648 - ], - "loaded_plugins": [ - 3648 - ], - "matches_aggregate": [ - 3439 - ], - "max_players": [ - 3648 - ], - "offline_at": [ - 3648 - ], - "plugin_runtime": [ - 3648 - ], - "plugin_version": [ - 3648 - ], - "plugins_checked_at": [ - 3648 - ], - "port": [ - 3648 - ], - "rcon_password": [ - 3648 - ], - "rcon_status": [ - 3648 - ], - "region": [ - 3648 - ], - "reserved_by_match_id": [ - 3648 - ], - "server_region": [ - 4746 - ], - "steam_relay": [ - 3648 - ], - "tv_port": [ - 3648 - ], - "type": [ - 3648 - ], - "updated_at": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "servers_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "servers_prepend_input": { - "loaded_plugins": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "servers_select_column": {}, - "servers_select_column_servers_aggregate_bool_exp_bool_and_arguments_columns": {}, - "servers_select_column_servers_aggregate_bool_exp_bool_or_arguments_columns": {}, - "servers_set_input": { - "api_password": [ - 6672 - ], - "boot_status": [ - 85 - ], - "boot_status_detail": [ - 85 - ], - "connect_password": [ - 85 - ], - "connected": [ - 6 - ], - "enabled": [ - 6 - ], - "game": [ - 85 - ], - "game_mode_id": [ - 6672 - ], - "game_server_node_id": [ - 85 - ], - "host": [ - 85 - ], - "id": [ - 6672 - ], - "is_dedicated": [ - 6 - ], - "label": [ - 85 - ], - "loaded_plugins": [ - 2439 - ], - "max_players": [ - 41 - ], - "offline_at": [ - 5243 - ], - "plugin_runtime": [ - 1306 - ], - "plugin_version": [ - 85 - ], - "plugins_checked_at": [ - 5243 - ], - "port": [ - 41 - ], - "rcon_password": [ - 315 - ], - "rcon_status": [ - 6 - ], - "region": [ - 85 - ], - "reserved_by_match_id": [ - 6672 - ], - "steam_relay": [ - 85 - ], - "tv_port": [ - 41 - ], - "type": [ - 1433 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "servers_stddev_fields": { - "max_players": [ - 32 - ], - "port": [ - 32 - ], - "tv_port": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "servers_stddev_order_by": { - "max_players": [ - 3648 - ], - "port": [ - 3648 - ], - "tv_port": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "servers_stddev_pop_fields": { - "max_players": [ - 32 - ], - "port": [ - 32 - ], - "tv_port": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "servers_stddev_pop_order_by": { - "max_players": [ - 3648 - ], - "port": [ - 3648 - ], - "tv_port": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "servers_stddev_samp_fields": { - "max_players": [ - 32 - ], - "port": [ - 32 - ], - "tv_port": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "servers_stddev_samp_order_by": { - "max_players": [ - 3648 - ], - "port": [ - 3648 - ], - "tv_port": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "servers_stream_cursor_input": { - "initial_value": [ - 4801 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "servers_stream_cursor_value_input": { - "api_password": [ - 6672 - ], - "boot_status": [ - 85 - ], - "boot_status_detail": [ - 85 - ], - "connect_password": [ - 85 - ], - "connected": [ - 6 - ], - "enabled": [ - 6 - ], - "game": [ - 85 - ], - "game_mode_id": [ - 6672 - ], - "game_server_node_id": [ - 85 - ], - "host": [ - 85 - ], - "id": [ - 6672 - ], - "is_dedicated": [ - 6 - ], - "label": [ - 85 - ], - "loaded_plugins": [ - 2439 - ], - "max_players": [ - 41 - ], - "offline_at": [ - 5243 - ], - "plugin_runtime": [ - 1306 - ], - "plugin_version": [ - 85 - ], - "plugins_checked_at": [ - 5243 - ], - "port": [ - 41 - ], - "rcon_password": [ - 315 - ], - "rcon_status": [ - 6 - ], - "region": [ - 85 - ], - "reserved_by_match_id": [ - 6672 - ], - "steam_relay": [ - 85 - ], - "tv_port": [ - 41 - ], - "type": [ - 1433 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "servers_sum_fields": { - "max_players": [ - 41 - ], - "port": [ - 41 - ], - "tv_port": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "servers_sum_order_by": { - "max_players": [ - 3648 - ], - "port": [ - 3648 - ], - "tv_port": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "servers_update_column": {}, - "servers_updates": { - "_append": [ - 4769 - ], - "_delete_at_path": [ - 4775 - ], - "_delete_elem": [ - 4776 - ], - "_delete_key": [ - 4777 - ], - "_inc": [ - 4778 - ], - "_prepend": [ - 4789 - ], - "_set": [ - 4793 - ], - "where": [ - 4773 - ], - "__typename": [ - 85 - ] - }, - "servers_var_pop_fields": { - "max_players": [ - 32 - ], - "port": [ - 32 - ], - "tv_port": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "servers_var_pop_order_by": { - "max_players": [ - 3648 - ], - "port": [ - 3648 - ], - "tv_port": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "servers_var_samp_fields": { - "max_players": [ - 32 - ], - "port": [ - 32 - ], - "tv_port": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "servers_var_samp_order_by": { - "max_players": [ - 3648 - ], - "port": [ - 3648 - ], - "tv_port": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "servers_variance_fields": { - "max_players": [ - 32 - ], - "port": [ - 32 - ], - "tv_port": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "servers_variance_order_by": { - "max_players": [ - 3648 - ], - "port": [ - 3648 - ], - "tv_port": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "settings": { - "name": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "settings_aggregate": { - "aggregate": [ - 4814 - ], - "nodes": [ - 4812 - ], - "__typename": [ - 85 - ] - }, - "settings_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 4824, - "[settings_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 4818 - ], - "min": [ - 4819 - ], - "__typename": [ - 85 - ] - }, - "settings_bool_exp": { - "_and": [ - 4815 - ], - "_not": [ - 4815 - ], - "_or": [ - 4815 - ], - "name": [ - 87 - ], - "value": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "settings_constraint": {}, - "settings_insert_input": { - "name": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "settings_max_fields": { - "name": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "settings_min_fields": { - "name": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "settings_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 4812 - ], - "__typename": [ - 85 - ] - }, - "settings_on_conflict": { - "constraint": [ - 4816 - ], - "update_columns": [ - 4828 - ], - "where": [ - 4815 - ], - "__typename": [ - 85 - ] - }, - "settings_order_by": { - "name": [ - 3648 - ], - "value": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "settings_pk_columns_input": { - "name": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "settings_select_column": {}, - "settings_set_input": { - "name": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "settings_stream_cursor_input": { - "initial_value": [ - 4827 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "settings_stream_cursor_value_input": { - "name": [ - 85 - ], - "value": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "settings_update_column": {}, - "settings_updates": { - "_set": [ - 4825 - ], - "where": [ - 4815 - ], - "__typename": [ - 85 - ] - }, - "smallint": {}, - "smallint_comparison_exp": { - "_eq": [ - 4830 - ], - "_gt": [ - 4830 - ], - "_gte": [ - 4830 - ], - "_in": [ - 4830 - ], - "_is_null": [ - 6 - ], - "_lt": [ - 4830 - ], - "_lte": [ - 4830 - ], - "_neq": [ - 4830 - ], - "_nin": [ - 4830 - ], - "__typename": [ - 85 - ] - }, - "steam_account_claims": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "k8s_job_name": [ - 85 - ], - "node": [ - 2314 - ], - "node_id": [ - 85 - ], - "purpose": [ - 85 - ], - "steam_account": [ - 4856 - ], - "steam_account_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "steam_account_claims_aggregate": { - "aggregate": [ - 4836 - ], - "nodes": [ - 4832 - ], - "__typename": [ - 85 - ] - }, - "steam_account_claims_aggregate_bool_exp": { - "count": [ - 4835 - ], - "__typename": [ - 85 - ] - }, - "steam_account_claims_aggregate_bool_exp_count": { - "arguments": [ - 4850 - ], - "distinct": [ - 6 - ], - "filter": [ - 4839 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "steam_account_claims_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 4850, - "[steam_account_claims_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 4842 - ], - "min": [ - 4844 - ], - "__typename": [ - 85 - ] - }, - "steam_account_claims_aggregate_order_by": { - "count": [ - 3648 - ], - "max": [ - 4843 - ], - "min": [ - 4845 - ], - "__typename": [ - 85 - ] - }, - "steam_account_claims_arr_rel_insert_input": { - "data": [ - 4841 - ], - "on_conflict": [ - 4847 - ], - "__typename": [ - 85 - ] - }, - "steam_account_claims_bool_exp": { - "_and": [ - 4839 - ], - "_not": [ - 4839 - ], - "_or": [ - 4839 - ], - "created_at": [ - 5244 - ], - "id": [ - 6674 - ], - "k8s_job_name": [ - 87 - ], - "node": [ - 2326 - ], - "node_id": [ - 87 - ], - "purpose": [ - 87 - ], - "steam_account": [ - 4860 - ], - "steam_account_id": [ - 6674 - ], - "__typename": [ - 85 - ] - }, - "steam_account_claims_constraint": {}, - "steam_account_claims_insert_input": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "k8s_job_name": [ - 85 - ], - "node": [ - 2338 - ], - "node_id": [ - 85 - ], - "purpose": [ - 85 - ], - "steam_account": [ - 4867 - ], - "steam_account_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "steam_account_claims_max_fields": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "k8s_job_name": [ - 85 - ], - "node_id": [ - 85 - ], - "purpose": [ - 85 - ], - "steam_account_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "steam_account_claims_max_order_by": { - "created_at": [ - 3648 - ], - "id": [ - 3648 - ], - "k8s_job_name": [ - 3648 - ], - "node_id": [ - 3648 - ], - "purpose": [ - 3648 - ], - "steam_account_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "steam_account_claims_min_fields": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "k8s_job_name": [ - 85 - ], - "node_id": [ - 85 - ], - "purpose": [ - 85 - ], - "steam_account_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "steam_account_claims_min_order_by": { - "created_at": [ - 3648 - ], - "id": [ - 3648 - ], - "k8s_job_name": [ - 3648 - ], - "node_id": [ - 3648 - ], - "purpose": [ - 3648 - ], - "steam_account_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "steam_account_claims_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 4832 - ], - "__typename": [ - 85 - ] - }, - "steam_account_claims_on_conflict": { - "constraint": [ - 4840 - ], - "update_columns": [ - 4854 - ], - "where": [ - 4839 - ], - "__typename": [ - 85 - ] - }, - "steam_account_claims_order_by": { - "created_at": [ - 3648 - ], - "id": [ - 3648 - ], - "k8s_job_name": [ - 3648 - ], - "node": [ - 2340 - ], - "node_id": [ - 3648 - ], - "purpose": [ - 3648 - ], - "steam_account": [ - 4869 - ], - "steam_account_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "steam_account_claims_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "steam_account_claims_select_column": {}, - "steam_account_claims_set_input": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "k8s_job_name": [ - 85 - ], - "node_id": [ - 85 - ], - "purpose": [ - 85 - ], - "steam_account_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "steam_account_claims_stream_cursor_input": { - "initial_value": [ - 4853 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "steam_account_claims_stream_cursor_value_input": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "k8s_job_name": [ - 85 - ], - "node_id": [ - 85 - ], - "purpose": [ - 85 - ], - "steam_account_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "steam_account_claims_update_column": {}, - "steam_account_claims_updates": { - "_set": [ - 4851 - ], - "where": [ - 4839 - ], - "__typename": [ - 85 - ] - }, - "steam_accounts": { - "claims": [ - 4832, - { - "distinct_on": [ - 4850, - "[steam_account_claims_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4848, - "[steam_account_claims_order_by!]" - ], - "where": [ - 4839 - ] - } - ], - "claims_aggregate": [ - 4833, - { - "distinct_on": [ - 4850, - "[steam_account_claims_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4848, - "[steam_account_claims_order_by!]" - ], - "where": [ - 4839 - ] - } - ], - "created_at": [ - 5243 - ], - "friend_capacity": [ - 41 - ], - "id": [ - 6672 - ], - "last_node": [ - 2314 - ], - "last_node_id": [ - 85 - ], - "password": [ - 85 - ], - "role": [ - 85 - ], - "steam_level": [ - 41 - ], - "steamid64": [ - 312 - ], - "updated_at": [ - 5243 - ], - "username": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "steam_accounts_aggregate": { - "aggregate": [ - 4858 - ], - "nodes": [ - 4856 - ], - "__typename": [ - 85 - ] - }, - "steam_accounts_aggregate_fields": { - "avg": [ - 4859 - ], - "count": [ - 41, - { - "columns": [ - 4871, - "[steam_accounts_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 4864 - ], - "min": [ - 4865 - ], - "stddev": [ - 4873 - ], - "stddev_pop": [ - 4874 - ], - "stddev_samp": [ - 4875 - ], - "sum": [ - 4878 - ], - "var_pop": [ - 4881 - ], - "var_samp": [ - 4882 - ], - "variance": [ - 4883 - ], - "__typename": [ - 85 - ] - }, - "steam_accounts_avg_fields": { - "friend_capacity": [ - 32 - ], - "steam_level": [ - 32 - ], - "steamid64": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "steam_accounts_bool_exp": { - "_and": [ - 4860 - ], - "_not": [ - 4860 - ], - "_or": [ - 4860 - ], - "claims": [ - 4839 - ], - "claims_aggregate": [ - 4834 - ], - "created_at": [ - 5244 - ], - "friend_capacity": [ - 42 - ], - "id": [ - 6674 - ], - "last_node": [ - 2326 - ], - "last_node_id": [ - 87 - ], - "password": [ - 87 - ], - "role": [ - 87 - ], - "steam_level": [ - 42 - ], - "steamid64": [ - 314 - ], - "updated_at": [ - 5244 - ], - "username": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "steam_accounts_constraint": {}, - "steam_accounts_inc_input": { - "friend_capacity": [ - 41 - ], - "steam_level": [ - 41 - ], - "steamid64": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "steam_accounts_insert_input": { - "claims": [ - 4838 - ], - "created_at": [ - 5243 - ], - "friend_capacity": [ - 41 - ], - "id": [ - 6672 - ], - "last_node": [ - 2338 - ], - "last_node_id": [ - 85 - ], - "password": [ - 85 - ], - "role": [ - 85 - ], - "steam_level": [ - 41 - ], - "steamid64": [ - 312 - ], - "updated_at": [ - 5243 - ], - "username": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "steam_accounts_max_fields": { - "created_at": [ - 5243 - ], - "friend_capacity": [ - 41 - ], - "id": [ - 6672 - ], - "last_node_id": [ - 85 - ], - "password": [ - 85 - ], - "role": [ - 85 - ], - "steam_level": [ - 41 - ], - "steamid64": [ - 312 - ], - "updated_at": [ - 5243 - ], - "username": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "steam_accounts_min_fields": { - "created_at": [ - 5243 - ], - "friend_capacity": [ - 41 - ], - "id": [ - 6672 - ], - "last_node_id": [ - 85 - ], - "password": [ - 85 - ], - "role": [ - 85 - ], - "steam_level": [ - 41 - ], - "steamid64": [ - 312 - ], - "updated_at": [ - 5243 - ], - "username": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "steam_accounts_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 4856 - ], - "__typename": [ - 85 - ] - }, - "steam_accounts_obj_rel_insert_input": { - "data": [ - 4863 - ], - "on_conflict": [ - 4868 - ], - "__typename": [ - 85 - ] - }, - "steam_accounts_on_conflict": { - "constraint": [ - 4861 - ], - "update_columns": [ - 4879 - ], - "where": [ - 4860 - ], - "__typename": [ - 85 - ] - }, - "steam_accounts_order_by": { - "claims_aggregate": [ - 4837 - ], - "created_at": [ - 3648 - ], - "friend_capacity": [ - 3648 - ], - "id": [ - 3648 - ], - "last_node": [ - 2340 - ], - "last_node_id": [ - 3648 - ], - "password": [ - 3648 - ], - "role": [ - 3648 - ], - "steam_level": [ - 3648 - ], - "steamid64": [ - 3648 - ], - "updated_at": [ - 3648 - ], - "username": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "steam_accounts_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "steam_accounts_select_column": {}, - "steam_accounts_set_input": { - "created_at": [ - 5243 - ], - "friend_capacity": [ - 41 - ], - "id": [ - 6672 - ], - "last_node_id": [ - 85 - ], - "password": [ - 85 - ], - "role": [ - 85 - ], - "steam_level": [ - 41 - ], - "steamid64": [ - 312 - ], - "updated_at": [ - 5243 - ], - "username": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "steam_accounts_stddev_fields": { - "friend_capacity": [ - 32 - ], - "steam_level": [ - 32 - ], - "steamid64": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "steam_accounts_stddev_pop_fields": { - "friend_capacity": [ - 32 - ], - "steam_level": [ - 32 - ], - "steamid64": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "steam_accounts_stddev_samp_fields": { - "friend_capacity": [ - 32 - ], - "steam_level": [ - 32 - ], - "steamid64": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "steam_accounts_stream_cursor_input": { - "initial_value": [ - 4877 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "steam_accounts_stream_cursor_value_input": { - "created_at": [ - 5243 - ], - "friend_capacity": [ - 41 - ], - "id": [ - 6672 - ], - "last_node_id": [ - 85 - ], - "password": [ - 85 - ], - "role": [ - 85 - ], - "steam_level": [ - 41 - ], - "steamid64": [ - 312 - ], - "updated_at": [ - 5243 - ], - "username": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "steam_accounts_sum_fields": { - "friend_capacity": [ - 41 - ], - "steam_level": [ - 41 - ], - "steamid64": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "steam_accounts_update_column": {}, - "steam_accounts_updates": { - "_inc": [ - 4862 - ], - "_set": [ - 4872 - ], - "where": [ - 4860 - ], - "__typename": [ - 85 - ] - }, - "steam_accounts_var_pop_fields": { - "friend_capacity": [ - 32 - ], - "steam_level": [ - 32 - ], - "steamid64": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "steam_accounts_var_samp_fields": { - "friend_capacity": [ - 32 - ], - "steam_level": [ - 32 - ], - "steamid64": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "steam_accounts_variance_fields": { - "friend_capacity": [ - 32 - ], - "steam_level": [ - 32 - ], - "steamid64": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "system_alerts": { - "created_at": [ - 5243 - ], - "created_by": [ - 312 - ], - "dismissible": [ - 6 - ], - "expires_at": [ - 5243 - ], - "id": [ - 6672 - ], - "is_active": [ - 6 - ], - "message": [ - 85 - ], - "title": [ - 85 - ], - "type": [ - 1473 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "system_alerts_aggregate": { - "aggregate": [ - 4886 - ], - "nodes": [ - 4884 - ], - "__typename": [ - 85 - ] - }, - "system_alerts_aggregate_fields": { - "avg": [ - 4887 - ], - "count": [ - 41, - { - "columns": [ - 4898, - "[system_alerts_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 4892 - ], - "min": [ - 4893 - ], - "stddev": [ - 4900 - ], - "stddev_pop": [ - 4901 - ], - "stddev_samp": [ - 4902 - ], - "sum": [ - 4905 - ], - "var_pop": [ - 4908 - ], - "var_samp": [ - 4909 - ], - "variance": [ - 4910 - ], - "__typename": [ - 85 - ] - }, - "system_alerts_avg_fields": { - "created_by": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "system_alerts_bool_exp": { - "_and": [ - 4888 - ], - "_not": [ - 4888 - ], - "_or": [ - 4888 - ], - "created_at": [ - 5244 - ], - "created_by": [ - 314 - ], - "dismissible": [ - 7 - ], - "expires_at": [ - 5244 - ], - "id": [ - 6674 - ], - "is_active": [ - 7 - ], - "message": [ - 87 - ], - "title": [ - 87 - ], - "type": [ - 1474 - ], - "updated_at": [ - 5244 - ], - "__typename": [ - 85 - ] - }, - "system_alerts_constraint": {}, - "system_alerts_inc_input": { - "created_by": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "system_alerts_insert_input": { - "created_at": [ - 5243 - ], - "created_by": [ - 312 - ], - "dismissible": [ - 6 - ], - "expires_at": [ - 5243 - ], - "id": [ - 6672 - ], - "is_active": [ - 6 - ], - "message": [ - 85 - ], - "title": [ - 85 - ], - "type": [ - 1473 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "system_alerts_max_fields": { - "created_at": [ - 5243 - ], - "created_by": [ - 312 - ], - "expires_at": [ - 5243 - ], - "id": [ - 6672 - ], - "message": [ - 85 - ], - "title": [ - 85 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "system_alerts_min_fields": { - "created_at": [ - 5243 - ], - "created_by": [ - 312 - ], - "expires_at": [ - 5243 - ], - "id": [ - 6672 - ], - "message": [ - 85 - ], - "title": [ - 85 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "system_alerts_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 4884 - ], - "__typename": [ - 85 - ] - }, - "system_alerts_on_conflict": { - "constraint": [ - 4889 - ], - "update_columns": [ - 4906 - ], - "where": [ - 4888 - ], - "__typename": [ - 85 - ] - }, - "system_alerts_order_by": { - "created_at": [ - 3648 - ], - "created_by": [ - 3648 - ], - "dismissible": [ - 3648 - ], - "expires_at": [ - 3648 - ], - "id": [ - 3648 - ], - "is_active": [ - 3648 - ], - "message": [ - 3648 - ], - "title": [ - 3648 - ], - "type": [ - 3648 - ], - "updated_at": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "system_alerts_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "system_alerts_select_column": {}, - "system_alerts_set_input": { - "created_at": [ - 5243 - ], - "created_by": [ - 312 - ], - "dismissible": [ - 6 - ], - "expires_at": [ - 5243 - ], - "id": [ - 6672 - ], - "is_active": [ - 6 - ], - "message": [ - 85 - ], - "title": [ - 85 - ], - "type": [ - 1473 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "system_alerts_stddev_fields": { - "created_by": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "system_alerts_stddev_pop_fields": { - "created_by": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "system_alerts_stddev_samp_fields": { - "created_by": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "system_alerts_stream_cursor_input": { - "initial_value": [ - 4904 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "system_alerts_stream_cursor_value_input": { - "created_at": [ - 5243 - ], - "created_by": [ - 312 - ], - "dismissible": [ - 6 - ], - "expires_at": [ - 5243 - ], - "id": [ - 6672 - ], - "is_active": [ - 6 - ], - "message": [ - 85 - ], - "title": [ - 85 - ], - "type": [ - 1473 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "system_alerts_sum_fields": { - "created_by": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "system_alerts_update_column": {}, - "system_alerts_updates": { - "_inc": [ - 4890 - ], - "_set": [ - 4899 - ], - "where": [ - 4888 - ], - "__typename": [ - 85 - ] - }, - "system_alerts_var_pop_fields": { - "created_by": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "system_alerts_var_samp_fields": { - "created_by": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "system_alerts_variance_fields": { - "created_by": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_invites": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "invited_by": [ - 4606 - ], - "invited_by_player_steam_id": [ - 312 - ], - "player": [ - 4606 - ], - "steam_id": [ - 312 - ], - "team": [ - 5194 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "team_invites_aggregate": { - "aggregate": [ - 4915 - ], - "nodes": [ - 4911 - ], - "__typename": [ - 85 - ] - }, - "team_invites_aggregate_bool_exp": { - "count": [ - 4914 - ], - "__typename": [ - 85 - ] - }, - "team_invites_aggregate_bool_exp_count": { - "arguments": [ - 4932 - ], - "distinct": [ - 6 - ], - "filter": [ - 4920 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "team_invites_aggregate_fields": { - "avg": [ - 4918 - ], - "count": [ - 41, - { - "columns": [ - 4932, - "[team_invites_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 4924 - ], - "min": [ - 4926 - ], - "stddev": [ - 4934 - ], - "stddev_pop": [ - 4936 - ], - "stddev_samp": [ - 4938 - ], - "sum": [ - 4942 - ], - "var_pop": [ - 4946 - ], - "var_samp": [ - 4948 - ], - "variance": [ - 4950 - ], - "__typename": [ - 85 - ] - }, - "team_invites_aggregate_order_by": { - "avg": [ - 4919 - ], - "count": [ - 3648 - ], - "max": [ - 4925 - ], - "min": [ - 4927 - ], - "stddev": [ - 4935 - ], - "stddev_pop": [ - 4937 - ], - "stddev_samp": [ - 4939 - ], - "sum": [ - 4943 - ], - "var_pop": [ - 4947 - ], - "var_samp": [ - 4949 - ], - "variance": [ - 4951 - ], - "__typename": [ - 85 - ] - }, - "team_invites_arr_rel_insert_input": { - "data": [ - 4923 - ], - "on_conflict": [ - 4929 - ], - "__typename": [ - 85 - ] - }, - "team_invites_avg_fields": { - "invited_by_player_steam_id": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_invites_avg_order_by": { - "invited_by_player_steam_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_invites_bool_exp": { - "_and": [ - 4920 - ], - "_not": [ - 4920 - ], - "_or": [ - 4920 - ], - "created_at": [ - 5244 - ], - "id": [ - 6674 - ], - "invited_by": [ - 4610 - ], - "invited_by_player_steam_id": [ - 314 - ], - "player": [ - 4610 - ], - "steam_id": [ - 314 - ], - "team": [ - 5205 - ], - "team_id": [ - 6674 - ], - "__typename": [ - 85 - ] - }, - "team_invites_constraint": {}, - "team_invites_inc_input": { - "invited_by_player_steam_id": [ - 312 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "team_invites_insert_input": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "invited_by": [ - 4617 - ], - "invited_by_player_steam_id": [ - 312 - ], - "player": [ - 4617 - ], - "steam_id": [ - 312 - ], - "team": [ - 5214 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "team_invites_max_fields": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "invited_by_player_steam_id": [ - 312 - ], - "steam_id": [ - 312 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "team_invites_max_order_by": { - "created_at": [ - 3648 - ], - "id": [ - 3648 - ], - "invited_by_player_steam_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "team_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_invites_min_fields": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "invited_by_player_steam_id": [ - 312 - ], - "steam_id": [ - 312 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "team_invites_min_order_by": { - "created_at": [ - 3648 - ], - "id": [ - 3648 - ], - "invited_by_player_steam_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "team_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_invites_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 4911 - ], - "__typename": [ - 85 - ] - }, - "team_invites_on_conflict": { - "constraint": [ - 4921 - ], - "update_columns": [ - 4944 - ], - "where": [ - 4920 - ], - "__typename": [ - 85 - ] - }, - "team_invites_order_by": { - "created_at": [ - 3648 - ], - "id": [ - 3648 - ], - "invited_by": [ - 4619 - ], - "invited_by_player_steam_id": [ - 3648 - ], - "player": [ - 4619 - ], - "steam_id": [ - 3648 - ], - "team": [ - 5216 - ], - "team_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_invites_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "team_invites_select_column": {}, - "team_invites_set_input": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "invited_by_player_steam_id": [ - 312 - ], - "steam_id": [ - 312 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "team_invites_stddev_fields": { - "invited_by_player_steam_id": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_invites_stddev_order_by": { - "invited_by_player_steam_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_invites_stddev_pop_fields": { - "invited_by_player_steam_id": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_invites_stddev_pop_order_by": { - "invited_by_player_steam_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_invites_stddev_samp_fields": { - "invited_by_player_steam_id": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_invites_stddev_samp_order_by": { - "invited_by_player_steam_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_invites_stream_cursor_input": { - "initial_value": [ - 4941 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "team_invites_stream_cursor_value_input": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "invited_by_player_steam_id": [ - 312 - ], - "steam_id": [ - 312 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "team_invites_sum_fields": { - "invited_by_player_steam_id": [ - 312 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "team_invites_sum_order_by": { - "invited_by_player_steam_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_invites_update_column": {}, - "team_invites_updates": { - "_inc": [ - 4922 - ], - "_set": [ - 4933 - ], - "where": [ - 4920 - ], - "__typename": [ - 85 - ] - }, - "team_invites_var_pop_fields": { - "invited_by_player_steam_id": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_invites_var_pop_order_by": { - "invited_by_player_steam_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_invites_var_samp_fields": { - "invited_by_player_steam_id": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_invites_var_samp_order_by": { - "invited_by_player_steam_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_invites_variance_fields": { - "invited_by_player_steam_id": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_invites_variance_order_by": { - "invited_by_player_steam_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_roster": { - "coach": [ - 6 - ], - "player": [ - 4606 - ], - "player_steam_id": [ - 312 - ], - "role": [ - 1493 - ], - "roster_image_url": [ - 85 - ], - "status": [ - 1514 - ], - "team": [ - 5194 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "team_roster_aggregate": { - "aggregate": [ - 4958 - ], - "nodes": [ - 4952 - ], - "__typename": [ - 85 - ] - }, - "team_roster_aggregate_bool_exp": { - "bool_and": [ - 4955 - ], - "bool_or": [ - 4956 - ], - "count": [ - 4957 - ], - "__typename": [ - 85 - ] - }, - "team_roster_aggregate_bool_exp_bool_and": { - "arguments": [ - 4976 - ], - "distinct": [ - 6 - ], - "filter": [ - 4963 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "team_roster_aggregate_bool_exp_bool_or": { - "arguments": [ - 4977 - ], - "distinct": [ - 6 - ], - "filter": [ - 4963 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "team_roster_aggregate_bool_exp_count": { - "arguments": [ - 4975 - ], - "distinct": [ - 6 - ], - "filter": [ - 4963 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "team_roster_aggregate_fields": { - "avg": [ - 4961 - ], - "count": [ - 41, - { - "columns": [ - 4975, - "[team_roster_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 4967 - ], - "min": [ - 4969 - ], - "stddev": [ - 4979 - ], - "stddev_pop": [ - 4981 - ], - "stddev_samp": [ - 4983 - ], - "sum": [ - 4987 - ], - "var_pop": [ - 4991 - ], - "var_samp": [ - 4993 - ], - "variance": [ - 4995 - ], - "__typename": [ - 85 - ] - }, - "team_roster_aggregate_order_by": { - "avg": [ - 4962 - ], - "count": [ - 3648 - ], - "max": [ - 4968 - ], - "min": [ - 4970 - ], - "stddev": [ - 4980 - ], - "stddev_pop": [ - 4982 - ], - "stddev_samp": [ - 4984 - ], - "sum": [ - 4988 - ], - "var_pop": [ - 4992 - ], - "var_samp": [ - 4994 - ], - "variance": [ - 4996 - ], - "__typename": [ - 85 - ] - }, - "team_roster_arr_rel_insert_input": { - "data": [ - 4966 - ], - "on_conflict": [ - 4972 - ], - "__typename": [ - 85 - ] - }, - "team_roster_avg_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_roster_avg_order_by": { - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_roster_bool_exp": { - "_and": [ - 4963 - ], - "_not": [ - 4963 - ], - "_or": [ - 4963 - ], - "coach": [ - 7 - ], - "player": [ - 4610 - ], - "player_steam_id": [ - 314 - ], - "role": [ - 1494 - ], - "roster_image_url": [ - 87 - ], - "status": [ - 1515 - ], - "team": [ - 5205 - ], - "team_id": [ - 6674 - ], - "__typename": [ - 85 - ] - }, - "team_roster_constraint": {}, - "team_roster_inc_input": { - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "team_roster_insert_input": { - "coach": [ - 6 - ], - "player": [ - 4617 - ], - "player_steam_id": [ - 312 - ], - "role": [ - 1493 - ], - "roster_image_url": [ - 85 - ], - "status": [ - 1514 - ], - "team": [ - 5214 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "team_roster_max_fields": { - "player_steam_id": [ - 312 - ], - "roster_image_url": [ - 85 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "team_roster_max_order_by": { - "player_steam_id": [ - 3648 - ], - "roster_image_url": [ - 3648 - ], - "team_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_roster_min_fields": { - "player_steam_id": [ - 312 - ], - "roster_image_url": [ - 85 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "team_roster_min_order_by": { - "player_steam_id": [ - 3648 - ], - "roster_image_url": [ - 3648 - ], - "team_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_roster_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 4952 - ], - "__typename": [ - 85 - ] - }, - "team_roster_on_conflict": { - "constraint": [ - 4964 - ], - "update_columns": [ - 4989 - ], - "where": [ - 4963 - ], - "__typename": [ - 85 - ] - }, - "team_roster_order_by": { - "coach": [ - 3648 - ], - "player": [ - 4619 - ], - "player_steam_id": [ - 3648 - ], - "role": [ - 3648 - ], - "roster_image_url": [ - 3648 - ], - "status": [ - 3648 - ], - "team": [ - 5216 - ], - "team_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_roster_pk_columns_input": { - "player_steam_id": [ - 312 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "team_roster_select_column": {}, - "team_roster_select_column_team_roster_aggregate_bool_exp_bool_and_arguments_columns": {}, - "team_roster_select_column_team_roster_aggregate_bool_exp_bool_or_arguments_columns": {}, - "team_roster_set_input": { - "coach": [ - 6 - ], - "player_steam_id": [ - 312 - ], - "role": [ - 1493 - ], - "roster_image_url": [ - 85 - ], - "status": [ - 1514 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "team_roster_stddev_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_roster_stddev_order_by": { - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_roster_stddev_pop_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_roster_stddev_pop_order_by": { - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_roster_stddev_samp_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_roster_stddev_samp_order_by": { - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_roster_stream_cursor_input": { - "initial_value": [ - 4986 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "team_roster_stream_cursor_value_input": { - "coach": [ - 6 - ], - "player_steam_id": [ - 312 - ], - "role": [ - 1493 - ], - "roster_image_url": [ - 85 - ], - "status": [ - 1514 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "team_roster_sum_fields": { - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "team_roster_sum_order_by": { - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_roster_update_column": {}, - "team_roster_updates": { - "_inc": [ - 4965 - ], - "_set": [ - 4978 - ], - "where": [ - 4963 - ], - "__typename": [ - 85 - ] - }, - "team_roster_var_pop_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_roster_var_pop_order_by": { - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_roster_var_samp_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_roster_var_samp_order_by": { - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_roster_variance_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_roster_variance_order_by": { - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_alerts": { - "created_at": [ - 5243 - ], - "elo_max": [ - 41 - ], - "elo_min": [ - 41 - ], - "enabled": [ - 6 - ], - "id": [ - 6672 - ], - "last_notified_at": [ - 5243 - ], - "regions": [ - 85 - ], - "team": [ - 5194 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_alerts_aggregate": { - "aggregate": [ - 4999 - ], - "nodes": [ - 4997 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_alerts_aggregate_fields": { - "avg": [ - 5000 - ], - "count": [ - 41, - { - "columns": [ - 5011, - "[team_scrim_alerts_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 5005 - ], - "min": [ - 5006 - ], - "stddev": [ - 5013 - ], - "stddev_pop": [ - 5014 - ], - "stddev_samp": [ - 5015 - ], - "sum": [ - 5018 - ], - "var_pop": [ - 5021 - ], - "var_samp": [ - 5022 - ], - "variance": [ - 5023 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_alerts_avg_fields": { - "elo_max": [ - 32 - ], - "elo_min": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_alerts_bool_exp": { - "_and": [ - 5001 - ], - "_not": [ - 5001 - ], - "_or": [ - 5001 - ], - "created_at": [ - 5244 - ], - "elo_max": [ - 42 - ], - "elo_min": [ - 42 - ], - "enabled": [ - 7 - ], - "id": [ - 6674 - ], - "last_notified_at": [ - 5244 - ], - "regions": [ - 86 - ], - "team": [ - 5205 - ], - "team_id": [ - 6674 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_alerts_constraint": {}, - "team_scrim_alerts_inc_input": { - "elo_max": [ - 41 - ], - "elo_min": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_alerts_insert_input": { - "created_at": [ - 5243 - ], - "elo_max": [ - 41 - ], - "elo_min": [ - 41 - ], - "enabled": [ - 6 - ], - "id": [ - 6672 - ], - "last_notified_at": [ - 5243 - ], - "regions": [ - 85 - ], - "team": [ - 5214 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_alerts_max_fields": { - "created_at": [ - 5243 - ], - "elo_max": [ - 41 - ], - "elo_min": [ - 41 - ], - "id": [ - 6672 - ], - "last_notified_at": [ - 5243 - ], - "regions": [ - 85 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_alerts_min_fields": { - "created_at": [ - 5243 - ], - "elo_max": [ - 41 - ], - "elo_min": [ - 41 - ], - "id": [ - 6672 - ], - "last_notified_at": [ - 5243 - ], - "regions": [ - 85 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_alerts_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 4997 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_alerts_on_conflict": { - "constraint": [ - 5002 - ], - "update_columns": [ - 5019 - ], - "where": [ - 5001 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_alerts_order_by": { - "created_at": [ - 3648 - ], - "elo_max": [ - 3648 - ], - "elo_min": [ - 3648 - ], - "enabled": [ - 3648 - ], - "id": [ - 3648 - ], - "last_notified_at": [ - 3648 - ], - "regions": [ - 3648 - ], - "team": [ - 5216 - ], - "team_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_alerts_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_alerts_select_column": {}, - "team_scrim_alerts_set_input": { - "created_at": [ - 5243 - ], - "elo_max": [ - 41 - ], - "elo_min": [ - 41 - ], - "enabled": [ - 6 - ], - "id": [ - 6672 - ], - "last_notified_at": [ - 5243 - ], - "regions": [ - 85 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_alerts_stddev_fields": { - "elo_max": [ - 32 - ], - "elo_min": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_alerts_stddev_pop_fields": { - "elo_max": [ - 32 - ], - "elo_min": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_alerts_stddev_samp_fields": { - "elo_max": [ - 32 - ], - "elo_min": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_alerts_stream_cursor_input": { - "initial_value": [ - 5017 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_alerts_stream_cursor_value_input": { - "created_at": [ - 5243 - ], - "elo_max": [ - 41 - ], - "elo_min": [ - 41 - ], - "enabled": [ - 6 - ], - "id": [ - 6672 - ], - "last_notified_at": [ - 5243 - ], - "regions": [ - 85 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_alerts_sum_fields": { - "elo_max": [ - 41 - ], - "elo_min": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_alerts_update_column": {}, - "team_scrim_alerts_updates": { - "_inc": [ - 5003 - ], - "_set": [ - 5012 - ], - "where": [ - 5001 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_alerts_var_pop_fields": { - "elo_max": [ - 32 - ], - "elo_min": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_alerts_var_samp_fields": { - "elo_max": [ - 32 - ], - "elo_min": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_alerts_variance_fields": { - "elo_max": [ - 32 - ], - "elo_min": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_availability": { - "created_at": [ - 5243 - ], - "ends_at": [ - 5243 - ], - "id": [ - 6672 - ], - "recurring_weekly": [ - 6 - ], - "starts_at": [ - 5243 - ], - "team": [ - 5194 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_availability_aggregate": { - "aggregate": [ - 5030 - ], - "nodes": [ - 5024 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_availability_aggregate_bool_exp": { - "bool_and": [ - 5027 - ], - "bool_or": [ - 5028 - ], - "count": [ - 5029 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_availability_aggregate_bool_exp_bool_and": { - "arguments": [ - 5045 - ], - "distinct": [ - 6 - ], - "filter": [ - 5033 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_availability_aggregate_bool_exp_bool_or": { - "arguments": [ - 5046 - ], - "distinct": [ - 6 - ], - "filter": [ - 5033 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_availability_aggregate_bool_exp_count": { - "arguments": [ - 5044 - ], - "distinct": [ - 6 - ], - "filter": [ - 5033 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_availability_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 5044, - "[team_scrim_availability_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 5036 - ], - "min": [ - 5038 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_availability_aggregate_order_by": { - "count": [ - 3648 - ], - "max": [ - 5037 - ], - "min": [ - 5039 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_availability_arr_rel_insert_input": { - "data": [ - 5035 - ], - "on_conflict": [ - 5041 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_availability_bool_exp": { - "_and": [ - 5033 - ], - "_not": [ - 5033 - ], - "_or": [ - 5033 - ], - "created_at": [ - 5244 - ], - "ends_at": [ - 5244 - ], - "id": [ - 6674 - ], - "recurring_weekly": [ - 7 - ], - "starts_at": [ - 5244 - ], - "team": [ - 5205 - ], - "team_id": [ - 6674 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_availability_constraint": {}, - "team_scrim_availability_insert_input": { - "created_at": [ - 5243 - ], - "ends_at": [ - 5243 - ], - "id": [ - 6672 - ], - "recurring_weekly": [ - 6 - ], - "starts_at": [ - 5243 - ], - "team": [ - 5214 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_availability_max_fields": { - "created_at": [ - 5243 - ], - "ends_at": [ - 5243 - ], - "id": [ - 6672 - ], - "starts_at": [ - 5243 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_availability_max_order_by": { - "created_at": [ - 3648 - ], - "ends_at": [ - 3648 - ], - "id": [ - 3648 - ], - "starts_at": [ - 3648 - ], - "team_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_availability_min_fields": { - "created_at": [ - 5243 - ], - "ends_at": [ - 5243 - ], - "id": [ - 6672 - ], - "starts_at": [ - 5243 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_availability_min_order_by": { - "created_at": [ - 3648 - ], - "ends_at": [ - 3648 - ], - "id": [ - 3648 - ], - "starts_at": [ - 3648 - ], - "team_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_availability_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 5024 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_availability_on_conflict": { - "constraint": [ - 5034 - ], - "update_columns": [ - 5050 - ], - "where": [ - 5033 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_availability_order_by": { - "created_at": [ - 3648 - ], - "ends_at": [ - 3648 - ], - "id": [ - 3648 - ], - "recurring_weekly": [ - 3648 - ], - "starts_at": [ - 3648 - ], - "team": [ - 5216 - ], - "team_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_availability_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_availability_select_column": {}, - "team_scrim_availability_select_column_team_scrim_availability_aggregate_bool_exp_bool_and_arguments_columns": {}, - "team_scrim_availability_select_column_team_scrim_availability_aggregate_bool_exp_bool_or_arguments_columns": {}, - "team_scrim_availability_set_input": { - "created_at": [ - 5243 - ], - "ends_at": [ - 5243 - ], - "id": [ - 6672 - ], - "recurring_weekly": [ - 6 - ], - "starts_at": [ - 5243 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_availability_stream_cursor_input": { - "initial_value": [ - 5049 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_availability_stream_cursor_value_input": { - "created_at": [ - 5243 - ], - "ends_at": [ - 5243 - ], - "id": [ - 6672 - ], - "recurring_weekly": [ - 6 - ], - "starts_at": [ - 5243 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_availability_update_column": {}, - "team_scrim_availability_updates": { - "_set": [ - 5047 - ], - "where": [ - 5033 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_request_proposals": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "proposed_by": [ - 4606 - ], - "proposed_by_steam_id": [ - 312 - ], - "proposed_by_team": [ - 5194 - ], - "proposed_by_team_id": [ - 6672 - ], - "proposed_scheduled_at": [ - 5243 - ], - "request": [ - 5093 - ], - "request_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_request_proposals_aggregate": { - "aggregate": [ - 5056 - ], - "nodes": [ - 5052 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_request_proposals_aggregate_bool_exp": { - "count": [ - 5055 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_request_proposals_aggregate_bool_exp_count": { - "arguments": [ - 5073 - ], - "distinct": [ - 6 - ], - "filter": [ - 5061 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_request_proposals_aggregate_fields": { - "avg": [ - 5059 - ], - "count": [ - 41, - { - "columns": [ - 5073, - "[team_scrim_request_proposals_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 5065 - ], - "min": [ - 5067 - ], - "stddev": [ - 5075 - ], - "stddev_pop": [ - 5077 - ], - "stddev_samp": [ - 5079 - ], - "sum": [ - 5083 - ], - "var_pop": [ - 5087 - ], - "var_samp": [ - 5089 - ], - "variance": [ - 5091 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_request_proposals_aggregate_order_by": { - "avg": [ - 5060 - ], - "count": [ - 3648 - ], - "max": [ - 5066 - ], - "min": [ - 5068 - ], - "stddev": [ - 5076 - ], - "stddev_pop": [ - 5078 - ], - "stddev_samp": [ - 5080 - ], - "sum": [ - 5084 - ], - "var_pop": [ - 5088 - ], - "var_samp": [ - 5090 - ], - "variance": [ - 5092 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_request_proposals_arr_rel_insert_input": { - "data": [ - 5064 - ], - "on_conflict": [ - 5070 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_request_proposals_avg_fields": { - "proposed_by_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_request_proposals_avg_order_by": { - "proposed_by_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_request_proposals_bool_exp": { - "_and": [ - 5061 - ], - "_not": [ - 5061 - ], - "_or": [ - 5061 - ], - "created_at": [ - 5244 - ], - "id": [ - 6674 - ], - "proposed_by": [ - 4610 - ], - "proposed_by_steam_id": [ - 314 - ], - "proposed_by_team": [ - 5205 - ], - "proposed_by_team_id": [ - 6674 - ], - "proposed_scheduled_at": [ - 5244 - ], - "request": [ - 5104 - ], - "request_id": [ - 6674 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_request_proposals_constraint": {}, - "team_scrim_request_proposals_inc_input": { - "proposed_by_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_request_proposals_insert_input": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "proposed_by": [ - 4617 - ], - "proposed_by_steam_id": [ - 312 - ], - "proposed_by_team": [ - 5214 - ], - "proposed_by_team_id": [ - 6672 - ], - "proposed_scheduled_at": [ - 5243 - ], - "request": [ - 5113 - ], - "request_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_request_proposals_max_fields": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "proposed_by_steam_id": [ - 312 - ], - "proposed_by_team_id": [ - 6672 - ], - "proposed_scheduled_at": [ - 5243 - ], - "request_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_request_proposals_max_order_by": { - "created_at": [ - 3648 - ], - "id": [ - 3648 - ], - "proposed_by_steam_id": [ - 3648 - ], - "proposed_by_team_id": [ - 3648 - ], - "proposed_scheduled_at": [ - 3648 - ], - "request_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_request_proposals_min_fields": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "proposed_by_steam_id": [ - 312 - ], - "proposed_by_team_id": [ - 6672 - ], - "proposed_scheduled_at": [ - 5243 - ], - "request_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_request_proposals_min_order_by": { - "created_at": [ - 3648 - ], - "id": [ - 3648 - ], - "proposed_by_steam_id": [ - 3648 - ], - "proposed_by_team_id": [ - 3648 - ], - "proposed_scheduled_at": [ - 3648 - ], - "request_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_request_proposals_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 5052 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_request_proposals_on_conflict": { - "constraint": [ - 5062 - ], - "update_columns": [ - 5085 - ], - "where": [ - 5061 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_request_proposals_order_by": { - "created_at": [ - 3648 - ], - "id": [ - 3648 - ], - "proposed_by": [ - 4619 - ], - "proposed_by_steam_id": [ - 3648 - ], - "proposed_by_team": [ - 5216 - ], - "proposed_by_team_id": [ - 3648 - ], - "proposed_scheduled_at": [ - 3648 - ], - "request": [ - 5115 - ], - "request_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_request_proposals_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_request_proposals_select_column": {}, - "team_scrim_request_proposals_set_input": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "proposed_by_steam_id": [ - 312 - ], - "proposed_by_team_id": [ - 6672 - ], - "proposed_scheduled_at": [ - 5243 - ], - "request_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_request_proposals_stddev_fields": { - "proposed_by_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_request_proposals_stddev_order_by": { - "proposed_by_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_request_proposals_stddev_pop_fields": { - "proposed_by_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_request_proposals_stddev_pop_order_by": { - "proposed_by_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_request_proposals_stddev_samp_fields": { - "proposed_by_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_request_proposals_stddev_samp_order_by": { - "proposed_by_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_request_proposals_stream_cursor_input": { - "initial_value": [ - 5082 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_request_proposals_stream_cursor_value_input": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "proposed_by_steam_id": [ - 312 - ], - "proposed_by_team_id": [ - 6672 - ], - "proposed_scheduled_at": [ - 5243 - ], - "request_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_request_proposals_sum_fields": { - "proposed_by_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_request_proposals_sum_order_by": { - "proposed_by_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_request_proposals_update_column": {}, - "team_scrim_request_proposals_updates": { - "_inc": [ - 5063 - ], - "_set": [ - 5074 - ], - "where": [ - 5061 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_request_proposals_var_pop_fields": { - "proposed_by_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_request_proposals_var_pop_order_by": { - "proposed_by_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_request_proposals_var_samp_fields": { - "proposed_by_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_request_proposals_var_samp_order_by": { - "proposed_by_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_request_proposals_variance_fields": { - "proposed_by_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_request_proposals_variance_order_by": { - "proposed_by_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_requests": { - "auto_generated": [ - 6 - ], - "awaiting_team": [ - 5194 - ], - "awaiting_team_id": [ - 6672 - ], - "canceled_by_team_id": [ - 6672 - ], - "canceled_late": [ - 6 - ], - "created_at": [ - 5243 - ], - "expires_at": [ - 5243 - ], - "from_team": [ - 5194 - ], - "from_team_checked_in": [ - 6 - ], - "from_team_id": [ - 6672 - ], - "id": [ - 6672 - ], - "match": [ - 3432 - ], - "match_id": [ - 6672 - ], - "match_options": [ - 3290 - ], - "match_options_id": [ - 6672 - ], - "match_outcome": [ - 85 - ], - "proposals": [ - 5052, - { - "distinct_on": [ - 5073, - "[team_scrim_request_proposals_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5071, - "[team_scrim_request_proposals_order_by!]" - ], - "where": [ - 5061 - ] - } - ], - "proposals_aggregate": [ - 5053, - { - "distinct_on": [ - 5073, - "[team_scrim_request_proposals_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5071, - "[team_scrim_request_proposals_order_by!]" - ], - "where": [ - 5061 - ] - } - ], - "proposed_scheduled_at": [ - 5243 - ], - "region": [ - 85 - ], - "requested_by": [ - 4606 - ], - "requested_by_steam_id": [ - 312 - ], - "responded_at": [ - 5243 - ], - "status": [ - 1413 - ], - "to_team": [ - 5194 - ], - "to_team_checked_in": [ - 6 - ], - "to_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_requests_aggregate": { - "aggregate": [ - 5099 - ], - "nodes": [ - 5093 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_requests_aggregate_bool_exp": { - "bool_and": [ - 5096 - ], - "bool_or": [ - 5097 - ], - "count": [ - 5098 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_requests_aggregate_bool_exp_bool_and": { - "arguments": [ - 5118 - ], - "distinct": [ - 6 - ], - "filter": [ - 5104 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_requests_aggregate_bool_exp_bool_or": { - "arguments": [ - 5119 - ], - "distinct": [ - 6 - ], - "filter": [ - 5104 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_requests_aggregate_bool_exp_count": { - "arguments": [ - 5117 - ], - "distinct": [ - 6 - ], - "filter": [ - 5104 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_requests_aggregate_fields": { - "avg": [ - 5102 - ], - "count": [ - 41, - { - "columns": [ - 5117, - "[team_scrim_requests_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 5108 - ], - "min": [ - 5110 - ], - "stddev": [ - 5121 - ], - "stddev_pop": [ - 5123 - ], - "stddev_samp": [ - 5125 - ], - "sum": [ - 5129 - ], - "var_pop": [ - 5133 - ], - "var_samp": [ - 5135 - ], - "variance": [ - 5137 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_requests_aggregate_order_by": { - "avg": [ - 5103 - ], - "count": [ - 3648 - ], - "max": [ - 5109 - ], - "min": [ - 5111 - ], - "stddev": [ - 5122 - ], - "stddev_pop": [ - 5124 - ], - "stddev_samp": [ - 5126 - ], - "sum": [ - 5130 - ], - "var_pop": [ - 5134 - ], - "var_samp": [ - 5136 - ], - "variance": [ - 5138 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_requests_arr_rel_insert_input": { - "data": [ - 5107 - ], - "on_conflict": [ - 5114 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_requests_avg_fields": { - "requested_by_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_requests_avg_order_by": { - "requested_by_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_requests_bool_exp": { - "_and": [ - 5104 - ], - "_not": [ - 5104 - ], - "_or": [ - 5104 - ], - "auto_generated": [ - 7 - ], - "awaiting_team": [ - 5205 - ], - "awaiting_team_id": [ - 6674 - ], - "canceled_by_team_id": [ - 6674 - ], - "canceled_late": [ - 7 - ], - "created_at": [ - 5244 - ], - "expires_at": [ - 5244 - ], - "from_team": [ - 5205 - ], - "from_team_checked_in": [ - 7 - ], - "from_team_id": [ - 6674 - ], - "id": [ - 6674 - ], - "match": [ - 3443 - ], - "match_id": [ - 6674 - ], - "match_options": [ - 3301 - ], - "match_options_id": [ - 6674 - ], - "match_outcome": [ - 87 - ], - "proposals": [ - 5061 - ], - "proposals_aggregate": [ - 5054 - ], - "proposed_scheduled_at": [ - 5244 - ], - "region": [ - 87 - ], - "requested_by": [ - 4610 - ], - "requested_by_steam_id": [ - 314 - ], - "responded_at": [ - 5244 - ], - "status": [ - 1414 - ], - "to_team": [ - 5205 - ], - "to_team_checked_in": [ - 7 - ], - "to_team_id": [ - 6674 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_requests_constraint": {}, - "team_scrim_requests_inc_input": { - "requested_by_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_requests_insert_input": { - "auto_generated": [ - 6 - ], - "awaiting_team": [ - 5214 - ], - "awaiting_team_id": [ - 6672 - ], - "canceled_by_team_id": [ - 6672 - ], - "canceled_late": [ - 6 - ], - "created_at": [ - 5243 - ], - "expires_at": [ - 5243 - ], - "from_team": [ - 5214 - ], - "from_team_checked_in": [ - 6 - ], - "from_team_id": [ - 6672 - ], - "id": [ - 6672 - ], - "match": [ - 3452 - ], - "match_id": [ - 6672 - ], - "match_options": [ - 3310 - ], - "match_options_id": [ - 6672 - ], - "match_outcome": [ - 85 - ], - "proposals": [ - 5058 - ], - "proposed_scheduled_at": [ - 5243 - ], - "region": [ - 85 - ], - "requested_by": [ - 4617 - ], - "requested_by_steam_id": [ - 312 - ], - "responded_at": [ - 5243 - ], - "status": [ - 1413 - ], - "to_team": [ - 5214 - ], - "to_team_checked_in": [ - 6 - ], - "to_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_requests_max_fields": { - "awaiting_team_id": [ - 6672 - ], - "canceled_by_team_id": [ - 6672 - ], - "created_at": [ - 5243 - ], - "expires_at": [ - 5243 - ], - "from_team_id": [ - 6672 - ], - "id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "match_options_id": [ - 6672 - ], - "match_outcome": [ - 85 - ], - "proposed_scheduled_at": [ - 5243 - ], - "region": [ - 85 - ], - "requested_by_steam_id": [ - 312 - ], - "responded_at": [ - 5243 - ], - "to_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_requests_max_order_by": { - "awaiting_team_id": [ - 3648 - ], - "canceled_by_team_id": [ - 3648 - ], - "created_at": [ - 3648 - ], - "expires_at": [ - 3648 - ], - "from_team_id": [ - 3648 - ], - "id": [ - 3648 - ], - "match_id": [ - 3648 - ], - "match_options_id": [ - 3648 - ], - "match_outcome": [ - 3648 - ], - "proposed_scheduled_at": [ - 3648 - ], - "region": [ - 3648 - ], - "requested_by_steam_id": [ - 3648 - ], - "responded_at": [ - 3648 - ], - "to_team_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_requests_min_fields": { - "awaiting_team_id": [ - 6672 - ], - "canceled_by_team_id": [ - 6672 - ], - "created_at": [ - 5243 - ], - "expires_at": [ - 5243 - ], - "from_team_id": [ - 6672 - ], - "id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "match_options_id": [ - 6672 - ], - "match_outcome": [ - 85 - ], - "proposed_scheduled_at": [ - 5243 - ], - "region": [ - 85 - ], - "requested_by_steam_id": [ - 312 - ], - "responded_at": [ - 5243 - ], - "to_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_requests_min_order_by": { - "awaiting_team_id": [ - 3648 - ], - "canceled_by_team_id": [ - 3648 - ], - "created_at": [ - 3648 - ], - "expires_at": [ - 3648 - ], - "from_team_id": [ - 3648 - ], - "id": [ - 3648 - ], - "match_id": [ - 3648 - ], - "match_options_id": [ - 3648 - ], - "match_outcome": [ - 3648 - ], - "proposed_scheduled_at": [ - 3648 - ], - "region": [ - 3648 - ], - "requested_by_steam_id": [ - 3648 - ], - "responded_at": [ - 3648 - ], - "to_team_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_requests_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 5093 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_requests_obj_rel_insert_input": { - "data": [ - 5107 - ], - "on_conflict": [ - 5114 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_requests_on_conflict": { - "constraint": [ - 5105 - ], - "update_columns": [ - 5131 - ], - "where": [ - 5104 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_requests_order_by": { - "auto_generated": [ - 3648 - ], - "awaiting_team": [ - 5216 - ], - "awaiting_team_id": [ - 3648 - ], - "canceled_by_team_id": [ - 3648 - ], - "canceled_late": [ - 3648 - ], - "created_at": [ - 3648 - ], - "expires_at": [ - 3648 - ], - "from_team": [ - 5216 - ], - "from_team_checked_in": [ - 3648 - ], - "from_team_id": [ - 3648 - ], - "id": [ - 3648 - ], - "match": [ - 3454 - ], - "match_id": [ - 3648 - ], - "match_options": [ - 3312 - ], - "match_options_id": [ - 3648 - ], - "match_outcome": [ - 3648 - ], - "proposals_aggregate": [ - 5057 - ], - "proposed_scheduled_at": [ - 3648 - ], - "region": [ - 3648 - ], - "requested_by": [ - 4619 - ], - "requested_by_steam_id": [ - 3648 - ], - "responded_at": [ - 3648 - ], - "status": [ - 3648 - ], - "to_team": [ - 5216 - ], - "to_team_checked_in": [ - 3648 - ], - "to_team_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_requests_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_requests_select_column": {}, - "team_scrim_requests_select_column_team_scrim_requests_aggregate_bool_exp_bool_and_arguments_columns": {}, - "team_scrim_requests_select_column_team_scrim_requests_aggregate_bool_exp_bool_or_arguments_columns": {}, - "team_scrim_requests_set_input": { - "auto_generated": [ - 6 - ], - "awaiting_team_id": [ - 6672 - ], - "canceled_by_team_id": [ - 6672 - ], - "canceled_late": [ - 6 - ], - "created_at": [ - 5243 - ], - "expires_at": [ - 5243 - ], - "from_team_checked_in": [ - 6 - ], - "from_team_id": [ - 6672 - ], - "id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "match_options_id": [ - 6672 - ], - "match_outcome": [ - 85 - ], - "proposed_scheduled_at": [ - 5243 - ], - "region": [ - 85 - ], - "requested_by_steam_id": [ - 312 - ], - "responded_at": [ - 5243 - ], - "status": [ - 1413 - ], - "to_team_checked_in": [ - 6 - ], - "to_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_requests_stddev_fields": { - "requested_by_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_requests_stddev_order_by": { - "requested_by_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_requests_stddev_pop_fields": { - "requested_by_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_requests_stddev_pop_order_by": { - "requested_by_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_requests_stddev_samp_fields": { - "requested_by_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_requests_stddev_samp_order_by": { - "requested_by_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_requests_stream_cursor_input": { - "initial_value": [ - 5128 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_requests_stream_cursor_value_input": { - "auto_generated": [ - 6 - ], - "awaiting_team_id": [ - 6672 - ], - "canceled_by_team_id": [ - 6672 - ], - "canceled_late": [ - 6 - ], - "created_at": [ - 5243 - ], - "expires_at": [ - 5243 - ], - "from_team_checked_in": [ - 6 - ], - "from_team_id": [ - 6672 - ], - "id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "match_options_id": [ - 6672 - ], - "match_outcome": [ - 85 - ], - "proposed_scheduled_at": [ - 5243 - ], - "region": [ - 85 - ], - "requested_by_steam_id": [ - 312 - ], - "responded_at": [ - 5243 - ], - "status": [ - 1413 - ], - "to_team_checked_in": [ - 6 - ], - "to_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_requests_sum_fields": { - "requested_by_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_requests_sum_order_by": { - "requested_by_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_requests_update_column": {}, - "team_scrim_requests_updates": { - "_inc": [ - 5106 - ], - "_set": [ - 5120 - ], - "where": [ - 5104 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_requests_var_pop_fields": { - "requested_by_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_requests_var_pop_order_by": { - "requested_by_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_requests_var_samp_fields": { - "requested_by_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_requests_var_samp_order_by": { - "requested_by_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_requests_variance_fields": { - "requested_by_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_requests_variance_order_by": { - "requested_by_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_settings": { - "allow_outside_availability": [ - 6 - ], - "created_at": [ - 5243 - ], - "elo_max": [ - 41 - ], - "elo_min": [ - 41 - ], - "enabled": [ - 6 - ], - "id": [ - 6672 - ], - "map_ids": [ - 6672 - ], - "notes": [ - 85 - ], - "regions": [ - 85 - ], - "team": [ - 5194 - ], - "team_id": [ - 6672 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_settings_aggregate": { - "aggregate": [ - 5141 - ], - "nodes": [ - 5139 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_settings_aggregate_fields": { - "avg": [ - 5142 - ], - "count": [ - 41, - { - "columns": [ - 5154, - "[team_scrim_settings_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 5147 - ], - "min": [ - 5148 - ], - "stddev": [ - 5156 - ], - "stddev_pop": [ - 5157 - ], - "stddev_samp": [ - 5158 - ], - "sum": [ - 5161 - ], - "var_pop": [ - 5164 - ], - "var_samp": [ - 5165 - ], - "variance": [ - 5166 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_settings_avg_fields": { - "elo_max": [ - 32 - ], - "elo_min": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_settings_bool_exp": { - "_and": [ - 5143 - ], - "_not": [ - 5143 - ], - "_or": [ - 5143 - ], - "allow_outside_availability": [ - 7 - ], - "created_at": [ - 5244 - ], - "elo_max": [ - 42 - ], - "elo_min": [ - 42 - ], - "enabled": [ - 7 - ], - "id": [ - 6674 - ], - "map_ids": [ - 6673 - ], - "notes": [ - 87 - ], - "regions": [ - 86 - ], - "team": [ - 5205 - ], - "team_id": [ - 6674 - ], - "updated_at": [ - 5244 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_settings_constraint": {}, - "team_scrim_settings_inc_input": { - "elo_max": [ - 41 - ], - "elo_min": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_settings_insert_input": { - "allow_outside_availability": [ - 6 - ], - "created_at": [ - 5243 - ], - "elo_max": [ - 41 - ], - "elo_min": [ - 41 - ], - "enabled": [ - 6 - ], - "id": [ - 6672 - ], - "map_ids": [ - 6672 - ], - "notes": [ - 85 - ], - "regions": [ - 85 - ], - "team": [ - 5214 - ], - "team_id": [ - 6672 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_settings_max_fields": { - "created_at": [ - 5243 - ], - "elo_max": [ - 41 - ], - "elo_min": [ - 41 - ], - "id": [ - 6672 - ], - "map_ids": [ - 6672 - ], - "notes": [ - 85 - ], - "regions": [ - 85 - ], - "team_id": [ - 6672 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_settings_min_fields": { - "created_at": [ - 5243 - ], - "elo_max": [ - 41 - ], - "elo_min": [ - 41 - ], - "id": [ - 6672 - ], - "map_ids": [ - 6672 - ], - "notes": [ - 85 - ], - "regions": [ - 85 - ], - "team_id": [ - 6672 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_settings_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 5139 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_settings_obj_rel_insert_input": { - "data": [ - 5146 - ], - "on_conflict": [ - 5151 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_settings_on_conflict": { - "constraint": [ - 5144 - ], - "update_columns": [ - 5162 - ], - "where": [ - 5143 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_settings_order_by": { - "allow_outside_availability": [ - 3648 - ], - "created_at": [ - 3648 - ], - "elo_max": [ - 3648 - ], - "elo_min": [ - 3648 - ], - "enabled": [ - 3648 - ], - "id": [ - 3648 - ], - "map_ids": [ - 3648 - ], - "notes": [ - 3648 - ], - "regions": [ - 3648 - ], - "team": [ - 5216 - ], - "team_id": [ - 3648 - ], - "updated_at": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_settings_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_settings_select_column": {}, - "team_scrim_settings_set_input": { - "allow_outside_availability": [ - 6 - ], - "created_at": [ - 5243 - ], - "elo_max": [ - 41 - ], - "elo_min": [ - 41 - ], - "enabled": [ - 6 - ], - "id": [ - 6672 - ], - "map_ids": [ - 6672 - ], - "notes": [ - 85 - ], - "regions": [ - 85 - ], - "team_id": [ - 6672 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_settings_stddev_fields": { - "elo_max": [ - 32 - ], - "elo_min": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_settings_stddev_pop_fields": { - "elo_max": [ - 32 - ], - "elo_min": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_settings_stddev_samp_fields": { - "elo_max": [ - 32 - ], - "elo_min": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_settings_stream_cursor_input": { - "initial_value": [ - 5160 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_settings_stream_cursor_value_input": { - "allow_outside_availability": [ - 6 - ], - "created_at": [ - 5243 - ], - "elo_max": [ - 41 - ], - "elo_min": [ - 41 - ], - "enabled": [ - 6 - ], - "id": [ - 6672 - ], - "map_ids": [ - 6672 - ], - "notes": [ - 85 - ], - "regions": [ - 85 - ], - "team_id": [ - 6672 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_settings_sum_fields": { - "elo_max": [ - 41 - ], - "elo_min": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_settings_update_column": {}, - "team_scrim_settings_updates": { - "_inc": [ - 5145 - ], - "_set": [ - 5155 - ], - "where": [ - 5143 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_settings_var_pop_fields": { - "elo_max": [ - 32 - ], - "elo_min": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_settings_var_samp_fields": { - "elo_max": [ - 32 - ], - "elo_min": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_scrim_settings_variance_fields": { - "elo_max": [ - 32 - ], - "elo_min": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_suggestions": { - "created_at": [ - 5243 - ], - "group_hash": [ - 85 - ], - "id": [ - 6672 - ], - "last_notified_at": [ - 5243 - ], - "member_steam_ids": [ - 312 - ], - "status": [ - 85 - ], - "together_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "team_suggestions_aggregate": { - "aggregate": [ - 5169 - ], - "nodes": [ - 5167 - ], - "__typename": [ - 85 - ] - }, - "team_suggestions_aggregate_fields": { - "avg": [ - 5170 - ], - "count": [ - 41, - { - "columns": [ - 5181, - "[team_suggestions_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 5175 - ], - "min": [ - 5176 - ], - "stddev": [ - 5183 - ], - "stddev_pop": [ - 5184 - ], - "stddev_samp": [ - 5185 - ], - "sum": [ - 5188 - ], - "var_pop": [ - 5191 - ], - "var_samp": [ - 5192 - ], - "variance": [ - 5193 - ], - "__typename": [ - 85 - ] - }, - "team_suggestions_avg_fields": { - "together_count": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_suggestions_bool_exp": { - "_and": [ - 5171 - ], - "_not": [ - 5171 - ], - "_or": [ - 5171 - ], - "created_at": [ - 5244 - ], - "group_hash": [ - 87 - ], - "id": [ - 6674 - ], - "last_notified_at": [ - 5244 - ], - "member_steam_ids": [ - 313 - ], - "status": [ - 87 - ], - "together_count": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "team_suggestions_constraint": {}, - "team_suggestions_inc_input": { - "together_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "team_suggestions_insert_input": { - "created_at": [ - 5243 - ], - "group_hash": [ - 85 - ], - "id": [ - 6672 - ], - "last_notified_at": [ - 5243 - ], - "member_steam_ids": [ - 312 - ], - "status": [ - 85 - ], - "together_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "team_suggestions_max_fields": { - "created_at": [ - 5243 - ], - "group_hash": [ - 85 - ], - "id": [ - 6672 - ], - "last_notified_at": [ - 5243 - ], - "member_steam_ids": [ - 312 - ], - "status": [ - 85 - ], - "together_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "team_suggestions_min_fields": { - "created_at": [ - 5243 - ], - "group_hash": [ - 85 - ], - "id": [ - 6672 - ], - "last_notified_at": [ - 5243 - ], - "member_steam_ids": [ - 312 - ], - "status": [ - 85 - ], - "together_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "team_suggestions_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 5167 - ], - "__typename": [ - 85 - ] - }, - "team_suggestions_on_conflict": { - "constraint": [ - 5172 - ], - "update_columns": [ - 5189 - ], - "where": [ - 5171 - ], - "__typename": [ - 85 - ] - }, - "team_suggestions_order_by": { - "created_at": [ - 3648 - ], - "group_hash": [ - 3648 - ], - "id": [ - 3648 - ], - "last_notified_at": [ - 3648 - ], - "member_steam_ids": [ - 3648 - ], - "status": [ - 3648 - ], - "together_count": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "team_suggestions_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "team_suggestions_select_column": {}, - "team_suggestions_set_input": { - "created_at": [ - 5243 - ], - "group_hash": [ - 85 - ], - "id": [ - 6672 - ], - "last_notified_at": [ - 5243 - ], - "member_steam_ids": [ - 312 - ], - "status": [ - 85 - ], - "together_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "team_suggestions_stddev_fields": { - "together_count": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_suggestions_stddev_pop_fields": { - "together_count": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_suggestions_stddev_samp_fields": { - "together_count": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_suggestions_stream_cursor_input": { - "initial_value": [ - 5187 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "team_suggestions_stream_cursor_value_input": { - "created_at": [ - 5243 - ], - "group_hash": [ - 85 - ], - "id": [ - 6672 - ], - "last_notified_at": [ - 5243 - ], - "member_steam_ids": [ - 312 - ], - "status": [ - 85 - ], - "together_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "team_suggestions_sum_fields": { - "together_count": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "team_suggestions_update_column": {}, - "team_suggestions_updates": { - "_inc": [ - 5173 - ], - "_set": [ - 5182 - ], - "where": [ - 5171 - ], - "__typename": [ - 85 - ] - }, - "team_suggestions_var_pop_fields": { - "together_count": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_suggestions_var_samp_fields": { - "together_count": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "team_suggestions_variance_fields": { - "together_count": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "teams": { - "avatar_url": [ - 85 - ], - "awards": [ - 243, - { - "distinct_on": [ - 264, - "[award_recipients_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 262, - "[award_recipients_order_by!]" - ], - "where": [ - 252 - ] - } - ], - "awards_aggregate": [ - 244, - { - "distinct_on": [ - 264, - "[award_recipients_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 262, - "[award_recipients_order_by!]" - ], - "where": [ - 252 - ] - } - ], - "can_change_role": [ - 6 - ], - "can_invite": [ - 6 - ], - "can_manage_scrims": [ - 6 - ], - "can_remove": [ - 6 - ], - "captain": [ - 4606 - ], - "captain_steam_id": [ - 312 - ], - "id": [ - 6672 - ], - "invites": [ - 4911, - { - "distinct_on": [ - 4932, - "[team_invites_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4930, - "[team_invites_order_by!]" - ], - "where": [ - 4920 - ] - } - ], - "invites_aggregate": [ - 4912, - { - "distinct_on": [ - 4932, - "[team_invites_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4930, - "[team_invites_order_by!]" - ], - "where": [ - 4920 - ] - } - ], - "is_organization": [ - 6 - ], - "match_lineups": [ - 3086, - { - "distinct_on": [ - 3108, - "[match_lineups_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3106, - "[match_lineups_order_by!]" - ], - "where": [ - 3095 - ] - } - ], - "match_lineups_aggregate": [ - 3087, - { - "distinct_on": [ - 3108, - "[match_lineups_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3106, - "[match_lineups_order_by!]" - ], - "where": [ - 3095 - ] - } - ], - "matches": [ - 3432, - { - "distinct_on": [ - 3456, - "[matches_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3454, - "[matches_order_by!]" - ], - "where": [ - 3443 - ] - } - ], - "name": [ - 85 - ], - "owner": [ - 4606 - ], - "owner_steam_id": [ - 312 - ], - "ranks": [ - 7374 - ], - "reputation": [ - 7394 - ], - "role": [ - 85 - ], - "roster": [ - 4952, - { - "distinct_on": [ - 4975, - "[team_roster_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4973, - "[team_roster_order_by!]" - ], - "where": [ - 4963 - ] - } - ], - "roster_aggregate": [ - 4953, - { - "distinct_on": [ - 4975, - "[team_roster_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4973, - "[team_roster_order_by!]" - ], - "where": [ - 4963 - ] - } - ], - "scrim_availability": [ - 5024, - { - "distinct_on": [ - 5044, - "[team_scrim_availability_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5042, - "[team_scrim_availability_order_by!]" - ], - "where": [ - 5033 - ] - } - ], - "scrim_availability_aggregate": [ - 5025, - { - "distinct_on": [ - 5044, - "[team_scrim_availability_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5042, - "[team_scrim_availability_order_by!]" - ], - "where": [ - 5033 - ] - } - ], - "scrim_settings": [ - 5139 - ], - "short_name": [ - 85 - ], - "tournament_teams": [ - 5850, - { - "distinct_on": [ - 5874, - "[tournament_teams_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5872, - "[tournament_teams_order_by!]" - ], - "where": [ - 5861 - ] - } - ], - "tournament_teams_aggregate": [ - 5851, - { - "distinct_on": [ - 5874, - "[tournament_teams_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5872, - "[tournament_teams_order_by!]" - ], - "where": [ - 5861 - ] - } - ], - "__typename": [ - 85 - ] - }, - "teams_aggregate": { - "aggregate": [ - 5200 - ], - "nodes": [ - 5194 - ], - "__typename": [ - 85 - ] - }, - "teams_aggregate_bool_exp": { - "bool_and": [ - 5197 - ], - "bool_or": [ - 5198 - ], - "count": [ - 5199 - ], - "__typename": [ - 85 - ] - }, - "teams_aggregate_bool_exp_bool_and": { - "arguments": [ - 5219 - ], - "distinct": [ - 6 - ], - "filter": [ - 5205 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "teams_aggregate_bool_exp_bool_or": { - "arguments": [ - 5220 - ], - "distinct": [ - 6 - ], - "filter": [ - 5205 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "teams_aggregate_bool_exp_count": { - "arguments": [ - 5218 - ], - "distinct": [ - 6 - ], - "filter": [ - 5205 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "teams_aggregate_fields": { - "avg": [ - 5203 - ], - "count": [ - 41, - { - "columns": [ - 5218, - "[teams_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 5209 - ], - "min": [ - 5211 - ], - "stddev": [ - 5222 - ], - "stddev_pop": [ - 5224 - ], - "stddev_samp": [ - 5226 - ], - "sum": [ - 5230 - ], - "var_pop": [ - 5234 - ], - "var_samp": [ - 5236 - ], - "variance": [ - 5238 - ], - "__typename": [ - 85 - ] - }, - "teams_aggregate_order_by": { - "avg": [ - 5204 - ], - "count": [ - 3648 - ], - "max": [ - 5210 - ], - "min": [ - 5212 - ], - "stddev": [ - 5223 - ], - "stddev_pop": [ - 5225 - ], - "stddev_samp": [ - 5227 - ], - "sum": [ - 5231 - ], - "var_pop": [ - 5235 - ], - "var_samp": [ - 5237 - ], - "variance": [ - 5239 - ], - "__typename": [ - 85 - ] - }, - "teams_arr_rel_insert_input": { - "data": [ - 5208 - ], - "on_conflict": [ - 5215 - ], - "__typename": [ - 85 - ] - }, - "teams_avg_fields": { - "captain_steam_id": [ - 32 - ], - "owner_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "teams_avg_order_by": { - "captain_steam_id": [ - 3648 - ], - "owner_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "teams_bool_exp": { - "_and": [ - 5205 - ], - "_not": [ - 5205 - ], - "_or": [ - 5205 - ], - "avatar_url": [ - 87 - ], - "awards": [ - 252 - ], - "awards_aggregate": [ - 245 - ], - "can_change_role": [ - 7 - ], - "can_invite": [ - 7 - ], - "can_manage_scrims": [ - 7 - ], - "can_remove": [ - 7 - ], - "captain": [ - 4610 - ], - "captain_steam_id": [ - 314 - ], - "id": [ - 6674 - ], - "invites": [ - 4920 - ], - "invites_aggregate": [ - 4913 - ], - "is_organization": [ - 7 - ], - "match_lineups": [ - 3095 - ], - "match_lineups_aggregate": [ - 3088 - ], - "matches": [ - 3443 - ], - "name": [ - 87 - ], - "owner": [ - 4610 - ], - "owner_steam_id": [ - 314 - ], - "ranks": [ - 7378 - ], - "reputation": [ - 7398 - ], - "role": [ - 87 - ], - "roster": [ - 4963 - ], - "roster_aggregate": [ - 4954 - ], - "scrim_availability": [ - 5033 - ], - "scrim_availability_aggregate": [ - 5026 - ], - "scrim_settings": [ - 5143 - ], - "short_name": [ - 87 - ], - "tournament_teams": [ - 5861 - ], - "tournament_teams_aggregate": [ - 5852 - ], - "__typename": [ - 85 - ] - }, - "teams_constraint": {}, - "teams_inc_input": { - "captain_steam_id": [ - 312 - ], - "owner_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "teams_insert_input": { - "avatar_url": [ - 85 - ], - "awards": [ - 249 - ], - "captain": [ - 4617 - ], - "captain_steam_id": [ - 312 - ], - "id": [ - 6672 - ], - "invites": [ - 4917 - ], - "is_organization": [ - 6 - ], - "match_lineups": [ - 3092 - ], - "name": [ - 85 - ], - "owner": [ - 4617 - ], - "owner_steam_id": [ - 312 - ], - "ranks": [ - 7382 - ], - "reputation": [ - 7402 - ], - "roster": [ - 4960 - ], - "scrim_availability": [ - 5032 - ], - "scrim_settings": [ - 5150 - ], - "short_name": [ - 85 - ], - "tournament_teams": [ - 5858 - ], - "__typename": [ - 85 - ] - }, - "teams_max_fields": { - "avatar_url": [ - 85 - ], - "captain_steam_id": [ - 312 - ], - "id": [ - 6672 - ], - "name": [ - 85 - ], - "owner_steam_id": [ - 312 - ], - "role": [ - 85 - ], - "short_name": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "teams_max_order_by": { - "avatar_url": [ - 3648 - ], - "captain_steam_id": [ - 3648 - ], - "id": [ - 3648 - ], - "name": [ - 3648 - ], - "owner_steam_id": [ - 3648 - ], - "short_name": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "teams_min_fields": { - "avatar_url": [ - 85 - ], - "captain_steam_id": [ - 312 - ], - "id": [ - 6672 - ], - "name": [ - 85 - ], - "owner_steam_id": [ - 312 - ], - "role": [ - 85 - ], - "short_name": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "teams_min_order_by": { - "avatar_url": [ - 3648 - ], - "captain_steam_id": [ - 3648 - ], - "id": [ - 3648 - ], - "name": [ - 3648 - ], - "owner_steam_id": [ - 3648 - ], - "short_name": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "teams_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 5194 - ], - "__typename": [ - 85 - ] - }, - "teams_obj_rel_insert_input": { - "data": [ - 5208 - ], - "on_conflict": [ - 5215 - ], - "__typename": [ - 85 - ] - }, - "teams_on_conflict": { - "constraint": [ - 5206 - ], - "update_columns": [ - 5232 - ], - "where": [ - 5205 - ], - "__typename": [ - 85 - ] - }, - "teams_order_by": { - "avatar_url": [ - 3648 - ], - "awards_aggregate": [ - 248 - ], - "can_change_role": [ - 3648 - ], - "can_invite": [ - 3648 - ], - "can_manage_scrims": [ - 3648 - ], - "can_remove": [ - 3648 - ], - "captain": [ - 4619 - ], - "captain_steam_id": [ - 3648 - ], - "id": [ - 3648 - ], - "invites_aggregate": [ - 4916 - ], - "is_organization": [ - 3648 - ], - "match_lineups_aggregate": [ - 3091 - ], - "matches_aggregate": [ - 3439 - ], - "name": [ - 3648 - ], - "owner": [ - 4619 - ], - "owner_steam_id": [ - 3648 - ], - "ranks": [ - 7383 - ], - "reputation": [ - 7403 - ], - "role": [ - 3648 - ], - "roster_aggregate": [ - 4959 - ], - "scrim_availability_aggregate": [ - 5031 - ], - "scrim_settings": [ - 5152 - ], - "short_name": [ - 3648 - ], - "tournament_teams_aggregate": [ - 5857 - ], - "__typename": [ - 85 - ] - }, - "teams_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "teams_select_column": {}, - "teams_select_column_teams_aggregate_bool_exp_bool_and_arguments_columns": {}, - "teams_select_column_teams_aggregate_bool_exp_bool_or_arguments_columns": {}, - "teams_set_input": { - "avatar_url": [ - 85 - ], - "captain_steam_id": [ - 312 - ], - "id": [ - 6672 - ], - "is_organization": [ - 6 - ], - "name": [ - 85 - ], - "owner_steam_id": [ - 312 - ], - "short_name": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "teams_stddev_fields": { - "captain_steam_id": [ - 32 - ], - "owner_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "teams_stddev_order_by": { - "captain_steam_id": [ - 3648 - ], - "owner_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "teams_stddev_pop_fields": { - "captain_steam_id": [ - 32 - ], - "owner_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "teams_stddev_pop_order_by": { - "captain_steam_id": [ - 3648 - ], - "owner_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "teams_stddev_samp_fields": { - "captain_steam_id": [ - 32 - ], - "owner_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "teams_stddev_samp_order_by": { - "captain_steam_id": [ - 3648 - ], - "owner_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "teams_stream_cursor_input": { - "initial_value": [ - 5229 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "teams_stream_cursor_value_input": { - "avatar_url": [ - 85 - ], - "captain_steam_id": [ - 312 - ], - "id": [ - 6672 - ], - "is_organization": [ - 6 - ], - "name": [ - 85 - ], - "owner_steam_id": [ - 312 - ], - "short_name": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "teams_sum_fields": { - "captain_steam_id": [ - 312 - ], - "owner_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "teams_sum_order_by": { - "captain_steam_id": [ - 3648 - ], - "owner_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "teams_update_column": {}, - "teams_updates": { - "_inc": [ - 5207 - ], - "_set": [ - 5221 - ], - "where": [ - 5205 - ], - "__typename": [ - 85 - ] - }, - "teams_var_pop_fields": { - "captain_steam_id": [ - 32 - ], - "owner_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "teams_var_pop_order_by": { - "captain_steam_id": [ - 3648 - ], - "owner_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "teams_var_samp_fields": { - "captain_steam_id": [ - 32 - ], - "owner_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "teams_var_samp_order_by": { - "captain_steam_id": [ - 3648 - ], - "owner_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "teams_variance_fields": { - "captain_steam_id": [ - 32 - ], - "owner_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "teams_variance_order_by": { - "captain_steam_id": [ - 3648 - ], - "owner_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "time": {}, - "time_comparison_exp": { - "_eq": [ - 5240 - ], - "_gt": [ - 5240 - ], - "_gte": [ - 5240 - ], - "_in": [ - 5240 - ], - "_is_null": [ - 6 - ], - "_lt": [ - 5240 - ], - "_lte": [ - 5240 - ], - "_neq": [ - 5240 - ], - "_nin": [ - 5240 - ], - "__typename": [ - 85 - ] - }, - "timestamp": {}, - "timestamptz": {}, - "timestamptz_comparison_exp": { - "_eq": [ - 5243 - ], - "_gt": [ - 5243 - ], - "_gte": [ - 5243 - ], - "_in": [ - 5243 - ], - "_is_null": [ - 6 - ], - "_lt": [ - 5243 - ], - "_lte": [ - 5243 - ], - "_neq": [ - 5243 - ], - "_nin": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "tournament_awards": { - "award": [ - 284 - ], - "award_id": [ - 6672 - ], - "created_at": [ - 5243 - ], - "custom_name": [ - 85 - ], - "id": [ - 6672 - ], - "image_url": [ - 85 - ], - "placement": [ - 41 - ], - "silhouette": [ - 41 - ], - "tournament": [ - 5896 - ], - "tournament_id": [ - 6672 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "tournament_awards_aggregate": { - "aggregate": [ - 5249 - ], - "nodes": [ - 5245 - ], - "__typename": [ - 85 - ] - }, - "tournament_awards_aggregate_bool_exp": { - "count": [ - 5248 - ], - "__typename": [ - 85 - ] - }, - "tournament_awards_aggregate_bool_exp_count": { - "arguments": [ - 5267 - ], - "distinct": [ - 6 - ], - "filter": [ - 5254 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "tournament_awards_aggregate_fields": { - "avg": [ - 5252 - ], - "count": [ - 41, - { - "columns": [ - 5267, - "[tournament_awards_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 5258 - ], - "min": [ - 5260 - ], - "stddev": [ - 5269 - ], - "stddev_pop": [ - 5271 - ], - "stddev_samp": [ - 5273 - ], - "sum": [ - 5277 - ], - "var_pop": [ - 5281 - ], - "var_samp": [ - 5283 - ], - "variance": [ - 5285 - ], - "__typename": [ - 85 - ] - }, - "tournament_awards_aggregate_order_by": { - "avg": [ - 5253 - ], - "count": [ - 3648 - ], - "max": [ - 5259 - ], - "min": [ - 5261 - ], - "stddev": [ - 5270 - ], - "stddev_pop": [ - 5272 - ], - "stddev_samp": [ - 5274 - ], - "sum": [ - 5278 - ], - "var_pop": [ - 5282 - ], - "var_samp": [ - 5284 - ], - "variance": [ - 5286 - ], - "__typename": [ - 85 - ] - }, - "tournament_awards_arr_rel_insert_input": { - "data": [ - 5257 - ], - "on_conflict": [ - 5264 - ], - "__typename": [ - 85 - ] - }, - "tournament_awards_avg_fields": { - "placement": [ - 32 - ], - "silhouette": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_awards_avg_order_by": { - "placement": [ - 3648 - ], - "silhouette": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_awards_bool_exp": { - "_and": [ - 5254 - ], - "_not": [ - 5254 - ], - "_or": [ - 5254 - ], - "award": [ - 288 - ], - "award_id": [ - 6674 - ], - "created_at": [ - 5244 - ], - "custom_name": [ - 87 - ], - "id": [ - 6674 - ], - "image_url": [ - 87 - ], - "placement": [ - 42 - ], - "silhouette": [ - 42 - ], - "tournament": [ - 5917 - ], - "tournament_id": [ - 6674 - ], - "updated_at": [ - 5244 - ], - "__typename": [ - 85 - ] - }, - "tournament_awards_constraint": {}, - "tournament_awards_inc_input": { - "placement": [ - 41 - ], - "silhouette": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "tournament_awards_insert_input": { - "award": [ - 295 - ], - "award_id": [ - 6672 - ], - "created_at": [ - 5243 - ], - "custom_name": [ - 85 - ], - "id": [ - 6672 - ], - "image_url": [ - 85 - ], - "placement": [ - 41 - ], - "silhouette": [ - 41 - ], - "tournament": [ - 5926 - ], - "tournament_id": [ - 6672 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "tournament_awards_max_fields": { - "award_id": [ - 6672 - ], - "created_at": [ - 5243 - ], - "custom_name": [ - 85 - ], - "id": [ - 6672 - ], - "image_url": [ - 85 - ], - "placement": [ - 41 - ], - "silhouette": [ - 41 - ], - "tournament_id": [ - 6672 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "tournament_awards_max_order_by": { - "award_id": [ - 3648 - ], - "created_at": [ - 3648 - ], - "custom_name": [ - 3648 - ], - "id": [ - 3648 - ], - "image_url": [ - 3648 - ], - "placement": [ - 3648 - ], - "silhouette": [ - 3648 - ], - "tournament_id": [ - 3648 - ], - "updated_at": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_awards_min_fields": { - "award_id": [ - 6672 - ], - "created_at": [ - 5243 - ], - "custom_name": [ - 85 - ], - "id": [ - 6672 - ], - "image_url": [ - 85 - ], - "placement": [ - 41 - ], - "silhouette": [ - 41 - ], - "tournament_id": [ - 6672 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "tournament_awards_min_order_by": { - "award_id": [ - 3648 - ], - "created_at": [ - 3648 - ], - "custom_name": [ - 3648 - ], - "id": [ - 3648 - ], - "image_url": [ - 3648 - ], - "placement": [ - 3648 - ], - "silhouette": [ - 3648 - ], - "tournament_id": [ - 3648 - ], - "updated_at": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_awards_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 5245 - ], - "__typename": [ - 85 - ] - }, - "tournament_awards_obj_rel_insert_input": { - "data": [ - 5257 - ], - "on_conflict": [ - 5264 - ], - "__typename": [ - 85 - ] - }, - "tournament_awards_on_conflict": { - "constraint": [ - 5255 - ], - "update_columns": [ - 5279 - ], - "where": [ - 5254 - ], - "__typename": [ - 85 - ] - }, - "tournament_awards_order_by": { - "award": [ - 297 - ], - "award_id": [ - 3648 - ], - "created_at": [ - 3648 - ], - "custom_name": [ - 3648 - ], - "id": [ - 3648 - ], - "image_url": [ - 3648 - ], - "placement": [ - 3648 - ], - "silhouette": [ - 3648 - ], - "tournament": [ - 5928 - ], - "tournament_id": [ - 3648 - ], - "updated_at": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_awards_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_awards_select_column": {}, - "tournament_awards_set_input": { - "award_id": [ - 6672 - ], - "created_at": [ - 5243 - ], - "custom_name": [ - 85 - ], - "id": [ - 6672 - ], - "image_url": [ - 85 - ], - "placement": [ - 41 - ], - "silhouette": [ - 41 - ], - "tournament_id": [ - 6672 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "tournament_awards_stddev_fields": { - "placement": [ - 32 - ], - "silhouette": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_awards_stddev_order_by": { - "placement": [ - 3648 - ], - "silhouette": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_awards_stddev_pop_fields": { - "placement": [ - 32 - ], - "silhouette": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_awards_stddev_pop_order_by": { - "placement": [ - 3648 - ], - "silhouette": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_awards_stddev_samp_fields": { - "placement": [ - 32 - ], - "silhouette": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_awards_stddev_samp_order_by": { - "placement": [ - 3648 - ], - "silhouette": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_awards_stream_cursor_input": { - "initial_value": [ - 5276 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "tournament_awards_stream_cursor_value_input": { - "award_id": [ - 6672 - ], - "created_at": [ - 5243 - ], - "custom_name": [ - 85 - ], - "id": [ - 6672 - ], - "image_url": [ - 85 - ], - "placement": [ - 41 - ], - "silhouette": [ - 41 - ], - "tournament_id": [ - 6672 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "tournament_awards_sum_fields": { - "placement": [ - 41 - ], - "silhouette": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "tournament_awards_sum_order_by": { - "placement": [ - 3648 - ], - "silhouette": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_awards_update_column": {}, - "tournament_awards_updates": { - "_inc": [ - 5256 - ], - "_set": [ - 5268 - ], - "where": [ - 5254 - ], - "__typename": [ - 85 - ] - }, - "tournament_awards_var_pop_fields": { - "placement": [ - 32 - ], - "silhouette": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_awards_var_pop_order_by": { - "placement": [ - 3648 - ], - "silhouette": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_awards_var_samp_fields": { - "placement": [ - 32 - ], - "silhouette": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_awards_var_samp_order_by": { - "placement": [ - 3648 - ], - "silhouette": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_awards_variance_fields": { - "placement": [ - 32 - ], - "silhouette": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_awards_variance_order_by": { - "placement": [ - 3648 - ], - "silhouette": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_brackets": { - "bye": [ - 6 - ], - "created_at": [ - 5243 - ], - "feeding_brackets": [ - 5287, - { - "distinct_on": [ - 5311, - "[tournament_brackets_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5309, - "[tournament_brackets_order_by!]" - ], - "where": [ - 5298 - ] - } - ], - "finished": [ - 6 - ], - "group": [ - 3646 - ], - "id": [ - 6672 - ], - "loser_bracket": [ - 5287 - ], - "loser_parent_bracket_id": [ - 6672 - ], - "match": [ - 3432 - ], - "match_id": [ - 6672 - ], - "match_number": [ - 41 - ], - "match_options_id": [ - 6672 - ], - "options": [ - 3290 - ], - "parent_bracket": [ - 5287 - ], - "parent_bracket_id": [ - 6672 - ], - "path": [ - 85 - ], - "round": [ - 41 - ], - "scheduled_at": [ - 5243 - ], - "scheduled_eta": [ - 5243 - ], - "scheduling_proposals": [ - 2576, - { - "distinct_on": [ - 2597, - "[league_scheduling_proposals_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2595, - "[league_scheduling_proposals_order_by!]" - ], - "where": [ - 2585 - ] - } - ], - "scheduling_proposals_aggregate": [ - 2577, - { - "distinct_on": [ - 2597, - "[league_scheduling_proposals_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2595, - "[league_scheduling_proposals_order_by!]" - ], - "where": [ - 2585 - ] - } - ], - "stage": [ - 5717 - ], - "team_1": [ - 5850 - ], - "team_1_seed": [ - 41 - ], - "team_2": [ - 5850 - ], - "team_2_seed": [ - 41 - ], - "tournament_stage_id": [ - 6672 - ], - "tournament_team_id_1": [ - 6672 - ], - "tournament_team_id_2": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_brackets_aggregate": { - "aggregate": [ - 5293 - ], - "nodes": [ - 5287 - ], - "__typename": [ - 85 - ] - }, - "tournament_brackets_aggregate_bool_exp": { - "bool_and": [ - 5290 - ], - "bool_or": [ - 5291 - ], - "count": [ - 5292 - ], - "__typename": [ - 85 - ] - }, - "tournament_brackets_aggregate_bool_exp_bool_and": { - "arguments": [ - 5312 - ], - "distinct": [ - 6 - ], - "filter": [ - 5298 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "tournament_brackets_aggregate_bool_exp_bool_or": { - "arguments": [ - 5313 - ], - "distinct": [ - 6 - ], - "filter": [ - 5298 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "tournament_brackets_aggregate_bool_exp_count": { - "arguments": [ - 5311 - ], - "distinct": [ - 6 - ], - "filter": [ - 5298 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "tournament_brackets_aggregate_fields": { - "avg": [ - 5296 - ], - "count": [ - 41, - { - "columns": [ - 5311, - "[tournament_brackets_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 5302 - ], - "min": [ - 5304 - ], - "stddev": [ - 5315 - ], - "stddev_pop": [ - 5317 - ], - "stddev_samp": [ - 5319 - ], - "sum": [ - 5323 - ], - "var_pop": [ - 5327 - ], - "var_samp": [ - 5329 - ], - "variance": [ - 5331 - ], - "__typename": [ - 85 - ] - }, - "tournament_brackets_aggregate_order_by": { - "avg": [ - 5297 - ], - "count": [ - 3648 - ], - "max": [ - 5303 - ], - "min": [ - 5305 - ], - "stddev": [ - 5316 - ], - "stddev_pop": [ - 5318 - ], - "stddev_samp": [ - 5320 - ], - "sum": [ - 5324 - ], - "var_pop": [ - 5328 - ], - "var_samp": [ - 5330 - ], - "variance": [ - 5332 - ], - "__typename": [ - 85 - ] - }, - "tournament_brackets_arr_rel_insert_input": { - "data": [ - 5301 - ], - "on_conflict": [ - 5308 - ], - "__typename": [ - 85 - ] - }, - "tournament_brackets_avg_fields": { - "group": [ - 32 - ], - "match_number": [ - 32 - ], - "round": [ - 32 - ], - "team_1_seed": [ - 32 - ], - "team_2_seed": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_brackets_avg_order_by": { - "group": [ - 3648 - ], - "match_number": [ - 3648 - ], - "round": [ - 3648 - ], - "team_1_seed": [ - 3648 - ], - "team_2_seed": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_brackets_bool_exp": { - "_and": [ - 5298 - ], - "_not": [ - 5298 - ], - "_or": [ - 5298 - ], - "bye": [ - 7 - ], - "created_at": [ - 5244 - ], - "feeding_brackets": [ - 5298 - ], - "finished": [ - 7 - ], - "group": [ - 3647 - ], - "id": [ - 6674 - ], - "loser_bracket": [ - 5298 - ], - "loser_parent_bracket_id": [ - 6674 - ], - "match": [ - 3443 - ], - "match_id": [ - 6674 - ], - "match_number": [ - 42 - ], - "match_options_id": [ - 6674 - ], - "options": [ - 3301 - ], - "parent_bracket": [ - 5298 - ], - "parent_bracket_id": [ - 6674 - ], - "path": [ - 87 - ], - "round": [ - 42 - ], - "scheduled_at": [ - 5244 - ], - "scheduled_eta": [ - 5244 - ], - "scheduling_proposals": [ - 2585 - ], - "scheduling_proposals_aggregate": [ - 2578 - ], - "stage": [ - 5729 - ], - "team_1": [ - 5861 - ], - "team_1_seed": [ - 42 - ], - "team_2": [ - 5861 - ], - "team_2_seed": [ - 42 - ], - "tournament_stage_id": [ - 6674 - ], - "tournament_team_id_1": [ - 6674 - ], - "tournament_team_id_2": [ - 6674 - ], - "__typename": [ - 85 - ] - }, - "tournament_brackets_constraint": {}, - "tournament_brackets_inc_input": { - "group": [ - 3646 - ], - "match_number": [ - 41 - ], - "round": [ - 41 - ], - "team_1_seed": [ - 41 - ], - "team_2_seed": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "tournament_brackets_insert_input": { - "bye": [ - 6 - ], - "created_at": [ - 5243 - ], - "finished": [ - 6 - ], - "group": [ - 3646 - ], - "id": [ - 6672 - ], - "loser_bracket": [ - 5307 - ], - "loser_parent_bracket_id": [ - 6672 - ], - "match": [ - 3452 - ], - "match_id": [ - 6672 - ], - "match_number": [ - 41 - ], - "match_options_id": [ - 6672 - ], - "options": [ - 3310 - ], - "parent_bracket": [ - 5307 - ], - "parent_bracket_id": [ - 6672 - ], - "path": [ - 85 - ], - "round": [ - 41 - ], - "scheduled_at": [ - 5243 - ], - "scheduled_eta": [ - 5243 - ], - "scheduling_proposals": [ - 2582 - ], - "stage": [ - 5741 - ], - "team_1": [ - 5870 - ], - "team_1_seed": [ - 41 - ], - "team_2": [ - 5870 - ], - "team_2_seed": [ - 41 - ], - "tournament_stage_id": [ - 6672 - ], - "tournament_team_id_1": [ - 6672 - ], - "tournament_team_id_2": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_brackets_max_fields": { - "created_at": [ - 5243 - ], - "group": [ - 3646 - ], - "id": [ - 6672 - ], - "loser_parent_bracket_id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "match_number": [ - 41 - ], - "match_options_id": [ - 6672 - ], - "parent_bracket_id": [ - 6672 - ], - "path": [ - 85 - ], - "round": [ - 41 - ], - "scheduled_at": [ - 5243 - ], - "scheduled_eta": [ - 5243 - ], - "team_1_seed": [ - 41 - ], - "team_2_seed": [ - 41 - ], - "tournament_stage_id": [ - 6672 - ], - "tournament_team_id_1": [ - 6672 - ], - "tournament_team_id_2": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_brackets_max_order_by": { - "created_at": [ - 3648 - ], - "group": [ - 3648 - ], - "id": [ - 3648 - ], - "loser_parent_bracket_id": [ - 3648 - ], - "match_id": [ - 3648 - ], - "match_number": [ - 3648 - ], - "match_options_id": [ - 3648 - ], - "parent_bracket_id": [ - 3648 - ], - "path": [ - 3648 - ], - "round": [ - 3648 - ], - "scheduled_at": [ - 3648 - ], - "scheduled_eta": [ - 3648 - ], - "team_1_seed": [ - 3648 - ], - "team_2_seed": [ - 3648 - ], - "tournament_stage_id": [ - 3648 - ], - "tournament_team_id_1": [ - 3648 - ], - "tournament_team_id_2": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_brackets_min_fields": { - "created_at": [ - 5243 - ], - "group": [ - 3646 - ], - "id": [ - 6672 - ], - "loser_parent_bracket_id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "match_number": [ - 41 - ], - "match_options_id": [ - 6672 - ], - "parent_bracket_id": [ - 6672 - ], - "path": [ - 85 - ], - "round": [ - 41 - ], - "scheduled_at": [ - 5243 - ], - "scheduled_eta": [ - 5243 - ], - "team_1_seed": [ - 41 - ], - "team_2_seed": [ - 41 - ], - "tournament_stage_id": [ - 6672 - ], - "tournament_team_id_1": [ - 6672 - ], - "tournament_team_id_2": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_brackets_min_order_by": { - "created_at": [ - 3648 - ], - "group": [ - 3648 - ], - "id": [ - 3648 - ], - "loser_parent_bracket_id": [ - 3648 - ], - "match_id": [ - 3648 - ], - "match_number": [ - 3648 - ], - "match_options_id": [ - 3648 - ], - "parent_bracket_id": [ - 3648 - ], - "path": [ - 3648 - ], - "round": [ - 3648 - ], - "scheduled_at": [ - 3648 - ], - "scheduled_eta": [ - 3648 - ], - "team_1_seed": [ - 3648 - ], - "team_2_seed": [ - 3648 - ], - "tournament_stage_id": [ - 3648 - ], - "tournament_team_id_1": [ - 3648 - ], - "tournament_team_id_2": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_brackets_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 5287 - ], - "__typename": [ - 85 - ] - }, - "tournament_brackets_obj_rel_insert_input": { - "data": [ - 5301 - ], - "on_conflict": [ - 5308 - ], - "__typename": [ - 85 - ] - }, - "tournament_brackets_on_conflict": { - "constraint": [ - 5299 - ], - "update_columns": [ - 5325 - ], - "where": [ - 5298 - ], - "__typename": [ - 85 - ] - }, - "tournament_brackets_order_by": { - "bye": [ - 3648 - ], - "created_at": [ - 3648 - ], - "feeding_brackets_aggregate": [ - 5294 - ], - "finished": [ - 3648 - ], - "group": [ - 3648 - ], - "id": [ - 3648 - ], - "loser_bracket": [ - 5309 - ], - "loser_parent_bracket_id": [ - 3648 - ], - "match": [ - 3454 - ], - "match_id": [ - 3648 - ], - "match_number": [ - 3648 - ], - "match_options_id": [ - 3648 - ], - "options": [ - 3312 - ], - "parent_bracket": [ - 5309 - ], - "parent_bracket_id": [ - 3648 - ], - "path": [ - 3648 - ], - "round": [ - 3648 - ], - "scheduled_at": [ - 3648 - ], - "scheduled_eta": [ - 3648 - ], - "scheduling_proposals_aggregate": [ - 2581 - ], - "stage": [ - 5743 - ], - "team_1": [ - 5872 - ], - "team_1_seed": [ - 3648 - ], - "team_2": [ - 5872 - ], - "team_2_seed": [ - 3648 - ], - "tournament_stage_id": [ - 3648 - ], - "tournament_team_id_1": [ - 3648 - ], - "tournament_team_id_2": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_brackets_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_brackets_select_column": {}, - "tournament_brackets_select_column_tournament_brackets_aggregate_bool_exp_bool_and_arguments_columns": {}, - "tournament_brackets_select_column_tournament_brackets_aggregate_bool_exp_bool_or_arguments_columns": {}, - "tournament_brackets_set_input": { - "bye": [ - 6 - ], - "created_at": [ - 5243 - ], - "finished": [ - 6 - ], - "group": [ - 3646 - ], - "id": [ - 6672 - ], - "loser_parent_bracket_id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "match_number": [ - 41 - ], - "match_options_id": [ - 6672 - ], - "parent_bracket_id": [ - 6672 - ], - "path": [ - 85 - ], - "round": [ - 41 - ], - "scheduled_at": [ - 5243 - ], - "scheduled_eta": [ - 5243 - ], - "team_1_seed": [ - 41 - ], - "team_2_seed": [ - 41 - ], - "tournament_stage_id": [ - 6672 - ], - "tournament_team_id_1": [ - 6672 - ], - "tournament_team_id_2": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_brackets_stddev_fields": { - "group": [ - 32 - ], - "match_number": [ - 32 - ], - "round": [ - 32 - ], - "team_1_seed": [ - 32 - ], - "team_2_seed": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_brackets_stddev_order_by": { - "group": [ - 3648 - ], - "match_number": [ - 3648 - ], - "round": [ - 3648 - ], - "team_1_seed": [ - 3648 - ], - "team_2_seed": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_brackets_stddev_pop_fields": { - "group": [ - 32 - ], - "match_number": [ - 32 - ], - "round": [ - 32 - ], - "team_1_seed": [ - 32 - ], - "team_2_seed": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_brackets_stddev_pop_order_by": { - "group": [ - 3648 - ], - "match_number": [ - 3648 - ], - "round": [ - 3648 - ], - "team_1_seed": [ - 3648 - ], - "team_2_seed": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_brackets_stddev_samp_fields": { - "group": [ - 32 - ], - "match_number": [ - 32 - ], - "round": [ - 32 - ], - "team_1_seed": [ - 32 - ], - "team_2_seed": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_brackets_stddev_samp_order_by": { - "group": [ - 3648 - ], - "match_number": [ - 3648 - ], - "round": [ - 3648 - ], - "team_1_seed": [ - 3648 - ], - "team_2_seed": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_brackets_stream_cursor_input": { - "initial_value": [ - 5322 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "tournament_brackets_stream_cursor_value_input": { - "bye": [ - 6 - ], - "created_at": [ - 5243 - ], - "finished": [ - 6 - ], - "group": [ - 3646 - ], - "id": [ - 6672 - ], - "loser_parent_bracket_id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "match_number": [ - 41 - ], - "match_options_id": [ - 6672 - ], - "parent_bracket_id": [ - 6672 - ], - "path": [ - 85 - ], - "round": [ - 41 - ], - "scheduled_at": [ - 5243 - ], - "scheduled_eta": [ - 5243 - ], - "team_1_seed": [ - 41 - ], - "team_2_seed": [ - 41 - ], - "tournament_stage_id": [ - 6672 - ], - "tournament_team_id_1": [ - 6672 - ], - "tournament_team_id_2": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_brackets_sum_fields": { - "group": [ - 3646 - ], - "match_number": [ - 41 - ], - "round": [ - 41 - ], - "team_1_seed": [ - 41 - ], - "team_2_seed": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "tournament_brackets_sum_order_by": { - "group": [ - 3648 - ], - "match_number": [ - 3648 - ], - "round": [ - 3648 - ], - "team_1_seed": [ - 3648 - ], - "team_2_seed": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_brackets_update_column": {}, - "tournament_brackets_updates": { - "_inc": [ - 5300 - ], - "_set": [ - 5314 - ], - "where": [ - 5298 - ], - "__typename": [ - 85 - ] - }, - "tournament_brackets_var_pop_fields": { - "group": [ - 32 - ], - "match_number": [ - 32 - ], - "round": [ - 32 - ], - "team_1_seed": [ - 32 - ], - "team_2_seed": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_brackets_var_pop_order_by": { - "group": [ - 3648 - ], - "match_number": [ - 3648 - ], - "round": [ - 3648 - ], - "team_1_seed": [ - 3648 - ], - "team_2_seed": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_brackets_var_samp_fields": { - "group": [ - 32 - ], - "match_number": [ - 32 - ], - "round": [ - 32 - ], - "team_1_seed": [ - 32 - ], - "team_2_seed": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_brackets_var_samp_order_by": { - "group": [ - 3648 - ], - "match_number": [ - 3648 - ], - "round": [ - 3648 - ], - "team_1_seed": [ - 3648 - ], - "team_2_seed": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_brackets_variance_fields": { - "group": [ - 32 - ], - "match_number": [ - 32 - ], - "round": [ - 32 - ], - "team_1_seed": [ - 32 - ], - "team_2_seed": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_brackets_variance_order_by": { - "group": [ - 3648 - ], - "match_number": [ - 3648 - ], - "round": [ - 3648 - ], - "team_1_seed": [ - 3648 - ], - "team_2_seed": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_categories": { - "category": [ - 1554 - ], - "e_tournament_category": [ - 1549 - ], - "tournament": [ - 5896 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_categories_aggregate": { - "aggregate": [ - 5337 - ], - "nodes": [ - 5333 - ], - "__typename": [ - 85 - ] - }, - "tournament_categories_aggregate_bool_exp": { - "count": [ - 5336 - ], - "__typename": [ - 85 - ] - }, - "tournament_categories_aggregate_bool_exp_count": { - "arguments": [ - 5351 - ], - "distinct": [ - 6 - ], - "filter": [ - 5340 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "tournament_categories_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 5351, - "[tournament_categories_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 5343 - ], - "min": [ - 5345 - ], - "__typename": [ - 85 - ] - }, - "tournament_categories_aggregate_order_by": { - "count": [ - 3648 - ], - "max": [ - 5344 - ], - "min": [ - 5346 - ], - "__typename": [ - 85 - ] - }, - "tournament_categories_arr_rel_insert_input": { - "data": [ - 5342 - ], - "on_conflict": [ - 5348 - ], - "__typename": [ - 85 - ] - }, - "tournament_categories_bool_exp": { - "_and": [ - 5340 - ], - "_not": [ - 5340 - ], - "_or": [ - 5340 - ], - "category": [ - 1555 - ], - "e_tournament_category": [ - 1552 - ], - "tournament": [ - 5917 - ], - "tournament_id": [ - 6674 - ], - "__typename": [ - 85 - ] - }, - "tournament_categories_constraint": {}, - "tournament_categories_insert_input": { - "category": [ - 1554 - ], - "e_tournament_category": [ - 1560 - ], - "tournament": [ - 5926 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_categories_max_fields": { - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_categories_max_order_by": { - "tournament_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_categories_min_fields": { - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_categories_min_order_by": { - "tournament_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_categories_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 5333 - ], - "__typename": [ - 85 - ] - }, - "tournament_categories_on_conflict": { - "constraint": [ - 5341 - ], - "update_columns": [ - 5355 - ], - "where": [ - 5340 - ], - "__typename": [ - 85 - ] - }, - "tournament_categories_order_by": { - "category": [ - 3648 - ], - "e_tournament_category": [ - 1562 - ], - "tournament": [ - 5928 - ], - "tournament_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_categories_pk_columns_input": { - "category": [ - 1554 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_categories_select_column": {}, - "tournament_categories_set_input": { - "category": [ - 1554 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_categories_stream_cursor_input": { - "initial_value": [ - 5354 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "tournament_categories_stream_cursor_value_input": { - "category": [ - 1554 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_categories_update_column": {}, - "tournament_categories_updates": { - "_set": [ - 5352 - ], - "where": [ - 5340 - ], - "__typename": [ - 85 - ] - }, - "tournament_free_agents": { - "checked_in_at": [ - 5243 - ], - "created_at": [ - 5243 - ], - "e_tournament_free_agent_status": [ - 1570 - ], - "id": [ - 6672 - ], - "party_id": [ - 6672 - ], - "player": [ - 4606 - ], - "player_steam_id": [ - 312 - ], - "status": [ - 1575 - ], - "tournament": [ - 5896 - ], - "tournament_id": [ - 6672 - ], - "tournament_team": [ - 5850 - ], - "tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_free_agents_aggregate": { - "aggregate": [ - 5361 - ], - "nodes": [ - 5357 - ], - "__typename": [ - 85 - ] - }, - "tournament_free_agents_aggregate_bool_exp": { - "count": [ - 5360 - ], - "__typename": [ - 85 - ] - }, - "tournament_free_agents_aggregate_bool_exp_count": { - "arguments": [ - 5378 - ], - "distinct": [ - 6 - ], - "filter": [ - 5366 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "tournament_free_agents_aggregate_fields": { - "avg": [ - 5364 - ], - "count": [ - 41, - { - "columns": [ - 5378, - "[tournament_free_agents_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 5370 - ], - "min": [ - 5372 - ], - "stddev": [ - 5380 - ], - "stddev_pop": [ - 5382 - ], - "stddev_samp": [ - 5384 - ], - "sum": [ - 5388 - ], - "var_pop": [ - 5392 - ], - "var_samp": [ - 5394 - ], - "variance": [ - 5396 - ], - "__typename": [ - 85 - ] - }, - "tournament_free_agents_aggregate_order_by": { - "avg": [ - 5365 - ], - "count": [ - 3648 - ], - "max": [ - 5371 - ], - "min": [ - 5373 - ], - "stddev": [ - 5381 - ], - "stddev_pop": [ - 5383 - ], - "stddev_samp": [ - 5385 - ], - "sum": [ - 5389 - ], - "var_pop": [ - 5393 - ], - "var_samp": [ - 5395 - ], - "variance": [ - 5397 - ], - "__typename": [ - 85 - ] - }, - "tournament_free_agents_arr_rel_insert_input": { - "data": [ - 5369 - ], - "on_conflict": [ - 5375 - ], - "__typename": [ - 85 - ] - }, - "tournament_free_agents_avg_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_free_agents_avg_order_by": { - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_free_agents_bool_exp": { - "_and": [ - 5366 - ], - "_not": [ - 5366 - ], - "_or": [ - 5366 - ], - "checked_in_at": [ - 5244 - ], - "created_at": [ - 5244 - ], - "e_tournament_free_agent_status": [ - 1573 - ], - "id": [ - 6674 - ], - "party_id": [ - 6674 - ], - "player": [ - 4610 - ], - "player_steam_id": [ - 314 - ], - "status": [ - 1576 - ], - "tournament": [ - 5917 - ], - "tournament_id": [ - 6674 - ], - "tournament_team": [ - 5861 - ], - "tournament_team_id": [ - 6674 - ], - "__typename": [ - 85 - ] - }, - "tournament_free_agents_constraint": {}, - "tournament_free_agents_inc_input": { - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "tournament_free_agents_insert_input": { - "checked_in_at": [ - 5243 - ], - "created_at": [ - 5243 - ], - "e_tournament_free_agent_status": [ - 1581 - ], - "id": [ - 6672 - ], - "party_id": [ - 6672 - ], - "player": [ - 4617 - ], - "player_steam_id": [ - 312 - ], - "status": [ - 1575 - ], - "tournament": [ - 5926 - ], - "tournament_id": [ - 6672 - ], - "tournament_team": [ - 5870 - ], - "tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_free_agents_max_fields": { - "checked_in_at": [ - 5243 - ], - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "party_id": [ - 6672 - ], - "player_steam_id": [ - 312 - ], - "tournament_id": [ - 6672 - ], - "tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_free_agents_max_order_by": { - "checked_in_at": [ - 3648 - ], - "created_at": [ - 3648 - ], - "id": [ - 3648 - ], - "party_id": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "tournament_id": [ - 3648 - ], - "tournament_team_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_free_agents_min_fields": { - "checked_in_at": [ - 5243 - ], - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "party_id": [ - 6672 - ], - "player_steam_id": [ - 312 - ], - "tournament_id": [ - 6672 - ], - "tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_free_agents_min_order_by": { - "checked_in_at": [ - 3648 - ], - "created_at": [ - 3648 - ], - "id": [ - 3648 - ], - "party_id": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "tournament_id": [ - 3648 - ], - "tournament_team_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_free_agents_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 5357 - ], - "__typename": [ - 85 - ] - }, - "tournament_free_agents_on_conflict": { - "constraint": [ - 5367 - ], - "update_columns": [ - 5390 - ], - "where": [ - 5366 - ], - "__typename": [ - 85 - ] - }, - "tournament_free_agents_order_by": { - "checked_in_at": [ - 3648 - ], - "created_at": [ - 3648 - ], - "e_tournament_free_agent_status": [ - 1583 - ], - "id": [ - 3648 - ], - "party_id": [ - 3648 - ], - "player": [ - 4619 - ], - "player_steam_id": [ - 3648 - ], - "status": [ - 3648 - ], - "tournament": [ - 5928 - ], - "tournament_id": [ - 3648 - ], - "tournament_team": [ - 5872 - ], - "tournament_team_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_free_agents_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_free_agents_select_column": {}, - "tournament_free_agents_set_input": { - "checked_in_at": [ - 5243 - ], - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "party_id": [ - 6672 - ], - "player_steam_id": [ - 312 - ], - "status": [ - 1575 - ], - "tournament_id": [ - 6672 - ], - "tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_free_agents_stddev_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_free_agents_stddev_order_by": { - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_free_agents_stddev_pop_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_free_agents_stddev_pop_order_by": { - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_free_agents_stddev_samp_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_free_agents_stddev_samp_order_by": { - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_free_agents_stream_cursor_input": { - "initial_value": [ - 5387 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "tournament_free_agents_stream_cursor_value_input": { - "checked_in_at": [ - 5243 - ], - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "party_id": [ - 6672 - ], - "player_steam_id": [ - 312 - ], - "status": [ - 1575 - ], - "tournament_id": [ - 6672 - ], - "tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_free_agents_sum_fields": { - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "tournament_free_agents_sum_order_by": { - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_free_agents_update_column": {}, - "tournament_free_agents_updates": { - "_inc": [ - 5368 - ], - "_set": [ - 5379 - ], - "where": [ - 5366 - ], - "__typename": [ - 85 - ] - }, - "tournament_free_agents_var_pop_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_free_agents_var_pop_order_by": { - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_free_agents_var_samp_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_free_agents_var_samp_order_by": { - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_free_agents_variance_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_free_agents_variance_order_by": { - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_code_uses": { - "invite_code": [ - 5439 - ], - "invite_code_id": [ - 6672 - ], - "player": [ - 4606 - ], - "player_steam_id": [ - 312 - ], - "team": [ - 5194 - ], - "team_id": [ - 6672 - ], - "used_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_code_uses_aggregate": { - "aggregate": [ - 5402 - ], - "nodes": [ - 5398 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_code_uses_aggregate_bool_exp": { - "count": [ - 5401 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_code_uses_aggregate_bool_exp_count": { - "arguments": [ - 5419 - ], - "distinct": [ - 6 - ], - "filter": [ - 5407 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_code_uses_aggregate_fields": { - "avg": [ - 5405 - ], - "count": [ - 41, - { - "columns": [ - 5419, - "[tournament_invite_code_uses_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 5411 - ], - "min": [ - 5413 - ], - "stddev": [ - 5421 - ], - "stddev_pop": [ - 5423 - ], - "stddev_samp": [ - 5425 - ], - "sum": [ - 5429 - ], - "var_pop": [ - 5433 - ], - "var_samp": [ - 5435 - ], - "variance": [ - 5437 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_code_uses_aggregate_order_by": { - "avg": [ - 5406 - ], - "count": [ - 3648 - ], - "max": [ - 5412 - ], - "min": [ - 5414 - ], - "stddev": [ - 5422 - ], - "stddev_pop": [ - 5424 - ], - "stddev_samp": [ - 5426 - ], - "sum": [ - 5430 - ], - "var_pop": [ - 5434 - ], - "var_samp": [ - 5436 - ], - "variance": [ - 5438 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_code_uses_arr_rel_insert_input": { - "data": [ - 5410 - ], - "on_conflict": [ - 5416 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_code_uses_avg_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_code_uses_avg_order_by": { - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_code_uses_bool_exp": { - "_and": [ - 5407 - ], - "_not": [ - 5407 - ], - "_or": [ - 5407 - ], - "invite_code": [ - 5443 - ], - "invite_code_id": [ - 6674 - ], - "player": [ - 4610 - ], - "player_steam_id": [ - 314 - ], - "team": [ - 5205 - ], - "team_id": [ - 6674 - ], - "used_at": [ - 5244 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_code_uses_constraint": {}, - "tournament_invite_code_uses_inc_input": { - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_code_uses_insert_input": { - "invite_code": [ - 5450 - ], - "invite_code_id": [ - 6672 - ], - "player": [ - 4617 - ], - "player_steam_id": [ - 312 - ], - "team": [ - 5214 - ], - "team_id": [ - 6672 - ], - "used_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_code_uses_max_fields": { - "invite_code_id": [ - 6672 - ], - "player_steam_id": [ - 312 - ], - "team_id": [ - 6672 - ], - "used_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_code_uses_max_order_by": { - "invite_code_id": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "team_id": [ - 3648 - ], - "used_at": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_code_uses_min_fields": { - "invite_code_id": [ - 6672 - ], - "player_steam_id": [ - 312 - ], - "team_id": [ - 6672 - ], - "used_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_code_uses_min_order_by": { - "invite_code_id": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "team_id": [ - 3648 - ], - "used_at": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_code_uses_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 5398 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_code_uses_on_conflict": { - "constraint": [ - 5408 - ], - "update_columns": [ - 5431 - ], - "where": [ - 5407 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_code_uses_order_by": { - "invite_code": [ - 5452 - ], - "invite_code_id": [ - 3648 - ], - "player": [ - 4619 - ], - "player_steam_id": [ - 3648 - ], - "team": [ - 5216 - ], - "team_id": [ - 3648 - ], - "used_at": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_code_uses_pk_columns_input": { - "invite_code_id": [ - 6672 - ], - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_code_uses_select_column": {}, - "tournament_invite_code_uses_set_input": { - "invite_code_id": [ - 6672 - ], - "player_steam_id": [ - 312 - ], - "team_id": [ - 6672 - ], - "used_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_code_uses_stddev_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_code_uses_stddev_order_by": { - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_code_uses_stddev_pop_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_code_uses_stddev_pop_order_by": { - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_code_uses_stddev_samp_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_code_uses_stddev_samp_order_by": { - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_code_uses_stream_cursor_input": { - "initial_value": [ - 5428 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_code_uses_stream_cursor_value_input": { - "invite_code_id": [ - 6672 - ], - "player_steam_id": [ - 312 - ], - "team_id": [ - 6672 - ], - "used_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_code_uses_sum_fields": { - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_code_uses_sum_order_by": { - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_code_uses_update_column": {}, - "tournament_invite_code_uses_updates": { - "_inc": [ - 5409 - ], - "_set": [ - 5420 - ], - "where": [ - 5407 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_code_uses_var_pop_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_code_uses_var_pop_order_by": { - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_code_uses_var_samp_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_code_uses_var_samp_order_by": { - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_code_uses_variance_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_code_uses_variance_order_by": { - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_codes": { - "code": [ - 85 - ], - "created_at": [ - 5243 - ], - "created_by": [ - 4606 - ], - "created_by_player_steam_id": [ - 312 - ], - "expires_at": [ - 5243 - ], - "id": [ - 6672 - ], - "max_uses": [ - 41 - ], - "revoked_at": [ - 5243 - ], - "tournament": [ - 5896 - ], - "tournament_id": [ - 6672 - ], - "used_by": [ - 5398, - { - "distinct_on": [ - 5419, - "[tournament_invite_code_uses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5417, - "[tournament_invite_code_uses_order_by!]" - ], - "where": [ - 5407 - ] - } - ], - "used_by_aggregate": [ - 5399, - { - "distinct_on": [ - 5419, - "[tournament_invite_code_uses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5417, - "[tournament_invite_code_uses_order_by!]" - ], - "where": [ - 5407 - ] - } - ], - "uses": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_codes_aggregate": { - "aggregate": [ - 5441 - ], - "nodes": [ - 5439 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_codes_aggregate_fields": { - "avg": [ - 5442 - ], - "count": [ - 41, - { - "columns": [ - 5454, - "[tournament_invite_codes_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 5447 - ], - "min": [ - 5448 - ], - "stddev": [ - 5456 - ], - "stddev_pop": [ - 5457 - ], - "stddev_samp": [ - 5458 - ], - "sum": [ - 5461 - ], - "var_pop": [ - 5464 - ], - "var_samp": [ - 5465 - ], - "variance": [ - 5466 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_codes_avg_fields": { - "created_by_player_steam_id": [ - 32 - ], - "max_uses": [ - 32 - ], - "uses": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_codes_bool_exp": { - "_and": [ - 5443 - ], - "_not": [ - 5443 - ], - "_or": [ - 5443 - ], - "code": [ - 87 - ], - "created_at": [ - 5244 - ], - "created_by": [ - 4610 - ], - "created_by_player_steam_id": [ - 314 - ], - "expires_at": [ - 5244 - ], - "id": [ - 6674 - ], - "max_uses": [ - 42 - ], - "revoked_at": [ - 5244 - ], - "tournament": [ - 5917 - ], - "tournament_id": [ - 6674 - ], - "used_by": [ - 5407 - ], - "used_by_aggregate": [ - 5400 - ], - "uses": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_codes_constraint": {}, - "tournament_invite_codes_inc_input": { - "created_by_player_steam_id": [ - 312 - ], - "max_uses": [ - 41 - ], - "uses": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_codes_insert_input": { - "code": [ - 85 - ], - "created_at": [ - 5243 - ], - "created_by": [ - 4617 - ], - "created_by_player_steam_id": [ - 312 - ], - "expires_at": [ - 5243 - ], - "id": [ - 6672 - ], - "max_uses": [ - 41 - ], - "revoked_at": [ - 5243 - ], - "tournament": [ - 5926 - ], - "tournament_id": [ - 6672 - ], - "used_by": [ - 5404 - ], - "uses": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_codes_max_fields": { - "code": [ - 85 - ], - "created_at": [ - 5243 - ], - "created_by_player_steam_id": [ - 312 - ], - "expires_at": [ - 5243 - ], - "id": [ - 6672 - ], - "max_uses": [ - 41 - ], - "revoked_at": [ - 5243 - ], - "tournament_id": [ - 6672 - ], - "uses": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_codes_min_fields": { - "code": [ - 85 - ], - "created_at": [ - 5243 - ], - "created_by_player_steam_id": [ - 312 - ], - "expires_at": [ - 5243 - ], - "id": [ - 6672 - ], - "max_uses": [ - 41 - ], - "revoked_at": [ - 5243 - ], - "tournament_id": [ - 6672 - ], - "uses": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_codes_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 5439 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_codes_obj_rel_insert_input": { - "data": [ - 5446 - ], - "on_conflict": [ - 5451 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_codes_on_conflict": { - "constraint": [ - 5444 - ], - "update_columns": [ - 5462 - ], - "where": [ - 5443 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_codes_order_by": { - "code": [ - 3648 - ], - "created_at": [ - 3648 - ], - "created_by": [ - 4619 - ], - "created_by_player_steam_id": [ - 3648 - ], - "expires_at": [ - 3648 - ], - "id": [ - 3648 - ], - "max_uses": [ - 3648 - ], - "revoked_at": [ - 3648 - ], - "tournament": [ - 5928 - ], - "tournament_id": [ - 3648 - ], - "used_by_aggregate": [ - 5403 - ], - "uses": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_codes_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_codes_select_column": {}, - "tournament_invite_codes_set_input": { - "code": [ - 85 - ], - "created_at": [ - 5243 - ], - "created_by_player_steam_id": [ - 312 - ], - "expires_at": [ - 5243 - ], - "id": [ - 6672 - ], - "max_uses": [ - 41 - ], - "revoked_at": [ - 5243 - ], - "tournament_id": [ - 6672 - ], - "uses": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_codes_stddev_fields": { - "created_by_player_steam_id": [ - 32 - ], - "max_uses": [ - 32 - ], - "uses": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_codes_stddev_pop_fields": { - "created_by_player_steam_id": [ - 32 - ], - "max_uses": [ - 32 - ], - "uses": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_codes_stddev_samp_fields": { - "created_by_player_steam_id": [ - 32 - ], - "max_uses": [ - 32 - ], - "uses": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_codes_stream_cursor_input": { - "initial_value": [ - 5460 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_codes_stream_cursor_value_input": { - "code": [ - 85 - ], - "created_at": [ - 5243 - ], - "created_by_player_steam_id": [ - 312 - ], - "expires_at": [ - 5243 - ], - "id": [ - 6672 - ], - "max_uses": [ - 41 - ], - "revoked_at": [ - 5243 - ], - "tournament_id": [ - 6672 - ], - "uses": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_codes_sum_fields": { - "created_by_player_steam_id": [ - 312 - ], - "max_uses": [ - 41 - ], - "uses": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_codes_update_column": {}, - "tournament_invite_codes_updates": { - "_inc": [ - 5445 - ], - "_set": [ - 5455 - ], - "where": [ - 5443 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_codes_var_pop_fields": { - "created_by_player_steam_id": [ - 32 - ], - "max_uses": [ - 32 - ], - "uses": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_codes_var_samp_fields": { - "created_by_player_steam_id": [ - 32 - ], - "max_uses": [ - 32 - ], - "uses": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_invite_codes_variance_fields": { - "created_by_player_steam_id": [ - 32 - ], - "max_uses": [ - 32 - ], - "uses": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_invites": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "invited_by": [ - 4606 - ], - "invited_by_player_steam_id": [ - 312 - ], - "player": [ - 4606 - ], - "steam_id": [ - 312 - ], - "team": [ - 5194 - ], - "team_id": [ - 6672 - ], - "tournament": [ - 5896 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_invites_aggregate": { - "aggregate": [ - 5469 - ], - "nodes": [ - 5467 - ], - "__typename": [ - 85 - ] - }, - "tournament_invites_aggregate_fields": { - "avg": [ - 5470 - ], - "count": [ - 41, - { - "columns": [ - 5481, - "[tournament_invites_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 5475 - ], - "min": [ - 5476 - ], - "stddev": [ - 5483 - ], - "stddev_pop": [ - 5484 - ], - "stddev_samp": [ - 5485 - ], - "sum": [ - 5488 - ], - "var_pop": [ - 5491 - ], - "var_samp": [ - 5492 - ], - "variance": [ - 5493 - ], - "__typename": [ - 85 - ] - }, - "tournament_invites_avg_fields": { - "invited_by_player_steam_id": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_invites_bool_exp": { - "_and": [ - 5471 - ], - "_not": [ - 5471 - ], - "_or": [ - 5471 - ], - "created_at": [ - 5244 - ], - "id": [ - 6674 - ], - "invited_by": [ - 4610 - ], - "invited_by_player_steam_id": [ - 314 - ], - "player": [ - 4610 - ], - "steam_id": [ - 314 - ], - "team": [ - 5205 - ], - "team_id": [ - 6674 - ], - "tournament": [ - 5917 - ], - "tournament_id": [ - 6674 - ], - "__typename": [ - 85 - ] - }, - "tournament_invites_constraint": {}, - "tournament_invites_inc_input": { - "invited_by_player_steam_id": [ - 312 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "tournament_invites_insert_input": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "invited_by": [ - 4617 - ], - "invited_by_player_steam_id": [ - 312 - ], - "player": [ - 4617 - ], - "steam_id": [ - 312 - ], - "team": [ - 5214 - ], - "team_id": [ - 6672 - ], - "tournament": [ - 5926 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_invites_max_fields": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "invited_by_player_steam_id": [ - 312 - ], - "steam_id": [ - 312 - ], - "team_id": [ - 6672 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_invites_min_fields": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "invited_by_player_steam_id": [ - 312 - ], - "steam_id": [ - 312 - ], - "team_id": [ - 6672 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_invites_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 5467 - ], - "__typename": [ - 85 - ] - }, - "tournament_invites_on_conflict": { - "constraint": [ - 5472 - ], - "update_columns": [ - 5489 - ], - "where": [ - 5471 - ], - "__typename": [ - 85 - ] - }, - "tournament_invites_order_by": { - "created_at": [ - 3648 - ], - "id": [ - 3648 - ], - "invited_by": [ - 4619 - ], - "invited_by_player_steam_id": [ - 3648 - ], - "player": [ - 4619 - ], - "steam_id": [ - 3648 - ], - "team": [ - 5216 - ], - "team_id": [ - 3648 - ], - "tournament": [ - 5928 - ], - "tournament_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_invites_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_invites_select_column": {}, - "tournament_invites_set_input": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "invited_by_player_steam_id": [ - 312 - ], - "steam_id": [ - 312 - ], - "team_id": [ - 6672 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_invites_stddev_fields": { - "invited_by_player_steam_id": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_invites_stddev_pop_fields": { - "invited_by_player_steam_id": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_invites_stddev_samp_fields": { - "invited_by_player_steam_id": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_invites_stream_cursor_input": { - "initial_value": [ - 5487 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "tournament_invites_stream_cursor_value_input": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "invited_by_player_steam_id": [ - 312 - ], - "steam_id": [ - 312 - ], - "team_id": [ - 6672 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_invites_sum_fields": { - "invited_by_player_steam_id": [ - 312 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "tournament_invites_update_column": {}, - "tournament_invites_updates": { - "_inc": [ - 5473 - ], - "_set": [ - 5482 - ], - "where": [ - 5471 - ], - "__typename": [ - 85 - ] - }, - "tournament_invites_var_pop_fields": { - "invited_by_player_steam_id": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_invites_var_samp_fields": { - "invited_by_player_steam_id": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_invites_variance_fields": { - "invited_by_player_steam_id": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_leaderboard_entries": { - "adr": [ - 2093 - ], - "assists": [ - 41 - ], - "deaths": [ - 41 - ], - "headshot_percentage": [ - 2093 - ], - "kdr": [ - 2093 - ], - "kills": [ - 41 - ], - "matches_played": [ - 41 - ], - "player_avatar_url": [ - 85 - ], - "player_country": [ - 85 - ], - "player_custom_avatar_url": [ - 85 - ], - "player_name": [ - 85 - ], - "player_steam_id": [ - 85 - ], - "rating": [ - 2093 - ], - "rounds_played": [ - 41 - ], - "team_name": [ - 85 - ], - "tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_leaderboard_entries_aggregate": { - "aggregate": [ - 5496 - ], - "nodes": [ - 5494 - ], - "__typename": [ - 85 - ] - }, - "tournament_leaderboard_entries_aggregate_fields": { - "avg": [ - 5497 - ], - "count": [ - 41, - { - "columns": [ - 5505, - "[tournament_leaderboard_entries_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 5501 - ], - "min": [ - 5502 - ], - "stddev": [ - 5507 - ], - "stddev_pop": [ - 5508 - ], - "stddev_samp": [ - 5509 - ], - "sum": [ - 5512 - ], - "var_pop": [ - 5514 - ], - "var_samp": [ - 5515 - ], - "variance": [ - 5516 - ], - "__typename": [ - 85 - ] - }, - "tournament_leaderboard_entries_avg_fields": { - "adr": [ - 32 - ], - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "headshot_percentage": [ - 32 - ], - "kdr": [ - 32 - ], - "kills": [ - 32 - ], - "matches_played": [ - 32 - ], - "rating": [ - 32 - ], - "rounds_played": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_leaderboard_entries_bool_exp": { - "_and": [ - 5498 - ], - "_not": [ - 5498 - ], - "_or": [ - 5498 - ], - "adr": [ - 2094 - ], - "assists": [ - 42 - ], - "deaths": [ - 42 - ], - "headshot_percentage": [ - 2094 - ], - "kdr": [ - 2094 - ], - "kills": [ - 42 - ], - "matches_played": [ - 42 - ], - "player_avatar_url": [ - 87 - ], - "player_country": [ - 87 - ], - "player_custom_avatar_url": [ - 87 - ], - "player_name": [ - 87 - ], - "player_steam_id": [ - 87 - ], - "rating": [ - 2094 - ], - "rounds_played": [ - 42 - ], - "team_name": [ - 87 - ], - "tournament_team_id": [ - 6674 - ], - "__typename": [ - 85 - ] - }, - "tournament_leaderboard_entries_inc_input": { - "adr": [ - 2093 - ], - "assists": [ - 41 - ], - "deaths": [ - 41 - ], - "headshot_percentage": [ - 2093 - ], - "kdr": [ - 2093 - ], - "kills": [ - 41 - ], - "matches_played": [ - 41 - ], - "rating": [ - 2093 - ], - "rounds_played": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "tournament_leaderboard_entries_insert_input": { - "adr": [ - 2093 - ], - "assists": [ - 41 - ], - "deaths": [ - 41 - ], - "headshot_percentage": [ - 2093 - ], - "kdr": [ - 2093 - ], - "kills": [ - 41 - ], - "matches_played": [ - 41 - ], - "player_avatar_url": [ - 85 - ], - "player_country": [ - 85 - ], - "player_custom_avatar_url": [ - 85 - ], - "player_name": [ - 85 - ], - "player_steam_id": [ - 85 - ], - "rating": [ - 2093 - ], - "rounds_played": [ - 41 - ], - "team_name": [ - 85 - ], - "tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_leaderboard_entries_max_fields": { - "adr": [ - 2093 - ], - "assists": [ - 41 - ], - "deaths": [ - 41 - ], - "headshot_percentage": [ - 2093 - ], - "kdr": [ - 2093 - ], - "kills": [ - 41 - ], - "matches_played": [ - 41 - ], - "player_avatar_url": [ - 85 - ], - "player_country": [ - 85 - ], - "player_custom_avatar_url": [ - 85 - ], - "player_name": [ - 85 - ], - "player_steam_id": [ - 85 - ], - "rating": [ - 2093 - ], - "rounds_played": [ - 41 - ], - "team_name": [ - 85 - ], - "tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_leaderboard_entries_min_fields": { - "adr": [ - 2093 - ], - "assists": [ - 41 - ], - "deaths": [ - 41 - ], - "headshot_percentage": [ - 2093 - ], - "kdr": [ - 2093 - ], - "kills": [ - 41 - ], - "matches_played": [ - 41 - ], - "player_avatar_url": [ - 85 - ], - "player_country": [ - 85 - ], - "player_custom_avatar_url": [ - 85 - ], - "player_name": [ - 85 - ], - "player_steam_id": [ - 85 - ], - "rating": [ - 2093 - ], - "rounds_played": [ - 41 - ], - "team_name": [ - 85 - ], - "tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_leaderboard_entries_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 5494 - ], - "__typename": [ - 85 - ] - }, - "tournament_leaderboard_entries_order_by": { - "adr": [ - 3648 - ], - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "kdr": [ - 3648 - ], - "kills": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "player_avatar_url": [ - 3648 - ], - "player_country": [ - 3648 - ], - "player_custom_avatar_url": [ - 3648 - ], - "player_name": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "rating": [ - 3648 - ], - "rounds_played": [ - 3648 - ], - "team_name": [ - 3648 - ], - "tournament_team_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_leaderboard_entries_select_column": {}, - "tournament_leaderboard_entries_set_input": { - "adr": [ - 2093 - ], - "assists": [ - 41 - ], - "deaths": [ - 41 - ], - "headshot_percentage": [ - 2093 - ], - "kdr": [ - 2093 - ], - "kills": [ - 41 - ], - "matches_played": [ - 41 - ], - "player_avatar_url": [ - 85 - ], - "player_country": [ - 85 - ], - "player_custom_avatar_url": [ - 85 - ], - "player_name": [ - 85 - ], - "player_steam_id": [ - 85 - ], - "rating": [ - 2093 - ], - "rounds_played": [ - 41 - ], - "team_name": [ - 85 - ], - "tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_leaderboard_entries_stddev_fields": { - "adr": [ - 32 - ], - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "headshot_percentage": [ - 32 - ], - "kdr": [ - 32 - ], - "kills": [ - 32 - ], - "matches_played": [ - 32 - ], - "rating": [ - 32 - ], - "rounds_played": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_leaderboard_entries_stddev_pop_fields": { - "adr": [ - 32 - ], - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "headshot_percentage": [ - 32 - ], - "kdr": [ - 32 - ], - "kills": [ - 32 - ], - "matches_played": [ - 32 - ], - "rating": [ - 32 - ], - "rounds_played": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_leaderboard_entries_stddev_samp_fields": { - "adr": [ - 32 - ], - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "headshot_percentage": [ - 32 - ], - "kdr": [ - 32 - ], - "kills": [ - 32 - ], - "matches_played": [ - 32 - ], - "rating": [ - 32 - ], - "rounds_played": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_leaderboard_entries_stream_cursor_input": { - "initial_value": [ - 5511 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "tournament_leaderboard_entries_stream_cursor_value_input": { - "adr": [ - 2093 - ], - "assists": [ - 41 - ], - "deaths": [ - 41 - ], - "headshot_percentage": [ - 2093 - ], - "kdr": [ - 2093 - ], - "kills": [ - 41 - ], - "matches_played": [ - 41 - ], - "player_avatar_url": [ - 85 - ], - "player_country": [ - 85 - ], - "player_custom_avatar_url": [ - 85 - ], - "player_name": [ - 85 - ], - "player_steam_id": [ - 85 - ], - "rating": [ - 2093 - ], - "rounds_played": [ - 41 - ], - "team_name": [ - 85 - ], - "tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_leaderboard_entries_sum_fields": { - "adr": [ - 2093 - ], - "assists": [ - 41 - ], - "deaths": [ - 41 - ], - "headshot_percentage": [ - 2093 - ], - "kdr": [ - 2093 - ], - "kills": [ - 41 - ], - "matches_played": [ - 41 - ], - "rating": [ - 2093 - ], - "rounds_played": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "tournament_leaderboard_entries_updates": { - "_inc": [ - 5499 - ], - "_set": [ - 5506 - ], - "where": [ - 5498 - ], - "__typename": [ - 85 - ] - }, - "tournament_leaderboard_entries_var_pop_fields": { - "adr": [ - 32 - ], - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "headshot_percentage": [ - 32 - ], - "kdr": [ - 32 - ], - "kills": [ - 32 - ], - "matches_played": [ - 32 - ], - "rating": [ - 32 - ], - "rounds_played": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_leaderboard_entries_var_samp_fields": { - "adr": [ - 32 - ], - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "headshot_percentage": [ - 32 - ], - "kdr": [ - 32 - ], - "kills": [ - 32 - ], - "matches_played": [ - 32 - ], - "rating": [ - 32 - ], - "rounds_played": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_leaderboard_entries_variance_fields": { - "adr": [ - 32 - ], - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "headshot_percentage": [ - 32 - ], - "kdr": [ - 32 - ], - "kills": [ - 32 - ], - "matches_played": [ - 32 - ], - "rating": [ - 32 - ], - "rounds_played": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_no_shows": { - "id": [ - 6672 - ], - "occurred_at": [ - 5243 - ], - "player": [ - 4606 - ], - "player_steam_id": [ - 312 - ], - "tournament": [ - 5896 - ], - "tournament_id": [ - 6672 - ], - "tournament_team": [ - 5850 - ], - "tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_no_shows_aggregate": { - "aggregate": [ - 5519 - ], - "nodes": [ - 5517 - ], - "__typename": [ - 85 - ] - }, - "tournament_no_shows_aggregate_fields": { - "avg": [ - 5520 - ], - "count": [ - 41, - { - "columns": [ - 5531, - "[tournament_no_shows_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 5525 - ], - "min": [ - 5526 - ], - "stddev": [ - 5533 - ], - "stddev_pop": [ - 5534 - ], - "stddev_samp": [ - 5535 - ], - "sum": [ - 5538 - ], - "var_pop": [ - 5541 - ], - "var_samp": [ - 5542 - ], - "variance": [ - 5543 - ], - "__typename": [ - 85 - ] - }, - "tournament_no_shows_avg_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_no_shows_bool_exp": { - "_and": [ - 5521 - ], - "_not": [ - 5521 - ], - "_or": [ - 5521 - ], - "id": [ - 6674 - ], - "occurred_at": [ - 5244 - ], - "player": [ - 4610 - ], - "player_steam_id": [ - 314 - ], - "tournament": [ - 5917 - ], - "tournament_id": [ - 6674 - ], - "tournament_team": [ - 5861 - ], - "tournament_team_id": [ - 6674 - ], - "__typename": [ - 85 - ] - }, - "tournament_no_shows_constraint": {}, - "tournament_no_shows_inc_input": { - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "tournament_no_shows_insert_input": { - "id": [ - 6672 - ], - "occurred_at": [ - 5243 - ], - "player": [ - 4617 - ], - "player_steam_id": [ - 312 - ], - "tournament": [ - 5926 - ], - "tournament_id": [ - 6672 - ], - "tournament_team": [ - 5870 - ], - "tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_no_shows_max_fields": { - "id": [ - 6672 - ], - "occurred_at": [ - 5243 - ], - "player_steam_id": [ - 312 - ], - "tournament_id": [ - 6672 - ], - "tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_no_shows_min_fields": { - "id": [ - 6672 - ], - "occurred_at": [ - 5243 - ], - "player_steam_id": [ - 312 - ], - "tournament_id": [ - 6672 - ], - "tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_no_shows_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 5517 - ], - "__typename": [ - 85 - ] - }, - "tournament_no_shows_on_conflict": { - "constraint": [ - 5522 - ], - "update_columns": [ - 5539 - ], - "where": [ - 5521 - ], - "__typename": [ - 85 - ] - }, - "tournament_no_shows_order_by": { - "id": [ - 3648 - ], - "occurred_at": [ - 3648 - ], - "player": [ - 4619 - ], - "player_steam_id": [ - 3648 - ], - "tournament": [ - 5928 - ], - "tournament_id": [ - 3648 - ], - "tournament_team": [ - 5872 - ], - "tournament_team_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_no_shows_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_no_shows_select_column": {}, - "tournament_no_shows_set_input": { - "id": [ - 6672 - ], - "occurred_at": [ - 5243 - ], - "player_steam_id": [ - 312 - ], - "tournament_id": [ - 6672 - ], - "tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_no_shows_stddev_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_no_shows_stddev_pop_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_no_shows_stddev_samp_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_no_shows_stream_cursor_input": { - "initial_value": [ - 5537 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "tournament_no_shows_stream_cursor_value_input": { - "id": [ - 6672 - ], - "occurred_at": [ - 5243 - ], - "player_steam_id": [ - 312 - ], - "tournament_id": [ - 6672 - ], - "tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_no_shows_sum_fields": { - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "tournament_no_shows_update_column": {}, - "tournament_no_shows_updates": { - "_inc": [ - 5523 - ], - "_set": [ - 5532 - ], - "where": [ - 5521 - ], - "__typename": [ - 85 - ] - }, - "tournament_no_shows_var_pop_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_no_shows_var_samp_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_no_shows_variance_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizer_teams": { - "created_at": [ - 5243 - ], - "team": [ - 5194 - ], - "team_id": [ - 6672 - ], - "tournament": [ - 5896 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizer_teams_aggregate": { - "aggregate": [ - 5548 - ], - "nodes": [ - 5544 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizer_teams_aggregate_bool_exp": { - "count": [ - 5547 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizer_teams_aggregate_bool_exp_count": { - "arguments": [ - 5562 - ], - "distinct": [ - 6 - ], - "filter": [ - 5551 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizer_teams_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 5562, - "[tournament_organizer_teams_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 5554 - ], - "min": [ - 5556 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizer_teams_aggregate_order_by": { - "count": [ - 3648 - ], - "max": [ - 5555 - ], - "min": [ - 5557 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizer_teams_arr_rel_insert_input": { - "data": [ - 5553 - ], - "on_conflict": [ - 5559 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizer_teams_bool_exp": { - "_and": [ - 5551 - ], - "_not": [ - 5551 - ], - "_or": [ - 5551 - ], - "created_at": [ - 5244 - ], - "team": [ - 5205 - ], - "team_id": [ - 6674 - ], - "tournament": [ - 5917 - ], - "tournament_id": [ - 6674 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizer_teams_constraint": {}, - "tournament_organizer_teams_insert_input": { - "created_at": [ - 5243 - ], - "team": [ - 5214 - ], - "team_id": [ - 6672 - ], - "tournament": [ - 5926 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizer_teams_max_fields": { - "created_at": [ - 5243 - ], - "team_id": [ - 6672 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizer_teams_max_order_by": { - "created_at": [ - 3648 - ], - "team_id": [ - 3648 - ], - "tournament_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizer_teams_min_fields": { - "created_at": [ - 5243 - ], - "team_id": [ - 6672 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizer_teams_min_order_by": { - "created_at": [ - 3648 - ], - "team_id": [ - 3648 - ], - "tournament_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizer_teams_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 5544 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizer_teams_on_conflict": { - "constraint": [ - 5552 - ], - "update_columns": [ - 5566 - ], - "where": [ - 5551 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizer_teams_order_by": { - "created_at": [ - 3648 - ], - "team": [ - 5216 - ], - "team_id": [ - 3648 - ], - "tournament": [ - 5928 - ], - "tournament_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizer_teams_pk_columns_input": { - "team_id": [ - 6672 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizer_teams_select_column": {}, - "tournament_organizer_teams_set_input": { - "created_at": [ - 5243 - ], - "team_id": [ - 6672 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizer_teams_stream_cursor_input": { - "initial_value": [ - 5565 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizer_teams_stream_cursor_value_input": { - "created_at": [ - 5243 - ], - "team_id": [ - 6672 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizer_teams_update_column": {}, - "tournament_organizer_teams_updates": { - "_set": [ - 5563 - ], - "where": [ - 5551 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizers": { - "organization_team": [ - 5194 - ], - "organization_team_id": [ - 6672 - ], - "organizer": [ - 4606 - ], - "steam_id": [ - 312 - ], - "tournament": [ - 5896 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizers_aggregate": { - "aggregate": [ - 5572 - ], - "nodes": [ - 5568 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizers_aggregate_bool_exp": { - "count": [ - 5571 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizers_aggregate_bool_exp_count": { - "arguments": [ - 5589 - ], - "distinct": [ - 6 - ], - "filter": [ - 5577 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizers_aggregate_fields": { - "avg": [ - 5575 - ], - "count": [ - 41, - { - "columns": [ - 5589, - "[tournament_organizers_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 5581 - ], - "min": [ - 5583 - ], - "stddev": [ - 5591 - ], - "stddev_pop": [ - 5593 - ], - "stddev_samp": [ - 5595 - ], - "sum": [ - 5599 - ], - "var_pop": [ - 5603 - ], - "var_samp": [ - 5605 - ], - "variance": [ - 5607 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizers_aggregate_order_by": { - "avg": [ - 5576 - ], - "count": [ - 3648 - ], - "max": [ - 5582 - ], - "min": [ - 5584 - ], - "stddev": [ - 5592 - ], - "stddev_pop": [ - 5594 - ], - "stddev_samp": [ - 5596 - ], - "sum": [ - 5600 - ], - "var_pop": [ - 5604 - ], - "var_samp": [ - 5606 - ], - "variance": [ - 5608 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizers_arr_rel_insert_input": { - "data": [ - 5580 - ], - "on_conflict": [ - 5586 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizers_avg_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizers_avg_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizers_bool_exp": { - "_and": [ - 5577 - ], - "_not": [ - 5577 - ], - "_or": [ - 5577 - ], - "organization_team": [ - 5205 - ], - "organization_team_id": [ - 6674 - ], - "organizer": [ - 4610 - ], - "steam_id": [ - 314 - ], - "tournament": [ - 5917 - ], - "tournament_id": [ - 6674 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizers_constraint": {}, - "tournament_organizers_inc_input": { - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizers_insert_input": { - "organization_team": [ - 5214 - ], - "organization_team_id": [ - 6672 - ], - "organizer": [ - 4617 - ], - "steam_id": [ - 312 - ], - "tournament": [ - 5926 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizers_max_fields": { - "organization_team_id": [ - 6672 - ], - "steam_id": [ - 312 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizers_max_order_by": { - "organization_team_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "tournament_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizers_min_fields": { - "organization_team_id": [ - 6672 - ], - "steam_id": [ - 312 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizers_min_order_by": { - "organization_team_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "tournament_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizers_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 5568 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizers_on_conflict": { - "constraint": [ - 5578 - ], - "update_columns": [ - 5601 - ], - "where": [ - 5577 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizers_order_by": { - "organization_team": [ - 5216 - ], - "organization_team_id": [ - 3648 - ], - "organizer": [ - 4619 - ], - "steam_id": [ - 3648 - ], - "tournament": [ - 5928 - ], - "tournament_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizers_pk_columns_input": { - "steam_id": [ - 312 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizers_select_column": {}, - "tournament_organizers_set_input": { - "organization_team_id": [ - 6672 - ], - "steam_id": [ - 312 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizers_stddev_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizers_stddev_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizers_stddev_pop_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizers_stddev_pop_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizers_stddev_samp_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizers_stddev_samp_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizers_stream_cursor_input": { - "initial_value": [ - 5598 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizers_stream_cursor_value_input": { - "organization_team_id": [ - 6672 - ], - "steam_id": [ - 312 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizers_sum_fields": { - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizers_sum_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizers_update_column": {}, - "tournament_organizers_updates": { - "_inc": [ - 5579 - ], - "_set": [ - 5590 - ], - "where": [ - 5577 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizers_var_pop_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizers_var_pop_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizers_var_samp_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizers_var_samp_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizers_variance_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_organizers_variance_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_prizes": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "order": [ - 41 - ], - "place": [ - 85 - ], - "prize": [ - 85 - ], - "tournament": [ - 5896 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_prizes_aggregate": { - "aggregate": [ - 5613 - ], - "nodes": [ - 5609 - ], - "__typename": [ - 85 - ] - }, - "tournament_prizes_aggregate_bool_exp": { - "count": [ - 5612 - ], - "__typename": [ - 85 - ] - }, - "tournament_prizes_aggregate_bool_exp_count": { - "arguments": [ - 5630 - ], - "distinct": [ - 6 - ], - "filter": [ - 5618 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "tournament_prizes_aggregate_fields": { - "avg": [ - 5616 - ], - "count": [ - 41, - { - "columns": [ - 5630, - "[tournament_prizes_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 5622 - ], - "min": [ - 5624 - ], - "stddev": [ - 5632 - ], - "stddev_pop": [ - 5634 - ], - "stddev_samp": [ - 5636 - ], - "sum": [ - 5640 - ], - "var_pop": [ - 5644 - ], - "var_samp": [ - 5646 - ], - "variance": [ - 5648 - ], - "__typename": [ - 85 - ] - }, - "tournament_prizes_aggregate_order_by": { - "avg": [ - 5617 - ], - "count": [ - 3648 - ], - "max": [ - 5623 - ], - "min": [ - 5625 - ], - "stddev": [ - 5633 - ], - "stddev_pop": [ - 5635 - ], - "stddev_samp": [ - 5637 - ], - "sum": [ - 5641 - ], - "var_pop": [ - 5645 - ], - "var_samp": [ - 5647 - ], - "variance": [ - 5649 - ], - "__typename": [ - 85 - ] - }, - "tournament_prizes_arr_rel_insert_input": { - "data": [ - 5621 - ], - "on_conflict": [ - 5627 - ], - "__typename": [ - 85 - ] - }, - "tournament_prizes_avg_fields": { - "order": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_prizes_avg_order_by": { - "order": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_prizes_bool_exp": { - "_and": [ - 5618 - ], - "_not": [ - 5618 - ], - "_or": [ - 5618 - ], - "created_at": [ - 5244 - ], - "id": [ - 6674 - ], - "order": [ - 42 - ], - "place": [ - 87 - ], - "prize": [ - 87 - ], - "tournament": [ - 5917 - ], - "tournament_id": [ - 6674 - ], - "__typename": [ - 85 - ] - }, - "tournament_prizes_constraint": {}, - "tournament_prizes_inc_input": { - "order": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "tournament_prizes_insert_input": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "order": [ - 41 - ], - "place": [ - 85 - ], - "prize": [ - 85 - ], - "tournament": [ - 5926 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_prizes_max_fields": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "order": [ - 41 - ], - "place": [ - 85 - ], - "prize": [ - 85 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_prizes_max_order_by": { - "created_at": [ - 3648 - ], - "id": [ - 3648 - ], - "order": [ - 3648 - ], - "place": [ - 3648 - ], - "prize": [ - 3648 - ], - "tournament_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_prizes_min_fields": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "order": [ - 41 - ], - "place": [ - 85 - ], - "prize": [ - 85 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_prizes_min_order_by": { - "created_at": [ - 3648 - ], - "id": [ - 3648 - ], - "order": [ - 3648 - ], - "place": [ - 3648 - ], - "prize": [ - 3648 - ], - "tournament_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_prizes_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 5609 - ], - "__typename": [ - 85 - ] - }, - "tournament_prizes_on_conflict": { - "constraint": [ - 5619 - ], - "update_columns": [ - 5642 - ], - "where": [ - 5618 - ], - "__typename": [ - 85 - ] - }, - "tournament_prizes_order_by": { - "created_at": [ - 3648 - ], - "id": [ - 3648 - ], - "order": [ - 3648 - ], - "place": [ - 3648 - ], - "prize": [ - 3648 - ], - "tournament": [ - 5928 - ], - "tournament_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_prizes_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_prizes_select_column": {}, - "tournament_prizes_set_input": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "order": [ - 41 - ], - "place": [ - 85 - ], - "prize": [ - 85 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_prizes_stddev_fields": { - "order": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_prizes_stddev_order_by": { - "order": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_prizes_stddev_pop_fields": { - "order": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_prizes_stddev_pop_order_by": { - "order": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_prizes_stddev_samp_fields": { - "order": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_prizes_stddev_samp_order_by": { - "order": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_prizes_stream_cursor_input": { - "initial_value": [ - 5639 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "tournament_prizes_stream_cursor_value_input": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "order": [ - 41 - ], - "place": [ - 85 - ], - "prize": [ - 85 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_prizes_sum_fields": { - "order": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "tournament_prizes_sum_order_by": { - "order": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_prizes_update_column": {}, - "tournament_prizes_updates": { - "_inc": [ - 5620 - ], - "_set": [ - 5631 - ], - "where": [ - 5618 - ], - "__typename": [ - 85 - ] - }, - "tournament_prizes_var_pop_fields": { - "order": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_prizes_var_pop_order_by": { - "order": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_prizes_var_samp_fields": { - "order": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_prizes_var_samp_order_by": { - "order": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_prizes_variance_fields": { - "order": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_prizes_variance_order_by": { - "order": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_registration_unlocks": { - "created_at": [ - 5243 - ], - "player": [ - 4606 - ], - "player_steam_id": [ - 312 - ], - "team": [ - 5194 - ], - "team_id": [ - 6672 - ], - "tournament": [ - 5896 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_registration_unlocks_aggregate": { - "aggregate": [ - 5652 - ], - "nodes": [ - 5650 - ], - "__typename": [ - 85 - ] - }, - "tournament_registration_unlocks_aggregate_fields": { - "avg": [ - 5653 - ], - "count": [ - 41, - { - "columns": [ - 5663, - "[tournament_registration_unlocks_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 5658 - ], - "min": [ - 5659 - ], - "stddev": [ - 5665 - ], - "stddev_pop": [ - 5666 - ], - "stddev_samp": [ - 5667 - ], - "sum": [ - 5670 - ], - "var_pop": [ - 5673 - ], - "var_samp": [ - 5674 - ], - "variance": [ - 5675 - ], - "__typename": [ - 85 - ] - }, - "tournament_registration_unlocks_avg_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_registration_unlocks_bool_exp": { - "_and": [ - 5654 - ], - "_not": [ - 5654 - ], - "_or": [ - 5654 - ], - "created_at": [ - 5244 - ], - "player": [ - 4610 - ], - "player_steam_id": [ - 314 - ], - "team": [ - 5205 - ], - "team_id": [ - 6674 - ], - "tournament": [ - 5917 - ], - "tournament_id": [ - 6674 - ], - "__typename": [ - 85 - ] - }, - "tournament_registration_unlocks_constraint": {}, - "tournament_registration_unlocks_inc_input": { - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "tournament_registration_unlocks_insert_input": { - "created_at": [ - 5243 - ], - "player": [ - 4617 - ], - "player_steam_id": [ - 312 - ], - "team": [ - 5214 - ], - "team_id": [ - 6672 - ], - "tournament": [ - 5926 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_registration_unlocks_max_fields": { - "created_at": [ - 5243 - ], - "player_steam_id": [ - 312 - ], - "team_id": [ - 6672 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_registration_unlocks_min_fields": { - "created_at": [ - 5243 - ], - "player_steam_id": [ - 312 - ], - "team_id": [ - 6672 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_registration_unlocks_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 5650 - ], - "__typename": [ - 85 - ] - }, - "tournament_registration_unlocks_on_conflict": { - "constraint": [ - 5655 - ], - "update_columns": [ - 5671 - ], - "where": [ - 5654 - ], - "__typename": [ - 85 - ] - }, - "tournament_registration_unlocks_order_by": { - "created_at": [ - 3648 - ], - "player": [ - 4619 - ], - "player_steam_id": [ - 3648 - ], - "team": [ - 5216 - ], - "team_id": [ - 3648 - ], - "tournament": [ - 5928 - ], - "tournament_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_registration_unlocks_select_column": {}, - "tournament_registration_unlocks_set_input": { - "created_at": [ - 5243 - ], - "player_steam_id": [ - 312 - ], - "team_id": [ - 6672 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_registration_unlocks_stddev_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_registration_unlocks_stddev_pop_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_registration_unlocks_stddev_samp_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_registration_unlocks_stream_cursor_input": { - "initial_value": [ - 5669 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "tournament_registration_unlocks_stream_cursor_value_input": { - "created_at": [ - 5243 - ], - "player_steam_id": [ - 312 - ], - "team_id": [ - 6672 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_registration_unlocks_sum_fields": { - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "tournament_registration_unlocks_update_column": {}, - "tournament_registration_unlocks_updates": { - "_inc": [ - 5656 - ], - "_set": [ - 5664 - ], - "where": [ - 5654 - ], - "__typename": [ - 85 - ] - }, - "tournament_registration_unlocks_var_pop_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_registration_unlocks_var_samp_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_registration_unlocks_variance_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_stage_windows": { - "closes_at": [ - 5243 - ], - "created_at": [ - 5243 - ], - "default_match_at": [ - 5243 - ], - "id": [ - 6672 - ], - "opens_at": [ - 5243 - ], - "round": [ - 41 - ], - "stage": [ - 5717 - ], - "tournament_stage_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_stage_windows_aggregate": { - "aggregate": [ - 5680 - ], - "nodes": [ - 5676 - ], - "__typename": [ - 85 - ] - }, - "tournament_stage_windows_aggregate_bool_exp": { - "count": [ - 5679 - ], - "__typename": [ - 85 - ] - }, - "tournament_stage_windows_aggregate_bool_exp_count": { - "arguments": [ - 5697 - ], - "distinct": [ - 6 - ], - "filter": [ - 5685 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "tournament_stage_windows_aggregate_fields": { - "avg": [ - 5683 - ], - "count": [ - 41, - { - "columns": [ - 5697, - "[tournament_stage_windows_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 5689 - ], - "min": [ - 5691 - ], - "stddev": [ - 5699 - ], - "stddev_pop": [ - 5701 - ], - "stddev_samp": [ - 5703 - ], - "sum": [ - 5707 - ], - "var_pop": [ - 5711 - ], - "var_samp": [ - 5713 - ], - "variance": [ - 5715 - ], - "__typename": [ - 85 - ] - }, - "tournament_stage_windows_aggregate_order_by": { - "avg": [ - 5684 - ], - "count": [ - 3648 - ], - "max": [ - 5690 - ], - "min": [ - 5692 - ], - "stddev": [ - 5700 - ], - "stddev_pop": [ - 5702 - ], - "stddev_samp": [ - 5704 - ], - "sum": [ - 5708 - ], - "var_pop": [ - 5712 - ], - "var_samp": [ - 5714 - ], - "variance": [ - 5716 - ], - "__typename": [ - 85 - ] - }, - "tournament_stage_windows_arr_rel_insert_input": { - "data": [ - 5688 - ], - "on_conflict": [ - 5694 - ], - "__typename": [ - 85 - ] - }, - "tournament_stage_windows_avg_fields": { - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_stage_windows_avg_order_by": { - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_stage_windows_bool_exp": { - "_and": [ - 5685 - ], - "_not": [ - 5685 - ], - "_or": [ - 5685 - ], - "closes_at": [ - 5244 - ], - "created_at": [ - 5244 - ], - "default_match_at": [ - 5244 - ], - "id": [ - 6674 - ], - "opens_at": [ - 5244 - ], - "round": [ - 42 - ], - "stage": [ - 5729 - ], - "tournament_stage_id": [ - 6674 - ], - "__typename": [ - 85 - ] - }, - "tournament_stage_windows_constraint": {}, - "tournament_stage_windows_inc_input": { - "round": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "tournament_stage_windows_insert_input": { - "closes_at": [ - 5243 - ], - "created_at": [ - 5243 - ], - "default_match_at": [ - 5243 - ], - "id": [ - 6672 - ], - "opens_at": [ - 5243 - ], - "round": [ - 41 - ], - "stage": [ - 5741 - ], - "tournament_stage_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_stage_windows_max_fields": { - "closes_at": [ - 5243 - ], - "created_at": [ - 5243 - ], - "default_match_at": [ - 5243 - ], - "id": [ - 6672 - ], - "opens_at": [ - 5243 - ], - "round": [ - 41 - ], - "tournament_stage_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_stage_windows_max_order_by": { - "closes_at": [ - 3648 - ], - "created_at": [ - 3648 - ], - "default_match_at": [ - 3648 - ], - "id": [ - 3648 - ], - "opens_at": [ - 3648 - ], - "round": [ - 3648 - ], - "tournament_stage_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_stage_windows_min_fields": { - "closes_at": [ - 5243 - ], - "created_at": [ - 5243 - ], - "default_match_at": [ - 5243 - ], - "id": [ - 6672 - ], - "opens_at": [ - 5243 - ], - "round": [ - 41 - ], - "tournament_stage_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_stage_windows_min_order_by": { - "closes_at": [ - 3648 - ], - "created_at": [ - 3648 - ], - "default_match_at": [ - 3648 - ], - "id": [ - 3648 - ], - "opens_at": [ - 3648 - ], - "round": [ - 3648 - ], - "tournament_stage_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_stage_windows_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 5676 - ], - "__typename": [ - 85 - ] - }, - "tournament_stage_windows_on_conflict": { - "constraint": [ - 5686 - ], - "update_columns": [ - 5709 - ], - "where": [ - 5685 - ], - "__typename": [ - 85 - ] - }, - "tournament_stage_windows_order_by": { - "closes_at": [ - 3648 - ], - "created_at": [ - 3648 - ], - "default_match_at": [ - 3648 - ], - "id": [ - 3648 - ], - "opens_at": [ - 3648 - ], - "round": [ - 3648 - ], - "stage": [ - 5743 - ], - "tournament_stage_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_stage_windows_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_stage_windows_select_column": {}, - "tournament_stage_windows_set_input": { - "closes_at": [ - 5243 - ], - "created_at": [ - 5243 - ], - "default_match_at": [ - 5243 - ], - "id": [ - 6672 - ], - "opens_at": [ - 5243 - ], - "round": [ - 41 - ], - "tournament_stage_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_stage_windows_stddev_fields": { - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_stage_windows_stddev_order_by": { - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_stage_windows_stddev_pop_fields": { - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_stage_windows_stddev_pop_order_by": { - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_stage_windows_stddev_samp_fields": { - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_stage_windows_stddev_samp_order_by": { - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_stage_windows_stream_cursor_input": { - "initial_value": [ - 5706 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "tournament_stage_windows_stream_cursor_value_input": { - "closes_at": [ - 5243 - ], - "created_at": [ - 5243 - ], - "default_match_at": [ - 5243 - ], - "id": [ - 6672 - ], - "opens_at": [ - 5243 - ], - "round": [ - 41 - ], - "tournament_stage_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_stage_windows_sum_fields": { - "round": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "tournament_stage_windows_sum_order_by": { - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_stage_windows_update_column": {}, - "tournament_stage_windows_updates": { - "_inc": [ - 5687 - ], - "_set": [ - 5698 - ], - "where": [ - 5685 - ], - "__typename": [ - 85 - ] - }, - "tournament_stage_windows_var_pop_fields": { - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_stage_windows_var_pop_order_by": { - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_stage_windows_var_samp_fields": { - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_stage_windows_var_samp_order_by": { - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_stage_windows_variance_fields": { - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_stage_windows_variance_order_by": { - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages": { - "brackets": [ - 5287, - { - "distinct_on": [ - 5311, - "[tournament_brackets_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5309, - "[tournament_brackets_order_by!]" - ], - "where": [ - 5298 - ] - } - ], - "brackets_aggregate": [ - 5288, - { - "distinct_on": [ - 5311, - "[tournament_brackets_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5309, - "[tournament_brackets_order_by!]" - ], - "where": [ - 5298 - ] - } - ], - "decider_best_of": [ - 41 - ], - "default_best_of": [ - 41 - ], - "e_tournament_stage_type": [ - 1611 - ], - "final_map_advantage": [ - 41 - ], - "groups": [ - 41 - ], - "id": [ - 6672 - ], - "match_options_id": [ - 6672 - ], - "max_rounds": [ - 41 - ], - "max_teams": [ - 41 - ], - "min_teams": [ - 41 - ], - "options": [ - 3290 - ], - "order": [ - 41 - ], - "results": [ - 7414, - { - "distinct_on": [ - 7446, - "[v_team_stage_results_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7444, - "[v_team_stage_results_order_by!]" - ], - "where": [ - 7433 - ] - } - ], - "results_aggregate": [ - 7415, - { - "distinct_on": [ - 7446, - "[v_team_stage_results_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7444, - "[v_team_stage_results_order_by!]" - ], - "where": [ - 7433 - ] - } - ], - "settings": [ - 2439, - { - "path": [ - 85 - ] - } - ], - "swiss_no_elimination": [ - 6 - ], - "third_place_match": [ - 6 - ], - "tournament": [ - 5896 - ], - "tournament_id": [ - 6672 - ], - "type": [ - 1616 - ], - "windows": [ - 5676, - { - "distinct_on": [ - 5697, - "[tournament_stage_windows_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5695, - "[tournament_stage_windows_order_by!]" - ], - "where": [ - 5685 - ] - } - ], - "windows_aggregate": [ - 5677, - { - "distinct_on": [ - 5697, - "[tournament_stage_windows_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5695, - "[tournament_stage_windows_order_by!]" - ], - "where": [ - 5685 - ] - } - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_aggregate": { - "aggregate": [ - 5723 - ], - "nodes": [ - 5717 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_aggregate_bool_exp": { - "bool_and": [ - 5720 - ], - "bool_or": [ - 5721 - ], - "count": [ - 5722 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_aggregate_bool_exp_bool_and": { - "arguments": [ - 5747 - ], - "distinct": [ - 6 - ], - "filter": [ - 5729 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_aggregate_bool_exp_bool_or": { - "arguments": [ - 5748 - ], - "distinct": [ - 6 - ], - "filter": [ - 5729 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_aggregate_bool_exp_count": { - "arguments": [ - 5746 - ], - "distinct": [ - 6 - ], - "filter": [ - 5729 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_aggregate_fields": { - "avg": [ - 5727 - ], - "count": [ - 41, - { - "columns": [ - 5746, - "[tournament_stages_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 5736 - ], - "min": [ - 5738 - ], - "stddev": [ - 5750 - ], - "stddev_pop": [ - 5752 - ], - "stddev_samp": [ - 5754 - ], - "sum": [ - 5758 - ], - "var_pop": [ - 5762 - ], - "var_samp": [ - 5764 - ], - "variance": [ - 5766 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_aggregate_order_by": { - "avg": [ - 5728 - ], - "count": [ - 3648 - ], - "max": [ - 5737 - ], - "min": [ - 5739 - ], - "stddev": [ - 5751 - ], - "stddev_pop": [ - 5753 - ], - "stddev_samp": [ - 5755 - ], - "sum": [ - 5759 - ], - "var_pop": [ - 5763 - ], - "var_samp": [ - 5765 - ], - "variance": [ - 5767 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_append_input": { - "settings": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_arr_rel_insert_input": { - "data": [ - 5735 - ], - "on_conflict": [ - 5742 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_avg_fields": { - "decider_best_of": [ - 32 - ], - "default_best_of": [ - 32 - ], - "final_map_advantage": [ - 32 - ], - "groups": [ - 32 - ], - "max_rounds": [ - 32 - ], - "max_teams": [ - 32 - ], - "min_teams": [ - 32 - ], - "order": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_avg_order_by": { - "decider_best_of": [ - 3648 - ], - "default_best_of": [ - 3648 - ], - "final_map_advantage": [ - 3648 - ], - "groups": [ - 3648 - ], - "max_rounds": [ - 3648 - ], - "max_teams": [ - 3648 - ], - "min_teams": [ - 3648 - ], - "order": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_bool_exp": { - "_and": [ - 5729 - ], - "_not": [ - 5729 - ], - "_or": [ - 5729 - ], - "brackets": [ - 5298 - ], - "brackets_aggregate": [ - 5289 - ], - "decider_best_of": [ - 42 - ], - "default_best_of": [ - 42 - ], - "e_tournament_stage_type": [ - 1614 - ], - "final_map_advantage": [ - 42 - ], - "groups": [ - 42 - ], - "id": [ - 6674 - ], - "match_options_id": [ - 6674 - ], - "max_rounds": [ - 42 - ], - "max_teams": [ - 42 - ], - "min_teams": [ - 42 - ], - "options": [ - 3301 - ], - "order": [ - 42 - ], - "results": [ - 7433 - ], - "results_aggregate": [ - 7416 - ], - "settings": [ - 2441 - ], - "swiss_no_elimination": [ - 7 - ], - "third_place_match": [ - 7 - ], - "tournament": [ - 5917 - ], - "tournament_id": [ - 6674 - ], - "type": [ - 1617 - ], - "windows": [ - 5685 - ], - "windows_aggregate": [ - 5678 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_constraint": {}, - "tournament_stages_delete_at_path_input": { - "settings": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_delete_elem_input": { - "settings": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_delete_key_input": { - "settings": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_inc_input": { - "decider_best_of": [ - 41 - ], - "default_best_of": [ - 41 - ], - "final_map_advantage": [ - 41 - ], - "groups": [ - 41 - ], - "max_rounds": [ - 41 - ], - "max_teams": [ - 41 - ], - "min_teams": [ - 41 - ], - "order": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_insert_input": { - "brackets": [ - 5295 - ], - "decider_best_of": [ - 41 - ], - "default_best_of": [ - 41 - ], - "e_tournament_stage_type": [ - 1622 - ], - "final_map_advantage": [ - 41 - ], - "groups": [ - 41 - ], - "id": [ - 6672 - ], - "match_options_id": [ - 6672 - ], - "max_rounds": [ - 41 - ], - "max_teams": [ - 41 - ], - "min_teams": [ - 41 - ], - "options": [ - 3310 - ], - "order": [ - 41 - ], - "results": [ - 7430 - ], - "settings": [ - 2439 - ], - "swiss_no_elimination": [ - 6 - ], - "third_place_match": [ - 6 - ], - "tournament": [ - 5926 - ], - "tournament_id": [ - 6672 - ], - "type": [ - 1616 - ], - "windows": [ - 5682 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_max_fields": { - "decider_best_of": [ - 41 - ], - "default_best_of": [ - 41 - ], - "final_map_advantage": [ - 41 - ], - "groups": [ - 41 - ], - "id": [ - 6672 - ], - "match_options_id": [ - 6672 - ], - "max_rounds": [ - 41 - ], - "max_teams": [ - 41 - ], - "min_teams": [ - 41 - ], - "order": [ - 41 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_max_order_by": { - "decider_best_of": [ - 3648 - ], - "default_best_of": [ - 3648 - ], - "final_map_advantage": [ - 3648 - ], - "groups": [ - 3648 - ], - "id": [ - 3648 - ], - "match_options_id": [ - 3648 - ], - "max_rounds": [ - 3648 - ], - "max_teams": [ - 3648 - ], - "min_teams": [ - 3648 - ], - "order": [ - 3648 - ], - "tournament_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_min_fields": { - "decider_best_of": [ - 41 - ], - "default_best_of": [ - 41 - ], - "final_map_advantage": [ - 41 - ], - "groups": [ - 41 - ], - "id": [ - 6672 - ], - "match_options_id": [ - 6672 - ], - "max_rounds": [ - 41 - ], - "max_teams": [ - 41 - ], - "min_teams": [ - 41 - ], - "order": [ - 41 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_min_order_by": { - "decider_best_of": [ - 3648 - ], - "default_best_of": [ - 3648 - ], - "final_map_advantage": [ - 3648 - ], - "groups": [ - 3648 - ], - "id": [ - 3648 - ], - "match_options_id": [ - 3648 - ], - "max_rounds": [ - 3648 - ], - "max_teams": [ - 3648 - ], - "min_teams": [ - 3648 - ], - "order": [ - 3648 - ], - "tournament_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 5717 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_obj_rel_insert_input": { - "data": [ - 5735 - ], - "on_conflict": [ - 5742 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_on_conflict": { - "constraint": [ - 5730 - ], - "update_columns": [ - 5760 - ], - "where": [ - 5729 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_order_by": { - "brackets_aggregate": [ - 5294 - ], - "decider_best_of": [ - 3648 - ], - "default_best_of": [ - 3648 - ], - "e_tournament_stage_type": [ - 1624 - ], - "final_map_advantage": [ - 3648 - ], - "groups": [ - 3648 - ], - "id": [ - 3648 - ], - "match_options_id": [ - 3648 - ], - "max_rounds": [ - 3648 - ], - "max_teams": [ - 3648 - ], - "min_teams": [ - 3648 - ], - "options": [ - 3312 - ], - "order": [ - 3648 - ], - "results_aggregate": [ - 7429 - ], - "settings": [ - 3648 - ], - "swiss_no_elimination": [ - 3648 - ], - "third_place_match": [ - 3648 - ], - "tournament": [ - 5928 - ], - "tournament_id": [ - 3648 - ], - "type": [ - 3648 - ], - "windows_aggregate": [ - 5681 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_prepend_input": { - "settings": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_select_column": {}, - "tournament_stages_select_column_tournament_stages_aggregate_bool_exp_bool_and_arguments_columns": {}, - "tournament_stages_select_column_tournament_stages_aggregate_bool_exp_bool_or_arguments_columns": {}, - "tournament_stages_set_input": { - "decider_best_of": [ - 41 - ], - "default_best_of": [ - 41 - ], - "final_map_advantage": [ - 41 - ], - "groups": [ - 41 - ], - "id": [ - 6672 - ], - "match_options_id": [ - 6672 - ], - "max_rounds": [ - 41 - ], - "max_teams": [ - 41 - ], - "min_teams": [ - 41 - ], - "order": [ - 41 - ], - "settings": [ - 2439 - ], - "swiss_no_elimination": [ - 6 - ], - "third_place_match": [ - 6 - ], - "tournament_id": [ - 6672 - ], - "type": [ - 1616 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_stddev_fields": { - "decider_best_of": [ - 32 - ], - "default_best_of": [ - 32 - ], - "final_map_advantage": [ - 32 - ], - "groups": [ - 32 - ], - "max_rounds": [ - 32 - ], - "max_teams": [ - 32 - ], - "min_teams": [ - 32 - ], - "order": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_stddev_order_by": { - "decider_best_of": [ - 3648 - ], - "default_best_of": [ - 3648 - ], - "final_map_advantage": [ - 3648 - ], - "groups": [ - 3648 - ], - "max_rounds": [ - 3648 - ], - "max_teams": [ - 3648 - ], - "min_teams": [ - 3648 - ], - "order": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_stddev_pop_fields": { - "decider_best_of": [ - 32 - ], - "default_best_of": [ - 32 - ], - "final_map_advantage": [ - 32 - ], - "groups": [ - 32 - ], - "max_rounds": [ - 32 - ], - "max_teams": [ - 32 - ], - "min_teams": [ - 32 - ], - "order": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_stddev_pop_order_by": { - "decider_best_of": [ - 3648 - ], - "default_best_of": [ - 3648 - ], - "final_map_advantage": [ - 3648 - ], - "groups": [ - 3648 - ], - "max_rounds": [ - 3648 - ], - "max_teams": [ - 3648 - ], - "min_teams": [ - 3648 - ], - "order": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_stddev_samp_fields": { - "decider_best_of": [ - 32 - ], - "default_best_of": [ - 32 - ], - "final_map_advantage": [ - 32 - ], - "groups": [ - 32 - ], - "max_rounds": [ - 32 - ], - "max_teams": [ - 32 - ], - "min_teams": [ - 32 - ], - "order": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_stddev_samp_order_by": { - "decider_best_of": [ - 3648 - ], - "default_best_of": [ - 3648 - ], - "final_map_advantage": [ - 3648 - ], - "groups": [ - 3648 - ], - "max_rounds": [ - 3648 - ], - "max_teams": [ - 3648 - ], - "min_teams": [ - 3648 - ], - "order": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_stream_cursor_input": { - "initial_value": [ - 5757 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_stream_cursor_value_input": { - "decider_best_of": [ - 41 - ], - "default_best_of": [ - 41 - ], - "final_map_advantage": [ - 41 - ], - "groups": [ - 41 - ], - "id": [ - 6672 - ], - "match_options_id": [ - 6672 - ], - "max_rounds": [ - 41 - ], - "max_teams": [ - 41 - ], - "min_teams": [ - 41 - ], - "order": [ - 41 - ], - "settings": [ - 2439 - ], - "swiss_no_elimination": [ - 6 - ], - "third_place_match": [ - 6 - ], - "tournament_id": [ - 6672 - ], - "type": [ - 1616 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_sum_fields": { - "decider_best_of": [ - 41 - ], - "default_best_of": [ - 41 - ], - "final_map_advantage": [ - 41 - ], - "groups": [ - 41 - ], - "max_rounds": [ - 41 - ], - "max_teams": [ - 41 - ], - "min_teams": [ - 41 - ], - "order": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_sum_order_by": { - "decider_best_of": [ - 3648 - ], - "default_best_of": [ - 3648 - ], - "final_map_advantage": [ - 3648 - ], - "groups": [ - 3648 - ], - "max_rounds": [ - 3648 - ], - "max_teams": [ - 3648 - ], - "min_teams": [ - 3648 - ], - "order": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_update_column": {}, - "tournament_stages_updates": { - "_append": [ - 5725 - ], - "_delete_at_path": [ - 5731 - ], - "_delete_elem": [ - 5732 - ], - "_delete_key": [ - 5733 - ], - "_inc": [ - 5734 - ], - "_prepend": [ - 5745 - ], - "_set": [ - 5749 - ], - "where": [ - 5729 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_var_pop_fields": { - "decider_best_of": [ - 32 - ], - "default_best_of": [ - 32 - ], - "final_map_advantage": [ - 32 - ], - "groups": [ - 32 - ], - "max_rounds": [ - 32 - ], - "max_teams": [ - 32 - ], - "min_teams": [ - 32 - ], - "order": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_var_pop_order_by": { - "decider_best_of": [ - 3648 - ], - "default_best_of": [ - 3648 - ], - "final_map_advantage": [ - 3648 - ], - "groups": [ - 3648 - ], - "max_rounds": [ - 3648 - ], - "max_teams": [ - 3648 - ], - "min_teams": [ - 3648 - ], - "order": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_var_samp_fields": { - "decider_best_of": [ - 32 - ], - "default_best_of": [ - 32 - ], - "final_map_advantage": [ - 32 - ], - "groups": [ - 32 - ], - "max_rounds": [ - 32 - ], - "max_teams": [ - 32 - ], - "min_teams": [ - 32 - ], - "order": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_var_samp_order_by": { - "decider_best_of": [ - 3648 - ], - "default_best_of": [ - 3648 - ], - "final_map_advantage": [ - 3648 - ], - "groups": [ - 3648 - ], - "max_rounds": [ - 3648 - ], - "max_teams": [ - 3648 - ], - "min_teams": [ - 3648 - ], - "order": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_variance_fields": { - "decider_best_of": [ - 32 - ], - "default_best_of": [ - 32 - ], - "final_map_advantage": [ - 32 - ], - "groups": [ - 32 - ], - "max_rounds": [ - 32 - ], - "max_teams": [ - 32 - ], - "min_teams": [ - 32 - ], - "order": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_stages_variance_order_by": { - "decider_best_of": [ - 3648 - ], - "default_best_of": [ - 3648 - ], - "final_map_advantage": [ - 3648 - ], - "groups": [ - 3648 - ], - "max_rounds": [ - 3648 - ], - "max_teams": [ - 3648 - ], - "min_teams": [ - 3648 - ], - "order": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_invites": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "invited_by": [ - 4606 - ], - "invited_by_player_steam_id": [ - 312 - ], - "player": [ - 4606 - ], - "steam_id": [ - 312 - ], - "team": [ - 5850 - ], - "tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_invites_aggregate": { - "aggregate": [ - 5772 - ], - "nodes": [ - 5768 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_invites_aggregate_bool_exp": { - "count": [ - 5771 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_invites_aggregate_bool_exp_count": { - "arguments": [ - 5789 - ], - "distinct": [ - 6 - ], - "filter": [ - 5777 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_invites_aggregate_fields": { - "avg": [ - 5775 - ], - "count": [ - 41, - { - "columns": [ - 5789, - "[tournament_team_invites_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 5781 - ], - "min": [ - 5783 - ], - "stddev": [ - 5791 - ], - "stddev_pop": [ - 5793 - ], - "stddev_samp": [ - 5795 - ], - "sum": [ - 5799 - ], - "var_pop": [ - 5803 - ], - "var_samp": [ - 5805 - ], - "variance": [ - 5807 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_invites_aggregate_order_by": { - "avg": [ - 5776 - ], - "count": [ - 3648 - ], - "max": [ - 5782 - ], - "min": [ - 5784 - ], - "stddev": [ - 5792 - ], - "stddev_pop": [ - 5794 - ], - "stddev_samp": [ - 5796 - ], - "sum": [ - 5800 - ], - "var_pop": [ - 5804 - ], - "var_samp": [ - 5806 - ], - "variance": [ - 5808 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_invites_arr_rel_insert_input": { - "data": [ - 5780 - ], - "on_conflict": [ - 5786 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_invites_avg_fields": { - "invited_by_player_steam_id": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_invites_avg_order_by": { - "invited_by_player_steam_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_invites_bool_exp": { - "_and": [ - 5777 - ], - "_not": [ - 5777 - ], - "_or": [ - 5777 - ], - "created_at": [ - 5244 - ], - "id": [ - 6674 - ], - "invited_by": [ - 4610 - ], - "invited_by_player_steam_id": [ - 314 - ], - "player": [ - 4610 - ], - "steam_id": [ - 314 - ], - "team": [ - 5861 - ], - "tournament_team_id": [ - 6674 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_invites_constraint": {}, - "tournament_team_invites_inc_input": { - "invited_by_player_steam_id": [ - 312 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_invites_insert_input": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "invited_by": [ - 4617 - ], - "invited_by_player_steam_id": [ - 312 - ], - "player": [ - 4617 - ], - "steam_id": [ - 312 - ], - "team": [ - 5870 - ], - "tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_invites_max_fields": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "invited_by_player_steam_id": [ - 312 - ], - "steam_id": [ - 312 - ], - "tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_invites_max_order_by": { - "created_at": [ - 3648 - ], - "id": [ - 3648 - ], - "invited_by_player_steam_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "tournament_team_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_invites_min_fields": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "invited_by_player_steam_id": [ - 312 - ], - "steam_id": [ - 312 - ], - "tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_invites_min_order_by": { - "created_at": [ - 3648 - ], - "id": [ - 3648 - ], - "invited_by_player_steam_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "tournament_team_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_invites_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 5768 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_invites_on_conflict": { - "constraint": [ - 5778 - ], - "update_columns": [ - 5801 - ], - "where": [ - 5777 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_invites_order_by": { - "created_at": [ - 3648 - ], - "id": [ - 3648 - ], - "invited_by": [ - 4619 - ], - "invited_by_player_steam_id": [ - 3648 - ], - "player": [ - 4619 - ], - "steam_id": [ - 3648 - ], - "team": [ - 5872 - ], - "tournament_team_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_invites_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_invites_select_column": {}, - "tournament_team_invites_set_input": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "invited_by_player_steam_id": [ - 312 - ], - "steam_id": [ - 312 - ], - "tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_invites_stddev_fields": { - "invited_by_player_steam_id": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_invites_stddev_order_by": { - "invited_by_player_steam_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_invites_stddev_pop_fields": { - "invited_by_player_steam_id": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_invites_stddev_pop_order_by": { - "invited_by_player_steam_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_invites_stddev_samp_fields": { - "invited_by_player_steam_id": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_invites_stddev_samp_order_by": { - "invited_by_player_steam_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_invites_stream_cursor_input": { - "initial_value": [ - 5798 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_invites_stream_cursor_value_input": { - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "invited_by_player_steam_id": [ - 312 - ], - "steam_id": [ - 312 - ], - "tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_invites_sum_fields": { - "invited_by_player_steam_id": [ - 312 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_invites_sum_order_by": { - "invited_by_player_steam_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_invites_update_column": {}, - "tournament_team_invites_updates": { - "_inc": [ - 5779 - ], - "_set": [ - 5790 - ], - "where": [ - 5777 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_invites_var_pop_fields": { - "invited_by_player_steam_id": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_invites_var_pop_order_by": { - "invited_by_player_steam_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_invites_var_samp_fields": { - "invited_by_player_steam_id": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_invites_var_samp_order_by": { - "invited_by_player_steam_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_invites_variance_fields": { - "invited_by_player_steam_id": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_invites_variance_order_by": { - "invited_by_player_steam_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_roster": { - "checked_in_at": [ - 5243 - ], - "e_team_role": [ - 1488 - ], - "player": [ - 4606 - ], - "player_steam_id": [ - 312 - ], - "role": [ - 1493 - ], - "target_eligible": [ - 6 - ], - "tournament": [ - 5896 - ], - "tournament_id": [ - 6672 - ], - "tournament_team": [ - 5850 - ], - "tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_roster_aggregate": { - "aggregate": [ - 5813 - ], - "nodes": [ - 5809 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_roster_aggregate_bool_exp": { - "count": [ - 5812 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_roster_aggregate_bool_exp_count": { - "arguments": [ - 5830 - ], - "distinct": [ - 6 - ], - "filter": [ - 5818 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_roster_aggregate_fields": { - "avg": [ - 5816 - ], - "count": [ - 41, - { - "columns": [ - 5830, - "[tournament_team_roster_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 5822 - ], - "min": [ - 5824 - ], - "stddev": [ - 5832 - ], - "stddev_pop": [ - 5834 - ], - "stddev_samp": [ - 5836 - ], - "sum": [ - 5840 - ], - "var_pop": [ - 5844 - ], - "var_samp": [ - 5846 - ], - "variance": [ - 5848 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_roster_aggregate_order_by": { - "avg": [ - 5817 - ], - "count": [ - 3648 - ], - "max": [ - 5823 - ], - "min": [ - 5825 - ], - "stddev": [ - 5833 - ], - "stddev_pop": [ - 5835 - ], - "stddev_samp": [ - 5837 - ], - "sum": [ - 5841 - ], - "var_pop": [ - 5845 - ], - "var_samp": [ - 5847 - ], - "variance": [ - 5849 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_roster_arr_rel_insert_input": { - "data": [ - 5821 - ], - "on_conflict": [ - 5827 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_roster_avg_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_roster_avg_order_by": { - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_roster_bool_exp": { - "_and": [ - 5818 - ], - "_not": [ - 5818 - ], - "_or": [ - 5818 - ], - "checked_in_at": [ - 5244 - ], - "e_team_role": [ - 1491 - ], - "player": [ - 4610 - ], - "player_steam_id": [ - 314 - ], - "role": [ - 1494 - ], - "target_eligible": [ - 7 - ], - "tournament": [ - 5917 - ], - "tournament_id": [ - 6674 - ], - "tournament_team": [ - 5861 - ], - "tournament_team_id": [ - 6674 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_roster_constraint": {}, - "tournament_team_roster_inc_input": { - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_roster_insert_input": { - "checked_in_at": [ - 5243 - ], - "e_team_role": [ - 1499 - ], - "player": [ - 4617 - ], - "player_steam_id": [ - 312 - ], - "role": [ - 1493 - ], - "tournament": [ - 5926 - ], - "tournament_id": [ - 6672 - ], - "tournament_team": [ - 5870 - ], - "tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_roster_max_fields": { - "checked_in_at": [ - 5243 - ], - "player_steam_id": [ - 312 - ], - "tournament_id": [ - 6672 - ], - "tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_roster_max_order_by": { - "checked_in_at": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "tournament_id": [ - 3648 - ], - "tournament_team_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_roster_min_fields": { - "checked_in_at": [ - 5243 - ], - "player_steam_id": [ - 312 - ], - "tournament_id": [ - 6672 - ], - "tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_roster_min_order_by": { - "checked_in_at": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "tournament_id": [ - 3648 - ], - "tournament_team_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_roster_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 5809 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_roster_on_conflict": { - "constraint": [ - 5819 - ], - "update_columns": [ - 5842 - ], - "where": [ - 5818 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_roster_order_by": { - "checked_in_at": [ - 3648 - ], - "e_team_role": [ - 1501 - ], - "player": [ - 4619 - ], - "player_steam_id": [ - 3648 - ], - "role": [ - 3648 - ], - "target_eligible": [ - 3648 - ], - "tournament": [ - 5928 - ], - "tournament_id": [ - 3648 - ], - "tournament_team": [ - 5872 - ], - "tournament_team_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_roster_pk_columns_input": { - "player_steam_id": [ - 312 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_roster_select_column": {}, - "tournament_team_roster_set_input": { - "checked_in_at": [ - 5243 - ], - "player_steam_id": [ - 312 - ], - "role": [ - 1493 - ], - "tournament_id": [ - 6672 - ], - "tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_roster_stddev_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_roster_stddev_order_by": { - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_roster_stddev_pop_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_roster_stddev_pop_order_by": { - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_roster_stddev_samp_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_roster_stddev_samp_order_by": { - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_roster_stream_cursor_input": { - "initial_value": [ - 5839 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_roster_stream_cursor_value_input": { - "checked_in_at": [ - 5243 - ], - "player_steam_id": [ - 312 - ], - "role": [ - 1493 - ], - "tournament_id": [ - 6672 - ], - "tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_roster_sum_fields": { - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_roster_sum_order_by": { - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_roster_update_column": {}, - "tournament_team_roster_updates": { - "_inc": [ - 5820 - ], - "_set": [ - 5831 - ], - "where": [ - 5818 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_roster_var_pop_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_roster_var_pop_order_by": { - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_roster_var_samp_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_roster_var_samp_order_by": { - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_roster_variance_fields": { - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_team_roster_variance_order_by": { - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_teams": { - "can_manage": [ - 6 - ], - "captain": [ - 4606 - ], - "captain_steam_id": [ - 312 - ], - "checked_in": [ - 6 - ], - "checked_in_at": [ - 5243 - ], - "created_at": [ - 5243 - ], - "creator": [ - 4606 - ], - "eligible_at": [ - 5243 - ], - "free_agents": [ - 5357, - { - "distinct_on": [ - 5378, - "[tournament_free_agents_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5376, - "[tournament_free_agents_order_by!]" - ], - "where": [ - 5366 - ] - } - ], - "free_agents_aggregate": [ - 5358, - { - "distinct_on": [ - 5378, - "[tournament_free_agents_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5376, - "[tournament_free_agents_order_by!]" - ], - "where": [ - 5366 - ] - } - ], - "id": [ - 6672 - ], - "invites": [ - 5768, - { - "distinct_on": [ - 5789, - "[tournament_team_invites_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5787, - "[tournament_team_invites_order_by!]" - ], - "where": [ - 5777 - ] - } - ], - "invites_aggregate": [ - 5769, - { - "distinct_on": [ - 5789, - "[tournament_team_invites_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5787, - "[tournament_team_invites_order_by!]" - ], - "where": [ - 5777 - ] - } - ], - "is_drafted": [ - 6 - ], - "name": [ - 85 - ], - "owner_steam_id": [ - 312 - ], - "results": [ - 7414 - ], - "roster": [ - 5809, - { - "distinct_on": [ - 5830, - "[tournament_team_roster_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5828, - "[tournament_team_roster_order_by!]" - ], - "where": [ - 5818 - ] - } - ], - "roster_aggregate": [ - 5810, - { - "distinct_on": [ - 5830, - "[tournament_team_roster_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5828, - "[tournament_team_roster_order_by!]" - ], - "where": [ - 5818 - ] - } - ], - "seed": [ - 41 - ], - "short_name": [ - 85 - ], - "team": [ - 5194 - ], - "team_id": [ - 6672 - ], - "tournament": [ - 5896 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_teams_aggregate": { - "aggregate": [ - 5856 - ], - "nodes": [ - 5850 - ], - "__typename": [ - 85 - ] - }, - "tournament_teams_aggregate_bool_exp": { - "bool_and": [ - 5853 - ], - "bool_or": [ - 5854 - ], - "count": [ - 5855 - ], - "__typename": [ - 85 - ] - }, - "tournament_teams_aggregate_bool_exp_bool_and": { - "arguments": [ - 5875 - ], - "distinct": [ - 6 - ], - "filter": [ - 5861 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "tournament_teams_aggregate_bool_exp_bool_or": { - "arguments": [ - 5876 - ], - "distinct": [ - 6 - ], - "filter": [ - 5861 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "tournament_teams_aggregate_bool_exp_count": { - "arguments": [ - 5874 - ], - "distinct": [ - 6 - ], - "filter": [ - 5861 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "tournament_teams_aggregate_fields": { - "avg": [ - 5859 - ], - "count": [ - 41, - { - "columns": [ - 5874, - "[tournament_teams_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 5865 - ], - "min": [ - 5867 - ], - "stddev": [ - 5878 - ], - "stddev_pop": [ - 5880 - ], - "stddev_samp": [ - 5882 - ], - "sum": [ - 5886 - ], - "var_pop": [ - 5890 - ], - "var_samp": [ - 5892 - ], - "variance": [ - 5894 - ], - "__typename": [ - 85 - ] - }, - "tournament_teams_aggregate_order_by": { - "avg": [ - 5860 - ], - "count": [ - 3648 - ], - "max": [ - 5866 - ], - "min": [ - 5868 - ], - "stddev": [ - 5879 - ], - "stddev_pop": [ - 5881 - ], - "stddev_samp": [ - 5883 - ], - "sum": [ - 5887 - ], - "var_pop": [ - 5891 - ], - "var_samp": [ - 5893 - ], - "variance": [ - 5895 - ], - "__typename": [ - 85 - ] - }, - "tournament_teams_arr_rel_insert_input": { - "data": [ - 5864 - ], - "on_conflict": [ - 5871 - ], - "__typename": [ - 85 - ] - }, - "tournament_teams_avg_fields": { - "captain_steam_id": [ - 32 - ], - "owner_steam_id": [ - 32 - ], - "seed": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_teams_avg_order_by": { - "captain_steam_id": [ - 3648 - ], - "owner_steam_id": [ - 3648 - ], - "seed": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_teams_bool_exp": { - "_and": [ - 5861 - ], - "_not": [ - 5861 - ], - "_or": [ - 5861 - ], - "can_manage": [ - 7 - ], - "captain": [ - 4610 - ], - "captain_steam_id": [ - 314 - ], - "checked_in": [ - 7 - ], - "checked_in_at": [ - 5244 - ], - "created_at": [ - 5244 - ], - "creator": [ - 4610 - ], - "eligible_at": [ - 5244 - ], - "free_agents": [ - 5366 - ], - "free_agents_aggregate": [ - 5359 - ], - "id": [ - 6674 - ], - "invites": [ - 5777 - ], - "invites_aggregate": [ - 5770 - ], - "is_drafted": [ - 7 - ], - "name": [ - 87 - ], - "owner_steam_id": [ - 314 - ], - "results": [ - 7433 - ], - "roster": [ - 5818 - ], - "roster_aggregate": [ - 5811 - ], - "seed": [ - 42 - ], - "short_name": [ - 87 - ], - "team": [ - 5205 - ], - "team_id": [ - 6674 - ], - "tournament": [ - 5917 - ], - "tournament_id": [ - 6674 - ], - "__typename": [ - 85 - ] - }, - "tournament_teams_constraint": {}, - "tournament_teams_inc_input": { - "captain_steam_id": [ - 312 - ], - "owner_steam_id": [ - 312 - ], - "seed": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "tournament_teams_insert_input": { - "captain": [ - 4617 - ], - "captain_steam_id": [ - 312 - ], - "checked_in_at": [ - 5243 - ], - "created_at": [ - 5243 - ], - "creator": [ - 4617 - ], - "eligible_at": [ - 5243 - ], - "free_agents": [ - 5363 - ], - "id": [ - 6672 - ], - "invites": [ - 5774 - ], - "is_drafted": [ - 6 - ], - "name": [ - 85 - ], - "owner_steam_id": [ - 312 - ], - "results": [ - 7442 - ], - "roster": [ - 5815 - ], - "seed": [ - 41 - ], - "short_name": [ - 85 - ], - "team": [ - 5214 - ], - "team_id": [ - 6672 - ], - "tournament": [ - 5926 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_teams_max_fields": { - "captain_steam_id": [ - 312 - ], - "checked_in_at": [ - 5243 - ], - "created_at": [ - 5243 - ], - "eligible_at": [ - 5243 - ], - "id": [ - 6672 - ], - "name": [ - 85 - ], - "owner_steam_id": [ - 312 - ], - "seed": [ - 41 - ], - "short_name": [ - 85 - ], - "team_id": [ - 6672 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_teams_max_order_by": { - "captain_steam_id": [ - 3648 - ], - "checked_in_at": [ - 3648 - ], - "created_at": [ - 3648 - ], - "eligible_at": [ - 3648 - ], - "id": [ - 3648 - ], - "name": [ - 3648 - ], - "owner_steam_id": [ - 3648 - ], - "seed": [ - 3648 - ], - "short_name": [ - 3648 - ], - "team_id": [ - 3648 - ], - "tournament_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_teams_min_fields": { - "captain_steam_id": [ - 312 - ], - "checked_in_at": [ - 5243 - ], - "created_at": [ - 5243 - ], - "eligible_at": [ - 5243 - ], - "id": [ - 6672 - ], - "name": [ - 85 - ], - "owner_steam_id": [ - 312 - ], - "seed": [ - 41 - ], - "short_name": [ - 85 - ], - "team_id": [ - 6672 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_teams_min_order_by": { - "captain_steam_id": [ - 3648 - ], - "checked_in_at": [ - 3648 - ], - "created_at": [ - 3648 - ], - "eligible_at": [ - 3648 - ], - "id": [ - 3648 - ], - "name": [ - 3648 - ], - "owner_steam_id": [ - 3648 - ], - "seed": [ - 3648 - ], - "short_name": [ - 3648 - ], - "team_id": [ - 3648 - ], - "tournament_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_teams_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 5850 - ], - "__typename": [ - 85 - ] - }, - "tournament_teams_obj_rel_insert_input": { - "data": [ - 5864 - ], - "on_conflict": [ - 5871 - ], - "__typename": [ - 85 - ] - }, - "tournament_teams_on_conflict": { - "constraint": [ - 5862 - ], - "update_columns": [ - 5888 - ], - "where": [ - 5861 - ], - "__typename": [ - 85 - ] - }, - "tournament_teams_order_by": { - "can_manage": [ - 3648 - ], - "captain": [ - 4619 - ], - "captain_steam_id": [ - 3648 - ], - "checked_in": [ - 3648 - ], - "checked_in_at": [ - 3648 - ], - "created_at": [ - 3648 - ], - "creator": [ - 4619 - ], - "eligible_at": [ - 3648 - ], - "free_agents_aggregate": [ - 5362 - ], - "id": [ - 3648 - ], - "invites_aggregate": [ - 5773 - ], - "is_drafted": [ - 3648 - ], - "name": [ - 3648 - ], - "owner_steam_id": [ - 3648 - ], - "results": [ - 7444 - ], - "roster_aggregate": [ - 5814 - ], - "seed": [ - 3648 - ], - "short_name": [ - 3648 - ], - "team": [ - 5216 - ], - "team_id": [ - 3648 - ], - "tournament": [ - 5928 - ], - "tournament_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_teams_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_teams_select_column": {}, - "tournament_teams_select_column_tournament_teams_aggregate_bool_exp_bool_and_arguments_columns": {}, - "tournament_teams_select_column_tournament_teams_aggregate_bool_exp_bool_or_arguments_columns": {}, - "tournament_teams_set_input": { - "captain_steam_id": [ - 312 - ], - "checked_in_at": [ - 5243 - ], - "created_at": [ - 5243 - ], - "eligible_at": [ - 5243 - ], - "id": [ - 6672 - ], - "is_drafted": [ - 6 - ], - "name": [ - 85 - ], - "owner_steam_id": [ - 312 - ], - "seed": [ - 41 - ], - "short_name": [ - 85 - ], - "team_id": [ - 6672 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_teams_stddev_fields": { - "captain_steam_id": [ - 32 - ], - "owner_steam_id": [ - 32 - ], - "seed": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_teams_stddev_order_by": { - "captain_steam_id": [ - 3648 - ], - "owner_steam_id": [ - 3648 - ], - "seed": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_teams_stddev_pop_fields": { - "captain_steam_id": [ - 32 - ], - "owner_steam_id": [ - 32 - ], - "seed": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_teams_stddev_pop_order_by": { - "captain_steam_id": [ - 3648 - ], - "owner_steam_id": [ - 3648 - ], - "seed": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_teams_stddev_samp_fields": { - "captain_steam_id": [ - 32 - ], - "owner_steam_id": [ - 32 - ], - "seed": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_teams_stddev_samp_order_by": { - "captain_steam_id": [ - 3648 - ], - "owner_steam_id": [ - 3648 - ], - "seed": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_teams_stream_cursor_input": { - "initial_value": [ - 5885 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "tournament_teams_stream_cursor_value_input": { - "captain_steam_id": [ - 312 - ], - "checked_in_at": [ - 5243 - ], - "created_at": [ - 5243 - ], - "eligible_at": [ - 5243 - ], - "id": [ - 6672 - ], - "is_drafted": [ - 6 - ], - "name": [ - 85 - ], - "owner_steam_id": [ - 312 - ], - "seed": [ - 41 - ], - "short_name": [ - 85 - ], - "team_id": [ - 6672 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournament_teams_sum_fields": { - "captain_steam_id": [ - 312 - ], - "owner_steam_id": [ - 312 - ], - "seed": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "tournament_teams_sum_order_by": { - "captain_steam_id": [ - 3648 - ], - "owner_steam_id": [ - 3648 - ], - "seed": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_teams_update_column": {}, - "tournament_teams_updates": { - "_inc": [ - 5863 - ], - "_set": [ - 5877 - ], - "where": [ - 5861 - ], - "__typename": [ - 85 - ] - }, - "tournament_teams_var_pop_fields": { - "captain_steam_id": [ - 32 - ], - "owner_steam_id": [ - 32 - ], - "seed": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_teams_var_pop_order_by": { - "captain_steam_id": [ - 3648 - ], - "owner_steam_id": [ - 3648 - ], - "seed": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_teams_var_samp_fields": { - "captain_steam_id": [ - 32 - ], - "owner_steam_id": [ - 32 - ], - "seed": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_teams_var_samp_order_by": { - "captain_steam_id": [ - 3648 - ], - "owner_steam_id": [ - 3648 - ], - "seed": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournament_teams_variance_fields": { - "captain_steam_id": [ - 32 - ], - "owner_steam_id": [ - 32 - ], - "seed": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournament_teams_variance_order_by": { - "captain_steam_id": [ - 3648 - ], - "owner_steam_id": [ - 3648 - ], - "seed": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournaments": { - "admin": [ - 4606 - ], - "auto_start": [ - 6 - ], - "award_configs": [ - 5245, - { - "distinct_on": [ - 5267, - "[tournament_awards_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5265, - "[tournament_awards_order_by!]" - ], - "where": [ - 5254 - ] - } - ], - "award_configs_aggregate": [ - 5246, - { - "distinct_on": [ - 5267, - "[tournament_awards_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5265, - "[tournament_awards_order_by!]" - ], - "where": [ - 5254 - ] - } - ], - "awards": [ - 243, - { - "distinct_on": [ - 264, - "[award_recipients_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 262, - "[award_recipients_order_by!]" - ], - "where": [ - 252 - ] - } - ], - "awards_aggregate": [ - 244, - { - "distinct_on": [ - 264, - "[award_recipients_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 262, - "[award_recipients_order_by!]" - ], - "where": [ - 252 - ] - } - ], - "awards_enabled": [ - 6 - ], - "banner": [ - 85 - ], - "can_cancel": [ - 6 - ], - "can_close_registration": [ - 6 - ], - "can_join": [ - 6 - ], - "can_open_registration": [ - 6 - ], - "can_pause": [ - 6 - ], - "can_resume": [ - 6 - ], - "can_review_check_in": [ - 6 - ], - "can_setup": [ - 6 - ], - "can_start": [ - 6 - ], - "categories": [ - 5333, - { - "distinct_on": [ - 5351, - "[tournament_categories_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5349, - "[tournament_categories_order_by!]" - ], - "where": [ - 5340 - ] - } - ], - "categories_aggregate": [ - 5334, - { - "distinct_on": [ - 5351, - "[tournament_categories_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5349, - "[tournament_categories_order_by!]" - ], - "where": [ - 5340 - ] - } - ], - "check_in_closed_for": [ - 5243 - ], - "check_in_closes_before_minutes": [ - 41 - ], - "check_in_closing_notified_for": [ - 5243 - ], - "check_in_ends_at": [ - 5243 - ], - "check_in_open": [ - 6 - ], - "check_in_opens_before_minutes": [ - 41 - ], - "check_in_required": [ - 6 - ], - "check_in_setting": [ - 690 - ], - "check_in_started": [ - 6 - ], - "created_at": [ - 5243 - ], - "description": [ - 85 - ], - "discord_guild_id": [ - 85 - ], - "discord_notifications_enabled": [ - 6 - ], - "discord_notify_Canceled": [ - 6 - ], - "discord_notify_Finished": [ - 6 - ], - "discord_notify_Forfeit": [ - 6 - ], - "discord_notify_Live": [ - 6 - ], - "discord_notify_MapPaused": [ - 6 - ], - "discord_notify_PickingPlayers": [ - 6 - ], - "discord_notify_Scheduled": [ - 6 - ], - "discord_notify_Surrendered": [ - 6 - ], - "discord_notify_Tie": [ - 6 - ], - "discord_notify_Veto": [ - 6 - ], - "discord_notify_WaitingForCheckIn": [ - 6 - ], - "discord_notify_WaitingForServer": [ - 6 - ], - "discord_role_id": [ - 85 - ], - "discord_voice_enabled": [ - 6 - ], - "discord_webhook": [ - 85 - ], - "e_tournament_status": [ - 1632 - ], - "free_agents": [ - 5357, - { - "distinct_on": [ - 5378, - "[tournament_free_agents_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5376, - "[tournament_free_agents_order_by!]" - ], - "where": [ - 5366 - ] - } - ], - "free_agents_aggregate": [ - 5358, - { - "distinct_on": [ - 5378, - "[tournament_free_agents_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5376, - "[tournament_free_agents_order_by!]" - ], - "where": [ - 5366 - ] - } - ], - "has_min_teams": [ - 6 - ], - "homepage": [ - 85 - ], - "id": [ - 6672 - ], - "invite_only": [ - 6 - ], - "is_league": [ - 6 - ], - "is_organizer": [ - 6 - ], - "joined_tournament": [ - 6 - ], - "latitude": [ - 2093 - ], - "league_season_division": [ - 2617 - ], - "location": [ - 85 - ], - "logo": [ - 85 - ], - "longitude": [ - 2093 - ], - "match_options_id": [ - 6672 - ], - "max_elo": [ - 41 - ], - "max_players_per_lineup": [ - 41 - ], - "meets_min_role": [ - 6 - ], - "min_elo": [ - 41 - ], - "min_players_per_lineup": [ - 41 - ], - "min_role": [ - 1286 - ], - "missed_check_in_count": [ - 41 - ], - "name": [ - 85 - ], - "options": [ - 3290 - ], - "organizer_steam_id": [ - 312 - ], - "organizer_teams": [ - 5544, - { - "distinct_on": [ - 5562, - "[tournament_organizer_teams_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5560, - "[tournament_organizer_teams_order_by!]" - ], - "where": [ - 5551 - ] - } - ], - "organizer_teams_aggregate": [ - 5545, - { - "distinct_on": [ - 5562, - "[tournament_organizer_teams_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5560, - "[tournament_organizer_teams_order_by!]" - ], - "where": [ - 5551 - ] - } - ], - "organizers": [ - 5568, - { - "distinct_on": [ - 5589, - "[tournament_organizers_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5587, - "[tournament_organizers_order_by!]" - ], - "where": [ - 5577 - ] - } - ], - "organizers_aggregate": [ - 5569, - { - "distinct_on": [ - 5589, - "[tournament_organizers_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5587, - "[tournament_organizers_order_by!]" - ], - "where": [ - 5577 - ] - } - ], - "player_stats": [ - 7525, - { - "distinct_on": [ - 7551, - "[v_tournament_player_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7550, - "[v_tournament_player_stats_order_by!]" - ], - "where": [ - 7544 - ] - } - ], - "player_stats_aggregate": [ - 7526, - { - "distinct_on": [ - 7551, - "[v_tournament_player_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7550, - "[v_tournament_player_stats_order_by!]" - ], - "where": [ - 7544 - ] - } - ], - "prizes": [ - 5609, - { - "distinct_on": [ - 5630, - "[tournament_prizes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5628, - "[tournament_prizes_order_by!]" - ], - "where": [ - 5618 - ] - } - ], - "prizes_aggregate": [ - 5610, - { - "distinct_on": [ - 5630, - "[tournament_prizes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5628, - "[tournament_prizes_order_by!]" - ], - "where": [ - 5618 - ] - } - ], - "regions": [ - 85 - ], - "registration_type": [ - 1596 - ], - "registration_unlocked": [ - 6 - ], - "results": [ - 7474, - { - "distinct_on": [ - 7500, - "[v_team_tournament_results_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7499, - "[v_team_tournament_results_order_by!]" - ], - "where": [ - 7493 - ] - } - ], - "results_aggregate": [ - 7475, - { - "distinct_on": [ - 7500, - "[v_team_tournament_results_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7499, - "[v_team_tournament_results_order_by!]" - ], - "where": [ - 7493 - ] - } - ], - "rosters": [ - 5809, - { - "distinct_on": [ - 5830, - "[tournament_team_roster_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5828, - "[tournament_team_roster_order_by!]" - ], - "where": [ - 5818 - ] - } - ], - "rosters_aggregate": [ - 5810, - { - "distinct_on": [ - 5830, - "[tournament_team_roster_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5828, - "[tournament_team_roster_order_by!]" - ], - "where": [ - 5818 - ] - } - ], - "scheduling_mode": [ - 85 - ], - "stages": [ - 5717, - { - "distinct_on": [ - 5746, - "[tournament_stages_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5743, - "[tournament_stages_order_by!]" - ], - "where": [ - 5729 - ] - } - ], - "stages_aggregate": [ - 5718, - { - "distinct_on": [ - 5746, - "[tournament_stages_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5743, - "[tournament_stages_order_by!]" - ], - "where": [ - 5729 - ] - } - ], - "start": [ - 5243 - ], - "status": [ - 1637 - ], - "teams": [ - 5850, - { - "distinct_on": [ - 5874, - "[tournament_teams_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5872, - "[tournament_teams_order_by!]" - ], - "where": [ - 5861 - ] - } - ], - "teams_aggregate": [ - 5851, - { - "distinct_on": [ - 5874, - "[tournament_teams_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5872, - "[tournament_teams_order_by!]" - ], - "where": [ - 5861 - ] - } - ], - "__typename": [ - 85 - ] - }, - "tournaments_aggregate": { - "aggregate": [ - 5912 - ], - "nodes": [ - 5896 - ], - "__typename": [ - 85 - ] - }, - "tournaments_aggregate_bool_exp": { - "avg": [ - 5899 - ], - "bool_and": [ - 5900 - ], - "bool_or": [ - 5901 - ], - "corr": [ - 5902 - ], - "count": [ - 5904 - ], - "covar_samp": [ - 5905 - ], - "max": [ - 5907 - ], - "min": [ - 5908 - ], - "stddev_samp": [ - 5909 - ], - "sum": [ - 5910 - ], - "var_samp": [ - 5911 - ], - "__typename": [ - 85 - ] - }, - "tournaments_aggregate_bool_exp_avg": { - "arguments": [ - 5931 - ], - "distinct": [ - 6 - ], - "filter": [ - 5917 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "tournaments_aggregate_bool_exp_bool_and": { - "arguments": [ - 5932 - ], - "distinct": [ - 6 - ], - "filter": [ - 5917 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "tournaments_aggregate_bool_exp_bool_or": { - "arguments": [ - 5933 - ], - "distinct": [ - 6 - ], - "filter": [ - 5917 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "tournaments_aggregate_bool_exp_corr": { - "arguments": [ - 5903 - ], - "distinct": [ - 6 - ], - "filter": [ - 5917 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "tournaments_aggregate_bool_exp_corr_arguments": { - "X": [ - 5934 - ], - "Y": [ - 5934 - ], - "__typename": [ - 85 - ] - }, - "tournaments_aggregate_bool_exp_count": { - "arguments": [ - 5930 - ], - "distinct": [ - 6 - ], - "filter": [ - 5917 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "tournaments_aggregate_bool_exp_covar_samp": { - "arguments": [ - 5906 - ], - "distinct": [ - 6 - ], - "filter": [ - 5917 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "tournaments_aggregate_bool_exp_covar_samp_arguments": { - "X": [ - 5935 - ], - "Y": [ - 5935 - ], - "__typename": [ - 85 - ] - }, - "tournaments_aggregate_bool_exp_max": { - "arguments": [ - 5936 - ], - "distinct": [ - 6 - ], - "filter": [ - 5917 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "tournaments_aggregate_bool_exp_min": { - "arguments": [ - 5937 - ], - "distinct": [ - 6 - ], - "filter": [ - 5917 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "tournaments_aggregate_bool_exp_stddev_samp": { - "arguments": [ - 5938 - ], - "distinct": [ - 6 - ], - "filter": [ - 5917 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "tournaments_aggregate_bool_exp_sum": { - "arguments": [ - 5939 - ], - "distinct": [ - 6 - ], - "filter": [ - 5917 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "tournaments_aggregate_bool_exp_var_samp": { - "arguments": [ - 5940 - ], - "distinct": [ - 6 - ], - "filter": [ - 5917 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "tournaments_aggregate_fields": { - "avg": [ - 5915 - ], - "count": [ - 41, - { - "columns": [ - 5930, - "[tournaments_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 5921 - ], - "min": [ - 5923 - ], - "stddev": [ - 5942 - ], - "stddev_pop": [ - 5944 - ], - "stddev_samp": [ - 5946 - ], - "sum": [ - 5950 - ], - "var_pop": [ - 5954 - ], - "var_samp": [ - 5956 - ], - "variance": [ - 5958 - ], - "__typename": [ - 85 - ] - }, - "tournaments_aggregate_order_by": { - "avg": [ - 5916 - ], - "count": [ - 3648 - ], - "max": [ - 5922 - ], - "min": [ - 5924 - ], - "stddev": [ - 5943 - ], - "stddev_pop": [ - 5945 - ], - "stddev_samp": [ - 5947 - ], - "sum": [ - 5951 - ], - "var_pop": [ - 5955 - ], - "var_samp": [ - 5957 - ], - "variance": [ - 5959 - ], - "__typename": [ - 85 - ] - }, - "tournaments_arr_rel_insert_input": { - "data": [ - 5920 - ], - "on_conflict": [ - 5927 - ], - "__typename": [ - 85 - ] - }, - "tournaments_avg_fields": { - "check_in_closes_before_minutes": [ - 32 - ], - "check_in_opens_before_minutes": [ - 32 - ], - "latitude": [ - 32 - ], - "longitude": [ - 32 - ], - "max_elo": [ - 32 - ], - "max_players_per_lineup": [ - 41 - ], - "min_elo": [ - 32 - ], - "min_players_per_lineup": [ - 41 - ], - "missed_check_in_count": [ - 41 - ], - "organizer_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournaments_avg_order_by": { - "check_in_closes_before_minutes": [ - 3648 - ], - "check_in_opens_before_minutes": [ - 3648 - ], - "latitude": [ - 3648 - ], - "longitude": [ - 3648 - ], - "max_elo": [ - 3648 - ], - "min_elo": [ - 3648 - ], - "organizer_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournaments_bool_exp": { - "_and": [ - 5917 - ], - "_not": [ - 5917 - ], - "_or": [ - 5917 - ], - "admin": [ - 4610 - ], - "auto_start": [ - 7 - ], - "award_configs": [ - 5254 - ], - "award_configs_aggregate": [ - 5247 - ], - "awards": [ - 252 - ], - "awards_aggregate": [ - 245 - ], - "awards_enabled": [ - 7 - ], - "banner": [ - 87 - ], - "can_cancel": [ - 7 - ], - "can_close_registration": [ - 7 - ], - "can_join": [ - 7 - ], - "can_open_registration": [ - 7 - ], - "can_pause": [ - 7 - ], - "can_resume": [ - 7 - ], - "can_review_check_in": [ - 7 - ], - "can_setup": [ - 7 - ], - "can_start": [ - 7 - ], - "categories": [ - 5340 - ], - "categories_aggregate": [ - 5335 - ], - "check_in_closed_for": [ - 5244 - ], - "check_in_closes_before_minutes": [ - 42 - ], - "check_in_closing_notified_for": [ - 5244 - ], - "check_in_ends_at": [ - 5244 - ], - "check_in_open": [ - 7 - ], - "check_in_opens_before_minutes": [ - 42 - ], - "check_in_required": [ - 7 - ], - "check_in_setting": [ - 691 - ], - "check_in_started": [ - 7 - ], - "created_at": [ - 5244 - ], - "description": [ - 87 - ], - "discord_guild_id": [ - 87 - ], - "discord_notifications_enabled": [ - 7 - ], - "discord_notify_Canceled": [ - 7 - ], - "discord_notify_Finished": [ - 7 - ], - "discord_notify_Forfeit": [ - 7 - ], - "discord_notify_Live": [ - 7 - ], - "discord_notify_MapPaused": [ - 7 - ], - "discord_notify_PickingPlayers": [ - 7 - ], - "discord_notify_Scheduled": [ - 7 - ], - "discord_notify_Surrendered": [ - 7 - ], - "discord_notify_Tie": [ - 7 - ], - "discord_notify_Veto": [ - 7 - ], - "discord_notify_WaitingForCheckIn": [ - 7 - ], - "discord_notify_WaitingForServer": [ - 7 - ], - "discord_role_id": [ - 87 - ], - "discord_voice_enabled": [ - 7 - ], - "discord_webhook": [ - 87 - ], - "e_tournament_status": [ - 1635 - ], - "free_agents": [ - 5366 - ], - "free_agents_aggregate": [ - 5359 - ], - "has_min_teams": [ - 7 - ], - "homepage": [ - 87 - ], - "id": [ - 6674 - ], - "invite_only": [ - 7 - ], - "is_league": [ - 7 - ], - "is_organizer": [ - 7 - ], - "joined_tournament": [ - 7 - ], - "latitude": [ - 2094 - ], - "league_season_division": [ - 2624 - ], - "location": [ - 87 - ], - "logo": [ - 87 - ], - "longitude": [ - 2094 - ], - "match_options_id": [ - 6674 - ], - "max_elo": [ - 42 - ], - "max_players_per_lineup": [ - 42 - ], - "meets_min_role": [ - 7 - ], - "min_elo": [ - 42 - ], - "min_players_per_lineup": [ - 42 - ], - "min_role": [ - 1287 - ], - "missed_check_in_count": [ - 42 - ], - "name": [ - 87 - ], - "options": [ - 3301 - ], - "organizer_steam_id": [ - 314 - ], - "organizer_teams": [ - 5551 - ], - "organizer_teams_aggregate": [ - 5546 - ], - "organizers": [ - 5577 - ], - "organizers_aggregate": [ - 5570 - ], - "player_stats": [ - 7544 - ], - "player_stats_aggregate": [ - 7527 - ], - "prizes": [ - 5618 - ], - "prizes_aggregate": [ - 5611 - ], - "regions": [ - 86 - ], - "registration_type": [ - 1597 - ], - "registration_unlocked": [ - 7 - ], - "results": [ - 7493 - ], - "results_aggregate": [ - 7476 - ], - "rosters": [ - 5818 - ], - "rosters_aggregate": [ - 5811 - ], - "scheduling_mode": [ - 87 - ], - "stages": [ - 5729 - ], - "stages_aggregate": [ - 5719 - ], - "start": [ - 5244 - ], - "status": [ - 1638 - ], - "teams": [ - 5861 - ], - "teams_aggregate": [ - 5852 - ], - "__typename": [ - 85 - ] - }, - "tournaments_constraint": {}, - "tournaments_inc_input": { - "check_in_closes_before_minutes": [ - 41 - ], - "check_in_opens_before_minutes": [ - 41 - ], - "latitude": [ - 2093 - ], - "longitude": [ - 2093 - ], - "max_elo": [ - 41 - ], - "min_elo": [ - 41 - ], - "organizer_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "tournaments_insert_input": { - "admin": [ - 4617 - ], - "auto_start": [ - 6 - ], - "award_configs": [ - 5251 - ], - "awards": [ - 249 - ], - "awards_enabled": [ - 6 - ], - "banner": [ - 85 - ], - "categories": [ - 5339 - ], - "check_in_closed_for": [ - 5243 - ], - "check_in_closes_before_minutes": [ - 41 - ], - "check_in_closing_notified_for": [ - 5243 - ], - "check_in_ends_at": [ - 5243 - ], - "check_in_opens_before_minutes": [ - 41 - ], - "check_in_required": [ - 6 - ], - "check_in_setting": [ - 690 - ], - "created_at": [ - 5243 - ], - "description": [ - 85 - ], - "discord_guild_id": [ - 85 - ], - "discord_notifications_enabled": [ - 6 - ], - "discord_notify_Canceled": [ - 6 - ], - "discord_notify_Finished": [ - 6 - ], - "discord_notify_Forfeit": [ - 6 - ], - "discord_notify_Live": [ - 6 - ], - "discord_notify_MapPaused": [ - 6 - ], - "discord_notify_PickingPlayers": [ - 6 - ], - "discord_notify_Scheduled": [ - 6 - ], - "discord_notify_Surrendered": [ - 6 - ], - "discord_notify_Tie": [ - 6 - ], - "discord_notify_Veto": [ - 6 - ], - "discord_notify_WaitingForCheckIn": [ - 6 - ], - "discord_notify_WaitingForServer": [ - 6 - ], - "discord_role_id": [ - 85 - ], - "discord_voice_enabled": [ - 6 - ], - "discord_webhook": [ - 85 - ], - "e_tournament_status": [ - 1643 - ], - "free_agents": [ - 5363 - ], - "homepage": [ - 85 - ], - "id": [ - 6672 - ], - "invite_only": [ - 6 - ], - "is_league": [ - 6 - ], - "latitude": [ - 2093 - ], - "league_season_division": [ - 2632 - ], - "location": [ - 85 - ], - "logo": [ - 85 - ], - "longitude": [ - 2093 - ], - "match_options_id": [ - 6672 - ], - "max_elo": [ - 41 - ], - "min_elo": [ - 41 - ], - "min_role": [ - 1286 - ], - "name": [ - 85 - ], - "options": [ - 3310 - ], - "organizer_steam_id": [ - 312 - ], - "organizer_teams": [ - 5550 - ], - "organizers": [ - 5574 - ], - "player_stats": [ - 7541 - ], - "prizes": [ - 5615 - ], - "regions": [ - 85 - ], - "registration_type": [ - 1596 - ], - "results": [ - 7490 - ], - "rosters": [ - 5815 - ], - "scheduling_mode": [ - 85 - ], - "stages": [ - 5726 - ], - "start": [ - 5243 - ], - "status": [ - 1637 - ], - "teams": [ - 5858 - ], - "__typename": [ - 85 - ] - }, - "tournaments_max_fields": { - "banner": [ - 85 - ], - "check_in_closed_for": [ - 5243 - ], - "check_in_closes_before_minutes": [ - 41 - ], - "check_in_closing_notified_for": [ - 5243 - ], - "check_in_ends_at": [ - 5243 - ], - "check_in_opens_before_minutes": [ - 41 - ], - "created_at": [ - 5243 - ], - "description": [ - 85 - ], - "discord_guild_id": [ - 85 - ], - "discord_role_id": [ - 85 - ], - "discord_webhook": [ - 85 - ], - "homepage": [ - 85 - ], - "id": [ - 6672 - ], - "latitude": [ - 2093 - ], - "location": [ - 85 - ], - "logo": [ - 85 - ], - "longitude": [ - 2093 - ], - "match_options_id": [ - 6672 - ], - "max_elo": [ - 41 - ], - "max_players_per_lineup": [ - 41 - ], - "min_elo": [ - 41 - ], - "min_players_per_lineup": [ - 41 - ], - "missed_check_in_count": [ - 41 - ], - "name": [ - 85 - ], - "organizer_steam_id": [ - 312 - ], - "regions": [ - 85 - ], - "scheduling_mode": [ - 85 - ], - "start": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "tournaments_max_order_by": { - "banner": [ - 3648 - ], - "check_in_closed_for": [ - 3648 - ], - "check_in_closes_before_minutes": [ - 3648 - ], - "check_in_closing_notified_for": [ - 3648 - ], - "check_in_ends_at": [ - 3648 - ], - "check_in_opens_before_minutes": [ - 3648 - ], - "created_at": [ - 3648 - ], - "description": [ - 3648 - ], - "discord_guild_id": [ - 3648 - ], - "discord_role_id": [ - 3648 - ], - "discord_webhook": [ - 3648 - ], - "homepage": [ - 3648 - ], - "id": [ - 3648 - ], - "latitude": [ - 3648 - ], - "location": [ - 3648 - ], - "logo": [ - 3648 - ], - "longitude": [ - 3648 - ], - "match_options_id": [ - 3648 - ], - "max_elo": [ - 3648 - ], - "min_elo": [ - 3648 - ], - "name": [ - 3648 - ], - "organizer_steam_id": [ - 3648 - ], - "regions": [ - 3648 - ], - "scheduling_mode": [ - 3648 - ], - "start": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournaments_min_fields": { - "banner": [ - 85 - ], - "check_in_closed_for": [ - 5243 - ], - "check_in_closes_before_minutes": [ - 41 - ], - "check_in_closing_notified_for": [ - 5243 - ], - "check_in_ends_at": [ - 5243 - ], - "check_in_opens_before_minutes": [ - 41 - ], - "created_at": [ - 5243 - ], - "description": [ - 85 - ], - "discord_guild_id": [ - 85 - ], - "discord_role_id": [ - 85 - ], - "discord_webhook": [ - 85 - ], - "homepage": [ - 85 - ], - "id": [ - 6672 - ], - "latitude": [ - 2093 - ], - "location": [ - 85 - ], - "logo": [ - 85 - ], - "longitude": [ - 2093 - ], - "match_options_id": [ - 6672 - ], - "max_elo": [ - 41 - ], - "max_players_per_lineup": [ - 41 - ], - "min_elo": [ - 41 - ], - "min_players_per_lineup": [ - 41 - ], - "missed_check_in_count": [ - 41 - ], - "name": [ - 85 - ], - "organizer_steam_id": [ - 312 - ], - "regions": [ - 85 - ], - "scheduling_mode": [ - 85 - ], - "start": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "tournaments_min_order_by": { - "banner": [ - 3648 - ], - "check_in_closed_for": [ - 3648 - ], - "check_in_closes_before_minutes": [ - 3648 - ], - "check_in_closing_notified_for": [ - 3648 - ], - "check_in_ends_at": [ - 3648 - ], - "check_in_opens_before_minutes": [ - 3648 - ], - "created_at": [ - 3648 - ], - "description": [ - 3648 - ], - "discord_guild_id": [ - 3648 - ], - "discord_role_id": [ - 3648 - ], - "discord_webhook": [ - 3648 - ], - "homepage": [ - 3648 - ], - "id": [ - 3648 - ], - "latitude": [ - 3648 - ], - "location": [ - 3648 - ], - "logo": [ - 3648 - ], - "longitude": [ - 3648 - ], - "match_options_id": [ - 3648 - ], - "max_elo": [ - 3648 - ], - "min_elo": [ - 3648 - ], - "name": [ - 3648 - ], - "organizer_steam_id": [ - 3648 - ], - "regions": [ - 3648 - ], - "scheduling_mode": [ - 3648 - ], - "start": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournaments_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 5896 - ], - "__typename": [ - 85 - ] - }, - "tournaments_obj_rel_insert_input": { - "data": [ - 5920 - ], - "on_conflict": [ - 5927 - ], - "__typename": [ - 85 - ] - }, - "tournaments_on_conflict": { - "constraint": [ - 5918 - ], - "update_columns": [ - 5952 - ], - "where": [ - 5917 - ], - "__typename": [ - 85 - ] - }, - "tournaments_order_by": { - "admin": [ - 4619 - ], - "auto_start": [ - 3648 - ], - "award_configs_aggregate": [ - 5250 - ], - "awards_aggregate": [ - 248 - ], - "awards_enabled": [ - 3648 - ], - "banner": [ - 3648 - ], - "can_cancel": [ - 3648 - ], - "can_close_registration": [ - 3648 - ], - "can_join": [ - 3648 - ], - "can_open_registration": [ - 3648 - ], - "can_pause": [ - 3648 - ], - "can_resume": [ - 3648 - ], - "can_review_check_in": [ - 3648 - ], - "can_setup": [ - 3648 - ], - "can_start": [ - 3648 - ], - "categories_aggregate": [ - 5338 - ], - "check_in_closed_for": [ - 3648 - ], - "check_in_closes_before_minutes": [ - 3648 - ], - "check_in_closing_notified_for": [ - 3648 - ], - "check_in_ends_at": [ - 3648 - ], - "check_in_open": [ - 3648 - ], - "check_in_opens_before_minutes": [ - 3648 - ], - "check_in_required": [ - 3648 - ], - "check_in_setting": [ - 3648 - ], - "check_in_started": [ - 3648 - ], - "created_at": [ - 3648 - ], - "description": [ - 3648 - ], - "discord_guild_id": [ - 3648 - ], - "discord_notifications_enabled": [ - 3648 - ], - "discord_notify_Canceled": [ - 3648 - ], - "discord_notify_Finished": [ - 3648 - ], - "discord_notify_Forfeit": [ - 3648 - ], - "discord_notify_Live": [ - 3648 - ], - "discord_notify_MapPaused": [ - 3648 - ], - "discord_notify_PickingPlayers": [ - 3648 - ], - "discord_notify_Scheduled": [ - 3648 - ], - "discord_notify_Surrendered": [ - 3648 - ], - "discord_notify_Tie": [ - 3648 - ], - "discord_notify_Veto": [ - 3648 - ], - "discord_notify_WaitingForCheckIn": [ - 3648 - ], - "discord_notify_WaitingForServer": [ - 3648 - ], - "discord_role_id": [ - 3648 - ], - "discord_voice_enabled": [ - 3648 - ], - "discord_webhook": [ - 3648 - ], - "e_tournament_status": [ - 1645 - ], - "free_agents_aggregate": [ - 5362 - ], - "has_min_teams": [ - 3648 - ], - "homepage": [ - 3648 - ], - "id": [ - 3648 - ], - "invite_only": [ - 3648 - ], - "is_league": [ - 3648 - ], - "is_organizer": [ - 3648 - ], - "joined_tournament": [ - 3648 - ], - "latitude": [ - 3648 - ], - "league_season_division": [ - 2634 - ], - "location": [ - 3648 - ], - "logo": [ - 3648 - ], - "longitude": [ - 3648 - ], - "match_options_id": [ - 3648 - ], - "max_elo": [ - 3648 - ], - "max_players_per_lineup": [ - 3648 - ], - "meets_min_role": [ - 3648 - ], - "min_elo": [ - 3648 - ], - "min_players_per_lineup": [ - 3648 - ], - "min_role": [ - 3648 - ], - "missed_check_in_count": [ - 3648 - ], - "name": [ - 3648 - ], - "options": [ - 3312 - ], - "organizer_steam_id": [ - 3648 - ], - "organizer_teams_aggregate": [ - 5549 - ], - "organizers_aggregate": [ - 5573 - ], - "player_stats_aggregate": [ - 7540 - ], - "prizes_aggregate": [ - 5614 - ], - "regions": [ - 3648 - ], - "registration_type": [ - 3648 - ], - "registration_unlocked": [ - 3648 - ], - "results_aggregate": [ - 7489 - ], - "rosters_aggregate": [ - 5814 - ], - "scheduling_mode": [ - 3648 - ], - "stages_aggregate": [ - 5724 - ], - "start": [ - 3648 - ], - "status": [ - 3648 - ], - "teams_aggregate": [ - 5857 - ], - "__typename": [ - 85 - ] - }, - "tournaments_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "tournaments_select_column": {}, - "tournaments_select_column_tournaments_aggregate_bool_exp_avg_arguments_columns": {}, - "tournaments_select_column_tournaments_aggregate_bool_exp_bool_and_arguments_columns": {}, - "tournaments_select_column_tournaments_aggregate_bool_exp_bool_or_arguments_columns": {}, - "tournaments_select_column_tournaments_aggregate_bool_exp_corr_arguments_columns": {}, - "tournaments_select_column_tournaments_aggregate_bool_exp_covar_samp_arguments_columns": {}, - "tournaments_select_column_tournaments_aggregate_bool_exp_max_arguments_columns": {}, - "tournaments_select_column_tournaments_aggregate_bool_exp_min_arguments_columns": {}, - "tournaments_select_column_tournaments_aggregate_bool_exp_stddev_samp_arguments_columns": {}, - "tournaments_select_column_tournaments_aggregate_bool_exp_sum_arguments_columns": {}, - "tournaments_select_column_tournaments_aggregate_bool_exp_var_samp_arguments_columns": {}, - "tournaments_set_input": { - "auto_start": [ - 6 - ], - "awards_enabled": [ - 6 - ], - "banner": [ - 85 - ], - "check_in_closed_for": [ - 5243 - ], - "check_in_closes_before_minutes": [ - 41 - ], - "check_in_closing_notified_for": [ - 5243 - ], - "check_in_ends_at": [ - 5243 - ], - "check_in_opens_before_minutes": [ - 41 - ], - "check_in_required": [ - 6 - ], - "check_in_setting": [ - 690 - ], - "created_at": [ - 5243 - ], - "description": [ - 85 - ], - "discord_guild_id": [ - 85 - ], - "discord_notifications_enabled": [ - 6 - ], - "discord_notify_Canceled": [ - 6 - ], - "discord_notify_Finished": [ - 6 - ], - "discord_notify_Forfeit": [ - 6 - ], - "discord_notify_Live": [ - 6 - ], - "discord_notify_MapPaused": [ - 6 - ], - "discord_notify_PickingPlayers": [ - 6 - ], - "discord_notify_Scheduled": [ - 6 - ], - "discord_notify_Surrendered": [ - 6 - ], - "discord_notify_Tie": [ - 6 - ], - "discord_notify_Veto": [ - 6 - ], - "discord_notify_WaitingForCheckIn": [ - 6 - ], - "discord_notify_WaitingForServer": [ - 6 - ], - "discord_role_id": [ - 85 - ], - "discord_voice_enabled": [ - 6 - ], - "discord_webhook": [ - 85 - ], - "homepage": [ - 85 - ], - "id": [ - 6672 - ], - "invite_only": [ - 6 - ], - "is_league": [ - 6 - ], - "latitude": [ - 2093 - ], - "location": [ - 85 - ], - "logo": [ - 85 - ], - "longitude": [ - 2093 - ], - "match_options_id": [ - 6672 - ], - "max_elo": [ - 41 - ], - "min_elo": [ - 41 - ], - "min_role": [ - 1286 - ], - "name": [ - 85 - ], - "organizer_steam_id": [ - 312 - ], - "regions": [ - 85 - ], - "registration_type": [ - 1596 - ], - "scheduling_mode": [ - 85 - ], - "start": [ - 5243 - ], - "status": [ - 1637 - ], - "__typename": [ - 85 - ] - }, - "tournaments_stddev_fields": { - "check_in_closes_before_minutes": [ - 32 - ], - "check_in_opens_before_minutes": [ - 32 - ], - "latitude": [ - 32 - ], - "longitude": [ - 32 - ], - "max_elo": [ - 32 - ], - "max_players_per_lineup": [ - 41 - ], - "min_elo": [ - 32 - ], - "min_players_per_lineup": [ - 41 - ], - "missed_check_in_count": [ - 41 - ], - "organizer_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournaments_stddev_order_by": { - "check_in_closes_before_minutes": [ - 3648 - ], - "check_in_opens_before_minutes": [ - 3648 - ], - "latitude": [ - 3648 - ], - "longitude": [ - 3648 - ], - "max_elo": [ - 3648 - ], - "min_elo": [ - 3648 - ], - "organizer_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournaments_stddev_pop_fields": { - "check_in_closes_before_minutes": [ - 32 - ], - "check_in_opens_before_minutes": [ - 32 - ], - "latitude": [ - 32 - ], - "longitude": [ - 32 - ], - "max_elo": [ - 32 - ], - "max_players_per_lineup": [ - 41 - ], - "min_elo": [ - 32 - ], - "min_players_per_lineup": [ - 41 - ], - "missed_check_in_count": [ - 41 - ], - "organizer_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournaments_stddev_pop_order_by": { - "check_in_closes_before_minutes": [ - 3648 - ], - "check_in_opens_before_minutes": [ - 3648 - ], - "latitude": [ - 3648 - ], - "longitude": [ - 3648 - ], - "max_elo": [ - 3648 - ], - "min_elo": [ - 3648 - ], - "organizer_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournaments_stddev_samp_fields": { - "check_in_closes_before_minutes": [ - 32 - ], - "check_in_opens_before_minutes": [ - 32 - ], - "latitude": [ - 32 - ], - "longitude": [ - 32 - ], - "max_elo": [ - 32 - ], - "max_players_per_lineup": [ - 41 - ], - "min_elo": [ - 32 - ], - "min_players_per_lineup": [ - 41 - ], - "missed_check_in_count": [ - 41 - ], - "organizer_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournaments_stddev_samp_order_by": { - "check_in_closes_before_minutes": [ - 3648 - ], - "check_in_opens_before_minutes": [ - 3648 - ], - "latitude": [ - 3648 - ], - "longitude": [ - 3648 - ], - "max_elo": [ - 3648 - ], - "min_elo": [ - 3648 - ], - "organizer_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournaments_stream_cursor_input": { - "initial_value": [ - 5949 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "tournaments_stream_cursor_value_input": { - "auto_start": [ - 6 - ], - "awards_enabled": [ - 6 - ], - "banner": [ - 85 - ], - "check_in_closed_for": [ - 5243 - ], - "check_in_closes_before_minutes": [ - 41 - ], - "check_in_closing_notified_for": [ - 5243 - ], - "check_in_ends_at": [ - 5243 - ], - "check_in_opens_before_minutes": [ - 41 - ], - "check_in_required": [ - 6 - ], - "check_in_setting": [ - 690 - ], - "created_at": [ - 5243 - ], - "description": [ - 85 - ], - "discord_guild_id": [ - 85 - ], - "discord_notifications_enabled": [ - 6 - ], - "discord_notify_Canceled": [ - 6 - ], - "discord_notify_Finished": [ - 6 - ], - "discord_notify_Forfeit": [ - 6 - ], - "discord_notify_Live": [ - 6 - ], - "discord_notify_MapPaused": [ - 6 - ], - "discord_notify_PickingPlayers": [ - 6 - ], - "discord_notify_Scheduled": [ - 6 - ], - "discord_notify_Surrendered": [ - 6 - ], - "discord_notify_Tie": [ - 6 - ], - "discord_notify_Veto": [ - 6 - ], - "discord_notify_WaitingForCheckIn": [ - 6 - ], - "discord_notify_WaitingForServer": [ - 6 - ], - "discord_role_id": [ - 85 - ], - "discord_voice_enabled": [ - 6 - ], - "discord_webhook": [ - 85 - ], - "homepage": [ - 85 - ], - "id": [ - 6672 - ], - "invite_only": [ - 6 - ], - "is_league": [ - 6 - ], - "latitude": [ - 2093 - ], - "location": [ - 85 - ], - "logo": [ - 85 - ], - "longitude": [ - 2093 - ], - "match_options_id": [ - 6672 - ], - "max_elo": [ - 41 - ], - "min_elo": [ - 41 - ], - "min_role": [ - 1286 - ], - "name": [ - 85 - ], - "organizer_steam_id": [ - 312 - ], - "regions": [ - 85 - ], - "registration_type": [ - 1596 - ], - "scheduling_mode": [ - 85 - ], - "start": [ - 5243 - ], - "status": [ - 1637 - ], - "__typename": [ - 85 - ] - }, - "tournaments_sum_fields": { - "check_in_closes_before_minutes": [ - 41 - ], - "check_in_opens_before_minutes": [ - 41 - ], - "latitude": [ - 2093 - ], - "longitude": [ - 2093 - ], - "max_elo": [ - 41 - ], - "max_players_per_lineup": [ - 41 - ], - "min_elo": [ - 41 - ], - "min_players_per_lineup": [ - 41 - ], - "missed_check_in_count": [ - 41 - ], - "organizer_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "tournaments_sum_order_by": { - "check_in_closes_before_minutes": [ - 3648 - ], - "check_in_opens_before_minutes": [ - 3648 - ], - "latitude": [ - 3648 - ], - "longitude": [ - 3648 - ], - "max_elo": [ - 3648 - ], - "min_elo": [ - 3648 - ], - "organizer_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournaments_update_column": {}, - "tournaments_updates": { - "_inc": [ - 5919 - ], - "_set": [ - 5941 - ], - "where": [ - 5917 - ], - "__typename": [ - 85 - ] - }, - "tournaments_var_pop_fields": { - "check_in_closes_before_minutes": [ - 32 - ], - "check_in_opens_before_minutes": [ - 32 - ], - "latitude": [ - 32 - ], - "longitude": [ - 32 - ], - "max_elo": [ - 32 - ], - "max_players_per_lineup": [ - 41 - ], - "min_elo": [ - 32 - ], - "min_players_per_lineup": [ - 41 - ], - "missed_check_in_count": [ - 41 - ], - "organizer_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournaments_var_pop_order_by": { - "check_in_closes_before_minutes": [ - 3648 - ], - "check_in_opens_before_minutes": [ - 3648 - ], - "latitude": [ - 3648 - ], - "longitude": [ - 3648 - ], - "max_elo": [ - 3648 - ], - "min_elo": [ - 3648 - ], - "organizer_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournaments_var_samp_fields": { - "check_in_closes_before_minutes": [ - 32 - ], - "check_in_opens_before_minutes": [ - 32 - ], - "latitude": [ - 32 - ], - "longitude": [ - 32 - ], - "max_elo": [ - 32 - ], - "max_players_per_lineup": [ - 41 - ], - "min_elo": [ - 32 - ], - "min_players_per_lineup": [ - 41 - ], - "missed_check_in_count": [ - 41 - ], - "organizer_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournaments_var_samp_order_by": { - "check_in_closes_before_minutes": [ - 3648 - ], - "check_in_opens_before_minutes": [ - 3648 - ], - "latitude": [ - 3648 - ], - "longitude": [ - 3648 - ], - "max_elo": [ - 3648 - ], - "min_elo": [ - 3648 - ], - "organizer_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "tournaments_variance_fields": { - "check_in_closes_before_minutes": [ - 32 - ], - "check_in_opens_before_minutes": [ - 32 - ], - "latitude": [ - 32 - ], - "longitude": [ - 32 - ], - "max_elo": [ - 32 - ], - "max_players_per_lineup": [ - 41 - ], - "min_elo": [ - 32 - ], - "min_players_per_lineup": [ - 41 - ], - "missed_check_in_count": [ - 41 - ], - "organizer_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "tournaments_variance_order_by": { - "check_in_closes_before_minutes": [ - 3648 - ], - "check_in_opens_before_minutes": [ - 3648 - ], - "latitude": [ - 3648 - ], - "longitude": [ - 3648 - ], - "max_elo": [ - 3648 - ], - "min_elo": [ - 3648 - ], - "organizer_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_collection_items": { - "collection": [ - 6001 - ], - "collection_id": [ - 6672 - ], - "created_at": [ - 5243 - ], - "note": [ - 85 - ], - "position": [ - 41 - ], - "utility_lineup": [ - 6420 - ], - "utility_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_collection_items_aggregate": { - "aggregate": [ - 5964 - ], - "nodes": [ - 5960 - ], - "__typename": [ - 85 - ] - }, - "utility_collection_items_aggregate_bool_exp": { - "count": [ - 5963 - ], - "__typename": [ - 85 - ] - }, - "utility_collection_items_aggregate_bool_exp_count": { - "arguments": [ - 5981 - ], - "distinct": [ - 6 - ], - "filter": [ - 5969 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "utility_collection_items_aggregate_fields": { - "avg": [ - 5967 - ], - "count": [ - 41, - { - "columns": [ - 5981, - "[utility_collection_items_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 5973 - ], - "min": [ - 5975 - ], - "stddev": [ - 5983 - ], - "stddev_pop": [ - 5985 - ], - "stddev_samp": [ - 5987 - ], - "sum": [ - 5991 - ], - "var_pop": [ - 5995 - ], - "var_samp": [ - 5997 - ], - "variance": [ - 5999 - ], - "__typename": [ - 85 - ] - }, - "utility_collection_items_aggregate_order_by": { - "avg": [ - 5968 - ], - "count": [ - 3648 - ], - "max": [ - 5974 - ], - "min": [ - 5976 - ], - "stddev": [ - 5984 - ], - "stddev_pop": [ - 5986 - ], - "stddev_samp": [ - 5988 - ], - "sum": [ - 5992 - ], - "var_pop": [ - 5996 - ], - "var_samp": [ - 5998 - ], - "variance": [ - 6000 - ], - "__typename": [ - 85 - ] - }, - "utility_collection_items_arr_rel_insert_input": { - "data": [ - 5972 - ], - "on_conflict": [ - 5978 - ], - "__typename": [ - 85 - ] - }, - "utility_collection_items_avg_fields": { - "position": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_collection_items_avg_order_by": { - "position": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_collection_items_bool_exp": { - "_and": [ - 5969 - ], - "_not": [ - 5969 - ], - "_or": [ - 5969 - ], - "collection": [ - 6005 - ], - "collection_id": [ - 6674 - ], - "created_at": [ - 5244 - ], - "note": [ - 87 - ], - "position": [ - 42 - ], - "utility_lineup": [ - 6442 - ], - "utility_lineup_id": [ - 6674 - ], - "__typename": [ - 85 - ] - }, - "utility_collection_items_constraint": {}, - "utility_collection_items_inc_input": { - "position": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "utility_collection_items_insert_input": { - "collection": [ - 6012 - ], - "collection_id": [ - 6672 - ], - "created_at": [ - 5243 - ], - "note": [ - 85 - ], - "position": [ - 41 - ], - "utility_lineup": [ - 6454 - ], - "utility_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_collection_items_max_fields": { - "collection_id": [ - 6672 - ], - "created_at": [ - 5243 - ], - "note": [ - 85 - ], - "position": [ - 41 - ], - "utility_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_collection_items_max_order_by": { - "collection_id": [ - 3648 - ], - "created_at": [ - 3648 - ], - "note": [ - 3648 - ], - "position": [ - 3648 - ], - "utility_lineup_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_collection_items_min_fields": { - "collection_id": [ - 6672 - ], - "created_at": [ - 5243 - ], - "note": [ - 85 - ], - "position": [ - 41 - ], - "utility_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_collection_items_min_order_by": { - "collection_id": [ - 3648 - ], - "created_at": [ - 3648 - ], - "note": [ - 3648 - ], - "position": [ - 3648 - ], - "utility_lineup_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_collection_items_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 5960 - ], - "__typename": [ - 85 - ] - }, - "utility_collection_items_on_conflict": { - "constraint": [ - 5970 - ], - "update_columns": [ - 5993 - ], - "where": [ - 5969 - ], - "__typename": [ - 85 - ] - }, - "utility_collection_items_order_by": { - "collection": [ - 6014 - ], - "collection_id": [ - 3648 - ], - "created_at": [ - 3648 - ], - "note": [ - 3648 - ], - "position": [ - 3648 - ], - "utility_lineup": [ - 6456 - ], - "utility_lineup_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_collection_items_pk_columns_input": { - "collection_id": [ - 6672 - ], - "utility_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_collection_items_select_column": {}, - "utility_collection_items_set_input": { - "collection_id": [ - 6672 - ], - "created_at": [ - 5243 - ], - "note": [ - 85 - ], - "position": [ - 41 - ], - "utility_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_collection_items_stddev_fields": { - "position": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_collection_items_stddev_order_by": { - "position": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_collection_items_stddev_pop_fields": { - "position": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_collection_items_stddev_pop_order_by": { - "position": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_collection_items_stddev_samp_fields": { - "position": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_collection_items_stddev_samp_order_by": { - "position": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_collection_items_stream_cursor_input": { - "initial_value": [ - 5990 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "utility_collection_items_stream_cursor_value_input": { - "collection_id": [ - 6672 - ], - "created_at": [ - 5243 - ], - "note": [ - 85 - ], - "position": [ - 41 - ], - "utility_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_collection_items_sum_fields": { - "position": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "utility_collection_items_sum_order_by": { - "position": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_collection_items_update_column": {}, - "utility_collection_items_updates": { - "_inc": [ - 5971 - ], - "_set": [ - 5982 - ], - "where": [ - 5969 - ], - "__typename": [ - 85 - ] - }, - "utility_collection_items_var_pop_fields": { - "position": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_collection_items_var_pop_order_by": { - "position": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_collection_items_var_samp_fields": { - "position": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_collection_items_var_samp_order_by": { - "position": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_collection_items_variance_fields": { - "position": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_collection_items_variance_order_by": { - "position": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_collections": { - "can_edit": [ - 6 - ], - "can_view": [ - 6 - ], - "created_at": [ - 5243 - ], - "description": [ - 85 - ], - "id": [ - 6672 - ], - "items": [ - 5960, - { - "distinct_on": [ - 5981, - "[utility_collection_items_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5979, - "[utility_collection_items_order_by!]" - ], - "where": [ - 5969 - ] - } - ], - "items_aggregate": [ - 5961, - { - "distinct_on": [ - 5981, - "[utility_collection_items_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5979, - "[utility_collection_items_order_by!]" - ], - "where": [ - 5969 - ] - } - ], - "map_name": [ - 85 - ], - "name": [ - 85 - ], - "owner": [ - 4606 - ], - "owner_steam_id": [ - 312 - ], - "team": [ - 5194 - ], - "team_id": [ - 6672 - ], - "updated_at": [ - 5243 - ], - "visibility": [ - 1779 - ], - "__typename": [ - 85 - ] - }, - "utility_collections_aggregate": { - "aggregate": [ - 6003 - ], - "nodes": [ - 6001 - ], - "__typename": [ - 85 - ] - }, - "utility_collections_aggregate_fields": { - "avg": [ - 6004 - ], - "count": [ - 41, - { - "columns": [ - 6016, - "[utility_collections_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 6009 - ], - "min": [ - 6010 - ], - "stddev": [ - 6018 - ], - "stddev_pop": [ - 6019 - ], - "stddev_samp": [ - 6020 - ], - "sum": [ - 6023 - ], - "var_pop": [ - 6026 - ], - "var_samp": [ - 6027 - ], - "variance": [ - 6028 - ], - "__typename": [ - 85 - ] - }, - "utility_collections_avg_fields": { - "owner_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_collections_bool_exp": { - "_and": [ - 6005 - ], - "_not": [ - 6005 - ], - "_or": [ - 6005 - ], - "can_edit": [ - 7 - ], - "can_view": [ - 7 - ], - "created_at": [ - 5244 - ], - "description": [ - 87 - ], - "id": [ - 6674 - ], - "items": [ - 5969 - ], - "items_aggregate": [ - 5962 - ], - "map_name": [ - 87 - ], - "name": [ - 87 - ], - "owner": [ - 4610 - ], - "owner_steam_id": [ - 314 - ], - "team": [ - 5205 - ], - "team_id": [ - 6674 - ], - "updated_at": [ - 5244 - ], - "visibility": [ - 1780 - ], - "__typename": [ - 85 - ] - }, - "utility_collections_constraint": {}, - "utility_collections_inc_input": { - "owner_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "utility_collections_insert_input": { - "created_at": [ - 5243 - ], - "description": [ - 85 - ], - "id": [ - 6672 - ], - "items": [ - 5966 - ], - "map_name": [ - 85 - ], - "name": [ - 85 - ], - "owner": [ - 4617 - ], - "owner_steam_id": [ - 312 - ], - "team": [ - 5214 - ], - "team_id": [ - 6672 - ], - "updated_at": [ - 5243 - ], - "visibility": [ - 1779 - ], - "__typename": [ - 85 - ] - }, - "utility_collections_max_fields": { - "created_at": [ - 5243 - ], - "description": [ - 85 - ], - "id": [ - 6672 - ], - "map_name": [ - 85 - ], - "name": [ - 85 - ], - "owner_steam_id": [ - 312 - ], - "team_id": [ - 6672 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "utility_collections_min_fields": { - "created_at": [ - 5243 - ], - "description": [ - 85 - ], - "id": [ - 6672 - ], - "map_name": [ - 85 - ], - "name": [ - 85 - ], - "owner_steam_id": [ - 312 - ], - "team_id": [ - 6672 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "utility_collections_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 6001 - ], - "__typename": [ - 85 - ] - }, - "utility_collections_obj_rel_insert_input": { - "data": [ - 6008 - ], - "on_conflict": [ - 6013 - ], - "__typename": [ - 85 - ] - }, - "utility_collections_on_conflict": { - "constraint": [ - 6006 - ], - "update_columns": [ - 6024 - ], - "where": [ - 6005 - ], - "__typename": [ - 85 - ] - }, - "utility_collections_order_by": { - "can_edit": [ - 3648 - ], - "can_view": [ - 3648 - ], - "created_at": [ - 3648 - ], - "description": [ - 3648 - ], - "id": [ - 3648 - ], - "items_aggregate": [ - 5965 - ], - "map_name": [ - 3648 - ], - "name": [ - 3648 - ], - "owner": [ - 4619 - ], - "owner_steam_id": [ - 3648 - ], - "team": [ - 5216 - ], - "team_id": [ - 3648 - ], - "updated_at": [ - 3648 - ], - "visibility": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_collections_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_collections_select_column": {}, - "utility_collections_set_input": { - "created_at": [ - 5243 - ], - "description": [ - 85 - ], - "id": [ - 6672 - ], - "map_name": [ - 85 - ], - "name": [ - 85 - ], - "owner_steam_id": [ - 312 - ], - "team_id": [ - 6672 - ], - "updated_at": [ - 5243 - ], - "visibility": [ - 1779 - ], - "__typename": [ - 85 - ] - }, - "utility_collections_stddev_fields": { - "owner_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_collections_stddev_pop_fields": { - "owner_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_collections_stddev_samp_fields": { - "owner_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_collections_stream_cursor_input": { - "initial_value": [ - 6022 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "utility_collections_stream_cursor_value_input": { - "created_at": [ - 5243 - ], - "description": [ - 85 - ], - "id": [ - 6672 - ], - "map_name": [ - 85 - ], - "name": [ - 85 - ], - "owner_steam_id": [ - 312 - ], - "team_id": [ - 6672 - ], - "updated_at": [ - 5243 - ], - "visibility": [ - 1779 - ], - "__typename": [ - 85 - ] - }, - "utility_collections_sum_fields": { - "owner_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "utility_collections_update_column": {}, - "utility_collections_updates": { - "_inc": [ - 6007 - ], - "_set": [ - 6017 - ], - "where": [ - 6005 - ], - "__typename": [ - 85 - ] - }, - "utility_collections_var_pop_fields": { - "owner_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_collections_var_samp_fields": { - "owner_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_collections_variance_fields": { - "owner_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_mines": { - "failed_reason": [ - 85 - ], - "match_map_demo_id": [ - 6672 - ], - "mined_at": [ - 5243 - ], - "throws": [ - 41 - ], - "version": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_mines_aggregate": { - "aggregate": [ - 6031 - ], - "nodes": [ - 6029 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_mines_aggregate_fields": { - "avg": [ - 6032 - ], - "count": [ - 41, - { - "columns": [ - 6043, - "[utility_demo_mines_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 6037 - ], - "min": [ - 6038 - ], - "stddev": [ - 6045 - ], - "stddev_pop": [ - 6046 - ], - "stddev_samp": [ - 6047 - ], - "sum": [ - 6050 - ], - "var_pop": [ - 6053 - ], - "var_samp": [ - 6054 - ], - "variance": [ - 6055 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_mines_avg_fields": { - "throws": [ - 32 - ], - "version": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_mines_bool_exp": { - "_and": [ - 6033 - ], - "_not": [ - 6033 - ], - "_or": [ - 6033 - ], - "failed_reason": [ - 87 - ], - "match_map_demo_id": [ - 6674 - ], - "mined_at": [ - 5244 - ], - "throws": [ - 42 - ], - "version": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_mines_constraint": {}, - "utility_demo_mines_inc_input": { - "throws": [ - 41 - ], - "version": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_mines_insert_input": { - "failed_reason": [ - 85 - ], - "match_map_demo_id": [ - 6672 - ], - "mined_at": [ - 5243 - ], - "throws": [ - 41 - ], - "version": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_mines_max_fields": { - "failed_reason": [ - 85 - ], - "match_map_demo_id": [ - 6672 - ], - "mined_at": [ - 5243 - ], - "throws": [ - 41 - ], - "version": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_mines_min_fields": { - "failed_reason": [ - 85 - ], - "match_map_demo_id": [ - 6672 - ], - "mined_at": [ - 5243 - ], - "throws": [ - 41 - ], - "version": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_mines_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 6029 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_mines_on_conflict": { - "constraint": [ - 6034 - ], - "update_columns": [ - 6051 - ], - "where": [ - 6033 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_mines_order_by": { - "failed_reason": [ - 3648 - ], - "match_map_demo_id": [ - 3648 - ], - "mined_at": [ - 3648 - ], - "throws": [ - 3648 - ], - "version": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_mines_pk_columns_input": { - "match_map_demo_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_mines_select_column": {}, - "utility_demo_mines_set_input": { - "failed_reason": [ - 85 - ], - "match_map_demo_id": [ - 6672 - ], - "mined_at": [ - 5243 - ], - "throws": [ - 41 - ], - "version": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_mines_stddev_fields": { - "throws": [ - 32 - ], - "version": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_mines_stddev_pop_fields": { - "throws": [ - 32 - ], - "version": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_mines_stddev_samp_fields": { - "throws": [ - 32 - ], - "version": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_mines_stream_cursor_input": { - "initial_value": [ - 6049 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_mines_stream_cursor_value_input": { - "failed_reason": [ - 85 - ], - "match_map_demo_id": [ - 6672 - ], - "mined_at": [ - 5243 - ], - "throws": [ - 41 - ], - "version": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_mines_sum_fields": { - "throws": [ - 41 - ], - "version": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_mines_update_column": {}, - "utility_demo_mines_updates": { - "_inc": [ - 6035 - ], - "_set": [ - 6044 - ], - "where": [ - 6033 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_mines_var_pop_fields": { - "throws": [ - 32 - ], - "version": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_mines_var_samp_fields": { - "throws": [ - 32 - ], - "version": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_mines_variance_fields": { - "throws": [ - 32 - ], - "version": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_throws": { - "created_at": [ - 5243 - ], - "flight_time_ms": [ - 41 - ], - "grenade_id": [ - 41 - ], - "land_x": [ - 2093 - ], - "land_y": [ - 2093 - ], - "land_z": [ - 2093 - ], - "lineup_bucket": [ - 85 - ], - "map_name": [ - 85 - ], - "match": [ - 3432 - ], - "match_id": [ - 6672 - ], - "match_map": [ - 3248 - ], - "match_map_demo_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "origin_x": [ - 2093 - ], - "origin_y": [ - 2093 - ], - "origin_z": [ - 2093 - ], - "round": [ - 41 - ], - "side": [ - 1453 - ], - "technique": [ - 1719 - ], - "throw_strength": [ - 1739 - ], - "thrower_steam_id": [ - 312 - ], - "thrown_at": [ - 5243 - ], - "tick": [ - 41 - ], - "utility_type": [ - 1759 - ], - "view_pitch": [ - 2093 - ], - "view_yaw": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_throws_aggregate": { - "aggregate": [ - 6058 - ], - "nodes": [ - 6056 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_throws_aggregate_fields": { - "avg": [ - 6059 - ], - "count": [ - 41, - { - "columns": [ - 6070, - "[utility_demo_throws_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 6064 - ], - "min": [ - 6065 - ], - "stddev": [ - 6072 - ], - "stddev_pop": [ - 6073 - ], - "stddev_samp": [ - 6074 - ], - "sum": [ - 6077 - ], - "var_pop": [ - 6080 - ], - "var_samp": [ - 6081 - ], - "variance": [ - 6082 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_throws_avg_fields": { - "flight_time_ms": [ - 32 - ], - "grenade_id": [ - 32 - ], - "land_x": [ - 32 - ], - "land_y": [ - 32 - ], - "land_z": [ - 32 - ], - "origin_x": [ - 32 - ], - "origin_y": [ - 32 - ], - "origin_z": [ - 32 - ], - "round": [ - 32 - ], - "thrower_steam_id": [ - 32 - ], - "tick": [ - 32 - ], - "view_pitch": [ - 32 - ], - "view_yaw": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_throws_bool_exp": { - "_and": [ - 6060 - ], - "_not": [ - 6060 - ], - "_or": [ - 6060 - ], - "created_at": [ - 5244 - ], - "flight_time_ms": [ - 42 - ], - "grenade_id": [ - 42 - ], - "land_x": [ - 2094 - ], - "land_y": [ - 2094 - ], - "land_z": [ - 2094 - ], - "lineup_bucket": [ - 87 - ], - "map_name": [ - 87 - ], - "match": [ - 3443 - ], - "match_id": [ - 6674 - ], - "match_map": [ - 3257 - ], - "match_map_demo_id": [ - 6674 - ], - "match_map_id": [ - 6674 - ], - "origin_x": [ - 2094 - ], - "origin_y": [ - 2094 - ], - "origin_z": [ - 2094 - ], - "round": [ - 42 - ], - "side": [ - 1454 - ], - "technique": [ - 1720 - ], - "throw_strength": [ - 1740 - ], - "thrower_steam_id": [ - 314 - ], - "thrown_at": [ - 5244 - ], - "tick": [ - 42 - ], - "utility_type": [ - 1760 - ], - "view_pitch": [ - 2094 - ], - "view_yaw": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_throws_constraint": {}, - "utility_demo_throws_inc_input": { - "flight_time_ms": [ - 41 - ], - "grenade_id": [ - 41 - ], - "land_x": [ - 2093 - ], - "land_y": [ - 2093 - ], - "land_z": [ - 2093 - ], - "origin_x": [ - 2093 - ], - "origin_y": [ - 2093 - ], - "origin_z": [ - 2093 - ], - "round": [ - 41 - ], - "thrower_steam_id": [ - 312 - ], - "tick": [ - 41 - ], - "view_pitch": [ - 2093 - ], - "view_yaw": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_throws_insert_input": { - "created_at": [ - 5243 - ], - "flight_time_ms": [ - 41 - ], - "grenade_id": [ - 41 - ], - "land_x": [ - 2093 - ], - "land_y": [ - 2093 - ], - "land_z": [ - 2093 - ], - "map_name": [ - 85 - ], - "match": [ - 3452 - ], - "match_id": [ - 6672 - ], - "match_map": [ - 3266 - ], - "match_map_demo_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "origin_x": [ - 2093 - ], - "origin_y": [ - 2093 - ], - "origin_z": [ - 2093 - ], - "round": [ - 41 - ], - "side": [ - 1453 - ], - "technique": [ - 1719 - ], - "throw_strength": [ - 1739 - ], - "thrower_steam_id": [ - 312 - ], - "thrown_at": [ - 5243 - ], - "tick": [ - 41 - ], - "utility_type": [ - 1759 - ], - "view_pitch": [ - 2093 - ], - "view_yaw": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_throws_max_fields": { - "created_at": [ - 5243 - ], - "flight_time_ms": [ - 41 - ], - "grenade_id": [ - 41 - ], - "land_x": [ - 2093 - ], - "land_y": [ - 2093 - ], - "land_z": [ - 2093 - ], - "lineup_bucket": [ - 85 - ], - "map_name": [ - 85 - ], - "match_id": [ - 6672 - ], - "match_map_demo_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "origin_x": [ - 2093 - ], - "origin_y": [ - 2093 - ], - "origin_z": [ - 2093 - ], - "round": [ - 41 - ], - "thrower_steam_id": [ - 312 - ], - "thrown_at": [ - 5243 - ], - "tick": [ - 41 - ], - "view_pitch": [ - 2093 - ], - "view_yaw": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_throws_min_fields": { - "created_at": [ - 5243 - ], - "flight_time_ms": [ - 41 - ], - "grenade_id": [ - 41 - ], - "land_x": [ - 2093 - ], - "land_y": [ - 2093 - ], - "land_z": [ - 2093 - ], - "lineup_bucket": [ - 85 - ], - "map_name": [ - 85 - ], - "match_id": [ - 6672 - ], - "match_map_demo_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "origin_x": [ - 2093 - ], - "origin_y": [ - 2093 - ], - "origin_z": [ - 2093 - ], - "round": [ - 41 - ], - "thrower_steam_id": [ - 312 - ], - "thrown_at": [ - 5243 - ], - "tick": [ - 41 - ], - "view_pitch": [ - 2093 - ], - "view_yaw": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_throws_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 6056 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_throws_on_conflict": { - "constraint": [ - 6061 - ], - "update_columns": [ - 6078 - ], - "where": [ - 6060 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_throws_order_by": { - "created_at": [ - 3648 - ], - "flight_time_ms": [ - 3648 - ], - "grenade_id": [ - 3648 - ], - "land_x": [ - 3648 - ], - "land_y": [ - 3648 - ], - "land_z": [ - 3648 - ], - "lineup_bucket": [ - 3648 - ], - "map_name": [ - 3648 - ], - "match": [ - 3454 - ], - "match_id": [ - 3648 - ], - "match_map": [ - 3268 - ], - "match_map_demo_id": [ - 3648 - ], - "match_map_id": [ - 3648 - ], - "origin_x": [ - 3648 - ], - "origin_y": [ - 3648 - ], - "origin_z": [ - 3648 - ], - "round": [ - 3648 - ], - "side": [ - 3648 - ], - "technique": [ - 3648 - ], - "throw_strength": [ - 3648 - ], - "thrower_steam_id": [ - 3648 - ], - "thrown_at": [ - 3648 - ], - "tick": [ - 3648 - ], - "utility_type": [ - 3648 - ], - "view_pitch": [ - 3648 - ], - "view_yaw": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_throws_pk_columns_input": { - "grenade_id": [ - 41 - ], - "match_map_demo_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_throws_select_column": {}, - "utility_demo_throws_set_input": { - "created_at": [ - 5243 - ], - "flight_time_ms": [ - 41 - ], - "grenade_id": [ - 41 - ], - "land_x": [ - 2093 - ], - "land_y": [ - 2093 - ], - "land_z": [ - 2093 - ], - "map_name": [ - 85 - ], - "match_id": [ - 6672 - ], - "match_map_demo_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "origin_x": [ - 2093 - ], - "origin_y": [ - 2093 - ], - "origin_z": [ - 2093 - ], - "round": [ - 41 - ], - "side": [ - 1453 - ], - "technique": [ - 1719 - ], - "throw_strength": [ - 1739 - ], - "thrower_steam_id": [ - 312 - ], - "thrown_at": [ - 5243 - ], - "tick": [ - 41 - ], - "utility_type": [ - 1759 - ], - "view_pitch": [ - 2093 - ], - "view_yaw": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_throws_stddev_fields": { - "flight_time_ms": [ - 32 - ], - "grenade_id": [ - 32 - ], - "land_x": [ - 32 - ], - "land_y": [ - 32 - ], - "land_z": [ - 32 - ], - "origin_x": [ - 32 - ], - "origin_y": [ - 32 - ], - "origin_z": [ - 32 - ], - "round": [ - 32 - ], - "thrower_steam_id": [ - 32 - ], - "tick": [ - 32 - ], - "view_pitch": [ - 32 - ], - "view_yaw": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_throws_stddev_pop_fields": { - "flight_time_ms": [ - 32 - ], - "grenade_id": [ - 32 - ], - "land_x": [ - 32 - ], - "land_y": [ - 32 - ], - "land_z": [ - 32 - ], - "origin_x": [ - 32 - ], - "origin_y": [ - 32 - ], - "origin_z": [ - 32 - ], - "round": [ - 32 - ], - "thrower_steam_id": [ - 32 - ], - "tick": [ - 32 - ], - "view_pitch": [ - 32 - ], - "view_yaw": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_throws_stddev_samp_fields": { - "flight_time_ms": [ - 32 - ], - "grenade_id": [ - 32 - ], - "land_x": [ - 32 - ], - "land_y": [ - 32 - ], - "land_z": [ - 32 - ], - "origin_x": [ - 32 - ], - "origin_y": [ - 32 - ], - "origin_z": [ - 32 - ], - "round": [ - 32 - ], - "thrower_steam_id": [ - 32 - ], - "tick": [ - 32 - ], - "view_pitch": [ - 32 - ], - "view_yaw": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_throws_stream_cursor_input": { - "initial_value": [ - 6076 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_throws_stream_cursor_value_input": { - "created_at": [ - 5243 - ], - "flight_time_ms": [ - 41 - ], - "grenade_id": [ - 41 - ], - "land_x": [ - 2093 - ], - "land_y": [ - 2093 - ], - "land_z": [ - 2093 - ], - "lineup_bucket": [ - 85 - ], - "map_name": [ - 85 - ], - "match_id": [ - 6672 - ], - "match_map_demo_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "origin_x": [ - 2093 - ], - "origin_y": [ - 2093 - ], - "origin_z": [ - 2093 - ], - "round": [ - 41 - ], - "side": [ - 1453 - ], - "technique": [ - 1719 - ], - "throw_strength": [ - 1739 - ], - "thrower_steam_id": [ - 312 - ], - "thrown_at": [ - 5243 - ], - "tick": [ - 41 - ], - "utility_type": [ - 1759 - ], - "view_pitch": [ - 2093 - ], - "view_yaw": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_throws_sum_fields": { - "flight_time_ms": [ - 41 - ], - "grenade_id": [ - 41 - ], - "land_x": [ - 2093 - ], - "land_y": [ - 2093 - ], - "land_z": [ - 2093 - ], - "origin_x": [ - 2093 - ], - "origin_y": [ - 2093 - ], - "origin_z": [ - 2093 - ], - "round": [ - 41 - ], - "thrower_steam_id": [ - 312 - ], - "tick": [ - 41 - ], - "view_pitch": [ - 2093 - ], - "view_yaw": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_throws_update_column": {}, - "utility_demo_throws_updates": { - "_inc": [ - 6062 - ], - "_set": [ - 6071 - ], - "where": [ - 6060 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_throws_var_pop_fields": { - "flight_time_ms": [ - 32 - ], - "grenade_id": [ - 32 - ], - "land_x": [ - 32 - ], - "land_y": [ - 32 - ], - "land_z": [ - 32 - ], - "origin_x": [ - 32 - ], - "origin_y": [ - 32 - ], - "origin_z": [ - 32 - ], - "round": [ - 32 - ], - "thrower_steam_id": [ - 32 - ], - "tick": [ - 32 - ], - "view_pitch": [ - 32 - ], - "view_yaw": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_throws_var_samp_fields": { - "flight_time_ms": [ - 32 - ], - "grenade_id": [ - 32 - ], - "land_x": [ - 32 - ], - "land_y": [ - 32 - ], - "land_z": [ - 32 - ], - "origin_x": [ - 32 - ], - "origin_y": [ - 32 - ], - "origin_z": [ - 32 - ], - "round": [ - 32 - ], - "thrower_steam_id": [ - 32 - ], - "tick": [ - 32 - ], - "view_pitch": [ - 32 - ], - "view_yaw": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_demo_throws_variance_fields": { - "flight_time_ms": [ - 32 - ], - "grenade_id": [ - 32 - ], - "land_x": [ - 32 - ], - "land_y": [ - 32 - ], - "land_z": [ - 32 - ], - "origin_x": [ - 32 - ], - "origin_y": [ - 32 - ], - "origin_z": [ - 32 - ], - "round": [ - 32 - ], - "thrower_steam_id": [ - 32 - ], - "tick": [ - 32 - ], - "view_pitch": [ - 32 - ], - "view_yaw": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results": { - "created_at": [ - 5243 - ], - "distance": [ - 2093 - ], - "distance_xy": [ - 2093 - ], - "distance_z": [ - 2093 - ], - "reason": [ - 85 - ], - "scan": [ - 6142 - ], - "severity": [ - 85 - ], - "utility_drift_scan_id": [ - 6672 - ], - "utility_lineup": [ - 6420 - ], - "utility_lineup_id": [ - 6672 - ], - "verdict": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_aggregate": { - "aggregate": [ - 6097 - ], - "nodes": [ - 6083 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_aggregate_bool_exp": { - "avg": [ - 6086 - ], - "corr": [ - 6087 - ], - "count": [ - 6089 - ], - "covar_samp": [ - 6090 - ], - "max": [ - 6092 - ], - "min": [ - 6093 - ], - "stddev_samp": [ - 6094 - ], - "sum": [ - 6095 - ], - "var_samp": [ - 6096 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_aggregate_bool_exp_avg": { - "arguments": [ - 6115 - ], - "distinct": [ - 6 - ], - "filter": [ - 6102 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_aggregate_bool_exp_corr": { - "arguments": [ - 6088 - ], - "distinct": [ - 6 - ], - "filter": [ - 6102 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_aggregate_bool_exp_corr_arguments": { - "X": [ - 6116 - ], - "Y": [ - 6116 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_aggregate_bool_exp_count": { - "arguments": [ - 6114 - ], - "distinct": [ - 6 - ], - "filter": [ - 6102 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_aggregate_bool_exp_covar_samp": { - "arguments": [ - 6091 - ], - "distinct": [ - 6 - ], - "filter": [ - 6102 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_aggregate_bool_exp_covar_samp_arguments": { - "X": [ - 6117 - ], - "Y": [ - 6117 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_aggregate_bool_exp_max": { - "arguments": [ - 6118 - ], - "distinct": [ - 6 - ], - "filter": [ - 6102 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_aggregate_bool_exp_min": { - "arguments": [ - 6119 - ], - "distinct": [ - 6 - ], - "filter": [ - 6102 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_aggregate_bool_exp_stddev_samp": { - "arguments": [ - 6120 - ], - "distinct": [ - 6 - ], - "filter": [ - 6102 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_aggregate_bool_exp_sum": { - "arguments": [ - 6121 - ], - "distinct": [ - 6 - ], - "filter": [ - 6102 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_aggregate_bool_exp_var_samp": { - "arguments": [ - 6122 - ], - "distinct": [ - 6 - ], - "filter": [ - 6102 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_aggregate_fields": { - "avg": [ - 6100 - ], - "count": [ - 41, - { - "columns": [ - 6114, - "[utility_drift_results_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 6106 - ], - "min": [ - 6108 - ], - "stddev": [ - 6124 - ], - "stddev_pop": [ - 6126 - ], - "stddev_samp": [ - 6128 - ], - "sum": [ - 6132 - ], - "var_pop": [ - 6136 - ], - "var_samp": [ - 6138 - ], - "variance": [ - 6140 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_aggregate_order_by": { - "avg": [ - 6101 - ], - "count": [ - 3648 - ], - "max": [ - 6107 - ], - "min": [ - 6109 - ], - "stddev": [ - 6125 - ], - "stddev_pop": [ - 6127 - ], - "stddev_samp": [ - 6129 - ], - "sum": [ - 6133 - ], - "var_pop": [ - 6137 - ], - "var_samp": [ - 6139 - ], - "variance": [ - 6141 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_arr_rel_insert_input": { - "data": [ - 6105 - ], - "on_conflict": [ - 6111 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_avg_fields": { - "distance": [ - 32 - ], - "distance_xy": [ - 32 - ], - "distance_z": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_avg_order_by": { - "distance": [ - 3648 - ], - "distance_xy": [ - 3648 - ], - "distance_z": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_bool_exp": { - "_and": [ - 6102 - ], - "_not": [ - 6102 - ], - "_or": [ - 6102 - ], - "created_at": [ - 5244 - ], - "distance": [ - 2094 - ], - "distance_xy": [ - 2094 - ], - "distance_z": [ - 2094 - ], - "reason": [ - 87 - ], - "scan": [ - 6146 - ], - "severity": [ - 87 - ], - "utility_drift_scan_id": [ - 6674 - ], - "utility_lineup": [ - 6442 - ], - "utility_lineup_id": [ - 6674 - ], - "verdict": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_constraint": {}, - "utility_drift_results_inc_input": { - "distance": [ - 2093 - ], - "distance_xy": [ - 2093 - ], - "distance_z": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_insert_input": { - "created_at": [ - 5243 - ], - "distance": [ - 2093 - ], - "distance_xy": [ - 2093 - ], - "distance_z": [ - 2093 - ], - "reason": [ - 85 - ], - "scan": [ - 6153 - ], - "severity": [ - 85 - ], - "utility_drift_scan_id": [ - 6672 - ], - "utility_lineup": [ - 6454 - ], - "utility_lineup_id": [ - 6672 - ], - "verdict": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_max_fields": { - "created_at": [ - 5243 - ], - "distance": [ - 2093 - ], - "distance_xy": [ - 2093 - ], - "distance_z": [ - 2093 - ], - "reason": [ - 85 - ], - "severity": [ - 85 - ], - "utility_drift_scan_id": [ - 6672 - ], - "utility_lineup_id": [ - 6672 - ], - "verdict": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_max_order_by": { - "created_at": [ - 3648 - ], - "distance": [ - 3648 - ], - "distance_xy": [ - 3648 - ], - "distance_z": [ - 3648 - ], - "reason": [ - 3648 - ], - "severity": [ - 3648 - ], - "utility_drift_scan_id": [ - 3648 - ], - "utility_lineup_id": [ - 3648 - ], - "verdict": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_min_fields": { - "created_at": [ - 5243 - ], - "distance": [ - 2093 - ], - "distance_xy": [ - 2093 - ], - "distance_z": [ - 2093 - ], - "reason": [ - 85 - ], - "severity": [ - 85 - ], - "utility_drift_scan_id": [ - 6672 - ], - "utility_lineup_id": [ - 6672 - ], - "verdict": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_min_order_by": { - "created_at": [ - 3648 - ], - "distance": [ - 3648 - ], - "distance_xy": [ - 3648 - ], - "distance_z": [ - 3648 - ], - "reason": [ - 3648 - ], - "severity": [ - 3648 - ], - "utility_drift_scan_id": [ - 3648 - ], - "utility_lineup_id": [ - 3648 - ], - "verdict": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 6083 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_on_conflict": { - "constraint": [ - 6103 - ], - "update_columns": [ - 6134 - ], - "where": [ - 6102 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_order_by": { - "created_at": [ - 3648 - ], - "distance": [ - 3648 - ], - "distance_xy": [ - 3648 - ], - "distance_z": [ - 3648 - ], - "reason": [ - 3648 - ], - "scan": [ - 6155 - ], - "severity": [ - 3648 - ], - "utility_drift_scan_id": [ - 3648 - ], - "utility_lineup": [ - 6456 - ], - "utility_lineup_id": [ - 3648 - ], - "verdict": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_pk_columns_input": { - "utility_drift_scan_id": [ - 6672 - ], - "utility_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_select_column": {}, - "utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_avg_arguments_columns": {}, - "utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_corr_arguments_columns": {}, - "utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_covar_samp_arguments_columns": {}, - "utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_max_arguments_columns": {}, - "utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_min_arguments_columns": {}, - "utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_stddev_samp_arguments_columns": {}, - "utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_sum_arguments_columns": {}, - "utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_var_samp_arguments_columns": {}, - "utility_drift_results_set_input": { - "created_at": [ - 5243 - ], - "distance": [ - 2093 - ], - "distance_xy": [ - 2093 - ], - "distance_z": [ - 2093 - ], - "reason": [ - 85 - ], - "severity": [ - 85 - ], - "utility_drift_scan_id": [ - 6672 - ], - "utility_lineup_id": [ - 6672 - ], - "verdict": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_stddev_fields": { - "distance": [ - 32 - ], - "distance_xy": [ - 32 - ], - "distance_z": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_stddev_order_by": { - "distance": [ - 3648 - ], - "distance_xy": [ - 3648 - ], - "distance_z": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_stddev_pop_fields": { - "distance": [ - 32 - ], - "distance_xy": [ - 32 - ], - "distance_z": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_stddev_pop_order_by": { - "distance": [ - 3648 - ], - "distance_xy": [ - 3648 - ], - "distance_z": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_stddev_samp_fields": { - "distance": [ - 32 - ], - "distance_xy": [ - 32 - ], - "distance_z": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_stddev_samp_order_by": { - "distance": [ - 3648 - ], - "distance_xy": [ - 3648 - ], - "distance_z": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_stream_cursor_input": { - "initial_value": [ - 6131 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_stream_cursor_value_input": { - "created_at": [ - 5243 - ], - "distance": [ - 2093 - ], - "distance_xy": [ - 2093 - ], - "distance_z": [ - 2093 - ], - "reason": [ - 85 - ], - "severity": [ - 85 - ], - "utility_drift_scan_id": [ - 6672 - ], - "utility_lineup_id": [ - 6672 - ], - "verdict": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_sum_fields": { - "distance": [ - 2093 - ], - "distance_xy": [ - 2093 - ], - "distance_z": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_sum_order_by": { - "distance": [ - 3648 - ], - "distance_xy": [ - 3648 - ], - "distance_z": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_update_column": {}, - "utility_drift_results_updates": { - "_inc": [ - 6104 - ], - "_set": [ - 6123 - ], - "where": [ - 6102 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_var_pop_fields": { - "distance": [ - 32 - ], - "distance_xy": [ - 32 - ], - "distance_z": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_var_pop_order_by": { - "distance": [ - 3648 - ], - "distance_xy": [ - 3648 - ], - "distance_z": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_var_samp_fields": { - "distance": [ - 32 - ], - "distance_xy": [ - 32 - ], - "distance_z": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_var_samp_order_by": { - "distance": [ - 3648 - ], - "distance_xy": [ - 3648 - ], - "distance_z": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_variance_fields": { - "distance": [ - 32 - ], - "distance_xy": [ - 32 - ], - "distance_z": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_results_variance_order_by": { - "distance": [ - 3648 - ], - "distance_xy": [ - 3648 - ], - "distance_z": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_scans": { - "broken": [ - 41 - ], - "created_at": [ - 5243 - ], - "failure_reason": [ - 85 - ], - "finished_at": [ - 5243 - ], - "from_revision": [ - 85 - ], - "id": [ - 6672 - ], - "lineups": [ - 41 - ], - "map_name": [ - 85 - ], - "max_distance": [ - 2093 - ], - "moved": [ - 41 - ], - "requested_by": [ - 4606 - ], - "requested_by_steam_id": [ - 312 - ], - "results": [ - 6083, - { - "distinct_on": [ - 6114, - "[utility_drift_results_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6112, - "[utility_drift_results_order_by!]" - ], - "where": [ - 6102 - ] - } - ], - "results_aggregate": [ - 6084, - { - "distinct_on": [ - 6114, - "[utility_drift_results_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6112, - "[utility_drift_results_order_by!]" - ], - "where": [ - 6102 - ] - } - ], - "scanned": [ - 41 - ], - "started_at": [ - 5243 - ], - "status": [ - 85 - ], - "to_revision": [ - 85 - ], - "unchanged": [ - 41 - ], - "unsimulatable": [ - 41 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_scans_aggregate": { - "aggregate": [ - 6144 - ], - "nodes": [ - 6142 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_scans_aggregate_fields": { - "avg": [ - 6145 - ], - "count": [ - 41, - { - "columns": [ - 6157, - "[utility_drift_scans_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 6150 - ], - "min": [ - 6151 - ], - "stddev": [ - 6159 - ], - "stddev_pop": [ - 6160 - ], - "stddev_samp": [ - 6161 - ], - "sum": [ - 6164 - ], - "var_pop": [ - 6167 - ], - "var_samp": [ - 6168 - ], - "variance": [ - 6169 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_scans_avg_fields": { - "broken": [ - 32 - ], - "lineups": [ - 32 - ], - "max_distance": [ - 32 - ], - "moved": [ - 32 - ], - "requested_by_steam_id": [ - 32 - ], - "scanned": [ - 32 - ], - "unchanged": [ - 32 - ], - "unsimulatable": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_scans_bool_exp": { - "_and": [ - 6146 - ], - "_not": [ - 6146 - ], - "_or": [ - 6146 - ], - "broken": [ - 42 - ], - "created_at": [ - 5244 - ], - "failure_reason": [ - 87 - ], - "finished_at": [ - 5244 - ], - "from_revision": [ - 87 - ], - "id": [ - 6674 - ], - "lineups": [ - 42 - ], - "map_name": [ - 87 - ], - "max_distance": [ - 2094 - ], - "moved": [ - 42 - ], - "requested_by": [ - 4610 - ], - "requested_by_steam_id": [ - 314 - ], - "results": [ - 6102 - ], - "results_aggregate": [ - 6085 - ], - "scanned": [ - 42 - ], - "started_at": [ - 5244 - ], - "status": [ - 87 - ], - "to_revision": [ - 87 - ], - "unchanged": [ - 42 - ], - "unsimulatable": [ - 42 - ], - "updated_at": [ - 5244 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_scans_constraint": {}, - "utility_drift_scans_inc_input": { - "broken": [ - 41 - ], - "lineups": [ - 41 - ], - "max_distance": [ - 2093 - ], - "moved": [ - 41 - ], - "requested_by_steam_id": [ - 312 - ], - "scanned": [ - 41 - ], - "unchanged": [ - 41 - ], - "unsimulatable": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_scans_insert_input": { - "broken": [ - 41 - ], - "created_at": [ - 5243 - ], - "failure_reason": [ - 85 - ], - "finished_at": [ - 5243 - ], - "from_revision": [ - 85 - ], - "id": [ - 6672 - ], - "lineups": [ - 41 - ], - "map_name": [ - 85 - ], - "max_distance": [ - 2093 - ], - "moved": [ - 41 - ], - "requested_by": [ - 4617 - ], - "requested_by_steam_id": [ - 312 - ], - "results": [ - 6099 - ], - "scanned": [ - 41 - ], - "started_at": [ - 5243 - ], - "status": [ - 85 - ], - "to_revision": [ - 85 - ], - "unchanged": [ - 41 - ], - "unsimulatable": [ - 41 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_scans_max_fields": { - "broken": [ - 41 - ], - "created_at": [ - 5243 - ], - "failure_reason": [ - 85 - ], - "finished_at": [ - 5243 - ], - "from_revision": [ - 85 - ], - "id": [ - 6672 - ], - "lineups": [ - 41 - ], - "map_name": [ - 85 - ], - "max_distance": [ - 2093 - ], - "moved": [ - 41 - ], - "requested_by_steam_id": [ - 312 - ], - "scanned": [ - 41 - ], - "started_at": [ - 5243 - ], - "status": [ - 85 - ], - "to_revision": [ - 85 - ], - "unchanged": [ - 41 - ], - "unsimulatable": [ - 41 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_scans_min_fields": { - "broken": [ - 41 - ], - "created_at": [ - 5243 - ], - "failure_reason": [ - 85 - ], - "finished_at": [ - 5243 - ], - "from_revision": [ - 85 - ], - "id": [ - 6672 - ], - "lineups": [ - 41 - ], - "map_name": [ - 85 - ], - "max_distance": [ - 2093 - ], - "moved": [ - 41 - ], - "requested_by_steam_id": [ - 312 - ], - "scanned": [ - 41 - ], - "started_at": [ - 5243 - ], - "status": [ - 85 - ], - "to_revision": [ - 85 - ], - "unchanged": [ - 41 - ], - "unsimulatable": [ - 41 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_scans_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 6142 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_scans_obj_rel_insert_input": { - "data": [ - 6149 - ], - "on_conflict": [ - 6154 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_scans_on_conflict": { - "constraint": [ - 6147 - ], - "update_columns": [ - 6165 - ], - "where": [ - 6146 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_scans_order_by": { - "broken": [ - 3648 - ], - "created_at": [ - 3648 - ], - "failure_reason": [ - 3648 - ], - "finished_at": [ - 3648 - ], - "from_revision": [ - 3648 - ], - "id": [ - 3648 - ], - "lineups": [ - 3648 - ], - "map_name": [ - 3648 - ], - "max_distance": [ - 3648 - ], - "moved": [ - 3648 - ], - "requested_by": [ - 4619 - ], - "requested_by_steam_id": [ - 3648 - ], - "results_aggregate": [ - 6098 - ], - "scanned": [ - 3648 - ], - "started_at": [ - 3648 - ], - "status": [ - 3648 - ], - "to_revision": [ - 3648 - ], - "unchanged": [ - 3648 - ], - "unsimulatable": [ - 3648 - ], - "updated_at": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_scans_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_scans_select_column": {}, - "utility_drift_scans_set_input": { - "broken": [ - 41 - ], - "created_at": [ - 5243 - ], - "failure_reason": [ - 85 - ], - "finished_at": [ - 5243 - ], - "from_revision": [ - 85 - ], - "id": [ - 6672 - ], - "lineups": [ - 41 - ], - "map_name": [ - 85 - ], - "max_distance": [ - 2093 - ], - "moved": [ - 41 - ], - "requested_by_steam_id": [ - 312 - ], - "scanned": [ - 41 - ], - "started_at": [ - 5243 - ], - "status": [ - 85 - ], - "to_revision": [ - 85 - ], - "unchanged": [ - 41 - ], - "unsimulatable": [ - 41 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_scans_stddev_fields": { - "broken": [ - 32 - ], - "lineups": [ - 32 - ], - "max_distance": [ - 32 - ], - "moved": [ - 32 - ], - "requested_by_steam_id": [ - 32 - ], - "scanned": [ - 32 - ], - "unchanged": [ - 32 - ], - "unsimulatable": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_scans_stddev_pop_fields": { - "broken": [ - 32 - ], - "lineups": [ - 32 - ], - "max_distance": [ - 32 - ], - "moved": [ - 32 - ], - "requested_by_steam_id": [ - 32 - ], - "scanned": [ - 32 - ], - "unchanged": [ - 32 - ], - "unsimulatable": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_scans_stddev_samp_fields": { - "broken": [ - 32 - ], - "lineups": [ - 32 - ], - "max_distance": [ - 32 - ], - "moved": [ - 32 - ], - "requested_by_steam_id": [ - 32 - ], - "scanned": [ - 32 - ], - "unchanged": [ - 32 - ], - "unsimulatable": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_scans_stream_cursor_input": { - "initial_value": [ - 6163 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_scans_stream_cursor_value_input": { - "broken": [ - 41 - ], - "created_at": [ - 5243 - ], - "failure_reason": [ - 85 - ], - "finished_at": [ - 5243 - ], - "from_revision": [ - 85 - ], - "id": [ - 6672 - ], - "lineups": [ - 41 - ], - "map_name": [ - 85 - ], - "max_distance": [ - 2093 - ], - "moved": [ - 41 - ], - "requested_by_steam_id": [ - 312 - ], - "scanned": [ - 41 - ], - "started_at": [ - 5243 - ], - "status": [ - 85 - ], - "to_revision": [ - 85 - ], - "unchanged": [ - 41 - ], - "unsimulatable": [ - 41 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_scans_sum_fields": { - "broken": [ - 41 - ], - "lineups": [ - 41 - ], - "max_distance": [ - 2093 - ], - "moved": [ - 41 - ], - "requested_by_steam_id": [ - 312 - ], - "scanned": [ - 41 - ], - "unchanged": [ - 41 - ], - "unsimulatable": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_scans_update_column": {}, - "utility_drift_scans_updates": { - "_inc": [ - 6148 - ], - "_set": [ - 6158 - ], - "where": [ - 6146 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_scans_var_pop_fields": { - "broken": [ - 32 - ], - "lineups": [ - 32 - ], - "max_distance": [ - 32 - ], - "moved": [ - 32 - ], - "requested_by_steam_id": [ - 32 - ], - "scanned": [ - 32 - ], - "unchanged": [ - 32 - ], - "unsimulatable": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_scans_var_samp_fields": { - "broken": [ - 32 - ], - "lineups": [ - 32 - ], - "max_distance": [ - 32 - ], - "moved": [ - 32 - ], - "requested_by_steam_id": [ - 32 - ], - "scanned": [ - 32 - ], - "unchanged": [ - 32 - ], - "unsimulatable": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_drift_scans_variance_fields": { - "broken": [ - 32 - ], - "lineups": [ - 32 - ], - "max_distance": [ - 32 - ], - "moved": [ - 32 - ], - "requested_by_steam_id": [ - 32 - ], - "scanned": [ - 32 - ], - "unchanged": [ - 32 - ], - "unsimulatable": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_favorites": { - "created_at": [ - 5243 - ], - "player": [ - 4606 - ], - "steam_id": [ - 312 - ], - "utility_lineup": [ - 6420 - ], - "utility_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_favorites_aggregate": { - "aggregate": [ - 6174 - ], - "nodes": [ - 6170 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_favorites_aggregate_bool_exp": { - "count": [ - 6173 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_favorites_aggregate_bool_exp_count": { - "arguments": [ - 6191 - ], - "distinct": [ - 6 - ], - "filter": [ - 6179 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_favorites_aggregate_fields": { - "avg": [ - 6177 - ], - "count": [ - 41, - { - "columns": [ - 6191, - "[utility_lineup_favorites_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 6183 - ], - "min": [ - 6185 - ], - "stddev": [ - 6193 - ], - "stddev_pop": [ - 6195 - ], - "stddev_samp": [ - 6197 - ], - "sum": [ - 6201 - ], - "var_pop": [ - 6205 - ], - "var_samp": [ - 6207 - ], - "variance": [ - 6209 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_favorites_aggregate_order_by": { - "avg": [ - 6178 - ], - "count": [ - 3648 - ], - "max": [ - 6184 - ], - "min": [ - 6186 - ], - "stddev": [ - 6194 - ], - "stddev_pop": [ - 6196 - ], - "stddev_samp": [ - 6198 - ], - "sum": [ - 6202 - ], - "var_pop": [ - 6206 - ], - "var_samp": [ - 6208 - ], - "variance": [ - 6210 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_favorites_arr_rel_insert_input": { - "data": [ - 6182 - ], - "on_conflict": [ - 6188 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_favorites_avg_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_favorites_avg_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_favorites_bool_exp": { - "_and": [ - 6179 - ], - "_not": [ - 6179 - ], - "_or": [ - 6179 - ], - "created_at": [ - 5244 - ], - "player": [ - 4610 - ], - "steam_id": [ - 314 - ], - "utility_lineup": [ - 6442 - ], - "utility_lineup_id": [ - 6674 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_favorites_constraint": {}, - "utility_lineup_favorites_inc_input": { - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_favorites_insert_input": { - "created_at": [ - 5243 - ], - "player": [ - 4617 - ], - "steam_id": [ - 312 - ], - "utility_lineup": [ - 6454 - ], - "utility_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_favorites_max_fields": { - "created_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "utility_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_favorites_max_order_by": { - "created_at": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "utility_lineup_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_favorites_min_fields": { - "created_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "utility_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_favorites_min_order_by": { - "created_at": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "utility_lineup_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_favorites_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 6170 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_favorites_on_conflict": { - "constraint": [ - 6180 - ], - "update_columns": [ - 6203 - ], - "where": [ - 6179 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_favorites_order_by": { - "created_at": [ - 3648 - ], - "player": [ - 4619 - ], - "steam_id": [ - 3648 - ], - "utility_lineup": [ - 6456 - ], - "utility_lineup_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_favorites_pk_columns_input": { - "steam_id": [ - 312 - ], - "utility_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_favorites_select_column": {}, - "utility_lineup_favorites_set_input": { - "created_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "utility_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_favorites_stddev_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_favorites_stddev_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_favorites_stddev_pop_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_favorites_stddev_pop_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_favorites_stddev_samp_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_favorites_stddev_samp_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_favorites_stream_cursor_input": { - "initial_value": [ - 6200 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_favorites_stream_cursor_value_input": { - "created_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "utility_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_favorites_sum_fields": { - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_favorites_sum_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_favorites_update_column": {}, - "utility_lineup_favorites_updates": { - "_inc": [ - 6181 - ], - "_set": [ - 6192 - ], - "where": [ - 6179 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_favorites_var_pop_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_favorites_var_pop_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_favorites_var_samp_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_favorites_var_samp_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_favorites_variance_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_favorites_variance_order_by": { - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress": { - "attempts": [ - 41 - ], - "best_streak": [ - 41 - ], - "current_streak": [ - 41 - ], - "last_practiced_at": [ - 5243 - ], - "mastered_at": [ - 5243 - ], - "miss_along_sum": [ - 2093 - ], - "miss_lateral_sum": [ - 2093 - ], - "miss_samples": [ - 41 - ], - "miss_vertical_sum": [ - 2093 - ], - "player": [ - 4606 - ], - "steam_id": [ - 312 - ], - "successes": [ - 41 - ], - "utility_lineup": [ - 6420 - ], - "utility_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_aggregate": { - "aggregate": [ - 6225 - ], - "nodes": [ - 6211 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_aggregate_bool_exp": { - "avg": [ - 6214 - ], - "corr": [ - 6215 - ], - "count": [ - 6217 - ], - "covar_samp": [ - 6218 - ], - "max": [ - 6220 - ], - "min": [ - 6221 - ], - "stddev_samp": [ - 6222 - ], - "sum": [ - 6223 - ], - "var_samp": [ - 6224 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_aggregate_bool_exp_avg": { - "arguments": [ - 6243 - ], - "distinct": [ - 6 - ], - "filter": [ - 6230 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_aggregate_bool_exp_corr": { - "arguments": [ - 6216 - ], - "distinct": [ - 6 - ], - "filter": [ - 6230 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_aggregate_bool_exp_corr_arguments": { - "X": [ - 6244 - ], - "Y": [ - 6244 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_aggregate_bool_exp_count": { - "arguments": [ - 6242 - ], - "distinct": [ - 6 - ], - "filter": [ - 6230 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_aggregate_bool_exp_covar_samp": { - "arguments": [ - 6219 - ], - "distinct": [ - 6 - ], - "filter": [ - 6230 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_aggregate_bool_exp_covar_samp_arguments": { - "X": [ - 6245 - ], - "Y": [ - 6245 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_aggregate_bool_exp_max": { - "arguments": [ - 6246 - ], - "distinct": [ - 6 - ], - "filter": [ - 6230 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_aggregate_bool_exp_min": { - "arguments": [ - 6247 - ], - "distinct": [ - 6 - ], - "filter": [ - 6230 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_aggregate_bool_exp_stddev_samp": { - "arguments": [ - 6248 - ], - "distinct": [ - 6 - ], - "filter": [ - 6230 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_aggregate_bool_exp_sum": { - "arguments": [ - 6249 - ], - "distinct": [ - 6 - ], - "filter": [ - 6230 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_aggregate_bool_exp_var_samp": { - "arguments": [ - 6250 - ], - "distinct": [ - 6 - ], - "filter": [ - 6230 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_aggregate_fields": { - "avg": [ - 6228 - ], - "count": [ - 41, - { - "columns": [ - 6242, - "[utility_lineup_progress_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 6234 - ], - "min": [ - 6236 - ], - "stddev": [ - 6252 - ], - "stddev_pop": [ - 6254 - ], - "stddev_samp": [ - 6256 - ], - "sum": [ - 6260 - ], - "var_pop": [ - 6264 - ], - "var_samp": [ - 6266 - ], - "variance": [ - 6268 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_aggregate_order_by": { - "avg": [ - 6229 - ], - "count": [ - 3648 - ], - "max": [ - 6235 - ], - "min": [ - 6237 - ], - "stddev": [ - 6253 - ], - "stddev_pop": [ - 6255 - ], - "stddev_samp": [ - 6257 - ], - "sum": [ - 6261 - ], - "var_pop": [ - 6265 - ], - "var_samp": [ - 6267 - ], - "variance": [ - 6269 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_arr_rel_insert_input": { - "data": [ - 6233 - ], - "on_conflict": [ - 6239 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_avg_fields": { - "attempts": [ - 32 - ], - "best_streak": [ - 32 - ], - "current_streak": [ - 32 - ], - "miss_along_sum": [ - 32 - ], - "miss_lateral_sum": [ - 32 - ], - "miss_samples": [ - 32 - ], - "miss_vertical_sum": [ - 32 - ], - "steam_id": [ - 32 - ], - "successes": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_avg_order_by": { - "attempts": [ - 3648 - ], - "best_streak": [ - 3648 - ], - "current_streak": [ - 3648 - ], - "miss_along_sum": [ - 3648 - ], - "miss_lateral_sum": [ - 3648 - ], - "miss_samples": [ - 3648 - ], - "miss_vertical_sum": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "successes": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_bool_exp": { - "_and": [ - 6230 - ], - "_not": [ - 6230 - ], - "_or": [ - 6230 - ], - "attempts": [ - 42 - ], - "best_streak": [ - 42 - ], - "current_streak": [ - 42 - ], - "last_practiced_at": [ - 5244 - ], - "mastered_at": [ - 5244 - ], - "miss_along_sum": [ - 2094 - ], - "miss_lateral_sum": [ - 2094 - ], - "miss_samples": [ - 42 - ], - "miss_vertical_sum": [ - 2094 - ], - "player": [ - 4610 - ], - "steam_id": [ - 314 - ], - "successes": [ - 42 - ], - "utility_lineup": [ - 6442 - ], - "utility_lineup_id": [ - 6674 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_constraint": {}, - "utility_lineup_progress_inc_input": { - "attempts": [ - 41 - ], - "best_streak": [ - 41 - ], - "current_streak": [ - 41 - ], - "miss_along_sum": [ - 2093 - ], - "miss_lateral_sum": [ - 2093 - ], - "miss_samples": [ - 41 - ], - "miss_vertical_sum": [ - 2093 - ], - "steam_id": [ - 312 - ], - "successes": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_insert_input": { - "attempts": [ - 41 - ], - "best_streak": [ - 41 - ], - "current_streak": [ - 41 - ], - "last_practiced_at": [ - 5243 - ], - "mastered_at": [ - 5243 - ], - "miss_along_sum": [ - 2093 - ], - "miss_lateral_sum": [ - 2093 - ], - "miss_samples": [ - 41 - ], - "miss_vertical_sum": [ - 2093 - ], - "player": [ - 4617 - ], - "steam_id": [ - 312 - ], - "successes": [ - 41 - ], - "utility_lineup": [ - 6454 - ], - "utility_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_max_fields": { - "attempts": [ - 41 - ], - "best_streak": [ - 41 - ], - "current_streak": [ - 41 - ], - "last_practiced_at": [ - 5243 - ], - "mastered_at": [ - 5243 - ], - "miss_along_sum": [ - 2093 - ], - "miss_lateral_sum": [ - 2093 - ], - "miss_samples": [ - 41 - ], - "miss_vertical_sum": [ - 2093 - ], - "steam_id": [ - 312 - ], - "successes": [ - 41 - ], - "utility_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_max_order_by": { - "attempts": [ - 3648 - ], - "best_streak": [ - 3648 - ], - "current_streak": [ - 3648 - ], - "last_practiced_at": [ - 3648 - ], - "mastered_at": [ - 3648 - ], - "miss_along_sum": [ - 3648 - ], - "miss_lateral_sum": [ - 3648 - ], - "miss_samples": [ - 3648 - ], - "miss_vertical_sum": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "successes": [ - 3648 - ], - "utility_lineup_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_min_fields": { - "attempts": [ - 41 - ], - "best_streak": [ - 41 - ], - "current_streak": [ - 41 - ], - "last_practiced_at": [ - 5243 - ], - "mastered_at": [ - 5243 - ], - "miss_along_sum": [ - 2093 - ], - "miss_lateral_sum": [ - 2093 - ], - "miss_samples": [ - 41 - ], - "miss_vertical_sum": [ - 2093 - ], - "steam_id": [ - 312 - ], - "successes": [ - 41 - ], - "utility_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_min_order_by": { - "attempts": [ - 3648 - ], - "best_streak": [ - 3648 - ], - "current_streak": [ - 3648 - ], - "last_practiced_at": [ - 3648 - ], - "mastered_at": [ - 3648 - ], - "miss_along_sum": [ - 3648 - ], - "miss_lateral_sum": [ - 3648 - ], - "miss_samples": [ - 3648 - ], - "miss_vertical_sum": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "successes": [ - 3648 - ], - "utility_lineup_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 6211 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_on_conflict": { - "constraint": [ - 6231 - ], - "update_columns": [ - 6262 - ], - "where": [ - 6230 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_order_by": { - "attempts": [ - 3648 - ], - "best_streak": [ - 3648 - ], - "current_streak": [ - 3648 - ], - "last_practiced_at": [ - 3648 - ], - "mastered_at": [ - 3648 - ], - "miss_along_sum": [ - 3648 - ], - "miss_lateral_sum": [ - 3648 - ], - "miss_samples": [ - 3648 - ], - "miss_vertical_sum": [ - 3648 - ], - "player": [ - 4619 - ], - "steam_id": [ - 3648 - ], - "successes": [ - 3648 - ], - "utility_lineup": [ - 6456 - ], - "utility_lineup_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_pk_columns_input": { - "steam_id": [ - 312 - ], - "utility_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_select_column": {}, - "utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_avg_arguments_columns": {}, - "utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_corr_arguments_columns": {}, - "utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_covar_samp_arguments_columns": {}, - "utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_max_arguments_columns": {}, - "utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_min_arguments_columns": {}, - "utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_stddev_samp_arguments_columns": {}, - "utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_sum_arguments_columns": {}, - "utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_var_samp_arguments_columns": {}, - "utility_lineup_progress_set_input": { - "attempts": [ - 41 - ], - "best_streak": [ - 41 - ], - "current_streak": [ - 41 - ], - "last_practiced_at": [ - 5243 - ], - "mastered_at": [ - 5243 - ], - "miss_along_sum": [ - 2093 - ], - "miss_lateral_sum": [ - 2093 - ], - "miss_samples": [ - 41 - ], - "miss_vertical_sum": [ - 2093 - ], - "steam_id": [ - 312 - ], - "successes": [ - 41 - ], - "utility_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_stddev_fields": { - "attempts": [ - 32 - ], - "best_streak": [ - 32 - ], - "current_streak": [ - 32 - ], - "miss_along_sum": [ - 32 - ], - "miss_lateral_sum": [ - 32 - ], - "miss_samples": [ - 32 - ], - "miss_vertical_sum": [ - 32 - ], - "steam_id": [ - 32 - ], - "successes": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_stddev_order_by": { - "attempts": [ - 3648 - ], - "best_streak": [ - 3648 - ], - "current_streak": [ - 3648 - ], - "miss_along_sum": [ - 3648 - ], - "miss_lateral_sum": [ - 3648 - ], - "miss_samples": [ - 3648 - ], - "miss_vertical_sum": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "successes": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_stddev_pop_fields": { - "attempts": [ - 32 - ], - "best_streak": [ - 32 - ], - "current_streak": [ - 32 - ], - "miss_along_sum": [ - 32 - ], - "miss_lateral_sum": [ - 32 - ], - "miss_samples": [ - 32 - ], - "miss_vertical_sum": [ - 32 - ], - "steam_id": [ - 32 - ], - "successes": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_stddev_pop_order_by": { - "attempts": [ - 3648 - ], - "best_streak": [ - 3648 - ], - "current_streak": [ - 3648 - ], - "miss_along_sum": [ - 3648 - ], - "miss_lateral_sum": [ - 3648 - ], - "miss_samples": [ - 3648 - ], - "miss_vertical_sum": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "successes": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_stddev_samp_fields": { - "attempts": [ - 32 - ], - "best_streak": [ - 32 - ], - "current_streak": [ - 32 - ], - "miss_along_sum": [ - 32 - ], - "miss_lateral_sum": [ - 32 - ], - "miss_samples": [ - 32 - ], - "miss_vertical_sum": [ - 32 - ], - "steam_id": [ - 32 - ], - "successes": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_stddev_samp_order_by": { - "attempts": [ - 3648 - ], - "best_streak": [ - 3648 - ], - "current_streak": [ - 3648 - ], - "miss_along_sum": [ - 3648 - ], - "miss_lateral_sum": [ - 3648 - ], - "miss_samples": [ - 3648 - ], - "miss_vertical_sum": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "successes": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_stream_cursor_input": { - "initial_value": [ - 6259 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_stream_cursor_value_input": { - "attempts": [ - 41 - ], - "best_streak": [ - 41 - ], - "current_streak": [ - 41 - ], - "last_practiced_at": [ - 5243 - ], - "mastered_at": [ - 5243 - ], - "miss_along_sum": [ - 2093 - ], - "miss_lateral_sum": [ - 2093 - ], - "miss_samples": [ - 41 - ], - "miss_vertical_sum": [ - 2093 - ], - "steam_id": [ - 312 - ], - "successes": [ - 41 - ], - "utility_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_sum_fields": { - "attempts": [ - 41 - ], - "best_streak": [ - 41 - ], - "current_streak": [ - 41 - ], - "miss_along_sum": [ - 2093 - ], - "miss_lateral_sum": [ - 2093 - ], - "miss_samples": [ - 41 - ], - "miss_vertical_sum": [ - 2093 - ], - "steam_id": [ - 312 - ], - "successes": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_sum_order_by": { - "attempts": [ - 3648 - ], - "best_streak": [ - 3648 - ], - "current_streak": [ - 3648 - ], - "miss_along_sum": [ - 3648 - ], - "miss_lateral_sum": [ - 3648 - ], - "miss_samples": [ - 3648 - ], - "miss_vertical_sum": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "successes": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_update_column": {}, - "utility_lineup_progress_updates": { - "_inc": [ - 6232 - ], - "_set": [ - 6251 - ], - "where": [ - 6230 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_var_pop_fields": { - "attempts": [ - 32 - ], - "best_streak": [ - 32 - ], - "current_streak": [ - 32 - ], - "miss_along_sum": [ - 32 - ], - "miss_lateral_sum": [ - 32 - ], - "miss_samples": [ - 32 - ], - "miss_vertical_sum": [ - 32 - ], - "steam_id": [ - 32 - ], - "successes": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_var_pop_order_by": { - "attempts": [ - 3648 - ], - "best_streak": [ - 3648 - ], - "current_streak": [ - 3648 - ], - "miss_along_sum": [ - 3648 - ], - "miss_lateral_sum": [ - 3648 - ], - "miss_samples": [ - 3648 - ], - "miss_vertical_sum": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "successes": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_var_samp_fields": { - "attempts": [ - 32 - ], - "best_streak": [ - 32 - ], - "current_streak": [ - 32 - ], - "miss_along_sum": [ - 32 - ], - "miss_lateral_sum": [ - 32 - ], - "miss_samples": [ - 32 - ], - "miss_vertical_sum": [ - 32 - ], - "steam_id": [ - 32 - ], - "successes": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_var_samp_order_by": { - "attempts": [ - 3648 - ], - "best_streak": [ - 3648 - ], - "current_streak": [ - 3648 - ], - "miss_along_sum": [ - 3648 - ], - "miss_lateral_sum": [ - 3648 - ], - "miss_samples": [ - 3648 - ], - "miss_vertical_sum": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "successes": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_variance_fields": { - "attempts": [ - 32 - ], - "best_streak": [ - 32 - ], - "current_streak": [ - 32 - ], - "miss_along_sum": [ - 32 - ], - "miss_lateral_sum": [ - 32 - ], - "miss_samples": [ - 32 - ], - "miss_vertical_sum": [ - 32 - ], - "steam_id": [ - 32 - ], - "successes": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_progress_variance_order_by": { - "attempts": [ - 3648 - ], - "best_streak": [ - 3648 - ], - "current_streak": [ - 3648 - ], - "miss_along_sum": [ - 3648 - ], - "miss_lateral_sum": [ - 3648 - ], - "miss_samples": [ - 3648 - ], - "miss_vertical_sum": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "successes": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders": { - "created_at": [ - 5243 - ], - "duration_ms": [ - 41 - ], - "error_message": [ - 85 - ], - "game_server_node": [ - 2314 - ], - "game_server_node_id": [ - 85 - ], - "id": [ - 6672 - ], - "k8s_job_name": [ - 85 - ], - "last_status_at": [ - 5243 - ], - "lineup": [ - 6420 - ], - "map_name": [ - 85 - ], - "paused": [ - 6 - ], - "practice_session": [ - 6626 - ], - "progress": [ - 3646 - ], - "requested_by": [ - 4606 - ], - "requested_by_steam_id": [ - 312 - ], - "session_token": [ - 85 - ], - "skip_reason": [ - 85 - ], - "sort_index": [ - 41 - ], - "spec": [ - 2439, - { - "path": [ - 85 - ] - } - ], - "status": [ - 85 - ], - "status_history": [ - 2439, - { - "path": [ - 85 - ] - } - ], - "utility_lineup_id": [ - 6672 - ], - "utility_practice_session_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders_aggregate": { - "aggregate": [ - 6276 - ], - "nodes": [ - 6270 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders_aggregate_bool_exp": { - "bool_and": [ - 6273 - ], - "bool_or": [ - 6274 - ], - "count": [ - 6275 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders_aggregate_bool_exp_bool_and": { - "arguments": [ - 6299 - ], - "distinct": [ - 6 - ], - "filter": [ - 6282 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders_aggregate_bool_exp_bool_or": { - "arguments": [ - 6300 - ], - "distinct": [ - 6 - ], - "filter": [ - 6282 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders_aggregate_bool_exp_count": { - "arguments": [ - 6298 - ], - "distinct": [ - 6 - ], - "filter": [ - 6282 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders_aggregate_fields": { - "avg": [ - 6280 - ], - "count": [ - 41, - { - "columns": [ - 6298, - "[utility_lineup_renders_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 6289 - ], - "min": [ - 6291 - ], - "stddev": [ - 6302 - ], - "stddev_pop": [ - 6304 - ], - "stddev_samp": [ - 6306 - ], - "sum": [ - 6310 - ], - "var_pop": [ - 6314 - ], - "var_samp": [ - 6316 - ], - "variance": [ - 6318 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders_aggregate_order_by": { - "avg": [ - 6281 - ], - "count": [ - 3648 - ], - "max": [ - 6290 - ], - "min": [ - 6292 - ], - "stddev": [ - 6303 - ], - "stddev_pop": [ - 6305 - ], - "stddev_samp": [ - 6307 - ], - "sum": [ - 6311 - ], - "var_pop": [ - 6315 - ], - "var_samp": [ - 6317 - ], - "variance": [ - 6319 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders_append_input": { - "spec": [ - 2439 - ], - "status_history": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders_arr_rel_insert_input": { - "data": [ - 6288 - ], - "on_conflict": [ - 6294 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders_avg_fields": { - "duration_ms": [ - 32 - ], - "progress": [ - 32 - ], - "requested_by_steam_id": [ - 32 - ], - "sort_index": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders_avg_order_by": { - "duration_ms": [ - 3648 - ], - "progress": [ - 3648 - ], - "requested_by_steam_id": [ - 3648 - ], - "sort_index": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders_bool_exp": { - "_and": [ - 6282 - ], - "_not": [ - 6282 - ], - "_or": [ - 6282 - ], - "created_at": [ - 5244 - ], - "duration_ms": [ - 42 - ], - "error_message": [ - 87 - ], - "game_server_node": [ - 2326 - ], - "game_server_node_id": [ - 87 - ], - "id": [ - 6674 - ], - "k8s_job_name": [ - 87 - ], - "last_status_at": [ - 5244 - ], - "lineup": [ - 6442 - ], - "map_name": [ - 87 - ], - "paused": [ - 7 - ], - "practice_session": [ - 6637 - ], - "progress": [ - 3647 - ], - "requested_by": [ - 4610 - ], - "requested_by_steam_id": [ - 314 - ], - "session_token": [ - 87 - ], - "skip_reason": [ - 87 - ], - "sort_index": [ - 42 - ], - "spec": [ - 2441 - ], - "status": [ - 87 - ], - "status_history": [ - 2441 - ], - "utility_lineup_id": [ - 6674 - ], - "utility_practice_session_id": [ - 6674 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders_constraint": {}, - "utility_lineup_renders_delete_at_path_input": { - "spec": [ - 85 - ], - "status_history": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders_delete_elem_input": { - "spec": [ - 41 - ], - "status_history": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders_delete_key_input": { - "spec": [ - 85 - ], - "status_history": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders_inc_input": { - "duration_ms": [ - 41 - ], - "progress": [ - 3646 - ], - "requested_by_steam_id": [ - 312 - ], - "sort_index": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders_insert_input": { - "created_at": [ - 5243 - ], - "duration_ms": [ - 41 - ], - "error_message": [ - 85 - ], - "game_server_node": [ - 2338 - ], - "game_server_node_id": [ - 85 - ], - "id": [ - 6672 - ], - "k8s_job_name": [ - 85 - ], - "last_status_at": [ - 5243 - ], - "lineup": [ - 6454 - ], - "map_name": [ - 85 - ], - "paused": [ - 6 - ], - "practice_session": [ - 6646 - ], - "progress": [ - 3646 - ], - "requested_by": [ - 4617 - ], - "requested_by_steam_id": [ - 312 - ], - "session_token": [ - 85 - ], - "skip_reason": [ - 85 - ], - "sort_index": [ - 41 - ], - "spec": [ - 2439 - ], - "status": [ - 85 - ], - "status_history": [ - 2439 - ], - "utility_lineup_id": [ - 6672 - ], - "utility_practice_session_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders_max_fields": { - "created_at": [ - 5243 - ], - "duration_ms": [ - 41 - ], - "error_message": [ - 85 - ], - "game_server_node_id": [ - 85 - ], - "id": [ - 6672 - ], - "k8s_job_name": [ - 85 - ], - "last_status_at": [ - 5243 - ], - "map_name": [ - 85 - ], - "progress": [ - 3646 - ], - "requested_by_steam_id": [ - 312 - ], - "session_token": [ - 85 - ], - "skip_reason": [ - 85 - ], - "sort_index": [ - 41 - ], - "status": [ - 85 - ], - "utility_lineup_id": [ - 6672 - ], - "utility_practice_session_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders_max_order_by": { - "created_at": [ - 3648 - ], - "duration_ms": [ - 3648 - ], - "error_message": [ - 3648 - ], - "game_server_node_id": [ - 3648 - ], - "id": [ - 3648 - ], - "k8s_job_name": [ - 3648 - ], - "last_status_at": [ - 3648 - ], - "map_name": [ - 3648 - ], - "progress": [ - 3648 - ], - "requested_by_steam_id": [ - 3648 - ], - "session_token": [ - 3648 - ], - "skip_reason": [ - 3648 - ], - "sort_index": [ - 3648 - ], - "status": [ - 3648 - ], - "utility_lineup_id": [ - 3648 - ], - "utility_practice_session_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders_min_fields": { - "created_at": [ - 5243 - ], - "duration_ms": [ - 41 - ], - "error_message": [ - 85 - ], - "game_server_node_id": [ - 85 - ], - "id": [ - 6672 - ], - "k8s_job_name": [ - 85 - ], - "last_status_at": [ - 5243 - ], - "map_name": [ - 85 - ], - "progress": [ - 3646 - ], - "requested_by_steam_id": [ - 312 - ], - "session_token": [ - 85 - ], - "skip_reason": [ - 85 - ], - "sort_index": [ - 41 - ], - "status": [ - 85 - ], - "utility_lineup_id": [ - 6672 - ], - "utility_practice_session_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders_min_order_by": { - "created_at": [ - 3648 - ], - "duration_ms": [ - 3648 - ], - "error_message": [ - 3648 - ], - "game_server_node_id": [ - 3648 - ], - "id": [ - 3648 - ], - "k8s_job_name": [ - 3648 - ], - "last_status_at": [ - 3648 - ], - "map_name": [ - 3648 - ], - "progress": [ - 3648 - ], - "requested_by_steam_id": [ - 3648 - ], - "session_token": [ - 3648 - ], - "skip_reason": [ - 3648 - ], - "sort_index": [ - 3648 - ], - "status": [ - 3648 - ], - "utility_lineup_id": [ - 3648 - ], - "utility_practice_session_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 6270 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders_on_conflict": { - "constraint": [ - 6283 - ], - "update_columns": [ - 6312 - ], - "where": [ - 6282 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders_order_by": { - "created_at": [ - 3648 - ], - "duration_ms": [ - 3648 - ], - "error_message": [ - 3648 - ], - "game_server_node": [ - 2340 - ], - "game_server_node_id": [ - 3648 - ], - "id": [ - 3648 - ], - "k8s_job_name": [ - 3648 - ], - "last_status_at": [ - 3648 - ], - "lineup": [ - 6456 - ], - "map_name": [ - 3648 - ], - "paused": [ - 3648 - ], - "practice_session": [ - 6648 - ], - "progress": [ - 3648 - ], - "requested_by": [ - 4619 - ], - "requested_by_steam_id": [ - 3648 - ], - "session_token": [ - 3648 - ], - "skip_reason": [ - 3648 - ], - "sort_index": [ - 3648 - ], - "spec": [ - 3648 - ], - "status": [ - 3648 - ], - "status_history": [ - 3648 - ], - "utility_lineup_id": [ - 3648 - ], - "utility_practice_session_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders_prepend_input": { - "spec": [ - 2439 - ], - "status_history": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders_select_column": {}, - "utility_lineup_renders_select_column_utility_lineup_renders_aggregate_bool_exp_bool_and_arguments_columns": {}, - "utility_lineup_renders_select_column_utility_lineup_renders_aggregate_bool_exp_bool_or_arguments_columns": {}, - "utility_lineup_renders_set_input": { - "created_at": [ - 5243 - ], - "duration_ms": [ - 41 - ], - "error_message": [ - 85 - ], - "game_server_node_id": [ - 85 - ], - "id": [ - 6672 - ], - "k8s_job_name": [ - 85 - ], - "last_status_at": [ - 5243 - ], - "map_name": [ - 85 - ], - "paused": [ - 6 - ], - "progress": [ - 3646 - ], - "requested_by_steam_id": [ - 312 - ], - "session_token": [ - 85 - ], - "skip_reason": [ - 85 - ], - "sort_index": [ - 41 - ], - "spec": [ - 2439 - ], - "status": [ - 85 - ], - "status_history": [ - 2439 - ], - "utility_lineup_id": [ - 6672 - ], - "utility_practice_session_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders_stddev_fields": { - "duration_ms": [ - 32 - ], - "progress": [ - 32 - ], - "requested_by_steam_id": [ - 32 - ], - "sort_index": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders_stddev_order_by": { - "duration_ms": [ - 3648 - ], - "progress": [ - 3648 - ], - "requested_by_steam_id": [ - 3648 - ], - "sort_index": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders_stddev_pop_fields": { - "duration_ms": [ - 32 - ], - "progress": [ - 32 - ], - "requested_by_steam_id": [ - 32 - ], - "sort_index": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders_stddev_pop_order_by": { - "duration_ms": [ - 3648 - ], - "progress": [ - 3648 - ], - "requested_by_steam_id": [ - 3648 - ], - "sort_index": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders_stddev_samp_fields": { - "duration_ms": [ - 32 - ], - "progress": [ - 32 - ], - "requested_by_steam_id": [ - 32 - ], - "sort_index": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders_stddev_samp_order_by": { - "duration_ms": [ - 3648 - ], - "progress": [ - 3648 - ], - "requested_by_steam_id": [ - 3648 - ], - "sort_index": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders_stream_cursor_input": { - "initial_value": [ - 6309 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders_stream_cursor_value_input": { - "created_at": [ - 5243 - ], - "duration_ms": [ - 41 - ], - "error_message": [ - 85 - ], - "game_server_node_id": [ - 85 - ], - "id": [ - 6672 - ], - "k8s_job_name": [ - 85 - ], - "last_status_at": [ - 5243 - ], - "map_name": [ - 85 - ], - "paused": [ - 6 - ], - "progress": [ - 3646 - ], - "requested_by_steam_id": [ - 312 - ], - "session_token": [ - 85 - ], - "skip_reason": [ - 85 - ], - "sort_index": [ - 41 - ], - "spec": [ - 2439 - ], - "status": [ - 85 - ], - "status_history": [ - 2439 - ], - "utility_lineup_id": [ - 6672 - ], - "utility_practice_session_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders_sum_fields": { - "duration_ms": [ - 41 - ], - "progress": [ - 3646 - ], - "requested_by_steam_id": [ - 312 - ], - "sort_index": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders_sum_order_by": { - "duration_ms": [ - 3648 - ], - "progress": [ - 3648 - ], - "requested_by_steam_id": [ - 3648 - ], - "sort_index": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders_update_column": {}, - "utility_lineup_renders_updates": { - "_append": [ - 6278 - ], - "_delete_at_path": [ - 6284 - ], - "_delete_elem": [ - 6285 - ], - "_delete_key": [ - 6286 - ], - "_inc": [ - 6287 - ], - "_prepend": [ - 6297 - ], - "_set": [ - 6301 - ], - "where": [ - 6282 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders_var_pop_fields": { - "duration_ms": [ - 32 - ], - "progress": [ - 32 - ], - "requested_by_steam_id": [ - 32 - ], - "sort_index": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders_var_pop_order_by": { - "duration_ms": [ - 3648 - ], - "progress": [ - 3648 - ], - "requested_by_steam_id": [ - 3648 - ], - "sort_index": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders_var_samp_fields": { - "duration_ms": [ - 32 - ], - "progress": [ - 32 - ], - "requested_by_steam_id": [ - 32 - ], - "sort_index": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders_var_samp_order_by": { - "duration_ms": [ - 3648 - ], - "progress": [ - 3648 - ], - "requested_by_steam_id": [ - 3648 - ], - "sort_index": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders_variance_fields": { - "duration_ms": [ - 32 - ], - "progress": [ - 32 - ], - "requested_by_steam_id": [ - 32 - ], - "sort_index": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_renders_variance_order_by": { - "duration_ms": [ - 3648 - ], - "progress": [ - 3648 - ], - "requested_by_steam_id": [ - 3648 - ], - "sort_index": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs": { - "created_at": [ - 5243 - ], - "drift_distance": [ - 2093 - ], - "expires_at": [ - 5243 - ], - "id": [ - 6672 - ], - "repaired_at": [ - 5243 - ], - "repaired_utility_lineup": [ - 6420 - ], - "repaired_utility_lineup_id": [ - 6672 - ], - "requested_by": [ - 4606 - ], - "requested_by_steam_id": [ - 312 - ], - "status": [ - 85 - ], - "utility_drift_scan": [ - 6142 - ], - "utility_drift_scan_id": [ - 6672 - ], - "utility_lineup": [ - 6420 - ], - "utility_lineup_id": [ - 6672 - ], - "utility_practice_session": [ - 6626 - ], - "utility_practice_session_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_aggregate": { - "aggregate": [ - 6334 - ], - "nodes": [ - 6320 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_aggregate_bool_exp": { - "avg": [ - 6323 - ], - "corr": [ - 6324 - ], - "count": [ - 6326 - ], - "covar_samp": [ - 6327 - ], - "max": [ - 6329 - ], - "min": [ - 6330 - ], - "stddev_samp": [ - 6331 - ], - "sum": [ - 6332 - ], - "var_samp": [ - 6333 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_aggregate_bool_exp_avg": { - "arguments": [ - 6352 - ], - "distinct": [ - 6 - ], - "filter": [ - 6339 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_aggregate_bool_exp_corr": { - "arguments": [ - 6325 - ], - "distinct": [ - 6 - ], - "filter": [ - 6339 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_aggregate_bool_exp_corr_arguments": { - "X": [ - 6353 - ], - "Y": [ - 6353 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_aggregate_bool_exp_count": { - "arguments": [ - 6351 - ], - "distinct": [ - 6 - ], - "filter": [ - 6339 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_aggregate_bool_exp_covar_samp": { - "arguments": [ - 6328 - ], - "distinct": [ - 6 - ], - "filter": [ - 6339 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_aggregate_bool_exp_covar_samp_arguments": { - "X": [ - 6354 - ], - "Y": [ - 6354 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_aggregate_bool_exp_max": { - "arguments": [ - 6355 - ], - "distinct": [ - 6 - ], - "filter": [ - 6339 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_aggregate_bool_exp_min": { - "arguments": [ - 6356 - ], - "distinct": [ - 6 - ], - "filter": [ - 6339 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_aggregate_bool_exp_stddev_samp": { - "arguments": [ - 6357 - ], - "distinct": [ - 6 - ], - "filter": [ - 6339 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_aggregate_bool_exp_sum": { - "arguments": [ - 6358 - ], - "distinct": [ - 6 - ], - "filter": [ - 6339 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_aggregate_bool_exp_var_samp": { - "arguments": [ - 6359 - ], - "distinct": [ - 6 - ], - "filter": [ - 6339 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_aggregate_fields": { - "avg": [ - 6337 - ], - "count": [ - 41, - { - "columns": [ - 6351, - "[utility_lineup_repairs_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 6343 - ], - "min": [ - 6345 - ], - "stddev": [ - 6361 - ], - "stddev_pop": [ - 6363 - ], - "stddev_samp": [ - 6365 - ], - "sum": [ - 6369 - ], - "var_pop": [ - 6373 - ], - "var_samp": [ - 6375 - ], - "variance": [ - 6377 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_aggregate_order_by": { - "avg": [ - 6338 - ], - "count": [ - 3648 - ], - "max": [ - 6344 - ], - "min": [ - 6346 - ], - "stddev": [ - 6362 - ], - "stddev_pop": [ - 6364 - ], - "stddev_samp": [ - 6366 - ], - "sum": [ - 6370 - ], - "var_pop": [ - 6374 - ], - "var_samp": [ - 6376 - ], - "variance": [ - 6378 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_arr_rel_insert_input": { - "data": [ - 6342 - ], - "on_conflict": [ - 6348 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_avg_fields": { - "drift_distance": [ - 32 - ], - "requested_by_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_avg_order_by": { - "drift_distance": [ - 3648 - ], - "requested_by_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_bool_exp": { - "_and": [ - 6339 - ], - "_not": [ - 6339 - ], - "_or": [ - 6339 - ], - "created_at": [ - 5244 - ], - "drift_distance": [ - 2094 - ], - "expires_at": [ - 5244 - ], - "id": [ - 6674 - ], - "repaired_at": [ - 5244 - ], - "repaired_utility_lineup": [ - 6442 - ], - "repaired_utility_lineup_id": [ - 6674 - ], - "requested_by": [ - 4610 - ], - "requested_by_steam_id": [ - 314 - ], - "status": [ - 87 - ], - "utility_drift_scan": [ - 6146 - ], - "utility_drift_scan_id": [ - 6674 - ], - "utility_lineup": [ - 6442 - ], - "utility_lineup_id": [ - 6674 - ], - "utility_practice_session": [ - 6637 - ], - "utility_practice_session_id": [ - 6674 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_constraint": {}, - "utility_lineup_repairs_inc_input": { - "drift_distance": [ - 2093 - ], - "requested_by_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_insert_input": { - "created_at": [ - 5243 - ], - "drift_distance": [ - 2093 - ], - "expires_at": [ - 5243 - ], - "id": [ - 6672 - ], - "repaired_at": [ - 5243 - ], - "repaired_utility_lineup": [ - 6454 - ], - "repaired_utility_lineup_id": [ - 6672 - ], - "requested_by": [ - 4617 - ], - "requested_by_steam_id": [ - 312 - ], - "status": [ - 85 - ], - "utility_drift_scan": [ - 6153 - ], - "utility_drift_scan_id": [ - 6672 - ], - "utility_lineup": [ - 6454 - ], - "utility_lineup_id": [ - 6672 - ], - "utility_practice_session": [ - 6646 - ], - "utility_practice_session_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_max_fields": { - "created_at": [ - 5243 - ], - "drift_distance": [ - 2093 - ], - "expires_at": [ - 5243 - ], - "id": [ - 6672 - ], - "repaired_at": [ - 5243 - ], - "repaired_utility_lineup_id": [ - 6672 - ], - "requested_by_steam_id": [ - 312 - ], - "status": [ - 85 - ], - "utility_drift_scan_id": [ - 6672 - ], - "utility_lineup_id": [ - 6672 - ], - "utility_practice_session_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_max_order_by": { - "created_at": [ - 3648 - ], - "drift_distance": [ - 3648 - ], - "expires_at": [ - 3648 - ], - "id": [ - 3648 - ], - "repaired_at": [ - 3648 - ], - "repaired_utility_lineup_id": [ - 3648 - ], - "requested_by_steam_id": [ - 3648 - ], - "status": [ - 3648 - ], - "utility_drift_scan_id": [ - 3648 - ], - "utility_lineup_id": [ - 3648 - ], - "utility_practice_session_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_min_fields": { - "created_at": [ - 5243 - ], - "drift_distance": [ - 2093 - ], - "expires_at": [ - 5243 - ], - "id": [ - 6672 - ], - "repaired_at": [ - 5243 - ], - "repaired_utility_lineup_id": [ - 6672 - ], - "requested_by_steam_id": [ - 312 - ], - "status": [ - 85 - ], - "utility_drift_scan_id": [ - 6672 - ], - "utility_lineup_id": [ - 6672 - ], - "utility_practice_session_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_min_order_by": { - "created_at": [ - 3648 - ], - "drift_distance": [ - 3648 - ], - "expires_at": [ - 3648 - ], - "id": [ - 3648 - ], - "repaired_at": [ - 3648 - ], - "repaired_utility_lineup_id": [ - 3648 - ], - "requested_by_steam_id": [ - 3648 - ], - "status": [ - 3648 - ], - "utility_drift_scan_id": [ - 3648 - ], - "utility_lineup_id": [ - 3648 - ], - "utility_practice_session_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 6320 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_on_conflict": { - "constraint": [ - 6340 - ], - "update_columns": [ - 6371 - ], - "where": [ - 6339 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_order_by": { - "created_at": [ - 3648 - ], - "drift_distance": [ - 3648 - ], - "expires_at": [ - 3648 - ], - "id": [ - 3648 - ], - "repaired_at": [ - 3648 - ], - "repaired_utility_lineup": [ - 6456 - ], - "repaired_utility_lineup_id": [ - 3648 - ], - "requested_by": [ - 4619 - ], - "requested_by_steam_id": [ - 3648 - ], - "status": [ - 3648 - ], - "utility_drift_scan": [ - 6155 - ], - "utility_drift_scan_id": [ - 3648 - ], - "utility_lineup": [ - 6456 - ], - "utility_lineup_id": [ - 3648 - ], - "utility_practice_session": [ - 6648 - ], - "utility_practice_session_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_select_column": {}, - "utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_avg_arguments_columns": {}, - "utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_corr_arguments_columns": {}, - "utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_covar_samp_arguments_columns": {}, - "utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_max_arguments_columns": {}, - "utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_min_arguments_columns": {}, - "utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_stddev_samp_arguments_columns": {}, - "utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_sum_arguments_columns": {}, - "utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_var_samp_arguments_columns": {}, - "utility_lineup_repairs_set_input": { - "created_at": [ - 5243 - ], - "drift_distance": [ - 2093 - ], - "expires_at": [ - 5243 - ], - "id": [ - 6672 - ], - "repaired_at": [ - 5243 - ], - "repaired_utility_lineup_id": [ - 6672 - ], - "requested_by_steam_id": [ - 312 - ], - "status": [ - 85 - ], - "utility_drift_scan_id": [ - 6672 - ], - "utility_lineup_id": [ - 6672 - ], - "utility_practice_session_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_stddev_fields": { - "drift_distance": [ - 32 - ], - "requested_by_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_stddev_order_by": { - "drift_distance": [ - 3648 - ], - "requested_by_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_stddev_pop_fields": { - "drift_distance": [ - 32 - ], - "requested_by_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_stddev_pop_order_by": { - "drift_distance": [ - 3648 - ], - "requested_by_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_stddev_samp_fields": { - "drift_distance": [ - 32 - ], - "requested_by_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_stddev_samp_order_by": { - "drift_distance": [ - 3648 - ], - "requested_by_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_stream_cursor_input": { - "initial_value": [ - 6368 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_stream_cursor_value_input": { - "created_at": [ - 5243 - ], - "drift_distance": [ - 2093 - ], - "expires_at": [ - 5243 - ], - "id": [ - 6672 - ], - "repaired_at": [ - 5243 - ], - "repaired_utility_lineup_id": [ - 6672 - ], - "requested_by_steam_id": [ - 312 - ], - "status": [ - 85 - ], - "utility_drift_scan_id": [ - 6672 - ], - "utility_lineup_id": [ - 6672 - ], - "utility_practice_session_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_sum_fields": { - "drift_distance": [ - 2093 - ], - "requested_by_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_sum_order_by": { - "drift_distance": [ - 3648 - ], - "requested_by_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_update_column": {}, - "utility_lineup_repairs_updates": { - "_inc": [ - 6341 - ], - "_set": [ - 6360 - ], - "where": [ - 6339 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_var_pop_fields": { - "drift_distance": [ - 32 - ], - "requested_by_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_var_pop_order_by": { - "drift_distance": [ - 3648 - ], - "requested_by_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_var_samp_fields": { - "drift_distance": [ - 32 - ], - "requested_by_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_var_samp_order_by": { - "drift_distance": [ - 3648 - ], - "requested_by_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_variance_fields": { - "drift_distance": [ - 32 - ], - "requested_by_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_repairs_variance_order_by": { - "drift_distance": [ - 3648 - ], - "requested_by_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_votes": { - "created_at": [ - 5243 - ], - "player": [ - 4606 - ], - "steam_id": [ - 312 - ], - "utility_lineup": [ - 6420 - ], - "utility_lineup_id": [ - 6672 - ], - "vote": [ - 4830 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_votes_aggregate": { - "aggregate": [ - 6383 - ], - "nodes": [ - 6379 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_votes_aggregate_bool_exp": { - "count": [ - 6382 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_votes_aggregate_bool_exp_count": { - "arguments": [ - 6400 - ], - "distinct": [ - 6 - ], - "filter": [ - 6388 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_votes_aggregate_fields": { - "avg": [ - 6386 - ], - "count": [ - 41, - { - "columns": [ - 6400, - "[utility_lineup_votes_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 6392 - ], - "min": [ - 6394 - ], - "stddev": [ - 6402 - ], - "stddev_pop": [ - 6404 - ], - "stddev_samp": [ - 6406 - ], - "sum": [ - 6410 - ], - "var_pop": [ - 6414 - ], - "var_samp": [ - 6416 - ], - "variance": [ - 6418 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_votes_aggregate_order_by": { - "avg": [ - 6387 - ], - "count": [ - 3648 - ], - "max": [ - 6393 - ], - "min": [ - 6395 - ], - "stddev": [ - 6403 - ], - "stddev_pop": [ - 6405 - ], - "stddev_samp": [ - 6407 - ], - "sum": [ - 6411 - ], - "var_pop": [ - 6415 - ], - "var_samp": [ - 6417 - ], - "variance": [ - 6419 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_votes_arr_rel_insert_input": { - "data": [ - 6391 - ], - "on_conflict": [ - 6397 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_votes_avg_fields": { - "steam_id": [ - 32 - ], - "vote": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_votes_avg_order_by": { - "steam_id": [ - 3648 - ], - "vote": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_votes_bool_exp": { - "_and": [ - 6388 - ], - "_not": [ - 6388 - ], - "_or": [ - 6388 - ], - "created_at": [ - 5244 - ], - "player": [ - 4610 - ], - "steam_id": [ - 314 - ], - "utility_lineup": [ - 6442 - ], - "utility_lineup_id": [ - 6674 - ], - "vote": [ - 4831 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_votes_constraint": {}, - "utility_lineup_votes_inc_input": { - "steam_id": [ - 312 - ], - "vote": [ - 4830 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_votes_insert_input": { - "created_at": [ - 5243 - ], - "player": [ - 4617 - ], - "steam_id": [ - 312 - ], - "utility_lineup": [ - 6454 - ], - "utility_lineup_id": [ - 6672 - ], - "vote": [ - 4830 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_votes_max_fields": { - "created_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "utility_lineup_id": [ - 6672 - ], - "vote": [ - 4830 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_votes_max_order_by": { - "created_at": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "utility_lineup_id": [ - 3648 - ], - "vote": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_votes_min_fields": { - "created_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "utility_lineup_id": [ - 6672 - ], - "vote": [ - 4830 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_votes_min_order_by": { - "created_at": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "utility_lineup_id": [ - 3648 - ], - "vote": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_votes_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 6379 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_votes_on_conflict": { - "constraint": [ - 6389 - ], - "update_columns": [ - 6412 - ], - "where": [ - 6388 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_votes_order_by": { - "created_at": [ - 3648 - ], - "player": [ - 4619 - ], - "steam_id": [ - 3648 - ], - "utility_lineup": [ - 6456 - ], - "utility_lineup_id": [ - 3648 - ], - "vote": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_votes_pk_columns_input": { - "steam_id": [ - 312 - ], - "utility_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_votes_select_column": {}, - "utility_lineup_votes_set_input": { - "created_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "utility_lineup_id": [ - 6672 - ], - "vote": [ - 4830 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_votes_stddev_fields": { - "steam_id": [ - 32 - ], - "vote": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_votes_stddev_order_by": { - "steam_id": [ - 3648 - ], - "vote": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_votes_stddev_pop_fields": { - "steam_id": [ - 32 - ], - "vote": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_votes_stddev_pop_order_by": { - "steam_id": [ - 3648 - ], - "vote": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_votes_stddev_samp_fields": { - "steam_id": [ - 32 - ], - "vote": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_votes_stddev_samp_order_by": { - "steam_id": [ - 3648 - ], - "vote": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_votes_stream_cursor_input": { - "initial_value": [ - 6409 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_votes_stream_cursor_value_input": { - "created_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "utility_lineup_id": [ - 6672 - ], - "vote": [ - 4830 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_votes_sum_fields": { - "steam_id": [ - 312 - ], - "vote": [ - 4830 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_votes_sum_order_by": { - "steam_id": [ - 3648 - ], - "vote": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_votes_update_column": {}, - "utility_lineup_votes_updates": { - "_inc": [ - 6390 - ], - "_set": [ - 6401 - ], - "where": [ - 6388 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_votes_var_pop_fields": { - "steam_id": [ - 32 - ], - "vote": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_votes_var_pop_order_by": { - "steam_id": [ - 3648 - ], - "vote": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_votes_var_samp_fields": { - "steam_id": [ - 32 - ], - "vote": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_votes_var_samp_order_by": { - "steam_id": [ - 3648 - ], - "vote": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_votes_variance_fields": { - "steam_id": [ - 32 - ], - "vote": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_lineup_votes_variance_order_by": { - "steam_id": [ - 3648 - ], - "vote": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups": { - "aim_tolerance": [ - 2093 - ], - "archived_at": [ - 5243 - ], - "author": [ - 4606 - ], - "author_steam_id": [ - 312 - ], - "can_edit": [ - 6 - ], - "can_view": [ - 6 - ], - "collection_items": [ - 5960, - { - "distinct_on": [ - 5981, - "[utility_collection_items_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5979, - "[utility_collection_items_order_by!]" - ], - "where": [ - 5969 - ] - } - ], - "collection_items_aggregate": [ - 5961, - { - "distinct_on": [ - 5981, - "[utility_collection_items_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5979, - "[utility_collection_items_order_by!]" - ], - "where": [ - 5969 - ] - } - ], - "confidence": [ - 85 - ], - "created_at": [ - 5243 - ], - "description": [ - 85 - ], - "difficulty": [ - 85 - ], - "downvotes": [ - 41 - ], - "external_id": [ - 85 - ], - "eye_z": [ - 2093 - ], - "favorited_by": [ - 6170, - { - "distinct_on": [ - 6191, - "[utility_lineup_favorites_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6189, - "[utility_lineup_favorites_order_by!]" - ], - "where": [ - 6179 - ] - } - ], - "favorited_by_aggregate": [ - 6171, - { - "distinct_on": [ - 6191, - "[utility_lineup_favorites_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6189, - "[utility_lineup_favorites_order_by!]" - ], - "where": [ - 6179 - ] - } - ], - "favorites": [ - 41 - ], - "flight_time_ms": [ - 41 - ], - "forked_from": [ - 6420 - ], - "forked_from_utility_lineup_id": [ - 6672 - ], - "id": [ - 6672 - ], - "initial_pos_x": [ - 2093 - ], - "initial_pos_y": [ - 2093 - ], - "initial_pos_z": [ - 2093 - ], - "initial_vel_x": [ - 2093 - ], - "initial_vel_y": [ - 2093 - ], - "initial_vel_z": [ - 2093 - ], - "is_favorited": [ - 6 - ], - "jump_throw_bind": [ - 6 - ], - "land_x": [ - 2093 - ], - "land_y": [ - 2093 - ], - "land_z": [ - 2093 - ], - "lineup_bucket": [ - 85 - ], - "map_name": [ - 85 - ], - "my_vote": [ - 4830 - ], - "name": [ - 85 - ], - "origin_source": [ - 1699 - ], - "origin_x": [ - 2093 - ], - "origin_y": [ - 2093 - ], - "origin_z": [ - 2093 - ], - "practice_attempts": [ - 41 - ], - "practice_players": [ - 41 - ], - "practice_successes": [ - 41 - ], - "preview_duration_ms": [ - 41 - ], - "preview_file": [ - 85 - ], - "preview_rendered_at": [ - 5243 - ], - "preview_thumbnail": [ - 85 - ], - "preview_thumbnail_url": [ - 85 - ], - "preview_url": [ - 85 - ], - "progress": [ - 6211, - { - "distinct_on": [ - 6242, - "[utility_lineup_progress_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6240, - "[utility_lineup_progress_order_by!]" - ], - "where": [ - 6230 - ] - } - ], - "progress_aggregate": [ - 6212, - { - "distinct_on": [ - 6242, - "[utility_lineup_progress_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6240, - "[utility_lineup_progress_order_by!]" - ], - "where": [ - 6230 - ] - } - ], - "public_requested_at": [ - 5243 - ], - "public_review_note": [ - 85 - ], - "public_reviewed_at": [ - 5243 - ], - "public_reviewed_by": [ - 312 - ], - "renders": [ - 6270, - { - "distinct_on": [ - 6298, - "[utility_lineup_renders_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6295, - "[utility_lineup_renders_order_by!]" - ], - "where": [ - 6282 - ] - } - ], - "renders_aggregate": [ - 6271, - { - "distinct_on": [ - 6298, - "[utility_lineup_renders_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6295, - "[utility_lineup_renders_order_by!]" - ], - "where": [ - 6282 - ] - } - ], - "repairs": [ - 6320, - { - "distinct_on": [ - 6351, - "[utility_lineup_repairs_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6349, - "[utility_lineup_repairs_order_by!]" - ], - "where": [ - 6339 - ] - } - ], - "repairs_aggregate": [ - 6321, - { - "distinct_on": [ - 6351, - "[utility_lineup_repairs_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6349, - "[utility_lineup_repairs_order_by!]" - ], - "where": [ - 6339 - ] - } - ], - "side": [ - 1453 - ], - "source_grenade_id": [ - 41 - ], - "source_match": [ - 3432 - ], - "source_match_id": [ - 6672 - ], - "source_match_map": [ - 3248 - ], - "source_match_map_id": [ - 6672 - ], - "source_url": [ - 85 - ], - "tags": [ - 85 - ], - "team": [ - 5194 - ], - "team_id": [ - 6672 - ], - "technique": [ - 1719 - ], - "throw_strength": [ - 1739 - ], - "trajectory_file": [ - 85 - ], - "trajectory_preview": [ - 2439, - { - "path": [ - 85 - ] - } - ], - "trajectory_size": [ - 41 - ], - "updated_at": [ - 5243 - ], - "upvotes": [ - 41 - ], - "utility_type": [ - 1759 - ], - "verified_at": [ - 5243 - ], - "view_pitch": [ - 2093 - ], - "view_pitch_delta": [ - 2093 - ], - "view_yaw": [ - 2093 - ], - "view_yaw_delta": [ - 2093 - ], - "visibility": [ - 1779 - ], - "votes": [ - 6379, - { - "distinct_on": [ - 6400, - "[utility_lineup_votes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6398, - "[utility_lineup_votes_order_by!]" - ], - "where": [ - 6388 - ] - } - ], - "votes_aggregate": [ - 6380, - { - "distinct_on": [ - 6400, - "[utility_lineup_votes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6398, - "[utility_lineup_votes_order_by!]" - ], - "where": [ - 6388 - ] - } - ], - "workshop_map_id": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_aggregate": { - "aggregate": [ - 6436 - ], - "nodes": [ - 6420 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_aggregate_bool_exp": { - "avg": [ - 6423 - ], - "bool_and": [ - 6424 - ], - "bool_or": [ - 6425 - ], - "corr": [ - 6426 - ], - "count": [ - 6428 - ], - "covar_samp": [ - 6429 - ], - "max": [ - 6431 - ], - "min": [ - 6432 - ], - "stddev_samp": [ - 6433 - ], - "sum": [ - 6434 - ], - "var_samp": [ - 6435 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_aggregate_bool_exp_avg": { - "arguments": [ - 6460 - ], - "distinct": [ - 6 - ], - "filter": [ - 6442 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_aggregate_bool_exp_bool_and": { - "arguments": [ - 6461 - ], - "distinct": [ - 6 - ], - "filter": [ - 6442 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_aggregate_bool_exp_bool_or": { - "arguments": [ - 6462 - ], - "distinct": [ - 6 - ], - "filter": [ - 6442 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_aggregate_bool_exp_corr": { - "arguments": [ - 6427 - ], - "distinct": [ - 6 - ], - "filter": [ - 6442 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_aggregate_bool_exp_corr_arguments": { - "X": [ - 6463 - ], - "Y": [ - 6463 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_aggregate_bool_exp_count": { - "arguments": [ - 6459 - ], - "distinct": [ - 6 - ], - "filter": [ - 6442 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_aggregate_bool_exp_covar_samp": { - "arguments": [ - 6430 - ], - "distinct": [ - 6 - ], - "filter": [ - 6442 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_aggregate_bool_exp_covar_samp_arguments": { - "X": [ - 6464 - ], - "Y": [ - 6464 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_aggregate_bool_exp_max": { - "arguments": [ - 6465 - ], - "distinct": [ - 6 - ], - "filter": [ - 6442 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_aggregate_bool_exp_min": { - "arguments": [ - 6466 - ], - "distinct": [ - 6 - ], - "filter": [ - 6442 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_aggregate_bool_exp_stddev_samp": { - "arguments": [ - 6467 - ], - "distinct": [ - 6 - ], - "filter": [ - 6442 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_aggregate_bool_exp_sum": { - "arguments": [ - 6468 - ], - "distinct": [ - 6 - ], - "filter": [ - 6442 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_aggregate_bool_exp_var_samp": { - "arguments": [ - 6469 - ], - "distinct": [ - 6 - ], - "filter": [ - 6442 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_aggregate_fields": { - "avg": [ - 6440 - ], - "count": [ - 41, - { - "columns": [ - 6459, - "[utility_lineups_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 6449 - ], - "min": [ - 6451 - ], - "stddev": [ - 6471 - ], - "stddev_pop": [ - 6473 - ], - "stddev_samp": [ - 6475 - ], - "sum": [ - 6479 - ], - "var_pop": [ - 6483 - ], - "var_samp": [ - 6485 - ], - "variance": [ - 6487 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_aggregate_order_by": { - "avg": [ - 6441 - ], - "count": [ - 3648 - ], - "max": [ - 6450 - ], - "min": [ - 6452 - ], - "stddev": [ - 6472 - ], - "stddev_pop": [ - 6474 - ], - "stddev_samp": [ - 6476 - ], - "sum": [ - 6480 - ], - "var_pop": [ - 6484 - ], - "var_samp": [ - 6486 - ], - "variance": [ - 6488 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_append_input": { - "trajectory_preview": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_arr_rel_insert_input": { - "data": [ - 6448 - ], - "on_conflict": [ - 6455 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_avg_fields": { - "aim_tolerance": [ - 32 - ], - "author_steam_id": [ - 32 - ], - "downvotes": [ - 32 - ], - "eye_z": [ - 32 - ], - "favorites": [ - 32 - ], - "flight_time_ms": [ - 32 - ], - "initial_pos_x": [ - 32 - ], - "initial_pos_y": [ - 32 - ], - "initial_pos_z": [ - 32 - ], - "initial_vel_x": [ - 32 - ], - "initial_vel_y": [ - 32 - ], - "initial_vel_z": [ - 32 - ], - "land_x": [ - 32 - ], - "land_y": [ - 32 - ], - "land_z": [ - 32 - ], - "my_vote": [ - 4830 - ], - "origin_x": [ - 32 - ], - "origin_y": [ - 32 - ], - "origin_z": [ - 32 - ], - "practice_attempts": [ - 32 - ], - "practice_players": [ - 32 - ], - "practice_successes": [ - 32 - ], - "preview_duration_ms": [ - 32 - ], - "public_reviewed_by": [ - 32 - ], - "source_grenade_id": [ - 32 - ], - "trajectory_size": [ - 32 - ], - "upvotes": [ - 32 - ], - "view_pitch": [ - 32 - ], - "view_pitch_delta": [ - 32 - ], - "view_yaw": [ - 32 - ], - "view_yaw_delta": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_avg_order_by": { - "aim_tolerance": [ - 3648 - ], - "author_steam_id": [ - 3648 - ], - "downvotes": [ - 3648 - ], - "eye_z": [ - 3648 - ], - "favorites": [ - 3648 - ], - "flight_time_ms": [ - 3648 - ], - "initial_pos_x": [ - 3648 - ], - "initial_pos_y": [ - 3648 - ], - "initial_pos_z": [ - 3648 - ], - "initial_vel_x": [ - 3648 - ], - "initial_vel_y": [ - 3648 - ], - "initial_vel_z": [ - 3648 - ], - "land_x": [ - 3648 - ], - "land_y": [ - 3648 - ], - "land_z": [ - 3648 - ], - "origin_x": [ - 3648 - ], - "origin_y": [ - 3648 - ], - "origin_z": [ - 3648 - ], - "practice_attempts": [ - 3648 - ], - "practice_players": [ - 3648 - ], - "practice_successes": [ - 3648 - ], - "preview_duration_ms": [ - 3648 - ], - "public_reviewed_by": [ - 3648 - ], - "source_grenade_id": [ - 3648 - ], - "trajectory_size": [ - 3648 - ], - "upvotes": [ - 3648 - ], - "view_pitch": [ - 3648 - ], - "view_pitch_delta": [ - 3648 - ], - "view_yaw": [ - 3648 - ], - "view_yaw_delta": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_bool_exp": { - "_and": [ - 6442 - ], - "_not": [ - 6442 - ], - "_or": [ - 6442 - ], - "aim_tolerance": [ - 2094 - ], - "archived_at": [ - 5244 - ], - "author": [ - 4610 - ], - "author_steam_id": [ - 314 - ], - "can_edit": [ - 7 - ], - "can_view": [ - 7 - ], - "collection_items": [ - 5969 - ], - "collection_items_aggregate": [ - 5962 - ], - "confidence": [ - 87 - ], - "created_at": [ - 5244 - ], - "description": [ - 87 - ], - "difficulty": [ - 87 - ], - "downvotes": [ - 42 - ], - "external_id": [ - 87 - ], - "eye_z": [ - 2094 - ], - "favorited_by": [ - 6179 - ], - "favorited_by_aggregate": [ - 6172 - ], - "favorites": [ - 42 - ], - "flight_time_ms": [ - 42 - ], - "forked_from": [ - 6442 - ], - "forked_from_utility_lineup_id": [ - 6674 - ], - "id": [ - 6674 - ], - "initial_pos_x": [ - 2094 - ], - "initial_pos_y": [ - 2094 - ], - "initial_pos_z": [ - 2094 - ], - "initial_vel_x": [ - 2094 - ], - "initial_vel_y": [ - 2094 - ], - "initial_vel_z": [ - 2094 - ], - "is_favorited": [ - 7 - ], - "jump_throw_bind": [ - 7 - ], - "land_x": [ - 2094 - ], - "land_y": [ - 2094 - ], - "land_z": [ - 2094 - ], - "lineup_bucket": [ - 87 - ], - "map_name": [ - 87 - ], - "my_vote": [ - 4831 - ], - "name": [ - 87 - ], - "origin_source": [ - 1700 - ], - "origin_x": [ - 2094 - ], - "origin_y": [ - 2094 - ], - "origin_z": [ - 2094 - ], - "practice_attempts": [ - 42 - ], - "practice_players": [ - 42 - ], - "practice_successes": [ - 42 - ], - "preview_duration_ms": [ - 42 - ], - "preview_file": [ - 87 - ], - "preview_rendered_at": [ - 5244 - ], - "preview_thumbnail": [ - 87 - ], - "preview_thumbnail_url": [ - 87 - ], - "preview_url": [ - 87 - ], - "progress": [ - 6230 - ], - "progress_aggregate": [ - 6213 - ], - "public_requested_at": [ - 5244 - ], - "public_review_note": [ - 87 - ], - "public_reviewed_at": [ - 5244 - ], - "public_reviewed_by": [ - 314 - ], - "renders": [ - 6282 - ], - "renders_aggregate": [ - 6272 - ], - "repairs": [ - 6339 - ], - "repairs_aggregate": [ - 6322 - ], - "side": [ - 1454 - ], - "source_grenade_id": [ - 42 - ], - "source_match": [ - 3443 - ], - "source_match_id": [ - 6674 - ], - "source_match_map": [ - 3257 - ], - "source_match_map_id": [ - 6674 - ], - "source_url": [ - 87 - ], - "tags": [ - 86 - ], - "team": [ - 5205 - ], - "team_id": [ - 6674 - ], - "technique": [ - 1720 - ], - "throw_strength": [ - 1740 - ], - "trajectory_file": [ - 87 - ], - "trajectory_preview": [ - 2441 - ], - "trajectory_size": [ - 42 - ], - "updated_at": [ - 5244 - ], - "upvotes": [ - 42 - ], - "utility_type": [ - 1760 - ], - "verified_at": [ - 5244 - ], - "view_pitch": [ - 2094 - ], - "view_pitch_delta": [ - 2094 - ], - "view_yaw": [ - 2094 - ], - "view_yaw_delta": [ - 2094 - ], - "visibility": [ - 1780 - ], - "votes": [ - 6388 - ], - "votes_aggregate": [ - 6381 - ], - "workshop_map_id": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_constraint": {}, - "utility_lineups_delete_at_path_input": { - "trajectory_preview": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_delete_elem_input": { - "trajectory_preview": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_delete_key_input": { - "trajectory_preview": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_inc_input": { - "aim_tolerance": [ - 2093 - ], - "author_steam_id": [ - 312 - ], - "downvotes": [ - 41 - ], - "eye_z": [ - 2093 - ], - "favorites": [ - 41 - ], - "flight_time_ms": [ - 41 - ], - "initial_pos_x": [ - 2093 - ], - "initial_pos_y": [ - 2093 - ], - "initial_pos_z": [ - 2093 - ], - "initial_vel_x": [ - 2093 - ], - "initial_vel_y": [ - 2093 - ], - "initial_vel_z": [ - 2093 - ], - "land_x": [ - 2093 - ], - "land_y": [ - 2093 - ], - "land_z": [ - 2093 - ], - "origin_x": [ - 2093 - ], - "origin_y": [ - 2093 - ], - "origin_z": [ - 2093 - ], - "practice_attempts": [ - 41 - ], - "practice_players": [ - 41 - ], - "practice_successes": [ - 41 - ], - "preview_duration_ms": [ - 41 - ], - "public_reviewed_by": [ - 312 - ], - "source_grenade_id": [ - 41 - ], - "trajectory_size": [ - 41 - ], - "upvotes": [ - 41 - ], - "view_pitch": [ - 2093 - ], - "view_pitch_delta": [ - 2093 - ], - "view_yaw": [ - 2093 - ], - "view_yaw_delta": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_insert_input": { - "aim_tolerance": [ - 2093 - ], - "archived_at": [ - 5243 - ], - "author": [ - 4617 - ], - "author_steam_id": [ - 312 - ], - "collection_items": [ - 5966 - ], - "confidence": [ - 85 - ], - "created_at": [ - 5243 - ], - "description": [ - 85 - ], - "downvotes": [ - 41 - ], - "external_id": [ - 85 - ], - "eye_z": [ - 2093 - ], - "favorited_by": [ - 6176 - ], - "favorites": [ - 41 - ], - "flight_time_ms": [ - 41 - ], - "forked_from": [ - 6454 - ], - "forked_from_utility_lineup_id": [ - 6672 - ], - "id": [ - 6672 - ], - "initial_pos_x": [ - 2093 - ], - "initial_pos_y": [ - 2093 - ], - "initial_pos_z": [ - 2093 - ], - "initial_vel_x": [ - 2093 - ], - "initial_vel_y": [ - 2093 - ], - "initial_vel_z": [ - 2093 - ], - "jump_throw_bind": [ - 6 - ], - "land_x": [ - 2093 - ], - "land_y": [ - 2093 - ], - "land_z": [ - 2093 - ], - "map_name": [ - 85 - ], - "name": [ - 85 - ], - "origin_source": [ - 1699 - ], - "origin_x": [ - 2093 - ], - "origin_y": [ - 2093 - ], - "origin_z": [ - 2093 - ], - "practice_attempts": [ - 41 - ], - "practice_players": [ - 41 - ], - "practice_successes": [ - 41 - ], - "preview_duration_ms": [ - 41 - ], - "preview_file": [ - 85 - ], - "preview_rendered_at": [ - 5243 - ], - "preview_thumbnail": [ - 85 - ], - "progress": [ - 6227 - ], - "public_requested_at": [ - 5243 - ], - "public_review_note": [ - 85 - ], - "public_reviewed_at": [ - 5243 - ], - "public_reviewed_by": [ - 312 - ], - "renders": [ - 6279 - ], - "repairs": [ - 6336 - ], - "side": [ - 1453 - ], - "source_grenade_id": [ - 41 - ], - "source_match": [ - 3452 - ], - "source_match_id": [ - 6672 - ], - "source_match_map": [ - 3266 - ], - "source_match_map_id": [ - 6672 - ], - "source_url": [ - 85 - ], - "tags": [ - 85 - ], - "team": [ - 5214 - ], - "team_id": [ - 6672 - ], - "technique": [ - 1719 - ], - "throw_strength": [ - 1739 - ], - "trajectory_file": [ - 85 - ], - "trajectory_preview": [ - 2439 - ], - "trajectory_size": [ - 41 - ], - "updated_at": [ - 5243 - ], - "upvotes": [ - 41 - ], - "utility_type": [ - 1759 - ], - "verified_at": [ - 5243 - ], - "view_pitch": [ - 2093 - ], - "view_pitch_delta": [ - 2093 - ], - "view_yaw": [ - 2093 - ], - "view_yaw_delta": [ - 2093 - ], - "visibility": [ - 1779 - ], - "votes": [ - 6385 - ], - "workshop_map_id": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_max_fields": { - "aim_tolerance": [ - 2093 - ], - "archived_at": [ - 5243 - ], - "author_steam_id": [ - 312 - ], - "confidence": [ - 85 - ], - "created_at": [ - 5243 - ], - "description": [ - 85 - ], - "difficulty": [ - 85 - ], - "downvotes": [ - 41 - ], - "external_id": [ - 85 - ], - "eye_z": [ - 2093 - ], - "favorites": [ - 41 - ], - "flight_time_ms": [ - 41 - ], - "forked_from_utility_lineup_id": [ - 6672 - ], - "id": [ - 6672 - ], - "initial_pos_x": [ - 2093 - ], - "initial_pos_y": [ - 2093 - ], - "initial_pos_z": [ - 2093 - ], - "initial_vel_x": [ - 2093 - ], - "initial_vel_y": [ - 2093 - ], - "initial_vel_z": [ - 2093 - ], - "land_x": [ - 2093 - ], - "land_y": [ - 2093 - ], - "land_z": [ - 2093 - ], - "lineup_bucket": [ - 85 - ], - "map_name": [ - 85 - ], - "my_vote": [ - 4830 - ], - "name": [ - 85 - ], - "origin_x": [ - 2093 - ], - "origin_y": [ - 2093 - ], - "origin_z": [ - 2093 - ], - "practice_attempts": [ - 41 - ], - "practice_players": [ - 41 - ], - "practice_successes": [ - 41 - ], - "preview_duration_ms": [ - 41 - ], - "preview_file": [ - 85 - ], - "preview_rendered_at": [ - 5243 - ], - "preview_thumbnail": [ - 85 - ], - "preview_thumbnail_url": [ - 85 - ], - "preview_url": [ - 85 - ], - "public_requested_at": [ - 5243 - ], - "public_review_note": [ - 85 - ], - "public_reviewed_at": [ - 5243 - ], - "public_reviewed_by": [ - 312 - ], - "source_grenade_id": [ - 41 - ], - "source_match_id": [ - 6672 - ], - "source_match_map_id": [ - 6672 - ], - "source_url": [ - 85 - ], - "tags": [ - 85 - ], - "team_id": [ - 6672 - ], - "trajectory_file": [ - 85 - ], - "trajectory_size": [ - 41 - ], - "updated_at": [ - 5243 - ], - "upvotes": [ - 41 - ], - "verified_at": [ - 5243 - ], - "view_pitch": [ - 2093 - ], - "view_pitch_delta": [ - 2093 - ], - "view_yaw": [ - 2093 - ], - "view_yaw_delta": [ - 2093 - ], - "workshop_map_id": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_max_order_by": { - "aim_tolerance": [ - 3648 - ], - "archived_at": [ - 3648 - ], - "author_steam_id": [ - 3648 - ], - "confidence": [ - 3648 - ], - "created_at": [ - 3648 - ], - "description": [ - 3648 - ], - "downvotes": [ - 3648 - ], - "external_id": [ - 3648 - ], - "eye_z": [ - 3648 - ], - "favorites": [ - 3648 - ], - "flight_time_ms": [ - 3648 - ], - "forked_from_utility_lineup_id": [ - 3648 - ], - "id": [ - 3648 - ], - "initial_pos_x": [ - 3648 - ], - "initial_pos_y": [ - 3648 - ], - "initial_pos_z": [ - 3648 - ], - "initial_vel_x": [ - 3648 - ], - "initial_vel_y": [ - 3648 - ], - "initial_vel_z": [ - 3648 - ], - "land_x": [ - 3648 - ], - "land_y": [ - 3648 - ], - "land_z": [ - 3648 - ], - "lineup_bucket": [ - 3648 - ], - "map_name": [ - 3648 - ], - "name": [ - 3648 - ], - "origin_x": [ - 3648 - ], - "origin_y": [ - 3648 - ], - "origin_z": [ - 3648 - ], - "practice_attempts": [ - 3648 - ], - "practice_players": [ - 3648 - ], - "practice_successes": [ - 3648 - ], - "preview_duration_ms": [ - 3648 - ], - "preview_file": [ - 3648 - ], - "preview_rendered_at": [ - 3648 - ], - "preview_thumbnail": [ - 3648 - ], - "public_requested_at": [ - 3648 - ], - "public_review_note": [ - 3648 - ], - "public_reviewed_at": [ - 3648 - ], - "public_reviewed_by": [ - 3648 - ], - "source_grenade_id": [ - 3648 - ], - "source_match_id": [ - 3648 - ], - "source_match_map_id": [ - 3648 - ], - "source_url": [ - 3648 - ], - "tags": [ - 3648 - ], - "team_id": [ - 3648 - ], - "trajectory_file": [ - 3648 - ], - "trajectory_size": [ - 3648 - ], - "updated_at": [ - 3648 - ], - "upvotes": [ - 3648 - ], - "verified_at": [ - 3648 - ], - "view_pitch": [ - 3648 - ], - "view_pitch_delta": [ - 3648 - ], - "view_yaw": [ - 3648 - ], - "view_yaw_delta": [ - 3648 - ], - "workshop_map_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_min_fields": { - "aim_tolerance": [ - 2093 - ], - "archived_at": [ - 5243 - ], - "author_steam_id": [ - 312 - ], - "confidence": [ - 85 - ], - "created_at": [ - 5243 - ], - "description": [ - 85 - ], - "difficulty": [ - 85 - ], - "downvotes": [ - 41 - ], - "external_id": [ - 85 - ], - "eye_z": [ - 2093 - ], - "favorites": [ - 41 - ], - "flight_time_ms": [ - 41 - ], - "forked_from_utility_lineup_id": [ - 6672 - ], - "id": [ - 6672 - ], - "initial_pos_x": [ - 2093 - ], - "initial_pos_y": [ - 2093 - ], - "initial_pos_z": [ - 2093 - ], - "initial_vel_x": [ - 2093 - ], - "initial_vel_y": [ - 2093 - ], - "initial_vel_z": [ - 2093 - ], - "land_x": [ - 2093 - ], - "land_y": [ - 2093 - ], - "land_z": [ - 2093 - ], - "lineup_bucket": [ - 85 - ], - "map_name": [ - 85 - ], - "my_vote": [ - 4830 - ], - "name": [ - 85 - ], - "origin_x": [ - 2093 - ], - "origin_y": [ - 2093 - ], - "origin_z": [ - 2093 - ], - "practice_attempts": [ - 41 - ], - "practice_players": [ - 41 - ], - "practice_successes": [ - 41 - ], - "preview_duration_ms": [ - 41 - ], - "preview_file": [ - 85 - ], - "preview_rendered_at": [ - 5243 - ], - "preview_thumbnail": [ - 85 - ], - "preview_thumbnail_url": [ - 85 - ], - "preview_url": [ - 85 - ], - "public_requested_at": [ - 5243 - ], - "public_review_note": [ - 85 - ], - "public_reviewed_at": [ - 5243 - ], - "public_reviewed_by": [ - 312 - ], - "source_grenade_id": [ - 41 - ], - "source_match_id": [ - 6672 - ], - "source_match_map_id": [ - 6672 - ], - "source_url": [ - 85 - ], - "tags": [ - 85 - ], - "team_id": [ - 6672 - ], - "trajectory_file": [ - 85 - ], - "trajectory_size": [ - 41 - ], - "updated_at": [ - 5243 - ], - "upvotes": [ - 41 - ], - "verified_at": [ - 5243 - ], - "view_pitch": [ - 2093 - ], - "view_pitch_delta": [ - 2093 - ], - "view_yaw": [ - 2093 - ], - "view_yaw_delta": [ - 2093 - ], - "workshop_map_id": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_min_order_by": { - "aim_tolerance": [ - 3648 - ], - "archived_at": [ - 3648 - ], - "author_steam_id": [ - 3648 - ], - "confidence": [ - 3648 - ], - "created_at": [ - 3648 - ], - "description": [ - 3648 - ], - "downvotes": [ - 3648 - ], - "external_id": [ - 3648 - ], - "eye_z": [ - 3648 - ], - "favorites": [ - 3648 - ], - "flight_time_ms": [ - 3648 - ], - "forked_from_utility_lineup_id": [ - 3648 - ], - "id": [ - 3648 - ], - "initial_pos_x": [ - 3648 - ], - "initial_pos_y": [ - 3648 - ], - "initial_pos_z": [ - 3648 - ], - "initial_vel_x": [ - 3648 - ], - "initial_vel_y": [ - 3648 - ], - "initial_vel_z": [ - 3648 - ], - "land_x": [ - 3648 - ], - "land_y": [ - 3648 - ], - "land_z": [ - 3648 - ], - "lineup_bucket": [ - 3648 - ], - "map_name": [ - 3648 - ], - "name": [ - 3648 - ], - "origin_x": [ - 3648 - ], - "origin_y": [ - 3648 - ], - "origin_z": [ - 3648 - ], - "practice_attempts": [ - 3648 - ], - "practice_players": [ - 3648 - ], - "practice_successes": [ - 3648 - ], - "preview_duration_ms": [ - 3648 - ], - "preview_file": [ - 3648 - ], - "preview_rendered_at": [ - 3648 - ], - "preview_thumbnail": [ - 3648 - ], - "public_requested_at": [ - 3648 - ], - "public_review_note": [ - 3648 - ], - "public_reviewed_at": [ - 3648 - ], - "public_reviewed_by": [ - 3648 - ], - "source_grenade_id": [ - 3648 - ], - "source_match_id": [ - 3648 - ], - "source_match_map_id": [ - 3648 - ], - "source_url": [ - 3648 - ], - "tags": [ - 3648 - ], - "team_id": [ - 3648 - ], - "trajectory_file": [ - 3648 - ], - "trajectory_size": [ - 3648 - ], - "updated_at": [ - 3648 - ], - "upvotes": [ - 3648 - ], - "verified_at": [ - 3648 - ], - "view_pitch": [ - 3648 - ], - "view_pitch_delta": [ - 3648 - ], - "view_yaw": [ - 3648 - ], - "view_yaw_delta": [ - 3648 - ], - "workshop_map_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 6420 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_obj_rel_insert_input": { - "data": [ - 6448 - ], - "on_conflict": [ - 6455 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_on_conflict": { - "constraint": [ - 6443 - ], - "update_columns": [ - 6481 - ], - "where": [ - 6442 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_order_by": { - "aim_tolerance": [ - 3648 - ], - "archived_at": [ - 3648 - ], - "author": [ - 4619 - ], - "author_steam_id": [ - 3648 - ], - "can_edit": [ - 3648 - ], - "can_view": [ - 3648 - ], - "collection_items_aggregate": [ - 5965 - ], - "confidence": [ - 3648 - ], - "created_at": [ - 3648 - ], - "description": [ - 3648 - ], - "difficulty": [ - 3648 - ], - "downvotes": [ - 3648 - ], - "external_id": [ - 3648 - ], - "eye_z": [ - 3648 - ], - "favorited_by_aggregate": [ - 6175 - ], - "favorites": [ - 3648 - ], - "flight_time_ms": [ - 3648 - ], - "forked_from": [ - 6456 - ], - "forked_from_utility_lineup_id": [ - 3648 - ], - "id": [ - 3648 - ], - "initial_pos_x": [ - 3648 - ], - "initial_pos_y": [ - 3648 - ], - "initial_pos_z": [ - 3648 - ], - "initial_vel_x": [ - 3648 - ], - "initial_vel_y": [ - 3648 - ], - "initial_vel_z": [ - 3648 - ], - "is_favorited": [ - 3648 - ], - "jump_throw_bind": [ - 3648 - ], - "land_x": [ - 3648 - ], - "land_y": [ - 3648 - ], - "land_z": [ - 3648 - ], - "lineup_bucket": [ - 3648 - ], - "map_name": [ - 3648 - ], - "my_vote": [ - 3648 - ], - "name": [ - 3648 - ], - "origin_source": [ - 3648 - ], - "origin_x": [ - 3648 - ], - "origin_y": [ - 3648 - ], - "origin_z": [ - 3648 - ], - "practice_attempts": [ - 3648 - ], - "practice_players": [ - 3648 - ], - "practice_successes": [ - 3648 - ], - "preview_duration_ms": [ - 3648 - ], - "preview_file": [ - 3648 - ], - "preview_rendered_at": [ - 3648 - ], - "preview_thumbnail": [ - 3648 - ], - "preview_thumbnail_url": [ - 3648 - ], - "preview_url": [ - 3648 - ], - "progress_aggregate": [ - 6226 - ], - "public_requested_at": [ - 3648 - ], - "public_review_note": [ - 3648 - ], - "public_reviewed_at": [ - 3648 - ], - "public_reviewed_by": [ - 3648 - ], - "renders_aggregate": [ - 6277 - ], - "repairs_aggregate": [ - 6335 - ], - "side": [ - 3648 - ], - "source_grenade_id": [ - 3648 - ], - "source_match": [ - 3454 - ], - "source_match_id": [ - 3648 - ], - "source_match_map": [ - 3268 - ], - "source_match_map_id": [ - 3648 - ], - "source_url": [ - 3648 - ], - "tags": [ - 3648 - ], - "team": [ - 5216 - ], - "team_id": [ - 3648 - ], - "technique": [ - 3648 - ], - "throw_strength": [ - 3648 - ], - "trajectory_file": [ - 3648 - ], - "trajectory_preview": [ - 3648 - ], - "trajectory_size": [ - 3648 - ], - "updated_at": [ - 3648 - ], - "upvotes": [ - 3648 - ], - "utility_type": [ - 3648 - ], - "verified_at": [ - 3648 - ], - "view_pitch": [ - 3648 - ], - "view_pitch_delta": [ - 3648 - ], - "view_yaw": [ - 3648 - ], - "view_yaw_delta": [ - 3648 - ], - "visibility": [ - 3648 - ], - "votes_aggregate": [ - 6384 - ], - "workshop_map_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_prepend_input": { - "trajectory_preview": [ - 2439 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_select_column": {}, - "utility_lineups_select_column_utility_lineups_aggregate_bool_exp_avg_arguments_columns": {}, - "utility_lineups_select_column_utility_lineups_aggregate_bool_exp_bool_and_arguments_columns": {}, - "utility_lineups_select_column_utility_lineups_aggregate_bool_exp_bool_or_arguments_columns": {}, - "utility_lineups_select_column_utility_lineups_aggregate_bool_exp_corr_arguments_columns": {}, - "utility_lineups_select_column_utility_lineups_aggregate_bool_exp_covar_samp_arguments_columns": {}, - "utility_lineups_select_column_utility_lineups_aggregate_bool_exp_max_arguments_columns": {}, - "utility_lineups_select_column_utility_lineups_aggregate_bool_exp_min_arguments_columns": {}, - "utility_lineups_select_column_utility_lineups_aggregate_bool_exp_stddev_samp_arguments_columns": {}, - "utility_lineups_select_column_utility_lineups_aggregate_bool_exp_sum_arguments_columns": {}, - "utility_lineups_select_column_utility_lineups_aggregate_bool_exp_var_samp_arguments_columns": {}, - "utility_lineups_set_input": { - "aim_tolerance": [ - 2093 - ], - "archived_at": [ - 5243 - ], - "author_steam_id": [ - 312 - ], - "confidence": [ - 85 - ], - "created_at": [ - 5243 - ], - "description": [ - 85 - ], - "downvotes": [ - 41 - ], - "external_id": [ - 85 - ], - "eye_z": [ - 2093 - ], - "favorites": [ - 41 - ], - "flight_time_ms": [ - 41 - ], - "forked_from_utility_lineup_id": [ - 6672 - ], - "id": [ - 6672 - ], - "initial_pos_x": [ - 2093 - ], - "initial_pos_y": [ - 2093 - ], - "initial_pos_z": [ - 2093 - ], - "initial_vel_x": [ - 2093 - ], - "initial_vel_y": [ - 2093 - ], - "initial_vel_z": [ - 2093 - ], - "jump_throw_bind": [ - 6 - ], - "land_x": [ - 2093 - ], - "land_y": [ - 2093 - ], - "land_z": [ - 2093 - ], - "map_name": [ - 85 - ], - "name": [ - 85 - ], - "origin_source": [ - 1699 - ], - "origin_x": [ - 2093 - ], - "origin_y": [ - 2093 - ], - "origin_z": [ - 2093 - ], - "practice_attempts": [ - 41 - ], - "practice_players": [ - 41 - ], - "practice_successes": [ - 41 - ], - "preview_duration_ms": [ - 41 - ], - "preview_file": [ - 85 - ], - "preview_rendered_at": [ - 5243 - ], - "preview_thumbnail": [ - 85 - ], - "public_requested_at": [ - 5243 - ], - "public_review_note": [ - 85 - ], - "public_reviewed_at": [ - 5243 - ], - "public_reviewed_by": [ - 312 - ], - "side": [ - 1453 - ], - "source_grenade_id": [ - 41 - ], - "source_match_id": [ - 6672 - ], - "source_match_map_id": [ - 6672 - ], - "source_url": [ - 85 - ], - "tags": [ - 85 - ], - "team_id": [ - 6672 - ], - "technique": [ - 1719 - ], - "throw_strength": [ - 1739 - ], - "trajectory_file": [ - 85 - ], - "trajectory_preview": [ - 2439 - ], - "trajectory_size": [ - 41 - ], - "updated_at": [ - 5243 - ], - "upvotes": [ - 41 - ], - "utility_type": [ - 1759 - ], - "verified_at": [ - 5243 - ], - "view_pitch": [ - 2093 - ], - "view_pitch_delta": [ - 2093 - ], - "view_yaw": [ - 2093 - ], - "view_yaw_delta": [ - 2093 - ], - "visibility": [ - 1779 - ], - "workshop_map_id": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_stddev_fields": { - "aim_tolerance": [ - 32 - ], - "author_steam_id": [ - 32 - ], - "downvotes": [ - 32 - ], - "eye_z": [ - 32 - ], - "favorites": [ - 32 - ], - "flight_time_ms": [ - 32 - ], - "initial_pos_x": [ - 32 - ], - "initial_pos_y": [ - 32 - ], - "initial_pos_z": [ - 32 - ], - "initial_vel_x": [ - 32 - ], - "initial_vel_y": [ - 32 - ], - "initial_vel_z": [ - 32 - ], - "land_x": [ - 32 - ], - "land_y": [ - 32 - ], - "land_z": [ - 32 - ], - "my_vote": [ - 4830 - ], - "origin_x": [ - 32 - ], - "origin_y": [ - 32 - ], - "origin_z": [ - 32 - ], - "practice_attempts": [ - 32 - ], - "practice_players": [ - 32 - ], - "practice_successes": [ - 32 - ], - "preview_duration_ms": [ - 32 - ], - "public_reviewed_by": [ - 32 - ], - "source_grenade_id": [ - 32 - ], - "trajectory_size": [ - 32 - ], - "upvotes": [ - 32 - ], - "view_pitch": [ - 32 - ], - "view_pitch_delta": [ - 32 - ], - "view_yaw": [ - 32 - ], - "view_yaw_delta": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_stddev_order_by": { - "aim_tolerance": [ - 3648 - ], - "author_steam_id": [ - 3648 - ], - "downvotes": [ - 3648 - ], - "eye_z": [ - 3648 - ], - "favorites": [ - 3648 - ], - "flight_time_ms": [ - 3648 - ], - "initial_pos_x": [ - 3648 - ], - "initial_pos_y": [ - 3648 - ], - "initial_pos_z": [ - 3648 - ], - "initial_vel_x": [ - 3648 - ], - "initial_vel_y": [ - 3648 - ], - "initial_vel_z": [ - 3648 - ], - "land_x": [ - 3648 - ], - "land_y": [ - 3648 - ], - "land_z": [ - 3648 - ], - "origin_x": [ - 3648 - ], - "origin_y": [ - 3648 - ], - "origin_z": [ - 3648 - ], - "practice_attempts": [ - 3648 - ], - "practice_players": [ - 3648 - ], - "practice_successes": [ - 3648 - ], - "preview_duration_ms": [ - 3648 - ], - "public_reviewed_by": [ - 3648 - ], - "source_grenade_id": [ - 3648 - ], - "trajectory_size": [ - 3648 - ], - "upvotes": [ - 3648 - ], - "view_pitch": [ - 3648 - ], - "view_pitch_delta": [ - 3648 - ], - "view_yaw": [ - 3648 - ], - "view_yaw_delta": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_stddev_pop_fields": { - "aim_tolerance": [ - 32 - ], - "author_steam_id": [ - 32 - ], - "downvotes": [ - 32 - ], - "eye_z": [ - 32 - ], - "favorites": [ - 32 - ], - "flight_time_ms": [ - 32 - ], - "initial_pos_x": [ - 32 - ], - "initial_pos_y": [ - 32 - ], - "initial_pos_z": [ - 32 - ], - "initial_vel_x": [ - 32 - ], - "initial_vel_y": [ - 32 - ], - "initial_vel_z": [ - 32 - ], - "land_x": [ - 32 - ], - "land_y": [ - 32 - ], - "land_z": [ - 32 - ], - "my_vote": [ - 4830 - ], - "origin_x": [ - 32 - ], - "origin_y": [ - 32 - ], - "origin_z": [ - 32 - ], - "practice_attempts": [ - 32 - ], - "practice_players": [ - 32 - ], - "practice_successes": [ - 32 - ], - "preview_duration_ms": [ - 32 - ], - "public_reviewed_by": [ - 32 - ], - "source_grenade_id": [ - 32 - ], - "trajectory_size": [ - 32 - ], - "upvotes": [ - 32 - ], - "view_pitch": [ - 32 - ], - "view_pitch_delta": [ - 32 - ], - "view_yaw": [ - 32 - ], - "view_yaw_delta": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_stddev_pop_order_by": { - "aim_tolerance": [ - 3648 - ], - "author_steam_id": [ - 3648 - ], - "downvotes": [ - 3648 - ], - "eye_z": [ - 3648 - ], - "favorites": [ - 3648 - ], - "flight_time_ms": [ - 3648 - ], - "initial_pos_x": [ - 3648 - ], - "initial_pos_y": [ - 3648 - ], - "initial_pos_z": [ - 3648 - ], - "initial_vel_x": [ - 3648 - ], - "initial_vel_y": [ - 3648 - ], - "initial_vel_z": [ - 3648 - ], - "land_x": [ - 3648 - ], - "land_y": [ - 3648 - ], - "land_z": [ - 3648 - ], - "origin_x": [ - 3648 - ], - "origin_y": [ - 3648 - ], - "origin_z": [ - 3648 - ], - "practice_attempts": [ - 3648 - ], - "practice_players": [ - 3648 - ], - "practice_successes": [ - 3648 - ], - "preview_duration_ms": [ - 3648 - ], - "public_reviewed_by": [ - 3648 - ], - "source_grenade_id": [ - 3648 - ], - "trajectory_size": [ - 3648 - ], - "upvotes": [ - 3648 - ], - "view_pitch": [ - 3648 - ], - "view_pitch_delta": [ - 3648 - ], - "view_yaw": [ - 3648 - ], - "view_yaw_delta": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_stddev_samp_fields": { - "aim_tolerance": [ - 32 - ], - "author_steam_id": [ - 32 - ], - "downvotes": [ - 32 - ], - "eye_z": [ - 32 - ], - "favorites": [ - 32 - ], - "flight_time_ms": [ - 32 - ], - "initial_pos_x": [ - 32 - ], - "initial_pos_y": [ - 32 - ], - "initial_pos_z": [ - 32 - ], - "initial_vel_x": [ - 32 - ], - "initial_vel_y": [ - 32 - ], - "initial_vel_z": [ - 32 - ], - "land_x": [ - 32 - ], - "land_y": [ - 32 - ], - "land_z": [ - 32 - ], - "my_vote": [ - 4830 - ], - "origin_x": [ - 32 - ], - "origin_y": [ - 32 - ], - "origin_z": [ - 32 - ], - "practice_attempts": [ - 32 - ], - "practice_players": [ - 32 - ], - "practice_successes": [ - 32 - ], - "preview_duration_ms": [ - 32 - ], - "public_reviewed_by": [ - 32 - ], - "source_grenade_id": [ - 32 - ], - "trajectory_size": [ - 32 - ], - "upvotes": [ - 32 - ], - "view_pitch": [ - 32 - ], - "view_pitch_delta": [ - 32 - ], - "view_yaw": [ - 32 - ], - "view_yaw_delta": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_stddev_samp_order_by": { - "aim_tolerance": [ - 3648 - ], - "author_steam_id": [ - 3648 - ], - "downvotes": [ - 3648 - ], - "eye_z": [ - 3648 - ], - "favorites": [ - 3648 - ], - "flight_time_ms": [ - 3648 - ], - "initial_pos_x": [ - 3648 - ], - "initial_pos_y": [ - 3648 - ], - "initial_pos_z": [ - 3648 - ], - "initial_vel_x": [ - 3648 - ], - "initial_vel_y": [ - 3648 - ], - "initial_vel_z": [ - 3648 - ], - "land_x": [ - 3648 - ], - "land_y": [ - 3648 - ], - "land_z": [ - 3648 - ], - "origin_x": [ - 3648 - ], - "origin_y": [ - 3648 - ], - "origin_z": [ - 3648 - ], - "practice_attempts": [ - 3648 - ], - "practice_players": [ - 3648 - ], - "practice_successes": [ - 3648 - ], - "preview_duration_ms": [ - 3648 - ], - "public_reviewed_by": [ - 3648 - ], - "source_grenade_id": [ - 3648 - ], - "trajectory_size": [ - 3648 - ], - "upvotes": [ - 3648 - ], - "view_pitch": [ - 3648 - ], - "view_pitch_delta": [ - 3648 - ], - "view_yaw": [ - 3648 - ], - "view_yaw_delta": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_stream_cursor_input": { - "initial_value": [ - 6478 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_stream_cursor_value_input": { - "aim_tolerance": [ - 2093 - ], - "archived_at": [ - 5243 - ], - "author_steam_id": [ - 312 - ], - "confidence": [ - 85 - ], - "created_at": [ - 5243 - ], - "description": [ - 85 - ], - "downvotes": [ - 41 - ], - "external_id": [ - 85 - ], - "eye_z": [ - 2093 - ], - "favorites": [ - 41 - ], - "flight_time_ms": [ - 41 - ], - "forked_from_utility_lineup_id": [ - 6672 - ], - "id": [ - 6672 - ], - "initial_pos_x": [ - 2093 - ], - "initial_pos_y": [ - 2093 - ], - "initial_pos_z": [ - 2093 - ], - "initial_vel_x": [ - 2093 - ], - "initial_vel_y": [ - 2093 - ], - "initial_vel_z": [ - 2093 - ], - "jump_throw_bind": [ - 6 - ], - "land_x": [ - 2093 - ], - "land_y": [ - 2093 - ], - "land_z": [ - 2093 - ], - "lineup_bucket": [ - 85 - ], - "map_name": [ - 85 - ], - "name": [ - 85 - ], - "origin_source": [ - 1699 - ], - "origin_x": [ - 2093 - ], - "origin_y": [ - 2093 - ], - "origin_z": [ - 2093 - ], - "practice_attempts": [ - 41 - ], - "practice_players": [ - 41 - ], - "practice_successes": [ - 41 - ], - "preview_duration_ms": [ - 41 - ], - "preview_file": [ - 85 - ], - "preview_rendered_at": [ - 5243 - ], - "preview_thumbnail": [ - 85 - ], - "public_requested_at": [ - 5243 - ], - "public_review_note": [ - 85 - ], - "public_reviewed_at": [ - 5243 - ], - "public_reviewed_by": [ - 312 - ], - "side": [ - 1453 - ], - "source_grenade_id": [ - 41 - ], - "source_match_id": [ - 6672 - ], - "source_match_map_id": [ - 6672 - ], - "source_url": [ - 85 - ], - "tags": [ - 85 - ], - "team_id": [ - 6672 - ], - "technique": [ - 1719 - ], - "throw_strength": [ - 1739 - ], - "trajectory_file": [ - 85 - ], - "trajectory_preview": [ - 2439 - ], - "trajectory_size": [ - 41 - ], - "updated_at": [ - 5243 - ], - "upvotes": [ - 41 - ], - "utility_type": [ - 1759 - ], - "verified_at": [ - 5243 - ], - "view_pitch": [ - 2093 - ], - "view_pitch_delta": [ - 2093 - ], - "view_yaw": [ - 2093 - ], - "view_yaw_delta": [ - 2093 - ], - "visibility": [ - 1779 - ], - "workshop_map_id": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_sum_fields": { - "aim_tolerance": [ - 2093 - ], - "author_steam_id": [ - 312 - ], - "downvotes": [ - 41 - ], - "eye_z": [ - 2093 - ], - "favorites": [ - 41 - ], - "flight_time_ms": [ - 41 - ], - "initial_pos_x": [ - 2093 - ], - "initial_pos_y": [ - 2093 - ], - "initial_pos_z": [ - 2093 - ], - "initial_vel_x": [ - 2093 - ], - "initial_vel_y": [ - 2093 - ], - "initial_vel_z": [ - 2093 - ], - "land_x": [ - 2093 - ], - "land_y": [ - 2093 - ], - "land_z": [ - 2093 - ], - "my_vote": [ - 4830 - ], - "origin_x": [ - 2093 - ], - "origin_y": [ - 2093 - ], - "origin_z": [ - 2093 - ], - "practice_attempts": [ - 41 - ], - "practice_players": [ - 41 - ], - "practice_successes": [ - 41 - ], - "preview_duration_ms": [ - 41 - ], - "public_reviewed_by": [ - 312 - ], - "source_grenade_id": [ - 41 - ], - "trajectory_size": [ - 41 - ], - "upvotes": [ - 41 - ], - "view_pitch": [ - 2093 - ], - "view_pitch_delta": [ - 2093 - ], - "view_yaw": [ - 2093 - ], - "view_yaw_delta": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_sum_order_by": { - "aim_tolerance": [ - 3648 - ], - "author_steam_id": [ - 3648 - ], - "downvotes": [ - 3648 - ], - "eye_z": [ - 3648 - ], - "favorites": [ - 3648 - ], - "flight_time_ms": [ - 3648 - ], - "initial_pos_x": [ - 3648 - ], - "initial_pos_y": [ - 3648 - ], - "initial_pos_z": [ - 3648 - ], - "initial_vel_x": [ - 3648 - ], - "initial_vel_y": [ - 3648 - ], - "initial_vel_z": [ - 3648 - ], - "land_x": [ - 3648 - ], - "land_y": [ - 3648 - ], - "land_z": [ - 3648 - ], - "origin_x": [ - 3648 - ], - "origin_y": [ - 3648 - ], - "origin_z": [ - 3648 - ], - "practice_attempts": [ - 3648 - ], - "practice_players": [ - 3648 - ], - "practice_successes": [ - 3648 - ], - "preview_duration_ms": [ - 3648 - ], - "public_reviewed_by": [ - 3648 - ], - "source_grenade_id": [ - 3648 - ], - "trajectory_size": [ - 3648 - ], - "upvotes": [ - 3648 - ], - "view_pitch": [ - 3648 - ], - "view_pitch_delta": [ - 3648 - ], - "view_yaw": [ - 3648 - ], - "view_yaw_delta": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_update_column": {}, - "utility_lineups_updates": { - "_append": [ - 6438 - ], - "_delete_at_path": [ - 6444 - ], - "_delete_elem": [ - 6445 - ], - "_delete_key": [ - 6446 - ], - "_inc": [ - 6447 - ], - "_prepend": [ - 6458 - ], - "_set": [ - 6470 - ], - "where": [ - 6442 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_var_pop_fields": { - "aim_tolerance": [ - 32 - ], - "author_steam_id": [ - 32 - ], - "downvotes": [ - 32 - ], - "eye_z": [ - 32 - ], - "favorites": [ - 32 - ], - "flight_time_ms": [ - 32 - ], - "initial_pos_x": [ - 32 - ], - "initial_pos_y": [ - 32 - ], - "initial_pos_z": [ - 32 - ], - "initial_vel_x": [ - 32 - ], - "initial_vel_y": [ - 32 - ], - "initial_vel_z": [ - 32 - ], - "land_x": [ - 32 - ], - "land_y": [ - 32 - ], - "land_z": [ - 32 - ], - "my_vote": [ - 4830 - ], - "origin_x": [ - 32 - ], - "origin_y": [ - 32 - ], - "origin_z": [ - 32 - ], - "practice_attempts": [ - 32 - ], - "practice_players": [ - 32 - ], - "practice_successes": [ - 32 - ], - "preview_duration_ms": [ - 32 - ], - "public_reviewed_by": [ - 32 - ], - "source_grenade_id": [ - 32 - ], - "trajectory_size": [ - 32 - ], - "upvotes": [ - 32 - ], - "view_pitch": [ - 32 - ], - "view_pitch_delta": [ - 32 - ], - "view_yaw": [ - 32 - ], - "view_yaw_delta": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_var_pop_order_by": { - "aim_tolerance": [ - 3648 - ], - "author_steam_id": [ - 3648 - ], - "downvotes": [ - 3648 - ], - "eye_z": [ - 3648 - ], - "favorites": [ - 3648 - ], - "flight_time_ms": [ - 3648 - ], - "initial_pos_x": [ - 3648 - ], - "initial_pos_y": [ - 3648 - ], - "initial_pos_z": [ - 3648 - ], - "initial_vel_x": [ - 3648 - ], - "initial_vel_y": [ - 3648 - ], - "initial_vel_z": [ - 3648 - ], - "land_x": [ - 3648 - ], - "land_y": [ - 3648 - ], - "land_z": [ - 3648 - ], - "origin_x": [ - 3648 - ], - "origin_y": [ - 3648 - ], - "origin_z": [ - 3648 - ], - "practice_attempts": [ - 3648 - ], - "practice_players": [ - 3648 - ], - "practice_successes": [ - 3648 - ], - "preview_duration_ms": [ - 3648 - ], - "public_reviewed_by": [ - 3648 - ], - "source_grenade_id": [ - 3648 - ], - "trajectory_size": [ - 3648 - ], - "upvotes": [ - 3648 - ], - "view_pitch": [ - 3648 - ], - "view_pitch_delta": [ - 3648 - ], - "view_yaw": [ - 3648 - ], - "view_yaw_delta": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_var_samp_fields": { - "aim_tolerance": [ - 32 - ], - "author_steam_id": [ - 32 - ], - "downvotes": [ - 32 - ], - "eye_z": [ - 32 - ], - "favorites": [ - 32 - ], - "flight_time_ms": [ - 32 - ], - "initial_pos_x": [ - 32 - ], - "initial_pos_y": [ - 32 - ], - "initial_pos_z": [ - 32 - ], - "initial_vel_x": [ - 32 - ], - "initial_vel_y": [ - 32 - ], - "initial_vel_z": [ - 32 - ], - "land_x": [ - 32 - ], - "land_y": [ - 32 - ], - "land_z": [ - 32 - ], - "my_vote": [ - 4830 - ], - "origin_x": [ - 32 - ], - "origin_y": [ - 32 - ], - "origin_z": [ - 32 - ], - "practice_attempts": [ - 32 - ], - "practice_players": [ - 32 - ], - "practice_successes": [ - 32 - ], - "preview_duration_ms": [ - 32 - ], - "public_reviewed_by": [ - 32 - ], - "source_grenade_id": [ - 32 - ], - "trajectory_size": [ - 32 - ], - "upvotes": [ - 32 - ], - "view_pitch": [ - 32 - ], - "view_pitch_delta": [ - 32 - ], - "view_yaw": [ - 32 - ], - "view_yaw_delta": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_var_samp_order_by": { - "aim_tolerance": [ - 3648 - ], - "author_steam_id": [ - 3648 - ], - "downvotes": [ - 3648 - ], - "eye_z": [ - 3648 - ], - "favorites": [ - 3648 - ], - "flight_time_ms": [ - 3648 - ], - "initial_pos_x": [ - 3648 - ], - "initial_pos_y": [ - 3648 - ], - "initial_pos_z": [ - 3648 - ], - "initial_vel_x": [ - 3648 - ], - "initial_vel_y": [ - 3648 - ], - "initial_vel_z": [ - 3648 - ], - "land_x": [ - 3648 - ], - "land_y": [ - 3648 - ], - "land_z": [ - 3648 - ], - "origin_x": [ - 3648 - ], - "origin_y": [ - 3648 - ], - "origin_z": [ - 3648 - ], - "practice_attempts": [ - 3648 - ], - "practice_players": [ - 3648 - ], - "practice_successes": [ - 3648 - ], - "preview_duration_ms": [ - 3648 - ], - "public_reviewed_by": [ - 3648 - ], - "source_grenade_id": [ - 3648 - ], - "trajectory_size": [ - 3648 - ], - "upvotes": [ - 3648 - ], - "view_pitch": [ - 3648 - ], - "view_pitch_delta": [ - 3648 - ], - "view_yaw": [ - 3648 - ], - "view_yaw_delta": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_variance_fields": { - "aim_tolerance": [ - 32 - ], - "author_steam_id": [ - 32 - ], - "downvotes": [ - 32 - ], - "eye_z": [ - 32 - ], - "favorites": [ - 32 - ], - "flight_time_ms": [ - 32 - ], - "initial_pos_x": [ - 32 - ], - "initial_pos_y": [ - 32 - ], - "initial_pos_z": [ - 32 - ], - "initial_vel_x": [ - 32 - ], - "initial_vel_y": [ - 32 - ], - "initial_vel_z": [ - 32 - ], - "land_x": [ - 32 - ], - "land_y": [ - 32 - ], - "land_z": [ - 32 - ], - "my_vote": [ - 4830 - ], - "origin_x": [ - 32 - ], - "origin_y": [ - 32 - ], - "origin_z": [ - 32 - ], - "practice_attempts": [ - 32 - ], - "practice_players": [ - 32 - ], - "practice_successes": [ - 32 - ], - "preview_duration_ms": [ - 32 - ], - "public_reviewed_by": [ - 32 - ], - "source_grenade_id": [ - 32 - ], - "trajectory_size": [ - 32 - ], - "upvotes": [ - 32 - ], - "view_pitch": [ - 32 - ], - "view_pitch_delta": [ - 32 - ], - "view_yaw": [ - 32 - ], - "view_yaw_delta": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_lineups_variance_order_by": { - "aim_tolerance": [ - 3648 - ], - "author_steam_id": [ - 3648 - ], - "downvotes": [ - 3648 - ], - "eye_z": [ - 3648 - ], - "favorites": [ - 3648 - ], - "flight_time_ms": [ - 3648 - ], - "initial_pos_x": [ - 3648 - ], - "initial_pos_y": [ - 3648 - ], - "initial_pos_z": [ - 3648 - ], - "initial_vel_x": [ - 3648 - ], - "initial_vel_y": [ - 3648 - ], - "initial_vel_z": [ - 3648 - ], - "land_x": [ - 3648 - ], - "land_y": [ - 3648 - ], - "land_z": [ - 3648 - ], - "origin_x": [ - 3648 - ], - "origin_y": [ - 3648 - ], - "origin_z": [ - 3648 - ], - "practice_attempts": [ - 3648 - ], - "practice_players": [ - 3648 - ], - "practice_successes": [ - 3648 - ], - "preview_duration_ms": [ - 3648 - ], - "public_reviewed_by": [ - 3648 - ], - "source_grenade_id": [ - 3648 - ], - "trajectory_size": [ - 3648 - ], - "upvotes": [ - 3648 - ], - "view_pitch": [ - 3648 - ], - "view_pitch_delta": [ - 3648 - ], - "view_yaw": [ - 3648 - ], - "view_yaw_delta": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_meta_lineups": { - "first_seen_at": [ - 5243 - ], - "land_x": [ - 2093 - ], - "land_y": [ - 2093 - ], - "land_z": [ - 2093 - ], - "last_seen_at": [ - 5243 - ], - "lineup_bucket": [ - 85 - ], - "lineups": [ - 41 - ], - "map_name": [ - 85 - ], - "matches": [ - 41 - ], - "origin_x": [ - 2093 - ], - "origin_y": [ - 2093 - ], - "origin_z": [ - 2093 - ], - "refreshed_at": [ - 5243 - ], - "side": [ - 1453 - ], - "technique": [ - 1719 - ], - "throw_strength": [ - 85 - ], - "throwers": [ - 41 - ], - "throws": [ - 41 - ], - "utility_type": [ - 1759 - ], - "view_pitch": [ - 2093 - ], - "view_yaw": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "utility_meta_lineups_aggregate": { - "aggregate": [ - 6491 - ], - "nodes": [ - 6489 - ], - "__typename": [ - 85 - ] - }, - "utility_meta_lineups_aggregate_fields": { - "avg": [ - 6492 - ], - "count": [ - 41, - { - "columns": [ - 6503, - "[utility_meta_lineups_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 6497 - ], - "min": [ - 6498 - ], - "stddev": [ - 6505 - ], - "stddev_pop": [ - 6506 - ], - "stddev_samp": [ - 6507 - ], - "sum": [ - 6510 - ], - "var_pop": [ - 6513 - ], - "var_samp": [ - 6514 - ], - "variance": [ - 6515 - ], - "__typename": [ - 85 - ] - }, - "utility_meta_lineups_avg_fields": { - "land_x": [ - 32 - ], - "land_y": [ - 32 - ], - "land_z": [ - 32 - ], - "lineups": [ - 32 - ], - "matches": [ - 32 - ], - "origin_x": [ - 32 - ], - "origin_y": [ - 32 - ], - "origin_z": [ - 32 - ], - "throwers": [ - 32 - ], - "throws": [ - 32 - ], - "view_pitch": [ - 32 - ], - "view_yaw": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_meta_lineups_bool_exp": { - "_and": [ - 6493 - ], - "_not": [ - 6493 - ], - "_or": [ - 6493 - ], - "first_seen_at": [ - 5244 - ], - "land_x": [ - 2094 - ], - "land_y": [ - 2094 - ], - "land_z": [ - 2094 - ], - "last_seen_at": [ - 5244 - ], - "lineup_bucket": [ - 87 - ], - "lineups": [ - 42 - ], - "map_name": [ - 87 - ], - "matches": [ - 42 - ], - "origin_x": [ - 2094 - ], - "origin_y": [ - 2094 - ], - "origin_z": [ - 2094 - ], - "refreshed_at": [ - 5244 - ], - "side": [ - 1454 - ], - "technique": [ - 1720 - ], - "throw_strength": [ - 87 - ], - "throwers": [ - 42 - ], - "throws": [ - 42 - ], - "utility_type": [ - 1760 - ], - "view_pitch": [ - 2094 - ], - "view_yaw": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "utility_meta_lineups_constraint": {}, - "utility_meta_lineups_inc_input": { - "land_x": [ - 2093 - ], - "land_y": [ - 2093 - ], - "land_z": [ - 2093 - ], - "lineups": [ - 41 - ], - "matches": [ - 41 - ], - "origin_x": [ - 2093 - ], - "origin_y": [ - 2093 - ], - "origin_z": [ - 2093 - ], - "throwers": [ - 41 - ], - "throws": [ - 41 - ], - "view_pitch": [ - 2093 - ], - "view_yaw": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "utility_meta_lineups_insert_input": { - "first_seen_at": [ - 5243 - ], - "land_x": [ - 2093 - ], - "land_y": [ - 2093 - ], - "land_z": [ - 2093 - ], - "last_seen_at": [ - 5243 - ], - "lineup_bucket": [ - 85 - ], - "lineups": [ - 41 - ], - "map_name": [ - 85 - ], - "matches": [ - 41 - ], - "origin_x": [ - 2093 - ], - "origin_y": [ - 2093 - ], - "origin_z": [ - 2093 - ], - "refreshed_at": [ - 5243 - ], - "side": [ - 1453 - ], - "technique": [ - 1719 - ], - "throw_strength": [ - 85 - ], - "throwers": [ - 41 - ], - "throws": [ - 41 - ], - "utility_type": [ - 1759 - ], - "view_pitch": [ - 2093 - ], - "view_yaw": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "utility_meta_lineups_max_fields": { - "first_seen_at": [ - 5243 - ], - "land_x": [ - 2093 - ], - "land_y": [ - 2093 - ], - "land_z": [ - 2093 - ], - "last_seen_at": [ - 5243 - ], - "lineup_bucket": [ - 85 - ], - "lineups": [ - 41 - ], - "map_name": [ - 85 - ], - "matches": [ - 41 - ], - "origin_x": [ - 2093 - ], - "origin_y": [ - 2093 - ], - "origin_z": [ - 2093 - ], - "refreshed_at": [ - 5243 - ], - "throw_strength": [ - 85 - ], - "throwers": [ - 41 - ], - "throws": [ - 41 - ], - "view_pitch": [ - 2093 - ], - "view_yaw": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "utility_meta_lineups_min_fields": { - "first_seen_at": [ - 5243 - ], - "land_x": [ - 2093 - ], - "land_y": [ - 2093 - ], - "land_z": [ - 2093 - ], - "last_seen_at": [ - 5243 - ], - "lineup_bucket": [ - 85 - ], - "lineups": [ - 41 - ], - "map_name": [ - 85 - ], - "matches": [ - 41 - ], - "origin_x": [ - 2093 - ], - "origin_y": [ - 2093 - ], - "origin_z": [ - 2093 - ], - "refreshed_at": [ - 5243 - ], - "throw_strength": [ - 85 - ], - "throwers": [ - 41 - ], - "throws": [ - 41 - ], - "view_pitch": [ - 2093 - ], - "view_yaw": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "utility_meta_lineups_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 6489 - ], - "__typename": [ - 85 - ] - }, - "utility_meta_lineups_on_conflict": { - "constraint": [ - 6494 - ], - "update_columns": [ - 6511 - ], - "where": [ - 6493 - ], - "__typename": [ - 85 - ] - }, - "utility_meta_lineups_order_by": { - "first_seen_at": [ - 3648 - ], - "land_x": [ - 3648 - ], - "land_y": [ - 3648 - ], - "land_z": [ - 3648 - ], - "last_seen_at": [ - 3648 - ], - "lineup_bucket": [ - 3648 - ], - "lineups": [ - 3648 - ], - "map_name": [ - 3648 - ], - "matches": [ - 3648 - ], - "origin_x": [ - 3648 - ], - "origin_y": [ - 3648 - ], - "origin_z": [ - 3648 - ], - "refreshed_at": [ - 3648 - ], - "side": [ - 3648 - ], - "technique": [ - 3648 - ], - "throw_strength": [ - 3648 - ], - "throwers": [ - 3648 - ], - "throws": [ - 3648 - ], - "utility_type": [ - 3648 - ], - "view_pitch": [ - 3648 - ], - "view_yaw": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_meta_lineups_pk_columns_input": { - "lineup_bucket": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "utility_meta_lineups_select_column": {}, - "utility_meta_lineups_set_input": { - "first_seen_at": [ - 5243 - ], - "land_x": [ - 2093 - ], - "land_y": [ - 2093 - ], - "land_z": [ - 2093 - ], - "last_seen_at": [ - 5243 - ], - "lineup_bucket": [ - 85 - ], - "lineups": [ - 41 - ], - "map_name": [ - 85 - ], - "matches": [ - 41 - ], - "origin_x": [ - 2093 - ], - "origin_y": [ - 2093 - ], - "origin_z": [ - 2093 - ], - "refreshed_at": [ - 5243 - ], - "side": [ - 1453 - ], - "technique": [ - 1719 - ], - "throw_strength": [ - 85 - ], - "throwers": [ - 41 - ], - "throws": [ - 41 - ], - "utility_type": [ - 1759 - ], - "view_pitch": [ - 2093 - ], - "view_yaw": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "utility_meta_lineups_stddev_fields": { - "land_x": [ - 32 - ], - "land_y": [ - 32 - ], - "land_z": [ - 32 - ], - "lineups": [ - 32 - ], - "matches": [ - 32 - ], - "origin_x": [ - 32 - ], - "origin_y": [ - 32 - ], - "origin_z": [ - 32 - ], - "throwers": [ - 32 - ], - "throws": [ - 32 - ], - "view_pitch": [ - 32 - ], - "view_yaw": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_meta_lineups_stddev_pop_fields": { - "land_x": [ - 32 - ], - "land_y": [ - 32 - ], - "land_z": [ - 32 - ], - "lineups": [ - 32 - ], - "matches": [ - 32 - ], - "origin_x": [ - 32 - ], - "origin_y": [ - 32 - ], - "origin_z": [ - 32 - ], - "throwers": [ - 32 - ], - "throws": [ - 32 - ], - "view_pitch": [ - 32 - ], - "view_yaw": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_meta_lineups_stddev_samp_fields": { - "land_x": [ - 32 - ], - "land_y": [ - 32 - ], - "land_z": [ - 32 - ], - "lineups": [ - 32 - ], - "matches": [ - 32 - ], - "origin_x": [ - 32 - ], - "origin_y": [ - 32 - ], - "origin_z": [ - 32 - ], - "throwers": [ - 32 - ], - "throws": [ - 32 - ], - "view_pitch": [ - 32 - ], - "view_yaw": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_meta_lineups_stream_cursor_input": { - "initial_value": [ - 6509 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "utility_meta_lineups_stream_cursor_value_input": { - "first_seen_at": [ - 5243 - ], - "land_x": [ - 2093 - ], - "land_y": [ - 2093 - ], - "land_z": [ - 2093 - ], - "last_seen_at": [ - 5243 - ], - "lineup_bucket": [ - 85 - ], - "lineups": [ - 41 - ], - "map_name": [ - 85 - ], - "matches": [ - 41 - ], - "origin_x": [ - 2093 - ], - "origin_y": [ - 2093 - ], - "origin_z": [ - 2093 - ], - "refreshed_at": [ - 5243 - ], - "side": [ - 1453 - ], - "technique": [ - 1719 - ], - "throw_strength": [ - 85 - ], - "throwers": [ - 41 - ], - "throws": [ - 41 - ], - "utility_type": [ - 1759 - ], - "view_pitch": [ - 2093 - ], - "view_yaw": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "utility_meta_lineups_sum_fields": { - "land_x": [ - 2093 - ], - "land_y": [ - 2093 - ], - "land_z": [ - 2093 - ], - "lineups": [ - 41 - ], - "matches": [ - 41 - ], - "origin_x": [ - 2093 - ], - "origin_y": [ - 2093 - ], - "origin_z": [ - 2093 - ], - "throwers": [ - 41 - ], - "throws": [ - 41 - ], - "view_pitch": [ - 2093 - ], - "view_yaw": [ - 2093 - ], - "__typename": [ - 85 - ] - }, - "utility_meta_lineups_update_column": {}, - "utility_meta_lineups_updates": { - "_inc": [ - 6495 - ], - "_set": [ - 6504 - ], - "where": [ - 6493 - ], - "__typename": [ - 85 - ] - }, - "utility_meta_lineups_var_pop_fields": { - "land_x": [ - 32 - ], - "land_y": [ - 32 - ], - "land_z": [ - 32 - ], - "lineups": [ - 32 - ], - "matches": [ - 32 - ], - "origin_x": [ - 32 - ], - "origin_y": [ - 32 - ], - "origin_z": [ - 32 - ], - "throwers": [ - 32 - ], - "throws": [ - 32 - ], - "view_pitch": [ - 32 - ], - "view_yaw": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_meta_lineups_var_samp_fields": { - "land_x": [ - 32 - ], - "land_y": [ - 32 - ], - "land_z": [ - 32 - ], - "lineups": [ - 32 - ], - "matches": [ - 32 - ], - "origin_x": [ - 32 - ], - "origin_y": [ - 32 - ], - "origin_z": [ - 32 - ], - "throwers": [ - 32 - ], - "throws": [ - 32 - ], - "view_pitch": [ - 32 - ], - "view_yaw": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_meta_lineups_variance_fields": { - "land_x": [ - 32 - ], - "land_y": [ - 32 - ], - "land_z": [ - 32 - ], - "lineups": [ - 32 - ], - "matches": [ - 32 - ], - "origin_x": [ - 32 - ], - "origin_y": [ - 32 - ], - "origin_z": [ - 32 - ], - "throwers": [ - 32 - ], - "throws": [ - 32 - ], - "view_pitch": [ - 32 - ], - "view_yaw": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_playbook_steps": { - "assigned_player": [ - 4606 - ], - "assigned_steam_id": [ - 312 - ], - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "note": [ - 85 - ], - "offset_ms": [ - 41 - ], - "playbook": [ - 6557 - ], - "playbook_id": [ - 6672 - ], - "step_order": [ - 41 - ], - "utility_lineup": [ - 6420 - ], - "utility_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_playbook_steps_aggregate": { - "aggregate": [ - 6520 - ], - "nodes": [ - 6516 - ], - "__typename": [ - 85 - ] - }, - "utility_playbook_steps_aggregate_bool_exp": { - "count": [ - 6519 - ], - "__typename": [ - 85 - ] - }, - "utility_playbook_steps_aggregate_bool_exp_count": { - "arguments": [ - 6537 - ], - "distinct": [ - 6 - ], - "filter": [ - 6525 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "utility_playbook_steps_aggregate_fields": { - "avg": [ - 6523 - ], - "count": [ - 41, - { - "columns": [ - 6537, - "[utility_playbook_steps_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 6529 - ], - "min": [ - 6531 - ], - "stddev": [ - 6539 - ], - "stddev_pop": [ - 6541 - ], - "stddev_samp": [ - 6543 - ], - "sum": [ - 6547 - ], - "var_pop": [ - 6551 - ], - "var_samp": [ - 6553 - ], - "variance": [ - 6555 - ], - "__typename": [ - 85 - ] - }, - "utility_playbook_steps_aggregate_order_by": { - "avg": [ - 6524 - ], - "count": [ - 3648 - ], - "max": [ - 6530 - ], - "min": [ - 6532 - ], - "stddev": [ - 6540 - ], - "stddev_pop": [ - 6542 - ], - "stddev_samp": [ - 6544 - ], - "sum": [ - 6548 - ], - "var_pop": [ - 6552 - ], - "var_samp": [ - 6554 - ], - "variance": [ - 6556 - ], - "__typename": [ - 85 - ] - }, - "utility_playbook_steps_arr_rel_insert_input": { - "data": [ - 6528 - ], - "on_conflict": [ - 6534 - ], - "__typename": [ - 85 - ] - }, - "utility_playbook_steps_avg_fields": { - "assigned_steam_id": [ - 32 - ], - "offset_ms": [ - 32 - ], - "step_order": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_playbook_steps_avg_order_by": { - "assigned_steam_id": [ - 3648 - ], - "offset_ms": [ - 3648 - ], - "step_order": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_playbook_steps_bool_exp": { - "_and": [ - 6525 - ], - "_not": [ - 6525 - ], - "_or": [ - 6525 - ], - "assigned_player": [ - 4610 - ], - "assigned_steam_id": [ - 314 - ], - "created_at": [ - 5244 - ], - "id": [ - 6674 - ], - "note": [ - 87 - ], - "offset_ms": [ - 42 - ], - "playbook": [ - 6561 - ], - "playbook_id": [ - 6674 - ], - "step_order": [ - 42 - ], - "utility_lineup": [ - 6442 - ], - "utility_lineup_id": [ - 6674 - ], - "__typename": [ - 85 - ] - }, - "utility_playbook_steps_constraint": {}, - "utility_playbook_steps_inc_input": { - "assigned_steam_id": [ - 312 - ], - "offset_ms": [ - 41 - ], - "step_order": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "utility_playbook_steps_insert_input": { - "assigned_player": [ - 4617 - ], - "assigned_steam_id": [ - 312 - ], - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "note": [ - 85 - ], - "offset_ms": [ - 41 - ], - "playbook": [ - 6568 - ], - "playbook_id": [ - 6672 - ], - "step_order": [ - 41 - ], - "utility_lineup": [ - 6454 - ], - "utility_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_playbook_steps_max_fields": { - "assigned_steam_id": [ - 312 - ], - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "note": [ - 85 - ], - "offset_ms": [ - 41 - ], - "playbook_id": [ - 6672 - ], - "step_order": [ - 41 - ], - "utility_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_playbook_steps_max_order_by": { - "assigned_steam_id": [ - 3648 - ], - "created_at": [ - 3648 - ], - "id": [ - 3648 - ], - "note": [ - 3648 - ], - "offset_ms": [ - 3648 - ], - "playbook_id": [ - 3648 - ], - "step_order": [ - 3648 - ], - "utility_lineup_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_playbook_steps_min_fields": { - "assigned_steam_id": [ - 312 - ], - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "note": [ - 85 - ], - "offset_ms": [ - 41 - ], - "playbook_id": [ - 6672 - ], - "step_order": [ - 41 - ], - "utility_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_playbook_steps_min_order_by": { - "assigned_steam_id": [ - 3648 - ], - "created_at": [ - 3648 - ], - "id": [ - 3648 - ], - "note": [ - 3648 - ], - "offset_ms": [ - 3648 - ], - "playbook_id": [ - 3648 - ], - "step_order": [ - 3648 - ], - "utility_lineup_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_playbook_steps_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 6516 - ], - "__typename": [ - 85 - ] - }, - "utility_playbook_steps_on_conflict": { - "constraint": [ - 6526 - ], - "update_columns": [ - 6549 - ], - "where": [ - 6525 - ], - "__typename": [ - 85 - ] - }, - "utility_playbook_steps_order_by": { - "assigned_player": [ - 4619 - ], - "assigned_steam_id": [ - 3648 - ], - "created_at": [ - 3648 - ], - "id": [ - 3648 - ], - "note": [ - 3648 - ], - "offset_ms": [ - 3648 - ], - "playbook": [ - 6570 - ], - "playbook_id": [ - 3648 - ], - "step_order": [ - 3648 - ], - "utility_lineup": [ - 6456 - ], - "utility_lineup_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_playbook_steps_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_playbook_steps_select_column": {}, - "utility_playbook_steps_set_input": { - "assigned_steam_id": [ - 312 - ], - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "note": [ - 85 - ], - "offset_ms": [ - 41 - ], - "playbook_id": [ - 6672 - ], - "step_order": [ - 41 - ], - "utility_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_playbook_steps_stddev_fields": { - "assigned_steam_id": [ - 32 - ], - "offset_ms": [ - 32 - ], - "step_order": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_playbook_steps_stddev_order_by": { - "assigned_steam_id": [ - 3648 - ], - "offset_ms": [ - 3648 - ], - "step_order": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_playbook_steps_stddev_pop_fields": { - "assigned_steam_id": [ - 32 - ], - "offset_ms": [ - 32 - ], - "step_order": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_playbook_steps_stddev_pop_order_by": { - "assigned_steam_id": [ - 3648 - ], - "offset_ms": [ - 3648 - ], - "step_order": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_playbook_steps_stddev_samp_fields": { - "assigned_steam_id": [ - 32 - ], - "offset_ms": [ - 32 - ], - "step_order": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_playbook_steps_stddev_samp_order_by": { - "assigned_steam_id": [ - 3648 - ], - "offset_ms": [ - 3648 - ], - "step_order": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_playbook_steps_stream_cursor_input": { - "initial_value": [ - 6546 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "utility_playbook_steps_stream_cursor_value_input": { - "assigned_steam_id": [ - 312 - ], - "created_at": [ - 5243 - ], - "id": [ - 6672 - ], - "note": [ - 85 - ], - "offset_ms": [ - 41 - ], - "playbook_id": [ - 6672 - ], - "step_order": [ - 41 - ], - "utility_lineup_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_playbook_steps_sum_fields": { - "assigned_steam_id": [ - 312 - ], - "offset_ms": [ - 41 - ], - "step_order": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "utility_playbook_steps_sum_order_by": { - "assigned_steam_id": [ - 3648 - ], - "offset_ms": [ - 3648 - ], - "step_order": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_playbook_steps_update_column": {}, - "utility_playbook_steps_updates": { - "_inc": [ - 6527 - ], - "_set": [ - 6538 - ], - "where": [ - 6525 - ], - "__typename": [ - 85 - ] - }, - "utility_playbook_steps_var_pop_fields": { - "assigned_steam_id": [ - 32 - ], - "offset_ms": [ - 32 - ], - "step_order": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_playbook_steps_var_pop_order_by": { - "assigned_steam_id": [ - 3648 - ], - "offset_ms": [ - 3648 - ], - "step_order": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_playbook_steps_var_samp_fields": { - "assigned_steam_id": [ - 32 - ], - "offset_ms": [ - 32 - ], - "step_order": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_playbook_steps_var_samp_order_by": { - "assigned_steam_id": [ - 3648 - ], - "offset_ms": [ - 3648 - ], - "step_order": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_playbook_steps_variance_fields": { - "assigned_steam_id": [ - 32 - ], - "offset_ms": [ - 32 - ], - "step_order": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_playbook_steps_variance_order_by": { - "assigned_steam_id": [ - 3648 - ], - "offset_ms": [ - 3648 - ], - "step_order": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_playbooks": { - "can_edit": [ - 6 - ], - "can_view": [ - 6 - ], - "created_at": [ - 5243 - ], - "description": [ - 85 - ], - "id": [ - 6672 - ], - "map_name": [ - 85 - ], - "name": [ - 85 - ], - "owner": [ - 4606 - ], - "owner_steam_id": [ - 312 - ], - "side": [ - 1453 - ], - "steps": [ - 6516, - { - "distinct_on": [ - 6537, - "[utility_playbook_steps_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6535, - "[utility_playbook_steps_order_by!]" - ], - "where": [ - 6525 - ] - } - ], - "steps_aggregate": [ - 6517, - { - "distinct_on": [ - 6537, - "[utility_playbook_steps_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6535, - "[utility_playbook_steps_order_by!]" - ], - "where": [ - 6525 - ] - } - ], - "team": [ - 5194 - ], - "team_id": [ - 6672 - ], - "updated_at": [ - 5243 - ], - "visibility": [ - 1779 - ], - "__typename": [ - 85 - ] - }, - "utility_playbooks_aggregate": { - "aggregate": [ - 6559 - ], - "nodes": [ - 6557 - ], - "__typename": [ - 85 - ] - }, - "utility_playbooks_aggregate_fields": { - "avg": [ - 6560 - ], - "count": [ - 41, - { - "columns": [ - 6572, - "[utility_playbooks_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 6565 - ], - "min": [ - 6566 - ], - "stddev": [ - 6574 - ], - "stddev_pop": [ - 6575 - ], - "stddev_samp": [ - 6576 - ], - "sum": [ - 6579 - ], - "var_pop": [ - 6582 - ], - "var_samp": [ - 6583 - ], - "variance": [ - 6584 - ], - "__typename": [ - 85 - ] - }, - "utility_playbooks_avg_fields": { - "owner_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_playbooks_bool_exp": { - "_and": [ - 6561 - ], - "_not": [ - 6561 - ], - "_or": [ - 6561 - ], - "can_edit": [ - 7 - ], - "can_view": [ - 7 - ], - "created_at": [ - 5244 - ], - "description": [ - 87 - ], - "id": [ - 6674 - ], - "map_name": [ - 87 - ], - "name": [ - 87 - ], - "owner": [ - 4610 - ], - "owner_steam_id": [ - 314 - ], - "side": [ - 1454 - ], - "steps": [ - 6525 - ], - "steps_aggregate": [ - 6518 - ], - "team": [ - 5205 - ], - "team_id": [ - 6674 - ], - "updated_at": [ - 5244 - ], - "visibility": [ - 1780 - ], - "__typename": [ - 85 - ] - }, - "utility_playbooks_constraint": {}, - "utility_playbooks_inc_input": { - "owner_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "utility_playbooks_insert_input": { - "created_at": [ - 5243 - ], - "description": [ - 85 - ], - "id": [ - 6672 - ], - "map_name": [ - 85 - ], - "name": [ - 85 - ], - "owner": [ - 4617 - ], - "owner_steam_id": [ - 312 - ], - "side": [ - 1453 - ], - "steps": [ - 6522 - ], - "team": [ - 5214 - ], - "team_id": [ - 6672 - ], - "updated_at": [ - 5243 - ], - "visibility": [ - 1779 - ], - "__typename": [ - 85 - ] - }, - "utility_playbooks_max_fields": { - "created_at": [ - 5243 - ], - "description": [ - 85 - ], - "id": [ - 6672 - ], - "map_name": [ - 85 - ], - "name": [ - 85 - ], - "owner_steam_id": [ - 312 - ], - "team_id": [ - 6672 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "utility_playbooks_min_fields": { - "created_at": [ - 5243 - ], - "description": [ - 85 - ], - "id": [ - 6672 - ], - "map_name": [ - 85 - ], - "name": [ - 85 - ], - "owner_steam_id": [ - 312 - ], - "team_id": [ - 6672 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "utility_playbooks_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 6557 - ], - "__typename": [ - 85 - ] - }, - "utility_playbooks_obj_rel_insert_input": { - "data": [ - 6564 - ], - "on_conflict": [ - 6569 - ], - "__typename": [ - 85 - ] - }, - "utility_playbooks_on_conflict": { - "constraint": [ - 6562 - ], - "update_columns": [ - 6580 - ], - "where": [ - 6561 - ], - "__typename": [ - 85 - ] - }, - "utility_playbooks_order_by": { - "can_edit": [ - 3648 - ], - "can_view": [ - 3648 - ], - "created_at": [ - 3648 - ], - "description": [ - 3648 - ], - "id": [ - 3648 - ], - "map_name": [ - 3648 - ], - "name": [ - 3648 - ], - "owner": [ - 4619 - ], - "owner_steam_id": [ - 3648 - ], - "side": [ - 3648 - ], - "steps_aggregate": [ - 6521 - ], - "team": [ - 5216 - ], - "team_id": [ - 3648 - ], - "updated_at": [ - 3648 - ], - "visibility": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_playbooks_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_playbooks_select_column": {}, - "utility_playbooks_set_input": { - "created_at": [ - 5243 - ], - "description": [ - 85 - ], - "id": [ - 6672 - ], - "map_name": [ - 85 - ], - "name": [ - 85 - ], - "owner_steam_id": [ - 312 - ], - "side": [ - 1453 - ], - "team_id": [ - 6672 - ], - "updated_at": [ - 5243 - ], - "visibility": [ - 1779 - ], - "__typename": [ - 85 - ] - }, - "utility_playbooks_stddev_fields": { - "owner_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_playbooks_stddev_pop_fields": { - "owner_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_playbooks_stddev_samp_fields": { - "owner_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_playbooks_stream_cursor_input": { - "initial_value": [ - 6578 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "utility_playbooks_stream_cursor_value_input": { - "created_at": [ - 5243 - ], - "description": [ - 85 - ], - "id": [ - 6672 - ], - "map_name": [ - 85 - ], - "name": [ - 85 - ], - "owner_steam_id": [ - 312 - ], - "side": [ - 1453 - ], - "team_id": [ - 6672 - ], - "updated_at": [ - 5243 - ], - "visibility": [ - 1779 - ], - "__typename": [ - 85 - ] - }, - "utility_playbooks_sum_fields": { - "owner_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "utility_playbooks_update_column": {}, - "utility_playbooks_updates": { - "_inc": [ - 6563 - ], - "_set": [ - 6573 - ], - "where": [ - 6561 - ], - "__typename": [ - 85 - ] - }, - "utility_playbooks_var_pop_fields": { - "owner_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_playbooks_var_samp_fields": { - "owner_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_playbooks_variance_fields": { - "owner_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_invites": { - "created_at": [ - 5243 - ], - "invited_by": [ - 4606 - ], - "invited_by_steam_id": [ - 312 - ], - "player": [ - 4606 - ], - "session": [ - 6626 - ], - "steam_id": [ - 312 - ], - "utility_practice_session_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_invites_aggregate": { - "aggregate": [ - 6589 - ], - "nodes": [ - 6585 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_invites_aggregate_bool_exp": { - "count": [ - 6588 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_invites_aggregate_bool_exp_count": { - "arguments": [ - 6606 - ], - "distinct": [ - 6 - ], - "filter": [ - 6594 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_invites_aggregate_fields": { - "avg": [ - 6592 - ], - "count": [ - 41, - { - "columns": [ - 6606, - "[utility_practice_invites_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 6598 - ], - "min": [ - 6600 - ], - "stddev": [ - 6608 - ], - "stddev_pop": [ - 6610 - ], - "stddev_samp": [ - 6612 - ], - "sum": [ - 6616 - ], - "var_pop": [ - 6620 - ], - "var_samp": [ - 6622 - ], - "variance": [ - 6624 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_invites_aggregate_order_by": { - "avg": [ - 6593 - ], - "count": [ - 3648 - ], - "max": [ - 6599 - ], - "min": [ - 6601 - ], - "stddev": [ - 6609 - ], - "stddev_pop": [ - 6611 - ], - "stddev_samp": [ - 6613 - ], - "sum": [ - 6617 - ], - "var_pop": [ - 6621 - ], - "var_samp": [ - 6623 - ], - "variance": [ - 6625 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_invites_arr_rel_insert_input": { - "data": [ - 6597 - ], - "on_conflict": [ - 6603 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_invites_avg_fields": { - "invited_by_steam_id": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_invites_avg_order_by": { - "invited_by_steam_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_invites_bool_exp": { - "_and": [ - 6594 - ], - "_not": [ - 6594 - ], - "_or": [ - 6594 - ], - "created_at": [ - 5244 - ], - "invited_by": [ - 4610 - ], - "invited_by_steam_id": [ - 314 - ], - "player": [ - 4610 - ], - "session": [ - 6637 - ], - "steam_id": [ - 314 - ], - "utility_practice_session_id": [ - 6674 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_invites_constraint": {}, - "utility_practice_invites_inc_input": { - "invited_by_steam_id": [ - 312 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_invites_insert_input": { - "created_at": [ - 5243 - ], - "invited_by": [ - 4617 - ], - "invited_by_steam_id": [ - 312 - ], - "player": [ - 4617 - ], - "session": [ - 6646 - ], - "steam_id": [ - 312 - ], - "utility_practice_session_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_invites_max_fields": { - "created_at": [ - 5243 - ], - "invited_by_steam_id": [ - 312 - ], - "steam_id": [ - 312 - ], - "utility_practice_session_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_invites_max_order_by": { - "created_at": [ - 3648 - ], - "invited_by_steam_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "utility_practice_session_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_invites_min_fields": { - "created_at": [ - 5243 - ], - "invited_by_steam_id": [ - 312 - ], - "steam_id": [ - 312 - ], - "utility_practice_session_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_invites_min_order_by": { - "created_at": [ - 3648 - ], - "invited_by_steam_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "utility_practice_session_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_invites_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 6585 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_invites_on_conflict": { - "constraint": [ - 6595 - ], - "update_columns": [ - 6618 - ], - "where": [ - 6594 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_invites_order_by": { - "created_at": [ - 3648 - ], - "invited_by": [ - 4619 - ], - "invited_by_steam_id": [ - 3648 - ], - "player": [ - 4619 - ], - "session": [ - 6648 - ], - "steam_id": [ - 3648 - ], - "utility_practice_session_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_invites_pk_columns_input": { - "steam_id": [ - 312 - ], - "utility_practice_session_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_invites_select_column": {}, - "utility_practice_invites_set_input": { - "created_at": [ - 5243 - ], - "invited_by_steam_id": [ - 312 - ], - "steam_id": [ - 312 - ], - "utility_practice_session_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_invites_stddev_fields": { - "invited_by_steam_id": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_invites_stddev_order_by": { - "invited_by_steam_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_invites_stddev_pop_fields": { - "invited_by_steam_id": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_invites_stddev_pop_order_by": { - "invited_by_steam_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_invites_stddev_samp_fields": { - "invited_by_steam_id": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_invites_stddev_samp_order_by": { - "invited_by_steam_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_invites_stream_cursor_input": { - "initial_value": [ - 6615 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_invites_stream_cursor_value_input": { - "created_at": [ - 5243 - ], - "invited_by_steam_id": [ - 312 - ], - "steam_id": [ - 312 - ], - "utility_practice_session_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_invites_sum_fields": { - "invited_by_steam_id": [ - 312 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_invites_sum_order_by": { - "invited_by_steam_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_invites_update_column": {}, - "utility_practice_invites_updates": { - "_inc": [ - 6596 - ], - "_set": [ - 6607 - ], - "where": [ - 6594 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_invites_var_pop_fields": { - "invited_by_steam_id": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_invites_var_pop_order_by": { - "invited_by_steam_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_invites_var_samp_fields": { - "invited_by_steam_id": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_invites_var_samp_order_by": { - "invited_by_steam_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_invites_variance_fields": { - "invited_by_steam_id": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_invites_variance_order_by": { - "invited_by_steam_id": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_sessions": { - "access": [ - 1658 - ], - "can_manage": [ - 6 - ], - "can_view": [ - 6 - ], - "collection": [ - 6001 - ], - "collection_id": [ - 6672 - ], - "connection_link": [ - 85 - ], - "connection_string": [ - 85 - ], - "created_at": [ - 5243 - ], - "e_utility_practice_status": [ - 1673 - ], - "empty_since": [ - 5243 - ], - "expires_at": [ - 5243 - ], - "failure_reason": [ - 85 - ], - "first_joined_at": [ - 5243 - ], - "host": [ - 4606 - ], - "host_steam_id": [ - 312 - ], - "id": [ - 6672 - ], - "invite_code": [ - 85 - ], - "invites": [ - 6585, - { - "distinct_on": [ - 6606, - "[utility_practice_invites_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6604, - "[utility_practice_invites_order_by!]" - ], - "where": [ - 6594 - ] - } - ], - "invites_aggregate": [ - 6586, - { - "distinct_on": [ - 6606, - "[utility_practice_invites_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6604, - "[utility_practice_invites_order_by!]" - ], - "where": [ - 6594 - ] - } - ], - "is_member": [ - 6 - ], - "is_open": [ - 6 - ], - "is_render": [ - 6 - ], - "last_occupied_at": [ - 5243 - ], - "map_changing_at": [ - 5243 - ], - "map_name": [ - 85 - ], - "match": [ - 3432 - ], - "match_id": [ - 6672 - ], - "notify_when_ready": [ - 6 - ], - "playbook": [ - 6557 - ], - "playbook_id": [ - 6672 - ], - "region": [ - 85 - ], - "status": [ - 1678 - ], - "team": [ - 5194 - ], - "team_id": [ - 6672 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_sessions_aggregate": { - "aggregate": [ - 6632 - ], - "nodes": [ - 6626 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_sessions_aggregate_bool_exp": { - "bool_and": [ - 6629 - ], - "bool_or": [ - 6630 - ], - "count": [ - 6631 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_sessions_aggregate_bool_exp_bool_and": { - "arguments": [ - 6651 - ], - "distinct": [ - 6 - ], - "filter": [ - 6637 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_sessions_aggregate_bool_exp_bool_or": { - "arguments": [ - 6652 - ], - "distinct": [ - 6 - ], - "filter": [ - 6637 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_sessions_aggregate_bool_exp_count": { - "arguments": [ - 6650 - ], - "distinct": [ - 6 - ], - "filter": [ - 6637 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_sessions_aggregate_fields": { - "avg": [ - 6635 - ], - "count": [ - 41, - { - "columns": [ - 6650, - "[utility_practice_sessions_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 6641 - ], - "min": [ - 6643 - ], - "stddev": [ - 6654 - ], - "stddev_pop": [ - 6656 - ], - "stddev_samp": [ - 6658 - ], - "sum": [ - 6662 - ], - "var_pop": [ - 6666 - ], - "var_samp": [ - 6668 - ], - "variance": [ - 6670 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_sessions_aggregate_order_by": { - "avg": [ - 6636 - ], - "count": [ - 3648 - ], - "max": [ - 6642 - ], - "min": [ - 6644 - ], - "stddev": [ - 6655 - ], - "stddev_pop": [ - 6657 - ], - "stddev_samp": [ - 6659 - ], - "sum": [ - 6663 - ], - "var_pop": [ - 6667 - ], - "var_samp": [ - 6669 - ], - "variance": [ - 6671 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_sessions_arr_rel_insert_input": { - "data": [ - 6640 - ], - "on_conflict": [ - 6647 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_sessions_avg_fields": { - "host_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_sessions_avg_order_by": { - "host_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_sessions_bool_exp": { - "_and": [ - 6637 - ], - "_not": [ - 6637 - ], - "_or": [ - 6637 - ], - "access": [ - 1659 - ], - "can_manage": [ - 7 - ], - "can_view": [ - 7 - ], - "collection": [ - 6005 - ], - "collection_id": [ - 6674 - ], - "connection_link": [ - 87 - ], - "connection_string": [ - 87 - ], - "created_at": [ - 5244 - ], - "e_utility_practice_status": [ - 1676 - ], - "empty_since": [ - 5244 - ], - "expires_at": [ - 5244 - ], - "failure_reason": [ - 87 - ], - "first_joined_at": [ - 5244 - ], - "host": [ - 4610 - ], - "host_steam_id": [ - 314 - ], - "id": [ - 6674 - ], - "invite_code": [ - 87 - ], - "invites": [ - 6594 - ], - "invites_aggregate": [ - 6587 - ], - "is_member": [ - 7 - ], - "is_open": [ - 7 - ], - "is_render": [ - 7 - ], - "last_occupied_at": [ - 5244 - ], - "map_changing_at": [ - 5244 - ], - "map_name": [ - 87 - ], - "match": [ - 3443 - ], - "match_id": [ - 6674 - ], - "notify_when_ready": [ - 7 - ], - "playbook": [ - 6561 - ], - "playbook_id": [ - 6674 - ], - "region": [ - 87 - ], - "status": [ - 1679 - ], - "team": [ - 5205 - ], - "team_id": [ - 6674 - ], - "updated_at": [ - 5244 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_sessions_constraint": {}, - "utility_practice_sessions_inc_input": { - "host_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_sessions_insert_input": { - "access": [ - 1658 - ], - "collection": [ - 6012 - ], - "collection_id": [ - 6672 - ], - "created_at": [ - 5243 - ], - "e_utility_practice_status": [ - 1684 - ], - "empty_since": [ - 5243 - ], - "expires_at": [ - 5243 - ], - "failure_reason": [ - 85 - ], - "first_joined_at": [ - 5243 - ], - "host": [ - 4617 - ], - "host_steam_id": [ - 312 - ], - "id": [ - 6672 - ], - "invite_code": [ - 85 - ], - "invites": [ - 6591 - ], - "is_open": [ - 6 - ], - "is_render": [ - 6 - ], - "last_occupied_at": [ - 5243 - ], - "map_changing_at": [ - 5243 - ], - "map_name": [ - 85 - ], - "match": [ - 3452 - ], - "match_id": [ - 6672 - ], - "notify_when_ready": [ - 6 - ], - "playbook": [ - 6568 - ], - "playbook_id": [ - 6672 - ], - "region": [ - 85 - ], - "status": [ - 1678 - ], - "team": [ - 5214 - ], - "team_id": [ - 6672 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_sessions_max_fields": { - "collection_id": [ - 6672 - ], - "connection_link": [ - 85 - ], - "connection_string": [ - 85 - ], - "created_at": [ - 5243 - ], - "empty_since": [ - 5243 - ], - "expires_at": [ - 5243 - ], - "failure_reason": [ - 85 - ], - "first_joined_at": [ - 5243 - ], - "host_steam_id": [ - 312 - ], - "id": [ - 6672 - ], - "invite_code": [ - 85 - ], - "last_occupied_at": [ - 5243 - ], - "map_changing_at": [ - 5243 - ], - "map_name": [ - 85 - ], - "match_id": [ - 6672 - ], - "playbook_id": [ - 6672 - ], - "region": [ - 85 - ], - "team_id": [ - 6672 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_sessions_max_order_by": { - "collection_id": [ - 3648 - ], - "created_at": [ - 3648 - ], - "empty_since": [ - 3648 - ], - "expires_at": [ - 3648 - ], - "failure_reason": [ - 3648 - ], - "first_joined_at": [ - 3648 - ], - "host_steam_id": [ - 3648 - ], - "id": [ - 3648 - ], - "invite_code": [ - 3648 - ], - "last_occupied_at": [ - 3648 - ], - "map_changing_at": [ - 3648 - ], - "map_name": [ - 3648 - ], - "match_id": [ - 3648 - ], - "playbook_id": [ - 3648 - ], - "region": [ - 3648 - ], - "team_id": [ - 3648 - ], - "updated_at": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_sessions_min_fields": { - "collection_id": [ - 6672 - ], - "connection_link": [ - 85 - ], - "connection_string": [ - 85 - ], - "created_at": [ - 5243 - ], - "empty_since": [ - 5243 - ], - "expires_at": [ - 5243 - ], - "failure_reason": [ - 85 - ], - "first_joined_at": [ - 5243 - ], - "host_steam_id": [ - 312 - ], - "id": [ - 6672 - ], - "invite_code": [ - 85 - ], - "last_occupied_at": [ - 5243 - ], - "map_changing_at": [ - 5243 - ], - "map_name": [ - 85 - ], - "match_id": [ - 6672 - ], - "playbook_id": [ - 6672 - ], - "region": [ - 85 - ], - "team_id": [ - 6672 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_sessions_min_order_by": { - "collection_id": [ - 3648 - ], - "created_at": [ - 3648 - ], - "empty_since": [ - 3648 - ], - "expires_at": [ - 3648 - ], - "failure_reason": [ - 3648 - ], - "first_joined_at": [ - 3648 - ], - "host_steam_id": [ - 3648 - ], - "id": [ - 3648 - ], - "invite_code": [ - 3648 - ], - "last_occupied_at": [ - 3648 - ], - "map_changing_at": [ - 3648 - ], - "map_name": [ - 3648 - ], - "match_id": [ - 3648 - ], - "playbook_id": [ - 3648 - ], - "region": [ - 3648 - ], - "team_id": [ - 3648 - ], - "updated_at": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_sessions_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 6626 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_sessions_obj_rel_insert_input": { - "data": [ - 6640 - ], - "on_conflict": [ - 6647 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_sessions_on_conflict": { - "constraint": [ - 6638 - ], - "update_columns": [ - 6664 - ], - "where": [ - 6637 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_sessions_order_by": { - "access": [ - 3648 - ], - "can_manage": [ - 3648 - ], - "can_view": [ - 3648 - ], - "collection": [ - 6014 - ], - "collection_id": [ - 3648 - ], - "connection_link": [ - 3648 - ], - "connection_string": [ - 3648 - ], - "created_at": [ - 3648 - ], - "e_utility_practice_status": [ - 1686 - ], - "empty_since": [ - 3648 - ], - "expires_at": [ - 3648 - ], - "failure_reason": [ - 3648 - ], - "first_joined_at": [ - 3648 - ], - "host": [ - 4619 - ], - "host_steam_id": [ - 3648 - ], - "id": [ - 3648 - ], - "invite_code": [ - 3648 - ], - "invites_aggregate": [ - 6590 - ], - "is_member": [ - 3648 - ], - "is_open": [ - 3648 - ], - "is_render": [ - 3648 - ], - "last_occupied_at": [ - 3648 - ], - "map_changing_at": [ - 3648 - ], - "map_name": [ - 3648 - ], - "match": [ - 3454 - ], - "match_id": [ - 3648 - ], - "notify_when_ready": [ - 3648 - ], - "playbook": [ - 6570 - ], - "playbook_id": [ - 3648 - ], - "region": [ - 3648 - ], - "status": [ - 3648 - ], - "team": [ - 5216 - ], - "team_id": [ - 3648 - ], - "updated_at": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_sessions_pk_columns_input": { - "id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_sessions_select_column": {}, - "utility_practice_sessions_select_column_utility_practice_sessions_aggregate_bool_exp_bool_and_arguments_columns": {}, - "utility_practice_sessions_select_column_utility_practice_sessions_aggregate_bool_exp_bool_or_arguments_columns": {}, - "utility_practice_sessions_set_input": { - "access": [ - 1658 - ], - "collection_id": [ - 6672 - ], - "created_at": [ - 5243 - ], - "empty_since": [ - 5243 - ], - "expires_at": [ - 5243 - ], - "failure_reason": [ - 85 - ], - "first_joined_at": [ - 5243 - ], - "host_steam_id": [ - 312 - ], - "id": [ - 6672 - ], - "invite_code": [ - 85 - ], - "is_open": [ - 6 - ], - "is_render": [ - 6 - ], - "last_occupied_at": [ - 5243 - ], - "map_changing_at": [ - 5243 - ], - "map_name": [ - 85 - ], - "match_id": [ - 6672 - ], - "notify_when_ready": [ - 6 - ], - "playbook_id": [ - 6672 - ], - "region": [ - 85 - ], - "status": [ - 1678 - ], - "team_id": [ - 6672 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_sessions_stddev_fields": { - "host_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_sessions_stddev_order_by": { - "host_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_sessions_stddev_pop_fields": { - "host_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_sessions_stddev_pop_order_by": { - "host_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_sessions_stddev_samp_fields": { - "host_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_sessions_stddev_samp_order_by": { - "host_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_sessions_stream_cursor_input": { - "initial_value": [ - 6661 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_sessions_stream_cursor_value_input": { - "access": [ - 1658 - ], - "collection_id": [ - 6672 - ], - "created_at": [ - 5243 - ], - "empty_since": [ - 5243 - ], - "expires_at": [ - 5243 - ], - "failure_reason": [ - 85 - ], - "first_joined_at": [ - 5243 - ], - "host_steam_id": [ - 312 - ], - "id": [ - 6672 - ], - "invite_code": [ - 85 - ], - "is_open": [ - 6 - ], - "is_render": [ - 6 - ], - "last_occupied_at": [ - 5243 - ], - "map_changing_at": [ - 5243 - ], - "map_name": [ - 85 - ], - "match_id": [ - 6672 - ], - "notify_when_ready": [ - 6 - ], - "playbook_id": [ - 6672 - ], - "region": [ - 85 - ], - "status": [ - 1678 - ], - "team_id": [ - 6672 - ], - "updated_at": [ - 5243 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_sessions_sum_fields": { - "host_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_sessions_sum_order_by": { - "host_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_sessions_update_column": {}, - "utility_practice_sessions_updates": { - "_inc": [ - 6639 - ], - "_set": [ - 6653 - ], - "where": [ - 6637 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_sessions_var_pop_fields": { - "host_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_sessions_var_pop_order_by": { - "host_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_sessions_var_samp_fields": { - "host_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_sessions_var_samp_order_by": { - "host_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_sessions_variance_fields": { - "host_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "utility_practice_sessions_variance_order_by": { - "host_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "uuid": {}, - "uuid_array_comparison_exp": { - "_contained_in": [ - 6672 - ], - "_contains": [ - 6672 - ], - "_eq": [ - 6672 - ], - "_gt": [ - 6672 - ], - "_gte": [ - 6672 - ], - "_in": [ - 6672 - ], - "_is_null": [ - 6 - ], - "_lt": [ - 6672 - ], - "_lte": [ - 6672 - ], - "_neq": [ - 6672 - ], - "_nin": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "uuid_comparison_exp": { - "_eq": [ - 6672 - ], - "_gt": [ - 6672 - ], - "_gte": [ - 6672 - ], - "_in": [ - 6672 - ], - "_is_null": [ - 6 - ], - "_lt": [ - 6672 - ], - "_lte": [ - 6672 - ], - "_neq": [ - 6672 - ], - "_nin": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "v_event_player_stats": { - "assists": [ - 41 - ], - "deaths": [ - 41 - ], - "event": [ - 2065 - ], - "event_id": [ - 6672 - ], - "headshot_percentage": [ - 2093 - ], - "headshots": [ - 41 - ], - "kdr": [ - 2093 - ], - "kills": [ - 41 - ], - "matches_played": [ - 41 - ], - "player": [ - 4606 - ], - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_event_player_stats_aggregate": { - "aggregate": [ - 6689 - ], - "nodes": [ - 6675 - ], - "__typename": [ - 85 - ] - }, - "v_event_player_stats_aggregate_bool_exp": { - "avg": [ - 6678 - ], - "corr": [ - 6679 - ], - "count": [ - 6681 - ], - "covar_samp": [ - 6682 - ], - "max": [ - 6684 - ], - "min": [ - 6685 - ], - "stddev_samp": [ - 6686 - ], - "sum": [ - 6687 - ], - "var_samp": [ - 6688 - ], - "__typename": [ - 85 - ] - }, - "v_event_player_stats_aggregate_bool_exp_avg": { - "arguments": [ - 6702 - ], - "distinct": [ - 6 - ], - "filter": [ - 6694 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_event_player_stats_aggregate_bool_exp_corr": { - "arguments": [ - 6680 - ], - "distinct": [ - 6 - ], - "filter": [ - 6694 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_event_player_stats_aggregate_bool_exp_corr_arguments": { - "X": [ - 6703 - ], - "Y": [ - 6703 - ], - "__typename": [ - 85 - ] - }, - "v_event_player_stats_aggregate_bool_exp_count": { - "arguments": [ - 6701 - ], - "distinct": [ - 6 - ], - "filter": [ - 6694 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "v_event_player_stats_aggregate_bool_exp_covar_samp": { - "arguments": [ - 6683 - ], - "distinct": [ - 6 - ], - "filter": [ - 6694 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_event_player_stats_aggregate_bool_exp_covar_samp_arguments": { - "X": [ - 6704 - ], - "Y": [ - 6704 - ], - "__typename": [ - 85 - ] - }, - "v_event_player_stats_aggregate_bool_exp_max": { - "arguments": [ - 6705 - ], - "distinct": [ - 6 - ], - "filter": [ - 6694 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_event_player_stats_aggregate_bool_exp_min": { - "arguments": [ - 6706 - ], - "distinct": [ - 6 - ], - "filter": [ - 6694 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_event_player_stats_aggregate_bool_exp_stddev_samp": { - "arguments": [ - 6707 - ], - "distinct": [ - 6 - ], - "filter": [ - 6694 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_event_player_stats_aggregate_bool_exp_sum": { - "arguments": [ - 6708 - ], - "distinct": [ - 6 - ], - "filter": [ - 6694 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_event_player_stats_aggregate_bool_exp_var_samp": { - "arguments": [ - 6709 - ], - "distinct": [ - 6 - ], - "filter": [ - 6694 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_event_player_stats_aggregate_fields": { - "avg": [ - 6692 - ], - "count": [ - 41, - { - "columns": [ - 6701, - "[v_event_player_stats_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 6696 - ], - "min": [ - 6698 - ], - "stddev": [ - 6710 - ], - "stddev_pop": [ - 6712 - ], - "stddev_samp": [ - 6714 - ], - "sum": [ - 6718 - ], - "var_pop": [ - 6720 - ], - "var_samp": [ - 6722 - ], - "variance": [ - 6724 - ], - "__typename": [ - 85 - ] - }, - "v_event_player_stats_aggregate_order_by": { - "avg": [ - 6693 - ], - "count": [ - 3648 - ], - "max": [ - 6697 - ], - "min": [ - 6699 - ], - "stddev": [ - 6711 - ], - "stddev_pop": [ - 6713 - ], - "stddev_samp": [ - 6715 - ], - "sum": [ - 6719 - ], - "var_pop": [ - 6721 - ], - "var_samp": [ - 6723 - ], - "variance": [ - 6725 - ], - "__typename": [ - 85 - ] - }, - "v_event_player_stats_arr_rel_insert_input": { - "data": [ - 6695 - ], - "__typename": [ - 85 - ] - }, - "v_event_player_stats_avg_fields": { - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "headshot_percentage": [ - 32 - ], - "headshots": [ - 32 - ], - "kdr": [ - 32 - ], - "kills": [ - 32 - ], - "matches_played": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_event_player_stats_avg_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kdr": [ - 3648 - ], - "kills": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_event_player_stats_bool_exp": { - "_and": [ - 6694 - ], - "_not": [ - 6694 - ], - "_or": [ - 6694 - ], - "assists": [ - 42 - ], - "deaths": [ - 42 - ], - "event": [ - 2069 - ], - "event_id": [ - 6674 - ], - "headshot_percentage": [ - 2094 - ], - "headshots": [ - 42 - ], - "kdr": [ - 2094 - ], - "kills": [ - 42 - ], - "matches_played": [ - 42 - ], - "player": [ - 4610 - ], - "player_steam_id": [ - 314 - ], - "__typename": [ - 85 - ] - }, - "v_event_player_stats_insert_input": { - "assists": [ - 41 - ], - "deaths": [ - 41 - ], - "event": [ - 2076 - ], - "event_id": [ - 6672 - ], - "headshot_percentage": [ - 2093 - ], - "headshots": [ - 41 - ], - "kdr": [ - 2093 - ], - "kills": [ - 41 - ], - "matches_played": [ - 41 - ], - "player": [ - 4617 - ], - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_event_player_stats_max_fields": { - "assists": [ - 41 - ], - "deaths": [ - 41 - ], - "event_id": [ - 6672 - ], - "headshot_percentage": [ - 2093 - ], - "headshots": [ - 41 - ], - "kdr": [ - 2093 - ], - "kills": [ - 41 - ], - "matches_played": [ - 41 - ], - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_event_player_stats_max_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "event_id": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kdr": [ - 3648 - ], - "kills": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_event_player_stats_min_fields": { - "assists": [ - 41 - ], - "deaths": [ - 41 - ], - "event_id": [ - 6672 - ], - "headshot_percentage": [ - 2093 - ], - "headshots": [ - 41 - ], - "kdr": [ - 2093 - ], - "kills": [ - 41 - ], - "matches_played": [ - 41 - ], - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_event_player_stats_min_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "event_id": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kdr": [ - 3648 - ], - "kills": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_event_player_stats_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "event": [ - 2078 - ], - "event_id": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kdr": [ - 3648 - ], - "kills": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "player": [ - 4619 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_event_player_stats_select_column": {}, - "v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_avg_arguments_columns": {}, - "v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_corr_arguments_columns": {}, - "v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_covar_samp_arguments_columns": {}, - "v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_max_arguments_columns": {}, - "v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_min_arguments_columns": {}, - "v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns": {}, - "v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_sum_arguments_columns": {}, - "v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_var_samp_arguments_columns": {}, - "v_event_player_stats_stddev_fields": { - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "headshot_percentage": [ - 32 - ], - "headshots": [ - 32 - ], - "kdr": [ - 32 - ], - "kills": [ - 32 - ], - "matches_played": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_event_player_stats_stddev_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kdr": [ - 3648 - ], - "kills": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_event_player_stats_stddev_pop_fields": { - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "headshot_percentage": [ - 32 - ], - "headshots": [ - 32 - ], - "kdr": [ - 32 - ], - "kills": [ - 32 - ], - "matches_played": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_event_player_stats_stddev_pop_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kdr": [ - 3648 - ], - "kills": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_event_player_stats_stddev_samp_fields": { - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "headshot_percentage": [ - 32 - ], - "headshots": [ - 32 - ], - "kdr": [ - 32 - ], - "kills": [ - 32 - ], - "matches_played": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_event_player_stats_stddev_samp_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kdr": [ - 3648 - ], - "kills": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_event_player_stats_stream_cursor_input": { - "initial_value": [ - 6717 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "v_event_player_stats_stream_cursor_value_input": { - "assists": [ - 41 - ], - "deaths": [ - 41 - ], - "event_id": [ - 6672 - ], - "headshot_percentage": [ - 2093 - ], - "headshots": [ - 41 - ], - "kdr": [ - 2093 - ], - "kills": [ - 41 - ], - "matches_played": [ - 41 - ], - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_event_player_stats_sum_fields": { - "assists": [ - 41 - ], - "deaths": [ - 41 - ], - "headshot_percentage": [ - 2093 - ], - "headshots": [ - 41 - ], - "kdr": [ - 2093 - ], - "kills": [ - 41 - ], - "matches_played": [ - 41 - ], - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_event_player_stats_sum_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kdr": [ - 3648 - ], - "kills": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_event_player_stats_var_pop_fields": { - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "headshot_percentage": [ - 32 - ], - "headshots": [ - 32 - ], - "kdr": [ - 32 - ], - "kills": [ - 32 - ], - "matches_played": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_event_player_stats_var_pop_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kdr": [ - 3648 - ], - "kills": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_event_player_stats_var_samp_fields": { - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "headshot_percentage": [ - 32 - ], - "headshots": [ - 32 - ], - "kdr": [ - 32 - ], - "kills": [ - 32 - ], - "matches_played": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_event_player_stats_var_samp_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kdr": [ - 3648 - ], - "kills": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_event_player_stats_variance_fields": { - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "headshot_percentage": [ - 32 - ], - "headshots": [ - 32 - ], - "kdr": [ - 32 - ], - "kills": [ - 32 - ], - "matches_played": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_event_player_stats_variance_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kdr": [ - 3648 - ], - "kills": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_gpu_pool_status": { - "demo_free_gpu_nodes": [ - 41 - ], - "demo_in_progress": [ - 6 - ], - "demo_total_gpu_nodes": [ - 41 - ], - "free_gpu_nodes": [ - 41 - ], - "free_gpu_nodes_for_batch": [ - 41 - ], - "highlights_in_progress": [ - 6 - ], - "id": [ - 41 - ], - "live_in_progress": [ - 6 - ], - "registered_gpu_nodes": [ - 41 - ], - "rendering_total_gpu_nodes": [ - 41 - ], - "renders_paused_for_active_match": [ - 6 - ], - "streaming_free_gpu_nodes": [ - 41 - ], - "streaming_total_gpu_nodes": [ - 41 - ], - "total_gpu_nodes": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_gpu_pool_status_aggregate": { - "aggregate": [ - 6728 - ], - "nodes": [ - 6726 - ], - "__typename": [ - 85 - ] - }, - "v_gpu_pool_status_aggregate_fields": { - "avg": [ - 6729 - ], - "count": [ - 41, - { - "columns": [ - 6734, - "[v_gpu_pool_status_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 6731 - ], - "min": [ - 6732 - ], - "stddev": [ - 6735 - ], - "stddev_pop": [ - 6736 - ], - "stddev_samp": [ - 6737 - ], - "sum": [ - 6740 - ], - "var_pop": [ - 6741 - ], - "var_samp": [ - 6742 - ], - "variance": [ - 6743 - ], - "__typename": [ - 85 - ] - }, - "v_gpu_pool_status_avg_fields": { - "demo_free_gpu_nodes": [ - 32 - ], - "demo_total_gpu_nodes": [ - 32 - ], - "free_gpu_nodes": [ - 32 - ], - "free_gpu_nodes_for_batch": [ - 32 - ], - "id": [ - 32 - ], - "registered_gpu_nodes": [ - 32 - ], - "rendering_total_gpu_nodes": [ - 32 - ], - "streaming_free_gpu_nodes": [ - 32 - ], - "streaming_total_gpu_nodes": [ - 32 - ], - "total_gpu_nodes": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_gpu_pool_status_bool_exp": { - "_and": [ - 6730 - ], - "_not": [ - 6730 - ], - "_or": [ - 6730 - ], - "demo_free_gpu_nodes": [ - 42 - ], - "demo_in_progress": [ - 7 - ], - "demo_total_gpu_nodes": [ - 42 - ], - "free_gpu_nodes": [ - 42 - ], - "free_gpu_nodes_for_batch": [ - 42 - ], - "highlights_in_progress": [ - 7 - ], - "id": [ - 42 - ], - "live_in_progress": [ - 7 - ], - "registered_gpu_nodes": [ - 42 - ], - "rendering_total_gpu_nodes": [ - 42 - ], - "renders_paused_for_active_match": [ - 7 - ], - "streaming_free_gpu_nodes": [ - 42 - ], - "streaming_total_gpu_nodes": [ - 42 - ], - "total_gpu_nodes": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "v_gpu_pool_status_max_fields": { - "demo_free_gpu_nodes": [ - 41 - ], - "demo_total_gpu_nodes": [ - 41 - ], - "free_gpu_nodes": [ - 41 - ], - "free_gpu_nodes_for_batch": [ - 41 - ], - "id": [ - 41 - ], - "registered_gpu_nodes": [ - 41 - ], - "rendering_total_gpu_nodes": [ - 41 - ], - "streaming_free_gpu_nodes": [ - 41 - ], - "streaming_total_gpu_nodes": [ - 41 - ], - "total_gpu_nodes": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_gpu_pool_status_min_fields": { - "demo_free_gpu_nodes": [ - 41 - ], - "demo_total_gpu_nodes": [ - 41 - ], - "free_gpu_nodes": [ - 41 - ], - "free_gpu_nodes_for_batch": [ - 41 - ], - "id": [ - 41 - ], - "registered_gpu_nodes": [ - 41 - ], - "rendering_total_gpu_nodes": [ - 41 - ], - "streaming_free_gpu_nodes": [ - 41 - ], - "streaming_total_gpu_nodes": [ - 41 - ], - "total_gpu_nodes": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_gpu_pool_status_order_by": { - "demo_free_gpu_nodes": [ - 3648 - ], - "demo_in_progress": [ - 3648 - ], - "demo_total_gpu_nodes": [ - 3648 - ], - "free_gpu_nodes": [ - 3648 - ], - "free_gpu_nodes_for_batch": [ - 3648 - ], - "highlights_in_progress": [ - 3648 - ], - "id": [ - 3648 - ], - "live_in_progress": [ - 3648 - ], - "registered_gpu_nodes": [ - 3648 - ], - "rendering_total_gpu_nodes": [ - 3648 - ], - "renders_paused_for_active_match": [ - 3648 - ], - "streaming_free_gpu_nodes": [ - 3648 - ], - "streaming_total_gpu_nodes": [ - 3648 - ], - "total_gpu_nodes": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_gpu_pool_status_select_column": {}, - "v_gpu_pool_status_stddev_fields": { - "demo_free_gpu_nodes": [ - 32 - ], - "demo_total_gpu_nodes": [ - 32 - ], - "free_gpu_nodes": [ - 32 - ], - "free_gpu_nodes_for_batch": [ - 32 - ], - "id": [ - 32 - ], - "registered_gpu_nodes": [ - 32 - ], - "rendering_total_gpu_nodes": [ - 32 - ], - "streaming_free_gpu_nodes": [ - 32 - ], - "streaming_total_gpu_nodes": [ - 32 - ], - "total_gpu_nodes": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_gpu_pool_status_stddev_pop_fields": { - "demo_free_gpu_nodes": [ - 32 - ], - "demo_total_gpu_nodes": [ - 32 - ], - "free_gpu_nodes": [ - 32 - ], - "free_gpu_nodes_for_batch": [ - 32 - ], - "id": [ - 32 - ], - "registered_gpu_nodes": [ - 32 - ], - "rendering_total_gpu_nodes": [ - 32 - ], - "streaming_free_gpu_nodes": [ - 32 - ], - "streaming_total_gpu_nodes": [ - 32 - ], - "total_gpu_nodes": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_gpu_pool_status_stddev_samp_fields": { - "demo_free_gpu_nodes": [ - 32 - ], - "demo_total_gpu_nodes": [ - 32 - ], - "free_gpu_nodes": [ - 32 - ], - "free_gpu_nodes_for_batch": [ - 32 - ], - "id": [ - 32 - ], - "registered_gpu_nodes": [ - 32 - ], - "rendering_total_gpu_nodes": [ - 32 - ], - "streaming_free_gpu_nodes": [ - 32 - ], - "streaming_total_gpu_nodes": [ - 32 - ], - "total_gpu_nodes": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_gpu_pool_status_stream_cursor_input": { - "initial_value": [ - 6739 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "v_gpu_pool_status_stream_cursor_value_input": { - "demo_free_gpu_nodes": [ - 41 - ], - "demo_in_progress": [ - 6 - ], - "demo_total_gpu_nodes": [ - 41 - ], - "free_gpu_nodes": [ - 41 - ], - "free_gpu_nodes_for_batch": [ - 41 - ], - "highlights_in_progress": [ - 6 - ], - "id": [ - 41 - ], - "live_in_progress": [ - 6 - ], - "registered_gpu_nodes": [ - 41 - ], - "rendering_total_gpu_nodes": [ - 41 - ], - "renders_paused_for_active_match": [ - 6 - ], - "streaming_free_gpu_nodes": [ - 41 - ], - "streaming_total_gpu_nodes": [ - 41 - ], - "total_gpu_nodes": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_gpu_pool_status_sum_fields": { - "demo_free_gpu_nodes": [ - 41 - ], - "demo_total_gpu_nodes": [ - 41 - ], - "free_gpu_nodes": [ - 41 - ], - "free_gpu_nodes_for_batch": [ - 41 - ], - "id": [ - 41 - ], - "registered_gpu_nodes": [ - 41 - ], - "rendering_total_gpu_nodes": [ - 41 - ], - "streaming_free_gpu_nodes": [ - 41 - ], - "streaming_total_gpu_nodes": [ - 41 - ], - "total_gpu_nodes": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_gpu_pool_status_var_pop_fields": { - "demo_free_gpu_nodes": [ - 32 - ], - "demo_total_gpu_nodes": [ - 32 - ], - "free_gpu_nodes": [ - 32 - ], - "free_gpu_nodes_for_batch": [ - 32 - ], - "id": [ - 32 - ], - "registered_gpu_nodes": [ - 32 - ], - "rendering_total_gpu_nodes": [ - 32 - ], - "streaming_free_gpu_nodes": [ - 32 - ], - "streaming_total_gpu_nodes": [ - 32 - ], - "total_gpu_nodes": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_gpu_pool_status_var_samp_fields": { - "demo_free_gpu_nodes": [ - 32 - ], - "demo_total_gpu_nodes": [ - 32 - ], - "free_gpu_nodes": [ - 32 - ], - "free_gpu_nodes_for_batch": [ - 32 - ], - "id": [ - 32 - ], - "registered_gpu_nodes": [ - 32 - ], - "rendering_total_gpu_nodes": [ - 32 - ], - "streaming_free_gpu_nodes": [ - 32 - ], - "streaming_total_gpu_nodes": [ - 32 - ], - "total_gpu_nodes": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_gpu_pool_status_variance_fields": { - "demo_free_gpu_nodes": [ - 32 - ], - "demo_total_gpu_nodes": [ - 32 - ], - "free_gpu_nodes": [ - 32 - ], - "free_gpu_nodes_for_batch": [ - 32 - ], - "id": [ - 32 - ], - "registered_gpu_nodes": [ - 32 - ], - "rendering_total_gpu_nodes": [ - 32 - ], - "streaming_free_gpu_nodes": [ - 32 - ], - "streaming_total_gpu_nodes": [ - 32 - ], - "total_gpu_nodes": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_league_division_standings": { - "head_to_head_match_wins": [ - 41 - ], - "head_to_head_rounds_won": [ - 41 - ], - "league_division_id": [ - 6672 - ], - "league_season_division_id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "league_team": [ - 2799 - ], - "league_team_id": [ - 6672 - ], - "league_team_season_id": [ - 6672 - ], - "losses": [ - 41 - ], - "maps_lost": [ - 41 - ], - "maps_won": [ - 41 - ], - "matches_played": [ - 41 - ], - "matches_remaining": [ - 41 - ], - "rank": [ - 41 - ], - "round_diff": [ - 41 - ], - "rounds_lost": [ - 41 - ], - "rounds_won": [ - 41 - ], - "season_division": [ - 2617 - ], - "team_season": [ - 2757 - ], - "tournament_team_id": [ - 6672 - ], - "wins": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_league_division_standings_aggregate": { - "aggregate": [ - 6748 - ], - "nodes": [ - 6744 - ], - "__typename": [ - 85 - ] - }, - "v_league_division_standings_aggregate_bool_exp": { - "count": [ - 6747 - ], - "__typename": [ - 85 - ] - }, - "v_league_division_standings_aggregate_bool_exp_count": { - "arguments": [ - 6760 - ], - "distinct": [ - 6 - ], - "filter": [ - 6753 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "v_league_division_standings_aggregate_fields": { - "avg": [ - 6751 - ], - "count": [ - 41, - { - "columns": [ - 6760, - "[v_league_division_standings_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 6755 - ], - "min": [ - 6757 - ], - "stddev": [ - 6761 - ], - "stddev_pop": [ - 6763 - ], - "stddev_samp": [ - 6765 - ], - "sum": [ - 6769 - ], - "var_pop": [ - 6771 - ], - "var_samp": [ - 6773 - ], - "variance": [ - 6775 - ], - "__typename": [ - 85 - ] - }, - "v_league_division_standings_aggregate_order_by": { - "avg": [ - 6752 - ], - "count": [ - 3648 - ], - "max": [ - 6756 - ], - "min": [ - 6758 - ], - "stddev": [ - 6762 - ], - "stddev_pop": [ - 6764 - ], - "stddev_samp": [ - 6766 - ], - "sum": [ - 6770 - ], - "var_pop": [ - 6772 - ], - "var_samp": [ - 6774 - ], - "variance": [ - 6776 - ], - "__typename": [ - 85 - ] - }, - "v_league_division_standings_arr_rel_insert_input": { - "data": [ - 6754 - ], - "__typename": [ - 85 - ] - }, - "v_league_division_standings_avg_fields": { - "head_to_head_match_wins": [ - 32 - ], - "head_to_head_rounds_won": [ - 32 - ], - "losses": [ - 32 - ], - "maps_lost": [ - 32 - ], - "maps_won": [ - 32 - ], - "matches_played": [ - 32 - ], - "matches_remaining": [ - 32 - ], - "rank": [ - 32 - ], - "round_diff": [ - 32 - ], - "rounds_lost": [ - 32 - ], - "rounds_won": [ - 32 - ], - "wins": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_league_division_standings_avg_order_by": { - "head_to_head_match_wins": [ - 3648 - ], - "head_to_head_rounds_won": [ - 3648 - ], - "losses": [ - 3648 - ], - "maps_lost": [ - 3648 - ], - "maps_won": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "matches_remaining": [ - 3648 - ], - "rank": [ - 3648 - ], - "round_diff": [ - 3648 - ], - "rounds_lost": [ - 3648 - ], - "rounds_won": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_league_division_standings_bool_exp": { - "_and": [ - 6753 - ], - "_not": [ - 6753 - ], - "_or": [ - 6753 - ], - "head_to_head_match_wins": [ - 42 - ], - "head_to_head_rounds_won": [ - 42 - ], - "league_division_id": [ - 6674 - ], - "league_season_division_id": [ - 6674 - ], - "league_season_id": [ - 6674 - ], - "league_team": [ - 2802 - ], - "league_team_id": [ - 6674 - ], - "league_team_season_id": [ - 6674 - ], - "losses": [ - 42 - ], - "maps_lost": [ - 42 - ], - "maps_won": [ - 42 - ], - "matches_played": [ - 42 - ], - "matches_remaining": [ - 42 - ], - "rank": [ - 42 - ], - "round_diff": [ - 42 - ], - "rounds_lost": [ - 42 - ], - "rounds_won": [ - 42 - ], - "season_division": [ - 2624 - ], - "team_season": [ - 2766 - ], - "tournament_team_id": [ - 6674 - ], - "wins": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "v_league_division_standings_insert_input": { - "head_to_head_match_wins": [ - 41 - ], - "head_to_head_rounds_won": [ - 41 - ], - "league_division_id": [ - 6672 - ], - "league_season_division_id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "league_team": [ - 2808 - ], - "league_team_id": [ - 6672 - ], - "league_team_season_id": [ - 6672 - ], - "losses": [ - 41 - ], - "maps_lost": [ - 41 - ], - "maps_won": [ - 41 - ], - "matches_played": [ - 41 - ], - "matches_remaining": [ - 41 - ], - "rank": [ - 41 - ], - "round_diff": [ - 41 - ], - "rounds_lost": [ - 41 - ], - "rounds_won": [ - 41 - ], - "season_division": [ - 2632 - ], - "team_season": [ - 2775 - ], - "tournament_team_id": [ - 6672 - ], - "wins": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_league_division_standings_max_fields": { - "head_to_head_match_wins": [ - 41 - ], - "head_to_head_rounds_won": [ - 41 - ], - "league_division_id": [ - 6672 - ], - "league_season_division_id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "league_team_id": [ - 6672 - ], - "league_team_season_id": [ - 6672 - ], - "losses": [ - 41 - ], - "maps_lost": [ - 41 - ], - "maps_won": [ - 41 - ], - "matches_played": [ - 41 - ], - "matches_remaining": [ - 41 - ], - "rank": [ - 41 - ], - "round_diff": [ - 41 - ], - "rounds_lost": [ - 41 - ], - "rounds_won": [ - 41 - ], - "tournament_team_id": [ - 6672 - ], - "wins": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_league_division_standings_max_order_by": { - "head_to_head_match_wins": [ - 3648 - ], - "head_to_head_rounds_won": [ - 3648 - ], - "league_division_id": [ - 3648 - ], - "league_season_division_id": [ - 3648 - ], - "league_season_id": [ - 3648 - ], - "league_team_id": [ - 3648 - ], - "league_team_season_id": [ - 3648 - ], - "losses": [ - 3648 - ], - "maps_lost": [ - 3648 - ], - "maps_won": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "matches_remaining": [ - 3648 - ], - "rank": [ - 3648 - ], - "round_diff": [ - 3648 - ], - "rounds_lost": [ - 3648 - ], - "rounds_won": [ - 3648 - ], - "tournament_team_id": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_league_division_standings_min_fields": { - "head_to_head_match_wins": [ - 41 - ], - "head_to_head_rounds_won": [ - 41 - ], - "league_division_id": [ - 6672 - ], - "league_season_division_id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "league_team_id": [ - 6672 - ], - "league_team_season_id": [ - 6672 - ], - "losses": [ - 41 - ], - "maps_lost": [ - 41 - ], - "maps_won": [ - 41 - ], - "matches_played": [ - 41 - ], - "matches_remaining": [ - 41 - ], - "rank": [ - 41 - ], - "round_diff": [ - 41 - ], - "rounds_lost": [ - 41 - ], - "rounds_won": [ - 41 - ], - "tournament_team_id": [ - 6672 - ], - "wins": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_league_division_standings_min_order_by": { - "head_to_head_match_wins": [ - 3648 - ], - "head_to_head_rounds_won": [ - 3648 - ], - "league_division_id": [ - 3648 - ], - "league_season_division_id": [ - 3648 - ], - "league_season_id": [ - 3648 - ], - "league_team_id": [ - 3648 - ], - "league_team_season_id": [ - 3648 - ], - "losses": [ - 3648 - ], - "maps_lost": [ - 3648 - ], - "maps_won": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "matches_remaining": [ - 3648 - ], - "rank": [ - 3648 - ], - "round_diff": [ - 3648 - ], - "rounds_lost": [ - 3648 - ], - "rounds_won": [ - 3648 - ], - "tournament_team_id": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_league_division_standings_order_by": { - "head_to_head_match_wins": [ - 3648 - ], - "head_to_head_rounds_won": [ - 3648 - ], - "league_division_id": [ - 3648 - ], - "league_season_division_id": [ - 3648 - ], - "league_season_id": [ - 3648 - ], - "league_team": [ - 2810 - ], - "league_team_id": [ - 3648 - ], - "league_team_season_id": [ - 3648 - ], - "losses": [ - 3648 - ], - "maps_lost": [ - 3648 - ], - "maps_won": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "matches_remaining": [ - 3648 - ], - "rank": [ - 3648 - ], - "round_diff": [ - 3648 - ], - "rounds_lost": [ - 3648 - ], - "rounds_won": [ - 3648 - ], - "season_division": [ - 2634 - ], - "team_season": [ - 2777 - ], - "tournament_team_id": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_league_division_standings_select_column": {}, - "v_league_division_standings_stddev_fields": { - "head_to_head_match_wins": [ - 32 - ], - "head_to_head_rounds_won": [ - 32 - ], - "losses": [ - 32 - ], - "maps_lost": [ - 32 - ], - "maps_won": [ - 32 - ], - "matches_played": [ - 32 - ], - "matches_remaining": [ - 32 - ], - "rank": [ - 32 - ], - "round_diff": [ - 32 - ], - "rounds_lost": [ - 32 - ], - "rounds_won": [ - 32 - ], - "wins": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_league_division_standings_stddev_order_by": { - "head_to_head_match_wins": [ - 3648 - ], - "head_to_head_rounds_won": [ - 3648 - ], - "losses": [ - 3648 - ], - "maps_lost": [ - 3648 - ], - "maps_won": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "matches_remaining": [ - 3648 - ], - "rank": [ - 3648 - ], - "round_diff": [ - 3648 - ], - "rounds_lost": [ - 3648 - ], - "rounds_won": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_league_division_standings_stddev_pop_fields": { - "head_to_head_match_wins": [ - 32 - ], - "head_to_head_rounds_won": [ - 32 - ], - "losses": [ - 32 - ], - "maps_lost": [ - 32 - ], - "maps_won": [ - 32 - ], - "matches_played": [ - 32 - ], - "matches_remaining": [ - 32 - ], - "rank": [ - 32 - ], - "round_diff": [ - 32 - ], - "rounds_lost": [ - 32 - ], - "rounds_won": [ - 32 - ], - "wins": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_league_division_standings_stddev_pop_order_by": { - "head_to_head_match_wins": [ - 3648 - ], - "head_to_head_rounds_won": [ - 3648 - ], - "losses": [ - 3648 - ], - "maps_lost": [ - 3648 - ], - "maps_won": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "matches_remaining": [ - 3648 - ], - "rank": [ - 3648 - ], - "round_diff": [ - 3648 - ], - "rounds_lost": [ - 3648 - ], - "rounds_won": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_league_division_standings_stddev_samp_fields": { - "head_to_head_match_wins": [ - 32 - ], - "head_to_head_rounds_won": [ - 32 - ], - "losses": [ - 32 - ], - "maps_lost": [ - 32 - ], - "maps_won": [ - 32 - ], - "matches_played": [ - 32 - ], - "matches_remaining": [ - 32 - ], - "rank": [ - 32 - ], - "round_diff": [ - 32 - ], - "rounds_lost": [ - 32 - ], - "rounds_won": [ - 32 - ], - "wins": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_league_division_standings_stddev_samp_order_by": { - "head_to_head_match_wins": [ - 3648 - ], - "head_to_head_rounds_won": [ - 3648 - ], - "losses": [ - 3648 - ], - "maps_lost": [ - 3648 - ], - "maps_won": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "matches_remaining": [ - 3648 - ], - "rank": [ - 3648 - ], - "round_diff": [ - 3648 - ], - "rounds_lost": [ - 3648 - ], - "rounds_won": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_league_division_standings_stream_cursor_input": { - "initial_value": [ - 6768 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "v_league_division_standings_stream_cursor_value_input": { - "head_to_head_match_wins": [ - 41 - ], - "head_to_head_rounds_won": [ - 41 - ], - "league_division_id": [ - 6672 - ], - "league_season_division_id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "league_team_id": [ - 6672 - ], - "league_team_season_id": [ - 6672 - ], - "losses": [ - 41 - ], - "maps_lost": [ - 41 - ], - "maps_won": [ - 41 - ], - "matches_played": [ - 41 - ], - "matches_remaining": [ - 41 - ], - "rank": [ - 41 - ], - "round_diff": [ - 41 - ], - "rounds_lost": [ - 41 - ], - "rounds_won": [ - 41 - ], - "tournament_team_id": [ - 6672 - ], - "wins": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_league_division_standings_sum_fields": { - "head_to_head_match_wins": [ - 41 - ], - "head_to_head_rounds_won": [ - 41 - ], - "losses": [ - 41 - ], - "maps_lost": [ - 41 - ], - "maps_won": [ - 41 - ], - "matches_played": [ - 41 - ], - "matches_remaining": [ - 41 - ], - "rank": [ - 41 - ], - "round_diff": [ - 41 - ], - "rounds_lost": [ - 41 - ], - "rounds_won": [ - 41 - ], - "wins": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_league_division_standings_sum_order_by": { - "head_to_head_match_wins": [ - 3648 - ], - "head_to_head_rounds_won": [ - 3648 - ], - "losses": [ - 3648 - ], - "maps_lost": [ - 3648 - ], - "maps_won": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "matches_remaining": [ - 3648 - ], - "rank": [ - 3648 - ], - "round_diff": [ - 3648 - ], - "rounds_lost": [ - 3648 - ], - "rounds_won": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_league_division_standings_var_pop_fields": { - "head_to_head_match_wins": [ - 32 - ], - "head_to_head_rounds_won": [ - 32 - ], - "losses": [ - 32 - ], - "maps_lost": [ - 32 - ], - "maps_won": [ - 32 - ], - "matches_played": [ - 32 - ], - "matches_remaining": [ - 32 - ], - "rank": [ - 32 - ], - "round_diff": [ - 32 - ], - "rounds_lost": [ - 32 - ], - "rounds_won": [ - 32 - ], - "wins": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_league_division_standings_var_pop_order_by": { - "head_to_head_match_wins": [ - 3648 - ], - "head_to_head_rounds_won": [ - 3648 - ], - "losses": [ - 3648 - ], - "maps_lost": [ - 3648 - ], - "maps_won": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "matches_remaining": [ - 3648 - ], - "rank": [ - 3648 - ], - "round_diff": [ - 3648 - ], - "rounds_lost": [ - 3648 - ], - "rounds_won": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_league_division_standings_var_samp_fields": { - "head_to_head_match_wins": [ - 32 - ], - "head_to_head_rounds_won": [ - 32 - ], - "losses": [ - 32 - ], - "maps_lost": [ - 32 - ], - "maps_won": [ - 32 - ], - "matches_played": [ - 32 - ], - "matches_remaining": [ - 32 - ], - "rank": [ - 32 - ], - "round_diff": [ - 32 - ], - "rounds_lost": [ - 32 - ], - "rounds_won": [ - 32 - ], - "wins": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_league_division_standings_var_samp_order_by": { - "head_to_head_match_wins": [ - 3648 - ], - "head_to_head_rounds_won": [ - 3648 - ], - "losses": [ - 3648 - ], - "maps_lost": [ - 3648 - ], - "maps_won": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "matches_remaining": [ - 3648 - ], - "rank": [ - 3648 - ], - "round_diff": [ - 3648 - ], - "rounds_lost": [ - 3648 - ], - "rounds_won": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_league_division_standings_variance_fields": { - "head_to_head_match_wins": [ - 32 - ], - "head_to_head_rounds_won": [ - 32 - ], - "losses": [ - 32 - ], - "maps_lost": [ - 32 - ], - "maps_won": [ - 32 - ], - "matches_played": [ - 32 - ], - "matches_remaining": [ - 32 - ], - "rank": [ - 32 - ], - "round_diff": [ - 32 - ], - "rounds_lost": [ - 32 - ], - "rounds_won": [ - 32 - ], - "wins": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_league_division_standings_variance_order_by": { - "head_to_head_match_wins": [ - 3648 - ], - "head_to_head_rounds_won": [ - 3648 - ], - "losses": [ - 3648 - ], - "maps_lost": [ - 3648 - ], - "maps_won": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "matches_remaining": [ - 3648 - ], - "rank": [ - 3648 - ], - "round_diff": [ - 3648 - ], - "rounds_lost": [ - 3648 - ], - "rounds_won": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_league_season_player_stats": { - "assists": [ - 41 - ], - "deaths": [ - 41 - ], - "headshot_percentage": [ - 2093 - ], - "headshots": [ - 41 - ], - "kdr": [ - 2093 - ], - "kills": [ - 41 - ], - "league_division_id": [ - 6672 - ], - "league_season_division_id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "league_team": [ - 2799 - ], - "league_team_id": [ - 6672 - ], - "league_team_season_id": [ - 6672 - ], - "matches_played": [ - 41 - ], - "player": [ - 4606 - ], - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_league_season_player_stats_aggregate": { - "aggregate": [ - 6791 - ], - "nodes": [ - 6777 - ], - "__typename": [ - 85 - ] - }, - "v_league_season_player_stats_aggregate_bool_exp": { - "avg": [ - 6780 - ], - "corr": [ - 6781 - ], - "count": [ - 6783 - ], - "covar_samp": [ - 6784 - ], - "max": [ - 6786 - ], - "min": [ - 6787 - ], - "stddev_samp": [ - 6788 - ], - "sum": [ - 6789 - ], - "var_samp": [ - 6790 - ], - "__typename": [ - 85 - ] - }, - "v_league_season_player_stats_aggregate_bool_exp_avg": { - "arguments": [ - 6804 - ], - "distinct": [ - 6 - ], - "filter": [ - 6796 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_league_season_player_stats_aggregate_bool_exp_corr": { - "arguments": [ - 6782 - ], - "distinct": [ - 6 - ], - "filter": [ - 6796 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_league_season_player_stats_aggregate_bool_exp_corr_arguments": { - "X": [ - 6805 - ], - "Y": [ - 6805 - ], - "__typename": [ - 85 - ] - }, - "v_league_season_player_stats_aggregate_bool_exp_count": { - "arguments": [ - 6803 - ], - "distinct": [ - 6 - ], - "filter": [ - 6796 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "v_league_season_player_stats_aggregate_bool_exp_covar_samp": { - "arguments": [ - 6785 - ], - "distinct": [ - 6 - ], - "filter": [ - 6796 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments": { - "X": [ - 6806 - ], - "Y": [ - 6806 - ], - "__typename": [ - 85 - ] - }, - "v_league_season_player_stats_aggregate_bool_exp_max": { - "arguments": [ - 6807 - ], - "distinct": [ - 6 - ], - "filter": [ - 6796 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_league_season_player_stats_aggregate_bool_exp_min": { - "arguments": [ - 6808 - ], - "distinct": [ - 6 - ], - "filter": [ - 6796 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_league_season_player_stats_aggregate_bool_exp_stddev_samp": { - "arguments": [ - 6809 - ], - "distinct": [ - 6 - ], - "filter": [ - 6796 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_league_season_player_stats_aggregate_bool_exp_sum": { - "arguments": [ - 6810 - ], - "distinct": [ - 6 - ], - "filter": [ - 6796 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_league_season_player_stats_aggregate_bool_exp_var_samp": { - "arguments": [ - 6811 - ], - "distinct": [ - 6 - ], - "filter": [ - 6796 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_league_season_player_stats_aggregate_fields": { - "avg": [ - 6794 - ], - "count": [ - 41, - { - "columns": [ - 6803, - "[v_league_season_player_stats_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 6798 - ], - "min": [ - 6800 - ], - "stddev": [ - 6812 - ], - "stddev_pop": [ - 6814 - ], - "stddev_samp": [ - 6816 - ], - "sum": [ - 6820 - ], - "var_pop": [ - 6822 - ], - "var_samp": [ - 6824 - ], - "variance": [ - 6826 - ], - "__typename": [ - 85 - ] - }, - "v_league_season_player_stats_aggregate_order_by": { - "avg": [ - 6795 - ], - "count": [ - 3648 - ], - "max": [ - 6799 - ], - "min": [ - 6801 - ], - "stddev": [ - 6813 - ], - "stddev_pop": [ - 6815 - ], - "stddev_samp": [ - 6817 - ], - "sum": [ - 6821 - ], - "var_pop": [ - 6823 - ], - "var_samp": [ - 6825 - ], - "variance": [ - 6827 - ], - "__typename": [ - 85 - ] - }, - "v_league_season_player_stats_arr_rel_insert_input": { - "data": [ - 6797 - ], - "__typename": [ - 85 - ] - }, - "v_league_season_player_stats_avg_fields": { - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "headshot_percentage": [ - 32 - ], - "headshots": [ - 32 - ], - "kdr": [ - 32 - ], - "kills": [ - 32 - ], - "matches_played": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_league_season_player_stats_avg_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kdr": [ - 3648 - ], - "kills": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_league_season_player_stats_bool_exp": { - "_and": [ - 6796 - ], - "_not": [ - 6796 - ], - "_or": [ - 6796 - ], - "assists": [ - 42 - ], - "deaths": [ - 42 - ], - "headshot_percentage": [ - 2094 - ], - "headshots": [ - 42 - ], - "kdr": [ - 2094 - ], - "kills": [ - 42 - ], - "league_division_id": [ - 6674 - ], - "league_season_division_id": [ - 6674 - ], - "league_season_id": [ - 6674 - ], - "league_team": [ - 2802 - ], - "league_team_id": [ - 6674 - ], - "league_team_season_id": [ - 6674 - ], - "matches_played": [ - 42 - ], - "player": [ - 4610 - ], - "player_steam_id": [ - 314 - ], - "__typename": [ - 85 - ] - }, - "v_league_season_player_stats_insert_input": { - "assists": [ - 41 - ], - "deaths": [ - 41 - ], - "headshot_percentage": [ - 2093 - ], - "headshots": [ - 41 - ], - "kdr": [ - 2093 - ], - "kills": [ - 41 - ], - "league_division_id": [ - 6672 - ], - "league_season_division_id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "league_team": [ - 2808 - ], - "league_team_id": [ - 6672 - ], - "league_team_season_id": [ - 6672 - ], - "matches_played": [ - 41 - ], - "player": [ - 4617 - ], - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_league_season_player_stats_max_fields": { - "assists": [ - 41 - ], - "deaths": [ - 41 - ], - "headshot_percentage": [ - 2093 - ], - "headshots": [ - 41 - ], - "kdr": [ - 2093 - ], - "kills": [ - 41 - ], - "league_division_id": [ - 6672 - ], - "league_season_division_id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "league_team_id": [ - 6672 - ], - "league_team_season_id": [ - 6672 - ], - "matches_played": [ - 41 - ], - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_league_season_player_stats_max_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kdr": [ - 3648 - ], - "kills": [ - 3648 - ], - "league_division_id": [ - 3648 - ], - "league_season_division_id": [ - 3648 - ], - "league_season_id": [ - 3648 - ], - "league_team_id": [ - 3648 - ], - "league_team_season_id": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_league_season_player_stats_min_fields": { - "assists": [ - 41 - ], - "deaths": [ - 41 - ], - "headshot_percentage": [ - 2093 - ], - "headshots": [ - 41 - ], - "kdr": [ - 2093 - ], - "kills": [ - 41 - ], - "league_division_id": [ - 6672 - ], - "league_season_division_id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "league_team_id": [ - 6672 - ], - "league_team_season_id": [ - 6672 - ], - "matches_played": [ - 41 - ], - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_league_season_player_stats_min_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kdr": [ - 3648 - ], - "kills": [ - 3648 - ], - "league_division_id": [ - 3648 - ], - "league_season_division_id": [ - 3648 - ], - "league_season_id": [ - 3648 - ], - "league_team_id": [ - 3648 - ], - "league_team_season_id": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_league_season_player_stats_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kdr": [ - 3648 - ], - "kills": [ - 3648 - ], - "league_division_id": [ - 3648 - ], - "league_season_division_id": [ - 3648 - ], - "league_season_id": [ - 3648 - ], - "league_team": [ - 2810 - ], - "league_team_id": [ - 3648 - ], - "league_team_season_id": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "player": [ - 4619 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_league_season_player_stats_select_column": {}, - "v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_avg_arguments_columns": {}, - "v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_corr_arguments_columns": {}, - "v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments_columns": {}, - "v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_max_arguments_columns": {}, - "v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_min_arguments_columns": {}, - "v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns": {}, - "v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_sum_arguments_columns": {}, - "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": [ - 32 - ], - "deaths": [ - 32 - ], - "headshot_percentage": [ - 32 - ], - "headshots": [ - 32 - ], - "kdr": [ - 32 - ], - "kills": [ - 32 - ], - "matches_played": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_league_season_player_stats_stddev_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kdr": [ - 3648 - ], - "kills": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_league_season_player_stats_stddev_pop_fields": { - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "headshot_percentage": [ - 32 - ], - "headshots": [ - 32 - ], - "kdr": [ - 32 - ], - "kills": [ - 32 - ], - "matches_played": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_league_season_player_stats_stddev_pop_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kdr": [ - 3648 - ], - "kills": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_league_season_player_stats_stddev_samp_fields": { - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "headshot_percentage": [ - 32 - ], - "headshots": [ - 32 - ], - "kdr": [ - 32 - ], - "kills": [ - 32 - ], - "matches_played": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_league_season_player_stats_stddev_samp_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kdr": [ - 3648 - ], - "kills": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_league_season_player_stats_stream_cursor_input": { - "initial_value": [ - 6819 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "v_league_season_player_stats_stream_cursor_value_input": { - "assists": [ - 41 - ], - "deaths": [ - 41 - ], - "headshot_percentage": [ - 2093 - ], - "headshots": [ - 41 - ], - "kdr": [ - 2093 - ], - "kills": [ - 41 - ], - "league_division_id": [ - 6672 - ], - "league_season_division_id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "league_team_id": [ - 6672 - ], - "league_team_season_id": [ - 6672 - ], - "matches_played": [ - 41 - ], - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_league_season_player_stats_sum_fields": { - "assists": [ - 41 - ], - "deaths": [ - 41 - ], - "headshot_percentage": [ - 2093 - ], - "headshots": [ - 41 - ], - "kdr": [ - 2093 - ], - "kills": [ - 41 - ], - "matches_played": [ - 41 - ], - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_league_season_player_stats_sum_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kdr": [ - 3648 - ], - "kills": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_league_season_player_stats_var_pop_fields": { - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "headshot_percentage": [ - 32 - ], - "headshots": [ - 32 - ], - "kdr": [ - 32 - ], - "kills": [ - 32 - ], - "matches_played": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_league_season_player_stats_var_pop_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kdr": [ - 3648 - ], - "kills": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_league_season_player_stats_var_samp_fields": { - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "headshot_percentage": [ - 32 - ], - "headshots": [ - 32 - ], - "kdr": [ - 32 - ], - "kills": [ - 32 - ], - "matches_played": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_league_season_player_stats_var_samp_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kdr": [ - 3648 - ], - "kills": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_league_season_player_stats_variance_fields": { - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "headshot_percentage": [ - 32 - ], - "headshots": [ - 32 - ], - "kdr": [ - 32 - ], - "kills": [ - 32 - ], - "matches_played": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_league_season_player_stats_variance_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kdr": [ - 3648 - ], - "kills": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_match_captains": { - "captain": [ - 6 - ], - "discord_id": [ - 85 - ], - "id": [ - 6672 - ], - "lineup": [ - 3086 - ], - "match_lineup_id": [ - 6672 - ], - "placeholder_name": [ - 85 - ], - "player": [ - 4606 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_match_captains_aggregate": { - "aggregate": [ - 6830 - ], - "nodes": [ - 6828 - ], - "__typename": [ - 85 - ] - }, - "v_match_captains_aggregate_fields": { - "avg": [ - 6831 - ], - "count": [ - 41, - { - "columns": [ - 6840, - "[v_match_captains_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 6835 - ], - "min": [ - 6836 - ], - "stddev": [ - 6842 - ], - "stddev_pop": [ - 6843 - ], - "stddev_samp": [ - 6844 - ], - "sum": [ - 6847 - ], - "var_pop": [ - 6849 - ], - "var_samp": [ - 6850 - ], - "variance": [ - 6851 - ], - "__typename": [ - 85 - ] - }, - "v_match_captains_avg_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_captains_bool_exp": { - "_and": [ - 6832 - ], - "_not": [ - 6832 - ], - "_or": [ - 6832 - ], - "captain": [ - 7 - ], - "discord_id": [ - 87 - ], - "id": [ - 6674 - ], - "lineup": [ - 3095 - ], - "match_lineup_id": [ - 6674 - ], - "placeholder_name": [ - 87 - ], - "player": [ - 4610 - ], - "steam_id": [ - 314 - ], - "__typename": [ - 85 - ] - }, - "v_match_captains_inc_input": { - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_match_captains_insert_input": { - "captain": [ - 6 - ], - "discord_id": [ - 85 - ], - "id": [ - 6672 - ], - "lineup": [ - 3104 - ], - "match_lineup_id": [ - 6672 - ], - "placeholder_name": [ - 85 - ], - "player": [ - 4617 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_match_captains_max_fields": { - "discord_id": [ - 85 - ], - "id": [ - 6672 - ], - "match_lineup_id": [ - 6672 - ], - "placeholder_name": [ - 85 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_match_captains_min_fields": { - "discord_id": [ - 85 - ], - "id": [ - 6672 - ], - "match_lineup_id": [ - 6672 - ], - "placeholder_name": [ - 85 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_match_captains_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 6828 - ], - "__typename": [ - 85 - ] - }, - "v_match_captains_obj_rel_insert_input": { - "data": [ - 6834 - ], - "__typename": [ - 85 - ] - }, - "v_match_captains_order_by": { - "captain": [ - 3648 - ], - "discord_id": [ - 3648 - ], - "id": [ - 3648 - ], - "lineup": [ - 3106 - ], - "match_lineup_id": [ - 3648 - ], - "placeholder_name": [ - 3648 - ], - "player": [ - 4619 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_match_captains_select_column": {}, - "v_match_captains_set_input": { - "captain": [ - 6 - ], - "discord_id": [ - 85 - ], - "id": [ - 6672 - ], - "match_lineup_id": [ - 6672 - ], - "placeholder_name": [ - 85 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_match_captains_stddev_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_captains_stddev_pop_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_captains_stddev_samp_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_captains_stream_cursor_input": { - "initial_value": [ - 6846 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "v_match_captains_stream_cursor_value_input": { - "captain": [ - 6 - ], - "discord_id": [ - 85 - ], - "id": [ - 6672 - ], - "match_lineup_id": [ - 6672 - ], - "placeholder_name": [ - 85 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_match_captains_sum_fields": { - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_match_captains_updates": { - "_inc": [ - 6833 - ], - "_set": [ - 6841 - ], - "where": [ - 6832 - ], - "__typename": [ - 85 - ] - }, - "v_match_captains_var_pop_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_captains_var_samp_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_captains_variance_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_clutches": { - "against_count": [ - 41 - ], - "clutcher": [ - 4606 - ], - "clutcher_steam_id": [ - 312 - ], - "kills_in_clutch": [ - 41 - ], - "match": [ - 3432 - ], - "match_id": [ - 6672 - ], - "match_lineup": [ - 3086 - ], - "match_lineup_id": [ - 6672 - ], - "match_map": [ - 3248 - ], - "match_map_id": [ - 6672 - ], - "outcome": [ - 85 - ], - "round": [ - 41 - ], - "side": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "v_match_clutches_aggregate": { - "aggregate": [ - 6856 - ], - "nodes": [ - 6852 - ], - "__typename": [ - 85 - ] - }, - "v_match_clutches_aggregate_bool_exp": { - "count": [ - 6855 - ], - "__typename": [ - 85 - ] - }, - "v_match_clutches_aggregate_bool_exp_count": { - "arguments": [ - 6868 - ], - "distinct": [ - 6 - ], - "filter": [ - 6861 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "v_match_clutches_aggregate_fields": { - "avg": [ - 6859 - ], - "count": [ - 41, - { - "columns": [ - 6868, - "[v_match_clutches_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 6863 - ], - "min": [ - 6865 - ], - "stddev": [ - 6869 - ], - "stddev_pop": [ - 6871 - ], - "stddev_samp": [ - 6873 - ], - "sum": [ - 6877 - ], - "var_pop": [ - 6879 - ], - "var_samp": [ - 6881 - ], - "variance": [ - 6883 - ], - "__typename": [ - 85 - ] - }, - "v_match_clutches_aggregate_order_by": { - "avg": [ - 6860 - ], - "count": [ - 3648 - ], - "max": [ - 6864 - ], - "min": [ - 6866 - ], - "stddev": [ - 6870 - ], - "stddev_pop": [ - 6872 - ], - "stddev_samp": [ - 6874 - ], - "sum": [ - 6878 - ], - "var_pop": [ - 6880 - ], - "var_samp": [ - 6882 - ], - "variance": [ - 6884 - ], - "__typename": [ - 85 - ] - }, - "v_match_clutches_arr_rel_insert_input": { - "data": [ - 6862 - ], - "__typename": [ - 85 - ] - }, - "v_match_clutches_avg_fields": { - "against_count": [ - 32 - ], - "clutcher_steam_id": [ - 32 - ], - "kills_in_clutch": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_clutches_avg_order_by": { - "against_count": [ - 3648 - ], - "clutcher_steam_id": [ - 3648 - ], - "kills_in_clutch": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_match_clutches_bool_exp": { - "_and": [ - 6861 - ], - "_not": [ - 6861 - ], - "_or": [ - 6861 - ], - "against_count": [ - 42 - ], - "clutcher": [ - 4610 - ], - "clutcher_steam_id": [ - 314 - ], - "kills_in_clutch": [ - 42 - ], - "match": [ - 3443 - ], - "match_id": [ - 6674 - ], - "match_lineup": [ - 3095 - ], - "match_lineup_id": [ - 6674 - ], - "match_map": [ - 3257 - ], - "match_map_id": [ - 6674 - ], - "outcome": [ - 87 - ], - "round": [ - 42 - ], - "side": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "v_match_clutches_insert_input": { - "against_count": [ - 41 - ], - "clutcher": [ - 4617 - ], - "clutcher_steam_id": [ - 312 - ], - "kills_in_clutch": [ - 41 - ], - "match": [ - 3452 - ], - "match_id": [ - 6672 - ], - "match_lineup": [ - 3104 - ], - "match_lineup_id": [ - 6672 - ], - "match_map": [ - 3266 - ], - "match_map_id": [ - 6672 - ], - "outcome": [ - 85 - ], - "round": [ - 41 - ], - "side": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "v_match_clutches_max_fields": { - "against_count": [ - 41 - ], - "clutcher_steam_id": [ - 312 - ], - "kills_in_clutch": [ - 41 - ], - "match_id": [ - 6672 - ], - "match_lineup_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "outcome": [ - 85 - ], - "round": [ - 41 - ], - "side": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "v_match_clutches_max_order_by": { - "against_count": [ - 3648 - ], - "clutcher_steam_id": [ - 3648 - ], - "kills_in_clutch": [ - 3648 - ], - "match_id": [ - 3648 - ], - "match_lineup_id": [ - 3648 - ], - "match_map_id": [ - 3648 - ], - "outcome": [ - 3648 - ], - "round": [ - 3648 - ], - "side": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_match_clutches_min_fields": { - "against_count": [ - 41 - ], - "clutcher_steam_id": [ - 312 - ], - "kills_in_clutch": [ - 41 - ], - "match_id": [ - 6672 - ], - "match_lineup_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "outcome": [ - 85 - ], - "round": [ - 41 - ], - "side": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "v_match_clutches_min_order_by": { - "against_count": [ - 3648 - ], - "clutcher_steam_id": [ - 3648 - ], - "kills_in_clutch": [ - 3648 - ], - "match_id": [ - 3648 - ], - "match_lineup_id": [ - 3648 - ], - "match_map_id": [ - 3648 - ], - "outcome": [ - 3648 - ], - "round": [ - 3648 - ], - "side": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_match_clutches_order_by": { - "against_count": [ - 3648 - ], - "clutcher": [ - 4619 - ], - "clutcher_steam_id": [ - 3648 - ], - "kills_in_clutch": [ - 3648 - ], - "match": [ - 3454 - ], - "match_id": [ - 3648 - ], - "match_lineup": [ - 3106 - ], - "match_lineup_id": [ - 3648 - ], - "match_map": [ - 3268 - ], - "match_map_id": [ - 3648 - ], - "outcome": [ - 3648 - ], - "round": [ - 3648 - ], - "side": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_match_clutches_select_column": {}, - "v_match_clutches_stddev_fields": { - "against_count": [ - 32 - ], - "clutcher_steam_id": [ - 32 - ], - "kills_in_clutch": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_clutches_stddev_order_by": { - "against_count": [ - 3648 - ], - "clutcher_steam_id": [ - 3648 - ], - "kills_in_clutch": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_match_clutches_stddev_pop_fields": { - "against_count": [ - 32 - ], - "clutcher_steam_id": [ - 32 - ], - "kills_in_clutch": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_clutches_stddev_pop_order_by": { - "against_count": [ - 3648 - ], - "clutcher_steam_id": [ - 3648 - ], - "kills_in_clutch": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_match_clutches_stddev_samp_fields": { - "against_count": [ - 32 - ], - "clutcher_steam_id": [ - 32 - ], - "kills_in_clutch": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_clutches_stddev_samp_order_by": { - "against_count": [ - 3648 - ], - "clutcher_steam_id": [ - 3648 - ], - "kills_in_clutch": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_match_clutches_stream_cursor_input": { - "initial_value": [ - 6876 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "v_match_clutches_stream_cursor_value_input": { - "against_count": [ - 41 - ], - "clutcher_steam_id": [ - 312 - ], - "kills_in_clutch": [ - 41 - ], - "match_id": [ - 6672 - ], - "match_lineup_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "outcome": [ - 85 - ], - "round": [ - 41 - ], - "side": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "v_match_clutches_sum_fields": { - "against_count": [ - 41 - ], - "clutcher_steam_id": [ - 312 - ], - "kills_in_clutch": [ - 41 - ], - "round": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_match_clutches_sum_order_by": { - "against_count": [ - 3648 - ], - "clutcher_steam_id": [ - 3648 - ], - "kills_in_clutch": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_match_clutches_var_pop_fields": { - "against_count": [ - 32 - ], - "clutcher_steam_id": [ - 32 - ], - "kills_in_clutch": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_clutches_var_pop_order_by": { - "against_count": [ - 3648 - ], - "clutcher_steam_id": [ - 3648 - ], - "kills_in_clutch": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_match_clutches_var_samp_fields": { - "against_count": [ - 32 - ], - "clutcher_steam_id": [ - 32 - ], - "kills_in_clutch": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_clutches_var_samp_order_by": { - "against_count": [ - 3648 - ], - "clutcher_steam_id": [ - 3648 - ], - "kills_in_clutch": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_match_clutches_variance_fields": { - "against_count": [ - 32 - ], - "clutcher_steam_id": [ - 32 - ], - "kills_in_clutch": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_clutches_variance_order_by": { - "against_count": [ - 3648 - ], - "clutcher_steam_id": [ - 3648 - ], - "kills_in_clutch": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_match_kill_pairs": { - "killer_side": [ - 85 - ], - "killer_steam_id": [ - 312 - ], - "kills": [ - 41 - ], - "match": [ - 3432 - ], - "match_id": [ - 6672 - ], - "match_map": [ - 3248 - ], - "match_map_id": [ - 6672 - ], - "victim_side": [ - 85 - ], - "victim_steam_id": [ - 312 - ], - "weapon": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "v_match_kill_pairs_aggregate": { - "aggregate": [ - 6887 - ], - "nodes": [ - 6885 - ], - "__typename": [ - 85 - ] - }, - "v_match_kill_pairs_aggregate_fields": { - "avg": [ - 6888 - ], - "count": [ - 41, - { - "columns": [ - 6893, - "[v_match_kill_pairs_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 6890 - ], - "min": [ - 6891 - ], - "stddev": [ - 6894 - ], - "stddev_pop": [ - 6895 - ], - "stddev_samp": [ - 6896 - ], - "sum": [ - 6899 - ], - "var_pop": [ - 6900 - ], - "var_samp": [ - 6901 - ], - "variance": [ - 6902 - ], - "__typename": [ - 85 - ] - }, - "v_match_kill_pairs_avg_fields": { - "killer_steam_id": [ - 32 - ], - "kills": [ - 32 - ], - "victim_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_kill_pairs_bool_exp": { - "_and": [ - 6889 - ], - "_not": [ - 6889 - ], - "_or": [ - 6889 - ], - "killer_side": [ - 87 - ], - "killer_steam_id": [ - 314 - ], - "kills": [ - 42 - ], - "match": [ - 3443 - ], - "match_id": [ - 6674 - ], - "match_map": [ - 3257 - ], - "match_map_id": [ - 6674 - ], - "victim_side": [ - 87 - ], - "victim_steam_id": [ - 314 - ], - "weapon": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "v_match_kill_pairs_max_fields": { - "killer_side": [ - 85 - ], - "killer_steam_id": [ - 312 - ], - "kills": [ - 41 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "victim_side": [ - 85 - ], - "victim_steam_id": [ - 312 - ], - "weapon": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "v_match_kill_pairs_min_fields": { - "killer_side": [ - 85 - ], - "killer_steam_id": [ - 312 - ], - "kills": [ - 41 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "victim_side": [ - 85 - ], - "victim_steam_id": [ - 312 - ], - "weapon": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "v_match_kill_pairs_order_by": { - "killer_side": [ - 3648 - ], - "killer_steam_id": [ - 3648 - ], - "kills": [ - 3648 - ], - "match": [ - 3454 - ], - "match_id": [ - 3648 - ], - "match_map": [ - 3268 - ], - "match_map_id": [ - 3648 - ], - "victim_side": [ - 3648 - ], - "victim_steam_id": [ - 3648 - ], - "weapon": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_match_kill_pairs_select_column": {}, - "v_match_kill_pairs_stddev_fields": { - "killer_steam_id": [ - 32 - ], - "kills": [ - 32 - ], - "victim_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_kill_pairs_stddev_pop_fields": { - "killer_steam_id": [ - 32 - ], - "kills": [ - 32 - ], - "victim_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_kill_pairs_stddev_samp_fields": { - "killer_steam_id": [ - 32 - ], - "kills": [ - 32 - ], - "victim_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_kill_pairs_stream_cursor_input": { - "initial_value": [ - 6898 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "v_match_kill_pairs_stream_cursor_value_input": { - "killer_side": [ - 85 - ], - "killer_steam_id": [ - 312 - ], - "kills": [ - 41 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "victim_side": [ - 85 - ], - "victim_steam_id": [ - 312 - ], - "weapon": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "v_match_kill_pairs_sum_fields": { - "killer_steam_id": [ - 312 - ], - "kills": [ - 41 - ], - "victim_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_match_kill_pairs_var_pop_fields": { - "killer_steam_id": [ - 32 - ], - "kills": [ - 32 - ], - "victim_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_kill_pairs_var_samp_fields": { - "killer_steam_id": [ - 32 - ], - "kills": [ - 32 - ], - "victim_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_kill_pairs_variance_fields": { - "killer_steam_id": [ - 32 - ], - "kills": [ - 32 - ], - "victim_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_lineup_buy_types": { - "match": [ - 3432 - ], - "match_id": [ - 6672 - ], - "match_lineup": [ - 3086 - ], - "match_lineup_id": [ - 6672 - ], - "match_map": [ - 3248 - ], - "match_map_id": [ - 6672 - ], - "matchup": [ - 85 - ], - "rounds": [ - 41 - ], - "side": [ - 85 - ], - "wins": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_match_lineup_buy_types_aggregate": { - "aggregate": [ - 6905 - ], - "nodes": [ - 6903 - ], - "__typename": [ - 85 - ] - }, - "v_match_lineup_buy_types_aggregate_fields": { - "avg": [ - 6906 - ], - "count": [ - 41, - { - "columns": [ - 6911, - "[v_match_lineup_buy_types_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 6908 - ], - "min": [ - 6909 - ], - "stddev": [ - 6912 - ], - "stddev_pop": [ - 6913 - ], - "stddev_samp": [ - 6914 - ], - "sum": [ - 6917 - ], - "var_pop": [ - 6918 - ], - "var_samp": [ - 6919 - ], - "variance": [ - 6920 - ], - "__typename": [ - 85 - ] - }, - "v_match_lineup_buy_types_avg_fields": { - "rounds": [ - 32 - ], - "wins": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_lineup_buy_types_bool_exp": { - "_and": [ - 6907 - ], - "_not": [ - 6907 - ], - "_or": [ - 6907 - ], - "match": [ - 3443 - ], - "match_id": [ - 6674 - ], - "match_lineup": [ - 3095 - ], - "match_lineup_id": [ - 6674 - ], - "match_map": [ - 3257 - ], - "match_map_id": [ - 6674 - ], - "matchup": [ - 87 - ], - "rounds": [ - 42 - ], - "side": [ - 87 - ], - "wins": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "v_match_lineup_buy_types_max_fields": { - "match_id": [ - 6672 - ], - "match_lineup_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "matchup": [ - 85 - ], - "rounds": [ - 41 - ], - "side": [ - 85 - ], - "wins": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_match_lineup_buy_types_min_fields": { - "match_id": [ - 6672 - ], - "match_lineup_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "matchup": [ - 85 - ], - "rounds": [ - 41 - ], - "side": [ - 85 - ], - "wins": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_match_lineup_buy_types_order_by": { - "match": [ - 3454 - ], - "match_id": [ - 3648 - ], - "match_lineup": [ - 3106 - ], - "match_lineup_id": [ - 3648 - ], - "match_map": [ - 3268 - ], - "match_map_id": [ - 3648 - ], - "matchup": [ - 3648 - ], - "rounds": [ - 3648 - ], - "side": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_match_lineup_buy_types_select_column": {}, - "v_match_lineup_buy_types_stddev_fields": { - "rounds": [ - 32 - ], - "wins": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_lineup_buy_types_stddev_pop_fields": { - "rounds": [ - 32 - ], - "wins": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_lineup_buy_types_stddev_samp_fields": { - "rounds": [ - 32 - ], - "wins": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_lineup_buy_types_stream_cursor_input": { - "initial_value": [ - 6916 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "v_match_lineup_buy_types_stream_cursor_value_input": { - "match_id": [ - 6672 - ], - "match_lineup_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "matchup": [ - 85 - ], - "rounds": [ - 41 - ], - "side": [ - 85 - ], - "wins": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_match_lineup_buy_types_sum_fields": { - "rounds": [ - 41 - ], - "wins": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_match_lineup_buy_types_var_pop_fields": { - "rounds": [ - 32 - ], - "wins": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_lineup_buy_types_var_samp_fields": { - "rounds": [ - 32 - ], - "wins": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_lineup_buy_types_variance_fields": { - "rounds": [ - 32 - ], - "wins": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_lineup_map_stats": { - "man_adv_rounds": [ - 41 - ], - "man_adv_wins": [ - 41 - ], - "man_dis_rounds": [ - 41 - ], - "man_dis_wins": [ - 41 - ], - "match": [ - 3432 - ], - "match_id": [ - 6672 - ], - "match_lineup": [ - 3086 - ], - "match_lineup_id": [ - 6672 - ], - "match_map": [ - 3248 - ], - "match_map_id": [ - 6672 - ], - "opening_attempts": [ - 41 - ], - "opening_wins": [ - 41 - ], - "pistol_rounds": [ - 41 - ], - "pistol_wins": [ - 41 - ], - "round_wins": [ - 41 - ], - "rounds": [ - 41 - ], - "side": [ - 85 - ], - "won_buy_eco": [ - 41 - ], - "won_buy_force": [ - 41 - ], - "won_buy_full": [ - 41 - ], - "won_buy_pistol": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_match_lineup_map_stats_aggregate": { - "aggregate": [ - 6923 - ], - "nodes": [ - 6921 - ], - "__typename": [ - 85 - ] - }, - "v_match_lineup_map_stats_aggregate_fields": { - "avg": [ - 6924 - ], - "count": [ - 41, - { - "columns": [ - 6929, - "[v_match_lineup_map_stats_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 6926 - ], - "min": [ - 6927 - ], - "stddev": [ - 6930 - ], - "stddev_pop": [ - 6931 - ], - "stddev_samp": [ - 6932 - ], - "sum": [ - 6935 - ], - "var_pop": [ - 6936 - ], - "var_samp": [ - 6937 - ], - "variance": [ - 6938 - ], - "__typename": [ - 85 - ] - }, - "v_match_lineup_map_stats_avg_fields": { - "man_adv_rounds": [ - 32 - ], - "man_adv_wins": [ - 32 - ], - "man_dis_rounds": [ - 32 - ], - "man_dis_wins": [ - 32 - ], - "opening_attempts": [ - 32 - ], - "opening_wins": [ - 32 - ], - "pistol_rounds": [ - 32 - ], - "pistol_wins": [ - 32 - ], - "round_wins": [ - 32 - ], - "rounds": [ - 32 - ], - "won_buy_eco": [ - 32 - ], - "won_buy_force": [ - 32 - ], - "won_buy_full": [ - 32 - ], - "won_buy_pistol": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_lineup_map_stats_bool_exp": { - "_and": [ - 6925 - ], - "_not": [ - 6925 - ], - "_or": [ - 6925 - ], - "man_adv_rounds": [ - 42 - ], - "man_adv_wins": [ - 42 - ], - "man_dis_rounds": [ - 42 - ], - "man_dis_wins": [ - 42 - ], - "match": [ - 3443 - ], - "match_id": [ - 6674 - ], - "match_lineup": [ - 3095 - ], - "match_lineup_id": [ - 6674 - ], - "match_map": [ - 3257 - ], - "match_map_id": [ - 6674 - ], - "opening_attempts": [ - 42 - ], - "opening_wins": [ - 42 - ], - "pistol_rounds": [ - 42 - ], - "pistol_wins": [ - 42 - ], - "round_wins": [ - 42 - ], - "rounds": [ - 42 - ], - "side": [ - 87 - ], - "won_buy_eco": [ - 42 - ], - "won_buy_force": [ - 42 - ], - "won_buy_full": [ - 42 - ], - "won_buy_pistol": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "v_match_lineup_map_stats_max_fields": { - "man_adv_rounds": [ - 41 - ], - "man_adv_wins": [ - 41 - ], - "man_dis_rounds": [ - 41 - ], - "man_dis_wins": [ - 41 - ], - "match_id": [ - 6672 - ], - "match_lineup_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "opening_attempts": [ - 41 - ], - "opening_wins": [ - 41 - ], - "pistol_rounds": [ - 41 - ], - "pistol_wins": [ - 41 - ], - "round_wins": [ - 41 - ], - "rounds": [ - 41 - ], - "side": [ - 85 - ], - "won_buy_eco": [ - 41 - ], - "won_buy_force": [ - 41 - ], - "won_buy_full": [ - 41 - ], - "won_buy_pistol": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_match_lineup_map_stats_min_fields": { - "man_adv_rounds": [ - 41 - ], - "man_adv_wins": [ - 41 - ], - "man_dis_rounds": [ - 41 - ], - "man_dis_wins": [ - 41 - ], - "match_id": [ - 6672 - ], - "match_lineup_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "opening_attempts": [ - 41 - ], - "opening_wins": [ - 41 - ], - "pistol_rounds": [ - 41 - ], - "pistol_wins": [ - 41 - ], - "round_wins": [ - 41 - ], - "rounds": [ - 41 - ], - "side": [ - 85 - ], - "won_buy_eco": [ - 41 - ], - "won_buy_force": [ - 41 - ], - "won_buy_full": [ - 41 - ], - "won_buy_pistol": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_match_lineup_map_stats_order_by": { - "man_adv_rounds": [ - 3648 - ], - "man_adv_wins": [ - 3648 - ], - "man_dis_rounds": [ - 3648 - ], - "man_dis_wins": [ - 3648 - ], - "match": [ - 3454 - ], - "match_id": [ - 3648 - ], - "match_lineup": [ - 3106 - ], - "match_lineup_id": [ - 3648 - ], - "match_map": [ - 3268 - ], - "match_map_id": [ - 3648 - ], - "opening_attempts": [ - 3648 - ], - "opening_wins": [ - 3648 - ], - "pistol_rounds": [ - 3648 - ], - "pistol_wins": [ - 3648 - ], - "round_wins": [ - 3648 - ], - "rounds": [ - 3648 - ], - "side": [ - 3648 - ], - "won_buy_eco": [ - 3648 - ], - "won_buy_force": [ - 3648 - ], - "won_buy_full": [ - 3648 - ], - "won_buy_pistol": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_match_lineup_map_stats_select_column": {}, - "v_match_lineup_map_stats_stddev_fields": { - "man_adv_rounds": [ - 32 - ], - "man_adv_wins": [ - 32 - ], - "man_dis_rounds": [ - 32 - ], - "man_dis_wins": [ - 32 - ], - "opening_attempts": [ - 32 - ], - "opening_wins": [ - 32 - ], - "pistol_rounds": [ - 32 - ], - "pistol_wins": [ - 32 - ], - "round_wins": [ - 32 - ], - "rounds": [ - 32 - ], - "won_buy_eco": [ - 32 - ], - "won_buy_force": [ - 32 - ], - "won_buy_full": [ - 32 - ], - "won_buy_pistol": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_lineup_map_stats_stddev_pop_fields": { - "man_adv_rounds": [ - 32 - ], - "man_adv_wins": [ - 32 - ], - "man_dis_rounds": [ - 32 - ], - "man_dis_wins": [ - 32 - ], - "opening_attempts": [ - 32 - ], - "opening_wins": [ - 32 - ], - "pistol_rounds": [ - 32 - ], - "pistol_wins": [ - 32 - ], - "round_wins": [ - 32 - ], - "rounds": [ - 32 - ], - "won_buy_eco": [ - 32 - ], - "won_buy_force": [ - 32 - ], - "won_buy_full": [ - 32 - ], - "won_buy_pistol": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_lineup_map_stats_stddev_samp_fields": { - "man_adv_rounds": [ - 32 - ], - "man_adv_wins": [ - 32 - ], - "man_dis_rounds": [ - 32 - ], - "man_dis_wins": [ - 32 - ], - "opening_attempts": [ - 32 - ], - "opening_wins": [ - 32 - ], - "pistol_rounds": [ - 32 - ], - "pistol_wins": [ - 32 - ], - "round_wins": [ - 32 - ], - "rounds": [ - 32 - ], - "won_buy_eco": [ - 32 - ], - "won_buy_force": [ - 32 - ], - "won_buy_full": [ - 32 - ], - "won_buy_pistol": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_lineup_map_stats_stream_cursor_input": { - "initial_value": [ - 6934 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "v_match_lineup_map_stats_stream_cursor_value_input": { - "man_adv_rounds": [ - 41 - ], - "man_adv_wins": [ - 41 - ], - "man_dis_rounds": [ - 41 - ], - "man_dis_wins": [ - 41 - ], - "match_id": [ - 6672 - ], - "match_lineup_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "opening_attempts": [ - 41 - ], - "opening_wins": [ - 41 - ], - "pistol_rounds": [ - 41 - ], - "pistol_wins": [ - 41 - ], - "round_wins": [ - 41 - ], - "rounds": [ - 41 - ], - "side": [ - 85 - ], - "won_buy_eco": [ - 41 - ], - "won_buy_force": [ - 41 - ], - "won_buy_full": [ - 41 - ], - "won_buy_pistol": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_match_lineup_map_stats_sum_fields": { - "man_adv_rounds": [ - 41 - ], - "man_adv_wins": [ - 41 - ], - "man_dis_rounds": [ - 41 - ], - "man_dis_wins": [ - 41 - ], - "opening_attempts": [ - 41 - ], - "opening_wins": [ - 41 - ], - "pistol_rounds": [ - 41 - ], - "pistol_wins": [ - 41 - ], - "round_wins": [ - 41 - ], - "rounds": [ - 41 - ], - "won_buy_eco": [ - 41 - ], - "won_buy_force": [ - 41 - ], - "won_buy_full": [ - 41 - ], - "won_buy_pistol": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_match_lineup_map_stats_var_pop_fields": { - "man_adv_rounds": [ - 32 - ], - "man_adv_wins": [ - 32 - ], - "man_dis_rounds": [ - 32 - ], - "man_dis_wins": [ - 32 - ], - "opening_attempts": [ - 32 - ], - "opening_wins": [ - 32 - ], - "pistol_rounds": [ - 32 - ], - "pistol_wins": [ - 32 - ], - "round_wins": [ - 32 - ], - "rounds": [ - 32 - ], - "won_buy_eco": [ - 32 - ], - "won_buy_force": [ - 32 - ], - "won_buy_full": [ - 32 - ], - "won_buy_pistol": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_lineup_map_stats_var_samp_fields": { - "man_adv_rounds": [ - 32 - ], - "man_adv_wins": [ - 32 - ], - "man_dis_rounds": [ - 32 - ], - "man_dis_wins": [ - 32 - ], - "opening_attempts": [ - 32 - ], - "opening_wins": [ - 32 - ], - "pistol_rounds": [ - 32 - ], - "pistol_wins": [ - 32 - ], - "round_wins": [ - 32 - ], - "rounds": [ - 32 - ], - "won_buy_eco": [ - 32 - ], - "won_buy_force": [ - 32 - ], - "won_buy_full": [ - 32 - ], - "won_buy_pistol": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_lineup_map_stats_variance_fields": { - "man_adv_rounds": [ - 32 - ], - "man_adv_wins": [ - 32 - ], - "man_dis_rounds": [ - 32 - ], - "man_dis_wins": [ - 32 - ], - "opening_attempts": [ - 32 - ], - "opening_wins": [ - 32 - ], - "pistol_rounds": [ - 32 - ], - "pistol_wins": [ - 32 - ], - "round_wins": [ - 32 - ], - "rounds": [ - 32 - ], - "won_buy_eco": [ - 32 - ], - "won_buy_force": [ - 32 - ], - "won_buy_full": [ - 32 - ], - "won_buy_pistol": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_map_backup_rounds": { - "has_backup_file": [ - 6 - ], - "match_map_id": [ - 6672 - ], - "round": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_match_map_backup_rounds_aggregate": { - "aggregate": [ - 6941 - ], - "nodes": [ - 6939 - ], - "__typename": [ - 85 - ] - }, - "v_match_map_backup_rounds_aggregate_fields": { - "avg": [ - 6942 - ], - "count": [ - 41, - { - "columns": [ - 6950, - "[v_match_map_backup_rounds_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 6946 - ], - "min": [ - 6947 - ], - "stddev": [ - 6952 - ], - "stddev_pop": [ - 6953 - ], - "stddev_samp": [ - 6954 - ], - "sum": [ - 6957 - ], - "var_pop": [ - 6959 - ], - "var_samp": [ - 6960 - ], - "variance": [ - 6961 - ], - "__typename": [ - 85 - ] - }, - "v_match_map_backup_rounds_avg_fields": { - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_map_backup_rounds_bool_exp": { - "_and": [ - 6943 - ], - "_not": [ - 6943 - ], - "_or": [ - 6943 - ], - "has_backup_file": [ - 7 - ], - "match_map_id": [ - 6674 - ], - "round": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "v_match_map_backup_rounds_inc_input": { - "round": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_match_map_backup_rounds_insert_input": { - "has_backup_file": [ - 6 - ], - "match_map_id": [ - 6672 - ], - "round": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_match_map_backup_rounds_max_fields": { - "match_map_id": [ - 6672 - ], - "round": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_match_map_backup_rounds_min_fields": { - "match_map_id": [ - 6672 - ], - "round": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_match_map_backup_rounds_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 6939 - ], - "__typename": [ - 85 - ] - }, - "v_match_map_backup_rounds_order_by": { - "has_backup_file": [ - 3648 - ], - "match_map_id": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_match_map_backup_rounds_select_column": {}, - "v_match_map_backup_rounds_set_input": { - "has_backup_file": [ - 6 - ], - "match_map_id": [ - 6672 - ], - "round": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_match_map_backup_rounds_stddev_fields": { - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_map_backup_rounds_stddev_pop_fields": { - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_map_backup_rounds_stddev_samp_fields": { - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_map_backup_rounds_stream_cursor_input": { - "initial_value": [ - 6956 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "v_match_map_backup_rounds_stream_cursor_value_input": { - "has_backup_file": [ - 6 - ], - "match_map_id": [ - 6672 - ], - "round": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_match_map_backup_rounds_sum_fields": { - "round": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_match_map_backup_rounds_updates": { - "_inc": [ - 6944 - ], - "_set": [ - 6951 - ], - "where": [ - 6943 - ], - "__typename": [ - 85 - ] - }, - "v_match_map_backup_rounds_var_pop_fields": { - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_map_backup_rounds_var_samp_fields": { - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_map_backup_rounds_variance_fields": { - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_buy_types": { - "deaths": [ - 41 - ], - "kills": [ - 41 - ], - "match": [ - 3432 - ], - "match_id": [ - 6672 - ], - "match_lineup": [ - 3086 - ], - "match_lineup_id": [ - 6672 - ], - "match_map": [ - 3248 - ], - "match_map_id": [ - 6672 - ], - "matchup": [ - 85 - ], - "player": [ - 4606 - ], - "rounds": [ - 41 - ], - "side": [ - 85 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_buy_types_aggregate": { - "aggregate": [ - 6964 - ], - "nodes": [ - 6962 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_buy_types_aggregate_fields": { - "avg": [ - 6965 - ], - "count": [ - 41, - { - "columns": [ - 6970, - "[v_match_player_buy_types_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 6967 - ], - "min": [ - 6968 - ], - "stddev": [ - 6971 - ], - "stddev_pop": [ - 6972 - ], - "stddev_samp": [ - 6973 - ], - "sum": [ - 6976 - ], - "var_pop": [ - 6977 - ], - "var_samp": [ - 6978 - ], - "variance": [ - 6979 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_buy_types_avg_fields": { - "deaths": [ - 32 - ], - "kills": [ - 32 - ], - "rounds": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_buy_types_bool_exp": { - "_and": [ - 6966 - ], - "_not": [ - 6966 - ], - "_or": [ - 6966 - ], - "deaths": [ - 42 - ], - "kills": [ - 42 - ], - "match": [ - 3443 - ], - "match_id": [ - 6674 - ], - "match_lineup": [ - 3095 - ], - "match_lineup_id": [ - 6674 - ], - "match_map": [ - 3257 - ], - "match_map_id": [ - 6674 - ], - "matchup": [ - 87 - ], - "player": [ - 4610 - ], - "rounds": [ - 42 - ], - "side": [ - 87 - ], - "steam_id": [ - 314 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_buy_types_max_fields": { - "deaths": [ - 41 - ], - "kills": [ - 41 - ], - "match_id": [ - 6672 - ], - "match_lineup_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "matchup": [ - 85 - ], - "rounds": [ - 41 - ], - "side": [ - 85 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_buy_types_min_fields": { - "deaths": [ - 41 - ], - "kills": [ - 41 - ], - "match_id": [ - 6672 - ], - "match_lineup_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "matchup": [ - 85 - ], - "rounds": [ - 41 - ], - "side": [ - 85 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_buy_types_order_by": { - "deaths": [ - 3648 - ], - "kills": [ - 3648 - ], - "match": [ - 3454 - ], - "match_id": [ - 3648 - ], - "match_lineup": [ - 3106 - ], - "match_lineup_id": [ - 3648 - ], - "match_map": [ - 3268 - ], - "match_map_id": [ - 3648 - ], - "matchup": [ - 3648 - ], - "player": [ - 4619 - ], - "rounds": [ - 3648 - ], - "side": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_buy_types_select_column": {}, - "v_match_player_buy_types_stddev_fields": { - "deaths": [ - 32 - ], - "kills": [ - 32 - ], - "rounds": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_buy_types_stddev_pop_fields": { - "deaths": [ - 32 - ], - "kills": [ - 32 - ], - "rounds": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_buy_types_stddev_samp_fields": { - "deaths": [ - 32 - ], - "kills": [ - 32 - ], - "rounds": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_buy_types_stream_cursor_input": { - "initial_value": [ - 6975 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_buy_types_stream_cursor_value_input": { - "deaths": [ - 41 - ], - "kills": [ - 41 - ], - "match_id": [ - 6672 - ], - "match_lineup_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "matchup": [ - 85 - ], - "rounds": [ - 41 - ], - "side": [ - 85 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_buy_types_sum_fields": { - "deaths": [ - 41 - ], - "kills": [ - 41 - ], - "rounds": [ - 41 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_buy_types_var_pop_fields": { - "deaths": [ - 32 - ], - "kills": [ - 32 - ], - "rounds": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_buy_types_var_samp_fields": { - "deaths": [ - 32 - ], - "kills": [ - 32 - ], - "rounds": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_buy_types_variance_fields": { - "deaths": [ - 32 - ], - "kills": [ - 32 - ], - "rounds": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_opening_duels": { - "attempts": [ - 41 - ], - "deaths": [ - 41 - ], - "match": [ - 3432 - ], - "match_id": [ - 6672 - ], - "match_lineup": [ - 3086 - ], - "match_lineup_id": [ - 6672 - ], - "match_map": [ - 3248 - ], - "match_map_id": [ - 6672 - ], - "player": [ - 4606 - ], - "side": [ - 85 - ], - "steam_id": [ - 312 - ], - "traded_deaths": [ - 41 - ], - "wins": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_opening_duels_aggregate": { - "aggregate": [ - 6984 - ], - "nodes": [ - 6980 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_opening_duels_aggregate_bool_exp": { - "count": [ - 6983 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_opening_duels_aggregate_bool_exp_count": { - "arguments": [ - 6996 - ], - "distinct": [ - 6 - ], - "filter": [ - 6989 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_opening_duels_aggregate_fields": { - "avg": [ - 6987 - ], - "count": [ - 41, - { - "columns": [ - 6996, - "[v_match_player_opening_duels_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 6991 - ], - "min": [ - 6993 - ], - "stddev": [ - 6997 - ], - "stddev_pop": [ - 6999 - ], - "stddev_samp": [ - 7001 - ], - "sum": [ - 7005 - ], - "var_pop": [ - 7007 - ], - "var_samp": [ - 7009 - ], - "variance": [ - 7011 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_opening_duels_aggregate_order_by": { - "avg": [ - 6988 - ], - "count": [ - 3648 - ], - "max": [ - 6992 - ], - "min": [ - 6994 - ], - "stddev": [ - 6998 - ], - "stddev_pop": [ - 7000 - ], - "stddev_samp": [ - 7002 - ], - "sum": [ - 7006 - ], - "var_pop": [ - 7008 - ], - "var_samp": [ - 7010 - ], - "variance": [ - 7012 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_opening_duels_arr_rel_insert_input": { - "data": [ - 6990 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_opening_duels_avg_fields": { - "attempts": [ - 32 - ], - "deaths": [ - 32 - ], - "steam_id": [ - 32 - ], - "traded_deaths": [ - 32 - ], - "wins": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_opening_duels_avg_order_by": { - "attempts": [ - 3648 - ], - "deaths": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "traded_deaths": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_opening_duels_bool_exp": { - "_and": [ - 6989 - ], - "_not": [ - 6989 - ], - "_or": [ - 6989 - ], - "attempts": [ - 42 - ], - "deaths": [ - 42 - ], - "match": [ - 3443 - ], - "match_id": [ - 6674 - ], - "match_lineup": [ - 3095 - ], - "match_lineup_id": [ - 6674 - ], - "match_map": [ - 3257 - ], - "match_map_id": [ - 6674 - ], - "player": [ - 4610 - ], - "side": [ - 87 - ], - "steam_id": [ - 314 - ], - "traded_deaths": [ - 42 - ], - "wins": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_opening_duels_insert_input": { - "attempts": [ - 41 - ], - "deaths": [ - 41 - ], - "match": [ - 3452 - ], - "match_id": [ - 6672 - ], - "match_lineup": [ - 3104 - ], - "match_lineup_id": [ - 6672 - ], - "match_map": [ - 3266 - ], - "match_map_id": [ - 6672 - ], - "player": [ - 4617 - ], - "side": [ - 85 - ], - "steam_id": [ - 312 - ], - "traded_deaths": [ - 41 - ], - "wins": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_opening_duels_max_fields": { - "attempts": [ - 41 - ], - "deaths": [ - 41 - ], - "match_id": [ - 6672 - ], - "match_lineup_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "side": [ - 85 - ], - "steam_id": [ - 312 - ], - "traded_deaths": [ - 41 - ], - "wins": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_opening_duels_max_order_by": { - "attempts": [ - 3648 - ], - "deaths": [ - 3648 - ], - "match_id": [ - 3648 - ], - "match_lineup_id": [ - 3648 - ], - "match_map_id": [ - 3648 - ], - "side": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "traded_deaths": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_opening_duels_min_fields": { - "attempts": [ - 41 - ], - "deaths": [ - 41 - ], - "match_id": [ - 6672 - ], - "match_lineup_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "side": [ - 85 - ], - "steam_id": [ - 312 - ], - "traded_deaths": [ - 41 - ], - "wins": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_opening_duels_min_order_by": { - "attempts": [ - 3648 - ], - "deaths": [ - 3648 - ], - "match_id": [ - 3648 - ], - "match_lineup_id": [ - 3648 - ], - "match_map_id": [ - 3648 - ], - "side": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "traded_deaths": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_opening_duels_order_by": { - "attempts": [ - 3648 - ], - "deaths": [ - 3648 - ], - "match": [ - 3454 - ], - "match_id": [ - 3648 - ], - "match_lineup": [ - 3106 - ], - "match_lineup_id": [ - 3648 - ], - "match_map": [ - 3268 - ], - "match_map_id": [ - 3648 - ], - "player": [ - 4619 - ], - "side": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "traded_deaths": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_opening_duels_select_column": {}, - "v_match_player_opening_duels_stddev_fields": { - "attempts": [ - 32 - ], - "deaths": [ - 32 - ], - "steam_id": [ - 32 - ], - "traded_deaths": [ - 32 - ], - "wins": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_opening_duels_stddev_order_by": { - "attempts": [ - 3648 - ], - "deaths": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "traded_deaths": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_opening_duels_stddev_pop_fields": { - "attempts": [ - 32 - ], - "deaths": [ - 32 - ], - "steam_id": [ - 32 - ], - "traded_deaths": [ - 32 - ], - "wins": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_opening_duels_stddev_pop_order_by": { - "attempts": [ - 3648 - ], - "deaths": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "traded_deaths": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_opening_duels_stddev_samp_fields": { - "attempts": [ - 32 - ], - "deaths": [ - 32 - ], - "steam_id": [ - 32 - ], - "traded_deaths": [ - 32 - ], - "wins": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_opening_duels_stddev_samp_order_by": { - "attempts": [ - 3648 - ], - "deaths": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "traded_deaths": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_opening_duels_stream_cursor_input": { - "initial_value": [ - 7004 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_opening_duels_stream_cursor_value_input": { - "attempts": [ - 41 - ], - "deaths": [ - 41 - ], - "match_id": [ - 6672 - ], - "match_lineup_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "side": [ - 85 - ], - "steam_id": [ - 312 - ], - "traded_deaths": [ - 41 - ], - "wins": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_opening_duels_sum_fields": { - "attempts": [ - 41 - ], - "deaths": [ - 41 - ], - "steam_id": [ - 312 - ], - "traded_deaths": [ - 41 - ], - "wins": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_opening_duels_sum_order_by": { - "attempts": [ - 3648 - ], - "deaths": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "traded_deaths": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_opening_duels_var_pop_fields": { - "attempts": [ - 32 - ], - "deaths": [ - 32 - ], - "steam_id": [ - 32 - ], - "traded_deaths": [ - 32 - ], - "wins": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_opening_duels_var_pop_order_by": { - "attempts": [ - 3648 - ], - "deaths": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "traded_deaths": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_opening_duels_var_samp_fields": { - "attempts": [ - 32 - ], - "deaths": [ - 32 - ], - "steam_id": [ - 32 - ], - "traded_deaths": [ - 32 - ], - "wins": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_opening_duels_var_samp_order_by": { - "attempts": [ - 3648 - ], - "deaths": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "traded_deaths": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_opening_duels_variance_fields": { - "attempts": [ - 32 - ], - "deaths": [ - 32 - ], - "steam_id": [ - 32 - ], - "traded_deaths": [ - 32 - ], - "wins": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_match_player_opening_duels_variance_order_by": { - "attempts": [ - 3648 - ], - "deaths": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "traded_deaths": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_arch_nemesis": { - "attacker_id": [ - 312 - ], - "kill_count": [ - 312 - ], - "nemsis": [ - 4606 - ], - "player": [ - 4606 - ], - "victim_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_player_arch_nemesis_aggregate": { - "aggregate": [ - 7015 - ], - "nodes": [ - 7013 - ], - "__typename": [ - 85 - ] - }, - "v_player_arch_nemesis_aggregate_fields": { - "avg": [ - 7016 - ], - "count": [ - 41, - { - "columns": [ - 7021, - "[v_player_arch_nemesis_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 7018 - ], - "min": [ - 7019 - ], - "stddev": [ - 7022 - ], - "stddev_pop": [ - 7023 - ], - "stddev_samp": [ - 7024 - ], - "sum": [ - 7027 - ], - "var_pop": [ - 7028 - ], - "var_samp": [ - 7029 - ], - "variance": [ - 7030 - ], - "__typename": [ - 85 - ] - }, - "v_player_arch_nemesis_avg_fields": { - "attacker_id": [ - 32 - ], - "kill_count": [ - 32 - ], - "victim_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_arch_nemesis_bool_exp": { - "_and": [ - 7017 - ], - "_not": [ - 7017 - ], - "_or": [ - 7017 - ], - "attacker_id": [ - 314 - ], - "kill_count": [ - 314 - ], - "nemsis": [ - 4610 - ], - "player": [ - 4610 - ], - "victim_id": [ - 314 - ], - "__typename": [ - 85 - ] - }, - "v_player_arch_nemesis_max_fields": { - "attacker_id": [ - 312 - ], - "kill_count": [ - 312 - ], - "victim_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_player_arch_nemesis_min_fields": { - "attacker_id": [ - 312 - ], - "kill_count": [ - 312 - ], - "victim_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_player_arch_nemesis_order_by": { - "attacker_id": [ - 3648 - ], - "kill_count": [ - 3648 - ], - "nemsis": [ - 4619 - ], - "player": [ - 4619 - ], - "victim_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_arch_nemesis_select_column": {}, - "v_player_arch_nemesis_stddev_fields": { - "attacker_id": [ - 32 - ], - "kill_count": [ - 32 - ], - "victim_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_arch_nemesis_stddev_pop_fields": { - "attacker_id": [ - 32 - ], - "kill_count": [ - 32 - ], - "victim_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_arch_nemesis_stddev_samp_fields": { - "attacker_id": [ - 32 - ], - "kill_count": [ - 32 - ], - "victim_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_arch_nemesis_stream_cursor_input": { - "initial_value": [ - 7026 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "v_player_arch_nemesis_stream_cursor_value_input": { - "attacker_id": [ - 312 - ], - "kill_count": [ - 312 - ], - "victim_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_player_arch_nemesis_sum_fields": { - "attacker_id": [ - 312 - ], - "kill_count": [ - 312 - ], - "victim_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_player_arch_nemesis_var_pop_fields": { - "attacker_id": [ - 32 - ], - "kill_count": [ - 32 - ], - "victim_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_arch_nemesis_var_samp_fields": { - "attacker_id": [ - 32 - ], - "kill_count": [ - 32 - ], - "victim_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_arch_nemesis_variance_fields": { - "attacker_id": [ - 32 - ], - "kill_count": [ - 32 - ], - "victim_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_damage": { - "avg_damage_per_round": [ - 312 - ], - "player": [ - 4606 - ], - "player_steam_id": [ - 312 - ], - "total_damage": [ - 312 - ], - "total_rounds": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_player_damage_aggregate": { - "aggregate": [ - 7033 - ], - "nodes": [ - 7031 - ], - "__typename": [ - 85 - ] - }, - "v_player_damage_aggregate_fields": { - "avg": [ - 7034 - ], - "count": [ - 41, - { - "columns": [ - 7039, - "[v_player_damage_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 7036 - ], - "min": [ - 7037 - ], - "stddev": [ - 7040 - ], - "stddev_pop": [ - 7041 - ], - "stddev_samp": [ - 7042 - ], - "sum": [ - 7045 - ], - "var_pop": [ - 7046 - ], - "var_samp": [ - 7047 - ], - "variance": [ - 7048 - ], - "__typename": [ - 85 - ] - }, - "v_player_damage_avg_fields": { - "avg_damage_per_round": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "total_damage": [ - 32 - ], - "total_rounds": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_damage_bool_exp": { - "_and": [ - 7035 - ], - "_not": [ - 7035 - ], - "_or": [ - 7035 - ], - "avg_damage_per_round": [ - 314 - ], - "player": [ - 4610 - ], - "player_steam_id": [ - 314 - ], - "total_damage": [ - 314 - ], - "total_rounds": [ - 314 - ], - "__typename": [ - 85 - ] - }, - "v_player_damage_max_fields": { - "avg_damage_per_round": [ - 312 - ], - "player_steam_id": [ - 312 - ], - "total_damage": [ - 312 - ], - "total_rounds": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_player_damage_min_fields": { - "avg_damage_per_round": [ - 312 - ], - "player_steam_id": [ - 312 - ], - "total_damage": [ - 312 - ], - "total_rounds": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_player_damage_order_by": { - "avg_damage_per_round": [ - 3648 - ], - "player": [ - 4619 - ], - "player_steam_id": [ - 3648 - ], - "total_damage": [ - 3648 - ], - "total_rounds": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_damage_select_column": {}, - "v_player_damage_stddev_fields": { - "avg_damage_per_round": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "total_damage": [ - 32 - ], - "total_rounds": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_damage_stddev_pop_fields": { - "avg_damage_per_round": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "total_damage": [ - 32 - ], - "total_rounds": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_damage_stddev_samp_fields": { - "avg_damage_per_round": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "total_damage": [ - 32 - ], - "total_rounds": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_damage_stream_cursor_input": { - "initial_value": [ - 7044 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "v_player_damage_stream_cursor_value_input": { - "avg_damage_per_round": [ - 312 - ], - "player_steam_id": [ - 312 - ], - "total_damage": [ - 312 - ], - "total_rounds": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_player_damage_sum_fields": { - "avg_damage_per_round": [ - 312 - ], - "player_steam_id": [ - 312 - ], - "total_damage": [ - 312 - ], - "total_rounds": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_player_damage_var_pop_fields": { - "avg_damage_per_round": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "total_damage": [ - 32 - ], - "total_rounds": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_damage_var_samp_fields": { - "avg_damage_per_round": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "total_damage": [ - 32 - ], - "total_rounds": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_damage_variance_fields": { - "avg_damage_per_round": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "total_damage": [ - 32 - ], - "total_rounds": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_elo": { - "actual_score": [ - 2093 - ], - "assists": [ - 41 - ], - "current_elo": [ - 41 - ], - "damage": [ - 41 - ], - "damage_percent": [ - 2093 - ], - "deaths": [ - 41 - ], - "elo_change": [ - 41 - ], - "expected_score": [ - 2093 - ], - "impact": [ - 2093 - ], - "k_factor": [ - 41 - ], - "kda": [ - 2093 - ], - "kills": [ - 41 - ], - "map_losses": [ - 41 - ], - "map_wins": [ - 41 - ], - "match": [ - 3432 - ], - "match_created_at": [ - 5243 - ], - "match_id": [ - 6672 - ], - "match_result": [ - 85 - ], - "opponent_team_elo_avg": [ - 2093 - ], - "performance_multiplier": [ - 2093 - ], - "player_name": [ - 85 - ], - "player_steam_id": [ - 312 - ], - "player_team_elo_avg": [ - 2093 - ], - "rating_for_expected": [ - 2093 - ], - "season_id": [ - 6672 - ], - "series_multiplier": [ - 41 - ], - "team_avg_kda": [ - 2093 - ], - "type": [ - 85 - ], - "updated_elo": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_player_elo_aggregate": { - "aggregate": [ - 7063 - ], - "nodes": [ - 7049 - ], - "__typename": [ - 85 - ] - }, - "v_player_elo_aggregate_bool_exp": { - "avg": [ - 7052 - ], - "corr": [ - 7053 - ], - "count": [ - 7055 - ], - "covar_samp": [ - 7056 - ], - "max": [ - 7058 - ], - "min": [ - 7059 - ], - "stddev_samp": [ - 7060 - ], - "sum": [ - 7061 - ], - "var_samp": [ - 7062 - ], - "__typename": [ - 85 - ] - }, - "v_player_elo_aggregate_bool_exp_avg": { - "arguments": [ - 7076 - ], - "distinct": [ - 6 - ], - "filter": [ - 7068 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_player_elo_aggregate_bool_exp_corr": { - "arguments": [ - 7054 - ], - "distinct": [ - 6 - ], - "filter": [ - 7068 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_player_elo_aggregate_bool_exp_corr_arguments": { - "X": [ - 7077 - ], - "Y": [ - 7077 - ], - "__typename": [ - 85 - ] - }, - "v_player_elo_aggregate_bool_exp_count": { - "arguments": [ - 7075 - ], - "distinct": [ - 6 - ], - "filter": [ - 7068 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "v_player_elo_aggregate_bool_exp_covar_samp": { - "arguments": [ - 7057 - ], - "distinct": [ - 6 - ], - "filter": [ - 7068 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_player_elo_aggregate_bool_exp_covar_samp_arguments": { - "X": [ - 7078 - ], - "Y": [ - 7078 - ], - "__typename": [ - 85 - ] - }, - "v_player_elo_aggregate_bool_exp_max": { - "arguments": [ - 7079 - ], - "distinct": [ - 6 - ], - "filter": [ - 7068 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_player_elo_aggregate_bool_exp_min": { - "arguments": [ - 7080 - ], - "distinct": [ - 6 - ], - "filter": [ - 7068 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_player_elo_aggregate_bool_exp_stddev_samp": { - "arguments": [ - 7081 - ], - "distinct": [ - 6 - ], - "filter": [ - 7068 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_player_elo_aggregate_bool_exp_sum": { - "arguments": [ - 7082 - ], - "distinct": [ - 6 - ], - "filter": [ - 7068 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_player_elo_aggregate_bool_exp_var_samp": { - "arguments": [ - 7083 - ], - "distinct": [ - 6 - ], - "filter": [ - 7068 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_player_elo_aggregate_fields": { - "avg": [ - 7066 - ], - "count": [ - 41, - { - "columns": [ - 7075, - "[v_player_elo_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 7070 - ], - "min": [ - 7072 - ], - "stddev": [ - 7084 - ], - "stddev_pop": [ - 7086 - ], - "stddev_samp": [ - 7088 - ], - "sum": [ - 7092 - ], - "var_pop": [ - 7094 - ], - "var_samp": [ - 7096 - ], - "variance": [ - 7098 - ], - "__typename": [ - 85 - ] - }, - "v_player_elo_aggregate_order_by": { - "avg": [ - 7067 - ], - "count": [ - 3648 - ], - "max": [ - 7071 - ], - "min": [ - 7073 - ], - "stddev": [ - 7085 - ], - "stddev_pop": [ - 7087 - ], - "stddev_samp": [ - 7089 - ], - "sum": [ - 7093 - ], - "var_pop": [ - 7095 - ], - "var_samp": [ - 7097 - ], - "variance": [ - 7099 - ], - "__typename": [ - 85 - ] - }, - "v_player_elo_arr_rel_insert_input": { - "data": [ - 7069 - ], - "__typename": [ - 85 - ] - }, - "v_player_elo_avg_fields": { - "actual_score": [ - 32 - ], - "assists": [ - 32 - ], - "current_elo": [ - 32 - ], - "damage": [ - 32 - ], - "damage_percent": [ - 32 - ], - "deaths": [ - 32 - ], - "elo_change": [ - 32 - ], - "expected_score": [ - 32 - ], - "impact": [ - 32 - ], - "k_factor": [ - 32 - ], - "kda": [ - 32 - ], - "kills": [ - 32 - ], - "map_losses": [ - 32 - ], - "map_wins": [ - 32 - ], - "opponent_team_elo_avg": [ - 32 - ], - "performance_multiplier": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "player_team_elo_avg": [ - 32 - ], - "rating_for_expected": [ - 32 - ], - "series_multiplier": [ - 32 - ], - "team_avg_kda": [ - 32 - ], - "updated_elo": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_elo_avg_order_by": { - "actual_score": [ - 3648 - ], - "assists": [ - 3648 - ], - "current_elo": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_percent": [ - 3648 - ], - "deaths": [ - 3648 - ], - "elo_change": [ - 3648 - ], - "expected_score": [ - 3648 - ], - "impact": [ - 3648 - ], - "k_factor": [ - 3648 - ], - "kda": [ - 3648 - ], - "kills": [ - 3648 - ], - "map_losses": [ - 3648 - ], - "map_wins": [ - 3648 - ], - "opponent_team_elo_avg": [ - 3648 - ], - "performance_multiplier": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "player_team_elo_avg": [ - 3648 - ], - "rating_for_expected": [ - 3648 - ], - "series_multiplier": [ - 3648 - ], - "team_avg_kda": [ - 3648 - ], - "updated_elo": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_elo_bool_exp": { - "_and": [ - 7068 - ], - "_not": [ - 7068 - ], - "_or": [ - 7068 - ], - "actual_score": [ - 2094 - ], - "assists": [ - 42 - ], - "current_elo": [ - 42 - ], - "damage": [ - 42 - ], - "damage_percent": [ - 2094 - ], - "deaths": [ - 42 - ], - "elo_change": [ - 42 - ], - "expected_score": [ - 2094 - ], - "impact": [ - 2094 - ], - "k_factor": [ - 42 - ], - "kda": [ - 2094 - ], - "kills": [ - 42 - ], - "map_losses": [ - 42 - ], - "map_wins": [ - 42 - ], - "match": [ - 3443 - ], - "match_created_at": [ - 5244 - ], - "match_id": [ - 6674 - ], - "match_result": [ - 87 - ], - "opponent_team_elo_avg": [ - 2094 - ], - "performance_multiplier": [ - 2094 - ], - "player_name": [ - 87 - ], - "player_steam_id": [ - 314 - ], - "player_team_elo_avg": [ - 2094 - ], - "rating_for_expected": [ - 2094 - ], - "season_id": [ - 6674 - ], - "series_multiplier": [ - 42 - ], - "team_avg_kda": [ - 2094 - ], - "type": [ - 87 - ], - "updated_elo": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "v_player_elo_insert_input": { - "actual_score": [ - 2093 - ], - "assists": [ - 41 - ], - "current_elo": [ - 41 - ], - "damage": [ - 41 - ], - "damage_percent": [ - 2093 - ], - "deaths": [ - 41 - ], - "elo_change": [ - 41 - ], - "expected_score": [ - 2093 - ], - "impact": [ - 2093 - ], - "k_factor": [ - 41 - ], - "kda": [ - 2093 - ], - "kills": [ - 41 - ], - "map_losses": [ - 41 - ], - "map_wins": [ - 41 - ], - "match": [ - 3452 - ], - "match_created_at": [ - 5243 - ], - "match_id": [ - 6672 - ], - "match_result": [ - 85 - ], - "opponent_team_elo_avg": [ - 2093 - ], - "performance_multiplier": [ - 2093 - ], - "player_name": [ - 85 - ], - "player_steam_id": [ - 312 - ], - "player_team_elo_avg": [ - 2093 - ], - "rating_for_expected": [ - 2093 - ], - "season_id": [ - 6672 - ], - "series_multiplier": [ - 41 - ], - "team_avg_kda": [ - 2093 - ], - "type": [ - 85 - ], - "updated_elo": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_player_elo_max_fields": { - "actual_score": [ - 2093 - ], - "assists": [ - 41 - ], - "current_elo": [ - 41 - ], - "damage": [ - 41 - ], - "damage_percent": [ - 2093 - ], - "deaths": [ - 41 - ], - "elo_change": [ - 41 - ], - "expected_score": [ - 2093 - ], - "impact": [ - 2093 - ], - "k_factor": [ - 41 - ], - "kda": [ - 2093 - ], - "kills": [ - 41 - ], - "map_losses": [ - 41 - ], - "map_wins": [ - 41 - ], - "match_created_at": [ - 5243 - ], - "match_id": [ - 6672 - ], - "match_result": [ - 85 - ], - "opponent_team_elo_avg": [ - 2093 - ], - "performance_multiplier": [ - 2093 - ], - "player_name": [ - 85 - ], - "player_steam_id": [ - 312 - ], - "player_team_elo_avg": [ - 2093 - ], - "rating_for_expected": [ - 2093 - ], - "season_id": [ - 6672 - ], - "series_multiplier": [ - 41 - ], - "team_avg_kda": [ - 2093 - ], - "type": [ - 85 - ], - "updated_elo": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_player_elo_max_order_by": { - "actual_score": [ - 3648 - ], - "assists": [ - 3648 - ], - "current_elo": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_percent": [ - 3648 - ], - "deaths": [ - 3648 - ], - "elo_change": [ - 3648 - ], - "expected_score": [ - 3648 - ], - "impact": [ - 3648 - ], - "k_factor": [ - 3648 - ], - "kda": [ - 3648 - ], - "kills": [ - 3648 - ], - "map_losses": [ - 3648 - ], - "map_wins": [ - 3648 - ], - "match_created_at": [ - 3648 - ], - "match_id": [ - 3648 - ], - "match_result": [ - 3648 - ], - "opponent_team_elo_avg": [ - 3648 - ], - "performance_multiplier": [ - 3648 - ], - "player_name": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "player_team_elo_avg": [ - 3648 - ], - "rating_for_expected": [ - 3648 - ], - "season_id": [ - 3648 - ], - "series_multiplier": [ - 3648 - ], - "team_avg_kda": [ - 3648 - ], - "type": [ - 3648 - ], - "updated_elo": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_elo_min_fields": { - "actual_score": [ - 2093 - ], - "assists": [ - 41 - ], - "current_elo": [ - 41 - ], - "damage": [ - 41 - ], - "damage_percent": [ - 2093 - ], - "deaths": [ - 41 - ], - "elo_change": [ - 41 - ], - "expected_score": [ - 2093 - ], - "impact": [ - 2093 - ], - "k_factor": [ - 41 - ], - "kda": [ - 2093 - ], - "kills": [ - 41 - ], - "map_losses": [ - 41 - ], - "map_wins": [ - 41 - ], - "match_created_at": [ - 5243 - ], - "match_id": [ - 6672 - ], - "match_result": [ - 85 - ], - "opponent_team_elo_avg": [ - 2093 - ], - "performance_multiplier": [ - 2093 - ], - "player_name": [ - 85 - ], - "player_steam_id": [ - 312 - ], - "player_team_elo_avg": [ - 2093 - ], - "rating_for_expected": [ - 2093 - ], - "season_id": [ - 6672 - ], - "series_multiplier": [ - 41 - ], - "team_avg_kda": [ - 2093 - ], - "type": [ - 85 - ], - "updated_elo": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_player_elo_min_order_by": { - "actual_score": [ - 3648 - ], - "assists": [ - 3648 - ], - "current_elo": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_percent": [ - 3648 - ], - "deaths": [ - 3648 - ], - "elo_change": [ - 3648 - ], - "expected_score": [ - 3648 - ], - "impact": [ - 3648 - ], - "k_factor": [ - 3648 - ], - "kda": [ - 3648 - ], - "kills": [ - 3648 - ], - "map_losses": [ - 3648 - ], - "map_wins": [ - 3648 - ], - "match_created_at": [ - 3648 - ], - "match_id": [ - 3648 - ], - "match_result": [ - 3648 - ], - "opponent_team_elo_avg": [ - 3648 - ], - "performance_multiplier": [ - 3648 - ], - "player_name": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "player_team_elo_avg": [ - 3648 - ], - "rating_for_expected": [ - 3648 - ], - "season_id": [ - 3648 - ], - "series_multiplier": [ - 3648 - ], - "team_avg_kda": [ - 3648 - ], - "type": [ - 3648 - ], - "updated_elo": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_elo_order_by": { - "actual_score": [ - 3648 - ], - "assists": [ - 3648 - ], - "current_elo": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_percent": [ - 3648 - ], - "deaths": [ - 3648 - ], - "elo_change": [ - 3648 - ], - "expected_score": [ - 3648 - ], - "impact": [ - 3648 - ], - "k_factor": [ - 3648 - ], - "kda": [ - 3648 - ], - "kills": [ - 3648 - ], - "map_losses": [ - 3648 - ], - "map_wins": [ - 3648 - ], - "match": [ - 3454 - ], - "match_created_at": [ - 3648 - ], - "match_id": [ - 3648 - ], - "match_result": [ - 3648 - ], - "opponent_team_elo_avg": [ - 3648 - ], - "performance_multiplier": [ - 3648 - ], - "player_name": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "player_team_elo_avg": [ - 3648 - ], - "rating_for_expected": [ - 3648 - ], - "season_id": [ - 3648 - ], - "series_multiplier": [ - 3648 - ], - "team_avg_kda": [ - 3648 - ], - "type": [ - 3648 - ], - "updated_elo": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_elo_select_column": {}, - "v_player_elo_select_column_v_player_elo_aggregate_bool_exp_avg_arguments_columns": {}, - "v_player_elo_select_column_v_player_elo_aggregate_bool_exp_corr_arguments_columns": {}, - "v_player_elo_select_column_v_player_elo_aggregate_bool_exp_covar_samp_arguments_columns": {}, - "v_player_elo_select_column_v_player_elo_aggregate_bool_exp_max_arguments_columns": {}, - "v_player_elo_select_column_v_player_elo_aggregate_bool_exp_min_arguments_columns": {}, - "v_player_elo_select_column_v_player_elo_aggregate_bool_exp_stddev_samp_arguments_columns": {}, - "v_player_elo_select_column_v_player_elo_aggregate_bool_exp_sum_arguments_columns": {}, - "v_player_elo_select_column_v_player_elo_aggregate_bool_exp_var_samp_arguments_columns": {}, - "v_player_elo_stddev_fields": { - "actual_score": [ - 32 - ], - "assists": [ - 32 - ], - "current_elo": [ - 32 - ], - "damage": [ - 32 - ], - "damage_percent": [ - 32 - ], - "deaths": [ - 32 - ], - "elo_change": [ - 32 - ], - "expected_score": [ - 32 - ], - "impact": [ - 32 - ], - "k_factor": [ - 32 - ], - "kda": [ - 32 - ], - "kills": [ - 32 - ], - "map_losses": [ - 32 - ], - "map_wins": [ - 32 - ], - "opponent_team_elo_avg": [ - 32 - ], - "performance_multiplier": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "player_team_elo_avg": [ - 32 - ], - "rating_for_expected": [ - 32 - ], - "series_multiplier": [ - 32 - ], - "team_avg_kda": [ - 32 - ], - "updated_elo": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_elo_stddev_order_by": { - "actual_score": [ - 3648 - ], - "assists": [ - 3648 - ], - "current_elo": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_percent": [ - 3648 - ], - "deaths": [ - 3648 - ], - "elo_change": [ - 3648 - ], - "expected_score": [ - 3648 - ], - "impact": [ - 3648 - ], - "k_factor": [ - 3648 - ], - "kda": [ - 3648 - ], - "kills": [ - 3648 - ], - "map_losses": [ - 3648 - ], - "map_wins": [ - 3648 - ], - "opponent_team_elo_avg": [ - 3648 - ], - "performance_multiplier": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "player_team_elo_avg": [ - 3648 - ], - "rating_for_expected": [ - 3648 - ], - "series_multiplier": [ - 3648 - ], - "team_avg_kda": [ - 3648 - ], - "updated_elo": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_elo_stddev_pop_fields": { - "actual_score": [ - 32 - ], - "assists": [ - 32 - ], - "current_elo": [ - 32 - ], - "damage": [ - 32 - ], - "damage_percent": [ - 32 - ], - "deaths": [ - 32 - ], - "elo_change": [ - 32 - ], - "expected_score": [ - 32 - ], - "impact": [ - 32 - ], - "k_factor": [ - 32 - ], - "kda": [ - 32 - ], - "kills": [ - 32 - ], - "map_losses": [ - 32 - ], - "map_wins": [ - 32 - ], - "opponent_team_elo_avg": [ - 32 - ], - "performance_multiplier": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "player_team_elo_avg": [ - 32 - ], - "rating_for_expected": [ - 32 - ], - "series_multiplier": [ - 32 - ], - "team_avg_kda": [ - 32 - ], - "updated_elo": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_elo_stddev_pop_order_by": { - "actual_score": [ - 3648 - ], - "assists": [ - 3648 - ], - "current_elo": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_percent": [ - 3648 - ], - "deaths": [ - 3648 - ], - "elo_change": [ - 3648 - ], - "expected_score": [ - 3648 - ], - "impact": [ - 3648 - ], - "k_factor": [ - 3648 - ], - "kda": [ - 3648 - ], - "kills": [ - 3648 - ], - "map_losses": [ - 3648 - ], - "map_wins": [ - 3648 - ], - "opponent_team_elo_avg": [ - 3648 - ], - "performance_multiplier": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "player_team_elo_avg": [ - 3648 - ], - "rating_for_expected": [ - 3648 - ], - "series_multiplier": [ - 3648 - ], - "team_avg_kda": [ - 3648 - ], - "updated_elo": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_elo_stddev_samp_fields": { - "actual_score": [ - 32 - ], - "assists": [ - 32 - ], - "current_elo": [ - 32 - ], - "damage": [ - 32 - ], - "damage_percent": [ - 32 - ], - "deaths": [ - 32 - ], - "elo_change": [ - 32 - ], - "expected_score": [ - 32 - ], - "impact": [ - 32 - ], - "k_factor": [ - 32 - ], - "kda": [ - 32 - ], - "kills": [ - 32 - ], - "map_losses": [ - 32 - ], - "map_wins": [ - 32 - ], - "opponent_team_elo_avg": [ - 32 - ], - "performance_multiplier": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "player_team_elo_avg": [ - 32 - ], - "rating_for_expected": [ - 32 - ], - "series_multiplier": [ - 32 - ], - "team_avg_kda": [ - 32 - ], - "updated_elo": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_elo_stddev_samp_order_by": { - "actual_score": [ - 3648 - ], - "assists": [ - 3648 - ], - "current_elo": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_percent": [ - 3648 - ], - "deaths": [ - 3648 - ], - "elo_change": [ - 3648 - ], - "expected_score": [ - 3648 - ], - "impact": [ - 3648 - ], - "k_factor": [ - 3648 - ], - "kda": [ - 3648 - ], - "kills": [ - 3648 - ], - "map_losses": [ - 3648 - ], - "map_wins": [ - 3648 - ], - "opponent_team_elo_avg": [ - 3648 - ], - "performance_multiplier": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "player_team_elo_avg": [ - 3648 - ], - "rating_for_expected": [ - 3648 - ], - "series_multiplier": [ - 3648 - ], - "team_avg_kda": [ - 3648 - ], - "updated_elo": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_elo_stream_cursor_input": { - "initial_value": [ - 7091 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "v_player_elo_stream_cursor_value_input": { - "actual_score": [ - 2093 - ], - "assists": [ - 41 - ], - "current_elo": [ - 41 - ], - "damage": [ - 41 - ], - "damage_percent": [ - 2093 - ], - "deaths": [ - 41 - ], - "elo_change": [ - 41 - ], - "expected_score": [ - 2093 - ], - "impact": [ - 2093 - ], - "k_factor": [ - 41 - ], - "kda": [ - 2093 - ], - "kills": [ - 41 - ], - "map_losses": [ - 41 - ], - "map_wins": [ - 41 - ], - "match_created_at": [ - 5243 - ], - "match_id": [ - 6672 - ], - "match_result": [ - 85 - ], - "opponent_team_elo_avg": [ - 2093 - ], - "performance_multiplier": [ - 2093 - ], - "player_name": [ - 85 - ], - "player_steam_id": [ - 312 - ], - "player_team_elo_avg": [ - 2093 - ], - "rating_for_expected": [ - 2093 - ], - "season_id": [ - 6672 - ], - "series_multiplier": [ - 41 - ], - "team_avg_kda": [ - 2093 - ], - "type": [ - 85 - ], - "updated_elo": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_player_elo_sum_fields": { - "actual_score": [ - 2093 - ], - "assists": [ - 41 - ], - "current_elo": [ - 41 - ], - "damage": [ - 41 - ], - "damage_percent": [ - 2093 - ], - "deaths": [ - 41 - ], - "elo_change": [ - 41 - ], - "expected_score": [ - 2093 - ], - "impact": [ - 2093 - ], - "k_factor": [ - 41 - ], - "kda": [ - 2093 - ], - "kills": [ - 41 - ], - "map_losses": [ - 41 - ], - "map_wins": [ - 41 - ], - "opponent_team_elo_avg": [ - 2093 - ], - "performance_multiplier": [ - 2093 - ], - "player_steam_id": [ - 312 - ], - "player_team_elo_avg": [ - 2093 - ], - "rating_for_expected": [ - 2093 - ], - "series_multiplier": [ - 41 - ], - "team_avg_kda": [ - 2093 - ], - "updated_elo": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_player_elo_sum_order_by": { - "actual_score": [ - 3648 - ], - "assists": [ - 3648 - ], - "current_elo": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_percent": [ - 3648 - ], - "deaths": [ - 3648 - ], - "elo_change": [ - 3648 - ], - "expected_score": [ - 3648 - ], - "impact": [ - 3648 - ], - "k_factor": [ - 3648 - ], - "kda": [ - 3648 - ], - "kills": [ - 3648 - ], - "map_losses": [ - 3648 - ], - "map_wins": [ - 3648 - ], - "opponent_team_elo_avg": [ - 3648 - ], - "performance_multiplier": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "player_team_elo_avg": [ - 3648 - ], - "rating_for_expected": [ - 3648 - ], - "series_multiplier": [ - 3648 - ], - "team_avg_kda": [ - 3648 - ], - "updated_elo": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_elo_var_pop_fields": { - "actual_score": [ - 32 - ], - "assists": [ - 32 - ], - "current_elo": [ - 32 - ], - "damage": [ - 32 - ], - "damage_percent": [ - 32 - ], - "deaths": [ - 32 - ], - "elo_change": [ - 32 - ], - "expected_score": [ - 32 - ], - "impact": [ - 32 - ], - "k_factor": [ - 32 - ], - "kda": [ - 32 - ], - "kills": [ - 32 - ], - "map_losses": [ - 32 - ], - "map_wins": [ - 32 - ], - "opponent_team_elo_avg": [ - 32 - ], - "performance_multiplier": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "player_team_elo_avg": [ - 32 - ], - "rating_for_expected": [ - 32 - ], - "series_multiplier": [ - 32 - ], - "team_avg_kda": [ - 32 - ], - "updated_elo": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_elo_var_pop_order_by": { - "actual_score": [ - 3648 - ], - "assists": [ - 3648 - ], - "current_elo": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_percent": [ - 3648 - ], - "deaths": [ - 3648 - ], - "elo_change": [ - 3648 - ], - "expected_score": [ - 3648 - ], - "impact": [ - 3648 - ], - "k_factor": [ - 3648 - ], - "kda": [ - 3648 - ], - "kills": [ - 3648 - ], - "map_losses": [ - 3648 - ], - "map_wins": [ - 3648 - ], - "opponent_team_elo_avg": [ - 3648 - ], - "performance_multiplier": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "player_team_elo_avg": [ - 3648 - ], - "rating_for_expected": [ - 3648 - ], - "series_multiplier": [ - 3648 - ], - "team_avg_kda": [ - 3648 - ], - "updated_elo": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_elo_var_samp_fields": { - "actual_score": [ - 32 - ], - "assists": [ - 32 - ], - "current_elo": [ - 32 - ], - "damage": [ - 32 - ], - "damage_percent": [ - 32 - ], - "deaths": [ - 32 - ], - "elo_change": [ - 32 - ], - "expected_score": [ - 32 - ], - "impact": [ - 32 - ], - "k_factor": [ - 32 - ], - "kda": [ - 32 - ], - "kills": [ - 32 - ], - "map_losses": [ - 32 - ], - "map_wins": [ - 32 - ], - "opponent_team_elo_avg": [ - 32 - ], - "performance_multiplier": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "player_team_elo_avg": [ - 32 - ], - "rating_for_expected": [ - 32 - ], - "series_multiplier": [ - 32 - ], - "team_avg_kda": [ - 32 - ], - "updated_elo": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_elo_var_samp_order_by": { - "actual_score": [ - 3648 - ], - "assists": [ - 3648 - ], - "current_elo": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_percent": [ - 3648 - ], - "deaths": [ - 3648 - ], - "elo_change": [ - 3648 - ], - "expected_score": [ - 3648 - ], - "impact": [ - 3648 - ], - "k_factor": [ - 3648 - ], - "kda": [ - 3648 - ], - "kills": [ - 3648 - ], - "map_losses": [ - 3648 - ], - "map_wins": [ - 3648 - ], - "opponent_team_elo_avg": [ - 3648 - ], - "performance_multiplier": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "player_team_elo_avg": [ - 3648 - ], - "rating_for_expected": [ - 3648 - ], - "series_multiplier": [ - 3648 - ], - "team_avg_kda": [ - 3648 - ], - "updated_elo": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_elo_variance_fields": { - "actual_score": [ - 32 - ], - "assists": [ - 32 - ], - "current_elo": [ - 32 - ], - "damage": [ - 32 - ], - "damage_percent": [ - 32 - ], - "deaths": [ - 32 - ], - "elo_change": [ - 32 - ], - "expected_score": [ - 32 - ], - "impact": [ - 32 - ], - "k_factor": [ - 32 - ], - "kda": [ - 32 - ], - "kills": [ - 32 - ], - "map_losses": [ - 32 - ], - "map_wins": [ - 32 - ], - "opponent_team_elo_avg": [ - 32 - ], - "performance_multiplier": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "player_team_elo_avg": [ - 32 - ], - "rating_for_expected": [ - 32 - ], - "series_multiplier": [ - 32 - ], - "team_avg_kda": [ - 32 - ], - "updated_elo": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_elo_variance_order_by": { - "actual_score": [ - 3648 - ], - "assists": [ - 3648 - ], - "current_elo": [ - 3648 - ], - "damage": [ - 3648 - ], - "damage_percent": [ - 3648 - ], - "deaths": [ - 3648 - ], - "elo_change": [ - 3648 - ], - "expected_score": [ - 3648 - ], - "impact": [ - 3648 - ], - "k_factor": [ - 3648 - ], - "kda": [ - 3648 - ], - "kills": [ - 3648 - ], - "map_losses": [ - 3648 - ], - "map_wins": [ - 3648 - ], - "opponent_team_elo_avg": [ - 3648 - ], - "performance_multiplier": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "player_team_elo_avg": [ - 3648 - ], - "rating_for_expected": [ - 3648 - ], - "series_multiplier": [ - 3648 - ], - "team_avg_kda": [ - 3648 - ], - "updated_elo": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_map_losses": { - "map": [ - 2924 - ], - "map_id": [ - 6672 - ], - "match": [ - 3432 - ], - "match_id": [ - 6672 - ], - "started_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_player_map_losses_aggregate": { - "aggregate": [ - 7102 - ], - "nodes": [ - 7100 - ], - "__typename": [ - 85 - ] - }, - "v_player_map_losses_aggregate_fields": { - "avg": [ - 7103 - ], - "count": [ - 41, - { - "columns": [ - 7108, - "[v_player_map_losses_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 7105 - ], - "min": [ - 7106 - ], - "stddev": [ - 7109 - ], - "stddev_pop": [ - 7110 - ], - "stddev_samp": [ - 7111 - ], - "sum": [ - 7114 - ], - "var_pop": [ - 7115 - ], - "var_samp": [ - 7116 - ], - "variance": [ - 7117 - ], - "__typename": [ - 85 - ] - }, - "v_player_map_losses_avg_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_map_losses_bool_exp": { - "_and": [ - 7104 - ], - "_not": [ - 7104 - ], - "_or": [ - 7104 - ], - "map": [ - 2933 - ], - "map_id": [ - 6674 - ], - "match": [ - 3443 - ], - "match_id": [ - 6674 - ], - "started_at": [ - 5244 - ], - "steam_id": [ - 314 - ], - "__typename": [ - 85 - ] - }, - "v_player_map_losses_max_fields": { - "map_id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "started_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_player_map_losses_min_fields": { - "map_id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "started_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_player_map_losses_order_by": { - "map": [ - 2943 - ], - "map_id": [ - 3648 - ], - "match": [ - 3454 - ], - "match_id": [ - 3648 - ], - "started_at": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_map_losses_select_column": {}, - "v_player_map_losses_stddev_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_map_losses_stddev_pop_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_map_losses_stddev_samp_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_map_losses_stream_cursor_input": { - "initial_value": [ - 7113 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "v_player_map_losses_stream_cursor_value_input": { - "map_id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "started_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_player_map_losses_sum_fields": { - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_player_map_losses_var_pop_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_map_losses_var_samp_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_map_losses_variance_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_map_wins": { - "map": [ - 2924 - ], - "map_id": [ - 6672 - ], - "match": [ - 3432 - ], - "match_id": [ - 6672 - ], - "started_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_player_map_wins_aggregate": { - "aggregate": [ - 7120 - ], - "nodes": [ - 7118 - ], - "__typename": [ - 85 - ] - }, - "v_player_map_wins_aggregate_fields": { - "avg": [ - 7121 - ], - "count": [ - 41, - { - "columns": [ - 7126, - "[v_player_map_wins_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 7123 - ], - "min": [ - 7124 - ], - "stddev": [ - 7127 - ], - "stddev_pop": [ - 7128 - ], - "stddev_samp": [ - 7129 - ], - "sum": [ - 7132 - ], - "var_pop": [ - 7133 - ], - "var_samp": [ - 7134 - ], - "variance": [ - 7135 - ], - "__typename": [ - 85 - ] - }, - "v_player_map_wins_avg_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_map_wins_bool_exp": { - "_and": [ - 7122 - ], - "_not": [ - 7122 - ], - "_or": [ - 7122 - ], - "map": [ - 2933 - ], - "map_id": [ - 6674 - ], - "match": [ - 3443 - ], - "match_id": [ - 6674 - ], - "started_at": [ - 5244 - ], - "steam_id": [ - 314 - ], - "__typename": [ - 85 - ] - }, - "v_player_map_wins_max_fields": { - "map_id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "started_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_player_map_wins_min_fields": { - "map_id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "started_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_player_map_wins_order_by": { - "map": [ - 2943 - ], - "map_id": [ - 3648 - ], - "match": [ - 3454 - ], - "match_id": [ - 3648 - ], - "started_at": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_map_wins_select_column": {}, - "v_player_map_wins_stddev_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_map_wins_stddev_pop_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_map_wins_stddev_samp_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_map_wins_stream_cursor_input": { - "initial_value": [ - 7131 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "v_player_map_wins_stream_cursor_value_input": { - "map_id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "started_at": [ - 5243 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_player_map_wins_sum_fields": { - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_player_map_wins_var_pop_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_map_wins_var_samp_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_map_wins_variance_fields": { - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_head_to_head": { - "attacked": [ - 4606 - ], - "attacked_steam_id": [ - 312 - ], - "attacker": [ - 4606 - ], - "attacker_steam_id": [ - 312 - ], - "damage_dealt": [ - 41 - ], - "flash_count": [ - 312 - ], - "headshot_kills": [ - 312 - ], - "hits": [ - 312 - ], - "kills": [ - 312 - ], - "match": [ - 3432 - ], - "match_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_head_to_head_aggregate": { - "aggregate": [ - 7138 - ], - "nodes": [ - 7136 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_head_to_head_aggregate_fields": { - "avg": [ - 7139 - ], - "count": [ - 41, - { - "columns": [ - 7144, - "[v_player_match_head_to_head_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 7141 - ], - "min": [ - 7142 - ], - "stddev": [ - 7145 - ], - "stddev_pop": [ - 7146 - ], - "stddev_samp": [ - 7147 - ], - "sum": [ - 7150 - ], - "var_pop": [ - 7151 - ], - "var_samp": [ - 7152 - ], - "variance": [ - 7153 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_head_to_head_avg_fields": { - "attacked_steam_id": [ - 32 - ], - "attacker_steam_id": [ - 32 - ], - "damage_dealt": [ - 32 - ], - "flash_count": [ - 32 - ], - "headshot_kills": [ - 32 - ], - "hits": [ - 32 - ], - "kills": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_head_to_head_bool_exp": { - "_and": [ - 7140 - ], - "_not": [ - 7140 - ], - "_or": [ - 7140 - ], - "attacked": [ - 4610 - ], - "attacked_steam_id": [ - 314 - ], - "attacker": [ - 4610 - ], - "attacker_steam_id": [ - 314 - ], - "damage_dealt": [ - 42 - ], - "flash_count": [ - 314 - ], - "headshot_kills": [ - 314 - ], - "hits": [ - 314 - ], - "kills": [ - 314 - ], - "match": [ - 3443 - ], - "match_id": [ - 6674 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_head_to_head_max_fields": { - "attacked_steam_id": [ - 312 - ], - "attacker_steam_id": [ - 312 - ], - "damage_dealt": [ - 41 - ], - "flash_count": [ - 312 - ], - "headshot_kills": [ - 312 - ], - "hits": [ - 312 - ], - "kills": [ - 312 - ], - "match_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_head_to_head_min_fields": { - "attacked_steam_id": [ - 312 - ], - "attacker_steam_id": [ - 312 - ], - "damage_dealt": [ - 41 - ], - "flash_count": [ - 312 - ], - "headshot_kills": [ - 312 - ], - "hits": [ - 312 - ], - "kills": [ - 312 - ], - "match_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_head_to_head_order_by": { - "attacked": [ - 4619 - ], - "attacked_steam_id": [ - 3648 - ], - "attacker": [ - 4619 - ], - "attacker_steam_id": [ - 3648 - ], - "damage_dealt": [ - 3648 - ], - "flash_count": [ - 3648 - ], - "headshot_kills": [ - 3648 - ], - "hits": [ - 3648 - ], - "kills": [ - 3648 - ], - "match": [ - 3454 - ], - "match_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_head_to_head_select_column": {}, - "v_player_match_head_to_head_stddev_fields": { - "attacked_steam_id": [ - 32 - ], - "attacker_steam_id": [ - 32 - ], - "damage_dealt": [ - 32 - ], - "flash_count": [ - 32 - ], - "headshot_kills": [ - 32 - ], - "hits": [ - 32 - ], - "kills": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_head_to_head_stddev_pop_fields": { - "attacked_steam_id": [ - 32 - ], - "attacker_steam_id": [ - 32 - ], - "damage_dealt": [ - 32 - ], - "flash_count": [ - 32 - ], - "headshot_kills": [ - 32 - ], - "hits": [ - 32 - ], - "kills": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_head_to_head_stddev_samp_fields": { - "attacked_steam_id": [ - 32 - ], - "attacker_steam_id": [ - 32 - ], - "damage_dealt": [ - 32 - ], - "flash_count": [ - 32 - ], - "headshot_kills": [ - 32 - ], - "hits": [ - 32 - ], - "kills": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_head_to_head_stream_cursor_input": { - "initial_value": [ - 7149 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_head_to_head_stream_cursor_value_input": { - "attacked_steam_id": [ - 312 - ], - "attacker_steam_id": [ - 312 - ], - "damage_dealt": [ - 41 - ], - "flash_count": [ - 312 - ], - "headshot_kills": [ - 312 - ], - "hits": [ - 312 - ], - "kills": [ - 312 - ], - "match_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_head_to_head_sum_fields": { - "attacked_steam_id": [ - 312 - ], - "attacker_steam_id": [ - 312 - ], - "damage_dealt": [ - 41 - ], - "flash_count": [ - 312 - ], - "headshot_kills": [ - 312 - ], - "hits": [ - 312 - ], - "kills": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_head_to_head_var_pop_fields": { - "attacked_steam_id": [ - 32 - ], - "attacker_steam_id": [ - 32 - ], - "damage_dealt": [ - 32 - ], - "flash_count": [ - 32 - ], - "headshot_kills": [ - 32 - ], - "hits": [ - 32 - ], - "kills": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_head_to_head_var_samp_fields": { - "attacked_steam_id": [ - 32 - ], - "attacker_steam_id": [ - 32 - ], - "damage_dealt": [ - 32 - ], - "flash_count": [ - 32 - ], - "headshot_kills": [ - 32 - ], - "hits": [ - 32 - ], - "kills": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_head_to_head_variance_fields": { - "attacked_steam_id": [ - 32 - ], - "attacker_steam_id": [ - 32 - ], - "damage_dealt": [ - 32 - ], - "flash_count": [ - 32 - ], - "headshot_kills": [ - 32 - ], - "hits": [ - 32 - ], - "kills": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_hltv": { - "adr": [ - 3646 - ], - "apr": [ - 3646 - ], - "dpr": [ - 3646 - ], - "hltv_rating": [ - 3646 - ], - "kast_pct": [ - 3646 - ], - "kpr": [ - 3646 - ], - "match": [ - 3432 - ], - "match_id": [ - 6672 - ], - "match_map": [ - 3248 - ], - "match_map_id": [ - 6672 - ], - "player": [ - 4606 - ], - "rounds_played": [ - 41 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_hltv_aggregate": { - "aggregate": [ - 7158 - ], - "nodes": [ - 7154 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_hltv_aggregate_bool_exp": { - "count": [ - 7157 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_hltv_aggregate_bool_exp_count": { - "arguments": [ - 7172 - ], - "distinct": [ - 6 - ], - "filter": [ - 7163 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_hltv_aggregate_fields": { - "avg": [ - 7161 - ], - "count": [ - 41, - { - "columns": [ - 7172, - "[v_player_match_map_hltv_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 7166 - ], - "min": [ - 7168 - ], - "stddev": [ - 7174 - ], - "stddev_pop": [ - 7176 - ], - "stddev_samp": [ - 7178 - ], - "sum": [ - 7182 - ], - "var_pop": [ - 7185 - ], - "var_samp": [ - 7187 - ], - "variance": [ - 7189 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_hltv_aggregate_order_by": { - "avg": [ - 7162 - ], - "count": [ - 3648 - ], - "max": [ - 7167 - ], - "min": [ - 7169 - ], - "stddev": [ - 7175 - ], - "stddev_pop": [ - 7177 - ], - "stddev_samp": [ - 7179 - ], - "sum": [ - 7183 - ], - "var_pop": [ - 7186 - ], - "var_samp": [ - 7188 - ], - "variance": [ - 7190 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_hltv_arr_rel_insert_input": { - "data": [ - 7165 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_hltv_avg_fields": { - "adr": [ - 32 - ], - "apr": [ - 32 - ], - "dpr": [ - 32 - ], - "hltv_rating": [ - 32 - ], - "kast_pct": [ - 32 - ], - "kpr": [ - 32 - ], - "rounds_played": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_hltv_avg_order_by": { - "adr": [ - 3648 - ], - "apr": [ - 3648 - ], - "dpr": [ - 3648 - ], - "hltv_rating": [ - 3648 - ], - "kast_pct": [ - 3648 - ], - "kpr": [ - 3648 - ], - "rounds_played": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_hltv_bool_exp": { - "_and": [ - 7163 - ], - "_not": [ - 7163 - ], - "_or": [ - 7163 - ], - "adr": [ - 3647 - ], - "apr": [ - 3647 - ], - "dpr": [ - 3647 - ], - "hltv_rating": [ - 3647 - ], - "kast_pct": [ - 3647 - ], - "kpr": [ - 3647 - ], - "match": [ - 3443 - ], - "match_id": [ - 6674 - ], - "match_map": [ - 3257 - ], - "match_map_id": [ - 6674 - ], - "player": [ - 4610 - ], - "rounds_played": [ - 42 - ], - "steam_id": [ - 314 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_hltv_inc_input": { - "adr": [ - 3646 - ], - "apr": [ - 3646 - ], - "dpr": [ - 3646 - ], - "hltv_rating": [ - 3646 - ], - "kast_pct": [ - 3646 - ], - "kpr": [ - 3646 - ], - "rounds_played": [ - 41 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_hltv_insert_input": { - "adr": [ - 3646 - ], - "apr": [ - 3646 - ], - "dpr": [ - 3646 - ], - "hltv_rating": [ - 3646 - ], - "kast_pct": [ - 3646 - ], - "kpr": [ - 3646 - ], - "match": [ - 3452 - ], - "match_id": [ - 6672 - ], - "match_map": [ - 3266 - ], - "match_map_id": [ - 6672 - ], - "player": [ - 4617 - ], - "rounds_played": [ - 41 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_hltv_max_fields": { - "adr": [ - 3646 - ], - "apr": [ - 3646 - ], - "dpr": [ - 3646 - ], - "hltv_rating": [ - 3646 - ], - "kast_pct": [ - 3646 - ], - "kpr": [ - 3646 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "rounds_played": [ - 41 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_hltv_max_order_by": { - "adr": [ - 3648 - ], - "apr": [ - 3648 - ], - "dpr": [ - 3648 - ], - "hltv_rating": [ - 3648 - ], - "kast_pct": [ - 3648 - ], - "kpr": [ - 3648 - ], - "match_id": [ - 3648 - ], - "match_map_id": [ - 3648 - ], - "rounds_played": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_hltv_min_fields": { - "adr": [ - 3646 - ], - "apr": [ - 3646 - ], - "dpr": [ - 3646 - ], - "hltv_rating": [ - 3646 - ], - "kast_pct": [ - 3646 - ], - "kpr": [ - 3646 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "rounds_played": [ - 41 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_hltv_min_order_by": { - "adr": [ - 3648 - ], - "apr": [ - 3648 - ], - "dpr": [ - 3648 - ], - "hltv_rating": [ - 3648 - ], - "kast_pct": [ - 3648 - ], - "kpr": [ - 3648 - ], - "match_id": [ - 3648 - ], - "match_map_id": [ - 3648 - ], - "rounds_played": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_hltv_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 7154 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_hltv_order_by": { - "adr": [ - 3648 - ], - "apr": [ - 3648 - ], - "dpr": [ - 3648 - ], - "hltv_rating": [ - 3648 - ], - "kast_pct": [ - 3648 - ], - "kpr": [ - 3648 - ], - "match": [ - 3454 - ], - "match_id": [ - 3648 - ], - "match_map": [ - 3268 - ], - "match_map_id": [ - 3648 - ], - "player": [ - 4619 - ], - "rounds_played": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_hltv_select_column": {}, - "v_player_match_map_hltv_set_input": { - "adr": [ - 3646 - ], - "apr": [ - 3646 - ], - "dpr": [ - 3646 - ], - "hltv_rating": [ - 3646 - ], - "kast_pct": [ - 3646 - ], - "kpr": [ - 3646 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "rounds_played": [ - 41 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_hltv_stddev_fields": { - "adr": [ - 32 - ], - "apr": [ - 32 - ], - "dpr": [ - 32 - ], - "hltv_rating": [ - 32 - ], - "kast_pct": [ - 32 - ], - "kpr": [ - 32 - ], - "rounds_played": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_hltv_stddev_order_by": { - "adr": [ - 3648 - ], - "apr": [ - 3648 - ], - "dpr": [ - 3648 - ], - "hltv_rating": [ - 3648 - ], - "kast_pct": [ - 3648 - ], - "kpr": [ - 3648 - ], - "rounds_played": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_hltv_stddev_pop_fields": { - "adr": [ - 32 - ], - "apr": [ - 32 - ], - "dpr": [ - 32 - ], - "hltv_rating": [ - 32 - ], - "kast_pct": [ - 32 - ], - "kpr": [ - 32 - ], - "rounds_played": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_hltv_stddev_pop_order_by": { - "adr": [ - 3648 - ], - "apr": [ - 3648 - ], - "dpr": [ - 3648 - ], - "hltv_rating": [ - 3648 - ], - "kast_pct": [ - 3648 - ], - "kpr": [ - 3648 - ], - "rounds_played": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_hltv_stddev_samp_fields": { - "adr": [ - 32 - ], - "apr": [ - 32 - ], - "dpr": [ - 32 - ], - "hltv_rating": [ - 32 - ], - "kast_pct": [ - 32 - ], - "kpr": [ - 32 - ], - "rounds_played": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_hltv_stddev_samp_order_by": { - "adr": [ - 3648 - ], - "apr": [ - 3648 - ], - "dpr": [ - 3648 - ], - "hltv_rating": [ - 3648 - ], - "kast_pct": [ - 3648 - ], - "kpr": [ - 3648 - ], - "rounds_played": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_hltv_stream_cursor_input": { - "initial_value": [ - 7181 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_hltv_stream_cursor_value_input": { - "adr": [ - 3646 - ], - "apr": [ - 3646 - ], - "dpr": [ - 3646 - ], - "hltv_rating": [ - 3646 - ], - "kast_pct": [ - 3646 - ], - "kpr": [ - 3646 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "rounds_played": [ - 41 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_hltv_sum_fields": { - "adr": [ - 3646 - ], - "apr": [ - 3646 - ], - "dpr": [ - 3646 - ], - "hltv_rating": [ - 3646 - ], - "kast_pct": [ - 3646 - ], - "kpr": [ - 3646 - ], - "rounds_played": [ - 41 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_hltv_sum_order_by": { - "adr": [ - 3648 - ], - "apr": [ - 3648 - ], - "dpr": [ - 3648 - ], - "hltv_rating": [ - 3648 - ], - "kast_pct": [ - 3648 - ], - "kpr": [ - 3648 - ], - "rounds_played": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_hltv_updates": { - "_inc": [ - 7164 - ], - "_set": [ - 7173 - ], - "where": [ - 7163 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_hltv_var_pop_fields": { - "adr": [ - 32 - ], - "apr": [ - 32 - ], - "dpr": [ - 32 - ], - "hltv_rating": [ - 32 - ], - "kast_pct": [ - 32 - ], - "kpr": [ - 32 - ], - "rounds_played": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_hltv_var_pop_order_by": { - "adr": [ - 3648 - ], - "apr": [ - 3648 - ], - "dpr": [ - 3648 - ], - "hltv_rating": [ - 3648 - ], - "kast_pct": [ - 3648 - ], - "kpr": [ - 3648 - ], - "rounds_played": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_hltv_var_samp_fields": { - "adr": [ - 32 - ], - "apr": [ - 32 - ], - "dpr": [ - 32 - ], - "hltv_rating": [ - 32 - ], - "kast_pct": [ - 32 - ], - "kpr": [ - 32 - ], - "rounds_played": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_hltv_var_samp_order_by": { - "adr": [ - 3648 - ], - "apr": [ - 3648 - ], - "dpr": [ - 3648 - ], - "hltv_rating": [ - 3648 - ], - "kast_pct": [ - 3648 - ], - "kpr": [ - 3648 - ], - "rounds_played": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_hltv_variance_fields": { - "adr": [ - 32 - ], - "apr": [ - 32 - ], - "dpr": [ - 32 - ], - "hltv_rating": [ - 32 - ], - "kast_pct": [ - 32 - ], - "kpr": [ - 32 - ], - "rounds_played": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_hltv_variance_order_by": { - "adr": [ - 3648 - ], - "apr": [ - 3648 - ], - "dpr": [ - 3648 - ], - "hltv_rating": [ - 3648 - ], - "kast_pct": [ - 3648 - ], - "kpr": [ - 3648 - ], - "rounds_played": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_roles": { - "adr": [ - 3646 - ], - "awp_kills": [ - 41 - ], - "awp_share": [ - 3646 - ], - "deaths": [ - 41 - ], - "dpr": [ - 3646 - ], - "entry_rate": [ - 3646 - ], - "flash_assists": [ - 41 - ], - "hltv_rating": [ - 3646 - ], - "kast_pct": [ - 3646 - ], - "kills": [ - 41 - ], - "kpr": [ - 3646 - ], - "lineup_id": [ - 6672 - ], - "match": [ - 3432 - ], - "match_id": [ - 6672 - ], - "match_map": [ - 3248 - ], - "match_map_id": [ - 6672 - ], - "open_deaths": [ - 41 - ], - "open_kills": [ - 41 - ], - "opening_attempts": [ - 41 - ], - "player": [ - 4606 - ], - "role": [ - 85 - ], - "rounds": [ - 41 - ], - "steam_id": [ - 312 - ], - "support_idx": [ - 3646 - ], - "total_kills": [ - 41 - ], - "trade_kill_successes": [ - 41 - ], - "traded_death_successes": [ - 41 - ], - "util_damage": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_roles_aggregate": { - "aggregate": [ - 7193 - ], - "nodes": [ - 7191 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_roles_aggregate_fields": { - "avg": [ - 7194 - ], - "count": [ - 41, - { - "columns": [ - 7199, - "[v_player_match_map_roles_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 7196 - ], - "min": [ - 7197 - ], - "stddev": [ - 7200 - ], - "stddev_pop": [ - 7201 - ], - "stddev_samp": [ - 7202 - ], - "sum": [ - 7205 - ], - "var_pop": [ - 7206 - ], - "var_samp": [ - 7207 - ], - "variance": [ - 7208 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_roles_avg_fields": { - "adr": [ - 32 - ], - "awp_kills": [ - 32 - ], - "awp_share": [ - 32 - ], - "deaths": [ - 32 - ], - "dpr": [ - 32 - ], - "entry_rate": [ - 32 - ], - "flash_assists": [ - 32 - ], - "hltv_rating": [ - 32 - ], - "kast_pct": [ - 32 - ], - "kills": [ - 32 - ], - "kpr": [ - 32 - ], - "open_deaths": [ - 32 - ], - "open_kills": [ - 32 - ], - "opening_attempts": [ - 32 - ], - "rounds": [ - 32 - ], - "steam_id": [ - 32 - ], - "support_idx": [ - 32 - ], - "total_kills": [ - 32 - ], - "trade_kill_successes": [ - 32 - ], - "traded_death_successes": [ - 32 - ], - "util_damage": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_roles_bool_exp": { - "_and": [ - 7195 - ], - "_not": [ - 7195 - ], - "_or": [ - 7195 - ], - "adr": [ - 3647 - ], - "awp_kills": [ - 42 - ], - "awp_share": [ - 3647 - ], - "deaths": [ - 42 - ], - "dpr": [ - 3647 - ], - "entry_rate": [ - 3647 - ], - "flash_assists": [ - 42 - ], - "hltv_rating": [ - 3647 - ], - "kast_pct": [ - 3647 - ], - "kills": [ - 42 - ], - "kpr": [ - 3647 - ], - "lineup_id": [ - 6674 - ], - "match": [ - 3443 - ], - "match_id": [ - 6674 - ], - "match_map": [ - 3257 - ], - "match_map_id": [ - 6674 - ], - "open_deaths": [ - 42 - ], - "open_kills": [ - 42 - ], - "opening_attempts": [ - 42 - ], - "player": [ - 4610 - ], - "role": [ - 87 - ], - "rounds": [ - 42 - ], - "steam_id": [ - 314 - ], - "support_idx": [ - 3647 - ], - "total_kills": [ - 42 - ], - "trade_kill_successes": [ - 42 - ], - "traded_death_successes": [ - 42 - ], - "util_damage": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_roles_max_fields": { - "adr": [ - 3646 - ], - "awp_kills": [ - 41 - ], - "awp_share": [ - 3646 - ], - "deaths": [ - 41 - ], - "dpr": [ - 3646 - ], - "entry_rate": [ - 3646 - ], - "flash_assists": [ - 41 - ], - "hltv_rating": [ - 3646 - ], - "kast_pct": [ - 3646 - ], - "kills": [ - 41 - ], - "kpr": [ - 3646 - ], - "lineup_id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "open_deaths": [ - 41 - ], - "open_kills": [ - 41 - ], - "opening_attempts": [ - 41 - ], - "role": [ - 85 - ], - "rounds": [ - 41 - ], - "steam_id": [ - 312 - ], - "support_idx": [ - 3646 - ], - "total_kills": [ - 41 - ], - "trade_kill_successes": [ - 41 - ], - "traded_death_successes": [ - 41 - ], - "util_damage": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_roles_min_fields": { - "adr": [ - 3646 - ], - "awp_kills": [ - 41 - ], - "awp_share": [ - 3646 - ], - "deaths": [ - 41 - ], - "dpr": [ - 3646 - ], - "entry_rate": [ - 3646 - ], - "flash_assists": [ - 41 - ], - "hltv_rating": [ - 3646 - ], - "kast_pct": [ - 3646 - ], - "kills": [ - 41 - ], - "kpr": [ - 3646 - ], - "lineup_id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "open_deaths": [ - 41 - ], - "open_kills": [ - 41 - ], - "opening_attempts": [ - 41 - ], - "role": [ - 85 - ], - "rounds": [ - 41 - ], - "steam_id": [ - 312 - ], - "support_idx": [ - 3646 - ], - "total_kills": [ - 41 - ], - "trade_kill_successes": [ - 41 - ], - "traded_death_successes": [ - 41 - ], - "util_damage": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_roles_order_by": { - "adr": [ - 3648 - ], - "awp_kills": [ - 3648 - ], - "awp_share": [ - 3648 - ], - "deaths": [ - 3648 - ], - "dpr": [ - 3648 - ], - "entry_rate": [ - 3648 - ], - "flash_assists": [ - 3648 - ], - "hltv_rating": [ - 3648 - ], - "kast_pct": [ - 3648 - ], - "kills": [ - 3648 - ], - "kpr": [ - 3648 - ], - "lineup_id": [ - 3648 - ], - "match": [ - 3454 - ], - "match_id": [ - 3648 - ], - "match_map": [ - 3268 - ], - "match_map_id": [ - 3648 - ], - "open_deaths": [ - 3648 - ], - "open_kills": [ - 3648 - ], - "opening_attempts": [ - 3648 - ], - "player": [ - 4619 - ], - "role": [ - 3648 - ], - "rounds": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "support_idx": [ - 3648 - ], - "total_kills": [ - 3648 - ], - "trade_kill_successes": [ - 3648 - ], - "traded_death_successes": [ - 3648 - ], - "util_damage": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_roles_select_column": {}, - "v_player_match_map_roles_stddev_fields": { - "adr": [ - 32 - ], - "awp_kills": [ - 32 - ], - "awp_share": [ - 32 - ], - "deaths": [ - 32 - ], - "dpr": [ - 32 - ], - "entry_rate": [ - 32 - ], - "flash_assists": [ - 32 - ], - "hltv_rating": [ - 32 - ], - "kast_pct": [ - 32 - ], - "kills": [ - 32 - ], - "kpr": [ - 32 - ], - "open_deaths": [ - 32 - ], - "open_kills": [ - 32 - ], - "opening_attempts": [ - 32 - ], - "rounds": [ - 32 - ], - "steam_id": [ - 32 - ], - "support_idx": [ - 32 - ], - "total_kills": [ - 32 - ], - "trade_kill_successes": [ - 32 - ], - "traded_death_successes": [ - 32 - ], - "util_damage": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_roles_stddev_pop_fields": { - "adr": [ - 32 - ], - "awp_kills": [ - 32 - ], - "awp_share": [ - 32 - ], - "deaths": [ - 32 - ], - "dpr": [ - 32 - ], - "entry_rate": [ - 32 - ], - "flash_assists": [ - 32 - ], - "hltv_rating": [ - 32 - ], - "kast_pct": [ - 32 - ], - "kills": [ - 32 - ], - "kpr": [ - 32 - ], - "open_deaths": [ - 32 - ], - "open_kills": [ - 32 - ], - "opening_attempts": [ - 32 - ], - "rounds": [ - 32 - ], - "steam_id": [ - 32 - ], - "support_idx": [ - 32 - ], - "total_kills": [ - 32 - ], - "trade_kill_successes": [ - 32 - ], - "traded_death_successes": [ - 32 - ], - "util_damage": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_roles_stddev_samp_fields": { - "adr": [ - 32 - ], - "awp_kills": [ - 32 - ], - "awp_share": [ - 32 - ], - "deaths": [ - 32 - ], - "dpr": [ - 32 - ], - "entry_rate": [ - 32 - ], - "flash_assists": [ - 32 - ], - "hltv_rating": [ - 32 - ], - "kast_pct": [ - 32 - ], - "kills": [ - 32 - ], - "kpr": [ - 32 - ], - "open_deaths": [ - 32 - ], - "open_kills": [ - 32 - ], - "opening_attempts": [ - 32 - ], - "rounds": [ - 32 - ], - "steam_id": [ - 32 - ], - "support_idx": [ - 32 - ], - "total_kills": [ - 32 - ], - "trade_kill_successes": [ - 32 - ], - "traded_death_successes": [ - 32 - ], - "util_damage": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_roles_stream_cursor_input": { - "initial_value": [ - 7204 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_roles_stream_cursor_value_input": { - "adr": [ - 3646 - ], - "awp_kills": [ - 41 - ], - "awp_share": [ - 3646 - ], - "deaths": [ - 41 - ], - "dpr": [ - 3646 - ], - "entry_rate": [ - 3646 - ], - "flash_assists": [ - 41 - ], - "hltv_rating": [ - 3646 - ], - "kast_pct": [ - 3646 - ], - "kills": [ - 41 - ], - "kpr": [ - 3646 - ], - "lineup_id": [ - 6672 - ], - "match_id": [ - 6672 - ], - "match_map_id": [ - 6672 - ], - "open_deaths": [ - 41 - ], - "open_kills": [ - 41 - ], - "opening_attempts": [ - 41 - ], - "role": [ - 85 - ], - "rounds": [ - 41 - ], - "steam_id": [ - 312 - ], - "support_idx": [ - 3646 - ], - "total_kills": [ - 41 - ], - "trade_kill_successes": [ - 41 - ], - "traded_death_successes": [ - 41 - ], - "util_damage": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_roles_sum_fields": { - "adr": [ - 3646 - ], - "awp_kills": [ - 41 - ], - "awp_share": [ - 3646 - ], - "deaths": [ - 41 - ], - "dpr": [ - 3646 - ], - "entry_rate": [ - 3646 - ], - "flash_assists": [ - 41 - ], - "hltv_rating": [ - 3646 - ], - "kast_pct": [ - 3646 - ], - "kills": [ - 41 - ], - "kpr": [ - 3646 - ], - "open_deaths": [ - 41 - ], - "open_kills": [ - 41 - ], - "opening_attempts": [ - 41 - ], - "rounds": [ - 41 - ], - "steam_id": [ - 312 - ], - "support_idx": [ - 3646 - ], - "total_kills": [ - 41 - ], - "trade_kill_successes": [ - 41 - ], - "traded_death_successes": [ - 41 - ], - "util_damage": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_roles_var_pop_fields": { - "adr": [ - 32 - ], - "awp_kills": [ - 32 - ], - "awp_share": [ - 32 - ], - "deaths": [ - 32 - ], - "dpr": [ - 32 - ], - "entry_rate": [ - 32 - ], - "flash_assists": [ - 32 - ], - "hltv_rating": [ - 32 - ], - "kast_pct": [ - 32 - ], - "kills": [ - 32 - ], - "kpr": [ - 32 - ], - "open_deaths": [ - 32 - ], - "open_kills": [ - 32 - ], - "opening_attempts": [ - 32 - ], - "rounds": [ - 32 - ], - "steam_id": [ - 32 - ], - "support_idx": [ - 32 - ], - "total_kills": [ - 32 - ], - "trade_kill_successes": [ - 32 - ], - "traded_death_successes": [ - 32 - ], - "util_damage": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_roles_var_samp_fields": { - "adr": [ - 32 - ], - "awp_kills": [ - 32 - ], - "awp_share": [ - 32 - ], - "deaths": [ - 32 - ], - "dpr": [ - 32 - ], - "entry_rate": [ - 32 - ], - "flash_assists": [ - 32 - ], - "hltv_rating": [ - 32 - ], - "kast_pct": [ - 32 - ], - "kills": [ - 32 - ], - "kpr": [ - 32 - ], - "open_deaths": [ - 32 - ], - "open_kills": [ - 32 - ], - "opening_attempts": [ - 32 - ], - "rounds": [ - 32 - ], - "steam_id": [ - 32 - ], - "support_idx": [ - 32 - ], - "total_kills": [ - 32 - ], - "trade_kill_successes": [ - 32 - ], - "traded_death_successes": [ - 32 - ], - "util_damage": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_map_roles_variance_fields": { - "adr": [ - 32 - ], - "awp_kills": [ - 32 - ], - "awp_share": [ - 32 - ], - "deaths": [ - 32 - ], - "dpr": [ - 32 - ], - "entry_rate": [ - 32 - ], - "flash_assists": [ - 32 - ], - "hltv_rating": [ - 32 - ], - "kast_pct": [ - 32 - ], - "kills": [ - 32 - ], - "kpr": [ - 32 - ], - "open_deaths": [ - 32 - ], - "open_kills": [ - 32 - ], - "opening_attempts": [ - 32 - ], - "rounds": [ - 32 - ], - "steam_id": [ - 32 - ], - "support_idx": [ - 32 - ], - "total_kills": [ - 32 - ], - "trade_kill_successes": [ - 32 - ], - "traded_death_successes": [ - 32 - ], - "util_damage": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_performance": { - "assists": [ - 41 - ], - "deaths": [ - 41 - ], - "kills": [ - 41 - ], - "map": [ - 2924 - ], - "map_id": [ - 6672 - ], - "match": [ - 3432 - ], - "match_created_at": [ - 5243 - ], - "match_id": [ - 6672 - ], - "match_result": [ - 85 - ], - "player_steam_id": [ - 312 - ], - "source": [ - 85 - ], - "type": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_performance_aggregate": { - "aggregate": [ - 7211 - ], - "nodes": [ - 7209 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_performance_aggregate_fields": { - "avg": [ - 7212 - ], - "count": [ - 41, - { - "columns": [ - 7217, - "[v_player_match_performance_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 7214 - ], - "min": [ - 7215 - ], - "stddev": [ - 7218 - ], - "stddev_pop": [ - 7219 - ], - "stddev_samp": [ - 7220 - ], - "sum": [ - 7223 - ], - "var_pop": [ - 7224 - ], - "var_samp": [ - 7225 - ], - "variance": [ - 7226 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_performance_avg_fields": { - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "kills": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_performance_bool_exp": { - "_and": [ - 7213 - ], - "_not": [ - 7213 - ], - "_or": [ - 7213 - ], - "assists": [ - 42 - ], - "deaths": [ - 42 - ], - "kills": [ - 42 - ], - "map": [ - 2933 - ], - "map_id": [ - 6674 - ], - "match": [ - 3443 - ], - "match_created_at": [ - 5244 - ], - "match_id": [ - 6674 - ], - "match_result": [ - 87 - ], - "player_steam_id": [ - 314 - ], - "source": [ - 87 - ], - "type": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_performance_max_fields": { - "assists": [ - 41 - ], - "deaths": [ - 41 - ], - "kills": [ - 41 - ], - "map_id": [ - 6672 - ], - "match_created_at": [ - 5243 - ], - "match_id": [ - 6672 - ], - "match_result": [ - 85 - ], - "player_steam_id": [ - 312 - ], - "source": [ - 85 - ], - "type": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_performance_min_fields": { - "assists": [ - 41 - ], - "deaths": [ - 41 - ], - "kills": [ - 41 - ], - "map_id": [ - 6672 - ], - "match_created_at": [ - 5243 - ], - "match_id": [ - 6672 - ], - "match_result": [ - 85 - ], - "player_steam_id": [ - 312 - ], - "source": [ - 85 - ], - "type": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_performance_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "kills": [ - 3648 - ], - "map": [ - 2943 - ], - "map_id": [ - 3648 - ], - "match": [ - 3454 - ], - "match_created_at": [ - 3648 - ], - "match_id": [ - 3648 - ], - "match_result": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "source": [ - 3648 - ], - "type": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_performance_select_column": {}, - "v_player_match_performance_stddev_fields": { - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "kills": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_performance_stddev_pop_fields": { - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "kills": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_performance_stddev_samp_fields": { - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "kills": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_performance_stream_cursor_input": { - "initial_value": [ - 7222 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_performance_stream_cursor_value_input": { - "assists": [ - 41 - ], - "deaths": [ - 41 - ], - "kills": [ - 41 - ], - "map_id": [ - 6672 - ], - "match_created_at": [ - 5243 - ], - "match_id": [ - 6672 - ], - "match_result": [ - 85 - ], - "player_steam_id": [ - 312 - ], - "source": [ - 85 - ], - "type": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_performance_sum_fields": { - "assists": [ - 41 - ], - "deaths": [ - 41 - ], - "kills": [ - 41 - ], - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_performance_var_pop_fields": { - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "kills": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_performance_var_samp_fields": { - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "kills": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_performance_variance_fields": { - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "kills": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_rating": { - "adr": [ - 3646 - ], - "dpr": [ - 3646 - ], - "hltv_rating": [ - 3646 - ], - "kast_pct": [ - 3646 - ], - "kpr": [ - 3646 - ], - "match": [ - 3432 - ], - "match_id": [ - 6672 - ], - "player": [ - 4606 - ], - "rounds_played": [ - 41 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_rating_aggregate": { - "aggregate": [ - 7229 - ], - "nodes": [ - 7227 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_rating_aggregate_fields": { - "avg": [ - 7230 - ], - "count": [ - 41, - { - "columns": [ - 7235, - "[v_player_match_rating_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 7232 - ], - "min": [ - 7233 - ], - "stddev": [ - 7236 - ], - "stddev_pop": [ - 7237 - ], - "stddev_samp": [ - 7238 - ], - "sum": [ - 7241 - ], - "var_pop": [ - 7242 - ], - "var_samp": [ - 7243 - ], - "variance": [ - 7244 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_rating_avg_fields": { - "adr": [ - 32 - ], - "dpr": [ - 32 - ], - "hltv_rating": [ - 32 - ], - "kast_pct": [ - 32 - ], - "kpr": [ - 32 - ], - "rounds_played": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_rating_bool_exp": { - "_and": [ - 7231 - ], - "_not": [ - 7231 - ], - "_or": [ - 7231 - ], - "adr": [ - 3647 - ], - "dpr": [ - 3647 - ], - "hltv_rating": [ - 3647 - ], - "kast_pct": [ - 3647 - ], - "kpr": [ - 3647 - ], - "match": [ - 3443 - ], - "match_id": [ - 6674 - ], - "player": [ - 4610 - ], - "rounds_played": [ - 42 - ], - "steam_id": [ - 314 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_rating_max_fields": { - "adr": [ - 3646 - ], - "dpr": [ - 3646 - ], - "hltv_rating": [ - 3646 - ], - "kast_pct": [ - 3646 - ], - "kpr": [ - 3646 - ], - "match_id": [ - 6672 - ], - "rounds_played": [ - 41 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_rating_min_fields": { - "adr": [ - 3646 - ], - "dpr": [ - 3646 - ], - "hltv_rating": [ - 3646 - ], - "kast_pct": [ - 3646 - ], - "kpr": [ - 3646 - ], - "match_id": [ - 6672 - ], - "rounds_played": [ - 41 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_rating_order_by": { - "adr": [ - 3648 - ], - "dpr": [ - 3648 - ], - "hltv_rating": [ - 3648 - ], - "kast_pct": [ - 3648 - ], - "kpr": [ - 3648 - ], - "match": [ - 3454 - ], - "match_id": [ - 3648 - ], - "player": [ - 4619 - ], - "rounds_played": [ - 3648 - ], - "steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_rating_select_column": {}, - "v_player_match_rating_stddev_fields": { - "adr": [ - 32 - ], - "dpr": [ - 32 - ], - "hltv_rating": [ - 32 - ], - "kast_pct": [ - 32 - ], - "kpr": [ - 32 - ], - "rounds_played": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_rating_stddev_pop_fields": { - "adr": [ - 32 - ], - "dpr": [ - 32 - ], - "hltv_rating": [ - 32 - ], - "kast_pct": [ - 32 - ], - "kpr": [ - 32 - ], - "rounds_played": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_rating_stddev_samp_fields": { - "adr": [ - 32 - ], - "dpr": [ - 32 - ], - "hltv_rating": [ - 32 - ], - "kast_pct": [ - 32 - ], - "kpr": [ - 32 - ], - "rounds_played": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_rating_stream_cursor_input": { - "initial_value": [ - 7240 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_rating_stream_cursor_value_input": { - "adr": [ - 3646 - ], - "dpr": [ - 3646 - ], - "hltv_rating": [ - 3646 - ], - "kast_pct": [ - 3646 - ], - "kpr": [ - 3646 - ], - "match_id": [ - 6672 - ], - "rounds_played": [ - 41 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_rating_sum_fields": { - "adr": [ - 3646 - ], - "dpr": [ - 3646 - ], - "hltv_rating": [ - 3646 - ], - "kast_pct": [ - 3646 - ], - "kpr": [ - 3646 - ], - "rounds_played": [ - 41 - ], - "steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_rating_var_pop_fields": { - "adr": [ - 32 - ], - "dpr": [ - 32 - ], - "hltv_rating": [ - 32 - ], - "kast_pct": [ - 32 - ], - "kpr": [ - 32 - ], - "rounds_played": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_rating_var_samp_fields": { - "adr": [ - 32 - ], - "dpr": [ - 32 - ], - "hltv_rating": [ - 32 - ], - "kast_pct": [ - 32 - ], - "kpr": [ - 32 - ], - "rounds_played": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_match_rating_variance_fields": { - "adr": [ - 32 - ], - "dpr": [ - 32 - ], - "hltv_rating": [ - 32 - ], - "kast_pct": [ - 32 - ], - "kpr": [ - 32 - ], - "rounds_played": [ - 32 - ], - "steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_multi_kills": { - "attacker_steam_id": [ - 312 - ], - "kills": [ - 312 - ], - "match_id": [ - 6672 - ], - "round": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_player_multi_kills_aggregate": { - "aggregate": [ - 7249 - ], - "nodes": [ - 7245 - ], - "__typename": [ - 85 - ] - }, - "v_player_multi_kills_aggregate_bool_exp": { - "count": [ - 7248 - ], - "__typename": [ - 85 - ] - }, - "v_player_multi_kills_aggregate_bool_exp_count": { - "arguments": [ - 7261 - ], - "distinct": [ - 6 - ], - "filter": [ - 7254 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "v_player_multi_kills_aggregate_fields": { - "avg": [ - 7252 - ], - "count": [ - 41, - { - "columns": [ - 7261, - "[v_player_multi_kills_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 7256 - ], - "min": [ - 7258 - ], - "stddev": [ - 7262 - ], - "stddev_pop": [ - 7264 - ], - "stddev_samp": [ - 7266 - ], - "sum": [ - 7270 - ], - "var_pop": [ - 7272 - ], - "var_samp": [ - 7274 - ], - "variance": [ - 7276 - ], - "__typename": [ - 85 - ] - }, - "v_player_multi_kills_aggregate_order_by": { - "avg": [ - 7253 - ], - "count": [ - 3648 - ], - "max": [ - 7257 - ], - "min": [ - 7259 - ], - "stddev": [ - 7263 - ], - "stddev_pop": [ - 7265 - ], - "stddev_samp": [ - 7267 - ], - "sum": [ - 7271 - ], - "var_pop": [ - 7273 - ], - "var_samp": [ - 7275 - ], - "variance": [ - 7277 - ], - "__typename": [ - 85 - ] - }, - "v_player_multi_kills_arr_rel_insert_input": { - "data": [ - 7255 - ], - "__typename": [ - 85 - ] - }, - "v_player_multi_kills_avg_fields": { - "attacker_steam_id": [ - 32 - ], - "kills": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_multi_kills_avg_order_by": { - "attacker_steam_id": [ - 3648 - ], - "kills": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_multi_kills_bool_exp": { - "_and": [ - 7254 - ], - "_not": [ - 7254 - ], - "_or": [ - 7254 - ], - "attacker_steam_id": [ - 314 - ], - "kills": [ - 314 - ], - "match_id": [ - 6674 - ], - "round": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "v_player_multi_kills_insert_input": { - "attacker_steam_id": [ - 312 - ], - "kills": [ - 312 - ], - "match_id": [ - 6672 - ], - "round": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_player_multi_kills_max_fields": { - "attacker_steam_id": [ - 312 - ], - "kills": [ - 312 - ], - "match_id": [ - 6672 - ], - "round": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_player_multi_kills_max_order_by": { - "attacker_steam_id": [ - 3648 - ], - "kills": [ - 3648 - ], - "match_id": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_multi_kills_min_fields": { - "attacker_steam_id": [ - 312 - ], - "kills": [ - 312 - ], - "match_id": [ - 6672 - ], - "round": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_player_multi_kills_min_order_by": { - "attacker_steam_id": [ - 3648 - ], - "kills": [ - 3648 - ], - "match_id": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_multi_kills_order_by": { - "attacker_steam_id": [ - 3648 - ], - "kills": [ - 3648 - ], - "match_id": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_multi_kills_select_column": {}, - "v_player_multi_kills_stddev_fields": { - "attacker_steam_id": [ - 32 - ], - "kills": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_multi_kills_stddev_order_by": { - "attacker_steam_id": [ - 3648 - ], - "kills": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_multi_kills_stddev_pop_fields": { - "attacker_steam_id": [ - 32 - ], - "kills": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_multi_kills_stddev_pop_order_by": { - "attacker_steam_id": [ - 3648 - ], - "kills": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_multi_kills_stddev_samp_fields": { - "attacker_steam_id": [ - 32 - ], - "kills": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_multi_kills_stddev_samp_order_by": { - "attacker_steam_id": [ - 3648 - ], - "kills": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_multi_kills_stream_cursor_input": { - "initial_value": [ - 7269 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "v_player_multi_kills_stream_cursor_value_input": { - "attacker_steam_id": [ - 312 - ], - "kills": [ - 312 - ], - "match_id": [ - 6672 - ], - "round": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_player_multi_kills_sum_fields": { - "attacker_steam_id": [ - 312 - ], - "kills": [ - 312 - ], - "round": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_player_multi_kills_sum_order_by": { - "attacker_steam_id": [ - 3648 - ], - "kills": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_multi_kills_var_pop_fields": { - "attacker_steam_id": [ - 32 - ], - "kills": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_multi_kills_var_pop_order_by": { - "attacker_steam_id": [ - 3648 - ], - "kills": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_multi_kills_var_samp_fields": { - "attacker_steam_id": [ - 32 - ], - "kills": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_multi_kills_var_samp_order_by": { - "attacker_steam_id": [ - 3648 - ], - "kills": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_multi_kills_variance_fields": { - "attacker_steam_id": [ - 32 - ], - "kills": [ - 32 - ], - "round": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_multi_kills_variance_order_by": { - "attacker_steam_id": [ - 3648 - ], - "kills": [ - 3648 - ], - "round": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_queue_partners": { - "first_played_at": [ - 5243 - ], - "last_played_at": [ - 5243 - ], - "matches_together": [ - 41 - ], - "partner": [ - 4606 - ], - "partner_steam_id": [ - 312 - ], - "player": [ - 4606 - ], - "steam_id": [ - 312 - ], - "wins_together": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_player_queue_partners_aggregate": { - "aggregate": [ - 7280 - ], - "nodes": [ - 7278 - ], - "__typename": [ - 85 - ] - }, - "v_player_queue_partners_aggregate_fields": { - "avg": [ - 7281 - ], - "count": [ - 41, - { - "columns": [ - 7286, - "[v_player_queue_partners_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 7283 - ], - "min": [ - 7284 - ], - "stddev": [ - 7287 - ], - "stddev_pop": [ - 7288 - ], - "stddev_samp": [ - 7289 - ], - "sum": [ - 7292 - ], - "var_pop": [ - 7293 - ], - "var_samp": [ - 7294 - ], - "variance": [ - 7295 - ], - "__typename": [ - 85 - ] - }, - "v_player_queue_partners_avg_fields": { - "matches_together": [ - 32 - ], - "partner_steam_id": [ - 32 - ], - "steam_id": [ - 32 - ], - "wins_together": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_queue_partners_bool_exp": { - "_and": [ - 7282 - ], - "_not": [ - 7282 - ], - "_or": [ - 7282 - ], - "first_played_at": [ - 5244 - ], - "last_played_at": [ - 5244 - ], - "matches_together": [ - 42 - ], - "partner": [ - 4610 - ], - "partner_steam_id": [ - 314 - ], - "player": [ - 4610 - ], - "steam_id": [ - 314 - ], - "wins_together": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "v_player_queue_partners_max_fields": { - "first_played_at": [ - 5243 - ], - "last_played_at": [ - 5243 - ], - "matches_together": [ - 41 - ], - "partner_steam_id": [ - 312 - ], - "steam_id": [ - 312 - ], - "wins_together": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_player_queue_partners_min_fields": { - "first_played_at": [ - 5243 - ], - "last_played_at": [ - 5243 - ], - "matches_together": [ - 41 - ], - "partner_steam_id": [ - 312 - ], - "steam_id": [ - 312 - ], - "wins_together": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_player_queue_partners_order_by": { - "first_played_at": [ - 3648 - ], - "last_played_at": [ - 3648 - ], - "matches_together": [ - 3648 - ], - "partner": [ - 4619 - ], - "partner_steam_id": [ - 3648 - ], - "player": [ - 4619 - ], - "steam_id": [ - 3648 - ], - "wins_together": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_queue_partners_select_column": {}, - "v_player_queue_partners_stddev_fields": { - "matches_together": [ - 32 - ], - "partner_steam_id": [ - 32 - ], - "steam_id": [ - 32 - ], - "wins_together": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_queue_partners_stddev_pop_fields": { - "matches_together": [ - 32 - ], - "partner_steam_id": [ - 32 - ], - "steam_id": [ - 32 - ], - "wins_together": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_queue_partners_stddev_samp_fields": { - "matches_together": [ - 32 - ], - "partner_steam_id": [ - 32 - ], - "steam_id": [ - 32 - ], - "wins_together": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_queue_partners_stream_cursor_input": { - "initial_value": [ - 7291 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "v_player_queue_partners_stream_cursor_value_input": { - "first_played_at": [ - 5243 - ], - "last_played_at": [ - 5243 - ], - "matches_together": [ - 41 - ], - "partner_steam_id": [ - 312 - ], - "steam_id": [ - 312 - ], - "wins_together": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_player_queue_partners_sum_fields": { - "matches_together": [ - 41 - ], - "partner_steam_id": [ - 312 - ], - "steam_id": [ - 312 - ], - "wins_together": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_player_queue_partners_var_pop_fields": { - "matches_together": [ - 32 - ], - "partner_steam_id": [ - 32 - ], - "steam_id": [ - 32 - ], - "wins_together": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_queue_partners_var_samp_fields": { - "matches_together": [ - 32 - ], - "partner_steam_id": [ - 32 - ], - "steam_id": [ - 32 - ], - "wins_together": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_queue_partners_variance_fields": { - "matches_together": [ - 32 - ], - "partner_steam_id": [ - 32 - ], - "steam_id": [ - 32 - ], - "wins_together": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_weapon_damage": { - "damage": [ - 312 - ], - "hits": [ - 312 - ], - "player_steam_id": [ - 312 - ], - "source": [ - 85 - ], - "type": [ - 85 - ], - "with": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "v_player_weapon_damage_aggregate": { - "aggregate": [ - 7298 - ], - "nodes": [ - 7296 - ], - "__typename": [ - 85 - ] - }, - "v_player_weapon_damage_aggregate_fields": { - "avg": [ - 7299 - ], - "count": [ - 41, - { - "columns": [ - 7304, - "[v_player_weapon_damage_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 7301 - ], - "min": [ - 7302 - ], - "stddev": [ - 7305 - ], - "stddev_pop": [ - 7306 - ], - "stddev_samp": [ - 7307 - ], - "sum": [ - 7310 - ], - "var_pop": [ - 7311 - ], - "var_samp": [ - 7312 - ], - "variance": [ - 7313 - ], - "__typename": [ - 85 - ] - }, - "v_player_weapon_damage_avg_fields": { - "damage": [ - 32 - ], - "hits": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_weapon_damage_bool_exp": { - "_and": [ - 7300 - ], - "_not": [ - 7300 - ], - "_or": [ - 7300 - ], - "damage": [ - 314 - ], - "hits": [ - 314 - ], - "player_steam_id": [ - 314 - ], - "source": [ - 87 - ], - "type": [ - 87 - ], - "with": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "v_player_weapon_damage_max_fields": { - "damage": [ - 312 - ], - "hits": [ - 312 - ], - "player_steam_id": [ - 312 - ], - "source": [ - 85 - ], - "type": [ - 85 - ], - "with": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "v_player_weapon_damage_min_fields": { - "damage": [ - 312 - ], - "hits": [ - 312 - ], - "player_steam_id": [ - 312 - ], - "source": [ - 85 - ], - "type": [ - 85 - ], - "with": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "v_player_weapon_damage_order_by": { - "damage": [ - 3648 - ], - "hits": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "source": [ - 3648 - ], - "type": [ - 3648 - ], - "with": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_weapon_damage_select_column": {}, - "v_player_weapon_damage_stddev_fields": { - "damage": [ - 32 - ], - "hits": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_weapon_damage_stddev_pop_fields": { - "damage": [ - 32 - ], - "hits": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_weapon_damage_stddev_samp_fields": { - "damage": [ - 32 - ], - "hits": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_weapon_damage_stream_cursor_input": { - "initial_value": [ - 7309 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "v_player_weapon_damage_stream_cursor_value_input": { - "damage": [ - 312 - ], - "hits": [ - 312 - ], - "player_steam_id": [ - 312 - ], - "source": [ - 85 - ], - "type": [ - 85 - ], - "with": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "v_player_weapon_damage_sum_fields": { - "damage": [ - 312 - ], - "hits": [ - 312 - ], - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_player_weapon_damage_var_pop_fields": { - "damage": [ - 32 - ], - "hits": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_weapon_damage_var_samp_fields": { - "damage": [ - 32 - ], - "hits": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_weapon_damage_variance_fields": { - "damage": [ - 32 - ], - "hits": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_weapon_kills": { - "kill_count": [ - 312 - ], - "player_steam_id": [ - 312 - ], - "rounds": [ - 312 - ], - "source": [ - 85 - ], - "type": [ - 85 - ], - "with": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "v_player_weapon_kills_aggregate": { - "aggregate": [ - 7316 - ], - "nodes": [ - 7314 - ], - "__typename": [ - 85 - ] - }, - "v_player_weapon_kills_aggregate_fields": { - "avg": [ - 7317 - ], - "count": [ - 41, - { - "columns": [ - 7322, - "[v_player_weapon_kills_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 7319 - ], - "min": [ - 7320 - ], - "stddev": [ - 7323 - ], - "stddev_pop": [ - 7324 - ], - "stddev_samp": [ - 7325 - ], - "sum": [ - 7328 - ], - "var_pop": [ - 7329 - ], - "var_samp": [ - 7330 - ], - "variance": [ - 7331 - ], - "__typename": [ - 85 - ] - }, - "v_player_weapon_kills_avg_fields": { - "kill_count": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "rounds": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_weapon_kills_bool_exp": { - "_and": [ - 7318 - ], - "_not": [ - 7318 - ], - "_or": [ - 7318 - ], - "kill_count": [ - 314 - ], - "player_steam_id": [ - 314 - ], - "rounds": [ - 314 - ], - "source": [ - 87 - ], - "type": [ - 87 - ], - "with": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "v_player_weapon_kills_max_fields": { - "kill_count": [ - 312 - ], - "player_steam_id": [ - 312 - ], - "rounds": [ - 312 - ], - "source": [ - 85 - ], - "type": [ - 85 - ], - "with": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "v_player_weapon_kills_min_fields": { - "kill_count": [ - 312 - ], - "player_steam_id": [ - 312 - ], - "rounds": [ - 312 - ], - "source": [ - 85 - ], - "type": [ - 85 - ], - "with": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "v_player_weapon_kills_order_by": { - "kill_count": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "rounds": [ - 3648 - ], - "source": [ - 3648 - ], - "type": [ - 3648 - ], - "with": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_player_weapon_kills_select_column": {}, - "v_player_weapon_kills_stddev_fields": { - "kill_count": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "rounds": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_weapon_kills_stddev_pop_fields": { - "kill_count": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "rounds": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_weapon_kills_stddev_samp_fields": { - "kill_count": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "rounds": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_weapon_kills_stream_cursor_input": { - "initial_value": [ - 7327 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "v_player_weapon_kills_stream_cursor_value_input": { - "kill_count": [ - 312 - ], - "player_steam_id": [ - 312 - ], - "rounds": [ - 312 - ], - "source": [ - 85 - ], - "type": [ - 85 - ], - "with": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "v_player_weapon_kills_sum_fields": { - "kill_count": [ - 312 - ], - "player_steam_id": [ - 312 - ], - "rounds": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_player_weapon_kills_var_pop_fields": { - "kill_count": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "rounds": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_weapon_kills_var_samp_fields": { - "kill_count": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "rounds": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_player_weapon_kills_variance_fields": { - "kill_count": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "rounds": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_pool_maps": { - "active_pool": [ - 6 - ], - "id": [ - 6672 - ], - "label": [ - 85 - ], - "map_pool": [ - 2905 - ], - "map_pool_id": [ - 6672 - ], - "name": [ - 85 - ], - "patch": [ - 85 - ], - "poster": [ - 85 - ], - "type": [ - 85 - ], - "workshop_map_id": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "v_pool_maps_aggregate": { - "aggregate": [ - 7338 - ], - "nodes": [ - 7332 - ], - "__typename": [ - 85 - ] - }, - "v_pool_maps_aggregate_bool_exp": { - "bool_and": [ - 7335 - ], - "bool_or": [ - 7336 - ], - "count": [ - 7337 - ], - "__typename": [ - 85 - ] - }, - "v_pool_maps_aggregate_bool_exp_bool_and": { - "arguments": [ - 7350 - ], - "distinct": [ - 6 - ], - "filter": [ - 7341 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "v_pool_maps_aggregate_bool_exp_bool_or": { - "arguments": [ - 7351 - ], - "distinct": [ - 6 - ], - "filter": [ - 7341 - ], - "predicate": [ - 7 - ], - "__typename": [ - 85 - ] - }, - "v_pool_maps_aggregate_bool_exp_count": { - "arguments": [ - 7349 - ], - "distinct": [ - 6 - ], - "filter": [ - 7341 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "v_pool_maps_aggregate_fields": { - "count": [ - 41, - { - "columns": [ - 7349, - "[v_pool_maps_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 7343 - ], - "min": [ - 7345 - ], - "__typename": [ - 85 - ] - }, - "v_pool_maps_aggregate_order_by": { - "count": [ - 3648 - ], - "max": [ - 7344 - ], - "min": [ - 7346 - ], - "__typename": [ - 85 - ] - }, - "v_pool_maps_arr_rel_insert_input": { - "data": [ - 7342 - ], - "__typename": [ - 85 - ] - }, - "v_pool_maps_bool_exp": { - "_and": [ - 7341 - ], - "_not": [ - 7341 - ], - "_or": [ - 7341 - ], - "active_pool": [ - 7 - ], - "id": [ - 6674 - ], - "label": [ - 87 - ], - "map_pool": [ - 2908 - ], - "map_pool_id": [ - 6674 - ], - "name": [ - 87 - ], - "patch": [ - 87 - ], - "poster": [ - 87 - ], - "type": [ - 87 - ], - "workshop_map_id": [ - 87 - ], - "__typename": [ - 85 - ] - }, - "v_pool_maps_insert_input": { - "active_pool": [ - 6 - ], - "id": [ - 6672 - ], - "label": [ - 85 - ], - "map_pool": [ - 2914 - ], - "map_pool_id": [ - 6672 - ], - "name": [ - 85 - ], - "patch": [ - 85 - ], - "poster": [ - 85 - ], - "type": [ - 85 - ], - "workshop_map_id": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "v_pool_maps_max_fields": { - "id": [ - 6672 - ], - "label": [ - 85 - ], - "map_pool_id": [ - 6672 - ], - "name": [ - 85 - ], - "patch": [ - 85 - ], - "poster": [ - 85 - ], - "type": [ - 85 - ], - "workshop_map_id": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "v_pool_maps_max_order_by": { - "id": [ - 3648 - ], - "label": [ - 3648 - ], - "map_pool_id": [ - 3648 - ], - "name": [ - 3648 - ], - "patch": [ - 3648 - ], - "poster": [ - 3648 - ], - "type": [ - 3648 - ], - "workshop_map_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_pool_maps_min_fields": { - "id": [ - 6672 - ], - "label": [ - 85 - ], - "map_pool_id": [ - 6672 - ], - "name": [ - 85 - ], - "patch": [ - 85 - ], - "poster": [ - 85 - ], - "type": [ - 85 - ], - "workshop_map_id": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "v_pool_maps_min_order_by": { - "id": [ - 3648 - ], - "label": [ - 3648 - ], - "map_pool_id": [ - 3648 - ], - "name": [ - 3648 - ], - "patch": [ - 3648 - ], - "poster": [ - 3648 - ], - "type": [ - 3648 - ], - "workshop_map_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_pool_maps_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 7332 - ], - "__typename": [ - 85 - ] - }, - "v_pool_maps_order_by": { - "active_pool": [ - 3648 - ], - "id": [ - 3648 - ], - "label": [ - 3648 - ], - "map_pool": [ - 2916 - ], - "map_pool_id": [ - 3648 - ], - "name": [ - 3648 - ], - "patch": [ - 3648 - ], - "poster": [ - 3648 - ], - "type": [ - 3648 - ], - "workshop_map_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_pool_maps_select_column": {}, - "v_pool_maps_select_column_v_pool_maps_aggregate_bool_exp_bool_and_arguments_columns": {}, - "v_pool_maps_select_column_v_pool_maps_aggregate_bool_exp_bool_or_arguments_columns": {}, - "v_pool_maps_set_input": { - "active_pool": [ - 6 - ], - "id": [ - 6672 - ], - "label": [ - 85 - ], - "map_pool_id": [ - 6672 - ], - "name": [ - 85 - ], - "patch": [ - 85 - ], - "poster": [ - 85 - ], - "type": [ - 85 - ], - "workshop_map_id": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "v_pool_maps_stream_cursor_input": { - "initial_value": [ - 7354 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "v_pool_maps_stream_cursor_value_input": { - "active_pool": [ - 6 - ], - "id": [ - 6672 - ], - "label": [ - 85 - ], - "map_pool_id": [ - 6672 - ], - "name": [ - 85 - ], - "patch": [ - 85 - ], - "poster": [ - 85 - ], - "type": [ - 85 - ], - "workshop_map_id": [ - 85 - ], - "__typename": [ - 85 - ] - }, - "v_pool_maps_updates": { - "_set": [ - 7352 - ], - "where": [ - 7341 - ], - "__typename": [ - 85 - ] - }, - "v_steam_account_pool_status": { - "busy_accounts": [ - 41 - ], - "free_accounts": [ - 41 - ], - "id": [ - 41 - ], - "total_accounts": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_steam_account_pool_status_aggregate": { - "aggregate": [ - 7358 - ], - "nodes": [ - 7356 - ], - "__typename": [ - 85 - ] - }, - "v_steam_account_pool_status_aggregate_fields": { - "avg": [ - 7359 - ], - "count": [ - 41, - { - "columns": [ - 7364, - "[v_steam_account_pool_status_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 7361 - ], - "min": [ - 7362 - ], - "stddev": [ - 7365 - ], - "stddev_pop": [ - 7366 - ], - "stddev_samp": [ - 7367 - ], - "sum": [ - 7370 - ], - "var_pop": [ - 7371 - ], - "var_samp": [ - 7372 - ], - "variance": [ - 7373 - ], - "__typename": [ - 85 - ] - }, - "v_steam_account_pool_status_avg_fields": { - "busy_accounts": [ - 32 - ], - "free_accounts": [ - 32 - ], - "id": [ - 32 - ], - "total_accounts": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_steam_account_pool_status_bool_exp": { - "_and": [ - 7360 - ], - "_not": [ - 7360 - ], - "_or": [ - 7360 - ], - "busy_accounts": [ - 42 - ], - "free_accounts": [ - 42 - ], - "id": [ - 42 - ], - "total_accounts": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "v_steam_account_pool_status_max_fields": { - "busy_accounts": [ - 41 - ], - "free_accounts": [ - 41 - ], - "id": [ - 41 - ], - "total_accounts": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_steam_account_pool_status_min_fields": { - "busy_accounts": [ - 41 - ], - "free_accounts": [ - 41 - ], - "id": [ - 41 - ], - "total_accounts": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_steam_account_pool_status_order_by": { - "busy_accounts": [ - 3648 - ], - "free_accounts": [ - 3648 - ], - "id": [ - 3648 - ], - "total_accounts": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_steam_account_pool_status_select_column": {}, - "v_steam_account_pool_status_stddev_fields": { - "busy_accounts": [ - 32 - ], - "free_accounts": [ - 32 - ], - "id": [ - 32 - ], - "total_accounts": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_steam_account_pool_status_stddev_pop_fields": { - "busy_accounts": [ - 32 - ], - "free_accounts": [ - 32 - ], - "id": [ - 32 - ], - "total_accounts": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_steam_account_pool_status_stddev_samp_fields": { - "busy_accounts": [ - 32 - ], - "free_accounts": [ - 32 - ], - "id": [ - 32 - ], - "total_accounts": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_steam_account_pool_status_stream_cursor_input": { - "initial_value": [ - 7369 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "v_steam_account_pool_status_stream_cursor_value_input": { - "busy_accounts": [ - 41 - ], - "free_accounts": [ - 41 - ], - "id": [ - 41 - ], - "total_accounts": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_steam_account_pool_status_sum_fields": { - "busy_accounts": [ - 41 - ], - "free_accounts": [ - 41 - ], - "id": [ - 41 - ], - "total_accounts": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_steam_account_pool_status_var_pop_fields": { - "busy_accounts": [ - 32 - ], - "free_accounts": [ - 32 - ], - "id": [ - 32 - ], - "total_accounts": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_steam_account_pool_status_var_samp_fields": { - "busy_accounts": [ - 32 - ], - "free_accounts": [ - 32 - ], - "id": [ - 32 - ], - "total_accounts": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_steam_account_pool_status_variance_fields": { - "busy_accounts": [ - 32 - ], - "free_accounts": [ - 32 - ], - "id": [ - 32 - ], - "total_accounts": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_team_ranks": { - "avg_duel_elo": [ - 41 - ], - "avg_elo": [ - 41 - ], - "avg_faceit_elo": [ - 41 - ], - "avg_faceit_level": [ - 2093 - ], - "avg_premier": [ - 41 - ], - "avg_wingman_elo": [ - 41 - ], - "max_elo": [ - 41 - ], - "min_elo": [ - 41 - ], - "roster_size": [ - 312 - ], - "team": [ - 5194 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "v_team_ranks_aggregate": { - "aggregate": [ - 7376 - ], - "nodes": [ - 7374 - ], - "__typename": [ - 85 - ] - }, - "v_team_ranks_aggregate_fields": { - "avg": [ - 7377 - ], - "count": [ - 41, - { - "columns": [ - 7384, - "[v_team_ranks_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 7380 - ], - "min": [ - 7381 - ], - "stddev": [ - 7385 - ], - "stddev_pop": [ - 7386 - ], - "stddev_samp": [ - 7387 - ], - "sum": [ - 7390 - ], - "var_pop": [ - 7391 - ], - "var_samp": [ - 7392 - ], - "variance": [ - 7393 - ], - "__typename": [ - 85 - ] - }, - "v_team_ranks_avg_fields": { - "avg_duel_elo": [ - 32 - ], - "avg_elo": [ - 32 - ], - "avg_faceit_elo": [ - 32 - ], - "avg_faceit_level": [ - 32 - ], - "avg_premier": [ - 32 - ], - "avg_wingman_elo": [ - 32 - ], - "max_elo": [ - 32 - ], - "min_elo": [ - 32 - ], - "roster_size": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_team_ranks_bool_exp": { - "_and": [ - 7378 - ], - "_not": [ - 7378 - ], - "_or": [ - 7378 - ], - "avg_duel_elo": [ - 42 - ], - "avg_elo": [ - 42 - ], - "avg_faceit_elo": [ - 42 - ], - "avg_faceit_level": [ - 2094 - ], - "avg_premier": [ - 42 - ], - "avg_wingman_elo": [ - 42 - ], - "max_elo": [ - 42 - ], - "min_elo": [ - 42 - ], - "roster_size": [ - 314 - ], - "team": [ - 5205 - ], - "team_id": [ - 6674 - ], - "__typename": [ - 85 - ] - }, - "v_team_ranks_insert_input": { - "avg_duel_elo": [ - 41 - ], - "avg_elo": [ - 41 - ], - "avg_faceit_elo": [ - 41 - ], - "avg_faceit_level": [ - 2093 - ], - "avg_premier": [ - 41 - ], - "avg_wingman_elo": [ - 41 - ], - "max_elo": [ - 41 - ], - "min_elo": [ - 41 - ], - "roster_size": [ - 312 - ], - "team": [ - 5214 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "v_team_ranks_max_fields": { - "avg_duel_elo": [ - 41 - ], - "avg_elo": [ - 41 - ], - "avg_faceit_elo": [ - 41 - ], - "avg_faceit_level": [ - 2093 - ], - "avg_premier": [ - 41 - ], - "avg_wingman_elo": [ - 41 - ], - "max_elo": [ - 41 - ], - "min_elo": [ - 41 - ], - "roster_size": [ - 312 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "v_team_ranks_min_fields": { - "avg_duel_elo": [ - 41 - ], - "avg_elo": [ - 41 - ], - "avg_faceit_elo": [ - 41 - ], - "avg_faceit_level": [ - 2093 - ], - "avg_premier": [ - 41 - ], - "avg_wingman_elo": [ - 41 - ], - "max_elo": [ - 41 - ], - "min_elo": [ - 41 - ], - "roster_size": [ - 312 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "v_team_ranks_obj_rel_insert_input": { - "data": [ - 7379 - ], - "__typename": [ - 85 - ] - }, - "v_team_ranks_order_by": { - "avg_duel_elo": [ - 3648 - ], - "avg_elo": [ - 3648 - ], - "avg_faceit_elo": [ - 3648 - ], - "avg_faceit_level": [ - 3648 - ], - "avg_premier": [ - 3648 - ], - "avg_wingman_elo": [ - 3648 - ], - "max_elo": [ - 3648 - ], - "min_elo": [ - 3648 - ], - "roster_size": [ - 3648 - ], - "team": [ - 5216 - ], - "team_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_team_ranks_select_column": {}, - "v_team_ranks_stddev_fields": { - "avg_duel_elo": [ - 32 - ], - "avg_elo": [ - 32 - ], - "avg_faceit_elo": [ - 32 - ], - "avg_faceit_level": [ - 32 - ], - "avg_premier": [ - 32 - ], - "avg_wingman_elo": [ - 32 - ], - "max_elo": [ - 32 - ], - "min_elo": [ - 32 - ], - "roster_size": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_team_ranks_stddev_pop_fields": { - "avg_duel_elo": [ - 32 - ], - "avg_elo": [ - 32 - ], - "avg_faceit_elo": [ - 32 - ], - "avg_faceit_level": [ - 32 - ], - "avg_premier": [ - 32 - ], - "avg_wingman_elo": [ - 32 - ], - "max_elo": [ - 32 - ], - "min_elo": [ - 32 - ], - "roster_size": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_team_ranks_stddev_samp_fields": { - "avg_duel_elo": [ - 32 - ], - "avg_elo": [ - 32 - ], - "avg_faceit_elo": [ - 32 - ], - "avg_faceit_level": [ - 32 - ], - "avg_premier": [ - 32 - ], - "avg_wingman_elo": [ - 32 - ], - "max_elo": [ - 32 - ], - "min_elo": [ - 32 - ], - "roster_size": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_team_ranks_stream_cursor_input": { - "initial_value": [ - 7389 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "v_team_ranks_stream_cursor_value_input": { - "avg_duel_elo": [ - 41 - ], - "avg_elo": [ - 41 - ], - "avg_faceit_elo": [ - 41 - ], - "avg_faceit_level": [ - 2093 - ], - "avg_premier": [ - 41 - ], - "avg_wingman_elo": [ - 41 - ], - "max_elo": [ - 41 - ], - "min_elo": [ - 41 - ], - "roster_size": [ - 312 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "v_team_ranks_sum_fields": { - "avg_duel_elo": [ - 41 - ], - "avg_elo": [ - 41 - ], - "avg_faceit_elo": [ - 41 - ], - "avg_faceit_level": [ - 2093 - ], - "avg_premier": [ - 41 - ], - "avg_wingman_elo": [ - 41 - ], - "max_elo": [ - 41 - ], - "min_elo": [ - 41 - ], - "roster_size": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_team_ranks_var_pop_fields": { - "avg_duel_elo": [ - 32 - ], - "avg_elo": [ - 32 - ], - "avg_faceit_elo": [ - 32 - ], - "avg_faceit_level": [ - 32 - ], - "avg_premier": [ - 32 - ], - "avg_wingman_elo": [ - 32 - ], - "max_elo": [ - 32 - ], - "min_elo": [ - 32 - ], - "roster_size": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_team_ranks_var_samp_fields": { - "avg_duel_elo": [ - 32 - ], - "avg_elo": [ - 32 - ], - "avg_faceit_elo": [ - 32 - ], - "avg_faceit_level": [ - 32 - ], - "avg_premier": [ - 32 - ], - "avg_wingman_elo": [ - 32 - ], - "max_elo": [ - 32 - ], - "min_elo": [ - 32 - ], - "roster_size": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_team_ranks_variance_fields": { - "avg_duel_elo": [ - 32 - ], - "avg_elo": [ - 32 - ], - "avg_faceit_elo": [ - 32 - ], - "avg_faceit_level": [ - 32 - ], - "avg_premier": [ - 32 - ], - "avg_wingman_elo": [ - 32 - ], - "max_elo": [ - 32 - ], - "min_elo": [ - 32 - ], - "roster_size": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_team_reputation": { - "late_cancels": [ - 312 - ], - "no_shows": [ - 312 - ], - "reliability_pct": [ - 3646 - ], - "scrims_completed": [ - 312 - ], - "team": [ - 5194 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "v_team_reputation_aggregate": { - "aggregate": [ - 7396 - ], - "nodes": [ - 7394 - ], - "__typename": [ - 85 - ] - }, - "v_team_reputation_aggregate_fields": { - "avg": [ - 7397 - ], - "count": [ - 41, - { - "columns": [ - 7404, - "[v_team_reputation_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 7400 - ], - "min": [ - 7401 - ], - "stddev": [ - 7405 - ], - "stddev_pop": [ - 7406 - ], - "stddev_samp": [ - 7407 - ], - "sum": [ - 7410 - ], - "var_pop": [ - 7411 - ], - "var_samp": [ - 7412 - ], - "variance": [ - 7413 - ], - "__typename": [ - 85 - ] - }, - "v_team_reputation_avg_fields": { - "late_cancels": [ - 32 - ], - "no_shows": [ - 32 - ], - "reliability_pct": [ - 32 - ], - "scrims_completed": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_team_reputation_bool_exp": { - "_and": [ - 7398 - ], - "_not": [ - 7398 - ], - "_or": [ - 7398 - ], - "late_cancels": [ - 314 - ], - "no_shows": [ - 314 - ], - "reliability_pct": [ - 3647 - ], - "scrims_completed": [ - 314 - ], - "team": [ - 5205 - ], - "team_id": [ - 6674 - ], - "__typename": [ - 85 - ] - }, - "v_team_reputation_insert_input": { - "late_cancels": [ - 312 - ], - "no_shows": [ - 312 - ], - "reliability_pct": [ - 3646 - ], - "scrims_completed": [ - 312 - ], - "team": [ - 5214 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "v_team_reputation_max_fields": { - "late_cancels": [ - 312 - ], - "no_shows": [ - 312 - ], - "reliability_pct": [ - 3646 - ], - "scrims_completed": [ - 312 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "v_team_reputation_min_fields": { - "late_cancels": [ - 312 - ], - "no_shows": [ - 312 - ], - "reliability_pct": [ - 3646 - ], - "scrims_completed": [ - 312 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "v_team_reputation_obj_rel_insert_input": { - "data": [ - 7399 - ], - "__typename": [ - 85 - ] - }, - "v_team_reputation_order_by": { - "late_cancels": [ - 3648 - ], - "no_shows": [ - 3648 - ], - "reliability_pct": [ - 3648 - ], - "scrims_completed": [ - 3648 - ], - "team": [ - 5216 - ], - "team_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_team_reputation_select_column": {}, - "v_team_reputation_stddev_fields": { - "late_cancels": [ - 32 - ], - "no_shows": [ - 32 - ], - "reliability_pct": [ - 32 - ], - "scrims_completed": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_team_reputation_stddev_pop_fields": { - "late_cancels": [ - 32 - ], - "no_shows": [ - 32 - ], - "reliability_pct": [ - 32 - ], - "scrims_completed": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_team_reputation_stddev_samp_fields": { - "late_cancels": [ - 32 - ], - "no_shows": [ - 32 - ], - "reliability_pct": [ - 32 - ], - "scrims_completed": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_team_reputation_stream_cursor_input": { - "initial_value": [ - 7409 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "v_team_reputation_stream_cursor_value_input": { - "late_cancels": [ - 312 - ], - "no_shows": [ - 312 - ], - "reliability_pct": [ - 3646 - ], - "scrims_completed": [ - 312 - ], - "team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "v_team_reputation_sum_fields": { - "late_cancels": [ - 312 - ], - "no_shows": [ - 312 - ], - "reliability_pct": [ - 3646 - ], - "scrims_completed": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_team_reputation_var_pop_fields": { - "late_cancels": [ - 32 - ], - "no_shows": [ - 32 - ], - "reliability_pct": [ - 32 - ], - "scrims_completed": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_team_reputation_var_samp_fields": { - "late_cancels": [ - 32 - ], - "no_shows": [ - 32 - ], - "reliability_pct": [ - 32 - ], - "scrims_completed": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_team_reputation_variance_fields": { - "late_cancels": [ - 32 - ], - "no_shows": [ - 32 - ], - "reliability_pct": [ - 32 - ], - "scrims_completed": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results": { - "group_number": [ - 41 - ], - "head_to_head_match_wins": [ - 41 - ], - "head_to_head_rounds_won": [ - 41 - ], - "losses": [ - 41 - ], - "maps_lost": [ - 41 - ], - "maps_won": [ - 41 - ], - "matches_played": [ - 41 - ], - "matches_remaining": [ - 41 - ], - "placement": [ - 41 - ], - "rank": [ - 41 - ], - "rounds_lost": [ - 41 - ], - "rounds_won": [ - 41 - ], - "stage": [ - 5717 - ], - "team": [ - 5850 - ], - "team_kdr": [ - 2093 - ], - "total_deaths": [ - 41 - ], - "total_kills": [ - 41 - ], - "tournament_stage_id": [ - 6672 - ], - "tournament_team_id": [ - 6672 - ], - "wins": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_aggregate": { - "aggregate": [ - 7428 - ], - "nodes": [ - 7414 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_aggregate_bool_exp": { - "avg": [ - 7417 - ], - "corr": [ - 7418 - ], - "count": [ - 7420 - ], - "covar_samp": [ - 7421 - ], - "max": [ - 7423 - ], - "min": [ - 7424 - ], - "stddev_samp": [ - 7425 - ], - "sum": [ - 7426 - ], - "var_samp": [ - 7427 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_aggregate_bool_exp_avg": { - "arguments": [ - 7447 - ], - "distinct": [ - 6 - ], - "filter": [ - 7433 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_aggregate_bool_exp_corr": { - "arguments": [ - 7419 - ], - "distinct": [ - 6 - ], - "filter": [ - 7433 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_aggregate_bool_exp_corr_arguments": { - "X": [ - 7448 - ], - "Y": [ - 7448 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_aggregate_bool_exp_count": { - "arguments": [ - 7446 - ], - "distinct": [ - 6 - ], - "filter": [ - 7433 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_aggregate_bool_exp_covar_samp": { - "arguments": [ - 7422 - ], - "distinct": [ - 6 - ], - "filter": [ - 7433 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_aggregate_bool_exp_covar_samp_arguments": { - "X": [ - 7449 - ], - "Y": [ - 7449 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_aggregate_bool_exp_max": { - "arguments": [ - 7450 - ], - "distinct": [ - 6 - ], - "filter": [ - 7433 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_aggregate_bool_exp_min": { - "arguments": [ - 7451 - ], - "distinct": [ - 6 - ], - "filter": [ - 7433 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_aggregate_bool_exp_stddev_samp": { - "arguments": [ - 7452 - ], - "distinct": [ - 6 - ], - "filter": [ - 7433 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_aggregate_bool_exp_sum": { - "arguments": [ - 7453 - ], - "distinct": [ - 6 - ], - "filter": [ - 7433 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_aggregate_bool_exp_var_samp": { - "arguments": [ - 7454 - ], - "distinct": [ - 6 - ], - "filter": [ - 7433 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_aggregate_fields": { - "avg": [ - 7431 - ], - "count": [ - 41, - { - "columns": [ - 7446, - "[v_team_stage_results_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 7437 - ], - "min": [ - 7439 - ], - "stddev": [ - 7456 - ], - "stddev_pop": [ - 7458 - ], - "stddev_samp": [ - 7460 - ], - "sum": [ - 7464 - ], - "var_pop": [ - 7468 - ], - "var_samp": [ - 7470 - ], - "variance": [ - 7472 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_aggregate_order_by": { - "avg": [ - 7432 - ], - "count": [ - 3648 - ], - "max": [ - 7438 - ], - "min": [ - 7440 - ], - "stddev": [ - 7457 - ], - "stddev_pop": [ - 7459 - ], - "stddev_samp": [ - 7461 - ], - "sum": [ - 7465 - ], - "var_pop": [ - 7469 - ], - "var_samp": [ - 7471 - ], - "variance": [ - 7473 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_arr_rel_insert_input": { - "data": [ - 7436 - ], - "on_conflict": [ - 7443 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_avg_fields": { - "group_number": [ - 32 - ], - "head_to_head_match_wins": [ - 32 - ], - "head_to_head_rounds_won": [ - 32 - ], - "losses": [ - 32 - ], - "maps_lost": [ - 32 - ], - "maps_won": [ - 32 - ], - "matches_played": [ - 32 - ], - "matches_remaining": [ - 32 - ], - "placement": [ - 32 - ], - "rank": [ - 32 - ], - "rounds_lost": [ - 32 - ], - "rounds_won": [ - 32 - ], - "team_kdr": [ - 32 - ], - "total_deaths": [ - 32 - ], - "total_kills": [ - 32 - ], - "wins": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_avg_order_by": { - "group_number": [ - 3648 - ], - "head_to_head_match_wins": [ - 3648 - ], - "head_to_head_rounds_won": [ - 3648 - ], - "losses": [ - 3648 - ], - "maps_lost": [ - 3648 - ], - "maps_won": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "matches_remaining": [ - 3648 - ], - "placement": [ - 3648 - ], - "rank": [ - 3648 - ], - "rounds_lost": [ - 3648 - ], - "rounds_won": [ - 3648 - ], - "team_kdr": [ - 3648 - ], - "total_deaths": [ - 3648 - ], - "total_kills": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_bool_exp": { - "_and": [ - 7433 - ], - "_not": [ - 7433 - ], - "_or": [ - 7433 - ], - "group_number": [ - 42 - ], - "head_to_head_match_wins": [ - 42 - ], - "head_to_head_rounds_won": [ - 42 - ], - "losses": [ - 42 - ], - "maps_lost": [ - 42 - ], - "maps_won": [ - 42 - ], - "matches_played": [ - 42 - ], - "matches_remaining": [ - 42 - ], - "placement": [ - 42 - ], - "rank": [ - 42 - ], - "rounds_lost": [ - 42 - ], - "rounds_won": [ - 42 - ], - "stage": [ - 5729 - ], - "team": [ - 5861 - ], - "team_kdr": [ - 2094 - ], - "total_deaths": [ - 42 - ], - "total_kills": [ - 42 - ], - "tournament_stage_id": [ - 6674 - ], - "tournament_team_id": [ - 6674 - ], - "wins": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_constraint": {}, - "v_team_stage_results_inc_input": { - "group_number": [ - 41 - ], - "head_to_head_match_wins": [ - 41 - ], - "head_to_head_rounds_won": [ - 41 - ], - "losses": [ - 41 - ], - "maps_lost": [ - 41 - ], - "maps_won": [ - 41 - ], - "matches_played": [ - 41 - ], - "matches_remaining": [ - 41 - ], - "placement": [ - 41 - ], - "rank": [ - 41 - ], - "rounds_lost": [ - 41 - ], - "rounds_won": [ - 41 - ], - "team_kdr": [ - 2093 - ], - "total_deaths": [ - 41 - ], - "total_kills": [ - 41 - ], - "wins": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_insert_input": { - "group_number": [ - 41 - ], - "head_to_head_match_wins": [ - 41 - ], - "head_to_head_rounds_won": [ - 41 - ], - "losses": [ - 41 - ], - "maps_lost": [ - 41 - ], - "maps_won": [ - 41 - ], - "matches_played": [ - 41 - ], - "matches_remaining": [ - 41 - ], - "placement": [ - 41 - ], - "rank": [ - 41 - ], - "rounds_lost": [ - 41 - ], - "rounds_won": [ - 41 - ], - "stage": [ - 5741 - ], - "team": [ - 5870 - ], - "team_kdr": [ - 2093 - ], - "total_deaths": [ - 41 - ], - "total_kills": [ - 41 - ], - "tournament_stage_id": [ - 6672 - ], - "tournament_team_id": [ - 6672 - ], - "wins": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_max_fields": { - "group_number": [ - 41 - ], - "head_to_head_match_wins": [ - 41 - ], - "head_to_head_rounds_won": [ - 41 - ], - "losses": [ - 41 - ], - "maps_lost": [ - 41 - ], - "maps_won": [ - 41 - ], - "matches_played": [ - 41 - ], - "matches_remaining": [ - 41 - ], - "placement": [ - 41 - ], - "rank": [ - 41 - ], - "rounds_lost": [ - 41 - ], - "rounds_won": [ - 41 - ], - "team_kdr": [ - 2093 - ], - "total_deaths": [ - 41 - ], - "total_kills": [ - 41 - ], - "tournament_stage_id": [ - 6672 - ], - "tournament_team_id": [ - 6672 - ], - "wins": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_max_order_by": { - "group_number": [ - 3648 - ], - "head_to_head_match_wins": [ - 3648 - ], - "head_to_head_rounds_won": [ - 3648 - ], - "losses": [ - 3648 - ], - "maps_lost": [ - 3648 - ], - "maps_won": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "matches_remaining": [ - 3648 - ], - "placement": [ - 3648 - ], - "rank": [ - 3648 - ], - "rounds_lost": [ - 3648 - ], - "rounds_won": [ - 3648 - ], - "team_kdr": [ - 3648 - ], - "total_deaths": [ - 3648 - ], - "total_kills": [ - 3648 - ], - "tournament_stage_id": [ - 3648 - ], - "tournament_team_id": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_min_fields": { - "group_number": [ - 41 - ], - "head_to_head_match_wins": [ - 41 - ], - "head_to_head_rounds_won": [ - 41 - ], - "losses": [ - 41 - ], - "maps_lost": [ - 41 - ], - "maps_won": [ - 41 - ], - "matches_played": [ - 41 - ], - "matches_remaining": [ - 41 - ], - "placement": [ - 41 - ], - "rank": [ - 41 - ], - "rounds_lost": [ - 41 - ], - "rounds_won": [ - 41 - ], - "team_kdr": [ - 2093 - ], - "total_deaths": [ - 41 - ], - "total_kills": [ - 41 - ], - "tournament_stage_id": [ - 6672 - ], - "tournament_team_id": [ - 6672 - ], - "wins": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_min_order_by": { - "group_number": [ - 3648 - ], - "head_to_head_match_wins": [ - 3648 - ], - "head_to_head_rounds_won": [ - 3648 - ], - "losses": [ - 3648 - ], - "maps_lost": [ - 3648 - ], - "maps_won": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "matches_remaining": [ - 3648 - ], - "placement": [ - 3648 - ], - "rank": [ - 3648 - ], - "rounds_lost": [ - 3648 - ], - "rounds_won": [ - 3648 - ], - "team_kdr": [ - 3648 - ], - "total_deaths": [ - 3648 - ], - "total_kills": [ - 3648 - ], - "tournament_stage_id": [ - 3648 - ], - "tournament_team_id": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_mutation_response": { - "affected_rows": [ - 41 - ], - "returning": [ - 7414 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_obj_rel_insert_input": { - "data": [ - 7436 - ], - "on_conflict": [ - 7443 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_on_conflict": { - "constraint": [ - 7434 - ], - "update_columns": [ - 7466 - ], - "where": [ - 7433 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_order_by": { - "group_number": [ - 3648 - ], - "head_to_head_match_wins": [ - 3648 - ], - "head_to_head_rounds_won": [ - 3648 - ], - "losses": [ - 3648 - ], - "maps_lost": [ - 3648 - ], - "maps_won": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "matches_remaining": [ - 3648 - ], - "placement": [ - 3648 - ], - "rank": [ - 3648 - ], - "rounds_lost": [ - 3648 - ], - "rounds_won": [ - 3648 - ], - "stage": [ - 5743 - ], - "team": [ - 5872 - ], - "team_kdr": [ - 3648 - ], - "total_deaths": [ - 3648 - ], - "total_kills": [ - 3648 - ], - "tournament_stage_id": [ - 3648 - ], - "tournament_team_id": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_pk_columns_input": { - "tournament_stage_id": [ - 6672 - ], - "tournament_team_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_select_column": {}, - "v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_avg_arguments_columns": {}, - "v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_corr_arguments_columns": {}, - "v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_covar_samp_arguments_columns": {}, - "v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_max_arguments_columns": {}, - "v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_min_arguments_columns": {}, - "v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_stddev_samp_arguments_columns": {}, - "v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_sum_arguments_columns": {}, - "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": [ - 41 - ], - "head_to_head_match_wins": [ - 41 - ], - "head_to_head_rounds_won": [ - 41 - ], - "losses": [ - 41 - ], - "maps_lost": [ - 41 - ], - "maps_won": [ - 41 - ], - "matches_played": [ - 41 - ], - "matches_remaining": [ - 41 - ], - "placement": [ - 41 - ], - "rank": [ - 41 - ], - "rounds_lost": [ - 41 - ], - "rounds_won": [ - 41 - ], - "team_kdr": [ - 2093 - ], - "total_deaths": [ - 41 - ], - "total_kills": [ - 41 - ], - "tournament_stage_id": [ - 6672 - ], - "tournament_team_id": [ - 6672 - ], - "wins": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_stddev_fields": { - "group_number": [ - 32 - ], - "head_to_head_match_wins": [ - 32 - ], - "head_to_head_rounds_won": [ - 32 - ], - "losses": [ - 32 - ], - "maps_lost": [ - 32 - ], - "maps_won": [ - 32 - ], - "matches_played": [ - 32 - ], - "matches_remaining": [ - 32 - ], - "placement": [ - 32 - ], - "rank": [ - 32 - ], - "rounds_lost": [ - 32 - ], - "rounds_won": [ - 32 - ], - "team_kdr": [ - 32 - ], - "total_deaths": [ - 32 - ], - "total_kills": [ - 32 - ], - "wins": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_stddev_order_by": { - "group_number": [ - 3648 - ], - "head_to_head_match_wins": [ - 3648 - ], - "head_to_head_rounds_won": [ - 3648 - ], - "losses": [ - 3648 - ], - "maps_lost": [ - 3648 - ], - "maps_won": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "matches_remaining": [ - 3648 - ], - "placement": [ - 3648 - ], - "rank": [ - 3648 - ], - "rounds_lost": [ - 3648 - ], - "rounds_won": [ - 3648 - ], - "team_kdr": [ - 3648 - ], - "total_deaths": [ - 3648 - ], - "total_kills": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_stddev_pop_fields": { - "group_number": [ - 32 - ], - "head_to_head_match_wins": [ - 32 - ], - "head_to_head_rounds_won": [ - 32 - ], - "losses": [ - 32 - ], - "maps_lost": [ - 32 - ], - "maps_won": [ - 32 - ], - "matches_played": [ - 32 - ], - "matches_remaining": [ - 32 - ], - "placement": [ - 32 - ], - "rank": [ - 32 - ], - "rounds_lost": [ - 32 - ], - "rounds_won": [ - 32 - ], - "team_kdr": [ - 32 - ], - "total_deaths": [ - 32 - ], - "total_kills": [ - 32 - ], - "wins": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_stddev_pop_order_by": { - "group_number": [ - 3648 - ], - "head_to_head_match_wins": [ - 3648 - ], - "head_to_head_rounds_won": [ - 3648 - ], - "losses": [ - 3648 - ], - "maps_lost": [ - 3648 - ], - "maps_won": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "matches_remaining": [ - 3648 - ], - "placement": [ - 3648 - ], - "rank": [ - 3648 - ], - "rounds_lost": [ - 3648 - ], - "rounds_won": [ - 3648 - ], - "team_kdr": [ - 3648 - ], - "total_deaths": [ - 3648 - ], - "total_kills": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_stddev_samp_fields": { - "group_number": [ - 32 - ], - "head_to_head_match_wins": [ - 32 - ], - "head_to_head_rounds_won": [ - 32 - ], - "losses": [ - 32 - ], - "maps_lost": [ - 32 - ], - "maps_won": [ - 32 - ], - "matches_played": [ - 32 - ], - "matches_remaining": [ - 32 - ], - "placement": [ - 32 - ], - "rank": [ - 32 - ], - "rounds_lost": [ - 32 - ], - "rounds_won": [ - 32 - ], - "team_kdr": [ - 32 - ], - "total_deaths": [ - 32 - ], - "total_kills": [ - 32 - ], - "wins": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_stddev_samp_order_by": { - "group_number": [ - 3648 - ], - "head_to_head_match_wins": [ - 3648 - ], - "head_to_head_rounds_won": [ - 3648 - ], - "losses": [ - 3648 - ], - "maps_lost": [ - 3648 - ], - "maps_won": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "matches_remaining": [ - 3648 - ], - "placement": [ - 3648 - ], - "rank": [ - 3648 - ], - "rounds_lost": [ - 3648 - ], - "rounds_won": [ - 3648 - ], - "team_kdr": [ - 3648 - ], - "total_deaths": [ - 3648 - ], - "total_kills": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_stream_cursor_input": { - "initial_value": [ - 7463 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_stream_cursor_value_input": { - "group_number": [ - 41 - ], - "head_to_head_match_wins": [ - 41 - ], - "head_to_head_rounds_won": [ - 41 - ], - "losses": [ - 41 - ], - "maps_lost": [ - 41 - ], - "maps_won": [ - 41 - ], - "matches_played": [ - 41 - ], - "matches_remaining": [ - 41 - ], - "placement": [ - 41 - ], - "rank": [ - 41 - ], - "rounds_lost": [ - 41 - ], - "rounds_won": [ - 41 - ], - "team_kdr": [ - 2093 - ], - "total_deaths": [ - 41 - ], - "total_kills": [ - 41 - ], - "tournament_stage_id": [ - 6672 - ], - "tournament_team_id": [ - 6672 - ], - "wins": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_sum_fields": { - "group_number": [ - 41 - ], - "head_to_head_match_wins": [ - 41 - ], - "head_to_head_rounds_won": [ - 41 - ], - "losses": [ - 41 - ], - "maps_lost": [ - 41 - ], - "maps_won": [ - 41 - ], - "matches_played": [ - 41 - ], - "matches_remaining": [ - 41 - ], - "placement": [ - 41 - ], - "rank": [ - 41 - ], - "rounds_lost": [ - 41 - ], - "rounds_won": [ - 41 - ], - "team_kdr": [ - 2093 - ], - "total_deaths": [ - 41 - ], - "total_kills": [ - 41 - ], - "wins": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_sum_order_by": { - "group_number": [ - 3648 - ], - "head_to_head_match_wins": [ - 3648 - ], - "head_to_head_rounds_won": [ - 3648 - ], - "losses": [ - 3648 - ], - "maps_lost": [ - 3648 - ], - "maps_won": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "matches_remaining": [ - 3648 - ], - "placement": [ - 3648 - ], - "rank": [ - 3648 - ], - "rounds_lost": [ - 3648 - ], - "rounds_won": [ - 3648 - ], - "team_kdr": [ - 3648 - ], - "total_deaths": [ - 3648 - ], - "total_kills": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_update_column": {}, - "v_team_stage_results_updates": { - "_inc": [ - 7435 - ], - "_set": [ - 7455 - ], - "where": [ - 7433 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_var_pop_fields": { - "group_number": [ - 32 - ], - "head_to_head_match_wins": [ - 32 - ], - "head_to_head_rounds_won": [ - 32 - ], - "losses": [ - 32 - ], - "maps_lost": [ - 32 - ], - "maps_won": [ - 32 - ], - "matches_played": [ - 32 - ], - "matches_remaining": [ - 32 - ], - "placement": [ - 32 - ], - "rank": [ - 32 - ], - "rounds_lost": [ - 32 - ], - "rounds_won": [ - 32 - ], - "team_kdr": [ - 32 - ], - "total_deaths": [ - 32 - ], - "total_kills": [ - 32 - ], - "wins": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_var_pop_order_by": { - "group_number": [ - 3648 - ], - "head_to_head_match_wins": [ - 3648 - ], - "head_to_head_rounds_won": [ - 3648 - ], - "losses": [ - 3648 - ], - "maps_lost": [ - 3648 - ], - "maps_won": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "matches_remaining": [ - 3648 - ], - "placement": [ - 3648 - ], - "rank": [ - 3648 - ], - "rounds_lost": [ - 3648 - ], - "rounds_won": [ - 3648 - ], - "team_kdr": [ - 3648 - ], - "total_deaths": [ - 3648 - ], - "total_kills": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_var_samp_fields": { - "group_number": [ - 32 - ], - "head_to_head_match_wins": [ - 32 - ], - "head_to_head_rounds_won": [ - 32 - ], - "losses": [ - 32 - ], - "maps_lost": [ - 32 - ], - "maps_won": [ - 32 - ], - "matches_played": [ - 32 - ], - "matches_remaining": [ - 32 - ], - "placement": [ - 32 - ], - "rank": [ - 32 - ], - "rounds_lost": [ - 32 - ], - "rounds_won": [ - 32 - ], - "team_kdr": [ - 32 - ], - "total_deaths": [ - 32 - ], - "total_kills": [ - 32 - ], - "wins": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_var_samp_order_by": { - "group_number": [ - 3648 - ], - "head_to_head_match_wins": [ - 3648 - ], - "head_to_head_rounds_won": [ - 3648 - ], - "losses": [ - 3648 - ], - "maps_lost": [ - 3648 - ], - "maps_won": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "matches_remaining": [ - 3648 - ], - "placement": [ - 3648 - ], - "rank": [ - 3648 - ], - "rounds_lost": [ - 3648 - ], - "rounds_won": [ - 3648 - ], - "team_kdr": [ - 3648 - ], - "total_deaths": [ - 3648 - ], - "total_kills": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_variance_fields": { - "group_number": [ - 32 - ], - "head_to_head_match_wins": [ - 32 - ], - "head_to_head_rounds_won": [ - 32 - ], - "losses": [ - 32 - ], - "maps_lost": [ - 32 - ], - "maps_won": [ - 32 - ], - "matches_played": [ - 32 - ], - "matches_remaining": [ - 32 - ], - "placement": [ - 32 - ], - "rank": [ - 32 - ], - "rounds_lost": [ - 32 - ], - "rounds_won": [ - 32 - ], - "team_kdr": [ - 32 - ], - "total_deaths": [ - 32 - ], - "total_kills": [ - 32 - ], - "wins": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_team_stage_results_variance_order_by": { - "group_number": [ - 3648 - ], - "head_to_head_match_wins": [ - 3648 - ], - "head_to_head_rounds_won": [ - 3648 - ], - "losses": [ - 3648 - ], - "maps_lost": [ - 3648 - ], - "maps_won": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "matches_remaining": [ - 3648 - ], - "placement": [ - 3648 - ], - "rank": [ - 3648 - ], - "rounds_lost": [ - 3648 - ], - "rounds_won": [ - 3648 - ], - "team_kdr": [ - 3648 - ], - "total_deaths": [ - 3648 - ], - "total_kills": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_team_tournament_results": { - "head_to_head_match_wins": [ - 41 - ], - "head_to_head_rounds_won": [ - 41 - ], - "losses": [ - 41 - ], - "maps_lost": [ - 41 - ], - "maps_won": [ - 41 - ], - "matches_played": [ - 41 - ], - "matches_remaining": [ - 41 - ], - "rounds_lost": [ - 41 - ], - "rounds_won": [ - 41 - ], - "team": [ - 5850 - ], - "team_kdr": [ - 2093 - ], - "total_deaths": [ - 41 - ], - "total_kills": [ - 41 - ], - "tournament": [ - 5896 - ], - "tournament_id": [ - 6672 - ], - "tournament_team_id": [ - 6672 - ], - "wins": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_team_tournament_results_aggregate": { - "aggregate": [ - 7488 - ], - "nodes": [ - 7474 - ], - "__typename": [ - 85 - ] - }, - "v_team_tournament_results_aggregate_bool_exp": { - "avg": [ - 7477 - ], - "corr": [ - 7478 - ], - "count": [ - 7480 - ], - "covar_samp": [ - 7481 - ], - "max": [ - 7483 - ], - "min": [ - 7484 - ], - "stddev_samp": [ - 7485 - ], - "sum": [ - 7486 - ], - "var_samp": [ - 7487 - ], - "__typename": [ - 85 - ] - }, - "v_team_tournament_results_aggregate_bool_exp_avg": { - "arguments": [ - 7501 - ], - "distinct": [ - 6 - ], - "filter": [ - 7493 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_team_tournament_results_aggregate_bool_exp_corr": { - "arguments": [ - 7479 - ], - "distinct": [ - 6 - ], - "filter": [ - 7493 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_team_tournament_results_aggregate_bool_exp_corr_arguments": { - "X": [ - 7502 - ], - "Y": [ - 7502 - ], - "__typename": [ - 85 - ] - }, - "v_team_tournament_results_aggregate_bool_exp_count": { - "arguments": [ - 7500 - ], - "distinct": [ - 6 - ], - "filter": [ - 7493 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "v_team_tournament_results_aggregate_bool_exp_covar_samp": { - "arguments": [ - 7482 - ], - "distinct": [ - 6 - ], - "filter": [ - 7493 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments": { - "X": [ - 7503 - ], - "Y": [ - 7503 - ], - "__typename": [ - 85 - ] - }, - "v_team_tournament_results_aggregate_bool_exp_max": { - "arguments": [ - 7504 - ], - "distinct": [ - 6 - ], - "filter": [ - 7493 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_team_tournament_results_aggregate_bool_exp_min": { - "arguments": [ - 7505 - ], - "distinct": [ - 6 - ], - "filter": [ - 7493 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_team_tournament_results_aggregate_bool_exp_stddev_samp": { - "arguments": [ - 7506 - ], - "distinct": [ - 6 - ], - "filter": [ - 7493 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_team_tournament_results_aggregate_bool_exp_sum": { - "arguments": [ - 7507 - ], - "distinct": [ - 6 - ], - "filter": [ - 7493 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_team_tournament_results_aggregate_bool_exp_var_samp": { - "arguments": [ - 7508 - ], - "distinct": [ - 6 - ], - "filter": [ - 7493 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_team_tournament_results_aggregate_fields": { - "avg": [ - 7491 - ], - "count": [ - 41, - { - "columns": [ - 7500, - "[v_team_tournament_results_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 7495 - ], - "min": [ - 7497 - ], - "stddev": [ - 7509 - ], - "stddev_pop": [ - 7511 - ], - "stddev_samp": [ - 7513 - ], - "sum": [ - 7517 - ], - "var_pop": [ - 7519 - ], - "var_samp": [ - 7521 - ], - "variance": [ - 7523 - ], - "__typename": [ - 85 - ] - }, - "v_team_tournament_results_aggregate_order_by": { - "avg": [ - 7492 - ], - "count": [ - 3648 - ], - "max": [ - 7496 - ], - "min": [ - 7498 - ], - "stddev": [ - 7510 - ], - "stddev_pop": [ - 7512 - ], - "stddev_samp": [ - 7514 - ], - "sum": [ - 7518 - ], - "var_pop": [ - 7520 - ], - "var_samp": [ - 7522 - ], - "variance": [ - 7524 - ], - "__typename": [ - 85 - ] - }, - "v_team_tournament_results_arr_rel_insert_input": { - "data": [ - 7494 - ], - "__typename": [ - 85 - ] - }, - "v_team_tournament_results_avg_fields": { - "head_to_head_match_wins": [ - 32 - ], - "head_to_head_rounds_won": [ - 32 - ], - "losses": [ - 32 - ], - "maps_lost": [ - 32 - ], - "maps_won": [ - 32 - ], - "matches_played": [ - 32 - ], - "matches_remaining": [ - 32 - ], - "rounds_lost": [ - 32 - ], - "rounds_won": [ - 32 - ], - "team_kdr": [ - 32 - ], - "total_deaths": [ - 32 - ], - "total_kills": [ - 32 - ], - "wins": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_team_tournament_results_avg_order_by": { - "head_to_head_match_wins": [ - 3648 - ], - "head_to_head_rounds_won": [ - 3648 - ], - "losses": [ - 3648 - ], - "maps_lost": [ - 3648 - ], - "maps_won": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "matches_remaining": [ - 3648 - ], - "rounds_lost": [ - 3648 - ], - "rounds_won": [ - 3648 - ], - "team_kdr": [ - 3648 - ], - "total_deaths": [ - 3648 - ], - "total_kills": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_team_tournament_results_bool_exp": { - "_and": [ - 7493 - ], - "_not": [ - 7493 - ], - "_or": [ - 7493 - ], - "head_to_head_match_wins": [ - 42 - ], - "head_to_head_rounds_won": [ - 42 - ], - "losses": [ - 42 - ], - "maps_lost": [ - 42 - ], - "maps_won": [ - 42 - ], - "matches_played": [ - 42 - ], - "matches_remaining": [ - 42 - ], - "rounds_lost": [ - 42 - ], - "rounds_won": [ - 42 - ], - "team": [ - 5861 - ], - "team_kdr": [ - 2094 - ], - "total_deaths": [ - 42 - ], - "total_kills": [ - 42 - ], - "tournament": [ - 5917 - ], - "tournament_id": [ - 6674 - ], - "tournament_team_id": [ - 6674 - ], - "wins": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "v_team_tournament_results_insert_input": { - "head_to_head_match_wins": [ - 41 - ], - "head_to_head_rounds_won": [ - 41 - ], - "losses": [ - 41 - ], - "maps_lost": [ - 41 - ], - "maps_won": [ - 41 - ], - "matches_played": [ - 41 - ], - "matches_remaining": [ - 41 - ], - "rounds_lost": [ - 41 - ], - "rounds_won": [ - 41 - ], - "team": [ - 5870 - ], - "team_kdr": [ - 2093 - ], - "total_deaths": [ - 41 - ], - "total_kills": [ - 41 - ], - "tournament": [ - 5926 - ], - "tournament_id": [ - 6672 - ], - "tournament_team_id": [ - 6672 - ], - "wins": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_team_tournament_results_max_fields": { - "head_to_head_match_wins": [ - 41 - ], - "head_to_head_rounds_won": [ - 41 - ], - "losses": [ - 41 - ], - "maps_lost": [ - 41 - ], - "maps_won": [ - 41 - ], - "matches_played": [ - 41 - ], - "matches_remaining": [ - 41 - ], - "rounds_lost": [ - 41 - ], - "rounds_won": [ - 41 - ], - "team_kdr": [ - 2093 - ], - "total_deaths": [ - 41 - ], - "total_kills": [ - 41 - ], - "tournament_id": [ - 6672 - ], - "tournament_team_id": [ - 6672 - ], - "wins": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_team_tournament_results_max_order_by": { - "head_to_head_match_wins": [ - 3648 - ], - "head_to_head_rounds_won": [ - 3648 - ], - "losses": [ - 3648 - ], - "maps_lost": [ - 3648 - ], - "maps_won": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "matches_remaining": [ - 3648 - ], - "rounds_lost": [ - 3648 - ], - "rounds_won": [ - 3648 - ], - "team_kdr": [ - 3648 - ], - "total_deaths": [ - 3648 - ], - "total_kills": [ - 3648 - ], - "tournament_id": [ - 3648 - ], - "tournament_team_id": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_team_tournament_results_min_fields": { - "head_to_head_match_wins": [ - 41 - ], - "head_to_head_rounds_won": [ - 41 - ], - "losses": [ - 41 - ], - "maps_lost": [ - 41 - ], - "maps_won": [ - 41 - ], - "matches_played": [ - 41 - ], - "matches_remaining": [ - 41 - ], - "rounds_lost": [ - 41 - ], - "rounds_won": [ - 41 - ], - "team_kdr": [ - 2093 - ], - "total_deaths": [ - 41 - ], - "total_kills": [ - 41 - ], - "tournament_id": [ - 6672 - ], - "tournament_team_id": [ - 6672 - ], - "wins": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_team_tournament_results_min_order_by": { - "head_to_head_match_wins": [ - 3648 - ], - "head_to_head_rounds_won": [ - 3648 - ], - "losses": [ - 3648 - ], - "maps_lost": [ - 3648 - ], - "maps_won": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "matches_remaining": [ - 3648 - ], - "rounds_lost": [ - 3648 - ], - "rounds_won": [ - 3648 - ], - "team_kdr": [ - 3648 - ], - "total_deaths": [ - 3648 - ], - "total_kills": [ - 3648 - ], - "tournament_id": [ - 3648 - ], - "tournament_team_id": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_team_tournament_results_order_by": { - "head_to_head_match_wins": [ - 3648 - ], - "head_to_head_rounds_won": [ - 3648 - ], - "losses": [ - 3648 - ], - "maps_lost": [ - 3648 - ], - "maps_won": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "matches_remaining": [ - 3648 - ], - "rounds_lost": [ - 3648 - ], - "rounds_won": [ - 3648 - ], - "team": [ - 5872 - ], - "team_kdr": [ - 3648 - ], - "total_deaths": [ - 3648 - ], - "total_kills": [ - 3648 - ], - "tournament": [ - 5928 - ], - "tournament_id": [ - 3648 - ], - "tournament_team_id": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_team_tournament_results_select_column": {}, - "v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_avg_arguments_columns": {}, - "v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_corr_arguments_columns": {}, - "v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments_columns": {}, - "v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_max_arguments_columns": {}, - "v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_min_arguments_columns": {}, - "v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_stddev_samp_arguments_columns": {}, - "v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_sum_arguments_columns": {}, - "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": [ - 32 - ], - "head_to_head_rounds_won": [ - 32 - ], - "losses": [ - 32 - ], - "maps_lost": [ - 32 - ], - "maps_won": [ - 32 - ], - "matches_played": [ - 32 - ], - "matches_remaining": [ - 32 - ], - "rounds_lost": [ - 32 - ], - "rounds_won": [ - 32 - ], - "team_kdr": [ - 32 - ], - "total_deaths": [ - 32 - ], - "total_kills": [ - 32 - ], - "wins": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_team_tournament_results_stddev_order_by": { - "head_to_head_match_wins": [ - 3648 - ], - "head_to_head_rounds_won": [ - 3648 - ], - "losses": [ - 3648 - ], - "maps_lost": [ - 3648 - ], - "maps_won": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "matches_remaining": [ - 3648 - ], - "rounds_lost": [ - 3648 - ], - "rounds_won": [ - 3648 - ], - "team_kdr": [ - 3648 - ], - "total_deaths": [ - 3648 - ], - "total_kills": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_team_tournament_results_stddev_pop_fields": { - "head_to_head_match_wins": [ - 32 - ], - "head_to_head_rounds_won": [ - 32 - ], - "losses": [ - 32 - ], - "maps_lost": [ - 32 - ], - "maps_won": [ - 32 - ], - "matches_played": [ - 32 - ], - "matches_remaining": [ - 32 - ], - "rounds_lost": [ - 32 - ], - "rounds_won": [ - 32 - ], - "team_kdr": [ - 32 - ], - "total_deaths": [ - 32 - ], - "total_kills": [ - 32 - ], - "wins": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_team_tournament_results_stddev_pop_order_by": { - "head_to_head_match_wins": [ - 3648 - ], - "head_to_head_rounds_won": [ - 3648 - ], - "losses": [ - 3648 - ], - "maps_lost": [ - 3648 - ], - "maps_won": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "matches_remaining": [ - 3648 - ], - "rounds_lost": [ - 3648 - ], - "rounds_won": [ - 3648 - ], - "team_kdr": [ - 3648 - ], - "total_deaths": [ - 3648 - ], - "total_kills": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_team_tournament_results_stddev_samp_fields": { - "head_to_head_match_wins": [ - 32 - ], - "head_to_head_rounds_won": [ - 32 - ], - "losses": [ - 32 - ], - "maps_lost": [ - 32 - ], - "maps_won": [ - 32 - ], - "matches_played": [ - 32 - ], - "matches_remaining": [ - 32 - ], - "rounds_lost": [ - 32 - ], - "rounds_won": [ - 32 - ], - "team_kdr": [ - 32 - ], - "total_deaths": [ - 32 - ], - "total_kills": [ - 32 - ], - "wins": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_team_tournament_results_stddev_samp_order_by": { - "head_to_head_match_wins": [ - 3648 - ], - "head_to_head_rounds_won": [ - 3648 - ], - "losses": [ - 3648 - ], - "maps_lost": [ - 3648 - ], - "maps_won": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "matches_remaining": [ - 3648 - ], - "rounds_lost": [ - 3648 - ], - "rounds_won": [ - 3648 - ], - "team_kdr": [ - 3648 - ], - "total_deaths": [ - 3648 - ], - "total_kills": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_team_tournament_results_stream_cursor_input": { - "initial_value": [ - 7516 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "v_team_tournament_results_stream_cursor_value_input": { - "head_to_head_match_wins": [ - 41 - ], - "head_to_head_rounds_won": [ - 41 - ], - "losses": [ - 41 - ], - "maps_lost": [ - 41 - ], - "maps_won": [ - 41 - ], - "matches_played": [ - 41 - ], - "matches_remaining": [ - 41 - ], - "rounds_lost": [ - 41 - ], - "rounds_won": [ - 41 - ], - "team_kdr": [ - 2093 - ], - "total_deaths": [ - 41 - ], - "total_kills": [ - 41 - ], - "tournament_id": [ - 6672 - ], - "tournament_team_id": [ - 6672 - ], - "wins": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_team_tournament_results_sum_fields": { - "head_to_head_match_wins": [ - 41 - ], - "head_to_head_rounds_won": [ - 41 - ], - "losses": [ - 41 - ], - "maps_lost": [ - 41 - ], - "maps_won": [ - 41 - ], - "matches_played": [ - 41 - ], - "matches_remaining": [ - 41 - ], - "rounds_lost": [ - 41 - ], - "rounds_won": [ - 41 - ], - "team_kdr": [ - 2093 - ], - "total_deaths": [ - 41 - ], - "total_kills": [ - 41 - ], - "wins": [ - 41 - ], - "__typename": [ - 85 - ] - }, - "v_team_tournament_results_sum_order_by": { - "head_to_head_match_wins": [ - 3648 - ], - "head_to_head_rounds_won": [ - 3648 - ], - "losses": [ - 3648 - ], - "maps_lost": [ - 3648 - ], - "maps_won": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "matches_remaining": [ - 3648 - ], - "rounds_lost": [ - 3648 - ], - "rounds_won": [ - 3648 - ], - "team_kdr": [ - 3648 - ], - "total_deaths": [ - 3648 - ], - "total_kills": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_team_tournament_results_var_pop_fields": { - "head_to_head_match_wins": [ - 32 - ], - "head_to_head_rounds_won": [ - 32 - ], - "losses": [ - 32 - ], - "maps_lost": [ - 32 - ], - "maps_won": [ - 32 - ], - "matches_played": [ - 32 - ], - "matches_remaining": [ - 32 - ], - "rounds_lost": [ - 32 - ], - "rounds_won": [ - 32 - ], - "team_kdr": [ - 32 - ], - "total_deaths": [ - 32 - ], - "total_kills": [ - 32 - ], - "wins": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_team_tournament_results_var_pop_order_by": { - "head_to_head_match_wins": [ - 3648 - ], - "head_to_head_rounds_won": [ - 3648 - ], - "losses": [ - 3648 - ], - "maps_lost": [ - 3648 - ], - "maps_won": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "matches_remaining": [ - 3648 - ], - "rounds_lost": [ - 3648 - ], - "rounds_won": [ - 3648 - ], - "team_kdr": [ - 3648 - ], - "total_deaths": [ - 3648 - ], - "total_kills": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_team_tournament_results_var_samp_fields": { - "head_to_head_match_wins": [ - 32 - ], - "head_to_head_rounds_won": [ - 32 - ], - "losses": [ - 32 - ], - "maps_lost": [ - 32 - ], - "maps_won": [ - 32 - ], - "matches_played": [ - 32 - ], - "matches_remaining": [ - 32 - ], - "rounds_lost": [ - 32 - ], - "rounds_won": [ - 32 - ], - "team_kdr": [ - 32 - ], - "total_deaths": [ - 32 - ], - "total_kills": [ - 32 - ], - "wins": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_team_tournament_results_var_samp_order_by": { - "head_to_head_match_wins": [ - 3648 - ], - "head_to_head_rounds_won": [ - 3648 - ], - "losses": [ - 3648 - ], - "maps_lost": [ - 3648 - ], - "maps_won": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "matches_remaining": [ - 3648 - ], - "rounds_lost": [ - 3648 - ], - "rounds_won": [ - 3648 - ], - "team_kdr": [ - 3648 - ], - "total_deaths": [ - 3648 - ], - "total_kills": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_team_tournament_results_variance_fields": { - "head_to_head_match_wins": [ - 32 - ], - "head_to_head_rounds_won": [ - 32 - ], - "losses": [ - 32 - ], - "maps_lost": [ - 32 - ], - "maps_won": [ - 32 - ], - "matches_played": [ - 32 - ], - "matches_remaining": [ - 32 - ], - "rounds_lost": [ - 32 - ], - "rounds_won": [ - 32 - ], - "team_kdr": [ - 32 - ], - "total_deaths": [ - 32 - ], - "total_kills": [ - 32 - ], - "wins": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_team_tournament_results_variance_order_by": { - "head_to_head_match_wins": [ - 3648 - ], - "head_to_head_rounds_won": [ - 3648 - ], - "losses": [ - 3648 - ], - "maps_lost": [ - 3648 - ], - "maps_won": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "matches_remaining": [ - 3648 - ], - "rounds_lost": [ - 3648 - ], - "rounds_won": [ - 3648 - ], - "team_kdr": [ - 3648 - ], - "total_deaths": [ - 3648 - ], - "total_kills": [ - 3648 - ], - "wins": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_tournament_player_stats": { - "assists": [ - 41 - ], - "deaths": [ - 41 - ], - "headshot_percentage": [ - 2093 - ], - "headshots": [ - 41 - ], - "kdr": [ - 2093 - ], - "kills": [ - 41 - ], - "matches_played": [ - 41 - ], - "player": [ - 4606 - ], - "player_steam_id": [ - 312 - ], - "tournament": [ - 5896 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "v_tournament_player_stats_aggregate": { - "aggregate": [ - 7539 - ], - "nodes": [ - 7525 - ], - "__typename": [ - 85 - ] - }, - "v_tournament_player_stats_aggregate_bool_exp": { - "avg": [ - 7528 - ], - "corr": [ - 7529 - ], - "count": [ - 7531 - ], - "covar_samp": [ - 7532 - ], - "max": [ - 7534 - ], - "min": [ - 7535 - ], - "stddev_samp": [ - 7536 - ], - "sum": [ - 7537 - ], - "var_samp": [ - 7538 - ], - "__typename": [ - 85 - ] - }, - "v_tournament_player_stats_aggregate_bool_exp_avg": { - "arguments": [ - 7552 - ], - "distinct": [ - 6 - ], - "filter": [ - 7544 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_tournament_player_stats_aggregate_bool_exp_corr": { - "arguments": [ - 7530 - ], - "distinct": [ - 6 - ], - "filter": [ - 7544 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_tournament_player_stats_aggregate_bool_exp_corr_arguments": { - "X": [ - 7553 - ], - "Y": [ - 7553 - ], - "__typename": [ - 85 - ] - }, - "v_tournament_player_stats_aggregate_bool_exp_count": { - "arguments": [ - 7551 - ], - "distinct": [ - 6 - ], - "filter": [ - 7544 - ], - "predicate": [ - 42 - ], - "__typename": [ - 85 - ] - }, - "v_tournament_player_stats_aggregate_bool_exp_covar_samp": { - "arguments": [ - 7533 - ], - "distinct": [ - 6 - ], - "filter": [ - 7544 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments": { - "X": [ - 7554 - ], - "Y": [ - 7554 - ], - "__typename": [ - 85 - ] - }, - "v_tournament_player_stats_aggregate_bool_exp_max": { - "arguments": [ - 7555 - ], - "distinct": [ - 6 - ], - "filter": [ - 7544 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_tournament_player_stats_aggregate_bool_exp_min": { - "arguments": [ - 7556 - ], - "distinct": [ - 6 - ], - "filter": [ - 7544 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_tournament_player_stats_aggregate_bool_exp_stddev_samp": { - "arguments": [ - 7557 - ], - "distinct": [ - 6 - ], - "filter": [ - 7544 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_tournament_player_stats_aggregate_bool_exp_sum": { - "arguments": [ - 7558 - ], - "distinct": [ - 6 - ], - "filter": [ - 7544 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_tournament_player_stats_aggregate_bool_exp_var_samp": { - "arguments": [ - 7559 - ], - "distinct": [ - 6 - ], - "filter": [ - 7544 - ], - "predicate": [ - 2094 - ], - "__typename": [ - 85 - ] - }, - "v_tournament_player_stats_aggregate_fields": { - "avg": [ - 7542 - ], - "count": [ - 41, - { - "columns": [ - 7551, - "[v_tournament_player_stats_select_column!]" - ], - "distinct": [ - 6 - ] - } - ], - "max": [ - 7546 - ], - "min": [ - 7548 - ], - "stddev": [ - 7560 - ], - "stddev_pop": [ - 7562 - ], - "stddev_samp": [ - 7564 - ], - "sum": [ - 7568 - ], - "var_pop": [ - 7570 - ], - "var_samp": [ - 7572 - ], - "variance": [ - 7574 - ], - "__typename": [ - 85 - ] - }, - "v_tournament_player_stats_aggregate_order_by": { - "avg": [ - 7543 - ], - "count": [ - 3648 - ], - "max": [ - 7547 - ], - "min": [ - 7549 - ], - "stddev": [ - 7561 - ], - "stddev_pop": [ - 7563 - ], - "stddev_samp": [ - 7565 - ], - "sum": [ - 7569 - ], - "var_pop": [ - 7571 - ], - "var_samp": [ - 7573 - ], - "variance": [ - 7575 - ], - "__typename": [ - 85 - ] - }, - "v_tournament_player_stats_arr_rel_insert_input": { - "data": [ - 7545 - ], - "__typename": [ - 85 - ] - }, - "v_tournament_player_stats_avg_fields": { - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "headshot_percentage": [ - 32 - ], - "headshots": [ - 32 - ], - "kdr": [ - 32 - ], - "kills": [ - 32 - ], - "matches_played": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_tournament_player_stats_avg_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kdr": [ - 3648 - ], - "kills": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_tournament_player_stats_bool_exp": { - "_and": [ - 7544 - ], - "_not": [ - 7544 - ], - "_or": [ - 7544 - ], - "assists": [ - 42 - ], - "deaths": [ - 42 - ], - "headshot_percentage": [ - 2094 - ], - "headshots": [ - 42 - ], - "kdr": [ - 2094 - ], - "kills": [ - 42 - ], - "matches_played": [ - 42 - ], - "player": [ - 4610 - ], - "player_steam_id": [ - 314 - ], - "tournament": [ - 5917 - ], - "tournament_id": [ - 6674 - ], - "__typename": [ - 85 - ] - }, - "v_tournament_player_stats_insert_input": { - "assists": [ - 41 - ], - "deaths": [ - 41 - ], - "headshot_percentage": [ - 2093 - ], - "headshots": [ - 41 - ], - "kdr": [ - 2093 - ], - "kills": [ - 41 - ], - "matches_played": [ - 41 - ], - "player": [ - 4617 - ], - "player_steam_id": [ - 312 - ], - "tournament": [ - 5926 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "v_tournament_player_stats_max_fields": { - "assists": [ - 41 - ], - "deaths": [ - 41 - ], - "headshot_percentage": [ - 2093 - ], - "headshots": [ - 41 - ], - "kdr": [ - 2093 - ], - "kills": [ - 41 - ], - "matches_played": [ - 41 - ], - "player_steam_id": [ - 312 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "v_tournament_player_stats_max_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kdr": [ - 3648 - ], - "kills": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "tournament_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_tournament_player_stats_min_fields": { - "assists": [ - 41 - ], - "deaths": [ - 41 - ], - "headshot_percentage": [ - 2093 - ], - "headshots": [ - 41 - ], - "kdr": [ - 2093 - ], - "kills": [ - 41 - ], - "matches_played": [ - 41 - ], - "player_steam_id": [ - 312 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "v_tournament_player_stats_min_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kdr": [ - 3648 - ], - "kills": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "tournament_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_tournament_player_stats_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kdr": [ - 3648 - ], - "kills": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "player": [ - 4619 - ], - "player_steam_id": [ - 3648 - ], - "tournament": [ - 5928 - ], - "tournament_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_tournament_player_stats_select_column": {}, - "v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_avg_arguments_columns": {}, - "v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_corr_arguments_columns": {}, - "v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments_columns": {}, - "v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_max_arguments_columns": {}, - "v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_min_arguments_columns": {}, - "v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns": {}, - "v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_sum_arguments_columns": {}, - "v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_var_samp_arguments_columns": {}, - "v_tournament_player_stats_stddev_fields": { - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "headshot_percentage": [ - 32 - ], - "headshots": [ - 32 - ], - "kdr": [ - 32 - ], - "kills": [ - 32 - ], - "matches_played": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_tournament_player_stats_stddev_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kdr": [ - 3648 - ], - "kills": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_tournament_player_stats_stddev_pop_fields": { - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "headshot_percentage": [ - 32 - ], - "headshots": [ - 32 - ], - "kdr": [ - 32 - ], - "kills": [ - 32 - ], - "matches_played": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_tournament_player_stats_stddev_pop_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kdr": [ - 3648 - ], - "kills": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_tournament_player_stats_stddev_samp_fields": { - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "headshot_percentage": [ - 32 - ], - "headshots": [ - 32 - ], - "kdr": [ - 32 - ], - "kills": [ - 32 - ], - "matches_played": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_tournament_player_stats_stddev_samp_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kdr": [ - 3648 - ], - "kills": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_tournament_player_stats_stream_cursor_input": { - "initial_value": [ - 7567 - ], - "ordering": [ - 395 - ], - "__typename": [ - 85 - ] - }, - "v_tournament_player_stats_stream_cursor_value_input": { - "assists": [ - 41 - ], - "deaths": [ - 41 - ], - "headshot_percentage": [ - 2093 - ], - "headshots": [ - 41 - ], - "kdr": [ - 2093 - ], - "kills": [ - 41 - ], - "matches_played": [ - 41 - ], - "player_steam_id": [ - 312 - ], - "tournament_id": [ - 6672 - ], - "__typename": [ - 85 - ] - }, - "v_tournament_player_stats_sum_fields": { - "assists": [ - 41 - ], - "deaths": [ - 41 - ], - "headshot_percentage": [ - 2093 - ], - "headshots": [ - 41 - ], - "kdr": [ - 2093 - ], - "kills": [ - 41 - ], - "matches_played": [ - 41 - ], - "player_steam_id": [ - 312 - ], - "__typename": [ - 85 - ] - }, - "v_tournament_player_stats_sum_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kdr": [ - 3648 - ], - "kills": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_tournament_player_stats_var_pop_fields": { - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "headshot_percentage": [ - 32 - ], - "headshots": [ - 32 - ], - "kdr": [ - 32 - ], - "kills": [ - 32 - ], - "matches_played": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_tournament_player_stats_var_pop_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kdr": [ - 3648 - ], - "kills": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_tournament_player_stats_var_samp_fields": { - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "headshot_percentage": [ - 32 - ], - "headshots": [ - 32 - ], - "kdr": [ - 32 - ], - "kills": [ - 32 - ], - "matches_played": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_tournament_player_stats_var_samp_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kdr": [ - 3648 - ], - "kills": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "v_tournament_player_stats_variance_fields": { - "assists": [ - 32 - ], - "deaths": [ - 32 - ], - "headshot_percentage": [ - 32 - ], - "headshots": [ - 32 - ], - "kdr": [ - 32 - ], - "kills": [ - 32 - ], - "matches_played": [ - 32 - ], - "player_steam_id": [ - 32 - ], - "__typename": [ - 85 - ] - }, - "v_tournament_player_stats_variance_order_by": { - "assists": [ - 3648 - ], - "deaths": [ - 3648 - ], - "headshot_percentage": [ - 3648 - ], - "headshots": [ - 3648 - ], - "kdr": [ - 3648 - ], - "kills": [ - 3648 - ], - "matches_played": [ - 3648 - ], - "player_steam_id": [ - 3648 - ], - "__typename": [ - 85 - ] - }, - "Query": { - "_map_pool": [ - 155, - { - "distinct_on": [ - 167, - "[_map_pool_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 165, - "[_map_pool_order_by!]" - ], - "where": [ - 158 - ] - } - ], - "_map_pool_aggregate": [ - 156, - { - "distinct_on": [ - 167, - "[_map_pool_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 165, - "[_map_pool_order_by!]" - ], - "where": [ - 158 - ] - } - ], - "_map_pool_by_pk": [ - 155, - { - "map_id": [ - 6672, - "uuid!" - ], - "map_pool_id": [ - 6672, - "uuid!" - ] - } - ], - "abandoned_matches": [ - 174, - { - "distinct_on": [ - 195, - "[abandoned_matches_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 193, - "[abandoned_matches_order_by!]" - ], - "where": [ - 183 - ] - } - ], - "abandoned_matches_aggregate": [ - 175, - { - "distinct_on": [ - 195, - "[abandoned_matches_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 193, - "[abandoned_matches_order_by!]" - ], - "where": [ - 183 - ] - } - ], - "abandoned_matches_by_pk": [ - 174, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "analyseUtilityPlaybookCoverage": [ - 128, - { - "pairs": [ - 145, - "[UtilitySightlinePairInput!]!" - ], - "playbook_id": [ - 6672, - "uuid!" - ] - } - ], - "api_keys": [ - 215, - { - "distinct_on": [ - 229, - "[api_keys_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 227, - "[api_keys_order_by!]" - ], - "where": [ - 219 - ] - } - ], - "api_keys_aggregate": [ - 216, - { - "distinct_on": [ - 229, - "[api_keys_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 227, - "[api_keys_order_by!]" - ], - "where": [ - 219 - ] - } - ], - "api_keys_by_pk": [ - 215, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "award_recipients": [ - 243, - { - "distinct_on": [ - 264, - "[award_recipients_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 262, - "[award_recipients_order_by!]" - ], - "where": [ - 252 - ] - } - ], - "award_recipients_aggregate": [ - 244, - { - "distinct_on": [ - 264, - "[award_recipients_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 262, - "[award_recipients_order_by!]" - ], - "where": [ - 252 - ] - } - ], - "award_recipients_by_pk": [ - 243, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "awards": [ - 284, - { - "distinct_on": [ - 299, - "[awards_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 297, - "[awards_order_by!]" - ], - "where": [ - 288 - ] - } - ], - "awards_aggregate": [ - 285, - { - "distinct_on": [ - 299, - "[awards_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 297, - "[awards_order_by!]" - ], - "where": [ - 288 - ] - } - ], - "awards_by_pk": [ - 284, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "chat_read_state": [ - 317, - { - "distinct_on": [ - 331, - "[chat_read_state_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 329, - "[chat_read_state_order_by!]" - ], - "where": [ - 321 - ] - } - ], - "chat_read_state_aggregate": [ - 318, - { - "distinct_on": [ - 331, - "[chat_read_state_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 329, - "[chat_read_state_order_by!]" - ], - "where": [ - 321 - ] - } - ], - "chat_read_state_by_pk": [ - 317, - { - "steam_id": [ - 312, - "bigint!" - ], - "thread": [ - 85, - "String!" - ] - } - ], - "checkUtilityOneWay": [ - 126, - { - "lineup_id": [ - 6672, - "uuid!" - ], - "pairs": [ - 145, - "[UtilitySightlinePairInput!]!" - ] - } - ], - "checkUtilitySightlines": [ - 144, - { - "lineup_id": [ - 6672, - "uuid!" - ], - "pairs": [ - 145, - "[UtilitySightlinePairInput!]!" - ], - "threshold": [ - 32 - ] - } - ], - "clip_render_jobs": [ - 344, - { - "distinct_on": [ - 372, - "[clip_render_jobs_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 369, - "[clip_render_jobs_order_by!]" - ], - "where": [ - 356 - ] - } - ], - "clip_render_jobs_aggregate": [ - 345, - { - "distinct_on": [ - 372, - "[clip_render_jobs_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 369, - "[clip_render_jobs_order_by!]" - ], - "where": [ - 356 - ] - } - ], - "clip_render_jobs_by_pk": [ - 344, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "custom_pages": [ - 396, - { - "distinct_on": [ - 415, - "[custom_pages_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 412, - "[custom_pages_order_by!]" - ], - "where": [ - 401 - ] - } - ], - "custom_pages_aggregate": [ - 397, - { - "distinct_on": [ - 415, - "[custom_pages_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 412, - "[custom_pages_order_by!]" - ], - "where": [ - 401 - ] - } - ], - "custom_pages_by_pk": [ - 396, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "dbStats": [ - 20 - ], - "db_backups": [ - 428, - { - "distinct_on": [ - 442, - "[db_backups_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 440, - "[db_backups_order_by!]" - ], - "where": [ - 432 - ] - } - ], - "db_backups_aggregate": [ - 429, - { - "distinct_on": [ - 442, - "[db_backups_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 440, - "[db_backups_order_by!]" - ], - "where": [ - 432 - ] - } - ], - "db_backups_by_pk": [ - 428, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "direct_conversations": [ - 455, - { - "distinct_on": [ - 469, - "[direct_conversations_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 467, - "[direct_conversations_order_by!]" - ], - "where": [ - 459 - ] - } - ], - "direct_conversations_aggregate": [ - 456, - { - "distinct_on": [ - 469, - "[direct_conversations_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 467, - "[direct_conversations_order_by!]" - ], - "where": [ - 459 - ] - } - ], - "direct_conversations_by_pk": [ - 455, - { - "room_id": [ - 85, - "String!" - ], - "steam_id": [ - 312, - "bigint!" - ] - } - ], - "direct_messages": [ - 482, - { - "distinct_on": [ - 496, - "[direct_messages_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 494, - "[direct_messages_order_by!]" - ], - "where": [ - 486 - ] - } - ], - "direct_messages_aggregate": [ - 483, - { - "distinct_on": [ - 496, - "[direct_messages_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 494, - "[direct_messages_order_by!]" - ], - "where": [ - 486 - ] - } - ], - "direct_messages_by_pk": [ - 482, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "draft_game_picks": [ - 509, - { - "distinct_on": [ - 532, - "[draft_game_picks_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 530, - "[draft_game_picks_order_by!]" - ], - "where": [ - 520 - ] - } - ], - "draft_game_picks_aggregate": [ - 510, - { - "distinct_on": [ - 532, - "[draft_game_picks_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 530, - "[draft_game_picks_order_by!]" - ], - "where": [ - 520 - ] - } - ], - "draft_game_picks_by_pk": [ - 509, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "draft_game_players": [ - 554, - { - "distinct_on": [ - 577, - "[draft_game_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 575, - "[draft_game_players_order_by!]" - ], - "where": [ - 565 - ] - } - ], - "draft_game_players_aggregate": [ - 555, - { - "distinct_on": [ - 577, - "[draft_game_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 575, - "[draft_game_players_order_by!]" - ], - "where": [ - 565 - ] - } - ], - "draft_game_players_by_pk": [ - 554, - { - "draft_game_id": [ - 6672, - "uuid!" - ], - "steam_id": [ - 312, - "bigint!" - ] - } - ], - "draft_games": [ - 599, - { - "distinct_on": [ - 623, - "[draft_games_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 621, - "[draft_games_order_by!]" - ], - "where": [ - 610 - ] - } - ], - "draft_games_aggregate": [ - 600, - { - "distinct_on": [ - 623, - "[draft_games_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 621, - "[draft_games_order_by!]" - ], - "where": [ - 610 - ] - } - ], - "draft_games_by_pk": [ - 599, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "e_award_sources": [ - 645, - { - "distinct_on": [ - 659, - "[e_award_sources_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 657, - "[e_award_sources_order_by!]" - ], - "where": [ - 648 - ] - } - ], - "e_award_sources_aggregate": [ - 646, - { - "distinct_on": [ - 659, - "[e_award_sources_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 657, - "[e_award_sources_order_by!]" - ], - "where": [ - 648 - ] - } - ], - "e_award_sources_by_pk": [ - 645, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_award_tiers": [ - 665, - { - "distinct_on": [ - 679, - "[e_award_tiers_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 677, - "[e_award_tiers_order_by!]" - ], - "where": [ - 668 - ] - } - ], - "e_award_tiers_aggregate": [ - 666, - { - "distinct_on": [ - 679, - "[e_award_tiers_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 677, - "[e_award_tiers_order_by!]" - ], - "where": [ - 668 - ] - } - ], - "e_award_tiers_by_pk": [ - 665, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_check_in_settings": [ - 685, - { - "distinct_on": [ - 699, - "[e_check_in_settings_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 697, - "[e_check_in_settings_order_by!]" - ], - "where": [ - 688 - ] - } - ], - "e_check_in_settings_aggregate": [ - 686, - { - "distinct_on": [ - 699, - "[e_check_in_settings_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 697, - "[e_check_in_settings_order_by!]" - ], - "where": [ - 688 - ] - } - ], - "e_check_in_settings_by_pk": [ - 685, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_draft_game_captain_selection": [ - 705, - { - "distinct_on": [ - 720, - "[e_draft_game_captain_selection_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 718, - "[e_draft_game_captain_selection_order_by!]" - ], - "where": [ - 708 - ] - } - ], - "e_draft_game_captain_selection_aggregate": [ - 706, - { - "distinct_on": [ - 720, - "[e_draft_game_captain_selection_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 718, - "[e_draft_game_captain_selection_order_by!]" - ], - "where": [ - 708 - ] - } - ], - "e_draft_game_captain_selection_by_pk": [ - 705, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_draft_game_draft_order": [ - 726, - { - "distinct_on": [ - 741, - "[e_draft_game_draft_order_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 739, - "[e_draft_game_draft_order_order_by!]" - ], - "where": [ - 729 - ] - } - ], - "e_draft_game_draft_order_aggregate": [ - 727, - { - "distinct_on": [ - 741, - "[e_draft_game_draft_order_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 739, - "[e_draft_game_draft_order_order_by!]" - ], - "where": [ - 729 - ] - } - ], - "e_draft_game_draft_order_by_pk": [ - 726, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_draft_game_mode": [ - 747, - { - "distinct_on": [ - 762, - "[e_draft_game_mode_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 760, - "[e_draft_game_mode_order_by!]" - ], - "where": [ - 750 - ] - } - ], - "e_draft_game_mode_aggregate": [ - 748, - { - "distinct_on": [ - 762, - "[e_draft_game_mode_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 760, - "[e_draft_game_mode_order_by!]" - ], - "where": [ - 750 - ] - } - ], - "e_draft_game_mode_by_pk": [ - 747, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_draft_game_player_status": [ - 768, - { - "distinct_on": [ - 783, - "[e_draft_game_player_status_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 781, - "[e_draft_game_player_status_order_by!]" - ], - "where": [ - 771 - ] - } - ], - "e_draft_game_player_status_aggregate": [ - 769, - { - "distinct_on": [ - 783, - "[e_draft_game_player_status_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 781, - "[e_draft_game_player_status_order_by!]" - ], - "where": [ - 771 - ] - } - ], - "e_draft_game_player_status_by_pk": [ - 768, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_draft_game_status": [ - 789, - { - "distinct_on": [ - 804, - "[e_draft_game_status_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 802, - "[e_draft_game_status_order_by!]" - ], - "where": [ - 792 - ] - } - ], - "e_draft_game_status_aggregate": [ - 790, - { - "distinct_on": [ - 804, - "[e_draft_game_status_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 802, - "[e_draft_game_status_order_by!]" - ], - "where": [ - 792 - ] - } - ], - "e_draft_game_status_by_pk": [ - 789, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_event_media_access": [ - 810, - { - "distinct_on": [ - 824, - "[e_event_media_access_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 822, - "[e_event_media_access_order_by!]" - ], - "where": [ - 813 - ] - } - ], - "e_event_media_access_aggregate": [ - 811, - { - "distinct_on": [ - 824, - "[e_event_media_access_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 822, - "[e_event_media_access_order_by!]" - ], - "where": [ - 813 - ] - } - ], - "e_event_media_access_by_pk": [ - 810, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_event_visibility": [ - 830, - { - "distinct_on": [ - 844, - "[e_event_visibility_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 842, - "[e_event_visibility_order_by!]" - ], - "where": [ - 833 - ] - } - ], - "e_event_visibility_aggregate": [ - 831, - { - "distinct_on": [ - 844, - "[e_event_visibility_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 842, - "[e_event_visibility_order_by!]" - ], - "where": [ - 833 - ] - } - ], - "e_event_visibility_by_pk": [ - 830, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_friend_status": [ - 850, - { - "distinct_on": [ - 865, - "[e_friend_status_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 863, - "[e_friend_status_order_by!]" - ], - "where": [ - 853 - ] - } - ], - "e_friend_status_aggregate": [ - 851, - { - "distinct_on": [ - 865, - "[e_friend_status_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 863, - "[e_friend_status_order_by!]" - ], - "where": [ - 853 - ] - } - ], - "e_friend_status_by_pk": [ - 850, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_game_cfg_types": [ - 871, - { - "distinct_on": [ - 885, - "[e_game_cfg_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 883, - "[e_game_cfg_types_order_by!]" - ], - "where": [ - 874 - ] - } - ], - "e_game_cfg_types_aggregate": [ - 872, - { - "distinct_on": [ - 885, - "[e_game_cfg_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 883, - "[e_game_cfg_types_order_by!]" - ], - "where": [ - 874 - ] - } - ], - "e_game_cfg_types_by_pk": [ - 871, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_game_plugin_channels": [ - 891, - { - "distinct_on": [ - 905, - "[e_game_plugin_channels_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 903, - "[e_game_plugin_channels_order_by!]" - ], - "where": [ - 894 - ] - } - ], - "e_game_plugin_channels_aggregate": [ - 892, - { - "distinct_on": [ - 905, - "[e_game_plugin_channels_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 903, - "[e_game_plugin_channels_order_by!]" - ], - "where": [ - 894 - ] - } - ], - "e_game_plugin_channels_by_pk": [ - 891, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_game_plugin_install_statuses": [ - 911, - { - "distinct_on": [ - 925, - "[e_game_plugin_install_statuses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 923, - "[e_game_plugin_install_statuses_order_by!]" - ], - "where": [ - 914 - ] - } - ], - "e_game_plugin_install_statuses_aggregate": [ - 912, - { - "distinct_on": [ - 925, - "[e_game_plugin_install_statuses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 923, - "[e_game_plugin_install_statuses_order_by!]" - ], - "where": [ - 914 - ] - } - ], - "e_game_plugin_install_statuses_by_pk": [ - 911, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_game_plugin_kinds": [ - 931, - { - "distinct_on": [ - 945, - "[e_game_plugin_kinds_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 943, - "[e_game_plugin_kinds_order_by!]" - ], - "where": [ - 934 - ] - } - ], - "e_game_plugin_kinds_aggregate": [ - 932, - { - "distinct_on": [ - 945, - "[e_game_plugin_kinds_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 943, - "[e_game_plugin_kinds_order_by!]" - ], - "where": [ - 934 - ] - } - ], - "e_game_plugin_kinds_by_pk": [ - 931, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_game_server_node_statuses": [ - 951, - { - "distinct_on": [ - 966, - "[e_game_server_node_statuses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 964, - "[e_game_server_node_statuses_order_by!]" - ], - "where": [ - 954 - ] - } - ], - "e_game_server_node_statuses_aggregate": [ - 952, - { - "distinct_on": [ - 966, - "[e_game_server_node_statuses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 964, - "[e_game_server_node_statuses_order_by!]" - ], - "where": [ - 954 - ] - } - ], - "e_game_server_node_statuses_by_pk": [ - 951, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_league_movement_types": [ - 972, - { - "distinct_on": [ - 987, - "[e_league_movement_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 985, - "[e_league_movement_types_order_by!]" - ], - "where": [ - 975 - ] - } - ], - "e_league_movement_types_aggregate": [ - 973, - { - "distinct_on": [ - 987, - "[e_league_movement_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 985, - "[e_league_movement_types_order_by!]" - ], - "where": [ - 975 - ] - } - ], - "e_league_movement_types_by_pk": [ - 972, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_league_proposal_statuses": [ - 993, - { - "distinct_on": [ - 1008, - "[e_league_proposal_statuses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1006, - "[e_league_proposal_statuses_order_by!]" - ], - "where": [ - 996 - ] - } - ], - "e_league_proposal_statuses_aggregate": [ - 994, - { - "distinct_on": [ - 1008, - "[e_league_proposal_statuses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1006, - "[e_league_proposal_statuses_order_by!]" - ], - "where": [ - 996 - ] - } - ], - "e_league_proposal_statuses_by_pk": [ - 993, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_league_registration_statuses": [ - 1014, - { - "distinct_on": [ - 1029, - "[e_league_registration_statuses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1027, - "[e_league_registration_statuses_order_by!]" - ], - "where": [ - 1017 - ] - } - ], - "e_league_registration_statuses_aggregate": [ - 1015, - { - "distinct_on": [ - 1029, - "[e_league_registration_statuses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1027, - "[e_league_registration_statuses_order_by!]" - ], - "where": [ - 1017 - ] - } - ], - "e_league_registration_statuses_by_pk": [ - 1014, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_league_season_statuses": [ - 1035, - { - "distinct_on": [ - 1050, - "[e_league_season_statuses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1048, - "[e_league_season_statuses_order_by!]" - ], - "where": [ - 1038 - ] - } - ], - "e_league_season_statuses_aggregate": [ - 1036, - { - "distinct_on": [ - 1050, - "[e_league_season_statuses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1048, - "[e_league_season_statuses_order_by!]" - ], - "where": [ - 1038 - ] - } - ], - "e_league_season_statuses_by_pk": [ - 1035, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_lobby_access": [ - 1056, - { - "distinct_on": [ - 1071, - "[e_lobby_access_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1069, - "[e_lobby_access_order_by!]" - ], - "where": [ - 1059 - ] - } - ], - "e_lobby_access_aggregate": [ - 1057, - { - "distinct_on": [ - 1071, - "[e_lobby_access_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1069, - "[e_lobby_access_order_by!]" - ], - "where": [ - 1059 - ] - } - ], - "e_lobby_access_by_pk": [ - 1056, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_lobby_player_status": [ - 1077, - { - "distinct_on": [ - 1091, - "[e_lobby_player_status_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1089, - "[e_lobby_player_status_order_by!]" - ], - "where": [ - 1080 - ] - } - ], - "e_lobby_player_status_aggregate": [ - 1078, - { - "distinct_on": [ - 1091, - "[e_lobby_player_status_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1089, - "[e_lobby_player_status_order_by!]" - ], - "where": [ - 1080 - ] - } - ], - "e_lobby_player_status_by_pk": [ - 1077, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_map_pool_types": [ - 1097, - { - "distinct_on": [ - 1112, - "[e_map_pool_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1110, - "[e_map_pool_types_order_by!]" - ], - "where": [ - 1100 - ] - } - ], - "e_map_pool_types_aggregate": [ - 1098, - { - "distinct_on": [ - 1112, - "[e_map_pool_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1110, - "[e_map_pool_types_order_by!]" - ], - "where": [ - 1100 - ] - } - ], - "e_map_pool_types_by_pk": [ - 1097, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_match_clip_visibility": [ - 1118, - { - "distinct_on": [ - 1132, - "[e_match_clip_visibility_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1130, - "[e_match_clip_visibility_order_by!]" - ], - "where": [ - 1121 - ] - } - ], - "e_match_clip_visibility_aggregate": [ - 1119, - { - "distinct_on": [ - 1132, - "[e_match_clip_visibility_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1130, - "[e_match_clip_visibility_order_by!]" - ], - "where": [ - 1121 - ] - } - ], - "e_match_clip_visibility_by_pk": [ - 1118, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_match_map_status": [ - 1138, - { - "distinct_on": [ - 1153, - "[e_match_map_status_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1151, - "[e_match_map_status_order_by!]" - ], - "where": [ - 1141 - ] - } - ], - "e_match_map_status_aggregate": [ - 1139, - { - "distinct_on": [ - 1153, - "[e_match_map_status_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1151, - "[e_match_map_status_order_by!]" - ], - "where": [ - 1141 - ] - } - ], - "e_match_map_status_by_pk": [ - 1138, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_match_mode": [ - 1159, - { - "distinct_on": [ - 1173, - "[e_match_mode_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1171, - "[e_match_mode_order_by!]" - ], - "where": [ - 1162 - ] - } - ], - "e_match_mode_aggregate": [ - 1160, - { - "distinct_on": [ - 1173, - "[e_match_mode_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1171, - "[e_match_mode_order_by!]" - ], - "where": [ - 1162 - ] - } - ], - "e_match_mode_by_pk": [ - 1159, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_match_party_sources": [ - 1179, - { - "distinct_on": [ - 1193, - "[e_match_party_sources_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1191, - "[e_match_party_sources_order_by!]" - ], - "where": [ - 1182 - ] - } - ], - "e_match_party_sources_aggregate": [ - 1180, - { - "distinct_on": [ - 1193, - "[e_match_party_sources_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1191, - "[e_match_party_sources_order_by!]" - ], - "where": [ - 1182 - ] - } - ], - "e_match_party_sources_by_pk": [ - 1179, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_match_status": [ - 1199, - { - "distinct_on": [ - 1214, - "[e_match_status_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1212, - "[e_match_status_order_by!]" - ], - "where": [ - 1202 - ] - } - ], - "e_match_status_aggregate": [ - 1200, - { - "distinct_on": [ - 1214, - "[e_match_status_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1212, - "[e_match_status_order_by!]" - ], - "where": [ - 1202 - ] - } - ], - "e_match_status_by_pk": [ - 1199, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_match_types": [ - 1220, - { - "distinct_on": [ - 1235, - "[e_match_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1233, - "[e_match_types_order_by!]" - ], - "where": [ - 1223 - ] - } - ], - "e_match_types_aggregate": [ - 1221, - { - "distinct_on": [ - 1235, - "[e_match_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1233, - "[e_match_types_order_by!]" - ], - "where": [ - 1223 - ] - } - ], - "e_match_types_by_pk": [ - 1220, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_notification_types": [ - 1241, - { - "distinct_on": [ - 1255, - "[e_notification_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1253, - "[e_notification_types_order_by!]" - ], - "where": [ - 1244 - ] - } - ], - "e_notification_types_aggregate": [ - 1242, - { - "distinct_on": [ - 1255, - "[e_notification_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1253, - "[e_notification_types_order_by!]" - ], - "where": [ - 1244 - ] - } - ], - "e_notification_types_by_pk": [ - 1241, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_objective_types": [ - 1261, - { - "distinct_on": [ - 1275, - "[e_objective_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1273, - "[e_objective_types_order_by!]" - ], - "where": [ - 1264 - ] - } - ], - "e_objective_types_aggregate": [ - 1262, - { - "distinct_on": [ - 1275, - "[e_objective_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1273, - "[e_objective_types_order_by!]" - ], - "where": [ - 1264 - ] - } - ], - "e_objective_types_by_pk": [ - 1261, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_player_roles": [ - 1281, - { - "distinct_on": [ - 1295, - "[e_player_roles_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1293, - "[e_player_roles_order_by!]" - ], - "where": [ - 1284 - ] - } - ], - "e_player_roles_aggregate": [ - 1282, - { - "distinct_on": [ - 1295, - "[e_player_roles_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1293, - "[e_player_roles_order_by!]" - ], - "where": [ - 1284 - ] - } - ], - "e_player_roles_by_pk": [ - 1281, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_plugin_runtimes": [ - 1301, - { - "distinct_on": [ - 1315, - "[e_plugin_runtimes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1313, - "[e_plugin_runtimes_order_by!]" - ], - "where": [ - 1304 - ] - } - ], - "e_plugin_runtimes_aggregate": [ - 1302, - { - "distinct_on": [ - 1315, - "[e_plugin_runtimes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1313, - "[e_plugin_runtimes_order_by!]" - ], - "where": [ - 1304 - ] - } - ], - "e_plugin_runtimes_by_pk": [ - 1301, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_ready_settings": [ - 1321, - { - "distinct_on": [ - 1335, - "[e_ready_settings_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1333, - "[e_ready_settings_order_by!]" - ], - "where": [ - 1324 - ] - } - ], - "e_ready_settings_aggregate": [ - 1322, - { - "distinct_on": [ - 1335, - "[e_ready_settings_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1333, - "[e_ready_settings_order_by!]" - ], - "where": [ - 1324 - ] - } - ], - "e_ready_settings_by_pk": [ - 1321, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_sanction_scopes": [ - 1341, - { - "distinct_on": [ - 1354, - "[e_sanction_scopes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1352, - "[e_sanction_scopes_order_by!]" - ], - "where": [ - 1344 - ] - } - ], - "e_sanction_scopes_aggregate": [ - 1342, - { - "distinct_on": [ - 1354, - "[e_sanction_scopes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1352, - "[e_sanction_scopes_order_by!]" - ], - "where": [ - 1344 - ] - } - ], - "e_sanction_scopes_by_pk": [ - 1341, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_sanction_sources": [ - 1360, - { - "distinct_on": [ - 1374, - "[e_sanction_sources_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1372, - "[e_sanction_sources_order_by!]" - ], - "where": [ - 1364 - ] - } - ], - "e_sanction_sources_aggregate": [ - 1361, - { - "distinct_on": [ - 1374, - "[e_sanction_sources_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1372, - "[e_sanction_sources_order_by!]" - ], - "where": [ - 1364 - ] - } - ], - "e_sanction_sources_by_pk": [ - 1360, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_sanction_types": [ - 1387, - { - "distinct_on": [ - 1402, - "[e_sanction_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1400, - "[e_sanction_types_order_by!]" - ], - "where": [ - 1390 - ] - } - ], - "e_sanction_types_aggregate": [ - 1388, - { - "distinct_on": [ - 1402, - "[e_sanction_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1400, - "[e_sanction_types_order_by!]" - ], - "where": [ - 1390 - ] - } - ], - "e_sanction_types_by_pk": [ - 1387, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_scrim_request_statuses": [ - 1408, - { - "distinct_on": [ - 1422, - "[e_scrim_request_statuses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1420, - "[e_scrim_request_statuses_order_by!]" - ], - "where": [ - 1411 - ] - } - ], - "e_scrim_request_statuses_aggregate": [ - 1409, - { - "distinct_on": [ - 1422, - "[e_scrim_request_statuses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1420, - "[e_scrim_request_statuses_order_by!]" - ], - "where": [ - 1411 - ] - } - ], - "e_scrim_request_statuses_by_pk": [ - 1408, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_server_types": [ - 1428, - { - "distinct_on": [ - 1442, - "[e_server_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1440, - "[e_server_types_order_by!]" - ], - "where": [ - 1431 - ] - } - ], - "e_server_types_aggregate": [ - 1429, - { - "distinct_on": [ - 1442, - "[e_server_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1440, - "[e_server_types_order_by!]" - ], - "where": [ - 1431 - ] - } - ], - "e_server_types_by_pk": [ - 1428, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_sides": [ - 1448, - { - "distinct_on": [ - 1462, - "[e_sides_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1460, - "[e_sides_order_by!]" - ], - "where": [ - 1451 - ] - } - ], - "e_sides_aggregate": [ - 1449, - { - "distinct_on": [ - 1462, - "[e_sides_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1460, - "[e_sides_order_by!]" - ], - "where": [ - 1451 - ] - } - ], - "e_sides_by_pk": [ - 1448, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_system_alert_types": [ - 1468, - { - "distinct_on": [ - 1482, - "[e_system_alert_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1480, - "[e_system_alert_types_order_by!]" - ], - "where": [ - 1471 - ] - } - ], - "e_system_alert_types_aggregate": [ - 1469, - { - "distinct_on": [ - 1482, - "[e_system_alert_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1480, - "[e_system_alert_types_order_by!]" - ], - "where": [ - 1471 - ] - } - ], - "e_system_alert_types_by_pk": [ - 1468, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_team_roles": [ - 1488, - { - "distinct_on": [ - 1503, - "[e_team_roles_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1501, - "[e_team_roles_order_by!]" - ], - "where": [ - 1491 - ] - } - ], - "e_team_roles_aggregate": [ - 1489, - { - "distinct_on": [ - 1503, - "[e_team_roles_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1501, - "[e_team_roles_order_by!]" - ], - "where": [ - 1491 - ] - } - ], - "e_team_roles_by_pk": [ - 1488, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_team_roster_statuses": [ - 1509, - { - "distinct_on": [ - 1523, - "[e_team_roster_statuses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1521, - "[e_team_roster_statuses_order_by!]" - ], - "where": [ - 1512 - ] - } - ], - "e_team_roster_statuses_aggregate": [ - 1510, - { - "distinct_on": [ - 1523, - "[e_team_roster_statuses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1521, - "[e_team_roster_statuses_order_by!]" - ], - "where": [ - 1512 - ] - } - ], - "e_team_roster_statuses_by_pk": [ - 1509, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_timeout_settings": [ - 1529, - { - "distinct_on": [ - 1543, - "[e_timeout_settings_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1541, - "[e_timeout_settings_order_by!]" - ], - "where": [ - 1532 - ] - } - ], - "e_timeout_settings_aggregate": [ - 1530, - { - "distinct_on": [ - 1543, - "[e_timeout_settings_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1541, - "[e_timeout_settings_order_by!]" - ], - "where": [ - 1532 - ] - } - ], - "e_timeout_settings_by_pk": [ - 1529, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_tournament_categories": [ - 1549, - { - "distinct_on": [ - 1564, - "[e_tournament_categories_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1562, - "[e_tournament_categories_order_by!]" - ], - "where": [ - 1552 - ] - } - ], - "e_tournament_categories_aggregate": [ - 1550, - { - "distinct_on": [ - 1564, - "[e_tournament_categories_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1562, - "[e_tournament_categories_order_by!]" - ], - "where": [ - 1552 - ] - } - ], - "e_tournament_categories_by_pk": [ - 1549, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_tournament_free_agent_statuses": [ - 1570, - { - "distinct_on": [ - 1585, - "[e_tournament_free_agent_statuses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1583, - "[e_tournament_free_agent_statuses_order_by!]" - ], - "where": [ - 1573 - ] - } - ], - "e_tournament_free_agent_statuses_aggregate": [ - 1571, - { - "distinct_on": [ - 1585, - "[e_tournament_free_agent_statuses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1583, - "[e_tournament_free_agent_statuses_order_by!]" - ], - "where": [ - 1573 - ] - } - ], - "e_tournament_free_agent_statuses_by_pk": [ - 1570, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_tournament_registration_types": [ - 1591, - { - "distinct_on": [ - 1605, - "[e_tournament_registration_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1603, - "[e_tournament_registration_types_order_by!]" - ], - "where": [ - 1594 - ] - } - ], - "e_tournament_registration_types_aggregate": [ - 1592, - { - "distinct_on": [ - 1605, - "[e_tournament_registration_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1603, - "[e_tournament_registration_types_order_by!]" - ], - "where": [ - 1594 - ] - } - ], - "e_tournament_registration_types_by_pk": [ - 1591, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_tournament_stage_types": [ - 1611, - { - "distinct_on": [ - 1626, - "[e_tournament_stage_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1624, - "[e_tournament_stage_types_order_by!]" - ], - "where": [ - 1614 - ] - } - ], - "e_tournament_stage_types_aggregate": [ - 1612, - { - "distinct_on": [ - 1626, - "[e_tournament_stage_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1624, - "[e_tournament_stage_types_order_by!]" - ], - "where": [ - 1614 - ] - } - ], - "e_tournament_stage_types_by_pk": [ - 1611, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_tournament_status": [ - 1632, - { - "distinct_on": [ - 1647, - "[e_tournament_status_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1645, - "[e_tournament_status_order_by!]" - ], - "where": [ - 1635 - ] - } - ], - "e_tournament_status_aggregate": [ - 1633, - { - "distinct_on": [ - 1647, - "[e_tournament_status_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1645, - "[e_tournament_status_order_by!]" - ], - "where": [ - 1635 - ] - } - ], - "e_tournament_status_by_pk": [ - 1632, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_utility_practice_access": [ - 1653, - { - "distinct_on": [ - 1667, - "[e_utility_practice_access_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1665, - "[e_utility_practice_access_order_by!]" - ], - "where": [ - 1656 - ] - } - ], - "e_utility_practice_access_aggregate": [ - 1654, - { - "distinct_on": [ - 1667, - "[e_utility_practice_access_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1665, - "[e_utility_practice_access_order_by!]" - ], - "where": [ - 1656 - ] - } - ], - "e_utility_practice_access_by_pk": [ - 1653, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_utility_practice_statuses": [ - 1673, - { - "distinct_on": [ - 1688, - "[e_utility_practice_statuses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1686, - "[e_utility_practice_statuses_order_by!]" - ], - "where": [ - 1676 - ] - } - ], - "e_utility_practice_statuses_aggregate": [ - 1674, - { - "distinct_on": [ - 1688, - "[e_utility_practice_statuses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1686, - "[e_utility_practice_statuses_order_by!]" - ], - "where": [ - 1676 - ] - } - ], - "e_utility_practice_statuses_by_pk": [ - 1673, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_utility_sources": [ - 1694, - { - "distinct_on": [ - 1708, - "[e_utility_sources_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1706, - "[e_utility_sources_order_by!]" - ], - "where": [ - 1697 - ] - } - ], - "e_utility_sources_aggregate": [ - 1695, - { - "distinct_on": [ - 1708, - "[e_utility_sources_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1706, - "[e_utility_sources_order_by!]" - ], - "where": [ - 1697 - ] - } - ], - "e_utility_sources_by_pk": [ - 1694, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_utility_techniques": [ - 1714, - { - "distinct_on": [ - 1728, - "[e_utility_techniques_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1726, - "[e_utility_techniques_order_by!]" - ], - "where": [ - 1717 - ] - } - ], - "e_utility_techniques_aggregate": [ - 1715, - { - "distinct_on": [ - 1728, - "[e_utility_techniques_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1726, - "[e_utility_techniques_order_by!]" - ], - "where": [ - 1717 - ] - } - ], - "e_utility_techniques_by_pk": [ - 1714, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_utility_throw_strengths": [ - 1734, - { - "distinct_on": [ - 1748, - "[e_utility_throw_strengths_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1746, - "[e_utility_throw_strengths_order_by!]" - ], - "where": [ - 1737 - ] - } - ], - "e_utility_throw_strengths_aggregate": [ - 1735, - { - "distinct_on": [ - 1748, - "[e_utility_throw_strengths_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1746, - "[e_utility_throw_strengths_order_by!]" - ], - "where": [ - 1737 - ] - } - ], - "e_utility_throw_strengths_by_pk": [ - 1734, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_utility_types": [ - 1754, - { - "distinct_on": [ - 1768, - "[e_utility_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1766, - "[e_utility_types_order_by!]" - ], - "where": [ - 1757 - ] - } - ], - "e_utility_types_aggregate": [ - 1755, - { - "distinct_on": [ - 1768, - "[e_utility_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1766, - "[e_utility_types_order_by!]" - ], - "where": [ - 1757 - ] - } - ], - "e_utility_types_by_pk": [ - 1754, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_utility_visibility": [ - 1774, - { - "distinct_on": [ - 1788, - "[e_utility_visibility_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1786, - "[e_utility_visibility_order_by!]" - ], - "where": [ - 1777 - ] - } - ], - "e_utility_visibility_aggregate": [ - 1775, - { - "distinct_on": [ - 1788, - "[e_utility_visibility_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1786, - "[e_utility_visibility_order_by!]" - ], - "where": [ - 1777 - ] - } - ], - "e_utility_visibility_by_pk": [ - 1774, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_veto_pick_types": [ - 1794, - { - "distinct_on": [ - 1808, - "[e_veto_pick_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1806, - "[e_veto_pick_types_order_by!]" - ], - "where": [ - 1797 - ] - } - ], - "e_veto_pick_types_aggregate": [ - 1795, - { - "distinct_on": [ - 1808, - "[e_veto_pick_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1806, - "[e_veto_pick_types_order_by!]" - ], - "where": [ - 1797 - ] - } - ], - "e_veto_pick_types_by_pk": [ - 1794, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_winning_reasons": [ - 1814, - { - "distinct_on": [ - 1828, - "[e_winning_reasons_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1826, - "[e_winning_reasons_order_by!]" - ], - "where": [ - 1817 - ] - } - ], - "e_winning_reasons_aggregate": [ - 1815, - { - "distinct_on": [ - 1828, - "[e_winning_reasons_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1826, - "[e_winning_reasons_order_by!]" - ], - "where": [ - 1817 - ] - } - ], - "e_winning_reasons_by_pk": [ - 1814, - { - "value": [ - 85, - "String!" - ] - } - ], - "event_match_links": [ - 1834, - { - "distinct_on": [ - 1846, - "[event_match_links_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1844, - "[event_match_links_order_by!]" - ], - "where": [ - 1837 - ] - } - ], - "event_match_links_aggregate": [ - 1835, - { - "distinct_on": [ - 1846, - "[event_match_links_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1844, - "[event_match_links_order_by!]" - ], - "where": [ - 1837 - ] - } - ], - "event_match_links_by_pk": [ - 1834, - { - "event_id": [ - 6672, - "uuid!" - ], - "match_id": [ - 6672, - "uuid!" - ] - } - ], - "event_media": [ - 1852, - { - "distinct_on": [ - 1915, - "[event_media_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1872, - "[event_media_order_by!]" - ], - "where": [ - 1861 - ] - } - ], - "event_media_aggregate": [ - 1853, - { - "distinct_on": [ - 1915, - "[event_media_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1872, - "[event_media_order_by!]" - ], - "where": [ - 1861 - ] - } - ], - "event_media_by_pk": [ - 1852, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "event_media_players": [ - 1874, - { - "distinct_on": [ - 1895, - "[event_media_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1893, - "[event_media_players_order_by!]" - ], - "where": [ - 1883 - ] - } - ], - "event_media_players_aggregate": [ - 1875, - { - "distinct_on": [ - 1895, - "[event_media_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1893, - "[event_media_players_order_by!]" - ], - "where": [ - 1883 - ] - } - ], - "event_media_players_by_pk": [ - 1874, - { - "media_id": [ - 6672, - "uuid!" - ], - "steam_id": [ - 312, - "bigint!" - ] - } - ], - "event_organizers": [ - 1935, - { - "distinct_on": [ - 1956, - "[event_organizers_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1954, - "[event_organizers_order_by!]" - ], - "where": [ - 1944 - ] - } - ], - "event_organizers_aggregate": [ - 1936, - { - "distinct_on": [ - 1956, - "[event_organizers_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1954, - "[event_organizers_order_by!]" - ], - "where": [ - 1944 - ] - } - ], - "event_organizers_by_pk": [ - 1935, - { - "event_id": [ - 6672, - "uuid!" - ], - "steam_id": [ - 312, - "bigint!" - ] - } - ], - "event_players": [ - 1976, - { - "distinct_on": [ - 1997, - "[event_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1995, - "[event_players_order_by!]" - ], - "where": [ - 1985 - ] - } - ], - "event_players_aggregate": [ - 1977, - { - "distinct_on": [ - 1997, - "[event_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1995, - "[event_players_order_by!]" - ], - "where": [ - 1985 - ] - } - ], - "event_players_by_pk": [ - 1976, - { - "event_id": [ - 6672, - "uuid!" - ], - "steam_id": [ - 312, - "bigint!" - ] - } - ], - "event_teams": [ - 2017, - { - "distinct_on": [ - 2035, - "[event_teams_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2033, - "[event_teams_order_by!]" - ], - "where": [ - 2024 - ] - } - ], - "event_teams_aggregate": [ - 2018, - { - "distinct_on": [ - 2035, - "[event_teams_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2033, - "[event_teams_order_by!]" - ], - "where": [ - 2024 - ] - } - ], - "event_teams_by_pk": [ - 2017, - { - "event_id": [ - 6672, - "uuid!" - ], - "team_id": [ - 6672, - "uuid!" - ] - } - ], - "event_tournaments": [ - 2041, - { - "distinct_on": [ - 2059, - "[event_tournaments_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2057, - "[event_tournaments_order_by!]" - ], - "where": [ - 2048 - ] - } - ], - "event_tournaments_aggregate": [ - 2042, - { - "distinct_on": [ - 2059, - "[event_tournaments_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2057, - "[event_tournaments_order_by!]" - ], - "where": [ - 2048 - ] - } - ], - "event_tournaments_by_pk": [ - 2041, - { - "event_id": [ - 6672, - "uuid!" - ], - "tournament_id": [ - 6672, - "uuid!" - ] - } - ], - "events": [ - 2065, - { - "distinct_on": [ - 2080, - "[events_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2078, - "[events_order_by!]" - ], - "where": [ - 2069 - ] - } - ], - "events_aggregate": [ - 2066, - { - "distinct_on": [ - 2080, - "[events_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2078, - "[events_order_by!]" - ], - "where": [ - 2069 - ] - } - ], - "events_by_pk": [ - 2065, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "findUtilityLineupsBlocking": [ - 115, - { - "from_x": [ - 32, - "Float!" - ], - "from_y": [ - 32, - "Float!" - ], - "from_z": [ - 32, - "Float!" - ], - "limit": [ - 41 - ], - "map_name": [ - 85, - "String!" - ], - "side": [ - 85 - ], - "to_x": [ - 32, - "Float!" - ], - "to_y": [ - 32, - "Float!" - ], - "to_z": [ - 32, - "Float!" - ] - } - ], - "friends": [ - 2095, - { - "distinct_on": [ - 2109, - "[friends_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2107, - "[friends_order_by!]" - ], - "where": [ - 2099 - ] - } - ], - "friends_aggregate": [ - 2096, - { - "distinct_on": [ - 2109, - "[friends_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2107, - "[friends_order_by!]" - ], - "where": [ - 2099 - ] - } - ], - "friends_by_pk": [ - 2095, - { - "other_player_steam_id": [ - 312, - "bigint!" - ], - "player_steam_id": [ - 312, - "bigint!" - ] - } - ], - "game_mode_plugins": [ - 2122, - { - "distinct_on": [ - 2150, - "[game_mode_plugins_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2147, - "[game_mode_plugins_order_by!]" - ], - "where": [ - 2134 - ] - } - ], - "game_mode_plugins_aggregate": [ - 2123, - { - "distinct_on": [ - 2150, - "[game_mode_plugins_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2147, - "[game_mode_plugins_order_by!]" - ], - "where": [ - 2134 - ] - } - ], - "game_mode_plugins_by_pk": [ - 2122, - { - "game_mode_id": [ - 6672, - "uuid!" - ], - "plugin_slug": [ - 85, - "String!" - ] - } - ], - "game_modes": [ - 2172, - { - "distinct_on": [ - 2185, - "[game_modes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2183, - "[game_modes_order_by!]" - ], - "where": [ - 2175 - ] - } - ], - "game_modes_aggregate": [ - 2173, - { - "distinct_on": [ - 2185, - "[game_modes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2183, - "[game_modes_order_by!]" - ], - "where": [ - 2175 - ] - } - ], - "game_modes_by_pk": [ - 2172, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "game_plugin_installs": [ - 2191, - { - "distinct_on": [ - 2203, - "[game_plugin_installs_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2201, - "[game_plugin_installs_order_by!]" - ], - "where": [ - 2194 - ] - } - ], - "game_plugin_installs_aggregate": [ - 2192, - { - "distinct_on": [ - 2203, - "[game_plugin_installs_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2201, - "[game_plugin_installs_order_by!]" - ], - "where": [ - 2194 - ] - } - ], - "game_plugin_installs_by_pk": [ - 2191, - { - "plugin_slug": [ - 85, - "String!" - ] - } - ], - "game_plugin_versions": [ - 2209, - { - "distinct_on": [ - 2232, - "[game_plugin_versions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2230, - "[game_plugin_versions_order_by!]" - ], - "where": [ - 2220 - ] - } - ], - "game_plugin_versions_aggregate": [ - 2210, - { - "distinct_on": [ - 2232, - "[game_plugin_versions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2230, - "[game_plugin_versions_order_by!]" - ], - "where": [ - 2220 - ] - } - ], - "game_plugin_versions_by_pk": [ - 2209, - { - "plugin_slug": [ - 85, - "String!" - ], - "runtime": [ - 1306, - "e_plugin_runtimes_enum!" - ], - "version": [ - 85, - "String!" - ] - } - ], - "game_plugins": [ - 2254, - { - "distinct_on": [ - 2273, - "[game_plugins_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2270, - "[game_plugins_order_by!]" - ], - "where": [ - 2259 - ] - } - ], - "game_plugins_aggregate": [ - 2255, - { - "distinct_on": [ - 2273, - "[game_plugins_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2270, - "[game_plugins_order_by!]" - ], - "where": [ - 2259 - ] - } - ], - "game_plugins_by_pk": [ - 2254, - { - "slug": [ - 85, - "String!" - ] - } - ], - "game_server_node_plugins": [ - 2286, - { - "distinct_on": [ - 2306, - "[game_server_node_plugins_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2304, - "[game_server_node_plugins_order_by!]" - ], - "where": [ - 2295 - ] - } - ], - "game_server_node_plugins_aggregate": [ - 2287, - { - "distinct_on": [ - 2306, - "[game_server_node_plugins_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2304, - "[game_server_node_plugins_order_by!]" - ], - "where": [ - 2295 - ] - } - ], - "game_server_node_plugins_by_pk": [ - 2286, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "game_server_nodes": [ - 2314, - { - "distinct_on": [ - 2343, - "[game_server_nodes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2340, - "[game_server_nodes_order_by!]" - ], - "where": [ - 2326 - ] - } - ], - "game_server_nodes_aggregate": [ - 2315, - { - "distinct_on": [ - 2343, - "[game_server_nodes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2340, - "[game_server_nodes_order_by!]" - ], - "where": [ - 2326 - ] - } - ], - "game_server_nodes_by_pk": [ - 2314, - { - "id": [ - 85, - "String!" - ] - } - ], - "game_versions": [ - 2365, - { - "distinct_on": [ - 2385, - "[game_versions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2382, - "[game_versions_order_by!]" - ], - "where": [ - 2370 - ] - } - ], - "game_versions_aggregate": [ - 2366, - { - "distinct_on": [ - 2385, - "[game_versions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2382, - "[game_versions_order_by!]" - ], - "where": [ - 2370 - ] - } - ], - "game_versions_by_pk": [ - 2365, - { - "build_id": [ - 41, - "Int!" - ] - } - ], - "gamedata_signature_validations": [ - 2398, - { - "distinct_on": [ - 2417, - "[gamedata_signature_validations_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2414, - "[gamedata_signature_validations_order_by!]" - ], - "where": [ - 2403 - ] - } - ], - "gamedata_signature_validations_aggregate": [ - 2399, - { - "distinct_on": [ - 2417, - "[gamedata_signature_validations_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2414, - "[gamedata_signature_validations_order_by!]" - ], - "where": [ - 2403 - ] - } - ], - "gamedata_signature_validations_by_pk": [ - 2398, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "getActiveConnections": [ - 0 - ], - "getActiveQueries": [ - 1 - ], - "getConnectionStats": [ - 14 - ], - "getCurrentLocks": [ - 47 - ], - "getDatabaseStats": [ - 19 - ], - "getDedicatedServerInfo": [ - 21 - ], - "getDedicatedServerPlayers": [ - 75, - { - "serverId": [ - 85, - "String!" - ] - } - ], - "getHighlightPresetAvailability": [ - 37, - { - "match_map_id": [ - 6672, - "uuid!" - ], - "target_steam_id": [ - 85, - "String!" - ] - } - ], - "getIndexIOStats": [ - 39, - { - "schemas": [ - 85, - "[String!]" - ] - } - ], - "getIndexStats": [ - 40, - { - "schemas": [ - 85, - "[String!]" - ] - } - ], - "getNodeStats": [ - 54, - { - "node": [ - 85, - "String!" - ] - } - ], - "getQueryDetail": [ - 62, - { - "queryid": [ - 85, - "String!" - ] - } - ], - "getQueryStats": [ - 63 - ], - "getSchemas": [ - 85 - ], - "getServiceStats": [ - 59 - ], - "getStorageStats": [ - 83, - { - "schemas": [ - 85, - "[String!]" - ] - } - ], - "getTableIOStats": [ - 90, - { - "schemas": [ - 85, - "[String!]" - ] - } - ], - "getTableStats": [ - 92, - { - "schemas": [ - 85, - "[String!]" - ] - } - ], - "getTimescaleStats": [ - 110 - ], - "get_event_leaderboard": [ - 2442, - { - "args": [ - 2430, - "get_event_leaderboard_args!" - ], - "distinct_on": [ - 2453, - "[leaderboard_entries_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2452, - "[leaderboard_entries_order_by!]" - ], - "where": [ - 2446 - ] - } - ], - "get_event_leaderboard_aggregate": [ - 2443, - { - "args": [ - 2430, - "get_event_leaderboard_args!" - ], - "distinct_on": [ - 2453, - "[leaderboard_entries_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2452, - "[leaderboard_entries_order_by!]" - ], - "where": [ - 2446 - ] - } - ], - "get_leaderboard": [ - 2442, - { - "args": [ - 2431, - "get_leaderboard_args!" - ], - "distinct_on": [ - 2453, - "[leaderboard_entries_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2452, - "[leaderboard_entries_order_by!]" - ], - "where": [ - 2446 - ] - } - ], - "get_leaderboard_aggregate": [ - 2443, - { - "args": [ - 2431, - "get_leaderboard_args!" - ], - "distinct_on": [ - 2453, - "[leaderboard_entries_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2452, - "[leaderboard_entries_order_by!]" - ], - "where": [ - 2446 - ] - } - ], - "get_league_season_leaderboard": [ - 2442, - { - "args": [ - 2432, - "get_league_season_leaderboard_args!" - ], - "distinct_on": [ - 2453, - "[leaderboard_entries_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2452, - "[leaderboard_entries_order_by!]" - ], - "where": [ - 2446 - ] - } - ], - "get_league_season_leaderboard_aggregate": [ - 2443, - { - "args": [ - 2432, - "get_league_season_leaderboard_args!" - ], - "distinct_on": [ - 2453, - "[leaderboard_entries_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2452, - "[leaderboard_entries_order_by!]" - ], - "where": [ - 2446 - ] - } - ], - "get_player_leaderboard_rank": [ - 4089, - { - "args": [ - 2433, - "get_player_leaderboard_rank_args!" - ], - "distinct_on": [ - 4100, - "[player_leaderboard_rank_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4099, - "[player_leaderboard_rank_order_by!]" - ], - "where": [ - 4093 - ] - } - ], - "get_player_leaderboard_rank_aggregate": [ - 4090, - { - "args": [ - 2433, - "get_player_leaderboard_rank_args!" - ], - "distinct_on": [ - 4100, - "[player_leaderboard_rank_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4099, - "[player_leaderboard_rank_order_by!]" - ], - "where": [ - 4093 - ] - } - ], - "get_tournament_leaderboard": [ - 5494, - { - "args": [ - 2434, - "get_tournament_leaderboard_args!" - ], - "distinct_on": [ - 5505, - "[tournament_leaderboard_entries_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5504, - "[tournament_leaderboard_entries_order_by!]" - ], - "where": [ - 5498 - ] - } - ], - "get_tournament_leaderboard_aggregate": [ - 5495, - { - "args": [ - 2434, - "get_tournament_leaderboard_args!" - ], - "distinct_on": [ - 5505, - "[tournament_leaderboard_entries_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5504, - "[tournament_leaderboard_entries_order_by!]" - ], - "where": [ - 5498 - ] - } - ], - "leaderboard_entries": [ - 2442, - { - "distinct_on": [ - 2453, - "[leaderboard_entries_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2452, - "[leaderboard_entries_order_by!]" - ], - "where": [ - 2446 - ] - } - ], - "leaderboard_entries_aggregate": [ - 2443, - { - "distinct_on": [ - 2453, - "[leaderboard_entries_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2452, - "[leaderboard_entries_order_by!]" - ], - "where": [ - 2446 - ] - } - ], - "league_divisions": [ - 2466, - { - "distinct_on": [ - 2481, - "[league_divisions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2479, - "[league_divisions_order_by!]" - ], - "where": [ - 2470 - ] - } - ], - "league_divisions_aggregate": [ - 2467, - { - "distinct_on": [ - 2481, - "[league_divisions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2479, - "[league_divisions_order_by!]" - ], - "where": [ - 2470 - ] - } - ], - "league_divisions_by_pk": [ - 2466, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "league_match_weeks": [ - 2494, - { - "distinct_on": [ - 2515, - "[league_match_weeks_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2513, - "[league_match_weeks_order_by!]" - ], - "where": [ - 2503 - ] - } - ], - "league_match_weeks_aggregate": [ - 2495, - { - "distinct_on": [ - 2515, - "[league_match_weeks_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2513, - "[league_match_weeks_order_by!]" - ], - "where": [ - 2503 - ] - } - ], - "league_match_weeks_by_pk": [ - 2494, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "league_relegation_playoffs": [ - 2535, - { - "distinct_on": [ - 2556, - "[league_relegation_playoffs_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2554, - "[league_relegation_playoffs_order_by!]" - ], - "where": [ - 2544 - ] - } - ], - "league_relegation_playoffs_aggregate": [ - 2536, - { - "distinct_on": [ - 2556, - "[league_relegation_playoffs_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2554, - "[league_relegation_playoffs_order_by!]" - ], - "where": [ - 2544 - ] - } - ], - "league_relegation_playoffs_by_pk": [ - 2535, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "league_scheduling_proposals": [ - 2576, - { - "distinct_on": [ - 2597, - "[league_scheduling_proposals_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2595, - "[league_scheduling_proposals_order_by!]" - ], - "where": [ - 2585 - ] - } - ], - "league_scheduling_proposals_aggregate": [ - 2577, - { - "distinct_on": [ - 2597, - "[league_scheduling_proposals_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2595, - "[league_scheduling_proposals_order_by!]" - ], - "where": [ - 2585 - ] - } - ], - "league_scheduling_proposals_by_pk": [ - 2576, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "league_season_divisions": [ - 2617, - { - "distinct_on": [ - 2636, - "[league_season_divisions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2634, - "[league_season_divisions_order_by!]" - ], - "where": [ - 2624 - ] - } - ], - "league_season_divisions_aggregate": [ - 2618, - { - "distinct_on": [ - 2636, - "[league_season_divisions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2634, - "[league_season_divisions_order_by!]" - ], - "where": [ - 2624 - ] - } - ], - "league_season_divisions_by_pk": [ - 2617, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "league_seasons": [ - 2642, - { - "distinct_on": [ - 2662, - "[league_seasons_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2659, - "[league_seasons_order_by!]" - ], - "where": [ - 2647 - ] - } - ], - "league_seasons_aggregate": [ - 2643, - { - "distinct_on": [ - 2662, - "[league_seasons_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2659, - "[league_seasons_order_by!]" - ], - "where": [ - 2647 - ] - } - ], - "league_seasons_by_pk": [ - 2642, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "league_team_movements": [ - 2675, - { - "distinct_on": [ - 2696, - "[league_team_movements_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2694, - "[league_team_movements_order_by!]" - ], - "where": [ - 2684 - ] - } - ], - "league_team_movements_aggregate": [ - 2676, - { - "distinct_on": [ - 2696, - "[league_team_movements_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2694, - "[league_team_movements_order_by!]" - ], - "where": [ - 2684 - ] - } - ], - "league_team_movements_by_pk": [ - 2675, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "league_team_rosters": [ - 2716, - { - "distinct_on": [ - 2737, - "[league_team_rosters_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2735, - "[league_team_rosters_order_by!]" - ], - "where": [ - 2725 - ] - } - ], - "league_team_rosters_aggregate": [ - 2717, - { - "distinct_on": [ - 2737, - "[league_team_rosters_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2735, - "[league_team_rosters_order_by!]" - ], - "where": [ - 2725 - ] - } - ], - "league_team_rosters_by_pk": [ - 2716, - { - "league_team_season_id": [ - 6672, - "uuid!" - ], - "player_steam_id": [ - 312, - "bigint!" - ] - } - ], - "league_team_seasons": [ - 2757, - { - "distinct_on": [ - 2779, - "[league_team_seasons_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2777, - "[league_team_seasons_order_by!]" - ], - "where": [ - 2766 - ] - } - ], - "league_team_seasons_aggregate": [ - 2758, - { - "distinct_on": [ - 2779, - "[league_team_seasons_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2777, - "[league_team_seasons_order_by!]" - ], - "where": [ - 2766 - ] - } - ], - "league_team_seasons_by_pk": [ - 2757, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "league_teams": [ - 2799, - { - "distinct_on": [ - 2812, - "[league_teams_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2810, - "[league_teams_order_by!]" - ], - "where": [ - 2802 - ] - } - ], - "league_teams_aggregate": [ - 2800, - { - "distinct_on": [ - 2812, - "[league_teams_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2810, - "[league_teams_order_by!]" - ], - "where": [ - 2802 - ] - } - ], - "league_teams_by_pk": [ - 2799, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "listServerFiles": [ - 31, - { - "node_id": [ - 85, - "String!" - ], - "path": [ - 85 - ], - "server_id": [ - 85 - ] - } - ], - "lobbies": [ - 2818, - { - "distinct_on": [ - 2831, - "[lobbies_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2829, - "[lobbies_order_by!]" - ], - "where": [ - 2821 - ] - } - ], - "lobbies_aggregate": [ - 2819, - { - "distinct_on": [ - 2831, - "[lobbies_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2829, - "[lobbies_order_by!]" - ], - "where": [ - 2821 - ] - } - ], - "lobbies_by_pk": [ - 2818, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "lobby_players": [ - 2837, - { - "distinct_on": [ - 2860, - "[lobby_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2858, - "[lobby_players_order_by!]" - ], - "where": [ - 2848 - ] - } - ], - "lobby_players_aggregate": [ - 2838, - { - "distinct_on": [ - 2860, - "[lobby_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2858, - "[lobby_players_order_by!]" - ], - "where": [ - 2848 - ] - } - ], - "lobby_players_by_pk": [ - 2837, - { - "lobby_id": [ - 6672, - "uuid!" - ], - "steam_id": [ - 312, - "bigint!" - ] - } - ], - "map_callouts": [ - 2882, - { - "distinct_on": [ - 2899, - "[map_callouts_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2896, - "[map_callouts_order_by!]" - ], - "where": [ - 2886 - ] - } - ], - "map_callouts_aggregate": [ - 2883, - { - "distinct_on": [ - 2899, - "[map_callouts_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2896, - "[map_callouts_order_by!]" - ], - "where": [ - 2886 - ] - } - ], - "map_callouts_by_pk": [ - 2882, - { - "map_name": [ - 85, - "String!" - ], - "name": [ - 85, - "String!" - ] - } - ], - "map_pools": [ - 2905, - { - "distinct_on": [ - 2918, - "[map_pools_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2916, - "[map_pools_order_by!]" - ], - "where": [ - 2908 - ] - } - ], - "map_pools_aggregate": [ - 2906, - { - "distinct_on": [ - 2918, - "[map_pools_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2916, - "[map_pools_order_by!]" - ], - "where": [ - 2908 - ] - } - ], - "map_pools_by_pk": [ - 2905, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "maps": [ - 2924, - { - "distinct_on": [ - 2945, - "[maps_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2943, - "[maps_order_by!]" - ], - "where": [ - 2933 - ] - } - ], - "maps_aggregate": [ - 2925, - { - "distinct_on": [ - 2945, - "[maps_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2943, - "[maps_order_by!]" - ], - "where": [ - 2933 - ] - } - ], - "maps_by_pk": [ - 2924, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "match_clips": [ - 2953, - { - "distinct_on": [ - 2975, - "[match_clips_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2973, - "[match_clips_order_by!]" - ], - "where": [ - 2962 - ] - } - ], - "match_clips_aggregate": [ - 2954, - { - "distinct_on": [ - 2975, - "[match_clips_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2973, - "[match_clips_order_by!]" - ], - "where": [ - 2962 - ] - } - ], - "match_clips_by_pk": [ - 2953, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "match_demo_sessions": [ - 2995, - { - "distinct_on": [ - 3021, - "[match_demo_sessions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3018, - "[match_demo_sessions_order_by!]" - ], - "where": [ - 3005 - ] - } - ], - "match_demo_sessions_aggregate": [ - 2996, - { - "distinct_on": [ - 3021, - "[match_demo_sessions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3018, - "[match_demo_sessions_order_by!]" - ], - "where": [ - 3005 - ] - } - ], - "match_demo_sessions_by_pk": [ - 2995, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "match_lineup_players": [ - 3041, - { - "distinct_on": [ - 3064, - "[match_lineup_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3062, - "[match_lineup_players_order_by!]" - ], - "where": [ - 3052 - ] - } - ], - "match_lineup_players_aggregate": [ - 3042, - { - "distinct_on": [ - 3064, - "[match_lineup_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3062, - "[match_lineup_players_order_by!]" - ], - "where": [ - 3052 - ] - } - ], - "match_lineup_players_by_pk": [ - 3041, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "match_lineups": [ - 3086, - { - "distinct_on": [ - 3108, - "[match_lineups_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3106, - "[match_lineups_order_by!]" - ], - "where": [ - 3095 - ] - } - ], - "match_lineups_aggregate": [ - 3087, - { - "distinct_on": [ - 3108, - "[match_lineups_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3106, - "[match_lineups_order_by!]" - ], - "where": [ - 3095 - ] - } - ], - "match_lineups_by_pk": [ - 3086, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "match_map_demos": [ - 3128, - { - "distinct_on": [ - 3157, - "[match_map_demos_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3154, - "[match_map_demos_order_by!]" - ], - "where": [ - 3140 - ] - } - ], - "match_map_demos_aggregate": [ - 3129, - { - "distinct_on": [ - 3157, - "[match_map_demos_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3154, - "[match_map_demos_order_by!]" - ], - "where": [ - 3140 - ] - } - ], - "match_map_demos_by_pk": [ - 3128, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "match_map_rounds": [ - 3179, - { - "distinct_on": [ - 3200, - "[match_map_rounds_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3198, - "[match_map_rounds_order_by!]" - ], - "where": [ - 3188 - ] - } - ], - "match_map_rounds_aggregate": [ - 3180, - { - "distinct_on": [ - 3200, - "[match_map_rounds_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3198, - "[match_map_rounds_order_by!]" - ], - "where": [ - 3188 - ] - } - ], - "match_map_rounds_by_pk": [ - 3179, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "match_map_veto_picks": [ - 3220, - { - "distinct_on": [ - 3240, - "[match_map_veto_picks_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3238, - "[match_map_veto_picks_order_by!]" - ], - "where": [ - 3229 - ] - } - ], - "match_map_veto_picks_aggregate": [ - 3221, - { - "distinct_on": [ - 3240, - "[match_map_veto_picks_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3238, - "[match_map_veto_picks_order_by!]" - ], - "where": [ - 3229 - ] - } - ], - "match_map_veto_picks_by_pk": [ - 3220, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "match_maps": [ - 3248, - { - "distinct_on": [ - 3270, - "[match_maps_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3268, - "[match_maps_order_by!]" - ], - "where": [ - 3257 - ] - } - ], - "match_maps_aggregate": [ - 3249, - { - "distinct_on": [ - 3270, - "[match_maps_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3268, - "[match_maps_order_by!]" - ], - "where": [ - 3257 - ] - } - ], - "match_maps_by_pk": [ - 3248, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "match_options": [ - 3290, - { - "distinct_on": [ - 3314, - "[match_options_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3312, - "[match_options_order_by!]" - ], - "where": [ - 3301 - ] - } - ], - "match_options_aggregate": [ - 3291, - { - "distinct_on": [ - 3314, - "[match_options_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3312, - "[match_options_order_by!]" - ], - "where": [ - 3301 - ] - } - ], - "match_options_by_pk": [ - 3290, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "match_region_veto_picks": [ - 3336, - { - "distinct_on": [ - 3356, - "[match_region_veto_picks_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3354, - "[match_region_veto_picks_order_by!]" - ], - "where": [ - 3345 - ] - } - ], - "match_region_veto_picks_aggregate": [ - 3337, - { - "distinct_on": [ - 3356, - "[match_region_veto_picks_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3354, - "[match_region_veto_picks_order_by!]" - ], - "where": [ - 3345 - ] - } - ], - "match_region_veto_picks_by_pk": [ - 3336, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "match_streams": [ - 3364, - { - "distinct_on": [ - 3392, - "[match_streams_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3389, - "[match_streams_order_by!]" - ], - "where": [ - 3376 - ] - } - ], - "match_streams_aggregate": [ - 3365, - { - "distinct_on": [ - 3392, - "[match_streams_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3389, - "[match_streams_order_by!]" - ], - "where": [ - 3376 - ] - } - ], - "match_streams_by_pk": [ - 3364, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "match_type_cfgs": [ - 3414, - { - "distinct_on": [ - 3426, - "[match_type_cfgs_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3424, - "[match_type_cfgs_order_by!]" - ], - "where": [ - 3417 - ] - } - ], - "match_type_cfgs_aggregate": [ - 3415, - { - "distinct_on": [ - 3426, - "[match_type_cfgs_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3424, - "[match_type_cfgs_order_by!]" - ], - "where": [ - 3417 - ] - } - ], - "match_type_cfgs_by_pk": [ - 3414, - { - "type": [ - 876, - "e_game_cfg_types_enum!" - ] - } - ], - "matches": [ - 3432, - { - "distinct_on": [ - 3456, - "[matches_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3454, - "[matches_order_by!]" - ], - "where": [ - 3443 - ] - } - ], - "matches_aggregate": [ - 3433, - { - "distinct_on": [ - 3456, - "[matches_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3454, - "[matches_order_by!]" - ], - "where": [ - 3443 - ] - } - ], - "matches_by_pk": [ - 3432, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "me": [ - 49 - ], - "migration_hashes_hashes": [ - 3478, - { - "distinct_on": [ - 3490, - "[migration_hashes_hashes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3488, - "[migration_hashes_hashes_order_by!]" - ], - "where": [ - 3481 - ] - } - ], - "migration_hashes_hashes_aggregate": [ - 3479, - { - "distinct_on": [ - 3490, - "[migration_hashes_hashes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3488, - "[migration_hashes_hashes_order_by!]" - ], - "where": [ - 3481 - ] - } - ], - "migration_hashes_hashes_by_pk": [ - 3478, - { - "name": [ - 85, - "String!" - ] - } - ], - "my_friends": [ - 3496, - { - "distinct_on": [ - 3521, - "[my_friends_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3519, - "[my_friends_order_by!]" - ], - "where": [ - 3508 - ] - } - ], - "my_friends_aggregate": [ - 3497, - { - "distinct_on": [ - 3521, - "[my_friends_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3519, - "[my_friends_order_by!]" - ], - "where": [ - 3508 - ] - } - ], - "newsPostAdmin": [ - 52, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "newsPostsAdmin": [ - 52 - ], - "news_articles": [ - 3542, - { - "distinct_on": [ - 3556, - "[news_articles_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3554, - "[news_articles_order_by!]" - ], - "where": [ - 3546 - ] - } - ], - "news_articles_aggregate": [ - 3543, - { - "distinct_on": [ - 3556, - "[news_articles_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3554, - "[news_articles_order_by!]" - ], - "where": [ - 3546 - ] - } - ], - "news_articles_by_pk": [ - 3542, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "notification_preferences": [ - 3569, - { - "distinct_on": [ - 3583, - "[notification_preferences_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3581, - "[notification_preferences_order_by!]" - ], - "where": [ - 3573 - ] - } - ], - "notification_preferences_aggregate": [ - 3570, - { - "distinct_on": [ - 3583, - "[notification_preferences_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3581, - "[notification_preferences_order_by!]" - ], - "where": [ - 3573 - ] - } - ], - "notification_preferences_by_pk": [ - 3569, - { - "channel": [ - 85, - "String!" - ], - "key": [ - 85, - "String!" - ], - "steam_id": [ - 312, - "bigint!" - ] - } - ], - "notifications": [ - 3596, - { - "distinct_on": [ - 3624, - "[notifications_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3621, - "[notifications_order_by!]" - ], - "where": [ - 3608 - ] - } - ], - "notifications_aggregate": [ - 3597, - { - "distinct_on": [ - 3624, - "[notifications_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3621, - "[notifications_order_by!]" - ], - "where": [ - 3608 - ] - } - ], - "notifications_by_pk": [ - 3596, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "pending_match_import_players": [ - 3649, - { - "distinct_on": [ - 3670, - "[pending_match_import_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3668, - "[pending_match_import_players_order_by!]" - ], - "where": [ - 3658 - ] - } - ], - "pending_match_import_players_aggregate": [ - 3650, - { - "distinct_on": [ - 3670, - "[pending_match_import_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3668, - "[pending_match_import_players_order_by!]" - ], - "where": [ - 3658 - ] - } - ], - "pending_match_import_players_by_pk": [ - 3649, - { - "steam_id": [ - 312, - "bigint!" - ], - "valve_match_id": [ - 3646, - "numeric!" - ] - } - ], - "pending_match_imports": [ - 3690, - { - "distinct_on": [ - 3705, - "[pending_match_imports_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3703, - "[pending_match_imports_order_by!]" - ], - "where": [ - 3694 - ] - } - ], - "pending_match_imports_aggregate": [ - 3691, - { - "distinct_on": [ - 3705, - "[pending_match_imports_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3703, - "[pending_match_imports_order_by!]" - ], - "where": [ - 3694 - ] - } - ], - "pending_match_imports_by_pk": [ - 3690, - { - "valve_match_id": [ - 3646, - "numeric!" - ] - } - ], - "player_aim_stats_demo": [ - 3718, - { - "distinct_on": [ - 3732, - "[player_aim_stats_demo_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3730, - "[player_aim_stats_demo_order_by!]" - ], - "where": [ - 3722 - ] - } - ], - "player_aim_stats_demo_aggregate": [ - 3719, - { - "distinct_on": [ - 3732, - "[player_aim_stats_demo_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3730, - "[player_aim_stats_demo_order_by!]" - ], - "where": [ - 3722 - ] - } - ], - "player_aim_stats_demo_by_pk": [ - 3718, - { - "attacker_steam_id": [ - 312, - "bigint!" - ], - "match_map_id": [ - 6672, - "uuid!" - ] - } - ], - "player_aim_weapon_stats": [ - 3745, - { - "distinct_on": [ - 3766, - "[player_aim_weapon_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3764, - "[player_aim_weapon_stats_order_by!]" - ], - "where": [ - 3754 - ] - } - ], - "player_aim_weapon_stats_aggregate": [ - 3746, - { - "distinct_on": [ - 3766, - "[player_aim_weapon_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3764, - "[player_aim_weapon_stats_order_by!]" - ], - "where": [ - 3754 - ] - } - ], - "player_aim_weapon_stats_by_pk": [ - 3745, - { - "match_map_id": [ - 6672, - "uuid!" - ], - "steam_id": [ - 312, - "bigint!" - ], - "weapon_class": [ - 85, - "String!" - ] - } - ], - "player_assists": [ - 3786, - { - "distinct_on": [ - 3809, - "[player_assists_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3807, - "[player_assists_order_by!]" - ], - "where": [ - 3797 - ] - } - ], - "player_assists_aggregate": [ - 3787, - { - "distinct_on": [ - 3809, - "[player_assists_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3807, - "[player_assists_order_by!]" - ], - "where": [ - 3797 - ] - } - ], - "player_assists_by_pk": [ - 3786, - { - "attacked_steam_id": [ - 312, - "bigint!" - ], - "attacker_steam_id": [ - 312, - "bigint!" - ], - "match_map_id": [ - 6672, - "uuid!" - ], - "time": [ - 5243, - "timestamptz!" - ] - } - ], - "player_career_stats_v": [ - 3831, - { - "distinct_on": [ - 3839, - "[player_career_stats_v_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3838, - "[player_career_stats_v_order_by!]" - ], - "where": [ - 3835 - ] - } - ], - "player_career_stats_v_aggregate": [ - 3832, - { - "distinct_on": [ - 3839, - "[player_career_stats_v_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3838, - "[player_career_stats_v_order_by!]" - ], - "where": [ - 3835 - ] - } - ], - "player_damages": [ - 3849, - { - "distinct_on": [ - 3870, - "[player_damages_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3868, - "[player_damages_order_by!]" - ], - "where": [ - 3858 - ] - } - ], - "player_damages_aggregate": [ - 3850, - { - "distinct_on": [ - 3870, - "[player_damages_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3868, - "[player_damages_order_by!]" - ], - "where": [ - 3858 - ] - } - ], - "player_damages_by_pk": [ - 3849, - { - "id": [ - 6672, - "uuid!" - ], - "match_map_id": [ - 6672, - "uuid!" - ], - "time": [ - 5243, - "timestamptz!" - ] - } - ], - "player_elo": [ - 3890, - { - "distinct_on": [ - 3904, - "[player_elo_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3902, - "[player_elo_order_by!]" - ], - "where": [ - 3894 - ] - } - ], - "player_elo_aggregate": [ - 3891, - { - "distinct_on": [ - 3904, - "[player_elo_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3902, - "[player_elo_order_by!]" - ], - "where": [ - 3894 - ] - } - ], - "player_elo_by_pk": [ - 3890, - { - "match_id": [ - 6672, - "uuid!" - ], - "steam_id": [ - 312, - "bigint!" - ], - "type": [ - 1225, - "e_match_types_enum!" - ] - } - ], - "player_faceit_rank_history": [ - 3917, - { - "distinct_on": [ - 3938, - "[player_faceit_rank_history_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3936, - "[player_faceit_rank_history_order_by!]" - ], - "where": [ - 3926 - ] - } - ], - "player_faceit_rank_history_aggregate": [ - 3918, - { - "distinct_on": [ - 3938, - "[player_faceit_rank_history_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3936, - "[player_faceit_rank_history_order_by!]" - ], - "where": [ - 3926 - ] - } - ], - "player_faceit_rank_history_by_pk": [ - 3917, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "player_flashes": [ - 3958, - { - "distinct_on": [ - 3981, - "[player_flashes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3979, - "[player_flashes_order_by!]" - ], - "where": [ - 3969 - ] - } - ], - "player_flashes_aggregate": [ - 3959, - { - "distinct_on": [ - 3981, - "[player_flashes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3979, - "[player_flashes_order_by!]" - ], - "where": [ - 3969 - ] - } - ], - "player_flashes_by_pk": [ - 3958, - { - "attacked_steam_id": [ - 312, - "bigint!" - ], - "attacker_steam_id": [ - 312, - "bigint!" - ], - "match_map_id": [ - 6672, - "uuid!" - ], - "time": [ - 5243, - "timestamptz!" - ] - } - ], - "player_kills": [ - 4003, - { - "distinct_on": [ - 4067, - "[player_kills_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4065, - "[player_kills_order_by!]" - ], - "where": [ - 4014 - ] - } - ], - "player_kills_aggregate": [ - 4004, - { - "distinct_on": [ - 4067, - "[player_kills_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4065, - "[player_kills_order_by!]" - ], - "where": [ - 4014 - ] - } - ], - "player_kills_by_pk": [ - 4003, - { - "attacked_steam_id": [ - 312, - "bigint!" - ], - "attacker_steam_id": [ - 312, - "bigint!" - ], - "match_map_id": [ - 6672, - "uuid!" - ], - "time": [ - 5243, - "timestamptz!" - ] - } - ], - "player_kills_by_weapon": [ - 4015, - { - "distinct_on": [ - 4036, - "[player_kills_by_weapon_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4034, - "[player_kills_by_weapon_order_by!]" - ], - "where": [ - 4024 - ] - } - ], - "player_kills_by_weapon_aggregate": [ - 4016, - { - "distinct_on": [ - 4036, - "[player_kills_by_weapon_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4034, - "[player_kills_by_weapon_order_by!]" - ], - "where": [ - 4024 - ] - } - ], - "player_kills_by_weapon_by_pk": [ - 4015, - { - "player_steam_id": [ - 312, - "bigint!" - ], - "with": [ - 85, - "String!" - ] - } - ], - "player_leaderboard_rank": [ - 4089, - { - "distinct_on": [ - 4100, - "[player_leaderboard_rank_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4099, - "[player_leaderboard_rank_order_by!]" - ], - "where": [ - 4093 - ] - } - ], - "player_leaderboard_rank_aggregate": [ - 4090, - { - "distinct_on": [ - 4100, - "[player_leaderboard_rank_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4099, - "[player_leaderboard_rank_order_by!]" - ], - "where": [ - 4093 - ] - } - ], - "player_match_map_stats": [ - 4112, - { - "distinct_on": [ - 4133, - "[player_match_map_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4131, - "[player_match_map_stats_order_by!]" - ], - "where": [ - 4121 - ] - } - ], - "player_match_map_stats_aggregate": [ - 4113, - { - "distinct_on": [ - 4133, - "[player_match_map_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4131, - "[player_match_map_stats_order_by!]" - ], - "where": [ - 4121 - ] - } - ], - "player_match_map_stats_by_pk": [ - 4112, - { - "match_map_id": [ - 6672, - "uuid!" - ], - "steam_id": [ - 312, - "bigint!" - ] - } - ], - "player_match_performance_v": [ - 4153, - { - "distinct_on": [ - 4161, - "[player_match_performance_v_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4160, - "[player_match_performance_v_order_by!]" - ], - "where": [ - 4157 - ] - } - ], - "player_match_performance_v_aggregate": [ - 4154, - { - "distinct_on": [ - 4161, - "[player_match_performance_v_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4160, - "[player_match_performance_v_order_by!]" - ], - "where": [ - 4157 - ] - } - ], - "player_match_stats_v": [ - 4171, - { - "distinct_on": [ - 4187, - "[player_match_stats_v_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4186, - "[player_match_stats_v_order_by!]" - ], - "where": [ - 4180 - ] - } - ], - "player_match_stats_v_aggregate": [ - 4172, - { - "distinct_on": [ - 4187, - "[player_match_stats_v_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4186, - "[player_match_stats_v_order_by!]" - ], - "where": [ - 4180 - ] - } - ], - "player_objectives": [ - 4204, - { - "distinct_on": [ - 4225, - "[player_objectives_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4223, - "[player_objectives_order_by!]" - ], - "where": [ - 4213 - ] - } - ], - "player_objectives_aggregate": [ - 4205, - { - "distinct_on": [ - 4225, - "[player_objectives_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4223, - "[player_objectives_order_by!]" - ], - "where": [ - 4213 - ] - } - ], - "player_objectives_by_pk": [ - 4204, - { - "match_map_id": [ - 6672, - "uuid!" - ], - "player_steam_id": [ - 312, - "bigint!" - ], - "time": [ - 5243, - "timestamptz!" - ] - } - ], - "player_performance_v": [ - 4245, - { - "distinct_on": [ - 4253, - "[player_performance_v_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4252, - "[player_performance_v_order_by!]" - ], - "where": [ - 4249 - ] - } - ], - "player_performance_v_aggregate": [ - 4246, - { - "distinct_on": [ - 4253, - "[player_performance_v_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4252, - "[player_performance_v_order_by!]" - ], - "where": [ - 4249 - ] - } - ], - "player_premier_rank_history": [ - 4263, - { - "distinct_on": [ - 4284, - "[player_premier_rank_history_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4282, - "[player_premier_rank_history_order_by!]" - ], - "where": [ - 4272 - ] - } - ], - "player_premier_rank_history_aggregate": [ - 4264, - { - "distinct_on": [ - 4284, - "[player_premier_rank_history_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4282, - "[player_premier_rank_history_order_by!]" - ], - "where": [ - 4272 - ] - } - ], - "player_premier_rank_history_by_pk": [ - 4263, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "player_sanctions": [ - 4304, - { - "distinct_on": [ - 4325, - "[player_sanctions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4323, - "[player_sanctions_order_by!]" - ], - "where": [ - 4313 - ] - } - ], - "player_sanctions_aggregate": [ - 4305, - { - "distinct_on": [ - 4325, - "[player_sanctions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4323, - "[player_sanctions_order_by!]" - ], - "where": [ - 4313 - ] - } - ], - "player_sanctions_by_pk": [ - 4304, - { - "created_at": [ - 5243, - "timestamptz!" - ], - "id": [ - 6672, - "uuid!" - ] - } - ], - "player_season_stats": [ - 4345, - { - "distinct_on": [ - 4376, - "[player_season_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4374, - "[player_season_stats_order_by!]" - ], - "where": [ - 4364 - ] - } - ], - "player_season_stats_aggregate": [ - 4346, - { - "distinct_on": [ - 4376, - "[player_season_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4374, - "[player_season_stats_order_by!]" - ], - "where": [ - 4364 - ] - } - ], - "player_season_stats_by_pk": [ - 4345, - { - "player_steam_id": [ - 312, - "bigint!" - ], - "season_id": [ - 6672, - "uuid!" - ] - } - ], - "player_stats": [ - 4404, - { - "distinct_on": [ - 4419, - "[player_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4417, - "[player_stats_order_by!]" - ], - "where": [ - 4408 - ] - } - ], - "player_stats_aggregate": [ - 4405, - { - "distinct_on": [ - 4419, - "[player_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4417, - "[player_stats_order_by!]" - ], - "where": [ - 4408 - ] - } - ], - "player_stats_by_pk": [ - 4404, - { - "player_steam_id": [ - 312, - "bigint!" - ] - } - ], - "player_steam_bot_friend": [ - 4432, - { - "distinct_on": [ - 4451, - "[player_steam_bot_friend_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4448, - "[player_steam_bot_friend_order_by!]" - ], - "where": [ - 4437 - ] - } - ], - "player_steam_bot_friend_aggregate": [ - 4433, - { - "distinct_on": [ - 4451, - "[player_steam_bot_friend_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4448, - "[player_steam_bot_friend_order_by!]" - ], - "where": [ - 4437 - ] - } - ], - "player_steam_bot_friend_by_pk": [ - 4432, - { - "steam_id": [ - 312, - "bigint!" - ] - } - ], - "player_steam_match_auth": [ - 4464, - { - "distinct_on": [ - 4478, - "[player_steam_match_auth_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4476, - "[player_steam_match_auth_order_by!]" - ], - "where": [ - 4468 - ] - } - ], - "player_steam_match_auth_aggregate": [ - 4465, - { - "distinct_on": [ - 4478, - "[player_steam_match_auth_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4476, - "[player_steam_match_auth_order_by!]" - ], - "where": [ - 4468 - ] - } - ], - "player_steam_match_auth_by_pk": [ - 4464, - { - "steam_id": [ - 312, - "bigint!" - ] - } - ], - "player_unused_utility": [ - 4491, - { - "distinct_on": [ - 4512, - "[player_unused_utility_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4510, - "[player_unused_utility_order_by!]" - ], - "where": [ - 4500 - ] - } - ], - "player_unused_utility_aggregate": [ - 4492, - { - "distinct_on": [ - 4512, - "[player_unused_utility_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4510, - "[player_unused_utility_order_by!]" - ], - "where": [ - 4500 - ] - } - ], - "player_unused_utility_by_pk": [ - 4491, - { - "match_map_id": [ - 6672, - "uuid!" - ], - "player_steam_id": [ - 312, - "bigint!" - ] - } - ], - "player_utility": [ - 4532, - { - "distinct_on": [ - 4553, - "[player_utility_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4551, - "[player_utility_order_by!]" - ], - "where": [ - 4541 - ] - } - ], - "player_utility_aggregate": [ - 4533, - { - "distinct_on": [ - 4553, - "[player_utility_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4551, - "[player_utility_order_by!]" - ], - "where": [ - 4541 - ] - } - ], - "player_utility_by_pk": [ - 4532, - { - "attacker_steam_id": [ - 312, - "bigint!" - ], - "match_map_id": [ - 6672, - "uuid!" - ], - "time": [ - 5243, - "timestamptz!" - ] - } - ], - "player_weapon_stats_v": [ - 4573, - { - "distinct_on": [ - 4589, - "[player_weapon_stats_v_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4588, - "[player_weapon_stats_v_order_by!]" - ], - "where": [ - 4582 - ] - } - ], - "player_weapon_stats_v_aggregate": [ - 4574, - { - "distinct_on": [ - 4589, - "[player_weapon_stats_v_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4588, - "[player_weapon_stats_v_order_by!]" - ], - "where": [ - 4582 - ] - } - ], - "players": [ - 4606, - { - "distinct_on": [ - 4621, - "[players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4619, - "[players_order_by!]" - ], - "where": [ - 4610 - ] - } - ], - "players_aggregate": [ - 4607, - { - "distinct_on": [ - 4621, - "[players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4619, - "[players_order_by!]" - ], - "where": [ - 4610 - ] - } - ], - "players_by_pk": [ - 4606, - { - "steam_id": [ - 312, - "bigint!" - ] - } - ], - "plugin_versions": [ - 4634, - { - "distinct_on": [ - 4648, - "[plugin_versions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4646, - "[plugin_versions_order_by!]" - ], - "where": [ - 4638 - ] - } - ], - "plugin_versions_aggregate": [ - 4635, - { - "distinct_on": [ - 4648, - "[plugin_versions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4646, - "[plugin_versions_order_by!]" - ], - "where": [ - 4638 - ] - } - ], - "plugin_versions_by_pk": [ - 4634, - { - "runtime": [ - 1306, - "e_plugin_runtimes_enum!" - ], - "version": [ - 85, - "String!" - ] - } - ], - "push_subscriptions": [ - 4661, - { - "distinct_on": [ - 4675, - "[push_subscriptions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4673, - "[push_subscriptions_order_by!]" - ], - "where": [ - 4665 - ] - } - ], - "push_subscriptions_aggregate": [ - 4662, - { - "distinct_on": [ - 4675, - "[push_subscriptions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4673, - "[push_subscriptions_order_by!]" - ], - "where": [ - 4665 - ] - } - ], - "push_subscriptions_by_pk": [ - 4661, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "readServerFile": [ - 29, - { - "file_path": [ - 85, - "String!" - ], - "node_id": [ - 85, - "String!" - ], - "server_id": [ - 85 - ] - } - ], - "role_permissions": [ - 4692, - { - "distinct_on": [ - 4701, - "[role_permissions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4700, - "[role_permissions_order_by!]" - ], - "where": [ - 4695 - ] - } - ], - "role_permissions_aggregate": [ - 4693, - { - "distinct_on": [ - 4701, - "[role_permissions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4700, - "[role_permissions_order_by!]" - ], - "where": [ - 4695 - ] - } - ], - "seasons": [ - 4706, - { - "distinct_on": [ - 4721, - "[seasons_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4719, - "[seasons_order_by!]" - ], - "where": [ - 4710 - ] - } - ], - "seasons_aggregate": [ - 4707, - { - "distinct_on": [ - 4721, - "[seasons_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4719, - "[seasons_order_by!]" - ], - "where": [ - 4710 - ] - } - ], - "seasons_by_pk": [ - 4706, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "server_regions": [ - 4734, - { - "distinct_on": [ - 4748, - "[server_regions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4746, - "[server_regions_order_by!]" - ], - "where": [ - 4738 - ] - } - ], - "server_regions_aggregate": [ - 4735, - { - "distinct_on": [ - 4748, - "[server_regions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4746, - "[server_regions_order_by!]" - ], - "where": [ - 4738 - ] - } - ], - "server_regions_by_pk": [ - 4734, - { - "value": [ - 85, - "String!" - ] - } - ], - "servers": [ - 4761, - { - "distinct_on": [ - 4790, - "[servers_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4787, - "[servers_order_by!]" - ], - "where": [ - 4773 - ] - } - ], - "servers_aggregate": [ - 4762, - { - "distinct_on": [ - 4790, - "[servers_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4787, - "[servers_order_by!]" - ], - "where": [ - 4773 - ] - } - ], - "servers_by_pk": [ - 4761, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "settings": [ - 4812, - { - "distinct_on": [ - 4824, - "[settings_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4822, - "[settings_order_by!]" - ], - "where": [ - 4815 - ] - } - ], - "settings_aggregate": [ - 4813, - { - "distinct_on": [ - 4824, - "[settings_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4822, - "[settings_order_by!]" - ], - "where": [ - 4815 - ] - } - ], - "settings_by_pk": [ - 4812, - { - "name": [ - 85, - "String!" - ] - } - ], - "steamPresenceAdminStatus": [ - 79 - ], - "steam_account_claims": [ - 4832, - { - "distinct_on": [ - 4850, - "[steam_account_claims_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4848, - "[steam_account_claims_order_by!]" - ], - "where": [ - 4839 - ] - } - ], - "steam_account_claims_aggregate": [ - 4833, - { - "distinct_on": [ - 4850, - "[steam_account_claims_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4848, - "[steam_account_claims_order_by!]" - ], - "where": [ - 4839 - ] - } - ], - "steam_account_claims_by_pk": [ - 4832, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "steam_accounts": [ - 4856, - { - "distinct_on": [ - 4871, - "[steam_accounts_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4869, - "[steam_accounts_order_by!]" - ], - "where": [ - 4860 - ] - } - ], - "steam_accounts_aggregate": [ - 4857, - { - "distinct_on": [ - 4871, - "[steam_accounts_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4869, - "[steam_accounts_order_by!]" - ], - "where": [ - 4860 - ] - } - ], - "steam_accounts_by_pk": [ - 4856, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "system_alerts": [ - 4884, - { - "distinct_on": [ - 4898, - "[system_alerts_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4896, - "[system_alerts_order_by!]" - ], - "where": [ - 4888 - ] - } - ], - "system_alerts_aggregate": [ - 4885, - { - "distinct_on": [ - 4898, - "[system_alerts_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4896, - "[system_alerts_order_by!]" - ], - "where": [ - 4888 - ] - } - ], - "system_alerts_by_pk": [ - 4884, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "teamCalendarUrl": [ - 93, - { - "team_id": [ - 6672, - "uuid!" - ] - } - ], - "team_invites": [ - 4911, - { - "distinct_on": [ - 4932, - "[team_invites_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4930, - "[team_invites_order_by!]" - ], - "where": [ - 4920 - ] - } - ], - "team_invites_aggregate": [ - 4912, - { - "distinct_on": [ - 4932, - "[team_invites_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4930, - "[team_invites_order_by!]" - ], - "where": [ - 4920 - ] - } - ], - "team_invites_by_pk": [ - 4911, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "team_roster": [ - 4952, - { - "distinct_on": [ - 4975, - "[team_roster_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4973, - "[team_roster_order_by!]" - ], - "where": [ - 4963 - ] - } - ], - "team_roster_aggregate": [ - 4953, - { - "distinct_on": [ - 4975, - "[team_roster_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4973, - "[team_roster_order_by!]" - ], - "where": [ - 4963 - ] - } - ], - "team_roster_by_pk": [ - 4952, - { - "player_steam_id": [ - 312, - "bigint!" - ], - "team_id": [ - 6672, - "uuid!" - ] - } - ], - "team_scrim_alerts": [ - 4997, - { - "distinct_on": [ - 5011, - "[team_scrim_alerts_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5009, - "[team_scrim_alerts_order_by!]" - ], - "where": [ - 5001 - ] - } - ], - "team_scrim_alerts_aggregate": [ - 4998, - { - "distinct_on": [ - 5011, - "[team_scrim_alerts_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5009, - "[team_scrim_alerts_order_by!]" - ], - "where": [ - 5001 - ] - } - ], - "team_scrim_alerts_by_pk": [ - 4997, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "team_scrim_availability": [ - 5024, - { - "distinct_on": [ - 5044, - "[team_scrim_availability_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5042, - "[team_scrim_availability_order_by!]" - ], - "where": [ - 5033 - ] - } - ], - "team_scrim_availability_aggregate": [ - 5025, - { - "distinct_on": [ - 5044, - "[team_scrim_availability_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5042, - "[team_scrim_availability_order_by!]" - ], - "where": [ - 5033 - ] - } - ], - "team_scrim_availability_by_pk": [ - 5024, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "team_scrim_request_proposals": [ - 5052, - { - "distinct_on": [ - 5073, - "[team_scrim_request_proposals_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5071, - "[team_scrim_request_proposals_order_by!]" - ], - "where": [ - 5061 - ] - } - ], - "team_scrim_request_proposals_aggregate": [ - 5053, - { - "distinct_on": [ - 5073, - "[team_scrim_request_proposals_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5071, - "[team_scrim_request_proposals_order_by!]" - ], - "where": [ - 5061 - ] - } - ], - "team_scrim_request_proposals_by_pk": [ - 5052, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "team_scrim_requests": [ - 5093, - { - "distinct_on": [ - 5117, - "[team_scrim_requests_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5115, - "[team_scrim_requests_order_by!]" - ], - "where": [ - 5104 - ] - } - ], - "team_scrim_requests_aggregate": [ - 5094, - { - "distinct_on": [ - 5117, - "[team_scrim_requests_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5115, - "[team_scrim_requests_order_by!]" - ], - "where": [ - 5104 - ] - } - ], - "team_scrim_requests_by_pk": [ - 5093, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "team_scrim_settings": [ - 5139, - { - "distinct_on": [ - 5154, - "[team_scrim_settings_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5152, - "[team_scrim_settings_order_by!]" - ], - "where": [ - 5143 - ] - } - ], - "team_scrim_settings_aggregate": [ - 5140, - { - "distinct_on": [ - 5154, - "[team_scrim_settings_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5152, - "[team_scrim_settings_order_by!]" - ], - "where": [ - 5143 - ] - } - ], - "team_scrim_settings_by_pk": [ - 5139, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "team_suggestions": [ - 5167, - { - "distinct_on": [ - 5181, - "[team_suggestions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5179, - "[team_suggestions_order_by!]" - ], - "where": [ - 5171 - ] - } - ], - "team_suggestions_aggregate": [ - 5168, - { - "distinct_on": [ - 5181, - "[team_suggestions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5179, - "[team_suggestions_order_by!]" - ], - "where": [ - 5171 - ] - } - ], - "team_suggestions_by_pk": [ - 5167, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "teams": [ - 5194, - { - "distinct_on": [ - 5218, - "[teams_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5216, - "[teams_order_by!]" - ], - "where": [ - 5205 - ] - } - ], - "teams_aggregate": [ - 5195, - { - "distinct_on": [ - 5218, - "[teams_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5216, - "[teams_order_by!]" - ], - "where": [ - 5205 - ] - } - ], - "teams_by_pk": [ - 5194, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "telemetryStats": [ - 103, - { - "includeSelf": [ - 6 - ] - } - ], - "tournament_awards": [ - 5245, - { - "distinct_on": [ - 5267, - "[tournament_awards_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5265, - "[tournament_awards_order_by!]" - ], - "where": [ - 5254 - ] - } - ], - "tournament_awards_aggregate": [ - 5246, - { - "distinct_on": [ - 5267, - "[tournament_awards_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5265, - "[tournament_awards_order_by!]" - ], - "where": [ - 5254 - ] - } - ], - "tournament_awards_by_pk": [ - 5245, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "tournament_brackets": [ - 5287, - { - "distinct_on": [ - 5311, - "[tournament_brackets_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5309, - "[tournament_brackets_order_by!]" - ], - "where": [ - 5298 - ] - } - ], - "tournament_brackets_aggregate": [ - 5288, - { - "distinct_on": [ - 5311, - "[tournament_brackets_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5309, - "[tournament_brackets_order_by!]" - ], - "where": [ - 5298 - ] - } - ], - "tournament_brackets_by_pk": [ - 5287, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "tournament_categories": [ - 5333, - { - "distinct_on": [ - 5351, - "[tournament_categories_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5349, - "[tournament_categories_order_by!]" - ], - "where": [ - 5340 - ] - } - ], - "tournament_categories_aggregate": [ - 5334, - { - "distinct_on": [ - 5351, - "[tournament_categories_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5349, - "[tournament_categories_order_by!]" - ], - "where": [ - 5340 - ] - } - ], - "tournament_categories_by_pk": [ - 5333, - { - "category": [ - 1554, - "e_tournament_categories_enum!" - ], - "tournament_id": [ - 6672, - "uuid!" - ] - } - ], - "tournament_free_agents": [ - 5357, - { - "distinct_on": [ - 5378, - "[tournament_free_agents_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5376, - "[tournament_free_agents_order_by!]" - ], - "where": [ - 5366 - ] - } - ], - "tournament_free_agents_aggregate": [ - 5358, - { - "distinct_on": [ - 5378, - "[tournament_free_agents_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5376, - "[tournament_free_agents_order_by!]" - ], - "where": [ - 5366 - ] - } - ], - "tournament_free_agents_by_pk": [ - 5357, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "tournament_invite_code_uses": [ - 5398, - { - "distinct_on": [ - 5419, - "[tournament_invite_code_uses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5417, - "[tournament_invite_code_uses_order_by!]" - ], - "where": [ - 5407 - ] - } - ], - "tournament_invite_code_uses_aggregate": [ - 5399, - { - "distinct_on": [ - 5419, - "[tournament_invite_code_uses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5417, - "[tournament_invite_code_uses_order_by!]" - ], - "where": [ - 5407 - ] - } - ], - "tournament_invite_code_uses_by_pk": [ - 5398, - { - "invite_code_id": [ - 6672, - "uuid!" - ], - "player_steam_id": [ - 312, - "bigint!" - ] - } - ], - "tournament_invite_codes": [ - 5439, - { - "distinct_on": [ - 5454, - "[tournament_invite_codes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5452, - "[tournament_invite_codes_order_by!]" - ], - "where": [ - 5443 - ] - } - ], - "tournament_invite_codes_aggregate": [ - 5440, - { - "distinct_on": [ - 5454, - "[tournament_invite_codes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5452, - "[tournament_invite_codes_order_by!]" - ], - "where": [ - 5443 - ] - } - ], - "tournament_invite_codes_by_pk": [ - 5439, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "tournament_invites": [ - 5467, - { - "distinct_on": [ - 5481, - "[tournament_invites_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5479, - "[tournament_invites_order_by!]" - ], - "where": [ - 5471 - ] - } - ], - "tournament_invites_aggregate": [ - 5468, - { - "distinct_on": [ - 5481, - "[tournament_invites_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5479, - "[tournament_invites_order_by!]" - ], - "where": [ - 5471 - ] - } - ], - "tournament_invites_by_pk": [ - 5467, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "tournament_leaderboard_entries": [ - 5494, - { - "distinct_on": [ - 5505, - "[tournament_leaderboard_entries_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5504, - "[tournament_leaderboard_entries_order_by!]" - ], - "where": [ - 5498 - ] - } - ], - "tournament_leaderboard_entries_aggregate": [ - 5495, - { - "distinct_on": [ - 5505, - "[tournament_leaderboard_entries_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5504, - "[tournament_leaderboard_entries_order_by!]" - ], - "where": [ - 5498 - ] - } - ], - "tournament_no_shows": [ - 5517, - { - "distinct_on": [ - 5531, - "[tournament_no_shows_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5529, - "[tournament_no_shows_order_by!]" - ], - "where": [ - 5521 - ] - } - ], - "tournament_no_shows_aggregate": [ - 5518, - { - "distinct_on": [ - 5531, - "[tournament_no_shows_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5529, - "[tournament_no_shows_order_by!]" - ], - "where": [ - 5521 - ] - } - ], - "tournament_no_shows_by_pk": [ - 5517, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "tournament_organizer_teams": [ - 5544, - { - "distinct_on": [ - 5562, - "[tournament_organizer_teams_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5560, - "[tournament_organizer_teams_order_by!]" - ], - "where": [ - 5551 - ] - } - ], - "tournament_organizer_teams_aggregate": [ - 5545, - { - "distinct_on": [ - 5562, - "[tournament_organizer_teams_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5560, - "[tournament_organizer_teams_order_by!]" - ], - "where": [ - 5551 - ] - } - ], - "tournament_organizer_teams_by_pk": [ - 5544, - { - "team_id": [ - 6672, - "uuid!" - ], - "tournament_id": [ - 6672, - "uuid!" - ] - } - ], - "tournament_organizers": [ - 5568, - { - "distinct_on": [ - 5589, - "[tournament_organizers_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5587, - "[tournament_organizers_order_by!]" - ], - "where": [ - 5577 - ] - } - ], - "tournament_organizers_aggregate": [ - 5569, - { - "distinct_on": [ - 5589, - "[tournament_organizers_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5587, - "[tournament_organizers_order_by!]" - ], - "where": [ - 5577 - ] - } - ], - "tournament_organizers_by_pk": [ - 5568, - { - "steam_id": [ - 312, - "bigint!" - ], - "tournament_id": [ - 6672, - "uuid!" - ] - } - ], - "tournament_prizes": [ - 5609, - { - "distinct_on": [ - 5630, - "[tournament_prizes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5628, - "[tournament_prizes_order_by!]" - ], - "where": [ - 5618 - ] - } - ], - "tournament_prizes_aggregate": [ - 5610, - { - "distinct_on": [ - 5630, - "[tournament_prizes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5628, - "[tournament_prizes_order_by!]" - ], - "where": [ - 5618 - ] - } - ], - "tournament_prizes_by_pk": [ - 5609, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "tournament_registration_unlocks": [ - 5650, - { - "distinct_on": [ - 5663, - "[tournament_registration_unlocks_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5662, - "[tournament_registration_unlocks_order_by!]" - ], - "where": [ - 5654 - ] - } - ], - "tournament_registration_unlocks_aggregate": [ - 5651, - { - "distinct_on": [ - 5663, - "[tournament_registration_unlocks_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5662, - "[tournament_registration_unlocks_order_by!]" - ], - "where": [ - 5654 - ] - } - ], - "tournament_stage_windows": [ - 5676, - { - "distinct_on": [ - 5697, - "[tournament_stage_windows_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5695, - "[tournament_stage_windows_order_by!]" - ], - "where": [ - 5685 - ] - } - ], - "tournament_stage_windows_aggregate": [ - 5677, - { - "distinct_on": [ - 5697, - "[tournament_stage_windows_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5695, - "[tournament_stage_windows_order_by!]" - ], - "where": [ - 5685 - ] - } - ], - "tournament_stage_windows_by_pk": [ - 5676, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "tournament_stages": [ - 5717, - { - "distinct_on": [ - 5746, - "[tournament_stages_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5743, - "[tournament_stages_order_by!]" - ], - "where": [ - 5729 - ] - } - ], - "tournament_stages_aggregate": [ - 5718, - { - "distinct_on": [ - 5746, - "[tournament_stages_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5743, - "[tournament_stages_order_by!]" - ], - "where": [ - 5729 - ] - } - ], - "tournament_stages_by_pk": [ - 5717, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "tournament_team_invites": [ - 5768, - { - "distinct_on": [ - 5789, - "[tournament_team_invites_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5787, - "[tournament_team_invites_order_by!]" - ], - "where": [ - 5777 - ] - } - ], - "tournament_team_invites_aggregate": [ - 5769, - { - "distinct_on": [ - 5789, - "[tournament_team_invites_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5787, - "[tournament_team_invites_order_by!]" - ], - "where": [ - 5777 - ] - } - ], - "tournament_team_invites_by_pk": [ - 5768, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "tournament_team_roster": [ - 5809, - { - "distinct_on": [ - 5830, - "[tournament_team_roster_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5828, - "[tournament_team_roster_order_by!]" - ], - "where": [ - 5818 - ] - } - ], - "tournament_team_roster_aggregate": [ - 5810, - { - "distinct_on": [ - 5830, - "[tournament_team_roster_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5828, - "[tournament_team_roster_order_by!]" - ], - "where": [ - 5818 - ] - } - ], - "tournament_team_roster_by_pk": [ - 5809, - { - "player_steam_id": [ - 312, - "bigint!" - ], - "tournament_id": [ - 6672, - "uuid!" - ] - } - ], - "tournament_teams": [ - 5850, - { - "distinct_on": [ - 5874, - "[tournament_teams_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5872, - "[tournament_teams_order_by!]" - ], - "where": [ - 5861 - ] - } - ], - "tournament_teams_aggregate": [ - 5851, - { - "distinct_on": [ - 5874, - "[tournament_teams_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5872, - "[tournament_teams_order_by!]" - ], - "where": [ - 5861 - ] - } - ], - "tournament_teams_by_pk": [ - 5850, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "tournaments": [ - 5896, - { - "distinct_on": [ - 5930, - "[tournaments_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5928, - "[tournaments_order_by!]" - ], - "where": [ - 5917 - ] - } - ], - "tournaments_aggregate": [ - 5897, - { - "distinct_on": [ - 5930, - "[tournaments_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5928, - "[tournaments_order_by!]" - ], - "where": [ - 5917 - ] - } - ], - "tournaments_by_pk": [ - 5896, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "utilityLineupMissPattern": [ - 125, - { - "utility_lineup_id": [ - 6672, - "uuid!" - ] - } - ], - "utilityMatchUtilityReport": [ - 150, - { - "match_id": [ - 6672, - "uuid!" - ], - "steam_id": [ - 85 - ] - } - ], - "utilityPracticePlan": [ - 134, - { - "limit": [ - 41 - ], - "map_name": [ - 85, - "String!" - ], - "order": [ - 85 - ], - "side": [ - 85 - ] - } - ], - "utilityPracticeServers": [ - 136 - ], - "utilityPracticeWhereAmI": [ - 138 - ], - "utilitySolverCalibration": [ - 117, - { - "session_id": [ - 6672, - "uuid!" - ] - } - ], - "utilityTeamUtilityReport": [ - 149, - { - "limit": [ - 41 - ], - "map_name": [ - 85 - ], - "team_id": [ - 6672, - "uuid!" - ] - } - ], - "utility_collection_items": [ - 5960, - { - "distinct_on": [ - 5981, - "[utility_collection_items_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5979, - "[utility_collection_items_order_by!]" - ], - "where": [ - 5969 - ] - } - ], - "utility_collection_items_aggregate": [ - 5961, - { - "distinct_on": [ - 5981, - "[utility_collection_items_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5979, - "[utility_collection_items_order_by!]" - ], - "where": [ - 5969 - ] - } - ], - "utility_collection_items_by_pk": [ - 5960, - { - "collection_id": [ - 6672, - "uuid!" - ], - "utility_lineup_id": [ - 6672, - "uuid!" - ] - } - ], - "utility_collections": [ - 6001, - { - "distinct_on": [ - 6016, - "[utility_collections_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6014, - "[utility_collections_order_by!]" - ], - "where": [ - 6005 - ] - } - ], - "utility_collections_aggregate": [ - 6002, - { - "distinct_on": [ - 6016, - "[utility_collections_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6014, - "[utility_collections_order_by!]" - ], - "where": [ - 6005 - ] - } - ], - "utility_collections_by_pk": [ - 6001, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "utility_demo_mines": [ - 6029, - { - "distinct_on": [ - 6043, - "[utility_demo_mines_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6041, - "[utility_demo_mines_order_by!]" - ], - "where": [ - 6033 - ] - } - ], - "utility_demo_mines_aggregate": [ - 6030, - { - "distinct_on": [ - 6043, - "[utility_demo_mines_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6041, - "[utility_demo_mines_order_by!]" - ], - "where": [ - 6033 - ] - } - ], - "utility_demo_mines_by_pk": [ - 6029, - { - "match_map_demo_id": [ - 6672, - "uuid!" - ] - } - ], - "utility_demo_throws": [ - 6056, - { - "distinct_on": [ - 6070, - "[utility_demo_throws_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6068, - "[utility_demo_throws_order_by!]" - ], - "where": [ - 6060 - ] - } - ], - "utility_demo_throws_aggregate": [ - 6057, - { - "distinct_on": [ - 6070, - "[utility_demo_throws_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6068, - "[utility_demo_throws_order_by!]" - ], - "where": [ - 6060 - ] - } - ], - "utility_demo_throws_by_pk": [ - 6056, - { - "grenade_id": [ - 41, - "Int!" - ], - "match_map_demo_id": [ - 6672, - "uuid!" - ] - } - ], - "utility_drift_results": [ - 6083, - { - "distinct_on": [ - 6114, - "[utility_drift_results_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6112, - "[utility_drift_results_order_by!]" - ], - "where": [ - 6102 - ] - } - ], - "utility_drift_results_aggregate": [ - 6084, - { - "distinct_on": [ - 6114, - "[utility_drift_results_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6112, - "[utility_drift_results_order_by!]" - ], - "where": [ - 6102 - ] - } - ], - "utility_drift_results_by_pk": [ - 6083, - { - "utility_drift_scan_id": [ - 6672, - "uuid!" - ], - "utility_lineup_id": [ - 6672, - "uuid!" - ] - } - ], - "utility_drift_scans": [ - 6142, - { - "distinct_on": [ - 6157, - "[utility_drift_scans_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6155, - "[utility_drift_scans_order_by!]" - ], - "where": [ - 6146 - ] - } - ], - "utility_drift_scans_aggregate": [ - 6143, - { - "distinct_on": [ - 6157, - "[utility_drift_scans_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6155, - "[utility_drift_scans_order_by!]" - ], - "where": [ - 6146 - ] - } - ], - "utility_drift_scans_by_pk": [ - 6142, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "utility_lineup_favorites": [ - 6170, - { - "distinct_on": [ - 6191, - "[utility_lineup_favorites_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6189, - "[utility_lineup_favorites_order_by!]" - ], - "where": [ - 6179 - ] - } - ], - "utility_lineup_favorites_aggregate": [ - 6171, - { - "distinct_on": [ - 6191, - "[utility_lineup_favorites_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6189, - "[utility_lineup_favorites_order_by!]" - ], - "where": [ - 6179 - ] - } - ], - "utility_lineup_favorites_by_pk": [ - 6170, - { - "steam_id": [ - 312, - "bigint!" - ], - "utility_lineup_id": [ - 6672, - "uuid!" - ] - } - ], - "utility_lineup_progress": [ - 6211, - { - "distinct_on": [ - 6242, - "[utility_lineup_progress_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6240, - "[utility_lineup_progress_order_by!]" - ], - "where": [ - 6230 - ] - } - ], - "utility_lineup_progress_aggregate": [ - 6212, - { - "distinct_on": [ - 6242, - "[utility_lineup_progress_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6240, - "[utility_lineup_progress_order_by!]" - ], - "where": [ - 6230 - ] - } - ], - "utility_lineup_progress_by_pk": [ - 6211, - { - "steam_id": [ - 312, - "bigint!" - ], - "utility_lineup_id": [ - 6672, - "uuid!" - ] - } - ], - "utility_lineup_renders": [ - 6270, - { - "distinct_on": [ - 6298, - "[utility_lineup_renders_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6295, - "[utility_lineup_renders_order_by!]" - ], - "where": [ - 6282 - ] - } - ], - "utility_lineup_renders_aggregate": [ - 6271, - { - "distinct_on": [ - 6298, - "[utility_lineup_renders_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6295, - "[utility_lineup_renders_order_by!]" - ], - "where": [ - 6282 - ] - } - ], - "utility_lineup_renders_by_pk": [ - 6270, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "utility_lineup_repairs": [ - 6320, - { - "distinct_on": [ - 6351, - "[utility_lineup_repairs_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6349, - "[utility_lineup_repairs_order_by!]" - ], - "where": [ - 6339 - ] - } - ], - "utility_lineup_repairs_aggregate": [ - 6321, - { - "distinct_on": [ - 6351, - "[utility_lineup_repairs_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6349, - "[utility_lineup_repairs_order_by!]" - ], - "where": [ - 6339 - ] - } - ], - "utility_lineup_repairs_by_pk": [ - 6320, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "utility_lineup_votes": [ - 6379, - { - "distinct_on": [ - 6400, - "[utility_lineup_votes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6398, - "[utility_lineup_votes_order_by!]" - ], - "where": [ - 6388 - ] - } - ], - "utility_lineup_votes_aggregate": [ - 6380, - { - "distinct_on": [ - 6400, - "[utility_lineup_votes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6398, - "[utility_lineup_votes_order_by!]" - ], - "where": [ - 6388 - ] - } - ], - "utility_lineup_votes_by_pk": [ - 6379, - { - "steam_id": [ - 312, - "bigint!" - ], - "utility_lineup_id": [ - 6672, - "uuid!" - ] - } - ], - "utility_lineups": [ - 6420, - { - "distinct_on": [ - 6459, - "[utility_lineups_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6456, - "[utility_lineups_order_by!]" - ], - "where": [ - 6442 - ] - } - ], - "utility_lineups_aggregate": [ - 6421, - { - "distinct_on": [ - 6459, - "[utility_lineups_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6456, - "[utility_lineups_order_by!]" - ], - "where": [ - 6442 - ] - } - ], - "utility_lineups_by_pk": [ - 6420, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "utility_meta_lineups": [ - 6489, - { - "distinct_on": [ - 6503, - "[utility_meta_lineups_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6501, - "[utility_meta_lineups_order_by!]" - ], - "where": [ - 6493 - ] - } - ], - "utility_meta_lineups_aggregate": [ - 6490, - { - "distinct_on": [ - 6503, - "[utility_meta_lineups_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6501, - "[utility_meta_lineups_order_by!]" - ], - "where": [ - 6493 - ] - } - ], - "utility_meta_lineups_by_pk": [ - 6489, - { - "lineup_bucket": [ - 85, - "String!" - ] - } - ], - "utility_playbook_steps": [ - 6516, - { - "distinct_on": [ - 6537, - "[utility_playbook_steps_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6535, - "[utility_playbook_steps_order_by!]" - ], - "where": [ - 6525 - ] - } - ], - "utility_playbook_steps_aggregate": [ - 6517, - { - "distinct_on": [ - 6537, - "[utility_playbook_steps_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6535, - "[utility_playbook_steps_order_by!]" - ], - "where": [ - 6525 - ] - } - ], - "utility_playbook_steps_by_pk": [ - 6516, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "utility_playbooks": [ - 6557, - { - "distinct_on": [ - 6572, - "[utility_playbooks_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6570, - "[utility_playbooks_order_by!]" - ], - "where": [ - 6561 - ] - } - ], - "utility_playbooks_aggregate": [ - 6558, - { - "distinct_on": [ - 6572, - "[utility_playbooks_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6570, - "[utility_playbooks_order_by!]" - ], - "where": [ - 6561 - ] - } - ], - "utility_playbooks_by_pk": [ - 6557, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "utility_practice_invites": [ - 6585, - { - "distinct_on": [ - 6606, - "[utility_practice_invites_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6604, - "[utility_practice_invites_order_by!]" - ], - "where": [ - 6594 - ] - } - ], - "utility_practice_invites_aggregate": [ - 6586, - { - "distinct_on": [ - 6606, - "[utility_practice_invites_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6604, - "[utility_practice_invites_order_by!]" - ], - "where": [ - 6594 - ] - } - ], - "utility_practice_invites_by_pk": [ - 6585, - { - "steam_id": [ - 312, - "bigint!" - ], - "utility_practice_session_id": [ - 6672, - "uuid!" - ] - } - ], - "utility_practice_sessions": [ - 6626, - { - "distinct_on": [ - 6650, - "[utility_practice_sessions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6648, - "[utility_practice_sessions_order_by!]" - ], - "where": [ - 6637 - ] - } - ], - "utility_practice_sessions_aggregate": [ - 6627, - { - "distinct_on": [ - 6650, - "[utility_practice_sessions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6648, - "[utility_practice_sessions_order_by!]" - ], - "where": [ - 6637 - ] - } - ], - "utility_practice_sessions_by_pk": [ - 6626, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "v_event_player_stats": [ - 6675, - { - "distinct_on": [ - 6701, - "[v_event_player_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6700, - "[v_event_player_stats_order_by!]" - ], - "where": [ - 6694 - ] - } - ], - "v_event_player_stats_aggregate": [ - 6676, - { - "distinct_on": [ - 6701, - "[v_event_player_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6700, - "[v_event_player_stats_order_by!]" - ], - "where": [ - 6694 - ] - } - ], - "v_gpu_pool_status": [ - 6726, - { - "distinct_on": [ - 6734, - "[v_gpu_pool_status_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6733, - "[v_gpu_pool_status_order_by!]" - ], - "where": [ - 6730 - ] - } - ], - "v_gpu_pool_status_aggregate": [ - 6727, - { - "distinct_on": [ - 6734, - "[v_gpu_pool_status_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6733, - "[v_gpu_pool_status_order_by!]" - ], - "where": [ - 6730 - ] - } - ], - "v_league_division_standings": [ - 6744, - { - "distinct_on": [ - 6760, - "[v_league_division_standings_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6759, - "[v_league_division_standings_order_by!]" - ], - "where": [ - 6753 - ] - } - ], - "v_league_division_standings_aggregate": [ - 6745, - { - "distinct_on": [ - 6760, - "[v_league_division_standings_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6759, - "[v_league_division_standings_order_by!]" - ], - "where": [ - 6753 - ] - } - ], - "v_league_season_player_stats": [ - 6777, - { - "distinct_on": [ - 6803, - "[v_league_season_player_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6802, - "[v_league_season_player_stats_order_by!]" - ], - "where": [ - 6796 - ] - } - ], - "v_league_season_player_stats_aggregate": [ - 6778, - { - "distinct_on": [ - 6803, - "[v_league_season_player_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6802, - "[v_league_season_player_stats_order_by!]" - ], - "where": [ - 6796 - ] - } - ], - "v_match_captains": [ - 6828, - { - "distinct_on": [ - 6840, - "[v_match_captains_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6839, - "[v_match_captains_order_by!]" - ], - "where": [ - 6832 - ] - } - ], - "v_match_captains_aggregate": [ - 6829, - { - "distinct_on": [ - 6840, - "[v_match_captains_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6839, - "[v_match_captains_order_by!]" - ], - "where": [ - 6832 - ] - } - ], - "v_match_clutches": [ - 6852, - { - "distinct_on": [ - 6868, - "[v_match_clutches_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6867, - "[v_match_clutches_order_by!]" - ], - "where": [ - 6861 - ] - } - ], - "v_match_clutches_aggregate": [ - 6853, - { - "distinct_on": [ - 6868, - "[v_match_clutches_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6867, - "[v_match_clutches_order_by!]" - ], - "where": [ - 6861 - ] - } - ], - "v_match_kill_pairs": [ - 6885, - { - "distinct_on": [ - 6893, - "[v_match_kill_pairs_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6892, - "[v_match_kill_pairs_order_by!]" - ], - "where": [ - 6889 - ] - } - ], - "v_match_kill_pairs_aggregate": [ - 6886, - { - "distinct_on": [ - 6893, - "[v_match_kill_pairs_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6892, - "[v_match_kill_pairs_order_by!]" - ], - "where": [ - 6889 - ] - } - ], - "v_match_lineup_buy_types": [ - 6903, - { - "distinct_on": [ - 6911, - "[v_match_lineup_buy_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6910, - "[v_match_lineup_buy_types_order_by!]" - ], - "where": [ - 6907 - ] - } - ], - "v_match_lineup_buy_types_aggregate": [ - 6904, - { - "distinct_on": [ - 6911, - "[v_match_lineup_buy_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6910, - "[v_match_lineup_buy_types_order_by!]" - ], - "where": [ - 6907 - ] - } - ], - "v_match_lineup_map_stats": [ - 6921, - { - "distinct_on": [ - 6929, - "[v_match_lineup_map_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6928, - "[v_match_lineup_map_stats_order_by!]" - ], - "where": [ - 6925 - ] - } - ], - "v_match_lineup_map_stats_aggregate": [ - 6922, - { - "distinct_on": [ - 6929, - "[v_match_lineup_map_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6928, - "[v_match_lineup_map_stats_order_by!]" - ], - "where": [ - 6925 - ] - } - ], - "v_match_map_backup_rounds": [ - 6939, - { - "distinct_on": [ - 6950, - "[v_match_map_backup_rounds_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6949, - "[v_match_map_backup_rounds_order_by!]" - ], - "where": [ - 6943 - ] - } - ], - "v_match_map_backup_rounds_aggregate": [ - 6940, - { - "distinct_on": [ - 6950, - "[v_match_map_backup_rounds_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6949, - "[v_match_map_backup_rounds_order_by!]" - ], - "where": [ - 6943 - ] - } - ], - "v_match_player_buy_types": [ - 6962, - { - "distinct_on": [ - 6970, - "[v_match_player_buy_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6969, - "[v_match_player_buy_types_order_by!]" - ], - "where": [ - 6966 - ] - } - ], - "v_match_player_buy_types_aggregate": [ - 6963, - { - "distinct_on": [ - 6970, - "[v_match_player_buy_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6969, - "[v_match_player_buy_types_order_by!]" - ], - "where": [ - 6966 - ] - } - ], - "v_match_player_opening_duels": [ - 6980, - { - "distinct_on": [ - 6996, - "[v_match_player_opening_duels_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6995, - "[v_match_player_opening_duels_order_by!]" - ], - "where": [ - 6989 - ] - } - ], - "v_match_player_opening_duels_aggregate": [ - 6981, - { - "distinct_on": [ - 6996, - "[v_match_player_opening_duels_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6995, - "[v_match_player_opening_duels_order_by!]" - ], - "where": [ - 6989 - ] - } - ], - "v_player_arch_nemesis": [ - 7013, - { - "distinct_on": [ - 7021, - "[v_player_arch_nemesis_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7020, - "[v_player_arch_nemesis_order_by!]" - ], - "where": [ - 7017 - ] - } - ], - "v_player_arch_nemesis_aggregate": [ - 7014, - { - "distinct_on": [ - 7021, - "[v_player_arch_nemesis_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7020, - "[v_player_arch_nemesis_order_by!]" - ], - "where": [ - 7017 - ] - } - ], - "v_player_damage": [ - 7031, - { - "distinct_on": [ - 7039, - "[v_player_damage_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7038, - "[v_player_damage_order_by!]" - ], - "where": [ - 7035 - ] - } - ], - "v_player_damage_aggregate": [ - 7032, - { - "distinct_on": [ - 7039, - "[v_player_damage_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7038, - "[v_player_damage_order_by!]" - ], - "where": [ - 7035 - ] - } - ], - "v_player_elo": [ - 7049, - { - "distinct_on": [ - 7075, - "[v_player_elo_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7074, - "[v_player_elo_order_by!]" - ], - "where": [ - 7068 - ] - } - ], - "v_player_elo_aggregate": [ - 7050, - { - "distinct_on": [ - 7075, - "[v_player_elo_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7074, - "[v_player_elo_order_by!]" - ], - "where": [ - 7068 - ] - } - ], - "v_player_map_losses": [ - 7100, - { - "distinct_on": [ - 7108, - "[v_player_map_losses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7107, - "[v_player_map_losses_order_by!]" - ], - "where": [ - 7104 - ] - } - ], - "v_player_map_losses_aggregate": [ - 7101, - { - "distinct_on": [ - 7108, - "[v_player_map_losses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7107, - "[v_player_map_losses_order_by!]" - ], - "where": [ - 7104 - ] - } - ], - "v_player_map_wins": [ - 7118, - { - "distinct_on": [ - 7126, - "[v_player_map_wins_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7125, - "[v_player_map_wins_order_by!]" - ], - "where": [ - 7122 - ] - } - ], - "v_player_map_wins_aggregate": [ - 7119, - { - "distinct_on": [ - 7126, - "[v_player_map_wins_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7125, - "[v_player_map_wins_order_by!]" - ], - "where": [ - 7122 - ] - } - ], - "v_player_match_head_to_head": [ - 7136, - { - "distinct_on": [ - 7144, - "[v_player_match_head_to_head_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7143, - "[v_player_match_head_to_head_order_by!]" - ], - "where": [ - 7140 - ] - } - ], - "v_player_match_head_to_head_aggregate": [ - 7137, - { - "distinct_on": [ - 7144, - "[v_player_match_head_to_head_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7143, - "[v_player_match_head_to_head_order_by!]" - ], - "where": [ - 7140 - ] - } - ], - "v_player_match_map_hltv": [ - 7154, - { - "distinct_on": [ - 7172, - "[v_player_match_map_hltv_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7171, - "[v_player_match_map_hltv_order_by!]" - ], - "where": [ - 7163 - ] - } - ], - "v_player_match_map_hltv_aggregate": [ - 7155, - { - "distinct_on": [ - 7172, - "[v_player_match_map_hltv_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7171, - "[v_player_match_map_hltv_order_by!]" - ], - "where": [ - 7163 - ] - } - ], - "v_player_match_map_roles": [ - 7191, - { - "distinct_on": [ - 7199, - "[v_player_match_map_roles_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7198, - "[v_player_match_map_roles_order_by!]" - ], - "where": [ - 7195 - ] - } - ], - "v_player_match_map_roles_aggregate": [ - 7192, - { - "distinct_on": [ - 7199, - "[v_player_match_map_roles_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7198, - "[v_player_match_map_roles_order_by!]" - ], - "where": [ - 7195 - ] - } - ], - "v_player_match_performance": [ - 7209, - { - "distinct_on": [ - 7217, - "[v_player_match_performance_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7216, - "[v_player_match_performance_order_by!]" - ], - "where": [ - 7213 - ] - } - ], - "v_player_match_performance_aggregate": [ - 7210, - { - "distinct_on": [ - 7217, - "[v_player_match_performance_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7216, - "[v_player_match_performance_order_by!]" - ], - "where": [ - 7213 - ] - } - ], - "v_player_match_rating": [ - 7227, - { - "distinct_on": [ - 7235, - "[v_player_match_rating_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7234, - "[v_player_match_rating_order_by!]" - ], - "where": [ - 7231 - ] - } - ], - "v_player_match_rating_aggregate": [ - 7228, - { - "distinct_on": [ - 7235, - "[v_player_match_rating_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7234, - "[v_player_match_rating_order_by!]" - ], - "where": [ - 7231 - ] - } - ], - "v_player_multi_kills": [ - 7245, - { - "distinct_on": [ - 7261, - "[v_player_multi_kills_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7260, - "[v_player_multi_kills_order_by!]" - ], - "where": [ - 7254 - ] - } - ], - "v_player_multi_kills_aggregate": [ - 7246, - { - "distinct_on": [ - 7261, - "[v_player_multi_kills_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7260, - "[v_player_multi_kills_order_by!]" - ], - "where": [ - 7254 - ] - } - ], - "v_player_queue_partners": [ - 7278, - { - "distinct_on": [ - 7286, - "[v_player_queue_partners_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7285, - "[v_player_queue_partners_order_by!]" - ], - "where": [ - 7282 - ] - } - ], - "v_player_queue_partners_aggregate": [ - 7279, - { - "distinct_on": [ - 7286, - "[v_player_queue_partners_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7285, - "[v_player_queue_partners_order_by!]" - ], - "where": [ - 7282 - ] - } - ], - "v_player_weapon_damage": [ - 7296, - { - "distinct_on": [ - 7304, - "[v_player_weapon_damage_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7303, - "[v_player_weapon_damage_order_by!]" - ], - "where": [ - 7300 - ] - } - ], - "v_player_weapon_damage_aggregate": [ - 7297, - { - "distinct_on": [ - 7304, - "[v_player_weapon_damage_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7303, - "[v_player_weapon_damage_order_by!]" - ], - "where": [ - 7300 - ] - } - ], - "v_player_weapon_kills": [ - 7314, - { - "distinct_on": [ - 7322, - "[v_player_weapon_kills_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7321, - "[v_player_weapon_kills_order_by!]" - ], - "where": [ - 7318 - ] - } - ], - "v_player_weapon_kills_aggregate": [ - 7315, - { - "distinct_on": [ - 7322, - "[v_player_weapon_kills_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7321, - "[v_player_weapon_kills_order_by!]" - ], - "where": [ - 7318 - ] - } - ], - "v_pool_maps": [ - 7332, - { - "distinct_on": [ - 7349, - "[v_pool_maps_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7348, - "[v_pool_maps_order_by!]" - ], - "where": [ - 7341 - ] - } - ], - "v_pool_maps_aggregate": [ - 7333, - { - "distinct_on": [ - 7349, - "[v_pool_maps_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7348, - "[v_pool_maps_order_by!]" - ], - "where": [ - 7341 - ] - } - ], - "v_steam_account_pool_status": [ - 7356, - { - "distinct_on": [ - 7364, - "[v_steam_account_pool_status_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7363, - "[v_steam_account_pool_status_order_by!]" - ], - "where": [ - 7360 - ] - } - ], - "v_steam_account_pool_status_aggregate": [ - 7357, - { - "distinct_on": [ - 7364, - "[v_steam_account_pool_status_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7363, - "[v_steam_account_pool_status_order_by!]" - ], - "where": [ - 7360 - ] - } - ], - "v_team_ranks": [ - 7374, - { - "distinct_on": [ - 7384, - "[v_team_ranks_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7383, - "[v_team_ranks_order_by!]" - ], - "where": [ - 7378 - ] - } - ], - "v_team_ranks_aggregate": [ - 7375, - { - "distinct_on": [ - 7384, - "[v_team_ranks_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7383, - "[v_team_ranks_order_by!]" - ], - "where": [ - 7378 - ] - } - ], - "v_team_reputation": [ - 7394, - { - "distinct_on": [ - 7404, - "[v_team_reputation_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7403, - "[v_team_reputation_order_by!]" - ], - "where": [ - 7398 - ] - } - ], - "v_team_reputation_aggregate": [ - 7395, - { - "distinct_on": [ - 7404, - "[v_team_reputation_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7403, - "[v_team_reputation_order_by!]" - ], - "where": [ - 7398 - ] - } - ], - "v_team_stage_results": [ - 7414, - { - "distinct_on": [ - 7446, - "[v_team_stage_results_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7444, - "[v_team_stage_results_order_by!]" - ], - "where": [ - 7433 - ] - } - ], - "v_team_stage_results_aggregate": [ - 7415, - { - "distinct_on": [ - 7446, - "[v_team_stage_results_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7444, - "[v_team_stage_results_order_by!]" - ], - "where": [ - 7433 - ] - } - ], - "v_team_stage_results_by_pk": [ - 7414, - { - "tournament_stage_id": [ - 6672, - "uuid!" - ], - "tournament_team_id": [ - 6672, - "uuid!" - ] - } - ], - "v_team_tournament_results": [ - 7474, - { - "distinct_on": [ - 7500, - "[v_team_tournament_results_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7499, - "[v_team_tournament_results_order_by!]" - ], - "where": [ - 7493 - ] - } - ], - "v_team_tournament_results_aggregate": [ - 7475, - { - "distinct_on": [ - 7500, - "[v_team_tournament_results_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7499, - "[v_team_tournament_results_order_by!]" - ], - "where": [ - 7493 - ] - } - ], - "v_tournament_player_stats": [ - 7525, - { - "distinct_on": [ - 7551, - "[v_tournament_player_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7550, - "[v_tournament_player_stats_order_by!]" - ], - "where": [ - 7544 - ] - } - ], - "v_tournament_player_stats_aggregate": [ - 7526, - { - "distinct_on": [ - 7551, - "[v_tournament_player_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7550, - "[v_tournament_player_stats_order_by!]" - ], - "where": [ - 7544 - ] - } - ], - "webPushStatus": [ - 154 - ], - "__typename": [ - 85 - ] - }, - "Mutation": { - "PreviewTournamentMatchReset": [ - 61, - { - "match_id": [ - 6672, - "uuid!" - ] - } - ], - "ResetTournamentMatch": [ - 88, - { - "match_id": [ - 6672, - "uuid!" - ], - "reset_status": [ - 85 - ], - "scheduled_at": [ - 5243 - ], - "winning_lineup_id": [ - 6672 - ] - } - ], - "acceptInvite": [ - 88, - { - "invite_id": [ - 6672, - "uuid!" - ], - "type": [ - 85, - "String!" - ] - } - ], - "addCustomGamePlugin": [ - 2, - { - "description": [ - 85 - ], - "installPath": [ - 85 - ], - "layout": [ - 85 - ], - "name": [ - 85 - ], - "runtime": [ - 85, - "String!" - ], - "slug": [ - 85 - ], - "url": [ - 85, - "String!" - ], - "version": [ - 85 - ] - } - ], - "addDraftPlayer": [ - 88, - { - "draftGameId": [ - 6672, - "uuid!" - ], - "lineup": [ - 41 - ], - "steamId": [ - 85, - "String!" - ] - } - ], - "addSteamPresenceBotAccount": [ - 88, - { - "bot_secret": [ - 85, - "String!" - ], - "friend_capacity": [ - 41 - ], - "username": [ - 85, - "String!" - ] - } - ], - "approveNameChange": [ - 88, - { - "name": [ - 85, - "String!" - ], - "steam_id": [ - 312, - "bigint!" - ] - } - ], - "approve_league_season_movements": [ - 2675, - { - "args": [ - 242, - "approve_league_season_movements_args!" - ], - "distinct_on": [ - 2696, - "[league_team_movements_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2694, - "[league_team_movements_order_by!]" - ], - "where": [ - 2684 - ] - } - ], - "assignSteamPresenceBot": [ - 81 - ], - "attachDemo": [ - 152 - ], - "backfillSeasonElo": [ - 64, - { - "season_id": [ - 85, - "String!" - ] - } - ], - "backfillSeasonEloStatus": [ - 74 - ], - "backfillUtilityLaunchSeeds": [ - 122, - { - "limit": [ - 41 - ] - } - ], - "bakeShaders": [ - 88, - { - "game_server_node_id": [ - 6672, - "uuid!" - ] - } - ], - "callForOrganizer": [ - 88, - { - "match_id": [ - 85, - "String!" - ] - } - ], - "cancelBackfillSeasonElo": [ - 88 - ], - "cancelBakeShaders": [ - 88, - { - "game_server_node_id": [ - 6672, - "uuid!" - ] - } - ], - "cancelClipRender": [ - 88, - { - "job_id": [ - 6672, - "uuid!" - ] - } - ], - "cancelClipRenderBatch": [ - 88, - { - "match_map_id": [ - 6672, - "uuid!" - ] - } - ], - "cancelMatch": [ - 88, - { - "match_id": [ - 6672, - "uuid!" - ] - } - ], - "cancelRecomputePlayerElo": [ - 88 - ], - "cancelRefreshAllPlayers": [ - 88 - ], - "cancelReparseAllDemos": [ - 88 - ], - "cancelScrimRequest": [ - 88, - { - "request_id": [ - 6672, - "uuid!" - ] - } - ], - "cancelUtilityLineupRender": [ - 88, - { - "render_id": [ - 6672, - "uuid!" - ] - } - ], - "changeUtilityPracticeMap": [ - 132, - { - "lineup_id": [ - 6672 - ], - "lineup_ids": [ - 6672, - "[uuid!]" - ], - "map_name": [ - 85, - "String!" - ], - "scratch": [ - 143 - ], - "session_id": [ - 6672, - "uuid!" - ] - } - ], - "checkIntoMatch": [ - 88, - { - "match_id": [ - 6672, - "uuid!" - ] - } - ], - "checkIntoTournament": [ - 88, - { - "tournament_id": [ - 6672, - "uuid!" - ], - "tournament_team_id": [ - 6672 - ] - } - ], - "clearClipRenderBatch": [ - 88, - { - "match_map_id": [ - 6672, - "uuid!" - ] - } - ], - "clearFinishedClipRenders": [ - 88 - ], - "clearFinishedUtilityLineupRenders": [ - 141 - ], - "clearPendingMatchImport": [ - 57, - { - "valve_match_id": [ - 85, - "String!" - ] - } - ], - "clone_league_season": [ - 2642, - { - "args": [ - 394, - "clone_league_season_args!" - ], - "distinct_on": [ - 2662, - "[league_seasons_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2659, - "[league_seasons_order_by!]" - ], - "where": [ - 2647 - ] - } - ], - "continueTournamentCheckIn": [ - 88, - { - "tournament_id": [ - 6672, - "uuid!" - ] - } - ], - "counterScrimRequest": [ - 88, - { - "proposed_scheduled_at": [ - 5243, - "timestamptz!" - ], - "request_id": [ - 6672, - "uuid!" - ] - } - ], - "createApiKey": [ - 3, - { - "label": [ - 85, - "String!" - ] - } - ], - "createClipFromPreset": [ - 16, - { - "fps": [ - 41 - ], - "match_map_id": [ - 6672, - "uuid!" - ], - "preset": [ - 85, - "String!" - ], - "resolution": [ - 85 - ], - "target_name": [ - 85 - ], - "target_steam_id": [ - 85, - "String!" - ], - "title": [ - 85 - ] - } - ], - "createClipRender": [ - 16, - { - "spec": [ - 12, - "ClipSpecInput!" - ] - } - ], - "createClips": [ - 88, - { - "match_id": [ - 6672, - "uuid!" - ] - } - ], - "createDraftGame": [ - 17, - { - "settings": [ - 2439, - "jsonb!" - ] - } - ], - "createScheduledMatch": [ - 18, - { - "lineup_1": [ - 73, - "ScheduledLineupInput!" - ], - "lineup_2": [ - 73, - "ScheduledLineupInput!" - ], - "options": [ - 2439, - "jsonb!" - ], - "scheduled_at": [ - 85, - "String!" - ] - } - ], - "createServerDirectory": [ - 88, - { - "dir_path": [ - 85, - "String!" - ], - "node_id": [ - 85, - "String!" - ], - "server_id": [ - 85 - ] - } - ], - "createTournamentInviteCode": [ - 113, - { - "expires_in_minutes": [ - 41 - ], - "max_uses": [ - 41 - ], - "tournament_id": [ - 6672, - "uuid!" - ] - } - ], - "deleteAward": [ - 88, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "deleteClip": [ - 88, - { - "clip_id": [ - 6672, - "uuid!" - ] - } - ], - "deleteMatch": [ - 88, - { - "match_id": [ - 85, - "String!" - ] - } - ], - "deleteNewsPost": [ - 88, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "deleteOrphanedDemos": [ - 22, - { - "keys": [ - 85, - "[String!]" - ] - } - ], - "deleteServerItem": [ - 88, - { - "node_id": [ - 85, - "String!" - ], - "path": [ - 85, - "String!" - ], - "server_id": [ - 85 - ] - } - ], - "deleteTournament": [ - 88, - { - "tournament_id": [ - 6672, - "uuid!" - ] - } - ], - "deleteUtilityLineupRender": [ - 88, - { - "render_id": [ - 6672, - "uuid!" - ] - } - ], - "deleteUtilityPlaybook": [ - 88, - { - "playbook_id": [ - 6672, - "uuid!" - ] - } - ], - "delete__map_pool": [ - 163, - { - "where": [ - 158, - "_map_pool_bool_exp!" - ] - } - ], - "delete__map_pool_by_pk": [ - 155, - { - "map_id": [ - 6672, - "uuid!" - ], - "map_pool_id": [ - 6672, - "uuid!" - ] - } - ], - "delete_abandoned_matches": [ - 191, - { - "where": [ - 183, - "abandoned_matches_bool_exp!" - ] - } - ], - "delete_abandoned_matches_by_pk": [ - 174, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_api_keys": [ - 225, - { - "where": [ - 219, - "api_keys_bool_exp!" - ] - } - ], - "delete_api_keys_by_pk": [ - 215, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_award_recipients": [ - 260, - { - "where": [ - 252, - "award_recipients_bool_exp!" - ] - } - ], - "delete_award_recipients_by_pk": [ - 243, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_awards": [ - 294, - { - "where": [ - 288, - "awards_bool_exp!" - ] - } - ], - "delete_awards_by_pk": [ - 284, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_chat_read_state": [ - 327, - { - "where": [ - 321, - "chat_read_state_bool_exp!" - ] - } - ], - "delete_chat_read_state_by_pk": [ - 317, - { - "steam_id": [ - 312, - "bigint!" - ], - "thread": [ - 85, - "String!" - ] - } - ], - "delete_clip_render_jobs": [ - 367, - { - "where": [ - 356, - "clip_render_jobs_bool_exp!" - ] - } - ], - "delete_clip_render_jobs_by_pk": [ - 344, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_custom_pages": [ - 410, - { - "where": [ - 401, - "custom_pages_bool_exp!" - ] - } - ], - "delete_custom_pages_by_pk": [ - 396, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_db_backups": [ - 438, - { - "where": [ - 432, - "db_backups_bool_exp!" - ] - } - ], - "delete_db_backups_by_pk": [ - 428, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_direct_conversations": [ - 465, - { - "where": [ - 459, - "direct_conversations_bool_exp!" - ] - } - ], - "delete_direct_conversations_by_pk": [ - 455, - { - "room_id": [ - 85, - "String!" - ], - "steam_id": [ - 312, - "bigint!" - ] - } - ], - "delete_direct_messages": [ - 492, - { - "where": [ - 486, - "direct_messages_bool_exp!" - ] - } - ], - "delete_direct_messages_by_pk": [ - 482, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_draft_game_picks": [ - 528, - { - "where": [ - 520, - "draft_game_picks_bool_exp!" - ] - } - ], - "delete_draft_game_picks_by_pk": [ - 509, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_draft_game_players": [ - 573, - { - "where": [ - 565, - "draft_game_players_bool_exp!" - ] - } - ], - "delete_draft_game_players_by_pk": [ - 554, - { - "draft_game_id": [ - 6672, - "uuid!" - ], - "steam_id": [ - 312, - "bigint!" - ] - } - ], - "delete_draft_games": [ - 618, - { - "where": [ - 610, - "draft_games_bool_exp!" - ] - } - ], - "delete_draft_games_by_pk": [ - 599, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_e_award_sources": [ - 655, - { - "where": [ - 648, - "e_award_sources_bool_exp!" - ] - } - ], - "delete_e_award_sources_by_pk": [ - 645, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_award_tiers": [ - 675, - { - "where": [ - 668, - "e_award_tiers_bool_exp!" - ] - } - ], - "delete_e_award_tiers_by_pk": [ - 665, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_check_in_settings": [ - 695, - { - "where": [ - 688, - "e_check_in_settings_bool_exp!" - ] - } - ], - "delete_e_check_in_settings_by_pk": [ - 685, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_draft_game_captain_selection": [ - 715, - { - "where": [ - 708, - "e_draft_game_captain_selection_bool_exp!" - ] - } - ], - "delete_e_draft_game_captain_selection_by_pk": [ - 705, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_draft_game_draft_order": [ - 736, - { - "where": [ - 729, - "e_draft_game_draft_order_bool_exp!" - ] - } - ], - "delete_e_draft_game_draft_order_by_pk": [ - 726, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_draft_game_mode": [ - 757, - { - "where": [ - 750, - "e_draft_game_mode_bool_exp!" - ] - } - ], - "delete_e_draft_game_mode_by_pk": [ - 747, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_draft_game_player_status": [ - 778, - { - "where": [ - 771, - "e_draft_game_player_status_bool_exp!" - ] - } - ], - "delete_e_draft_game_player_status_by_pk": [ - 768, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_draft_game_status": [ - 799, - { - "where": [ - 792, - "e_draft_game_status_bool_exp!" - ] - } - ], - "delete_e_draft_game_status_by_pk": [ - 789, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_event_media_access": [ - 820, - { - "where": [ - 813, - "e_event_media_access_bool_exp!" - ] - } - ], - "delete_e_event_media_access_by_pk": [ - 810, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_event_visibility": [ - 840, - { - "where": [ - 833, - "e_event_visibility_bool_exp!" - ] - } - ], - "delete_e_event_visibility_by_pk": [ - 830, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_friend_status": [ - 860, - { - "where": [ - 853, - "e_friend_status_bool_exp!" - ] - } - ], - "delete_e_friend_status_by_pk": [ - 850, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_game_cfg_types": [ - 881, - { - "where": [ - 874, - "e_game_cfg_types_bool_exp!" - ] - } - ], - "delete_e_game_cfg_types_by_pk": [ - 871, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_game_plugin_channels": [ - 901, - { - "where": [ - 894, - "e_game_plugin_channels_bool_exp!" - ] - } - ], - "delete_e_game_plugin_channels_by_pk": [ - 891, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_game_plugin_install_statuses": [ - 921, - { - "where": [ - 914, - "e_game_plugin_install_statuses_bool_exp!" - ] - } - ], - "delete_e_game_plugin_install_statuses_by_pk": [ - 911, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_game_plugin_kinds": [ - 941, - { - "where": [ - 934, - "e_game_plugin_kinds_bool_exp!" - ] - } - ], - "delete_e_game_plugin_kinds_by_pk": [ - 931, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_game_server_node_statuses": [ - 961, - { - "where": [ - 954, - "e_game_server_node_statuses_bool_exp!" - ] - } - ], - "delete_e_game_server_node_statuses_by_pk": [ - 951, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_league_movement_types": [ - 982, - { - "where": [ - 975, - "e_league_movement_types_bool_exp!" - ] - } - ], - "delete_e_league_movement_types_by_pk": [ - 972, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_league_proposal_statuses": [ - 1003, - { - "where": [ - 996, - "e_league_proposal_statuses_bool_exp!" - ] - } - ], - "delete_e_league_proposal_statuses_by_pk": [ - 993, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_league_registration_statuses": [ - 1024, - { - "where": [ - 1017, - "e_league_registration_statuses_bool_exp!" - ] - } - ], - "delete_e_league_registration_statuses_by_pk": [ - 1014, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_league_season_statuses": [ - 1045, - { - "where": [ - 1038, - "e_league_season_statuses_bool_exp!" - ] - } - ], - "delete_e_league_season_statuses_by_pk": [ - 1035, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_lobby_access": [ - 1066, - { - "where": [ - 1059, - "e_lobby_access_bool_exp!" - ] - } - ], - "delete_e_lobby_access_by_pk": [ - 1056, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_lobby_player_status": [ - 1087, - { - "where": [ - 1080, - "e_lobby_player_status_bool_exp!" - ] - } - ], - "delete_e_lobby_player_status_by_pk": [ - 1077, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_map_pool_types": [ - 1107, - { - "where": [ - 1100, - "e_map_pool_types_bool_exp!" - ] - } - ], - "delete_e_map_pool_types_by_pk": [ - 1097, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_match_clip_visibility": [ - 1128, - { - "where": [ - 1121, - "e_match_clip_visibility_bool_exp!" - ] - } - ], - "delete_e_match_clip_visibility_by_pk": [ - 1118, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_match_map_status": [ - 1148, - { - "where": [ - 1141, - "e_match_map_status_bool_exp!" - ] - } - ], - "delete_e_match_map_status_by_pk": [ - 1138, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_match_mode": [ - 1169, - { - "where": [ - 1162, - "e_match_mode_bool_exp!" - ] - } - ], - "delete_e_match_mode_by_pk": [ - 1159, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_match_party_sources": [ - 1189, - { - "where": [ - 1182, - "e_match_party_sources_bool_exp!" - ] - } - ], - "delete_e_match_party_sources_by_pk": [ - 1179, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_match_status": [ - 1209, - { - "where": [ - 1202, - "e_match_status_bool_exp!" - ] - } - ], - "delete_e_match_status_by_pk": [ - 1199, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_match_types": [ - 1230, - { - "where": [ - 1223, - "e_match_types_bool_exp!" - ] - } - ], - "delete_e_match_types_by_pk": [ - 1220, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_notification_types": [ - 1251, - { - "where": [ - 1244, - "e_notification_types_bool_exp!" - ] - } - ], - "delete_e_notification_types_by_pk": [ - 1241, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_objective_types": [ - 1271, - { - "where": [ - 1264, - "e_objective_types_bool_exp!" - ] - } - ], - "delete_e_objective_types_by_pk": [ - 1261, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_player_roles": [ - 1291, - { - "where": [ - 1284, - "e_player_roles_bool_exp!" - ] - } - ], - "delete_e_player_roles_by_pk": [ - 1281, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_plugin_runtimes": [ - 1311, - { - "where": [ - 1304, - "e_plugin_runtimes_bool_exp!" - ] - } - ], - "delete_e_plugin_runtimes_by_pk": [ - 1301, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_ready_settings": [ - 1331, - { - "where": [ - 1324, - "e_ready_settings_bool_exp!" - ] - } - ], - "delete_e_ready_settings_by_pk": [ - 1321, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_sanction_scopes": [ - 1349, - { - "where": [ - 1344, - "e_sanction_scopes_bool_exp!" - ] - } - ], - "delete_e_sanction_scopes_by_pk": [ - 1341, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_sanction_sources": [ - 1370, - { - "where": [ - 1364, - "e_sanction_sources_bool_exp!" - ] - } - ], - "delete_e_sanction_sources_by_pk": [ - 1360, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_sanction_types": [ - 1397, - { - "where": [ - 1390, - "e_sanction_types_bool_exp!" - ] - } - ], - "delete_e_sanction_types_by_pk": [ - 1387, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_scrim_request_statuses": [ - 1418, - { - "where": [ - 1411, - "e_scrim_request_statuses_bool_exp!" - ] - } - ], - "delete_e_scrim_request_statuses_by_pk": [ - 1408, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_server_types": [ - 1438, - { - "where": [ - 1431, - "e_server_types_bool_exp!" - ] - } - ], - "delete_e_server_types_by_pk": [ - 1428, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_sides": [ - 1458, - { - "where": [ - 1451, - "e_sides_bool_exp!" - ] - } - ], - "delete_e_sides_by_pk": [ - 1448, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_system_alert_types": [ - 1478, - { - "where": [ - 1471, - "e_system_alert_types_bool_exp!" - ] - } - ], - "delete_e_system_alert_types_by_pk": [ - 1468, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_team_roles": [ - 1498, - { - "where": [ - 1491, - "e_team_roles_bool_exp!" - ] - } - ], - "delete_e_team_roles_by_pk": [ - 1488, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_team_roster_statuses": [ - 1519, - { - "where": [ - 1512, - "e_team_roster_statuses_bool_exp!" - ] - } - ], - "delete_e_team_roster_statuses_by_pk": [ - 1509, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_timeout_settings": [ - 1539, - { - "where": [ - 1532, - "e_timeout_settings_bool_exp!" - ] - } - ], - "delete_e_timeout_settings_by_pk": [ - 1529, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_tournament_categories": [ - 1559, - { - "where": [ - 1552, - "e_tournament_categories_bool_exp!" - ] - } - ], - "delete_e_tournament_categories_by_pk": [ - 1549, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_tournament_free_agent_statuses": [ - 1580, - { - "where": [ - 1573, - "e_tournament_free_agent_statuses_bool_exp!" - ] - } - ], - "delete_e_tournament_free_agent_statuses_by_pk": [ - 1570, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_tournament_registration_types": [ - 1601, - { - "where": [ - 1594, - "e_tournament_registration_types_bool_exp!" - ] - } - ], - "delete_e_tournament_registration_types_by_pk": [ - 1591, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_tournament_stage_types": [ - 1621, - { - "where": [ - 1614, - "e_tournament_stage_types_bool_exp!" - ] - } - ], - "delete_e_tournament_stage_types_by_pk": [ - 1611, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_tournament_status": [ - 1642, - { - "where": [ - 1635, - "e_tournament_status_bool_exp!" - ] - } - ], - "delete_e_tournament_status_by_pk": [ - 1632, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_utility_practice_access": [ - 1663, - { - "where": [ - 1656, - "e_utility_practice_access_bool_exp!" - ] - } - ], - "delete_e_utility_practice_access_by_pk": [ - 1653, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_utility_practice_statuses": [ - 1683, - { - "where": [ - 1676, - "e_utility_practice_statuses_bool_exp!" - ] - } - ], - "delete_e_utility_practice_statuses_by_pk": [ - 1673, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_utility_sources": [ - 1704, - { - "where": [ - 1697, - "e_utility_sources_bool_exp!" - ] - } - ], - "delete_e_utility_sources_by_pk": [ - 1694, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_utility_techniques": [ - 1724, - { - "where": [ - 1717, - "e_utility_techniques_bool_exp!" - ] - } - ], - "delete_e_utility_techniques_by_pk": [ - 1714, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_utility_throw_strengths": [ - 1744, - { - "where": [ - 1737, - "e_utility_throw_strengths_bool_exp!" - ] - } - ], - "delete_e_utility_throw_strengths_by_pk": [ - 1734, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_utility_types": [ - 1764, - { - "where": [ - 1757, - "e_utility_types_bool_exp!" - ] - } - ], - "delete_e_utility_types_by_pk": [ - 1754, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_utility_visibility": [ - 1784, - { - "where": [ - 1777, - "e_utility_visibility_bool_exp!" - ] - } - ], - "delete_e_utility_visibility_by_pk": [ - 1774, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_veto_pick_types": [ - 1804, - { - "where": [ - 1797, - "e_veto_pick_types_bool_exp!" - ] - } - ], - "delete_e_veto_pick_types_by_pk": [ - 1794, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_e_winning_reasons": [ - 1824, - { - "where": [ - 1817, - "e_winning_reasons_bool_exp!" - ] - } - ], - "delete_e_winning_reasons_by_pk": [ - 1814, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_event_match_links": [ - 1842, - { - "where": [ - 1837, - "event_match_links_bool_exp!" - ] - } - ], - "delete_event_match_links_by_pk": [ - 1834, - { - "event_id": [ - 6672, - "uuid!" - ], - "match_id": [ - 6672, - "uuid!" - ] - } - ], - "delete_event_media": [ - 1869, - { - "where": [ - 1861, - "event_media_bool_exp!" - ] - } - ], - "delete_event_media_by_pk": [ - 1852, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_event_media_players": [ - 1891, - { - "where": [ - 1883, - "event_media_players_bool_exp!" - ] - } - ], - "delete_event_media_players_by_pk": [ - 1874, - { - "media_id": [ - 6672, - "uuid!" - ], - "steam_id": [ - 312, - "bigint!" - ] - } - ], - "delete_event_organizers": [ - 1952, - { - "where": [ - 1944, - "event_organizers_bool_exp!" - ] - } - ], - "delete_event_organizers_by_pk": [ - 1935, - { - "event_id": [ - 6672, - "uuid!" - ], - "steam_id": [ - 312, - "bigint!" - ] - } - ], - "delete_event_players": [ - 1993, - { - "where": [ - 1985, - "event_players_bool_exp!" - ] - } - ], - "delete_event_players_by_pk": [ - 1976, - { - "event_id": [ - 6672, - "uuid!" - ], - "steam_id": [ - 312, - "bigint!" - ] - } - ], - "delete_event_teams": [ - 2031, - { - "where": [ - 2024, - "event_teams_bool_exp!" - ] - } - ], - "delete_event_teams_by_pk": [ - 2017, - { - "event_id": [ - 6672, - "uuid!" - ], - "team_id": [ - 6672, - "uuid!" - ] - } - ], - "delete_event_tournaments": [ - 2055, - { - "where": [ - 2048, - "event_tournaments_bool_exp!" - ] - } - ], - "delete_event_tournaments_by_pk": [ - 2041, - { - "event_id": [ - 6672, - "uuid!" - ], - "tournament_id": [ - 6672, - "uuid!" - ] - } - ], - "delete_events": [ - 2075, - { - "where": [ - 2069, - "events_bool_exp!" - ] - } - ], - "delete_events_by_pk": [ - 2065, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_friends": [ - 2105, - { - "where": [ - 2099, - "friends_bool_exp!" - ] - } - ], - "delete_friends_by_pk": [ - 2095, - { - "other_player_steam_id": [ - 312, - "bigint!" - ], - "player_steam_id": [ - 312, - "bigint!" - ] - } - ], - "delete_game_mode_plugins": [ - 2145, - { - "where": [ - 2134, - "game_mode_plugins_bool_exp!" - ] - } - ], - "delete_game_mode_plugins_by_pk": [ - 2122, - { - "game_mode_id": [ - 6672, - "uuid!" - ], - "plugin_slug": [ - 85, - "String!" - ] - } - ], - "delete_game_modes": [ - 2180, - { - "where": [ - 2175, - "game_modes_bool_exp!" - ] - } - ], - "delete_game_modes_by_pk": [ - 2172, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_game_plugin_installs": [ - 2199, - { - "where": [ - 2194, - "game_plugin_installs_bool_exp!" - ] - } - ], - "delete_game_plugin_installs_by_pk": [ - 2191, - { - "plugin_slug": [ - 85, - "String!" - ] - } - ], - "delete_game_plugin_versions": [ - 2228, - { - "where": [ - 2220, - "game_plugin_versions_bool_exp!" - ] - } - ], - "delete_game_plugin_versions_by_pk": [ - 2209, - { - "plugin_slug": [ - 85, - "String!" - ], - "runtime": [ - 1306, - "e_plugin_runtimes_enum!" - ], - "version": [ - 85, - "String!" - ] - } - ], - "delete_game_plugins": [ - 2267, - { - "where": [ - 2259, - "game_plugins_bool_exp!" - ] - } - ], - "delete_game_plugins_by_pk": [ - 2254, - { - "slug": [ - 85, - "String!" - ] - } - ], - "delete_game_server_node_plugins": [ - 2302, - { - "where": [ - 2295, - "game_server_node_plugins_bool_exp!" - ] - } - ], - "delete_game_server_node_plugins_by_pk": [ - 2286, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_game_server_nodes": [ - 2337, - { - "where": [ - 2326, - "game_server_nodes_bool_exp!" - ] - } - ], - "delete_game_server_nodes_by_pk": [ - 2314, - { - "id": [ - 85, - "String!" - ] - } - ], - "delete_game_versions": [ - 2379, - { - "where": [ - 2370, - "game_versions_bool_exp!" - ] - } - ], - "delete_game_versions_by_pk": [ - 2365, - { - "build_id": [ - 41, - "Int!" - ] - } - ], - "delete_gamedata_signature_validations": [ - 2412, - { - "where": [ - 2403, - "gamedata_signature_validations_bool_exp!" - ] - } - ], - "delete_gamedata_signature_validations_by_pk": [ - 2398, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_leaderboard_entries": [ - 2451, - { - "where": [ - 2446, - "leaderboard_entries_bool_exp!" - ] - } - ], - "delete_league_divisions": [ - 2476, - { - "where": [ - 2470, - "league_divisions_bool_exp!" - ] - } - ], - "delete_league_divisions_by_pk": [ - 2466, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_league_match_weeks": [ - 2511, - { - "where": [ - 2503, - "league_match_weeks_bool_exp!" - ] - } - ], - "delete_league_match_weeks_by_pk": [ - 2494, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_league_relegation_playoffs": [ - 2552, - { - "where": [ - 2544, - "league_relegation_playoffs_bool_exp!" - ] - } - ], - "delete_league_relegation_playoffs_by_pk": [ - 2535, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_league_scheduling_proposals": [ - 2593, - { - "where": [ - 2585, - "league_scheduling_proposals_bool_exp!" - ] - } - ], - "delete_league_scheduling_proposals_by_pk": [ - 2576, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_league_season_divisions": [ - 2631, - { - "where": [ - 2624, - "league_season_divisions_bool_exp!" - ] - } - ], - "delete_league_season_divisions_by_pk": [ - 2617, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_league_seasons": [ - 2656, - { - "where": [ - 2647, - "league_seasons_bool_exp!" - ] - } - ], - "delete_league_seasons_by_pk": [ - 2642, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_league_team_movements": [ - 2692, - { - "where": [ - 2684, - "league_team_movements_bool_exp!" - ] - } - ], - "delete_league_team_movements_by_pk": [ - 2675, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_league_team_rosters": [ - 2733, - { - "where": [ - 2725, - "league_team_rosters_bool_exp!" - ] - } - ], - "delete_league_team_rosters_by_pk": [ - 2716, - { - "league_team_season_id": [ - 6672, - "uuid!" - ], - "player_steam_id": [ - 312, - "bigint!" - ] - } - ], - "delete_league_team_seasons": [ - 2774, - { - "where": [ - 2766, - "league_team_seasons_bool_exp!" - ] - } - ], - "delete_league_team_seasons_by_pk": [ - 2757, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_league_teams": [ - 2807, - { - "where": [ - 2802, - "league_teams_bool_exp!" - ] - } - ], - "delete_league_teams_by_pk": [ - 2799, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_lobbies": [ - 2826, - { - "where": [ - 2821, - "lobbies_bool_exp!" - ] - } - ], - "delete_lobbies_by_pk": [ - 2818, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_lobby_players": [ - 2856, - { - "where": [ - 2848, - "lobby_players_bool_exp!" - ] - } - ], - "delete_lobby_players_by_pk": [ - 2837, - { - "lobby_id": [ - 6672, - "uuid!" - ], - "steam_id": [ - 312, - "bigint!" - ] - } - ], - "delete_map_callouts": [ - 2894, - { - "where": [ - 2886, - "map_callouts_bool_exp!" - ] - } - ], - "delete_map_callouts_by_pk": [ - 2882, - { - "map_name": [ - 85, - "String!" - ], - "name": [ - 85, - "String!" - ] - } - ], - "delete_map_pools": [ - 2913, - { - "where": [ - 2908, - "map_pools_bool_exp!" - ] - } - ], - "delete_map_pools_by_pk": [ - 2905, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_maps": [ - 2940, - { - "where": [ - 2933, - "maps_bool_exp!" - ] - } - ], - "delete_maps_by_pk": [ - 2924, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_match_clips": [ - 2970, - { - "where": [ - 2962, - "match_clips_bool_exp!" - ] - } - ], - "delete_match_clips_by_pk": [ - 2953, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_match_demo_sessions": [ - 3016, - { - "where": [ - 3005, - "match_demo_sessions_bool_exp!" - ] - } - ], - "delete_match_demo_sessions_by_pk": [ - 2995, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_match_lineup_players": [ - 3060, - { - "where": [ - 3052, - "match_lineup_players_bool_exp!" - ] - } - ], - "delete_match_lineup_players_by_pk": [ - 3041, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_match_lineups": [ - 3103, - { - "where": [ - 3095, - "match_lineups_bool_exp!" - ] - } - ], - "delete_match_lineups_by_pk": [ - 3086, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_match_map_demos": [ - 3151, - { - "where": [ - 3140, - "match_map_demos_bool_exp!" - ] - } - ], - "delete_match_map_demos_by_pk": [ - 3128, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_match_map_rounds": [ - 3196, - { - "where": [ - 3188, - "match_map_rounds_bool_exp!" - ] - } - ], - "delete_match_map_rounds_by_pk": [ - 3179, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_match_map_veto_picks": [ - 3236, - { - "where": [ - 3229, - "match_map_veto_picks_bool_exp!" - ] - } - ], - "delete_match_map_veto_picks_by_pk": [ - 3220, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_match_maps": [ - 3265, - { - "where": [ - 3257, - "match_maps_bool_exp!" - ] - } - ], - "delete_match_maps_by_pk": [ - 3248, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_match_options": [ - 3309, - { - "where": [ - 3301, - "match_options_bool_exp!" - ] - } - ], - "delete_match_options_by_pk": [ - 3290, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_match_region_veto_picks": [ - 3352, - { - "where": [ - 3345, - "match_region_veto_picks_bool_exp!" - ] - } - ], - "delete_match_region_veto_picks_by_pk": [ - 3336, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_match_streams": [ - 3387, - { - "where": [ - 3376, - "match_streams_bool_exp!" - ] - } - ], - "delete_match_streams_by_pk": [ - 3364, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_match_type_cfgs": [ - 3422, - { - "where": [ - 3417, - "match_type_cfgs_bool_exp!" - ] - } - ], - "delete_match_type_cfgs_by_pk": [ - 3414, - { - "type": [ - 876, - "e_game_cfg_types_enum!" - ] - } - ], - "delete_matches": [ - 3451, - { - "where": [ - 3443, - "matches_bool_exp!" - ] - } - ], - "delete_matches_by_pk": [ - 3432, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_migration_hashes_hashes": [ - 3486, - { - "where": [ - 3481, - "migration_hashes_hashes_bool_exp!" - ] - } - ], - "delete_migration_hashes_hashes_by_pk": [ - 3478, - { - "name": [ - 85, - "String!" - ] - } - ], - "delete_my_friends": [ - 3518, - { - "where": [ - 3508, - "my_friends_bool_exp!" - ] - } - ], - "delete_news_articles": [ - 3552, - { - "where": [ - 3546, - "news_articles_bool_exp!" - ] - } - ], - "delete_news_articles_by_pk": [ - 3542, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_notification_preferences": [ - 3579, - { - "where": [ - 3573, - "notification_preferences_bool_exp!" - ] - } - ], - "delete_notification_preferences_by_pk": [ - 3569, - { - "channel": [ - 85, - "String!" - ], - "key": [ - 85, - "String!" - ], - "steam_id": [ - 312, - "bigint!" - ] - } - ], - "delete_notifications": [ - 3619, - { - "where": [ - 3608, - "notifications_bool_exp!" - ] - } - ], - "delete_notifications_by_pk": [ - 3596, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_pending_match_import_players": [ - 3666, - { - "where": [ - 3658, - "pending_match_import_players_bool_exp!" - ] - } - ], - "delete_pending_match_import_players_by_pk": [ - 3649, - { - "steam_id": [ - 312, - "bigint!" - ], - "valve_match_id": [ - 3646, - "numeric!" - ] - } - ], - "delete_pending_match_imports": [ - 3700, - { - "where": [ - 3694, - "pending_match_imports_bool_exp!" - ] - } - ], - "delete_pending_match_imports_by_pk": [ - 3690, - { - "valve_match_id": [ - 3646, - "numeric!" - ] - } - ], - "delete_player_aim_stats_demo": [ - 3728, - { - "where": [ - 3722, - "player_aim_stats_demo_bool_exp!" - ] - } - ], - "delete_player_aim_stats_demo_by_pk": [ - 3718, - { - "attacker_steam_id": [ - 312, - "bigint!" - ], - "match_map_id": [ - 6672, - "uuid!" - ] - } - ], - "delete_player_aim_weapon_stats": [ - 3762, - { - "where": [ - 3754, - "player_aim_weapon_stats_bool_exp!" - ] - } - ], - "delete_player_aim_weapon_stats_by_pk": [ - 3745, - { - "match_map_id": [ - 6672, - "uuid!" - ], - "steam_id": [ - 312, - "bigint!" - ], - "weapon_class": [ - 85, - "String!" - ] - } - ], - "delete_player_assists": [ - 3805, - { - "where": [ - 3797, - "player_assists_bool_exp!" - ] - } - ], - "delete_player_assists_by_pk": [ - 3786, - { - "attacked_steam_id": [ - 312, - "bigint!" - ], - "attacker_steam_id": [ - 312, - "bigint!" - ], - "match_map_id": [ - 6672, - "uuid!" - ], - "time": [ - 5243, - "timestamptz!" - ] - } - ], - "delete_player_damages": [ - 3866, - { - "where": [ - 3858, - "player_damages_bool_exp!" - ] - } - ], - "delete_player_damages_by_pk": [ - 3849, - { - "id": [ - 6672, - "uuid!" - ], - "match_map_id": [ - 6672, - "uuid!" - ], - "time": [ - 5243, - "timestamptz!" - ] - } - ], - "delete_player_elo": [ - 3900, - { - "where": [ - 3894, - "player_elo_bool_exp!" - ] - } - ], - "delete_player_elo_by_pk": [ - 3890, - { - "match_id": [ - 6672, - "uuid!" - ], - "steam_id": [ - 312, - "bigint!" - ], - "type": [ - 1225, - "e_match_types_enum!" - ] - } - ], - "delete_player_faceit_rank_history": [ - 3934, - { - "where": [ - 3926, - "player_faceit_rank_history_bool_exp!" - ] - } - ], - "delete_player_faceit_rank_history_by_pk": [ - 3917, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_player_flashes": [ - 3977, - { - "where": [ - 3969, - "player_flashes_bool_exp!" - ] - } - ], - "delete_player_flashes_by_pk": [ - 3958, - { - "attacked_steam_id": [ - 312, - "bigint!" - ], - "attacker_steam_id": [ - 312, - "bigint!" - ], - "match_map_id": [ - 6672, - "uuid!" - ], - "time": [ - 5243, - "timestamptz!" - ] - } - ], - "delete_player_kills": [ - 4063, - { - "where": [ - 4014, - "player_kills_bool_exp!" - ] - } - ], - "delete_player_kills_by_pk": [ - 4003, - { - "attacked_steam_id": [ - 312, - "bigint!" - ], - "attacker_steam_id": [ - 312, - "bigint!" - ], - "match_map_id": [ - 6672, - "uuid!" - ], - "time": [ - 5243, - "timestamptz!" - ] - } - ], - "delete_player_kills_by_weapon": [ - 4032, - { - "where": [ - 4024, - "player_kills_by_weapon_bool_exp!" - ] - } - ], - "delete_player_kills_by_weapon_by_pk": [ - 4015, - { - "player_steam_id": [ - 312, - "bigint!" - ], - "with": [ - 85, - "String!" - ] - } - ], - "delete_player_leaderboard_rank": [ - 4098, - { - "where": [ - 4093, - "player_leaderboard_rank_bool_exp!" - ] - } - ], - "delete_player_match_map_stats": [ - 4129, - { - "where": [ - 4121, - "player_match_map_stats_bool_exp!" - ] - } - ], - "delete_player_match_map_stats_by_pk": [ - 4112, - { - "match_map_id": [ - 6672, - "uuid!" - ], - "steam_id": [ - 312, - "bigint!" - ] - } - ], - "delete_player_objectives": [ - 4221, - { - "where": [ - 4213, - "player_objectives_bool_exp!" - ] - } - ], - "delete_player_objectives_by_pk": [ - 4204, - { - "match_map_id": [ - 6672, - "uuid!" - ], - "player_steam_id": [ - 312, - "bigint!" - ], - "time": [ - 5243, - "timestamptz!" - ] - } - ], - "delete_player_premier_rank_history": [ - 4280, - { - "where": [ - 4272, - "player_premier_rank_history_bool_exp!" - ] - } - ], - "delete_player_premier_rank_history_by_pk": [ - 4263, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_player_sanctions": [ - 4321, - { - "where": [ - 4313, - "player_sanctions_bool_exp!" - ] - } - ], - "delete_player_sanctions_by_pk": [ - 4304, - { - "created_at": [ - 5243, - "timestamptz!" - ], - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_player_season_stats": [ - 4372, - { - "where": [ - 4364, - "player_season_stats_bool_exp!" - ] - } - ], - "delete_player_season_stats_by_pk": [ - 4345, - { - "player_steam_id": [ - 312, - "bigint!" - ], - "season_id": [ - 6672, - "uuid!" - ] - } - ], - "delete_player_stats": [ - 4414, - { - "where": [ - 4408, - "player_stats_bool_exp!" - ] - } - ], - "delete_player_stats_by_pk": [ - 4404, - { - "player_steam_id": [ - 312, - "bigint!" - ] - } - ], - "delete_player_steam_bot_friend": [ - 4446, - { - "where": [ - 4437, - "player_steam_bot_friend_bool_exp!" - ] - } - ], - "delete_player_steam_bot_friend_by_pk": [ - 4432, - { - "steam_id": [ - 312, - "bigint!" - ] - } - ], - "delete_player_steam_match_auth": [ - 4474, - { - "where": [ - 4468, - "player_steam_match_auth_bool_exp!" - ] - } - ], - "delete_player_steam_match_auth_by_pk": [ - 4464, - { - "steam_id": [ - 312, - "bigint!" - ] - } - ], - "delete_player_unused_utility": [ - 4508, - { - "where": [ - 4500, - "player_unused_utility_bool_exp!" - ] - } - ], - "delete_player_unused_utility_by_pk": [ - 4491, - { - "match_map_id": [ - 6672, - "uuid!" - ], - "player_steam_id": [ - 312, - "bigint!" - ] - } - ], - "delete_player_utility": [ - 4549, - { - "where": [ - 4541, - "player_utility_bool_exp!" - ] - } - ], - "delete_player_utility_by_pk": [ - 4532, - { - "attacker_steam_id": [ - 312, - "bigint!" - ], - "match_map_id": [ - 6672, - "uuid!" - ], - "time": [ - 5243, - "timestamptz!" - ] - } - ], - "delete_players": [ - 4616, - { - "where": [ - 4610, - "players_bool_exp!" - ] - } - ], - "delete_players_by_pk": [ - 4606, - { - "steam_id": [ - 312, - "bigint!" - ] - } - ], - "delete_plugin_versions": [ - 4644, - { - "where": [ - 4638, - "plugin_versions_bool_exp!" - ] - } - ], - "delete_plugin_versions_by_pk": [ - 4634, - { - "runtime": [ - 1306, - "e_plugin_runtimes_enum!" - ], - "version": [ - 85, - "String!" - ] - } - ], - "delete_push_subscriptions": [ - 4671, - { - "where": [ - 4665, - "push_subscriptions_bool_exp!" - ] - } - ], - "delete_push_subscriptions_by_pk": [ - 4661, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_role_permissions": [ - 4699, - { - "where": [ - 4695, - "role_permissions_bool_exp!" - ] - } - ], - "delete_seasons": [ - 4716, - { - "where": [ - 4710, - "seasons_bool_exp!" - ] - } - ], - "delete_seasons_by_pk": [ - 4706, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_server_regions": [ - 4743, - { - "where": [ - 4738, - "server_regions_bool_exp!" - ] - } - ], - "delete_server_regions_by_pk": [ - 4734, - { - "value": [ - 85, - "String!" - ] - } - ], - "delete_servers": [ - 4784, - { - "where": [ - 4773, - "servers_bool_exp!" - ] - } - ], - "delete_servers_by_pk": [ - 4761, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_settings": [ - 4820, - { - "where": [ - 4815, - "settings_bool_exp!" - ] - } - ], - "delete_settings_by_pk": [ - 4812, - { - "name": [ - 85, - "String!" - ] - } - ], - "delete_steam_account_claims": [ - 4846, - { - "where": [ - 4839, - "steam_account_claims_bool_exp!" - ] - } - ], - "delete_steam_account_claims_by_pk": [ - 4832, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_steam_accounts": [ - 4866, - { - "where": [ - 4860, - "steam_accounts_bool_exp!" - ] - } - ], - "delete_steam_accounts_by_pk": [ - 4856, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_system_alerts": [ - 4894, - { - "where": [ - 4888, - "system_alerts_bool_exp!" - ] - } - ], - "delete_system_alerts_by_pk": [ - 4884, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_team_invites": [ - 4928, - { - "where": [ - 4920, - "team_invites_bool_exp!" - ] - } - ], - "delete_team_invites_by_pk": [ - 4911, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_team_roster": [ - 4971, - { - "where": [ - 4963, - "team_roster_bool_exp!" - ] - } - ], - "delete_team_roster_by_pk": [ - 4952, - { - "player_steam_id": [ - 312, - "bigint!" - ], - "team_id": [ - 6672, - "uuid!" - ] - } - ], - "delete_team_scrim_alerts": [ - 5007, - { - "where": [ - 5001, - "team_scrim_alerts_bool_exp!" - ] - } - ], - "delete_team_scrim_alerts_by_pk": [ - 4997, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_team_scrim_availability": [ - 5040, - { - "where": [ - 5033, - "team_scrim_availability_bool_exp!" - ] - } - ], - "delete_team_scrim_availability_by_pk": [ - 5024, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_team_scrim_request_proposals": [ - 5069, - { - "where": [ - 5061, - "team_scrim_request_proposals_bool_exp!" - ] - } - ], - "delete_team_scrim_request_proposals_by_pk": [ - 5052, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_team_scrim_requests": [ - 5112, - { - "where": [ - 5104, - "team_scrim_requests_bool_exp!" - ] - } - ], - "delete_team_scrim_requests_by_pk": [ - 5093, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_team_scrim_settings": [ - 5149, - { - "where": [ - 5143, - "team_scrim_settings_bool_exp!" - ] - } - ], - "delete_team_scrim_settings_by_pk": [ - 5139, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_team_suggestions": [ - 5177, - { - "where": [ - 5171, - "team_suggestions_bool_exp!" - ] - } - ], - "delete_team_suggestions_by_pk": [ - 5167, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_teams": [ - 5213, - { - "where": [ - 5205, - "teams_bool_exp!" - ] - } - ], - "delete_teams_by_pk": [ - 5194, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_tournament_awards": [ - 5262, - { - "where": [ - 5254, - "tournament_awards_bool_exp!" - ] - } - ], - "delete_tournament_awards_by_pk": [ - 5245, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_tournament_brackets": [ - 5306, - { - "where": [ - 5298, - "tournament_brackets_bool_exp!" - ] - } - ], - "delete_tournament_brackets_by_pk": [ - 5287, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_tournament_categories": [ - 5347, - { - "where": [ - 5340, - "tournament_categories_bool_exp!" - ] - } - ], - "delete_tournament_categories_by_pk": [ - 5333, - { - "category": [ - 1554, - "e_tournament_categories_enum!" - ], - "tournament_id": [ - 6672, - "uuid!" - ] - } - ], - "delete_tournament_free_agents": [ - 5374, - { - "where": [ - 5366, - "tournament_free_agents_bool_exp!" - ] - } - ], - "delete_tournament_free_agents_by_pk": [ - 5357, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_tournament_invite_code_uses": [ - 5415, - { - "where": [ - 5407, - "tournament_invite_code_uses_bool_exp!" - ] - } - ], - "delete_tournament_invite_code_uses_by_pk": [ - 5398, - { - "invite_code_id": [ - 6672, - "uuid!" - ], - "player_steam_id": [ - 312, - "bigint!" - ] - } - ], - "delete_tournament_invite_codes": [ - 5449, - { - "where": [ - 5443, - "tournament_invite_codes_bool_exp!" - ] - } - ], - "delete_tournament_invite_codes_by_pk": [ - 5439, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_tournament_invites": [ - 5477, - { - "where": [ - 5471, - "tournament_invites_bool_exp!" - ] - } - ], - "delete_tournament_invites_by_pk": [ - 5467, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_tournament_leaderboard_entries": [ - 5503, - { - "where": [ - 5498, - "tournament_leaderboard_entries_bool_exp!" - ] - } - ], - "delete_tournament_no_shows": [ - 5527, - { - "where": [ - 5521, - "tournament_no_shows_bool_exp!" - ] - } - ], - "delete_tournament_no_shows_by_pk": [ - 5517, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_tournament_organizer_teams": [ - 5558, - { - "where": [ - 5551, - "tournament_organizer_teams_bool_exp!" - ] - } - ], - "delete_tournament_organizer_teams_by_pk": [ - 5544, - { - "team_id": [ - 6672, - "uuid!" - ], - "tournament_id": [ - 6672, - "uuid!" - ] - } - ], - "delete_tournament_organizers": [ - 5585, - { - "where": [ - 5577, - "tournament_organizers_bool_exp!" - ] - } - ], - "delete_tournament_organizers_by_pk": [ - 5568, - { - "steam_id": [ - 312, - "bigint!" - ], - "tournament_id": [ - 6672, - "uuid!" - ] - } - ], - "delete_tournament_prizes": [ - 5626, - { - "where": [ - 5618, - "tournament_prizes_bool_exp!" - ] - } - ], - "delete_tournament_prizes_by_pk": [ - 5609, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_tournament_registration_unlocks": [ - 5660, - { - "where": [ - 5654, - "tournament_registration_unlocks_bool_exp!" - ] - } - ], - "delete_tournament_stage_windows": [ - 5693, - { - "where": [ - 5685, - "tournament_stage_windows_bool_exp!" - ] - } - ], - "delete_tournament_stage_windows_by_pk": [ - 5676, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_tournament_stages": [ - 5740, - { - "where": [ - 5729, - "tournament_stages_bool_exp!" - ] - } - ], - "delete_tournament_stages_by_pk": [ - 5717, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_tournament_team_invites": [ - 5785, - { - "where": [ - 5777, - "tournament_team_invites_bool_exp!" - ] - } - ], - "delete_tournament_team_invites_by_pk": [ - 5768, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_tournament_team_roster": [ - 5826, - { - "where": [ - 5818, - "tournament_team_roster_bool_exp!" - ] - } - ], - "delete_tournament_team_roster_by_pk": [ - 5809, - { - "player_steam_id": [ - 312, - "bigint!" - ], - "tournament_id": [ - 6672, - "uuid!" - ] - } - ], - "delete_tournament_teams": [ - 5869, - { - "where": [ - 5861, - "tournament_teams_bool_exp!" - ] - } - ], - "delete_tournament_teams_by_pk": [ - 5850, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_tournaments": [ - 5925, - { - "where": [ - 5917, - "tournaments_bool_exp!" - ] - } - ], - "delete_tournaments_by_pk": [ - 5896, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_utility_collection_items": [ - 5977, - { - "where": [ - 5969, - "utility_collection_items_bool_exp!" - ] - } - ], - "delete_utility_collection_items_by_pk": [ - 5960, - { - "collection_id": [ - 6672, - "uuid!" - ], - "utility_lineup_id": [ - 6672, - "uuid!" - ] - } - ], - "delete_utility_collections": [ - 6011, - { - "where": [ - 6005, - "utility_collections_bool_exp!" - ] - } - ], - "delete_utility_collections_by_pk": [ - 6001, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_utility_demo_mines": [ - 6039, - { - "where": [ - 6033, - "utility_demo_mines_bool_exp!" - ] - } - ], - "delete_utility_demo_mines_by_pk": [ - 6029, - { - "match_map_demo_id": [ - 6672, - "uuid!" - ] - } - ], - "delete_utility_demo_throws": [ - 6066, - { - "where": [ - 6060, - "utility_demo_throws_bool_exp!" - ] - } - ], - "delete_utility_demo_throws_by_pk": [ - 6056, - { - "grenade_id": [ - 41, - "Int!" - ], - "match_map_demo_id": [ - 6672, - "uuid!" - ] - } - ], - "delete_utility_drift_results": [ - 6110, - { - "where": [ - 6102, - "utility_drift_results_bool_exp!" - ] - } - ], - "delete_utility_drift_results_by_pk": [ - 6083, - { - "utility_drift_scan_id": [ - 6672, - "uuid!" - ], - "utility_lineup_id": [ - 6672, - "uuid!" - ] - } - ], - "delete_utility_drift_scans": [ - 6152, - { - "where": [ - 6146, - "utility_drift_scans_bool_exp!" - ] - } - ], - "delete_utility_drift_scans_by_pk": [ - 6142, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_utility_lineup_favorites": [ - 6187, - { - "where": [ - 6179, - "utility_lineup_favorites_bool_exp!" - ] - } - ], - "delete_utility_lineup_favorites_by_pk": [ - 6170, - { - "steam_id": [ - 312, - "bigint!" - ], - "utility_lineup_id": [ - 6672, - "uuid!" - ] - } - ], - "delete_utility_lineup_progress": [ - 6238, - { - "where": [ - 6230, - "utility_lineup_progress_bool_exp!" - ] - } - ], - "delete_utility_lineup_progress_by_pk": [ - 6211, - { - "steam_id": [ - 312, - "bigint!" - ], - "utility_lineup_id": [ - 6672, - "uuid!" - ] - } - ], - "delete_utility_lineup_renders": [ - 6293, - { - "where": [ - 6282, - "utility_lineup_renders_bool_exp!" - ] - } - ], - "delete_utility_lineup_renders_by_pk": [ - 6270, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_utility_lineup_repairs": [ - 6347, - { - "where": [ - 6339, - "utility_lineup_repairs_bool_exp!" - ] - } - ], - "delete_utility_lineup_repairs_by_pk": [ - 6320, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_utility_lineup_votes": [ - 6396, - { - "where": [ - 6388, - "utility_lineup_votes_bool_exp!" - ] - } - ], - "delete_utility_lineup_votes_by_pk": [ - 6379, - { - "steam_id": [ - 312, - "bigint!" - ], - "utility_lineup_id": [ - 6672, - "uuid!" - ] - } - ], - "delete_utility_lineups": [ - 6453, - { - "where": [ - 6442, - "utility_lineups_bool_exp!" - ] - } - ], - "delete_utility_lineups_by_pk": [ - 6420, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_utility_meta_lineups": [ - 6499, - { - "where": [ - 6493, - "utility_meta_lineups_bool_exp!" - ] - } - ], - "delete_utility_meta_lineups_by_pk": [ - 6489, - { - "lineup_bucket": [ - 85, - "String!" - ] - } - ], - "delete_utility_playbook_steps": [ - 6533, - { - "where": [ - 6525, - "utility_playbook_steps_bool_exp!" - ] - } - ], - "delete_utility_playbook_steps_by_pk": [ - 6516, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_utility_playbooks": [ - 6567, - { - "where": [ - 6561, - "utility_playbooks_bool_exp!" - ] - } - ], - "delete_utility_playbooks_by_pk": [ - 6557, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_utility_practice_invites": [ - 6602, - { - "where": [ - 6594, - "utility_practice_invites_bool_exp!" - ] - } - ], - "delete_utility_practice_invites_by_pk": [ - 6585, - { - "steam_id": [ - 312, - "bigint!" - ], - "utility_practice_session_id": [ - 6672, - "uuid!" - ] - } - ], - "delete_utility_practice_sessions": [ - 6645, - { - "where": [ - 6637, - "utility_practice_sessions_bool_exp!" - ] - } - ], - "delete_utility_practice_sessions_by_pk": [ - 6626, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "delete_v_match_captains": [ - 6837, - { - "where": [ - 6832, - "v_match_captains_bool_exp!" - ] - } - ], - "delete_v_match_map_backup_rounds": [ - 6948, - { - "where": [ - 6943, - "v_match_map_backup_rounds_bool_exp!" - ] - } - ], - "delete_v_player_match_map_hltv": [ - 7170, - { - "where": [ - 7163, - "v_player_match_map_hltv_bool_exp!" - ] - } - ], - "delete_v_pool_maps": [ - 7347, - { - "where": [ - 7341, - "v_pool_maps_bool_exp!" - ] - } - ], - "delete_v_team_stage_results": [ - 7441, - { - "where": [ - 7433, - "v_team_stage_results_bool_exp!" - ] - } - ], - "delete_v_team_stage_results_by_pk": [ - 7414, - { - "tournament_stage_id": [ - 6672, - "uuid!" - ], - "tournament_team_id": [ - 6672, - "uuid!" - ] - } - ], - "denyInvite": [ - 88, - { - "invite_id": [ - 6672, - "uuid!" - ], - "type": [ - 85, - "String!" - ] - } - ], - "denyNameChange": [ - 88, - { - "name": [ - 85, - "String!" - ], - "steam_id": [ - 312, - "bigint!" - ] - } - ], - "draftTournamentTeams": [ - 112, - { - "tournament_id": [ - 6672, - "uuid!" - ] - } - ], - "extendTournamentCheckIn": [ - 88, - { - "minutes": [ - 41, - "Int!" - ], - "tournament_id": [ - 6672, - "uuid!" - ] - } - ], - "forfeitMatch": [ - 88, - { - "match_id": [ - 6672, - "uuid!" - ], - "winning_lineup_id": [ - 6672, - "uuid!" - ] - } - ], - "forkUtilityLineup": [ - 123, - { - "collection_id": [ - 6672 - ], - "name": [ - 85 - ], - "utility_lineup_id": [ - 6672, - "uuid!" - ] - } - ], - "getLiveStreamSpecState": [ - 46, - { - "match_id": [ - 6672, - "uuid!" - ] - } - ], - "getPluginReadme": [ - 58, - { - "runtime": [ - 85 - ], - "slug": [ - 85, - "String!" - ] - } - ], - "getTestUploadLink": [ - 34 - ], - "grantAward": [ - 5, - { - "award_id": [ - 6672, - "uuid!" - ], - "event_id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "note": [ - 85 - ], - "player_steam_id": [ - 85 - ], - "season_id": [ - 6672 - ], - "team_id": [ - 6672 - ], - "tournament_id": [ - 6672 - ] - } - ], - "importUtilityLineups": [ - 121, - { - "dry_run": [ - 6 - ], - "payload": [ - 2439, - "jsonb!" - ] - } - ], - "insert__map_pool": [ - 163, - { - "objects": [ - 160, - "[_map_pool_insert_input!]!" - ], - "on_conflict": [ - 164 - ] - } - ], - "insert__map_pool_one": [ - 155, - { - "object": [ - 160, - "_map_pool_insert_input!" - ], - "on_conflict": [ - 164 - ] - } - ], - "insert_abandoned_matches": [ - 191, - { - "objects": [ - 186, - "[abandoned_matches_insert_input!]!" - ], - "on_conflict": [ - 192 - ] - } - ], - "insert_abandoned_matches_one": [ - 174, - { - "object": [ - 186, - "abandoned_matches_insert_input!" - ], - "on_conflict": [ - 192 - ] - } - ], - "insert_api_keys": [ - 225, - { - "objects": [ - 222, - "[api_keys_insert_input!]!" - ], - "on_conflict": [ - 226 - ] - } - ], - "insert_api_keys_one": [ - 215, - { - "object": [ - 222, - "api_keys_insert_input!" - ], - "on_conflict": [ - 226 - ] - } - ], - "insert_award_recipients": [ - 260, - { - "objects": [ - 255, - "[award_recipients_insert_input!]!" - ], - "on_conflict": [ - 261 - ] - } - ], - "insert_award_recipients_one": [ - 243, - { - "object": [ - 255, - "award_recipients_insert_input!" - ], - "on_conflict": [ - 261 - ] - } - ], - "insert_awards": [ - 294, - { - "objects": [ - 291, - "[awards_insert_input!]!" - ], - "on_conflict": [ - 296 - ] - } - ], - "insert_awards_one": [ - 284, - { - "object": [ - 291, - "awards_insert_input!" - ], - "on_conflict": [ - 296 - ] - } - ], - "insert_chat_read_state": [ - 327, - { - "objects": [ - 324, - "[chat_read_state_insert_input!]!" - ], - "on_conflict": [ - 328 - ] - } - ], - "insert_chat_read_state_one": [ - 317, - { - "object": [ - 324, - "chat_read_state_insert_input!" - ], - "on_conflict": [ - 328 - ] - } - ], - "insert_clip_render_jobs": [ - 367, - { - "objects": [ - 362, - "[clip_render_jobs_insert_input!]!" - ], - "on_conflict": [ - 368 - ] - } - ], - "insert_clip_render_jobs_one": [ - 344, - { - "object": [ - 362, - "clip_render_jobs_insert_input!" - ], - "on_conflict": [ - 368 - ] - } - ], - "insert_custom_pages": [ - 410, - { - "objects": [ - 407, - "[custom_pages_insert_input!]!" - ], - "on_conflict": [ - 411 - ] - } - ], - "insert_custom_pages_one": [ - 396, - { - "object": [ - 407, - "custom_pages_insert_input!" - ], - "on_conflict": [ - 411 - ] - } - ], - "insert_db_backups": [ - 438, - { - "objects": [ - 435, - "[db_backups_insert_input!]!" - ], - "on_conflict": [ - 439 - ] - } - ], - "insert_db_backups_one": [ - 428, - { - "object": [ - 435, - "db_backups_insert_input!" - ], - "on_conflict": [ - 439 - ] - } - ], - "insert_direct_conversations": [ - 465, - { - "objects": [ - 462, - "[direct_conversations_insert_input!]!" - ], - "on_conflict": [ - 466 - ] - } - ], - "insert_direct_conversations_one": [ - 455, - { - "object": [ - 462, - "direct_conversations_insert_input!" - ], - "on_conflict": [ - 466 - ] - } - ], - "insert_direct_messages": [ - 492, - { - "objects": [ - 489, - "[direct_messages_insert_input!]!" - ], - "on_conflict": [ - 493 - ] - } - ], - "insert_direct_messages_one": [ - 482, - { - "object": [ - 489, - "direct_messages_insert_input!" - ], - "on_conflict": [ - 493 - ] - } - ], - "insert_draft_game_picks": [ - 528, - { - "objects": [ - 523, - "[draft_game_picks_insert_input!]!" - ], - "on_conflict": [ - 529 - ] - } - ], - "insert_draft_game_picks_one": [ - 509, - { - "object": [ - 523, - "draft_game_picks_insert_input!" - ], - "on_conflict": [ - 529 - ] - } - ], - "insert_draft_game_players": [ - 573, - { - "objects": [ - 568, - "[draft_game_players_insert_input!]!" - ], - "on_conflict": [ - 574 - ] - } - ], - "insert_draft_game_players_one": [ - 554, - { - "object": [ - 568, - "draft_game_players_insert_input!" - ], - "on_conflict": [ - 574 - ] - } - ], - "insert_draft_games": [ - 618, - { - "objects": [ - 613, - "[draft_games_insert_input!]!" - ], - "on_conflict": [ - 620 - ] - } - ], - "insert_draft_games_one": [ - 599, - { - "object": [ - 613, - "draft_games_insert_input!" - ], - "on_conflict": [ - 620 - ] - } - ], - "insert_e_award_sources": [ - 655, - { - "objects": [ - 652, - "[e_award_sources_insert_input!]!" - ], - "on_conflict": [ - 656 - ] - } - ], - "insert_e_award_sources_one": [ - 645, - { - "object": [ - 652, - "e_award_sources_insert_input!" - ], - "on_conflict": [ - 656 - ] - } - ], - "insert_e_award_tiers": [ - 675, - { - "objects": [ - 672, - "[e_award_tiers_insert_input!]!" - ], - "on_conflict": [ - 676 - ] - } - ], - "insert_e_award_tiers_one": [ - 665, - { - "object": [ - 672, - "e_award_tiers_insert_input!" - ], - "on_conflict": [ - 676 - ] - } - ], - "insert_e_check_in_settings": [ - 695, - { - "objects": [ - 692, - "[e_check_in_settings_insert_input!]!" - ], - "on_conflict": [ - 696 - ] - } - ], - "insert_e_check_in_settings_one": [ - 685, - { - "object": [ - 692, - "e_check_in_settings_insert_input!" - ], - "on_conflict": [ - 696 - ] - } - ], - "insert_e_draft_game_captain_selection": [ - 715, - { - "objects": [ - 712, - "[e_draft_game_captain_selection_insert_input!]!" - ], - "on_conflict": [ - 717 - ] - } - ], - "insert_e_draft_game_captain_selection_one": [ - 705, - { - "object": [ - 712, - "e_draft_game_captain_selection_insert_input!" - ], - "on_conflict": [ - 717 - ] - } - ], - "insert_e_draft_game_draft_order": [ - 736, - { - "objects": [ - 733, - "[e_draft_game_draft_order_insert_input!]!" - ], - "on_conflict": [ - 738 - ] - } - ], - "insert_e_draft_game_draft_order_one": [ - 726, - { - "object": [ - 733, - "e_draft_game_draft_order_insert_input!" - ], - "on_conflict": [ - 738 - ] - } - ], - "insert_e_draft_game_mode": [ - 757, - { - "objects": [ - 754, - "[e_draft_game_mode_insert_input!]!" - ], - "on_conflict": [ - 759 - ] - } - ], - "insert_e_draft_game_mode_one": [ - 747, - { - "object": [ - 754, - "e_draft_game_mode_insert_input!" - ], - "on_conflict": [ - 759 - ] - } - ], - "insert_e_draft_game_player_status": [ - 778, - { - "objects": [ - 775, - "[e_draft_game_player_status_insert_input!]!" - ], - "on_conflict": [ - 780 - ] - } - ], - "insert_e_draft_game_player_status_one": [ - 768, - { - "object": [ - 775, - "e_draft_game_player_status_insert_input!" - ], - "on_conflict": [ - 780 - ] - } - ], - "insert_e_draft_game_status": [ - 799, - { - "objects": [ - 796, - "[e_draft_game_status_insert_input!]!" - ], - "on_conflict": [ - 801 - ] - } - ], - "insert_e_draft_game_status_one": [ - 789, - { - "object": [ - 796, - "e_draft_game_status_insert_input!" - ], - "on_conflict": [ - 801 - ] - } - ], - "insert_e_event_media_access": [ - 820, - { - "objects": [ - 817, - "[e_event_media_access_insert_input!]!" - ], - "on_conflict": [ - 821 - ] - } - ], - "insert_e_event_media_access_one": [ - 810, - { - "object": [ - 817, - "e_event_media_access_insert_input!" - ], - "on_conflict": [ - 821 - ] - } - ], - "insert_e_event_visibility": [ - 840, - { - "objects": [ - 837, - "[e_event_visibility_insert_input!]!" - ], - "on_conflict": [ - 841 - ] - } - ], - "insert_e_event_visibility_one": [ - 830, - { - "object": [ - 837, - "e_event_visibility_insert_input!" - ], - "on_conflict": [ - 841 - ] - } - ], - "insert_e_friend_status": [ - 860, - { - "objects": [ - 857, - "[e_friend_status_insert_input!]!" - ], - "on_conflict": [ - 862 - ] - } - ], - "insert_e_friend_status_one": [ - 850, - { - "object": [ - 857, - "e_friend_status_insert_input!" - ], - "on_conflict": [ - 862 - ] - } - ], - "insert_e_game_cfg_types": [ - 881, - { - "objects": [ - 878, - "[e_game_cfg_types_insert_input!]!" - ], - "on_conflict": [ - 882 - ] - } - ], - "insert_e_game_cfg_types_one": [ - 871, - { - "object": [ - 878, - "e_game_cfg_types_insert_input!" - ], - "on_conflict": [ - 882 - ] - } - ], - "insert_e_game_plugin_channels": [ - 901, - { - "objects": [ - 898, - "[e_game_plugin_channels_insert_input!]!" - ], - "on_conflict": [ - 902 - ] - } - ], - "insert_e_game_plugin_channels_one": [ - 891, - { - "object": [ - 898, - "e_game_plugin_channels_insert_input!" - ], - "on_conflict": [ - 902 - ] - } - ], - "insert_e_game_plugin_install_statuses": [ - 921, - { - "objects": [ - 918, - "[e_game_plugin_install_statuses_insert_input!]!" - ], - "on_conflict": [ - 922 - ] - } - ], - "insert_e_game_plugin_install_statuses_one": [ - 911, - { - "object": [ - 918, - "e_game_plugin_install_statuses_insert_input!" - ], - "on_conflict": [ - 922 - ] - } - ], - "insert_e_game_plugin_kinds": [ - 941, - { - "objects": [ - 938, - "[e_game_plugin_kinds_insert_input!]!" - ], - "on_conflict": [ - 942 - ] - } - ], - "insert_e_game_plugin_kinds_one": [ - 931, - { - "object": [ - 938, - "e_game_plugin_kinds_insert_input!" - ], - "on_conflict": [ - 942 - ] - } - ], - "insert_e_game_server_node_statuses": [ - 961, - { - "objects": [ - 958, - "[e_game_server_node_statuses_insert_input!]!" - ], - "on_conflict": [ - 963 - ] - } - ], - "insert_e_game_server_node_statuses_one": [ - 951, - { - "object": [ - 958, - "e_game_server_node_statuses_insert_input!" - ], - "on_conflict": [ - 963 - ] - } - ], - "insert_e_league_movement_types": [ - 982, - { - "objects": [ - 979, - "[e_league_movement_types_insert_input!]!" - ], - "on_conflict": [ - 984 - ] - } - ], - "insert_e_league_movement_types_one": [ - 972, - { - "object": [ - 979, - "e_league_movement_types_insert_input!" - ], - "on_conflict": [ - 984 - ] - } - ], - "insert_e_league_proposal_statuses": [ - 1003, - { - "objects": [ - 1000, - "[e_league_proposal_statuses_insert_input!]!" - ], - "on_conflict": [ - 1005 - ] - } - ], - "insert_e_league_proposal_statuses_one": [ - 993, - { - "object": [ - 1000, - "e_league_proposal_statuses_insert_input!" - ], - "on_conflict": [ - 1005 - ] - } - ], - "insert_e_league_registration_statuses": [ - 1024, - { - "objects": [ - 1021, - "[e_league_registration_statuses_insert_input!]!" - ], - "on_conflict": [ - 1026 - ] - } - ], - "insert_e_league_registration_statuses_one": [ - 1014, - { - "object": [ - 1021, - "e_league_registration_statuses_insert_input!" - ], - "on_conflict": [ - 1026 - ] - } - ], - "insert_e_league_season_statuses": [ - 1045, - { - "objects": [ - 1042, - "[e_league_season_statuses_insert_input!]!" - ], - "on_conflict": [ - 1047 - ] - } - ], - "insert_e_league_season_statuses_one": [ - 1035, - { - "object": [ - 1042, - "e_league_season_statuses_insert_input!" - ], - "on_conflict": [ - 1047 - ] - } - ], - "insert_e_lobby_access": [ - 1066, - { - "objects": [ - 1063, - "[e_lobby_access_insert_input!]!" - ], - "on_conflict": [ - 1068 - ] - } - ], - "insert_e_lobby_access_one": [ - 1056, - { - "object": [ - 1063, - "e_lobby_access_insert_input!" - ], - "on_conflict": [ - 1068 - ] - } - ], - "insert_e_lobby_player_status": [ - 1087, - { - "objects": [ - 1084, - "[e_lobby_player_status_insert_input!]!" - ], - "on_conflict": [ - 1088 - ] - } - ], - "insert_e_lobby_player_status_one": [ - 1077, - { - "object": [ - 1084, - "e_lobby_player_status_insert_input!" - ], - "on_conflict": [ - 1088 - ] - } - ], - "insert_e_map_pool_types": [ - 1107, - { - "objects": [ - 1104, - "[e_map_pool_types_insert_input!]!" - ], - "on_conflict": [ - 1109 - ] - } - ], - "insert_e_map_pool_types_one": [ - 1097, - { - "object": [ - 1104, - "e_map_pool_types_insert_input!" - ], - "on_conflict": [ - 1109 - ] - } - ], - "insert_e_match_clip_visibility": [ - 1128, - { - "objects": [ - 1125, - "[e_match_clip_visibility_insert_input!]!" - ], - "on_conflict": [ - 1129 - ] - } - ], - "insert_e_match_clip_visibility_one": [ - 1118, - { - "object": [ - 1125, - "e_match_clip_visibility_insert_input!" - ], - "on_conflict": [ - 1129 - ] - } - ], - "insert_e_match_map_status": [ - 1148, - { - "objects": [ - 1145, - "[e_match_map_status_insert_input!]!" - ], - "on_conflict": [ - 1150 - ] - } - ], - "insert_e_match_map_status_one": [ - 1138, - { - "object": [ - 1145, - "e_match_map_status_insert_input!" - ], - "on_conflict": [ - 1150 - ] - } - ], - "insert_e_match_mode": [ - 1169, - { - "objects": [ - 1166, - "[e_match_mode_insert_input!]!" - ], - "on_conflict": [ - 1170 - ] - } - ], - "insert_e_match_mode_one": [ - 1159, - { - "object": [ - 1166, - "e_match_mode_insert_input!" - ], - "on_conflict": [ - 1170 - ] - } - ], - "insert_e_match_party_sources": [ - 1189, - { - "objects": [ - 1186, - "[e_match_party_sources_insert_input!]!" - ], - "on_conflict": [ - 1190 - ] - } - ], - "insert_e_match_party_sources_one": [ - 1179, - { - "object": [ - 1186, - "e_match_party_sources_insert_input!" - ], - "on_conflict": [ - 1190 - ] - } - ], - "insert_e_match_status": [ - 1209, - { - "objects": [ - 1206, - "[e_match_status_insert_input!]!" - ], - "on_conflict": [ - 1211 - ] - } - ], - "insert_e_match_status_one": [ - 1199, - { - "object": [ - 1206, - "e_match_status_insert_input!" - ], - "on_conflict": [ - 1211 - ] - } - ], - "insert_e_match_types": [ - 1230, - { - "objects": [ - 1227, - "[e_match_types_insert_input!]!" - ], - "on_conflict": [ - 1232 - ] - } - ], - "insert_e_match_types_one": [ - 1220, - { - "object": [ - 1227, - "e_match_types_insert_input!" - ], - "on_conflict": [ - 1232 - ] - } - ], - "insert_e_notification_types": [ - 1251, - { - "objects": [ - 1248, - "[e_notification_types_insert_input!]!" - ], - "on_conflict": [ - 1252 - ] - } - ], - "insert_e_notification_types_one": [ - 1241, - { - "object": [ - 1248, - "e_notification_types_insert_input!" - ], - "on_conflict": [ - 1252 - ] - } - ], - "insert_e_objective_types": [ - 1271, - { - "objects": [ - 1268, - "[e_objective_types_insert_input!]!" - ], - "on_conflict": [ - 1272 - ] - } - ], - "insert_e_objective_types_one": [ - 1261, - { - "object": [ - 1268, - "e_objective_types_insert_input!" - ], - "on_conflict": [ - 1272 - ] - } - ], - "insert_e_player_roles": [ - 1291, - { - "objects": [ - 1288, - "[e_player_roles_insert_input!]!" - ], - "on_conflict": [ - 1292 - ] - } - ], - "insert_e_player_roles_one": [ - 1281, - { - "object": [ - 1288, - "e_player_roles_insert_input!" - ], - "on_conflict": [ - 1292 - ] - } - ], - "insert_e_plugin_runtimes": [ - 1311, - { - "objects": [ - 1308, - "[e_plugin_runtimes_insert_input!]!" - ], - "on_conflict": [ - 1312 - ] - } - ], - "insert_e_plugin_runtimes_one": [ - 1301, - { - "object": [ - 1308, - "e_plugin_runtimes_insert_input!" - ], - "on_conflict": [ - 1312 - ] - } - ], - "insert_e_ready_settings": [ - 1331, - { - "objects": [ - 1328, - "[e_ready_settings_insert_input!]!" - ], - "on_conflict": [ - 1332 - ] - } - ], - "insert_e_ready_settings_one": [ - 1321, - { - "object": [ - 1328, - "e_ready_settings_insert_input!" - ], - "on_conflict": [ - 1332 - ] - } - ], - "insert_e_sanction_scopes": [ - 1349, - { - "objects": [ - 1346, - "[e_sanction_scopes_insert_input!]!" - ], - "on_conflict": [ - 1351 - ] - } - ], - "insert_e_sanction_scopes_one": [ - 1341, - { - "object": [ - 1346, - "e_sanction_scopes_insert_input!" - ], - "on_conflict": [ - 1351 - ] - } - ], - "insert_e_sanction_sources": [ - 1370, - { - "objects": [ - 1367, - "[e_sanction_sources_insert_input!]!" - ], - "on_conflict": [ - 1371 - ] - } - ], - "insert_e_sanction_sources_one": [ - 1360, - { - "object": [ - 1367, - "e_sanction_sources_insert_input!" - ], - "on_conflict": [ - 1371 - ] - } - ], - "insert_e_sanction_types": [ - 1397, - { - "objects": [ - 1394, - "[e_sanction_types_insert_input!]!" - ], - "on_conflict": [ - 1399 - ] - } - ], - "insert_e_sanction_types_one": [ - 1387, - { - "object": [ - 1394, - "e_sanction_types_insert_input!" - ], - "on_conflict": [ - 1399 - ] - } - ], - "insert_e_scrim_request_statuses": [ - 1418, - { - "objects": [ - 1415, - "[e_scrim_request_statuses_insert_input!]!" - ], - "on_conflict": [ - 1419 - ] - } - ], - "insert_e_scrim_request_statuses_one": [ - 1408, - { - "object": [ - 1415, - "e_scrim_request_statuses_insert_input!" - ], - "on_conflict": [ - 1419 - ] - } - ], - "insert_e_server_types": [ - 1438, - { - "objects": [ - 1435, - "[e_server_types_insert_input!]!" - ], - "on_conflict": [ - 1439 - ] - } - ], - "insert_e_server_types_one": [ - 1428, - { - "object": [ - 1435, - "e_server_types_insert_input!" - ], - "on_conflict": [ - 1439 - ] - } - ], - "insert_e_sides": [ - 1458, - { - "objects": [ - 1455, - "[e_sides_insert_input!]!" - ], - "on_conflict": [ - 1459 - ] - } - ], - "insert_e_sides_one": [ - 1448, - { - "object": [ - 1455, - "e_sides_insert_input!" - ], - "on_conflict": [ - 1459 - ] - } - ], - "insert_e_system_alert_types": [ - 1478, - { - "objects": [ - 1475, - "[e_system_alert_types_insert_input!]!" - ], - "on_conflict": [ - 1479 - ] - } - ], - "insert_e_system_alert_types_one": [ - 1468, - { - "object": [ - 1475, - "e_system_alert_types_insert_input!" - ], - "on_conflict": [ - 1479 - ] - } - ], - "insert_e_team_roles": [ - 1498, - { - "objects": [ - 1495, - "[e_team_roles_insert_input!]!" - ], - "on_conflict": [ - 1500 - ] - } - ], - "insert_e_team_roles_one": [ - 1488, - { - "object": [ - 1495, - "e_team_roles_insert_input!" - ], - "on_conflict": [ - 1500 - ] - } - ], - "insert_e_team_roster_statuses": [ - 1519, - { - "objects": [ - 1516, - "[e_team_roster_statuses_insert_input!]!" - ], - "on_conflict": [ - 1520 - ] - } - ], - "insert_e_team_roster_statuses_one": [ - 1509, - { - "object": [ - 1516, - "e_team_roster_statuses_insert_input!" - ], - "on_conflict": [ - 1520 - ] - } - ], - "insert_e_timeout_settings": [ - 1539, - { - "objects": [ - 1536, - "[e_timeout_settings_insert_input!]!" - ], - "on_conflict": [ - 1540 - ] - } - ], - "insert_e_timeout_settings_one": [ - 1529, - { - "object": [ - 1536, - "e_timeout_settings_insert_input!" - ], - "on_conflict": [ - 1540 - ] - } - ], - "insert_e_tournament_categories": [ - 1559, - { - "objects": [ - 1556, - "[e_tournament_categories_insert_input!]!" - ], - "on_conflict": [ - 1561 - ] - } - ], - "insert_e_tournament_categories_one": [ - 1549, - { - "object": [ - 1556, - "e_tournament_categories_insert_input!" - ], - "on_conflict": [ - 1561 - ] - } - ], - "insert_e_tournament_free_agent_statuses": [ - 1580, - { - "objects": [ - 1577, - "[e_tournament_free_agent_statuses_insert_input!]!" - ], - "on_conflict": [ - 1582 - ] - } - ], - "insert_e_tournament_free_agent_statuses_one": [ - 1570, - { - "object": [ - 1577, - "e_tournament_free_agent_statuses_insert_input!" - ], - "on_conflict": [ - 1582 - ] - } - ], - "insert_e_tournament_registration_types": [ - 1601, - { - "objects": [ - 1598, - "[e_tournament_registration_types_insert_input!]!" - ], - "on_conflict": [ - 1602 - ] - } - ], - "insert_e_tournament_registration_types_one": [ - 1591, - { - "object": [ - 1598, - "e_tournament_registration_types_insert_input!" - ], - "on_conflict": [ - 1602 - ] - } - ], - "insert_e_tournament_stage_types": [ - 1621, - { - "objects": [ - 1618, - "[e_tournament_stage_types_insert_input!]!" - ], - "on_conflict": [ - 1623 - ] - } - ], - "insert_e_tournament_stage_types_one": [ - 1611, - { - "object": [ - 1618, - "e_tournament_stage_types_insert_input!" - ], - "on_conflict": [ - 1623 - ] - } - ], - "insert_e_tournament_status": [ - 1642, - { - "objects": [ - 1639, - "[e_tournament_status_insert_input!]!" - ], - "on_conflict": [ - 1644 - ] - } - ], - "insert_e_tournament_status_one": [ - 1632, - { - "object": [ - 1639, - "e_tournament_status_insert_input!" - ], - "on_conflict": [ - 1644 - ] - } - ], - "insert_e_utility_practice_access": [ - 1663, - { - "objects": [ - 1660, - "[e_utility_practice_access_insert_input!]!" - ], - "on_conflict": [ - 1664 - ] - } - ], - "insert_e_utility_practice_access_one": [ - 1653, - { - "object": [ - 1660, - "e_utility_practice_access_insert_input!" - ], - "on_conflict": [ - 1664 - ] - } - ], - "insert_e_utility_practice_statuses": [ - 1683, - { - "objects": [ - 1680, - "[e_utility_practice_statuses_insert_input!]!" - ], - "on_conflict": [ - 1685 - ] - } - ], - "insert_e_utility_practice_statuses_one": [ - 1673, - { - "object": [ - 1680, - "e_utility_practice_statuses_insert_input!" - ], - "on_conflict": [ - 1685 - ] - } - ], - "insert_e_utility_sources": [ - 1704, - { - "objects": [ - 1701, - "[e_utility_sources_insert_input!]!" - ], - "on_conflict": [ - 1705 - ] - } - ], - "insert_e_utility_sources_one": [ - 1694, - { - "object": [ - 1701, - "e_utility_sources_insert_input!" - ], - "on_conflict": [ - 1705 - ] - } - ], - "insert_e_utility_techniques": [ - 1724, - { - "objects": [ - 1721, - "[e_utility_techniques_insert_input!]!" - ], - "on_conflict": [ - 1725 - ] - } - ], - "insert_e_utility_techniques_one": [ - 1714, - { - "object": [ - 1721, - "e_utility_techniques_insert_input!" - ], - "on_conflict": [ - 1725 - ] - } - ], - "insert_e_utility_throw_strengths": [ - 1744, - { - "objects": [ - 1741, - "[e_utility_throw_strengths_insert_input!]!" - ], - "on_conflict": [ - 1745 - ] - } - ], - "insert_e_utility_throw_strengths_one": [ - 1734, - { - "object": [ - 1741, - "e_utility_throw_strengths_insert_input!" - ], - "on_conflict": [ - 1745 - ] - } - ], - "insert_e_utility_types": [ - 1764, - { - "objects": [ - 1761, - "[e_utility_types_insert_input!]!" - ], - "on_conflict": [ - 1765 - ] - } - ], - "insert_e_utility_types_one": [ - 1754, - { - "object": [ - 1761, - "e_utility_types_insert_input!" - ], - "on_conflict": [ - 1765 - ] - } - ], - "insert_e_utility_visibility": [ - 1784, - { - "objects": [ - 1781, - "[e_utility_visibility_insert_input!]!" - ], - "on_conflict": [ - 1785 - ] - } - ], - "insert_e_utility_visibility_one": [ - 1774, - { - "object": [ - 1781, - "e_utility_visibility_insert_input!" - ], - "on_conflict": [ - 1785 - ] - } - ], - "insert_e_veto_pick_types": [ - 1804, - { - "objects": [ - 1801, - "[e_veto_pick_types_insert_input!]!" - ], - "on_conflict": [ - 1805 - ] - } - ], - "insert_e_veto_pick_types_one": [ - 1794, - { - "object": [ - 1801, - "e_veto_pick_types_insert_input!" - ], - "on_conflict": [ - 1805 - ] - } - ], - "insert_e_winning_reasons": [ - 1824, - { - "objects": [ - 1821, - "[e_winning_reasons_insert_input!]!" - ], - "on_conflict": [ - 1825 - ] - } - ], - "insert_e_winning_reasons_one": [ - 1814, - { - "object": [ - 1821, - "e_winning_reasons_insert_input!" - ], - "on_conflict": [ - 1825 - ] - } - ], - "insert_event_match_links": [ - 1842, - { - "objects": [ - 1839, - "[event_match_links_insert_input!]!" - ], - "on_conflict": [ - 1843 - ] - } - ], - "insert_event_match_links_one": [ - 1834, - { - "object": [ - 1839, - "event_match_links_insert_input!" - ], - "on_conflict": [ - 1843 - ] - } - ], - "insert_event_media": [ - 1869, - { - "objects": [ - 1864, - "[event_media_insert_input!]!" - ], - "on_conflict": [ - 1871 - ] - } - ], - "insert_event_media_one": [ - 1852, - { - "object": [ - 1864, - "event_media_insert_input!" - ], - "on_conflict": [ - 1871 - ] - } - ], - "insert_event_media_players": [ - 1891, - { - "objects": [ - 1886, - "[event_media_players_insert_input!]!" - ], - "on_conflict": [ - 1892 - ] - } - ], - "insert_event_media_players_one": [ - 1874, - { - "object": [ - 1886, - "event_media_players_insert_input!" - ], - "on_conflict": [ - 1892 - ] - } - ], - "insert_event_organizers": [ - 1952, - { - "objects": [ - 1947, - "[event_organizers_insert_input!]!" - ], - "on_conflict": [ - 1953 - ] - } - ], - "insert_event_organizers_one": [ - 1935, - { - "object": [ - 1947, - "event_organizers_insert_input!" - ], - "on_conflict": [ - 1953 - ] - } - ], - "insert_event_players": [ - 1993, - { - "objects": [ - 1988, - "[event_players_insert_input!]!" - ], - "on_conflict": [ - 1994 - ] - } - ], - "insert_event_players_one": [ - 1976, - { - "object": [ - 1988, - "event_players_insert_input!" - ], - "on_conflict": [ - 1994 - ] - } - ], - "insert_event_teams": [ - 2031, - { - "objects": [ - 2026, - "[event_teams_insert_input!]!" - ], - "on_conflict": [ - 2032 - ] - } - ], - "insert_event_teams_one": [ - 2017, - { - "object": [ - 2026, - "event_teams_insert_input!" - ], - "on_conflict": [ - 2032 - ] - } - ], - "insert_event_tournaments": [ - 2055, - { - "objects": [ - 2050, - "[event_tournaments_insert_input!]!" - ], - "on_conflict": [ - 2056 - ] - } - ], - "insert_event_tournaments_one": [ - 2041, - { - "object": [ - 2050, - "event_tournaments_insert_input!" - ], - "on_conflict": [ - 2056 - ] - } - ], - "insert_events": [ - 2075, - { - "objects": [ - 2072, - "[events_insert_input!]!" - ], - "on_conflict": [ - 2077 - ] - } - ], - "insert_events_one": [ - 2065, - { - "object": [ - 2072, - "events_insert_input!" - ], - "on_conflict": [ - 2077 - ] - } - ], - "insert_friends": [ - 2105, - { - "objects": [ - 2102, - "[friends_insert_input!]!" - ], - "on_conflict": [ - 2106 - ] - } - ], - "insert_friends_one": [ - 2095, - { - "object": [ - 2102, - "friends_insert_input!" - ], - "on_conflict": [ - 2106 - ] - } - ], - "insert_game_mode_plugins": [ - 2145, - { - "objects": [ - 2140, - "[game_mode_plugins_insert_input!]!" - ], - "on_conflict": [ - 2146 - ] - } - ], - "insert_game_mode_plugins_one": [ - 2122, - { - "object": [ - 2140, - "game_mode_plugins_insert_input!" - ], - "on_conflict": [ - 2146 - ] - } - ], - "insert_game_modes": [ - 2180, - { - "objects": [ - 2177, - "[game_modes_insert_input!]!" - ], - "on_conflict": [ - 2182 - ] - } - ], - "insert_game_modes_one": [ - 2172, - { - "object": [ - 2177, - "game_modes_insert_input!" - ], - "on_conflict": [ - 2182 - ] - } - ], - "insert_game_plugin_installs": [ - 2199, - { - "objects": [ - 2196, - "[game_plugin_installs_insert_input!]!" - ], - "on_conflict": [ - 2200 - ] - } - ], - "insert_game_plugin_installs_one": [ - 2191, - { - "object": [ - 2196, - "game_plugin_installs_insert_input!" - ], - "on_conflict": [ - 2200 - ] - } - ], - "insert_game_plugin_versions": [ - 2228, - { - "objects": [ - 2223, - "[game_plugin_versions_insert_input!]!" - ], - "on_conflict": [ - 2229 - ] - } - ], - "insert_game_plugin_versions_one": [ - 2209, - { - "object": [ - 2223, - "game_plugin_versions_insert_input!" - ], - "on_conflict": [ - 2229 - ] - } - ], - "insert_game_plugins": [ - 2267, - { - "objects": [ - 2264, - "[game_plugins_insert_input!]!" - ], - "on_conflict": [ - 2269 - ] - } - ], - "insert_game_plugins_one": [ - 2254, - { - "object": [ - 2264, - "game_plugins_insert_input!" - ], - "on_conflict": [ - 2269 - ] - } - ], - "insert_game_server_node_plugins": [ - 2302, - { - "objects": [ - 2297, - "[game_server_node_plugins_insert_input!]!" - ], - "on_conflict": [ - 2303 - ] - } - ], - "insert_game_server_node_plugins_one": [ - 2286, - { - "object": [ - 2297, - "game_server_node_plugins_insert_input!" - ], - "on_conflict": [ - 2303 - ] - } - ], - "insert_game_server_nodes": [ - 2337, - { - "objects": [ - 2332, - "[game_server_nodes_insert_input!]!" - ], - "on_conflict": [ - 2339 - ] - } - ], - "insert_game_server_nodes_one": [ - 2314, - { - "object": [ - 2332, - "game_server_nodes_insert_input!" - ], - "on_conflict": [ - 2339 - ] - } - ], - "insert_game_versions": [ - 2379, - { - "objects": [ - 2376, - "[game_versions_insert_input!]!" - ], - "on_conflict": [ - 2381 - ] - } - ], - "insert_game_versions_one": [ - 2365, - { - "object": [ - 2376, - "game_versions_insert_input!" - ], - "on_conflict": [ - 2381 - ] - } - ], - "insert_gamedata_signature_validations": [ - 2412, - { - "objects": [ - 2409, - "[gamedata_signature_validations_insert_input!]!" - ], - "on_conflict": [ - 2413 - ] - } - ], - "insert_gamedata_signature_validations_one": [ - 2398, - { - "object": [ - 2409, - "gamedata_signature_validations_insert_input!" - ], - "on_conflict": [ - 2413 - ] - } - ], - "insert_leaderboard_entries": [ - 2451, - { - "objects": [ - 2448, - "[leaderboard_entries_insert_input!]!" - ] - } - ], - "insert_leaderboard_entries_one": [ - 2442, - { - "object": [ - 2448, - "leaderboard_entries_insert_input!" - ] - } - ], - "insert_league_divisions": [ - 2476, - { - "objects": [ - 2473, - "[league_divisions_insert_input!]!" - ], - "on_conflict": [ - 2478 - ] - } - ], - "insert_league_divisions_one": [ - 2466, - { - "object": [ - 2473, - "league_divisions_insert_input!" - ], - "on_conflict": [ - 2478 - ] - } - ], - "insert_league_match_weeks": [ - 2511, - { - "objects": [ - 2506, - "[league_match_weeks_insert_input!]!" - ], - "on_conflict": [ - 2512 - ] - } - ], - "insert_league_match_weeks_one": [ - 2494, - { - "object": [ - 2506, - "league_match_weeks_insert_input!" - ], - "on_conflict": [ - 2512 - ] - } - ], - "insert_league_relegation_playoffs": [ - 2552, - { - "objects": [ - 2547, - "[league_relegation_playoffs_insert_input!]!" - ], - "on_conflict": [ - 2553 - ] - } - ], - "insert_league_relegation_playoffs_one": [ - 2535, - { - "object": [ - 2547, - "league_relegation_playoffs_insert_input!" - ], - "on_conflict": [ - 2553 - ] - } - ], - "insert_league_scheduling_proposals": [ - 2593, - { - "objects": [ - 2588, - "[league_scheduling_proposals_insert_input!]!" - ], - "on_conflict": [ - 2594 - ] - } - ], - "insert_league_scheduling_proposals_one": [ - 2576, - { - "object": [ - 2588, - "league_scheduling_proposals_insert_input!" - ], - "on_conflict": [ - 2594 - ] - } - ], - "insert_league_season_divisions": [ - 2631, - { - "objects": [ - 2626, - "[league_season_divisions_insert_input!]!" - ], - "on_conflict": [ - 2633 - ] - } - ], - "insert_league_season_divisions_one": [ - 2617, - { - "object": [ - 2626, - "league_season_divisions_insert_input!" - ], - "on_conflict": [ - 2633 - ] - } - ], - "insert_league_seasons": [ - 2656, - { - "objects": [ - 2653, - "[league_seasons_insert_input!]!" - ], - "on_conflict": [ - 2658 - ] - } - ], - "insert_league_seasons_one": [ - 2642, - { - "object": [ - 2653, - "league_seasons_insert_input!" - ], - "on_conflict": [ - 2658 - ] - } - ], - "insert_league_team_movements": [ - 2692, - { - "objects": [ - 2687, - "[league_team_movements_insert_input!]!" - ], - "on_conflict": [ - 2693 - ] - } - ], - "insert_league_team_movements_one": [ - 2675, - { - "object": [ - 2687, - "league_team_movements_insert_input!" - ], - "on_conflict": [ - 2693 - ] - } - ], - "insert_league_team_rosters": [ - 2733, - { - "objects": [ - 2728, - "[league_team_rosters_insert_input!]!" - ], - "on_conflict": [ - 2734 - ] - } - ], - "insert_league_team_rosters_one": [ - 2716, - { - "object": [ - 2728, - "league_team_rosters_insert_input!" - ], - "on_conflict": [ - 2734 - ] - } - ], - "insert_league_team_seasons": [ - 2774, - { - "objects": [ - 2769, - "[league_team_seasons_insert_input!]!" - ], - "on_conflict": [ - 2776 - ] - } - ], - "insert_league_team_seasons_one": [ - 2757, - { - "object": [ - 2769, - "league_team_seasons_insert_input!" - ], - "on_conflict": [ - 2776 - ] - } - ], - "insert_league_teams": [ - 2807, - { - "objects": [ - 2804, - "[league_teams_insert_input!]!" - ], - "on_conflict": [ - 2809 - ] - } - ], - "insert_league_teams_one": [ - 2799, - { - "object": [ - 2804, - "league_teams_insert_input!" - ], - "on_conflict": [ - 2809 - ] - } - ], - "insert_lobbies": [ - 2826, - { - "objects": [ - 2823, - "[lobbies_insert_input!]!" - ], - "on_conflict": [ - 2828 - ] - } - ], - "insert_lobbies_one": [ - 2818, - { - "object": [ - 2823, - "lobbies_insert_input!" - ], - "on_conflict": [ - 2828 - ] - } - ], - "insert_lobby_players": [ - 2856, - { - "objects": [ - 2851, - "[lobby_players_insert_input!]!" - ], - "on_conflict": [ - 2857 - ] - } - ], - "insert_lobby_players_one": [ - 2837, - { - "object": [ - 2851, - "lobby_players_insert_input!" - ], - "on_conflict": [ - 2857 - ] - } - ], - "insert_map_callouts": [ - 2894, - { - "objects": [ - 2891, - "[map_callouts_insert_input!]!" - ], - "on_conflict": [ - 2895 - ] - } - ], - "insert_map_callouts_one": [ - 2882, - { - "object": [ - 2891, - "map_callouts_insert_input!" - ], - "on_conflict": [ - 2895 - ] - } - ], - "insert_map_pools": [ - 2913, - { - "objects": [ - 2910, - "[map_pools_insert_input!]!" - ], - "on_conflict": [ - 2915 - ] - } - ], - "insert_map_pools_one": [ - 2905, - { - "object": [ - 2910, - "map_pools_insert_input!" - ], - "on_conflict": [ - 2915 - ] - } - ], - "insert_maps": [ - 2940, - { - "objects": [ - 2935, - "[maps_insert_input!]!" - ], - "on_conflict": [ - 2942 - ] - } - ], - "insert_maps_one": [ - 2924, - { - "object": [ - 2935, - "maps_insert_input!" - ], - "on_conflict": [ - 2942 - ] - } - ], - "insert_match_clips": [ - 2970, - { - "objects": [ - 2965, - "[match_clips_insert_input!]!" - ], - "on_conflict": [ - 2972 - ] - } - ], - "insert_match_clips_one": [ - 2953, - { - "object": [ - 2965, - "match_clips_insert_input!" - ], - "on_conflict": [ - 2972 - ] - } - ], - "insert_match_demo_sessions": [ - 3016, - { - "objects": [ - 3011, - "[match_demo_sessions_insert_input!]!" - ], - "on_conflict": [ - 3017 - ] - } - ], - "insert_match_demo_sessions_one": [ - 2995, - { - "object": [ - 3011, - "match_demo_sessions_insert_input!" - ], - "on_conflict": [ - 3017 - ] - } - ], - "insert_match_lineup_players": [ - 3060, - { - "objects": [ - 3055, - "[match_lineup_players_insert_input!]!" - ], - "on_conflict": [ - 3061 - ] - } - ], - "insert_match_lineup_players_one": [ - 3041, - { - "object": [ - 3055, - "match_lineup_players_insert_input!" - ], - "on_conflict": [ - 3061 - ] - } - ], - "insert_match_lineups": [ - 3103, - { - "objects": [ - 3098, - "[match_lineups_insert_input!]!" - ], - "on_conflict": [ - 3105 - ] - } - ], - "insert_match_lineups_one": [ - 3086, - { - "object": [ - 3098, - "match_lineups_insert_input!" - ], - "on_conflict": [ - 3105 - ] - } - ], - "insert_match_map_demos": [ - 3151, - { - "objects": [ - 3146, - "[match_map_demos_insert_input!]!" - ], - "on_conflict": [ - 3153 - ] - } - ], - "insert_match_map_demos_one": [ - 3128, - { - "object": [ - 3146, - "match_map_demos_insert_input!" - ], - "on_conflict": [ - 3153 - ] - } - ], - "insert_match_map_rounds": [ - 3196, - { - "objects": [ - 3191, - "[match_map_rounds_insert_input!]!" - ], - "on_conflict": [ - 3197 - ] - } - ], - "insert_match_map_rounds_one": [ - 3179, - { - "object": [ - 3191, - "match_map_rounds_insert_input!" - ], - "on_conflict": [ - 3197 - ] - } - ], - "insert_match_map_veto_picks": [ - 3236, - { - "objects": [ - 3231, - "[match_map_veto_picks_insert_input!]!" - ], - "on_conflict": [ - 3237 - ] - } - ], - "insert_match_map_veto_picks_one": [ - 3220, - { - "object": [ - 3231, - "match_map_veto_picks_insert_input!" - ], - "on_conflict": [ - 3237 - ] - } - ], - "insert_match_maps": [ - 3265, - { - "objects": [ - 3260, - "[match_maps_insert_input!]!" - ], - "on_conflict": [ - 3267 - ] - } - ], - "insert_match_maps_one": [ - 3248, - { - "object": [ - 3260, - "match_maps_insert_input!" - ], - "on_conflict": [ - 3267 - ] - } - ], - "insert_match_options": [ - 3309, - { - "objects": [ - 3304, - "[match_options_insert_input!]!" - ], - "on_conflict": [ - 3311 - ] - } - ], - "insert_match_options_one": [ - 3290, - { - "object": [ - 3304, - "match_options_insert_input!" - ], - "on_conflict": [ - 3311 - ] - } - ], - "insert_match_region_veto_picks": [ - 3352, - { - "objects": [ - 3347, - "[match_region_veto_picks_insert_input!]!" - ], - "on_conflict": [ - 3353 - ] - } - ], - "insert_match_region_veto_picks_one": [ - 3336, - { - "object": [ - 3347, - "match_region_veto_picks_insert_input!" - ], - "on_conflict": [ - 3353 - ] - } - ], - "insert_match_streams": [ - 3387, - { - "objects": [ - 3382, - "[match_streams_insert_input!]!" - ], - "on_conflict": [ - 3388 - ] - } - ], - "insert_match_streams_one": [ - 3364, - { - "object": [ - 3382, - "match_streams_insert_input!" - ], - "on_conflict": [ - 3388 - ] - } - ], - "insert_match_type_cfgs": [ - 3422, - { - "objects": [ - 3419, - "[match_type_cfgs_insert_input!]!" - ], - "on_conflict": [ - 3423 - ] - } - ], - "insert_match_type_cfgs_one": [ - 3414, - { - "object": [ - 3419, - "match_type_cfgs_insert_input!" - ], - "on_conflict": [ - 3423 - ] - } - ], - "insert_matches": [ - 3451, - { - "objects": [ - 3446, - "[matches_insert_input!]!" - ], - "on_conflict": [ - 3453 - ] - } - ], - "insert_matches_one": [ - 3432, - { - "object": [ - 3446, - "matches_insert_input!" - ], - "on_conflict": [ - 3453 - ] - } - ], - "insert_migration_hashes_hashes": [ - 3486, - { - "objects": [ - 3483, - "[migration_hashes_hashes_insert_input!]!" - ], - "on_conflict": [ - 3487 - ] - } - ], - "insert_migration_hashes_hashes_one": [ - 3478, - { - "object": [ - 3483, - "migration_hashes_hashes_insert_input!" - ], - "on_conflict": [ - 3487 - ] - } - ], - "insert_my_friends": [ - 3518, - { - "objects": [ - 3513, - "[my_friends_insert_input!]!" - ] - } - ], - "insert_my_friends_one": [ - 3496, - { - "object": [ - 3513, - "my_friends_insert_input!" - ] - } - ], - "insert_news_articles": [ - 3552, - { - "objects": [ - 3549, - "[news_articles_insert_input!]!" - ], - "on_conflict": [ - 3553 - ] - } - ], - "insert_news_articles_one": [ - 3542, - { - "object": [ - 3549, - "news_articles_insert_input!" - ], - "on_conflict": [ - 3553 - ] - } - ], - "insert_notification_preferences": [ - 3579, - { - "objects": [ - 3576, - "[notification_preferences_insert_input!]!" - ], - "on_conflict": [ - 3580 - ] - } - ], - "insert_notification_preferences_one": [ - 3569, - { - "object": [ - 3576, - "notification_preferences_insert_input!" - ], - "on_conflict": [ - 3580 - ] - } - ], - "insert_notifications": [ - 3619, - { - "objects": [ - 3614, - "[notifications_insert_input!]!" - ], - "on_conflict": [ - 3620 - ] - } - ], - "insert_notifications_one": [ - 3596, - { - "object": [ - 3614, - "notifications_insert_input!" - ], - "on_conflict": [ - 3620 - ] - } - ], - "insert_pending_match_import_players": [ - 3666, - { - "objects": [ - 3661, - "[pending_match_import_players_insert_input!]!" - ], - "on_conflict": [ - 3667 - ] - } - ], - "insert_pending_match_import_players_one": [ - 3649, - { - "object": [ - 3661, - "pending_match_import_players_insert_input!" - ], - "on_conflict": [ - 3667 - ] - } - ], - "insert_pending_match_imports": [ - 3700, - { - "objects": [ - 3697, - "[pending_match_imports_insert_input!]!" - ], - "on_conflict": [ - 3702 - ] - } - ], - "insert_pending_match_imports_one": [ - 3690, - { - "object": [ - 3697, - "pending_match_imports_insert_input!" - ], - "on_conflict": [ - 3702 - ] - } - ], - "insert_player_aim_stats_demo": [ - 3728, - { - "objects": [ - 3725, - "[player_aim_stats_demo_insert_input!]!" - ], - "on_conflict": [ - 3729 - ] - } - ], - "insert_player_aim_stats_demo_one": [ - 3718, - { - "object": [ - 3725, - "player_aim_stats_demo_insert_input!" - ], - "on_conflict": [ - 3729 - ] - } - ], - "insert_player_aim_weapon_stats": [ - 3762, - { - "objects": [ - 3757, - "[player_aim_weapon_stats_insert_input!]!" - ], - "on_conflict": [ - 3763 - ] - } - ], - "insert_player_aim_weapon_stats_one": [ - 3745, - { - "object": [ - 3757, - "player_aim_weapon_stats_insert_input!" - ], - "on_conflict": [ - 3763 - ] - } - ], - "insert_player_assists": [ - 3805, - { - "objects": [ - 3800, - "[player_assists_insert_input!]!" - ], - "on_conflict": [ - 3806 - ] - } - ], - "insert_player_assists_one": [ - 3786, - { - "object": [ - 3800, - "player_assists_insert_input!" - ], - "on_conflict": [ - 3806 - ] - } - ], - "insert_player_damages": [ - 3866, - { - "objects": [ - 3861, - "[player_damages_insert_input!]!" - ], - "on_conflict": [ - 3867 - ] - } - ], - "insert_player_damages_one": [ - 3849, - { - "object": [ - 3861, - "player_damages_insert_input!" - ], - "on_conflict": [ - 3867 - ] - } - ], - "insert_player_elo": [ - 3900, - { - "objects": [ - 3897, - "[player_elo_insert_input!]!" - ], - "on_conflict": [ - 3901 - ] - } - ], - "insert_player_elo_one": [ - 3890, - { - "object": [ - 3897, - "player_elo_insert_input!" - ], - "on_conflict": [ - 3901 - ] - } - ], - "insert_player_faceit_rank_history": [ - 3934, - { - "objects": [ - 3929, - "[player_faceit_rank_history_insert_input!]!" - ], - "on_conflict": [ - 3935 - ] - } - ], - "insert_player_faceit_rank_history_one": [ - 3917, - { - "object": [ - 3929, - "player_faceit_rank_history_insert_input!" - ], - "on_conflict": [ - 3935 - ] - } - ], - "insert_player_flashes": [ - 3977, - { - "objects": [ - 3972, - "[player_flashes_insert_input!]!" - ], - "on_conflict": [ - 3978 - ] - } - ], - "insert_player_flashes_one": [ - 3958, - { - "object": [ - 3972, - "player_flashes_insert_input!" - ], - "on_conflict": [ - 3978 - ] - } - ], - "insert_player_kills": [ - 4063, - { - "objects": [ - 4058, - "[player_kills_insert_input!]!" - ], - "on_conflict": [ - 4064 - ] - } - ], - "insert_player_kills_by_weapon": [ - 4032, - { - "objects": [ - 4027, - "[player_kills_by_weapon_insert_input!]!" - ], - "on_conflict": [ - 4033 - ] - } - ], - "insert_player_kills_by_weapon_one": [ - 4015, - { - "object": [ - 4027, - "player_kills_by_weapon_insert_input!" - ], - "on_conflict": [ - 4033 - ] - } - ], - "insert_player_kills_one": [ - 4003, - { - "object": [ - 4058, - "player_kills_insert_input!" - ], - "on_conflict": [ - 4064 - ] - } - ], - "insert_player_leaderboard_rank": [ - 4098, - { - "objects": [ - 4095, - "[player_leaderboard_rank_insert_input!]!" - ] - } - ], - "insert_player_leaderboard_rank_one": [ - 4089, - { - "object": [ - 4095, - "player_leaderboard_rank_insert_input!" - ] - } - ], - "insert_player_match_map_stats": [ - 4129, - { - "objects": [ - 4124, - "[player_match_map_stats_insert_input!]!" - ], - "on_conflict": [ - 4130 - ] - } - ], - "insert_player_match_map_stats_one": [ - 4112, - { - "object": [ - 4124, - "player_match_map_stats_insert_input!" - ], - "on_conflict": [ - 4130 - ] - } - ], - "insert_player_objectives": [ - 4221, - { - "objects": [ - 4216, - "[player_objectives_insert_input!]!" - ], - "on_conflict": [ - 4222 - ] - } - ], - "insert_player_objectives_one": [ - 4204, - { - "object": [ - 4216, - "player_objectives_insert_input!" - ], - "on_conflict": [ - 4222 - ] - } - ], - "insert_player_premier_rank_history": [ - 4280, - { - "objects": [ - 4275, - "[player_premier_rank_history_insert_input!]!" - ], - "on_conflict": [ - 4281 - ] - } - ], - "insert_player_premier_rank_history_one": [ - 4263, - { - "object": [ - 4275, - "player_premier_rank_history_insert_input!" - ], - "on_conflict": [ - 4281 - ] - } - ], - "insert_player_sanctions": [ - 4321, - { - "objects": [ - 4316, - "[player_sanctions_insert_input!]!" - ], - "on_conflict": [ - 4322 - ] - } - ], - "insert_player_sanctions_one": [ - 4304, - { - "object": [ - 4316, - "player_sanctions_insert_input!" - ], - "on_conflict": [ - 4322 - ] - } - ], - "insert_player_season_stats": [ - 4372, - { - "objects": [ - 4367, - "[player_season_stats_insert_input!]!" - ], - "on_conflict": [ - 4373 - ] - } - ], - "insert_player_season_stats_one": [ - 4345, - { - "object": [ - 4367, - "player_season_stats_insert_input!" - ], - "on_conflict": [ - 4373 - ] - } - ], - "insert_player_stats": [ - 4414, - { - "objects": [ - 4411, - "[player_stats_insert_input!]!" - ], - "on_conflict": [ - 4416 - ] - } - ], - "insert_player_stats_one": [ - 4404, - { - "object": [ - 4411, - "player_stats_insert_input!" - ], - "on_conflict": [ - 4416 - ] - } - ], - "insert_player_steam_bot_friend": [ - 4446, - { - "objects": [ - 4443, - "[player_steam_bot_friend_insert_input!]!" - ], - "on_conflict": [ - 4447 - ] - } - ], - "insert_player_steam_bot_friend_one": [ - 4432, - { - "object": [ - 4443, - "player_steam_bot_friend_insert_input!" - ], - "on_conflict": [ - 4447 - ] - } - ], - "insert_player_steam_match_auth": [ - 4474, - { - "objects": [ - 4471, - "[player_steam_match_auth_insert_input!]!" - ], - "on_conflict": [ - 4475 - ] - } - ], - "insert_player_steam_match_auth_one": [ - 4464, - { - "object": [ - 4471, - "player_steam_match_auth_insert_input!" - ], - "on_conflict": [ - 4475 - ] - } - ], - "insert_player_unused_utility": [ - 4508, - { - "objects": [ - 4503, - "[player_unused_utility_insert_input!]!" - ], - "on_conflict": [ - 4509 - ] - } - ], - "insert_player_unused_utility_one": [ - 4491, - { - "object": [ - 4503, - "player_unused_utility_insert_input!" - ], - "on_conflict": [ - 4509 - ] - } - ], - "insert_player_utility": [ - 4549, - { - "objects": [ - 4544, - "[player_utility_insert_input!]!" - ], - "on_conflict": [ - 4550 - ] - } - ], - "insert_player_utility_one": [ - 4532, - { - "object": [ - 4544, - "player_utility_insert_input!" - ], - "on_conflict": [ - 4550 - ] - } - ], - "insert_players": [ - 4616, - { - "objects": [ - 4613, - "[players_insert_input!]!" - ], - "on_conflict": [ - 4618 - ] - } - ], - "insert_players_one": [ - 4606, - { - "object": [ - 4613, - "players_insert_input!" - ], - "on_conflict": [ - 4618 - ] - } - ], - "insert_plugin_versions": [ - 4644, - { - "objects": [ - 4641, - "[plugin_versions_insert_input!]!" - ], - "on_conflict": [ - 4645 - ] - } - ], - "insert_plugin_versions_one": [ - 4634, - { - "object": [ - 4641, - "plugin_versions_insert_input!" - ], - "on_conflict": [ - 4645 - ] - } - ], - "insert_push_subscriptions": [ - 4671, - { - "objects": [ - 4668, - "[push_subscriptions_insert_input!]!" - ], - "on_conflict": [ - 4672 - ] - } - ], - "insert_push_subscriptions_one": [ - 4661, - { - "object": [ - 4668, - "push_subscriptions_insert_input!" - ], - "on_conflict": [ - 4672 - ] - } - ], - "insert_role_permissions": [ - 4699, - { - "objects": [ - 4696, - "[role_permissions_insert_input!]!" - ] - } - ], - "insert_role_permissions_one": [ - 4692, - { - "object": [ - 4696, - "role_permissions_insert_input!" - ] - } - ], - "insert_seasons": [ - 4716, - { - "objects": [ - 4713, - "[seasons_insert_input!]!" - ], - "on_conflict": [ - 4718 - ] - } - ], - "insert_seasons_one": [ - 4706, - { - "object": [ - 4713, - "seasons_insert_input!" - ], - "on_conflict": [ - 4718 - ] - } - ], - "insert_server_regions": [ - 4743, - { - "objects": [ - 4740, - "[server_regions_insert_input!]!" - ], - "on_conflict": [ - 4745 - ] - } - ], - "insert_server_regions_one": [ - 4734, - { - "object": [ - 4740, - "server_regions_insert_input!" - ], - "on_conflict": [ - 4745 - ] - } - ], - "insert_servers": [ - 4784, - { - "objects": [ - 4779, - "[servers_insert_input!]!" - ], - "on_conflict": [ - 4786 - ] - } - ], - "insert_servers_one": [ - 4761, - { - "object": [ - 4779, - "servers_insert_input!" - ], - "on_conflict": [ - 4786 - ] - } - ], - "insert_settings": [ - 4820, - { - "objects": [ - 4817, - "[settings_insert_input!]!" - ], - "on_conflict": [ - 4821 - ] - } - ], - "insert_settings_one": [ - 4812, - { - "object": [ - 4817, - "settings_insert_input!" - ], - "on_conflict": [ - 4821 - ] - } - ], - "insert_steam_account_claims": [ - 4846, - { - "objects": [ - 4841, - "[steam_account_claims_insert_input!]!" - ], - "on_conflict": [ - 4847 - ] - } - ], - "insert_steam_account_claims_one": [ - 4832, - { - "object": [ - 4841, - "steam_account_claims_insert_input!" - ], - "on_conflict": [ - 4847 - ] - } - ], - "insert_steam_accounts": [ - 4866, - { - "objects": [ - 4863, - "[steam_accounts_insert_input!]!" - ], - "on_conflict": [ - 4868 - ] - } - ], - "insert_steam_accounts_one": [ - 4856, - { - "object": [ - 4863, - "steam_accounts_insert_input!" - ], - "on_conflict": [ - 4868 - ] - } - ], - "insert_system_alerts": [ - 4894, - { - "objects": [ - 4891, - "[system_alerts_insert_input!]!" - ], - "on_conflict": [ - 4895 - ] - } - ], - "insert_system_alerts_one": [ - 4884, - { - "object": [ - 4891, - "system_alerts_insert_input!" - ], - "on_conflict": [ - 4895 - ] - } - ], - "insert_team_invites": [ - 4928, - { - "objects": [ - 4923, - "[team_invites_insert_input!]!" - ], - "on_conflict": [ - 4929 - ] - } - ], - "insert_team_invites_one": [ - 4911, - { - "object": [ - 4923, - "team_invites_insert_input!" - ], - "on_conflict": [ - 4929 - ] - } - ], - "insert_team_roster": [ - 4971, - { - "objects": [ - 4966, - "[team_roster_insert_input!]!" - ], - "on_conflict": [ - 4972 - ] - } - ], - "insert_team_roster_one": [ - 4952, - { - "object": [ - 4966, - "team_roster_insert_input!" - ], - "on_conflict": [ - 4972 - ] - } - ], - "insert_team_scrim_alerts": [ - 5007, - { - "objects": [ - 5004, - "[team_scrim_alerts_insert_input!]!" - ], - "on_conflict": [ - 5008 - ] - } - ], - "insert_team_scrim_alerts_one": [ - 4997, - { - "object": [ - 5004, - "team_scrim_alerts_insert_input!" - ], - "on_conflict": [ - 5008 - ] - } - ], - "insert_team_scrim_availability": [ - 5040, - { - "objects": [ - 5035, - "[team_scrim_availability_insert_input!]!" - ], - "on_conflict": [ - 5041 - ] - } - ], - "insert_team_scrim_availability_one": [ - 5024, - { - "object": [ - 5035, - "team_scrim_availability_insert_input!" - ], - "on_conflict": [ - 5041 - ] - } - ], - "insert_team_scrim_request_proposals": [ - 5069, - { - "objects": [ - 5064, - "[team_scrim_request_proposals_insert_input!]!" - ], - "on_conflict": [ - 5070 - ] - } - ], - "insert_team_scrim_request_proposals_one": [ - 5052, - { - "object": [ - 5064, - "team_scrim_request_proposals_insert_input!" - ], - "on_conflict": [ - 5070 - ] - } - ], - "insert_team_scrim_requests": [ - 5112, - { - "objects": [ - 5107, - "[team_scrim_requests_insert_input!]!" - ], - "on_conflict": [ - 5114 - ] - } - ], - "insert_team_scrim_requests_one": [ - 5093, - { - "object": [ - 5107, - "team_scrim_requests_insert_input!" - ], - "on_conflict": [ - 5114 - ] - } - ], - "insert_team_scrim_settings": [ - 5149, - { - "objects": [ - 5146, - "[team_scrim_settings_insert_input!]!" - ], - "on_conflict": [ - 5151 - ] - } - ], - "insert_team_scrim_settings_one": [ - 5139, - { - "object": [ - 5146, - "team_scrim_settings_insert_input!" - ], - "on_conflict": [ - 5151 - ] - } - ], - "insert_team_suggestions": [ - 5177, - { - "objects": [ - 5174, - "[team_suggestions_insert_input!]!" - ], - "on_conflict": [ - 5178 - ] - } - ], - "insert_team_suggestions_one": [ - 5167, - { - "object": [ - 5174, - "team_suggestions_insert_input!" - ], - "on_conflict": [ - 5178 - ] - } - ], - "insert_teams": [ - 5213, - { - "objects": [ - 5208, - "[teams_insert_input!]!" - ], - "on_conflict": [ - 5215 - ] - } - ], - "insert_teams_one": [ - 5194, - { - "object": [ - 5208, - "teams_insert_input!" - ], - "on_conflict": [ - 5215 - ] - } - ], - "insert_tournament_awards": [ - 5262, - { - "objects": [ - 5257, - "[tournament_awards_insert_input!]!" - ], - "on_conflict": [ - 5264 - ] - } - ], - "insert_tournament_awards_one": [ - 5245, - { - "object": [ - 5257, - "tournament_awards_insert_input!" - ], - "on_conflict": [ - 5264 - ] - } - ], - "insert_tournament_brackets": [ - 5306, - { - "objects": [ - 5301, - "[tournament_brackets_insert_input!]!" - ], - "on_conflict": [ - 5308 - ] - } - ], - "insert_tournament_brackets_one": [ - 5287, - { - "object": [ - 5301, - "tournament_brackets_insert_input!" - ], - "on_conflict": [ - 5308 - ] - } - ], - "insert_tournament_categories": [ - 5347, - { - "objects": [ - 5342, - "[tournament_categories_insert_input!]!" - ], - "on_conflict": [ - 5348 - ] - } - ], - "insert_tournament_categories_one": [ - 5333, - { - "object": [ - 5342, - "tournament_categories_insert_input!" - ], - "on_conflict": [ - 5348 - ] - } - ], - "insert_tournament_free_agents": [ - 5374, - { - "objects": [ - 5369, - "[tournament_free_agents_insert_input!]!" - ], - "on_conflict": [ - 5375 - ] - } - ], - "insert_tournament_free_agents_one": [ - 5357, - { - "object": [ - 5369, - "tournament_free_agents_insert_input!" - ], - "on_conflict": [ - 5375 - ] - } - ], - "insert_tournament_invite_code_uses": [ - 5415, - { - "objects": [ - 5410, - "[tournament_invite_code_uses_insert_input!]!" - ], - "on_conflict": [ - 5416 - ] - } - ], - "insert_tournament_invite_code_uses_one": [ - 5398, - { - "object": [ - 5410, - "tournament_invite_code_uses_insert_input!" - ], - "on_conflict": [ - 5416 - ] - } - ], - "insert_tournament_invite_codes": [ - 5449, - { - "objects": [ - 5446, - "[tournament_invite_codes_insert_input!]!" - ], - "on_conflict": [ - 5451 - ] - } - ], - "insert_tournament_invite_codes_one": [ - 5439, - { - "object": [ - 5446, - "tournament_invite_codes_insert_input!" - ], - "on_conflict": [ - 5451 - ] - } - ], - "insert_tournament_invites": [ - 5477, - { - "objects": [ - 5474, - "[tournament_invites_insert_input!]!" - ], - "on_conflict": [ - 5478 - ] - } - ], - "insert_tournament_invites_one": [ - 5467, - { - "object": [ - 5474, - "tournament_invites_insert_input!" - ], - "on_conflict": [ - 5478 - ] - } - ], - "insert_tournament_leaderboard_entries": [ - 5503, - { - "objects": [ - 5500, - "[tournament_leaderboard_entries_insert_input!]!" - ] - } - ], - "insert_tournament_leaderboard_entries_one": [ - 5494, - { - "object": [ - 5500, - "tournament_leaderboard_entries_insert_input!" - ] - } - ], - "insert_tournament_no_shows": [ - 5527, - { - "objects": [ - 5524, - "[tournament_no_shows_insert_input!]!" - ], - "on_conflict": [ - 5528 - ] - } - ], - "insert_tournament_no_shows_one": [ - 5517, - { - "object": [ - 5524, - "tournament_no_shows_insert_input!" - ], - "on_conflict": [ - 5528 - ] - } - ], - "insert_tournament_organizer_teams": [ - 5558, - { - "objects": [ - 5553, - "[tournament_organizer_teams_insert_input!]!" - ], - "on_conflict": [ - 5559 - ] - } - ], - "insert_tournament_organizer_teams_one": [ - 5544, - { - "object": [ - 5553, - "tournament_organizer_teams_insert_input!" - ], - "on_conflict": [ - 5559 - ] - } - ], - "insert_tournament_organizers": [ - 5585, - { - "objects": [ - 5580, - "[tournament_organizers_insert_input!]!" - ], - "on_conflict": [ - 5586 - ] - } - ], - "insert_tournament_organizers_one": [ - 5568, - { - "object": [ - 5580, - "tournament_organizers_insert_input!" - ], - "on_conflict": [ - 5586 - ] - } - ], - "insert_tournament_prizes": [ - 5626, - { - "objects": [ - 5621, - "[tournament_prizes_insert_input!]!" - ], - "on_conflict": [ - 5627 - ] - } - ], - "insert_tournament_prizes_one": [ - 5609, - { - "object": [ - 5621, - "tournament_prizes_insert_input!" - ], - "on_conflict": [ - 5627 - ] - } - ], - "insert_tournament_registration_unlocks": [ - 5660, - { - "objects": [ - 5657, - "[tournament_registration_unlocks_insert_input!]!" - ], - "on_conflict": [ - 5661 - ] - } - ], - "insert_tournament_registration_unlocks_one": [ - 5650, - { - "object": [ - 5657, - "tournament_registration_unlocks_insert_input!" - ], - "on_conflict": [ - 5661 - ] - } - ], - "insert_tournament_stage_windows": [ - 5693, - { - "objects": [ - 5688, - "[tournament_stage_windows_insert_input!]!" - ], - "on_conflict": [ - 5694 - ] - } - ], - "insert_tournament_stage_windows_one": [ - 5676, - { - "object": [ - 5688, - "tournament_stage_windows_insert_input!" - ], - "on_conflict": [ - 5694 - ] - } - ], - "insert_tournament_stages": [ - 5740, - { - "objects": [ - 5735, - "[tournament_stages_insert_input!]!" - ], - "on_conflict": [ - 5742 - ] - } - ], - "insert_tournament_stages_one": [ - 5717, - { - "object": [ - 5735, - "tournament_stages_insert_input!" - ], - "on_conflict": [ - 5742 - ] - } - ], - "insert_tournament_team_invites": [ - 5785, - { - "objects": [ - 5780, - "[tournament_team_invites_insert_input!]!" - ], - "on_conflict": [ - 5786 - ] - } - ], - "insert_tournament_team_invites_one": [ - 5768, - { - "object": [ - 5780, - "tournament_team_invites_insert_input!" - ], - "on_conflict": [ - 5786 - ] - } - ], - "insert_tournament_team_roster": [ - 5826, - { - "objects": [ - 5821, - "[tournament_team_roster_insert_input!]!" - ], - "on_conflict": [ - 5827 - ] - } - ], - "insert_tournament_team_roster_one": [ - 5809, - { - "object": [ - 5821, - "tournament_team_roster_insert_input!" - ], - "on_conflict": [ - 5827 - ] - } - ], - "insert_tournament_teams": [ - 5869, - { - "objects": [ - 5864, - "[tournament_teams_insert_input!]!" - ], - "on_conflict": [ - 5871 - ] - } - ], - "insert_tournament_teams_one": [ - 5850, - { - "object": [ - 5864, - "tournament_teams_insert_input!" - ], - "on_conflict": [ - 5871 - ] - } - ], - "insert_tournaments": [ - 5925, - { - "objects": [ - 5920, - "[tournaments_insert_input!]!" - ], - "on_conflict": [ - 5927 - ] - } - ], - "insert_tournaments_one": [ - 5896, - { - "object": [ - 5920, - "tournaments_insert_input!" - ], - "on_conflict": [ - 5927 - ] - } - ], - "insert_utility_collection_items": [ - 5977, - { - "objects": [ - 5972, - "[utility_collection_items_insert_input!]!" - ], - "on_conflict": [ - 5978 - ] - } - ], - "insert_utility_collection_items_one": [ - 5960, - { - "object": [ - 5972, - "utility_collection_items_insert_input!" - ], - "on_conflict": [ - 5978 - ] - } - ], - "insert_utility_collections": [ - 6011, - { - "objects": [ - 6008, - "[utility_collections_insert_input!]!" - ], - "on_conflict": [ - 6013 - ] - } - ], - "insert_utility_collections_one": [ - 6001, - { - "object": [ - 6008, - "utility_collections_insert_input!" - ], - "on_conflict": [ - 6013 - ] - } - ], - "insert_utility_demo_mines": [ - 6039, - { - "objects": [ - 6036, - "[utility_demo_mines_insert_input!]!" - ], - "on_conflict": [ - 6040 - ] - } - ], - "insert_utility_demo_mines_one": [ - 6029, - { - "object": [ - 6036, - "utility_demo_mines_insert_input!" - ], - "on_conflict": [ - 6040 - ] - } - ], - "insert_utility_demo_throws": [ - 6066, - { - "objects": [ - 6063, - "[utility_demo_throws_insert_input!]!" - ], - "on_conflict": [ - 6067 - ] - } - ], - "insert_utility_demo_throws_one": [ - 6056, - { - "object": [ - 6063, - "utility_demo_throws_insert_input!" - ], - "on_conflict": [ - 6067 - ] - } - ], - "insert_utility_drift_results": [ - 6110, - { - "objects": [ - 6105, - "[utility_drift_results_insert_input!]!" - ], - "on_conflict": [ - 6111 - ] - } - ], - "insert_utility_drift_results_one": [ - 6083, - { - "object": [ - 6105, - "utility_drift_results_insert_input!" - ], - "on_conflict": [ - 6111 - ] - } - ], - "insert_utility_drift_scans": [ - 6152, - { - "objects": [ - 6149, - "[utility_drift_scans_insert_input!]!" - ], - "on_conflict": [ - 6154 - ] - } - ], - "insert_utility_drift_scans_one": [ - 6142, - { - "object": [ - 6149, - "utility_drift_scans_insert_input!" - ], - "on_conflict": [ - 6154 - ] - } - ], - "insert_utility_lineup_favorites": [ - 6187, - { - "objects": [ - 6182, - "[utility_lineup_favorites_insert_input!]!" - ], - "on_conflict": [ - 6188 - ] - } - ], - "insert_utility_lineup_favorites_one": [ - 6170, - { - "object": [ - 6182, - "utility_lineup_favorites_insert_input!" - ], - "on_conflict": [ - 6188 - ] - } - ], - "insert_utility_lineup_progress": [ - 6238, - { - "objects": [ - 6233, - "[utility_lineup_progress_insert_input!]!" - ], - "on_conflict": [ - 6239 - ] - } - ], - "insert_utility_lineup_progress_one": [ - 6211, - { - "object": [ - 6233, - "utility_lineup_progress_insert_input!" - ], - "on_conflict": [ - 6239 - ] - } - ], - "insert_utility_lineup_renders": [ - 6293, - { - "objects": [ - 6288, - "[utility_lineup_renders_insert_input!]!" - ], - "on_conflict": [ - 6294 - ] - } - ], - "insert_utility_lineup_renders_one": [ - 6270, - { - "object": [ - 6288, - "utility_lineup_renders_insert_input!" - ], - "on_conflict": [ - 6294 - ] - } - ], - "insert_utility_lineup_repairs": [ - 6347, - { - "objects": [ - 6342, - "[utility_lineup_repairs_insert_input!]!" - ], - "on_conflict": [ - 6348 - ] - } - ], - "insert_utility_lineup_repairs_one": [ - 6320, - { - "object": [ - 6342, - "utility_lineup_repairs_insert_input!" - ], - "on_conflict": [ - 6348 - ] - } - ], - "insert_utility_lineup_votes": [ - 6396, - { - "objects": [ - 6391, - "[utility_lineup_votes_insert_input!]!" - ], - "on_conflict": [ - 6397 - ] - } - ], - "insert_utility_lineup_votes_one": [ - 6379, - { - "object": [ - 6391, - "utility_lineup_votes_insert_input!" - ], - "on_conflict": [ - 6397 - ] - } - ], - "insert_utility_lineups": [ - 6453, - { - "objects": [ - 6448, - "[utility_lineups_insert_input!]!" - ], - "on_conflict": [ - 6455 - ] - } - ], - "insert_utility_lineups_one": [ - 6420, - { - "object": [ - 6448, - "utility_lineups_insert_input!" - ], - "on_conflict": [ - 6455 - ] - } - ], - "insert_utility_meta_lineups": [ - 6499, - { - "objects": [ - 6496, - "[utility_meta_lineups_insert_input!]!" - ], - "on_conflict": [ - 6500 - ] - } - ], - "insert_utility_meta_lineups_one": [ - 6489, - { - "object": [ - 6496, - "utility_meta_lineups_insert_input!" - ], - "on_conflict": [ - 6500 - ] - } - ], - "insert_utility_playbook_steps": [ - 6533, - { - "objects": [ - 6528, - "[utility_playbook_steps_insert_input!]!" - ], - "on_conflict": [ - 6534 - ] - } - ], - "insert_utility_playbook_steps_one": [ - 6516, - { - "object": [ - 6528, - "utility_playbook_steps_insert_input!" - ], - "on_conflict": [ - 6534 - ] - } - ], - "insert_utility_playbooks": [ - 6567, - { - "objects": [ - 6564, - "[utility_playbooks_insert_input!]!" - ], - "on_conflict": [ - 6569 - ] - } - ], - "insert_utility_playbooks_one": [ - 6557, - { - "object": [ - 6564, - "utility_playbooks_insert_input!" - ], - "on_conflict": [ - 6569 - ] - } - ], - "insert_utility_practice_invites": [ - 6602, - { - "objects": [ - 6597, - "[utility_practice_invites_insert_input!]!" - ], - "on_conflict": [ - 6603 - ] - } - ], - "insert_utility_practice_invites_one": [ - 6585, - { - "object": [ - 6597, - "utility_practice_invites_insert_input!" - ], - "on_conflict": [ - 6603 - ] - } - ], - "insert_utility_practice_sessions": [ - 6645, - { - "objects": [ - 6640, - "[utility_practice_sessions_insert_input!]!" - ], - "on_conflict": [ - 6647 - ] - } - ], - "insert_utility_practice_sessions_one": [ - 6626, - { - "object": [ - 6640, - "utility_practice_sessions_insert_input!" - ], - "on_conflict": [ - 6647 - ] - } - ], - "insert_v_match_captains": [ - 6837, - { - "objects": [ - 6834, - "[v_match_captains_insert_input!]!" - ] - } - ], - "insert_v_match_captains_one": [ - 6828, - { - "object": [ - 6834, - "v_match_captains_insert_input!" - ] - } - ], - "insert_v_match_map_backup_rounds": [ - 6948, - { - "objects": [ - 6945, - "[v_match_map_backup_rounds_insert_input!]!" - ] - } - ], - "insert_v_match_map_backup_rounds_one": [ - 6939, - { - "object": [ - 6945, - "v_match_map_backup_rounds_insert_input!" - ] - } - ], - "insert_v_player_match_map_hltv": [ - 7170, - { - "objects": [ - 7165, - "[v_player_match_map_hltv_insert_input!]!" - ] - } - ], - "insert_v_player_match_map_hltv_one": [ - 7154, - { - "object": [ - 7165, - "v_player_match_map_hltv_insert_input!" - ] - } - ], - "insert_v_pool_maps": [ - 7347, - { - "objects": [ - 7342, - "[v_pool_maps_insert_input!]!" - ] - } - ], - "insert_v_pool_maps_one": [ - 7332, - { - "object": [ - 7342, - "v_pool_maps_insert_input!" - ] - } - ], - "insert_v_team_stage_results": [ - 7441, - { - "objects": [ - 7436, - "[v_team_stage_results_insert_input!]!" - ], - "on_conflict": [ - 7443 - ] - } - ], - "insert_v_team_stage_results_one": [ - 7414, - { - "object": [ - 7436, - "v_team_stage_results_insert_input!" - ], - "on_conflict": [ - 7443 - ] - } - ], - "installGamePlugin": [ - 88, - { - "slug": [ - 85, - "String!" - ], - "version": [ - 85 - ] - } - ], - "inviteToUtilityPractice": [ - 88, - { - "session_id": [ - 6672, - "uuid!" - ], - "steam_ids": [ - 85, - "[String!]!" - ] - } - ], - "joinDraftGame": [ - 88, - { - "draftGameId": [ - 6672, - "uuid!" - ], - "inviteCode": [ - 85 - ] - } - ], - "joinDraftGameAsParty": [ - 88, - { - "draftGameId": [ - 6672, - "uuid!" - ], - "inviteCode": [ - 85 - ] - } - ], - "joinTournamentAsFreeAgent": [ - 88, - { - "tournament_id": [ - 6672, - "uuid!" - ], - "with_party": [ - 6 - ] - } - ], - "joinUtilityPractice": [ - 137, - { - "invite_code": [ - 85 - ], - "session_id": [ - 6672 - ] - } - ], - "kickServerPlayer": [ - 43, - { - "reason": [ - 85 - ], - "serverId": [ - 85, - "String!" - ], - "steam_id": [ - 85, - "String!" - ] - } - ], - "league_award_forfeit": [ - 3432, - { - "args": [ - 2465, - "league_award_forfeit_args!" - ], - "distinct_on": [ - 3456, - "[matches_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3454, - "[matches_order_by!]" - ], - "where": [ - 3443 - ] - } - ], - "leaveLineup": [ - 88, - { - "match_id": [ - 85, - "String!" - ] - } - ], - "leaveTournamentAsFreeAgent": [ - 88, - { - "tournament_id": [ - 6672, - "uuid!" - ] - } - ], - "leaveUtilityPractice": [ - 88, - { - "session_id": [ - 6672, - "uuid!" - ] - } - ], - "linkSteamMatchHistory": [ - 77, - { - "auth_code": [ - 85, - "String!" - ], - "share_code": [ - 85, - "String!" - ] - } - ], - "loadFixtures": [ - 88 - ], - "loadUtilityPlaybookIntoSession": [ - 88, - { - "playbook_id": [ - 6672 - ], - "session_id": [ - 6672, - "uuid!" - ] - } - ], - "logout": [ - 88 - ], - "moveServerItem": [ - 88, - { - "dest_path": [ - 85, - "String!" - ], - "node_id": [ - 85, - "String!" - ], - "server_id": [ - 85 - ], - "source_path": [ - 85, - "String!" - ] - } - ], - "orphanedDemosScanResult": [ - 56 - ], - "pauseClipRenderBatch": [ - 88, - { - "match_map_id": [ - 6672, - "uuid!" - ] - } - ], - "pollSteamMatchHistory": [ - 78 - ], - "previewDraftGame": [ - 25, - { - "draftGameId": [ - 6672, - "uuid!" - ], - "inviteCode": [ - 85 - ] - } - ], - "previewGameMode": [ - 60, - { - "gameModeId": [ - 6672, - "uuid!" - ] - } - ], - "purgeUtilityLineupSource": [ - 139, - { - "dry_run": [ - 6 - ], - "origin_source": [ - 85, - "String!" - ] - } - ], - "queueClipFromPreset": [ - 16, - { - "fps": [ - 41 - ], - "match_map_id": [ - 6672, - "uuid!" - ], - "preset": [ - 85, - "String!" - ], - "resolution": [ - 85 - ], - "target_name": [ - 85 - ], - "target_steam_id": [ - 85, - "String!" - ], - "title": [ - 85 - ] - } - ], - "randomizeTeams": [ - 88, - { - "match_id": [ - 6672, - "uuid!" - ] - } - ], - "readmitTournamentTeam": [ - 88, - { - "tournament_id": [ - 6672, - "uuid!" - ], - "tournament_team_id": [ - 6672, - "uuid!" - ] - } - ], - "rebootMatchServer": [ - 88, - { - "match_id": [ - 6672, - "uuid!" - ] - } - ], - "recalculate_tournament_awards": [ - 243, - { - "args": [ - 4688, - "recalculate_tournament_awards_args!" - ], - "distinct_on": [ - 264, - "[award_recipients_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 262, - "[award_recipients_order_by!]" - ], - "where": [ - 252 - ] - } - ], - "recomputePlayerElo": [ - 64 - ], - "recomputePlayerEloStatus": [ - 65 - ], - "reconcileNodePlugins": [ - 66, - { - "nodeId": [ - 85, - "String!" - ] - } - ], - "reconnectLive": [ - 88, - { - "match_id": [ - 6672, - "uuid!" - ] - } - ], - "redeemTournamentInviteCode": [ - 88, - { - "code": [ - 85, - "String!" - ], - "tournament_id": [ - 6672, - "uuid!" - ] - } - ], - "refreshAllPlayers": [ - 67 - ], - "refreshAllPlayersStatus": [ - 68 - ], - "refreshFaceitRank": [ - 88, - { - "steam_id": [ - 85, - "String!" - ] - } - ], - "refreshLiveHud": [ - 88, - { - "match_id": [ - 6672, - "uuid!" - ] - } - ], - "registerName": [ - 88, - { - "name": [ - 85, - "String!" - ] - } - ], - "remineUtilityMeta": [ - 140 - ], - "removeFixtures": [ - 88 - ], - "removeSteamPresenceBotAccount": [ - 88, - { - "account_id": [ - 85, - "String!" - ] - } - ], - "remove_league_team_from_season": [ - 2757, - { - "args": [ - 4689, - "remove_league_team_from_season_args!" - ], - "distinct_on": [ - 2779, - "[league_team_seasons_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2777, - "[league_team_seasons_order_by!]" - ], - "where": [ - 2766 - ] - } - ], - "renameServerItem": [ - 88, - { - "new_path": [ - 85, - "String!" - ], - "node_id": [ - 85, - "String!" - ], - "old_path": [ - 85, - "String!" - ], - "server_id": [ - 85 - ] - } - ], - "renderUtilityLineupPreview": [ - 142, - { - "utility_lineup_id": [ - 6672, - "uuid!" - ] - } - ], - "reorder_league_divisions": [ - 2466, - { - "args": [ - 4690, - "reorder_league_divisions_args!" - ], - "distinct_on": [ - 2481, - "[league_divisions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2479, - "[league_divisions_order_by!]" - ], - "where": [ - 2470 - ] - } - ], - "repairUtilityLineup": [ - 147, - { - "session_id": [ - 6672, - "uuid!" - ], - "utility_lineup_id": [ - 6672, - "uuid!" - ] - } - ], - "reparseAllDemos": [ - 69 - ], - "reparseAllDemosStatus": [ - 70 - ], - "reparseDemo": [ - 88, - { - "match_map_id": [ - 6672, - "uuid!" - ] - } - ], - "reparseMatchDemos": [ - 88, - { - "match_id": [ - 6672, - "uuid!" - ] - } - ], - "requestNameChange": [ - 88, - { - "name": [ - 85, - "String!" - ], - "steam_id": [ - 312, - "bigint!" - ] - } - ], - "requeueClipRender": [ - 88, - { - "job_id": [ - 6672, - "uuid!" - ] - } - ], - "respondDraftInvite": [ - 88, - { - "accept": [ - 6, - "Boolean!" - ], - "draftGameId": [ - 6672, - "uuid!" - ] - } - ], - "respondToScrimRequest": [ - 88, - { - "accept": [ - 6, - "Boolean!" - ], - "request_id": [ - 6672, - "uuid!" - ] - } - ], - "restartService": [ - 88, - { - "service": [ - 85, - "String!" - ] - } - ], - "restart_league_season": [ - 2642, - { - "args": [ - 4691, - "restart_league_season_args!" - ], - "distinct_on": [ - 2662, - "[league_seasons_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2659, - "[league_seasons_order_by!]" - ], - "where": [ - 2647 - ] - } - ], - "resumeClipRenderBatch": [ - 88, - { - "match_map_id": [ - 6672, - "uuid!" - ] - } - ], - "retryClipRenderBatch": [ - 88, - { - "match_map_id": [ - 6672, - "uuid!" - ], - "only_failed": [ - 6 - ] - } - ], - "retryPendingMatchImport": [ - 57, - { - "valve_match_id": [ - 85, - "String!" - ] - } - ], - "revokeAward": [ - 88, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "revokeTournamentInviteCode": [ - 88, - { - "invite_code_id": [ - 6672, - "uuid!" - ] - } - ], - "sanctionServerPlayer": [ - 71, - { - "duration": [ - 32 - ], - "reason": [ - 85 - ], - "serverId": [ - 85 - ], - "steam_id": [ - 85, - "String!" - ], - "type": [ - 85, - "String!" - ] - } - ], - "saveAward": [ - 4, - { - "allow_multiple": [ - 6 - ], - "description": [ - 85 - ], - "event_id": [ - 6672 - ], - "id": [ - 6672 - ], - "league_season_id": [ - 6672 - ], - "name": [ - 85, - "String!" - ], - "season_id": [ - 6672 - ], - "silhouette": [ - 41 - ], - "tier": [ - 85, - "String!" - ], - "tournament_id": [ - 6672 - ] - } - ], - "saveNewsPost": [ - 52, - { - "content_markdown": [ - 85, - "String!" - ], - "cover_image_url": [ - 85 - ], - "id": [ - 6672 - ], - "teaser": [ - 85 - ], - "title": [ - 85, - "String!" - ] - } - ], - "saveUtilityLineupFromDemo": [ - 123, - { - "collection_id": [ - 6672 - ], - "description": [ - 85 - ], - "grenade_id": [ - 41, - "Int!" - ], - "match_id": [ - 6672, - "uuid!" - ], - "match_map_id": [ - 6672, - "uuid!" - ], - "name": [ - 85, - "String!" - ], - "tags": [ - 85, - "[String!]" - ], - "team_id": [ - 6672 - ], - "visibility": [ - 85 - ] - } - ], - "saveUtilityLineupFromPractice": [ - 123, - { - "collection_id": [ - 6672 - ], - "description": [ - 85 - ], - "name": [ - 85, - "String!" - ], - "session_id": [ - 6672, - "uuid!" - ], - "tags": [ - 85, - "[String!]" - ], - "team_id": [ - 6672 - ], - "utility_lineup_id": [ - 6672, - "uuid!" - ], - "visibility": [ - 85 - ] - } - ], - "saveUtilityPlaybook": [ - 130, - { - "description": [ - 85 - ], - "map_name": [ - 85, - "String!" - ], - "name": [ - 85, - "String!" - ], - "playbook_id": [ - 6672 - ], - "side": [ - 85, - "String!" - ], - "steps": [ - 131, - "[UtilityPlaybookStepInput!]" - ], - "team_id": [ - 6672 - ], - "visibility": [ - 85 - ] - } - ], - "scanOrphanedDemos": [ - 72 - ], - "scanSteamBans": [ - 88 - ], - "scheduleMatch": [ - 88, - { - "match_id": [ - 6672, - "uuid!" - ], - "time": [ - 5243 - ] - } - ], - "sendScrimRequest": [ - 88, - { - "best_of": [ - 41 - ], - "from_team_id": [ - 6672, - "uuid!" - ], - "proposed_scheduled_at": [ - 5243, - "timestamptz!" - ], - "region": [ - 85 - ], - "to_team_id": [ - 6672, - "uuid!" - ] - } - ], - "sendUtilityDrillToServer": [ - 119, - { - "lineup_ids": [ - 85, - "[String!]!" - ] - } - ], - "sendUtilityLineupToServer": [ - 124, - { - "lineup_id": [ - 6672, - "uuid!" - ] - } - ], - "sendUtilityScratchToServer": [ - 124, - { - "lineup": [ - 143, - "UtilityScratchLineupInput!" - ] - } - ], - "setGameNodeSchedulingState": [ - 88, - { - "enabled": [ - 6, - "Boolean!" - ], - "game_server_node_id": [ - 85, - "String!" - ] - } - ], - "setGamePluginAutoUpdate": [ - 88, - { - "enabled": [ - 6, - "Boolean!" - ], - "slug": [ - 85, - "String!" - ] - } - ], - "setHudMode": [ - 88, - { - "match_id": [ - 6672, - "uuid!" - ], - "mode": [ - 85, - "String!" - ] - } - ], - "setMapWinner": [ - 88, - { - "match_id": [ - 6672, - "uuid!" - ], - "match_map_id": [ - 6672, - "uuid!" - ], - "winning_lineup_id": [ - 6672, - "uuid!" - ] - } - ], - "setMatchWinner": [ - 88, - { - "match_id": [ - 6672, - "uuid!" - ], - "winning_lineup_id": [ - 6672, - "uuid!" - ] - } - ], - "setNewsPostStatus": [ - 52, - { - "id": [ - 6672, - "uuid!" - ], - "status": [ - 85, - "String!" - ] - } - ], - "setTournamentAward": [ - 111, - { - "award_id": [ - 6672 - ], - "custom_name": [ - 85 - ], - "placement": [ - 41, - "Int!" - ], - "silhouette": [ - 41 - ], - "tournament_id": [ - 6672, - "uuid!" - ] - } - ], - "setUtilityPracticeAccess": [ - 88, - { - "access": [ - 85, - "String!" - ], - "session_id": [ - 6672, - "uuid!" - ] - } - ], - "setupGameServer": [ - 76 - ], - "skipShaders": [ - 88, - { - "match_id": [ - 6672, - "uuid!" - ] - } - ], - "solveUtilityLineup": [ - 147, - { - "from_x": [ - 32 - ], - "from_y": [ - 32 - ], - "from_z": [ - 32 - ], - "name": [ - 85 - ], - "session_id": [ - 6672, - "uuid!" - ], - "target_x": [ - 32, - "Float!" - ], - "target_y": [ - 32, - "Float!" - ], - "target_z": [ - 32, - "Float!" - ], - "tolerance": [ - 32 - ], - "utility_type": [ - 85 - ] - } - ], - "specAutodirector": [ - 88, - { - "enabled": [ - 6, - "Boolean!" - ], - "match_id": [ - 6672, - "uuid!" - ] - } - ], - "specClick": [ - 88, - { - "button": [ - 85, - "String!" - ], - "match_id": [ - 6672, - "uuid!" - ] - } - ], - "specHud": [ - 88, - { - "match_id": [ - 6672, - "uuid!" - ], - "visible": [ - 6, - "Boolean!" - ] - } - ], - "specHudSides": [ - 88, - { - "match_id": [ - 6672, - "uuid!" - ] - } - ], - "specJump": [ - 88, - { - "match_id": [ - 6672, - "uuid!" - ] - } - ], - "specPlayer": [ - 88, - { - "accountid": [ - 41, - "Int!" - ], - "match_id": [ - 6672, - "uuid!" - ] - } - ], - "specScoreboard": [ - 88, - { - "match_id": [ - 6672, - "uuid!" - ], - "show": [ - 6, - "Boolean!" - ] - } - ], - "specSlot": [ - 88, - { - "match_id": [ - 6672, - "uuid!" - ], - "slot": [ - 41, - "Int!" - ] - } - ], - "specXray": [ - 88, - { - "enabled": [ - 6, - "Boolean!" - ], - "match_id": [ - 6672, - "uuid!" - ] - } - ], - "startLive": [ - 88, - { - "match_id": [ - 6672, - "uuid!" - ], - "mode": [ - 85, - "String!" - ] - } - ], - "startMatch": [ - 88, - { - "match_id": [ - 6672, - "uuid!" - ], - "server_id": [ - 6672 - ] - } - ], - "startUtilityDriftScan": [ - 118, - { - "from_revision": [ - 85 - ], - "map_name": [ - 85, - "String!" - ], - "to_revision": [ - 85 - ] - } - ], - "startUtilityPractice": [ - 137, - { - "access": [ - 85 - ], - "collection_id": [ - 6672 - ], - "is_open": [ - 6 - ], - "map_name": [ - 85, - "String!" - ], - "region": [ - 85 - ], - "server_id": [ - 6672 - ], - "team_id": [ - 6672 - ] - } - ], - "stopGpuSession": [ - 88, - { - "game_server_node_id": [ - 6672, - "uuid!" - ] - } - ], - "stopLive": [ - 88, - { - "match_id": [ - 6672, - "uuid!" - ] - } - ], - "stopUtilityPractice": [ - 88, - { - "session_id": [ - 6672, - "uuid!" - ] - } - ], - "stopWatchDemo": [ - 88, - { - "match_map_id": [ - 6672, - "uuid!" - ] - } - ], - "submitSteamPresenceSteamGuard": [ - 88, - { - "account_id": [ - 85, - "String!" - ], - "code": [ - 85, - "String!" - ] - } - ], - "swapLineups": [ - 88, - { - "match_id": [ - 6672, - "uuid!" - ] - } - ], - "switchLineup": [ - 88, - { - "match_id": [ - 85, - "String!" - ] - } - ], - "switchLiveMatch": [ - 88, - { - "from_match_id": [ - 6672, - "uuid!" - ], - "mode": [ - 85, - "String!" - ], - "to_match_id": [ - 6672, - "uuid!" - ] - } - ], - "syncMapCallouts": [ - 48 - ], - "syncPluginRegistry": [ - 89 - ], - "syncSteamFriends": [ - 88 - ], - "testFaceitIntegration": [ - 27 - ], - "testUpload": [ - 108 - ], - "uninstallGamePlugin": [ - 88, - { - "force": [ - 6 - ], - "slug": [ - 85, - "String!" - ] - } - ], - "unlinkDiscord": [ - 88 - ], - "unlinkSteamMatchHistory": [ - 88 - ], - "unsanctionServerPlayer": [ - 71, - { - "serverId": [ - 85 - ], - "steam_id": [ - 85, - "String!" - ], - "type": [ - 85, - "String!" - ] - } - ], - "updateClip": [ - 88, - { - "clip_id": [ - 6672, - "uuid!" - ], - "target_steam_id": [ - 85 - ], - "title": [ - 85 - ], - "visibility": [ - 85 - ] - } - ], - "updateCs": [ - 88, - { - "game": [ - 85 - ], - "game_server_node_id": [ - 6672 - ] - } - ], - "updateDraftGame": [ - 88, - { - "draftGameId": [ - 6672, - "uuid!" - ], - "settings": [ - 2439, - "jsonb!" - ] - } - ], - "updateServices": [ - 88 - ], - "update__map_pool": [ - 163, - { - "_set": [ - 168 - ], - "where": [ - 158, - "_map_pool_bool_exp!" - ] - } - ], - "update__map_pool_by_pk": [ - 155, - { - "_set": [ - 168 - ], - "pk_columns": [ - 166, - "_map_pool_pk_columns_input!" - ] - } - ], - "update__map_pool_many": [ - 163, - { - "updates": [ - 172, - "[_map_pool_updates!]!" - ] - } - ], - "update_abandoned_matches": [ - 191, - { - "_inc": [ - 185 - ], - "_set": [ - 196 - ], - "where": [ - 183, - "abandoned_matches_bool_exp!" - ] - } - ], - "update_abandoned_matches_by_pk": [ - 174, - { - "_inc": [ - 185 - ], - "_set": [ - 196 - ], - "pk_columns": [ - 194, - "abandoned_matches_pk_columns_input!" - ] - } - ], - "update_abandoned_matches_many": [ - 191, - { - "updates": [ - 208, - "[abandoned_matches_updates!]!" - ] - } - ], - "update_api_keys": [ - 225, - { - "_inc": [ - 221 - ], - "_set": [ - 230 - ], - "where": [ - 219, - "api_keys_bool_exp!" - ] - } - ], - "update_api_keys_by_pk": [ - 215, - { - "_inc": [ - 221 - ], - "_set": [ - 230 - ], - "pk_columns": [ - 228, - "api_keys_pk_columns_input!" - ] - } - ], - "update_api_keys_many": [ - 225, - { - "updates": [ - 238, - "[api_keys_updates!]!" - ] - } - ], - "update_award_recipients": [ - 260, - { - "_inc": [ - 254 - ], - "_set": [ - 265 - ], - "where": [ - 252, - "award_recipients_bool_exp!" - ] - } - ], - "update_award_recipients_by_pk": [ - 243, - { - "_inc": [ - 254 - ], - "_set": [ - 265 - ], - "pk_columns": [ - 263, - "award_recipients_pk_columns_input!" - ] - } - ], - "update_award_recipients_many": [ - 260, - { - "updates": [ - 277, - "[award_recipients_updates!]!" - ] - } - ], - "update_awards": [ - 294, - { - "_inc": [ - 290 - ], - "_set": [ - 300 - ], - "where": [ - 288, - "awards_bool_exp!" - ] - } - ], - "update_awards_by_pk": [ - 284, - { - "_inc": [ - 290 - ], - "_set": [ - 300 - ], - "pk_columns": [ - 298, - "awards_pk_columns_input!" - ] - } - ], - "update_awards_many": [ - 294, - { - "updates": [ - 308, - "[awards_updates!]!" - ] - } - ], - "update_chat_read_state": [ - 327, - { - "_inc": [ - 323 - ], - "_set": [ - 332 - ], - "where": [ - 321, - "chat_read_state_bool_exp!" - ] - } - ], - "update_chat_read_state_by_pk": [ - 317, - { - "_inc": [ - 323 - ], - "_set": [ - 332 - ], - "pk_columns": [ - 330, - "chat_read_state_pk_columns_input!" - ] - } - ], - "update_chat_read_state_many": [ - 327, - { - "updates": [ - 340, - "[chat_read_state_updates!]!" - ] - } - ], - "update_clip_render_jobs": [ - 367, - { - "_append": [ - 352 - ], - "_delete_at_path": [ - 358 - ], - "_delete_elem": [ - 359 - ], - "_delete_key": [ - 360 - ], - "_inc": [ - 361 - ], - "_prepend": [ - 371 - ], - "_set": [ - 375 - ], - "where": [ - 356, - "clip_render_jobs_bool_exp!" - ] - } - ], - "update_clip_render_jobs_by_pk": [ - 344, - { - "_append": [ - 352 - ], - "_delete_at_path": [ - 358 - ], - "_delete_elem": [ - 359 - ], - "_delete_key": [ - 360 - ], - "_inc": [ - 361 - ], - "_prepend": [ - 371 - ], - "_set": [ - 375 - ], - "pk_columns": [ - 370, - "clip_render_jobs_pk_columns_input!" - ] - } - ], - "update_clip_render_jobs_many": [ - 367, - { - "updates": [ - 387, - "[clip_render_jobs_updates!]!" - ] - } - ], - "update_custom_pages": [ - 410, - { - "_append": [ - 399 - ], - "_delete_at_path": [ - 403 - ], - "_delete_elem": [ - 404 - ], - "_delete_key": [ - 405 - ], - "_inc": [ - 406 - ], - "_prepend": [ - 414 - ], - "_set": [ - 416 - ], - "where": [ - 401, - "custom_pages_bool_exp!" - ] - } - ], - "update_custom_pages_by_pk": [ - 396, - { - "_append": [ - 399 - ], - "_delete_at_path": [ - 403 - ], - "_delete_elem": [ - 404 - ], - "_delete_key": [ - 405 - ], - "_inc": [ - 406 - ], - "_prepend": [ - 414 - ], - "_set": [ - 416 - ], - "pk_columns": [ - 413, - "custom_pages_pk_columns_input!" - ] - } - ], - "update_custom_pages_many": [ - 410, - { - "updates": [ - 424, - "[custom_pages_updates!]!" - ] - } - ], - "update_db_backups": [ - 438, - { - "_inc": [ - 434 - ], - "_set": [ - 443 - ], - "where": [ - 432, - "db_backups_bool_exp!" - ] - } - ], - "update_db_backups_by_pk": [ - 428, - { - "_inc": [ - 434 - ], - "_set": [ - 443 - ], - "pk_columns": [ - 441, - "db_backups_pk_columns_input!" - ] - } - ], - "update_db_backups_many": [ - 438, - { - "updates": [ - 451, - "[db_backups_updates!]!" - ] - } - ], - "update_direct_conversations": [ - 465, - { - "_inc": [ - 461 - ], - "_set": [ - 470 - ], - "where": [ - 459, - "direct_conversations_bool_exp!" - ] - } - ], - "update_direct_conversations_by_pk": [ - 455, - { - "_inc": [ - 461 - ], - "_set": [ - 470 - ], - "pk_columns": [ - 468, - "direct_conversations_pk_columns_input!" - ] - } - ], - "update_direct_conversations_many": [ - 465, - { - "updates": [ - 478, - "[direct_conversations_updates!]!" - ] - } - ], - "update_direct_messages": [ - 492, - { - "_inc": [ - 488 - ], - "_set": [ - 497 - ], - "where": [ - 486, - "direct_messages_bool_exp!" - ] - } - ], - "update_direct_messages_by_pk": [ - 482, - { - "_inc": [ - 488 - ], - "_set": [ - 497 - ], - "pk_columns": [ - 495, - "direct_messages_pk_columns_input!" - ] - } - ], - "update_direct_messages_many": [ - 492, - { - "updates": [ - 505, - "[direct_messages_updates!]!" - ] - } - ], - "update_draft_game_picks": [ - 528, - { - "_inc": [ - 522 - ], - "_set": [ - 535 - ], - "where": [ - 520, - "draft_game_picks_bool_exp!" - ] - } - ], - "update_draft_game_picks_by_pk": [ - 509, - { - "_inc": [ - 522 - ], - "_set": [ - 535 - ], - "pk_columns": [ - 531, - "draft_game_picks_pk_columns_input!" - ] - } - ], - "update_draft_game_picks_many": [ - 528, - { - "updates": [ - 547, - "[draft_game_picks_updates!]!" - ] - } - ], - "update_draft_game_players": [ - 573, - { - "_inc": [ - 567 - ], - "_set": [ - 580 - ], - "where": [ - 565, - "draft_game_players_bool_exp!" - ] - } - ], - "update_draft_game_players_by_pk": [ - 554, - { - "_inc": [ - 567 - ], - "_set": [ - 580 - ], - "pk_columns": [ - 576, - "draft_game_players_pk_columns_input!" - ] - } - ], - "update_draft_game_players_many": [ - 573, - { - "updates": [ - 592, - "[draft_game_players_updates!]!" - ] - } - ], - "update_draft_games": [ - 618, - { - "_inc": [ - 612 - ], - "_set": [ - 626 - ], - "where": [ - 610, - "draft_games_bool_exp!" - ] - } - ], - "update_draft_games_by_pk": [ - 599, - { - "_inc": [ - 612 - ], - "_set": [ - 626 - ], - "pk_columns": [ - 622, - "draft_games_pk_columns_input!" - ] - } - ], - "update_draft_games_many": [ - 618, - { - "updates": [ - 638, - "[draft_games_updates!]!" - ] - } - ], - "update_e_award_sources": [ - 655, - { - "_set": [ - 660 - ], - "where": [ - 648, - "e_award_sources_bool_exp!" - ] - } - ], - "update_e_award_sources_by_pk": [ - 645, - { - "_set": [ - 660 - ], - "pk_columns": [ - 658, - "e_award_sources_pk_columns_input!" - ] - } - ], - "update_e_award_sources_many": [ - 655, - { - "updates": [ - 664, - "[e_award_sources_updates!]!" - ] - } - ], - "update_e_award_tiers": [ - 675, - { - "_set": [ - 680 - ], - "where": [ - 668, - "e_award_tiers_bool_exp!" - ] - } - ], - "update_e_award_tiers_by_pk": [ - 665, - { - "_set": [ - 680 - ], - "pk_columns": [ - 678, - "e_award_tiers_pk_columns_input!" - ] - } - ], - "update_e_award_tiers_many": [ - 675, - { - "updates": [ - 684, - "[e_award_tiers_updates!]!" - ] - } - ], - "update_e_check_in_settings": [ - 695, - { - "_set": [ - 700 - ], - "where": [ - 688, - "e_check_in_settings_bool_exp!" - ] - } - ], - "update_e_check_in_settings_by_pk": [ - 685, - { - "_set": [ - 700 - ], - "pk_columns": [ - 698, - "e_check_in_settings_pk_columns_input!" - ] - } - ], - "update_e_check_in_settings_many": [ - 695, - { - "updates": [ - 704, - "[e_check_in_settings_updates!]!" - ] - } - ], - "update_e_draft_game_captain_selection": [ - 715, - { - "_set": [ - 721 - ], - "where": [ - 708, - "e_draft_game_captain_selection_bool_exp!" - ] - } - ], - "update_e_draft_game_captain_selection_by_pk": [ - 705, - { - "_set": [ - 721 - ], - "pk_columns": [ - 719, - "e_draft_game_captain_selection_pk_columns_input!" - ] - } - ], - "update_e_draft_game_captain_selection_many": [ - 715, - { - "updates": [ - 725, - "[e_draft_game_captain_selection_updates!]!" - ] - } - ], - "update_e_draft_game_draft_order": [ - 736, - { - "_set": [ - 742 - ], - "where": [ - 729, - "e_draft_game_draft_order_bool_exp!" - ] - } - ], - "update_e_draft_game_draft_order_by_pk": [ - 726, - { - "_set": [ - 742 - ], - "pk_columns": [ - 740, - "e_draft_game_draft_order_pk_columns_input!" - ] - } - ], - "update_e_draft_game_draft_order_many": [ - 736, - { - "updates": [ - 746, - "[e_draft_game_draft_order_updates!]!" - ] - } - ], - "update_e_draft_game_mode": [ - 757, - { - "_set": [ - 763 - ], - "where": [ - 750, - "e_draft_game_mode_bool_exp!" - ] - } - ], - "update_e_draft_game_mode_by_pk": [ - 747, - { - "_set": [ - 763 - ], - "pk_columns": [ - 761, - "e_draft_game_mode_pk_columns_input!" - ] - } - ], - "update_e_draft_game_mode_many": [ - 757, - { - "updates": [ - 767, - "[e_draft_game_mode_updates!]!" - ] - } - ], - "update_e_draft_game_player_status": [ - 778, - { - "_set": [ - 784 - ], - "where": [ - 771, - "e_draft_game_player_status_bool_exp!" - ] - } - ], - "update_e_draft_game_player_status_by_pk": [ - 768, - { - "_set": [ - 784 - ], - "pk_columns": [ - 782, - "e_draft_game_player_status_pk_columns_input!" - ] - } - ], - "update_e_draft_game_player_status_many": [ - 778, - { - "updates": [ - 788, - "[e_draft_game_player_status_updates!]!" - ] - } - ], - "update_e_draft_game_status": [ - 799, - { - "_set": [ - 805 - ], - "where": [ - 792, - "e_draft_game_status_bool_exp!" - ] - } - ], - "update_e_draft_game_status_by_pk": [ - 789, - { - "_set": [ - 805 - ], - "pk_columns": [ - 803, - "e_draft_game_status_pk_columns_input!" - ] - } - ], - "update_e_draft_game_status_many": [ - 799, - { - "updates": [ - 809, - "[e_draft_game_status_updates!]!" - ] - } - ], - "update_e_event_media_access": [ - 820, - { - "_set": [ - 825 - ], - "where": [ - 813, - "e_event_media_access_bool_exp!" - ] - } - ], - "update_e_event_media_access_by_pk": [ - 810, - { - "_set": [ - 825 - ], - "pk_columns": [ - 823, - "e_event_media_access_pk_columns_input!" - ] - } - ], - "update_e_event_media_access_many": [ - 820, - { - "updates": [ - 829, - "[e_event_media_access_updates!]!" - ] - } - ], - "update_e_event_visibility": [ - 840, - { - "_set": [ - 845 - ], - "where": [ - 833, - "e_event_visibility_bool_exp!" - ] - } - ], - "update_e_event_visibility_by_pk": [ - 830, - { - "_set": [ - 845 - ], - "pk_columns": [ - 843, - "e_event_visibility_pk_columns_input!" - ] - } - ], - "update_e_event_visibility_many": [ - 840, - { - "updates": [ - 849, - "[e_event_visibility_updates!]!" - ] - } - ], - "update_e_friend_status": [ - 860, - { - "_set": [ - 866 - ], - "where": [ - 853, - "e_friend_status_bool_exp!" - ] - } - ], - "update_e_friend_status_by_pk": [ - 850, - { - "_set": [ - 866 - ], - "pk_columns": [ - 864, - "e_friend_status_pk_columns_input!" - ] - } - ], - "update_e_friend_status_many": [ - 860, - { - "updates": [ - 870, - "[e_friend_status_updates!]!" - ] - } - ], - "update_e_game_cfg_types": [ - 881, - { - "_set": [ - 886 - ], - "where": [ - 874, - "e_game_cfg_types_bool_exp!" - ] - } - ], - "update_e_game_cfg_types_by_pk": [ - 871, - { - "_set": [ - 886 - ], - "pk_columns": [ - 884, - "e_game_cfg_types_pk_columns_input!" - ] - } - ], - "update_e_game_cfg_types_many": [ - 881, - { - "updates": [ - 890, - "[e_game_cfg_types_updates!]!" - ] - } - ], - "update_e_game_plugin_channels": [ - 901, - { - "_set": [ - 906 - ], - "where": [ - 894, - "e_game_plugin_channels_bool_exp!" - ] - } - ], - "update_e_game_plugin_channels_by_pk": [ - 891, - { - "_set": [ - 906 - ], - "pk_columns": [ - 904, - "e_game_plugin_channels_pk_columns_input!" - ] - } - ], - "update_e_game_plugin_channels_many": [ - 901, - { - "updates": [ - 910, - "[e_game_plugin_channels_updates!]!" - ] - } - ], - "update_e_game_plugin_install_statuses": [ - 921, - { - "_set": [ - 926 - ], - "where": [ - 914, - "e_game_plugin_install_statuses_bool_exp!" - ] - } - ], - "update_e_game_plugin_install_statuses_by_pk": [ - 911, - { - "_set": [ - 926 - ], - "pk_columns": [ - 924, - "e_game_plugin_install_statuses_pk_columns_input!" - ] - } - ], - "update_e_game_plugin_install_statuses_many": [ - 921, - { - "updates": [ - 930, - "[e_game_plugin_install_statuses_updates!]!" - ] - } - ], - "update_e_game_plugin_kinds": [ - 941, - { - "_set": [ - 946 - ], - "where": [ - 934, - "e_game_plugin_kinds_bool_exp!" - ] - } - ], - "update_e_game_plugin_kinds_by_pk": [ - 931, - { - "_set": [ - 946 - ], - "pk_columns": [ - 944, - "e_game_plugin_kinds_pk_columns_input!" - ] - } - ], - "update_e_game_plugin_kinds_many": [ - 941, - { - "updates": [ - 950, - "[e_game_plugin_kinds_updates!]!" - ] - } - ], - "update_e_game_server_node_statuses": [ - 961, - { - "_set": [ - 967 - ], - "where": [ - 954, - "e_game_server_node_statuses_bool_exp!" - ] - } - ], - "update_e_game_server_node_statuses_by_pk": [ - 951, - { - "_set": [ - 967 - ], - "pk_columns": [ - 965, - "e_game_server_node_statuses_pk_columns_input!" - ] - } - ], - "update_e_game_server_node_statuses_many": [ - 961, - { - "updates": [ - 971, - "[e_game_server_node_statuses_updates!]!" - ] - } - ], - "update_e_league_movement_types": [ - 982, - { - "_set": [ - 988 - ], - "where": [ - 975, - "e_league_movement_types_bool_exp!" - ] - } - ], - "update_e_league_movement_types_by_pk": [ - 972, - { - "_set": [ - 988 - ], - "pk_columns": [ - 986, - "e_league_movement_types_pk_columns_input!" - ] - } - ], - "update_e_league_movement_types_many": [ - 982, - { - "updates": [ - 992, - "[e_league_movement_types_updates!]!" - ] - } - ], - "update_e_league_proposal_statuses": [ - 1003, - { - "_set": [ - 1009 - ], - "where": [ - 996, - "e_league_proposal_statuses_bool_exp!" - ] - } - ], - "update_e_league_proposal_statuses_by_pk": [ - 993, - { - "_set": [ - 1009 - ], - "pk_columns": [ - 1007, - "e_league_proposal_statuses_pk_columns_input!" - ] - } - ], - "update_e_league_proposal_statuses_many": [ - 1003, - { - "updates": [ - 1013, - "[e_league_proposal_statuses_updates!]!" - ] - } - ], - "update_e_league_registration_statuses": [ - 1024, - { - "_set": [ - 1030 - ], - "where": [ - 1017, - "e_league_registration_statuses_bool_exp!" - ] - } - ], - "update_e_league_registration_statuses_by_pk": [ - 1014, - { - "_set": [ - 1030 - ], - "pk_columns": [ - 1028, - "e_league_registration_statuses_pk_columns_input!" - ] - } - ], - "update_e_league_registration_statuses_many": [ - 1024, - { - "updates": [ - 1034, - "[e_league_registration_statuses_updates!]!" - ] - } - ], - "update_e_league_season_statuses": [ - 1045, - { - "_set": [ - 1051 - ], - "where": [ - 1038, - "e_league_season_statuses_bool_exp!" - ] - } - ], - "update_e_league_season_statuses_by_pk": [ - 1035, - { - "_set": [ - 1051 - ], - "pk_columns": [ - 1049, - "e_league_season_statuses_pk_columns_input!" - ] - } - ], - "update_e_league_season_statuses_many": [ - 1045, - { - "updates": [ - 1055, - "[e_league_season_statuses_updates!]!" - ] - } - ], - "update_e_lobby_access": [ - 1066, - { - "_set": [ - 1072 - ], - "where": [ - 1059, - "e_lobby_access_bool_exp!" - ] - } - ], - "update_e_lobby_access_by_pk": [ - 1056, - { - "_set": [ - 1072 - ], - "pk_columns": [ - 1070, - "e_lobby_access_pk_columns_input!" - ] - } - ], - "update_e_lobby_access_many": [ - 1066, - { - "updates": [ - 1076, - "[e_lobby_access_updates!]!" - ] - } - ], - "update_e_lobby_player_status": [ - 1087, - { - "_set": [ - 1092 - ], - "where": [ - 1080, - "e_lobby_player_status_bool_exp!" - ] - } - ], - "update_e_lobby_player_status_by_pk": [ - 1077, - { - "_set": [ - 1092 - ], - "pk_columns": [ - 1090, - "e_lobby_player_status_pk_columns_input!" - ] - } - ], - "update_e_lobby_player_status_many": [ - 1087, - { - "updates": [ - 1096, - "[e_lobby_player_status_updates!]!" - ] - } - ], - "update_e_map_pool_types": [ - 1107, - { - "_set": [ - 1113 - ], - "where": [ - 1100, - "e_map_pool_types_bool_exp!" - ] - } - ], - "update_e_map_pool_types_by_pk": [ - 1097, - { - "_set": [ - 1113 - ], - "pk_columns": [ - 1111, - "e_map_pool_types_pk_columns_input!" - ] - } - ], - "update_e_map_pool_types_many": [ - 1107, - { - "updates": [ - 1117, - "[e_map_pool_types_updates!]!" - ] - } - ], - "update_e_match_clip_visibility": [ - 1128, - { - "_set": [ - 1133 - ], - "where": [ - 1121, - "e_match_clip_visibility_bool_exp!" - ] - } - ], - "update_e_match_clip_visibility_by_pk": [ - 1118, - { - "_set": [ - 1133 - ], - "pk_columns": [ - 1131, - "e_match_clip_visibility_pk_columns_input!" - ] - } - ], - "update_e_match_clip_visibility_many": [ - 1128, - { - "updates": [ - 1137, - "[e_match_clip_visibility_updates!]!" - ] - } - ], - "update_e_match_map_status": [ - 1148, - { - "_set": [ - 1154 - ], - "where": [ - 1141, - "e_match_map_status_bool_exp!" - ] - } - ], - "update_e_match_map_status_by_pk": [ - 1138, - { - "_set": [ - 1154 - ], - "pk_columns": [ - 1152, - "e_match_map_status_pk_columns_input!" - ] - } - ], - "update_e_match_map_status_many": [ - 1148, - { - "updates": [ - 1158, - "[e_match_map_status_updates!]!" - ] - } - ], - "update_e_match_mode": [ - 1169, - { - "_set": [ - 1174 - ], - "where": [ - 1162, - "e_match_mode_bool_exp!" - ] - } - ], - "update_e_match_mode_by_pk": [ - 1159, - { - "_set": [ - 1174 - ], - "pk_columns": [ - 1172, - "e_match_mode_pk_columns_input!" - ] - } - ], - "update_e_match_mode_many": [ - 1169, - { - "updates": [ - 1178, - "[e_match_mode_updates!]!" - ] - } - ], - "update_e_match_party_sources": [ - 1189, - { - "_set": [ - 1194 - ], - "where": [ - 1182, - "e_match_party_sources_bool_exp!" - ] - } - ], - "update_e_match_party_sources_by_pk": [ - 1179, - { - "_set": [ - 1194 - ], - "pk_columns": [ - 1192, - "e_match_party_sources_pk_columns_input!" - ] - } - ], - "update_e_match_party_sources_many": [ - 1189, - { - "updates": [ - 1198, - "[e_match_party_sources_updates!]!" - ] - } - ], - "update_e_match_status": [ - 1209, - { - "_set": [ - 1215 - ], - "where": [ - 1202, - "e_match_status_bool_exp!" - ] - } - ], - "update_e_match_status_by_pk": [ - 1199, - { - "_set": [ - 1215 - ], - "pk_columns": [ - 1213, - "e_match_status_pk_columns_input!" - ] - } - ], - "update_e_match_status_many": [ - 1209, - { - "updates": [ - 1219, - "[e_match_status_updates!]!" - ] - } - ], - "update_e_match_types": [ - 1230, - { - "_set": [ - 1236 - ], - "where": [ - 1223, - "e_match_types_bool_exp!" - ] - } - ], - "update_e_match_types_by_pk": [ - 1220, - { - "_set": [ - 1236 - ], - "pk_columns": [ - 1234, - "e_match_types_pk_columns_input!" - ] - } - ], - "update_e_match_types_many": [ - 1230, - { - "updates": [ - 1240, - "[e_match_types_updates!]!" - ] - } - ], - "update_e_notification_types": [ - 1251, - { - "_set": [ - 1256 - ], - "where": [ - 1244, - "e_notification_types_bool_exp!" - ] - } - ], - "update_e_notification_types_by_pk": [ - 1241, - { - "_set": [ - 1256 - ], - "pk_columns": [ - 1254, - "e_notification_types_pk_columns_input!" - ] - } - ], - "update_e_notification_types_many": [ - 1251, - { - "updates": [ - 1260, - "[e_notification_types_updates!]!" - ] - } - ], - "update_e_objective_types": [ - 1271, - { - "_set": [ - 1276 - ], - "where": [ - 1264, - "e_objective_types_bool_exp!" - ] - } - ], - "update_e_objective_types_by_pk": [ - 1261, - { - "_set": [ - 1276 - ], - "pk_columns": [ - 1274, - "e_objective_types_pk_columns_input!" - ] - } - ], - "update_e_objective_types_many": [ - 1271, - { - "updates": [ - 1280, - "[e_objective_types_updates!]!" - ] - } - ], - "update_e_player_roles": [ - 1291, - { - "_set": [ - 1296 - ], - "where": [ - 1284, - "e_player_roles_bool_exp!" - ] - } - ], - "update_e_player_roles_by_pk": [ - 1281, - { - "_set": [ - 1296 - ], - "pk_columns": [ - 1294, - "e_player_roles_pk_columns_input!" - ] - } - ], - "update_e_player_roles_many": [ - 1291, - { - "updates": [ - 1300, - "[e_player_roles_updates!]!" - ] - } - ], - "update_e_plugin_runtimes": [ - 1311, - { - "_set": [ - 1316 - ], - "where": [ - 1304, - "e_plugin_runtimes_bool_exp!" - ] - } - ], - "update_e_plugin_runtimes_by_pk": [ - 1301, - { - "_set": [ - 1316 - ], - "pk_columns": [ - 1314, - "e_plugin_runtimes_pk_columns_input!" - ] - } - ], - "update_e_plugin_runtimes_many": [ - 1311, - { - "updates": [ - 1320, - "[e_plugin_runtimes_updates!]!" - ] - } - ], - "update_e_ready_settings": [ - 1331, - { - "_set": [ - 1336 - ], - "where": [ - 1324, - "e_ready_settings_bool_exp!" - ] - } - ], - "update_e_ready_settings_by_pk": [ - 1321, - { - "_set": [ - 1336 - ], - "pk_columns": [ - 1334, - "e_ready_settings_pk_columns_input!" - ] - } - ], - "update_e_ready_settings_many": [ - 1331, - { - "updates": [ - 1340, - "[e_ready_settings_updates!]!" - ] - } - ], - "update_e_sanction_scopes": [ - 1349, - { - "_set": [ - 1355 - ], - "where": [ - 1344, - "e_sanction_scopes_bool_exp!" - ] - } - ], - "update_e_sanction_scopes_by_pk": [ - 1341, - { - "_set": [ - 1355 - ], - "pk_columns": [ - 1353, - "e_sanction_scopes_pk_columns_input!" - ] - } - ], - "update_e_sanction_scopes_many": [ - 1349, - { - "updates": [ - 1359, - "[e_sanction_scopes_updates!]!" - ] - } - ], - "update_e_sanction_sources": [ - 1370, - { - "_inc": [ - 1366 - ], - "_set": [ - 1375 - ], - "where": [ - 1364, - "e_sanction_sources_bool_exp!" - ] - } - ], - "update_e_sanction_sources_by_pk": [ - 1360, - { - "_inc": [ - 1366 - ], - "_set": [ - 1375 - ], - "pk_columns": [ - 1373, - "e_sanction_sources_pk_columns_input!" - ] - } - ], - "update_e_sanction_sources_many": [ - 1370, - { - "updates": [ - 1383, - "[e_sanction_sources_updates!]!" - ] - } - ], - "update_e_sanction_types": [ - 1397, - { - "_set": [ - 1403 - ], - "where": [ - 1390, - "e_sanction_types_bool_exp!" - ] - } - ], - "update_e_sanction_types_by_pk": [ - 1387, - { - "_set": [ - 1403 - ], - "pk_columns": [ - 1401, - "e_sanction_types_pk_columns_input!" - ] - } - ], - "update_e_sanction_types_many": [ - 1397, - { - "updates": [ - 1407, - "[e_sanction_types_updates!]!" - ] - } - ], - "update_e_scrim_request_statuses": [ - 1418, - { - "_set": [ - 1423 - ], - "where": [ - 1411, - "e_scrim_request_statuses_bool_exp!" - ] - } - ], - "update_e_scrim_request_statuses_by_pk": [ - 1408, - { - "_set": [ - 1423 - ], - "pk_columns": [ - 1421, - "e_scrim_request_statuses_pk_columns_input!" - ] - } - ], - "update_e_scrim_request_statuses_many": [ - 1418, - { - "updates": [ - 1427, - "[e_scrim_request_statuses_updates!]!" - ] - } - ], - "update_e_server_types": [ - 1438, - { - "_set": [ - 1443 - ], - "where": [ - 1431, - "e_server_types_bool_exp!" - ] - } - ], - "update_e_server_types_by_pk": [ - 1428, - { - "_set": [ - 1443 - ], - "pk_columns": [ - 1441, - "e_server_types_pk_columns_input!" - ] - } - ], - "update_e_server_types_many": [ - 1438, - { - "updates": [ - 1447, - "[e_server_types_updates!]!" - ] - } - ], - "update_e_sides": [ - 1458, - { - "_set": [ - 1463 - ], - "where": [ - 1451, - "e_sides_bool_exp!" - ] - } - ], - "update_e_sides_by_pk": [ - 1448, - { - "_set": [ - 1463 - ], - "pk_columns": [ - 1461, - "e_sides_pk_columns_input!" - ] - } - ], - "update_e_sides_many": [ - 1458, - { - "updates": [ - 1467, - "[e_sides_updates!]!" - ] - } - ], - "update_e_system_alert_types": [ - 1478, - { - "_set": [ - 1483 - ], - "where": [ - 1471, - "e_system_alert_types_bool_exp!" - ] - } - ], - "update_e_system_alert_types_by_pk": [ - 1468, - { - "_set": [ - 1483 - ], - "pk_columns": [ - 1481, - "e_system_alert_types_pk_columns_input!" - ] - } - ], - "update_e_system_alert_types_many": [ - 1478, - { - "updates": [ - 1487, - "[e_system_alert_types_updates!]!" - ] - } - ], - "update_e_team_roles": [ - 1498, - { - "_set": [ - 1504 - ], - "where": [ - 1491, - "e_team_roles_bool_exp!" - ] - } - ], - "update_e_team_roles_by_pk": [ - 1488, - { - "_set": [ - 1504 - ], - "pk_columns": [ - 1502, - "e_team_roles_pk_columns_input!" - ] - } - ], - "update_e_team_roles_many": [ - 1498, - { - "updates": [ - 1508, - "[e_team_roles_updates!]!" - ] - } - ], - "update_e_team_roster_statuses": [ - 1519, - { - "_set": [ - 1524 - ], - "where": [ - 1512, - "e_team_roster_statuses_bool_exp!" - ] - } - ], - "update_e_team_roster_statuses_by_pk": [ - 1509, - { - "_set": [ - 1524 - ], - "pk_columns": [ - 1522, - "e_team_roster_statuses_pk_columns_input!" - ] - } - ], - "update_e_team_roster_statuses_many": [ - 1519, - { - "updates": [ - 1528, - "[e_team_roster_statuses_updates!]!" - ] - } - ], - "update_e_timeout_settings": [ - 1539, - { - "_set": [ - 1544 - ], - "where": [ - 1532, - "e_timeout_settings_bool_exp!" - ] - } - ], - "update_e_timeout_settings_by_pk": [ - 1529, - { - "_set": [ - 1544 - ], - "pk_columns": [ - 1542, - "e_timeout_settings_pk_columns_input!" - ] - } - ], - "update_e_timeout_settings_many": [ - 1539, - { - "updates": [ - 1548, - "[e_timeout_settings_updates!]!" - ] - } - ], - "update_e_tournament_categories": [ - 1559, - { - "_set": [ - 1565 - ], - "where": [ - 1552, - "e_tournament_categories_bool_exp!" - ] - } - ], - "update_e_tournament_categories_by_pk": [ - 1549, - { - "_set": [ - 1565 - ], - "pk_columns": [ - 1563, - "e_tournament_categories_pk_columns_input!" - ] - } - ], - "update_e_tournament_categories_many": [ - 1559, - { - "updates": [ - 1569, - "[e_tournament_categories_updates!]!" - ] - } - ], - "update_e_tournament_free_agent_statuses": [ - 1580, - { - "_set": [ - 1586 - ], - "where": [ - 1573, - "e_tournament_free_agent_statuses_bool_exp!" - ] - } - ], - "update_e_tournament_free_agent_statuses_by_pk": [ - 1570, - { - "_set": [ - 1586 - ], - "pk_columns": [ - 1584, - "e_tournament_free_agent_statuses_pk_columns_input!" - ] - } - ], - "update_e_tournament_free_agent_statuses_many": [ - 1580, - { - "updates": [ - 1590, - "[e_tournament_free_agent_statuses_updates!]!" - ] - } - ], - "update_e_tournament_registration_types": [ - 1601, - { - "_set": [ - 1606 - ], - "where": [ - 1594, - "e_tournament_registration_types_bool_exp!" - ] - } - ], - "update_e_tournament_registration_types_by_pk": [ - 1591, - { - "_set": [ - 1606 - ], - "pk_columns": [ - 1604, - "e_tournament_registration_types_pk_columns_input!" - ] - } - ], - "update_e_tournament_registration_types_many": [ - 1601, - { - "updates": [ - 1610, - "[e_tournament_registration_types_updates!]!" - ] - } - ], - "update_e_tournament_stage_types": [ - 1621, - { - "_set": [ - 1627 - ], - "where": [ - 1614, - "e_tournament_stage_types_bool_exp!" - ] - } - ], - "update_e_tournament_stage_types_by_pk": [ - 1611, - { - "_set": [ - 1627 - ], - "pk_columns": [ - 1625, - "e_tournament_stage_types_pk_columns_input!" - ] - } - ], - "update_e_tournament_stage_types_many": [ - 1621, - { - "updates": [ - 1631, - "[e_tournament_stage_types_updates!]!" - ] - } - ], - "update_e_tournament_status": [ - 1642, - { - "_set": [ - 1648 - ], - "where": [ - 1635, - "e_tournament_status_bool_exp!" - ] - } - ], - "update_e_tournament_status_by_pk": [ - 1632, - { - "_set": [ - 1648 - ], - "pk_columns": [ - 1646, - "e_tournament_status_pk_columns_input!" - ] - } - ], - "update_e_tournament_status_many": [ - 1642, - { - "updates": [ - 1652, - "[e_tournament_status_updates!]!" - ] - } - ], - "update_e_utility_practice_access": [ - 1663, - { - "_set": [ - 1668 - ], - "where": [ - 1656, - "e_utility_practice_access_bool_exp!" - ] - } - ], - "update_e_utility_practice_access_by_pk": [ - 1653, - { - "_set": [ - 1668 - ], - "pk_columns": [ - 1666, - "e_utility_practice_access_pk_columns_input!" - ] - } - ], - "update_e_utility_practice_access_many": [ - 1663, - { - "updates": [ - 1672, - "[e_utility_practice_access_updates!]!" - ] - } - ], - "update_e_utility_practice_statuses": [ - 1683, - { - "_set": [ - 1689 - ], - "where": [ - 1676, - "e_utility_practice_statuses_bool_exp!" - ] - } - ], - "update_e_utility_practice_statuses_by_pk": [ - 1673, - { - "_set": [ - 1689 - ], - "pk_columns": [ - 1687, - "e_utility_practice_statuses_pk_columns_input!" - ] - } - ], - "update_e_utility_practice_statuses_many": [ - 1683, - { - "updates": [ - 1693, - "[e_utility_practice_statuses_updates!]!" - ] - } - ], - "update_e_utility_sources": [ - 1704, - { - "_set": [ - 1709 - ], - "where": [ - 1697, - "e_utility_sources_bool_exp!" - ] - } - ], - "update_e_utility_sources_by_pk": [ - 1694, - { - "_set": [ - 1709 - ], - "pk_columns": [ - 1707, - "e_utility_sources_pk_columns_input!" - ] - } - ], - "update_e_utility_sources_many": [ - 1704, - { - "updates": [ - 1713, - "[e_utility_sources_updates!]!" - ] - } - ], - "update_e_utility_techniques": [ - 1724, - { - "_set": [ - 1729 - ], - "where": [ - 1717, - "e_utility_techniques_bool_exp!" - ] - } - ], - "update_e_utility_techniques_by_pk": [ - 1714, - { - "_set": [ - 1729 - ], - "pk_columns": [ - 1727, - "e_utility_techniques_pk_columns_input!" - ] - } - ], - "update_e_utility_techniques_many": [ - 1724, - { - "updates": [ - 1733, - "[e_utility_techniques_updates!]!" - ] - } - ], - "update_e_utility_throw_strengths": [ - 1744, - { - "_set": [ - 1749 - ], - "where": [ - 1737, - "e_utility_throw_strengths_bool_exp!" - ] - } - ], - "update_e_utility_throw_strengths_by_pk": [ - 1734, - { - "_set": [ - 1749 - ], - "pk_columns": [ - 1747, - "e_utility_throw_strengths_pk_columns_input!" - ] - } - ], - "update_e_utility_throw_strengths_many": [ - 1744, - { - "updates": [ - 1753, - "[e_utility_throw_strengths_updates!]!" - ] - } - ], - "update_e_utility_types": [ - 1764, - { - "_set": [ - 1769 - ], - "where": [ - 1757, - "e_utility_types_bool_exp!" - ] - } - ], - "update_e_utility_types_by_pk": [ - 1754, - { - "_set": [ - 1769 - ], - "pk_columns": [ - 1767, - "e_utility_types_pk_columns_input!" - ] - } - ], - "update_e_utility_types_many": [ - 1764, - { - "updates": [ - 1773, - "[e_utility_types_updates!]!" - ] - } - ], - "update_e_utility_visibility": [ - 1784, - { - "_set": [ - 1789 - ], - "where": [ - 1777, - "e_utility_visibility_bool_exp!" - ] - } - ], - "update_e_utility_visibility_by_pk": [ - 1774, - { - "_set": [ - 1789 - ], - "pk_columns": [ - 1787, - "e_utility_visibility_pk_columns_input!" - ] - } - ], - "update_e_utility_visibility_many": [ - 1784, - { - "updates": [ - 1793, - "[e_utility_visibility_updates!]!" - ] - } - ], - "update_e_veto_pick_types": [ - 1804, - { - "_set": [ - 1809 - ], - "where": [ - 1797, - "e_veto_pick_types_bool_exp!" - ] - } - ], - "update_e_veto_pick_types_by_pk": [ - 1794, - { - "_set": [ - 1809 - ], - "pk_columns": [ - 1807, - "e_veto_pick_types_pk_columns_input!" - ] - } - ], - "update_e_veto_pick_types_many": [ - 1804, - { - "updates": [ - 1813, - "[e_veto_pick_types_updates!]!" - ] - } - ], - "update_e_winning_reasons": [ - 1824, - { - "_set": [ - 1829 - ], - "where": [ - 1817, - "e_winning_reasons_bool_exp!" - ] - } - ], - "update_e_winning_reasons_by_pk": [ - 1814, - { - "_set": [ - 1829 - ], - "pk_columns": [ - 1827, - "e_winning_reasons_pk_columns_input!" - ] - } - ], - "update_e_winning_reasons_many": [ - 1824, - { - "updates": [ - 1833, - "[e_winning_reasons_updates!]!" - ] - } - ], - "update_event_match_links": [ - 1842, - { - "_set": [ - 1847 - ], - "where": [ - 1837, - "event_match_links_bool_exp!" - ] - } - ], - "update_event_match_links_by_pk": [ - 1834, - { - "_set": [ - 1847 - ], - "pk_columns": [ - 1845, - "event_match_links_pk_columns_input!" - ] - } - ], - "update_event_match_links_many": [ - 1842, - { - "updates": [ - 1851, - "[event_match_links_updates!]!" - ] - } - ], - "update_event_media": [ - 1869, - { - "_inc": [ - 1863 - ], - "_set": [ - 1916 - ], - "where": [ - 1861, - "event_media_bool_exp!" - ] - } - ], - "update_event_media_by_pk": [ - 1852, - { - "_inc": [ - 1863 - ], - "_set": [ - 1916 - ], - "pk_columns": [ - 1873, - "event_media_pk_columns_input!" - ] - } - ], - "update_event_media_many": [ - 1869, - { - "updates": [ - 1928, - "[event_media_updates!]!" - ] - } - ], - "update_event_media_players": [ - 1891, - { - "_inc": [ - 1885 - ], - "_set": [ - 1896 - ], - "where": [ - 1883, - "event_media_players_bool_exp!" - ] - } - ], - "update_event_media_players_by_pk": [ - 1874, - { - "_inc": [ - 1885 - ], - "_set": [ - 1896 - ], - "pk_columns": [ - 1894, - "event_media_players_pk_columns_input!" - ] - } - ], - "update_event_media_players_many": [ - 1891, - { - "updates": [ - 1908, - "[event_media_players_updates!]!" - ] - } - ], - "update_event_organizers": [ - 1952, - { - "_inc": [ - 1946 - ], - "_set": [ - 1957 - ], - "where": [ - 1944, - "event_organizers_bool_exp!" - ] - } - ], - "update_event_organizers_by_pk": [ - 1935, - { - "_inc": [ - 1946 - ], - "_set": [ - 1957 - ], - "pk_columns": [ - 1955, - "event_organizers_pk_columns_input!" - ] - } - ], - "update_event_organizers_many": [ - 1952, - { - "updates": [ - 1969, - "[event_organizers_updates!]!" - ] - } - ], - "update_event_players": [ - 1993, - { - "_inc": [ - 1987 - ], - "_set": [ - 1998 - ], - "where": [ - 1985, - "event_players_bool_exp!" - ] - } - ], - "update_event_players_by_pk": [ - 1976, - { - "_inc": [ - 1987 - ], - "_set": [ - 1998 - ], - "pk_columns": [ - 1996, - "event_players_pk_columns_input!" - ] - } - ], - "update_event_players_many": [ - 1993, - { - "updates": [ - 2010, - "[event_players_updates!]!" - ] - } - ], - "update_event_teams": [ - 2031, - { - "_set": [ - 2036 - ], - "where": [ - 2024, - "event_teams_bool_exp!" - ] - } - ], - "update_event_teams_by_pk": [ - 2017, - { - "_set": [ - 2036 - ], - "pk_columns": [ - 2034, - "event_teams_pk_columns_input!" - ] - } - ], - "update_event_teams_many": [ - 2031, - { - "updates": [ - 2040, - "[event_teams_updates!]!" - ] - } - ], - "update_event_tournaments": [ - 2055, - { - "_set": [ - 2060 - ], - "where": [ - 2048, - "event_tournaments_bool_exp!" - ] - } - ], - "update_event_tournaments_by_pk": [ - 2041, - { - "_set": [ - 2060 - ], - "pk_columns": [ - 2058, - "event_tournaments_pk_columns_input!" - ] - } - ], - "update_event_tournaments_many": [ - 2055, - { - "updates": [ - 2064, - "[event_tournaments_updates!]!" - ] - } - ], - "update_events": [ - 2075, - { - "_inc": [ - 2071 - ], - "_set": [ - 2081 - ], - "where": [ - 2069, - "events_bool_exp!" - ] - } - ], - "update_events_by_pk": [ - 2065, - { - "_inc": [ - 2071 - ], - "_set": [ - 2081 - ], - "pk_columns": [ - 2079, - "events_pk_columns_input!" - ] - } - ], - "update_events_many": [ - 2075, - { - "updates": [ - 2089, - "[events_updates!]!" - ] - } - ], - "update_friends": [ - 2105, - { - "_inc": [ - 2101 - ], - "_set": [ - 2110 - ], - "where": [ - 2099, - "friends_bool_exp!" - ] - } - ], - "update_friends_by_pk": [ - 2095, - { - "_inc": [ - 2101 - ], - "_set": [ - 2110 - ], - "pk_columns": [ - 2108, - "friends_pk_columns_input!" - ] - } - ], - "update_friends_many": [ - 2105, - { - "updates": [ - 2118, - "[friends_updates!]!" - ] - } - ], - "update_game_mode_plugins": [ - 2145, - { - "_append": [ - 2130 - ], - "_delete_at_path": [ - 2136 - ], - "_delete_elem": [ - 2137 - ], - "_delete_key": [ - 2138 - ], - "_inc": [ - 2139 - ], - "_prepend": [ - 2149 - ], - "_set": [ - 2153 - ], - "where": [ - 2134, - "game_mode_plugins_bool_exp!" - ] - } - ], - "update_game_mode_plugins_by_pk": [ - 2122, - { - "_append": [ - 2130 - ], - "_delete_at_path": [ - 2136 - ], - "_delete_elem": [ - 2137 - ], - "_delete_key": [ - 2138 - ], - "_inc": [ - 2139 - ], - "_prepend": [ - 2149 - ], - "_set": [ - 2153 - ], - "pk_columns": [ - 2148, - "game_mode_plugins_pk_columns_input!" - ] - } - ], - "update_game_mode_plugins_many": [ - 2145, - { - "updates": [ - 2165, - "[game_mode_plugins_updates!]!" - ] - } - ], - "update_game_modes": [ - 2180, - { - "_set": [ - 2186 - ], - "where": [ - 2175, - "game_modes_bool_exp!" - ] - } - ], - "update_game_modes_by_pk": [ - 2172, - { - "_set": [ - 2186 - ], - "pk_columns": [ - 2184, - "game_modes_pk_columns_input!" - ] - } - ], - "update_game_modes_many": [ - 2180, - { - "updates": [ - 2190, - "[game_modes_updates!]!" - ] - } - ], - "update_game_plugin_installs": [ - 2199, - { - "_set": [ - 2204 - ], - "where": [ - 2194, - "game_plugin_installs_bool_exp!" - ] - } - ], - "update_game_plugin_installs_by_pk": [ - 2191, - { - "_set": [ - 2204 - ], - "pk_columns": [ - 2202, - "game_plugin_installs_pk_columns_input!" - ] - } - ], - "update_game_plugin_installs_many": [ - 2199, - { - "updates": [ - 2208, - "[game_plugin_installs_updates!]!" - ] - } - ], - "update_game_plugin_versions": [ - 2228, - { - "_inc": [ - 2222 - ], - "_set": [ - 2235 - ], - "where": [ - 2220, - "game_plugin_versions_bool_exp!" - ] - } - ], - "update_game_plugin_versions_by_pk": [ - 2209, - { - "_inc": [ - 2222 - ], - "_set": [ - 2235 - ], - "pk_columns": [ - 2231, - "game_plugin_versions_pk_columns_input!" - ] - } - ], - "update_game_plugin_versions_many": [ - 2228, - { - "updates": [ - 2247, - "[game_plugin_versions_updates!]!" - ] - } - ], - "update_game_plugins": [ - 2267, - { - "_append": [ - 2257 - ], - "_delete_at_path": [ - 2261 - ], - "_delete_elem": [ - 2262 - ], - "_delete_key": [ - 2263 - ], - "_prepend": [ - 2272 - ], - "_set": [ - 2274 - ], - "where": [ - 2259, - "game_plugins_bool_exp!" - ] - } - ], - "update_game_plugins_by_pk": [ - 2254, - { - "_append": [ - 2257 - ], - "_delete_at_path": [ - 2261 - ], - "_delete_elem": [ - 2262 - ], - "_delete_key": [ - 2263 - ], - "_prepend": [ - 2272 - ], - "_set": [ - 2274 - ], - "pk_columns": [ - 2271, - "game_plugins_pk_columns_input!" - ] - } - ], - "update_game_plugins_many": [ - 2267, - { - "updates": [ - 2282, - "[game_plugins_updates!]!" - ] - } - ], - "update_game_server_node_plugins": [ - 2302, - { - "_set": [ - 2309 - ], - "where": [ - 2295, - "game_server_node_plugins_bool_exp!" - ] - } - ], - "update_game_server_node_plugins_by_pk": [ - 2286, - { - "_set": [ - 2309 - ], - "pk_columns": [ - 2305, - "game_server_node_plugins_pk_columns_input!" - ] - } - ], - "update_game_server_node_plugins_many": [ - 2302, - { - "updates": [ - 2313, - "[game_server_node_plugins_updates!]!" - ] - } - ], - "update_game_server_nodes": [ - 2337, - { - "_append": [ - 2322 - ], - "_delete_at_path": [ - 2328 - ], - "_delete_elem": [ - 2329 - ], - "_delete_key": [ - 2330 - ], - "_inc": [ - 2331 - ], - "_prepend": [ - 2342 - ], - "_set": [ - 2346 - ], - "where": [ - 2326, - "game_server_nodes_bool_exp!" - ] - } - ], - "update_game_server_nodes_by_pk": [ - 2314, - { - "_append": [ - 2322 - ], - "_delete_at_path": [ - 2328 - ], - "_delete_elem": [ - 2329 - ], - "_delete_key": [ - 2330 - ], - "_inc": [ - 2331 - ], - "_prepend": [ - 2342 - ], - "_set": [ - 2346 - ], - "pk_columns": [ - 2341, - "game_server_nodes_pk_columns_input!" - ] - } - ], - "update_game_server_nodes_many": [ - 2337, - { - "updates": [ - 2358, - "[game_server_nodes_updates!]!" - ] - } - ], - "update_game_versions": [ - 2379, - { - "_append": [ - 2368 - ], - "_delete_at_path": [ - 2372 - ], - "_delete_elem": [ - 2373 - ], - "_delete_key": [ - 2374 - ], - "_inc": [ - 2375 - ], - "_prepend": [ - 2384 - ], - "_set": [ - 2386 - ], - "where": [ - 2370, - "game_versions_bool_exp!" - ] - } - ], - "update_game_versions_by_pk": [ - 2365, - { - "_append": [ - 2368 - ], - "_delete_at_path": [ - 2372 - ], - "_delete_elem": [ - 2373 - ], - "_delete_key": [ - 2374 - ], - "_inc": [ - 2375 - ], - "_prepend": [ - 2384 - ], - "_set": [ - 2386 - ], - "pk_columns": [ - 2383, - "game_versions_pk_columns_input!" - ] - } - ], - "update_game_versions_many": [ - 2379, - { - "updates": [ - 2394, - "[game_versions_updates!]!" - ] - } - ], - "update_gamedata_signature_validations": [ - 2412, - { - "_append": [ - 2401 - ], - "_delete_at_path": [ - 2405 - ], - "_delete_elem": [ - 2406 - ], - "_delete_key": [ - 2407 - ], - "_inc": [ - 2408 - ], - "_prepend": [ - 2416 - ], - "_set": [ - 2418 - ], - "where": [ - 2403, - "gamedata_signature_validations_bool_exp!" - ] - } - ], - "update_gamedata_signature_validations_by_pk": [ - 2398, - { - "_append": [ - 2401 - ], - "_delete_at_path": [ - 2405 - ], - "_delete_elem": [ - 2406 - ], - "_delete_key": [ - 2407 - ], - "_inc": [ - 2408 - ], - "_prepend": [ - 2416 - ], - "_set": [ - 2418 - ], - "pk_columns": [ - 2415, - "gamedata_signature_validations_pk_columns_input!" - ] - } - ], - "update_gamedata_signature_validations_many": [ - 2412, - { - "updates": [ - 2426, - "[gamedata_signature_validations_updates!]!" - ] - } - ], - "update_leaderboard_entries": [ - 2451, - { - "_inc": [ - 2447 - ], - "_set": [ - 2454 - ], - "where": [ - 2446, - "leaderboard_entries_bool_exp!" - ] - } - ], - "update_leaderboard_entries_many": [ - 2451, - { - "updates": [ - 2461, - "[leaderboard_entries_updates!]!" - ] - } - ], - "update_league_divisions": [ - 2476, - { - "_inc": [ - 2472 - ], - "_set": [ - 2482 - ], - "where": [ - 2470, - "league_divisions_bool_exp!" - ] - } - ], - "update_league_divisions_by_pk": [ - 2466, - { - "_inc": [ - 2472 - ], - "_set": [ - 2482 - ], - "pk_columns": [ - 2480, - "league_divisions_pk_columns_input!" - ] - } - ], - "update_league_divisions_many": [ - 2476, - { - "updates": [ - 2490, - "[league_divisions_updates!]!" - ] - } - ], - "update_league_match_weeks": [ - 2511, - { - "_inc": [ - 2505 - ], - "_set": [ - 2516 - ], - "where": [ - 2503, - "league_match_weeks_bool_exp!" - ] - } - ], - "update_league_match_weeks_by_pk": [ - 2494, - { - "_inc": [ - 2505 - ], - "_set": [ - 2516 - ], - "pk_columns": [ - 2514, - "league_match_weeks_pk_columns_input!" - ] - } - ], - "update_league_match_weeks_many": [ - 2511, - { - "updates": [ - 2528, - "[league_match_weeks_updates!]!" - ] - } - ], - "update_league_relegation_playoffs": [ - 2552, - { - "_inc": [ - 2546 - ], - "_set": [ - 2557 - ], - "where": [ - 2544, - "league_relegation_playoffs_bool_exp!" - ] - } - ], - "update_league_relegation_playoffs_by_pk": [ - 2535, - { - "_inc": [ - 2546 - ], - "_set": [ - 2557 - ], - "pk_columns": [ - 2555, - "league_relegation_playoffs_pk_columns_input!" - ] - } - ], - "update_league_relegation_playoffs_many": [ - 2552, - { - "updates": [ - 2569, - "[league_relegation_playoffs_updates!]!" - ] - } - ], - "update_league_scheduling_proposals": [ - 2593, - { - "_inc": [ - 2587 - ], - "_set": [ - 2598 - ], - "where": [ - 2585, - "league_scheduling_proposals_bool_exp!" - ] - } - ], - "update_league_scheduling_proposals_by_pk": [ - 2576, - { - "_inc": [ - 2587 - ], - "_set": [ - 2598 - ], - "pk_columns": [ - 2596, - "league_scheduling_proposals_pk_columns_input!" - ] - } - ], - "update_league_scheduling_proposals_many": [ - 2593, - { - "updates": [ - 2610, - "[league_scheduling_proposals_updates!]!" - ] - } - ], - "update_league_season_divisions": [ - 2631, - { - "_set": [ - 2637 - ], - "where": [ - 2624, - "league_season_divisions_bool_exp!" - ] - } - ], - "update_league_season_divisions_by_pk": [ - 2617, - { - "_set": [ - 2637 - ], - "pk_columns": [ - 2635, - "league_season_divisions_pk_columns_input!" - ] - } - ], - "update_league_season_divisions_many": [ - 2631, - { - "updates": [ - 2641, - "[league_season_divisions_updates!]!" - ] - } - ], - "update_league_seasons": [ - 2656, - { - "_append": [ - 2645 - ], - "_delete_at_path": [ - 2649 - ], - "_delete_elem": [ - 2650 - ], - "_delete_key": [ - 2651 - ], - "_inc": [ - 2652 - ], - "_prepend": [ - 2661 - ], - "_set": [ - 2663 - ], - "where": [ - 2647, - "league_seasons_bool_exp!" - ] - } - ], - "update_league_seasons_by_pk": [ - 2642, - { - "_append": [ - 2645 - ], - "_delete_at_path": [ - 2649 - ], - "_delete_elem": [ - 2650 - ], - "_delete_key": [ - 2651 - ], - "_inc": [ - 2652 - ], - "_prepend": [ - 2661 - ], - "_set": [ - 2663 - ], - "pk_columns": [ - 2660, - "league_seasons_pk_columns_input!" - ] - } - ], - "update_league_seasons_many": [ - 2656, - { - "updates": [ - 2671, - "[league_seasons_updates!]!" - ] - } - ], - "update_league_team_movements": [ - 2692, - { - "_inc": [ - 2686 - ], - "_set": [ - 2697 - ], - "where": [ - 2684, - "league_team_movements_bool_exp!" - ] - } - ], - "update_league_team_movements_by_pk": [ - 2675, - { - "_inc": [ - 2686 - ], - "_set": [ - 2697 - ], - "pk_columns": [ - 2695, - "league_team_movements_pk_columns_input!" - ] - } - ], - "update_league_team_movements_many": [ - 2692, - { - "updates": [ - 2709, - "[league_team_movements_updates!]!" - ] - } - ], - "update_league_team_rosters": [ - 2733, - { - "_inc": [ - 2727 - ], - "_set": [ - 2738 - ], - "where": [ - 2725, - "league_team_rosters_bool_exp!" - ] - } - ], - "update_league_team_rosters_by_pk": [ - 2716, - { - "_inc": [ - 2727 - ], - "_set": [ - 2738 - ], - "pk_columns": [ - 2736, - "league_team_rosters_pk_columns_input!" - ] - } - ], - "update_league_team_rosters_many": [ - 2733, - { - "updates": [ - 2750, - "[league_team_rosters_updates!]!" - ] - } - ], - "update_league_team_seasons": [ - 2774, - { - "_inc": [ - 2768 - ], - "_set": [ - 2780 - ], - "where": [ - 2766, - "league_team_seasons_bool_exp!" - ] - } - ], - "update_league_team_seasons_by_pk": [ - 2757, - { - "_inc": [ - 2768 - ], - "_set": [ - 2780 - ], - "pk_columns": [ - 2778, - "league_team_seasons_pk_columns_input!" - ] - } - ], - "update_league_team_seasons_many": [ - 2774, - { - "updates": [ - 2792, - "[league_team_seasons_updates!]!" - ] - } - ], - "update_league_teams": [ - 2807, - { - "_set": [ - 2813 - ], - "where": [ - 2802, - "league_teams_bool_exp!" - ] - } - ], - "update_league_teams_by_pk": [ - 2799, - { - "_set": [ - 2813 - ], - "pk_columns": [ - 2811, - "league_teams_pk_columns_input!" - ] - } - ], - "update_league_teams_many": [ - 2807, - { - "updates": [ - 2817, - "[league_teams_updates!]!" - ] - } - ], - "update_lobbies": [ - 2826, - { - "_set": [ - 2832 - ], - "where": [ - 2821, - "lobbies_bool_exp!" - ] - } - ], - "update_lobbies_by_pk": [ - 2818, - { - "_set": [ - 2832 - ], - "pk_columns": [ - 2830, - "lobbies_pk_columns_input!" - ] - } - ], - "update_lobbies_many": [ - 2826, - { - "updates": [ - 2836, - "[lobbies_updates!]!" - ] - } - ], - "update_lobby_players": [ - 2856, - { - "_inc": [ - 2850 - ], - "_set": [ - 2863 - ], - "where": [ - 2848, - "lobby_players_bool_exp!" - ] - } - ], - "update_lobby_players_by_pk": [ - 2837, - { - "_inc": [ - 2850 - ], - "_set": [ - 2863 - ], - "pk_columns": [ - 2859, - "lobby_players_pk_columns_input!" - ] - } - ], - "update_lobby_players_many": [ - 2856, - { - "updates": [ - 2875, - "[lobby_players_updates!]!" - ] - } - ], - "update_map_callouts": [ - 2894, - { - "_append": [ - 2885 - ], - "_delete_at_path": [ - 2888 - ], - "_delete_elem": [ - 2889 - ], - "_delete_key": [ - 2890 - ], - "_prepend": [ - 2898 - ], - "_set": [ - 2900 - ], - "where": [ - 2886, - "map_callouts_bool_exp!" - ] - } - ], - "update_map_callouts_by_pk": [ - 2882, - { - "_append": [ - 2885 - ], - "_delete_at_path": [ - 2888 - ], - "_delete_elem": [ - 2889 - ], - "_delete_key": [ - 2890 - ], - "_prepend": [ - 2898 - ], - "_set": [ - 2900 - ], - "pk_columns": [ - 2897, - "map_callouts_pk_columns_input!" - ] - } - ], - "update_map_callouts_many": [ - 2894, - { - "updates": [ - 2904, - "[map_callouts_updates!]!" - ] - } - ], - "update_map_pools": [ - 2913, - { - "_set": [ - 2919 - ], - "where": [ - 2908, - "map_pools_bool_exp!" - ] - } - ], - "update_map_pools_by_pk": [ - 2905, - { - "_set": [ - 2919 - ], - "pk_columns": [ - 2917, - "map_pools_pk_columns_input!" - ] - } - ], - "update_map_pools_many": [ - 2913, - { - "updates": [ - 2923, - "[map_pools_updates!]!" - ] - } - ], - "update_maps": [ - 2940, - { - "_set": [ - 2948 - ], - "where": [ - 2933, - "maps_bool_exp!" - ] - } - ], - "update_maps_by_pk": [ - 2924, - { - "_set": [ - 2948 - ], - "pk_columns": [ - 2944, - "maps_pk_columns_input!" - ] - } - ], - "update_maps_many": [ - 2940, - { - "updates": [ - 2952, - "[maps_updates!]!" - ] - } - ], - "update_match_clips": [ - 2970, - { - "_inc": [ - 2964 - ], - "_set": [ - 2976 - ], - "where": [ - 2962, - "match_clips_bool_exp!" - ] - } - ], - "update_match_clips_by_pk": [ - 2953, - { - "_inc": [ - 2964 - ], - "_set": [ - 2976 - ], - "pk_columns": [ - 2974, - "match_clips_pk_columns_input!" - ] - } - ], - "update_match_clips_many": [ - 2970, - { - "updates": [ - 2988, - "[match_clips_updates!]!" - ] - } - ], - "update_match_demo_sessions": [ - 3016, - { - "_append": [ - 3001 - ], - "_delete_at_path": [ - 3007 - ], - "_delete_elem": [ - 3008 - ], - "_delete_key": [ - 3009 - ], - "_inc": [ - 3010 - ], - "_prepend": [ - 3020 - ], - "_set": [ - 3022 - ], - "where": [ - 3005, - "match_demo_sessions_bool_exp!" - ] - } - ], - "update_match_demo_sessions_by_pk": [ - 2995, - { - "_append": [ - 3001 - ], - "_delete_at_path": [ - 3007 - ], - "_delete_elem": [ - 3008 - ], - "_delete_key": [ - 3009 - ], - "_inc": [ - 3010 - ], - "_prepend": [ - 3020 - ], - "_set": [ - 3022 - ], - "pk_columns": [ - 3019, - "match_demo_sessions_pk_columns_input!" - ] - } - ], - "update_match_demo_sessions_many": [ - 3016, - { - "updates": [ - 3034, - "[match_demo_sessions_updates!]!" - ] - } - ], - "update_match_lineup_players": [ - 3060, - { - "_inc": [ - 3054 - ], - "_set": [ - 3067 - ], - "where": [ - 3052, - "match_lineup_players_bool_exp!" - ] - } - ], - "update_match_lineup_players_by_pk": [ - 3041, - { - "_inc": [ - 3054 - ], - "_set": [ - 3067 - ], - "pk_columns": [ - 3063, - "match_lineup_players_pk_columns_input!" - ] - } - ], - "update_match_lineup_players_many": [ - 3060, - { - "updates": [ - 3079, - "[match_lineup_players_updates!]!" - ] - } - ], - "update_match_lineups": [ - 3103, - { - "_inc": [ - 3097 - ], - "_set": [ - 3109 - ], - "where": [ - 3095, - "match_lineups_bool_exp!" - ] - } - ], - "update_match_lineups_by_pk": [ - 3086, - { - "_inc": [ - 3097 - ], - "_set": [ - 3109 - ], - "pk_columns": [ - 3107, - "match_lineups_pk_columns_input!" - ] - } - ], - "update_match_lineups_many": [ - 3103, - { - "updates": [ - 3121, - "[match_lineups_updates!]!" - ] - } - ], - "update_match_map_demos": [ - 3151, - { - "_append": [ - 3136 - ], - "_delete_at_path": [ - 3142 - ], - "_delete_elem": [ - 3143 - ], - "_delete_key": [ - 3144 - ], - "_inc": [ - 3145 - ], - "_prepend": [ - 3156 - ], - "_set": [ - 3160 - ], - "where": [ - 3140, - "match_map_demos_bool_exp!" - ] - } - ], - "update_match_map_demos_by_pk": [ - 3128, - { - "_append": [ - 3136 - ], - "_delete_at_path": [ - 3142 - ], - "_delete_elem": [ - 3143 - ], - "_delete_key": [ - 3144 - ], - "_inc": [ - 3145 - ], - "_prepend": [ - 3156 - ], - "_set": [ - 3160 - ], - "pk_columns": [ - 3155, - "match_map_demos_pk_columns_input!" - ] - } - ], - "update_match_map_demos_many": [ - 3151, - { - "updates": [ - 3172, - "[match_map_demos_updates!]!" - ] - } - ], - "update_match_map_rounds": [ - 3196, - { - "_inc": [ - 3190 - ], - "_set": [ - 3201 - ], - "where": [ - 3188, - "match_map_rounds_bool_exp!" - ] - } - ], - "update_match_map_rounds_by_pk": [ - 3179, - { - "_inc": [ - 3190 - ], - "_set": [ - 3201 - ], - "pk_columns": [ - 3199, - "match_map_rounds_pk_columns_input!" - ] - } - ], - "update_match_map_rounds_many": [ - 3196, - { - "updates": [ - 3213, - "[match_map_rounds_updates!]!" - ] - } - ], - "update_match_map_veto_picks": [ - 3236, - { - "_set": [ - 3243 - ], - "where": [ - 3229, - "match_map_veto_picks_bool_exp!" - ] - } - ], - "update_match_map_veto_picks_by_pk": [ - 3220, - { - "_set": [ - 3243 - ], - "pk_columns": [ - 3239, - "match_map_veto_picks_pk_columns_input!" - ] - } - ], - "update_match_map_veto_picks_many": [ - 3236, - { - "updates": [ - 3247, - "[match_map_veto_picks_updates!]!" - ] - } - ], - "update_match_maps": [ - 3265, - { - "_inc": [ - 3259 - ], - "_set": [ - 3271 - ], - "where": [ - 3257, - "match_maps_bool_exp!" - ] - } - ], - "update_match_maps_by_pk": [ - 3248, - { - "_inc": [ - 3259 - ], - "_set": [ - 3271 - ], - "pk_columns": [ - 3269, - "match_maps_pk_columns_input!" - ] - } - ], - "update_match_maps_many": [ - 3265, - { - "updates": [ - 3283, - "[match_maps_updates!]!" - ] - } - ], - "update_match_options": [ - 3309, - { - "_inc": [ - 3303 - ], - "_set": [ - 3317 - ], - "where": [ - 3301, - "match_options_bool_exp!" - ] - } - ], - "update_match_options_by_pk": [ - 3290, - { - "_inc": [ - 3303 - ], - "_set": [ - 3317 - ], - "pk_columns": [ - 3313, - "match_options_pk_columns_input!" - ] - } - ], - "update_match_options_many": [ - 3309, - { - "updates": [ - 3329, - "[match_options_updates!]!" - ] - } - ], - "update_match_region_veto_picks": [ - 3352, - { - "_set": [ - 3359 - ], - "where": [ - 3345, - "match_region_veto_picks_bool_exp!" - ] - } - ], - "update_match_region_veto_picks_by_pk": [ - 3336, - { - "_set": [ - 3359 - ], - "pk_columns": [ - 3355, - "match_region_veto_picks_pk_columns_input!" - ] - } - ], - "update_match_region_veto_picks_many": [ - 3352, - { - "updates": [ - 3363, - "[match_region_veto_picks_updates!]!" - ] - } - ], - "update_match_streams": [ - 3387, - { - "_append": [ - 3372 - ], - "_delete_at_path": [ - 3378 - ], - "_delete_elem": [ - 3379 - ], - "_delete_key": [ - 3380 - ], - "_inc": [ - 3381 - ], - "_prepend": [ - 3391 - ], - "_set": [ - 3395 - ], - "where": [ - 3376, - "match_streams_bool_exp!" - ] - } - ], - "update_match_streams_by_pk": [ - 3364, - { - "_append": [ - 3372 - ], - "_delete_at_path": [ - 3378 - ], - "_delete_elem": [ - 3379 - ], - "_delete_key": [ - 3380 - ], - "_inc": [ - 3381 - ], - "_prepend": [ - 3391 - ], - "_set": [ - 3395 - ], - "pk_columns": [ - 3390, - "match_streams_pk_columns_input!" - ] - } - ], - "update_match_streams_many": [ - 3387, - { - "updates": [ - 3407, - "[match_streams_updates!]!" - ] - } - ], - "update_match_type_cfgs": [ - 3422, - { - "_set": [ - 3427 - ], - "where": [ - 3417, - "match_type_cfgs_bool_exp!" - ] - } - ], - "update_match_type_cfgs_by_pk": [ - 3414, - { - "_set": [ - 3427 - ], - "pk_columns": [ - 3425, - "match_type_cfgs_pk_columns_input!" - ] - } - ], - "update_match_type_cfgs_many": [ - 3422, - { - "updates": [ - 3431, - "[match_type_cfgs_updates!]!" - ] - } - ], - "update_matches": [ - 3451, - { - "_inc": [ - 3445 - ], - "_set": [ - 3459 - ], - "where": [ - 3443, - "matches_bool_exp!" - ] - } - ], - "update_matches_by_pk": [ - 3432, - { - "_inc": [ - 3445 - ], - "_set": [ - 3459 - ], - "pk_columns": [ - 3455, - "matches_pk_columns_input!" - ] - } - ], - "update_matches_many": [ - 3451, - { - "updates": [ - 3471, - "[matches_updates!]!" - ] - } - ], - "update_migration_hashes_hashes": [ - 3486, - { - "_set": [ - 3491 - ], - "where": [ - 3481, - "migration_hashes_hashes_bool_exp!" - ] - } - ], - "update_migration_hashes_hashes_by_pk": [ - 3478, - { - "_set": [ - 3491 - ], - "pk_columns": [ - 3489, - "migration_hashes_hashes_pk_columns_input!" - ] - } - ], - "update_migration_hashes_hashes_many": [ - 3486, - { - "updates": [ - 3495, - "[migration_hashes_hashes_updates!]!" - ] - } - ], - "update_my_friends": [ - 3518, - { - "_append": [ - 3504 - ], - "_delete_at_path": [ - 3509 - ], - "_delete_elem": [ - 3510 - ], - "_delete_key": [ - 3511 - ], - "_inc": [ - 3512 - ], - "_prepend": [ - 3520 - ], - "_set": [ - 3524 - ], - "where": [ - 3508, - "my_friends_bool_exp!" - ] - } - ], - "update_my_friends_many": [ - 3518, - { - "updates": [ - 3535, - "[my_friends_updates!]!" - ] - } - ], - "update_news_articles": [ - 3552, - { - "_inc": [ - 3548 - ], - "_set": [ - 3557 - ], - "where": [ - 3546, - "news_articles_bool_exp!" - ] - } - ], - "update_news_articles_by_pk": [ - 3542, - { - "_inc": [ - 3548 - ], - "_set": [ - 3557 - ], - "pk_columns": [ - 3555, - "news_articles_pk_columns_input!" - ] - } - ], - "update_news_articles_many": [ - 3552, - { - "updates": [ - 3565, - "[news_articles_updates!]!" - ] - } - ], - "update_notification_preferences": [ - 3579, - { - "_inc": [ - 3575 - ], - "_set": [ - 3584 - ], - "where": [ - 3573, - "notification_preferences_bool_exp!" - ] - } - ], - "update_notification_preferences_by_pk": [ - 3569, - { - "_inc": [ - 3575 - ], - "_set": [ - 3584 - ], - "pk_columns": [ - 3582, - "notification_preferences_pk_columns_input!" - ] - } - ], - "update_notification_preferences_many": [ - 3579, - { - "updates": [ - 3592, - "[notification_preferences_updates!]!" - ] - } - ], - "update_notifications": [ - 3619, - { - "_append": [ - 3604 - ], - "_delete_at_path": [ - 3610 - ], - "_delete_elem": [ - 3611 - ], - "_delete_key": [ - 3612 - ], - "_inc": [ - 3613 - ], - "_prepend": [ - 3623 - ], - "_set": [ - 3627 - ], - "where": [ - 3608, - "notifications_bool_exp!" - ] - } - ], - "update_notifications_by_pk": [ - 3596, - { - "_append": [ - 3604 - ], - "_delete_at_path": [ - 3610 - ], - "_delete_elem": [ - 3611 - ], - "_delete_key": [ - 3612 - ], - "_inc": [ - 3613 - ], - "_prepend": [ - 3623 - ], - "_set": [ - 3627 - ], - "pk_columns": [ - 3622, - "notifications_pk_columns_input!" - ] - } - ], - "update_notifications_many": [ - 3619, - { - "updates": [ - 3639, - "[notifications_updates!]!" - ] - } - ], - "update_pending_match_import_players": [ - 3666, - { - "_inc": [ - 3660 - ], - "_set": [ - 3671 - ], - "where": [ - 3658, - "pending_match_import_players_bool_exp!" - ] - } - ], - "update_pending_match_import_players_by_pk": [ - 3649, - { - "_inc": [ - 3660 - ], - "_set": [ - 3671 - ], - "pk_columns": [ - 3669, - "pending_match_import_players_pk_columns_input!" - ] - } - ], - "update_pending_match_import_players_many": [ - 3666, - { - "updates": [ - 3683, - "[pending_match_import_players_updates!]!" - ] - } - ], - "update_pending_match_imports": [ - 3700, - { - "_inc": [ - 3696 - ], - "_set": [ - 3706 - ], - "where": [ - 3694, - "pending_match_imports_bool_exp!" - ] - } - ], - "update_pending_match_imports_by_pk": [ - 3690, - { - "_inc": [ - 3696 - ], - "_set": [ - 3706 - ], - "pk_columns": [ - 3704, - "pending_match_imports_pk_columns_input!" - ] - } - ], - "update_pending_match_imports_many": [ - 3700, - { - "updates": [ - 3714, - "[pending_match_imports_updates!]!" - ] - } - ], - "update_player_aim_stats_demo": [ - 3728, - { - "_inc": [ - 3724 - ], - "_set": [ - 3733 - ], - "where": [ - 3722, - "player_aim_stats_demo_bool_exp!" - ] - } - ], - "update_player_aim_stats_demo_by_pk": [ - 3718, - { - "_inc": [ - 3724 - ], - "_set": [ - 3733 - ], - "pk_columns": [ - 3731, - "player_aim_stats_demo_pk_columns_input!" - ] - } - ], - "update_player_aim_stats_demo_many": [ - 3728, - { - "updates": [ - 3741, - "[player_aim_stats_demo_updates!]!" - ] - } - ], - "update_player_aim_weapon_stats": [ - 3762, - { - "_inc": [ - 3756 - ], - "_set": [ - 3767 - ], - "where": [ - 3754, - "player_aim_weapon_stats_bool_exp!" - ] - } - ], - "update_player_aim_weapon_stats_by_pk": [ - 3745, - { - "_inc": [ - 3756 - ], - "_set": [ - 3767 - ], - "pk_columns": [ - 3765, - "player_aim_weapon_stats_pk_columns_input!" - ] - } - ], - "update_player_aim_weapon_stats_many": [ - 3762, - { - "updates": [ - 3779, - "[player_aim_weapon_stats_updates!]!" - ] - } - ], - "update_player_assists": [ - 3805, - { - "_inc": [ - 3799 - ], - "_set": [ - 3812 - ], - "where": [ - 3797, - "player_assists_bool_exp!" - ] - } - ], - "update_player_assists_by_pk": [ - 3786, - { - "_inc": [ - 3799 - ], - "_set": [ - 3812 - ], - "pk_columns": [ - 3808, - "player_assists_pk_columns_input!" - ] - } - ], - "update_player_assists_many": [ - 3805, - { - "updates": [ - 3824, - "[player_assists_updates!]!" - ] - } - ], - "update_player_damages": [ - 3866, - { - "_inc": [ - 3860 - ], - "_set": [ - 3871 - ], - "where": [ - 3858, - "player_damages_bool_exp!" - ] - } - ], - "update_player_damages_by_pk": [ - 3849, - { - "_inc": [ - 3860 - ], - "_set": [ - 3871 - ], - "pk_columns": [ - 3869, - "player_damages_pk_columns_input!" - ] - } - ], - "update_player_damages_many": [ - 3866, - { - "updates": [ - 3883, - "[player_damages_updates!]!" - ] - } - ], - "update_player_elo": [ - 3900, - { - "_inc": [ - 3896 - ], - "_set": [ - 3905 - ], - "where": [ - 3894, - "player_elo_bool_exp!" - ] - } - ], - "update_player_elo_by_pk": [ - 3890, - { - "_inc": [ - 3896 - ], - "_set": [ - 3905 - ], - "pk_columns": [ - 3903, - "player_elo_pk_columns_input!" - ] - } - ], - "update_player_elo_many": [ - 3900, - { - "updates": [ - 3913, - "[player_elo_updates!]!" - ] - } - ], - "update_player_faceit_rank_history": [ - 3934, - { - "_inc": [ - 3928 - ], - "_set": [ - 3939 - ], - "where": [ - 3926, - "player_faceit_rank_history_bool_exp!" - ] - } - ], - "update_player_faceit_rank_history_by_pk": [ - 3917, - { - "_inc": [ - 3928 - ], - "_set": [ - 3939 - ], - "pk_columns": [ - 3937, - "player_faceit_rank_history_pk_columns_input!" - ] - } - ], - "update_player_faceit_rank_history_many": [ - 3934, - { - "updates": [ - 3951, - "[player_faceit_rank_history_updates!]!" - ] - } - ], - "update_player_flashes": [ - 3977, - { - "_inc": [ - 3971 - ], - "_set": [ - 3984 - ], - "where": [ - 3969, - "player_flashes_bool_exp!" - ] - } - ], - "update_player_flashes_by_pk": [ - 3958, - { - "_inc": [ - 3971 - ], - "_set": [ - 3984 - ], - "pk_columns": [ - 3980, - "player_flashes_pk_columns_input!" - ] - } - ], - "update_player_flashes_many": [ - 3977, - { - "updates": [ - 3996, - "[player_flashes_updates!]!" - ] - } - ], - "update_player_kills": [ - 4063, - { - "_inc": [ - 4057 - ], - "_set": [ - 4070 - ], - "where": [ - 4014, - "player_kills_bool_exp!" - ] - } - ], - "update_player_kills_by_pk": [ - 4003, - { - "_inc": [ - 4057 - ], - "_set": [ - 4070 - ], - "pk_columns": [ - 4066, - "player_kills_pk_columns_input!" - ] - } - ], - "update_player_kills_by_weapon": [ - 4032, - { - "_inc": [ - 4026 - ], - "_set": [ - 4037 - ], - "where": [ - 4024, - "player_kills_by_weapon_bool_exp!" - ] - } - ], - "update_player_kills_by_weapon_by_pk": [ - 4015, - { - "_inc": [ - 4026 - ], - "_set": [ - 4037 - ], - "pk_columns": [ - 4035, - "player_kills_by_weapon_pk_columns_input!" - ] - } - ], - "update_player_kills_by_weapon_many": [ - 4032, - { - "updates": [ - 4049, - "[player_kills_by_weapon_updates!]!" - ] - } - ], - "update_player_kills_many": [ - 4063, - { - "updates": [ - 4082, - "[player_kills_updates!]!" - ] - } - ], - "update_player_leaderboard_rank": [ - 4098, - { - "_inc": [ - 4094 - ], - "_set": [ - 4101 - ], - "where": [ - 4093, - "player_leaderboard_rank_bool_exp!" - ] - } - ], - "update_player_leaderboard_rank_many": [ - 4098, - { - "updates": [ - 4108, - "[player_leaderboard_rank_updates!]!" - ] - } - ], - "update_player_match_map_stats": [ - 4129, - { - "_inc": [ - 4123 - ], - "_set": [ - 4134 - ], - "where": [ - 4121, - "player_match_map_stats_bool_exp!" - ] - } - ], - "update_player_match_map_stats_by_pk": [ - 4112, - { - "_inc": [ - 4123 - ], - "_set": [ - 4134 - ], - "pk_columns": [ - 4132, - "player_match_map_stats_pk_columns_input!" - ] - } - ], - "update_player_match_map_stats_many": [ - 4129, - { - "updates": [ - 4146, - "[player_match_map_stats_updates!]!" - ] - } - ], - "update_player_objectives": [ - 4221, - { - "_inc": [ - 4215 - ], - "_set": [ - 4226 - ], - "where": [ - 4213, - "player_objectives_bool_exp!" - ] - } - ], - "update_player_objectives_by_pk": [ - 4204, - { - "_inc": [ - 4215 - ], - "_set": [ - 4226 - ], - "pk_columns": [ - 4224, - "player_objectives_pk_columns_input!" - ] - } - ], - "update_player_objectives_many": [ - 4221, - { - "updates": [ - 4238, - "[player_objectives_updates!]!" - ] - } - ], - "update_player_premier_rank_history": [ - 4280, - { - "_inc": [ - 4274 - ], - "_set": [ - 4285 - ], - "where": [ - 4272, - "player_premier_rank_history_bool_exp!" - ] - } - ], - "update_player_premier_rank_history_by_pk": [ - 4263, - { - "_inc": [ - 4274 - ], - "_set": [ - 4285 - ], - "pk_columns": [ - 4283, - "player_premier_rank_history_pk_columns_input!" - ] - } - ], - "update_player_premier_rank_history_many": [ - 4280, - { - "updates": [ - 4297, - "[player_premier_rank_history_updates!]!" - ] - } - ], - "update_player_sanctions": [ - 4321, - { - "_inc": [ - 4315 - ], - "_set": [ - 4326 - ], - "where": [ - 4313, - "player_sanctions_bool_exp!" - ] - } - ], - "update_player_sanctions_by_pk": [ - 4304, - { - "_inc": [ - 4315 - ], - "_set": [ - 4326 - ], - "pk_columns": [ - 4324, - "player_sanctions_pk_columns_input!" - ] - } - ], - "update_player_sanctions_many": [ - 4321, - { - "updates": [ - 4338, - "[player_sanctions_updates!]!" - ] - } - ], - "update_player_season_stats": [ - 4372, - { - "_inc": [ - 4366 - ], - "_set": [ - 4385 - ], - "where": [ - 4364, - "player_season_stats_bool_exp!" - ] - } - ], - "update_player_season_stats_by_pk": [ - 4345, - { - "_inc": [ - 4366 - ], - "_set": [ - 4385 - ], - "pk_columns": [ - 4375, - "player_season_stats_pk_columns_input!" - ] - } - ], - "update_player_season_stats_many": [ - 4372, - { - "updates": [ - 4397, - "[player_season_stats_updates!]!" - ] - } - ], - "update_player_stats": [ - 4414, - { - "_inc": [ - 4410 - ], - "_set": [ - 4420 - ], - "where": [ - 4408, - "player_stats_bool_exp!" - ] - } - ], - "update_player_stats_by_pk": [ - 4404, - { - "_inc": [ - 4410 - ], - "_set": [ - 4420 - ], - "pk_columns": [ - 4418, - "player_stats_pk_columns_input!" - ] - } - ], - "update_player_stats_many": [ - 4414, - { - "updates": [ - 4428, - "[player_stats_updates!]!" - ] - } - ], - "update_player_steam_bot_friend": [ - 4446, - { - "_append": [ - 4435 - ], - "_delete_at_path": [ - 4439 - ], - "_delete_elem": [ - 4440 - ], - "_delete_key": [ - 4441 - ], - "_inc": [ - 4442 - ], - "_prepend": [ - 4450 - ], - "_set": [ - 4452 - ], - "where": [ - 4437, - "player_steam_bot_friend_bool_exp!" - ] - } - ], - "update_player_steam_bot_friend_by_pk": [ - 4432, - { - "_append": [ - 4435 - ], - "_delete_at_path": [ - 4439 - ], - "_delete_elem": [ - 4440 - ], - "_delete_key": [ - 4441 - ], - "_inc": [ - 4442 - ], - "_prepend": [ - 4450 - ], - "_set": [ - 4452 - ], - "pk_columns": [ - 4449, - "player_steam_bot_friend_pk_columns_input!" - ] - } - ], - "update_player_steam_bot_friend_many": [ - 4446, - { - "updates": [ - 4460, - "[player_steam_bot_friend_updates!]!" - ] - } - ], - "update_player_steam_match_auth": [ - 4474, - { - "_inc": [ - 4470 - ], - "_set": [ - 4479 - ], - "where": [ - 4468, - "player_steam_match_auth_bool_exp!" - ] - } - ], - "update_player_steam_match_auth_by_pk": [ - 4464, - { - "_inc": [ - 4470 - ], - "_set": [ - 4479 - ], - "pk_columns": [ - 4477, - "player_steam_match_auth_pk_columns_input!" - ] - } - ], - "update_player_steam_match_auth_many": [ - 4474, - { - "updates": [ - 4487, - "[player_steam_match_auth_updates!]!" - ] - } - ], - "update_player_unused_utility": [ - 4508, - { - "_inc": [ - 4502 - ], - "_set": [ - 4513 - ], - "where": [ - 4500, - "player_unused_utility_bool_exp!" - ] - } - ], - "update_player_unused_utility_by_pk": [ - 4491, - { - "_inc": [ - 4502 - ], - "_set": [ - 4513 - ], - "pk_columns": [ - 4511, - "player_unused_utility_pk_columns_input!" - ] - } - ], - "update_player_unused_utility_many": [ - 4508, - { - "updates": [ - 4525, - "[player_unused_utility_updates!]!" - ] - } - ], - "update_player_utility": [ - 4549, - { - "_inc": [ - 4543 - ], - "_set": [ - 4554 - ], - "where": [ - 4541, - "player_utility_bool_exp!" - ] - } - ], - "update_player_utility_by_pk": [ - 4532, - { - "_inc": [ - 4543 - ], - "_set": [ - 4554 - ], - "pk_columns": [ - 4552, - "player_utility_pk_columns_input!" - ] - } - ], - "update_player_utility_many": [ - 4549, - { - "updates": [ - 4566, - "[player_utility_updates!]!" - ] - } - ], - "update_players": [ - 4616, - { - "_inc": [ - 4612 - ], - "_set": [ - 4622 - ], - "where": [ - 4610, - "players_bool_exp!" - ] - } - ], - "update_players_by_pk": [ - 4606, - { - "_inc": [ - 4612 - ], - "_set": [ - 4622 - ], - "pk_columns": [ - 4620, - "players_pk_columns_input!" - ] - } - ], - "update_players_many": [ - 4616, - { - "updates": [ - 4630, - "[players_updates!]!" - ] - } - ], - "update_plugin_versions": [ - 4644, - { - "_inc": [ - 4640 - ], - "_set": [ - 4649 - ], - "where": [ - 4638, - "plugin_versions_bool_exp!" - ] - } - ], - "update_plugin_versions_by_pk": [ - 4634, - { - "_inc": [ - 4640 - ], - "_set": [ - 4649 - ], - "pk_columns": [ - 4647, - "plugin_versions_pk_columns_input!" - ] - } - ], - "update_plugin_versions_many": [ - 4644, - { - "updates": [ - 4657, - "[plugin_versions_updates!]!" - ] - } - ], - "update_push_subscriptions": [ - 4671, - { - "_inc": [ - 4667 - ], - "_set": [ - 4676 - ], - "where": [ - 4665, - "push_subscriptions_bool_exp!" - ] - } - ], - "update_push_subscriptions_by_pk": [ - 4661, - { - "_inc": [ - 4667 - ], - "_set": [ - 4676 - ], - "pk_columns": [ - 4674, - "push_subscriptions_pk_columns_input!" - ] - } - ], - "update_push_subscriptions_many": [ - 4671, - { - "updates": [ - 4684, - "[push_subscriptions_updates!]!" - ] - } - ], - "update_role_permissions": [ - 4699, - { - "_set": [ - 4702 - ], - "where": [ - 4695, - "role_permissions_bool_exp!" - ] - } - ], - "update_role_permissions_many": [ - 4699, - { - "updates": [ - 4705, - "[role_permissions_updates!]!" - ] - } - ], - "update_seasons": [ - 4716, - { - "_inc": [ - 4712 - ], - "_set": [ - 4722 - ], - "where": [ - 4710, - "seasons_bool_exp!" - ] - } - ], - "update_seasons_by_pk": [ - 4706, - { - "_inc": [ - 4712 - ], - "_set": [ - 4722 - ], - "pk_columns": [ - 4720, - "seasons_pk_columns_input!" - ] - } - ], - "update_seasons_many": [ - 4716, - { - "updates": [ - 4730, - "[seasons_updates!]!" - ] - } - ], - "update_server_regions": [ - 4743, - { - "_set": [ - 4749 - ], - "where": [ - 4738, - "server_regions_bool_exp!" - ] - } - ], - "update_server_regions_by_pk": [ - 4734, - { - "_set": [ - 4749 - ], - "pk_columns": [ - 4747, - "server_regions_pk_columns_input!" - ] - } - ], - "update_server_regions_many": [ - 4743, - { - "updates": [ - 4757, - "[server_regions_updates!]!" - ] - } - ], - "update_servers": [ - 4784, - { - "_append": [ - 4769 - ], - "_delete_at_path": [ - 4775 - ], - "_delete_elem": [ - 4776 - ], - "_delete_key": [ - 4777 - ], - "_inc": [ - 4778 - ], - "_prepend": [ - 4789 - ], - "_set": [ - 4793 - ], - "where": [ - 4773, - "servers_bool_exp!" - ] - } - ], - "update_servers_by_pk": [ - 4761, - { - "_append": [ - 4769 - ], - "_delete_at_path": [ - 4775 - ], - "_delete_elem": [ - 4776 - ], - "_delete_key": [ - 4777 - ], - "_inc": [ - 4778 - ], - "_prepend": [ - 4789 - ], - "_set": [ - 4793 - ], - "pk_columns": [ - 4788, - "servers_pk_columns_input!" - ] - } - ], - "update_servers_many": [ - 4784, - { - "updates": [ - 4805, - "[servers_updates!]!" - ] - } - ], - "update_settings": [ - 4820, - { - "_set": [ - 4825 - ], - "where": [ - 4815, - "settings_bool_exp!" - ] - } - ], - "update_settings_by_pk": [ - 4812, - { - "_set": [ - 4825 - ], - "pk_columns": [ - 4823, - "settings_pk_columns_input!" - ] - } - ], - "update_settings_many": [ - 4820, - { - "updates": [ - 4829, - "[settings_updates!]!" - ] - } - ], - "update_steam_account_claims": [ - 4846, - { - "_set": [ - 4851 - ], - "where": [ - 4839, - "steam_account_claims_bool_exp!" - ] - } - ], - "update_steam_account_claims_by_pk": [ - 4832, - { - "_set": [ - 4851 - ], - "pk_columns": [ - 4849, - "steam_account_claims_pk_columns_input!" - ] - } - ], - "update_steam_account_claims_many": [ - 4846, - { - "updates": [ - 4855, - "[steam_account_claims_updates!]!" - ] - } - ], - "update_steam_accounts": [ - 4866, - { - "_inc": [ - 4862 - ], - "_set": [ - 4872 - ], - "where": [ - 4860, - "steam_accounts_bool_exp!" - ] - } - ], - "update_steam_accounts_by_pk": [ - 4856, - { - "_inc": [ - 4862 - ], - "_set": [ - 4872 - ], - "pk_columns": [ - 4870, - "steam_accounts_pk_columns_input!" - ] - } - ], - "update_steam_accounts_many": [ - 4866, - { - "updates": [ - 4880, - "[steam_accounts_updates!]!" - ] - } - ], - "update_system_alerts": [ - 4894, - { - "_inc": [ - 4890 - ], - "_set": [ - 4899 - ], - "where": [ - 4888, - "system_alerts_bool_exp!" - ] - } - ], - "update_system_alerts_by_pk": [ - 4884, - { - "_inc": [ - 4890 - ], - "_set": [ - 4899 - ], - "pk_columns": [ - 4897, - "system_alerts_pk_columns_input!" - ] - } - ], - "update_system_alerts_many": [ - 4894, - { - "updates": [ - 4907, - "[system_alerts_updates!]!" - ] - } - ], - "update_team_invites": [ - 4928, - { - "_inc": [ - 4922 - ], - "_set": [ - 4933 - ], - "where": [ - 4920, - "team_invites_bool_exp!" - ] - } - ], - "update_team_invites_by_pk": [ - 4911, - { - "_inc": [ - 4922 - ], - "_set": [ - 4933 - ], - "pk_columns": [ - 4931, - "team_invites_pk_columns_input!" - ] - } - ], - "update_team_invites_many": [ - 4928, - { - "updates": [ - 4945, - "[team_invites_updates!]!" - ] - } - ], - "update_team_roster": [ - 4971, - { - "_inc": [ - 4965 - ], - "_set": [ - 4978 - ], - "where": [ - 4963, - "team_roster_bool_exp!" - ] - } - ], - "update_team_roster_by_pk": [ - 4952, - { - "_inc": [ - 4965 - ], - "_set": [ - 4978 - ], - "pk_columns": [ - 4974, - "team_roster_pk_columns_input!" - ] - } - ], - "update_team_roster_many": [ - 4971, - { - "updates": [ - 4990, - "[team_roster_updates!]!" - ] - } - ], - "update_team_scrim_alerts": [ - 5007, - { - "_inc": [ - 5003 - ], - "_set": [ - 5012 - ], - "where": [ - 5001, - "team_scrim_alerts_bool_exp!" - ] - } - ], - "update_team_scrim_alerts_by_pk": [ - 4997, - { - "_inc": [ - 5003 - ], - "_set": [ - 5012 - ], - "pk_columns": [ - 5010, - "team_scrim_alerts_pk_columns_input!" - ] - } - ], - "update_team_scrim_alerts_many": [ - 5007, - { - "updates": [ - 5020, - "[team_scrim_alerts_updates!]!" - ] - } - ], - "update_team_scrim_availability": [ - 5040, - { - "_set": [ - 5047 - ], - "where": [ - 5033, - "team_scrim_availability_bool_exp!" - ] - } - ], - "update_team_scrim_availability_by_pk": [ - 5024, - { - "_set": [ - 5047 - ], - "pk_columns": [ - 5043, - "team_scrim_availability_pk_columns_input!" - ] - } - ], - "update_team_scrim_availability_many": [ - 5040, - { - "updates": [ - 5051, - "[team_scrim_availability_updates!]!" - ] - } - ], - "update_team_scrim_request_proposals": [ - 5069, - { - "_inc": [ - 5063 - ], - "_set": [ - 5074 - ], - "where": [ - 5061, - "team_scrim_request_proposals_bool_exp!" - ] - } - ], - "update_team_scrim_request_proposals_by_pk": [ - 5052, - { - "_inc": [ - 5063 - ], - "_set": [ - 5074 - ], - "pk_columns": [ - 5072, - "team_scrim_request_proposals_pk_columns_input!" - ] - } - ], - "update_team_scrim_request_proposals_many": [ - 5069, - { - "updates": [ - 5086, - "[team_scrim_request_proposals_updates!]!" - ] - } - ], - "update_team_scrim_requests": [ - 5112, - { - "_inc": [ - 5106 - ], - "_set": [ - 5120 - ], - "where": [ - 5104, - "team_scrim_requests_bool_exp!" - ] - } - ], - "update_team_scrim_requests_by_pk": [ - 5093, - { - "_inc": [ - 5106 - ], - "_set": [ - 5120 - ], - "pk_columns": [ - 5116, - "team_scrim_requests_pk_columns_input!" - ] - } - ], - "update_team_scrim_requests_many": [ - 5112, - { - "updates": [ - 5132, - "[team_scrim_requests_updates!]!" - ] - } - ], - "update_team_scrim_settings": [ - 5149, - { - "_inc": [ - 5145 - ], - "_set": [ - 5155 - ], - "where": [ - 5143, - "team_scrim_settings_bool_exp!" - ] - } - ], - "update_team_scrim_settings_by_pk": [ - 5139, - { - "_inc": [ - 5145 - ], - "_set": [ - 5155 - ], - "pk_columns": [ - 5153, - "team_scrim_settings_pk_columns_input!" - ] - } - ], - "update_team_scrim_settings_many": [ - 5149, - { - "updates": [ - 5163, - "[team_scrim_settings_updates!]!" - ] - } - ], - "update_team_suggestions": [ - 5177, - { - "_inc": [ - 5173 - ], - "_set": [ - 5182 - ], - "where": [ - 5171, - "team_suggestions_bool_exp!" - ] - } - ], - "update_team_suggestions_by_pk": [ - 5167, - { - "_inc": [ - 5173 - ], - "_set": [ - 5182 - ], - "pk_columns": [ - 5180, - "team_suggestions_pk_columns_input!" - ] - } - ], - "update_team_suggestions_many": [ - 5177, - { - "updates": [ - 5190, - "[team_suggestions_updates!]!" - ] - } - ], - "update_teams": [ - 5213, - { - "_inc": [ - 5207 - ], - "_set": [ - 5221 - ], - "where": [ - 5205, - "teams_bool_exp!" - ] - } - ], - "update_teams_by_pk": [ - 5194, - { - "_inc": [ - 5207 - ], - "_set": [ - 5221 - ], - "pk_columns": [ - 5217, - "teams_pk_columns_input!" - ] - } - ], - "update_teams_many": [ - 5213, - { - "updates": [ - 5233, - "[teams_updates!]!" - ] - } - ], - "update_tournament_awards": [ - 5262, - { - "_inc": [ - 5256 - ], - "_set": [ - 5268 - ], - "where": [ - 5254, - "tournament_awards_bool_exp!" - ] - } - ], - "update_tournament_awards_by_pk": [ - 5245, - { - "_inc": [ - 5256 - ], - "_set": [ - 5268 - ], - "pk_columns": [ - 5266, - "tournament_awards_pk_columns_input!" - ] - } - ], - "update_tournament_awards_many": [ - 5262, - { - "updates": [ - 5280, - "[tournament_awards_updates!]!" - ] - } - ], - "update_tournament_brackets": [ - 5306, - { - "_inc": [ - 5300 - ], - "_set": [ - 5314 - ], - "where": [ - 5298, - "tournament_brackets_bool_exp!" - ] - } - ], - "update_tournament_brackets_by_pk": [ - 5287, - { - "_inc": [ - 5300 - ], - "_set": [ - 5314 - ], - "pk_columns": [ - 5310, - "tournament_brackets_pk_columns_input!" - ] - } - ], - "update_tournament_brackets_many": [ - 5306, - { - "updates": [ - 5326, - "[tournament_brackets_updates!]!" - ] - } - ], - "update_tournament_categories": [ - 5347, - { - "_set": [ - 5352 - ], - "where": [ - 5340, - "tournament_categories_bool_exp!" - ] - } - ], - "update_tournament_categories_by_pk": [ - 5333, - { - "_set": [ - 5352 - ], - "pk_columns": [ - 5350, - "tournament_categories_pk_columns_input!" - ] - } - ], - "update_tournament_categories_many": [ - 5347, - { - "updates": [ - 5356, - "[tournament_categories_updates!]!" - ] - } - ], - "update_tournament_free_agents": [ - 5374, - { - "_inc": [ - 5368 - ], - "_set": [ - 5379 - ], - "where": [ - 5366, - "tournament_free_agents_bool_exp!" - ] - } - ], - "update_tournament_free_agents_by_pk": [ - 5357, - { - "_inc": [ - 5368 - ], - "_set": [ - 5379 - ], - "pk_columns": [ - 5377, - "tournament_free_agents_pk_columns_input!" - ] - } - ], - "update_tournament_free_agents_many": [ - 5374, - { - "updates": [ - 5391, - "[tournament_free_agents_updates!]!" - ] - } - ], - "update_tournament_invite_code_uses": [ - 5415, - { - "_inc": [ - 5409 - ], - "_set": [ - 5420 - ], - "where": [ - 5407, - "tournament_invite_code_uses_bool_exp!" - ] - } - ], - "update_tournament_invite_code_uses_by_pk": [ - 5398, - { - "_inc": [ - 5409 - ], - "_set": [ - 5420 - ], - "pk_columns": [ - 5418, - "tournament_invite_code_uses_pk_columns_input!" - ] - } - ], - "update_tournament_invite_code_uses_many": [ - 5415, - { - "updates": [ - 5432, - "[tournament_invite_code_uses_updates!]!" - ] - } - ], - "update_tournament_invite_codes": [ - 5449, - { - "_inc": [ - 5445 - ], - "_set": [ - 5455 - ], - "where": [ - 5443, - "tournament_invite_codes_bool_exp!" - ] - } - ], - "update_tournament_invite_codes_by_pk": [ - 5439, - { - "_inc": [ - 5445 - ], - "_set": [ - 5455 - ], - "pk_columns": [ - 5453, - "tournament_invite_codes_pk_columns_input!" - ] - } - ], - "update_tournament_invite_codes_many": [ - 5449, - { - "updates": [ - 5463, - "[tournament_invite_codes_updates!]!" - ] - } - ], - "update_tournament_invites": [ - 5477, - { - "_inc": [ - 5473 - ], - "_set": [ - 5482 - ], - "where": [ - 5471, - "tournament_invites_bool_exp!" - ] - } - ], - "update_tournament_invites_by_pk": [ - 5467, - { - "_inc": [ - 5473 - ], - "_set": [ - 5482 - ], - "pk_columns": [ - 5480, - "tournament_invites_pk_columns_input!" - ] - } - ], - "update_tournament_invites_many": [ - 5477, - { - "updates": [ - 5490, - "[tournament_invites_updates!]!" - ] - } - ], - "update_tournament_leaderboard_entries": [ - 5503, - { - "_inc": [ - 5499 - ], - "_set": [ - 5506 - ], - "where": [ - 5498, - "tournament_leaderboard_entries_bool_exp!" - ] - } - ], - "update_tournament_leaderboard_entries_many": [ - 5503, - { - "updates": [ - 5513, - "[tournament_leaderboard_entries_updates!]!" - ] - } - ], - "update_tournament_no_shows": [ - 5527, - { - "_inc": [ - 5523 - ], - "_set": [ - 5532 - ], - "where": [ - 5521, - "tournament_no_shows_bool_exp!" - ] - } - ], - "update_tournament_no_shows_by_pk": [ - 5517, - { - "_inc": [ - 5523 - ], - "_set": [ - 5532 - ], - "pk_columns": [ - 5530, - "tournament_no_shows_pk_columns_input!" - ] - } - ], - "update_tournament_no_shows_many": [ - 5527, - { - "updates": [ - 5540, - "[tournament_no_shows_updates!]!" - ] - } - ], - "update_tournament_organizer_teams": [ - 5558, - { - "_set": [ - 5563 - ], - "where": [ - 5551, - "tournament_organizer_teams_bool_exp!" - ] - } - ], - "update_tournament_organizer_teams_by_pk": [ - 5544, - { - "_set": [ - 5563 - ], - "pk_columns": [ - 5561, - "tournament_organizer_teams_pk_columns_input!" - ] - } - ], - "update_tournament_organizer_teams_many": [ - 5558, - { - "updates": [ - 5567, - "[tournament_organizer_teams_updates!]!" - ] - } - ], - "update_tournament_organizers": [ - 5585, - { - "_inc": [ - 5579 - ], - "_set": [ - 5590 - ], - "where": [ - 5577, - "tournament_organizers_bool_exp!" - ] - } - ], - "update_tournament_organizers_by_pk": [ - 5568, - { - "_inc": [ - 5579 - ], - "_set": [ - 5590 - ], - "pk_columns": [ - 5588, - "tournament_organizers_pk_columns_input!" - ] - } - ], - "update_tournament_organizers_many": [ - 5585, - { - "updates": [ - 5602, - "[tournament_organizers_updates!]!" - ] - } - ], - "update_tournament_prizes": [ - 5626, - { - "_inc": [ - 5620 - ], - "_set": [ - 5631 - ], - "where": [ - 5618, - "tournament_prizes_bool_exp!" - ] - } - ], - "update_tournament_prizes_by_pk": [ - 5609, - { - "_inc": [ - 5620 - ], - "_set": [ - 5631 - ], - "pk_columns": [ - 5629, - "tournament_prizes_pk_columns_input!" - ] - } - ], - "update_tournament_prizes_many": [ - 5626, - { - "updates": [ - 5643, - "[tournament_prizes_updates!]!" - ] - } - ], - "update_tournament_registration_unlocks": [ - 5660, - { - "_inc": [ - 5656 - ], - "_set": [ - 5664 - ], - "where": [ - 5654, - "tournament_registration_unlocks_bool_exp!" - ] - } - ], - "update_tournament_registration_unlocks_many": [ - 5660, - { - "updates": [ - 5672, - "[tournament_registration_unlocks_updates!]!" - ] - } - ], - "update_tournament_stage_windows": [ - 5693, - { - "_inc": [ - 5687 - ], - "_set": [ - 5698 - ], - "where": [ - 5685, - "tournament_stage_windows_bool_exp!" - ] - } - ], - "update_tournament_stage_windows_by_pk": [ - 5676, - { - "_inc": [ - 5687 - ], - "_set": [ - 5698 - ], - "pk_columns": [ - 5696, - "tournament_stage_windows_pk_columns_input!" - ] - } - ], - "update_tournament_stage_windows_many": [ - 5693, - { - "updates": [ - 5710, - "[tournament_stage_windows_updates!]!" - ] - } - ], - "update_tournament_stages": [ - 5740, - { - "_append": [ - 5725 - ], - "_delete_at_path": [ - 5731 - ], - "_delete_elem": [ - 5732 - ], - "_delete_key": [ - 5733 - ], - "_inc": [ - 5734 - ], - "_prepend": [ - 5745 - ], - "_set": [ - 5749 - ], - "where": [ - 5729, - "tournament_stages_bool_exp!" - ] - } - ], - "update_tournament_stages_by_pk": [ - 5717, - { - "_append": [ - 5725 - ], - "_delete_at_path": [ - 5731 - ], - "_delete_elem": [ - 5732 - ], - "_delete_key": [ - 5733 - ], - "_inc": [ - 5734 - ], - "_prepend": [ - 5745 - ], - "_set": [ - 5749 - ], - "pk_columns": [ - 5744, - "tournament_stages_pk_columns_input!" - ] - } - ], - "update_tournament_stages_many": [ - 5740, - { - "updates": [ - 5761, - "[tournament_stages_updates!]!" - ] - } - ], - "update_tournament_team_invites": [ - 5785, - { - "_inc": [ - 5779 - ], - "_set": [ - 5790 - ], - "where": [ - 5777, - "tournament_team_invites_bool_exp!" - ] - } - ], - "update_tournament_team_invites_by_pk": [ - 5768, - { - "_inc": [ - 5779 - ], - "_set": [ - 5790 - ], - "pk_columns": [ - 5788, - "tournament_team_invites_pk_columns_input!" - ] - } - ], - "update_tournament_team_invites_many": [ - 5785, - { - "updates": [ - 5802, - "[tournament_team_invites_updates!]!" - ] - } - ], - "update_tournament_team_roster": [ - 5826, - { - "_inc": [ - 5820 - ], - "_set": [ - 5831 - ], - "where": [ - 5818, - "tournament_team_roster_bool_exp!" - ] - } - ], - "update_tournament_team_roster_by_pk": [ - 5809, - { - "_inc": [ - 5820 - ], - "_set": [ - 5831 - ], - "pk_columns": [ - 5829, - "tournament_team_roster_pk_columns_input!" - ] - } - ], - "update_tournament_team_roster_many": [ - 5826, - { - "updates": [ - 5843, - "[tournament_team_roster_updates!]!" - ] - } - ], - "update_tournament_teams": [ - 5869, - { - "_inc": [ - 5863 - ], - "_set": [ - 5877 - ], - "where": [ - 5861, - "tournament_teams_bool_exp!" - ] - } - ], - "update_tournament_teams_by_pk": [ - 5850, - { - "_inc": [ - 5863 - ], - "_set": [ - 5877 - ], - "pk_columns": [ - 5873, - "tournament_teams_pk_columns_input!" - ] - } - ], - "update_tournament_teams_many": [ - 5869, - { - "updates": [ - 5889, - "[tournament_teams_updates!]!" - ] - } - ], - "update_tournaments": [ - 5925, - { - "_inc": [ - 5919 - ], - "_set": [ - 5941 - ], - "where": [ - 5917, - "tournaments_bool_exp!" - ] - } - ], - "update_tournaments_by_pk": [ - 5896, - { - "_inc": [ - 5919 - ], - "_set": [ - 5941 - ], - "pk_columns": [ - 5929, - "tournaments_pk_columns_input!" - ] - } - ], - "update_tournaments_many": [ - 5925, - { - "updates": [ - 5953, - "[tournaments_updates!]!" - ] - } - ], - "update_utility_collection_items": [ - 5977, - { - "_inc": [ - 5971 - ], - "_set": [ - 5982 - ], - "where": [ - 5969, - "utility_collection_items_bool_exp!" - ] - } - ], - "update_utility_collection_items_by_pk": [ - 5960, - { - "_inc": [ - 5971 - ], - "_set": [ - 5982 - ], - "pk_columns": [ - 5980, - "utility_collection_items_pk_columns_input!" - ] - } - ], - "update_utility_collection_items_many": [ - 5977, - { - "updates": [ - 5994, - "[utility_collection_items_updates!]!" - ] - } - ], - "update_utility_collections": [ - 6011, - { - "_inc": [ - 6007 - ], - "_set": [ - 6017 - ], - "where": [ - 6005, - "utility_collections_bool_exp!" - ] - } - ], - "update_utility_collections_by_pk": [ - 6001, - { - "_inc": [ - 6007 - ], - "_set": [ - 6017 - ], - "pk_columns": [ - 6015, - "utility_collections_pk_columns_input!" - ] - } - ], - "update_utility_collections_many": [ - 6011, - { - "updates": [ - 6025, - "[utility_collections_updates!]!" - ] - } - ], - "update_utility_demo_mines": [ - 6039, - { - "_inc": [ - 6035 - ], - "_set": [ - 6044 - ], - "where": [ - 6033, - "utility_demo_mines_bool_exp!" - ] - } - ], - "update_utility_demo_mines_by_pk": [ - 6029, - { - "_inc": [ - 6035 - ], - "_set": [ - 6044 - ], - "pk_columns": [ - 6042, - "utility_demo_mines_pk_columns_input!" - ] - } - ], - "update_utility_demo_mines_many": [ - 6039, - { - "updates": [ - 6052, - "[utility_demo_mines_updates!]!" - ] - } - ], - "update_utility_demo_throws": [ - 6066, - { - "_inc": [ - 6062 - ], - "_set": [ - 6071 - ], - "where": [ - 6060, - "utility_demo_throws_bool_exp!" - ] - } - ], - "update_utility_demo_throws_by_pk": [ - 6056, - { - "_inc": [ - 6062 - ], - "_set": [ - 6071 - ], - "pk_columns": [ - 6069, - "utility_demo_throws_pk_columns_input!" - ] - } - ], - "update_utility_demo_throws_many": [ - 6066, - { - "updates": [ - 6079, - "[utility_demo_throws_updates!]!" - ] - } - ], - "update_utility_drift_results": [ - 6110, - { - "_inc": [ - 6104 - ], - "_set": [ - 6123 - ], - "where": [ - 6102, - "utility_drift_results_bool_exp!" - ] - } - ], - "update_utility_drift_results_by_pk": [ - 6083, - { - "_inc": [ - 6104 - ], - "_set": [ - 6123 - ], - "pk_columns": [ - 6113, - "utility_drift_results_pk_columns_input!" - ] - } - ], - "update_utility_drift_results_many": [ - 6110, - { - "updates": [ - 6135, - "[utility_drift_results_updates!]!" - ] - } - ], - "update_utility_drift_scans": [ - 6152, - { - "_inc": [ - 6148 - ], - "_set": [ - 6158 - ], - "where": [ - 6146, - "utility_drift_scans_bool_exp!" - ] - } - ], - "update_utility_drift_scans_by_pk": [ - 6142, - { - "_inc": [ - 6148 - ], - "_set": [ - 6158 - ], - "pk_columns": [ - 6156, - "utility_drift_scans_pk_columns_input!" - ] - } - ], - "update_utility_drift_scans_many": [ - 6152, - { - "updates": [ - 6166, - "[utility_drift_scans_updates!]!" - ] - } - ], - "update_utility_lineup_favorites": [ - 6187, - { - "_inc": [ - 6181 - ], - "_set": [ - 6192 - ], - "where": [ - 6179, - "utility_lineup_favorites_bool_exp!" - ] - } - ], - "update_utility_lineup_favorites_by_pk": [ - 6170, - { - "_inc": [ - 6181 - ], - "_set": [ - 6192 - ], - "pk_columns": [ - 6190, - "utility_lineup_favorites_pk_columns_input!" - ] - } - ], - "update_utility_lineup_favorites_many": [ - 6187, - { - "updates": [ - 6204, - "[utility_lineup_favorites_updates!]!" - ] - } - ], - "update_utility_lineup_progress": [ - 6238, - { - "_inc": [ - 6232 - ], - "_set": [ - 6251 - ], - "where": [ - 6230, - "utility_lineup_progress_bool_exp!" - ] - } - ], - "update_utility_lineup_progress_by_pk": [ - 6211, - { - "_inc": [ - 6232 - ], - "_set": [ - 6251 - ], - "pk_columns": [ - 6241, - "utility_lineup_progress_pk_columns_input!" - ] - } - ], - "update_utility_lineup_progress_many": [ - 6238, - { - "updates": [ - 6263, - "[utility_lineup_progress_updates!]!" - ] - } - ], - "update_utility_lineup_renders": [ - 6293, - { - "_append": [ - 6278 - ], - "_delete_at_path": [ - 6284 - ], - "_delete_elem": [ - 6285 - ], - "_delete_key": [ - 6286 - ], - "_inc": [ - 6287 - ], - "_prepend": [ - 6297 - ], - "_set": [ - 6301 - ], - "where": [ - 6282, - "utility_lineup_renders_bool_exp!" - ] - } - ], - "update_utility_lineup_renders_by_pk": [ - 6270, - { - "_append": [ - 6278 - ], - "_delete_at_path": [ - 6284 - ], - "_delete_elem": [ - 6285 - ], - "_delete_key": [ - 6286 - ], - "_inc": [ - 6287 - ], - "_prepend": [ - 6297 - ], - "_set": [ - 6301 - ], - "pk_columns": [ - 6296, - "utility_lineup_renders_pk_columns_input!" - ] - } - ], - "update_utility_lineup_renders_many": [ - 6293, - { - "updates": [ - 6313, - "[utility_lineup_renders_updates!]!" - ] - } - ], - "update_utility_lineup_repairs": [ - 6347, - { - "_inc": [ - 6341 - ], - "_set": [ - 6360 - ], - "where": [ - 6339, - "utility_lineup_repairs_bool_exp!" - ] - } - ], - "update_utility_lineup_repairs_by_pk": [ - 6320, - { - "_inc": [ - 6341 - ], - "_set": [ - 6360 - ], - "pk_columns": [ - 6350, - "utility_lineup_repairs_pk_columns_input!" - ] - } - ], - "update_utility_lineup_repairs_many": [ - 6347, - { - "updates": [ - 6372, - "[utility_lineup_repairs_updates!]!" - ] - } - ], - "update_utility_lineup_votes": [ - 6396, - { - "_inc": [ - 6390 - ], - "_set": [ - 6401 - ], - "where": [ - 6388, - "utility_lineup_votes_bool_exp!" - ] - } - ], - "update_utility_lineup_votes_by_pk": [ - 6379, - { - "_inc": [ - 6390 - ], - "_set": [ - 6401 - ], - "pk_columns": [ - 6399, - "utility_lineup_votes_pk_columns_input!" - ] - } - ], - "update_utility_lineup_votes_many": [ - 6396, - { - "updates": [ - 6413, - "[utility_lineup_votes_updates!]!" - ] - } - ], - "update_utility_lineups": [ - 6453, - { - "_append": [ - 6438 - ], - "_delete_at_path": [ - 6444 - ], - "_delete_elem": [ - 6445 - ], - "_delete_key": [ - 6446 - ], - "_inc": [ - 6447 - ], - "_prepend": [ - 6458 - ], - "_set": [ - 6470 - ], - "where": [ - 6442, - "utility_lineups_bool_exp!" - ] - } - ], - "update_utility_lineups_by_pk": [ - 6420, - { - "_append": [ - 6438 - ], - "_delete_at_path": [ - 6444 - ], - "_delete_elem": [ - 6445 - ], - "_delete_key": [ - 6446 - ], - "_inc": [ - 6447 - ], - "_prepend": [ - 6458 - ], - "_set": [ - 6470 - ], - "pk_columns": [ - 6457, - "utility_lineups_pk_columns_input!" - ] - } - ], - "update_utility_lineups_many": [ - 6453, - { - "updates": [ - 6482, - "[utility_lineups_updates!]!" - ] - } - ], - "update_utility_meta_lineups": [ - 6499, - { - "_inc": [ - 6495 - ], - "_set": [ - 6504 - ], - "where": [ - 6493, - "utility_meta_lineups_bool_exp!" - ] - } - ], - "update_utility_meta_lineups_by_pk": [ - 6489, - { - "_inc": [ - 6495 - ], - "_set": [ - 6504 - ], - "pk_columns": [ - 6502, - "utility_meta_lineups_pk_columns_input!" - ] - } - ], - "update_utility_meta_lineups_many": [ - 6499, - { - "updates": [ - 6512, - "[utility_meta_lineups_updates!]!" - ] - } - ], - "update_utility_playbook_steps": [ - 6533, - { - "_inc": [ - 6527 - ], - "_set": [ - 6538 - ], - "where": [ - 6525, - "utility_playbook_steps_bool_exp!" - ] - } - ], - "update_utility_playbook_steps_by_pk": [ - 6516, - { - "_inc": [ - 6527 - ], - "_set": [ - 6538 - ], - "pk_columns": [ - 6536, - "utility_playbook_steps_pk_columns_input!" - ] - } - ], - "update_utility_playbook_steps_many": [ - 6533, - { - "updates": [ - 6550, - "[utility_playbook_steps_updates!]!" - ] - } - ], - "update_utility_playbooks": [ - 6567, - { - "_inc": [ - 6563 - ], - "_set": [ - 6573 - ], - "where": [ - 6561, - "utility_playbooks_bool_exp!" - ] - } - ], - "update_utility_playbooks_by_pk": [ - 6557, - { - "_inc": [ - 6563 - ], - "_set": [ - 6573 - ], - "pk_columns": [ - 6571, - "utility_playbooks_pk_columns_input!" - ] - } - ], - "update_utility_playbooks_many": [ - 6567, - { - "updates": [ - 6581, - "[utility_playbooks_updates!]!" - ] - } - ], - "update_utility_practice_invites": [ - 6602, - { - "_inc": [ - 6596 - ], - "_set": [ - 6607 - ], - "where": [ - 6594, - "utility_practice_invites_bool_exp!" - ] - } - ], - "update_utility_practice_invites_by_pk": [ - 6585, - { - "_inc": [ - 6596 - ], - "_set": [ - 6607 - ], - "pk_columns": [ - 6605, - "utility_practice_invites_pk_columns_input!" - ] - } - ], - "update_utility_practice_invites_many": [ - 6602, - { - "updates": [ - 6619, - "[utility_practice_invites_updates!]!" - ] - } - ], - "update_utility_practice_sessions": [ - 6645, - { - "_inc": [ - 6639 - ], - "_set": [ - 6653 - ], - "where": [ - 6637, - "utility_practice_sessions_bool_exp!" - ] - } - ], - "update_utility_practice_sessions_by_pk": [ - 6626, - { - "_inc": [ - 6639 - ], - "_set": [ - 6653 - ], - "pk_columns": [ - 6649, - "utility_practice_sessions_pk_columns_input!" - ] - } - ], - "update_utility_practice_sessions_many": [ - 6645, - { - "updates": [ - 6665, - "[utility_practice_sessions_updates!]!" - ] - } - ], - "update_v_match_captains": [ - 6837, - { - "_inc": [ - 6833 - ], - "_set": [ - 6841 - ], - "where": [ - 6832, - "v_match_captains_bool_exp!" - ] - } - ], - "update_v_match_captains_many": [ - 6837, - { - "updates": [ - 6848, - "[v_match_captains_updates!]!" - ] - } - ], - "update_v_match_map_backup_rounds": [ - 6948, - { - "_inc": [ - 6944 - ], - "_set": [ - 6951 - ], - "where": [ - 6943, - "v_match_map_backup_rounds_bool_exp!" - ] - } - ], - "update_v_match_map_backup_rounds_many": [ - 6948, - { - "updates": [ - 6958, - "[v_match_map_backup_rounds_updates!]!" - ] - } - ], - "update_v_player_match_map_hltv": [ - 7170, - { - "_inc": [ - 7164 - ], - "_set": [ - 7173 - ], - "where": [ - 7163, - "v_player_match_map_hltv_bool_exp!" - ] - } - ], - "update_v_player_match_map_hltv_many": [ - 7170, - { - "updates": [ - 7184, - "[v_player_match_map_hltv_updates!]!" - ] - } - ], - "update_v_pool_maps": [ - 7347, - { - "_set": [ - 7352 - ], - "where": [ - 7341, - "v_pool_maps_bool_exp!" - ] - } - ], - "update_v_pool_maps_many": [ - 7347, - { - "updates": [ - 7355, - "[v_pool_maps_updates!]!" - ] - } - ], - "update_v_team_stage_results": [ - 7441, - { - "_inc": [ - 7435 - ], - "_set": [ - 7455 - ], - "where": [ - 7433, - "v_team_stage_results_bool_exp!" - ] - } - ], - "update_v_team_stage_results_by_pk": [ - 7414, - { - "_inc": [ - 7435 - ], - "_set": [ - 7455 - ], - "pk_columns": [ - 7445, - "v_team_stage_results_pk_columns_input!" - ] - } - ], - "update_v_team_stage_results_many": [ - 7441, - { - "updates": [ - 7467, - "[v_team_stage_results_updates!]!" - ] - } - ], - "validateGamedata": [ - 88, - { - "game_server_node_id": [ - 6672, - "uuid!" - ] - } - ], - "watchDemo": [ - 152, - { - "match_map_demo_id": [ - 6672 - ], - "match_map_id": [ - 6672, - "uuid!" - ] - } - ], - "writeServerFile": [ - 88, - { - "content": [ - 85, - "String!" - ], - "file_path": [ - 85, - "String!" - ], - "node_id": [ - 85, - "String!" - ], - "server_id": [ - 85 - ] - } - ], - "__typename": [ - 85 - ] - }, - "Subscription": { - "_map_pool": [ - 155, - { - "distinct_on": [ - 167, - "[_map_pool_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 165, - "[_map_pool_order_by!]" - ], - "where": [ - 158 - ] - } - ], - "_map_pool_aggregate": [ - 156, - { - "distinct_on": [ - 167, - "[_map_pool_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 165, - "[_map_pool_order_by!]" - ], - "where": [ - 158 - ] - } - ], - "_map_pool_by_pk": [ - 155, - { - "map_id": [ - 6672, - "uuid!" - ], - "map_pool_id": [ - 6672, - "uuid!" - ] - } - ], - "_map_pool_stream": [ - 155, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 169, - "[_map_pool_stream_cursor_input]!" - ], - "where": [ - 158 - ] - } - ], - "abandoned_matches": [ - 174, - { - "distinct_on": [ - 195, - "[abandoned_matches_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 193, - "[abandoned_matches_order_by!]" - ], - "where": [ - 183 - ] - } - ], - "abandoned_matches_aggregate": [ - 175, - { - "distinct_on": [ - 195, - "[abandoned_matches_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 193, - "[abandoned_matches_order_by!]" - ], - "where": [ - 183 - ] - } - ], - "abandoned_matches_by_pk": [ - 174, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "abandoned_matches_stream": [ - 174, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 203, - "[abandoned_matches_stream_cursor_input]!" - ], - "where": [ - 183 - ] - } - ], - "api_keys": [ - 215, - { - "distinct_on": [ - 229, - "[api_keys_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 227, - "[api_keys_order_by!]" - ], - "where": [ - 219 - ] - } - ], - "api_keys_aggregate": [ - 216, - { - "distinct_on": [ - 229, - "[api_keys_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 227, - "[api_keys_order_by!]" - ], - "where": [ - 219 - ] - } - ], - "api_keys_by_pk": [ - 215, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "api_keys_stream": [ - 215, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 234, - "[api_keys_stream_cursor_input]!" - ], - "where": [ - 219 - ] - } - ], - "award_recipients": [ - 243, - { - "distinct_on": [ - 264, - "[award_recipients_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 262, - "[award_recipients_order_by!]" - ], - "where": [ - 252 - ] - } - ], - "award_recipients_aggregate": [ - 244, - { - "distinct_on": [ - 264, - "[award_recipients_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 262, - "[award_recipients_order_by!]" - ], - "where": [ - 252 - ] - } - ], - "award_recipients_by_pk": [ - 243, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "award_recipients_stream": [ - 243, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 272, - "[award_recipients_stream_cursor_input]!" - ], - "where": [ - 252 - ] - } - ], - "awards": [ - 284, - { - "distinct_on": [ - 299, - "[awards_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 297, - "[awards_order_by!]" - ], - "where": [ - 288 - ] - } - ], - "awards_aggregate": [ - 285, - { - "distinct_on": [ - 299, - "[awards_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 297, - "[awards_order_by!]" - ], - "where": [ - 288 - ] - } - ], - "awards_by_pk": [ - 284, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "awards_stream": [ - 284, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 304, - "[awards_stream_cursor_input]!" - ], - "where": [ - 288 - ] - } - ], - "chat_read_state": [ - 317, - { - "distinct_on": [ - 331, - "[chat_read_state_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 329, - "[chat_read_state_order_by!]" - ], - "where": [ - 321 - ] - } - ], - "chat_read_state_aggregate": [ - 318, - { - "distinct_on": [ - 331, - "[chat_read_state_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 329, - "[chat_read_state_order_by!]" - ], - "where": [ - 321 - ] - } - ], - "chat_read_state_by_pk": [ - 317, - { - "steam_id": [ - 312, - "bigint!" - ], - "thread": [ - 85, - "String!" - ] - } - ], - "chat_read_state_stream": [ - 317, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 336, - "[chat_read_state_stream_cursor_input]!" - ], - "where": [ - 321 - ] - } - ], - "clip_render_jobs": [ - 344, - { - "distinct_on": [ - 372, - "[clip_render_jobs_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 369, - "[clip_render_jobs_order_by!]" - ], - "where": [ - 356 - ] - } - ], - "clip_render_jobs_aggregate": [ - 345, - { - "distinct_on": [ - 372, - "[clip_render_jobs_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 369, - "[clip_render_jobs_order_by!]" - ], - "where": [ - 356 - ] - } - ], - "clip_render_jobs_by_pk": [ - 344, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "clip_render_jobs_stream": [ - 344, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 382, - "[clip_render_jobs_stream_cursor_input]!" - ], - "where": [ - 356 - ] - } - ], - "custom_pages": [ - 396, - { - "distinct_on": [ - 415, - "[custom_pages_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 412, - "[custom_pages_order_by!]" - ], - "where": [ - 401 - ] - } - ], - "custom_pages_aggregate": [ - 397, - { - "distinct_on": [ - 415, - "[custom_pages_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 412, - "[custom_pages_order_by!]" - ], - "where": [ - 401 - ] - } - ], - "custom_pages_by_pk": [ - 396, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "custom_pages_stream": [ - 396, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 420, - "[custom_pages_stream_cursor_input]!" - ], - "where": [ - 401 - ] - } - ], - "db_backups": [ - 428, - { - "distinct_on": [ - 442, - "[db_backups_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 440, - "[db_backups_order_by!]" - ], - "where": [ - 432 - ] - } - ], - "db_backups_aggregate": [ - 429, - { - "distinct_on": [ - 442, - "[db_backups_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 440, - "[db_backups_order_by!]" - ], - "where": [ - 432 - ] - } - ], - "db_backups_by_pk": [ - 428, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "db_backups_stream": [ - 428, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 447, - "[db_backups_stream_cursor_input]!" - ], - "where": [ - 432 - ] - } - ], - "direct_conversations": [ - 455, - { - "distinct_on": [ - 469, - "[direct_conversations_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 467, - "[direct_conversations_order_by!]" - ], - "where": [ - 459 - ] - } - ], - "direct_conversations_aggregate": [ - 456, - { - "distinct_on": [ - 469, - "[direct_conversations_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 467, - "[direct_conversations_order_by!]" - ], - "where": [ - 459 - ] - } - ], - "direct_conversations_by_pk": [ - 455, - { - "room_id": [ - 85, - "String!" - ], - "steam_id": [ - 312, - "bigint!" - ] - } - ], - "direct_conversations_stream": [ - 455, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 474, - "[direct_conversations_stream_cursor_input]!" - ], - "where": [ - 459 - ] - } - ], - "direct_messages": [ - 482, - { - "distinct_on": [ - 496, - "[direct_messages_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 494, - "[direct_messages_order_by!]" - ], - "where": [ - 486 - ] - } - ], - "direct_messages_aggregate": [ - 483, - { - "distinct_on": [ - 496, - "[direct_messages_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 494, - "[direct_messages_order_by!]" - ], - "where": [ - 486 - ] - } - ], - "direct_messages_by_pk": [ - 482, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "direct_messages_stream": [ - 482, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 501, - "[direct_messages_stream_cursor_input]!" - ], - "where": [ - 486 - ] - } - ], - "draft_game_picks": [ - 509, - { - "distinct_on": [ - 532, - "[draft_game_picks_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 530, - "[draft_game_picks_order_by!]" - ], - "where": [ - 520 - ] - } - ], - "draft_game_picks_aggregate": [ - 510, - { - "distinct_on": [ - 532, - "[draft_game_picks_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 530, - "[draft_game_picks_order_by!]" - ], - "where": [ - 520 - ] - } - ], - "draft_game_picks_by_pk": [ - 509, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "draft_game_picks_stream": [ - 509, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 542, - "[draft_game_picks_stream_cursor_input]!" - ], - "where": [ - 520 - ] - } - ], - "draft_game_players": [ - 554, - { - "distinct_on": [ - 577, - "[draft_game_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 575, - "[draft_game_players_order_by!]" - ], - "where": [ - 565 - ] - } - ], - "draft_game_players_aggregate": [ - 555, - { - "distinct_on": [ - 577, - "[draft_game_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 575, - "[draft_game_players_order_by!]" - ], - "where": [ - 565 - ] - } - ], - "draft_game_players_by_pk": [ - 554, - { - "draft_game_id": [ - 6672, - "uuid!" - ], - "steam_id": [ - 312, - "bigint!" - ] - } - ], - "draft_game_players_stream": [ - 554, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 587, - "[draft_game_players_stream_cursor_input]!" - ], - "where": [ - 565 - ] - } - ], - "draft_games": [ - 599, - { - "distinct_on": [ - 623, - "[draft_games_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 621, - "[draft_games_order_by!]" - ], - "where": [ - 610 - ] - } - ], - "draft_games_aggregate": [ - 600, - { - "distinct_on": [ - 623, - "[draft_games_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 621, - "[draft_games_order_by!]" - ], - "where": [ - 610 - ] - } - ], - "draft_games_by_pk": [ - 599, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "draft_games_stream": [ - 599, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 633, - "[draft_games_stream_cursor_input]!" - ], - "where": [ - 610 - ] - } - ], - "e_award_sources": [ - 645, - { - "distinct_on": [ - 659, - "[e_award_sources_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 657, - "[e_award_sources_order_by!]" - ], - "where": [ - 648 - ] - } - ], - "e_award_sources_aggregate": [ - 646, - { - "distinct_on": [ - 659, - "[e_award_sources_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 657, - "[e_award_sources_order_by!]" - ], - "where": [ - 648 - ] - } - ], - "e_award_sources_by_pk": [ - 645, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_award_sources_stream": [ - 645, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 661, - "[e_award_sources_stream_cursor_input]!" - ], - "where": [ - 648 - ] - } - ], - "e_award_tiers": [ - 665, - { - "distinct_on": [ - 679, - "[e_award_tiers_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 677, - "[e_award_tiers_order_by!]" - ], - "where": [ - 668 - ] - } - ], - "e_award_tiers_aggregate": [ - 666, - { - "distinct_on": [ - 679, - "[e_award_tiers_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 677, - "[e_award_tiers_order_by!]" - ], - "where": [ - 668 - ] - } - ], - "e_award_tiers_by_pk": [ - 665, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_award_tiers_stream": [ - 665, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 681, - "[e_award_tiers_stream_cursor_input]!" - ], - "where": [ - 668 - ] - } - ], - "e_check_in_settings": [ - 685, - { - "distinct_on": [ - 699, - "[e_check_in_settings_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 697, - "[e_check_in_settings_order_by!]" - ], - "where": [ - 688 - ] - } - ], - "e_check_in_settings_aggregate": [ - 686, - { - "distinct_on": [ - 699, - "[e_check_in_settings_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 697, - "[e_check_in_settings_order_by!]" - ], - "where": [ - 688 - ] - } - ], - "e_check_in_settings_by_pk": [ - 685, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_check_in_settings_stream": [ - 685, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 701, - "[e_check_in_settings_stream_cursor_input]!" - ], - "where": [ - 688 - ] - } - ], - "e_draft_game_captain_selection": [ - 705, - { - "distinct_on": [ - 720, - "[e_draft_game_captain_selection_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 718, - "[e_draft_game_captain_selection_order_by!]" - ], - "where": [ - 708 - ] - } - ], - "e_draft_game_captain_selection_aggregate": [ - 706, - { - "distinct_on": [ - 720, - "[e_draft_game_captain_selection_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 718, - "[e_draft_game_captain_selection_order_by!]" - ], - "where": [ - 708 - ] - } - ], - "e_draft_game_captain_selection_by_pk": [ - 705, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_draft_game_captain_selection_stream": [ - 705, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 722, - "[e_draft_game_captain_selection_stream_cursor_input]!" - ], - "where": [ - 708 - ] - } - ], - "e_draft_game_draft_order": [ - 726, - { - "distinct_on": [ - 741, - "[e_draft_game_draft_order_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 739, - "[e_draft_game_draft_order_order_by!]" - ], - "where": [ - 729 - ] - } - ], - "e_draft_game_draft_order_aggregate": [ - 727, - { - "distinct_on": [ - 741, - "[e_draft_game_draft_order_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 739, - "[e_draft_game_draft_order_order_by!]" - ], - "where": [ - 729 - ] - } - ], - "e_draft_game_draft_order_by_pk": [ - 726, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_draft_game_draft_order_stream": [ - 726, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 743, - "[e_draft_game_draft_order_stream_cursor_input]!" - ], - "where": [ - 729 - ] - } - ], - "e_draft_game_mode": [ - 747, - { - "distinct_on": [ - 762, - "[e_draft_game_mode_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 760, - "[e_draft_game_mode_order_by!]" - ], - "where": [ - 750 - ] - } - ], - "e_draft_game_mode_aggregate": [ - 748, - { - "distinct_on": [ - 762, - "[e_draft_game_mode_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 760, - "[e_draft_game_mode_order_by!]" - ], - "where": [ - 750 - ] - } - ], - "e_draft_game_mode_by_pk": [ - 747, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_draft_game_mode_stream": [ - 747, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 764, - "[e_draft_game_mode_stream_cursor_input]!" - ], - "where": [ - 750 - ] - } - ], - "e_draft_game_player_status": [ - 768, - { - "distinct_on": [ - 783, - "[e_draft_game_player_status_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 781, - "[e_draft_game_player_status_order_by!]" - ], - "where": [ - 771 - ] - } - ], - "e_draft_game_player_status_aggregate": [ - 769, - { - "distinct_on": [ - 783, - "[e_draft_game_player_status_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 781, - "[e_draft_game_player_status_order_by!]" - ], - "where": [ - 771 - ] - } - ], - "e_draft_game_player_status_by_pk": [ - 768, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_draft_game_player_status_stream": [ - 768, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 785, - "[e_draft_game_player_status_stream_cursor_input]!" - ], - "where": [ - 771 - ] - } - ], - "e_draft_game_status": [ - 789, - { - "distinct_on": [ - 804, - "[e_draft_game_status_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 802, - "[e_draft_game_status_order_by!]" - ], - "where": [ - 792 - ] - } - ], - "e_draft_game_status_aggregate": [ - 790, - { - "distinct_on": [ - 804, - "[e_draft_game_status_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 802, - "[e_draft_game_status_order_by!]" - ], - "where": [ - 792 - ] - } - ], - "e_draft_game_status_by_pk": [ - 789, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_draft_game_status_stream": [ - 789, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 806, - "[e_draft_game_status_stream_cursor_input]!" - ], - "where": [ - 792 - ] - } - ], - "e_event_media_access": [ - 810, - { - "distinct_on": [ - 824, - "[e_event_media_access_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 822, - "[e_event_media_access_order_by!]" - ], - "where": [ - 813 - ] - } - ], - "e_event_media_access_aggregate": [ - 811, - { - "distinct_on": [ - 824, - "[e_event_media_access_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 822, - "[e_event_media_access_order_by!]" - ], - "where": [ - 813 - ] - } - ], - "e_event_media_access_by_pk": [ - 810, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_event_media_access_stream": [ - 810, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 826, - "[e_event_media_access_stream_cursor_input]!" - ], - "where": [ - 813 - ] - } - ], - "e_event_visibility": [ - 830, - { - "distinct_on": [ - 844, - "[e_event_visibility_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 842, - "[e_event_visibility_order_by!]" - ], - "where": [ - 833 - ] - } - ], - "e_event_visibility_aggregate": [ - 831, - { - "distinct_on": [ - 844, - "[e_event_visibility_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 842, - "[e_event_visibility_order_by!]" - ], - "where": [ - 833 - ] - } - ], - "e_event_visibility_by_pk": [ - 830, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_event_visibility_stream": [ - 830, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 846, - "[e_event_visibility_stream_cursor_input]!" - ], - "where": [ - 833 - ] - } - ], - "e_friend_status": [ - 850, - { - "distinct_on": [ - 865, - "[e_friend_status_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 863, - "[e_friend_status_order_by!]" - ], - "where": [ - 853 - ] - } - ], - "e_friend_status_aggregate": [ - 851, - { - "distinct_on": [ - 865, - "[e_friend_status_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 863, - "[e_friend_status_order_by!]" - ], - "where": [ - 853 - ] - } - ], - "e_friend_status_by_pk": [ - 850, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_friend_status_stream": [ - 850, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 867, - "[e_friend_status_stream_cursor_input]!" - ], - "where": [ - 853 - ] - } - ], - "e_game_cfg_types": [ - 871, - { - "distinct_on": [ - 885, - "[e_game_cfg_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 883, - "[e_game_cfg_types_order_by!]" - ], - "where": [ - 874 - ] - } - ], - "e_game_cfg_types_aggregate": [ - 872, - { - "distinct_on": [ - 885, - "[e_game_cfg_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 883, - "[e_game_cfg_types_order_by!]" - ], - "where": [ - 874 - ] - } - ], - "e_game_cfg_types_by_pk": [ - 871, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_game_cfg_types_stream": [ - 871, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 887, - "[e_game_cfg_types_stream_cursor_input]!" - ], - "where": [ - 874 - ] - } - ], - "e_game_plugin_channels": [ - 891, - { - "distinct_on": [ - 905, - "[e_game_plugin_channels_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 903, - "[e_game_plugin_channels_order_by!]" - ], - "where": [ - 894 - ] - } - ], - "e_game_plugin_channels_aggregate": [ - 892, - { - "distinct_on": [ - 905, - "[e_game_plugin_channels_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 903, - "[e_game_plugin_channels_order_by!]" - ], - "where": [ - 894 - ] - } - ], - "e_game_plugin_channels_by_pk": [ - 891, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_game_plugin_channels_stream": [ - 891, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 907, - "[e_game_plugin_channels_stream_cursor_input]!" - ], - "where": [ - 894 - ] - } - ], - "e_game_plugin_install_statuses": [ - 911, - { - "distinct_on": [ - 925, - "[e_game_plugin_install_statuses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 923, - "[e_game_plugin_install_statuses_order_by!]" - ], - "where": [ - 914 - ] - } - ], - "e_game_plugin_install_statuses_aggregate": [ - 912, - { - "distinct_on": [ - 925, - "[e_game_plugin_install_statuses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 923, - "[e_game_plugin_install_statuses_order_by!]" - ], - "where": [ - 914 - ] - } - ], - "e_game_plugin_install_statuses_by_pk": [ - 911, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_game_plugin_install_statuses_stream": [ - 911, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 927, - "[e_game_plugin_install_statuses_stream_cursor_input]!" - ], - "where": [ - 914 - ] - } - ], - "e_game_plugin_kinds": [ - 931, - { - "distinct_on": [ - 945, - "[e_game_plugin_kinds_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 943, - "[e_game_plugin_kinds_order_by!]" - ], - "where": [ - 934 - ] - } - ], - "e_game_plugin_kinds_aggregate": [ - 932, - { - "distinct_on": [ - 945, - "[e_game_plugin_kinds_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 943, - "[e_game_plugin_kinds_order_by!]" - ], - "where": [ - 934 - ] - } - ], - "e_game_plugin_kinds_by_pk": [ - 931, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_game_plugin_kinds_stream": [ - 931, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 947, - "[e_game_plugin_kinds_stream_cursor_input]!" - ], - "where": [ - 934 - ] - } - ], - "e_game_server_node_statuses": [ - 951, - { - "distinct_on": [ - 966, - "[e_game_server_node_statuses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 964, - "[e_game_server_node_statuses_order_by!]" - ], - "where": [ - 954 - ] - } - ], - "e_game_server_node_statuses_aggregate": [ - 952, - { - "distinct_on": [ - 966, - "[e_game_server_node_statuses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 964, - "[e_game_server_node_statuses_order_by!]" - ], - "where": [ - 954 - ] - } - ], - "e_game_server_node_statuses_by_pk": [ - 951, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_game_server_node_statuses_stream": [ - 951, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 968, - "[e_game_server_node_statuses_stream_cursor_input]!" - ], - "where": [ - 954 - ] - } - ], - "e_league_movement_types": [ - 972, - { - "distinct_on": [ - 987, - "[e_league_movement_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 985, - "[e_league_movement_types_order_by!]" - ], - "where": [ - 975 - ] - } - ], - "e_league_movement_types_aggregate": [ - 973, - { - "distinct_on": [ - 987, - "[e_league_movement_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 985, - "[e_league_movement_types_order_by!]" - ], - "where": [ - 975 - ] - } - ], - "e_league_movement_types_by_pk": [ - 972, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_league_movement_types_stream": [ - 972, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 989, - "[e_league_movement_types_stream_cursor_input]!" - ], - "where": [ - 975 - ] - } - ], - "e_league_proposal_statuses": [ - 993, - { - "distinct_on": [ - 1008, - "[e_league_proposal_statuses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1006, - "[e_league_proposal_statuses_order_by!]" - ], - "where": [ - 996 - ] - } - ], - "e_league_proposal_statuses_aggregate": [ - 994, - { - "distinct_on": [ - 1008, - "[e_league_proposal_statuses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1006, - "[e_league_proposal_statuses_order_by!]" - ], - "where": [ - 996 - ] - } - ], - "e_league_proposal_statuses_by_pk": [ - 993, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_league_proposal_statuses_stream": [ - 993, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1010, - "[e_league_proposal_statuses_stream_cursor_input]!" - ], - "where": [ - 996 - ] - } - ], - "e_league_registration_statuses": [ - 1014, - { - "distinct_on": [ - 1029, - "[e_league_registration_statuses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1027, - "[e_league_registration_statuses_order_by!]" - ], - "where": [ - 1017 - ] - } - ], - "e_league_registration_statuses_aggregate": [ - 1015, - { - "distinct_on": [ - 1029, - "[e_league_registration_statuses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1027, - "[e_league_registration_statuses_order_by!]" - ], - "where": [ - 1017 - ] - } - ], - "e_league_registration_statuses_by_pk": [ - 1014, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_league_registration_statuses_stream": [ - 1014, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1031, - "[e_league_registration_statuses_stream_cursor_input]!" - ], - "where": [ - 1017 - ] - } - ], - "e_league_season_statuses": [ - 1035, - { - "distinct_on": [ - 1050, - "[e_league_season_statuses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1048, - "[e_league_season_statuses_order_by!]" - ], - "where": [ - 1038 - ] - } - ], - "e_league_season_statuses_aggregate": [ - 1036, - { - "distinct_on": [ - 1050, - "[e_league_season_statuses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1048, - "[e_league_season_statuses_order_by!]" - ], - "where": [ - 1038 - ] - } - ], - "e_league_season_statuses_by_pk": [ - 1035, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_league_season_statuses_stream": [ - 1035, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1052, - "[e_league_season_statuses_stream_cursor_input]!" - ], - "where": [ - 1038 - ] - } - ], - "e_lobby_access": [ - 1056, - { - "distinct_on": [ - 1071, - "[e_lobby_access_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1069, - "[e_lobby_access_order_by!]" - ], - "where": [ - 1059 - ] - } - ], - "e_lobby_access_aggregate": [ - 1057, - { - "distinct_on": [ - 1071, - "[e_lobby_access_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1069, - "[e_lobby_access_order_by!]" - ], - "where": [ - 1059 - ] - } - ], - "e_lobby_access_by_pk": [ - 1056, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_lobby_access_stream": [ - 1056, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1073, - "[e_lobby_access_stream_cursor_input]!" - ], - "where": [ - 1059 - ] - } - ], - "e_lobby_player_status": [ - 1077, - { - "distinct_on": [ - 1091, - "[e_lobby_player_status_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1089, - "[e_lobby_player_status_order_by!]" - ], - "where": [ - 1080 - ] - } - ], - "e_lobby_player_status_aggregate": [ - 1078, - { - "distinct_on": [ - 1091, - "[e_lobby_player_status_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1089, - "[e_lobby_player_status_order_by!]" - ], - "where": [ - 1080 - ] - } - ], - "e_lobby_player_status_by_pk": [ - 1077, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_lobby_player_status_stream": [ - 1077, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1093, - "[e_lobby_player_status_stream_cursor_input]!" - ], - "where": [ - 1080 - ] - } - ], - "e_map_pool_types": [ - 1097, - { - "distinct_on": [ - 1112, - "[e_map_pool_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1110, - "[e_map_pool_types_order_by!]" - ], - "where": [ - 1100 - ] - } - ], - "e_map_pool_types_aggregate": [ - 1098, - { - "distinct_on": [ - 1112, - "[e_map_pool_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1110, - "[e_map_pool_types_order_by!]" - ], - "where": [ - 1100 - ] - } - ], - "e_map_pool_types_by_pk": [ - 1097, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_map_pool_types_stream": [ - 1097, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1114, - "[e_map_pool_types_stream_cursor_input]!" - ], - "where": [ - 1100 - ] - } - ], - "e_match_clip_visibility": [ - 1118, - { - "distinct_on": [ - 1132, - "[e_match_clip_visibility_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1130, - "[e_match_clip_visibility_order_by!]" - ], - "where": [ - 1121 - ] - } - ], - "e_match_clip_visibility_aggregate": [ - 1119, - { - "distinct_on": [ - 1132, - "[e_match_clip_visibility_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1130, - "[e_match_clip_visibility_order_by!]" - ], - "where": [ - 1121 - ] - } - ], - "e_match_clip_visibility_by_pk": [ - 1118, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_match_clip_visibility_stream": [ - 1118, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1134, - "[e_match_clip_visibility_stream_cursor_input]!" - ], - "where": [ - 1121 - ] - } - ], - "e_match_map_status": [ - 1138, - { - "distinct_on": [ - 1153, - "[e_match_map_status_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1151, - "[e_match_map_status_order_by!]" - ], - "where": [ - 1141 - ] - } - ], - "e_match_map_status_aggregate": [ - 1139, - { - "distinct_on": [ - 1153, - "[e_match_map_status_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1151, - "[e_match_map_status_order_by!]" - ], - "where": [ - 1141 - ] - } - ], - "e_match_map_status_by_pk": [ - 1138, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_match_map_status_stream": [ - 1138, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1155, - "[e_match_map_status_stream_cursor_input]!" - ], - "where": [ - 1141 - ] - } - ], - "e_match_mode": [ - 1159, - { - "distinct_on": [ - 1173, - "[e_match_mode_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1171, - "[e_match_mode_order_by!]" - ], - "where": [ - 1162 - ] - } - ], - "e_match_mode_aggregate": [ - 1160, - { - "distinct_on": [ - 1173, - "[e_match_mode_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1171, - "[e_match_mode_order_by!]" - ], - "where": [ - 1162 - ] - } - ], - "e_match_mode_by_pk": [ - 1159, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_match_mode_stream": [ - 1159, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1175, - "[e_match_mode_stream_cursor_input]!" - ], - "where": [ - 1162 - ] - } - ], - "e_match_party_sources": [ - 1179, - { - "distinct_on": [ - 1193, - "[e_match_party_sources_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1191, - "[e_match_party_sources_order_by!]" - ], - "where": [ - 1182 - ] - } - ], - "e_match_party_sources_aggregate": [ - 1180, - { - "distinct_on": [ - 1193, - "[e_match_party_sources_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1191, - "[e_match_party_sources_order_by!]" - ], - "where": [ - 1182 - ] - } - ], - "e_match_party_sources_by_pk": [ - 1179, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_match_party_sources_stream": [ - 1179, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1195, - "[e_match_party_sources_stream_cursor_input]!" - ], - "where": [ - 1182 - ] - } - ], - "e_match_status": [ - 1199, - { - "distinct_on": [ - 1214, - "[e_match_status_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1212, - "[e_match_status_order_by!]" - ], - "where": [ - 1202 - ] - } - ], - "e_match_status_aggregate": [ - 1200, - { - "distinct_on": [ - 1214, - "[e_match_status_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1212, - "[e_match_status_order_by!]" - ], - "where": [ - 1202 - ] - } - ], - "e_match_status_by_pk": [ - 1199, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_match_status_stream": [ - 1199, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1216, - "[e_match_status_stream_cursor_input]!" - ], - "where": [ - 1202 - ] - } - ], - "e_match_types": [ - 1220, - { - "distinct_on": [ - 1235, - "[e_match_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1233, - "[e_match_types_order_by!]" - ], - "where": [ - 1223 - ] - } - ], - "e_match_types_aggregate": [ - 1221, - { - "distinct_on": [ - 1235, - "[e_match_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1233, - "[e_match_types_order_by!]" - ], - "where": [ - 1223 - ] - } - ], - "e_match_types_by_pk": [ - 1220, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_match_types_stream": [ - 1220, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1237, - "[e_match_types_stream_cursor_input]!" - ], - "where": [ - 1223 - ] - } - ], - "e_notification_types": [ - 1241, - { - "distinct_on": [ - 1255, - "[e_notification_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1253, - "[e_notification_types_order_by!]" - ], - "where": [ - 1244 - ] - } - ], - "e_notification_types_aggregate": [ - 1242, - { - "distinct_on": [ - 1255, - "[e_notification_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1253, - "[e_notification_types_order_by!]" - ], - "where": [ - 1244 - ] - } - ], - "e_notification_types_by_pk": [ - 1241, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_notification_types_stream": [ - 1241, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1257, - "[e_notification_types_stream_cursor_input]!" - ], - "where": [ - 1244 - ] - } - ], - "e_objective_types": [ - 1261, - { - "distinct_on": [ - 1275, - "[e_objective_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1273, - "[e_objective_types_order_by!]" - ], - "where": [ - 1264 - ] - } - ], - "e_objective_types_aggregate": [ - 1262, - { - "distinct_on": [ - 1275, - "[e_objective_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1273, - "[e_objective_types_order_by!]" - ], - "where": [ - 1264 - ] - } - ], - "e_objective_types_by_pk": [ - 1261, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_objective_types_stream": [ - 1261, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1277, - "[e_objective_types_stream_cursor_input]!" - ], - "where": [ - 1264 - ] - } - ], - "e_player_roles": [ - 1281, - { - "distinct_on": [ - 1295, - "[e_player_roles_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1293, - "[e_player_roles_order_by!]" - ], - "where": [ - 1284 - ] - } - ], - "e_player_roles_aggregate": [ - 1282, - { - "distinct_on": [ - 1295, - "[e_player_roles_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1293, - "[e_player_roles_order_by!]" - ], - "where": [ - 1284 - ] - } - ], - "e_player_roles_by_pk": [ - 1281, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_player_roles_stream": [ - 1281, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1297, - "[e_player_roles_stream_cursor_input]!" - ], - "where": [ - 1284 - ] - } - ], - "e_plugin_runtimes": [ - 1301, - { - "distinct_on": [ - 1315, - "[e_plugin_runtimes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1313, - "[e_plugin_runtimes_order_by!]" - ], - "where": [ - 1304 - ] - } - ], - "e_plugin_runtimes_aggregate": [ - 1302, - { - "distinct_on": [ - 1315, - "[e_plugin_runtimes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1313, - "[e_plugin_runtimes_order_by!]" - ], - "where": [ - 1304 - ] - } - ], - "e_plugin_runtimes_by_pk": [ - 1301, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_plugin_runtimes_stream": [ - 1301, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1317, - "[e_plugin_runtimes_stream_cursor_input]!" - ], - "where": [ - 1304 - ] - } - ], - "e_ready_settings": [ - 1321, - { - "distinct_on": [ - 1335, - "[e_ready_settings_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1333, - "[e_ready_settings_order_by!]" - ], - "where": [ - 1324 - ] - } - ], - "e_ready_settings_aggregate": [ - 1322, - { - "distinct_on": [ - 1335, - "[e_ready_settings_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1333, - "[e_ready_settings_order_by!]" - ], - "where": [ - 1324 - ] - } - ], - "e_ready_settings_by_pk": [ - 1321, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_ready_settings_stream": [ - 1321, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1337, - "[e_ready_settings_stream_cursor_input]!" - ], - "where": [ - 1324 - ] - } - ], - "e_sanction_scopes": [ - 1341, - { - "distinct_on": [ - 1354, - "[e_sanction_scopes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1352, - "[e_sanction_scopes_order_by!]" - ], - "where": [ - 1344 - ] - } - ], - "e_sanction_scopes_aggregate": [ - 1342, - { - "distinct_on": [ - 1354, - "[e_sanction_scopes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1352, - "[e_sanction_scopes_order_by!]" - ], - "where": [ - 1344 - ] - } - ], - "e_sanction_scopes_by_pk": [ - 1341, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_sanction_scopes_stream": [ - 1341, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1356, - "[e_sanction_scopes_stream_cursor_input]!" - ], - "where": [ - 1344 - ] - } - ], - "e_sanction_sources": [ - 1360, - { - "distinct_on": [ - 1374, - "[e_sanction_sources_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1372, - "[e_sanction_sources_order_by!]" - ], - "where": [ - 1364 - ] - } - ], - "e_sanction_sources_aggregate": [ - 1361, - { - "distinct_on": [ - 1374, - "[e_sanction_sources_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1372, - "[e_sanction_sources_order_by!]" - ], - "where": [ - 1364 - ] - } - ], - "e_sanction_sources_by_pk": [ - 1360, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_sanction_sources_stream": [ - 1360, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1379, - "[e_sanction_sources_stream_cursor_input]!" - ], - "where": [ - 1364 - ] - } - ], - "e_sanction_types": [ - 1387, - { - "distinct_on": [ - 1402, - "[e_sanction_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1400, - "[e_sanction_types_order_by!]" - ], - "where": [ - 1390 - ] - } - ], - "e_sanction_types_aggregate": [ - 1388, - { - "distinct_on": [ - 1402, - "[e_sanction_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1400, - "[e_sanction_types_order_by!]" - ], - "where": [ - 1390 - ] - } - ], - "e_sanction_types_by_pk": [ - 1387, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_sanction_types_stream": [ - 1387, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1404, - "[e_sanction_types_stream_cursor_input]!" - ], - "where": [ - 1390 - ] - } - ], - "e_scrim_request_statuses": [ - 1408, - { - "distinct_on": [ - 1422, - "[e_scrim_request_statuses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1420, - "[e_scrim_request_statuses_order_by!]" - ], - "where": [ - 1411 - ] - } - ], - "e_scrim_request_statuses_aggregate": [ - 1409, - { - "distinct_on": [ - 1422, - "[e_scrim_request_statuses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1420, - "[e_scrim_request_statuses_order_by!]" - ], - "where": [ - 1411 - ] - } - ], - "e_scrim_request_statuses_by_pk": [ - 1408, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_scrim_request_statuses_stream": [ - 1408, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1424, - "[e_scrim_request_statuses_stream_cursor_input]!" - ], - "where": [ - 1411 - ] - } - ], - "e_server_types": [ - 1428, - { - "distinct_on": [ - 1442, - "[e_server_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1440, - "[e_server_types_order_by!]" - ], - "where": [ - 1431 - ] - } - ], - "e_server_types_aggregate": [ - 1429, - { - "distinct_on": [ - 1442, - "[e_server_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1440, - "[e_server_types_order_by!]" - ], - "where": [ - 1431 - ] - } - ], - "e_server_types_by_pk": [ - 1428, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_server_types_stream": [ - 1428, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1444, - "[e_server_types_stream_cursor_input]!" - ], - "where": [ - 1431 - ] - } - ], - "e_sides": [ - 1448, - { - "distinct_on": [ - 1462, - "[e_sides_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1460, - "[e_sides_order_by!]" - ], - "where": [ - 1451 - ] - } - ], - "e_sides_aggregate": [ - 1449, - { - "distinct_on": [ - 1462, - "[e_sides_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1460, - "[e_sides_order_by!]" - ], - "where": [ - 1451 - ] - } - ], - "e_sides_by_pk": [ - 1448, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_sides_stream": [ - 1448, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1464, - "[e_sides_stream_cursor_input]!" - ], - "where": [ - 1451 - ] - } - ], - "e_system_alert_types": [ - 1468, - { - "distinct_on": [ - 1482, - "[e_system_alert_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1480, - "[e_system_alert_types_order_by!]" - ], - "where": [ - 1471 - ] - } - ], - "e_system_alert_types_aggregate": [ - 1469, - { - "distinct_on": [ - 1482, - "[e_system_alert_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1480, - "[e_system_alert_types_order_by!]" - ], - "where": [ - 1471 - ] - } - ], - "e_system_alert_types_by_pk": [ - 1468, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_system_alert_types_stream": [ - 1468, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1484, - "[e_system_alert_types_stream_cursor_input]!" - ], - "where": [ - 1471 - ] - } - ], - "e_team_roles": [ - 1488, - { - "distinct_on": [ - 1503, - "[e_team_roles_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1501, - "[e_team_roles_order_by!]" - ], - "where": [ - 1491 - ] - } - ], - "e_team_roles_aggregate": [ - 1489, - { - "distinct_on": [ - 1503, - "[e_team_roles_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1501, - "[e_team_roles_order_by!]" - ], - "where": [ - 1491 - ] - } - ], - "e_team_roles_by_pk": [ - 1488, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_team_roles_stream": [ - 1488, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1505, - "[e_team_roles_stream_cursor_input]!" - ], - "where": [ - 1491 - ] - } - ], - "e_team_roster_statuses": [ - 1509, - { - "distinct_on": [ - 1523, - "[e_team_roster_statuses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1521, - "[e_team_roster_statuses_order_by!]" - ], - "where": [ - 1512 - ] - } - ], - "e_team_roster_statuses_aggregate": [ - 1510, - { - "distinct_on": [ - 1523, - "[e_team_roster_statuses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1521, - "[e_team_roster_statuses_order_by!]" - ], - "where": [ - 1512 - ] - } - ], - "e_team_roster_statuses_by_pk": [ - 1509, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_team_roster_statuses_stream": [ - 1509, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1525, - "[e_team_roster_statuses_stream_cursor_input]!" - ], - "where": [ - 1512 - ] - } - ], - "e_timeout_settings": [ - 1529, - { - "distinct_on": [ - 1543, - "[e_timeout_settings_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1541, - "[e_timeout_settings_order_by!]" - ], - "where": [ - 1532 - ] - } - ], - "e_timeout_settings_aggregate": [ - 1530, - { - "distinct_on": [ - 1543, - "[e_timeout_settings_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1541, - "[e_timeout_settings_order_by!]" - ], - "where": [ - 1532 - ] - } - ], - "e_timeout_settings_by_pk": [ - 1529, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_timeout_settings_stream": [ - 1529, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1545, - "[e_timeout_settings_stream_cursor_input]!" - ], - "where": [ - 1532 - ] - } - ], - "e_tournament_categories": [ - 1549, - { - "distinct_on": [ - 1564, - "[e_tournament_categories_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1562, - "[e_tournament_categories_order_by!]" - ], - "where": [ - 1552 - ] - } - ], - "e_tournament_categories_aggregate": [ - 1550, - { - "distinct_on": [ - 1564, - "[e_tournament_categories_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1562, - "[e_tournament_categories_order_by!]" - ], - "where": [ - 1552 - ] - } - ], - "e_tournament_categories_by_pk": [ - 1549, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_tournament_categories_stream": [ - 1549, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1566, - "[e_tournament_categories_stream_cursor_input]!" - ], - "where": [ - 1552 - ] - } - ], - "e_tournament_free_agent_statuses": [ - 1570, - { - "distinct_on": [ - 1585, - "[e_tournament_free_agent_statuses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1583, - "[e_tournament_free_agent_statuses_order_by!]" - ], - "where": [ - 1573 - ] - } - ], - "e_tournament_free_agent_statuses_aggregate": [ - 1571, - { - "distinct_on": [ - 1585, - "[e_tournament_free_agent_statuses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1583, - "[e_tournament_free_agent_statuses_order_by!]" - ], - "where": [ - 1573 - ] - } - ], - "e_tournament_free_agent_statuses_by_pk": [ - 1570, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_tournament_free_agent_statuses_stream": [ - 1570, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1587, - "[e_tournament_free_agent_statuses_stream_cursor_input]!" - ], - "where": [ - 1573 - ] - } - ], - "e_tournament_registration_types": [ - 1591, - { - "distinct_on": [ - 1605, - "[e_tournament_registration_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1603, - "[e_tournament_registration_types_order_by!]" - ], - "where": [ - 1594 - ] - } - ], - "e_tournament_registration_types_aggregate": [ - 1592, - { - "distinct_on": [ - 1605, - "[e_tournament_registration_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1603, - "[e_tournament_registration_types_order_by!]" - ], - "where": [ - 1594 - ] - } - ], - "e_tournament_registration_types_by_pk": [ - 1591, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_tournament_registration_types_stream": [ - 1591, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1607, - "[e_tournament_registration_types_stream_cursor_input]!" - ], - "where": [ - 1594 - ] - } - ], - "e_tournament_stage_types": [ - 1611, - { - "distinct_on": [ - 1626, - "[e_tournament_stage_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1624, - "[e_tournament_stage_types_order_by!]" - ], - "where": [ - 1614 - ] - } - ], - "e_tournament_stage_types_aggregate": [ - 1612, - { - "distinct_on": [ - 1626, - "[e_tournament_stage_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1624, - "[e_tournament_stage_types_order_by!]" - ], - "where": [ - 1614 - ] - } - ], - "e_tournament_stage_types_by_pk": [ - 1611, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_tournament_stage_types_stream": [ - 1611, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1628, - "[e_tournament_stage_types_stream_cursor_input]!" - ], - "where": [ - 1614 - ] - } - ], - "e_tournament_status": [ - 1632, - { - "distinct_on": [ - 1647, - "[e_tournament_status_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1645, - "[e_tournament_status_order_by!]" - ], - "where": [ - 1635 - ] - } - ], - "e_tournament_status_aggregate": [ - 1633, - { - "distinct_on": [ - 1647, - "[e_tournament_status_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1645, - "[e_tournament_status_order_by!]" - ], - "where": [ - 1635 - ] - } - ], - "e_tournament_status_by_pk": [ - 1632, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_tournament_status_stream": [ - 1632, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1649, - "[e_tournament_status_stream_cursor_input]!" - ], - "where": [ - 1635 - ] - } - ], - "e_utility_practice_access": [ - 1653, - { - "distinct_on": [ - 1667, - "[e_utility_practice_access_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1665, - "[e_utility_practice_access_order_by!]" - ], - "where": [ - 1656 - ] - } - ], - "e_utility_practice_access_aggregate": [ - 1654, - { - "distinct_on": [ - 1667, - "[e_utility_practice_access_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1665, - "[e_utility_practice_access_order_by!]" - ], - "where": [ - 1656 - ] - } - ], - "e_utility_practice_access_by_pk": [ - 1653, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_utility_practice_access_stream": [ - 1653, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1669, - "[e_utility_practice_access_stream_cursor_input]!" - ], - "where": [ - 1656 - ] - } - ], - "e_utility_practice_statuses": [ - 1673, - { - "distinct_on": [ - 1688, - "[e_utility_practice_statuses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1686, - "[e_utility_practice_statuses_order_by!]" - ], - "where": [ - 1676 - ] - } - ], - "e_utility_practice_statuses_aggregate": [ - 1674, - { - "distinct_on": [ - 1688, - "[e_utility_practice_statuses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1686, - "[e_utility_practice_statuses_order_by!]" - ], - "where": [ - 1676 - ] - } - ], - "e_utility_practice_statuses_by_pk": [ - 1673, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_utility_practice_statuses_stream": [ - 1673, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1690, - "[e_utility_practice_statuses_stream_cursor_input]!" - ], - "where": [ - 1676 - ] - } - ], - "e_utility_sources": [ - 1694, - { - "distinct_on": [ - 1708, - "[e_utility_sources_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1706, - "[e_utility_sources_order_by!]" - ], - "where": [ - 1697 - ] - } - ], - "e_utility_sources_aggregate": [ - 1695, - { - "distinct_on": [ - 1708, - "[e_utility_sources_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1706, - "[e_utility_sources_order_by!]" - ], - "where": [ - 1697 - ] - } - ], - "e_utility_sources_by_pk": [ - 1694, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_utility_sources_stream": [ - 1694, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1710, - "[e_utility_sources_stream_cursor_input]!" - ], - "where": [ - 1697 - ] - } - ], - "e_utility_techniques": [ - 1714, - { - "distinct_on": [ - 1728, - "[e_utility_techniques_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1726, - "[e_utility_techniques_order_by!]" - ], - "where": [ - 1717 - ] - } - ], - "e_utility_techniques_aggregate": [ - 1715, - { - "distinct_on": [ - 1728, - "[e_utility_techniques_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1726, - "[e_utility_techniques_order_by!]" - ], - "where": [ - 1717 - ] - } - ], - "e_utility_techniques_by_pk": [ - 1714, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_utility_techniques_stream": [ - 1714, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1730, - "[e_utility_techniques_stream_cursor_input]!" - ], - "where": [ - 1717 - ] - } - ], - "e_utility_throw_strengths": [ - 1734, - { - "distinct_on": [ - 1748, - "[e_utility_throw_strengths_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1746, - "[e_utility_throw_strengths_order_by!]" - ], - "where": [ - 1737 - ] - } - ], - "e_utility_throw_strengths_aggregate": [ - 1735, - { - "distinct_on": [ - 1748, - "[e_utility_throw_strengths_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1746, - "[e_utility_throw_strengths_order_by!]" - ], - "where": [ - 1737 - ] - } - ], - "e_utility_throw_strengths_by_pk": [ - 1734, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_utility_throw_strengths_stream": [ - 1734, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1750, - "[e_utility_throw_strengths_stream_cursor_input]!" - ], - "where": [ - 1737 - ] - } - ], - "e_utility_types": [ - 1754, - { - "distinct_on": [ - 1768, - "[e_utility_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1766, - "[e_utility_types_order_by!]" - ], - "where": [ - 1757 - ] - } - ], - "e_utility_types_aggregate": [ - 1755, - { - "distinct_on": [ - 1768, - "[e_utility_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1766, - "[e_utility_types_order_by!]" - ], - "where": [ - 1757 - ] - } - ], - "e_utility_types_by_pk": [ - 1754, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_utility_types_stream": [ - 1754, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1770, - "[e_utility_types_stream_cursor_input]!" - ], - "where": [ - 1757 - ] - } - ], - "e_utility_visibility": [ - 1774, - { - "distinct_on": [ - 1788, - "[e_utility_visibility_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1786, - "[e_utility_visibility_order_by!]" - ], - "where": [ - 1777 - ] - } - ], - "e_utility_visibility_aggregate": [ - 1775, - { - "distinct_on": [ - 1788, - "[e_utility_visibility_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1786, - "[e_utility_visibility_order_by!]" - ], - "where": [ - 1777 - ] - } - ], - "e_utility_visibility_by_pk": [ - 1774, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_utility_visibility_stream": [ - 1774, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1790, - "[e_utility_visibility_stream_cursor_input]!" - ], - "where": [ - 1777 - ] - } - ], - "e_veto_pick_types": [ - 1794, - { - "distinct_on": [ - 1808, - "[e_veto_pick_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1806, - "[e_veto_pick_types_order_by!]" - ], - "where": [ - 1797 - ] - } - ], - "e_veto_pick_types_aggregate": [ - 1795, - { - "distinct_on": [ - 1808, - "[e_veto_pick_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1806, - "[e_veto_pick_types_order_by!]" - ], - "where": [ - 1797 - ] - } - ], - "e_veto_pick_types_by_pk": [ - 1794, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_veto_pick_types_stream": [ - 1794, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1810, - "[e_veto_pick_types_stream_cursor_input]!" - ], - "where": [ - 1797 - ] - } - ], - "e_winning_reasons": [ - 1814, - { - "distinct_on": [ - 1828, - "[e_winning_reasons_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1826, - "[e_winning_reasons_order_by!]" - ], - "where": [ - 1817 - ] - } - ], - "e_winning_reasons_aggregate": [ - 1815, - { - "distinct_on": [ - 1828, - "[e_winning_reasons_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1826, - "[e_winning_reasons_order_by!]" - ], - "where": [ - 1817 - ] - } - ], - "e_winning_reasons_by_pk": [ - 1814, - { - "value": [ - 85, - "String!" - ] - } - ], - "e_winning_reasons_stream": [ - 1814, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1830, - "[e_winning_reasons_stream_cursor_input]!" - ], - "where": [ - 1817 - ] - } - ], - "event_match_links": [ - 1834, - { - "distinct_on": [ - 1846, - "[event_match_links_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1844, - "[event_match_links_order_by!]" - ], - "where": [ - 1837 - ] - } - ], - "event_match_links_aggregate": [ - 1835, - { - "distinct_on": [ - 1846, - "[event_match_links_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1844, - "[event_match_links_order_by!]" - ], - "where": [ - 1837 - ] - } - ], - "event_match_links_by_pk": [ - 1834, - { - "event_id": [ - 6672, - "uuid!" - ], - "match_id": [ - 6672, - "uuid!" - ] - } - ], - "event_match_links_stream": [ - 1834, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1848, - "[event_match_links_stream_cursor_input]!" - ], - "where": [ - 1837 - ] - } - ], - "event_media": [ - 1852, - { - "distinct_on": [ - 1915, - "[event_media_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1872, - "[event_media_order_by!]" - ], - "where": [ - 1861 - ] - } - ], - "event_media_aggregate": [ - 1853, - { - "distinct_on": [ - 1915, - "[event_media_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1872, - "[event_media_order_by!]" - ], - "where": [ - 1861 - ] - } - ], - "event_media_by_pk": [ - 1852, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "event_media_players": [ - 1874, - { - "distinct_on": [ - 1895, - "[event_media_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1893, - "[event_media_players_order_by!]" - ], - "where": [ - 1883 - ] - } - ], - "event_media_players_aggregate": [ - 1875, - { - "distinct_on": [ - 1895, - "[event_media_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1893, - "[event_media_players_order_by!]" - ], - "where": [ - 1883 - ] - } - ], - "event_media_players_by_pk": [ - 1874, - { - "media_id": [ - 6672, - "uuid!" - ], - "steam_id": [ - 312, - "bigint!" - ] - } - ], - "event_media_players_stream": [ - 1874, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1903, - "[event_media_players_stream_cursor_input]!" - ], - "where": [ - 1883 - ] - } - ], - "event_media_stream": [ - 1852, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1923, - "[event_media_stream_cursor_input]!" - ], - "where": [ - 1861 - ] - } - ], - "event_organizers": [ - 1935, - { - "distinct_on": [ - 1956, - "[event_organizers_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1954, - "[event_organizers_order_by!]" - ], - "where": [ - 1944 - ] - } - ], - "event_organizers_aggregate": [ - 1936, - { - "distinct_on": [ - 1956, - "[event_organizers_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1954, - "[event_organizers_order_by!]" - ], - "where": [ - 1944 - ] - } - ], - "event_organizers_by_pk": [ - 1935, - { - "event_id": [ - 6672, - "uuid!" - ], - "steam_id": [ - 312, - "bigint!" - ] - } - ], - "event_organizers_stream": [ - 1935, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 1964, - "[event_organizers_stream_cursor_input]!" - ], - "where": [ - 1944 - ] - } - ], - "event_players": [ - 1976, - { - "distinct_on": [ - 1997, - "[event_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1995, - "[event_players_order_by!]" - ], - "where": [ - 1985 - ] - } - ], - "event_players_aggregate": [ - 1977, - { - "distinct_on": [ - 1997, - "[event_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 1995, - "[event_players_order_by!]" - ], - "where": [ - 1985 - ] - } - ], - "event_players_by_pk": [ - 1976, - { - "event_id": [ - 6672, - "uuid!" - ], - "steam_id": [ - 312, - "bigint!" - ] - } - ], - "event_players_stream": [ - 1976, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 2005, - "[event_players_stream_cursor_input]!" - ], - "where": [ - 1985 - ] - } - ], - "event_teams": [ - 2017, - { - "distinct_on": [ - 2035, - "[event_teams_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2033, - "[event_teams_order_by!]" - ], - "where": [ - 2024 - ] - } - ], - "event_teams_aggregate": [ - 2018, - { - "distinct_on": [ - 2035, - "[event_teams_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2033, - "[event_teams_order_by!]" - ], - "where": [ - 2024 - ] - } - ], - "event_teams_by_pk": [ - 2017, - { - "event_id": [ - 6672, - "uuid!" - ], - "team_id": [ - 6672, - "uuid!" - ] - } - ], - "event_teams_stream": [ - 2017, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 2037, - "[event_teams_stream_cursor_input]!" - ], - "where": [ - 2024 - ] - } - ], - "event_tournaments": [ - 2041, - { - "distinct_on": [ - 2059, - "[event_tournaments_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2057, - "[event_tournaments_order_by!]" - ], - "where": [ - 2048 - ] - } - ], - "event_tournaments_aggregate": [ - 2042, - { - "distinct_on": [ - 2059, - "[event_tournaments_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2057, - "[event_tournaments_order_by!]" - ], - "where": [ - 2048 - ] - } - ], - "event_tournaments_by_pk": [ - 2041, - { - "event_id": [ - 6672, - "uuid!" - ], - "tournament_id": [ - 6672, - "uuid!" - ] - } - ], - "event_tournaments_stream": [ - 2041, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 2061, - "[event_tournaments_stream_cursor_input]!" - ], - "where": [ - 2048 - ] - } - ], - "events": [ - 2065, - { - "distinct_on": [ - 2080, - "[events_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2078, - "[events_order_by!]" - ], - "where": [ - 2069 - ] - } - ], - "events_aggregate": [ - 2066, - { - "distinct_on": [ - 2080, - "[events_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2078, - "[events_order_by!]" - ], - "where": [ - 2069 - ] - } - ], - "events_by_pk": [ - 2065, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "events_stream": [ - 2065, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 2085, - "[events_stream_cursor_input]!" - ], - "where": [ - 2069 - ] - } - ], - "friends": [ - 2095, - { - "distinct_on": [ - 2109, - "[friends_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2107, - "[friends_order_by!]" - ], - "where": [ - 2099 - ] - } - ], - "friends_aggregate": [ - 2096, - { - "distinct_on": [ - 2109, - "[friends_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2107, - "[friends_order_by!]" - ], - "where": [ - 2099 - ] - } - ], - "friends_by_pk": [ - 2095, - { - "other_player_steam_id": [ - 312, - "bigint!" - ], - "player_steam_id": [ - 312, - "bigint!" - ] - } - ], - "friends_stream": [ - 2095, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 2114, - "[friends_stream_cursor_input]!" - ], - "where": [ - 2099 - ] - } - ], - "game_mode_plugins": [ - 2122, - { - "distinct_on": [ - 2150, - "[game_mode_plugins_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2147, - "[game_mode_plugins_order_by!]" - ], - "where": [ - 2134 - ] - } - ], - "game_mode_plugins_aggregate": [ - 2123, - { - "distinct_on": [ - 2150, - "[game_mode_plugins_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2147, - "[game_mode_plugins_order_by!]" - ], - "where": [ - 2134 - ] - } - ], - "game_mode_plugins_by_pk": [ - 2122, - { - "game_mode_id": [ - 6672, - "uuid!" - ], - "plugin_slug": [ - 85, - "String!" - ] - } - ], - "game_mode_plugins_stream": [ - 2122, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 2160, - "[game_mode_plugins_stream_cursor_input]!" - ], - "where": [ - 2134 - ] - } - ], - "game_modes": [ - 2172, - { - "distinct_on": [ - 2185, - "[game_modes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2183, - "[game_modes_order_by!]" - ], - "where": [ - 2175 - ] - } - ], - "game_modes_aggregate": [ - 2173, - { - "distinct_on": [ - 2185, - "[game_modes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2183, - "[game_modes_order_by!]" - ], - "where": [ - 2175 - ] - } - ], - "game_modes_by_pk": [ - 2172, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "game_modes_stream": [ - 2172, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 2187, - "[game_modes_stream_cursor_input]!" - ], - "where": [ - 2175 - ] - } - ], - "game_plugin_installs": [ - 2191, - { - "distinct_on": [ - 2203, - "[game_plugin_installs_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2201, - "[game_plugin_installs_order_by!]" - ], - "where": [ - 2194 - ] - } - ], - "game_plugin_installs_aggregate": [ - 2192, - { - "distinct_on": [ - 2203, - "[game_plugin_installs_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2201, - "[game_plugin_installs_order_by!]" - ], - "where": [ - 2194 - ] - } - ], - "game_plugin_installs_by_pk": [ - 2191, - { - "plugin_slug": [ - 85, - "String!" - ] - } - ], - "game_plugin_installs_stream": [ - 2191, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 2205, - "[game_plugin_installs_stream_cursor_input]!" - ], - "where": [ - 2194 - ] - } - ], - "game_plugin_versions": [ - 2209, - { - "distinct_on": [ - 2232, - "[game_plugin_versions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2230, - "[game_plugin_versions_order_by!]" - ], - "where": [ - 2220 - ] - } - ], - "game_plugin_versions_aggregate": [ - 2210, - { - "distinct_on": [ - 2232, - "[game_plugin_versions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2230, - "[game_plugin_versions_order_by!]" - ], - "where": [ - 2220 - ] - } - ], - "game_plugin_versions_by_pk": [ - 2209, - { - "plugin_slug": [ - 85, - "String!" - ], - "runtime": [ - 1306, - "e_plugin_runtimes_enum!" - ], - "version": [ - 85, - "String!" - ] - } - ], - "game_plugin_versions_stream": [ - 2209, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 2242, - "[game_plugin_versions_stream_cursor_input]!" - ], - "where": [ - 2220 - ] - } - ], - "game_plugins": [ - 2254, - { - "distinct_on": [ - 2273, - "[game_plugins_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2270, - "[game_plugins_order_by!]" - ], - "where": [ - 2259 - ] - } - ], - "game_plugins_aggregate": [ - 2255, - { - "distinct_on": [ - 2273, - "[game_plugins_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2270, - "[game_plugins_order_by!]" - ], - "where": [ - 2259 - ] - } - ], - "game_plugins_by_pk": [ - 2254, - { - "slug": [ - 85, - "String!" - ] - } - ], - "game_plugins_stream": [ - 2254, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 2278, - "[game_plugins_stream_cursor_input]!" - ], - "where": [ - 2259 - ] - } - ], - "game_server_node_plugins": [ - 2286, - { - "distinct_on": [ - 2306, - "[game_server_node_plugins_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2304, - "[game_server_node_plugins_order_by!]" - ], - "where": [ - 2295 - ] - } - ], - "game_server_node_plugins_aggregate": [ - 2287, - { - "distinct_on": [ - 2306, - "[game_server_node_plugins_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2304, - "[game_server_node_plugins_order_by!]" - ], - "where": [ - 2295 - ] - } - ], - "game_server_node_plugins_by_pk": [ - 2286, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "game_server_node_plugins_stream": [ - 2286, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 2310, - "[game_server_node_plugins_stream_cursor_input]!" - ], - "where": [ - 2295 - ] - } - ], - "game_server_nodes": [ - 2314, - { - "distinct_on": [ - 2343, - "[game_server_nodes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2340, - "[game_server_nodes_order_by!]" - ], - "where": [ - 2326 - ] - } - ], - "game_server_nodes_aggregate": [ - 2315, - { - "distinct_on": [ - 2343, - "[game_server_nodes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2340, - "[game_server_nodes_order_by!]" - ], - "where": [ - 2326 - ] - } - ], - "game_server_nodes_by_pk": [ - 2314, - { - "id": [ - 85, - "String!" - ] - } - ], - "game_server_nodes_stream": [ - 2314, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 2353, - "[game_server_nodes_stream_cursor_input]!" - ], - "where": [ - 2326 - ] - } - ], - "game_versions": [ - 2365, - { - "distinct_on": [ - 2385, - "[game_versions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2382, - "[game_versions_order_by!]" - ], - "where": [ - 2370 - ] - } - ], - "game_versions_aggregate": [ - 2366, - { - "distinct_on": [ - 2385, - "[game_versions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2382, - "[game_versions_order_by!]" - ], - "where": [ - 2370 - ] - } - ], - "game_versions_by_pk": [ - 2365, - { - "build_id": [ - 41, - "Int!" - ] - } - ], - "game_versions_stream": [ - 2365, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 2390, - "[game_versions_stream_cursor_input]!" - ], - "where": [ - 2370 - ] - } - ], - "gamedata_signature_validations": [ - 2398, - { - "distinct_on": [ - 2417, - "[gamedata_signature_validations_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2414, - "[gamedata_signature_validations_order_by!]" - ], - "where": [ - 2403 - ] - } - ], - "gamedata_signature_validations_aggregate": [ - 2399, - { - "distinct_on": [ - 2417, - "[gamedata_signature_validations_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2414, - "[gamedata_signature_validations_order_by!]" - ], - "where": [ - 2403 - ] - } - ], - "gamedata_signature_validations_by_pk": [ - 2398, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "gamedata_signature_validations_stream": [ - 2398, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 2422, - "[gamedata_signature_validations_stream_cursor_input]!" - ], - "where": [ - 2403 - ] - } - ], - "get_event_leaderboard": [ - 2442, - { - "args": [ - 2430, - "get_event_leaderboard_args!" - ], - "distinct_on": [ - 2453, - "[leaderboard_entries_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2452, - "[leaderboard_entries_order_by!]" - ], - "where": [ - 2446 - ] - } - ], - "get_event_leaderboard_aggregate": [ - 2443, - { - "args": [ - 2430, - "get_event_leaderboard_args!" - ], - "distinct_on": [ - 2453, - "[leaderboard_entries_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2452, - "[leaderboard_entries_order_by!]" - ], - "where": [ - 2446 - ] - } - ], - "get_leaderboard": [ - 2442, - { - "args": [ - 2431, - "get_leaderboard_args!" - ], - "distinct_on": [ - 2453, - "[leaderboard_entries_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2452, - "[leaderboard_entries_order_by!]" - ], - "where": [ - 2446 - ] - } - ], - "get_leaderboard_aggregate": [ - 2443, - { - "args": [ - 2431, - "get_leaderboard_args!" - ], - "distinct_on": [ - 2453, - "[leaderboard_entries_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2452, - "[leaderboard_entries_order_by!]" - ], - "where": [ - 2446 - ] - } - ], - "get_league_season_leaderboard": [ - 2442, - { - "args": [ - 2432, - "get_league_season_leaderboard_args!" - ], - "distinct_on": [ - 2453, - "[leaderboard_entries_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2452, - "[leaderboard_entries_order_by!]" - ], - "where": [ - 2446 - ] - } - ], - "get_league_season_leaderboard_aggregate": [ - 2443, - { - "args": [ - 2432, - "get_league_season_leaderboard_args!" - ], - "distinct_on": [ - 2453, - "[leaderboard_entries_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2452, - "[leaderboard_entries_order_by!]" - ], - "where": [ - 2446 - ] - } - ], - "get_player_leaderboard_rank": [ - 4089, - { - "args": [ - 2433, - "get_player_leaderboard_rank_args!" - ], - "distinct_on": [ - 4100, - "[player_leaderboard_rank_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4099, - "[player_leaderboard_rank_order_by!]" - ], - "where": [ - 4093 - ] - } - ], - "get_player_leaderboard_rank_aggregate": [ - 4090, - { - "args": [ - 2433, - "get_player_leaderboard_rank_args!" - ], - "distinct_on": [ - 4100, - "[player_leaderboard_rank_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4099, - "[player_leaderboard_rank_order_by!]" - ], - "where": [ - 4093 - ] - } - ], - "get_tournament_leaderboard": [ - 5494, - { - "args": [ - 2434, - "get_tournament_leaderboard_args!" - ], - "distinct_on": [ - 5505, - "[tournament_leaderboard_entries_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5504, - "[tournament_leaderboard_entries_order_by!]" - ], - "where": [ - 5498 - ] - } - ], - "get_tournament_leaderboard_aggregate": [ - 5495, - { - "args": [ - 2434, - "get_tournament_leaderboard_args!" - ], - "distinct_on": [ - 5505, - "[tournament_leaderboard_entries_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5504, - "[tournament_leaderboard_entries_order_by!]" - ], - "where": [ - 5498 - ] - } - ], - "leaderboard_entries": [ - 2442, - { - "distinct_on": [ - 2453, - "[leaderboard_entries_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2452, - "[leaderboard_entries_order_by!]" - ], - "where": [ - 2446 - ] - } - ], - "leaderboard_entries_aggregate": [ - 2443, - { - "distinct_on": [ - 2453, - "[leaderboard_entries_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2452, - "[leaderboard_entries_order_by!]" - ], - "where": [ - 2446 - ] - } - ], - "leaderboard_entries_stream": [ - 2442, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 2458, - "[leaderboard_entries_stream_cursor_input]!" - ], - "where": [ - 2446 - ] - } - ], - "league_divisions": [ - 2466, - { - "distinct_on": [ - 2481, - "[league_divisions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2479, - "[league_divisions_order_by!]" - ], - "where": [ - 2470 - ] - } - ], - "league_divisions_aggregate": [ - 2467, - { - "distinct_on": [ - 2481, - "[league_divisions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2479, - "[league_divisions_order_by!]" - ], - "where": [ - 2470 - ] - } - ], - "league_divisions_by_pk": [ - 2466, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "league_divisions_stream": [ - 2466, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 2486, - "[league_divisions_stream_cursor_input]!" - ], - "where": [ - 2470 - ] - } - ], - "league_match_weeks": [ - 2494, - { - "distinct_on": [ - 2515, - "[league_match_weeks_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2513, - "[league_match_weeks_order_by!]" - ], - "where": [ - 2503 - ] - } - ], - "league_match_weeks_aggregate": [ - 2495, - { - "distinct_on": [ - 2515, - "[league_match_weeks_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2513, - "[league_match_weeks_order_by!]" - ], - "where": [ - 2503 - ] - } - ], - "league_match_weeks_by_pk": [ - 2494, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "league_match_weeks_stream": [ - 2494, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 2523, - "[league_match_weeks_stream_cursor_input]!" - ], - "where": [ - 2503 - ] - } - ], - "league_relegation_playoffs": [ - 2535, - { - "distinct_on": [ - 2556, - "[league_relegation_playoffs_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2554, - "[league_relegation_playoffs_order_by!]" - ], - "where": [ - 2544 - ] - } - ], - "league_relegation_playoffs_aggregate": [ - 2536, - { - "distinct_on": [ - 2556, - "[league_relegation_playoffs_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2554, - "[league_relegation_playoffs_order_by!]" - ], - "where": [ - 2544 - ] - } - ], - "league_relegation_playoffs_by_pk": [ - 2535, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "league_relegation_playoffs_stream": [ - 2535, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 2564, - "[league_relegation_playoffs_stream_cursor_input]!" - ], - "where": [ - 2544 - ] - } - ], - "league_scheduling_proposals": [ - 2576, - { - "distinct_on": [ - 2597, - "[league_scheduling_proposals_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2595, - "[league_scheduling_proposals_order_by!]" - ], - "where": [ - 2585 - ] - } - ], - "league_scheduling_proposals_aggregate": [ - 2577, - { - "distinct_on": [ - 2597, - "[league_scheduling_proposals_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2595, - "[league_scheduling_proposals_order_by!]" - ], - "where": [ - 2585 - ] - } - ], - "league_scheduling_proposals_by_pk": [ - 2576, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "league_scheduling_proposals_stream": [ - 2576, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 2605, - "[league_scheduling_proposals_stream_cursor_input]!" - ], - "where": [ - 2585 - ] - } - ], - "league_season_divisions": [ - 2617, - { - "distinct_on": [ - 2636, - "[league_season_divisions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2634, - "[league_season_divisions_order_by!]" - ], - "where": [ - 2624 - ] - } - ], - "league_season_divisions_aggregate": [ - 2618, - { - "distinct_on": [ - 2636, - "[league_season_divisions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2634, - "[league_season_divisions_order_by!]" - ], - "where": [ - 2624 - ] - } - ], - "league_season_divisions_by_pk": [ - 2617, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "league_season_divisions_stream": [ - 2617, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 2638, - "[league_season_divisions_stream_cursor_input]!" - ], - "where": [ - 2624 - ] - } - ], - "league_seasons": [ - 2642, - { - "distinct_on": [ - 2662, - "[league_seasons_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2659, - "[league_seasons_order_by!]" - ], - "where": [ - 2647 - ] - } - ], - "league_seasons_aggregate": [ - 2643, - { - "distinct_on": [ - 2662, - "[league_seasons_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2659, - "[league_seasons_order_by!]" - ], - "where": [ - 2647 - ] - } - ], - "league_seasons_by_pk": [ - 2642, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "league_seasons_stream": [ - 2642, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 2667, - "[league_seasons_stream_cursor_input]!" - ], - "where": [ - 2647 - ] - } - ], - "league_team_movements": [ - 2675, - { - "distinct_on": [ - 2696, - "[league_team_movements_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2694, - "[league_team_movements_order_by!]" - ], - "where": [ - 2684 - ] - } - ], - "league_team_movements_aggregate": [ - 2676, - { - "distinct_on": [ - 2696, - "[league_team_movements_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2694, - "[league_team_movements_order_by!]" - ], - "where": [ - 2684 - ] - } - ], - "league_team_movements_by_pk": [ - 2675, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "league_team_movements_stream": [ - 2675, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 2704, - "[league_team_movements_stream_cursor_input]!" - ], - "where": [ - 2684 - ] - } - ], - "league_team_rosters": [ - 2716, - { - "distinct_on": [ - 2737, - "[league_team_rosters_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2735, - "[league_team_rosters_order_by!]" - ], - "where": [ - 2725 - ] - } - ], - "league_team_rosters_aggregate": [ - 2717, - { - "distinct_on": [ - 2737, - "[league_team_rosters_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2735, - "[league_team_rosters_order_by!]" - ], - "where": [ - 2725 - ] - } - ], - "league_team_rosters_by_pk": [ - 2716, - { - "league_team_season_id": [ - 6672, - "uuid!" - ], - "player_steam_id": [ - 312, - "bigint!" - ] - } - ], - "league_team_rosters_stream": [ - 2716, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 2745, - "[league_team_rosters_stream_cursor_input]!" - ], - "where": [ - 2725 - ] - } - ], - "league_team_seasons": [ - 2757, - { - "distinct_on": [ - 2779, - "[league_team_seasons_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2777, - "[league_team_seasons_order_by!]" - ], - "where": [ - 2766 - ] - } - ], - "league_team_seasons_aggregate": [ - 2758, - { - "distinct_on": [ - 2779, - "[league_team_seasons_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2777, - "[league_team_seasons_order_by!]" - ], - "where": [ - 2766 - ] - } - ], - "league_team_seasons_by_pk": [ - 2757, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "league_team_seasons_stream": [ - 2757, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 2787, - "[league_team_seasons_stream_cursor_input]!" - ], - "where": [ - 2766 - ] - } - ], - "league_teams": [ - 2799, - { - "distinct_on": [ - 2812, - "[league_teams_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2810, - "[league_teams_order_by!]" - ], - "where": [ - 2802 - ] - } - ], - "league_teams_aggregate": [ - 2800, - { - "distinct_on": [ - 2812, - "[league_teams_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2810, - "[league_teams_order_by!]" - ], - "where": [ - 2802 - ] - } - ], - "league_teams_by_pk": [ - 2799, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "league_teams_stream": [ - 2799, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 2814, - "[league_teams_stream_cursor_input]!" - ], - "where": [ - 2802 - ] - } - ], - "lobbies": [ - 2818, - { - "distinct_on": [ - 2831, - "[lobbies_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2829, - "[lobbies_order_by!]" - ], - "where": [ - 2821 - ] - } - ], - "lobbies_aggregate": [ - 2819, - { - "distinct_on": [ - 2831, - "[lobbies_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2829, - "[lobbies_order_by!]" - ], - "where": [ - 2821 - ] - } - ], - "lobbies_by_pk": [ - 2818, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "lobbies_stream": [ - 2818, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 2833, - "[lobbies_stream_cursor_input]!" - ], - "where": [ - 2821 - ] - } - ], - "lobby_players": [ - 2837, - { - "distinct_on": [ - 2860, - "[lobby_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2858, - "[lobby_players_order_by!]" - ], - "where": [ - 2848 - ] - } - ], - "lobby_players_aggregate": [ - 2838, - { - "distinct_on": [ - 2860, - "[lobby_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2858, - "[lobby_players_order_by!]" - ], - "where": [ - 2848 - ] - } - ], - "lobby_players_by_pk": [ - 2837, - { - "lobby_id": [ - 6672, - "uuid!" - ], - "steam_id": [ - 312, - "bigint!" - ] - } - ], - "lobby_players_stream": [ - 2837, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 2870, - "[lobby_players_stream_cursor_input]!" - ], - "where": [ - 2848 - ] - } - ], - "map_callouts": [ - 2882, - { - "distinct_on": [ - 2899, - "[map_callouts_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2896, - "[map_callouts_order_by!]" - ], - "where": [ - 2886 - ] - } - ], - "map_callouts_aggregate": [ - 2883, - { - "distinct_on": [ - 2899, - "[map_callouts_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2896, - "[map_callouts_order_by!]" - ], - "where": [ - 2886 - ] - } - ], - "map_callouts_by_pk": [ - 2882, - { - "map_name": [ - 85, - "String!" - ], - "name": [ - 85, - "String!" - ] - } - ], - "map_callouts_stream": [ - 2882, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 2901, - "[map_callouts_stream_cursor_input]!" - ], - "where": [ - 2886 - ] - } - ], - "map_pools": [ - 2905, - { - "distinct_on": [ - 2918, - "[map_pools_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2916, - "[map_pools_order_by!]" - ], - "where": [ - 2908 - ] - } - ], - "map_pools_aggregate": [ - 2906, - { - "distinct_on": [ - 2918, - "[map_pools_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2916, - "[map_pools_order_by!]" - ], - "where": [ - 2908 - ] - } - ], - "map_pools_by_pk": [ - 2905, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "map_pools_stream": [ - 2905, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 2920, - "[map_pools_stream_cursor_input]!" - ], - "where": [ - 2908 - ] - } - ], - "maps": [ - 2924, - { - "distinct_on": [ - 2945, - "[maps_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2943, - "[maps_order_by!]" - ], - "where": [ - 2933 - ] - } - ], - "maps_aggregate": [ - 2925, - { - "distinct_on": [ - 2945, - "[maps_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2943, - "[maps_order_by!]" - ], - "where": [ - 2933 - ] - } - ], - "maps_by_pk": [ - 2924, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "maps_stream": [ - 2924, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 2949, - "[maps_stream_cursor_input]!" - ], - "where": [ - 2933 - ] - } - ], - "match_clips": [ - 2953, - { - "distinct_on": [ - 2975, - "[match_clips_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2973, - "[match_clips_order_by!]" - ], - "where": [ - 2962 - ] - } - ], - "match_clips_aggregate": [ - 2954, - { - "distinct_on": [ - 2975, - "[match_clips_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 2973, - "[match_clips_order_by!]" - ], - "where": [ - 2962 - ] - } - ], - "match_clips_by_pk": [ - 2953, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "match_clips_stream": [ - 2953, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 2983, - "[match_clips_stream_cursor_input]!" - ], - "where": [ - 2962 - ] - } - ], - "match_demo_sessions": [ - 2995, - { - "distinct_on": [ - 3021, - "[match_demo_sessions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3018, - "[match_demo_sessions_order_by!]" - ], - "where": [ - 3005 - ] - } - ], - "match_demo_sessions_aggregate": [ - 2996, - { - "distinct_on": [ - 3021, - "[match_demo_sessions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3018, - "[match_demo_sessions_order_by!]" - ], - "where": [ - 3005 - ] - } - ], - "match_demo_sessions_by_pk": [ - 2995, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "match_demo_sessions_stream": [ - 2995, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 3029, - "[match_demo_sessions_stream_cursor_input]!" - ], - "where": [ - 3005 - ] - } - ], - "match_lineup_players": [ - 3041, - { - "distinct_on": [ - 3064, - "[match_lineup_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3062, - "[match_lineup_players_order_by!]" - ], - "where": [ - 3052 - ] - } - ], - "match_lineup_players_aggregate": [ - 3042, - { - "distinct_on": [ - 3064, - "[match_lineup_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3062, - "[match_lineup_players_order_by!]" - ], - "where": [ - 3052 - ] - } - ], - "match_lineup_players_by_pk": [ - 3041, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "match_lineup_players_stream": [ - 3041, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 3074, - "[match_lineup_players_stream_cursor_input]!" - ], - "where": [ - 3052 - ] - } - ], - "match_lineups": [ - 3086, - { - "distinct_on": [ - 3108, - "[match_lineups_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3106, - "[match_lineups_order_by!]" - ], - "where": [ - 3095 - ] - } - ], - "match_lineups_aggregate": [ - 3087, - { - "distinct_on": [ - 3108, - "[match_lineups_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3106, - "[match_lineups_order_by!]" - ], - "where": [ - 3095 - ] - } - ], - "match_lineups_by_pk": [ - 3086, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "match_lineups_stream": [ - 3086, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 3116, - "[match_lineups_stream_cursor_input]!" - ], - "where": [ - 3095 - ] - } - ], - "match_map_demos": [ - 3128, - { - "distinct_on": [ - 3157, - "[match_map_demos_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3154, - "[match_map_demos_order_by!]" - ], - "where": [ - 3140 - ] - } - ], - "match_map_demos_aggregate": [ - 3129, - { - "distinct_on": [ - 3157, - "[match_map_demos_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3154, - "[match_map_demos_order_by!]" - ], - "where": [ - 3140 - ] - } - ], - "match_map_demos_by_pk": [ - 3128, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "match_map_demos_stream": [ - 3128, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 3167, - "[match_map_demos_stream_cursor_input]!" - ], - "where": [ - 3140 - ] - } - ], - "match_map_rounds": [ - 3179, - { - "distinct_on": [ - 3200, - "[match_map_rounds_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3198, - "[match_map_rounds_order_by!]" - ], - "where": [ - 3188 - ] - } - ], - "match_map_rounds_aggregate": [ - 3180, - { - "distinct_on": [ - 3200, - "[match_map_rounds_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3198, - "[match_map_rounds_order_by!]" - ], - "where": [ - 3188 - ] - } - ], - "match_map_rounds_by_pk": [ - 3179, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "match_map_rounds_stream": [ - 3179, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 3208, - "[match_map_rounds_stream_cursor_input]!" - ], - "where": [ - 3188 - ] - } - ], - "match_map_veto_picks": [ - 3220, - { - "distinct_on": [ - 3240, - "[match_map_veto_picks_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3238, - "[match_map_veto_picks_order_by!]" - ], - "where": [ - 3229 - ] - } - ], - "match_map_veto_picks_aggregate": [ - 3221, - { - "distinct_on": [ - 3240, - "[match_map_veto_picks_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3238, - "[match_map_veto_picks_order_by!]" - ], - "where": [ - 3229 - ] - } - ], - "match_map_veto_picks_by_pk": [ - 3220, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "match_map_veto_picks_stream": [ - 3220, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 3244, - "[match_map_veto_picks_stream_cursor_input]!" - ], - "where": [ - 3229 - ] - } - ], - "match_maps": [ - 3248, - { - "distinct_on": [ - 3270, - "[match_maps_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3268, - "[match_maps_order_by!]" - ], - "where": [ - 3257 - ] - } - ], - "match_maps_aggregate": [ - 3249, - { - "distinct_on": [ - 3270, - "[match_maps_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3268, - "[match_maps_order_by!]" - ], - "where": [ - 3257 - ] - } - ], - "match_maps_by_pk": [ - 3248, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "match_maps_stream": [ - 3248, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 3278, - "[match_maps_stream_cursor_input]!" - ], - "where": [ - 3257 - ] - } - ], - "match_options": [ - 3290, - { - "distinct_on": [ - 3314, - "[match_options_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3312, - "[match_options_order_by!]" - ], - "where": [ - 3301 - ] - } - ], - "match_options_aggregate": [ - 3291, - { - "distinct_on": [ - 3314, - "[match_options_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3312, - "[match_options_order_by!]" - ], - "where": [ - 3301 - ] - } - ], - "match_options_by_pk": [ - 3290, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "match_options_stream": [ - 3290, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 3324, - "[match_options_stream_cursor_input]!" - ], - "where": [ - 3301 - ] - } - ], - "match_region_veto_picks": [ - 3336, - { - "distinct_on": [ - 3356, - "[match_region_veto_picks_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3354, - "[match_region_veto_picks_order_by!]" - ], - "where": [ - 3345 - ] - } - ], - "match_region_veto_picks_aggregate": [ - 3337, - { - "distinct_on": [ - 3356, - "[match_region_veto_picks_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3354, - "[match_region_veto_picks_order_by!]" - ], - "where": [ - 3345 - ] - } - ], - "match_region_veto_picks_by_pk": [ - 3336, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "match_region_veto_picks_stream": [ - 3336, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 3360, - "[match_region_veto_picks_stream_cursor_input]!" - ], - "where": [ - 3345 - ] - } - ], - "match_streams": [ - 3364, - { - "distinct_on": [ - 3392, - "[match_streams_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3389, - "[match_streams_order_by!]" - ], - "where": [ - 3376 - ] - } - ], - "match_streams_aggregate": [ - 3365, - { - "distinct_on": [ - 3392, - "[match_streams_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3389, - "[match_streams_order_by!]" - ], - "where": [ - 3376 - ] - } - ], - "match_streams_by_pk": [ - 3364, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "match_streams_stream": [ - 3364, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 3402, - "[match_streams_stream_cursor_input]!" - ], - "where": [ - 3376 - ] - } - ], - "match_type_cfgs": [ - 3414, - { - "distinct_on": [ - 3426, - "[match_type_cfgs_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3424, - "[match_type_cfgs_order_by!]" - ], - "where": [ - 3417 - ] - } - ], - "match_type_cfgs_aggregate": [ - 3415, - { - "distinct_on": [ - 3426, - "[match_type_cfgs_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3424, - "[match_type_cfgs_order_by!]" - ], - "where": [ - 3417 - ] - } - ], - "match_type_cfgs_by_pk": [ - 3414, - { - "type": [ - 876, - "e_game_cfg_types_enum!" - ] - } - ], - "match_type_cfgs_stream": [ - 3414, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 3428, - "[match_type_cfgs_stream_cursor_input]!" - ], - "where": [ - 3417 - ] - } - ], - "matches": [ - 3432, - { - "distinct_on": [ - 3456, - "[matches_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3454, - "[matches_order_by!]" - ], - "where": [ - 3443 - ] - } - ], - "matches_aggregate": [ - 3433, - { - "distinct_on": [ - 3456, - "[matches_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3454, - "[matches_order_by!]" - ], - "where": [ - 3443 - ] - } - ], - "matches_by_pk": [ - 3432, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "matches_stream": [ - 3432, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 3466, - "[matches_stream_cursor_input]!" - ], - "where": [ - 3443 - ] - } - ], - "migration_hashes_hashes": [ - 3478, - { - "distinct_on": [ - 3490, - "[migration_hashes_hashes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3488, - "[migration_hashes_hashes_order_by!]" - ], - "where": [ - 3481 - ] - } - ], - "migration_hashes_hashes_aggregate": [ - 3479, - { - "distinct_on": [ - 3490, - "[migration_hashes_hashes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3488, - "[migration_hashes_hashes_order_by!]" - ], - "where": [ - 3481 - ] - } - ], - "migration_hashes_hashes_by_pk": [ - 3478, - { - "name": [ - 85, - "String!" - ] - } - ], - "migration_hashes_hashes_stream": [ - 3478, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 3492, - "[migration_hashes_hashes_stream_cursor_input]!" - ], - "where": [ - 3481 - ] - } - ], - "my_friends": [ - 3496, - { - "distinct_on": [ - 3521, - "[my_friends_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3519, - "[my_friends_order_by!]" - ], - "where": [ - 3508 - ] - } - ], - "my_friends_aggregate": [ - 3497, - { - "distinct_on": [ - 3521, - "[my_friends_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3519, - "[my_friends_order_by!]" - ], - "where": [ - 3508 - ] - } - ], - "my_friends_stream": [ - 3496, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 3531, - "[my_friends_stream_cursor_input]!" - ], - "where": [ - 3508 - ] - } - ], - "news_articles": [ - 3542, - { - "distinct_on": [ - 3556, - "[news_articles_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3554, - "[news_articles_order_by!]" - ], - "where": [ - 3546 - ] - } - ], - "news_articles_aggregate": [ - 3543, - { - "distinct_on": [ - 3556, - "[news_articles_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3554, - "[news_articles_order_by!]" - ], - "where": [ - 3546 - ] - } - ], - "news_articles_by_pk": [ - 3542, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "news_articles_stream": [ - 3542, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 3561, - "[news_articles_stream_cursor_input]!" - ], - "where": [ - 3546 - ] - } - ], - "notification_preferences": [ - 3569, - { - "distinct_on": [ - 3583, - "[notification_preferences_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3581, - "[notification_preferences_order_by!]" - ], - "where": [ - 3573 - ] - } - ], - "notification_preferences_aggregate": [ - 3570, - { - "distinct_on": [ - 3583, - "[notification_preferences_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3581, - "[notification_preferences_order_by!]" - ], - "where": [ - 3573 - ] - } - ], - "notification_preferences_by_pk": [ - 3569, - { - "channel": [ - 85, - "String!" - ], - "key": [ - 85, - "String!" - ], - "steam_id": [ - 312, - "bigint!" - ] - } - ], - "notification_preferences_stream": [ - 3569, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 3588, - "[notification_preferences_stream_cursor_input]!" - ], - "where": [ - 3573 - ] - } - ], - "notifications": [ - 3596, - { - "distinct_on": [ - 3624, - "[notifications_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3621, - "[notifications_order_by!]" - ], - "where": [ - 3608 - ] - } - ], - "notifications_aggregate": [ - 3597, - { - "distinct_on": [ - 3624, - "[notifications_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3621, - "[notifications_order_by!]" - ], - "where": [ - 3608 - ] - } - ], - "notifications_by_pk": [ - 3596, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "notifications_stream": [ - 3596, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 3634, - "[notifications_stream_cursor_input]!" - ], - "where": [ - 3608 - ] - } - ], - "pending_match_import_players": [ - 3649, - { - "distinct_on": [ - 3670, - "[pending_match_import_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3668, - "[pending_match_import_players_order_by!]" - ], - "where": [ - 3658 - ] - } - ], - "pending_match_import_players_aggregate": [ - 3650, - { - "distinct_on": [ - 3670, - "[pending_match_import_players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3668, - "[pending_match_import_players_order_by!]" - ], - "where": [ - 3658 - ] - } - ], - "pending_match_import_players_by_pk": [ - 3649, - { - "steam_id": [ - 312, - "bigint!" - ], - "valve_match_id": [ - 3646, - "numeric!" - ] - } - ], - "pending_match_import_players_stream": [ - 3649, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 3678, - "[pending_match_import_players_stream_cursor_input]!" - ], - "where": [ - 3658 - ] - } - ], - "pending_match_imports": [ - 3690, - { - "distinct_on": [ - 3705, - "[pending_match_imports_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3703, - "[pending_match_imports_order_by!]" - ], - "where": [ - 3694 - ] - } - ], - "pending_match_imports_aggregate": [ - 3691, - { - "distinct_on": [ - 3705, - "[pending_match_imports_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3703, - "[pending_match_imports_order_by!]" - ], - "where": [ - 3694 - ] - } - ], - "pending_match_imports_by_pk": [ - 3690, - { - "valve_match_id": [ - 3646, - "numeric!" - ] - } - ], - "pending_match_imports_stream": [ - 3690, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 3710, - "[pending_match_imports_stream_cursor_input]!" - ], - "where": [ - 3694 - ] - } - ], - "player_aim_stats_demo": [ - 3718, - { - "distinct_on": [ - 3732, - "[player_aim_stats_demo_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3730, - "[player_aim_stats_demo_order_by!]" - ], - "where": [ - 3722 - ] - } - ], - "player_aim_stats_demo_aggregate": [ - 3719, - { - "distinct_on": [ - 3732, - "[player_aim_stats_demo_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3730, - "[player_aim_stats_demo_order_by!]" - ], - "where": [ - 3722 - ] - } - ], - "player_aim_stats_demo_by_pk": [ - 3718, - { - "attacker_steam_id": [ - 312, - "bigint!" - ], - "match_map_id": [ - 6672, - "uuid!" - ] - } - ], - "player_aim_stats_demo_stream": [ - 3718, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 3737, - "[player_aim_stats_demo_stream_cursor_input]!" - ], - "where": [ - 3722 - ] - } - ], - "player_aim_weapon_stats": [ - 3745, - { - "distinct_on": [ - 3766, - "[player_aim_weapon_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3764, - "[player_aim_weapon_stats_order_by!]" - ], - "where": [ - 3754 - ] - } - ], - "player_aim_weapon_stats_aggregate": [ - 3746, - { - "distinct_on": [ - 3766, - "[player_aim_weapon_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3764, - "[player_aim_weapon_stats_order_by!]" - ], - "where": [ - 3754 - ] - } - ], - "player_aim_weapon_stats_by_pk": [ - 3745, - { - "match_map_id": [ - 6672, - "uuid!" - ], - "steam_id": [ - 312, - "bigint!" - ], - "weapon_class": [ - 85, - "String!" - ] - } - ], - "player_aim_weapon_stats_stream": [ - 3745, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 3774, - "[player_aim_weapon_stats_stream_cursor_input]!" - ], - "where": [ - 3754 - ] - } - ], - "player_assists": [ - 3786, - { - "distinct_on": [ - 3809, - "[player_assists_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3807, - "[player_assists_order_by!]" - ], - "where": [ - 3797 - ] - } - ], - "player_assists_aggregate": [ - 3787, - { - "distinct_on": [ - 3809, - "[player_assists_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3807, - "[player_assists_order_by!]" - ], - "where": [ - 3797 - ] - } - ], - "player_assists_by_pk": [ - 3786, - { - "attacked_steam_id": [ - 312, - "bigint!" - ], - "attacker_steam_id": [ - 312, - "bigint!" - ], - "match_map_id": [ - 6672, - "uuid!" - ], - "time": [ - 5243, - "timestamptz!" - ] - } - ], - "player_assists_stream": [ - 3786, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 3819, - "[player_assists_stream_cursor_input]!" - ], - "where": [ - 3797 - ] - } - ], - "player_career_stats_v": [ - 3831, - { - "distinct_on": [ - 3839, - "[player_career_stats_v_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3838, - "[player_career_stats_v_order_by!]" - ], - "where": [ - 3835 - ] - } - ], - "player_career_stats_v_aggregate": [ - 3832, - { - "distinct_on": [ - 3839, - "[player_career_stats_v_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3838, - "[player_career_stats_v_order_by!]" - ], - "where": [ - 3835 - ] - } - ], - "player_career_stats_v_stream": [ - 3831, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 3843, - "[player_career_stats_v_stream_cursor_input]!" - ], - "where": [ - 3835 - ] - } - ], - "player_damages": [ - 3849, - { - "distinct_on": [ - 3870, - "[player_damages_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3868, - "[player_damages_order_by!]" - ], - "where": [ - 3858 - ] - } - ], - "player_damages_aggregate": [ - 3850, - { - "distinct_on": [ - 3870, - "[player_damages_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3868, - "[player_damages_order_by!]" - ], - "where": [ - 3858 - ] - } - ], - "player_damages_by_pk": [ - 3849, - { - "id": [ - 6672, - "uuid!" - ], - "match_map_id": [ - 6672, - "uuid!" - ], - "time": [ - 5243, - "timestamptz!" - ] - } - ], - "player_damages_stream": [ - 3849, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 3878, - "[player_damages_stream_cursor_input]!" - ], - "where": [ - 3858 - ] - } - ], - "player_elo": [ - 3890, - { - "distinct_on": [ - 3904, - "[player_elo_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3902, - "[player_elo_order_by!]" - ], - "where": [ - 3894 - ] - } - ], - "player_elo_aggregate": [ - 3891, - { - "distinct_on": [ - 3904, - "[player_elo_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3902, - "[player_elo_order_by!]" - ], - "where": [ - 3894 - ] - } - ], - "player_elo_by_pk": [ - 3890, - { - "match_id": [ - 6672, - "uuid!" - ], - "steam_id": [ - 312, - "bigint!" - ], - "type": [ - 1225, - "e_match_types_enum!" - ] - } - ], - "player_elo_stream": [ - 3890, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 3909, - "[player_elo_stream_cursor_input]!" - ], - "where": [ - 3894 - ] - } - ], - "player_faceit_rank_history": [ - 3917, - { - "distinct_on": [ - 3938, - "[player_faceit_rank_history_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3936, - "[player_faceit_rank_history_order_by!]" - ], - "where": [ - 3926 - ] - } - ], - "player_faceit_rank_history_aggregate": [ - 3918, - { - "distinct_on": [ - 3938, - "[player_faceit_rank_history_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3936, - "[player_faceit_rank_history_order_by!]" - ], - "where": [ - 3926 - ] - } - ], - "player_faceit_rank_history_by_pk": [ - 3917, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "player_faceit_rank_history_stream": [ - 3917, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 3946, - "[player_faceit_rank_history_stream_cursor_input]!" - ], - "where": [ - 3926 - ] - } - ], - "player_flashes": [ - 3958, - { - "distinct_on": [ - 3981, - "[player_flashes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3979, - "[player_flashes_order_by!]" - ], - "where": [ - 3969 - ] - } - ], - "player_flashes_aggregate": [ - 3959, - { - "distinct_on": [ - 3981, - "[player_flashes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 3979, - "[player_flashes_order_by!]" - ], - "where": [ - 3969 - ] - } - ], - "player_flashes_by_pk": [ - 3958, - { - "attacked_steam_id": [ - 312, - "bigint!" - ], - "attacker_steam_id": [ - 312, - "bigint!" - ], - "match_map_id": [ - 6672, - "uuid!" - ], - "time": [ - 5243, - "timestamptz!" - ] - } - ], - "player_flashes_stream": [ - 3958, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 3991, - "[player_flashes_stream_cursor_input]!" - ], - "where": [ - 3969 - ] - } - ], - "player_kills": [ - 4003, - { - "distinct_on": [ - 4067, - "[player_kills_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4065, - "[player_kills_order_by!]" - ], - "where": [ - 4014 - ] - } - ], - "player_kills_aggregate": [ - 4004, - { - "distinct_on": [ - 4067, - "[player_kills_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4065, - "[player_kills_order_by!]" - ], - "where": [ - 4014 - ] - } - ], - "player_kills_by_pk": [ - 4003, - { - "attacked_steam_id": [ - 312, - "bigint!" - ], - "attacker_steam_id": [ - 312, - "bigint!" - ], - "match_map_id": [ - 6672, - "uuid!" - ], - "time": [ - 5243, - "timestamptz!" - ] - } - ], - "player_kills_by_weapon": [ - 4015, - { - "distinct_on": [ - 4036, - "[player_kills_by_weapon_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4034, - "[player_kills_by_weapon_order_by!]" - ], - "where": [ - 4024 - ] - } - ], - "player_kills_by_weapon_aggregate": [ - 4016, - { - "distinct_on": [ - 4036, - "[player_kills_by_weapon_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4034, - "[player_kills_by_weapon_order_by!]" - ], - "where": [ - 4024 - ] - } - ], - "player_kills_by_weapon_by_pk": [ - 4015, - { - "player_steam_id": [ - 312, - "bigint!" - ], - "with": [ - 85, - "String!" - ] - } - ], - "player_kills_by_weapon_stream": [ - 4015, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 4044, - "[player_kills_by_weapon_stream_cursor_input]!" - ], - "where": [ - 4024 - ] - } - ], - "player_kills_stream": [ - 4003, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 4077, - "[player_kills_stream_cursor_input]!" - ], - "where": [ - 4014 - ] - } - ], - "player_leaderboard_rank": [ - 4089, - { - "distinct_on": [ - 4100, - "[player_leaderboard_rank_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4099, - "[player_leaderboard_rank_order_by!]" - ], - "where": [ - 4093 - ] - } - ], - "player_leaderboard_rank_aggregate": [ - 4090, - { - "distinct_on": [ - 4100, - "[player_leaderboard_rank_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4099, - "[player_leaderboard_rank_order_by!]" - ], - "where": [ - 4093 - ] - } - ], - "player_leaderboard_rank_stream": [ - 4089, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 4105, - "[player_leaderboard_rank_stream_cursor_input]!" - ], - "where": [ - 4093 - ] - } - ], - "player_match_map_stats": [ - 4112, - { - "distinct_on": [ - 4133, - "[player_match_map_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4131, - "[player_match_map_stats_order_by!]" - ], - "where": [ - 4121 - ] - } - ], - "player_match_map_stats_aggregate": [ - 4113, - { - "distinct_on": [ - 4133, - "[player_match_map_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4131, - "[player_match_map_stats_order_by!]" - ], - "where": [ - 4121 - ] - } - ], - "player_match_map_stats_by_pk": [ - 4112, - { - "match_map_id": [ - 6672, - "uuid!" - ], - "steam_id": [ - 312, - "bigint!" - ] - } - ], - "player_match_map_stats_stream": [ - 4112, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 4141, - "[player_match_map_stats_stream_cursor_input]!" - ], - "where": [ - 4121 - ] - } - ], - "player_match_performance_v": [ - 4153, - { - "distinct_on": [ - 4161, - "[player_match_performance_v_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4160, - "[player_match_performance_v_order_by!]" - ], - "where": [ - 4157 - ] - } - ], - "player_match_performance_v_aggregate": [ - 4154, - { - "distinct_on": [ - 4161, - "[player_match_performance_v_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4160, - "[player_match_performance_v_order_by!]" - ], - "where": [ - 4157 - ] - } - ], - "player_match_performance_v_stream": [ - 4153, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 4165, - "[player_match_performance_v_stream_cursor_input]!" - ], - "where": [ - 4157 - ] - } - ], - "player_match_stats_v": [ - 4171, - { - "distinct_on": [ - 4187, - "[player_match_stats_v_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4186, - "[player_match_stats_v_order_by!]" - ], - "where": [ - 4180 - ] - } - ], - "player_match_stats_v_aggregate": [ - 4172, - { - "distinct_on": [ - 4187, - "[player_match_stats_v_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4186, - "[player_match_stats_v_order_by!]" - ], - "where": [ - 4180 - ] - } - ], - "player_match_stats_v_stream": [ - 4171, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 4194, - "[player_match_stats_v_stream_cursor_input]!" - ], - "where": [ - 4180 - ] - } - ], - "player_objectives": [ - 4204, - { - "distinct_on": [ - 4225, - "[player_objectives_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4223, - "[player_objectives_order_by!]" - ], - "where": [ - 4213 - ] - } - ], - "player_objectives_aggregate": [ - 4205, - { - "distinct_on": [ - 4225, - "[player_objectives_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4223, - "[player_objectives_order_by!]" - ], - "where": [ - 4213 - ] - } - ], - "player_objectives_by_pk": [ - 4204, - { - "match_map_id": [ - 6672, - "uuid!" - ], - "player_steam_id": [ - 312, - "bigint!" - ], - "time": [ - 5243, - "timestamptz!" - ] - } - ], - "player_objectives_stream": [ - 4204, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 4233, - "[player_objectives_stream_cursor_input]!" - ], - "where": [ - 4213 - ] - } - ], - "player_performance_v": [ - 4245, - { - "distinct_on": [ - 4253, - "[player_performance_v_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4252, - "[player_performance_v_order_by!]" - ], - "where": [ - 4249 - ] - } - ], - "player_performance_v_aggregate": [ - 4246, - { - "distinct_on": [ - 4253, - "[player_performance_v_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4252, - "[player_performance_v_order_by!]" - ], - "where": [ - 4249 - ] - } - ], - "player_performance_v_stream": [ - 4245, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 4257, - "[player_performance_v_stream_cursor_input]!" - ], - "where": [ - 4249 - ] - } - ], - "player_premier_rank_history": [ - 4263, - { - "distinct_on": [ - 4284, - "[player_premier_rank_history_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4282, - "[player_premier_rank_history_order_by!]" - ], - "where": [ - 4272 - ] - } - ], - "player_premier_rank_history_aggregate": [ - 4264, - { - "distinct_on": [ - 4284, - "[player_premier_rank_history_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4282, - "[player_premier_rank_history_order_by!]" - ], - "where": [ - 4272 - ] - } - ], - "player_premier_rank_history_by_pk": [ - 4263, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "player_premier_rank_history_stream": [ - 4263, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 4292, - "[player_premier_rank_history_stream_cursor_input]!" - ], - "where": [ - 4272 - ] - } - ], - "player_sanctions": [ - 4304, - { - "distinct_on": [ - 4325, - "[player_sanctions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4323, - "[player_sanctions_order_by!]" - ], - "where": [ - 4313 - ] - } - ], - "player_sanctions_aggregate": [ - 4305, - { - "distinct_on": [ - 4325, - "[player_sanctions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4323, - "[player_sanctions_order_by!]" - ], - "where": [ - 4313 - ] - } - ], - "player_sanctions_by_pk": [ - 4304, - { - "created_at": [ - 5243, - "timestamptz!" - ], - "id": [ - 6672, - "uuid!" - ] - } - ], - "player_sanctions_stream": [ - 4304, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 4333, - "[player_sanctions_stream_cursor_input]!" - ], - "where": [ - 4313 - ] - } - ], - "player_season_stats": [ - 4345, - { - "distinct_on": [ - 4376, - "[player_season_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4374, - "[player_season_stats_order_by!]" - ], - "where": [ - 4364 - ] - } - ], - "player_season_stats_aggregate": [ - 4346, - { - "distinct_on": [ - 4376, - "[player_season_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4374, - "[player_season_stats_order_by!]" - ], - "where": [ - 4364 - ] - } - ], - "player_season_stats_by_pk": [ - 4345, - { - "player_steam_id": [ - 312, - "bigint!" - ], - "season_id": [ - 6672, - "uuid!" - ] - } - ], - "player_season_stats_stream": [ - 4345, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 4392, - "[player_season_stats_stream_cursor_input]!" - ], - "where": [ - 4364 - ] - } - ], - "player_stats": [ - 4404, - { - "distinct_on": [ - 4419, - "[player_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4417, - "[player_stats_order_by!]" - ], - "where": [ - 4408 - ] - } - ], - "player_stats_aggregate": [ - 4405, - { - "distinct_on": [ - 4419, - "[player_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4417, - "[player_stats_order_by!]" - ], - "where": [ - 4408 - ] - } - ], - "player_stats_by_pk": [ - 4404, - { - "player_steam_id": [ - 312, - "bigint!" - ] - } - ], - "player_stats_stream": [ - 4404, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 4424, - "[player_stats_stream_cursor_input]!" - ], - "where": [ - 4408 - ] - } - ], - "player_steam_bot_friend": [ - 4432, - { - "distinct_on": [ - 4451, - "[player_steam_bot_friend_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4448, - "[player_steam_bot_friend_order_by!]" - ], - "where": [ - 4437 - ] - } - ], - "player_steam_bot_friend_aggregate": [ - 4433, - { - "distinct_on": [ - 4451, - "[player_steam_bot_friend_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4448, - "[player_steam_bot_friend_order_by!]" - ], - "where": [ - 4437 - ] - } - ], - "player_steam_bot_friend_by_pk": [ - 4432, - { - "steam_id": [ - 312, - "bigint!" - ] - } - ], - "player_steam_bot_friend_stream": [ - 4432, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 4456, - "[player_steam_bot_friend_stream_cursor_input]!" - ], - "where": [ - 4437 - ] - } - ], - "player_steam_match_auth": [ - 4464, - { - "distinct_on": [ - 4478, - "[player_steam_match_auth_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4476, - "[player_steam_match_auth_order_by!]" - ], - "where": [ - 4468 - ] - } - ], - "player_steam_match_auth_aggregate": [ - 4465, - { - "distinct_on": [ - 4478, - "[player_steam_match_auth_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4476, - "[player_steam_match_auth_order_by!]" - ], - "where": [ - 4468 - ] - } - ], - "player_steam_match_auth_by_pk": [ - 4464, - { - "steam_id": [ - 312, - "bigint!" - ] - } - ], - "player_steam_match_auth_stream": [ - 4464, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 4483, - "[player_steam_match_auth_stream_cursor_input]!" - ], - "where": [ - 4468 - ] - } - ], - "player_unused_utility": [ - 4491, - { - "distinct_on": [ - 4512, - "[player_unused_utility_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4510, - "[player_unused_utility_order_by!]" - ], - "where": [ - 4500 - ] - } - ], - "player_unused_utility_aggregate": [ - 4492, - { - "distinct_on": [ - 4512, - "[player_unused_utility_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4510, - "[player_unused_utility_order_by!]" - ], - "where": [ - 4500 - ] - } - ], - "player_unused_utility_by_pk": [ - 4491, - { - "match_map_id": [ - 6672, - "uuid!" - ], - "player_steam_id": [ - 312, - "bigint!" - ] - } - ], - "player_unused_utility_stream": [ - 4491, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 4520, - "[player_unused_utility_stream_cursor_input]!" - ], - "where": [ - 4500 - ] - } - ], - "player_utility": [ - 4532, - { - "distinct_on": [ - 4553, - "[player_utility_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4551, - "[player_utility_order_by!]" - ], - "where": [ - 4541 - ] - } - ], - "player_utility_aggregate": [ - 4533, - { - "distinct_on": [ - 4553, - "[player_utility_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4551, - "[player_utility_order_by!]" - ], - "where": [ - 4541 - ] - } - ], - "player_utility_by_pk": [ - 4532, - { - "attacker_steam_id": [ - 312, - "bigint!" - ], - "match_map_id": [ - 6672, - "uuid!" - ], - "time": [ - 5243, - "timestamptz!" - ] - } - ], - "player_utility_stream": [ - 4532, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 4561, - "[player_utility_stream_cursor_input]!" - ], - "where": [ - 4541 - ] - } - ], - "player_weapon_stats_v": [ - 4573, - { - "distinct_on": [ - 4589, - "[player_weapon_stats_v_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4588, - "[player_weapon_stats_v_order_by!]" - ], - "where": [ - 4582 - ] - } - ], - "player_weapon_stats_v_aggregate": [ - 4574, - { - "distinct_on": [ - 4589, - "[player_weapon_stats_v_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4588, - "[player_weapon_stats_v_order_by!]" - ], - "where": [ - 4582 - ] - } - ], - "player_weapon_stats_v_stream": [ - 4573, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 4596, - "[player_weapon_stats_v_stream_cursor_input]!" - ], - "where": [ - 4582 - ] - } - ], - "players": [ - 4606, - { - "distinct_on": [ - 4621, - "[players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4619, - "[players_order_by!]" - ], - "where": [ - 4610 - ] - } - ], - "players_aggregate": [ - 4607, - { - "distinct_on": [ - 4621, - "[players_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4619, - "[players_order_by!]" - ], - "where": [ - 4610 - ] - } - ], - "players_by_pk": [ - 4606, - { - "steam_id": [ - 312, - "bigint!" - ] - } - ], - "players_stream": [ - 4606, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 4626, - "[players_stream_cursor_input]!" - ], - "where": [ - 4610 - ] - } - ], - "plugin_versions": [ - 4634, - { - "distinct_on": [ - 4648, - "[plugin_versions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4646, - "[plugin_versions_order_by!]" - ], - "where": [ - 4638 - ] - } - ], - "plugin_versions_aggregate": [ - 4635, - { - "distinct_on": [ - 4648, - "[plugin_versions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4646, - "[plugin_versions_order_by!]" - ], - "where": [ - 4638 - ] - } - ], - "plugin_versions_by_pk": [ - 4634, - { - "runtime": [ - 1306, - "e_plugin_runtimes_enum!" - ], - "version": [ - 85, - "String!" - ] - } - ], - "plugin_versions_stream": [ - 4634, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 4653, - "[plugin_versions_stream_cursor_input]!" - ], - "where": [ - 4638 - ] - } - ], - "push_subscriptions": [ - 4661, - { - "distinct_on": [ - 4675, - "[push_subscriptions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4673, - "[push_subscriptions_order_by!]" - ], - "where": [ - 4665 - ] - } - ], - "push_subscriptions_aggregate": [ - 4662, - { - "distinct_on": [ - 4675, - "[push_subscriptions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4673, - "[push_subscriptions_order_by!]" - ], - "where": [ - 4665 - ] - } - ], - "push_subscriptions_by_pk": [ - 4661, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "push_subscriptions_stream": [ - 4661, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 4680, - "[push_subscriptions_stream_cursor_input]!" - ], - "where": [ - 4665 - ] - } - ], - "role_permissions": [ - 4692, - { - "distinct_on": [ - 4701, - "[role_permissions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4700, - "[role_permissions_order_by!]" - ], - "where": [ - 4695 - ] - } - ], - "role_permissions_aggregate": [ - 4693, - { - "distinct_on": [ - 4701, - "[role_permissions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4700, - "[role_permissions_order_by!]" - ], - "where": [ - 4695 - ] - } - ], - "role_permissions_stream": [ - 4692, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 4703, - "[role_permissions_stream_cursor_input]!" - ], - "where": [ - 4695 - ] - } - ], - "seasons": [ - 4706, - { - "distinct_on": [ - 4721, - "[seasons_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4719, - "[seasons_order_by!]" - ], - "where": [ - 4710 - ] - } - ], - "seasons_aggregate": [ - 4707, - { - "distinct_on": [ - 4721, - "[seasons_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4719, - "[seasons_order_by!]" - ], - "where": [ - 4710 - ] - } - ], - "seasons_by_pk": [ - 4706, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "seasons_stream": [ - 4706, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 4726, - "[seasons_stream_cursor_input]!" - ], - "where": [ - 4710 - ] - } - ], - "server_regions": [ - 4734, - { - "distinct_on": [ - 4748, - "[server_regions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4746, - "[server_regions_order_by!]" - ], - "where": [ - 4738 - ] - } - ], - "server_regions_aggregate": [ - 4735, - { - "distinct_on": [ - 4748, - "[server_regions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4746, - "[server_regions_order_by!]" - ], - "where": [ - 4738 - ] - } - ], - "server_regions_by_pk": [ - 4734, - { - "value": [ - 85, - "String!" - ] - } - ], - "server_regions_stream": [ - 4734, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 4753, - "[server_regions_stream_cursor_input]!" - ], - "where": [ - 4738 - ] - } - ], - "servers": [ - 4761, - { - "distinct_on": [ - 4790, - "[servers_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4787, - "[servers_order_by!]" - ], - "where": [ - 4773 - ] - } - ], - "servers_aggregate": [ - 4762, - { - "distinct_on": [ - 4790, - "[servers_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4787, - "[servers_order_by!]" - ], - "where": [ - 4773 - ] - } - ], - "servers_by_pk": [ - 4761, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "servers_stream": [ - 4761, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 4800, - "[servers_stream_cursor_input]!" - ], - "where": [ - 4773 - ] - } - ], - "settings": [ - 4812, - { - "distinct_on": [ - 4824, - "[settings_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4822, - "[settings_order_by!]" - ], - "where": [ - 4815 - ] - } - ], - "settings_aggregate": [ - 4813, - { - "distinct_on": [ - 4824, - "[settings_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4822, - "[settings_order_by!]" - ], - "where": [ - 4815 - ] - } - ], - "settings_by_pk": [ - 4812, - { - "name": [ - 85, - "String!" - ] - } - ], - "settings_stream": [ - 4812, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 4826, - "[settings_stream_cursor_input]!" - ], - "where": [ - 4815 - ] - } - ], - "steam_account_claims": [ - 4832, - { - "distinct_on": [ - 4850, - "[steam_account_claims_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4848, - "[steam_account_claims_order_by!]" - ], - "where": [ - 4839 - ] - } - ], - "steam_account_claims_aggregate": [ - 4833, - { - "distinct_on": [ - 4850, - "[steam_account_claims_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4848, - "[steam_account_claims_order_by!]" - ], - "where": [ - 4839 - ] - } - ], - "steam_account_claims_by_pk": [ - 4832, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "steam_account_claims_stream": [ - 4832, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 4852, - "[steam_account_claims_stream_cursor_input]!" - ], - "where": [ - 4839 - ] - } - ], - "steam_accounts": [ - 4856, - { - "distinct_on": [ - 4871, - "[steam_accounts_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4869, - "[steam_accounts_order_by!]" - ], - "where": [ - 4860 - ] - } - ], - "steam_accounts_aggregate": [ - 4857, - { - "distinct_on": [ - 4871, - "[steam_accounts_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4869, - "[steam_accounts_order_by!]" - ], - "where": [ - 4860 - ] - } - ], - "steam_accounts_by_pk": [ - 4856, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "steam_accounts_stream": [ - 4856, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 4876, - "[steam_accounts_stream_cursor_input]!" - ], - "where": [ - 4860 - ] - } - ], - "system_alerts": [ - 4884, - { - "distinct_on": [ - 4898, - "[system_alerts_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4896, - "[system_alerts_order_by!]" - ], - "where": [ - 4888 - ] - } - ], - "system_alerts_aggregate": [ - 4885, - { - "distinct_on": [ - 4898, - "[system_alerts_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4896, - "[system_alerts_order_by!]" - ], - "where": [ - 4888 - ] - } - ], - "system_alerts_by_pk": [ - 4884, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "system_alerts_stream": [ - 4884, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 4903, - "[system_alerts_stream_cursor_input]!" - ], - "where": [ - 4888 - ] - } - ], - "team_invites": [ - 4911, - { - "distinct_on": [ - 4932, - "[team_invites_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4930, - "[team_invites_order_by!]" - ], - "where": [ - 4920 - ] - } - ], - "team_invites_aggregate": [ - 4912, - { - "distinct_on": [ - 4932, - "[team_invites_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4930, - "[team_invites_order_by!]" - ], - "where": [ - 4920 - ] - } - ], - "team_invites_by_pk": [ - 4911, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "team_invites_stream": [ - 4911, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 4940, - "[team_invites_stream_cursor_input]!" - ], - "where": [ - 4920 - ] - } - ], - "team_roster": [ - 4952, - { - "distinct_on": [ - 4975, - "[team_roster_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4973, - "[team_roster_order_by!]" - ], - "where": [ - 4963 - ] - } - ], - "team_roster_aggregate": [ - 4953, - { - "distinct_on": [ - 4975, - "[team_roster_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 4973, - "[team_roster_order_by!]" - ], - "where": [ - 4963 - ] - } - ], - "team_roster_by_pk": [ - 4952, - { - "player_steam_id": [ - 312, - "bigint!" - ], - "team_id": [ - 6672, - "uuid!" - ] - } - ], - "team_roster_stream": [ - 4952, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 4985, - "[team_roster_stream_cursor_input]!" - ], - "where": [ - 4963 - ] - } - ], - "team_scrim_alerts": [ - 4997, - { - "distinct_on": [ - 5011, - "[team_scrim_alerts_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5009, - "[team_scrim_alerts_order_by!]" - ], - "where": [ - 5001 - ] - } - ], - "team_scrim_alerts_aggregate": [ - 4998, - { - "distinct_on": [ - 5011, - "[team_scrim_alerts_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5009, - "[team_scrim_alerts_order_by!]" - ], - "where": [ - 5001 - ] - } - ], - "team_scrim_alerts_by_pk": [ - 4997, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "team_scrim_alerts_stream": [ - 4997, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 5016, - "[team_scrim_alerts_stream_cursor_input]!" - ], - "where": [ - 5001 - ] - } - ], - "team_scrim_availability": [ - 5024, - { - "distinct_on": [ - 5044, - "[team_scrim_availability_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5042, - "[team_scrim_availability_order_by!]" - ], - "where": [ - 5033 - ] - } - ], - "team_scrim_availability_aggregate": [ - 5025, - { - "distinct_on": [ - 5044, - "[team_scrim_availability_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5042, - "[team_scrim_availability_order_by!]" - ], - "where": [ - 5033 - ] - } - ], - "team_scrim_availability_by_pk": [ - 5024, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "team_scrim_availability_stream": [ - 5024, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 5048, - "[team_scrim_availability_stream_cursor_input]!" - ], - "where": [ - 5033 - ] - } - ], - "team_scrim_request_proposals": [ - 5052, - { - "distinct_on": [ - 5073, - "[team_scrim_request_proposals_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5071, - "[team_scrim_request_proposals_order_by!]" - ], - "where": [ - 5061 - ] - } - ], - "team_scrim_request_proposals_aggregate": [ - 5053, - { - "distinct_on": [ - 5073, - "[team_scrim_request_proposals_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5071, - "[team_scrim_request_proposals_order_by!]" - ], - "where": [ - 5061 - ] - } - ], - "team_scrim_request_proposals_by_pk": [ - 5052, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "team_scrim_request_proposals_stream": [ - 5052, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 5081, - "[team_scrim_request_proposals_stream_cursor_input]!" - ], - "where": [ - 5061 - ] - } - ], - "team_scrim_requests": [ - 5093, - { - "distinct_on": [ - 5117, - "[team_scrim_requests_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5115, - "[team_scrim_requests_order_by!]" - ], - "where": [ - 5104 - ] - } - ], - "team_scrim_requests_aggregate": [ - 5094, - { - "distinct_on": [ - 5117, - "[team_scrim_requests_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5115, - "[team_scrim_requests_order_by!]" - ], - "where": [ - 5104 - ] - } - ], - "team_scrim_requests_by_pk": [ - 5093, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "team_scrim_requests_stream": [ - 5093, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 5127, - "[team_scrim_requests_stream_cursor_input]!" - ], - "where": [ - 5104 - ] - } - ], - "team_scrim_settings": [ - 5139, - { - "distinct_on": [ - 5154, - "[team_scrim_settings_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5152, - "[team_scrim_settings_order_by!]" - ], - "where": [ - 5143 - ] - } - ], - "team_scrim_settings_aggregate": [ - 5140, - { - "distinct_on": [ - 5154, - "[team_scrim_settings_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5152, - "[team_scrim_settings_order_by!]" - ], - "where": [ - 5143 - ] - } - ], - "team_scrim_settings_by_pk": [ - 5139, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "team_scrim_settings_stream": [ - 5139, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 5159, - "[team_scrim_settings_stream_cursor_input]!" - ], - "where": [ - 5143 - ] - } - ], - "team_suggestions": [ - 5167, - { - "distinct_on": [ - 5181, - "[team_suggestions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5179, - "[team_suggestions_order_by!]" - ], - "where": [ - 5171 - ] - } - ], - "team_suggestions_aggregate": [ - 5168, - { - "distinct_on": [ - 5181, - "[team_suggestions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5179, - "[team_suggestions_order_by!]" - ], - "where": [ - 5171 - ] - } - ], - "team_suggestions_by_pk": [ - 5167, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "team_suggestions_stream": [ - 5167, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 5186, - "[team_suggestions_stream_cursor_input]!" - ], - "where": [ - 5171 - ] - } - ], - "teams": [ - 5194, - { - "distinct_on": [ - 5218, - "[teams_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5216, - "[teams_order_by!]" - ], - "where": [ - 5205 - ] - } - ], - "teams_aggregate": [ - 5195, - { - "distinct_on": [ - 5218, - "[teams_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5216, - "[teams_order_by!]" - ], - "where": [ - 5205 - ] - } - ], - "teams_by_pk": [ - 5194, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "teams_stream": [ - 5194, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 5228, - "[teams_stream_cursor_input]!" - ], - "where": [ - 5205 - ] - } - ], - "tournament_awards": [ - 5245, - { - "distinct_on": [ - 5267, - "[tournament_awards_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5265, - "[tournament_awards_order_by!]" - ], - "where": [ - 5254 - ] - } - ], - "tournament_awards_aggregate": [ - 5246, - { - "distinct_on": [ - 5267, - "[tournament_awards_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5265, - "[tournament_awards_order_by!]" - ], - "where": [ - 5254 - ] - } - ], - "tournament_awards_by_pk": [ - 5245, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "tournament_awards_stream": [ - 5245, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 5275, - "[tournament_awards_stream_cursor_input]!" - ], - "where": [ - 5254 - ] - } - ], - "tournament_brackets": [ - 5287, - { - "distinct_on": [ - 5311, - "[tournament_brackets_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5309, - "[tournament_brackets_order_by!]" - ], - "where": [ - 5298 - ] - } - ], - "tournament_brackets_aggregate": [ - 5288, - { - "distinct_on": [ - 5311, - "[tournament_brackets_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5309, - "[tournament_brackets_order_by!]" - ], - "where": [ - 5298 - ] - } - ], - "tournament_brackets_by_pk": [ - 5287, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "tournament_brackets_stream": [ - 5287, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 5321, - "[tournament_brackets_stream_cursor_input]!" - ], - "where": [ - 5298 - ] - } - ], - "tournament_categories": [ - 5333, - { - "distinct_on": [ - 5351, - "[tournament_categories_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5349, - "[tournament_categories_order_by!]" - ], - "where": [ - 5340 - ] - } - ], - "tournament_categories_aggregate": [ - 5334, - { - "distinct_on": [ - 5351, - "[tournament_categories_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5349, - "[tournament_categories_order_by!]" - ], - "where": [ - 5340 - ] - } - ], - "tournament_categories_by_pk": [ - 5333, - { - "category": [ - 1554, - "e_tournament_categories_enum!" - ], - "tournament_id": [ - 6672, - "uuid!" - ] - } - ], - "tournament_categories_stream": [ - 5333, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 5353, - "[tournament_categories_stream_cursor_input]!" - ], - "where": [ - 5340 - ] - } - ], - "tournament_free_agents": [ - 5357, - { - "distinct_on": [ - 5378, - "[tournament_free_agents_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5376, - "[tournament_free_agents_order_by!]" - ], - "where": [ - 5366 - ] - } - ], - "tournament_free_agents_aggregate": [ - 5358, - { - "distinct_on": [ - 5378, - "[tournament_free_agents_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5376, - "[tournament_free_agents_order_by!]" - ], - "where": [ - 5366 - ] - } - ], - "tournament_free_agents_by_pk": [ - 5357, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "tournament_free_agents_stream": [ - 5357, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 5386, - "[tournament_free_agents_stream_cursor_input]!" - ], - "where": [ - 5366 - ] - } - ], - "tournament_invite_code_uses": [ - 5398, - { - "distinct_on": [ - 5419, - "[tournament_invite_code_uses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5417, - "[tournament_invite_code_uses_order_by!]" - ], - "where": [ - 5407 - ] - } - ], - "tournament_invite_code_uses_aggregate": [ - 5399, - { - "distinct_on": [ - 5419, - "[tournament_invite_code_uses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5417, - "[tournament_invite_code_uses_order_by!]" - ], - "where": [ - 5407 - ] - } - ], - "tournament_invite_code_uses_by_pk": [ - 5398, - { - "invite_code_id": [ - 6672, - "uuid!" - ], - "player_steam_id": [ - 312, - "bigint!" - ] - } - ], - "tournament_invite_code_uses_stream": [ - 5398, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 5427, - "[tournament_invite_code_uses_stream_cursor_input]!" - ], - "where": [ - 5407 - ] - } - ], - "tournament_invite_codes": [ - 5439, - { - "distinct_on": [ - 5454, - "[tournament_invite_codes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5452, - "[tournament_invite_codes_order_by!]" - ], - "where": [ - 5443 - ] - } - ], - "tournament_invite_codes_aggregate": [ - 5440, - { - "distinct_on": [ - 5454, - "[tournament_invite_codes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5452, - "[tournament_invite_codes_order_by!]" - ], - "where": [ - 5443 - ] - } - ], - "tournament_invite_codes_by_pk": [ - 5439, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "tournament_invite_codes_stream": [ - 5439, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 5459, - "[tournament_invite_codes_stream_cursor_input]!" - ], - "where": [ - 5443 - ] - } - ], - "tournament_invites": [ - 5467, - { - "distinct_on": [ - 5481, - "[tournament_invites_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5479, - "[tournament_invites_order_by!]" - ], - "where": [ - 5471 - ] - } - ], - "tournament_invites_aggregate": [ - 5468, - { - "distinct_on": [ - 5481, - "[tournament_invites_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5479, - "[tournament_invites_order_by!]" - ], - "where": [ - 5471 - ] - } - ], - "tournament_invites_by_pk": [ - 5467, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "tournament_invites_stream": [ - 5467, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 5486, - "[tournament_invites_stream_cursor_input]!" - ], - "where": [ - 5471 - ] - } - ], - "tournament_leaderboard_entries": [ - 5494, - { - "distinct_on": [ - 5505, - "[tournament_leaderboard_entries_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5504, - "[tournament_leaderboard_entries_order_by!]" - ], - "where": [ - 5498 - ] - } - ], - "tournament_leaderboard_entries_aggregate": [ - 5495, - { - "distinct_on": [ - 5505, - "[tournament_leaderboard_entries_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5504, - "[tournament_leaderboard_entries_order_by!]" - ], - "where": [ - 5498 - ] - } - ], - "tournament_leaderboard_entries_stream": [ - 5494, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 5510, - "[tournament_leaderboard_entries_stream_cursor_input]!" - ], - "where": [ - 5498 - ] - } - ], - "tournament_no_shows": [ - 5517, - { - "distinct_on": [ - 5531, - "[tournament_no_shows_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5529, - "[tournament_no_shows_order_by!]" - ], - "where": [ - 5521 - ] - } - ], - "tournament_no_shows_aggregate": [ - 5518, - { - "distinct_on": [ - 5531, - "[tournament_no_shows_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5529, - "[tournament_no_shows_order_by!]" - ], - "where": [ - 5521 - ] - } - ], - "tournament_no_shows_by_pk": [ - 5517, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "tournament_no_shows_stream": [ - 5517, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 5536, - "[tournament_no_shows_stream_cursor_input]!" - ], - "where": [ - 5521 - ] - } - ], - "tournament_organizer_teams": [ - 5544, - { - "distinct_on": [ - 5562, - "[tournament_organizer_teams_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5560, - "[tournament_organizer_teams_order_by!]" - ], - "where": [ - 5551 - ] - } - ], - "tournament_organizer_teams_aggregate": [ - 5545, - { - "distinct_on": [ - 5562, - "[tournament_organizer_teams_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5560, - "[tournament_organizer_teams_order_by!]" - ], - "where": [ - 5551 - ] - } - ], - "tournament_organizer_teams_by_pk": [ - 5544, - { - "team_id": [ - 6672, - "uuid!" - ], - "tournament_id": [ - 6672, - "uuid!" - ] - } - ], - "tournament_organizer_teams_stream": [ - 5544, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 5564, - "[tournament_organizer_teams_stream_cursor_input]!" - ], - "where": [ - 5551 - ] - } - ], - "tournament_organizers": [ - 5568, - { - "distinct_on": [ - 5589, - "[tournament_organizers_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5587, - "[tournament_organizers_order_by!]" - ], - "where": [ - 5577 - ] - } - ], - "tournament_organizers_aggregate": [ - 5569, - { - "distinct_on": [ - 5589, - "[tournament_organizers_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5587, - "[tournament_organizers_order_by!]" - ], - "where": [ - 5577 - ] - } - ], - "tournament_organizers_by_pk": [ - 5568, - { - "steam_id": [ - 312, - "bigint!" - ], - "tournament_id": [ - 6672, - "uuid!" - ] - } - ], - "tournament_organizers_stream": [ - 5568, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 5597, - "[tournament_organizers_stream_cursor_input]!" - ], - "where": [ - 5577 - ] - } - ], - "tournament_prizes": [ - 5609, - { - "distinct_on": [ - 5630, - "[tournament_prizes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5628, - "[tournament_prizes_order_by!]" - ], - "where": [ - 5618 - ] - } - ], - "tournament_prizes_aggregate": [ - 5610, - { - "distinct_on": [ - 5630, - "[tournament_prizes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5628, - "[tournament_prizes_order_by!]" - ], - "where": [ - 5618 - ] - } - ], - "tournament_prizes_by_pk": [ - 5609, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "tournament_prizes_stream": [ - 5609, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 5638, - "[tournament_prizes_stream_cursor_input]!" - ], - "where": [ - 5618 - ] - } - ], - "tournament_registration_unlocks": [ - 5650, - { - "distinct_on": [ - 5663, - "[tournament_registration_unlocks_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5662, - "[tournament_registration_unlocks_order_by!]" - ], - "where": [ - 5654 - ] - } - ], - "tournament_registration_unlocks_aggregate": [ - 5651, - { - "distinct_on": [ - 5663, - "[tournament_registration_unlocks_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5662, - "[tournament_registration_unlocks_order_by!]" - ], - "where": [ - 5654 - ] - } - ], - "tournament_registration_unlocks_stream": [ - 5650, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 5668, - "[tournament_registration_unlocks_stream_cursor_input]!" - ], - "where": [ - 5654 - ] - } - ], - "tournament_stage_windows": [ - 5676, - { - "distinct_on": [ - 5697, - "[tournament_stage_windows_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5695, - "[tournament_stage_windows_order_by!]" - ], - "where": [ - 5685 - ] - } - ], - "tournament_stage_windows_aggregate": [ - 5677, - { - "distinct_on": [ - 5697, - "[tournament_stage_windows_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5695, - "[tournament_stage_windows_order_by!]" - ], - "where": [ - 5685 - ] - } - ], - "tournament_stage_windows_by_pk": [ - 5676, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "tournament_stage_windows_stream": [ - 5676, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 5705, - "[tournament_stage_windows_stream_cursor_input]!" - ], - "where": [ - 5685 - ] - } - ], - "tournament_stages": [ - 5717, - { - "distinct_on": [ - 5746, - "[tournament_stages_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5743, - "[tournament_stages_order_by!]" - ], - "where": [ - 5729 - ] - } - ], - "tournament_stages_aggregate": [ - 5718, - { - "distinct_on": [ - 5746, - "[tournament_stages_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5743, - "[tournament_stages_order_by!]" - ], - "where": [ - 5729 - ] - } - ], - "tournament_stages_by_pk": [ - 5717, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "tournament_stages_stream": [ - 5717, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 5756, - "[tournament_stages_stream_cursor_input]!" - ], - "where": [ - 5729 - ] - } - ], - "tournament_team_invites": [ - 5768, - { - "distinct_on": [ - 5789, - "[tournament_team_invites_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5787, - "[tournament_team_invites_order_by!]" - ], - "where": [ - 5777 - ] - } - ], - "tournament_team_invites_aggregate": [ - 5769, - { - "distinct_on": [ - 5789, - "[tournament_team_invites_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5787, - "[tournament_team_invites_order_by!]" - ], - "where": [ - 5777 - ] - } - ], - "tournament_team_invites_by_pk": [ - 5768, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "tournament_team_invites_stream": [ - 5768, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 5797, - "[tournament_team_invites_stream_cursor_input]!" - ], - "where": [ - 5777 - ] - } - ], - "tournament_team_roster": [ - 5809, - { - "distinct_on": [ - 5830, - "[tournament_team_roster_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5828, - "[tournament_team_roster_order_by!]" - ], - "where": [ - 5818 - ] - } - ], - "tournament_team_roster_aggregate": [ - 5810, - { - "distinct_on": [ - 5830, - "[tournament_team_roster_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5828, - "[tournament_team_roster_order_by!]" - ], - "where": [ - 5818 - ] - } - ], - "tournament_team_roster_by_pk": [ - 5809, - { - "player_steam_id": [ - 312, - "bigint!" - ], - "tournament_id": [ - 6672, - "uuid!" - ] - } - ], - "tournament_team_roster_stream": [ - 5809, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 5838, - "[tournament_team_roster_stream_cursor_input]!" - ], - "where": [ - 5818 - ] - } - ], - "tournament_teams": [ - 5850, - { - "distinct_on": [ - 5874, - "[tournament_teams_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5872, - "[tournament_teams_order_by!]" - ], - "where": [ - 5861 - ] - } - ], - "tournament_teams_aggregate": [ - 5851, - { - "distinct_on": [ - 5874, - "[tournament_teams_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5872, - "[tournament_teams_order_by!]" - ], - "where": [ - 5861 - ] - } - ], - "tournament_teams_by_pk": [ - 5850, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "tournament_teams_stream": [ - 5850, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 5884, - "[tournament_teams_stream_cursor_input]!" - ], - "where": [ - 5861 - ] - } - ], - "tournaments": [ - 5896, - { - "distinct_on": [ - 5930, - "[tournaments_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5928, - "[tournaments_order_by!]" - ], - "where": [ - 5917 - ] - } - ], - "tournaments_aggregate": [ - 5897, - { - "distinct_on": [ - 5930, - "[tournaments_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5928, - "[tournaments_order_by!]" - ], - "where": [ - 5917 - ] - } - ], - "tournaments_by_pk": [ - 5896, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "tournaments_stream": [ - 5896, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 5948, - "[tournaments_stream_cursor_input]!" - ], - "where": [ - 5917 - ] - } - ], - "utility_collection_items": [ - 5960, - { - "distinct_on": [ - 5981, - "[utility_collection_items_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5979, - "[utility_collection_items_order_by!]" - ], - "where": [ - 5969 - ] - } - ], - "utility_collection_items_aggregate": [ - 5961, - { - "distinct_on": [ - 5981, - "[utility_collection_items_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 5979, - "[utility_collection_items_order_by!]" - ], - "where": [ - 5969 - ] - } - ], - "utility_collection_items_by_pk": [ - 5960, - { - "collection_id": [ - 6672, - "uuid!" - ], - "utility_lineup_id": [ - 6672, - "uuid!" - ] - } - ], - "utility_collection_items_stream": [ - 5960, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 5989, - "[utility_collection_items_stream_cursor_input]!" - ], - "where": [ - 5969 - ] - } - ], - "utility_collections": [ - 6001, - { - "distinct_on": [ - 6016, - "[utility_collections_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6014, - "[utility_collections_order_by!]" - ], - "where": [ - 6005 - ] - } - ], - "utility_collections_aggregate": [ - 6002, - { - "distinct_on": [ - 6016, - "[utility_collections_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6014, - "[utility_collections_order_by!]" - ], - "where": [ - 6005 - ] - } - ], - "utility_collections_by_pk": [ - 6001, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "utility_collections_stream": [ - 6001, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 6021, - "[utility_collections_stream_cursor_input]!" - ], - "where": [ - 6005 - ] - } - ], - "utility_demo_mines": [ - 6029, - { - "distinct_on": [ - 6043, - "[utility_demo_mines_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6041, - "[utility_demo_mines_order_by!]" - ], - "where": [ - 6033 - ] - } - ], - "utility_demo_mines_aggregate": [ - 6030, - { - "distinct_on": [ - 6043, - "[utility_demo_mines_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6041, - "[utility_demo_mines_order_by!]" - ], - "where": [ - 6033 - ] - } - ], - "utility_demo_mines_by_pk": [ - 6029, - { - "match_map_demo_id": [ - 6672, - "uuid!" - ] - } - ], - "utility_demo_mines_stream": [ - 6029, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 6048, - "[utility_demo_mines_stream_cursor_input]!" - ], - "where": [ - 6033 - ] - } - ], - "utility_demo_throws": [ - 6056, - { - "distinct_on": [ - 6070, - "[utility_demo_throws_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6068, - "[utility_demo_throws_order_by!]" - ], - "where": [ - 6060 - ] - } - ], - "utility_demo_throws_aggregate": [ - 6057, - { - "distinct_on": [ - 6070, - "[utility_demo_throws_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6068, - "[utility_demo_throws_order_by!]" - ], - "where": [ - 6060 - ] - } - ], - "utility_demo_throws_by_pk": [ - 6056, - { - "grenade_id": [ - 41, - "Int!" - ], - "match_map_demo_id": [ - 6672, - "uuid!" - ] - } - ], - "utility_demo_throws_stream": [ - 6056, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 6075, - "[utility_demo_throws_stream_cursor_input]!" - ], - "where": [ - 6060 - ] - } - ], - "utility_drift_results": [ - 6083, - { - "distinct_on": [ - 6114, - "[utility_drift_results_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6112, - "[utility_drift_results_order_by!]" - ], - "where": [ - 6102 - ] - } - ], - "utility_drift_results_aggregate": [ - 6084, - { - "distinct_on": [ - 6114, - "[utility_drift_results_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6112, - "[utility_drift_results_order_by!]" - ], - "where": [ - 6102 - ] - } - ], - "utility_drift_results_by_pk": [ - 6083, - { - "utility_drift_scan_id": [ - 6672, - "uuid!" - ], - "utility_lineup_id": [ - 6672, - "uuid!" - ] - } - ], - "utility_drift_results_stream": [ - 6083, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 6130, - "[utility_drift_results_stream_cursor_input]!" - ], - "where": [ - 6102 - ] - } - ], - "utility_drift_scans": [ - 6142, - { - "distinct_on": [ - 6157, - "[utility_drift_scans_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6155, - "[utility_drift_scans_order_by!]" - ], - "where": [ - 6146 - ] - } - ], - "utility_drift_scans_aggregate": [ - 6143, - { - "distinct_on": [ - 6157, - "[utility_drift_scans_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6155, - "[utility_drift_scans_order_by!]" - ], - "where": [ - 6146 - ] - } - ], - "utility_drift_scans_by_pk": [ - 6142, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "utility_drift_scans_stream": [ - 6142, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 6162, - "[utility_drift_scans_stream_cursor_input]!" - ], - "where": [ - 6146 - ] - } - ], - "utility_lineup_favorites": [ - 6170, - { - "distinct_on": [ - 6191, - "[utility_lineup_favorites_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6189, - "[utility_lineup_favorites_order_by!]" - ], - "where": [ - 6179 - ] - } - ], - "utility_lineup_favorites_aggregate": [ - 6171, - { - "distinct_on": [ - 6191, - "[utility_lineup_favorites_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6189, - "[utility_lineup_favorites_order_by!]" - ], - "where": [ - 6179 - ] - } - ], - "utility_lineup_favorites_by_pk": [ - 6170, - { - "steam_id": [ - 312, - "bigint!" - ], - "utility_lineup_id": [ - 6672, - "uuid!" - ] - } - ], - "utility_lineup_favorites_stream": [ - 6170, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 6199, - "[utility_lineup_favorites_stream_cursor_input]!" - ], - "where": [ - 6179 - ] - } - ], - "utility_lineup_progress": [ - 6211, - { - "distinct_on": [ - 6242, - "[utility_lineup_progress_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6240, - "[utility_lineup_progress_order_by!]" - ], - "where": [ - 6230 - ] - } - ], - "utility_lineup_progress_aggregate": [ - 6212, - { - "distinct_on": [ - 6242, - "[utility_lineup_progress_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6240, - "[utility_lineup_progress_order_by!]" - ], - "where": [ - 6230 - ] - } - ], - "utility_lineup_progress_by_pk": [ - 6211, - { - "steam_id": [ - 312, - "bigint!" - ], - "utility_lineup_id": [ - 6672, - "uuid!" - ] - } - ], - "utility_lineup_progress_stream": [ - 6211, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 6258, - "[utility_lineup_progress_stream_cursor_input]!" - ], - "where": [ - 6230 - ] - } - ], - "utility_lineup_renders": [ - 6270, - { - "distinct_on": [ - 6298, - "[utility_lineup_renders_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6295, - "[utility_lineup_renders_order_by!]" - ], - "where": [ - 6282 - ] - } - ], - "utility_lineup_renders_aggregate": [ - 6271, - { - "distinct_on": [ - 6298, - "[utility_lineup_renders_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6295, - "[utility_lineup_renders_order_by!]" - ], - "where": [ - 6282 - ] - } - ], - "utility_lineup_renders_by_pk": [ - 6270, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "utility_lineup_renders_stream": [ - 6270, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 6308, - "[utility_lineup_renders_stream_cursor_input]!" - ], - "where": [ - 6282 - ] - } - ], - "utility_lineup_repairs": [ - 6320, - { - "distinct_on": [ - 6351, - "[utility_lineup_repairs_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6349, - "[utility_lineup_repairs_order_by!]" - ], - "where": [ - 6339 - ] - } - ], - "utility_lineup_repairs_aggregate": [ - 6321, - { - "distinct_on": [ - 6351, - "[utility_lineup_repairs_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6349, - "[utility_lineup_repairs_order_by!]" - ], - "where": [ - 6339 - ] - } - ], - "utility_lineup_repairs_by_pk": [ - 6320, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "utility_lineup_repairs_stream": [ - 6320, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 6367, - "[utility_lineup_repairs_stream_cursor_input]!" - ], - "where": [ - 6339 - ] - } - ], - "utility_lineup_votes": [ - 6379, - { - "distinct_on": [ - 6400, - "[utility_lineup_votes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6398, - "[utility_lineup_votes_order_by!]" - ], - "where": [ - 6388 - ] - } - ], - "utility_lineup_votes_aggregate": [ - 6380, - { - "distinct_on": [ - 6400, - "[utility_lineup_votes_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6398, - "[utility_lineup_votes_order_by!]" - ], - "where": [ - 6388 - ] - } - ], - "utility_lineup_votes_by_pk": [ - 6379, - { - "steam_id": [ - 312, - "bigint!" - ], - "utility_lineup_id": [ - 6672, - "uuid!" - ] - } - ], - "utility_lineup_votes_stream": [ - 6379, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 6408, - "[utility_lineup_votes_stream_cursor_input]!" - ], - "where": [ - 6388 - ] - } - ], - "utility_lineups": [ - 6420, - { - "distinct_on": [ - 6459, - "[utility_lineups_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6456, - "[utility_lineups_order_by!]" - ], - "where": [ - 6442 - ] - } - ], - "utility_lineups_aggregate": [ - 6421, - { - "distinct_on": [ - 6459, - "[utility_lineups_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6456, - "[utility_lineups_order_by!]" - ], - "where": [ - 6442 - ] - } - ], - "utility_lineups_by_pk": [ - 6420, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "utility_lineups_stream": [ - 6420, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 6477, - "[utility_lineups_stream_cursor_input]!" - ], - "where": [ - 6442 - ] - } - ], - "utility_meta_lineups": [ - 6489, - { - "distinct_on": [ - 6503, - "[utility_meta_lineups_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6501, - "[utility_meta_lineups_order_by!]" - ], - "where": [ - 6493 - ] - } - ], - "utility_meta_lineups_aggregate": [ - 6490, - { - "distinct_on": [ - 6503, - "[utility_meta_lineups_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6501, - "[utility_meta_lineups_order_by!]" - ], - "where": [ - 6493 - ] - } - ], - "utility_meta_lineups_by_pk": [ - 6489, - { - "lineup_bucket": [ - 85, - "String!" - ] - } - ], - "utility_meta_lineups_stream": [ - 6489, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 6508, - "[utility_meta_lineups_stream_cursor_input]!" - ], - "where": [ - 6493 - ] - } - ], - "utility_playbook_steps": [ - 6516, - { - "distinct_on": [ - 6537, - "[utility_playbook_steps_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6535, - "[utility_playbook_steps_order_by!]" - ], - "where": [ - 6525 - ] - } - ], - "utility_playbook_steps_aggregate": [ - 6517, - { - "distinct_on": [ - 6537, - "[utility_playbook_steps_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6535, - "[utility_playbook_steps_order_by!]" - ], - "where": [ - 6525 - ] - } - ], - "utility_playbook_steps_by_pk": [ - 6516, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "utility_playbook_steps_stream": [ - 6516, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 6545, - "[utility_playbook_steps_stream_cursor_input]!" - ], - "where": [ - 6525 - ] - } - ], - "utility_playbooks": [ - 6557, - { - "distinct_on": [ - 6572, - "[utility_playbooks_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6570, - "[utility_playbooks_order_by!]" - ], - "where": [ - 6561 - ] - } - ], - "utility_playbooks_aggregate": [ - 6558, - { - "distinct_on": [ - 6572, - "[utility_playbooks_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6570, - "[utility_playbooks_order_by!]" - ], - "where": [ - 6561 - ] - } - ], - "utility_playbooks_by_pk": [ - 6557, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "utility_playbooks_stream": [ - 6557, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 6577, - "[utility_playbooks_stream_cursor_input]!" - ], - "where": [ - 6561 - ] - } - ], - "utility_practice_invites": [ - 6585, - { - "distinct_on": [ - 6606, - "[utility_practice_invites_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6604, - "[utility_practice_invites_order_by!]" - ], - "where": [ - 6594 - ] - } - ], - "utility_practice_invites_aggregate": [ - 6586, - { - "distinct_on": [ - 6606, - "[utility_practice_invites_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6604, - "[utility_practice_invites_order_by!]" - ], - "where": [ - 6594 - ] - } - ], - "utility_practice_invites_by_pk": [ - 6585, - { - "steam_id": [ - 312, - "bigint!" - ], - "utility_practice_session_id": [ - 6672, - "uuid!" - ] - } - ], - "utility_practice_invites_stream": [ - 6585, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 6614, - "[utility_practice_invites_stream_cursor_input]!" - ], - "where": [ - 6594 - ] - } - ], - "utility_practice_sessions": [ - 6626, - { - "distinct_on": [ - 6650, - "[utility_practice_sessions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6648, - "[utility_practice_sessions_order_by!]" - ], - "where": [ - 6637 - ] - } - ], - "utility_practice_sessions_aggregate": [ - 6627, - { - "distinct_on": [ - 6650, - "[utility_practice_sessions_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6648, - "[utility_practice_sessions_order_by!]" - ], - "where": [ - 6637 - ] - } - ], - "utility_practice_sessions_by_pk": [ - 6626, - { - "id": [ - 6672, - "uuid!" - ] - } - ], - "utility_practice_sessions_stream": [ - 6626, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 6660, - "[utility_practice_sessions_stream_cursor_input]!" - ], - "where": [ - 6637 - ] - } - ], - "v_event_player_stats": [ - 6675, - { - "distinct_on": [ - 6701, - "[v_event_player_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6700, - "[v_event_player_stats_order_by!]" - ], - "where": [ - 6694 - ] - } - ], - "v_event_player_stats_aggregate": [ - 6676, - { - "distinct_on": [ - 6701, - "[v_event_player_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6700, - "[v_event_player_stats_order_by!]" - ], - "where": [ - 6694 - ] - } - ], - "v_event_player_stats_stream": [ - 6675, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 6716, - "[v_event_player_stats_stream_cursor_input]!" - ], - "where": [ - 6694 - ] - } - ], - "v_gpu_pool_status": [ - 6726, - { - "distinct_on": [ - 6734, - "[v_gpu_pool_status_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6733, - "[v_gpu_pool_status_order_by!]" - ], - "where": [ - 6730 - ] - } - ], - "v_gpu_pool_status_aggregate": [ - 6727, - { - "distinct_on": [ - 6734, - "[v_gpu_pool_status_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6733, - "[v_gpu_pool_status_order_by!]" - ], - "where": [ - 6730 - ] - } - ], - "v_gpu_pool_status_stream": [ - 6726, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 6738, - "[v_gpu_pool_status_stream_cursor_input]!" - ], - "where": [ - 6730 - ] - } - ], - "v_league_division_standings": [ - 6744, - { - "distinct_on": [ - 6760, - "[v_league_division_standings_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6759, - "[v_league_division_standings_order_by!]" - ], - "where": [ - 6753 - ] - } - ], - "v_league_division_standings_aggregate": [ - 6745, - { - "distinct_on": [ - 6760, - "[v_league_division_standings_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6759, - "[v_league_division_standings_order_by!]" - ], - "where": [ - 6753 - ] - } - ], - "v_league_division_standings_stream": [ - 6744, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 6767, - "[v_league_division_standings_stream_cursor_input]!" - ], - "where": [ - 6753 - ] - } - ], - "v_league_season_player_stats": [ - 6777, - { - "distinct_on": [ - 6803, - "[v_league_season_player_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6802, - "[v_league_season_player_stats_order_by!]" - ], - "where": [ - 6796 - ] - } - ], - "v_league_season_player_stats_aggregate": [ - 6778, - { - "distinct_on": [ - 6803, - "[v_league_season_player_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6802, - "[v_league_season_player_stats_order_by!]" - ], - "where": [ - 6796 - ] - } - ], - "v_league_season_player_stats_stream": [ - 6777, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 6818, - "[v_league_season_player_stats_stream_cursor_input]!" - ], - "where": [ - 6796 - ] - } - ], - "v_match_captains": [ - 6828, - { - "distinct_on": [ - 6840, - "[v_match_captains_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6839, - "[v_match_captains_order_by!]" - ], - "where": [ - 6832 - ] - } - ], - "v_match_captains_aggregate": [ - 6829, - { - "distinct_on": [ - 6840, - "[v_match_captains_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6839, - "[v_match_captains_order_by!]" - ], - "where": [ - 6832 - ] - } - ], - "v_match_captains_stream": [ - 6828, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 6845, - "[v_match_captains_stream_cursor_input]!" - ], - "where": [ - 6832 - ] - } - ], - "v_match_clutches": [ - 6852, - { - "distinct_on": [ - 6868, - "[v_match_clutches_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6867, - "[v_match_clutches_order_by!]" - ], - "where": [ - 6861 - ] - } - ], - "v_match_clutches_aggregate": [ - 6853, - { - "distinct_on": [ - 6868, - "[v_match_clutches_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6867, - "[v_match_clutches_order_by!]" - ], - "where": [ - 6861 - ] - } - ], - "v_match_clutches_stream": [ - 6852, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 6875, - "[v_match_clutches_stream_cursor_input]!" - ], - "where": [ - 6861 - ] - } - ], - "v_match_kill_pairs": [ - 6885, - { - "distinct_on": [ - 6893, - "[v_match_kill_pairs_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6892, - "[v_match_kill_pairs_order_by!]" - ], - "where": [ - 6889 - ] - } - ], - "v_match_kill_pairs_aggregate": [ - 6886, - { - "distinct_on": [ - 6893, - "[v_match_kill_pairs_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6892, - "[v_match_kill_pairs_order_by!]" - ], - "where": [ - 6889 - ] - } - ], - "v_match_kill_pairs_stream": [ - 6885, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 6897, - "[v_match_kill_pairs_stream_cursor_input]!" - ], - "where": [ - 6889 - ] - } - ], - "v_match_lineup_buy_types": [ - 6903, - { - "distinct_on": [ - 6911, - "[v_match_lineup_buy_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6910, - "[v_match_lineup_buy_types_order_by!]" - ], - "where": [ - 6907 - ] - } - ], - "v_match_lineup_buy_types_aggregate": [ - 6904, - { - "distinct_on": [ - 6911, - "[v_match_lineup_buy_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6910, - "[v_match_lineup_buy_types_order_by!]" - ], - "where": [ - 6907 - ] - } - ], - "v_match_lineup_buy_types_stream": [ - 6903, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 6915, - "[v_match_lineup_buy_types_stream_cursor_input]!" - ], - "where": [ - 6907 - ] - } - ], - "v_match_lineup_map_stats": [ - 6921, - { - "distinct_on": [ - 6929, - "[v_match_lineup_map_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6928, - "[v_match_lineup_map_stats_order_by!]" - ], - "where": [ - 6925 - ] - } - ], - "v_match_lineup_map_stats_aggregate": [ - 6922, - { - "distinct_on": [ - 6929, - "[v_match_lineup_map_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6928, - "[v_match_lineup_map_stats_order_by!]" - ], - "where": [ - 6925 - ] - } - ], - "v_match_lineup_map_stats_stream": [ - 6921, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 6933, - "[v_match_lineup_map_stats_stream_cursor_input]!" - ], - "where": [ - 6925 - ] - } - ], - "v_match_map_backup_rounds": [ - 6939, - { - "distinct_on": [ - 6950, - "[v_match_map_backup_rounds_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6949, - "[v_match_map_backup_rounds_order_by!]" - ], - "where": [ - 6943 - ] - } - ], - "v_match_map_backup_rounds_aggregate": [ - 6940, - { - "distinct_on": [ - 6950, - "[v_match_map_backup_rounds_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6949, - "[v_match_map_backup_rounds_order_by!]" - ], - "where": [ - 6943 - ] - } - ], - "v_match_map_backup_rounds_stream": [ - 6939, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 6955, - "[v_match_map_backup_rounds_stream_cursor_input]!" - ], - "where": [ - 6943 - ] - } - ], - "v_match_player_buy_types": [ - 6962, - { - "distinct_on": [ - 6970, - "[v_match_player_buy_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6969, - "[v_match_player_buy_types_order_by!]" - ], - "where": [ - 6966 - ] - } - ], - "v_match_player_buy_types_aggregate": [ - 6963, - { - "distinct_on": [ - 6970, - "[v_match_player_buy_types_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6969, - "[v_match_player_buy_types_order_by!]" - ], - "where": [ - 6966 - ] - } - ], - "v_match_player_buy_types_stream": [ - 6962, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 6974, - "[v_match_player_buy_types_stream_cursor_input]!" - ], - "where": [ - 6966 - ] - } - ], - "v_match_player_opening_duels": [ - 6980, - { - "distinct_on": [ - 6996, - "[v_match_player_opening_duels_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6995, - "[v_match_player_opening_duels_order_by!]" - ], - "where": [ - 6989 - ] - } - ], - "v_match_player_opening_duels_aggregate": [ - 6981, - { - "distinct_on": [ - 6996, - "[v_match_player_opening_duels_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 6995, - "[v_match_player_opening_duels_order_by!]" - ], - "where": [ - 6989 - ] - } - ], - "v_match_player_opening_duels_stream": [ - 6980, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 7003, - "[v_match_player_opening_duels_stream_cursor_input]!" - ], - "where": [ - 6989 - ] - } - ], - "v_player_arch_nemesis": [ - 7013, - { - "distinct_on": [ - 7021, - "[v_player_arch_nemesis_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7020, - "[v_player_arch_nemesis_order_by!]" - ], - "where": [ - 7017 - ] - } - ], - "v_player_arch_nemesis_aggregate": [ - 7014, - { - "distinct_on": [ - 7021, - "[v_player_arch_nemesis_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7020, - "[v_player_arch_nemesis_order_by!]" - ], - "where": [ - 7017 - ] - } - ], - "v_player_arch_nemesis_stream": [ - 7013, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 7025, - "[v_player_arch_nemesis_stream_cursor_input]!" - ], - "where": [ - 7017 - ] - } - ], - "v_player_damage": [ - 7031, - { - "distinct_on": [ - 7039, - "[v_player_damage_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7038, - "[v_player_damage_order_by!]" - ], - "where": [ - 7035 - ] - } - ], - "v_player_damage_aggregate": [ - 7032, - { - "distinct_on": [ - 7039, - "[v_player_damage_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7038, - "[v_player_damage_order_by!]" - ], - "where": [ - 7035 - ] - } - ], - "v_player_damage_stream": [ - 7031, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 7043, - "[v_player_damage_stream_cursor_input]!" - ], - "where": [ - 7035 - ] - } - ], - "v_player_elo": [ - 7049, - { - "distinct_on": [ - 7075, - "[v_player_elo_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7074, - "[v_player_elo_order_by!]" - ], - "where": [ - 7068 - ] - } - ], - "v_player_elo_aggregate": [ - 7050, - { - "distinct_on": [ - 7075, - "[v_player_elo_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7074, - "[v_player_elo_order_by!]" - ], - "where": [ - 7068 - ] - } - ], - "v_player_elo_stream": [ - 7049, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 7090, - "[v_player_elo_stream_cursor_input]!" - ], - "where": [ - 7068 - ] - } - ], - "v_player_map_losses": [ - 7100, - { - "distinct_on": [ - 7108, - "[v_player_map_losses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7107, - "[v_player_map_losses_order_by!]" - ], - "where": [ - 7104 - ] - } - ], - "v_player_map_losses_aggregate": [ - 7101, - { - "distinct_on": [ - 7108, - "[v_player_map_losses_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7107, - "[v_player_map_losses_order_by!]" - ], - "where": [ - 7104 - ] - } - ], - "v_player_map_losses_stream": [ - 7100, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 7112, - "[v_player_map_losses_stream_cursor_input]!" - ], - "where": [ - 7104 - ] - } - ], - "v_player_map_wins": [ - 7118, - { - "distinct_on": [ - 7126, - "[v_player_map_wins_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7125, - "[v_player_map_wins_order_by!]" - ], - "where": [ - 7122 - ] - } - ], - "v_player_map_wins_aggregate": [ - 7119, - { - "distinct_on": [ - 7126, - "[v_player_map_wins_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7125, - "[v_player_map_wins_order_by!]" - ], - "where": [ - 7122 - ] - } - ], - "v_player_map_wins_stream": [ - 7118, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 7130, - "[v_player_map_wins_stream_cursor_input]!" - ], - "where": [ - 7122 - ] - } - ], - "v_player_match_head_to_head": [ - 7136, - { - "distinct_on": [ - 7144, - "[v_player_match_head_to_head_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7143, - "[v_player_match_head_to_head_order_by!]" - ], - "where": [ - 7140 - ] - } - ], - "v_player_match_head_to_head_aggregate": [ - 7137, - { - "distinct_on": [ - 7144, - "[v_player_match_head_to_head_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7143, - "[v_player_match_head_to_head_order_by!]" - ], - "where": [ - 7140 - ] - } - ], - "v_player_match_head_to_head_stream": [ - 7136, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 7148, - "[v_player_match_head_to_head_stream_cursor_input]!" - ], - "where": [ - 7140 - ] - } - ], - "v_player_match_map_hltv": [ - 7154, - { - "distinct_on": [ - 7172, - "[v_player_match_map_hltv_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7171, - "[v_player_match_map_hltv_order_by!]" - ], - "where": [ - 7163 - ] - } - ], - "v_player_match_map_hltv_aggregate": [ - 7155, - { - "distinct_on": [ - 7172, - "[v_player_match_map_hltv_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7171, - "[v_player_match_map_hltv_order_by!]" - ], - "where": [ - 7163 - ] - } - ], - "v_player_match_map_hltv_stream": [ - 7154, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 7180, - "[v_player_match_map_hltv_stream_cursor_input]!" - ], - "where": [ - 7163 - ] - } - ], - "v_player_match_map_roles": [ - 7191, - { - "distinct_on": [ - 7199, - "[v_player_match_map_roles_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7198, - "[v_player_match_map_roles_order_by!]" - ], - "where": [ - 7195 - ] - } - ], - "v_player_match_map_roles_aggregate": [ - 7192, - { - "distinct_on": [ - 7199, - "[v_player_match_map_roles_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7198, - "[v_player_match_map_roles_order_by!]" - ], - "where": [ - 7195 - ] - } - ], - "v_player_match_map_roles_stream": [ - 7191, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 7203, - "[v_player_match_map_roles_stream_cursor_input]!" - ], - "where": [ - 7195 - ] - } - ], - "v_player_match_performance": [ - 7209, - { - "distinct_on": [ - 7217, - "[v_player_match_performance_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7216, - "[v_player_match_performance_order_by!]" - ], - "where": [ - 7213 - ] - } - ], - "v_player_match_performance_aggregate": [ - 7210, - { - "distinct_on": [ - 7217, - "[v_player_match_performance_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7216, - "[v_player_match_performance_order_by!]" - ], - "where": [ - 7213 - ] - } - ], - "v_player_match_performance_stream": [ - 7209, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 7221, - "[v_player_match_performance_stream_cursor_input]!" - ], - "where": [ - 7213 - ] - } - ], - "v_player_match_rating": [ - 7227, - { - "distinct_on": [ - 7235, - "[v_player_match_rating_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7234, - "[v_player_match_rating_order_by!]" - ], - "where": [ - 7231 - ] - } - ], - "v_player_match_rating_aggregate": [ - 7228, - { - "distinct_on": [ - 7235, - "[v_player_match_rating_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7234, - "[v_player_match_rating_order_by!]" - ], - "where": [ - 7231 - ] - } - ], - "v_player_match_rating_stream": [ - 7227, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 7239, - "[v_player_match_rating_stream_cursor_input]!" - ], - "where": [ - 7231 - ] - } - ], - "v_player_multi_kills": [ - 7245, - { - "distinct_on": [ - 7261, - "[v_player_multi_kills_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7260, - "[v_player_multi_kills_order_by!]" - ], - "where": [ - 7254 - ] - } - ], - "v_player_multi_kills_aggregate": [ - 7246, - { - "distinct_on": [ - 7261, - "[v_player_multi_kills_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7260, - "[v_player_multi_kills_order_by!]" - ], - "where": [ - 7254 - ] - } - ], - "v_player_multi_kills_stream": [ - 7245, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 7268, - "[v_player_multi_kills_stream_cursor_input]!" - ], - "where": [ - 7254 - ] - } - ], - "v_player_queue_partners": [ - 7278, - { - "distinct_on": [ - 7286, - "[v_player_queue_partners_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7285, - "[v_player_queue_partners_order_by!]" - ], - "where": [ - 7282 - ] - } - ], - "v_player_queue_partners_aggregate": [ - 7279, - { - "distinct_on": [ - 7286, - "[v_player_queue_partners_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7285, - "[v_player_queue_partners_order_by!]" - ], - "where": [ - 7282 - ] - } - ], - "v_player_queue_partners_stream": [ - 7278, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 7290, - "[v_player_queue_partners_stream_cursor_input]!" - ], - "where": [ - 7282 - ] - } - ], - "v_player_weapon_damage": [ - 7296, - { - "distinct_on": [ - 7304, - "[v_player_weapon_damage_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7303, - "[v_player_weapon_damage_order_by!]" - ], - "where": [ - 7300 - ] - } - ], - "v_player_weapon_damage_aggregate": [ - 7297, - { - "distinct_on": [ - 7304, - "[v_player_weapon_damage_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7303, - "[v_player_weapon_damage_order_by!]" - ], - "where": [ - 7300 - ] - } - ], - "v_player_weapon_damage_stream": [ - 7296, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 7308, - "[v_player_weapon_damage_stream_cursor_input]!" - ], - "where": [ - 7300 - ] - } - ], - "v_player_weapon_kills": [ - 7314, - { - "distinct_on": [ - 7322, - "[v_player_weapon_kills_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7321, - "[v_player_weapon_kills_order_by!]" - ], - "where": [ - 7318 - ] - } - ], - "v_player_weapon_kills_aggregate": [ - 7315, - { - "distinct_on": [ - 7322, - "[v_player_weapon_kills_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7321, - "[v_player_weapon_kills_order_by!]" - ], - "where": [ - 7318 - ] - } - ], - "v_player_weapon_kills_stream": [ - 7314, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 7326, - "[v_player_weapon_kills_stream_cursor_input]!" - ], - "where": [ - 7318 - ] - } - ], - "v_pool_maps": [ - 7332, - { - "distinct_on": [ - 7349, - "[v_pool_maps_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7348, - "[v_pool_maps_order_by!]" - ], - "where": [ - 7341 - ] - } - ], - "v_pool_maps_aggregate": [ - 7333, - { - "distinct_on": [ - 7349, - "[v_pool_maps_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7348, - "[v_pool_maps_order_by!]" - ], - "where": [ - 7341 - ] - } - ], - "v_pool_maps_stream": [ - 7332, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 7353, - "[v_pool_maps_stream_cursor_input]!" - ], - "where": [ - 7341 - ] - } - ], - "v_steam_account_pool_status": [ - 7356, - { - "distinct_on": [ - 7364, - "[v_steam_account_pool_status_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7363, - "[v_steam_account_pool_status_order_by!]" - ], - "where": [ - 7360 - ] - } - ], - "v_steam_account_pool_status_aggregate": [ - 7357, - { - "distinct_on": [ - 7364, - "[v_steam_account_pool_status_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7363, - "[v_steam_account_pool_status_order_by!]" - ], - "where": [ - 7360 - ] - } - ], - "v_steam_account_pool_status_stream": [ - 7356, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 7368, - "[v_steam_account_pool_status_stream_cursor_input]!" - ], - "where": [ - 7360 - ] - } - ], - "v_team_ranks": [ - 7374, - { - "distinct_on": [ - 7384, - "[v_team_ranks_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7383, - "[v_team_ranks_order_by!]" - ], - "where": [ - 7378 - ] - } - ], - "v_team_ranks_aggregate": [ - 7375, - { - "distinct_on": [ - 7384, - "[v_team_ranks_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7383, - "[v_team_ranks_order_by!]" - ], - "where": [ - 7378 - ] - } - ], - "v_team_ranks_stream": [ - 7374, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 7388, - "[v_team_ranks_stream_cursor_input]!" - ], - "where": [ - 7378 - ] - } - ], - "v_team_reputation": [ - 7394, - { - "distinct_on": [ - 7404, - "[v_team_reputation_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7403, - "[v_team_reputation_order_by!]" - ], - "where": [ - 7398 - ] - } - ], - "v_team_reputation_aggregate": [ - 7395, - { - "distinct_on": [ - 7404, - "[v_team_reputation_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7403, - "[v_team_reputation_order_by!]" - ], - "where": [ - 7398 - ] - } - ], - "v_team_reputation_stream": [ - 7394, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 7408, - "[v_team_reputation_stream_cursor_input]!" - ], - "where": [ - 7398 - ] - } - ], - "v_team_stage_results": [ - 7414, - { - "distinct_on": [ - 7446, - "[v_team_stage_results_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7444, - "[v_team_stage_results_order_by!]" - ], - "where": [ - 7433 - ] - } - ], - "v_team_stage_results_aggregate": [ - 7415, - { - "distinct_on": [ - 7446, - "[v_team_stage_results_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7444, - "[v_team_stage_results_order_by!]" - ], - "where": [ - 7433 - ] - } - ], - "v_team_stage_results_by_pk": [ - 7414, - { - "tournament_stage_id": [ - 6672, - "uuid!" - ], - "tournament_team_id": [ - 6672, - "uuid!" - ] - } - ], - "v_team_stage_results_stream": [ - 7414, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 7462, - "[v_team_stage_results_stream_cursor_input]!" - ], - "where": [ - 7433 - ] - } - ], - "v_team_tournament_results": [ - 7474, - { - "distinct_on": [ - 7500, - "[v_team_tournament_results_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7499, - "[v_team_tournament_results_order_by!]" - ], - "where": [ - 7493 - ] - } - ], - "v_team_tournament_results_aggregate": [ - 7475, - { - "distinct_on": [ - 7500, - "[v_team_tournament_results_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7499, - "[v_team_tournament_results_order_by!]" - ], - "where": [ - 7493 - ] - } - ], - "v_team_tournament_results_stream": [ - 7474, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 7515, - "[v_team_tournament_results_stream_cursor_input]!" - ], - "where": [ - 7493 - ] - } - ], - "v_tournament_player_stats": [ - 7525, - { - "distinct_on": [ - 7551, - "[v_tournament_player_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7550, - "[v_tournament_player_stats_order_by!]" - ], - "where": [ - 7544 - ] - } - ], - "v_tournament_player_stats_aggregate": [ - 7526, - { - "distinct_on": [ - 7551, - "[v_tournament_player_stats_select_column!]" - ], - "limit": [ - 41 - ], - "offset": [ - 41 - ], - "order_by": [ - 7550, - "[v_tournament_player_stats_order_by!]" - ], - "where": [ - 7544 - ] - } - ], - "v_tournament_player_stats_stream": [ - 7525, - { - "batch_size": [ - 41, - "Int!" - ], - "cursor": [ - 7566, - "[v_tournament_player_stats_stream_cursor_input]!" - ], - "where": [ - 7544 - ] - } - ], - "__typename": [ - 85 - ] - } - } -} \ No newline at end of file From 810cfb170e4d1af37c8ad22a2270d1c22915c6a0 Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Sat, 19 Sep 2026 09:53:05 -0400 Subject: [PATCH 4/4] wip --- generated/index.ts | 77 + generated/runtime/batcher.ts | 275 + generated/runtime/createClient.ts | 68 + generated/runtime/error.ts | 29 + generated/runtime/fetcher.ts | 97 + generated/runtime/generateGraphqlOperation.ts | 225 + generated/runtime/index.ts | 13 + generated/runtime/linkTypeMap.ts | 156 + generated/runtime/typeSelection.ts | 95 + generated/runtime/types.ts | 69 + generated/schema.graphql | 146956 ++++++++++ generated/schema.ts | 157254 ++++++++++ generated/types.ts | 221543 +++++++++++++++ 13 files changed, 526857 insertions(+) create mode 100644 generated/index.ts create mode 100644 generated/runtime/batcher.ts create mode 100644 generated/runtime/createClient.ts create mode 100644 generated/runtime/error.ts create mode 100644 generated/runtime/fetcher.ts create mode 100644 generated/runtime/generateGraphqlOperation.ts create mode 100644 generated/runtime/index.ts create mode 100644 generated/runtime/linkTypeMap.ts create mode 100644 generated/runtime/typeSelection.ts create mode 100644 generated/runtime/types.ts create mode 100644 generated/schema.graphql create mode 100644 generated/schema.ts create mode 100644 generated/types.ts diff --git a/generated/index.ts b/generated/index.ts new file mode 100644 index 00000000..b4936677 --- /dev/null +++ b/generated/index.ts @@ -0,0 +1,77 @@ +// @ts-nocheck +import type { + query_rootGenqlSelection, + query_root, + mutation_rootGenqlSelection, + mutation_root, + subscription_rootGenqlSelection, + subscription_root, +} from './schema' +import { + linkTypeMap, + createClient as createClientOriginal, + generateGraphqlOperation, + type FieldsSelection, + type GraphqlOperation, + type ClientOptions, + GenqlError, +} from './runtime' +export type { FieldsSelection } from './runtime' +export { GenqlError } + +import types from './types' +export * from './schema' +const typeMap = linkTypeMap(types as any) + +export interface Client { + query( + request: R & { __name?: string }, + ): Promise> + + mutation( + request: R & { __name?: string }, + ): Promise> +} + +export const createClient = function (options?: ClientOptions): Client { + return createClientOriginal({ + url: 'http://hasura:8080/v1/graphql', + + ...options, + queryRoot: typeMap.Query!, + mutationRoot: typeMap.Mutation!, + subscriptionRoot: typeMap.Subscription!, + }) as any +} + +export const everything = { + __scalar: true, +} + +export type QueryResult = + FieldsSelection +export const generateQueryOp: ( + fields: query_rootGenqlSelection & { __name?: string }, +) => GraphqlOperation = function (fields) { + return generateGraphqlOperation('query', typeMap.Query!, fields as any) +} + +export type MutationResult = + FieldsSelection +export const generateMutationOp: ( + fields: mutation_rootGenqlSelection & { __name?: string }, +) => GraphqlOperation = function (fields) { + return generateGraphqlOperation('mutation', typeMap.Mutation!, fields as any) +} + +export type SubscriptionResult = + FieldsSelection +export const generateSubscriptionOp: ( + fields: subscription_rootGenqlSelection & { __name?: string }, +) => GraphqlOperation = function (fields) { + return generateGraphqlOperation( + 'subscription', + typeMap.Subscription!, + fields as any, + ) +} diff --git a/generated/runtime/batcher.ts b/generated/runtime/batcher.ts new file mode 100644 index 00000000..c0925510 --- /dev/null +++ b/generated/runtime/batcher.ts @@ -0,0 +1,275 @@ +// @ts-nocheck +import type { GraphqlOperation } from './generateGraphqlOperation' +import { GenqlError } from './error' + +type Variables = Record + +type QueryError = Error & { + message: string + + locations?: Array<{ + line: number + column: number + }> + path?: any + rid: string + details?: Record +} +type Result = { + data: Record + errors: Array +} +type Fetcher = ( + batchedQuery: GraphqlOperation | Array, +) => Promise> +type Options = { + batchInterval?: number + shouldBatch?: boolean + maxBatchSize?: number +} +type Queue = Array<{ + request: GraphqlOperation + resolve: (...args: Array) => any + reject: (...args: Array) => any +}> + +/** + * takes a list of requests (queue) and batches them into a single server request. + * It will then resolve each individual requests promise with the appropriate data. + * @private + * @param {QueryBatcher} client - the client to use + * @param {Queue} queue - the list of requests to batch + */ +function dispatchQueueBatch(client: QueryBatcher, queue: Queue): void { + let batchedQuery: any = queue.map((item) => item.request) + + if (batchedQuery.length === 1) { + batchedQuery = batchedQuery[0] + } + (() => { + try { + return client.fetcher(batchedQuery); + } catch(e) { + return Promise.reject(e); + } + })().then((responses: any) => { + if (queue.length === 1 && !Array.isArray(responses)) { + if (responses.errors && responses.errors.length) { + queue[0].reject( + new GenqlError(responses.errors, responses.data), + ) + return + } + + queue[0].resolve(responses) + return + } else if (responses.length !== queue.length) { + throw new Error('response length did not match query length') + } + + for (let i = 0; i < queue.length; i++) { + if (responses[i].errors && responses[i].errors.length) { + queue[i].reject( + new GenqlError(responses[i].errors, responses[i].data), + ) + } else { + queue[i].resolve(responses[i]) + } + } + }) + .catch((e) => { + for (let i = 0; i < queue.length; i++) { + queue[i].reject(e) + } + }); +} + +/** + * creates a list of requests to batch according to max batch size. + * @private + * @param {QueryBatcher} client - the client to create list of requests from from + * @param {Options} options - the options for the batch + */ +function dispatchQueue(client: QueryBatcher, options: Options): void { + const queue = client._queue + const maxBatchSize = options.maxBatchSize || 0 + client._queue = [] + + if (maxBatchSize > 0 && maxBatchSize < queue.length) { + for (let i = 0; i < queue.length / maxBatchSize; i++) { + dispatchQueueBatch( + client, + queue.slice(i * maxBatchSize, (i + 1) * maxBatchSize), + ) + } + } else { + dispatchQueueBatch(client, queue) + } +} +/** + * Create a batcher client. + * @param {Fetcher} fetcher - A function that can handle the network requests to graphql endpoint + * @param {Options} options - the options to be used by client + * @param {boolean} options.shouldBatch - should the client batch requests. (default true) + * @param {integer} options.batchInterval - duration (in MS) of each batch window. (default 6) + * @param {integer} options.maxBatchSize - max number of requests in a batch. (default 0) + * @param {boolean} options.defaultHeaders - default headers to include with every request + * + * @example + * const fetcher = batchedQuery => fetch('path/to/graphql', { + * method: 'post', + * headers: { + * Accept: 'application/json', + * 'Content-Type': 'application/json', + * }, + * body: JSON.stringify(batchedQuery), + * credentials: 'include', + * }) + * .then(response => response.json()) + * + * const client = new QueryBatcher(fetcher, { maxBatchSize: 10 }) + */ + +export class QueryBatcher { + fetcher: Fetcher + _options: Options + _queue: Queue + + constructor( + fetcher: Fetcher, + { + batchInterval = 6, + shouldBatch = true, + maxBatchSize = 0, + }: Options = {}, + ) { + this.fetcher = fetcher + this._options = { + batchInterval, + shouldBatch, + maxBatchSize, + } + this._queue = [] + } + + /** + * Fetch will send a graphql request and return the parsed json. + * @param {string} query - the graphql query. + * @param {Variables} variables - any variables you wish to inject as key/value pairs. + * @param {[string]} operationName - the graphql operationName. + * @param {Options} overrides - the client options overrides. + * + * @return {promise} resolves to parsed json of server response + * + * @example + * client.fetch(` + * query getHuman($id: ID!) { + * human(id: $id) { + * name + * height + * } + * } + * `, { id: "1001" }, 'getHuman') + * .then(human => { + * // do something with human + * console.log(human); + * }); + */ + fetch( + query: string, + variables?: Variables, + operationName?: string, + overrides: Options = {}, + ): Promise { + const request: GraphqlOperation = { + query, + } + const options = Object.assign({}, this._options, overrides) + + if (variables) { + request.variables = variables + } + + if (operationName) { + request.operationName = operationName + } + + const promise = new Promise((resolve, reject) => { + this._queue.push({ + request, + resolve, + reject, + }) + + if (this._queue.length === 1) { + if (options.shouldBatch) { + setTimeout( + () => dispatchQueue(this, options), + options.batchInterval, + ) + } else { + dispatchQueue(this, options) + } + } + }) + return promise + } + + /** + * Fetch will send a graphql request and return the parsed json. + * @param {string} query - the graphql query. + * @param {Variables} variables - any variables you wish to inject as key/value pairs. + * @param {[string]} operationName - the graphql operationName. + * @param {Options} overrides - the client options overrides. + * + * @return {Promise>} resolves to parsed json of server response + * + * @example + * client.forceFetch(` + * query getHuman($id: ID!) { + * human(id: $id) { + * name + * height + * } + * } + * `, { id: "1001" }, 'getHuman') + * .then(human => { + * // do something with human + * console.log(human); + * }); + */ + forceFetch( + query: string, + variables?: Variables, + operationName?: string, + overrides: Options = {}, + ): Promise { + const request: GraphqlOperation = { + query, + } + const options = Object.assign({}, this._options, overrides, { + shouldBatch: false, + }) + + if (variables) { + request.variables = variables + } + + if (operationName) { + request.operationName = operationName + } + + const promise = new Promise((resolve, reject) => { + const client = new QueryBatcher(this.fetcher, this._options) + client._queue = [ + { + request, + resolve, + reject, + }, + ] + dispatchQueue(client, options) + }) + return promise + } +} diff --git a/generated/runtime/createClient.ts b/generated/runtime/createClient.ts new file mode 100644 index 00000000..755617ed --- /dev/null +++ b/generated/runtime/createClient.ts @@ -0,0 +1,68 @@ +// @ts-nocheck + +import { type BatchOptions, createFetcher } from './fetcher' +import type { ExecutionResult, LinkedType } from './types' +import { + generateGraphqlOperation, + type GraphqlOperation, +} from './generateGraphqlOperation' + +export type Headers = + | HeadersInit + | (() => HeadersInit) + | (() => Promise) + +export type BaseFetcher = ( + operation: GraphqlOperation | GraphqlOperation[], +) => Promise + +export type ClientOptions = Omit & { + url?: string + batch?: BatchOptions | boolean + fetcher?: BaseFetcher + fetch?: Function + headers?: Headers +} + +export const createClient = ({ + queryRoot, + mutationRoot, + subscriptionRoot, + ...options +}: ClientOptions & { + queryRoot?: LinkedType + mutationRoot?: LinkedType + subscriptionRoot?: LinkedType +}) => { + const fetcher = createFetcher(options) + const client: { + query?: Function + mutation?: Function + } = {} + + if (queryRoot) { + client.query = (request: any) => { + if (!queryRoot) throw new Error('queryRoot argument is missing') + + const resultPromise = fetcher( + generateGraphqlOperation('query', queryRoot, request), + ) + + return resultPromise + } + } + if (mutationRoot) { + client.mutation = (request: any) => { + if (!mutationRoot) + throw new Error('mutationRoot argument is missing') + + const resultPromise = fetcher( + generateGraphqlOperation('mutation', mutationRoot, request), + ) + + return resultPromise + } + } + + return client as any +} diff --git a/generated/runtime/error.ts b/generated/runtime/error.ts new file mode 100644 index 00000000..d9039ebe --- /dev/null +++ b/generated/runtime/error.ts @@ -0,0 +1,29 @@ +// @ts-nocheck +export class GenqlError extends Error { + errors: Array = [] + /** + * Partial data returned by the server + */ + data?: any + constructor(errors: any[], data: any) { + let message = Array.isArray(errors) + ? errors.map((x) => x?.message || '').join('\n') + : '' + if (!message) { + message = 'GraphQL error' + } + super(message) + this.errors = errors + this.data = data + } +} + +interface GraphqlError { + message: string + locations?: Array<{ + line: number + column: number + }> + path?: string[] + extensions?: Record +} diff --git a/generated/runtime/fetcher.ts b/generated/runtime/fetcher.ts new file mode 100644 index 00000000..74e6d4ce --- /dev/null +++ b/generated/runtime/fetcher.ts @@ -0,0 +1,97 @@ +// @ts-nocheck +import { QueryBatcher } from './batcher' + +import type { ClientOptions } from './createClient' +import type { GraphqlOperation } from './generateGraphqlOperation' +import { GenqlError } from './error' + +export interface Fetcher { + (gql: GraphqlOperation): Promise +} + +export type BatchOptions = { + batchInterval?: number // ms + maxBatchSize?: number +} + +const DEFAULT_BATCH_OPTIONS = { + maxBatchSize: 10, + batchInterval: 40, +} + +export const createFetcher = ({ + url, + headers = {}, + fetcher, + fetch: _fetch, + batch = false, + ...rest +}: ClientOptions): Fetcher => { + if (!url && !fetcher) { + throw new Error('url or fetcher is required') + } + + fetcher = fetcher || (async (body) => { + let headersObject = + typeof headers == 'function' ? await headers() : headers + headersObject = headersObject || {} + if (typeof fetch === 'undefined' && !_fetch) { + throw new Error( + 'Global `fetch` function is not available, pass a fetch polyfill to Genql `createClient`', + ) + } + let fetchImpl = _fetch || fetch + const res = await fetchImpl(url!, { + headers: { + 'Content-Type': 'application/json', + ...headersObject, + }, + method: 'POST', + body: JSON.stringify(body), + ...rest, + }) + if (!res.ok) { + throw new Error(`${res.statusText}: ${await res.text()}`) + } + const json = await res.json() + return json + }) + + if (!batch) { + return async (body) => { + const json = await fetcher!(body) + if (Array.isArray(json)) { + return json.map((json) => { + if (json?.errors?.length) { + throw new GenqlError(json.errors || [], json.data) + } + return json.data + }) + } else { + if (json?.errors?.length) { + throw new GenqlError(json.errors || [], json.data) + } + return json.data + } + } + } + + const batcher = new QueryBatcher( + async (batchedQuery) => { + // console.log(batchedQuery) // [{ query: 'query{user{age}}', variables: {} }, ...] + const json = await fetcher!(batchedQuery) + return json as any + }, + batch === true ? DEFAULT_BATCH_OPTIONS : batch, + ) + + return async ({ query, variables }) => { + const json = await batcher.fetch(query, variables) + if (json?.data) { + return json.data + } + throw new Error( + 'Genql batch fetcher returned unexpected result ' + JSON.stringify(json), + ) + } +} diff --git a/generated/runtime/generateGraphqlOperation.ts b/generated/runtime/generateGraphqlOperation.ts new file mode 100644 index 00000000..c618019e --- /dev/null +++ b/generated/runtime/generateGraphqlOperation.ts @@ -0,0 +1,225 @@ +// @ts-nocheck +import type { LinkedField, LinkedType } from './types' + +export interface Args { + [arg: string]: any | undefined +} + +export interface Fields { + [field: string]: Request +} + +export type Request = boolean | number | Fields + +export interface Variables { + [name: string]: { + value: any + typing: [LinkedType, string] + } +} + +export interface Context { + root: LinkedType + varCounter: number + variables: Variables + fragmentCounter: number + fragments: string[] +} + +export interface GraphqlOperation { + query: string + variables?: { [name: string]: any } + operationName?: string +} + +const parseRequest = ( + request: Request | undefined, + ctx: Context, + path: string[], +): string => { + if (typeof request === 'object' && '__args' in request) { + const args: any = request.__args + let fields: Request | undefined = { ...request } + delete fields.__args + const argNames = Object.keys(args) + + if (argNames.length === 0) { + return parseRequest(fields, ctx, path) + } + + const field = getFieldFromPath(ctx.root, path) + + const argStrings = argNames.map((argName) => { + ctx.varCounter++ + const varName = `v${ctx.varCounter}` + + const typing = field.args && field.args[argName] // typeMap used here, .args + + if (!typing) { + throw new Error( + `no typing defined for argument \`${argName}\` in path \`${path.join( + '.', + )}\``, + ) + } + + ctx.variables[varName] = { + value: args[argName], + typing, + } + + return `${argName}:$${varName}` + }) + return `(${argStrings})${parseRequest(fields, ctx, path)}` + } else if (typeof request === 'object' && Object.keys(request).length > 0) { + const fields = request + const fieldNames = Object.keys(fields).filter((k) => Boolean(fields[k])) + + if (fieldNames.length === 0) { + throw new Error( + `field selection should not be empty: ${path.join('.')}`, + ) + } + + const type = + path.length > 0 ? getFieldFromPath(ctx.root, path).type : ctx.root + const scalarFields = type.scalar + + let scalarFieldsFragment: string | undefined + + if (fieldNames.includes('__scalar')) { + const falsyFieldNames = new Set( + Object.keys(fields).filter((k) => !Boolean(fields[k])), + ) + if (scalarFields?.length) { + ctx.fragmentCounter++ + scalarFieldsFragment = `f${ctx.fragmentCounter}` + + ctx.fragments.push( + `fragment ${scalarFieldsFragment} on ${ + type.name + }{${scalarFields + .filter((f) => !falsyFieldNames.has(f)) + .join(',')}}`, + ) + } + } + + const fieldsSelection = fieldNames + .filter((f) => !['__scalar', '__name'].includes(f)) + .map((f) => { + const parsed = parseRequest(fields[f], ctx, [...path, f]) + + if (f.startsWith('on_')) { + ctx.fragmentCounter++ + const implementationFragment = `f${ctx.fragmentCounter}` + + const typeMatch = f.match(/^on_(.+)/) + + if (!typeMatch || !typeMatch[1]) + throw new Error('match failed') + + ctx.fragments.push( + `fragment ${implementationFragment} on ${typeMatch[1]}${parsed}`, + ) + + return `...${implementationFragment}` + } else { + return `${f}${parsed}` + } + }) + .concat(scalarFieldsFragment ? [`...${scalarFieldsFragment}`] : []) + .join(',') + + return `{${fieldsSelection}}` + } else { + return '' + } +} + +export const generateGraphqlOperation = ( + operation: 'query' | 'mutation' | 'subscription', + root: LinkedType, + fields?: Fields, +): GraphqlOperation => { + const ctx: Context = { + root: root, + varCounter: 0, + variables: {}, + fragmentCounter: 0, + fragments: [], + } + const result = parseRequest(fields, ctx, []) + + const varNames = Object.keys(ctx.variables) + + const varsString = + varNames.length > 0 + ? `(${varNames.map((v) => { + const variableType = ctx.variables[v].typing[1] + return `$${v}:${variableType}` + })})` + : '' + + const operationName = fields?.__name || '' + + return { + query: [ + `${operation} ${operationName}${varsString}${result}`, + ...ctx.fragments, + ].join(','), + variables: Object.keys(ctx.variables).reduce<{ [name: string]: any }>( + (r, v) => { + r[v] = ctx.variables[v].value + return r + }, + {}, + ), + ...(operationName ? { operationName: operationName.toString() } : {}), + } +} + +export const getFieldFromPath = ( + root: LinkedType | undefined, + path: string[], +) => { + let current: LinkedField | undefined + + if (!root) throw new Error('root type is not provided') + + if (path.length === 0) throw new Error(`path is empty`) + + path.forEach((f) => { + const type = current ? current.type : root + + if (!type.fields) + throw new Error(`type \`${type.name}\` does not have fields`) + + const possibleTypes = Object.keys(type.fields) + .filter((i) => i.startsWith('on_')) + .reduce( + (types, fieldName) => { + const field = type.fields && type.fields[fieldName] + if (field) types.push(field.type) + return types + }, + [type], + ) + + let field: LinkedField | null = null + + possibleTypes.forEach((type) => { + const found = type.fields && type.fields[f] + if (found) field = found + }) + + if (!field) + throw new Error( + `type \`${type.name}\` does not have a field \`${f}\``, + ) + + current = field + }) + + return current as LinkedField +} diff --git a/generated/runtime/index.ts b/generated/runtime/index.ts new file mode 100644 index 00000000..130ed4bf --- /dev/null +++ b/generated/runtime/index.ts @@ -0,0 +1,13 @@ +// @ts-nocheck +export { createClient } from './createClient' +export type { ClientOptions } from './createClient' +export type { FieldsSelection } from './typeSelection' +export { generateGraphqlOperation } from './generateGraphqlOperation' +export type { GraphqlOperation } from './generateGraphqlOperation' +export { linkTypeMap } from './linkTypeMap' +// export { Observable } from 'zen-observable-ts' +export { createFetcher } from './fetcher' +export { GenqlError } from './error' +export const everything = { + __scalar: true, +} diff --git a/generated/runtime/linkTypeMap.ts b/generated/runtime/linkTypeMap.ts new file mode 100644 index 00000000..3e12c545 --- /dev/null +++ b/generated/runtime/linkTypeMap.ts @@ -0,0 +1,156 @@ +// @ts-nocheck +import type { + CompressedType, + CompressedTypeMap, + LinkedArgMap, + LinkedField, + LinkedType, + LinkedTypeMap, +} from './types' + +export interface PartialLinkedFieldMap { + [field: string]: { + type: string + args?: LinkedArgMap + } +} + +export const linkTypeMap = ( + typeMap: CompressedTypeMap, +): LinkedTypeMap => { + const indexToName: Record = Object.assign( + {}, + ...Object.keys(typeMap.types).map((k, i) => ({ [i]: k })), + ) + + let intermediaryTypeMap = Object.assign( + {}, + ...Object.keys(typeMap.types || {}).map( + (k): Record => { + const type: CompressedType = typeMap.types[k]! + const fields = type || {} + return { + [k]: { + name: k, + // type scalar properties + scalar: Object.keys(fields).filter((f) => { + const [type] = fields[f] || [] + + const isScalar = + type && typeMap.scalars.includes(type) + if (!isScalar) { + return false + } + const args = fields[f]?.[1] + const argTypes = Object.values(args || {}) + .map((x) => x?.[1]) + .filter(Boolean) + + const hasRequiredArgs = argTypes.some( + (str) => str && str.endsWith('!'), + ) + if (hasRequiredArgs) { + return false + } + return true + }), + // fields with corresponding `type` and `args` + fields: Object.assign( + {}, + ...Object.keys(fields).map( + (f): PartialLinkedFieldMap => { + const [typeIndex, args] = fields[f] || [] + if (typeIndex == null) { + return {} + } + return { + [f]: { + // replace index with type name + type: indexToName[typeIndex], + args: Object.assign( + {}, + ...Object.keys(args || {}).map( + (k) => { + // if argTypeString == argTypeName, argTypeString is missing, need to readd it + if (!args || !args[k]) { + return + } + const [ + argTypeName, + argTypeString, + ] = args[k] as any + return { + [k]: [ + indexToName[ + argTypeName + ], + argTypeString || + indexToName[ + argTypeName + ], + ], + } + }, + ), + ), + }, + } + }, + ), + ), + }, + } + }, + ), + ) + const res = resolveConcreteTypes(intermediaryTypeMap) + return res +} + +// replace typename with concrete type +export const resolveConcreteTypes = (linkedTypeMap: LinkedTypeMap) => { + Object.keys(linkedTypeMap).forEach((typeNameFromKey) => { + const type: LinkedType = linkedTypeMap[typeNameFromKey]! + // type.name = typeNameFromKey + if (!type.fields) { + return + } + + const fields = type.fields + + Object.keys(fields).forEach((f) => { + const field: LinkedField = fields[f]! + + if (field.args) { + const args = field.args + Object.keys(args).forEach((key) => { + const arg = args[key] + + if (arg) { + const [typeName] = arg + + if (typeof typeName === 'string') { + if (!linkedTypeMap[typeName]) { + linkedTypeMap[typeName] = { name: typeName } + } + + arg[0] = linkedTypeMap[typeName]! + } + } + }) + } + + const typeName = field.type as LinkedType | string + + if (typeof typeName === 'string') { + if (!linkedTypeMap[typeName]) { + linkedTypeMap[typeName] = { name: typeName } + } + + field.type = linkedTypeMap[typeName]! + } + }) + }) + + return linkedTypeMap +} diff --git a/generated/runtime/typeSelection.ts b/generated/runtime/typeSelection.ts new file mode 100644 index 00000000..a021d00b --- /dev/null +++ b/generated/runtime/typeSelection.ts @@ -0,0 +1,95 @@ +// @ts-nocheck +////////////////////////////////////////////////// + +// SOME THINGS TO KNOW BEFORE DIVING IN +/* +0. DST is the request type, SRC is the response type + +1. FieldsSelection uses an object because currently is impossible to make recursive types + +2. FieldsSelection is a recursive type that makes a type based on request type and fields + +3. HandleObject handles object types + +4. Handle__scalar adds all scalar properties excluding non scalar props +*/ + +export type FieldsSelection | undefined, DST> = { + scalar: SRC + union: Handle__isUnion + object: HandleObject + array: SRC extends Nil + ? never + : SRC extends Array + ? Array> + : never + __scalar: Handle__scalar + never: never +}[DST extends Nil + ? 'never' + : DST extends false | 0 + ? 'never' + : SRC extends Scalar + ? 'scalar' + : SRC extends any[] + ? 'array' + : SRC extends { __isUnion?: any } + ? 'union' + : DST extends { __scalar?: any } + ? '__scalar' + : DST extends {} + ? 'object' + : 'never'] + +type HandleObject, DST> = DST extends boolean + ? SRC + : SRC extends Nil + ? never + : Pick< + { + // using keyof SRC to maintain ?: relations of SRC type + [Key in keyof SRC]: Key extends keyof DST + ? FieldsSelection> + : SRC[Key] + }, + Exclude + // { + // // remove falsy values + // [Key in keyof DST]: DST[Key] extends false | 0 ? never : Key + // }[keyof DST] + > + +type Handle__scalar, DST> = SRC extends Nil + ? never + : Pick< + // continue processing fields that are in DST, directly pass SRC type if not in DST + { + [Key in keyof SRC]: Key extends keyof DST + ? FieldsSelection + : SRC[Key] + }, + // remove fields that are not scalars or are not in DST + { + [Key in keyof SRC]: SRC[Key] extends Nil + ? never + : Key extends FieldsToRemove + ? never + : SRC[Key] extends Scalar + ? Key + : Key extends keyof DST + ? Key + : never + }[keyof SRC] + > + +type Handle__isUnion, DST> = SRC extends Nil + ? never + : Omit // just return the union type + +type Scalar = string | number | Date | boolean | null | undefined + +type Anify = { [P in keyof T]?: any } + +type FieldsToRemove = '__isUnion' | '__scalar' | '__name' | '__args' + +type Nil = undefined | null diff --git a/generated/runtime/types.ts b/generated/runtime/types.ts new file mode 100644 index 00000000..3f0bc30b --- /dev/null +++ b/generated/runtime/types.ts @@ -0,0 +1,69 @@ +// @ts-nocheck + +export interface ExecutionResult { + errors?: Array + data?: TData | null +} + +export interface ArgMap { + [arg: string]: [keyType, string] | [keyType] | undefined +} + +export type CompressedField = [ + type: keyType, + args?: ArgMap, +] + +export interface CompressedFieldMap { + [field: string]: CompressedField | undefined +} + +export type CompressedType = CompressedFieldMap + +export interface CompressedTypeMap { + scalars: Array + types: { + [type: string]: CompressedType | undefined + } +} + +// normal types +export type Field = { + type: keyType + args?: ArgMap +} + +export interface FieldMap { + [field: string]: Field | undefined +} + +export type Type = FieldMap + +export interface TypeMap { + scalars: Array + types: { + [type: string]: Type | undefined + } +} + +export interface LinkedArgMap { + [arg: string]: [LinkedType, string] | undefined +} +export interface LinkedField { + type: LinkedType + args?: LinkedArgMap +} + +export interface LinkedFieldMap { + [field: string]: LinkedField | undefined +} + +export interface LinkedType { + name: string + fields?: LinkedFieldMap + scalar?: string[] +} + +export interface LinkedTypeMap { + [type: string]: LinkedType | undefined +} diff --git a/generated/schema.graphql b/generated/schema.graphql new file mode 100644 index 00000000..9293567e --- /dev/null +++ b/generated/schema.graphql @@ -0,0 +1,146956 @@ +schema { + query: query_root + mutation: mutation_root + subscription: subscription_root +} + +"""whether this query should be cached (Hasura Cloud only)""" +directive @cached( + """measured in seconds""" + ttl: Int! = 60 + + """refresh the cache entry""" + refresh: Boolean! = false +) on QUERY + +type ActiveConnection { + application_name: String + client_addr: String + pid: Int! + query: String! + query_start: timestamp + state: String + usename: String +} + +type ActiveQuery { + application_name: String + client_addr: String + duration_seconds: Float! + pid: Int! + query: String! + query_start: timestamp! + state: String! + usename: String! + wait_event: String + wait_event_type: String +} + +type AddCustomGamePluginOutput { + name: String! + runtime: String! + slug: String! + version: String! +} + +type ApiKeyResponse { + key: String! +} + +type Award { + allow_multiple: Boolean! + created_at: String! + created_by_steam_id: String + description: String + event_id: uuid + id: uuid! + image_url: String + league_season_id: uuid + name: String! + season_id: uuid + silhouette: Int + system_key: String + tier: String! + tournament_id: uuid + updated_at: String! +} + +type AwardRecipient { + award_id: uuid! + awarded_by_steam_id: String + created_at: String! + id: uuid! + note: String + placement: Int + player_steam_id: String + source: String! + team_id: uuid + tournament_id: uuid + tournament_team_id: uuid +} + +""" +Boolean expression to compare columns of type "Boolean". All fields are combined with logical 'AND'. +""" +input Boolean_comparison_exp { + _eq: Boolean + _gt: Boolean + _gte: Boolean + _in: [Boolean!] + _is_null: Boolean + _lt: Boolean + _lte: Boolean + _neq: Boolean + _nin: [Boolean!] +} + +input ClipAudioInput { + duck_game_audio: Boolean + fade_in_ms: Int + fade_out_ms: Int + track_url: String + volume: Float +} + +input ClipOutputInput { + format: String! + fps: Int! + resolution: String! +} + +input ClipOverlayInput { + end_ms: Int! + payload: jsonb + start_ms: Int! + type: String! +} + +input ClipSegmentInput { + end_tick: Int! + pov_steam_id: String + start_tick: Int! +} + +input ClipSpecInput { + audio: ClipAudioInput + destination: String! + match_map_id: uuid! + output: ClipOutputInput! + overlays: [ClipOverlayInput!] + segments: [ClipSegmentInput!]! + title: String +} + +type ConnectionByState { + count: Int! + state: String! + wait_event_type: String + waiting_count: Int! +} + +type ConnectionStats { + active: Int! + by_state: [ConnectionByState]! + idle: Int! + idle_in_transaction: Int! + total: Int! + waiting: Int! +} + +type CpuStat { + time: timestamp + total: bigint + used: bigint + window: Float +} + +type CreateClipRenderOutput { + job_id: uuid! + success: Boolean! +} + +type CreateDraftGameOutput { + draftGameId: uuid! +} + +type CreateScheduledMatchOutput { + matchId: uuid! +} + +type DatabaseStats { + blks_hit: Int! + blks_read: Int! + cache_hit_ratio: Float! + conflicts: Int! + datname: String! + deadlocks: Int! + numbackends: Int! + tup_deleted: Int! + tup_fetched: Int! + tup_inserted: Int! + tup_returned: Int! + tup_updated: Int! + xact_commit: Int! + xact_rollback: Int! +} + +type DbStats { + calls: Int! + local_blks_hit: Int! + local_blks_read: Int! + max_exec_time: Float! + mean_exec_time: Float! + min_exec_time: Float! + query: String! + queryid: String! + shared_blks_hit: Int! + shared_blks_read: Int! + total_exec_time: Float! + total_rows: Int! +} + +type DedicatedSeverInfo { + id: String! + lastPing: String! + map: String! + players: Int! +} + +type DeleteOrphansOutput { + bytes_freed: Float! + deleted: Int! + remaining_orphans: Int! + success: Boolean! +} + +type DiskStat { + available: String + filesystem: String + mountpoint: String + size: String + used: String + usedPercent: String +} + +type DiskStats { + disks: [DiskStat] + time: timestamp +} + +type DraftGamePreviewOutput { + accepted_count: Int + access: String + capacity: Int + host_avatar_url: String + host_name: String + host_steam_id: String + id: uuid! + mode: String + players: [DraftGamePreviewPlayer!]! + require_approval: Boolean + status: String + type: String +} + +type DraftGamePreviewPlayer { + avatar_url: String + name: String + status: String + steam_id: String! +} + +type FaceitTestOutput { + dataApi: FaceitTestResult! + downloadApi: FaceitTestResult! +} + +type FaceitTestResult { + detail: String! + ok: Boolean +} + +type FileContentResponse { + content: String! + path: String! + size: bigint! +} + +type FileItem { + isDirectory: Boolean! + modified: timestamp + name: String! + path: String! + size: bigint + type: String! +} + +type FileListResponse { + currentPath: String! + items: [FileItem!]! +} + +""" +Boolean expression to compare columns of type "Float". All fields are combined with logical 'AND'. +""" +input Float_comparison_exp { + _eq: Float + _gt: Float + _gte: Float + _in: [Float!] + _is_null: Boolean + _lt: Float + _lte: Float + _neq: Float + _nin: [Float!] +} + +type GetTestUploadResponse { + error: String + link: String +} + +type GpuDeviceStat { + index: Int + memory_mb: Int + memory_used_mb: Int + name: String + power_w: Int + temperature_c: Int + utilization_percent: Int +} + +type GpuStats { + devices: [GpuDeviceStat] + time: timestamp +} + +type HighlightPresetAvailability { + best_round: Boolean! + has_demo: Boolean! + knife: Boolean! + multikills: Boolean! + recap: Boolean! +} + +type HypertableInfo { + compression_enabled: Boolean! + hypertable_name: String! + num_chunks: Int! +} + +type IndexIOStat { + idx_blks_hit: Int! + idx_blks_read: Int! + indexname: String! + schemaname: String! + tablename: String! +} + +type IndexStat { + idx_scan: Int! + idx_tup_fetch: Int! + idx_tup_read: Int! + index_size: Int! + indexname: String! + schemaname: String! + table_size: Int! + tablename: String! +} + +""" +Boolean expression to compare columns of type "Int". All fields are combined with logical 'AND'. +""" +input Int_comparison_exp { + _eq: Int + _gt: Int + _gte: Int + _in: [Int!] + _is_null: Boolean + _lt: Int + _lte: Int + _neq: Int + _nin: [Int!] +} + +type KickResult { + kicked: Boolean! + message: String +} + +type LiveSpecGsi { + map_name: String + map_phase: String + round_number: Int + round_phase: String + spec_slots: [LiveSpecSlot!]! + spectated_steam_id: String + team_ct_name: String + team_ct_score: Int + team_t_name: String + team_t_score: Int +} + +type LiveSpecSlot { + alive: Boolean! + health: Int! + name: String + slot: Int! + steam_id: String! + team: String +} + +type LiveStreamSpecState { + gsi: LiveSpecGsi +} + +type LockInfo { + granted: Boolean! + locktype: String! + mode: String! + pid: Int! + query: String + relation: String + usename: String +} + +type MapCalloutSyncOutput { + callouts: Int! + maps: Int! +} + +type MeResponse { + avatar_url: String! + country: String + discord_id: String + language: String + name: String! + player: players + profile_url: String + role: String! + steam_id: String! +} + +type MemoryStat { + time: timestamp + total: bigint + used: bigint +} + +type NetworkStats { + nics: [NicStat] + time: timestamp +} + +type NewsPost { + author_steam_id: String + content_markdown: String! + cover_image_url: String + created_at: String! + id: uuid! + published_at: String + slug: String! + status: String! + teaser: String + title: String! + updated_at: String! + view_count: bigint! +} + +type NicStat { + name: String + rx: bigint + tx: bigint +} + +type NodeStats { + cpu: CpuStat + disks: [DiskStats] + gpu: [GpuStats] + memory: MemoryStat + network: [NetworkStats] + node: String! +} + +type OrphanObject { + key: String! + size: Float! +} + +type OrphanScanResultOutput { + bucket: String + clip_bytes: Float! + clip_objects: Int! + demo_bytes: Float! + demo_objects: Int! + found: Boolean! + orphan_bytes: Float! + orphan_objects: Int! + orphans: [OrphanObject!]! + other_bytes: Float! + other_objects: Int! + scanned_at: String + scanning: Boolean! + total_bytes: Float! + total_objects: Int! + tracked_bytes: Float! + tracked_objects: Int! +} + +type PendingMatchImportActionOutput { + error: String + success: Boolean! +} + +type PluginReadmeOutput { + content: String + format: String + repo: String + url: String +} + +type PodStats { + cpu: CpuStat + memory: MemoryStat + name: String! + node: String! +} + +type PreviewGameModeOutput { + cfg: String + enabledPlugins: String! + extraGameParams: String +} + +type PreviewTournamentMatchResetOutput { + impacts: [TournamentMatchResetImpact!]! +} + +type QueryDetail { + explain_plan: String + query: String! + queryid: String! + stats: QueryStat! +} + +type QueryStat { + cache_hit_ratio: Float + calls: Int! + local_blks_hit: Int! + local_blks_read: Int! + max_exec_time: Float! + mean_exec_time: Float! + min_exec_time: Float! + query: String! + queryid: String! + shared_blks_hit: Int! + shared_blks_read: Int! + stddev_exec_time: Float + temp_blks_written: Int! + total_exec_time: Float! + total_rows: Int! +} + +type RecomputeEloStartedOutput { + running: Boolean! + success: Boolean! +} + +type RecomputeEloStatusOutput { + canceled: Boolean! + completed: Int! + current_match_id: String + failed: Int! + finished_at: String + running: Boolean! + started_at: String + total: Int! +} + +type ReconcileNodePluginsOutput { + detected: Int! +} + +type ReindexStartedOutput { + running: Boolean! + success: Boolean! +} + +type ReindexStatusOutput { + canceled: Boolean! + completed: Int! + current_steam_id: String + failed: Int! + finished_at: String + running: Boolean! + started_at: String + total: Int! +} + +type ReparseAllStartedOutput { + running: Boolean! + success: Boolean! +} + +type ReparseAllStatusOutput { + canceled: Boolean! + completed: Int! + current_demo_id: String + failed: Int! + finished_at: String + running: Boolean! + started_at: String + total: Int! +} + +type SanctionResult { + enforced: Boolean! + id: String + message: String +} + +type ScanStartedOutput { + scanning: Boolean! + success: Boolean! +} + +input ScheduledLineupInput { + steam_ids: [String!] + team_id: String +} + +type SeasonBackfillStatusOutput { + canceled: Boolean! + completed: Int! + current_match_id: String + failed: Int! + finished_at: String + running: Boolean! + season_id: String + started_at: String + total: Int! +} + +type ServerPlayer { + name: String! + steam_id: String! +} + +type SetupGameServeOutput { + gameServerId: String! + link: String! +} + +type SteamMatchHistoryLinkOutput { + error: String + success: Boolean! +} + +type SteamMatchHistoryPollOutput { + collected: Int! + error: String + success: Boolean! +} + +type SteamPresenceAdminStatusOutput { + bots: [SteamPresenceBot!]! + enabled: Boolean! + pool: SteamPresencePool! +} + +type SteamPresenceBot { + assigned: Int! + capacity: Int! + guardLastWrong: Boolean! + guardType: String + id: String! + needs2fa: Boolean! + online: Boolean! + steamId: String + steamLevel: Int + username: String! + watching: Int! +} + +type SteamPresenceBotAssignment { + addUrl: String + enabled: Boolean! + status: String + steamId: String +} + +type SteamPresencePool { + bots: Int! + capacity: Int! + online: Int! + pending: Int! + watching: Int! +} + +type StorageStats { + summary: StorageSummary! + tables: [TableSizeInfo!]! +} + +type StorageSummary { + estimated_reclaimable_space: Float! + total_database_size: Float! + total_indexes_size: Float! + total_table_size: Float! +} + +""" +Boolean expression to compare columns of type "String". All fields are combined with logical 'AND'. +""" +input String_array_comparison_exp { + """is the array contained in the given array value""" + _contained_in: [String!] + + """does the array contain the given value""" + _contains: [String!] + _eq: [String!] + _gt: [String!] + _gte: [String!] + _in: [[String!]!] + _is_null: Boolean + _lt: [String!] + _lte: [String!] + _neq: [String!] + _nin: [[String!]!] +} + +""" +Boolean expression to compare columns of type "String". All fields are combined with logical 'AND'. +""" +input String_comparison_exp { + _eq: String + _gt: String + _gte: String + + """does the column match the given case-insensitive pattern""" + _ilike: String + _in: [String!] + + """ + does the column match the given POSIX regular expression, case insensitive + """ + _iregex: String + _is_null: Boolean + + """does the column match the given pattern""" + _like: String + _lt: String + _lte: String + _neq: String + + """does the column NOT match the given case-insensitive pattern""" + _nilike: String + _nin: [String!] + + """ + does the column NOT match the given POSIX regular expression, case insensitive + """ + _niregex: String + + """does the column NOT match the given pattern""" + _nlike: String + + """ + does the column NOT match the given POSIX regular expression, case sensitive + """ + _nregex: String + + """does the column NOT match the given SQL regular expression""" + _nsimilar: String + + """ + does the column match the given POSIX regular expression, case sensitive + """ + _regex: String + + """does the column match the given SQL regular expression""" + _similar: String +} + +type SuccessOutput { + success: Boolean! +} + +type SyncPluginRegistryOutput { + plugins: Int! + versions: Int! +} + +type TableIOStat { + cache_hit_ratio: Float + heap_blks_hit: Int! + heap_blks_read: Int! + idx_blks_hit: Int! + idx_blks_read: Int! + relname: String! + schemaname: String! +} + +type TableSizeInfo { + estimated_dead_tuple_bytes: Float! + indexes_size: Float! + n_dead_tup: Int! + n_live_tup: Int! + schemaname: String! + table_size: Float! + tablename: String! + total_size: Float! +} + +type TableStat { + idx_scan: Int + idx_tup_fetch: Int + last_analyze: timestamp + last_autoanalyze: timestamp + last_autovacuum: timestamp + last_vacuum: timestamp + n_dead_tup: Int! + n_live_tup: Int! + n_tup_del: Int! + n_tup_hot_upd: Int! + n_tup_ins: Int! + n_tup_upd: Int! + relname: String! + schemaname: String! + seq_scan: Int! + seq_tup_read: Int! +} + +type TeamCalendarOutput { + url: String! +} + +type TelemetryActivityPoint { + day: String! + installs: Int! + matches: Int! +} + +type TelemetryCountryCount { + country: String! + installs: Int! +} + +type TelemetryFeatureAdoption { + counted: Int! + enabled: Int! + flagged: Int! + installsUsing: Int! + key: String! + kind: String! + reporting: Int! + total: Int! +} + +type TelemetryFleetTotals { + appearancesReported: Int! + competitionReported: Int! + dedicatedServers: Int! + eventTeams: Int! + events: Int! + gameModes: Int! + gameModesEnabled: Int! + gameModesUnranked: Int! + gameServerNodes: Int! + gameServerNodesEnabled: Int! + gameServerNodesOnline: Int! + gpuNodes: Int! + leagueRegistrations: Int! + leagueSeasons: Int! + leagueSeasonsFinished: Int! + leagueTeams: Int! + mapsPlayed: Int! + matches: Int! + matchesAbandoned: Int! + matchesCreated: Int! + matchesFinished: Int! + matchesImported: Int! + matchesImportedMonth: Int! + matchesImportedYear: Int! + matchesLeague: Int! + matchesLive: Int! + matchesMonth: Int! + matchesScrim: Int! + matchesTournament: Int! + matchesWeek: Int! + matchesYear: Int! + outcomesReported: Int! + panels: Int! + playerAppearances: Int! + playersActive30d: Int! + playersActive7d: Int! + playersKnown: Int! + playersPlayed: Int! + playersRegistered: Int! + pluginsBySlug: jsonb + pluginsManual: Int! + pluginsReported: Int! + pluginsRequested: Int! + publicServers: Int! + regions: Int! + scrimRequests: Int! + servers: Int! + serversEnabled: Int! + teams: Int! + tournamentTeams: Int! + tournaments: Int! + tournamentsFinished: Int! +} + +type TelemetryGrowthPoint { + installs: Int! + month: String! +} + +type TelemetryInstallCounts { + active24h: Int! + active30d: Int! + active7d: Int! + new30d: Int! + retained180d: Int! + total: Int! +} + +type TelemetryMatchSourceCount { + matches: Int! + source: String! +} + +type TelemetryMatchTypeCount { + matches: Int! + type: String! +} + +type TelemetryRuntimeCount { + installs: Int! + runtime: String! +} + +type TelemetryStats { + activity: [TelemetryActivityPoint!]! + countries: [TelemetryCountryCount!]! + features: [TelemetryFeatureAdoption!]! + growth: [TelemetryGrowthPoint!]! + installs: TelemetryInstallCounts! + matchSources: [TelemetryMatchSourceCount!]! + matchTypes: [TelemetryMatchTypeCount!]! + online: Int! + runtimes: [TelemetryRuntimeCount!]! + totals: TelemetryFleetTotals! + utility: TelemetryUtilityTotals! + utilitySources: [TelemetryUtilitySourceCount!]! + utilityTypes: [TelemetryUtilityTypeCount!]! + versions: [TelemetryVersionCount!]! +} + +type TelemetryUtilitySourceCount { + lineups: Int! + source: String! +} + +type TelemetryUtilityTotals { + archived: Int! + attempts: Int! + authors: Int! + collections: Int! + demoThrows: Int! + demosMined: Int! + driftFlagged: Int! + driftScans: Int! + favorites: Int! + hosts: Int! + lineups: Int! + maps: Int! + mastered: Int! + metaLineups: Int! + month: Int! + pendingReview: Int! + playbookSteps: Int! + playbooks: Int! + practicing: Int! + previews: Int! + private: Int! + public: Int! + repairs: Int! + reported: Int! + sessions: Int! + sessionsFailed: Int! + sessionsMonth: Int! + sessionsWeek: Int! + successes: Int! + team: Int! + verified: Int! + votes: Int! + week: Int! +} + +type TelemetryUtilityTypeCount { + lineups: Int! + type: String! +} + +type TelemetryVersionCount { + installs: Int! + rank: Int! + since: String! + version: String! +} + +type TestUploadResponse { + error: String +} + +type TimescaleJob { + hypertable_name: String + job_id: Int! + job_type: String! + last_run_status: String + next_start: timestamp +} + +type TimescaleStats { + chunks_count: Int! + hypertables: [HypertableInfo]! + jobs: [TimescaleJob]! +} + +type TournamentAward { + award_id: uuid + custom_name: String + id: uuid! + image_url: String + placement: Int! + silhouette: Int + tournament_id: uuid! +} + +type TournamentDraftOutput { + teams_created: Int! +} + +type TournamentInviteCodeOutput { + code: String! + id: uuid! +} + +type TournamentMatchResetImpact { + bracket_id: uuid! + depth: Int! + is_source: Boolean! + match_id: uuid + match_number: Int! + match_status: String + path: String + round: Int! + stage_type: String! + will_delete_match: Boolean! +} + +type UtilityBlockingOutput { + degraded: Boolean + message: String + results: [UtilityBlockingResult!]! +} + +type UtilityBlockingResult { + blocked: Boolean! + depth: Float! + transmittance: Float! + utility_lineup_id: uuid! +} + +type UtilityCalibrationOutput { + detail: String + ready: Boolean! + status: String! +} + +type UtilityDriftScanOutput { + lineups: Int! + scan_id: uuid! +} + +type UtilityDrillLoadOutput { + map_name: String + queued: Int! + reason: String! + sent: Boolean! +} + +type UtilityImportError { + external_id: String + index: Int! + reason: String! +} + +type UtilityImportOutput { + dry_run: Boolean! + errors: [UtilityImportError!]! + failed: Int! + imported: Int! + total: Int! + updated: Int! +} + +type UtilityLaunchSeedBackfillOutput { + done: Boolean! + scanned: Int! + seeded: Int! + skipped: Int! +} + +type UtilityLineupOutput { + id: uuid! +} + +type UtilityLoadOutput { + map_name: String + reason: String! + sent: Boolean! +} + +type UtilityMissPatternOutput { + analysed: Boolean! + bias: String + mean_along: Float + mean_lateral: Float + mean_vertical: Float + message: String + players: Int! + samples: Int! +} + +type UtilityOneWayOutput { + degraded: Boolean + message: String + results: [UtilityOneWayResult!]! +} + +type UtilityOneWayResult { + cause: String + confidence: String! + contested: Boolean! + favors: String + index: Int! + one_way: Boolean! +} + +type UtilityPlaybookCoverageOutput { + degraded: Boolean + message: String + results: [UtilityPlaybookCoverageResult!]! +} + +type UtilityPlaybookCoverageResult { + by_step: Int + covered: Boolean! + depth: Float + index: Int! + transmittance: Float +} + +type UtilityPlaybookOutput { + id: uuid! +} + +input UtilityPlaybookStepInput { + assigned_steam_id: String + note: String + offset_ms: Int + utility_lineup_id: uuid! +} + +type UtilityPracticeMapChangeOutput { + map_name: String! + queued: Boolean! + success: Boolean! +} + +type UtilityPracticePlanEntry { + attempts: Int! + difficulty: String! + global_attempts: Int! + global_landing_rate: Float + global_players: Int! + mastered: Boolean! + meta_throwers: Int! + priority: Float! + reason: String! + successes: Int! + utility_lineup_id: uuid! +} + +type UtilityPracticePlanOutput { + analysed: Boolean! + entries: [UtilityPracticePlanEntry!]! + message: String +} + +type UtilityPracticeServer { + held_by: String + id: uuid! + in_use: Boolean! + label: String! + region: String! +} + +type UtilityPracticeServersOutput { + servers: [UtilityPracticeServer!]! +} + +type UtilityPracticeSessionOutput { + id: uuid! + invite_code: String + match_id: uuid + status: String +} + +type UtilityPracticeWhereOutput { + map_name: String + on_server: Boolean! + session_id: uuid + switching: Boolean! +} + +type UtilityPurgeOutput { + dry_run: Boolean! + lineups: Int! + origin_source: String! +} + +type UtilityRemineOutput { + demos: Int! + done: Boolean! + throws: Int! +} + +type UtilityRenderClearOutput { + cleared: Int! +} + +type UtilityRenderQueueOutput { + reason: String + render_id: uuid + status: String! + success: Boolean! +} + +input UtilityScratchLineupInput { + client_id: String! + eye_z: Float! + land_x: Float + land_y: Float + land_z: Float + map_name: String! + name: String! + origin_x: Float! + origin_y: Float! + origin_z: Float! + side: String! + technique: String! + throw_strength: String! + utility_type: String! + view_pitch: Float! + view_yaw: Float! +} + +type UtilitySightlineOutput { + degraded: Boolean + message: String + results: [UtilitySightlineResult!]! + threshold: Float! +} + +input UtilitySightlinePairInput { + from_x: Float! + from_y: Float! + from_z: Float! + to_x: Float! + to_y: Float! + to_z: Float! +} + +type UtilitySightlineResult { + blocked: Boolean! + blocked_by: String + depth: Float! + index: Int! + transmittance: Float! + world_blocked: Boolean! +} + +type UtilitySolveOutput { + accepted: Boolean! + message: String + status: String! +} + +type UtilityTeamUtilityEntry { + landed: Int! + players: Int! + thrown: Int! + utility_lineup_id: uuid! +} + +type UtilityTeamUtilityOutput { + analysed: Boolean! + entries: [UtilityTeamUtilityEntry!]! + message: String +} + +type UtilityUtilityReportOutput { + analysed: Boolean! + by_type: [UtilityUtilityTypeReport!]! + landed: Int! + matched_lineups: Int! + matched_meta: Int! + message: String + radius: Float! + steam_id: String! + throws: Int! +} + +type UtilityUtilityTypeReport { + landed: Int! + matched_lineups: Int! + matched_meta: Int! + throws: Int! + utility_type: String! +} + +type WatchDemoOutput { + match_map_id: String + session_id: String! + stream_url: String! + success: Boolean! +} + +type WebPushPlatformCount { + devices: Int! + platform: String! +} + +type WebPushStatusOutput { + active_7d: Int! + configured: Boolean! + last_delivered_at: timestamptz + managed_by_environment: Boolean! + never_delivered: Int! + new_7d: Int! + platforms: [WebPushPlatformCount!]! + players: Int! + subscriptions: Int! +} + +""" +columns and relationships of "_map_pool" +""" +type _map_pool { + map_id: uuid! + map_pool_id: uuid! +} + +""" +aggregated selection of "_map_pool" +""" +type _map_pool_aggregate { + aggregate: _map_pool_aggregate_fields + nodes: [_map_pool!]! +} + +""" +aggregate fields of "_map_pool" +""" +type _map_pool_aggregate_fields { + count(columns: [_map_pool_select_column!], distinct: Boolean): Int! + max: _map_pool_max_fields + min: _map_pool_min_fields +} + +""" +Boolean expression to filter rows from the table "_map_pool". All fields are combined with a logical 'AND'. +""" +input _map_pool_bool_exp { + _and: [_map_pool_bool_exp!] + _not: _map_pool_bool_exp + _or: [_map_pool_bool_exp!] + map_id: uuid_comparison_exp + map_pool_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "_map_pool" +""" +enum _map_pool_constraint { + """ + unique or primary key constraint on columns "map_pool_id", "map_id" + """ + map_pool_pkey +} + +""" +input type for inserting data into table "_map_pool" +""" +input _map_pool_insert_input { + map_id: uuid + map_pool_id: uuid +} + +"""aggregate max on columns""" +type _map_pool_max_fields { + map_id: uuid + map_pool_id: uuid +} + +"""aggregate min on columns""" +type _map_pool_min_fields { + map_id: uuid + map_pool_id: uuid +} + +""" +response of any mutation on the table "_map_pool" +""" +type _map_pool_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [_map_pool!]! +} + +""" +on_conflict condition type for table "_map_pool" +""" +input _map_pool_on_conflict { + constraint: _map_pool_constraint! + update_columns: [_map_pool_update_column!]! = [] + where: _map_pool_bool_exp +} + +"""Ordering options when selecting data from "_map_pool".""" +input _map_pool_order_by { + map_id: order_by + map_pool_id: order_by +} + +"""primary key columns input for table: _map_pool""" +input _map_pool_pk_columns_input { + map_id: uuid! + map_pool_id: uuid! +} + +""" +select columns of table "_map_pool" +""" +enum _map_pool_select_column { + """column name""" + map_id + + """column name""" + map_pool_id +} + +""" +input type for updating data in table "_map_pool" +""" +input _map_pool_set_input { + map_id: uuid + map_pool_id: uuid +} + +""" +Streaming cursor of the table "_map_pool" +""" +input _map_pool_stream_cursor_input { + """Stream column input with initial value""" + initial_value: _map_pool_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input _map_pool_stream_cursor_value_input { + map_id: uuid + map_pool_id: uuid +} + +""" +update columns of table "_map_pool" +""" +enum _map_pool_update_column { + """column name""" + map_id + + """column name""" + map_pool_id +} + +input _map_pool_updates { + """sets the columns of the filtered rows to the given values""" + _set: _map_pool_set_input + + """filter the rows which have to be updated""" + where: _map_pool_bool_exp! +} + +scalar _uuid + +""" +columns and relationships of "abandoned_matches" +""" +type abandoned_matches { + abandoned_at: timestamptz! + id: uuid! + + """An object relationship""" + match: matches + match_id: uuid + steam_id: bigint! +} + +""" +aggregated selection of "abandoned_matches" +""" +type abandoned_matches_aggregate { + aggregate: abandoned_matches_aggregate_fields + nodes: [abandoned_matches!]! +} + +input abandoned_matches_aggregate_bool_exp { + count: abandoned_matches_aggregate_bool_exp_count +} + +input abandoned_matches_aggregate_bool_exp_count { + arguments: [abandoned_matches_select_column!] + distinct: Boolean + filter: abandoned_matches_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "abandoned_matches" +""" +type abandoned_matches_aggregate_fields { + avg: abandoned_matches_avg_fields + count(columns: [abandoned_matches_select_column!], distinct: Boolean): Int! + max: abandoned_matches_max_fields + min: abandoned_matches_min_fields + stddev: abandoned_matches_stddev_fields + stddev_pop: abandoned_matches_stddev_pop_fields + stddev_samp: abandoned_matches_stddev_samp_fields + sum: abandoned_matches_sum_fields + var_pop: abandoned_matches_var_pop_fields + var_samp: abandoned_matches_var_samp_fields + variance: abandoned_matches_variance_fields +} + +""" +order by aggregate values of table "abandoned_matches" +""" +input abandoned_matches_aggregate_order_by { + avg: abandoned_matches_avg_order_by + count: order_by + max: abandoned_matches_max_order_by + min: abandoned_matches_min_order_by + stddev: abandoned_matches_stddev_order_by + stddev_pop: abandoned_matches_stddev_pop_order_by + stddev_samp: abandoned_matches_stddev_samp_order_by + sum: abandoned_matches_sum_order_by + var_pop: abandoned_matches_var_pop_order_by + var_samp: abandoned_matches_var_samp_order_by + variance: abandoned_matches_variance_order_by +} + +""" +input type for inserting array relation for remote table "abandoned_matches" +""" +input abandoned_matches_arr_rel_insert_input { + data: [abandoned_matches_insert_input!]! + + """upsert condition""" + on_conflict: abandoned_matches_on_conflict +} + +"""aggregate avg on columns""" +type abandoned_matches_avg_fields { + steam_id: Float +} + +""" +order by avg() on columns of table "abandoned_matches" +""" +input abandoned_matches_avg_order_by { + steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "abandoned_matches". All fields are combined with a logical 'AND'. +""" +input abandoned_matches_bool_exp { + _and: [abandoned_matches_bool_exp!] + _not: abandoned_matches_bool_exp + _or: [abandoned_matches_bool_exp!] + abandoned_at: timestamptz_comparison_exp + id: uuid_comparison_exp + match: matches_bool_exp + match_id: uuid_comparison_exp + steam_id: bigint_comparison_exp +} + +""" +unique or primary key constraints on table "abandoned_matches" +""" +enum abandoned_matches_constraint { + """ + unique or primary key constraint on columns "id" + """ + abandoned_matches_pkey + + """ + unique or primary key constraint on columns "steam_id", "match_id" + """ + abandoned_matches_steam_id_match_id_key +} + +""" +input type for incrementing numeric columns in table "abandoned_matches" +""" +input abandoned_matches_inc_input { + steam_id: bigint +} + +""" +input type for inserting data into table "abandoned_matches" +""" +input abandoned_matches_insert_input { + abandoned_at: timestamptz + id: uuid + match: matches_obj_rel_insert_input + match_id: uuid + steam_id: bigint +} + +"""aggregate max on columns""" +type abandoned_matches_max_fields { + abandoned_at: timestamptz + id: uuid + match_id: uuid + steam_id: bigint +} + +""" +order by max() on columns of table "abandoned_matches" +""" +input abandoned_matches_max_order_by { + abandoned_at: order_by + id: order_by + match_id: order_by + steam_id: order_by +} + +"""aggregate min on columns""" +type abandoned_matches_min_fields { + abandoned_at: timestamptz + id: uuid + match_id: uuid + steam_id: bigint +} + +""" +order by min() on columns of table "abandoned_matches" +""" +input abandoned_matches_min_order_by { + abandoned_at: order_by + id: order_by + match_id: order_by + steam_id: order_by +} + +""" +response of any mutation on the table "abandoned_matches" +""" +type abandoned_matches_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [abandoned_matches!]! +} + +""" +on_conflict condition type for table "abandoned_matches" +""" +input abandoned_matches_on_conflict { + constraint: abandoned_matches_constraint! + update_columns: [abandoned_matches_update_column!]! = [] + where: abandoned_matches_bool_exp +} + +"""Ordering options when selecting data from "abandoned_matches".""" +input abandoned_matches_order_by { + abandoned_at: order_by + id: order_by + match: matches_order_by + match_id: order_by + steam_id: order_by +} + +"""primary key columns input for table: abandoned_matches""" +input abandoned_matches_pk_columns_input { + id: uuid! +} + +""" +select columns of table "abandoned_matches" +""" +enum abandoned_matches_select_column { + """column name""" + abandoned_at + + """column name""" + id + + """column name""" + match_id + + """column name""" + steam_id +} + +""" +input type for updating data in table "abandoned_matches" +""" +input abandoned_matches_set_input { + abandoned_at: timestamptz + id: uuid + match_id: uuid + steam_id: bigint +} + +"""aggregate stddev on columns""" +type abandoned_matches_stddev_fields { + steam_id: Float +} + +""" +order by stddev() on columns of table "abandoned_matches" +""" +input abandoned_matches_stddev_order_by { + steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type abandoned_matches_stddev_pop_fields { + steam_id: Float +} + +""" +order by stddev_pop() on columns of table "abandoned_matches" +""" +input abandoned_matches_stddev_pop_order_by { + steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type abandoned_matches_stddev_samp_fields { + steam_id: Float +} + +""" +order by stddev_samp() on columns of table "abandoned_matches" +""" +input abandoned_matches_stddev_samp_order_by { + steam_id: order_by +} + +""" +Streaming cursor of the table "abandoned_matches" +""" +input abandoned_matches_stream_cursor_input { + """Stream column input with initial value""" + initial_value: abandoned_matches_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input abandoned_matches_stream_cursor_value_input { + abandoned_at: timestamptz + id: uuid + match_id: uuid + steam_id: bigint +} + +"""aggregate sum on columns""" +type abandoned_matches_sum_fields { + steam_id: bigint +} + +""" +order by sum() on columns of table "abandoned_matches" +""" +input abandoned_matches_sum_order_by { + steam_id: order_by +} + +""" +update columns of table "abandoned_matches" +""" +enum abandoned_matches_update_column { + """column name""" + abandoned_at + + """column name""" + id + + """column name""" + match_id + + """column name""" + steam_id +} + +input abandoned_matches_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: abandoned_matches_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: abandoned_matches_set_input + + """filter the rows which have to be updated""" + where: abandoned_matches_bool_exp! +} + +"""aggregate var_pop on columns""" +type abandoned_matches_var_pop_fields { + steam_id: Float +} + +""" +order by var_pop() on columns of table "abandoned_matches" +""" +input abandoned_matches_var_pop_order_by { + steam_id: order_by +} + +"""aggregate var_samp on columns""" +type abandoned_matches_var_samp_fields { + steam_id: Float +} + +""" +order by var_samp() on columns of table "abandoned_matches" +""" +input abandoned_matches_var_samp_order_by { + steam_id: order_by +} + +"""aggregate variance on columns""" +type abandoned_matches_variance_fields { + steam_id: Float +} + +""" +order by variance() on columns of table "abandoned_matches" +""" +input abandoned_matches_variance_order_by { + steam_id: order_by +} + +""" +columns and relationships of "api_keys" +""" +type api_keys { + created_at: timestamptz! + id: uuid! + label: String! + last_used_at: timestamptz + steam_id: bigint! +} + +""" +aggregated selection of "api_keys" +""" +type api_keys_aggregate { + aggregate: api_keys_aggregate_fields + nodes: [api_keys!]! +} + +""" +aggregate fields of "api_keys" +""" +type api_keys_aggregate_fields { + avg: api_keys_avg_fields + count(columns: [api_keys_select_column!], distinct: Boolean): Int! + max: api_keys_max_fields + min: api_keys_min_fields + stddev: api_keys_stddev_fields + stddev_pop: api_keys_stddev_pop_fields + stddev_samp: api_keys_stddev_samp_fields + sum: api_keys_sum_fields + var_pop: api_keys_var_pop_fields + var_samp: api_keys_var_samp_fields + variance: api_keys_variance_fields +} + +"""aggregate avg on columns""" +type api_keys_avg_fields { + steam_id: Float +} + +""" +Boolean expression to filter rows from the table "api_keys". All fields are combined with a logical 'AND'. +""" +input api_keys_bool_exp { + _and: [api_keys_bool_exp!] + _not: api_keys_bool_exp + _or: [api_keys_bool_exp!] + created_at: timestamptz_comparison_exp + id: uuid_comparison_exp + label: String_comparison_exp + last_used_at: timestamptz_comparison_exp + steam_id: bigint_comparison_exp +} + +""" +unique or primary key constraints on table "api_keys" +""" +enum api_keys_constraint { + """ + unique or primary key constraint on columns "id" + """ + api_keys_pkey +} + +""" +input type for incrementing numeric columns in table "api_keys" +""" +input api_keys_inc_input { + steam_id: bigint +} + +""" +input type for inserting data into table "api_keys" +""" +input api_keys_insert_input { + created_at: timestamptz + id: uuid + label: String + last_used_at: timestamptz + steam_id: bigint +} + +"""aggregate max on columns""" +type api_keys_max_fields { + created_at: timestamptz + id: uuid + label: String + last_used_at: timestamptz + steam_id: bigint +} + +"""aggregate min on columns""" +type api_keys_min_fields { + created_at: timestamptz + id: uuid + label: String + last_used_at: timestamptz + steam_id: bigint +} + +""" +response of any mutation on the table "api_keys" +""" +type api_keys_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [api_keys!]! +} + +""" +on_conflict condition type for table "api_keys" +""" +input api_keys_on_conflict { + constraint: api_keys_constraint! + update_columns: [api_keys_update_column!]! = [] + where: api_keys_bool_exp +} + +"""Ordering options when selecting data from "api_keys".""" +input api_keys_order_by { + created_at: order_by + id: order_by + label: order_by + last_used_at: order_by + steam_id: order_by +} + +"""primary key columns input for table: api_keys""" +input api_keys_pk_columns_input { + id: uuid! +} + +""" +select columns of table "api_keys" +""" +enum api_keys_select_column { + """column name""" + created_at + + """column name""" + id + + """column name""" + label + + """column name""" + last_used_at + + """column name""" + steam_id +} + +""" +input type for updating data in table "api_keys" +""" +input api_keys_set_input { + created_at: timestamptz + id: uuid + label: String + last_used_at: timestamptz + steam_id: bigint +} + +"""aggregate stddev on columns""" +type api_keys_stddev_fields { + steam_id: Float +} + +"""aggregate stddev_pop on columns""" +type api_keys_stddev_pop_fields { + steam_id: Float +} + +"""aggregate stddev_samp on columns""" +type api_keys_stddev_samp_fields { + steam_id: Float +} + +""" +Streaming cursor of the table "api_keys" +""" +input api_keys_stream_cursor_input { + """Stream column input with initial value""" + initial_value: api_keys_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input api_keys_stream_cursor_value_input { + created_at: timestamptz + id: uuid + label: String + last_used_at: timestamptz + steam_id: bigint +} + +"""aggregate sum on columns""" +type api_keys_sum_fields { + steam_id: bigint +} + +""" +update columns of table "api_keys" +""" +enum api_keys_update_column { + """column name""" + created_at + + """column name""" + id + + """column name""" + label + + """column name""" + last_used_at + + """column name""" + steam_id +} + +input api_keys_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: api_keys_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: api_keys_set_input + + """filter the rows which have to be updated""" + where: api_keys_bool_exp! +} + +"""aggregate var_pop on columns""" +type api_keys_var_pop_fields { + steam_id: Float +} + +"""aggregate var_samp on columns""" +type api_keys_var_samp_fields { + steam_id: Float +} + +"""aggregate variance on columns""" +type api_keys_variance_fields { + steam_id: Float +} + +input approve_league_season_movements_args { + _league_season_id: uuid +} + +""" +columns and relationships of "award_recipients" +""" +type award_recipients { + """An object relationship""" + award: awards! + award_id: uuid! + + """An object relationship""" + awarded_by: players + awarded_by_steam_id: bigint + created_at: timestamptz! + + """An object relationship""" + event: events + event_id: uuid + id: uuid! + + """An object relationship""" + league_season: league_seasons + league_season_id: uuid + note: String + placement: Int + placement_tier: String + + """An object relationship""" + player: players + player_steam_id: bigint + + """An object relationship""" + season: seasons + season_id: uuid + source: e_award_sources_enum! + + """An object relationship""" + team: teams + team_id: uuid + + """An object relationship""" + tournament: tournaments + + """An object relationship""" + tournament_award: tournament_awards + tournament_id: uuid + + """An object relationship""" + tournament_team: tournament_teams + tournament_team_id: uuid +} + +""" +aggregated selection of "award_recipients" +""" +type award_recipients_aggregate { + aggregate: award_recipients_aggregate_fields + nodes: [award_recipients!]! +} + +input award_recipients_aggregate_bool_exp { + count: award_recipients_aggregate_bool_exp_count +} + +input award_recipients_aggregate_bool_exp_count { + arguments: [award_recipients_select_column!] + distinct: Boolean + filter: award_recipients_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "award_recipients" +""" +type award_recipients_aggregate_fields { + avg: award_recipients_avg_fields + count(columns: [award_recipients_select_column!], distinct: Boolean): Int! + max: award_recipients_max_fields + min: award_recipients_min_fields + stddev: award_recipients_stddev_fields + stddev_pop: award_recipients_stddev_pop_fields + stddev_samp: award_recipients_stddev_samp_fields + sum: award_recipients_sum_fields + var_pop: award_recipients_var_pop_fields + var_samp: award_recipients_var_samp_fields + variance: award_recipients_variance_fields +} + +""" +order by aggregate values of table "award_recipients" +""" +input award_recipients_aggregate_order_by { + avg: award_recipients_avg_order_by + count: order_by + max: award_recipients_max_order_by + min: award_recipients_min_order_by + stddev: award_recipients_stddev_order_by + stddev_pop: award_recipients_stddev_pop_order_by + stddev_samp: award_recipients_stddev_samp_order_by + sum: award_recipients_sum_order_by + var_pop: award_recipients_var_pop_order_by + var_samp: award_recipients_var_samp_order_by + variance: award_recipients_variance_order_by +} + +""" +input type for inserting array relation for remote table "award_recipients" +""" +input award_recipients_arr_rel_insert_input { + data: [award_recipients_insert_input!]! + + """upsert condition""" + on_conflict: award_recipients_on_conflict +} + +"""aggregate avg on columns""" +type award_recipients_avg_fields { + awarded_by_steam_id: Float + placement: Float + player_steam_id: Float +} + +""" +order by avg() on columns of table "award_recipients" +""" +input award_recipients_avg_order_by { + awarded_by_steam_id: order_by + placement: order_by + player_steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "award_recipients". All fields are combined with a logical 'AND'. +""" +input award_recipients_bool_exp { + _and: [award_recipients_bool_exp!] + _not: award_recipients_bool_exp + _or: [award_recipients_bool_exp!] + award: awards_bool_exp + award_id: uuid_comparison_exp + awarded_by: players_bool_exp + awarded_by_steam_id: bigint_comparison_exp + created_at: timestamptz_comparison_exp + event: events_bool_exp + event_id: uuid_comparison_exp + id: uuid_comparison_exp + league_season: league_seasons_bool_exp + league_season_id: uuid_comparison_exp + note: String_comparison_exp + placement: Int_comparison_exp + placement_tier: String_comparison_exp + player: players_bool_exp + player_steam_id: bigint_comparison_exp + season: seasons_bool_exp + season_id: uuid_comparison_exp + source: e_award_sources_enum_comparison_exp + team: teams_bool_exp + team_id: uuid_comparison_exp + tournament: tournaments_bool_exp + tournament_award: tournament_awards_bool_exp + tournament_id: uuid_comparison_exp + tournament_team: tournament_teams_bool_exp + tournament_team_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "award_recipients" +""" +enum award_recipients_constraint { + """ + unique or primary key constraint on columns "tournament_id" + """ + award_recipients_one_mvp_per_tournament + + """ + unique or primary key constraint on columns "id" + """ + award_recipients_pkey + + """ + unique or primary key constraint on columns "player_steam_id", "placement", "tournament_team_id", "tournament_id" + """ + award_recipients_player_recipient_key + + """ + unique or primary key constraint on columns "player_steam_id", "placement", "season_id" + """ + award_recipients_season_player_key + + """ + unique or primary key constraint on columns "placement", "tournament_team_id", "tournament_id", "team_id" + """ + award_recipients_team_recipient_key +} + +""" +input type for incrementing numeric columns in table "award_recipients" +""" +input award_recipients_inc_input { + awarded_by_steam_id: bigint + placement: Int + player_steam_id: bigint +} + +""" +input type for inserting data into table "award_recipients" +""" +input award_recipients_insert_input { + award: awards_obj_rel_insert_input + award_id: uuid + awarded_by: players_obj_rel_insert_input + awarded_by_steam_id: bigint + created_at: timestamptz + event: events_obj_rel_insert_input + event_id: uuid + id: uuid + league_season: league_seasons_obj_rel_insert_input + league_season_id: uuid + note: String + placement: Int + player: players_obj_rel_insert_input + player_steam_id: bigint + season: seasons_obj_rel_insert_input + season_id: uuid + source: e_award_sources_enum + team: teams_obj_rel_insert_input + team_id: uuid + tournament: tournaments_obj_rel_insert_input + tournament_award: tournament_awards_obj_rel_insert_input + tournament_id: uuid + tournament_team: tournament_teams_obj_rel_insert_input + tournament_team_id: uuid +} + +"""aggregate max on columns""" +type award_recipients_max_fields { + award_id: uuid + awarded_by_steam_id: bigint + created_at: timestamptz + event_id: uuid + id: uuid + league_season_id: uuid + note: String + placement: Int + placement_tier: String + player_steam_id: bigint + season_id: uuid + team_id: uuid + tournament_id: uuid + tournament_team_id: uuid +} + +""" +order by max() on columns of table "award_recipients" +""" +input award_recipients_max_order_by { + award_id: order_by + awarded_by_steam_id: order_by + created_at: order_by + event_id: order_by + id: order_by + league_season_id: order_by + note: order_by + placement: order_by + placement_tier: order_by + player_steam_id: order_by + season_id: order_by + team_id: order_by + tournament_id: order_by + tournament_team_id: order_by +} + +"""aggregate min on columns""" +type award_recipients_min_fields { + award_id: uuid + awarded_by_steam_id: bigint + created_at: timestamptz + event_id: uuid + id: uuid + league_season_id: uuid + note: String + placement: Int + placement_tier: String + player_steam_id: bigint + season_id: uuid + team_id: uuid + tournament_id: uuid + tournament_team_id: uuid +} + +""" +order by min() on columns of table "award_recipients" +""" +input award_recipients_min_order_by { + award_id: order_by + awarded_by_steam_id: order_by + created_at: order_by + event_id: order_by + id: order_by + league_season_id: order_by + note: order_by + placement: order_by + placement_tier: order_by + player_steam_id: order_by + season_id: order_by + team_id: order_by + tournament_id: order_by + tournament_team_id: order_by +} + +""" +response of any mutation on the table "award_recipients" +""" +type award_recipients_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [award_recipients!]! +} + +""" +on_conflict condition type for table "award_recipients" +""" +input award_recipients_on_conflict { + constraint: award_recipients_constraint! + update_columns: [award_recipients_update_column!]! = [] + where: award_recipients_bool_exp +} + +"""Ordering options when selecting data from "award_recipients".""" +input award_recipients_order_by { + award: awards_order_by + award_id: order_by + awarded_by: players_order_by + awarded_by_steam_id: order_by + created_at: order_by + event: events_order_by + event_id: order_by + id: order_by + league_season: league_seasons_order_by + league_season_id: order_by + note: order_by + placement: order_by + placement_tier: order_by + player: players_order_by + player_steam_id: order_by + season: seasons_order_by + season_id: order_by + source: order_by + team: teams_order_by + team_id: order_by + tournament: tournaments_order_by + tournament_award: tournament_awards_order_by + tournament_id: order_by + tournament_team: tournament_teams_order_by + tournament_team_id: order_by +} + +"""primary key columns input for table: award_recipients""" +input award_recipients_pk_columns_input { + id: uuid! +} + +""" +select columns of table "award_recipients" +""" +enum award_recipients_select_column { + """column name""" + award_id + + """column name""" + awarded_by_steam_id + + """column name""" + created_at + + """column name""" + event_id + + """column name""" + id + + """column name""" + league_season_id + + """column name""" + note + + """column name""" + placement + + """column name""" + placement_tier + + """column name""" + player_steam_id + + """column name""" + season_id + + """column name""" + source + + """column name""" + team_id + + """column name""" + tournament_id + + """column name""" + tournament_team_id +} + +""" +input type for updating data in table "award_recipients" +""" +input award_recipients_set_input { + award_id: uuid + awarded_by_steam_id: bigint + created_at: timestamptz + event_id: uuid + id: uuid + league_season_id: uuid + note: String + placement: Int + player_steam_id: bigint + season_id: uuid + source: e_award_sources_enum + team_id: uuid + tournament_id: uuid + tournament_team_id: uuid +} + +"""aggregate stddev on columns""" +type award_recipients_stddev_fields { + awarded_by_steam_id: Float + placement: Float + player_steam_id: Float +} + +""" +order by stddev() on columns of table "award_recipients" +""" +input award_recipients_stddev_order_by { + awarded_by_steam_id: order_by + placement: order_by + player_steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type award_recipients_stddev_pop_fields { + awarded_by_steam_id: Float + placement: Float + player_steam_id: Float +} + +""" +order by stddev_pop() on columns of table "award_recipients" +""" +input award_recipients_stddev_pop_order_by { + awarded_by_steam_id: order_by + placement: order_by + player_steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type award_recipients_stddev_samp_fields { + awarded_by_steam_id: Float + placement: Float + player_steam_id: Float +} + +""" +order by stddev_samp() on columns of table "award_recipients" +""" +input award_recipients_stddev_samp_order_by { + awarded_by_steam_id: order_by + placement: order_by + player_steam_id: order_by +} + +""" +Streaming cursor of the table "award_recipients" +""" +input award_recipients_stream_cursor_input { + """Stream column input with initial value""" + initial_value: award_recipients_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input award_recipients_stream_cursor_value_input { + award_id: uuid + awarded_by_steam_id: bigint + created_at: timestamptz + event_id: uuid + id: uuid + league_season_id: uuid + note: String + placement: Int + placement_tier: String + player_steam_id: bigint + season_id: uuid + source: e_award_sources_enum + team_id: uuid + tournament_id: uuid + tournament_team_id: uuid +} + +"""aggregate sum on columns""" +type award_recipients_sum_fields { + awarded_by_steam_id: bigint + placement: Int + player_steam_id: bigint +} + +""" +order by sum() on columns of table "award_recipients" +""" +input award_recipients_sum_order_by { + awarded_by_steam_id: order_by + placement: order_by + player_steam_id: order_by +} + +""" +update columns of table "award_recipients" +""" +enum award_recipients_update_column { + """column name""" + award_id + + """column name""" + awarded_by_steam_id + + """column name""" + created_at + + """column name""" + event_id + + """column name""" + id + + """column name""" + league_season_id + + """column name""" + note + + """column name""" + placement + + """column name""" + player_steam_id + + """column name""" + season_id + + """column name""" + source + + """column name""" + team_id + + """column name""" + tournament_id + + """column name""" + tournament_team_id +} + +input award_recipients_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: award_recipients_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: award_recipients_set_input + + """filter the rows which have to be updated""" + where: award_recipients_bool_exp! +} + +"""aggregate var_pop on columns""" +type award_recipients_var_pop_fields { + awarded_by_steam_id: Float + placement: Float + player_steam_id: Float +} + +""" +order by var_pop() on columns of table "award_recipients" +""" +input award_recipients_var_pop_order_by { + awarded_by_steam_id: order_by + placement: order_by + player_steam_id: order_by +} + +"""aggregate var_samp on columns""" +type award_recipients_var_samp_fields { + awarded_by_steam_id: Float + placement: Float + player_steam_id: Float +} + +""" +order by var_samp() on columns of table "award_recipients" +""" +input award_recipients_var_samp_order_by { + awarded_by_steam_id: order_by + placement: order_by + player_steam_id: order_by +} + +"""aggregate variance on columns""" +type award_recipients_variance_fields { + awarded_by_steam_id: Float + placement: Float + player_steam_id: Float +} + +""" +order by variance() on columns of table "award_recipients" +""" +input award_recipients_variance_order_by { + awarded_by_steam_id: order_by + placement: order_by + player_steam_id: order_by +} + +""" +columns and relationships of "awards" +""" +type awards { + allow_multiple: Boolean! + created_at: timestamptz! + + """An object relationship""" + created_by: players + created_by_steam_id: bigint + description: String + + """An object relationship""" + event: events + event_id: uuid + id: uuid! + image_url: String + + """An object relationship""" + league_season: league_seasons + league_season_id: uuid + name: String! + + """An array relationship""" + recipients( + """distinct select on columns""" + distinct_on: [award_recipients_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: [award_recipients_order_by!] + + """filter the rows returned""" + where: award_recipients_bool_exp + ): [award_recipients!]! + + """An aggregate relationship""" + recipients_aggregate( + """distinct select on columns""" + distinct_on: [award_recipients_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: [award_recipients_order_by!] + + """filter the rows returned""" + where: award_recipients_bool_exp + ): award_recipients_aggregate! + + """An object relationship""" + season: seasons + season_id: uuid + silhouette: Int + system_key: String + tier: e_award_tiers_enum! + + """An object relationship""" + tournament: tournaments + + """An array relationship""" + tournament_configs( + """distinct select on columns""" + distinct_on: [tournament_awards_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_awards_order_by!] + + """filter the rows returned""" + where: tournament_awards_bool_exp + ): [tournament_awards!]! + + """An aggregate relationship""" + tournament_configs_aggregate( + """distinct select on columns""" + distinct_on: [tournament_awards_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_awards_order_by!] + + """filter the rows returned""" + where: tournament_awards_bool_exp + ): tournament_awards_aggregate! + tournament_id: uuid + updated_at: timestamptz! +} + +""" +aggregated selection of "awards" +""" +type awards_aggregate { + aggregate: awards_aggregate_fields + nodes: [awards!]! +} + +""" +aggregate fields of "awards" +""" +type awards_aggregate_fields { + avg: awards_avg_fields + count(columns: [awards_select_column!], distinct: Boolean): Int! + max: awards_max_fields + min: awards_min_fields + stddev: awards_stddev_fields + stddev_pop: awards_stddev_pop_fields + stddev_samp: awards_stddev_samp_fields + sum: awards_sum_fields + var_pop: awards_var_pop_fields + var_samp: awards_var_samp_fields + variance: awards_variance_fields +} + +"""aggregate avg on columns""" +type awards_avg_fields { + created_by_steam_id: Float + silhouette: Float +} + +""" +Boolean expression to filter rows from the table "awards". All fields are combined with a logical 'AND'. +""" +input awards_bool_exp { + _and: [awards_bool_exp!] + _not: awards_bool_exp + _or: [awards_bool_exp!] + allow_multiple: Boolean_comparison_exp + created_at: timestamptz_comparison_exp + created_by: players_bool_exp + created_by_steam_id: bigint_comparison_exp + description: String_comparison_exp + event: events_bool_exp + event_id: uuid_comparison_exp + id: uuid_comparison_exp + image_url: String_comparison_exp + league_season: league_seasons_bool_exp + league_season_id: uuid_comparison_exp + name: String_comparison_exp + recipients: award_recipients_bool_exp + recipients_aggregate: award_recipients_aggregate_bool_exp + season: seasons_bool_exp + season_id: uuid_comparison_exp + silhouette: Int_comparison_exp + system_key: String_comparison_exp + tier: e_award_tiers_enum_comparison_exp + tournament: tournaments_bool_exp + tournament_configs: tournament_awards_bool_exp + tournament_configs_aggregate: tournament_awards_aggregate_bool_exp + tournament_id: uuid_comparison_exp + updated_at: timestamptz_comparison_exp +} + +""" +unique or primary key constraints on table "awards" +""" +enum awards_constraint { + """ + unique or primary key constraint on columns "id" + """ + awards_pkey + + """ + unique or primary key constraint on columns "system_key" + """ + awards_system_key_key +} + +""" +input type for incrementing numeric columns in table "awards" +""" +input awards_inc_input { + created_by_steam_id: bigint + silhouette: Int +} + +""" +input type for inserting data into table "awards" +""" +input awards_insert_input { + allow_multiple: Boolean + created_at: timestamptz + created_by: players_obj_rel_insert_input + created_by_steam_id: bigint + description: String + event: events_obj_rel_insert_input + event_id: uuid + id: uuid + image_url: String + league_season: league_seasons_obj_rel_insert_input + league_season_id: uuid + name: String + recipients: award_recipients_arr_rel_insert_input + season: seasons_obj_rel_insert_input + season_id: uuid + silhouette: Int + system_key: String + tier: e_award_tiers_enum + tournament: tournaments_obj_rel_insert_input + tournament_configs: tournament_awards_arr_rel_insert_input + tournament_id: uuid + updated_at: timestamptz +} + +"""aggregate max on columns""" +type awards_max_fields { + created_at: timestamptz + created_by_steam_id: bigint + description: String + event_id: uuid + id: uuid + image_url: String + league_season_id: uuid + name: String + season_id: uuid + silhouette: Int + system_key: String + tournament_id: uuid + updated_at: timestamptz +} + +"""aggregate min on columns""" +type awards_min_fields { + created_at: timestamptz + created_by_steam_id: bigint + description: String + event_id: uuid + id: uuid + image_url: String + league_season_id: uuid + name: String + season_id: uuid + silhouette: Int + system_key: String + tournament_id: uuid + updated_at: timestamptz +} + +""" +response of any mutation on the table "awards" +""" +type awards_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [awards!]! +} + +""" +input type for inserting object relation for remote table "awards" +""" +input awards_obj_rel_insert_input { + data: awards_insert_input! + + """upsert condition""" + on_conflict: awards_on_conflict +} + +""" +on_conflict condition type for table "awards" +""" +input awards_on_conflict { + constraint: awards_constraint! + update_columns: [awards_update_column!]! = [] + where: awards_bool_exp +} + +"""Ordering options when selecting data from "awards".""" +input awards_order_by { + allow_multiple: order_by + created_at: order_by + created_by: players_order_by + created_by_steam_id: order_by + description: order_by + event: events_order_by + event_id: order_by + id: order_by + image_url: order_by + league_season: league_seasons_order_by + league_season_id: order_by + name: order_by + recipients_aggregate: award_recipients_aggregate_order_by + season: seasons_order_by + season_id: order_by + silhouette: order_by + system_key: order_by + tier: order_by + tournament: tournaments_order_by + tournament_configs_aggregate: tournament_awards_aggregate_order_by + tournament_id: order_by + updated_at: order_by +} + +"""primary key columns input for table: awards""" +input awards_pk_columns_input { + id: uuid! +} + +""" +select columns of table "awards" +""" +enum awards_select_column { + """column name""" + allow_multiple + + """column name""" + created_at + + """column name""" + created_by_steam_id + + """column name""" + description + + """column name""" + event_id + + """column name""" + id + + """column name""" + image_url + + """column name""" + league_season_id + + """column name""" + name + + """column name""" + season_id + + """column name""" + silhouette + + """column name""" + system_key + + """column name""" + tier + + """column name""" + tournament_id + + """column name""" + updated_at +} + +""" +input type for updating data in table "awards" +""" +input awards_set_input { + allow_multiple: Boolean + created_at: timestamptz + created_by_steam_id: bigint + description: String + event_id: uuid + id: uuid + image_url: String + league_season_id: uuid + name: String + season_id: uuid + silhouette: Int + system_key: String + tier: e_award_tiers_enum + tournament_id: uuid + updated_at: timestamptz +} + +"""aggregate stddev on columns""" +type awards_stddev_fields { + created_by_steam_id: Float + silhouette: Float +} + +"""aggregate stddev_pop on columns""" +type awards_stddev_pop_fields { + created_by_steam_id: Float + silhouette: Float +} + +"""aggregate stddev_samp on columns""" +type awards_stddev_samp_fields { + created_by_steam_id: Float + silhouette: Float +} + +""" +Streaming cursor of the table "awards" +""" +input awards_stream_cursor_input { + """Stream column input with initial value""" + initial_value: awards_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input awards_stream_cursor_value_input { + allow_multiple: Boolean + created_at: timestamptz + created_by_steam_id: bigint + description: String + event_id: uuid + id: uuid + image_url: String + league_season_id: uuid + name: String + season_id: uuid + silhouette: Int + system_key: String + tier: e_award_tiers_enum + tournament_id: uuid + updated_at: timestamptz +} + +"""aggregate sum on columns""" +type awards_sum_fields { + created_by_steam_id: bigint + silhouette: Int +} + +""" +update columns of table "awards" +""" +enum awards_update_column { + """column name""" + allow_multiple + + """column name""" + created_at + + """column name""" + created_by_steam_id + + """column name""" + description + + """column name""" + event_id + + """column name""" + id + + """column name""" + image_url + + """column name""" + league_season_id + + """column name""" + name + + """column name""" + season_id + + """column name""" + silhouette + + """column name""" + system_key + + """column name""" + tier + + """column name""" + tournament_id + + """column name""" + updated_at +} + +input awards_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: awards_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: awards_set_input + + """filter the rows which have to be updated""" + where: awards_bool_exp! +} + +"""aggregate var_pop on columns""" +type awards_var_pop_fields { + created_by_steam_id: Float + silhouette: Float +} + +"""aggregate var_samp on columns""" +type awards_var_samp_fields { + created_by_steam_id: Float + silhouette: Float +} + +"""aggregate variance on columns""" +type awards_variance_fields { + created_by_steam_id: Float + silhouette: Float +} + +scalar bigint + +""" +Boolean expression to compare columns of type "bigint". All fields are combined with logical 'AND'. +""" +input bigint_array_comparison_exp { + """is the array contained in the given array value""" + _contained_in: [bigint!] + + """does the array contain the given value""" + _contains: [bigint!] + _eq: [bigint!] + _gt: [bigint!] + _gte: [bigint!] + _in: [[bigint!]!] + _is_null: Boolean + _lt: [bigint!] + _lte: [bigint!] + _neq: [bigint!] + _nin: [[bigint!]!] +} + +""" +Boolean expression to compare columns of type "bigint". All fields are combined with logical 'AND'. +""" +input bigint_comparison_exp { + _eq: bigint + _gt: bigint + _gte: bigint + _in: [bigint!] + _is_null: Boolean + _lt: bigint + _lte: bigint + _neq: bigint + _nin: [bigint!] +} + +scalar bytea + +""" +Boolean expression to compare columns of type "bytea". All fields are combined with logical 'AND'. +""" +input bytea_comparison_exp { + _eq: bytea + _gt: bytea + _gte: bytea + _in: [bytea!] + _is_null: Boolean + _lt: bytea + _lte: bytea + _neq: bytea + _nin: [bytea!] +} + +""" +columns and relationships of "chat_read_state" +""" +type chat_read_state { + last_read_at: timestamptz! + steam_id: bigint! + thread: String! +} + +""" +aggregated selection of "chat_read_state" +""" +type chat_read_state_aggregate { + aggregate: chat_read_state_aggregate_fields + nodes: [chat_read_state!]! +} + +""" +aggregate fields of "chat_read_state" +""" +type chat_read_state_aggregate_fields { + avg: chat_read_state_avg_fields + count(columns: [chat_read_state_select_column!], distinct: Boolean): Int! + max: chat_read_state_max_fields + min: chat_read_state_min_fields + stddev: chat_read_state_stddev_fields + stddev_pop: chat_read_state_stddev_pop_fields + stddev_samp: chat_read_state_stddev_samp_fields + sum: chat_read_state_sum_fields + var_pop: chat_read_state_var_pop_fields + var_samp: chat_read_state_var_samp_fields + variance: chat_read_state_variance_fields +} + +"""aggregate avg on columns""" +type chat_read_state_avg_fields { + steam_id: Float +} + +""" +Boolean expression to filter rows from the table "chat_read_state". All fields are combined with a logical 'AND'. +""" +input chat_read_state_bool_exp { + _and: [chat_read_state_bool_exp!] + _not: chat_read_state_bool_exp + _or: [chat_read_state_bool_exp!] + last_read_at: timestamptz_comparison_exp + steam_id: bigint_comparison_exp + thread: String_comparison_exp +} + +""" +unique or primary key constraints on table "chat_read_state" +""" +enum chat_read_state_constraint { + """ + unique or primary key constraint on columns "steam_id", "thread" + """ + chat_read_state_pkey +} + +""" +input type for incrementing numeric columns in table "chat_read_state" +""" +input chat_read_state_inc_input { + steam_id: bigint +} + +""" +input type for inserting data into table "chat_read_state" +""" +input chat_read_state_insert_input { + last_read_at: timestamptz + steam_id: bigint + thread: String +} + +"""aggregate max on columns""" +type chat_read_state_max_fields { + last_read_at: timestamptz + steam_id: bigint + thread: String +} + +"""aggregate min on columns""" +type chat_read_state_min_fields { + last_read_at: timestamptz + steam_id: bigint + thread: String +} + +""" +response of any mutation on the table "chat_read_state" +""" +type chat_read_state_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [chat_read_state!]! +} + +""" +on_conflict condition type for table "chat_read_state" +""" +input chat_read_state_on_conflict { + constraint: chat_read_state_constraint! + update_columns: [chat_read_state_update_column!]! = [] + where: chat_read_state_bool_exp +} + +"""Ordering options when selecting data from "chat_read_state".""" +input chat_read_state_order_by { + last_read_at: order_by + steam_id: order_by + thread: order_by +} + +"""primary key columns input for table: chat_read_state""" +input chat_read_state_pk_columns_input { + steam_id: bigint! + thread: String! +} + +""" +select columns of table "chat_read_state" +""" +enum chat_read_state_select_column { + """column name""" + last_read_at + + """column name""" + steam_id + + """column name""" + thread +} + +""" +input type for updating data in table "chat_read_state" +""" +input chat_read_state_set_input { + last_read_at: timestamptz + steam_id: bigint + thread: String +} + +"""aggregate stddev on columns""" +type chat_read_state_stddev_fields { + steam_id: Float +} + +"""aggregate stddev_pop on columns""" +type chat_read_state_stddev_pop_fields { + steam_id: Float +} + +"""aggregate stddev_samp on columns""" +type chat_read_state_stddev_samp_fields { + steam_id: Float +} + +""" +Streaming cursor of the table "chat_read_state" +""" +input 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 +} + +"""Initial value of the column from where the streaming should start""" +input chat_read_state_stream_cursor_value_input { + last_read_at: timestamptz + steam_id: bigint + thread: String +} + +"""aggregate sum on columns""" +type chat_read_state_sum_fields { + steam_id: bigint +} + +""" +update columns of table "chat_read_state" +""" +enum chat_read_state_update_column { + """column name""" + last_read_at + + """column name""" + steam_id + + """column name""" + thread +} + +input chat_read_state_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: chat_read_state_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: chat_read_state_set_input + + """filter the rows which have to be updated""" + where: chat_read_state_bool_exp! +} + +"""aggregate var_pop on columns""" +type chat_read_state_var_pop_fields { + steam_id: Float +} + +"""aggregate var_samp on columns""" +type chat_read_state_var_samp_fields { + steam_id: Float +} + +"""aggregate variance on columns""" +type chat_read_state_variance_fields { + steam_id: Float +} + +""" +columns and relationships of "clip_render_jobs" +""" +type clip_render_jobs { + """An object relationship""" + clip: match_clips + clip_id: uuid + created_at: timestamptz! + error_message: String + + """An object relationship""" + game_server_node: game_server_nodes + game_server_node_id: String + id: uuid! + k8s_job_name: String! + last_status_at: timestamptz! + + """An object relationship""" + match_map: match_maps! + + """An object relationship""" + match_map_demo: match_map_demos + match_map_demo_id: uuid + match_map_id: uuid! + paused: Boolean! + progress: numeric + session_token: String! + sort_index: Int! + spec( + """JSON select path""" + path: String + ): jsonb! + status: String! + status_history( + """JSON select path""" + path: String + ): jsonb! + + """An object relationship""" + user: players + user_steam_id: bigint +} + +""" +aggregated selection of "clip_render_jobs" +""" +type clip_render_jobs_aggregate { + aggregate: clip_render_jobs_aggregate_fields + nodes: [clip_render_jobs!]! +} + +input clip_render_jobs_aggregate_bool_exp { + bool_and: clip_render_jobs_aggregate_bool_exp_bool_and + bool_or: clip_render_jobs_aggregate_bool_exp_bool_or + count: clip_render_jobs_aggregate_bool_exp_count +} + +input 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: Boolean + filter: clip_render_jobs_bool_exp + predicate: Boolean_comparison_exp! +} + +input 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: Boolean + filter: clip_render_jobs_bool_exp + predicate: Boolean_comparison_exp! +} + +input clip_render_jobs_aggregate_bool_exp_count { + arguments: [clip_render_jobs_select_column!] + distinct: Boolean + filter: clip_render_jobs_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "clip_render_jobs" +""" +type clip_render_jobs_aggregate_fields { + avg: clip_render_jobs_avg_fields + count(columns: [clip_render_jobs_select_column!], distinct: Boolean): Int! + max: clip_render_jobs_max_fields + min: clip_render_jobs_min_fields + stddev: clip_render_jobs_stddev_fields + stddev_pop: clip_render_jobs_stddev_pop_fields + stddev_samp: clip_render_jobs_stddev_samp_fields + sum: clip_render_jobs_sum_fields + var_pop: clip_render_jobs_var_pop_fields + var_samp: clip_render_jobs_var_samp_fields + variance: clip_render_jobs_variance_fields +} + +""" +order by aggregate values of table "clip_render_jobs" +""" +input clip_render_jobs_aggregate_order_by { + avg: clip_render_jobs_avg_order_by + count: order_by + max: clip_render_jobs_max_order_by + min: clip_render_jobs_min_order_by + stddev: clip_render_jobs_stddev_order_by + stddev_pop: clip_render_jobs_stddev_pop_order_by + stddev_samp: clip_render_jobs_stddev_samp_order_by + sum: clip_render_jobs_sum_order_by + var_pop: clip_render_jobs_var_pop_order_by + var_samp: clip_render_jobs_var_samp_order_by + variance: clip_render_jobs_variance_order_by +} + +"""append existing jsonb value of filtered columns with new jsonb value""" +input clip_render_jobs_append_input { + spec: jsonb + status_history: jsonb +} + +""" +input type for inserting array relation for remote table "clip_render_jobs" +""" +input clip_render_jobs_arr_rel_insert_input { + data: [clip_render_jobs_insert_input!]! + + """upsert condition""" + on_conflict: clip_render_jobs_on_conflict +} + +"""aggregate avg on columns""" +type clip_render_jobs_avg_fields { + progress: Float + sort_index: Float + user_steam_id: Float +} + +""" +order by avg() on columns of table "clip_render_jobs" +""" +input clip_render_jobs_avg_order_by { + progress: order_by + sort_index: order_by + user_steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "clip_render_jobs". All fields are combined with a logical 'AND'. +""" +input clip_render_jobs_bool_exp { + _and: [clip_render_jobs_bool_exp!] + _not: clip_render_jobs_bool_exp + _or: [clip_render_jobs_bool_exp!] + clip: match_clips_bool_exp + clip_id: uuid_comparison_exp + created_at: timestamptz_comparison_exp + error_message: String_comparison_exp + game_server_node: game_server_nodes_bool_exp + game_server_node_id: String_comparison_exp + id: uuid_comparison_exp + k8s_job_name: String_comparison_exp + last_status_at: timestamptz_comparison_exp + match_map: match_maps_bool_exp + match_map_demo: match_map_demos_bool_exp + match_map_demo_id: uuid_comparison_exp + match_map_id: uuid_comparison_exp + paused: Boolean_comparison_exp + progress: numeric_comparison_exp + session_token: String_comparison_exp + sort_index: Int_comparison_exp + spec: jsonb_comparison_exp + status: String_comparison_exp + status_history: jsonb_comparison_exp + user: players_bool_exp + user_steam_id: bigint_comparison_exp +} + +""" +unique or primary key constraints on table "clip_render_jobs" +""" +enum clip_render_jobs_constraint { + """ + unique or primary key constraint on columns "id" + """ + clip_render_jobs_pkey +} + +""" +delete the field or element with specified path (for JSON arrays, negative integers count from the end) +""" +input clip_render_jobs_delete_at_path_input { + spec: [String!] + status_history: [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 clip_render_jobs_delete_elem_input { + spec: Int + status_history: Int +} + +""" +delete key/value pair or string element. key/value pairs are matched based on their key value +""" +input clip_render_jobs_delete_key_input { + spec: String + status_history: String +} + +""" +input type for incrementing numeric columns in table "clip_render_jobs" +""" +input clip_render_jobs_inc_input { + progress: numeric + sort_index: Int + user_steam_id: bigint +} + +""" +input type for inserting data into table "clip_render_jobs" +""" +input clip_render_jobs_insert_input { + clip: match_clips_obj_rel_insert_input + clip_id: uuid + created_at: timestamptz + error_message: String + game_server_node: game_server_nodes_obj_rel_insert_input + game_server_node_id: String + id: uuid + k8s_job_name: String + last_status_at: timestamptz + match_map: match_maps_obj_rel_insert_input + match_map_demo: match_map_demos_obj_rel_insert_input + match_map_demo_id: uuid + match_map_id: uuid + paused: Boolean + progress: numeric + session_token: String + sort_index: Int + spec: jsonb + status: String + status_history: jsonb + user: players_obj_rel_insert_input + user_steam_id: bigint +} + +"""aggregate max on columns""" +type clip_render_jobs_max_fields { + clip_id: uuid + created_at: timestamptz + error_message: String + game_server_node_id: String + id: uuid + k8s_job_name: String + last_status_at: timestamptz + match_map_demo_id: uuid + match_map_id: uuid + progress: numeric + session_token: String + sort_index: Int + status: String + user_steam_id: bigint +} + +""" +order by max() on columns of table "clip_render_jobs" +""" +input clip_render_jobs_max_order_by { + clip_id: order_by + created_at: order_by + error_message: order_by + game_server_node_id: order_by + id: order_by + k8s_job_name: order_by + last_status_at: order_by + match_map_demo_id: order_by + match_map_id: order_by + progress: order_by + session_token: order_by + sort_index: order_by + status: order_by + user_steam_id: order_by +} + +"""aggregate min on columns""" +type clip_render_jobs_min_fields { + clip_id: uuid + created_at: timestamptz + error_message: String + game_server_node_id: String + id: uuid + k8s_job_name: String + last_status_at: timestamptz + match_map_demo_id: uuid + match_map_id: uuid + progress: numeric + session_token: String + sort_index: Int + status: String + user_steam_id: bigint +} + +""" +order by min() on columns of table "clip_render_jobs" +""" +input clip_render_jobs_min_order_by { + clip_id: order_by + created_at: order_by + error_message: order_by + game_server_node_id: order_by + id: order_by + k8s_job_name: order_by + last_status_at: order_by + match_map_demo_id: order_by + match_map_id: order_by + progress: order_by + session_token: order_by + sort_index: order_by + status: order_by + user_steam_id: order_by +} + +""" +response of any mutation on the table "clip_render_jobs" +""" +type clip_render_jobs_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [clip_render_jobs!]! +} + +""" +on_conflict condition type for table "clip_render_jobs" +""" +input clip_render_jobs_on_conflict { + constraint: clip_render_jobs_constraint! + update_columns: [clip_render_jobs_update_column!]! = [] + where: clip_render_jobs_bool_exp +} + +"""Ordering options when selecting data from "clip_render_jobs".""" +input clip_render_jobs_order_by { + clip: match_clips_order_by + clip_id: order_by + created_at: order_by + error_message: order_by + game_server_node: game_server_nodes_order_by + game_server_node_id: order_by + id: order_by + k8s_job_name: order_by + last_status_at: order_by + match_map: match_maps_order_by + match_map_demo: match_map_demos_order_by + match_map_demo_id: order_by + match_map_id: order_by + paused: order_by + progress: order_by + session_token: order_by + sort_index: order_by + spec: order_by + status: order_by + status_history: order_by + user: players_order_by + user_steam_id: order_by +} + +"""primary key columns input for table: clip_render_jobs""" +input clip_render_jobs_pk_columns_input { + id: uuid! +} + +"""prepend existing jsonb value of filtered columns with new jsonb value""" +input clip_render_jobs_prepend_input { + spec: jsonb + status_history: jsonb +} + +""" +select columns of table "clip_render_jobs" +""" +enum clip_render_jobs_select_column { + """column name""" + clip_id + + """column name""" + created_at + + """column name""" + error_message + + """column name""" + game_server_node_id + + """column name""" + id + + """column name""" + k8s_job_name + + """column name""" + last_status_at + + """column name""" + match_map_demo_id + + """column name""" + match_map_id + + """column name""" + paused + + """column name""" + progress + + """column name""" + session_token + + """column name""" + sort_index + + """column name""" + spec + + """column name""" + status + + """column name""" + status_history + + """column name""" + user_steam_id +} + +""" +select "clip_render_jobs_aggregate_bool_exp_bool_and_arguments_columns" columns of table "clip_render_jobs" +""" +enum clip_render_jobs_select_column_clip_render_jobs_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + paused +} + +""" +select "clip_render_jobs_aggregate_bool_exp_bool_or_arguments_columns" columns of table "clip_render_jobs" +""" +enum clip_render_jobs_select_column_clip_render_jobs_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + paused +} + +""" +input type for updating data in table "clip_render_jobs" +""" +input clip_render_jobs_set_input { + clip_id: uuid + created_at: timestamptz + error_message: String + game_server_node_id: String + id: uuid + k8s_job_name: String + last_status_at: timestamptz + match_map_demo_id: uuid + match_map_id: uuid + paused: Boolean + progress: numeric + session_token: String + sort_index: Int + spec: jsonb + status: String + status_history: jsonb + user_steam_id: bigint +} + +"""aggregate stddev on columns""" +type clip_render_jobs_stddev_fields { + progress: Float + sort_index: Float + user_steam_id: Float +} + +""" +order by stddev() on columns of table "clip_render_jobs" +""" +input clip_render_jobs_stddev_order_by { + progress: order_by + sort_index: order_by + user_steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type clip_render_jobs_stddev_pop_fields { + progress: Float + sort_index: Float + user_steam_id: Float +} + +""" +order by stddev_pop() on columns of table "clip_render_jobs" +""" +input clip_render_jobs_stddev_pop_order_by { + progress: order_by + sort_index: order_by + user_steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type clip_render_jobs_stddev_samp_fields { + progress: Float + sort_index: Float + user_steam_id: Float +} + +""" +order by stddev_samp() on columns of table "clip_render_jobs" +""" +input clip_render_jobs_stddev_samp_order_by { + progress: order_by + sort_index: order_by + user_steam_id: order_by +} + +""" +Streaming cursor of the table "clip_render_jobs" +""" +input clip_render_jobs_stream_cursor_input { + """Stream column input with initial value""" + initial_value: clip_render_jobs_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input clip_render_jobs_stream_cursor_value_input { + clip_id: uuid + created_at: timestamptz + error_message: String + game_server_node_id: String + id: uuid + k8s_job_name: String + last_status_at: timestamptz + match_map_demo_id: uuid + match_map_id: uuid + paused: Boolean + progress: numeric + session_token: String + sort_index: Int + spec: jsonb + status: String + status_history: jsonb + user_steam_id: bigint +} + +"""aggregate sum on columns""" +type clip_render_jobs_sum_fields { + progress: numeric + sort_index: Int + user_steam_id: bigint +} + +""" +order by sum() on columns of table "clip_render_jobs" +""" +input clip_render_jobs_sum_order_by { + progress: order_by + sort_index: order_by + user_steam_id: order_by +} + +""" +update columns of table "clip_render_jobs" +""" +enum clip_render_jobs_update_column { + """column name""" + clip_id + + """column name""" + created_at + + """column name""" + error_message + + """column name""" + game_server_node_id + + """column name""" + id + + """column name""" + k8s_job_name + + """column name""" + last_status_at + + """column name""" + match_map_demo_id + + """column name""" + match_map_id + + """column name""" + paused + + """column name""" + progress + + """column name""" + session_token + + """column name""" + sort_index + + """column name""" + spec + + """column name""" + status + + """column name""" + status_history + + """column name""" + user_steam_id +} + +input clip_render_jobs_updates { + """append existing jsonb value of filtered columns with new jsonb value""" + _append: clip_render_jobs_append_input + + """ + 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 + + """ + 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 + + """ + 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 + + """increments the numeric columns with given value of the filtered values""" + _inc: clip_render_jobs_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: clip_render_jobs_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: clip_render_jobs_set_input + + """filter the rows which have to be updated""" + where: clip_render_jobs_bool_exp! +} + +"""aggregate var_pop on columns""" +type clip_render_jobs_var_pop_fields { + progress: Float + sort_index: Float + user_steam_id: Float +} + +""" +order by var_pop() on columns of table "clip_render_jobs" +""" +input clip_render_jobs_var_pop_order_by { + progress: order_by + sort_index: order_by + user_steam_id: order_by +} + +"""aggregate var_samp on columns""" +type clip_render_jobs_var_samp_fields { + progress: Float + sort_index: Float + user_steam_id: Float +} + +""" +order by var_samp() on columns of table "clip_render_jobs" +""" +input clip_render_jobs_var_samp_order_by { + progress: order_by + sort_index: order_by + user_steam_id: order_by +} + +"""aggregate variance on columns""" +type clip_render_jobs_variance_fields { + progress: Float + sort_index: Float + user_steam_id: Float +} + +""" +order by variance() on columns of table "clip_render_jobs" +""" +input clip_render_jobs_variance_order_by { + progress: order_by + sort_index: order_by + user_steam_id: order_by +} + +input clone_league_season_args { + _league_season_id: uuid +} + +"""ordering argument of a cursor""" +enum cursor_ordering { + """ascending ordering of the cursor""" + ASC + + """descending ordering of the cursor""" + DESC +} + +""" +columns and relationships of "custom_pages" +""" +type custom_pages { + created_at: timestamptz! + deployments( + """JSON select path""" + path: String + ): jsonb! + enabled: Boolean! + exposed_module: String! + icon: String + id: uuid! + is_default: Boolean! + manifest_url: String + nav_group: String + nav_order: Int! + plugin_slug: String + profile_tab_label: String + remote_entry_url: String! + remote_scope: String! + required_role: e_player_roles_enum + slug: String! + title: String! + updated_at: timestamptz! +} + +""" +aggregated selection of "custom_pages" +""" +type custom_pages_aggregate { + aggregate: custom_pages_aggregate_fields + nodes: [custom_pages!]! +} + +""" +aggregate fields of "custom_pages" +""" +type custom_pages_aggregate_fields { + avg: custom_pages_avg_fields + count(columns: [custom_pages_select_column!], distinct: Boolean): Int! + max: custom_pages_max_fields + min: custom_pages_min_fields + stddev: custom_pages_stddev_fields + stddev_pop: custom_pages_stddev_pop_fields + stddev_samp: custom_pages_stddev_samp_fields + sum: custom_pages_sum_fields + var_pop: custom_pages_var_pop_fields + var_samp: custom_pages_var_samp_fields + variance: custom_pages_variance_fields +} + +"""append existing jsonb value of filtered columns with new jsonb value""" +input custom_pages_append_input { + deployments: jsonb +} + +"""aggregate avg on columns""" +type custom_pages_avg_fields { + nav_order: Float +} + +""" +Boolean expression to filter rows from the table "custom_pages". All fields are combined with a logical 'AND'. +""" +input custom_pages_bool_exp { + _and: [custom_pages_bool_exp!] + _not: custom_pages_bool_exp + _or: [custom_pages_bool_exp!] + created_at: timestamptz_comparison_exp + deployments: jsonb_comparison_exp + enabled: Boolean_comparison_exp + exposed_module: String_comparison_exp + icon: String_comparison_exp + id: uuid_comparison_exp + is_default: Boolean_comparison_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 + required_role: e_player_roles_enum_comparison_exp + slug: String_comparison_exp + title: String_comparison_exp + updated_at: timestamptz_comparison_exp +} + +""" +unique or primary key constraints on table "custom_pages" +""" +enum custom_pages_constraint { + """ + unique or primary key constraint on columns "id" + """ + custom_pages_pkey + + """ + unique or primary key constraint on columns "plugin_slug" + """ + custom_pages_plugin_slug_idx + + """ + unique or primary key constraint on columns "is_default" + """ + custom_pages_single_default_idx + + """ + unique or primary key constraint on columns "slug" + """ + custom_pages_slug_key +} + +""" +delete the field or element with specified path (for JSON arrays, negative integers count from the end) +""" +input custom_pages_delete_at_path_input { + deployments: [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 custom_pages_delete_elem_input { + deployments: Int +} + +""" +delete key/value pair or string element. key/value pairs are matched based on their key value +""" +input custom_pages_delete_key_input { + deployments: String +} + +""" +input type for incrementing numeric columns in table "custom_pages" +""" +input custom_pages_inc_input { + nav_order: Int +} + +""" +input type for inserting data into table "custom_pages" +""" +input custom_pages_insert_input { + created_at: timestamptz + deployments: jsonb + enabled: Boolean + exposed_module: String + icon: String + id: uuid + is_default: Boolean + manifest_url: String + nav_group: String + nav_order: Int + plugin_slug: String + profile_tab_label: String + remote_entry_url: String + remote_scope: String + required_role: e_player_roles_enum + slug: String + title: String + updated_at: timestamptz +} + +"""aggregate max on columns""" +type custom_pages_max_fields { + created_at: timestamptz + exposed_module: String + icon: String + id: uuid + manifest_url: String + nav_group: String + nav_order: Int + plugin_slug: String + profile_tab_label: String + remote_entry_url: String + remote_scope: String + slug: String + title: String + updated_at: timestamptz +} + +"""aggregate min on columns""" +type custom_pages_min_fields { + created_at: timestamptz + exposed_module: String + icon: String + id: uuid + manifest_url: String + nav_group: String + nav_order: Int + plugin_slug: String + profile_tab_label: String + remote_entry_url: String + remote_scope: String + slug: String + title: String + updated_at: timestamptz +} + +""" +response of any mutation on the table "custom_pages" +""" +type custom_pages_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [custom_pages!]! +} + +""" +on_conflict condition type for table "custom_pages" +""" +input custom_pages_on_conflict { + constraint: custom_pages_constraint! + update_columns: [custom_pages_update_column!]! = [] + where: custom_pages_bool_exp +} + +"""Ordering options when selecting data from "custom_pages".""" +input custom_pages_order_by { + created_at: order_by + deployments: order_by + enabled: order_by + exposed_module: order_by + icon: order_by + id: order_by + is_default: 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 + required_role: order_by + slug: order_by + title: order_by + updated_at: order_by +} + +"""primary key columns input for table: custom_pages""" +input custom_pages_pk_columns_input { + id: uuid! +} + +"""prepend existing jsonb value of filtered columns with new jsonb value""" +input custom_pages_prepend_input { + deployments: jsonb +} + +""" +select columns of table "custom_pages" +""" +enum custom_pages_select_column { + """column name""" + created_at + + """column name""" + deployments + + """column name""" + enabled + + """column name""" + exposed_module + + """column name""" + icon + + """column name""" + id + + """column name""" + is_default + + """column name""" + manifest_url + + """column name""" + nav_group + + """column name""" + nav_order + + """column name""" + plugin_slug + + """column name""" + profile_tab_label + + """column name""" + remote_entry_url + + """column name""" + remote_scope + + """column name""" + required_role + + """column name""" + slug + + """column name""" + title + + """column name""" + updated_at +} + +""" +input type for updating data in table "custom_pages" +""" +input custom_pages_set_input { + created_at: timestamptz + deployments: jsonb + enabled: Boolean + exposed_module: String + icon: String + id: uuid + is_default: Boolean + manifest_url: String + nav_group: String + nav_order: Int + plugin_slug: String + profile_tab_label: String + remote_entry_url: String + remote_scope: String + required_role: e_player_roles_enum + slug: String + title: String + updated_at: timestamptz +} + +"""aggregate stddev on columns""" +type custom_pages_stddev_fields { + nav_order: Float +} + +"""aggregate stddev_pop on columns""" +type custom_pages_stddev_pop_fields { + nav_order: Float +} + +"""aggregate stddev_samp on columns""" +type custom_pages_stddev_samp_fields { + nav_order: Float +} + +""" +Streaming cursor of the table "custom_pages" +""" +input custom_pages_stream_cursor_input { + """Stream column input with initial value""" + initial_value: custom_pages_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input custom_pages_stream_cursor_value_input { + created_at: timestamptz + deployments: jsonb + enabled: Boolean + exposed_module: String + icon: String + id: uuid + is_default: Boolean + manifest_url: String + nav_group: String + nav_order: Int + plugin_slug: String + profile_tab_label: String + remote_entry_url: String + remote_scope: String + required_role: e_player_roles_enum + slug: String + title: String + updated_at: timestamptz +} + +"""aggregate sum on columns""" +type custom_pages_sum_fields { + nav_order: Int +} + +""" +update columns of table "custom_pages" +""" +enum custom_pages_update_column { + """column name""" + created_at + + """column name""" + deployments + + """column name""" + enabled + + """column name""" + exposed_module + + """column name""" + icon + + """column name""" + id + + """column name""" + is_default + + """column name""" + manifest_url + + """column name""" + nav_group + + """column name""" + nav_order + + """column name""" + plugin_slug + + """column name""" + profile_tab_label + + """column name""" + remote_entry_url + + """column name""" + remote_scope + + """column name""" + required_role + + """column name""" + slug + + """column name""" + title + + """column name""" + updated_at +} + +input custom_pages_updates { + """append existing jsonb value of filtered columns with new jsonb value""" + _append: custom_pages_append_input + + """ + 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 + + """ + 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 + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: custom_pages_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: custom_pages_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: custom_pages_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: custom_pages_set_input + + """filter the rows which have to be updated""" + where: custom_pages_bool_exp! +} + +"""aggregate var_pop on columns""" +type custom_pages_var_pop_fields { + nav_order: Float +} + +"""aggregate var_samp on columns""" +type custom_pages_var_samp_fields { + nav_order: Float +} + +"""aggregate variance on columns""" +type custom_pages_variance_fields { + nav_order: Float +} + +""" +columns and relationships of "db_backups" +""" +type db_backups { + created_at: timestamptz! + id: uuid! + name: String! + size: Int! +} + +""" +aggregated selection of "db_backups" +""" +type db_backups_aggregate { + aggregate: db_backups_aggregate_fields + nodes: [db_backups!]! +} + +""" +aggregate fields of "db_backups" +""" +type db_backups_aggregate_fields { + avg: db_backups_avg_fields + count(columns: [db_backups_select_column!], distinct: Boolean): Int! + max: db_backups_max_fields + min: db_backups_min_fields + stddev: db_backups_stddev_fields + stddev_pop: db_backups_stddev_pop_fields + stddev_samp: db_backups_stddev_samp_fields + sum: db_backups_sum_fields + var_pop: db_backups_var_pop_fields + var_samp: db_backups_var_samp_fields + variance: db_backups_variance_fields +} + +"""aggregate avg on columns""" +type db_backups_avg_fields { + size: Float +} + +""" +Boolean expression to filter rows from the table "db_backups". All fields are combined with a logical 'AND'. +""" +input db_backups_bool_exp { + _and: [db_backups_bool_exp!] + _not: db_backups_bool_exp + _or: [db_backups_bool_exp!] + created_at: timestamptz_comparison_exp + id: uuid_comparison_exp + name: String_comparison_exp + size: Int_comparison_exp +} + +""" +unique or primary key constraints on table "db_backups" +""" +enum db_backups_constraint { + """ + unique or primary key constraint on columns "id" + """ + db_backups_pkey +} + +""" +input type for incrementing numeric columns in table "db_backups" +""" +input db_backups_inc_input { + size: Int +} + +""" +input type for inserting data into table "db_backups" +""" +input db_backups_insert_input { + created_at: timestamptz + id: uuid + name: String + size: Int +} + +"""aggregate max on columns""" +type db_backups_max_fields { + created_at: timestamptz + id: uuid + name: String + size: Int +} + +"""aggregate min on columns""" +type db_backups_min_fields { + created_at: timestamptz + id: uuid + name: String + size: Int +} + +""" +response of any mutation on the table "db_backups" +""" +type db_backups_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [db_backups!]! +} + +""" +on_conflict condition type for table "db_backups" +""" +input db_backups_on_conflict { + constraint: db_backups_constraint! + update_columns: [db_backups_update_column!]! = [] + where: db_backups_bool_exp +} + +"""Ordering options when selecting data from "db_backups".""" +input db_backups_order_by { + created_at: order_by + id: order_by + name: order_by + size: order_by +} + +"""primary key columns input for table: db_backups""" +input db_backups_pk_columns_input { + id: uuid! +} + +""" +select columns of table "db_backups" +""" +enum db_backups_select_column { + """column name""" + created_at + + """column name""" + id + + """column name""" + name + + """column name""" + size +} + +""" +input type for updating data in table "db_backups" +""" +input db_backups_set_input { + created_at: timestamptz + id: uuid + name: String + size: Int +} + +"""aggregate stddev on columns""" +type db_backups_stddev_fields { + size: Float +} + +"""aggregate stddev_pop on columns""" +type db_backups_stddev_pop_fields { + size: Float +} + +"""aggregate stddev_samp on columns""" +type db_backups_stddev_samp_fields { + size: Float +} + +""" +Streaming cursor of the table "db_backups" +""" +input db_backups_stream_cursor_input { + """Stream column input with initial value""" + initial_value: db_backups_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input db_backups_stream_cursor_value_input { + created_at: timestamptz + id: uuid + name: String + size: Int +} + +"""aggregate sum on columns""" +type db_backups_sum_fields { + size: Int +} + +""" +update columns of table "db_backups" +""" +enum db_backups_update_column { + """column name""" + created_at + + """column name""" + id + + """column name""" + name + + """column name""" + size +} + +input db_backups_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: db_backups_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: db_backups_set_input + + """filter the rows which have to be updated""" + where: db_backups_bool_exp! +} + +"""aggregate var_pop on columns""" +type db_backups_var_pop_fields { + size: Float +} + +"""aggregate var_samp on columns""" +type db_backups_var_samp_fields { + size: Float +} + +"""aggregate variance on columns""" +type db_backups_variance_fields { + size: Float +} + +""" +columns and relationships of "direct_conversations" +""" +type direct_conversations { + is_open: Boolean! + last_message_at: timestamptz! + position: Int! + room_id: String! + steam_id: bigint! +} + +""" +aggregated selection of "direct_conversations" +""" +type direct_conversations_aggregate { + aggregate: direct_conversations_aggregate_fields + nodes: [direct_conversations!]! +} + +""" +aggregate fields of "direct_conversations" +""" +type direct_conversations_aggregate_fields { + avg: direct_conversations_avg_fields + count(columns: [direct_conversations_select_column!], distinct: Boolean): Int! + max: direct_conversations_max_fields + min: direct_conversations_min_fields + stddev: direct_conversations_stddev_fields + stddev_pop: direct_conversations_stddev_pop_fields + stddev_samp: direct_conversations_stddev_samp_fields + sum: direct_conversations_sum_fields + var_pop: direct_conversations_var_pop_fields + var_samp: direct_conversations_var_samp_fields + variance: direct_conversations_variance_fields +} + +"""aggregate avg on columns""" +type direct_conversations_avg_fields { + position: Float + steam_id: Float +} + +""" +Boolean expression to filter rows from the table "direct_conversations". All fields are combined with a logical 'AND'. +""" +input direct_conversations_bool_exp { + _and: [direct_conversations_bool_exp!] + _not: direct_conversations_bool_exp + _or: [direct_conversations_bool_exp!] + is_open: Boolean_comparison_exp + last_message_at: timestamptz_comparison_exp + position: Int_comparison_exp + room_id: String_comparison_exp + steam_id: bigint_comparison_exp +} + +""" +unique or primary key constraints on table "direct_conversations" +""" +enum direct_conversations_constraint { + """ + unique or primary key constraint on columns "steam_id", "room_id" + """ + direct_conversations_pkey +} + +""" +input type for incrementing numeric columns in table "direct_conversations" +""" +input direct_conversations_inc_input { + position: Int + steam_id: bigint +} + +""" +input type for inserting data into table "direct_conversations" +""" +input direct_conversations_insert_input { + is_open: Boolean + last_message_at: timestamptz + position: Int + room_id: String + steam_id: bigint +} + +"""aggregate max on columns""" +type direct_conversations_max_fields { + last_message_at: timestamptz + position: Int + room_id: String + steam_id: bigint +} + +"""aggregate min on columns""" +type direct_conversations_min_fields { + last_message_at: timestamptz + position: Int + room_id: String + steam_id: bigint +} + +""" +response of any mutation on the table "direct_conversations" +""" +type direct_conversations_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [direct_conversations!]! +} + +""" +on_conflict condition type for table "direct_conversations" +""" +input direct_conversations_on_conflict { + constraint: direct_conversations_constraint! + update_columns: [direct_conversations_update_column!]! = [] + where: direct_conversations_bool_exp +} + +"""Ordering options when selecting data from "direct_conversations".""" +input direct_conversations_order_by { + is_open: order_by + last_message_at: order_by + position: order_by + room_id: order_by + steam_id: order_by +} + +"""primary key columns input for table: direct_conversations""" +input direct_conversations_pk_columns_input { + room_id: String! + steam_id: bigint! +} + +""" +select columns of table "direct_conversations" +""" +enum direct_conversations_select_column { + """column name""" + is_open + + """column name""" + last_message_at + + """column name""" + position + + """column name""" + room_id + + """column name""" + steam_id +} + +""" +input type for updating data in table "direct_conversations" +""" +input direct_conversations_set_input { + is_open: Boolean + last_message_at: timestamptz + position: Int + room_id: String + steam_id: bigint +} + +"""aggregate stddev on columns""" +type direct_conversations_stddev_fields { + position: Float + steam_id: Float +} + +"""aggregate stddev_pop on columns""" +type direct_conversations_stddev_pop_fields { + position: Float + steam_id: Float +} + +"""aggregate stddev_samp on columns""" +type direct_conversations_stddev_samp_fields { + position: Float + steam_id: Float +} + +""" +Streaming cursor of the table "direct_conversations" +""" +input direct_conversations_stream_cursor_input { + """Stream column input with initial value""" + initial_value: direct_conversations_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input direct_conversations_stream_cursor_value_input { + is_open: Boolean + last_message_at: timestamptz + position: Int + room_id: String + steam_id: bigint +} + +"""aggregate sum on columns""" +type direct_conversations_sum_fields { + position: Int + steam_id: bigint +} + +""" +update columns of table "direct_conversations" +""" +enum direct_conversations_update_column { + """column name""" + is_open + + """column name""" + last_message_at + + """column name""" + position + + """column name""" + room_id + + """column name""" + steam_id +} + +input direct_conversations_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: direct_conversations_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: direct_conversations_set_input + + """filter the rows which have to be updated""" + where: direct_conversations_bool_exp! +} + +"""aggregate var_pop on columns""" +type direct_conversations_var_pop_fields { + position: Float + steam_id: Float +} + +"""aggregate var_samp on columns""" +type direct_conversations_var_samp_fields { + position: Float + steam_id: Float +} + +"""aggregate variance on columns""" +type direct_conversations_variance_fields { + position: Float + steam_id: Float +} + +""" +columns and relationships of "direct_messages" +""" +type direct_messages { + created_at: timestamptz! + from_steam_id: bigint! + id: uuid! + message: String! + room_id: String! + seq: bigint! +} + +""" +aggregated selection of "direct_messages" +""" +type direct_messages_aggregate { + aggregate: direct_messages_aggregate_fields + nodes: [direct_messages!]! +} + +""" +aggregate fields of "direct_messages" +""" +type direct_messages_aggregate_fields { + avg: direct_messages_avg_fields + count(columns: [direct_messages_select_column!], distinct: Boolean): Int! + max: direct_messages_max_fields + min: direct_messages_min_fields + stddev: direct_messages_stddev_fields + stddev_pop: direct_messages_stddev_pop_fields + stddev_samp: direct_messages_stddev_samp_fields + sum: direct_messages_sum_fields + var_pop: direct_messages_var_pop_fields + var_samp: direct_messages_var_samp_fields + variance: direct_messages_variance_fields +} + +"""aggregate avg on columns""" +type direct_messages_avg_fields { + from_steam_id: Float + seq: Float +} + +""" +Boolean expression to filter rows from the table "direct_messages". All fields are combined with a logical 'AND'. +""" +input direct_messages_bool_exp { + _and: [direct_messages_bool_exp!] + _not: direct_messages_bool_exp + _or: [direct_messages_bool_exp!] + created_at: timestamptz_comparison_exp + from_steam_id: bigint_comparison_exp + id: uuid_comparison_exp + message: String_comparison_exp + room_id: String_comparison_exp + seq: bigint_comparison_exp +} + +""" +unique or primary key constraints on table "direct_messages" +""" +enum direct_messages_constraint { + """ + unique or primary key constraint on columns "id" + """ + direct_messages_pkey +} + +""" +input type for incrementing numeric columns in table "direct_messages" +""" +input direct_messages_inc_input { + from_steam_id: bigint + seq: bigint +} + +""" +input type for inserting data into table "direct_messages" +""" +input direct_messages_insert_input { + created_at: timestamptz + from_steam_id: bigint + id: uuid + message: String + room_id: String + seq: bigint +} + +"""aggregate max on columns""" +type direct_messages_max_fields { + created_at: timestamptz + from_steam_id: bigint + id: uuid + message: String + room_id: String + seq: bigint +} + +"""aggregate min on columns""" +type direct_messages_min_fields { + created_at: timestamptz + from_steam_id: bigint + id: uuid + message: String + room_id: String + seq: bigint +} + +""" +response of any mutation on the table "direct_messages" +""" +type direct_messages_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [direct_messages!]! +} + +""" +on_conflict condition type for table "direct_messages" +""" +input direct_messages_on_conflict { + constraint: direct_messages_constraint! + update_columns: [direct_messages_update_column!]! = [] + where: direct_messages_bool_exp +} + +"""Ordering options when selecting data from "direct_messages".""" +input direct_messages_order_by { + created_at: order_by + from_steam_id: order_by + id: order_by + message: order_by + room_id: order_by + seq: order_by +} + +"""primary key columns input for table: direct_messages""" +input direct_messages_pk_columns_input { + id: uuid! +} + +""" +select columns of table "direct_messages" +""" +enum direct_messages_select_column { + """column name""" + created_at + + """column name""" + from_steam_id + + """column name""" + id + + """column name""" + message + + """column name""" + room_id + + """column name""" + seq +} + +""" +input type for updating data in table "direct_messages" +""" +input direct_messages_set_input { + created_at: timestamptz + from_steam_id: bigint + id: uuid + message: String + room_id: String + seq: bigint +} + +"""aggregate stddev on columns""" +type direct_messages_stddev_fields { + from_steam_id: Float + seq: Float +} + +"""aggregate stddev_pop on columns""" +type direct_messages_stddev_pop_fields { + from_steam_id: Float + seq: Float +} + +"""aggregate stddev_samp on columns""" +type direct_messages_stddev_samp_fields { + from_steam_id: Float + seq: Float +} + +""" +Streaming cursor of the table "direct_messages" +""" +input direct_messages_stream_cursor_input { + """Stream column input with initial value""" + initial_value: direct_messages_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input direct_messages_stream_cursor_value_input { + created_at: timestamptz + from_steam_id: bigint + id: uuid + message: String + room_id: String + seq: bigint +} + +"""aggregate sum on columns""" +type direct_messages_sum_fields { + from_steam_id: bigint + seq: bigint +} + +""" +update columns of table "direct_messages" +""" +enum direct_messages_update_column { + """column name""" + created_at + + """column name""" + from_steam_id + + """column name""" + id + + """column name""" + message + + """column name""" + room_id + + """column name""" + seq +} + +input direct_messages_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: direct_messages_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: direct_messages_set_input + + """filter the rows which have to be updated""" + where: direct_messages_bool_exp! +} + +"""aggregate var_pop on columns""" +type direct_messages_var_pop_fields { + from_steam_id: Float + seq: Float +} + +"""aggregate var_samp on columns""" +type direct_messages_var_samp_fields { + from_steam_id: Float + seq: Float +} + +"""aggregate variance on columns""" +type direct_messages_variance_fields { + from_steam_id: Float + seq: Float +} + +""" +columns and relationships of "draft_game_picks" +""" +type draft_game_picks { + auto_picked: Boolean! + + """An object relationship""" + captain: players! + captain_steam_id: bigint! + created_at: timestamptz! + + """An object relationship""" + draft_game: draft_games! + draft_game_id: uuid! + id: uuid! + is_organizer: Boolean + lineup: Int! + + """An object relationship""" + picked: players! + picked_steam_id: bigint! +} + +""" +aggregated selection of "draft_game_picks" +""" +type draft_game_picks_aggregate { + aggregate: draft_game_picks_aggregate_fields + nodes: [draft_game_picks!]! +} + +input draft_game_picks_aggregate_bool_exp { + bool_and: draft_game_picks_aggregate_bool_exp_bool_and + bool_or: draft_game_picks_aggregate_bool_exp_bool_or + count: draft_game_picks_aggregate_bool_exp_count +} + +input 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: Boolean + filter: draft_game_picks_bool_exp + predicate: Boolean_comparison_exp! +} + +input 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: Boolean + filter: draft_game_picks_bool_exp + predicate: Boolean_comparison_exp! +} + +input draft_game_picks_aggregate_bool_exp_count { + arguments: [draft_game_picks_select_column!] + distinct: Boolean + filter: draft_game_picks_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "draft_game_picks" +""" +type draft_game_picks_aggregate_fields { + avg: draft_game_picks_avg_fields + count(columns: [draft_game_picks_select_column!], distinct: Boolean): Int! + max: draft_game_picks_max_fields + min: draft_game_picks_min_fields + stddev: draft_game_picks_stddev_fields + stddev_pop: draft_game_picks_stddev_pop_fields + stddev_samp: draft_game_picks_stddev_samp_fields + sum: draft_game_picks_sum_fields + var_pop: draft_game_picks_var_pop_fields + var_samp: draft_game_picks_var_samp_fields + variance: draft_game_picks_variance_fields +} + +""" +order by aggregate values of table "draft_game_picks" +""" +input draft_game_picks_aggregate_order_by { + avg: draft_game_picks_avg_order_by + count: order_by + max: draft_game_picks_max_order_by + min: draft_game_picks_min_order_by + stddev: draft_game_picks_stddev_order_by + stddev_pop: draft_game_picks_stddev_pop_order_by + stddev_samp: draft_game_picks_stddev_samp_order_by + sum: draft_game_picks_sum_order_by + var_pop: draft_game_picks_var_pop_order_by + var_samp: draft_game_picks_var_samp_order_by + variance: draft_game_picks_variance_order_by +} + +""" +input type for inserting array relation for remote table "draft_game_picks" +""" +input draft_game_picks_arr_rel_insert_input { + data: [draft_game_picks_insert_input!]! + + """upsert condition""" + on_conflict: draft_game_picks_on_conflict +} + +"""aggregate avg on columns""" +type draft_game_picks_avg_fields { + captain_steam_id: Float + lineup: Float + picked_steam_id: Float +} + +""" +order by avg() on columns of table "draft_game_picks" +""" +input draft_game_picks_avg_order_by { + captain_steam_id: order_by + lineup: order_by + picked_steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "draft_game_picks". All fields are combined with a logical 'AND'. +""" +input draft_game_picks_bool_exp { + _and: [draft_game_picks_bool_exp!] + _not: draft_game_picks_bool_exp + _or: [draft_game_picks_bool_exp!] + auto_picked: Boolean_comparison_exp + captain: players_bool_exp + captain_steam_id: bigint_comparison_exp + created_at: timestamptz_comparison_exp + draft_game: draft_games_bool_exp + draft_game_id: uuid_comparison_exp + id: uuid_comparison_exp + is_organizer: Boolean_comparison_exp + lineup: Int_comparison_exp + picked: players_bool_exp + picked_steam_id: bigint_comparison_exp +} + +""" +unique or primary key constraints on table "draft_game_picks" +""" +enum draft_game_picks_constraint { + """ + unique or primary key constraint on columns "id" + """ + draft_game_picks_pkey +} + +""" +input type for incrementing numeric columns in table "draft_game_picks" +""" +input draft_game_picks_inc_input { + captain_steam_id: bigint + lineup: Int + picked_steam_id: bigint +} + +""" +input type for inserting data into table "draft_game_picks" +""" +input draft_game_picks_insert_input { + auto_picked: Boolean + captain: players_obj_rel_insert_input + captain_steam_id: bigint + created_at: timestamptz + draft_game: draft_games_obj_rel_insert_input + draft_game_id: uuid + id: uuid + lineup: Int + picked: players_obj_rel_insert_input + picked_steam_id: bigint +} + +"""aggregate max on columns""" +type draft_game_picks_max_fields { + captain_steam_id: bigint + created_at: timestamptz + draft_game_id: uuid + id: uuid + lineup: Int + picked_steam_id: bigint +} + +""" +order by max() on columns of table "draft_game_picks" +""" +input draft_game_picks_max_order_by { + captain_steam_id: order_by + created_at: order_by + draft_game_id: order_by + id: order_by + lineup: order_by + picked_steam_id: order_by +} + +"""aggregate min on columns""" +type draft_game_picks_min_fields { + captain_steam_id: bigint + created_at: timestamptz + draft_game_id: uuid + id: uuid + lineup: Int + picked_steam_id: bigint +} + +""" +order by min() on columns of table "draft_game_picks" +""" +input draft_game_picks_min_order_by { + captain_steam_id: order_by + created_at: order_by + draft_game_id: order_by + id: order_by + lineup: order_by + picked_steam_id: order_by +} + +""" +response of any mutation on the table "draft_game_picks" +""" +type draft_game_picks_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [draft_game_picks!]! +} + +""" +on_conflict condition type for table "draft_game_picks" +""" +input draft_game_picks_on_conflict { + constraint: draft_game_picks_constraint! + update_columns: [draft_game_picks_update_column!]! = [] + where: draft_game_picks_bool_exp +} + +"""Ordering options when selecting data from "draft_game_picks".""" +input draft_game_picks_order_by { + auto_picked: order_by + captain: players_order_by + captain_steam_id: order_by + created_at: order_by + draft_game: draft_games_order_by + draft_game_id: order_by + id: order_by + is_organizer: order_by + lineup: order_by + picked: players_order_by + picked_steam_id: order_by +} + +"""primary key columns input for table: draft_game_picks""" +input draft_game_picks_pk_columns_input { + id: uuid! +} + +""" +select columns of table "draft_game_picks" +""" +enum draft_game_picks_select_column { + """column name""" + auto_picked + + """column name""" + captain_steam_id + + """column name""" + created_at + + """column name""" + draft_game_id + + """column name""" + id + + """column name""" + lineup + + """column name""" + picked_steam_id +} + +""" +select "draft_game_picks_aggregate_bool_exp_bool_and_arguments_columns" columns of table "draft_game_picks" +""" +enum draft_game_picks_select_column_draft_game_picks_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + auto_picked +} + +""" +select "draft_game_picks_aggregate_bool_exp_bool_or_arguments_columns" columns of table "draft_game_picks" +""" +enum draft_game_picks_select_column_draft_game_picks_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + auto_picked +} + +""" +input type for updating data in table "draft_game_picks" +""" +input draft_game_picks_set_input { + auto_picked: Boolean + captain_steam_id: bigint + created_at: timestamptz + draft_game_id: uuid + id: uuid + lineup: Int + picked_steam_id: bigint +} + +"""aggregate stddev on columns""" +type draft_game_picks_stddev_fields { + captain_steam_id: Float + lineup: Float + picked_steam_id: Float +} + +""" +order by stddev() on columns of table "draft_game_picks" +""" +input draft_game_picks_stddev_order_by { + captain_steam_id: order_by + lineup: order_by + picked_steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type draft_game_picks_stddev_pop_fields { + captain_steam_id: Float + lineup: Float + picked_steam_id: Float +} + +""" +order by stddev_pop() on columns of table "draft_game_picks" +""" +input draft_game_picks_stddev_pop_order_by { + captain_steam_id: order_by + lineup: order_by + picked_steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type draft_game_picks_stddev_samp_fields { + captain_steam_id: Float + lineup: Float + picked_steam_id: Float +} + +""" +order by stddev_samp() on columns of table "draft_game_picks" +""" +input draft_game_picks_stddev_samp_order_by { + captain_steam_id: order_by + lineup: order_by + picked_steam_id: order_by +} + +""" +Streaming cursor of the table "draft_game_picks" +""" +input 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 +} + +"""Initial value of the column from where the streaming should start""" +input draft_game_picks_stream_cursor_value_input { + auto_picked: Boolean + captain_steam_id: bigint + created_at: timestamptz + draft_game_id: uuid + id: uuid + lineup: Int + picked_steam_id: bigint +} + +"""aggregate sum on columns""" +type draft_game_picks_sum_fields { + captain_steam_id: bigint + lineup: Int + picked_steam_id: bigint +} + +""" +order by sum() on columns of table "draft_game_picks" +""" +input draft_game_picks_sum_order_by { + captain_steam_id: order_by + lineup: order_by + picked_steam_id: order_by +} + +""" +update columns of table "draft_game_picks" +""" +enum draft_game_picks_update_column { + """column name""" + auto_picked + + """column name""" + captain_steam_id + + """column name""" + created_at + + """column name""" + draft_game_id + + """column name""" + id + + """column name""" + lineup + + """column name""" + picked_steam_id +} + +input draft_game_picks_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: draft_game_picks_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: draft_game_picks_set_input + + """filter the rows which have to be updated""" + where: draft_game_picks_bool_exp! +} + +"""aggregate var_pop on columns""" +type draft_game_picks_var_pop_fields { + captain_steam_id: Float + lineup: Float + picked_steam_id: Float +} + +""" +order by var_pop() on columns of table "draft_game_picks" +""" +input draft_game_picks_var_pop_order_by { + captain_steam_id: order_by + lineup: order_by + picked_steam_id: order_by +} + +"""aggregate var_samp on columns""" +type draft_game_picks_var_samp_fields { + captain_steam_id: Float + lineup: Float + picked_steam_id: Float +} + +""" +order by var_samp() on columns of table "draft_game_picks" +""" +input draft_game_picks_var_samp_order_by { + captain_steam_id: order_by + lineup: order_by + picked_steam_id: order_by +} + +"""aggregate variance on columns""" +type draft_game_picks_variance_fields { + captain_steam_id: Float + lineup: Float + picked_steam_id: Float +} + +""" +order by variance() on columns of table "draft_game_picks" +""" +input draft_game_picks_variance_order_by { + captain_steam_id: order_by + lineup: order_by + picked_steam_id: order_by +} + +""" +columns and relationships of "draft_game_players" +""" +type draft_game_players { + """An object relationship""" + draft_game: draft_games! + draft_game_id: uuid! + + """An object relationship""" + e_draft_game_player_status: e_draft_game_player_status! + elo_snapshot: Int + is_captain: Boolean! + is_organizer: Boolean + joined_at: timestamptz! + lineup: Int + pick_order: Int + + """An object relationship""" + player: players! + status: e_draft_game_player_status_enum! + steam_id: bigint! +} + +""" +aggregated selection of "draft_game_players" +""" +type draft_game_players_aggregate { + aggregate: draft_game_players_aggregate_fields + nodes: [draft_game_players!]! +} + +input draft_game_players_aggregate_bool_exp { + bool_and: draft_game_players_aggregate_bool_exp_bool_and + bool_or: draft_game_players_aggregate_bool_exp_bool_or + count: draft_game_players_aggregate_bool_exp_count +} + +input 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: Boolean + filter: draft_game_players_bool_exp + predicate: Boolean_comparison_exp! +} + +input 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: Boolean + filter: draft_game_players_bool_exp + predicate: Boolean_comparison_exp! +} + +input draft_game_players_aggregate_bool_exp_count { + arguments: [draft_game_players_select_column!] + distinct: Boolean + filter: draft_game_players_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "draft_game_players" +""" +type draft_game_players_aggregate_fields { + avg: draft_game_players_avg_fields + count(columns: [draft_game_players_select_column!], distinct: Boolean): Int! + max: draft_game_players_max_fields + min: draft_game_players_min_fields + stddev: draft_game_players_stddev_fields + stddev_pop: draft_game_players_stddev_pop_fields + stddev_samp: draft_game_players_stddev_samp_fields + sum: draft_game_players_sum_fields + var_pop: draft_game_players_var_pop_fields + var_samp: draft_game_players_var_samp_fields + variance: draft_game_players_variance_fields +} + +""" +order by aggregate values of table "draft_game_players" +""" +input draft_game_players_aggregate_order_by { + avg: draft_game_players_avg_order_by + count: order_by + max: draft_game_players_max_order_by + min: draft_game_players_min_order_by + stddev: draft_game_players_stddev_order_by + stddev_pop: draft_game_players_stddev_pop_order_by + stddev_samp: draft_game_players_stddev_samp_order_by + sum: draft_game_players_sum_order_by + var_pop: draft_game_players_var_pop_order_by + var_samp: draft_game_players_var_samp_order_by + variance: draft_game_players_variance_order_by +} + +""" +input type for inserting array relation for remote table "draft_game_players" +""" +input draft_game_players_arr_rel_insert_input { + data: [draft_game_players_insert_input!]! + + """upsert condition""" + on_conflict: draft_game_players_on_conflict +} + +"""aggregate avg on columns""" +type draft_game_players_avg_fields { + elo_snapshot: Float + lineup: Float + pick_order: Float + steam_id: Float +} + +""" +order by avg() on columns of table "draft_game_players" +""" +input draft_game_players_avg_order_by { + elo_snapshot: order_by + lineup: order_by + pick_order: order_by + steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "draft_game_players". All fields are combined with a logical 'AND'. +""" +input draft_game_players_bool_exp { + _and: [draft_game_players_bool_exp!] + _not: draft_game_players_bool_exp + _or: [draft_game_players_bool_exp!] + draft_game: draft_games_bool_exp + draft_game_id: uuid_comparison_exp + e_draft_game_player_status: e_draft_game_player_status_bool_exp + elo_snapshot: Int_comparison_exp + is_captain: Boolean_comparison_exp + is_organizer: Boolean_comparison_exp + joined_at: timestamptz_comparison_exp + lineup: Int_comparison_exp + pick_order: Int_comparison_exp + player: players_bool_exp + status: e_draft_game_player_status_enum_comparison_exp + steam_id: bigint_comparison_exp +} + +""" +unique or primary key constraints on table "draft_game_players" +""" +enum draft_game_players_constraint { + """ + unique or primary key constraint on columns "draft_game_id", "steam_id" + """ + draft_game_players_pkey +} + +""" +input type for incrementing numeric columns in table "draft_game_players" +""" +input draft_game_players_inc_input { + elo_snapshot: Int + lineup: Int + pick_order: Int + steam_id: bigint +} + +""" +input type for inserting data into table "draft_game_players" +""" +input draft_game_players_insert_input { + draft_game: draft_games_obj_rel_insert_input + draft_game_id: uuid + e_draft_game_player_status: e_draft_game_player_status_obj_rel_insert_input + elo_snapshot: Int + is_captain: Boolean + joined_at: timestamptz + lineup: Int + pick_order: Int + player: players_obj_rel_insert_input + status: e_draft_game_player_status_enum + steam_id: bigint +} + +"""aggregate max on columns""" +type draft_game_players_max_fields { + draft_game_id: uuid + elo_snapshot: Int + joined_at: timestamptz + lineup: Int + pick_order: Int + steam_id: bigint +} + +""" +order by max() on columns of table "draft_game_players" +""" +input draft_game_players_max_order_by { + draft_game_id: order_by + elo_snapshot: order_by + joined_at: order_by + lineup: order_by + pick_order: order_by + steam_id: order_by +} + +"""aggregate min on columns""" +type draft_game_players_min_fields { + draft_game_id: uuid + elo_snapshot: Int + joined_at: timestamptz + lineup: Int + pick_order: Int + steam_id: bigint +} + +""" +order by min() on columns of table "draft_game_players" +""" +input draft_game_players_min_order_by { + draft_game_id: order_by + elo_snapshot: order_by + joined_at: order_by + lineup: order_by + pick_order: order_by + steam_id: order_by +} + +""" +response of any mutation on the table "draft_game_players" +""" +type draft_game_players_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [draft_game_players!]! +} + +""" +on_conflict condition type for table "draft_game_players" +""" +input draft_game_players_on_conflict { + constraint: draft_game_players_constraint! + update_columns: [draft_game_players_update_column!]! = [] + where: draft_game_players_bool_exp +} + +"""Ordering options when selecting data from "draft_game_players".""" +input draft_game_players_order_by { + draft_game: draft_games_order_by + draft_game_id: order_by + e_draft_game_player_status: e_draft_game_player_status_order_by + elo_snapshot: order_by + is_captain: order_by + is_organizer: order_by + joined_at: order_by + lineup: order_by + pick_order: order_by + player: players_order_by + status: order_by + steam_id: order_by +} + +"""primary key columns input for table: draft_game_players""" +input draft_game_players_pk_columns_input { + draft_game_id: uuid! + steam_id: bigint! +} + +""" +select columns of table "draft_game_players" +""" +enum draft_game_players_select_column { + """column name""" + draft_game_id + + """column name""" + elo_snapshot + + """column name""" + is_captain + + """column name""" + joined_at + + """column name""" + lineup + + """column name""" + pick_order + + """column name""" + status + + """column name""" + steam_id +} + +""" +select "draft_game_players_aggregate_bool_exp_bool_and_arguments_columns" columns of table "draft_game_players" +""" +enum draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + is_captain +} + +""" +select "draft_game_players_aggregate_bool_exp_bool_or_arguments_columns" columns of table "draft_game_players" +""" +enum draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + is_captain +} + +""" +input type for updating data in table "draft_game_players" +""" +input draft_game_players_set_input { + draft_game_id: uuid + elo_snapshot: Int + is_captain: Boolean + joined_at: timestamptz + lineup: Int + pick_order: Int + status: e_draft_game_player_status_enum + steam_id: bigint +} + +"""aggregate stddev on columns""" +type draft_game_players_stddev_fields { + elo_snapshot: Float + lineup: Float + pick_order: Float + steam_id: Float +} + +""" +order by stddev() on columns of table "draft_game_players" +""" +input draft_game_players_stddev_order_by { + elo_snapshot: order_by + lineup: order_by + pick_order: order_by + steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type draft_game_players_stddev_pop_fields { + elo_snapshot: Float + lineup: Float + pick_order: Float + steam_id: Float +} + +""" +order by stddev_pop() on columns of table "draft_game_players" +""" +input draft_game_players_stddev_pop_order_by { + elo_snapshot: order_by + lineup: order_by + pick_order: order_by + steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type draft_game_players_stddev_samp_fields { + elo_snapshot: Float + lineup: Float + pick_order: Float + steam_id: Float +} + +""" +order by stddev_samp() on columns of table "draft_game_players" +""" +input draft_game_players_stddev_samp_order_by { + elo_snapshot: order_by + lineup: order_by + pick_order: order_by + steam_id: order_by +} + +""" +Streaming cursor of the table "draft_game_players" +""" +input draft_game_players_stream_cursor_input { + """Stream column input with initial value""" + initial_value: draft_game_players_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input draft_game_players_stream_cursor_value_input { + draft_game_id: uuid + elo_snapshot: Int + is_captain: Boolean + joined_at: timestamptz + lineup: Int + pick_order: Int + status: e_draft_game_player_status_enum + steam_id: bigint +} + +"""aggregate sum on columns""" +type draft_game_players_sum_fields { + elo_snapshot: Int + lineup: Int + pick_order: Int + steam_id: bigint +} + +""" +order by sum() on columns of table "draft_game_players" +""" +input draft_game_players_sum_order_by { + elo_snapshot: order_by + lineup: order_by + pick_order: order_by + steam_id: order_by +} + +""" +update columns of table "draft_game_players" +""" +enum draft_game_players_update_column { + """column name""" + draft_game_id + + """column name""" + elo_snapshot + + """column name""" + is_captain + + """column name""" + joined_at + + """column name""" + lineup + + """column name""" + pick_order + + """column name""" + status + + """column name""" + steam_id +} + +input draft_game_players_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: draft_game_players_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: draft_game_players_set_input + + """filter the rows which have to be updated""" + where: draft_game_players_bool_exp! +} + +"""aggregate var_pop on columns""" +type draft_game_players_var_pop_fields { + elo_snapshot: Float + lineup: Float + pick_order: Float + steam_id: Float +} + +""" +order by var_pop() on columns of table "draft_game_players" +""" +input draft_game_players_var_pop_order_by { + elo_snapshot: order_by + lineup: order_by + pick_order: order_by + steam_id: order_by +} + +"""aggregate var_samp on columns""" +type draft_game_players_var_samp_fields { + elo_snapshot: Float + lineup: Float + pick_order: Float + steam_id: Float +} + +""" +order by var_samp() on columns of table "draft_game_players" +""" +input draft_game_players_var_samp_order_by { + elo_snapshot: order_by + lineup: order_by + pick_order: order_by + steam_id: order_by +} + +"""aggregate variance on columns""" +type draft_game_players_variance_fields { + elo_snapshot: Float + lineup: Float + pick_order: Float + steam_id: Float +} + +""" +order by variance() on columns of table "draft_game_players" +""" +input draft_game_players_variance_order_by { + elo_snapshot: order_by + lineup: order_by + pick_order: order_by + steam_id: order_by +} + +""" +columns and relationships of "draft_games" +""" +type draft_games { + access: e_lobby_access_enum! + capacity: Int! + captain_selection: e_draft_game_captain_selection_enum! + created_at: timestamptz! + current_pick_lineup: Int + draft_order: e_draft_game_draft_order_enum! + + """An object relationship""" + e_draft_game_captain_selection: e_draft_game_captain_selection! + + """An object relationship""" + e_draft_game_draft_order: e_draft_game_draft_order! + + """An object relationship""" + e_draft_game_mode: e_draft_game_mode! + + """An object relationship""" + e_draft_game_status: e_draft_game_status! + + """An object relationship""" + e_lobby_access: e_lobby_access! + expires_at: timestamptz + + """An object relationship""" + host: players! + host_steam_id: bigint! + id: uuid! + inner_squad: Boolean! + invite_code: uuid! + is_organizer: Boolean + + """An object relationship""" + map_pool: map_pools + map_pool_id: uuid + + """An object relationship""" + match: matches + match_id: uuid + match_options_id: uuid + max_elo: Int + min_elo: Int + mode: e_draft_game_mode_enum! + + """An object relationship""" + options: match_options + + """Turn order (lineup 1/2) for each remaining non-captain pick.""" + pattern( + """JSON select path""" + path: String + ): jsonb + pick_deadline: timestamptz + + """An array relationship""" + picks( + """distinct select on columns""" + distinct_on: [draft_game_picks_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [draft_game_picks_order_by!] + + """filter the rows returned""" + where: draft_game_picks_bool_exp + ): [draft_game_picks!]! + + """An aggregate relationship""" + picks_aggregate( + """distinct select on columns""" + distinct_on: [draft_game_picks_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [draft_game_picks_order_by!] + + """filter the rows returned""" + where: draft_game_picks_bool_exp + ): draft_game_picks_aggregate! + + """An array relationship""" + players( + """distinct select on columns""" + distinct_on: [draft_game_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [draft_game_players_order_by!] + + """filter the rows returned""" + where: draft_game_players_bool_exp + ): [draft_game_players!]! + + """An aggregate relationship""" + players_aggregate( + """distinct select on columns""" + distinct_on: [draft_game_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [draft_game_players_order_by!] + + """filter the rows returned""" + where: draft_game_players_bool_exp + ): draft_game_players_aggregate! + regions: [String!]! + require_approval: Boolean! + scheduled_at: timestamptz + status: e_draft_game_status_enum! + + """An object relationship""" + team_1: teams + team_1_id: uuid + + """An object relationship""" + team_2: teams + team_2_id: uuid + type: e_match_types_enum! + updated_at: timestamptz! +} + +""" +aggregated selection of "draft_games" +""" +type draft_games_aggregate { + aggregate: draft_games_aggregate_fields + nodes: [draft_games!]! +} + +input draft_games_aggregate_bool_exp { + bool_and: draft_games_aggregate_bool_exp_bool_and + bool_or: draft_games_aggregate_bool_exp_bool_or + count: draft_games_aggregate_bool_exp_count +} + +input draft_games_aggregate_bool_exp_bool_and { + arguments: draft_games_select_column_draft_games_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: draft_games_bool_exp + predicate: Boolean_comparison_exp! +} + +input draft_games_aggregate_bool_exp_bool_or { + arguments: draft_games_select_column_draft_games_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: draft_games_bool_exp + predicate: Boolean_comparison_exp! +} + +input draft_games_aggregate_bool_exp_count { + arguments: [draft_games_select_column!] + distinct: Boolean + filter: draft_games_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "draft_games" +""" +type draft_games_aggregate_fields { + avg: draft_games_avg_fields + count(columns: [draft_games_select_column!], distinct: Boolean): Int! + max: draft_games_max_fields + min: draft_games_min_fields + stddev: draft_games_stddev_fields + stddev_pop: draft_games_stddev_pop_fields + stddev_samp: draft_games_stddev_samp_fields + sum: draft_games_sum_fields + var_pop: draft_games_var_pop_fields + var_samp: draft_games_var_samp_fields + variance: draft_games_variance_fields +} + +""" +order by aggregate values of table "draft_games" +""" +input draft_games_aggregate_order_by { + avg: draft_games_avg_order_by + count: order_by + max: draft_games_max_order_by + min: draft_games_min_order_by + stddev: draft_games_stddev_order_by + stddev_pop: draft_games_stddev_pop_order_by + stddev_samp: draft_games_stddev_samp_order_by + sum: draft_games_sum_order_by + var_pop: draft_games_var_pop_order_by + var_samp: draft_games_var_samp_order_by + variance: draft_games_variance_order_by +} + +""" +input type for inserting array relation for remote table "draft_games" +""" +input draft_games_arr_rel_insert_input { + data: [draft_games_insert_input!]! + + """upsert condition""" + on_conflict: draft_games_on_conflict +} + +"""aggregate avg on columns""" +type draft_games_avg_fields { + capacity: Float + current_pick_lineup: Float + host_steam_id: Float + max_elo: Float + min_elo: Float +} + +""" +order by avg() on columns of table "draft_games" +""" +input draft_games_avg_order_by { + capacity: order_by + current_pick_lineup: order_by + host_steam_id: order_by + max_elo: order_by + min_elo: order_by +} + +""" +Boolean expression to filter rows from the table "draft_games". All fields are combined with a logical 'AND'. +""" +input draft_games_bool_exp { + _and: [draft_games_bool_exp!] + _not: draft_games_bool_exp + _or: [draft_games_bool_exp!] + access: e_lobby_access_enum_comparison_exp + capacity: Int_comparison_exp + captain_selection: e_draft_game_captain_selection_enum_comparison_exp + created_at: timestamptz_comparison_exp + current_pick_lineup: Int_comparison_exp + draft_order: e_draft_game_draft_order_enum_comparison_exp + e_draft_game_captain_selection: e_draft_game_captain_selection_bool_exp + e_draft_game_draft_order: e_draft_game_draft_order_bool_exp + e_draft_game_mode: e_draft_game_mode_bool_exp + e_draft_game_status: e_draft_game_status_bool_exp + e_lobby_access: e_lobby_access_bool_exp + expires_at: timestamptz_comparison_exp + host: players_bool_exp + host_steam_id: bigint_comparison_exp + id: uuid_comparison_exp + inner_squad: Boolean_comparison_exp + invite_code: uuid_comparison_exp + is_organizer: Boolean_comparison_exp + map_pool: map_pools_bool_exp + map_pool_id: uuid_comparison_exp + match: matches_bool_exp + match_id: uuid_comparison_exp + match_options_id: uuid_comparison_exp + max_elo: Int_comparison_exp + min_elo: Int_comparison_exp + mode: e_draft_game_mode_enum_comparison_exp + options: match_options_bool_exp + pattern: jsonb_comparison_exp + pick_deadline: timestamptz_comparison_exp + picks: draft_game_picks_bool_exp + picks_aggregate: draft_game_picks_aggregate_bool_exp + players: draft_game_players_bool_exp + players_aggregate: draft_game_players_aggregate_bool_exp + regions: String_array_comparison_exp + require_approval: Boolean_comparison_exp + scheduled_at: timestamptz_comparison_exp + status: e_draft_game_status_enum_comparison_exp + team_1: teams_bool_exp + team_1_id: uuid_comparison_exp + team_2: teams_bool_exp + team_2_id: uuid_comparison_exp + type: e_match_types_enum_comparison_exp + updated_at: timestamptz_comparison_exp +} + +""" +unique or primary key constraints on table "draft_games" +""" +enum draft_games_constraint { + """ + unique or primary key constraint on columns "id" + """ + draft_games_pkey +} + +""" +input type for incrementing numeric columns in table "draft_games" +""" +input draft_games_inc_input { + capacity: Int + current_pick_lineup: Int + host_steam_id: bigint + max_elo: Int + min_elo: Int +} + +""" +input type for inserting data into table "draft_games" +""" +input draft_games_insert_input { + access: e_lobby_access_enum + capacity: Int + captain_selection: e_draft_game_captain_selection_enum + created_at: timestamptz + current_pick_lineup: Int + draft_order: e_draft_game_draft_order_enum + e_draft_game_captain_selection: e_draft_game_captain_selection_obj_rel_insert_input + e_draft_game_draft_order: e_draft_game_draft_order_obj_rel_insert_input + e_draft_game_mode: e_draft_game_mode_obj_rel_insert_input + e_draft_game_status: e_draft_game_status_obj_rel_insert_input + e_lobby_access: e_lobby_access_obj_rel_insert_input + expires_at: timestamptz + host: players_obj_rel_insert_input + host_steam_id: bigint + id: uuid + inner_squad: Boolean + invite_code: uuid + map_pool: map_pools_obj_rel_insert_input + map_pool_id: uuid + match: matches_obj_rel_insert_input + match_id: uuid + match_options_id: uuid + max_elo: Int + min_elo: Int + mode: e_draft_game_mode_enum + options: match_options_obj_rel_insert_input + pick_deadline: timestamptz + picks: draft_game_picks_arr_rel_insert_input + players: draft_game_players_arr_rel_insert_input + regions: [String!] + require_approval: Boolean + scheduled_at: timestamptz + status: e_draft_game_status_enum + team_1: teams_obj_rel_insert_input + team_1_id: uuid + team_2: teams_obj_rel_insert_input + team_2_id: uuid + type: e_match_types_enum + updated_at: timestamptz +} + +"""aggregate max on columns""" +type draft_games_max_fields { + capacity: Int + created_at: timestamptz + current_pick_lineup: Int + expires_at: timestamptz + host_steam_id: bigint + id: uuid + invite_code: uuid + map_pool_id: uuid + match_id: uuid + match_options_id: uuid + max_elo: Int + min_elo: Int + pick_deadline: timestamptz + regions: [String!] + scheduled_at: timestamptz + team_1_id: uuid + team_2_id: uuid + updated_at: timestamptz +} + +""" +order by max() on columns of table "draft_games" +""" +input draft_games_max_order_by { + capacity: order_by + created_at: order_by + current_pick_lineup: order_by + expires_at: order_by + host_steam_id: order_by + id: order_by + invite_code: order_by + map_pool_id: order_by + match_id: order_by + match_options_id: order_by + max_elo: order_by + min_elo: order_by + pick_deadline: order_by + regions: order_by + scheduled_at: order_by + team_1_id: order_by + team_2_id: order_by + updated_at: order_by +} + +"""aggregate min on columns""" +type draft_games_min_fields { + capacity: Int + created_at: timestamptz + current_pick_lineup: Int + expires_at: timestamptz + host_steam_id: bigint + id: uuid + invite_code: uuid + map_pool_id: uuid + match_id: uuid + match_options_id: uuid + max_elo: Int + min_elo: Int + pick_deadline: timestamptz + regions: [String!] + scheduled_at: timestamptz + team_1_id: uuid + team_2_id: uuid + updated_at: timestamptz +} + +""" +order by min() on columns of table "draft_games" +""" +input draft_games_min_order_by { + capacity: order_by + created_at: order_by + current_pick_lineup: order_by + expires_at: order_by + host_steam_id: order_by + id: order_by + invite_code: order_by + map_pool_id: order_by + match_id: order_by + match_options_id: order_by + max_elo: order_by + min_elo: order_by + pick_deadline: order_by + regions: order_by + scheduled_at: order_by + team_1_id: order_by + team_2_id: order_by + updated_at: order_by +} + +""" +response of any mutation on the table "draft_games" +""" +type draft_games_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [draft_games!]! +} + +""" +input type for inserting object relation for remote table "draft_games" +""" +input draft_games_obj_rel_insert_input { + data: draft_games_insert_input! + + """upsert condition""" + on_conflict: draft_games_on_conflict +} + +""" +on_conflict condition type for table "draft_games" +""" +input draft_games_on_conflict { + constraint: draft_games_constraint! + update_columns: [draft_games_update_column!]! = [] + where: draft_games_bool_exp +} + +"""Ordering options when selecting data from "draft_games".""" +input draft_games_order_by { + access: order_by + capacity: order_by + captain_selection: order_by + created_at: order_by + current_pick_lineup: order_by + draft_order: order_by + e_draft_game_captain_selection: e_draft_game_captain_selection_order_by + e_draft_game_draft_order: e_draft_game_draft_order_order_by + e_draft_game_mode: e_draft_game_mode_order_by + e_draft_game_status: e_draft_game_status_order_by + e_lobby_access: e_lobby_access_order_by + expires_at: order_by + host: players_order_by + host_steam_id: order_by + id: order_by + inner_squad: order_by + invite_code: order_by + is_organizer: order_by + map_pool: map_pools_order_by + map_pool_id: order_by + match: matches_order_by + match_id: order_by + match_options_id: order_by + max_elo: order_by + min_elo: order_by + mode: order_by + options: match_options_order_by + pattern: order_by + pick_deadline: order_by + picks_aggregate: draft_game_picks_aggregate_order_by + players_aggregate: draft_game_players_aggregate_order_by + regions: order_by + require_approval: order_by + scheduled_at: order_by + status: order_by + team_1: teams_order_by + team_1_id: order_by + team_2: teams_order_by + team_2_id: order_by + type: order_by + updated_at: order_by +} + +"""primary key columns input for table: draft_games""" +input draft_games_pk_columns_input { + id: uuid! +} + +""" +select columns of table "draft_games" +""" +enum draft_games_select_column { + """column name""" + access + + """column name""" + capacity + + """column name""" + captain_selection + + """column name""" + created_at + + """column name""" + current_pick_lineup + + """column name""" + draft_order + + """column name""" + expires_at + + """column name""" + host_steam_id + + """column name""" + id + + """column name""" + inner_squad + + """column name""" + invite_code + + """column name""" + map_pool_id + + """column name""" + match_id + + """column name""" + match_options_id + + """column name""" + max_elo + + """column name""" + min_elo + + """column name""" + mode + + """column name""" + pick_deadline + + """column name""" + regions + + """column name""" + require_approval + + """column name""" + scheduled_at + + """column name""" + status + + """column name""" + team_1_id + + """column name""" + team_2_id + + """column name""" + type + + """column name""" + updated_at +} + +""" +select "draft_games_aggregate_bool_exp_bool_and_arguments_columns" columns of table "draft_games" +""" +enum draft_games_select_column_draft_games_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + inner_squad + + """column name""" + require_approval +} + +""" +select "draft_games_aggregate_bool_exp_bool_or_arguments_columns" columns of table "draft_games" +""" +enum draft_games_select_column_draft_games_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + inner_squad + + """column name""" + require_approval +} + +""" +input type for updating data in table "draft_games" +""" +input draft_games_set_input { + access: e_lobby_access_enum + capacity: Int + captain_selection: e_draft_game_captain_selection_enum + created_at: timestamptz + current_pick_lineup: Int + draft_order: e_draft_game_draft_order_enum + expires_at: timestamptz + host_steam_id: bigint + id: uuid + inner_squad: Boolean + invite_code: uuid + map_pool_id: uuid + match_id: uuid + match_options_id: uuid + max_elo: Int + min_elo: Int + mode: e_draft_game_mode_enum + pick_deadline: timestamptz + regions: [String!] + require_approval: Boolean + scheduled_at: timestamptz + status: e_draft_game_status_enum + team_1_id: uuid + team_2_id: uuid + type: e_match_types_enum + updated_at: timestamptz +} + +"""aggregate stddev on columns""" +type draft_games_stddev_fields { + capacity: Float + current_pick_lineup: Float + host_steam_id: Float + max_elo: Float + min_elo: Float +} + +""" +order by stddev() on columns of table "draft_games" +""" +input draft_games_stddev_order_by { + capacity: order_by + current_pick_lineup: order_by + host_steam_id: order_by + max_elo: order_by + min_elo: order_by +} + +"""aggregate stddev_pop on columns""" +type draft_games_stddev_pop_fields { + capacity: Float + current_pick_lineup: Float + host_steam_id: Float + max_elo: Float + min_elo: Float +} + +""" +order by stddev_pop() on columns of table "draft_games" +""" +input draft_games_stddev_pop_order_by { + capacity: order_by + current_pick_lineup: order_by + host_steam_id: order_by + max_elo: order_by + min_elo: order_by +} + +"""aggregate stddev_samp on columns""" +type draft_games_stddev_samp_fields { + capacity: Float + current_pick_lineup: Float + host_steam_id: Float + max_elo: Float + min_elo: Float +} + +""" +order by stddev_samp() on columns of table "draft_games" +""" +input draft_games_stddev_samp_order_by { + capacity: order_by + current_pick_lineup: order_by + host_steam_id: order_by + max_elo: order_by + min_elo: order_by +} + +""" +Streaming cursor of the table "draft_games" +""" +input draft_games_stream_cursor_input { + """Stream column input with initial value""" + initial_value: draft_games_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input draft_games_stream_cursor_value_input { + access: e_lobby_access_enum + capacity: Int + captain_selection: e_draft_game_captain_selection_enum + created_at: timestamptz + current_pick_lineup: Int + draft_order: e_draft_game_draft_order_enum + expires_at: timestamptz + host_steam_id: bigint + id: uuid + inner_squad: Boolean + invite_code: uuid + map_pool_id: uuid + match_id: uuid + match_options_id: uuid + max_elo: Int + min_elo: Int + mode: e_draft_game_mode_enum + pick_deadline: timestamptz + regions: [String!] + require_approval: Boolean + scheduled_at: timestamptz + status: e_draft_game_status_enum + team_1_id: uuid + team_2_id: uuid + type: e_match_types_enum + updated_at: timestamptz +} + +"""aggregate sum on columns""" +type draft_games_sum_fields { + capacity: Int + current_pick_lineup: Int + host_steam_id: bigint + max_elo: Int + min_elo: Int +} + +""" +order by sum() on columns of table "draft_games" +""" +input draft_games_sum_order_by { + capacity: order_by + current_pick_lineup: order_by + host_steam_id: order_by + max_elo: order_by + min_elo: order_by +} + +""" +update columns of table "draft_games" +""" +enum draft_games_update_column { + """column name""" + access + + """column name""" + capacity + + """column name""" + captain_selection + + """column name""" + created_at + + """column name""" + current_pick_lineup + + """column name""" + draft_order + + """column name""" + expires_at + + """column name""" + host_steam_id + + """column name""" + id + + """column name""" + inner_squad + + """column name""" + invite_code + + """column name""" + map_pool_id + + """column name""" + match_id + + """column name""" + match_options_id + + """column name""" + max_elo + + """column name""" + min_elo + + """column name""" + mode + + """column name""" + pick_deadline + + """column name""" + regions + + """column name""" + require_approval + + """column name""" + scheduled_at + + """column name""" + status + + """column name""" + team_1_id + + """column name""" + team_2_id + + """column name""" + type + + """column name""" + updated_at +} + +input draft_games_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: draft_games_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: draft_games_set_input + + """filter the rows which have to be updated""" + where: draft_games_bool_exp! +} + +"""aggregate var_pop on columns""" +type draft_games_var_pop_fields { + capacity: Float + current_pick_lineup: Float + host_steam_id: Float + max_elo: Float + min_elo: Float +} + +""" +order by var_pop() on columns of table "draft_games" +""" +input draft_games_var_pop_order_by { + capacity: order_by + current_pick_lineup: order_by + host_steam_id: order_by + max_elo: order_by + min_elo: order_by +} + +"""aggregate var_samp on columns""" +type draft_games_var_samp_fields { + capacity: Float + current_pick_lineup: Float + host_steam_id: Float + max_elo: Float + min_elo: Float +} + +""" +order by var_samp() on columns of table "draft_games" +""" +input draft_games_var_samp_order_by { + capacity: order_by + current_pick_lineup: order_by + host_steam_id: order_by + max_elo: order_by + min_elo: order_by +} + +"""aggregate variance on columns""" +type draft_games_variance_fields { + capacity: Float + current_pick_lineup: Float + host_steam_id: Float + max_elo: Float + min_elo: Float +} + +""" +order by variance() on columns of table "draft_games" +""" +input draft_games_variance_order_by { + capacity: order_by + current_pick_lineup: order_by + host_steam_id: order_by + max_elo: order_by + min_elo: order_by +} + +""" +columns and relationships of "e_award_sources" +""" +type e_award_sources { + description: String! + value: String! +} + +""" +aggregated selection of "e_award_sources" +""" +type e_award_sources_aggregate { + aggregate: e_award_sources_aggregate_fields + nodes: [e_award_sources!]! +} + +""" +aggregate fields of "e_award_sources" +""" +type e_award_sources_aggregate_fields { + count(columns: [e_award_sources_select_column!], distinct: Boolean): Int! + max: e_award_sources_max_fields + min: e_award_sources_min_fields +} + +""" +Boolean expression to filter rows from the table "e_award_sources". All fields are combined with a logical 'AND'. +""" +input e_award_sources_bool_exp { + _and: [e_award_sources_bool_exp!] + _not: e_award_sources_bool_exp + _or: [e_award_sources_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_award_sources" +""" +enum e_award_sources_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_award_sources_pkey +} + +enum e_award_sources_enum { + """Granted by hand""" + manual + + """Calculated from a season standing""" + season + + """Calculated from a tournament placement""" + tournament +} + +""" +Boolean expression to compare columns of type "e_award_sources_enum". All fields are combined with logical 'AND'. +""" +input e_award_sources_enum_comparison_exp { + _eq: e_award_sources_enum + _in: [e_award_sources_enum!] + _is_null: Boolean + _neq: e_award_sources_enum + _nin: [e_award_sources_enum!] +} + +""" +input type for inserting data into table "e_award_sources" +""" +input e_award_sources_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_award_sources_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_award_sources_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_award_sources" +""" +type e_award_sources_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_award_sources!]! +} + +""" +on_conflict condition type for table "e_award_sources" +""" +input e_award_sources_on_conflict { + constraint: e_award_sources_constraint! + update_columns: [e_award_sources_update_column!]! = [] + where: e_award_sources_bool_exp +} + +"""Ordering options when selecting data from "e_award_sources".""" +input e_award_sources_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_award_sources""" +input e_award_sources_pk_columns_input { + value: String! +} + +""" +select columns of table "e_award_sources" +""" +enum e_award_sources_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_award_sources" +""" +input e_award_sources_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_award_sources" +""" +input 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 +} + +"""Initial value of the column from where the streaming should start""" +input e_award_sources_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_award_sources" +""" +enum e_award_sources_update_column { + """column name""" + description + + """column name""" + value +} + +input e_award_sources_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_award_sources_set_input + + """filter the rows which have to be updated""" + where: e_award_sources_bool_exp! +} + +""" +columns and relationships of "e_award_tiers" +""" +type e_award_tiers { + description: String! + value: String! +} + +""" +aggregated selection of "e_award_tiers" +""" +type e_award_tiers_aggregate { + aggregate: e_award_tiers_aggregate_fields + nodes: [e_award_tiers!]! +} + +""" +aggregate fields of "e_award_tiers" +""" +type e_award_tiers_aggregate_fields { + count(columns: [e_award_tiers_select_column!], distinct: Boolean): Int! + max: e_award_tiers_max_fields + min: e_award_tiers_min_fields +} + +""" +Boolean expression to filter rows from the table "e_award_tiers". All fields are combined with a logical 'AND'. +""" +input e_award_tiers_bool_exp { + _and: [e_award_tiers_bool_exp!] + _not: e_award_tiers_bool_exp + _or: [e_award_tiers_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_award_tiers" +""" +enum e_award_tiers_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_award_tiers_pkey +} + +enum e_award_tiers_enum { + """Third place""" + bronze + + """First place""" + gold + + """Most valuable player""" + mvp + + """Second place""" + silver + + """Standalone award""" + special +} + +""" +Boolean expression to compare columns of type "e_award_tiers_enum". All fields are combined with logical 'AND'. +""" +input e_award_tiers_enum_comparison_exp { + _eq: e_award_tiers_enum + _in: [e_award_tiers_enum!] + _is_null: Boolean + _neq: e_award_tiers_enum + _nin: [e_award_tiers_enum!] +} + +""" +input type for inserting data into table "e_award_tiers" +""" +input e_award_tiers_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_award_tiers_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_award_tiers_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_award_tiers" +""" +type e_award_tiers_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_award_tiers!]! +} + +""" +on_conflict condition type for table "e_award_tiers" +""" +input e_award_tiers_on_conflict { + constraint: e_award_tiers_constraint! + update_columns: [e_award_tiers_update_column!]! = [] + where: e_award_tiers_bool_exp +} + +"""Ordering options when selecting data from "e_award_tiers".""" +input e_award_tiers_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_award_tiers""" +input e_award_tiers_pk_columns_input { + value: String! +} + +""" +select columns of table "e_award_tiers" +""" +enum e_award_tiers_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_award_tiers" +""" +input e_award_tiers_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_award_tiers" +""" +input 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 +} + +"""Initial value of the column from where the streaming should start""" +input e_award_tiers_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_award_tiers" +""" +enum e_award_tiers_update_column { + """column name""" + description + + """column name""" + value +} + +input e_award_tiers_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_award_tiers_set_input + + """filter the rows which have to be updated""" + where: e_award_tiers_bool_exp! +} + +""" +columns and relationships of "e_check_in_settings" +""" +type e_check_in_settings { + description: String! + value: String! +} + +""" +aggregated selection of "e_check_in_settings" +""" +type e_check_in_settings_aggregate { + aggregate: e_check_in_settings_aggregate_fields + nodes: [e_check_in_settings!]! +} + +""" +aggregate fields of "e_check_in_settings" +""" +type e_check_in_settings_aggregate_fields { + count(columns: [e_check_in_settings_select_column!], distinct: Boolean): Int! + max: e_check_in_settings_max_fields + min: e_check_in_settings_min_fields +} + +""" +Boolean expression to filter rows from the table "e_check_in_settings". All fields are combined with a logical 'AND'. +""" +input e_check_in_settings_bool_exp { + _and: [e_check_in_settings_bool_exp!] + _not: e_check_in_settings_bool_exp + _or: [e_check_in_settings_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_check_in_settings" +""" +enum e_check_in_settings_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_check_in_settings_pkey +} + +enum e_check_in_settings_enum { + """Admins Only""" + Admin + + """Captains Only""" + Captains + + """All Players""" + Players +} + +""" +Boolean expression to compare columns of type "e_check_in_settings_enum". All fields are combined with logical 'AND'. +""" +input e_check_in_settings_enum_comparison_exp { + _eq: e_check_in_settings_enum + _in: [e_check_in_settings_enum!] + _is_null: Boolean + _neq: e_check_in_settings_enum + _nin: [e_check_in_settings_enum!] +} + +""" +input type for inserting data into table "e_check_in_settings" +""" +input e_check_in_settings_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_check_in_settings_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_check_in_settings_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_check_in_settings" +""" +type e_check_in_settings_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_check_in_settings!]! +} + +""" +on_conflict condition type for table "e_check_in_settings" +""" +input 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 +} + +"""Ordering options when selecting data from "e_check_in_settings".""" +input e_check_in_settings_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_check_in_settings""" +input e_check_in_settings_pk_columns_input { + value: String! +} + +""" +select columns of table "e_check_in_settings" +""" +enum e_check_in_settings_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_check_in_settings" +""" +input e_check_in_settings_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_check_in_settings" +""" +input 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 +} + +"""Initial value of the column from where the streaming should start""" +input e_check_in_settings_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_check_in_settings" +""" +enum e_check_in_settings_update_column { + """column name""" + description + + """column name""" + value +} + +input e_check_in_settings_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_check_in_settings_set_input + + """filter the rows which have to be updated""" + where: e_check_in_settings_bool_exp! +} + +""" +columns and relationships of "e_draft_game_captain_selection" +""" +type e_draft_game_captain_selection { + description: String! + value: String! +} + +""" +aggregated selection of "e_draft_game_captain_selection" +""" +type e_draft_game_captain_selection_aggregate { + aggregate: e_draft_game_captain_selection_aggregate_fields + nodes: [e_draft_game_captain_selection!]! +} + +""" +aggregate fields of "e_draft_game_captain_selection" +""" +type e_draft_game_captain_selection_aggregate_fields { + count(columns: [e_draft_game_captain_selection_select_column!], distinct: Boolean): Int! + max: e_draft_game_captain_selection_max_fields + min: e_draft_game_captain_selection_min_fields +} + +""" +Boolean expression to filter rows from the table "e_draft_game_captain_selection". All fields are combined with a logical 'AND'. +""" +input e_draft_game_captain_selection_bool_exp { + _and: [e_draft_game_captain_selection_bool_exp!] + _not: e_draft_game_captain_selection_bool_exp + _or: [e_draft_game_captain_selection_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_draft_game_captain_selection" +""" +enum e_draft_game_captain_selection_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_draft_game_captain_selection_pkey +} + +enum e_draft_game_captain_selection_enum { + """Host and Next Highest""" + HostAndNext + + """Host Picks Captains""" + Manual + + """Random Two""" + RandomTwo + + """Top 2 by Rank""" + TopEloTwo +} + +""" +Boolean expression to compare columns of type "e_draft_game_captain_selection_enum". All fields are combined with logical 'AND'. +""" +input e_draft_game_captain_selection_enum_comparison_exp { + _eq: e_draft_game_captain_selection_enum + _in: [e_draft_game_captain_selection_enum!] + _is_null: Boolean + _neq: e_draft_game_captain_selection_enum + _nin: [e_draft_game_captain_selection_enum!] +} + +""" +input type for inserting data into table "e_draft_game_captain_selection" +""" +input e_draft_game_captain_selection_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_draft_game_captain_selection_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_draft_game_captain_selection_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_draft_game_captain_selection" +""" +type e_draft_game_captain_selection_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_draft_game_captain_selection!]! +} + +""" +input type for inserting object relation for remote table "e_draft_game_captain_selection" +""" +input 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 +} + +""" +on_conflict condition type for table "e_draft_game_captain_selection" +""" +input 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 +} + +""" +Ordering options when selecting data from "e_draft_game_captain_selection". +""" +input e_draft_game_captain_selection_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_draft_game_captain_selection""" +input e_draft_game_captain_selection_pk_columns_input { + value: String! +} + +""" +select columns of table "e_draft_game_captain_selection" +""" +enum e_draft_game_captain_selection_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_draft_game_captain_selection" +""" +input e_draft_game_captain_selection_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_draft_game_captain_selection" +""" +input 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 +} + +"""Initial value of the column from where the streaming should start""" +input e_draft_game_captain_selection_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_draft_game_captain_selection" +""" +enum e_draft_game_captain_selection_update_column { + """column name""" + description + + """column name""" + value +} + +input 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 + + """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" +""" +type e_draft_game_draft_order { + description: String! + value: String! +} + +""" +aggregated selection of "e_draft_game_draft_order" +""" +type e_draft_game_draft_order_aggregate { + aggregate: e_draft_game_draft_order_aggregate_fields + nodes: [e_draft_game_draft_order!]! +} + +""" +aggregate fields of "e_draft_game_draft_order" +""" +type e_draft_game_draft_order_aggregate_fields { + count(columns: [e_draft_game_draft_order_select_column!], distinct: Boolean): Int! + max: e_draft_game_draft_order_max_fields + min: e_draft_game_draft_order_min_fields +} + +""" +Boolean expression to filter rows from the table "e_draft_game_draft_order". All fields are combined with a logical 'AND'. +""" +input e_draft_game_draft_order_bool_exp { + _and: [e_draft_game_draft_order_bool_exp!] + _not: e_draft_game_draft_order_bool_exp + _or: [e_draft_game_draft_order_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_draft_game_draft_order" +""" +enum e_draft_game_draft_order_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_draft_game_draft_order_pkey +} + +enum e_draft_game_draft_order_enum { + """Alternating (1-2-1-2)""" + Alternating + + """Front-Loaded (1-2-2-1-2-1)""" + FrontLoaded + + """Snake (1-2-2-1)""" + Snake +} + +""" +Boolean expression to compare columns of type "e_draft_game_draft_order_enum". All fields are combined with logical 'AND'. +""" +input e_draft_game_draft_order_enum_comparison_exp { + _eq: e_draft_game_draft_order_enum + _in: [e_draft_game_draft_order_enum!] + _is_null: Boolean + _neq: e_draft_game_draft_order_enum + _nin: [e_draft_game_draft_order_enum!] +} + +""" +input type for inserting data into table "e_draft_game_draft_order" +""" +input e_draft_game_draft_order_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_draft_game_draft_order_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_draft_game_draft_order_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_draft_game_draft_order" +""" +type e_draft_game_draft_order_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_draft_game_draft_order!]! +} + +""" +input type for inserting object relation for remote table "e_draft_game_draft_order" +""" +input 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 +} + +""" +on_conflict condition type for table "e_draft_game_draft_order" +""" +input 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 +} + +"""Ordering options when selecting data from "e_draft_game_draft_order".""" +input e_draft_game_draft_order_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_draft_game_draft_order""" +input e_draft_game_draft_order_pk_columns_input { + value: String! +} + +""" +select columns of table "e_draft_game_draft_order" +""" +enum e_draft_game_draft_order_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_draft_game_draft_order" +""" +input e_draft_game_draft_order_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_draft_game_draft_order" +""" +input e_draft_game_draft_order_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_draft_game_draft_order_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_draft_game_draft_order_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_draft_game_draft_order" +""" +enum e_draft_game_draft_order_update_column { + """column name""" + description + + """column name""" + value +} + +input e_draft_game_draft_order_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_draft_game_draft_order_set_input + + """filter the rows which have to be updated""" + where: e_draft_game_draft_order_bool_exp! +} + +""" +columns and relationships of "e_draft_game_mode" +""" +type e_draft_game_mode { + description: String! + value: String! +} + +""" +aggregated selection of "e_draft_game_mode" +""" +type e_draft_game_mode_aggregate { + aggregate: e_draft_game_mode_aggregate_fields + nodes: [e_draft_game_mode!]! +} + +""" +aggregate fields of "e_draft_game_mode" +""" +type e_draft_game_mode_aggregate_fields { + count(columns: [e_draft_game_mode_select_column!], distinct: Boolean): Int! + max: e_draft_game_mode_max_fields + min: e_draft_game_mode_min_fields +} + +""" +Boolean expression to filter rows from the table "e_draft_game_mode". All fields are combined with a logical 'AND'. +""" +input e_draft_game_mode_bool_exp { + _and: [e_draft_game_mode_bool_exp!] + _not: e_draft_game_mode_bool_exp + _or: [e_draft_game_mode_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_draft_game_mode" +""" +enum e_draft_game_mode_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_draft_game_mode_pkey +} + +enum e_draft_game_mode_enum { + """Two Captains Draft""" + Captains + + """Host Assigns Teams""" + Host + + """Auto-Split Teams""" + Pug + + """Pre-Made Teams""" + Teams +} + +""" +Boolean expression to compare columns of type "e_draft_game_mode_enum". All fields are combined with logical 'AND'. +""" +input e_draft_game_mode_enum_comparison_exp { + _eq: e_draft_game_mode_enum + _in: [e_draft_game_mode_enum!] + _is_null: Boolean + _neq: e_draft_game_mode_enum + _nin: [e_draft_game_mode_enum!] +} + +""" +input type for inserting data into table "e_draft_game_mode" +""" +input e_draft_game_mode_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_draft_game_mode_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_draft_game_mode_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_draft_game_mode" +""" +type e_draft_game_mode_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_draft_game_mode!]! +} + +""" +input type for inserting object relation for remote table "e_draft_game_mode" +""" +input 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 +} + +""" +on_conflict condition type for table "e_draft_game_mode" +""" +input 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 +} + +"""Ordering options when selecting data from "e_draft_game_mode".""" +input e_draft_game_mode_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_draft_game_mode""" +input e_draft_game_mode_pk_columns_input { + value: String! +} + +""" +select columns of table "e_draft_game_mode" +""" +enum e_draft_game_mode_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_draft_game_mode" +""" +input e_draft_game_mode_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_draft_game_mode" +""" +input 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 +} + +"""Initial value of the column from where the streaming should start""" +input e_draft_game_mode_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_draft_game_mode" +""" +enum e_draft_game_mode_update_column { + """column name""" + description + + """column name""" + value +} + +input e_draft_game_mode_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_draft_game_mode_set_input + + """filter the rows which have to be updated""" + where: e_draft_game_mode_bool_exp! +} + +""" +columns and relationships of "e_draft_game_player_status" +""" +type e_draft_game_player_status { + description: String! + value: String! +} + +""" +aggregated selection of "e_draft_game_player_status" +""" +type e_draft_game_player_status_aggregate { + aggregate: e_draft_game_player_status_aggregate_fields + nodes: [e_draft_game_player_status!]! +} + +""" +aggregate fields of "e_draft_game_player_status" +""" +type e_draft_game_player_status_aggregate_fields { + count(columns: [e_draft_game_player_status_select_column!], distinct: Boolean): Int! + max: e_draft_game_player_status_max_fields + min: e_draft_game_player_status_min_fields +} + +""" +Boolean expression to filter rows from the table "e_draft_game_player_status". All fields are combined with a logical 'AND'. +""" +input e_draft_game_player_status_bool_exp { + _and: [e_draft_game_player_status_bool_exp!] + _not: e_draft_game_player_status_bool_exp + _or: [e_draft_game_player_status_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_draft_game_player_status" +""" +enum e_draft_game_player_status_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_draft_game_player_status_pkey +} + +enum e_draft_game_player_status_enum { + """Player Accepted Into Game""" + Accepted + + """Player Invited To Join""" + Invited + + """Player Requested To Join""" + Requested + + """Player On Waitlist""" + Waitlist +} + +""" +Boolean expression to compare columns of type "e_draft_game_player_status_enum". All fields are combined with logical 'AND'. +""" +input e_draft_game_player_status_enum_comparison_exp { + _eq: e_draft_game_player_status_enum + _in: [e_draft_game_player_status_enum!] + _is_null: Boolean + _neq: e_draft_game_player_status_enum + _nin: [e_draft_game_player_status_enum!] +} + +""" +input type for inserting data into table "e_draft_game_player_status" +""" +input e_draft_game_player_status_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_draft_game_player_status_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_draft_game_player_status_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_draft_game_player_status" +""" +type e_draft_game_player_status_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_draft_game_player_status!]! +} + +""" +input type for inserting object relation for remote table "e_draft_game_player_status" +""" +input 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 +} + +""" +on_conflict condition type for table "e_draft_game_player_status" +""" +input 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 +} + +""" +Ordering options when selecting data from "e_draft_game_player_status". +""" +input e_draft_game_player_status_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_draft_game_player_status""" +input e_draft_game_player_status_pk_columns_input { + value: String! +} + +""" +select columns of table "e_draft_game_player_status" +""" +enum e_draft_game_player_status_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_draft_game_player_status" +""" +input e_draft_game_player_status_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_draft_game_player_status" +""" +input 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 +} + +"""Initial value of the column from where the streaming should start""" +input e_draft_game_player_status_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_draft_game_player_status" +""" +enum e_draft_game_player_status_update_column { + """column name""" + description + + """column name""" + value +} + +input e_draft_game_player_status_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_draft_game_player_status_set_input + + """filter the rows which have to be updated""" + where: e_draft_game_player_status_bool_exp! +} + +""" +columns and relationships of "e_draft_game_status" +""" +type e_draft_game_status { + description: String! + value: String! +} + +""" +aggregated selection of "e_draft_game_status" +""" +type e_draft_game_status_aggregate { + aggregate: e_draft_game_status_aggregate_fields + nodes: [e_draft_game_status!]! +} + +""" +aggregate fields of "e_draft_game_status" +""" +type e_draft_game_status_aggregate_fields { + count(columns: [e_draft_game_status_select_column!], distinct: Boolean): Int! + max: e_draft_game_status_max_fields + min: e_draft_game_status_min_fields +} + +""" +Boolean expression to filter rows from the table "e_draft_game_status". All fields are combined with a logical 'AND'. +""" +input e_draft_game_status_bool_exp { + _and: [e_draft_game_status_bool_exp!] + _not: e_draft_game_status_bool_exp + _or: [e_draft_game_status_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_draft_game_status" +""" +enum e_draft_game_status_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_draft_game_status_pkey +} + +enum e_draft_game_status_enum { + """Canceled""" + Canceled + + """Completed""" + Completed + + """Creating Match""" + CreatingMatch + + """Drafting Players""" + Drafting + + """Lobby Full""" + Filled + + """Accepting Players""" + Open + + """Selecting Captains""" + SelectingCaptains +} + +""" +Boolean expression to compare columns of type "e_draft_game_status_enum". All fields are combined with logical 'AND'. +""" +input e_draft_game_status_enum_comparison_exp { + _eq: e_draft_game_status_enum + _in: [e_draft_game_status_enum!] + _is_null: Boolean + _neq: e_draft_game_status_enum + _nin: [e_draft_game_status_enum!] +} + +""" +input type for inserting data into table "e_draft_game_status" +""" +input e_draft_game_status_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_draft_game_status_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_draft_game_status_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_draft_game_status" +""" +type e_draft_game_status_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_draft_game_status!]! +} + +""" +input type for inserting object relation for remote table "e_draft_game_status" +""" +input 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 +} + +""" +on_conflict condition type for table "e_draft_game_status" +""" +input 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 +} + +"""Ordering options when selecting data from "e_draft_game_status".""" +input e_draft_game_status_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_draft_game_status""" +input e_draft_game_status_pk_columns_input { + value: String! +} + +""" +select columns of table "e_draft_game_status" +""" +enum e_draft_game_status_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_draft_game_status" +""" +input e_draft_game_status_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_draft_game_status" +""" +input 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 +} + +"""Initial value of the column from where the streaming should start""" +input e_draft_game_status_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_draft_game_status" +""" +enum e_draft_game_status_update_column { + """column name""" + description + + """column name""" + value +} + +input e_draft_game_status_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_draft_game_status_set_input + + """filter the rows which have to be updated""" + where: e_draft_game_status_bool_exp! +} + +""" +columns and relationships of "e_event_media_access" +""" +type e_event_media_access { + description: String! + value: String! +} + +""" +aggregated selection of "e_event_media_access" +""" +type e_event_media_access_aggregate { + aggregate: e_event_media_access_aggregate_fields + nodes: [e_event_media_access!]! +} + +""" +aggregate fields of "e_event_media_access" +""" +type e_event_media_access_aggregate_fields { + count(columns: [e_event_media_access_select_column!], distinct: Boolean): Int! + max: e_event_media_access_max_fields + min: e_event_media_access_min_fields +} + +""" +Boolean expression to filter rows from the table "e_event_media_access". All fields are combined with a logical 'AND'. +""" +input e_event_media_access_bool_exp { + _and: [e_event_media_access_bool_exp!] + _not: e_event_media_access_bool_exp + _or: [e_event_media_access_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_event_media_access" +""" +enum e_event_media_access_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_event_media_access_pkey +} + +enum e_event_media_access_enum { + """Anyone involved in the event""" + Involved + + """Organizers only""" + Organizers +} + +""" +Boolean expression to compare columns of type "e_event_media_access_enum". All fields are combined with logical 'AND'. +""" +input e_event_media_access_enum_comparison_exp { + _eq: e_event_media_access_enum + _in: [e_event_media_access_enum!] + _is_null: Boolean + _neq: e_event_media_access_enum + _nin: [e_event_media_access_enum!] +} + +""" +input type for inserting data into table "e_event_media_access" +""" +input e_event_media_access_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_event_media_access_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_event_media_access_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_event_media_access" +""" +type e_event_media_access_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_event_media_access!]! +} + +""" +on_conflict condition type for table "e_event_media_access" +""" +input e_event_media_access_on_conflict { + constraint: e_event_media_access_constraint! + update_columns: [e_event_media_access_update_column!]! = [] + where: e_event_media_access_bool_exp +} + +"""Ordering options when selecting data from "e_event_media_access".""" +input e_event_media_access_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_event_media_access""" +input e_event_media_access_pk_columns_input { + value: String! +} + +""" +select columns of table "e_event_media_access" +""" +enum e_event_media_access_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_event_media_access" +""" +input e_event_media_access_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_event_media_access" +""" +input e_event_media_access_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_event_media_access_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_event_media_access_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_event_media_access" +""" +enum e_event_media_access_update_column { + """column name""" + description + + """column name""" + value +} + +input e_event_media_access_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_event_media_access_set_input + + """filter the rows which have to be updated""" + where: e_event_media_access_bool_exp! +} + +""" +columns and relationships of "e_event_visibility" +""" +type e_event_visibility { + description: String! + value: String! +} + +""" +aggregated selection of "e_event_visibility" +""" +type e_event_visibility_aggregate { + aggregate: e_event_visibility_aggregate_fields + nodes: [e_event_visibility!]! +} + +""" +aggregate fields of "e_event_visibility" +""" +type e_event_visibility_aggregate_fields { + count(columns: [e_event_visibility_select_column!], distinct: Boolean): Int! + max: e_event_visibility_max_fields + min: e_event_visibility_min_fields +} + +""" +Boolean expression to filter rows from the table "e_event_visibility". All fields are combined with a logical 'AND'. +""" +input e_event_visibility_bool_exp { + _and: [e_event_visibility_bool_exp!] + _not: e_event_visibility_bool_exp + _or: [e_event_visibility_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_event_visibility" +""" +enum e_event_visibility_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_event_visibility_pkey +} + +enum e_event_visibility_enum { + """Involved people and their friends""" + Friends + + """Only people involved in the event""" + Private + + """Anyone""" + Public +} + +""" +Boolean expression to compare columns of type "e_event_visibility_enum". All fields are combined with logical 'AND'. +""" +input e_event_visibility_enum_comparison_exp { + _eq: e_event_visibility_enum + _in: [e_event_visibility_enum!] + _is_null: Boolean + _neq: e_event_visibility_enum + _nin: [e_event_visibility_enum!] +} + +""" +input type for inserting data into table "e_event_visibility" +""" +input e_event_visibility_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_event_visibility_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_event_visibility_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_event_visibility" +""" +type e_event_visibility_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_event_visibility!]! +} + +""" +on_conflict condition type for table "e_event_visibility" +""" +input e_event_visibility_on_conflict { + constraint: e_event_visibility_constraint! + update_columns: [e_event_visibility_update_column!]! = [] + where: e_event_visibility_bool_exp +} + +"""Ordering options when selecting data from "e_event_visibility".""" +input e_event_visibility_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_event_visibility""" +input e_event_visibility_pk_columns_input { + value: String! +} + +""" +select columns of table "e_event_visibility" +""" +enum e_event_visibility_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_event_visibility" +""" +input e_event_visibility_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_event_visibility" +""" +input e_event_visibility_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_event_visibility_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_event_visibility_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_event_visibility" +""" +enum e_event_visibility_update_column { + """column name""" + description + + """column name""" + value +} + +input e_event_visibility_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_event_visibility_set_input + + """filter the rows which have to be updated""" + where: e_event_visibility_bool_exp! +} + +""" +columns and relationships of "e_friend_status" +""" +type e_friend_status { + description: String! + value: String! +} + +""" +aggregated selection of "e_friend_status" +""" +type e_friend_status_aggregate { + aggregate: e_friend_status_aggregate_fields + nodes: [e_friend_status!]! +} + +""" +aggregate fields of "e_friend_status" +""" +type e_friend_status_aggregate_fields { + count(columns: [e_friend_status_select_column!], distinct: Boolean): Int! + max: e_friend_status_max_fields + min: e_friend_status_min_fields +} + +""" +Boolean expression to filter rows from the table "e_friend_status". All fields are combined with a logical 'AND'. +""" +input e_friend_status_bool_exp { + _and: [e_friend_status_bool_exp!] + _not: e_friend_status_bool_exp + _or: [e_friend_status_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_friend_status" +""" +enum e_friend_status_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_friend_status_pkey +} + +enum e_friend_status_enum { + """Accepted""" + Accepted + + """Pending""" + Pending +} + +""" +Boolean expression to compare columns of type "e_friend_status_enum". All fields are combined with logical 'AND'. +""" +input e_friend_status_enum_comparison_exp { + _eq: e_friend_status_enum + _in: [e_friend_status_enum!] + _is_null: Boolean + _neq: e_friend_status_enum + _nin: [e_friend_status_enum!] +} + +""" +input type for inserting data into table "e_friend_status" +""" +input e_friend_status_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_friend_status_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_friend_status_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_friend_status" +""" +type e_friend_status_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_friend_status!]! +} + +""" +input type for inserting object relation for remote table "e_friend_status" +""" +input e_friend_status_obj_rel_insert_input { + data: e_friend_status_insert_input! + + """upsert condition""" + on_conflict: e_friend_status_on_conflict +} + +""" +on_conflict condition type for table "e_friend_status" +""" +input e_friend_status_on_conflict { + constraint: e_friend_status_constraint! + update_columns: [e_friend_status_update_column!]! = [] + where: e_friend_status_bool_exp +} + +"""Ordering options when selecting data from "e_friend_status".""" +input e_friend_status_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_friend_status""" +input e_friend_status_pk_columns_input { + value: String! +} + +""" +select columns of table "e_friend_status" +""" +enum e_friend_status_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_friend_status" +""" +input e_friend_status_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_friend_status" +""" +input 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 +} + +"""Initial value of the column from where the streaming should start""" +input e_friend_status_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_friend_status" +""" +enum e_friend_status_update_column { + """column name""" + description + + """column name""" + value +} + +input e_friend_status_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_friend_status_set_input + + """filter the rows which have to be updated""" + where: e_friend_status_bool_exp! +} + +""" +columns and relationships of "e_game_cfg_types" +""" +type e_game_cfg_types { + description: String! + value: String! +} + +""" +aggregated selection of "e_game_cfg_types" +""" +type e_game_cfg_types_aggregate { + aggregate: e_game_cfg_types_aggregate_fields + nodes: [e_game_cfg_types!]! +} + +""" +aggregate fields of "e_game_cfg_types" +""" +type e_game_cfg_types_aggregate_fields { + count(columns: [e_game_cfg_types_select_column!], distinct: Boolean): Int! + max: e_game_cfg_types_max_fields + min: e_game_cfg_types_min_fields +} + +""" +Boolean expression to filter rows from the table "e_game_cfg_types". All fields are combined with a logical 'AND'. +""" +input e_game_cfg_types_bool_exp { + _and: [e_game_cfg_types_bool_exp!] + _not: e_game_cfg_types_bool_exp + _or: [e_game_cfg_types_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_game_cfg_types" +""" +enum e_game_cfg_types_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_game_cfg_types_pkey +} + +enum e_game_cfg_types_enum { + """Base game configuration""" + Base + + """Competitive game configuration""" + Competitive + + """Duel game configuration""" + Duel + + """Applies to every match, on top of the type configuration""" + Global + + """Lan game configuration""" + Lan + + """Live game configuration""" + Live + + """Wingman game configuration""" + Wingman +} + +""" +Boolean expression to compare columns of type "e_game_cfg_types_enum". All fields are combined with logical 'AND'. +""" +input e_game_cfg_types_enum_comparison_exp { + _eq: e_game_cfg_types_enum + _in: [e_game_cfg_types_enum!] + _is_null: Boolean + _neq: e_game_cfg_types_enum + _nin: [e_game_cfg_types_enum!] +} + +""" +input type for inserting data into table "e_game_cfg_types" +""" +input e_game_cfg_types_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_game_cfg_types_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_game_cfg_types_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_game_cfg_types" +""" +type e_game_cfg_types_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_game_cfg_types!]! +} + +""" +on_conflict condition type for table "e_game_cfg_types" +""" +input 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 +} + +"""Ordering options when selecting data from "e_game_cfg_types".""" +input e_game_cfg_types_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_game_cfg_types""" +input e_game_cfg_types_pk_columns_input { + value: String! +} + +""" +select columns of table "e_game_cfg_types" +""" +enum e_game_cfg_types_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_game_cfg_types" +""" +input e_game_cfg_types_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_game_cfg_types" +""" +input 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 +} + +"""Initial value of the column from where the streaming should start""" +input e_game_cfg_types_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_game_cfg_types" +""" +enum e_game_cfg_types_update_column { + """column name""" + description + + """column name""" + value +} + +input e_game_cfg_types_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_game_cfg_types_set_input + + """filter the rows which have to be updated""" + 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" +""" +type e_game_server_node_statuses { + description: String! + value: String! +} + +""" +aggregated selection of "e_game_server_node_statuses" +""" +type e_game_server_node_statuses_aggregate { + aggregate: e_game_server_node_statuses_aggregate_fields + nodes: [e_game_server_node_statuses!]! +} + +""" +aggregate fields of "e_game_server_node_statuses" +""" +type e_game_server_node_statuses_aggregate_fields { + count(columns: [e_game_server_node_statuses_select_column!], distinct: Boolean): Int! + max: e_game_server_node_statuses_max_fields + min: e_game_server_node_statuses_min_fields +} + +""" +Boolean expression to filter rows from the table "e_game_server_node_statuses". All fields are combined with a logical 'AND'. +""" +input e_game_server_node_statuses_bool_exp { + _and: [e_game_server_node_statuses_bool_exp!] + _not: e_game_server_node_statuses_bool_exp + _or: [e_game_server_node_statuses_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_game_server_node_statuses" +""" +enum e_game_server_node_statuses_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_game_server_node_statuses_pkey +} + +enum e_game_server_node_statuses_enum { + """Not Accepting New Matches""" + NotAcceptingNewMatches + + """Offline""" + Offline + + """Online""" + Online + + """Waiting to Setup""" + Setup +} + +""" +Boolean expression to compare columns of type "e_game_server_node_statuses_enum". All fields are combined with logical 'AND'. +""" +input e_game_server_node_statuses_enum_comparison_exp { + _eq: e_game_server_node_statuses_enum + _in: [e_game_server_node_statuses_enum!] + _is_null: Boolean + _neq: e_game_server_node_statuses_enum + _nin: [e_game_server_node_statuses_enum!] +} + +""" +input type for inserting data into table "e_game_server_node_statuses" +""" +input e_game_server_node_statuses_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_game_server_node_statuses_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_game_server_node_statuses_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_game_server_node_statuses" +""" +type e_game_server_node_statuses_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_game_server_node_statuses!]! +} + +""" +input type for inserting object relation for remote table "e_game_server_node_statuses" +""" +input e_game_server_node_statuses_obj_rel_insert_input { + data: e_game_server_node_statuses_insert_input! + + """upsert condition""" + on_conflict: e_game_server_node_statuses_on_conflict +} + +""" +on_conflict condition type for table "e_game_server_node_statuses" +""" +input 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 +} + +""" +Ordering options when selecting data from "e_game_server_node_statuses". +""" +input e_game_server_node_statuses_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_game_server_node_statuses""" +input e_game_server_node_statuses_pk_columns_input { + value: String! +} + +""" +select columns of table "e_game_server_node_statuses" +""" +enum e_game_server_node_statuses_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_game_server_node_statuses" +""" +input e_game_server_node_statuses_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_game_server_node_statuses" +""" +input e_game_server_node_statuses_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_game_server_node_statuses_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_game_server_node_statuses_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_game_server_node_statuses" +""" +enum e_game_server_node_statuses_update_column { + """column name""" + description + + """column name""" + value +} + +input e_game_server_node_statuses_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_game_server_node_statuses_set_input + + """filter the rows which have to be updated""" + where: e_game_server_node_statuses_bool_exp! +} + +""" +columns and relationships of "e_league_movement_types" +""" +type e_league_movement_types { + description: String! + value: String! +} + +""" +aggregated selection of "e_league_movement_types" +""" +type e_league_movement_types_aggregate { + aggregate: e_league_movement_types_aggregate_fields + nodes: [e_league_movement_types!]! +} + +""" +aggregate fields of "e_league_movement_types" +""" +type e_league_movement_types_aggregate_fields { + count(columns: [e_league_movement_types_select_column!], distinct: Boolean): Int! + max: e_league_movement_types_max_fields + min: e_league_movement_types_min_fields +} + +""" +Boolean expression to filter rows from the table "e_league_movement_types". All fields are combined with a logical 'AND'. +""" +input e_league_movement_types_bool_exp { + _and: [e_league_movement_types_bool_exp!] + _not: e_league_movement_types_bool_exp + _or: [e_league_movement_types_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_league_movement_types" +""" +enum e_league_movement_types_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_league_movement_types_pkey +} + +enum e_league_movement_types_enum { + """Promoted directly to a higher division""" + DirectPromote + + """Relegated directly to a lower division""" + DirectRelegate + + """Holds its division""" + Hold + + """Promoted to a higher division""" + Promote + + """Relegated to a lower division""" + Relegate + + """Plays a relegation playoff to keep its division""" + RelegationDown + + """Plays a relegation playoff for a higher-division spot""" + RelegationUp + + """Removed from the league""" + Remove + + """Stays in the same division""" + Stay +} + +""" +Boolean expression to compare columns of type "e_league_movement_types_enum". All fields are combined with logical 'AND'. +""" +input e_league_movement_types_enum_comparison_exp { + _eq: e_league_movement_types_enum + _in: [e_league_movement_types_enum!] + _is_null: Boolean + _neq: e_league_movement_types_enum + _nin: [e_league_movement_types_enum!] +} + +""" +input type for inserting data into table "e_league_movement_types" +""" +input e_league_movement_types_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_league_movement_types_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_league_movement_types_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_league_movement_types" +""" +type e_league_movement_types_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_league_movement_types!]! +} + +""" +input type for inserting object relation for remote table "e_league_movement_types" +""" +input 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 +} + +""" +on_conflict condition type for table "e_league_movement_types" +""" +input 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 +} + +"""Ordering options when selecting data from "e_league_movement_types".""" +input e_league_movement_types_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_league_movement_types""" +input e_league_movement_types_pk_columns_input { + value: String! +} + +""" +select columns of table "e_league_movement_types" +""" +enum e_league_movement_types_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_league_movement_types" +""" +input e_league_movement_types_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_league_movement_types" +""" +input e_league_movement_types_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_league_movement_types_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_league_movement_types_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_league_movement_types" +""" +enum e_league_movement_types_update_column { + """column name""" + description + + """column name""" + value +} + +input e_league_movement_types_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_league_movement_types_set_input + + """filter the rows which have to be updated""" + where: e_league_movement_types_bool_exp! +} + +""" +columns and relationships of "e_league_proposal_statuses" +""" +type e_league_proposal_statuses { + description: String! + value: String! +} + +""" +aggregated selection of "e_league_proposal_statuses" +""" +type e_league_proposal_statuses_aggregate { + aggregate: e_league_proposal_statuses_aggregate_fields + nodes: [e_league_proposal_statuses!]! +} + +""" +aggregate fields of "e_league_proposal_statuses" +""" +type e_league_proposal_statuses_aggregate_fields { + count(columns: [e_league_proposal_statuses_select_column!], distinct: Boolean): Int! + max: e_league_proposal_statuses_max_fields + min: e_league_proposal_statuses_min_fields +} + +""" +Boolean expression to filter rows from the table "e_league_proposal_statuses". All fields are combined with a logical 'AND'. +""" +input e_league_proposal_statuses_bool_exp { + _and: [e_league_proposal_statuses_bool_exp!] + _not: e_league_proposal_statuses_bool_exp + _or: [e_league_proposal_statuses_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_league_proposal_statuses" +""" +enum e_league_proposal_statuses_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_league_proposal_statuses_pkey +} + +enum e_league_proposal_statuses_enum { + """Accepted""" + Accepted + + """Countered with a new time""" + Countered + + """Declined""" + Declined + + """Expired""" + Expired + + """Pending response""" + Pending + + """Superseded by another proposal""" + Superseded +} + +""" +Boolean expression to compare columns of type "e_league_proposal_statuses_enum". All fields are combined with logical 'AND'. +""" +input e_league_proposal_statuses_enum_comparison_exp { + _eq: e_league_proposal_statuses_enum + _in: [e_league_proposal_statuses_enum!] + _is_null: Boolean + _neq: e_league_proposal_statuses_enum + _nin: [e_league_proposal_statuses_enum!] +} + +""" +input type for inserting data into table "e_league_proposal_statuses" +""" +input e_league_proposal_statuses_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_league_proposal_statuses_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_league_proposal_statuses_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_league_proposal_statuses" +""" +type e_league_proposal_statuses_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_league_proposal_statuses!]! +} + +""" +input type for inserting object relation for remote table "e_league_proposal_statuses" +""" +input 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 +} + +""" +on_conflict condition type for table "e_league_proposal_statuses" +""" +input 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 +} + +""" +Ordering options when selecting data from "e_league_proposal_statuses". +""" +input e_league_proposal_statuses_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_league_proposal_statuses""" +input e_league_proposal_statuses_pk_columns_input { + value: String! +} + +""" +select columns of table "e_league_proposal_statuses" +""" +enum e_league_proposal_statuses_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_league_proposal_statuses" +""" +input e_league_proposal_statuses_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_league_proposal_statuses" +""" +input e_league_proposal_statuses_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_league_proposal_statuses_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_league_proposal_statuses_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_league_proposal_statuses" +""" +enum e_league_proposal_statuses_update_column { + """column name""" + description + + """column name""" + value +} + +input e_league_proposal_statuses_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_league_proposal_statuses_set_input + + """filter the rows which have to be updated""" + where: e_league_proposal_statuses_bool_exp! +} + +""" +columns and relationships of "e_league_registration_statuses" +""" +type e_league_registration_statuses { + description: String! + value: String! +} + +""" +aggregated selection of "e_league_registration_statuses" +""" +type e_league_registration_statuses_aggregate { + aggregate: e_league_registration_statuses_aggregate_fields + nodes: [e_league_registration_statuses!]! +} + +""" +aggregate fields of "e_league_registration_statuses" +""" +type e_league_registration_statuses_aggregate_fields { + count(columns: [e_league_registration_statuses_select_column!], distinct: Boolean): Int! + max: e_league_registration_statuses_max_fields + min: e_league_registration_statuses_min_fields +} + +""" +Boolean expression to filter rows from the table "e_league_registration_statuses". All fields are combined with a logical 'AND'. +""" +input e_league_registration_statuses_bool_exp { + _and: [e_league_registration_statuses_bool_exp!] + _not: e_league_registration_statuses_bool_exp + _or: [e_league_registration_statuses_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_league_registration_statuses" +""" +enum e_league_registration_statuses_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_league_registration_statuses_pkey +} + +enum e_league_registration_statuses_enum { + """Approved""" + Approved + + """Declined""" + Declined + + """Pending review""" + Pending + + """Waitlisted""" + Waitlisted + + """Withdrawn""" + Withdrawn +} + +""" +Boolean expression to compare columns of type "e_league_registration_statuses_enum". All fields are combined with logical 'AND'. +""" +input e_league_registration_statuses_enum_comparison_exp { + _eq: e_league_registration_statuses_enum + _in: [e_league_registration_statuses_enum!] + _is_null: Boolean + _neq: e_league_registration_statuses_enum + _nin: [e_league_registration_statuses_enum!] +} + +""" +input type for inserting data into table "e_league_registration_statuses" +""" +input e_league_registration_statuses_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_league_registration_statuses_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_league_registration_statuses_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_league_registration_statuses" +""" +type e_league_registration_statuses_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_league_registration_statuses!]! +} + +""" +input type for inserting object relation for remote table "e_league_registration_statuses" +""" +input e_league_registration_statuses_obj_rel_insert_input { + data: e_league_registration_statuses_insert_input! + + """upsert condition""" + on_conflict: e_league_registration_statuses_on_conflict +} + +""" +on_conflict condition type for table "e_league_registration_statuses" +""" +input 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 +} + +""" +Ordering options when selecting data from "e_league_registration_statuses". +""" +input e_league_registration_statuses_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_league_registration_statuses""" +input e_league_registration_statuses_pk_columns_input { + value: String! +} + +""" +select columns of table "e_league_registration_statuses" +""" +enum e_league_registration_statuses_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_league_registration_statuses" +""" +input e_league_registration_statuses_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_league_registration_statuses" +""" +input e_league_registration_statuses_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_league_registration_statuses_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_league_registration_statuses_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_league_registration_statuses" +""" +enum e_league_registration_statuses_update_column { + """column name""" + description + + """column name""" + value +} + +input e_league_registration_statuses_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_league_registration_statuses_set_input + + """filter the rows which have to be updated""" + where: e_league_registration_statuses_bool_exp! +} + +""" +columns and relationships of "e_league_season_statuses" +""" +type e_league_season_statuses { + description: String! + value: String! +} + +""" +aggregated selection of "e_league_season_statuses" +""" +type e_league_season_statuses_aggregate { + aggregate: e_league_season_statuses_aggregate_fields + nodes: [e_league_season_statuses!]! +} + +""" +aggregate fields of "e_league_season_statuses" +""" +type e_league_season_statuses_aggregate_fields { + count(columns: [e_league_season_statuses_select_column!], distinct: Boolean): Int! + max: e_league_season_statuses_max_fields + min: e_league_season_statuses_min_fields +} + +""" +Boolean expression to filter rows from the table "e_league_season_statuses". All fields are combined with a logical 'AND'. +""" +input e_league_season_statuses_bool_exp { + _and: [e_league_season_statuses_bool_exp!] + _not: e_league_season_statuses_bool_exp + _or: [e_league_season_statuses_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_league_season_statuses" +""" +enum e_league_season_statuses_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_league_season_statuses_pkey +} + +enum e_league_season_statuses_enum { + """Canceled""" + Canceled + + """Finished""" + Finished + + """Live""" + Live + + """Playoffs""" + Playoffs + + """Registration Closed""" + RegistrationClosed + + """Registration Open""" + RegistrationOpen + + """Setup""" + Setup +} + +""" +Boolean expression to compare columns of type "e_league_season_statuses_enum". All fields are combined with logical 'AND'. +""" +input e_league_season_statuses_enum_comparison_exp { + _eq: e_league_season_statuses_enum + _in: [e_league_season_statuses_enum!] + _is_null: Boolean + _neq: e_league_season_statuses_enum + _nin: [e_league_season_statuses_enum!] +} + +""" +input type for inserting data into table "e_league_season_statuses" +""" +input e_league_season_statuses_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_league_season_statuses_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_league_season_statuses_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_league_season_statuses" +""" +type e_league_season_statuses_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_league_season_statuses!]! +} + +""" +input type for inserting object relation for remote table "e_league_season_statuses" +""" +input e_league_season_statuses_obj_rel_insert_input { + data: e_league_season_statuses_insert_input! + + """upsert condition""" + on_conflict: e_league_season_statuses_on_conflict +} + +""" +on_conflict condition type for table "e_league_season_statuses" +""" +input 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 +} + +"""Ordering options when selecting data from "e_league_season_statuses".""" +input e_league_season_statuses_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_league_season_statuses""" +input e_league_season_statuses_pk_columns_input { + value: String! +} + +""" +select columns of table "e_league_season_statuses" +""" +enum e_league_season_statuses_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_league_season_statuses" +""" +input e_league_season_statuses_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_league_season_statuses" +""" +input e_league_season_statuses_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_league_season_statuses_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_league_season_statuses_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_league_season_statuses" +""" +enum e_league_season_statuses_update_column { + """column name""" + description + + """column name""" + value +} + +input e_league_season_statuses_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_league_season_statuses_set_input + + """filter the rows which have to be updated""" + where: e_league_season_statuses_bool_exp! +} + +""" +columns and relationships of "e_lobby_access" +""" +type e_lobby_access { + description: String! + value: String! +} + +""" +aggregated selection of "e_lobby_access" +""" +type e_lobby_access_aggregate { + aggregate: e_lobby_access_aggregate_fields + nodes: [e_lobby_access!]! +} + +""" +aggregate fields of "e_lobby_access" +""" +type e_lobby_access_aggregate_fields { + count(columns: [e_lobby_access_select_column!], distinct: Boolean): Int! + max: e_lobby_access_max_fields + min: e_lobby_access_min_fields +} + +""" +Boolean expression to filter rows from the table "e_lobby_access". All fields are combined with a logical 'AND'. +""" +input e_lobby_access_bool_exp { + _and: [e_lobby_access_bool_exp!] + _not: e_lobby_access_bool_exp + _or: [e_lobby_access_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_lobby_access" +""" +enum e_lobby_access_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_lobby_access_pkey +} + +enum e_lobby_access_enum { + """Friends Only""" + Friends + + """Invite Only""" + Invite + + """Public""" + Open + + """Private""" + Private +} + +""" +Boolean expression to compare columns of type "e_lobby_access_enum". All fields are combined with logical 'AND'. +""" +input e_lobby_access_enum_comparison_exp { + _eq: e_lobby_access_enum + _in: [e_lobby_access_enum!] + _is_null: Boolean + _neq: e_lobby_access_enum + _nin: [e_lobby_access_enum!] +} + +""" +input type for inserting data into table "e_lobby_access" +""" +input e_lobby_access_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_lobby_access_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_lobby_access_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_lobby_access" +""" +type e_lobby_access_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_lobby_access!]! +} + +""" +input type for inserting object relation for remote table "e_lobby_access" +""" +input e_lobby_access_obj_rel_insert_input { + data: e_lobby_access_insert_input! + + """upsert condition""" + on_conflict: e_lobby_access_on_conflict +} + +""" +on_conflict condition type for table "e_lobby_access" +""" +input e_lobby_access_on_conflict { + constraint: e_lobby_access_constraint! + update_columns: [e_lobby_access_update_column!]! = [] + where: e_lobby_access_bool_exp +} + +"""Ordering options when selecting data from "e_lobby_access".""" +input e_lobby_access_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_lobby_access""" +input e_lobby_access_pk_columns_input { + value: String! +} + +""" +select columns of table "e_lobby_access" +""" +enum e_lobby_access_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_lobby_access" +""" +input e_lobby_access_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_lobby_access" +""" +input e_lobby_access_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_lobby_access_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_lobby_access_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_lobby_access" +""" +enum e_lobby_access_update_column { + """column name""" + description + + """column name""" + value +} + +input e_lobby_access_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_lobby_access_set_input + + """filter the rows which have to be updated""" + where: e_lobby_access_bool_exp! +} + +""" +columns and relationships of "e_lobby_player_status" +""" +type e_lobby_player_status { + description: String! + value: String! +} + +""" +aggregated selection of "e_lobby_player_status" +""" +type e_lobby_player_status_aggregate { + aggregate: e_lobby_player_status_aggregate_fields + nodes: [e_lobby_player_status!]! +} + +""" +aggregate fields of "e_lobby_player_status" +""" +type e_lobby_player_status_aggregate_fields { + count(columns: [e_lobby_player_status_select_column!], distinct: Boolean): Int! + max: e_lobby_player_status_max_fields + min: e_lobby_player_status_min_fields +} + +""" +Boolean expression to filter rows from the table "e_lobby_player_status". All fields are combined with a logical 'AND'. +""" +input e_lobby_player_status_bool_exp { + _and: [e_lobby_player_status_bool_exp!] + _not: e_lobby_player_status_bool_exp + _or: [e_lobby_player_status_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_lobby_player_status" +""" +enum e_lobby_player_status_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_lobby_player_status_pkey +} + +enum e_lobby_player_status_enum { + """Accepted""" + Accepted + + """Invited""" + Invited +} + +""" +Boolean expression to compare columns of type "e_lobby_player_status_enum". All fields are combined with logical 'AND'. +""" +input e_lobby_player_status_enum_comparison_exp { + _eq: e_lobby_player_status_enum + _in: [e_lobby_player_status_enum!] + _is_null: Boolean + _neq: e_lobby_player_status_enum + _nin: [e_lobby_player_status_enum!] +} + +""" +input type for inserting data into table "e_lobby_player_status" +""" +input e_lobby_player_status_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_lobby_player_status_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_lobby_player_status_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_lobby_player_status" +""" +type e_lobby_player_status_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_lobby_player_status!]! +} + +""" +on_conflict condition type for table "e_lobby_player_status" +""" +input 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 +} + +"""Ordering options when selecting data from "e_lobby_player_status".""" +input e_lobby_player_status_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_lobby_player_status""" +input e_lobby_player_status_pk_columns_input { + value: String! +} + +""" +select columns of table "e_lobby_player_status" +""" +enum e_lobby_player_status_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_lobby_player_status" +""" +input e_lobby_player_status_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_lobby_player_status" +""" +input e_lobby_player_status_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_lobby_player_status_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_lobby_player_status_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_lobby_player_status" +""" +enum e_lobby_player_status_update_column { + """column name""" + description + + """column name""" + value +} + +input e_lobby_player_status_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_lobby_player_status_set_input + + """filter the rows which have to be updated""" + where: e_lobby_player_status_bool_exp! +} + +""" +columns and relationships of "e_map_pool_types" +""" +type e_map_pool_types { + description: String + value: String! +} + +""" +aggregated selection of "e_map_pool_types" +""" +type e_map_pool_types_aggregate { + aggregate: e_map_pool_types_aggregate_fields + nodes: [e_map_pool_types!]! +} + +""" +aggregate fields of "e_map_pool_types" +""" +type e_map_pool_types_aggregate_fields { + count(columns: [e_map_pool_types_select_column!], distinct: Boolean): Int! + max: e_map_pool_types_max_fields + min: e_map_pool_types_min_fields +} + +""" +Boolean expression to filter rows from the table "e_map_pool_types". All fields are combined with a logical 'AND'. +""" +input e_map_pool_types_bool_exp { + _and: [e_map_pool_types_bool_exp!] + _not: e_map_pool_types_bool_exp + _or: [e_map_pool_types_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_map_pool_types" +""" +enum e_map_pool_types_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_map_pool_types_pkey +} + +enum e_map_pool_types_enum { + """5 vs 5""" + Competitive + + """Custom""" + Custom + + """1 vs 1""" + Duel + + """2 vs 2""" + Wingman +} + +""" +Boolean expression to compare columns of type "e_map_pool_types_enum". All fields are combined with logical 'AND'. +""" +input e_map_pool_types_enum_comparison_exp { + _eq: e_map_pool_types_enum + _in: [e_map_pool_types_enum!] + _is_null: Boolean + _neq: e_map_pool_types_enum + _nin: [e_map_pool_types_enum!] +} + +""" +input type for inserting data into table "e_map_pool_types" +""" +input e_map_pool_types_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_map_pool_types_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_map_pool_types_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_map_pool_types" +""" +type e_map_pool_types_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_map_pool_types!]! +} + +""" +input type for inserting object relation for remote table "e_map_pool_types" +""" +input 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 +} + +""" +on_conflict condition type for table "e_map_pool_types" +""" +input 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 +} + +"""Ordering options when selecting data from "e_map_pool_types".""" +input e_map_pool_types_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_map_pool_types""" +input e_map_pool_types_pk_columns_input { + value: String! +} + +""" +select columns of table "e_map_pool_types" +""" +enum e_map_pool_types_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_map_pool_types" +""" +input e_map_pool_types_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_map_pool_types" +""" +input e_map_pool_types_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_map_pool_types_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_map_pool_types_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_map_pool_types" +""" +enum e_map_pool_types_update_column { + """column name""" + description + + """column name""" + value +} + +input e_map_pool_types_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_map_pool_types_set_input + + """filter the rows which have to be updated""" + where: e_map_pool_types_bool_exp! +} + +""" +columns and relationships of "e_match_clip_visibility" +""" +type e_match_clip_visibility { + description: String! + + """An array relationship""" + match_clips( + """distinct select on columns""" + distinct_on: [match_clips_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_clips_order_by!] + + """filter the rows returned""" + where: match_clips_bool_exp + ): [match_clips!]! + + """An aggregate relationship""" + match_clips_aggregate( + """distinct select on columns""" + distinct_on: [match_clips_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_clips_order_by!] + + """filter the rows returned""" + where: match_clips_bool_exp + ): match_clips_aggregate! + value: String! +} + +""" +aggregated selection of "e_match_clip_visibility" +""" +type e_match_clip_visibility_aggregate { + aggregate: e_match_clip_visibility_aggregate_fields + nodes: [e_match_clip_visibility!]! +} + +""" +aggregate fields of "e_match_clip_visibility" +""" +type e_match_clip_visibility_aggregate_fields { + count(columns: [e_match_clip_visibility_select_column!], distinct: Boolean): Int! + max: e_match_clip_visibility_max_fields + min: e_match_clip_visibility_min_fields +} + +""" +Boolean expression to filter rows from the table "e_match_clip_visibility". All fields are combined with a logical 'AND'. +""" +input e_match_clip_visibility_bool_exp { + _and: [e_match_clip_visibility_bool_exp!] + _not: e_match_clip_visibility_bool_exp + _or: [e_match_clip_visibility_bool_exp!] + description: String_comparison_exp + match_clips: match_clips_bool_exp + match_clips_aggregate: match_clips_aggregate_bool_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_match_clip_visibility" +""" +enum e_match_clip_visibility_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_match_clip_visibility_pkey +} + +enum e_match_clip_visibility_enum { + """Visible to match participants and organizers""" + match + + """Only visible to the owner""" + private + + """Listed in the highlights feed""" + public +} + +""" +Boolean expression to compare columns of type "e_match_clip_visibility_enum". All fields are combined with logical 'AND'. +""" +input e_match_clip_visibility_enum_comparison_exp { + _eq: e_match_clip_visibility_enum + _in: [e_match_clip_visibility_enum!] + _is_null: Boolean + _neq: e_match_clip_visibility_enum + _nin: [e_match_clip_visibility_enum!] +} + +""" +input type for inserting data into table "e_match_clip_visibility" +""" +input e_match_clip_visibility_insert_input { + description: String + match_clips: match_clips_arr_rel_insert_input + value: String +} + +"""aggregate max on columns""" +type e_match_clip_visibility_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_match_clip_visibility_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_match_clip_visibility" +""" +type e_match_clip_visibility_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_match_clip_visibility!]! +} + +""" +on_conflict condition type for table "e_match_clip_visibility" +""" +input 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 +} + +"""Ordering options when selecting data from "e_match_clip_visibility".""" +input e_match_clip_visibility_order_by { + description: order_by + match_clips_aggregate: match_clips_aggregate_order_by + value: order_by +} + +"""primary key columns input for table: e_match_clip_visibility""" +input e_match_clip_visibility_pk_columns_input { + value: String! +} + +""" +select columns of table "e_match_clip_visibility" +""" +enum e_match_clip_visibility_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_match_clip_visibility" +""" +input e_match_clip_visibility_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_match_clip_visibility" +""" +input e_match_clip_visibility_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_match_clip_visibility_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_match_clip_visibility_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_match_clip_visibility" +""" +enum e_match_clip_visibility_update_column { + """column name""" + description + + """column name""" + value +} + +input e_match_clip_visibility_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_match_clip_visibility_set_input + + """filter the rows which have to be updated""" + where: e_match_clip_visibility_bool_exp! +} + +""" +columns and relationships of "e_match_map_status" +""" +type e_match_map_status { + description: String! + + """An array relationship""" + match_maps( + """distinct select on columns""" + distinct_on: [match_maps_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_maps_order_by!] + + """filter the rows returned""" + where: match_maps_bool_exp + ): [match_maps!]! + + """An aggregate relationship""" + match_maps_aggregate( + """distinct select on columns""" + distinct_on: [match_maps_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_maps_order_by!] + + """filter the rows returned""" + where: match_maps_bool_exp + ): match_maps_aggregate! + value: String! +} + +""" +aggregated selection of "e_match_map_status" +""" +type e_match_map_status_aggregate { + aggregate: e_match_map_status_aggregate_fields + nodes: [e_match_map_status!]! +} + +""" +aggregate fields of "e_match_map_status" +""" +type e_match_map_status_aggregate_fields { + count(columns: [e_match_map_status_select_column!], distinct: Boolean): Int! + max: e_match_map_status_max_fields + min: e_match_map_status_min_fields +} + +""" +Boolean expression to filter rows from the table "e_match_map_status". All fields are combined with a logical 'AND'. +""" +input e_match_map_status_bool_exp { + _and: [e_match_map_status_bool_exp!] + _not: e_match_map_status_bool_exp + _or: [e_match_map_status_bool_exp!] + description: String_comparison_exp + match_maps: match_maps_bool_exp + match_maps_aggregate: match_maps_aggregate_bool_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_match_map_status" +""" +enum e_match_map_status_constraint { + """ + unique or primary key constraint on columns "value" + """ + match_map_status_pkey +} + +enum e_match_map_status_enum { + """Canceled""" + Canceled + + """Finished""" + Finished + + """Knife""" + Knife + + """Live""" + Live + + """Overtime""" + Overtime + + """Paused""" + Paused + + """Scheduled""" + Scheduled + + """Surrendered""" + Surrendered + + """UploadingDemo""" + UploadingDemo + + """WaitingForTV""" + WaitingForTV + + """Warmup""" + Warmup +} + +""" +Boolean expression to compare columns of type "e_match_map_status_enum". All fields are combined with logical 'AND'. +""" +input e_match_map_status_enum_comparison_exp { + _eq: e_match_map_status_enum + _in: [e_match_map_status_enum!] + _is_null: Boolean + _neq: e_match_map_status_enum + _nin: [e_match_map_status_enum!] +} + +""" +input type for inserting data into table "e_match_map_status" +""" +input e_match_map_status_insert_input { + description: String + match_maps: match_maps_arr_rel_insert_input + value: String +} + +"""aggregate max on columns""" +type e_match_map_status_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_match_map_status_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_match_map_status" +""" +type e_match_map_status_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_match_map_status!]! +} + +""" +input type for inserting object relation for remote table "e_match_map_status" +""" +input 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 +} + +""" +on_conflict condition type for table "e_match_map_status" +""" +input 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 +} + +"""Ordering options when selecting data from "e_match_map_status".""" +input e_match_map_status_order_by { + description: order_by + match_maps_aggregate: match_maps_aggregate_order_by + value: order_by +} + +"""primary key columns input for table: e_match_map_status""" +input e_match_map_status_pk_columns_input { + value: String! +} + +""" +select columns of table "e_match_map_status" +""" +enum e_match_map_status_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_match_map_status" +""" +input e_match_map_status_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_match_map_status" +""" +input e_match_map_status_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_match_map_status_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_match_map_status_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_match_map_status" +""" +enum e_match_map_status_update_column { + """column name""" + description + + """column name""" + value +} + +input e_match_map_status_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_match_map_status_set_input + + """filter the rows which have to be updated""" + where: e_match_map_status_bool_exp! +} + +""" +columns and relationships of "e_match_mode" +""" +type e_match_mode { + description: String! + value: String! +} + +""" +aggregated selection of "e_match_mode" +""" +type e_match_mode_aggregate { + aggregate: e_match_mode_aggregate_fields + nodes: [e_match_mode!]! +} + +""" +aggregate fields of "e_match_mode" +""" +type e_match_mode_aggregate_fields { + count(columns: [e_match_mode_select_column!], distinct: Boolean): Int! + max: e_match_mode_max_fields + min: e_match_mode_min_fields +} + +""" +Boolean expression to filter rows from the table "e_match_mode". All fields are combined with a logical 'AND'. +""" +input e_match_mode_bool_exp { + _and: [e_match_mode_bool_exp!] + _not: e_match_mode_bool_exp + _or: [e_match_mode_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_match_mode" +""" +enum e_match_mode_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_match_mode_pkey +} + +enum e_match_mode_enum { + """Match must be scheduled and started by an admin user""" + admin + + """Match is automatically scheduled by the system""" + auto +} + +""" +Boolean expression to compare columns of type "e_match_mode_enum". All fields are combined with logical 'AND'. +""" +input e_match_mode_enum_comparison_exp { + _eq: e_match_mode_enum + _in: [e_match_mode_enum!] + _is_null: Boolean + _neq: e_match_mode_enum + _nin: [e_match_mode_enum!] +} + +""" +input type for inserting data into table "e_match_mode" +""" +input e_match_mode_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_match_mode_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_match_mode_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_match_mode" +""" +type e_match_mode_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_match_mode!]! +} + +""" +on_conflict condition type for table "e_match_mode" +""" +input e_match_mode_on_conflict { + constraint: e_match_mode_constraint! + update_columns: [e_match_mode_update_column!]! = [] + where: e_match_mode_bool_exp +} + +"""Ordering options when selecting data from "e_match_mode".""" +input e_match_mode_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_match_mode""" +input e_match_mode_pk_columns_input { + value: String! +} + +""" +select columns of table "e_match_mode" +""" +enum e_match_mode_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_match_mode" +""" +input e_match_mode_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_match_mode" +""" +input e_match_mode_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_match_mode_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_match_mode_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_match_mode" +""" +enum e_match_mode_update_column { + """column name""" + description + + """column name""" + value +} + +input e_match_mode_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_match_mode_set_input + + """filter the rows which have to be updated""" + where: e_match_mode_bool_exp! +} + +""" +columns and relationships of "e_match_party_sources" +""" +type e_match_party_sources { + description: String! + + """An array relationship""" + match_lineup_players( + """distinct select on columns""" + distinct_on: [match_lineup_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_lineup_players_order_by!] + + """filter the rows returned""" + where: match_lineup_players_bool_exp + ): [match_lineup_players!]! + + """An aggregate relationship""" + match_lineup_players_aggregate( + """distinct select on columns""" + distinct_on: [match_lineup_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_lineup_players_order_by!] + + """filter the rows returned""" + where: match_lineup_players_bool_exp + ): match_lineup_players_aggregate! + value: String! +} + +""" +aggregated selection of "e_match_party_sources" +""" +type e_match_party_sources_aggregate { + aggregate: e_match_party_sources_aggregate_fields + nodes: [e_match_party_sources!]! +} + +""" +aggregate fields of "e_match_party_sources" +""" +type e_match_party_sources_aggregate_fields { + count(columns: [e_match_party_sources_select_column!], distinct: Boolean): Int! + max: e_match_party_sources_max_fields + min: e_match_party_sources_min_fields +} + +""" +Boolean expression to filter rows from the table "e_match_party_sources". All fields are combined with a logical 'AND'. +""" +input e_match_party_sources_bool_exp { + _and: [e_match_party_sources_bool_exp!] + _not: e_match_party_sources_bool_exp + _or: [e_match_party_sources_bool_exp!] + description: String_comparison_exp + match_lineup_players: match_lineup_players_bool_exp + match_lineup_players_aggregate: match_lineup_players_aggregate_bool_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_match_party_sources" +""" +enum e_match_party_sources_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_match_party_sources_pkey +} + +enum e_match_party_sources_enum { + """FACEIT match room party""" + faceit + + """5stack matchmaking lobby""" + lobby + + """Valve matchmaking reservation""" + valve +} + +""" +Boolean expression to compare columns of type "e_match_party_sources_enum". All fields are combined with logical 'AND'. +""" +input e_match_party_sources_enum_comparison_exp { + _eq: e_match_party_sources_enum + _in: [e_match_party_sources_enum!] + _is_null: Boolean + _neq: e_match_party_sources_enum + _nin: [e_match_party_sources_enum!] +} + +""" +input type for inserting data into table "e_match_party_sources" +""" +input e_match_party_sources_insert_input { + description: String + match_lineup_players: match_lineup_players_arr_rel_insert_input + value: String +} + +"""aggregate max on columns""" +type e_match_party_sources_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_match_party_sources_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_match_party_sources" +""" +type e_match_party_sources_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_match_party_sources!]! +} + +""" +on_conflict condition type for table "e_match_party_sources" +""" +input 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 +} + +"""Ordering options when selecting data from "e_match_party_sources".""" +input e_match_party_sources_order_by { + description: order_by + match_lineup_players_aggregate: match_lineup_players_aggregate_order_by + value: order_by +} + +"""primary key columns input for table: e_match_party_sources""" +input e_match_party_sources_pk_columns_input { + value: String! +} + +""" +select columns of table "e_match_party_sources" +""" +enum e_match_party_sources_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_match_party_sources" +""" +input e_match_party_sources_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_match_party_sources" +""" +input e_match_party_sources_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_match_party_sources_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_match_party_sources_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_match_party_sources" +""" +enum e_match_party_sources_update_column { + """column name""" + description + + """column name""" + value +} + +input e_match_party_sources_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_match_party_sources_set_input + + """filter the rows which have to be updated""" + where: e_match_party_sources_bool_exp! +} + +""" +columns and relationships of "e_match_status" +""" +type e_match_status { + description: String! + + """An array relationship""" + matches( + """distinct select on columns""" + distinct_on: [matches_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: [matches_order_by!] + + """filter the rows returned""" + where: matches_bool_exp + ): [matches!]! + + """An aggregate relationship""" + matches_aggregate( + """distinct select on columns""" + distinct_on: [matches_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: [matches_order_by!] + + """filter the rows returned""" + where: matches_bool_exp + ): matches_aggregate! + value: String! +} + +""" +aggregated selection of "e_match_status" +""" +type e_match_status_aggregate { + aggregate: e_match_status_aggregate_fields + nodes: [e_match_status!]! +} + +""" +aggregate fields of "e_match_status" +""" +type e_match_status_aggregate_fields { + count(columns: [e_match_status_select_column!], distinct: Boolean): Int! + max: e_match_status_max_fields + min: e_match_status_min_fields +} + +""" +Boolean expression to filter rows from the table "e_match_status". All fields are combined with a logical 'AND'. +""" +input e_match_status_bool_exp { + _and: [e_match_status_bool_exp!] + _not: e_match_status_bool_exp + _or: [e_match_status_bool_exp!] + description: String_comparison_exp + matches: matches_bool_exp + matches_aggregate: matches_aggregate_bool_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_match_status" +""" +enum e_match_status_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_match_status_pkey +} + +enum e_match_status_enum { + """Canceled""" + Canceled + + """Finished""" + Finished + + """Forfeit""" + Forfeit + + """Live""" + Live + + """Picking Players""" + PickingPlayers + + """Scheduled""" + Scheduled + + """Surrendered""" + Surrendered + + """Tie""" + Tie + + """Veto""" + Veto + + """Waiting for Players to Check In""" + WaitingForCheckIn + + """Waiting for a Server to Become Available.""" + WaitingForServer +} + +""" +Boolean expression to compare columns of type "e_match_status_enum". All fields are combined with logical 'AND'. +""" +input e_match_status_enum_comparison_exp { + _eq: e_match_status_enum + _in: [e_match_status_enum!] + _is_null: Boolean + _neq: e_match_status_enum + _nin: [e_match_status_enum!] +} + +""" +input type for inserting data into table "e_match_status" +""" +input e_match_status_insert_input { + description: String + matches: matches_arr_rel_insert_input + value: String +} + +"""aggregate max on columns""" +type e_match_status_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_match_status_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_match_status" +""" +type e_match_status_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_match_status!]! +} + +""" +input type for inserting object relation for remote table "e_match_status" +""" +input e_match_status_obj_rel_insert_input { + data: e_match_status_insert_input! + + """upsert condition""" + on_conflict: e_match_status_on_conflict +} + +""" +on_conflict condition type for table "e_match_status" +""" +input e_match_status_on_conflict { + constraint: e_match_status_constraint! + update_columns: [e_match_status_update_column!]! = [] + where: e_match_status_bool_exp +} + +"""Ordering options when selecting data from "e_match_status".""" +input e_match_status_order_by { + description: order_by + matches_aggregate: matches_aggregate_order_by + value: order_by +} + +"""primary key columns input for table: e_match_status""" +input e_match_status_pk_columns_input { + value: String! +} + +""" +select columns of table "e_match_status" +""" +enum e_match_status_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_match_status" +""" +input e_match_status_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_match_status" +""" +input e_match_status_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_match_status_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_match_status_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_match_status" +""" +enum e_match_status_update_column { + """column name""" + description + + """column name""" + value +} + +input e_match_status_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_match_status_set_input + + """filter the rows which have to be updated""" + where: e_match_status_bool_exp! +} + +""" +columns and relationships of "e_match_types" +""" +type e_match_types { + description: String! + + """An array relationship""" + maps( + """distinct select on columns""" + distinct_on: [maps_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: [maps_order_by!] + + """filter the rows returned""" + where: maps_bool_exp + ): [maps!]! + + """An aggregate relationship""" + maps_aggregate( + """distinct select on columns""" + distinct_on: [maps_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: [maps_order_by!] + + """filter the rows returned""" + where: maps_bool_exp + ): maps_aggregate! + value: String! +} + +""" +aggregated selection of "e_match_types" +""" +type e_match_types_aggregate { + aggregate: e_match_types_aggregate_fields + nodes: [e_match_types!]! +} + +""" +aggregate fields of "e_match_types" +""" +type e_match_types_aggregate_fields { + count(columns: [e_match_types_select_column!], distinct: Boolean): Int! + max: e_match_types_max_fields + min: e_match_types_min_fields +} + +""" +Boolean expression to filter rows from the table "e_match_types". All fields are combined with a logical 'AND'. +""" +input e_match_types_bool_exp { + _and: [e_match_types_bool_exp!] + _not: e_match_types_bool_exp + _or: [e_match_types_bool_exp!] + description: String_comparison_exp + maps: maps_bool_exp + maps_aggregate: maps_aggregate_bool_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_match_types" +""" +enum e_match_types_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_match_types_pkey +} + +enum e_match_types_enum { + """The classic 5 vs 5 competitive experience with full team coordination""" + Competitive + + """ + A competitive 1 vs 1 experience, perfect for practicing individual skill + """ + Duel + + """FACEIT matchmaking — 5 vs 5 imported from FACEIT""" + Faceit + + """Valve Premier matchmaking — 5 vs 5 with CS Rating""" + Premier + + """Team up with a friend and compete in fast-paced 2v2 matches""" + Wingman +} + +""" +Boolean expression to compare columns of type "e_match_types_enum". All fields are combined with logical 'AND'. +""" +input e_match_types_enum_comparison_exp { + _eq: e_match_types_enum + _in: [e_match_types_enum!] + _is_null: Boolean + _neq: e_match_types_enum + _nin: [e_match_types_enum!] +} + +""" +input type for inserting data into table "e_match_types" +""" +input e_match_types_insert_input { + description: String + maps: maps_arr_rel_insert_input + value: String +} + +"""aggregate max on columns""" +type e_match_types_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_match_types_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_match_types" +""" +type e_match_types_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_match_types!]! +} + +""" +input type for inserting object relation for remote table "e_match_types" +""" +input e_match_types_obj_rel_insert_input { + data: e_match_types_insert_input! + + """upsert condition""" + on_conflict: e_match_types_on_conflict +} + +""" +on_conflict condition type for table "e_match_types" +""" +input e_match_types_on_conflict { + constraint: e_match_types_constraint! + update_columns: [e_match_types_update_column!]! = [] + where: e_match_types_bool_exp +} + +"""Ordering options when selecting data from "e_match_types".""" +input e_match_types_order_by { + description: order_by + maps_aggregate: maps_aggregate_order_by + value: order_by +} + +"""primary key columns input for table: e_match_types""" +input e_match_types_pk_columns_input { + value: String! +} + +""" +select columns of table "e_match_types" +""" +enum e_match_types_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_match_types" +""" +input e_match_types_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_match_types" +""" +input e_match_types_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_match_types_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_match_types_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_match_types" +""" +enum e_match_types_update_column { + """column name""" + description + + """column name""" + value +} + +input e_match_types_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_match_types_set_input + + """filter the rows which have to be updated""" + where: e_match_types_bool_exp! +} + +""" +columns and relationships of "e_notification_types" +""" +type e_notification_types { + description: String! + value: String! +} + +""" +aggregated selection of "e_notification_types" +""" +type e_notification_types_aggregate { + aggregate: e_notification_types_aggregate_fields + nodes: [e_notification_types!]! +} + +""" +aggregate fields of "e_notification_types" +""" +type e_notification_types_aggregate_fields { + count(columns: [e_notification_types_select_column!], distinct: Boolean): Int! + max: e_notification_types_max_fields + min: e_notification_types_min_fields +} + +""" +Boolean expression to filter rows from the table "e_notification_types". All fields are combined with a logical 'AND'. +""" +input e_notification_types_bool_exp { + _and: [e_notification_types_bool_exp!] + _not: e_notification_types_bool_exp + _or: [e_notification_types_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_notification_types" +""" +enum e_notification_types_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_notification_types_pkey +} + +enum e_notification_types_enum { + """You received an award""" + AwardGranted + + """A new message in a chat you are part of""" + ChatMessage + + """A clip you requested finished rendering""" + ClipReady + + """DedicatedServerRconStatus""" + DedicatedServerRconStatus + + """DedicatedServerStatus""" + DedicatedServerStatus + + """You were invited to a draft lobby""" + DraftInvite + + """Player ELO recompute finished""" + EloRecompute + + """An event you are attending starts soon""" + EventReminder + + """You frequently play with these players""" + FormTeamSuggestion + + """GameNodeStatus""" + GameNodeStatus + + """GameUpdate""" + GameUpdate + + """A league matchup is unscheduled and will default soon""" + LeagueMatchUnscheduled + + """Your league match time proposal was accepted""" + LeagueProposalAccepted + + """Your league match time proposal was declined""" + LeagueProposalDeclined + + """A league opponent proposed a match time""" + LeagueProposalReceived + + """Your league registration was reviewed""" + LeagueRegistrationDecision + + """Your league team no longer meets the minimum roster size""" + LeagueRosterUndersized + + """A player abandoned a match""" + MatchAbandoned + + """A new message in a match's chat""" + MatchChatMessage + + """A Valve match you played was imported to 5stack""" + MatchImported + + """Stats for a match you played are ready""" + MatchStatsReady + + """Match Status Change Notification""" + MatchStatusChange + + """MatchSupport""" + MatchSupport + + """A nade drift scan finished""" + NadeDriftScanFinished + + """You were invited to a nade practice session""" + NadePracticeInvite + + """Your nade practice server is ready""" + NadePracticeReady + + """Your name change request was approved""" + NameChangeApproved + + """Your name change request was denied""" + NameChangeDenied + + """NameChangeRequest""" + NameChangeRequest + + """A news article was published""" + NewsPublished + + """Player search reindex finished""" + PlayerReindex + + """A player you recently played with received a sanction""" + PlayerSanctioned + + """A team matching your scrim alert is available""" + ScrimAlertMatch + + """A scheduled scrim match was canceled""" + ScrimMatchCanceled + + """A scrim match has been scheduled""" + ScrimMatchScheduled + + """Your scrim request was accepted""" + ScrimRequestAccepted + + """A team proposed a different scrim time""" + ScrimRequestCountered + + """Your scrim request was declined""" + ScrimRequestDeclined + + """A scrim request expired without a response""" + ScrimRequestExpired + + """A team requested to scrim yours""" + ScrimRequestReceived + + """A scheduled scrim time changed""" + ScrimTimeChanged + + """A season has ended""" + SeasonEnded + + """Storage Scan""" + StorageScan + + """You were invited to a team""" + TeamInvite + + """Check-in for your tournament closes soon""" + TournamentCheckInClosing + + """Your team missed check-in and was not seeded""" + TournamentCheckInMissed + + """Check-in has opened for a tournament you are registered for""" + TournamentCheckInOpen + + """Registration opened for a tournament""" + TournamentCreated + + """You were invited to register for a tournament""" + TournamentInvite + + """Your lobby was signed up for a tournament as a free agent party""" + TournamentPartySignup + + """A tournament you are registered for starts soon""" + TournamentReminder + + """You were invited to play in a tournament""" + TournamentTeamInvite + + """A utility drift scan finished""" + UtilityDriftScanFinished + + """You were invited to a utility practice session""" + UtilityPracticeInvite + + """Your utility practice server is ready""" + UtilityPracticeReady +} + +""" +Boolean expression to compare columns of type "e_notification_types_enum". All fields are combined with logical 'AND'. +""" +input e_notification_types_enum_comparison_exp { + _eq: e_notification_types_enum + _in: [e_notification_types_enum!] + _is_null: Boolean + _neq: e_notification_types_enum + _nin: [e_notification_types_enum!] +} + +""" +input type for inserting data into table "e_notification_types" +""" +input e_notification_types_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_notification_types_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_notification_types_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_notification_types" +""" +type e_notification_types_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_notification_types!]! +} + +""" +on_conflict condition type for table "e_notification_types" +""" +input e_notification_types_on_conflict { + constraint: e_notification_types_constraint! + update_columns: [e_notification_types_update_column!]! = [] + where: e_notification_types_bool_exp +} + +"""Ordering options when selecting data from "e_notification_types".""" +input e_notification_types_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_notification_types""" +input e_notification_types_pk_columns_input { + value: String! +} + +""" +select columns of table "e_notification_types" +""" +enum e_notification_types_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_notification_types" +""" +input e_notification_types_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_notification_types" +""" +input e_notification_types_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_notification_types_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_notification_types_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_notification_types" +""" +enum e_notification_types_update_column { + """column name""" + description + + """column name""" + value +} + +input e_notification_types_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_notification_types_set_input + + """filter the rows which have to be updated""" + where: e_notification_types_bool_exp! +} + +""" +columns and relationships of "e_objective_types" +""" +type e_objective_types { + description: String! + + """An array relationship""" + player_objectives( + """distinct select on columns""" + distinct_on: [player_objectives_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: [player_objectives_order_by!] + + """filter the rows returned""" + where: player_objectives_bool_exp + ): [player_objectives!]! + + """An aggregate relationship""" + player_objectives_aggregate( + """distinct select on columns""" + distinct_on: [player_objectives_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: [player_objectives_order_by!] + + """filter the rows returned""" + where: player_objectives_bool_exp + ): player_objectives_aggregate! + value: String! +} + +""" +aggregated selection of "e_objective_types" +""" +type e_objective_types_aggregate { + aggregate: e_objective_types_aggregate_fields + nodes: [e_objective_types!]! +} + +""" +aggregate fields of "e_objective_types" +""" +type e_objective_types_aggregate_fields { + count(columns: [e_objective_types_select_column!], distinct: Boolean): Int! + max: e_objective_types_max_fields + min: e_objective_types_min_fields +} + +""" +Boolean expression to filter rows from the table "e_objective_types". All fields are combined with a logical 'AND'. +""" +input e_objective_types_bool_exp { + _and: [e_objective_types_bool_exp!] + _not: e_objective_types_bool_exp + _or: [e_objective_types_bool_exp!] + description: String_comparison_exp + player_objectives: player_objectives_bool_exp + player_objectives_aggregate: player_objectives_aggregate_bool_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_objective_types" +""" +enum e_objective_types_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_objective__pkey +} + +enum e_objective_types_enum { + """Defused""" + Defused + + """Exploded""" + Exploded + + """Planted""" + Planted +} + +""" +Boolean expression to compare columns of type "e_objective_types_enum". All fields are combined with logical 'AND'. +""" +input e_objective_types_enum_comparison_exp { + _eq: e_objective_types_enum + _in: [e_objective_types_enum!] + _is_null: Boolean + _neq: e_objective_types_enum + _nin: [e_objective_types_enum!] +} + +""" +input type for inserting data into table "e_objective_types" +""" +input e_objective_types_insert_input { + description: String + player_objectives: player_objectives_arr_rel_insert_input + value: String +} + +"""aggregate max on columns""" +type e_objective_types_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_objective_types_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_objective_types" +""" +type e_objective_types_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_objective_types!]! +} + +""" +on_conflict condition type for table "e_objective_types" +""" +input e_objective_types_on_conflict { + constraint: e_objective_types_constraint! + update_columns: [e_objective_types_update_column!]! = [] + where: e_objective_types_bool_exp +} + +"""Ordering options when selecting data from "e_objective_types".""" +input e_objective_types_order_by { + description: order_by + player_objectives_aggregate: player_objectives_aggregate_order_by + value: order_by +} + +"""primary key columns input for table: e_objective_types""" +input e_objective_types_pk_columns_input { + value: String! +} + +""" +select columns of table "e_objective_types" +""" +enum e_objective_types_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_objective_types" +""" +input e_objective_types_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_objective_types" +""" +input e_objective_types_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_objective_types_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_objective_types_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_objective_types" +""" +enum e_objective_types_update_column { + """column name""" + description + + """column name""" + value +} + +input e_objective_types_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_objective_types_set_input + + """filter the rows which have to be updated""" + where: e_objective_types_bool_exp! +} + +""" +columns and relationships of "e_player_roles" +""" +type e_player_roles { + description: String! + value: String! +} + +""" +aggregated selection of "e_player_roles" +""" +type e_player_roles_aggregate { + aggregate: e_player_roles_aggregate_fields + nodes: [e_player_roles!]! +} + +""" +aggregate fields of "e_player_roles" +""" +type e_player_roles_aggregate_fields { + count(columns: [e_player_roles_select_column!], distinct: Boolean): Int! + max: e_player_roles_max_fields + min: e_player_roles_min_fields +} + +""" +Boolean expression to filter rows from the table "e_player_roles". All fields are combined with a logical 'AND'. +""" +input e_player_roles_bool_exp { + _and: [e_player_roles_bool_exp!] + _not: e_player_roles_bool_exp + _or: [e_player_roles_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_player_roles" +""" +enum e_player_roles_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_player_roles_pkey +} + +enum e_player_roles_enum { + """Administrator""" + administrator + + """Ability Manage Matches and bypass restrictions""" + match_organizer + + """Ability to moderate public servers and players""" + moderator + + """Streamer""" + streamer + + """Ability Create and Manage Tournaments""" + tournament_organizer + + """Basic User""" + user + + """Verified User""" + verified_user +} + +""" +Boolean expression to compare columns of type "e_player_roles_enum". All fields are combined with logical 'AND'. +""" +input e_player_roles_enum_comparison_exp { + _eq: e_player_roles_enum + _in: [e_player_roles_enum!] + _is_null: Boolean + _neq: e_player_roles_enum + _nin: [e_player_roles_enum!] +} + +""" +input type for inserting data into table "e_player_roles" +""" +input e_player_roles_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_player_roles_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_player_roles_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_player_roles" +""" +type e_player_roles_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_player_roles!]! +} + +""" +on_conflict condition type for table "e_player_roles" +""" +input e_player_roles_on_conflict { + constraint: e_player_roles_constraint! + update_columns: [e_player_roles_update_column!]! = [] + where: e_player_roles_bool_exp +} + +"""Ordering options when selecting data from "e_player_roles".""" +input e_player_roles_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_player_roles""" +input e_player_roles_pk_columns_input { + value: String! +} + +""" +select columns of table "e_player_roles" +""" +enum e_player_roles_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_player_roles" +""" +input e_player_roles_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_player_roles" +""" +input e_player_roles_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_player_roles_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_player_roles_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_player_roles" +""" +enum e_player_roles_update_column { + """column name""" + description + + """column name""" + value +} + +input e_player_roles_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_player_roles_set_input + + """filter the rows which have to be updated""" + where: e_player_roles_bool_exp! +} + +""" +columns and relationships of "e_plugin_runtimes" +""" +type e_plugin_runtimes { + description: String! + value: String! +} + +""" +aggregated selection of "e_plugin_runtimes" +""" +type e_plugin_runtimes_aggregate { + aggregate: e_plugin_runtimes_aggregate_fields + nodes: [e_plugin_runtimes!]! +} + +""" +aggregate fields of "e_plugin_runtimes" +""" +type e_plugin_runtimes_aggregate_fields { + count(columns: [e_plugin_runtimes_select_column!], distinct: Boolean): Int! + max: e_plugin_runtimes_max_fields + min: e_plugin_runtimes_min_fields +} + +""" +Boolean expression to filter rows from the table "e_plugin_runtimes". All fields are combined with a logical 'AND'. +""" +input e_plugin_runtimes_bool_exp { + _and: [e_plugin_runtimes_bool_exp!] + _not: e_plugin_runtimes_bool_exp + _or: [e_plugin_runtimes_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_plugin_runtimes" +""" +enum e_plugin_runtimes_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_plugin_runtimes_pkey +} + +enum e_plugin_runtimes_enum { + """Plugin loads under Metamod and CounterStrikeSharp""" + counterstrikesharp + + """Plugin loads under the SwiftlyS2 framework""" + swiftlys2 +} + +""" +Boolean expression to compare columns of type "e_plugin_runtimes_enum". All fields are combined with logical 'AND'. +""" +input e_plugin_runtimes_enum_comparison_exp { + _eq: e_plugin_runtimes_enum + _in: [e_plugin_runtimes_enum!] + _is_null: Boolean + _neq: e_plugin_runtimes_enum + _nin: [e_plugin_runtimes_enum!] +} + +""" +input type for inserting data into table "e_plugin_runtimes" +""" +input e_plugin_runtimes_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_plugin_runtimes_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_plugin_runtimes_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_plugin_runtimes" +""" +type e_plugin_runtimes_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_plugin_runtimes!]! +} + +""" +on_conflict condition type for table "e_plugin_runtimes" +""" +input e_plugin_runtimes_on_conflict { + constraint: e_plugin_runtimes_constraint! + update_columns: [e_plugin_runtimes_update_column!]! = [] + where: e_plugin_runtimes_bool_exp +} + +"""Ordering options when selecting data from "e_plugin_runtimes".""" +input e_plugin_runtimes_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_plugin_runtimes""" +input e_plugin_runtimes_pk_columns_input { + value: String! +} + +""" +select columns of table "e_plugin_runtimes" +""" +enum e_plugin_runtimes_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_plugin_runtimes" +""" +input e_plugin_runtimes_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_plugin_runtimes" +""" +input e_plugin_runtimes_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_plugin_runtimes_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_plugin_runtimes_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_plugin_runtimes" +""" +enum e_plugin_runtimes_update_column { + """column name""" + description + + """column name""" + value +} + +input e_plugin_runtimes_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_plugin_runtimes_set_input + + """filter the rows which have to be updated""" + where: e_plugin_runtimes_bool_exp! +} + +""" +columns and relationships of "e_ready_settings" +""" +type e_ready_settings { + description: String! + value: String! +} + +""" +aggregated selection of "e_ready_settings" +""" +type e_ready_settings_aggregate { + aggregate: e_ready_settings_aggregate_fields + nodes: [e_ready_settings!]! +} + +""" +aggregate fields of "e_ready_settings" +""" +type e_ready_settings_aggregate_fields { + count(columns: [e_ready_settings_select_column!], distinct: Boolean): Int! + max: e_ready_settings_max_fields + min: e_ready_settings_min_fields +} + +""" +Boolean expression to filter rows from the table "e_ready_settings". All fields are combined with a logical 'AND'. +""" +input e_ready_settings_bool_exp { + _and: [e_ready_settings_bool_exp!] + _not: e_ready_settings_bool_exp + _or: [e_ready_settings_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_ready_settings" +""" +enum e_ready_settings_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_ready_settings_pkey +} + +enum e_ready_settings_enum { + """Admins Only""" + Admin + + """Captains Only""" + Captains + + """Coach Only""" + Coach + + """All Players""" + Players +} + +""" +Boolean expression to compare columns of type "e_ready_settings_enum". All fields are combined with logical 'AND'. +""" +input e_ready_settings_enum_comparison_exp { + _eq: e_ready_settings_enum + _in: [e_ready_settings_enum!] + _is_null: Boolean + _neq: e_ready_settings_enum + _nin: [e_ready_settings_enum!] +} + +""" +input type for inserting data into table "e_ready_settings" +""" +input e_ready_settings_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_ready_settings_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_ready_settings_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_ready_settings" +""" +type e_ready_settings_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_ready_settings!]! +} + +""" +on_conflict condition type for table "e_ready_settings" +""" +input e_ready_settings_on_conflict { + constraint: e_ready_settings_constraint! + update_columns: [e_ready_settings_update_column!]! = [] + where: e_ready_settings_bool_exp +} + +"""Ordering options when selecting data from "e_ready_settings".""" +input e_ready_settings_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_ready_settings""" +input e_ready_settings_pk_columns_input { + value: String! +} + +""" +select columns of table "e_ready_settings" +""" +enum e_ready_settings_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_ready_settings" +""" +input e_ready_settings_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_ready_settings" +""" +input e_ready_settings_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_ready_settings_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_ready_settings_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_ready_settings" +""" +enum e_ready_settings_update_column { + """column name""" + description + + """column name""" + value +} + +input e_ready_settings_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_ready_settings_set_input + + """filter the rows which have to be updated""" + where: e_ready_settings_bool_exp! +} + +""" +columns and relationships of "e_sanction_scopes" +""" +type e_sanction_scopes { + description: String! + value: String! +} + +""" +aggregated selection of "e_sanction_scopes" +""" +type e_sanction_scopes_aggregate { + aggregate: e_sanction_scopes_aggregate_fields + nodes: [e_sanction_scopes!]! +} + +""" +aggregate fields of "e_sanction_scopes" +""" +type e_sanction_scopes_aggregate_fields { + count(columns: [e_sanction_scopes_select_column!], distinct: Boolean): Int! + max: e_sanction_scopes_max_fields + min: e_sanction_scopes_min_fields +} + +""" +Boolean expression to filter rows from the table "e_sanction_scopes". All fields are combined with a logical 'AND'. +""" +input e_sanction_scopes_bool_exp { + _and: [e_sanction_scopes_bool_exp!] + _not: e_sanction_scopes_bool_exp + _or: [e_sanction_scopes_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_sanction_scopes" +""" +enum e_sanction_scopes_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_sanction_scopes_pkey +} + +""" +input type for inserting data into table "e_sanction_scopes" +""" +input e_sanction_scopes_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_sanction_scopes_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_sanction_scopes_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_sanction_scopes" +""" +type e_sanction_scopes_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_sanction_scopes!]! +} + +""" +input type for inserting object relation for remote table "e_sanction_scopes" +""" +input e_sanction_scopes_obj_rel_insert_input { + data: e_sanction_scopes_insert_input! + + """upsert condition""" + on_conflict: e_sanction_scopes_on_conflict +} + +""" +on_conflict condition type for table "e_sanction_scopes" +""" +input e_sanction_scopes_on_conflict { + constraint: e_sanction_scopes_constraint! + update_columns: [e_sanction_scopes_update_column!]! = [] + where: e_sanction_scopes_bool_exp +} + +"""Ordering options when selecting data from "e_sanction_scopes".""" +input e_sanction_scopes_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_sanction_scopes""" +input e_sanction_scopes_pk_columns_input { + value: String! +} + +""" +select columns of table "e_sanction_scopes" +""" +enum e_sanction_scopes_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_sanction_scopes" +""" +input e_sanction_scopes_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_sanction_scopes" +""" +input e_sanction_scopes_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_sanction_scopes_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_sanction_scopes_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_sanction_scopes" +""" +enum e_sanction_scopes_update_column { + """column name""" + description + + """column name""" + value +} + +input e_sanction_scopes_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_sanction_scopes_set_input + + """filter the rows which have to be updated""" + where: e_sanction_scopes_bool_exp! +} + +""" +columns and relationships of "e_sanction_sources" +""" +type e_sanction_sources { + """Comma separated ban durations in minutes, indexed by occurrence count""" + default_durations: String! + default_enabled: Boolean! + default_scope: String! + default_threshold: Int! + default_window_days: Int! + description: String! + + """An object relationship""" + e_sanction_scope: e_sanction_scopes! + value: String! + + """Source issues a player_sanctions ban row instead of a scoped cooldown""" + writes_platform_ban: Boolean! +} + +""" +aggregated selection of "e_sanction_sources" +""" +type e_sanction_sources_aggregate { + aggregate: e_sanction_sources_aggregate_fields + nodes: [e_sanction_sources!]! +} + +""" +aggregate fields of "e_sanction_sources" +""" +type e_sanction_sources_aggregate_fields { + avg: e_sanction_sources_avg_fields + count(columns: [e_sanction_sources_select_column!], distinct: Boolean): Int! + max: e_sanction_sources_max_fields + min: e_sanction_sources_min_fields + stddev: e_sanction_sources_stddev_fields + stddev_pop: e_sanction_sources_stddev_pop_fields + stddev_samp: e_sanction_sources_stddev_samp_fields + sum: e_sanction_sources_sum_fields + var_pop: e_sanction_sources_var_pop_fields + var_samp: e_sanction_sources_var_samp_fields + variance: e_sanction_sources_variance_fields +} + +"""aggregate avg on columns""" +type e_sanction_sources_avg_fields { + default_threshold: Float + default_window_days: Float +} + +""" +Boolean expression to filter rows from the table "e_sanction_sources". All fields are combined with a logical 'AND'. +""" +input e_sanction_sources_bool_exp { + _and: [e_sanction_sources_bool_exp!] + _not: e_sanction_sources_bool_exp + _or: [e_sanction_sources_bool_exp!] + default_durations: String_comparison_exp + default_enabled: Boolean_comparison_exp + default_scope: String_comparison_exp + default_threshold: Int_comparison_exp + default_window_days: Int_comparison_exp + description: String_comparison_exp + e_sanction_scope: e_sanction_scopes_bool_exp + value: String_comparison_exp + writes_platform_ban: Boolean_comparison_exp +} + +""" +unique or primary key constraints on table "e_sanction_sources" +""" +enum e_sanction_sources_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_sanction_sources_pkey +} + +""" +input type for incrementing numeric columns in table "e_sanction_sources" +""" +input e_sanction_sources_inc_input { + default_threshold: Int + default_window_days: Int +} + +""" +input type for inserting data into table "e_sanction_sources" +""" +input e_sanction_sources_insert_input { + """Comma separated ban durations in minutes, indexed by occurrence count""" + default_durations: String + default_enabled: Boolean + default_scope: String + default_threshold: Int + default_window_days: Int + description: String + e_sanction_scope: e_sanction_scopes_obj_rel_insert_input + value: String + + """Source issues a player_sanctions ban row instead of a scoped cooldown""" + writes_platform_ban: Boolean +} + +"""aggregate max on columns""" +type e_sanction_sources_max_fields { + """Comma separated ban durations in minutes, indexed by occurrence count""" + default_durations: String + default_scope: String + default_threshold: Int + default_window_days: Int + description: String + value: String +} + +"""aggregate min on columns""" +type e_sanction_sources_min_fields { + """Comma separated ban durations in minutes, indexed by occurrence count""" + default_durations: String + default_scope: String + default_threshold: Int + default_window_days: Int + description: String + value: String +} + +""" +response of any mutation on the table "e_sanction_sources" +""" +type e_sanction_sources_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_sanction_sources!]! +} + +""" +on_conflict condition type for table "e_sanction_sources" +""" +input e_sanction_sources_on_conflict { + constraint: e_sanction_sources_constraint! + update_columns: [e_sanction_sources_update_column!]! = [] + where: e_sanction_sources_bool_exp +} + +"""Ordering options when selecting data from "e_sanction_sources".""" +input e_sanction_sources_order_by { + default_durations: order_by + default_enabled: order_by + default_scope: order_by + default_threshold: order_by + default_window_days: order_by + description: order_by + e_sanction_scope: e_sanction_scopes_order_by + value: order_by + writes_platform_ban: order_by +} + +"""primary key columns input for table: e_sanction_sources""" +input e_sanction_sources_pk_columns_input { + value: String! +} + +""" +select columns of table "e_sanction_sources" +""" +enum e_sanction_sources_select_column { + """column name""" + default_durations + + """column name""" + default_enabled + + """column name""" + default_scope + + """column name""" + default_threshold + + """column name""" + default_window_days + + """column name""" + description + + """column name""" + value + + """column name""" + writes_platform_ban +} + +""" +input type for updating data in table "e_sanction_sources" +""" +input e_sanction_sources_set_input { + """Comma separated ban durations in minutes, indexed by occurrence count""" + default_durations: String + default_enabled: Boolean + default_scope: String + default_threshold: Int + default_window_days: Int + description: String + value: String + + """Source issues a player_sanctions ban row instead of a scoped cooldown""" + writes_platform_ban: Boolean +} + +"""aggregate stddev on columns""" +type e_sanction_sources_stddev_fields { + default_threshold: Float + default_window_days: Float +} + +"""aggregate stddev_pop on columns""" +type e_sanction_sources_stddev_pop_fields { + default_threshold: Float + default_window_days: Float +} + +"""aggregate stddev_samp on columns""" +type e_sanction_sources_stddev_samp_fields { + default_threshold: Float + default_window_days: Float +} + +""" +Streaming cursor of the table "e_sanction_sources" +""" +input e_sanction_sources_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_sanction_sources_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_sanction_sources_stream_cursor_value_input { + """Comma separated ban durations in minutes, indexed by occurrence count""" + default_durations: String + default_enabled: Boolean + default_scope: String + default_threshold: Int + default_window_days: Int + description: String + value: String + + """Source issues a player_sanctions ban row instead of a scoped cooldown""" + writes_platform_ban: Boolean +} + +"""aggregate sum on columns""" +type e_sanction_sources_sum_fields { + default_threshold: Int + default_window_days: Int +} + +""" +update columns of table "e_sanction_sources" +""" +enum e_sanction_sources_update_column { + """column name""" + default_durations + + """column name""" + default_enabled + + """column name""" + default_scope + + """column name""" + default_threshold + + """column name""" + default_window_days + + """column name""" + description + + """column name""" + value + + """column name""" + writes_platform_ban +} + +input e_sanction_sources_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: e_sanction_sources_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: e_sanction_sources_set_input + + """filter the rows which have to be updated""" + where: e_sanction_sources_bool_exp! +} + +"""aggregate var_pop on columns""" +type e_sanction_sources_var_pop_fields { + default_threshold: Float + default_window_days: Float +} + +"""aggregate var_samp on columns""" +type e_sanction_sources_var_samp_fields { + default_threshold: Float + default_window_days: Float +} + +"""aggregate variance on columns""" +type e_sanction_sources_variance_fields { + default_threshold: Float + default_window_days: Float +} + +""" +columns and relationships of "e_sanction_types" +""" +type e_sanction_types { + description: String! + value: String! +} + +""" +aggregated selection of "e_sanction_types" +""" +type e_sanction_types_aggregate { + aggregate: e_sanction_types_aggregate_fields + nodes: [e_sanction_types!]! +} + +""" +aggregate fields of "e_sanction_types" +""" +type e_sanction_types_aggregate_fields { + count(columns: [e_sanction_types_select_column!], distinct: Boolean): Int! + max: e_sanction_types_max_fields + min: e_sanction_types_min_fields +} + +""" +Boolean expression to filter rows from the table "e_sanction_types". All fields are combined with a logical 'AND'. +""" +input e_sanction_types_bool_exp { + _and: [e_sanction_types_bool_exp!] + _not: e_sanction_types_bool_exp + _or: [e_sanction_types_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_sanction_types" +""" +enum e_sanction_types_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_sanction_types_pkey +} + +enum e_sanction_types_enum { + """Player is not able to participate in any activity""" + ban + + """Player cannot use text chat in game""" + gag + + """Player cannot use voice chat in game""" + mute + + """Player muted and gagged""" + silence +} + +""" +Boolean expression to compare columns of type "e_sanction_types_enum". All fields are combined with logical 'AND'. +""" +input e_sanction_types_enum_comparison_exp { + _eq: e_sanction_types_enum + _in: [e_sanction_types_enum!] + _is_null: Boolean + _neq: e_sanction_types_enum + _nin: [e_sanction_types_enum!] +} + +""" +input type for inserting data into table "e_sanction_types" +""" +input e_sanction_types_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_sanction_types_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_sanction_types_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_sanction_types" +""" +type e_sanction_types_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_sanction_types!]! +} + +""" +input type for inserting object relation for remote table "e_sanction_types" +""" +input e_sanction_types_obj_rel_insert_input { + data: e_sanction_types_insert_input! + + """upsert condition""" + on_conflict: e_sanction_types_on_conflict +} + +""" +on_conflict condition type for table "e_sanction_types" +""" +input e_sanction_types_on_conflict { + constraint: e_sanction_types_constraint! + update_columns: [e_sanction_types_update_column!]! = [] + where: e_sanction_types_bool_exp +} + +"""Ordering options when selecting data from "e_sanction_types".""" +input e_sanction_types_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_sanction_types""" +input e_sanction_types_pk_columns_input { + value: String! +} + +""" +select columns of table "e_sanction_types" +""" +enum e_sanction_types_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_sanction_types" +""" +input e_sanction_types_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_sanction_types" +""" +input e_sanction_types_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_sanction_types_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_sanction_types_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_sanction_types" +""" +enum e_sanction_types_update_column { + """column name""" + description + + """column name""" + value +} + +input e_sanction_types_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_sanction_types_set_input + + """filter the rows which have to be updated""" + where: e_sanction_types_bool_exp! +} + +""" +columns and relationships of "e_scrim_request_statuses" +""" +type e_scrim_request_statuses { + description: String! + + """An array relationship""" + scrim_requests( + """distinct select on columns""" + distinct_on: [team_scrim_requests_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: [team_scrim_requests_order_by!] + + """filter the rows returned""" + where: team_scrim_requests_bool_exp + ): [team_scrim_requests!]! + + """An aggregate relationship""" + scrim_requests_aggregate( + """distinct select on columns""" + distinct_on: [team_scrim_requests_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: [team_scrim_requests_order_by!] + + """filter the rows returned""" + where: team_scrim_requests_bool_exp + ): team_scrim_requests_aggregate! + value: String! +} + +""" +aggregated selection of "e_scrim_request_statuses" +""" +type e_scrim_request_statuses_aggregate { + aggregate: e_scrim_request_statuses_aggregate_fields + nodes: [e_scrim_request_statuses!]! +} + +""" +aggregate fields of "e_scrim_request_statuses" +""" +type e_scrim_request_statuses_aggregate_fields { + count(columns: [e_scrim_request_statuses_select_column!], distinct: Boolean): Int! + max: e_scrim_request_statuses_max_fields + min: e_scrim_request_statuses_min_fields +} + +""" +Boolean expression to filter rows from the table "e_scrim_request_statuses". All fields are combined with a logical 'AND'. +""" +input e_scrim_request_statuses_bool_exp { + _and: [e_scrim_request_statuses_bool_exp!] + _not: e_scrim_request_statuses_bool_exp + _or: [e_scrim_request_statuses_bool_exp!] + description: String_comparison_exp + scrim_requests: team_scrim_requests_bool_exp + scrim_requests_aggregate: team_scrim_requests_aggregate_bool_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_scrim_request_statuses" +""" +enum e_scrim_request_statuses_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_scrim_request_statuses_pkey +} + +enum e_scrim_request_statuses_enum { + """Both teams agreed on a time""" + Accepted + + """The request was cancelled by the proposer""" + Cancelled + + """A new time was proposed and is awaiting the other team""" + Countered + + """The request was declined""" + Declined + + """The request expired before being answered""" + Expired + + """A hosted match was scheduled for this request""" + Matched + + """Awaiting the other team to accept, decline, or counter""" + Pending +} + +""" +Boolean expression to compare columns of type "e_scrim_request_statuses_enum". All fields are combined with logical 'AND'. +""" +input e_scrim_request_statuses_enum_comparison_exp { + _eq: e_scrim_request_statuses_enum + _in: [e_scrim_request_statuses_enum!] + _is_null: Boolean + _neq: e_scrim_request_statuses_enum + _nin: [e_scrim_request_statuses_enum!] +} + +""" +input type for inserting data into table "e_scrim_request_statuses" +""" +input e_scrim_request_statuses_insert_input { + description: String + scrim_requests: team_scrim_requests_arr_rel_insert_input + value: String +} + +"""aggregate max on columns""" +type e_scrim_request_statuses_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_scrim_request_statuses_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_scrim_request_statuses" +""" +type e_scrim_request_statuses_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_scrim_request_statuses!]! +} + +""" +on_conflict condition type for table "e_scrim_request_statuses" +""" +input 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 +} + +"""Ordering options when selecting data from "e_scrim_request_statuses".""" +input e_scrim_request_statuses_order_by { + description: order_by + scrim_requests_aggregate: team_scrim_requests_aggregate_order_by + value: order_by +} + +"""primary key columns input for table: e_scrim_request_statuses""" +input e_scrim_request_statuses_pk_columns_input { + value: String! +} + +""" +select columns of table "e_scrim_request_statuses" +""" +enum e_scrim_request_statuses_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_scrim_request_statuses" +""" +input e_scrim_request_statuses_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_scrim_request_statuses" +""" +input e_scrim_request_statuses_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_scrim_request_statuses_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_scrim_request_statuses_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_scrim_request_statuses" +""" +enum e_scrim_request_statuses_update_column { + """column name""" + description + + """column name""" + value +} + +input e_scrim_request_statuses_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_scrim_request_statuses_set_input + + """filter the rows which have to be updated""" + where: e_scrim_request_statuses_bool_exp! +} + +""" +columns and relationships of "e_server_types" +""" +type e_server_types { + description: String! + + """An array relationship""" + servers( + """distinct select on columns""" + distinct_on: [servers_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: [servers_order_by!] + + """filter the rows returned""" + where: servers_bool_exp + ): [servers!]! + + """An aggregate relationship""" + servers_aggregate( + """distinct select on columns""" + distinct_on: [servers_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: [servers_order_by!] + + """filter the rows returned""" + where: servers_bool_exp + ): servers_aggregate! + value: String! +} + +""" +aggregated selection of "e_server_types" +""" +type e_server_types_aggregate { + aggregate: e_server_types_aggregate_fields + nodes: [e_server_types!]! +} + +""" +aggregate fields of "e_server_types" +""" +type e_server_types_aggregate_fields { + count(columns: [e_server_types_select_column!], distinct: Boolean): Int! + max: e_server_types_max_fields + min: e_server_types_min_fields +} + +""" +Boolean expression to filter rows from the table "e_server_types". All fields are combined with a logical 'AND'. +""" +input e_server_types_bool_exp { + _and: [e_server_types_bool_exp!] + _not: e_server_types_bool_exp + _or: [e_server_types_bool_exp!] + description: String_comparison_exp + servers: servers_bool_exp + servers_aggregate: servers_aggregate_bool_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_server_types" +""" +enum e_server_types_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_server_types_pkey +} + +enum e_server_types_enum { + """Valve Arms Race""" + ArmsRace + + """Valve Casual""" + Casual + + """Valve Competitive""" + Competitive + + """Custom""" + Custom + + """Valve Deathmatch""" + Deathmatch + + """5Stack Practice Server""" + Practice + + """5Stack Ranked Server""" + Ranked + + """Valve Retake""" + Retake + + """Valve Wingman""" + Wingman +} + +""" +Boolean expression to compare columns of type "e_server_types_enum". All fields are combined with logical 'AND'. +""" +input e_server_types_enum_comparison_exp { + _eq: e_server_types_enum + _in: [e_server_types_enum!] + _is_null: Boolean + _neq: e_server_types_enum + _nin: [e_server_types_enum!] +} + +""" +input type for inserting data into table "e_server_types" +""" +input e_server_types_insert_input { + description: String + servers: servers_arr_rel_insert_input + value: String +} + +"""aggregate max on columns""" +type e_server_types_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_server_types_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_server_types" +""" +type e_server_types_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_server_types!]! +} + +""" +on_conflict condition type for table "e_server_types" +""" +input e_server_types_on_conflict { + constraint: e_server_types_constraint! + update_columns: [e_server_types_update_column!]! = [] + where: e_server_types_bool_exp +} + +"""Ordering options when selecting data from "e_server_types".""" +input e_server_types_order_by { + description: order_by + servers_aggregate: servers_aggregate_order_by + value: order_by +} + +"""primary key columns input for table: e_server_types""" +input e_server_types_pk_columns_input { + value: String! +} + +""" +select columns of table "e_server_types" +""" +enum e_server_types_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_server_types" +""" +input e_server_types_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_server_types" +""" +input e_server_types_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_server_types_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_server_types_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_server_types" +""" +enum e_server_types_update_column { + """column name""" + description + + """column name""" + value +} + +input e_server_types_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_server_types_set_input + + """filter the rows which have to be updated""" + where: e_server_types_bool_exp! +} + +""" +columns and relationships of "e_sides" +""" +type e_sides { + description: String! + + """An array relationship""" + match_map_lineup_1( + """distinct select on columns""" + distinct_on: [match_maps_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_maps_order_by!] + + """filter the rows returned""" + where: match_maps_bool_exp + ): [match_maps!]! + + """An aggregate relationship""" + match_map_lineup_1_aggregate( + """distinct select on columns""" + distinct_on: [match_maps_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_maps_order_by!] + + """filter the rows returned""" + where: match_maps_bool_exp + ): match_maps_aggregate! + + """An array relationship""" + match_map_lineup_2( + """distinct select on columns""" + distinct_on: [match_maps_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_maps_order_by!] + + """filter the rows returned""" + where: match_maps_bool_exp + ): [match_maps!]! + + """An aggregate relationship""" + match_map_lineup_2_aggregate( + """distinct select on columns""" + distinct_on: [match_maps_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_maps_order_by!] + + """filter the rows returned""" + where: match_maps_bool_exp + ): match_maps_aggregate! + value: String! +} + +""" +aggregated selection of "e_sides" +""" +type e_sides_aggregate { + aggregate: e_sides_aggregate_fields + nodes: [e_sides!]! +} + +""" +aggregate fields of "e_sides" +""" +type e_sides_aggregate_fields { + count(columns: [e_sides_select_column!], distinct: Boolean): Int! + max: e_sides_max_fields + min: e_sides_min_fields +} + +""" +Boolean expression to filter rows from the table "e_sides". All fields are combined with a logical 'AND'. +""" +input e_sides_bool_exp { + _and: [e_sides_bool_exp!] + _not: e_sides_bool_exp + _or: [e_sides_bool_exp!] + description: String_comparison_exp + match_map_lineup_1: match_maps_bool_exp + match_map_lineup_1_aggregate: match_maps_aggregate_bool_exp + match_map_lineup_2: match_maps_bool_exp + match_map_lineup_2_aggregate: match_maps_aggregate_bool_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_sides" +""" +enum e_sides_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_teams_pkey +} + +enum e_sides_enum { + """Counter Terrorist""" + CT + + """None""" + None + + """Spectator""" + Spectator + + """Terrorist""" + TERRORIST +} + +""" +Boolean expression to compare columns of type "e_sides_enum". All fields are combined with logical 'AND'. +""" +input e_sides_enum_comparison_exp { + _eq: e_sides_enum + _in: [e_sides_enum!] + _is_null: Boolean + _neq: e_sides_enum + _nin: [e_sides_enum!] +} + +""" +input type for inserting data into table "e_sides" +""" +input e_sides_insert_input { + description: String + match_map_lineup_1: match_maps_arr_rel_insert_input + match_map_lineup_2: match_maps_arr_rel_insert_input + value: String +} + +"""aggregate max on columns""" +type e_sides_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_sides_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_sides" +""" +type e_sides_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_sides!]! +} + +""" +on_conflict condition type for table "e_sides" +""" +input e_sides_on_conflict { + constraint: e_sides_constraint! + update_columns: [e_sides_update_column!]! = [] + where: e_sides_bool_exp +} + +"""Ordering options when selecting data from "e_sides".""" +input e_sides_order_by { + description: order_by + match_map_lineup_1_aggregate: match_maps_aggregate_order_by + match_map_lineup_2_aggregate: match_maps_aggregate_order_by + value: order_by +} + +"""primary key columns input for table: e_sides""" +input e_sides_pk_columns_input { + value: String! +} + +""" +select columns of table "e_sides" +""" +enum e_sides_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_sides" +""" +input e_sides_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_sides" +""" +input e_sides_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_sides_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_sides_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_sides" +""" +enum e_sides_update_column { + """column name""" + description + + """column name""" + value +} + +input e_sides_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_sides_set_input + + """filter the rows which have to be updated""" + where: e_sides_bool_exp! +} + +""" +columns and relationships of "e_system_alert_types" +""" +type e_system_alert_types { + description: String! + value: String! +} + +""" +aggregated selection of "e_system_alert_types" +""" +type e_system_alert_types_aggregate { + aggregate: e_system_alert_types_aggregate_fields + nodes: [e_system_alert_types!]! +} + +""" +aggregate fields of "e_system_alert_types" +""" +type e_system_alert_types_aggregate_fields { + count(columns: [e_system_alert_types_select_column!], distinct: Boolean): Int! + max: e_system_alert_types_max_fields + min: e_system_alert_types_min_fields +} + +""" +Boolean expression to filter rows from the table "e_system_alert_types". All fields are combined with a logical 'AND'. +""" +input e_system_alert_types_bool_exp { + _and: [e_system_alert_types_bool_exp!] + _not: e_system_alert_types_bool_exp + _or: [e_system_alert_types_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_system_alert_types" +""" +enum e_system_alert_types_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_system_alert_types_pkey +} + +enum e_system_alert_types_enum { + """Critical""" + critical + + """Informational""" + info + + """Warning""" + warning +} + +""" +Boolean expression to compare columns of type "e_system_alert_types_enum". All fields are combined with logical 'AND'. +""" +input e_system_alert_types_enum_comparison_exp { + _eq: e_system_alert_types_enum + _in: [e_system_alert_types_enum!] + _is_null: Boolean + _neq: e_system_alert_types_enum + _nin: [e_system_alert_types_enum!] +} + +""" +input type for inserting data into table "e_system_alert_types" +""" +input e_system_alert_types_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_system_alert_types_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_system_alert_types_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_system_alert_types" +""" +type e_system_alert_types_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_system_alert_types!]! +} + +""" +on_conflict condition type for table "e_system_alert_types" +""" +input 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 +} + +"""Ordering options when selecting data from "e_system_alert_types".""" +input e_system_alert_types_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_system_alert_types""" +input e_system_alert_types_pk_columns_input { + value: String! +} + +""" +select columns of table "e_system_alert_types" +""" +enum e_system_alert_types_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_system_alert_types" +""" +input e_system_alert_types_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_system_alert_types" +""" +input e_system_alert_types_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_system_alert_types_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_system_alert_types_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_system_alert_types" +""" +enum e_system_alert_types_update_column { + """column name""" + description + + """column name""" + value +} + +input e_system_alert_types_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_system_alert_types_set_input + + """filter the rows which have to be updated""" + where: e_system_alert_types_bool_exp! +} + +""" +columns and relationships of "e_team_roles" +""" +type e_team_roles { + description: String! + + """An array relationship""" + team_rosters( + """distinct select on columns""" + distinct_on: [team_roster_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: [team_roster_order_by!] + + """filter the rows returned""" + where: team_roster_bool_exp + ): [team_roster!]! + + """An aggregate relationship""" + team_rosters_aggregate( + """distinct select on columns""" + distinct_on: [team_roster_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: [team_roster_order_by!] + + """filter the rows returned""" + where: team_roster_bool_exp + ): team_roster_aggregate! + + """An array relationship""" + tournament_team_rosters( + """distinct select on columns""" + distinct_on: [tournament_team_roster_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_team_roster_order_by!] + + """filter the rows returned""" + where: tournament_team_roster_bool_exp + ): [tournament_team_roster!]! + + """An aggregate relationship""" + tournament_team_rosters_aggregate( + """distinct select on columns""" + distinct_on: [tournament_team_roster_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_team_roster_order_by!] + + """filter the rows returned""" + where: tournament_team_roster_bool_exp + ): tournament_team_roster_aggregate! + value: String! +} + +""" +aggregated selection of "e_team_roles" +""" +type e_team_roles_aggregate { + aggregate: e_team_roles_aggregate_fields + nodes: [e_team_roles!]! +} + +""" +aggregate fields of "e_team_roles" +""" +type e_team_roles_aggregate_fields { + count(columns: [e_team_roles_select_column!], distinct: Boolean): Int! + max: e_team_roles_max_fields + min: e_team_roles_min_fields +} + +""" +Boolean expression to filter rows from the table "e_team_roles". All fields are combined with a logical 'AND'. +""" +input e_team_roles_bool_exp { + _and: [e_team_roles_bool_exp!] + _not: e_team_roles_bool_exp + _or: [e_team_roles_bool_exp!] + description: String_comparison_exp + team_rosters: team_roster_bool_exp + team_rosters_aggregate: team_roster_aggregate_bool_exp + tournament_team_rosters: tournament_team_roster_bool_exp + tournament_team_rosters_aggregate: tournament_team_roster_aggregate_bool_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_team_roles" +""" +enum e_team_roles_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_team_roles_pkey +} + +enum e_team_roles_enum { + """Administrator""" + Admin + + """Ability Invite / Add Players""" + Invite + + """Basic Membership""" + Member +} + +""" +Boolean expression to compare columns of type "e_team_roles_enum". All fields are combined with logical 'AND'. +""" +input e_team_roles_enum_comparison_exp { + _eq: e_team_roles_enum + _in: [e_team_roles_enum!] + _is_null: Boolean + _neq: e_team_roles_enum + _nin: [e_team_roles_enum!] +} + +""" +input type for inserting data into table "e_team_roles" +""" +input e_team_roles_insert_input { + description: String + team_rosters: team_roster_arr_rel_insert_input + tournament_team_rosters: tournament_team_roster_arr_rel_insert_input + value: String +} + +"""aggregate max on columns""" +type e_team_roles_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_team_roles_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_team_roles" +""" +type e_team_roles_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_team_roles!]! +} + +""" +input type for inserting object relation for remote table "e_team_roles" +""" +input e_team_roles_obj_rel_insert_input { + data: e_team_roles_insert_input! + + """upsert condition""" + on_conflict: e_team_roles_on_conflict +} + +""" +on_conflict condition type for table "e_team_roles" +""" +input e_team_roles_on_conflict { + constraint: e_team_roles_constraint! + update_columns: [e_team_roles_update_column!]! = [] + where: e_team_roles_bool_exp +} + +"""Ordering options when selecting data from "e_team_roles".""" +input e_team_roles_order_by { + description: order_by + team_rosters_aggregate: team_roster_aggregate_order_by + tournament_team_rosters_aggregate: tournament_team_roster_aggregate_order_by + value: order_by +} + +"""primary key columns input for table: e_team_roles""" +input e_team_roles_pk_columns_input { + value: String! +} + +""" +select columns of table "e_team_roles" +""" +enum e_team_roles_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_team_roles" +""" +input e_team_roles_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_team_roles" +""" +input e_team_roles_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_team_roles_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_team_roles_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_team_roles" +""" +enum e_team_roles_update_column { + """column name""" + description + + """column name""" + value +} + +input e_team_roles_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_team_roles_set_input + + """filter the rows which have to be updated""" + where: e_team_roles_bool_exp! +} + +""" +columns and relationships of "e_team_roster_statuses" +""" +type e_team_roster_statuses { + description: String! + value: String! +} + +""" +aggregated selection of "e_team_roster_statuses" +""" +type e_team_roster_statuses_aggregate { + aggregate: e_team_roster_statuses_aggregate_fields + nodes: [e_team_roster_statuses!]! +} + +""" +aggregate fields of "e_team_roster_statuses" +""" +type e_team_roster_statuses_aggregate_fields { + count(columns: [e_team_roster_statuses_select_column!], distinct: Boolean): Int! + max: e_team_roster_statuses_max_fields + min: e_team_roster_statuses_min_fields +} + +""" +Boolean expression to filter rows from the table "e_team_roster_statuses". All fields are combined with a logical 'AND'. +""" +input e_team_roster_statuses_bool_exp { + _and: [e_team_roster_statuses_bool_exp!] + _not: e_team_roster_statuses_bool_exp + _or: [e_team_roster_statuses_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_team_roster_statuses" +""" +enum e_team_roster_statuses_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_team_roster_statuses_pkey +} + +enum e_team_roster_statuses_enum { + """Benched""" + Benched + + """Starter""" + Starter + + """Substitute""" + Substitute +} + +""" +Boolean expression to compare columns of type "e_team_roster_statuses_enum". All fields are combined with logical 'AND'. +""" +input e_team_roster_statuses_enum_comparison_exp { + _eq: e_team_roster_statuses_enum + _in: [e_team_roster_statuses_enum!] + _is_null: Boolean + _neq: e_team_roster_statuses_enum + _nin: [e_team_roster_statuses_enum!] +} + +""" +input type for inserting data into table "e_team_roster_statuses" +""" +input e_team_roster_statuses_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_team_roster_statuses_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_team_roster_statuses_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_team_roster_statuses" +""" +type e_team_roster_statuses_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_team_roster_statuses!]! +} + +""" +on_conflict condition type for table "e_team_roster_statuses" +""" +input 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 +} + +"""Ordering options when selecting data from "e_team_roster_statuses".""" +input e_team_roster_statuses_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_team_roster_statuses""" +input e_team_roster_statuses_pk_columns_input { + value: String! +} + +""" +select columns of table "e_team_roster_statuses" +""" +enum e_team_roster_statuses_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_team_roster_statuses" +""" +input e_team_roster_statuses_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_team_roster_statuses" +""" +input 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 +} + +"""Initial value of the column from where the streaming should start""" +input e_team_roster_statuses_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_team_roster_statuses" +""" +enum e_team_roster_statuses_update_column { + """column name""" + description + + """column name""" + value +} + +input e_team_roster_statuses_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_team_roster_statuses_set_input + + """filter the rows which have to be updated""" + where: e_team_roster_statuses_bool_exp! +} + +""" +columns and relationships of "e_timeout_settings" +""" +type e_timeout_settings { + description: String! + value: String! +} + +""" +aggregated selection of "e_timeout_settings" +""" +type e_timeout_settings_aggregate { + aggregate: e_timeout_settings_aggregate_fields + nodes: [e_timeout_settings!]! +} + +""" +aggregate fields of "e_timeout_settings" +""" +type e_timeout_settings_aggregate_fields { + count(columns: [e_timeout_settings_select_column!], distinct: Boolean): Int! + max: e_timeout_settings_max_fields + min: e_timeout_settings_min_fields +} + +""" +Boolean expression to filter rows from the table "e_timeout_settings". All fields are combined with a logical 'AND'. +""" +input e_timeout_settings_bool_exp { + _and: [e_timeout_settings_bool_exp!] + _not: e_timeout_settings_bool_exp + _or: [e_timeout_settings_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_timeout_settings" +""" +enum e_timeout_settings_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_timeout_settings_pkey +} + +enum e_timeout_settings_enum { + """Admins Only""" + Admin + + """Coach Only""" + Coach + + """Coach And Captains""" + CoachAndCaptains + + """Coach And Players""" + CoachAndPlayers +} + +""" +Boolean expression to compare columns of type "e_timeout_settings_enum". All fields are combined with logical 'AND'. +""" +input e_timeout_settings_enum_comparison_exp { + _eq: e_timeout_settings_enum + _in: [e_timeout_settings_enum!] + _is_null: Boolean + _neq: e_timeout_settings_enum + _nin: [e_timeout_settings_enum!] +} + +""" +input type for inserting data into table "e_timeout_settings" +""" +input e_timeout_settings_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_timeout_settings_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_timeout_settings_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_timeout_settings" +""" +type e_timeout_settings_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_timeout_settings!]! +} + +""" +on_conflict condition type for table "e_timeout_settings" +""" +input e_timeout_settings_on_conflict { + constraint: e_timeout_settings_constraint! + update_columns: [e_timeout_settings_update_column!]! = [] + where: e_timeout_settings_bool_exp +} + +"""Ordering options when selecting data from "e_timeout_settings".""" +input e_timeout_settings_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_timeout_settings""" +input e_timeout_settings_pk_columns_input { + value: String! +} + +""" +select columns of table "e_timeout_settings" +""" +enum e_timeout_settings_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_timeout_settings" +""" +input e_timeout_settings_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_timeout_settings" +""" +input 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 +} + +"""Initial value of the column from where the streaming should start""" +input e_timeout_settings_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_timeout_settings" +""" +enum e_timeout_settings_update_column { + """column name""" + description + + """column name""" + value +} + +input e_timeout_settings_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_timeout_settings_set_input + + """filter the rows which have to be updated""" + where: e_timeout_settings_bool_exp! +} + +""" +columns and relationships of "e_tournament_categories" +""" +type e_tournament_categories { + description: String! + + """An array relationship""" + tournament_categories( + """distinct select on columns""" + distinct_on: [tournament_categories_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_categories_order_by!] + + """filter the rows returned""" + where: tournament_categories_bool_exp + ): [tournament_categories!]! + + """An aggregate relationship""" + tournament_categories_aggregate( + """distinct select on columns""" + distinct_on: [tournament_categories_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_categories_order_by!] + + """filter the rows returned""" + where: tournament_categories_bool_exp + ): tournament_categories_aggregate! + value: String! +} + +""" +aggregated selection of "e_tournament_categories" +""" +type e_tournament_categories_aggregate { + aggregate: e_tournament_categories_aggregate_fields + nodes: [e_tournament_categories!]! +} + +""" +aggregate fields of "e_tournament_categories" +""" +type e_tournament_categories_aggregate_fields { + count(columns: [e_tournament_categories_select_column!], distinct: Boolean): Int! + max: e_tournament_categories_max_fields + min: e_tournament_categories_min_fields +} + +""" +Boolean expression to filter rows from the table "e_tournament_categories". All fields are combined with a logical 'AND'. +""" +input e_tournament_categories_bool_exp { + _and: [e_tournament_categories_bool_exp!] + _not: e_tournament_categories_bool_exp + _or: [e_tournament_categories_bool_exp!] + description: String_comparison_exp + tournament_categories: tournament_categories_bool_exp + tournament_categories_aggregate: tournament_categories_aggregate_bool_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_tournament_categories" +""" +enum e_tournament_categories_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_tournament_categories_pkey +} + +enum e_tournament_categories_enum { + """LAN""" + LAN + + """League""" + League + + """Location Event""" + LocationEvent + + """Online Event""" + OnlineEvent +} + +""" +Boolean expression to compare columns of type "e_tournament_categories_enum". All fields are combined with logical 'AND'. +""" +input e_tournament_categories_enum_comparison_exp { + _eq: e_tournament_categories_enum + _in: [e_tournament_categories_enum!] + _is_null: Boolean + _neq: e_tournament_categories_enum + _nin: [e_tournament_categories_enum!] +} + +""" +input type for inserting data into table "e_tournament_categories" +""" +input e_tournament_categories_insert_input { + description: String + tournament_categories: tournament_categories_arr_rel_insert_input + value: String +} + +"""aggregate max on columns""" +type e_tournament_categories_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_tournament_categories_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_tournament_categories" +""" +type e_tournament_categories_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_tournament_categories!]! +} + +""" +input type for inserting object relation for remote table "e_tournament_categories" +""" +input e_tournament_categories_obj_rel_insert_input { + data: e_tournament_categories_insert_input! + + """upsert condition""" + on_conflict: e_tournament_categories_on_conflict +} + +""" +on_conflict condition type for table "e_tournament_categories" +""" +input e_tournament_categories_on_conflict { + constraint: e_tournament_categories_constraint! + update_columns: [e_tournament_categories_update_column!]! = [] + where: e_tournament_categories_bool_exp +} + +"""Ordering options when selecting data from "e_tournament_categories".""" +input e_tournament_categories_order_by { + description: order_by + tournament_categories_aggregate: tournament_categories_aggregate_order_by + value: order_by +} + +"""primary key columns input for table: e_tournament_categories""" +input e_tournament_categories_pk_columns_input { + value: String! +} + +""" +select columns of table "e_tournament_categories" +""" +enum e_tournament_categories_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_tournament_categories" +""" +input e_tournament_categories_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_tournament_categories" +""" +input e_tournament_categories_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_tournament_categories_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_tournament_categories_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_tournament_categories" +""" +enum e_tournament_categories_update_column { + """column name""" + description + + """column name""" + value +} + +input e_tournament_categories_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_tournament_categories_set_input + + """filter the rows which have to be updated""" + where: e_tournament_categories_bool_exp! +} + +""" +columns and relationships of "e_tournament_free_agent_statuses" +""" +type e_tournament_free_agent_statuses { + description: String! + + """An array relationship""" + tournament_free_agents( + """distinct select on columns""" + distinct_on: [tournament_free_agents_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_free_agents_order_by!] + + """filter the rows returned""" + where: tournament_free_agents_bool_exp + ): [tournament_free_agents!]! + + """An aggregate relationship""" + tournament_free_agents_aggregate( + """distinct select on columns""" + distinct_on: [tournament_free_agents_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_free_agents_order_by!] + + """filter the rows returned""" + where: tournament_free_agents_bool_exp + ): tournament_free_agents_aggregate! + value: String! +} + +""" +aggregated selection of "e_tournament_free_agent_statuses" +""" +type e_tournament_free_agent_statuses_aggregate { + aggregate: e_tournament_free_agent_statuses_aggregate_fields + nodes: [e_tournament_free_agent_statuses!]! +} + +""" +aggregate fields of "e_tournament_free_agent_statuses" +""" +type e_tournament_free_agent_statuses_aggregate_fields { + count(columns: [e_tournament_free_agent_statuses_select_column!], distinct: Boolean): Int! + max: e_tournament_free_agent_statuses_max_fields + min: e_tournament_free_agent_statuses_min_fields +} + +""" +Boolean expression to filter rows from the table "e_tournament_free_agent_statuses". All fields are combined with a logical 'AND'. +""" +input e_tournament_free_agent_statuses_bool_exp { + _and: [e_tournament_free_agent_statuses_bool_exp!] + _not: e_tournament_free_agent_statuses_bool_exp + _or: [e_tournament_free_agent_statuses_bool_exp!] + description: String_comparison_exp + tournament_free_agents: tournament_free_agents_bool_exp + tournament_free_agents_aggregate: tournament_free_agents_aggregate_bool_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_tournament_free_agent_statuses" +""" +enum e_tournament_free_agent_statuses_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_tournament_free_agent_statuses_pkey +} + +enum e_tournament_free_agent_statuses_enum { + """Placed on a drafted team""" + drafted + + """Signed up and waiting for the draft""" + registered + + """Did not make the cut; first in line if a slot opens""" + waitlisted + + """Left the free agent pool""" + withdrawn +} + +""" +Boolean expression to compare columns of type "e_tournament_free_agent_statuses_enum". All fields are combined with logical 'AND'. +""" +input e_tournament_free_agent_statuses_enum_comparison_exp { + _eq: e_tournament_free_agent_statuses_enum + _in: [e_tournament_free_agent_statuses_enum!] + _is_null: Boolean + _neq: e_tournament_free_agent_statuses_enum + _nin: [e_tournament_free_agent_statuses_enum!] +} + +""" +input type for inserting data into table "e_tournament_free_agent_statuses" +""" +input e_tournament_free_agent_statuses_insert_input { + description: String + tournament_free_agents: tournament_free_agents_arr_rel_insert_input + value: String +} + +"""aggregate max on columns""" +type e_tournament_free_agent_statuses_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_tournament_free_agent_statuses_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_tournament_free_agent_statuses" +""" +type e_tournament_free_agent_statuses_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_tournament_free_agent_statuses!]! +} + +""" +input type for inserting object relation for remote table "e_tournament_free_agent_statuses" +""" +input e_tournament_free_agent_statuses_obj_rel_insert_input { + data: e_tournament_free_agent_statuses_insert_input! + + """upsert condition""" + on_conflict: e_tournament_free_agent_statuses_on_conflict +} + +""" +on_conflict condition type for table "e_tournament_free_agent_statuses" +""" +input e_tournament_free_agent_statuses_on_conflict { + constraint: e_tournament_free_agent_statuses_constraint! + update_columns: [e_tournament_free_agent_statuses_update_column!]! = [] + where: e_tournament_free_agent_statuses_bool_exp +} + +""" +Ordering options when selecting data from "e_tournament_free_agent_statuses". +""" +input e_tournament_free_agent_statuses_order_by { + description: order_by + tournament_free_agents_aggregate: tournament_free_agents_aggregate_order_by + value: order_by +} + +"""primary key columns input for table: e_tournament_free_agent_statuses""" +input e_tournament_free_agent_statuses_pk_columns_input { + value: String! +} + +""" +select columns of table "e_tournament_free_agent_statuses" +""" +enum e_tournament_free_agent_statuses_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_tournament_free_agent_statuses" +""" +input e_tournament_free_agent_statuses_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_tournament_free_agent_statuses" +""" +input e_tournament_free_agent_statuses_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_tournament_free_agent_statuses_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_tournament_free_agent_statuses_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_tournament_free_agent_statuses" +""" +enum e_tournament_free_agent_statuses_update_column { + """column name""" + description + + """column name""" + value +} + +input e_tournament_free_agent_statuses_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_tournament_free_agent_statuses_set_input + + """filter the rows which have to be updated""" + where: e_tournament_free_agent_statuses_bool_exp! +} + +""" +columns and relationships of "e_tournament_registration_types" +""" +type e_tournament_registration_types { + description: String! + + """An array relationship""" + tournaments( + """distinct select on columns""" + distinct_on: [tournaments_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournaments_order_by!] + + """filter the rows returned""" + where: tournaments_bool_exp + ): [tournaments!]! + + """An aggregate relationship""" + tournaments_aggregate( + """distinct select on columns""" + distinct_on: [tournaments_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournaments_order_by!] + + """filter the rows returned""" + where: tournaments_bool_exp + ): tournaments_aggregate! + value: String! +} + +""" +aggregated selection of "e_tournament_registration_types" +""" +type e_tournament_registration_types_aggregate { + aggregate: e_tournament_registration_types_aggregate_fields + nodes: [e_tournament_registration_types!]! +} + +""" +aggregate fields of "e_tournament_registration_types" +""" +type e_tournament_registration_types_aggregate_fields { + count(columns: [e_tournament_registration_types_select_column!], distinct: Boolean): Int! + max: e_tournament_registration_types_max_fields + min: e_tournament_registration_types_min_fields +} + +""" +Boolean expression to filter rows from the table "e_tournament_registration_types". All fields are combined with a logical 'AND'. +""" +input e_tournament_registration_types_bool_exp { + _and: [e_tournament_registration_types_bool_exp!] + _not: e_tournament_registration_types_bool_exp + _or: [e_tournament_registration_types_bool_exp!] + description: String_comparison_exp + tournaments: tournaments_bool_exp + tournaments_aggregate: tournaments_aggregate_bool_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_tournament_registration_types" +""" +enum e_tournament_registration_types_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_tournament_registration_types_pkey +} + +enum e_tournament_registration_types_enum { + """Pre-formed teams and individual free agents may both register""" + both + + """Only individual players may register; teams are drafted from the pool""" + free_agents + + """Only pre-formed teams may register""" + teams +} + +""" +Boolean expression to compare columns of type "e_tournament_registration_types_enum". All fields are combined with logical 'AND'. +""" +input e_tournament_registration_types_enum_comparison_exp { + _eq: e_tournament_registration_types_enum + _in: [e_tournament_registration_types_enum!] + _is_null: Boolean + _neq: e_tournament_registration_types_enum + _nin: [e_tournament_registration_types_enum!] +} + +""" +input type for inserting data into table "e_tournament_registration_types" +""" +input e_tournament_registration_types_insert_input { + description: String + tournaments: tournaments_arr_rel_insert_input + value: String +} + +"""aggregate max on columns""" +type e_tournament_registration_types_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_tournament_registration_types_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_tournament_registration_types" +""" +type e_tournament_registration_types_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_tournament_registration_types!]! +} + +""" +on_conflict condition type for table "e_tournament_registration_types" +""" +input e_tournament_registration_types_on_conflict { + constraint: e_tournament_registration_types_constraint! + update_columns: [e_tournament_registration_types_update_column!]! = [] + where: e_tournament_registration_types_bool_exp +} + +""" +Ordering options when selecting data from "e_tournament_registration_types". +""" +input e_tournament_registration_types_order_by { + description: order_by + tournaments_aggregate: tournaments_aggregate_order_by + value: order_by +} + +"""primary key columns input for table: e_tournament_registration_types""" +input e_tournament_registration_types_pk_columns_input { + value: String! +} + +""" +select columns of table "e_tournament_registration_types" +""" +enum e_tournament_registration_types_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_tournament_registration_types" +""" +input e_tournament_registration_types_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_tournament_registration_types" +""" +input e_tournament_registration_types_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_tournament_registration_types_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_tournament_registration_types_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_tournament_registration_types" +""" +enum e_tournament_registration_types_update_column { + """column name""" + description + + """column name""" + value +} + +input e_tournament_registration_types_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_tournament_registration_types_set_input + + """filter the rows which have to be updated""" + where: e_tournament_registration_types_bool_exp! +} + +""" +columns and relationships of "e_tournament_stage_types" +""" +type e_tournament_stage_types { + description: String! + + """An array relationship""" + tournament_stages( + """distinct select on columns""" + distinct_on: [tournament_stages_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_stages_order_by!] + + """filter the rows returned""" + where: tournament_stages_bool_exp + ): [tournament_stages!]! + + """An aggregate relationship""" + tournament_stages_aggregate( + """distinct select on columns""" + distinct_on: [tournament_stages_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_stages_order_by!] + + """filter the rows returned""" + where: tournament_stages_bool_exp + ): tournament_stages_aggregate! + value: String! +} + +""" +aggregated selection of "e_tournament_stage_types" +""" +type e_tournament_stage_types_aggregate { + aggregate: e_tournament_stage_types_aggregate_fields + nodes: [e_tournament_stage_types!]! +} + +""" +aggregate fields of "e_tournament_stage_types" +""" +type e_tournament_stage_types_aggregate_fields { + count(columns: [e_tournament_stage_types_select_column!], distinct: Boolean): Int! + max: e_tournament_stage_types_max_fields + min: e_tournament_stage_types_min_fields +} + +""" +Boolean expression to filter rows from the table "e_tournament_stage_types". All fields are combined with a logical 'AND'. +""" +input e_tournament_stage_types_bool_exp { + _and: [e_tournament_stage_types_bool_exp!] + _not: e_tournament_stage_types_bool_exp + _or: [e_tournament_stage_types_bool_exp!] + description: String_comparison_exp + tournament_stages: tournament_stages_bool_exp + tournament_stages_aggregate: tournament_stages_aggregate_bool_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_tournament_stage_types" +""" +enum e_tournament_stage_types_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_tournament_stage_types_pkey +} + +enum e_tournament_stage_types_enum { + """Double Elimination""" + DoubleElimination + + """Round Robin""" + RoundRobin + + """Single Elimination""" + SingleElimination + + """Swiss""" + Swiss +} + +""" +Boolean expression to compare columns of type "e_tournament_stage_types_enum". All fields are combined with logical 'AND'. +""" +input e_tournament_stage_types_enum_comparison_exp { + _eq: e_tournament_stage_types_enum + _in: [e_tournament_stage_types_enum!] + _is_null: Boolean + _neq: e_tournament_stage_types_enum + _nin: [e_tournament_stage_types_enum!] +} + +""" +input type for inserting data into table "e_tournament_stage_types" +""" +input e_tournament_stage_types_insert_input { + description: String + tournament_stages: tournament_stages_arr_rel_insert_input + value: String +} + +"""aggregate max on columns""" +type e_tournament_stage_types_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_tournament_stage_types_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_tournament_stage_types" +""" +type e_tournament_stage_types_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_tournament_stage_types!]! +} + +""" +input type for inserting object relation for remote table "e_tournament_stage_types" +""" +input 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 +} + +""" +on_conflict condition type for table "e_tournament_stage_types" +""" +input 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 +} + +"""Ordering options when selecting data from "e_tournament_stage_types".""" +input e_tournament_stage_types_order_by { + description: order_by + tournament_stages_aggregate: tournament_stages_aggregate_order_by + value: order_by +} + +"""primary key columns input for table: e_tournament_stage_types""" +input e_tournament_stage_types_pk_columns_input { + value: String! +} + +""" +select columns of table "e_tournament_stage_types" +""" +enum e_tournament_stage_types_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_tournament_stage_types" +""" +input e_tournament_stage_types_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_tournament_stage_types" +""" +input 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 +} + +"""Initial value of the column from where the streaming should start""" +input e_tournament_stage_types_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_tournament_stage_types" +""" +enum e_tournament_stage_types_update_column { + """column name""" + description + + """column name""" + value +} + +input e_tournament_stage_types_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_tournament_stage_types_set_input + + """filter the rows which have to be updated""" + where: e_tournament_stage_types_bool_exp! +} + +""" +columns and relationships of "e_tournament_status" +""" +type e_tournament_status { + description: String! + + """An array relationship""" + tournaments( + """distinct select on columns""" + distinct_on: [tournaments_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournaments_order_by!] + + """filter the rows returned""" + where: tournaments_bool_exp + ): [tournaments!]! + + """An aggregate relationship""" + tournaments_aggregate( + """distinct select on columns""" + distinct_on: [tournaments_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournaments_order_by!] + + """filter the rows returned""" + where: tournaments_bool_exp + ): tournaments_aggregate! + value: String! +} + +""" +aggregated selection of "e_tournament_status" +""" +type e_tournament_status_aggregate { + aggregate: e_tournament_status_aggregate_fields + nodes: [e_tournament_status!]! +} + +""" +aggregate fields of "e_tournament_status" +""" +type e_tournament_status_aggregate_fields { + count(columns: [e_tournament_status_select_column!], distinct: Boolean): Int! + max: e_tournament_status_max_fields + min: e_tournament_status_min_fields +} + +""" +Boolean expression to filter rows from the table "e_tournament_status". All fields are combined with a logical 'AND'. +""" +input e_tournament_status_bool_exp { + _and: [e_tournament_status_bool_exp!] + _not: e_tournament_status_bool_exp + _or: [e_tournament_status_bool_exp!] + description: String_comparison_exp + tournaments: tournaments_bool_exp + tournaments_aggregate: tournaments_aggregate_bool_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_tournament_status" +""" +enum e_tournament_status_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_tournament_status_pkey +} + +enum e_tournament_status_enum { + """Cancelled""" + Cancelled + + """Cancelled because it did not meet minimum number of teams""" + CancelledMinTeams + + """Check-in closed with teams missing; held for organizer review""" + CheckInReview + + """Finished""" + Finished + + """Live""" + Live + + """Paused""" + Paused + + """Registration Closed""" + RegistrationClosed + + """Registration Open""" + RegistrationOpen + + """Setup""" + Setup +} + +""" +Boolean expression to compare columns of type "e_tournament_status_enum". All fields are combined with logical 'AND'. +""" +input e_tournament_status_enum_comparison_exp { + _eq: e_tournament_status_enum + _in: [e_tournament_status_enum!] + _is_null: Boolean + _neq: e_tournament_status_enum + _nin: [e_tournament_status_enum!] +} + +""" +input type for inserting data into table "e_tournament_status" +""" +input e_tournament_status_insert_input { + description: String + tournaments: tournaments_arr_rel_insert_input + value: String +} + +"""aggregate max on columns""" +type e_tournament_status_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_tournament_status_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_tournament_status" +""" +type e_tournament_status_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_tournament_status!]! +} + +""" +input type for inserting object relation for remote table "e_tournament_status" +""" +input e_tournament_status_obj_rel_insert_input { + data: e_tournament_status_insert_input! + + """upsert condition""" + on_conflict: e_tournament_status_on_conflict +} + +""" +on_conflict condition type for table "e_tournament_status" +""" +input e_tournament_status_on_conflict { + constraint: e_tournament_status_constraint! + update_columns: [e_tournament_status_update_column!]! = [] + where: e_tournament_status_bool_exp +} + +"""Ordering options when selecting data from "e_tournament_status".""" +input e_tournament_status_order_by { + description: order_by + tournaments_aggregate: tournaments_aggregate_order_by + value: order_by +} + +"""primary key columns input for table: e_tournament_status""" +input e_tournament_status_pk_columns_input { + value: String! +} + +""" +select columns of table "e_tournament_status" +""" +enum e_tournament_status_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_tournament_status" +""" +input e_tournament_status_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_tournament_status" +""" +input 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 +} + +"""Initial value of the column from where the streaming should start""" +input e_tournament_status_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_tournament_status" +""" +enum e_tournament_status_update_column { + """column name""" + description + + """column name""" + value +} + +input e_tournament_status_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_tournament_status_set_input + + """filter the rows which have to be updated""" + where: e_tournament_status_bool_exp! +} + +""" +columns and relationships of "e_utility_practice_access" +""" +type e_utility_practice_access { + description: String! + + """An array relationship""" + utility_practice_sessions( + """distinct select on columns""" + distinct_on: [utility_practice_sessions_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: [utility_practice_sessions_order_by!] + + """filter the rows returned""" + where: utility_practice_sessions_bool_exp + ): [utility_practice_sessions!]! + + """An aggregate relationship""" + utility_practice_sessions_aggregate( + """distinct select on columns""" + distinct_on: [utility_practice_sessions_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: [utility_practice_sessions_order_by!] + + """filter the rows returned""" + where: utility_practice_sessions_bool_exp + ): utility_practice_sessions_aggregate! + value: String! +} + +""" +aggregated selection of "e_utility_practice_access" +""" +type e_utility_practice_access_aggregate { + aggregate: e_utility_practice_access_aggregate_fields + nodes: [e_utility_practice_access!]! +} + +""" +aggregate fields of "e_utility_practice_access" +""" +type e_utility_practice_access_aggregate_fields { + count(columns: [e_utility_practice_access_select_column!], distinct: Boolean): Int! + max: e_utility_practice_access_max_fields + min: e_utility_practice_access_min_fields +} + +""" +Boolean expression to filter rows from the table "e_utility_practice_access". All fields are combined with a logical 'AND'. +""" +input e_utility_practice_access_bool_exp { + _and: [e_utility_practice_access_bool_exp!] + _not: e_utility_practice_access_bool_exp + _or: [e_utility_practice_access_bool_exp!] + description: String_comparison_exp + utility_practice_sessions: utility_practice_sessions_bool_exp + utility_practice_sessions_aggregate: utility_practice_sessions_aggregate_bool_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_utility_practice_access" +""" +enum e_utility_practice_access_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_utility_practice_access_pkey +} + +enum e_utility_practice_access_enum { + """Friends of the host, their team, and invited players""" + Friends + + """Only invited players and the host's team""" + Invite + + """Anyone with the link can join""" + Open + + """Only the host""" + Private +} + +""" +Boolean expression to compare columns of type "e_utility_practice_access_enum". All fields are combined with logical 'AND'. +""" +input e_utility_practice_access_enum_comparison_exp { + _eq: e_utility_practice_access_enum + _in: [e_utility_practice_access_enum!] + _is_null: Boolean + _neq: e_utility_practice_access_enum + _nin: [e_utility_practice_access_enum!] +} + +""" +input type for inserting data into table "e_utility_practice_access" +""" +input e_utility_practice_access_insert_input { + description: String + utility_practice_sessions: utility_practice_sessions_arr_rel_insert_input + value: String +} + +"""aggregate max on columns""" +type e_utility_practice_access_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_utility_practice_access_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_utility_practice_access" +""" +type e_utility_practice_access_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_utility_practice_access!]! +} + +""" +on_conflict condition type for table "e_utility_practice_access" +""" +input e_utility_practice_access_on_conflict { + constraint: e_utility_practice_access_constraint! + update_columns: [e_utility_practice_access_update_column!]! = [] + where: e_utility_practice_access_bool_exp +} + +"""Ordering options when selecting data from "e_utility_practice_access".""" +input e_utility_practice_access_order_by { + description: order_by + utility_practice_sessions_aggregate: utility_practice_sessions_aggregate_order_by + value: order_by +} + +"""primary key columns input for table: e_utility_practice_access""" +input e_utility_practice_access_pk_columns_input { + value: String! +} + +""" +select columns of table "e_utility_practice_access" +""" +enum e_utility_practice_access_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_utility_practice_access" +""" +input e_utility_practice_access_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_utility_practice_access" +""" +input e_utility_practice_access_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_utility_practice_access_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_utility_practice_access_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_utility_practice_access" +""" +enum e_utility_practice_access_update_column { + """column name""" + description + + """column name""" + value +} + +input e_utility_practice_access_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_utility_practice_access_set_input + + """filter the rows which have to be updated""" + where: e_utility_practice_access_bool_exp! +} + +""" +columns and relationships of "e_utility_practice_statuses" +""" +type e_utility_practice_statuses { + description: String! + + """An array relationship""" + utility_practice_sessions( + """distinct select on columns""" + distinct_on: [utility_practice_sessions_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: [utility_practice_sessions_order_by!] + + """filter the rows returned""" + where: utility_practice_sessions_bool_exp + ): [utility_practice_sessions!]! + + """An aggregate relationship""" + utility_practice_sessions_aggregate( + """distinct select on columns""" + distinct_on: [utility_practice_sessions_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: [utility_practice_sessions_order_by!] + + """filter the rows returned""" + where: utility_practice_sessions_bool_exp + ): utility_practice_sessions_aggregate! + value: String! +} + +""" +aggregated selection of "e_utility_practice_statuses" +""" +type e_utility_practice_statuses_aggregate { + aggregate: e_utility_practice_statuses_aggregate_fields + nodes: [e_utility_practice_statuses!]! +} + +""" +aggregate fields of "e_utility_practice_statuses" +""" +type e_utility_practice_statuses_aggregate_fields { + count(columns: [e_utility_practice_statuses_select_column!], distinct: Boolean): Int! + max: e_utility_practice_statuses_max_fields + min: e_utility_practice_statuses_min_fields +} + +""" +Boolean expression to filter rows from the table "e_utility_practice_statuses". All fields are combined with a logical 'AND'. +""" +input e_utility_practice_statuses_bool_exp { + _and: [e_utility_practice_statuses_bool_exp!] + _not: e_utility_practice_statuses_bool_exp + _or: [e_utility_practice_statuses_bool_exp!] + description: String_comparison_exp + utility_practice_sessions: utility_practice_sessions_bool_exp + utility_practice_sessions_aggregate: utility_practice_sessions_aggregate_bool_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_utility_practice_statuses" +""" +enum e_utility_practice_statuses_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_utility_practice_statuses_pkey +} + +enum e_utility_practice_statuses_enum { + """Stopped normally""" + Ended + + """Never came up""" + Failed + + """Server is up and joinable""" + Ready + + """Waiting on a server""" + Starting +} + +""" +Boolean expression to compare columns of type "e_utility_practice_statuses_enum". All fields are combined with logical 'AND'. +""" +input e_utility_practice_statuses_enum_comparison_exp { + _eq: e_utility_practice_statuses_enum + _in: [e_utility_practice_statuses_enum!] + _is_null: Boolean + _neq: e_utility_practice_statuses_enum + _nin: [e_utility_practice_statuses_enum!] +} + +""" +input type for inserting data into table "e_utility_practice_statuses" +""" +input e_utility_practice_statuses_insert_input { + description: String + utility_practice_sessions: utility_practice_sessions_arr_rel_insert_input + value: String +} + +"""aggregate max on columns""" +type e_utility_practice_statuses_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_utility_practice_statuses_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_utility_practice_statuses" +""" +type e_utility_practice_statuses_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_utility_practice_statuses!]! +} + +""" +input type for inserting object relation for remote table "e_utility_practice_statuses" +""" +input e_utility_practice_statuses_obj_rel_insert_input { + data: e_utility_practice_statuses_insert_input! + + """upsert condition""" + on_conflict: e_utility_practice_statuses_on_conflict +} + +""" +on_conflict condition type for table "e_utility_practice_statuses" +""" +input e_utility_practice_statuses_on_conflict { + constraint: e_utility_practice_statuses_constraint! + update_columns: [e_utility_practice_statuses_update_column!]! = [] + where: e_utility_practice_statuses_bool_exp +} + +""" +Ordering options when selecting data from "e_utility_practice_statuses". +""" +input e_utility_practice_statuses_order_by { + description: order_by + utility_practice_sessions_aggregate: utility_practice_sessions_aggregate_order_by + value: order_by +} + +"""primary key columns input for table: e_utility_practice_statuses""" +input e_utility_practice_statuses_pk_columns_input { + value: String! +} + +""" +select columns of table "e_utility_practice_statuses" +""" +enum e_utility_practice_statuses_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_utility_practice_statuses" +""" +input e_utility_practice_statuses_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_utility_practice_statuses" +""" +input e_utility_practice_statuses_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_utility_practice_statuses_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_utility_practice_statuses_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_utility_practice_statuses" +""" +enum e_utility_practice_statuses_update_column { + """column name""" + description + + """column name""" + value +} + +input e_utility_practice_statuses_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_utility_practice_statuses_set_input + + """filter the rows which have to be updated""" + where: e_utility_practice_statuses_bool_exp! +} + +""" +columns and relationships of "e_utility_sources" +""" +type e_utility_sources { + description: String! + + """An array relationship""" + utility_lineups( + """distinct select on columns""" + distinct_on: [utility_lineups_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: [utility_lineups_order_by!] + + """filter the rows returned""" + where: utility_lineups_bool_exp + ): [utility_lineups!]! + + """An aggregate relationship""" + utility_lineups_aggregate( + """distinct select on columns""" + distinct_on: [utility_lineups_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: [utility_lineups_order_by!] + + """filter the rows returned""" + where: utility_lineups_bool_exp + ): utility_lineups_aggregate! + value: String! +} + +""" +aggregated selection of "e_utility_sources" +""" +type e_utility_sources_aggregate { + aggregate: e_utility_sources_aggregate_fields + nodes: [e_utility_sources!]! +} + +""" +aggregate fields of "e_utility_sources" +""" +type e_utility_sources_aggregate_fields { + count(columns: [e_utility_sources_select_column!], distinct: Boolean): Int! + max: e_utility_sources_max_fields + min: e_utility_sources_min_fields +} + +""" +Boolean expression to filter rows from the table "e_utility_sources". All fields are combined with a logical 'AND'. +""" +input e_utility_sources_bool_exp { + _and: [e_utility_sources_bool_exp!] + _not: e_utility_sources_bool_exp + _or: [e_utility_sources_bool_exp!] + description: String_comparison_exp + utility_lineups: utility_lineups_bool_exp + utility_lineups_aggregate: utility_lineups_aggregate_bool_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_utility_sources" +""" +enum e_utility_sources_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_utility_sources_pkey +} + +enum e_utility_sources_enum { + """Derived from a parsed match demo""" + demo + + """Placed by hand in the web editor""" + editor + + """Copied from another lineup in the library""" + fork + + """Imported from an external source""" + import + + """Recorded in game by the utility practice plugin""" + plugin +} + +""" +Boolean expression to compare columns of type "e_utility_sources_enum". All fields are combined with logical 'AND'. +""" +input e_utility_sources_enum_comparison_exp { + _eq: e_utility_sources_enum + _in: [e_utility_sources_enum!] + _is_null: Boolean + _neq: e_utility_sources_enum + _nin: [e_utility_sources_enum!] +} + +""" +input type for inserting data into table "e_utility_sources" +""" +input e_utility_sources_insert_input { + description: String + utility_lineups: utility_lineups_arr_rel_insert_input + value: String +} + +"""aggregate max on columns""" +type e_utility_sources_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_utility_sources_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_utility_sources" +""" +type e_utility_sources_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_utility_sources!]! +} + +""" +on_conflict condition type for table "e_utility_sources" +""" +input e_utility_sources_on_conflict { + constraint: e_utility_sources_constraint! + update_columns: [e_utility_sources_update_column!]! = [] + where: e_utility_sources_bool_exp +} + +"""Ordering options when selecting data from "e_utility_sources".""" +input e_utility_sources_order_by { + description: order_by + utility_lineups_aggregate: utility_lineups_aggregate_order_by + value: order_by +} + +"""primary key columns input for table: e_utility_sources""" +input e_utility_sources_pk_columns_input { + value: String! +} + +""" +select columns of table "e_utility_sources" +""" +enum e_utility_sources_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_utility_sources" +""" +input e_utility_sources_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_utility_sources" +""" +input e_utility_sources_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_utility_sources_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_utility_sources_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_utility_sources" +""" +enum e_utility_sources_update_column { + """column name""" + description + + """column name""" + value +} + +input e_utility_sources_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_utility_sources_set_input + + """filter the rows which have to be updated""" + where: e_utility_sources_bool_exp! +} + +""" +columns and relationships of "e_utility_techniques" +""" +type e_utility_techniques { + description: String! + + """An array relationship""" + utility_lineups( + """distinct select on columns""" + distinct_on: [utility_lineups_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: [utility_lineups_order_by!] + + """filter the rows returned""" + where: utility_lineups_bool_exp + ): [utility_lineups!]! + + """An aggregate relationship""" + utility_lineups_aggregate( + """distinct select on columns""" + distinct_on: [utility_lineups_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: [utility_lineups_order_by!] + + """filter the rows returned""" + where: utility_lineups_bool_exp + ): utility_lineups_aggregate! + value: String! +} + +""" +aggregated selection of "e_utility_techniques" +""" +type e_utility_techniques_aggregate { + aggregate: e_utility_techniques_aggregate_fields + nodes: [e_utility_techniques!]! +} + +""" +aggregate fields of "e_utility_techniques" +""" +type e_utility_techniques_aggregate_fields { + count(columns: [e_utility_techniques_select_column!], distinct: Boolean): Int! + max: e_utility_techniques_max_fields + min: e_utility_techniques_min_fields +} + +""" +Boolean expression to filter rows from the table "e_utility_techniques". All fields are combined with a logical 'AND'. +""" +input e_utility_techniques_bool_exp { + _and: [e_utility_techniques_bool_exp!] + _not: e_utility_techniques_bool_exp + _or: [e_utility_techniques_bool_exp!] + description: String_comparison_exp + utility_lineups: utility_lineups_bool_exp + utility_lineups_aggregate: utility_lineups_aggregate_bool_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_utility_techniques" +""" +enum e_utility_techniques_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_utility_techniques_pkey +} + +enum e_utility_techniques_enum { + """Crouched, standing still""" + Crouch + + """Crouched jump throw""" + CrouchJump + + """Jump throw from standstill""" + Jump + + """Running jump throw""" + RunJump + + """Running""" + Running + + """Standing still""" + Stationary + + """Walking jump throw""" + WalkJump + + """Holding walk""" + Walking +} + +""" +Boolean expression to compare columns of type "e_utility_techniques_enum". All fields are combined with logical 'AND'. +""" +input e_utility_techniques_enum_comparison_exp { + _eq: e_utility_techniques_enum + _in: [e_utility_techniques_enum!] + _is_null: Boolean + _neq: e_utility_techniques_enum + _nin: [e_utility_techniques_enum!] +} + +""" +input type for inserting data into table "e_utility_techniques" +""" +input e_utility_techniques_insert_input { + description: String + utility_lineups: utility_lineups_arr_rel_insert_input + value: String +} + +"""aggregate max on columns""" +type e_utility_techniques_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_utility_techniques_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_utility_techniques" +""" +type e_utility_techniques_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_utility_techniques!]! +} + +""" +on_conflict condition type for table "e_utility_techniques" +""" +input e_utility_techniques_on_conflict { + constraint: e_utility_techniques_constraint! + update_columns: [e_utility_techniques_update_column!]! = [] + where: e_utility_techniques_bool_exp +} + +"""Ordering options when selecting data from "e_utility_techniques".""" +input e_utility_techniques_order_by { + description: order_by + utility_lineups_aggregate: utility_lineups_aggregate_order_by + value: order_by +} + +"""primary key columns input for table: e_utility_techniques""" +input e_utility_techniques_pk_columns_input { + value: String! +} + +""" +select columns of table "e_utility_techniques" +""" +enum e_utility_techniques_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_utility_techniques" +""" +input e_utility_techniques_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_utility_techniques" +""" +input e_utility_techniques_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_utility_techniques_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_utility_techniques_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_utility_techniques" +""" +enum e_utility_techniques_update_column { + """column name""" + description + + """column name""" + value +} + +input e_utility_techniques_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_utility_techniques_set_input + + """filter the rows which have to be updated""" + where: e_utility_techniques_bool_exp! +} + +""" +columns and relationships of "e_utility_throw_strengths" +""" +type e_utility_throw_strengths { + description: String! + + """An array relationship""" + utility_lineups( + """distinct select on columns""" + distinct_on: [utility_lineups_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: [utility_lineups_order_by!] + + """filter the rows returned""" + where: utility_lineups_bool_exp + ): [utility_lineups!]! + + """An aggregate relationship""" + utility_lineups_aggregate( + """distinct select on columns""" + distinct_on: [utility_lineups_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: [utility_lineups_order_by!] + + """filter the rows returned""" + where: utility_lineups_bool_exp + ): utility_lineups_aggregate! + value: String! +} + +""" +aggregated selection of "e_utility_throw_strengths" +""" +type e_utility_throw_strengths_aggregate { + aggregate: e_utility_throw_strengths_aggregate_fields + nodes: [e_utility_throw_strengths!]! +} + +""" +aggregate fields of "e_utility_throw_strengths" +""" +type e_utility_throw_strengths_aggregate_fields { + count(columns: [e_utility_throw_strengths_select_column!], distinct: Boolean): Int! + max: e_utility_throw_strengths_max_fields + min: e_utility_throw_strengths_min_fields +} + +""" +Boolean expression to filter rows from the table "e_utility_throw_strengths". All fields are combined with a logical 'AND'. +""" +input e_utility_throw_strengths_bool_exp { + _and: [e_utility_throw_strengths_bool_exp!] + _not: e_utility_throw_strengths_bool_exp + _or: [e_utility_throw_strengths_bool_exp!] + description: String_comparison_exp + utility_lineups: utility_lineups_bool_exp + utility_lineups_aggregate: utility_lineups_aggregate_bool_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_utility_throw_strengths" +""" +enum e_utility_throw_strengths_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_utility_throw_strengths_pkey +} + +enum e_utility_throw_strengths_enum { + """Right click""" + Drop + + """Left click""" + Full + + """Left and right click together""" + Half +} + +""" +Boolean expression to compare columns of type "e_utility_throw_strengths_enum". All fields are combined with logical 'AND'. +""" +input e_utility_throw_strengths_enum_comparison_exp { + _eq: e_utility_throw_strengths_enum + _in: [e_utility_throw_strengths_enum!] + _is_null: Boolean + _neq: e_utility_throw_strengths_enum + _nin: [e_utility_throw_strengths_enum!] +} + +""" +input type for inserting data into table "e_utility_throw_strengths" +""" +input e_utility_throw_strengths_insert_input { + description: String + utility_lineups: utility_lineups_arr_rel_insert_input + value: String +} + +"""aggregate max on columns""" +type e_utility_throw_strengths_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_utility_throw_strengths_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_utility_throw_strengths" +""" +type e_utility_throw_strengths_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_utility_throw_strengths!]! +} + +""" +on_conflict condition type for table "e_utility_throw_strengths" +""" +input e_utility_throw_strengths_on_conflict { + constraint: e_utility_throw_strengths_constraint! + update_columns: [e_utility_throw_strengths_update_column!]! = [] + where: e_utility_throw_strengths_bool_exp +} + +"""Ordering options when selecting data from "e_utility_throw_strengths".""" +input e_utility_throw_strengths_order_by { + description: order_by + utility_lineups_aggregate: utility_lineups_aggregate_order_by + value: order_by +} + +"""primary key columns input for table: e_utility_throw_strengths""" +input e_utility_throw_strengths_pk_columns_input { + value: String! +} + +""" +select columns of table "e_utility_throw_strengths" +""" +enum e_utility_throw_strengths_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_utility_throw_strengths" +""" +input e_utility_throw_strengths_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_utility_throw_strengths" +""" +input e_utility_throw_strengths_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_utility_throw_strengths_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_utility_throw_strengths_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_utility_throw_strengths" +""" +enum e_utility_throw_strengths_update_column { + """column name""" + description + + """column name""" + value +} + +input e_utility_throw_strengths_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_utility_throw_strengths_set_input + + """filter the rows which have to be updated""" + where: e_utility_throw_strengths_bool_exp! +} + +""" +columns and relationships of "e_utility_types" +""" +type e_utility_types { + description: String! + + """An array relationship""" + player_utilities( + """distinct select on columns""" + distinct_on: [player_utility_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: [player_utility_order_by!] + + """filter the rows returned""" + where: player_utility_bool_exp + ): [player_utility!]! + + """An aggregate relationship""" + player_utilities_aggregate( + """distinct select on columns""" + distinct_on: [player_utility_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: [player_utility_order_by!] + + """filter the rows returned""" + where: player_utility_bool_exp + ): player_utility_aggregate! + value: String! +} + +""" +aggregated selection of "e_utility_types" +""" +type e_utility_types_aggregate { + aggregate: e_utility_types_aggregate_fields + nodes: [e_utility_types!]! +} + +""" +aggregate fields of "e_utility_types" +""" +type e_utility_types_aggregate_fields { + count(columns: [e_utility_types_select_column!], distinct: Boolean): Int! + max: e_utility_types_max_fields + min: e_utility_types_min_fields +} + +""" +Boolean expression to filter rows from the table "e_utility_types". All fields are combined with a logical 'AND'. +""" +input e_utility_types_bool_exp { + _and: [e_utility_types_bool_exp!] + _not: e_utility_types_bool_exp + _or: [e_utility_types_bool_exp!] + description: String_comparison_exp + player_utilities: player_utility_bool_exp + player_utilities_aggregate: player_utility_aggregate_bool_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_utility_types" +""" +enum e_utility_types_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_utility_types_pkey +} + +enum e_utility_types_enum { + """Decoy""" + Decoy + + """Flash""" + Flash + + """HighExplosive""" + HighExplosive + + """Molotov""" + Molotov + + """Smoke""" + Smoke +} + +""" +Boolean expression to compare columns of type "e_utility_types_enum". All fields are combined with logical 'AND'. +""" +input e_utility_types_enum_comparison_exp { + _eq: e_utility_types_enum + _in: [e_utility_types_enum!] + _is_null: Boolean + _neq: e_utility_types_enum + _nin: [e_utility_types_enum!] +} + +""" +input type for inserting data into table "e_utility_types" +""" +input e_utility_types_insert_input { + description: String + player_utilities: player_utility_arr_rel_insert_input + value: String +} + +"""aggregate max on columns""" +type e_utility_types_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_utility_types_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_utility_types" +""" +type e_utility_types_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_utility_types!]! +} + +""" +on_conflict condition type for table "e_utility_types" +""" +input e_utility_types_on_conflict { + constraint: e_utility_types_constraint! + update_columns: [e_utility_types_update_column!]! = [] + where: e_utility_types_bool_exp +} + +"""Ordering options when selecting data from "e_utility_types".""" +input e_utility_types_order_by { + description: order_by + player_utilities_aggregate: player_utility_aggregate_order_by + value: order_by +} + +"""primary key columns input for table: e_utility_types""" +input e_utility_types_pk_columns_input { + value: String! +} + +""" +select columns of table "e_utility_types" +""" +enum e_utility_types_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_utility_types" +""" +input e_utility_types_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_utility_types" +""" +input 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 +} + +"""Initial value of the column from where the streaming should start""" +input e_utility_types_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_utility_types" +""" +enum e_utility_types_update_column { + """column name""" + description + + """column name""" + value +} + +input e_utility_types_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_utility_types_set_input + + """filter the rows which have to be updated""" + where: e_utility_types_bool_exp! +} + +""" +columns and relationships of "e_utility_visibility" +""" +type e_utility_visibility { + description: String! + + """An array relationship""" + utility_lineups( + """distinct select on columns""" + distinct_on: [utility_lineups_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: [utility_lineups_order_by!] + + """filter the rows returned""" + where: utility_lineups_bool_exp + ): [utility_lineups!]! + + """An aggregate relationship""" + utility_lineups_aggregate( + """distinct select on columns""" + distinct_on: [utility_lineups_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: [utility_lineups_order_by!] + + """filter the rows returned""" + where: utility_lineups_bool_exp + ): utility_lineups_aggregate! + value: String! +} + +""" +aggregated selection of "e_utility_visibility" +""" +type e_utility_visibility_aggregate { + aggregate: e_utility_visibility_aggregate_fields + nodes: [e_utility_visibility!]! +} + +""" +aggregate fields of "e_utility_visibility" +""" +type e_utility_visibility_aggregate_fields { + count(columns: [e_utility_visibility_select_column!], distinct: Boolean): Int! + max: e_utility_visibility_max_fields + min: e_utility_visibility_min_fields +} + +""" +Boolean expression to filter rows from the table "e_utility_visibility". All fields are combined with a logical 'AND'. +""" +input e_utility_visibility_bool_exp { + _and: [e_utility_visibility_bool_exp!] + _not: e_utility_visibility_bool_exp + _or: [e_utility_visibility_bool_exp!] + description: String_comparison_exp + utility_lineups: utility_lineups_bool_exp + utility_lineups_aggregate: utility_lineups_aggregate_bool_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_utility_visibility" +""" +enum e_utility_visibility_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_utility_visibility_pkey +} + +enum e_utility_visibility_enum { + """Only the author""" + Private + + """Anyone""" + Public + + """The author and their team""" + Team +} + +""" +Boolean expression to compare columns of type "e_utility_visibility_enum". All fields are combined with logical 'AND'. +""" +input e_utility_visibility_enum_comparison_exp { + _eq: e_utility_visibility_enum + _in: [e_utility_visibility_enum!] + _is_null: Boolean + _neq: e_utility_visibility_enum + _nin: [e_utility_visibility_enum!] +} + +""" +input type for inserting data into table "e_utility_visibility" +""" +input e_utility_visibility_insert_input { + description: String + utility_lineups: utility_lineups_arr_rel_insert_input + value: String +} + +"""aggregate max on columns""" +type e_utility_visibility_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_utility_visibility_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_utility_visibility" +""" +type e_utility_visibility_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_utility_visibility!]! +} + +""" +on_conflict condition type for table "e_utility_visibility" +""" +input e_utility_visibility_on_conflict { + constraint: e_utility_visibility_constraint! + update_columns: [e_utility_visibility_update_column!]! = [] + where: e_utility_visibility_bool_exp +} + +"""Ordering options when selecting data from "e_utility_visibility".""" +input e_utility_visibility_order_by { + description: order_by + utility_lineups_aggregate: utility_lineups_aggregate_order_by + value: order_by +} + +"""primary key columns input for table: e_utility_visibility""" +input e_utility_visibility_pk_columns_input { + value: String! +} + +""" +select columns of table "e_utility_visibility" +""" +enum e_utility_visibility_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_utility_visibility" +""" +input e_utility_visibility_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_utility_visibility" +""" +input e_utility_visibility_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_utility_visibility_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_utility_visibility_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_utility_visibility" +""" +enum e_utility_visibility_update_column { + """column name""" + description + + """column name""" + value +} + +input e_utility_visibility_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_utility_visibility_set_input + + """filter the rows which have to be updated""" + where: e_utility_visibility_bool_exp! +} + +""" +columns and relationships of "e_veto_pick_types" +""" +type e_veto_pick_types { + description: String! + + """An array relationship""" + match_veto_picks( + """distinct select on columns""" + distinct_on: [match_map_veto_picks_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_map_veto_picks_order_by!] + + """filter the rows returned""" + where: match_map_veto_picks_bool_exp + ): [match_map_veto_picks!]! + + """An aggregate relationship""" + match_veto_picks_aggregate( + """distinct select on columns""" + distinct_on: [match_map_veto_picks_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_map_veto_picks_order_by!] + + """filter the rows returned""" + where: match_map_veto_picks_bool_exp + ): match_map_veto_picks_aggregate! + value: String! +} + +""" +aggregated selection of "e_veto_pick_types" +""" +type e_veto_pick_types_aggregate { + aggregate: e_veto_pick_types_aggregate_fields + nodes: [e_veto_pick_types!]! +} + +""" +aggregate fields of "e_veto_pick_types" +""" +type e_veto_pick_types_aggregate_fields { + count(columns: [e_veto_pick_types_select_column!], distinct: Boolean): Int! + max: e_veto_pick_types_max_fields + min: e_veto_pick_types_min_fields +} + +""" +Boolean expression to filter rows from the table "e_veto_pick_types". All fields are combined with a logical 'AND'. +""" +input e_veto_pick_types_bool_exp { + _and: [e_veto_pick_types_bool_exp!] + _not: e_veto_pick_types_bool_exp + _or: [e_veto_pick_types_bool_exp!] + description: String_comparison_exp + match_veto_picks: match_map_veto_picks_bool_exp + match_veto_picks_aggregate: match_map_veto_picks_aggregate_bool_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_veto_pick_types" +""" +enum e_veto_pick_types_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_veto_pick_type_pkey +} + +enum e_veto_pick_types_enum { + """Ban""" + Ban + + """Decider""" + Decider + + """Pick""" + Pick + + """Side""" + Side +} + +""" +Boolean expression to compare columns of type "e_veto_pick_types_enum". All fields are combined with logical 'AND'. +""" +input e_veto_pick_types_enum_comparison_exp { + _eq: e_veto_pick_types_enum + _in: [e_veto_pick_types_enum!] + _is_null: Boolean + _neq: e_veto_pick_types_enum + _nin: [e_veto_pick_types_enum!] +} + +""" +input type for inserting data into table "e_veto_pick_types" +""" +input e_veto_pick_types_insert_input { + description: String + match_veto_picks: match_map_veto_picks_arr_rel_insert_input + value: String +} + +"""aggregate max on columns""" +type e_veto_pick_types_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_veto_pick_types_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_veto_pick_types" +""" +type e_veto_pick_types_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_veto_pick_types!]! +} + +""" +on_conflict condition type for table "e_veto_pick_types" +""" +input e_veto_pick_types_on_conflict { + constraint: e_veto_pick_types_constraint! + update_columns: [e_veto_pick_types_update_column!]! = [] + where: e_veto_pick_types_bool_exp +} + +"""Ordering options when selecting data from "e_veto_pick_types".""" +input e_veto_pick_types_order_by { + description: order_by + match_veto_picks_aggregate: match_map_veto_picks_aggregate_order_by + value: order_by +} + +"""primary key columns input for table: e_veto_pick_types""" +input e_veto_pick_types_pk_columns_input { + value: String! +} + +""" +select columns of table "e_veto_pick_types" +""" +enum e_veto_pick_types_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_veto_pick_types" +""" +input e_veto_pick_types_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_veto_pick_types" +""" +input e_veto_pick_types_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_veto_pick_types_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_veto_pick_types_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_veto_pick_types" +""" +enum e_veto_pick_types_update_column { + """column name""" + description + + """column name""" + value +} + +input e_veto_pick_types_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_veto_pick_types_set_input + + """filter the rows which have to be updated""" + where: e_veto_pick_types_bool_exp! +} + +""" +columns and relationships of "e_winning_reasons" +""" +type e_winning_reasons { + description: String! + value: String! +} + +""" +aggregated selection of "e_winning_reasons" +""" +type e_winning_reasons_aggregate { + aggregate: e_winning_reasons_aggregate_fields + nodes: [e_winning_reasons!]! +} + +""" +aggregate fields of "e_winning_reasons" +""" +type e_winning_reasons_aggregate_fields { + count(columns: [e_winning_reasons_select_column!], distinct: Boolean): Int! + max: e_winning_reasons_max_fields + min: e_winning_reasons_min_fields +} + +""" +Boolean expression to filter rows from the table "e_winning_reasons". All fields are combined with a logical 'AND'. +""" +input e_winning_reasons_bool_exp { + _and: [e_winning_reasons_bool_exp!] + _not: e_winning_reasons_bool_exp + _or: [e_winning_reasons_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_winning_reasons" +""" +enum e_winning_reasons_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_winning_reasons_pkey +} + +enum e_winning_reasons_enum { + """Bomb Defused""" + BombDefused + + """Bomb Exploded""" + BombExploded + + """CTs Win""" + CTsWin + + """Terrorists Win""" + TerroristsWin + + """Time Ran Out""" + TimeRanOut + + """Unknown""" + Unknown +} + +""" +Boolean expression to compare columns of type "e_winning_reasons_enum". All fields are combined with logical 'AND'. +""" +input e_winning_reasons_enum_comparison_exp { + _eq: e_winning_reasons_enum + _in: [e_winning_reasons_enum!] + _is_null: Boolean + _neq: e_winning_reasons_enum + _nin: [e_winning_reasons_enum!] +} + +""" +input type for inserting data into table "e_winning_reasons" +""" +input e_winning_reasons_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_winning_reasons_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_winning_reasons_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_winning_reasons" +""" +type e_winning_reasons_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_winning_reasons!]! +} + +""" +on_conflict condition type for table "e_winning_reasons" +""" +input e_winning_reasons_on_conflict { + constraint: e_winning_reasons_constraint! + update_columns: [e_winning_reasons_update_column!]! = [] + where: e_winning_reasons_bool_exp +} + +"""Ordering options when selecting data from "e_winning_reasons".""" +input e_winning_reasons_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_winning_reasons""" +input e_winning_reasons_pk_columns_input { + value: String! +} + +""" +select columns of table "e_winning_reasons" +""" +enum e_winning_reasons_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_winning_reasons" +""" +input e_winning_reasons_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_winning_reasons" +""" +input e_winning_reasons_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_winning_reasons_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_winning_reasons_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_winning_reasons" +""" +enum e_winning_reasons_update_column { + """column name""" + description + + """column name""" + value +} + +input e_winning_reasons_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_winning_reasons_set_input + + """filter the rows which have to be updated""" + where: e_winning_reasons_bool_exp! +} + +""" +columns and relationships of "event_match_links" +""" +type event_match_links { + created_at: timestamptz! + + """An object relationship""" + event: events! + event_id: uuid! + + """An object relationship""" + match: matches! + match_id: uuid! +} + +""" +aggregated selection of "event_match_links" +""" +type event_match_links_aggregate { + aggregate: event_match_links_aggregate_fields + nodes: [event_match_links!]! +} + +""" +aggregate fields of "event_match_links" +""" +type event_match_links_aggregate_fields { + count(columns: [event_match_links_select_column!], distinct: Boolean): Int! + max: event_match_links_max_fields + min: event_match_links_min_fields +} + +""" +Boolean expression to filter rows from the table "event_match_links". All fields are combined with a logical 'AND'. +""" +input event_match_links_bool_exp { + _and: [event_match_links_bool_exp!] + _not: event_match_links_bool_exp + _or: [event_match_links_bool_exp!] + created_at: timestamptz_comparison_exp + event: events_bool_exp + event_id: uuid_comparison_exp + match: matches_bool_exp + match_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "event_match_links" +""" +enum event_match_links_constraint { + """ + unique or primary key constraint on columns "event_id", "match_id" + """ + event_match_links_pkey +} + +""" +input type for inserting data into table "event_match_links" +""" +input event_match_links_insert_input { + created_at: timestamptz + event: events_obj_rel_insert_input + event_id: uuid + match: matches_obj_rel_insert_input + match_id: uuid +} + +"""aggregate max on columns""" +type event_match_links_max_fields { + created_at: timestamptz + event_id: uuid + match_id: uuid +} + +"""aggregate min on columns""" +type event_match_links_min_fields { + created_at: timestamptz + event_id: uuid + match_id: uuid +} + +""" +response of any mutation on the table "event_match_links" +""" +type event_match_links_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [event_match_links!]! +} + +""" +on_conflict condition type for table "event_match_links" +""" +input event_match_links_on_conflict { + constraint: event_match_links_constraint! + update_columns: [event_match_links_update_column!]! = [] + where: event_match_links_bool_exp +} + +"""Ordering options when selecting data from "event_match_links".""" +input event_match_links_order_by { + created_at: order_by + event: events_order_by + event_id: order_by + match: matches_order_by + match_id: order_by +} + +"""primary key columns input for table: event_match_links""" +input event_match_links_pk_columns_input { + event_id: uuid! + match_id: uuid! +} + +""" +select columns of table "event_match_links" +""" +enum event_match_links_select_column { + """column name""" + created_at + + """column name""" + event_id + + """column name""" + match_id +} + +""" +input type for updating data in table "event_match_links" +""" +input event_match_links_set_input { + created_at: timestamptz + event_id: uuid + match_id: uuid +} + +""" +Streaming cursor of the table "event_match_links" +""" +input event_match_links_stream_cursor_input { + """Stream column input with initial value""" + initial_value: event_match_links_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input event_match_links_stream_cursor_value_input { + created_at: timestamptz + event_id: uuid + match_id: uuid +} + +""" +update columns of table "event_match_links" +""" +enum event_match_links_update_column { + """column name""" + created_at + + """column name""" + event_id + + """column name""" + match_id +} + +input event_match_links_updates { + """sets the columns of the filtered rows to the given values""" + _set: event_match_links_set_input + + """filter the rows which have to be updated""" + where: event_match_links_bool_exp! +} + +""" +columns and relationships of "event_media" +""" +type event_media { + created_at: timestamptz! + + """An object relationship""" + event: events! + event_id: uuid! + external_url: String + filename: String + id: uuid! + mime_type: String + + """An array relationship""" + players( + """distinct select on columns""" + distinct_on: [event_media_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_media_players_order_by!] + + """filter the rows returned""" + where: event_media_players_bool_exp + ): [event_media_players!]! + + """An aggregate relationship""" + players_aggregate( + """distinct select on columns""" + distinct_on: [event_media_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_media_players_order_by!] + + """filter the rows returned""" + where: event_media_players_bool_exp + ): event_media_players_aggregate! + size: bigint! + thumbnail_filename: String + title: String + + """An object relationship""" + uploader: players! + uploader_steam_id: bigint! +} + +""" +aggregated selection of "event_media" +""" +type event_media_aggregate { + aggregate: event_media_aggregate_fields + nodes: [event_media!]! +} + +input event_media_aggregate_bool_exp { + count: event_media_aggregate_bool_exp_count +} + +input event_media_aggregate_bool_exp_count { + arguments: [event_media_select_column!] + distinct: Boolean + filter: event_media_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "event_media" +""" +type event_media_aggregate_fields { + avg: event_media_avg_fields + count(columns: [event_media_select_column!], distinct: Boolean): Int! + max: event_media_max_fields + min: event_media_min_fields + stddev: event_media_stddev_fields + stddev_pop: event_media_stddev_pop_fields + stddev_samp: event_media_stddev_samp_fields + sum: event_media_sum_fields + var_pop: event_media_var_pop_fields + var_samp: event_media_var_samp_fields + variance: event_media_variance_fields +} + +""" +order by aggregate values of table "event_media" +""" +input event_media_aggregate_order_by { + avg: event_media_avg_order_by + count: order_by + max: event_media_max_order_by + min: event_media_min_order_by + stddev: event_media_stddev_order_by + stddev_pop: event_media_stddev_pop_order_by + stddev_samp: event_media_stddev_samp_order_by + sum: event_media_sum_order_by + var_pop: event_media_var_pop_order_by + var_samp: event_media_var_samp_order_by + variance: event_media_variance_order_by +} + +""" +input type for inserting array relation for remote table "event_media" +""" +input event_media_arr_rel_insert_input { + data: [event_media_insert_input!]! + + """upsert condition""" + on_conflict: event_media_on_conflict +} + +"""aggregate avg on columns""" +type event_media_avg_fields { + size: Float + uploader_steam_id: Float +} + +""" +order by avg() on columns of table "event_media" +""" +input event_media_avg_order_by { + size: order_by + uploader_steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "event_media". All fields are combined with a logical 'AND'. +""" +input event_media_bool_exp { + _and: [event_media_bool_exp!] + _not: event_media_bool_exp + _or: [event_media_bool_exp!] + created_at: timestamptz_comparison_exp + event: events_bool_exp + event_id: uuid_comparison_exp + external_url: String_comparison_exp + filename: String_comparison_exp + id: uuid_comparison_exp + mime_type: String_comparison_exp + players: event_media_players_bool_exp + players_aggregate: event_media_players_aggregate_bool_exp + size: bigint_comparison_exp + thumbnail_filename: String_comparison_exp + title: String_comparison_exp + uploader: players_bool_exp + uploader_steam_id: bigint_comparison_exp +} + +""" +unique or primary key constraints on table "event_media" +""" +enum event_media_constraint { + """ + unique or primary key constraint on columns "filename", "event_id" + """ + event_media_event_id_filename_key + + """ + unique or primary key constraint on columns "id" + """ + event_media_pkey +} + +""" +input type for incrementing numeric columns in table "event_media" +""" +input event_media_inc_input { + size: bigint + uploader_steam_id: bigint +} + +""" +input type for inserting data into table "event_media" +""" +input event_media_insert_input { + created_at: timestamptz + event: events_obj_rel_insert_input + event_id: uuid + external_url: String + filename: String + id: uuid + mime_type: String + players: event_media_players_arr_rel_insert_input + size: bigint + thumbnail_filename: String + title: String + uploader: players_obj_rel_insert_input + uploader_steam_id: bigint +} + +"""aggregate max on columns""" +type event_media_max_fields { + created_at: timestamptz + event_id: uuid + external_url: String + filename: String + id: uuid + mime_type: String + size: bigint + thumbnail_filename: String + title: String + uploader_steam_id: bigint +} + +""" +order by max() on columns of table "event_media" +""" +input event_media_max_order_by { + created_at: order_by + event_id: order_by + external_url: order_by + filename: order_by + id: order_by + mime_type: order_by + size: order_by + thumbnail_filename: order_by + title: order_by + uploader_steam_id: order_by +} + +"""aggregate min on columns""" +type event_media_min_fields { + created_at: timestamptz + event_id: uuid + external_url: String + filename: String + id: uuid + mime_type: String + size: bigint + thumbnail_filename: String + title: String + uploader_steam_id: bigint +} + +""" +order by min() on columns of table "event_media" +""" +input event_media_min_order_by { + created_at: order_by + event_id: order_by + external_url: order_by + filename: order_by + id: order_by + mime_type: order_by + size: order_by + thumbnail_filename: order_by + title: order_by + uploader_steam_id: order_by +} + +""" +response of any mutation on the table "event_media" +""" +type event_media_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [event_media!]! +} + +""" +input type for inserting object relation for remote table "event_media" +""" +input event_media_obj_rel_insert_input { + data: event_media_insert_input! + + """upsert condition""" + on_conflict: event_media_on_conflict +} + +""" +on_conflict condition type for table "event_media" +""" +input event_media_on_conflict { + constraint: event_media_constraint! + update_columns: [event_media_update_column!]! = [] + where: event_media_bool_exp +} + +"""Ordering options when selecting data from "event_media".""" +input event_media_order_by { + created_at: order_by + event: events_order_by + event_id: order_by + external_url: order_by + filename: order_by + id: order_by + mime_type: order_by + players_aggregate: event_media_players_aggregate_order_by + size: order_by + thumbnail_filename: order_by + title: order_by + uploader: players_order_by + uploader_steam_id: order_by +} + +"""primary key columns input for table: event_media""" +input event_media_pk_columns_input { + id: uuid! +} + +""" +columns and relationships of "event_media_players" +""" +type event_media_players { + created_at: timestamptz! + + """An object relationship""" + media: event_media! + media_id: uuid! + + """An object relationship""" + player: players! + steam_id: bigint! +} + +""" +aggregated selection of "event_media_players" +""" +type event_media_players_aggregate { + aggregate: event_media_players_aggregate_fields + nodes: [event_media_players!]! +} + +input event_media_players_aggregate_bool_exp { + count: event_media_players_aggregate_bool_exp_count +} + +input event_media_players_aggregate_bool_exp_count { + arguments: [event_media_players_select_column!] + distinct: Boolean + filter: event_media_players_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "event_media_players" +""" +type event_media_players_aggregate_fields { + avg: event_media_players_avg_fields + count(columns: [event_media_players_select_column!], distinct: Boolean): Int! + max: event_media_players_max_fields + min: event_media_players_min_fields + stddev: event_media_players_stddev_fields + stddev_pop: event_media_players_stddev_pop_fields + stddev_samp: event_media_players_stddev_samp_fields + sum: event_media_players_sum_fields + var_pop: event_media_players_var_pop_fields + var_samp: event_media_players_var_samp_fields + variance: event_media_players_variance_fields +} + +""" +order by aggregate values of table "event_media_players" +""" +input event_media_players_aggregate_order_by { + avg: event_media_players_avg_order_by + count: order_by + max: event_media_players_max_order_by + min: event_media_players_min_order_by + stddev: event_media_players_stddev_order_by + stddev_pop: event_media_players_stddev_pop_order_by + stddev_samp: event_media_players_stddev_samp_order_by + sum: event_media_players_sum_order_by + var_pop: event_media_players_var_pop_order_by + var_samp: event_media_players_var_samp_order_by + variance: event_media_players_variance_order_by +} + +""" +input type for inserting array relation for remote table "event_media_players" +""" +input event_media_players_arr_rel_insert_input { + data: [event_media_players_insert_input!]! + + """upsert condition""" + on_conflict: event_media_players_on_conflict +} + +"""aggregate avg on columns""" +type event_media_players_avg_fields { + steam_id: Float +} + +""" +order by avg() on columns of table "event_media_players" +""" +input event_media_players_avg_order_by { + steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "event_media_players". All fields are combined with a logical 'AND'. +""" +input event_media_players_bool_exp { + _and: [event_media_players_bool_exp!] + _not: event_media_players_bool_exp + _or: [event_media_players_bool_exp!] + created_at: timestamptz_comparison_exp + media: event_media_bool_exp + media_id: uuid_comparison_exp + player: players_bool_exp + steam_id: bigint_comparison_exp +} + +""" +unique or primary key constraints on table "event_media_players" +""" +enum event_media_players_constraint { + """ + unique or primary key constraint on columns "steam_id", "media_id" + """ + event_media_players_pkey +} + +""" +input type for incrementing numeric columns in table "event_media_players" +""" +input event_media_players_inc_input { + steam_id: bigint +} + +""" +input type for inserting data into table "event_media_players" +""" +input event_media_players_insert_input { + created_at: timestamptz + media: event_media_obj_rel_insert_input + media_id: uuid + player: players_obj_rel_insert_input + steam_id: bigint +} + +"""aggregate max on columns""" +type event_media_players_max_fields { + created_at: timestamptz + media_id: uuid + steam_id: bigint +} + +""" +order by max() on columns of table "event_media_players" +""" +input event_media_players_max_order_by { + created_at: order_by + media_id: order_by + steam_id: order_by +} + +"""aggregate min on columns""" +type event_media_players_min_fields { + created_at: timestamptz + media_id: uuid + steam_id: bigint +} + +""" +order by min() on columns of table "event_media_players" +""" +input event_media_players_min_order_by { + created_at: order_by + media_id: order_by + steam_id: order_by +} + +""" +response of any mutation on the table "event_media_players" +""" +type event_media_players_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [event_media_players!]! +} + +""" +on_conflict condition type for table "event_media_players" +""" +input event_media_players_on_conflict { + constraint: event_media_players_constraint! + update_columns: [event_media_players_update_column!]! = [] + where: event_media_players_bool_exp +} + +"""Ordering options when selecting data from "event_media_players".""" +input event_media_players_order_by { + created_at: order_by + media: event_media_order_by + media_id: order_by + player: players_order_by + steam_id: order_by +} + +"""primary key columns input for table: event_media_players""" +input event_media_players_pk_columns_input { + media_id: uuid! + steam_id: bigint! +} + +""" +select columns of table "event_media_players" +""" +enum event_media_players_select_column { + """column name""" + created_at + + """column name""" + media_id + + """column name""" + steam_id +} + +""" +input type for updating data in table "event_media_players" +""" +input event_media_players_set_input { + created_at: timestamptz + media_id: uuid + steam_id: bigint +} + +"""aggregate stddev on columns""" +type event_media_players_stddev_fields { + steam_id: Float +} + +""" +order by stddev() on columns of table "event_media_players" +""" +input event_media_players_stddev_order_by { + steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type event_media_players_stddev_pop_fields { + steam_id: Float +} + +""" +order by stddev_pop() on columns of table "event_media_players" +""" +input event_media_players_stddev_pop_order_by { + steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type event_media_players_stddev_samp_fields { + steam_id: Float +} + +""" +order by stddev_samp() on columns of table "event_media_players" +""" +input event_media_players_stddev_samp_order_by { + steam_id: order_by +} + +""" +Streaming cursor of the table "event_media_players" +""" +input event_media_players_stream_cursor_input { + """Stream column input with initial value""" + initial_value: event_media_players_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input event_media_players_stream_cursor_value_input { + created_at: timestamptz + media_id: uuid + steam_id: bigint +} + +"""aggregate sum on columns""" +type event_media_players_sum_fields { + steam_id: bigint +} + +""" +order by sum() on columns of table "event_media_players" +""" +input event_media_players_sum_order_by { + steam_id: order_by +} + +""" +update columns of table "event_media_players" +""" +enum event_media_players_update_column { + """column name""" + created_at + + """column name""" + media_id + + """column name""" + steam_id +} + +input event_media_players_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: event_media_players_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: event_media_players_set_input + + """filter the rows which have to be updated""" + where: event_media_players_bool_exp! +} + +"""aggregate var_pop on columns""" +type event_media_players_var_pop_fields { + steam_id: Float +} + +""" +order by var_pop() on columns of table "event_media_players" +""" +input event_media_players_var_pop_order_by { + steam_id: order_by +} + +"""aggregate var_samp on columns""" +type event_media_players_var_samp_fields { + steam_id: Float +} + +""" +order by var_samp() on columns of table "event_media_players" +""" +input event_media_players_var_samp_order_by { + steam_id: order_by +} + +"""aggregate variance on columns""" +type event_media_players_variance_fields { + steam_id: Float +} + +""" +order by variance() on columns of table "event_media_players" +""" +input event_media_players_variance_order_by { + steam_id: order_by +} + +""" +select columns of table "event_media" +""" +enum event_media_select_column { + """column name""" + created_at + + """column name""" + event_id + + """column name""" + external_url + + """column name""" + filename + + """column name""" + id + + """column name""" + mime_type + + """column name""" + size + + """column name""" + thumbnail_filename + + """column name""" + title + + """column name""" + uploader_steam_id +} + +""" +input type for updating data in table "event_media" +""" +input event_media_set_input { + created_at: timestamptz + event_id: uuid + external_url: String + filename: String + id: uuid + mime_type: String + size: bigint + thumbnail_filename: String + title: String + uploader_steam_id: bigint +} + +"""aggregate stddev on columns""" +type event_media_stddev_fields { + size: Float + uploader_steam_id: Float +} + +""" +order by stddev() on columns of table "event_media" +""" +input event_media_stddev_order_by { + size: order_by + uploader_steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type event_media_stddev_pop_fields { + size: Float + uploader_steam_id: Float +} + +""" +order by stddev_pop() on columns of table "event_media" +""" +input event_media_stddev_pop_order_by { + size: order_by + uploader_steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type event_media_stddev_samp_fields { + size: Float + uploader_steam_id: Float +} + +""" +order by stddev_samp() on columns of table "event_media" +""" +input event_media_stddev_samp_order_by { + size: order_by + uploader_steam_id: order_by +} + +""" +Streaming cursor of the table "event_media" +""" +input event_media_stream_cursor_input { + """Stream column input with initial value""" + initial_value: event_media_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input event_media_stream_cursor_value_input { + created_at: timestamptz + event_id: uuid + external_url: String + filename: String + id: uuid + mime_type: String + size: bigint + thumbnail_filename: String + title: String + uploader_steam_id: bigint +} + +"""aggregate sum on columns""" +type event_media_sum_fields { + size: bigint + uploader_steam_id: bigint +} + +""" +order by sum() on columns of table "event_media" +""" +input event_media_sum_order_by { + size: order_by + uploader_steam_id: order_by +} + +""" +update columns of table "event_media" +""" +enum event_media_update_column { + """column name""" + created_at + + """column name""" + event_id + + """column name""" + external_url + + """column name""" + filename + + """column name""" + id + + """column name""" + mime_type + + """column name""" + size + + """column name""" + thumbnail_filename + + """column name""" + title + + """column name""" + uploader_steam_id +} + +input event_media_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: event_media_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: event_media_set_input + + """filter the rows which have to be updated""" + where: event_media_bool_exp! +} + +"""aggregate var_pop on columns""" +type event_media_var_pop_fields { + size: Float + uploader_steam_id: Float +} + +""" +order by var_pop() on columns of table "event_media" +""" +input event_media_var_pop_order_by { + size: order_by + uploader_steam_id: order_by +} + +"""aggregate var_samp on columns""" +type event_media_var_samp_fields { + size: Float + uploader_steam_id: Float +} + +""" +order by var_samp() on columns of table "event_media" +""" +input event_media_var_samp_order_by { + size: order_by + uploader_steam_id: order_by +} + +"""aggregate variance on columns""" +type event_media_variance_fields { + size: Float + uploader_steam_id: Float +} + +""" +order by variance() on columns of table "event_media" +""" +input event_media_variance_order_by { + size: order_by + uploader_steam_id: order_by +} + +""" +columns and relationships of "event_organizers" +""" +type event_organizers { + created_at: timestamptz! + + """An object relationship""" + event: events! + event_id: uuid! + + """An object relationship""" + organizer: players! + steam_id: bigint! +} + +""" +aggregated selection of "event_organizers" +""" +type event_organizers_aggregate { + aggregate: event_organizers_aggregate_fields + nodes: [event_organizers!]! +} + +input event_organizers_aggregate_bool_exp { + count: event_organizers_aggregate_bool_exp_count +} + +input event_organizers_aggregate_bool_exp_count { + arguments: [event_organizers_select_column!] + distinct: Boolean + filter: event_organizers_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "event_organizers" +""" +type event_organizers_aggregate_fields { + avg: event_organizers_avg_fields + count(columns: [event_organizers_select_column!], distinct: Boolean): Int! + max: event_organizers_max_fields + min: event_organizers_min_fields + stddev: event_organizers_stddev_fields + stddev_pop: event_organizers_stddev_pop_fields + stddev_samp: event_organizers_stddev_samp_fields + sum: event_organizers_sum_fields + var_pop: event_organizers_var_pop_fields + var_samp: event_organizers_var_samp_fields + variance: event_organizers_variance_fields +} + +""" +order by aggregate values of table "event_organizers" +""" +input event_organizers_aggregate_order_by { + avg: event_organizers_avg_order_by + count: order_by + max: event_organizers_max_order_by + min: event_organizers_min_order_by + stddev: event_organizers_stddev_order_by + stddev_pop: event_organizers_stddev_pop_order_by + stddev_samp: event_organizers_stddev_samp_order_by + sum: event_organizers_sum_order_by + var_pop: event_organizers_var_pop_order_by + var_samp: event_organizers_var_samp_order_by + variance: event_organizers_variance_order_by +} + +""" +input type for inserting array relation for remote table "event_organizers" +""" +input event_organizers_arr_rel_insert_input { + data: [event_organizers_insert_input!]! + + """upsert condition""" + on_conflict: event_organizers_on_conflict +} + +"""aggregate avg on columns""" +type event_organizers_avg_fields { + steam_id: Float +} + +""" +order by avg() on columns of table "event_organizers" +""" +input event_organizers_avg_order_by { + steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "event_organizers". All fields are combined with a logical 'AND'. +""" +input event_organizers_bool_exp { + _and: [event_organizers_bool_exp!] + _not: event_organizers_bool_exp + _or: [event_organizers_bool_exp!] + created_at: timestamptz_comparison_exp + event: events_bool_exp + event_id: uuid_comparison_exp + organizer: players_bool_exp + steam_id: bigint_comparison_exp +} + +""" +unique or primary key constraints on table "event_organizers" +""" +enum event_organizers_constraint { + """ + unique or primary key constraint on columns "steam_id", "event_id" + """ + event_organizers_pkey +} + +""" +input type for incrementing numeric columns in table "event_organizers" +""" +input event_organizers_inc_input { + steam_id: bigint +} + +""" +input type for inserting data into table "event_organizers" +""" +input event_organizers_insert_input { + created_at: timestamptz + event: events_obj_rel_insert_input + event_id: uuid + organizer: players_obj_rel_insert_input + steam_id: bigint +} + +"""aggregate max on columns""" +type event_organizers_max_fields { + created_at: timestamptz + event_id: uuid + steam_id: bigint +} + +""" +order by max() on columns of table "event_organizers" +""" +input event_organizers_max_order_by { + created_at: order_by + event_id: order_by + steam_id: order_by +} + +"""aggregate min on columns""" +type event_organizers_min_fields { + created_at: timestamptz + event_id: uuid + steam_id: bigint +} + +""" +order by min() on columns of table "event_organizers" +""" +input event_organizers_min_order_by { + created_at: order_by + event_id: order_by + steam_id: order_by +} + +""" +response of any mutation on the table "event_organizers" +""" +type event_organizers_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [event_organizers!]! +} + +""" +on_conflict condition type for table "event_organizers" +""" +input event_organizers_on_conflict { + constraint: event_organizers_constraint! + update_columns: [event_organizers_update_column!]! = [] + where: event_organizers_bool_exp +} + +"""Ordering options when selecting data from "event_organizers".""" +input event_organizers_order_by { + created_at: order_by + event: events_order_by + event_id: order_by + organizer: players_order_by + steam_id: order_by +} + +"""primary key columns input for table: event_organizers""" +input event_organizers_pk_columns_input { + event_id: uuid! + steam_id: bigint! +} + +""" +select columns of table "event_organizers" +""" +enum event_organizers_select_column { + """column name""" + created_at + + """column name""" + event_id + + """column name""" + steam_id +} + +""" +input type for updating data in table "event_organizers" +""" +input event_organizers_set_input { + created_at: timestamptz + event_id: uuid + steam_id: bigint +} + +"""aggregate stddev on columns""" +type event_organizers_stddev_fields { + steam_id: Float +} + +""" +order by stddev() on columns of table "event_organizers" +""" +input event_organizers_stddev_order_by { + steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type event_organizers_stddev_pop_fields { + steam_id: Float +} + +""" +order by stddev_pop() on columns of table "event_organizers" +""" +input event_organizers_stddev_pop_order_by { + steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type event_organizers_stddev_samp_fields { + steam_id: Float +} + +""" +order by stddev_samp() on columns of table "event_organizers" +""" +input event_organizers_stddev_samp_order_by { + steam_id: order_by +} + +""" +Streaming cursor of the table "event_organizers" +""" +input event_organizers_stream_cursor_input { + """Stream column input with initial value""" + initial_value: event_organizers_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input event_organizers_stream_cursor_value_input { + created_at: timestamptz + event_id: uuid + steam_id: bigint +} + +"""aggregate sum on columns""" +type event_organizers_sum_fields { + steam_id: bigint +} + +""" +order by sum() on columns of table "event_organizers" +""" +input event_organizers_sum_order_by { + steam_id: order_by +} + +""" +update columns of table "event_organizers" +""" +enum event_organizers_update_column { + """column name""" + created_at + + """column name""" + event_id + + """column name""" + steam_id +} + +input event_organizers_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: event_organizers_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: event_organizers_set_input + + """filter the rows which have to be updated""" + where: event_organizers_bool_exp! +} + +"""aggregate var_pop on columns""" +type event_organizers_var_pop_fields { + steam_id: Float +} + +""" +order by var_pop() on columns of table "event_organizers" +""" +input event_organizers_var_pop_order_by { + steam_id: order_by +} + +"""aggregate var_samp on columns""" +type event_organizers_var_samp_fields { + steam_id: Float +} + +""" +order by var_samp() on columns of table "event_organizers" +""" +input event_organizers_var_samp_order_by { + steam_id: order_by +} + +"""aggregate variance on columns""" +type event_organizers_variance_fields { + steam_id: Float +} + +""" +order by variance() on columns of table "event_organizers" +""" +input event_organizers_variance_order_by { + steam_id: order_by +} + +""" +columns and relationships of "event_players" +""" +type event_players { + created_at: timestamptz! + + """An object relationship""" + event: events! + event_id: uuid! + + """An object relationship""" + player: players! + steam_id: bigint! +} + +""" +aggregated selection of "event_players" +""" +type event_players_aggregate { + aggregate: event_players_aggregate_fields + nodes: [event_players!]! +} + +input event_players_aggregate_bool_exp { + count: event_players_aggregate_bool_exp_count +} + +input event_players_aggregate_bool_exp_count { + arguments: [event_players_select_column!] + distinct: Boolean + filter: event_players_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "event_players" +""" +type event_players_aggregate_fields { + avg: event_players_avg_fields + count(columns: [event_players_select_column!], distinct: Boolean): Int! + max: event_players_max_fields + min: event_players_min_fields + stddev: event_players_stddev_fields + stddev_pop: event_players_stddev_pop_fields + stddev_samp: event_players_stddev_samp_fields + sum: event_players_sum_fields + var_pop: event_players_var_pop_fields + var_samp: event_players_var_samp_fields + variance: event_players_variance_fields +} + +""" +order by aggregate values of table "event_players" +""" +input event_players_aggregate_order_by { + avg: event_players_avg_order_by + count: order_by + max: event_players_max_order_by + min: event_players_min_order_by + stddev: event_players_stddev_order_by + stddev_pop: event_players_stddev_pop_order_by + stddev_samp: event_players_stddev_samp_order_by + sum: event_players_sum_order_by + var_pop: event_players_var_pop_order_by + var_samp: event_players_var_samp_order_by + variance: event_players_variance_order_by +} + +""" +input type for inserting array relation for remote table "event_players" +""" +input event_players_arr_rel_insert_input { + data: [event_players_insert_input!]! + + """upsert condition""" + on_conflict: event_players_on_conflict +} + +"""aggregate avg on columns""" +type event_players_avg_fields { + steam_id: Float +} + +""" +order by avg() on columns of table "event_players" +""" +input event_players_avg_order_by { + steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "event_players". All fields are combined with a logical 'AND'. +""" +input event_players_bool_exp { + _and: [event_players_bool_exp!] + _not: event_players_bool_exp + _or: [event_players_bool_exp!] + created_at: timestamptz_comparison_exp + event: events_bool_exp + event_id: uuid_comparison_exp + player: players_bool_exp + steam_id: bigint_comparison_exp +} + +""" +unique or primary key constraints on table "event_players" +""" +enum event_players_constraint { + """ + unique or primary key constraint on columns "steam_id", "event_id" + """ + event_players_pkey +} + +""" +input type for incrementing numeric columns in table "event_players" +""" +input event_players_inc_input { + steam_id: bigint +} + +""" +input type for inserting data into table "event_players" +""" +input event_players_insert_input { + created_at: timestamptz + event: events_obj_rel_insert_input + event_id: uuid + player: players_obj_rel_insert_input + steam_id: bigint +} + +"""aggregate max on columns""" +type event_players_max_fields { + created_at: timestamptz + event_id: uuid + steam_id: bigint +} + +""" +order by max() on columns of table "event_players" +""" +input event_players_max_order_by { + created_at: order_by + event_id: order_by + steam_id: order_by +} + +"""aggregate min on columns""" +type event_players_min_fields { + created_at: timestamptz + event_id: uuid + steam_id: bigint +} + +""" +order by min() on columns of table "event_players" +""" +input event_players_min_order_by { + created_at: order_by + event_id: order_by + steam_id: order_by +} + +""" +response of any mutation on the table "event_players" +""" +type event_players_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [event_players!]! +} + +""" +on_conflict condition type for table "event_players" +""" +input event_players_on_conflict { + constraint: event_players_constraint! + update_columns: [event_players_update_column!]! = [] + where: event_players_bool_exp +} + +"""Ordering options when selecting data from "event_players".""" +input event_players_order_by { + created_at: order_by + event: events_order_by + event_id: order_by + player: players_order_by + steam_id: order_by +} + +"""primary key columns input for table: event_players""" +input event_players_pk_columns_input { + event_id: uuid! + steam_id: bigint! +} + +""" +select columns of table "event_players" +""" +enum event_players_select_column { + """column name""" + created_at + + """column name""" + event_id + + """column name""" + steam_id +} + +""" +input type for updating data in table "event_players" +""" +input event_players_set_input { + created_at: timestamptz + event_id: uuid + steam_id: bigint +} + +"""aggregate stddev on columns""" +type event_players_stddev_fields { + steam_id: Float +} + +""" +order by stddev() on columns of table "event_players" +""" +input event_players_stddev_order_by { + steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type event_players_stddev_pop_fields { + steam_id: Float +} + +""" +order by stddev_pop() on columns of table "event_players" +""" +input event_players_stddev_pop_order_by { + steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type event_players_stddev_samp_fields { + steam_id: Float +} + +""" +order by stddev_samp() on columns of table "event_players" +""" +input event_players_stddev_samp_order_by { + steam_id: order_by +} + +""" +Streaming cursor of the table "event_players" +""" +input event_players_stream_cursor_input { + """Stream column input with initial value""" + initial_value: event_players_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input event_players_stream_cursor_value_input { + created_at: timestamptz + event_id: uuid + steam_id: bigint +} + +"""aggregate sum on columns""" +type event_players_sum_fields { + steam_id: bigint +} + +""" +order by sum() on columns of table "event_players" +""" +input event_players_sum_order_by { + steam_id: order_by +} + +""" +update columns of table "event_players" +""" +enum event_players_update_column { + """column name""" + created_at + + """column name""" + event_id + + """column name""" + steam_id +} + +input event_players_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: event_players_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: event_players_set_input + + """filter the rows which have to be updated""" + where: event_players_bool_exp! +} + +"""aggregate var_pop on columns""" +type event_players_var_pop_fields { + steam_id: Float +} + +""" +order by var_pop() on columns of table "event_players" +""" +input event_players_var_pop_order_by { + steam_id: order_by +} + +"""aggregate var_samp on columns""" +type event_players_var_samp_fields { + steam_id: Float +} + +""" +order by var_samp() on columns of table "event_players" +""" +input event_players_var_samp_order_by { + steam_id: order_by +} + +"""aggregate variance on columns""" +type event_players_variance_fields { + steam_id: Float +} + +""" +order by variance() on columns of table "event_players" +""" +input event_players_variance_order_by { + steam_id: order_by +} + +""" +columns and relationships of "event_teams" +""" +type event_teams { + created_at: timestamptz! + + """An object relationship""" + event: events! + event_id: uuid! + + """An object relationship""" + team: teams! + team_id: uuid! +} + +""" +aggregated selection of "event_teams" +""" +type event_teams_aggregate { + aggregate: event_teams_aggregate_fields + nodes: [event_teams!]! +} + +input event_teams_aggregate_bool_exp { + count: event_teams_aggregate_bool_exp_count +} + +input event_teams_aggregate_bool_exp_count { + arguments: [event_teams_select_column!] + distinct: Boolean + filter: event_teams_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "event_teams" +""" +type event_teams_aggregate_fields { + count(columns: [event_teams_select_column!], distinct: Boolean): Int! + max: event_teams_max_fields + min: event_teams_min_fields +} + +""" +order by aggregate values of table "event_teams" +""" +input event_teams_aggregate_order_by { + count: order_by + max: event_teams_max_order_by + min: event_teams_min_order_by +} + +""" +input type for inserting array relation for remote table "event_teams" +""" +input event_teams_arr_rel_insert_input { + data: [event_teams_insert_input!]! + + """upsert condition""" + on_conflict: event_teams_on_conflict +} + +""" +Boolean expression to filter rows from the table "event_teams". All fields are combined with a logical 'AND'. +""" +input event_teams_bool_exp { + _and: [event_teams_bool_exp!] + _not: event_teams_bool_exp + _or: [event_teams_bool_exp!] + created_at: timestamptz_comparison_exp + event: events_bool_exp + event_id: uuid_comparison_exp + team: teams_bool_exp + team_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "event_teams" +""" +enum event_teams_constraint { + """ + unique or primary key constraint on columns "event_id", "team_id" + """ + event_teams_pkey +} + +""" +input type for inserting data into table "event_teams" +""" +input event_teams_insert_input { + created_at: timestamptz + event: events_obj_rel_insert_input + event_id: uuid + team: teams_obj_rel_insert_input + team_id: uuid +} + +"""aggregate max on columns""" +type event_teams_max_fields { + created_at: timestamptz + event_id: uuid + team_id: uuid +} + +""" +order by max() on columns of table "event_teams" +""" +input event_teams_max_order_by { + created_at: order_by + event_id: order_by + team_id: order_by +} + +"""aggregate min on columns""" +type event_teams_min_fields { + created_at: timestamptz + event_id: uuid + team_id: uuid +} + +""" +order by min() on columns of table "event_teams" +""" +input event_teams_min_order_by { + created_at: order_by + event_id: order_by + team_id: order_by +} + +""" +response of any mutation on the table "event_teams" +""" +type event_teams_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [event_teams!]! +} + +""" +on_conflict condition type for table "event_teams" +""" +input event_teams_on_conflict { + constraint: event_teams_constraint! + update_columns: [event_teams_update_column!]! = [] + where: event_teams_bool_exp +} + +"""Ordering options when selecting data from "event_teams".""" +input event_teams_order_by { + created_at: order_by + event: events_order_by + event_id: order_by + team: teams_order_by + team_id: order_by +} + +"""primary key columns input for table: event_teams""" +input event_teams_pk_columns_input { + event_id: uuid! + team_id: uuid! +} + +""" +select columns of table "event_teams" +""" +enum event_teams_select_column { + """column name""" + created_at + + """column name""" + event_id + + """column name""" + team_id +} + +""" +input type for updating data in table "event_teams" +""" +input event_teams_set_input { + created_at: timestamptz + event_id: uuid + team_id: uuid +} + +""" +Streaming cursor of the table "event_teams" +""" +input event_teams_stream_cursor_input { + """Stream column input with initial value""" + initial_value: event_teams_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input event_teams_stream_cursor_value_input { + created_at: timestamptz + event_id: uuid + team_id: uuid +} + +""" +update columns of table "event_teams" +""" +enum event_teams_update_column { + """column name""" + created_at + + """column name""" + event_id + + """column name""" + team_id +} + +input event_teams_updates { + """sets the columns of the filtered rows to the given values""" + _set: event_teams_set_input + + """filter the rows which have to be updated""" + where: event_teams_bool_exp! +} + +""" +columns and relationships of "event_tournaments" +""" +type event_tournaments { + created_at: timestamptz! + + """An object relationship""" + event: events! + event_id: uuid! + + """An object relationship""" + tournament: tournaments! + tournament_id: uuid! +} + +""" +aggregated selection of "event_tournaments" +""" +type event_tournaments_aggregate { + aggregate: event_tournaments_aggregate_fields + nodes: [event_tournaments!]! +} + +input event_tournaments_aggregate_bool_exp { + count: event_tournaments_aggregate_bool_exp_count +} + +input event_tournaments_aggregate_bool_exp_count { + arguments: [event_tournaments_select_column!] + distinct: Boolean + filter: event_tournaments_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "event_tournaments" +""" +type event_tournaments_aggregate_fields { + count(columns: [event_tournaments_select_column!], distinct: Boolean): Int! + max: event_tournaments_max_fields + min: event_tournaments_min_fields +} + +""" +order by aggregate values of table "event_tournaments" +""" +input event_tournaments_aggregate_order_by { + count: order_by + max: event_tournaments_max_order_by + min: event_tournaments_min_order_by +} + +""" +input type for inserting array relation for remote table "event_tournaments" +""" +input event_tournaments_arr_rel_insert_input { + data: [event_tournaments_insert_input!]! + + """upsert condition""" + on_conflict: event_tournaments_on_conflict +} + +""" +Boolean expression to filter rows from the table "event_tournaments". All fields are combined with a logical 'AND'. +""" +input event_tournaments_bool_exp { + _and: [event_tournaments_bool_exp!] + _not: event_tournaments_bool_exp + _or: [event_tournaments_bool_exp!] + created_at: timestamptz_comparison_exp + event: events_bool_exp + event_id: uuid_comparison_exp + tournament: tournaments_bool_exp + tournament_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "event_tournaments" +""" +enum event_tournaments_constraint { + """ + unique or primary key constraint on columns "tournament_id", "event_id" + """ + event_tournaments_pkey +} + +""" +input type for inserting data into table "event_tournaments" +""" +input event_tournaments_insert_input { + created_at: timestamptz + event: events_obj_rel_insert_input + event_id: uuid + tournament: tournaments_obj_rel_insert_input + tournament_id: uuid +} + +"""aggregate max on columns""" +type event_tournaments_max_fields { + created_at: timestamptz + event_id: uuid + tournament_id: uuid +} + +""" +order by max() on columns of table "event_tournaments" +""" +input event_tournaments_max_order_by { + created_at: order_by + event_id: order_by + tournament_id: order_by +} + +"""aggregate min on columns""" +type event_tournaments_min_fields { + created_at: timestamptz + event_id: uuid + tournament_id: uuid +} + +""" +order by min() on columns of table "event_tournaments" +""" +input event_tournaments_min_order_by { + created_at: order_by + event_id: order_by + tournament_id: order_by +} + +""" +response of any mutation on the table "event_tournaments" +""" +type event_tournaments_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [event_tournaments!]! +} + +""" +on_conflict condition type for table "event_tournaments" +""" +input event_tournaments_on_conflict { + constraint: event_tournaments_constraint! + update_columns: [event_tournaments_update_column!]! = [] + where: event_tournaments_bool_exp +} + +"""Ordering options when selecting data from "event_tournaments".""" +input event_tournaments_order_by { + created_at: order_by + event: events_order_by + event_id: order_by + tournament: tournaments_order_by + tournament_id: order_by +} + +"""primary key columns input for table: event_tournaments""" +input event_tournaments_pk_columns_input { + event_id: uuid! + tournament_id: uuid! +} + +""" +select columns of table "event_tournaments" +""" +enum event_tournaments_select_column { + """column name""" + created_at + + """column name""" + event_id + + """column name""" + tournament_id +} + +""" +input type for updating data in table "event_tournaments" +""" +input event_tournaments_set_input { + created_at: timestamptz + event_id: uuid + tournament_id: uuid +} + +""" +Streaming cursor of the table "event_tournaments" +""" +input event_tournaments_stream_cursor_input { + """Stream column input with initial value""" + initial_value: event_tournaments_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input event_tournaments_stream_cursor_value_input { + created_at: timestamptz + event_id: uuid + tournament_id: uuid +} + +""" +update columns of table "event_tournaments" +""" +enum event_tournaments_update_column { + """column name""" + created_at + + """column name""" + event_id + + """column name""" + tournament_id +} + +input event_tournaments_updates { + """sets the columns of the filtered rows to the given values""" + _set: event_tournaments_set_input + + """filter the rows which have to be updated""" + where: event_tournaments_bool_exp! +} + +""" +columns and relationships of "events" +""" +type events { + """An array relationship""" + awards( + """distinct select on columns""" + distinct_on: [award_recipients_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: [award_recipients_order_by!] + + """filter the rows returned""" + where: award_recipients_bool_exp + ): [award_recipients!]! + + """An aggregate relationship""" + awards_aggregate( + """distinct select on columns""" + distinct_on: [award_recipients_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: [award_recipients_order_by!] + + """filter the rows returned""" + where: award_recipients_bool_exp + ): award_recipients_aggregate! + + """An object relationship""" + banner: event_media + banner_media_id: uuid + + """ + A computed field, executes function "can_upload_event_media" + """ + can_upload_media: Boolean + + """ + A computed field, executes function "can_view_event" + """ + can_view: Boolean + created_at: timestamptz! + description: String + ends_at: timestamptz + hide_creator_organizer: Boolean! + id: uuid! + + """ + A computed field, executes function "is_event_organizer" + """ + is_organizer: Boolean + + """An array relationship""" + media( + """distinct select on columns""" + distinct_on: [event_media_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_media_order_by!] + + """filter the rows returned""" + where: event_media_bool_exp + ): [event_media!]! + media_access: e_event_media_access_enum! + + """An aggregate relationship""" + media_aggregate( + """distinct select on columns""" + distinct_on: [event_media_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_media_order_by!] + + """filter the rows returned""" + where: event_media_bool_exp + ): event_media_aggregate! + name: String! + + """An object relationship""" + organizer: players! + organizer_steam_id: bigint! + + """An array relationship""" + organizers( + """distinct select on columns""" + distinct_on: [event_organizers_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_organizers_order_by!] + + """filter the rows returned""" + where: event_organizers_bool_exp + ): [event_organizers!]! + + """An aggregate relationship""" + organizers_aggregate( + """distinct select on columns""" + distinct_on: [event_organizers_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_organizers_order_by!] + + """filter the rows returned""" + where: event_organizers_bool_exp + ): event_organizers_aggregate! + + """An array relationship""" + player_stats( + """distinct select on columns""" + distinct_on: [v_event_player_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_event_player_stats_order_by!] + + """filter the rows returned""" + where: v_event_player_stats_bool_exp + ): [v_event_player_stats!]! + + """An aggregate relationship""" + player_stats_aggregate( + """distinct select on columns""" + distinct_on: [v_event_player_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_event_player_stats_order_by!] + + """filter the rows returned""" + where: v_event_player_stats_bool_exp + ): v_event_player_stats_aggregate! + + """An array relationship""" + players( + """distinct select on columns""" + distinct_on: [event_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_players_order_by!] + + """filter the rows returned""" + where: event_players_bool_exp + ): [event_players!]! + + """An aggregate relationship""" + players_aggregate( + """distinct select on columns""" + distinct_on: [event_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_players_order_by!] + + """filter the rows returned""" + where: event_players_bool_exp + ): event_players_aggregate! + starts_at: timestamptz! + + """An array relationship""" + teams( + """distinct select on columns""" + distinct_on: [event_teams_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_teams_order_by!] + + """filter the rows returned""" + where: event_teams_bool_exp + ): [event_teams!]! + + """An aggregate relationship""" + teams_aggregate( + """distinct select on columns""" + distinct_on: [event_teams_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_teams_order_by!] + + """filter the rows returned""" + where: event_teams_bool_exp + ): event_teams_aggregate! + + """An array relationship""" + tournaments( + """distinct select on columns""" + distinct_on: [event_tournaments_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_tournaments_order_by!] + + """filter the rows returned""" + where: event_tournaments_bool_exp + ): [event_tournaments!]! + + """An aggregate relationship""" + tournaments_aggregate( + """distinct select on columns""" + distinct_on: [event_tournaments_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_tournaments_order_by!] + + """filter the rows returned""" + where: event_tournaments_bool_exp + ): event_tournaments_aggregate! + visibility: e_event_visibility_enum! +} + +""" +aggregated selection of "events" +""" +type events_aggregate { + aggregate: events_aggregate_fields + nodes: [events!]! +} + +""" +aggregate fields of "events" +""" +type events_aggregate_fields { + avg: events_avg_fields + count(columns: [events_select_column!], distinct: Boolean): Int! + max: events_max_fields + min: events_min_fields + stddev: events_stddev_fields + stddev_pop: events_stddev_pop_fields + stddev_samp: events_stddev_samp_fields + sum: events_sum_fields + var_pop: events_var_pop_fields + var_samp: events_var_samp_fields + variance: events_variance_fields +} + +"""aggregate avg on columns""" +type events_avg_fields { + organizer_steam_id: Float +} + +""" +Boolean expression to filter rows from the table "events". All fields are combined with a logical 'AND'. +""" +input events_bool_exp { + _and: [events_bool_exp!] + _not: events_bool_exp + _or: [events_bool_exp!] + awards: award_recipients_bool_exp + awards_aggregate: award_recipients_aggregate_bool_exp + banner: event_media_bool_exp + banner_media_id: uuid_comparison_exp + can_upload_media: Boolean_comparison_exp + can_view: Boolean_comparison_exp + created_at: timestamptz_comparison_exp + description: String_comparison_exp + ends_at: timestamptz_comparison_exp + hide_creator_organizer: Boolean_comparison_exp + id: uuid_comparison_exp + is_organizer: Boolean_comparison_exp + media: event_media_bool_exp + media_access: e_event_media_access_enum_comparison_exp + media_aggregate: event_media_aggregate_bool_exp + name: String_comparison_exp + organizer: players_bool_exp + organizer_steam_id: bigint_comparison_exp + organizers: event_organizers_bool_exp + organizers_aggregate: event_organizers_aggregate_bool_exp + player_stats: v_event_player_stats_bool_exp + player_stats_aggregate: v_event_player_stats_aggregate_bool_exp + players: event_players_bool_exp + players_aggregate: event_players_aggregate_bool_exp + starts_at: timestamptz_comparison_exp + teams: event_teams_bool_exp + teams_aggregate: event_teams_aggregate_bool_exp + tournaments: event_tournaments_bool_exp + tournaments_aggregate: event_tournaments_aggregate_bool_exp + visibility: e_event_visibility_enum_comparison_exp +} + +""" +unique or primary key constraints on table "events" +""" +enum events_constraint { + """ + unique or primary key constraint on columns "id" + """ + events_pkey +} + +""" +input type for incrementing numeric columns in table "events" +""" +input events_inc_input { + organizer_steam_id: bigint +} + +""" +input type for inserting data into table "events" +""" +input events_insert_input { + awards: award_recipients_arr_rel_insert_input + banner: event_media_obj_rel_insert_input + banner_media_id: uuid + created_at: timestamptz + description: String + ends_at: timestamptz + hide_creator_organizer: Boolean + id: uuid + media: event_media_arr_rel_insert_input + media_access: e_event_media_access_enum + name: String + organizer: players_obj_rel_insert_input + organizer_steam_id: bigint + organizers: event_organizers_arr_rel_insert_input + player_stats: v_event_player_stats_arr_rel_insert_input + players: event_players_arr_rel_insert_input + starts_at: timestamptz + teams: event_teams_arr_rel_insert_input + tournaments: event_tournaments_arr_rel_insert_input + visibility: e_event_visibility_enum +} + +"""aggregate max on columns""" +type events_max_fields { + banner_media_id: uuid + created_at: timestamptz + description: String + ends_at: timestamptz + id: uuid + name: String + organizer_steam_id: bigint + starts_at: timestamptz +} + +"""aggregate min on columns""" +type events_min_fields { + banner_media_id: uuid + created_at: timestamptz + description: String + ends_at: timestamptz + id: uuid + name: String + organizer_steam_id: bigint + starts_at: timestamptz +} + +""" +response of any mutation on the table "events" +""" +type events_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [events!]! +} + +""" +input type for inserting object relation for remote table "events" +""" +input events_obj_rel_insert_input { + data: events_insert_input! + + """upsert condition""" + on_conflict: events_on_conflict +} + +""" +on_conflict condition type for table "events" +""" +input events_on_conflict { + constraint: events_constraint! + update_columns: [events_update_column!]! = [] + where: events_bool_exp +} + +"""Ordering options when selecting data from "events".""" +input events_order_by { + awards_aggregate: award_recipients_aggregate_order_by + banner: event_media_order_by + banner_media_id: order_by + can_upload_media: order_by + can_view: order_by + created_at: order_by + description: order_by + ends_at: order_by + hide_creator_organizer: order_by + id: order_by + is_organizer: order_by + media_access: order_by + media_aggregate: event_media_aggregate_order_by + name: order_by + organizer: players_order_by + organizer_steam_id: order_by + organizers_aggregate: event_organizers_aggregate_order_by + player_stats_aggregate: v_event_player_stats_aggregate_order_by + players_aggregate: event_players_aggregate_order_by + starts_at: order_by + teams_aggregate: event_teams_aggregate_order_by + tournaments_aggregate: event_tournaments_aggregate_order_by + visibility: order_by +} + +"""primary key columns input for table: events""" +input events_pk_columns_input { + id: uuid! +} + +""" +select columns of table "events" +""" +enum events_select_column { + """column name""" + banner_media_id + + """column name""" + created_at + + """column name""" + description + + """column name""" + ends_at + + """column name""" + hide_creator_organizer + + """column name""" + id + + """column name""" + media_access + + """column name""" + name + + """column name""" + organizer_steam_id + + """column name""" + starts_at + + """column name""" + visibility +} + +""" +input type for updating data in table "events" +""" +input events_set_input { + banner_media_id: uuid + created_at: timestamptz + description: String + ends_at: timestamptz + hide_creator_organizer: Boolean + id: uuid + media_access: e_event_media_access_enum + name: String + organizer_steam_id: bigint + starts_at: timestamptz + visibility: e_event_visibility_enum +} + +"""aggregate stddev on columns""" +type events_stddev_fields { + organizer_steam_id: Float +} + +"""aggregate stddev_pop on columns""" +type events_stddev_pop_fields { + organizer_steam_id: Float +} + +"""aggregate stddev_samp on columns""" +type events_stddev_samp_fields { + organizer_steam_id: Float +} + +""" +Streaming cursor of the table "events" +""" +input events_stream_cursor_input { + """Stream column input with initial value""" + initial_value: events_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input events_stream_cursor_value_input { + banner_media_id: uuid + created_at: timestamptz + description: String + ends_at: timestamptz + hide_creator_organizer: Boolean + id: uuid + media_access: e_event_media_access_enum + name: String + organizer_steam_id: bigint + starts_at: timestamptz + visibility: e_event_visibility_enum +} + +"""aggregate sum on columns""" +type events_sum_fields { + organizer_steam_id: bigint +} + +""" +update columns of table "events" +""" +enum events_update_column { + """column name""" + banner_media_id + + """column name""" + created_at + + """column name""" + description + + """column name""" + ends_at + + """column name""" + hide_creator_organizer + + """column name""" + id + + """column name""" + media_access + + """column name""" + name + + """column name""" + organizer_steam_id + + """column name""" + starts_at + + """column name""" + visibility +} + +input events_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: events_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: events_set_input + + """filter the rows which have to be updated""" + where: events_bool_exp! +} + +"""aggregate var_pop on columns""" +type events_var_pop_fields { + organizer_steam_id: Float +} + +"""aggregate var_samp on columns""" +type events_var_samp_fields { + organizer_steam_id: Float +} + +"""aggregate variance on columns""" +type events_variance_fields { + organizer_steam_id: Float +} + +scalar float8 + +""" +Boolean expression to compare columns of type "float8". All fields are combined with logical 'AND'. +""" +input float8_comparison_exp { + _eq: float8 + _gt: float8 + _gte: float8 + _in: [float8!] + _is_null: Boolean + _lt: float8 + _lte: float8 + _neq: float8 + _nin: [float8!] +} + +""" +columns and relationships of "friends" +""" +type friends { + """An object relationship""" + e_status: e_friend_status! + other_player_steam_id: bigint! + player_steam_id: bigint! + status: e_friend_status_enum! +} + +""" +aggregated selection of "friends" +""" +type friends_aggregate { + aggregate: friends_aggregate_fields + nodes: [friends!]! +} + +""" +aggregate fields of "friends" +""" +type friends_aggregate_fields { + avg: friends_avg_fields + count(columns: [friends_select_column!], distinct: Boolean): Int! + max: friends_max_fields + min: friends_min_fields + stddev: friends_stddev_fields + stddev_pop: friends_stddev_pop_fields + stddev_samp: friends_stddev_samp_fields + sum: friends_sum_fields + var_pop: friends_var_pop_fields + var_samp: friends_var_samp_fields + variance: friends_variance_fields +} + +"""aggregate avg on columns""" +type friends_avg_fields { + other_player_steam_id: Float + player_steam_id: Float +} + +""" +Boolean expression to filter rows from the table "friends". All fields are combined with a logical 'AND'. +""" +input friends_bool_exp { + _and: [friends_bool_exp!] + _not: friends_bool_exp + _or: [friends_bool_exp!] + e_status: e_friend_status_bool_exp + other_player_steam_id: bigint_comparison_exp + player_steam_id: bigint_comparison_exp + status: e_friend_status_enum_comparison_exp +} + +""" +unique or primary key constraints on table "friends" +""" +enum friends_constraint { + """ + unique or primary key constraint on columns "player_steam_id", "other_player_steam_id" + """ + friends_pkey + + """ + unique or primary key constraint on columns "player_steam_id", "other_player_steam_id" + """ + friends_player_steam_id_other_player_steam_id_key +} + +""" +input type for incrementing numeric columns in table "friends" +""" +input friends_inc_input { + other_player_steam_id: bigint + player_steam_id: bigint +} + +""" +input type for inserting data into table "friends" +""" +input friends_insert_input { + e_status: e_friend_status_obj_rel_insert_input + other_player_steam_id: bigint + player_steam_id: bigint + status: e_friend_status_enum +} + +"""aggregate max on columns""" +type friends_max_fields { + other_player_steam_id: bigint + player_steam_id: bigint +} + +"""aggregate min on columns""" +type friends_min_fields { + other_player_steam_id: bigint + player_steam_id: bigint +} + +""" +response of any mutation on the table "friends" +""" +type friends_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [friends!]! +} + +""" +on_conflict condition type for table "friends" +""" +input friends_on_conflict { + constraint: friends_constraint! + update_columns: [friends_update_column!]! = [] + where: friends_bool_exp +} + +"""Ordering options when selecting data from "friends".""" +input friends_order_by { + e_status: e_friend_status_order_by + other_player_steam_id: order_by + player_steam_id: order_by + status: order_by +} + +"""primary key columns input for table: friends""" +input friends_pk_columns_input { + other_player_steam_id: bigint! + player_steam_id: bigint! +} + +""" +select columns of table "friends" +""" +enum friends_select_column { + """column name""" + other_player_steam_id + + """column name""" + player_steam_id + + """column name""" + status +} + +""" +input type for updating data in table "friends" +""" +input friends_set_input { + other_player_steam_id: bigint + player_steam_id: bigint + status: e_friend_status_enum +} + +"""aggregate stddev on columns""" +type friends_stddev_fields { + other_player_steam_id: Float + player_steam_id: Float +} + +"""aggregate stddev_pop on columns""" +type friends_stddev_pop_fields { + other_player_steam_id: Float + player_steam_id: Float +} + +"""aggregate stddev_samp on columns""" +type friends_stddev_samp_fields { + other_player_steam_id: Float + player_steam_id: Float +} + +""" +Streaming cursor of the table "friends" +""" +input friends_stream_cursor_input { + """Stream column input with initial value""" + initial_value: friends_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input friends_stream_cursor_value_input { + other_player_steam_id: bigint + player_steam_id: bigint + status: e_friend_status_enum +} + +"""aggregate sum on columns""" +type friends_sum_fields { + other_player_steam_id: bigint + player_steam_id: bigint +} + +""" +update columns of table "friends" +""" +enum friends_update_column { + """column name""" + other_player_steam_id + + """column name""" + player_steam_id + + """column name""" + status +} + +input friends_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: friends_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: friends_set_input + + """filter the rows which have to be updated""" + where: friends_bool_exp! +} + +"""aggregate var_pop on columns""" +type friends_var_pop_fields { + other_player_steam_id: Float + player_steam_id: Float +} + +"""aggregate var_samp on columns""" +type friends_var_samp_fields { + other_player_steam_id: Float + player_steam_id: Float +} + +"""aggregate variance on columns""" +type friends_variance_fields { + other_player_steam_id: Float + player_steam_id: Float +} + +""" +columns and relationships of "game_mode_plugins" +""" +type game_mode_plugins { + config( + """JSON select path""" + path: String + ): jsonb + + """An object relationship""" + game_mode: game_modes! + game_mode_id: uuid! + load_order: Int! + + """An object relationship""" + plugin: game_plugins! + plugin_slug: String! + required: Boolean! +} + +""" +aggregated selection of "game_mode_plugins" +""" +type game_mode_plugins_aggregate { + aggregate: game_mode_plugins_aggregate_fields + nodes: [game_mode_plugins!]! +} + +input game_mode_plugins_aggregate_bool_exp { + bool_and: game_mode_plugins_aggregate_bool_exp_bool_and + bool_or: game_mode_plugins_aggregate_bool_exp_bool_or + count: game_mode_plugins_aggregate_bool_exp_count +} + +input game_mode_plugins_aggregate_bool_exp_bool_and { + arguments: game_mode_plugins_select_column_game_mode_plugins_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: game_mode_plugins_bool_exp + predicate: Boolean_comparison_exp! +} + +input game_mode_plugins_aggregate_bool_exp_bool_or { + arguments: game_mode_plugins_select_column_game_mode_plugins_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: game_mode_plugins_bool_exp + predicate: Boolean_comparison_exp! +} + +input game_mode_plugins_aggregate_bool_exp_count { + arguments: [game_mode_plugins_select_column!] + distinct: Boolean + filter: game_mode_plugins_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "game_mode_plugins" +""" +type game_mode_plugins_aggregate_fields { + avg: game_mode_plugins_avg_fields + count(columns: [game_mode_plugins_select_column!], distinct: Boolean): Int! + max: game_mode_plugins_max_fields + min: game_mode_plugins_min_fields + stddev: game_mode_plugins_stddev_fields + stddev_pop: game_mode_plugins_stddev_pop_fields + stddev_samp: game_mode_plugins_stddev_samp_fields + sum: game_mode_plugins_sum_fields + var_pop: game_mode_plugins_var_pop_fields + var_samp: game_mode_plugins_var_samp_fields + variance: game_mode_plugins_variance_fields +} + +""" +order by aggregate values of table "game_mode_plugins" +""" +input game_mode_plugins_aggregate_order_by { + avg: game_mode_plugins_avg_order_by + count: order_by + max: game_mode_plugins_max_order_by + min: game_mode_plugins_min_order_by + stddev: game_mode_plugins_stddev_order_by + stddev_pop: game_mode_plugins_stddev_pop_order_by + stddev_samp: game_mode_plugins_stddev_samp_order_by + sum: game_mode_plugins_sum_order_by + var_pop: game_mode_plugins_var_pop_order_by + var_samp: game_mode_plugins_var_samp_order_by + variance: game_mode_plugins_variance_order_by +} + +"""append existing jsonb value of filtered columns with new jsonb value""" +input game_mode_plugins_append_input { + config: jsonb +} + +""" +input type for inserting array relation for remote table "game_mode_plugins" +""" +input game_mode_plugins_arr_rel_insert_input { + data: [game_mode_plugins_insert_input!]! + + """upsert condition""" + on_conflict: game_mode_plugins_on_conflict +} + +"""aggregate avg on columns""" +type game_mode_plugins_avg_fields { + load_order: Float +} + +""" +order by avg() on columns of table "game_mode_plugins" +""" +input game_mode_plugins_avg_order_by { + load_order: order_by +} + +""" +Boolean expression to filter rows from the table "game_mode_plugins". All fields are combined with a logical 'AND'. +""" +input game_mode_plugins_bool_exp { + _and: [game_mode_plugins_bool_exp!] + _not: game_mode_plugins_bool_exp + _or: [game_mode_plugins_bool_exp!] + config: jsonb_comparison_exp + game_mode: game_modes_bool_exp + game_mode_id: uuid_comparison_exp + load_order: Int_comparison_exp + plugin: game_plugins_bool_exp + plugin_slug: String_comparison_exp + required: Boolean_comparison_exp +} + +""" +unique or primary key constraints on table "game_mode_plugins" +""" +enum game_mode_plugins_constraint { + """ + unique or primary key constraint on columns "game_mode_id", "plugin_slug" + """ + game_mode_plugins_pkey +} + +""" +delete the field or element with specified path (for JSON arrays, negative integers count from the end) +""" +input game_mode_plugins_delete_at_path_input { + config: [String!] +} + +""" +delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array +""" +input game_mode_plugins_delete_elem_input { + config: Int +} + +""" +delete key/value pair or string element. key/value pairs are matched based on their key value +""" +input game_mode_plugins_delete_key_input { + config: String +} + +""" +input type for incrementing numeric columns in table "game_mode_plugins" +""" +input game_mode_plugins_inc_input { + load_order: Int +} + +""" +input type for inserting data into table "game_mode_plugins" +""" +input game_mode_plugins_insert_input { + config: jsonb + game_mode: game_modes_obj_rel_insert_input + game_mode_id: uuid + load_order: Int + plugin: game_plugins_obj_rel_insert_input + plugin_slug: String + required: Boolean +} + +"""aggregate max on columns""" +type game_mode_plugins_max_fields { + game_mode_id: uuid + load_order: Int + plugin_slug: String +} + +""" +order by max() on columns of table "game_mode_plugins" +""" +input game_mode_plugins_max_order_by { + game_mode_id: order_by + load_order: order_by + plugin_slug: order_by +} + +"""aggregate min on columns""" +type game_mode_plugins_min_fields { + game_mode_id: uuid + load_order: Int + plugin_slug: String +} + +""" +order by min() on columns of table "game_mode_plugins" +""" +input game_mode_plugins_min_order_by { + game_mode_id: order_by + load_order: order_by + plugin_slug: order_by +} + +""" +response of any mutation on the table "game_mode_plugins" +""" +type game_mode_plugins_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [game_mode_plugins!]! +} + +""" +on_conflict condition type for table "game_mode_plugins" +""" +input game_mode_plugins_on_conflict { + constraint: game_mode_plugins_constraint! + update_columns: [game_mode_plugins_update_column!]! = [] + where: game_mode_plugins_bool_exp +} + +"""Ordering options when selecting data from "game_mode_plugins".""" +input game_mode_plugins_order_by { + config: order_by + game_mode: game_modes_order_by + game_mode_id: order_by + load_order: order_by + plugin: game_plugins_order_by + plugin_slug: order_by + required: order_by +} + +"""primary key columns input for table: game_mode_plugins""" +input game_mode_plugins_pk_columns_input { + game_mode_id: uuid! + plugin_slug: String! +} + +"""prepend existing jsonb value of filtered columns with new jsonb value""" +input game_mode_plugins_prepend_input { + config: jsonb +} + +""" +select columns of table "game_mode_plugins" +""" +enum game_mode_plugins_select_column { + """column name""" + config + + """column name""" + game_mode_id + + """column name""" + load_order + + """column name""" + plugin_slug + + """column name""" + required +} + +""" +select "game_mode_plugins_aggregate_bool_exp_bool_and_arguments_columns" columns of table "game_mode_plugins" +""" +enum game_mode_plugins_select_column_game_mode_plugins_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + required +} + +""" +select "game_mode_plugins_aggregate_bool_exp_bool_or_arguments_columns" columns of table "game_mode_plugins" +""" +enum game_mode_plugins_select_column_game_mode_plugins_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + required +} + +""" +input type for updating data in table "game_mode_plugins" +""" +input game_mode_plugins_set_input { + config: jsonb + game_mode_id: uuid + load_order: Int + plugin_slug: String + required: Boolean +} + +"""aggregate stddev on columns""" +type game_mode_plugins_stddev_fields { + load_order: Float +} + +""" +order by stddev() on columns of table "game_mode_plugins" +""" +input game_mode_plugins_stddev_order_by { + load_order: order_by +} + +"""aggregate stddev_pop on columns""" +type game_mode_plugins_stddev_pop_fields { + load_order: Float +} + +""" +order by stddev_pop() on columns of table "game_mode_plugins" +""" +input game_mode_plugins_stddev_pop_order_by { + load_order: order_by +} + +"""aggregate stddev_samp on columns""" +type game_mode_plugins_stddev_samp_fields { + load_order: Float +} + +""" +order by stddev_samp() on columns of table "game_mode_plugins" +""" +input game_mode_plugins_stddev_samp_order_by { + load_order: order_by +} + +""" +Streaming cursor of the table "game_mode_plugins" +""" +input game_mode_plugins_stream_cursor_input { + """Stream column input with initial value""" + initial_value: game_mode_plugins_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input game_mode_plugins_stream_cursor_value_input { + config: jsonb + game_mode_id: uuid + load_order: Int + plugin_slug: String + required: Boolean +} + +"""aggregate sum on columns""" +type game_mode_plugins_sum_fields { + load_order: Int +} + +""" +order by sum() on columns of table "game_mode_plugins" +""" +input game_mode_plugins_sum_order_by { + load_order: order_by +} + +""" +update columns of table "game_mode_plugins" +""" +enum game_mode_plugins_update_column { + """column name""" + config + + """column name""" + game_mode_id + + """column name""" + load_order + + """column name""" + plugin_slug + + """column name""" + required +} + +input game_mode_plugins_updates { + """append existing jsonb value of filtered columns with new jsonb value""" + _append: game_mode_plugins_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: game_mode_plugins_delete_at_path_input + + """ + delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array + """ + _delete_elem: game_mode_plugins_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: game_mode_plugins_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: game_mode_plugins_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: game_mode_plugins_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: game_mode_plugins_set_input + + """filter the rows which have to be updated""" + where: game_mode_plugins_bool_exp! +} + +"""aggregate var_pop on columns""" +type game_mode_plugins_var_pop_fields { + load_order: Float +} + +""" +order by var_pop() on columns of table "game_mode_plugins" +""" +input game_mode_plugins_var_pop_order_by { + load_order: order_by +} + +"""aggregate var_samp on columns""" +type game_mode_plugins_var_samp_fields { + load_order: Float +} + +""" +order by var_samp() on columns of table "game_mode_plugins" +""" +input game_mode_plugins_var_samp_order_by { + load_order: order_by +} + +"""aggregate variance on columns""" +type game_mode_plugins_variance_fields { + load_order: Float +} + +""" +order by variance() on columns of table "game_mode_plugins" +""" +input game_mode_plugins_variance_order_by { + load_order: order_by +} + +""" +columns and relationships of "game_modes" +""" +type game_modes { + archived_at: timestamptz + cfg: String + competitive_safe: Boolean! + created_at: timestamptz! + description: String + enabled: Boolean! + extra_game_params: String + icon: String + id: uuid! + + """An array relationship""" + match_options( + """distinct select on columns""" + distinct_on: [match_options_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_options_order_by!] + + """filter the rows returned""" + where: match_options_bool_exp + ): [match_options!]! + + """An aggregate relationship""" + match_options_aggregate( + """distinct select on columns""" + distinct_on: [match_options_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_options_order_by!] + + """filter the rows returned""" + where: match_options_bool_exp + ): match_options_aggregate! + name: String! + + """An array relationship""" + plugins( + """distinct select on columns""" + distinct_on: [game_mode_plugins_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [game_mode_plugins_order_by!] + + """filter the rows returned""" + where: game_mode_plugins_bool_exp + ): [game_mode_plugins!]! + + """An aggregate relationship""" + plugins_aggregate( + """distinct select on columns""" + distinct_on: [game_mode_plugins_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [game_mode_plugins_order_by!] + + """filter the rows returned""" + where: game_mode_plugins_bool_exp + ): game_mode_plugins_aggregate! + + """Plugins in this mode with no build for the deployment's runtime""" + runtime_conflicts( + """JSON select path""" + path: String + ): jsonb + slug: String! + + """ + Frameworks every plugin in this mode publishes for; empty means the selection cannot run + """ + supported_runtimes( + """JSON select path""" + path: String + ): jsonb + updated_at: timestamptz! +} + +""" +aggregated selection of "game_modes" +""" +type game_modes_aggregate { + aggregate: game_modes_aggregate_fields + nodes: [game_modes!]! +} + +""" +aggregate fields of "game_modes" +""" +type game_modes_aggregate_fields { + count(columns: [game_modes_select_column!], distinct: Boolean): Int! + max: game_modes_max_fields + min: game_modes_min_fields +} + +""" +Boolean expression to filter rows from the table "game_modes". All fields are combined with a logical 'AND'. +""" +input game_modes_bool_exp { + _and: [game_modes_bool_exp!] + _not: game_modes_bool_exp + _or: [game_modes_bool_exp!] + archived_at: timestamptz_comparison_exp + cfg: String_comparison_exp + competitive_safe: Boolean_comparison_exp + created_at: timestamptz_comparison_exp + description: String_comparison_exp + enabled: Boolean_comparison_exp + extra_game_params: String_comparison_exp + icon: String_comparison_exp + id: uuid_comparison_exp + match_options: match_options_bool_exp + match_options_aggregate: match_options_aggregate_bool_exp + name: String_comparison_exp + plugins: game_mode_plugins_bool_exp + plugins_aggregate: game_mode_plugins_aggregate_bool_exp + runtime_conflicts: jsonb_comparison_exp + slug: String_comparison_exp + supported_runtimes: jsonb_comparison_exp + updated_at: timestamptz_comparison_exp +} + +""" +unique or primary key constraints on table "game_modes" +""" +enum game_modes_constraint { + """ + unique or primary key constraint on columns "id" + """ + game_modes_pkey + + """ + unique or primary key constraint on columns "slug" + """ + game_modes_slug_key +} + +""" +input type for inserting data into table "game_modes" +""" +input game_modes_insert_input { + archived_at: timestamptz + cfg: String + competitive_safe: Boolean + created_at: timestamptz + description: String + enabled: Boolean + extra_game_params: String + icon: String + id: uuid + match_options: match_options_arr_rel_insert_input + name: String + plugins: game_mode_plugins_arr_rel_insert_input + slug: String + updated_at: timestamptz +} + +"""aggregate max on columns""" +type game_modes_max_fields { + archived_at: timestamptz + cfg: String + created_at: timestamptz + description: String + extra_game_params: String + icon: String + id: uuid + name: String + slug: String + updated_at: timestamptz +} + +"""aggregate min on columns""" +type game_modes_min_fields { + archived_at: timestamptz + cfg: String + created_at: timestamptz + description: String + extra_game_params: String + icon: String + id: uuid + name: String + slug: String + updated_at: timestamptz +} + +""" +response of any mutation on the table "game_modes" +""" +type game_modes_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [game_modes!]! +} + +""" +input type for inserting object relation for remote table "game_modes" +""" +input game_modes_obj_rel_insert_input { + data: game_modes_insert_input! + + """upsert condition""" + on_conflict: game_modes_on_conflict +} + +""" +on_conflict condition type for table "game_modes" +""" +input game_modes_on_conflict { + constraint: game_modes_constraint! + update_columns: [game_modes_update_column!]! = [] + where: game_modes_bool_exp +} + +"""Ordering options when selecting data from "game_modes".""" +input game_modes_order_by { + archived_at: order_by + cfg: order_by + competitive_safe: order_by + created_at: order_by + description: order_by + enabled: order_by + extra_game_params: order_by + icon: order_by + id: order_by + match_options_aggregate: match_options_aggregate_order_by + name: order_by + plugins_aggregate: game_mode_plugins_aggregate_order_by + runtime_conflicts: order_by + slug: order_by + supported_runtimes: order_by + updated_at: order_by +} + +"""primary key columns input for table: game_modes""" +input game_modes_pk_columns_input { + id: uuid! +} + +""" +select columns of table "game_modes" +""" +enum game_modes_select_column { + """column name""" + archived_at + + """column name""" + cfg + + """column name""" + competitive_safe + + """column name""" + created_at + + """column name""" + description + + """column name""" + enabled + + """column name""" + extra_game_params + + """column name""" + icon + + """column name""" + id + + """column name""" + name + + """column name""" + slug + + """column name""" + updated_at +} + +""" +input type for updating data in table "game_modes" +""" +input game_modes_set_input { + archived_at: timestamptz + cfg: String + competitive_safe: Boolean + created_at: timestamptz + description: String + enabled: Boolean + extra_game_params: String + icon: String + id: uuid + name: String + slug: String + updated_at: timestamptz +} + +""" +Streaming cursor of the table "game_modes" +""" +input game_modes_stream_cursor_input { + """Stream column input with initial value""" + initial_value: game_modes_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input game_modes_stream_cursor_value_input { + archived_at: timestamptz + cfg: String + competitive_safe: Boolean + created_at: timestamptz + description: String + enabled: Boolean + extra_game_params: String + icon: String + id: uuid + name: String + slug: String + updated_at: timestamptz +} + +""" +update columns of table "game_modes" +""" +enum game_modes_update_column { + """column name""" + archived_at + + """column name""" + cfg + + """column name""" + competitive_safe + + """column name""" + created_at + + """column name""" + description + + """column name""" + enabled + + """column name""" + extra_game_params + + """column name""" + icon + + """column name""" + id + + """column name""" + name + + """column name""" + slug + + """column name""" + updated_at +} + +input game_modes_updates { + """sets the columns of the filtered rows to the given values""" + _set: game_modes_set_input + + """filter the rows which have to be updated""" + where: game_modes_bool_exp! +} + +""" +columns and relationships of "game_plugin_installs" +""" +type game_plugin_installs { + cfg: String + channel: e_game_plugin_channels_enum! + created_at: timestamptz! + disable_server_guidelines: Boolean! + enabled: Boolean! + load_custom: Boolean! + load_ranked: Boolean! + load_tournaments: 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!] + cfg: String_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 + load_custom: Boolean_comparison_exp + load_ranked: Boolean_comparison_exp + load_tournaments: 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 { + cfg: String + channel: e_game_plugin_channels_enum + created_at: timestamptz + disable_server_guidelines: Boolean + enabled: Boolean + load_custom: Boolean + load_ranked: Boolean + load_tournaments: 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 { + cfg: String + created_at: timestamptz + plugin_slug: String + updated_at: timestamptz + version: String +} + +"""aggregate min on columns""" +type game_plugin_installs_min_fields { + cfg: String + 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 { + cfg: order_by + channel: order_by + created_at: order_by + disable_server_guidelines: order_by + enabled: order_by + load_custom: order_by + load_ranked: order_by + load_tournaments: 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""" + cfg + + """column name""" + channel + + """column name""" + created_at + + """column name""" + disable_server_guidelines + + """column name""" + enabled + + """column name""" + load_custom + + """column name""" + load_ranked + + """column name""" + load_tournaments + + """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 { + cfg: String + channel: e_game_plugin_channels_enum + created_at: timestamptz + disable_server_guidelines: Boolean + enabled: Boolean + load_custom: Boolean + load_ranked: Boolean + load_tournaments: 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 { + cfg: String + channel: e_game_plugin_channels_enum + created_at: timestamptz + disable_server_guidelines: Boolean + enabled: Boolean + load_custom: Boolean + load_ranked: Boolean + load_tournaments: Boolean + plugin_slug: String + updated_at: timestamptz + version: String +} + +""" +update columns of table "game_plugin_installs" +""" +enum game_plugin_installs_update_column { + """column name""" + cfg + + """column name""" + channel + + """column name""" + created_at + + """column name""" + disable_server_guidelines + + """column name""" + enabled + + """column name""" + load_custom + + """column name""" + load_ranked + + """column name""" + load_tournaments + + """column name""" + plugin_slug + + """column name""" + updated_at + + """column name""" + version +} + +input game_plugin_installs_updates { + """sets the columns of the filtered rows to the given values""" + _set: game_plugin_installs_set_input + + """filter the rows which have to be updated""" + where: game_plugin_installs_bool_exp! +} + +""" +columns and relationships of "game_plugin_versions" +""" +type game_plugin_versions { + install_path: String + layout: String! + + """An object relationship""" + plugin: game_plugins! + plugin_slug: String! + prerelease: Boolean! + published_at: timestamptz! + runtime: e_plugin_runtimes_enum! + sha256: String! + size: Int + url: String! + version: String! +} + +""" +aggregated selection of "game_plugin_versions" +""" +type game_plugin_versions_aggregate { + aggregate: game_plugin_versions_aggregate_fields + nodes: [game_plugin_versions!]! +} + +input game_plugin_versions_aggregate_bool_exp { + bool_and: game_plugin_versions_aggregate_bool_exp_bool_and + bool_or: game_plugin_versions_aggregate_bool_exp_bool_or + count: game_plugin_versions_aggregate_bool_exp_count +} + +input game_plugin_versions_aggregate_bool_exp_bool_and { + arguments: game_plugin_versions_select_column_game_plugin_versions_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: game_plugin_versions_bool_exp + predicate: Boolean_comparison_exp! +} + +input game_plugin_versions_aggregate_bool_exp_bool_or { + arguments: game_plugin_versions_select_column_game_plugin_versions_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: game_plugin_versions_bool_exp + predicate: Boolean_comparison_exp! +} + +input game_plugin_versions_aggregate_bool_exp_count { + arguments: [game_plugin_versions_select_column!] + distinct: Boolean + filter: game_plugin_versions_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "game_plugin_versions" +""" +type game_plugin_versions_aggregate_fields { + avg: game_plugin_versions_avg_fields + count(columns: [game_plugin_versions_select_column!], distinct: Boolean): Int! + max: game_plugin_versions_max_fields + min: game_plugin_versions_min_fields + stddev: game_plugin_versions_stddev_fields + stddev_pop: game_plugin_versions_stddev_pop_fields + stddev_samp: game_plugin_versions_stddev_samp_fields + sum: game_plugin_versions_sum_fields + var_pop: game_plugin_versions_var_pop_fields + var_samp: game_plugin_versions_var_samp_fields + variance: game_plugin_versions_variance_fields +} + +""" +order by aggregate values of table "game_plugin_versions" +""" +input game_plugin_versions_aggregate_order_by { + avg: game_plugin_versions_avg_order_by + count: order_by + max: game_plugin_versions_max_order_by + min: game_plugin_versions_min_order_by + stddev: game_plugin_versions_stddev_order_by + stddev_pop: game_plugin_versions_stddev_pop_order_by + stddev_samp: game_plugin_versions_stddev_samp_order_by + sum: game_plugin_versions_sum_order_by + var_pop: game_plugin_versions_var_pop_order_by + var_samp: game_plugin_versions_var_samp_order_by + variance: game_plugin_versions_variance_order_by +} + +""" +input type for inserting array relation for remote table "game_plugin_versions" +""" +input game_plugin_versions_arr_rel_insert_input { + data: [game_plugin_versions_insert_input!]! + + """upsert condition""" + on_conflict: game_plugin_versions_on_conflict +} + +"""aggregate avg on columns""" +type game_plugin_versions_avg_fields { + size: Float +} + +""" +order by avg() on columns of table "game_plugin_versions" +""" +input game_plugin_versions_avg_order_by { + size: order_by +} + +""" +Boolean expression to filter rows from the table "game_plugin_versions". All fields are combined with a logical 'AND'. +""" +input game_plugin_versions_bool_exp { + _and: [game_plugin_versions_bool_exp!] + _not: game_plugin_versions_bool_exp + _or: [game_plugin_versions_bool_exp!] + install_path: String_comparison_exp + layout: String_comparison_exp + plugin: game_plugins_bool_exp + plugin_slug: String_comparison_exp + prerelease: Boolean_comparison_exp + published_at: timestamptz_comparison_exp + runtime: e_plugin_runtimes_enum_comparison_exp + sha256: String_comparison_exp + size: Int_comparison_exp + url: String_comparison_exp + version: String_comparison_exp +} + +""" +unique or primary key constraints on table "game_plugin_versions" +""" +enum game_plugin_versions_constraint { + """ + unique or primary key constraint on columns "plugin_slug", "version", "runtime" + """ + game_plugin_versions_pkey +} + +""" +input type for incrementing numeric columns in table "game_plugin_versions" +""" +input game_plugin_versions_inc_input { + size: Int +} + +""" +input type for inserting data into table "game_plugin_versions" +""" +input game_plugin_versions_insert_input { + install_path: String + layout: String + plugin: game_plugins_obj_rel_insert_input + plugin_slug: String + prerelease: Boolean + published_at: timestamptz + runtime: e_plugin_runtimes_enum + sha256: String + size: Int + url: String + version: String +} + +"""aggregate max on columns""" +type game_plugin_versions_max_fields { + install_path: String + layout: String + plugin_slug: String + published_at: timestamptz + sha256: String + size: Int + url: String + version: String +} + +""" +order by max() on columns of table "game_plugin_versions" +""" +input game_plugin_versions_max_order_by { + install_path: order_by + layout: order_by + plugin_slug: order_by + published_at: order_by + sha256: order_by + size: order_by + url: order_by + version: order_by +} + +"""aggregate min on columns""" +type game_plugin_versions_min_fields { + install_path: String + layout: String + plugin_slug: String + published_at: timestamptz + sha256: String + size: Int + url: String + version: String +} + +""" +order by min() on columns of table "game_plugin_versions" +""" +input game_plugin_versions_min_order_by { + install_path: order_by + layout: order_by + plugin_slug: order_by + published_at: order_by + sha256: order_by + size: order_by + url: order_by + version: order_by +} + +""" +response of any mutation on the table "game_plugin_versions" +""" +type game_plugin_versions_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [game_plugin_versions!]! +} + +""" +on_conflict condition type for table "game_plugin_versions" +""" +input game_plugin_versions_on_conflict { + constraint: game_plugin_versions_constraint! + update_columns: [game_plugin_versions_update_column!]! = [] + where: game_plugin_versions_bool_exp +} + +"""Ordering options when selecting data from "game_plugin_versions".""" +input game_plugin_versions_order_by { + install_path: order_by + layout: order_by + plugin: game_plugins_order_by + plugin_slug: order_by + prerelease: order_by + published_at: order_by + runtime: order_by + sha256: order_by + size: order_by + url: order_by + version: order_by +} + +"""primary key columns input for table: game_plugin_versions""" +input game_plugin_versions_pk_columns_input { + plugin_slug: String! + runtime: e_plugin_runtimes_enum! + version: String! +} + +""" +select columns of table "game_plugin_versions" +""" +enum game_plugin_versions_select_column { + """column name""" + install_path + + """column name""" + layout + + """column name""" + plugin_slug + + """column name""" + prerelease + + """column name""" + published_at + + """column name""" + runtime + + """column name""" + sha256 + + """column name""" + size + + """column name""" + url + + """column name""" + version +} + +""" +select "game_plugin_versions_aggregate_bool_exp_bool_and_arguments_columns" columns of table "game_plugin_versions" +""" +enum game_plugin_versions_select_column_game_plugin_versions_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + prerelease +} + +""" +select "game_plugin_versions_aggregate_bool_exp_bool_or_arguments_columns" columns of table "game_plugin_versions" +""" +enum game_plugin_versions_select_column_game_plugin_versions_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + prerelease +} + +""" +input type for updating data in table "game_plugin_versions" +""" +input game_plugin_versions_set_input { + install_path: String + layout: String + plugin_slug: String + prerelease: Boolean + published_at: timestamptz + runtime: e_plugin_runtimes_enum + sha256: String + size: Int + url: String + version: String +} + +"""aggregate stddev on columns""" +type game_plugin_versions_stddev_fields { + size: Float +} + +""" +order by stddev() on columns of table "game_plugin_versions" +""" +input game_plugin_versions_stddev_order_by { + size: order_by +} + +"""aggregate stddev_pop on columns""" +type game_plugin_versions_stddev_pop_fields { + size: Float +} + +""" +order by stddev_pop() on columns of table "game_plugin_versions" +""" +input game_plugin_versions_stddev_pop_order_by { + size: order_by +} + +"""aggregate stddev_samp on columns""" +type game_plugin_versions_stddev_samp_fields { + size: Float +} + +""" +order by stddev_samp() on columns of table "game_plugin_versions" +""" +input game_plugin_versions_stddev_samp_order_by { + size: order_by +} + +""" +Streaming cursor of the table "game_plugin_versions" +""" +input game_plugin_versions_stream_cursor_input { + """Stream column input with initial value""" + initial_value: game_plugin_versions_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input game_plugin_versions_stream_cursor_value_input { + install_path: String + layout: String + plugin_slug: String + prerelease: Boolean + published_at: timestamptz + runtime: e_plugin_runtimes_enum + sha256: String + size: Int + url: String + version: String +} + +"""aggregate sum on columns""" +type game_plugin_versions_sum_fields { + size: Int +} + +""" +order by sum() on columns of table "game_plugin_versions" +""" +input game_plugin_versions_sum_order_by { + size: order_by +} + +""" +update columns of table "game_plugin_versions" +""" +enum game_plugin_versions_update_column { + """column name""" + install_path + + """column name""" + layout + + """column name""" + plugin_slug + + """column name""" + prerelease + + """column name""" + published_at + + """column name""" + runtime + + """column name""" + sha256 + + """column name""" + size + + """column name""" + url + + """column name""" + version +} + +input game_plugin_versions_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: game_plugin_versions_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: game_plugin_versions_set_input + + """filter the rows which have to be updated""" + where: game_plugin_versions_bool_exp! +} + +"""aggregate var_pop on columns""" +type game_plugin_versions_var_pop_fields { + size: Float +} + +""" +order by var_pop() on columns of table "game_plugin_versions" +""" +input game_plugin_versions_var_pop_order_by { + size: order_by +} + +"""aggregate var_samp on columns""" +type game_plugin_versions_var_samp_fields { + size: Float +} + +""" +order by var_samp() on columns of table "game_plugin_versions" +""" +input game_plugin_versions_var_samp_order_by { + size: order_by +} + +"""aggregate variance on columns""" +type game_plugin_versions_variance_fields { + size: Float +} + +""" +order by variance() on columns of table "game_plugin_versions" +""" +input game_plugin_versions_variance_order_by { + size: order_by +} + +""" +columns and relationships of "game_plugins" +""" +type game_plugins { + author: String! + config_path: String + config_schema( + """JSON select path""" + path: String + ): jsonb + cvars: [String!]! + description: String! + + """An array relationship""" + game_modes( + """distinct select on columns""" + distinct_on: [game_mode_plugins_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [game_mode_plugins_order_by!] + + """filter the rows returned""" + where: game_mode_plugins_bool_exp + ): [game_mode_plugins!]! + + """An aggregate relationship""" + game_modes_aggregate( + """distinct select on columns""" + distinct_on: [game_mode_plugins_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [game_mode_plugins_order_by!] + + """filter the rows returned""" + where: game_mode_plugins_bool_exp + ): game_mode_plugins_aggregate! + homepage: String + hot_swappable: Boolean! + + """Installed | Partial | Pending | Failed | Manual | NotInstalled""" + install_state: String + + """ + A computed field, executes function "game_plugin_installed_node_count" + """ + installed_node_count: Int + kind: e_game_plugin_kinds_enum! + name: String! + + """An array relationship""" + node_installs( + """distinct select on columns""" + distinct_on: [game_server_node_plugins_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [game_server_node_plugins_order_by!] + + """filter the rows returned""" + where: game_server_node_plugins_bool_exp + ): [game_server_node_plugins!]! + + """An aggregate relationship""" + node_installs_aggregate( + """distinct select on columns""" + distinct_on: [game_server_node_plugins_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [game_server_node_plugins_order_by!] + + """filter the rows returned""" + where: game_server_node_plugins_bool_exp + ): game_server_node_plugins_aggregate! + pairs_with: [String!]! + panel( + """JSON select path""" + path: String + ): jsonb + requires_server_guidelines_disabled: Boolean! + requires_service: String + slug: String! + source: String! + synced_at: timestamptz! + tags: [String!]! + + """ + A computed field, executes function "game_plugin_target_node_count" + """ + target_node_count: Int + verified: Boolean! + + """An array relationship""" + versions( + """distinct select on columns""" + distinct_on: [game_plugin_versions_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [game_plugin_versions_order_by!] + + """filter the rows returned""" + where: game_plugin_versions_bool_exp + ): [game_plugin_versions!]! + + """An aggregate relationship""" + versions_aggregate( + """distinct select on columns""" + distinct_on: [game_plugin_versions_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [game_plugin_versions_order_by!] + + """filter the rows returned""" + where: game_plugin_versions_bool_exp + ): game_plugin_versions_aggregate! + wiring( + """JSON select path""" + path: String + ): jsonb +} + +""" +aggregated selection of "game_plugins" +""" +type game_plugins_aggregate { + aggregate: game_plugins_aggregate_fields + nodes: [game_plugins!]! +} + +""" +aggregate fields of "game_plugins" +""" +type game_plugins_aggregate_fields { + avg: game_plugins_avg_fields + count(columns: [game_plugins_select_column!], distinct: Boolean): Int! + max: game_plugins_max_fields + min: game_plugins_min_fields + stddev: game_plugins_stddev_fields + stddev_pop: game_plugins_stddev_pop_fields + stddev_samp: game_plugins_stddev_samp_fields + sum: game_plugins_sum_fields + var_pop: game_plugins_var_pop_fields + var_samp: game_plugins_var_samp_fields + variance: game_plugins_variance_fields +} + +"""append existing jsonb value of filtered columns with new jsonb value""" +input game_plugins_append_input { + config_schema: jsonb + panel: jsonb + wiring: jsonb +} + +"""aggregate avg on columns""" +type game_plugins_avg_fields { + """ + A computed field, executes function "game_plugin_installed_node_count" + """ + installed_node_count: Int + + """ + A computed field, executes function "game_plugin_target_node_count" + """ + target_node_count: Int +} + +""" +Boolean expression to filter rows from the table "game_plugins". All fields are combined with a logical 'AND'. +""" +input game_plugins_bool_exp { + _and: [game_plugins_bool_exp!] + _not: game_plugins_bool_exp + _or: [game_plugins_bool_exp!] + author: String_comparison_exp + config_path: String_comparison_exp + config_schema: jsonb_comparison_exp + cvars: String_array_comparison_exp + description: String_comparison_exp + game_modes: game_mode_plugins_bool_exp + game_modes_aggregate: game_mode_plugins_aggregate_bool_exp + homepage: String_comparison_exp + hot_swappable: Boolean_comparison_exp + install_state: String_comparison_exp + installed_node_count: Int_comparison_exp + kind: e_game_plugin_kinds_enum_comparison_exp + name: String_comparison_exp + node_installs: game_server_node_plugins_bool_exp + node_installs_aggregate: game_server_node_plugins_aggregate_bool_exp + pairs_with: String_array_comparison_exp + panel: jsonb_comparison_exp + requires_server_guidelines_disabled: Boolean_comparison_exp + requires_service: String_comparison_exp + slug: String_comparison_exp + source: String_comparison_exp + synced_at: timestamptz_comparison_exp + tags: String_array_comparison_exp + target_node_count: Int_comparison_exp + verified: Boolean_comparison_exp + versions: game_plugin_versions_bool_exp + versions_aggregate: game_plugin_versions_aggregate_bool_exp + wiring: jsonb_comparison_exp +} + +""" +unique or primary key constraints on table "game_plugins" +""" +enum game_plugins_constraint { + """ + unique or primary key constraint on columns "slug" + """ + game_plugins_pkey +} + +""" +delete the field or element with specified path (for JSON arrays, negative integers count from the end) +""" +input game_plugins_delete_at_path_input { + config_schema: [String!] + panel: [String!] + wiring: [String!] +} + +""" +delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array +""" +input game_plugins_delete_elem_input { + config_schema: Int + panel: Int + wiring: Int +} + +""" +delete key/value pair or string element. key/value pairs are matched based on their key value +""" +input game_plugins_delete_key_input { + config_schema: String + panel: String + wiring: String +} + +""" +input type for inserting data into table "game_plugins" +""" +input game_plugins_insert_input { + author: String + config_path: String + config_schema: jsonb + cvars: [String!] + description: String + game_modes: game_mode_plugins_arr_rel_insert_input + homepage: String + hot_swappable: Boolean + kind: e_game_plugin_kinds_enum + name: String + node_installs: game_server_node_plugins_arr_rel_insert_input + pairs_with: [String!] + panel: jsonb + requires_server_guidelines_disabled: Boolean + requires_service: String + slug: String + source: String + synced_at: timestamptz + tags: [String!] + verified: Boolean + versions: game_plugin_versions_arr_rel_insert_input + wiring: jsonb +} + +"""aggregate max on columns""" +type game_plugins_max_fields { + author: String + config_path: String + cvars: [String!] + description: String + homepage: String + + """Installed | Partial | Pending | Failed | Manual | NotInstalled""" + install_state: String + + """ + A computed field, executes function "game_plugin_installed_node_count" + """ + installed_node_count: Int + name: String + pairs_with: [String!] + requires_service: String + slug: String + source: String + synced_at: timestamptz + tags: [String!] + + """ + A computed field, executes function "game_plugin_target_node_count" + """ + target_node_count: Int +} + +"""aggregate min on columns""" +type game_plugins_min_fields { + author: String + config_path: String + cvars: [String!] + description: String + homepage: String + + """Installed | Partial | Pending | Failed | Manual | NotInstalled""" + install_state: String + + """ + A computed field, executes function "game_plugin_installed_node_count" + """ + installed_node_count: Int + name: String + pairs_with: [String!] + requires_service: String + slug: String + source: String + synced_at: timestamptz + tags: [String!] + + """ + A computed field, executes function "game_plugin_target_node_count" + """ + target_node_count: Int +} + +""" +response of any mutation on the table "game_plugins" +""" +type game_plugins_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [game_plugins!]! +} + +""" +input type for inserting object relation for remote table "game_plugins" +""" +input game_plugins_obj_rel_insert_input { + data: game_plugins_insert_input! + + """upsert condition""" + on_conflict: game_plugins_on_conflict +} + +""" +on_conflict condition type for table "game_plugins" +""" +input game_plugins_on_conflict { + constraint: game_plugins_constraint! + update_columns: [game_plugins_update_column!]! = [] + where: game_plugins_bool_exp +} + +"""Ordering options when selecting data from "game_plugins".""" +input game_plugins_order_by { + author: order_by + config_path: order_by + config_schema: order_by + cvars: order_by + description: order_by + game_modes_aggregate: game_mode_plugins_aggregate_order_by + homepage: order_by + hot_swappable: order_by + install_state: order_by + installed_node_count: order_by + kind: order_by + name: order_by + node_installs_aggregate: game_server_node_plugins_aggregate_order_by + pairs_with: order_by + panel: order_by + requires_server_guidelines_disabled: order_by + requires_service: order_by + slug: order_by + source: order_by + synced_at: order_by + tags: order_by + target_node_count: order_by + verified: order_by + versions_aggregate: game_plugin_versions_aggregate_order_by + wiring: order_by +} + +"""primary key columns input for table: game_plugins""" +input game_plugins_pk_columns_input { + slug: String! +} + +"""prepend existing jsonb value of filtered columns with new jsonb value""" +input game_plugins_prepend_input { + config_schema: jsonb + panel: jsonb + wiring: jsonb +} + +""" +select columns of table "game_plugins" +""" +enum game_plugins_select_column { + """column name""" + author + + """column name""" + config_path + + """column name""" + config_schema + + """column name""" + cvars + + """column name""" + description + + """column name""" + homepage + + """column name""" + hot_swappable + + """column name""" + kind + + """column name""" + name + + """column name""" + pairs_with + + """column name""" + panel + + """column name""" + requires_server_guidelines_disabled + + """column name""" + requires_service + + """column name""" + slug + + """column name""" + source + + """column name""" + synced_at + + """column name""" + tags + + """column name""" + verified + + """column name""" + wiring +} + +""" +input type for updating data in table "game_plugins" +""" +input game_plugins_set_input { + author: String + config_path: String + config_schema: jsonb + cvars: [String!] + description: String + homepage: String + hot_swappable: Boolean + kind: e_game_plugin_kinds_enum + name: String + pairs_with: [String!] + panel: jsonb + requires_server_guidelines_disabled: Boolean + requires_service: String + slug: String + source: String + synced_at: timestamptz + tags: [String!] + verified: Boolean + wiring: jsonb +} + +"""aggregate stddev on columns""" +type game_plugins_stddev_fields { + """ + A computed field, executes function "game_plugin_installed_node_count" + """ + installed_node_count: Int + + """ + A computed field, executes function "game_plugin_target_node_count" + """ + target_node_count: Int +} + +"""aggregate stddev_pop on columns""" +type game_plugins_stddev_pop_fields { + """ + A computed field, executes function "game_plugin_installed_node_count" + """ + installed_node_count: Int + + """ + A computed field, executes function "game_plugin_target_node_count" + """ + target_node_count: Int +} + +"""aggregate stddev_samp on columns""" +type game_plugins_stddev_samp_fields { + """ + A computed field, executes function "game_plugin_installed_node_count" + """ + installed_node_count: Int + + """ + A computed field, executes function "game_plugin_target_node_count" + """ + target_node_count: Int +} + +""" +Streaming cursor of the table "game_plugins" +""" +input game_plugins_stream_cursor_input { + """Stream column input with initial value""" + initial_value: game_plugins_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input game_plugins_stream_cursor_value_input { + author: String + config_path: String + config_schema: jsonb + cvars: [String!] + description: String + homepage: String + hot_swappable: Boolean + kind: e_game_plugin_kinds_enum + name: String + pairs_with: [String!] + panel: jsonb + requires_server_guidelines_disabled: Boolean + requires_service: String + slug: String + source: String + synced_at: timestamptz + tags: [String!] + verified: Boolean + wiring: jsonb +} + +"""aggregate sum on columns""" +type game_plugins_sum_fields { + """ + A computed field, executes function "game_plugin_installed_node_count" + """ + installed_node_count: Int + + """ + A computed field, executes function "game_plugin_target_node_count" + """ + target_node_count: Int +} + +""" +update columns of table "game_plugins" +""" +enum game_plugins_update_column { + """column name""" + author + + """column name""" + config_path + + """column name""" + config_schema + + """column name""" + cvars + + """column name""" + description + + """column name""" + homepage + + """column name""" + hot_swappable + + """column name""" + kind + + """column name""" + name + + """column name""" + pairs_with + + """column name""" + panel + + """column name""" + requires_server_guidelines_disabled + + """column name""" + requires_service + + """column name""" + slug + + """column name""" + source + + """column name""" + synced_at + + """column name""" + tags + + """column name""" + verified + + """column name""" + wiring +} + +input game_plugins_updates { + """append existing jsonb value of filtered columns with new jsonb value""" + _append: game_plugins_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: game_plugins_delete_at_path_input + + """ + delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array + """ + _delete_elem: game_plugins_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: game_plugins_delete_key_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: game_plugins_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: game_plugins_set_input + + """filter the rows which have to be updated""" + where: game_plugins_bool_exp! +} + +"""aggregate var_pop on columns""" +type game_plugins_var_pop_fields { + """ + A computed field, executes function "game_plugin_installed_node_count" + """ + installed_node_count: Int + + """ + A computed field, executes function "game_plugin_target_node_count" + """ + target_node_count: Int +} + +"""aggregate var_samp on columns""" +type game_plugins_var_samp_fields { + """ + A computed field, executes function "game_plugin_installed_node_count" + """ + installed_node_count: Int + + """ + A computed field, executes function "game_plugin_target_node_count" + """ + target_node_count: Int +} + +"""aggregate variance on columns""" +type game_plugins_variance_fields { + """ + A computed field, executes function "game_plugin_installed_node_count" + """ + installed_node_count: Int + + """ + A computed field, executes function "game_plugin_target_node_count" + """ + target_node_count: Int +} + +""" +columns and relationships of "game_server_node_plugins" +""" +type game_server_node_plugins { + channel: e_game_plugin_channels_enum! + created_at: timestamptz! + detected: Boolean! + detected_version: String + + """An object relationship""" + game_server_node: game_server_nodes! + game_server_node_id: String! + id: uuid! + installed_at: timestamptz + last_error: String + path: String + + """An object relationship""" + plugin: game_plugins + plugin_slug: String! + previous_version: 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 + path: String_comparison_exp + plugin: game_plugins_bool_exp + plugin_slug: String_comparison_exp + previous_version: 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 + path: String + plugin: game_plugins_obj_rel_insert_input + plugin_slug: String + previous_version: 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 + path: String + plugin_slug: String + previous_version: 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 + path: order_by + plugin_slug: order_by + previous_version: 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 + path: String + plugin_slug: String + previous_version: 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 + path: order_by + plugin_slug: order_by + previous_version: 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 + path: order_by + plugin: game_plugins_order_by + plugin_slug: order_by + previous_version: 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""" + path + + """column name""" + plugin_slug + + """column name""" + previous_version + + """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 + path: String + plugin_slug: String + previous_version: 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 + path: String + plugin_slug: String + previous_version: 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""" + path + + """column name""" + plugin_slug + + """column name""" + previous_version + + """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" +""" +type game_server_nodes { + """ + A computed field, executes function "available_node_server_count" + """ + available_server_count: Int + build_id: Int + cpu_cores_per_socket: Int + cpu_frequency_info( + """JSON select path""" + path: String + ): jsonb + cpu_governor_info( + """JSON select path""" + path: String + ): jsonb + cpu_sockets: Int + cpu_threads_per_core: Int + cpu_warnings( + """JSON select path""" + path: String + ): jsonb + cs2_launch_options( + """JSON select path""" + path: String + ): jsonb! + cs2_video_settings( + """JSON select path""" + path: String + ): jsonb! + csgo_build_id: Int + demo_network_limiter: Int + disk_available_gb: Int + disk_used_percent: Int + + """An object relationship""" + e_region: server_regions + + """An object relationship""" + e_status: e_game_server_node_statuses + enabled: Boolean! + enabled_for_match_making: Boolean! + end_port_range: Int + gpu: Boolean! + gpu_demos_enabled: Boolean! + gpu_info( + """JSON select path""" + path: String + ): jsonb + gpu_rendering_enabled: Boolean! + gpu_streaming_enabled: Boolean! + id: String! + label: String + lan_ip: inet + node_ip: inet + offline_at: timestamptz + pin_build_id: Int + pin_plugin_runtime: String + pin_plugin_version: String + + """An object relationship""" + pinned_version: game_versions + + """ + 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 + + """An array relationship""" + servers( + """distinct select on columns""" + distinct_on: [servers_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: [servers_order_by!] + + """filter the rows returned""" + where: servers_bool_exp + ): [servers!]! + + """An aggregate relationship""" + servers_aggregate( + """distinct select on columns""" + distinct_on: [servers_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: [servers_order_by!] + + """filter the rows returned""" + where: servers_bool_exp + ): servers_aggregate! + shader_bake_progress: numeric + shader_bake_progress_stage: String + shader_bake_status: String + shader_bake_status_history( + """JSON select path""" + path: String + ): jsonb! + start_port_range: Int + status: e_game_server_node_statuses_enum + supports_cpu_pinning: Boolean! + supports_low_latency: Boolean! + token: String + + """ + A computed field, executes function "total_node_server_count" + """ + total_server_count: Int + update_status: String + + """An object relationship""" + version: game_versions +} + +""" +aggregated selection of "game_server_nodes" +""" +type game_server_nodes_aggregate { + aggregate: game_server_nodes_aggregate_fields + nodes: [game_server_nodes!]! +} + +input game_server_nodes_aggregate_bool_exp { + bool_and: game_server_nodes_aggregate_bool_exp_bool_and + bool_or: game_server_nodes_aggregate_bool_exp_bool_or + count: game_server_nodes_aggregate_bool_exp_count +} + +input game_server_nodes_aggregate_bool_exp_bool_and { + arguments: game_server_nodes_select_column_game_server_nodes_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: game_server_nodes_bool_exp + predicate: Boolean_comparison_exp! +} + +input game_server_nodes_aggregate_bool_exp_bool_or { + arguments: game_server_nodes_select_column_game_server_nodes_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: game_server_nodes_bool_exp + predicate: Boolean_comparison_exp! +} + +input game_server_nodes_aggregate_bool_exp_count { + arguments: [game_server_nodes_select_column!] + distinct: Boolean + filter: game_server_nodes_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "game_server_nodes" +""" +type game_server_nodes_aggregate_fields { + avg: game_server_nodes_avg_fields + count(columns: [game_server_nodes_select_column!], distinct: Boolean): Int! + max: game_server_nodes_max_fields + min: game_server_nodes_min_fields + stddev: game_server_nodes_stddev_fields + stddev_pop: game_server_nodes_stddev_pop_fields + stddev_samp: game_server_nodes_stddev_samp_fields + sum: game_server_nodes_sum_fields + var_pop: game_server_nodes_var_pop_fields + var_samp: game_server_nodes_var_samp_fields + variance: game_server_nodes_variance_fields +} + +""" +order by aggregate values of table "game_server_nodes" +""" +input game_server_nodes_aggregate_order_by { + avg: game_server_nodes_avg_order_by + count: order_by + max: game_server_nodes_max_order_by + min: game_server_nodes_min_order_by + stddev: game_server_nodes_stddev_order_by + stddev_pop: game_server_nodes_stddev_pop_order_by + stddev_samp: game_server_nodes_stddev_samp_order_by + sum: game_server_nodes_sum_order_by + var_pop: game_server_nodes_var_pop_order_by + var_samp: game_server_nodes_var_samp_order_by + variance: game_server_nodes_variance_order_by +} + +"""append existing jsonb value of filtered columns with new jsonb value""" +input game_server_nodes_append_input { + cpu_frequency_info: jsonb + cpu_governor_info: jsonb + cpu_warnings: jsonb + cs2_launch_options: jsonb + cs2_video_settings: jsonb + gpu_info: jsonb + shader_bake_status_history: jsonb +} + +""" +input type for inserting array relation for remote table "game_server_nodes" +""" +input game_server_nodes_arr_rel_insert_input { + data: [game_server_nodes_insert_input!]! + + """upsert condition""" + on_conflict: game_server_nodes_on_conflict +} + +"""aggregate avg on columns""" +type game_server_nodes_avg_fields { + """ + A computed field, executes function "available_node_server_count" + """ + available_server_count: Int + build_id: Float + cpu_cores_per_socket: Float + cpu_sockets: Float + cpu_threads_per_core: Float + csgo_build_id: Float + demo_network_limiter: Float + disk_available_gb: Float + disk_used_percent: Float + end_port_range: Float + pin_build_id: Float + shader_bake_progress: Float + start_port_range: Float + + """ + A computed field, executes function "total_node_server_count" + """ + total_server_count: Int +} + +""" +order by avg() on columns of table "game_server_nodes" +""" +input game_server_nodes_avg_order_by { + build_id: order_by + cpu_cores_per_socket: order_by + cpu_sockets: order_by + cpu_threads_per_core: order_by + csgo_build_id: order_by + demo_network_limiter: order_by + disk_available_gb: order_by + disk_used_percent: order_by + end_port_range: order_by + pin_build_id: order_by + shader_bake_progress: order_by + start_port_range: order_by +} + +""" +Boolean expression to filter rows from the table "game_server_nodes". All fields are combined with a logical 'AND'. +""" +input game_server_nodes_bool_exp { + _and: [game_server_nodes_bool_exp!] + _not: game_server_nodes_bool_exp + _or: [game_server_nodes_bool_exp!] + available_server_count: Int_comparison_exp + build_id: Int_comparison_exp + cpu_cores_per_socket: Int_comparison_exp + cpu_frequency_info: jsonb_comparison_exp + cpu_governor_info: jsonb_comparison_exp + cpu_sockets: Int_comparison_exp + cpu_threads_per_core: Int_comparison_exp + cpu_warnings: jsonb_comparison_exp + cs2_launch_options: jsonb_comparison_exp + cs2_video_settings: jsonb_comparison_exp + csgo_build_id: Int_comparison_exp + demo_network_limiter: Int_comparison_exp + disk_available_gb: Int_comparison_exp + disk_used_percent: Int_comparison_exp + e_region: server_regions_bool_exp + e_status: e_game_server_node_statuses_bool_exp + enabled: Boolean_comparison_exp + enabled_for_match_making: Boolean_comparison_exp + end_port_range: Int_comparison_exp + gpu: Boolean_comparison_exp + gpu_demos_enabled: Boolean_comparison_exp + gpu_info: jsonb_comparison_exp + gpu_rendering_enabled: Boolean_comparison_exp + gpu_streaming_enabled: Boolean_comparison_exp + id: String_comparison_exp + label: String_comparison_exp + lan_ip: inet_comparison_exp + node_ip: inet_comparison_exp + offline_at: timestamptz_comparison_exp + pin_build_id: Int_comparison_exp + pin_plugin_runtime: String_comparison_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 + servers_aggregate: servers_aggregate_bool_exp + shader_bake_progress: numeric_comparison_exp + shader_bake_progress_stage: String_comparison_exp + shader_bake_status: String_comparison_exp + shader_bake_status_history: jsonb_comparison_exp + start_port_range: Int_comparison_exp + status: e_game_server_node_statuses_enum_comparison_exp + supports_cpu_pinning: Boolean_comparison_exp + supports_low_latency: Boolean_comparison_exp + token: String_comparison_exp + total_server_count: Int_comparison_exp + update_status: String_comparison_exp + version: game_versions_bool_exp +} + +""" +unique or primary key constraints on table "game_server_nodes" +""" +enum game_server_nodes_constraint { + """ + unique or primary key constraint on columns "id" + """ + game_server_nodes_pkey +} + +""" +delete the field or element with specified path (for JSON arrays, negative integers count from the end) +""" +input game_server_nodes_delete_at_path_input { + cpu_frequency_info: [String!] + cpu_governor_info: [String!] + cpu_warnings: [String!] + cs2_launch_options: [String!] + cs2_video_settings: [String!] + gpu_info: [String!] + shader_bake_status_history: [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_server_nodes_delete_elem_input { + cpu_frequency_info: Int + cpu_governor_info: Int + cpu_warnings: Int + cs2_launch_options: Int + cs2_video_settings: Int + gpu_info: Int + shader_bake_status_history: Int +} + +""" +delete key/value pair or string element. key/value pairs are matched based on their key value +""" +input game_server_nodes_delete_key_input { + cpu_frequency_info: String + cpu_governor_info: String + cpu_warnings: String + cs2_launch_options: String + cs2_video_settings: String + gpu_info: String + shader_bake_status_history: String +} + +""" +input type for incrementing numeric columns in table "game_server_nodes" +""" +input game_server_nodes_inc_input { + build_id: Int + cpu_cores_per_socket: Int + cpu_sockets: Int + cpu_threads_per_core: Int + csgo_build_id: Int + demo_network_limiter: Int + disk_available_gb: Int + disk_used_percent: Int + end_port_range: Int + pin_build_id: Int + shader_bake_progress: numeric + start_port_range: Int +} + +""" +input type for inserting data into table "game_server_nodes" +""" +input game_server_nodes_insert_input { + build_id: Int + cpu_cores_per_socket: Int + cpu_frequency_info: jsonb + cpu_governor_info: jsonb + cpu_sockets: Int + cpu_threads_per_core: Int + cpu_warnings: jsonb + cs2_launch_options: jsonb + cs2_video_settings: jsonb + csgo_build_id: Int + demo_network_limiter: Int + disk_available_gb: Int + disk_used_percent: Int + e_region: server_regions_obj_rel_insert_input + e_status: e_game_server_node_statuses_obj_rel_insert_input + enabled: Boolean + enabled_for_match_making: Boolean + end_port_range: Int + gpu: Boolean + gpu_demos_enabled: Boolean + gpu_info: jsonb + gpu_rendering_enabled: Boolean + gpu_streaming_enabled: Boolean + id: String + label: String + lan_ip: inet + node_ip: inet + offline_at: timestamptz + pin_build_id: Int + 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 + shader_bake_progress: numeric + shader_bake_progress_stage: String + shader_bake_status: String + shader_bake_status_history: jsonb + start_port_range: Int + status: e_game_server_node_statuses_enum + supports_cpu_pinning: Boolean + supports_low_latency: Boolean + token: String + update_status: String + version: game_versions_obj_rel_insert_input +} + +"""aggregate max on columns""" +type game_server_nodes_max_fields { + """ + A computed field, executes function "available_node_server_count" + """ + available_server_count: Int + build_id: Int + cpu_cores_per_socket: Int + cpu_sockets: Int + cpu_threads_per_core: Int + csgo_build_id: Int + demo_network_limiter: Int + disk_available_gb: Int + disk_used_percent: Int + end_port_range: Int + id: String + label: String + offline_at: timestamptz + 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 + shader_bake_status: String + start_port_range: Int + token: String + + """ + A computed field, executes function "total_node_server_count" + """ + total_server_count: Int + update_status: String +} + +""" +order by max() on columns of table "game_server_nodes" +""" +input game_server_nodes_max_order_by { + build_id: order_by + cpu_cores_per_socket: order_by + cpu_sockets: order_by + cpu_threads_per_core: order_by + csgo_build_id: order_by + demo_network_limiter: order_by + disk_available_gb: order_by + disk_used_percent: order_by + end_port_range: order_by + id: order_by + label: order_by + offline_at: 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 + shader_bake_status: order_by + start_port_range: order_by + token: order_by + update_status: order_by +} + +"""aggregate min on columns""" +type game_server_nodes_min_fields { + """ + A computed field, executes function "available_node_server_count" + """ + available_server_count: Int + build_id: Int + cpu_cores_per_socket: Int + cpu_sockets: Int + cpu_threads_per_core: Int + csgo_build_id: Int + demo_network_limiter: Int + disk_available_gb: Int + disk_used_percent: Int + end_port_range: Int + id: String + label: String + offline_at: timestamptz + 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 + shader_bake_status: String + start_port_range: Int + token: String + + """ + A computed field, executes function "total_node_server_count" + """ + total_server_count: Int + update_status: String +} + +""" +order by min() on columns of table "game_server_nodes" +""" +input game_server_nodes_min_order_by { + build_id: order_by + cpu_cores_per_socket: order_by + cpu_sockets: order_by + cpu_threads_per_core: order_by + csgo_build_id: order_by + demo_network_limiter: order_by + disk_available_gb: order_by + disk_used_percent: order_by + end_port_range: order_by + id: order_by + label: order_by + offline_at: 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 + shader_bake_status: order_by + start_port_range: order_by + token: order_by + update_status: order_by +} + +""" +response of any mutation on the table "game_server_nodes" +""" +type game_server_nodes_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [game_server_nodes!]! +} + +""" +input type for inserting object relation for remote table "game_server_nodes" +""" +input game_server_nodes_obj_rel_insert_input { + data: game_server_nodes_insert_input! + + """upsert condition""" + on_conflict: game_server_nodes_on_conflict +} + +""" +on_conflict condition type for table "game_server_nodes" +""" +input game_server_nodes_on_conflict { + constraint: game_server_nodes_constraint! + update_columns: [game_server_nodes_update_column!]! = [] + where: game_server_nodes_bool_exp +} + +"""Ordering options when selecting data from "game_server_nodes".""" +input game_server_nodes_order_by { + available_server_count: order_by + build_id: order_by + cpu_cores_per_socket: order_by + cpu_frequency_info: order_by + cpu_governor_info: order_by + cpu_sockets: order_by + cpu_threads_per_core: order_by + cpu_warnings: order_by + cs2_launch_options: order_by + cs2_video_settings: order_by + csgo_build_id: order_by + demo_network_limiter: order_by + disk_available_gb: order_by + disk_used_percent: order_by + e_region: server_regions_order_by + e_status: e_game_server_node_statuses_order_by + enabled: order_by + enabled_for_match_making: order_by + end_port_range: order_by + gpu: order_by + gpu_demos_enabled: order_by + gpu_info: order_by + gpu_rendering_enabled: order_by + gpu_streaming_enabled: order_by + id: order_by + label: order_by + lan_ip: order_by + node_ip: order_by + offline_at: order_by + pin_build_id: order_by + pin_plugin_runtime: 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 + shader_bake_progress: order_by + shader_bake_progress_stage: order_by + shader_bake_status: order_by + shader_bake_status_history: order_by + start_port_range: order_by + status: order_by + supports_cpu_pinning: order_by + supports_low_latency: order_by + token: order_by + total_server_count: order_by + update_status: order_by + version: game_versions_order_by +} + +"""primary key columns input for table: game_server_nodes""" +input game_server_nodes_pk_columns_input { + id: String! +} + +"""prepend existing jsonb value of filtered columns with new jsonb value""" +input game_server_nodes_prepend_input { + cpu_frequency_info: jsonb + cpu_governor_info: jsonb + cpu_warnings: jsonb + cs2_launch_options: jsonb + cs2_video_settings: jsonb + gpu_info: jsonb + shader_bake_status_history: jsonb +} + +""" +select columns of table "game_server_nodes" +""" +enum game_server_nodes_select_column { + """column name""" + build_id + + """column name""" + cpu_cores_per_socket + + """column name""" + cpu_frequency_info + + """column name""" + cpu_governor_info + + """column name""" + cpu_sockets + + """column name""" + cpu_threads_per_core + + """column name""" + cpu_warnings + + """column name""" + cs2_launch_options + + """column name""" + cs2_video_settings + + """column name""" + csgo_build_id + + """column name""" + demo_network_limiter + + """column name""" + disk_available_gb + + """column name""" + disk_used_percent + + """column name""" + enabled + + """column name""" + enabled_for_match_making + + """column name""" + end_port_range + + """column name""" + gpu + + """column name""" + gpu_demos_enabled + + """column name""" + gpu_info + + """column name""" + gpu_rendering_enabled + + """column name""" + gpu_streaming_enabled + + """column name""" + id + + """column name""" + label + + """column name""" + lan_ip + + """column name""" + node_ip + + """column name""" + offline_at + + """column name""" + pin_build_id + + """column name""" + pin_plugin_runtime + + """column name""" + pin_plugin_version + + """column name""" + plugins_synced_at + + """column name""" + public_ip + + """column name""" + region + + """column name""" + shader_bake_progress + + """column name""" + shader_bake_progress_stage + + """column name""" + shader_bake_status + + """column name""" + shader_bake_status_history + + """column name""" + start_port_range + + """column name""" + status + + """column name""" + supports_cpu_pinning + + """column name""" + supports_low_latency + + """column name""" + token + + """column name""" + update_status +} + +""" +select "game_server_nodes_aggregate_bool_exp_bool_and_arguments_columns" columns of table "game_server_nodes" +""" +enum game_server_nodes_select_column_game_server_nodes_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + enabled + + """column name""" + enabled_for_match_making + + """column name""" + gpu + + """column name""" + gpu_demos_enabled + + """column name""" + gpu_rendering_enabled + + """column name""" + gpu_streaming_enabled + + """column name""" + supports_cpu_pinning + + """column name""" + supports_low_latency +} + +""" +select "game_server_nodes_aggregate_bool_exp_bool_or_arguments_columns" columns of table "game_server_nodes" +""" +enum game_server_nodes_select_column_game_server_nodes_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + enabled + + """column name""" + enabled_for_match_making + + """column name""" + gpu + + """column name""" + gpu_demos_enabled + + """column name""" + gpu_rendering_enabled + + """column name""" + gpu_streaming_enabled + + """column name""" + supports_cpu_pinning + + """column name""" + supports_low_latency +} + +""" +input type for updating data in table "game_server_nodes" +""" +input game_server_nodes_set_input { + build_id: Int + cpu_cores_per_socket: Int + cpu_frequency_info: jsonb + cpu_governor_info: jsonb + cpu_sockets: Int + cpu_threads_per_core: Int + cpu_warnings: jsonb + cs2_launch_options: jsonb + cs2_video_settings: jsonb + csgo_build_id: Int + demo_network_limiter: Int + disk_available_gb: Int + disk_used_percent: Int + enabled: Boolean + enabled_for_match_making: Boolean + end_port_range: Int + gpu: Boolean + gpu_demos_enabled: Boolean + gpu_info: jsonb + gpu_rendering_enabled: Boolean + gpu_streaming_enabled: Boolean + id: String + label: String + lan_ip: inet + node_ip: inet + offline_at: timestamptz + 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 + shader_bake_progress_stage: String + shader_bake_status: String + shader_bake_status_history: jsonb + start_port_range: Int + status: e_game_server_node_statuses_enum + supports_cpu_pinning: Boolean + supports_low_latency: Boolean + token: String + update_status: String +} + +"""aggregate stddev on columns""" +type game_server_nodes_stddev_fields { + """ + A computed field, executes function "available_node_server_count" + """ + available_server_count: Int + build_id: Float + cpu_cores_per_socket: Float + cpu_sockets: Float + cpu_threads_per_core: Float + csgo_build_id: Float + demo_network_limiter: Float + disk_available_gb: Float + disk_used_percent: Float + end_port_range: Float + pin_build_id: Float + shader_bake_progress: Float + start_port_range: Float + + """ + A computed field, executes function "total_node_server_count" + """ + total_server_count: Int +} + +""" +order by stddev() on columns of table "game_server_nodes" +""" +input game_server_nodes_stddev_order_by { + build_id: order_by + cpu_cores_per_socket: order_by + cpu_sockets: order_by + cpu_threads_per_core: order_by + csgo_build_id: order_by + demo_network_limiter: order_by + disk_available_gb: order_by + disk_used_percent: order_by + end_port_range: order_by + pin_build_id: order_by + shader_bake_progress: order_by + start_port_range: order_by +} + +"""aggregate stddev_pop on columns""" +type game_server_nodes_stddev_pop_fields { + """ + A computed field, executes function "available_node_server_count" + """ + available_server_count: Int + build_id: Float + cpu_cores_per_socket: Float + cpu_sockets: Float + cpu_threads_per_core: Float + csgo_build_id: Float + demo_network_limiter: Float + disk_available_gb: Float + disk_used_percent: Float + end_port_range: Float + pin_build_id: Float + shader_bake_progress: Float + start_port_range: Float + + """ + A computed field, executes function "total_node_server_count" + """ + total_server_count: Int +} + +""" +order by stddev_pop() on columns of table "game_server_nodes" +""" +input game_server_nodes_stddev_pop_order_by { + build_id: order_by + cpu_cores_per_socket: order_by + cpu_sockets: order_by + cpu_threads_per_core: order_by + csgo_build_id: order_by + demo_network_limiter: order_by + disk_available_gb: order_by + disk_used_percent: order_by + end_port_range: order_by + pin_build_id: order_by + shader_bake_progress: order_by + start_port_range: order_by +} + +"""aggregate stddev_samp on columns""" +type game_server_nodes_stddev_samp_fields { + """ + A computed field, executes function "available_node_server_count" + """ + available_server_count: Int + build_id: Float + cpu_cores_per_socket: Float + cpu_sockets: Float + cpu_threads_per_core: Float + csgo_build_id: Float + demo_network_limiter: Float + disk_available_gb: Float + disk_used_percent: Float + end_port_range: Float + pin_build_id: Float + shader_bake_progress: Float + start_port_range: Float + + """ + A computed field, executes function "total_node_server_count" + """ + total_server_count: Int +} + +""" +order by stddev_samp() on columns of table "game_server_nodes" +""" +input game_server_nodes_stddev_samp_order_by { + build_id: order_by + cpu_cores_per_socket: order_by + cpu_sockets: order_by + cpu_threads_per_core: order_by + csgo_build_id: order_by + demo_network_limiter: order_by + disk_available_gb: order_by + disk_used_percent: order_by + end_port_range: order_by + pin_build_id: order_by + shader_bake_progress: order_by + start_port_range: order_by +} + +""" +Streaming cursor of the table "game_server_nodes" +""" +input game_server_nodes_stream_cursor_input { + """Stream column input with initial value""" + initial_value: game_server_nodes_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input game_server_nodes_stream_cursor_value_input { + build_id: Int + cpu_cores_per_socket: Int + cpu_frequency_info: jsonb + cpu_governor_info: jsonb + cpu_sockets: Int + cpu_threads_per_core: Int + cpu_warnings: jsonb + cs2_launch_options: jsonb + cs2_video_settings: jsonb + csgo_build_id: Int + demo_network_limiter: Int + disk_available_gb: Int + disk_used_percent: Int + enabled: Boolean + enabled_for_match_making: Boolean + end_port_range: Int + gpu: Boolean + gpu_demos_enabled: Boolean + gpu_info: jsonb + gpu_rendering_enabled: Boolean + gpu_streaming_enabled: Boolean + id: String + label: String + lan_ip: inet + node_ip: inet + offline_at: timestamptz + 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 + shader_bake_progress_stage: String + shader_bake_status: String + shader_bake_status_history: jsonb + start_port_range: Int + status: e_game_server_node_statuses_enum + supports_cpu_pinning: Boolean + supports_low_latency: Boolean + token: String + update_status: String +} + +"""aggregate sum on columns""" +type game_server_nodes_sum_fields { + """ + A computed field, executes function "available_node_server_count" + """ + available_server_count: Int + build_id: Int + cpu_cores_per_socket: Int + cpu_sockets: Int + cpu_threads_per_core: Int + csgo_build_id: Int + demo_network_limiter: Int + disk_available_gb: Int + disk_used_percent: Int + end_port_range: Int + pin_build_id: Int + shader_bake_progress: numeric + start_port_range: Int + + """ + A computed field, executes function "total_node_server_count" + """ + total_server_count: Int +} + +""" +order by sum() on columns of table "game_server_nodes" +""" +input game_server_nodes_sum_order_by { + build_id: order_by + cpu_cores_per_socket: order_by + cpu_sockets: order_by + cpu_threads_per_core: order_by + csgo_build_id: order_by + demo_network_limiter: order_by + disk_available_gb: order_by + disk_used_percent: order_by + end_port_range: order_by + pin_build_id: order_by + shader_bake_progress: order_by + start_port_range: order_by +} + +""" +update columns of table "game_server_nodes" +""" +enum game_server_nodes_update_column { + """column name""" + build_id + + """column name""" + cpu_cores_per_socket + + """column name""" + cpu_frequency_info + + """column name""" + cpu_governor_info + + """column name""" + cpu_sockets + + """column name""" + cpu_threads_per_core + + """column name""" + cpu_warnings + + """column name""" + cs2_launch_options + + """column name""" + cs2_video_settings + + """column name""" + csgo_build_id + + """column name""" + demo_network_limiter + + """column name""" + disk_available_gb + + """column name""" + disk_used_percent + + """column name""" + enabled + + """column name""" + enabled_for_match_making + + """column name""" + end_port_range + + """column name""" + gpu + + """column name""" + gpu_demos_enabled + + """column name""" + gpu_info + + """column name""" + gpu_rendering_enabled + + """column name""" + gpu_streaming_enabled + + """column name""" + id + + """column name""" + label + + """column name""" + lan_ip + + """column name""" + node_ip + + """column name""" + offline_at + + """column name""" + pin_build_id + + """column name""" + pin_plugin_runtime + + """column name""" + pin_plugin_version + + """column name""" + plugins_synced_at + + """column name""" + public_ip + + """column name""" + region + + """column name""" + shader_bake_progress + + """column name""" + shader_bake_progress_stage + + """column name""" + shader_bake_status + + """column name""" + shader_bake_status_history + + """column name""" + start_port_range + + """column name""" + status + + """column name""" + supports_cpu_pinning + + """column name""" + supports_low_latency + + """column name""" + token + + """column name""" + update_status +} + +input game_server_nodes_updates { + """append existing jsonb value of filtered columns with new jsonb value""" + _append: game_server_nodes_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: game_server_nodes_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_server_nodes_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: game_server_nodes_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: game_server_nodes_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: game_server_nodes_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: game_server_nodes_set_input + + """filter the rows which have to be updated""" + where: game_server_nodes_bool_exp! +} + +"""aggregate var_pop on columns""" +type game_server_nodes_var_pop_fields { + """ + A computed field, executes function "available_node_server_count" + """ + available_server_count: Int + build_id: Float + cpu_cores_per_socket: Float + cpu_sockets: Float + cpu_threads_per_core: Float + csgo_build_id: Float + demo_network_limiter: Float + disk_available_gb: Float + disk_used_percent: Float + end_port_range: Float + pin_build_id: Float + shader_bake_progress: Float + start_port_range: Float + + """ + A computed field, executes function "total_node_server_count" + """ + total_server_count: Int +} + +""" +order by var_pop() on columns of table "game_server_nodes" +""" +input game_server_nodes_var_pop_order_by { + build_id: order_by + cpu_cores_per_socket: order_by + cpu_sockets: order_by + cpu_threads_per_core: order_by + csgo_build_id: order_by + demo_network_limiter: order_by + disk_available_gb: order_by + disk_used_percent: order_by + end_port_range: order_by + pin_build_id: order_by + shader_bake_progress: order_by + start_port_range: order_by +} + +"""aggregate var_samp on columns""" +type game_server_nodes_var_samp_fields { + """ + A computed field, executes function "available_node_server_count" + """ + available_server_count: Int + build_id: Float + cpu_cores_per_socket: Float + cpu_sockets: Float + cpu_threads_per_core: Float + csgo_build_id: Float + demo_network_limiter: Float + disk_available_gb: Float + disk_used_percent: Float + end_port_range: Float + pin_build_id: Float + shader_bake_progress: Float + start_port_range: Float + + """ + A computed field, executes function "total_node_server_count" + """ + total_server_count: Int +} + +""" +order by var_samp() on columns of table "game_server_nodes" +""" +input game_server_nodes_var_samp_order_by { + build_id: order_by + cpu_cores_per_socket: order_by + cpu_sockets: order_by + cpu_threads_per_core: order_by + csgo_build_id: order_by + demo_network_limiter: order_by + disk_available_gb: order_by + disk_used_percent: order_by + end_port_range: order_by + pin_build_id: order_by + shader_bake_progress: order_by + start_port_range: order_by +} + +"""aggregate variance on columns""" +type game_server_nodes_variance_fields { + """ + A computed field, executes function "available_node_server_count" + """ + available_server_count: Int + build_id: Float + cpu_cores_per_socket: Float + cpu_sockets: Float + cpu_threads_per_core: Float + csgo_build_id: Float + demo_network_limiter: Float + disk_available_gb: Float + disk_used_percent: Float + end_port_range: Float + pin_build_id: Float + shader_bake_progress: Float + start_port_range: Float + + """ + A computed field, executes function "total_node_server_count" + """ + total_server_count: Int +} + +""" +order by variance() on columns of table "game_server_nodes" +""" +input game_server_nodes_variance_order_by { + build_id: order_by + cpu_cores_per_socket: order_by + cpu_sockets: order_by + cpu_threads_per_core: order_by + csgo_build_id: order_by + demo_network_limiter: order_by + disk_available_gb: order_by + disk_used_percent: order_by + end_port_range: order_by + pin_build_id: order_by + shader_bake_progress: order_by + start_port_range: order_by +} + +""" +columns and relationships of "game_versions" +""" +type game_versions { + build_id: Int! + current: Boolean + cvars: Boolean! + description: String! + downloads( + """JSON select path""" + path: String + ): jsonb + updated_at: timestamptz! + version: String! +} + +""" +aggregated selection of "game_versions" +""" +type game_versions_aggregate { + aggregate: game_versions_aggregate_fields + nodes: [game_versions!]! +} + +""" +aggregate fields of "game_versions" +""" +type game_versions_aggregate_fields { + avg: game_versions_avg_fields + count(columns: [game_versions_select_column!], distinct: Boolean): Int! + max: game_versions_max_fields + min: game_versions_min_fields + stddev: game_versions_stddev_fields + stddev_pop: game_versions_stddev_pop_fields + stddev_samp: game_versions_stddev_samp_fields + sum: game_versions_sum_fields + var_pop: game_versions_var_pop_fields + var_samp: game_versions_var_samp_fields + variance: game_versions_variance_fields +} + +"""append existing jsonb value of filtered columns with new jsonb value""" +input game_versions_append_input { + downloads: jsonb +} + +"""aggregate avg on columns""" +type game_versions_avg_fields { + build_id: Float +} + +""" +Boolean expression to filter rows from the table "game_versions". All fields are combined with a logical 'AND'. +""" +input game_versions_bool_exp { + _and: [game_versions_bool_exp!] + _not: game_versions_bool_exp + _or: [game_versions_bool_exp!] + build_id: Int_comparison_exp + current: Boolean_comparison_exp + cvars: Boolean_comparison_exp + description: String_comparison_exp + downloads: jsonb_comparison_exp + updated_at: timestamptz_comparison_exp + version: String_comparison_exp +} + +""" +unique or primary key constraints on table "game_versions" +""" +enum game_versions_constraint { + """ + unique or primary key constraint on columns "build_id" + """ + game_versions_pkey + + """ + unique or primary key constraint on columns "current" + """ + idx_game_versions_current +} + +""" +delete the field or element with specified path (for JSON arrays, negative integers count from the end) +""" +input game_versions_delete_at_path_input { + downloads: [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_versions_delete_elem_input { + downloads: Int +} + +""" +delete key/value pair or string element. key/value pairs are matched based on their key value +""" +input game_versions_delete_key_input { + downloads: String +} + +""" +input type for incrementing numeric columns in table "game_versions" +""" +input game_versions_inc_input { + build_id: Int +} + +""" +input type for inserting data into table "game_versions" +""" +input game_versions_insert_input { + build_id: Int + current: Boolean + cvars: Boolean + description: String + downloads: jsonb + updated_at: timestamptz + version: String +} + +"""aggregate max on columns""" +type game_versions_max_fields { + build_id: Int + description: String + updated_at: timestamptz + version: String +} + +"""aggregate min on columns""" +type game_versions_min_fields { + build_id: Int + description: String + updated_at: timestamptz + version: String +} + +""" +response of any mutation on the table "game_versions" +""" +type game_versions_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [game_versions!]! +} + +""" +input type for inserting object relation for remote table "game_versions" +""" +input game_versions_obj_rel_insert_input { + data: game_versions_insert_input! + + """upsert condition""" + on_conflict: game_versions_on_conflict +} + +""" +on_conflict condition type for table "game_versions" +""" +input game_versions_on_conflict { + constraint: game_versions_constraint! + update_columns: [game_versions_update_column!]! = [] + where: game_versions_bool_exp +} + +"""Ordering options when selecting data from "game_versions".""" +input game_versions_order_by { + build_id: order_by + current: order_by + cvars: order_by + description: order_by + downloads: order_by + updated_at: order_by + version: order_by +} + +"""primary key columns input for table: game_versions""" +input game_versions_pk_columns_input { + build_id: Int! +} + +"""prepend existing jsonb value of filtered columns with new jsonb value""" +input game_versions_prepend_input { + downloads: jsonb +} + +""" +select columns of table "game_versions" +""" +enum game_versions_select_column { + """column name""" + build_id + + """column name""" + current + + """column name""" + cvars + + """column name""" + description + + """column name""" + downloads + + """column name""" + updated_at + + """column name""" + version +} + +""" +input type for updating data in table "game_versions" +""" +input game_versions_set_input { + build_id: Int + current: Boolean + cvars: Boolean + description: String + downloads: jsonb + updated_at: timestamptz + version: String +} + +"""aggregate stddev on columns""" +type game_versions_stddev_fields { + build_id: Float +} + +"""aggregate stddev_pop on columns""" +type game_versions_stddev_pop_fields { + build_id: Float +} + +"""aggregate stddev_samp on columns""" +type game_versions_stddev_samp_fields { + build_id: Float +} + +""" +Streaming cursor of the table "game_versions" +""" +input game_versions_stream_cursor_input { + """Stream column input with initial value""" + initial_value: game_versions_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input game_versions_stream_cursor_value_input { + build_id: Int + current: Boolean + cvars: Boolean + description: String + downloads: jsonb + updated_at: timestamptz + version: String +} + +"""aggregate sum on columns""" +type game_versions_sum_fields { + build_id: Int +} + +""" +update columns of table "game_versions" +""" +enum game_versions_update_column { + """column name""" + build_id + + """column name""" + current + + """column name""" + cvars + + """column name""" + description + + """column name""" + downloads + + """column name""" + updated_at + + """column name""" + version +} + +input game_versions_updates { + """append existing jsonb value of filtered columns with new jsonb value""" + _append: game_versions_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: game_versions_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_versions_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: game_versions_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: game_versions_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: game_versions_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: game_versions_set_input + + """filter the rows which have to be updated""" + where: game_versions_bool_exp! +} + +"""aggregate var_pop on columns""" +type game_versions_var_pop_fields { + build_id: Float +} + +"""aggregate var_samp on columns""" +type game_versions_var_samp_fields { + build_id: Float +} + +"""aggregate variance on columns""" +type game_versions_variance_fields { + build_id: Float +} + +""" +columns and relationships of "gamedata_signature_validations" +""" +type gamedata_signature_validations { + branch: String! + build_id: Int! + + """An object relationship""" + game_version: game_versions! + id: uuid! + results( + """JSON select path""" + path: String + ): jsonb + status: String! + validated_at: timestamptz! +} + +""" +aggregated selection of "gamedata_signature_validations" +""" +type gamedata_signature_validations_aggregate { + aggregate: gamedata_signature_validations_aggregate_fields + nodes: [gamedata_signature_validations!]! +} + +""" +aggregate fields of "gamedata_signature_validations" +""" +type gamedata_signature_validations_aggregate_fields { + avg: gamedata_signature_validations_avg_fields + count(columns: [gamedata_signature_validations_select_column!], distinct: Boolean): Int! + max: gamedata_signature_validations_max_fields + min: gamedata_signature_validations_min_fields + stddev: gamedata_signature_validations_stddev_fields + stddev_pop: gamedata_signature_validations_stddev_pop_fields + stddev_samp: gamedata_signature_validations_stddev_samp_fields + sum: gamedata_signature_validations_sum_fields + var_pop: gamedata_signature_validations_var_pop_fields + var_samp: gamedata_signature_validations_var_samp_fields + variance: gamedata_signature_validations_variance_fields +} + +"""append existing jsonb value of filtered columns with new jsonb value""" +input gamedata_signature_validations_append_input { + results: jsonb +} + +"""aggregate avg on columns""" +type gamedata_signature_validations_avg_fields { + build_id: Float +} + +""" +Boolean expression to filter rows from the table "gamedata_signature_validations". All fields are combined with a logical 'AND'. +""" +input gamedata_signature_validations_bool_exp { + _and: [gamedata_signature_validations_bool_exp!] + _not: gamedata_signature_validations_bool_exp + _or: [gamedata_signature_validations_bool_exp!] + branch: String_comparison_exp + build_id: Int_comparison_exp + game_version: game_versions_bool_exp + id: uuid_comparison_exp + results: jsonb_comparison_exp + status: String_comparison_exp + validated_at: timestamptz_comparison_exp +} + +""" +unique or primary key constraints on table "gamedata_signature_validations" +""" +enum gamedata_signature_validations_constraint { + """ + unique or primary key constraint on columns "build_id", "branch" + """ + gamedata_signature_validations_build_branch_idx + + """ + unique or primary key constraint on columns "id" + """ + gamedata_signature_validations_pkey +} + +""" +delete the field or element with specified path (for JSON arrays, negative integers count from the end) +""" +input gamedata_signature_validations_delete_at_path_input { + results: [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 gamedata_signature_validations_delete_elem_input { + results: Int +} + +""" +delete key/value pair or string element. key/value pairs are matched based on their key value +""" +input gamedata_signature_validations_delete_key_input { + results: String +} + +""" +input type for incrementing numeric columns in table "gamedata_signature_validations" +""" +input gamedata_signature_validations_inc_input { + build_id: Int +} + +""" +input type for inserting data into table "gamedata_signature_validations" +""" +input gamedata_signature_validations_insert_input { + branch: String + build_id: Int + game_version: game_versions_obj_rel_insert_input + id: uuid + results: jsonb + status: String + validated_at: timestamptz +} + +"""aggregate max on columns""" +type gamedata_signature_validations_max_fields { + branch: String + build_id: Int + id: uuid + status: String + validated_at: timestamptz +} + +"""aggregate min on columns""" +type gamedata_signature_validations_min_fields { + branch: String + build_id: Int + id: uuid + status: String + validated_at: timestamptz +} + +""" +response of any mutation on the table "gamedata_signature_validations" +""" +type gamedata_signature_validations_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [gamedata_signature_validations!]! +} + +""" +on_conflict condition type for table "gamedata_signature_validations" +""" +input gamedata_signature_validations_on_conflict { + constraint: gamedata_signature_validations_constraint! + update_columns: [gamedata_signature_validations_update_column!]! = [] + where: gamedata_signature_validations_bool_exp +} + +""" +Ordering options when selecting data from "gamedata_signature_validations". +""" +input gamedata_signature_validations_order_by { + branch: order_by + build_id: order_by + game_version: game_versions_order_by + id: order_by + results: order_by + status: order_by + validated_at: order_by +} + +"""primary key columns input for table: gamedata_signature_validations""" +input gamedata_signature_validations_pk_columns_input { + id: uuid! +} + +"""prepend existing jsonb value of filtered columns with new jsonb value""" +input gamedata_signature_validations_prepend_input { + results: jsonb +} + +""" +select columns of table "gamedata_signature_validations" +""" +enum gamedata_signature_validations_select_column { + """column name""" + branch + + """column name""" + build_id + + """column name""" + id + + """column name""" + results + + """column name""" + status + + """column name""" + validated_at +} + +""" +input type for updating data in table "gamedata_signature_validations" +""" +input gamedata_signature_validations_set_input { + branch: String + build_id: Int + id: uuid + results: jsonb + status: String + validated_at: timestamptz +} + +"""aggregate stddev on columns""" +type gamedata_signature_validations_stddev_fields { + build_id: Float +} + +"""aggregate stddev_pop on columns""" +type gamedata_signature_validations_stddev_pop_fields { + build_id: Float +} + +"""aggregate stddev_samp on columns""" +type gamedata_signature_validations_stddev_samp_fields { + build_id: Float +} + +""" +Streaming cursor of the table "gamedata_signature_validations" +""" +input gamedata_signature_validations_stream_cursor_input { + """Stream column input with initial value""" + initial_value: gamedata_signature_validations_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input gamedata_signature_validations_stream_cursor_value_input { + branch: String + build_id: Int + id: uuid + results: jsonb + status: String + validated_at: timestamptz +} + +"""aggregate sum on columns""" +type gamedata_signature_validations_sum_fields { + build_id: Int +} + +""" +update columns of table "gamedata_signature_validations" +""" +enum gamedata_signature_validations_update_column { + """column name""" + branch + + """column name""" + build_id + + """column name""" + id + + """column name""" + results + + """column name""" + status + + """column name""" + validated_at +} + +input gamedata_signature_validations_updates { + """append existing jsonb value of filtered columns with new jsonb value""" + _append: gamedata_signature_validations_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: gamedata_signature_validations_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: gamedata_signature_validations_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: gamedata_signature_validations_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: gamedata_signature_validations_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: gamedata_signature_validations_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: gamedata_signature_validations_set_input + + """filter the rows which have to be updated""" + where: gamedata_signature_validations_bool_exp! +} + +"""aggregate var_pop on columns""" +type gamedata_signature_validations_var_pop_fields { + build_id: Float +} + +"""aggregate var_samp on columns""" +type gamedata_signature_validations_var_samp_fields { + build_id: Float +} + +"""aggregate variance on columns""" +type gamedata_signature_validations_variance_fields { + build_id: Float +} + +input get_event_leaderboard_args { + _category: String + _event_id: uuid + _match_type: String + _min_rounds: Int +} + +input get_leaderboard_args { + _category: String + _exclude_tournaments: Boolean + _match_type: String + _role: String + _season_id: uuid + _source: String + _window_days: Int +} + +input get_league_season_leaderboard_args { + _category: String + _league_season_id: uuid + _role: String +} + +input get_player_leaderboard_rank_args { + _category: String + _exclude_tournaments: Boolean + _match_type: String + _player_steam_id: String + _season_id: uuid + _source: String + _window_days: Int +} + +input get_tournament_leaderboard_args { + _tournament_id: uuid +} + +scalar inet + +""" +Boolean expression to compare columns of type "inet". All fields are combined with logical 'AND'. +""" +input inet_comparison_exp { + _eq: inet + _gt: inet + _gte: inet + _in: [inet!] + _is_null: Boolean + _lt: inet + _lte: inet + _neq: inet + _nin: [inet!] +} + +scalar json + +""" +Boolean expression to compare columns of type "json". All fields are combined with logical 'AND'. +""" +input json_comparison_exp { + _eq: json + _gt: json + _gte: json + _in: [json!] + _is_null: Boolean + _lt: json + _lte: json + _neq: json + _nin: [json!] +} + +scalar jsonb + +input jsonb_cast_exp { + String: String_comparison_exp +} + +""" +Boolean expression to compare columns of type "jsonb". All fields are combined with logical 'AND'. +""" +input jsonb_comparison_exp { + _cast: jsonb_cast_exp + + """is the column contained in the given json value""" + _contained_in: jsonb + + """does the column contain the given json value at the top level""" + _contains: jsonb + _eq: jsonb + _gt: jsonb + _gte: jsonb + + """does the string exist as a top-level key in the column""" + _has_key: String + + """do all of these strings exist as top-level keys in the column""" + _has_keys_all: [String!] + + """do any of these strings exist as top-level keys in the column""" + _has_keys_any: [String!] + _in: [jsonb!] + _is_null: Boolean + _lt: jsonb + _lte: jsonb + _neq: jsonb + _nin: [jsonb!] +} + +""" +columns and relationships of "leaderboard_entries" +""" +type leaderboard_entries { + matches_played: Int + player_avatar_url: String + player_country: String + player_custom_avatar_url: String + player_name: String! + player_steam_id: String! + secondary_value: float8 + tertiary_value: float8 + value: float8! +} + +type leaderboard_entries_aggregate { + aggregate: leaderboard_entries_aggregate_fields + nodes: [leaderboard_entries!]! +} + +""" +aggregate fields of "leaderboard_entries" +""" +type leaderboard_entries_aggregate_fields { + avg: leaderboard_entries_avg_fields + count(columns: [leaderboard_entries_select_column!], distinct: Boolean): Int! + max: leaderboard_entries_max_fields + min: leaderboard_entries_min_fields + stddev: leaderboard_entries_stddev_fields + stddev_pop: leaderboard_entries_stddev_pop_fields + stddev_samp: leaderboard_entries_stddev_samp_fields + sum: leaderboard_entries_sum_fields + var_pop: leaderboard_entries_var_pop_fields + var_samp: leaderboard_entries_var_samp_fields + variance: leaderboard_entries_variance_fields +} + +"""aggregate avg on columns""" +type leaderboard_entries_avg_fields { + matches_played: Float + secondary_value: Float + tertiary_value: Float + value: Float +} + +""" +Boolean expression to filter rows from the table "leaderboard_entries". All fields are combined with a logical 'AND'. +""" +input leaderboard_entries_bool_exp { + _and: [leaderboard_entries_bool_exp!] + _not: leaderboard_entries_bool_exp + _or: [leaderboard_entries_bool_exp!] + matches_played: Int_comparison_exp + player_avatar_url: String_comparison_exp + player_country: String_comparison_exp + player_custom_avatar_url: String_comparison_exp + player_name: String_comparison_exp + player_steam_id: String_comparison_exp + secondary_value: float8_comparison_exp + tertiary_value: float8_comparison_exp + value: float8_comparison_exp +} + +""" +input type for incrementing numeric columns in table "leaderboard_entries" +""" +input leaderboard_entries_inc_input { + matches_played: Int + secondary_value: float8 + tertiary_value: float8 + value: float8 +} + +""" +input type for inserting data into table "leaderboard_entries" +""" +input leaderboard_entries_insert_input { + matches_played: Int + player_avatar_url: String + player_country: String + player_custom_avatar_url: String + player_name: String + player_steam_id: String + secondary_value: float8 + tertiary_value: float8 + value: float8 +} + +"""aggregate max on columns""" +type leaderboard_entries_max_fields { + matches_played: Int + player_avatar_url: String + player_country: String + player_custom_avatar_url: String + player_name: String + player_steam_id: String + secondary_value: float8 + tertiary_value: float8 + value: float8 +} + +"""aggregate min on columns""" +type leaderboard_entries_min_fields { + matches_played: Int + player_avatar_url: String + player_country: String + player_custom_avatar_url: String + player_name: String + player_steam_id: String + secondary_value: float8 + tertiary_value: float8 + value: float8 +} + +""" +response of any mutation on the table "leaderboard_entries" +""" +type leaderboard_entries_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [leaderboard_entries!]! +} + +"""Ordering options when selecting data from "leaderboard_entries".""" +input leaderboard_entries_order_by { + matches_played: order_by + player_avatar_url: order_by + player_country: order_by + player_custom_avatar_url: order_by + player_name: order_by + player_steam_id: order_by + secondary_value: order_by + tertiary_value: order_by + value: order_by +} + +""" +select columns of table "leaderboard_entries" +""" +enum leaderboard_entries_select_column { + """column name""" + matches_played + + """column name""" + player_avatar_url + + """column name""" + player_country + + """column name""" + player_custom_avatar_url + + """column name""" + player_name + + """column name""" + player_steam_id + + """column name""" + secondary_value + + """column name""" + tertiary_value + + """column name""" + value +} + +""" +input type for updating data in table "leaderboard_entries" +""" +input leaderboard_entries_set_input { + matches_played: Int + player_avatar_url: String + player_country: String + player_custom_avatar_url: String + player_name: String + player_steam_id: String + secondary_value: float8 + tertiary_value: float8 + value: float8 +} + +"""aggregate stddev on columns""" +type leaderboard_entries_stddev_fields { + matches_played: Float + secondary_value: Float + tertiary_value: Float + value: Float +} + +"""aggregate stddev_pop on columns""" +type leaderboard_entries_stddev_pop_fields { + matches_played: Float + secondary_value: Float + tertiary_value: Float + value: Float +} + +"""aggregate stddev_samp on columns""" +type leaderboard_entries_stddev_samp_fields { + matches_played: Float + secondary_value: Float + tertiary_value: Float + value: Float +} + +""" +Streaming cursor of the table "leaderboard_entries" +""" +input leaderboard_entries_stream_cursor_input { + """Stream column input with initial value""" + initial_value: leaderboard_entries_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input leaderboard_entries_stream_cursor_value_input { + matches_played: Int + player_avatar_url: String + player_country: String + player_custom_avatar_url: String + player_name: String + player_steam_id: String + secondary_value: float8 + tertiary_value: float8 + value: float8 +} + +"""aggregate sum on columns""" +type leaderboard_entries_sum_fields { + matches_played: Int + secondary_value: float8 + tertiary_value: float8 + value: float8 +} + +input leaderboard_entries_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: leaderboard_entries_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: leaderboard_entries_set_input + + """filter the rows which have to be updated""" + where: leaderboard_entries_bool_exp! +} + +"""aggregate var_pop on columns""" +type leaderboard_entries_var_pop_fields { + matches_played: Float + secondary_value: Float + tertiary_value: Float + value: Float +} + +"""aggregate var_samp on columns""" +type leaderboard_entries_var_samp_fields { + matches_played: Float + secondary_value: Float + tertiary_value: Float + value: Float +} + +"""aggregate variance on columns""" +type leaderboard_entries_variance_fields { + matches_played: Float + secondary_value: Float + tertiary_value: Float + value: Float +} + +input league_award_forfeit_args { + _tournament_bracket_id: uuid + _winning_tournament_team_id: uuid +} + +""" +columns and relationships of "league_divisions" +""" +type league_divisions { + created_at: timestamptz! + id: uuid! + name: String! + + """An array relationship""" + season_divisions( + """distinct select on columns""" + distinct_on: [league_season_divisions_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: [league_season_divisions_order_by!] + + """filter the rows returned""" + where: league_season_divisions_bool_exp + ): [league_season_divisions!]! + + """An aggregate relationship""" + season_divisions_aggregate( + """distinct select on columns""" + distinct_on: [league_season_divisions_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: [league_season_divisions_order_by!] + + """filter the rows returned""" + where: league_season_divisions_bool_exp + ): league_season_divisions_aggregate! + tier: smallint! +} + +""" +aggregated selection of "league_divisions" +""" +type league_divisions_aggregate { + aggregate: league_divisions_aggregate_fields + nodes: [league_divisions!]! +} + +""" +aggregate fields of "league_divisions" +""" +type league_divisions_aggregate_fields { + avg: league_divisions_avg_fields + count(columns: [league_divisions_select_column!], distinct: Boolean): Int! + max: league_divisions_max_fields + min: league_divisions_min_fields + stddev: league_divisions_stddev_fields + stddev_pop: league_divisions_stddev_pop_fields + stddev_samp: league_divisions_stddev_samp_fields + sum: league_divisions_sum_fields + var_pop: league_divisions_var_pop_fields + var_samp: league_divisions_var_samp_fields + variance: league_divisions_variance_fields +} + +"""aggregate avg on columns""" +type league_divisions_avg_fields { + tier: Float +} + +""" +Boolean expression to filter rows from the table "league_divisions". All fields are combined with a logical 'AND'. +""" +input league_divisions_bool_exp { + _and: [league_divisions_bool_exp!] + _not: league_divisions_bool_exp + _or: [league_divisions_bool_exp!] + created_at: timestamptz_comparison_exp + id: uuid_comparison_exp + name: String_comparison_exp + season_divisions: league_season_divisions_bool_exp + season_divisions_aggregate: league_season_divisions_aggregate_bool_exp + tier: smallint_comparison_exp +} + +""" +unique or primary key constraints on table "league_divisions" +""" +enum league_divisions_constraint { + """ + unique or primary key constraint on columns "name" + """ + league_divisions_name_key + + """ + unique or primary key constraint on columns "id" + """ + league_divisions_pkey + + """ + unique or primary key constraint on columns "tier" + """ + league_divisions_tier_key +} + +""" +input type for incrementing numeric columns in table "league_divisions" +""" +input league_divisions_inc_input { + tier: smallint +} + +""" +input type for inserting data into table "league_divisions" +""" +input league_divisions_insert_input { + created_at: timestamptz + id: uuid + name: String + season_divisions: league_season_divisions_arr_rel_insert_input + tier: smallint +} + +"""aggregate max on columns""" +type league_divisions_max_fields { + created_at: timestamptz + id: uuid + name: String + tier: smallint +} + +"""aggregate min on columns""" +type league_divisions_min_fields { + created_at: timestamptz + id: uuid + name: String + tier: smallint +} + +""" +response of any mutation on the table "league_divisions" +""" +type league_divisions_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [league_divisions!]! +} + +""" +input type for inserting object relation for remote table "league_divisions" +""" +input league_divisions_obj_rel_insert_input { + data: league_divisions_insert_input! + + """upsert condition""" + on_conflict: league_divisions_on_conflict +} + +""" +on_conflict condition type for table "league_divisions" +""" +input league_divisions_on_conflict { + constraint: league_divisions_constraint! + update_columns: [league_divisions_update_column!]! = [] + where: league_divisions_bool_exp +} + +"""Ordering options when selecting data from "league_divisions".""" +input league_divisions_order_by { + created_at: order_by + id: order_by + name: order_by + season_divisions_aggregate: league_season_divisions_aggregate_order_by + tier: order_by +} + +"""primary key columns input for table: league_divisions""" +input league_divisions_pk_columns_input { + id: uuid! +} + +""" +select columns of table "league_divisions" +""" +enum league_divisions_select_column { + """column name""" + created_at + + """column name""" + id + + """column name""" + name + + """column name""" + tier +} + +""" +input type for updating data in table "league_divisions" +""" +input league_divisions_set_input { + created_at: timestamptz + id: uuid + name: String + tier: smallint +} + +"""aggregate stddev on columns""" +type league_divisions_stddev_fields { + tier: Float +} + +"""aggregate stddev_pop on columns""" +type league_divisions_stddev_pop_fields { + tier: Float +} + +"""aggregate stddev_samp on columns""" +type league_divisions_stddev_samp_fields { + tier: Float +} + +""" +Streaming cursor of the table "league_divisions" +""" +input league_divisions_stream_cursor_input { + """Stream column input with initial value""" + initial_value: league_divisions_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input league_divisions_stream_cursor_value_input { + created_at: timestamptz + id: uuid + name: String + tier: smallint +} + +"""aggregate sum on columns""" +type league_divisions_sum_fields { + tier: smallint +} + +""" +update columns of table "league_divisions" +""" +enum league_divisions_update_column { + """column name""" + created_at + + """column name""" + id + + """column name""" + name + + """column name""" + tier +} + +input league_divisions_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: league_divisions_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: league_divisions_set_input + + """filter the rows which have to be updated""" + where: league_divisions_bool_exp! +} + +"""aggregate var_pop on columns""" +type league_divisions_var_pop_fields { + tier: Float +} + +"""aggregate var_samp on columns""" +type league_divisions_var_samp_fields { + tier: Float +} + +"""aggregate variance on columns""" +type league_divisions_variance_fields { + tier: Float +} + +""" +columns and relationships of "league_match_weeks" +""" +type league_match_weeks { + closes_at: timestamptz! + created_at: timestamptz! + default_match_at: timestamptz! + id: uuid! + league_season_id: uuid! + opens_at: timestamptz! + + """An object relationship""" + season: league_seasons! + week_number: Int! +} + +""" +aggregated selection of "league_match_weeks" +""" +type league_match_weeks_aggregate { + aggregate: league_match_weeks_aggregate_fields + nodes: [league_match_weeks!]! +} + +input league_match_weeks_aggregate_bool_exp { + count: league_match_weeks_aggregate_bool_exp_count +} + +input league_match_weeks_aggregate_bool_exp_count { + arguments: [league_match_weeks_select_column!] + distinct: Boolean + filter: league_match_weeks_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "league_match_weeks" +""" +type league_match_weeks_aggregate_fields { + avg: league_match_weeks_avg_fields + count(columns: [league_match_weeks_select_column!], distinct: Boolean): Int! + max: league_match_weeks_max_fields + min: league_match_weeks_min_fields + stddev: league_match_weeks_stddev_fields + stddev_pop: league_match_weeks_stddev_pop_fields + stddev_samp: league_match_weeks_stddev_samp_fields + sum: league_match_weeks_sum_fields + var_pop: league_match_weeks_var_pop_fields + var_samp: league_match_weeks_var_samp_fields + variance: league_match_weeks_variance_fields +} + +""" +order by aggregate values of table "league_match_weeks" +""" +input league_match_weeks_aggregate_order_by { + avg: league_match_weeks_avg_order_by + count: order_by + max: league_match_weeks_max_order_by + min: league_match_weeks_min_order_by + stddev: league_match_weeks_stddev_order_by + stddev_pop: league_match_weeks_stddev_pop_order_by + stddev_samp: league_match_weeks_stddev_samp_order_by + sum: league_match_weeks_sum_order_by + var_pop: league_match_weeks_var_pop_order_by + var_samp: league_match_weeks_var_samp_order_by + variance: league_match_weeks_variance_order_by +} + +""" +input type for inserting array relation for remote table "league_match_weeks" +""" +input league_match_weeks_arr_rel_insert_input { + data: [league_match_weeks_insert_input!]! + + """upsert condition""" + on_conflict: league_match_weeks_on_conflict +} + +"""aggregate avg on columns""" +type league_match_weeks_avg_fields { + week_number: Float +} + +""" +order by avg() on columns of table "league_match_weeks" +""" +input league_match_weeks_avg_order_by { + week_number: order_by +} + +""" +Boolean expression to filter rows from the table "league_match_weeks". All fields are combined with a logical 'AND'. +""" +input league_match_weeks_bool_exp { + _and: [league_match_weeks_bool_exp!] + _not: league_match_weeks_bool_exp + _or: [league_match_weeks_bool_exp!] + closes_at: timestamptz_comparison_exp + created_at: timestamptz_comparison_exp + default_match_at: timestamptz_comparison_exp + id: uuid_comparison_exp + league_season_id: uuid_comparison_exp + opens_at: timestamptz_comparison_exp + season: league_seasons_bool_exp + week_number: Int_comparison_exp +} + +""" +unique or primary key constraints on table "league_match_weeks" +""" +enum league_match_weeks_constraint { + """ + unique or primary key constraint on columns "league_season_id", "week_number" + """ + league_match_weeks_league_season_id_week_number_key + + """ + unique or primary key constraint on columns "id" + """ + league_match_weeks_pkey +} + +""" +input type for incrementing numeric columns in table "league_match_weeks" +""" +input league_match_weeks_inc_input { + week_number: Int +} + +""" +input type for inserting data into table "league_match_weeks" +""" +input league_match_weeks_insert_input { + closes_at: timestamptz + created_at: timestamptz + default_match_at: timestamptz + id: uuid + league_season_id: uuid + opens_at: timestamptz + season: league_seasons_obj_rel_insert_input + week_number: Int +} + +"""aggregate max on columns""" +type league_match_weeks_max_fields { + closes_at: timestamptz + created_at: timestamptz + default_match_at: timestamptz + id: uuid + league_season_id: uuid + opens_at: timestamptz + week_number: Int +} + +""" +order by max() on columns of table "league_match_weeks" +""" +input league_match_weeks_max_order_by { + closes_at: order_by + created_at: order_by + default_match_at: order_by + id: order_by + league_season_id: order_by + opens_at: order_by + week_number: order_by +} + +"""aggregate min on columns""" +type league_match_weeks_min_fields { + closes_at: timestamptz + created_at: timestamptz + default_match_at: timestamptz + id: uuid + league_season_id: uuid + opens_at: timestamptz + week_number: Int +} + +""" +order by min() on columns of table "league_match_weeks" +""" +input league_match_weeks_min_order_by { + closes_at: order_by + created_at: order_by + default_match_at: order_by + id: order_by + league_season_id: order_by + opens_at: order_by + week_number: order_by +} + +""" +response of any mutation on the table "league_match_weeks" +""" +type league_match_weeks_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [league_match_weeks!]! +} + +""" +on_conflict condition type for table "league_match_weeks" +""" +input league_match_weeks_on_conflict { + constraint: league_match_weeks_constraint! + update_columns: [league_match_weeks_update_column!]! = [] + where: league_match_weeks_bool_exp +} + +"""Ordering options when selecting data from "league_match_weeks".""" +input league_match_weeks_order_by { + closes_at: order_by + created_at: order_by + default_match_at: order_by + id: order_by + league_season_id: order_by + opens_at: order_by + season: league_seasons_order_by + week_number: order_by +} + +"""primary key columns input for table: league_match_weeks""" +input league_match_weeks_pk_columns_input { + id: uuid! +} + +""" +select columns of table "league_match_weeks" +""" +enum league_match_weeks_select_column { + """column name""" + closes_at + + """column name""" + created_at + + """column name""" + default_match_at + + """column name""" + id + + """column name""" + league_season_id + + """column name""" + opens_at + + """column name""" + week_number +} + +""" +input type for updating data in table "league_match_weeks" +""" +input league_match_weeks_set_input { + closes_at: timestamptz + created_at: timestamptz + default_match_at: timestamptz + id: uuid + league_season_id: uuid + opens_at: timestamptz + week_number: Int +} + +"""aggregate stddev on columns""" +type league_match_weeks_stddev_fields { + week_number: Float +} + +""" +order by stddev() on columns of table "league_match_weeks" +""" +input league_match_weeks_stddev_order_by { + week_number: order_by +} + +"""aggregate stddev_pop on columns""" +type league_match_weeks_stddev_pop_fields { + week_number: Float +} + +""" +order by stddev_pop() on columns of table "league_match_weeks" +""" +input league_match_weeks_stddev_pop_order_by { + week_number: order_by +} + +"""aggregate stddev_samp on columns""" +type league_match_weeks_stddev_samp_fields { + week_number: Float +} + +""" +order by stddev_samp() on columns of table "league_match_weeks" +""" +input league_match_weeks_stddev_samp_order_by { + week_number: order_by +} + +""" +Streaming cursor of the table "league_match_weeks" +""" +input league_match_weeks_stream_cursor_input { + """Stream column input with initial value""" + initial_value: league_match_weeks_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input league_match_weeks_stream_cursor_value_input { + closes_at: timestamptz + created_at: timestamptz + default_match_at: timestamptz + id: uuid + league_season_id: uuid + opens_at: timestamptz + week_number: Int +} + +"""aggregate sum on columns""" +type league_match_weeks_sum_fields { + week_number: Int +} + +""" +order by sum() on columns of table "league_match_weeks" +""" +input league_match_weeks_sum_order_by { + week_number: order_by +} + +""" +update columns of table "league_match_weeks" +""" +enum league_match_weeks_update_column { + """column name""" + closes_at + + """column name""" + created_at + + """column name""" + default_match_at + + """column name""" + id + + """column name""" + league_season_id + + """column name""" + opens_at + + """column name""" + week_number +} + +input league_match_weeks_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: league_match_weeks_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: league_match_weeks_set_input + + """filter the rows which have to be updated""" + where: league_match_weeks_bool_exp! +} + +"""aggregate var_pop on columns""" +type league_match_weeks_var_pop_fields { + week_number: Float +} + +""" +order by var_pop() on columns of table "league_match_weeks" +""" +input league_match_weeks_var_pop_order_by { + week_number: order_by +} + +"""aggregate var_samp on columns""" +type league_match_weeks_var_samp_fields { + week_number: Float +} + +""" +order by var_samp() on columns of table "league_match_weeks" +""" +input league_match_weeks_var_samp_order_by { + week_number: order_by +} + +"""aggregate variance on columns""" +type league_match_weeks_variance_fields { + week_number: Float +} + +""" +order by variance() on columns of table "league_match_weeks" +""" +input league_match_weeks_variance_order_by { + week_number: order_by +} + +""" +columns and relationships of "league_relegation_playoffs" +""" +type league_relegation_playoffs { + created_at: timestamptz! + + """An object relationship""" + higher_division: league_divisions! + higher_division_id: uuid! + higher_slots: Int! + id: uuid! + league_season_id: uuid! + + """An object relationship""" + lower_division: league_divisions! + lower_division_id: uuid! + resolved_at: timestamptz + + """An object relationship""" + season: league_seasons! + + """An object relationship""" + tournament: tournaments + tournament_id: uuid +} + +""" +aggregated selection of "league_relegation_playoffs" +""" +type league_relegation_playoffs_aggregate { + aggregate: league_relegation_playoffs_aggregate_fields + nodes: [league_relegation_playoffs!]! +} + +input league_relegation_playoffs_aggregate_bool_exp { + count: league_relegation_playoffs_aggregate_bool_exp_count +} + +input league_relegation_playoffs_aggregate_bool_exp_count { + arguments: [league_relegation_playoffs_select_column!] + distinct: Boolean + filter: league_relegation_playoffs_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "league_relegation_playoffs" +""" +type league_relegation_playoffs_aggregate_fields { + avg: league_relegation_playoffs_avg_fields + count(columns: [league_relegation_playoffs_select_column!], distinct: Boolean): Int! + max: league_relegation_playoffs_max_fields + min: league_relegation_playoffs_min_fields + stddev: league_relegation_playoffs_stddev_fields + stddev_pop: league_relegation_playoffs_stddev_pop_fields + stddev_samp: league_relegation_playoffs_stddev_samp_fields + sum: league_relegation_playoffs_sum_fields + var_pop: league_relegation_playoffs_var_pop_fields + var_samp: league_relegation_playoffs_var_samp_fields + variance: league_relegation_playoffs_variance_fields +} + +""" +order by aggregate values of table "league_relegation_playoffs" +""" +input league_relegation_playoffs_aggregate_order_by { + avg: league_relegation_playoffs_avg_order_by + count: order_by + max: league_relegation_playoffs_max_order_by + min: league_relegation_playoffs_min_order_by + stddev: league_relegation_playoffs_stddev_order_by + stddev_pop: league_relegation_playoffs_stddev_pop_order_by + stddev_samp: league_relegation_playoffs_stddev_samp_order_by + sum: league_relegation_playoffs_sum_order_by + var_pop: league_relegation_playoffs_var_pop_order_by + var_samp: league_relegation_playoffs_var_samp_order_by + variance: league_relegation_playoffs_variance_order_by +} + +""" +input type for inserting array relation for remote table "league_relegation_playoffs" +""" +input league_relegation_playoffs_arr_rel_insert_input { + data: [league_relegation_playoffs_insert_input!]! + + """upsert condition""" + on_conflict: league_relegation_playoffs_on_conflict +} + +"""aggregate avg on columns""" +type league_relegation_playoffs_avg_fields { + higher_slots: Float +} + +""" +order by avg() on columns of table "league_relegation_playoffs" +""" +input league_relegation_playoffs_avg_order_by { + higher_slots: order_by +} + +""" +Boolean expression to filter rows from the table "league_relegation_playoffs". All fields are combined with a logical 'AND'. +""" +input league_relegation_playoffs_bool_exp { + _and: [league_relegation_playoffs_bool_exp!] + _not: league_relegation_playoffs_bool_exp + _or: [league_relegation_playoffs_bool_exp!] + created_at: timestamptz_comparison_exp + higher_division: league_divisions_bool_exp + higher_division_id: uuid_comparison_exp + higher_slots: Int_comparison_exp + id: uuid_comparison_exp + league_season_id: uuid_comparison_exp + lower_division: league_divisions_bool_exp + lower_division_id: uuid_comparison_exp + resolved_at: timestamptz_comparison_exp + season: league_seasons_bool_exp + tournament: tournaments_bool_exp + tournament_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "league_relegation_playoffs" +""" +enum league_relegation_playoffs_constraint { + """ + unique or primary key constraint on columns "higher_division_id", "league_season_id", "lower_division_id" + """ + league_relegation_playoffs_league_season_id_higher_division_key + + """ + unique or primary key constraint on columns "id" + """ + league_relegation_playoffs_pkey +} + +""" +input type for incrementing numeric columns in table "league_relegation_playoffs" +""" +input league_relegation_playoffs_inc_input { + higher_slots: Int +} + +""" +input type for inserting data into table "league_relegation_playoffs" +""" +input league_relegation_playoffs_insert_input { + created_at: timestamptz + higher_division: league_divisions_obj_rel_insert_input + higher_division_id: uuid + higher_slots: Int + id: uuid + league_season_id: uuid + lower_division: league_divisions_obj_rel_insert_input + lower_division_id: uuid + resolved_at: timestamptz + season: league_seasons_obj_rel_insert_input + tournament: tournaments_obj_rel_insert_input + tournament_id: uuid +} + +"""aggregate max on columns""" +type league_relegation_playoffs_max_fields { + created_at: timestamptz + higher_division_id: uuid + higher_slots: Int + id: uuid + league_season_id: uuid + lower_division_id: uuid + resolved_at: timestamptz + tournament_id: uuid +} + +""" +order by max() on columns of table "league_relegation_playoffs" +""" +input league_relegation_playoffs_max_order_by { + created_at: order_by + higher_division_id: order_by + higher_slots: order_by + id: order_by + league_season_id: order_by + lower_division_id: order_by + resolved_at: order_by + tournament_id: order_by +} + +"""aggregate min on columns""" +type league_relegation_playoffs_min_fields { + created_at: timestamptz + higher_division_id: uuid + higher_slots: Int + id: uuid + league_season_id: uuid + lower_division_id: uuid + resolved_at: timestamptz + tournament_id: uuid +} + +""" +order by min() on columns of table "league_relegation_playoffs" +""" +input league_relegation_playoffs_min_order_by { + created_at: order_by + higher_division_id: order_by + higher_slots: order_by + id: order_by + league_season_id: order_by + lower_division_id: order_by + resolved_at: order_by + tournament_id: order_by +} + +""" +response of any mutation on the table "league_relegation_playoffs" +""" +type league_relegation_playoffs_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [league_relegation_playoffs!]! +} + +""" +on_conflict condition type for table "league_relegation_playoffs" +""" +input league_relegation_playoffs_on_conflict { + constraint: league_relegation_playoffs_constraint! + update_columns: [league_relegation_playoffs_update_column!]! = [] + where: league_relegation_playoffs_bool_exp +} + +""" +Ordering options when selecting data from "league_relegation_playoffs". +""" +input league_relegation_playoffs_order_by { + created_at: order_by + higher_division: league_divisions_order_by + higher_division_id: order_by + higher_slots: order_by + id: order_by + league_season_id: order_by + lower_division: league_divisions_order_by + lower_division_id: order_by + resolved_at: order_by + season: league_seasons_order_by + tournament: tournaments_order_by + tournament_id: order_by +} + +"""primary key columns input for table: league_relegation_playoffs""" +input league_relegation_playoffs_pk_columns_input { + id: uuid! +} + +""" +select columns of table "league_relegation_playoffs" +""" +enum league_relegation_playoffs_select_column { + """column name""" + created_at + + """column name""" + higher_division_id + + """column name""" + higher_slots + + """column name""" + id + + """column name""" + league_season_id + + """column name""" + lower_division_id + + """column name""" + resolved_at + + """column name""" + tournament_id +} + +""" +input type for updating data in table "league_relegation_playoffs" +""" +input league_relegation_playoffs_set_input { + created_at: timestamptz + higher_division_id: uuid + higher_slots: Int + id: uuid + league_season_id: uuid + lower_division_id: uuid + resolved_at: timestamptz + tournament_id: uuid +} + +"""aggregate stddev on columns""" +type league_relegation_playoffs_stddev_fields { + higher_slots: Float +} + +""" +order by stddev() on columns of table "league_relegation_playoffs" +""" +input league_relegation_playoffs_stddev_order_by { + higher_slots: order_by +} + +"""aggregate stddev_pop on columns""" +type league_relegation_playoffs_stddev_pop_fields { + higher_slots: Float +} + +""" +order by stddev_pop() on columns of table "league_relegation_playoffs" +""" +input league_relegation_playoffs_stddev_pop_order_by { + higher_slots: order_by +} + +"""aggregate stddev_samp on columns""" +type league_relegation_playoffs_stddev_samp_fields { + higher_slots: Float +} + +""" +order by stddev_samp() on columns of table "league_relegation_playoffs" +""" +input league_relegation_playoffs_stddev_samp_order_by { + higher_slots: order_by +} + +""" +Streaming cursor of the table "league_relegation_playoffs" +""" +input league_relegation_playoffs_stream_cursor_input { + """Stream column input with initial value""" + initial_value: league_relegation_playoffs_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input league_relegation_playoffs_stream_cursor_value_input { + created_at: timestamptz + higher_division_id: uuid + higher_slots: Int + id: uuid + league_season_id: uuid + lower_division_id: uuid + resolved_at: timestamptz + tournament_id: uuid +} + +"""aggregate sum on columns""" +type league_relegation_playoffs_sum_fields { + higher_slots: Int +} + +""" +order by sum() on columns of table "league_relegation_playoffs" +""" +input league_relegation_playoffs_sum_order_by { + higher_slots: order_by +} + +""" +update columns of table "league_relegation_playoffs" +""" +enum league_relegation_playoffs_update_column { + """column name""" + created_at + + """column name""" + higher_division_id + + """column name""" + higher_slots + + """column name""" + id + + """column name""" + league_season_id + + """column name""" + lower_division_id + + """column name""" + resolved_at + + """column name""" + tournament_id +} + +input league_relegation_playoffs_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: league_relegation_playoffs_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: league_relegation_playoffs_set_input + + """filter the rows which have to be updated""" + where: league_relegation_playoffs_bool_exp! +} + +"""aggregate var_pop on columns""" +type league_relegation_playoffs_var_pop_fields { + higher_slots: Float +} + +""" +order by var_pop() on columns of table "league_relegation_playoffs" +""" +input league_relegation_playoffs_var_pop_order_by { + higher_slots: order_by +} + +"""aggregate var_samp on columns""" +type league_relegation_playoffs_var_samp_fields { + higher_slots: Float +} + +""" +order by var_samp() on columns of table "league_relegation_playoffs" +""" +input league_relegation_playoffs_var_samp_order_by { + higher_slots: order_by +} + +"""aggregate variance on columns""" +type league_relegation_playoffs_variance_fields { + higher_slots: Float +} + +""" +order by variance() on columns of table "league_relegation_playoffs" +""" +input league_relegation_playoffs_variance_order_by { + higher_slots: order_by +} + +""" +columns and relationships of "league_scheduling_proposals" +""" +type league_scheduling_proposals { + """An object relationship""" + bracket: tournament_brackets! + created_at: timestamptz! + + """An object relationship""" + e_proposal_status: e_league_proposal_statuses! + id: uuid! + message: String + + """An object relationship""" + proposed_by: players! + proposed_by_league_team_season_id: uuid + proposed_by_steam_id: bigint! + proposed_time: timestamptz! + + """An object relationship""" + responded_by: players + responded_by_steam_id: bigint + status: e_league_proposal_statuses_enum! + + """An object relationship""" + team_season: league_team_seasons + tournament_bracket_id: uuid! +} + +""" +aggregated selection of "league_scheduling_proposals" +""" +type league_scheduling_proposals_aggregate { + aggregate: league_scheduling_proposals_aggregate_fields + nodes: [league_scheduling_proposals!]! +} + +input league_scheduling_proposals_aggregate_bool_exp { + count: league_scheduling_proposals_aggregate_bool_exp_count +} + +input league_scheduling_proposals_aggregate_bool_exp_count { + arguments: [league_scheduling_proposals_select_column!] + distinct: Boolean + filter: league_scheduling_proposals_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "league_scheduling_proposals" +""" +type league_scheduling_proposals_aggregate_fields { + avg: league_scheduling_proposals_avg_fields + count(columns: [league_scheduling_proposals_select_column!], distinct: Boolean): Int! + max: league_scheduling_proposals_max_fields + min: league_scheduling_proposals_min_fields + stddev: league_scheduling_proposals_stddev_fields + stddev_pop: league_scheduling_proposals_stddev_pop_fields + stddev_samp: league_scheduling_proposals_stddev_samp_fields + sum: league_scheduling_proposals_sum_fields + var_pop: league_scheduling_proposals_var_pop_fields + var_samp: league_scheduling_proposals_var_samp_fields + variance: league_scheduling_proposals_variance_fields +} + +""" +order by aggregate values of table "league_scheduling_proposals" +""" +input league_scheduling_proposals_aggregate_order_by { + avg: league_scheduling_proposals_avg_order_by + count: order_by + max: league_scheduling_proposals_max_order_by + min: league_scheduling_proposals_min_order_by + stddev: league_scheduling_proposals_stddev_order_by + stddev_pop: league_scheduling_proposals_stddev_pop_order_by + stddev_samp: league_scheduling_proposals_stddev_samp_order_by + sum: league_scheduling_proposals_sum_order_by + var_pop: league_scheduling_proposals_var_pop_order_by + var_samp: league_scheduling_proposals_var_samp_order_by + variance: league_scheduling_proposals_variance_order_by +} + +""" +input type for inserting array relation for remote table "league_scheduling_proposals" +""" +input league_scheduling_proposals_arr_rel_insert_input { + data: [league_scheduling_proposals_insert_input!]! + + """upsert condition""" + on_conflict: league_scheduling_proposals_on_conflict +} + +"""aggregate avg on columns""" +type league_scheduling_proposals_avg_fields { + proposed_by_steam_id: Float + responded_by_steam_id: Float +} + +""" +order by avg() on columns of table "league_scheduling_proposals" +""" +input league_scheduling_proposals_avg_order_by { + proposed_by_steam_id: order_by + responded_by_steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "league_scheduling_proposals". All fields are combined with a logical 'AND'. +""" +input league_scheduling_proposals_bool_exp { + _and: [league_scheduling_proposals_bool_exp!] + _not: league_scheduling_proposals_bool_exp + _or: [league_scheduling_proposals_bool_exp!] + bracket: tournament_brackets_bool_exp + created_at: timestamptz_comparison_exp + e_proposal_status: e_league_proposal_statuses_bool_exp + id: uuid_comparison_exp + message: String_comparison_exp + proposed_by: players_bool_exp + proposed_by_league_team_season_id: uuid_comparison_exp + proposed_by_steam_id: bigint_comparison_exp + proposed_time: timestamptz_comparison_exp + responded_by: players_bool_exp + responded_by_steam_id: bigint_comparison_exp + status: e_league_proposal_statuses_enum_comparison_exp + team_season: league_team_seasons_bool_exp + tournament_bracket_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "league_scheduling_proposals" +""" +enum league_scheduling_proposals_constraint { + """ + unique or primary key constraint on columns "id" + """ + league_scheduling_proposals_pkey +} + +""" +input type for incrementing numeric columns in table "league_scheduling_proposals" +""" +input league_scheduling_proposals_inc_input { + proposed_by_steam_id: bigint + responded_by_steam_id: bigint +} + +""" +input type for inserting data into table "league_scheduling_proposals" +""" +input league_scheduling_proposals_insert_input { + bracket: tournament_brackets_obj_rel_insert_input + created_at: timestamptz + e_proposal_status: e_league_proposal_statuses_obj_rel_insert_input + id: uuid + message: String + proposed_by: players_obj_rel_insert_input + proposed_by_league_team_season_id: uuid + proposed_by_steam_id: bigint + proposed_time: timestamptz + responded_by: players_obj_rel_insert_input + responded_by_steam_id: bigint + status: e_league_proposal_statuses_enum + team_season: league_team_seasons_obj_rel_insert_input + tournament_bracket_id: uuid +} + +"""aggregate max on columns""" +type league_scheduling_proposals_max_fields { + created_at: timestamptz + id: uuid + message: String + proposed_by_league_team_season_id: uuid + proposed_by_steam_id: bigint + proposed_time: timestamptz + responded_by_steam_id: bigint + tournament_bracket_id: uuid +} + +""" +order by max() on columns of table "league_scheduling_proposals" +""" +input league_scheduling_proposals_max_order_by { + created_at: order_by + id: order_by + message: order_by + proposed_by_league_team_season_id: order_by + proposed_by_steam_id: order_by + proposed_time: order_by + responded_by_steam_id: order_by + tournament_bracket_id: order_by +} + +"""aggregate min on columns""" +type league_scheduling_proposals_min_fields { + created_at: timestamptz + id: uuid + message: String + proposed_by_league_team_season_id: uuid + proposed_by_steam_id: bigint + proposed_time: timestamptz + responded_by_steam_id: bigint + tournament_bracket_id: uuid +} + +""" +order by min() on columns of table "league_scheduling_proposals" +""" +input league_scheduling_proposals_min_order_by { + created_at: order_by + id: order_by + message: order_by + proposed_by_league_team_season_id: order_by + proposed_by_steam_id: order_by + proposed_time: order_by + responded_by_steam_id: order_by + tournament_bracket_id: order_by +} + +""" +response of any mutation on the table "league_scheduling_proposals" +""" +type league_scheduling_proposals_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [league_scheduling_proposals!]! +} + +""" +on_conflict condition type for table "league_scheduling_proposals" +""" +input league_scheduling_proposals_on_conflict { + constraint: league_scheduling_proposals_constraint! + update_columns: [league_scheduling_proposals_update_column!]! = [] + where: league_scheduling_proposals_bool_exp +} + +""" +Ordering options when selecting data from "league_scheduling_proposals". +""" +input league_scheduling_proposals_order_by { + bracket: tournament_brackets_order_by + created_at: order_by + e_proposal_status: e_league_proposal_statuses_order_by + id: order_by + message: order_by + proposed_by: players_order_by + proposed_by_league_team_season_id: order_by + proposed_by_steam_id: order_by + proposed_time: order_by + responded_by: players_order_by + responded_by_steam_id: order_by + status: order_by + team_season: league_team_seasons_order_by + tournament_bracket_id: order_by +} + +"""primary key columns input for table: league_scheduling_proposals""" +input league_scheduling_proposals_pk_columns_input { + id: uuid! +} + +""" +select columns of table "league_scheduling_proposals" +""" +enum league_scheduling_proposals_select_column { + """column name""" + created_at + + """column name""" + id + + """column name""" + message + + """column name""" + proposed_by_league_team_season_id + + """column name""" + proposed_by_steam_id + + """column name""" + proposed_time + + """column name""" + responded_by_steam_id + + """column name""" + status + + """column name""" + tournament_bracket_id +} + +""" +input type for updating data in table "league_scheduling_proposals" +""" +input league_scheduling_proposals_set_input { + created_at: timestamptz + id: uuid + message: String + proposed_by_league_team_season_id: uuid + proposed_by_steam_id: bigint + proposed_time: timestamptz + responded_by_steam_id: bigint + status: e_league_proposal_statuses_enum + tournament_bracket_id: uuid +} + +"""aggregate stddev on columns""" +type league_scheduling_proposals_stddev_fields { + proposed_by_steam_id: Float + responded_by_steam_id: Float +} + +""" +order by stddev() on columns of table "league_scheduling_proposals" +""" +input league_scheduling_proposals_stddev_order_by { + proposed_by_steam_id: order_by + responded_by_steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type league_scheduling_proposals_stddev_pop_fields { + proposed_by_steam_id: Float + responded_by_steam_id: Float +} + +""" +order by stddev_pop() on columns of table "league_scheduling_proposals" +""" +input league_scheduling_proposals_stddev_pop_order_by { + proposed_by_steam_id: order_by + responded_by_steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type league_scheduling_proposals_stddev_samp_fields { + proposed_by_steam_id: Float + responded_by_steam_id: Float +} + +""" +order by stddev_samp() on columns of table "league_scheduling_proposals" +""" +input league_scheduling_proposals_stddev_samp_order_by { + proposed_by_steam_id: order_by + responded_by_steam_id: order_by +} + +""" +Streaming cursor of the table "league_scheduling_proposals" +""" +input league_scheduling_proposals_stream_cursor_input { + """Stream column input with initial value""" + initial_value: league_scheduling_proposals_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input league_scheduling_proposals_stream_cursor_value_input { + created_at: timestamptz + id: uuid + message: String + proposed_by_league_team_season_id: uuid + proposed_by_steam_id: bigint + proposed_time: timestamptz + responded_by_steam_id: bigint + status: e_league_proposal_statuses_enum + tournament_bracket_id: uuid +} + +"""aggregate sum on columns""" +type league_scheduling_proposals_sum_fields { + proposed_by_steam_id: bigint + responded_by_steam_id: bigint +} + +""" +order by sum() on columns of table "league_scheduling_proposals" +""" +input league_scheduling_proposals_sum_order_by { + proposed_by_steam_id: order_by + responded_by_steam_id: order_by +} + +""" +update columns of table "league_scheduling_proposals" +""" +enum league_scheduling_proposals_update_column { + """column name""" + created_at + + """column name""" + id + + """column name""" + message + + """column name""" + proposed_by_league_team_season_id + + """column name""" + proposed_by_steam_id + + """column name""" + proposed_time + + """column name""" + responded_by_steam_id + + """column name""" + status + + """column name""" + tournament_bracket_id +} + +input league_scheduling_proposals_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: league_scheduling_proposals_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: league_scheduling_proposals_set_input + + """filter the rows which have to be updated""" + where: league_scheduling_proposals_bool_exp! +} + +"""aggregate var_pop on columns""" +type league_scheduling_proposals_var_pop_fields { + proposed_by_steam_id: Float + responded_by_steam_id: Float +} + +""" +order by var_pop() on columns of table "league_scheduling_proposals" +""" +input league_scheduling_proposals_var_pop_order_by { + proposed_by_steam_id: order_by + responded_by_steam_id: order_by +} + +"""aggregate var_samp on columns""" +type league_scheduling_proposals_var_samp_fields { + proposed_by_steam_id: Float + responded_by_steam_id: Float +} + +""" +order by var_samp() on columns of table "league_scheduling_proposals" +""" +input league_scheduling_proposals_var_samp_order_by { + proposed_by_steam_id: order_by + responded_by_steam_id: order_by +} + +"""aggregate variance on columns""" +type league_scheduling_proposals_variance_fields { + proposed_by_steam_id: Float + responded_by_steam_id: Float +} + +""" +order by variance() on columns of table "league_scheduling_proposals" +""" +input league_scheduling_proposals_variance_order_by { + proposed_by_steam_id: order_by + responded_by_steam_id: order_by +} + +""" +columns and relationships of "league_season_divisions" +""" +type league_season_divisions { + created_at: timestamptz! + + """An object relationship""" + division: league_divisions! + id: uuid! + league_division_id: uuid! + league_season_id: uuid! + + """An object relationship""" + season: league_seasons! + + """An array relationship""" + standings( + """distinct select on columns""" + distinct_on: [v_league_division_standings_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_league_division_standings_order_by!] + + """filter the rows returned""" + where: v_league_division_standings_bool_exp + ): [v_league_division_standings!]! + + """An aggregate relationship""" + standings_aggregate( + """distinct select on columns""" + distinct_on: [v_league_division_standings_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_league_division_standings_order_by!] + + """filter the rows returned""" + where: v_league_division_standings_bool_exp + ): v_league_division_standings_aggregate! + + """An object relationship""" + tournament: tournaments + tournament_id: uuid +} + +""" +aggregated selection of "league_season_divisions" +""" +type league_season_divisions_aggregate { + aggregate: league_season_divisions_aggregate_fields + nodes: [league_season_divisions!]! +} + +input league_season_divisions_aggregate_bool_exp { + count: league_season_divisions_aggregate_bool_exp_count +} + +input league_season_divisions_aggregate_bool_exp_count { + arguments: [league_season_divisions_select_column!] + distinct: Boolean + filter: league_season_divisions_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "league_season_divisions" +""" +type league_season_divisions_aggregate_fields { + count(columns: [league_season_divisions_select_column!], distinct: Boolean): Int! + max: league_season_divisions_max_fields + min: league_season_divisions_min_fields +} + +""" +order by aggregate values of table "league_season_divisions" +""" +input league_season_divisions_aggregate_order_by { + count: order_by + max: league_season_divisions_max_order_by + min: league_season_divisions_min_order_by +} + +""" +input type for inserting array relation for remote table "league_season_divisions" +""" +input league_season_divisions_arr_rel_insert_input { + data: [league_season_divisions_insert_input!]! + + """upsert condition""" + on_conflict: league_season_divisions_on_conflict +} + +""" +Boolean expression to filter rows from the table "league_season_divisions". All fields are combined with a logical 'AND'. +""" +input league_season_divisions_bool_exp { + _and: [league_season_divisions_bool_exp!] + _not: league_season_divisions_bool_exp + _or: [league_season_divisions_bool_exp!] + created_at: timestamptz_comparison_exp + division: league_divisions_bool_exp + id: uuid_comparison_exp + league_division_id: uuid_comparison_exp + league_season_id: uuid_comparison_exp + season: league_seasons_bool_exp + standings: v_league_division_standings_bool_exp + standings_aggregate: v_league_division_standings_aggregate_bool_exp + tournament: tournaments_bool_exp + tournament_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "league_season_divisions" +""" +enum league_season_divisions_constraint { + """ + unique or primary key constraint on columns "league_division_id", "league_season_id" + """ + league_season_divisions_league_season_id_league_division_id_key + + """ + unique or primary key constraint on columns "id" + """ + league_season_divisions_pkey + + """ + unique or primary key constraint on columns "tournament_id" + """ + league_season_divisions_tournament_id_key +} + +""" +input type for inserting data into table "league_season_divisions" +""" +input league_season_divisions_insert_input { + created_at: timestamptz + division: league_divisions_obj_rel_insert_input + id: uuid + league_division_id: uuid + league_season_id: uuid + season: league_seasons_obj_rel_insert_input + standings: v_league_division_standings_arr_rel_insert_input + tournament: tournaments_obj_rel_insert_input + tournament_id: uuid +} + +"""aggregate max on columns""" +type league_season_divisions_max_fields { + created_at: timestamptz + id: uuid + league_division_id: uuid + league_season_id: uuid + tournament_id: uuid +} + +""" +order by max() on columns of table "league_season_divisions" +""" +input league_season_divisions_max_order_by { + created_at: order_by + id: order_by + league_division_id: order_by + league_season_id: order_by + tournament_id: order_by +} + +"""aggregate min on columns""" +type league_season_divisions_min_fields { + created_at: timestamptz + id: uuid + league_division_id: uuid + league_season_id: uuid + tournament_id: uuid +} + +""" +order by min() on columns of table "league_season_divisions" +""" +input league_season_divisions_min_order_by { + created_at: order_by + id: order_by + league_division_id: order_by + league_season_id: order_by + tournament_id: order_by +} + +""" +response of any mutation on the table "league_season_divisions" +""" +type league_season_divisions_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [league_season_divisions!]! +} + +""" +input type for inserting object relation for remote table "league_season_divisions" +""" +input league_season_divisions_obj_rel_insert_input { + data: league_season_divisions_insert_input! + + """upsert condition""" + on_conflict: league_season_divisions_on_conflict +} + +""" +on_conflict condition type for table "league_season_divisions" +""" +input league_season_divisions_on_conflict { + constraint: league_season_divisions_constraint! + update_columns: [league_season_divisions_update_column!]! = [] + where: league_season_divisions_bool_exp +} + +"""Ordering options when selecting data from "league_season_divisions".""" +input league_season_divisions_order_by { + created_at: order_by + division: league_divisions_order_by + id: order_by + league_division_id: order_by + league_season_id: order_by + season: league_seasons_order_by + standings_aggregate: v_league_division_standings_aggregate_order_by + tournament: tournaments_order_by + tournament_id: order_by +} + +"""primary key columns input for table: league_season_divisions""" +input league_season_divisions_pk_columns_input { + id: uuid! +} + +""" +select columns of table "league_season_divisions" +""" +enum league_season_divisions_select_column { + """column name""" + created_at + + """column name""" + id + + """column name""" + league_division_id + + """column name""" + league_season_id + + """column name""" + tournament_id +} + +""" +input type for updating data in table "league_season_divisions" +""" +input league_season_divisions_set_input { + created_at: timestamptz + id: uuid + league_division_id: uuid + league_season_id: uuid + tournament_id: uuid +} + +""" +Streaming cursor of the table "league_season_divisions" +""" +input league_season_divisions_stream_cursor_input { + """Stream column input with initial value""" + initial_value: league_season_divisions_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input league_season_divisions_stream_cursor_value_input { + created_at: timestamptz + id: uuid + league_division_id: uuid + league_season_id: uuid + tournament_id: uuid +} + +""" +update columns of table "league_season_divisions" +""" +enum league_season_divisions_update_column { + """column name""" + created_at + + """column name""" + id + + """column name""" + league_division_id + + """column name""" + league_season_id + + """column name""" + tournament_id +} + +input league_season_divisions_updates { + """sets the columns of the filtered rows to the given values""" + _set: league_season_divisions_set_input + + """filter the rows which have to be updated""" + where: league_season_divisions_bool_exp! +} + +""" +columns and relationships of "league_seasons" +""" +type league_seasons { + auto_regular_season_format: Boolean! + + """An array relationship""" + awards( + """distinct select on columns""" + distinct_on: [award_recipients_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: [award_recipients_order_by!] + + """filter the rows returned""" + where: award_recipients_bool_exp + ): [award_recipients!]! + + """An aggregate relationship""" + awards_aggregate( + """distinct select on columns""" + distinct_on: [award_recipients_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: [award_recipients_order_by!] + + """filter the rows returned""" + where: award_recipients_bool_exp + ): award_recipients_aggregate! + + """ + A computed field, executes function "can_register_for_league_season" + """ + can_register: Boolean + created_at: timestamptz! + created_by_steam_id: bigint + default_best_of: Int! + direct_promote_count: Int! + direct_relegate_count: Int! + + """An object relationship""" + e_league_season_status: e_league_season_statuses! + games_per_week: Int! + id: uuid! + + """ + A computed field, executes function "is_league_season_admin" + """ + is_league_admin: Boolean + + """ + A computed field, executes function "league_season_is_roster_locked" + """ + is_roster_locked: Boolean + match_options_id: uuid + + """An array relationship""" + match_weeks( + """distinct select on columns""" + distinct_on: [league_match_weeks_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: [league_match_weeks_order_by!] + + """filter the rows returned""" + where: league_match_weeks_bool_exp + ): [league_match_weeks!]! + + """An aggregate relationship""" + match_weeks_aggregate( + """distinct select on columns""" + distinct_on: [league_match_weeks_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: [league_match_weeks_order_by!] + + """filter the rows returned""" + where: league_match_weeks_bool_exp + ): league_match_weeks_aggregate! + match_weeks_count: Int! + max_roster_size: Int + min_roster_size: Int! + + """An array relationship""" + movements( + """distinct select on columns""" + distinct_on: [league_team_movements_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: [league_team_movements_order_by!] + + """filter the rows returned""" + where: league_team_movements_bool_exp + ): [league_team_movements!]! + + """An aggregate relationship""" + movements_aggregate( + """distinct select on columns""" + distinct_on: [league_team_movements_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: [league_team_movements_order_by!] + + """filter the rows returned""" + where: league_team_movements_bool_exp + ): league_team_movements_aggregate! + + """ + A computed field, executes function "league_season_my_registration" + """ + my_registration( + """distinct select on columns""" + distinct_on: [league_team_seasons_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: [league_team_seasons_order_by!] + + """filter the rows returned""" + where: league_team_seasons_bool_exp + ): [league_team_seasons!] + name: String! + + """An object relationship""" + options: match_options + + """An array relationship""" + player_stats( + """distinct select on columns""" + distinct_on: [v_league_season_player_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_league_season_player_stats_order_by!] + + """filter the rows returned""" + where: v_league_season_player_stats_bool_exp + ): [v_league_season_player_stats!]! + + """An aggregate relationship""" + player_stats_aggregate( + """distinct select on columns""" + distinct_on: [v_league_season_player_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_league_season_player_stats_order_by!] + + """filter the rows returned""" + where: v_league_season_player_stats_bool_exp + ): v_league_season_player_stats_aggregate! + playoff_best_of: Int! + playoff_round_best_of( + """JSON select path""" + path: String + ): jsonb! + playoff_seats: Int! + playoff_stage_type: e_tournament_stage_types_enum! + playoff_third_place_match: Boolean! + promote_count: Int! + regular_season_stage_type: e_tournament_stage_types_enum! + relegate_count: Int! + relegation_down_count: Int! + + """An array relationship""" + relegation_playoffs( + """distinct select on columns""" + distinct_on: [league_relegation_playoffs_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: [league_relegation_playoffs_order_by!] + + """filter the rows returned""" + where: league_relegation_playoffs_bool_exp + ): [league_relegation_playoffs!]! + + """An aggregate relationship""" + relegation_playoffs_aggregate( + """distinct select on columns""" + distinct_on: [league_relegation_playoffs_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: [league_relegation_playoffs_order_by!] + + """filter the rows returned""" + where: league_relegation_playoffs_bool_exp + ): league_relegation_playoffs_aggregate! + relegation_up_count: Int! + roster_lock_at: timestamptz + + """An array relationship""" + season_divisions( + """distinct select on columns""" + distinct_on: [league_season_divisions_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: [league_season_divisions_order_by!] + + """filter the rows returned""" + where: league_season_divisions_bool_exp + ): [league_season_divisions!]! + + """An aggregate relationship""" + season_divisions_aggregate( + """distinct select on columns""" + distinct_on: [league_season_divisions_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: [league_season_divisions_order_by!] + + """filter the rows returned""" + where: league_season_divisions_bool_exp + ): league_season_divisions_aggregate! + season_number: Int + signup_closes_at: timestamptz + signup_opens_at: timestamptz + + """An array relationship""" + standings( + """distinct select on columns""" + distinct_on: [v_league_division_standings_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_league_division_standings_order_by!] + + """filter the rows returned""" + where: v_league_division_standings_bool_exp + ): [v_league_division_standings!]! + + """An aggregate relationship""" + standings_aggregate( + """distinct select on columns""" + distinct_on: [v_league_division_standings_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_league_division_standings_order_by!] + + """filter the rows returned""" + where: v_league_division_standings_bool_exp + ): v_league_division_standings_aggregate! + starts_at: timestamptz + status: e_league_season_statuses_enum! + + """An array relationship""" + team_seasons( + """distinct select on columns""" + distinct_on: [league_team_seasons_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: [league_team_seasons_order_by!] + + """filter the rows returned""" + where: league_team_seasons_bool_exp + ): [league_team_seasons!]! + + """An aggregate relationship""" + team_seasons_aggregate( + """distinct select on columns""" + distinct_on: [league_team_seasons_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: [league_team_seasons_order_by!] + + """filter the rows returned""" + where: league_team_seasons_bool_exp + ): league_team_seasons_aggregate! + week_best_of( + """JSON select path""" + path: String + ): jsonb! +} + +""" +aggregated selection of "league_seasons" +""" +type league_seasons_aggregate { + aggregate: league_seasons_aggregate_fields + nodes: [league_seasons!]! +} + +""" +aggregate fields of "league_seasons" +""" +type league_seasons_aggregate_fields { + avg: league_seasons_avg_fields + count(columns: [league_seasons_select_column!], distinct: Boolean): Int! + max: league_seasons_max_fields + min: league_seasons_min_fields + stddev: league_seasons_stddev_fields + stddev_pop: league_seasons_stddev_pop_fields + stddev_samp: league_seasons_stddev_samp_fields + sum: league_seasons_sum_fields + var_pop: league_seasons_var_pop_fields + var_samp: league_seasons_var_samp_fields + variance: league_seasons_variance_fields +} + +"""append existing jsonb value of filtered columns with new jsonb value""" +input league_seasons_append_input { + playoff_round_best_of: jsonb + week_best_of: jsonb +} + +"""aggregate avg on columns""" +type league_seasons_avg_fields { + created_by_steam_id: Float + default_best_of: Float + direct_promote_count: Float + direct_relegate_count: Float + games_per_week: Float + match_weeks_count: Float + max_roster_size: Float + min_roster_size: Float + playoff_best_of: Float + playoff_seats: Float + promote_count: Float + relegate_count: Float + relegation_down_count: Float + relegation_up_count: Float + season_number: Float +} + +""" +Boolean expression to filter rows from the table "league_seasons". All fields are combined with a logical 'AND'. +""" +input league_seasons_bool_exp { + _and: [league_seasons_bool_exp!] + _not: league_seasons_bool_exp + _or: [league_seasons_bool_exp!] + auto_regular_season_format: Boolean_comparison_exp + awards: award_recipients_bool_exp + awards_aggregate: award_recipients_aggregate_bool_exp + can_register: Boolean_comparison_exp + created_at: timestamptz_comparison_exp + created_by_steam_id: bigint_comparison_exp + default_best_of: Int_comparison_exp + direct_promote_count: Int_comparison_exp + direct_relegate_count: Int_comparison_exp + e_league_season_status: e_league_season_statuses_bool_exp + games_per_week: Int_comparison_exp + id: uuid_comparison_exp + is_league_admin: Boolean_comparison_exp + is_roster_locked: Boolean_comparison_exp + match_options_id: uuid_comparison_exp + match_weeks: league_match_weeks_bool_exp + match_weeks_aggregate: league_match_weeks_aggregate_bool_exp + match_weeks_count: Int_comparison_exp + max_roster_size: Int_comparison_exp + min_roster_size: Int_comparison_exp + movements: league_team_movements_bool_exp + movements_aggregate: league_team_movements_aggregate_bool_exp + my_registration: league_team_seasons_bool_exp + name: String_comparison_exp + options: match_options_bool_exp + player_stats: v_league_season_player_stats_bool_exp + player_stats_aggregate: v_league_season_player_stats_aggregate_bool_exp + playoff_best_of: Int_comparison_exp + playoff_round_best_of: jsonb_comparison_exp + playoff_seats: Int_comparison_exp + playoff_stage_type: e_tournament_stage_types_enum_comparison_exp + playoff_third_place_match: Boolean_comparison_exp + promote_count: Int_comparison_exp + regular_season_stage_type: e_tournament_stage_types_enum_comparison_exp + relegate_count: Int_comparison_exp + relegation_down_count: Int_comparison_exp + relegation_playoffs: league_relegation_playoffs_bool_exp + relegation_playoffs_aggregate: league_relegation_playoffs_aggregate_bool_exp + relegation_up_count: Int_comparison_exp + roster_lock_at: timestamptz_comparison_exp + season_divisions: league_season_divisions_bool_exp + season_divisions_aggregate: league_season_divisions_aggregate_bool_exp + season_number: Int_comparison_exp + signup_closes_at: timestamptz_comparison_exp + signup_opens_at: timestamptz_comparison_exp + standings: v_league_division_standings_bool_exp + standings_aggregate: v_league_division_standings_aggregate_bool_exp + starts_at: timestamptz_comparison_exp + status: e_league_season_statuses_enum_comparison_exp + team_seasons: league_team_seasons_bool_exp + team_seasons_aggregate: league_team_seasons_aggregate_bool_exp + week_best_of: jsonb_comparison_exp +} + +""" +unique or primary key constraints on table "league_seasons" +""" +enum league_seasons_constraint { + """ + unique or primary key constraint on columns "name" + """ + league_seasons_name_key + + """ + unique or primary key constraint on columns "id" + """ + league_seasons_pkey + + """ + unique or primary key constraint on columns "season_number" + """ + league_seasons_season_number_key +} + +""" +delete the field or element with specified path (for JSON arrays, negative integers count from the end) +""" +input league_seasons_delete_at_path_input { + playoff_round_best_of: [String!] + week_best_of: [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 league_seasons_delete_elem_input { + playoff_round_best_of: Int + week_best_of: Int +} + +""" +delete key/value pair or string element. key/value pairs are matched based on their key value +""" +input league_seasons_delete_key_input { + playoff_round_best_of: String + week_best_of: String +} + +""" +input type for incrementing numeric columns in table "league_seasons" +""" +input league_seasons_inc_input { + created_by_steam_id: bigint + default_best_of: Int + direct_promote_count: Int + direct_relegate_count: Int + games_per_week: Int + match_weeks_count: Int + max_roster_size: Int + min_roster_size: Int + playoff_best_of: Int + playoff_seats: Int + promote_count: Int + relegate_count: Int + relegation_down_count: Int + relegation_up_count: Int + season_number: Int +} + +""" +input type for inserting data into table "league_seasons" +""" +input league_seasons_insert_input { + auto_regular_season_format: Boolean + awards: award_recipients_arr_rel_insert_input + created_at: timestamptz + created_by_steam_id: bigint + default_best_of: Int + direct_promote_count: Int + direct_relegate_count: Int + e_league_season_status: e_league_season_statuses_obj_rel_insert_input + games_per_week: Int + id: uuid + match_options_id: uuid + match_weeks: league_match_weeks_arr_rel_insert_input + match_weeks_count: Int + max_roster_size: Int + min_roster_size: Int + movements: league_team_movements_arr_rel_insert_input + name: String + options: match_options_obj_rel_insert_input + player_stats: v_league_season_player_stats_arr_rel_insert_input + playoff_best_of: Int + playoff_round_best_of: jsonb + playoff_seats: Int + playoff_stage_type: e_tournament_stage_types_enum + playoff_third_place_match: Boolean + promote_count: Int + regular_season_stage_type: e_tournament_stage_types_enum + relegate_count: Int + relegation_down_count: Int + relegation_playoffs: league_relegation_playoffs_arr_rel_insert_input + relegation_up_count: Int + roster_lock_at: timestamptz + season_divisions: league_season_divisions_arr_rel_insert_input + season_number: Int + signup_closes_at: timestamptz + signup_opens_at: timestamptz + standings: v_league_division_standings_arr_rel_insert_input + starts_at: timestamptz + status: e_league_season_statuses_enum + team_seasons: league_team_seasons_arr_rel_insert_input + week_best_of: jsonb +} + +"""aggregate max on columns""" +type league_seasons_max_fields { + created_at: timestamptz + created_by_steam_id: bigint + default_best_of: Int + direct_promote_count: Int + direct_relegate_count: Int + games_per_week: Int + id: uuid + match_options_id: uuid + match_weeks_count: Int + max_roster_size: Int + min_roster_size: Int + name: String + playoff_best_of: Int + playoff_seats: Int + promote_count: Int + relegate_count: Int + relegation_down_count: Int + relegation_up_count: Int + roster_lock_at: timestamptz + season_number: Int + signup_closes_at: timestamptz + signup_opens_at: timestamptz + starts_at: timestamptz +} + +"""aggregate min on columns""" +type league_seasons_min_fields { + created_at: timestamptz + created_by_steam_id: bigint + default_best_of: Int + direct_promote_count: Int + direct_relegate_count: Int + games_per_week: Int + id: uuid + match_options_id: uuid + match_weeks_count: Int + max_roster_size: Int + min_roster_size: Int + name: String + playoff_best_of: Int + playoff_seats: Int + promote_count: Int + relegate_count: Int + relegation_down_count: Int + relegation_up_count: Int + roster_lock_at: timestamptz + season_number: Int + signup_closes_at: timestamptz + signup_opens_at: timestamptz + starts_at: timestamptz +} + +""" +response of any mutation on the table "league_seasons" +""" +type league_seasons_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [league_seasons!]! +} + +""" +input type for inserting object relation for remote table "league_seasons" +""" +input league_seasons_obj_rel_insert_input { + data: league_seasons_insert_input! + + """upsert condition""" + on_conflict: league_seasons_on_conflict +} + +""" +on_conflict condition type for table "league_seasons" +""" +input league_seasons_on_conflict { + constraint: league_seasons_constraint! + update_columns: [league_seasons_update_column!]! = [] + where: league_seasons_bool_exp +} + +"""Ordering options when selecting data from "league_seasons".""" +input league_seasons_order_by { + auto_regular_season_format: order_by + awards_aggregate: award_recipients_aggregate_order_by + can_register: order_by + created_at: order_by + created_by_steam_id: order_by + default_best_of: order_by + direct_promote_count: order_by + direct_relegate_count: order_by + e_league_season_status: e_league_season_statuses_order_by + games_per_week: order_by + id: order_by + is_league_admin: order_by + is_roster_locked: order_by + match_options_id: order_by + match_weeks_aggregate: league_match_weeks_aggregate_order_by + match_weeks_count: order_by + max_roster_size: order_by + min_roster_size: order_by + movements_aggregate: league_team_movements_aggregate_order_by + my_registration_aggregate: league_team_seasons_aggregate_order_by + name: order_by + options: match_options_order_by + player_stats_aggregate: v_league_season_player_stats_aggregate_order_by + playoff_best_of: order_by + playoff_round_best_of: order_by + playoff_seats: order_by + playoff_stage_type: order_by + playoff_third_place_match: order_by + promote_count: order_by + regular_season_stage_type: order_by + relegate_count: order_by + relegation_down_count: order_by + relegation_playoffs_aggregate: league_relegation_playoffs_aggregate_order_by + relegation_up_count: order_by + roster_lock_at: order_by + season_divisions_aggregate: league_season_divisions_aggregate_order_by + season_number: order_by + signup_closes_at: order_by + signup_opens_at: order_by + standings_aggregate: v_league_division_standings_aggregate_order_by + starts_at: order_by + status: order_by + team_seasons_aggregate: league_team_seasons_aggregate_order_by + week_best_of: order_by +} + +"""primary key columns input for table: league_seasons""" +input league_seasons_pk_columns_input { + id: uuid! +} + +"""prepend existing jsonb value of filtered columns with new jsonb value""" +input league_seasons_prepend_input { + playoff_round_best_of: jsonb + week_best_of: jsonb +} + +""" +select columns of table "league_seasons" +""" +enum league_seasons_select_column { + """column name""" + auto_regular_season_format + + """column name""" + created_at + + """column name""" + created_by_steam_id + + """column name""" + default_best_of + + """column name""" + direct_promote_count + + """column name""" + direct_relegate_count + + """column name""" + games_per_week + + """column name""" + id + + """column name""" + match_options_id + + """column name""" + match_weeks_count + + """column name""" + max_roster_size + + """column name""" + min_roster_size + + """column name""" + name + + """column name""" + playoff_best_of + + """column name""" + playoff_round_best_of + + """column name""" + playoff_seats + + """column name""" + playoff_stage_type + + """column name""" + playoff_third_place_match + + """column name""" + promote_count + + """column name""" + regular_season_stage_type + + """column name""" + relegate_count + + """column name""" + relegation_down_count + + """column name""" + relegation_up_count + + """column name""" + roster_lock_at + + """column name""" + season_number + + """column name""" + signup_closes_at + + """column name""" + signup_opens_at + + """column name""" + starts_at + + """column name""" + status + + """column name""" + week_best_of +} + +""" +input type for updating data in table "league_seasons" +""" +input league_seasons_set_input { + auto_regular_season_format: Boolean + created_at: timestamptz + created_by_steam_id: bigint + default_best_of: Int + direct_promote_count: Int + direct_relegate_count: Int + games_per_week: Int + id: uuid + match_options_id: uuid + match_weeks_count: Int + max_roster_size: Int + min_roster_size: Int + name: String + playoff_best_of: Int + playoff_round_best_of: jsonb + playoff_seats: Int + playoff_stage_type: e_tournament_stage_types_enum + playoff_third_place_match: Boolean + promote_count: Int + regular_season_stage_type: e_tournament_stage_types_enum + relegate_count: Int + relegation_down_count: Int + relegation_up_count: Int + roster_lock_at: timestamptz + season_number: Int + signup_closes_at: timestamptz + signup_opens_at: timestamptz + starts_at: timestamptz + status: e_league_season_statuses_enum + week_best_of: jsonb +} + +"""aggregate stddev on columns""" +type league_seasons_stddev_fields { + created_by_steam_id: Float + default_best_of: Float + direct_promote_count: Float + direct_relegate_count: Float + games_per_week: Float + match_weeks_count: Float + max_roster_size: Float + min_roster_size: Float + playoff_best_of: Float + playoff_seats: Float + promote_count: Float + relegate_count: Float + relegation_down_count: Float + relegation_up_count: Float + season_number: Float +} + +"""aggregate stddev_pop on columns""" +type league_seasons_stddev_pop_fields { + created_by_steam_id: Float + default_best_of: Float + direct_promote_count: Float + direct_relegate_count: Float + games_per_week: Float + match_weeks_count: Float + max_roster_size: Float + min_roster_size: Float + playoff_best_of: Float + playoff_seats: Float + promote_count: Float + relegate_count: Float + relegation_down_count: Float + relegation_up_count: Float + season_number: Float +} + +"""aggregate stddev_samp on columns""" +type league_seasons_stddev_samp_fields { + created_by_steam_id: Float + default_best_of: Float + direct_promote_count: Float + direct_relegate_count: Float + games_per_week: Float + match_weeks_count: Float + max_roster_size: Float + min_roster_size: Float + playoff_best_of: Float + playoff_seats: Float + promote_count: Float + relegate_count: Float + relegation_down_count: Float + relegation_up_count: Float + season_number: Float +} + +""" +Streaming cursor of the table "league_seasons" +""" +input league_seasons_stream_cursor_input { + """Stream column input with initial value""" + initial_value: league_seasons_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input league_seasons_stream_cursor_value_input { + auto_regular_season_format: Boolean + created_at: timestamptz + created_by_steam_id: bigint + default_best_of: Int + direct_promote_count: Int + direct_relegate_count: Int + games_per_week: Int + id: uuid + match_options_id: uuid + match_weeks_count: Int + max_roster_size: Int + min_roster_size: Int + name: String + playoff_best_of: Int + playoff_round_best_of: jsonb + playoff_seats: Int + playoff_stage_type: e_tournament_stage_types_enum + playoff_third_place_match: Boolean + promote_count: Int + regular_season_stage_type: e_tournament_stage_types_enum + relegate_count: Int + relegation_down_count: Int + relegation_up_count: Int + roster_lock_at: timestamptz + season_number: Int + signup_closes_at: timestamptz + signup_opens_at: timestamptz + starts_at: timestamptz + status: e_league_season_statuses_enum + week_best_of: jsonb +} + +"""aggregate sum on columns""" +type league_seasons_sum_fields { + created_by_steam_id: bigint + default_best_of: Int + direct_promote_count: Int + direct_relegate_count: Int + games_per_week: Int + match_weeks_count: Int + max_roster_size: Int + min_roster_size: Int + playoff_best_of: Int + playoff_seats: Int + promote_count: Int + relegate_count: Int + relegation_down_count: Int + relegation_up_count: Int + season_number: Int +} + +""" +update columns of table "league_seasons" +""" +enum league_seasons_update_column { + """column name""" + auto_regular_season_format + + """column name""" + created_at + + """column name""" + created_by_steam_id + + """column name""" + default_best_of + + """column name""" + direct_promote_count + + """column name""" + direct_relegate_count + + """column name""" + games_per_week + + """column name""" + id + + """column name""" + match_options_id + + """column name""" + match_weeks_count + + """column name""" + max_roster_size + + """column name""" + min_roster_size + + """column name""" + name + + """column name""" + playoff_best_of + + """column name""" + playoff_round_best_of + + """column name""" + playoff_seats + + """column name""" + playoff_stage_type + + """column name""" + playoff_third_place_match + + """column name""" + promote_count + + """column name""" + regular_season_stage_type + + """column name""" + relegate_count + + """column name""" + relegation_down_count + + """column name""" + relegation_up_count + + """column name""" + roster_lock_at + + """column name""" + season_number + + """column name""" + signup_closes_at + + """column name""" + signup_opens_at + + """column name""" + starts_at + + """column name""" + status + + """column name""" + week_best_of +} + +input league_seasons_updates { + """append existing jsonb value of filtered columns with new jsonb value""" + _append: league_seasons_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: league_seasons_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: league_seasons_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: league_seasons_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: league_seasons_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: league_seasons_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: league_seasons_set_input + + """filter the rows which have to be updated""" + where: league_seasons_bool_exp! +} + +"""aggregate var_pop on columns""" +type league_seasons_var_pop_fields { + created_by_steam_id: Float + default_best_of: Float + direct_promote_count: Float + direct_relegate_count: Float + games_per_week: Float + match_weeks_count: Float + max_roster_size: Float + min_roster_size: Float + playoff_best_of: Float + playoff_seats: Float + promote_count: Float + relegate_count: Float + relegation_down_count: Float + relegation_up_count: Float + season_number: Float +} + +"""aggregate var_samp on columns""" +type league_seasons_var_samp_fields { + created_by_steam_id: Float + default_best_of: Float + direct_promote_count: Float + direct_relegate_count: Float + games_per_week: Float + match_weeks_count: Float + max_roster_size: Float + min_roster_size: Float + playoff_best_of: Float + playoff_seats: Float + promote_count: Float + relegate_count: Float + relegation_down_count: Float + relegation_up_count: Float + season_number: Float +} + +"""aggregate variance on columns""" +type league_seasons_variance_fields { + created_by_steam_id: Float + default_best_of: Float + direct_promote_count: Float + direct_relegate_count: Float + games_per_week: Float + match_weeks_count: Float + max_roster_size: Float + min_roster_size: Float + playoff_best_of: Float + playoff_seats: Float + promote_count: Float + relegate_count: Float + relegation_down_count: Float + relegation_up_count: Float + season_number: Float +} + +""" +columns and relationships of "league_team_movements" +""" +type league_team_movements { + approved_at: timestamptz + + """An object relationship""" + approved_by: players + approved_by_steam_id: bigint + + """An object relationship""" + computed_to_division: league_divisions + computed_to_division_id: uuid + created_at: timestamptz! + + """An object relationship""" + e_movement_type: e_league_movement_types! + final_rank: Int + + """An object relationship""" + final_to_division: league_divisions + final_to_division_id: uuid + + """An object relationship""" + from_division: league_divisions + from_division_id: uuid + id: uuid! + league_season_id: uuid! + + """An object relationship""" + league_team: league_teams! + league_team_id: uuid! + + """An object relationship""" + season: league_seasons! + type: e_league_movement_types_enum! +} + +""" +aggregated selection of "league_team_movements" +""" +type league_team_movements_aggregate { + aggregate: league_team_movements_aggregate_fields + nodes: [league_team_movements!]! +} + +input league_team_movements_aggregate_bool_exp { + count: league_team_movements_aggregate_bool_exp_count +} + +input league_team_movements_aggregate_bool_exp_count { + arguments: [league_team_movements_select_column!] + distinct: Boolean + filter: league_team_movements_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "league_team_movements" +""" +type league_team_movements_aggregate_fields { + avg: league_team_movements_avg_fields + count(columns: [league_team_movements_select_column!], distinct: Boolean): Int! + max: league_team_movements_max_fields + min: league_team_movements_min_fields + stddev: league_team_movements_stddev_fields + stddev_pop: league_team_movements_stddev_pop_fields + stddev_samp: league_team_movements_stddev_samp_fields + sum: league_team_movements_sum_fields + var_pop: league_team_movements_var_pop_fields + var_samp: league_team_movements_var_samp_fields + variance: league_team_movements_variance_fields +} + +""" +order by aggregate values of table "league_team_movements" +""" +input league_team_movements_aggregate_order_by { + avg: league_team_movements_avg_order_by + count: order_by + max: league_team_movements_max_order_by + min: league_team_movements_min_order_by + stddev: league_team_movements_stddev_order_by + stddev_pop: league_team_movements_stddev_pop_order_by + stddev_samp: league_team_movements_stddev_samp_order_by + sum: league_team_movements_sum_order_by + var_pop: league_team_movements_var_pop_order_by + var_samp: league_team_movements_var_samp_order_by + variance: league_team_movements_variance_order_by +} + +""" +input type for inserting array relation for remote table "league_team_movements" +""" +input league_team_movements_arr_rel_insert_input { + data: [league_team_movements_insert_input!]! + + """upsert condition""" + on_conflict: league_team_movements_on_conflict +} + +"""aggregate avg on columns""" +type league_team_movements_avg_fields { + approved_by_steam_id: Float + final_rank: Float +} + +""" +order by avg() on columns of table "league_team_movements" +""" +input league_team_movements_avg_order_by { + approved_by_steam_id: order_by + final_rank: order_by +} + +""" +Boolean expression to filter rows from the table "league_team_movements". All fields are combined with a logical 'AND'. +""" +input league_team_movements_bool_exp { + _and: [league_team_movements_bool_exp!] + _not: league_team_movements_bool_exp + _or: [league_team_movements_bool_exp!] + approved_at: timestamptz_comparison_exp + approved_by: players_bool_exp + approved_by_steam_id: bigint_comparison_exp + computed_to_division: league_divisions_bool_exp + computed_to_division_id: uuid_comparison_exp + created_at: timestamptz_comparison_exp + e_movement_type: e_league_movement_types_bool_exp + final_rank: Int_comparison_exp + final_to_division: league_divisions_bool_exp + final_to_division_id: uuid_comparison_exp + from_division: league_divisions_bool_exp + from_division_id: uuid_comparison_exp + id: uuid_comparison_exp + league_season_id: uuid_comparison_exp + league_team: league_teams_bool_exp + league_team_id: uuid_comparison_exp + season: league_seasons_bool_exp + type: e_league_movement_types_enum_comparison_exp +} + +""" +unique or primary key constraints on table "league_team_movements" +""" +enum league_team_movements_constraint { + """ + unique or primary key constraint on columns "league_season_id", "league_team_id" + """ + league_team_movements_league_season_id_league_team_id_key + + """ + unique or primary key constraint on columns "id" + """ + league_team_movements_pkey +} + +""" +input type for incrementing numeric columns in table "league_team_movements" +""" +input league_team_movements_inc_input { + approved_by_steam_id: bigint + final_rank: Int +} + +""" +input type for inserting data into table "league_team_movements" +""" +input league_team_movements_insert_input { + approved_at: timestamptz + approved_by: players_obj_rel_insert_input + approved_by_steam_id: bigint + computed_to_division: league_divisions_obj_rel_insert_input + computed_to_division_id: uuid + created_at: timestamptz + e_movement_type: e_league_movement_types_obj_rel_insert_input + final_rank: Int + final_to_division: league_divisions_obj_rel_insert_input + final_to_division_id: uuid + from_division: league_divisions_obj_rel_insert_input + from_division_id: uuid + id: uuid + league_season_id: uuid + league_team: league_teams_obj_rel_insert_input + league_team_id: uuid + season: league_seasons_obj_rel_insert_input + type: e_league_movement_types_enum +} + +"""aggregate max on columns""" +type league_team_movements_max_fields { + approved_at: timestamptz + approved_by_steam_id: bigint + computed_to_division_id: uuid + created_at: timestamptz + final_rank: Int + final_to_division_id: uuid + from_division_id: uuid + id: uuid + league_season_id: uuid + league_team_id: uuid +} + +""" +order by max() on columns of table "league_team_movements" +""" +input league_team_movements_max_order_by { + approved_at: order_by + approved_by_steam_id: order_by + computed_to_division_id: order_by + created_at: order_by + final_rank: order_by + final_to_division_id: order_by + from_division_id: order_by + id: order_by + league_season_id: order_by + league_team_id: order_by +} + +"""aggregate min on columns""" +type league_team_movements_min_fields { + approved_at: timestamptz + approved_by_steam_id: bigint + computed_to_division_id: uuid + created_at: timestamptz + final_rank: Int + final_to_division_id: uuid + from_division_id: uuid + id: uuid + league_season_id: uuid + league_team_id: uuid +} + +""" +order by min() on columns of table "league_team_movements" +""" +input league_team_movements_min_order_by { + approved_at: order_by + approved_by_steam_id: order_by + computed_to_division_id: order_by + created_at: order_by + final_rank: order_by + final_to_division_id: order_by + from_division_id: order_by + id: order_by + league_season_id: order_by + league_team_id: order_by +} + +""" +response of any mutation on the table "league_team_movements" +""" +type league_team_movements_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [league_team_movements!]! +} + +""" +on_conflict condition type for table "league_team_movements" +""" +input league_team_movements_on_conflict { + constraint: league_team_movements_constraint! + update_columns: [league_team_movements_update_column!]! = [] + where: league_team_movements_bool_exp +} + +"""Ordering options when selecting data from "league_team_movements".""" +input league_team_movements_order_by { + approved_at: order_by + approved_by: players_order_by + approved_by_steam_id: order_by + computed_to_division: league_divisions_order_by + computed_to_division_id: order_by + created_at: order_by + e_movement_type: e_league_movement_types_order_by + final_rank: order_by + final_to_division: league_divisions_order_by + final_to_division_id: order_by + from_division: league_divisions_order_by + from_division_id: order_by + id: order_by + league_season_id: order_by + league_team: league_teams_order_by + league_team_id: order_by + season: league_seasons_order_by + type: order_by +} + +"""primary key columns input for table: league_team_movements""" +input league_team_movements_pk_columns_input { + id: uuid! +} + +""" +select columns of table "league_team_movements" +""" +enum league_team_movements_select_column { + """column name""" + approved_at + + """column name""" + approved_by_steam_id + + """column name""" + computed_to_division_id + + """column name""" + created_at + + """column name""" + final_rank + + """column name""" + final_to_division_id + + """column name""" + from_division_id + + """column name""" + id + + """column name""" + league_season_id + + """column name""" + league_team_id + + """column name""" + type +} + +""" +input type for updating data in table "league_team_movements" +""" +input league_team_movements_set_input { + approved_at: timestamptz + approved_by_steam_id: bigint + computed_to_division_id: uuid + created_at: timestamptz + final_rank: Int + final_to_division_id: uuid + from_division_id: uuid + id: uuid + league_season_id: uuid + league_team_id: uuid + type: e_league_movement_types_enum +} + +"""aggregate stddev on columns""" +type league_team_movements_stddev_fields { + approved_by_steam_id: Float + final_rank: Float +} + +""" +order by stddev() on columns of table "league_team_movements" +""" +input league_team_movements_stddev_order_by { + approved_by_steam_id: order_by + final_rank: order_by +} + +"""aggregate stddev_pop on columns""" +type league_team_movements_stddev_pop_fields { + approved_by_steam_id: Float + final_rank: Float +} + +""" +order by stddev_pop() on columns of table "league_team_movements" +""" +input league_team_movements_stddev_pop_order_by { + approved_by_steam_id: order_by + final_rank: order_by +} + +"""aggregate stddev_samp on columns""" +type league_team_movements_stddev_samp_fields { + approved_by_steam_id: Float + final_rank: Float +} + +""" +order by stddev_samp() on columns of table "league_team_movements" +""" +input league_team_movements_stddev_samp_order_by { + approved_by_steam_id: order_by + final_rank: order_by +} + +""" +Streaming cursor of the table "league_team_movements" +""" +input league_team_movements_stream_cursor_input { + """Stream column input with initial value""" + initial_value: league_team_movements_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input league_team_movements_stream_cursor_value_input { + approved_at: timestamptz + approved_by_steam_id: bigint + computed_to_division_id: uuid + created_at: timestamptz + final_rank: Int + final_to_division_id: uuid + from_division_id: uuid + id: uuid + league_season_id: uuid + league_team_id: uuid + type: e_league_movement_types_enum +} + +"""aggregate sum on columns""" +type league_team_movements_sum_fields { + approved_by_steam_id: bigint + final_rank: Int +} + +""" +order by sum() on columns of table "league_team_movements" +""" +input league_team_movements_sum_order_by { + approved_by_steam_id: order_by + final_rank: order_by +} + +""" +update columns of table "league_team_movements" +""" +enum league_team_movements_update_column { + """column name""" + approved_at + + """column name""" + approved_by_steam_id + + """column name""" + computed_to_division_id + + """column name""" + created_at + + """column name""" + final_rank + + """column name""" + final_to_division_id + + """column name""" + from_division_id + + """column name""" + id + + """column name""" + league_season_id + + """column name""" + league_team_id + + """column name""" + type +} + +input league_team_movements_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: league_team_movements_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: league_team_movements_set_input + + """filter the rows which have to be updated""" + where: league_team_movements_bool_exp! +} + +"""aggregate var_pop on columns""" +type league_team_movements_var_pop_fields { + approved_by_steam_id: Float + final_rank: Float +} + +""" +order by var_pop() on columns of table "league_team_movements" +""" +input league_team_movements_var_pop_order_by { + approved_by_steam_id: order_by + final_rank: order_by +} + +"""aggregate var_samp on columns""" +type league_team_movements_var_samp_fields { + approved_by_steam_id: Float + final_rank: Float +} + +""" +order by var_samp() on columns of table "league_team_movements" +""" +input league_team_movements_var_samp_order_by { + approved_by_steam_id: order_by + final_rank: order_by +} + +"""aggregate variance on columns""" +type league_team_movements_variance_fields { + approved_by_steam_id: Float + final_rank: Float +} + +""" +order by variance() on columns of table "league_team_movements" +""" +input league_team_movements_variance_order_by { + approved_by_steam_id: order_by + final_rank: order_by +} + +""" +columns and relationships of "league_team_rosters" +""" +type league_team_rosters { + added_at: timestamptz! + league_team_season_id: uuid! + + """An object relationship""" + player: players! + player_steam_id: bigint! + removed_at: timestamptz + removed_reason: String + status: e_team_roster_statuses_enum! + + """An object relationship""" + team_season: league_team_seasons! +} + +""" +aggregated selection of "league_team_rosters" +""" +type league_team_rosters_aggregate { + aggregate: league_team_rosters_aggregate_fields + nodes: [league_team_rosters!]! +} + +input league_team_rosters_aggregate_bool_exp { + count: league_team_rosters_aggregate_bool_exp_count +} + +input league_team_rosters_aggregate_bool_exp_count { + arguments: [league_team_rosters_select_column!] + distinct: Boolean + filter: league_team_rosters_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "league_team_rosters" +""" +type league_team_rosters_aggregate_fields { + avg: league_team_rosters_avg_fields + count(columns: [league_team_rosters_select_column!], distinct: Boolean): Int! + max: league_team_rosters_max_fields + min: league_team_rosters_min_fields + stddev: league_team_rosters_stddev_fields + stddev_pop: league_team_rosters_stddev_pop_fields + stddev_samp: league_team_rosters_stddev_samp_fields + sum: league_team_rosters_sum_fields + var_pop: league_team_rosters_var_pop_fields + var_samp: league_team_rosters_var_samp_fields + variance: league_team_rosters_variance_fields +} + +""" +order by aggregate values of table "league_team_rosters" +""" +input league_team_rosters_aggregate_order_by { + avg: league_team_rosters_avg_order_by + count: order_by + max: league_team_rosters_max_order_by + min: league_team_rosters_min_order_by + stddev: league_team_rosters_stddev_order_by + stddev_pop: league_team_rosters_stddev_pop_order_by + stddev_samp: league_team_rosters_stddev_samp_order_by + sum: league_team_rosters_sum_order_by + var_pop: league_team_rosters_var_pop_order_by + var_samp: league_team_rosters_var_samp_order_by + variance: league_team_rosters_variance_order_by +} + +""" +input type for inserting array relation for remote table "league_team_rosters" +""" +input league_team_rosters_arr_rel_insert_input { + data: [league_team_rosters_insert_input!]! + + """upsert condition""" + on_conflict: league_team_rosters_on_conflict +} + +"""aggregate avg on columns""" +type league_team_rosters_avg_fields { + player_steam_id: Float +} + +""" +order by avg() on columns of table "league_team_rosters" +""" +input league_team_rosters_avg_order_by { + player_steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "league_team_rosters". All fields are combined with a logical 'AND'. +""" +input league_team_rosters_bool_exp { + _and: [league_team_rosters_bool_exp!] + _not: league_team_rosters_bool_exp + _or: [league_team_rosters_bool_exp!] + added_at: timestamptz_comparison_exp + league_team_season_id: uuid_comparison_exp + player: players_bool_exp + player_steam_id: bigint_comparison_exp + removed_at: timestamptz_comparison_exp + removed_reason: String_comparison_exp + status: e_team_roster_statuses_enum_comparison_exp + team_season: league_team_seasons_bool_exp +} + +""" +unique or primary key constraints on table "league_team_rosters" +""" +enum league_team_rosters_constraint { + """ + unique or primary key constraint on columns "player_steam_id", "league_team_season_id" + """ + league_team_rosters_pkey +} + +""" +input type for incrementing numeric columns in table "league_team_rosters" +""" +input league_team_rosters_inc_input { + player_steam_id: bigint +} + +""" +input type for inserting data into table "league_team_rosters" +""" +input league_team_rosters_insert_input { + added_at: timestamptz + league_team_season_id: uuid + player: players_obj_rel_insert_input + player_steam_id: bigint + removed_at: timestamptz + removed_reason: String + status: e_team_roster_statuses_enum + team_season: league_team_seasons_obj_rel_insert_input +} + +"""aggregate max on columns""" +type league_team_rosters_max_fields { + added_at: timestamptz + league_team_season_id: uuid + player_steam_id: bigint + removed_at: timestamptz + removed_reason: String +} + +""" +order by max() on columns of table "league_team_rosters" +""" +input league_team_rosters_max_order_by { + added_at: order_by + league_team_season_id: order_by + player_steam_id: order_by + removed_at: order_by + removed_reason: order_by +} + +"""aggregate min on columns""" +type league_team_rosters_min_fields { + added_at: timestamptz + league_team_season_id: uuid + player_steam_id: bigint + removed_at: timestamptz + removed_reason: String +} + +""" +order by min() on columns of table "league_team_rosters" +""" +input league_team_rosters_min_order_by { + added_at: order_by + league_team_season_id: order_by + player_steam_id: order_by + removed_at: order_by + removed_reason: order_by +} + +""" +response of any mutation on the table "league_team_rosters" +""" +type league_team_rosters_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [league_team_rosters!]! +} + +""" +on_conflict condition type for table "league_team_rosters" +""" +input league_team_rosters_on_conflict { + constraint: league_team_rosters_constraint! + update_columns: [league_team_rosters_update_column!]! = [] + where: league_team_rosters_bool_exp +} + +"""Ordering options when selecting data from "league_team_rosters".""" +input league_team_rosters_order_by { + added_at: order_by + league_team_season_id: order_by + player: players_order_by + player_steam_id: order_by + removed_at: order_by + removed_reason: order_by + status: order_by + team_season: league_team_seasons_order_by +} + +"""primary key columns input for table: league_team_rosters""" +input league_team_rosters_pk_columns_input { + league_team_season_id: uuid! + player_steam_id: bigint! +} + +""" +select columns of table "league_team_rosters" +""" +enum league_team_rosters_select_column { + """column name""" + added_at + + """column name""" + league_team_season_id + + """column name""" + player_steam_id + + """column name""" + removed_at + + """column name""" + removed_reason + + """column name""" + status +} + +""" +input type for updating data in table "league_team_rosters" +""" +input league_team_rosters_set_input { + added_at: timestamptz + league_team_season_id: uuid + player_steam_id: bigint + removed_at: timestamptz + removed_reason: String + status: e_team_roster_statuses_enum +} + +"""aggregate stddev on columns""" +type league_team_rosters_stddev_fields { + player_steam_id: Float +} + +""" +order by stddev() on columns of table "league_team_rosters" +""" +input league_team_rosters_stddev_order_by { + player_steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type league_team_rosters_stddev_pop_fields { + player_steam_id: Float +} + +""" +order by stddev_pop() on columns of table "league_team_rosters" +""" +input league_team_rosters_stddev_pop_order_by { + player_steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type league_team_rosters_stddev_samp_fields { + player_steam_id: Float +} + +""" +order by stddev_samp() on columns of table "league_team_rosters" +""" +input league_team_rosters_stddev_samp_order_by { + player_steam_id: order_by +} + +""" +Streaming cursor of the table "league_team_rosters" +""" +input league_team_rosters_stream_cursor_input { + """Stream column input with initial value""" + initial_value: league_team_rosters_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input league_team_rosters_stream_cursor_value_input { + added_at: timestamptz + league_team_season_id: uuid + player_steam_id: bigint + removed_at: timestamptz + removed_reason: String + status: e_team_roster_statuses_enum +} + +"""aggregate sum on columns""" +type league_team_rosters_sum_fields { + player_steam_id: bigint +} + +""" +order by sum() on columns of table "league_team_rosters" +""" +input league_team_rosters_sum_order_by { + player_steam_id: order_by +} + +""" +update columns of table "league_team_rosters" +""" +enum league_team_rosters_update_column { + """column name""" + added_at + + """column name""" + league_team_season_id + + """column name""" + player_steam_id + + """column name""" + removed_at + + """column name""" + removed_reason + + """column name""" + status +} + +input league_team_rosters_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: league_team_rosters_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: league_team_rosters_set_input + + """filter the rows which have to be updated""" + where: league_team_rosters_bool_exp! +} + +"""aggregate var_pop on columns""" +type league_team_rosters_var_pop_fields { + player_steam_id: Float +} + +""" +order by var_pop() on columns of table "league_team_rosters" +""" +input league_team_rosters_var_pop_order_by { + player_steam_id: order_by +} + +"""aggregate var_samp on columns""" +type league_team_rosters_var_samp_fields { + player_steam_id: Float +} + +""" +order by var_samp() on columns of table "league_team_rosters" +""" +input league_team_rosters_var_samp_order_by { + player_steam_id: order_by +} + +"""aggregate variance on columns""" +type league_team_rosters_variance_fields { + player_steam_id: Float +} + +""" +order by variance() on columns of table "league_team_rosters" +""" +input league_team_rosters_variance_order_by { + player_steam_id: order_by +} + +""" +columns and relationships of "league_team_seasons" +""" +type league_team_seasons { + """An object relationship""" + assigned_division: league_divisions + assigned_division_id: uuid + + """An object relationship""" + captain: players + captain_steam_id: bigint + created_at: timestamptz! + decline_reason: String + + """An object relationship""" + e_registration_status: e_league_registration_statuses! + id: uuid! + league_season_id: uuid! + + """An object relationship""" + league_team: league_teams! + league_team_id: uuid! + + """An object relationship""" + registered_by: players + registered_by_steam_id: bigint + + """An object relationship""" + requested_division: league_divisions + requested_division_id: uuid + + """An array relationship""" + roster( + """distinct select on columns""" + distinct_on: [league_team_rosters_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: [league_team_rosters_order_by!] + + """filter the rows returned""" + where: league_team_rosters_bool_exp + ): [league_team_rosters!]! + + """An aggregate relationship""" + roster_aggregate( + """distinct select on columns""" + distinct_on: [league_team_rosters_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: [league_team_rosters_order_by!] + + """filter the rows returned""" + where: league_team_rosters_bool_exp + ): league_team_rosters_aggregate! + + """An object relationship""" + season: league_seasons! + seed: Int + status: e_league_registration_statuses_enum! + + """An object relationship""" + tournament_team: tournament_teams + tournament_team_id: uuid +} + +""" +aggregated selection of "league_team_seasons" +""" +type league_team_seasons_aggregate { + aggregate: league_team_seasons_aggregate_fields + nodes: [league_team_seasons!]! +} + +input league_team_seasons_aggregate_bool_exp { + count: league_team_seasons_aggregate_bool_exp_count +} + +input league_team_seasons_aggregate_bool_exp_count { + arguments: [league_team_seasons_select_column!] + distinct: Boolean + filter: league_team_seasons_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "league_team_seasons" +""" +type league_team_seasons_aggregate_fields { + avg: league_team_seasons_avg_fields + count(columns: [league_team_seasons_select_column!], distinct: Boolean): Int! + max: league_team_seasons_max_fields + min: league_team_seasons_min_fields + stddev: league_team_seasons_stddev_fields + stddev_pop: league_team_seasons_stddev_pop_fields + stddev_samp: league_team_seasons_stddev_samp_fields + sum: league_team_seasons_sum_fields + var_pop: league_team_seasons_var_pop_fields + var_samp: league_team_seasons_var_samp_fields + variance: league_team_seasons_variance_fields +} + +""" +order by aggregate values of table "league_team_seasons" +""" +input league_team_seasons_aggregate_order_by { + avg: league_team_seasons_avg_order_by + count: order_by + max: league_team_seasons_max_order_by + min: league_team_seasons_min_order_by + stddev: league_team_seasons_stddev_order_by + stddev_pop: league_team_seasons_stddev_pop_order_by + stddev_samp: league_team_seasons_stddev_samp_order_by + sum: league_team_seasons_sum_order_by + var_pop: league_team_seasons_var_pop_order_by + var_samp: league_team_seasons_var_samp_order_by + variance: league_team_seasons_variance_order_by +} + +""" +input type for inserting array relation for remote table "league_team_seasons" +""" +input league_team_seasons_arr_rel_insert_input { + data: [league_team_seasons_insert_input!]! + + """upsert condition""" + on_conflict: league_team_seasons_on_conflict +} + +"""aggregate avg on columns""" +type league_team_seasons_avg_fields { + captain_steam_id: Float + registered_by_steam_id: Float + seed: Float +} + +""" +order by avg() on columns of table "league_team_seasons" +""" +input league_team_seasons_avg_order_by { + captain_steam_id: order_by + registered_by_steam_id: order_by + seed: order_by +} + +""" +Boolean expression to filter rows from the table "league_team_seasons". All fields are combined with a logical 'AND'. +""" +input league_team_seasons_bool_exp { + _and: [league_team_seasons_bool_exp!] + _not: league_team_seasons_bool_exp + _or: [league_team_seasons_bool_exp!] + assigned_division: league_divisions_bool_exp + assigned_division_id: uuid_comparison_exp + captain: players_bool_exp + captain_steam_id: bigint_comparison_exp + created_at: timestamptz_comparison_exp + decline_reason: String_comparison_exp + e_registration_status: e_league_registration_statuses_bool_exp + id: uuid_comparison_exp + league_season_id: uuid_comparison_exp + league_team: league_teams_bool_exp + league_team_id: uuid_comparison_exp + registered_by: players_bool_exp + registered_by_steam_id: bigint_comparison_exp + requested_division: league_divisions_bool_exp + requested_division_id: uuid_comparison_exp + roster: league_team_rosters_bool_exp + roster_aggregate: league_team_rosters_aggregate_bool_exp + season: league_seasons_bool_exp + seed: Int_comparison_exp + status: e_league_registration_statuses_enum_comparison_exp + tournament_team: tournament_teams_bool_exp + tournament_team_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "league_team_seasons" +""" +enum league_team_seasons_constraint { + """ + unique or primary key constraint on columns "league_season_id", "league_team_id" + """ + league_team_seasons_league_season_id_league_team_id_key + + """ + unique or primary key constraint on columns "id" + """ + league_team_seasons_pkey +} + +""" +input type for incrementing numeric columns in table "league_team_seasons" +""" +input league_team_seasons_inc_input { + captain_steam_id: bigint + registered_by_steam_id: bigint + seed: Int +} + +""" +input type for inserting data into table "league_team_seasons" +""" +input league_team_seasons_insert_input { + assigned_division: league_divisions_obj_rel_insert_input + assigned_division_id: uuid + captain: players_obj_rel_insert_input + captain_steam_id: bigint + created_at: timestamptz + decline_reason: String + e_registration_status: e_league_registration_statuses_obj_rel_insert_input + id: uuid + league_season_id: uuid + league_team: league_teams_obj_rel_insert_input + league_team_id: uuid + registered_by: players_obj_rel_insert_input + registered_by_steam_id: bigint + requested_division: league_divisions_obj_rel_insert_input + requested_division_id: uuid + roster: league_team_rosters_arr_rel_insert_input + season: league_seasons_obj_rel_insert_input + seed: Int + status: e_league_registration_statuses_enum + tournament_team: tournament_teams_obj_rel_insert_input + tournament_team_id: uuid +} + +"""aggregate max on columns""" +type league_team_seasons_max_fields { + assigned_division_id: uuid + captain_steam_id: bigint + created_at: timestamptz + decline_reason: String + id: uuid + league_season_id: uuid + league_team_id: uuid + registered_by_steam_id: bigint + requested_division_id: uuid + seed: Int + tournament_team_id: uuid +} + +""" +order by max() on columns of table "league_team_seasons" +""" +input league_team_seasons_max_order_by { + assigned_division_id: order_by + captain_steam_id: order_by + created_at: order_by + decline_reason: order_by + id: order_by + league_season_id: order_by + league_team_id: order_by + registered_by_steam_id: order_by + requested_division_id: order_by + seed: order_by + tournament_team_id: order_by +} + +"""aggregate min on columns""" +type league_team_seasons_min_fields { + assigned_division_id: uuid + captain_steam_id: bigint + created_at: timestamptz + decline_reason: String + id: uuid + league_season_id: uuid + league_team_id: uuid + registered_by_steam_id: bigint + requested_division_id: uuid + seed: Int + tournament_team_id: uuid +} + +""" +order by min() on columns of table "league_team_seasons" +""" +input league_team_seasons_min_order_by { + assigned_division_id: order_by + captain_steam_id: order_by + created_at: order_by + decline_reason: order_by + id: order_by + league_season_id: order_by + league_team_id: order_by + registered_by_steam_id: order_by + requested_division_id: order_by + seed: order_by + tournament_team_id: order_by +} + +""" +response of any mutation on the table "league_team_seasons" +""" +type league_team_seasons_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [league_team_seasons!]! +} + +""" +input type for inserting object relation for remote table "league_team_seasons" +""" +input league_team_seasons_obj_rel_insert_input { + data: league_team_seasons_insert_input! + + """upsert condition""" + on_conflict: league_team_seasons_on_conflict +} + +""" +on_conflict condition type for table "league_team_seasons" +""" +input league_team_seasons_on_conflict { + constraint: league_team_seasons_constraint! + update_columns: [league_team_seasons_update_column!]! = [] + where: league_team_seasons_bool_exp +} + +"""Ordering options when selecting data from "league_team_seasons".""" +input league_team_seasons_order_by { + assigned_division: league_divisions_order_by + assigned_division_id: order_by + captain: players_order_by + captain_steam_id: order_by + created_at: order_by + decline_reason: order_by + e_registration_status: e_league_registration_statuses_order_by + id: order_by + league_season_id: order_by + league_team: league_teams_order_by + league_team_id: order_by + registered_by: players_order_by + registered_by_steam_id: order_by + requested_division: league_divisions_order_by + requested_division_id: order_by + roster_aggregate: league_team_rosters_aggregate_order_by + season: league_seasons_order_by + seed: order_by + status: order_by + tournament_team: tournament_teams_order_by + tournament_team_id: order_by +} + +"""primary key columns input for table: league_team_seasons""" +input league_team_seasons_pk_columns_input { + id: uuid! +} + +""" +select columns of table "league_team_seasons" +""" +enum league_team_seasons_select_column { + """column name""" + assigned_division_id + + """column name""" + captain_steam_id + + """column name""" + created_at + + """column name""" + decline_reason + + """column name""" + id + + """column name""" + league_season_id + + """column name""" + league_team_id + + """column name""" + registered_by_steam_id + + """column name""" + requested_division_id + + """column name""" + seed + + """column name""" + status + + """column name""" + tournament_team_id +} + +""" +input type for updating data in table "league_team_seasons" +""" +input league_team_seasons_set_input { + assigned_division_id: uuid + captain_steam_id: bigint + created_at: timestamptz + decline_reason: String + id: uuid + league_season_id: uuid + league_team_id: uuid + registered_by_steam_id: bigint + requested_division_id: uuid + seed: Int + status: e_league_registration_statuses_enum + tournament_team_id: uuid +} + +"""aggregate stddev on columns""" +type league_team_seasons_stddev_fields { + captain_steam_id: Float + registered_by_steam_id: Float + seed: Float +} + +""" +order by stddev() on columns of table "league_team_seasons" +""" +input league_team_seasons_stddev_order_by { + captain_steam_id: order_by + registered_by_steam_id: order_by + seed: order_by +} + +"""aggregate stddev_pop on columns""" +type league_team_seasons_stddev_pop_fields { + captain_steam_id: Float + registered_by_steam_id: Float + seed: Float +} + +""" +order by stddev_pop() on columns of table "league_team_seasons" +""" +input league_team_seasons_stddev_pop_order_by { + captain_steam_id: order_by + registered_by_steam_id: order_by + seed: order_by +} + +"""aggregate stddev_samp on columns""" +type league_team_seasons_stddev_samp_fields { + captain_steam_id: Float + registered_by_steam_id: Float + seed: Float +} + +""" +order by stddev_samp() on columns of table "league_team_seasons" +""" +input league_team_seasons_stddev_samp_order_by { + captain_steam_id: order_by + registered_by_steam_id: order_by + seed: order_by +} + +""" +Streaming cursor of the table "league_team_seasons" +""" +input league_team_seasons_stream_cursor_input { + """Stream column input with initial value""" + initial_value: league_team_seasons_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input league_team_seasons_stream_cursor_value_input { + assigned_division_id: uuid + captain_steam_id: bigint + created_at: timestamptz + decline_reason: String + id: uuid + league_season_id: uuid + league_team_id: uuid + registered_by_steam_id: bigint + requested_division_id: uuid + seed: Int + status: e_league_registration_statuses_enum + tournament_team_id: uuid +} + +"""aggregate sum on columns""" +type league_team_seasons_sum_fields { + captain_steam_id: bigint + registered_by_steam_id: bigint + seed: Int +} + +""" +order by sum() on columns of table "league_team_seasons" +""" +input league_team_seasons_sum_order_by { + captain_steam_id: order_by + registered_by_steam_id: order_by + seed: order_by +} + +""" +update columns of table "league_team_seasons" +""" +enum league_team_seasons_update_column { + """column name""" + assigned_division_id + + """column name""" + captain_steam_id + + """column name""" + created_at + + """column name""" + decline_reason + + """column name""" + id + + """column name""" + league_season_id + + """column name""" + league_team_id + + """column name""" + registered_by_steam_id + + """column name""" + requested_division_id + + """column name""" + seed + + """column name""" + status + + """column name""" + tournament_team_id +} + +input league_team_seasons_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: league_team_seasons_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: league_team_seasons_set_input + + """filter the rows which have to be updated""" + where: league_team_seasons_bool_exp! +} + +"""aggregate var_pop on columns""" +type league_team_seasons_var_pop_fields { + captain_steam_id: Float + registered_by_steam_id: Float + seed: Float +} + +""" +order by var_pop() on columns of table "league_team_seasons" +""" +input league_team_seasons_var_pop_order_by { + captain_steam_id: order_by + registered_by_steam_id: order_by + seed: order_by +} + +"""aggregate var_samp on columns""" +type league_team_seasons_var_samp_fields { + captain_steam_id: Float + registered_by_steam_id: Float + seed: Float +} + +""" +order by var_samp() on columns of table "league_team_seasons" +""" +input league_team_seasons_var_samp_order_by { + captain_steam_id: order_by + registered_by_steam_id: order_by + seed: order_by +} + +"""aggregate variance on columns""" +type league_team_seasons_variance_fields { + captain_steam_id: Float + registered_by_steam_id: Float + seed: Float +} + +""" +order by variance() on columns of table "league_team_seasons" +""" +input league_team_seasons_variance_order_by { + captain_steam_id: order_by + registered_by_steam_id: order_by + seed: order_by +} + +""" +columns and relationships of "league_teams" +""" +type league_teams { + created_at: timestamptz! + id: uuid! + + """An array relationship""" + movements( + """distinct select on columns""" + distinct_on: [league_team_movements_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: [league_team_movements_order_by!] + + """filter the rows returned""" + where: league_team_movements_bool_exp + ): [league_team_movements!]! + + """An aggregate relationship""" + movements_aggregate( + """distinct select on columns""" + distinct_on: [league_team_movements_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: [league_team_movements_order_by!] + + """filter the rows returned""" + where: league_team_movements_bool_exp + ): league_team_movements_aggregate! + + """An object relationship""" + team: teams! + team_id: uuid! + + """An array relationship""" + team_seasons( + """distinct select on columns""" + distinct_on: [league_team_seasons_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: [league_team_seasons_order_by!] + + """filter the rows returned""" + where: league_team_seasons_bool_exp + ): [league_team_seasons!]! + + """An aggregate relationship""" + team_seasons_aggregate( + """distinct select on columns""" + distinct_on: [league_team_seasons_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: [league_team_seasons_order_by!] + + """filter the rows returned""" + where: league_team_seasons_bool_exp + ): league_team_seasons_aggregate! +} + +""" +aggregated selection of "league_teams" +""" +type league_teams_aggregate { + aggregate: league_teams_aggregate_fields + nodes: [league_teams!]! +} + +""" +aggregate fields of "league_teams" +""" +type league_teams_aggregate_fields { + count(columns: [league_teams_select_column!], distinct: Boolean): Int! + max: league_teams_max_fields + min: league_teams_min_fields +} + +""" +Boolean expression to filter rows from the table "league_teams". All fields are combined with a logical 'AND'. +""" +input league_teams_bool_exp { + _and: [league_teams_bool_exp!] + _not: league_teams_bool_exp + _or: [league_teams_bool_exp!] + created_at: timestamptz_comparison_exp + id: uuid_comparison_exp + movements: league_team_movements_bool_exp + movements_aggregate: league_team_movements_aggregate_bool_exp + team: teams_bool_exp + team_id: uuid_comparison_exp + team_seasons: league_team_seasons_bool_exp + team_seasons_aggregate: league_team_seasons_aggregate_bool_exp +} + +""" +unique or primary key constraints on table "league_teams" +""" +enum league_teams_constraint { + """ + unique or primary key constraint on columns "id" + """ + league_teams_pkey + + """ + unique or primary key constraint on columns "team_id" + """ + league_teams_team_id_key +} + +""" +input type for inserting data into table "league_teams" +""" +input league_teams_insert_input { + created_at: timestamptz + id: uuid + movements: league_team_movements_arr_rel_insert_input + team: teams_obj_rel_insert_input + team_id: uuid + team_seasons: league_team_seasons_arr_rel_insert_input +} + +"""aggregate max on columns""" +type league_teams_max_fields { + created_at: timestamptz + id: uuid + team_id: uuid +} + +"""aggregate min on columns""" +type league_teams_min_fields { + created_at: timestamptz + id: uuid + team_id: uuid +} + +""" +response of any mutation on the table "league_teams" +""" +type league_teams_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [league_teams!]! +} + +""" +input type for inserting object relation for remote table "league_teams" +""" +input league_teams_obj_rel_insert_input { + data: league_teams_insert_input! + + """upsert condition""" + on_conflict: league_teams_on_conflict +} + +""" +on_conflict condition type for table "league_teams" +""" +input league_teams_on_conflict { + constraint: league_teams_constraint! + update_columns: [league_teams_update_column!]! = [] + where: league_teams_bool_exp +} + +"""Ordering options when selecting data from "league_teams".""" +input league_teams_order_by { + created_at: order_by + id: order_by + movements_aggregate: league_team_movements_aggregate_order_by + team: teams_order_by + team_id: order_by + team_seasons_aggregate: league_team_seasons_aggregate_order_by +} + +"""primary key columns input for table: league_teams""" +input league_teams_pk_columns_input { + id: uuid! +} + +""" +select columns of table "league_teams" +""" +enum league_teams_select_column { + """column name""" + created_at + + """column name""" + id + + """column name""" + team_id +} + +""" +input type for updating data in table "league_teams" +""" +input league_teams_set_input { + created_at: timestamptz + id: uuid + team_id: uuid +} + +""" +Streaming cursor of the table "league_teams" +""" +input league_teams_stream_cursor_input { + """Stream column input with initial value""" + initial_value: league_teams_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input league_teams_stream_cursor_value_input { + created_at: timestamptz + id: uuid + team_id: uuid +} + +""" +update columns of table "league_teams" +""" +enum league_teams_update_column { + """column name""" + created_at + + """column name""" + id + + """column name""" + team_id +} + +input league_teams_updates { + """sets the columns of the filtered rows to the given values""" + _set: league_teams_set_input + + """filter the rows which have to be updated""" + where: league_teams_bool_exp! +} + +""" +columns and relationships of "lobbies" +""" +type lobbies { + access: e_lobby_access_enum! + created_at: timestamptz! + + """An object relationship""" + e_lobby_access: e_lobby_access! + id: uuid! + + """An array relationship""" + players( + """distinct select on columns""" + distinct_on: [lobby_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [lobby_players_order_by!] + + """filter the rows returned""" + where: lobby_players_bool_exp + ): [lobby_players!]! + + """An aggregate relationship""" + players_aggregate( + """distinct select on columns""" + distinct_on: [lobby_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [lobby_players_order_by!] + + """filter the rows returned""" + where: lobby_players_bool_exp + ): lobby_players_aggregate! +} + +""" +aggregated selection of "lobbies" +""" +type lobbies_aggregate { + aggregate: lobbies_aggregate_fields + nodes: [lobbies!]! +} + +""" +aggregate fields of "lobbies" +""" +type lobbies_aggregate_fields { + count(columns: [lobbies_select_column!], distinct: Boolean): Int! + max: lobbies_max_fields + min: lobbies_min_fields +} + +""" +Boolean expression to filter rows from the table "lobbies". All fields are combined with a logical 'AND'. +""" +input lobbies_bool_exp { + _and: [lobbies_bool_exp!] + _not: lobbies_bool_exp + _or: [lobbies_bool_exp!] + access: e_lobby_access_enum_comparison_exp + created_at: timestamptz_comparison_exp + e_lobby_access: e_lobby_access_bool_exp + id: uuid_comparison_exp + players: lobby_players_bool_exp + players_aggregate: lobby_players_aggregate_bool_exp +} + +""" +unique or primary key constraints on table "lobbies" +""" +enum lobbies_constraint { + """ + unique or primary key constraint on columns "id" + """ + lobbies_pkey +} + +""" +input type for inserting data into table "lobbies" +""" +input lobbies_insert_input { + access: e_lobby_access_enum + created_at: timestamptz + e_lobby_access: e_lobby_access_obj_rel_insert_input + id: uuid + players: lobby_players_arr_rel_insert_input +} + +"""aggregate max on columns""" +type lobbies_max_fields { + created_at: timestamptz + id: uuid +} + +"""aggregate min on columns""" +type lobbies_min_fields { + created_at: timestamptz + id: uuid +} + +""" +response of any mutation on the table "lobbies" +""" +type lobbies_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [lobbies!]! +} + +""" +input type for inserting object relation for remote table "lobbies" +""" +input lobbies_obj_rel_insert_input { + data: lobbies_insert_input! + + """upsert condition""" + on_conflict: lobbies_on_conflict +} + +""" +on_conflict condition type for table "lobbies" +""" +input lobbies_on_conflict { + constraint: lobbies_constraint! + update_columns: [lobbies_update_column!]! = [] + where: lobbies_bool_exp +} + +"""Ordering options when selecting data from "lobbies".""" +input lobbies_order_by { + access: order_by + created_at: order_by + e_lobby_access: e_lobby_access_order_by + id: order_by + players_aggregate: lobby_players_aggregate_order_by +} + +"""primary key columns input for table: lobbies""" +input lobbies_pk_columns_input { + id: uuid! +} + +""" +select columns of table "lobbies" +""" +enum lobbies_select_column { + """column name""" + access + + """column name""" + created_at + + """column name""" + id +} + +""" +input type for updating data in table "lobbies" +""" +input lobbies_set_input { + access: e_lobby_access_enum + created_at: timestamptz + id: uuid +} + +""" +Streaming cursor of the table "lobbies" +""" +input lobbies_stream_cursor_input { + """Stream column input with initial value""" + initial_value: lobbies_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input lobbies_stream_cursor_value_input { + access: e_lobby_access_enum + created_at: timestamptz + id: uuid +} + +""" +update columns of table "lobbies" +""" +enum lobbies_update_column { + """column name""" + access + + """column name""" + created_at + + """column name""" + id +} + +input lobbies_updates { + """sets the columns of the filtered rows to the given values""" + _set: lobbies_set_input + + """filter the rows which have to be updated""" + where: lobbies_bool_exp! +} + +""" +columns and relationships of "lobby_players" +""" +type lobby_players { + captain: Boolean! + invited_by_steam_id: bigint + + """An object relationship""" + lobby: lobbies! + lobby_id: uuid! + + """An object relationship""" + player: players! + status: e_lobby_player_status_enum! + steam_id: bigint! +} + +""" +aggregated selection of "lobby_players" +""" +type lobby_players_aggregate { + aggregate: lobby_players_aggregate_fields + nodes: [lobby_players!]! +} + +input lobby_players_aggregate_bool_exp { + bool_and: lobby_players_aggregate_bool_exp_bool_and + bool_or: lobby_players_aggregate_bool_exp_bool_or + count: lobby_players_aggregate_bool_exp_count +} + +input lobby_players_aggregate_bool_exp_bool_and { + arguments: lobby_players_select_column_lobby_players_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: lobby_players_bool_exp + predicate: Boolean_comparison_exp! +} + +input lobby_players_aggregate_bool_exp_bool_or { + arguments: lobby_players_select_column_lobby_players_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: lobby_players_bool_exp + predicate: Boolean_comparison_exp! +} + +input lobby_players_aggregate_bool_exp_count { + arguments: [lobby_players_select_column!] + distinct: Boolean + filter: lobby_players_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "lobby_players" +""" +type lobby_players_aggregate_fields { + avg: lobby_players_avg_fields + count(columns: [lobby_players_select_column!], distinct: Boolean): Int! + max: lobby_players_max_fields + min: lobby_players_min_fields + stddev: lobby_players_stddev_fields + stddev_pop: lobby_players_stddev_pop_fields + stddev_samp: lobby_players_stddev_samp_fields + sum: lobby_players_sum_fields + var_pop: lobby_players_var_pop_fields + var_samp: lobby_players_var_samp_fields + variance: lobby_players_variance_fields +} + +""" +order by aggregate values of table "lobby_players" +""" +input lobby_players_aggregate_order_by { + avg: lobby_players_avg_order_by + count: order_by + max: lobby_players_max_order_by + min: lobby_players_min_order_by + stddev: lobby_players_stddev_order_by + stddev_pop: lobby_players_stddev_pop_order_by + stddev_samp: lobby_players_stddev_samp_order_by + sum: lobby_players_sum_order_by + var_pop: lobby_players_var_pop_order_by + var_samp: lobby_players_var_samp_order_by + variance: lobby_players_variance_order_by +} + +""" +input type for inserting array relation for remote table "lobby_players" +""" +input lobby_players_arr_rel_insert_input { + data: [lobby_players_insert_input!]! + + """upsert condition""" + on_conflict: lobby_players_on_conflict +} + +"""aggregate avg on columns""" +type lobby_players_avg_fields { + invited_by_steam_id: Float + steam_id: Float +} + +""" +order by avg() on columns of table "lobby_players" +""" +input lobby_players_avg_order_by { + invited_by_steam_id: order_by + steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "lobby_players". All fields are combined with a logical 'AND'. +""" +input lobby_players_bool_exp { + _and: [lobby_players_bool_exp!] + _not: lobby_players_bool_exp + _or: [lobby_players_bool_exp!] + captain: Boolean_comparison_exp + invited_by_steam_id: bigint_comparison_exp + lobby: lobbies_bool_exp + lobby_id: uuid_comparison_exp + player: players_bool_exp + status: e_lobby_player_status_enum_comparison_exp + steam_id: bigint_comparison_exp +} + +""" +unique or primary key constraints on table "lobby_players" +""" +enum lobby_players_constraint { + """ + unique or primary key constraint on columns "lobby_id", "steam_id" + """ + lobby_players_pkey +} + +""" +input type for incrementing numeric columns in table "lobby_players" +""" +input lobby_players_inc_input { + invited_by_steam_id: bigint + steam_id: bigint +} + +""" +input type for inserting data into table "lobby_players" +""" +input lobby_players_insert_input { + captain: Boolean + invited_by_steam_id: bigint + lobby: lobbies_obj_rel_insert_input + lobby_id: uuid + player: players_obj_rel_insert_input + status: e_lobby_player_status_enum + steam_id: bigint +} + +"""aggregate max on columns""" +type lobby_players_max_fields { + invited_by_steam_id: bigint + lobby_id: uuid + steam_id: bigint +} + +""" +order by max() on columns of table "lobby_players" +""" +input lobby_players_max_order_by { + invited_by_steam_id: order_by + lobby_id: order_by + steam_id: order_by +} + +"""aggregate min on columns""" +type lobby_players_min_fields { + invited_by_steam_id: bigint + lobby_id: uuid + steam_id: bigint +} + +""" +order by min() on columns of table "lobby_players" +""" +input lobby_players_min_order_by { + invited_by_steam_id: order_by + lobby_id: order_by + steam_id: order_by +} + +""" +response of any mutation on the table "lobby_players" +""" +type lobby_players_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [lobby_players!]! +} + +""" +on_conflict condition type for table "lobby_players" +""" +input lobby_players_on_conflict { + constraint: lobby_players_constraint! + update_columns: [lobby_players_update_column!]! = [] + where: lobby_players_bool_exp +} + +"""Ordering options when selecting data from "lobby_players".""" +input lobby_players_order_by { + captain: order_by + invited_by_steam_id: order_by + lobby: lobbies_order_by + lobby_id: order_by + player: players_order_by + status: order_by + steam_id: order_by +} + +"""primary key columns input for table: lobby_players""" +input lobby_players_pk_columns_input { + lobby_id: uuid! + steam_id: bigint! +} + +""" +select columns of table "lobby_players" +""" +enum lobby_players_select_column { + """column name""" + captain + + """column name""" + invited_by_steam_id + + """column name""" + lobby_id + + """column name""" + status + + """column name""" + steam_id +} + +""" +select "lobby_players_aggregate_bool_exp_bool_and_arguments_columns" columns of table "lobby_players" +""" +enum lobby_players_select_column_lobby_players_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + captain +} + +""" +select "lobby_players_aggregate_bool_exp_bool_or_arguments_columns" columns of table "lobby_players" +""" +enum lobby_players_select_column_lobby_players_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + captain +} + +""" +input type for updating data in table "lobby_players" +""" +input lobby_players_set_input { + captain: Boolean + invited_by_steam_id: bigint + lobby_id: uuid + status: e_lobby_player_status_enum + steam_id: bigint +} + +"""aggregate stddev on columns""" +type lobby_players_stddev_fields { + invited_by_steam_id: Float + steam_id: Float +} + +""" +order by stddev() on columns of table "lobby_players" +""" +input lobby_players_stddev_order_by { + invited_by_steam_id: order_by + steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type lobby_players_stddev_pop_fields { + invited_by_steam_id: Float + steam_id: Float +} + +""" +order by stddev_pop() on columns of table "lobby_players" +""" +input lobby_players_stddev_pop_order_by { + invited_by_steam_id: order_by + steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type lobby_players_stddev_samp_fields { + invited_by_steam_id: Float + steam_id: Float +} + +""" +order by stddev_samp() on columns of table "lobby_players" +""" +input lobby_players_stddev_samp_order_by { + invited_by_steam_id: order_by + steam_id: order_by +} + +""" +Streaming cursor of the table "lobby_players" +""" +input lobby_players_stream_cursor_input { + """Stream column input with initial value""" + initial_value: lobby_players_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input lobby_players_stream_cursor_value_input { + captain: Boolean + invited_by_steam_id: bigint + lobby_id: uuid + status: e_lobby_player_status_enum + steam_id: bigint +} + +"""aggregate sum on columns""" +type lobby_players_sum_fields { + invited_by_steam_id: bigint + steam_id: bigint +} + +""" +order by sum() on columns of table "lobby_players" +""" +input lobby_players_sum_order_by { + invited_by_steam_id: order_by + steam_id: order_by +} + +""" +update columns of table "lobby_players" +""" +enum lobby_players_update_column { + """column name""" + captain + + """column name""" + invited_by_steam_id + + """column name""" + lobby_id + + """column name""" + status + + """column name""" + steam_id +} + +input lobby_players_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: lobby_players_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: lobby_players_set_input + + """filter the rows which have to be updated""" + where: lobby_players_bool_exp! +} + +"""aggregate var_pop on columns""" +type lobby_players_var_pop_fields { + invited_by_steam_id: Float + steam_id: Float +} + +""" +order by var_pop() on columns of table "lobby_players" +""" +input lobby_players_var_pop_order_by { + invited_by_steam_id: order_by + steam_id: order_by +} + +"""aggregate var_samp on columns""" +type lobby_players_var_samp_fields { + invited_by_steam_id: Float + steam_id: Float +} + +""" +order by var_samp() on columns of table "lobby_players" +""" +input lobby_players_var_samp_order_by { + invited_by_steam_id: order_by + steam_id: order_by +} + +"""aggregate variance on columns""" +type lobby_players_variance_fields { + invited_by_steam_id: Float + steam_id: Float +} + +""" +order by variance() on columns of table "lobby_players" +""" +input lobby_players_variance_order_by { + invited_by_steam_id: order_by + steam_id: order_by +} + +""" +columns and relationships of "map_callouts" +""" +type map_callouts { + boxes( + """JSON select path""" + path: String + ): jsonb! + map_name: String! + name: String! + source: String! + updated_at: timestamptz! +} + +""" +aggregated selection of "map_callouts" +""" +type map_callouts_aggregate { + aggregate: map_callouts_aggregate_fields + nodes: [map_callouts!]! +} + +""" +aggregate fields of "map_callouts" +""" +type map_callouts_aggregate_fields { + count(columns: [map_callouts_select_column!], distinct: Boolean): Int! + max: map_callouts_max_fields + min: map_callouts_min_fields +} + +"""append existing jsonb value of filtered columns with new jsonb value""" +input map_callouts_append_input { + boxes: jsonb +} + +""" +Boolean expression to filter rows from the table "map_callouts". All fields are combined with a logical 'AND'. +""" +input map_callouts_bool_exp { + _and: [map_callouts_bool_exp!] + _not: map_callouts_bool_exp + _or: [map_callouts_bool_exp!] + boxes: jsonb_comparison_exp + map_name: String_comparison_exp + name: String_comparison_exp + source: String_comparison_exp + updated_at: timestamptz_comparison_exp +} + +""" +unique or primary key constraints on table "map_callouts" +""" +enum map_callouts_constraint { + """ + unique or primary key constraint on columns "name", "map_name" + """ + map_callouts_pkey +} + +""" +delete the field or element with specified path (for JSON arrays, negative integers count from the end) +""" +input map_callouts_delete_at_path_input { + boxes: [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 map_callouts_delete_elem_input { + boxes: Int +} + +""" +delete key/value pair or string element. key/value pairs are matched based on their key value +""" +input map_callouts_delete_key_input { + boxes: String +} + +""" +input type for inserting data into table "map_callouts" +""" +input map_callouts_insert_input { + boxes: jsonb + map_name: String + name: String + source: String + updated_at: timestamptz +} + +"""aggregate max on columns""" +type map_callouts_max_fields { + map_name: String + name: String + source: String + updated_at: timestamptz +} + +"""aggregate min on columns""" +type map_callouts_min_fields { + map_name: String + name: String + source: String + updated_at: timestamptz +} + +""" +response of any mutation on the table "map_callouts" +""" +type map_callouts_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [map_callouts!]! +} + +""" +on_conflict condition type for table "map_callouts" +""" +input map_callouts_on_conflict { + constraint: map_callouts_constraint! + update_columns: [map_callouts_update_column!]! = [] + where: map_callouts_bool_exp +} + +"""Ordering options when selecting data from "map_callouts".""" +input map_callouts_order_by { + boxes: order_by + map_name: order_by + name: order_by + source: order_by + updated_at: order_by +} + +"""primary key columns input for table: map_callouts""" +input map_callouts_pk_columns_input { + map_name: String! + name: String! +} + +"""prepend existing jsonb value of filtered columns with new jsonb value""" +input map_callouts_prepend_input { + boxes: jsonb +} + +""" +select columns of table "map_callouts" +""" +enum map_callouts_select_column { + """column name""" + boxes + + """column name""" + map_name + + """column name""" + name + + """column name""" + source + + """column name""" + updated_at +} + +""" +input type for updating data in table "map_callouts" +""" +input map_callouts_set_input { + boxes: jsonb + map_name: String + name: String + source: String + updated_at: timestamptz +} + +""" +Streaming cursor of the table "map_callouts" +""" +input map_callouts_stream_cursor_input { + """Stream column input with initial value""" + initial_value: map_callouts_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input map_callouts_stream_cursor_value_input { + boxes: jsonb + map_name: String + name: String + source: String + updated_at: timestamptz +} + +""" +update columns of table "map_callouts" +""" +enum map_callouts_update_column { + """column name""" + boxes + + """column name""" + map_name + + """column name""" + name + + """column name""" + source + + """column name""" + updated_at +} + +input map_callouts_updates { + """append existing jsonb value of filtered columns with new jsonb value""" + _append: map_callouts_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: map_callouts_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: map_callouts_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: map_callouts_delete_key_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: map_callouts_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: map_callouts_set_input + + """filter the rows which have to be updated""" + where: map_callouts_bool_exp! +} + +""" +columns and relationships of "map_pools" +""" +type map_pools { + """An object relationship""" + e_type: e_map_pool_types! + enabled: Boolean! + id: uuid! + + """An array relationship""" + maps( + """distinct select on columns""" + distinct_on: [v_pool_maps_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_pool_maps_order_by!] + + """filter the rows returned""" + where: v_pool_maps_bool_exp + ): [v_pool_maps!]! + + """An aggregate relationship""" + maps_aggregate( + """distinct select on columns""" + distinct_on: [v_pool_maps_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_pool_maps_order_by!] + + """filter the rows returned""" + where: v_pool_maps_bool_exp + ): v_pool_maps_aggregate! + seed: Boolean! + type: e_map_pool_types_enum! +} + +""" +aggregated selection of "map_pools" +""" +type map_pools_aggregate { + aggregate: map_pools_aggregate_fields + nodes: [map_pools!]! +} + +""" +aggregate fields of "map_pools" +""" +type map_pools_aggregate_fields { + count(columns: [map_pools_select_column!], distinct: Boolean): Int! + max: map_pools_max_fields + min: map_pools_min_fields +} + +""" +Boolean expression to filter rows from the table "map_pools". All fields are combined with a logical 'AND'. +""" +input map_pools_bool_exp { + _and: [map_pools_bool_exp!] + _not: map_pools_bool_exp + _or: [map_pools_bool_exp!] + e_type: e_map_pool_types_bool_exp + enabled: Boolean_comparison_exp + id: uuid_comparison_exp + maps: v_pool_maps_bool_exp + maps_aggregate: v_pool_maps_aggregate_bool_exp + seed: Boolean_comparison_exp + type: e_map_pool_types_enum_comparison_exp +} + +""" +unique or primary key constraints on table "map_pools" +""" +enum map_pools_constraint { + """ + unique or primary key constraint on columns "id" + """ + map_pools_pkey +} + +""" +input type for inserting data into table "map_pools" +""" +input map_pools_insert_input { + e_type: e_map_pool_types_obj_rel_insert_input + enabled: Boolean + id: uuid + maps: v_pool_maps_arr_rel_insert_input + seed: Boolean + type: e_map_pool_types_enum +} + +"""aggregate max on columns""" +type map_pools_max_fields { + id: uuid +} + +"""aggregate min on columns""" +type map_pools_min_fields { + id: uuid +} + +""" +response of any mutation on the table "map_pools" +""" +type map_pools_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [map_pools!]! +} + +""" +input type for inserting object relation for remote table "map_pools" +""" +input map_pools_obj_rel_insert_input { + data: map_pools_insert_input! + + """upsert condition""" + on_conflict: map_pools_on_conflict +} + +""" +on_conflict condition type for table "map_pools" +""" +input map_pools_on_conflict { + constraint: map_pools_constraint! + update_columns: [map_pools_update_column!]! = [] + where: map_pools_bool_exp +} + +"""Ordering options when selecting data from "map_pools".""" +input map_pools_order_by { + e_type: e_map_pool_types_order_by + enabled: order_by + id: order_by + maps_aggregate: v_pool_maps_aggregate_order_by + seed: order_by + type: order_by +} + +"""primary key columns input for table: map_pools""" +input map_pools_pk_columns_input { + id: uuid! +} + +""" +select columns of table "map_pools" +""" +enum map_pools_select_column { + """column name""" + enabled + + """column name""" + id + + """column name""" + seed + + """column name""" + type +} + +""" +input type for updating data in table "map_pools" +""" +input map_pools_set_input { + enabled: Boolean + id: uuid + seed: Boolean + type: e_map_pool_types_enum +} + +""" +Streaming cursor of the table "map_pools" +""" +input map_pools_stream_cursor_input { + """Stream column input with initial value""" + initial_value: map_pools_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input map_pools_stream_cursor_value_input { + enabled: Boolean + id: uuid + seed: Boolean + type: e_map_pool_types_enum +} + +""" +update columns of table "map_pools" +""" +enum map_pools_update_column { + """column name""" + enabled + + """column name""" + id + + """column name""" + seed + + """column name""" + type +} + +input map_pools_updates { + """sets the columns of the filtered rows to the given values""" + _set: map_pools_set_input + + """filter the rows which have to be updated""" + where: map_pools_bool_exp! +} + +""" +columns and relationships of "maps" +""" +type maps { + active_pool: Boolean! + deleted_at: timestamptz + + """An object relationship""" + e_match_type: e_match_types! + enabled: Boolean! + id: uuid! + label: String + + """An array relationship""" + match_maps( + """distinct select on columns""" + distinct_on: [match_maps_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_maps_order_by!] + + """filter the rows returned""" + where: match_maps_bool_exp + ): [match_maps!]! + + """An aggregate relationship""" + match_maps_aggregate( + """distinct select on columns""" + distinct_on: [match_maps_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_maps_order_by!] + + """filter the rows returned""" + where: match_maps_bool_exp + ): match_maps_aggregate! + + """An array relationship""" + match_veto_picks( + """distinct select on columns""" + distinct_on: [match_map_veto_picks_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_map_veto_picks_order_by!] + + """filter the rows returned""" + where: match_map_veto_picks_bool_exp + ): [match_map_veto_picks!]! + + """An aggregate relationship""" + match_veto_picks_aggregate( + """distinct select on columns""" + distinct_on: [match_map_veto_picks_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_map_veto_picks_order_by!] + + """filter the rows returned""" + where: match_map_veto_picks_bool_exp + ): match_map_veto_picks_aggregate! + name: String! + patch: String + poster: String + type: e_match_types_enum! + workshop_map_id: String +} + +""" +aggregated selection of "maps" +""" +type maps_aggregate { + aggregate: maps_aggregate_fields + nodes: [maps!]! +} + +input maps_aggregate_bool_exp { + bool_and: maps_aggregate_bool_exp_bool_and + bool_or: maps_aggregate_bool_exp_bool_or + count: maps_aggregate_bool_exp_count +} + +input maps_aggregate_bool_exp_bool_and { + arguments: maps_select_column_maps_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: maps_bool_exp + predicate: Boolean_comparison_exp! +} + +input maps_aggregate_bool_exp_bool_or { + arguments: maps_select_column_maps_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: maps_bool_exp + predicate: Boolean_comparison_exp! +} + +input maps_aggregate_bool_exp_count { + arguments: [maps_select_column!] + distinct: Boolean + filter: maps_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "maps" +""" +type maps_aggregate_fields { + count(columns: [maps_select_column!], distinct: Boolean): Int! + max: maps_max_fields + min: maps_min_fields +} + +""" +order by aggregate values of table "maps" +""" +input maps_aggregate_order_by { + count: order_by + max: maps_max_order_by + min: maps_min_order_by +} + +""" +input type for inserting array relation for remote table "maps" +""" +input maps_arr_rel_insert_input { + data: [maps_insert_input!]! + + """upsert condition""" + on_conflict: maps_on_conflict +} + +""" +Boolean expression to filter rows from the table "maps". All fields are combined with a logical 'AND'. +""" +input maps_bool_exp { + _and: [maps_bool_exp!] + _not: maps_bool_exp + _or: [maps_bool_exp!] + active_pool: Boolean_comparison_exp + deleted_at: timestamptz_comparison_exp + e_match_type: e_match_types_bool_exp + enabled: Boolean_comparison_exp + id: uuid_comparison_exp + label: String_comparison_exp + match_maps: match_maps_bool_exp + match_maps_aggregate: match_maps_aggregate_bool_exp + match_veto_picks: match_map_veto_picks_bool_exp + match_veto_picks_aggregate: match_map_veto_picks_aggregate_bool_exp + name: String_comparison_exp + patch: String_comparison_exp + poster: String_comparison_exp + type: e_match_types_enum_comparison_exp + workshop_map_id: String_comparison_exp +} + +""" +unique or primary key constraints on table "maps" +""" +enum maps_constraint { + """ + unique or primary key constraint on columns "type", "name" + """ + maps_name_type_key + + """ + unique or primary key constraint on columns "id" + """ + maps_pkey +} + +""" +input type for inserting data into table "maps" +""" +input maps_insert_input { + active_pool: Boolean + deleted_at: timestamptz + e_match_type: e_match_types_obj_rel_insert_input + enabled: Boolean + id: uuid + label: String + match_maps: match_maps_arr_rel_insert_input + match_veto_picks: match_map_veto_picks_arr_rel_insert_input + name: String + patch: String + poster: String + type: e_match_types_enum + workshop_map_id: String +} + +"""aggregate max on columns""" +type maps_max_fields { + deleted_at: timestamptz + id: uuid + label: String + name: String + patch: String + poster: String + workshop_map_id: String +} + +""" +order by max() on columns of table "maps" +""" +input maps_max_order_by { + deleted_at: order_by + id: order_by + label: order_by + name: order_by + patch: order_by + poster: order_by + workshop_map_id: order_by +} + +"""aggregate min on columns""" +type maps_min_fields { + deleted_at: timestamptz + id: uuid + label: String + name: String + patch: String + poster: String + workshop_map_id: String +} + +""" +order by min() on columns of table "maps" +""" +input maps_min_order_by { + deleted_at: order_by + id: order_by + label: order_by + name: order_by + patch: order_by + poster: order_by + workshop_map_id: order_by +} + +""" +response of any mutation on the table "maps" +""" +type maps_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [maps!]! +} + +""" +input type for inserting object relation for remote table "maps" +""" +input maps_obj_rel_insert_input { + data: maps_insert_input! + + """upsert condition""" + on_conflict: maps_on_conflict +} + +""" +on_conflict condition type for table "maps" +""" +input maps_on_conflict { + constraint: maps_constraint! + update_columns: [maps_update_column!]! = [] + where: maps_bool_exp +} + +"""Ordering options when selecting data from "maps".""" +input maps_order_by { + active_pool: order_by + deleted_at: order_by + e_match_type: e_match_types_order_by + enabled: order_by + id: order_by + label: order_by + match_maps_aggregate: match_maps_aggregate_order_by + match_veto_picks_aggregate: match_map_veto_picks_aggregate_order_by + name: order_by + patch: order_by + poster: order_by + type: order_by + workshop_map_id: order_by +} + +"""primary key columns input for table: maps""" +input maps_pk_columns_input { + id: uuid! +} + +""" +select columns of table "maps" +""" +enum maps_select_column { + """column name""" + active_pool + + """column name""" + deleted_at + + """column name""" + enabled + + """column name""" + id + + """column name""" + label + + """column name""" + name + + """column name""" + patch + + """column name""" + poster + + """column name""" + type + + """column name""" + workshop_map_id +} + +""" +select "maps_aggregate_bool_exp_bool_and_arguments_columns" columns of table "maps" +""" +enum maps_select_column_maps_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + active_pool + + """column name""" + enabled +} + +""" +select "maps_aggregate_bool_exp_bool_or_arguments_columns" columns of table "maps" +""" +enum maps_select_column_maps_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + active_pool + + """column name""" + enabled +} + +""" +input type for updating data in table "maps" +""" +input maps_set_input { + active_pool: Boolean + deleted_at: timestamptz + enabled: Boolean + id: uuid + label: String + name: String + patch: String + poster: String + type: e_match_types_enum + workshop_map_id: String +} + +""" +Streaming cursor of the table "maps" +""" +input maps_stream_cursor_input { + """Stream column input with initial value""" + initial_value: maps_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input maps_stream_cursor_value_input { + active_pool: Boolean + deleted_at: timestamptz + enabled: Boolean + id: uuid + label: String + name: String + patch: String + poster: String + type: e_match_types_enum + workshop_map_id: String +} + +""" +update columns of table "maps" +""" +enum maps_update_column { + """column name""" + active_pool + + """column name""" + deleted_at + + """column name""" + enabled + + """column name""" + id + + """column name""" + label + + """column name""" + name + + """column name""" + patch + + """column name""" + poster + + """column name""" + type + + """column name""" + workshop_map_id +} + +input maps_updates { + """sets the columns of the filtered rows to the given values""" + _set: maps_set_input + + """filter the rows which have to be updated""" + where: maps_bool_exp! +} + +""" +columns and relationships of "match_clips" +""" +type match_clips { + created_at: timestamptz! + + """ + A computed field, executes function "clip_download_url" + """ + download_url: String + duration_ms: Int + file: String + id: uuid! + kills_count: Int + + """An object relationship""" + match_map: match_maps! + + """An object relationship""" + match_map_demo: match_map_demos + match_map_demo_id: uuid + match_map_id: uuid! + + """An array relationship""" + render_jobs( + """distinct select on columns""" + distinct_on: [clip_render_jobs_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: [clip_render_jobs_order_by!] + + """filter the rows returned""" + where: clip_render_jobs_bool_exp + ): [clip_render_jobs!]! + + """An aggregate relationship""" + render_jobs_aggregate( + """distinct select on columns""" + distinct_on: [clip_render_jobs_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: [clip_render_jobs_order_by!] + + """filter the rows returned""" + where: clip_render_jobs_bool_exp + ): clip_render_jobs_aggregate! + round: Int + size: bigint! + + """An object relationship""" + target: players + target_steam_id: bigint + + """ + A computed field, executes function "clip_thumbnail_download_url" + """ + thumbnail_download_url: String + thumbnail_url: String + title: String + + """An object relationship""" + user: players + user_steam_id: bigint + views_count: Int! + visibility: e_match_clip_visibility_enum! +} + +""" +aggregated selection of "match_clips" +""" +type match_clips_aggregate { + aggregate: match_clips_aggregate_fields + nodes: [match_clips!]! +} + +input match_clips_aggregate_bool_exp { + count: match_clips_aggregate_bool_exp_count +} + +input match_clips_aggregate_bool_exp_count { + arguments: [match_clips_select_column!] + distinct: Boolean + filter: match_clips_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "match_clips" +""" +type match_clips_aggregate_fields { + avg: match_clips_avg_fields + count(columns: [match_clips_select_column!], distinct: Boolean): Int! + max: match_clips_max_fields + min: match_clips_min_fields + stddev: match_clips_stddev_fields + stddev_pop: match_clips_stddev_pop_fields + stddev_samp: match_clips_stddev_samp_fields + sum: match_clips_sum_fields + var_pop: match_clips_var_pop_fields + var_samp: match_clips_var_samp_fields + variance: match_clips_variance_fields +} + +""" +order by aggregate values of table "match_clips" +""" +input match_clips_aggregate_order_by { + avg: match_clips_avg_order_by + count: order_by + max: match_clips_max_order_by + min: match_clips_min_order_by + stddev: match_clips_stddev_order_by + stddev_pop: match_clips_stddev_pop_order_by + stddev_samp: match_clips_stddev_samp_order_by + sum: match_clips_sum_order_by + var_pop: match_clips_var_pop_order_by + var_samp: match_clips_var_samp_order_by + variance: match_clips_variance_order_by +} + +""" +input type for inserting array relation for remote table "match_clips" +""" +input match_clips_arr_rel_insert_input { + data: [match_clips_insert_input!]! + + """upsert condition""" + on_conflict: match_clips_on_conflict +} + +"""aggregate avg on columns""" +type match_clips_avg_fields { + duration_ms: Float + kills_count: Float + round: Float + size: Float + target_steam_id: Float + user_steam_id: Float + views_count: Float +} + +""" +order by avg() on columns of table "match_clips" +""" +input match_clips_avg_order_by { + duration_ms: order_by + kills_count: order_by + round: order_by + size: order_by + target_steam_id: order_by + user_steam_id: order_by + views_count: order_by +} + +""" +Boolean expression to filter rows from the table "match_clips". All fields are combined with a logical 'AND'. +""" +input match_clips_bool_exp { + _and: [match_clips_bool_exp!] + _not: match_clips_bool_exp + _or: [match_clips_bool_exp!] + created_at: timestamptz_comparison_exp + download_url: String_comparison_exp + duration_ms: Int_comparison_exp + file: String_comparison_exp + id: uuid_comparison_exp + kills_count: Int_comparison_exp + match_map: match_maps_bool_exp + match_map_demo: match_map_demos_bool_exp + match_map_demo_id: uuid_comparison_exp + match_map_id: uuid_comparison_exp + render_jobs: clip_render_jobs_bool_exp + render_jobs_aggregate: clip_render_jobs_aggregate_bool_exp + round: Int_comparison_exp + size: bigint_comparison_exp + target: players_bool_exp + target_steam_id: bigint_comparison_exp + thumbnail_download_url: String_comparison_exp + thumbnail_url: String_comparison_exp + title: String_comparison_exp + user: players_bool_exp + user_steam_id: bigint_comparison_exp + views_count: Int_comparison_exp + visibility: e_match_clip_visibility_enum_comparison_exp +} + +""" +unique or primary key constraints on table "match_clips" +""" +enum match_clips_constraint { + """ + unique or primary key constraint on columns "id" + """ + match_clips_pkey +} + +""" +input type for incrementing numeric columns in table "match_clips" +""" +input match_clips_inc_input { + duration_ms: Int + kills_count: Int + round: Int + size: bigint + target_steam_id: bigint + user_steam_id: bigint + views_count: Int +} + +""" +input type for inserting data into table "match_clips" +""" +input match_clips_insert_input { + created_at: timestamptz + duration_ms: Int + file: String + id: uuid + kills_count: Int + match_map: match_maps_obj_rel_insert_input + match_map_demo: match_map_demos_obj_rel_insert_input + match_map_demo_id: uuid + match_map_id: uuid + render_jobs: clip_render_jobs_arr_rel_insert_input + round: Int + size: bigint + target: players_obj_rel_insert_input + target_steam_id: bigint + thumbnail_url: String + title: String + user: players_obj_rel_insert_input + user_steam_id: bigint + views_count: Int + visibility: e_match_clip_visibility_enum +} + +"""aggregate max on columns""" +type match_clips_max_fields { + created_at: timestamptz + + """ + A computed field, executes function "clip_download_url" + """ + download_url: String + duration_ms: Int + file: String + id: uuid + kills_count: Int + match_map_demo_id: uuid + match_map_id: uuid + round: Int + size: bigint + target_steam_id: bigint + + """ + A computed field, executes function "clip_thumbnail_download_url" + """ + thumbnail_download_url: String + thumbnail_url: String + title: String + user_steam_id: bigint + views_count: Int +} + +""" +order by max() on columns of table "match_clips" +""" +input match_clips_max_order_by { + created_at: order_by + duration_ms: order_by + file: order_by + id: order_by + kills_count: order_by + match_map_demo_id: order_by + match_map_id: order_by + round: order_by + size: order_by + target_steam_id: order_by + thumbnail_url: order_by + title: order_by + user_steam_id: order_by + views_count: order_by +} + +"""aggregate min on columns""" +type match_clips_min_fields { + created_at: timestamptz + + """ + A computed field, executes function "clip_download_url" + """ + download_url: String + duration_ms: Int + file: String + id: uuid + kills_count: Int + match_map_demo_id: uuid + match_map_id: uuid + round: Int + size: bigint + target_steam_id: bigint + + """ + A computed field, executes function "clip_thumbnail_download_url" + """ + thumbnail_download_url: String + thumbnail_url: String + title: String + user_steam_id: bigint + views_count: Int +} + +""" +order by min() on columns of table "match_clips" +""" +input match_clips_min_order_by { + created_at: order_by + duration_ms: order_by + file: order_by + id: order_by + kills_count: order_by + match_map_demo_id: order_by + match_map_id: order_by + round: order_by + size: order_by + target_steam_id: order_by + thumbnail_url: order_by + title: order_by + user_steam_id: order_by + views_count: order_by +} + +""" +response of any mutation on the table "match_clips" +""" +type match_clips_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [match_clips!]! +} + +""" +input type for inserting object relation for remote table "match_clips" +""" +input match_clips_obj_rel_insert_input { + data: match_clips_insert_input! + + """upsert condition""" + on_conflict: match_clips_on_conflict +} + +""" +on_conflict condition type for table "match_clips" +""" +input match_clips_on_conflict { + constraint: match_clips_constraint! + update_columns: [match_clips_update_column!]! = [] + where: match_clips_bool_exp +} + +"""Ordering options when selecting data from "match_clips".""" +input match_clips_order_by { + created_at: order_by + download_url: order_by + duration_ms: order_by + file: order_by + id: order_by + kills_count: order_by + match_map: match_maps_order_by + match_map_demo: match_map_demos_order_by + match_map_demo_id: order_by + match_map_id: order_by + render_jobs_aggregate: clip_render_jobs_aggregate_order_by + round: order_by + size: order_by + target: players_order_by + target_steam_id: order_by + thumbnail_download_url: order_by + thumbnail_url: order_by + title: order_by + user: players_order_by + user_steam_id: order_by + views_count: order_by + visibility: order_by +} + +"""primary key columns input for table: match_clips""" +input match_clips_pk_columns_input { + id: uuid! +} + +""" +select columns of table "match_clips" +""" +enum match_clips_select_column { + """column name""" + created_at + + """column name""" + duration_ms + + """column name""" + file + + """column name""" + id + + """column name""" + kills_count + + """column name""" + match_map_demo_id + + """column name""" + match_map_id + + """column name""" + round + + """column name""" + size + + """column name""" + target_steam_id + + """column name""" + thumbnail_url + + """column name""" + title + + """column name""" + user_steam_id + + """column name""" + views_count + + """column name""" + visibility +} + +""" +input type for updating data in table "match_clips" +""" +input match_clips_set_input { + created_at: timestamptz + duration_ms: Int + file: String + id: uuid + kills_count: Int + match_map_demo_id: uuid + match_map_id: uuid + round: Int + size: bigint + target_steam_id: bigint + thumbnail_url: String + title: String + user_steam_id: bigint + views_count: Int + visibility: e_match_clip_visibility_enum +} + +"""aggregate stddev on columns""" +type match_clips_stddev_fields { + duration_ms: Float + kills_count: Float + round: Float + size: Float + target_steam_id: Float + user_steam_id: Float + views_count: Float +} + +""" +order by stddev() on columns of table "match_clips" +""" +input match_clips_stddev_order_by { + duration_ms: order_by + kills_count: order_by + round: order_by + size: order_by + target_steam_id: order_by + user_steam_id: order_by + views_count: order_by +} + +"""aggregate stddev_pop on columns""" +type match_clips_stddev_pop_fields { + duration_ms: Float + kills_count: Float + round: Float + size: Float + target_steam_id: Float + user_steam_id: Float + views_count: Float +} + +""" +order by stddev_pop() on columns of table "match_clips" +""" +input match_clips_stddev_pop_order_by { + duration_ms: order_by + kills_count: order_by + round: order_by + size: order_by + target_steam_id: order_by + user_steam_id: order_by + views_count: order_by +} + +"""aggregate stddev_samp on columns""" +type match_clips_stddev_samp_fields { + duration_ms: Float + kills_count: Float + round: Float + size: Float + target_steam_id: Float + user_steam_id: Float + views_count: Float +} + +""" +order by stddev_samp() on columns of table "match_clips" +""" +input match_clips_stddev_samp_order_by { + duration_ms: order_by + kills_count: order_by + round: order_by + size: order_by + target_steam_id: order_by + user_steam_id: order_by + views_count: order_by +} + +""" +Streaming cursor of the table "match_clips" +""" +input match_clips_stream_cursor_input { + """Stream column input with initial value""" + initial_value: match_clips_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input match_clips_stream_cursor_value_input { + created_at: timestamptz + duration_ms: Int + file: String + id: uuid + kills_count: Int + match_map_demo_id: uuid + match_map_id: uuid + round: Int + size: bigint + target_steam_id: bigint + thumbnail_url: String + title: String + user_steam_id: bigint + views_count: Int + visibility: e_match_clip_visibility_enum +} + +"""aggregate sum on columns""" +type match_clips_sum_fields { + duration_ms: Int + kills_count: Int + round: Int + size: bigint + target_steam_id: bigint + user_steam_id: bigint + views_count: Int +} + +""" +order by sum() on columns of table "match_clips" +""" +input match_clips_sum_order_by { + duration_ms: order_by + kills_count: order_by + round: order_by + size: order_by + target_steam_id: order_by + user_steam_id: order_by + views_count: order_by +} + +""" +update columns of table "match_clips" +""" +enum match_clips_update_column { + """column name""" + created_at + + """column name""" + duration_ms + + """column name""" + file + + """column name""" + id + + """column name""" + kills_count + + """column name""" + match_map_demo_id + + """column name""" + match_map_id + + """column name""" + round + + """column name""" + size + + """column name""" + target_steam_id + + """column name""" + thumbnail_url + + """column name""" + title + + """column name""" + user_steam_id + + """column name""" + views_count + + """column name""" + visibility +} + +input match_clips_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: match_clips_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: match_clips_set_input + + """filter the rows which have to be updated""" + where: match_clips_bool_exp! +} + +"""aggregate var_pop on columns""" +type match_clips_var_pop_fields { + duration_ms: Float + kills_count: Float + round: Float + size: Float + target_steam_id: Float + user_steam_id: Float + views_count: Float +} + +""" +order by var_pop() on columns of table "match_clips" +""" +input match_clips_var_pop_order_by { + duration_ms: order_by + kills_count: order_by + round: order_by + size: order_by + target_steam_id: order_by + user_steam_id: order_by + views_count: order_by +} + +"""aggregate var_samp on columns""" +type match_clips_var_samp_fields { + duration_ms: Float + kills_count: Float + round: Float + size: Float + target_steam_id: Float + user_steam_id: Float + views_count: Float +} + +""" +order by var_samp() on columns of table "match_clips" +""" +input match_clips_var_samp_order_by { + duration_ms: order_by + kills_count: order_by + round: order_by + size: order_by + target_steam_id: order_by + user_steam_id: order_by + views_count: order_by +} + +"""aggregate variance on columns""" +type match_clips_variance_fields { + duration_ms: Float + kills_count: Float + round: Float + size: Float + target_steam_id: Float + user_steam_id: Float + views_count: Float +} + +""" +order by variance() on columns of table "match_clips" +""" +input match_clips_variance_order_by { + duration_ms: order_by + kills_count: order_by + round: order_by + size: order_by + target_steam_id: order_by + user_steam_id: order_by + views_count: order_by +} + +""" +columns and relationships of "match_demo_sessions" +""" +type match_demo_sessions { + created_at: timestamptz! + error_message: String + + """An object relationship""" + game_server_node: game_server_nodes + game_server_node_id: String + id: uuid! + k8s_job_name: String! + last_activity_at: timestamptz! + last_status_at: timestamptz! + + """An object relationship""" + match: matches! + match_id: uuid! + + """An object relationship""" + match_map: match_maps! + + """An object relationship""" + match_map_demo: match_map_demos + match_map_demo_id: uuid + match_map_id: uuid! + status: String! + status_history( + """JSON select path""" + path: String + ): jsonb! + stream_url: String + + """An object relationship""" + watcher: players! + watcher_steam_id: bigint! +} + +""" +aggregated selection of "match_demo_sessions" +""" +type match_demo_sessions_aggregate { + aggregate: match_demo_sessions_aggregate_fields + nodes: [match_demo_sessions!]! +} + +input match_demo_sessions_aggregate_bool_exp { + count: match_demo_sessions_aggregate_bool_exp_count +} + +input match_demo_sessions_aggregate_bool_exp_count { + arguments: [match_demo_sessions_select_column!] + distinct: Boolean + filter: match_demo_sessions_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "match_demo_sessions" +""" +type match_demo_sessions_aggregate_fields { + avg: match_demo_sessions_avg_fields + count(columns: [match_demo_sessions_select_column!], distinct: Boolean): Int! + max: match_demo_sessions_max_fields + min: match_demo_sessions_min_fields + stddev: match_demo_sessions_stddev_fields + stddev_pop: match_demo_sessions_stddev_pop_fields + stddev_samp: match_demo_sessions_stddev_samp_fields + sum: match_demo_sessions_sum_fields + var_pop: match_demo_sessions_var_pop_fields + var_samp: match_demo_sessions_var_samp_fields + variance: match_demo_sessions_variance_fields +} + +""" +order by aggregate values of table "match_demo_sessions" +""" +input match_demo_sessions_aggregate_order_by { + avg: match_demo_sessions_avg_order_by + count: order_by + max: match_demo_sessions_max_order_by + min: match_demo_sessions_min_order_by + stddev: match_demo_sessions_stddev_order_by + stddev_pop: match_demo_sessions_stddev_pop_order_by + stddev_samp: match_demo_sessions_stddev_samp_order_by + sum: match_demo_sessions_sum_order_by + var_pop: match_demo_sessions_var_pop_order_by + var_samp: match_demo_sessions_var_samp_order_by + variance: match_demo_sessions_variance_order_by +} + +"""append existing jsonb value of filtered columns with new jsonb value""" +input match_demo_sessions_append_input { + status_history: jsonb +} + +""" +input type for inserting array relation for remote table "match_demo_sessions" +""" +input match_demo_sessions_arr_rel_insert_input { + data: [match_demo_sessions_insert_input!]! + + """upsert condition""" + on_conflict: match_demo_sessions_on_conflict +} + +"""aggregate avg on columns""" +type match_demo_sessions_avg_fields { + watcher_steam_id: Float +} + +""" +order by avg() on columns of table "match_demo_sessions" +""" +input match_demo_sessions_avg_order_by { + watcher_steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "match_demo_sessions". All fields are combined with a logical 'AND'. +""" +input match_demo_sessions_bool_exp { + _and: [match_demo_sessions_bool_exp!] + _not: match_demo_sessions_bool_exp + _or: [match_demo_sessions_bool_exp!] + created_at: timestamptz_comparison_exp + error_message: String_comparison_exp + game_server_node: game_server_nodes_bool_exp + game_server_node_id: String_comparison_exp + id: uuid_comparison_exp + k8s_job_name: String_comparison_exp + last_activity_at: timestamptz_comparison_exp + last_status_at: timestamptz_comparison_exp + match: matches_bool_exp + match_id: uuid_comparison_exp + match_map: match_maps_bool_exp + match_map_demo: match_map_demos_bool_exp + match_map_demo_id: uuid_comparison_exp + match_map_id: uuid_comparison_exp + status: String_comparison_exp + status_history: jsonb_comparison_exp + stream_url: String_comparison_exp + watcher: players_bool_exp + watcher_steam_id: bigint_comparison_exp +} + +""" +unique or primary key constraints on table "match_demo_sessions" +""" +enum match_demo_sessions_constraint { + """ + unique or primary key constraint on columns "match_map_id", "watcher_steam_id" + """ + match_demo_sessions_per_user_per_map_uniq + + """ + unique or primary key constraint on columns "id" + """ + match_demo_sessions_pkey +} + +""" +delete the field or element with specified path (for JSON arrays, negative integers count from the end) +""" +input match_demo_sessions_delete_at_path_input { + status_history: [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 match_demo_sessions_delete_elem_input { + status_history: Int +} + +""" +delete key/value pair or string element. key/value pairs are matched based on their key value +""" +input match_demo_sessions_delete_key_input { + status_history: String +} + +""" +input type for incrementing numeric columns in table "match_demo_sessions" +""" +input match_demo_sessions_inc_input { + watcher_steam_id: bigint +} + +""" +input type for inserting data into table "match_demo_sessions" +""" +input match_demo_sessions_insert_input { + created_at: timestamptz + error_message: String + game_server_node: game_server_nodes_obj_rel_insert_input + game_server_node_id: String + id: uuid + k8s_job_name: String + last_activity_at: timestamptz + last_status_at: timestamptz + match: matches_obj_rel_insert_input + match_id: uuid + match_map: match_maps_obj_rel_insert_input + match_map_demo: match_map_demos_obj_rel_insert_input + match_map_demo_id: uuid + match_map_id: uuid + status: String + status_history: jsonb + stream_url: String + watcher: players_obj_rel_insert_input + watcher_steam_id: bigint +} + +"""aggregate max on columns""" +type match_demo_sessions_max_fields { + created_at: timestamptz + error_message: String + game_server_node_id: String + id: uuid + k8s_job_name: String + last_activity_at: timestamptz + last_status_at: timestamptz + match_id: uuid + match_map_demo_id: uuid + match_map_id: uuid + status: String + stream_url: String + watcher_steam_id: bigint +} + +""" +order by max() on columns of table "match_demo_sessions" +""" +input match_demo_sessions_max_order_by { + created_at: order_by + error_message: order_by + game_server_node_id: order_by + id: order_by + k8s_job_name: order_by + last_activity_at: order_by + last_status_at: order_by + match_id: order_by + match_map_demo_id: order_by + match_map_id: order_by + status: order_by + stream_url: order_by + watcher_steam_id: order_by +} + +"""aggregate min on columns""" +type match_demo_sessions_min_fields { + created_at: timestamptz + error_message: String + game_server_node_id: String + id: uuid + k8s_job_name: String + last_activity_at: timestamptz + last_status_at: timestamptz + match_id: uuid + match_map_demo_id: uuid + match_map_id: uuid + status: String + stream_url: String + watcher_steam_id: bigint +} + +""" +order by min() on columns of table "match_demo_sessions" +""" +input match_demo_sessions_min_order_by { + created_at: order_by + error_message: order_by + game_server_node_id: order_by + id: order_by + k8s_job_name: order_by + last_activity_at: order_by + last_status_at: order_by + match_id: order_by + match_map_demo_id: order_by + match_map_id: order_by + status: order_by + stream_url: order_by + watcher_steam_id: order_by +} + +""" +response of any mutation on the table "match_demo_sessions" +""" +type match_demo_sessions_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [match_demo_sessions!]! +} + +""" +on_conflict condition type for table "match_demo_sessions" +""" +input match_demo_sessions_on_conflict { + constraint: match_demo_sessions_constraint! + update_columns: [match_demo_sessions_update_column!]! = [] + where: match_demo_sessions_bool_exp +} + +"""Ordering options when selecting data from "match_demo_sessions".""" +input match_demo_sessions_order_by { + created_at: order_by + error_message: order_by + game_server_node: game_server_nodes_order_by + game_server_node_id: order_by + id: order_by + k8s_job_name: order_by + last_activity_at: order_by + last_status_at: order_by + match: matches_order_by + match_id: order_by + match_map: match_maps_order_by + match_map_demo: match_map_demos_order_by + match_map_demo_id: order_by + match_map_id: order_by + status: order_by + status_history: order_by + stream_url: order_by + watcher: players_order_by + watcher_steam_id: order_by +} + +"""primary key columns input for table: match_demo_sessions""" +input match_demo_sessions_pk_columns_input { + id: uuid! +} + +"""prepend existing jsonb value of filtered columns with new jsonb value""" +input match_demo_sessions_prepend_input { + status_history: jsonb +} + +""" +select columns of table "match_demo_sessions" +""" +enum match_demo_sessions_select_column { + """column name""" + created_at + + """column name""" + error_message + + """column name""" + game_server_node_id + + """column name""" + id + + """column name""" + k8s_job_name + + """column name""" + last_activity_at + + """column name""" + last_status_at + + """column name""" + match_id + + """column name""" + match_map_demo_id + + """column name""" + match_map_id + + """column name""" + status + + """column name""" + status_history + + """column name""" + stream_url + + """column name""" + watcher_steam_id +} + +""" +input type for updating data in table "match_demo_sessions" +""" +input match_demo_sessions_set_input { + created_at: timestamptz + error_message: String + game_server_node_id: String + id: uuid + k8s_job_name: String + last_activity_at: timestamptz + last_status_at: timestamptz + match_id: uuid + match_map_demo_id: uuid + match_map_id: uuid + status: String + status_history: jsonb + stream_url: String + watcher_steam_id: bigint +} + +"""aggregate stddev on columns""" +type match_demo_sessions_stddev_fields { + watcher_steam_id: Float +} + +""" +order by stddev() on columns of table "match_demo_sessions" +""" +input match_demo_sessions_stddev_order_by { + watcher_steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type match_demo_sessions_stddev_pop_fields { + watcher_steam_id: Float +} + +""" +order by stddev_pop() on columns of table "match_demo_sessions" +""" +input match_demo_sessions_stddev_pop_order_by { + watcher_steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type match_demo_sessions_stddev_samp_fields { + watcher_steam_id: Float +} + +""" +order by stddev_samp() on columns of table "match_demo_sessions" +""" +input match_demo_sessions_stddev_samp_order_by { + watcher_steam_id: order_by +} + +""" +Streaming cursor of the table "match_demo_sessions" +""" +input match_demo_sessions_stream_cursor_input { + """Stream column input with initial value""" + initial_value: match_demo_sessions_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input match_demo_sessions_stream_cursor_value_input { + created_at: timestamptz + error_message: String + game_server_node_id: String + id: uuid + k8s_job_name: String + last_activity_at: timestamptz + last_status_at: timestamptz + match_id: uuid + match_map_demo_id: uuid + match_map_id: uuid + status: String + status_history: jsonb + stream_url: String + watcher_steam_id: bigint +} + +"""aggregate sum on columns""" +type match_demo_sessions_sum_fields { + watcher_steam_id: bigint +} + +""" +order by sum() on columns of table "match_demo_sessions" +""" +input match_demo_sessions_sum_order_by { + watcher_steam_id: order_by +} + +""" +update columns of table "match_demo_sessions" +""" +enum match_demo_sessions_update_column { + """column name""" + created_at + + """column name""" + error_message + + """column name""" + game_server_node_id + + """column name""" + id + + """column name""" + k8s_job_name + + """column name""" + last_activity_at + + """column name""" + last_status_at + + """column name""" + match_id + + """column name""" + match_map_demo_id + + """column name""" + match_map_id + + """column name""" + status + + """column name""" + status_history + + """column name""" + stream_url + + """column name""" + watcher_steam_id +} + +input match_demo_sessions_updates { + """append existing jsonb value of filtered columns with new jsonb value""" + _append: match_demo_sessions_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: match_demo_sessions_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: match_demo_sessions_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: match_demo_sessions_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: match_demo_sessions_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: match_demo_sessions_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: match_demo_sessions_set_input + + """filter the rows which have to be updated""" + where: match_demo_sessions_bool_exp! +} + +"""aggregate var_pop on columns""" +type match_demo_sessions_var_pop_fields { + watcher_steam_id: Float +} + +""" +order by var_pop() on columns of table "match_demo_sessions" +""" +input match_demo_sessions_var_pop_order_by { + watcher_steam_id: order_by +} + +"""aggregate var_samp on columns""" +type match_demo_sessions_var_samp_fields { + watcher_steam_id: Float +} + +""" +order by var_samp() on columns of table "match_demo_sessions" +""" +input match_demo_sessions_var_samp_order_by { + watcher_steam_id: order_by +} + +"""aggregate variance on columns""" +type match_demo_sessions_variance_fields { + watcher_steam_id: Float +} + +""" +order by variance() on columns of table "match_demo_sessions" +""" +input match_demo_sessions_variance_order_by { + watcher_steam_id: order_by +} + +"""relational table for assigning a players to a match and lineup""" +type match_lineup_players { + captain: Boolean! + checked_in: Boolean! + discord_id: String + id: uuid! + is_connected: Boolean! + + """An object relationship""" + lineup: match_lineups! + match_lineup_id: uuid! + party_id: uuid + party_source: e_match_party_sources_enum + placeholder_name: String + + """An object relationship""" + player: players + steam_id: bigint +} + +""" +aggregated selection of "match_lineup_players" +""" +type match_lineup_players_aggregate { + aggregate: match_lineup_players_aggregate_fields + nodes: [match_lineup_players!]! +} + +input match_lineup_players_aggregate_bool_exp { + bool_and: match_lineup_players_aggregate_bool_exp_bool_and + bool_or: match_lineup_players_aggregate_bool_exp_bool_or + count: match_lineup_players_aggregate_bool_exp_count +} + +input match_lineup_players_aggregate_bool_exp_bool_and { + arguments: match_lineup_players_select_column_match_lineup_players_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: match_lineup_players_bool_exp + predicate: Boolean_comparison_exp! +} + +input match_lineup_players_aggregate_bool_exp_bool_or { + arguments: match_lineup_players_select_column_match_lineup_players_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: match_lineup_players_bool_exp + predicate: Boolean_comparison_exp! +} + +input match_lineup_players_aggregate_bool_exp_count { + arguments: [match_lineup_players_select_column!] + distinct: Boolean + filter: match_lineup_players_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "match_lineup_players" +""" +type match_lineup_players_aggregate_fields { + avg: match_lineup_players_avg_fields + count(columns: [match_lineup_players_select_column!], distinct: Boolean): Int! + max: match_lineup_players_max_fields + min: match_lineup_players_min_fields + stddev: match_lineup_players_stddev_fields + stddev_pop: match_lineup_players_stddev_pop_fields + stddev_samp: match_lineup_players_stddev_samp_fields + sum: match_lineup_players_sum_fields + var_pop: match_lineup_players_var_pop_fields + var_samp: match_lineup_players_var_samp_fields + variance: match_lineup_players_variance_fields +} + +""" +order by aggregate values of table "match_lineup_players" +""" +input match_lineup_players_aggregate_order_by { + avg: match_lineup_players_avg_order_by + count: order_by + max: match_lineup_players_max_order_by + min: match_lineup_players_min_order_by + stddev: match_lineup_players_stddev_order_by + stddev_pop: match_lineup_players_stddev_pop_order_by + stddev_samp: match_lineup_players_stddev_samp_order_by + sum: match_lineup_players_sum_order_by + var_pop: match_lineup_players_var_pop_order_by + var_samp: match_lineup_players_var_samp_order_by + variance: match_lineup_players_variance_order_by +} + +""" +input type for inserting array relation for remote table "match_lineup_players" +""" +input match_lineup_players_arr_rel_insert_input { + data: [match_lineup_players_insert_input!]! + + """upsert condition""" + on_conflict: match_lineup_players_on_conflict +} + +"""aggregate avg on columns""" +type match_lineup_players_avg_fields { + steam_id: Float +} + +""" +order by avg() on columns of table "match_lineup_players" +""" +input match_lineup_players_avg_order_by { + steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "match_lineup_players". All fields are combined with a logical 'AND'. +""" +input match_lineup_players_bool_exp { + _and: [match_lineup_players_bool_exp!] + _not: match_lineup_players_bool_exp + _or: [match_lineup_players_bool_exp!] + captain: Boolean_comparison_exp + checked_in: Boolean_comparison_exp + discord_id: String_comparison_exp + id: uuid_comparison_exp + is_connected: Boolean_comparison_exp + lineup: match_lineups_bool_exp + match_lineup_id: uuid_comparison_exp + party_id: uuid_comparison_exp + party_source: e_match_party_sources_enum_comparison_exp + placeholder_name: String_comparison_exp + player: players_bool_exp + steam_id: bigint_comparison_exp +} + +""" +unique or primary key constraints on table "match_lineup_players" +""" +enum match_lineup_players_constraint { + """ + unique or primary key constraint on columns "placeholder_name", "match_lineup_id" + """ + match_lineup_players_match_lineup_id_placeholder_name_key + + """ + unique or primary key constraint on columns "steam_id", "match_lineup_id" + """ + match_lineup_players_match_lineup_id_steam_id_key + + """ + unique or primary key constraint on columns "id" + """ + match_members_pkey +} + +""" +input type for incrementing numeric columns in table "match_lineup_players" +""" +input match_lineup_players_inc_input { + steam_id: bigint +} + +""" +input type for inserting data into table "match_lineup_players" +""" +input match_lineup_players_insert_input { + captain: Boolean + checked_in: Boolean + discord_id: String + id: uuid + is_connected: Boolean + lineup: match_lineups_obj_rel_insert_input + match_lineup_id: uuid + party_id: uuid + party_source: e_match_party_sources_enum + placeholder_name: String + player: players_obj_rel_insert_input + steam_id: bigint +} + +"""aggregate max on columns""" +type match_lineup_players_max_fields { + discord_id: String + id: uuid + match_lineup_id: uuid + party_id: uuid + placeholder_name: String + steam_id: bigint +} + +""" +order by max() on columns of table "match_lineup_players" +""" +input match_lineup_players_max_order_by { + discord_id: order_by + id: order_by + match_lineup_id: order_by + party_id: order_by + placeholder_name: order_by + steam_id: order_by +} + +"""aggregate min on columns""" +type match_lineup_players_min_fields { + discord_id: String + id: uuid + match_lineup_id: uuid + party_id: uuid + placeholder_name: String + steam_id: bigint +} + +""" +order by min() on columns of table "match_lineup_players" +""" +input match_lineup_players_min_order_by { + discord_id: order_by + id: order_by + match_lineup_id: order_by + party_id: order_by + placeholder_name: order_by + steam_id: order_by +} + +""" +response of any mutation on the table "match_lineup_players" +""" +type match_lineup_players_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [match_lineup_players!]! +} + +""" +on_conflict condition type for table "match_lineup_players" +""" +input match_lineup_players_on_conflict { + constraint: match_lineup_players_constraint! + update_columns: [match_lineup_players_update_column!]! = [] + where: match_lineup_players_bool_exp +} + +"""Ordering options when selecting data from "match_lineup_players".""" +input match_lineup_players_order_by { + captain: order_by + checked_in: order_by + discord_id: order_by + id: order_by + is_connected: order_by + lineup: match_lineups_order_by + match_lineup_id: order_by + party_id: order_by + party_source: order_by + placeholder_name: order_by + player: players_order_by + steam_id: order_by +} + +"""primary key columns input for table: match_lineup_players""" +input match_lineup_players_pk_columns_input { + id: uuid! +} + +""" +select columns of table "match_lineup_players" +""" +enum match_lineup_players_select_column { + """column name""" + captain + + """column name""" + checked_in + + """column name""" + discord_id + + """column name""" + id + + """column name""" + is_connected + + """column name""" + match_lineup_id + + """column name""" + party_id + + """column name""" + party_source + + """column name""" + placeholder_name + + """column name""" + steam_id +} + +""" +select "match_lineup_players_aggregate_bool_exp_bool_and_arguments_columns" columns of table "match_lineup_players" +""" +enum match_lineup_players_select_column_match_lineup_players_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + captain + + """column name""" + checked_in + + """column name""" + is_connected +} + +""" +select "match_lineup_players_aggregate_bool_exp_bool_or_arguments_columns" columns of table "match_lineup_players" +""" +enum match_lineup_players_select_column_match_lineup_players_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + captain + + """column name""" + checked_in + + """column name""" + is_connected +} + +""" +input type for updating data in table "match_lineup_players" +""" +input match_lineup_players_set_input { + captain: Boolean + checked_in: Boolean + discord_id: String + id: uuid + is_connected: Boolean + match_lineup_id: uuid + party_id: uuid + party_source: e_match_party_sources_enum + placeholder_name: String + steam_id: bigint +} + +"""aggregate stddev on columns""" +type match_lineup_players_stddev_fields { + steam_id: Float +} + +""" +order by stddev() on columns of table "match_lineup_players" +""" +input match_lineup_players_stddev_order_by { + steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type match_lineup_players_stddev_pop_fields { + steam_id: Float +} + +""" +order by stddev_pop() on columns of table "match_lineup_players" +""" +input match_lineup_players_stddev_pop_order_by { + steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type match_lineup_players_stddev_samp_fields { + steam_id: Float +} + +""" +order by stddev_samp() on columns of table "match_lineup_players" +""" +input match_lineup_players_stddev_samp_order_by { + steam_id: order_by +} + +""" +Streaming cursor of the table "match_lineup_players" +""" +input match_lineup_players_stream_cursor_input { + """Stream column input with initial value""" + initial_value: match_lineup_players_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input match_lineup_players_stream_cursor_value_input { + captain: Boolean + checked_in: Boolean + discord_id: String + id: uuid + is_connected: Boolean + match_lineup_id: uuid + party_id: uuid + party_source: e_match_party_sources_enum + placeholder_name: String + steam_id: bigint +} + +"""aggregate sum on columns""" +type match_lineup_players_sum_fields { + steam_id: bigint +} + +""" +order by sum() on columns of table "match_lineup_players" +""" +input match_lineup_players_sum_order_by { + steam_id: order_by +} + +""" +update columns of table "match_lineup_players" +""" +enum match_lineup_players_update_column { + """column name""" + captain + + """column name""" + checked_in + + """column name""" + discord_id + + """column name""" + id + + """column name""" + is_connected + + """column name""" + match_lineup_id + + """column name""" + party_id + + """column name""" + party_source + + """column name""" + placeholder_name + + """column name""" + steam_id +} + +input match_lineup_players_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: match_lineup_players_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: match_lineup_players_set_input + + """filter the rows which have to be updated""" + where: match_lineup_players_bool_exp! +} + +"""aggregate var_pop on columns""" +type match_lineup_players_var_pop_fields { + steam_id: Float +} + +""" +order by var_pop() on columns of table "match_lineup_players" +""" +input match_lineup_players_var_pop_order_by { + steam_id: order_by +} + +"""aggregate var_samp on columns""" +type match_lineup_players_var_samp_fields { + steam_id: Float +} + +""" +order by var_samp() on columns of table "match_lineup_players" +""" +input match_lineup_players_var_samp_order_by { + steam_id: order_by +} + +"""aggregate variance on columns""" +type match_lineup_players_variance_fields { + steam_id: Float +} + +""" +order by variance() on columns of table "match_lineup_players" +""" +input match_lineup_players_variance_order_by { + steam_id: order_by +} + +"""relational table for assigning a team to a match and lineup""" +type match_lineups { + """ + A computed field, executes function "can_pick_map_veto" + """ + can_pick_map_veto: Boolean + + """ + A computed field, executes function "can_pick_region_veto" + """ + can_pick_region_veto: Boolean + + """ + A computed field, executes function "can_update_lineup" + """ + can_update_lineup: Boolean + + """An object relationship""" + captain: v_match_captains + + """An object relationship""" + coach: players + coach_steam_id: bigint + id: uuid! + + """ + A computed field, executes function "is_on_lineup" + """ + is_on_lineup: Boolean + + """ + A computed field, executes function "lineup_is_picking_map_veto" + """ + is_picking_map_veto: Boolean + + """ + A computed field, executes function "lineup_is_picking_region_veto" + """ + is_picking_region_veto: Boolean + + """ + A computed field, executes function "is_match_lineup_ready" + """ + is_ready: Boolean + + """An array relationship""" + lineup_players( + """distinct select on columns""" + distinct_on: [match_lineup_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_lineup_players_order_by!] + + """filter the rows returned""" + where: match_lineup_players_bool_exp + ): [match_lineup_players!]! + + """An aggregate relationship""" + lineup_players_aggregate( + """distinct select on columns""" + distinct_on: [match_lineup_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_lineup_players_order_by!] + + """filter the rows returned""" + where: match_lineup_players_bool_exp + ): match_lineup_players_aggregate! + + """An object relationship""" + match: matches + match_id: uuid + + """An array relationship""" + match_veto_picks( + """distinct select on columns""" + distinct_on: [match_map_veto_picks_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_map_veto_picks_order_by!] + + """filter the rows returned""" + where: match_map_veto_picks_bool_exp + ): [match_map_veto_picks!]! + + """An aggregate relationship""" + match_veto_picks_aggregate( + """distinct select on columns""" + distinct_on: [match_map_veto_picks_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_map_veto_picks_order_by!] + + """filter the rows returned""" + where: match_map_veto_picks_bool_exp + ): match_map_veto_picks_aggregate! + + """ + A computed field, executes function "get_team_name" + """ + name: String + + """An object relationship""" + team: teams + team_id: uuid + team_name: String +} + +""" +aggregated selection of "match_lineups" +""" +type match_lineups_aggregate { + aggregate: match_lineups_aggregate_fields + nodes: [match_lineups!]! +} + +input match_lineups_aggregate_bool_exp { + count: match_lineups_aggregate_bool_exp_count +} + +input match_lineups_aggregate_bool_exp_count { + arguments: [match_lineups_select_column!] + distinct: Boolean + filter: match_lineups_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "match_lineups" +""" +type match_lineups_aggregate_fields { + avg: match_lineups_avg_fields + count(columns: [match_lineups_select_column!], distinct: Boolean): Int! + max: match_lineups_max_fields + min: match_lineups_min_fields + stddev: match_lineups_stddev_fields + stddev_pop: match_lineups_stddev_pop_fields + stddev_samp: match_lineups_stddev_samp_fields + sum: match_lineups_sum_fields + var_pop: match_lineups_var_pop_fields + var_samp: match_lineups_var_samp_fields + variance: match_lineups_variance_fields +} + +""" +order by aggregate values of table "match_lineups" +""" +input match_lineups_aggregate_order_by { + avg: match_lineups_avg_order_by + count: order_by + max: match_lineups_max_order_by + min: match_lineups_min_order_by + stddev: match_lineups_stddev_order_by + stddev_pop: match_lineups_stddev_pop_order_by + stddev_samp: match_lineups_stddev_samp_order_by + sum: match_lineups_sum_order_by + var_pop: match_lineups_var_pop_order_by + var_samp: match_lineups_var_samp_order_by + variance: match_lineups_variance_order_by +} + +""" +input type for inserting array relation for remote table "match_lineups" +""" +input match_lineups_arr_rel_insert_input { + data: [match_lineups_insert_input!]! + + """upsert condition""" + on_conflict: match_lineups_on_conflict +} + +"""aggregate avg on columns""" +type match_lineups_avg_fields { + coach_steam_id: Float +} + +""" +order by avg() on columns of table "match_lineups" +""" +input match_lineups_avg_order_by { + coach_steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "match_lineups". All fields are combined with a logical 'AND'. +""" +input match_lineups_bool_exp { + _and: [match_lineups_bool_exp!] + _not: match_lineups_bool_exp + _or: [match_lineups_bool_exp!] + can_pick_map_veto: Boolean_comparison_exp + can_pick_region_veto: Boolean_comparison_exp + can_update_lineup: Boolean_comparison_exp + captain: v_match_captains_bool_exp + coach: players_bool_exp + coach_steam_id: bigint_comparison_exp + id: uuid_comparison_exp + is_on_lineup: Boolean_comparison_exp + is_picking_map_veto: Boolean_comparison_exp + is_picking_region_veto: Boolean_comparison_exp + is_ready: Boolean_comparison_exp + lineup_players: match_lineup_players_bool_exp + lineup_players_aggregate: match_lineup_players_aggregate_bool_exp + match: matches_bool_exp + match_id: uuid_comparison_exp + match_veto_picks: match_map_veto_picks_bool_exp + match_veto_picks_aggregate: match_map_veto_picks_aggregate_bool_exp + name: String_comparison_exp + team: teams_bool_exp + team_id: uuid_comparison_exp + team_name: String_comparison_exp +} + +""" +unique or primary key constraints on table "match_lineups" +""" +enum match_lineups_constraint { + """ + unique or primary key constraint on columns "id" + """ + match_teams_pkey +} + +""" +input type for incrementing numeric columns in table "match_lineups" +""" +input match_lineups_inc_input { + coach_steam_id: bigint +} + +""" +input type for inserting data into table "match_lineups" +""" +input match_lineups_insert_input { + captain: v_match_captains_obj_rel_insert_input + coach: players_obj_rel_insert_input + coach_steam_id: bigint + id: uuid + lineup_players: match_lineup_players_arr_rel_insert_input + match: matches_obj_rel_insert_input + match_id: uuid + match_veto_picks: match_map_veto_picks_arr_rel_insert_input + team: teams_obj_rel_insert_input + team_id: uuid + team_name: String +} + +"""aggregate max on columns""" +type match_lineups_max_fields { + coach_steam_id: bigint + id: uuid + match_id: uuid + + """ + A computed field, executes function "get_team_name" + """ + name: String + team_id: uuid + team_name: String +} + +""" +order by max() on columns of table "match_lineups" +""" +input match_lineups_max_order_by { + coach_steam_id: order_by + id: order_by + match_id: order_by + team_id: order_by + team_name: order_by +} + +"""aggregate min on columns""" +type match_lineups_min_fields { + coach_steam_id: bigint + id: uuid + match_id: uuid + + """ + A computed field, executes function "get_team_name" + """ + name: String + team_id: uuid + team_name: String +} + +""" +order by min() on columns of table "match_lineups" +""" +input match_lineups_min_order_by { + coach_steam_id: order_by + id: order_by + match_id: order_by + team_id: order_by + team_name: order_by +} + +""" +response of any mutation on the table "match_lineups" +""" +type match_lineups_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [match_lineups!]! +} + +""" +input type for inserting object relation for remote table "match_lineups" +""" +input match_lineups_obj_rel_insert_input { + data: match_lineups_insert_input! + + """upsert condition""" + on_conflict: match_lineups_on_conflict +} + +""" +on_conflict condition type for table "match_lineups" +""" +input match_lineups_on_conflict { + constraint: match_lineups_constraint! + update_columns: [match_lineups_update_column!]! = [] + where: match_lineups_bool_exp +} + +"""Ordering options when selecting data from "match_lineups".""" +input match_lineups_order_by { + can_pick_map_veto: order_by + can_pick_region_veto: order_by + can_update_lineup: order_by + captain: v_match_captains_order_by + coach: players_order_by + coach_steam_id: order_by + id: order_by + is_on_lineup: order_by + is_picking_map_veto: order_by + is_picking_region_veto: order_by + is_ready: order_by + lineup_players_aggregate: match_lineup_players_aggregate_order_by + match: matches_order_by + match_id: order_by + match_veto_picks_aggregate: match_map_veto_picks_aggregate_order_by + name: order_by + team: teams_order_by + team_id: order_by + team_name: order_by +} + +"""primary key columns input for table: match_lineups""" +input match_lineups_pk_columns_input { + id: uuid! +} + +""" +select columns of table "match_lineups" +""" +enum match_lineups_select_column { + """column name""" + coach_steam_id + + """column name""" + id + + """column name""" + match_id + + """column name""" + team_id + + """column name""" + team_name +} + +""" +input type for updating data in table "match_lineups" +""" +input match_lineups_set_input { + coach_steam_id: bigint + id: uuid + match_id: uuid + team_id: uuid + team_name: String +} + +"""aggregate stddev on columns""" +type match_lineups_stddev_fields { + coach_steam_id: Float +} + +""" +order by stddev() on columns of table "match_lineups" +""" +input match_lineups_stddev_order_by { + coach_steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type match_lineups_stddev_pop_fields { + coach_steam_id: Float +} + +""" +order by stddev_pop() on columns of table "match_lineups" +""" +input match_lineups_stddev_pop_order_by { + coach_steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type match_lineups_stddev_samp_fields { + coach_steam_id: Float +} + +""" +order by stddev_samp() on columns of table "match_lineups" +""" +input match_lineups_stddev_samp_order_by { + coach_steam_id: order_by +} + +""" +Streaming cursor of the table "match_lineups" +""" +input match_lineups_stream_cursor_input { + """Stream column input with initial value""" + initial_value: match_lineups_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input match_lineups_stream_cursor_value_input { + coach_steam_id: bigint + id: uuid + match_id: uuid + team_id: uuid + team_name: String +} + +"""aggregate sum on columns""" +type match_lineups_sum_fields { + coach_steam_id: bigint +} + +""" +order by sum() on columns of table "match_lineups" +""" +input match_lineups_sum_order_by { + coach_steam_id: order_by +} + +""" +update columns of table "match_lineups" +""" +enum match_lineups_update_column { + """column name""" + coach_steam_id + + """column name""" + id + + """column name""" + match_id + + """column name""" + team_id + + """column name""" + team_name +} + +input match_lineups_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: match_lineups_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: match_lineups_set_input + + """filter the rows which have to be updated""" + where: match_lineups_bool_exp! +} + +"""aggregate var_pop on columns""" +type match_lineups_var_pop_fields { + coach_steam_id: Float +} + +""" +order by var_pop() on columns of table "match_lineups" +""" +input match_lineups_var_pop_order_by { + coach_steam_id: order_by +} + +"""aggregate var_samp on columns""" +type match_lineups_var_samp_fields { + coach_steam_id: Float +} + +""" +order by var_samp() on columns of table "match_lineups" +""" +input match_lineups_var_samp_order_by { + coach_steam_id: order_by +} + +"""aggregate variance on columns""" +type match_lineups_variance_fields { + coach_steam_id: Float +} + +""" +order by variance() on columns of table "match_lineups" +""" +input match_lineups_variance_order_by { + coach_steam_id: order_by +} + +""" +columns and relationships of "match_map_demos" +""" +type match_map_demos { + bombs( + """JSON select path""" + path: String + ): jsonb + + """An array relationship""" + clip_render_jobs( + """distinct select on columns""" + distinct_on: [clip_render_jobs_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: [clip_render_jobs_order_by!] + + """filter the rows returned""" + where: clip_render_jobs_bool_exp + ): [clip_render_jobs!]! + + """An aggregate relationship""" + clip_render_jobs_aggregate( + """distinct select on columns""" + distinct_on: [clip_render_jobs_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: [clip_render_jobs_order_by!] + + """filter the rows returned""" + where: clip_render_jobs_bool_exp + ): clip_render_jobs_aggregate! + created_at: timestamptz! + cs2_build: String + + """An array relationship""" + demo_sessions( + """distinct select on columns""" + distinct_on: [match_demo_sessions_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_demo_sessions_order_by!] + + """filter the rows returned""" + where: match_demo_sessions_bool_exp + ): [match_demo_sessions!]! + + """An aggregate relationship""" + demo_sessions_aggregate( + """distinct select on columns""" + distinct_on: [match_demo_sessions_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_demo_sessions_order_by!] + + """filter the rows returned""" + where: match_demo_sessions_bool_exp + ): match_demo_sessions_aggregate! + + """ + A computed field, executes function "demo_download_url" + """ + download_url: String + duration_seconds: Float + file: String! + geometry_validated: Boolean + id: uuid! + kills( + """JSON select path""" + path: String + ): jsonb + map_name: String + + """An object relationship""" + match: matches! + + """An array relationship""" + match_clips( + """distinct select on columns""" + distinct_on: [match_clips_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_clips_order_by!] + + """filter the rows returned""" + where: match_clips_bool_exp + ): [match_clips!]! + + """An aggregate relationship""" + match_clips_aggregate( + """distinct select on columns""" + distinct_on: [match_clips_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_clips_order_by!] + + """filter the rows returned""" + where: match_clips_bool_exp + ): match_clips_aggregate! + match_id: uuid! + + """An object relationship""" + match_map: match_maps! + match_map_id: uuid! + metadata_parsed_at: timestamptz + parser_version: Int + playback_file: String + playback_size: Int + + """ + A computed field, executes function "demo_playback_url" + """ + playback_url: String + playback_version: Int + players( + """JSON select path""" + path: String + ): jsonb + round_ticks( + """JSON select path""" + path: String + ): jsonb + size: Int + tick_rate: Float + total_ticks: Int + workshop_id: String +} + +""" +aggregated selection of "match_map_demos" +""" +type match_map_demos_aggregate { + aggregate: match_map_demos_aggregate_fields + nodes: [match_map_demos!]! +} + +input match_map_demos_aggregate_bool_exp { + bool_and: match_map_demos_aggregate_bool_exp_bool_and + bool_or: match_map_demos_aggregate_bool_exp_bool_or + count: match_map_demos_aggregate_bool_exp_count +} + +input match_map_demos_aggregate_bool_exp_bool_and { + arguments: match_map_demos_select_column_match_map_demos_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: match_map_demos_bool_exp + predicate: Boolean_comparison_exp! +} + +input match_map_demos_aggregate_bool_exp_bool_or { + arguments: match_map_demos_select_column_match_map_demos_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: match_map_demos_bool_exp + predicate: Boolean_comparison_exp! +} + +input match_map_demos_aggregate_bool_exp_count { + arguments: [match_map_demos_select_column!] + distinct: Boolean + filter: match_map_demos_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "match_map_demos" +""" +type match_map_demos_aggregate_fields { + avg: match_map_demos_avg_fields + count(columns: [match_map_demos_select_column!], distinct: Boolean): Int! + max: match_map_demos_max_fields + min: match_map_demos_min_fields + stddev: match_map_demos_stddev_fields + stddev_pop: match_map_demos_stddev_pop_fields + stddev_samp: match_map_demos_stddev_samp_fields + sum: match_map_demos_sum_fields + var_pop: match_map_demos_var_pop_fields + var_samp: match_map_demos_var_samp_fields + variance: match_map_demos_variance_fields +} + +""" +order by aggregate values of table "match_map_demos" +""" +input match_map_demos_aggregate_order_by { + avg: match_map_demos_avg_order_by + count: order_by + max: match_map_demos_max_order_by + min: match_map_demos_min_order_by + stddev: match_map_demos_stddev_order_by + stddev_pop: match_map_demos_stddev_pop_order_by + stddev_samp: match_map_demos_stddev_samp_order_by + sum: match_map_demos_sum_order_by + var_pop: match_map_demos_var_pop_order_by + var_samp: match_map_demos_var_samp_order_by + variance: match_map_demos_variance_order_by +} + +"""append existing jsonb value of filtered columns with new jsonb value""" +input match_map_demos_append_input { + bombs: jsonb + kills: jsonb + players: jsonb + round_ticks: jsonb +} + +""" +input type for inserting array relation for remote table "match_map_demos" +""" +input match_map_demos_arr_rel_insert_input { + data: [match_map_demos_insert_input!]! + + """upsert condition""" + on_conflict: match_map_demos_on_conflict +} + +"""aggregate avg on columns""" +type match_map_demos_avg_fields { + duration_seconds: Float + parser_version: Float + playback_size: Float + playback_version: Float + size: Float + tick_rate: Float + total_ticks: Float +} + +""" +order by avg() on columns of table "match_map_demos" +""" +input match_map_demos_avg_order_by { + duration_seconds: order_by + parser_version: order_by + playback_size: order_by + playback_version: order_by + size: order_by + tick_rate: order_by + total_ticks: order_by +} + +""" +Boolean expression to filter rows from the table "match_map_demos". All fields are combined with a logical 'AND'. +""" +input match_map_demos_bool_exp { + _and: [match_map_demos_bool_exp!] + _not: match_map_demos_bool_exp + _or: [match_map_demos_bool_exp!] + bombs: jsonb_comparison_exp + clip_render_jobs: clip_render_jobs_bool_exp + clip_render_jobs_aggregate: clip_render_jobs_aggregate_bool_exp + created_at: timestamptz_comparison_exp + cs2_build: String_comparison_exp + demo_sessions: match_demo_sessions_bool_exp + demo_sessions_aggregate: match_demo_sessions_aggregate_bool_exp + download_url: String_comparison_exp + duration_seconds: Float_comparison_exp + file: String_comparison_exp + geometry_validated: Boolean_comparison_exp + id: uuid_comparison_exp + kills: jsonb_comparison_exp + map_name: String_comparison_exp + match: matches_bool_exp + match_clips: match_clips_bool_exp + match_clips_aggregate: match_clips_aggregate_bool_exp + match_id: uuid_comparison_exp + match_map: match_maps_bool_exp + match_map_id: uuid_comparison_exp + metadata_parsed_at: timestamptz_comparison_exp + parser_version: Int_comparison_exp + playback_file: String_comparison_exp + playback_size: Int_comparison_exp + playback_url: String_comparison_exp + playback_version: Int_comparison_exp + players: jsonb_comparison_exp + round_ticks: jsonb_comparison_exp + size: Int_comparison_exp + tick_rate: Float_comparison_exp + total_ticks: Int_comparison_exp + workshop_id: String_comparison_exp +} + +""" +unique or primary key constraints on table "match_map_demos" +""" +enum match_map_demos_constraint { + """ + unique or primary key constraint on columns "id" + """ + match_demos_pkey + + """ + unique or primary key constraint on columns "file", "match_map_id" + """ + match_map_demos_match_map_id_file_key +} + +""" +delete the field or element with specified path (for JSON arrays, negative integers count from the end) +""" +input match_map_demos_delete_at_path_input { + bombs: [String!] + kills: [String!] + players: [String!] + round_ticks: [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 match_map_demos_delete_elem_input { + bombs: Int + kills: Int + players: Int + round_ticks: Int +} + +""" +delete key/value pair or string element. key/value pairs are matched based on their key value +""" +input match_map_demos_delete_key_input { + bombs: String + kills: String + players: String + round_ticks: String +} + +""" +input type for incrementing numeric columns in table "match_map_demos" +""" +input match_map_demos_inc_input { + parser_version: Int + playback_size: Int + playback_version: Int + size: Int + tick_rate: Float + total_ticks: Int +} + +""" +input type for inserting data into table "match_map_demos" +""" +input match_map_demos_insert_input { + bombs: jsonb + clip_render_jobs: clip_render_jobs_arr_rel_insert_input + created_at: timestamptz + cs2_build: String + demo_sessions: match_demo_sessions_arr_rel_insert_input + file: String + geometry_validated: Boolean + id: uuid + kills: jsonb + map_name: String + match: matches_obj_rel_insert_input + match_clips: match_clips_arr_rel_insert_input + match_id: uuid + match_map: match_maps_obj_rel_insert_input + match_map_id: uuid + metadata_parsed_at: timestamptz + parser_version: Int + playback_file: String + playback_size: Int + playback_version: Int + players: jsonb + round_ticks: jsonb + size: Int + tick_rate: Float + total_ticks: Int + workshop_id: String +} + +"""aggregate max on columns""" +type match_map_demos_max_fields { + created_at: timestamptz + cs2_build: String + + """ + A computed field, executes function "demo_download_url" + """ + download_url: String + duration_seconds: Float + file: String + id: uuid + map_name: String + match_id: uuid + match_map_id: uuid + metadata_parsed_at: timestamptz + parser_version: Int + playback_file: String + playback_size: Int + + """ + A computed field, executes function "demo_playback_url" + """ + playback_url: String + playback_version: Int + size: Int + tick_rate: Float + total_ticks: Int + workshop_id: String +} + +""" +order by max() on columns of table "match_map_demos" +""" +input match_map_demos_max_order_by { + created_at: order_by + cs2_build: order_by + duration_seconds: order_by + file: order_by + id: order_by + map_name: order_by + match_id: order_by + match_map_id: order_by + metadata_parsed_at: order_by + parser_version: order_by + playback_file: order_by + playback_size: order_by + playback_version: order_by + size: order_by + tick_rate: order_by + total_ticks: order_by + workshop_id: order_by +} + +"""aggregate min on columns""" +type match_map_demos_min_fields { + created_at: timestamptz + cs2_build: String + + """ + A computed field, executes function "demo_download_url" + """ + download_url: String + duration_seconds: Float + file: String + id: uuid + map_name: String + match_id: uuid + match_map_id: uuid + metadata_parsed_at: timestamptz + parser_version: Int + playback_file: String + playback_size: Int + + """ + A computed field, executes function "demo_playback_url" + """ + playback_url: String + playback_version: Int + size: Int + tick_rate: Float + total_ticks: Int + workshop_id: String +} + +""" +order by min() on columns of table "match_map_demos" +""" +input match_map_demos_min_order_by { + created_at: order_by + cs2_build: order_by + duration_seconds: order_by + file: order_by + id: order_by + map_name: order_by + match_id: order_by + match_map_id: order_by + metadata_parsed_at: order_by + parser_version: order_by + playback_file: order_by + playback_size: order_by + playback_version: order_by + size: order_by + tick_rate: order_by + total_ticks: order_by + workshop_id: order_by +} + +""" +response of any mutation on the table "match_map_demos" +""" +type match_map_demos_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [match_map_demos!]! +} + +""" +input type for inserting object relation for remote table "match_map_demos" +""" +input match_map_demos_obj_rel_insert_input { + data: match_map_demos_insert_input! + + """upsert condition""" + on_conflict: match_map_demos_on_conflict +} + +""" +on_conflict condition type for table "match_map_demos" +""" +input match_map_demos_on_conflict { + constraint: match_map_demos_constraint! + update_columns: [match_map_demos_update_column!]! = [] + where: match_map_demos_bool_exp +} + +"""Ordering options when selecting data from "match_map_demos".""" +input match_map_demos_order_by { + bombs: order_by + clip_render_jobs_aggregate: clip_render_jobs_aggregate_order_by + created_at: order_by + cs2_build: order_by + demo_sessions_aggregate: match_demo_sessions_aggregate_order_by + download_url: order_by + duration_seconds: order_by + file: order_by + geometry_validated: order_by + id: order_by + kills: order_by + map_name: order_by + match: matches_order_by + match_clips_aggregate: match_clips_aggregate_order_by + match_id: order_by + match_map: match_maps_order_by + match_map_id: order_by + metadata_parsed_at: order_by + parser_version: order_by + playback_file: order_by + playback_size: order_by + playback_url: order_by + playback_version: order_by + players: order_by + round_ticks: order_by + size: order_by + tick_rate: order_by + total_ticks: order_by + workshop_id: order_by +} + +"""primary key columns input for table: match_map_demos""" +input match_map_demos_pk_columns_input { + id: uuid! +} + +"""prepend existing jsonb value of filtered columns with new jsonb value""" +input match_map_demos_prepend_input { + bombs: jsonb + kills: jsonb + players: jsonb + round_ticks: jsonb +} + +""" +select columns of table "match_map_demos" +""" +enum match_map_demos_select_column { + """column name""" + bombs + + """column name""" + created_at + + """column name""" + cs2_build + + """column name""" + duration_seconds + + """column name""" + file + + """column name""" + geometry_validated + + """column name""" + id + + """column name""" + kills + + """column name""" + map_name + + """column name""" + match_id + + """column name""" + match_map_id + + """column name""" + metadata_parsed_at + + """column name""" + parser_version + + """column name""" + playback_file + + """column name""" + playback_size + + """column name""" + playback_version + + """column name""" + players + + """column name""" + round_ticks + + """column name""" + size + + """column name""" + tick_rate + + """column name""" + total_ticks + + """column name""" + workshop_id +} + +""" +select "match_map_demos_aggregate_bool_exp_bool_and_arguments_columns" columns of table "match_map_demos" +""" +enum match_map_demos_select_column_match_map_demos_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + geometry_validated +} + +""" +select "match_map_demos_aggregate_bool_exp_bool_or_arguments_columns" columns of table "match_map_demos" +""" +enum match_map_demos_select_column_match_map_demos_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + geometry_validated +} + +""" +input type for updating data in table "match_map_demos" +""" +input match_map_demos_set_input { + bombs: jsonb + created_at: timestamptz + cs2_build: String + file: String + geometry_validated: Boolean + id: uuid + kills: jsonb + map_name: String + match_id: uuid + match_map_id: uuid + metadata_parsed_at: timestamptz + parser_version: Int + playback_file: String + playback_size: Int + playback_version: Int + players: jsonb + round_ticks: jsonb + size: Int + tick_rate: Float + total_ticks: Int + workshop_id: String +} + +"""aggregate stddev on columns""" +type match_map_demos_stddev_fields { + duration_seconds: Float + parser_version: Float + playback_size: Float + playback_version: Float + size: Float + tick_rate: Float + total_ticks: Float +} + +""" +order by stddev() on columns of table "match_map_demos" +""" +input match_map_demos_stddev_order_by { + duration_seconds: order_by + parser_version: order_by + playback_size: order_by + playback_version: order_by + size: order_by + tick_rate: order_by + total_ticks: order_by +} + +"""aggregate stddev_pop on columns""" +type match_map_demos_stddev_pop_fields { + duration_seconds: Float + parser_version: Float + playback_size: Float + playback_version: Float + size: Float + tick_rate: Float + total_ticks: Float +} + +""" +order by stddev_pop() on columns of table "match_map_demos" +""" +input match_map_demos_stddev_pop_order_by { + duration_seconds: order_by + parser_version: order_by + playback_size: order_by + playback_version: order_by + size: order_by + tick_rate: order_by + total_ticks: order_by +} + +"""aggregate stddev_samp on columns""" +type match_map_demos_stddev_samp_fields { + duration_seconds: Float + parser_version: Float + playback_size: Float + playback_version: Float + size: Float + tick_rate: Float + total_ticks: Float +} + +""" +order by stddev_samp() on columns of table "match_map_demos" +""" +input match_map_demos_stddev_samp_order_by { + duration_seconds: order_by + parser_version: order_by + playback_size: order_by + playback_version: order_by + size: order_by + tick_rate: order_by + total_ticks: order_by +} + +""" +Streaming cursor of the table "match_map_demos" +""" +input match_map_demos_stream_cursor_input { + """Stream column input with initial value""" + initial_value: match_map_demos_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input match_map_demos_stream_cursor_value_input { + bombs: jsonb + created_at: timestamptz + cs2_build: String + duration_seconds: Float + file: String + geometry_validated: Boolean + id: uuid + kills: jsonb + map_name: String + match_id: uuid + match_map_id: uuid + metadata_parsed_at: timestamptz + parser_version: Int + playback_file: String + playback_size: Int + playback_version: Int + players: jsonb + round_ticks: jsonb + size: Int + tick_rate: Float + total_ticks: Int + workshop_id: String +} + +"""aggregate sum on columns""" +type match_map_demos_sum_fields { + duration_seconds: Float + parser_version: Int + playback_size: Int + playback_version: Int + size: Int + tick_rate: Float + total_ticks: Int +} + +""" +order by sum() on columns of table "match_map_demos" +""" +input match_map_demos_sum_order_by { + duration_seconds: order_by + parser_version: order_by + playback_size: order_by + playback_version: order_by + size: order_by + tick_rate: order_by + total_ticks: order_by +} + +""" +update columns of table "match_map_demos" +""" +enum match_map_demos_update_column { + """column name""" + bombs + + """column name""" + created_at + + """column name""" + cs2_build + + """column name""" + file + + """column name""" + geometry_validated + + """column name""" + id + + """column name""" + kills + + """column name""" + map_name + + """column name""" + match_id + + """column name""" + match_map_id + + """column name""" + metadata_parsed_at + + """column name""" + parser_version + + """column name""" + playback_file + + """column name""" + playback_size + + """column name""" + playback_version + + """column name""" + players + + """column name""" + round_ticks + + """column name""" + size + + """column name""" + tick_rate + + """column name""" + total_ticks + + """column name""" + workshop_id +} + +input match_map_demos_updates { + """append existing jsonb value of filtered columns with new jsonb value""" + _append: match_map_demos_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: match_map_demos_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: match_map_demos_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: match_map_demos_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: match_map_demos_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: match_map_demos_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: match_map_demos_set_input + + """filter the rows which have to be updated""" + where: match_map_demos_bool_exp! +} + +"""aggregate var_pop on columns""" +type match_map_demos_var_pop_fields { + duration_seconds: Float + parser_version: Float + playback_size: Float + playback_version: Float + size: Float + tick_rate: Float + total_ticks: Float +} + +""" +order by var_pop() on columns of table "match_map_demos" +""" +input match_map_demos_var_pop_order_by { + duration_seconds: order_by + parser_version: order_by + playback_size: order_by + playback_version: order_by + size: order_by + tick_rate: order_by + total_ticks: order_by +} + +"""aggregate var_samp on columns""" +type match_map_demos_var_samp_fields { + duration_seconds: Float + parser_version: Float + playback_size: Float + playback_version: Float + size: Float + tick_rate: Float + total_ticks: Float +} + +""" +order by var_samp() on columns of table "match_map_demos" +""" +input match_map_demos_var_samp_order_by { + duration_seconds: order_by + parser_version: order_by + playback_size: order_by + playback_version: order_by + size: order_by + tick_rate: order_by + total_ticks: order_by +} + +"""aggregate variance on columns""" +type match_map_demos_variance_fields { + duration_seconds: Float + parser_version: Float + playback_size: Float + playback_version: Float + size: Float + tick_rate: Float + total_ticks: Float +} + +""" +order by variance() on columns of table "match_map_demos" +""" +input match_map_demos_variance_order_by { + duration_seconds: order_by + parser_version: order_by + playback_size: order_by + playback_version: order_by + size: order_by + tick_rate: order_by + total_ticks: order_by +} + +""" +columns and relationships of "match_map_rounds" +""" +type match_map_rounds { + """An array relationship""" + assists( + """distinct select on columns""" + distinct_on: [player_assists_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: [player_assists_order_by!] + + """filter the rows returned""" + where: player_assists_bool_exp + ): [player_assists!]! + + """An aggregate relationship""" + assists_aggregate( + """distinct select on columns""" + distinct_on: [player_assists_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: [player_assists_order_by!] + + """filter the rows returned""" + where: player_assists_bool_exp + ): player_assists_aggregate! + backup_file: String + created_at: timestamptz! + deleted_at: timestamptz + + """ + A computed field, executes function "has_backup_file" + """ + has_backup_file: Boolean + id: uuid! + + """An array relationship""" + kills( + """distinct select on columns""" + distinct_on: [player_kills_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: [player_kills_order_by!] + + """filter the rows returned""" + where: player_kills_bool_exp + ): [player_kills!]! + + """An aggregate relationship""" + kills_aggregate( + """distinct select on columns""" + distinct_on: [player_kills_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: [player_kills_order_by!] + + """filter the rows returned""" + where: player_kills_bool_exp + ): player_kills_aggregate! + lineup_1_money: Int! + lineup_1_score: Int! + lineup_1_side: e_sides_enum! + lineup_1_timeouts_available: Int! + lineup_2_money: Int! + lineup_2_score: Int! + lineup_2_side: e_sides_enum! + lineup_2_timeouts_available: Int! + + """An object relationship""" + match_map: match_maps! + match_map_id: uuid! + round: Int! + time: timestamptz! + winning_reason: e_winning_reasons_enum + winning_side: String! +} + +""" +aggregated selection of "match_map_rounds" +""" +type match_map_rounds_aggregate { + aggregate: match_map_rounds_aggregate_fields + nodes: [match_map_rounds!]! +} + +input match_map_rounds_aggregate_bool_exp { + count: match_map_rounds_aggregate_bool_exp_count +} + +input match_map_rounds_aggregate_bool_exp_count { + arguments: [match_map_rounds_select_column!] + distinct: Boolean + filter: match_map_rounds_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "match_map_rounds" +""" +type match_map_rounds_aggregate_fields { + avg: match_map_rounds_avg_fields + count(columns: [match_map_rounds_select_column!], distinct: Boolean): Int! + max: match_map_rounds_max_fields + min: match_map_rounds_min_fields + stddev: match_map_rounds_stddev_fields + stddev_pop: match_map_rounds_stddev_pop_fields + stddev_samp: match_map_rounds_stddev_samp_fields + sum: match_map_rounds_sum_fields + var_pop: match_map_rounds_var_pop_fields + var_samp: match_map_rounds_var_samp_fields + variance: match_map_rounds_variance_fields +} + +""" +order by aggregate values of table "match_map_rounds" +""" +input match_map_rounds_aggregate_order_by { + avg: match_map_rounds_avg_order_by + count: order_by + max: match_map_rounds_max_order_by + min: match_map_rounds_min_order_by + stddev: match_map_rounds_stddev_order_by + stddev_pop: match_map_rounds_stddev_pop_order_by + stddev_samp: match_map_rounds_stddev_samp_order_by + sum: match_map_rounds_sum_order_by + var_pop: match_map_rounds_var_pop_order_by + var_samp: match_map_rounds_var_samp_order_by + variance: match_map_rounds_variance_order_by +} + +""" +input type for inserting array relation for remote table "match_map_rounds" +""" +input match_map_rounds_arr_rel_insert_input { + data: [match_map_rounds_insert_input!]! + + """upsert condition""" + on_conflict: match_map_rounds_on_conflict +} + +"""aggregate avg on columns""" +type match_map_rounds_avg_fields { + lineup_1_money: Float + lineup_1_score: Float + lineup_1_timeouts_available: Float + lineup_2_money: Float + lineup_2_score: Float + lineup_2_timeouts_available: Float + round: Float +} + +""" +order by avg() on columns of table "match_map_rounds" +""" +input match_map_rounds_avg_order_by { + lineup_1_money: order_by + lineup_1_score: order_by + lineup_1_timeouts_available: order_by + lineup_2_money: order_by + lineup_2_score: order_by + lineup_2_timeouts_available: order_by + round: order_by +} + +""" +Boolean expression to filter rows from the table "match_map_rounds". All fields are combined with a logical 'AND'. +""" +input match_map_rounds_bool_exp { + _and: [match_map_rounds_bool_exp!] + _not: match_map_rounds_bool_exp + _or: [match_map_rounds_bool_exp!] + assists: player_assists_bool_exp + assists_aggregate: player_assists_aggregate_bool_exp + backup_file: String_comparison_exp + created_at: timestamptz_comparison_exp + deleted_at: timestamptz_comparison_exp + has_backup_file: Boolean_comparison_exp + id: uuid_comparison_exp + kills: player_kills_bool_exp + kills_aggregate: player_kills_aggregate_bool_exp + lineup_1_money: Int_comparison_exp + lineup_1_score: Int_comparison_exp + lineup_1_side: e_sides_enum_comparison_exp + lineup_1_timeouts_available: Int_comparison_exp + lineup_2_money: Int_comparison_exp + lineup_2_score: Int_comparison_exp + lineup_2_side: e_sides_enum_comparison_exp + lineup_2_timeouts_available: Int_comparison_exp + match_map: match_maps_bool_exp + match_map_id: uuid_comparison_exp + round: Int_comparison_exp + time: timestamptz_comparison_exp + winning_reason: e_winning_reasons_enum_comparison_exp + winning_side: String_comparison_exp +} + +""" +unique or primary key constraints on table "match_map_rounds" +""" +enum match_map_rounds_constraint { + """ + unique or primary key constraint on columns "id" + """ + match_rounds__id_key + + """ + unique or primary key constraint on columns "match_map_id", "round" + """ + match_rounds_match_id_round_key + + """ + unique or primary key constraint on columns "id" + """ + match_rounds_pkey +} + +""" +input type for incrementing numeric columns in table "match_map_rounds" +""" +input match_map_rounds_inc_input { + lineup_1_money: Int + lineup_1_score: Int + lineup_1_timeouts_available: Int + lineup_2_money: Int + lineup_2_score: Int + lineup_2_timeouts_available: Int + round: Int +} + +""" +input type for inserting data into table "match_map_rounds" +""" +input match_map_rounds_insert_input { + assists: player_assists_arr_rel_insert_input + backup_file: String + created_at: timestamptz + deleted_at: timestamptz + id: uuid + kills: player_kills_arr_rel_insert_input + lineup_1_money: Int + lineup_1_score: Int + lineup_1_side: e_sides_enum + lineup_1_timeouts_available: Int + lineup_2_money: Int + lineup_2_score: Int + lineup_2_side: e_sides_enum + lineup_2_timeouts_available: Int + match_map: match_maps_obj_rel_insert_input + match_map_id: uuid + round: Int + time: timestamptz + winning_reason: e_winning_reasons_enum + winning_side: String +} + +"""aggregate max on columns""" +type match_map_rounds_max_fields { + backup_file: String + created_at: timestamptz + deleted_at: timestamptz + id: uuid + lineup_1_money: Int + lineup_1_score: Int + lineup_1_timeouts_available: Int + lineup_2_money: Int + lineup_2_score: Int + lineup_2_timeouts_available: Int + match_map_id: uuid + round: Int + time: timestamptz + winning_side: String +} + +""" +order by max() on columns of table "match_map_rounds" +""" +input match_map_rounds_max_order_by { + backup_file: order_by + created_at: order_by + deleted_at: order_by + id: order_by + lineup_1_money: order_by + lineup_1_score: order_by + lineup_1_timeouts_available: order_by + lineup_2_money: order_by + lineup_2_score: order_by + lineup_2_timeouts_available: order_by + match_map_id: order_by + round: order_by + time: order_by + winning_side: order_by +} + +"""aggregate min on columns""" +type match_map_rounds_min_fields { + backup_file: String + created_at: timestamptz + deleted_at: timestamptz + id: uuid + lineup_1_money: Int + lineup_1_score: Int + lineup_1_timeouts_available: Int + lineup_2_money: Int + lineup_2_score: Int + lineup_2_timeouts_available: Int + match_map_id: uuid + round: Int + time: timestamptz + winning_side: String +} + +""" +order by min() on columns of table "match_map_rounds" +""" +input match_map_rounds_min_order_by { + backup_file: order_by + created_at: order_by + deleted_at: order_by + id: order_by + lineup_1_money: order_by + lineup_1_score: order_by + lineup_1_timeouts_available: order_by + lineup_2_money: order_by + lineup_2_score: order_by + lineup_2_timeouts_available: order_by + match_map_id: order_by + round: order_by + time: order_by + winning_side: order_by +} + +""" +response of any mutation on the table "match_map_rounds" +""" +type match_map_rounds_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [match_map_rounds!]! +} + +""" +on_conflict condition type for table "match_map_rounds" +""" +input match_map_rounds_on_conflict { + constraint: match_map_rounds_constraint! + update_columns: [match_map_rounds_update_column!]! = [] + where: match_map_rounds_bool_exp +} + +"""Ordering options when selecting data from "match_map_rounds".""" +input match_map_rounds_order_by { + assists_aggregate: player_assists_aggregate_order_by + backup_file: order_by + created_at: order_by + deleted_at: order_by + has_backup_file: order_by + id: order_by + kills_aggregate: player_kills_aggregate_order_by + lineup_1_money: order_by + lineup_1_score: order_by + lineup_1_side: order_by + lineup_1_timeouts_available: order_by + lineup_2_money: order_by + lineup_2_score: order_by + lineup_2_side: order_by + lineup_2_timeouts_available: order_by + match_map: match_maps_order_by + match_map_id: order_by + round: order_by + time: order_by + winning_reason: order_by + winning_side: order_by +} + +"""primary key columns input for table: match_map_rounds""" +input match_map_rounds_pk_columns_input { + id: uuid! +} + +""" +select columns of table "match_map_rounds" +""" +enum match_map_rounds_select_column { + """column name""" + backup_file + + """column name""" + created_at + + """column name""" + deleted_at + + """column name""" + id + + """column name""" + lineup_1_money + + """column name""" + lineup_1_score + + """column name""" + lineup_1_side + + """column name""" + lineup_1_timeouts_available + + """column name""" + lineup_2_money + + """column name""" + lineup_2_score + + """column name""" + lineup_2_side + + """column name""" + lineup_2_timeouts_available + + """column name""" + match_map_id + + """column name""" + round + + """column name""" + time + + """column name""" + winning_reason + + """column name""" + winning_side +} + +""" +input type for updating data in table "match_map_rounds" +""" +input match_map_rounds_set_input { + backup_file: String + created_at: timestamptz + deleted_at: timestamptz + id: uuid + lineup_1_money: Int + lineup_1_score: Int + lineup_1_side: e_sides_enum + lineup_1_timeouts_available: Int + lineup_2_money: Int + lineup_2_score: Int + lineup_2_side: e_sides_enum + lineup_2_timeouts_available: Int + match_map_id: uuid + round: Int + time: timestamptz + winning_reason: e_winning_reasons_enum + winning_side: String +} + +"""aggregate stddev on columns""" +type match_map_rounds_stddev_fields { + lineup_1_money: Float + lineup_1_score: Float + lineup_1_timeouts_available: Float + lineup_2_money: Float + lineup_2_score: Float + lineup_2_timeouts_available: Float + round: Float +} + +""" +order by stddev() on columns of table "match_map_rounds" +""" +input match_map_rounds_stddev_order_by { + lineup_1_money: order_by + lineup_1_score: order_by + lineup_1_timeouts_available: order_by + lineup_2_money: order_by + lineup_2_score: order_by + lineup_2_timeouts_available: order_by + round: order_by +} + +"""aggregate stddev_pop on columns""" +type match_map_rounds_stddev_pop_fields { + lineup_1_money: Float + lineup_1_score: Float + lineup_1_timeouts_available: Float + lineup_2_money: Float + lineup_2_score: Float + lineup_2_timeouts_available: Float + round: Float +} + +""" +order by stddev_pop() on columns of table "match_map_rounds" +""" +input match_map_rounds_stddev_pop_order_by { + lineup_1_money: order_by + lineup_1_score: order_by + lineup_1_timeouts_available: order_by + lineup_2_money: order_by + lineup_2_score: order_by + lineup_2_timeouts_available: order_by + round: order_by +} + +"""aggregate stddev_samp on columns""" +type match_map_rounds_stddev_samp_fields { + lineup_1_money: Float + lineup_1_score: Float + lineup_1_timeouts_available: Float + lineup_2_money: Float + lineup_2_score: Float + lineup_2_timeouts_available: Float + round: Float +} + +""" +order by stddev_samp() on columns of table "match_map_rounds" +""" +input match_map_rounds_stddev_samp_order_by { + lineup_1_money: order_by + lineup_1_score: order_by + lineup_1_timeouts_available: order_by + lineup_2_money: order_by + lineup_2_score: order_by + lineup_2_timeouts_available: order_by + round: order_by +} + +""" +Streaming cursor of the table "match_map_rounds" +""" +input match_map_rounds_stream_cursor_input { + """Stream column input with initial value""" + initial_value: match_map_rounds_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input match_map_rounds_stream_cursor_value_input { + backup_file: String + created_at: timestamptz + deleted_at: timestamptz + id: uuid + lineup_1_money: Int + lineup_1_score: Int + lineup_1_side: e_sides_enum + lineup_1_timeouts_available: Int + lineup_2_money: Int + lineup_2_score: Int + lineup_2_side: e_sides_enum + lineup_2_timeouts_available: Int + match_map_id: uuid + round: Int + time: timestamptz + winning_reason: e_winning_reasons_enum + winning_side: String +} + +"""aggregate sum on columns""" +type match_map_rounds_sum_fields { + lineup_1_money: Int + lineup_1_score: Int + lineup_1_timeouts_available: Int + lineup_2_money: Int + lineup_2_score: Int + lineup_2_timeouts_available: Int + round: Int +} + +""" +order by sum() on columns of table "match_map_rounds" +""" +input match_map_rounds_sum_order_by { + lineup_1_money: order_by + lineup_1_score: order_by + lineup_1_timeouts_available: order_by + lineup_2_money: order_by + lineup_2_score: order_by + lineup_2_timeouts_available: order_by + round: order_by +} + +""" +update columns of table "match_map_rounds" +""" +enum match_map_rounds_update_column { + """column name""" + backup_file + + """column name""" + created_at + + """column name""" + deleted_at + + """column name""" + id + + """column name""" + lineup_1_money + + """column name""" + lineup_1_score + + """column name""" + lineup_1_side + + """column name""" + lineup_1_timeouts_available + + """column name""" + lineup_2_money + + """column name""" + lineup_2_score + + """column name""" + lineup_2_side + + """column name""" + lineup_2_timeouts_available + + """column name""" + match_map_id + + """column name""" + round + + """column name""" + time + + """column name""" + winning_reason + + """column name""" + winning_side +} + +input match_map_rounds_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: match_map_rounds_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: match_map_rounds_set_input + + """filter the rows which have to be updated""" + where: match_map_rounds_bool_exp! +} + +"""aggregate var_pop on columns""" +type match_map_rounds_var_pop_fields { + lineup_1_money: Float + lineup_1_score: Float + lineup_1_timeouts_available: Float + lineup_2_money: Float + lineup_2_score: Float + lineup_2_timeouts_available: Float + round: Float +} + +""" +order by var_pop() on columns of table "match_map_rounds" +""" +input match_map_rounds_var_pop_order_by { + lineup_1_money: order_by + lineup_1_score: order_by + lineup_1_timeouts_available: order_by + lineup_2_money: order_by + lineup_2_score: order_by + lineup_2_timeouts_available: order_by + round: order_by +} + +"""aggregate var_samp on columns""" +type match_map_rounds_var_samp_fields { + lineup_1_money: Float + lineup_1_score: Float + lineup_1_timeouts_available: Float + lineup_2_money: Float + lineup_2_score: Float + lineup_2_timeouts_available: Float + round: Float +} + +""" +order by var_samp() on columns of table "match_map_rounds" +""" +input match_map_rounds_var_samp_order_by { + lineup_1_money: order_by + lineup_1_score: order_by + lineup_1_timeouts_available: order_by + lineup_2_money: order_by + lineup_2_score: order_by + lineup_2_timeouts_available: order_by + round: order_by +} + +"""aggregate variance on columns""" +type match_map_rounds_variance_fields { + lineup_1_money: Float + lineup_1_score: Float + lineup_1_timeouts_available: Float + lineup_2_money: Float + lineup_2_score: Float + lineup_2_timeouts_available: Float + round: Float +} + +""" +order by variance() on columns of table "match_map_rounds" +""" +input match_map_rounds_variance_order_by { + lineup_1_money: order_by + lineup_1_score: order_by + lineup_1_timeouts_available: order_by + lineup_2_money: order_by + lineup_2_score: order_by + lineup_2_timeouts_available: order_by + round: order_by +} + +""" +columns and relationships of "match_map_veto_picks" +""" +type match_map_veto_picks { + auto_picked: Boolean! + created_at: timestamptz! + id: uuid! + + """An object relationship""" + map: maps! + map_id: uuid! + + """An object relationship""" + match: matches! + match_id: uuid! + + """An object relationship""" + match_lineup: match_lineups! + match_lineup_id: uuid! + side: String + type: e_veto_pick_types_enum! +} + +""" +aggregated selection of "match_map_veto_picks" +""" +type match_map_veto_picks_aggregate { + aggregate: match_map_veto_picks_aggregate_fields + nodes: [match_map_veto_picks!]! +} + +input match_map_veto_picks_aggregate_bool_exp { + bool_and: match_map_veto_picks_aggregate_bool_exp_bool_and + bool_or: match_map_veto_picks_aggregate_bool_exp_bool_or + count: match_map_veto_picks_aggregate_bool_exp_count +} + +input match_map_veto_picks_aggregate_bool_exp_bool_and { + arguments: match_map_veto_picks_select_column_match_map_veto_picks_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: match_map_veto_picks_bool_exp + predicate: Boolean_comparison_exp! +} + +input match_map_veto_picks_aggregate_bool_exp_bool_or { + arguments: match_map_veto_picks_select_column_match_map_veto_picks_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: match_map_veto_picks_bool_exp + predicate: Boolean_comparison_exp! +} + +input match_map_veto_picks_aggregate_bool_exp_count { + arguments: [match_map_veto_picks_select_column!] + distinct: Boolean + filter: match_map_veto_picks_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "match_map_veto_picks" +""" +type match_map_veto_picks_aggregate_fields { + count(columns: [match_map_veto_picks_select_column!], distinct: Boolean): Int! + max: match_map_veto_picks_max_fields + min: match_map_veto_picks_min_fields +} + +""" +order by aggregate values of table "match_map_veto_picks" +""" +input match_map_veto_picks_aggregate_order_by { + count: order_by + max: match_map_veto_picks_max_order_by + min: match_map_veto_picks_min_order_by +} + +""" +input type for inserting array relation for remote table "match_map_veto_picks" +""" +input match_map_veto_picks_arr_rel_insert_input { + data: [match_map_veto_picks_insert_input!]! + + """upsert condition""" + on_conflict: match_map_veto_picks_on_conflict +} + +""" +Boolean expression to filter rows from the table "match_map_veto_picks". All fields are combined with a logical 'AND'. +""" +input match_map_veto_picks_bool_exp { + _and: [match_map_veto_picks_bool_exp!] + _not: match_map_veto_picks_bool_exp + _or: [match_map_veto_picks_bool_exp!] + auto_picked: Boolean_comparison_exp + created_at: timestamptz_comparison_exp + id: uuid_comparison_exp + map: maps_bool_exp + map_id: uuid_comparison_exp + match: matches_bool_exp + match_id: uuid_comparison_exp + match_lineup: match_lineups_bool_exp + match_lineup_id: uuid_comparison_exp + side: String_comparison_exp + type: e_veto_pick_types_enum_comparison_exp +} + +""" +unique or primary key constraints on table "match_map_veto_picks" +""" +enum match_map_veto_picks_constraint { + """ + unique or primary key constraint on columns "type", "match_id", "map_id" + """ + match_map_veto_picks_map_id_match_id_type_key + + """ + unique or primary key constraint on columns "id" + """ + match_map_veto_picks_pkey +} + +""" +input type for inserting data into table "match_map_veto_picks" +""" +input match_map_veto_picks_insert_input { + auto_picked: Boolean + created_at: timestamptz + id: uuid + map: maps_obj_rel_insert_input + map_id: uuid + match: matches_obj_rel_insert_input + match_id: uuid + match_lineup: match_lineups_obj_rel_insert_input + match_lineup_id: uuid + side: String + type: e_veto_pick_types_enum +} + +"""aggregate max on columns""" +type match_map_veto_picks_max_fields { + created_at: timestamptz + id: uuid + map_id: uuid + match_id: uuid + match_lineup_id: uuid + side: String +} + +""" +order by max() on columns of table "match_map_veto_picks" +""" +input match_map_veto_picks_max_order_by { + created_at: order_by + id: order_by + map_id: order_by + match_id: order_by + match_lineup_id: order_by + side: order_by +} + +"""aggregate min on columns""" +type match_map_veto_picks_min_fields { + created_at: timestamptz + id: uuid + map_id: uuid + match_id: uuid + match_lineup_id: uuid + side: String +} + +""" +order by min() on columns of table "match_map_veto_picks" +""" +input match_map_veto_picks_min_order_by { + created_at: order_by + id: order_by + map_id: order_by + match_id: order_by + match_lineup_id: order_by + side: order_by +} + +""" +response of any mutation on the table "match_map_veto_picks" +""" +type match_map_veto_picks_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [match_map_veto_picks!]! +} + +""" +on_conflict condition type for table "match_map_veto_picks" +""" +input match_map_veto_picks_on_conflict { + constraint: match_map_veto_picks_constraint! + update_columns: [match_map_veto_picks_update_column!]! = [] + where: match_map_veto_picks_bool_exp +} + +"""Ordering options when selecting data from "match_map_veto_picks".""" +input match_map_veto_picks_order_by { + auto_picked: order_by + created_at: order_by + id: order_by + map: maps_order_by + map_id: order_by + match: matches_order_by + match_id: order_by + match_lineup: match_lineups_order_by + match_lineup_id: order_by + side: order_by + type: order_by +} + +"""primary key columns input for table: match_map_veto_picks""" +input match_map_veto_picks_pk_columns_input { + id: uuid! +} + +""" +select columns of table "match_map_veto_picks" +""" +enum match_map_veto_picks_select_column { + """column name""" + auto_picked + + """column name""" + created_at + + """column name""" + id + + """column name""" + map_id + + """column name""" + match_id + + """column name""" + match_lineup_id + + """column name""" + side + + """column name""" + type +} + +""" +select "match_map_veto_picks_aggregate_bool_exp_bool_and_arguments_columns" columns of table "match_map_veto_picks" +""" +enum match_map_veto_picks_select_column_match_map_veto_picks_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + auto_picked +} + +""" +select "match_map_veto_picks_aggregate_bool_exp_bool_or_arguments_columns" columns of table "match_map_veto_picks" +""" +enum match_map_veto_picks_select_column_match_map_veto_picks_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + auto_picked +} + +""" +input type for updating data in table "match_map_veto_picks" +""" +input match_map_veto_picks_set_input { + auto_picked: Boolean + created_at: timestamptz + id: uuid + map_id: uuid + match_id: uuid + match_lineup_id: uuid + side: String + type: e_veto_pick_types_enum +} + +""" +Streaming cursor of the table "match_map_veto_picks" +""" +input match_map_veto_picks_stream_cursor_input { + """Stream column input with initial value""" + initial_value: match_map_veto_picks_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input match_map_veto_picks_stream_cursor_value_input { + auto_picked: Boolean + created_at: timestamptz + id: uuid + map_id: uuid + match_id: uuid + match_lineup_id: uuid + side: String + type: e_veto_pick_types_enum +} + +""" +update columns of table "match_map_veto_picks" +""" +enum match_map_veto_picks_update_column { + """column name""" + auto_picked + + """column name""" + created_at + + """column name""" + id + + """column name""" + map_id + + """column name""" + match_id + + """column name""" + match_lineup_id + + """column name""" + side + + """column name""" + type +} + +input match_map_veto_picks_updates { + """sets the columns of the filtered rows to the given values""" + _set: match_map_veto_picks_set_input + + """filter the rows which have to be updated""" + where: match_map_veto_picks_bool_exp! +} + +""" +columns and relationships of "match_maps" +""" +type match_maps { + clips_count: Int! + created_at: timestamptz! + demo_processing_started_at: timestamptz + + """An array relationship""" + demos( + """distinct select on columns""" + distinct_on: [match_map_demos_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_map_demos_order_by!] + + """filter the rows returned""" + where: match_map_demos_bool_exp + ): [match_map_demos!]! + + """An aggregate relationship""" + demos_aggregate( + """distinct select on columns""" + distinct_on: [match_map_demos_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_map_demos_order_by!] + + """filter the rows returned""" + where: match_map_demos_bool_exp + ): match_map_demos_aggregate! + + """ + A computed field, executes function "match_map_demo_download_url" + """ + demos_download_url: String + + """ + A computed field, executes function "match_map_demo_total_size" + """ + demos_total_size: Int + + """An object relationship""" + e_match_map_status: e_match_map_status! + ended_at: timestamptz + + """An array relationship""" + flashes( + """distinct select on columns""" + distinct_on: [player_flashes_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: [player_flashes_order_by!] + + """filter the rows returned""" + where: player_flashes_bool_exp + ): [player_flashes!]! + + """An aggregate relationship""" + flashes_aggregate( + """distinct select on columns""" + distinct_on: [player_flashes_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: [player_flashes_order_by!] + + """filter the rows returned""" + where: player_flashes_bool_exp + ): player_flashes_aggregate! + id: uuid! + + """ + A computed field, executes function "is_current_match_map" + """ + is_current_map: Boolean + latest_clip_at: timestamptz + + """ + A computed field, executes function "lineup_1_score" + """ + lineup_1_score: Int + lineup_1_side: e_sides_enum! + lineup_1_timeouts_available: Int! + + """ + A computed field, executes function "lineup_2_score" + """ + lineup_2_score: Int + lineup_2_side: e_sides_enum + lineup_2_timeouts_available: Int! + + """An object relationship""" + map: maps! + map_id: uuid! + + """An object relationship""" + match: matches! + + """An array relationship""" + match_clips( + """distinct select on columns""" + distinct_on: [match_clips_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_clips_order_by!] + + """filter the rows returned""" + where: match_clips_bool_exp + ): [match_clips!]! + + """An aggregate relationship""" + match_clips_aggregate( + """distinct select on columns""" + distinct_on: [match_clips_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_clips_order_by!] + + """filter the rows returned""" + where: match_clips_bool_exp + ): match_clips_aggregate! + match_id: uuid! + + """An array relationship""" + objectives( + """distinct select on columns""" + distinct_on: [player_objectives_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: [player_objectives_order_by!] + + """filter the rows returned""" + where: player_objectives_bool_exp + ): [player_objectives!]! + + """An aggregate relationship""" + objectives_aggregate( + """distinct select on columns""" + distinct_on: [player_objectives_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: [player_objectives_order_by!] + + """filter the rows returned""" + where: player_objectives_bool_exp + ): player_objectives_aggregate! + order: Int! + + """An array relationship""" + player_assists( + """distinct select on columns""" + distinct_on: [player_assists_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: [player_assists_order_by!] + + """filter the rows returned""" + where: player_assists_bool_exp + ): [player_assists!]! + + """An aggregate relationship""" + player_assists_aggregate( + """distinct select on columns""" + distinct_on: [player_assists_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: [player_assists_order_by!] + + """filter the rows returned""" + where: player_assists_bool_exp + ): player_assists_aggregate! + + """An array relationship""" + player_damages( + """distinct select on columns""" + distinct_on: [player_damages_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: [player_damages_order_by!] + + """filter the rows returned""" + where: player_damages_bool_exp + ): [player_damages!]! + + """An aggregate relationship""" + player_damages_aggregate( + """distinct select on columns""" + distinct_on: [player_damages_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: [player_damages_order_by!] + + """filter the rows returned""" + where: player_damages_bool_exp + ): player_damages_aggregate! + + """An array relationship""" + player_kills( + """distinct select on columns""" + distinct_on: [player_kills_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: [player_kills_order_by!] + + """filter the rows returned""" + where: player_kills_bool_exp + ): [player_kills!]! + + """An aggregate relationship""" + player_kills_aggregate( + """distinct select on columns""" + distinct_on: [player_kills_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: [player_kills_order_by!] + + """filter the rows returned""" + where: player_kills_bool_exp + ): player_kills_aggregate! + + """An array relationship""" + player_unused_utilities( + """distinct select on columns""" + distinct_on: [player_unused_utility_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: [player_unused_utility_order_by!] + + """filter the rows returned""" + where: player_unused_utility_bool_exp + ): [player_unused_utility!]! + + """An aggregate relationship""" + player_unused_utilities_aggregate( + """distinct select on columns""" + distinct_on: [player_unused_utility_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: [player_unused_utility_order_by!] + + """filter the rows returned""" + where: player_unused_utility_bool_exp + ): player_unused_utility_aggregate! + public_clips_count: Int! + public_latest_clip_at: timestamptz + + """An array relationship""" + rounds( + """distinct select on columns""" + distinct_on: [match_map_rounds_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_map_rounds_order_by!] + + """filter the rows returned""" + where: match_map_rounds_bool_exp + ): [match_map_rounds!]! + + """An aggregate relationship""" + rounds_aggregate( + """distinct select on columns""" + distinct_on: [match_map_rounds_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_map_rounds_order_by!] + + """filter the rows returned""" + where: match_map_rounds_bool_exp + ): match_map_rounds_aggregate! + started_at: timestamptz + status: e_match_map_status_enum! + + """An array relationship""" + utility( + """distinct select on columns""" + distinct_on: [player_utility_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: [player_utility_order_by!] + + """filter the rows returned""" + where: player_utility_bool_exp + ): [player_utility!]! + + """An aggregate relationship""" + utility_aggregate( + """distinct select on columns""" + distinct_on: [player_utility_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: [player_utility_order_by!] + + """filter the rows returned""" + where: player_utility_bool_exp + ): player_utility_aggregate! + + """An array relationship""" + vetos( + """distinct select on columns""" + distinct_on: [match_map_veto_picks_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_map_veto_picks_order_by!] + + """filter the rows returned""" + where: match_map_veto_picks_bool_exp + ): [match_map_veto_picks!]! + + """An aggregate relationship""" + vetos_aggregate( + """distinct select on columns""" + distinct_on: [match_map_veto_picks_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_map_veto_picks_order_by!] + + """filter the rows returned""" + where: match_map_veto_picks_bool_exp + ): match_map_veto_picks_aggregate! + winning_lineup_id: uuid +} + +""" +aggregated selection of "match_maps" +""" +type match_maps_aggregate { + aggregate: match_maps_aggregate_fields + nodes: [match_maps!]! +} + +input match_maps_aggregate_bool_exp { + count: match_maps_aggregate_bool_exp_count +} + +input match_maps_aggregate_bool_exp_count { + arguments: [match_maps_select_column!] + distinct: Boolean + filter: match_maps_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "match_maps" +""" +type match_maps_aggregate_fields { + avg: match_maps_avg_fields + count(columns: [match_maps_select_column!], distinct: Boolean): Int! + max: match_maps_max_fields + min: match_maps_min_fields + stddev: match_maps_stddev_fields + stddev_pop: match_maps_stddev_pop_fields + stddev_samp: match_maps_stddev_samp_fields + sum: match_maps_sum_fields + var_pop: match_maps_var_pop_fields + var_samp: match_maps_var_samp_fields + variance: match_maps_variance_fields +} + +""" +order by aggregate values of table "match_maps" +""" +input match_maps_aggregate_order_by { + avg: match_maps_avg_order_by + count: order_by + max: match_maps_max_order_by + min: match_maps_min_order_by + stddev: match_maps_stddev_order_by + stddev_pop: match_maps_stddev_pop_order_by + stddev_samp: match_maps_stddev_samp_order_by + sum: match_maps_sum_order_by + var_pop: match_maps_var_pop_order_by + var_samp: match_maps_var_samp_order_by + variance: match_maps_variance_order_by +} + +""" +input type for inserting array relation for remote table "match_maps" +""" +input match_maps_arr_rel_insert_input { + data: [match_maps_insert_input!]! + + """upsert condition""" + on_conflict: match_maps_on_conflict +} + +"""aggregate avg on columns""" +type match_maps_avg_fields { + clips_count: Float + + """ + A computed field, executes function "match_map_demo_total_size" + """ + demos_total_size: Int + + """ + A computed field, executes function "lineup_1_score" + """ + lineup_1_score: Int + lineup_1_timeouts_available: Float + + """ + A computed field, executes function "lineup_2_score" + """ + lineup_2_score: Int + lineup_2_timeouts_available: Float + order: Float + public_clips_count: Float +} + +""" +order by avg() on columns of table "match_maps" +""" +input match_maps_avg_order_by { + clips_count: order_by + lineup_1_timeouts_available: order_by + lineup_2_timeouts_available: order_by + order: order_by + public_clips_count: order_by +} + +""" +Boolean expression to filter rows from the table "match_maps". All fields are combined with a logical 'AND'. +""" +input match_maps_bool_exp { + _and: [match_maps_bool_exp!] + _not: match_maps_bool_exp + _or: [match_maps_bool_exp!] + clips_count: Int_comparison_exp + created_at: timestamptz_comparison_exp + demo_processing_started_at: timestamptz_comparison_exp + demos: match_map_demos_bool_exp + demos_aggregate: match_map_demos_aggregate_bool_exp + demos_download_url: String_comparison_exp + demos_total_size: Int_comparison_exp + e_match_map_status: e_match_map_status_bool_exp + ended_at: timestamptz_comparison_exp + flashes: player_flashes_bool_exp + flashes_aggregate: player_flashes_aggregate_bool_exp + id: uuid_comparison_exp + is_current_map: Boolean_comparison_exp + latest_clip_at: timestamptz_comparison_exp + lineup_1_score: Int_comparison_exp + lineup_1_side: e_sides_enum_comparison_exp + lineup_1_timeouts_available: Int_comparison_exp + lineup_2_score: Int_comparison_exp + lineup_2_side: e_sides_enum_comparison_exp + lineup_2_timeouts_available: Int_comparison_exp + map: maps_bool_exp + map_id: uuid_comparison_exp + match: matches_bool_exp + match_clips: match_clips_bool_exp + match_clips_aggregate: match_clips_aggregate_bool_exp + match_id: uuid_comparison_exp + objectives: player_objectives_bool_exp + objectives_aggregate: player_objectives_aggregate_bool_exp + order: Int_comparison_exp + player_assists: player_assists_bool_exp + player_assists_aggregate: player_assists_aggregate_bool_exp + player_damages: player_damages_bool_exp + player_damages_aggregate: player_damages_aggregate_bool_exp + player_kills: player_kills_bool_exp + player_kills_aggregate: player_kills_aggregate_bool_exp + player_unused_utilities: player_unused_utility_bool_exp + player_unused_utilities_aggregate: player_unused_utility_aggregate_bool_exp + public_clips_count: Int_comparison_exp + public_latest_clip_at: timestamptz_comparison_exp + rounds: match_map_rounds_bool_exp + rounds_aggregate: match_map_rounds_aggregate_bool_exp + started_at: timestamptz_comparison_exp + status: e_match_map_status_enum_comparison_exp + utility: player_utility_bool_exp + utility_aggregate: player_utility_aggregate_bool_exp + vetos: match_map_veto_picks_bool_exp + vetos_aggregate: match_map_veto_picks_aggregate_bool_exp + winning_lineup_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "match_maps" +""" +enum match_maps_constraint { + """ + unique or primary key constraint on columns "order", "match_id" + """ + match_maps_match_id_order_key + + """ + unique or primary key constraint on columns "id" + """ + match_maps_pkey +} + +""" +input type for incrementing numeric columns in table "match_maps" +""" +input match_maps_inc_input { + clips_count: Int + lineup_1_timeouts_available: Int + lineup_2_timeouts_available: Int + order: Int + public_clips_count: Int +} + +""" +input type for inserting data into table "match_maps" +""" +input match_maps_insert_input { + clips_count: Int + created_at: timestamptz + demo_processing_started_at: timestamptz + demos: match_map_demos_arr_rel_insert_input + e_match_map_status: e_match_map_status_obj_rel_insert_input + ended_at: timestamptz + flashes: player_flashes_arr_rel_insert_input + id: uuid + latest_clip_at: timestamptz + lineup_1_side: e_sides_enum + lineup_1_timeouts_available: Int + lineup_2_side: e_sides_enum + lineup_2_timeouts_available: Int + map: maps_obj_rel_insert_input + map_id: uuid + match: matches_obj_rel_insert_input + match_clips: match_clips_arr_rel_insert_input + match_id: uuid + objectives: player_objectives_arr_rel_insert_input + order: Int + player_assists: player_assists_arr_rel_insert_input + player_damages: player_damages_arr_rel_insert_input + player_kills: player_kills_arr_rel_insert_input + player_unused_utilities: player_unused_utility_arr_rel_insert_input + public_clips_count: Int + public_latest_clip_at: timestamptz + rounds: match_map_rounds_arr_rel_insert_input + started_at: timestamptz + status: e_match_map_status_enum + utility: player_utility_arr_rel_insert_input + vetos: match_map_veto_picks_arr_rel_insert_input + winning_lineup_id: uuid +} + +"""aggregate max on columns""" +type match_maps_max_fields { + clips_count: Int + created_at: timestamptz + demo_processing_started_at: timestamptz + + """ + A computed field, executes function "match_map_demo_download_url" + """ + demos_download_url: String + + """ + A computed field, executes function "match_map_demo_total_size" + """ + demos_total_size: Int + ended_at: timestamptz + id: uuid + latest_clip_at: timestamptz + + """ + A computed field, executes function "lineup_1_score" + """ + lineup_1_score: Int + lineup_1_timeouts_available: Int + + """ + A computed field, executes function "lineup_2_score" + """ + lineup_2_score: Int + lineup_2_timeouts_available: Int + map_id: uuid + match_id: uuid + order: Int + public_clips_count: Int + public_latest_clip_at: timestamptz + started_at: timestamptz + winning_lineup_id: uuid +} + +""" +order by max() on columns of table "match_maps" +""" +input match_maps_max_order_by { + clips_count: order_by + created_at: order_by + demo_processing_started_at: order_by + ended_at: order_by + id: order_by + latest_clip_at: order_by + lineup_1_timeouts_available: order_by + lineup_2_timeouts_available: order_by + map_id: order_by + match_id: order_by + order: order_by + public_clips_count: order_by + public_latest_clip_at: order_by + started_at: order_by + winning_lineup_id: order_by +} + +"""aggregate min on columns""" +type match_maps_min_fields { + clips_count: Int + created_at: timestamptz + demo_processing_started_at: timestamptz + + """ + A computed field, executes function "match_map_demo_download_url" + """ + demos_download_url: String + + """ + A computed field, executes function "match_map_demo_total_size" + """ + demos_total_size: Int + ended_at: timestamptz + id: uuid + latest_clip_at: timestamptz + + """ + A computed field, executes function "lineup_1_score" + """ + lineup_1_score: Int + lineup_1_timeouts_available: Int + + """ + A computed field, executes function "lineup_2_score" + """ + lineup_2_score: Int + lineup_2_timeouts_available: Int + map_id: uuid + match_id: uuid + order: Int + public_clips_count: Int + public_latest_clip_at: timestamptz + started_at: timestamptz + winning_lineup_id: uuid +} + +""" +order by min() on columns of table "match_maps" +""" +input match_maps_min_order_by { + clips_count: order_by + created_at: order_by + demo_processing_started_at: order_by + ended_at: order_by + id: order_by + latest_clip_at: order_by + lineup_1_timeouts_available: order_by + lineup_2_timeouts_available: order_by + map_id: order_by + match_id: order_by + order: order_by + public_clips_count: order_by + public_latest_clip_at: order_by + started_at: order_by + winning_lineup_id: order_by +} + +""" +response of any mutation on the table "match_maps" +""" +type match_maps_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [match_maps!]! +} + +""" +input type for inserting object relation for remote table "match_maps" +""" +input match_maps_obj_rel_insert_input { + data: match_maps_insert_input! + + """upsert condition""" + on_conflict: match_maps_on_conflict +} + +""" +on_conflict condition type for table "match_maps" +""" +input match_maps_on_conflict { + constraint: match_maps_constraint! + update_columns: [match_maps_update_column!]! = [] + where: match_maps_bool_exp +} + +"""Ordering options when selecting data from "match_maps".""" +input match_maps_order_by { + clips_count: order_by + created_at: order_by + demo_processing_started_at: order_by + demos_aggregate: match_map_demos_aggregate_order_by + demos_download_url: order_by + demos_total_size: order_by + e_match_map_status: e_match_map_status_order_by + ended_at: order_by + flashes_aggregate: player_flashes_aggregate_order_by + id: order_by + is_current_map: order_by + latest_clip_at: order_by + lineup_1_score: order_by + lineup_1_side: order_by + lineup_1_timeouts_available: order_by + lineup_2_score: order_by + lineup_2_side: order_by + lineup_2_timeouts_available: order_by + map: maps_order_by + map_id: order_by + match: matches_order_by + match_clips_aggregate: match_clips_aggregate_order_by + match_id: order_by + objectives_aggregate: player_objectives_aggregate_order_by + order: order_by + player_assists_aggregate: player_assists_aggregate_order_by + player_damages_aggregate: player_damages_aggregate_order_by + player_kills_aggregate: player_kills_aggregate_order_by + player_unused_utilities_aggregate: player_unused_utility_aggregate_order_by + public_clips_count: order_by + public_latest_clip_at: order_by + rounds_aggregate: match_map_rounds_aggregate_order_by + started_at: order_by + status: order_by + utility_aggregate: player_utility_aggregate_order_by + vetos_aggregate: match_map_veto_picks_aggregate_order_by + winning_lineup_id: order_by +} + +"""primary key columns input for table: match_maps""" +input match_maps_pk_columns_input { + id: uuid! +} + +""" +select columns of table "match_maps" +""" +enum match_maps_select_column { + """column name""" + clips_count + + """column name""" + created_at + + """column name""" + demo_processing_started_at + + """column name""" + ended_at + + """column name""" + id + + """column name""" + latest_clip_at + + """column name""" + lineup_1_side + + """column name""" + lineup_1_timeouts_available + + """column name""" + lineup_2_side + + """column name""" + lineup_2_timeouts_available + + """column name""" + map_id + + """column name""" + match_id + + """column name""" + order + + """column name""" + public_clips_count + + """column name""" + public_latest_clip_at + + """column name""" + started_at + + """column name""" + status + + """column name""" + winning_lineup_id +} + +""" +input type for updating data in table "match_maps" +""" +input match_maps_set_input { + clips_count: Int + created_at: timestamptz + demo_processing_started_at: timestamptz + ended_at: timestamptz + id: uuid + latest_clip_at: timestamptz + lineup_1_side: e_sides_enum + lineup_1_timeouts_available: Int + lineup_2_side: e_sides_enum + lineup_2_timeouts_available: Int + map_id: uuid + match_id: uuid + order: Int + public_clips_count: Int + public_latest_clip_at: timestamptz + started_at: timestamptz + status: e_match_map_status_enum + winning_lineup_id: uuid +} + +"""aggregate stddev on columns""" +type match_maps_stddev_fields { + clips_count: Float + + """ + A computed field, executes function "match_map_demo_total_size" + """ + demos_total_size: Int + + """ + A computed field, executes function "lineup_1_score" + """ + lineup_1_score: Int + lineup_1_timeouts_available: Float + + """ + A computed field, executes function "lineup_2_score" + """ + lineup_2_score: Int + lineup_2_timeouts_available: Float + order: Float + public_clips_count: Float +} + +""" +order by stddev() on columns of table "match_maps" +""" +input match_maps_stddev_order_by { + clips_count: order_by + lineup_1_timeouts_available: order_by + lineup_2_timeouts_available: order_by + order: order_by + public_clips_count: order_by +} + +"""aggregate stddev_pop on columns""" +type match_maps_stddev_pop_fields { + clips_count: Float + + """ + A computed field, executes function "match_map_demo_total_size" + """ + demos_total_size: Int + + """ + A computed field, executes function "lineup_1_score" + """ + lineup_1_score: Int + lineup_1_timeouts_available: Float + + """ + A computed field, executes function "lineup_2_score" + """ + lineup_2_score: Int + lineup_2_timeouts_available: Float + order: Float + public_clips_count: Float +} + +""" +order by stddev_pop() on columns of table "match_maps" +""" +input match_maps_stddev_pop_order_by { + clips_count: order_by + lineup_1_timeouts_available: order_by + lineup_2_timeouts_available: order_by + order: order_by + public_clips_count: order_by +} + +"""aggregate stddev_samp on columns""" +type match_maps_stddev_samp_fields { + clips_count: Float + + """ + A computed field, executes function "match_map_demo_total_size" + """ + demos_total_size: Int + + """ + A computed field, executes function "lineup_1_score" + """ + lineup_1_score: Int + lineup_1_timeouts_available: Float + + """ + A computed field, executes function "lineup_2_score" + """ + lineup_2_score: Int + lineup_2_timeouts_available: Float + order: Float + public_clips_count: Float +} + +""" +order by stddev_samp() on columns of table "match_maps" +""" +input match_maps_stddev_samp_order_by { + clips_count: order_by + lineup_1_timeouts_available: order_by + lineup_2_timeouts_available: order_by + order: order_by + public_clips_count: order_by +} + +""" +Streaming cursor of the table "match_maps" +""" +input match_maps_stream_cursor_input { + """Stream column input with initial value""" + initial_value: match_maps_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input match_maps_stream_cursor_value_input { + clips_count: Int + created_at: timestamptz + demo_processing_started_at: timestamptz + ended_at: timestamptz + id: uuid + latest_clip_at: timestamptz + lineup_1_side: e_sides_enum + lineup_1_timeouts_available: Int + lineup_2_side: e_sides_enum + lineup_2_timeouts_available: Int + map_id: uuid + match_id: uuid + order: Int + public_clips_count: Int + public_latest_clip_at: timestamptz + started_at: timestamptz + status: e_match_map_status_enum + winning_lineup_id: uuid +} + +"""aggregate sum on columns""" +type match_maps_sum_fields { + clips_count: Int + + """ + A computed field, executes function "match_map_demo_total_size" + """ + demos_total_size: Int + + """ + A computed field, executes function "lineup_1_score" + """ + lineup_1_score: Int + lineup_1_timeouts_available: Int + + """ + A computed field, executes function "lineup_2_score" + """ + lineup_2_score: Int + lineup_2_timeouts_available: Int + order: Int + public_clips_count: Int +} + +""" +order by sum() on columns of table "match_maps" +""" +input match_maps_sum_order_by { + clips_count: order_by + lineup_1_timeouts_available: order_by + lineup_2_timeouts_available: order_by + order: order_by + public_clips_count: order_by +} + +""" +update columns of table "match_maps" +""" +enum match_maps_update_column { + """column name""" + clips_count + + """column name""" + created_at + + """column name""" + demo_processing_started_at + + """column name""" + ended_at + + """column name""" + id + + """column name""" + latest_clip_at + + """column name""" + lineup_1_side + + """column name""" + lineup_1_timeouts_available + + """column name""" + lineup_2_side + + """column name""" + lineup_2_timeouts_available + + """column name""" + map_id + + """column name""" + match_id + + """column name""" + order + + """column name""" + public_clips_count + + """column name""" + public_latest_clip_at + + """column name""" + started_at + + """column name""" + status + + """column name""" + winning_lineup_id +} + +input match_maps_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: match_maps_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: match_maps_set_input + + """filter the rows which have to be updated""" + where: match_maps_bool_exp! +} + +"""aggregate var_pop on columns""" +type match_maps_var_pop_fields { + clips_count: Float + + """ + A computed field, executes function "match_map_demo_total_size" + """ + demos_total_size: Int + + """ + A computed field, executes function "lineup_1_score" + """ + lineup_1_score: Int + lineup_1_timeouts_available: Float + + """ + A computed field, executes function "lineup_2_score" + """ + lineup_2_score: Int + lineup_2_timeouts_available: Float + order: Float + public_clips_count: Float +} + +""" +order by var_pop() on columns of table "match_maps" +""" +input match_maps_var_pop_order_by { + clips_count: order_by + lineup_1_timeouts_available: order_by + lineup_2_timeouts_available: order_by + order: order_by + public_clips_count: order_by +} + +"""aggregate var_samp on columns""" +type match_maps_var_samp_fields { + clips_count: Float + + """ + A computed field, executes function "match_map_demo_total_size" + """ + demos_total_size: Int + + """ + A computed field, executes function "lineup_1_score" + """ + lineup_1_score: Int + lineup_1_timeouts_available: Float + + """ + A computed field, executes function "lineup_2_score" + """ + lineup_2_score: Int + lineup_2_timeouts_available: Float + order: Float + public_clips_count: Float +} + +""" +order by var_samp() on columns of table "match_maps" +""" +input match_maps_var_samp_order_by { + clips_count: order_by + lineup_1_timeouts_available: order_by + lineup_2_timeouts_available: order_by + order: order_by + public_clips_count: order_by +} + +"""aggregate variance on columns""" +type match_maps_variance_fields { + clips_count: Float + + """ + A computed field, executes function "match_map_demo_total_size" + """ + demos_total_size: Int + + """ + A computed field, executes function "lineup_1_score" + """ + lineup_1_score: Int + lineup_1_timeouts_available: Float + + """ + A computed field, executes function "lineup_2_score" + """ + lineup_2_score: Int + lineup_2_timeouts_available: Float + order: Float + public_clips_count: Float +} + +""" +order by variance() on columns of table "match_maps" +""" +input match_maps_variance_order_by { + clips_count: order_by + lineup_1_timeouts_available: order_by + lineup_2_timeouts_available: order_by + order: order_by + public_clips_count: order_by +} + +""" +columns and relationships of "match_options" +""" +type match_options { + auto_cancel_duration: Int + auto_cancellation: Boolean! + best_of: Int! + camera_allow_teammates: Boolean! + camera_required: Boolean! + 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! + + """ + A computed field, executes function "has_active_matches" + """ + has_active_matches: Boolean + id: uuid! + invite_code: String + knife_round: Boolean! + live_match_timeout: Int + + """An object relationship""" + map_pool: map_pools! + map_pool_id: uuid! + map_veto: Boolean! + match_mode: e_match_mode_enum! + + """An array relationship""" + matches( + """distinct select on columns""" + distinct_on: [matches_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: [matches_order_by!] + + """filter the rows returned""" + where: matches_bool_exp + ): [matches!]! + + """An aggregate relationship""" + matches_aggregate( + """distinct select on columns""" + distinct_on: [matches_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: [matches_order_by!] + + """filter the rows returned""" + where: matches_bool_exp + ): matches_aggregate! + mr: Int! + number_of_substitutes: Int! + overtime: Boolean! + prefer_dedicated_server: Boolean! + ready_setting: e_ready_settings_enum! + region_veto: Boolean! + regions: [String!] + round_restart_delay: Int + tech_timeout_setting: e_timeout_settings_enum! + timeout_setting: e_timeout_settings_enum! + + """An object relationship""" + tournament: tournaments + + """An object relationship""" + tournament_bracket: tournament_brackets + + """An object relationship""" + tournament_stage: tournament_stages + tv_delay: Int! + type: e_match_types_enum! + veto_pick_timeout: Int! +} + +""" +aggregated selection of "match_options" +""" +type match_options_aggregate { + aggregate: match_options_aggregate_fields + 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" +""" +type match_options_aggregate_fields { + avg: match_options_avg_fields + count(columns: [match_options_select_column!], distinct: Boolean): Int! + max: match_options_max_fields + min: match_options_min_fields + stddev: match_options_stddev_fields + stddev_pop: match_options_stddev_pop_fields + stddev_samp: match_options_stddev_samp_fields + sum: match_options_sum_fields + var_pop: match_options_var_pop_fields + var_samp: match_options_var_samp_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 + best_of: Float + live_match_timeout: Float + mr: Float + number_of_substitutes: Float + round_restart_delay: Float + tv_delay: Float + 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'. +""" +input match_options_bool_exp { + _and: [match_options_bool_exp!] + _not: match_options_bool_exp + _or: [match_options_bool_exp!] + auto_cancel_duration: Int_comparison_exp + auto_cancellation: Boolean_comparison_exp + best_of: Int_comparison_exp + camera_allow_teammates: Boolean_comparison_exp + camera_required: Boolean_comparison_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 + invite_code: String_comparison_exp + knife_round: Boolean_comparison_exp + live_match_timeout: Int_comparison_exp + map_pool: map_pools_bool_exp + map_pool_id: uuid_comparison_exp + map_veto: Boolean_comparison_exp + match_mode: e_match_mode_enum_comparison_exp + matches: matches_bool_exp + matches_aggregate: matches_aggregate_bool_exp + mr: Int_comparison_exp + number_of_substitutes: Int_comparison_exp + overtime: Boolean_comparison_exp + prefer_dedicated_server: Boolean_comparison_exp + ready_setting: e_ready_settings_enum_comparison_exp + region_veto: Boolean_comparison_exp + regions: String_array_comparison_exp + round_restart_delay: Int_comparison_exp + tech_timeout_setting: e_timeout_settings_enum_comparison_exp + timeout_setting: e_timeout_settings_enum_comparison_exp + tournament: tournaments_bool_exp + tournament_bracket: tournament_brackets_bool_exp + tournament_stage: tournament_stages_bool_exp + tv_delay: Int_comparison_exp + type: e_match_types_enum_comparison_exp + veto_pick_timeout: Int_comparison_exp +} + +""" +unique or primary key constraints on table "match_options" +""" +enum match_options_constraint { + """ + unique or primary key constraint on columns "id" + """ + match_options_pkey +} + +""" +input type for incrementing numeric columns in table "match_options" +""" +input match_options_inc_input { + auto_cancel_duration: Int + best_of: Int + live_match_timeout: Int + mr: Int + number_of_substitutes: Int + round_restart_delay: Int + tv_delay: Int + veto_pick_timeout: Int +} + +""" +input type for inserting data into table "match_options" +""" +input match_options_insert_input { + auto_cancel_duration: Int + auto_cancellation: Boolean + best_of: Int + camera_allow_teammates: Boolean + camera_required: Boolean + 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 + knife_round: Boolean + live_match_timeout: Int + map_pool: map_pools_obj_rel_insert_input + map_pool_id: uuid + map_veto: Boolean + match_mode: e_match_mode_enum + matches: matches_arr_rel_insert_input + mr: Int + number_of_substitutes: Int + overtime: Boolean + prefer_dedicated_server: Boolean + ready_setting: e_ready_settings_enum + region_veto: Boolean + regions: [String!] + round_restart_delay: Int + tech_timeout_setting: e_timeout_settings_enum + timeout_setting: e_timeout_settings_enum + tournament: tournaments_obj_rel_insert_input + tournament_bracket: tournament_brackets_obj_rel_insert_input + tournament_stage: tournament_stages_obj_rel_insert_input + tv_delay: Int + type: e_match_types_enum + veto_pick_timeout: Int +} + +"""aggregate max on columns""" +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 + map_pool_id: uuid + mr: Int + number_of_substitutes: Int + regions: [String!] + round_restart_delay: Int + tv_delay: Int + 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 + map_pool_id: uuid + mr: Int + number_of_substitutes: Int + regions: [String!] + round_restart_delay: Int + tv_delay: Int + 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" +""" +type match_options_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [match_options!]! +} + +""" +input type for inserting object relation for remote table "match_options" +""" +input match_options_obj_rel_insert_input { + data: match_options_insert_input! + + """upsert condition""" + on_conflict: match_options_on_conflict +} + +""" +on_conflict condition type for table "match_options" +""" +input match_options_on_conflict { + constraint: match_options_constraint! + update_columns: [match_options_update_column!]! = [] + where: match_options_bool_exp +} + +"""Ordering options when selecting data from "match_options".""" +input match_options_order_by { + auto_cancel_duration: order_by + auto_cancellation: order_by + best_of: order_by + camera_allow_teammates: order_by + camera_required: 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 + invite_code: order_by + knife_round: order_by + live_match_timeout: order_by + map_pool: map_pools_order_by + map_pool_id: order_by + map_veto: order_by + match_mode: order_by + matches_aggregate: matches_aggregate_order_by + mr: order_by + number_of_substitutes: order_by + overtime: order_by + prefer_dedicated_server: order_by + ready_setting: order_by + region_veto: order_by + regions: order_by + round_restart_delay: order_by + tech_timeout_setting: order_by + timeout_setting: order_by + tournament: tournaments_order_by + tournament_bracket: tournament_brackets_order_by + tournament_stage: tournament_stages_order_by + tv_delay: order_by + type: order_by + veto_pick_timeout: order_by +} + +"""primary key columns input for table: match_options""" +input match_options_pk_columns_input { + id: uuid! +} + +""" +select columns of table "match_options" +""" +enum match_options_select_column { + """column name""" + auto_cancel_duration + + """column name""" + auto_cancellation + + """column name""" + best_of + + """column name""" + camera_allow_teammates + + """column name""" + camera_required + + """column name""" + check_in_setting + + """column name""" + coaches + + """column name""" + default_models + + """column name""" + game_mode_id + + """column name""" + halftime_pausematch + + """column name""" + id + + """column name""" + invite_code + + """column name""" + knife_round + + """column name""" + live_match_timeout + + """column name""" + map_pool_id + + """column name""" + map_veto + + """column name""" + match_mode + + """column name""" + mr + + """column name""" + number_of_substitutes + + """column name""" + overtime + + """column name""" + prefer_dedicated_server + + """column name""" + ready_setting + + """column name""" + region_veto + + """column name""" + regions + + """column name""" + round_restart_delay + + """column name""" + tech_timeout_setting + + """column name""" + timeout_setting + + """column name""" + tv_delay + + """column name""" + type + + """column name""" + 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" +""" +input match_options_set_input { + auto_cancel_duration: Int + auto_cancellation: Boolean + best_of: Int + camera_allow_teammates: Boolean + camera_required: Boolean + 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 + knife_round: Boolean + live_match_timeout: Int + map_pool_id: uuid + map_veto: Boolean + match_mode: e_match_mode_enum + mr: Int + number_of_substitutes: Int + overtime: Boolean + prefer_dedicated_server: Boolean + ready_setting: e_ready_settings_enum + region_veto: Boolean + regions: [String!] + round_restart_delay: Int + tech_timeout_setting: e_timeout_settings_enum + timeout_setting: e_timeout_settings_enum + tv_delay: Int + type: e_match_types_enum + veto_pick_timeout: Int +} + +"""aggregate stddev on columns""" +type match_options_stddev_fields { + auto_cancel_duration: Float + best_of: Float + live_match_timeout: Float + mr: Float + number_of_substitutes: Float + round_restart_delay: Float + tv_delay: Float + 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 + best_of: Float + live_match_timeout: Float + mr: Float + number_of_substitutes: Float + round_restart_delay: Float + tv_delay: Float + 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 + best_of: Float + live_match_timeout: Float + mr: Float + number_of_substitutes: Float + round_restart_delay: Float + tv_delay: Float + 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" +""" +input match_options_stream_cursor_input { + """Stream column input with initial value""" + initial_value: match_options_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input match_options_stream_cursor_value_input { + auto_cancel_duration: Int + auto_cancellation: Boolean + best_of: Int + camera_allow_teammates: Boolean + camera_required: Boolean + 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 + knife_round: Boolean + live_match_timeout: Int + map_pool_id: uuid + map_veto: Boolean + match_mode: e_match_mode_enum + mr: Int + number_of_substitutes: Int + overtime: Boolean + prefer_dedicated_server: Boolean + ready_setting: e_ready_settings_enum + region_veto: Boolean + regions: [String!] + round_restart_delay: Int + tech_timeout_setting: e_timeout_settings_enum + timeout_setting: e_timeout_settings_enum + tv_delay: Int + type: e_match_types_enum + veto_pick_timeout: Int +} + +"""aggregate sum on columns""" +type match_options_sum_fields { + auto_cancel_duration: Int + best_of: Int + live_match_timeout: Int + mr: Int + number_of_substitutes: Int + round_restart_delay: Int + tv_delay: Int + 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" +""" +enum match_options_update_column { + """column name""" + auto_cancel_duration + + """column name""" + auto_cancellation + + """column name""" + best_of + + """column name""" + camera_allow_teammates + + """column name""" + camera_required + + """column name""" + check_in_setting + + """column name""" + coaches + + """column name""" + default_models + + """column name""" + game_mode_id + + """column name""" + halftime_pausematch + + """column name""" + id + + """column name""" + invite_code + + """column name""" + knife_round + + """column name""" + live_match_timeout + + """column name""" + map_pool_id + + """column name""" + map_veto + + """column name""" + match_mode + + """column name""" + mr + + """column name""" + number_of_substitutes + + """column name""" + overtime + + """column name""" + prefer_dedicated_server + + """column name""" + ready_setting + + """column name""" + region_veto + + """column name""" + regions + + """column name""" + round_restart_delay + + """column name""" + tech_timeout_setting + + """column name""" + timeout_setting + + """column name""" + tv_delay + + """column name""" + type + + """column name""" + veto_pick_timeout +} + +input match_options_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: match_options_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: match_options_set_input + + """filter the rows which have to be updated""" + where: match_options_bool_exp! +} + +"""aggregate var_pop on columns""" +type match_options_var_pop_fields { + auto_cancel_duration: Float + best_of: Float + live_match_timeout: Float + mr: Float + number_of_substitutes: Float + round_restart_delay: Float + tv_delay: Float + 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 + best_of: Float + live_match_timeout: Float + mr: Float + number_of_substitutes: Float + round_restart_delay: Float + tv_delay: Float + 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 + best_of: Float + live_match_timeout: Float + mr: Float + number_of_substitutes: Float + round_restart_delay: Float + tv_delay: Float + 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" +""" +type match_region_veto_picks { + auto_picked: Boolean! + created_at: timestamptz! + id: uuid! + + """An object relationship""" + match: matches! + match_id: uuid! + + """An object relationship""" + match_lineup: match_lineups! + match_lineup_id: uuid! + region: String! + type: e_veto_pick_types_enum! +} + +""" +aggregated selection of "match_region_veto_picks" +""" +type match_region_veto_picks_aggregate { + aggregate: match_region_veto_picks_aggregate_fields + nodes: [match_region_veto_picks!]! +} + +input match_region_veto_picks_aggregate_bool_exp { + bool_and: match_region_veto_picks_aggregate_bool_exp_bool_and + bool_or: match_region_veto_picks_aggregate_bool_exp_bool_or + count: match_region_veto_picks_aggregate_bool_exp_count +} + +input match_region_veto_picks_aggregate_bool_exp_bool_and { + arguments: match_region_veto_picks_select_column_match_region_veto_picks_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: match_region_veto_picks_bool_exp + predicate: Boolean_comparison_exp! +} + +input match_region_veto_picks_aggregate_bool_exp_bool_or { + arguments: match_region_veto_picks_select_column_match_region_veto_picks_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: match_region_veto_picks_bool_exp + predicate: Boolean_comparison_exp! +} + +input match_region_veto_picks_aggregate_bool_exp_count { + arguments: [match_region_veto_picks_select_column!] + distinct: Boolean + filter: match_region_veto_picks_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "match_region_veto_picks" +""" +type match_region_veto_picks_aggregate_fields { + count(columns: [match_region_veto_picks_select_column!], distinct: Boolean): Int! + max: match_region_veto_picks_max_fields + min: match_region_veto_picks_min_fields +} + +""" +order by aggregate values of table "match_region_veto_picks" +""" +input match_region_veto_picks_aggregate_order_by { + count: order_by + max: match_region_veto_picks_max_order_by + min: match_region_veto_picks_min_order_by +} + +""" +input type for inserting array relation for remote table "match_region_veto_picks" +""" +input match_region_veto_picks_arr_rel_insert_input { + data: [match_region_veto_picks_insert_input!]! + + """upsert condition""" + on_conflict: match_region_veto_picks_on_conflict +} + +""" +Boolean expression to filter rows from the table "match_region_veto_picks". All fields are combined with a logical 'AND'. +""" +input match_region_veto_picks_bool_exp { + _and: [match_region_veto_picks_bool_exp!] + _not: match_region_veto_picks_bool_exp + _or: [match_region_veto_picks_bool_exp!] + auto_picked: Boolean_comparison_exp + created_at: timestamptz_comparison_exp + id: uuid_comparison_exp + match: matches_bool_exp + match_id: uuid_comparison_exp + match_lineup: match_lineups_bool_exp + match_lineup_id: uuid_comparison_exp + region: String_comparison_exp + type: e_veto_pick_types_enum_comparison_exp +} + +""" +unique or primary key constraints on table "match_region_veto_picks" +""" +enum match_region_veto_picks_constraint { + """ + unique or primary key constraint on columns "region", "match_id" + """ + match_region_veto_picks_match_id_region_key + + """ + unique or primary key constraint on columns "id" + """ + match_region_veto_picks_pkey +} + +""" +input type for inserting data into table "match_region_veto_picks" +""" +input match_region_veto_picks_insert_input { + auto_picked: Boolean + created_at: timestamptz + id: uuid + match: matches_obj_rel_insert_input + match_id: uuid + match_lineup: match_lineups_obj_rel_insert_input + match_lineup_id: uuid + region: String + type: e_veto_pick_types_enum +} + +"""aggregate max on columns""" +type match_region_veto_picks_max_fields { + created_at: timestamptz + id: uuid + match_id: uuid + match_lineup_id: uuid + region: String +} + +""" +order by max() on columns of table "match_region_veto_picks" +""" +input match_region_veto_picks_max_order_by { + created_at: order_by + id: order_by + match_id: order_by + match_lineup_id: order_by + region: order_by +} + +"""aggregate min on columns""" +type match_region_veto_picks_min_fields { + created_at: timestamptz + id: uuid + match_id: uuid + match_lineup_id: uuid + region: String +} + +""" +order by min() on columns of table "match_region_veto_picks" +""" +input match_region_veto_picks_min_order_by { + created_at: order_by + id: order_by + match_id: order_by + match_lineup_id: order_by + region: order_by +} + +""" +response of any mutation on the table "match_region_veto_picks" +""" +type match_region_veto_picks_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [match_region_veto_picks!]! +} + +""" +on_conflict condition type for table "match_region_veto_picks" +""" +input match_region_veto_picks_on_conflict { + constraint: match_region_veto_picks_constraint! + update_columns: [match_region_veto_picks_update_column!]! = [] + where: match_region_veto_picks_bool_exp +} + +"""Ordering options when selecting data from "match_region_veto_picks".""" +input match_region_veto_picks_order_by { + auto_picked: order_by + created_at: order_by + id: order_by + match: matches_order_by + match_id: order_by + match_lineup: match_lineups_order_by + match_lineup_id: order_by + region: order_by + type: order_by +} + +"""primary key columns input for table: match_region_veto_picks""" +input match_region_veto_picks_pk_columns_input { + id: uuid! +} + +""" +select columns of table "match_region_veto_picks" +""" +enum match_region_veto_picks_select_column { + """column name""" + auto_picked + + """column name""" + created_at + + """column name""" + id + + """column name""" + match_id + + """column name""" + match_lineup_id + + """column name""" + region + + """column name""" + type +} + +""" +select "match_region_veto_picks_aggregate_bool_exp_bool_and_arguments_columns" columns of table "match_region_veto_picks" +""" +enum match_region_veto_picks_select_column_match_region_veto_picks_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + auto_picked +} + +""" +select "match_region_veto_picks_aggregate_bool_exp_bool_or_arguments_columns" columns of table "match_region_veto_picks" +""" +enum match_region_veto_picks_select_column_match_region_veto_picks_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + auto_picked +} + +""" +input type for updating data in table "match_region_veto_picks" +""" +input match_region_veto_picks_set_input { + auto_picked: Boolean + created_at: timestamptz + id: uuid + match_id: uuid + match_lineup_id: uuid + region: String + type: e_veto_pick_types_enum +} + +""" +Streaming cursor of the table "match_region_veto_picks" +""" +input match_region_veto_picks_stream_cursor_input { + """Stream column input with initial value""" + initial_value: match_region_veto_picks_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input match_region_veto_picks_stream_cursor_value_input { + auto_picked: Boolean + created_at: timestamptz + id: uuid + match_id: uuid + match_lineup_id: uuid + region: String + type: e_veto_pick_types_enum +} + +""" +update columns of table "match_region_veto_picks" +""" +enum match_region_veto_picks_update_column { + """column name""" + auto_picked + + """column name""" + created_at + + """column name""" + id + + """column name""" + match_id + + """column name""" + match_lineup_id + + """column name""" + region + + """column name""" + type +} + +input match_region_veto_picks_updates { + """sets the columns of the filtered rows to the given values""" + _set: match_region_veto_picks_set_input + + """filter the rows which have to be updated""" + where: match_region_veto_picks_bool_exp! +} + +""" +columns and relationships of "match_streams" +""" +type match_streams { + autodirector: Boolean! + error_message: String + + """An object relationship""" + game_server_node: game_server_nodes + game_server_node_id: String + id: uuid! + is_game_streamer: Boolean! + is_live: Boolean! + k8s_service_name: String + last_status_at: timestamptz + link: String! + + """An object relationship""" + match: matches! + match_id: uuid! + mode: String! + priority: Int! + status: String + status_history( + """JSON select path""" + path: String + ): jsonb! + stream_url: String + title: String! +} + +""" +aggregated selection of "match_streams" +""" +type match_streams_aggregate { + aggregate: match_streams_aggregate_fields + nodes: [match_streams!]! +} + +input match_streams_aggregate_bool_exp { + bool_and: match_streams_aggregate_bool_exp_bool_and + bool_or: match_streams_aggregate_bool_exp_bool_or + count: match_streams_aggregate_bool_exp_count +} + +input match_streams_aggregate_bool_exp_bool_and { + arguments: match_streams_select_column_match_streams_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: match_streams_bool_exp + predicate: Boolean_comparison_exp! +} + +input match_streams_aggregate_bool_exp_bool_or { + arguments: match_streams_select_column_match_streams_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: match_streams_bool_exp + predicate: Boolean_comparison_exp! +} + +input match_streams_aggregate_bool_exp_count { + arguments: [match_streams_select_column!] + distinct: Boolean + filter: match_streams_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "match_streams" +""" +type match_streams_aggregate_fields { + avg: match_streams_avg_fields + count(columns: [match_streams_select_column!], distinct: Boolean): Int! + max: match_streams_max_fields + min: match_streams_min_fields + stddev: match_streams_stddev_fields + stddev_pop: match_streams_stddev_pop_fields + stddev_samp: match_streams_stddev_samp_fields + sum: match_streams_sum_fields + var_pop: match_streams_var_pop_fields + var_samp: match_streams_var_samp_fields + variance: match_streams_variance_fields +} + +""" +order by aggregate values of table "match_streams" +""" +input match_streams_aggregate_order_by { + avg: match_streams_avg_order_by + count: order_by + max: match_streams_max_order_by + min: match_streams_min_order_by + stddev: match_streams_stddev_order_by + stddev_pop: match_streams_stddev_pop_order_by + stddev_samp: match_streams_stddev_samp_order_by + sum: match_streams_sum_order_by + var_pop: match_streams_var_pop_order_by + var_samp: match_streams_var_samp_order_by + variance: match_streams_variance_order_by +} + +"""append existing jsonb value of filtered columns with new jsonb value""" +input match_streams_append_input { + status_history: jsonb +} + +""" +input type for inserting array relation for remote table "match_streams" +""" +input match_streams_arr_rel_insert_input { + data: [match_streams_insert_input!]! + + """upsert condition""" + on_conflict: match_streams_on_conflict +} + +"""aggregate avg on columns""" +type match_streams_avg_fields { + priority: Float +} + +""" +order by avg() on columns of table "match_streams" +""" +input match_streams_avg_order_by { + priority: order_by +} + +""" +Boolean expression to filter rows from the table "match_streams". All fields are combined with a logical 'AND'. +""" +input match_streams_bool_exp { + _and: [match_streams_bool_exp!] + _not: match_streams_bool_exp + _or: [match_streams_bool_exp!] + autodirector: Boolean_comparison_exp + error_message: String_comparison_exp + game_server_node: game_server_nodes_bool_exp + game_server_node_id: String_comparison_exp + id: uuid_comparison_exp + is_game_streamer: Boolean_comparison_exp + is_live: Boolean_comparison_exp + k8s_service_name: String_comparison_exp + last_status_at: timestamptz_comparison_exp + link: String_comparison_exp + match: matches_bool_exp + match_id: uuid_comparison_exp + mode: String_comparison_exp + priority: Int_comparison_exp + status: String_comparison_exp + status_history: jsonb_comparison_exp + stream_url: String_comparison_exp + title: String_comparison_exp +} + +""" +unique or primary key constraints on table "match_streams" +""" +enum match_streams_constraint { + """ + unique or primary key constraint on columns "id" + """ + match_streams_pkey +} + +""" +delete the field or element with specified path (for JSON arrays, negative integers count from the end) +""" +input match_streams_delete_at_path_input { + status_history: [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 match_streams_delete_elem_input { + status_history: Int +} + +""" +delete key/value pair or string element. key/value pairs are matched based on their key value +""" +input match_streams_delete_key_input { + status_history: String +} + +""" +input type for incrementing numeric columns in table "match_streams" +""" +input match_streams_inc_input { + priority: Int +} + +""" +input type for inserting data into table "match_streams" +""" +input match_streams_insert_input { + autodirector: Boolean + error_message: String + game_server_node: game_server_nodes_obj_rel_insert_input + game_server_node_id: String + id: uuid + is_game_streamer: Boolean + is_live: Boolean + k8s_service_name: String + last_status_at: timestamptz + link: String + match: matches_obj_rel_insert_input + match_id: uuid + mode: String + priority: Int + status: String + status_history: jsonb + stream_url: String + title: String +} + +"""aggregate max on columns""" +type match_streams_max_fields { + error_message: String + game_server_node_id: String + id: uuid + k8s_service_name: String + last_status_at: timestamptz + link: String + match_id: uuid + mode: String + priority: Int + status: String + stream_url: String + title: String +} + +""" +order by max() on columns of table "match_streams" +""" +input match_streams_max_order_by { + error_message: order_by + game_server_node_id: order_by + id: order_by + k8s_service_name: order_by + last_status_at: order_by + link: order_by + match_id: order_by + mode: order_by + priority: order_by + status: order_by + stream_url: order_by + title: order_by +} + +"""aggregate min on columns""" +type match_streams_min_fields { + error_message: String + game_server_node_id: String + id: uuid + k8s_service_name: String + last_status_at: timestamptz + link: String + match_id: uuid + mode: String + priority: Int + status: String + stream_url: String + title: String +} + +""" +order by min() on columns of table "match_streams" +""" +input match_streams_min_order_by { + error_message: order_by + game_server_node_id: order_by + id: order_by + k8s_service_name: order_by + last_status_at: order_by + link: order_by + match_id: order_by + mode: order_by + priority: order_by + status: order_by + stream_url: order_by + title: order_by +} + +""" +response of any mutation on the table "match_streams" +""" +type match_streams_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [match_streams!]! +} + +""" +on_conflict condition type for table "match_streams" +""" +input match_streams_on_conflict { + constraint: match_streams_constraint! + update_columns: [match_streams_update_column!]! = [] + where: match_streams_bool_exp +} + +"""Ordering options when selecting data from "match_streams".""" +input match_streams_order_by { + autodirector: order_by + error_message: order_by + game_server_node: game_server_nodes_order_by + game_server_node_id: order_by + id: order_by + is_game_streamer: order_by + is_live: order_by + k8s_service_name: order_by + last_status_at: order_by + link: order_by + match: matches_order_by + match_id: order_by + mode: order_by + priority: order_by + status: order_by + status_history: order_by + stream_url: order_by + title: order_by +} + +"""primary key columns input for table: match_streams""" +input match_streams_pk_columns_input { + id: uuid! +} + +"""prepend existing jsonb value of filtered columns with new jsonb value""" +input match_streams_prepend_input { + status_history: jsonb +} + +""" +select columns of table "match_streams" +""" +enum match_streams_select_column { + """column name""" + autodirector + + """column name""" + error_message + + """column name""" + game_server_node_id + + """column name""" + id + + """column name""" + is_game_streamer + + """column name""" + is_live + + """column name""" + k8s_service_name + + """column name""" + last_status_at + + """column name""" + link + + """column name""" + match_id + + """column name""" + mode + + """column name""" + priority + + """column name""" + status + + """column name""" + status_history + + """column name""" + stream_url + + """column name""" + title +} + +""" +select "match_streams_aggregate_bool_exp_bool_and_arguments_columns" columns of table "match_streams" +""" +enum match_streams_select_column_match_streams_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + autodirector + + """column name""" + is_game_streamer + + """column name""" + is_live +} + +""" +select "match_streams_aggregate_bool_exp_bool_or_arguments_columns" columns of table "match_streams" +""" +enum match_streams_select_column_match_streams_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + autodirector + + """column name""" + is_game_streamer + + """column name""" + is_live +} + +""" +input type for updating data in table "match_streams" +""" +input match_streams_set_input { + autodirector: Boolean + error_message: String + game_server_node_id: String + id: uuid + is_game_streamer: Boolean + is_live: Boolean + k8s_service_name: String + last_status_at: timestamptz + link: String + match_id: uuid + mode: String + priority: Int + status: String + status_history: jsonb + stream_url: String + title: String +} + +"""aggregate stddev on columns""" +type match_streams_stddev_fields { + priority: Float +} + +""" +order by stddev() on columns of table "match_streams" +""" +input match_streams_stddev_order_by { + priority: order_by +} + +"""aggregate stddev_pop on columns""" +type match_streams_stddev_pop_fields { + priority: Float +} + +""" +order by stddev_pop() on columns of table "match_streams" +""" +input match_streams_stddev_pop_order_by { + priority: order_by +} + +"""aggregate stddev_samp on columns""" +type match_streams_stddev_samp_fields { + priority: Float +} + +""" +order by stddev_samp() on columns of table "match_streams" +""" +input match_streams_stddev_samp_order_by { + priority: order_by +} + +""" +Streaming cursor of the table "match_streams" +""" +input match_streams_stream_cursor_input { + """Stream column input with initial value""" + initial_value: match_streams_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input match_streams_stream_cursor_value_input { + autodirector: Boolean + error_message: String + game_server_node_id: String + id: uuid + is_game_streamer: Boolean + is_live: Boolean + k8s_service_name: String + last_status_at: timestamptz + link: String + match_id: uuid + mode: String + priority: Int + status: String + status_history: jsonb + stream_url: String + title: String +} + +"""aggregate sum on columns""" +type match_streams_sum_fields { + priority: Int +} + +""" +order by sum() on columns of table "match_streams" +""" +input match_streams_sum_order_by { + priority: order_by +} + +""" +update columns of table "match_streams" +""" +enum match_streams_update_column { + """column name""" + autodirector + + """column name""" + error_message + + """column name""" + game_server_node_id + + """column name""" + id + + """column name""" + is_game_streamer + + """column name""" + is_live + + """column name""" + k8s_service_name + + """column name""" + last_status_at + + """column name""" + link + + """column name""" + match_id + + """column name""" + mode + + """column name""" + priority + + """column name""" + status + + """column name""" + status_history + + """column name""" + stream_url + + """column name""" + title +} + +input match_streams_updates { + """append existing jsonb value of filtered columns with new jsonb value""" + _append: match_streams_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: match_streams_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: match_streams_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: match_streams_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: match_streams_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: match_streams_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: match_streams_set_input + + """filter the rows which have to be updated""" + where: match_streams_bool_exp! +} + +"""aggregate var_pop on columns""" +type match_streams_var_pop_fields { + priority: Float +} + +""" +order by var_pop() on columns of table "match_streams" +""" +input match_streams_var_pop_order_by { + priority: order_by +} + +"""aggregate var_samp on columns""" +type match_streams_var_samp_fields { + priority: Float +} + +""" +order by var_samp() on columns of table "match_streams" +""" +input match_streams_var_samp_order_by { + priority: order_by +} + +"""aggregate variance on columns""" +type match_streams_variance_fields { + priority: Float +} + +""" +order by variance() on columns of table "match_streams" +""" +input match_streams_variance_order_by { + priority: order_by +} + +""" +columns and relationships of "match_type_cfgs" +""" +type match_type_cfgs { + cfg: String! + type: e_game_cfg_types_enum! +} + +""" +aggregated selection of "match_type_cfgs" +""" +type match_type_cfgs_aggregate { + aggregate: match_type_cfgs_aggregate_fields + nodes: [match_type_cfgs!]! +} + +""" +aggregate fields of "match_type_cfgs" +""" +type match_type_cfgs_aggregate_fields { + count(columns: [match_type_cfgs_select_column!], distinct: Boolean): Int! + max: match_type_cfgs_max_fields + min: match_type_cfgs_min_fields +} + +""" +Boolean expression to filter rows from the table "match_type_cfgs". All fields are combined with a logical 'AND'. +""" +input match_type_cfgs_bool_exp { + _and: [match_type_cfgs_bool_exp!] + _not: match_type_cfgs_bool_exp + _or: [match_type_cfgs_bool_exp!] + cfg: String_comparison_exp + type: e_game_cfg_types_enum_comparison_exp +} + +""" +unique or primary key constraints on table "match_type_cfgs" +""" +enum match_type_cfgs_constraint { + """ + unique or primary key constraint on columns "type" + """ + match_type_cfgs_pkey +} + +""" +input type for inserting data into table "match_type_cfgs" +""" +input match_type_cfgs_insert_input { + cfg: String + type: e_game_cfg_types_enum +} + +"""aggregate max on columns""" +type match_type_cfgs_max_fields { + cfg: String +} + +"""aggregate min on columns""" +type match_type_cfgs_min_fields { + cfg: String +} + +""" +response of any mutation on the table "match_type_cfgs" +""" +type match_type_cfgs_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [match_type_cfgs!]! +} + +""" +on_conflict condition type for table "match_type_cfgs" +""" +input match_type_cfgs_on_conflict { + constraint: match_type_cfgs_constraint! + update_columns: [match_type_cfgs_update_column!]! = [] + where: match_type_cfgs_bool_exp +} + +"""Ordering options when selecting data from "match_type_cfgs".""" +input match_type_cfgs_order_by { + cfg: order_by + type: order_by +} + +"""primary key columns input for table: match_type_cfgs""" +input match_type_cfgs_pk_columns_input { + type: e_game_cfg_types_enum! +} + +""" +select columns of table "match_type_cfgs" +""" +enum match_type_cfgs_select_column { + """column name""" + cfg + + """column name""" + type +} + +""" +input type for updating data in table "match_type_cfgs" +""" +input match_type_cfgs_set_input { + cfg: String + type: e_game_cfg_types_enum +} + +""" +Streaming cursor of the table "match_type_cfgs" +""" +input match_type_cfgs_stream_cursor_input { + """Stream column input with initial value""" + initial_value: match_type_cfgs_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input match_type_cfgs_stream_cursor_value_input { + cfg: String + type: e_game_cfg_types_enum +} + +""" +update columns of table "match_type_cfgs" +""" +enum match_type_cfgs_update_column { + """column name""" + cfg + + """column name""" + type +} + +input match_type_cfgs_updates { + """sets the columns of the filtered rows to the given values""" + _set: match_type_cfgs_set_input + + """filter the rows which have to be updated""" + where: match_type_cfgs_bool_exp! +} + +""" +columns and relationships of "matches" +""" +type matches { + """ + A computed field, executes function "can_assign_server_to_match" + """ + can_assign_server: Boolean + + """ + A computed field, executes function "can_cancel_match" + """ + can_cancel: Boolean + + """ + A computed field, executes function "can_check_in" + """ + can_check_in: Boolean + + """ + A computed field, executes function "can_reassign_winner" + """ + can_reassign_winner: Boolean + + """ + A computed field, executes function "can_schedule_match" + """ + can_schedule: Boolean + + """ + A computed field, executes function "can_start_match" + """ + can_start: Boolean + + """ + A computed field, executes function "can_stream_live" + """ + can_stream_live: Boolean + + """ + A computed field, executes function "can_stream_tv" + """ + can_stream_tv: Boolean + cancels_at: timestamptz + + """An array relationship""" + clutches( + """distinct select on columns""" + distinct_on: [v_match_clutches_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_match_clutches_order_by!] + + """filter the rows returned""" + where: v_match_clutches_bool_exp + ): [v_match_clutches!]! + + """An aggregate relationship""" + clutches_aggregate( + """distinct select on columns""" + distinct_on: [v_match_clutches_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_match_clutches_order_by!] + + """filter the rows returned""" + where: v_match_clutches_bool_exp + ): v_match_clutches_aggregate! + + """ + A computed field, executes function "get_match_connection_link" + """ + connection_link: String + + """ + A computed field, executes function "get_match_connection_string" + """ + connection_string: String + counts_toward_ranking: Boolean! + created_at: timestamptz! + + """ + A computed field, executes function "get_current_match_map" + """ + current_match_map_id: uuid + + """An array relationship""" + demos( + """distinct select on columns""" + distinct_on: [match_map_demos_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_map_demos_order_by!] + + """filter the rows returned""" + where: match_map_demos_bool_exp + ): [match_map_demos!]! + + """An aggregate relationship""" + demos_aggregate( + """distinct select on columns""" + distinct_on: [match_map_demos_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_map_demos_order_by!] + + """filter the rows returned""" + where: match_map_demos_bool_exp + ): match_map_demos_aggregate! + + """An array relationship""" + draft_games( + """distinct select on columns""" + distinct_on: [draft_games_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: [draft_games_order_by!] + + """filter the rows returned""" + where: draft_games_bool_exp + ): [draft_games!]! + + """An aggregate relationship""" + draft_games_aggregate( + """distinct select on columns""" + distinct_on: [draft_games_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: [draft_games_order_by!] + + """filter the rows returned""" + where: draft_games_bool_exp + ): draft_games_aggregate! + + """An object relationship""" + e_match_status: e_match_status! + + """An object relationship""" + e_region: server_regions + effective_at: timestamptz + + """An array relationship""" + elo_changes( + """distinct select on columns""" + distinct_on: [v_player_elo_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_elo_order_by!] + + """filter the rows returned""" + where: v_player_elo_bool_exp + ): [v_player_elo!]! + + """An aggregate relationship""" + elo_changes_aggregate( + """distinct select on columns""" + distinct_on: [v_player_elo_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_elo_order_by!] + + """filter the rows returned""" + where: v_player_elo_bool_exp + ): v_player_elo_aggregate! + ended_at: timestamptz + external_id: String + id: uuid! + + """ + A computed field, executes function "match_invite_code" + """ + invite_code: String + + """ + A computed field, executes function "is_captain" + """ + is_captain: Boolean + + """ + A computed field, executes function "is_coach" + """ + is_coach: Boolean + + """ + A computed field, executes function "is_friend_in_match_lineup" + """ + is_friend_in_match_lineup: Boolean + + """ + A computed field, executes function "is_in_lineup" + """ + is_in_lineup: Boolean + + """ + A computed field, executes function "is_match_server_available" + """ + is_match_server_available: Boolean + + """ + A computed field, executes function "is_match_organizer" + """ + is_organizer: Boolean + + """ + A computed field, executes function "is_server_online" + """ + is_server_online: Boolean + + """ + A computed field, executes function "is_tournament_match" + """ + is_tournament_match: Boolean + label: String + + """An object relationship""" + lineup_1: match_lineups! + lineup_1_id: uuid! + + """An object relationship""" + lineup_2: match_lineups! + lineup_2_id: uuid! + + """ + A computed field, executes function "get_lineup_counts" + """ + lineup_counts( + """JSON select path""" + path: String + ): json + + """ + A computed field, executes function "get_map_veto_picking_lineup_id" + """ + map_veto_picking_lineup_id: uuid + + """An array relationship""" + map_veto_picks( + """distinct select on columns""" + distinct_on: [match_map_veto_picks_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_map_veto_picks_order_by!] + + """filter the rows returned""" + where: match_map_veto_picks_bool_exp + ): [match_map_veto_picks!]! + + """An aggregate relationship""" + map_veto_picks_aggregate( + """distinct select on columns""" + distinct_on: [match_map_veto_picks_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_map_veto_picks_order_by!] + + """filter the rows returned""" + where: match_map_veto_picks_bool_exp + ): match_map_veto_picks_aggregate! + + """ + A computed field, executes function "get_map_veto_type" + """ + map_veto_type: String + + """An array relationship""" + match_maps( + """distinct select on columns""" + distinct_on: [match_maps_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_maps_order_by!] + + """filter the rows returned""" + where: match_maps_bool_exp + ): [match_maps!]! + + """An aggregate relationship""" + match_maps_aggregate( + """distinct select on columns""" + distinct_on: [match_maps_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_maps_order_by!] + + """filter the rows returned""" + where: match_maps_bool_exp + ): match_maps_aggregate! + match_options_id: uuid + + """ + A computed field, executes function "match_max_players_per_lineup" + """ + max_players_per_lineup: Int + + """ + A computed field, executes function "match_min_players_per_lineup" + """ + min_players_per_lineup: Int + + """An array relationship""" + opening_duels( + """distinct select on columns""" + distinct_on: [v_match_player_opening_duels_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_match_player_opening_duels_order_by!] + + """filter the rows returned""" + where: v_match_player_opening_duels_bool_exp + ): [v_match_player_opening_duels!]! + + """An aggregate relationship""" + opening_duels_aggregate( + """distinct select on columns""" + distinct_on: [v_match_player_opening_duels_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_match_player_opening_duels_order_by!] + + """filter the rows returned""" + where: v_match_player_opening_duels_bool_exp + ): v_match_player_opening_duels_aggregate! + + """An object relationship""" + options: match_options + + """An object relationship""" + organizer: players + organizer_steam_id: bigint + password: String! + + """An array relationship""" + player_assists( + """distinct select on columns""" + distinct_on: [player_assists_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: [player_assists_order_by!] + + """filter the rows returned""" + where: player_assists_bool_exp + ): [player_assists!]! + + """An aggregate relationship""" + player_assists_aggregate( + """distinct select on columns""" + distinct_on: [player_assists_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: [player_assists_order_by!] + + """filter the rows returned""" + where: player_assists_bool_exp + ): player_assists_aggregate! + + """An array relationship""" + player_damages( + """distinct select on columns""" + distinct_on: [player_damages_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: [player_damages_order_by!] + + """filter the rows returned""" + where: player_damages_bool_exp + ): [player_damages!]! + + """An aggregate relationship""" + player_damages_aggregate( + """distinct select on columns""" + distinct_on: [player_damages_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: [player_damages_order_by!] + + """filter the rows returned""" + where: player_damages_bool_exp + ): player_damages_aggregate! + + """An array relationship""" + player_flashes( + """distinct select on columns""" + distinct_on: [player_flashes_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: [player_flashes_order_by!] + + """filter the rows returned""" + where: player_flashes_bool_exp + ): [player_flashes!]! + + """An aggregate relationship""" + player_flashes_aggregate( + """distinct select on columns""" + distinct_on: [player_flashes_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: [player_flashes_order_by!] + + """filter the rows returned""" + where: player_flashes_bool_exp + ): player_flashes_aggregate! + + """An array relationship""" + player_kills( + """distinct select on columns""" + distinct_on: [player_kills_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: [player_kills_order_by!] + + """filter the rows returned""" + where: player_kills_bool_exp + ): [player_kills!]! + + """An aggregate relationship""" + player_kills_aggregate( + """distinct select on columns""" + distinct_on: [player_kills_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: [player_kills_order_by!] + + """filter the rows returned""" + where: player_kills_bool_exp + ): player_kills_aggregate! + + """An array relationship""" + player_objectives( + """distinct select on columns""" + distinct_on: [player_objectives_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: [player_objectives_order_by!] + + """filter the rows returned""" + where: player_objectives_bool_exp + ): [player_objectives!]! + + """An aggregate relationship""" + player_objectives_aggregate( + """distinct select on columns""" + distinct_on: [player_objectives_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: [player_objectives_order_by!] + + """filter the rows returned""" + where: player_objectives_bool_exp + ): player_objectives_aggregate! + + """An array relationship""" + player_unused_utilities( + """distinct select on columns""" + distinct_on: [player_unused_utility_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: [player_unused_utility_order_by!] + + """filter the rows returned""" + where: player_unused_utility_bool_exp + ): [player_unused_utility!]! + + """An aggregate relationship""" + player_unused_utilities_aggregate( + """distinct select on columns""" + distinct_on: [player_unused_utility_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: [player_unused_utility_order_by!] + + """filter the rows returned""" + where: player_unused_utility_bool_exp + ): player_unused_utility_aggregate! + + """An array relationship""" + player_utility( + """distinct select on columns""" + distinct_on: [player_utility_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: [player_utility_order_by!] + + """filter the rows returned""" + where: player_utility_bool_exp + ): [player_utility!]! + + """An aggregate relationship""" + player_utility_aggregate( + """distinct select on columns""" + distinct_on: [player_utility_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: [player_utility_order_by!] + + """filter the rows returned""" + where: player_utility_bool_exp + ): player_utility_aggregate! + region: String + + """ + A computed field, executes function "get_region_veto_picking_lineup_id" + """ + region_veto_picking_lineup_id: uuid + + """An array relationship""" + region_veto_picks( + """distinct select on columns""" + distinct_on: [match_region_veto_picks_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_region_veto_picks_order_by!] + + """filter the rows returned""" + where: match_region_veto_picks_bool_exp + ): [match_region_veto_picks!]! + + """An aggregate relationship""" + region_veto_picks_aggregate( + """distinct select on columns""" + distinct_on: [match_region_veto_picks_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_region_veto_picks_order_by!] + + """filter the rows returned""" + where: match_region_veto_picks_bool_exp + ): match_region_veto_picks_aggregate! + + """ + A computed field, executes function "match_requested_organizer" + """ + requested_organizer: Boolean + scheduled_at: timestamptz + + """An object relationship""" + server: servers + server_error: String + server_id: uuid + + """ + A computed field, executes function "get_match_server_plugin_runtime" + """ + server_plugin_runtime: String + + """ + A computed field, executes function "get_match_server_region" + """ + server_region: String + + """ + A computed field, executes function "get_match_server_type" + """ + server_type: String + share_code: String + source: String! + started_at: timestamptz + status: e_match_status_enum! + + """An array relationship""" + streams( + """distinct select on columns""" + distinct_on: [match_streams_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_streams_order_by!] + + """filter the rows returned""" + where: match_streams_bool_exp + ): [match_streams!]! + + """An aggregate relationship""" + streams_aggregate( + """distinct select on columns""" + distinct_on: [match_streams_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_streams_order_by!] + + """filter the rows returned""" + where: match_streams_bool_exp + ): match_streams_aggregate! + + """ + A computed field, executes function "get_match_teams" + """ + teams( + """distinct select on columns""" + distinct_on: [teams_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [teams_order_by!] + + """filter the rows returned""" + where: teams_bool_exp + ): [teams!] + + """An array relationship""" + tournament_brackets( + """distinct select on columns""" + distinct_on: [tournament_brackets_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_brackets_order_by!] + + """filter the rows returned""" + where: tournament_brackets_bool_exp + ): [tournament_brackets!]! + + """An aggregate relationship""" + tournament_brackets_aggregate( + """distinct select on columns""" + distinct_on: [tournament_brackets_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_brackets_order_by!] + + """filter the rows returned""" + where: tournament_brackets_bool_exp + ): tournament_brackets_aggregate! + + """ + A computed field, executes function "get_match_tv_connection_string" + """ + tv_connection_string: String + veto_pick_expires_at: timestamptz + + """An object relationship""" + winner: match_lineups + winning_lineup_id: uuid +} + +""" +aggregated selection of "matches" +""" +type matches_aggregate { + aggregate: matches_aggregate_fields + nodes: [matches!]! +} + +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 + filter: matches_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "matches" +""" +type matches_aggregate_fields { + avg: matches_avg_fields + count(columns: [matches_select_column!], distinct: Boolean): Int! + max: matches_max_fields + min: matches_min_fields + stddev: matches_stddev_fields + stddev_pop: matches_stddev_pop_fields + stddev_samp: matches_stddev_samp_fields + sum: matches_sum_fields + var_pop: matches_var_pop_fields + var_samp: matches_var_samp_fields + variance: matches_variance_fields +} + +""" +order by aggregate values of table "matches" +""" +input matches_aggregate_order_by { + avg: matches_avg_order_by + count: order_by + max: matches_max_order_by + min: matches_min_order_by + stddev: matches_stddev_order_by + stddev_pop: matches_stddev_pop_order_by + stddev_samp: matches_stddev_samp_order_by + sum: matches_sum_order_by + var_pop: matches_var_pop_order_by + var_samp: matches_var_samp_order_by + variance: matches_variance_order_by +} + +""" +input type for inserting array relation for remote table "matches" +""" +input matches_arr_rel_insert_input { + data: [matches_insert_input!]! + + """upsert condition""" + on_conflict: matches_on_conflict +} + +"""aggregate avg on columns""" +type matches_avg_fields { + """ + A computed field, executes function "match_max_players_per_lineup" + """ + max_players_per_lineup: Int + + """ + A computed field, executes function "match_min_players_per_lineup" + """ + min_players_per_lineup: Int + organizer_steam_id: Float +} + +""" +order by avg() on columns of table "matches" +""" +input matches_avg_order_by { + organizer_steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "matches". All fields are combined with a logical 'AND'. +""" +input matches_bool_exp { + _and: [matches_bool_exp!] + _not: matches_bool_exp + _or: [matches_bool_exp!] + can_assign_server: Boolean_comparison_exp + can_cancel: Boolean_comparison_exp + can_check_in: Boolean_comparison_exp + can_reassign_winner: Boolean_comparison_exp + can_schedule: Boolean_comparison_exp + can_start: Boolean_comparison_exp + can_stream_live: Boolean_comparison_exp + can_stream_tv: Boolean_comparison_exp + cancels_at: timestamptz_comparison_exp + clutches: v_match_clutches_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 + demos_aggregate: match_map_demos_aggregate_bool_exp + draft_games: draft_games_bool_exp + draft_games_aggregate: draft_games_aggregate_bool_exp + e_match_status: e_match_status_bool_exp + e_region: server_regions_bool_exp + effective_at: timestamptz_comparison_exp + elo_changes: v_player_elo_bool_exp + elo_changes_aggregate: v_player_elo_aggregate_bool_exp + ended_at: timestamptz_comparison_exp + external_id: String_comparison_exp + id: uuid_comparison_exp + invite_code: String_comparison_exp + is_captain: Boolean_comparison_exp + is_coach: Boolean_comparison_exp + is_friend_in_match_lineup: Boolean_comparison_exp + is_in_lineup: Boolean_comparison_exp + is_match_server_available: Boolean_comparison_exp + is_organizer: Boolean_comparison_exp + is_server_online: Boolean_comparison_exp + is_tournament_match: Boolean_comparison_exp + label: String_comparison_exp + lineup_1: match_lineups_bool_exp + lineup_1_id: uuid_comparison_exp + lineup_2: match_lineups_bool_exp + lineup_2_id: uuid_comparison_exp + lineup_counts: json_comparison_exp + map_veto_picking_lineup_id: uuid_comparison_exp + map_veto_picks: match_map_veto_picks_bool_exp + map_veto_picks_aggregate: match_map_veto_picks_aggregate_bool_exp + map_veto_type: String_comparison_exp + match_maps: match_maps_bool_exp + match_maps_aggregate: match_maps_aggregate_bool_exp + match_options_id: uuid_comparison_exp + max_players_per_lineup: Int_comparison_exp + min_players_per_lineup: Int_comparison_exp + opening_duels: v_match_player_opening_duels_bool_exp + opening_duels_aggregate: v_match_player_opening_duels_aggregate_bool_exp + options: match_options_bool_exp + organizer: players_bool_exp + organizer_steam_id: bigint_comparison_exp + password: String_comparison_exp + player_assists: player_assists_bool_exp + player_assists_aggregate: player_assists_aggregate_bool_exp + player_damages: player_damages_bool_exp + player_damages_aggregate: player_damages_aggregate_bool_exp + player_flashes: player_flashes_bool_exp + player_flashes_aggregate: player_flashes_aggregate_bool_exp + player_kills: player_kills_bool_exp + player_kills_aggregate: player_kills_aggregate_bool_exp + player_objectives: player_objectives_bool_exp + player_objectives_aggregate: player_objectives_aggregate_bool_exp + player_unused_utilities: player_unused_utility_bool_exp + player_unused_utilities_aggregate: player_unused_utility_aggregate_bool_exp + player_utility: player_utility_bool_exp + player_utility_aggregate: player_utility_aggregate_bool_exp + region: String_comparison_exp + region_veto_picking_lineup_id: uuid_comparison_exp + region_veto_picks: match_region_veto_picks_bool_exp + region_veto_picks_aggregate: match_region_veto_picks_aggregate_bool_exp + requested_organizer: Boolean_comparison_exp + scheduled_at: timestamptz_comparison_exp + server: servers_bool_exp + server_error: String_comparison_exp + server_id: uuid_comparison_exp + server_plugin_runtime: String_comparison_exp + server_region: String_comparison_exp + server_type: String_comparison_exp + share_code: String_comparison_exp + source: String_comparison_exp + started_at: timestamptz_comparison_exp + status: e_match_status_enum_comparison_exp + streams: match_streams_bool_exp + streams_aggregate: match_streams_aggregate_bool_exp + teams: teams_bool_exp + tournament_brackets: tournament_brackets_bool_exp + tournament_brackets_aggregate: tournament_brackets_aggregate_bool_exp + tv_connection_string: String_comparison_exp + veto_pick_expires_at: timestamptz_comparison_exp + winner: match_lineups_bool_exp + winning_lineup_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "matches" +""" +enum matches_constraint { + """ + unique or primary key constraint on columns "lineup_1_id" + """ + matches_lineup_1_id_key + + """ + unique or primary key constraint on columns "lineup_2_id", "lineup_1_id" + """ + matches_lineup_1_id_lineup_2_id_key + + """ + unique or primary key constraint on columns "lineup_2_id" + """ + matches_lineup_2_id_key + + """ + unique or primary key constraint on columns "id" + """ + matches_pkey + + """ + unique or primary key constraint on columns "external_id", "source" + """ + uq_matches_source_external_id +} + +""" +input type for incrementing numeric columns in table "matches" +""" +input matches_inc_input { + organizer_steam_id: bigint +} + +""" +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 + e_match_status: e_match_status_obj_rel_insert_input + e_region: server_regions_obj_rel_insert_input + elo_changes: v_player_elo_arr_rel_insert_input + ended_at: timestamptz + external_id: String + id: uuid + label: String + lineup_1: match_lineups_obj_rel_insert_input + lineup_1_id: uuid + lineup_2: match_lineups_obj_rel_insert_input + lineup_2_id: uuid + map_veto_picks: match_map_veto_picks_arr_rel_insert_input + match_maps: match_maps_arr_rel_insert_input + match_options_id: uuid + opening_duels: v_match_player_opening_duels_arr_rel_insert_input + options: match_options_obj_rel_insert_input + organizer: players_obj_rel_insert_input + organizer_steam_id: bigint + password: String + player_assists: player_assists_arr_rel_insert_input + player_damages: player_damages_arr_rel_insert_input + player_flashes: player_flashes_arr_rel_insert_input + player_kills: player_kills_arr_rel_insert_input + player_objectives: player_objectives_arr_rel_insert_input + player_unused_utilities: player_unused_utility_arr_rel_insert_input + player_utility: player_utility_arr_rel_insert_input + region: String + region_veto_picks: match_region_veto_picks_arr_rel_insert_input + scheduled_at: timestamptz + server: servers_obj_rel_insert_input + server_error: String + server_id: uuid + share_code: String + source: String + started_at: timestamptz + status: e_match_status_enum + streams: match_streams_arr_rel_insert_input + tournament_brackets: tournament_brackets_arr_rel_insert_input + veto_pick_expires_at: timestamptz + winner: match_lineups_obj_rel_insert_input + winning_lineup_id: uuid +} + +"""aggregate max on columns""" +type matches_max_fields { + cancels_at: timestamptz + + """ + A computed field, executes function "get_match_connection_link" + """ + connection_link: String + + """ + A computed field, executes function "get_match_connection_string" + """ + connection_string: String + created_at: timestamptz + + """ + A computed field, executes function "get_current_match_map" + """ + current_match_map_id: uuid + effective_at: timestamptz + ended_at: timestamptz + external_id: String + id: uuid + + """ + A computed field, executes function "match_invite_code" + """ + invite_code: String + label: String + lineup_1_id: uuid + lineup_2_id: uuid + + """ + A computed field, executes function "get_map_veto_picking_lineup_id" + """ + map_veto_picking_lineup_id: uuid + + """ + A computed field, executes function "get_map_veto_type" + """ + map_veto_type: String + match_options_id: uuid + + """ + A computed field, executes function "match_max_players_per_lineup" + """ + max_players_per_lineup: Int + + """ + A computed field, executes function "match_min_players_per_lineup" + """ + min_players_per_lineup: Int + organizer_steam_id: bigint + password: String + region: String + + """ + A computed field, executes function "get_region_veto_picking_lineup_id" + """ + region_veto_picking_lineup_id: uuid + scheduled_at: timestamptz + server_error: String + server_id: uuid + + """ + A computed field, executes function "get_match_server_plugin_runtime" + """ + server_plugin_runtime: String + + """ + A computed field, executes function "get_match_server_region" + """ + server_region: String + + """ + A computed field, executes function "get_match_server_type" + """ + server_type: String + share_code: String + source: String + started_at: timestamptz + + """ + A computed field, executes function "get_match_tv_connection_string" + """ + tv_connection_string: String + veto_pick_expires_at: timestamptz + winning_lineup_id: uuid +} + +""" +order by max() on columns of table "matches" +""" +input matches_max_order_by { + cancels_at: order_by + created_at: order_by + effective_at: order_by + ended_at: order_by + external_id: order_by + id: order_by + label: order_by + lineup_1_id: order_by + lineup_2_id: order_by + match_options_id: order_by + organizer_steam_id: order_by + password: order_by + region: order_by + scheduled_at: order_by + server_error: order_by + server_id: order_by + share_code: order_by + source: order_by + started_at: order_by + veto_pick_expires_at: order_by + winning_lineup_id: order_by +} + +"""aggregate min on columns""" +type matches_min_fields { + cancels_at: timestamptz + + """ + A computed field, executes function "get_match_connection_link" + """ + connection_link: String + + """ + A computed field, executes function "get_match_connection_string" + """ + connection_string: String + created_at: timestamptz + + """ + A computed field, executes function "get_current_match_map" + """ + current_match_map_id: uuid + effective_at: timestamptz + ended_at: timestamptz + external_id: String + id: uuid + + """ + A computed field, executes function "match_invite_code" + """ + invite_code: String + label: String + lineup_1_id: uuid + lineup_2_id: uuid + + """ + A computed field, executes function "get_map_veto_picking_lineup_id" + """ + map_veto_picking_lineup_id: uuid + + """ + A computed field, executes function "get_map_veto_type" + """ + map_veto_type: String + match_options_id: uuid + + """ + A computed field, executes function "match_max_players_per_lineup" + """ + max_players_per_lineup: Int + + """ + A computed field, executes function "match_min_players_per_lineup" + """ + min_players_per_lineup: Int + organizer_steam_id: bigint + password: String + region: String + + """ + A computed field, executes function "get_region_veto_picking_lineup_id" + """ + region_veto_picking_lineup_id: uuid + scheduled_at: timestamptz + server_error: String + server_id: uuid + + """ + A computed field, executes function "get_match_server_plugin_runtime" + """ + server_plugin_runtime: String + + """ + A computed field, executes function "get_match_server_region" + """ + server_region: String + + """ + A computed field, executes function "get_match_server_type" + """ + server_type: String + share_code: String + source: String + started_at: timestamptz + + """ + A computed field, executes function "get_match_tv_connection_string" + """ + tv_connection_string: String + veto_pick_expires_at: timestamptz + winning_lineup_id: uuid +} + +""" +order by min() on columns of table "matches" +""" +input matches_min_order_by { + cancels_at: order_by + created_at: order_by + effective_at: order_by + ended_at: order_by + external_id: order_by + id: order_by + label: order_by + lineup_1_id: order_by + lineup_2_id: order_by + match_options_id: order_by + organizer_steam_id: order_by + password: order_by + region: order_by + scheduled_at: order_by + server_error: order_by + server_id: order_by + share_code: order_by + source: order_by + started_at: order_by + veto_pick_expires_at: order_by + winning_lineup_id: order_by +} + +""" +response of any mutation on the table "matches" +""" +type matches_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [matches!]! +} + +""" +input type for inserting object relation for remote table "matches" +""" +input matches_obj_rel_insert_input { + data: matches_insert_input! + + """upsert condition""" + on_conflict: matches_on_conflict +} + +""" +on_conflict condition type for table "matches" +""" +input matches_on_conflict { + constraint: matches_constraint! + update_columns: [matches_update_column!]! = [] + where: matches_bool_exp +} + +"""Ordering options when selecting data from "matches".""" +input matches_order_by { + can_assign_server: order_by + can_cancel: order_by + can_check_in: order_by + can_reassign_winner: order_by + can_schedule: order_by + can_start: order_by + can_stream_live: order_by + can_stream_tv: order_by + cancels_at: 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 + draft_games_aggregate: draft_games_aggregate_order_by + e_match_status: e_match_status_order_by + e_region: server_regions_order_by + effective_at: order_by + elo_changes_aggregate: v_player_elo_aggregate_order_by + ended_at: order_by + external_id: order_by + id: order_by + invite_code: order_by + is_captain: order_by + is_coach: order_by + is_friend_in_match_lineup: order_by + is_in_lineup: order_by + is_match_server_available: order_by + is_organizer: order_by + is_server_online: order_by + is_tournament_match: order_by + label: order_by + lineup_1: match_lineups_order_by + lineup_1_id: order_by + lineup_2: match_lineups_order_by + lineup_2_id: order_by + lineup_counts: order_by + map_veto_picking_lineup_id: order_by + map_veto_picks_aggregate: match_map_veto_picks_aggregate_order_by + map_veto_type: order_by + match_maps_aggregate: match_maps_aggregate_order_by + match_options_id: order_by + max_players_per_lineup: order_by + min_players_per_lineup: order_by + opening_duels_aggregate: v_match_player_opening_duels_aggregate_order_by + options: match_options_order_by + organizer: players_order_by + organizer_steam_id: order_by + password: order_by + player_assists_aggregate: player_assists_aggregate_order_by + player_damages_aggregate: player_damages_aggregate_order_by + player_flashes_aggregate: player_flashes_aggregate_order_by + player_kills_aggregate: player_kills_aggregate_order_by + player_objectives_aggregate: player_objectives_aggregate_order_by + player_unused_utilities_aggregate: player_unused_utility_aggregate_order_by + player_utility_aggregate: player_utility_aggregate_order_by + region: order_by + region_veto_picking_lineup_id: order_by + region_veto_picks_aggregate: match_region_veto_picks_aggregate_order_by + requested_organizer: order_by + scheduled_at: order_by + server: servers_order_by + server_error: order_by + server_id: order_by + server_plugin_runtime: order_by + server_region: order_by + server_type: order_by + share_code: order_by + source: order_by + started_at: order_by + status: order_by + streams_aggregate: match_streams_aggregate_order_by + teams_aggregate: teams_aggregate_order_by + tournament_brackets_aggregate: tournament_brackets_aggregate_order_by + tv_connection_string: order_by + veto_pick_expires_at: order_by + winner: match_lineups_order_by + winning_lineup_id: order_by +} + +"""primary key columns input for table: matches""" +input matches_pk_columns_input { + id: uuid! +} + +""" +select columns of table "matches" +""" +enum matches_select_column { + """column name""" + cancels_at + + """column name""" + counts_toward_ranking + + """column name""" + created_at + + """column name""" + effective_at + + """column name""" + ended_at + + """column name""" + external_id + + """column name""" + id + + """column name""" + label + + """column name""" + lineup_1_id + + """column name""" + lineup_2_id + + """column name""" + match_options_id + + """column name""" + organizer_steam_id + + """column name""" + password + + """column name""" + region + + """column name""" + scheduled_at + + """column name""" + server_error + + """column name""" + server_id + + """column name""" + share_code + + """column name""" + source + + """column name""" + started_at + + """column name""" + status + + """column name""" + veto_pick_expires_at + + """column name""" + 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 + id: uuid + label: String + lineup_1_id: uuid + lineup_2_id: uuid + match_options_id: uuid + organizer_steam_id: bigint + password: String + region: String + scheduled_at: timestamptz + server_error: String + server_id: uuid + share_code: String + source: String + started_at: timestamptz + status: e_match_status_enum + veto_pick_expires_at: timestamptz + winning_lineup_id: uuid +} + +"""aggregate stddev on columns""" +type matches_stddev_fields { + """ + A computed field, executes function "match_max_players_per_lineup" + """ + max_players_per_lineup: Int + + """ + A computed field, executes function "match_min_players_per_lineup" + """ + min_players_per_lineup: Int + organizer_steam_id: Float +} + +""" +order by stddev() on columns of table "matches" +""" +input matches_stddev_order_by { + organizer_steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type matches_stddev_pop_fields { + """ + A computed field, executes function "match_max_players_per_lineup" + """ + max_players_per_lineup: Int + + """ + A computed field, executes function "match_min_players_per_lineup" + """ + min_players_per_lineup: Int + organizer_steam_id: Float +} + +""" +order by stddev_pop() on columns of table "matches" +""" +input matches_stddev_pop_order_by { + organizer_steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type matches_stddev_samp_fields { + """ + A computed field, executes function "match_max_players_per_lineup" + """ + max_players_per_lineup: Int + + """ + A computed field, executes function "match_min_players_per_lineup" + """ + min_players_per_lineup: Int + organizer_steam_id: Float +} + +""" +order by stddev_samp() on columns of table "matches" +""" +input matches_stddev_samp_order_by { + organizer_steam_id: order_by +} + +""" +Streaming cursor of the table "matches" +""" +input matches_stream_cursor_input { + """Stream column input with initial value""" + initial_value: matches_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""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 + external_id: String + id: uuid + label: String + lineup_1_id: uuid + lineup_2_id: uuid + match_options_id: uuid + organizer_steam_id: bigint + password: String + region: String + scheduled_at: timestamptz + server_error: String + server_id: uuid + share_code: String + source: String + started_at: timestamptz + status: e_match_status_enum + veto_pick_expires_at: timestamptz + winning_lineup_id: uuid +} + +"""aggregate sum on columns""" +type matches_sum_fields { + """ + A computed field, executes function "match_max_players_per_lineup" + """ + max_players_per_lineup: Int + + """ + A computed field, executes function "match_min_players_per_lineup" + """ + min_players_per_lineup: Int + organizer_steam_id: bigint +} + +""" +order by sum() on columns of table "matches" +""" +input matches_sum_order_by { + organizer_steam_id: order_by +} + +""" +update columns of table "matches" +""" +enum matches_update_column { + """column name""" + cancels_at + + """column name""" + counts_toward_ranking + + """column name""" + created_at + + """column name""" + ended_at + + """column name""" + external_id + + """column name""" + id + + """column name""" + label + + """column name""" + lineup_1_id + + """column name""" + lineup_2_id + + """column name""" + match_options_id + + """column name""" + organizer_steam_id + + """column name""" + password + + """column name""" + region + + """column name""" + scheduled_at + + """column name""" + server_error + + """column name""" + server_id + + """column name""" + share_code + + """column name""" + source + + """column name""" + started_at + + """column name""" + status + + """column name""" + veto_pick_expires_at + + """column name""" + winning_lineup_id +} + +input matches_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: matches_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: matches_set_input + + """filter the rows which have to be updated""" + where: matches_bool_exp! +} + +"""aggregate var_pop on columns""" +type matches_var_pop_fields { + """ + A computed field, executes function "match_max_players_per_lineup" + """ + max_players_per_lineup: Int + + """ + A computed field, executes function "match_min_players_per_lineup" + """ + min_players_per_lineup: Int + organizer_steam_id: Float +} + +""" +order by var_pop() on columns of table "matches" +""" +input matches_var_pop_order_by { + organizer_steam_id: order_by +} + +"""aggregate var_samp on columns""" +type matches_var_samp_fields { + """ + A computed field, executes function "match_max_players_per_lineup" + """ + max_players_per_lineup: Int + + """ + A computed field, executes function "match_min_players_per_lineup" + """ + min_players_per_lineup: Int + organizer_steam_id: Float +} + +""" +order by var_samp() on columns of table "matches" +""" +input matches_var_samp_order_by { + organizer_steam_id: order_by +} + +"""aggregate variance on columns""" +type matches_variance_fields { + """ + A computed field, executes function "match_max_players_per_lineup" + """ + max_players_per_lineup: Int + + """ + A computed field, executes function "match_min_players_per_lineup" + """ + min_players_per_lineup: Int + organizer_steam_id: Float +} + +""" +order by variance() on columns of table "matches" +""" +input matches_variance_order_by { + organizer_steam_id: order_by +} + +""" +columns and relationships of "migration_hashes.hashes" +""" +type migration_hashes_hashes { + hash: String! + name: String! +} + +""" +aggregated selection of "migration_hashes.hashes" +""" +type migration_hashes_hashes_aggregate { + aggregate: migration_hashes_hashes_aggregate_fields + nodes: [migration_hashes_hashes!]! +} + +""" +aggregate fields of "migration_hashes.hashes" +""" +type migration_hashes_hashes_aggregate_fields { + count(columns: [migration_hashes_hashes_select_column!], distinct: Boolean): Int! + max: migration_hashes_hashes_max_fields + min: migration_hashes_hashes_min_fields +} + +""" +Boolean expression to filter rows from the table "migration_hashes.hashes". All fields are combined with a logical 'AND'. +""" +input migration_hashes_hashes_bool_exp { + _and: [migration_hashes_hashes_bool_exp!] + _not: migration_hashes_hashes_bool_exp + _or: [migration_hashes_hashes_bool_exp!] + hash: String_comparison_exp + name: String_comparison_exp +} + +""" +unique or primary key constraints on table "migration_hashes.hashes" +""" +enum migration_hashes_hashes_constraint { + """ + unique or primary key constraint on columns "name" + """ + hashes_pkey +} + +""" +input type for inserting data into table "migration_hashes.hashes" +""" +input migration_hashes_hashes_insert_input { + hash: String + name: String +} + +"""aggregate max on columns""" +type migration_hashes_hashes_max_fields { + hash: String + name: String +} + +"""aggregate min on columns""" +type migration_hashes_hashes_min_fields { + hash: String + name: String +} + +""" +response of any mutation on the table "migration_hashes.hashes" +""" +type migration_hashes_hashes_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [migration_hashes_hashes!]! +} + +""" +on_conflict condition type for table "migration_hashes.hashes" +""" +input migration_hashes_hashes_on_conflict { + constraint: migration_hashes_hashes_constraint! + update_columns: [migration_hashes_hashes_update_column!]! = [] + where: migration_hashes_hashes_bool_exp +} + +"""Ordering options when selecting data from "migration_hashes.hashes".""" +input migration_hashes_hashes_order_by { + hash: order_by + name: order_by +} + +"""primary key columns input for table: migration_hashes.hashes""" +input migration_hashes_hashes_pk_columns_input { + name: String! +} + +""" +select columns of table "migration_hashes.hashes" +""" +enum migration_hashes_hashes_select_column { + """column name""" + hash + + """column name""" + name +} + +""" +input type for updating data in table "migration_hashes.hashes" +""" +input migration_hashes_hashes_set_input { + hash: String + name: String +} + +""" +Streaming cursor of the table "migration_hashes_hashes" +""" +input migration_hashes_hashes_stream_cursor_input { + """Stream column input with initial value""" + initial_value: migration_hashes_hashes_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input migration_hashes_hashes_stream_cursor_value_input { + hash: String + name: String +} + +""" +update columns of table "migration_hashes.hashes" +""" +enum migration_hashes_hashes_update_column { + """column name""" + hash + + """column name""" + name +} + +input migration_hashes_hashes_updates { + """sets the columns of the filtered rows to the given values""" + _set: migration_hashes_hashes_set_input + + """filter the rows which have to be updated""" + where: migration_hashes_hashes_bool_exp! +} + +"""mutation root""" +type mutation_root { + PreviewTournamentMatchReset(match_id: uuid!): PreviewTournamentMatchResetOutput! + ResetTournamentMatch(match_id: uuid!, reset_status: String, scheduled_at: timestamptz, winning_lineup_id: uuid): SuccessOutput + + """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 + + """Add a friends-role presence bot account to the pool""" + addSteamPresenceBotAccount(bot_secret: String!, friend_capacity: Int, username: String!): SuccessOutput + approveNameChange(name: String!, steam_id: bigint!): SuccessOutput + + """ + execute VOLATILE function "approve_league_season_movements" which returns "league_team_movements" + """ + approve_league_season_movements( + """ + input parameters for function "approve_league_season_movements" + """ + args: approve_league_season_movements_args! + + """distinct select on columns""" + distinct_on: [league_team_movements_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: [league_team_movements_order_by!] + + """filter the rows returned""" + where: league_team_movements_bool_exp + ): [league_team_movements!]! + + """Assign the presence bot a user should add as a friend""" + assignSteamPresenceBot: SteamPresenceBotAssignment + + """ + Dev-only — attach the demo player to a standing dev game-streamer pod (no Job boot) + """ + attachDemo: WatchDemoOutput + + """ + Rebuild a season's ELO + stats from the matches inside its date range (admin only). Runs in the background; track via backfillSeasonEloStatus. + """ + backfillSeasonElo(season_id: String!): RecomputeEloStartedOutput + + """Return the progress of the season ELO backfill run (admin only).""" + backfillSeasonEloStatus: SeasonBackfillStatusOutput + + """Recover launch seeds from recorded trajectories, one batch per call""" + backfillUtilityLaunchSeeds(limit: Int): UtilityLaunchSeedBackfillOutput + + """Launch a Vulkan shader pre-bake Job on a GPU node""" + bakeShaders(game_server_node_id: uuid!): SuccessOutput + + """callForOrganizer""" + callForOrganizer(match_id: String!): SuccessOutput + + """ + Request cancellation of the in-progress season ELO backfill (admin only). Stops after the current match. + """ + cancelBackfillSeasonElo: SuccessOutput + + """ + Cancel an in-progress or stuck Vulkan shader pre-bake Job on a GPU node + """ + cancelBakeShaders(game_server_node_id: uuid!): SuccessOutput + + """Cancel an in-flight clip render and tear down the K8s job""" + cancelClipRender(job_id: uuid!): SuccessOutput + + """Cancel an entire match_map's render queue + tear down the pod.""" + cancelClipRenderBatch(match_map_id: uuid!): SuccessOutput + + """cancelMatch""" + cancelMatch(match_id: uuid!): SuccessOutput + + """ + Request cancellation of the in-progress ELO recompute (admin only). Stops after the current match. + """ + cancelRecomputePlayerElo: SuccessOutput + + """ + Request cancellation of the in-progress player reindex (admin only). Stops after the current player. + """ + cancelRefreshAllPlayers: SuccessOutput + + """ + Request cancellation of the in-progress reparse-all-demos run (admin only). Stops after the current demo finishes. + """ + cancelReparseAllDemos: SuccessOutput + + """cancelScrimRequest""" + cancelScrimRequest(request_id: uuid!): SuccessOutput + + """Cancel an in-flight lineup preview render""" + cancelUtilityLineupRender(render_id: uuid!): SuccessOutput + changeUtilityPracticeMap(lineup_id: uuid, lineup_ids: [uuid!], map_name: String!, scratch: UtilityScratchLineupInput, session_id: uuid!): UtilityPracticeMapChangeOutput + + """checkIntoMatch""" + checkIntoMatch(match_id: uuid!): SuccessOutput + + """Confirm a check-in, enforcing the tournament's check_in_setting""" + checkIntoTournament(tournament_id: uuid!, tournament_team_id: uuid): SuccessOutput + + """ + Delete terminal-state clip_render_jobs rows for a single match_map batch. + """ + clearClipRenderBatch(match_map_id: uuid!): SuccessOutput + + """Delete all terminal-state clip_render_jobs rows platform-wide.""" + clearFinishedClipRenders: SuccessOutput + + """Drop every finished row from the lineup preview queue""" + clearFinishedUtilityLineupRenders: UtilityRenderClearOutput + clearPendingMatchImport(valve_match_id: String!): PendingMatchImportActionOutput + + """ + execute VOLATILE function "clone_league_season" which returns "league_seasons" + """ + clone_league_season( + """ + input parameters for function "clone_league_season" + """ + args: clone_league_season_args! + + """distinct select on columns""" + distinct_on: [league_seasons_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: [league_seasons_order_by!] + + """filter the rows returned""" + where: league_seasons_bool_exp + ): [league_seasons!]! + + """Organizer proceeds without the teams that missed check-in""" + continueTournamentCheckIn(tournament_id: uuid!): SuccessOutput + + """counterScrimRequest""" + counterScrimRequest(proposed_scheduled_at: timestamptz!, request_id: uuid!): SuccessOutput + createApiKey(label: String!): ApiKeyResponse + + """ + Build a multi-segment ClipSpec from a player+preset and dispatch render + """ + createClipFromPreset(fps: Int, match_map_id: uuid!, preset: String!, resolution: String, target_name: String, target_steam_id: String!, title: String): CreateClipRenderOutput + + """ + Spawn a clip-render pod that produces an mp4 from a demo and uploads it + """ + createClipRender(spec: ClipSpecInput!): CreateClipRenderOutput + createClips(match_id: uuid!): SuccessOutput + + """createDraftGame""" + createDraftGame(settings: jsonb!): CreateDraftGameOutput + + """createScheduledMatch""" + createScheduledMatch(lineup_1: ScheduledLineupInput!, lineup_2: ScheduledLineupInput!, options: jsonb!, scheduled_at: String!): CreateScheduledMatchOutput + + """Create directory on game server""" + createServerDirectory(dir_path: String!, node_id: String!, server_id: String): SuccessOutput + + """Organizer mints an expiring, use capped invite link for a tournament""" + createTournamentInviteCode(expires_in_minutes: Int, max_uses: Int, tournament_id: uuid!): TournamentInviteCodeOutput + + """Delete a catalog award""" + deleteAward(id: uuid!): SuccessOutput + + """Delete a saved clip and its underlying S3 object""" + deleteClip(clip_id: uuid!): SuccessOutput + deleteMatch(match_id: String!): SuccessOutput + + """ + Delete a news post. Caller role is verified against public.post_news_role. + """ + deleteNewsPost(id: uuid!): SuccessOutput + + """ + Delete orphaned S3 objects found by the last scan (admin only). Each key is re-verified against the database before removal. + """ + deleteOrphanedDemos(keys: [String!]): DeleteOrphansOutput + + """Delete file or directory on game server""" + deleteServerItem(node_id: String!, path: String!, server_id: String): SuccessOutput + + """Delete a tournament and clean up demo files""" + deleteTournament(tournament_id: uuid!): SuccessOutput + + """Delete a render and its preview clip""" + deleteUtilityLineupRender(render_id: uuid!): SuccessOutput + + """Delete a utility playbook""" + deleteUtilityPlaybook(playbook_id: uuid!): SuccessOutput + + """ + delete data from the table: "_map_pool" + """ + delete__map_pool( + """filter the rows which have to be deleted""" + where: _map_pool_bool_exp! + ): _map_pool_mutation_response + + """ + delete single row from the table: "_map_pool" + """ + delete__map_pool_by_pk(map_id: uuid!, map_pool_id: uuid!): _map_pool + + """ + delete data from the table: "abandoned_matches" + """ + delete_abandoned_matches( + """filter the rows which have to be deleted""" + where: abandoned_matches_bool_exp! + ): abandoned_matches_mutation_response + + """ + delete single row from the table: "abandoned_matches" + """ + delete_abandoned_matches_by_pk(id: uuid!): abandoned_matches + + """ + delete data from the table: "api_keys" + """ + delete_api_keys( + """filter the rows which have to be deleted""" + where: api_keys_bool_exp! + ): api_keys_mutation_response + + """ + delete single row from the table: "api_keys" + """ + delete_api_keys_by_pk(id: uuid!): api_keys + + """ + delete data from the table: "award_recipients" + """ + delete_award_recipients( + """filter the rows which have to be deleted""" + where: award_recipients_bool_exp! + ): award_recipients_mutation_response + + """ + delete single row from the table: "award_recipients" + """ + delete_award_recipients_by_pk(id: uuid!): award_recipients + + """ + delete data from the table: "awards" + """ + delete_awards( + """filter the rows which have to be deleted""" + where: awards_bool_exp! + ): awards_mutation_response + + """ + delete single row from the table: "awards" + """ + delete_awards_by_pk(id: uuid!): awards + + """ + delete data from the table: "chat_read_state" + """ + delete_chat_read_state( + """filter the rows which have to be deleted""" + where: chat_read_state_bool_exp! + ): chat_read_state_mutation_response + + """ + delete single row from the table: "chat_read_state" + """ + delete_chat_read_state_by_pk(steam_id: bigint!, thread: String!): chat_read_state + + """ + delete data from the table: "clip_render_jobs" + """ + delete_clip_render_jobs( + """filter the rows which have to be deleted""" + where: clip_render_jobs_bool_exp! + ): clip_render_jobs_mutation_response + + """ + delete single row from the table: "clip_render_jobs" + """ + delete_clip_render_jobs_by_pk(id: uuid!): clip_render_jobs + + """ + delete data from the table: "custom_pages" + """ + delete_custom_pages( + """filter the rows which have to be deleted""" + where: custom_pages_bool_exp! + ): custom_pages_mutation_response + + """ + delete single row from the table: "custom_pages" + """ + delete_custom_pages_by_pk(id: uuid!): custom_pages + + """ + delete data from the table: "db_backups" + """ + delete_db_backups( + """filter the rows which have to be deleted""" + where: db_backups_bool_exp! + ): db_backups_mutation_response + + """ + delete single row from the table: "db_backups" + """ + delete_db_backups_by_pk(id: uuid!): db_backups + + """ + delete data from the table: "direct_conversations" + """ + delete_direct_conversations( + """filter the rows which have to be deleted""" + where: direct_conversations_bool_exp! + ): direct_conversations_mutation_response + + """ + delete single row from the table: "direct_conversations" + """ + delete_direct_conversations_by_pk(room_id: String!, steam_id: bigint!): direct_conversations + + """ + delete data from the table: "direct_messages" + """ + delete_direct_messages( + """filter the rows which have to be deleted""" + where: direct_messages_bool_exp! + ): direct_messages_mutation_response + + """ + delete single row from the table: "direct_messages" + """ + delete_direct_messages_by_pk(id: uuid!): direct_messages + + """ + delete data from the table: "draft_game_picks" + """ + delete_draft_game_picks( + """filter the rows which have to be deleted""" + where: draft_game_picks_bool_exp! + ): draft_game_picks_mutation_response + + """ + delete single row from the table: "draft_game_picks" + """ + delete_draft_game_picks_by_pk(id: uuid!): draft_game_picks + + """ + delete data from the table: "draft_game_players" + """ + delete_draft_game_players( + """filter the rows which have to be deleted""" + where: draft_game_players_bool_exp! + ): draft_game_players_mutation_response + + """ + delete single row from the table: "draft_game_players" + """ + delete_draft_game_players_by_pk(draft_game_id: uuid!, steam_id: bigint!): draft_game_players + + """ + delete data from the table: "draft_games" + """ + delete_draft_games( + """filter the rows which have to be deleted""" + where: draft_games_bool_exp! + ): draft_games_mutation_response + + """ + delete single row from the table: "draft_games" + """ + delete_draft_games_by_pk(id: uuid!): draft_games + + """ + delete data from the table: "e_award_sources" + """ + delete_e_award_sources( + """filter the rows which have to be deleted""" + where: e_award_sources_bool_exp! + ): e_award_sources_mutation_response + + """ + delete single row from the table: "e_award_sources" + """ + delete_e_award_sources_by_pk(value: String!): e_award_sources + + """ + delete data from the table: "e_award_tiers" + """ + delete_e_award_tiers( + """filter the rows which have to be deleted""" + where: e_award_tiers_bool_exp! + ): e_award_tiers_mutation_response + + """ + delete single row from the table: "e_award_tiers" + """ + delete_e_award_tiers_by_pk(value: String!): e_award_tiers + + """ + delete data from the table: "e_check_in_settings" + """ + delete_e_check_in_settings( + """filter the rows which have to be deleted""" + where: e_check_in_settings_bool_exp! + ): e_check_in_settings_mutation_response + + """ + delete single row from the table: "e_check_in_settings" + """ + delete_e_check_in_settings_by_pk(value: String!): e_check_in_settings + + """ + delete data from the table: "e_draft_game_captain_selection" + """ + delete_e_draft_game_captain_selection( + """filter the rows which have to be deleted""" + where: e_draft_game_captain_selection_bool_exp! + ): e_draft_game_captain_selection_mutation_response + + """ + delete single row from the table: "e_draft_game_captain_selection" + """ + delete_e_draft_game_captain_selection_by_pk(value: String!): e_draft_game_captain_selection + + """ + delete data from the table: "e_draft_game_draft_order" + """ + delete_e_draft_game_draft_order( + """filter the rows which have to be deleted""" + where: e_draft_game_draft_order_bool_exp! + ): e_draft_game_draft_order_mutation_response + + """ + delete single row from the table: "e_draft_game_draft_order" + """ + delete_e_draft_game_draft_order_by_pk(value: String!): e_draft_game_draft_order + + """ + delete data from the table: "e_draft_game_mode" + """ + delete_e_draft_game_mode( + """filter the rows which have to be deleted""" + where: e_draft_game_mode_bool_exp! + ): e_draft_game_mode_mutation_response + + """ + delete single row from the table: "e_draft_game_mode" + """ + delete_e_draft_game_mode_by_pk(value: String!): e_draft_game_mode + + """ + delete data from the table: "e_draft_game_player_status" + """ + delete_e_draft_game_player_status( + """filter the rows which have to be deleted""" + where: e_draft_game_player_status_bool_exp! + ): e_draft_game_player_status_mutation_response + + """ + delete single row from the table: "e_draft_game_player_status" + """ + delete_e_draft_game_player_status_by_pk(value: String!): e_draft_game_player_status + + """ + delete data from the table: "e_draft_game_status" + """ + delete_e_draft_game_status( + """filter the rows which have to be deleted""" + where: e_draft_game_status_bool_exp! + ): e_draft_game_status_mutation_response + + """ + delete single row from the table: "e_draft_game_status" + """ + delete_e_draft_game_status_by_pk(value: String!): e_draft_game_status + + """ + delete data from the table: "e_event_media_access" + """ + delete_e_event_media_access( + """filter the rows which have to be deleted""" + where: e_event_media_access_bool_exp! + ): e_event_media_access_mutation_response + + """ + delete single row from the table: "e_event_media_access" + """ + delete_e_event_media_access_by_pk(value: String!): e_event_media_access + + """ + delete data from the table: "e_event_visibility" + """ + delete_e_event_visibility( + """filter the rows which have to be deleted""" + where: e_event_visibility_bool_exp! + ): e_event_visibility_mutation_response + + """ + delete single row from the table: "e_event_visibility" + """ + delete_e_event_visibility_by_pk(value: String!): e_event_visibility + + """ + delete data from the table: "e_friend_status" + """ + delete_e_friend_status( + """filter the rows which have to be deleted""" + where: e_friend_status_bool_exp! + ): e_friend_status_mutation_response + + """ + delete single row from the table: "e_friend_status" + """ + delete_e_friend_status_by_pk(value: String!): e_friend_status + + """ + delete data from the table: "e_game_cfg_types" + """ + delete_e_game_cfg_types( + """filter the rows which have to be deleted""" + where: e_game_cfg_types_bool_exp! + ): e_game_cfg_types_mutation_response + + """ + delete single row from the table: "e_game_cfg_types" + """ + 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" + """ + delete_e_game_server_node_statuses( + """filter the rows which have to be deleted""" + where: e_game_server_node_statuses_bool_exp! + ): e_game_server_node_statuses_mutation_response + + """ + delete single row from the table: "e_game_server_node_statuses" + """ + delete_e_game_server_node_statuses_by_pk(value: String!): e_game_server_node_statuses + + """ + delete data from the table: "e_league_movement_types" + """ + delete_e_league_movement_types( + """filter the rows which have to be deleted""" + where: e_league_movement_types_bool_exp! + ): e_league_movement_types_mutation_response + + """ + delete single row from the table: "e_league_movement_types" + """ + delete_e_league_movement_types_by_pk(value: String!): e_league_movement_types + + """ + delete data from the table: "e_league_proposal_statuses" + """ + delete_e_league_proposal_statuses( + """filter the rows which have to be deleted""" + where: e_league_proposal_statuses_bool_exp! + ): e_league_proposal_statuses_mutation_response + + """ + delete single row from the table: "e_league_proposal_statuses" + """ + delete_e_league_proposal_statuses_by_pk(value: String!): e_league_proposal_statuses + + """ + delete data from the table: "e_league_registration_statuses" + """ + delete_e_league_registration_statuses( + """filter the rows which have to be deleted""" + where: e_league_registration_statuses_bool_exp! + ): e_league_registration_statuses_mutation_response + + """ + delete single row from the table: "e_league_registration_statuses" + """ + delete_e_league_registration_statuses_by_pk(value: String!): e_league_registration_statuses + + """ + delete data from the table: "e_league_season_statuses" + """ + delete_e_league_season_statuses( + """filter the rows which have to be deleted""" + where: e_league_season_statuses_bool_exp! + ): e_league_season_statuses_mutation_response + + """ + delete single row from the table: "e_league_season_statuses" + """ + delete_e_league_season_statuses_by_pk(value: String!): e_league_season_statuses + + """ + delete data from the table: "e_lobby_access" + """ + delete_e_lobby_access( + """filter the rows which have to be deleted""" + where: e_lobby_access_bool_exp! + ): e_lobby_access_mutation_response + + """ + delete single row from the table: "e_lobby_access" + """ + delete_e_lobby_access_by_pk(value: String!): e_lobby_access + + """ + delete data from the table: "e_lobby_player_status" + """ + delete_e_lobby_player_status( + """filter the rows which have to be deleted""" + where: e_lobby_player_status_bool_exp! + ): e_lobby_player_status_mutation_response + + """ + delete single row from the table: "e_lobby_player_status" + """ + delete_e_lobby_player_status_by_pk(value: String!): e_lobby_player_status + + """ + delete data from the table: "e_map_pool_types" + """ + delete_e_map_pool_types( + """filter the rows which have to be deleted""" + where: e_map_pool_types_bool_exp! + ): e_map_pool_types_mutation_response + + """ + delete single row from the table: "e_map_pool_types" + """ + delete_e_map_pool_types_by_pk(value: String!): e_map_pool_types + + """ + delete data from the table: "e_match_clip_visibility" + """ + delete_e_match_clip_visibility( + """filter the rows which have to be deleted""" + where: e_match_clip_visibility_bool_exp! + ): e_match_clip_visibility_mutation_response + + """ + delete single row from the table: "e_match_clip_visibility" + """ + delete_e_match_clip_visibility_by_pk(value: String!): e_match_clip_visibility + + """ + delete data from the table: "e_match_map_status" + """ + delete_e_match_map_status( + """filter the rows which have to be deleted""" + where: e_match_map_status_bool_exp! + ): e_match_map_status_mutation_response + + """ + delete single row from the table: "e_match_map_status" + """ + delete_e_match_map_status_by_pk(value: String!): e_match_map_status + + """ + delete data from the table: "e_match_mode" + """ + delete_e_match_mode( + """filter the rows which have to be deleted""" + where: e_match_mode_bool_exp! + ): e_match_mode_mutation_response + + """ + delete single row from the table: "e_match_mode" + """ + delete_e_match_mode_by_pk(value: String!): e_match_mode + + """ + delete data from the table: "e_match_party_sources" + """ + delete_e_match_party_sources( + """filter the rows which have to be deleted""" + where: e_match_party_sources_bool_exp! + ): e_match_party_sources_mutation_response + + """ + delete single row from the table: "e_match_party_sources" + """ + delete_e_match_party_sources_by_pk(value: String!): e_match_party_sources + + """ + delete data from the table: "e_match_status" + """ + delete_e_match_status( + """filter the rows which have to be deleted""" + where: e_match_status_bool_exp! + ): e_match_status_mutation_response + + """ + delete single row from the table: "e_match_status" + """ + delete_e_match_status_by_pk(value: String!): e_match_status + + """ + delete data from the table: "e_match_types" + """ + delete_e_match_types( + """filter the rows which have to be deleted""" + where: e_match_types_bool_exp! + ): e_match_types_mutation_response + + """ + delete single row from the table: "e_match_types" + """ + delete_e_match_types_by_pk(value: String!): e_match_types + + """ + delete data from the table: "e_notification_types" + """ + delete_e_notification_types( + """filter the rows which have to be deleted""" + where: e_notification_types_bool_exp! + ): e_notification_types_mutation_response + + """ + delete single row from the table: "e_notification_types" + """ + delete_e_notification_types_by_pk(value: String!): e_notification_types + + """ + delete data from the table: "e_objective_types" + """ + delete_e_objective_types( + """filter the rows which have to be deleted""" + where: e_objective_types_bool_exp! + ): e_objective_types_mutation_response + + """ + delete single row from the table: "e_objective_types" + """ + delete_e_objective_types_by_pk(value: String!): e_objective_types + + """ + delete data from the table: "e_player_roles" + """ + delete_e_player_roles( + """filter the rows which have to be deleted""" + where: e_player_roles_bool_exp! + ): e_player_roles_mutation_response + + """ + delete single row from the table: "e_player_roles" + """ + delete_e_player_roles_by_pk(value: String!): e_player_roles + + """ + delete data from the table: "e_plugin_runtimes" + """ + delete_e_plugin_runtimes( + """filter the rows which have to be deleted""" + where: e_plugin_runtimes_bool_exp! + ): e_plugin_runtimes_mutation_response + + """ + delete single row from the table: "e_plugin_runtimes" + """ + delete_e_plugin_runtimes_by_pk(value: String!): e_plugin_runtimes + + """ + delete data from the table: "e_ready_settings" + """ + delete_e_ready_settings( + """filter the rows which have to be deleted""" + where: e_ready_settings_bool_exp! + ): e_ready_settings_mutation_response + + """ + delete single row from the table: "e_ready_settings" + """ + delete_e_ready_settings_by_pk(value: String!): e_ready_settings + + """ + delete data from the table: "e_sanction_scopes" + """ + delete_e_sanction_scopes( + """filter the rows which have to be deleted""" + where: e_sanction_scopes_bool_exp! + ): e_sanction_scopes_mutation_response + + """ + delete single row from the table: "e_sanction_scopes" + """ + delete_e_sanction_scopes_by_pk(value: String!): e_sanction_scopes + + """ + delete data from the table: "e_sanction_sources" + """ + delete_e_sanction_sources( + """filter the rows which have to be deleted""" + where: e_sanction_sources_bool_exp! + ): e_sanction_sources_mutation_response + + """ + delete single row from the table: "e_sanction_sources" + """ + delete_e_sanction_sources_by_pk(value: String!): e_sanction_sources + + """ + delete data from the table: "e_sanction_types" + """ + delete_e_sanction_types( + """filter the rows which have to be deleted""" + where: e_sanction_types_bool_exp! + ): e_sanction_types_mutation_response + + """ + delete single row from the table: "e_sanction_types" + """ + delete_e_sanction_types_by_pk(value: String!): e_sanction_types + + """ + delete data from the table: "e_scrim_request_statuses" + """ + delete_e_scrim_request_statuses( + """filter the rows which have to be deleted""" + where: e_scrim_request_statuses_bool_exp! + ): e_scrim_request_statuses_mutation_response + + """ + delete single row from the table: "e_scrim_request_statuses" + """ + delete_e_scrim_request_statuses_by_pk(value: String!): e_scrim_request_statuses + + """ + delete data from the table: "e_server_types" + """ + delete_e_server_types( + """filter the rows which have to be deleted""" + where: e_server_types_bool_exp! + ): e_server_types_mutation_response + + """ + delete single row from the table: "e_server_types" + """ + delete_e_server_types_by_pk(value: String!): e_server_types + + """ + delete data from the table: "e_sides" + """ + delete_e_sides( + """filter the rows which have to be deleted""" + where: e_sides_bool_exp! + ): e_sides_mutation_response + + """ + delete single row from the table: "e_sides" + """ + delete_e_sides_by_pk(value: String!): e_sides + + """ + delete data from the table: "e_system_alert_types" + """ + delete_e_system_alert_types( + """filter the rows which have to be deleted""" + where: e_system_alert_types_bool_exp! + ): e_system_alert_types_mutation_response + + """ + delete single row from the table: "e_system_alert_types" + """ + delete_e_system_alert_types_by_pk(value: String!): e_system_alert_types + + """ + delete data from the table: "e_team_roles" + """ + delete_e_team_roles( + """filter the rows which have to be deleted""" + where: e_team_roles_bool_exp! + ): e_team_roles_mutation_response + + """ + delete single row from the table: "e_team_roles" + """ + delete_e_team_roles_by_pk(value: String!): e_team_roles + + """ + delete data from the table: "e_team_roster_statuses" + """ + delete_e_team_roster_statuses( + """filter the rows which have to be deleted""" + where: e_team_roster_statuses_bool_exp! + ): e_team_roster_statuses_mutation_response + + """ + delete single row from the table: "e_team_roster_statuses" + """ + delete_e_team_roster_statuses_by_pk(value: String!): e_team_roster_statuses + + """ + delete data from the table: "e_timeout_settings" + """ + delete_e_timeout_settings( + """filter the rows which have to be deleted""" + where: e_timeout_settings_bool_exp! + ): e_timeout_settings_mutation_response + + """ + delete single row from the table: "e_timeout_settings" + """ + delete_e_timeout_settings_by_pk(value: String!): e_timeout_settings + + """ + delete data from the table: "e_tournament_categories" + """ + delete_e_tournament_categories( + """filter the rows which have to be deleted""" + where: e_tournament_categories_bool_exp! + ): e_tournament_categories_mutation_response + + """ + delete single row from the table: "e_tournament_categories" + """ + delete_e_tournament_categories_by_pk(value: String!): e_tournament_categories + + """ + delete data from the table: "e_tournament_free_agent_statuses" + """ + delete_e_tournament_free_agent_statuses( + """filter the rows which have to be deleted""" + where: e_tournament_free_agent_statuses_bool_exp! + ): e_tournament_free_agent_statuses_mutation_response + + """ + delete single row from the table: "e_tournament_free_agent_statuses" + """ + delete_e_tournament_free_agent_statuses_by_pk(value: String!): e_tournament_free_agent_statuses + + """ + delete data from the table: "e_tournament_registration_types" + """ + delete_e_tournament_registration_types( + """filter the rows which have to be deleted""" + where: e_tournament_registration_types_bool_exp! + ): e_tournament_registration_types_mutation_response + + """ + delete single row from the table: "e_tournament_registration_types" + """ + delete_e_tournament_registration_types_by_pk(value: String!): e_tournament_registration_types + + """ + delete data from the table: "e_tournament_stage_types" + """ + delete_e_tournament_stage_types( + """filter the rows which have to be deleted""" + where: e_tournament_stage_types_bool_exp! + ): e_tournament_stage_types_mutation_response + + """ + delete single row from the table: "e_tournament_stage_types" + """ + delete_e_tournament_stage_types_by_pk(value: String!): e_tournament_stage_types + + """ + delete data from the table: "e_tournament_status" + """ + delete_e_tournament_status( + """filter the rows which have to be deleted""" + where: e_tournament_status_bool_exp! + ): e_tournament_status_mutation_response + + """ + delete single row from the table: "e_tournament_status" + """ + delete_e_tournament_status_by_pk(value: String!): e_tournament_status + + """ + delete data from the table: "e_utility_practice_access" + """ + delete_e_utility_practice_access( + """filter the rows which have to be deleted""" + where: e_utility_practice_access_bool_exp! + ): e_utility_practice_access_mutation_response + + """ + delete single row from the table: "e_utility_practice_access" + """ + delete_e_utility_practice_access_by_pk(value: String!): e_utility_practice_access + + """ + delete data from the table: "e_utility_practice_statuses" + """ + delete_e_utility_practice_statuses( + """filter the rows which have to be deleted""" + where: e_utility_practice_statuses_bool_exp! + ): e_utility_practice_statuses_mutation_response + + """ + delete single row from the table: "e_utility_practice_statuses" + """ + delete_e_utility_practice_statuses_by_pk(value: String!): e_utility_practice_statuses + + """ + delete data from the table: "e_utility_sources" + """ + delete_e_utility_sources( + """filter the rows which have to be deleted""" + where: e_utility_sources_bool_exp! + ): e_utility_sources_mutation_response + + """ + delete single row from the table: "e_utility_sources" + """ + delete_e_utility_sources_by_pk(value: String!): e_utility_sources + + """ + delete data from the table: "e_utility_techniques" + """ + delete_e_utility_techniques( + """filter the rows which have to be deleted""" + where: e_utility_techniques_bool_exp! + ): e_utility_techniques_mutation_response + + """ + delete single row from the table: "e_utility_techniques" + """ + delete_e_utility_techniques_by_pk(value: String!): e_utility_techniques + + """ + delete data from the table: "e_utility_throw_strengths" + """ + delete_e_utility_throw_strengths( + """filter the rows which have to be deleted""" + where: e_utility_throw_strengths_bool_exp! + ): e_utility_throw_strengths_mutation_response + + """ + delete single row from the table: "e_utility_throw_strengths" + """ + delete_e_utility_throw_strengths_by_pk(value: String!): e_utility_throw_strengths + + """ + delete data from the table: "e_utility_types" + """ + delete_e_utility_types( + """filter the rows which have to be deleted""" + where: e_utility_types_bool_exp! + ): e_utility_types_mutation_response + + """ + delete single row from the table: "e_utility_types" + """ + delete_e_utility_types_by_pk(value: String!): e_utility_types + + """ + delete data from the table: "e_utility_visibility" + """ + delete_e_utility_visibility( + """filter the rows which have to be deleted""" + where: e_utility_visibility_bool_exp! + ): e_utility_visibility_mutation_response + + """ + delete single row from the table: "e_utility_visibility" + """ + delete_e_utility_visibility_by_pk(value: String!): e_utility_visibility + + """ + delete data from the table: "e_veto_pick_types" + """ + delete_e_veto_pick_types( + """filter the rows which have to be deleted""" + where: e_veto_pick_types_bool_exp! + ): e_veto_pick_types_mutation_response + + """ + delete single row from the table: "e_veto_pick_types" + """ + delete_e_veto_pick_types_by_pk(value: String!): e_veto_pick_types + + """ + delete data from the table: "e_winning_reasons" + """ + delete_e_winning_reasons( + """filter the rows which have to be deleted""" + where: e_winning_reasons_bool_exp! + ): e_winning_reasons_mutation_response + + """ + delete single row from the table: "e_winning_reasons" + """ + delete_e_winning_reasons_by_pk(value: String!): e_winning_reasons + + """ + delete data from the table: "event_match_links" + """ + delete_event_match_links( + """filter the rows which have to be deleted""" + where: event_match_links_bool_exp! + ): event_match_links_mutation_response + + """ + delete single row from the table: "event_match_links" + """ + delete_event_match_links_by_pk(event_id: uuid!, match_id: uuid!): event_match_links + + """ + delete data from the table: "event_media" + """ + delete_event_media( + """filter the rows which have to be deleted""" + where: event_media_bool_exp! + ): event_media_mutation_response + + """ + delete single row from the table: "event_media" + """ + delete_event_media_by_pk(id: uuid!): event_media + + """ + delete data from the table: "event_media_players" + """ + delete_event_media_players( + """filter the rows which have to be deleted""" + where: event_media_players_bool_exp! + ): event_media_players_mutation_response + + """ + delete single row from the table: "event_media_players" + """ + delete_event_media_players_by_pk(media_id: uuid!, steam_id: bigint!): event_media_players + + """ + delete data from the table: "event_organizers" + """ + delete_event_organizers( + """filter the rows which have to be deleted""" + where: event_organizers_bool_exp! + ): event_organizers_mutation_response + + """ + delete single row from the table: "event_organizers" + """ + delete_event_organizers_by_pk(event_id: uuid!, steam_id: bigint!): event_organizers + + """ + delete data from the table: "event_players" + """ + delete_event_players( + """filter the rows which have to be deleted""" + where: event_players_bool_exp! + ): event_players_mutation_response + + """ + delete single row from the table: "event_players" + """ + delete_event_players_by_pk(event_id: uuid!, steam_id: bigint!): event_players + + """ + delete data from the table: "event_teams" + """ + delete_event_teams( + """filter the rows which have to be deleted""" + where: event_teams_bool_exp! + ): event_teams_mutation_response + + """ + delete single row from the table: "event_teams" + """ + delete_event_teams_by_pk(event_id: uuid!, team_id: uuid!): event_teams + + """ + delete data from the table: "event_tournaments" + """ + delete_event_tournaments( + """filter the rows which have to be deleted""" + where: event_tournaments_bool_exp! + ): event_tournaments_mutation_response + + """ + delete single row from the table: "event_tournaments" + """ + delete_event_tournaments_by_pk(event_id: uuid!, tournament_id: uuid!): event_tournaments + + """ + delete data from the table: "events" + """ + delete_events( + """filter the rows which have to be deleted""" + where: events_bool_exp! + ): events_mutation_response + + """ + delete single row from the table: "events" + """ + delete_events_by_pk(id: uuid!): events + + """ + delete data from the table: "friends" + """ + delete_friends( + """filter the rows which have to be deleted""" + where: friends_bool_exp! + ): friends_mutation_response + + """ + delete single row from the table: "friends" + """ + 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" + """ + delete_game_server_nodes( + """filter the rows which have to be deleted""" + where: game_server_nodes_bool_exp! + ): game_server_nodes_mutation_response + + """ + delete single row from the table: "game_server_nodes" + """ + delete_game_server_nodes_by_pk(id: String!): game_server_nodes + + """ + delete data from the table: "game_versions" + """ + delete_game_versions( + """filter the rows which have to be deleted""" + where: game_versions_bool_exp! + ): game_versions_mutation_response + + """ + delete single row from the table: "game_versions" + """ + delete_game_versions_by_pk(build_id: Int!): game_versions + + """ + delete data from the table: "gamedata_signature_validations" + """ + delete_gamedata_signature_validations( + """filter the rows which have to be deleted""" + where: gamedata_signature_validations_bool_exp! + ): gamedata_signature_validations_mutation_response + + """ + delete single row from the table: "gamedata_signature_validations" + """ + delete_gamedata_signature_validations_by_pk(id: uuid!): gamedata_signature_validations + + """ + delete data from the table: "leaderboard_entries" + """ + delete_leaderboard_entries( + """filter the rows which have to be deleted""" + where: leaderboard_entries_bool_exp! + ): leaderboard_entries_mutation_response + + """ + delete data from the table: "league_divisions" + """ + delete_league_divisions( + """filter the rows which have to be deleted""" + where: league_divisions_bool_exp! + ): league_divisions_mutation_response + + """ + delete single row from the table: "league_divisions" + """ + delete_league_divisions_by_pk(id: uuid!): league_divisions + + """ + delete data from the table: "league_match_weeks" + """ + delete_league_match_weeks( + """filter the rows which have to be deleted""" + where: league_match_weeks_bool_exp! + ): league_match_weeks_mutation_response + + """ + delete single row from the table: "league_match_weeks" + """ + delete_league_match_weeks_by_pk(id: uuid!): league_match_weeks + + """ + delete data from the table: "league_relegation_playoffs" + """ + delete_league_relegation_playoffs( + """filter the rows which have to be deleted""" + where: league_relegation_playoffs_bool_exp! + ): league_relegation_playoffs_mutation_response + + """ + delete single row from the table: "league_relegation_playoffs" + """ + delete_league_relegation_playoffs_by_pk(id: uuid!): league_relegation_playoffs + + """ + delete data from the table: "league_scheduling_proposals" + """ + delete_league_scheduling_proposals( + """filter the rows which have to be deleted""" + where: league_scheduling_proposals_bool_exp! + ): league_scheduling_proposals_mutation_response + + """ + delete single row from the table: "league_scheduling_proposals" + """ + delete_league_scheduling_proposals_by_pk(id: uuid!): league_scheduling_proposals + + """ + delete data from the table: "league_season_divisions" + """ + delete_league_season_divisions( + """filter the rows which have to be deleted""" + where: league_season_divisions_bool_exp! + ): league_season_divisions_mutation_response + + """ + delete single row from the table: "league_season_divisions" + """ + delete_league_season_divisions_by_pk(id: uuid!): league_season_divisions + + """ + delete data from the table: "league_seasons" + """ + delete_league_seasons( + """filter the rows which have to be deleted""" + where: league_seasons_bool_exp! + ): league_seasons_mutation_response + + """ + delete single row from the table: "league_seasons" + """ + delete_league_seasons_by_pk(id: uuid!): league_seasons + + """ + delete data from the table: "league_team_movements" + """ + delete_league_team_movements( + """filter the rows which have to be deleted""" + where: league_team_movements_bool_exp! + ): league_team_movements_mutation_response + + """ + delete single row from the table: "league_team_movements" + """ + delete_league_team_movements_by_pk(id: uuid!): league_team_movements + + """ + delete data from the table: "league_team_rosters" + """ + delete_league_team_rosters( + """filter the rows which have to be deleted""" + where: league_team_rosters_bool_exp! + ): league_team_rosters_mutation_response + + """ + delete single row from the table: "league_team_rosters" + """ + delete_league_team_rosters_by_pk(league_team_season_id: uuid!, player_steam_id: bigint!): league_team_rosters + + """ + delete data from the table: "league_team_seasons" + """ + delete_league_team_seasons( + """filter the rows which have to be deleted""" + where: league_team_seasons_bool_exp! + ): league_team_seasons_mutation_response + + """ + delete single row from the table: "league_team_seasons" + """ + delete_league_team_seasons_by_pk(id: uuid!): league_team_seasons + + """ + delete data from the table: "league_teams" + """ + delete_league_teams( + """filter the rows which have to be deleted""" + where: league_teams_bool_exp! + ): league_teams_mutation_response + + """ + delete single row from the table: "league_teams" + """ + delete_league_teams_by_pk(id: uuid!): league_teams + + """ + delete data from the table: "lobbies" + """ + delete_lobbies( + """filter the rows which have to be deleted""" + where: lobbies_bool_exp! + ): lobbies_mutation_response + + """ + delete single row from the table: "lobbies" + """ + delete_lobbies_by_pk(id: uuid!): lobbies + + """ + delete data from the table: "lobby_players" + """ + delete_lobby_players( + """filter the rows which have to be deleted""" + where: lobby_players_bool_exp! + ): lobby_players_mutation_response + + """ + delete single row from the table: "lobby_players" + """ + delete_lobby_players_by_pk(lobby_id: uuid!, steam_id: bigint!): lobby_players + + """ + delete data from the table: "map_callouts" + """ + delete_map_callouts( + """filter the rows which have to be deleted""" + where: map_callouts_bool_exp! + ): map_callouts_mutation_response + + """ + delete single row from the table: "map_callouts" + """ + delete_map_callouts_by_pk(map_name: String!, name: String!): map_callouts + + """ + delete data from the table: "map_pools" + """ + delete_map_pools( + """filter the rows which have to be deleted""" + where: map_pools_bool_exp! + ): map_pools_mutation_response + + """ + delete single row from the table: "map_pools" + """ + delete_map_pools_by_pk(id: uuid!): map_pools + + """ + delete data from the table: "maps" + """ + delete_maps( + """filter the rows which have to be deleted""" + where: maps_bool_exp! + ): maps_mutation_response + + """ + delete single row from the table: "maps" + """ + delete_maps_by_pk(id: uuid!): maps + + """ + delete data from the table: "match_clips" + """ + delete_match_clips( + """filter the rows which have to be deleted""" + where: match_clips_bool_exp! + ): match_clips_mutation_response + + """ + delete single row from the table: "match_clips" + """ + delete_match_clips_by_pk(id: uuid!): match_clips + + """ + delete data from the table: "match_demo_sessions" + """ + delete_match_demo_sessions( + """filter the rows which have to be deleted""" + where: match_demo_sessions_bool_exp! + ): match_demo_sessions_mutation_response + + """ + delete single row from the table: "match_demo_sessions" + """ + delete_match_demo_sessions_by_pk(id: uuid!): match_demo_sessions + + """ + delete data from the table: "match_lineup_players" + """ + delete_match_lineup_players( + """filter the rows which have to be deleted""" + where: match_lineup_players_bool_exp! + ): match_lineup_players_mutation_response + + """ + delete single row from the table: "match_lineup_players" + """ + delete_match_lineup_players_by_pk(id: uuid!): match_lineup_players + + """ + delete data from the table: "match_lineups" + """ + delete_match_lineups( + """filter the rows which have to be deleted""" + where: match_lineups_bool_exp! + ): match_lineups_mutation_response + + """ + delete single row from the table: "match_lineups" + """ + delete_match_lineups_by_pk(id: uuid!): match_lineups + + """ + delete data from the table: "match_map_demos" + """ + delete_match_map_demos( + """filter the rows which have to be deleted""" + where: match_map_demos_bool_exp! + ): match_map_demos_mutation_response + + """ + delete single row from the table: "match_map_demos" + """ + delete_match_map_demos_by_pk(id: uuid!): match_map_demos + + """ + delete data from the table: "match_map_rounds" + """ + delete_match_map_rounds( + """filter the rows which have to be deleted""" + where: match_map_rounds_bool_exp! + ): match_map_rounds_mutation_response + + """ + delete single row from the table: "match_map_rounds" + """ + delete_match_map_rounds_by_pk(id: uuid!): match_map_rounds + + """ + delete data from the table: "match_map_veto_picks" + """ + delete_match_map_veto_picks( + """filter the rows which have to be deleted""" + where: match_map_veto_picks_bool_exp! + ): match_map_veto_picks_mutation_response + + """ + delete single row from the table: "match_map_veto_picks" + """ + delete_match_map_veto_picks_by_pk(id: uuid!): match_map_veto_picks + + """ + delete data from the table: "match_maps" + """ + delete_match_maps( + """filter the rows which have to be deleted""" + where: match_maps_bool_exp! + ): match_maps_mutation_response + + """ + delete single row from the table: "match_maps" + """ + delete_match_maps_by_pk(id: uuid!): match_maps + + """ + delete data from the table: "match_options" + """ + delete_match_options( + """filter the rows which have to be deleted""" + where: match_options_bool_exp! + ): match_options_mutation_response + + """ + delete single row from the table: "match_options" + """ + delete_match_options_by_pk(id: uuid!): match_options + + """ + delete data from the table: "match_region_veto_picks" + """ + delete_match_region_veto_picks( + """filter the rows which have to be deleted""" + where: match_region_veto_picks_bool_exp! + ): match_region_veto_picks_mutation_response + + """ + delete single row from the table: "match_region_veto_picks" + """ + delete_match_region_veto_picks_by_pk(id: uuid!): match_region_veto_picks + + """ + delete data from the table: "match_streams" + """ + delete_match_streams( + """filter the rows which have to be deleted""" + where: match_streams_bool_exp! + ): match_streams_mutation_response + + """ + delete single row from the table: "match_streams" + """ + delete_match_streams_by_pk(id: uuid!): match_streams + + """ + delete data from the table: "match_type_cfgs" + """ + delete_match_type_cfgs( + """filter the rows which have to be deleted""" + where: match_type_cfgs_bool_exp! + ): match_type_cfgs_mutation_response + + """ + delete single row from the table: "match_type_cfgs" + """ + delete_match_type_cfgs_by_pk(type: e_game_cfg_types_enum!): match_type_cfgs + + """ + delete data from the table: "matches" + """ + delete_matches( + """filter the rows which have to be deleted""" + where: matches_bool_exp! + ): matches_mutation_response + + """ + delete single row from the table: "matches" + """ + delete_matches_by_pk(id: uuid!): matches + + """ + delete data from the table: "migration_hashes.hashes" + """ + delete_migration_hashes_hashes( + """filter the rows which have to be deleted""" + where: migration_hashes_hashes_bool_exp! + ): migration_hashes_hashes_mutation_response + + """ + delete single row from the table: "migration_hashes.hashes" + """ + delete_migration_hashes_hashes_by_pk(name: String!): migration_hashes_hashes + + """ + delete data from the table: "v_my_friends" + """ + delete_my_friends( + """filter the rows which have to be deleted""" + where: my_friends_bool_exp! + ): my_friends_mutation_response + + """ + delete data from the table: "news_articles" + """ + delete_news_articles( + """filter the rows which have to be deleted""" + where: news_articles_bool_exp! + ): news_articles_mutation_response + + """ + delete single row from the table: "news_articles" + """ + delete_news_articles_by_pk(id: uuid!): news_articles + + """ + delete data from the table: "notification_preferences" + """ + delete_notification_preferences( + """filter the rows which have to be deleted""" + where: notification_preferences_bool_exp! + ): notification_preferences_mutation_response + + """ + delete single row from the table: "notification_preferences" + """ + delete_notification_preferences_by_pk(channel: String!, key: String!, steam_id: bigint!): notification_preferences + + """ + delete data from the table: "notifications" + """ + delete_notifications( + """filter the rows which have to be deleted""" + where: notifications_bool_exp! + ): notifications_mutation_response + + """ + delete single row from the table: "notifications" + """ + delete_notifications_by_pk(id: uuid!): notifications + + """ + delete data from the table: "pending_match_import_players" + """ + delete_pending_match_import_players( + """filter the rows which have to be deleted""" + where: pending_match_import_players_bool_exp! + ): pending_match_import_players_mutation_response + + """ + delete single row from the table: "pending_match_import_players" + """ + delete_pending_match_import_players_by_pk(steam_id: bigint!, valve_match_id: numeric!): pending_match_import_players + + """ + delete data from the table: "pending_match_imports" + """ + delete_pending_match_imports( + """filter the rows which have to be deleted""" + where: pending_match_imports_bool_exp! + ): pending_match_imports_mutation_response + + """ + delete single row from the table: "pending_match_imports" + """ + delete_pending_match_imports_by_pk(valve_match_id: numeric!): pending_match_imports + + """ + delete data from the table: "player_aim_stats_demo" + """ + delete_player_aim_stats_demo( + """filter the rows which have to be deleted""" + where: player_aim_stats_demo_bool_exp! + ): player_aim_stats_demo_mutation_response + + """ + delete single row from the table: "player_aim_stats_demo" + """ + delete_player_aim_stats_demo_by_pk(attacker_steam_id: bigint!, match_map_id: uuid!): player_aim_stats_demo + + """ + delete data from the table: "player_aim_weapon_stats" + """ + delete_player_aim_weapon_stats( + """filter the rows which have to be deleted""" + where: player_aim_weapon_stats_bool_exp! + ): player_aim_weapon_stats_mutation_response + + """ + delete single row from the table: "player_aim_weapon_stats" + """ + delete_player_aim_weapon_stats_by_pk(match_map_id: uuid!, steam_id: bigint!, weapon_class: String!): player_aim_weapon_stats + + """ + delete data from the table: "player_assists" + """ + delete_player_assists( + """filter the rows which have to be deleted""" + where: player_assists_bool_exp! + ): player_assists_mutation_response + + """ + delete single row from the table: "player_assists" + """ + delete_player_assists_by_pk(attacked_steam_id: bigint!, attacker_steam_id: bigint!, match_map_id: uuid!, time: timestamptz!): player_assists + + """ + delete data from the table: "player_damages" + """ + delete_player_damages( + """filter the rows which have to be deleted""" + where: player_damages_bool_exp! + ): player_damages_mutation_response + + """ + delete single row from the table: "player_damages" + """ + delete_player_damages_by_pk(id: uuid!, match_map_id: uuid!, time: timestamptz!): player_damages + + """ + delete data from the table: "player_elo" + """ + delete_player_elo( + """filter the rows which have to be deleted""" + where: player_elo_bool_exp! + ): player_elo_mutation_response + + """ + delete single row from the table: "player_elo" + """ + delete_player_elo_by_pk(match_id: uuid!, steam_id: bigint!, type: e_match_types_enum!): player_elo + + """ + delete data from the table: "player_faceit_rank_history" + """ + delete_player_faceit_rank_history( + """filter the rows which have to be deleted""" + where: player_faceit_rank_history_bool_exp! + ): player_faceit_rank_history_mutation_response + + """ + delete single row from the table: "player_faceit_rank_history" + """ + delete_player_faceit_rank_history_by_pk(id: uuid!): player_faceit_rank_history + + """ + delete data from the table: "player_flashes" + """ + delete_player_flashes( + """filter the rows which have to be deleted""" + where: player_flashes_bool_exp! + ): player_flashes_mutation_response + + """ + delete single row from the table: "player_flashes" + """ + delete_player_flashes_by_pk(attacked_steam_id: bigint!, attacker_steam_id: bigint!, match_map_id: uuid!, time: timestamptz!): player_flashes + + """ + delete data from the table: "player_kills" + """ + delete_player_kills( + """filter the rows which have to be deleted""" + where: player_kills_bool_exp! + ): player_kills_mutation_response + + """ + delete single row from the table: "player_kills" + """ + delete_player_kills_by_pk(attacked_steam_id: bigint!, attacker_steam_id: bigint!, match_map_id: uuid!, time: timestamptz!): player_kills + + """ + delete data from the table: "player_kills_by_weapon" + """ + delete_player_kills_by_weapon( + """filter the rows which have to be deleted""" + where: player_kills_by_weapon_bool_exp! + ): player_kills_by_weapon_mutation_response + + """ + delete single row from the table: "player_kills_by_weapon" + """ + delete_player_kills_by_weapon_by_pk(player_steam_id: bigint!, with: String!): player_kills_by_weapon + + """ + delete data from the table: "player_leaderboard_rank" + """ + delete_player_leaderboard_rank( + """filter the rows which have to be deleted""" + where: player_leaderboard_rank_bool_exp! + ): player_leaderboard_rank_mutation_response + + """ + delete data from the table: "player_match_map_stats" + """ + delete_player_match_map_stats( + """filter the rows which have to be deleted""" + where: player_match_map_stats_bool_exp! + ): player_match_map_stats_mutation_response + + """ + delete single row from the table: "player_match_map_stats" + """ + delete_player_match_map_stats_by_pk(match_map_id: uuid!, steam_id: bigint!): player_match_map_stats + + """ + delete data from the table: "player_objectives" + """ + delete_player_objectives( + """filter the rows which have to be deleted""" + where: player_objectives_bool_exp! + ): player_objectives_mutation_response + + """ + delete single row from the table: "player_objectives" + """ + delete_player_objectives_by_pk(match_map_id: uuid!, player_steam_id: bigint!, time: timestamptz!): player_objectives + + """ + delete data from the table: "player_premier_rank_history" + """ + delete_player_premier_rank_history( + """filter the rows which have to be deleted""" + where: player_premier_rank_history_bool_exp! + ): player_premier_rank_history_mutation_response + + """ + delete single row from the table: "player_premier_rank_history" + """ + delete_player_premier_rank_history_by_pk(id: uuid!): player_premier_rank_history + + """ + delete data from the table: "player_sanctions" + """ + delete_player_sanctions( + """filter the rows which have to be deleted""" + where: player_sanctions_bool_exp! + ): player_sanctions_mutation_response + + """ + delete single row from the table: "player_sanctions" + """ + delete_player_sanctions_by_pk(created_at: timestamptz!, id: uuid!): player_sanctions + + """ + delete data from the table: "player_season_stats" + """ + delete_player_season_stats( + """filter the rows which have to be deleted""" + where: player_season_stats_bool_exp! + ): player_season_stats_mutation_response + + """ + delete single row from the table: "player_season_stats" + """ + delete_player_season_stats_by_pk(player_steam_id: bigint!, season_id: uuid!): player_season_stats + + """ + delete data from the table: "player_stats" + """ + delete_player_stats( + """filter the rows which have to be deleted""" + where: player_stats_bool_exp! + ): player_stats_mutation_response + + """ + delete single row from the table: "player_stats" + """ + delete_player_stats_by_pk(player_steam_id: bigint!): player_stats + + """ + delete data from the table: "player_steam_bot_friend" + """ + delete_player_steam_bot_friend( + """filter the rows which have to be deleted""" + where: player_steam_bot_friend_bool_exp! + ): player_steam_bot_friend_mutation_response + + """ + delete single row from the table: "player_steam_bot_friend" + """ + delete_player_steam_bot_friend_by_pk(steam_id: bigint!): player_steam_bot_friend + + """ + delete data from the table: "player_steam_match_auth" + """ + delete_player_steam_match_auth( + """filter the rows which have to be deleted""" + where: player_steam_match_auth_bool_exp! + ): player_steam_match_auth_mutation_response + + """ + delete single row from the table: "player_steam_match_auth" + """ + delete_player_steam_match_auth_by_pk(steam_id: bigint!): player_steam_match_auth + + """ + delete data from the table: "player_unused_utility" + """ + delete_player_unused_utility( + """filter the rows which have to be deleted""" + where: player_unused_utility_bool_exp! + ): player_unused_utility_mutation_response + + """ + delete single row from the table: "player_unused_utility" + """ + delete_player_unused_utility_by_pk(match_map_id: uuid!, player_steam_id: bigint!): player_unused_utility + + """ + delete data from the table: "player_utility" + """ + delete_player_utility( + """filter the rows which have to be deleted""" + where: player_utility_bool_exp! + ): player_utility_mutation_response + + """ + delete single row from the table: "player_utility" + """ + delete_player_utility_by_pk(attacker_steam_id: bigint!, match_map_id: uuid!, time: timestamptz!): player_utility + + """ + delete data from the table: "players" + """ + delete_players( + """filter the rows which have to be deleted""" + where: players_bool_exp! + ): players_mutation_response + + """ + delete single row from the table: "players" + """ + delete_players_by_pk(steam_id: bigint!): players + + """ + delete data from the table: "plugin_versions" + """ + delete_plugin_versions( + """filter the rows which have to be deleted""" + where: plugin_versions_bool_exp! + ): plugin_versions_mutation_response + + """ + delete single row from the table: "plugin_versions" + """ + delete_plugin_versions_by_pk(runtime: e_plugin_runtimes_enum!, version: String!): plugin_versions + + """ + delete data from the table: "push_subscriptions" + """ + delete_push_subscriptions( + """filter the rows which have to be deleted""" + where: push_subscriptions_bool_exp! + ): push_subscriptions_mutation_response + + """ + delete single row from the table: "push_subscriptions" + """ + delete_push_subscriptions_by_pk(id: uuid!): push_subscriptions + + """ + delete data from the table: "v_role_permissions" + """ + delete_role_permissions( + """filter the rows which have to be deleted""" + where: role_permissions_bool_exp! + ): role_permissions_mutation_response + + """ + delete data from the table: "seasons" + """ + delete_seasons( + """filter the rows which have to be deleted""" + where: seasons_bool_exp! + ): seasons_mutation_response + + """ + delete single row from the table: "seasons" + """ + delete_seasons_by_pk(id: uuid!): seasons + + """ + delete data from the table: "server_regions" + """ + delete_server_regions( + """filter the rows which have to be deleted""" + where: server_regions_bool_exp! + ): server_regions_mutation_response + + """ + delete single row from the table: "server_regions" + """ + delete_server_regions_by_pk(value: String!): server_regions + + """ + delete data from the table: "servers" + """ + delete_servers( + """filter the rows which have to be deleted""" + where: servers_bool_exp! + ): servers_mutation_response + + """ + delete single row from the table: "servers" + """ + delete_servers_by_pk(id: uuid!): servers + + """ + delete data from the table: "settings" + """ + delete_settings( + """filter the rows which have to be deleted""" + where: settings_bool_exp! + ): settings_mutation_response + + """ + delete single row from the table: "settings" + """ + delete_settings_by_pk(name: String!): settings + + """ + delete data from the table: "steam_account_claims" + """ + delete_steam_account_claims( + """filter the rows which have to be deleted""" + where: steam_account_claims_bool_exp! + ): steam_account_claims_mutation_response + + """ + delete single row from the table: "steam_account_claims" + """ + delete_steam_account_claims_by_pk(id: uuid!): steam_account_claims + + """ + delete data from the table: "steam_accounts" + """ + delete_steam_accounts( + """filter the rows which have to be deleted""" + where: steam_accounts_bool_exp! + ): steam_accounts_mutation_response + + """ + delete single row from the table: "steam_accounts" + """ + delete_steam_accounts_by_pk(id: uuid!): steam_accounts + + """ + delete data from the table: "system_alerts" + """ + delete_system_alerts( + """filter the rows which have to be deleted""" + where: system_alerts_bool_exp! + ): system_alerts_mutation_response + + """ + delete single row from the table: "system_alerts" + """ + delete_system_alerts_by_pk(id: uuid!): system_alerts + + """ + delete data from the table: "team_invites" + """ + delete_team_invites( + """filter the rows which have to be deleted""" + where: team_invites_bool_exp! + ): team_invites_mutation_response + + """ + delete single row from the table: "team_invites" + """ + delete_team_invites_by_pk(id: uuid!): team_invites + + """ + delete data from the table: "team_roster" + """ + delete_team_roster( + """filter the rows which have to be deleted""" + where: team_roster_bool_exp! + ): team_roster_mutation_response + + """ + delete single row from the table: "team_roster" + """ + delete_team_roster_by_pk(player_steam_id: bigint!, team_id: uuid!): team_roster + + """ + delete data from the table: "team_scrim_alerts" + """ + delete_team_scrim_alerts( + """filter the rows which have to be deleted""" + where: team_scrim_alerts_bool_exp! + ): team_scrim_alerts_mutation_response + + """ + delete single row from the table: "team_scrim_alerts" + """ + delete_team_scrim_alerts_by_pk(id: uuid!): team_scrim_alerts + + """ + delete data from the table: "team_scrim_availability" + """ + delete_team_scrim_availability( + """filter the rows which have to be deleted""" + where: team_scrim_availability_bool_exp! + ): team_scrim_availability_mutation_response + + """ + delete single row from the table: "team_scrim_availability" + """ + delete_team_scrim_availability_by_pk(id: uuid!): team_scrim_availability + + """ + delete data from the table: "team_scrim_request_proposals" + """ + delete_team_scrim_request_proposals( + """filter the rows which have to be deleted""" + where: team_scrim_request_proposals_bool_exp! + ): team_scrim_request_proposals_mutation_response + + """ + delete single row from the table: "team_scrim_request_proposals" + """ + delete_team_scrim_request_proposals_by_pk(id: uuid!): team_scrim_request_proposals + + """ + delete data from the table: "team_scrim_requests" + """ + delete_team_scrim_requests( + """filter the rows which have to be deleted""" + where: team_scrim_requests_bool_exp! + ): team_scrim_requests_mutation_response + + """ + delete single row from the table: "team_scrim_requests" + """ + delete_team_scrim_requests_by_pk(id: uuid!): team_scrim_requests + + """ + delete data from the table: "team_scrim_settings" + """ + delete_team_scrim_settings( + """filter the rows which have to be deleted""" + where: team_scrim_settings_bool_exp! + ): team_scrim_settings_mutation_response + + """ + delete single row from the table: "team_scrim_settings" + """ + delete_team_scrim_settings_by_pk(id: uuid!): team_scrim_settings + + """ + delete data from the table: "team_suggestions" + """ + delete_team_suggestions( + """filter the rows which have to be deleted""" + where: team_suggestions_bool_exp! + ): team_suggestions_mutation_response + + """ + delete single row from the table: "team_suggestions" + """ + delete_team_suggestions_by_pk(id: uuid!): team_suggestions + + """ + delete data from the table: "teams" + """ + delete_teams( + """filter the rows which have to be deleted""" + where: teams_bool_exp! + ): teams_mutation_response + + """ + delete single row from the table: "teams" + """ + delete_teams_by_pk(id: uuid!): teams + + """ + delete data from the table: "tournament_awards" + """ + delete_tournament_awards( + """filter the rows which have to be deleted""" + where: tournament_awards_bool_exp! + ): tournament_awards_mutation_response + + """ + delete single row from the table: "tournament_awards" + """ + delete_tournament_awards_by_pk(id: uuid!): tournament_awards + + """ + delete data from the table: "tournament_brackets" + """ + delete_tournament_brackets( + """filter the rows which have to be deleted""" + where: tournament_brackets_bool_exp! + ): tournament_brackets_mutation_response + + """ + delete single row from the table: "tournament_brackets" + """ + delete_tournament_brackets_by_pk(id: uuid!): tournament_brackets + + """ + delete data from the table: "tournament_categories" + """ + delete_tournament_categories( + """filter the rows which have to be deleted""" + where: tournament_categories_bool_exp! + ): tournament_categories_mutation_response + + """ + delete single row from the table: "tournament_categories" + """ + delete_tournament_categories_by_pk(category: e_tournament_categories_enum!, tournament_id: uuid!): tournament_categories + + """ + delete data from the table: "tournament_free_agents" + """ + delete_tournament_free_agents( + """filter the rows which have to be deleted""" + where: tournament_free_agents_bool_exp! + ): tournament_free_agents_mutation_response + + """ + delete single row from the table: "tournament_free_agents" + """ + delete_tournament_free_agents_by_pk(id: uuid!): tournament_free_agents + + """ + delete data from the table: "tournament_invite_code_uses" + """ + delete_tournament_invite_code_uses( + """filter the rows which have to be deleted""" + where: tournament_invite_code_uses_bool_exp! + ): tournament_invite_code_uses_mutation_response + + """ + delete single row from the table: "tournament_invite_code_uses" + """ + delete_tournament_invite_code_uses_by_pk(invite_code_id: uuid!, player_steam_id: bigint!): tournament_invite_code_uses + + """ + delete data from the table: "tournament_invite_codes" + """ + delete_tournament_invite_codes( + """filter the rows which have to be deleted""" + where: tournament_invite_codes_bool_exp! + ): tournament_invite_codes_mutation_response + + """ + delete single row from the table: "tournament_invite_codes" + """ + delete_tournament_invite_codes_by_pk(id: uuid!): tournament_invite_codes + + """ + delete data from the table: "tournament_invites" + """ + delete_tournament_invites( + """filter the rows which have to be deleted""" + where: tournament_invites_bool_exp! + ): tournament_invites_mutation_response + + """ + delete single row from the table: "tournament_invites" + """ + delete_tournament_invites_by_pk(id: uuid!): tournament_invites + + """ + delete data from the table: "tournament_leaderboard_entries" + """ + delete_tournament_leaderboard_entries( + """filter the rows which have to be deleted""" + where: tournament_leaderboard_entries_bool_exp! + ): tournament_leaderboard_entries_mutation_response + + """ + delete data from the table: "tournament_no_shows" + """ + delete_tournament_no_shows( + """filter the rows which have to be deleted""" + where: tournament_no_shows_bool_exp! + ): tournament_no_shows_mutation_response + + """ + delete single row from the table: "tournament_no_shows" + """ + delete_tournament_no_shows_by_pk(id: uuid!): tournament_no_shows + + """ + delete data from the table: "tournament_organizer_teams" + """ + delete_tournament_organizer_teams( + """filter the rows which have to be deleted""" + where: tournament_organizer_teams_bool_exp! + ): tournament_organizer_teams_mutation_response + + """ + delete single row from the table: "tournament_organizer_teams" + """ + delete_tournament_organizer_teams_by_pk(team_id: uuid!, tournament_id: uuid!): tournament_organizer_teams + + """ + delete data from the table: "tournament_organizers" + """ + delete_tournament_organizers( + """filter the rows which have to be deleted""" + where: tournament_organizers_bool_exp! + ): tournament_organizers_mutation_response + + """ + delete single row from the table: "tournament_organizers" + """ + delete_tournament_organizers_by_pk(steam_id: bigint!, tournament_id: uuid!): tournament_organizers + + """ + delete data from the table: "tournament_prizes" + """ + delete_tournament_prizes( + """filter the rows which have to be deleted""" + where: tournament_prizes_bool_exp! + ): tournament_prizes_mutation_response + + """ + delete single row from the table: "tournament_prizes" + """ + delete_tournament_prizes_by_pk(id: uuid!): tournament_prizes + + """ + delete data from the table: "tournament_registration_unlocks" + """ + delete_tournament_registration_unlocks( + """filter the rows which have to be deleted""" + where: tournament_registration_unlocks_bool_exp! + ): tournament_registration_unlocks_mutation_response + + """ + delete data from the table: "tournament_stage_windows" + """ + delete_tournament_stage_windows( + """filter the rows which have to be deleted""" + where: tournament_stage_windows_bool_exp! + ): tournament_stage_windows_mutation_response + + """ + delete single row from the table: "tournament_stage_windows" + """ + delete_tournament_stage_windows_by_pk(id: uuid!): tournament_stage_windows + + """ + delete data from the table: "tournament_stages" + """ + delete_tournament_stages( + """filter the rows which have to be deleted""" + where: tournament_stages_bool_exp! + ): tournament_stages_mutation_response + + """ + delete single row from the table: "tournament_stages" + """ + delete_tournament_stages_by_pk(id: uuid!): tournament_stages + + """ + delete data from the table: "tournament_team_invites" + """ + delete_tournament_team_invites( + """filter the rows which have to be deleted""" + where: tournament_team_invites_bool_exp! + ): tournament_team_invites_mutation_response + + """ + delete single row from the table: "tournament_team_invites" + """ + delete_tournament_team_invites_by_pk(id: uuid!): tournament_team_invites + + """ + delete data from the table: "tournament_team_roster" + """ + delete_tournament_team_roster( + """filter the rows which have to be deleted""" + where: tournament_team_roster_bool_exp! + ): tournament_team_roster_mutation_response + + """ + delete single row from the table: "tournament_team_roster" + """ + delete_tournament_team_roster_by_pk(player_steam_id: bigint!, tournament_id: uuid!): tournament_team_roster + + """ + delete data from the table: "tournament_teams" + """ + delete_tournament_teams( + """filter the rows which have to be deleted""" + where: tournament_teams_bool_exp! + ): tournament_teams_mutation_response + + """ + delete single row from the table: "tournament_teams" + """ + delete_tournament_teams_by_pk(id: uuid!): tournament_teams + + """ + delete data from the table: "tournaments" + """ + delete_tournaments( + """filter the rows which have to be deleted""" + where: tournaments_bool_exp! + ): tournaments_mutation_response + + """ + delete single row from the table: "tournaments" + """ + delete_tournaments_by_pk(id: uuid!): tournaments + + """ + delete data from the table: "utility_collection_items" + """ + delete_utility_collection_items( + """filter the rows which have to be deleted""" + where: utility_collection_items_bool_exp! + ): utility_collection_items_mutation_response + + """ + delete single row from the table: "utility_collection_items" + """ + delete_utility_collection_items_by_pk(collection_id: uuid!, utility_lineup_id: uuid!): utility_collection_items + + """ + delete data from the table: "utility_collections" + """ + delete_utility_collections( + """filter the rows which have to be deleted""" + where: utility_collections_bool_exp! + ): utility_collections_mutation_response + + """ + delete single row from the table: "utility_collections" + """ + delete_utility_collections_by_pk(id: uuid!): utility_collections + + """ + delete data from the table: "utility_demo_mines" + """ + delete_utility_demo_mines( + """filter the rows which have to be deleted""" + where: utility_demo_mines_bool_exp! + ): utility_demo_mines_mutation_response + + """ + delete single row from the table: "utility_demo_mines" + """ + delete_utility_demo_mines_by_pk(match_map_demo_id: uuid!): utility_demo_mines + + """ + delete data from the table: "utility_demo_throws" + """ + delete_utility_demo_throws( + """filter the rows which have to be deleted""" + where: utility_demo_throws_bool_exp! + ): utility_demo_throws_mutation_response + + """ + delete single row from the table: "utility_demo_throws" + """ + delete_utility_demo_throws_by_pk(grenade_id: Int!, match_map_demo_id: uuid!): utility_demo_throws + + """ + delete data from the table: "utility_drift_results" + """ + delete_utility_drift_results( + """filter the rows which have to be deleted""" + where: utility_drift_results_bool_exp! + ): utility_drift_results_mutation_response + + """ + delete single row from the table: "utility_drift_results" + """ + delete_utility_drift_results_by_pk(utility_drift_scan_id: uuid!, utility_lineup_id: uuid!): utility_drift_results + + """ + delete data from the table: "utility_drift_scans" + """ + delete_utility_drift_scans( + """filter the rows which have to be deleted""" + where: utility_drift_scans_bool_exp! + ): utility_drift_scans_mutation_response + + """ + delete single row from the table: "utility_drift_scans" + """ + delete_utility_drift_scans_by_pk(id: uuid!): utility_drift_scans + + """ + delete data from the table: "utility_lineup_favorites" + """ + delete_utility_lineup_favorites( + """filter the rows which have to be deleted""" + where: utility_lineup_favorites_bool_exp! + ): utility_lineup_favorites_mutation_response + + """ + delete single row from the table: "utility_lineup_favorites" + """ + delete_utility_lineup_favorites_by_pk(steam_id: bigint!, utility_lineup_id: uuid!): utility_lineup_favorites + + """ + delete data from the table: "utility_lineup_progress" + """ + delete_utility_lineup_progress( + """filter the rows which have to be deleted""" + where: utility_lineup_progress_bool_exp! + ): utility_lineup_progress_mutation_response + + """ + delete single row from the table: "utility_lineup_progress" + """ + delete_utility_lineup_progress_by_pk(steam_id: bigint!, utility_lineup_id: uuid!): utility_lineup_progress + + """ + delete data from the table: "utility_lineup_renders" + """ + delete_utility_lineup_renders( + """filter the rows which have to be deleted""" + where: utility_lineup_renders_bool_exp! + ): utility_lineup_renders_mutation_response + + """ + delete single row from the table: "utility_lineup_renders" + """ + delete_utility_lineup_renders_by_pk(id: uuid!): utility_lineup_renders + + """ + delete data from the table: "utility_lineup_repairs" + """ + delete_utility_lineup_repairs( + """filter the rows which have to be deleted""" + where: utility_lineup_repairs_bool_exp! + ): utility_lineup_repairs_mutation_response + + """ + delete single row from the table: "utility_lineup_repairs" + """ + delete_utility_lineup_repairs_by_pk(id: uuid!): utility_lineup_repairs + + """ + delete data from the table: "utility_lineup_votes" + """ + delete_utility_lineup_votes( + """filter the rows which have to be deleted""" + where: utility_lineup_votes_bool_exp! + ): utility_lineup_votes_mutation_response + + """ + delete single row from the table: "utility_lineup_votes" + """ + delete_utility_lineup_votes_by_pk(steam_id: bigint!, utility_lineup_id: uuid!): utility_lineup_votes + + """ + delete data from the table: "utility_lineups" + """ + delete_utility_lineups( + """filter the rows which have to be deleted""" + where: utility_lineups_bool_exp! + ): utility_lineups_mutation_response + + """ + delete single row from the table: "utility_lineups" + """ + delete_utility_lineups_by_pk(id: uuid!): utility_lineups + + """ + delete data from the table: "utility_meta_lineups" + """ + delete_utility_meta_lineups( + """filter the rows which have to be deleted""" + where: utility_meta_lineups_bool_exp! + ): utility_meta_lineups_mutation_response + + """ + delete single row from the table: "utility_meta_lineups" + """ + delete_utility_meta_lineups_by_pk(lineup_bucket: String!): utility_meta_lineups + + """ + delete data from the table: "utility_playbook_steps" + """ + delete_utility_playbook_steps( + """filter the rows which have to be deleted""" + where: utility_playbook_steps_bool_exp! + ): utility_playbook_steps_mutation_response + + """ + delete single row from the table: "utility_playbook_steps" + """ + delete_utility_playbook_steps_by_pk(id: uuid!): utility_playbook_steps + + """ + delete data from the table: "utility_playbooks" + """ + delete_utility_playbooks( + """filter the rows which have to be deleted""" + where: utility_playbooks_bool_exp! + ): utility_playbooks_mutation_response + + """ + delete single row from the table: "utility_playbooks" + """ + delete_utility_playbooks_by_pk(id: uuid!): utility_playbooks + + """ + delete data from the table: "utility_practice_invites" + """ + delete_utility_practice_invites( + """filter the rows which have to be deleted""" + where: utility_practice_invites_bool_exp! + ): utility_practice_invites_mutation_response + + """ + delete single row from the table: "utility_practice_invites" + """ + delete_utility_practice_invites_by_pk(steam_id: bigint!, utility_practice_session_id: uuid!): utility_practice_invites + + """ + delete data from the table: "utility_practice_sessions" + """ + delete_utility_practice_sessions( + """filter the rows which have to be deleted""" + where: utility_practice_sessions_bool_exp! + ): utility_practice_sessions_mutation_response + + """ + delete single row from the table: "utility_practice_sessions" + """ + delete_utility_practice_sessions_by_pk(id: uuid!): utility_practice_sessions + + """ + delete data from the table: "v_match_captains" + """ + delete_v_match_captains( + """filter the rows which have to be deleted""" + where: v_match_captains_bool_exp! + ): v_match_captains_mutation_response + + """ + delete data from the table: "v_match_map_backup_rounds" + """ + delete_v_match_map_backup_rounds( + """filter the rows which have to be deleted""" + where: v_match_map_backup_rounds_bool_exp! + ): v_match_map_backup_rounds_mutation_response + + """ + delete data from the table: "v_player_match_map_hltv" + """ + delete_v_player_match_map_hltv( + """filter the rows which have to be deleted""" + where: v_player_match_map_hltv_bool_exp! + ): v_player_match_map_hltv_mutation_response + + """ + delete data from the table: "v_pool_maps" + """ + delete_v_pool_maps( + """filter the rows which have to be deleted""" + where: v_pool_maps_bool_exp! + ): v_pool_maps_mutation_response + + """ + delete data from the table: "v_team_stage_results" + """ + delete_v_team_stage_results( + """filter the rows which have to be deleted""" + where: v_team_stage_results_bool_exp! + ): v_team_stage_results_mutation_response + + """ + delete single row from the table: "v_team_stage_results" + """ + delete_v_team_stage_results_by_pk(tournament_stage_id: uuid!, tournament_team_id: uuid!): v_team_stage_results + denyInvite(invite_id: uuid!, type: String!): SuccessOutput + denyNameChange(name: String!, steam_id: bigint!): SuccessOutput + + """Organizer regenerates the free agent teams and re-seeds""" + draftTournamentTeams(tournament_id: uuid!): TournamentDraftOutput + + """Organizer pushes the check-in deadline out and reopens registration""" + extendTournamentCheckIn(minutes: Int!, tournament_id: uuid!): SuccessOutput + forfeitMatch(match_id: uuid!, winning_lineup_id: uuid!): SuccessOutput + + """Copy a lineup you can see into your own library""" + forkUtilityLineup(collection_id: uuid, name: String, utility_lineup_id: uuid!): UtilityLineupOutput + + """ + 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""" + grantAward(award_id: uuid!, event_id: uuid, league_season_id: uuid, note: String, player_steam_id: String, season_id: uuid, team_id: uuid, tournament_id: uuid): AwardRecipient + + """Seed the utility library from an operator-supplied payload""" + importUtilityLineups(dry_run: Boolean, payload: jsonb!): UtilityImportOutput + + """ + insert data into the table: "_map_pool" + """ + insert__map_pool( + """the rows to be inserted""" + objects: [_map_pool_insert_input!]! + + """upsert condition""" + on_conflict: _map_pool_on_conflict + ): _map_pool_mutation_response + + """ + insert a single row into the table: "_map_pool" + """ + insert__map_pool_one( + """the row to be inserted""" + object: _map_pool_insert_input! + + """upsert condition""" + on_conflict: _map_pool_on_conflict + ): _map_pool + + """ + insert data into the table: "abandoned_matches" + """ + insert_abandoned_matches( + """the rows to be inserted""" + objects: [abandoned_matches_insert_input!]! + + """upsert condition""" + on_conflict: abandoned_matches_on_conflict + ): abandoned_matches_mutation_response + + """ + insert a single row into the table: "abandoned_matches" + """ + insert_abandoned_matches_one( + """the row to be inserted""" + object: abandoned_matches_insert_input! + + """upsert condition""" + on_conflict: abandoned_matches_on_conflict + ): abandoned_matches + + """ + insert data into the table: "api_keys" + """ + insert_api_keys( + """the rows to be inserted""" + objects: [api_keys_insert_input!]! + + """upsert condition""" + on_conflict: api_keys_on_conflict + ): api_keys_mutation_response + + """ + insert a single row into the table: "api_keys" + """ + insert_api_keys_one( + """the row to be inserted""" + object: api_keys_insert_input! + + """upsert condition""" + on_conflict: api_keys_on_conflict + ): api_keys + + """ + insert data into the table: "award_recipients" + """ + insert_award_recipients( + """the rows to be inserted""" + objects: [award_recipients_insert_input!]! + + """upsert condition""" + on_conflict: award_recipients_on_conflict + ): award_recipients_mutation_response + + """ + insert a single row into the table: "award_recipients" + """ + insert_award_recipients_one( + """the row to be inserted""" + object: award_recipients_insert_input! + + """upsert condition""" + on_conflict: award_recipients_on_conflict + ): award_recipients + + """ + insert data into the table: "awards" + """ + insert_awards( + """the rows to be inserted""" + objects: [awards_insert_input!]! + + """upsert condition""" + on_conflict: awards_on_conflict + ): awards_mutation_response + + """ + insert a single row into the table: "awards" + """ + insert_awards_one( + """the row to be inserted""" + object: awards_insert_input! + + """upsert condition""" + on_conflict: awards_on_conflict + ): awards + + """ + insert data into the table: "chat_read_state" + """ + insert_chat_read_state( + """the rows to be inserted""" + objects: [chat_read_state_insert_input!]! + + """upsert condition""" + on_conflict: chat_read_state_on_conflict + ): chat_read_state_mutation_response + + """ + insert a single row into the table: "chat_read_state" + """ + insert_chat_read_state_one( + """the row to be inserted""" + object: chat_read_state_insert_input! + + """upsert condition""" + on_conflict: chat_read_state_on_conflict + ): chat_read_state + + """ + insert data into the table: "clip_render_jobs" + """ + insert_clip_render_jobs( + """the rows to be inserted""" + objects: [clip_render_jobs_insert_input!]! + + """upsert condition""" + on_conflict: clip_render_jobs_on_conflict + ): clip_render_jobs_mutation_response + + """ + insert a single row into the table: "clip_render_jobs" + """ + insert_clip_render_jobs_one( + """the row to be inserted""" + object: clip_render_jobs_insert_input! + + """upsert condition""" + on_conflict: clip_render_jobs_on_conflict + ): clip_render_jobs + + """ + insert data into the table: "custom_pages" + """ + insert_custom_pages( + """the rows to be inserted""" + objects: [custom_pages_insert_input!]! + + """upsert condition""" + on_conflict: custom_pages_on_conflict + ): custom_pages_mutation_response + + """ + insert a single row into the table: "custom_pages" + """ + insert_custom_pages_one( + """the row to be inserted""" + object: custom_pages_insert_input! + + """upsert condition""" + on_conflict: custom_pages_on_conflict + ): custom_pages + + """ + insert data into the table: "db_backups" + """ + insert_db_backups( + """the rows to be inserted""" + objects: [db_backups_insert_input!]! + + """upsert condition""" + on_conflict: db_backups_on_conflict + ): db_backups_mutation_response + + """ + insert a single row into the table: "db_backups" + """ + insert_db_backups_one( + """the row to be inserted""" + object: db_backups_insert_input! + + """upsert condition""" + on_conflict: db_backups_on_conflict + ): db_backups + + """ + insert data into the table: "direct_conversations" + """ + insert_direct_conversations( + """the rows to be inserted""" + objects: [direct_conversations_insert_input!]! + + """upsert condition""" + on_conflict: direct_conversations_on_conflict + ): direct_conversations_mutation_response + + """ + insert a single row into the table: "direct_conversations" + """ + insert_direct_conversations_one( + """the row to be inserted""" + object: direct_conversations_insert_input! + + """upsert condition""" + on_conflict: direct_conversations_on_conflict + ): direct_conversations + + """ + insert data into the table: "direct_messages" + """ + insert_direct_messages( + """the rows to be inserted""" + objects: [direct_messages_insert_input!]! + + """upsert condition""" + on_conflict: direct_messages_on_conflict + ): direct_messages_mutation_response + + """ + insert a single row into the table: "direct_messages" + """ + insert_direct_messages_one( + """the row to be inserted""" + object: direct_messages_insert_input! + + """upsert condition""" + on_conflict: direct_messages_on_conflict + ): direct_messages + + """ + insert data into the table: "draft_game_picks" + """ + insert_draft_game_picks( + """the rows to be inserted""" + objects: [draft_game_picks_insert_input!]! + + """upsert condition""" + on_conflict: draft_game_picks_on_conflict + ): draft_game_picks_mutation_response + + """ + insert a single row into the table: "draft_game_picks" + """ + insert_draft_game_picks_one( + """the row to be inserted""" + object: draft_game_picks_insert_input! + + """upsert condition""" + on_conflict: draft_game_picks_on_conflict + ): draft_game_picks + + """ + insert data into the table: "draft_game_players" + """ + insert_draft_game_players( + """the rows to be inserted""" + objects: [draft_game_players_insert_input!]! + + """upsert condition""" + on_conflict: draft_game_players_on_conflict + ): draft_game_players_mutation_response + + """ + insert a single row into the table: "draft_game_players" + """ + insert_draft_game_players_one( + """the row to be inserted""" + object: draft_game_players_insert_input! + + """upsert condition""" + on_conflict: draft_game_players_on_conflict + ): draft_game_players + + """ + insert data into the table: "draft_games" + """ + insert_draft_games( + """the rows to be inserted""" + objects: [draft_games_insert_input!]! + + """upsert condition""" + on_conflict: draft_games_on_conflict + ): draft_games_mutation_response + + """ + insert a single row into the table: "draft_games" + """ + insert_draft_games_one( + """the row to be inserted""" + object: draft_games_insert_input! + + """upsert condition""" + on_conflict: draft_games_on_conflict + ): draft_games + + """ + insert data into the table: "e_award_sources" + """ + insert_e_award_sources( + """the rows to be inserted""" + objects: [e_award_sources_insert_input!]! + + """upsert condition""" + on_conflict: e_award_sources_on_conflict + ): e_award_sources_mutation_response + + """ + insert a single row into the table: "e_award_sources" + """ + insert_e_award_sources_one( + """the row to be inserted""" + object: e_award_sources_insert_input! + + """upsert condition""" + on_conflict: e_award_sources_on_conflict + ): e_award_sources + + """ + insert data into the table: "e_award_tiers" + """ + insert_e_award_tiers( + """the rows to be inserted""" + objects: [e_award_tiers_insert_input!]! + + """upsert condition""" + on_conflict: e_award_tiers_on_conflict + ): e_award_tiers_mutation_response + + """ + insert a single row into the table: "e_award_tiers" + """ + insert_e_award_tiers_one( + """the row to be inserted""" + object: e_award_tiers_insert_input! + + """upsert condition""" + on_conflict: e_award_tiers_on_conflict + ): e_award_tiers + + """ + insert data into the table: "e_check_in_settings" + """ + insert_e_check_in_settings( + """the rows to be inserted""" + objects: [e_check_in_settings_insert_input!]! + + """upsert condition""" + on_conflict: e_check_in_settings_on_conflict + ): e_check_in_settings_mutation_response + + """ + insert a single row into the table: "e_check_in_settings" + """ + insert_e_check_in_settings_one( + """the row to be inserted""" + object: e_check_in_settings_insert_input! + + """upsert condition""" + on_conflict: e_check_in_settings_on_conflict + ): e_check_in_settings + + """ + insert data into the table: "e_draft_game_captain_selection" + """ + insert_e_draft_game_captain_selection( + """the rows to be inserted""" + objects: [e_draft_game_captain_selection_insert_input!]! + + """upsert condition""" + on_conflict: e_draft_game_captain_selection_on_conflict + ): e_draft_game_captain_selection_mutation_response + + """ + insert a single row into the table: "e_draft_game_captain_selection" + """ + insert_e_draft_game_captain_selection_one( + """the row to be inserted""" + object: e_draft_game_captain_selection_insert_input! + + """upsert condition""" + on_conflict: e_draft_game_captain_selection_on_conflict + ): e_draft_game_captain_selection + + """ + insert data into the table: "e_draft_game_draft_order" + """ + insert_e_draft_game_draft_order( + """the rows to be inserted""" + objects: [e_draft_game_draft_order_insert_input!]! + + """upsert condition""" + on_conflict: e_draft_game_draft_order_on_conflict + ): e_draft_game_draft_order_mutation_response + + """ + insert a single row into the table: "e_draft_game_draft_order" + """ + insert_e_draft_game_draft_order_one( + """the row to be inserted""" + object: e_draft_game_draft_order_insert_input! + + """upsert condition""" + on_conflict: e_draft_game_draft_order_on_conflict + ): e_draft_game_draft_order + + """ + insert data into the table: "e_draft_game_mode" + """ + insert_e_draft_game_mode( + """the rows to be inserted""" + objects: [e_draft_game_mode_insert_input!]! + + """upsert condition""" + on_conflict: e_draft_game_mode_on_conflict + ): e_draft_game_mode_mutation_response + + """ + insert a single row into the table: "e_draft_game_mode" + """ + insert_e_draft_game_mode_one( + """the row to be inserted""" + object: e_draft_game_mode_insert_input! + + """upsert condition""" + on_conflict: e_draft_game_mode_on_conflict + ): e_draft_game_mode + + """ + insert data into the table: "e_draft_game_player_status" + """ + insert_e_draft_game_player_status( + """the rows to be inserted""" + objects: [e_draft_game_player_status_insert_input!]! + + """upsert condition""" + on_conflict: e_draft_game_player_status_on_conflict + ): e_draft_game_player_status_mutation_response + + """ + insert a single row into the table: "e_draft_game_player_status" + """ + insert_e_draft_game_player_status_one( + """the row to be inserted""" + object: e_draft_game_player_status_insert_input! + + """upsert condition""" + on_conflict: e_draft_game_player_status_on_conflict + ): e_draft_game_player_status + + """ + insert data into the table: "e_draft_game_status" + """ + insert_e_draft_game_status( + """the rows to be inserted""" + objects: [e_draft_game_status_insert_input!]! + + """upsert condition""" + on_conflict: e_draft_game_status_on_conflict + ): e_draft_game_status_mutation_response + + """ + insert a single row into the table: "e_draft_game_status" + """ + insert_e_draft_game_status_one( + """the row to be inserted""" + object: e_draft_game_status_insert_input! + + """upsert condition""" + on_conflict: e_draft_game_status_on_conflict + ): e_draft_game_status + + """ + insert data into the table: "e_event_media_access" + """ + insert_e_event_media_access( + """the rows to be inserted""" + objects: [e_event_media_access_insert_input!]! + + """upsert condition""" + on_conflict: e_event_media_access_on_conflict + ): e_event_media_access_mutation_response + + """ + insert a single row into the table: "e_event_media_access" + """ + insert_e_event_media_access_one( + """the row to be inserted""" + object: e_event_media_access_insert_input! + + """upsert condition""" + on_conflict: e_event_media_access_on_conflict + ): e_event_media_access + + """ + insert data into the table: "e_event_visibility" + """ + insert_e_event_visibility( + """the rows to be inserted""" + objects: [e_event_visibility_insert_input!]! + + """upsert condition""" + on_conflict: e_event_visibility_on_conflict + ): e_event_visibility_mutation_response + + """ + insert a single row into the table: "e_event_visibility" + """ + insert_e_event_visibility_one( + """the row to be inserted""" + object: e_event_visibility_insert_input! + + """upsert condition""" + on_conflict: e_event_visibility_on_conflict + ): e_event_visibility + + """ + insert data into the table: "e_friend_status" + """ + insert_e_friend_status( + """the rows to be inserted""" + objects: [e_friend_status_insert_input!]! + + """upsert condition""" + on_conflict: e_friend_status_on_conflict + ): e_friend_status_mutation_response + + """ + insert a single row into the table: "e_friend_status" + """ + insert_e_friend_status_one( + """the row to be inserted""" + object: e_friend_status_insert_input! + + """upsert condition""" + on_conflict: e_friend_status_on_conflict + ): e_friend_status + + """ + insert data into the table: "e_game_cfg_types" + """ + insert_e_game_cfg_types( + """the rows to be inserted""" + objects: [e_game_cfg_types_insert_input!]! + + """upsert condition""" + on_conflict: e_game_cfg_types_on_conflict + ): e_game_cfg_types_mutation_response + + """ + insert a single row into the table: "e_game_cfg_types" + """ + insert_e_game_cfg_types_one( + """the row to be inserted""" + object: e_game_cfg_types_insert_input! + + """upsert condition""" + 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" + """ + insert_e_game_server_node_statuses( + """the rows to be inserted""" + objects: [e_game_server_node_statuses_insert_input!]! + + """upsert condition""" + on_conflict: e_game_server_node_statuses_on_conflict + ): e_game_server_node_statuses_mutation_response + + """ + insert a single row into the table: "e_game_server_node_statuses" + """ + insert_e_game_server_node_statuses_one( + """the row to be inserted""" + object: e_game_server_node_statuses_insert_input! + + """upsert condition""" + on_conflict: e_game_server_node_statuses_on_conflict + ): e_game_server_node_statuses + + """ + insert data into the table: "e_league_movement_types" + """ + insert_e_league_movement_types( + """the rows to be inserted""" + objects: [e_league_movement_types_insert_input!]! + + """upsert condition""" + on_conflict: e_league_movement_types_on_conflict + ): e_league_movement_types_mutation_response + + """ + insert a single row into the table: "e_league_movement_types" + """ + insert_e_league_movement_types_one( + """the row to be inserted""" + object: e_league_movement_types_insert_input! + + """upsert condition""" + on_conflict: e_league_movement_types_on_conflict + ): e_league_movement_types + + """ + insert data into the table: "e_league_proposal_statuses" + """ + insert_e_league_proposal_statuses( + """the rows to be inserted""" + objects: [e_league_proposal_statuses_insert_input!]! + + """upsert condition""" + on_conflict: e_league_proposal_statuses_on_conflict + ): e_league_proposal_statuses_mutation_response + + """ + insert a single row into the table: "e_league_proposal_statuses" + """ + insert_e_league_proposal_statuses_one( + """the row to be inserted""" + object: e_league_proposal_statuses_insert_input! + + """upsert condition""" + on_conflict: e_league_proposal_statuses_on_conflict + ): e_league_proposal_statuses + + """ + insert data into the table: "e_league_registration_statuses" + """ + insert_e_league_registration_statuses( + """the rows to be inserted""" + objects: [e_league_registration_statuses_insert_input!]! + + """upsert condition""" + on_conflict: e_league_registration_statuses_on_conflict + ): e_league_registration_statuses_mutation_response + + """ + insert a single row into the table: "e_league_registration_statuses" + """ + insert_e_league_registration_statuses_one( + """the row to be inserted""" + object: e_league_registration_statuses_insert_input! + + """upsert condition""" + on_conflict: e_league_registration_statuses_on_conflict + ): e_league_registration_statuses + + """ + insert data into the table: "e_league_season_statuses" + """ + insert_e_league_season_statuses( + """the rows to be inserted""" + objects: [e_league_season_statuses_insert_input!]! + + """upsert condition""" + on_conflict: e_league_season_statuses_on_conflict + ): e_league_season_statuses_mutation_response + + """ + insert a single row into the table: "e_league_season_statuses" + """ + insert_e_league_season_statuses_one( + """the row to be inserted""" + object: e_league_season_statuses_insert_input! + + """upsert condition""" + on_conflict: e_league_season_statuses_on_conflict + ): e_league_season_statuses + + """ + insert data into the table: "e_lobby_access" + """ + insert_e_lobby_access( + """the rows to be inserted""" + objects: [e_lobby_access_insert_input!]! + + """upsert condition""" + on_conflict: e_lobby_access_on_conflict + ): e_lobby_access_mutation_response + + """ + insert a single row into the table: "e_lobby_access" + """ + insert_e_lobby_access_one( + """the row to be inserted""" + object: e_lobby_access_insert_input! + + """upsert condition""" + on_conflict: e_lobby_access_on_conflict + ): e_lobby_access + + """ + insert data into the table: "e_lobby_player_status" + """ + insert_e_lobby_player_status( + """the rows to be inserted""" + objects: [e_lobby_player_status_insert_input!]! + + """upsert condition""" + on_conflict: e_lobby_player_status_on_conflict + ): e_lobby_player_status_mutation_response + + """ + insert a single row into the table: "e_lobby_player_status" + """ + insert_e_lobby_player_status_one( + """the row to be inserted""" + object: e_lobby_player_status_insert_input! + + """upsert condition""" + on_conflict: e_lobby_player_status_on_conflict + ): e_lobby_player_status + + """ + insert data into the table: "e_map_pool_types" + """ + insert_e_map_pool_types( + """the rows to be inserted""" + objects: [e_map_pool_types_insert_input!]! + + """upsert condition""" + on_conflict: e_map_pool_types_on_conflict + ): e_map_pool_types_mutation_response + + """ + insert a single row into the table: "e_map_pool_types" + """ + insert_e_map_pool_types_one( + """the row to be inserted""" + object: e_map_pool_types_insert_input! + + """upsert condition""" + on_conflict: e_map_pool_types_on_conflict + ): e_map_pool_types + + """ + insert data into the table: "e_match_clip_visibility" + """ + insert_e_match_clip_visibility( + """the rows to be inserted""" + objects: [e_match_clip_visibility_insert_input!]! + + """upsert condition""" + on_conflict: e_match_clip_visibility_on_conflict + ): e_match_clip_visibility_mutation_response + + """ + insert a single row into the table: "e_match_clip_visibility" + """ + insert_e_match_clip_visibility_one( + """the row to be inserted""" + object: e_match_clip_visibility_insert_input! + + """upsert condition""" + on_conflict: e_match_clip_visibility_on_conflict + ): e_match_clip_visibility + + """ + insert data into the table: "e_match_map_status" + """ + insert_e_match_map_status( + """the rows to be inserted""" + objects: [e_match_map_status_insert_input!]! + + """upsert condition""" + on_conflict: e_match_map_status_on_conflict + ): e_match_map_status_mutation_response + + """ + insert a single row into the table: "e_match_map_status" + """ + insert_e_match_map_status_one( + """the row to be inserted""" + object: e_match_map_status_insert_input! + + """upsert condition""" + on_conflict: e_match_map_status_on_conflict + ): e_match_map_status + + """ + insert data into the table: "e_match_mode" + """ + insert_e_match_mode( + """the rows to be inserted""" + objects: [e_match_mode_insert_input!]! + + """upsert condition""" + on_conflict: e_match_mode_on_conflict + ): e_match_mode_mutation_response + + """ + insert a single row into the table: "e_match_mode" + """ + insert_e_match_mode_one( + """the row to be inserted""" + object: e_match_mode_insert_input! + + """upsert condition""" + on_conflict: e_match_mode_on_conflict + ): e_match_mode + + """ + insert data into the table: "e_match_party_sources" + """ + insert_e_match_party_sources( + """the rows to be inserted""" + objects: [e_match_party_sources_insert_input!]! + + """upsert condition""" + on_conflict: e_match_party_sources_on_conflict + ): e_match_party_sources_mutation_response + + """ + insert a single row into the table: "e_match_party_sources" + """ + insert_e_match_party_sources_one( + """the row to be inserted""" + object: e_match_party_sources_insert_input! + + """upsert condition""" + on_conflict: e_match_party_sources_on_conflict + ): e_match_party_sources + + """ + insert data into the table: "e_match_status" + """ + insert_e_match_status( + """the rows to be inserted""" + objects: [e_match_status_insert_input!]! + + """upsert condition""" + on_conflict: e_match_status_on_conflict + ): e_match_status_mutation_response + + """ + insert a single row into the table: "e_match_status" + """ + insert_e_match_status_one( + """the row to be inserted""" + object: e_match_status_insert_input! + + """upsert condition""" + on_conflict: e_match_status_on_conflict + ): e_match_status + + """ + insert data into the table: "e_match_types" + """ + insert_e_match_types( + """the rows to be inserted""" + objects: [e_match_types_insert_input!]! + + """upsert condition""" + on_conflict: e_match_types_on_conflict + ): e_match_types_mutation_response + + """ + insert a single row into the table: "e_match_types" + """ + insert_e_match_types_one( + """the row to be inserted""" + object: e_match_types_insert_input! + + """upsert condition""" + on_conflict: e_match_types_on_conflict + ): e_match_types + + """ + insert data into the table: "e_notification_types" + """ + insert_e_notification_types( + """the rows to be inserted""" + objects: [e_notification_types_insert_input!]! + + """upsert condition""" + on_conflict: e_notification_types_on_conflict + ): e_notification_types_mutation_response + + """ + insert a single row into the table: "e_notification_types" + """ + insert_e_notification_types_one( + """the row to be inserted""" + object: e_notification_types_insert_input! + + """upsert condition""" + on_conflict: e_notification_types_on_conflict + ): e_notification_types + + """ + insert data into the table: "e_objective_types" + """ + insert_e_objective_types( + """the rows to be inserted""" + objects: [e_objective_types_insert_input!]! + + """upsert condition""" + on_conflict: e_objective_types_on_conflict + ): e_objective_types_mutation_response + + """ + insert a single row into the table: "e_objective_types" + """ + insert_e_objective_types_one( + """the row to be inserted""" + object: e_objective_types_insert_input! + + """upsert condition""" + on_conflict: e_objective_types_on_conflict + ): e_objective_types + + """ + insert data into the table: "e_player_roles" + """ + insert_e_player_roles( + """the rows to be inserted""" + objects: [e_player_roles_insert_input!]! + + """upsert condition""" + on_conflict: e_player_roles_on_conflict + ): e_player_roles_mutation_response + + """ + insert a single row into the table: "e_player_roles" + """ + insert_e_player_roles_one( + """the row to be inserted""" + object: e_player_roles_insert_input! + + """upsert condition""" + on_conflict: e_player_roles_on_conflict + ): e_player_roles + + """ + insert data into the table: "e_plugin_runtimes" + """ + insert_e_plugin_runtimes( + """the rows to be inserted""" + objects: [e_plugin_runtimes_insert_input!]! + + """upsert condition""" + on_conflict: e_plugin_runtimes_on_conflict + ): e_plugin_runtimes_mutation_response + + """ + insert a single row into the table: "e_plugin_runtimes" + """ + insert_e_plugin_runtimes_one( + """the row to be inserted""" + object: e_plugin_runtimes_insert_input! + + """upsert condition""" + on_conflict: e_plugin_runtimes_on_conflict + ): e_plugin_runtimes + + """ + insert data into the table: "e_ready_settings" + """ + insert_e_ready_settings( + """the rows to be inserted""" + objects: [e_ready_settings_insert_input!]! + + """upsert condition""" + on_conflict: e_ready_settings_on_conflict + ): e_ready_settings_mutation_response + + """ + insert a single row into the table: "e_ready_settings" + """ + insert_e_ready_settings_one( + """the row to be inserted""" + object: e_ready_settings_insert_input! + + """upsert condition""" + on_conflict: e_ready_settings_on_conflict + ): e_ready_settings + + """ + insert data into the table: "e_sanction_scopes" + """ + insert_e_sanction_scopes( + """the rows to be inserted""" + objects: [e_sanction_scopes_insert_input!]! + + """upsert condition""" + on_conflict: e_sanction_scopes_on_conflict + ): e_sanction_scopes_mutation_response + + """ + insert a single row into the table: "e_sanction_scopes" + """ + insert_e_sanction_scopes_one( + """the row to be inserted""" + object: e_sanction_scopes_insert_input! + + """upsert condition""" + on_conflict: e_sanction_scopes_on_conflict + ): e_sanction_scopes + + """ + insert data into the table: "e_sanction_sources" + """ + insert_e_sanction_sources( + """the rows to be inserted""" + objects: [e_sanction_sources_insert_input!]! + + """upsert condition""" + on_conflict: e_sanction_sources_on_conflict + ): e_sanction_sources_mutation_response + + """ + insert a single row into the table: "e_sanction_sources" + """ + insert_e_sanction_sources_one( + """the row to be inserted""" + object: e_sanction_sources_insert_input! + + """upsert condition""" + on_conflict: e_sanction_sources_on_conflict + ): e_sanction_sources + + """ + insert data into the table: "e_sanction_types" + """ + insert_e_sanction_types( + """the rows to be inserted""" + objects: [e_sanction_types_insert_input!]! + + """upsert condition""" + on_conflict: e_sanction_types_on_conflict + ): e_sanction_types_mutation_response + + """ + insert a single row into the table: "e_sanction_types" + """ + insert_e_sanction_types_one( + """the row to be inserted""" + object: e_sanction_types_insert_input! + + """upsert condition""" + on_conflict: e_sanction_types_on_conflict + ): e_sanction_types + + """ + insert data into the table: "e_scrim_request_statuses" + """ + insert_e_scrim_request_statuses( + """the rows to be inserted""" + objects: [e_scrim_request_statuses_insert_input!]! + + """upsert condition""" + on_conflict: e_scrim_request_statuses_on_conflict + ): e_scrim_request_statuses_mutation_response + + """ + insert a single row into the table: "e_scrim_request_statuses" + """ + insert_e_scrim_request_statuses_one( + """the row to be inserted""" + object: e_scrim_request_statuses_insert_input! + + """upsert condition""" + on_conflict: e_scrim_request_statuses_on_conflict + ): e_scrim_request_statuses + + """ + insert data into the table: "e_server_types" + """ + insert_e_server_types( + """the rows to be inserted""" + objects: [e_server_types_insert_input!]! + + """upsert condition""" + on_conflict: e_server_types_on_conflict + ): e_server_types_mutation_response + + """ + insert a single row into the table: "e_server_types" + """ + insert_e_server_types_one( + """the row to be inserted""" + object: e_server_types_insert_input! + + """upsert condition""" + on_conflict: e_server_types_on_conflict + ): e_server_types + + """ + insert data into the table: "e_sides" + """ + insert_e_sides( + """the rows to be inserted""" + objects: [e_sides_insert_input!]! + + """upsert condition""" + on_conflict: e_sides_on_conflict + ): e_sides_mutation_response + + """ + insert a single row into the table: "e_sides" + """ + insert_e_sides_one( + """the row to be inserted""" + object: e_sides_insert_input! + + """upsert condition""" + on_conflict: e_sides_on_conflict + ): e_sides + + """ + insert data into the table: "e_system_alert_types" + """ + insert_e_system_alert_types( + """the rows to be inserted""" + objects: [e_system_alert_types_insert_input!]! + + """upsert condition""" + on_conflict: e_system_alert_types_on_conflict + ): e_system_alert_types_mutation_response + + """ + insert a single row into the table: "e_system_alert_types" + """ + insert_e_system_alert_types_one( + """the row to be inserted""" + object: e_system_alert_types_insert_input! + + """upsert condition""" + on_conflict: e_system_alert_types_on_conflict + ): e_system_alert_types + + """ + insert data into the table: "e_team_roles" + """ + insert_e_team_roles( + """the rows to be inserted""" + objects: [e_team_roles_insert_input!]! + + """upsert condition""" + on_conflict: e_team_roles_on_conflict + ): e_team_roles_mutation_response + + """ + insert a single row into the table: "e_team_roles" + """ + insert_e_team_roles_one( + """the row to be inserted""" + object: e_team_roles_insert_input! + + """upsert condition""" + on_conflict: e_team_roles_on_conflict + ): e_team_roles + + """ + insert data into the table: "e_team_roster_statuses" + """ + insert_e_team_roster_statuses( + """the rows to be inserted""" + objects: [e_team_roster_statuses_insert_input!]! + + """upsert condition""" + on_conflict: e_team_roster_statuses_on_conflict + ): e_team_roster_statuses_mutation_response + + """ + insert a single row into the table: "e_team_roster_statuses" + """ + insert_e_team_roster_statuses_one( + """the row to be inserted""" + object: e_team_roster_statuses_insert_input! + + """upsert condition""" + on_conflict: e_team_roster_statuses_on_conflict + ): e_team_roster_statuses + + """ + insert data into the table: "e_timeout_settings" + """ + insert_e_timeout_settings( + """the rows to be inserted""" + objects: [e_timeout_settings_insert_input!]! + + """upsert condition""" + on_conflict: e_timeout_settings_on_conflict + ): e_timeout_settings_mutation_response + + """ + insert a single row into the table: "e_timeout_settings" + """ + insert_e_timeout_settings_one( + """the row to be inserted""" + object: e_timeout_settings_insert_input! + + """upsert condition""" + on_conflict: e_timeout_settings_on_conflict + ): e_timeout_settings + + """ + insert data into the table: "e_tournament_categories" + """ + insert_e_tournament_categories( + """the rows to be inserted""" + objects: [e_tournament_categories_insert_input!]! + + """upsert condition""" + on_conflict: e_tournament_categories_on_conflict + ): e_tournament_categories_mutation_response + + """ + insert a single row into the table: "e_tournament_categories" + """ + insert_e_tournament_categories_one( + """the row to be inserted""" + object: e_tournament_categories_insert_input! + + """upsert condition""" + on_conflict: e_tournament_categories_on_conflict + ): e_tournament_categories + + """ + insert data into the table: "e_tournament_free_agent_statuses" + """ + insert_e_tournament_free_agent_statuses( + """the rows to be inserted""" + objects: [e_tournament_free_agent_statuses_insert_input!]! + + """upsert condition""" + on_conflict: e_tournament_free_agent_statuses_on_conflict + ): e_tournament_free_agent_statuses_mutation_response + + """ + insert a single row into the table: "e_tournament_free_agent_statuses" + """ + insert_e_tournament_free_agent_statuses_one( + """the row to be inserted""" + object: e_tournament_free_agent_statuses_insert_input! + + """upsert condition""" + on_conflict: e_tournament_free_agent_statuses_on_conflict + ): e_tournament_free_agent_statuses + + """ + insert data into the table: "e_tournament_registration_types" + """ + insert_e_tournament_registration_types( + """the rows to be inserted""" + objects: [e_tournament_registration_types_insert_input!]! + + """upsert condition""" + on_conflict: e_tournament_registration_types_on_conflict + ): e_tournament_registration_types_mutation_response + + """ + insert a single row into the table: "e_tournament_registration_types" + """ + insert_e_tournament_registration_types_one( + """the row to be inserted""" + object: e_tournament_registration_types_insert_input! + + """upsert condition""" + on_conflict: e_tournament_registration_types_on_conflict + ): e_tournament_registration_types + + """ + insert data into the table: "e_tournament_stage_types" + """ + insert_e_tournament_stage_types( + """the rows to be inserted""" + objects: [e_tournament_stage_types_insert_input!]! + + """upsert condition""" + on_conflict: e_tournament_stage_types_on_conflict + ): e_tournament_stage_types_mutation_response + + """ + insert a single row into the table: "e_tournament_stage_types" + """ + insert_e_tournament_stage_types_one( + """the row to be inserted""" + object: e_tournament_stage_types_insert_input! + + """upsert condition""" + on_conflict: e_tournament_stage_types_on_conflict + ): e_tournament_stage_types + + """ + insert data into the table: "e_tournament_status" + """ + insert_e_tournament_status( + """the rows to be inserted""" + objects: [e_tournament_status_insert_input!]! + + """upsert condition""" + on_conflict: e_tournament_status_on_conflict + ): e_tournament_status_mutation_response + + """ + insert a single row into the table: "e_tournament_status" + """ + insert_e_tournament_status_one( + """the row to be inserted""" + object: e_tournament_status_insert_input! + + """upsert condition""" + on_conflict: e_tournament_status_on_conflict + ): e_tournament_status + + """ + insert data into the table: "e_utility_practice_access" + """ + insert_e_utility_practice_access( + """the rows to be inserted""" + objects: [e_utility_practice_access_insert_input!]! + + """upsert condition""" + on_conflict: e_utility_practice_access_on_conflict + ): e_utility_practice_access_mutation_response + + """ + insert a single row into the table: "e_utility_practice_access" + """ + insert_e_utility_practice_access_one( + """the row to be inserted""" + object: e_utility_practice_access_insert_input! + + """upsert condition""" + on_conflict: e_utility_practice_access_on_conflict + ): e_utility_practice_access + + """ + insert data into the table: "e_utility_practice_statuses" + """ + insert_e_utility_practice_statuses( + """the rows to be inserted""" + objects: [e_utility_practice_statuses_insert_input!]! + + """upsert condition""" + on_conflict: e_utility_practice_statuses_on_conflict + ): e_utility_practice_statuses_mutation_response + + """ + insert a single row into the table: "e_utility_practice_statuses" + """ + insert_e_utility_practice_statuses_one( + """the row to be inserted""" + object: e_utility_practice_statuses_insert_input! + + """upsert condition""" + on_conflict: e_utility_practice_statuses_on_conflict + ): e_utility_practice_statuses + + """ + insert data into the table: "e_utility_sources" + """ + insert_e_utility_sources( + """the rows to be inserted""" + objects: [e_utility_sources_insert_input!]! + + """upsert condition""" + on_conflict: e_utility_sources_on_conflict + ): e_utility_sources_mutation_response + + """ + insert a single row into the table: "e_utility_sources" + """ + insert_e_utility_sources_one( + """the row to be inserted""" + object: e_utility_sources_insert_input! + + """upsert condition""" + on_conflict: e_utility_sources_on_conflict + ): e_utility_sources + + """ + insert data into the table: "e_utility_techniques" + """ + insert_e_utility_techniques( + """the rows to be inserted""" + objects: [e_utility_techniques_insert_input!]! + + """upsert condition""" + on_conflict: e_utility_techniques_on_conflict + ): e_utility_techniques_mutation_response + + """ + insert a single row into the table: "e_utility_techniques" + """ + insert_e_utility_techniques_one( + """the row to be inserted""" + object: e_utility_techniques_insert_input! + + """upsert condition""" + on_conflict: e_utility_techniques_on_conflict + ): e_utility_techniques + + """ + insert data into the table: "e_utility_throw_strengths" + """ + insert_e_utility_throw_strengths( + """the rows to be inserted""" + objects: [e_utility_throw_strengths_insert_input!]! + + """upsert condition""" + on_conflict: e_utility_throw_strengths_on_conflict + ): e_utility_throw_strengths_mutation_response + + """ + insert a single row into the table: "e_utility_throw_strengths" + """ + insert_e_utility_throw_strengths_one( + """the row to be inserted""" + object: e_utility_throw_strengths_insert_input! + + """upsert condition""" + on_conflict: e_utility_throw_strengths_on_conflict + ): e_utility_throw_strengths + + """ + insert data into the table: "e_utility_types" + """ + insert_e_utility_types( + """the rows to be inserted""" + objects: [e_utility_types_insert_input!]! + + """upsert condition""" + on_conflict: e_utility_types_on_conflict + ): e_utility_types_mutation_response + + """ + insert a single row into the table: "e_utility_types" + """ + insert_e_utility_types_one( + """the row to be inserted""" + object: e_utility_types_insert_input! + + """upsert condition""" + on_conflict: e_utility_types_on_conflict + ): e_utility_types + + """ + insert data into the table: "e_utility_visibility" + """ + insert_e_utility_visibility( + """the rows to be inserted""" + objects: [e_utility_visibility_insert_input!]! + + """upsert condition""" + on_conflict: e_utility_visibility_on_conflict + ): e_utility_visibility_mutation_response + + """ + insert a single row into the table: "e_utility_visibility" + """ + insert_e_utility_visibility_one( + """the row to be inserted""" + object: e_utility_visibility_insert_input! + + """upsert condition""" + on_conflict: e_utility_visibility_on_conflict + ): e_utility_visibility + + """ + insert data into the table: "e_veto_pick_types" + """ + insert_e_veto_pick_types( + """the rows to be inserted""" + objects: [e_veto_pick_types_insert_input!]! + + """upsert condition""" + on_conflict: e_veto_pick_types_on_conflict + ): e_veto_pick_types_mutation_response + + """ + insert a single row into the table: "e_veto_pick_types" + """ + insert_e_veto_pick_types_one( + """the row to be inserted""" + object: e_veto_pick_types_insert_input! + + """upsert condition""" + on_conflict: e_veto_pick_types_on_conflict + ): e_veto_pick_types + + """ + insert data into the table: "e_winning_reasons" + """ + insert_e_winning_reasons( + """the rows to be inserted""" + objects: [e_winning_reasons_insert_input!]! + + """upsert condition""" + on_conflict: e_winning_reasons_on_conflict + ): e_winning_reasons_mutation_response + + """ + insert a single row into the table: "e_winning_reasons" + """ + insert_e_winning_reasons_one( + """the row to be inserted""" + object: e_winning_reasons_insert_input! + + """upsert condition""" + on_conflict: e_winning_reasons_on_conflict + ): e_winning_reasons + + """ + insert data into the table: "event_match_links" + """ + insert_event_match_links( + """the rows to be inserted""" + objects: [event_match_links_insert_input!]! + + """upsert condition""" + on_conflict: event_match_links_on_conflict + ): event_match_links_mutation_response + + """ + insert a single row into the table: "event_match_links" + """ + insert_event_match_links_one( + """the row to be inserted""" + object: event_match_links_insert_input! + + """upsert condition""" + on_conflict: event_match_links_on_conflict + ): event_match_links + + """ + insert data into the table: "event_media" + """ + insert_event_media( + """the rows to be inserted""" + objects: [event_media_insert_input!]! + + """upsert condition""" + on_conflict: event_media_on_conflict + ): event_media_mutation_response + + """ + insert a single row into the table: "event_media" + """ + insert_event_media_one( + """the row to be inserted""" + object: event_media_insert_input! + + """upsert condition""" + on_conflict: event_media_on_conflict + ): event_media + + """ + insert data into the table: "event_media_players" + """ + insert_event_media_players( + """the rows to be inserted""" + objects: [event_media_players_insert_input!]! + + """upsert condition""" + on_conflict: event_media_players_on_conflict + ): event_media_players_mutation_response + + """ + insert a single row into the table: "event_media_players" + """ + insert_event_media_players_one( + """the row to be inserted""" + object: event_media_players_insert_input! + + """upsert condition""" + on_conflict: event_media_players_on_conflict + ): event_media_players + + """ + insert data into the table: "event_organizers" + """ + insert_event_organizers( + """the rows to be inserted""" + objects: [event_organizers_insert_input!]! + + """upsert condition""" + on_conflict: event_organizers_on_conflict + ): event_organizers_mutation_response + + """ + insert a single row into the table: "event_organizers" + """ + insert_event_organizers_one( + """the row to be inserted""" + object: event_organizers_insert_input! + + """upsert condition""" + on_conflict: event_organizers_on_conflict + ): event_organizers + + """ + insert data into the table: "event_players" + """ + insert_event_players( + """the rows to be inserted""" + objects: [event_players_insert_input!]! + + """upsert condition""" + on_conflict: event_players_on_conflict + ): event_players_mutation_response + + """ + insert a single row into the table: "event_players" + """ + insert_event_players_one( + """the row to be inserted""" + object: event_players_insert_input! + + """upsert condition""" + on_conflict: event_players_on_conflict + ): event_players + + """ + insert data into the table: "event_teams" + """ + insert_event_teams( + """the rows to be inserted""" + objects: [event_teams_insert_input!]! + + """upsert condition""" + on_conflict: event_teams_on_conflict + ): event_teams_mutation_response + + """ + insert a single row into the table: "event_teams" + """ + insert_event_teams_one( + """the row to be inserted""" + object: event_teams_insert_input! + + """upsert condition""" + on_conflict: event_teams_on_conflict + ): event_teams + + """ + insert data into the table: "event_tournaments" + """ + insert_event_tournaments( + """the rows to be inserted""" + objects: [event_tournaments_insert_input!]! + + """upsert condition""" + on_conflict: event_tournaments_on_conflict + ): event_tournaments_mutation_response + + """ + insert a single row into the table: "event_tournaments" + """ + insert_event_tournaments_one( + """the row to be inserted""" + object: event_tournaments_insert_input! + + """upsert condition""" + on_conflict: event_tournaments_on_conflict + ): event_tournaments + + """ + insert data into the table: "events" + """ + insert_events( + """the rows to be inserted""" + objects: [events_insert_input!]! + + """upsert condition""" + on_conflict: events_on_conflict + ): events_mutation_response + + """ + insert a single row into the table: "events" + """ + insert_events_one( + """the row to be inserted""" + object: events_insert_input! + + """upsert condition""" + on_conflict: events_on_conflict + ): events + + """ + insert data into the table: "friends" + """ + insert_friends( + """the rows to be inserted""" + objects: [friends_insert_input!]! + + """upsert condition""" + on_conflict: friends_on_conflict + ): friends_mutation_response + + """ + insert a single row into the table: "friends" + """ + insert_friends_one( + """the row to be inserted""" + object: friends_insert_input! + + """upsert condition""" + 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" + """ + insert_game_server_nodes( + """the rows to be inserted""" + objects: [game_server_nodes_insert_input!]! + + """upsert condition""" + on_conflict: game_server_nodes_on_conflict + ): game_server_nodes_mutation_response + + """ + insert a single row into the table: "game_server_nodes" + """ + insert_game_server_nodes_one( + """the row to be inserted""" + object: game_server_nodes_insert_input! + + """upsert condition""" + on_conflict: game_server_nodes_on_conflict + ): game_server_nodes + + """ + insert data into the table: "game_versions" + """ + insert_game_versions( + """the rows to be inserted""" + objects: [game_versions_insert_input!]! + + """upsert condition""" + on_conflict: game_versions_on_conflict + ): game_versions_mutation_response + + """ + insert a single row into the table: "game_versions" + """ + insert_game_versions_one( + """the row to be inserted""" + object: game_versions_insert_input! + + """upsert condition""" + on_conflict: game_versions_on_conflict + ): game_versions + + """ + insert data into the table: "gamedata_signature_validations" + """ + insert_gamedata_signature_validations( + """the rows to be inserted""" + objects: [gamedata_signature_validations_insert_input!]! + + """upsert condition""" + on_conflict: gamedata_signature_validations_on_conflict + ): gamedata_signature_validations_mutation_response + + """ + insert a single row into the table: "gamedata_signature_validations" + """ + insert_gamedata_signature_validations_one( + """the row to be inserted""" + object: gamedata_signature_validations_insert_input! + + """upsert condition""" + on_conflict: gamedata_signature_validations_on_conflict + ): gamedata_signature_validations + + """ + insert data into the table: "leaderboard_entries" + """ + insert_leaderboard_entries( + """the rows to be inserted""" + objects: [leaderboard_entries_insert_input!]! + ): leaderboard_entries_mutation_response + + """ + insert a single row into the table: "leaderboard_entries" + """ + insert_leaderboard_entries_one( + """the row to be inserted""" + object: leaderboard_entries_insert_input! + ): leaderboard_entries + + """ + insert data into the table: "league_divisions" + """ + insert_league_divisions( + """the rows to be inserted""" + objects: [league_divisions_insert_input!]! + + """upsert condition""" + on_conflict: league_divisions_on_conflict + ): league_divisions_mutation_response + + """ + insert a single row into the table: "league_divisions" + """ + insert_league_divisions_one( + """the row to be inserted""" + object: league_divisions_insert_input! + + """upsert condition""" + on_conflict: league_divisions_on_conflict + ): league_divisions + + """ + insert data into the table: "league_match_weeks" + """ + insert_league_match_weeks( + """the rows to be inserted""" + objects: [league_match_weeks_insert_input!]! + + """upsert condition""" + on_conflict: league_match_weeks_on_conflict + ): league_match_weeks_mutation_response + + """ + insert a single row into the table: "league_match_weeks" + """ + insert_league_match_weeks_one( + """the row to be inserted""" + object: league_match_weeks_insert_input! + + """upsert condition""" + on_conflict: league_match_weeks_on_conflict + ): league_match_weeks + + """ + insert data into the table: "league_relegation_playoffs" + """ + insert_league_relegation_playoffs( + """the rows to be inserted""" + objects: [league_relegation_playoffs_insert_input!]! + + """upsert condition""" + on_conflict: league_relegation_playoffs_on_conflict + ): league_relegation_playoffs_mutation_response + + """ + insert a single row into the table: "league_relegation_playoffs" + """ + insert_league_relegation_playoffs_one( + """the row to be inserted""" + object: league_relegation_playoffs_insert_input! + + """upsert condition""" + on_conflict: league_relegation_playoffs_on_conflict + ): league_relegation_playoffs + + """ + insert data into the table: "league_scheduling_proposals" + """ + insert_league_scheduling_proposals( + """the rows to be inserted""" + objects: [league_scheduling_proposals_insert_input!]! + + """upsert condition""" + on_conflict: league_scheduling_proposals_on_conflict + ): league_scheduling_proposals_mutation_response + + """ + insert a single row into the table: "league_scheduling_proposals" + """ + insert_league_scheduling_proposals_one( + """the row to be inserted""" + object: league_scheduling_proposals_insert_input! + + """upsert condition""" + on_conflict: league_scheduling_proposals_on_conflict + ): league_scheduling_proposals + + """ + insert data into the table: "league_season_divisions" + """ + insert_league_season_divisions( + """the rows to be inserted""" + objects: [league_season_divisions_insert_input!]! + + """upsert condition""" + on_conflict: league_season_divisions_on_conflict + ): league_season_divisions_mutation_response + + """ + insert a single row into the table: "league_season_divisions" + """ + insert_league_season_divisions_one( + """the row to be inserted""" + object: league_season_divisions_insert_input! + + """upsert condition""" + on_conflict: league_season_divisions_on_conflict + ): league_season_divisions + + """ + insert data into the table: "league_seasons" + """ + insert_league_seasons( + """the rows to be inserted""" + objects: [league_seasons_insert_input!]! + + """upsert condition""" + on_conflict: league_seasons_on_conflict + ): league_seasons_mutation_response + + """ + insert a single row into the table: "league_seasons" + """ + insert_league_seasons_one( + """the row to be inserted""" + object: league_seasons_insert_input! + + """upsert condition""" + on_conflict: league_seasons_on_conflict + ): league_seasons + + """ + insert data into the table: "league_team_movements" + """ + insert_league_team_movements( + """the rows to be inserted""" + objects: [league_team_movements_insert_input!]! + + """upsert condition""" + on_conflict: league_team_movements_on_conflict + ): league_team_movements_mutation_response + + """ + insert a single row into the table: "league_team_movements" + """ + insert_league_team_movements_one( + """the row to be inserted""" + object: league_team_movements_insert_input! + + """upsert condition""" + on_conflict: league_team_movements_on_conflict + ): league_team_movements + + """ + insert data into the table: "league_team_rosters" + """ + insert_league_team_rosters( + """the rows to be inserted""" + objects: [league_team_rosters_insert_input!]! + + """upsert condition""" + on_conflict: league_team_rosters_on_conflict + ): league_team_rosters_mutation_response + + """ + insert a single row into the table: "league_team_rosters" + """ + insert_league_team_rosters_one( + """the row to be inserted""" + object: league_team_rosters_insert_input! + + """upsert condition""" + on_conflict: league_team_rosters_on_conflict + ): league_team_rosters + + """ + insert data into the table: "league_team_seasons" + """ + insert_league_team_seasons( + """the rows to be inserted""" + objects: [league_team_seasons_insert_input!]! + + """upsert condition""" + on_conflict: league_team_seasons_on_conflict + ): league_team_seasons_mutation_response + + """ + insert a single row into the table: "league_team_seasons" + """ + insert_league_team_seasons_one( + """the row to be inserted""" + object: league_team_seasons_insert_input! + + """upsert condition""" + on_conflict: league_team_seasons_on_conflict + ): league_team_seasons + + """ + insert data into the table: "league_teams" + """ + insert_league_teams( + """the rows to be inserted""" + objects: [league_teams_insert_input!]! + + """upsert condition""" + on_conflict: league_teams_on_conflict + ): league_teams_mutation_response + + """ + insert a single row into the table: "league_teams" + """ + insert_league_teams_one( + """the row to be inserted""" + object: league_teams_insert_input! + + """upsert condition""" + on_conflict: league_teams_on_conflict + ): league_teams + + """ + insert data into the table: "lobbies" + """ + insert_lobbies( + """the rows to be inserted""" + objects: [lobbies_insert_input!]! + + """upsert condition""" + on_conflict: lobbies_on_conflict + ): lobbies_mutation_response + + """ + insert a single row into the table: "lobbies" + """ + insert_lobbies_one( + """the row to be inserted""" + object: lobbies_insert_input! + + """upsert condition""" + on_conflict: lobbies_on_conflict + ): lobbies + + """ + insert data into the table: "lobby_players" + """ + insert_lobby_players( + """the rows to be inserted""" + objects: [lobby_players_insert_input!]! + + """upsert condition""" + on_conflict: lobby_players_on_conflict + ): lobby_players_mutation_response + + """ + insert a single row into the table: "lobby_players" + """ + insert_lobby_players_one( + """the row to be inserted""" + object: lobby_players_insert_input! + + """upsert condition""" + on_conflict: lobby_players_on_conflict + ): lobby_players + + """ + insert data into the table: "map_callouts" + """ + insert_map_callouts( + """the rows to be inserted""" + objects: [map_callouts_insert_input!]! + + """upsert condition""" + on_conflict: map_callouts_on_conflict + ): map_callouts_mutation_response + + """ + insert a single row into the table: "map_callouts" + """ + insert_map_callouts_one( + """the row to be inserted""" + object: map_callouts_insert_input! + + """upsert condition""" + on_conflict: map_callouts_on_conflict + ): map_callouts + + """ + insert data into the table: "map_pools" + """ + insert_map_pools( + """the rows to be inserted""" + objects: [map_pools_insert_input!]! + + """upsert condition""" + on_conflict: map_pools_on_conflict + ): map_pools_mutation_response + + """ + insert a single row into the table: "map_pools" + """ + insert_map_pools_one( + """the row to be inserted""" + object: map_pools_insert_input! + + """upsert condition""" + on_conflict: map_pools_on_conflict + ): map_pools + + """ + insert data into the table: "maps" + """ + insert_maps( + """the rows to be inserted""" + objects: [maps_insert_input!]! + + """upsert condition""" + on_conflict: maps_on_conflict + ): maps_mutation_response + + """ + insert a single row into the table: "maps" + """ + insert_maps_one( + """the row to be inserted""" + object: maps_insert_input! + + """upsert condition""" + on_conflict: maps_on_conflict + ): maps + + """ + insert data into the table: "match_clips" + """ + insert_match_clips( + """the rows to be inserted""" + objects: [match_clips_insert_input!]! + + """upsert condition""" + on_conflict: match_clips_on_conflict + ): match_clips_mutation_response + + """ + insert a single row into the table: "match_clips" + """ + insert_match_clips_one( + """the row to be inserted""" + object: match_clips_insert_input! + + """upsert condition""" + on_conflict: match_clips_on_conflict + ): match_clips + + """ + insert data into the table: "match_demo_sessions" + """ + insert_match_demo_sessions( + """the rows to be inserted""" + objects: [match_demo_sessions_insert_input!]! + + """upsert condition""" + on_conflict: match_demo_sessions_on_conflict + ): match_demo_sessions_mutation_response + + """ + insert a single row into the table: "match_demo_sessions" + """ + insert_match_demo_sessions_one( + """the row to be inserted""" + object: match_demo_sessions_insert_input! + + """upsert condition""" + on_conflict: match_demo_sessions_on_conflict + ): match_demo_sessions + + """ + insert data into the table: "match_lineup_players" + """ + insert_match_lineup_players( + """the rows to be inserted""" + objects: [match_lineup_players_insert_input!]! + + """upsert condition""" + on_conflict: match_lineup_players_on_conflict + ): match_lineup_players_mutation_response + + """ + insert a single row into the table: "match_lineup_players" + """ + insert_match_lineup_players_one( + """the row to be inserted""" + object: match_lineup_players_insert_input! + + """upsert condition""" + on_conflict: match_lineup_players_on_conflict + ): match_lineup_players + + """ + insert data into the table: "match_lineups" + """ + insert_match_lineups( + """the rows to be inserted""" + objects: [match_lineups_insert_input!]! + + """upsert condition""" + on_conflict: match_lineups_on_conflict + ): match_lineups_mutation_response + + """ + insert a single row into the table: "match_lineups" + """ + insert_match_lineups_one( + """the row to be inserted""" + object: match_lineups_insert_input! + + """upsert condition""" + on_conflict: match_lineups_on_conflict + ): match_lineups + + """ + insert data into the table: "match_map_demos" + """ + insert_match_map_demos( + """the rows to be inserted""" + objects: [match_map_demos_insert_input!]! + + """upsert condition""" + on_conflict: match_map_demos_on_conflict + ): match_map_demos_mutation_response + + """ + insert a single row into the table: "match_map_demos" + """ + insert_match_map_demos_one( + """the row to be inserted""" + object: match_map_demos_insert_input! + + """upsert condition""" + on_conflict: match_map_demos_on_conflict + ): match_map_demos + + """ + insert data into the table: "match_map_rounds" + """ + insert_match_map_rounds( + """the rows to be inserted""" + objects: [match_map_rounds_insert_input!]! + + """upsert condition""" + on_conflict: match_map_rounds_on_conflict + ): match_map_rounds_mutation_response + + """ + insert a single row into the table: "match_map_rounds" + """ + insert_match_map_rounds_one( + """the row to be inserted""" + object: match_map_rounds_insert_input! + + """upsert condition""" + on_conflict: match_map_rounds_on_conflict + ): match_map_rounds + + """ + insert data into the table: "match_map_veto_picks" + """ + insert_match_map_veto_picks( + """the rows to be inserted""" + objects: [match_map_veto_picks_insert_input!]! + + """upsert condition""" + on_conflict: match_map_veto_picks_on_conflict + ): match_map_veto_picks_mutation_response + + """ + insert a single row into the table: "match_map_veto_picks" + """ + insert_match_map_veto_picks_one( + """the row to be inserted""" + object: match_map_veto_picks_insert_input! + + """upsert condition""" + on_conflict: match_map_veto_picks_on_conflict + ): match_map_veto_picks + + """ + insert data into the table: "match_maps" + """ + insert_match_maps( + """the rows to be inserted""" + objects: [match_maps_insert_input!]! + + """upsert condition""" + on_conflict: match_maps_on_conflict + ): match_maps_mutation_response + + """ + insert a single row into the table: "match_maps" + """ + insert_match_maps_one( + """the row to be inserted""" + object: match_maps_insert_input! + + """upsert condition""" + on_conflict: match_maps_on_conflict + ): match_maps + + """ + insert data into the table: "match_options" + """ + insert_match_options( + """the rows to be inserted""" + objects: [match_options_insert_input!]! + + """upsert condition""" + on_conflict: match_options_on_conflict + ): match_options_mutation_response + + """ + insert a single row into the table: "match_options" + """ + insert_match_options_one( + """the row to be inserted""" + object: match_options_insert_input! + + """upsert condition""" + on_conflict: match_options_on_conflict + ): match_options + + """ + insert data into the table: "match_region_veto_picks" + """ + insert_match_region_veto_picks( + """the rows to be inserted""" + objects: [match_region_veto_picks_insert_input!]! + + """upsert condition""" + on_conflict: match_region_veto_picks_on_conflict + ): match_region_veto_picks_mutation_response + + """ + insert a single row into the table: "match_region_veto_picks" + """ + insert_match_region_veto_picks_one( + """the row to be inserted""" + object: match_region_veto_picks_insert_input! + + """upsert condition""" + on_conflict: match_region_veto_picks_on_conflict + ): match_region_veto_picks + + """ + insert data into the table: "match_streams" + """ + insert_match_streams( + """the rows to be inserted""" + objects: [match_streams_insert_input!]! + + """upsert condition""" + on_conflict: match_streams_on_conflict + ): match_streams_mutation_response + + """ + insert a single row into the table: "match_streams" + """ + insert_match_streams_one( + """the row to be inserted""" + object: match_streams_insert_input! + + """upsert condition""" + on_conflict: match_streams_on_conflict + ): match_streams + + """ + insert data into the table: "match_type_cfgs" + """ + insert_match_type_cfgs( + """the rows to be inserted""" + objects: [match_type_cfgs_insert_input!]! + + """upsert condition""" + on_conflict: match_type_cfgs_on_conflict + ): match_type_cfgs_mutation_response + + """ + insert a single row into the table: "match_type_cfgs" + """ + insert_match_type_cfgs_one( + """the row to be inserted""" + object: match_type_cfgs_insert_input! + + """upsert condition""" + on_conflict: match_type_cfgs_on_conflict + ): match_type_cfgs + + """ + insert data into the table: "matches" + """ + insert_matches( + """the rows to be inserted""" + objects: [matches_insert_input!]! + + """upsert condition""" + on_conflict: matches_on_conflict + ): matches_mutation_response + + """ + insert a single row into the table: "matches" + """ + insert_matches_one( + """the row to be inserted""" + object: matches_insert_input! + + """upsert condition""" + on_conflict: matches_on_conflict + ): matches + + """ + insert data into the table: "migration_hashes.hashes" + """ + insert_migration_hashes_hashes( + """the rows to be inserted""" + objects: [migration_hashes_hashes_insert_input!]! + + """upsert condition""" + on_conflict: migration_hashes_hashes_on_conflict + ): migration_hashes_hashes_mutation_response + + """ + insert a single row into the table: "migration_hashes.hashes" + """ + insert_migration_hashes_hashes_one( + """the row to be inserted""" + object: migration_hashes_hashes_insert_input! + + """upsert condition""" + on_conflict: migration_hashes_hashes_on_conflict + ): migration_hashes_hashes + + """ + insert data into the table: "v_my_friends" + """ + insert_my_friends( + """the rows to be inserted""" + objects: [my_friends_insert_input!]! + ): my_friends_mutation_response + + """ + insert a single row into the table: "v_my_friends" + """ + insert_my_friends_one( + """the row to be inserted""" + object: my_friends_insert_input! + ): my_friends + + """ + insert data into the table: "news_articles" + """ + insert_news_articles( + """the rows to be inserted""" + objects: [news_articles_insert_input!]! + + """upsert condition""" + on_conflict: news_articles_on_conflict + ): news_articles_mutation_response + + """ + insert a single row into the table: "news_articles" + """ + insert_news_articles_one( + """the row to be inserted""" + object: news_articles_insert_input! + + """upsert condition""" + on_conflict: news_articles_on_conflict + ): news_articles + + """ + insert data into the table: "notification_preferences" + """ + insert_notification_preferences( + """the rows to be inserted""" + objects: [notification_preferences_insert_input!]! + + """upsert condition""" + on_conflict: notification_preferences_on_conflict + ): notification_preferences_mutation_response + + """ + insert a single row into the table: "notification_preferences" + """ + insert_notification_preferences_one( + """the row to be inserted""" + object: notification_preferences_insert_input! + + """upsert condition""" + on_conflict: notification_preferences_on_conflict + ): notification_preferences + + """ + insert data into the table: "notifications" + """ + insert_notifications( + """the rows to be inserted""" + objects: [notifications_insert_input!]! + + """upsert condition""" + on_conflict: notifications_on_conflict + ): notifications_mutation_response + + """ + insert a single row into the table: "notifications" + """ + insert_notifications_one( + """the row to be inserted""" + object: notifications_insert_input! + + """upsert condition""" + on_conflict: notifications_on_conflict + ): notifications + + """ + insert data into the table: "pending_match_import_players" + """ + insert_pending_match_import_players( + """the rows to be inserted""" + objects: [pending_match_import_players_insert_input!]! + + """upsert condition""" + on_conflict: pending_match_import_players_on_conflict + ): pending_match_import_players_mutation_response + + """ + insert a single row into the table: "pending_match_import_players" + """ + insert_pending_match_import_players_one( + """the row to be inserted""" + object: pending_match_import_players_insert_input! + + """upsert condition""" + on_conflict: pending_match_import_players_on_conflict + ): pending_match_import_players + + """ + insert data into the table: "pending_match_imports" + """ + insert_pending_match_imports( + """the rows to be inserted""" + objects: [pending_match_imports_insert_input!]! + + """upsert condition""" + on_conflict: pending_match_imports_on_conflict + ): pending_match_imports_mutation_response + + """ + insert a single row into the table: "pending_match_imports" + """ + insert_pending_match_imports_one( + """the row to be inserted""" + object: pending_match_imports_insert_input! + + """upsert condition""" + on_conflict: pending_match_imports_on_conflict + ): pending_match_imports + + """ + insert data into the table: "player_aim_stats_demo" + """ + insert_player_aim_stats_demo( + """the rows to be inserted""" + objects: [player_aim_stats_demo_insert_input!]! + + """upsert condition""" + on_conflict: player_aim_stats_demo_on_conflict + ): player_aim_stats_demo_mutation_response + + """ + insert a single row into the table: "player_aim_stats_demo" + """ + insert_player_aim_stats_demo_one( + """the row to be inserted""" + object: player_aim_stats_demo_insert_input! + + """upsert condition""" + on_conflict: player_aim_stats_demo_on_conflict + ): player_aim_stats_demo + + """ + insert data into the table: "player_aim_weapon_stats" + """ + insert_player_aim_weapon_stats( + """the rows to be inserted""" + objects: [player_aim_weapon_stats_insert_input!]! + + """upsert condition""" + on_conflict: player_aim_weapon_stats_on_conflict + ): player_aim_weapon_stats_mutation_response + + """ + insert a single row into the table: "player_aim_weapon_stats" + """ + insert_player_aim_weapon_stats_one( + """the row to be inserted""" + object: player_aim_weapon_stats_insert_input! + + """upsert condition""" + on_conflict: player_aim_weapon_stats_on_conflict + ): player_aim_weapon_stats + + """ + insert data into the table: "player_assists" + """ + insert_player_assists( + """the rows to be inserted""" + objects: [player_assists_insert_input!]! + + """upsert condition""" + on_conflict: player_assists_on_conflict + ): player_assists_mutation_response + + """ + insert a single row into the table: "player_assists" + """ + insert_player_assists_one( + """the row to be inserted""" + object: player_assists_insert_input! + + """upsert condition""" + on_conflict: player_assists_on_conflict + ): player_assists + + """ + insert data into the table: "player_damages" + """ + insert_player_damages( + """the rows to be inserted""" + objects: [player_damages_insert_input!]! + + """upsert condition""" + on_conflict: player_damages_on_conflict + ): player_damages_mutation_response + + """ + insert a single row into the table: "player_damages" + """ + insert_player_damages_one( + """the row to be inserted""" + object: player_damages_insert_input! + + """upsert condition""" + on_conflict: player_damages_on_conflict + ): player_damages + + """ + insert data into the table: "player_elo" + """ + insert_player_elo( + """the rows to be inserted""" + objects: [player_elo_insert_input!]! + + """upsert condition""" + on_conflict: player_elo_on_conflict + ): player_elo_mutation_response + + """ + insert a single row into the table: "player_elo" + """ + insert_player_elo_one( + """the row to be inserted""" + object: player_elo_insert_input! + + """upsert condition""" + on_conflict: player_elo_on_conflict + ): player_elo + + """ + insert data into the table: "player_faceit_rank_history" + """ + insert_player_faceit_rank_history( + """the rows to be inserted""" + objects: [player_faceit_rank_history_insert_input!]! + + """upsert condition""" + on_conflict: player_faceit_rank_history_on_conflict + ): player_faceit_rank_history_mutation_response + + """ + insert a single row into the table: "player_faceit_rank_history" + """ + insert_player_faceit_rank_history_one( + """the row to be inserted""" + object: player_faceit_rank_history_insert_input! + + """upsert condition""" + on_conflict: player_faceit_rank_history_on_conflict + ): player_faceit_rank_history + + """ + insert data into the table: "player_flashes" + """ + insert_player_flashes( + """the rows to be inserted""" + objects: [player_flashes_insert_input!]! + + """upsert condition""" + on_conflict: player_flashes_on_conflict + ): player_flashes_mutation_response + + """ + insert a single row into the table: "player_flashes" + """ + insert_player_flashes_one( + """the row to be inserted""" + object: player_flashes_insert_input! + + """upsert condition""" + on_conflict: player_flashes_on_conflict + ): player_flashes + + """ + insert data into the table: "player_kills" + """ + insert_player_kills( + """the rows to be inserted""" + objects: [player_kills_insert_input!]! + + """upsert condition""" + on_conflict: player_kills_on_conflict + ): player_kills_mutation_response + + """ + insert data into the table: "player_kills_by_weapon" + """ + insert_player_kills_by_weapon( + """the rows to be inserted""" + objects: [player_kills_by_weapon_insert_input!]! + + """upsert condition""" + on_conflict: player_kills_by_weapon_on_conflict + ): player_kills_by_weapon_mutation_response + + """ + insert a single row into the table: "player_kills_by_weapon" + """ + insert_player_kills_by_weapon_one( + """the row to be inserted""" + object: player_kills_by_weapon_insert_input! + + """upsert condition""" + on_conflict: player_kills_by_weapon_on_conflict + ): player_kills_by_weapon + + """ + insert a single row into the table: "player_kills" + """ + insert_player_kills_one( + """the row to be inserted""" + object: player_kills_insert_input! + + """upsert condition""" + on_conflict: player_kills_on_conflict + ): player_kills + + """ + insert data into the table: "player_leaderboard_rank" + """ + insert_player_leaderboard_rank( + """the rows to be inserted""" + objects: [player_leaderboard_rank_insert_input!]! + ): player_leaderboard_rank_mutation_response + + """ + insert a single row into the table: "player_leaderboard_rank" + """ + insert_player_leaderboard_rank_one( + """the row to be inserted""" + object: player_leaderboard_rank_insert_input! + ): player_leaderboard_rank + + """ + insert data into the table: "player_match_map_stats" + """ + insert_player_match_map_stats( + """the rows to be inserted""" + objects: [player_match_map_stats_insert_input!]! + + """upsert condition""" + on_conflict: player_match_map_stats_on_conflict + ): player_match_map_stats_mutation_response + + """ + insert a single row into the table: "player_match_map_stats" + """ + insert_player_match_map_stats_one( + """the row to be inserted""" + object: player_match_map_stats_insert_input! + + """upsert condition""" + on_conflict: player_match_map_stats_on_conflict + ): player_match_map_stats + + """ + insert data into the table: "player_objectives" + """ + insert_player_objectives( + """the rows to be inserted""" + objects: [player_objectives_insert_input!]! + + """upsert condition""" + on_conflict: player_objectives_on_conflict + ): player_objectives_mutation_response + + """ + insert a single row into the table: "player_objectives" + """ + insert_player_objectives_one( + """the row to be inserted""" + object: player_objectives_insert_input! + + """upsert condition""" + on_conflict: player_objectives_on_conflict + ): player_objectives + + """ + insert data into the table: "player_premier_rank_history" + """ + insert_player_premier_rank_history( + """the rows to be inserted""" + objects: [player_premier_rank_history_insert_input!]! + + """upsert condition""" + on_conflict: player_premier_rank_history_on_conflict + ): player_premier_rank_history_mutation_response + + """ + insert a single row into the table: "player_premier_rank_history" + """ + insert_player_premier_rank_history_one( + """the row to be inserted""" + object: player_premier_rank_history_insert_input! + + """upsert condition""" + on_conflict: player_premier_rank_history_on_conflict + ): player_premier_rank_history + + """ + insert data into the table: "player_sanctions" + """ + insert_player_sanctions( + """the rows to be inserted""" + objects: [player_sanctions_insert_input!]! + + """upsert condition""" + on_conflict: player_sanctions_on_conflict + ): player_sanctions_mutation_response + + """ + insert a single row into the table: "player_sanctions" + """ + insert_player_sanctions_one( + """the row to be inserted""" + object: player_sanctions_insert_input! + + """upsert condition""" + on_conflict: player_sanctions_on_conflict + ): player_sanctions + + """ + insert data into the table: "player_season_stats" + """ + insert_player_season_stats( + """the rows to be inserted""" + objects: [player_season_stats_insert_input!]! + + """upsert condition""" + on_conflict: player_season_stats_on_conflict + ): player_season_stats_mutation_response + + """ + insert a single row into the table: "player_season_stats" + """ + insert_player_season_stats_one( + """the row to be inserted""" + object: player_season_stats_insert_input! + + """upsert condition""" + on_conflict: player_season_stats_on_conflict + ): player_season_stats + + """ + insert data into the table: "player_stats" + """ + insert_player_stats( + """the rows to be inserted""" + objects: [player_stats_insert_input!]! + + """upsert condition""" + on_conflict: player_stats_on_conflict + ): player_stats_mutation_response + + """ + insert a single row into the table: "player_stats" + """ + insert_player_stats_one( + """the row to be inserted""" + object: player_stats_insert_input! + + """upsert condition""" + on_conflict: player_stats_on_conflict + ): player_stats + + """ + insert data into the table: "player_steam_bot_friend" + """ + insert_player_steam_bot_friend( + """the rows to be inserted""" + objects: [player_steam_bot_friend_insert_input!]! + + """upsert condition""" + on_conflict: player_steam_bot_friend_on_conflict + ): player_steam_bot_friend_mutation_response + + """ + insert a single row into the table: "player_steam_bot_friend" + """ + insert_player_steam_bot_friend_one( + """the row to be inserted""" + object: player_steam_bot_friend_insert_input! + + """upsert condition""" + on_conflict: player_steam_bot_friend_on_conflict + ): player_steam_bot_friend + + """ + insert data into the table: "player_steam_match_auth" + """ + insert_player_steam_match_auth( + """the rows to be inserted""" + objects: [player_steam_match_auth_insert_input!]! + + """upsert condition""" + on_conflict: player_steam_match_auth_on_conflict + ): player_steam_match_auth_mutation_response + + """ + insert a single row into the table: "player_steam_match_auth" + """ + insert_player_steam_match_auth_one( + """the row to be inserted""" + object: player_steam_match_auth_insert_input! + + """upsert condition""" + on_conflict: player_steam_match_auth_on_conflict + ): player_steam_match_auth + + """ + insert data into the table: "player_unused_utility" + """ + insert_player_unused_utility( + """the rows to be inserted""" + objects: [player_unused_utility_insert_input!]! + + """upsert condition""" + on_conflict: player_unused_utility_on_conflict + ): player_unused_utility_mutation_response + + """ + insert a single row into the table: "player_unused_utility" + """ + insert_player_unused_utility_one( + """the row to be inserted""" + object: player_unused_utility_insert_input! + + """upsert condition""" + on_conflict: player_unused_utility_on_conflict + ): player_unused_utility + + """ + insert data into the table: "player_utility" + """ + insert_player_utility( + """the rows to be inserted""" + objects: [player_utility_insert_input!]! + + """upsert condition""" + on_conflict: player_utility_on_conflict + ): player_utility_mutation_response + + """ + insert a single row into the table: "player_utility" + """ + insert_player_utility_one( + """the row to be inserted""" + object: player_utility_insert_input! + + """upsert condition""" + on_conflict: player_utility_on_conflict + ): player_utility + + """ + insert data into the table: "players" + """ + insert_players( + """the rows to be inserted""" + objects: [players_insert_input!]! + + """upsert condition""" + on_conflict: players_on_conflict + ): players_mutation_response + + """ + insert a single row into the table: "players" + """ + insert_players_one( + """the row to be inserted""" + object: players_insert_input! + + """upsert condition""" + on_conflict: players_on_conflict + ): players + + """ + insert data into the table: "plugin_versions" + """ + insert_plugin_versions( + """the rows to be inserted""" + objects: [plugin_versions_insert_input!]! + + """upsert condition""" + on_conflict: plugin_versions_on_conflict + ): plugin_versions_mutation_response + + """ + insert a single row into the table: "plugin_versions" + """ + insert_plugin_versions_one( + """the row to be inserted""" + object: plugin_versions_insert_input! + + """upsert condition""" + on_conflict: plugin_versions_on_conflict + ): plugin_versions + + """ + insert data into the table: "push_subscriptions" + """ + insert_push_subscriptions( + """the rows to be inserted""" + objects: [push_subscriptions_insert_input!]! + + """upsert condition""" + on_conflict: push_subscriptions_on_conflict + ): push_subscriptions_mutation_response + + """ + insert a single row into the table: "push_subscriptions" + """ + insert_push_subscriptions_one( + """the row to be inserted""" + object: push_subscriptions_insert_input! + + """upsert condition""" + on_conflict: push_subscriptions_on_conflict + ): push_subscriptions + + """ + insert data into the table: "v_role_permissions" + """ + insert_role_permissions( + """the rows to be inserted""" + objects: [role_permissions_insert_input!]! + ): role_permissions_mutation_response + + """ + insert a single row into the table: "v_role_permissions" + """ + insert_role_permissions_one( + """the row to be inserted""" + object: role_permissions_insert_input! + ): role_permissions + + """ + insert data into the table: "seasons" + """ + insert_seasons( + """the rows to be inserted""" + objects: [seasons_insert_input!]! + + """upsert condition""" + on_conflict: seasons_on_conflict + ): seasons_mutation_response + + """ + insert a single row into the table: "seasons" + """ + insert_seasons_one( + """the row to be inserted""" + object: seasons_insert_input! + + """upsert condition""" + on_conflict: seasons_on_conflict + ): seasons + + """ + insert data into the table: "server_regions" + """ + insert_server_regions( + """the rows to be inserted""" + objects: [server_regions_insert_input!]! + + """upsert condition""" + on_conflict: server_regions_on_conflict + ): server_regions_mutation_response + + """ + insert a single row into the table: "server_regions" + """ + insert_server_regions_one( + """the row to be inserted""" + object: server_regions_insert_input! + + """upsert condition""" + on_conflict: server_regions_on_conflict + ): server_regions + + """ + insert data into the table: "servers" + """ + insert_servers( + """the rows to be inserted""" + objects: [servers_insert_input!]! + + """upsert condition""" + on_conflict: servers_on_conflict + ): servers_mutation_response + + """ + insert a single row into the table: "servers" + """ + insert_servers_one( + """the row to be inserted""" + object: servers_insert_input! + + """upsert condition""" + on_conflict: servers_on_conflict + ): servers + + """ + insert data into the table: "settings" + """ + insert_settings( + """the rows to be inserted""" + objects: [settings_insert_input!]! + + """upsert condition""" + on_conflict: settings_on_conflict + ): settings_mutation_response + + """ + insert a single row into the table: "settings" + """ + insert_settings_one( + """the row to be inserted""" + object: settings_insert_input! + + """upsert condition""" + on_conflict: settings_on_conflict + ): settings + + """ + insert data into the table: "steam_account_claims" + """ + insert_steam_account_claims( + """the rows to be inserted""" + objects: [steam_account_claims_insert_input!]! + + """upsert condition""" + on_conflict: steam_account_claims_on_conflict + ): steam_account_claims_mutation_response + + """ + insert a single row into the table: "steam_account_claims" + """ + insert_steam_account_claims_one( + """the row to be inserted""" + object: steam_account_claims_insert_input! + + """upsert condition""" + on_conflict: steam_account_claims_on_conflict + ): steam_account_claims + + """ + insert data into the table: "steam_accounts" + """ + insert_steam_accounts( + """the rows to be inserted""" + objects: [steam_accounts_insert_input!]! + + """upsert condition""" + on_conflict: steam_accounts_on_conflict + ): steam_accounts_mutation_response + + """ + insert a single row into the table: "steam_accounts" + """ + insert_steam_accounts_one( + """the row to be inserted""" + object: steam_accounts_insert_input! + + """upsert condition""" + on_conflict: steam_accounts_on_conflict + ): steam_accounts + + """ + insert data into the table: "system_alerts" + """ + insert_system_alerts( + """the rows to be inserted""" + objects: [system_alerts_insert_input!]! + + """upsert condition""" + on_conflict: system_alerts_on_conflict + ): system_alerts_mutation_response + + """ + insert a single row into the table: "system_alerts" + """ + insert_system_alerts_one( + """the row to be inserted""" + object: system_alerts_insert_input! + + """upsert condition""" + on_conflict: system_alerts_on_conflict + ): system_alerts + + """ + insert data into the table: "team_invites" + """ + insert_team_invites( + """the rows to be inserted""" + objects: [team_invites_insert_input!]! + + """upsert condition""" + on_conflict: team_invites_on_conflict + ): team_invites_mutation_response + + """ + insert a single row into the table: "team_invites" + """ + insert_team_invites_one( + """the row to be inserted""" + object: team_invites_insert_input! + + """upsert condition""" + on_conflict: team_invites_on_conflict + ): team_invites + + """ + insert data into the table: "team_roster" + """ + insert_team_roster( + """the rows to be inserted""" + objects: [team_roster_insert_input!]! + + """upsert condition""" + on_conflict: team_roster_on_conflict + ): team_roster_mutation_response + + """ + insert a single row into the table: "team_roster" + """ + insert_team_roster_one( + """the row to be inserted""" + object: team_roster_insert_input! + + """upsert condition""" + on_conflict: team_roster_on_conflict + ): team_roster + + """ + insert data into the table: "team_scrim_alerts" + """ + insert_team_scrim_alerts( + """the rows to be inserted""" + objects: [team_scrim_alerts_insert_input!]! + + """upsert condition""" + on_conflict: team_scrim_alerts_on_conflict + ): team_scrim_alerts_mutation_response + + """ + insert a single row into the table: "team_scrim_alerts" + """ + insert_team_scrim_alerts_one( + """the row to be inserted""" + object: team_scrim_alerts_insert_input! + + """upsert condition""" + on_conflict: team_scrim_alerts_on_conflict + ): team_scrim_alerts + + """ + insert data into the table: "team_scrim_availability" + """ + insert_team_scrim_availability( + """the rows to be inserted""" + objects: [team_scrim_availability_insert_input!]! + + """upsert condition""" + on_conflict: team_scrim_availability_on_conflict + ): team_scrim_availability_mutation_response + + """ + insert a single row into the table: "team_scrim_availability" + """ + insert_team_scrim_availability_one( + """the row to be inserted""" + object: team_scrim_availability_insert_input! + + """upsert condition""" + on_conflict: team_scrim_availability_on_conflict + ): team_scrim_availability + + """ + insert data into the table: "team_scrim_request_proposals" + """ + insert_team_scrim_request_proposals( + """the rows to be inserted""" + objects: [team_scrim_request_proposals_insert_input!]! + + """upsert condition""" + on_conflict: team_scrim_request_proposals_on_conflict + ): team_scrim_request_proposals_mutation_response + + """ + insert a single row into the table: "team_scrim_request_proposals" + """ + insert_team_scrim_request_proposals_one( + """the row to be inserted""" + object: team_scrim_request_proposals_insert_input! + + """upsert condition""" + on_conflict: team_scrim_request_proposals_on_conflict + ): team_scrim_request_proposals + + """ + insert data into the table: "team_scrim_requests" + """ + insert_team_scrim_requests( + """the rows to be inserted""" + objects: [team_scrim_requests_insert_input!]! + + """upsert condition""" + on_conflict: team_scrim_requests_on_conflict + ): team_scrim_requests_mutation_response + + """ + insert a single row into the table: "team_scrim_requests" + """ + insert_team_scrim_requests_one( + """the row to be inserted""" + object: team_scrim_requests_insert_input! + + """upsert condition""" + on_conflict: team_scrim_requests_on_conflict + ): team_scrim_requests + + """ + insert data into the table: "team_scrim_settings" + """ + insert_team_scrim_settings( + """the rows to be inserted""" + objects: [team_scrim_settings_insert_input!]! + + """upsert condition""" + on_conflict: team_scrim_settings_on_conflict + ): team_scrim_settings_mutation_response + + """ + insert a single row into the table: "team_scrim_settings" + """ + insert_team_scrim_settings_one( + """the row to be inserted""" + object: team_scrim_settings_insert_input! + + """upsert condition""" + on_conflict: team_scrim_settings_on_conflict + ): team_scrim_settings + + """ + insert data into the table: "team_suggestions" + """ + insert_team_suggestions( + """the rows to be inserted""" + objects: [team_suggestions_insert_input!]! + + """upsert condition""" + on_conflict: team_suggestions_on_conflict + ): team_suggestions_mutation_response + + """ + insert a single row into the table: "team_suggestions" + """ + insert_team_suggestions_one( + """the row to be inserted""" + object: team_suggestions_insert_input! + + """upsert condition""" + on_conflict: team_suggestions_on_conflict + ): team_suggestions + + """ + insert data into the table: "teams" + """ + insert_teams( + """the rows to be inserted""" + objects: [teams_insert_input!]! + + """upsert condition""" + on_conflict: teams_on_conflict + ): teams_mutation_response + + """ + insert a single row into the table: "teams" + """ + insert_teams_one( + """the row to be inserted""" + object: teams_insert_input! + + """upsert condition""" + on_conflict: teams_on_conflict + ): teams + + """ + insert data into the table: "tournament_awards" + """ + insert_tournament_awards( + """the rows to be inserted""" + objects: [tournament_awards_insert_input!]! + + """upsert condition""" + on_conflict: tournament_awards_on_conflict + ): tournament_awards_mutation_response + + """ + insert a single row into the table: "tournament_awards" + """ + insert_tournament_awards_one( + """the row to be inserted""" + object: tournament_awards_insert_input! + + """upsert condition""" + on_conflict: tournament_awards_on_conflict + ): tournament_awards + + """ + insert data into the table: "tournament_brackets" + """ + insert_tournament_brackets( + """the rows to be inserted""" + objects: [tournament_brackets_insert_input!]! + + """upsert condition""" + on_conflict: tournament_brackets_on_conflict + ): tournament_brackets_mutation_response + + """ + insert a single row into the table: "tournament_brackets" + """ + insert_tournament_brackets_one( + """the row to be inserted""" + object: tournament_brackets_insert_input! + + """upsert condition""" + on_conflict: tournament_brackets_on_conflict + ): tournament_brackets + + """ + insert data into the table: "tournament_categories" + """ + insert_tournament_categories( + """the rows to be inserted""" + objects: [tournament_categories_insert_input!]! + + """upsert condition""" + on_conflict: tournament_categories_on_conflict + ): tournament_categories_mutation_response + + """ + insert a single row into the table: "tournament_categories" + """ + insert_tournament_categories_one( + """the row to be inserted""" + object: tournament_categories_insert_input! + + """upsert condition""" + on_conflict: tournament_categories_on_conflict + ): tournament_categories + + """ + insert data into the table: "tournament_free_agents" + """ + insert_tournament_free_agents( + """the rows to be inserted""" + objects: [tournament_free_agents_insert_input!]! + + """upsert condition""" + on_conflict: tournament_free_agents_on_conflict + ): tournament_free_agents_mutation_response + + """ + insert a single row into the table: "tournament_free_agents" + """ + insert_tournament_free_agents_one( + """the row to be inserted""" + object: tournament_free_agents_insert_input! + + """upsert condition""" + on_conflict: tournament_free_agents_on_conflict + ): tournament_free_agents + + """ + insert data into the table: "tournament_invite_code_uses" + """ + insert_tournament_invite_code_uses( + """the rows to be inserted""" + objects: [tournament_invite_code_uses_insert_input!]! + + """upsert condition""" + on_conflict: tournament_invite_code_uses_on_conflict + ): tournament_invite_code_uses_mutation_response + + """ + insert a single row into the table: "tournament_invite_code_uses" + """ + insert_tournament_invite_code_uses_one( + """the row to be inserted""" + object: tournament_invite_code_uses_insert_input! + + """upsert condition""" + on_conflict: tournament_invite_code_uses_on_conflict + ): tournament_invite_code_uses + + """ + insert data into the table: "tournament_invite_codes" + """ + insert_tournament_invite_codes( + """the rows to be inserted""" + objects: [tournament_invite_codes_insert_input!]! + + """upsert condition""" + on_conflict: tournament_invite_codes_on_conflict + ): tournament_invite_codes_mutation_response + + """ + insert a single row into the table: "tournament_invite_codes" + """ + insert_tournament_invite_codes_one( + """the row to be inserted""" + object: tournament_invite_codes_insert_input! + + """upsert condition""" + on_conflict: tournament_invite_codes_on_conflict + ): tournament_invite_codes + + """ + insert data into the table: "tournament_invites" + """ + insert_tournament_invites( + """the rows to be inserted""" + objects: [tournament_invites_insert_input!]! + + """upsert condition""" + on_conflict: tournament_invites_on_conflict + ): tournament_invites_mutation_response + + """ + insert a single row into the table: "tournament_invites" + """ + insert_tournament_invites_one( + """the row to be inserted""" + object: tournament_invites_insert_input! + + """upsert condition""" + on_conflict: tournament_invites_on_conflict + ): tournament_invites + + """ + insert data into the table: "tournament_leaderboard_entries" + """ + insert_tournament_leaderboard_entries( + """the rows to be inserted""" + objects: [tournament_leaderboard_entries_insert_input!]! + ): tournament_leaderboard_entries_mutation_response + + """ + insert a single row into the table: "tournament_leaderboard_entries" + """ + insert_tournament_leaderboard_entries_one( + """the row to be inserted""" + object: tournament_leaderboard_entries_insert_input! + ): tournament_leaderboard_entries + + """ + insert data into the table: "tournament_no_shows" + """ + insert_tournament_no_shows( + """the rows to be inserted""" + objects: [tournament_no_shows_insert_input!]! + + """upsert condition""" + on_conflict: tournament_no_shows_on_conflict + ): tournament_no_shows_mutation_response + + """ + insert a single row into the table: "tournament_no_shows" + """ + insert_tournament_no_shows_one( + """the row to be inserted""" + object: tournament_no_shows_insert_input! + + """upsert condition""" + on_conflict: tournament_no_shows_on_conflict + ): tournament_no_shows + + """ + insert data into the table: "tournament_organizer_teams" + """ + insert_tournament_organizer_teams( + """the rows to be inserted""" + objects: [tournament_organizer_teams_insert_input!]! + + """upsert condition""" + on_conflict: tournament_organizer_teams_on_conflict + ): tournament_organizer_teams_mutation_response + + """ + insert a single row into the table: "tournament_organizer_teams" + """ + insert_tournament_organizer_teams_one( + """the row to be inserted""" + object: tournament_organizer_teams_insert_input! + + """upsert condition""" + on_conflict: tournament_organizer_teams_on_conflict + ): tournament_organizer_teams + + """ + insert data into the table: "tournament_organizers" + """ + insert_tournament_organizers( + """the rows to be inserted""" + objects: [tournament_organizers_insert_input!]! + + """upsert condition""" + on_conflict: tournament_organizers_on_conflict + ): tournament_organizers_mutation_response + + """ + insert a single row into the table: "tournament_organizers" + """ + insert_tournament_organizers_one( + """the row to be inserted""" + object: tournament_organizers_insert_input! + + """upsert condition""" + on_conflict: tournament_organizers_on_conflict + ): tournament_organizers + + """ + insert data into the table: "tournament_prizes" + """ + insert_tournament_prizes( + """the rows to be inserted""" + objects: [tournament_prizes_insert_input!]! + + """upsert condition""" + on_conflict: tournament_prizes_on_conflict + ): tournament_prizes_mutation_response + + """ + insert a single row into the table: "tournament_prizes" + """ + insert_tournament_prizes_one( + """the row to be inserted""" + object: tournament_prizes_insert_input! + + """upsert condition""" + on_conflict: tournament_prizes_on_conflict + ): tournament_prizes + + """ + insert data into the table: "tournament_registration_unlocks" + """ + insert_tournament_registration_unlocks( + """the rows to be inserted""" + objects: [tournament_registration_unlocks_insert_input!]! + + """upsert condition""" + on_conflict: tournament_registration_unlocks_on_conflict + ): tournament_registration_unlocks_mutation_response + + """ + insert a single row into the table: "tournament_registration_unlocks" + """ + insert_tournament_registration_unlocks_one( + """the row to be inserted""" + object: tournament_registration_unlocks_insert_input! + + """upsert condition""" + on_conflict: tournament_registration_unlocks_on_conflict + ): tournament_registration_unlocks + + """ + insert data into the table: "tournament_stage_windows" + """ + insert_tournament_stage_windows( + """the rows to be inserted""" + objects: [tournament_stage_windows_insert_input!]! + + """upsert condition""" + on_conflict: tournament_stage_windows_on_conflict + ): tournament_stage_windows_mutation_response + + """ + insert a single row into the table: "tournament_stage_windows" + """ + insert_tournament_stage_windows_one( + """the row to be inserted""" + object: tournament_stage_windows_insert_input! + + """upsert condition""" + on_conflict: tournament_stage_windows_on_conflict + ): tournament_stage_windows + + """ + insert data into the table: "tournament_stages" + """ + insert_tournament_stages( + """the rows to be inserted""" + objects: [tournament_stages_insert_input!]! + + """upsert condition""" + on_conflict: tournament_stages_on_conflict + ): tournament_stages_mutation_response + + """ + insert a single row into the table: "tournament_stages" + """ + insert_tournament_stages_one( + """the row to be inserted""" + object: tournament_stages_insert_input! + + """upsert condition""" + on_conflict: tournament_stages_on_conflict + ): tournament_stages + + """ + insert data into the table: "tournament_team_invites" + """ + insert_tournament_team_invites( + """the rows to be inserted""" + objects: [tournament_team_invites_insert_input!]! + + """upsert condition""" + on_conflict: tournament_team_invites_on_conflict + ): tournament_team_invites_mutation_response + + """ + insert a single row into the table: "tournament_team_invites" + """ + insert_tournament_team_invites_one( + """the row to be inserted""" + object: tournament_team_invites_insert_input! + + """upsert condition""" + on_conflict: tournament_team_invites_on_conflict + ): tournament_team_invites + + """ + insert data into the table: "tournament_team_roster" + """ + insert_tournament_team_roster( + """the rows to be inserted""" + objects: [tournament_team_roster_insert_input!]! + + """upsert condition""" + on_conflict: tournament_team_roster_on_conflict + ): tournament_team_roster_mutation_response + + """ + insert a single row into the table: "tournament_team_roster" + """ + insert_tournament_team_roster_one( + """the row to be inserted""" + object: tournament_team_roster_insert_input! + + """upsert condition""" + on_conflict: tournament_team_roster_on_conflict + ): tournament_team_roster + + """ + insert data into the table: "tournament_teams" + """ + insert_tournament_teams( + """the rows to be inserted""" + objects: [tournament_teams_insert_input!]! + + """upsert condition""" + on_conflict: tournament_teams_on_conflict + ): tournament_teams_mutation_response + + """ + insert a single row into the table: "tournament_teams" + """ + insert_tournament_teams_one( + """the row to be inserted""" + object: tournament_teams_insert_input! + + """upsert condition""" + on_conflict: tournament_teams_on_conflict + ): tournament_teams + + """ + insert data into the table: "tournaments" + """ + insert_tournaments( + """the rows to be inserted""" + objects: [tournaments_insert_input!]! + + """upsert condition""" + on_conflict: tournaments_on_conflict + ): tournaments_mutation_response + + """ + insert a single row into the table: "tournaments" + """ + insert_tournaments_one( + """the row to be inserted""" + object: tournaments_insert_input! + + """upsert condition""" + on_conflict: tournaments_on_conflict + ): tournaments + + """ + insert data into the table: "utility_collection_items" + """ + insert_utility_collection_items( + """the rows to be inserted""" + objects: [utility_collection_items_insert_input!]! + + """upsert condition""" + on_conflict: utility_collection_items_on_conflict + ): utility_collection_items_mutation_response + + """ + insert a single row into the table: "utility_collection_items" + """ + insert_utility_collection_items_one( + """the row to be inserted""" + object: utility_collection_items_insert_input! + + """upsert condition""" + on_conflict: utility_collection_items_on_conflict + ): utility_collection_items + + """ + insert data into the table: "utility_collections" + """ + insert_utility_collections( + """the rows to be inserted""" + objects: [utility_collections_insert_input!]! + + """upsert condition""" + on_conflict: utility_collections_on_conflict + ): utility_collections_mutation_response + + """ + insert a single row into the table: "utility_collections" + """ + insert_utility_collections_one( + """the row to be inserted""" + object: utility_collections_insert_input! + + """upsert condition""" + on_conflict: utility_collections_on_conflict + ): utility_collections + + """ + insert data into the table: "utility_demo_mines" + """ + insert_utility_demo_mines( + """the rows to be inserted""" + objects: [utility_demo_mines_insert_input!]! + + """upsert condition""" + on_conflict: utility_demo_mines_on_conflict + ): utility_demo_mines_mutation_response + + """ + insert a single row into the table: "utility_demo_mines" + """ + insert_utility_demo_mines_one( + """the row to be inserted""" + object: utility_demo_mines_insert_input! + + """upsert condition""" + on_conflict: utility_demo_mines_on_conflict + ): utility_demo_mines + + """ + insert data into the table: "utility_demo_throws" + """ + insert_utility_demo_throws( + """the rows to be inserted""" + objects: [utility_demo_throws_insert_input!]! + + """upsert condition""" + on_conflict: utility_demo_throws_on_conflict + ): utility_demo_throws_mutation_response + + """ + insert a single row into the table: "utility_demo_throws" + """ + insert_utility_demo_throws_one( + """the row to be inserted""" + object: utility_demo_throws_insert_input! + + """upsert condition""" + on_conflict: utility_demo_throws_on_conflict + ): utility_demo_throws + + """ + insert data into the table: "utility_drift_results" + """ + insert_utility_drift_results( + """the rows to be inserted""" + objects: [utility_drift_results_insert_input!]! + + """upsert condition""" + on_conflict: utility_drift_results_on_conflict + ): utility_drift_results_mutation_response + + """ + insert a single row into the table: "utility_drift_results" + """ + insert_utility_drift_results_one( + """the row to be inserted""" + object: utility_drift_results_insert_input! + + """upsert condition""" + on_conflict: utility_drift_results_on_conflict + ): utility_drift_results + + """ + insert data into the table: "utility_drift_scans" + """ + insert_utility_drift_scans( + """the rows to be inserted""" + objects: [utility_drift_scans_insert_input!]! + + """upsert condition""" + on_conflict: utility_drift_scans_on_conflict + ): utility_drift_scans_mutation_response + + """ + insert a single row into the table: "utility_drift_scans" + """ + insert_utility_drift_scans_one( + """the row to be inserted""" + object: utility_drift_scans_insert_input! + + """upsert condition""" + on_conflict: utility_drift_scans_on_conflict + ): utility_drift_scans + + """ + insert data into the table: "utility_lineup_favorites" + """ + insert_utility_lineup_favorites( + """the rows to be inserted""" + objects: [utility_lineup_favorites_insert_input!]! + + """upsert condition""" + on_conflict: utility_lineup_favorites_on_conflict + ): utility_lineup_favorites_mutation_response + + """ + insert a single row into the table: "utility_lineup_favorites" + """ + insert_utility_lineup_favorites_one( + """the row to be inserted""" + object: utility_lineup_favorites_insert_input! + + """upsert condition""" + on_conflict: utility_lineup_favorites_on_conflict + ): utility_lineup_favorites + + """ + insert data into the table: "utility_lineup_progress" + """ + insert_utility_lineup_progress( + """the rows to be inserted""" + objects: [utility_lineup_progress_insert_input!]! + + """upsert condition""" + on_conflict: utility_lineup_progress_on_conflict + ): utility_lineup_progress_mutation_response + + """ + insert a single row into the table: "utility_lineup_progress" + """ + insert_utility_lineup_progress_one( + """the row to be inserted""" + object: utility_lineup_progress_insert_input! + + """upsert condition""" + on_conflict: utility_lineup_progress_on_conflict + ): utility_lineup_progress + + """ + insert data into the table: "utility_lineup_renders" + """ + insert_utility_lineup_renders( + """the rows to be inserted""" + objects: [utility_lineup_renders_insert_input!]! + + """upsert condition""" + on_conflict: utility_lineup_renders_on_conflict + ): utility_lineup_renders_mutation_response + + """ + insert a single row into the table: "utility_lineup_renders" + """ + insert_utility_lineup_renders_one( + """the row to be inserted""" + object: utility_lineup_renders_insert_input! + + """upsert condition""" + on_conflict: utility_lineup_renders_on_conflict + ): utility_lineup_renders + + """ + insert data into the table: "utility_lineup_repairs" + """ + insert_utility_lineup_repairs( + """the rows to be inserted""" + objects: [utility_lineup_repairs_insert_input!]! + + """upsert condition""" + on_conflict: utility_lineup_repairs_on_conflict + ): utility_lineup_repairs_mutation_response + + """ + insert a single row into the table: "utility_lineup_repairs" + """ + insert_utility_lineup_repairs_one( + """the row to be inserted""" + object: utility_lineup_repairs_insert_input! + + """upsert condition""" + on_conflict: utility_lineup_repairs_on_conflict + ): utility_lineup_repairs + + """ + insert data into the table: "utility_lineup_votes" + """ + insert_utility_lineup_votes( + """the rows to be inserted""" + objects: [utility_lineup_votes_insert_input!]! + + """upsert condition""" + on_conflict: utility_lineup_votes_on_conflict + ): utility_lineup_votes_mutation_response + + """ + insert a single row into the table: "utility_lineup_votes" + """ + insert_utility_lineup_votes_one( + """the row to be inserted""" + object: utility_lineup_votes_insert_input! + + """upsert condition""" + on_conflict: utility_lineup_votes_on_conflict + ): utility_lineup_votes + + """ + insert data into the table: "utility_lineups" + """ + insert_utility_lineups( + """the rows to be inserted""" + objects: [utility_lineups_insert_input!]! + + """upsert condition""" + on_conflict: utility_lineups_on_conflict + ): utility_lineups_mutation_response + + """ + insert a single row into the table: "utility_lineups" + """ + insert_utility_lineups_one( + """the row to be inserted""" + object: utility_lineups_insert_input! + + """upsert condition""" + on_conflict: utility_lineups_on_conflict + ): utility_lineups + + """ + insert data into the table: "utility_meta_lineups" + """ + insert_utility_meta_lineups( + """the rows to be inserted""" + objects: [utility_meta_lineups_insert_input!]! + + """upsert condition""" + on_conflict: utility_meta_lineups_on_conflict + ): utility_meta_lineups_mutation_response + + """ + insert a single row into the table: "utility_meta_lineups" + """ + insert_utility_meta_lineups_one( + """the row to be inserted""" + object: utility_meta_lineups_insert_input! + + """upsert condition""" + on_conflict: utility_meta_lineups_on_conflict + ): utility_meta_lineups + + """ + insert data into the table: "utility_playbook_steps" + """ + insert_utility_playbook_steps( + """the rows to be inserted""" + objects: [utility_playbook_steps_insert_input!]! + + """upsert condition""" + on_conflict: utility_playbook_steps_on_conflict + ): utility_playbook_steps_mutation_response + + """ + insert a single row into the table: "utility_playbook_steps" + """ + insert_utility_playbook_steps_one( + """the row to be inserted""" + object: utility_playbook_steps_insert_input! + + """upsert condition""" + on_conflict: utility_playbook_steps_on_conflict + ): utility_playbook_steps + + """ + insert data into the table: "utility_playbooks" + """ + insert_utility_playbooks( + """the rows to be inserted""" + objects: [utility_playbooks_insert_input!]! + + """upsert condition""" + on_conflict: utility_playbooks_on_conflict + ): utility_playbooks_mutation_response + + """ + insert a single row into the table: "utility_playbooks" + """ + insert_utility_playbooks_one( + """the row to be inserted""" + object: utility_playbooks_insert_input! + + """upsert condition""" + on_conflict: utility_playbooks_on_conflict + ): utility_playbooks + + """ + insert data into the table: "utility_practice_invites" + """ + insert_utility_practice_invites( + """the rows to be inserted""" + objects: [utility_practice_invites_insert_input!]! + + """upsert condition""" + on_conflict: utility_practice_invites_on_conflict + ): utility_practice_invites_mutation_response + + """ + insert a single row into the table: "utility_practice_invites" + """ + insert_utility_practice_invites_one( + """the row to be inserted""" + object: utility_practice_invites_insert_input! + + """upsert condition""" + on_conflict: utility_practice_invites_on_conflict + ): utility_practice_invites + + """ + insert data into the table: "utility_practice_sessions" + """ + insert_utility_practice_sessions( + """the rows to be inserted""" + objects: [utility_practice_sessions_insert_input!]! + + """upsert condition""" + on_conflict: utility_practice_sessions_on_conflict + ): utility_practice_sessions_mutation_response + + """ + insert a single row into the table: "utility_practice_sessions" + """ + insert_utility_practice_sessions_one( + """the row to be inserted""" + object: utility_practice_sessions_insert_input! + + """upsert condition""" + on_conflict: utility_practice_sessions_on_conflict + ): utility_practice_sessions + + """ + insert data into the table: "v_match_captains" + """ + insert_v_match_captains( + """the rows to be inserted""" + objects: [v_match_captains_insert_input!]! + ): v_match_captains_mutation_response + + """ + insert a single row into the table: "v_match_captains" + """ + insert_v_match_captains_one( + """the row to be inserted""" + object: v_match_captains_insert_input! + ): v_match_captains + + """ + insert data into the table: "v_match_map_backup_rounds" + """ + insert_v_match_map_backup_rounds( + """the rows to be inserted""" + objects: [v_match_map_backup_rounds_insert_input!]! + ): v_match_map_backup_rounds_mutation_response + + """ + insert a single row into the table: "v_match_map_backup_rounds" + """ + insert_v_match_map_backup_rounds_one( + """the row to be inserted""" + object: v_match_map_backup_rounds_insert_input! + ): v_match_map_backup_rounds + + """ + insert data into the table: "v_player_match_map_hltv" + """ + insert_v_player_match_map_hltv( + """the rows to be inserted""" + objects: [v_player_match_map_hltv_insert_input!]! + ): v_player_match_map_hltv_mutation_response + + """ + insert a single row into the table: "v_player_match_map_hltv" + """ + insert_v_player_match_map_hltv_one( + """the row to be inserted""" + object: v_player_match_map_hltv_insert_input! + ): v_player_match_map_hltv + + """ + insert data into the table: "v_pool_maps" + """ + insert_v_pool_maps( + """the rows to be inserted""" + objects: [v_pool_maps_insert_input!]! + ): v_pool_maps_mutation_response + + """ + insert a single row into the table: "v_pool_maps" + """ + insert_v_pool_maps_one( + """the row to be inserted""" + object: v_pool_maps_insert_input! + ): v_pool_maps + + """ + insert data into the table: "v_team_stage_results" + """ + insert_v_team_stage_results( + """the rows to be inserted""" + objects: [v_team_stage_results_insert_input!]! + + """upsert condition""" + on_conflict: v_team_stage_results_on_conflict + ): v_team_stage_results_mutation_response + + """ + insert a single row into the table: "v_team_stage_results" + """ + insert_v_team_stage_results_one( + """the row to be inserted""" + object: v_team_stage_results_insert_input! + + """upsert condition""" + 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 + + """Invite players to a utility practice session""" + inviteToUtilityPractice(session_id: uuid!, steam_ids: [String!]!): SuccessOutput + + """joinDraftGame""" + joinDraftGame(draftGameId: uuid!, inviteCode: String): SuccessOutput + + """joinDraftGameAsParty""" + joinDraftGameAsParty(draftGameId: uuid!, inviteCode: String): SuccessOutput + + """Register for a tournament that drafts teams, alone or with your lobby""" + joinTournamentAsFreeAgent(tournament_id: uuid!, with_party: Boolean): SuccessOutput + + """Join a utility practice session""" + joinUtilityPractice(invite_code: String, session_id: uuid): UtilityPracticeSessionOutput + kickServerPlayer(reason: String, serverId: String!, steam_id: String!): KickResult! + + """ + execute VOLATILE function "league_award_forfeit" which returns "matches" + """ + league_award_forfeit( + """ + input parameters for function "league_award_forfeit" + """ + args: league_award_forfeit_args! + + """distinct select on columns""" + distinct_on: [matches_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: [matches_order_by!] + + """filter the rows returned""" + where: matches_bool_exp + ): [matches!]! + leaveLineup(match_id: String!): SuccessOutput + + """Withdraw from a tournament's free agent pool""" + leaveTournamentAsFreeAgent(tournament_id: uuid!): SuccessOutput + + """Leave a utility practice session""" + leaveUtilityPractice(session_id: uuid!): SuccessOutput + linkSteamMatchHistory(auth_code: String!, share_code: String!): SteamMatchHistoryLinkOutput + + """Load dev fixture data (dev only)""" + loadFixtures: SuccessOutput + + """Load a utility playbook into a running practice session""" + loadUtilityPlaybookIntoSession(playbook_id: uuid, session_id: uuid!): SuccessOutput + + """logout""" + logout: SuccessOutput + + """Move file or directory on game server""" + moveServerItem(dest_path: String!, node_id: String!, server_id: String, source_path: String!): SuccessOutput + + """Return the latest S3 orphan-scan report (admin only).""" + orphanedDemosScanResult: OrphanScanResultOutput + + """ + Flag in-flight clip_render_jobs paused; pod halts after current highlight. + """ + pauseClipRenderBatch(match_map_id: uuid!): SuccessOutput + pollSteamMatchHistory: SteamMatchHistoryPollOutput + + """previewDraftGame""" + previewDraftGame(draftGameId: uuid!, inviteCode: String): DraftGamePreviewOutput + + """Resolve a game mode into the plugins and cfg a server would load""" + previewGameMode(gameModeId: uuid!): PreviewGameModeOutput + + """Delete every lineup that came from one origin source""" + purgeUtilityLineupSource(dry_run: Boolean, origin_source: String!): UtilityPurgeOutput + + """ + Build a multi-segment ClipSpec from a player+preset and queue it via the batch render path (no live demo session required) + """ + queueClipFromPreset(fps: Int, match_map_id: uuid!, preset: String!, resolution: String, target_name: String, target_steam_id: String!, title: String): CreateClipRenderOutput + randomizeTeams(match_id: uuid!): SuccessOutput + + """Organizer re-admits a team that missed check-in, then re-seeds""" + readmitTournamentTeam(tournament_id: uuid!, tournament_team_id: uuid!): SuccessOutput + rebootMatchServer(match_id: uuid!): SuccessOutput + + """ + execute VOLATILE function "recalculate_tournament_awards" which returns "award_recipients" + """ + recalculate_tournament_awards( + """ + input parameters for function "recalculate_tournament_awards" + """ + args: recalculate_tournament_awards_args! + + """distinct select on columns""" + distinct_on: [award_recipients_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: [award_recipients_order_by!] + + """filter the rows returned""" + where: award_recipients_bool_exp + ): [award_recipients!]! + + """ + Wipe and rebuild all player ELO from finished matches in chronological order (admin only). Runs in the background; track via recomputePlayerEloStatus. + """ + recomputePlayerElo: RecomputeEloStartedOutput + + """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 + + """ + Spend a tournament invite link for an unlock on an invite only tournament + """ + redeemTournamentInviteCode(code: String!, tournament_id: uuid!): SuccessOutput + + """ + Reindex every player into the Typesense search index (admin only). Runs in the background; track via refreshAllPlayersStatus. + """ + refreshAllPlayers: ReindexStartedOutput + + """Return the progress of the player reindex run (admin only).""" + refreshAllPlayersStatus: ReindexStatusOutput + refreshFaceitRank(steam_id: String!): SuccessOutput + refreshLiveHud(match_id: uuid!): SuccessOutput + registerName(name: String!): SuccessOutput + + """Re-mine one batch of demos after a miner change""" + remineUtilityMeta: UtilityRemineOutput + + """Remove dev fixture data (dev only)""" + removeFixtures: SuccessOutput + + """Remove a friends-role presence bot account""" + removeSteamPresenceBotAccount(account_id: String!): SuccessOutput + + """ + execute VOLATILE function "remove_league_team_from_season" which returns "league_team_seasons" + """ + remove_league_team_from_season( + """ + input parameters for function "remove_league_team_from_season" + """ + args: remove_league_team_from_season_args! + + """distinct select on columns""" + distinct_on: [league_team_seasons_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: [league_team_seasons_order_by!] + + """filter the rows returned""" + where: league_team_seasons_bool_exp + ): [league_team_seasons!]! + + """Rename file or directory on game server""" + renameServerItem(new_path: String!, node_id: String!, old_path: String!, server_id: String): SuccessOutput + + """Re-film a public lineup's preview clip""" + renderUtilityLineupPreview(utility_lineup_id: uuid!): UtilityRenderQueueOutput + + """ + execute VOLATILE function "reorder_league_divisions" which returns "league_divisions" + """ + reorder_league_divisions( + """ + input parameters for function "reorder_league_divisions" + """ + args: reorder_league_divisions_args! + + """distinct select on columns""" + distinct_on: [league_divisions_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: [league_divisions_order_by!] + + """filter the rows returned""" + where: league_divisions_bool_exp + ): [league_divisions!]! + + """Re-solve a lineup a drift scan says the map moved""" + repairUtilityLineup(session_id: uuid!, utility_lineup_id: uuid!): UtilitySolveOutput + + """ + Re-parse every demo in the system (admin only). Runs one demo at a time in the background; this can take a very long time. Track via reparseAllDemosStatus. + """ + reparseAllDemos: ReparseAllStartedOutput + + """Return the progress of the reparse-all-demos run (admin only).""" + reparseAllDemosStatus: ReparseAllStatusOutput + + """Re-parse demo metadata for a match map (admin only)""" + reparseDemo(match_map_id: uuid!): SuccessOutput + + """ + Re-parse all demos across every map for a match (admin only). Fires in the background and returns immediately. + """ + reparseMatchDemos(match_id: uuid!): SuccessOutput + requestNameChange(name: String!, steam_id: bigint!): SuccessOutput + + """ + Reset a terminal-state clip_render_jobs row back to queued and re-enqueue the batch worker (admin only). + """ + requeueClipRender(job_id: uuid!): SuccessOutput + + """respondDraftInvite""" + respondDraftInvite(accept: Boolean!, draftGameId: uuid!): SuccessOutput + + """respondToScrimRequest""" + respondToScrimRequest(accept: Boolean!, request_id: uuid!): SuccessOutput + restartService(service: String!): SuccessOutput + + """ + execute VOLATILE function "restart_league_season" which returns "league_seasons" + """ + restart_league_season( + """ + input parameters for function "restart_league_season" + """ + args: restart_league_season_args! + + """distinct select on columns""" + distinct_on: [league_seasons_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: [league_seasons_order_by!] + + """filter the rows returned""" + where: league_seasons_bool_exp + ): [league_seasons!]! + + """Clear paused flag and re-enqueue remaining queued clip_render_jobs.""" + resumeClipRenderBatch(match_map_id: uuid!): SuccessOutput + + """ + Delete terminal clip_render_jobs rows for a match_map (all or only failed/cancelled) and re-create them from their saved specs. + """ + retryClipRenderBatch(match_map_id: uuid!, only_failed: Boolean): SuccessOutput + retryPendingMatchImport(valve_match_id: String!): PendingMatchImportActionOutput + + """Revoke a hand-granted award""" + revokeAward(id: uuid!): SuccessOutput + + """ + Organizer kills a tournament invite link without losing who already used it + """ + revokeTournamentInviteCode(invite_code_id: uuid!): SuccessOutput + sanctionServerPlayer(duration: Float, reason: String, serverId: String, steam_id: String!, type: String!): SanctionResult! + + """Create or update a catalog award""" + saveAward(allow_multiple: Boolean, description: String, event_id: uuid, id: uuid, league_season_id: uuid, name: String!, season_id: uuid, silhouette: Int, tier: String!, tournament_id: uuid): Award + + """ + Create or update a first-party news post. Caller role is verified against public.post_news_role. + """ + saveNewsPost(content_markdown: String!, cover_image_url: String, id: uuid, teaser: String, title: String!): NewsPost + + """Mine a lineup out of a parsed demo""" + saveUtilityLineupFromDemo(collection_id: uuid, description: String, grenade_id: Int!, match_id: uuid!, match_map_id: uuid!, name: String!, tags: [String!], team_id: uuid, visibility: String): UtilityLineupOutput + + """Save a lineup recorded in a practice session""" + saveUtilityLineupFromPractice(collection_id: uuid, description: String, name: String!, session_id: uuid!, tags: [String!], team_id: uuid, utility_lineup_id: uuid!, visibility: String): UtilityLineupOutput + + """Create or update a utility playbook and its steps""" + saveUtilityPlaybook(description: String, map_name: String!, name: String!, playbook_id: uuid, side: String!, steps: [UtilityPlaybookStepInput!], team_id: uuid, visibility: String): UtilityPlaybookOutput + + """ + Scan S3 for objects not referenced in the database (admin only). Runs in the background; results land in the logs and orphanedDemosScanResult. + """ + scanOrphanedDemos: ScanStartedOutput + + """Scan all players who have been on a lineup for Steam VAC/game bans""" + scanSteamBans: SuccessOutput + + """scheduleMatch""" + scheduleMatch(match_id: uuid!, time: timestamptz): SuccessOutput + + """sendScrimRequest""" + sendScrimRequest(best_of: Int, from_team_id: uuid!, proposed_scheduled_at: timestamptz!, region: String, to_team_id: uuid!): SuccessOutput + sendUtilityDrillToServer(lineup_ids: [String!]!): UtilityDrillLoadOutput + sendUtilityLineupToServer(lineup_id: uuid!): UtilityLoadOutput + sendUtilityScratchToServer(lineup: UtilityScratchLineupInput!): UtilityLoadOutput + setGameNodeSchedulingState(enabled: Boolean!, game_server_node_id: String!): SuccessOutput + + """Track new releases of a game plugin, or pin it where it is""" + setGamePluginAutoUpdate(enabled: Boolean!, slug: String!): SuccessOutput + setHudMode(match_id: uuid!, mode: String!): SuccessOutput + + """setMapWinner""" + setMapWinner(match_id: uuid!, match_map_id: uuid!, winning_lineup_id: uuid!): SuccessOutput + + """setMatchWinner""" + setMatchWinner(match_id: uuid!, winning_lineup_id: uuid!): SuccessOutput + + """ + Publish or unpublish a news post. Caller role is verified against public.post_news_role. + """ + setNewsPostStatus(id: uuid!, status: String!): NewsPost + + """Map a tournament placement to an award""" + setTournamentAward(award_id: uuid, custom_name: String, placement: Int!, silhouette: Int, tournament_id: uuid!): TournamentAward + setUtilityPracticeAccess(access: String!, session_id: uuid!): SuccessOutput + setupGameServer: SetupGameServeOutput + skipShaders(match_id: uuid!): SuccessOutput + + """Ask a practice server to solve a throw onto a point""" + solveUtilityLineup(from_x: Float, from_y: Float, from_z: Float, name: String, session_id: uuid!, target_x: Float!, target_y: Float!, target_z: Float!, tolerance: Float, utility_type: String): UtilitySolveOutput + specAutodirector(enabled: Boolean!, match_id: uuid!): SuccessOutput + specClick(button: String!, match_id: uuid!): SuccessOutput + specHud(match_id: uuid!, visible: Boolean!): SuccessOutput + specHudSides(match_id: uuid!): SuccessOutput + specJump(match_id: uuid!): SuccessOutput + specPlayer(accountid: Int!, match_id: uuid!): SuccessOutput + specScoreboard(match_id: uuid!, show: Boolean!): SuccessOutput + specSlot(match_id: uuid!, slot: Int!): SuccessOutput + specXray(enabled: Boolean!, match_id: uuid!): SuccessOutput + startLive(match_id: uuid!, mode: String!): SuccessOutput + + """startMatch""" + startMatch(match_id: uuid!, server_id: uuid): SuccessOutput + + """Re-fly a map's lineups against two collision meshes""" + startUtilityDriftScan(from_revision: String, map_name: String!, to_revision: String): UtilityDriftScanOutput + + """Start a utility practice session""" + startUtilityPractice(access: String, collection_id: uuid, is_open: Boolean, map_name: String!, region: String, server_id: uuid, team_id: uuid): UtilityPracticeSessionOutput + stopGpuSession(game_server_node_id: uuid!): SuccessOutput + stopLive(match_id: uuid!): SuccessOutput + + """Stop a utility practice session""" + stopUtilityPractice(session_id: uuid!): SuccessOutput + stopWatchDemo(match_map_id: uuid!): SuccessOutput + + """Submit a Steam Guard code for a presence bot account""" + submitSteamPresenceSteamGuard(account_id: String!, code: String!): SuccessOutput + swapLineups(match_id: uuid!): SuccessOutput + switchLineup(match_id: String!): SuccessOutput + switchLiveMatch(from_match_id: uuid!, mode: String!, to_match_id: uuid!): SuccessOutput + + """Pull the published map callouts for every enabled map""" + syncMapCallouts: MapCalloutSyncOutput + + """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! + + """Owner-only patch for clip title / visibility / target_steam_id.""" + updateClip(clip_id: uuid!, target_steam_id: String, title: String, visibility: String): SuccessOutput + updateCs(game: String, game_server_node_id: uuid): SuccessOutput + + """updateDraftGame""" + updateDraftGame(draftGameId: uuid!, settings: jsonb!): SuccessOutput + updateServices: SuccessOutput + + """ + update data of the table: "_map_pool" + """ + update__map_pool( + """sets the columns of the filtered rows to the given values""" + _set: _map_pool_set_input + + """filter the rows which have to be updated""" + where: _map_pool_bool_exp! + ): _map_pool_mutation_response + + """ + update single row of the table: "_map_pool" + """ + update__map_pool_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: _map_pool_set_input + pk_columns: _map_pool_pk_columns_input! + ): _map_pool + + """ + update multiples rows of table: "_map_pool" + """ + update__map_pool_many( + """updates to execute, in order""" + updates: [_map_pool_updates!]! + ): [_map_pool_mutation_response] + + """ + update data of the table: "abandoned_matches" + """ + update_abandoned_matches( + """increments the numeric columns with given value of the filtered values""" + _inc: abandoned_matches_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: abandoned_matches_set_input + + """filter the rows which have to be updated""" + where: abandoned_matches_bool_exp! + ): abandoned_matches_mutation_response + + """ + update single row of the table: "abandoned_matches" + """ + update_abandoned_matches_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: abandoned_matches_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: abandoned_matches_set_input + pk_columns: abandoned_matches_pk_columns_input! + ): abandoned_matches + + """ + update multiples rows of table: "abandoned_matches" + """ + update_abandoned_matches_many( + """updates to execute, in order""" + updates: [abandoned_matches_updates!]! + ): [abandoned_matches_mutation_response] + + """ + update data of the table: "api_keys" + """ + update_api_keys( + """increments the numeric columns with given value of the filtered values""" + _inc: api_keys_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: api_keys_set_input + + """filter the rows which have to be updated""" + where: api_keys_bool_exp! + ): api_keys_mutation_response + + """ + update single row of the table: "api_keys" + """ + update_api_keys_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: api_keys_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: api_keys_set_input + pk_columns: api_keys_pk_columns_input! + ): api_keys + + """ + update multiples rows of table: "api_keys" + """ + update_api_keys_many( + """updates to execute, in order""" + updates: [api_keys_updates!]! + ): [api_keys_mutation_response] + + """ + update data of the table: "award_recipients" + """ + update_award_recipients( + """increments the numeric columns with given value of the filtered values""" + _inc: award_recipients_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: award_recipients_set_input + + """filter the rows which have to be updated""" + where: award_recipients_bool_exp! + ): award_recipients_mutation_response + + """ + update single row of the table: "award_recipients" + """ + update_award_recipients_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: award_recipients_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: award_recipients_set_input + pk_columns: award_recipients_pk_columns_input! + ): award_recipients + + """ + update multiples rows of table: "award_recipients" + """ + update_award_recipients_many( + """updates to execute, in order""" + updates: [award_recipients_updates!]! + ): [award_recipients_mutation_response] + + """ + update data of the table: "awards" + """ + update_awards( + """increments the numeric columns with given value of the filtered values""" + _inc: awards_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: awards_set_input + + """filter the rows which have to be updated""" + where: awards_bool_exp! + ): awards_mutation_response + + """ + update single row of the table: "awards" + """ + update_awards_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: awards_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: awards_set_input + pk_columns: awards_pk_columns_input! + ): awards + + """ + update multiples rows of table: "awards" + """ + update_awards_many( + """updates to execute, in order""" + updates: [awards_updates!]! + ): [awards_mutation_response] + + """ + update data of the table: "chat_read_state" + """ + update_chat_read_state( + """increments the numeric columns with given value of the filtered values""" + _inc: chat_read_state_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: chat_read_state_set_input + + """filter the rows which have to be updated""" + where: chat_read_state_bool_exp! + ): chat_read_state_mutation_response + + """ + update single row of the table: "chat_read_state" + """ + update_chat_read_state_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: chat_read_state_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: chat_read_state_set_input + pk_columns: chat_read_state_pk_columns_input! + ): chat_read_state + + """ + update multiples rows of table: "chat_read_state" + """ + update_chat_read_state_many( + """updates to execute, in order""" + updates: [chat_read_state_updates!]! + ): [chat_read_state_mutation_response] + + """ + update data of the table: "clip_render_jobs" + """ + update_clip_render_jobs( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: clip_render_jobs_append_input + + """ + 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 + + """ + 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 + + """ + 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 + + """increments the numeric columns with given value of the filtered values""" + _inc: clip_render_jobs_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: clip_render_jobs_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: clip_render_jobs_set_input + + """filter the rows which have to be updated""" + where: clip_render_jobs_bool_exp! + ): clip_render_jobs_mutation_response + + """ + update single row of the table: "clip_render_jobs" + """ + update_clip_render_jobs_by_pk( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: clip_render_jobs_append_input + + """ + 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 + + """ + 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 + + """ + 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 + + """increments the numeric columns with given value of the filtered values""" + _inc: clip_render_jobs_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: clip_render_jobs_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: clip_render_jobs_set_input + pk_columns: clip_render_jobs_pk_columns_input! + ): clip_render_jobs + + """ + update multiples rows of table: "clip_render_jobs" + """ + update_clip_render_jobs_many( + """updates to execute, in order""" + updates: [clip_render_jobs_updates!]! + ): [clip_render_jobs_mutation_response] + + """ + update data of the table: "custom_pages" + """ + update_custom_pages( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: custom_pages_append_input + + """ + 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 + + """ + 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 + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: custom_pages_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: custom_pages_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: custom_pages_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: custom_pages_set_input + + """filter the rows which have to be updated""" + where: custom_pages_bool_exp! + ): custom_pages_mutation_response + + """ + update single row of the table: "custom_pages" + """ + update_custom_pages_by_pk( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: custom_pages_append_input + + """ + 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 + + """ + 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 + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: custom_pages_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: custom_pages_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: custom_pages_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: custom_pages_set_input + pk_columns: custom_pages_pk_columns_input! + ): custom_pages + + """ + update multiples rows of table: "custom_pages" + """ + update_custom_pages_many( + """updates to execute, in order""" + updates: [custom_pages_updates!]! + ): [custom_pages_mutation_response] + + """ + update data of the table: "db_backups" + """ + update_db_backups( + """increments the numeric columns with given value of the filtered values""" + _inc: db_backups_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: db_backups_set_input + + """filter the rows which have to be updated""" + where: db_backups_bool_exp! + ): db_backups_mutation_response + + """ + update single row of the table: "db_backups" + """ + update_db_backups_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: db_backups_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: db_backups_set_input + pk_columns: db_backups_pk_columns_input! + ): db_backups + + """ + update multiples rows of table: "db_backups" + """ + update_db_backups_many( + """updates to execute, in order""" + updates: [db_backups_updates!]! + ): [db_backups_mutation_response] + + """ + update data of the table: "direct_conversations" + """ + update_direct_conversations( + """increments the numeric columns with given value of the filtered values""" + _inc: direct_conversations_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: direct_conversations_set_input + + """filter the rows which have to be updated""" + where: direct_conversations_bool_exp! + ): direct_conversations_mutation_response + + """ + update single row of the table: "direct_conversations" + """ + update_direct_conversations_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: direct_conversations_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: direct_conversations_set_input + pk_columns: direct_conversations_pk_columns_input! + ): direct_conversations + + """ + update multiples rows of table: "direct_conversations" + """ + update_direct_conversations_many( + """updates to execute, in order""" + updates: [direct_conversations_updates!]! + ): [direct_conversations_mutation_response] + + """ + update data of the table: "direct_messages" + """ + update_direct_messages( + """increments the numeric columns with given value of the filtered values""" + _inc: direct_messages_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: direct_messages_set_input + + """filter the rows which have to be updated""" + where: direct_messages_bool_exp! + ): direct_messages_mutation_response + + """ + update single row of the table: "direct_messages" + """ + update_direct_messages_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: direct_messages_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: direct_messages_set_input + pk_columns: direct_messages_pk_columns_input! + ): direct_messages + + """ + update multiples rows of table: "direct_messages" + """ + update_direct_messages_many( + """updates to execute, in order""" + updates: [direct_messages_updates!]! + ): [direct_messages_mutation_response] + + """ + update data of the table: "draft_game_picks" + """ + update_draft_game_picks( + """increments the numeric columns with given value of the filtered values""" + _inc: draft_game_picks_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: draft_game_picks_set_input + + """filter the rows which have to be updated""" + where: draft_game_picks_bool_exp! + ): draft_game_picks_mutation_response + + """ + update single row of the table: "draft_game_picks" + """ + update_draft_game_picks_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: draft_game_picks_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: draft_game_picks_set_input + pk_columns: draft_game_picks_pk_columns_input! + ): draft_game_picks + + """ + update multiples rows of table: "draft_game_picks" + """ + update_draft_game_picks_many( + """updates to execute, in order""" + updates: [draft_game_picks_updates!]! + ): [draft_game_picks_mutation_response] + + """ + update data of the table: "draft_game_players" + """ + update_draft_game_players( + """increments the numeric columns with given value of the filtered values""" + _inc: draft_game_players_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: draft_game_players_set_input + + """filter the rows which have to be updated""" + where: draft_game_players_bool_exp! + ): draft_game_players_mutation_response + + """ + update single row of the table: "draft_game_players" + """ + update_draft_game_players_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: draft_game_players_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: draft_game_players_set_input + pk_columns: draft_game_players_pk_columns_input! + ): draft_game_players + + """ + update multiples rows of table: "draft_game_players" + """ + update_draft_game_players_many( + """updates to execute, in order""" + updates: [draft_game_players_updates!]! + ): [draft_game_players_mutation_response] + + """ + update data of the table: "draft_games" + """ + update_draft_games( + """increments the numeric columns with given value of the filtered values""" + _inc: draft_games_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: draft_games_set_input + + """filter the rows which have to be updated""" + where: draft_games_bool_exp! + ): draft_games_mutation_response + + """ + update single row of the table: "draft_games" + """ + update_draft_games_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: draft_games_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: draft_games_set_input + pk_columns: draft_games_pk_columns_input! + ): draft_games + + """ + update multiples rows of table: "draft_games" + """ + update_draft_games_many( + """updates to execute, in order""" + updates: [draft_games_updates!]! + ): [draft_games_mutation_response] + + """ + update data of the table: "e_award_sources" + """ + update_e_award_sources( + """sets the columns of the filtered rows to the given values""" + _set: e_award_sources_set_input + + """filter the rows which have to be updated""" + where: e_award_sources_bool_exp! + ): e_award_sources_mutation_response + + """ + update single row of the table: "e_award_sources" + """ + update_e_award_sources_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_award_sources_set_input + pk_columns: e_award_sources_pk_columns_input! + ): e_award_sources + + """ + update multiples rows of table: "e_award_sources" + """ + update_e_award_sources_many( + """updates to execute, in order""" + updates: [e_award_sources_updates!]! + ): [e_award_sources_mutation_response] + + """ + update data of the table: "e_award_tiers" + """ + update_e_award_tiers( + """sets the columns of the filtered rows to the given values""" + _set: e_award_tiers_set_input + + """filter the rows which have to be updated""" + where: e_award_tiers_bool_exp! + ): e_award_tiers_mutation_response + + """ + update single row of the table: "e_award_tiers" + """ + update_e_award_tiers_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_award_tiers_set_input + pk_columns: e_award_tiers_pk_columns_input! + ): e_award_tiers + + """ + update multiples rows of table: "e_award_tiers" + """ + update_e_award_tiers_many( + """updates to execute, in order""" + updates: [e_award_tiers_updates!]! + ): [e_award_tiers_mutation_response] + + """ + update data of the table: "e_check_in_settings" + """ + update_e_check_in_settings( + """sets the columns of the filtered rows to the given values""" + _set: e_check_in_settings_set_input + + """filter the rows which have to be updated""" + where: e_check_in_settings_bool_exp! + ): e_check_in_settings_mutation_response + + """ + update single row of the table: "e_check_in_settings" + """ + update_e_check_in_settings_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_check_in_settings_set_input + pk_columns: e_check_in_settings_pk_columns_input! + ): e_check_in_settings + + """ + update multiples rows of table: "e_check_in_settings" + """ + update_e_check_in_settings_many( + """updates to execute, in order""" + updates: [e_check_in_settings_updates!]! + ): [e_check_in_settings_mutation_response] + + """ + update data of the table: "e_draft_game_captain_selection" + """ + update_e_draft_game_captain_selection( + """sets the columns of the filtered rows to the given values""" + _set: e_draft_game_captain_selection_set_input + + """filter the rows which have to be updated""" + where: e_draft_game_captain_selection_bool_exp! + ): e_draft_game_captain_selection_mutation_response + + """ + update single row of the table: "e_draft_game_captain_selection" + """ + update_e_draft_game_captain_selection_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_draft_game_captain_selection_set_input + pk_columns: e_draft_game_captain_selection_pk_columns_input! + ): e_draft_game_captain_selection + + """ + update multiples rows of table: "e_draft_game_captain_selection" + """ + update_e_draft_game_captain_selection_many( + """updates to execute, in order""" + updates: [e_draft_game_captain_selection_updates!]! + ): [e_draft_game_captain_selection_mutation_response] + + """ + update data of the table: "e_draft_game_draft_order" + """ + update_e_draft_game_draft_order( + """sets the columns of the filtered rows to the given values""" + _set: e_draft_game_draft_order_set_input + + """filter the rows which have to be updated""" + where: e_draft_game_draft_order_bool_exp! + ): e_draft_game_draft_order_mutation_response + + """ + update single row of the table: "e_draft_game_draft_order" + """ + update_e_draft_game_draft_order_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_draft_game_draft_order_set_input + pk_columns: e_draft_game_draft_order_pk_columns_input! + ): e_draft_game_draft_order + + """ + update multiples rows of table: "e_draft_game_draft_order" + """ + update_e_draft_game_draft_order_many( + """updates to execute, in order""" + updates: [e_draft_game_draft_order_updates!]! + ): [e_draft_game_draft_order_mutation_response] + + """ + update data of the table: "e_draft_game_mode" + """ + update_e_draft_game_mode( + """sets the columns of the filtered rows to the given values""" + _set: e_draft_game_mode_set_input + + """filter the rows which have to be updated""" + where: e_draft_game_mode_bool_exp! + ): e_draft_game_mode_mutation_response + + """ + update single row of the table: "e_draft_game_mode" + """ + update_e_draft_game_mode_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_draft_game_mode_set_input + pk_columns: e_draft_game_mode_pk_columns_input! + ): e_draft_game_mode + + """ + update multiples rows of table: "e_draft_game_mode" + """ + update_e_draft_game_mode_many( + """updates to execute, in order""" + updates: [e_draft_game_mode_updates!]! + ): [e_draft_game_mode_mutation_response] + + """ + update data of the table: "e_draft_game_player_status" + """ + update_e_draft_game_player_status( + """sets the columns of the filtered rows to the given values""" + _set: e_draft_game_player_status_set_input + + """filter the rows which have to be updated""" + where: e_draft_game_player_status_bool_exp! + ): e_draft_game_player_status_mutation_response + + """ + update single row of the table: "e_draft_game_player_status" + """ + update_e_draft_game_player_status_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_draft_game_player_status_set_input + pk_columns: e_draft_game_player_status_pk_columns_input! + ): e_draft_game_player_status + + """ + update multiples rows of table: "e_draft_game_player_status" + """ + update_e_draft_game_player_status_many( + """updates to execute, in order""" + updates: [e_draft_game_player_status_updates!]! + ): [e_draft_game_player_status_mutation_response] + + """ + update data of the table: "e_draft_game_status" + """ + update_e_draft_game_status( + """sets the columns of the filtered rows to the given values""" + _set: e_draft_game_status_set_input + + """filter the rows which have to be updated""" + where: e_draft_game_status_bool_exp! + ): e_draft_game_status_mutation_response + + """ + update single row of the table: "e_draft_game_status" + """ + update_e_draft_game_status_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_draft_game_status_set_input + pk_columns: e_draft_game_status_pk_columns_input! + ): e_draft_game_status + + """ + update multiples rows of table: "e_draft_game_status" + """ + update_e_draft_game_status_many( + """updates to execute, in order""" + updates: [e_draft_game_status_updates!]! + ): [e_draft_game_status_mutation_response] + + """ + update data of the table: "e_event_media_access" + """ + update_e_event_media_access( + """sets the columns of the filtered rows to the given values""" + _set: e_event_media_access_set_input + + """filter the rows which have to be updated""" + where: e_event_media_access_bool_exp! + ): e_event_media_access_mutation_response + + """ + update single row of the table: "e_event_media_access" + """ + update_e_event_media_access_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_event_media_access_set_input + pk_columns: e_event_media_access_pk_columns_input! + ): e_event_media_access + + """ + update multiples rows of table: "e_event_media_access" + """ + update_e_event_media_access_many( + """updates to execute, in order""" + updates: [e_event_media_access_updates!]! + ): [e_event_media_access_mutation_response] + + """ + update data of the table: "e_event_visibility" + """ + update_e_event_visibility( + """sets the columns of the filtered rows to the given values""" + _set: e_event_visibility_set_input + + """filter the rows which have to be updated""" + where: e_event_visibility_bool_exp! + ): e_event_visibility_mutation_response + + """ + update single row of the table: "e_event_visibility" + """ + update_e_event_visibility_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_event_visibility_set_input + pk_columns: e_event_visibility_pk_columns_input! + ): e_event_visibility + + """ + update multiples rows of table: "e_event_visibility" + """ + update_e_event_visibility_many( + """updates to execute, in order""" + updates: [e_event_visibility_updates!]! + ): [e_event_visibility_mutation_response] + + """ + update data of the table: "e_friend_status" + """ + update_e_friend_status( + """sets the columns of the filtered rows to the given values""" + _set: e_friend_status_set_input + + """filter the rows which have to be updated""" + where: e_friend_status_bool_exp! + ): e_friend_status_mutation_response + + """ + update single row of the table: "e_friend_status" + """ + update_e_friend_status_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_friend_status_set_input + pk_columns: e_friend_status_pk_columns_input! + ): e_friend_status + + """ + update multiples rows of table: "e_friend_status" + """ + update_e_friend_status_many( + """updates to execute, in order""" + updates: [e_friend_status_updates!]! + ): [e_friend_status_mutation_response] + + """ + update data of the table: "e_game_cfg_types" + """ + update_e_game_cfg_types( + """sets the columns of the filtered rows to the given values""" + _set: e_game_cfg_types_set_input + + """filter the rows which have to be updated""" + where: e_game_cfg_types_bool_exp! + ): e_game_cfg_types_mutation_response + + """ + update single row of the table: "e_game_cfg_types" + """ + update_e_game_cfg_types_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_game_cfg_types_set_input + pk_columns: e_game_cfg_types_pk_columns_input! + ): e_game_cfg_types + + """ + update multiples rows of table: "e_game_cfg_types" + """ + update_e_game_cfg_types_many( + """updates to execute, in order""" + 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" + """ + update_e_game_server_node_statuses( + """sets the columns of the filtered rows to the given values""" + _set: e_game_server_node_statuses_set_input + + """filter the rows which have to be updated""" + where: e_game_server_node_statuses_bool_exp! + ): e_game_server_node_statuses_mutation_response + + """ + update single row of the table: "e_game_server_node_statuses" + """ + update_e_game_server_node_statuses_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_game_server_node_statuses_set_input + pk_columns: e_game_server_node_statuses_pk_columns_input! + ): e_game_server_node_statuses + + """ + update multiples rows of table: "e_game_server_node_statuses" + """ + update_e_game_server_node_statuses_many( + """updates to execute, in order""" + updates: [e_game_server_node_statuses_updates!]! + ): [e_game_server_node_statuses_mutation_response] + + """ + update data of the table: "e_league_movement_types" + """ + update_e_league_movement_types( + """sets the columns of the filtered rows to the given values""" + _set: e_league_movement_types_set_input + + """filter the rows which have to be updated""" + where: e_league_movement_types_bool_exp! + ): e_league_movement_types_mutation_response + + """ + update single row of the table: "e_league_movement_types" + """ + update_e_league_movement_types_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_league_movement_types_set_input + pk_columns: e_league_movement_types_pk_columns_input! + ): e_league_movement_types + + """ + update multiples rows of table: "e_league_movement_types" + """ + update_e_league_movement_types_many( + """updates to execute, in order""" + updates: [e_league_movement_types_updates!]! + ): [e_league_movement_types_mutation_response] + + """ + update data of the table: "e_league_proposal_statuses" + """ + update_e_league_proposal_statuses( + """sets the columns of the filtered rows to the given values""" + _set: e_league_proposal_statuses_set_input + + """filter the rows which have to be updated""" + where: e_league_proposal_statuses_bool_exp! + ): e_league_proposal_statuses_mutation_response + + """ + update single row of the table: "e_league_proposal_statuses" + """ + update_e_league_proposal_statuses_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_league_proposal_statuses_set_input + pk_columns: e_league_proposal_statuses_pk_columns_input! + ): e_league_proposal_statuses + + """ + update multiples rows of table: "e_league_proposal_statuses" + """ + update_e_league_proposal_statuses_many( + """updates to execute, in order""" + updates: [e_league_proposal_statuses_updates!]! + ): [e_league_proposal_statuses_mutation_response] + + """ + update data of the table: "e_league_registration_statuses" + """ + update_e_league_registration_statuses( + """sets the columns of the filtered rows to the given values""" + _set: e_league_registration_statuses_set_input + + """filter the rows which have to be updated""" + where: e_league_registration_statuses_bool_exp! + ): e_league_registration_statuses_mutation_response + + """ + update single row of the table: "e_league_registration_statuses" + """ + update_e_league_registration_statuses_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_league_registration_statuses_set_input + pk_columns: e_league_registration_statuses_pk_columns_input! + ): e_league_registration_statuses + + """ + update multiples rows of table: "e_league_registration_statuses" + """ + update_e_league_registration_statuses_many( + """updates to execute, in order""" + updates: [e_league_registration_statuses_updates!]! + ): [e_league_registration_statuses_mutation_response] + + """ + update data of the table: "e_league_season_statuses" + """ + update_e_league_season_statuses( + """sets the columns of the filtered rows to the given values""" + _set: e_league_season_statuses_set_input + + """filter the rows which have to be updated""" + where: e_league_season_statuses_bool_exp! + ): e_league_season_statuses_mutation_response + + """ + update single row of the table: "e_league_season_statuses" + """ + update_e_league_season_statuses_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_league_season_statuses_set_input + pk_columns: e_league_season_statuses_pk_columns_input! + ): e_league_season_statuses + + """ + update multiples rows of table: "e_league_season_statuses" + """ + update_e_league_season_statuses_many( + """updates to execute, in order""" + updates: [e_league_season_statuses_updates!]! + ): [e_league_season_statuses_mutation_response] + + """ + update data of the table: "e_lobby_access" + """ + update_e_lobby_access( + """sets the columns of the filtered rows to the given values""" + _set: e_lobby_access_set_input + + """filter the rows which have to be updated""" + where: e_lobby_access_bool_exp! + ): e_lobby_access_mutation_response + + """ + update single row of the table: "e_lobby_access" + """ + update_e_lobby_access_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_lobby_access_set_input + pk_columns: e_lobby_access_pk_columns_input! + ): e_lobby_access + + """ + update multiples rows of table: "e_lobby_access" + """ + update_e_lobby_access_many( + """updates to execute, in order""" + updates: [e_lobby_access_updates!]! + ): [e_lobby_access_mutation_response] + + """ + update data of the table: "e_lobby_player_status" + """ + update_e_lobby_player_status( + """sets the columns of the filtered rows to the given values""" + _set: e_lobby_player_status_set_input + + """filter the rows which have to be updated""" + where: e_lobby_player_status_bool_exp! + ): e_lobby_player_status_mutation_response + + """ + update single row of the table: "e_lobby_player_status" + """ + update_e_lobby_player_status_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_lobby_player_status_set_input + pk_columns: e_lobby_player_status_pk_columns_input! + ): e_lobby_player_status + + """ + update multiples rows of table: "e_lobby_player_status" + """ + update_e_lobby_player_status_many( + """updates to execute, in order""" + updates: [e_lobby_player_status_updates!]! + ): [e_lobby_player_status_mutation_response] + + """ + update data of the table: "e_map_pool_types" + """ + update_e_map_pool_types( + """sets the columns of the filtered rows to the given values""" + _set: e_map_pool_types_set_input + + """filter the rows which have to be updated""" + where: e_map_pool_types_bool_exp! + ): e_map_pool_types_mutation_response + + """ + update single row of the table: "e_map_pool_types" + """ + update_e_map_pool_types_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_map_pool_types_set_input + pk_columns: e_map_pool_types_pk_columns_input! + ): e_map_pool_types + + """ + update multiples rows of table: "e_map_pool_types" + """ + update_e_map_pool_types_many( + """updates to execute, in order""" + updates: [e_map_pool_types_updates!]! + ): [e_map_pool_types_mutation_response] + + """ + update data of the table: "e_match_clip_visibility" + """ + update_e_match_clip_visibility( + """sets the columns of the filtered rows to the given values""" + _set: e_match_clip_visibility_set_input + + """filter the rows which have to be updated""" + where: e_match_clip_visibility_bool_exp! + ): e_match_clip_visibility_mutation_response + + """ + update single row of the table: "e_match_clip_visibility" + """ + update_e_match_clip_visibility_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_match_clip_visibility_set_input + pk_columns: e_match_clip_visibility_pk_columns_input! + ): e_match_clip_visibility + + """ + update multiples rows of table: "e_match_clip_visibility" + """ + update_e_match_clip_visibility_many( + """updates to execute, in order""" + updates: [e_match_clip_visibility_updates!]! + ): [e_match_clip_visibility_mutation_response] + + """ + update data of the table: "e_match_map_status" + """ + update_e_match_map_status( + """sets the columns of the filtered rows to the given values""" + _set: e_match_map_status_set_input + + """filter the rows which have to be updated""" + where: e_match_map_status_bool_exp! + ): e_match_map_status_mutation_response + + """ + update single row of the table: "e_match_map_status" + """ + update_e_match_map_status_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_match_map_status_set_input + pk_columns: e_match_map_status_pk_columns_input! + ): e_match_map_status + + """ + update multiples rows of table: "e_match_map_status" + """ + update_e_match_map_status_many( + """updates to execute, in order""" + updates: [e_match_map_status_updates!]! + ): [e_match_map_status_mutation_response] + + """ + update data of the table: "e_match_mode" + """ + update_e_match_mode( + """sets the columns of the filtered rows to the given values""" + _set: e_match_mode_set_input + + """filter the rows which have to be updated""" + where: e_match_mode_bool_exp! + ): e_match_mode_mutation_response + + """ + update single row of the table: "e_match_mode" + """ + update_e_match_mode_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_match_mode_set_input + pk_columns: e_match_mode_pk_columns_input! + ): e_match_mode + + """ + update multiples rows of table: "e_match_mode" + """ + update_e_match_mode_many( + """updates to execute, in order""" + updates: [e_match_mode_updates!]! + ): [e_match_mode_mutation_response] + + """ + update data of the table: "e_match_party_sources" + """ + update_e_match_party_sources( + """sets the columns of the filtered rows to the given values""" + _set: e_match_party_sources_set_input + + """filter the rows which have to be updated""" + where: e_match_party_sources_bool_exp! + ): e_match_party_sources_mutation_response + + """ + update single row of the table: "e_match_party_sources" + """ + update_e_match_party_sources_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_match_party_sources_set_input + pk_columns: e_match_party_sources_pk_columns_input! + ): e_match_party_sources + + """ + update multiples rows of table: "e_match_party_sources" + """ + update_e_match_party_sources_many( + """updates to execute, in order""" + updates: [e_match_party_sources_updates!]! + ): [e_match_party_sources_mutation_response] + + """ + update data of the table: "e_match_status" + """ + update_e_match_status( + """sets the columns of the filtered rows to the given values""" + _set: e_match_status_set_input + + """filter the rows which have to be updated""" + where: e_match_status_bool_exp! + ): e_match_status_mutation_response + + """ + update single row of the table: "e_match_status" + """ + update_e_match_status_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_match_status_set_input + pk_columns: e_match_status_pk_columns_input! + ): e_match_status + + """ + update multiples rows of table: "e_match_status" + """ + update_e_match_status_many( + """updates to execute, in order""" + updates: [e_match_status_updates!]! + ): [e_match_status_mutation_response] + + """ + update data of the table: "e_match_types" + """ + update_e_match_types( + """sets the columns of the filtered rows to the given values""" + _set: e_match_types_set_input + + """filter the rows which have to be updated""" + where: e_match_types_bool_exp! + ): e_match_types_mutation_response + + """ + update single row of the table: "e_match_types" + """ + update_e_match_types_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_match_types_set_input + pk_columns: e_match_types_pk_columns_input! + ): e_match_types + + """ + update multiples rows of table: "e_match_types" + """ + update_e_match_types_many( + """updates to execute, in order""" + updates: [e_match_types_updates!]! + ): [e_match_types_mutation_response] + + """ + update data of the table: "e_notification_types" + """ + update_e_notification_types( + """sets the columns of the filtered rows to the given values""" + _set: e_notification_types_set_input + + """filter the rows which have to be updated""" + where: e_notification_types_bool_exp! + ): e_notification_types_mutation_response + + """ + update single row of the table: "e_notification_types" + """ + update_e_notification_types_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_notification_types_set_input + pk_columns: e_notification_types_pk_columns_input! + ): e_notification_types + + """ + update multiples rows of table: "e_notification_types" + """ + update_e_notification_types_many( + """updates to execute, in order""" + updates: [e_notification_types_updates!]! + ): [e_notification_types_mutation_response] + + """ + update data of the table: "e_objective_types" + """ + update_e_objective_types( + """sets the columns of the filtered rows to the given values""" + _set: e_objective_types_set_input + + """filter the rows which have to be updated""" + where: e_objective_types_bool_exp! + ): e_objective_types_mutation_response + + """ + update single row of the table: "e_objective_types" + """ + update_e_objective_types_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_objective_types_set_input + pk_columns: e_objective_types_pk_columns_input! + ): e_objective_types + + """ + update multiples rows of table: "e_objective_types" + """ + update_e_objective_types_many( + """updates to execute, in order""" + updates: [e_objective_types_updates!]! + ): [e_objective_types_mutation_response] + + """ + update data of the table: "e_player_roles" + """ + update_e_player_roles( + """sets the columns of the filtered rows to the given values""" + _set: e_player_roles_set_input + + """filter the rows which have to be updated""" + where: e_player_roles_bool_exp! + ): e_player_roles_mutation_response + + """ + update single row of the table: "e_player_roles" + """ + update_e_player_roles_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_player_roles_set_input + pk_columns: e_player_roles_pk_columns_input! + ): e_player_roles + + """ + update multiples rows of table: "e_player_roles" + """ + update_e_player_roles_many( + """updates to execute, in order""" + updates: [e_player_roles_updates!]! + ): [e_player_roles_mutation_response] + + """ + update data of the table: "e_plugin_runtimes" + """ + update_e_plugin_runtimes( + """sets the columns of the filtered rows to the given values""" + _set: e_plugin_runtimes_set_input + + """filter the rows which have to be updated""" + where: e_plugin_runtimes_bool_exp! + ): e_plugin_runtimes_mutation_response + + """ + update single row of the table: "e_plugin_runtimes" + """ + update_e_plugin_runtimes_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_plugin_runtimes_set_input + pk_columns: e_plugin_runtimes_pk_columns_input! + ): e_plugin_runtimes + + """ + update multiples rows of table: "e_plugin_runtimes" + """ + update_e_plugin_runtimes_many( + """updates to execute, in order""" + updates: [e_plugin_runtimes_updates!]! + ): [e_plugin_runtimes_mutation_response] + + """ + update data of the table: "e_ready_settings" + """ + update_e_ready_settings( + """sets the columns of the filtered rows to the given values""" + _set: e_ready_settings_set_input + + """filter the rows which have to be updated""" + where: e_ready_settings_bool_exp! + ): e_ready_settings_mutation_response + + """ + update single row of the table: "e_ready_settings" + """ + update_e_ready_settings_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_ready_settings_set_input + pk_columns: e_ready_settings_pk_columns_input! + ): e_ready_settings + + """ + update multiples rows of table: "e_ready_settings" + """ + update_e_ready_settings_many( + """updates to execute, in order""" + updates: [e_ready_settings_updates!]! + ): [e_ready_settings_mutation_response] + + """ + update data of the table: "e_sanction_scopes" + """ + update_e_sanction_scopes( + """sets the columns of the filtered rows to the given values""" + _set: e_sanction_scopes_set_input + + """filter the rows which have to be updated""" + where: e_sanction_scopes_bool_exp! + ): e_sanction_scopes_mutation_response + + """ + update single row of the table: "e_sanction_scopes" + """ + update_e_sanction_scopes_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_sanction_scopes_set_input + pk_columns: e_sanction_scopes_pk_columns_input! + ): e_sanction_scopes + + """ + update multiples rows of table: "e_sanction_scopes" + """ + update_e_sanction_scopes_many( + """updates to execute, in order""" + updates: [e_sanction_scopes_updates!]! + ): [e_sanction_scopes_mutation_response] + + """ + update data of the table: "e_sanction_sources" + """ + update_e_sanction_sources( + """increments the numeric columns with given value of the filtered values""" + _inc: e_sanction_sources_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: e_sanction_sources_set_input + + """filter the rows which have to be updated""" + where: e_sanction_sources_bool_exp! + ): e_sanction_sources_mutation_response + + """ + update single row of the table: "e_sanction_sources" + """ + update_e_sanction_sources_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: e_sanction_sources_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: e_sanction_sources_set_input + pk_columns: e_sanction_sources_pk_columns_input! + ): e_sanction_sources + + """ + update multiples rows of table: "e_sanction_sources" + """ + update_e_sanction_sources_many( + """updates to execute, in order""" + updates: [e_sanction_sources_updates!]! + ): [e_sanction_sources_mutation_response] + + """ + update data of the table: "e_sanction_types" + """ + update_e_sanction_types( + """sets the columns of the filtered rows to the given values""" + _set: e_sanction_types_set_input + + """filter the rows which have to be updated""" + where: e_sanction_types_bool_exp! + ): e_sanction_types_mutation_response + + """ + update single row of the table: "e_sanction_types" + """ + update_e_sanction_types_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_sanction_types_set_input + pk_columns: e_sanction_types_pk_columns_input! + ): e_sanction_types + + """ + update multiples rows of table: "e_sanction_types" + """ + update_e_sanction_types_many( + """updates to execute, in order""" + updates: [e_sanction_types_updates!]! + ): [e_sanction_types_mutation_response] + + """ + update data of the table: "e_scrim_request_statuses" + """ + update_e_scrim_request_statuses( + """sets the columns of the filtered rows to the given values""" + _set: e_scrim_request_statuses_set_input + + """filter the rows which have to be updated""" + where: e_scrim_request_statuses_bool_exp! + ): e_scrim_request_statuses_mutation_response + + """ + update single row of the table: "e_scrim_request_statuses" + """ + update_e_scrim_request_statuses_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_scrim_request_statuses_set_input + pk_columns: e_scrim_request_statuses_pk_columns_input! + ): e_scrim_request_statuses + + """ + update multiples rows of table: "e_scrim_request_statuses" + """ + update_e_scrim_request_statuses_many( + """updates to execute, in order""" + updates: [e_scrim_request_statuses_updates!]! + ): [e_scrim_request_statuses_mutation_response] + + """ + update data of the table: "e_server_types" + """ + update_e_server_types( + """sets the columns of the filtered rows to the given values""" + _set: e_server_types_set_input + + """filter the rows which have to be updated""" + where: e_server_types_bool_exp! + ): e_server_types_mutation_response + + """ + update single row of the table: "e_server_types" + """ + update_e_server_types_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_server_types_set_input + pk_columns: e_server_types_pk_columns_input! + ): e_server_types + + """ + update multiples rows of table: "e_server_types" + """ + update_e_server_types_many( + """updates to execute, in order""" + updates: [e_server_types_updates!]! + ): [e_server_types_mutation_response] + + """ + update data of the table: "e_sides" + """ + update_e_sides( + """sets the columns of the filtered rows to the given values""" + _set: e_sides_set_input + + """filter the rows which have to be updated""" + where: e_sides_bool_exp! + ): e_sides_mutation_response + + """ + update single row of the table: "e_sides" + """ + update_e_sides_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_sides_set_input + pk_columns: e_sides_pk_columns_input! + ): e_sides + + """ + update multiples rows of table: "e_sides" + """ + update_e_sides_many( + """updates to execute, in order""" + updates: [e_sides_updates!]! + ): [e_sides_mutation_response] + + """ + update data of the table: "e_system_alert_types" + """ + update_e_system_alert_types( + """sets the columns of the filtered rows to the given values""" + _set: e_system_alert_types_set_input + + """filter the rows which have to be updated""" + where: e_system_alert_types_bool_exp! + ): e_system_alert_types_mutation_response + + """ + update single row of the table: "e_system_alert_types" + """ + update_e_system_alert_types_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_system_alert_types_set_input + pk_columns: e_system_alert_types_pk_columns_input! + ): e_system_alert_types + + """ + update multiples rows of table: "e_system_alert_types" + """ + update_e_system_alert_types_many( + """updates to execute, in order""" + updates: [e_system_alert_types_updates!]! + ): [e_system_alert_types_mutation_response] + + """ + update data of the table: "e_team_roles" + """ + update_e_team_roles( + """sets the columns of the filtered rows to the given values""" + _set: e_team_roles_set_input + + """filter the rows which have to be updated""" + where: e_team_roles_bool_exp! + ): e_team_roles_mutation_response + + """ + update single row of the table: "e_team_roles" + """ + update_e_team_roles_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_team_roles_set_input + pk_columns: e_team_roles_pk_columns_input! + ): e_team_roles + + """ + update multiples rows of table: "e_team_roles" + """ + update_e_team_roles_many( + """updates to execute, in order""" + updates: [e_team_roles_updates!]! + ): [e_team_roles_mutation_response] + + """ + update data of the table: "e_team_roster_statuses" + """ + update_e_team_roster_statuses( + """sets the columns of the filtered rows to the given values""" + _set: e_team_roster_statuses_set_input + + """filter the rows which have to be updated""" + where: e_team_roster_statuses_bool_exp! + ): e_team_roster_statuses_mutation_response + + """ + update single row of the table: "e_team_roster_statuses" + """ + update_e_team_roster_statuses_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_team_roster_statuses_set_input + pk_columns: e_team_roster_statuses_pk_columns_input! + ): e_team_roster_statuses + + """ + update multiples rows of table: "e_team_roster_statuses" + """ + update_e_team_roster_statuses_many( + """updates to execute, in order""" + updates: [e_team_roster_statuses_updates!]! + ): [e_team_roster_statuses_mutation_response] + + """ + update data of the table: "e_timeout_settings" + """ + update_e_timeout_settings( + """sets the columns of the filtered rows to the given values""" + _set: e_timeout_settings_set_input + + """filter the rows which have to be updated""" + where: e_timeout_settings_bool_exp! + ): e_timeout_settings_mutation_response + + """ + update single row of the table: "e_timeout_settings" + """ + update_e_timeout_settings_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_timeout_settings_set_input + pk_columns: e_timeout_settings_pk_columns_input! + ): e_timeout_settings + + """ + update multiples rows of table: "e_timeout_settings" + """ + update_e_timeout_settings_many( + """updates to execute, in order""" + updates: [e_timeout_settings_updates!]! + ): [e_timeout_settings_mutation_response] + + """ + update data of the table: "e_tournament_categories" + """ + update_e_tournament_categories( + """sets the columns of the filtered rows to the given values""" + _set: e_tournament_categories_set_input + + """filter the rows which have to be updated""" + where: e_tournament_categories_bool_exp! + ): e_tournament_categories_mutation_response + + """ + update single row of the table: "e_tournament_categories" + """ + update_e_tournament_categories_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_tournament_categories_set_input + pk_columns: e_tournament_categories_pk_columns_input! + ): e_tournament_categories + + """ + update multiples rows of table: "e_tournament_categories" + """ + update_e_tournament_categories_many( + """updates to execute, in order""" + updates: [e_tournament_categories_updates!]! + ): [e_tournament_categories_mutation_response] + + """ + update data of the table: "e_tournament_free_agent_statuses" + """ + update_e_tournament_free_agent_statuses( + """sets the columns of the filtered rows to the given values""" + _set: e_tournament_free_agent_statuses_set_input + + """filter the rows which have to be updated""" + where: e_tournament_free_agent_statuses_bool_exp! + ): e_tournament_free_agent_statuses_mutation_response + + """ + update single row of the table: "e_tournament_free_agent_statuses" + """ + update_e_tournament_free_agent_statuses_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_tournament_free_agent_statuses_set_input + pk_columns: e_tournament_free_agent_statuses_pk_columns_input! + ): e_tournament_free_agent_statuses + + """ + update multiples rows of table: "e_tournament_free_agent_statuses" + """ + update_e_tournament_free_agent_statuses_many( + """updates to execute, in order""" + updates: [e_tournament_free_agent_statuses_updates!]! + ): [e_tournament_free_agent_statuses_mutation_response] + + """ + update data of the table: "e_tournament_registration_types" + """ + update_e_tournament_registration_types( + """sets the columns of the filtered rows to the given values""" + _set: e_tournament_registration_types_set_input + + """filter the rows which have to be updated""" + where: e_tournament_registration_types_bool_exp! + ): e_tournament_registration_types_mutation_response + + """ + update single row of the table: "e_tournament_registration_types" + """ + update_e_tournament_registration_types_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_tournament_registration_types_set_input + pk_columns: e_tournament_registration_types_pk_columns_input! + ): e_tournament_registration_types + + """ + update multiples rows of table: "e_tournament_registration_types" + """ + update_e_tournament_registration_types_many( + """updates to execute, in order""" + updates: [e_tournament_registration_types_updates!]! + ): [e_tournament_registration_types_mutation_response] + + """ + update data of the table: "e_tournament_stage_types" + """ + update_e_tournament_stage_types( + """sets the columns of the filtered rows to the given values""" + _set: e_tournament_stage_types_set_input + + """filter the rows which have to be updated""" + where: e_tournament_stage_types_bool_exp! + ): e_tournament_stage_types_mutation_response + + """ + update single row of the table: "e_tournament_stage_types" + """ + update_e_tournament_stage_types_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_tournament_stage_types_set_input + pk_columns: e_tournament_stage_types_pk_columns_input! + ): e_tournament_stage_types + + """ + update multiples rows of table: "e_tournament_stage_types" + """ + update_e_tournament_stage_types_many( + """updates to execute, in order""" + updates: [e_tournament_stage_types_updates!]! + ): [e_tournament_stage_types_mutation_response] + + """ + update data of the table: "e_tournament_status" + """ + update_e_tournament_status( + """sets the columns of the filtered rows to the given values""" + _set: e_tournament_status_set_input + + """filter the rows which have to be updated""" + where: e_tournament_status_bool_exp! + ): e_tournament_status_mutation_response + + """ + update single row of the table: "e_tournament_status" + """ + update_e_tournament_status_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_tournament_status_set_input + pk_columns: e_tournament_status_pk_columns_input! + ): e_tournament_status + + """ + update multiples rows of table: "e_tournament_status" + """ + update_e_tournament_status_many( + """updates to execute, in order""" + updates: [e_tournament_status_updates!]! + ): [e_tournament_status_mutation_response] + + """ + update data of the table: "e_utility_practice_access" + """ + update_e_utility_practice_access( + """sets the columns of the filtered rows to the given values""" + _set: e_utility_practice_access_set_input + + """filter the rows which have to be updated""" + where: e_utility_practice_access_bool_exp! + ): e_utility_practice_access_mutation_response + + """ + update single row of the table: "e_utility_practice_access" + """ + update_e_utility_practice_access_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_utility_practice_access_set_input + pk_columns: e_utility_practice_access_pk_columns_input! + ): e_utility_practice_access + + """ + update multiples rows of table: "e_utility_practice_access" + """ + update_e_utility_practice_access_many( + """updates to execute, in order""" + updates: [e_utility_practice_access_updates!]! + ): [e_utility_practice_access_mutation_response] + + """ + update data of the table: "e_utility_practice_statuses" + """ + update_e_utility_practice_statuses( + """sets the columns of the filtered rows to the given values""" + _set: e_utility_practice_statuses_set_input + + """filter the rows which have to be updated""" + where: e_utility_practice_statuses_bool_exp! + ): e_utility_practice_statuses_mutation_response + + """ + update single row of the table: "e_utility_practice_statuses" + """ + update_e_utility_practice_statuses_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_utility_practice_statuses_set_input + pk_columns: e_utility_practice_statuses_pk_columns_input! + ): e_utility_practice_statuses + + """ + update multiples rows of table: "e_utility_practice_statuses" + """ + update_e_utility_practice_statuses_many( + """updates to execute, in order""" + updates: [e_utility_practice_statuses_updates!]! + ): [e_utility_practice_statuses_mutation_response] + + """ + update data of the table: "e_utility_sources" + """ + update_e_utility_sources( + """sets the columns of the filtered rows to the given values""" + _set: e_utility_sources_set_input + + """filter the rows which have to be updated""" + where: e_utility_sources_bool_exp! + ): e_utility_sources_mutation_response + + """ + update single row of the table: "e_utility_sources" + """ + update_e_utility_sources_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_utility_sources_set_input + pk_columns: e_utility_sources_pk_columns_input! + ): e_utility_sources + + """ + update multiples rows of table: "e_utility_sources" + """ + update_e_utility_sources_many( + """updates to execute, in order""" + updates: [e_utility_sources_updates!]! + ): [e_utility_sources_mutation_response] + + """ + update data of the table: "e_utility_techniques" + """ + update_e_utility_techniques( + """sets the columns of the filtered rows to the given values""" + _set: e_utility_techniques_set_input + + """filter the rows which have to be updated""" + where: e_utility_techniques_bool_exp! + ): e_utility_techniques_mutation_response + + """ + update single row of the table: "e_utility_techniques" + """ + update_e_utility_techniques_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_utility_techniques_set_input + pk_columns: e_utility_techniques_pk_columns_input! + ): e_utility_techniques + + """ + update multiples rows of table: "e_utility_techniques" + """ + update_e_utility_techniques_many( + """updates to execute, in order""" + updates: [e_utility_techniques_updates!]! + ): [e_utility_techniques_mutation_response] + + """ + update data of the table: "e_utility_throw_strengths" + """ + update_e_utility_throw_strengths( + """sets the columns of the filtered rows to the given values""" + _set: e_utility_throw_strengths_set_input + + """filter the rows which have to be updated""" + where: e_utility_throw_strengths_bool_exp! + ): e_utility_throw_strengths_mutation_response + + """ + update single row of the table: "e_utility_throw_strengths" + """ + update_e_utility_throw_strengths_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_utility_throw_strengths_set_input + pk_columns: e_utility_throw_strengths_pk_columns_input! + ): e_utility_throw_strengths + + """ + update multiples rows of table: "e_utility_throw_strengths" + """ + update_e_utility_throw_strengths_many( + """updates to execute, in order""" + updates: [e_utility_throw_strengths_updates!]! + ): [e_utility_throw_strengths_mutation_response] + + """ + update data of the table: "e_utility_types" + """ + update_e_utility_types( + """sets the columns of the filtered rows to the given values""" + _set: e_utility_types_set_input + + """filter the rows which have to be updated""" + where: e_utility_types_bool_exp! + ): e_utility_types_mutation_response + + """ + update single row of the table: "e_utility_types" + """ + update_e_utility_types_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_utility_types_set_input + pk_columns: e_utility_types_pk_columns_input! + ): e_utility_types + + """ + update multiples rows of table: "e_utility_types" + """ + update_e_utility_types_many( + """updates to execute, in order""" + updates: [e_utility_types_updates!]! + ): [e_utility_types_mutation_response] + + """ + update data of the table: "e_utility_visibility" + """ + update_e_utility_visibility( + """sets the columns of the filtered rows to the given values""" + _set: e_utility_visibility_set_input + + """filter the rows which have to be updated""" + where: e_utility_visibility_bool_exp! + ): e_utility_visibility_mutation_response + + """ + update single row of the table: "e_utility_visibility" + """ + update_e_utility_visibility_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_utility_visibility_set_input + pk_columns: e_utility_visibility_pk_columns_input! + ): e_utility_visibility + + """ + update multiples rows of table: "e_utility_visibility" + """ + update_e_utility_visibility_many( + """updates to execute, in order""" + updates: [e_utility_visibility_updates!]! + ): [e_utility_visibility_mutation_response] + + """ + update data of the table: "e_veto_pick_types" + """ + update_e_veto_pick_types( + """sets the columns of the filtered rows to the given values""" + _set: e_veto_pick_types_set_input + + """filter the rows which have to be updated""" + where: e_veto_pick_types_bool_exp! + ): e_veto_pick_types_mutation_response + + """ + update single row of the table: "e_veto_pick_types" + """ + update_e_veto_pick_types_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_veto_pick_types_set_input + pk_columns: e_veto_pick_types_pk_columns_input! + ): e_veto_pick_types + + """ + update multiples rows of table: "e_veto_pick_types" + """ + update_e_veto_pick_types_many( + """updates to execute, in order""" + updates: [e_veto_pick_types_updates!]! + ): [e_veto_pick_types_mutation_response] + + """ + update data of the table: "e_winning_reasons" + """ + update_e_winning_reasons( + """sets the columns of the filtered rows to the given values""" + _set: e_winning_reasons_set_input + + """filter the rows which have to be updated""" + where: e_winning_reasons_bool_exp! + ): e_winning_reasons_mutation_response + + """ + update single row of the table: "e_winning_reasons" + """ + update_e_winning_reasons_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_winning_reasons_set_input + pk_columns: e_winning_reasons_pk_columns_input! + ): e_winning_reasons + + """ + update multiples rows of table: "e_winning_reasons" + """ + update_e_winning_reasons_many( + """updates to execute, in order""" + updates: [e_winning_reasons_updates!]! + ): [e_winning_reasons_mutation_response] + + """ + update data of the table: "event_match_links" + """ + update_event_match_links( + """sets the columns of the filtered rows to the given values""" + _set: event_match_links_set_input + + """filter the rows which have to be updated""" + where: event_match_links_bool_exp! + ): event_match_links_mutation_response + + """ + update single row of the table: "event_match_links" + """ + update_event_match_links_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: event_match_links_set_input + pk_columns: event_match_links_pk_columns_input! + ): event_match_links + + """ + update multiples rows of table: "event_match_links" + """ + update_event_match_links_many( + """updates to execute, in order""" + updates: [event_match_links_updates!]! + ): [event_match_links_mutation_response] + + """ + update data of the table: "event_media" + """ + update_event_media( + """increments the numeric columns with given value of the filtered values""" + _inc: event_media_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: event_media_set_input + + """filter the rows which have to be updated""" + where: event_media_bool_exp! + ): event_media_mutation_response + + """ + update single row of the table: "event_media" + """ + update_event_media_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: event_media_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: event_media_set_input + pk_columns: event_media_pk_columns_input! + ): event_media + + """ + update multiples rows of table: "event_media" + """ + update_event_media_many( + """updates to execute, in order""" + updates: [event_media_updates!]! + ): [event_media_mutation_response] + + """ + update data of the table: "event_media_players" + """ + update_event_media_players( + """increments the numeric columns with given value of the filtered values""" + _inc: event_media_players_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: event_media_players_set_input + + """filter the rows which have to be updated""" + where: event_media_players_bool_exp! + ): event_media_players_mutation_response + + """ + update single row of the table: "event_media_players" + """ + update_event_media_players_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: event_media_players_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: event_media_players_set_input + pk_columns: event_media_players_pk_columns_input! + ): event_media_players + + """ + update multiples rows of table: "event_media_players" + """ + update_event_media_players_many( + """updates to execute, in order""" + updates: [event_media_players_updates!]! + ): [event_media_players_mutation_response] + + """ + update data of the table: "event_organizers" + """ + update_event_organizers( + """increments the numeric columns with given value of the filtered values""" + _inc: event_organizers_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: event_organizers_set_input + + """filter the rows which have to be updated""" + where: event_organizers_bool_exp! + ): event_organizers_mutation_response + + """ + update single row of the table: "event_organizers" + """ + update_event_organizers_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: event_organizers_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: event_organizers_set_input + pk_columns: event_organizers_pk_columns_input! + ): event_organizers + + """ + update multiples rows of table: "event_organizers" + """ + update_event_organizers_many( + """updates to execute, in order""" + updates: [event_organizers_updates!]! + ): [event_organizers_mutation_response] + + """ + update data of the table: "event_players" + """ + update_event_players( + """increments the numeric columns with given value of the filtered values""" + _inc: event_players_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: event_players_set_input + + """filter the rows which have to be updated""" + where: event_players_bool_exp! + ): event_players_mutation_response + + """ + update single row of the table: "event_players" + """ + update_event_players_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: event_players_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: event_players_set_input + pk_columns: event_players_pk_columns_input! + ): event_players + + """ + update multiples rows of table: "event_players" + """ + update_event_players_many( + """updates to execute, in order""" + updates: [event_players_updates!]! + ): [event_players_mutation_response] + + """ + update data of the table: "event_teams" + """ + update_event_teams( + """sets the columns of the filtered rows to the given values""" + _set: event_teams_set_input + + """filter the rows which have to be updated""" + where: event_teams_bool_exp! + ): event_teams_mutation_response + + """ + update single row of the table: "event_teams" + """ + update_event_teams_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: event_teams_set_input + pk_columns: event_teams_pk_columns_input! + ): event_teams + + """ + update multiples rows of table: "event_teams" + """ + update_event_teams_many( + """updates to execute, in order""" + updates: [event_teams_updates!]! + ): [event_teams_mutation_response] + + """ + update data of the table: "event_tournaments" + """ + update_event_tournaments( + """sets the columns of the filtered rows to the given values""" + _set: event_tournaments_set_input + + """filter the rows which have to be updated""" + where: event_tournaments_bool_exp! + ): event_tournaments_mutation_response + + """ + update single row of the table: "event_tournaments" + """ + update_event_tournaments_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: event_tournaments_set_input + pk_columns: event_tournaments_pk_columns_input! + ): event_tournaments + + """ + update multiples rows of table: "event_tournaments" + """ + update_event_tournaments_many( + """updates to execute, in order""" + updates: [event_tournaments_updates!]! + ): [event_tournaments_mutation_response] + + """ + update data of the table: "events" + """ + update_events( + """increments the numeric columns with given value of the filtered values""" + _inc: events_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: events_set_input + + """filter the rows which have to be updated""" + where: events_bool_exp! + ): events_mutation_response + + """ + update single row of the table: "events" + """ + update_events_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: events_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: events_set_input + pk_columns: events_pk_columns_input! + ): events + + """ + update multiples rows of table: "events" + """ + update_events_many( + """updates to execute, in order""" + updates: [events_updates!]! + ): [events_mutation_response] + + """ + update data of the table: "friends" + """ + update_friends( + """increments the numeric columns with given value of the filtered values""" + _inc: friends_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: friends_set_input + + """filter the rows which have to be updated""" + where: friends_bool_exp! + ): friends_mutation_response + + """ + update single row of the table: "friends" + """ + update_friends_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: friends_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: friends_set_input + pk_columns: friends_pk_columns_input! + ): friends + + """ + update multiples rows of table: "friends" + """ + update_friends_many( + """updates to execute, in order""" + updates: [friends_updates!]! + ): [friends_mutation_response] + + """ + update data of the table: "game_mode_plugins" + """ + update_game_mode_plugins( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: game_mode_plugins_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: game_mode_plugins_delete_at_path_input + + """ + delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array + """ + _delete_elem: game_mode_plugins_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: game_mode_plugins_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: game_mode_plugins_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: game_mode_plugins_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: game_mode_plugins_set_input + + """filter the rows which have to be updated""" + where: game_mode_plugins_bool_exp! + ): game_mode_plugins_mutation_response + + """ + update single row of the table: "game_mode_plugins" + """ + update_game_mode_plugins_by_pk( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: game_mode_plugins_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: game_mode_plugins_delete_at_path_input + + """ + delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array + """ + _delete_elem: game_mode_plugins_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: game_mode_plugins_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: game_mode_plugins_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: game_mode_plugins_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: game_mode_plugins_set_input + pk_columns: game_mode_plugins_pk_columns_input! + ): game_mode_plugins + + """ + update multiples rows of table: "game_mode_plugins" + """ + update_game_mode_plugins_many( + """updates to execute, in order""" + updates: [game_mode_plugins_updates!]! + ): [game_mode_plugins_mutation_response] + + """ + update data of the table: "game_modes" + """ + update_game_modes( + """sets the columns of the filtered rows to the given values""" + _set: game_modes_set_input + + """filter the rows which have to be updated""" + where: game_modes_bool_exp! + ): game_modes_mutation_response + + """ + update single row of the table: "game_modes" + """ + update_game_modes_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: game_modes_set_input + pk_columns: game_modes_pk_columns_input! + ): game_modes + + """ + update multiples rows of table: "game_modes" + """ + update_game_modes_many( + """updates to execute, in order""" + updates: [game_modes_updates!]! + ): [game_modes_mutation_response] + + """ + update data of the table: "game_plugin_installs" + """ + update_game_plugin_installs( + """sets the columns of the filtered rows to the given values""" + _set: game_plugin_installs_set_input + + """filter the rows which have to be updated""" + where: game_plugin_installs_bool_exp! + ): game_plugin_installs_mutation_response + + """ + update single row of the table: "game_plugin_installs" + """ + update_game_plugin_installs_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: game_plugin_installs_set_input + pk_columns: game_plugin_installs_pk_columns_input! + ): game_plugin_installs + + """ + update multiples rows of table: "game_plugin_installs" + """ + update_game_plugin_installs_many( + """updates to execute, in order""" + updates: [game_plugin_installs_updates!]! + ): [game_plugin_installs_mutation_response] + + """ + update data of the table: "game_plugin_versions" + """ + update_game_plugin_versions( + """increments the numeric columns with given value of the filtered values""" + _inc: game_plugin_versions_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: game_plugin_versions_set_input + + """filter the rows which have to be updated""" + where: game_plugin_versions_bool_exp! + ): game_plugin_versions_mutation_response + + """ + update single row of the table: "game_plugin_versions" + """ + update_game_plugin_versions_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: game_plugin_versions_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: game_plugin_versions_set_input + pk_columns: game_plugin_versions_pk_columns_input! + ): game_plugin_versions + + """ + update multiples rows of table: "game_plugin_versions" + """ + update_game_plugin_versions_many( + """updates to execute, in order""" + updates: [game_plugin_versions_updates!]! + ): [game_plugin_versions_mutation_response] + + """ + update data of the table: "game_plugins" + """ + update_game_plugins( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: game_plugins_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: game_plugins_delete_at_path_input + + """ + delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array + """ + _delete_elem: game_plugins_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: game_plugins_delete_key_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: game_plugins_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: game_plugins_set_input + + """filter the rows which have to be updated""" + where: game_plugins_bool_exp! + ): game_plugins_mutation_response + + """ + update single row of the table: "game_plugins" + """ + update_game_plugins_by_pk( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: game_plugins_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: game_plugins_delete_at_path_input + + """ + delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array + """ + _delete_elem: game_plugins_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: game_plugins_delete_key_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: game_plugins_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: game_plugins_set_input + pk_columns: game_plugins_pk_columns_input! + ): game_plugins + + """ + update multiples rows of table: "game_plugins" + """ + update_game_plugins_many( + """updates to execute, in order""" + updates: [game_plugins_updates!]! + ): [game_plugins_mutation_response] + + """ + update data of the table: "game_server_node_plugins" + """ + update_game_server_node_plugins( + """sets the columns of the filtered rows to the given values""" + _set: game_server_node_plugins_set_input + + """filter the rows which have to be updated""" + where: game_server_node_plugins_bool_exp! + ): game_server_node_plugins_mutation_response + + """ + update single row of the table: "game_server_node_plugins" + """ + update_game_server_node_plugins_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: game_server_node_plugins_set_input + pk_columns: game_server_node_plugins_pk_columns_input! + ): game_server_node_plugins + + """ + update multiples rows of table: "game_server_node_plugins" + """ + update_game_server_node_plugins_many( + """updates to execute, in order""" + updates: [game_server_node_plugins_updates!]! + ): [game_server_node_plugins_mutation_response] + + """ + update data of the table: "game_server_nodes" + """ + update_game_server_nodes( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: game_server_nodes_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: game_server_nodes_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_server_nodes_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: game_server_nodes_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: game_server_nodes_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: game_server_nodes_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: game_server_nodes_set_input + + """filter the rows which have to be updated""" + where: game_server_nodes_bool_exp! + ): game_server_nodes_mutation_response + + """ + update single row of the table: "game_server_nodes" + """ + update_game_server_nodes_by_pk( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: game_server_nodes_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: game_server_nodes_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_server_nodes_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: game_server_nodes_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: game_server_nodes_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: game_server_nodes_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: game_server_nodes_set_input + pk_columns: game_server_nodes_pk_columns_input! + ): game_server_nodes + + """ + update multiples rows of table: "game_server_nodes" + """ + update_game_server_nodes_many( + """updates to execute, in order""" + updates: [game_server_nodes_updates!]! + ): [game_server_nodes_mutation_response] + + """ + update data of the table: "game_versions" + """ + update_game_versions( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: game_versions_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: game_versions_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_versions_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: game_versions_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: game_versions_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: game_versions_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: game_versions_set_input + + """filter the rows which have to be updated""" + where: game_versions_bool_exp! + ): game_versions_mutation_response + + """ + update single row of the table: "game_versions" + """ + update_game_versions_by_pk( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: game_versions_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: game_versions_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_versions_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: game_versions_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: game_versions_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: game_versions_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: game_versions_set_input + pk_columns: game_versions_pk_columns_input! + ): game_versions + + """ + update multiples rows of table: "game_versions" + """ + update_game_versions_many( + """updates to execute, in order""" + updates: [game_versions_updates!]! + ): [game_versions_mutation_response] + + """ + update data of the table: "gamedata_signature_validations" + """ + update_gamedata_signature_validations( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: gamedata_signature_validations_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: gamedata_signature_validations_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: gamedata_signature_validations_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: gamedata_signature_validations_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: gamedata_signature_validations_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: gamedata_signature_validations_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: gamedata_signature_validations_set_input + + """filter the rows which have to be updated""" + where: gamedata_signature_validations_bool_exp! + ): gamedata_signature_validations_mutation_response + + """ + update single row of the table: "gamedata_signature_validations" + """ + update_gamedata_signature_validations_by_pk( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: gamedata_signature_validations_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: gamedata_signature_validations_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: gamedata_signature_validations_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: gamedata_signature_validations_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: gamedata_signature_validations_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: gamedata_signature_validations_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: gamedata_signature_validations_set_input + pk_columns: gamedata_signature_validations_pk_columns_input! + ): gamedata_signature_validations + + """ + update multiples rows of table: "gamedata_signature_validations" + """ + update_gamedata_signature_validations_many( + """updates to execute, in order""" + updates: [gamedata_signature_validations_updates!]! + ): [gamedata_signature_validations_mutation_response] + + """ + update data of the table: "leaderboard_entries" + """ + update_leaderboard_entries( + """increments the numeric columns with given value of the filtered values""" + _inc: leaderboard_entries_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: leaderboard_entries_set_input + + """filter the rows which have to be updated""" + where: leaderboard_entries_bool_exp! + ): leaderboard_entries_mutation_response + + """ + update multiples rows of table: "leaderboard_entries" + """ + update_leaderboard_entries_many( + """updates to execute, in order""" + updates: [leaderboard_entries_updates!]! + ): [leaderboard_entries_mutation_response] + + """ + update data of the table: "league_divisions" + """ + update_league_divisions( + """increments the numeric columns with given value of the filtered values""" + _inc: league_divisions_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: league_divisions_set_input + + """filter the rows which have to be updated""" + where: league_divisions_bool_exp! + ): league_divisions_mutation_response + + """ + update single row of the table: "league_divisions" + """ + update_league_divisions_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: league_divisions_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: league_divisions_set_input + pk_columns: league_divisions_pk_columns_input! + ): league_divisions + + """ + update multiples rows of table: "league_divisions" + """ + update_league_divisions_many( + """updates to execute, in order""" + updates: [league_divisions_updates!]! + ): [league_divisions_mutation_response] + + """ + update data of the table: "league_match_weeks" + """ + update_league_match_weeks( + """increments the numeric columns with given value of the filtered values""" + _inc: league_match_weeks_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: league_match_weeks_set_input + + """filter the rows which have to be updated""" + where: league_match_weeks_bool_exp! + ): league_match_weeks_mutation_response + + """ + update single row of the table: "league_match_weeks" + """ + update_league_match_weeks_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: league_match_weeks_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: league_match_weeks_set_input + pk_columns: league_match_weeks_pk_columns_input! + ): league_match_weeks + + """ + update multiples rows of table: "league_match_weeks" + """ + update_league_match_weeks_many( + """updates to execute, in order""" + updates: [league_match_weeks_updates!]! + ): [league_match_weeks_mutation_response] + + """ + update data of the table: "league_relegation_playoffs" + """ + update_league_relegation_playoffs( + """increments the numeric columns with given value of the filtered values""" + _inc: league_relegation_playoffs_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: league_relegation_playoffs_set_input + + """filter the rows which have to be updated""" + where: league_relegation_playoffs_bool_exp! + ): league_relegation_playoffs_mutation_response + + """ + update single row of the table: "league_relegation_playoffs" + """ + update_league_relegation_playoffs_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: league_relegation_playoffs_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: league_relegation_playoffs_set_input + pk_columns: league_relegation_playoffs_pk_columns_input! + ): league_relegation_playoffs + + """ + update multiples rows of table: "league_relegation_playoffs" + """ + update_league_relegation_playoffs_many( + """updates to execute, in order""" + updates: [league_relegation_playoffs_updates!]! + ): [league_relegation_playoffs_mutation_response] + + """ + update data of the table: "league_scheduling_proposals" + """ + update_league_scheduling_proposals( + """increments the numeric columns with given value of the filtered values""" + _inc: league_scheduling_proposals_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: league_scheduling_proposals_set_input + + """filter the rows which have to be updated""" + where: league_scheduling_proposals_bool_exp! + ): league_scheduling_proposals_mutation_response + + """ + update single row of the table: "league_scheduling_proposals" + """ + update_league_scheduling_proposals_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: league_scheduling_proposals_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: league_scheduling_proposals_set_input + pk_columns: league_scheduling_proposals_pk_columns_input! + ): league_scheduling_proposals + + """ + update multiples rows of table: "league_scheduling_proposals" + """ + update_league_scheduling_proposals_many( + """updates to execute, in order""" + updates: [league_scheduling_proposals_updates!]! + ): [league_scheduling_proposals_mutation_response] + + """ + update data of the table: "league_season_divisions" + """ + update_league_season_divisions( + """sets the columns of the filtered rows to the given values""" + _set: league_season_divisions_set_input + + """filter the rows which have to be updated""" + where: league_season_divisions_bool_exp! + ): league_season_divisions_mutation_response + + """ + update single row of the table: "league_season_divisions" + """ + update_league_season_divisions_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: league_season_divisions_set_input + pk_columns: league_season_divisions_pk_columns_input! + ): league_season_divisions + + """ + update multiples rows of table: "league_season_divisions" + """ + update_league_season_divisions_many( + """updates to execute, in order""" + updates: [league_season_divisions_updates!]! + ): [league_season_divisions_mutation_response] + + """ + update data of the table: "league_seasons" + """ + update_league_seasons( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: league_seasons_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: league_seasons_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: league_seasons_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: league_seasons_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: league_seasons_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: league_seasons_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: league_seasons_set_input + + """filter the rows which have to be updated""" + where: league_seasons_bool_exp! + ): league_seasons_mutation_response + + """ + update single row of the table: "league_seasons" + """ + update_league_seasons_by_pk( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: league_seasons_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: league_seasons_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: league_seasons_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: league_seasons_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: league_seasons_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: league_seasons_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: league_seasons_set_input + pk_columns: league_seasons_pk_columns_input! + ): league_seasons + + """ + update multiples rows of table: "league_seasons" + """ + update_league_seasons_many( + """updates to execute, in order""" + updates: [league_seasons_updates!]! + ): [league_seasons_mutation_response] + + """ + update data of the table: "league_team_movements" + """ + update_league_team_movements( + """increments the numeric columns with given value of the filtered values""" + _inc: league_team_movements_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: league_team_movements_set_input + + """filter the rows which have to be updated""" + where: league_team_movements_bool_exp! + ): league_team_movements_mutation_response + + """ + update single row of the table: "league_team_movements" + """ + update_league_team_movements_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: league_team_movements_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: league_team_movements_set_input + pk_columns: league_team_movements_pk_columns_input! + ): league_team_movements + + """ + update multiples rows of table: "league_team_movements" + """ + update_league_team_movements_many( + """updates to execute, in order""" + updates: [league_team_movements_updates!]! + ): [league_team_movements_mutation_response] + + """ + update data of the table: "league_team_rosters" + """ + update_league_team_rosters( + """increments the numeric columns with given value of the filtered values""" + _inc: league_team_rosters_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: league_team_rosters_set_input + + """filter the rows which have to be updated""" + where: league_team_rosters_bool_exp! + ): league_team_rosters_mutation_response + + """ + update single row of the table: "league_team_rosters" + """ + update_league_team_rosters_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: league_team_rosters_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: league_team_rosters_set_input + pk_columns: league_team_rosters_pk_columns_input! + ): league_team_rosters + + """ + update multiples rows of table: "league_team_rosters" + """ + update_league_team_rosters_many( + """updates to execute, in order""" + updates: [league_team_rosters_updates!]! + ): [league_team_rosters_mutation_response] + + """ + update data of the table: "league_team_seasons" + """ + update_league_team_seasons( + """increments the numeric columns with given value of the filtered values""" + _inc: league_team_seasons_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: league_team_seasons_set_input + + """filter the rows which have to be updated""" + where: league_team_seasons_bool_exp! + ): league_team_seasons_mutation_response + + """ + update single row of the table: "league_team_seasons" + """ + update_league_team_seasons_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: league_team_seasons_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: league_team_seasons_set_input + pk_columns: league_team_seasons_pk_columns_input! + ): league_team_seasons + + """ + update multiples rows of table: "league_team_seasons" + """ + update_league_team_seasons_many( + """updates to execute, in order""" + updates: [league_team_seasons_updates!]! + ): [league_team_seasons_mutation_response] + + """ + update data of the table: "league_teams" + """ + update_league_teams( + """sets the columns of the filtered rows to the given values""" + _set: league_teams_set_input + + """filter the rows which have to be updated""" + where: league_teams_bool_exp! + ): league_teams_mutation_response + + """ + update single row of the table: "league_teams" + """ + update_league_teams_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: league_teams_set_input + pk_columns: league_teams_pk_columns_input! + ): league_teams + + """ + update multiples rows of table: "league_teams" + """ + update_league_teams_many( + """updates to execute, in order""" + updates: [league_teams_updates!]! + ): [league_teams_mutation_response] + + """ + update data of the table: "lobbies" + """ + update_lobbies( + """sets the columns of the filtered rows to the given values""" + _set: lobbies_set_input + + """filter the rows which have to be updated""" + where: lobbies_bool_exp! + ): lobbies_mutation_response + + """ + update single row of the table: "lobbies" + """ + update_lobbies_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: lobbies_set_input + pk_columns: lobbies_pk_columns_input! + ): lobbies + + """ + update multiples rows of table: "lobbies" + """ + update_lobbies_many( + """updates to execute, in order""" + updates: [lobbies_updates!]! + ): [lobbies_mutation_response] + + """ + update data of the table: "lobby_players" + """ + update_lobby_players( + """increments the numeric columns with given value of the filtered values""" + _inc: lobby_players_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: lobby_players_set_input + + """filter the rows which have to be updated""" + where: lobby_players_bool_exp! + ): lobby_players_mutation_response + + """ + update single row of the table: "lobby_players" + """ + update_lobby_players_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: lobby_players_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: lobby_players_set_input + pk_columns: lobby_players_pk_columns_input! + ): lobby_players + + """ + update multiples rows of table: "lobby_players" + """ + update_lobby_players_many( + """updates to execute, in order""" + updates: [lobby_players_updates!]! + ): [lobby_players_mutation_response] + + """ + update data of the table: "map_callouts" + """ + update_map_callouts( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: map_callouts_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: map_callouts_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: map_callouts_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: map_callouts_delete_key_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: map_callouts_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: map_callouts_set_input + + """filter the rows which have to be updated""" + where: map_callouts_bool_exp! + ): map_callouts_mutation_response + + """ + update single row of the table: "map_callouts" + """ + update_map_callouts_by_pk( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: map_callouts_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: map_callouts_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: map_callouts_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: map_callouts_delete_key_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: map_callouts_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: map_callouts_set_input + pk_columns: map_callouts_pk_columns_input! + ): map_callouts + + """ + update multiples rows of table: "map_callouts" + """ + update_map_callouts_many( + """updates to execute, in order""" + updates: [map_callouts_updates!]! + ): [map_callouts_mutation_response] + + """ + update data of the table: "map_pools" + """ + update_map_pools( + """sets the columns of the filtered rows to the given values""" + _set: map_pools_set_input + + """filter the rows which have to be updated""" + where: map_pools_bool_exp! + ): map_pools_mutation_response + + """ + update single row of the table: "map_pools" + """ + update_map_pools_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: map_pools_set_input + pk_columns: map_pools_pk_columns_input! + ): map_pools + + """ + update multiples rows of table: "map_pools" + """ + update_map_pools_many( + """updates to execute, in order""" + updates: [map_pools_updates!]! + ): [map_pools_mutation_response] + + """ + update data of the table: "maps" + """ + update_maps( + """sets the columns of the filtered rows to the given values""" + _set: maps_set_input + + """filter the rows which have to be updated""" + where: maps_bool_exp! + ): maps_mutation_response + + """ + update single row of the table: "maps" + """ + update_maps_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: maps_set_input + pk_columns: maps_pk_columns_input! + ): maps + + """ + update multiples rows of table: "maps" + """ + update_maps_many( + """updates to execute, in order""" + updates: [maps_updates!]! + ): [maps_mutation_response] + + """ + update data of the table: "match_clips" + """ + update_match_clips( + """increments the numeric columns with given value of the filtered values""" + _inc: match_clips_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: match_clips_set_input + + """filter the rows which have to be updated""" + where: match_clips_bool_exp! + ): match_clips_mutation_response + + """ + update single row of the table: "match_clips" + """ + update_match_clips_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: match_clips_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: match_clips_set_input + pk_columns: match_clips_pk_columns_input! + ): match_clips + + """ + update multiples rows of table: "match_clips" + """ + update_match_clips_many( + """updates to execute, in order""" + updates: [match_clips_updates!]! + ): [match_clips_mutation_response] + + """ + update data of the table: "match_demo_sessions" + """ + update_match_demo_sessions( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: match_demo_sessions_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: match_demo_sessions_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: match_demo_sessions_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: match_demo_sessions_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: match_demo_sessions_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: match_demo_sessions_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: match_demo_sessions_set_input + + """filter the rows which have to be updated""" + where: match_demo_sessions_bool_exp! + ): match_demo_sessions_mutation_response + + """ + update single row of the table: "match_demo_sessions" + """ + update_match_demo_sessions_by_pk( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: match_demo_sessions_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: match_demo_sessions_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: match_demo_sessions_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: match_demo_sessions_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: match_demo_sessions_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: match_demo_sessions_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: match_demo_sessions_set_input + pk_columns: match_demo_sessions_pk_columns_input! + ): match_demo_sessions + + """ + update multiples rows of table: "match_demo_sessions" + """ + update_match_demo_sessions_many( + """updates to execute, in order""" + updates: [match_demo_sessions_updates!]! + ): [match_demo_sessions_mutation_response] + + """ + update data of the table: "match_lineup_players" + """ + update_match_lineup_players( + """increments the numeric columns with given value of the filtered values""" + _inc: match_lineup_players_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: match_lineup_players_set_input + + """filter the rows which have to be updated""" + where: match_lineup_players_bool_exp! + ): match_lineup_players_mutation_response + + """ + update single row of the table: "match_lineup_players" + """ + update_match_lineup_players_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: match_lineup_players_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: match_lineup_players_set_input + pk_columns: match_lineup_players_pk_columns_input! + ): match_lineup_players + + """ + update multiples rows of table: "match_lineup_players" + """ + update_match_lineup_players_many( + """updates to execute, in order""" + updates: [match_lineup_players_updates!]! + ): [match_lineup_players_mutation_response] + + """ + update data of the table: "match_lineups" + """ + update_match_lineups( + """increments the numeric columns with given value of the filtered values""" + _inc: match_lineups_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: match_lineups_set_input + + """filter the rows which have to be updated""" + where: match_lineups_bool_exp! + ): match_lineups_mutation_response + + """ + update single row of the table: "match_lineups" + """ + update_match_lineups_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: match_lineups_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: match_lineups_set_input + pk_columns: match_lineups_pk_columns_input! + ): match_lineups + + """ + update multiples rows of table: "match_lineups" + """ + update_match_lineups_many( + """updates to execute, in order""" + updates: [match_lineups_updates!]! + ): [match_lineups_mutation_response] + + """ + update data of the table: "match_map_demos" + """ + update_match_map_demos( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: match_map_demos_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: match_map_demos_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: match_map_demos_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: match_map_demos_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: match_map_demos_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: match_map_demos_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: match_map_demos_set_input + + """filter the rows which have to be updated""" + where: match_map_demos_bool_exp! + ): match_map_demos_mutation_response + + """ + update single row of the table: "match_map_demos" + """ + update_match_map_demos_by_pk( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: match_map_demos_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: match_map_demos_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: match_map_demos_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: match_map_demos_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: match_map_demos_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: match_map_demos_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: match_map_demos_set_input + pk_columns: match_map_demos_pk_columns_input! + ): match_map_demos + + """ + update multiples rows of table: "match_map_demos" + """ + update_match_map_demos_many( + """updates to execute, in order""" + updates: [match_map_demos_updates!]! + ): [match_map_demos_mutation_response] + + """ + update data of the table: "match_map_rounds" + """ + update_match_map_rounds( + """increments the numeric columns with given value of the filtered values""" + _inc: match_map_rounds_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: match_map_rounds_set_input + + """filter the rows which have to be updated""" + where: match_map_rounds_bool_exp! + ): match_map_rounds_mutation_response + + """ + update single row of the table: "match_map_rounds" + """ + update_match_map_rounds_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: match_map_rounds_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: match_map_rounds_set_input + pk_columns: match_map_rounds_pk_columns_input! + ): match_map_rounds + + """ + update multiples rows of table: "match_map_rounds" + """ + update_match_map_rounds_many( + """updates to execute, in order""" + updates: [match_map_rounds_updates!]! + ): [match_map_rounds_mutation_response] + + """ + update data of the table: "match_map_veto_picks" + """ + update_match_map_veto_picks( + """sets the columns of the filtered rows to the given values""" + _set: match_map_veto_picks_set_input + + """filter the rows which have to be updated""" + where: match_map_veto_picks_bool_exp! + ): match_map_veto_picks_mutation_response + + """ + update single row of the table: "match_map_veto_picks" + """ + update_match_map_veto_picks_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: match_map_veto_picks_set_input + pk_columns: match_map_veto_picks_pk_columns_input! + ): match_map_veto_picks + + """ + update multiples rows of table: "match_map_veto_picks" + """ + update_match_map_veto_picks_many( + """updates to execute, in order""" + updates: [match_map_veto_picks_updates!]! + ): [match_map_veto_picks_mutation_response] + + """ + update data of the table: "match_maps" + """ + update_match_maps( + """increments the numeric columns with given value of the filtered values""" + _inc: match_maps_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: match_maps_set_input + + """filter the rows which have to be updated""" + where: match_maps_bool_exp! + ): match_maps_mutation_response + + """ + update single row of the table: "match_maps" + """ + update_match_maps_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: match_maps_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: match_maps_set_input + pk_columns: match_maps_pk_columns_input! + ): match_maps + + """ + update multiples rows of table: "match_maps" + """ + update_match_maps_many( + """updates to execute, in order""" + updates: [match_maps_updates!]! + ): [match_maps_mutation_response] + + """ + update data of the table: "match_options" + """ + update_match_options( + """increments the numeric columns with given value of the filtered values""" + _inc: match_options_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: match_options_set_input + + """filter the rows which have to be updated""" + where: match_options_bool_exp! + ): match_options_mutation_response + + """ + update single row of the table: "match_options" + """ + update_match_options_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: match_options_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: match_options_set_input + pk_columns: match_options_pk_columns_input! + ): match_options + + """ + update multiples rows of table: "match_options" + """ + update_match_options_many( + """updates to execute, in order""" + updates: [match_options_updates!]! + ): [match_options_mutation_response] + + """ + update data of the table: "match_region_veto_picks" + """ + update_match_region_veto_picks( + """sets the columns of the filtered rows to the given values""" + _set: match_region_veto_picks_set_input + + """filter the rows which have to be updated""" + where: match_region_veto_picks_bool_exp! + ): match_region_veto_picks_mutation_response + + """ + update single row of the table: "match_region_veto_picks" + """ + update_match_region_veto_picks_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: match_region_veto_picks_set_input + pk_columns: match_region_veto_picks_pk_columns_input! + ): match_region_veto_picks + + """ + update multiples rows of table: "match_region_veto_picks" + """ + update_match_region_veto_picks_many( + """updates to execute, in order""" + updates: [match_region_veto_picks_updates!]! + ): [match_region_veto_picks_mutation_response] + + """ + update data of the table: "match_streams" + """ + update_match_streams( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: match_streams_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: match_streams_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: match_streams_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: match_streams_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: match_streams_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: match_streams_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: match_streams_set_input + + """filter the rows which have to be updated""" + where: match_streams_bool_exp! + ): match_streams_mutation_response + + """ + update single row of the table: "match_streams" + """ + update_match_streams_by_pk( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: match_streams_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: match_streams_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: match_streams_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: match_streams_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: match_streams_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: match_streams_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: match_streams_set_input + pk_columns: match_streams_pk_columns_input! + ): match_streams + + """ + update multiples rows of table: "match_streams" + """ + update_match_streams_many( + """updates to execute, in order""" + updates: [match_streams_updates!]! + ): [match_streams_mutation_response] + + """ + update data of the table: "match_type_cfgs" + """ + update_match_type_cfgs( + """sets the columns of the filtered rows to the given values""" + _set: match_type_cfgs_set_input + + """filter the rows which have to be updated""" + where: match_type_cfgs_bool_exp! + ): match_type_cfgs_mutation_response + + """ + update single row of the table: "match_type_cfgs" + """ + update_match_type_cfgs_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: match_type_cfgs_set_input + pk_columns: match_type_cfgs_pk_columns_input! + ): match_type_cfgs + + """ + update multiples rows of table: "match_type_cfgs" + """ + update_match_type_cfgs_many( + """updates to execute, in order""" + updates: [match_type_cfgs_updates!]! + ): [match_type_cfgs_mutation_response] + + """ + update data of the table: "matches" + """ + update_matches( + """increments the numeric columns with given value of the filtered values""" + _inc: matches_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: matches_set_input + + """filter the rows which have to be updated""" + where: matches_bool_exp! + ): matches_mutation_response + + """ + update single row of the table: "matches" + """ + update_matches_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: matches_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: matches_set_input + pk_columns: matches_pk_columns_input! + ): matches + + """ + update multiples rows of table: "matches" + """ + update_matches_many( + """updates to execute, in order""" + updates: [matches_updates!]! + ): [matches_mutation_response] + + """ + update data of the table: "migration_hashes.hashes" + """ + update_migration_hashes_hashes( + """sets the columns of the filtered rows to the given values""" + _set: migration_hashes_hashes_set_input + + """filter the rows which have to be updated""" + where: migration_hashes_hashes_bool_exp! + ): migration_hashes_hashes_mutation_response + + """ + update single row of the table: "migration_hashes.hashes" + """ + update_migration_hashes_hashes_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: migration_hashes_hashes_set_input + pk_columns: migration_hashes_hashes_pk_columns_input! + ): migration_hashes_hashes + + """ + update multiples rows of table: "migration_hashes.hashes" + """ + update_migration_hashes_hashes_many( + """updates to execute, in order""" + updates: [migration_hashes_hashes_updates!]! + ): [migration_hashes_hashes_mutation_response] + + """ + update data of the table: "v_my_friends" + """ + update_my_friends( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: my_friends_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: my_friends_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: my_friends_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: my_friends_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: my_friends_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: my_friends_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: my_friends_set_input + + """filter the rows which have to be updated""" + where: my_friends_bool_exp! + ): my_friends_mutation_response + + """ + update multiples rows of table: "v_my_friends" + """ + update_my_friends_many( + """updates to execute, in order""" + updates: [my_friends_updates!]! + ): [my_friends_mutation_response] + + """ + update data of the table: "news_articles" + """ + update_news_articles( + """increments the numeric columns with given value of the filtered values""" + _inc: news_articles_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: news_articles_set_input + + """filter the rows which have to be updated""" + where: news_articles_bool_exp! + ): news_articles_mutation_response + + """ + update single row of the table: "news_articles" + """ + update_news_articles_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: news_articles_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: news_articles_set_input + pk_columns: news_articles_pk_columns_input! + ): news_articles + + """ + update multiples rows of table: "news_articles" + """ + update_news_articles_many( + """updates to execute, in order""" + updates: [news_articles_updates!]! + ): [news_articles_mutation_response] + + """ + update data of the table: "notification_preferences" + """ + update_notification_preferences( + """increments the numeric columns with given value of the filtered values""" + _inc: notification_preferences_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: notification_preferences_set_input + + """filter the rows which have to be updated""" + where: notification_preferences_bool_exp! + ): notification_preferences_mutation_response + + """ + update single row of the table: "notification_preferences" + """ + update_notification_preferences_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: notification_preferences_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: notification_preferences_set_input + pk_columns: notification_preferences_pk_columns_input! + ): notification_preferences + + """ + update multiples rows of table: "notification_preferences" + """ + update_notification_preferences_many( + """updates to execute, in order""" + updates: [notification_preferences_updates!]! + ): [notification_preferences_mutation_response] + + """ + update data of the table: "notifications" + """ + update_notifications( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: notifications_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: notifications_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: notifications_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: notifications_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: notifications_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: notifications_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: notifications_set_input + + """filter the rows which have to be updated""" + where: notifications_bool_exp! + ): notifications_mutation_response + + """ + update single row of the table: "notifications" + """ + update_notifications_by_pk( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: notifications_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: notifications_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: notifications_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: notifications_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: notifications_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: notifications_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: notifications_set_input + pk_columns: notifications_pk_columns_input! + ): notifications + + """ + update multiples rows of table: "notifications" + """ + update_notifications_many( + """updates to execute, in order""" + updates: [notifications_updates!]! + ): [notifications_mutation_response] + + """ + update data of the table: "pending_match_import_players" + """ + update_pending_match_import_players( + """increments the numeric columns with given value of the filtered values""" + _inc: pending_match_import_players_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: pending_match_import_players_set_input + + """filter the rows which have to be updated""" + where: pending_match_import_players_bool_exp! + ): pending_match_import_players_mutation_response + + """ + update single row of the table: "pending_match_import_players" + """ + update_pending_match_import_players_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: pending_match_import_players_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: pending_match_import_players_set_input + pk_columns: pending_match_import_players_pk_columns_input! + ): pending_match_import_players + + """ + update multiples rows of table: "pending_match_import_players" + """ + update_pending_match_import_players_many( + """updates to execute, in order""" + updates: [pending_match_import_players_updates!]! + ): [pending_match_import_players_mutation_response] + + """ + update data of the table: "pending_match_imports" + """ + update_pending_match_imports( + """increments the numeric columns with given value of the filtered values""" + _inc: pending_match_imports_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: pending_match_imports_set_input + + """filter the rows which have to be updated""" + where: pending_match_imports_bool_exp! + ): pending_match_imports_mutation_response + + """ + update single row of the table: "pending_match_imports" + """ + update_pending_match_imports_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: pending_match_imports_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: pending_match_imports_set_input + pk_columns: pending_match_imports_pk_columns_input! + ): pending_match_imports + + """ + update multiples rows of table: "pending_match_imports" + """ + update_pending_match_imports_many( + """updates to execute, in order""" + updates: [pending_match_imports_updates!]! + ): [pending_match_imports_mutation_response] + + """ + update data of the table: "player_aim_stats_demo" + """ + update_player_aim_stats_demo( + """increments the numeric columns with given value of the filtered values""" + _inc: player_aim_stats_demo_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_aim_stats_demo_set_input + + """filter the rows which have to be updated""" + where: player_aim_stats_demo_bool_exp! + ): player_aim_stats_demo_mutation_response + + """ + update single row of the table: "player_aim_stats_demo" + """ + update_player_aim_stats_demo_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: player_aim_stats_demo_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_aim_stats_demo_set_input + pk_columns: player_aim_stats_demo_pk_columns_input! + ): player_aim_stats_demo + + """ + update multiples rows of table: "player_aim_stats_demo" + """ + update_player_aim_stats_demo_many( + """updates to execute, in order""" + updates: [player_aim_stats_demo_updates!]! + ): [player_aim_stats_demo_mutation_response] + + """ + update data of the table: "player_aim_weapon_stats" + """ + update_player_aim_weapon_stats( + """increments the numeric columns with given value of the filtered values""" + _inc: player_aim_weapon_stats_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_aim_weapon_stats_set_input + + """filter the rows which have to be updated""" + where: player_aim_weapon_stats_bool_exp! + ): player_aim_weapon_stats_mutation_response + + """ + update single row of the table: "player_aim_weapon_stats" + """ + update_player_aim_weapon_stats_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: player_aim_weapon_stats_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_aim_weapon_stats_set_input + pk_columns: player_aim_weapon_stats_pk_columns_input! + ): player_aim_weapon_stats + + """ + update multiples rows of table: "player_aim_weapon_stats" + """ + update_player_aim_weapon_stats_many( + """updates to execute, in order""" + updates: [player_aim_weapon_stats_updates!]! + ): [player_aim_weapon_stats_mutation_response] + + """ + update data of the table: "player_assists" + """ + update_player_assists( + """increments the numeric columns with given value of the filtered values""" + _inc: player_assists_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_assists_set_input + + """filter the rows which have to be updated""" + where: player_assists_bool_exp! + ): player_assists_mutation_response + + """ + update single row of the table: "player_assists" + """ + update_player_assists_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: player_assists_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_assists_set_input + pk_columns: player_assists_pk_columns_input! + ): player_assists + + """ + update multiples rows of table: "player_assists" + """ + update_player_assists_many( + """updates to execute, in order""" + updates: [player_assists_updates!]! + ): [player_assists_mutation_response] + + """ + update data of the table: "player_damages" + """ + update_player_damages( + """increments the numeric columns with given value of the filtered values""" + _inc: player_damages_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_damages_set_input + + """filter the rows which have to be updated""" + where: player_damages_bool_exp! + ): player_damages_mutation_response + + """ + update single row of the table: "player_damages" + """ + update_player_damages_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: player_damages_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_damages_set_input + pk_columns: player_damages_pk_columns_input! + ): player_damages + + """ + update multiples rows of table: "player_damages" + """ + update_player_damages_many( + """updates to execute, in order""" + updates: [player_damages_updates!]! + ): [player_damages_mutation_response] + + """ + update data of the table: "player_elo" + """ + update_player_elo( + """increments the numeric columns with given value of the filtered values""" + _inc: player_elo_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_elo_set_input + + """filter the rows which have to be updated""" + where: player_elo_bool_exp! + ): player_elo_mutation_response + + """ + update single row of the table: "player_elo" + """ + update_player_elo_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: player_elo_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_elo_set_input + pk_columns: player_elo_pk_columns_input! + ): player_elo + + """ + update multiples rows of table: "player_elo" + """ + update_player_elo_many( + """updates to execute, in order""" + updates: [player_elo_updates!]! + ): [player_elo_mutation_response] + + """ + update data of the table: "player_faceit_rank_history" + """ + update_player_faceit_rank_history( + """increments the numeric columns with given value of the filtered values""" + _inc: player_faceit_rank_history_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_faceit_rank_history_set_input + + """filter the rows which have to be updated""" + where: player_faceit_rank_history_bool_exp! + ): player_faceit_rank_history_mutation_response + + """ + update single row of the table: "player_faceit_rank_history" + """ + update_player_faceit_rank_history_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: player_faceit_rank_history_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_faceit_rank_history_set_input + pk_columns: player_faceit_rank_history_pk_columns_input! + ): player_faceit_rank_history + + """ + update multiples rows of table: "player_faceit_rank_history" + """ + update_player_faceit_rank_history_many( + """updates to execute, in order""" + updates: [player_faceit_rank_history_updates!]! + ): [player_faceit_rank_history_mutation_response] + + """ + update data of the table: "player_flashes" + """ + update_player_flashes( + """increments the numeric columns with given value of the filtered values""" + _inc: player_flashes_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_flashes_set_input + + """filter the rows which have to be updated""" + where: player_flashes_bool_exp! + ): player_flashes_mutation_response + + """ + update single row of the table: "player_flashes" + """ + update_player_flashes_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: player_flashes_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_flashes_set_input + pk_columns: player_flashes_pk_columns_input! + ): player_flashes + + """ + update multiples rows of table: "player_flashes" + """ + update_player_flashes_many( + """updates to execute, in order""" + updates: [player_flashes_updates!]! + ): [player_flashes_mutation_response] + + """ + update data of the table: "player_kills" + """ + update_player_kills( + """increments the numeric columns with given value of the filtered values""" + _inc: player_kills_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_kills_set_input + + """filter the rows which have to be updated""" + where: player_kills_bool_exp! + ): player_kills_mutation_response + + """ + update single row of the table: "player_kills" + """ + update_player_kills_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: player_kills_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_kills_set_input + pk_columns: player_kills_pk_columns_input! + ): player_kills + + """ + update data of the table: "player_kills_by_weapon" + """ + update_player_kills_by_weapon( + """increments the numeric columns with given value of the filtered values""" + _inc: player_kills_by_weapon_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_kills_by_weapon_set_input + + """filter the rows which have to be updated""" + where: player_kills_by_weapon_bool_exp! + ): player_kills_by_weapon_mutation_response + + """ + update single row of the table: "player_kills_by_weapon" + """ + update_player_kills_by_weapon_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: player_kills_by_weapon_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_kills_by_weapon_set_input + pk_columns: player_kills_by_weapon_pk_columns_input! + ): player_kills_by_weapon + + """ + update multiples rows of table: "player_kills_by_weapon" + """ + update_player_kills_by_weapon_many( + """updates to execute, in order""" + updates: [player_kills_by_weapon_updates!]! + ): [player_kills_by_weapon_mutation_response] + + """ + update multiples rows of table: "player_kills" + """ + update_player_kills_many( + """updates to execute, in order""" + updates: [player_kills_updates!]! + ): [player_kills_mutation_response] + + """ + update data of the table: "player_leaderboard_rank" + """ + update_player_leaderboard_rank( + """increments the numeric columns with given value of the filtered values""" + _inc: player_leaderboard_rank_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_leaderboard_rank_set_input + + """filter the rows which have to be updated""" + where: player_leaderboard_rank_bool_exp! + ): player_leaderboard_rank_mutation_response + + """ + update multiples rows of table: "player_leaderboard_rank" + """ + update_player_leaderboard_rank_many( + """updates to execute, in order""" + updates: [player_leaderboard_rank_updates!]! + ): [player_leaderboard_rank_mutation_response] + + """ + update data of the table: "player_match_map_stats" + """ + update_player_match_map_stats( + """increments the numeric columns with given value of the filtered values""" + _inc: player_match_map_stats_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_match_map_stats_set_input + + """filter the rows which have to be updated""" + where: player_match_map_stats_bool_exp! + ): player_match_map_stats_mutation_response + + """ + update single row of the table: "player_match_map_stats" + """ + update_player_match_map_stats_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: player_match_map_stats_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_match_map_stats_set_input + pk_columns: player_match_map_stats_pk_columns_input! + ): player_match_map_stats + + """ + update multiples rows of table: "player_match_map_stats" + """ + update_player_match_map_stats_many( + """updates to execute, in order""" + updates: [player_match_map_stats_updates!]! + ): [player_match_map_stats_mutation_response] + + """ + update data of the table: "player_objectives" + """ + update_player_objectives( + """increments the numeric columns with given value of the filtered values""" + _inc: player_objectives_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_objectives_set_input + + """filter the rows which have to be updated""" + where: player_objectives_bool_exp! + ): player_objectives_mutation_response + + """ + update single row of the table: "player_objectives" + """ + update_player_objectives_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: player_objectives_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_objectives_set_input + pk_columns: player_objectives_pk_columns_input! + ): player_objectives + + """ + update multiples rows of table: "player_objectives" + """ + update_player_objectives_many( + """updates to execute, in order""" + updates: [player_objectives_updates!]! + ): [player_objectives_mutation_response] + + """ + update data of the table: "player_premier_rank_history" + """ + update_player_premier_rank_history( + """increments the numeric columns with given value of the filtered values""" + _inc: player_premier_rank_history_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_premier_rank_history_set_input + + """filter the rows which have to be updated""" + where: player_premier_rank_history_bool_exp! + ): player_premier_rank_history_mutation_response + + """ + update single row of the table: "player_premier_rank_history" + """ + update_player_premier_rank_history_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: player_premier_rank_history_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_premier_rank_history_set_input + pk_columns: player_premier_rank_history_pk_columns_input! + ): player_premier_rank_history + + """ + update multiples rows of table: "player_premier_rank_history" + """ + update_player_premier_rank_history_many( + """updates to execute, in order""" + updates: [player_premier_rank_history_updates!]! + ): [player_premier_rank_history_mutation_response] + + """ + update data of the table: "player_sanctions" + """ + update_player_sanctions( + """increments the numeric columns with given value of the filtered values""" + _inc: player_sanctions_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_sanctions_set_input + + """filter the rows which have to be updated""" + where: player_sanctions_bool_exp! + ): player_sanctions_mutation_response + + """ + update single row of the table: "player_sanctions" + """ + update_player_sanctions_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: player_sanctions_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_sanctions_set_input + pk_columns: player_sanctions_pk_columns_input! + ): player_sanctions + + """ + update multiples rows of table: "player_sanctions" + """ + update_player_sanctions_many( + """updates to execute, in order""" + updates: [player_sanctions_updates!]! + ): [player_sanctions_mutation_response] + + """ + update data of the table: "player_season_stats" + """ + update_player_season_stats( + """increments the numeric columns with given value of the filtered values""" + _inc: player_season_stats_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_season_stats_set_input + + """filter the rows which have to be updated""" + where: player_season_stats_bool_exp! + ): player_season_stats_mutation_response + + """ + update single row of the table: "player_season_stats" + """ + update_player_season_stats_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: player_season_stats_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_season_stats_set_input + pk_columns: player_season_stats_pk_columns_input! + ): player_season_stats + + """ + update multiples rows of table: "player_season_stats" + """ + update_player_season_stats_many( + """updates to execute, in order""" + updates: [player_season_stats_updates!]! + ): [player_season_stats_mutation_response] + + """ + update data of the table: "player_stats" + """ + update_player_stats( + """increments the numeric columns with given value of the filtered values""" + _inc: player_stats_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_stats_set_input + + """filter the rows which have to be updated""" + where: player_stats_bool_exp! + ): player_stats_mutation_response + + """ + update single row of the table: "player_stats" + """ + update_player_stats_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: player_stats_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_stats_set_input + pk_columns: player_stats_pk_columns_input! + ): player_stats + + """ + update multiples rows of table: "player_stats" + """ + update_player_stats_many( + """updates to execute, in order""" + updates: [player_stats_updates!]! + ): [player_stats_mutation_response] + + """ + update data of the table: "player_steam_bot_friend" + """ + update_player_steam_bot_friend( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: player_steam_bot_friend_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: player_steam_bot_friend_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: player_steam_bot_friend_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: player_steam_bot_friend_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: player_steam_bot_friend_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: player_steam_bot_friend_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: player_steam_bot_friend_set_input + + """filter the rows which have to be updated""" + where: player_steam_bot_friend_bool_exp! + ): player_steam_bot_friend_mutation_response + + """ + update single row of the table: "player_steam_bot_friend" + """ + update_player_steam_bot_friend_by_pk( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: player_steam_bot_friend_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: player_steam_bot_friend_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: player_steam_bot_friend_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: player_steam_bot_friend_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: player_steam_bot_friend_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: player_steam_bot_friend_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: player_steam_bot_friend_set_input + pk_columns: player_steam_bot_friend_pk_columns_input! + ): player_steam_bot_friend + + """ + update multiples rows of table: "player_steam_bot_friend" + """ + update_player_steam_bot_friend_many( + """updates to execute, in order""" + updates: [player_steam_bot_friend_updates!]! + ): [player_steam_bot_friend_mutation_response] + + """ + update data of the table: "player_steam_match_auth" + """ + update_player_steam_match_auth( + """increments the numeric columns with given value of the filtered values""" + _inc: player_steam_match_auth_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_steam_match_auth_set_input + + """filter the rows which have to be updated""" + where: player_steam_match_auth_bool_exp! + ): player_steam_match_auth_mutation_response + + """ + update single row of the table: "player_steam_match_auth" + """ + update_player_steam_match_auth_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: player_steam_match_auth_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_steam_match_auth_set_input + pk_columns: player_steam_match_auth_pk_columns_input! + ): player_steam_match_auth + + """ + update multiples rows of table: "player_steam_match_auth" + """ + update_player_steam_match_auth_many( + """updates to execute, in order""" + updates: [player_steam_match_auth_updates!]! + ): [player_steam_match_auth_mutation_response] + + """ + update data of the table: "player_unused_utility" + """ + update_player_unused_utility( + """increments the numeric columns with given value of the filtered values""" + _inc: player_unused_utility_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_unused_utility_set_input + + """filter the rows which have to be updated""" + where: player_unused_utility_bool_exp! + ): player_unused_utility_mutation_response + + """ + update single row of the table: "player_unused_utility" + """ + update_player_unused_utility_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: player_unused_utility_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_unused_utility_set_input + pk_columns: player_unused_utility_pk_columns_input! + ): player_unused_utility + + """ + update multiples rows of table: "player_unused_utility" + """ + update_player_unused_utility_many( + """updates to execute, in order""" + updates: [player_unused_utility_updates!]! + ): [player_unused_utility_mutation_response] + + """ + update data of the table: "player_utility" + """ + update_player_utility( + """increments the numeric columns with given value of the filtered values""" + _inc: player_utility_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_utility_set_input + + """filter the rows which have to be updated""" + where: player_utility_bool_exp! + ): player_utility_mutation_response + + """ + update single row of the table: "player_utility" + """ + update_player_utility_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: player_utility_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_utility_set_input + pk_columns: player_utility_pk_columns_input! + ): player_utility + + """ + update multiples rows of table: "player_utility" + """ + update_player_utility_many( + """updates to execute, in order""" + updates: [player_utility_updates!]! + ): [player_utility_mutation_response] + + """ + update data of the table: "players" + """ + update_players( + """increments the numeric columns with given value of the filtered values""" + _inc: players_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: players_set_input + + """filter the rows which have to be updated""" + where: players_bool_exp! + ): players_mutation_response + + """ + update single row of the table: "players" + """ + update_players_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: players_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: players_set_input + pk_columns: players_pk_columns_input! + ): players + + """ + update multiples rows of table: "players" + """ + update_players_many( + """updates to execute, in order""" + updates: [players_updates!]! + ): [players_mutation_response] + + """ + update data of the table: "plugin_versions" + """ + update_plugin_versions( + """increments the numeric columns with given value of the filtered values""" + _inc: plugin_versions_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: plugin_versions_set_input + + """filter the rows which have to be updated""" + where: plugin_versions_bool_exp! + ): plugin_versions_mutation_response + + """ + update single row of the table: "plugin_versions" + """ + update_plugin_versions_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: plugin_versions_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: plugin_versions_set_input + pk_columns: plugin_versions_pk_columns_input! + ): plugin_versions + + """ + update multiples rows of table: "plugin_versions" + """ + update_plugin_versions_many( + """updates to execute, in order""" + updates: [plugin_versions_updates!]! + ): [plugin_versions_mutation_response] + + """ + update data of the table: "push_subscriptions" + """ + update_push_subscriptions( + """increments the numeric columns with given value of the filtered values""" + _inc: push_subscriptions_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: push_subscriptions_set_input + + """filter the rows which have to be updated""" + where: push_subscriptions_bool_exp! + ): push_subscriptions_mutation_response + + """ + update single row of the table: "push_subscriptions" + """ + update_push_subscriptions_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: push_subscriptions_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: push_subscriptions_set_input + pk_columns: push_subscriptions_pk_columns_input! + ): push_subscriptions + + """ + update multiples rows of table: "push_subscriptions" + """ + update_push_subscriptions_many( + """updates to execute, in order""" + updates: [push_subscriptions_updates!]! + ): [push_subscriptions_mutation_response] + + """ + update data of the table: "v_role_permissions" + """ + update_role_permissions( + """sets the columns of the filtered rows to the given values""" + _set: role_permissions_set_input + + """filter the rows which have to be updated""" + where: role_permissions_bool_exp! + ): role_permissions_mutation_response + + """ + update multiples rows of table: "v_role_permissions" + """ + update_role_permissions_many( + """updates to execute, in order""" + updates: [role_permissions_updates!]! + ): [role_permissions_mutation_response] + + """ + update data of the table: "seasons" + """ + update_seasons( + """increments the numeric columns with given value of the filtered values""" + _inc: seasons_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: seasons_set_input + + """filter the rows which have to be updated""" + where: seasons_bool_exp! + ): seasons_mutation_response + + """ + update single row of the table: "seasons" + """ + update_seasons_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: seasons_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: seasons_set_input + pk_columns: seasons_pk_columns_input! + ): seasons + + """ + update multiples rows of table: "seasons" + """ + update_seasons_many( + """updates to execute, in order""" + updates: [seasons_updates!]! + ): [seasons_mutation_response] + + """ + update data of the table: "server_regions" + """ + update_server_regions( + """sets the columns of the filtered rows to the given values""" + _set: server_regions_set_input + + """filter the rows which have to be updated""" + where: server_regions_bool_exp! + ): server_regions_mutation_response + + """ + update single row of the table: "server_regions" + """ + update_server_regions_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: server_regions_set_input + pk_columns: server_regions_pk_columns_input! + ): server_regions + + """ + update multiples rows of table: "server_regions" + """ + update_server_regions_many( + """updates to execute, in order""" + updates: [server_regions_updates!]! + ): [server_regions_mutation_response] + + """ + 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 + + """filter the rows which have to be updated""" + where: servers_bool_exp! + ): servers_mutation_response + + """ + 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! + ): servers + + """ + update multiples rows of table: "servers" + """ + update_servers_many( + """updates to execute, in order""" + updates: [servers_updates!]! + ): [servers_mutation_response] + + """ + update data of the table: "settings" + """ + update_settings( + """sets the columns of the filtered rows to the given values""" + _set: settings_set_input + + """filter the rows which have to be updated""" + where: settings_bool_exp! + ): settings_mutation_response + + """ + update single row of the table: "settings" + """ + update_settings_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: settings_set_input + pk_columns: settings_pk_columns_input! + ): settings + + """ + update multiples rows of table: "settings" + """ + update_settings_many( + """updates to execute, in order""" + updates: [settings_updates!]! + ): [settings_mutation_response] + + """ + update data of the table: "steam_account_claims" + """ + update_steam_account_claims( + """sets the columns of the filtered rows to the given values""" + _set: steam_account_claims_set_input + + """filter the rows which have to be updated""" + where: steam_account_claims_bool_exp! + ): steam_account_claims_mutation_response + + """ + update single row of the table: "steam_account_claims" + """ + update_steam_account_claims_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: steam_account_claims_set_input + pk_columns: steam_account_claims_pk_columns_input! + ): steam_account_claims + + """ + update multiples rows of table: "steam_account_claims" + """ + update_steam_account_claims_many( + """updates to execute, in order""" + updates: [steam_account_claims_updates!]! + ): [steam_account_claims_mutation_response] + + """ + update data of the table: "steam_accounts" + """ + update_steam_accounts( + """increments the numeric columns with given value of the filtered values""" + _inc: steam_accounts_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: steam_accounts_set_input + + """filter the rows which have to be updated""" + where: steam_accounts_bool_exp! + ): steam_accounts_mutation_response + + """ + update single row of the table: "steam_accounts" + """ + update_steam_accounts_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: steam_accounts_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: steam_accounts_set_input + pk_columns: steam_accounts_pk_columns_input! + ): steam_accounts + + """ + update multiples rows of table: "steam_accounts" + """ + update_steam_accounts_many( + """updates to execute, in order""" + updates: [steam_accounts_updates!]! + ): [steam_accounts_mutation_response] + + """ + update data of the table: "system_alerts" + """ + update_system_alerts( + """increments the numeric columns with given value of the filtered values""" + _inc: system_alerts_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: system_alerts_set_input + + """filter the rows which have to be updated""" + where: system_alerts_bool_exp! + ): system_alerts_mutation_response + + """ + update single row of the table: "system_alerts" + """ + update_system_alerts_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: system_alerts_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: system_alerts_set_input + pk_columns: system_alerts_pk_columns_input! + ): system_alerts + + """ + update multiples rows of table: "system_alerts" + """ + update_system_alerts_many( + """updates to execute, in order""" + updates: [system_alerts_updates!]! + ): [system_alerts_mutation_response] + + """ + update data of the table: "team_invites" + """ + update_team_invites( + """increments the numeric columns with given value of the filtered values""" + _inc: team_invites_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: team_invites_set_input + + """filter the rows which have to be updated""" + where: team_invites_bool_exp! + ): team_invites_mutation_response + + """ + update single row of the table: "team_invites" + """ + update_team_invites_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: team_invites_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: team_invites_set_input + pk_columns: team_invites_pk_columns_input! + ): team_invites + + """ + update multiples rows of table: "team_invites" + """ + update_team_invites_many( + """updates to execute, in order""" + updates: [team_invites_updates!]! + ): [team_invites_mutation_response] + + """ + update data of the table: "team_roster" + """ + update_team_roster( + """increments the numeric columns with given value of the filtered values""" + _inc: team_roster_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: team_roster_set_input + + """filter the rows which have to be updated""" + where: team_roster_bool_exp! + ): team_roster_mutation_response + + """ + update single row of the table: "team_roster" + """ + update_team_roster_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: team_roster_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: team_roster_set_input + pk_columns: team_roster_pk_columns_input! + ): team_roster + + """ + update multiples rows of table: "team_roster" + """ + update_team_roster_many( + """updates to execute, in order""" + updates: [team_roster_updates!]! + ): [team_roster_mutation_response] + + """ + update data of the table: "team_scrim_alerts" + """ + update_team_scrim_alerts( + """increments the numeric columns with given value of the filtered values""" + _inc: team_scrim_alerts_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: team_scrim_alerts_set_input + + """filter the rows which have to be updated""" + where: team_scrim_alerts_bool_exp! + ): team_scrim_alerts_mutation_response + + """ + update single row of the table: "team_scrim_alerts" + """ + update_team_scrim_alerts_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: team_scrim_alerts_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: team_scrim_alerts_set_input + pk_columns: team_scrim_alerts_pk_columns_input! + ): team_scrim_alerts + + """ + update multiples rows of table: "team_scrim_alerts" + """ + update_team_scrim_alerts_many( + """updates to execute, in order""" + updates: [team_scrim_alerts_updates!]! + ): [team_scrim_alerts_mutation_response] + + """ + update data of the table: "team_scrim_availability" + """ + update_team_scrim_availability( + """sets the columns of the filtered rows to the given values""" + _set: team_scrim_availability_set_input + + """filter the rows which have to be updated""" + where: team_scrim_availability_bool_exp! + ): team_scrim_availability_mutation_response + + """ + update single row of the table: "team_scrim_availability" + """ + update_team_scrim_availability_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: team_scrim_availability_set_input + pk_columns: team_scrim_availability_pk_columns_input! + ): team_scrim_availability + + """ + update multiples rows of table: "team_scrim_availability" + """ + update_team_scrim_availability_many( + """updates to execute, in order""" + updates: [team_scrim_availability_updates!]! + ): [team_scrim_availability_mutation_response] + + """ + update data of the table: "team_scrim_request_proposals" + """ + update_team_scrim_request_proposals( + """increments the numeric columns with given value of the filtered values""" + _inc: team_scrim_request_proposals_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: team_scrim_request_proposals_set_input + + """filter the rows which have to be updated""" + where: team_scrim_request_proposals_bool_exp! + ): team_scrim_request_proposals_mutation_response + + """ + update single row of the table: "team_scrim_request_proposals" + """ + update_team_scrim_request_proposals_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: team_scrim_request_proposals_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: team_scrim_request_proposals_set_input + pk_columns: team_scrim_request_proposals_pk_columns_input! + ): team_scrim_request_proposals + + """ + update multiples rows of table: "team_scrim_request_proposals" + """ + update_team_scrim_request_proposals_many( + """updates to execute, in order""" + updates: [team_scrim_request_proposals_updates!]! + ): [team_scrim_request_proposals_mutation_response] + + """ + update data of the table: "team_scrim_requests" + """ + update_team_scrim_requests( + """increments the numeric columns with given value of the filtered values""" + _inc: team_scrim_requests_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: team_scrim_requests_set_input + + """filter the rows which have to be updated""" + where: team_scrim_requests_bool_exp! + ): team_scrim_requests_mutation_response + + """ + update single row of the table: "team_scrim_requests" + """ + update_team_scrim_requests_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: team_scrim_requests_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: team_scrim_requests_set_input + pk_columns: team_scrim_requests_pk_columns_input! + ): team_scrim_requests + + """ + update multiples rows of table: "team_scrim_requests" + """ + update_team_scrim_requests_many( + """updates to execute, in order""" + updates: [team_scrim_requests_updates!]! + ): [team_scrim_requests_mutation_response] + + """ + update data of the table: "team_scrim_settings" + """ + update_team_scrim_settings( + """increments the numeric columns with given value of the filtered values""" + _inc: team_scrim_settings_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: team_scrim_settings_set_input + + """filter the rows which have to be updated""" + where: team_scrim_settings_bool_exp! + ): team_scrim_settings_mutation_response + + """ + update single row of the table: "team_scrim_settings" + """ + update_team_scrim_settings_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: team_scrim_settings_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: team_scrim_settings_set_input + pk_columns: team_scrim_settings_pk_columns_input! + ): team_scrim_settings + + """ + update multiples rows of table: "team_scrim_settings" + """ + update_team_scrim_settings_many( + """updates to execute, in order""" + updates: [team_scrim_settings_updates!]! + ): [team_scrim_settings_mutation_response] + + """ + update data of the table: "team_suggestions" + """ + update_team_suggestions( + """increments the numeric columns with given value of the filtered values""" + _inc: team_suggestions_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: team_suggestions_set_input + + """filter the rows which have to be updated""" + where: team_suggestions_bool_exp! + ): team_suggestions_mutation_response + + """ + update single row of the table: "team_suggestions" + """ + update_team_suggestions_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: team_suggestions_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: team_suggestions_set_input + pk_columns: team_suggestions_pk_columns_input! + ): team_suggestions + + """ + update multiples rows of table: "team_suggestions" + """ + update_team_suggestions_many( + """updates to execute, in order""" + updates: [team_suggestions_updates!]! + ): [team_suggestions_mutation_response] + + """ + update data of the table: "teams" + """ + update_teams( + """increments the numeric columns with given value of the filtered values""" + _inc: teams_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: teams_set_input + + """filter the rows which have to be updated""" + where: teams_bool_exp! + ): teams_mutation_response + + """ + update single row of the table: "teams" + """ + update_teams_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: teams_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: teams_set_input + pk_columns: teams_pk_columns_input! + ): teams + + """ + update multiples rows of table: "teams" + """ + update_teams_many( + """updates to execute, in order""" + updates: [teams_updates!]! + ): [teams_mutation_response] + + """ + update data of the table: "tournament_awards" + """ + update_tournament_awards( + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_awards_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_awards_set_input + + """filter the rows which have to be updated""" + where: tournament_awards_bool_exp! + ): tournament_awards_mutation_response + + """ + update single row of the table: "tournament_awards" + """ + update_tournament_awards_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_awards_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_awards_set_input + pk_columns: tournament_awards_pk_columns_input! + ): tournament_awards + + """ + update multiples rows of table: "tournament_awards" + """ + update_tournament_awards_many( + """updates to execute, in order""" + updates: [tournament_awards_updates!]! + ): [tournament_awards_mutation_response] + + """ + update data of the table: "tournament_brackets" + """ + update_tournament_brackets( + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_brackets_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_brackets_set_input + + """filter the rows which have to be updated""" + where: tournament_brackets_bool_exp! + ): tournament_brackets_mutation_response + + """ + update single row of the table: "tournament_brackets" + """ + update_tournament_brackets_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_brackets_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_brackets_set_input + pk_columns: tournament_brackets_pk_columns_input! + ): tournament_brackets + + """ + update multiples rows of table: "tournament_brackets" + """ + update_tournament_brackets_many( + """updates to execute, in order""" + updates: [tournament_brackets_updates!]! + ): [tournament_brackets_mutation_response] + + """ + update data of the table: "tournament_categories" + """ + update_tournament_categories( + """sets the columns of the filtered rows to the given values""" + _set: tournament_categories_set_input + + """filter the rows which have to be updated""" + where: tournament_categories_bool_exp! + ): tournament_categories_mutation_response + + """ + update single row of the table: "tournament_categories" + """ + update_tournament_categories_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: tournament_categories_set_input + pk_columns: tournament_categories_pk_columns_input! + ): tournament_categories + + """ + update multiples rows of table: "tournament_categories" + """ + update_tournament_categories_many( + """updates to execute, in order""" + updates: [tournament_categories_updates!]! + ): [tournament_categories_mutation_response] + + """ + update data of the table: "tournament_free_agents" + """ + update_tournament_free_agents( + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_free_agents_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_free_agents_set_input + + """filter the rows which have to be updated""" + where: tournament_free_agents_bool_exp! + ): tournament_free_agents_mutation_response + + """ + update single row of the table: "tournament_free_agents" + """ + update_tournament_free_agents_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_free_agents_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_free_agents_set_input + pk_columns: tournament_free_agents_pk_columns_input! + ): tournament_free_agents + + """ + update multiples rows of table: "tournament_free_agents" + """ + update_tournament_free_agents_many( + """updates to execute, in order""" + updates: [tournament_free_agents_updates!]! + ): [tournament_free_agents_mutation_response] + + """ + update data of the table: "tournament_invite_code_uses" + """ + update_tournament_invite_code_uses( + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_invite_code_uses_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_invite_code_uses_set_input + + """filter the rows which have to be updated""" + where: tournament_invite_code_uses_bool_exp! + ): tournament_invite_code_uses_mutation_response + + """ + update single row of the table: "tournament_invite_code_uses" + """ + update_tournament_invite_code_uses_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_invite_code_uses_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_invite_code_uses_set_input + pk_columns: tournament_invite_code_uses_pk_columns_input! + ): tournament_invite_code_uses + + """ + update multiples rows of table: "tournament_invite_code_uses" + """ + update_tournament_invite_code_uses_many( + """updates to execute, in order""" + updates: [tournament_invite_code_uses_updates!]! + ): [tournament_invite_code_uses_mutation_response] + + """ + update data of the table: "tournament_invite_codes" + """ + update_tournament_invite_codes( + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_invite_codes_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_invite_codes_set_input + + """filter the rows which have to be updated""" + where: tournament_invite_codes_bool_exp! + ): tournament_invite_codes_mutation_response + + """ + update single row of the table: "tournament_invite_codes" + """ + update_tournament_invite_codes_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_invite_codes_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_invite_codes_set_input + pk_columns: tournament_invite_codes_pk_columns_input! + ): tournament_invite_codes + + """ + update multiples rows of table: "tournament_invite_codes" + """ + update_tournament_invite_codes_many( + """updates to execute, in order""" + updates: [tournament_invite_codes_updates!]! + ): [tournament_invite_codes_mutation_response] + + """ + update data of the table: "tournament_invites" + """ + update_tournament_invites( + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_invites_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_invites_set_input + + """filter the rows which have to be updated""" + where: tournament_invites_bool_exp! + ): tournament_invites_mutation_response + + """ + update single row of the table: "tournament_invites" + """ + update_tournament_invites_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_invites_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_invites_set_input + pk_columns: tournament_invites_pk_columns_input! + ): tournament_invites + + """ + update multiples rows of table: "tournament_invites" + """ + update_tournament_invites_many( + """updates to execute, in order""" + updates: [tournament_invites_updates!]! + ): [tournament_invites_mutation_response] + + """ + update data of the table: "tournament_leaderboard_entries" + """ + update_tournament_leaderboard_entries( + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_leaderboard_entries_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_leaderboard_entries_set_input + + """filter the rows which have to be updated""" + where: tournament_leaderboard_entries_bool_exp! + ): tournament_leaderboard_entries_mutation_response + + """ + update multiples rows of table: "tournament_leaderboard_entries" + """ + update_tournament_leaderboard_entries_many( + """updates to execute, in order""" + updates: [tournament_leaderboard_entries_updates!]! + ): [tournament_leaderboard_entries_mutation_response] + + """ + update data of the table: "tournament_no_shows" + """ + update_tournament_no_shows( + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_no_shows_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_no_shows_set_input + + """filter the rows which have to be updated""" + where: tournament_no_shows_bool_exp! + ): tournament_no_shows_mutation_response + + """ + update single row of the table: "tournament_no_shows" + """ + update_tournament_no_shows_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_no_shows_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_no_shows_set_input + pk_columns: tournament_no_shows_pk_columns_input! + ): tournament_no_shows + + """ + update multiples rows of table: "tournament_no_shows" + """ + update_tournament_no_shows_many( + """updates to execute, in order""" + updates: [tournament_no_shows_updates!]! + ): [tournament_no_shows_mutation_response] + + """ + update data of the table: "tournament_organizer_teams" + """ + update_tournament_organizer_teams( + """sets the columns of the filtered rows to the given values""" + _set: tournament_organizer_teams_set_input + + """filter the rows which have to be updated""" + where: tournament_organizer_teams_bool_exp! + ): tournament_organizer_teams_mutation_response + + """ + update single row of the table: "tournament_organizer_teams" + """ + update_tournament_organizer_teams_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: tournament_organizer_teams_set_input + pk_columns: tournament_organizer_teams_pk_columns_input! + ): tournament_organizer_teams + + """ + update multiples rows of table: "tournament_organizer_teams" + """ + update_tournament_organizer_teams_many( + """updates to execute, in order""" + updates: [tournament_organizer_teams_updates!]! + ): [tournament_organizer_teams_mutation_response] + + """ + update data of the table: "tournament_organizers" + """ + update_tournament_organizers( + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_organizers_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_organizers_set_input + + """filter the rows which have to be updated""" + where: tournament_organizers_bool_exp! + ): tournament_organizers_mutation_response + + """ + update single row of the table: "tournament_organizers" + """ + update_tournament_organizers_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_organizers_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_organizers_set_input + pk_columns: tournament_organizers_pk_columns_input! + ): tournament_organizers + + """ + update multiples rows of table: "tournament_organizers" + """ + update_tournament_organizers_many( + """updates to execute, in order""" + updates: [tournament_organizers_updates!]! + ): [tournament_organizers_mutation_response] + + """ + update data of the table: "tournament_prizes" + """ + update_tournament_prizes( + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_prizes_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_prizes_set_input + + """filter the rows which have to be updated""" + where: tournament_prizes_bool_exp! + ): tournament_prizes_mutation_response + + """ + update single row of the table: "tournament_prizes" + """ + update_tournament_prizes_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_prizes_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_prizes_set_input + pk_columns: tournament_prizes_pk_columns_input! + ): tournament_prizes + + """ + update multiples rows of table: "tournament_prizes" + """ + update_tournament_prizes_many( + """updates to execute, in order""" + updates: [tournament_prizes_updates!]! + ): [tournament_prizes_mutation_response] + + """ + update data of the table: "tournament_registration_unlocks" + """ + update_tournament_registration_unlocks( + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_registration_unlocks_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_registration_unlocks_set_input + + """filter the rows which have to be updated""" + where: tournament_registration_unlocks_bool_exp! + ): tournament_registration_unlocks_mutation_response + + """ + update multiples rows of table: "tournament_registration_unlocks" + """ + update_tournament_registration_unlocks_many( + """updates to execute, in order""" + updates: [tournament_registration_unlocks_updates!]! + ): [tournament_registration_unlocks_mutation_response] + + """ + update data of the table: "tournament_stage_windows" + """ + update_tournament_stage_windows( + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_stage_windows_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_stage_windows_set_input + + """filter the rows which have to be updated""" + where: tournament_stage_windows_bool_exp! + ): tournament_stage_windows_mutation_response + + """ + update single row of the table: "tournament_stage_windows" + """ + update_tournament_stage_windows_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_stage_windows_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_stage_windows_set_input + pk_columns: tournament_stage_windows_pk_columns_input! + ): tournament_stage_windows + + """ + update multiples rows of table: "tournament_stage_windows" + """ + update_tournament_stage_windows_many( + """updates to execute, in order""" + updates: [tournament_stage_windows_updates!]! + ): [tournament_stage_windows_mutation_response] + + """ + update data of the table: "tournament_stages" + """ + update_tournament_stages( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: tournament_stages_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: tournament_stages_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: tournament_stages_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: tournament_stages_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_stages_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: tournament_stages_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_stages_set_input + + """filter the rows which have to be updated""" + where: tournament_stages_bool_exp! + ): tournament_stages_mutation_response + + """ + update single row of the table: "tournament_stages" + """ + update_tournament_stages_by_pk( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: tournament_stages_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: tournament_stages_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: tournament_stages_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: tournament_stages_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_stages_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: tournament_stages_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_stages_set_input + pk_columns: tournament_stages_pk_columns_input! + ): tournament_stages + + """ + update multiples rows of table: "tournament_stages" + """ + update_tournament_stages_many( + """updates to execute, in order""" + updates: [tournament_stages_updates!]! + ): [tournament_stages_mutation_response] + + """ + update data of the table: "tournament_team_invites" + """ + update_tournament_team_invites( + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_team_invites_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_team_invites_set_input + + """filter the rows which have to be updated""" + where: tournament_team_invites_bool_exp! + ): tournament_team_invites_mutation_response + + """ + update single row of the table: "tournament_team_invites" + """ + update_tournament_team_invites_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_team_invites_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_team_invites_set_input + pk_columns: tournament_team_invites_pk_columns_input! + ): tournament_team_invites + + """ + update multiples rows of table: "tournament_team_invites" + """ + update_tournament_team_invites_many( + """updates to execute, in order""" + updates: [tournament_team_invites_updates!]! + ): [tournament_team_invites_mutation_response] + + """ + update data of the table: "tournament_team_roster" + """ + update_tournament_team_roster( + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_team_roster_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_team_roster_set_input + + """filter the rows which have to be updated""" + where: tournament_team_roster_bool_exp! + ): tournament_team_roster_mutation_response + + """ + update single row of the table: "tournament_team_roster" + """ + update_tournament_team_roster_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_team_roster_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_team_roster_set_input + pk_columns: tournament_team_roster_pk_columns_input! + ): tournament_team_roster + + """ + update multiples rows of table: "tournament_team_roster" + """ + update_tournament_team_roster_many( + """updates to execute, in order""" + updates: [tournament_team_roster_updates!]! + ): [tournament_team_roster_mutation_response] + + """ + update data of the table: "tournament_teams" + """ + update_tournament_teams( + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_teams_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_teams_set_input + + """filter the rows which have to be updated""" + where: tournament_teams_bool_exp! + ): tournament_teams_mutation_response + + """ + update single row of the table: "tournament_teams" + """ + update_tournament_teams_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_teams_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_teams_set_input + pk_columns: tournament_teams_pk_columns_input! + ): tournament_teams + + """ + update multiples rows of table: "tournament_teams" + """ + update_tournament_teams_many( + """updates to execute, in order""" + updates: [tournament_teams_updates!]! + ): [tournament_teams_mutation_response] + + """ + update data of the table: "tournaments" + """ + update_tournaments( + """increments the numeric columns with given value of the filtered values""" + _inc: tournaments_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournaments_set_input + + """filter the rows which have to be updated""" + where: tournaments_bool_exp! + ): tournaments_mutation_response + + """ + update single row of the table: "tournaments" + """ + update_tournaments_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: tournaments_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournaments_set_input + pk_columns: tournaments_pk_columns_input! + ): tournaments + + """ + update multiples rows of table: "tournaments" + """ + update_tournaments_many( + """updates to execute, in order""" + updates: [tournaments_updates!]! + ): [tournaments_mutation_response] + + """ + update data of the table: "utility_collection_items" + """ + update_utility_collection_items( + """increments the numeric columns with given value of the filtered values""" + _inc: utility_collection_items_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_collection_items_set_input + + """filter the rows which have to be updated""" + where: utility_collection_items_bool_exp! + ): utility_collection_items_mutation_response + + """ + update single row of the table: "utility_collection_items" + """ + update_utility_collection_items_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: utility_collection_items_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_collection_items_set_input + pk_columns: utility_collection_items_pk_columns_input! + ): utility_collection_items + + """ + update multiples rows of table: "utility_collection_items" + """ + update_utility_collection_items_many( + """updates to execute, in order""" + updates: [utility_collection_items_updates!]! + ): [utility_collection_items_mutation_response] + + """ + update data of the table: "utility_collections" + """ + update_utility_collections( + """increments the numeric columns with given value of the filtered values""" + _inc: utility_collections_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_collections_set_input + + """filter the rows which have to be updated""" + where: utility_collections_bool_exp! + ): utility_collections_mutation_response + + """ + update single row of the table: "utility_collections" + """ + update_utility_collections_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: utility_collections_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_collections_set_input + pk_columns: utility_collections_pk_columns_input! + ): utility_collections + + """ + update multiples rows of table: "utility_collections" + """ + update_utility_collections_many( + """updates to execute, in order""" + updates: [utility_collections_updates!]! + ): [utility_collections_mutation_response] + + """ + update data of the table: "utility_demo_mines" + """ + update_utility_demo_mines( + """increments the numeric columns with given value of the filtered values""" + _inc: utility_demo_mines_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_demo_mines_set_input + + """filter the rows which have to be updated""" + where: utility_demo_mines_bool_exp! + ): utility_demo_mines_mutation_response + + """ + update single row of the table: "utility_demo_mines" + """ + update_utility_demo_mines_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: utility_demo_mines_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_demo_mines_set_input + pk_columns: utility_demo_mines_pk_columns_input! + ): utility_demo_mines + + """ + update multiples rows of table: "utility_demo_mines" + """ + update_utility_demo_mines_many( + """updates to execute, in order""" + updates: [utility_demo_mines_updates!]! + ): [utility_demo_mines_mutation_response] + + """ + update data of the table: "utility_demo_throws" + """ + update_utility_demo_throws( + """increments the numeric columns with given value of the filtered values""" + _inc: utility_demo_throws_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_demo_throws_set_input + + """filter the rows which have to be updated""" + where: utility_demo_throws_bool_exp! + ): utility_demo_throws_mutation_response + + """ + update single row of the table: "utility_demo_throws" + """ + update_utility_demo_throws_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: utility_demo_throws_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_demo_throws_set_input + pk_columns: utility_demo_throws_pk_columns_input! + ): utility_demo_throws + + """ + update multiples rows of table: "utility_demo_throws" + """ + update_utility_demo_throws_many( + """updates to execute, in order""" + updates: [utility_demo_throws_updates!]! + ): [utility_demo_throws_mutation_response] + + """ + update data of the table: "utility_drift_results" + """ + update_utility_drift_results( + """increments the numeric columns with given value of the filtered values""" + _inc: utility_drift_results_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_drift_results_set_input + + """filter the rows which have to be updated""" + where: utility_drift_results_bool_exp! + ): utility_drift_results_mutation_response + + """ + update single row of the table: "utility_drift_results" + """ + update_utility_drift_results_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: utility_drift_results_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_drift_results_set_input + pk_columns: utility_drift_results_pk_columns_input! + ): utility_drift_results + + """ + update multiples rows of table: "utility_drift_results" + """ + update_utility_drift_results_many( + """updates to execute, in order""" + updates: [utility_drift_results_updates!]! + ): [utility_drift_results_mutation_response] + + """ + update data of the table: "utility_drift_scans" + """ + update_utility_drift_scans( + """increments the numeric columns with given value of the filtered values""" + _inc: utility_drift_scans_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_drift_scans_set_input + + """filter the rows which have to be updated""" + where: utility_drift_scans_bool_exp! + ): utility_drift_scans_mutation_response + + """ + update single row of the table: "utility_drift_scans" + """ + update_utility_drift_scans_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: utility_drift_scans_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_drift_scans_set_input + pk_columns: utility_drift_scans_pk_columns_input! + ): utility_drift_scans + + """ + update multiples rows of table: "utility_drift_scans" + """ + update_utility_drift_scans_many( + """updates to execute, in order""" + updates: [utility_drift_scans_updates!]! + ): [utility_drift_scans_mutation_response] + + """ + update data of the table: "utility_lineup_favorites" + """ + update_utility_lineup_favorites( + """increments the numeric columns with given value of the filtered values""" + _inc: utility_lineup_favorites_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_lineup_favorites_set_input + + """filter the rows which have to be updated""" + where: utility_lineup_favorites_bool_exp! + ): utility_lineup_favorites_mutation_response + + """ + update single row of the table: "utility_lineup_favorites" + """ + update_utility_lineup_favorites_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: utility_lineup_favorites_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_lineup_favorites_set_input + pk_columns: utility_lineup_favorites_pk_columns_input! + ): utility_lineup_favorites + + """ + update multiples rows of table: "utility_lineup_favorites" + """ + update_utility_lineup_favorites_many( + """updates to execute, in order""" + updates: [utility_lineup_favorites_updates!]! + ): [utility_lineup_favorites_mutation_response] + + """ + update data of the table: "utility_lineup_progress" + """ + update_utility_lineup_progress( + """increments the numeric columns with given value of the filtered values""" + _inc: utility_lineup_progress_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_lineup_progress_set_input + + """filter the rows which have to be updated""" + where: utility_lineup_progress_bool_exp! + ): utility_lineup_progress_mutation_response + + """ + update single row of the table: "utility_lineup_progress" + """ + update_utility_lineup_progress_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: utility_lineup_progress_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_lineup_progress_set_input + pk_columns: utility_lineup_progress_pk_columns_input! + ): utility_lineup_progress + + """ + update multiples rows of table: "utility_lineup_progress" + """ + update_utility_lineup_progress_many( + """updates to execute, in order""" + updates: [utility_lineup_progress_updates!]! + ): [utility_lineup_progress_mutation_response] + + """ + update data of the table: "utility_lineup_renders" + """ + update_utility_lineup_renders( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: utility_lineup_renders_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: utility_lineup_renders_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: utility_lineup_renders_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: utility_lineup_renders_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: utility_lineup_renders_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: utility_lineup_renders_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_lineup_renders_set_input + + """filter the rows which have to be updated""" + where: utility_lineup_renders_bool_exp! + ): utility_lineup_renders_mutation_response + + """ + update single row of the table: "utility_lineup_renders" + """ + update_utility_lineup_renders_by_pk( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: utility_lineup_renders_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: utility_lineup_renders_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: utility_lineup_renders_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: utility_lineup_renders_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: utility_lineup_renders_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: utility_lineup_renders_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_lineup_renders_set_input + pk_columns: utility_lineup_renders_pk_columns_input! + ): utility_lineup_renders + + """ + update multiples rows of table: "utility_lineup_renders" + """ + update_utility_lineup_renders_many( + """updates to execute, in order""" + updates: [utility_lineup_renders_updates!]! + ): [utility_lineup_renders_mutation_response] + + """ + update data of the table: "utility_lineup_repairs" + """ + update_utility_lineup_repairs( + """increments the numeric columns with given value of the filtered values""" + _inc: utility_lineup_repairs_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_lineup_repairs_set_input + + """filter the rows which have to be updated""" + where: utility_lineup_repairs_bool_exp! + ): utility_lineup_repairs_mutation_response + + """ + update single row of the table: "utility_lineup_repairs" + """ + update_utility_lineup_repairs_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: utility_lineup_repairs_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_lineup_repairs_set_input + pk_columns: utility_lineup_repairs_pk_columns_input! + ): utility_lineup_repairs + + """ + update multiples rows of table: "utility_lineup_repairs" + """ + update_utility_lineup_repairs_many( + """updates to execute, in order""" + updates: [utility_lineup_repairs_updates!]! + ): [utility_lineup_repairs_mutation_response] + + """ + update data of the table: "utility_lineup_votes" + """ + update_utility_lineup_votes( + """increments the numeric columns with given value of the filtered values""" + _inc: utility_lineup_votes_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_lineup_votes_set_input + + """filter the rows which have to be updated""" + where: utility_lineup_votes_bool_exp! + ): utility_lineup_votes_mutation_response + + """ + update single row of the table: "utility_lineup_votes" + """ + update_utility_lineup_votes_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: utility_lineup_votes_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_lineup_votes_set_input + pk_columns: utility_lineup_votes_pk_columns_input! + ): utility_lineup_votes + + """ + update multiples rows of table: "utility_lineup_votes" + """ + update_utility_lineup_votes_many( + """updates to execute, in order""" + updates: [utility_lineup_votes_updates!]! + ): [utility_lineup_votes_mutation_response] + + """ + update data of the table: "utility_lineups" + """ + update_utility_lineups( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: utility_lineups_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: utility_lineups_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: utility_lineups_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: utility_lineups_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: utility_lineups_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: utility_lineups_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_lineups_set_input + + """filter the rows which have to be updated""" + where: utility_lineups_bool_exp! + ): utility_lineups_mutation_response + + """ + update single row of the table: "utility_lineups" + """ + update_utility_lineups_by_pk( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: utility_lineups_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: utility_lineups_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: utility_lineups_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: utility_lineups_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: utility_lineups_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: utility_lineups_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_lineups_set_input + pk_columns: utility_lineups_pk_columns_input! + ): utility_lineups + + """ + update multiples rows of table: "utility_lineups" + """ + update_utility_lineups_many( + """updates to execute, in order""" + updates: [utility_lineups_updates!]! + ): [utility_lineups_mutation_response] + + """ + update data of the table: "utility_meta_lineups" + """ + update_utility_meta_lineups( + """increments the numeric columns with given value of the filtered values""" + _inc: utility_meta_lineups_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_meta_lineups_set_input + + """filter the rows which have to be updated""" + where: utility_meta_lineups_bool_exp! + ): utility_meta_lineups_mutation_response + + """ + update single row of the table: "utility_meta_lineups" + """ + update_utility_meta_lineups_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: utility_meta_lineups_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_meta_lineups_set_input + pk_columns: utility_meta_lineups_pk_columns_input! + ): utility_meta_lineups + + """ + update multiples rows of table: "utility_meta_lineups" + """ + update_utility_meta_lineups_many( + """updates to execute, in order""" + updates: [utility_meta_lineups_updates!]! + ): [utility_meta_lineups_mutation_response] + + """ + update data of the table: "utility_playbook_steps" + """ + update_utility_playbook_steps( + """increments the numeric columns with given value of the filtered values""" + _inc: utility_playbook_steps_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_playbook_steps_set_input + + """filter the rows which have to be updated""" + where: utility_playbook_steps_bool_exp! + ): utility_playbook_steps_mutation_response + + """ + update single row of the table: "utility_playbook_steps" + """ + update_utility_playbook_steps_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: utility_playbook_steps_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_playbook_steps_set_input + pk_columns: utility_playbook_steps_pk_columns_input! + ): utility_playbook_steps + + """ + update multiples rows of table: "utility_playbook_steps" + """ + update_utility_playbook_steps_many( + """updates to execute, in order""" + updates: [utility_playbook_steps_updates!]! + ): [utility_playbook_steps_mutation_response] + + """ + update data of the table: "utility_playbooks" + """ + update_utility_playbooks( + """increments the numeric columns with given value of the filtered values""" + _inc: utility_playbooks_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_playbooks_set_input + + """filter the rows which have to be updated""" + where: utility_playbooks_bool_exp! + ): utility_playbooks_mutation_response + + """ + update single row of the table: "utility_playbooks" + """ + update_utility_playbooks_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: utility_playbooks_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_playbooks_set_input + pk_columns: utility_playbooks_pk_columns_input! + ): utility_playbooks + + """ + update multiples rows of table: "utility_playbooks" + """ + update_utility_playbooks_many( + """updates to execute, in order""" + updates: [utility_playbooks_updates!]! + ): [utility_playbooks_mutation_response] + + """ + update data of the table: "utility_practice_invites" + """ + update_utility_practice_invites( + """increments the numeric columns with given value of the filtered values""" + _inc: utility_practice_invites_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_practice_invites_set_input + + """filter the rows which have to be updated""" + where: utility_practice_invites_bool_exp! + ): utility_practice_invites_mutation_response + + """ + update single row of the table: "utility_practice_invites" + """ + update_utility_practice_invites_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: utility_practice_invites_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_practice_invites_set_input + pk_columns: utility_practice_invites_pk_columns_input! + ): utility_practice_invites + + """ + update multiples rows of table: "utility_practice_invites" + """ + update_utility_practice_invites_many( + """updates to execute, in order""" + updates: [utility_practice_invites_updates!]! + ): [utility_practice_invites_mutation_response] + + """ + update data of the table: "utility_practice_sessions" + """ + update_utility_practice_sessions( + """increments the numeric columns with given value of the filtered values""" + _inc: utility_practice_sessions_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_practice_sessions_set_input + + """filter the rows which have to be updated""" + where: utility_practice_sessions_bool_exp! + ): utility_practice_sessions_mutation_response + + """ + update single row of the table: "utility_practice_sessions" + """ + update_utility_practice_sessions_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: utility_practice_sessions_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_practice_sessions_set_input + pk_columns: utility_practice_sessions_pk_columns_input! + ): utility_practice_sessions + + """ + update multiples rows of table: "utility_practice_sessions" + """ + update_utility_practice_sessions_many( + """updates to execute, in order""" + updates: [utility_practice_sessions_updates!]! + ): [utility_practice_sessions_mutation_response] + + """ + update data of the table: "v_match_captains" + """ + update_v_match_captains( + """increments the numeric columns with given value of the filtered values""" + _inc: v_match_captains_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: v_match_captains_set_input + + """filter the rows which have to be updated""" + where: v_match_captains_bool_exp! + ): v_match_captains_mutation_response + + """ + update multiples rows of table: "v_match_captains" + """ + update_v_match_captains_many( + """updates to execute, in order""" + updates: [v_match_captains_updates!]! + ): [v_match_captains_mutation_response] + + """ + update data of the table: "v_match_map_backup_rounds" + """ + update_v_match_map_backup_rounds( + """increments the numeric columns with given value of the filtered values""" + _inc: v_match_map_backup_rounds_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: v_match_map_backup_rounds_set_input + + """filter the rows which have to be updated""" + where: v_match_map_backup_rounds_bool_exp! + ): v_match_map_backup_rounds_mutation_response + + """ + update multiples rows of table: "v_match_map_backup_rounds" + """ + update_v_match_map_backup_rounds_many( + """updates to execute, in order""" + updates: [v_match_map_backup_rounds_updates!]! + ): [v_match_map_backup_rounds_mutation_response] + + """ + update data of the table: "v_player_match_map_hltv" + """ + update_v_player_match_map_hltv( + """increments the numeric columns with given value of the filtered values""" + _inc: v_player_match_map_hltv_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: v_player_match_map_hltv_set_input + + """filter the rows which have to be updated""" + where: v_player_match_map_hltv_bool_exp! + ): v_player_match_map_hltv_mutation_response + + """ + update multiples rows of table: "v_player_match_map_hltv" + """ + update_v_player_match_map_hltv_many( + """updates to execute, in order""" + updates: [v_player_match_map_hltv_updates!]! + ): [v_player_match_map_hltv_mutation_response] + + """ + update data of the table: "v_pool_maps" + """ + update_v_pool_maps( + """sets the columns of the filtered rows to the given values""" + _set: v_pool_maps_set_input + + """filter the rows which have to be updated""" + where: v_pool_maps_bool_exp! + ): v_pool_maps_mutation_response + + """ + update multiples rows of table: "v_pool_maps" + """ + update_v_pool_maps_many( + """updates to execute, in order""" + updates: [v_pool_maps_updates!]! + ): [v_pool_maps_mutation_response] + + """ + update data of the table: "v_team_stage_results" + """ + update_v_team_stage_results( + """increments the numeric columns with given value of the filtered values""" + _inc: v_team_stage_results_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: v_team_stage_results_set_input + + """filter the rows which have to be updated""" + where: v_team_stage_results_bool_exp! + ): v_team_stage_results_mutation_response + + """ + update single row of the table: "v_team_stage_results" + """ + update_v_team_stage_results_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: v_team_stage_results_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: v_team_stage_results_set_input + pk_columns: v_team_stage_results_pk_columns_input! + ): v_team_stage_results + + """ + update multiples rows of table: "v_team_stage_results" + """ + update_v_team_stage_results_many( + """updates to execute, in order""" + updates: [v_team_stage_results_updates!]! + ): [v_team_stage_results_mutation_response] + + """ + Validate CS2 gamedata signatures/offsets on a node (5stack.gg test instance only) + """ + validateGamedata(game_server_node_id: uuid!): SuccessOutput + + """ + Spawn a per-user game-streamer pod to play back a finished match's demo + """ + watchDemo(match_map_demo_id: uuid, match_map_id: uuid!): WatchDemoOutput + + """Write content to file on game server""" + writeServerFile(content: String!, file_path: String!, node_id: String!, server_id: String): SuccessOutput +} + +""" +columns and relationships of "v_my_friends" +""" +type my_friends { + avatar_url: String + country: String + created_at: timestamptz + custom_avatar_url: String + days_since_last_ban: Int + discord_id: String + elo( + """JSON select path""" + path: String + ): jsonb + faceit_elo: Int + faceit_nickname: String + faceit_player_id: String + faceit_skill_level: Int + faceit_updated_at: timestamptz + faceit_url: String + friend_steam_id: bigint + game_ban_count: Int + invited_by_steam_id: bigint + language: String + last_presence_state( + """JSON select path""" + path: String + ): jsonb + last_read_news_at: timestamptz + last_sign_in_at: timestamptz + name: String + name_registered: Boolean + notification_timezone: String + + """An object relationship""" + player: players + premier_rank: Int + premier_rank_updated_at: timestamptz + presence_updated_at: timestamptz + profile_url: String + quiet_hours_end: time + quiet_hours_start: time + role: String + roster_image_url: String + show_match_ready_modal: Boolean + status: String + steam_bans_checked_at: timestamptz + steam_id: bigint + vac_ban_count: Int + vac_banned: Boolean +} + +""" +aggregated selection of "v_my_friends" +""" +type my_friends_aggregate { + aggregate: my_friends_aggregate_fields + nodes: [my_friends!]! +} + +input my_friends_aggregate_bool_exp { + bool_and: my_friends_aggregate_bool_exp_bool_and + bool_or: my_friends_aggregate_bool_exp_bool_or + count: my_friends_aggregate_bool_exp_count +} + +input my_friends_aggregate_bool_exp_bool_and { + arguments: my_friends_select_column_my_friends_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: my_friends_bool_exp + predicate: Boolean_comparison_exp! +} + +input my_friends_aggregate_bool_exp_bool_or { + arguments: my_friends_select_column_my_friends_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: my_friends_bool_exp + predicate: Boolean_comparison_exp! +} + +input my_friends_aggregate_bool_exp_count { + arguments: [my_friends_select_column!] + distinct: Boolean + filter: my_friends_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "v_my_friends" +""" +type my_friends_aggregate_fields { + avg: my_friends_avg_fields + count(columns: [my_friends_select_column!], distinct: Boolean): Int! + max: my_friends_max_fields + min: my_friends_min_fields + stddev: my_friends_stddev_fields + stddev_pop: my_friends_stddev_pop_fields + stddev_samp: my_friends_stddev_samp_fields + sum: my_friends_sum_fields + var_pop: my_friends_var_pop_fields + var_samp: my_friends_var_samp_fields + variance: my_friends_variance_fields +} + +""" +order by aggregate values of table "v_my_friends" +""" +input my_friends_aggregate_order_by { + avg: my_friends_avg_order_by + count: order_by + max: my_friends_max_order_by + min: my_friends_min_order_by + stddev: my_friends_stddev_order_by + stddev_pop: my_friends_stddev_pop_order_by + stddev_samp: my_friends_stddev_samp_order_by + sum: my_friends_sum_order_by + var_pop: my_friends_var_pop_order_by + var_samp: my_friends_var_samp_order_by + variance: my_friends_variance_order_by +} + +"""append existing jsonb value of filtered columns with new jsonb value""" +input my_friends_append_input { + elo: jsonb + last_presence_state: jsonb +} + +""" +input type for inserting array relation for remote table "v_my_friends" +""" +input my_friends_arr_rel_insert_input { + data: [my_friends_insert_input!]! +} + +"""aggregate avg on columns""" +type my_friends_avg_fields { + days_since_last_ban: Float + faceit_elo: Float + faceit_skill_level: Float + friend_steam_id: Float + game_ban_count: Float + invited_by_steam_id: Float + premier_rank: Float + steam_id: Float + vac_ban_count: Float +} + +""" +order by avg() on columns of table "v_my_friends" +""" +input my_friends_avg_order_by { + days_since_last_ban: order_by + faceit_elo: order_by + faceit_skill_level: order_by + friend_steam_id: order_by + game_ban_count: order_by + invited_by_steam_id: order_by + premier_rank: order_by + steam_id: order_by + vac_ban_count: order_by +} + +""" +Boolean expression to filter rows from the table "v_my_friends". All fields are combined with a logical 'AND'. +""" +input my_friends_bool_exp { + _and: [my_friends_bool_exp!] + _not: my_friends_bool_exp + _or: [my_friends_bool_exp!] + avatar_url: String_comparison_exp + country: String_comparison_exp + created_at: timestamptz_comparison_exp + custom_avatar_url: String_comparison_exp + days_since_last_ban: Int_comparison_exp + discord_id: String_comparison_exp + elo: jsonb_comparison_exp + faceit_elo: Int_comparison_exp + faceit_nickname: String_comparison_exp + faceit_player_id: String_comparison_exp + faceit_skill_level: Int_comparison_exp + faceit_updated_at: timestamptz_comparison_exp + faceit_url: String_comparison_exp + friend_steam_id: bigint_comparison_exp + game_ban_count: Int_comparison_exp + invited_by_steam_id: bigint_comparison_exp + language: String_comparison_exp + last_presence_state: jsonb_comparison_exp + last_read_news_at: timestamptz_comparison_exp + last_sign_in_at: timestamptz_comparison_exp + name: String_comparison_exp + name_registered: Boolean_comparison_exp + notification_timezone: String_comparison_exp + player: players_bool_exp + premier_rank: Int_comparison_exp + premier_rank_updated_at: timestamptz_comparison_exp + presence_updated_at: timestamptz_comparison_exp + profile_url: String_comparison_exp + quiet_hours_end: time_comparison_exp + quiet_hours_start: time_comparison_exp + role: String_comparison_exp + roster_image_url: String_comparison_exp + show_match_ready_modal: Boolean_comparison_exp + status: String_comparison_exp + steam_bans_checked_at: timestamptz_comparison_exp + steam_id: bigint_comparison_exp + vac_ban_count: Int_comparison_exp + vac_banned: Boolean_comparison_exp +} + +""" +delete the field or element with specified path (for JSON arrays, negative integers count from the end) +""" +input my_friends_delete_at_path_input { + elo: [String!] + last_presence_state: [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 my_friends_delete_elem_input { + elo: Int + last_presence_state: Int +} + +""" +delete key/value pair or string element. key/value pairs are matched based on their key value +""" +input my_friends_delete_key_input { + elo: String + last_presence_state: String +} + +""" +input type for incrementing numeric columns in table "v_my_friends" +""" +input my_friends_inc_input { + days_since_last_ban: Int + faceit_elo: Int + faceit_skill_level: Int + friend_steam_id: bigint + game_ban_count: Int + invited_by_steam_id: bigint + premier_rank: Int + steam_id: bigint + vac_ban_count: Int +} + +""" +input type for inserting data into table "v_my_friends" +""" +input my_friends_insert_input { + avatar_url: String + country: String + created_at: timestamptz + custom_avatar_url: String + days_since_last_ban: Int + discord_id: String + elo: jsonb + faceit_elo: Int + faceit_nickname: String + faceit_player_id: String + faceit_skill_level: Int + faceit_updated_at: timestamptz + faceit_url: String + friend_steam_id: bigint + game_ban_count: Int + invited_by_steam_id: bigint + language: String + last_presence_state: jsonb + last_read_news_at: timestamptz + last_sign_in_at: timestamptz + name: String + name_registered: Boolean + notification_timezone: String + player: players_obj_rel_insert_input + premier_rank: Int + premier_rank_updated_at: timestamptz + presence_updated_at: timestamptz + profile_url: String + quiet_hours_end: time + quiet_hours_start: time + role: String + roster_image_url: String + show_match_ready_modal: Boolean + status: String + steam_bans_checked_at: timestamptz + steam_id: bigint + vac_ban_count: Int + vac_banned: Boolean +} + +"""aggregate max on columns""" +type my_friends_max_fields { + avatar_url: String + country: String + created_at: timestamptz + custom_avatar_url: String + days_since_last_ban: Int + discord_id: String + faceit_elo: Int + faceit_nickname: String + faceit_player_id: String + faceit_skill_level: Int + faceit_updated_at: timestamptz + faceit_url: String + friend_steam_id: bigint + game_ban_count: Int + invited_by_steam_id: bigint + language: String + last_read_news_at: timestamptz + last_sign_in_at: timestamptz + name: String + notification_timezone: String + premier_rank: Int + premier_rank_updated_at: timestamptz + presence_updated_at: timestamptz + profile_url: String + role: String + roster_image_url: String + status: String + steam_bans_checked_at: timestamptz + steam_id: bigint + vac_ban_count: Int +} + +""" +order by max() on columns of table "v_my_friends" +""" +input my_friends_max_order_by { + avatar_url: order_by + country: order_by + created_at: order_by + custom_avatar_url: order_by + days_since_last_ban: order_by + discord_id: order_by + faceit_elo: order_by + faceit_nickname: order_by + faceit_player_id: order_by + faceit_skill_level: order_by + faceit_updated_at: order_by + faceit_url: order_by + friend_steam_id: order_by + game_ban_count: order_by + invited_by_steam_id: order_by + language: order_by + last_read_news_at: order_by + last_sign_in_at: order_by + name: order_by + notification_timezone: order_by + premier_rank: order_by + premier_rank_updated_at: order_by + presence_updated_at: order_by + profile_url: order_by + role: order_by + roster_image_url: order_by + status: order_by + steam_bans_checked_at: order_by + steam_id: order_by + vac_ban_count: order_by +} + +"""aggregate min on columns""" +type my_friends_min_fields { + avatar_url: String + country: String + created_at: timestamptz + custom_avatar_url: String + days_since_last_ban: Int + discord_id: String + faceit_elo: Int + faceit_nickname: String + faceit_player_id: String + faceit_skill_level: Int + faceit_updated_at: timestamptz + faceit_url: String + friend_steam_id: bigint + game_ban_count: Int + invited_by_steam_id: bigint + language: String + last_read_news_at: timestamptz + last_sign_in_at: timestamptz + name: String + notification_timezone: String + premier_rank: Int + premier_rank_updated_at: timestamptz + presence_updated_at: timestamptz + profile_url: String + role: String + roster_image_url: String + status: String + steam_bans_checked_at: timestamptz + steam_id: bigint + vac_ban_count: Int +} + +""" +order by min() on columns of table "v_my_friends" +""" +input my_friends_min_order_by { + avatar_url: order_by + country: order_by + created_at: order_by + custom_avatar_url: order_by + days_since_last_ban: order_by + discord_id: order_by + faceit_elo: order_by + faceit_nickname: order_by + faceit_player_id: order_by + faceit_skill_level: order_by + faceit_updated_at: order_by + faceit_url: order_by + friend_steam_id: order_by + game_ban_count: order_by + invited_by_steam_id: order_by + language: order_by + last_read_news_at: order_by + last_sign_in_at: order_by + name: order_by + notification_timezone: order_by + premier_rank: order_by + premier_rank_updated_at: order_by + presence_updated_at: order_by + profile_url: order_by + role: order_by + roster_image_url: order_by + status: order_by + steam_bans_checked_at: order_by + steam_id: order_by + vac_ban_count: order_by +} + +""" +response of any mutation on the table "v_my_friends" +""" +type my_friends_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [my_friends!]! +} + +"""Ordering options when selecting data from "v_my_friends".""" +input my_friends_order_by { + avatar_url: order_by + country: order_by + created_at: order_by + custom_avatar_url: order_by + days_since_last_ban: order_by + discord_id: order_by + elo: order_by + faceit_elo: order_by + faceit_nickname: order_by + faceit_player_id: order_by + faceit_skill_level: order_by + faceit_updated_at: order_by + faceit_url: order_by + friend_steam_id: order_by + game_ban_count: order_by + invited_by_steam_id: order_by + language: order_by + last_presence_state: order_by + last_read_news_at: order_by + last_sign_in_at: order_by + name: order_by + name_registered: order_by + notification_timezone: order_by + player: players_order_by + premier_rank: order_by + premier_rank_updated_at: order_by + presence_updated_at: order_by + profile_url: order_by + quiet_hours_end: order_by + quiet_hours_start: order_by + role: order_by + roster_image_url: order_by + show_match_ready_modal: order_by + status: order_by + steam_bans_checked_at: order_by + steam_id: order_by + vac_ban_count: order_by + vac_banned: order_by +} + +"""prepend existing jsonb value of filtered columns with new jsonb value""" +input my_friends_prepend_input { + elo: jsonb + last_presence_state: jsonb +} + +""" +select columns of table "v_my_friends" +""" +enum my_friends_select_column { + """column name""" + avatar_url + + """column name""" + country + + """column name""" + created_at + + """column name""" + custom_avatar_url + + """column name""" + days_since_last_ban + + """column name""" + discord_id + + """column name""" + elo + + """column name""" + faceit_elo + + """column name""" + faceit_nickname + + """column name""" + faceit_player_id + + """column name""" + faceit_skill_level + + """column name""" + faceit_updated_at + + """column name""" + faceit_url + + """column name""" + friend_steam_id + + """column name""" + game_ban_count + + """column name""" + invited_by_steam_id + + """column name""" + language + + """column name""" + last_presence_state + + """column name""" + last_read_news_at + + """column name""" + last_sign_in_at + + """column name""" + name + + """column name""" + name_registered + + """column name""" + notification_timezone + + """column name""" + premier_rank + + """column name""" + premier_rank_updated_at + + """column name""" + presence_updated_at + + """column name""" + profile_url + + """column name""" + quiet_hours_end + + """column name""" + quiet_hours_start + + """column name""" + role + + """column name""" + roster_image_url + + """column name""" + show_match_ready_modal + + """column name""" + status + + """column name""" + steam_bans_checked_at + + """column name""" + steam_id + + """column name""" + vac_ban_count + + """column name""" + vac_banned +} + +""" +select "my_friends_aggregate_bool_exp_bool_and_arguments_columns" columns of table "v_my_friends" +""" +enum my_friends_select_column_my_friends_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + name_registered + + """column name""" + show_match_ready_modal + + """column name""" + vac_banned +} + +""" +select "my_friends_aggregate_bool_exp_bool_or_arguments_columns" columns of table "v_my_friends" +""" +enum my_friends_select_column_my_friends_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + name_registered + + """column name""" + show_match_ready_modal + + """column name""" + vac_banned +} + +""" +input type for updating data in table "v_my_friends" +""" +input my_friends_set_input { + avatar_url: String + country: String + created_at: timestamptz + custom_avatar_url: String + days_since_last_ban: Int + discord_id: String + elo: jsonb + faceit_elo: Int + faceit_nickname: String + faceit_player_id: String + faceit_skill_level: Int + faceit_updated_at: timestamptz + faceit_url: String + friend_steam_id: bigint + game_ban_count: Int + invited_by_steam_id: bigint + language: String + last_presence_state: jsonb + last_read_news_at: timestamptz + last_sign_in_at: timestamptz + name: String + name_registered: Boolean + notification_timezone: String + premier_rank: Int + premier_rank_updated_at: timestamptz + presence_updated_at: timestamptz + profile_url: String + quiet_hours_end: time + quiet_hours_start: time + role: String + roster_image_url: String + show_match_ready_modal: Boolean + status: String + steam_bans_checked_at: timestamptz + steam_id: bigint + vac_ban_count: Int + vac_banned: Boolean +} + +"""aggregate stddev on columns""" +type my_friends_stddev_fields { + days_since_last_ban: Float + faceit_elo: Float + faceit_skill_level: Float + friend_steam_id: Float + game_ban_count: Float + invited_by_steam_id: Float + premier_rank: Float + steam_id: Float + vac_ban_count: Float +} + +""" +order by stddev() on columns of table "v_my_friends" +""" +input my_friends_stddev_order_by { + days_since_last_ban: order_by + faceit_elo: order_by + faceit_skill_level: order_by + friend_steam_id: order_by + game_ban_count: order_by + invited_by_steam_id: order_by + premier_rank: order_by + steam_id: order_by + vac_ban_count: order_by +} + +"""aggregate stddev_pop on columns""" +type my_friends_stddev_pop_fields { + days_since_last_ban: Float + faceit_elo: Float + faceit_skill_level: Float + friend_steam_id: Float + game_ban_count: Float + invited_by_steam_id: Float + premier_rank: Float + steam_id: Float + vac_ban_count: Float +} + +""" +order by stddev_pop() on columns of table "v_my_friends" +""" +input my_friends_stddev_pop_order_by { + days_since_last_ban: order_by + faceit_elo: order_by + faceit_skill_level: order_by + friend_steam_id: order_by + game_ban_count: order_by + invited_by_steam_id: order_by + premier_rank: order_by + steam_id: order_by + vac_ban_count: order_by +} + +"""aggregate stddev_samp on columns""" +type my_friends_stddev_samp_fields { + days_since_last_ban: Float + faceit_elo: Float + faceit_skill_level: Float + friend_steam_id: Float + game_ban_count: Float + invited_by_steam_id: Float + premier_rank: Float + steam_id: Float + vac_ban_count: Float +} + +""" +order by stddev_samp() on columns of table "v_my_friends" +""" +input my_friends_stddev_samp_order_by { + days_since_last_ban: order_by + faceit_elo: order_by + faceit_skill_level: order_by + friend_steam_id: order_by + game_ban_count: order_by + invited_by_steam_id: order_by + premier_rank: order_by + steam_id: order_by + vac_ban_count: order_by +} + +""" +Streaming cursor of the table "my_friends" +""" +input my_friends_stream_cursor_input { + """Stream column input with initial value""" + initial_value: my_friends_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input my_friends_stream_cursor_value_input { + avatar_url: String + country: String + created_at: timestamptz + custom_avatar_url: String + days_since_last_ban: Int + discord_id: String + elo: jsonb + faceit_elo: Int + faceit_nickname: String + faceit_player_id: String + faceit_skill_level: Int + faceit_updated_at: timestamptz + faceit_url: String + friend_steam_id: bigint + game_ban_count: Int + invited_by_steam_id: bigint + language: String + last_presence_state: jsonb + last_read_news_at: timestamptz + last_sign_in_at: timestamptz + name: String + name_registered: Boolean + notification_timezone: String + premier_rank: Int + premier_rank_updated_at: timestamptz + presence_updated_at: timestamptz + profile_url: String + quiet_hours_end: time + quiet_hours_start: time + role: String + roster_image_url: String + show_match_ready_modal: Boolean + status: String + steam_bans_checked_at: timestamptz + steam_id: bigint + vac_ban_count: Int + vac_banned: Boolean +} + +"""aggregate sum on columns""" +type my_friends_sum_fields { + days_since_last_ban: Int + faceit_elo: Int + faceit_skill_level: Int + friend_steam_id: bigint + game_ban_count: Int + invited_by_steam_id: bigint + premier_rank: Int + steam_id: bigint + vac_ban_count: Int +} + +""" +order by sum() on columns of table "v_my_friends" +""" +input my_friends_sum_order_by { + days_since_last_ban: order_by + faceit_elo: order_by + faceit_skill_level: order_by + friend_steam_id: order_by + game_ban_count: order_by + invited_by_steam_id: order_by + premier_rank: order_by + steam_id: order_by + vac_ban_count: order_by +} + +input my_friends_updates { + """append existing jsonb value of filtered columns with new jsonb value""" + _append: my_friends_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: my_friends_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: my_friends_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: my_friends_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: my_friends_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: my_friends_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: my_friends_set_input + + """filter the rows which have to be updated""" + where: my_friends_bool_exp! +} + +"""aggregate var_pop on columns""" +type my_friends_var_pop_fields { + days_since_last_ban: Float + faceit_elo: Float + faceit_skill_level: Float + friend_steam_id: Float + game_ban_count: Float + invited_by_steam_id: Float + premier_rank: Float + steam_id: Float + vac_ban_count: Float +} + +""" +order by var_pop() on columns of table "v_my_friends" +""" +input my_friends_var_pop_order_by { + days_since_last_ban: order_by + faceit_elo: order_by + faceit_skill_level: order_by + friend_steam_id: order_by + game_ban_count: order_by + invited_by_steam_id: order_by + premier_rank: order_by + steam_id: order_by + vac_ban_count: order_by +} + +"""aggregate var_samp on columns""" +type my_friends_var_samp_fields { + days_since_last_ban: Float + faceit_elo: Float + faceit_skill_level: Float + friend_steam_id: Float + game_ban_count: Float + invited_by_steam_id: Float + premier_rank: Float + steam_id: Float + vac_ban_count: Float +} + +""" +order by var_samp() on columns of table "v_my_friends" +""" +input my_friends_var_samp_order_by { + days_since_last_ban: order_by + faceit_elo: order_by + faceit_skill_level: order_by + friend_steam_id: order_by + game_ban_count: order_by + invited_by_steam_id: order_by + premier_rank: order_by + steam_id: order_by + vac_ban_count: order_by +} + +"""aggregate variance on columns""" +type my_friends_variance_fields { + days_since_last_ban: Float + faceit_elo: Float + faceit_skill_level: Float + friend_steam_id: Float + game_ban_count: Float + invited_by_steam_id: Float + premier_rank: Float + steam_id: Float + vac_ban_count: Float +} + +""" +order by variance() on columns of table "v_my_friends" +""" +input my_friends_variance_order_by { + days_since_last_ban: order_by + faceit_elo: order_by + faceit_skill_level: order_by + friend_steam_id: order_by + game_ban_count: order_by + invited_by_steam_id: order_by + premier_rank: order_by + steam_id: order_by + vac_ban_count: order_by +} + +""" +columns and relationships of "news_articles" +""" +type news_articles { + """An object relationship""" + author: players + author_steam_id: bigint + content_markdown: String! + cover_image_url: String + created_at: timestamptz! + id: uuid! + published_at: timestamptz + slug: String! + status: String! + teaser: String + title: String! + updated_at: timestamptz! + view_count: bigint! +} + +""" +aggregated selection of "news_articles" +""" +type news_articles_aggregate { + aggregate: news_articles_aggregate_fields + nodes: [news_articles!]! +} + +""" +aggregate fields of "news_articles" +""" +type news_articles_aggregate_fields { + avg: news_articles_avg_fields + count(columns: [news_articles_select_column!], distinct: Boolean): Int! + max: news_articles_max_fields + min: news_articles_min_fields + stddev: news_articles_stddev_fields + stddev_pop: news_articles_stddev_pop_fields + stddev_samp: news_articles_stddev_samp_fields + sum: news_articles_sum_fields + var_pop: news_articles_var_pop_fields + var_samp: news_articles_var_samp_fields + variance: news_articles_variance_fields +} + +"""aggregate avg on columns""" +type news_articles_avg_fields { + author_steam_id: Float + view_count: Float +} + +""" +Boolean expression to filter rows from the table "news_articles". All fields are combined with a logical 'AND'. +""" +input news_articles_bool_exp { + _and: [news_articles_bool_exp!] + _not: news_articles_bool_exp + _or: [news_articles_bool_exp!] + author: players_bool_exp + author_steam_id: bigint_comparison_exp + content_markdown: String_comparison_exp + cover_image_url: String_comparison_exp + created_at: timestamptz_comparison_exp + id: uuid_comparison_exp + published_at: timestamptz_comparison_exp + slug: String_comparison_exp + status: String_comparison_exp + teaser: String_comparison_exp + title: String_comparison_exp + updated_at: timestamptz_comparison_exp + view_count: bigint_comparison_exp +} + +""" +unique or primary key constraints on table "news_articles" +""" +enum news_articles_constraint { + """ + unique or primary key constraint on columns "id" + """ + news_articles_pkey + + """ + unique or primary key constraint on columns "slug" + """ + news_articles_slug_key +} + +""" +input type for incrementing numeric columns in table "news_articles" +""" +input news_articles_inc_input { + author_steam_id: bigint + view_count: bigint +} + +""" +input type for inserting data into table "news_articles" +""" +input news_articles_insert_input { + author: players_obj_rel_insert_input + author_steam_id: bigint + content_markdown: String + cover_image_url: String + created_at: timestamptz + id: uuid + published_at: timestamptz + slug: String + status: String + teaser: String + title: String + updated_at: timestamptz + view_count: bigint +} + +"""aggregate max on columns""" +type news_articles_max_fields { + author_steam_id: bigint + content_markdown: String + cover_image_url: String + created_at: timestamptz + id: uuid + published_at: timestamptz + slug: String + status: String + teaser: String + title: String + updated_at: timestamptz + view_count: bigint +} + +"""aggregate min on columns""" +type news_articles_min_fields { + author_steam_id: bigint + content_markdown: String + cover_image_url: String + created_at: timestamptz + id: uuid + published_at: timestamptz + slug: String + status: String + teaser: String + title: String + updated_at: timestamptz + view_count: bigint +} + +""" +response of any mutation on the table "news_articles" +""" +type news_articles_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [news_articles!]! +} + +""" +on_conflict condition type for table "news_articles" +""" +input news_articles_on_conflict { + constraint: news_articles_constraint! + update_columns: [news_articles_update_column!]! = [] + where: news_articles_bool_exp +} + +"""Ordering options when selecting data from "news_articles".""" +input news_articles_order_by { + author: players_order_by + author_steam_id: order_by + content_markdown: order_by + cover_image_url: order_by + created_at: order_by + id: order_by + published_at: order_by + slug: order_by + status: order_by + teaser: order_by + title: order_by + updated_at: order_by + view_count: order_by +} + +"""primary key columns input for table: news_articles""" +input news_articles_pk_columns_input { + id: uuid! +} + +""" +select columns of table "news_articles" +""" +enum news_articles_select_column { + """column name""" + author_steam_id + + """column name""" + content_markdown + + """column name""" + cover_image_url + + """column name""" + created_at + + """column name""" + id + + """column name""" + published_at + + """column name""" + slug + + """column name""" + status + + """column name""" + teaser + + """column name""" + title + + """column name""" + updated_at + + """column name""" + view_count +} + +""" +input type for updating data in table "news_articles" +""" +input news_articles_set_input { + author_steam_id: bigint + content_markdown: String + cover_image_url: String + created_at: timestamptz + id: uuid + published_at: timestamptz + slug: String + status: String + teaser: String + title: String + updated_at: timestamptz + view_count: bigint +} + +"""aggregate stddev on columns""" +type news_articles_stddev_fields { + author_steam_id: Float + view_count: Float +} + +"""aggregate stddev_pop on columns""" +type news_articles_stddev_pop_fields { + author_steam_id: Float + view_count: Float +} + +"""aggregate stddev_samp on columns""" +type news_articles_stddev_samp_fields { + author_steam_id: Float + view_count: Float +} + +""" +Streaming cursor of the table "news_articles" +""" +input news_articles_stream_cursor_input { + """Stream column input with initial value""" + initial_value: news_articles_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input news_articles_stream_cursor_value_input { + author_steam_id: bigint + content_markdown: String + cover_image_url: String + created_at: timestamptz + id: uuid + published_at: timestamptz + slug: String + status: String + teaser: String + title: String + updated_at: timestamptz + view_count: bigint +} + +"""aggregate sum on columns""" +type news_articles_sum_fields { + author_steam_id: bigint + view_count: bigint +} + +""" +update columns of table "news_articles" +""" +enum news_articles_update_column { + """column name""" + author_steam_id + + """column name""" + content_markdown + + """column name""" + cover_image_url + + """column name""" + created_at + + """column name""" + id + + """column name""" + published_at + + """column name""" + slug + + """column name""" + status + + """column name""" + teaser + + """column name""" + title + + """column name""" + updated_at + + """column name""" + view_count +} + +input news_articles_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: news_articles_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: news_articles_set_input + + """filter the rows which have to be updated""" + where: news_articles_bool_exp! +} + +"""aggregate var_pop on columns""" +type news_articles_var_pop_fields { + author_steam_id: Float + view_count: Float +} + +"""aggregate var_samp on columns""" +type news_articles_var_samp_fields { + author_steam_id: Float + view_count: Float +} + +"""aggregate variance on columns""" +type news_articles_variance_fields { + author_steam_id: Float + view_count: Float +} + +""" +columns and relationships of "notification_preferences" +""" +type notification_preferences { + channel: String! + enabled: Boolean! + key: String! + steam_id: bigint! + updated_at: timestamptz! +} + +""" +aggregated selection of "notification_preferences" +""" +type notification_preferences_aggregate { + aggregate: notification_preferences_aggregate_fields + nodes: [notification_preferences!]! +} + +""" +aggregate fields of "notification_preferences" +""" +type notification_preferences_aggregate_fields { + avg: notification_preferences_avg_fields + count(columns: [notification_preferences_select_column!], distinct: Boolean): Int! + max: notification_preferences_max_fields + min: notification_preferences_min_fields + stddev: notification_preferences_stddev_fields + stddev_pop: notification_preferences_stddev_pop_fields + stddev_samp: notification_preferences_stddev_samp_fields + sum: notification_preferences_sum_fields + var_pop: notification_preferences_var_pop_fields + var_samp: notification_preferences_var_samp_fields + variance: notification_preferences_variance_fields +} + +"""aggregate avg on columns""" +type notification_preferences_avg_fields { + steam_id: Float +} + +""" +Boolean expression to filter rows from the table "notification_preferences". All fields are combined with a logical 'AND'. +""" +input notification_preferences_bool_exp { + _and: [notification_preferences_bool_exp!] + _not: notification_preferences_bool_exp + _or: [notification_preferences_bool_exp!] + channel: String_comparison_exp + enabled: Boolean_comparison_exp + key: String_comparison_exp + steam_id: bigint_comparison_exp + updated_at: timestamptz_comparison_exp +} + +""" +unique or primary key constraints on table "notification_preferences" +""" +enum notification_preferences_constraint { + """ + unique or primary key constraint on columns "key", "steam_id", "channel" + """ + notification_preferences_pkey +} + +""" +input type for incrementing numeric columns in table "notification_preferences" +""" +input notification_preferences_inc_input { + steam_id: bigint +} + +""" +input type for inserting data into table "notification_preferences" +""" +input notification_preferences_insert_input { + channel: String + enabled: Boolean + key: String + steam_id: bigint + updated_at: timestamptz +} + +"""aggregate max on columns""" +type notification_preferences_max_fields { + channel: String + key: String + steam_id: bigint + updated_at: timestamptz +} + +"""aggregate min on columns""" +type notification_preferences_min_fields { + channel: String + key: String + steam_id: bigint + updated_at: timestamptz +} + +""" +response of any mutation on the table "notification_preferences" +""" +type notification_preferences_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [notification_preferences!]! +} + +""" +on_conflict condition type for table "notification_preferences" +""" +input notification_preferences_on_conflict { + constraint: notification_preferences_constraint! + update_columns: [notification_preferences_update_column!]! = [] + where: notification_preferences_bool_exp +} + +"""Ordering options when selecting data from "notification_preferences".""" +input notification_preferences_order_by { + channel: order_by + enabled: order_by + key: order_by + steam_id: order_by + updated_at: order_by +} + +"""primary key columns input for table: notification_preferences""" +input notification_preferences_pk_columns_input { + channel: String! + key: String! + steam_id: bigint! +} + +""" +select columns of table "notification_preferences" +""" +enum notification_preferences_select_column { + """column name""" + channel + + """column name""" + enabled + + """column name""" + key + + """column name""" + steam_id + + """column name""" + updated_at +} + +""" +input type for updating data in table "notification_preferences" +""" +input notification_preferences_set_input { + channel: String + enabled: Boolean + key: String + steam_id: bigint + updated_at: timestamptz +} + +"""aggregate stddev on columns""" +type notification_preferences_stddev_fields { + steam_id: Float +} + +"""aggregate stddev_pop on columns""" +type notification_preferences_stddev_pop_fields { + steam_id: Float +} + +"""aggregate stddev_samp on columns""" +type notification_preferences_stddev_samp_fields { + steam_id: Float +} + +""" +Streaming cursor of the table "notification_preferences" +""" +input notification_preferences_stream_cursor_input { + """Stream column input with initial value""" + initial_value: notification_preferences_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input notification_preferences_stream_cursor_value_input { + channel: String + enabled: Boolean + key: String + steam_id: bigint + updated_at: timestamptz +} + +"""aggregate sum on columns""" +type notification_preferences_sum_fields { + steam_id: bigint +} + +""" +update columns of table "notification_preferences" +""" +enum notification_preferences_update_column { + """column name""" + channel + + """column name""" + enabled + + """column name""" + key + + """column name""" + steam_id + + """column name""" + updated_at +} + +input notification_preferences_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: notification_preferences_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: notification_preferences_set_input + + """filter the rows which have to be updated""" + where: notification_preferences_bool_exp! +} + +"""aggregate var_pop on columns""" +type notification_preferences_var_pop_fields { + steam_id: Float +} + +"""aggregate var_samp on columns""" +type notification_preferences_var_samp_fields { + steam_id: Float +} + +"""aggregate variance on columns""" +type notification_preferences_variance_fields { + steam_id: Float +} + +""" +columns and relationships of "notifications" +""" +type notifications { + actions( + """JSON select path""" + path: String + ): jsonb + created_at: timestamptz! + data( + """JSON select path""" + path: String + ): jsonb + deletable: Boolean! + deleted_at: timestamptz + entity_id: String + id: uuid! + in_app: Boolean! + is_read: Boolean! + message: String! + + """An object relationship""" + player: players + role: e_player_roles_enum! + steam_id: bigint + title: String! + type: e_notification_types_enum! +} + +""" +aggregated selection of "notifications" +""" +type notifications_aggregate { + aggregate: notifications_aggregate_fields + nodes: [notifications!]! +} + +input notifications_aggregate_bool_exp { + bool_and: notifications_aggregate_bool_exp_bool_and + bool_or: notifications_aggregate_bool_exp_bool_or + count: notifications_aggregate_bool_exp_count +} + +input notifications_aggregate_bool_exp_bool_and { + arguments: notifications_select_column_notifications_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: notifications_bool_exp + predicate: Boolean_comparison_exp! +} + +input notifications_aggregate_bool_exp_bool_or { + arguments: notifications_select_column_notifications_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: notifications_bool_exp + predicate: Boolean_comparison_exp! +} + +input notifications_aggregate_bool_exp_count { + arguments: [notifications_select_column!] + distinct: Boolean + filter: notifications_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "notifications" +""" +type notifications_aggregate_fields { + avg: notifications_avg_fields + count(columns: [notifications_select_column!], distinct: Boolean): Int! + max: notifications_max_fields + min: notifications_min_fields + stddev: notifications_stddev_fields + stddev_pop: notifications_stddev_pop_fields + stddev_samp: notifications_stddev_samp_fields + sum: notifications_sum_fields + var_pop: notifications_var_pop_fields + var_samp: notifications_var_samp_fields + variance: notifications_variance_fields +} + +""" +order by aggregate values of table "notifications" +""" +input notifications_aggregate_order_by { + avg: notifications_avg_order_by + count: order_by + max: notifications_max_order_by + min: notifications_min_order_by + stddev: notifications_stddev_order_by + stddev_pop: notifications_stddev_pop_order_by + stddev_samp: notifications_stddev_samp_order_by + sum: notifications_sum_order_by + var_pop: notifications_var_pop_order_by + var_samp: notifications_var_samp_order_by + variance: notifications_variance_order_by +} + +"""append existing jsonb value of filtered columns with new jsonb value""" +input notifications_append_input { + actions: jsonb + data: jsonb +} + +""" +input type for inserting array relation for remote table "notifications" +""" +input notifications_arr_rel_insert_input { + data: [notifications_insert_input!]! + + """upsert condition""" + on_conflict: notifications_on_conflict +} + +"""aggregate avg on columns""" +type notifications_avg_fields { + steam_id: Float +} + +""" +order by avg() on columns of table "notifications" +""" +input notifications_avg_order_by { + steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "notifications". All fields are combined with a logical 'AND'. +""" +input notifications_bool_exp { + _and: [notifications_bool_exp!] + _not: notifications_bool_exp + _or: [notifications_bool_exp!] + actions: jsonb_comparison_exp + created_at: timestamptz_comparison_exp + data: jsonb_comparison_exp + deletable: Boolean_comparison_exp + deleted_at: timestamptz_comparison_exp + entity_id: String_comparison_exp + id: uuid_comparison_exp + in_app: Boolean_comparison_exp + is_read: Boolean_comparison_exp + message: String_comparison_exp + player: players_bool_exp + role: e_player_roles_enum_comparison_exp + steam_id: bigint_comparison_exp + title: String_comparison_exp + type: e_notification_types_enum_comparison_exp +} + +""" +unique or primary key constraints on table "notifications" +""" +enum notifications_constraint { + """ + unique or primary key constraint on columns "id" + """ + notifications_pkey +} + +""" +delete the field or element with specified path (for JSON arrays, negative integers count from the end) +""" +input notifications_delete_at_path_input { + actions: [String!] + data: [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 notifications_delete_elem_input { + actions: Int + data: Int +} + +""" +delete key/value pair or string element. key/value pairs are matched based on their key value +""" +input notifications_delete_key_input { + actions: String + data: String +} + +""" +input type for incrementing numeric columns in table "notifications" +""" +input notifications_inc_input { + steam_id: bigint +} + +""" +input type for inserting data into table "notifications" +""" +input notifications_insert_input { + actions: jsonb + created_at: timestamptz + data: jsonb + deletable: Boolean + deleted_at: timestamptz + entity_id: String + id: uuid + in_app: Boolean + is_read: Boolean + message: String + player: players_obj_rel_insert_input + role: e_player_roles_enum + steam_id: bigint + title: String + type: e_notification_types_enum +} + +"""aggregate max on columns""" +type notifications_max_fields { + created_at: timestamptz + deleted_at: timestamptz + entity_id: String + id: uuid + message: String + steam_id: bigint + title: String +} + +""" +order by max() on columns of table "notifications" +""" +input notifications_max_order_by { + created_at: order_by + deleted_at: order_by + entity_id: order_by + id: order_by + message: order_by + steam_id: order_by + title: order_by +} + +"""aggregate min on columns""" +type notifications_min_fields { + created_at: timestamptz + deleted_at: timestamptz + entity_id: String + id: uuid + message: String + steam_id: bigint + title: String +} + +""" +order by min() on columns of table "notifications" +""" +input notifications_min_order_by { + created_at: order_by + deleted_at: order_by + entity_id: order_by + id: order_by + message: order_by + steam_id: order_by + title: order_by +} + +""" +response of any mutation on the table "notifications" +""" +type notifications_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [notifications!]! +} + +""" +on_conflict condition type for table "notifications" +""" +input notifications_on_conflict { + constraint: notifications_constraint! + update_columns: [notifications_update_column!]! = [] + where: notifications_bool_exp +} + +"""Ordering options when selecting data from "notifications".""" +input notifications_order_by { + actions: order_by + created_at: order_by + data: order_by + deletable: order_by + deleted_at: order_by + entity_id: order_by + id: order_by + in_app: order_by + is_read: order_by + message: order_by + player: players_order_by + role: order_by + steam_id: order_by + title: order_by + type: order_by +} + +"""primary key columns input for table: notifications""" +input notifications_pk_columns_input { + id: uuid! +} + +"""prepend existing jsonb value of filtered columns with new jsonb value""" +input notifications_prepend_input { + actions: jsonb + data: jsonb +} + +""" +select columns of table "notifications" +""" +enum notifications_select_column { + """column name""" + actions + + """column name""" + created_at + + """column name""" + data + + """column name""" + deletable + + """column name""" + deleted_at + + """column name""" + entity_id + + """column name""" + id + + """column name""" + in_app + + """column name""" + is_read + + """column name""" + message + + """column name""" + role + + """column name""" + steam_id + + """column name""" + title + + """column name""" + type +} + +""" +select "notifications_aggregate_bool_exp_bool_and_arguments_columns" columns of table "notifications" +""" +enum notifications_select_column_notifications_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + deletable + + """column name""" + in_app + + """column name""" + is_read +} + +""" +select "notifications_aggregate_bool_exp_bool_or_arguments_columns" columns of table "notifications" +""" +enum notifications_select_column_notifications_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + deletable + + """column name""" + in_app + + """column name""" + is_read +} + +""" +input type for updating data in table "notifications" +""" +input notifications_set_input { + actions: jsonb + created_at: timestamptz + data: jsonb + deletable: Boolean + deleted_at: timestamptz + entity_id: String + id: uuid + in_app: Boolean + is_read: Boolean + message: String + role: e_player_roles_enum + steam_id: bigint + title: String + type: e_notification_types_enum +} + +"""aggregate stddev on columns""" +type notifications_stddev_fields { + steam_id: Float +} + +""" +order by stddev() on columns of table "notifications" +""" +input notifications_stddev_order_by { + steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type notifications_stddev_pop_fields { + steam_id: Float +} + +""" +order by stddev_pop() on columns of table "notifications" +""" +input notifications_stddev_pop_order_by { + steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type notifications_stddev_samp_fields { + steam_id: Float +} + +""" +order by stddev_samp() on columns of table "notifications" +""" +input notifications_stddev_samp_order_by { + steam_id: order_by +} + +""" +Streaming cursor of the table "notifications" +""" +input notifications_stream_cursor_input { + """Stream column input with initial value""" + initial_value: notifications_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input notifications_stream_cursor_value_input { + actions: jsonb + created_at: timestamptz + data: jsonb + deletable: Boolean + deleted_at: timestamptz + entity_id: String + id: uuid + in_app: Boolean + is_read: Boolean + message: String + role: e_player_roles_enum + steam_id: bigint + title: String + type: e_notification_types_enum +} + +"""aggregate sum on columns""" +type notifications_sum_fields { + steam_id: bigint +} + +""" +order by sum() on columns of table "notifications" +""" +input notifications_sum_order_by { + steam_id: order_by +} + +""" +update columns of table "notifications" +""" +enum notifications_update_column { + """column name""" + actions + + """column name""" + created_at + + """column name""" + data + + """column name""" + deletable + + """column name""" + deleted_at + + """column name""" + entity_id + + """column name""" + id + + """column name""" + in_app + + """column name""" + is_read + + """column name""" + message + + """column name""" + role + + """column name""" + steam_id + + """column name""" + title + + """column name""" + type +} + +input notifications_updates { + """append existing jsonb value of filtered columns with new jsonb value""" + _append: notifications_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: notifications_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: notifications_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: notifications_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: notifications_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: notifications_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: notifications_set_input + + """filter the rows which have to be updated""" + where: notifications_bool_exp! +} + +"""aggregate var_pop on columns""" +type notifications_var_pop_fields { + steam_id: Float +} + +""" +order by var_pop() on columns of table "notifications" +""" +input notifications_var_pop_order_by { + steam_id: order_by +} + +"""aggregate var_samp on columns""" +type notifications_var_samp_fields { + steam_id: Float +} + +""" +order by var_samp() on columns of table "notifications" +""" +input notifications_var_samp_order_by { + steam_id: order_by +} + +"""aggregate variance on columns""" +type notifications_variance_fields { + steam_id: Float +} + +""" +order by variance() on columns of table "notifications" +""" +input notifications_variance_order_by { + steam_id: order_by +} + +scalar numeric + +""" +Boolean expression to compare columns of type "numeric". All fields are combined with logical 'AND'. +""" +input numeric_comparison_exp { + _eq: numeric + _gt: numeric + _gte: numeric + _in: [numeric!] + _is_null: Boolean + _lt: numeric + _lte: numeric + _neq: numeric + _nin: [numeric!] +} + +"""column ordering options""" +enum order_by { + """in ascending order, nulls last""" + asc + + """in ascending order, nulls first""" + asc_nulls_first + + """in ascending order, nulls last""" + asc_nulls_last + + """in descending order, nulls first""" + desc + + """in descending order, nulls first""" + desc_nulls_first + + """in descending order, nulls last""" + desc_nulls_last +} + +""" +columns and relationships of "pending_match_import_players" +""" +type pending_match_import_players { + created_at: timestamptz! + + """An object relationship""" + pending_match_import: pending_match_imports! + + """An object relationship""" + player: players! + steam_id: bigint! + valve_match_id: numeric! +} + +""" +aggregated selection of "pending_match_import_players" +""" +type pending_match_import_players_aggregate { + aggregate: pending_match_import_players_aggregate_fields + nodes: [pending_match_import_players!]! +} + +input pending_match_import_players_aggregate_bool_exp { + count: pending_match_import_players_aggregate_bool_exp_count +} + +input pending_match_import_players_aggregate_bool_exp_count { + arguments: [pending_match_import_players_select_column!] + distinct: Boolean + filter: pending_match_import_players_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pending_match_import_players" +""" +type pending_match_import_players_aggregate_fields { + avg: pending_match_import_players_avg_fields + count(columns: [pending_match_import_players_select_column!], distinct: Boolean): Int! + max: pending_match_import_players_max_fields + min: pending_match_import_players_min_fields + stddev: pending_match_import_players_stddev_fields + stddev_pop: pending_match_import_players_stddev_pop_fields + stddev_samp: pending_match_import_players_stddev_samp_fields + sum: pending_match_import_players_sum_fields + var_pop: pending_match_import_players_var_pop_fields + var_samp: pending_match_import_players_var_samp_fields + variance: pending_match_import_players_variance_fields +} + +""" +order by aggregate values of table "pending_match_import_players" +""" +input pending_match_import_players_aggregate_order_by { + avg: pending_match_import_players_avg_order_by + count: order_by + max: pending_match_import_players_max_order_by + min: pending_match_import_players_min_order_by + stddev: pending_match_import_players_stddev_order_by + stddev_pop: pending_match_import_players_stddev_pop_order_by + stddev_samp: pending_match_import_players_stddev_samp_order_by + sum: pending_match_import_players_sum_order_by + var_pop: pending_match_import_players_var_pop_order_by + var_samp: pending_match_import_players_var_samp_order_by + variance: pending_match_import_players_variance_order_by +} + +""" +input type for inserting array relation for remote table "pending_match_import_players" +""" +input pending_match_import_players_arr_rel_insert_input { + data: [pending_match_import_players_insert_input!]! + + """upsert condition""" + on_conflict: pending_match_import_players_on_conflict +} + +"""aggregate avg on columns""" +type pending_match_import_players_avg_fields { + steam_id: Float + valve_match_id: Float +} + +""" +order by avg() on columns of table "pending_match_import_players" +""" +input pending_match_import_players_avg_order_by { + steam_id: order_by + valve_match_id: order_by +} + +""" +Boolean expression to filter rows from the table "pending_match_import_players". All fields are combined with a logical 'AND'. +""" +input pending_match_import_players_bool_exp { + _and: [pending_match_import_players_bool_exp!] + _not: pending_match_import_players_bool_exp + _or: [pending_match_import_players_bool_exp!] + created_at: timestamptz_comparison_exp + pending_match_import: pending_match_imports_bool_exp + player: players_bool_exp + steam_id: bigint_comparison_exp + valve_match_id: numeric_comparison_exp +} + +""" +unique or primary key constraints on table "pending_match_import_players" +""" +enum pending_match_import_players_constraint { + """ + unique or primary key constraint on columns "steam_id", "valve_match_id" + """ + pending_match_import_players_pkey +} + +""" +input type for incrementing numeric columns in table "pending_match_import_players" +""" +input pending_match_import_players_inc_input { + steam_id: bigint + valve_match_id: numeric +} + +""" +input type for inserting data into table "pending_match_import_players" +""" +input pending_match_import_players_insert_input { + created_at: timestamptz + pending_match_import: pending_match_imports_obj_rel_insert_input + player: players_obj_rel_insert_input + steam_id: bigint + valve_match_id: numeric +} + +"""aggregate max on columns""" +type pending_match_import_players_max_fields { + created_at: timestamptz + steam_id: bigint + valve_match_id: numeric +} + +""" +order by max() on columns of table "pending_match_import_players" +""" +input pending_match_import_players_max_order_by { + created_at: order_by + steam_id: order_by + valve_match_id: order_by +} + +"""aggregate min on columns""" +type pending_match_import_players_min_fields { + created_at: timestamptz + steam_id: bigint + valve_match_id: numeric +} + +""" +order by min() on columns of table "pending_match_import_players" +""" +input pending_match_import_players_min_order_by { + created_at: order_by + steam_id: order_by + valve_match_id: order_by +} + +""" +response of any mutation on the table "pending_match_import_players" +""" +type pending_match_import_players_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [pending_match_import_players!]! +} + +""" +on_conflict condition type for table "pending_match_import_players" +""" +input pending_match_import_players_on_conflict { + constraint: pending_match_import_players_constraint! + update_columns: [pending_match_import_players_update_column!]! = [] + where: pending_match_import_players_bool_exp +} + +""" +Ordering options when selecting data from "pending_match_import_players". +""" +input pending_match_import_players_order_by { + created_at: order_by + pending_match_import: pending_match_imports_order_by + player: players_order_by + steam_id: order_by + valve_match_id: order_by +} + +"""primary key columns input for table: pending_match_import_players""" +input pending_match_import_players_pk_columns_input { + steam_id: bigint! + valve_match_id: numeric! +} + +""" +select columns of table "pending_match_import_players" +""" +enum pending_match_import_players_select_column { + """column name""" + created_at + + """column name""" + steam_id + + """column name""" + valve_match_id +} + +""" +input type for updating data in table "pending_match_import_players" +""" +input pending_match_import_players_set_input { + created_at: timestamptz + steam_id: bigint + valve_match_id: numeric +} + +"""aggregate stddev on columns""" +type pending_match_import_players_stddev_fields { + steam_id: Float + valve_match_id: Float +} + +""" +order by stddev() on columns of table "pending_match_import_players" +""" +input pending_match_import_players_stddev_order_by { + steam_id: order_by + valve_match_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pending_match_import_players_stddev_pop_fields { + steam_id: Float + valve_match_id: Float +} + +""" +order by stddev_pop() on columns of table "pending_match_import_players" +""" +input pending_match_import_players_stddev_pop_order_by { + steam_id: order_by + valve_match_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pending_match_import_players_stddev_samp_fields { + steam_id: Float + valve_match_id: Float +} + +""" +order by stddev_samp() on columns of table "pending_match_import_players" +""" +input pending_match_import_players_stddev_samp_order_by { + steam_id: order_by + valve_match_id: order_by +} + +""" +Streaming cursor of the table "pending_match_import_players" +""" +input pending_match_import_players_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pending_match_import_players_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pending_match_import_players_stream_cursor_value_input { + created_at: timestamptz + steam_id: bigint + valve_match_id: numeric +} + +"""aggregate sum on columns""" +type pending_match_import_players_sum_fields { + steam_id: bigint + valve_match_id: numeric +} + +""" +order by sum() on columns of table "pending_match_import_players" +""" +input pending_match_import_players_sum_order_by { + steam_id: order_by + valve_match_id: order_by +} + +""" +update columns of table "pending_match_import_players" +""" +enum pending_match_import_players_update_column { + """column name""" + created_at + + """column name""" + steam_id + + """column name""" + valve_match_id +} + +input pending_match_import_players_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: pending_match_import_players_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: pending_match_import_players_set_input + + """filter the rows which have to be updated""" + where: pending_match_import_players_bool_exp! +} + +"""aggregate var_pop on columns""" +type pending_match_import_players_var_pop_fields { + steam_id: Float + valve_match_id: Float +} + +""" +order by var_pop() on columns of table "pending_match_import_players" +""" +input pending_match_import_players_var_pop_order_by { + steam_id: order_by + valve_match_id: order_by +} + +"""aggregate var_samp on columns""" +type pending_match_import_players_var_samp_fields { + steam_id: Float + valve_match_id: Float +} + +""" +order by var_samp() on columns of table "pending_match_import_players" +""" +input pending_match_import_players_var_samp_order_by { + steam_id: order_by + valve_match_id: order_by +} + +"""aggregate variance on columns""" +type pending_match_import_players_variance_fields { + steam_id: Float + valve_match_id: Float +} + +""" +order by variance() on columns of table "pending_match_import_players" +""" +input pending_match_import_players_variance_order_by { + steam_id: order_by + valve_match_id: order_by +} + +""" +columns and relationships of "pending_match_imports" +""" +type pending_match_imports { + created_at: timestamptz! + demo_url: String + error: String + map_name: String + match_start_time: timestamptz + + """An array relationship""" + players( + """distinct select on columns""" + distinct_on: [pending_match_import_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pending_match_import_players_order_by!] + + """filter the rows returned""" + where: pending_match_import_players_bool_exp + ): [pending_match_import_players!]! + + """An aggregate relationship""" + players_aggregate( + """distinct select on columns""" + distinct_on: [pending_match_import_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pending_match_import_players_order_by!] + + """filter the rows returned""" + where: pending_match_import_players_bool_exp + ): pending_match_import_players_aggregate! + share_code: String! + status: String! + updated_at: timestamptz! + valve_match_id: numeric! +} + +""" +aggregated selection of "pending_match_imports" +""" +type pending_match_imports_aggregate { + aggregate: pending_match_imports_aggregate_fields + nodes: [pending_match_imports!]! +} + +""" +aggregate fields of "pending_match_imports" +""" +type pending_match_imports_aggregate_fields { + avg: pending_match_imports_avg_fields + count(columns: [pending_match_imports_select_column!], distinct: Boolean): Int! + max: pending_match_imports_max_fields + min: pending_match_imports_min_fields + stddev: pending_match_imports_stddev_fields + stddev_pop: pending_match_imports_stddev_pop_fields + stddev_samp: pending_match_imports_stddev_samp_fields + sum: pending_match_imports_sum_fields + var_pop: pending_match_imports_var_pop_fields + var_samp: pending_match_imports_var_samp_fields + variance: pending_match_imports_variance_fields +} + +"""aggregate avg on columns""" +type pending_match_imports_avg_fields { + valve_match_id: Float +} + +""" +Boolean expression to filter rows from the table "pending_match_imports". All fields are combined with a logical 'AND'. +""" +input pending_match_imports_bool_exp { + _and: [pending_match_imports_bool_exp!] + _not: pending_match_imports_bool_exp + _or: [pending_match_imports_bool_exp!] + created_at: timestamptz_comparison_exp + demo_url: String_comparison_exp + error: String_comparison_exp + map_name: String_comparison_exp + match_start_time: timestamptz_comparison_exp + players: pending_match_import_players_bool_exp + players_aggregate: pending_match_import_players_aggregate_bool_exp + share_code: String_comparison_exp + status: String_comparison_exp + updated_at: timestamptz_comparison_exp + valve_match_id: numeric_comparison_exp +} + +""" +unique or primary key constraints on table "pending_match_imports" +""" +enum pending_match_imports_constraint { + """ + unique or primary key constraint on columns "valve_match_id" + """ + pending_match_imports_pkey +} + +""" +input type for incrementing numeric columns in table "pending_match_imports" +""" +input pending_match_imports_inc_input { + valve_match_id: numeric +} + +""" +input type for inserting data into table "pending_match_imports" +""" +input pending_match_imports_insert_input { + created_at: timestamptz + demo_url: String + error: String + map_name: String + match_start_time: timestamptz + players: pending_match_import_players_arr_rel_insert_input + share_code: String + status: String + updated_at: timestamptz + valve_match_id: numeric +} + +"""aggregate max on columns""" +type pending_match_imports_max_fields { + created_at: timestamptz + demo_url: String + error: String + map_name: String + match_start_time: timestamptz + share_code: String + status: String + updated_at: timestamptz + valve_match_id: numeric +} + +"""aggregate min on columns""" +type pending_match_imports_min_fields { + created_at: timestamptz + demo_url: String + error: String + map_name: String + match_start_time: timestamptz + share_code: String + status: String + updated_at: timestamptz + valve_match_id: numeric +} + +""" +response of any mutation on the table "pending_match_imports" +""" +type pending_match_imports_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [pending_match_imports!]! +} + +""" +input type for inserting object relation for remote table "pending_match_imports" +""" +input pending_match_imports_obj_rel_insert_input { + data: pending_match_imports_insert_input! + + """upsert condition""" + on_conflict: pending_match_imports_on_conflict +} + +""" +on_conflict condition type for table "pending_match_imports" +""" +input pending_match_imports_on_conflict { + constraint: pending_match_imports_constraint! + update_columns: [pending_match_imports_update_column!]! = [] + where: pending_match_imports_bool_exp +} + +"""Ordering options when selecting data from "pending_match_imports".""" +input pending_match_imports_order_by { + created_at: order_by + demo_url: order_by + error: order_by + map_name: order_by + match_start_time: order_by + players_aggregate: pending_match_import_players_aggregate_order_by + share_code: order_by + status: order_by + updated_at: order_by + valve_match_id: order_by +} + +"""primary key columns input for table: pending_match_imports""" +input pending_match_imports_pk_columns_input { + valve_match_id: numeric! +} + +""" +select columns of table "pending_match_imports" +""" +enum pending_match_imports_select_column { + """column name""" + created_at + + """column name""" + demo_url + + """column name""" + error + + """column name""" + map_name + + """column name""" + match_start_time + + """column name""" + share_code + + """column name""" + status + + """column name""" + updated_at + + """column name""" + valve_match_id +} + +""" +input type for updating data in table "pending_match_imports" +""" +input pending_match_imports_set_input { + created_at: timestamptz + demo_url: String + error: String + map_name: String + match_start_time: timestamptz + share_code: String + status: String + updated_at: timestamptz + valve_match_id: numeric +} + +"""aggregate stddev on columns""" +type pending_match_imports_stddev_fields { + valve_match_id: Float +} + +"""aggregate stddev_pop on columns""" +type pending_match_imports_stddev_pop_fields { + valve_match_id: Float +} + +"""aggregate stddev_samp on columns""" +type pending_match_imports_stddev_samp_fields { + valve_match_id: Float +} + +""" +Streaming cursor of the table "pending_match_imports" +""" +input pending_match_imports_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pending_match_imports_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pending_match_imports_stream_cursor_value_input { + created_at: timestamptz + demo_url: String + error: String + map_name: String + match_start_time: timestamptz + share_code: String + status: String + updated_at: timestamptz + valve_match_id: numeric +} + +"""aggregate sum on columns""" +type pending_match_imports_sum_fields { + valve_match_id: numeric +} + +""" +update columns of table "pending_match_imports" +""" +enum pending_match_imports_update_column { + """column name""" + created_at + + """column name""" + demo_url + + """column name""" + error + + """column name""" + map_name + + """column name""" + match_start_time + + """column name""" + share_code + + """column name""" + status + + """column name""" + updated_at + + """column name""" + valve_match_id +} + +input pending_match_imports_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: pending_match_imports_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: pending_match_imports_set_input + + """filter the rows which have to be updated""" + where: pending_match_imports_bool_exp! +} + +"""aggregate var_pop on columns""" +type pending_match_imports_var_pop_fields { + valve_match_id: Float +} + +"""aggregate var_samp on columns""" +type pending_match_imports_var_samp_fields { + valve_match_id: Float +} + +"""aggregate variance on columns""" +type pending_match_imports_variance_fields { + valve_match_id: Float +} + +""" +columns and relationships of "player_aim_stats_demo" +""" +type player_aim_stats_demo { + """An object relationship""" + attacker: players + attacker_steam_id: bigint! + counter_strafe_eligible_shots: Int! + counter_strafed_shots: Int! + crosshair_angle_count: Int! + crosshair_angle_sum_deg: numeric! + first_bullet_hits: Int! + first_bullet_shots: Int! + headshot_hits: Int! + hits: Int! + hits_at_spotted: Int! + + """An object relationship""" + match: matches! + match_id: uuid! + + """An object relationship""" + match_map: match_maps! + match_map_id: uuid! + non_awp_hits: Int! + on_target_frames: Int! + shots_at_spotted: Int! + spray_hits: Int! + spray_shots: Int! + time_to_damage_count: Int! + time_to_damage_sum_s: numeric! + total_engagement_frames: Int! +} + +""" +aggregated selection of "player_aim_stats_demo" +""" +type player_aim_stats_demo_aggregate { + aggregate: player_aim_stats_demo_aggregate_fields + nodes: [player_aim_stats_demo!]! +} + +""" +aggregate fields of "player_aim_stats_demo" +""" +type player_aim_stats_demo_aggregate_fields { + avg: player_aim_stats_demo_avg_fields + count(columns: [player_aim_stats_demo_select_column!], distinct: Boolean): Int! + max: player_aim_stats_demo_max_fields + min: player_aim_stats_demo_min_fields + stddev: player_aim_stats_demo_stddev_fields + stddev_pop: player_aim_stats_demo_stddev_pop_fields + stddev_samp: player_aim_stats_demo_stddev_samp_fields + sum: player_aim_stats_demo_sum_fields + var_pop: player_aim_stats_demo_var_pop_fields + var_samp: player_aim_stats_demo_var_samp_fields + variance: player_aim_stats_demo_variance_fields +} + +"""aggregate avg on columns""" +type player_aim_stats_demo_avg_fields { + attacker_steam_id: Float + counter_strafe_eligible_shots: Float + counter_strafed_shots: Float + crosshair_angle_count: Float + crosshair_angle_sum_deg: Float + first_bullet_hits: Float + first_bullet_shots: Float + headshot_hits: Float + hits: Float + hits_at_spotted: Float + non_awp_hits: Float + on_target_frames: Float + shots_at_spotted: Float + spray_hits: Float + spray_shots: Float + time_to_damage_count: Float + time_to_damage_sum_s: Float + total_engagement_frames: Float +} + +""" +Boolean expression to filter rows from the table "player_aim_stats_demo". All fields are combined with a logical 'AND'. +""" +input player_aim_stats_demo_bool_exp { + _and: [player_aim_stats_demo_bool_exp!] + _not: player_aim_stats_demo_bool_exp + _or: [player_aim_stats_demo_bool_exp!] + attacker: players_bool_exp + attacker_steam_id: bigint_comparison_exp + counter_strafe_eligible_shots: Int_comparison_exp + counter_strafed_shots: Int_comparison_exp + crosshair_angle_count: Int_comparison_exp + crosshair_angle_sum_deg: numeric_comparison_exp + first_bullet_hits: Int_comparison_exp + first_bullet_shots: Int_comparison_exp + headshot_hits: Int_comparison_exp + hits: Int_comparison_exp + hits_at_spotted: Int_comparison_exp + match: matches_bool_exp + match_id: uuid_comparison_exp + match_map: match_maps_bool_exp + match_map_id: uuid_comparison_exp + non_awp_hits: Int_comparison_exp + on_target_frames: Int_comparison_exp + shots_at_spotted: Int_comparison_exp + spray_hits: Int_comparison_exp + spray_shots: Int_comparison_exp + time_to_damage_count: Int_comparison_exp + time_to_damage_sum_s: numeric_comparison_exp + total_engagement_frames: Int_comparison_exp +} + +""" +unique or primary key constraints on table "player_aim_stats_demo" +""" +enum player_aim_stats_demo_constraint { + """ + unique or primary key constraint on columns "attacker_steam_id", "match_map_id" + """ + player_aim_stats_demo_pkey +} + +""" +input type for incrementing numeric columns in table "player_aim_stats_demo" +""" +input player_aim_stats_demo_inc_input { + attacker_steam_id: bigint + counter_strafe_eligible_shots: Int + counter_strafed_shots: Int + crosshair_angle_count: Int + crosshair_angle_sum_deg: numeric + first_bullet_hits: Int + first_bullet_shots: Int + headshot_hits: Int + hits: Int + hits_at_spotted: Int + non_awp_hits: Int + on_target_frames: Int + shots_at_spotted: Int + spray_hits: Int + spray_shots: Int + time_to_damage_count: Int + time_to_damage_sum_s: numeric + total_engagement_frames: Int +} + +""" +input type for inserting data into table "player_aim_stats_demo" +""" +input player_aim_stats_demo_insert_input { + attacker: players_obj_rel_insert_input + attacker_steam_id: bigint + counter_strafe_eligible_shots: Int + counter_strafed_shots: Int + crosshair_angle_count: Int + crosshair_angle_sum_deg: numeric + first_bullet_hits: Int + first_bullet_shots: Int + headshot_hits: Int + hits: Int + hits_at_spotted: Int + match: matches_obj_rel_insert_input + match_id: uuid + match_map: match_maps_obj_rel_insert_input + match_map_id: uuid + non_awp_hits: Int + on_target_frames: Int + shots_at_spotted: Int + spray_hits: Int + spray_shots: Int + time_to_damage_count: Int + time_to_damage_sum_s: numeric + total_engagement_frames: Int +} + +"""aggregate max on columns""" +type player_aim_stats_demo_max_fields { + attacker_steam_id: bigint + counter_strafe_eligible_shots: Int + counter_strafed_shots: Int + crosshair_angle_count: Int + crosshair_angle_sum_deg: numeric + first_bullet_hits: Int + first_bullet_shots: Int + headshot_hits: Int + hits: Int + hits_at_spotted: Int + match_id: uuid + match_map_id: uuid + non_awp_hits: Int + on_target_frames: Int + shots_at_spotted: Int + spray_hits: Int + spray_shots: Int + time_to_damage_count: Int + time_to_damage_sum_s: numeric + total_engagement_frames: Int +} + +"""aggregate min on columns""" +type player_aim_stats_demo_min_fields { + attacker_steam_id: bigint + counter_strafe_eligible_shots: Int + counter_strafed_shots: Int + crosshair_angle_count: Int + crosshair_angle_sum_deg: numeric + first_bullet_hits: Int + first_bullet_shots: Int + headshot_hits: Int + hits: Int + hits_at_spotted: Int + match_id: uuid + match_map_id: uuid + non_awp_hits: Int + on_target_frames: Int + shots_at_spotted: Int + spray_hits: Int + spray_shots: Int + time_to_damage_count: Int + time_to_damage_sum_s: numeric + total_engagement_frames: Int +} + +""" +response of any mutation on the table "player_aim_stats_demo" +""" +type player_aim_stats_demo_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [player_aim_stats_demo!]! +} + +""" +on_conflict condition type for table "player_aim_stats_demo" +""" +input player_aim_stats_demo_on_conflict { + constraint: player_aim_stats_demo_constraint! + update_columns: [player_aim_stats_demo_update_column!]! = [] + where: player_aim_stats_demo_bool_exp +} + +"""Ordering options when selecting data from "player_aim_stats_demo".""" +input player_aim_stats_demo_order_by { + attacker: players_order_by + attacker_steam_id: order_by + counter_strafe_eligible_shots: order_by + counter_strafed_shots: order_by + crosshair_angle_count: order_by + crosshair_angle_sum_deg: order_by + first_bullet_hits: order_by + first_bullet_shots: order_by + headshot_hits: order_by + hits: order_by + hits_at_spotted: order_by + match: matches_order_by + match_id: order_by + match_map: match_maps_order_by + match_map_id: order_by + non_awp_hits: order_by + on_target_frames: order_by + shots_at_spotted: order_by + spray_hits: order_by + spray_shots: order_by + time_to_damage_count: order_by + time_to_damage_sum_s: order_by + total_engagement_frames: order_by +} + +"""primary key columns input for table: player_aim_stats_demo""" +input player_aim_stats_demo_pk_columns_input { + attacker_steam_id: bigint! + match_map_id: uuid! +} + +""" +select columns of table "player_aim_stats_demo" +""" +enum player_aim_stats_demo_select_column { + """column name""" + attacker_steam_id + + """column name""" + counter_strafe_eligible_shots + + """column name""" + counter_strafed_shots + + """column name""" + crosshair_angle_count + + """column name""" + crosshair_angle_sum_deg + + """column name""" + first_bullet_hits + + """column name""" + first_bullet_shots + + """column name""" + headshot_hits + + """column name""" + hits + + """column name""" + hits_at_spotted + + """column name""" + match_id + + """column name""" + match_map_id + + """column name""" + non_awp_hits + + """column name""" + on_target_frames + + """column name""" + shots_at_spotted + + """column name""" + spray_hits + + """column name""" + spray_shots + + """column name""" + time_to_damage_count + + """column name""" + time_to_damage_sum_s + + """column name""" + total_engagement_frames +} + +""" +input type for updating data in table "player_aim_stats_demo" +""" +input player_aim_stats_demo_set_input { + attacker_steam_id: bigint + counter_strafe_eligible_shots: Int + counter_strafed_shots: Int + crosshair_angle_count: Int + crosshair_angle_sum_deg: numeric + first_bullet_hits: Int + first_bullet_shots: Int + headshot_hits: Int + hits: Int + hits_at_spotted: Int + match_id: uuid + match_map_id: uuid + non_awp_hits: Int + on_target_frames: Int + shots_at_spotted: Int + spray_hits: Int + spray_shots: Int + time_to_damage_count: Int + time_to_damage_sum_s: numeric + total_engagement_frames: Int +} + +"""aggregate stddev on columns""" +type player_aim_stats_demo_stddev_fields { + attacker_steam_id: Float + counter_strafe_eligible_shots: Float + counter_strafed_shots: Float + crosshair_angle_count: Float + crosshair_angle_sum_deg: Float + first_bullet_hits: Float + first_bullet_shots: Float + headshot_hits: Float + hits: Float + hits_at_spotted: Float + non_awp_hits: Float + on_target_frames: Float + shots_at_spotted: Float + spray_hits: Float + spray_shots: Float + time_to_damage_count: Float + time_to_damage_sum_s: Float + total_engagement_frames: Float +} + +"""aggregate stddev_pop on columns""" +type player_aim_stats_demo_stddev_pop_fields { + attacker_steam_id: Float + counter_strafe_eligible_shots: Float + counter_strafed_shots: Float + crosshair_angle_count: Float + crosshair_angle_sum_deg: Float + first_bullet_hits: Float + first_bullet_shots: Float + headshot_hits: Float + hits: Float + hits_at_spotted: Float + non_awp_hits: Float + on_target_frames: Float + shots_at_spotted: Float + spray_hits: Float + spray_shots: Float + time_to_damage_count: Float + time_to_damage_sum_s: Float + total_engagement_frames: Float +} + +"""aggregate stddev_samp on columns""" +type player_aim_stats_demo_stddev_samp_fields { + attacker_steam_id: Float + counter_strafe_eligible_shots: Float + counter_strafed_shots: Float + crosshair_angle_count: Float + crosshair_angle_sum_deg: Float + first_bullet_hits: Float + first_bullet_shots: Float + headshot_hits: Float + hits: Float + hits_at_spotted: Float + non_awp_hits: Float + on_target_frames: Float + shots_at_spotted: Float + spray_hits: Float + spray_shots: Float + time_to_damage_count: Float + time_to_damage_sum_s: Float + total_engagement_frames: Float +} + +""" +Streaming cursor of the table "player_aim_stats_demo" +""" +input player_aim_stats_demo_stream_cursor_input { + """Stream column input with initial value""" + initial_value: player_aim_stats_demo_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input player_aim_stats_demo_stream_cursor_value_input { + attacker_steam_id: bigint + counter_strafe_eligible_shots: Int + counter_strafed_shots: Int + crosshair_angle_count: Int + crosshair_angle_sum_deg: numeric + first_bullet_hits: Int + first_bullet_shots: Int + headshot_hits: Int + hits: Int + hits_at_spotted: Int + match_id: uuid + match_map_id: uuid + non_awp_hits: Int + on_target_frames: Int + shots_at_spotted: Int + spray_hits: Int + spray_shots: Int + time_to_damage_count: Int + time_to_damage_sum_s: numeric + total_engagement_frames: Int +} + +"""aggregate sum on columns""" +type player_aim_stats_demo_sum_fields { + attacker_steam_id: bigint + counter_strafe_eligible_shots: Int + counter_strafed_shots: Int + crosshair_angle_count: Int + crosshair_angle_sum_deg: numeric + first_bullet_hits: Int + first_bullet_shots: Int + headshot_hits: Int + hits: Int + hits_at_spotted: Int + non_awp_hits: Int + on_target_frames: Int + shots_at_spotted: Int + spray_hits: Int + spray_shots: Int + time_to_damage_count: Int + time_to_damage_sum_s: numeric + total_engagement_frames: Int +} + +""" +update columns of table "player_aim_stats_demo" +""" +enum player_aim_stats_demo_update_column { + """column name""" + attacker_steam_id + + """column name""" + counter_strafe_eligible_shots + + """column name""" + counter_strafed_shots + + """column name""" + crosshair_angle_count + + """column name""" + crosshair_angle_sum_deg + + """column name""" + first_bullet_hits + + """column name""" + first_bullet_shots + + """column name""" + headshot_hits + + """column name""" + hits + + """column name""" + hits_at_spotted + + """column name""" + match_id + + """column name""" + match_map_id + + """column name""" + non_awp_hits + + """column name""" + on_target_frames + + """column name""" + shots_at_spotted + + """column name""" + spray_hits + + """column name""" + spray_shots + + """column name""" + time_to_damage_count + + """column name""" + time_to_damage_sum_s + + """column name""" + total_engagement_frames +} + +input player_aim_stats_demo_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: player_aim_stats_demo_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_aim_stats_demo_set_input + + """filter the rows which have to be updated""" + where: player_aim_stats_demo_bool_exp! +} + +"""aggregate var_pop on columns""" +type player_aim_stats_demo_var_pop_fields { + attacker_steam_id: Float + counter_strafe_eligible_shots: Float + counter_strafed_shots: Float + crosshair_angle_count: Float + crosshair_angle_sum_deg: Float + first_bullet_hits: Float + first_bullet_shots: Float + headshot_hits: Float + hits: Float + hits_at_spotted: Float + non_awp_hits: Float + on_target_frames: Float + shots_at_spotted: Float + spray_hits: Float + spray_shots: Float + time_to_damage_count: Float + time_to_damage_sum_s: Float + total_engagement_frames: Float +} + +"""aggregate var_samp on columns""" +type player_aim_stats_demo_var_samp_fields { + attacker_steam_id: Float + counter_strafe_eligible_shots: Float + counter_strafed_shots: Float + crosshair_angle_count: Float + crosshair_angle_sum_deg: Float + first_bullet_hits: Float + first_bullet_shots: Float + headshot_hits: Float + hits: Float + hits_at_spotted: Float + non_awp_hits: Float + on_target_frames: Float + shots_at_spotted: Float + spray_hits: Float + spray_shots: Float + time_to_damage_count: Float + time_to_damage_sum_s: Float + total_engagement_frames: Float +} + +"""aggregate variance on columns""" +type player_aim_stats_demo_variance_fields { + attacker_steam_id: Float + counter_strafe_eligible_shots: Float + counter_strafed_shots: Float + crosshair_angle_count: Float + crosshair_angle_sum_deg: Float + first_bullet_hits: Float + first_bullet_shots: Float + headshot_hits: Float + hits: Float + hits_at_spotted: Float + non_awp_hits: Float + on_target_frames: Float + shots_at_spotted: Float + spray_hits: Float + spray_shots: Float + time_to_damage_count: Float + time_to_damage_sum_s: Float + total_engagement_frames: Float +} + +""" +columns and relationships of "player_aim_weapon_stats" +""" +type player_aim_weapon_stats { + first_bullet_hits: Int! + first_bullet_shots: Int! + hits: Int! + hits_spotted: Int! + + """An object relationship""" + match: matches! + match_id: uuid! + + """An object relationship""" + match_map: match_maps! + match_map_id: uuid! + + """An object relationship""" + player: players + shots: Int! + shots_spotted: Int! + steam_id: bigint! + weapon_class: String! +} + +""" +aggregated selection of "player_aim_weapon_stats" +""" +type player_aim_weapon_stats_aggregate { + aggregate: player_aim_weapon_stats_aggregate_fields + nodes: [player_aim_weapon_stats!]! +} + +input player_aim_weapon_stats_aggregate_bool_exp { + count: player_aim_weapon_stats_aggregate_bool_exp_count +} + +input player_aim_weapon_stats_aggregate_bool_exp_count { + arguments: [player_aim_weapon_stats_select_column!] + distinct: Boolean + filter: player_aim_weapon_stats_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "player_aim_weapon_stats" +""" +type player_aim_weapon_stats_aggregate_fields { + avg: player_aim_weapon_stats_avg_fields + count(columns: [player_aim_weapon_stats_select_column!], distinct: Boolean): Int! + max: player_aim_weapon_stats_max_fields + min: player_aim_weapon_stats_min_fields + stddev: player_aim_weapon_stats_stddev_fields + stddev_pop: player_aim_weapon_stats_stddev_pop_fields + stddev_samp: player_aim_weapon_stats_stddev_samp_fields + sum: player_aim_weapon_stats_sum_fields + var_pop: player_aim_weapon_stats_var_pop_fields + var_samp: player_aim_weapon_stats_var_samp_fields + variance: player_aim_weapon_stats_variance_fields +} + +""" +order by aggregate values of table "player_aim_weapon_stats" +""" +input player_aim_weapon_stats_aggregate_order_by { + avg: player_aim_weapon_stats_avg_order_by + count: order_by + max: player_aim_weapon_stats_max_order_by + min: player_aim_weapon_stats_min_order_by + stddev: player_aim_weapon_stats_stddev_order_by + stddev_pop: player_aim_weapon_stats_stddev_pop_order_by + stddev_samp: player_aim_weapon_stats_stddev_samp_order_by + sum: player_aim_weapon_stats_sum_order_by + var_pop: player_aim_weapon_stats_var_pop_order_by + var_samp: player_aim_weapon_stats_var_samp_order_by + variance: player_aim_weapon_stats_variance_order_by +} + +""" +input type for inserting array relation for remote table "player_aim_weapon_stats" +""" +input player_aim_weapon_stats_arr_rel_insert_input { + data: [player_aim_weapon_stats_insert_input!]! + + """upsert condition""" + on_conflict: player_aim_weapon_stats_on_conflict +} + +"""aggregate avg on columns""" +type player_aim_weapon_stats_avg_fields { + first_bullet_hits: Float + first_bullet_shots: Float + hits: Float + hits_spotted: Float + shots: Float + shots_spotted: Float + steam_id: Float +} + +""" +order by avg() on columns of table "player_aim_weapon_stats" +""" +input player_aim_weapon_stats_avg_order_by { + first_bullet_hits: order_by + first_bullet_shots: order_by + hits: order_by + hits_spotted: order_by + shots: order_by + shots_spotted: order_by + steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "player_aim_weapon_stats". All fields are combined with a logical 'AND'. +""" +input player_aim_weapon_stats_bool_exp { + _and: [player_aim_weapon_stats_bool_exp!] + _not: player_aim_weapon_stats_bool_exp + _or: [player_aim_weapon_stats_bool_exp!] + first_bullet_hits: Int_comparison_exp + first_bullet_shots: Int_comparison_exp + hits: Int_comparison_exp + hits_spotted: Int_comparison_exp + match: matches_bool_exp + match_id: uuid_comparison_exp + match_map: match_maps_bool_exp + match_map_id: uuid_comparison_exp + player: players_bool_exp + shots: Int_comparison_exp + shots_spotted: Int_comparison_exp + steam_id: bigint_comparison_exp + weapon_class: String_comparison_exp +} + +""" +unique or primary key constraints on table "player_aim_weapon_stats" +""" +enum player_aim_weapon_stats_constraint { + """ + unique or primary key constraint on columns "steam_id", "weapon_class", "match_map_id" + """ + player_aim_weapon_stats_pkey +} + +""" +input type for incrementing numeric columns in table "player_aim_weapon_stats" +""" +input player_aim_weapon_stats_inc_input { + first_bullet_hits: Int + first_bullet_shots: Int + hits: Int + hits_spotted: Int + shots: Int + shots_spotted: Int + steam_id: bigint +} + +""" +input type for inserting data into table "player_aim_weapon_stats" +""" +input player_aim_weapon_stats_insert_input { + first_bullet_hits: Int + first_bullet_shots: Int + hits: Int + hits_spotted: Int + match: matches_obj_rel_insert_input + match_id: uuid + match_map: match_maps_obj_rel_insert_input + match_map_id: uuid + player: players_obj_rel_insert_input + shots: Int + shots_spotted: Int + steam_id: bigint + weapon_class: String +} + +"""aggregate max on columns""" +type player_aim_weapon_stats_max_fields { + first_bullet_hits: Int + first_bullet_shots: Int + hits: Int + hits_spotted: Int + match_id: uuid + match_map_id: uuid + shots: Int + shots_spotted: Int + steam_id: bigint + weapon_class: String +} + +""" +order by max() on columns of table "player_aim_weapon_stats" +""" +input player_aim_weapon_stats_max_order_by { + first_bullet_hits: order_by + first_bullet_shots: order_by + hits: order_by + hits_spotted: order_by + match_id: order_by + match_map_id: order_by + shots: order_by + shots_spotted: order_by + steam_id: order_by + weapon_class: order_by +} + +"""aggregate min on columns""" +type player_aim_weapon_stats_min_fields { + first_bullet_hits: Int + first_bullet_shots: Int + hits: Int + hits_spotted: Int + match_id: uuid + match_map_id: uuid + shots: Int + shots_spotted: Int + steam_id: bigint + weapon_class: String +} + +""" +order by min() on columns of table "player_aim_weapon_stats" +""" +input player_aim_weapon_stats_min_order_by { + first_bullet_hits: order_by + first_bullet_shots: order_by + hits: order_by + hits_spotted: order_by + match_id: order_by + match_map_id: order_by + shots: order_by + shots_spotted: order_by + steam_id: order_by + weapon_class: order_by +} + +""" +response of any mutation on the table "player_aim_weapon_stats" +""" +type player_aim_weapon_stats_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [player_aim_weapon_stats!]! +} + +""" +on_conflict condition type for table "player_aim_weapon_stats" +""" +input player_aim_weapon_stats_on_conflict { + constraint: player_aim_weapon_stats_constraint! + update_columns: [player_aim_weapon_stats_update_column!]! = [] + where: player_aim_weapon_stats_bool_exp +} + +"""Ordering options when selecting data from "player_aim_weapon_stats".""" +input player_aim_weapon_stats_order_by { + first_bullet_hits: order_by + first_bullet_shots: order_by + hits: order_by + hits_spotted: order_by + match: matches_order_by + match_id: order_by + match_map: match_maps_order_by + match_map_id: order_by + player: players_order_by + shots: order_by + shots_spotted: order_by + steam_id: order_by + weapon_class: order_by +} + +"""primary key columns input for table: player_aim_weapon_stats""" +input player_aim_weapon_stats_pk_columns_input { + match_map_id: uuid! + steam_id: bigint! + weapon_class: String! +} + +""" +select columns of table "player_aim_weapon_stats" +""" +enum player_aim_weapon_stats_select_column { + """column name""" + first_bullet_hits + + """column name""" + first_bullet_shots + + """column name""" + hits + + """column name""" + hits_spotted + + """column name""" + match_id + + """column name""" + match_map_id + + """column name""" + shots + + """column name""" + shots_spotted + + """column name""" + steam_id + + """column name""" + weapon_class +} + +""" +input type for updating data in table "player_aim_weapon_stats" +""" +input player_aim_weapon_stats_set_input { + first_bullet_hits: Int + first_bullet_shots: Int + hits: Int + hits_spotted: Int + match_id: uuid + match_map_id: uuid + shots: Int + shots_spotted: Int + steam_id: bigint + weapon_class: String +} + +"""aggregate stddev on columns""" +type player_aim_weapon_stats_stddev_fields { + first_bullet_hits: Float + first_bullet_shots: Float + hits: Float + hits_spotted: Float + shots: Float + shots_spotted: Float + steam_id: Float +} + +""" +order by stddev() on columns of table "player_aim_weapon_stats" +""" +input player_aim_weapon_stats_stddev_order_by { + first_bullet_hits: order_by + first_bullet_shots: order_by + hits: order_by + hits_spotted: order_by + shots: order_by + shots_spotted: order_by + steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type player_aim_weapon_stats_stddev_pop_fields { + first_bullet_hits: Float + first_bullet_shots: Float + hits: Float + hits_spotted: Float + shots: Float + shots_spotted: Float + steam_id: Float +} + +""" +order by stddev_pop() on columns of table "player_aim_weapon_stats" +""" +input player_aim_weapon_stats_stddev_pop_order_by { + first_bullet_hits: order_by + first_bullet_shots: order_by + hits: order_by + hits_spotted: order_by + shots: order_by + shots_spotted: order_by + steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type player_aim_weapon_stats_stddev_samp_fields { + first_bullet_hits: Float + first_bullet_shots: Float + hits: Float + hits_spotted: Float + shots: Float + shots_spotted: Float + steam_id: Float +} + +""" +order by stddev_samp() on columns of table "player_aim_weapon_stats" +""" +input player_aim_weapon_stats_stddev_samp_order_by { + first_bullet_hits: order_by + first_bullet_shots: order_by + hits: order_by + hits_spotted: order_by + shots: order_by + shots_spotted: order_by + steam_id: order_by +} + +""" +Streaming cursor of the table "player_aim_weapon_stats" +""" +input player_aim_weapon_stats_stream_cursor_input { + """Stream column input with initial value""" + initial_value: player_aim_weapon_stats_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input player_aim_weapon_stats_stream_cursor_value_input { + first_bullet_hits: Int + first_bullet_shots: Int + hits: Int + hits_spotted: Int + match_id: uuid + match_map_id: uuid + shots: Int + shots_spotted: Int + steam_id: bigint + weapon_class: String +} + +"""aggregate sum on columns""" +type player_aim_weapon_stats_sum_fields { + first_bullet_hits: Int + first_bullet_shots: Int + hits: Int + hits_spotted: Int + shots: Int + shots_spotted: Int + steam_id: bigint +} + +""" +order by sum() on columns of table "player_aim_weapon_stats" +""" +input player_aim_weapon_stats_sum_order_by { + first_bullet_hits: order_by + first_bullet_shots: order_by + hits: order_by + hits_spotted: order_by + shots: order_by + shots_spotted: order_by + steam_id: order_by +} + +""" +update columns of table "player_aim_weapon_stats" +""" +enum player_aim_weapon_stats_update_column { + """column name""" + first_bullet_hits + + """column name""" + first_bullet_shots + + """column name""" + hits + + """column name""" + hits_spotted + + """column name""" + match_id + + """column name""" + match_map_id + + """column name""" + shots + + """column name""" + shots_spotted + + """column name""" + steam_id + + """column name""" + weapon_class +} + +input player_aim_weapon_stats_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: player_aim_weapon_stats_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_aim_weapon_stats_set_input + + """filter the rows which have to be updated""" + where: player_aim_weapon_stats_bool_exp! +} + +"""aggregate var_pop on columns""" +type player_aim_weapon_stats_var_pop_fields { + first_bullet_hits: Float + first_bullet_shots: Float + hits: Float + hits_spotted: Float + shots: Float + shots_spotted: Float + steam_id: Float +} + +""" +order by var_pop() on columns of table "player_aim_weapon_stats" +""" +input player_aim_weapon_stats_var_pop_order_by { + first_bullet_hits: order_by + first_bullet_shots: order_by + hits: order_by + hits_spotted: order_by + shots: order_by + shots_spotted: order_by + steam_id: order_by +} + +"""aggregate var_samp on columns""" +type player_aim_weapon_stats_var_samp_fields { + first_bullet_hits: Float + first_bullet_shots: Float + hits: Float + hits_spotted: Float + shots: Float + shots_spotted: Float + steam_id: Float +} + +""" +order by var_samp() on columns of table "player_aim_weapon_stats" +""" +input player_aim_weapon_stats_var_samp_order_by { + first_bullet_hits: order_by + first_bullet_shots: order_by + hits: order_by + hits_spotted: order_by + shots: order_by + shots_spotted: order_by + steam_id: order_by +} + +"""aggregate variance on columns""" +type player_aim_weapon_stats_variance_fields { + first_bullet_hits: Float + first_bullet_shots: Float + hits: Float + hits_spotted: Float + shots: Float + shots_spotted: Float + steam_id: Float +} + +""" +order by variance() on columns of table "player_aim_weapon_stats" +""" +input player_aim_weapon_stats_variance_order_by { + first_bullet_hits: order_by + first_bullet_shots: order_by + hits: order_by + hits_spotted: order_by + shots: order_by + shots_spotted: order_by + steam_id: order_by +} + +""" +columns and relationships of "player_assists" +""" +type player_assists { + """An object relationship""" + attacked_player: players! + attacked_steam_id: bigint! + attacked_team: String! + attacker_steam_id: bigint! + attacker_team: String! + deleted_at: timestamptz + flash: Boolean! + + """ + A computed field, executes function "is_team_assist" + """ + is_team_assist: Boolean + + """An object relationship""" + match: matches! + match_id: uuid! + + """An object relationship""" + match_map: match_maps! + match_map_id: uuid! + + """An object relationship""" + player: players! + round: Int! + time: timestamptz! +} + +""" +aggregated selection of "player_assists" +""" +type player_assists_aggregate { + aggregate: player_assists_aggregate_fields + nodes: [player_assists!]! +} + +input player_assists_aggregate_bool_exp { + bool_and: player_assists_aggregate_bool_exp_bool_and + bool_or: player_assists_aggregate_bool_exp_bool_or + count: player_assists_aggregate_bool_exp_count +} + +input player_assists_aggregate_bool_exp_bool_and { + arguments: player_assists_select_column_player_assists_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: player_assists_bool_exp + predicate: Boolean_comparison_exp! +} + +input player_assists_aggregate_bool_exp_bool_or { + arguments: player_assists_select_column_player_assists_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: player_assists_bool_exp + predicate: Boolean_comparison_exp! +} + +input player_assists_aggregate_bool_exp_count { + arguments: [player_assists_select_column!] + distinct: Boolean + filter: player_assists_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "player_assists" +""" +type player_assists_aggregate_fields { + avg: player_assists_avg_fields + count(columns: [player_assists_select_column!], distinct: Boolean): Int! + max: player_assists_max_fields + min: player_assists_min_fields + stddev: player_assists_stddev_fields + stddev_pop: player_assists_stddev_pop_fields + stddev_samp: player_assists_stddev_samp_fields + sum: player_assists_sum_fields + var_pop: player_assists_var_pop_fields + var_samp: player_assists_var_samp_fields + variance: player_assists_variance_fields +} + +""" +order by aggregate values of table "player_assists" +""" +input player_assists_aggregate_order_by { + avg: player_assists_avg_order_by + count: order_by + max: player_assists_max_order_by + min: player_assists_min_order_by + stddev: player_assists_stddev_order_by + stddev_pop: player_assists_stddev_pop_order_by + stddev_samp: player_assists_stddev_samp_order_by + sum: player_assists_sum_order_by + var_pop: player_assists_var_pop_order_by + var_samp: player_assists_var_samp_order_by + variance: player_assists_variance_order_by +} + +""" +input type for inserting array relation for remote table "player_assists" +""" +input player_assists_arr_rel_insert_input { + data: [player_assists_insert_input!]! + + """upsert condition""" + on_conflict: player_assists_on_conflict +} + +"""aggregate avg on columns""" +type player_assists_avg_fields { + attacked_steam_id: Float + attacker_steam_id: Float + round: Float +} + +""" +order by avg() on columns of table "player_assists" +""" +input player_assists_avg_order_by { + attacked_steam_id: order_by + attacker_steam_id: order_by + round: order_by +} + +""" +Boolean expression to filter rows from the table "player_assists". All fields are combined with a logical 'AND'. +""" +input player_assists_bool_exp { + _and: [player_assists_bool_exp!] + _not: player_assists_bool_exp + _or: [player_assists_bool_exp!] + attacked_player: players_bool_exp + attacked_steam_id: bigint_comparison_exp + attacked_team: String_comparison_exp + attacker_steam_id: bigint_comparison_exp + attacker_team: String_comparison_exp + deleted_at: timestamptz_comparison_exp + flash: Boolean_comparison_exp + is_team_assist: Boolean_comparison_exp + match: matches_bool_exp + match_id: uuid_comparison_exp + match_map: match_maps_bool_exp + match_map_id: uuid_comparison_exp + player: players_bool_exp + round: Int_comparison_exp + time: timestamptz_comparison_exp +} + +""" +unique or primary key constraints on table "player_assists" +""" +enum player_assists_constraint { + """ + unique or primary key constraint on columns "attacker_steam_id", "attacked_steam_id", "time", "match_map_id" + """ + player_assists_pkey +} + +""" +input type for incrementing numeric columns in table "player_assists" +""" +input player_assists_inc_input { + attacked_steam_id: bigint + attacker_steam_id: bigint + round: Int +} + +""" +input type for inserting data into table "player_assists" +""" +input player_assists_insert_input { + attacked_player: players_obj_rel_insert_input + attacked_steam_id: bigint + attacked_team: String + attacker_steam_id: bigint + attacker_team: String + deleted_at: timestamptz + flash: Boolean + match: matches_obj_rel_insert_input + match_id: uuid + match_map: match_maps_obj_rel_insert_input + match_map_id: uuid + player: players_obj_rel_insert_input + round: Int + time: timestamptz +} + +"""aggregate max on columns""" +type player_assists_max_fields { + attacked_steam_id: bigint + attacked_team: String + attacker_steam_id: bigint + attacker_team: String + deleted_at: timestamptz + match_id: uuid + match_map_id: uuid + round: Int + time: timestamptz +} + +""" +order by max() on columns of table "player_assists" +""" +input player_assists_max_order_by { + attacked_steam_id: order_by + attacked_team: order_by + attacker_steam_id: order_by + attacker_team: order_by + deleted_at: order_by + match_id: order_by + match_map_id: order_by + round: order_by + time: order_by +} + +"""aggregate min on columns""" +type player_assists_min_fields { + attacked_steam_id: bigint + attacked_team: String + attacker_steam_id: bigint + attacker_team: String + deleted_at: timestamptz + match_id: uuid + match_map_id: uuid + round: Int + time: timestamptz +} + +""" +order by min() on columns of table "player_assists" +""" +input player_assists_min_order_by { + attacked_steam_id: order_by + attacked_team: order_by + attacker_steam_id: order_by + attacker_team: order_by + deleted_at: order_by + match_id: order_by + match_map_id: order_by + round: order_by + time: order_by +} + +""" +response of any mutation on the table "player_assists" +""" +type player_assists_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [player_assists!]! +} + +""" +on_conflict condition type for table "player_assists" +""" +input player_assists_on_conflict { + constraint: player_assists_constraint! + update_columns: [player_assists_update_column!]! = [] + where: player_assists_bool_exp +} + +"""Ordering options when selecting data from "player_assists".""" +input player_assists_order_by { + attacked_player: players_order_by + attacked_steam_id: order_by + attacked_team: order_by + attacker_steam_id: order_by + attacker_team: order_by + deleted_at: order_by + flash: order_by + is_team_assist: order_by + match: matches_order_by + match_id: order_by + match_map: match_maps_order_by + match_map_id: order_by + player: players_order_by + round: order_by + time: order_by +} + +"""primary key columns input for table: player_assists""" +input player_assists_pk_columns_input { + attacked_steam_id: bigint! + attacker_steam_id: bigint! + match_map_id: uuid! + time: timestamptz! +} + +""" +select columns of table "player_assists" +""" +enum player_assists_select_column { + """column name""" + attacked_steam_id + + """column name""" + attacked_team + + """column name""" + attacker_steam_id + + """column name""" + attacker_team + + """column name""" + deleted_at + + """column name""" + flash + + """column name""" + match_id + + """column name""" + match_map_id + + """column name""" + round + + """column name""" + time +} + +""" +select "player_assists_aggregate_bool_exp_bool_and_arguments_columns" columns of table "player_assists" +""" +enum player_assists_select_column_player_assists_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + flash +} + +""" +select "player_assists_aggregate_bool_exp_bool_or_arguments_columns" columns of table "player_assists" +""" +enum player_assists_select_column_player_assists_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + flash +} + +""" +input type for updating data in table "player_assists" +""" +input player_assists_set_input { + attacked_steam_id: bigint + attacked_team: String + attacker_steam_id: bigint + attacker_team: String + deleted_at: timestamptz + flash: Boolean + match_id: uuid + match_map_id: uuid + round: Int + time: timestamptz +} + +"""aggregate stddev on columns""" +type player_assists_stddev_fields { + attacked_steam_id: Float + attacker_steam_id: Float + round: Float +} + +""" +order by stddev() on columns of table "player_assists" +""" +input player_assists_stddev_order_by { + attacked_steam_id: order_by + attacker_steam_id: order_by + round: order_by +} + +"""aggregate stddev_pop on columns""" +type player_assists_stddev_pop_fields { + attacked_steam_id: Float + attacker_steam_id: Float + round: Float +} + +""" +order by stddev_pop() on columns of table "player_assists" +""" +input player_assists_stddev_pop_order_by { + attacked_steam_id: order_by + attacker_steam_id: order_by + round: order_by +} + +"""aggregate stddev_samp on columns""" +type player_assists_stddev_samp_fields { + attacked_steam_id: Float + attacker_steam_id: Float + round: Float +} + +""" +order by stddev_samp() on columns of table "player_assists" +""" +input player_assists_stddev_samp_order_by { + attacked_steam_id: order_by + attacker_steam_id: order_by + round: order_by +} + +""" +Streaming cursor of the table "player_assists" +""" +input player_assists_stream_cursor_input { + """Stream column input with initial value""" + initial_value: player_assists_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input player_assists_stream_cursor_value_input { + attacked_steam_id: bigint + attacked_team: String + attacker_steam_id: bigint + attacker_team: String + deleted_at: timestamptz + flash: Boolean + match_id: uuid + match_map_id: uuid + round: Int + time: timestamptz +} + +"""aggregate sum on columns""" +type player_assists_sum_fields { + attacked_steam_id: bigint + attacker_steam_id: bigint + round: Int +} + +""" +order by sum() on columns of table "player_assists" +""" +input player_assists_sum_order_by { + attacked_steam_id: order_by + attacker_steam_id: order_by + round: order_by +} + +""" +update columns of table "player_assists" +""" +enum player_assists_update_column { + """column name""" + attacked_steam_id + + """column name""" + attacked_team + + """column name""" + attacker_steam_id + + """column name""" + attacker_team + + """column name""" + deleted_at + + """column name""" + flash + + """column name""" + match_id + + """column name""" + match_map_id + + """column name""" + round + + """column name""" + time +} + +input player_assists_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: player_assists_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_assists_set_input + + """filter the rows which have to be updated""" + where: player_assists_bool_exp! +} + +"""aggregate var_pop on columns""" +type player_assists_var_pop_fields { + attacked_steam_id: Float + attacker_steam_id: Float + round: Float +} + +""" +order by var_pop() on columns of table "player_assists" +""" +input player_assists_var_pop_order_by { + attacked_steam_id: order_by + attacker_steam_id: order_by + round: order_by +} + +"""aggregate var_samp on columns""" +type player_assists_var_samp_fields { + attacked_steam_id: Float + attacker_steam_id: Float + round: Float +} + +""" +order by var_samp() on columns of table "player_assists" +""" +input player_assists_var_samp_order_by { + attacked_steam_id: order_by + attacker_steam_id: order_by + round: order_by +} + +"""aggregate variance on columns""" +type player_assists_variance_fields { + attacked_steam_id: Float + attacker_steam_id: Float + round: Float +} + +""" +order by variance() on columns of table "player_assists" +""" +input player_assists_variance_order_by { + attacked_steam_id: order_by + attacker_steam_id: order_by + round: order_by +} + +""" +columns and relationships of "player_career_stats_v" +""" +type player_career_stats_v { + accuracy: numeric + accuracy_spotted: numeric + counter_strafe_pct: numeric + crosshair_deg: numeric + enemy_blind_pr: numeric + flash_assists_pr: numeric + hs_pct: numeric + kast_pct: numeric + maps: Int + premier_rank: Int + rounds: Int + steam_id: bigint + survival_pct: numeric + time_to_damage_s: numeric + traded_death_pct: numeric + util_efficiency: numeric +} + +""" +aggregated selection of "player_career_stats_v" +""" +type player_career_stats_v_aggregate { + aggregate: player_career_stats_v_aggregate_fields + nodes: [player_career_stats_v!]! +} + +""" +aggregate fields of "player_career_stats_v" +""" +type player_career_stats_v_aggregate_fields { + avg: player_career_stats_v_avg_fields + count(columns: [player_career_stats_v_select_column!], distinct: Boolean): Int! + max: player_career_stats_v_max_fields + min: player_career_stats_v_min_fields + stddev: player_career_stats_v_stddev_fields + stddev_pop: player_career_stats_v_stddev_pop_fields + stddev_samp: player_career_stats_v_stddev_samp_fields + sum: player_career_stats_v_sum_fields + var_pop: player_career_stats_v_var_pop_fields + var_samp: player_career_stats_v_var_samp_fields + variance: player_career_stats_v_variance_fields +} + +"""aggregate avg on columns""" +type player_career_stats_v_avg_fields { + accuracy: Float + accuracy_spotted: Float + counter_strafe_pct: Float + crosshair_deg: Float + enemy_blind_pr: Float + flash_assists_pr: Float + hs_pct: Float + kast_pct: Float + maps: Float + premier_rank: Float + rounds: Float + steam_id: Float + survival_pct: Float + time_to_damage_s: Float + traded_death_pct: Float + util_efficiency: Float +} + +""" +Boolean expression to filter rows from the table "player_career_stats_v". All fields are combined with a logical 'AND'. +""" +input player_career_stats_v_bool_exp { + _and: [player_career_stats_v_bool_exp!] + _not: player_career_stats_v_bool_exp + _or: [player_career_stats_v_bool_exp!] + accuracy: numeric_comparison_exp + accuracy_spotted: numeric_comparison_exp + counter_strafe_pct: numeric_comparison_exp + crosshair_deg: numeric_comparison_exp + enemy_blind_pr: numeric_comparison_exp + flash_assists_pr: numeric_comparison_exp + hs_pct: numeric_comparison_exp + kast_pct: numeric_comparison_exp + maps: Int_comparison_exp + premier_rank: Int_comparison_exp + rounds: Int_comparison_exp + steam_id: bigint_comparison_exp + survival_pct: numeric_comparison_exp + time_to_damage_s: numeric_comparison_exp + traded_death_pct: numeric_comparison_exp + util_efficiency: numeric_comparison_exp +} + +"""aggregate max on columns""" +type player_career_stats_v_max_fields { + accuracy: numeric + accuracy_spotted: numeric + counter_strafe_pct: numeric + crosshair_deg: numeric + enemy_blind_pr: numeric + flash_assists_pr: numeric + hs_pct: numeric + kast_pct: numeric + maps: Int + premier_rank: Int + rounds: Int + steam_id: bigint + survival_pct: numeric + time_to_damage_s: numeric + traded_death_pct: numeric + util_efficiency: numeric +} + +"""aggregate min on columns""" +type player_career_stats_v_min_fields { + accuracy: numeric + accuracy_spotted: numeric + counter_strafe_pct: numeric + crosshair_deg: numeric + enemy_blind_pr: numeric + flash_assists_pr: numeric + hs_pct: numeric + kast_pct: numeric + maps: Int + premier_rank: Int + rounds: Int + steam_id: bigint + survival_pct: numeric + time_to_damage_s: numeric + traded_death_pct: numeric + util_efficiency: numeric +} + +"""Ordering options when selecting data from "player_career_stats_v".""" +input player_career_stats_v_order_by { + accuracy: order_by + accuracy_spotted: order_by + counter_strafe_pct: order_by + crosshair_deg: order_by + enemy_blind_pr: order_by + flash_assists_pr: order_by + hs_pct: order_by + kast_pct: order_by + maps: order_by + premier_rank: order_by + rounds: order_by + steam_id: order_by + survival_pct: order_by + time_to_damage_s: order_by + traded_death_pct: order_by + util_efficiency: order_by +} + +""" +select columns of table "player_career_stats_v" +""" +enum player_career_stats_v_select_column { + """column name""" + accuracy + + """column name""" + accuracy_spotted + + """column name""" + counter_strafe_pct + + """column name""" + crosshair_deg + + """column name""" + enemy_blind_pr + + """column name""" + flash_assists_pr + + """column name""" + hs_pct + + """column name""" + kast_pct + + """column name""" + maps + + """column name""" + premier_rank + + """column name""" + rounds + + """column name""" + steam_id + + """column name""" + survival_pct + + """column name""" + time_to_damage_s + + """column name""" + traded_death_pct + + """column name""" + util_efficiency +} + +"""aggregate stddev on columns""" +type player_career_stats_v_stddev_fields { + accuracy: Float + accuracy_spotted: Float + counter_strafe_pct: Float + crosshair_deg: Float + enemy_blind_pr: Float + flash_assists_pr: Float + hs_pct: Float + kast_pct: Float + maps: Float + premier_rank: Float + rounds: Float + steam_id: Float + survival_pct: Float + time_to_damage_s: Float + traded_death_pct: Float + util_efficiency: Float +} + +"""aggregate stddev_pop on columns""" +type player_career_stats_v_stddev_pop_fields { + accuracy: Float + accuracy_spotted: Float + counter_strafe_pct: Float + crosshair_deg: Float + enemy_blind_pr: Float + flash_assists_pr: Float + hs_pct: Float + kast_pct: Float + maps: Float + premier_rank: Float + rounds: Float + steam_id: Float + survival_pct: Float + time_to_damage_s: Float + traded_death_pct: Float + util_efficiency: Float +} + +"""aggregate stddev_samp on columns""" +type player_career_stats_v_stddev_samp_fields { + accuracy: Float + accuracy_spotted: Float + counter_strafe_pct: Float + crosshair_deg: Float + enemy_blind_pr: Float + flash_assists_pr: Float + hs_pct: Float + kast_pct: Float + maps: Float + premier_rank: Float + rounds: Float + steam_id: Float + survival_pct: Float + time_to_damage_s: Float + traded_death_pct: Float + util_efficiency: Float +} + +""" +Streaming cursor of the table "player_career_stats_v" +""" +input player_career_stats_v_stream_cursor_input { + """Stream column input with initial value""" + initial_value: player_career_stats_v_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input player_career_stats_v_stream_cursor_value_input { + accuracy: numeric + accuracy_spotted: numeric + counter_strafe_pct: numeric + crosshair_deg: numeric + enemy_blind_pr: numeric + flash_assists_pr: numeric + hs_pct: numeric + kast_pct: numeric + maps: Int + premier_rank: Int + rounds: Int + steam_id: bigint + survival_pct: numeric + time_to_damage_s: numeric + traded_death_pct: numeric + util_efficiency: numeric +} + +"""aggregate sum on columns""" +type player_career_stats_v_sum_fields { + accuracy: numeric + accuracy_spotted: numeric + counter_strafe_pct: numeric + crosshair_deg: numeric + enemy_blind_pr: numeric + flash_assists_pr: numeric + hs_pct: numeric + kast_pct: numeric + maps: Int + premier_rank: Int + rounds: Int + steam_id: bigint + survival_pct: numeric + time_to_damage_s: numeric + traded_death_pct: numeric + util_efficiency: numeric +} + +"""aggregate var_pop on columns""" +type player_career_stats_v_var_pop_fields { + accuracy: Float + accuracy_spotted: Float + counter_strafe_pct: Float + crosshair_deg: Float + enemy_blind_pr: Float + flash_assists_pr: Float + hs_pct: Float + kast_pct: Float + maps: Float + premier_rank: Float + rounds: Float + steam_id: Float + survival_pct: Float + time_to_damage_s: Float + traded_death_pct: Float + util_efficiency: Float +} + +"""aggregate var_samp on columns""" +type player_career_stats_v_var_samp_fields { + accuracy: Float + accuracy_spotted: Float + counter_strafe_pct: Float + crosshair_deg: Float + enemy_blind_pr: Float + flash_assists_pr: Float + hs_pct: Float + kast_pct: Float + maps: Float + premier_rank: Float + rounds: Float + steam_id: Float + survival_pct: Float + time_to_damage_s: Float + traded_death_pct: Float + util_efficiency: Float +} + +"""aggregate variance on columns""" +type player_career_stats_v_variance_fields { + accuracy: Float + accuracy_spotted: Float + counter_strafe_pct: Float + crosshair_deg: Float + enemy_blind_pr: Float + flash_assists_pr: Float + hs_pct: Float + kast_pct: Float + maps: Float + premier_rank: Float + rounds: Float + steam_id: Float + survival_pct: Float + time_to_damage_s: Float + traded_death_pct: Float + util_efficiency: Float +} + +""" +columns and relationships of "player_damages" +""" +type player_damages { + armor: Int! + attacked_location: String! + attacked_location_coordinates: String + + """An object relationship""" + attacked_player: players! + attacked_steam_id: bigint! + attacked_team: String! + attacker_location: String + attacker_location_coordinates: String + attacker_steam_id: bigint + attacker_team: String + damage: Int! + damage_armor: Int! + deleted_at: timestamptz + health: Int! + hitgroup: String! + id: uuid! + + """An object relationship""" + match: matches! + match_id: uuid! + + """An object relationship""" + match_map: match_maps! + match_map_id: uuid! + + """An object relationship""" + player: players + round: numeric! + + """ + A computed field, executes function "is_team_damage" + """ + team_damage: Boolean + time: timestamptz! + with: String +} + +""" +aggregated selection of "player_damages" +""" +type player_damages_aggregate { + aggregate: player_damages_aggregate_fields + nodes: [player_damages!]! +} + +input player_damages_aggregate_bool_exp { + count: player_damages_aggregate_bool_exp_count +} + +input player_damages_aggregate_bool_exp_count { + arguments: [player_damages_select_column!] + distinct: Boolean + filter: player_damages_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "player_damages" +""" +type player_damages_aggregate_fields { + avg: player_damages_avg_fields + count(columns: [player_damages_select_column!], distinct: Boolean): Int! + max: player_damages_max_fields + min: player_damages_min_fields + stddev: player_damages_stddev_fields + stddev_pop: player_damages_stddev_pop_fields + stddev_samp: player_damages_stddev_samp_fields + sum: player_damages_sum_fields + var_pop: player_damages_var_pop_fields + var_samp: player_damages_var_samp_fields + variance: player_damages_variance_fields +} + +""" +order by aggregate values of table "player_damages" +""" +input player_damages_aggregate_order_by { + avg: player_damages_avg_order_by + count: order_by + max: player_damages_max_order_by + min: player_damages_min_order_by + stddev: player_damages_stddev_order_by + stddev_pop: player_damages_stddev_pop_order_by + stddev_samp: player_damages_stddev_samp_order_by + sum: player_damages_sum_order_by + var_pop: player_damages_var_pop_order_by + var_samp: player_damages_var_samp_order_by + variance: player_damages_variance_order_by +} + +""" +input type for inserting array relation for remote table "player_damages" +""" +input player_damages_arr_rel_insert_input { + data: [player_damages_insert_input!]! + + """upsert condition""" + on_conflict: player_damages_on_conflict +} + +"""aggregate avg on columns""" +type player_damages_avg_fields { + armor: Float + attacked_steam_id: Float + attacker_steam_id: Float + damage: Float + damage_armor: Float + health: Float + round: Float +} + +""" +order by avg() on columns of table "player_damages" +""" +input player_damages_avg_order_by { + armor: order_by + attacked_steam_id: order_by + attacker_steam_id: order_by + damage: order_by + damage_armor: order_by + health: order_by + round: order_by +} + +""" +Boolean expression to filter rows from the table "player_damages". All fields are combined with a logical 'AND'. +""" +input player_damages_bool_exp { + _and: [player_damages_bool_exp!] + _not: player_damages_bool_exp + _or: [player_damages_bool_exp!] + armor: Int_comparison_exp + attacked_location: String_comparison_exp + attacked_location_coordinates: String_comparison_exp + attacked_player: players_bool_exp + attacked_steam_id: bigint_comparison_exp + attacked_team: String_comparison_exp + attacker_location: String_comparison_exp + attacker_location_coordinates: String_comparison_exp + attacker_steam_id: bigint_comparison_exp + attacker_team: String_comparison_exp + damage: Int_comparison_exp + damage_armor: Int_comparison_exp + deleted_at: timestamptz_comparison_exp + health: Int_comparison_exp + hitgroup: String_comparison_exp + id: uuid_comparison_exp + match: matches_bool_exp + match_id: uuid_comparison_exp + match_map: match_maps_bool_exp + match_map_id: uuid_comparison_exp + player: players_bool_exp + round: numeric_comparison_exp + team_damage: Boolean_comparison_exp + time: timestamptz_comparison_exp + with: String_comparison_exp +} + +""" +unique or primary key constraints on table "player_damages" +""" +enum player_damages_constraint { + """ + unique or primary key constraint on columns "id", "time", "match_map_id" + """ + player_damages_pkey +} + +""" +input type for incrementing numeric columns in table "player_damages" +""" +input player_damages_inc_input { + armor: Int + attacked_steam_id: bigint + attacker_steam_id: bigint + damage: Int + damage_armor: Int + health: Int + round: numeric +} + +""" +input type for inserting data into table "player_damages" +""" +input player_damages_insert_input { + armor: Int + attacked_location: String + attacked_location_coordinates: String + attacked_player: players_obj_rel_insert_input + attacked_steam_id: bigint + attacked_team: String + attacker_location: String + attacker_location_coordinates: String + attacker_steam_id: bigint + attacker_team: String + damage: Int + damage_armor: Int + deleted_at: timestamptz + health: Int + hitgroup: String + id: uuid + match: matches_obj_rel_insert_input + match_id: uuid + match_map: match_maps_obj_rel_insert_input + match_map_id: uuid + player: players_obj_rel_insert_input + round: numeric + time: timestamptz + with: String +} + +"""aggregate max on columns""" +type player_damages_max_fields { + armor: Int + attacked_location: String + attacked_location_coordinates: String + attacked_steam_id: bigint + attacked_team: String + attacker_location: String + attacker_location_coordinates: String + attacker_steam_id: bigint + attacker_team: String + damage: Int + damage_armor: Int + deleted_at: timestamptz + health: Int + hitgroup: String + id: uuid + match_id: uuid + match_map_id: uuid + round: numeric + time: timestamptz + with: String +} + +""" +order by max() on columns of table "player_damages" +""" +input player_damages_max_order_by { + armor: order_by + attacked_location: order_by + attacked_location_coordinates: order_by + attacked_steam_id: order_by + attacked_team: order_by + attacker_location: order_by + attacker_location_coordinates: order_by + attacker_steam_id: order_by + attacker_team: order_by + damage: order_by + damage_armor: order_by + deleted_at: order_by + health: order_by + hitgroup: order_by + id: order_by + match_id: order_by + match_map_id: order_by + round: order_by + time: order_by + with: order_by +} + +"""aggregate min on columns""" +type player_damages_min_fields { + armor: Int + attacked_location: String + attacked_location_coordinates: String + attacked_steam_id: bigint + attacked_team: String + attacker_location: String + attacker_location_coordinates: String + attacker_steam_id: bigint + attacker_team: String + damage: Int + damage_armor: Int + deleted_at: timestamptz + health: Int + hitgroup: String + id: uuid + match_id: uuid + match_map_id: uuid + round: numeric + time: timestamptz + with: String +} + +""" +order by min() on columns of table "player_damages" +""" +input player_damages_min_order_by { + armor: order_by + attacked_location: order_by + attacked_location_coordinates: order_by + attacked_steam_id: order_by + attacked_team: order_by + attacker_location: order_by + attacker_location_coordinates: order_by + attacker_steam_id: order_by + attacker_team: order_by + damage: order_by + damage_armor: order_by + deleted_at: order_by + health: order_by + hitgroup: order_by + id: order_by + match_id: order_by + match_map_id: order_by + round: order_by + time: order_by + with: order_by +} + +""" +response of any mutation on the table "player_damages" +""" +type player_damages_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [player_damages!]! +} + +""" +on_conflict condition type for table "player_damages" +""" +input player_damages_on_conflict { + constraint: player_damages_constraint! + update_columns: [player_damages_update_column!]! = [] + where: player_damages_bool_exp +} + +"""Ordering options when selecting data from "player_damages".""" +input player_damages_order_by { + armor: order_by + attacked_location: order_by + attacked_location_coordinates: order_by + attacked_player: players_order_by + attacked_steam_id: order_by + attacked_team: order_by + attacker_location: order_by + attacker_location_coordinates: order_by + attacker_steam_id: order_by + attacker_team: order_by + damage: order_by + damage_armor: order_by + deleted_at: order_by + health: order_by + hitgroup: order_by + id: order_by + match: matches_order_by + match_id: order_by + match_map: match_maps_order_by + match_map_id: order_by + player: players_order_by + round: order_by + team_damage: order_by + time: order_by + with: order_by +} + +"""primary key columns input for table: player_damages""" +input player_damages_pk_columns_input { + id: uuid! + match_map_id: uuid! + time: timestamptz! +} + +""" +select columns of table "player_damages" +""" +enum player_damages_select_column { + """column name""" + armor + + """column name""" + attacked_location + + """column name""" + attacked_location_coordinates + + """column name""" + attacked_steam_id + + """column name""" + attacked_team + + """column name""" + attacker_location + + """column name""" + attacker_location_coordinates + + """column name""" + attacker_steam_id + + """column name""" + attacker_team + + """column name""" + damage + + """column name""" + damage_armor + + """column name""" + deleted_at + + """column name""" + health + + """column name""" + hitgroup + + """column name""" + id + + """column name""" + match_id + + """column name""" + match_map_id + + """column name""" + round + + """column name""" + time + + """column name""" + with +} + +""" +input type for updating data in table "player_damages" +""" +input player_damages_set_input { + armor: Int + attacked_location: String + attacked_location_coordinates: String + attacked_steam_id: bigint + attacked_team: String + attacker_location: String + attacker_location_coordinates: String + attacker_steam_id: bigint + attacker_team: String + damage: Int + damage_armor: Int + deleted_at: timestamptz + health: Int + hitgroup: String + id: uuid + match_id: uuid + match_map_id: uuid + round: numeric + time: timestamptz + with: String +} + +"""aggregate stddev on columns""" +type player_damages_stddev_fields { + armor: Float + attacked_steam_id: Float + attacker_steam_id: Float + damage: Float + damage_armor: Float + health: Float + round: Float +} + +""" +order by stddev() on columns of table "player_damages" +""" +input player_damages_stddev_order_by { + armor: order_by + attacked_steam_id: order_by + attacker_steam_id: order_by + damage: order_by + damage_armor: order_by + health: order_by + round: order_by +} + +"""aggregate stddev_pop on columns""" +type player_damages_stddev_pop_fields { + armor: Float + attacked_steam_id: Float + attacker_steam_id: Float + damage: Float + damage_armor: Float + health: Float + round: Float +} + +""" +order by stddev_pop() on columns of table "player_damages" +""" +input player_damages_stddev_pop_order_by { + armor: order_by + attacked_steam_id: order_by + attacker_steam_id: order_by + damage: order_by + damage_armor: order_by + health: order_by + round: order_by +} + +"""aggregate stddev_samp on columns""" +type player_damages_stddev_samp_fields { + armor: Float + attacked_steam_id: Float + attacker_steam_id: Float + damage: Float + damage_armor: Float + health: Float + round: Float +} + +""" +order by stddev_samp() on columns of table "player_damages" +""" +input player_damages_stddev_samp_order_by { + armor: order_by + attacked_steam_id: order_by + attacker_steam_id: order_by + damage: order_by + damage_armor: order_by + health: order_by + round: order_by +} + +""" +Streaming cursor of the table "player_damages" +""" +input player_damages_stream_cursor_input { + """Stream column input with initial value""" + initial_value: player_damages_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input player_damages_stream_cursor_value_input { + armor: Int + attacked_location: String + attacked_location_coordinates: String + attacked_steam_id: bigint + attacked_team: String + attacker_location: String + attacker_location_coordinates: String + attacker_steam_id: bigint + attacker_team: String + damage: Int + damage_armor: Int + deleted_at: timestamptz + health: Int + hitgroup: String + id: uuid + match_id: uuid + match_map_id: uuid + round: numeric + time: timestamptz + with: String +} + +"""aggregate sum on columns""" +type player_damages_sum_fields { + armor: Int + attacked_steam_id: bigint + attacker_steam_id: bigint + damage: Int + damage_armor: Int + health: Int + round: numeric +} + +""" +order by sum() on columns of table "player_damages" +""" +input player_damages_sum_order_by { + armor: order_by + attacked_steam_id: order_by + attacker_steam_id: order_by + damage: order_by + damage_armor: order_by + health: order_by + round: order_by +} + +""" +update columns of table "player_damages" +""" +enum player_damages_update_column { + """column name""" + armor + + """column name""" + attacked_location + + """column name""" + attacked_location_coordinates + + """column name""" + attacked_steam_id + + """column name""" + attacked_team + + """column name""" + attacker_location + + """column name""" + attacker_location_coordinates + + """column name""" + attacker_steam_id + + """column name""" + attacker_team + + """column name""" + damage + + """column name""" + damage_armor + + """column name""" + deleted_at + + """column name""" + health + + """column name""" + hitgroup + + """column name""" + id + + """column name""" + match_id + + """column name""" + match_map_id + + """column name""" + round + + """column name""" + time + + """column name""" + with +} + +input player_damages_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: player_damages_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_damages_set_input + + """filter the rows which have to be updated""" + where: player_damages_bool_exp! +} + +"""aggregate var_pop on columns""" +type player_damages_var_pop_fields { + armor: Float + attacked_steam_id: Float + attacker_steam_id: Float + damage: Float + damage_armor: Float + health: Float + round: Float +} + +""" +order by var_pop() on columns of table "player_damages" +""" +input player_damages_var_pop_order_by { + armor: order_by + attacked_steam_id: order_by + attacker_steam_id: order_by + damage: order_by + damage_armor: order_by + health: order_by + round: order_by +} + +"""aggregate var_samp on columns""" +type player_damages_var_samp_fields { + armor: Float + attacked_steam_id: Float + attacker_steam_id: Float + damage: Float + damage_armor: Float + health: Float + round: Float +} + +""" +order by var_samp() on columns of table "player_damages" +""" +input player_damages_var_samp_order_by { + armor: order_by + attacked_steam_id: order_by + attacker_steam_id: order_by + damage: order_by + damage_armor: order_by + health: order_by + round: order_by +} + +"""aggregate variance on columns""" +type player_damages_variance_fields { + armor: Float + attacked_steam_id: Float + attacker_steam_id: Float + damage: Float + damage_armor: Float + health: Float + round: Float +} + +""" +order by variance() on columns of table "player_damages" +""" +input player_damages_variance_order_by { + armor: order_by + attacked_steam_id: order_by + attacker_steam_id: order_by + damage: order_by + damage_armor: order_by + health: order_by + round: order_by +} + +""" +columns and relationships of "player_elo" +""" +type player_elo { + actual_score: float8 + assists: Int + change: numeric! + created_at: timestamptz! + current: numeric! + damage: Int + damage_percent: float8 + deaths: Int + expected_score: float8 + impact: numeric + k_factor: Int + kda: float8 + kills: Int + map_losses: Int + map_wins: Int + + """An object relationship""" + match: matches! + match_id: uuid! + opponent_team_elo_avg: float8 + performance_multiplier: float8 + + """An object relationship""" + player: players! + player_team_elo_avg: float8 + rating_for_expected: float8 + + """An object relationship""" + season: seasons + season_id: uuid + series_multiplier: Int + steam_id: bigint! + team_avg_kda: float8 + type: e_match_types_enum! +} + +""" +aggregated selection of "player_elo" +""" +type player_elo_aggregate { + aggregate: player_elo_aggregate_fields + nodes: [player_elo!]! +} + +""" +aggregate fields of "player_elo" +""" +type player_elo_aggregate_fields { + avg: player_elo_avg_fields + count(columns: [player_elo_select_column!], distinct: Boolean): Int! + max: player_elo_max_fields + min: player_elo_min_fields + stddev: player_elo_stddev_fields + stddev_pop: player_elo_stddev_pop_fields + stddev_samp: player_elo_stddev_samp_fields + sum: player_elo_sum_fields + var_pop: player_elo_var_pop_fields + var_samp: player_elo_var_samp_fields + variance: player_elo_variance_fields +} + +"""aggregate avg on columns""" +type player_elo_avg_fields { + actual_score: Float + assists: Float + change: Float + current: Float + damage: Float + damage_percent: Float + deaths: Float + expected_score: Float + impact: Float + k_factor: Float + kda: Float + kills: Float + map_losses: Float + map_wins: Float + opponent_team_elo_avg: Float + performance_multiplier: Float + player_team_elo_avg: Float + rating_for_expected: Float + series_multiplier: Float + steam_id: Float + team_avg_kda: Float +} + +""" +Boolean expression to filter rows from the table "player_elo". All fields are combined with a logical 'AND'. +""" +input player_elo_bool_exp { + _and: [player_elo_bool_exp!] + _not: player_elo_bool_exp + _or: [player_elo_bool_exp!] + actual_score: float8_comparison_exp + assists: Int_comparison_exp + change: numeric_comparison_exp + created_at: timestamptz_comparison_exp + current: numeric_comparison_exp + damage: Int_comparison_exp + damage_percent: float8_comparison_exp + deaths: Int_comparison_exp + expected_score: float8_comparison_exp + impact: numeric_comparison_exp + k_factor: Int_comparison_exp + kda: float8_comparison_exp + kills: Int_comparison_exp + map_losses: Int_comparison_exp + map_wins: Int_comparison_exp + match: matches_bool_exp + match_id: uuid_comparison_exp + opponent_team_elo_avg: float8_comparison_exp + performance_multiplier: float8_comparison_exp + player: players_bool_exp + player_team_elo_avg: float8_comparison_exp + rating_for_expected: float8_comparison_exp + season: seasons_bool_exp + season_id: uuid_comparison_exp + series_multiplier: Int_comparison_exp + steam_id: bigint_comparison_exp + team_avg_kda: float8_comparison_exp + type: e_match_types_enum_comparison_exp +} + +""" +unique or primary key constraints on table "player_elo" +""" +enum player_elo_constraint { + """ + unique or primary key constraint on columns "steam_id", "type", "match_id" + """ + player_elo_pkey +} + +""" +input type for incrementing numeric columns in table "player_elo" +""" +input player_elo_inc_input { + actual_score: float8 + assists: Int + change: numeric + current: numeric + damage: Int + damage_percent: float8 + deaths: Int + expected_score: float8 + impact: numeric + k_factor: Int + kda: float8 + kills: Int + map_losses: Int + map_wins: Int + opponent_team_elo_avg: float8 + performance_multiplier: float8 + player_team_elo_avg: float8 + rating_for_expected: float8 + series_multiplier: Int + steam_id: bigint + team_avg_kda: float8 +} + +""" +input type for inserting data into table "player_elo" +""" +input player_elo_insert_input { + actual_score: float8 + assists: Int + change: numeric + created_at: timestamptz + current: numeric + damage: Int + damage_percent: float8 + deaths: Int + expected_score: float8 + impact: numeric + k_factor: Int + kda: float8 + kills: Int + map_losses: Int + map_wins: Int + match: matches_obj_rel_insert_input + match_id: uuid + opponent_team_elo_avg: float8 + performance_multiplier: float8 + player: players_obj_rel_insert_input + player_team_elo_avg: float8 + rating_for_expected: float8 + season: seasons_obj_rel_insert_input + season_id: uuid + series_multiplier: Int + steam_id: bigint + team_avg_kda: float8 + type: e_match_types_enum +} + +"""aggregate max on columns""" +type player_elo_max_fields { + actual_score: float8 + assists: Int + change: numeric + created_at: timestamptz + current: numeric + damage: Int + damage_percent: float8 + deaths: Int + expected_score: float8 + impact: numeric + k_factor: Int + kda: float8 + kills: Int + map_losses: Int + map_wins: Int + match_id: uuid + opponent_team_elo_avg: float8 + performance_multiplier: float8 + player_team_elo_avg: float8 + rating_for_expected: float8 + season_id: uuid + series_multiplier: Int + steam_id: bigint + team_avg_kda: float8 +} + +"""aggregate min on columns""" +type player_elo_min_fields { + actual_score: float8 + assists: Int + change: numeric + created_at: timestamptz + current: numeric + damage: Int + damage_percent: float8 + deaths: Int + expected_score: float8 + impact: numeric + k_factor: Int + kda: float8 + kills: Int + map_losses: Int + map_wins: Int + match_id: uuid + opponent_team_elo_avg: float8 + performance_multiplier: float8 + player_team_elo_avg: float8 + rating_for_expected: float8 + season_id: uuid + series_multiplier: Int + steam_id: bigint + team_avg_kda: float8 +} + +""" +response of any mutation on the table "player_elo" +""" +type player_elo_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [player_elo!]! +} + +""" +on_conflict condition type for table "player_elo" +""" +input player_elo_on_conflict { + constraint: player_elo_constraint! + update_columns: [player_elo_update_column!]! = [] + where: player_elo_bool_exp +} + +"""Ordering options when selecting data from "player_elo".""" +input player_elo_order_by { + actual_score: order_by + assists: order_by + change: order_by + created_at: order_by + current: order_by + damage: order_by + damage_percent: order_by + deaths: order_by + expected_score: order_by + impact: order_by + k_factor: order_by + kda: order_by + kills: order_by + map_losses: order_by + map_wins: order_by + match: matches_order_by + match_id: order_by + opponent_team_elo_avg: order_by + performance_multiplier: order_by + player: players_order_by + player_team_elo_avg: order_by + rating_for_expected: order_by + season: seasons_order_by + season_id: order_by + series_multiplier: order_by + steam_id: order_by + team_avg_kda: order_by + type: order_by +} + +"""primary key columns input for table: player_elo""" +input player_elo_pk_columns_input { + match_id: uuid! + steam_id: bigint! + type: e_match_types_enum! +} + +""" +select columns of table "player_elo" +""" +enum player_elo_select_column { + """column name""" + actual_score + + """column name""" + assists + + """column name""" + change + + """column name""" + created_at + + """column name""" + current + + """column name""" + damage + + """column name""" + damage_percent + + """column name""" + deaths + + """column name""" + expected_score + + """column name""" + impact + + """column name""" + k_factor + + """column name""" + kda + + """column name""" + kills + + """column name""" + map_losses + + """column name""" + map_wins + + """column name""" + match_id + + """column name""" + opponent_team_elo_avg + + """column name""" + performance_multiplier + + """column name""" + player_team_elo_avg + + """column name""" + rating_for_expected + + """column name""" + season_id + + """column name""" + series_multiplier + + """column name""" + steam_id + + """column name""" + team_avg_kda + + """column name""" + type +} + +""" +input type for updating data in table "player_elo" +""" +input player_elo_set_input { + actual_score: float8 + assists: Int + change: numeric + created_at: timestamptz + current: numeric + damage: Int + damage_percent: float8 + deaths: Int + expected_score: float8 + impact: numeric + k_factor: Int + kda: float8 + kills: Int + map_losses: Int + map_wins: Int + match_id: uuid + opponent_team_elo_avg: float8 + performance_multiplier: float8 + player_team_elo_avg: float8 + rating_for_expected: float8 + season_id: uuid + series_multiplier: Int + steam_id: bigint + team_avg_kda: float8 + type: e_match_types_enum +} + +"""aggregate stddev on columns""" +type player_elo_stddev_fields { + actual_score: Float + assists: Float + change: Float + current: Float + damage: Float + damage_percent: Float + deaths: Float + expected_score: Float + impact: Float + k_factor: Float + kda: Float + kills: Float + map_losses: Float + map_wins: Float + opponent_team_elo_avg: Float + performance_multiplier: Float + player_team_elo_avg: Float + rating_for_expected: Float + series_multiplier: Float + steam_id: Float + team_avg_kda: Float +} + +"""aggregate stddev_pop on columns""" +type player_elo_stddev_pop_fields { + actual_score: Float + assists: Float + change: Float + current: Float + damage: Float + damage_percent: Float + deaths: Float + expected_score: Float + impact: Float + k_factor: Float + kda: Float + kills: Float + map_losses: Float + map_wins: Float + opponent_team_elo_avg: Float + performance_multiplier: Float + player_team_elo_avg: Float + rating_for_expected: Float + series_multiplier: Float + steam_id: Float + team_avg_kda: Float +} + +"""aggregate stddev_samp on columns""" +type player_elo_stddev_samp_fields { + actual_score: Float + assists: Float + change: Float + current: Float + damage: Float + damage_percent: Float + deaths: Float + expected_score: Float + impact: Float + k_factor: Float + kda: Float + kills: Float + map_losses: Float + map_wins: Float + opponent_team_elo_avg: Float + performance_multiplier: Float + player_team_elo_avg: Float + rating_for_expected: Float + series_multiplier: Float + steam_id: Float + team_avg_kda: Float +} + +""" +Streaming cursor of the table "player_elo" +""" +input player_elo_stream_cursor_input { + """Stream column input with initial value""" + initial_value: player_elo_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input player_elo_stream_cursor_value_input { + actual_score: float8 + assists: Int + change: numeric + created_at: timestamptz + current: numeric + damage: Int + damage_percent: float8 + deaths: Int + expected_score: float8 + impact: numeric + k_factor: Int + kda: float8 + kills: Int + map_losses: Int + map_wins: Int + match_id: uuid + opponent_team_elo_avg: float8 + performance_multiplier: float8 + player_team_elo_avg: float8 + rating_for_expected: float8 + season_id: uuid + series_multiplier: Int + steam_id: bigint + team_avg_kda: float8 + type: e_match_types_enum +} + +"""aggregate sum on columns""" +type player_elo_sum_fields { + actual_score: float8 + assists: Int + change: numeric + current: numeric + damage: Int + damage_percent: float8 + deaths: Int + expected_score: float8 + impact: numeric + k_factor: Int + kda: float8 + kills: Int + map_losses: Int + map_wins: Int + opponent_team_elo_avg: float8 + performance_multiplier: float8 + player_team_elo_avg: float8 + rating_for_expected: float8 + series_multiplier: Int + steam_id: bigint + team_avg_kda: float8 +} + +""" +update columns of table "player_elo" +""" +enum player_elo_update_column { + """column name""" + actual_score + + """column name""" + assists + + """column name""" + change + + """column name""" + created_at + + """column name""" + current + + """column name""" + damage + + """column name""" + damage_percent + + """column name""" + deaths + + """column name""" + expected_score + + """column name""" + impact + + """column name""" + k_factor + + """column name""" + kda + + """column name""" + kills + + """column name""" + map_losses + + """column name""" + map_wins + + """column name""" + match_id + + """column name""" + opponent_team_elo_avg + + """column name""" + performance_multiplier + + """column name""" + player_team_elo_avg + + """column name""" + rating_for_expected + + """column name""" + season_id + + """column name""" + series_multiplier + + """column name""" + steam_id + + """column name""" + team_avg_kda + + """column name""" + type +} + +input player_elo_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: player_elo_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_elo_set_input + + """filter the rows which have to be updated""" + where: player_elo_bool_exp! +} + +"""aggregate var_pop on columns""" +type player_elo_var_pop_fields { + actual_score: Float + assists: Float + change: Float + current: Float + damage: Float + damage_percent: Float + deaths: Float + expected_score: Float + impact: Float + k_factor: Float + kda: Float + kills: Float + map_losses: Float + map_wins: Float + opponent_team_elo_avg: Float + performance_multiplier: Float + player_team_elo_avg: Float + rating_for_expected: Float + series_multiplier: Float + steam_id: Float + team_avg_kda: Float +} + +"""aggregate var_samp on columns""" +type player_elo_var_samp_fields { + actual_score: Float + assists: Float + change: Float + current: Float + damage: Float + damage_percent: Float + deaths: Float + expected_score: Float + impact: Float + k_factor: Float + kda: Float + kills: Float + map_losses: Float + map_wins: Float + opponent_team_elo_avg: Float + performance_multiplier: Float + player_team_elo_avg: Float + rating_for_expected: Float + series_multiplier: Float + steam_id: Float + team_avg_kda: Float +} + +"""aggregate variance on columns""" +type player_elo_variance_fields { + actual_score: Float + assists: Float + change: Float + current: Float + damage: Float + damage_percent: Float + deaths: Float + expected_score: Float + impact: Float + k_factor: Float + kda: Float + kills: Float + map_losses: Float + map_wins: Float + opponent_team_elo_avg: Float + performance_multiplier: Float + player_team_elo_avg: Float + rating_for_expected: Float + series_multiplier: Float + steam_id: Float + team_avg_kda: Float +} + +""" +columns and relationships of "player_faceit_rank_history" +""" +type player_faceit_rank_history { + elo: Int + id: uuid! + + """An object relationship""" + match: matches! + match_id: uuid! + observed_at: timestamptz! + + """An object relationship""" + player: players! + previous_rank: Int + skill_level: Int! + steam_id: bigint! +} + +""" +aggregated selection of "player_faceit_rank_history" +""" +type player_faceit_rank_history_aggregate { + aggregate: player_faceit_rank_history_aggregate_fields + nodes: [player_faceit_rank_history!]! +} + +input player_faceit_rank_history_aggregate_bool_exp { + count: player_faceit_rank_history_aggregate_bool_exp_count +} + +input player_faceit_rank_history_aggregate_bool_exp_count { + arguments: [player_faceit_rank_history_select_column!] + distinct: Boolean + filter: player_faceit_rank_history_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "player_faceit_rank_history" +""" +type player_faceit_rank_history_aggregate_fields { + avg: player_faceit_rank_history_avg_fields + count(columns: [player_faceit_rank_history_select_column!], distinct: Boolean): Int! + max: player_faceit_rank_history_max_fields + min: player_faceit_rank_history_min_fields + stddev: player_faceit_rank_history_stddev_fields + stddev_pop: player_faceit_rank_history_stddev_pop_fields + stddev_samp: player_faceit_rank_history_stddev_samp_fields + sum: player_faceit_rank_history_sum_fields + var_pop: player_faceit_rank_history_var_pop_fields + var_samp: player_faceit_rank_history_var_samp_fields + variance: player_faceit_rank_history_variance_fields +} + +""" +order by aggregate values of table "player_faceit_rank_history" +""" +input player_faceit_rank_history_aggregate_order_by { + avg: player_faceit_rank_history_avg_order_by + count: order_by + max: player_faceit_rank_history_max_order_by + min: player_faceit_rank_history_min_order_by + stddev: player_faceit_rank_history_stddev_order_by + stddev_pop: player_faceit_rank_history_stddev_pop_order_by + stddev_samp: player_faceit_rank_history_stddev_samp_order_by + sum: player_faceit_rank_history_sum_order_by + var_pop: player_faceit_rank_history_var_pop_order_by + var_samp: player_faceit_rank_history_var_samp_order_by + variance: player_faceit_rank_history_variance_order_by +} + +""" +input type for inserting array relation for remote table "player_faceit_rank_history" +""" +input player_faceit_rank_history_arr_rel_insert_input { + data: [player_faceit_rank_history_insert_input!]! + + """upsert condition""" + on_conflict: player_faceit_rank_history_on_conflict +} + +"""aggregate avg on columns""" +type player_faceit_rank_history_avg_fields { + elo: Float + previous_rank: Float + skill_level: Float + steam_id: Float +} + +""" +order by avg() on columns of table "player_faceit_rank_history" +""" +input player_faceit_rank_history_avg_order_by { + elo: order_by + previous_rank: order_by + skill_level: order_by + steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "player_faceit_rank_history". All fields are combined with a logical 'AND'. +""" +input player_faceit_rank_history_bool_exp { + _and: [player_faceit_rank_history_bool_exp!] + _not: player_faceit_rank_history_bool_exp + _or: [player_faceit_rank_history_bool_exp!] + elo: Int_comparison_exp + id: uuid_comparison_exp + match: matches_bool_exp + match_id: uuid_comparison_exp + observed_at: timestamptz_comparison_exp + player: players_bool_exp + previous_rank: Int_comparison_exp + skill_level: Int_comparison_exp + steam_id: bigint_comparison_exp +} + +""" +unique or primary key constraints on table "player_faceit_rank_history" +""" +enum player_faceit_rank_history_constraint { + """ + unique or primary key constraint on columns "id" + """ + player_faceit_rank_history_pkey + + """ + unique or primary key constraint on columns "steam_id", "match_id" + """ + uq_player_faceit_rank_history_steam_match +} + +""" +input type for incrementing numeric columns in table "player_faceit_rank_history" +""" +input player_faceit_rank_history_inc_input { + elo: Int + previous_rank: Int + skill_level: Int + steam_id: bigint +} + +""" +input type for inserting data into table "player_faceit_rank_history" +""" +input player_faceit_rank_history_insert_input { + elo: Int + id: uuid + match: matches_obj_rel_insert_input + match_id: uuid + observed_at: timestamptz + player: players_obj_rel_insert_input + previous_rank: Int + skill_level: Int + steam_id: bigint +} + +"""aggregate max on columns""" +type player_faceit_rank_history_max_fields { + elo: Int + id: uuid + match_id: uuid + observed_at: timestamptz + previous_rank: Int + skill_level: Int + steam_id: bigint +} + +""" +order by max() on columns of table "player_faceit_rank_history" +""" +input player_faceit_rank_history_max_order_by { + elo: order_by + id: order_by + match_id: order_by + observed_at: order_by + previous_rank: order_by + skill_level: order_by + steam_id: order_by +} + +"""aggregate min on columns""" +type player_faceit_rank_history_min_fields { + elo: Int + id: uuid + match_id: uuid + observed_at: timestamptz + previous_rank: Int + skill_level: Int + steam_id: bigint +} + +""" +order by min() on columns of table "player_faceit_rank_history" +""" +input player_faceit_rank_history_min_order_by { + elo: order_by + id: order_by + match_id: order_by + observed_at: order_by + previous_rank: order_by + skill_level: order_by + steam_id: order_by +} + +""" +response of any mutation on the table "player_faceit_rank_history" +""" +type player_faceit_rank_history_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [player_faceit_rank_history!]! +} + +""" +on_conflict condition type for table "player_faceit_rank_history" +""" +input player_faceit_rank_history_on_conflict { + constraint: player_faceit_rank_history_constraint! + update_columns: [player_faceit_rank_history_update_column!]! = [] + where: player_faceit_rank_history_bool_exp +} + +""" +Ordering options when selecting data from "player_faceit_rank_history". +""" +input player_faceit_rank_history_order_by { + elo: order_by + id: order_by + match: matches_order_by + match_id: order_by + observed_at: order_by + player: players_order_by + previous_rank: order_by + skill_level: order_by + steam_id: order_by +} + +"""primary key columns input for table: player_faceit_rank_history""" +input player_faceit_rank_history_pk_columns_input { + id: uuid! +} + +""" +select columns of table "player_faceit_rank_history" +""" +enum player_faceit_rank_history_select_column { + """column name""" + elo + + """column name""" + id + + """column name""" + match_id + + """column name""" + observed_at + + """column name""" + previous_rank + + """column name""" + skill_level + + """column name""" + steam_id +} + +""" +input type for updating data in table "player_faceit_rank_history" +""" +input player_faceit_rank_history_set_input { + elo: Int + id: uuid + match_id: uuid + observed_at: timestamptz + previous_rank: Int + skill_level: Int + steam_id: bigint +} + +"""aggregate stddev on columns""" +type player_faceit_rank_history_stddev_fields { + elo: Float + previous_rank: Float + skill_level: Float + steam_id: Float +} + +""" +order by stddev() on columns of table "player_faceit_rank_history" +""" +input player_faceit_rank_history_stddev_order_by { + elo: order_by + previous_rank: order_by + skill_level: order_by + steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type player_faceit_rank_history_stddev_pop_fields { + elo: Float + previous_rank: Float + skill_level: Float + steam_id: Float +} + +""" +order by stddev_pop() on columns of table "player_faceit_rank_history" +""" +input player_faceit_rank_history_stddev_pop_order_by { + elo: order_by + previous_rank: order_by + skill_level: order_by + steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type player_faceit_rank_history_stddev_samp_fields { + elo: Float + previous_rank: Float + skill_level: Float + steam_id: Float +} + +""" +order by stddev_samp() on columns of table "player_faceit_rank_history" +""" +input player_faceit_rank_history_stddev_samp_order_by { + elo: order_by + previous_rank: order_by + skill_level: order_by + steam_id: order_by +} + +""" +Streaming cursor of the table "player_faceit_rank_history" +""" +input player_faceit_rank_history_stream_cursor_input { + """Stream column input with initial value""" + initial_value: player_faceit_rank_history_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input player_faceit_rank_history_stream_cursor_value_input { + elo: Int + id: uuid + match_id: uuid + observed_at: timestamptz + previous_rank: Int + skill_level: Int + steam_id: bigint +} + +"""aggregate sum on columns""" +type player_faceit_rank_history_sum_fields { + elo: Int + previous_rank: Int + skill_level: Int + steam_id: bigint +} + +""" +order by sum() on columns of table "player_faceit_rank_history" +""" +input player_faceit_rank_history_sum_order_by { + elo: order_by + previous_rank: order_by + skill_level: order_by + steam_id: order_by +} + +""" +update columns of table "player_faceit_rank_history" +""" +enum player_faceit_rank_history_update_column { + """column name""" + elo + + """column name""" + id + + """column name""" + match_id + + """column name""" + observed_at + + """column name""" + previous_rank + + """column name""" + skill_level + + """column name""" + steam_id +} + +input player_faceit_rank_history_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: player_faceit_rank_history_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_faceit_rank_history_set_input + + """filter the rows which have to be updated""" + where: player_faceit_rank_history_bool_exp! +} + +"""aggregate var_pop on columns""" +type player_faceit_rank_history_var_pop_fields { + elo: Float + previous_rank: Float + skill_level: Float + steam_id: Float +} + +""" +order by var_pop() on columns of table "player_faceit_rank_history" +""" +input player_faceit_rank_history_var_pop_order_by { + elo: order_by + previous_rank: order_by + skill_level: order_by + steam_id: order_by +} + +"""aggregate var_samp on columns""" +type player_faceit_rank_history_var_samp_fields { + elo: Float + previous_rank: Float + skill_level: Float + steam_id: Float +} + +""" +order by var_samp() on columns of table "player_faceit_rank_history" +""" +input player_faceit_rank_history_var_samp_order_by { + elo: order_by + previous_rank: order_by + skill_level: order_by + steam_id: order_by +} + +"""aggregate variance on columns""" +type player_faceit_rank_history_variance_fields { + elo: Float + previous_rank: Float + skill_level: Float + steam_id: Float +} + +""" +order by variance() on columns of table "player_faceit_rank_history" +""" +input player_faceit_rank_history_variance_order_by { + elo: order_by + previous_rank: order_by + skill_level: order_by + steam_id: order_by +} + +""" +columns and relationships of "player_flashes" +""" +type player_flashes { + attacked_steam_id: bigint! + attacker_steam_id: bigint! + + """An object relationship""" + blinded: players! + deleted_at: timestamptz + duration: numeric! + + """An object relationship""" + match: matches! + match_id: uuid! + + """An object relationship""" + match_map: match_maps! + match_map_id: uuid! + round: Int! + team_flash: Boolean! + + """An object relationship""" + thrown_by: players! + time: timestamptz! +} + +""" +aggregated selection of "player_flashes" +""" +type player_flashes_aggregate { + aggregate: player_flashes_aggregate_fields + nodes: [player_flashes!]! +} + +input player_flashes_aggregate_bool_exp { + bool_and: player_flashes_aggregate_bool_exp_bool_and + bool_or: player_flashes_aggregate_bool_exp_bool_or + count: player_flashes_aggregate_bool_exp_count +} + +input player_flashes_aggregate_bool_exp_bool_and { + arguments: player_flashes_select_column_player_flashes_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: player_flashes_bool_exp + predicate: Boolean_comparison_exp! +} + +input player_flashes_aggregate_bool_exp_bool_or { + arguments: player_flashes_select_column_player_flashes_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: player_flashes_bool_exp + predicate: Boolean_comparison_exp! +} + +input player_flashes_aggregate_bool_exp_count { + arguments: [player_flashes_select_column!] + distinct: Boolean + filter: player_flashes_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "player_flashes" +""" +type player_flashes_aggregate_fields { + avg: player_flashes_avg_fields + count(columns: [player_flashes_select_column!], distinct: Boolean): Int! + max: player_flashes_max_fields + min: player_flashes_min_fields + stddev: player_flashes_stddev_fields + stddev_pop: player_flashes_stddev_pop_fields + stddev_samp: player_flashes_stddev_samp_fields + sum: player_flashes_sum_fields + var_pop: player_flashes_var_pop_fields + var_samp: player_flashes_var_samp_fields + variance: player_flashes_variance_fields +} + +""" +order by aggregate values of table "player_flashes" +""" +input player_flashes_aggregate_order_by { + avg: player_flashes_avg_order_by + count: order_by + max: player_flashes_max_order_by + min: player_flashes_min_order_by + stddev: player_flashes_stddev_order_by + stddev_pop: player_flashes_stddev_pop_order_by + stddev_samp: player_flashes_stddev_samp_order_by + sum: player_flashes_sum_order_by + var_pop: player_flashes_var_pop_order_by + var_samp: player_flashes_var_samp_order_by + variance: player_flashes_variance_order_by +} + +""" +input type for inserting array relation for remote table "player_flashes" +""" +input player_flashes_arr_rel_insert_input { + data: [player_flashes_insert_input!]! + + """upsert condition""" + on_conflict: player_flashes_on_conflict +} + +"""aggregate avg on columns""" +type player_flashes_avg_fields { + attacked_steam_id: Float + attacker_steam_id: Float + duration: Float + round: Float +} + +""" +order by avg() on columns of table "player_flashes" +""" +input player_flashes_avg_order_by { + attacked_steam_id: order_by + attacker_steam_id: order_by + duration: order_by + round: order_by +} + +""" +Boolean expression to filter rows from the table "player_flashes". All fields are combined with a logical 'AND'. +""" +input player_flashes_bool_exp { + _and: [player_flashes_bool_exp!] + _not: player_flashes_bool_exp + _or: [player_flashes_bool_exp!] + attacked_steam_id: bigint_comparison_exp + attacker_steam_id: bigint_comparison_exp + blinded: players_bool_exp + deleted_at: timestamptz_comparison_exp + duration: numeric_comparison_exp + match: matches_bool_exp + match_id: uuid_comparison_exp + match_map: match_maps_bool_exp + match_map_id: uuid_comparison_exp + round: Int_comparison_exp + team_flash: Boolean_comparison_exp + thrown_by: players_bool_exp + time: timestamptz_comparison_exp +} + +""" +unique or primary key constraints on table "player_flashes" +""" +enum player_flashes_constraint { + """ + unique or primary key constraint on columns "attacker_steam_id", "attacked_steam_id", "time", "match_map_id" + """ + player_flashes_pkey +} + +""" +input type for incrementing numeric columns in table "player_flashes" +""" +input player_flashes_inc_input { + attacked_steam_id: bigint + attacker_steam_id: bigint + duration: numeric + round: Int +} + +""" +input type for inserting data into table "player_flashes" +""" +input player_flashes_insert_input { + attacked_steam_id: bigint + attacker_steam_id: bigint + blinded: players_obj_rel_insert_input + deleted_at: timestamptz + duration: numeric + match: matches_obj_rel_insert_input + match_id: uuid + match_map: match_maps_obj_rel_insert_input + match_map_id: uuid + round: Int + team_flash: Boolean + thrown_by: players_obj_rel_insert_input + time: timestamptz +} + +"""aggregate max on columns""" +type player_flashes_max_fields { + attacked_steam_id: bigint + attacker_steam_id: bigint + deleted_at: timestamptz + duration: numeric + match_id: uuid + match_map_id: uuid + round: Int + time: timestamptz +} + +""" +order by max() on columns of table "player_flashes" +""" +input player_flashes_max_order_by { + attacked_steam_id: order_by + attacker_steam_id: order_by + deleted_at: order_by + duration: order_by + match_id: order_by + match_map_id: order_by + round: order_by + time: order_by +} + +"""aggregate min on columns""" +type player_flashes_min_fields { + attacked_steam_id: bigint + attacker_steam_id: bigint + deleted_at: timestamptz + duration: numeric + match_id: uuid + match_map_id: uuid + round: Int + time: timestamptz +} + +""" +order by min() on columns of table "player_flashes" +""" +input player_flashes_min_order_by { + attacked_steam_id: order_by + attacker_steam_id: order_by + deleted_at: order_by + duration: order_by + match_id: order_by + match_map_id: order_by + round: order_by + time: order_by +} + +""" +response of any mutation on the table "player_flashes" +""" +type player_flashes_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [player_flashes!]! +} + +""" +on_conflict condition type for table "player_flashes" +""" +input player_flashes_on_conflict { + constraint: player_flashes_constraint! + update_columns: [player_flashes_update_column!]! = [] + where: player_flashes_bool_exp +} + +"""Ordering options when selecting data from "player_flashes".""" +input player_flashes_order_by { + attacked_steam_id: order_by + attacker_steam_id: order_by + blinded: players_order_by + deleted_at: order_by + duration: order_by + match: matches_order_by + match_id: order_by + match_map: match_maps_order_by + match_map_id: order_by + round: order_by + team_flash: order_by + thrown_by: players_order_by + time: order_by +} + +"""primary key columns input for table: player_flashes""" +input player_flashes_pk_columns_input { + attacked_steam_id: bigint! + attacker_steam_id: bigint! + match_map_id: uuid! + time: timestamptz! +} + +""" +select columns of table "player_flashes" +""" +enum player_flashes_select_column { + """column name""" + attacked_steam_id + + """column name""" + attacker_steam_id + + """column name""" + deleted_at + + """column name""" + duration + + """column name""" + match_id + + """column name""" + match_map_id + + """column name""" + round + + """column name""" + team_flash + + """column name""" + time +} + +""" +select "player_flashes_aggregate_bool_exp_bool_and_arguments_columns" columns of table "player_flashes" +""" +enum player_flashes_select_column_player_flashes_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + team_flash +} + +""" +select "player_flashes_aggregate_bool_exp_bool_or_arguments_columns" columns of table "player_flashes" +""" +enum player_flashes_select_column_player_flashes_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + team_flash +} + +""" +input type for updating data in table "player_flashes" +""" +input player_flashes_set_input { + attacked_steam_id: bigint + attacker_steam_id: bigint + deleted_at: timestamptz + duration: numeric + match_id: uuid + match_map_id: uuid + round: Int + team_flash: Boolean + time: timestamptz +} + +"""aggregate stddev on columns""" +type player_flashes_stddev_fields { + attacked_steam_id: Float + attacker_steam_id: Float + duration: Float + round: Float +} + +""" +order by stddev() on columns of table "player_flashes" +""" +input player_flashes_stddev_order_by { + attacked_steam_id: order_by + attacker_steam_id: order_by + duration: order_by + round: order_by +} + +"""aggregate stddev_pop on columns""" +type player_flashes_stddev_pop_fields { + attacked_steam_id: Float + attacker_steam_id: Float + duration: Float + round: Float +} + +""" +order by stddev_pop() on columns of table "player_flashes" +""" +input player_flashes_stddev_pop_order_by { + attacked_steam_id: order_by + attacker_steam_id: order_by + duration: order_by + round: order_by +} + +"""aggregate stddev_samp on columns""" +type player_flashes_stddev_samp_fields { + attacked_steam_id: Float + attacker_steam_id: Float + duration: Float + round: Float +} + +""" +order by stddev_samp() on columns of table "player_flashes" +""" +input player_flashes_stddev_samp_order_by { + attacked_steam_id: order_by + attacker_steam_id: order_by + duration: order_by + round: order_by +} + +""" +Streaming cursor of the table "player_flashes" +""" +input player_flashes_stream_cursor_input { + """Stream column input with initial value""" + initial_value: player_flashes_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input player_flashes_stream_cursor_value_input { + attacked_steam_id: bigint + attacker_steam_id: bigint + deleted_at: timestamptz + duration: numeric + match_id: uuid + match_map_id: uuid + round: Int + team_flash: Boolean + time: timestamptz +} + +"""aggregate sum on columns""" +type player_flashes_sum_fields { + attacked_steam_id: bigint + attacker_steam_id: bigint + duration: numeric + round: Int +} + +""" +order by sum() on columns of table "player_flashes" +""" +input player_flashes_sum_order_by { + attacked_steam_id: order_by + attacker_steam_id: order_by + duration: order_by + round: order_by +} + +""" +update columns of table "player_flashes" +""" +enum player_flashes_update_column { + """column name""" + attacked_steam_id + + """column name""" + attacker_steam_id + + """column name""" + deleted_at + + """column name""" + duration + + """column name""" + match_id + + """column name""" + match_map_id + + """column name""" + round + + """column name""" + team_flash + + """column name""" + time +} + +input player_flashes_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: player_flashes_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_flashes_set_input + + """filter the rows which have to be updated""" + where: player_flashes_bool_exp! +} + +"""aggregate var_pop on columns""" +type player_flashes_var_pop_fields { + attacked_steam_id: Float + attacker_steam_id: Float + duration: Float + round: Float +} + +""" +order by var_pop() on columns of table "player_flashes" +""" +input player_flashes_var_pop_order_by { + attacked_steam_id: order_by + attacker_steam_id: order_by + duration: order_by + round: order_by +} + +"""aggregate var_samp on columns""" +type player_flashes_var_samp_fields { + attacked_steam_id: Float + attacker_steam_id: Float + duration: Float + round: Float +} + +""" +order by var_samp() on columns of table "player_flashes" +""" +input player_flashes_var_samp_order_by { + attacked_steam_id: order_by + attacker_steam_id: order_by + duration: order_by + round: order_by +} + +"""aggregate variance on columns""" +type player_flashes_variance_fields { + attacked_steam_id: Float + attacker_steam_id: Float + duration: Float + round: Float +} + +""" +order by variance() on columns of table "player_flashes" +""" +input player_flashes_variance_order_by { + attacked_steam_id: order_by + attacker_steam_id: order_by + duration: order_by + round: order_by +} + +""" +columns and relationships of "player_kills" +""" +type player_kills { + assisted: Boolean! + attacked_location: String! + attacked_location_coordinates: String + + """An object relationship""" + attacked_player: players! + attacked_steam_id: bigint! + attacked_team: String! + attacker_location: String + attacker_location_coordinates: String + attacker_steam_id: bigint! + attacker_team: String + blinded: Boolean! + deleted_at: timestamptz + headshot: Boolean! + hitgroup: String! + in_air: Boolean! + + """ + A computed field, executes function "is_suicide" + """ + is_suicide: Boolean + + """An object relationship""" + match: matches! + match_id: uuid! + + """An object relationship""" + match_map: match_maps! + match_map_id: uuid! + no_scope: Boolean! + + """An object relationship""" + player: players! + round: Int! + + """ + A computed field, executes function "is_team_kill" + """ + team_kill: Boolean + thru_smoke: Boolean! + thru_wall: Boolean! + time: timestamptz! + with: String +} + +""" +aggregated selection of "player_kills" +""" +type player_kills_aggregate { + aggregate: player_kills_aggregate_fields + nodes: [player_kills!]! +} + +input player_kills_aggregate_bool_exp { + bool_and: player_kills_aggregate_bool_exp_bool_and + bool_or: player_kills_aggregate_bool_exp_bool_or + count: player_kills_aggregate_bool_exp_count +} + +input player_kills_aggregate_bool_exp_bool_and { + arguments: player_kills_select_column_player_kills_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: player_kills_bool_exp + predicate: Boolean_comparison_exp! +} + +input player_kills_aggregate_bool_exp_bool_or { + arguments: player_kills_select_column_player_kills_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: player_kills_bool_exp + predicate: Boolean_comparison_exp! +} + +input player_kills_aggregate_bool_exp_count { + arguments: [player_kills_select_column!] + distinct: Boolean + filter: player_kills_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "player_kills" +""" +type player_kills_aggregate_fields { + avg: player_kills_avg_fields + count(columns: [player_kills_select_column!], distinct: Boolean): Int! + max: player_kills_max_fields + min: player_kills_min_fields + stddev: player_kills_stddev_fields + stddev_pop: player_kills_stddev_pop_fields + stddev_samp: player_kills_stddev_samp_fields + sum: player_kills_sum_fields + var_pop: player_kills_var_pop_fields + var_samp: player_kills_var_samp_fields + variance: player_kills_variance_fields +} + +""" +order by aggregate values of table "player_kills" +""" +input player_kills_aggregate_order_by { + avg: player_kills_avg_order_by + count: order_by + max: player_kills_max_order_by + min: player_kills_min_order_by + stddev: player_kills_stddev_order_by + stddev_pop: player_kills_stddev_pop_order_by + stddev_samp: player_kills_stddev_samp_order_by + sum: player_kills_sum_order_by + var_pop: player_kills_var_pop_order_by + var_samp: player_kills_var_samp_order_by + variance: player_kills_variance_order_by +} + +""" +input type for inserting array relation for remote table "player_kills" +""" +input player_kills_arr_rel_insert_input { + data: [player_kills_insert_input!]! + + """upsert condition""" + on_conflict: player_kills_on_conflict +} + +"""aggregate avg on columns""" +type player_kills_avg_fields { + attacked_steam_id: Float + attacker_steam_id: Float + round: Float +} + +""" +order by avg() on columns of table "player_kills" +""" +input player_kills_avg_order_by { + attacked_steam_id: order_by + attacker_steam_id: order_by + round: order_by +} + +""" +Boolean expression to filter rows from the table "player_kills". All fields are combined with a logical 'AND'. +""" +input player_kills_bool_exp { + _and: [player_kills_bool_exp!] + _not: player_kills_bool_exp + _or: [player_kills_bool_exp!] + assisted: Boolean_comparison_exp + attacked_location: String_comparison_exp + attacked_location_coordinates: String_comparison_exp + attacked_player: players_bool_exp + attacked_steam_id: bigint_comparison_exp + attacked_team: String_comparison_exp + attacker_location: String_comparison_exp + attacker_location_coordinates: String_comparison_exp + attacker_steam_id: bigint_comparison_exp + attacker_team: String_comparison_exp + blinded: Boolean_comparison_exp + deleted_at: timestamptz_comparison_exp + headshot: Boolean_comparison_exp + hitgroup: String_comparison_exp + in_air: Boolean_comparison_exp + is_suicide: Boolean_comparison_exp + match: matches_bool_exp + match_id: uuid_comparison_exp + match_map: match_maps_bool_exp + match_map_id: uuid_comparison_exp + no_scope: Boolean_comparison_exp + player: players_bool_exp + round: Int_comparison_exp + team_kill: Boolean_comparison_exp + thru_smoke: Boolean_comparison_exp + thru_wall: Boolean_comparison_exp + time: timestamptz_comparison_exp + with: String_comparison_exp +} + +""" +columns and relationships of "player_kills_by_weapon" +""" +type player_kills_by_weapon { + kill_count: bigint! + + """An object relationship""" + player: players! + player_steam_id: bigint! + with: String! +} + +""" +aggregated selection of "player_kills_by_weapon" +""" +type player_kills_by_weapon_aggregate { + aggregate: player_kills_by_weapon_aggregate_fields + nodes: [player_kills_by_weapon!]! +} + +input player_kills_by_weapon_aggregate_bool_exp { + count: player_kills_by_weapon_aggregate_bool_exp_count +} + +input player_kills_by_weapon_aggregate_bool_exp_count { + arguments: [player_kills_by_weapon_select_column!] + distinct: Boolean + filter: player_kills_by_weapon_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "player_kills_by_weapon" +""" +type player_kills_by_weapon_aggregate_fields { + avg: player_kills_by_weapon_avg_fields + count(columns: [player_kills_by_weapon_select_column!], distinct: Boolean): Int! + max: player_kills_by_weapon_max_fields + min: player_kills_by_weapon_min_fields + stddev: player_kills_by_weapon_stddev_fields + stddev_pop: player_kills_by_weapon_stddev_pop_fields + stddev_samp: player_kills_by_weapon_stddev_samp_fields + sum: player_kills_by_weapon_sum_fields + var_pop: player_kills_by_weapon_var_pop_fields + var_samp: player_kills_by_weapon_var_samp_fields + variance: player_kills_by_weapon_variance_fields +} + +""" +order by aggregate values of table "player_kills_by_weapon" +""" +input player_kills_by_weapon_aggregate_order_by { + avg: player_kills_by_weapon_avg_order_by + count: order_by + max: player_kills_by_weapon_max_order_by + min: player_kills_by_weapon_min_order_by + stddev: player_kills_by_weapon_stddev_order_by + stddev_pop: player_kills_by_weapon_stddev_pop_order_by + stddev_samp: player_kills_by_weapon_stddev_samp_order_by + sum: player_kills_by_weapon_sum_order_by + var_pop: player_kills_by_weapon_var_pop_order_by + var_samp: player_kills_by_weapon_var_samp_order_by + variance: player_kills_by_weapon_variance_order_by +} + +""" +input type for inserting array relation for remote table "player_kills_by_weapon" +""" +input player_kills_by_weapon_arr_rel_insert_input { + data: [player_kills_by_weapon_insert_input!]! + + """upsert condition""" + on_conflict: player_kills_by_weapon_on_conflict +} + +"""aggregate avg on columns""" +type player_kills_by_weapon_avg_fields { + kill_count: Float + player_steam_id: Float +} + +""" +order by avg() on columns of table "player_kills_by_weapon" +""" +input player_kills_by_weapon_avg_order_by { + kill_count: order_by + player_steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "player_kills_by_weapon". All fields are combined with a logical 'AND'. +""" +input player_kills_by_weapon_bool_exp { + _and: [player_kills_by_weapon_bool_exp!] + _not: player_kills_by_weapon_bool_exp + _or: [player_kills_by_weapon_bool_exp!] + kill_count: bigint_comparison_exp + player: players_bool_exp + player_steam_id: bigint_comparison_exp + with: String_comparison_exp +} + +""" +unique or primary key constraints on table "player_kills_by_weapon" +""" +enum player_kills_by_weapon_constraint { + """ + unique or primary key constraint on columns "player_steam_id", "with" + """ + player_kills_by_weapon_pkey +} + +""" +input type for incrementing numeric columns in table "player_kills_by_weapon" +""" +input player_kills_by_weapon_inc_input { + kill_count: bigint + player_steam_id: bigint +} + +""" +input type for inserting data into table "player_kills_by_weapon" +""" +input player_kills_by_weapon_insert_input { + kill_count: bigint + player: players_obj_rel_insert_input + player_steam_id: bigint + with: String +} + +"""aggregate max on columns""" +type player_kills_by_weapon_max_fields { + kill_count: bigint + player_steam_id: bigint + with: String +} + +""" +order by max() on columns of table "player_kills_by_weapon" +""" +input player_kills_by_weapon_max_order_by { + kill_count: order_by + player_steam_id: order_by + with: order_by +} + +"""aggregate min on columns""" +type player_kills_by_weapon_min_fields { + kill_count: bigint + player_steam_id: bigint + with: String +} + +""" +order by min() on columns of table "player_kills_by_weapon" +""" +input player_kills_by_weapon_min_order_by { + kill_count: order_by + player_steam_id: order_by + with: order_by +} + +""" +response of any mutation on the table "player_kills_by_weapon" +""" +type player_kills_by_weapon_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [player_kills_by_weapon!]! +} + +""" +on_conflict condition type for table "player_kills_by_weapon" +""" +input player_kills_by_weapon_on_conflict { + constraint: player_kills_by_weapon_constraint! + update_columns: [player_kills_by_weapon_update_column!]! = [] + where: player_kills_by_weapon_bool_exp +} + +"""Ordering options when selecting data from "player_kills_by_weapon".""" +input player_kills_by_weapon_order_by { + kill_count: order_by + player: players_order_by + player_steam_id: order_by + with: order_by +} + +"""primary key columns input for table: player_kills_by_weapon""" +input player_kills_by_weapon_pk_columns_input { + player_steam_id: bigint! + with: String! +} + +""" +select columns of table "player_kills_by_weapon" +""" +enum player_kills_by_weapon_select_column { + """column name""" + kill_count + + """column name""" + player_steam_id + + """column name""" + with +} + +""" +input type for updating data in table "player_kills_by_weapon" +""" +input player_kills_by_weapon_set_input { + kill_count: bigint + player_steam_id: bigint + with: String +} + +"""aggregate stddev on columns""" +type player_kills_by_weapon_stddev_fields { + kill_count: Float + player_steam_id: Float +} + +""" +order by stddev() on columns of table "player_kills_by_weapon" +""" +input player_kills_by_weapon_stddev_order_by { + kill_count: order_by + player_steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type player_kills_by_weapon_stddev_pop_fields { + kill_count: Float + player_steam_id: Float +} + +""" +order by stddev_pop() on columns of table "player_kills_by_weapon" +""" +input player_kills_by_weapon_stddev_pop_order_by { + kill_count: order_by + player_steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type player_kills_by_weapon_stddev_samp_fields { + kill_count: Float + player_steam_id: Float +} + +""" +order by stddev_samp() on columns of table "player_kills_by_weapon" +""" +input player_kills_by_weapon_stddev_samp_order_by { + kill_count: order_by + player_steam_id: order_by +} + +""" +Streaming cursor of the table "player_kills_by_weapon" +""" +input player_kills_by_weapon_stream_cursor_input { + """Stream column input with initial value""" + initial_value: player_kills_by_weapon_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input player_kills_by_weapon_stream_cursor_value_input { + kill_count: bigint + player_steam_id: bigint + with: String +} + +"""aggregate sum on columns""" +type player_kills_by_weapon_sum_fields { + kill_count: bigint + player_steam_id: bigint +} + +""" +order by sum() on columns of table "player_kills_by_weapon" +""" +input player_kills_by_weapon_sum_order_by { + kill_count: order_by + player_steam_id: order_by +} + +""" +update columns of table "player_kills_by_weapon" +""" +enum player_kills_by_weapon_update_column { + """column name""" + kill_count + + """column name""" + player_steam_id + + """column name""" + with +} + +input player_kills_by_weapon_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: player_kills_by_weapon_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_kills_by_weapon_set_input + + """filter the rows which have to be updated""" + where: player_kills_by_weapon_bool_exp! +} + +"""aggregate var_pop on columns""" +type player_kills_by_weapon_var_pop_fields { + kill_count: Float + player_steam_id: Float +} + +""" +order by var_pop() on columns of table "player_kills_by_weapon" +""" +input player_kills_by_weapon_var_pop_order_by { + kill_count: order_by + player_steam_id: order_by +} + +"""aggregate var_samp on columns""" +type player_kills_by_weapon_var_samp_fields { + kill_count: Float + player_steam_id: Float +} + +""" +order by var_samp() on columns of table "player_kills_by_weapon" +""" +input player_kills_by_weapon_var_samp_order_by { + kill_count: order_by + player_steam_id: order_by +} + +"""aggregate variance on columns""" +type player_kills_by_weapon_variance_fields { + kill_count: Float + player_steam_id: Float +} + +""" +order by variance() on columns of table "player_kills_by_weapon" +""" +input player_kills_by_weapon_variance_order_by { + kill_count: order_by + player_steam_id: order_by +} + +""" +unique or primary key constraints on table "player_kills" +""" +enum player_kills_constraint { + """ + unique or primary key constraint on columns "attacker_steam_id", "attacked_steam_id", "time", "match_map_id" + """ + player_kills_pkey +} + +""" +input type for incrementing numeric columns in table "player_kills" +""" +input player_kills_inc_input { + attacked_steam_id: bigint + attacker_steam_id: bigint + round: Int +} + +""" +input type for inserting data into table "player_kills" +""" +input player_kills_insert_input { + assisted: Boolean + attacked_location: String + attacked_location_coordinates: String + attacked_player: players_obj_rel_insert_input + attacked_steam_id: bigint + attacked_team: String + attacker_location: String + attacker_location_coordinates: String + attacker_steam_id: bigint + attacker_team: String + blinded: Boolean + deleted_at: timestamptz + headshot: Boolean + hitgroup: String + in_air: Boolean + match: matches_obj_rel_insert_input + match_id: uuid + match_map: match_maps_obj_rel_insert_input + match_map_id: uuid + no_scope: Boolean + player: players_obj_rel_insert_input + round: Int + thru_smoke: Boolean + thru_wall: Boolean + time: timestamptz + with: String +} + +"""aggregate max on columns""" +type player_kills_max_fields { + attacked_location: String + attacked_location_coordinates: String + attacked_steam_id: bigint + attacked_team: String + attacker_location: String + attacker_location_coordinates: String + attacker_steam_id: bigint + attacker_team: String + deleted_at: timestamptz + hitgroup: String + match_id: uuid + match_map_id: uuid + round: Int + time: timestamptz + with: String +} + +""" +order by max() on columns of table "player_kills" +""" +input player_kills_max_order_by { + attacked_location: order_by + attacked_location_coordinates: order_by + attacked_steam_id: order_by + attacked_team: order_by + attacker_location: order_by + attacker_location_coordinates: order_by + attacker_steam_id: order_by + attacker_team: order_by + deleted_at: order_by + hitgroup: order_by + match_id: order_by + match_map_id: order_by + round: order_by + time: order_by + with: order_by +} + +"""aggregate min on columns""" +type player_kills_min_fields { + attacked_location: String + attacked_location_coordinates: String + attacked_steam_id: bigint + attacked_team: String + attacker_location: String + attacker_location_coordinates: String + attacker_steam_id: bigint + attacker_team: String + deleted_at: timestamptz + hitgroup: String + match_id: uuid + match_map_id: uuid + round: Int + time: timestamptz + with: String +} + +""" +order by min() on columns of table "player_kills" +""" +input player_kills_min_order_by { + attacked_location: order_by + attacked_location_coordinates: order_by + attacked_steam_id: order_by + attacked_team: order_by + attacker_location: order_by + attacker_location_coordinates: order_by + attacker_steam_id: order_by + attacker_team: order_by + deleted_at: order_by + hitgroup: order_by + match_id: order_by + match_map_id: order_by + round: order_by + time: order_by + with: order_by +} + +""" +response of any mutation on the table "player_kills" +""" +type player_kills_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [player_kills!]! +} + +""" +on_conflict condition type for table "player_kills" +""" +input player_kills_on_conflict { + constraint: player_kills_constraint! + update_columns: [player_kills_update_column!]! = [] + where: player_kills_bool_exp +} + +"""Ordering options when selecting data from "player_kills".""" +input player_kills_order_by { + assisted: order_by + attacked_location: order_by + attacked_location_coordinates: order_by + attacked_player: players_order_by + attacked_steam_id: order_by + attacked_team: order_by + attacker_location: order_by + attacker_location_coordinates: order_by + attacker_steam_id: order_by + attacker_team: order_by + blinded: order_by + deleted_at: order_by + headshot: order_by + hitgroup: order_by + in_air: order_by + is_suicide: order_by + match: matches_order_by + match_id: order_by + match_map: match_maps_order_by + match_map_id: order_by + no_scope: order_by + player: players_order_by + round: order_by + team_kill: order_by + thru_smoke: order_by + thru_wall: order_by + time: order_by + with: order_by +} + +"""primary key columns input for table: player_kills""" +input player_kills_pk_columns_input { + attacked_steam_id: bigint! + attacker_steam_id: bigint! + match_map_id: uuid! + time: timestamptz! +} + +""" +select columns of table "player_kills" +""" +enum player_kills_select_column { + """column name""" + assisted + + """column name""" + attacked_location + + """column name""" + attacked_location_coordinates + + """column name""" + attacked_steam_id + + """column name""" + attacked_team + + """column name""" + attacker_location + + """column name""" + attacker_location_coordinates + + """column name""" + attacker_steam_id + + """column name""" + attacker_team + + """column name""" + blinded + + """column name""" + deleted_at + + """column name""" + headshot + + """column name""" + hitgroup + + """column name""" + in_air + + """column name""" + match_id + + """column name""" + match_map_id + + """column name""" + no_scope + + """column name""" + round + + """column name""" + thru_smoke + + """column name""" + thru_wall + + """column name""" + time + + """column name""" + with +} + +""" +select "player_kills_aggregate_bool_exp_bool_and_arguments_columns" columns of table "player_kills" +""" +enum player_kills_select_column_player_kills_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + assisted + + """column name""" + blinded + + """column name""" + headshot + + """column name""" + in_air + + """column name""" + no_scope + + """column name""" + thru_smoke + + """column name""" + thru_wall +} + +""" +select "player_kills_aggregate_bool_exp_bool_or_arguments_columns" columns of table "player_kills" +""" +enum player_kills_select_column_player_kills_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + assisted + + """column name""" + blinded + + """column name""" + headshot + + """column name""" + in_air + + """column name""" + no_scope + + """column name""" + thru_smoke + + """column name""" + thru_wall +} + +""" +input type for updating data in table "player_kills" +""" +input player_kills_set_input { + assisted: Boolean + attacked_location: String + attacked_location_coordinates: String + attacked_steam_id: bigint + attacked_team: String + attacker_location: String + attacker_location_coordinates: String + attacker_steam_id: bigint + attacker_team: String + blinded: Boolean + deleted_at: timestamptz + headshot: Boolean + hitgroup: String + in_air: Boolean + match_id: uuid + match_map_id: uuid + no_scope: Boolean + round: Int + thru_smoke: Boolean + thru_wall: Boolean + time: timestamptz + with: String +} + +"""aggregate stddev on columns""" +type player_kills_stddev_fields { + attacked_steam_id: Float + attacker_steam_id: Float + round: Float +} + +""" +order by stddev() on columns of table "player_kills" +""" +input player_kills_stddev_order_by { + attacked_steam_id: order_by + attacker_steam_id: order_by + round: order_by +} + +"""aggregate stddev_pop on columns""" +type player_kills_stddev_pop_fields { + attacked_steam_id: Float + attacker_steam_id: Float + round: Float +} + +""" +order by stddev_pop() on columns of table "player_kills" +""" +input player_kills_stddev_pop_order_by { + attacked_steam_id: order_by + attacker_steam_id: order_by + round: order_by +} + +"""aggregate stddev_samp on columns""" +type player_kills_stddev_samp_fields { + attacked_steam_id: Float + attacker_steam_id: Float + round: Float +} + +""" +order by stddev_samp() on columns of table "player_kills" +""" +input player_kills_stddev_samp_order_by { + attacked_steam_id: order_by + attacker_steam_id: order_by + round: order_by +} + +""" +Streaming cursor of the table "player_kills" +""" +input player_kills_stream_cursor_input { + """Stream column input with initial value""" + initial_value: player_kills_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input player_kills_stream_cursor_value_input { + assisted: Boolean + attacked_location: String + attacked_location_coordinates: String + attacked_steam_id: bigint + attacked_team: String + attacker_location: String + attacker_location_coordinates: String + attacker_steam_id: bigint + attacker_team: String + blinded: Boolean + deleted_at: timestamptz + headshot: Boolean + hitgroup: String + in_air: Boolean + match_id: uuid + match_map_id: uuid + no_scope: Boolean + round: Int + thru_smoke: Boolean + thru_wall: Boolean + time: timestamptz + with: String +} + +"""aggregate sum on columns""" +type player_kills_sum_fields { + attacked_steam_id: bigint + attacker_steam_id: bigint + round: Int +} + +""" +order by sum() on columns of table "player_kills" +""" +input player_kills_sum_order_by { + attacked_steam_id: order_by + attacker_steam_id: order_by + round: order_by +} + +""" +update columns of table "player_kills" +""" +enum player_kills_update_column { + """column name""" + assisted + + """column name""" + attacked_location + + """column name""" + attacked_location_coordinates + + """column name""" + attacked_steam_id + + """column name""" + attacked_team + + """column name""" + attacker_location + + """column name""" + attacker_location_coordinates + + """column name""" + attacker_steam_id + + """column name""" + attacker_team + + """column name""" + blinded + + """column name""" + deleted_at + + """column name""" + headshot + + """column name""" + hitgroup + + """column name""" + in_air + + """column name""" + match_id + + """column name""" + match_map_id + + """column name""" + no_scope + + """column name""" + round + + """column name""" + thru_smoke + + """column name""" + thru_wall + + """column name""" + time + + """column name""" + with +} + +input player_kills_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: player_kills_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_kills_set_input + + """filter the rows which have to be updated""" + where: player_kills_bool_exp! +} + +"""aggregate var_pop on columns""" +type player_kills_var_pop_fields { + attacked_steam_id: Float + attacker_steam_id: Float + round: Float +} + +""" +order by var_pop() on columns of table "player_kills" +""" +input player_kills_var_pop_order_by { + attacked_steam_id: order_by + attacker_steam_id: order_by + round: order_by +} + +"""aggregate var_samp on columns""" +type player_kills_var_samp_fields { + attacked_steam_id: Float + attacker_steam_id: Float + round: Float +} + +""" +order by var_samp() on columns of table "player_kills" +""" +input player_kills_var_samp_order_by { + attacked_steam_id: order_by + attacker_steam_id: order_by + round: order_by +} + +"""aggregate variance on columns""" +type player_kills_variance_fields { + attacked_steam_id: Float + attacker_steam_id: Float + round: Float +} + +""" +order by variance() on columns of table "player_kills" +""" +input player_kills_variance_order_by { + attacked_steam_id: order_by + attacker_steam_id: order_by + round: order_by +} + +""" +columns and relationships of "player_leaderboard_rank" +""" +type player_leaderboard_rank { + player_steam_id: String! + rank: Int! + total: Int! + value: float8! +} + +type player_leaderboard_rank_aggregate { + aggregate: player_leaderboard_rank_aggregate_fields + nodes: [player_leaderboard_rank!]! +} + +""" +aggregate fields of "player_leaderboard_rank" +""" +type player_leaderboard_rank_aggregate_fields { + avg: player_leaderboard_rank_avg_fields + count(columns: [player_leaderboard_rank_select_column!], distinct: Boolean): Int! + max: player_leaderboard_rank_max_fields + min: player_leaderboard_rank_min_fields + stddev: player_leaderboard_rank_stddev_fields + stddev_pop: player_leaderboard_rank_stddev_pop_fields + stddev_samp: player_leaderboard_rank_stddev_samp_fields + sum: player_leaderboard_rank_sum_fields + var_pop: player_leaderboard_rank_var_pop_fields + var_samp: player_leaderboard_rank_var_samp_fields + variance: player_leaderboard_rank_variance_fields +} + +"""aggregate avg on columns""" +type player_leaderboard_rank_avg_fields { + rank: Float + total: Float + value: Float +} + +""" +Boolean expression to filter rows from the table "player_leaderboard_rank". All fields are combined with a logical 'AND'. +""" +input player_leaderboard_rank_bool_exp { + _and: [player_leaderboard_rank_bool_exp!] + _not: player_leaderboard_rank_bool_exp + _or: [player_leaderboard_rank_bool_exp!] + player_steam_id: String_comparison_exp + rank: Int_comparison_exp + total: Int_comparison_exp + value: float8_comparison_exp +} + +""" +input type for incrementing numeric columns in table "player_leaderboard_rank" +""" +input player_leaderboard_rank_inc_input { + rank: Int + total: Int + value: float8 +} + +""" +input type for inserting data into table "player_leaderboard_rank" +""" +input player_leaderboard_rank_insert_input { + player_steam_id: String + rank: Int + total: Int + value: float8 +} + +"""aggregate max on columns""" +type player_leaderboard_rank_max_fields { + player_steam_id: String + rank: Int + total: Int + value: float8 +} + +"""aggregate min on columns""" +type player_leaderboard_rank_min_fields { + player_steam_id: String + rank: Int + total: Int + value: float8 +} + +""" +response of any mutation on the table "player_leaderboard_rank" +""" +type player_leaderboard_rank_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [player_leaderboard_rank!]! +} + +"""Ordering options when selecting data from "player_leaderboard_rank".""" +input player_leaderboard_rank_order_by { + player_steam_id: order_by + rank: order_by + total: order_by + value: order_by +} + +""" +select columns of table "player_leaderboard_rank" +""" +enum player_leaderboard_rank_select_column { + """column name""" + player_steam_id + + """column name""" + rank + + """column name""" + total + + """column name""" + value +} + +""" +input type for updating data in table "player_leaderboard_rank" +""" +input player_leaderboard_rank_set_input { + player_steam_id: String + rank: Int + total: Int + value: float8 +} + +"""aggregate stddev on columns""" +type player_leaderboard_rank_stddev_fields { + rank: Float + total: Float + value: Float +} + +"""aggregate stddev_pop on columns""" +type player_leaderboard_rank_stddev_pop_fields { + rank: Float + total: Float + value: Float +} + +"""aggregate stddev_samp on columns""" +type player_leaderboard_rank_stddev_samp_fields { + rank: Float + total: Float + value: Float +} + +""" +Streaming cursor of the table "player_leaderboard_rank" +""" +input player_leaderboard_rank_stream_cursor_input { + """Stream column input with initial value""" + initial_value: player_leaderboard_rank_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input player_leaderboard_rank_stream_cursor_value_input { + player_steam_id: String + rank: Int + total: Int + value: float8 +} + +"""aggregate sum on columns""" +type player_leaderboard_rank_sum_fields { + rank: Int + total: Int + value: float8 +} + +input player_leaderboard_rank_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: player_leaderboard_rank_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_leaderboard_rank_set_input + + """filter the rows which have to be updated""" + where: player_leaderboard_rank_bool_exp! +} + +"""aggregate var_pop on columns""" +type player_leaderboard_rank_var_pop_fields { + rank: Float + total: Float + value: Float +} + +"""aggregate var_samp on columns""" +type player_leaderboard_rank_var_samp_fields { + rank: Float + total: Float + value: Float +} + +"""aggregate variance on columns""" +type player_leaderboard_rank_variance_fields { + rank: Float + total: Float + value: Float +} + +""" +columns and relationships of "player_match_map_stats" +""" +type player_match_map_stats { + assists: Int! + assists_ct: Int! + assists_t: Int! + counter_strafe_eligible_shots: Int! + counter_strafed_shots: Int! + crosshair_angle_count: Int! + crosshair_angle_sum_deg: numeric! + damage: Int! + damage_ct: Int! + damage_t: Int! + deaths: Int! + deaths_ct: Int! + deaths_t: Int! + decoy_throws: Int! + enemies_flashed: Int! + first_bullet_hits: Int! + first_bullet_shots: Int! + five_kill_rounds: Int! + flash_assists: Int! + flash_duration_count: Int! + flash_duration_sum: numeric! + flashes_thrown: Int! + four_kill_rounds: Int! + he_damage: Int! + he_team_damage: Int! + he_throws: Int! + headshot_hits: Int! + hits: Int! + hits_at_spotted: Int! + hs_kills: Int! + hs_kills_ct: Int! + hs_kills_t: Int! + kast_rounds: Int! + kast_total_rounds: Int! + kills: Int! + kills_ct: Int! + kills_t: Int! + knife_kills: Int! + + """An object relationship""" + match: matches! + match_id: uuid! + + """An object relationship""" + match_map: match_maps! + match_map_id: uuid! + molotov_damage: Int! + molotov_throws: Int! + non_awp_hits: Int! + on_target_frames: Int! + + """An object relationship""" + player: players! + rounds_ct: Int! + rounds_played: Int! + rounds_t: Int! + shots_at_spotted: Int! + shots_fired: Int! + smoke_throws: Int! + spotted_count: Int! + spotted_with_damage_count: Int! + spray_hits: Int! + spray_shots: Int! + steam_id: bigint! + team_damage: Int! + team_flashed: Int! + three_kill_rounds: Int! + time_to_damage_count: Int! + time_to_damage_sum_s: numeric! + total_engagement_frames: Int! + trade_kill_attempts: Int! + trade_kill_opportunities: Int! + trade_kill_successes: Int! + traded_death_attempts: Int! + traded_death_opportunities: Int! + traded_death_successes: Int! + two_kill_rounds: Int! + unused_utility_value: Int! + updated_at: timestamptz! + util_on_death_count: Int! + util_on_death_sum: Int! + wasted_magazine_shots: Int! + zeus_kills: Int! +} + +""" +aggregated selection of "player_match_map_stats" +""" +type player_match_map_stats_aggregate { + aggregate: player_match_map_stats_aggregate_fields + nodes: [player_match_map_stats!]! +} + +input player_match_map_stats_aggregate_bool_exp { + count: player_match_map_stats_aggregate_bool_exp_count +} + +input player_match_map_stats_aggregate_bool_exp_count { + arguments: [player_match_map_stats_select_column!] + distinct: Boolean + filter: player_match_map_stats_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "player_match_map_stats" +""" +type player_match_map_stats_aggregate_fields { + avg: player_match_map_stats_avg_fields + count(columns: [player_match_map_stats_select_column!], distinct: Boolean): Int! + max: player_match_map_stats_max_fields + min: player_match_map_stats_min_fields + stddev: player_match_map_stats_stddev_fields + stddev_pop: player_match_map_stats_stddev_pop_fields + stddev_samp: player_match_map_stats_stddev_samp_fields + sum: player_match_map_stats_sum_fields + var_pop: player_match_map_stats_var_pop_fields + var_samp: player_match_map_stats_var_samp_fields + variance: player_match_map_stats_variance_fields +} + +""" +order by aggregate values of table "player_match_map_stats" +""" +input player_match_map_stats_aggregate_order_by { + avg: player_match_map_stats_avg_order_by + count: order_by + max: player_match_map_stats_max_order_by + min: player_match_map_stats_min_order_by + stddev: player_match_map_stats_stddev_order_by + stddev_pop: player_match_map_stats_stddev_pop_order_by + stddev_samp: player_match_map_stats_stddev_samp_order_by + sum: player_match_map_stats_sum_order_by + var_pop: player_match_map_stats_var_pop_order_by + var_samp: player_match_map_stats_var_samp_order_by + variance: player_match_map_stats_variance_order_by +} + +""" +input type for inserting array relation for remote table "player_match_map_stats" +""" +input player_match_map_stats_arr_rel_insert_input { + data: [player_match_map_stats_insert_input!]! + + """upsert condition""" + on_conflict: player_match_map_stats_on_conflict +} + +"""aggregate avg on columns""" +type player_match_map_stats_avg_fields { + assists: Float + assists_ct: Float + assists_t: Float + counter_strafe_eligible_shots: Float + counter_strafed_shots: Float + crosshair_angle_count: Float + crosshair_angle_sum_deg: Float + damage: Float + damage_ct: Float + damage_t: Float + deaths: Float + deaths_ct: Float + deaths_t: Float + decoy_throws: Float + enemies_flashed: Float + first_bullet_hits: Float + first_bullet_shots: Float + five_kill_rounds: Float + flash_assists: Float + flash_duration_count: Float + flash_duration_sum: Float + flashes_thrown: Float + four_kill_rounds: Float + he_damage: Float + he_team_damage: Float + he_throws: Float + headshot_hits: Float + hits: Float + hits_at_spotted: Float + hs_kills: Float + hs_kills_ct: Float + hs_kills_t: Float + kast_rounds: Float + kast_total_rounds: Float + kills: Float + kills_ct: Float + kills_t: Float + knife_kills: Float + molotov_damage: Float + molotov_throws: Float + non_awp_hits: Float + on_target_frames: Float + rounds_ct: Float + rounds_played: Float + rounds_t: Float + shots_at_spotted: Float + shots_fired: Float + smoke_throws: Float + spotted_count: Float + spotted_with_damage_count: Float + spray_hits: Float + spray_shots: Float + steam_id: Float + team_damage: Float + team_flashed: Float + three_kill_rounds: Float + time_to_damage_count: Float + time_to_damage_sum_s: Float + total_engagement_frames: Float + trade_kill_attempts: Float + trade_kill_opportunities: Float + trade_kill_successes: Float + traded_death_attempts: Float + traded_death_opportunities: Float + traded_death_successes: Float + two_kill_rounds: Float + unused_utility_value: Float + util_on_death_count: Float + util_on_death_sum: Float + wasted_magazine_shots: Float + zeus_kills: Float +} + +""" +order by avg() on columns of table "player_match_map_stats" +""" +input player_match_map_stats_avg_order_by { + assists: order_by + assists_ct: order_by + assists_t: order_by + counter_strafe_eligible_shots: order_by + counter_strafed_shots: order_by + crosshair_angle_count: order_by + crosshair_angle_sum_deg: order_by + damage: order_by + damage_ct: order_by + damage_t: order_by + deaths: order_by + deaths_ct: order_by + deaths_t: order_by + decoy_throws: order_by + enemies_flashed: order_by + first_bullet_hits: order_by + first_bullet_shots: order_by + five_kill_rounds: order_by + flash_assists: order_by + flash_duration_count: order_by + flash_duration_sum: order_by + flashes_thrown: order_by + four_kill_rounds: order_by + he_damage: order_by + he_team_damage: order_by + he_throws: order_by + headshot_hits: order_by + hits: order_by + hits_at_spotted: order_by + hs_kills: order_by + hs_kills_ct: order_by + hs_kills_t: order_by + kast_rounds: order_by + kast_total_rounds: order_by + kills: order_by + kills_ct: order_by + kills_t: order_by + knife_kills: order_by + molotov_damage: order_by + molotov_throws: order_by + non_awp_hits: order_by + on_target_frames: order_by + rounds_ct: order_by + rounds_played: order_by + rounds_t: order_by + shots_at_spotted: order_by + shots_fired: order_by + smoke_throws: order_by + spotted_count: order_by + spotted_with_damage_count: order_by + spray_hits: order_by + spray_shots: order_by + steam_id: order_by + team_damage: order_by + team_flashed: order_by + three_kill_rounds: order_by + time_to_damage_count: order_by + time_to_damage_sum_s: order_by + total_engagement_frames: order_by + trade_kill_attempts: order_by + trade_kill_opportunities: order_by + trade_kill_successes: order_by + traded_death_attempts: order_by + traded_death_opportunities: order_by + traded_death_successes: order_by + two_kill_rounds: order_by + unused_utility_value: order_by + util_on_death_count: order_by + util_on_death_sum: order_by + wasted_magazine_shots: order_by + zeus_kills: order_by +} + +""" +Boolean expression to filter rows from the table "player_match_map_stats". All fields are combined with a logical 'AND'. +""" +input player_match_map_stats_bool_exp { + _and: [player_match_map_stats_bool_exp!] + _not: player_match_map_stats_bool_exp + _or: [player_match_map_stats_bool_exp!] + assists: Int_comparison_exp + assists_ct: Int_comparison_exp + assists_t: Int_comparison_exp + counter_strafe_eligible_shots: Int_comparison_exp + counter_strafed_shots: Int_comparison_exp + crosshair_angle_count: Int_comparison_exp + crosshair_angle_sum_deg: numeric_comparison_exp + damage: Int_comparison_exp + damage_ct: Int_comparison_exp + damage_t: Int_comparison_exp + deaths: Int_comparison_exp + deaths_ct: Int_comparison_exp + deaths_t: Int_comparison_exp + decoy_throws: Int_comparison_exp + enemies_flashed: Int_comparison_exp + first_bullet_hits: Int_comparison_exp + first_bullet_shots: Int_comparison_exp + five_kill_rounds: Int_comparison_exp + flash_assists: Int_comparison_exp + flash_duration_count: Int_comparison_exp + flash_duration_sum: numeric_comparison_exp + flashes_thrown: Int_comparison_exp + four_kill_rounds: Int_comparison_exp + he_damage: Int_comparison_exp + he_team_damage: Int_comparison_exp + he_throws: Int_comparison_exp + headshot_hits: Int_comparison_exp + hits: Int_comparison_exp + hits_at_spotted: Int_comparison_exp + hs_kills: Int_comparison_exp + hs_kills_ct: Int_comparison_exp + hs_kills_t: Int_comparison_exp + kast_rounds: Int_comparison_exp + kast_total_rounds: Int_comparison_exp + kills: Int_comparison_exp + kills_ct: Int_comparison_exp + kills_t: Int_comparison_exp + knife_kills: Int_comparison_exp + match: matches_bool_exp + match_id: uuid_comparison_exp + match_map: match_maps_bool_exp + match_map_id: uuid_comparison_exp + molotov_damage: Int_comparison_exp + molotov_throws: Int_comparison_exp + non_awp_hits: Int_comparison_exp + on_target_frames: Int_comparison_exp + player: players_bool_exp + rounds_ct: Int_comparison_exp + rounds_played: Int_comparison_exp + rounds_t: Int_comparison_exp + shots_at_spotted: Int_comparison_exp + shots_fired: Int_comparison_exp + smoke_throws: Int_comparison_exp + spotted_count: Int_comparison_exp + spotted_with_damage_count: Int_comparison_exp + spray_hits: Int_comparison_exp + spray_shots: Int_comparison_exp + steam_id: bigint_comparison_exp + team_damage: Int_comparison_exp + team_flashed: Int_comparison_exp + three_kill_rounds: Int_comparison_exp + time_to_damage_count: Int_comparison_exp + time_to_damage_sum_s: numeric_comparison_exp + total_engagement_frames: Int_comparison_exp + trade_kill_attempts: Int_comparison_exp + trade_kill_opportunities: Int_comparison_exp + trade_kill_successes: Int_comparison_exp + traded_death_attempts: Int_comparison_exp + traded_death_opportunities: Int_comparison_exp + traded_death_successes: Int_comparison_exp + two_kill_rounds: Int_comparison_exp + unused_utility_value: Int_comparison_exp + updated_at: timestamptz_comparison_exp + util_on_death_count: Int_comparison_exp + util_on_death_sum: Int_comparison_exp + wasted_magazine_shots: Int_comparison_exp + zeus_kills: Int_comparison_exp +} + +""" +unique or primary key constraints on table "player_match_map_stats" +""" +enum player_match_map_stats_constraint { + """ + unique or primary key constraint on columns "steam_id", "match_map_id" + """ + player_match_map_stats_pkey +} + +""" +input type for incrementing numeric columns in table "player_match_map_stats" +""" +input player_match_map_stats_inc_input { + assists: Int + assists_ct: Int + assists_t: Int + counter_strafe_eligible_shots: Int + counter_strafed_shots: Int + crosshair_angle_count: Int + crosshair_angle_sum_deg: numeric + damage: Int + damage_ct: Int + damage_t: Int + deaths: Int + deaths_ct: Int + deaths_t: Int + decoy_throws: Int + enemies_flashed: Int + first_bullet_hits: Int + first_bullet_shots: Int + five_kill_rounds: Int + flash_assists: Int + flash_duration_count: Int + flash_duration_sum: numeric + flashes_thrown: Int + four_kill_rounds: Int + he_damage: Int + he_team_damage: Int + he_throws: Int + headshot_hits: Int + hits: Int + hits_at_spotted: Int + hs_kills: Int + hs_kills_ct: Int + hs_kills_t: Int + kast_rounds: Int + kast_total_rounds: Int + kills: Int + kills_ct: Int + kills_t: Int + knife_kills: Int + molotov_damage: Int + molotov_throws: Int + non_awp_hits: Int + on_target_frames: Int + rounds_ct: Int + rounds_played: Int + rounds_t: Int + shots_at_spotted: Int + shots_fired: Int + smoke_throws: Int + spotted_count: Int + spotted_with_damage_count: Int + spray_hits: Int + spray_shots: Int + steam_id: bigint + team_damage: Int + team_flashed: Int + three_kill_rounds: Int + time_to_damage_count: Int + time_to_damage_sum_s: numeric + total_engagement_frames: Int + trade_kill_attempts: Int + trade_kill_opportunities: Int + trade_kill_successes: Int + traded_death_attempts: Int + traded_death_opportunities: Int + traded_death_successes: Int + two_kill_rounds: Int + unused_utility_value: Int + util_on_death_count: Int + util_on_death_sum: Int + wasted_magazine_shots: Int + zeus_kills: Int +} + +""" +input type for inserting data into table "player_match_map_stats" +""" +input player_match_map_stats_insert_input { + assists: Int + assists_ct: Int + assists_t: Int + counter_strafe_eligible_shots: Int + counter_strafed_shots: Int + crosshair_angle_count: Int + crosshair_angle_sum_deg: numeric + damage: Int + damage_ct: Int + damage_t: Int + deaths: Int + deaths_ct: Int + deaths_t: Int + decoy_throws: Int + enemies_flashed: Int + first_bullet_hits: Int + first_bullet_shots: Int + five_kill_rounds: Int + flash_assists: Int + flash_duration_count: Int + flash_duration_sum: numeric + flashes_thrown: Int + four_kill_rounds: Int + he_damage: Int + he_team_damage: Int + he_throws: Int + headshot_hits: Int + hits: Int + hits_at_spotted: Int + hs_kills: Int + hs_kills_ct: Int + hs_kills_t: Int + kast_rounds: Int + kast_total_rounds: Int + kills: Int + kills_ct: Int + kills_t: Int + knife_kills: Int + match: matches_obj_rel_insert_input + match_id: uuid + match_map: match_maps_obj_rel_insert_input + match_map_id: uuid + molotov_damage: Int + molotov_throws: Int + non_awp_hits: Int + on_target_frames: Int + player: players_obj_rel_insert_input + rounds_ct: Int + rounds_played: Int + rounds_t: Int + shots_at_spotted: Int + shots_fired: Int + smoke_throws: Int + spotted_count: Int + spotted_with_damage_count: Int + spray_hits: Int + spray_shots: Int + steam_id: bigint + team_damage: Int + team_flashed: Int + three_kill_rounds: Int + time_to_damage_count: Int + time_to_damage_sum_s: numeric + total_engagement_frames: Int + trade_kill_attempts: Int + trade_kill_opportunities: Int + trade_kill_successes: Int + traded_death_attempts: Int + traded_death_opportunities: Int + traded_death_successes: Int + two_kill_rounds: Int + unused_utility_value: Int + updated_at: timestamptz + util_on_death_count: Int + util_on_death_sum: Int + wasted_magazine_shots: Int + zeus_kills: Int +} + +"""aggregate max on columns""" +type player_match_map_stats_max_fields { + assists: Int + assists_ct: Int + assists_t: Int + counter_strafe_eligible_shots: Int + counter_strafed_shots: Int + crosshair_angle_count: Int + crosshair_angle_sum_deg: numeric + damage: Int + damage_ct: Int + damage_t: Int + deaths: Int + deaths_ct: Int + deaths_t: Int + decoy_throws: Int + enemies_flashed: Int + first_bullet_hits: Int + first_bullet_shots: Int + five_kill_rounds: Int + flash_assists: Int + flash_duration_count: Int + flash_duration_sum: numeric + flashes_thrown: Int + four_kill_rounds: Int + he_damage: Int + he_team_damage: Int + he_throws: Int + headshot_hits: Int + hits: Int + hits_at_spotted: Int + hs_kills: Int + hs_kills_ct: Int + hs_kills_t: Int + kast_rounds: Int + kast_total_rounds: Int + kills: Int + kills_ct: Int + kills_t: Int + knife_kills: Int + match_id: uuid + match_map_id: uuid + molotov_damage: Int + molotov_throws: Int + non_awp_hits: Int + on_target_frames: Int + rounds_ct: Int + rounds_played: Int + rounds_t: Int + shots_at_spotted: Int + shots_fired: Int + smoke_throws: Int + spotted_count: Int + spotted_with_damage_count: Int + spray_hits: Int + spray_shots: Int + steam_id: bigint + team_damage: Int + team_flashed: Int + three_kill_rounds: Int + time_to_damage_count: Int + time_to_damage_sum_s: numeric + total_engagement_frames: Int + trade_kill_attempts: Int + trade_kill_opportunities: Int + trade_kill_successes: Int + traded_death_attempts: Int + traded_death_opportunities: Int + traded_death_successes: Int + two_kill_rounds: Int + unused_utility_value: Int + updated_at: timestamptz + util_on_death_count: Int + util_on_death_sum: Int + wasted_magazine_shots: Int + zeus_kills: Int +} + +""" +order by max() on columns of table "player_match_map_stats" +""" +input player_match_map_stats_max_order_by { + assists: order_by + assists_ct: order_by + assists_t: order_by + counter_strafe_eligible_shots: order_by + counter_strafed_shots: order_by + crosshair_angle_count: order_by + crosshair_angle_sum_deg: order_by + damage: order_by + damage_ct: order_by + damage_t: order_by + deaths: order_by + deaths_ct: order_by + deaths_t: order_by + decoy_throws: order_by + enemies_flashed: order_by + first_bullet_hits: order_by + first_bullet_shots: order_by + five_kill_rounds: order_by + flash_assists: order_by + flash_duration_count: order_by + flash_duration_sum: order_by + flashes_thrown: order_by + four_kill_rounds: order_by + he_damage: order_by + he_team_damage: order_by + he_throws: order_by + headshot_hits: order_by + hits: order_by + hits_at_spotted: order_by + hs_kills: order_by + hs_kills_ct: order_by + hs_kills_t: order_by + kast_rounds: order_by + kast_total_rounds: order_by + kills: order_by + kills_ct: order_by + kills_t: order_by + knife_kills: order_by + match_id: order_by + match_map_id: order_by + molotov_damage: order_by + molotov_throws: order_by + non_awp_hits: order_by + on_target_frames: order_by + rounds_ct: order_by + rounds_played: order_by + rounds_t: order_by + shots_at_spotted: order_by + shots_fired: order_by + smoke_throws: order_by + spotted_count: order_by + spotted_with_damage_count: order_by + spray_hits: order_by + spray_shots: order_by + steam_id: order_by + team_damage: order_by + team_flashed: order_by + three_kill_rounds: order_by + time_to_damage_count: order_by + time_to_damage_sum_s: order_by + total_engagement_frames: order_by + trade_kill_attempts: order_by + trade_kill_opportunities: order_by + trade_kill_successes: order_by + traded_death_attempts: order_by + traded_death_opportunities: order_by + traded_death_successes: order_by + two_kill_rounds: order_by + unused_utility_value: order_by + updated_at: order_by + util_on_death_count: order_by + util_on_death_sum: order_by + wasted_magazine_shots: order_by + zeus_kills: order_by +} + +"""aggregate min on columns""" +type player_match_map_stats_min_fields { + assists: Int + assists_ct: Int + assists_t: Int + counter_strafe_eligible_shots: Int + counter_strafed_shots: Int + crosshair_angle_count: Int + crosshair_angle_sum_deg: numeric + damage: Int + damage_ct: Int + damage_t: Int + deaths: Int + deaths_ct: Int + deaths_t: Int + decoy_throws: Int + enemies_flashed: Int + first_bullet_hits: Int + first_bullet_shots: Int + five_kill_rounds: Int + flash_assists: Int + flash_duration_count: Int + flash_duration_sum: numeric + flashes_thrown: Int + four_kill_rounds: Int + he_damage: Int + he_team_damage: Int + he_throws: Int + headshot_hits: Int + hits: Int + hits_at_spotted: Int + hs_kills: Int + hs_kills_ct: Int + hs_kills_t: Int + kast_rounds: Int + kast_total_rounds: Int + kills: Int + kills_ct: Int + kills_t: Int + knife_kills: Int + match_id: uuid + match_map_id: uuid + molotov_damage: Int + molotov_throws: Int + non_awp_hits: Int + on_target_frames: Int + rounds_ct: Int + rounds_played: Int + rounds_t: Int + shots_at_spotted: Int + shots_fired: Int + smoke_throws: Int + spotted_count: Int + spotted_with_damage_count: Int + spray_hits: Int + spray_shots: Int + steam_id: bigint + team_damage: Int + team_flashed: Int + three_kill_rounds: Int + time_to_damage_count: Int + time_to_damage_sum_s: numeric + total_engagement_frames: Int + trade_kill_attempts: Int + trade_kill_opportunities: Int + trade_kill_successes: Int + traded_death_attempts: Int + traded_death_opportunities: Int + traded_death_successes: Int + two_kill_rounds: Int + unused_utility_value: Int + updated_at: timestamptz + util_on_death_count: Int + util_on_death_sum: Int + wasted_magazine_shots: Int + zeus_kills: Int +} + +""" +order by min() on columns of table "player_match_map_stats" +""" +input player_match_map_stats_min_order_by { + assists: order_by + assists_ct: order_by + assists_t: order_by + counter_strafe_eligible_shots: order_by + counter_strafed_shots: order_by + crosshair_angle_count: order_by + crosshair_angle_sum_deg: order_by + damage: order_by + damage_ct: order_by + damage_t: order_by + deaths: order_by + deaths_ct: order_by + deaths_t: order_by + decoy_throws: order_by + enemies_flashed: order_by + first_bullet_hits: order_by + first_bullet_shots: order_by + five_kill_rounds: order_by + flash_assists: order_by + flash_duration_count: order_by + flash_duration_sum: order_by + flashes_thrown: order_by + four_kill_rounds: order_by + he_damage: order_by + he_team_damage: order_by + he_throws: order_by + headshot_hits: order_by + hits: order_by + hits_at_spotted: order_by + hs_kills: order_by + hs_kills_ct: order_by + hs_kills_t: order_by + kast_rounds: order_by + kast_total_rounds: order_by + kills: order_by + kills_ct: order_by + kills_t: order_by + knife_kills: order_by + match_id: order_by + match_map_id: order_by + molotov_damage: order_by + molotov_throws: order_by + non_awp_hits: order_by + on_target_frames: order_by + rounds_ct: order_by + rounds_played: order_by + rounds_t: order_by + shots_at_spotted: order_by + shots_fired: order_by + smoke_throws: order_by + spotted_count: order_by + spotted_with_damage_count: order_by + spray_hits: order_by + spray_shots: order_by + steam_id: order_by + team_damage: order_by + team_flashed: order_by + three_kill_rounds: order_by + time_to_damage_count: order_by + time_to_damage_sum_s: order_by + total_engagement_frames: order_by + trade_kill_attempts: order_by + trade_kill_opportunities: order_by + trade_kill_successes: order_by + traded_death_attempts: order_by + traded_death_opportunities: order_by + traded_death_successes: order_by + two_kill_rounds: order_by + unused_utility_value: order_by + updated_at: order_by + util_on_death_count: order_by + util_on_death_sum: order_by + wasted_magazine_shots: order_by + zeus_kills: order_by +} + +""" +response of any mutation on the table "player_match_map_stats" +""" +type player_match_map_stats_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [player_match_map_stats!]! +} + +""" +on_conflict condition type for table "player_match_map_stats" +""" +input player_match_map_stats_on_conflict { + constraint: player_match_map_stats_constraint! + update_columns: [player_match_map_stats_update_column!]! = [] + where: player_match_map_stats_bool_exp +} + +"""Ordering options when selecting data from "player_match_map_stats".""" +input player_match_map_stats_order_by { + assists: order_by + assists_ct: order_by + assists_t: order_by + counter_strafe_eligible_shots: order_by + counter_strafed_shots: order_by + crosshair_angle_count: order_by + crosshair_angle_sum_deg: order_by + damage: order_by + damage_ct: order_by + damage_t: order_by + deaths: order_by + deaths_ct: order_by + deaths_t: order_by + decoy_throws: order_by + enemies_flashed: order_by + first_bullet_hits: order_by + first_bullet_shots: order_by + five_kill_rounds: order_by + flash_assists: order_by + flash_duration_count: order_by + flash_duration_sum: order_by + flashes_thrown: order_by + four_kill_rounds: order_by + he_damage: order_by + he_team_damage: order_by + he_throws: order_by + headshot_hits: order_by + hits: order_by + hits_at_spotted: order_by + hs_kills: order_by + hs_kills_ct: order_by + hs_kills_t: order_by + kast_rounds: order_by + kast_total_rounds: order_by + kills: order_by + kills_ct: order_by + kills_t: order_by + knife_kills: order_by + match: matches_order_by + match_id: order_by + match_map: match_maps_order_by + match_map_id: order_by + molotov_damage: order_by + molotov_throws: order_by + non_awp_hits: order_by + on_target_frames: order_by + player: players_order_by + rounds_ct: order_by + rounds_played: order_by + rounds_t: order_by + shots_at_spotted: order_by + shots_fired: order_by + smoke_throws: order_by + spotted_count: order_by + spotted_with_damage_count: order_by + spray_hits: order_by + spray_shots: order_by + steam_id: order_by + team_damage: order_by + team_flashed: order_by + three_kill_rounds: order_by + time_to_damage_count: order_by + time_to_damage_sum_s: order_by + total_engagement_frames: order_by + trade_kill_attempts: order_by + trade_kill_opportunities: order_by + trade_kill_successes: order_by + traded_death_attempts: order_by + traded_death_opportunities: order_by + traded_death_successes: order_by + two_kill_rounds: order_by + unused_utility_value: order_by + updated_at: order_by + util_on_death_count: order_by + util_on_death_sum: order_by + wasted_magazine_shots: order_by + zeus_kills: order_by +} + +"""primary key columns input for table: player_match_map_stats""" +input player_match_map_stats_pk_columns_input { + match_map_id: uuid! + steam_id: bigint! +} + +""" +select columns of table "player_match_map_stats" +""" +enum player_match_map_stats_select_column { + """column name""" + assists + + """column name""" + assists_ct + + """column name""" + assists_t + + """column name""" + counter_strafe_eligible_shots + + """column name""" + counter_strafed_shots + + """column name""" + crosshair_angle_count + + """column name""" + crosshair_angle_sum_deg + + """column name""" + damage + + """column name""" + damage_ct + + """column name""" + damage_t + + """column name""" + deaths + + """column name""" + deaths_ct + + """column name""" + deaths_t + + """column name""" + decoy_throws + + """column name""" + enemies_flashed + + """column name""" + first_bullet_hits + + """column name""" + first_bullet_shots + + """column name""" + five_kill_rounds + + """column name""" + flash_assists + + """column name""" + flash_duration_count + + """column name""" + flash_duration_sum + + """column name""" + flashes_thrown + + """column name""" + four_kill_rounds + + """column name""" + he_damage + + """column name""" + he_team_damage + + """column name""" + he_throws + + """column name""" + headshot_hits + + """column name""" + hits + + """column name""" + hits_at_spotted + + """column name""" + hs_kills + + """column name""" + hs_kills_ct + + """column name""" + hs_kills_t + + """column name""" + kast_rounds + + """column name""" + kast_total_rounds + + """column name""" + kills + + """column name""" + kills_ct + + """column name""" + kills_t + + """column name""" + knife_kills + + """column name""" + match_id + + """column name""" + match_map_id + + """column name""" + molotov_damage + + """column name""" + molotov_throws + + """column name""" + non_awp_hits + + """column name""" + on_target_frames + + """column name""" + rounds_ct + + """column name""" + rounds_played + + """column name""" + rounds_t + + """column name""" + shots_at_spotted + + """column name""" + shots_fired + + """column name""" + smoke_throws + + """column name""" + spotted_count + + """column name""" + spotted_with_damage_count + + """column name""" + spray_hits + + """column name""" + spray_shots + + """column name""" + steam_id + + """column name""" + team_damage + + """column name""" + team_flashed + + """column name""" + three_kill_rounds + + """column name""" + time_to_damage_count + + """column name""" + time_to_damage_sum_s + + """column name""" + total_engagement_frames + + """column name""" + trade_kill_attempts + + """column name""" + trade_kill_opportunities + + """column name""" + trade_kill_successes + + """column name""" + traded_death_attempts + + """column name""" + traded_death_opportunities + + """column name""" + traded_death_successes + + """column name""" + two_kill_rounds + + """column name""" + unused_utility_value + + """column name""" + updated_at + + """column name""" + util_on_death_count + + """column name""" + util_on_death_sum + + """column name""" + wasted_magazine_shots + + """column name""" + zeus_kills +} + +""" +input type for updating data in table "player_match_map_stats" +""" +input player_match_map_stats_set_input { + assists: Int + assists_ct: Int + assists_t: Int + counter_strafe_eligible_shots: Int + counter_strafed_shots: Int + crosshair_angle_count: Int + crosshair_angle_sum_deg: numeric + damage: Int + damage_ct: Int + damage_t: Int + deaths: Int + deaths_ct: Int + deaths_t: Int + decoy_throws: Int + enemies_flashed: Int + first_bullet_hits: Int + first_bullet_shots: Int + five_kill_rounds: Int + flash_assists: Int + flash_duration_count: Int + flash_duration_sum: numeric + flashes_thrown: Int + four_kill_rounds: Int + he_damage: Int + he_team_damage: Int + he_throws: Int + headshot_hits: Int + hits: Int + hits_at_spotted: Int + hs_kills: Int + hs_kills_ct: Int + hs_kills_t: Int + kast_rounds: Int + kast_total_rounds: Int + kills: Int + kills_ct: Int + kills_t: Int + knife_kills: Int + match_id: uuid + match_map_id: uuid + molotov_damage: Int + molotov_throws: Int + non_awp_hits: Int + on_target_frames: Int + rounds_ct: Int + rounds_played: Int + rounds_t: Int + shots_at_spotted: Int + shots_fired: Int + smoke_throws: Int + spotted_count: Int + spotted_with_damage_count: Int + spray_hits: Int + spray_shots: Int + steam_id: bigint + team_damage: Int + team_flashed: Int + three_kill_rounds: Int + time_to_damage_count: Int + time_to_damage_sum_s: numeric + total_engagement_frames: Int + trade_kill_attempts: Int + trade_kill_opportunities: Int + trade_kill_successes: Int + traded_death_attempts: Int + traded_death_opportunities: Int + traded_death_successes: Int + two_kill_rounds: Int + unused_utility_value: Int + updated_at: timestamptz + util_on_death_count: Int + util_on_death_sum: Int + wasted_magazine_shots: Int + zeus_kills: Int +} + +"""aggregate stddev on columns""" +type player_match_map_stats_stddev_fields { + assists: Float + assists_ct: Float + assists_t: Float + counter_strafe_eligible_shots: Float + counter_strafed_shots: Float + crosshair_angle_count: Float + crosshair_angle_sum_deg: Float + damage: Float + damage_ct: Float + damage_t: Float + deaths: Float + deaths_ct: Float + deaths_t: Float + decoy_throws: Float + enemies_flashed: Float + first_bullet_hits: Float + first_bullet_shots: Float + five_kill_rounds: Float + flash_assists: Float + flash_duration_count: Float + flash_duration_sum: Float + flashes_thrown: Float + four_kill_rounds: Float + he_damage: Float + he_team_damage: Float + he_throws: Float + headshot_hits: Float + hits: Float + hits_at_spotted: Float + hs_kills: Float + hs_kills_ct: Float + hs_kills_t: Float + kast_rounds: Float + kast_total_rounds: Float + kills: Float + kills_ct: Float + kills_t: Float + knife_kills: Float + molotov_damage: Float + molotov_throws: Float + non_awp_hits: Float + on_target_frames: Float + rounds_ct: Float + rounds_played: Float + rounds_t: Float + shots_at_spotted: Float + shots_fired: Float + smoke_throws: Float + spotted_count: Float + spotted_with_damage_count: Float + spray_hits: Float + spray_shots: Float + steam_id: Float + team_damage: Float + team_flashed: Float + three_kill_rounds: Float + time_to_damage_count: Float + time_to_damage_sum_s: Float + total_engagement_frames: Float + trade_kill_attempts: Float + trade_kill_opportunities: Float + trade_kill_successes: Float + traded_death_attempts: Float + traded_death_opportunities: Float + traded_death_successes: Float + two_kill_rounds: Float + unused_utility_value: Float + util_on_death_count: Float + util_on_death_sum: Float + wasted_magazine_shots: Float + zeus_kills: Float +} + +""" +order by stddev() on columns of table "player_match_map_stats" +""" +input player_match_map_stats_stddev_order_by { + assists: order_by + assists_ct: order_by + assists_t: order_by + counter_strafe_eligible_shots: order_by + counter_strafed_shots: order_by + crosshair_angle_count: order_by + crosshair_angle_sum_deg: order_by + damage: order_by + damage_ct: order_by + damage_t: order_by + deaths: order_by + deaths_ct: order_by + deaths_t: order_by + decoy_throws: order_by + enemies_flashed: order_by + first_bullet_hits: order_by + first_bullet_shots: order_by + five_kill_rounds: order_by + flash_assists: order_by + flash_duration_count: order_by + flash_duration_sum: order_by + flashes_thrown: order_by + four_kill_rounds: order_by + he_damage: order_by + he_team_damage: order_by + he_throws: order_by + headshot_hits: order_by + hits: order_by + hits_at_spotted: order_by + hs_kills: order_by + hs_kills_ct: order_by + hs_kills_t: order_by + kast_rounds: order_by + kast_total_rounds: order_by + kills: order_by + kills_ct: order_by + kills_t: order_by + knife_kills: order_by + molotov_damage: order_by + molotov_throws: order_by + non_awp_hits: order_by + on_target_frames: order_by + rounds_ct: order_by + rounds_played: order_by + rounds_t: order_by + shots_at_spotted: order_by + shots_fired: order_by + smoke_throws: order_by + spotted_count: order_by + spotted_with_damage_count: order_by + spray_hits: order_by + spray_shots: order_by + steam_id: order_by + team_damage: order_by + team_flashed: order_by + three_kill_rounds: order_by + time_to_damage_count: order_by + time_to_damage_sum_s: order_by + total_engagement_frames: order_by + trade_kill_attempts: order_by + trade_kill_opportunities: order_by + trade_kill_successes: order_by + traded_death_attempts: order_by + traded_death_opportunities: order_by + traded_death_successes: order_by + two_kill_rounds: order_by + unused_utility_value: order_by + util_on_death_count: order_by + util_on_death_sum: order_by + wasted_magazine_shots: order_by + zeus_kills: order_by +} + +"""aggregate stddev_pop on columns""" +type player_match_map_stats_stddev_pop_fields { + assists: Float + assists_ct: Float + assists_t: Float + counter_strafe_eligible_shots: Float + counter_strafed_shots: Float + crosshair_angle_count: Float + crosshair_angle_sum_deg: Float + damage: Float + damage_ct: Float + damage_t: Float + deaths: Float + deaths_ct: Float + deaths_t: Float + decoy_throws: Float + enemies_flashed: Float + first_bullet_hits: Float + first_bullet_shots: Float + five_kill_rounds: Float + flash_assists: Float + flash_duration_count: Float + flash_duration_sum: Float + flashes_thrown: Float + four_kill_rounds: Float + he_damage: Float + he_team_damage: Float + he_throws: Float + headshot_hits: Float + hits: Float + hits_at_spotted: Float + hs_kills: Float + hs_kills_ct: Float + hs_kills_t: Float + kast_rounds: Float + kast_total_rounds: Float + kills: Float + kills_ct: Float + kills_t: Float + knife_kills: Float + molotov_damage: Float + molotov_throws: Float + non_awp_hits: Float + on_target_frames: Float + rounds_ct: Float + rounds_played: Float + rounds_t: Float + shots_at_spotted: Float + shots_fired: Float + smoke_throws: Float + spotted_count: Float + spotted_with_damage_count: Float + spray_hits: Float + spray_shots: Float + steam_id: Float + team_damage: Float + team_flashed: Float + three_kill_rounds: Float + time_to_damage_count: Float + time_to_damage_sum_s: Float + total_engagement_frames: Float + trade_kill_attempts: Float + trade_kill_opportunities: Float + trade_kill_successes: Float + traded_death_attempts: Float + traded_death_opportunities: Float + traded_death_successes: Float + two_kill_rounds: Float + unused_utility_value: Float + util_on_death_count: Float + util_on_death_sum: Float + wasted_magazine_shots: Float + zeus_kills: Float +} + +""" +order by stddev_pop() on columns of table "player_match_map_stats" +""" +input player_match_map_stats_stddev_pop_order_by { + assists: order_by + assists_ct: order_by + assists_t: order_by + counter_strafe_eligible_shots: order_by + counter_strafed_shots: order_by + crosshair_angle_count: order_by + crosshair_angle_sum_deg: order_by + damage: order_by + damage_ct: order_by + damage_t: order_by + deaths: order_by + deaths_ct: order_by + deaths_t: order_by + decoy_throws: order_by + enemies_flashed: order_by + first_bullet_hits: order_by + first_bullet_shots: order_by + five_kill_rounds: order_by + flash_assists: order_by + flash_duration_count: order_by + flash_duration_sum: order_by + flashes_thrown: order_by + four_kill_rounds: order_by + he_damage: order_by + he_team_damage: order_by + he_throws: order_by + headshot_hits: order_by + hits: order_by + hits_at_spotted: order_by + hs_kills: order_by + hs_kills_ct: order_by + hs_kills_t: order_by + kast_rounds: order_by + kast_total_rounds: order_by + kills: order_by + kills_ct: order_by + kills_t: order_by + knife_kills: order_by + molotov_damage: order_by + molotov_throws: order_by + non_awp_hits: order_by + on_target_frames: order_by + rounds_ct: order_by + rounds_played: order_by + rounds_t: order_by + shots_at_spotted: order_by + shots_fired: order_by + smoke_throws: order_by + spotted_count: order_by + spotted_with_damage_count: order_by + spray_hits: order_by + spray_shots: order_by + steam_id: order_by + team_damage: order_by + team_flashed: order_by + three_kill_rounds: order_by + time_to_damage_count: order_by + time_to_damage_sum_s: order_by + total_engagement_frames: order_by + trade_kill_attempts: order_by + trade_kill_opportunities: order_by + trade_kill_successes: order_by + traded_death_attempts: order_by + traded_death_opportunities: order_by + traded_death_successes: order_by + two_kill_rounds: order_by + unused_utility_value: order_by + util_on_death_count: order_by + util_on_death_sum: order_by + wasted_magazine_shots: order_by + zeus_kills: order_by +} + +"""aggregate stddev_samp on columns""" +type player_match_map_stats_stddev_samp_fields { + assists: Float + assists_ct: Float + assists_t: Float + counter_strafe_eligible_shots: Float + counter_strafed_shots: Float + crosshair_angle_count: Float + crosshair_angle_sum_deg: Float + damage: Float + damage_ct: Float + damage_t: Float + deaths: Float + deaths_ct: Float + deaths_t: Float + decoy_throws: Float + enemies_flashed: Float + first_bullet_hits: Float + first_bullet_shots: Float + five_kill_rounds: Float + flash_assists: Float + flash_duration_count: Float + flash_duration_sum: Float + flashes_thrown: Float + four_kill_rounds: Float + he_damage: Float + he_team_damage: Float + he_throws: Float + headshot_hits: Float + hits: Float + hits_at_spotted: Float + hs_kills: Float + hs_kills_ct: Float + hs_kills_t: Float + kast_rounds: Float + kast_total_rounds: Float + kills: Float + kills_ct: Float + kills_t: Float + knife_kills: Float + molotov_damage: Float + molotov_throws: Float + non_awp_hits: Float + on_target_frames: Float + rounds_ct: Float + rounds_played: Float + rounds_t: Float + shots_at_spotted: Float + shots_fired: Float + smoke_throws: Float + spotted_count: Float + spotted_with_damage_count: Float + spray_hits: Float + spray_shots: Float + steam_id: Float + team_damage: Float + team_flashed: Float + three_kill_rounds: Float + time_to_damage_count: Float + time_to_damage_sum_s: Float + total_engagement_frames: Float + trade_kill_attempts: Float + trade_kill_opportunities: Float + trade_kill_successes: Float + traded_death_attempts: Float + traded_death_opportunities: Float + traded_death_successes: Float + two_kill_rounds: Float + unused_utility_value: Float + util_on_death_count: Float + util_on_death_sum: Float + wasted_magazine_shots: Float + zeus_kills: Float +} + +""" +order by stddev_samp() on columns of table "player_match_map_stats" +""" +input player_match_map_stats_stddev_samp_order_by { + assists: order_by + assists_ct: order_by + assists_t: order_by + counter_strafe_eligible_shots: order_by + counter_strafed_shots: order_by + crosshair_angle_count: order_by + crosshair_angle_sum_deg: order_by + damage: order_by + damage_ct: order_by + damage_t: order_by + deaths: order_by + deaths_ct: order_by + deaths_t: order_by + decoy_throws: order_by + enemies_flashed: order_by + first_bullet_hits: order_by + first_bullet_shots: order_by + five_kill_rounds: order_by + flash_assists: order_by + flash_duration_count: order_by + flash_duration_sum: order_by + flashes_thrown: order_by + four_kill_rounds: order_by + he_damage: order_by + he_team_damage: order_by + he_throws: order_by + headshot_hits: order_by + hits: order_by + hits_at_spotted: order_by + hs_kills: order_by + hs_kills_ct: order_by + hs_kills_t: order_by + kast_rounds: order_by + kast_total_rounds: order_by + kills: order_by + kills_ct: order_by + kills_t: order_by + knife_kills: order_by + molotov_damage: order_by + molotov_throws: order_by + non_awp_hits: order_by + on_target_frames: order_by + rounds_ct: order_by + rounds_played: order_by + rounds_t: order_by + shots_at_spotted: order_by + shots_fired: order_by + smoke_throws: order_by + spotted_count: order_by + spotted_with_damage_count: order_by + spray_hits: order_by + spray_shots: order_by + steam_id: order_by + team_damage: order_by + team_flashed: order_by + three_kill_rounds: order_by + time_to_damage_count: order_by + time_to_damage_sum_s: order_by + total_engagement_frames: order_by + trade_kill_attempts: order_by + trade_kill_opportunities: order_by + trade_kill_successes: order_by + traded_death_attempts: order_by + traded_death_opportunities: order_by + traded_death_successes: order_by + two_kill_rounds: order_by + unused_utility_value: order_by + util_on_death_count: order_by + util_on_death_sum: order_by + wasted_magazine_shots: order_by + zeus_kills: order_by +} + +""" +Streaming cursor of the table "player_match_map_stats" +""" +input player_match_map_stats_stream_cursor_input { + """Stream column input with initial value""" + initial_value: player_match_map_stats_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input player_match_map_stats_stream_cursor_value_input { + assists: Int + assists_ct: Int + assists_t: Int + counter_strafe_eligible_shots: Int + counter_strafed_shots: Int + crosshair_angle_count: Int + crosshair_angle_sum_deg: numeric + damage: Int + damage_ct: Int + damage_t: Int + deaths: Int + deaths_ct: Int + deaths_t: Int + decoy_throws: Int + enemies_flashed: Int + first_bullet_hits: Int + first_bullet_shots: Int + five_kill_rounds: Int + flash_assists: Int + flash_duration_count: Int + flash_duration_sum: numeric + flashes_thrown: Int + four_kill_rounds: Int + he_damage: Int + he_team_damage: Int + he_throws: Int + headshot_hits: Int + hits: Int + hits_at_spotted: Int + hs_kills: Int + hs_kills_ct: Int + hs_kills_t: Int + kast_rounds: Int + kast_total_rounds: Int + kills: Int + kills_ct: Int + kills_t: Int + knife_kills: Int + match_id: uuid + match_map_id: uuid + molotov_damage: Int + molotov_throws: Int + non_awp_hits: Int + on_target_frames: Int + rounds_ct: Int + rounds_played: Int + rounds_t: Int + shots_at_spotted: Int + shots_fired: Int + smoke_throws: Int + spotted_count: Int + spotted_with_damage_count: Int + spray_hits: Int + spray_shots: Int + steam_id: bigint + team_damage: Int + team_flashed: Int + three_kill_rounds: Int + time_to_damage_count: Int + time_to_damage_sum_s: numeric + total_engagement_frames: Int + trade_kill_attempts: Int + trade_kill_opportunities: Int + trade_kill_successes: Int + traded_death_attempts: Int + traded_death_opportunities: Int + traded_death_successes: Int + two_kill_rounds: Int + unused_utility_value: Int + updated_at: timestamptz + util_on_death_count: Int + util_on_death_sum: Int + wasted_magazine_shots: Int + zeus_kills: Int +} + +"""aggregate sum on columns""" +type player_match_map_stats_sum_fields { + assists: Int + assists_ct: Int + assists_t: Int + counter_strafe_eligible_shots: Int + counter_strafed_shots: Int + crosshair_angle_count: Int + crosshair_angle_sum_deg: numeric + damage: Int + damage_ct: Int + damage_t: Int + deaths: Int + deaths_ct: Int + deaths_t: Int + decoy_throws: Int + enemies_flashed: Int + first_bullet_hits: Int + first_bullet_shots: Int + five_kill_rounds: Int + flash_assists: Int + flash_duration_count: Int + flash_duration_sum: numeric + flashes_thrown: Int + four_kill_rounds: Int + he_damage: Int + he_team_damage: Int + he_throws: Int + headshot_hits: Int + hits: Int + hits_at_spotted: Int + hs_kills: Int + hs_kills_ct: Int + hs_kills_t: Int + kast_rounds: Int + kast_total_rounds: Int + kills: Int + kills_ct: Int + kills_t: Int + knife_kills: Int + molotov_damage: Int + molotov_throws: Int + non_awp_hits: Int + on_target_frames: Int + rounds_ct: Int + rounds_played: Int + rounds_t: Int + shots_at_spotted: Int + shots_fired: Int + smoke_throws: Int + spotted_count: Int + spotted_with_damage_count: Int + spray_hits: Int + spray_shots: Int + steam_id: bigint + team_damage: Int + team_flashed: Int + three_kill_rounds: Int + time_to_damage_count: Int + time_to_damage_sum_s: numeric + total_engagement_frames: Int + trade_kill_attempts: Int + trade_kill_opportunities: Int + trade_kill_successes: Int + traded_death_attempts: Int + traded_death_opportunities: Int + traded_death_successes: Int + two_kill_rounds: Int + unused_utility_value: Int + util_on_death_count: Int + util_on_death_sum: Int + wasted_magazine_shots: Int + zeus_kills: Int +} + +""" +order by sum() on columns of table "player_match_map_stats" +""" +input player_match_map_stats_sum_order_by { + assists: order_by + assists_ct: order_by + assists_t: order_by + counter_strafe_eligible_shots: order_by + counter_strafed_shots: order_by + crosshair_angle_count: order_by + crosshair_angle_sum_deg: order_by + damage: order_by + damage_ct: order_by + damage_t: order_by + deaths: order_by + deaths_ct: order_by + deaths_t: order_by + decoy_throws: order_by + enemies_flashed: order_by + first_bullet_hits: order_by + first_bullet_shots: order_by + five_kill_rounds: order_by + flash_assists: order_by + flash_duration_count: order_by + flash_duration_sum: order_by + flashes_thrown: order_by + four_kill_rounds: order_by + he_damage: order_by + he_team_damage: order_by + he_throws: order_by + headshot_hits: order_by + hits: order_by + hits_at_spotted: order_by + hs_kills: order_by + hs_kills_ct: order_by + hs_kills_t: order_by + kast_rounds: order_by + kast_total_rounds: order_by + kills: order_by + kills_ct: order_by + kills_t: order_by + knife_kills: order_by + molotov_damage: order_by + molotov_throws: order_by + non_awp_hits: order_by + on_target_frames: order_by + rounds_ct: order_by + rounds_played: order_by + rounds_t: order_by + shots_at_spotted: order_by + shots_fired: order_by + smoke_throws: order_by + spotted_count: order_by + spotted_with_damage_count: order_by + spray_hits: order_by + spray_shots: order_by + steam_id: order_by + team_damage: order_by + team_flashed: order_by + three_kill_rounds: order_by + time_to_damage_count: order_by + time_to_damage_sum_s: order_by + total_engagement_frames: order_by + trade_kill_attempts: order_by + trade_kill_opportunities: order_by + trade_kill_successes: order_by + traded_death_attempts: order_by + traded_death_opportunities: order_by + traded_death_successes: order_by + two_kill_rounds: order_by + unused_utility_value: order_by + util_on_death_count: order_by + util_on_death_sum: order_by + wasted_magazine_shots: order_by + zeus_kills: order_by +} + +""" +update columns of table "player_match_map_stats" +""" +enum player_match_map_stats_update_column { + """column name""" + assists + + """column name""" + assists_ct + + """column name""" + assists_t + + """column name""" + counter_strafe_eligible_shots + + """column name""" + counter_strafed_shots + + """column name""" + crosshair_angle_count + + """column name""" + crosshair_angle_sum_deg + + """column name""" + damage + + """column name""" + damage_ct + + """column name""" + damage_t + + """column name""" + deaths + + """column name""" + deaths_ct + + """column name""" + deaths_t + + """column name""" + decoy_throws + + """column name""" + enemies_flashed + + """column name""" + first_bullet_hits + + """column name""" + first_bullet_shots + + """column name""" + five_kill_rounds + + """column name""" + flash_assists + + """column name""" + flash_duration_count + + """column name""" + flash_duration_sum + + """column name""" + flashes_thrown + + """column name""" + four_kill_rounds + + """column name""" + he_damage + + """column name""" + he_team_damage + + """column name""" + he_throws + + """column name""" + headshot_hits + + """column name""" + hits + + """column name""" + hits_at_spotted + + """column name""" + hs_kills + + """column name""" + hs_kills_ct + + """column name""" + hs_kills_t + + """column name""" + kast_rounds + + """column name""" + kast_total_rounds + + """column name""" + kills + + """column name""" + kills_ct + + """column name""" + kills_t + + """column name""" + knife_kills + + """column name""" + match_id + + """column name""" + match_map_id + + """column name""" + molotov_damage + + """column name""" + molotov_throws + + """column name""" + non_awp_hits + + """column name""" + on_target_frames + + """column name""" + rounds_ct + + """column name""" + rounds_played + + """column name""" + rounds_t + + """column name""" + shots_at_spotted + + """column name""" + shots_fired + + """column name""" + smoke_throws + + """column name""" + spotted_count + + """column name""" + spotted_with_damage_count + + """column name""" + spray_hits + + """column name""" + spray_shots + + """column name""" + steam_id + + """column name""" + team_damage + + """column name""" + team_flashed + + """column name""" + three_kill_rounds + + """column name""" + time_to_damage_count + + """column name""" + time_to_damage_sum_s + + """column name""" + total_engagement_frames + + """column name""" + trade_kill_attempts + + """column name""" + trade_kill_opportunities + + """column name""" + trade_kill_successes + + """column name""" + traded_death_attempts + + """column name""" + traded_death_opportunities + + """column name""" + traded_death_successes + + """column name""" + two_kill_rounds + + """column name""" + unused_utility_value + + """column name""" + updated_at + + """column name""" + util_on_death_count + + """column name""" + util_on_death_sum + + """column name""" + wasted_magazine_shots + + """column name""" + zeus_kills +} + +input player_match_map_stats_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: player_match_map_stats_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_match_map_stats_set_input + + """filter the rows which have to be updated""" + where: player_match_map_stats_bool_exp! +} + +"""aggregate var_pop on columns""" +type player_match_map_stats_var_pop_fields { + assists: Float + assists_ct: Float + assists_t: Float + counter_strafe_eligible_shots: Float + counter_strafed_shots: Float + crosshair_angle_count: Float + crosshair_angle_sum_deg: Float + damage: Float + damage_ct: Float + damage_t: Float + deaths: Float + deaths_ct: Float + deaths_t: Float + decoy_throws: Float + enemies_flashed: Float + first_bullet_hits: Float + first_bullet_shots: Float + five_kill_rounds: Float + flash_assists: Float + flash_duration_count: Float + flash_duration_sum: Float + flashes_thrown: Float + four_kill_rounds: Float + he_damage: Float + he_team_damage: Float + he_throws: Float + headshot_hits: Float + hits: Float + hits_at_spotted: Float + hs_kills: Float + hs_kills_ct: Float + hs_kills_t: Float + kast_rounds: Float + kast_total_rounds: Float + kills: Float + kills_ct: Float + kills_t: Float + knife_kills: Float + molotov_damage: Float + molotov_throws: Float + non_awp_hits: Float + on_target_frames: Float + rounds_ct: Float + rounds_played: Float + rounds_t: Float + shots_at_spotted: Float + shots_fired: Float + smoke_throws: Float + spotted_count: Float + spotted_with_damage_count: Float + spray_hits: Float + spray_shots: Float + steam_id: Float + team_damage: Float + team_flashed: Float + three_kill_rounds: Float + time_to_damage_count: Float + time_to_damage_sum_s: Float + total_engagement_frames: Float + trade_kill_attempts: Float + trade_kill_opportunities: Float + trade_kill_successes: Float + traded_death_attempts: Float + traded_death_opportunities: Float + traded_death_successes: Float + two_kill_rounds: Float + unused_utility_value: Float + util_on_death_count: Float + util_on_death_sum: Float + wasted_magazine_shots: Float + zeus_kills: Float +} + +""" +order by var_pop() on columns of table "player_match_map_stats" +""" +input player_match_map_stats_var_pop_order_by { + assists: order_by + assists_ct: order_by + assists_t: order_by + counter_strafe_eligible_shots: order_by + counter_strafed_shots: order_by + crosshair_angle_count: order_by + crosshair_angle_sum_deg: order_by + damage: order_by + damage_ct: order_by + damage_t: order_by + deaths: order_by + deaths_ct: order_by + deaths_t: order_by + decoy_throws: order_by + enemies_flashed: order_by + first_bullet_hits: order_by + first_bullet_shots: order_by + five_kill_rounds: order_by + flash_assists: order_by + flash_duration_count: order_by + flash_duration_sum: order_by + flashes_thrown: order_by + four_kill_rounds: order_by + he_damage: order_by + he_team_damage: order_by + he_throws: order_by + headshot_hits: order_by + hits: order_by + hits_at_spotted: order_by + hs_kills: order_by + hs_kills_ct: order_by + hs_kills_t: order_by + kast_rounds: order_by + kast_total_rounds: order_by + kills: order_by + kills_ct: order_by + kills_t: order_by + knife_kills: order_by + molotov_damage: order_by + molotov_throws: order_by + non_awp_hits: order_by + on_target_frames: order_by + rounds_ct: order_by + rounds_played: order_by + rounds_t: order_by + shots_at_spotted: order_by + shots_fired: order_by + smoke_throws: order_by + spotted_count: order_by + spotted_with_damage_count: order_by + spray_hits: order_by + spray_shots: order_by + steam_id: order_by + team_damage: order_by + team_flashed: order_by + three_kill_rounds: order_by + time_to_damage_count: order_by + time_to_damage_sum_s: order_by + total_engagement_frames: order_by + trade_kill_attempts: order_by + trade_kill_opportunities: order_by + trade_kill_successes: order_by + traded_death_attempts: order_by + traded_death_opportunities: order_by + traded_death_successes: order_by + two_kill_rounds: order_by + unused_utility_value: order_by + util_on_death_count: order_by + util_on_death_sum: order_by + wasted_magazine_shots: order_by + zeus_kills: order_by +} + +"""aggregate var_samp on columns""" +type player_match_map_stats_var_samp_fields { + assists: Float + assists_ct: Float + assists_t: Float + counter_strafe_eligible_shots: Float + counter_strafed_shots: Float + crosshair_angle_count: Float + crosshair_angle_sum_deg: Float + damage: Float + damage_ct: Float + damage_t: Float + deaths: Float + deaths_ct: Float + deaths_t: Float + decoy_throws: Float + enemies_flashed: Float + first_bullet_hits: Float + first_bullet_shots: Float + five_kill_rounds: Float + flash_assists: Float + flash_duration_count: Float + flash_duration_sum: Float + flashes_thrown: Float + four_kill_rounds: Float + he_damage: Float + he_team_damage: Float + he_throws: Float + headshot_hits: Float + hits: Float + hits_at_spotted: Float + hs_kills: Float + hs_kills_ct: Float + hs_kills_t: Float + kast_rounds: Float + kast_total_rounds: Float + kills: Float + kills_ct: Float + kills_t: Float + knife_kills: Float + molotov_damage: Float + molotov_throws: Float + non_awp_hits: Float + on_target_frames: Float + rounds_ct: Float + rounds_played: Float + rounds_t: Float + shots_at_spotted: Float + shots_fired: Float + smoke_throws: Float + spotted_count: Float + spotted_with_damage_count: Float + spray_hits: Float + spray_shots: Float + steam_id: Float + team_damage: Float + team_flashed: Float + three_kill_rounds: Float + time_to_damage_count: Float + time_to_damage_sum_s: Float + total_engagement_frames: Float + trade_kill_attempts: Float + trade_kill_opportunities: Float + trade_kill_successes: Float + traded_death_attempts: Float + traded_death_opportunities: Float + traded_death_successes: Float + two_kill_rounds: Float + unused_utility_value: Float + util_on_death_count: Float + util_on_death_sum: Float + wasted_magazine_shots: Float + zeus_kills: Float +} + +""" +order by var_samp() on columns of table "player_match_map_stats" +""" +input player_match_map_stats_var_samp_order_by { + assists: order_by + assists_ct: order_by + assists_t: order_by + counter_strafe_eligible_shots: order_by + counter_strafed_shots: order_by + crosshair_angle_count: order_by + crosshair_angle_sum_deg: order_by + damage: order_by + damage_ct: order_by + damage_t: order_by + deaths: order_by + deaths_ct: order_by + deaths_t: order_by + decoy_throws: order_by + enemies_flashed: order_by + first_bullet_hits: order_by + first_bullet_shots: order_by + five_kill_rounds: order_by + flash_assists: order_by + flash_duration_count: order_by + flash_duration_sum: order_by + flashes_thrown: order_by + four_kill_rounds: order_by + he_damage: order_by + he_team_damage: order_by + he_throws: order_by + headshot_hits: order_by + hits: order_by + hits_at_spotted: order_by + hs_kills: order_by + hs_kills_ct: order_by + hs_kills_t: order_by + kast_rounds: order_by + kast_total_rounds: order_by + kills: order_by + kills_ct: order_by + kills_t: order_by + knife_kills: order_by + molotov_damage: order_by + molotov_throws: order_by + non_awp_hits: order_by + on_target_frames: order_by + rounds_ct: order_by + rounds_played: order_by + rounds_t: order_by + shots_at_spotted: order_by + shots_fired: order_by + smoke_throws: order_by + spotted_count: order_by + spotted_with_damage_count: order_by + spray_hits: order_by + spray_shots: order_by + steam_id: order_by + team_damage: order_by + team_flashed: order_by + three_kill_rounds: order_by + time_to_damage_count: order_by + time_to_damage_sum_s: order_by + total_engagement_frames: order_by + trade_kill_attempts: order_by + trade_kill_opportunities: order_by + trade_kill_successes: order_by + traded_death_attempts: order_by + traded_death_opportunities: order_by + traded_death_successes: order_by + two_kill_rounds: order_by + unused_utility_value: order_by + util_on_death_count: order_by + util_on_death_sum: order_by + wasted_magazine_shots: order_by + zeus_kills: order_by +} + +"""aggregate variance on columns""" +type player_match_map_stats_variance_fields { + assists: Float + assists_ct: Float + assists_t: Float + counter_strafe_eligible_shots: Float + counter_strafed_shots: Float + crosshair_angle_count: Float + crosshair_angle_sum_deg: Float + damage: Float + damage_ct: Float + damage_t: Float + deaths: Float + deaths_ct: Float + deaths_t: Float + decoy_throws: Float + enemies_flashed: Float + first_bullet_hits: Float + first_bullet_shots: Float + five_kill_rounds: Float + flash_assists: Float + flash_duration_count: Float + flash_duration_sum: Float + flashes_thrown: Float + four_kill_rounds: Float + he_damage: Float + he_team_damage: Float + he_throws: Float + headshot_hits: Float + hits: Float + hits_at_spotted: Float + hs_kills: Float + hs_kills_ct: Float + hs_kills_t: Float + kast_rounds: Float + kast_total_rounds: Float + kills: Float + kills_ct: Float + kills_t: Float + knife_kills: Float + molotov_damage: Float + molotov_throws: Float + non_awp_hits: Float + on_target_frames: Float + rounds_ct: Float + rounds_played: Float + rounds_t: Float + shots_at_spotted: Float + shots_fired: Float + smoke_throws: Float + spotted_count: Float + spotted_with_damage_count: Float + spray_hits: Float + spray_shots: Float + steam_id: Float + team_damage: Float + team_flashed: Float + three_kill_rounds: Float + time_to_damage_count: Float + time_to_damage_sum_s: Float + total_engagement_frames: Float + trade_kill_attempts: Float + trade_kill_opportunities: Float + trade_kill_successes: Float + traded_death_attempts: Float + traded_death_opportunities: Float + traded_death_successes: Float + two_kill_rounds: Float + unused_utility_value: Float + util_on_death_count: Float + util_on_death_sum: Float + wasted_magazine_shots: Float + zeus_kills: Float +} + +""" +order by variance() on columns of table "player_match_map_stats" +""" +input player_match_map_stats_variance_order_by { + assists: order_by + assists_ct: order_by + assists_t: order_by + counter_strafe_eligible_shots: order_by + counter_strafed_shots: order_by + crosshair_angle_count: order_by + crosshair_angle_sum_deg: order_by + damage: order_by + damage_ct: order_by + damage_t: order_by + deaths: order_by + deaths_ct: order_by + deaths_t: order_by + decoy_throws: order_by + enemies_flashed: order_by + first_bullet_hits: order_by + first_bullet_shots: order_by + five_kill_rounds: order_by + flash_assists: order_by + flash_duration_count: order_by + flash_duration_sum: order_by + flashes_thrown: order_by + four_kill_rounds: order_by + he_damage: order_by + he_team_damage: order_by + he_throws: order_by + headshot_hits: order_by + hits: order_by + hits_at_spotted: order_by + hs_kills: order_by + hs_kills_ct: order_by + hs_kills_t: order_by + kast_rounds: order_by + kast_total_rounds: order_by + kills: order_by + kills_ct: order_by + kills_t: order_by + knife_kills: order_by + molotov_damage: order_by + molotov_throws: order_by + non_awp_hits: order_by + on_target_frames: order_by + rounds_ct: order_by + rounds_played: order_by + rounds_t: order_by + shots_at_spotted: order_by + shots_fired: order_by + smoke_throws: order_by + spotted_count: order_by + spotted_with_damage_count: order_by + spray_hits: order_by + spray_shots: order_by + steam_id: order_by + team_damage: order_by + team_flashed: order_by + three_kill_rounds: order_by + time_to_damage_count: order_by + time_to_damage_sum_s: order_by + total_engagement_frames: order_by + trade_kill_attempts: order_by + trade_kill_opportunities: order_by + trade_kill_successes: order_by + traded_death_attempts: order_by + traded_death_opportunities: order_by + traded_death_successes: order_by + two_kill_rounds: order_by + unused_utility_value: order_by + util_on_death_count: order_by + util_on_death_sum: order_by + wasted_magazine_shots: order_by + zeus_kills: order_by +} + +""" +columns and relationships of "player_match_performance_v" +""" +type player_match_performance_v { + accuracy: numeric + accuracy_spotted: numeric + aim_rating: float8 + counter_strafe_pct: numeric + enemy_blind_pr: numeric + flash_assists_pr: numeric + hs_pct: numeric + kast_pct: numeric + match_id: uuid + overall_rating: float8 + played_at: timestamptz + positioning_rating: float8 + rounds: Int + source: String + steam_id: bigint + survival_pct: numeric + traded_death_pct: numeric + util_efficiency: numeric + utility_rating: float8 +} + +""" +aggregated selection of "player_match_performance_v" +""" +type player_match_performance_v_aggregate { + aggregate: player_match_performance_v_aggregate_fields + nodes: [player_match_performance_v!]! +} + +""" +aggregate fields of "player_match_performance_v" +""" +type player_match_performance_v_aggregate_fields { + avg: player_match_performance_v_avg_fields + count(columns: [player_match_performance_v_select_column!], distinct: Boolean): Int! + max: player_match_performance_v_max_fields + min: player_match_performance_v_min_fields + stddev: player_match_performance_v_stddev_fields + stddev_pop: player_match_performance_v_stddev_pop_fields + stddev_samp: player_match_performance_v_stddev_samp_fields + sum: player_match_performance_v_sum_fields + var_pop: player_match_performance_v_var_pop_fields + var_samp: player_match_performance_v_var_samp_fields + variance: player_match_performance_v_variance_fields +} + +"""aggregate avg on columns""" +type player_match_performance_v_avg_fields { + accuracy: Float + accuracy_spotted: Float + aim_rating: Float + counter_strafe_pct: Float + enemy_blind_pr: Float + flash_assists_pr: Float + hs_pct: Float + kast_pct: Float + overall_rating: Float + positioning_rating: Float + rounds: Float + steam_id: Float + survival_pct: Float + traded_death_pct: Float + util_efficiency: Float + utility_rating: Float +} + +""" +Boolean expression to filter rows from the table "player_match_performance_v". All fields are combined with a logical 'AND'. +""" +input player_match_performance_v_bool_exp { + _and: [player_match_performance_v_bool_exp!] + _not: player_match_performance_v_bool_exp + _or: [player_match_performance_v_bool_exp!] + accuracy: numeric_comparison_exp + accuracy_spotted: numeric_comparison_exp + aim_rating: float8_comparison_exp + counter_strafe_pct: numeric_comparison_exp + enemy_blind_pr: numeric_comparison_exp + flash_assists_pr: numeric_comparison_exp + hs_pct: numeric_comparison_exp + kast_pct: numeric_comparison_exp + match_id: uuid_comparison_exp + overall_rating: float8_comparison_exp + played_at: timestamptz_comparison_exp + positioning_rating: float8_comparison_exp + rounds: Int_comparison_exp + source: String_comparison_exp + steam_id: bigint_comparison_exp + survival_pct: numeric_comparison_exp + traded_death_pct: numeric_comparison_exp + util_efficiency: numeric_comparison_exp + utility_rating: float8_comparison_exp +} + +"""aggregate max on columns""" +type player_match_performance_v_max_fields { + accuracy: numeric + accuracy_spotted: numeric + aim_rating: float8 + counter_strafe_pct: numeric + enemy_blind_pr: numeric + flash_assists_pr: numeric + hs_pct: numeric + kast_pct: numeric + match_id: uuid + overall_rating: float8 + played_at: timestamptz + positioning_rating: float8 + rounds: Int + source: String + steam_id: bigint + survival_pct: numeric + traded_death_pct: numeric + util_efficiency: numeric + utility_rating: float8 +} + +"""aggregate min on columns""" +type player_match_performance_v_min_fields { + accuracy: numeric + accuracy_spotted: numeric + aim_rating: float8 + counter_strafe_pct: numeric + enemy_blind_pr: numeric + flash_assists_pr: numeric + hs_pct: numeric + kast_pct: numeric + match_id: uuid + overall_rating: float8 + played_at: timestamptz + positioning_rating: float8 + rounds: Int + source: String + steam_id: bigint + survival_pct: numeric + traded_death_pct: numeric + util_efficiency: numeric + utility_rating: float8 +} + +""" +Ordering options when selecting data from "player_match_performance_v". +""" +input player_match_performance_v_order_by { + accuracy: order_by + accuracy_spotted: order_by + aim_rating: order_by + counter_strafe_pct: order_by + enemy_blind_pr: order_by + flash_assists_pr: order_by + hs_pct: order_by + kast_pct: order_by + match_id: order_by + overall_rating: order_by + played_at: order_by + positioning_rating: order_by + rounds: order_by + source: order_by + steam_id: order_by + survival_pct: order_by + traded_death_pct: order_by + util_efficiency: order_by + utility_rating: order_by +} + +""" +select columns of table "player_match_performance_v" +""" +enum player_match_performance_v_select_column { + """column name""" + accuracy + + """column name""" + accuracy_spotted + + """column name""" + aim_rating + + """column name""" + counter_strafe_pct + + """column name""" + enemy_blind_pr + + """column name""" + flash_assists_pr + + """column name""" + hs_pct + + """column name""" + kast_pct + + """column name""" + match_id + + """column name""" + overall_rating + + """column name""" + played_at + + """column name""" + positioning_rating + + """column name""" + rounds + + """column name""" + source + + """column name""" + steam_id + + """column name""" + survival_pct + + """column name""" + traded_death_pct + + """column name""" + util_efficiency + + """column name""" + utility_rating +} + +"""aggregate stddev on columns""" +type player_match_performance_v_stddev_fields { + accuracy: Float + accuracy_spotted: Float + aim_rating: Float + counter_strafe_pct: Float + enemy_blind_pr: Float + flash_assists_pr: Float + hs_pct: Float + kast_pct: Float + overall_rating: Float + positioning_rating: Float + rounds: Float + steam_id: Float + survival_pct: Float + traded_death_pct: Float + util_efficiency: Float + utility_rating: Float +} + +"""aggregate stddev_pop on columns""" +type player_match_performance_v_stddev_pop_fields { + accuracy: Float + accuracy_spotted: Float + aim_rating: Float + counter_strafe_pct: Float + enemy_blind_pr: Float + flash_assists_pr: Float + hs_pct: Float + kast_pct: Float + overall_rating: Float + positioning_rating: Float + rounds: Float + steam_id: Float + survival_pct: Float + traded_death_pct: Float + util_efficiency: Float + utility_rating: Float +} + +"""aggregate stddev_samp on columns""" +type player_match_performance_v_stddev_samp_fields { + accuracy: Float + accuracy_spotted: Float + aim_rating: Float + counter_strafe_pct: Float + enemy_blind_pr: Float + flash_assists_pr: Float + hs_pct: Float + kast_pct: Float + overall_rating: Float + positioning_rating: Float + rounds: Float + steam_id: Float + survival_pct: Float + traded_death_pct: Float + util_efficiency: Float + utility_rating: Float +} + +""" +Streaming cursor of the table "player_match_performance_v" +""" +input player_match_performance_v_stream_cursor_input { + """Stream column input with initial value""" + initial_value: player_match_performance_v_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input player_match_performance_v_stream_cursor_value_input { + accuracy: numeric + accuracy_spotted: numeric + aim_rating: float8 + counter_strafe_pct: numeric + enemy_blind_pr: numeric + flash_assists_pr: numeric + hs_pct: numeric + kast_pct: numeric + match_id: uuid + overall_rating: float8 + played_at: timestamptz + positioning_rating: float8 + rounds: Int + source: String + steam_id: bigint + survival_pct: numeric + traded_death_pct: numeric + util_efficiency: numeric + utility_rating: float8 +} + +"""aggregate sum on columns""" +type player_match_performance_v_sum_fields { + accuracy: numeric + accuracy_spotted: numeric + aim_rating: float8 + counter_strafe_pct: numeric + enemy_blind_pr: numeric + flash_assists_pr: numeric + hs_pct: numeric + kast_pct: numeric + overall_rating: float8 + positioning_rating: float8 + rounds: Int + steam_id: bigint + survival_pct: numeric + traded_death_pct: numeric + util_efficiency: numeric + utility_rating: float8 +} + +"""aggregate var_pop on columns""" +type player_match_performance_v_var_pop_fields { + accuracy: Float + accuracy_spotted: Float + aim_rating: Float + counter_strafe_pct: Float + enemy_blind_pr: Float + flash_assists_pr: Float + hs_pct: Float + kast_pct: Float + overall_rating: Float + positioning_rating: Float + rounds: Float + steam_id: Float + survival_pct: Float + traded_death_pct: Float + util_efficiency: Float + utility_rating: Float +} + +"""aggregate var_samp on columns""" +type player_match_performance_v_var_samp_fields { + accuracy: Float + accuracy_spotted: Float + aim_rating: Float + counter_strafe_pct: Float + enemy_blind_pr: Float + flash_assists_pr: Float + hs_pct: Float + kast_pct: Float + overall_rating: Float + positioning_rating: Float + rounds: Float + steam_id: Float + survival_pct: Float + traded_death_pct: Float + util_efficiency: Float + utility_rating: Float +} + +"""aggregate variance on columns""" +type player_match_performance_v_variance_fields { + accuracy: Float + accuracy_spotted: Float + aim_rating: Float + counter_strafe_pct: Float + enemy_blind_pr: Float + flash_assists_pr: Float + hs_pct: Float + kast_pct: Float + overall_rating: Float + positioning_rating: Float + rounds: Float + steam_id: Float + survival_pct: Float + traded_death_pct: Float + util_efficiency: Float + utility_rating: Float +} + +""" +columns and relationships of "player_match_stats_v" +""" +type player_match_stats_v { + assists: Int + assists_ct: Int + assists_t: Int + avg_crosshair_angle_deg: numeric + avg_flash_duration: numeric + avg_time_to_damage_s: numeric + counter_strafe_eligible_shots: Int + counter_strafed_shots: Int + damage: Int + damage_ct: Int + damage_t: Int + deaths: Int + deaths_ct: Int + deaths_t: Int + decoy_throws: Int + enemies_flashed: Int + first_bullet_hits: Int + first_bullet_shots: Int + five_kill_rounds: Int + flash_assists: Int + flashes_thrown: Int + four_kill_rounds: Int + he_damage: Int + he_team_damage: Int + he_throws: Int + headshot_hits: Int + hits: Int + hits_at_spotted: Int + hs_kills: Int + hs_kills_ct: Int + hs_kills_t: Int + kills: Int + kills_ct: Int + kills_t: Int + knife_kills: Int + match_id: uuid + molotov_damage: Int + molotov_throws: Int + non_awp_hits: Int + on_target_frames: Int + rounds_ct: Int + rounds_played: Int + rounds_t: Int + shots_at_spotted: Int + shots_fired: Int + smoke_throws: Int + spotted_count: Int + spotted_with_damage_count: Int + spray_hits: Int + spray_shots: Int + steam_id: bigint + team_damage: Int + team_flashed: Int + three_kill_rounds: Int + total_engagement_frames: Int + trade_kill_attempts: Int + trade_kill_opportunities: Int + trade_kill_successes: Int + traded_death_attempts: Int + traded_death_opportunities: Int + traded_death_successes: Int + two_kill_rounds: Int + unused_utility_value: Int + utility_on_death: numeric + wasted_magazine_shots: Int + zeus_kills: Int +} + +""" +aggregated selection of "player_match_stats_v" +""" +type player_match_stats_v_aggregate { + aggregate: player_match_stats_v_aggregate_fields + nodes: [player_match_stats_v!]! +} + +input player_match_stats_v_aggregate_bool_exp { + count: player_match_stats_v_aggregate_bool_exp_count +} + +input player_match_stats_v_aggregate_bool_exp_count { + arguments: [player_match_stats_v_select_column!] + distinct: Boolean + filter: player_match_stats_v_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "player_match_stats_v" +""" +type player_match_stats_v_aggregate_fields { + avg: player_match_stats_v_avg_fields + count(columns: [player_match_stats_v_select_column!], distinct: Boolean): Int! + max: player_match_stats_v_max_fields + min: player_match_stats_v_min_fields + stddev: player_match_stats_v_stddev_fields + stddev_pop: player_match_stats_v_stddev_pop_fields + stddev_samp: player_match_stats_v_stddev_samp_fields + sum: player_match_stats_v_sum_fields + var_pop: player_match_stats_v_var_pop_fields + var_samp: player_match_stats_v_var_samp_fields + variance: player_match_stats_v_variance_fields +} + +""" +order by aggregate values of table "player_match_stats_v" +""" +input player_match_stats_v_aggregate_order_by { + avg: player_match_stats_v_avg_order_by + count: order_by + max: player_match_stats_v_max_order_by + min: player_match_stats_v_min_order_by + stddev: player_match_stats_v_stddev_order_by + stddev_pop: player_match_stats_v_stddev_pop_order_by + stddev_samp: player_match_stats_v_stddev_samp_order_by + sum: player_match_stats_v_sum_order_by + var_pop: player_match_stats_v_var_pop_order_by + var_samp: player_match_stats_v_var_samp_order_by + variance: player_match_stats_v_variance_order_by +} + +""" +input type for inserting array relation for remote table "player_match_stats_v" +""" +input player_match_stats_v_arr_rel_insert_input { + data: [player_match_stats_v_insert_input!]! +} + +"""aggregate avg on columns""" +type player_match_stats_v_avg_fields { + assists: Float + assists_ct: Float + assists_t: Float + avg_crosshair_angle_deg: Float + avg_flash_duration: Float + avg_time_to_damage_s: Float + counter_strafe_eligible_shots: Float + counter_strafed_shots: Float + damage: Float + damage_ct: Float + damage_t: Float + deaths: Float + deaths_ct: Float + deaths_t: Float + decoy_throws: Float + enemies_flashed: Float + first_bullet_hits: Float + first_bullet_shots: Float + five_kill_rounds: Float + flash_assists: Float + flashes_thrown: Float + four_kill_rounds: Float + he_damage: Float + he_team_damage: Float + he_throws: Float + headshot_hits: Float + hits: Float + hits_at_spotted: Float + hs_kills: Float + hs_kills_ct: Float + hs_kills_t: Float + kills: Float + kills_ct: Float + kills_t: Float + knife_kills: Float + molotov_damage: Float + molotov_throws: Float + non_awp_hits: Float + on_target_frames: Float + rounds_ct: Float + rounds_played: Float + rounds_t: Float + shots_at_spotted: Float + shots_fired: Float + smoke_throws: Float + spotted_count: Float + spotted_with_damage_count: Float + spray_hits: Float + spray_shots: Float + steam_id: Float + team_damage: Float + team_flashed: Float + three_kill_rounds: Float + total_engagement_frames: Float + trade_kill_attempts: Float + trade_kill_opportunities: Float + trade_kill_successes: Float + traded_death_attempts: Float + traded_death_opportunities: Float + traded_death_successes: Float + two_kill_rounds: Float + unused_utility_value: Float + utility_on_death: Float + wasted_magazine_shots: Float + zeus_kills: Float +} + +""" +order by avg() on columns of table "player_match_stats_v" +""" +input player_match_stats_v_avg_order_by { + assists: order_by + assists_ct: order_by + assists_t: order_by + avg_crosshair_angle_deg: order_by + avg_flash_duration: order_by + avg_time_to_damage_s: order_by + counter_strafe_eligible_shots: order_by + counter_strafed_shots: order_by + damage: order_by + damage_ct: order_by + damage_t: order_by + deaths: order_by + deaths_ct: order_by + deaths_t: order_by + decoy_throws: order_by + enemies_flashed: order_by + first_bullet_hits: order_by + first_bullet_shots: order_by + five_kill_rounds: order_by + flash_assists: order_by + flashes_thrown: order_by + four_kill_rounds: order_by + he_damage: order_by + he_team_damage: order_by + he_throws: order_by + headshot_hits: order_by + hits: order_by + hits_at_spotted: order_by + hs_kills: order_by + hs_kills_ct: order_by + hs_kills_t: order_by + kills: order_by + kills_ct: order_by + kills_t: order_by + knife_kills: order_by + molotov_damage: order_by + molotov_throws: order_by + non_awp_hits: order_by + on_target_frames: order_by + rounds_ct: order_by + rounds_played: order_by + rounds_t: order_by + shots_at_spotted: order_by + shots_fired: order_by + smoke_throws: order_by + spotted_count: order_by + spotted_with_damage_count: order_by + spray_hits: order_by + spray_shots: order_by + steam_id: order_by + team_damage: order_by + team_flashed: order_by + three_kill_rounds: order_by + total_engagement_frames: order_by + trade_kill_attempts: order_by + trade_kill_opportunities: order_by + trade_kill_successes: order_by + traded_death_attempts: order_by + traded_death_opportunities: order_by + traded_death_successes: order_by + two_kill_rounds: order_by + unused_utility_value: order_by + utility_on_death: order_by + wasted_magazine_shots: order_by + zeus_kills: order_by +} + +""" +Boolean expression to filter rows from the table "player_match_stats_v". All fields are combined with a logical 'AND'. +""" +input player_match_stats_v_bool_exp { + _and: [player_match_stats_v_bool_exp!] + _not: player_match_stats_v_bool_exp + _or: [player_match_stats_v_bool_exp!] + assists: Int_comparison_exp + assists_ct: Int_comparison_exp + assists_t: Int_comparison_exp + avg_crosshair_angle_deg: numeric_comparison_exp + avg_flash_duration: numeric_comparison_exp + avg_time_to_damage_s: numeric_comparison_exp + counter_strafe_eligible_shots: Int_comparison_exp + counter_strafed_shots: Int_comparison_exp + damage: Int_comparison_exp + damage_ct: Int_comparison_exp + damage_t: Int_comparison_exp + deaths: Int_comparison_exp + deaths_ct: Int_comparison_exp + deaths_t: Int_comparison_exp + decoy_throws: Int_comparison_exp + enemies_flashed: Int_comparison_exp + first_bullet_hits: Int_comparison_exp + first_bullet_shots: Int_comparison_exp + five_kill_rounds: Int_comparison_exp + flash_assists: Int_comparison_exp + flashes_thrown: Int_comparison_exp + four_kill_rounds: Int_comparison_exp + he_damage: Int_comparison_exp + he_team_damage: Int_comparison_exp + he_throws: Int_comparison_exp + headshot_hits: Int_comparison_exp + hits: Int_comparison_exp + hits_at_spotted: Int_comparison_exp + hs_kills: Int_comparison_exp + hs_kills_ct: Int_comparison_exp + hs_kills_t: Int_comparison_exp + kills: Int_comparison_exp + kills_ct: Int_comparison_exp + kills_t: Int_comparison_exp + knife_kills: Int_comparison_exp + match_id: uuid_comparison_exp + molotov_damage: Int_comparison_exp + molotov_throws: Int_comparison_exp + non_awp_hits: Int_comparison_exp + on_target_frames: Int_comparison_exp + rounds_ct: Int_comparison_exp + rounds_played: Int_comparison_exp + rounds_t: Int_comparison_exp + shots_at_spotted: Int_comparison_exp + shots_fired: Int_comparison_exp + smoke_throws: Int_comparison_exp + spotted_count: Int_comparison_exp + spotted_with_damage_count: Int_comparison_exp + spray_hits: Int_comparison_exp + spray_shots: Int_comparison_exp + steam_id: bigint_comparison_exp + team_damage: Int_comparison_exp + team_flashed: Int_comparison_exp + three_kill_rounds: Int_comparison_exp + total_engagement_frames: Int_comparison_exp + trade_kill_attempts: Int_comparison_exp + trade_kill_opportunities: Int_comparison_exp + trade_kill_successes: Int_comparison_exp + traded_death_attempts: Int_comparison_exp + traded_death_opportunities: Int_comparison_exp + traded_death_successes: Int_comparison_exp + two_kill_rounds: Int_comparison_exp + unused_utility_value: Int_comparison_exp + utility_on_death: numeric_comparison_exp + wasted_magazine_shots: Int_comparison_exp + zeus_kills: Int_comparison_exp +} + +""" +input type for inserting data into table "player_match_stats_v" +""" +input player_match_stats_v_insert_input { + assists: Int + assists_ct: Int + assists_t: Int + avg_crosshair_angle_deg: numeric + avg_flash_duration: numeric + avg_time_to_damage_s: numeric + counter_strafe_eligible_shots: Int + counter_strafed_shots: Int + damage: Int + damage_ct: Int + damage_t: Int + deaths: Int + deaths_ct: Int + deaths_t: Int + decoy_throws: Int + enemies_flashed: Int + first_bullet_hits: Int + first_bullet_shots: Int + five_kill_rounds: Int + flash_assists: Int + flashes_thrown: Int + four_kill_rounds: Int + he_damage: Int + he_team_damage: Int + he_throws: Int + headshot_hits: Int + hits: Int + hits_at_spotted: Int + hs_kills: Int + hs_kills_ct: Int + hs_kills_t: Int + kills: Int + kills_ct: Int + kills_t: Int + knife_kills: Int + match_id: uuid + molotov_damage: Int + molotov_throws: Int + non_awp_hits: Int + on_target_frames: Int + rounds_ct: Int + rounds_played: Int + rounds_t: Int + shots_at_spotted: Int + shots_fired: Int + smoke_throws: Int + spotted_count: Int + spotted_with_damage_count: Int + spray_hits: Int + spray_shots: Int + steam_id: bigint + team_damage: Int + team_flashed: Int + three_kill_rounds: Int + total_engagement_frames: Int + trade_kill_attempts: Int + trade_kill_opportunities: Int + trade_kill_successes: Int + traded_death_attempts: Int + traded_death_opportunities: Int + traded_death_successes: Int + two_kill_rounds: Int + unused_utility_value: Int + utility_on_death: numeric + wasted_magazine_shots: Int + zeus_kills: Int +} + +"""aggregate max on columns""" +type player_match_stats_v_max_fields { + assists: Int + assists_ct: Int + assists_t: Int + avg_crosshair_angle_deg: numeric + avg_flash_duration: numeric + avg_time_to_damage_s: numeric + counter_strafe_eligible_shots: Int + counter_strafed_shots: Int + damage: Int + damage_ct: Int + damage_t: Int + deaths: Int + deaths_ct: Int + deaths_t: Int + decoy_throws: Int + enemies_flashed: Int + first_bullet_hits: Int + first_bullet_shots: Int + five_kill_rounds: Int + flash_assists: Int + flashes_thrown: Int + four_kill_rounds: Int + he_damage: Int + he_team_damage: Int + he_throws: Int + headshot_hits: Int + hits: Int + hits_at_spotted: Int + hs_kills: Int + hs_kills_ct: Int + hs_kills_t: Int + kills: Int + kills_ct: Int + kills_t: Int + knife_kills: Int + match_id: uuid + molotov_damage: Int + molotov_throws: Int + non_awp_hits: Int + on_target_frames: Int + rounds_ct: Int + rounds_played: Int + rounds_t: Int + shots_at_spotted: Int + shots_fired: Int + smoke_throws: Int + spotted_count: Int + spotted_with_damage_count: Int + spray_hits: Int + spray_shots: Int + steam_id: bigint + team_damage: Int + team_flashed: Int + three_kill_rounds: Int + total_engagement_frames: Int + trade_kill_attempts: Int + trade_kill_opportunities: Int + trade_kill_successes: Int + traded_death_attempts: Int + traded_death_opportunities: Int + traded_death_successes: Int + two_kill_rounds: Int + unused_utility_value: Int + utility_on_death: numeric + wasted_magazine_shots: Int + zeus_kills: Int +} + +""" +order by max() on columns of table "player_match_stats_v" +""" +input player_match_stats_v_max_order_by { + assists: order_by + assists_ct: order_by + assists_t: order_by + avg_crosshair_angle_deg: order_by + avg_flash_duration: order_by + avg_time_to_damage_s: order_by + counter_strafe_eligible_shots: order_by + counter_strafed_shots: order_by + damage: order_by + damage_ct: order_by + damage_t: order_by + deaths: order_by + deaths_ct: order_by + deaths_t: order_by + decoy_throws: order_by + enemies_flashed: order_by + first_bullet_hits: order_by + first_bullet_shots: order_by + five_kill_rounds: order_by + flash_assists: order_by + flashes_thrown: order_by + four_kill_rounds: order_by + he_damage: order_by + he_team_damage: order_by + he_throws: order_by + headshot_hits: order_by + hits: order_by + hits_at_spotted: order_by + hs_kills: order_by + hs_kills_ct: order_by + hs_kills_t: order_by + kills: order_by + kills_ct: order_by + kills_t: order_by + knife_kills: order_by + match_id: order_by + molotov_damage: order_by + molotov_throws: order_by + non_awp_hits: order_by + on_target_frames: order_by + rounds_ct: order_by + rounds_played: order_by + rounds_t: order_by + shots_at_spotted: order_by + shots_fired: order_by + smoke_throws: order_by + spotted_count: order_by + spotted_with_damage_count: order_by + spray_hits: order_by + spray_shots: order_by + steam_id: order_by + team_damage: order_by + team_flashed: order_by + three_kill_rounds: order_by + total_engagement_frames: order_by + trade_kill_attempts: order_by + trade_kill_opportunities: order_by + trade_kill_successes: order_by + traded_death_attempts: order_by + traded_death_opportunities: order_by + traded_death_successes: order_by + two_kill_rounds: order_by + unused_utility_value: order_by + utility_on_death: order_by + wasted_magazine_shots: order_by + zeus_kills: order_by +} + +"""aggregate min on columns""" +type player_match_stats_v_min_fields { + assists: Int + assists_ct: Int + assists_t: Int + avg_crosshair_angle_deg: numeric + avg_flash_duration: numeric + avg_time_to_damage_s: numeric + counter_strafe_eligible_shots: Int + counter_strafed_shots: Int + damage: Int + damage_ct: Int + damage_t: Int + deaths: Int + deaths_ct: Int + deaths_t: Int + decoy_throws: Int + enemies_flashed: Int + first_bullet_hits: Int + first_bullet_shots: Int + five_kill_rounds: Int + flash_assists: Int + flashes_thrown: Int + four_kill_rounds: Int + he_damage: Int + he_team_damage: Int + he_throws: Int + headshot_hits: Int + hits: Int + hits_at_spotted: Int + hs_kills: Int + hs_kills_ct: Int + hs_kills_t: Int + kills: Int + kills_ct: Int + kills_t: Int + knife_kills: Int + match_id: uuid + molotov_damage: Int + molotov_throws: Int + non_awp_hits: Int + on_target_frames: Int + rounds_ct: Int + rounds_played: Int + rounds_t: Int + shots_at_spotted: Int + shots_fired: Int + smoke_throws: Int + spotted_count: Int + spotted_with_damage_count: Int + spray_hits: Int + spray_shots: Int + steam_id: bigint + team_damage: Int + team_flashed: Int + three_kill_rounds: Int + total_engagement_frames: Int + trade_kill_attempts: Int + trade_kill_opportunities: Int + trade_kill_successes: Int + traded_death_attempts: Int + traded_death_opportunities: Int + traded_death_successes: Int + two_kill_rounds: Int + unused_utility_value: Int + utility_on_death: numeric + wasted_magazine_shots: Int + zeus_kills: Int +} + +""" +order by min() on columns of table "player_match_stats_v" +""" +input player_match_stats_v_min_order_by { + assists: order_by + assists_ct: order_by + assists_t: order_by + avg_crosshair_angle_deg: order_by + avg_flash_duration: order_by + avg_time_to_damage_s: order_by + counter_strafe_eligible_shots: order_by + counter_strafed_shots: order_by + damage: order_by + damage_ct: order_by + damage_t: order_by + deaths: order_by + deaths_ct: order_by + deaths_t: order_by + decoy_throws: order_by + enemies_flashed: order_by + first_bullet_hits: order_by + first_bullet_shots: order_by + five_kill_rounds: order_by + flash_assists: order_by + flashes_thrown: order_by + four_kill_rounds: order_by + he_damage: order_by + he_team_damage: order_by + he_throws: order_by + headshot_hits: order_by + hits: order_by + hits_at_spotted: order_by + hs_kills: order_by + hs_kills_ct: order_by + hs_kills_t: order_by + kills: order_by + kills_ct: order_by + kills_t: order_by + knife_kills: order_by + match_id: order_by + molotov_damage: order_by + molotov_throws: order_by + non_awp_hits: order_by + on_target_frames: order_by + rounds_ct: order_by + rounds_played: order_by + rounds_t: order_by + shots_at_spotted: order_by + shots_fired: order_by + smoke_throws: order_by + spotted_count: order_by + spotted_with_damage_count: order_by + spray_hits: order_by + spray_shots: order_by + steam_id: order_by + team_damage: order_by + team_flashed: order_by + three_kill_rounds: order_by + total_engagement_frames: order_by + trade_kill_attempts: order_by + trade_kill_opportunities: order_by + trade_kill_successes: order_by + traded_death_attempts: order_by + traded_death_opportunities: order_by + traded_death_successes: order_by + two_kill_rounds: order_by + unused_utility_value: order_by + utility_on_death: order_by + wasted_magazine_shots: order_by + zeus_kills: order_by +} + +"""Ordering options when selecting data from "player_match_stats_v".""" +input player_match_stats_v_order_by { + assists: order_by + assists_ct: order_by + assists_t: order_by + avg_crosshair_angle_deg: order_by + avg_flash_duration: order_by + avg_time_to_damage_s: order_by + counter_strafe_eligible_shots: order_by + counter_strafed_shots: order_by + damage: order_by + damage_ct: order_by + damage_t: order_by + deaths: order_by + deaths_ct: order_by + deaths_t: order_by + decoy_throws: order_by + enemies_flashed: order_by + first_bullet_hits: order_by + first_bullet_shots: order_by + five_kill_rounds: order_by + flash_assists: order_by + flashes_thrown: order_by + four_kill_rounds: order_by + he_damage: order_by + he_team_damage: order_by + he_throws: order_by + headshot_hits: order_by + hits: order_by + hits_at_spotted: order_by + hs_kills: order_by + hs_kills_ct: order_by + hs_kills_t: order_by + kills: order_by + kills_ct: order_by + kills_t: order_by + knife_kills: order_by + match_id: order_by + molotov_damage: order_by + molotov_throws: order_by + non_awp_hits: order_by + on_target_frames: order_by + rounds_ct: order_by + rounds_played: order_by + rounds_t: order_by + shots_at_spotted: order_by + shots_fired: order_by + smoke_throws: order_by + spotted_count: order_by + spotted_with_damage_count: order_by + spray_hits: order_by + spray_shots: order_by + steam_id: order_by + team_damage: order_by + team_flashed: order_by + three_kill_rounds: order_by + total_engagement_frames: order_by + trade_kill_attempts: order_by + trade_kill_opportunities: order_by + trade_kill_successes: order_by + traded_death_attempts: order_by + traded_death_opportunities: order_by + traded_death_successes: order_by + two_kill_rounds: order_by + unused_utility_value: order_by + utility_on_death: order_by + wasted_magazine_shots: order_by + zeus_kills: order_by +} + +""" +select columns of table "player_match_stats_v" +""" +enum player_match_stats_v_select_column { + """column name""" + assists + + """column name""" + assists_ct + + """column name""" + assists_t + + """column name""" + avg_crosshair_angle_deg + + """column name""" + avg_flash_duration + + """column name""" + avg_time_to_damage_s + + """column name""" + counter_strafe_eligible_shots + + """column name""" + counter_strafed_shots + + """column name""" + damage + + """column name""" + damage_ct + + """column name""" + damage_t + + """column name""" + deaths + + """column name""" + deaths_ct + + """column name""" + deaths_t + + """column name""" + decoy_throws + + """column name""" + enemies_flashed + + """column name""" + first_bullet_hits + + """column name""" + first_bullet_shots + + """column name""" + five_kill_rounds + + """column name""" + flash_assists + + """column name""" + flashes_thrown + + """column name""" + four_kill_rounds + + """column name""" + he_damage + + """column name""" + he_team_damage + + """column name""" + he_throws + + """column name""" + headshot_hits + + """column name""" + hits + + """column name""" + hits_at_spotted + + """column name""" + hs_kills + + """column name""" + hs_kills_ct + + """column name""" + hs_kills_t + + """column name""" + kills + + """column name""" + kills_ct + + """column name""" + kills_t + + """column name""" + knife_kills + + """column name""" + match_id + + """column name""" + molotov_damage + + """column name""" + molotov_throws + + """column name""" + non_awp_hits + + """column name""" + on_target_frames + + """column name""" + rounds_ct + + """column name""" + rounds_played + + """column name""" + rounds_t + + """column name""" + shots_at_spotted + + """column name""" + shots_fired + + """column name""" + smoke_throws + + """column name""" + spotted_count + + """column name""" + spotted_with_damage_count + + """column name""" + spray_hits + + """column name""" + spray_shots + + """column name""" + steam_id + + """column name""" + team_damage + + """column name""" + team_flashed + + """column name""" + three_kill_rounds + + """column name""" + total_engagement_frames + + """column name""" + trade_kill_attempts + + """column name""" + trade_kill_opportunities + + """column name""" + trade_kill_successes + + """column name""" + traded_death_attempts + + """column name""" + traded_death_opportunities + + """column name""" + traded_death_successes + + """column name""" + two_kill_rounds + + """column name""" + unused_utility_value + + """column name""" + utility_on_death + + """column name""" + wasted_magazine_shots + + """column name""" + zeus_kills +} + +"""aggregate stddev on columns""" +type player_match_stats_v_stddev_fields { + assists: Float + assists_ct: Float + assists_t: Float + avg_crosshair_angle_deg: Float + avg_flash_duration: Float + avg_time_to_damage_s: Float + counter_strafe_eligible_shots: Float + counter_strafed_shots: Float + damage: Float + damage_ct: Float + damage_t: Float + deaths: Float + deaths_ct: Float + deaths_t: Float + decoy_throws: Float + enemies_flashed: Float + first_bullet_hits: Float + first_bullet_shots: Float + five_kill_rounds: Float + flash_assists: Float + flashes_thrown: Float + four_kill_rounds: Float + he_damage: Float + he_team_damage: Float + he_throws: Float + headshot_hits: Float + hits: Float + hits_at_spotted: Float + hs_kills: Float + hs_kills_ct: Float + hs_kills_t: Float + kills: Float + kills_ct: Float + kills_t: Float + knife_kills: Float + molotov_damage: Float + molotov_throws: Float + non_awp_hits: Float + on_target_frames: Float + rounds_ct: Float + rounds_played: Float + rounds_t: Float + shots_at_spotted: Float + shots_fired: Float + smoke_throws: Float + spotted_count: Float + spotted_with_damage_count: Float + spray_hits: Float + spray_shots: Float + steam_id: Float + team_damage: Float + team_flashed: Float + three_kill_rounds: Float + total_engagement_frames: Float + trade_kill_attempts: Float + trade_kill_opportunities: Float + trade_kill_successes: Float + traded_death_attempts: Float + traded_death_opportunities: Float + traded_death_successes: Float + two_kill_rounds: Float + unused_utility_value: Float + utility_on_death: Float + wasted_magazine_shots: Float + zeus_kills: Float +} + +""" +order by stddev() on columns of table "player_match_stats_v" +""" +input player_match_stats_v_stddev_order_by { + assists: order_by + assists_ct: order_by + assists_t: order_by + avg_crosshair_angle_deg: order_by + avg_flash_duration: order_by + avg_time_to_damage_s: order_by + counter_strafe_eligible_shots: order_by + counter_strafed_shots: order_by + damage: order_by + damage_ct: order_by + damage_t: order_by + deaths: order_by + deaths_ct: order_by + deaths_t: order_by + decoy_throws: order_by + enemies_flashed: order_by + first_bullet_hits: order_by + first_bullet_shots: order_by + five_kill_rounds: order_by + flash_assists: order_by + flashes_thrown: order_by + four_kill_rounds: order_by + he_damage: order_by + he_team_damage: order_by + he_throws: order_by + headshot_hits: order_by + hits: order_by + hits_at_spotted: order_by + hs_kills: order_by + hs_kills_ct: order_by + hs_kills_t: order_by + kills: order_by + kills_ct: order_by + kills_t: order_by + knife_kills: order_by + molotov_damage: order_by + molotov_throws: order_by + non_awp_hits: order_by + on_target_frames: order_by + rounds_ct: order_by + rounds_played: order_by + rounds_t: order_by + shots_at_spotted: order_by + shots_fired: order_by + smoke_throws: order_by + spotted_count: order_by + spotted_with_damage_count: order_by + spray_hits: order_by + spray_shots: order_by + steam_id: order_by + team_damage: order_by + team_flashed: order_by + three_kill_rounds: order_by + total_engagement_frames: order_by + trade_kill_attempts: order_by + trade_kill_opportunities: order_by + trade_kill_successes: order_by + traded_death_attempts: order_by + traded_death_opportunities: order_by + traded_death_successes: order_by + two_kill_rounds: order_by + unused_utility_value: order_by + utility_on_death: order_by + wasted_magazine_shots: order_by + zeus_kills: order_by +} + +"""aggregate stddev_pop on columns""" +type player_match_stats_v_stddev_pop_fields { + assists: Float + assists_ct: Float + assists_t: Float + avg_crosshair_angle_deg: Float + avg_flash_duration: Float + avg_time_to_damage_s: Float + counter_strafe_eligible_shots: Float + counter_strafed_shots: Float + damage: Float + damage_ct: Float + damage_t: Float + deaths: Float + deaths_ct: Float + deaths_t: Float + decoy_throws: Float + enemies_flashed: Float + first_bullet_hits: Float + first_bullet_shots: Float + five_kill_rounds: Float + flash_assists: Float + flashes_thrown: Float + four_kill_rounds: Float + he_damage: Float + he_team_damage: Float + he_throws: Float + headshot_hits: Float + hits: Float + hits_at_spotted: Float + hs_kills: Float + hs_kills_ct: Float + hs_kills_t: Float + kills: Float + kills_ct: Float + kills_t: Float + knife_kills: Float + molotov_damage: Float + molotov_throws: Float + non_awp_hits: Float + on_target_frames: Float + rounds_ct: Float + rounds_played: Float + rounds_t: Float + shots_at_spotted: Float + shots_fired: Float + smoke_throws: Float + spotted_count: Float + spotted_with_damage_count: Float + spray_hits: Float + spray_shots: Float + steam_id: Float + team_damage: Float + team_flashed: Float + three_kill_rounds: Float + total_engagement_frames: Float + trade_kill_attempts: Float + trade_kill_opportunities: Float + trade_kill_successes: Float + traded_death_attempts: Float + traded_death_opportunities: Float + traded_death_successes: Float + two_kill_rounds: Float + unused_utility_value: Float + utility_on_death: Float + wasted_magazine_shots: Float + zeus_kills: Float +} + +""" +order by stddev_pop() on columns of table "player_match_stats_v" +""" +input player_match_stats_v_stddev_pop_order_by { + assists: order_by + assists_ct: order_by + assists_t: order_by + avg_crosshair_angle_deg: order_by + avg_flash_duration: order_by + avg_time_to_damage_s: order_by + counter_strafe_eligible_shots: order_by + counter_strafed_shots: order_by + damage: order_by + damage_ct: order_by + damage_t: order_by + deaths: order_by + deaths_ct: order_by + deaths_t: order_by + decoy_throws: order_by + enemies_flashed: order_by + first_bullet_hits: order_by + first_bullet_shots: order_by + five_kill_rounds: order_by + flash_assists: order_by + flashes_thrown: order_by + four_kill_rounds: order_by + he_damage: order_by + he_team_damage: order_by + he_throws: order_by + headshot_hits: order_by + hits: order_by + hits_at_spotted: order_by + hs_kills: order_by + hs_kills_ct: order_by + hs_kills_t: order_by + kills: order_by + kills_ct: order_by + kills_t: order_by + knife_kills: order_by + molotov_damage: order_by + molotov_throws: order_by + non_awp_hits: order_by + on_target_frames: order_by + rounds_ct: order_by + rounds_played: order_by + rounds_t: order_by + shots_at_spotted: order_by + shots_fired: order_by + smoke_throws: order_by + spotted_count: order_by + spotted_with_damage_count: order_by + spray_hits: order_by + spray_shots: order_by + steam_id: order_by + team_damage: order_by + team_flashed: order_by + three_kill_rounds: order_by + total_engagement_frames: order_by + trade_kill_attempts: order_by + trade_kill_opportunities: order_by + trade_kill_successes: order_by + traded_death_attempts: order_by + traded_death_opportunities: order_by + traded_death_successes: order_by + two_kill_rounds: order_by + unused_utility_value: order_by + utility_on_death: order_by + wasted_magazine_shots: order_by + zeus_kills: order_by +} + +"""aggregate stddev_samp on columns""" +type player_match_stats_v_stddev_samp_fields { + assists: Float + assists_ct: Float + assists_t: Float + avg_crosshair_angle_deg: Float + avg_flash_duration: Float + avg_time_to_damage_s: Float + counter_strafe_eligible_shots: Float + counter_strafed_shots: Float + damage: Float + damage_ct: Float + damage_t: Float + deaths: Float + deaths_ct: Float + deaths_t: Float + decoy_throws: Float + enemies_flashed: Float + first_bullet_hits: Float + first_bullet_shots: Float + five_kill_rounds: Float + flash_assists: Float + flashes_thrown: Float + four_kill_rounds: Float + he_damage: Float + he_team_damage: Float + he_throws: Float + headshot_hits: Float + hits: Float + hits_at_spotted: Float + hs_kills: Float + hs_kills_ct: Float + hs_kills_t: Float + kills: Float + kills_ct: Float + kills_t: Float + knife_kills: Float + molotov_damage: Float + molotov_throws: Float + non_awp_hits: Float + on_target_frames: Float + rounds_ct: Float + rounds_played: Float + rounds_t: Float + shots_at_spotted: Float + shots_fired: Float + smoke_throws: Float + spotted_count: Float + spotted_with_damage_count: Float + spray_hits: Float + spray_shots: Float + steam_id: Float + team_damage: Float + team_flashed: Float + three_kill_rounds: Float + total_engagement_frames: Float + trade_kill_attempts: Float + trade_kill_opportunities: Float + trade_kill_successes: Float + traded_death_attempts: Float + traded_death_opportunities: Float + traded_death_successes: Float + two_kill_rounds: Float + unused_utility_value: Float + utility_on_death: Float + wasted_magazine_shots: Float + zeus_kills: Float +} + +""" +order by stddev_samp() on columns of table "player_match_stats_v" +""" +input player_match_stats_v_stddev_samp_order_by { + assists: order_by + assists_ct: order_by + assists_t: order_by + avg_crosshair_angle_deg: order_by + avg_flash_duration: order_by + avg_time_to_damage_s: order_by + counter_strafe_eligible_shots: order_by + counter_strafed_shots: order_by + damage: order_by + damage_ct: order_by + damage_t: order_by + deaths: order_by + deaths_ct: order_by + deaths_t: order_by + decoy_throws: order_by + enemies_flashed: order_by + first_bullet_hits: order_by + first_bullet_shots: order_by + five_kill_rounds: order_by + flash_assists: order_by + flashes_thrown: order_by + four_kill_rounds: order_by + he_damage: order_by + he_team_damage: order_by + he_throws: order_by + headshot_hits: order_by + hits: order_by + hits_at_spotted: order_by + hs_kills: order_by + hs_kills_ct: order_by + hs_kills_t: order_by + kills: order_by + kills_ct: order_by + kills_t: order_by + knife_kills: order_by + molotov_damage: order_by + molotov_throws: order_by + non_awp_hits: order_by + on_target_frames: order_by + rounds_ct: order_by + rounds_played: order_by + rounds_t: order_by + shots_at_spotted: order_by + shots_fired: order_by + smoke_throws: order_by + spotted_count: order_by + spotted_with_damage_count: order_by + spray_hits: order_by + spray_shots: order_by + steam_id: order_by + team_damage: order_by + team_flashed: order_by + three_kill_rounds: order_by + total_engagement_frames: order_by + trade_kill_attempts: order_by + trade_kill_opportunities: order_by + trade_kill_successes: order_by + traded_death_attempts: order_by + traded_death_opportunities: order_by + traded_death_successes: order_by + two_kill_rounds: order_by + unused_utility_value: order_by + utility_on_death: order_by + wasted_magazine_shots: order_by + zeus_kills: order_by +} + +""" +Streaming cursor of the table "player_match_stats_v" +""" +input player_match_stats_v_stream_cursor_input { + """Stream column input with initial value""" + initial_value: player_match_stats_v_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input player_match_stats_v_stream_cursor_value_input { + assists: Int + assists_ct: Int + assists_t: Int + avg_crosshair_angle_deg: numeric + avg_flash_duration: numeric + avg_time_to_damage_s: numeric + counter_strafe_eligible_shots: Int + counter_strafed_shots: Int + damage: Int + damage_ct: Int + damage_t: Int + deaths: Int + deaths_ct: Int + deaths_t: Int + decoy_throws: Int + enemies_flashed: Int + first_bullet_hits: Int + first_bullet_shots: Int + five_kill_rounds: Int + flash_assists: Int + flashes_thrown: Int + four_kill_rounds: Int + he_damage: Int + he_team_damage: Int + he_throws: Int + headshot_hits: Int + hits: Int + hits_at_spotted: Int + hs_kills: Int + hs_kills_ct: Int + hs_kills_t: Int + kills: Int + kills_ct: Int + kills_t: Int + knife_kills: Int + match_id: uuid + molotov_damage: Int + molotov_throws: Int + non_awp_hits: Int + on_target_frames: Int + rounds_ct: Int + rounds_played: Int + rounds_t: Int + shots_at_spotted: Int + shots_fired: Int + smoke_throws: Int + spotted_count: Int + spotted_with_damage_count: Int + spray_hits: Int + spray_shots: Int + steam_id: bigint + team_damage: Int + team_flashed: Int + three_kill_rounds: Int + total_engagement_frames: Int + trade_kill_attempts: Int + trade_kill_opportunities: Int + trade_kill_successes: Int + traded_death_attempts: Int + traded_death_opportunities: Int + traded_death_successes: Int + two_kill_rounds: Int + unused_utility_value: Int + utility_on_death: numeric + wasted_magazine_shots: Int + zeus_kills: Int +} + +"""aggregate sum on columns""" +type player_match_stats_v_sum_fields { + assists: Int + assists_ct: Int + assists_t: Int + avg_crosshair_angle_deg: numeric + avg_flash_duration: numeric + avg_time_to_damage_s: numeric + counter_strafe_eligible_shots: Int + counter_strafed_shots: Int + damage: Int + damage_ct: Int + damage_t: Int + deaths: Int + deaths_ct: Int + deaths_t: Int + decoy_throws: Int + enemies_flashed: Int + first_bullet_hits: Int + first_bullet_shots: Int + five_kill_rounds: Int + flash_assists: Int + flashes_thrown: Int + four_kill_rounds: Int + he_damage: Int + he_team_damage: Int + he_throws: Int + headshot_hits: Int + hits: Int + hits_at_spotted: Int + hs_kills: Int + hs_kills_ct: Int + hs_kills_t: Int + kills: Int + kills_ct: Int + kills_t: Int + knife_kills: Int + molotov_damage: Int + molotov_throws: Int + non_awp_hits: Int + on_target_frames: Int + rounds_ct: Int + rounds_played: Int + rounds_t: Int + shots_at_spotted: Int + shots_fired: Int + smoke_throws: Int + spotted_count: Int + spotted_with_damage_count: Int + spray_hits: Int + spray_shots: Int + steam_id: bigint + team_damage: Int + team_flashed: Int + three_kill_rounds: Int + total_engagement_frames: Int + trade_kill_attempts: Int + trade_kill_opportunities: Int + trade_kill_successes: Int + traded_death_attempts: Int + traded_death_opportunities: Int + traded_death_successes: Int + two_kill_rounds: Int + unused_utility_value: Int + utility_on_death: numeric + wasted_magazine_shots: Int + zeus_kills: Int +} + +""" +order by sum() on columns of table "player_match_stats_v" +""" +input player_match_stats_v_sum_order_by { + assists: order_by + assists_ct: order_by + assists_t: order_by + avg_crosshair_angle_deg: order_by + avg_flash_duration: order_by + avg_time_to_damage_s: order_by + counter_strafe_eligible_shots: order_by + counter_strafed_shots: order_by + damage: order_by + damage_ct: order_by + damage_t: order_by + deaths: order_by + deaths_ct: order_by + deaths_t: order_by + decoy_throws: order_by + enemies_flashed: order_by + first_bullet_hits: order_by + first_bullet_shots: order_by + five_kill_rounds: order_by + flash_assists: order_by + flashes_thrown: order_by + four_kill_rounds: order_by + he_damage: order_by + he_team_damage: order_by + he_throws: order_by + headshot_hits: order_by + hits: order_by + hits_at_spotted: order_by + hs_kills: order_by + hs_kills_ct: order_by + hs_kills_t: order_by + kills: order_by + kills_ct: order_by + kills_t: order_by + knife_kills: order_by + molotov_damage: order_by + molotov_throws: order_by + non_awp_hits: order_by + on_target_frames: order_by + rounds_ct: order_by + rounds_played: order_by + rounds_t: order_by + shots_at_spotted: order_by + shots_fired: order_by + smoke_throws: order_by + spotted_count: order_by + spotted_with_damage_count: order_by + spray_hits: order_by + spray_shots: order_by + steam_id: order_by + team_damage: order_by + team_flashed: order_by + three_kill_rounds: order_by + total_engagement_frames: order_by + trade_kill_attempts: order_by + trade_kill_opportunities: order_by + trade_kill_successes: order_by + traded_death_attempts: order_by + traded_death_opportunities: order_by + traded_death_successes: order_by + two_kill_rounds: order_by + unused_utility_value: order_by + utility_on_death: order_by + wasted_magazine_shots: order_by + zeus_kills: order_by +} + +"""aggregate var_pop on columns""" +type player_match_stats_v_var_pop_fields { + assists: Float + assists_ct: Float + assists_t: Float + avg_crosshair_angle_deg: Float + avg_flash_duration: Float + avg_time_to_damage_s: Float + counter_strafe_eligible_shots: Float + counter_strafed_shots: Float + damage: Float + damage_ct: Float + damage_t: Float + deaths: Float + deaths_ct: Float + deaths_t: Float + decoy_throws: Float + enemies_flashed: Float + first_bullet_hits: Float + first_bullet_shots: Float + five_kill_rounds: Float + flash_assists: Float + flashes_thrown: Float + four_kill_rounds: Float + he_damage: Float + he_team_damage: Float + he_throws: Float + headshot_hits: Float + hits: Float + hits_at_spotted: Float + hs_kills: Float + hs_kills_ct: Float + hs_kills_t: Float + kills: Float + kills_ct: Float + kills_t: Float + knife_kills: Float + molotov_damage: Float + molotov_throws: Float + non_awp_hits: Float + on_target_frames: Float + rounds_ct: Float + rounds_played: Float + rounds_t: Float + shots_at_spotted: Float + shots_fired: Float + smoke_throws: Float + spotted_count: Float + spotted_with_damage_count: Float + spray_hits: Float + spray_shots: Float + steam_id: Float + team_damage: Float + team_flashed: Float + three_kill_rounds: Float + total_engagement_frames: Float + trade_kill_attempts: Float + trade_kill_opportunities: Float + trade_kill_successes: Float + traded_death_attempts: Float + traded_death_opportunities: Float + traded_death_successes: Float + two_kill_rounds: Float + unused_utility_value: Float + utility_on_death: Float + wasted_magazine_shots: Float + zeus_kills: Float +} + +""" +order by var_pop() on columns of table "player_match_stats_v" +""" +input player_match_stats_v_var_pop_order_by { + assists: order_by + assists_ct: order_by + assists_t: order_by + avg_crosshair_angle_deg: order_by + avg_flash_duration: order_by + avg_time_to_damage_s: order_by + counter_strafe_eligible_shots: order_by + counter_strafed_shots: order_by + damage: order_by + damage_ct: order_by + damage_t: order_by + deaths: order_by + deaths_ct: order_by + deaths_t: order_by + decoy_throws: order_by + enemies_flashed: order_by + first_bullet_hits: order_by + first_bullet_shots: order_by + five_kill_rounds: order_by + flash_assists: order_by + flashes_thrown: order_by + four_kill_rounds: order_by + he_damage: order_by + he_team_damage: order_by + he_throws: order_by + headshot_hits: order_by + hits: order_by + hits_at_spotted: order_by + hs_kills: order_by + hs_kills_ct: order_by + hs_kills_t: order_by + kills: order_by + kills_ct: order_by + kills_t: order_by + knife_kills: order_by + molotov_damage: order_by + molotov_throws: order_by + non_awp_hits: order_by + on_target_frames: order_by + rounds_ct: order_by + rounds_played: order_by + rounds_t: order_by + shots_at_spotted: order_by + shots_fired: order_by + smoke_throws: order_by + spotted_count: order_by + spotted_with_damage_count: order_by + spray_hits: order_by + spray_shots: order_by + steam_id: order_by + team_damage: order_by + team_flashed: order_by + three_kill_rounds: order_by + total_engagement_frames: order_by + trade_kill_attempts: order_by + trade_kill_opportunities: order_by + trade_kill_successes: order_by + traded_death_attempts: order_by + traded_death_opportunities: order_by + traded_death_successes: order_by + two_kill_rounds: order_by + unused_utility_value: order_by + utility_on_death: order_by + wasted_magazine_shots: order_by + zeus_kills: order_by +} + +"""aggregate var_samp on columns""" +type player_match_stats_v_var_samp_fields { + assists: Float + assists_ct: Float + assists_t: Float + avg_crosshair_angle_deg: Float + avg_flash_duration: Float + avg_time_to_damage_s: Float + counter_strafe_eligible_shots: Float + counter_strafed_shots: Float + damage: Float + damage_ct: Float + damage_t: Float + deaths: Float + deaths_ct: Float + deaths_t: Float + decoy_throws: Float + enemies_flashed: Float + first_bullet_hits: Float + first_bullet_shots: Float + five_kill_rounds: Float + flash_assists: Float + flashes_thrown: Float + four_kill_rounds: Float + he_damage: Float + he_team_damage: Float + he_throws: Float + headshot_hits: Float + hits: Float + hits_at_spotted: Float + hs_kills: Float + hs_kills_ct: Float + hs_kills_t: Float + kills: Float + kills_ct: Float + kills_t: Float + knife_kills: Float + molotov_damage: Float + molotov_throws: Float + non_awp_hits: Float + on_target_frames: Float + rounds_ct: Float + rounds_played: Float + rounds_t: Float + shots_at_spotted: Float + shots_fired: Float + smoke_throws: Float + spotted_count: Float + spotted_with_damage_count: Float + spray_hits: Float + spray_shots: Float + steam_id: Float + team_damage: Float + team_flashed: Float + three_kill_rounds: Float + total_engagement_frames: Float + trade_kill_attempts: Float + trade_kill_opportunities: Float + trade_kill_successes: Float + traded_death_attempts: Float + traded_death_opportunities: Float + traded_death_successes: Float + two_kill_rounds: Float + unused_utility_value: Float + utility_on_death: Float + wasted_magazine_shots: Float + zeus_kills: Float +} + +""" +order by var_samp() on columns of table "player_match_stats_v" +""" +input player_match_stats_v_var_samp_order_by { + assists: order_by + assists_ct: order_by + assists_t: order_by + avg_crosshair_angle_deg: order_by + avg_flash_duration: order_by + avg_time_to_damage_s: order_by + counter_strafe_eligible_shots: order_by + counter_strafed_shots: order_by + damage: order_by + damage_ct: order_by + damage_t: order_by + deaths: order_by + deaths_ct: order_by + deaths_t: order_by + decoy_throws: order_by + enemies_flashed: order_by + first_bullet_hits: order_by + first_bullet_shots: order_by + five_kill_rounds: order_by + flash_assists: order_by + flashes_thrown: order_by + four_kill_rounds: order_by + he_damage: order_by + he_team_damage: order_by + he_throws: order_by + headshot_hits: order_by + hits: order_by + hits_at_spotted: order_by + hs_kills: order_by + hs_kills_ct: order_by + hs_kills_t: order_by + kills: order_by + kills_ct: order_by + kills_t: order_by + knife_kills: order_by + molotov_damage: order_by + molotov_throws: order_by + non_awp_hits: order_by + on_target_frames: order_by + rounds_ct: order_by + rounds_played: order_by + rounds_t: order_by + shots_at_spotted: order_by + shots_fired: order_by + smoke_throws: order_by + spotted_count: order_by + spotted_with_damage_count: order_by + spray_hits: order_by + spray_shots: order_by + steam_id: order_by + team_damage: order_by + team_flashed: order_by + three_kill_rounds: order_by + total_engagement_frames: order_by + trade_kill_attempts: order_by + trade_kill_opportunities: order_by + trade_kill_successes: order_by + traded_death_attempts: order_by + traded_death_opportunities: order_by + traded_death_successes: order_by + two_kill_rounds: order_by + unused_utility_value: order_by + utility_on_death: order_by + wasted_magazine_shots: order_by + zeus_kills: order_by +} + +"""aggregate variance on columns""" +type player_match_stats_v_variance_fields { + assists: Float + assists_ct: Float + assists_t: Float + avg_crosshair_angle_deg: Float + avg_flash_duration: Float + avg_time_to_damage_s: Float + counter_strafe_eligible_shots: Float + counter_strafed_shots: Float + damage: Float + damage_ct: Float + damage_t: Float + deaths: Float + deaths_ct: Float + deaths_t: Float + decoy_throws: Float + enemies_flashed: Float + first_bullet_hits: Float + first_bullet_shots: Float + five_kill_rounds: Float + flash_assists: Float + flashes_thrown: Float + four_kill_rounds: Float + he_damage: Float + he_team_damage: Float + he_throws: Float + headshot_hits: Float + hits: Float + hits_at_spotted: Float + hs_kills: Float + hs_kills_ct: Float + hs_kills_t: Float + kills: Float + kills_ct: Float + kills_t: Float + knife_kills: Float + molotov_damage: Float + molotov_throws: Float + non_awp_hits: Float + on_target_frames: Float + rounds_ct: Float + rounds_played: Float + rounds_t: Float + shots_at_spotted: Float + shots_fired: Float + smoke_throws: Float + spotted_count: Float + spotted_with_damage_count: Float + spray_hits: Float + spray_shots: Float + steam_id: Float + team_damage: Float + team_flashed: Float + three_kill_rounds: Float + total_engagement_frames: Float + trade_kill_attempts: Float + trade_kill_opportunities: Float + trade_kill_successes: Float + traded_death_attempts: Float + traded_death_opportunities: Float + traded_death_successes: Float + two_kill_rounds: Float + unused_utility_value: Float + utility_on_death: Float + wasted_magazine_shots: Float + zeus_kills: Float +} + +""" +order by variance() on columns of table "player_match_stats_v" +""" +input player_match_stats_v_variance_order_by { + assists: order_by + assists_ct: order_by + assists_t: order_by + avg_crosshair_angle_deg: order_by + avg_flash_duration: order_by + avg_time_to_damage_s: order_by + counter_strafe_eligible_shots: order_by + counter_strafed_shots: order_by + damage: order_by + damage_ct: order_by + damage_t: order_by + deaths: order_by + deaths_ct: order_by + deaths_t: order_by + decoy_throws: order_by + enemies_flashed: order_by + first_bullet_hits: order_by + first_bullet_shots: order_by + five_kill_rounds: order_by + flash_assists: order_by + flashes_thrown: order_by + four_kill_rounds: order_by + he_damage: order_by + he_team_damage: order_by + he_throws: order_by + headshot_hits: order_by + hits: order_by + hits_at_spotted: order_by + hs_kills: order_by + hs_kills_ct: order_by + hs_kills_t: order_by + kills: order_by + kills_ct: order_by + kills_t: order_by + knife_kills: order_by + molotov_damage: order_by + molotov_throws: order_by + non_awp_hits: order_by + on_target_frames: order_by + rounds_ct: order_by + rounds_played: order_by + rounds_t: order_by + shots_at_spotted: order_by + shots_fired: order_by + smoke_throws: order_by + spotted_count: order_by + spotted_with_damage_count: order_by + spray_hits: order_by + spray_shots: order_by + steam_id: order_by + team_damage: order_by + team_flashed: order_by + three_kill_rounds: order_by + total_engagement_frames: order_by + trade_kill_attempts: order_by + trade_kill_opportunities: order_by + trade_kill_successes: order_by + traded_death_attempts: order_by + traded_death_opportunities: order_by + traded_death_successes: order_by + two_kill_rounds: order_by + unused_utility_value: order_by + utility_on_death: order_by + wasted_magazine_shots: order_by + zeus_kills: order_by +} + +""" +columns and relationships of "player_objectives" +""" +type player_objectives { + deleted_at: timestamptz + + """An object relationship""" + match: matches! + match_id: uuid! + + """An object relationship""" + match_map: match_maps! + match_map_id: uuid! + + """An object relationship""" + player: players! + player_steam_id: bigint! + round: Int! + time: timestamptz! + type: e_objective_types_enum! +} + +""" +aggregated selection of "player_objectives" +""" +type player_objectives_aggregate { + aggregate: player_objectives_aggregate_fields + nodes: [player_objectives!]! +} + +input player_objectives_aggregate_bool_exp { + count: player_objectives_aggregate_bool_exp_count +} + +input player_objectives_aggregate_bool_exp_count { + arguments: [player_objectives_select_column!] + distinct: Boolean + filter: player_objectives_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "player_objectives" +""" +type player_objectives_aggregate_fields { + avg: player_objectives_avg_fields + count(columns: [player_objectives_select_column!], distinct: Boolean): Int! + max: player_objectives_max_fields + min: player_objectives_min_fields + stddev: player_objectives_stddev_fields + stddev_pop: player_objectives_stddev_pop_fields + stddev_samp: player_objectives_stddev_samp_fields + sum: player_objectives_sum_fields + var_pop: player_objectives_var_pop_fields + var_samp: player_objectives_var_samp_fields + variance: player_objectives_variance_fields +} + +""" +order by aggregate values of table "player_objectives" +""" +input player_objectives_aggregate_order_by { + avg: player_objectives_avg_order_by + count: order_by + max: player_objectives_max_order_by + min: player_objectives_min_order_by + stddev: player_objectives_stddev_order_by + stddev_pop: player_objectives_stddev_pop_order_by + stddev_samp: player_objectives_stddev_samp_order_by + sum: player_objectives_sum_order_by + var_pop: player_objectives_var_pop_order_by + var_samp: player_objectives_var_samp_order_by + variance: player_objectives_variance_order_by +} + +""" +input type for inserting array relation for remote table "player_objectives" +""" +input player_objectives_arr_rel_insert_input { + data: [player_objectives_insert_input!]! + + """upsert condition""" + on_conflict: player_objectives_on_conflict +} + +"""aggregate avg on columns""" +type player_objectives_avg_fields { + player_steam_id: Float + round: Float +} + +""" +order by avg() on columns of table "player_objectives" +""" +input player_objectives_avg_order_by { + player_steam_id: order_by + round: order_by +} + +""" +Boolean expression to filter rows from the table "player_objectives". All fields are combined with a logical 'AND'. +""" +input player_objectives_bool_exp { + _and: [player_objectives_bool_exp!] + _not: player_objectives_bool_exp + _or: [player_objectives_bool_exp!] + deleted_at: timestamptz_comparison_exp + match: matches_bool_exp + match_id: uuid_comparison_exp + match_map: match_maps_bool_exp + match_map_id: uuid_comparison_exp + player: players_bool_exp + player_steam_id: bigint_comparison_exp + round: Int_comparison_exp + time: timestamptz_comparison_exp + type: e_objective_types_enum_comparison_exp +} + +""" +unique or primary key constraints on table "player_objectives" +""" +enum player_objectives_constraint { + """ + unique or primary key constraint on columns "player_steam_id", "time", "match_map_id" + """ + player_objectives_pkey +} + +""" +input type for incrementing numeric columns in table "player_objectives" +""" +input player_objectives_inc_input { + player_steam_id: bigint + round: Int +} + +""" +input type for inserting data into table "player_objectives" +""" +input player_objectives_insert_input { + deleted_at: timestamptz + match: matches_obj_rel_insert_input + match_id: uuid + match_map: match_maps_obj_rel_insert_input + match_map_id: uuid + player: players_obj_rel_insert_input + player_steam_id: bigint + round: Int + time: timestamptz + type: e_objective_types_enum +} + +"""aggregate max on columns""" +type player_objectives_max_fields { + deleted_at: timestamptz + match_id: uuid + match_map_id: uuid + player_steam_id: bigint + round: Int + time: timestamptz +} + +""" +order by max() on columns of table "player_objectives" +""" +input player_objectives_max_order_by { + deleted_at: order_by + match_id: order_by + match_map_id: order_by + player_steam_id: order_by + round: order_by + time: order_by +} + +"""aggregate min on columns""" +type player_objectives_min_fields { + deleted_at: timestamptz + match_id: uuid + match_map_id: uuid + player_steam_id: bigint + round: Int + time: timestamptz +} + +""" +order by min() on columns of table "player_objectives" +""" +input player_objectives_min_order_by { + deleted_at: order_by + match_id: order_by + match_map_id: order_by + player_steam_id: order_by + round: order_by + time: order_by +} + +""" +response of any mutation on the table "player_objectives" +""" +type player_objectives_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [player_objectives!]! +} + +""" +on_conflict condition type for table "player_objectives" +""" +input player_objectives_on_conflict { + constraint: player_objectives_constraint! + update_columns: [player_objectives_update_column!]! = [] + where: player_objectives_bool_exp +} + +"""Ordering options when selecting data from "player_objectives".""" +input player_objectives_order_by { + deleted_at: order_by + match: matches_order_by + match_id: order_by + match_map: match_maps_order_by + match_map_id: order_by + player: players_order_by + player_steam_id: order_by + round: order_by + time: order_by + type: order_by +} + +"""primary key columns input for table: player_objectives""" +input player_objectives_pk_columns_input { + match_map_id: uuid! + player_steam_id: bigint! + time: timestamptz! +} + +""" +select columns of table "player_objectives" +""" +enum player_objectives_select_column { + """column name""" + deleted_at + + """column name""" + match_id + + """column name""" + match_map_id + + """column name""" + player_steam_id + + """column name""" + round + + """column name""" + time + + """column name""" + type +} + +""" +input type for updating data in table "player_objectives" +""" +input player_objectives_set_input { + deleted_at: timestamptz + match_id: uuid + match_map_id: uuid + player_steam_id: bigint + round: Int + time: timestamptz + type: e_objective_types_enum +} + +"""aggregate stddev on columns""" +type player_objectives_stddev_fields { + player_steam_id: Float + round: Float +} + +""" +order by stddev() on columns of table "player_objectives" +""" +input player_objectives_stddev_order_by { + player_steam_id: order_by + round: order_by +} + +"""aggregate stddev_pop on columns""" +type player_objectives_stddev_pop_fields { + player_steam_id: Float + round: Float +} + +""" +order by stddev_pop() on columns of table "player_objectives" +""" +input player_objectives_stddev_pop_order_by { + player_steam_id: order_by + round: order_by +} + +"""aggregate stddev_samp on columns""" +type player_objectives_stddev_samp_fields { + player_steam_id: Float + round: Float +} + +""" +order by stddev_samp() on columns of table "player_objectives" +""" +input player_objectives_stddev_samp_order_by { + player_steam_id: order_by + round: order_by +} + +""" +Streaming cursor of the table "player_objectives" +""" +input player_objectives_stream_cursor_input { + """Stream column input with initial value""" + initial_value: player_objectives_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input player_objectives_stream_cursor_value_input { + deleted_at: timestamptz + match_id: uuid + match_map_id: uuid + player_steam_id: bigint + round: Int + time: timestamptz + type: e_objective_types_enum +} + +"""aggregate sum on columns""" +type player_objectives_sum_fields { + player_steam_id: bigint + round: Int +} + +""" +order by sum() on columns of table "player_objectives" +""" +input player_objectives_sum_order_by { + player_steam_id: order_by + round: order_by +} + +""" +update columns of table "player_objectives" +""" +enum player_objectives_update_column { + """column name""" + deleted_at + + """column name""" + match_id + + """column name""" + match_map_id + + """column name""" + player_steam_id + + """column name""" + round + + """column name""" + time + + """column name""" + type +} + +input player_objectives_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: player_objectives_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_objectives_set_input + + """filter the rows which have to be updated""" + where: player_objectives_bool_exp! +} + +"""aggregate var_pop on columns""" +type player_objectives_var_pop_fields { + player_steam_id: Float + round: Float +} + +""" +order by var_pop() on columns of table "player_objectives" +""" +input player_objectives_var_pop_order_by { + player_steam_id: order_by + round: order_by +} + +"""aggregate var_samp on columns""" +type player_objectives_var_samp_fields { + player_steam_id: Float + round: Float +} + +""" +order by var_samp() on columns of table "player_objectives" +""" +input player_objectives_var_samp_order_by { + player_steam_id: order_by + round: order_by +} + +"""aggregate variance on columns""" +type player_objectives_variance_fields { + player_steam_id: Float + round: Float +} + +""" +order by variance() on columns of table "player_objectives" +""" +input player_objectives_variance_order_by { + player_steam_id: order_by + round: order_by +} + +""" +columns and relationships of "player_performance_v" +""" +type player_performance_v { + accuracy_score: float8 + aim_goal: float8 + aim_rating: float8 + band: Int + band_sample: bigint + blind_score: float8 + counter_strafe_score: float8 + crosshair_score: float8 + flash_assists_score: float8 + hs_score: float8 + kast_score: float8 + maps: Int + positioning_goal: float8 + positioning_rating: float8 + premier_rank: Int + rounds: Int + spotted_score: float8 + steam_id: bigint + survival_score: float8 + traded_score: float8 + ttd_score: float8 + util_eff_score: float8 + utility_goal: float8 + utility_rating: float8 +} + +""" +aggregated selection of "player_performance_v" +""" +type player_performance_v_aggregate { + aggregate: player_performance_v_aggregate_fields + nodes: [player_performance_v!]! +} + +""" +aggregate fields of "player_performance_v" +""" +type player_performance_v_aggregate_fields { + avg: player_performance_v_avg_fields + count(columns: [player_performance_v_select_column!], distinct: Boolean): Int! + max: player_performance_v_max_fields + min: player_performance_v_min_fields + stddev: player_performance_v_stddev_fields + stddev_pop: player_performance_v_stddev_pop_fields + stddev_samp: player_performance_v_stddev_samp_fields + sum: player_performance_v_sum_fields + var_pop: player_performance_v_var_pop_fields + var_samp: player_performance_v_var_samp_fields + variance: player_performance_v_variance_fields +} + +"""aggregate avg on columns""" +type player_performance_v_avg_fields { + accuracy_score: Float + aim_goal: Float + aim_rating: Float + band: Float + band_sample: Float + blind_score: Float + counter_strafe_score: Float + crosshair_score: Float + flash_assists_score: Float + hs_score: Float + kast_score: Float + maps: Float + positioning_goal: Float + positioning_rating: Float + premier_rank: Float + rounds: Float + spotted_score: Float + steam_id: Float + survival_score: Float + traded_score: Float + ttd_score: Float + util_eff_score: Float + utility_goal: Float + utility_rating: Float +} + +""" +Boolean expression to filter rows from the table "player_performance_v". All fields are combined with a logical 'AND'. +""" +input player_performance_v_bool_exp { + _and: [player_performance_v_bool_exp!] + _not: player_performance_v_bool_exp + _or: [player_performance_v_bool_exp!] + accuracy_score: float8_comparison_exp + aim_goal: float8_comparison_exp + aim_rating: float8_comparison_exp + band: Int_comparison_exp + band_sample: bigint_comparison_exp + blind_score: float8_comparison_exp + counter_strafe_score: float8_comparison_exp + crosshair_score: float8_comparison_exp + flash_assists_score: float8_comparison_exp + hs_score: float8_comparison_exp + kast_score: float8_comparison_exp + maps: Int_comparison_exp + positioning_goal: float8_comparison_exp + positioning_rating: float8_comparison_exp + premier_rank: Int_comparison_exp + rounds: Int_comparison_exp + spotted_score: float8_comparison_exp + steam_id: bigint_comparison_exp + survival_score: float8_comparison_exp + traded_score: float8_comparison_exp + ttd_score: float8_comparison_exp + util_eff_score: float8_comparison_exp + utility_goal: float8_comparison_exp + utility_rating: float8_comparison_exp +} + +"""aggregate max on columns""" +type player_performance_v_max_fields { + accuracy_score: float8 + aim_goal: float8 + aim_rating: float8 + band: Int + band_sample: bigint + blind_score: float8 + counter_strafe_score: float8 + crosshair_score: float8 + flash_assists_score: float8 + hs_score: float8 + kast_score: float8 + maps: Int + positioning_goal: float8 + positioning_rating: float8 + premier_rank: Int + rounds: Int + spotted_score: float8 + steam_id: bigint + survival_score: float8 + traded_score: float8 + ttd_score: float8 + util_eff_score: float8 + utility_goal: float8 + utility_rating: float8 +} + +"""aggregate min on columns""" +type player_performance_v_min_fields { + accuracy_score: float8 + aim_goal: float8 + aim_rating: float8 + band: Int + band_sample: bigint + blind_score: float8 + counter_strafe_score: float8 + crosshair_score: float8 + flash_assists_score: float8 + hs_score: float8 + kast_score: float8 + maps: Int + positioning_goal: float8 + positioning_rating: float8 + premier_rank: Int + rounds: Int + spotted_score: float8 + steam_id: bigint + survival_score: float8 + traded_score: float8 + ttd_score: float8 + util_eff_score: float8 + utility_goal: float8 + utility_rating: float8 +} + +"""Ordering options when selecting data from "player_performance_v".""" +input player_performance_v_order_by { + accuracy_score: order_by + aim_goal: order_by + aim_rating: order_by + band: order_by + band_sample: order_by + blind_score: order_by + counter_strafe_score: order_by + crosshair_score: order_by + flash_assists_score: order_by + hs_score: order_by + kast_score: order_by + maps: order_by + positioning_goal: order_by + positioning_rating: order_by + premier_rank: order_by + rounds: order_by + spotted_score: order_by + steam_id: order_by + survival_score: order_by + traded_score: order_by + ttd_score: order_by + util_eff_score: order_by + utility_goal: order_by + utility_rating: order_by +} + +""" +select columns of table "player_performance_v" +""" +enum player_performance_v_select_column { + """column name""" + accuracy_score + + """column name""" + aim_goal + + """column name""" + aim_rating + + """column name""" + band + + """column name""" + band_sample + + """column name""" + blind_score + + """column name""" + counter_strafe_score + + """column name""" + crosshair_score + + """column name""" + flash_assists_score + + """column name""" + hs_score + + """column name""" + kast_score + + """column name""" + maps + + """column name""" + positioning_goal + + """column name""" + positioning_rating + + """column name""" + premier_rank + + """column name""" + rounds + + """column name""" + spotted_score + + """column name""" + steam_id + + """column name""" + survival_score + + """column name""" + traded_score + + """column name""" + ttd_score + + """column name""" + util_eff_score + + """column name""" + utility_goal + + """column name""" + utility_rating +} + +"""aggregate stddev on columns""" +type player_performance_v_stddev_fields { + accuracy_score: Float + aim_goal: Float + aim_rating: Float + band: Float + band_sample: Float + blind_score: Float + counter_strafe_score: Float + crosshair_score: Float + flash_assists_score: Float + hs_score: Float + kast_score: Float + maps: Float + positioning_goal: Float + positioning_rating: Float + premier_rank: Float + rounds: Float + spotted_score: Float + steam_id: Float + survival_score: Float + traded_score: Float + ttd_score: Float + util_eff_score: Float + utility_goal: Float + utility_rating: Float +} + +"""aggregate stddev_pop on columns""" +type player_performance_v_stddev_pop_fields { + accuracy_score: Float + aim_goal: Float + aim_rating: Float + band: Float + band_sample: Float + blind_score: Float + counter_strafe_score: Float + crosshair_score: Float + flash_assists_score: Float + hs_score: Float + kast_score: Float + maps: Float + positioning_goal: Float + positioning_rating: Float + premier_rank: Float + rounds: Float + spotted_score: Float + steam_id: Float + survival_score: Float + traded_score: Float + ttd_score: Float + util_eff_score: Float + utility_goal: Float + utility_rating: Float +} + +"""aggregate stddev_samp on columns""" +type player_performance_v_stddev_samp_fields { + accuracy_score: Float + aim_goal: Float + aim_rating: Float + band: Float + band_sample: Float + blind_score: Float + counter_strafe_score: Float + crosshair_score: Float + flash_assists_score: Float + hs_score: Float + kast_score: Float + maps: Float + positioning_goal: Float + positioning_rating: Float + premier_rank: Float + rounds: Float + spotted_score: Float + steam_id: Float + survival_score: Float + traded_score: Float + ttd_score: Float + util_eff_score: Float + utility_goal: Float + utility_rating: Float +} + +""" +Streaming cursor of the table "player_performance_v" +""" +input player_performance_v_stream_cursor_input { + """Stream column input with initial value""" + initial_value: player_performance_v_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input player_performance_v_stream_cursor_value_input { + accuracy_score: float8 + aim_goal: float8 + aim_rating: float8 + band: Int + band_sample: bigint + blind_score: float8 + counter_strafe_score: float8 + crosshair_score: float8 + flash_assists_score: float8 + hs_score: float8 + kast_score: float8 + maps: Int + positioning_goal: float8 + positioning_rating: float8 + premier_rank: Int + rounds: Int + spotted_score: float8 + steam_id: bigint + survival_score: float8 + traded_score: float8 + ttd_score: float8 + util_eff_score: float8 + utility_goal: float8 + utility_rating: float8 +} + +"""aggregate sum on columns""" +type player_performance_v_sum_fields { + accuracy_score: float8 + aim_goal: float8 + aim_rating: float8 + band: Int + band_sample: bigint + blind_score: float8 + counter_strafe_score: float8 + crosshair_score: float8 + flash_assists_score: float8 + hs_score: float8 + kast_score: float8 + maps: Int + positioning_goal: float8 + positioning_rating: float8 + premier_rank: Int + rounds: Int + spotted_score: float8 + steam_id: bigint + survival_score: float8 + traded_score: float8 + ttd_score: float8 + util_eff_score: float8 + utility_goal: float8 + utility_rating: float8 +} + +"""aggregate var_pop on columns""" +type player_performance_v_var_pop_fields { + accuracy_score: Float + aim_goal: Float + aim_rating: Float + band: Float + band_sample: Float + blind_score: Float + counter_strafe_score: Float + crosshair_score: Float + flash_assists_score: Float + hs_score: Float + kast_score: Float + maps: Float + positioning_goal: Float + positioning_rating: Float + premier_rank: Float + rounds: Float + spotted_score: Float + steam_id: Float + survival_score: Float + traded_score: Float + ttd_score: Float + util_eff_score: Float + utility_goal: Float + utility_rating: Float +} + +"""aggregate var_samp on columns""" +type player_performance_v_var_samp_fields { + accuracy_score: Float + aim_goal: Float + aim_rating: Float + band: Float + band_sample: Float + blind_score: Float + counter_strafe_score: Float + crosshair_score: Float + flash_assists_score: Float + hs_score: Float + kast_score: Float + maps: Float + positioning_goal: Float + positioning_rating: Float + premier_rank: Float + rounds: Float + spotted_score: Float + steam_id: Float + survival_score: Float + traded_score: Float + ttd_score: Float + util_eff_score: Float + utility_goal: Float + utility_rating: Float +} + +"""aggregate variance on columns""" +type player_performance_v_variance_fields { + accuracy_score: Float + aim_goal: Float + aim_rating: Float + band: Float + band_sample: Float + blind_score: Float + counter_strafe_score: Float + crosshair_score: Float + flash_assists_score: Float + hs_score: Float + kast_score: Float + maps: Float + positioning_goal: Float + positioning_rating: Float + premier_rank: Float + rounds: Float + spotted_score: Float + steam_id: Float + survival_score: Float + traded_score: Float + ttd_score: Float + util_eff_score: Float + utility_goal: Float + utility_rating: Float +} + +""" +columns and relationships of "player_premier_rank_history" +""" +type player_premier_rank_history { + id: uuid! + + """An object relationship""" + map: maps + map_id: uuid + + """An object relationship""" + match: matches! + match_id: uuid! + observed_at: timestamptz! + + """An object relationship""" + player: players! + previous_rank: Int + rank: Int! + rank_type: Int! + steam_id: bigint! +} + +""" +aggregated selection of "player_premier_rank_history" +""" +type player_premier_rank_history_aggregate { + aggregate: player_premier_rank_history_aggregate_fields + nodes: [player_premier_rank_history!]! +} + +input player_premier_rank_history_aggregate_bool_exp { + count: player_premier_rank_history_aggregate_bool_exp_count +} + +input player_premier_rank_history_aggregate_bool_exp_count { + arguments: [player_premier_rank_history_select_column!] + distinct: Boolean + filter: player_premier_rank_history_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "player_premier_rank_history" +""" +type player_premier_rank_history_aggregate_fields { + avg: player_premier_rank_history_avg_fields + count(columns: [player_premier_rank_history_select_column!], distinct: Boolean): Int! + max: player_premier_rank_history_max_fields + min: player_premier_rank_history_min_fields + stddev: player_premier_rank_history_stddev_fields + stddev_pop: player_premier_rank_history_stddev_pop_fields + stddev_samp: player_premier_rank_history_stddev_samp_fields + sum: player_premier_rank_history_sum_fields + var_pop: player_premier_rank_history_var_pop_fields + var_samp: player_premier_rank_history_var_samp_fields + variance: player_premier_rank_history_variance_fields +} + +""" +order by aggregate values of table "player_premier_rank_history" +""" +input player_premier_rank_history_aggregate_order_by { + avg: player_premier_rank_history_avg_order_by + count: order_by + max: player_premier_rank_history_max_order_by + min: player_premier_rank_history_min_order_by + stddev: player_premier_rank_history_stddev_order_by + stddev_pop: player_premier_rank_history_stddev_pop_order_by + stddev_samp: player_premier_rank_history_stddev_samp_order_by + sum: player_premier_rank_history_sum_order_by + var_pop: player_premier_rank_history_var_pop_order_by + var_samp: player_premier_rank_history_var_samp_order_by + variance: player_premier_rank_history_variance_order_by +} + +""" +input type for inserting array relation for remote table "player_premier_rank_history" +""" +input player_premier_rank_history_arr_rel_insert_input { + data: [player_premier_rank_history_insert_input!]! + + """upsert condition""" + on_conflict: player_premier_rank_history_on_conflict +} + +"""aggregate avg on columns""" +type player_premier_rank_history_avg_fields { + previous_rank: Float + rank: Float + rank_type: Float + steam_id: Float +} + +""" +order by avg() on columns of table "player_premier_rank_history" +""" +input player_premier_rank_history_avg_order_by { + previous_rank: order_by + rank: order_by + rank_type: order_by + steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "player_premier_rank_history". All fields are combined with a logical 'AND'. +""" +input player_premier_rank_history_bool_exp { + _and: [player_premier_rank_history_bool_exp!] + _not: player_premier_rank_history_bool_exp + _or: [player_premier_rank_history_bool_exp!] + id: uuid_comparison_exp + map: maps_bool_exp + map_id: uuid_comparison_exp + match: matches_bool_exp + match_id: uuid_comparison_exp + observed_at: timestamptz_comparison_exp + player: players_bool_exp + previous_rank: Int_comparison_exp + rank: Int_comparison_exp + rank_type: Int_comparison_exp + steam_id: bigint_comparison_exp +} + +""" +unique or primary key constraints on table "player_premier_rank_history" +""" +enum player_premier_rank_history_constraint { + """ + unique or primary key constraint on columns "id" + """ + player_premier_rank_history_pkey + + """ + unique or primary key constraint on columns "steam_id", "rank_type", "match_id" + """ + uq_player_premier_rank_history_steam_match_type +} + +""" +input type for incrementing numeric columns in table "player_premier_rank_history" +""" +input player_premier_rank_history_inc_input { + previous_rank: Int + rank: Int + rank_type: Int + steam_id: bigint +} + +""" +input type for inserting data into table "player_premier_rank_history" +""" +input player_premier_rank_history_insert_input { + id: uuid + map: maps_obj_rel_insert_input + map_id: uuid + match: matches_obj_rel_insert_input + match_id: uuid + observed_at: timestamptz + player: players_obj_rel_insert_input + previous_rank: Int + rank: Int + rank_type: Int + steam_id: bigint +} + +"""aggregate max on columns""" +type player_premier_rank_history_max_fields { + id: uuid + map_id: uuid + match_id: uuid + observed_at: timestamptz + previous_rank: Int + rank: Int + rank_type: Int + steam_id: bigint +} + +""" +order by max() on columns of table "player_premier_rank_history" +""" +input player_premier_rank_history_max_order_by { + id: order_by + map_id: order_by + match_id: order_by + observed_at: order_by + previous_rank: order_by + rank: order_by + rank_type: order_by + steam_id: order_by +} + +"""aggregate min on columns""" +type player_premier_rank_history_min_fields { + id: uuid + map_id: uuid + match_id: uuid + observed_at: timestamptz + previous_rank: Int + rank: Int + rank_type: Int + steam_id: bigint +} + +""" +order by min() on columns of table "player_premier_rank_history" +""" +input player_premier_rank_history_min_order_by { + id: order_by + map_id: order_by + match_id: order_by + observed_at: order_by + previous_rank: order_by + rank: order_by + rank_type: order_by + steam_id: order_by +} + +""" +response of any mutation on the table "player_premier_rank_history" +""" +type player_premier_rank_history_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [player_premier_rank_history!]! +} + +""" +on_conflict condition type for table "player_premier_rank_history" +""" +input player_premier_rank_history_on_conflict { + constraint: player_premier_rank_history_constraint! + update_columns: [player_premier_rank_history_update_column!]! = [] + where: player_premier_rank_history_bool_exp +} + +""" +Ordering options when selecting data from "player_premier_rank_history". +""" +input player_premier_rank_history_order_by { + id: order_by + map: maps_order_by + map_id: order_by + match: matches_order_by + match_id: order_by + observed_at: order_by + player: players_order_by + previous_rank: order_by + rank: order_by + rank_type: order_by + steam_id: order_by +} + +"""primary key columns input for table: player_premier_rank_history""" +input player_premier_rank_history_pk_columns_input { + id: uuid! +} + +""" +select columns of table "player_premier_rank_history" +""" +enum player_premier_rank_history_select_column { + """column name""" + id + + """column name""" + map_id + + """column name""" + match_id + + """column name""" + observed_at + + """column name""" + previous_rank + + """column name""" + rank + + """column name""" + rank_type + + """column name""" + steam_id +} + +""" +input type for updating data in table "player_premier_rank_history" +""" +input player_premier_rank_history_set_input { + id: uuid + map_id: uuid + match_id: uuid + observed_at: timestamptz + previous_rank: Int + rank: Int + rank_type: Int + steam_id: bigint +} + +"""aggregate stddev on columns""" +type player_premier_rank_history_stddev_fields { + previous_rank: Float + rank: Float + rank_type: Float + steam_id: Float +} + +""" +order by stddev() on columns of table "player_premier_rank_history" +""" +input player_premier_rank_history_stddev_order_by { + previous_rank: order_by + rank: order_by + rank_type: order_by + steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type player_premier_rank_history_stddev_pop_fields { + previous_rank: Float + rank: Float + rank_type: Float + steam_id: Float +} + +""" +order by stddev_pop() on columns of table "player_premier_rank_history" +""" +input player_premier_rank_history_stddev_pop_order_by { + previous_rank: order_by + rank: order_by + rank_type: order_by + steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type player_premier_rank_history_stddev_samp_fields { + previous_rank: Float + rank: Float + rank_type: Float + steam_id: Float +} + +""" +order by stddev_samp() on columns of table "player_premier_rank_history" +""" +input player_premier_rank_history_stddev_samp_order_by { + previous_rank: order_by + rank: order_by + rank_type: order_by + steam_id: order_by +} + +""" +Streaming cursor of the table "player_premier_rank_history" +""" +input player_premier_rank_history_stream_cursor_input { + """Stream column input with initial value""" + initial_value: player_premier_rank_history_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input player_premier_rank_history_stream_cursor_value_input { + id: uuid + map_id: uuid + match_id: uuid + observed_at: timestamptz + previous_rank: Int + rank: Int + rank_type: Int + steam_id: bigint +} + +"""aggregate sum on columns""" +type player_premier_rank_history_sum_fields { + previous_rank: Int + rank: Int + rank_type: Int + steam_id: bigint +} + +""" +order by sum() on columns of table "player_premier_rank_history" +""" +input player_premier_rank_history_sum_order_by { + previous_rank: order_by + rank: order_by + rank_type: order_by + steam_id: order_by +} + +""" +update columns of table "player_premier_rank_history" +""" +enum player_premier_rank_history_update_column { + """column name""" + id + + """column name""" + map_id + + """column name""" + match_id + + """column name""" + observed_at + + """column name""" + previous_rank + + """column name""" + rank + + """column name""" + rank_type + + """column name""" + steam_id +} + +input player_premier_rank_history_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: player_premier_rank_history_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_premier_rank_history_set_input + + """filter the rows which have to be updated""" + where: player_premier_rank_history_bool_exp! +} + +"""aggregate var_pop on columns""" +type player_premier_rank_history_var_pop_fields { + previous_rank: Float + rank: Float + rank_type: Float + steam_id: Float +} + +""" +order by var_pop() on columns of table "player_premier_rank_history" +""" +input player_premier_rank_history_var_pop_order_by { + previous_rank: order_by + rank: order_by + rank_type: order_by + steam_id: order_by +} + +"""aggregate var_samp on columns""" +type player_premier_rank_history_var_samp_fields { + previous_rank: Float + rank: Float + rank_type: Float + steam_id: Float +} + +""" +order by var_samp() on columns of table "player_premier_rank_history" +""" +input player_premier_rank_history_var_samp_order_by { + previous_rank: order_by + rank: order_by + rank_type: order_by + steam_id: order_by +} + +"""aggregate variance on columns""" +type player_premier_rank_history_variance_fields { + previous_rank: Float + rank: Float + rank_type: Float + steam_id: Float +} + +""" +order by variance() on columns of table "player_premier_rank_history" +""" +input player_premier_rank_history_variance_order_by { + previous_rank: order_by + rank: order_by + rank_type: order_by + steam_id: order_by +} + +""" +columns and relationships of "player_sanctions" +""" +type player_sanctions { + created_at: timestamptz! + deleted_at: timestamptz + + """An object relationship""" + e_sanction_type: e_sanction_types! + id: uuid! + + """An object relationship""" + player: players! + player_steam_id: bigint! + reason: String + remove_sanction_date: timestamptz + + """An object relationship""" + sanctioned_by: players + sanctioned_by_steam_id: bigint + type: e_sanction_types_enum! +} + +""" +aggregated selection of "player_sanctions" +""" +type player_sanctions_aggregate { + aggregate: player_sanctions_aggregate_fields + nodes: [player_sanctions!]! +} + +input player_sanctions_aggregate_bool_exp { + count: player_sanctions_aggregate_bool_exp_count +} + +input player_sanctions_aggregate_bool_exp_count { + arguments: [player_sanctions_select_column!] + distinct: Boolean + filter: player_sanctions_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "player_sanctions" +""" +type player_sanctions_aggregate_fields { + avg: player_sanctions_avg_fields + count(columns: [player_sanctions_select_column!], distinct: Boolean): Int! + max: player_sanctions_max_fields + min: player_sanctions_min_fields + stddev: player_sanctions_stddev_fields + stddev_pop: player_sanctions_stddev_pop_fields + stddev_samp: player_sanctions_stddev_samp_fields + sum: player_sanctions_sum_fields + var_pop: player_sanctions_var_pop_fields + var_samp: player_sanctions_var_samp_fields + variance: player_sanctions_variance_fields +} + +""" +order by aggregate values of table "player_sanctions" +""" +input player_sanctions_aggregate_order_by { + avg: player_sanctions_avg_order_by + count: order_by + max: player_sanctions_max_order_by + min: player_sanctions_min_order_by + stddev: player_sanctions_stddev_order_by + stddev_pop: player_sanctions_stddev_pop_order_by + stddev_samp: player_sanctions_stddev_samp_order_by + sum: player_sanctions_sum_order_by + var_pop: player_sanctions_var_pop_order_by + var_samp: player_sanctions_var_samp_order_by + variance: player_sanctions_variance_order_by +} + +""" +input type for inserting array relation for remote table "player_sanctions" +""" +input player_sanctions_arr_rel_insert_input { + data: [player_sanctions_insert_input!]! + + """upsert condition""" + on_conflict: player_sanctions_on_conflict +} + +"""aggregate avg on columns""" +type player_sanctions_avg_fields { + player_steam_id: Float + sanctioned_by_steam_id: Float +} + +""" +order by avg() on columns of table "player_sanctions" +""" +input player_sanctions_avg_order_by { + player_steam_id: order_by + sanctioned_by_steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "player_sanctions". All fields are combined with a logical 'AND'. +""" +input player_sanctions_bool_exp { + _and: [player_sanctions_bool_exp!] + _not: player_sanctions_bool_exp + _or: [player_sanctions_bool_exp!] + created_at: timestamptz_comparison_exp + deleted_at: timestamptz_comparison_exp + e_sanction_type: e_sanction_types_bool_exp + id: uuid_comparison_exp + player: players_bool_exp + player_steam_id: bigint_comparison_exp + reason: String_comparison_exp + remove_sanction_date: timestamptz_comparison_exp + sanctioned_by: players_bool_exp + sanctioned_by_steam_id: bigint_comparison_exp + type: e_sanction_types_enum_comparison_exp +} + +""" +unique or primary key constraints on table "player_sanctions" +""" +enum player_sanctions_constraint { + """ + unique or primary key constraint on columns "id", "created_at" + """ + player_sanctions_pkey +} + +""" +input type for incrementing numeric columns in table "player_sanctions" +""" +input player_sanctions_inc_input { + player_steam_id: bigint + sanctioned_by_steam_id: bigint +} + +""" +input type for inserting data into table "player_sanctions" +""" +input player_sanctions_insert_input { + created_at: timestamptz + deleted_at: timestamptz + e_sanction_type: e_sanction_types_obj_rel_insert_input + id: uuid + player: players_obj_rel_insert_input + player_steam_id: bigint + reason: String + remove_sanction_date: timestamptz + sanctioned_by: players_obj_rel_insert_input + sanctioned_by_steam_id: bigint + type: e_sanction_types_enum +} + +"""aggregate max on columns""" +type player_sanctions_max_fields { + created_at: timestamptz + deleted_at: timestamptz + id: uuid + player_steam_id: bigint + reason: String + remove_sanction_date: timestamptz + sanctioned_by_steam_id: bigint +} + +""" +order by max() on columns of table "player_sanctions" +""" +input player_sanctions_max_order_by { + created_at: order_by + deleted_at: order_by + id: order_by + player_steam_id: order_by + reason: order_by + remove_sanction_date: order_by + sanctioned_by_steam_id: order_by +} + +"""aggregate min on columns""" +type player_sanctions_min_fields { + created_at: timestamptz + deleted_at: timestamptz + id: uuid + player_steam_id: bigint + reason: String + remove_sanction_date: timestamptz + sanctioned_by_steam_id: bigint +} + +""" +order by min() on columns of table "player_sanctions" +""" +input player_sanctions_min_order_by { + created_at: order_by + deleted_at: order_by + id: order_by + player_steam_id: order_by + reason: order_by + remove_sanction_date: order_by + sanctioned_by_steam_id: order_by +} + +""" +response of any mutation on the table "player_sanctions" +""" +type player_sanctions_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [player_sanctions!]! +} + +""" +on_conflict condition type for table "player_sanctions" +""" +input player_sanctions_on_conflict { + constraint: player_sanctions_constraint! + update_columns: [player_sanctions_update_column!]! = [] + where: player_sanctions_bool_exp +} + +"""Ordering options when selecting data from "player_sanctions".""" +input player_sanctions_order_by { + created_at: order_by + deleted_at: order_by + e_sanction_type: e_sanction_types_order_by + id: order_by + player: players_order_by + player_steam_id: order_by + reason: order_by + remove_sanction_date: order_by + sanctioned_by: players_order_by + sanctioned_by_steam_id: order_by + type: order_by +} + +"""primary key columns input for table: player_sanctions""" +input player_sanctions_pk_columns_input { + created_at: timestamptz! + id: uuid! +} + +""" +select columns of table "player_sanctions" +""" +enum player_sanctions_select_column { + """column name""" + created_at + + """column name""" + deleted_at + + """column name""" + id + + """column name""" + player_steam_id + + """column name""" + reason + + """column name""" + remove_sanction_date + + """column name""" + sanctioned_by_steam_id + + """column name""" + type +} + +""" +input type for updating data in table "player_sanctions" +""" +input player_sanctions_set_input { + created_at: timestamptz + deleted_at: timestamptz + id: uuid + player_steam_id: bigint + reason: String + remove_sanction_date: timestamptz + sanctioned_by_steam_id: bigint + type: e_sanction_types_enum +} + +"""aggregate stddev on columns""" +type player_sanctions_stddev_fields { + player_steam_id: Float + sanctioned_by_steam_id: Float +} + +""" +order by stddev() on columns of table "player_sanctions" +""" +input player_sanctions_stddev_order_by { + player_steam_id: order_by + sanctioned_by_steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type player_sanctions_stddev_pop_fields { + player_steam_id: Float + sanctioned_by_steam_id: Float +} + +""" +order by stddev_pop() on columns of table "player_sanctions" +""" +input player_sanctions_stddev_pop_order_by { + player_steam_id: order_by + sanctioned_by_steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type player_sanctions_stddev_samp_fields { + player_steam_id: Float + sanctioned_by_steam_id: Float +} + +""" +order by stddev_samp() on columns of table "player_sanctions" +""" +input player_sanctions_stddev_samp_order_by { + player_steam_id: order_by + sanctioned_by_steam_id: order_by +} + +""" +Streaming cursor of the table "player_sanctions" +""" +input player_sanctions_stream_cursor_input { + """Stream column input with initial value""" + initial_value: player_sanctions_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input player_sanctions_stream_cursor_value_input { + created_at: timestamptz + deleted_at: timestamptz + id: uuid + player_steam_id: bigint + reason: String + remove_sanction_date: timestamptz + sanctioned_by_steam_id: bigint + type: e_sanction_types_enum +} + +"""aggregate sum on columns""" +type player_sanctions_sum_fields { + player_steam_id: bigint + sanctioned_by_steam_id: bigint +} + +""" +order by sum() on columns of table "player_sanctions" +""" +input player_sanctions_sum_order_by { + player_steam_id: order_by + sanctioned_by_steam_id: order_by +} + +""" +update columns of table "player_sanctions" +""" +enum player_sanctions_update_column { + """column name""" + created_at + + """column name""" + deleted_at + + """column name""" + id + + """column name""" + player_steam_id + + """column name""" + reason + + """column name""" + remove_sanction_date + + """column name""" + sanctioned_by_steam_id + + """column name""" + type +} + +input player_sanctions_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: player_sanctions_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_sanctions_set_input + + """filter the rows which have to be updated""" + where: player_sanctions_bool_exp! +} + +"""aggregate var_pop on columns""" +type player_sanctions_var_pop_fields { + player_steam_id: Float + sanctioned_by_steam_id: Float +} + +""" +order by var_pop() on columns of table "player_sanctions" +""" +input player_sanctions_var_pop_order_by { + player_steam_id: order_by + sanctioned_by_steam_id: order_by +} + +"""aggregate var_samp on columns""" +type player_sanctions_var_samp_fields { + player_steam_id: Float + sanctioned_by_steam_id: Float +} + +""" +order by var_samp() on columns of table "player_sanctions" +""" +input player_sanctions_var_samp_order_by { + player_steam_id: order_by + sanctioned_by_steam_id: order_by +} + +"""aggregate variance on columns""" +type player_sanctions_variance_fields { + player_steam_id: Float + sanctioned_by_steam_id: Float +} + +""" +order by variance() on columns of table "player_sanctions" +""" +input player_sanctions_variance_order_by { + player_steam_id: order_by + sanctioned_by_steam_id: order_by +} + +""" +columns and relationships of "player_season_stats" +""" +type player_season_stats { + assists: bigint! + deaths: bigint! + headshot_percentage: float8! + headshots: bigint! + kills: bigint! + + """An object relationship""" + player: players! + player_steam_id: bigint! + + """An object relationship""" + season: seasons! + season_id: uuid! +} + +""" +aggregated selection of "player_season_stats" +""" +type player_season_stats_aggregate { + aggregate: player_season_stats_aggregate_fields + nodes: [player_season_stats!]! +} + +input player_season_stats_aggregate_bool_exp { + avg: player_season_stats_aggregate_bool_exp_avg + corr: player_season_stats_aggregate_bool_exp_corr + count: player_season_stats_aggregate_bool_exp_count + covar_samp: player_season_stats_aggregate_bool_exp_covar_samp + max: player_season_stats_aggregate_bool_exp_max + min: player_season_stats_aggregate_bool_exp_min + stddev_samp: player_season_stats_aggregate_bool_exp_stddev_samp + sum: player_season_stats_aggregate_bool_exp_sum + var_samp: player_season_stats_aggregate_bool_exp_var_samp +} + +input player_season_stats_aggregate_bool_exp_avg { + arguments: player_season_stats_select_column_player_season_stats_aggregate_bool_exp_avg_arguments_columns! + distinct: Boolean + filter: player_season_stats_bool_exp + predicate: float8_comparison_exp! +} + +input player_season_stats_aggregate_bool_exp_corr { + arguments: player_season_stats_aggregate_bool_exp_corr_arguments! + distinct: Boolean + filter: player_season_stats_bool_exp + predicate: float8_comparison_exp! +} + +input player_season_stats_aggregate_bool_exp_corr_arguments { + X: player_season_stats_select_column_player_season_stats_aggregate_bool_exp_corr_arguments_columns! + Y: player_season_stats_select_column_player_season_stats_aggregate_bool_exp_corr_arguments_columns! +} + +input player_season_stats_aggregate_bool_exp_count { + arguments: [player_season_stats_select_column!] + distinct: Boolean + filter: player_season_stats_bool_exp + predicate: Int_comparison_exp! +} + +input player_season_stats_aggregate_bool_exp_covar_samp { + arguments: player_season_stats_aggregate_bool_exp_covar_samp_arguments! + distinct: Boolean + filter: player_season_stats_bool_exp + predicate: float8_comparison_exp! +} + +input player_season_stats_aggregate_bool_exp_covar_samp_arguments { + X: player_season_stats_select_column_player_season_stats_aggregate_bool_exp_covar_samp_arguments_columns! + Y: player_season_stats_select_column_player_season_stats_aggregate_bool_exp_covar_samp_arguments_columns! +} + +input player_season_stats_aggregate_bool_exp_max { + arguments: player_season_stats_select_column_player_season_stats_aggregate_bool_exp_max_arguments_columns! + distinct: Boolean + filter: player_season_stats_bool_exp + predicate: float8_comparison_exp! +} + +input player_season_stats_aggregate_bool_exp_min { + arguments: player_season_stats_select_column_player_season_stats_aggregate_bool_exp_min_arguments_columns! + distinct: Boolean + filter: player_season_stats_bool_exp + predicate: float8_comparison_exp! +} + +input player_season_stats_aggregate_bool_exp_stddev_samp { + arguments: player_season_stats_select_column_player_season_stats_aggregate_bool_exp_stddev_samp_arguments_columns! + distinct: Boolean + filter: player_season_stats_bool_exp + predicate: float8_comparison_exp! +} + +input player_season_stats_aggregate_bool_exp_sum { + arguments: player_season_stats_select_column_player_season_stats_aggregate_bool_exp_sum_arguments_columns! + distinct: Boolean + filter: player_season_stats_bool_exp + predicate: float8_comparison_exp! +} + +input player_season_stats_aggregate_bool_exp_var_samp { + arguments: player_season_stats_select_column_player_season_stats_aggregate_bool_exp_var_samp_arguments_columns! + distinct: Boolean + filter: player_season_stats_bool_exp + predicate: float8_comparison_exp! +} + +""" +aggregate fields of "player_season_stats" +""" +type player_season_stats_aggregate_fields { + avg: player_season_stats_avg_fields + count(columns: [player_season_stats_select_column!], distinct: Boolean): Int! + max: player_season_stats_max_fields + min: player_season_stats_min_fields + stddev: player_season_stats_stddev_fields + stddev_pop: player_season_stats_stddev_pop_fields + stddev_samp: player_season_stats_stddev_samp_fields + sum: player_season_stats_sum_fields + var_pop: player_season_stats_var_pop_fields + var_samp: player_season_stats_var_samp_fields + variance: player_season_stats_variance_fields +} + +""" +order by aggregate values of table "player_season_stats" +""" +input player_season_stats_aggregate_order_by { + avg: player_season_stats_avg_order_by + count: order_by + max: player_season_stats_max_order_by + min: player_season_stats_min_order_by + stddev: player_season_stats_stddev_order_by + stddev_pop: player_season_stats_stddev_pop_order_by + stddev_samp: player_season_stats_stddev_samp_order_by + sum: player_season_stats_sum_order_by + var_pop: player_season_stats_var_pop_order_by + var_samp: player_season_stats_var_samp_order_by + variance: player_season_stats_variance_order_by +} + +""" +input type for inserting array relation for remote table "player_season_stats" +""" +input player_season_stats_arr_rel_insert_input { + data: [player_season_stats_insert_input!]! + + """upsert condition""" + on_conflict: player_season_stats_on_conflict +} + +"""aggregate avg on columns""" +type player_season_stats_avg_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kills: Float + player_steam_id: Float +} + +""" +order by avg() on columns of table "player_season_stats" +""" +input player_season_stats_avg_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kills: order_by + player_steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "player_season_stats". All fields are combined with a logical 'AND'. +""" +input player_season_stats_bool_exp { + _and: [player_season_stats_bool_exp!] + _not: player_season_stats_bool_exp + _or: [player_season_stats_bool_exp!] + assists: bigint_comparison_exp + deaths: bigint_comparison_exp + headshot_percentage: float8_comparison_exp + headshots: bigint_comparison_exp + kills: bigint_comparison_exp + player: players_bool_exp + player_steam_id: bigint_comparison_exp + season: seasons_bool_exp + season_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "player_season_stats" +""" +enum player_season_stats_constraint { + """ + unique or primary key constraint on columns "player_steam_id", "season_id" + """ + player_season_stats_pkey +} + +""" +input type for incrementing numeric columns in table "player_season_stats" +""" +input player_season_stats_inc_input { + assists: bigint + deaths: bigint + headshot_percentage: float8 + headshots: bigint + kills: bigint + player_steam_id: bigint +} + +""" +input type for inserting data into table "player_season_stats" +""" +input player_season_stats_insert_input { + assists: bigint + deaths: bigint + headshot_percentage: float8 + headshots: bigint + kills: bigint + player: players_obj_rel_insert_input + player_steam_id: bigint + season: seasons_obj_rel_insert_input + season_id: uuid +} + +"""aggregate max on columns""" +type player_season_stats_max_fields { + assists: bigint + deaths: bigint + headshot_percentage: float8 + headshots: bigint + kills: bigint + player_steam_id: bigint + season_id: uuid +} + +""" +order by max() on columns of table "player_season_stats" +""" +input player_season_stats_max_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kills: order_by + player_steam_id: order_by + season_id: order_by +} + +"""aggregate min on columns""" +type player_season_stats_min_fields { + assists: bigint + deaths: bigint + headshot_percentage: float8 + headshots: bigint + kills: bigint + player_steam_id: bigint + season_id: uuid +} + +""" +order by min() on columns of table "player_season_stats" +""" +input player_season_stats_min_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kills: order_by + player_steam_id: order_by + season_id: order_by +} + +""" +response of any mutation on the table "player_season_stats" +""" +type player_season_stats_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [player_season_stats!]! +} + +""" +on_conflict condition type for table "player_season_stats" +""" +input player_season_stats_on_conflict { + constraint: player_season_stats_constraint! + update_columns: [player_season_stats_update_column!]! = [] + where: player_season_stats_bool_exp +} + +"""Ordering options when selecting data from "player_season_stats".""" +input player_season_stats_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kills: order_by + player: players_order_by + player_steam_id: order_by + season: seasons_order_by + season_id: order_by +} + +"""primary key columns input for table: player_season_stats""" +input player_season_stats_pk_columns_input { + player_steam_id: bigint! + season_id: uuid! +} + +""" +select columns of table "player_season_stats" +""" +enum player_season_stats_select_column { + """column name""" + assists + + """column name""" + deaths + + """column name""" + headshot_percentage + + """column name""" + headshots + + """column name""" + kills + + """column name""" + player_steam_id + + """column name""" + season_id +} + +""" +select "player_season_stats_aggregate_bool_exp_avg_arguments_columns" columns of table "player_season_stats" +""" +enum player_season_stats_select_column_player_season_stats_aggregate_bool_exp_avg_arguments_columns { + """column name""" + headshot_percentage +} + +""" +select "player_season_stats_aggregate_bool_exp_corr_arguments_columns" columns of table "player_season_stats" +""" +enum player_season_stats_select_column_player_season_stats_aggregate_bool_exp_corr_arguments_columns { + """column name""" + headshot_percentage +} + +""" +select "player_season_stats_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "player_season_stats" +""" +enum player_season_stats_select_column_player_season_stats_aggregate_bool_exp_covar_samp_arguments_columns { + """column name""" + headshot_percentage +} + +""" +select "player_season_stats_aggregate_bool_exp_max_arguments_columns" columns of table "player_season_stats" +""" +enum player_season_stats_select_column_player_season_stats_aggregate_bool_exp_max_arguments_columns { + """column name""" + headshot_percentage +} + +""" +select "player_season_stats_aggregate_bool_exp_min_arguments_columns" columns of table "player_season_stats" +""" +enum player_season_stats_select_column_player_season_stats_aggregate_bool_exp_min_arguments_columns { + """column name""" + headshot_percentage +} + +""" +select "player_season_stats_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "player_season_stats" +""" +enum player_season_stats_select_column_player_season_stats_aggregate_bool_exp_stddev_samp_arguments_columns { + """column name""" + headshot_percentage +} + +""" +select "player_season_stats_aggregate_bool_exp_sum_arguments_columns" columns of table "player_season_stats" +""" +enum player_season_stats_select_column_player_season_stats_aggregate_bool_exp_sum_arguments_columns { + """column name""" + headshot_percentage +} + +""" +select "player_season_stats_aggregate_bool_exp_var_samp_arguments_columns" columns of table "player_season_stats" +""" +enum player_season_stats_select_column_player_season_stats_aggregate_bool_exp_var_samp_arguments_columns { + """column name""" + headshot_percentage +} + +""" +input type for updating data in table "player_season_stats" +""" +input player_season_stats_set_input { + assists: bigint + deaths: bigint + headshot_percentage: float8 + headshots: bigint + kills: bigint + player_steam_id: bigint + season_id: uuid +} + +"""aggregate stddev on columns""" +type player_season_stats_stddev_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kills: Float + player_steam_id: Float +} + +""" +order by stddev() on columns of table "player_season_stats" +""" +input player_season_stats_stddev_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kills: order_by + player_steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type player_season_stats_stddev_pop_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kills: Float + player_steam_id: Float +} + +""" +order by stddev_pop() on columns of table "player_season_stats" +""" +input player_season_stats_stddev_pop_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kills: order_by + player_steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type player_season_stats_stddev_samp_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kills: Float + player_steam_id: Float +} + +""" +order by stddev_samp() on columns of table "player_season_stats" +""" +input player_season_stats_stddev_samp_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kills: order_by + player_steam_id: order_by +} + +""" +Streaming cursor of the table "player_season_stats" +""" +input player_season_stats_stream_cursor_input { + """Stream column input with initial value""" + initial_value: player_season_stats_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input player_season_stats_stream_cursor_value_input { + assists: bigint + deaths: bigint + headshot_percentage: float8 + headshots: bigint + kills: bigint + player_steam_id: bigint + season_id: uuid +} + +"""aggregate sum on columns""" +type player_season_stats_sum_fields { + assists: bigint + deaths: bigint + headshot_percentage: float8 + headshots: bigint + kills: bigint + player_steam_id: bigint +} + +""" +order by sum() on columns of table "player_season_stats" +""" +input player_season_stats_sum_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kills: order_by + player_steam_id: order_by +} + +""" +update columns of table "player_season_stats" +""" +enum player_season_stats_update_column { + """column name""" + assists + + """column name""" + deaths + + """column name""" + headshot_percentage + + """column name""" + headshots + + """column name""" + kills + + """column name""" + player_steam_id + + """column name""" + season_id +} + +input player_season_stats_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: player_season_stats_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_season_stats_set_input + + """filter the rows which have to be updated""" + where: player_season_stats_bool_exp! +} + +"""aggregate var_pop on columns""" +type player_season_stats_var_pop_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kills: Float + player_steam_id: Float +} + +""" +order by var_pop() on columns of table "player_season_stats" +""" +input player_season_stats_var_pop_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kills: order_by + player_steam_id: order_by +} + +"""aggregate var_samp on columns""" +type player_season_stats_var_samp_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kills: Float + player_steam_id: Float +} + +""" +order by var_samp() on columns of table "player_season_stats" +""" +input player_season_stats_var_samp_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kills: order_by + player_steam_id: order_by +} + +"""aggregate variance on columns""" +type player_season_stats_variance_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kills: Float + player_steam_id: Float +} + +""" +order by variance() on columns of table "player_season_stats" +""" +input player_season_stats_variance_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kills: order_by + player_steam_id: order_by +} + +""" +columns and relationships of "player_stats" +""" +type player_stats { + assists: bigint! + deaths: bigint! + headshot_percentage: float8! + headshots: bigint! + kills: bigint! + + """An object relationship""" + player: players! + player_steam_id: bigint! +} + +""" +aggregated selection of "player_stats" +""" +type player_stats_aggregate { + aggregate: player_stats_aggregate_fields + nodes: [player_stats!]! +} + +""" +aggregate fields of "player_stats" +""" +type player_stats_aggregate_fields { + avg: player_stats_avg_fields + count(columns: [player_stats_select_column!], distinct: Boolean): Int! + max: player_stats_max_fields + min: player_stats_min_fields + stddev: player_stats_stddev_fields + stddev_pop: player_stats_stddev_pop_fields + stddev_samp: player_stats_stddev_samp_fields + sum: player_stats_sum_fields + var_pop: player_stats_var_pop_fields + var_samp: player_stats_var_samp_fields + variance: player_stats_variance_fields +} + +"""aggregate avg on columns""" +type player_stats_avg_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kills: Float + player_steam_id: Float +} + +""" +Boolean expression to filter rows from the table "player_stats". All fields are combined with a logical 'AND'. +""" +input player_stats_bool_exp { + _and: [player_stats_bool_exp!] + _not: player_stats_bool_exp + _or: [player_stats_bool_exp!] + assists: bigint_comparison_exp + deaths: bigint_comparison_exp + headshot_percentage: float8_comparison_exp + headshots: bigint_comparison_exp + kills: bigint_comparison_exp + player: players_bool_exp + player_steam_id: bigint_comparison_exp +} + +""" +unique or primary key constraints on table "player_stats" +""" +enum player_stats_constraint { + """ + unique or primary key constraint on columns "player_steam_id" + """ + player_stats_pkey +} + +""" +input type for incrementing numeric columns in table "player_stats" +""" +input player_stats_inc_input { + assists: bigint + deaths: bigint + headshot_percentage: float8 + headshots: bigint + kills: bigint + player_steam_id: bigint +} + +""" +input type for inserting data into table "player_stats" +""" +input player_stats_insert_input { + assists: bigint + deaths: bigint + headshot_percentage: float8 + headshots: bigint + kills: bigint + player: players_obj_rel_insert_input + player_steam_id: bigint +} + +"""aggregate max on columns""" +type player_stats_max_fields { + assists: bigint + deaths: bigint + headshot_percentage: float8 + headshots: bigint + kills: bigint + player_steam_id: bigint +} + +"""aggregate min on columns""" +type player_stats_min_fields { + assists: bigint + deaths: bigint + headshot_percentage: float8 + headshots: bigint + kills: bigint + player_steam_id: bigint +} + +""" +response of any mutation on the table "player_stats" +""" +type player_stats_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [player_stats!]! +} + +""" +input type for inserting object relation for remote table "player_stats" +""" +input player_stats_obj_rel_insert_input { + data: player_stats_insert_input! + + """upsert condition""" + on_conflict: player_stats_on_conflict +} + +""" +on_conflict condition type for table "player_stats" +""" +input player_stats_on_conflict { + constraint: player_stats_constraint! + update_columns: [player_stats_update_column!]! = [] + where: player_stats_bool_exp +} + +"""Ordering options when selecting data from "player_stats".""" +input player_stats_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kills: order_by + player: players_order_by + player_steam_id: order_by +} + +"""primary key columns input for table: player_stats""" +input player_stats_pk_columns_input { + player_steam_id: bigint! +} + +""" +select columns of table "player_stats" +""" +enum player_stats_select_column { + """column name""" + assists + + """column name""" + deaths + + """column name""" + headshot_percentage + + """column name""" + headshots + + """column name""" + kills + + """column name""" + player_steam_id +} + +""" +input type for updating data in table "player_stats" +""" +input player_stats_set_input { + assists: bigint + deaths: bigint + headshot_percentage: float8 + headshots: bigint + kills: bigint + player_steam_id: bigint +} + +"""aggregate stddev on columns""" +type player_stats_stddev_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kills: Float + player_steam_id: Float +} + +"""aggregate stddev_pop on columns""" +type player_stats_stddev_pop_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kills: Float + player_steam_id: Float +} + +"""aggregate stddev_samp on columns""" +type player_stats_stddev_samp_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kills: Float + player_steam_id: Float +} + +""" +Streaming cursor of the table "player_stats" +""" +input player_stats_stream_cursor_input { + """Stream column input with initial value""" + initial_value: player_stats_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input player_stats_stream_cursor_value_input { + assists: bigint + deaths: bigint + headshot_percentage: float8 + headshots: bigint + kills: bigint + player_steam_id: bigint +} + +"""aggregate sum on columns""" +type player_stats_sum_fields { + assists: bigint + deaths: bigint + headshot_percentage: float8 + headshots: bigint + kills: bigint + player_steam_id: bigint +} + +""" +update columns of table "player_stats" +""" +enum player_stats_update_column { + """column name""" + assists + + """column name""" + deaths + + """column name""" + headshot_percentage + + """column name""" + headshots + + """column name""" + kills + + """column name""" + player_steam_id +} + +input player_stats_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: player_stats_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_stats_set_input + + """filter the rows which have to be updated""" + where: player_stats_bool_exp! +} + +"""aggregate var_pop on columns""" +type player_stats_var_pop_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kills: Float + player_steam_id: Float +} + +"""aggregate var_samp on columns""" +type player_stats_var_samp_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kills: Float + player_steam_id: Float +} + +"""aggregate variance on columns""" +type player_stats_variance_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kills: Float + player_steam_id: Float +} + +""" +columns and relationships of "player_steam_bot_friend" +""" +type player_steam_bot_friend { + bot_steam_account_id: uuid + bot_steamid64: bigint + created_at: timestamptz! + friended_at: timestamptz + last_presence_state( + """JSON select path""" + path: String + ): jsonb + + """An object relationship""" + player: players! + status: String! + steam_id: bigint! + updated_at: timestamptz! +} + +""" +aggregated selection of "player_steam_bot_friend" +""" +type player_steam_bot_friend_aggregate { + aggregate: player_steam_bot_friend_aggregate_fields + nodes: [player_steam_bot_friend!]! +} + +""" +aggregate fields of "player_steam_bot_friend" +""" +type player_steam_bot_friend_aggregate_fields { + avg: player_steam_bot_friend_avg_fields + count(columns: [player_steam_bot_friend_select_column!], distinct: Boolean): Int! + max: player_steam_bot_friend_max_fields + min: player_steam_bot_friend_min_fields + stddev: player_steam_bot_friend_stddev_fields + stddev_pop: player_steam_bot_friend_stddev_pop_fields + stddev_samp: player_steam_bot_friend_stddev_samp_fields + sum: player_steam_bot_friend_sum_fields + var_pop: player_steam_bot_friend_var_pop_fields + var_samp: player_steam_bot_friend_var_samp_fields + variance: player_steam_bot_friend_variance_fields +} + +"""append existing jsonb value of filtered columns with new jsonb value""" +input player_steam_bot_friend_append_input { + last_presence_state: jsonb +} + +"""aggregate avg on columns""" +type player_steam_bot_friend_avg_fields { + bot_steamid64: Float + steam_id: Float +} + +""" +Boolean expression to filter rows from the table "player_steam_bot_friend". All fields are combined with a logical 'AND'. +""" +input player_steam_bot_friend_bool_exp { + _and: [player_steam_bot_friend_bool_exp!] + _not: player_steam_bot_friend_bool_exp + _or: [player_steam_bot_friend_bool_exp!] + bot_steam_account_id: uuid_comparison_exp + bot_steamid64: bigint_comparison_exp + created_at: timestamptz_comparison_exp + friended_at: timestamptz_comparison_exp + last_presence_state: jsonb_comparison_exp + player: players_bool_exp + status: String_comparison_exp + steam_id: bigint_comparison_exp + updated_at: timestamptz_comparison_exp +} + +""" +unique or primary key constraints on table "player_steam_bot_friend" +""" +enum player_steam_bot_friend_constraint { + """ + unique or primary key constraint on columns "steam_id" + """ + player_steam_bot_friend_pkey +} + +""" +delete the field or element with specified path (for JSON arrays, negative integers count from the end) +""" +input player_steam_bot_friend_delete_at_path_input { + last_presence_state: [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 player_steam_bot_friend_delete_elem_input { + last_presence_state: Int +} + +""" +delete key/value pair or string element. key/value pairs are matched based on their key value +""" +input player_steam_bot_friend_delete_key_input { + last_presence_state: String +} + +""" +input type for incrementing numeric columns in table "player_steam_bot_friend" +""" +input player_steam_bot_friend_inc_input { + bot_steamid64: bigint + steam_id: bigint +} + +""" +input type for inserting data into table "player_steam_bot_friend" +""" +input player_steam_bot_friend_insert_input { + bot_steam_account_id: uuid + bot_steamid64: bigint + created_at: timestamptz + friended_at: timestamptz + last_presence_state: jsonb + player: players_obj_rel_insert_input + status: String + steam_id: bigint + updated_at: timestamptz +} + +"""aggregate max on columns""" +type player_steam_bot_friend_max_fields { + bot_steam_account_id: uuid + bot_steamid64: bigint + created_at: timestamptz + friended_at: timestamptz + status: String + steam_id: bigint + updated_at: timestamptz +} + +"""aggregate min on columns""" +type player_steam_bot_friend_min_fields { + bot_steam_account_id: uuid + bot_steamid64: bigint + created_at: timestamptz + friended_at: timestamptz + status: String + steam_id: bigint + updated_at: timestamptz +} + +""" +response of any mutation on the table "player_steam_bot_friend" +""" +type player_steam_bot_friend_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [player_steam_bot_friend!]! +} + +""" +on_conflict condition type for table "player_steam_bot_friend" +""" +input player_steam_bot_friend_on_conflict { + constraint: player_steam_bot_friend_constraint! + update_columns: [player_steam_bot_friend_update_column!]! = [] + where: player_steam_bot_friend_bool_exp +} + +"""Ordering options when selecting data from "player_steam_bot_friend".""" +input player_steam_bot_friend_order_by { + bot_steam_account_id: order_by + bot_steamid64: order_by + created_at: order_by + friended_at: order_by + last_presence_state: order_by + player: players_order_by + status: order_by + steam_id: order_by + updated_at: order_by +} + +"""primary key columns input for table: player_steam_bot_friend""" +input player_steam_bot_friend_pk_columns_input { + steam_id: bigint! +} + +"""prepend existing jsonb value of filtered columns with new jsonb value""" +input player_steam_bot_friend_prepend_input { + last_presence_state: jsonb +} + +""" +select columns of table "player_steam_bot_friend" +""" +enum player_steam_bot_friend_select_column { + """column name""" + bot_steam_account_id + + """column name""" + bot_steamid64 + + """column name""" + created_at + + """column name""" + friended_at + + """column name""" + last_presence_state + + """column name""" + status + + """column name""" + steam_id + + """column name""" + updated_at +} + +""" +input type for updating data in table "player_steam_bot_friend" +""" +input player_steam_bot_friend_set_input { + bot_steam_account_id: uuid + bot_steamid64: bigint + created_at: timestamptz + friended_at: timestamptz + last_presence_state: jsonb + status: String + steam_id: bigint + updated_at: timestamptz +} + +"""aggregate stddev on columns""" +type player_steam_bot_friend_stddev_fields { + bot_steamid64: Float + steam_id: Float +} + +"""aggregate stddev_pop on columns""" +type player_steam_bot_friend_stddev_pop_fields { + bot_steamid64: Float + steam_id: Float +} + +"""aggregate stddev_samp on columns""" +type player_steam_bot_friend_stddev_samp_fields { + bot_steamid64: Float + steam_id: Float +} + +""" +Streaming cursor of the table "player_steam_bot_friend" +""" +input player_steam_bot_friend_stream_cursor_input { + """Stream column input with initial value""" + initial_value: player_steam_bot_friend_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input player_steam_bot_friend_stream_cursor_value_input { + bot_steam_account_id: uuid + bot_steamid64: bigint + created_at: timestamptz + friended_at: timestamptz + last_presence_state: jsonb + status: String + steam_id: bigint + updated_at: timestamptz +} + +"""aggregate sum on columns""" +type player_steam_bot_friend_sum_fields { + bot_steamid64: bigint + steam_id: bigint +} + +""" +update columns of table "player_steam_bot_friend" +""" +enum player_steam_bot_friend_update_column { + """column name""" + bot_steam_account_id + + """column name""" + bot_steamid64 + + """column name""" + created_at + + """column name""" + friended_at + + """column name""" + last_presence_state + + """column name""" + status + + """column name""" + steam_id + + """column name""" + updated_at +} + +input player_steam_bot_friend_updates { + """append existing jsonb value of filtered columns with new jsonb value""" + _append: player_steam_bot_friend_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: player_steam_bot_friend_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: player_steam_bot_friend_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: player_steam_bot_friend_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: player_steam_bot_friend_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: player_steam_bot_friend_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: player_steam_bot_friend_set_input + + """filter the rows which have to be updated""" + where: player_steam_bot_friend_bool_exp! +} + +"""aggregate var_pop on columns""" +type player_steam_bot_friend_var_pop_fields { + bot_steamid64: Float + steam_id: Float +} + +"""aggregate var_samp on columns""" +type player_steam_bot_friend_var_samp_fields { + bot_steamid64: Float + steam_id: Float +} + +"""aggregate variance on columns""" +type player_steam_bot_friend_variance_fields { + bot_steamid64: Float + steam_id: Float +} + +""" +columns and relationships of "player_steam_match_auth" +""" +type player_steam_match_auth { + auth_code: String! + created_at: timestamptz! + last_error: String + last_known_share_code: String! + last_polled_at: timestamptz + + """An object relationship""" + player: players! + steam_id: bigint! + updated_at: timestamptz! +} + +""" +aggregated selection of "player_steam_match_auth" +""" +type player_steam_match_auth_aggregate { + aggregate: player_steam_match_auth_aggregate_fields + nodes: [player_steam_match_auth!]! +} + +""" +aggregate fields of "player_steam_match_auth" +""" +type player_steam_match_auth_aggregate_fields { + avg: player_steam_match_auth_avg_fields + count(columns: [player_steam_match_auth_select_column!], distinct: Boolean): Int! + max: player_steam_match_auth_max_fields + min: player_steam_match_auth_min_fields + stddev: player_steam_match_auth_stddev_fields + stddev_pop: player_steam_match_auth_stddev_pop_fields + stddev_samp: player_steam_match_auth_stddev_samp_fields + sum: player_steam_match_auth_sum_fields + var_pop: player_steam_match_auth_var_pop_fields + var_samp: player_steam_match_auth_var_samp_fields + variance: player_steam_match_auth_variance_fields +} + +"""aggregate avg on columns""" +type player_steam_match_auth_avg_fields { + steam_id: Float +} + +""" +Boolean expression to filter rows from the table "player_steam_match_auth". All fields are combined with a logical 'AND'. +""" +input player_steam_match_auth_bool_exp { + _and: [player_steam_match_auth_bool_exp!] + _not: player_steam_match_auth_bool_exp + _or: [player_steam_match_auth_bool_exp!] + auth_code: String_comparison_exp + created_at: timestamptz_comparison_exp + last_error: String_comparison_exp + last_known_share_code: String_comparison_exp + last_polled_at: timestamptz_comparison_exp + player: players_bool_exp + steam_id: bigint_comparison_exp + updated_at: timestamptz_comparison_exp +} + +""" +unique or primary key constraints on table "player_steam_match_auth" +""" +enum player_steam_match_auth_constraint { + """ + unique or primary key constraint on columns "steam_id" + """ + player_steam_match_auth_pkey +} + +""" +input type for incrementing numeric columns in table "player_steam_match_auth" +""" +input player_steam_match_auth_inc_input { + steam_id: bigint +} + +""" +input type for inserting data into table "player_steam_match_auth" +""" +input player_steam_match_auth_insert_input { + auth_code: String + created_at: timestamptz + last_error: String + last_known_share_code: String + last_polled_at: timestamptz + player: players_obj_rel_insert_input + steam_id: bigint + updated_at: timestamptz +} + +"""aggregate max on columns""" +type player_steam_match_auth_max_fields { + auth_code: String + created_at: timestamptz + last_error: String + last_known_share_code: String + last_polled_at: timestamptz + steam_id: bigint + updated_at: timestamptz +} + +"""aggregate min on columns""" +type player_steam_match_auth_min_fields { + auth_code: String + created_at: timestamptz + last_error: String + last_known_share_code: String + last_polled_at: timestamptz + steam_id: bigint + updated_at: timestamptz +} + +""" +response of any mutation on the table "player_steam_match_auth" +""" +type player_steam_match_auth_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [player_steam_match_auth!]! +} + +""" +on_conflict condition type for table "player_steam_match_auth" +""" +input player_steam_match_auth_on_conflict { + constraint: player_steam_match_auth_constraint! + update_columns: [player_steam_match_auth_update_column!]! = [] + where: player_steam_match_auth_bool_exp +} + +"""Ordering options when selecting data from "player_steam_match_auth".""" +input player_steam_match_auth_order_by { + auth_code: order_by + created_at: order_by + last_error: order_by + last_known_share_code: order_by + last_polled_at: order_by + player: players_order_by + steam_id: order_by + updated_at: order_by +} + +"""primary key columns input for table: player_steam_match_auth""" +input player_steam_match_auth_pk_columns_input { + steam_id: bigint! +} + +""" +select columns of table "player_steam_match_auth" +""" +enum player_steam_match_auth_select_column { + """column name""" + auth_code + + """column name""" + created_at + + """column name""" + last_error + + """column name""" + last_known_share_code + + """column name""" + last_polled_at + + """column name""" + steam_id + + """column name""" + updated_at +} + +""" +input type for updating data in table "player_steam_match_auth" +""" +input player_steam_match_auth_set_input { + auth_code: String + created_at: timestamptz + last_error: String + last_known_share_code: String + last_polled_at: timestamptz + steam_id: bigint + updated_at: timestamptz +} + +"""aggregate stddev on columns""" +type player_steam_match_auth_stddev_fields { + steam_id: Float +} + +"""aggregate stddev_pop on columns""" +type player_steam_match_auth_stddev_pop_fields { + steam_id: Float +} + +"""aggregate stddev_samp on columns""" +type player_steam_match_auth_stddev_samp_fields { + steam_id: Float +} + +""" +Streaming cursor of the table "player_steam_match_auth" +""" +input player_steam_match_auth_stream_cursor_input { + """Stream column input with initial value""" + initial_value: player_steam_match_auth_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input player_steam_match_auth_stream_cursor_value_input { + auth_code: String + created_at: timestamptz + last_error: String + last_known_share_code: String + last_polled_at: timestamptz + steam_id: bigint + updated_at: timestamptz +} + +"""aggregate sum on columns""" +type player_steam_match_auth_sum_fields { + steam_id: bigint +} + +""" +update columns of table "player_steam_match_auth" +""" +enum player_steam_match_auth_update_column { + """column name""" + auth_code + + """column name""" + created_at + + """column name""" + last_error + + """column name""" + last_known_share_code + + """column name""" + last_polled_at + + """column name""" + steam_id + + """column name""" + updated_at +} + +input player_steam_match_auth_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: player_steam_match_auth_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_steam_match_auth_set_input + + """filter the rows which have to be updated""" + where: player_steam_match_auth_bool_exp! +} + +"""aggregate var_pop on columns""" +type player_steam_match_auth_var_pop_fields { + steam_id: Float +} + +"""aggregate var_samp on columns""" +type player_steam_match_auth_var_samp_fields { + steam_id: Float +} + +"""aggregate variance on columns""" +type player_steam_match_auth_variance_fields { + steam_id: Float +} + +""" +columns and relationships of "player_unused_utility" +""" +type player_unused_utility { + deleted_at: timestamptz + + """An object relationship""" + match: matches! + match_id: uuid! + + """An object relationship""" + match_map: match_maps! + match_map_id: uuid! + + """An object relationship""" + player: players! + player_steam_id: bigint! + round: Int! + unused: Int! +} + +""" +aggregated selection of "player_unused_utility" +""" +type player_unused_utility_aggregate { + aggregate: player_unused_utility_aggregate_fields + nodes: [player_unused_utility!]! +} + +input player_unused_utility_aggregate_bool_exp { + count: player_unused_utility_aggregate_bool_exp_count +} + +input player_unused_utility_aggregate_bool_exp_count { + arguments: [player_unused_utility_select_column!] + distinct: Boolean + filter: player_unused_utility_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "player_unused_utility" +""" +type player_unused_utility_aggregate_fields { + avg: player_unused_utility_avg_fields + count(columns: [player_unused_utility_select_column!], distinct: Boolean): Int! + max: player_unused_utility_max_fields + min: player_unused_utility_min_fields + stddev: player_unused_utility_stddev_fields + stddev_pop: player_unused_utility_stddev_pop_fields + stddev_samp: player_unused_utility_stddev_samp_fields + sum: player_unused_utility_sum_fields + var_pop: player_unused_utility_var_pop_fields + var_samp: player_unused_utility_var_samp_fields + variance: player_unused_utility_variance_fields +} + +""" +order by aggregate values of table "player_unused_utility" +""" +input player_unused_utility_aggregate_order_by { + avg: player_unused_utility_avg_order_by + count: order_by + max: player_unused_utility_max_order_by + min: player_unused_utility_min_order_by + stddev: player_unused_utility_stddev_order_by + stddev_pop: player_unused_utility_stddev_pop_order_by + stddev_samp: player_unused_utility_stddev_samp_order_by + sum: player_unused_utility_sum_order_by + var_pop: player_unused_utility_var_pop_order_by + var_samp: player_unused_utility_var_samp_order_by + variance: player_unused_utility_variance_order_by +} + +""" +input type for inserting array relation for remote table "player_unused_utility" +""" +input player_unused_utility_arr_rel_insert_input { + data: [player_unused_utility_insert_input!]! + + """upsert condition""" + on_conflict: player_unused_utility_on_conflict +} + +"""aggregate avg on columns""" +type player_unused_utility_avg_fields { + player_steam_id: Float + round: Float + unused: Float +} + +""" +order by avg() on columns of table "player_unused_utility" +""" +input player_unused_utility_avg_order_by { + player_steam_id: order_by + round: order_by + unused: order_by +} + +""" +Boolean expression to filter rows from the table "player_unused_utility". All fields are combined with a logical 'AND'. +""" +input player_unused_utility_bool_exp { + _and: [player_unused_utility_bool_exp!] + _not: player_unused_utility_bool_exp + _or: [player_unused_utility_bool_exp!] + deleted_at: timestamptz_comparison_exp + match: matches_bool_exp + match_id: uuid_comparison_exp + match_map: match_maps_bool_exp + match_map_id: uuid_comparison_exp + player: players_bool_exp + player_steam_id: bigint_comparison_exp + round: Int_comparison_exp + unused: Int_comparison_exp +} + +""" +unique or primary key constraints on table "player_unused_utility" +""" +enum player_unused_utility_constraint { + """ + unique or primary key constraint on columns "player_steam_id", "match_map_id" + """ + player_unused_utility_pkey +} + +""" +input type for incrementing numeric columns in table "player_unused_utility" +""" +input player_unused_utility_inc_input { + player_steam_id: bigint + round: Int + unused: Int +} + +""" +input type for inserting data into table "player_unused_utility" +""" +input player_unused_utility_insert_input { + deleted_at: timestamptz + match: matches_obj_rel_insert_input + match_id: uuid + match_map: match_maps_obj_rel_insert_input + match_map_id: uuid + player: players_obj_rel_insert_input + player_steam_id: bigint + round: Int + unused: Int +} + +"""aggregate max on columns""" +type player_unused_utility_max_fields { + deleted_at: timestamptz + match_id: uuid + match_map_id: uuid + player_steam_id: bigint + round: Int + unused: Int +} + +""" +order by max() on columns of table "player_unused_utility" +""" +input player_unused_utility_max_order_by { + deleted_at: order_by + match_id: order_by + match_map_id: order_by + player_steam_id: order_by + round: order_by + unused: order_by +} + +"""aggregate min on columns""" +type player_unused_utility_min_fields { + deleted_at: timestamptz + match_id: uuid + match_map_id: uuid + player_steam_id: bigint + round: Int + unused: Int +} + +""" +order by min() on columns of table "player_unused_utility" +""" +input player_unused_utility_min_order_by { + deleted_at: order_by + match_id: order_by + match_map_id: order_by + player_steam_id: order_by + round: order_by + unused: order_by +} + +""" +response of any mutation on the table "player_unused_utility" +""" +type player_unused_utility_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [player_unused_utility!]! +} + +""" +on_conflict condition type for table "player_unused_utility" +""" +input player_unused_utility_on_conflict { + constraint: player_unused_utility_constraint! + update_columns: [player_unused_utility_update_column!]! = [] + where: player_unused_utility_bool_exp +} + +"""Ordering options when selecting data from "player_unused_utility".""" +input player_unused_utility_order_by { + deleted_at: order_by + match: matches_order_by + match_id: order_by + match_map: match_maps_order_by + match_map_id: order_by + player: players_order_by + player_steam_id: order_by + round: order_by + unused: order_by +} + +"""primary key columns input for table: player_unused_utility""" +input player_unused_utility_pk_columns_input { + match_map_id: uuid! + player_steam_id: bigint! +} + +""" +select columns of table "player_unused_utility" +""" +enum player_unused_utility_select_column { + """column name""" + deleted_at + + """column name""" + match_id + + """column name""" + match_map_id + + """column name""" + player_steam_id + + """column name""" + round + + """column name""" + unused +} + +""" +input type for updating data in table "player_unused_utility" +""" +input player_unused_utility_set_input { + deleted_at: timestamptz + match_id: uuid + match_map_id: uuid + player_steam_id: bigint + round: Int + unused: Int +} + +"""aggregate stddev on columns""" +type player_unused_utility_stddev_fields { + player_steam_id: Float + round: Float + unused: Float +} + +""" +order by stddev() on columns of table "player_unused_utility" +""" +input player_unused_utility_stddev_order_by { + player_steam_id: order_by + round: order_by + unused: order_by +} + +"""aggregate stddev_pop on columns""" +type player_unused_utility_stddev_pop_fields { + player_steam_id: Float + round: Float + unused: Float +} + +""" +order by stddev_pop() on columns of table "player_unused_utility" +""" +input player_unused_utility_stddev_pop_order_by { + player_steam_id: order_by + round: order_by + unused: order_by +} + +"""aggregate stddev_samp on columns""" +type player_unused_utility_stddev_samp_fields { + player_steam_id: Float + round: Float + unused: Float +} + +""" +order by stddev_samp() on columns of table "player_unused_utility" +""" +input player_unused_utility_stddev_samp_order_by { + player_steam_id: order_by + round: order_by + unused: order_by +} + +""" +Streaming cursor of the table "player_unused_utility" +""" +input player_unused_utility_stream_cursor_input { + """Stream column input with initial value""" + initial_value: player_unused_utility_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input player_unused_utility_stream_cursor_value_input { + deleted_at: timestamptz + match_id: uuid + match_map_id: uuid + player_steam_id: bigint + round: Int + unused: Int +} + +"""aggregate sum on columns""" +type player_unused_utility_sum_fields { + player_steam_id: bigint + round: Int + unused: Int +} + +""" +order by sum() on columns of table "player_unused_utility" +""" +input player_unused_utility_sum_order_by { + player_steam_id: order_by + round: order_by + unused: order_by +} + +""" +update columns of table "player_unused_utility" +""" +enum player_unused_utility_update_column { + """column name""" + deleted_at + + """column name""" + match_id + + """column name""" + match_map_id + + """column name""" + player_steam_id + + """column name""" + round + + """column name""" + unused +} + +input player_unused_utility_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: player_unused_utility_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_unused_utility_set_input + + """filter the rows which have to be updated""" + where: player_unused_utility_bool_exp! +} + +"""aggregate var_pop on columns""" +type player_unused_utility_var_pop_fields { + player_steam_id: Float + round: Float + unused: Float +} + +""" +order by var_pop() on columns of table "player_unused_utility" +""" +input player_unused_utility_var_pop_order_by { + player_steam_id: order_by + round: order_by + unused: order_by +} + +"""aggregate var_samp on columns""" +type player_unused_utility_var_samp_fields { + player_steam_id: Float + round: Float + unused: Float +} + +""" +order by var_samp() on columns of table "player_unused_utility" +""" +input player_unused_utility_var_samp_order_by { + player_steam_id: order_by + round: order_by + unused: order_by +} + +"""aggregate variance on columns""" +type player_unused_utility_variance_fields { + player_steam_id: Float + round: Float + unused: Float +} + +""" +order by variance() on columns of table "player_unused_utility" +""" +input player_unused_utility_variance_order_by { + player_steam_id: order_by + round: order_by + unused: order_by +} + +""" +columns and relationships of "player_utility" +""" +type player_utility { + attacker_location_coordinates: String + attacker_steam_id: bigint! + deleted_at: timestamptz + + """An object relationship""" + match: matches! + match_id: uuid! + + """An object relationship""" + match_map: match_maps! + match_map_id: uuid! + + """An object relationship""" + player: players! + round: Int! + time: timestamptz! + type: e_utility_types_enum! +} + +""" +aggregated selection of "player_utility" +""" +type player_utility_aggregate { + aggregate: player_utility_aggregate_fields + nodes: [player_utility!]! +} + +input player_utility_aggregate_bool_exp { + count: player_utility_aggregate_bool_exp_count +} + +input player_utility_aggregate_bool_exp_count { + arguments: [player_utility_select_column!] + distinct: Boolean + filter: player_utility_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "player_utility" +""" +type player_utility_aggregate_fields { + avg: player_utility_avg_fields + count(columns: [player_utility_select_column!], distinct: Boolean): Int! + max: player_utility_max_fields + min: player_utility_min_fields + stddev: player_utility_stddev_fields + stddev_pop: player_utility_stddev_pop_fields + stddev_samp: player_utility_stddev_samp_fields + sum: player_utility_sum_fields + var_pop: player_utility_var_pop_fields + var_samp: player_utility_var_samp_fields + variance: player_utility_variance_fields +} + +""" +order by aggregate values of table "player_utility" +""" +input player_utility_aggregate_order_by { + avg: player_utility_avg_order_by + count: order_by + max: player_utility_max_order_by + min: player_utility_min_order_by + stddev: player_utility_stddev_order_by + stddev_pop: player_utility_stddev_pop_order_by + stddev_samp: player_utility_stddev_samp_order_by + sum: player_utility_sum_order_by + var_pop: player_utility_var_pop_order_by + var_samp: player_utility_var_samp_order_by + variance: player_utility_variance_order_by +} + +""" +input type for inserting array relation for remote table "player_utility" +""" +input player_utility_arr_rel_insert_input { + data: [player_utility_insert_input!]! + + """upsert condition""" + on_conflict: player_utility_on_conflict +} + +"""aggregate avg on columns""" +type player_utility_avg_fields { + attacker_steam_id: Float + round: Float +} + +""" +order by avg() on columns of table "player_utility" +""" +input player_utility_avg_order_by { + attacker_steam_id: order_by + round: order_by +} + +""" +Boolean expression to filter rows from the table "player_utility". All fields are combined with a logical 'AND'. +""" +input player_utility_bool_exp { + _and: [player_utility_bool_exp!] + _not: player_utility_bool_exp + _or: [player_utility_bool_exp!] + attacker_location_coordinates: String_comparison_exp + attacker_steam_id: bigint_comparison_exp + deleted_at: timestamptz_comparison_exp + match: matches_bool_exp + match_id: uuid_comparison_exp + match_map: match_maps_bool_exp + match_map_id: uuid_comparison_exp + player: players_bool_exp + round: Int_comparison_exp + time: timestamptz_comparison_exp + type: e_utility_types_enum_comparison_exp +} + +""" +unique or primary key constraints on table "player_utility" +""" +enum player_utility_constraint { + """ + unique or primary key constraint on columns "attacker_steam_id", "time", "match_map_id" + """ + player_utility_pkey +} + +""" +input type for incrementing numeric columns in table "player_utility" +""" +input player_utility_inc_input { + attacker_steam_id: bigint + round: Int +} + +""" +input type for inserting data into table "player_utility" +""" +input player_utility_insert_input { + attacker_location_coordinates: String + attacker_steam_id: bigint + deleted_at: timestamptz + match: matches_obj_rel_insert_input + match_id: uuid + match_map: match_maps_obj_rel_insert_input + match_map_id: uuid + player: players_obj_rel_insert_input + round: Int + time: timestamptz + type: e_utility_types_enum +} + +"""aggregate max on columns""" +type player_utility_max_fields { + attacker_location_coordinates: String + attacker_steam_id: bigint + deleted_at: timestamptz + match_id: uuid + match_map_id: uuid + round: Int + time: timestamptz +} + +""" +order by max() on columns of table "player_utility" +""" +input player_utility_max_order_by { + attacker_location_coordinates: order_by + attacker_steam_id: order_by + deleted_at: order_by + match_id: order_by + match_map_id: order_by + round: order_by + time: order_by +} + +"""aggregate min on columns""" +type player_utility_min_fields { + attacker_location_coordinates: String + attacker_steam_id: bigint + deleted_at: timestamptz + match_id: uuid + match_map_id: uuid + round: Int + time: timestamptz +} + +""" +order by min() on columns of table "player_utility" +""" +input player_utility_min_order_by { + attacker_location_coordinates: order_by + attacker_steam_id: order_by + deleted_at: order_by + match_id: order_by + match_map_id: order_by + round: order_by + time: order_by +} + +""" +response of any mutation on the table "player_utility" +""" +type player_utility_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [player_utility!]! +} + +""" +on_conflict condition type for table "player_utility" +""" +input player_utility_on_conflict { + constraint: player_utility_constraint! + update_columns: [player_utility_update_column!]! = [] + where: player_utility_bool_exp +} + +"""Ordering options when selecting data from "player_utility".""" +input player_utility_order_by { + attacker_location_coordinates: order_by + attacker_steam_id: order_by + deleted_at: order_by + match: matches_order_by + match_id: order_by + match_map: match_maps_order_by + match_map_id: order_by + player: players_order_by + round: order_by + time: order_by + type: order_by +} + +"""primary key columns input for table: player_utility""" +input player_utility_pk_columns_input { + attacker_steam_id: bigint! + match_map_id: uuid! + time: timestamptz! +} + +""" +select columns of table "player_utility" +""" +enum player_utility_select_column { + """column name""" + attacker_location_coordinates + + """column name""" + attacker_steam_id + + """column name""" + deleted_at + + """column name""" + match_id + + """column name""" + match_map_id + + """column name""" + round + + """column name""" + time + + """column name""" + type +} + +""" +input type for updating data in table "player_utility" +""" +input player_utility_set_input { + attacker_location_coordinates: String + attacker_steam_id: bigint + deleted_at: timestamptz + match_id: uuid + match_map_id: uuid + round: Int + time: timestamptz + type: e_utility_types_enum +} + +"""aggregate stddev on columns""" +type player_utility_stddev_fields { + attacker_steam_id: Float + round: Float +} + +""" +order by stddev() on columns of table "player_utility" +""" +input player_utility_stddev_order_by { + attacker_steam_id: order_by + round: order_by +} + +"""aggregate stddev_pop on columns""" +type player_utility_stddev_pop_fields { + attacker_steam_id: Float + round: Float +} + +""" +order by stddev_pop() on columns of table "player_utility" +""" +input player_utility_stddev_pop_order_by { + attacker_steam_id: order_by + round: order_by +} + +"""aggregate stddev_samp on columns""" +type player_utility_stddev_samp_fields { + attacker_steam_id: Float + round: Float +} + +""" +order by stddev_samp() on columns of table "player_utility" +""" +input player_utility_stddev_samp_order_by { + attacker_steam_id: order_by + round: order_by +} + +""" +Streaming cursor of the table "player_utility" +""" +input player_utility_stream_cursor_input { + """Stream column input with initial value""" + initial_value: player_utility_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input player_utility_stream_cursor_value_input { + attacker_location_coordinates: String + attacker_steam_id: bigint + deleted_at: timestamptz + match_id: uuid + match_map_id: uuid + round: Int + time: timestamptz + type: e_utility_types_enum +} + +"""aggregate sum on columns""" +type player_utility_sum_fields { + attacker_steam_id: bigint + round: Int +} + +""" +order by sum() on columns of table "player_utility" +""" +input player_utility_sum_order_by { + attacker_steam_id: order_by + round: order_by +} + +""" +update columns of table "player_utility" +""" +enum player_utility_update_column { + """column name""" + attacker_location_coordinates + + """column name""" + attacker_steam_id + + """column name""" + deleted_at + + """column name""" + match_id + + """column name""" + match_map_id + + """column name""" + round + + """column name""" + time + + """column name""" + type +} + +input player_utility_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: player_utility_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: player_utility_set_input + + """filter the rows which have to be updated""" + where: player_utility_bool_exp! +} + +"""aggregate var_pop on columns""" +type player_utility_var_pop_fields { + attacker_steam_id: Float + round: Float +} + +""" +order by var_pop() on columns of table "player_utility" +""" +input player_utility_var_pop_order_by { + attacker_steam_id: order_by + round: order_by +} + +"""aggregate var_samp on columns""" +type player_utility_var_samp_fields { + attacker_steam_id: Float + round: Float +} + +""" +order by var_samp() on columns of table "player_utility" +""" +input player_utility_var_samp_order_by { + attacker_steam_id: order_by + round: order_by +} + +"""aggregate variance on columns""" +type player_utility_variance_fields { + attacker_steam_id: Float + round: Float +} + +""" +order by variance() on columns of table "player_utility" +""" +input player_utility_variance_order_by { + attacker_steam_id: order_by + round: order_by +} + +""" +columns and relationships of "player_weapon_stats_v" +""" +type player_weapon_stats_v { + first_bullet_hits: Int + first_bullet_shots: Int + hits: Int + hits_spotted: Int + match_id: uuid + shots: Int + shots_spotted: Int + steam_id: bigint + weapon_class: String +} + +""" +aggregated selection of "player_weapon_stats_v" +""" +type player_weapon_stats_v_aggregate { + aggregate: player_weapon_stats_v_aggregate_fields + nodes: [player_weapon_stats_v!]! +} + +input player_weapon_stats_v_aggregate_bool_exp { + count: player_weapon_stats_v_aggregate_bool_exp_count +} + +input player_weapon_stats_v_aggregate_bool_exp_count { + arguments: [player_weapon_stats_v_select_column!] + distinct: Boolean + filter: player_weapon_stats_v_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "player_weapon_stats_v" +""" +type player_weapon_stats_v_aggregate_fields { + avg: player_weapon_stats_v_avg_fields + count(columns: [player_weapon_stats_v_select_column!], distinct: Boolean): Int! + max: player_weapon_stats_v_max_fields + min: player_weapon_stats_v_min_fields + stddev: player_weapon_stats_v_stddev_fields + stddev_pop: player_weapon_stats_v_stddev_pop_fields + stddev_samp: player_weapon_stats_v_stddev_samp_fields + sum: player_weapon_stats_v_sum_fields + var_pop: player_weapon_stats_v_var_pop_fields + var_samp: player_weapon_stats_v_var_samp_fields + variance: player_weapon_stats_v_variance_fields +} + +""" +order by aggregate values of table "player_weapon_stats_v" +""" +input player_weapon_stats_v_aggregate_order_by { + avg: player_weapon_stats_v_avg_order_by + count: order_by + max: player_weapon_stats_v_max_order_by + min: player_weapon_stats_v_min_order_by + stddev: player_weapon_stats_v_stddev_order_by + stddev_pop: player_weapon_stats_v_stddev_pop_order_by + stddev_samp: player_weapon_stats_v_stddev_samp_order_by + sum: player_weapon_stats_v_sum_order_by + var_pop: player_weapon_stats_v_var_pop_order_by + var_samp: player_weapon_stats_v_var_samp_order_by + variance: player_weapon_stats_v_variance_order_by +} + +""" +input type for inserting array relation for remote table "player_weapon_stats_v" +""" +input player_weapon_stats_v_arr_rel_insert_input { + data: [player_weapon_stats_v_insert_input!]! +} + +"""aggregate avg on columns""" +type player_weapon_stats_v_avg_fields { + first_bullet_hits: Float + first_bullet_shots: Float + hits: Float + hits_spotted: Float + shots: Float + shots_spotted: Float + steam_id: Float +} + +""" +order by avg() on columns of table "player_weapon_stats_v" +""" +input player_weapon_stats_v_avg_order_by { + first_bullet_hits: order_by + first_bullet_shots: order_by + hits: order_by + hits_spotted: order_by + shots: order_by + shots_spotted: order_by + steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "player_weapon_stats_v". All fields are combined with a logical 'AND'. +""" +input player_weapon_stats_v_bool_exp { + _and: [player_weapon_stats_v_bool_exp!] + _not: player_weapon_stats_v_bool_exp + _or: [player_weapon_stats_v_bool_exp!] + first_bullet_hits: Int_comparison_exp + first_bullet_shots: Int_comparison_exp + hits: Int_comparison_exp + hits_spotted: Int_comparison_exp + match_id: uuid_comparison_exp + shots: Int_comparison_exp + shots_spotted: Int_comparison_exp + steam_id: bigint_comparison_exp + weapon_class: String_comparison_exp +} + +""" +input type for inserting data into table "player_weapon_stats_v" +""" +input player_weapon_stats_v_insert_input { + first_bullet_hits: Int + first_bullet_shots: Int + hits: Int + hits_spotted: Int + match_id: uuid + shots: Int + shots_spotted: Int + steam_id: bigint + weapon_class: String +} + +"""aggregate max on columns""" +type player_weapon_stats_v_max_fields { + first_bullet_hits: Int + first_bullet_shots: Int + hits: Int + hits_spotted: Int + match_id: uuid + shots: Int + shots_spotted: Int + steam_id: bigint + weapon_class: String +} + +""" +order by max() on columns of table "player_weapon_stats_v" +""" +input player_weapon_stats_v_max_order_by { + first_bullet_hits: order_by + first_bullet_shots: order_by + hits: order_by + hits_spotted: order_by + match_id: order_by + shots: order_by + shots_spotted: order_by + steam_id: order_by + weapon_class: order_by +} + +"""aggregate min on columns""" +type player_weapon_stats_v_min_fields { + first_bullet_hits: Int + first_bullet_shots: Int + hits: Int + hits_spotted: Int + match_id: uuid + shots: Int + shots_spotted: Int + steam_id: bigint + weapon_class: String +} + +""" +order by min() on columns of table "player_weapon_stats_v" +""" +input player_weapon_stats_v_min_order_by { + first_bullet_hits: order_by + first_bullet_shots: order_by + hits: order_by + hits_spotted: order_by + match_id: order_by + shots: order_by + shots_spotted: order_by + steam_id: order_by + weapon_class: order_by +} + +"""Ordering options when selecting data from "player_weapon_stats_v".""" +input player_weapon_stats_v_order_by { + first_bullet_hits: order_by + first_bullet_shots: order_by + hits: order_by + hits_spotted: order_by + match_id: order_by + shots: order_by + shots_spotted: order_by + steam_id: order_by + weapon_class: order_by +} + +""" +select columns of table "player_weapon_stats_v" +""" +enum player_weapon_stats_v_select_column { + """column name""" + first_bullet_hits + + """column name""" + first_bullet_shots + + """column name""" + hits + + """column name""" + hits_spotted + + """column name""" + match_id + + """column name""" + shots + + """column name""" + shots_spotted + + """column name""" + steam_id + + """column name""" + weapon_class +} + +"""aggregate stddev on columns""" +type player_weapon_stats_v_stddev_fields { + first_bullet_hits: Float + first_bullet_shots: Float + hits: Float + hits_spotted: Float + shots: Float + shots_spotted: Float + steam_id: Float +} + +""" +order by stddev() on columns of table "player_weapon_stats_v" +""" +input player_weapon_stats_v_stddev_order_by { + first_bullet_hits: order_by + first_bullet_shots: order_by + hits: order_by + hits_spotted: order_by + shots: order_by + shots_spotted: order_by + steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type player_weapon_stats_v_stddev_pop_fields { + first_bullet_hits: Float + first_bullet_shots: Float + hits: Float + hits_spotted: Float + shots: Float + shots_spotted: Float + steam_id: Float +} + +""" +order by stddev_pop() on columns of table "player_weapon_stats_v" +""" +input player_weapon_stats_v_stddev_pop_order_by { + first_bullet_hits: order_by + first_bullet_shots: order_by + hits: order_by + hits_spotted: order_by + shots: order_by + shots_spotted: order_by + steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type player_weapon_stats_v_stddev_samp_fields { + first_bullet_hits: Float + first_bullet_shots: Float + hits: Float + hits_spotted: Float + shots: Float + shots_spotted: Float + steam_id: Float +} + +""" +order by stddev_samp() on columns of table "player_weapon_stats_v" +""" +input player_weapon_stats_v_stddev_samp_order_by { + first_bullet_hits: order_by + first_bullet_shots: order_by + hits: order_by + hits_spotted: order_by + shots: order_by + shots_spotted: order_by + steam_id: order_by +} + +""" +Streaming cursor of the table "player_weapon_stats_v" +""" +input player_weapon_stats_v_stream_cursor_input { + """Stream column input with initial value""" + initial_value: player_weapon_stats_v_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input player_weapon_stats_v_stream_cursor_value_input { + first_bullet_hits: Int + first_bullet_shots: Int + hits: Int + hits_spotted: Int + match_id: uuid + shots: Int + shots_spotted: Int + steam_id: bigint + weapon_class: String +} + +"""aggregate sum on columns""" +type player_weapon_stats_v_sum_fields { + first_bullet_hits: Int + first_bullet_shots: Int + hits: Int + hits_spotted: Int + shots: Int + shots_spotted: Int + steam_id: bigint +} + +""" +order by sum() on columns of table "player_weapon_stats_v" +""" +input player_weapon_stats_v_sum_order_by { + first_bullet_hits: order_by + first_bullet_shots: order_by + hits: order_by + hits_spotted: order_by + shots: order_by + shots_spotted: order_by + steam_id: order_by +} + +"""aggregate var_pop on columns""" +type player_weapon_stats_v_var_pop_fields { + first_bullet_hits: Float + first_bullet_shots: Float + hits: Float + hits_spotted: Float + shots: Float + shots_spotted: Float + steam_id: Float +} + +""" +order by var_pop() on columns of table "player_weapon_stats_v" +""" +input player_weapon_stats_v_var_pop_order_by { + first_bullet_hits: order_by + first_bullet_shots: order_by + hits: order_by + hits_spotted: order_by + shots: order_by + shots_spotted: order_by + steam_id: order_by +} + +"""aggregate var_samp on columns""" +type player_weapon_stats_v_var_samp_fields { + first_bullet_hits: Float + first_bullet_shots: Float + hits: Float + hits_spotted: Float + shots: Float + shots_spotted: Float + steam_id: Float +} + +""" +order by var_samp() on columns of table "player_weapon_stats_v" +""" +input player_weapon_stats_v_var_samp_order_by { + first_bullet_hits: order_by + first_bullet_shots: order_by + hits: order_by + hits_spotted: order_by + shots: order_by + shots_spotted: order_by + steam_id: order_by +} + +"""aggregate variance on columns""" +type player_weapon_stats_v_variance_fields { + first_bullet_hits: Float + first_bullet_shots: Float + hits: Float + hits_spotted: Float + shots: Float + shots_spotted: Float + steam_id: Float +} + +""" +order by variance() on columns of table "player_weapon_stats_v" +""" +input player_weapon_stats_v_variance_order_by { + first_bullet_hits: order_by + first_bullet_shots: order_by + hits: order_by + hits_spotted: order_by + shots: order_by + shots_spotted: order_by + steam_id: order_by +} + +""" +columns and relationships of "players" +""" +type players { + """An array relationship""" + abandoned_matches( + """distinct select on columns""" + distinct_on: [abandoned_matches_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: [abandoned_matches_order_by!] + + """filter the rows returned""" + where: abandoned_matches_bool_exp + ): [abandoned_matches!]! + + """An aggregate relationship""" + abandoned_matches_aggregate( + """distinct select on columns""" + distinct_on: [abandoned_matches_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: [abandoned_matches_order_by!] + + """filter the rows returned""" + where: abandoned_matches_bool_exp + ): abandoned_matches_aggregate! + + """An array relationship""" + aim_weapon_stats( + """distinct select on columns""" + distinct_on: [player_aim_weapon_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [player_aim_weapon_stats_order_by!] + + """filter the rows returned""" + where: player_aim_weapon_stats_bool_exp + ): [player_aim_weapon_stats!]! + + """An aggregate relationship""" + aim_weapon_stats_aggregate( + """distinct select on columns""" + distinct_on: [player_aim_weapon_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [player_aim_weapon_stats_order_by!] + + """filter the rows returned""" + where: player_aim_weapon_stats_bool_exp + ): player_aim_weapon_stats_aggregate! + + """An array relationship""" + assists( + """distinct select on columns""" + distinct_on: [player_assists_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: [player_assists_order_by!] + + """filter the rows returned""" + where: player_assists_bool_exp + ): [player_assists!]! + + """An aggregate relationship""" + assists_aggregate( + """distinct select on columns""" + distinct_on: [player_assists_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: [player_assists_order_by!] + + """filter the rows returned""" + where: player_assists_bool_exp + ): player_assists_aggregate! + + """An array relationship""" + assited_by_players( + """distinct select on columns""" + distinct_on: [player_assists_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: [player_assists_order_by!] + + """filter the rows returned""" + where: player_assists_bool_exp + ): [player_assists!]! + + """An aggregate relationship""" + assited_by_players_aggregate( + """distinct select on columns""" + distinct_on: [player_assists_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: [player_assists_order_by!] + + """filter the rows returned""" + where: player_assists_bool_exp + ): player_assists_aggregate! + avatar_url: String + + """An array relationship""" + awards( + """distinct select on columns""" + distinct_on: [award_recipients_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: [award_recipients_order_by!] + + """filter the rows returned""" + where: award_recipients_bool_exp + ): [award_recipients!]! + + """An aggregate relationship""" + awards_aggregate( + """distinct select on columns""" + distinct_on: [award_recipients_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: [award_recipients_order_by!] + + """filter the rows returned""" + where: award_recipients_bool_exp + ): award_recipients_aggregate! + + """ + A computed field, executes function "banned_until" + """ + banned_until: timestamptz + + """An array relationship""" + coach_lineups( + """distinct select on columns""" + distinct_on: [match_lineups_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_lineups_order_by!] + + """filter the rows returned""" + where: match_lineups_bool_exp + ): [match_lineups!]! + + """An aggregate relationship""" + coach_lineups_aggregate( + """distinct select on columns""" + distinct_on: [match_lineups_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_lineups_order_by!] + + """filter the rows returned""" + where: match_lineups_bool_exp + ): match_lineups_aggregate! + country: String + created_at: timestamptz + + """ + A computed field, executes function "get_player_current_lobby_id" + """ + current_lobby_id: uuid + custom_avatar_url: String + + """An array relationship""" + damage_dealt( + """distinct select on columns""" + distinct_on: [player_damages_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: [player_damages_order_by!] + + """filter the rows returned""" + where: player_damages_bool_exp + ): [player_damages!]! + + """An aggregate relationship""" + damage_dealt_aggregate( + """distinct select on columns""" + distinct_on: [player_damages_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: [player_damages_order_by!] + + """filter the rows returned""" + where: player_damages_bool_exp + ): player_damages_aggregate! + + """An array relationship""" + damage_taken( + """distinct select on columns""" + distinct_on: [player_damages_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: [player_damages_order_by!] + + """filter the rows returned""" + where: player_damages_bool_exp + ): [player_damages!]! + + """An aggregate relationship""" + damage_taken_aggregate( + """distinct select on columns""" + distinct_on: [player_damages_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: [player_damages_order_by!] + + """filter the rows returned""" + where: player_damages_bool_exp + ): player_damages_aggregate! + days_since_last_ban: Int + + """An array relationship""" + deaths( + """distinct select on columns""" + distinct_on: [player_kills_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: [player_kills_order_by!] + + """filter the rows returned""" + where: player_kills_bool_exp + ): [player_kills!]! + + """An aggregate relationship""" + deaths_aggregate( + """distinct select on columns""" + distinct_on: [player_kills_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: [player_kills_order_by!] + + """filter the rows returned""" + where: player_kills_bool_exp + ): player_kills_aggregate! + discord_id: String + + """An array relationship""" + draft_game_players( + """distinct select on columns""" + distinct_on: [draft_game_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [draft_game_players_order_by!] + + """filter the rows returned""" + where: draft_game_players_bool_exp + ): [draft_game_players!]! + + """An aggregate relationship""" + draft_game_players_aggregate( + """distinct select on columns""" + distinct_on: [draft_game_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [draft_game_players_order_by!] + + """filter the rows returned""" + where: draft_game_players_bool_exp + ): draft_game_players_aggregate! + + """ + A computed field, executes function "get_player_elo" + """ + elo( + """JSON select path""" + path: String + ): jsonb + + """An array relationship""" + elo_history( + """distinct select on columns""" + distinct_on: [v_player_elo_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_elo_order_by!] + + """filter the rows returned""" + where: v_player_elo_bool_exp + ): [v_player_elo!]! + + """An aggregate relationship""" + elo_history_aggregate( + """distinct select on columns""" + distinct_on: [v_player_elo_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_elo_order_by!] + + """filter the rows returned""" + where: v_player_elo_bool_exp + ): v_player_elo_aggregate! + faceit_elo: Int + faceit_nickname: String + faceit_player_id: String + + """An array relationship""" + faceit_rank_history( + """distinct select on columns""" + distinct_on: [player_faceit_rank_history_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: [player_faceit_rank_history_order_by!] + + """filter the rows returned""" + where: player_faceit_rank_history_bool_exp + ): [player_faceit_rank_history!]! + + """An aggregate relationship""" + faceit_rank_history_aggregate( + """distinct select on columns""" + distinct_on: [player_faceit_rank_history_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: [player_faceit_rank_history_order_by!] + + """filter the rows returned""" + where: player_faceit_rank_history_bool_exp + ): player_faceit_rank_history_aggregate! + faceit_skill_level: Int + faceit_updated_at: timestamptz + faceit_url: String + + """An array relationship""" + flashed_by_players( + """distinct select on columns""" + distinct_on: [player_flashes_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: [player_flashes_order_by!] + + """filter the rows returned""" + where: player_flashes_bool_exp + ): [player_flashes!]! + + """An aggregate relationship""" + flashed_by_players_aggregate( + """distinct select on columns""" + distinct_on: [player_flashes_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: [player_flashes_order_by!] + + """filter the rows returned""" + where: player_flashes_bool_exp + ): player_flashes_aggregate! + + """An array relationship""" + flashed_players( + """distinct select on columns""" + distinct_on: [player_flashes_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: [player_flashes_order_by!] + + """filter the rows returned""" + where: player_flashes_bool_exp + ): [player_flashes!]! + + """An aggregate relationship""" + flashed_players_aggregate( + """distinct select on columns""" + distinct_on: [player_flashes_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: [player_flashes_order_by!] + + """filter the rows returned""" + where: player_flashes_bool_exp + ): player_flashes_aggregate! + + """An array relationship""" + friends( + """distinct select on columns""" + distinct_on: [my_friends_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: [my_friends_order_by!] + + """filter the rows returned""" + where: my_friends_bool_exp + ): [my_friends!]! + + """An aggregate relationship""" + friends_aggregate( + """distinct select on columns""" + distinct_on: [my_friends_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: [my_friends_order_by!] + + """filter the rows returned""" + where: my_friends_bool_exp + ): my_friends_aggregate! + game_ban_count: Int! + + """An array relationship""" + invited_players( + """distinct select on columns""" + distinct_on: [team_invites_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: [team_invites_order_by!] + + """filter the rows returned""" + where: team_invites_bool_exp + ): [team_invites!]! + + """An aggregate relationship""" + invited_players_aggregate( + """distinct select on columns""" + distinct_on: [team_invites_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: [team_invites_order_by!] + + """filter the rows returned""" + where: team_invites_bool_exp + ): team_invites_aggregate! + + """ + A computed field, executes function "is_admin_sanctioned" + """ + is_admin_sanctioned: Boolean + + """ + A computed field, executes function "is_banned" + """ + is_banned: Boolean + + """ + A computed field, executes function "is_gagged" + """ + is_gagged: Boolean + + """ + A computed field, executes function "is_in_another_match" + """ + is_in_another_match: Boolean + + """ + A computed field, executes function "is_in_draft" + """ + is_in_draft: Boolean + + """ + A computed field, executes function "is_in_lobby" + """ + is_in_lobby: Boolean + + """ + A computed field, executes function "is_muted" + """ + is_muted: Boolean + + """ + A computed field, executes function "is_registered" + """ + is_registered: Boolean + + """An array relationship""" + kills( + """distinct select on columns""" + distinct_on: [player_kills_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: [player_kills_order_by!] + + """filter the rows returned""" + where: player_kills_bool_exp + ): [player_kills!]! + + """An aggregate relationship""" + kills_aggregate( + """distinct select on columns""" + distinct_on: [player_kills_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: [player_kills_order_by!] + + """filter the rows returned""" + where: player_kills_bool_exp + ): player_kills_aggregate! + + """An array relationship""" + kills_by_weapons( + """distinct select on columns""" + distinct_on: [player_kills_by_weapon_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: [player_kills_by_weapon_order_by!] + + """filter the rows returned""" + where: player_kills_by_weapon_bool_exp + ): [player_kills_by_weapon!]! + + """An aggregate relationship""" + kills_by_weapons_aggregate( + """distinct select on columns""" + distinct_on: [player_kills_by_weapon_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: [player_kills_by_weapon_order_by!] + + """filter the rows returned""" + where: player_kills_by_weapon_bool_exp + ): player_kills_by_weapon_aggregate! + language: String + last_read_news_at: timestamptz + last_sign_in_at: timestamptz + + """An array relationship""" + lobby_players( + """distinct select on columns""" + distinct_on: [lobby_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [lobby_players_order_by!] + + """filter the rows returned""" + where: lobby_players_bool_exp + ): [lobby_players!]! + + """An aggregate relationship""" + lobby_players_aggregate( + """distinct select on columns""" + distinct_on: [lobby_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [lobby_players_order_by!] + + """filter the rows returned""" + where: lobby_players_bool_exp + ): lobby_players_aggregate! + + """ + A computed field, executes function "get_total_player_losses" + """ + losses: Int + + """ + A computed field, executes function "get_total_player_losses_competitive" + """ + losses_competitive: Int + + """ + A computed field, executes function "get_total_player_losses_duel" + """ + losses_duel: Int + + """ + A computed field, executes function "get_total_player_losses_wingman" + """ + losses_wingman: Int + + """An array relationship""" + match_map_hltv( + """distinct select on columns""" + distinct_on: [v_player_match_map_hltv_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_match_map_hltv_order_by!] + + """filter the rows returned""" + where: v_player_match_map_hltv_bool_exp + ): [v_player_match_map_hltv!]! + + """An aggregate relationship""" + match_map_hltv_aggregate( + """distinct select on columns""" + distinct_on: [v_player_match_map_hltv_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_match_map_hltv_order_by!] + + """filter the rows returned""" + where: v_player_match_map_hltv_bool_exp + ): v_player_match_map_hltv_aggregate! + + """An array relationship""" + match_map_stats( + """distinct select on columns""" + distinct_on: [player_match_map_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [player_match_map_stats_order_by!] + + """filter the rows returned""" + where: player_match_map_stats_bool_exp + ): [player_match_map_stats!]! + + """An aggregate relationship""" + match_map_stats_aggregate( + """distinct select on columns""" + distinct_on: [player_match_map_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [player_match_map_stats_order_by!] + + """filter the rows returned""" + where: player_match_map_stats_bool_exp + ): player_match_map_stats_aggregate! + + """An array relationship""" + match_stats( + """distinct select on columns""" + distinct_on: [player_match_stats_v_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: [player_match_stats_v_order_by!] + + """filter the rows returned""" + where: player_match_stats_v_bool_exp + ): [player_match_stats_v!]! + + """An aggregate relationship""" + match_stats_aggregate( + """distinct select on columns""" + distinct_on: [player_match_stats_v_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: [player_match_stats_v_order_by!] + + """filter the rows returned""" + where: player_match_stats_v_bool_exp + ): player_match_stats_v_aggregate! + + """ + A computed field, executes function "get_player_matches" + """ + matches( + """distinct select on columns""" + distinct_on: [matches_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: [matches_order_by!] + + """filter the rows returned""" + where: matches_bool_exp + ): [matches!] + + """ + A computed field, executes function "get_player_matchmaking_cooldown" + """ + matchmaking_cooldown: timestamptz + + """An array relationship""" + multi_kills( + """distinct select on columns""" + distinct_on: [v_player_multi_kills_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_multi_kills_order_by!] + + """filter the rows returned""" + where: v_player_multi_kills_bool_exp + ): [v_player_multi_kills!]! + + """An aggregate relationship""" + multi_kills_aggregate( + """distinct select on columns""" + distinct_on: [v_player_multi_kills_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_multi_kills_order_by!] + + """filter the rows returned""" + where: v_player_multi_kills_bool_exp + ): v_player_multi_kills_aggregate! + name: String! + name_registered: Boolean! + notification_timezone: String + + """An array relationship""" + notifications( + """distinct select on columns""" + distinct_on: [notifications_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: [notifications_order_by!] + + """filter the rows returned""" + where: notifications_bool_exp + ): [notifications!]! + + """An aggregate relationship""" + notifications_aggregate( + """distinct select on columns""" + distinct_on: [notifications_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: [notifications_order_by!] + + """filter the rows returned""" + where: notifications_bool_exp + ): notifications_aggregate! + + """An array relationship""" + objectives( + """distinct select on columns""" + distinct_on: [player_objectives_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: [player_objectives_order_by!] + + """filter the rows returned""" + where: player_objectives_bool_exp + ): [player_objectives!]! + + """An aggregate relationship""" + objectives_aggregate( + """distinct select on columns""" + distinct_on: [player_objectives_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: [player_objectives_order_by!] + + """filter the rows returned""" + where: player_objectives_bool_exp + ): player_objectives_aggregate! + + """An array relationship""" + owned_teams( + """distinct select on columns""" + distinct_on: [teams_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [teams_order_by!] + + """filter the rows returned""" + where: teams_bool_exp + ): [teams!]! + + """An aggregate relationship""" + owned_teams_aggregate( + """distinct select on columns""" + distinct_on: [teams_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [teams_order_by!] + + """filter the rows returned""" + where: teams_bool_exp + ): teams_aggregate! + + """ + A computed field, executes function "get_player_peak_elo" + """ + peak_elo( + """JSON select path""" + path: String + ): jsonb + + """An array relationship""" + pending_match_imports( + """distinct select on columns""" + distinct_on: [pending_match_import_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pending_match_import_players_order_by!] + + """filter the rows returned""" + where: pending_match_import_players_bool_exp + ): [pending_match_import_players!]! + + """An aggregate relationship""" + pending_match_imports_aggregate( + """distinct select on columns""" + distinct_on: [pending_match_import_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pending_match_import_players_order_by!] + + """filter the rows returned""" + where: pending_match_import_players_bool_exp + ): pending_match_import_players_aggregate! + + """An array relationship""" + player_lineup( + """distinct select on columns""" + distinct_on: [match_lineup_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_lineup_players_order_by!] + + """filter the rows returned""" + where: match_lineup_players_bool_exp + ): [match_lineup_players!]! + + """An aggregate relationship""" + player_lineup_aggregate( + """distinct select on columns""" + distinct_on: [match_lineup_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_lineup_players_order_by!] + + """filter the rows returned""" + where: match_lineup_players_bool_exp + ): match_lineup_players_aggregate! + + """An array relationship""" + player_unused_utilities( + """distinct select on columns""" + distinct_on: [player_unused_utility_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: [player_unused_utility_order_by!] + + """filter the rows returned""" + where: player_unused_utility_bool_exp + ): [player_unused_utility!]! + + """An aggregate relationship""" + player_unused_utilities_aggregate( + """distinct select on columns""" + distinct_on: [player_unused_utility_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: [player_unused_utility_order_by!] + + """filter the rows returned""" + where: player_unused_utility_bool_exp + ): player_unused_utility_aggregate! + premier_rank: Int + + """An array relationship""" + premier_rank_history( + """distinct select on columns""" + distinct_on: [player_premier_rank_history_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: [player_premier_rank_history_order_by!] + + """filter the rows returned""" + where: player_premier_rank_history_bool_exp + ): [player_premier_rank_history!]! + + """An aggregate relationship""" + premier_rank_history_aggregate( + """distinct select on columns""" + distinct_on: [player_premier_rank_history_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: [player_premier_rank_history_order_by!] + + """filter the rows returned""" + where: player_premier_rank_history_bool_exp + ): player_premier_rank_history_aggregate! + premier_rank_updated_at: timestamptz + profile_url: String + quiet_hours_end: time + quiet_hours_start: time + role: e_player_roles_enum! + roster_image_url: String + + """An array relationship""" + sanctions( + """distinct select on columns""" + distinct_on: [player_sanctions_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: [player_sanctions_order_by!] + + """filter the rows returned""" + where: player_sanctions_bool_exp + ): [player_sanctions!]! + + """An aggregate relationship""" + sanctions_aggregate( + """distinct select on columns""" + distinct_on: [player_sanctions_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: [player_sanctions_order_by!] + + """filter the rows returned""" + where: player_sanctions_bool_exp + ): player_sanctions_aggregate! + + """An array relationship""" + season_stats( + """distinct select on columns""" + distinct_on: [player_season_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [player_season_stats_order_by!] + + """filter the rows returned""" + where: player_season_stats_bool_exp + ): [player_season_stats!]! + + """An aggregate relationship""" + season_stats_aggregate( + """distinct select on columns""" + distinct_on: [player_season_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [player_season_stats_order_by!] + + """filter the rows returned""" + where: player_season_stats_bool_exp + ): player_season_stats_aggregate! + show_match_ready_modal: Boolean! + + """An object relationship""" + stats: player_stats + steam_bans_checked_at: timestamptz + steam_id: bigint! + + """An array relationship""" + team_invites( + """distinct select on columns""" + distinct_on: [team_invites_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: [team_invites_order_by!] + + """filter the rows returned""" + where: team_invites_bool_exp + ): [team_invites!]! + + """An aggregate relationship""" + team_invites_aggregate( + """distinct select on columns""" + distinct_on: [team_invites_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: [team_invites_order_by!] + + """filter the rows returned""" + where: team_invites_bool_exp + ): team_invites_aggregate! + + """An array relationship""" + team_members( + """distinct select on columns""" + distinct_on: [team_roster_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: [team_roster_order_by!] + + """filter the rows returned""" + where: team_roster_bool_exp + ): [team_roster!]! + + """An aggregate relationship""" + team_members_aggregate( + """distinct select on columns""" + distinct_on: [team_roster_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: [team_roster_order_by!] + + """filter the rows returned""" + where: team_roster_bool_exp + ): team_roster_aggregate! + + """ + A computed field, executes function "get_player_teams" + """ + teams( + """distinct select on columns""" + distinct_on: [teams_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [teams_order_by!] + + """filter the rows returned""" + where: teams_bool_exp + ): [teams!] + + """ + A computed field, executes function "get_total_player_matches" + """ + total_matches: Int + + """ + A computed field, executes function "get_player_tournament_cooldown" + """ + tournament_cooldown: timestamptz + + """An array relationship""" + tournament_organizers( + """distinct select on columns""" + distinct_on: [tournament_organizers_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_organizers_order_by!] + + """filter the rows returned""" + where: tournament_organizers_bool_exp + ): [tournament_organizers!]! + + """An aggregate relationship""" + tournament_organizers_aggregate( + """distinct select on columns""" + distinct_on: [tournament_organizers_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_organizers_order_by!] + + """filter the rows returned""" + where: tournament_organizers_bool_exp + ): tournament_organizers_aggregate! + + """An array relationship""" + tournament_rosters( + """distinct select on columns""" + distinct_on: [tournament_team_roster_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_team_roster_order_by!] + + """filter the rows returned""" + where: tournament_team_roster_bool_exp + ): [tournament_team_roster!]! + + """An aggregate relationship""" + tournament_rosters_aggregate( + """distinct select on columns""" + distinct_on: [tournament_team_roster_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_team_roster_order_by!] + + """filter the rows returned""" + where: tournament_team_roster_bool_exp + ): tournament_team_roster_aggregate! + + """An array relationship""" + tournaments( + """distinct select on columns""" + distinct_on: [tournaments_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournaments_order_by!] + + """filter the rows returned""" + where: tournaments_bool_exp + ): [tournaments!]! + + """An aggregate relationship""" + tournaments_aggregate( + """distinct select on columns""" + distinct_on: [tournaments_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournaments_order_by!] + + """filter the rows returned""" + where: tournaments_bool_exp + ): tournaments_aggregate! + + """An array relationship""" + utility_thrown( + """distinct select on columns""" + distinct_on: [player_utility_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: [player_utility_order_by!] + + """filter the rows returned""" + where: player_utility_bool_exp + ): [player_utility!]! + + """An aggregate relationship""" + utility_thrown_aggregate( + """distinct select on columns""" + distinct_on: [player_utility_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: [player_utility_order_by!] + + """filter the rows returned""" + where: player_utility_bool_exp + ): player_utility_aggregate! + vac_ban_count: Int! + vac_banned: Boolean! + + """An array relationship""" + weapon_stats( + """distinct select on columns""" + distinct_on: [player_weapon_stats_v_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: [player_weapon_stats_v_order_by!] + + """filter the rows returned""" + where: player_weapon_stats_v_bool_exp + ): [player_weapon_stats_v!]! + + """An aggregate relationship""" + weapon_stats_aggregate( + """distinct select on columns""" + distinct_on: [player_weapon_stats_v_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: [player_weapon_stats_v_order_by!] + + """filter the rows returned""" + where: player_weapon_stats_v_bool_exp + ): player_weapon_stats_v_aggregate! + + """ + A computed field, executes function "get_total_player_wins" + """ + wins: Int + + """ + A computed field, executes function "get_total_player_wins_competitive" + """ + wins_competitive: Int + + """ + A computed field, executes function "get_total_player_wins_duel" + """ + wins_duel: Int + + """ + A computed field, executes function "get_total_player_wins_wingman" + """ + wins_wingman: Int +} + +""" +aggregated selection of "players" +""" +type players_aggregate { + aggregate: players_aggregate_fields + nodes: [players!]! +} + +""" +aggregate fields of "players" +""" +type players_aggregate_fields { + avg: players_avg_fields + count(columns: [players_select_column!], distinct: Boolean): Int! + max: players_max_fields + min: players_min_fields + stddev: players_stddev_fields + stddev_pop: players_stddev_pop_fields + stddev_samp: players_stddev_samp_fields + sum: players_sum_fields + var_pop: players_var_pop_fields + var_samp: players_var_samp_fields + variance: players_variance_fields +} + +"""aggregate avg on columns""" +type players_avg_fields { + days_since_last_ban: Float + faceit_elo: Float + faceit_skill_level: Float + game_ban_count: Float + + """ + A computed field, executes function "get_total_player_losses" + """ + losses: Int + + """ + A computed field, executes function "get_total_player_losses_competitive" + """ + losses_competitive: Int + + """ + A computed field, executes function "get_total_player_losses_duel" + """ + losses_duel: Int + + """ + A computed field, executes function "get_total_player_losses_wingman" + """ + losses_wingman: Int + premier_rank: Float + steam_id: Float + + """ + A computed field, executes function "get_total_player_matches" + """ + total_matches: Int + vac_ban_count: Float + + """ + A computed field, executes function "get_total_player_wins" + """ + wins: Int + + """ + A computed field, executes function "get_total_player_wins_competitive" + """ + wins_competitive: Int + + """ + A computed field, executes function "get_total_player_wins_duel" + """ + wins_duel: Int + + """ + A computed field, executes function "get_total_player_wins_wingman" + """ + wins_wingman: Int +} + +""" +Boolean expression to filter rows from the table "players". All fields are combined with a logical 'AND'. +""" +input players_bool_exp { + _and: [players_bool_exp!] + _not: players_bool_exp + _or: [players_bool_exp!] + abandoned_matches: abandoned_matches_bool_exp + abandoned_matches_aggregate: abandoned_matches_aggregate_bool_exp + aim_weapon_stats: player_aim_weapon_stats_bool_exp + aim_weapon_stats_aggregate: player_aim_weapon_stats_aggregate_bool_exp + assists: player_assists_bool_exp + assists_aggregate: player_assists_aggregate_bool_exp + assited_by_players: player_assists_bool_exp + assited_by_players_aggregate: player_assists_aggregate_bool_exp + avatar_url: String_comparison_exp + awards: award_recipients_bool_exp + awards_aggregate: award_recipients_aggregate_bool_exp + banned_until: timestamptz_comparison_exp + coach_lineups: match_lineups_bool_exp + coach_lineups_aggregate: match_lineups_aggregate_bool_exp + country: String_comparison_exp + created_at: timestamptz_comparison_exp + current_lobby_id: uuid_comparison_exp + custom_avatar_url: String_comparison_exp + damage_dealt: player_damages_bool_exp + damage_dealt_aggregate: player_damages_aggregate_bool_exp + damage_taken: player_damages_bool_exp + damage_taken_aggregate: player_damages_aggregate_bool_exp + days_since_last_ban: Int_comparison_exp + deaths: player_kills_bool_exp + deaths_aggregate: player_kills_aggregate_bool_exp + discord_id: String_comparison_exp + draft_game_players: draft_game_players_bool_exp + draft_game_players_aggregate: draft_game_players_aggregate_bool_exp + elo: jsonb_comparison_exp + elo_history: v_player_elo_bool_exp + elo_history_aggregate: v_player_elo_aggregate_bool_exp + faceit_elo: Int_comparison_exp + faceit_nickname: String_comparison_exp + faceit_player_id: String_comparison_exp + faceit_rank_history: player_faceit_rank_history_bool_exp + faceit_rank_history_aggregate: player_faceit_rank_history_aggregate_bool_exp + faceit_skill_level: Int_comparison_exp + faceit_updated_at: timestamptz_comparison_exp + faceit_url: String_comparison_exp + flashed_by_players: player_flashes_bool_exp + flashed_by_players_aggregate: player_flashes_aggregate_bool_exp + flashed_players: player_flashes_bool_exp + flashed_players_aggregate: player_flashes_aggregate_bool_exp + friends: my_friends_bool_exp + friends_aggregate: my_friends_aggregate_bool_exp + game_ban_count: Int_comparison_exp + invited_players: team_invites_bool_exp + invited_players_aggregate: team_invites_aggregate_bool_exp + is_admin_sanctioned: Boolean_comparison_exp + is_banned: Boolean_comparison_exp + is_gagged: Boolean_comparison_exp + is_in_another_match: Boolean_comparison_exp + is_in_draft: Boolean_comparison_exp + is_in_lobby: Boolean_comparison_exp + is_muted: Boolean_comparison_exp + is_registered: Boolean_comparison_exp + kills: player_kills_bool_exp + kills_aggregate: player_kills_aggregate_bool_exp + kills_by_weapons: player_kills_by_weapon_bool_exp + kills_by_weapons_aggregate: player_kills_by_weapon_aggregate_bool_exp + language: String_comparison_exp + last_read_news_at: timestamptz_comparison_exp + last_sign_in_at: timestamptz_comparison_exp + lobby_players: lobby_players_bool_exp + lobby_players_aggregate: lobby_players_aggregate_bool_exp + losses: Int_comparison_exp + losses_competitive: Int_comparison_exp + losses_duel: Int_comparison_exp + losses_wingman: Int_comparison_exp + match_map_hltv: v_player_match_map_hltv_bool_exp + match_map_hltv_aggregate: v_player_match_map_hltv_aggregate_bool_exp + match_map_stats: player_match_map_stats_bool_exp + match_map_stats_aggregate: player_match_map_stats_aggregate_bool_exp + match_stats: player_match_stats_v_bool_exp + match_stats_aggregate: player_match_stats_v_aggregate_bool_exp + matches: matches_bool_exp + matchmaking_cooldown: timestamptz_comparison_exp + multi_kills: v_player_multi_kills_bool_exp + multi_kills_aggregate: v_player_multi_kills_aggregate_bool_exp + name: String_comparison_exp + name_registered: Boolean_comparison_exp + notification_timezone: String_comparison_exp + notifications: notifications_bool_exp + notifications_aggregate: notifications_aggregate_bool_exp + objectives: player_objectives_bool_exp + objectives_aggregate: player_objectives_aggregate_bool_exp + owned_teams: teams_bool_exp + owned_teams_aggregate: teams_aggregate_bool_exp + peak_elo: jsonb_comparison_exp + pending_match_imports: pending_match_import_players_bool_exp + pending_match_imports_aggregate: pending_match_import_players_aggregate_bool_exp + player_lineup: match_lineup_players_bool_exp + player_lineup_aggregate: match_lineup_players_aggregate_bool_exp + player_unused_utilities: player_unused_utility_bool_exp + player_unused_utilities_aggregate: player_unused_utility_aggregate_bool_exp + premier_rank: Int_comparison_exp + premier_rank_history: player_premier_rank_history_bool_exp + premier_rank_history_aggregate: player_premier_rank_history_aggregate_bool_exp + premier_rank_updated_at: timestamptz_comparison_exp + profile_url: String_comparison_exp + quiet_hours_end: time_comparison_exp + quiet_hours_start: time_comparison_exp + role: e_player_roles_enum_comparison_exp + roster_image_url: String_comparison_exp + sanctions: player_sanctions_bool_exp + sanctions_aggregate: player_sanctions_aggregate_bool_exp + season_stats: player_season_stats_bool_exp + season_stats_aggregate: player_season_stats_aggregate_bool_exp + show_match_ready_modal: Boolean_comparison_exp + stats: player_stats_bool_exp + steam_bans_checked_at: timestamptz_comparison_exp + steam_id: bigint_comparison_exp + team_invites: team_invites_bool_exp + team_invites_aggregate: team_invites_aggregate_bool_exp + team_members: team_roster_bool_exp + team_members_aggregate: team_roster_aggregate_bool_exp + teams: teams_bool_exp + total_matches: Int_comparison_exp + tournament_cooldown: timestamptz_comparison_exp + tournament_organizers: tournament_organizers_bool_exp + tournament_organizers_aggregate: tournament_organizers_aggregate_bool_exp + tournament_rosters: tournament_team_roster_bool_exp + tournament_rosters_aggregate: tournament_team_roster_aggregate_bool_exp + tournaments: tournaments_bool_exp + tournaments_aggregate: tournaments_aggregate_bool_exp + utility_thrown: player_utility_bool_exp + utility_thrown_aggregate: player_utility_aggregate_bool_exp + vac_ban_count: Int_comparison_exp + vac_banned: Boolean_comparison_exp + weapon_stats: player_weapon_stats_v_bool_exp + weapon_stats_aggregate: player_weapon_stats_v_aggregate_bool_exp + wins: Int_comparison_exp + wins_competitive: Int_comparison_exp + wins_duel: Int_comparison_exp + wins_wingman: Int_comparison_exp +} + +""" +unique or primary key constraints on table "players" +""" +enum players_constraint { + """ + unique or primary key constraint on columns "discord_id" + """ + players_discord_id_key + + """ + unique or primary key constraint on columns "steam_id" + """ + players_pkey + + """ + unique or primary key constraint on columns "steam_id" + """ + players_steam_id_key +} + +""" +input type for incrementing numeric columns in table "players" +""" +input players_inc_input { + days_since_last_ban: Int + faceit_elo: Int + faceit_skill_level: Int + game_ban_count: Int + premier_rank: Int + steam_id: bigint + vac_ban_count: Int +} + +""" +input type for inserting data into table "players" +""" +input players_insert_input { + abandoned_matches: abandoned_matches_arr_rel_insert_input + aim_weapon_stats: player_aim_weapon_stats_arr_rel_insert_input + assists: player_assists_arr_rel_insert_input + assited_by_players: player_assists_arr_rel_insert_input + avatar_url: String + awards: award_recipients_arr_rel_insert_input + coach_lineups: match_lineups_arr_rel_insert_input + country: String + created_at: timestamptz + custom_avatar_url: String + damage_dealt: player_damages_arr_rel_insert_input + damage_taken: player_damages_arr_rel_insert_input + days_since_last_ban: Int + deaths: player_kills_arr_rel_insert_input + discord_id: String + draft_game_players: draft_game_players_arr_rel_insert_input + elo_history: v_player_elo_arr_rel_insert_input + faceit_elo: Int + faceit_nickname: String + faceit_player_id: String + faceit_rank_history: player_faceit_rank_history_arr_rel_insert_input + faceit_skill_level: Int + faceit_updated_at: timestamptz + faceit_url: String + flashed_by_players: player_flashes_arr_rel_insert_input + flashed_players: player_flashes_arr_rel_insert_input + friends: my_friends_arr_rel_insert_input + game_ban_count: Int + invited_players: team_invites_arr_rel_insert_input + kills: player_kills_arr_rel_insert_input + kills_by_weapons: player_kills_by_weapon_arr_rel_insert_input + language: String + last_read_news_at: timestamptz + last_sign_in_at: timestamptz + lobby_players: lobby_players_arr_rel_insert_input + match_map_hltv: v_player_match_map_hltv_arr_rel_insert_input + match_map_stats: player_match_map_stats_arr_rel_insert_input + match_stats: player_match_stats_v_arr_rel_insert_input + multi_kills: v_player_multi_kills_arr_rel_insert_input + name: String + name_registered: Boolean + notification_timezone: String + notifications: notifications_arr_rel_insert_input + objectives: player_objectives_arr_rel_insert_input + owned_teams: teams_arr_rel_insert_input + pending_match_imports: pending_match_import_players_arr_rel_insert_input + player_lineup: match_lineup_players_arr_rel_insert_input + player_unused_utilities: player_unused_utility_arr_rel_insert_input + premier_rank: Int + premier_rank_history: player_premier_rank_history_arr_rel_insert_input + premier_rank_updated_at: timestamptz + profile_url: String + quiet_hours_end: time + quiet_hours_start: time + role: e_player_roles_enum + roster_image_url: String + sanctions: player_sanctions_arr_rel_insert_input + season_stats: player_season_stats_arr_rel_insert_input + show_match_ready_modal: Boolean + stats: player_stats_obj_rel_insert_input + steam_bans_checked_at: timestamptz + steam_id: bigint + team_invites: team_invites_arr_rel_insert_input + team_members: team_roster_arr_rel_insert_input + tournament_organizers: tournament_organizers_arr_rel_insert_input + tournament_rosters: tournament_team_roster_arr_rel_insert_input + tournaments: tournaments_arr_rel_insert_input + utility_thrown: player_utility_arr_rel_insert_input + vac_ban_count: Int + vac_banned: Boolean + weapon_stats: player_weapon_stats_v_arr_rel_insert_input +} + +"""aggregate max on columns""" +type players_max_fields { + avatar_url: String + + """ + A computed field, executes function "banned_until" + """ + banned_until: timestamptz + country: String + created_at: timestamptz + + """ + A computed field, executes function "get_player_current_lobby_id" + """ + current_lobby_id: uuid + custom_avatar_url: String + days_since_last_ban: Int + discord_id: String + faceit_elo: Int + faceit_nickname: String + faceit_player_id: String + faceit_skill_level: Int + faceit_updated_at: timestamptz + faceit_url: String + game_ban_count: Int + language: String + last_read_news_at: timestamptz + last_sign_in_at: timestamptz + + """ + A computed field, executes function "get_total_player_losses" + """ + losses: Int + + """ + A computed field, executes function "get_total_player_losses_competitive" + """ + losses_competitive: Int + + """ + A computed field, executes function "get_total_player_losses_duel" + """ + losses_duel: Int + + """ + A computed field, executes function "get_total_player_losses_wingman" + """ + losses_wingman: Int + + """ + A computed field, executes function "get_player_matchmaking_cooldown" + """ + matchmaking_cooldown: timestamptz + name: String + notification_timezone: String + premier_rank: Int + premier_rank_updated_at: timestamptz + profile_url: String + roster_image_url: String + steam_bans_checked_at: timestamptz + steam_id: bigint + + """ + A computed field, executes function "get_total_player_matches" + """ + total_matches: Int + + """ + A computed field, executes function "get_player_tournament_cooldown" + """ + tournament_cooldown: timestamptz + vac_ban_count: Int + + """ + A computed field, executes function "get_total_player_wins" + """ + wins: Int + + """ + A computed field, executes function "get_total_player_wins_competitive" + """ + wins_competitive: Int + + """ + A computed field, executes function "get_total_player_wins_duel" + """ + wins_duel: Int + + """ + A computed field, executes function "get_total_player_wins_wingman" + """ + wins_wingman: Int +} + +"""aggregate min on columns""" +type players_min_fields { + avatar_url: String + + """ + A computed field, executes function "banned_until" + """ + banned_until: timestamptz + country: String + created_at: timestamptz + + """ + A computed field, executes function "get_player_current_lobby_id" + """ + current_lobby_id: uuid + custom_avatar_url: String + days_since_last_ban: Int + discord_id: String + faceit_elo: Int + faceit_nickname: String + faceit_player_id: String + faceit_skill_level: Int + faceit_updated_at: timestamptz + faceit_url: String + game_ban_count: Int + language: String + last_read_news_at: timestamptz + last_sign_in_at: timestamptz + + """ + A computed field, executes function "get_total_player_losses" + """ + losses: Int + + """ + A computed field, executes function "get_total_player_losses_competitive" + """ + losses_competitive: Int + + """ + A computed field, executes function "get_total_player_losses_duel" + """ + losses_duel: Int + + """ + A computed field, executes function "get_total_player_losses_wingman" + """ + losses_wingman: Int + + """ + A computed field, executes function "get_player_matchmaking_cooldown" + """ + matchmaking_cooldown: timestamptz + name: String + notification_timezone: String + premier_rank: Int + premier_rank_updated_at: timestamptz + profile_url: String + roster_image_url: String + steam_bans_checked_at: timestamptz + steam_id: bigint + + """ + A computed field, executes function "get_total_player_matches" + """ + total_matches: Int + + """ + A computed field, executes function "get_player_tournament_cooldown" + """ + tournament_cooldown: timestamptz + vac_ban_count: Int + + """ + A computed field, executes function "get_total_player_wins" + """ + wins: Int + + """ + A computed field, executes function "get_total_player_wins_competitive" + """ + wins_competitive: Int + + """ + A computed field, executes function "get_total_player_wins_duel" + """ + wins_duel: Int + + """ + A computed field, executes function "get_total_player_wins_wingman" + """ + wins_wingman: Int +} + +""" +response of any mutation on the table "players" +""" +type players_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [players!]! +} + +""" +input type for inserting object relation for remote table "players" +""" +input players_obj_rel_insert_input { + data: players_insert_input! + + """upsert condition""" + on_conflict: players_on_conflict +} + +""" +on_conflict condition type for table "players" +""" +input players_on_conflict { + constraint: players_constraint! + update_columns: [players_update_column!]! = [] + where: players_bool_exp +} + +"""Ordering options when selecting data from "players".""" +input players_order_by { + abandoned_matches_aggregate: abandoned_matches_aggregate_order_by + aim_weapon_stats_aggregate: player_aim_weapon_stats_aggregate_order_by + assists_aggregate: player_assists_aggregate_order_by + assited_by_players_aggregate: player_assists_aggregate_order_by + avatar_url: order_by + awards_aggregate: award_recipients_aggregate_order_by + banned_until: order_by + coach_lineups_aggregate: match_lineups_aggregate_order_by + country: order_by + created_at: order_by + current_lobby_id: order_by + custom_avatar_url: order_by + damage_dealt_aggregate: player_damages_aggregate_order_by + damage_taken_aggregate: player_damages_aggregate_order_by + days_since_last_ban: order_by + deaths_aggregate: player_kills_aggregate_order_by + discord_id: order_by + draft_game_players_aggregate: draft_game_players_aggregate_order_by + elo: order_by + elo_history_aggregate: v_player_elo_aggregate_order_by + faceit_elo: order_by + faceit_nickname: order_by + faceit_player_id: order_by + faceit_rank_history_aggregate: player_faceit_rank_history_aggregate_order_by + faceit_skill_level: order_by + faceit_updated_at: order_by + faceit_url: order_by + flashed_by_players_aggregate: player_flashes_aggregate_order_by + flashed_players_aggregate: player_flashes_aggregate_order_by + friends_aggregate: my_friends_aggregate_order_by + game_ban_count: order_by + invited_players_aggregate: team_invites_aggregate_order_by + is_admin_sanctioned: order_by + is_banned: order_by + is_gagged: order_by + is_in_another_match: order_by + is_in_draft: order_by + is_in_lobby: order_by + is_muted: order_by + is_registered: order_by + kills_aggregate: player_kills_aggregate_order_by + kills_by_weapons_aggregate: player_kills_by_weapon_aggregate_order_by + language: order_by + last_read_news_at: order_by + last_sign_in_at: order_by + lobby_players_aggregate: lobby_players_aggregate_order_by + losses: order_by + losses_competitive: order_by + losses_duel: order_by + losses_wingman: order_by + match_map_hltv_aggregate: v_player_match_map_hltv_aggregate_order_by + match_map_stats_aggregate: player_match_map_stats_aggregate_order_by + match_stats_aggregate: player_match_stats_v_aggregate_order_by + matches_aggregate: matches_aggregate_order_by + matchmaking_cooldown: order_by + multi_kills_aggregate: v_player_multi_kills_aggregate_order_by + name: order_by + name_registered: order_by + notification_timezone: order_by + notifications_aggregate: notifications_aggregate_order_by + objectives_aggregate: player_objectives_aggregate_order_by + owned_teams_aggregate: teams_aggregate_order_by + peak_elo: order_by + pending_match_imports_aggregate: pending_match_import_players_aggregate_order_by + player_lineup_aggregate: match_lineup_players_aggregate_order_by + player_unused_utilities_aggregate: player_unused_utility_aggregate_order_by + premier_rank: order_by + premier_rank_history_aggregate: player_premier_rank_history_aggregate_order_by + premier_rank_updated_at: order_by + profile_url: order_by + quiet_hours_end: order_by + quiet_hours_start: order_by + role: order_by + roster_image_url: order_by + sanctions_aggregate: player_sanctions_aggregate_order_by + season_stats_aggregate: player_season_stats_aggregate_order_by + show_match_ready_modal: order_by + stats: player_stats_order_by + steam_bans_checked_at: order_by + steam_id: order_by + team_invites_aggregate: team_invites_aggregate_order_by + team_members_aggregate: team_roster_aggregate_order_by + teams_aggregate: teams_aggregate_order_by + total_matches: order_by + tournament_cooldown: order_by + tournament_organizers_aggregate: tournament_organizers_aggregate_order_by + tournament_rosters_aggregate: tournament_team_roster_aggregate_order_by + tournaments_aggregate: tournaments_aggregate_order_by + utility_thrown_aggregate: player_utility_aggregate_order_by + vac_ban_count: order_by + vac_banned: order_by + weapon_stats_aggregate: player_weapon_stats_v_aggregate_order_by + wins: order_by + wins_competitive: order_by + wins_duel: order_by + wins_wingman: order_by +} + +"""primary key columns input for table: players""" +input players_pk_columns_input { + steam_id: bigint! +} + +""" +select columns of table "players" +""" +enum players_select_column { + """column name""" + avatar_url + + """column name""" + country + + """column name""" + created_at + + """column name""" + custom_avatar_url + + """column name""" + days_since_last_ban + + """column name""" + discord_id + + """column name""" + faceit_elo + + """column name""" + faceit_nickname + + """column name""" + faceit_player_id + + """column name""" + faceit_skill_level + + """column name""" + faceit_updated_at + + """column name""" + faceit_url + + """column name""" + game_ban_count + + """column name""" + language + + """column name""" + last_read_news_at + + """column name""" + last_sign_in_at + + """column name""" + name + + """column name""" + name_registered + + """column name""" + notification_timezone + + """column name""" + premier_rank + + """column name""" + premier_rank_updated_at + + """column name""" + profile_url + + """column name""" + quiet_hours_end + + """column name""" + quiet_hours_start + + """column name""" + role + + """column name""" + roster_image_url + + """column name""" + show_match_ready_modal + + """column name""" + steam_bans_checked_at + + """column name""" + steam_id + + """column name""" + vac_ban_count + + """column name""" + vac_banned +} + +""" +input type for updating data in table "players" +""" +input players_set_input { + avatar_url: String + country: String + created_at: timestamptz + custom_avatar_url: String + days_since_last_ban: Int + discord_id: String + faceit_elo: Int + faceit_nickname: String + faceit_player_id: String + faceit_skill_level: Int + faceit_updated_at: timestamptz + faceit_url: String + game_ban_count: Int + language: String + last_read_news_at: timestamptz + last_sign_in_at: timestamptz + name: String + name_registered: Boolean + notification_timezone: String + premier_rank: Int + premier_rank_updated_at: timestamptz + profile_url: String + quiet_hours_end: time + quiet_hours_start: time + role: e_player_roles_enum + roster_image_url: String + show_match_ready_modal: Boolean + steam_bans_checked_at: timestamptz + steam_id: bigint + vac_ban_count: Int + vac_banned: Boolean +} + +"""aggregate stddev on columns""" +type players_stddev_fields { + days_since_last_ban: Float + faceit_elo: Float + faceit_skill_level: Float + game_ban_count: Float + + """ + A computed field, executes function "get_total_player_losses" + """ + losses: Int + + """ + A computed field, executes function "get_total_player_losses_competitive" + """ + losses_competitive: Int + + """ + A computed field, executes function "get_total_player_losses_duel" + """ + losses_duel: Int + + """ + A computed field, executes function "get_total_player_losses_wingman" + """ + losses_wingman: Int + premier_rank: Float + steam_id: Float + + """ + A computed field, executes function "get_total_player_matches" + """ + total_matches: Int + vac_ban_count: Float + + """ + A computed field, executes function "get_total_player_wins" + """ + wins: Int + + """ + A computed field, executes function "get_total_player_wins_competitive" + """ + wins_competitive: Int + + """ + A computed field, executes function "get_total_player_wins_duel" + """ + wins_duel: Int + + """ + A computed field, executes function "get_total_player_wins_wingman" + """ + wins_wingman: Int +} + +"""aggregate stddev_pop on columns""" +type players_stddev_pop_fields { + days_since_last_ban: Float + faceit_elo: Float + faceit_skill_level: Float + game_ban_count: Float + + """ + A computed field, executes function "get_total_player_losses" + """ + losses: Int + + """ + A computed field, executes function "get_total_player_losses_competitive" + """ + losses_competitive: Int + + """ + A computed field, executes function "get_total_player_losses_duel" + """ + losses_duel: Int + + """ + A computed field, executes function "get_total_player_losses_wingman" + """ + losses_wingman: Int + premier_rank: Float + steam_id: Float + + """ + A computed field, executes function "get_total_player_matches" + """ + total_matches: Int + vac_ban_count: Float + + """ + A computed field, executes function "get_total_player_wins" + """ + wins: Int + + """ + A computed field, executes function "get_total_player_wins_competitive" + """ + wins_competitive: Int + + """ + A computed field, executes function "get_total_player_wins_duel" + """ + wins_duel: Int + + """ + A computed field, executes function "get_total_player_wins_wingman" + """ + wins_wingman: Int +} + +"""aggregate stddev_samp on columns""" +type players_stddev_samp_fields { + days_since_last_ban: Float + faceit_elo: Float + faceit_skill_level: Float + game_ban_count: Float + + """ + A computed field, executes function "get_total_player_losses" + """ + losses: Int + + """ + A computed field, executes function "get_total_player_losses_competitive" + """ + losses_competitive: Int + + """ + A computed field, executes function "get_total_player_losses_duel" + """ + losses_duel: Int + + """ + A computed field, executes function "get_total_player_losses_wingman" + """ + losses_wingman: Int + premier_rank: Float + steam_id: Float + + """ + A computed field, executes function "get_total_player_matches" + """ + total_matches: Int + vac_ban_count: Float + + """ + A computed field, executes function "get_total_player_wins" + """ + wins: Int + + """ + A computed field, executes function "get_total_player_wins_competitive" + """ + wins_competitive: Int + + """ + A computed field, executes function "get_total_player_wins_duel" + """ + wins_duel: Int + + """ + A computed field, executes function "get_total_player_wins_wingman" + """ + wins_wingman: Int +} + +""" +Streaming cursor of the table "players" +""" +input players_stream_cursor_input { + """Stream column input with initial value""" + initial_value: players_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input players_stream_cursor_value_input { + avatar_url: String + country: String + created_at: timestamptz + custom_avatar_url: String + days_since_last_ban: Int + discord_id: String + faceit_elo: Int + faceit_nickname: String + faceit_player_id: String + faceit_skill_level: Int + faceit_updated_at: timestamptz + faceit_url: String + game_ban_count: Int + language: String + last_read_news_at: timestamptz + last_sign_in_at: timestamptz + name: String + name_registered: Boolean + notification_timezone: String + premier_rank: Int + premier_rank_updated_at: timestamptz + profile_url: String + quiet_hours_end: time + quiet_hours_start: time + role: e_player_roles_enum + roster_image_url: String + show_match_ready_modal: Boolean + steam_bans_checked_at: timestamptz + steam_id: bigint + vac_ban_count: Int + vac_banned: Boolean +} + +"""aggregate sum on columns""" +type players_sum_fields { + days_since_last_ban: Int + faceit_elo: Int + faceit_skill_level: Int + game_ban_count: Int + + """ + A computed field, executes function "get_total_player_losses" + """ + losses: Int + + """ + A computed field, executes function "get_total_player_losses_competitive" + """ + losses_competitive: Int + + """ + A computed field, executes function "get_total_player_losses_duel" + """ + losses_duel: Int + + """ + A computed field, executes function "get_total_player_losses_wingman" + """ + losses_wingman: Int + premier_rank: Int + steam_id: bigint + + """ + A computed field, executes function "get_total_player_matches" + """ + total_matches: Int + vac_ban_count: Int + + """ + A computed field, executes function "get_total_player_wins" + """ + wins: Int + + """ + A computed field, executes function "get_total_player_wins_competitive" + """ + wins_competitive: Int + + """ + A computed field, executes function "get_total_player_wins_duel" + """ + wins_duel: Int + + """ + A computed field, executes function "get_total_player_wins_wingman" + """ + wins_wingman: Int +} + +""" +update columns of table "players" +""" +enum players_update_column { + """column name""" + avatar_url + + """column name""" + country + + """column name""" + created_at + + """column name""" + custom_avatar_url + + """column name""" + days_since_last_ban + + """column name""" + discord_id + + """column name""" + faceit_elo + + """column name""" + faceit_nickname + + """column name""" + faceit_player_id + + """column name""" + faceit_skill_level + + """column name""" + faceit_updated_at + + """column name""" + faceit_url + + """column name""" + game_ban_count + + """column name""" + language + + """column name""" + last_read_news_at + + """column name""" + last_sign_in_at + + """column name""" + name + + """column name""" + name_registered + + """column name""" + notification_timezone + + """column name""" + premier_rank + + """column name""" + premier_rank_updated_at + + """column name""" + profile_url + + """column name""" + quiet_hours_end + + """column name""" + quiet_hours_start + + """column name""" + role + + """column name""" + roster_image_url + + """column name""" + show_match_ready_modal + + """column name""" + steam_bans_checked_at + + """column name""" + steam_id + + """column name""" + vac_ban_count + + """column name""" + vac_banned +} + +input players_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: players_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: players_set_input + + """filter the rows which have to be updated""" + where: players_bool_exp! +} + +"""aggregate var_pop on columns""" +type players_var_pop_fields { + days_since_last_ban: Float + faceit_elo: Float + faceit_skill_level: Float + game_ban_count: Float + + """ + A computed field, executes function "get_total_player_losses" + """ + losses: Int + + """ + A computed field, executes function "get_total_player_losses_competitive" + """ + losses_competitive: Int + + """ + A computed field, executes function "get_total_player_losses_duel" + """ + losses_duel: Int + + """ + A computed field, executes function "get_total_player_losses_wingman" + """ + losses_wingman: Int + premier_rank: Float + steam_id: Float + + """ + A computed field, executes function "get_total_player_matches" + """ + total_matches: Int + vac_ban_count: Float + + """ + A computed field, executes function "get_total_player_wins" + """ + wins: Int + + """ + A computed field, executes function "get_total_player_wins_competitive" + """ + wins_competitive: Int + + """ + A computed field, executes function "get_total_player_wins_duel" + """ + wins_duel: Int + + """ + A computed field, executes function "get_total_player_wins_wingman" + """ + wins_wingman: Int +} + +"""aggregate var_samp on columns""" +type players_var_samp_fields { + days_since_last_ban: Float + faceit_elo: Float + faceit_skill_level: Float + game_ban_count: Float + + """ + A computed field, executes function "get_total_player_losses" + """ + losses: Int + + """ + A computed field, executes function "get_total_player_losses_competitive" + """ + losses_competitive: Int + + """ + A computed field, executes function "get_total_player_losses_duel" + """ + losses_duel: Int + + """ + A computed field, executes function "get_total_player_losses_wingman" + """ + losses_wingman: Int + premier_rank: Float + steam_id: Float + + """ + A computed field, executes function "get_total_player_matches" + """ + total_matches: Int + vac_ban_count: Float + + """ + A computed field, executes function "get_total_player_wins" + """ + wins: Int + + """ + A computed field, executes function "get_total_player_wins_competitive" + """ + wins_competitive: Int + + """ + A computed field, executes function "get_total_player_wins_duel" + """ + wins_duel: Int + + """ + A computed field, executes function "get_total_player_wins_wingman" + """ + wins_wingman: Int +} + +"""aggregate variance on columns""" +type players_variance_fields { + days_since_last_ban: Float + faceit_elo: Float + faceit_skill_level: Float + game_ban_count: Float + + """ + A computed field, executes function "get_total_player_losses" + """ + losses: Int + + """ + A computed field, executes function "get_total_player_losses_competitive" + """ + losses_competitive: Int + + """ + A computed field, executes function "get_total_player_losses_duel" + """ + losses_duel: Int + + """ + A computed field, executes function "get_total_player_losses_wingman" + """ + losses_wingman: Int + premier_rank: Float + steam_id: Float + + """ + A computed field, executes function "get_total_player_matches" + """ + total_matches: Int + vac_ban_count: Float + + """ + A computed field, executes function "get_total_player_wins" + """ + wins: Int + + """ + A computed field, executes function "get_total_player_wins_competitive" + """ + wins_competitive: Int + + """ + A computed field, executes function "get_total_player_wins_duel" + """ + wins_duel: Int + + """ + A computed field, executes function "get_total_player_wins_wingman" + """ + wins_wingman: Int +} + +""" +columns and relationships of "plugin_versions" +""" +type plugin_versions { + min_game_build_id: Int + published_at: timestamptz! + runtime: e_plugin_runtimes_enum! + version: String! +} + +""" +aggregated selection of "plugin_versions" +""" +type plugin_versions_aggregate { + aggregate: plugin_versions_aggregate_fields + nodes: [plugin_versions!]! +} + +""" +aggregate fields of "plugin_versions" +""" +type plugin_versions_aggregate_fields { + avg: plugin_versions_avg_fields + count(columns: [plugin_versions_select_column!], distinct: Boolean): Int! + max: plugin_versions_max_fields + min: plugin_versions_min_fields + stddev: plugin_versions_stddev_fields + stddev_pop: plugin_versions_stddev_pop_fields + stddev_samp: plugin_versions_stddev_samp_fields + sum: plugin_versions_sum_fields + var_pop: plugin_versions_var_pop_fields + var_samp: plugin_versions_var_samp_fields + variance: plugin_versions_variance_fields +} + +"""aggregate avg on columns""" +type plugin_versions_avg_fields { + min_game_build_id: Float +} + +""" +Boolean expression to filter rows from the table "plugin_versions". All fields are combined with a logical 'AND'. +""" +input plugin_versions_bool_exp { + _and: [plugin_versions_bool_exp!] + _not: plugin_versions_bool_exp + _or: [plugin_versions_bool_exp!] + min_game_build_id: Int_comparison_exp + published_at: timestamptz_comparison_exp + runtime: e_plugin_runtimes_enum_comparison_exp + version: String_comparison_exp +} + +""" +unique or primary key constraints on table "plugin_versions" +""" +enum plugin_versions_constraint { + """ + unique or primary key constraint on columns "version", "runtime" + """ + plugin_versions_pkey +} + +""" +input type for incrementing numeric columns in table "plugin_versions" +""" +input plugin_versions_inc_input { + min_game_build_id: Int +} + +""" +input type for inserting data into table "plugin_versions" +""" +input plugin_versions_insert_input { + min_game_build_id: Int + published_at: timestamptz + runtime: e_plugin_runtimes_enum + version: String +} + +"""aggregate max on columns""" +type plugin_versions_max_fields { + min_game_build_id: Int + published_at: timestamptz + version: String +} + +"""aggregate min on columns""" +type plugin_versions_min_fields { + min_game_build_id: Int + published_at: timestamptz + version: String +} + +""" +response of any mutation on the table "plugin_versions" +""" +type plugin_versions_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [plugin_versions!]! +} + +""" +on_conflict condition type for table "plugin_versions" +""" +input plugin_versions_on_conflict { + constraint: plugin_versions_constraint! + update_columns: [plugin_versions_update_column!]! = [] + where: plugin_versions_bool_exp +} + +"""Ordering options when selecting data from "plugin_versions".""" +input plugin_versions_order_by { + min_game_build_id: order_by + published_at: order_by + runtime: order_by + version: order_by +} + +"""primary key columns input for table: plugin_versions""" +input plugin_versions_pk_columns_input { + runtime: e_plugin_runtimes_enum! + version: String! +} + +""" +select columns of table "plugin_versions" +""" +enum plugin_versions_select_column { + """column name""" + min_game_build_id + + """column name""" + published_at + + """column name""" + runtime + + """column name""" + version +} + +""" +input type for updating data in table "plugin_versions" +""" +input plugin_versions_set_input { + min_game_build_id: Int + published_at: timestamptz + runtime: e_plugin_runtimes_enum + version: String +} + +"""aggregate stddev on columns""" +type plugin_versions_stddev_fields { + min_game_build_id: Float +} + +"""aggregate stddev_pop on columns""" +type plugin_versions_stddev_pop_fields { + min_game_build_id: Float +} + +"""aggregate stddev_samp on columns""" +type plugin_versions_stddev_samp_fields { + min_game_build_id: Float +} + +""" +Streaming cursor of the table "plugin_versions" +""" +input plugin_versions_stream_cursor_input { + """Stream column input with initial value""" + initial_value: plugin_versions_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input plugin_versions_stream_cursor_value_input { + min_game_build_id: Int + published_at: timestamptz + runtime: e_plugin_runtimes_enum + version: String +} + +"""aggregate sum on columns""" +type plugin_versions_sum_fields { + min_game_build_id: Int +} + +""" +update columns of table "plugin_versions" +""" +enum plugin_versions_update_column { + """column name""" + min_game_build_id + + """column name""" + published_at + + """column name""" + runtime + + """column name""" + version +} + +input plugin_versions_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: plugin_versions_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: plugin_versions_set_input + + """filter the rows which have to be updated""" + where: plugin_versions_bool_exp! +} + +"""aggregate var_pop on columns""" +type plugin_versions_var_pop_fields { + min_game_build_id: Float +} + +"""aggregate var_samp on columns""" +type plugin_versions_var_samp_fields { + min_game_build_id: Float +} + +"""aggregate variance on columns""" +type plugin_versions_variance_fields { + min_game_build_id: Float +} + +""" +columns and relationships of "push_subscriptions" +""" +type push_subscriptions { + auth: String! + created_at: timestamptz! + endpoint: String! + id: uuid! + last_used_at: timestamptz + p256dh: String! + steam_id: bigint! + user_agent: String +} + +""" +aggregated selection of "push_subscriptions" +""" +type push_subscriptions_aggregate { + aggregate: push_subscriptions_aggregate_fields + nodes: [push_subscriptions!]! +} + +""" +aggregate fields of "push_subscriptions" +""" +type push_subscriptions_aggregate_fields { + avg: push_subscriptions_avg_fields + count(columns: [push_subscriptions_select_column!], distinct: Boolean): Int! + max: push_subscriptions_max_fields + min: push_subscriptions_min_fields + stddev: push_subscriptions_stddev_fields + stddev_pop: push_subscriptions_stddev_pop_fields + stddev_samp: push_subscriptions_stddev_samp_fields + sum: push_subscriptions_sum_fields + var_pop: push_subscriptions_var_pop_fields + var_samp: push_subscriptions_var_samp_fields + variance: push_subscriptions_variance_fields +} + +"""aggregate avg on columns""" +type push_subscriptions_avg_fields { + steam_id: Float +} + +""" +Boolean expression to filter rows from the table "push_subscriptions". All fields are combined with a logical 'AND'. +""" +input push_subscriptions_bool_exp { + _and: [push_subscriptions_bool_exp!] + _not: push_subscriptions_bool_exp + _or: [push_subscriptions_bool_exp!] + auth: String_comparison_exp + created_at: timestamptz_comparison_exp + endpoint: String_comparison_exp + id: uuid_comparison_exp + last_used_at: timestamptz_comparison_exp + p256dh: String_comparison_exp + steam_id: bigint_comparison_exp + user_agent: String_comparison_exp +} + +""" +unique or primary key constraints on table "push_subscriptions" +""" +enum push_subscriptions_constraint { + """ + unique or primary key constraint on columns "endpoint" + """ + push_subscriptions_endpoint_key + + """ + unique or primary key constraint on columns "id" + """ + push_subscriptions_pkey +} + +""" +input type for incrementing numeric columns in table "push_subscriptions" +""" +input push_subscriptions_inc_input { + steam_id: bigint +} + +""" +input type for inserting data into table "push_subscriptions" +""" +input push_subscriptions_insert_input { + auth: String + created_at: timestamptz + endpoint: String + id: uuid + last_used_at: timestamptz + p256dh: String + steam_id: bigint + user_agent: String +} + +"""aggregate max on columns""" +type push_subscriptions_max_fields { + auth: String + created_at: timestamptz + endpoint: String + id: uuid + last_used_at: timestamptz + p256dh: String + steam_id: bigint + user_agent: String +} + +"""aggregate min on columns""" +type push_subscriptions_min_fields { + auth: String + created_at: timestamptz + endpoint: String + id: uuid + last_used_at: timestamptz + p256dh: String + steam_id: bigint + user_agent: String +} + +""" +response of any mutation on the table "push_subscriptions" +""" +type push_subscriptions_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [push_subscriptions!]! +} + +""" +on_conflict condition type for table "push_subscriptions" +""" +input push_subscriptions_on_conflict { + constraint: push_subscriptions_constraint! + update_columns: [push_subscriptions_update_column!]! = [] + where: push_subscriptions_bool_exp +} + +"""Ordering options when selecting data from "push_subscriptions".""" +input push_subscriptions_order_by { + auth: order_by + created_at: order_by + endpoint: order_by + id: order_by + last_used_at: order_by + p256dh: order_by + steam_id: order_by + user_agent: order_by +} + +"""primary key columns input for table: push_subscriptions""" +input push_subscriptions_pk_columns_input { + id: uuid! +} + +""" +select columns of table "push_subscriptions" +""" +enum push_subscriptions_select_column { + """column name""" + auth + + """column name""" + created_at + + """column name""" + endpoint + + """column name""" + id + + """column name""" + last_used_at + + """column name""" + p256dh + + """column name""" + steam_id + + """column name""" + user_agent +} + +""" +input type for updating data in table "push_subscriptions" +""" +input push_subscriptions_set_input { + auth: String + created_at: timestamptz + endpoint: String + id: uuid + last_used_at: timestamptz + p256dh: String + steam_id: bigint + user_agent: String +} + +"""aggregate stddev on columns""" +type push_subscriptions_stddev_fields { + steam_id: Float +} + +"""aggregate stddev_pop on columns""" +type push_subscriptions_stddev_pop_fields { + steam_id: Float +} + +"""aggregate stddev_samp on columns""" +type push_subscriptions_stddev_samp_fields { + steam_id: Float +} + +""" +Streaming cursor of the table "push_subscriptions" +""" +input push_subscriptions_stream_cursor_input { + """Stream column input with initial value""" + initial_value: push_subscriptions_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input push_subscriptions_stream_cursor_value_input { + auth: String + created_at: timestamptz + endpoint: String + id: uuid + last_used_at: timestamptz + p256dh: String + steam_id: bigint + user_agent: String +} + +"""aggregate sum on columns""" +type push_subscriptions_sum_fields { + steam_id: bigint +} + +""" +update columns of table "push_subscriptions" +""" +enum push_subscriptions_update_column { + """column name""" + auth + + """column name""" + created_at + + """column name""" + endpoint + + """column name""" + id + + """column name""" + last_used_at + + """column name""" + p256dh + + """column name""" + steam_id + + """column name""" + user_agent +} + +input push_subscriptions_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: push_subscriptions_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: push_subscriptions_set_input + + """filter the rows which have to be updated""" + where: push_subscriptions_bool_exp! +} + +"""aggregate var_pop on columns""" +type push_subscriptions_var_pop_fields { + steam_id: Float +} + +"""aggregate var_samp on columns""" +type push_subscriptions_var_samp_fields { + steam_id: Float +} + +"""aggregate variance on columns""" +type push_subscriptions_variance_fields { + steam_id: Float +} + +type query_root { + """ + fetch data from the table: "_map_pool" + """ + _map_pool( + """distinct select on columns""" + distinct_on: [_map_pool_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: [_map_pool_order_by!] + + """filter the rows returned""" + where: _map_pool_bool_exp + ): [_map_pool!]! + + """ + fetch aggregated fields from the table: "_map_pool" + """ + _map_pool_aggregate( + """distinct select on columns""" + distinct_on: [_map_pool_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: [_map_pool_order_by!] + + """filter the rows returned""" + where: _map_pool_bool_exp + ): _map_pool_aggregate! + + """fetch data from the table: "_map_pool" using primary key columns""" + _map_pool_by_pk(map_id: uuid!, map_pool_id: uuid!): _map_pool + + """An array relationship""" + abandoned_matches( + """distinct select on columns""" + distinct_on: [abandoned_matches_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: [abandoned_matches_order_by!] + + """filter the rows returned""" + where: abandoned_matches_bool_exp + ): [abandoned_matches!]! + + """An aggregate relationship""" + abandoned_matches_aggregate( + """distinct select on columns""" + distinct_on: [abandoned_matches_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: [abandoned_matches_order_by!] + + """filter the rows returned""" + where: abandoned_matches_bool_exp + ): abandoned_matches_aggregate! + + """ + fetch data from the table: "abandoned_matches" using primary key columns + """ + abandoned_matches_by_pk(id: uuid!): abandoned_matches + + """Ask which sightlines a playbook's smokes leave open""" + analyseUtilityPlaybookCoverage(pairs: [UtilitySightlinePairInput!]!, playbook_id: uuid!): UtilityPlaybookCoverageOutput + + """ + fetch data from the table: "api_keys" + """ + api_keys( + """distinct select on columns""" + distinct_on: [api_keys_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: [api_keys_order_by!] + + """filter the rows returned""" + where: api_keys_bool_exp + ): [api_keys!]! + + """ + fetch aggregated fields from the table: "api_keys" + """ + api_keys_aggregate( + """distinct select on columns""" + distinct_on: [api_keys_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: [api_keys_order_by!] + + """filter the rows returned""" + where: api_keys_bool_exp + ): api_keys_aggregate! + + """fetch data from the table: "api_keys" using primary key columns""" + api_keys_by_pk(id: uuid!): api_keys + + """ + fetch data from the table: "award_recipients" + """ + award_recipients( + """distinct select on columns""" + distinct_on: [award_recipients_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: [award_recipients_order_by!] + + """filter the rows returned""" + where: award_recipients_bool_exp + ): [award_recipients!]! + + """ + fetch aggregated fields from the table: "award_recipients" + """ + award_recipients_aggregate( + """distinct select on columns""" + distinct_on: [award_recipients_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: [award_recipients_order_by!] + + """filter the rows returned""" + where: award_recipients_bool_exp + ): award_recipients_aggregate! + + """ + fetch data from the table: "award_recipients" using primary key columns + """ + award_recipients_by_pk(id: uuid!): award_recipients + + """ + fetch data from the table: "awards" + """ + awards( + """distinct select on columns""" + distinct_on: [awards_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: [awards_order_by!] + + """filter the rows returned""" + where: awards_bool_exp + ): [awards!]! + + """ + fetch aggregated fields from the table: "awards" + """ + awards_aggregate( + """distinct select on columns""" + distinct_on: [awards_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: [awards_order_by!] + + """filter the rows returned""" + where: awards_bool_exp + ): awards_aggregate! + + """fetch data from the table: "awards" using primary key columns""" + awards_by_pk(id: uuid!): awards + + """ + fetch data from the table: "chat_read_state" + """ + chat_read_state( + """distinct select on columns""" + distinct_on: [chat_read_state_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: [chat_read_state_order_by!] + + """filter the rows returned""" + where: chat_read_state_bool_exp + ): [chat_read_state!]! + + """ + fetch aggregated fields from the table: "chat_read_state" + """ + chat_read_state_aggregate( + """distinct select on columns""" + distinct_on: [chat_read_state_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: [chat_read_state_order_by!] + + """filter the rows returned""" + where: chat_read_state_bool_exp + ): chat_read_state_aggregate! + + """fetch data from the table: "chat_read_state" using primary key columns""" + chat_read_state_by_pk(steam_id: bigint!, thread: String!): chat_read_state + + """Ask whether a lineup's smoke makes an angle one-way""" + checkUtilityOneWay(lineup_id: uuid!, pairs: [UtilitySightlinePairInput!]!): UtilityOneWayOutput + + """Ask whether a lineup's smoke blocks a set of sightlines""" + checkUtilitySightlines(lineup_id: uuid!, pairs: [UtilitySightlinePairInput!]!, threshold: Float): UtilitySightlineOutput + + """An array relationship""" + clip_render_jobs( + """distinct select on columns""" + distinct_on: [clip_render_jobs_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: [clip_render_jobs_order_by!] + + """filter the rows returned""" + where: clip_render_jobs_bool_exp + ): [clip_render_jobs!]! + + """An aggregate relationship""" + clip_render_jobs_aggregate( + """distinct select on columns""" + distinct_on: [clip_render_jobs_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: [clip_render_jobs_order_by!] + + """filter the rows returned""" + where: clip_render_jobs_bool_exp + ): clip_render_jobs_aggregate! + + """ + fetch data from the table: "clip_render_jobs" using primary key columns + """ + clip_render_jobs_by_pk(id: uuid!): clip_render_jobs + + """ + fetch data from the table: "custom_pages" + """ + custom_pages( + """distinct select on columns""" + distinct_on: [custom_pages_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [custom_pages_order_by!] + + """filter the rows returned""" + where: custom_pages_bool_exp + ): [custom_pages!]! + + """ + fetch aggregated fields from the table: "custom_pages" + """ + custom_pages_aggregate( + """distinct select on columns""" + distinct_on: [custom_pages_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [custom_pages_order_by!] + + """filter the rows returned""" + where: custom_pages_bool_exp + ): custom_pages_aggregate! + + """fetch data from the table: "custom_pages" using primary key columns""" + custom_pages_by_pk(id: uuid!): custom_pages + dbStats: [DbStats] + + """ + fetch data from the table: "db_backups" + """ + db_backups( + """distinct select on columns""" + distinct_on: [db_backups_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: [db_backups_order_by!] + + """filter the rows returned""" + where: db_backups_bool_exp + ): [db_backups!]! + + """ + fetch aggregated fields from the table: "db_backups" + """ + db_backups_aggregate( + """distinct select on columns""" + distinct_on: [db_backups_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: [db_backups_order_by!] + + """filter the rows returned""" + where: db_backups_bool_exp + ): db_backups_aggregate! + + """fetch data from the table: "db_backups" using primary key columns""" + db_backups_by_pk(id: uuid!): db_backups + + """ + fetch data from the table: "direct_conversations" + """ + direct_conversations( + """distinct select on columns""" + distinct_on: [direct_conversations_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: [direct_conversations_order_by!] + + """filter the rows returned""" + where: direct_conversations_bool_exp + ): [direct_conversations!]! + + """ + fetch aggregated fields from the table: "direct_conversations" + """ + direct_conversations_aggregate( + """distinct select on columns""" + distinct_on: [direct_conversations_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: [direct_conversations_order_by!] + + """filter the rows returned""" + where: direct_conversations_bool_exp + ): direct_conversations_aggregate! + + """ + fetch data from the table: "direct_conversations" using primary key columns + """ + direct_conversations_by_pk(room_id: String!, steam_id: bigint!): direct_conversations + + """ + fetch data from the table: "direct_messages" + """ + direct_messages( + """distinct select on columns""" + distinct_on: [direct_messages_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: [direct_messages_order_by!] + + """filter the rows returned""" + where: direct_messages_bool_exp + ): [direct_messages!]! + + """ + fetch aggregated fields from the table: "direct_messages" + """ + direct_messages_aggregate( + """distinct select on columns""" + distinct_on: [direct_messages_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: [direct_messages_order_by!] + + """filter the rows returned""" + where: direct_messages_bool_exp + ): direct_messages_aggregate! + + """fetch data from the table: "direct_messages" using primary key columns""" + direct_messages_by_pk(id: uuid!): direct_messages + + """ + fetch data from the table: "draft_game_picks" + """ + draft_game_picks( + """distinct select on columns""" + distinct_on: [draft_game_picks_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [draft_game_picks_order_by!] + + """filter the rows returned""" + where: draft_game_picks_bool_exp + ): [draft_game_picks!]! + + """ + fetch aggregated fields from the table: "draft_game_picks" + """ + draft_game_picks_aggregate( + """distinct select on columns""" + distinct_on: [draft_game_picks_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [draft_game_picks_order_by!] + + """filter the rows returned""" + where: draft_game_picks_bool_exp + ): draft_game_picks_aggregate! + + """ + fetch data from the table: "draft_game_picks" using primary key columns + """ + draft_game_picks_by_pk(id: uuid!): draft_game_picks + + """An array relationship""" + draft_game_players( + """distinct select on columns""" + distinct_on: [draft_game_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [draft_game_players_order_by!] + + """filter the rows returned""" + where: draft_game_players_bool_exp + ): [draft_game_players!]! + + """An aggregate relationship""" + draft_game_players_aggregate( + """distinct select on columns""" + distinct_on: [draft_game_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [draft_game_players_order_by!] + + """filter the rows returned""" + where: draft_game_players_bool_exp + ): draft_game_players_aggregate! + + """ + fetch data from the table: "draft_game_players" using primary key columns + """ + draft_game_players_by_pk(draft_game_id: uuid!, steam_id: bigint!): draft_game_players + + """An array relationship""" + draft_games( + """distinct select on columns""" + distinct_on: [draft_games_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: [draft_games_order_by!] + + """filter the rows returned""" + where: draft_games_bool_exp + ): [draft_games!]! + + """An aggregate relationship""" + draft_games_aggregate( + """distinct select on columns""" + distinct_on: [draft_games_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: [draft_games_order_by!] + + """filter the rows returned""" + where: draft_games_bool_exp + ): draft_games_aggregate! + + """fetch data from the table: "draft_games" using primary key columns""" + draft_games_by_pk(id: uuid!): draft_games + + """ + fetch data from the table: "e_award_sources" + """ + e_award_sources( + """distinct select on columns""" + distinct_on: [e_award_sources_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_award_sources_order_by!] + + """filter the rows returned""" + where: e_award_sources_bool_exp + ): [e_award_sources!]! + + """ + fetch aggregated fields from the table: "e_award_sources" + """ + e_award_sources_aggregate( + """distinct select on columns""" + distinct_on: [e_award_sources_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_award_sources_order_by!] + + """filter the rows returned""" + where: e_award_sources_bool_exp + ): e_award_sources_aggregate! + + """fetch data from the table: "e_award_sources" using primary key columns""" + e_award_sources_by_pk(value: String!): e_award_sources + + """ + fetch data from the table: "e_award_tiers" + """ + e_award_tiers( + """distinct select on columns""" + distinct_on: [e_award_tiers_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_award_tiers_order_by!] + + """filter the rows returned""" + where: e_award_tiers_bool_exp + ): [e_award_tiers!]! + + """ + fetch aggregated fields from the table: "e_award_tiers" + """ + e_award_tiers_aggregate( + """distinct select on columns""" + distinct_on: [e_award_tiers_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_award_tiers_order_by!] + + """filter the rows returned""" + where: e_award_tiers_bool_exp + ): e_award_tiers_aggregate! + + """fetch data from the table: "e_award_tiers" using primary key columns""" + e_award_tiers_by_pk(value: String!): e_award_tiers + + """ + fetch data from the table: "e_check_in_settings" + """ + e_check_in_settings( + """distinct select on columns""" + distinct_on: [e_check_in_settings_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_check_in_settings_order_by!] + + """filter the rows returned""" + where: e_check_in_settings_bool_exp + ): [e_check_in_settings!]! + + """ + fetch aggregated fields from the table: "e_check_in_settings" + """ + e_check_in_settings_aggregate( + """distinct select on columns""" + distinct_on: [e_check_in_settings_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_check_in_settings_order_by!] + + """filter the rows returned""" + where: e_check_in_settings_bool_exp + ): e_check_in_settings_aggregate! + + """ + fetch data from the table: "e_check_in_settings" using primary key columns + """ + e_check_in_settings_by_pk(value: String!): e_check_in_settings + + """ + fetch data from the table: "e_draft_game_captain_selection" + """ + e_draft_game_captain_selection( + """distinct select on columns""" + distinct_on: [e_draft_game_captain_selection_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_draft_game_captain_selection_order_by!] + + """filter the rows returned""" + where: e_draft_game_captain_selection_bool_exp + ): [e_draft_game_captain_selection!]! + + """ + fetch aggregated fields from the table: "e_draft_game_captain_selection" + """ + e_draft_game_captain_selection_aggregate( + """distinct select on columns""" + distinct_on: [e_draft_game_captain_selection_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_draft_game_captain_selection_order_by!] + + """filter the rows returned""" + where: e_draft_game_captain_selection_bool_exp + ): e_draft_game_captain_selection_aggregate! + + """ + fetch data from the table: "e_draft_game_captain_selection" using primary key columns + """ + e_draft_game_captain_selection_by_pk(value: String!): e_draft_game_captain_selection + + """ + fetch data from the table: "e_draft_game_draft_order" + """ + e_draft_game_draft_order( + """distinct select on columns""" + distinct_on: [e_draft_game_draft_order_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_draft_game_draft_order_order_by!] + + """filter the rows returned""" + where: e_draft_game_draft_order_bool_exp + ): [e_draft_game_draft_order!]! + + """ + fetch aggregated fields from the table: "e_draft_game_draft_order" + """ + e_draft_game_draft_order_aggregate( + """distinct select on columns""" + distinct_on: [e_draft_game_draft_order_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_draft_game_draft_order_order_by!] + + """filter the rows returned""" + where: e_draft_game_draft_order_bool_exp + ): e_draft_game_draft_order_aggregate! + + """ + fetch data from the table: "e_draft_game_draft_order" using primary key columns + """ + e_draft_game_draft_order_by_pk(value: String!): e_draft_game_draft_order + + """ + fetch data from the table: "e_draft_game_mode" + """ + e_draft_game_mode( + """distinct select on columns""" + distinct_on: [e_draft_game_mode_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_draft_game_mode_order_by!] + + """filter the rows returned""" + where: e_draft_game_mode_bool_exp + ): [e_draft_game_mode!]! + + """ + fetch aggregated fields from the table: "e_draft_game_mode" + """ + e_draft_game_mode_aggregate( + """distinct select on columns""" + distinct_on: [e_draft_game_mode_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_draft_game_mode_order_by!] + + """filter the rows returned""" + where: e_draft_game_mode_bool_exp + ): e_draft_game_mode_aggregate! + + """ + fetch data from the table: "e_draft_game_mode" using primary key columns + """ + e_draft_game_mode_by_pk(value: String!): e_draft_game_mode + + """ + fetch data from the table: "e_draft_game_player_status" + """ + e_draft_game_player_status( + """distinct select on columns""" + distinct_on: [e_draft_game_player_status_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_draft_game_player_status_order_by!] + + """filter the rows returned""" + where: e_draft_game_player_status_bool_exp + ): [e_draft_game_player_status!]! + + """ + fetch aggregated fields from the table: "e_draft_game_player_status" + """ + e_draft_game_player_status_aggregate( + """distinct select on columns""" + distinct_on: [e_draft_game_player_status_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_draft_game_player_status_order_by!] + + """filter the rows returned""" + where: e_draft_game_player_status_bool_exp + ): e_draft_game_player_status_aggregate! + + """ + fetch data from the table: "e_draft_game_player_status" using primary key columns + """ + e_draft_game_player_status_by_pk(value: String!): e_draft_game_player_status + + """ + fetch data from the table: "e_draft_game_status" + """ + e_draft_game_status( + """distinct select on columns""" + distinct_on: [e_draft_game_status_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_draft_game_status_order_by!] + + """filter the rows returned""" + where: e_draft_game_status_bool_exp + ): [e_draft_game_status!]! + + """ + fetch aggregated fields from the table: "e_draft_game_status" + """ + e_draft_game_status_aggregate( + """distinct select on columns""" + distinct_on: [e_draft_game_status_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_draft_game_status_order_by!] + + """filter the rows returned""" + where: e_draft_game_status_bool_exp + ): e_draft_game_status_aggregate! + + """ + fetch data from the table: "e_draft_game_status" using primary key columns + """ + e_draft_game_status_by_pk(value: String!): e_draft_game_status + + """ + fetch data from the table: "e_event_media_access" + """ + e_event_media_access( + """distinct select on columns""" + distinct_on: [e_event_media_access_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_event_media_access_order_by!] + + """filter the rows returned""" + where: e_event_media_access_bool_exp + ): [e_event_media_access!]! + + """ + fetch aggregated fields from the table: "e_event_media_access" + """ + e_event_media_access_aggregate( + """distinct select on columns""" + distinct_on: [e_event_media_access_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_event_media_access_order_by!] + + """filter the rows returned""" + where: e_event_media_access_bool_exp + ): e_event_media_access_aggregate! + + """ + fetch data from the table: "e_event_media_access" using primary key columns + """ + e_event_media_access_by_pk(value: String!): e_event_media_access + + """ + fetch data from the table: "e_event_visibility" + """ + e_event_visibility( + """distinct select on columns""" + distinct_on: [e_event_visibility_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_event_visibility_order_by!] + + """filter the rows returned""" + where: e_event_visibility_bool_exp + ): [e_event_visibility!]! + + """ + fetch aggregated fields from the table: "e_event_visibility" + """ + e_event_visibility_aggregate( + """distinct select on columns""" + distinct_on: [e_event_visibility_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_event_visibility_order_by!] + + """filter the rows returned""" + where: e_event_visibility_bool_exp + ): e_event_visibility_aggregate! + + """ + fetch data from the table: "e_event_visibility" using primary key columns + """ + e_event_visibility_by_pk(value: String!): e_event_visibility + + """ + fetch data from the table: "e_friend_status" + """ + e_friend_status( + """distinct select on columns""" + distinct_on: [e_friend_status_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_friend_status_order_by!] + + """filter the rows returned""" + where: e_friend_status_bool_exp + ): [e_friend_status!]! + + """ + fetch aggregated fields from the table: "e_friend_status" + """ + e_friend_status_aggregate( + """distinct select on columns""" + distinct_on: [e_friend_status_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_friend_status_order_by!] + + """filter the rows returned""" + where: e_friend_status_bool_exp + ): e_friend_status_aggregate! + + """fetch data from the table: "e_friend_status" using primary key columns""" + e_friend_status_by_pk(value: String!): e_friend_status + + """ + fetch data from the table: "e_game_cfg_types" + """ + e_game_cfg_types( + """distinct select on columns""" + distinct_on: [e_game_cfg_types_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_cfg_types_order_by!] + + """filter the rows returned""" + where: e_game_cfg_types_bool_exp + ): [e_game_cfg_types!]! + + """ + fetch aggregated fields from the table: "e_game_cfg_types" + """ + e_game_cfg_types_aggregate( + """distinct select on columns""" + distinct_on: [e_game_cfg_types_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_cfg_types_order_by!] + + """filter the rows returned""" + where: e_game_cfg_types_bool_exp + ): e_game_cfg_types_aggregate! + + """ + fetch data from the table: "e_game_cfg_types" using primary key columns + """ + 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" + """ + e_game_server_node_statuses( + """distinct select on columns""" + distinct_on: [e_game_server_node_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_server_node_statuses_order_by!] + + """filter the rows returned""" + where: e_game_server_node_statuses_bool_exp + ): [e_game_server_node_statuses!]! + + """ + fetch aggregated fields from the table: "e_game_server_node_statuses" + """ + e_game_server_node_statuses_aggregate( + """distinct select on columns""" + distinct_on: [e_game_server_node_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_server_node_statuses_order_by!] + + """filter the rows returned""" + where: e_game_server_node_statuses_bool_exp + ): e_game_server_node_statuses_aggregate! + + """ + fetch data from the table: "e_game_server_node_statuses" using primary key columns + """ + e_game_server_node_statuses_by_pk(value: String!): e_game_server_node_statuses + + """ + fetch data from the table: "e_league_movement_types" + """ + e_league_movement_types( + """distinct select on columns""" + distinct_on: [e_league_movement_types_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_league_movement_types_order_by!] + + """filter the rows returned""" + where: e_league_movement_types_bool_exp + ): [e_league_movement_types!]! + + """ + fetch aggregated fields from the table: "e_league_movement_types" + """ + e_league_movement_types_aggregate( + """distinct select on columns""" + distinct_on: [e_league_movement_types_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_league_movement_types_order_by!] + + """filter the rows returned""" + where: e_league_movement_types_bool_exp + ): e_league_movement_types_aggregate! + + """ + fetch data from the table: "e_league_movement_types" using primary key columns + """ + e_league_movement_types_by_pk(value: String!): e_league_movement_types + + """ + fetch data from the table: "e_league_proposal_statuses" + """ + e_league_proposal_statuses( + """distinct select on columns""" + distinct_on: [e_league_proposal_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_league_proposal_statuses_order_by!] + + """filter the rows returned""" + where: e_league_proposal_statuses_bool_exp + ): [e_league_proposal_statuses!]! + + """ + fetch aggregated fields from the table: "e_league_proposal_statuses" + """ + e_league_proposal_statuses_aggregate( + """distinct select on columns""" + distinct_on: [e_league_proposal_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_league_proposal_statuses_order_by!] + + """filter the rows returned""" + where: e_league_proposal_statuses_bool_exp + ): e_league_proposal_statuses_aggregate! + + """ + fetch data from the table: "e_league_proposal_statuses" using primary key columns + """ + e_league_proposal_statuses_by_pk(value: String!): e_league_proposal_statuses + + """ + fetch data from the table: "e_league_registration_statuses" + """ + e_league_registration_statuses( + """distinct select on columns""" + distinct_on: [e_league_registration_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_league_registration_statuses_order_by!] + + """filter the rows returned""" + where: e_league_registration_statuses_bool_exp + ): [e_league_registration_statuses!]! + + """ + fetch aggregated fields from the table: "e_league_registration_statuses" + """ + e_league_registration_statuses_aggregate( + """distinct select on columns""" + distinct_on: [e_league_registration_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_league_registration_statuses_order_by!] + + """filter the rows returned""" + where: e_league_registration_statuses_bool_exp + ): e_league_registration_statuses_aggregate! + + """ + fetch data from the table: "e_league_registration_statuses" using primary key columns + """ + e_league_registration_statuses_by_pk(value: String!): e_league_registration_statuses + + """ + fetch data from the table: "e_league_season_statuses" + """ + e_league_season_statuses( + """distinct select on columns""" + distinct_on: [e_league_season_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_league_season_statuses_order_by!] + + """filter the rows returned""" + where: e_league_season_statuses_bool_exp + ): [e_league_season_statuses!]! + + """ + fetch aggregated fields from the table: "e_league_season_statuses" + """ + e_league_season_statuses_aggregate( + """distinct select on columns""" + distinct_on: [e_league_season_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_league_season_statuses_order_by!] + + """filter the rows returned""" + where: e_league_season_statuses_bool_exp + ): e_league_season_statuses_aggregate! + + """ + fetch data from the table: "e_league_season_statuses" using primary key columns + """ + e_league_season_statuses_by_pk(value: String!): e_league_season_statuses + + """ + fetch data from the table: "e_lobby_access" + """ + e_lobby_access( + """distinct select on columns""" + distinct_on: [e_lobby_access_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_lobby_access_order_by!] + + """filter the rows returned""" + where: e_lobby_access_bool_exp + ): [e_lobby_access!]! + + """ + fetch aggregated fields from the table: "e_lobby_access" + """ + e_lobby_access_aggregate( + """distinct select on columns""" + distinct_on: [e_lobby_access_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_lobby_access_order_by!] + + """filter the rows returned""" + where: e_lobby_access_bool_exp + ): e_lobby_access_aggregate! + + """fetch data from the table: "e_lobby_access" using primary key columns""" + e_lobby_access_by_pk(value: String!): e_lobby_access + + """ + fetch data from the table: "e_lobby_player_status" + """ + e_lobby_player_status( + """distinct select on columns""" + distinct_on: [e_lobby_player_status_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_lobby_player_status_order_by!] + + """filter the rows returned""" + where: e_lobby_player_status_bool_exp + ): [e_lobby_player_status!]! + + """ + fetch aggregated fields from the table: "e_lobby_player_status" + """ + e_lobby_player_status_aggregate( + """distinct select on columns""" + distinct_on: [e_lobby_player_status_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_lobby_player_status_order_by!] + + """filter the rows returned""" + where: e_lobby_player_status_bool_exp + ): e_lobby_player_status_aggregate! + + """ + fetch data from the table: "e_lobby_player_status" using primary key columns + """ + e_lobby_player_status_by_pk(value: String!): e_lobby_player_status + + """ + fetch data from the table: "e_map_pool_types" + """ + e_map_pool_types( + """distinct select on columns""" + distinct_on: [e_map_pool_types_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_map_pool_types_order_by!] + + """filter the rows returned""" + where: e_map_pool_types_bool_exp + ): [e_map_pool_types!]! + + """ + fetch aggregated fields from the table: "e_map_pool_types" + """ + e_map_pool_types_aggregate( + """distinct select on columns""" + distinct_on: [e_map_pool_types_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_map_pool_types_order_by!] + + """filter the rows returned""" + where: e_map_pool_types_bool_exp + ): e_map_pool_types_aggregate! + + """ + fetch data from the table: "e_map_pool_types" using primary key columns + """ + e_map_pool_types_by_pk(value: String!): e_map_pool_types + + """ + fetch data from the table: "e_match_clip_visibility" + """ + e_match_clip_visibility( + """distinct select on columns""" + distinct_on: [e_match_clip_visibility_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_match_clip_visibility_order_by!] + + """filter the rows returned""" + where: e_match_clip_visibility_bool_exp + ): [e_match_clip_visibility!]! + + """ + fetch aggregated fields from the table: "e_match_clip_visibility" + """ + e_match_clip_visibility_aggregate( + """distinct select on columns""" + distinct_on: [e_match_clip_visibility_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_match_clip_visibility_order_by!] + + """filter the rows returned""" + where: e_match_clip_visibility_bool_exp + ): e_match_clip_visibility_aggregate! + + """ + fetch data from the table: "e_match_clip_visibility" using primary key columns + """ + e_match_clip_visibility_by_pk(value: String!): e_match_clip_visibility + + """ + fetch data from the table: "e_match_map_status" + """ + e_match_map_status( + """distinct select on columns""" + distinct_on: [e_match_map_status_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_match_map_status_order_by!] + + """filter the rows returned""" + where: e_match_map_status_bool_exp + ): [e_match_map_status!]! + + """ + fetch aggregated fields from the table: "e_match_map_status" + """ + e_match_map_status_aggregate( + """distinct select on columns""" + distinct_on: [e_match_map_status_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_match_map_status_order_by!] + + """filter the rows returned""" + where: e_match_map_status_bool_exp + ): e_match_map_status_aggregate! + + """ + fetch data from the table: "e_match_map_status" using primary key columns + """ + e_match_map_status_by_pk(value: String!): e_match_map_status + + """ + fetch data from the table: "e_match_mode" + """ + e_match_mode( + """distinct select on columns""" + distinct_on: [e_match_mode_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_match_mode_order_by!] + + """filter the rows returned""" + where: e_match_mode_bool_exp + ): [e_match_mode!]! + + """ + fetch aggregated fields from the table: "e_match_mode" + """ + e_match_mode_aggregate( + """distinct select on columns""" + distinct_on: [e_match_mode_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_match_mode_order_by!] + + """filter the rows returned""" + where: e_match_mode_bool_exp + ): e_match_mode_aggregate! + + """fetch data from the table: "e_match_mode" using primary key columns""" + e_match_mode_by_pk(value: String!): e_match_mode + + """ + fetch data from the table: "e_match_party_sources" + """ + e_match_party_sources( + """distinct select on columns""" + distinct_on: [e_match_party_sources_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_match_party_sources_order_by!] + + """filter the rows returned""" + where: e_match_party_sources_bool_exp + ): [e_match_party_sources!]! + + """ + fetch aggregated fields from the table: "e_match_party_sources" + """ + e_match_party_sources_aggregate( + """distinct select on columns""" + distinct_on: [e_match_party_sources_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_match_party_sources_order_by!] + + """filter the rows returned""" + where: e_match_party_sources_bool_exp + ): e_match_party_sources_aggregate! + + """ + fetch data from the table: "e_match_party_sources" using primary key columns + """ + e_match_party_sources_by_pk(value: String!): e_match_party_sources + + """ + fetch data from the table: "e_match_status" + """ + e_match_status( + """distinct select on columns""" + distinct_on: [e_match_status_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_match_status_order_by!] + + """filter the rows returned""" + where: e_match_status_bool_exp + ): [e_match_status!]! + + """ + fetch aggregated fields from the table: "e_match_status" + """ + e_match_status_aggregate( + """distinct select on columns""" + distinct_on: [e_match_status_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_match_status_order_by!] + + """filter the rows returned""" + where: e_match_status_bool_exp + ): e_match_status_aggregate! + + """fetch data from the table: "e_match_status" using primary key columns""" + e_match_status_by_pk(value: String!): e_match_status + + """ + fetch data from the table: "e_match_types" + """ + e_match_types( + """distinct select on columns""" + distinct_on: [e_match_types_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_match_types_order_by!] + + """filter the rows returned""" + where: e_match_types_bool_exp + ): [e_match_types!]! + + """ + fetch aggregated fields from the table: "e_match_types" + """ + e_match_types_aggregate( + """distinct select on columns""" + distinct_on: [e_match_types_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_match_types_order_by!] + + """filter the rows returned""" + where: e_match_types_bool_exp + ): e_match_types_aggregate! + + """fetch data from the table: "e_match_types" using primary key columns""" + e_match_types_by_pk(value: String!): e_match_types + + """ + fetch data from the table: "e_notification_types" + """ + e_notification_types( + """distinct select on columns""" + distinct_on: [e_notification_types_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_notification_types_order_by!] + + """filter the rows returned""" + where: e_notification_types_bool_exp + ): [e_notification_types!]! + + """ + fetch aggregated fields from the table: "e_notification_types" + """ + e_notification_types_aggregate( + """distinct select on columns""" + distinct_on: [e_notification_types_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_notification_types_order_by!] + + """filter the rows returned""" + where: e_notification_types_bool_exp + ): e_notification_types_aggregate! + + """ + fetch data from the table: "e_notification_types" using primary key columns + """ + e_notification_types_by_pk(value: String!): e_notification_types + + """ + fetch data from the table: "e_objective_types" + """ + e_objective_types( + """distinct select on columns""" + distinct_on: [e_objective_types_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_objective_types_order_by!] + + """filter the rows returned""" + where: e_objective_types_bool_exp + ): [e_objective_types!]! + + """ + fetch aggregated fields from the table: "e_objective_types" + """ + e_objective_types_aggregate( + """distinct select on columns""" + distinct_on: [e_objective_types_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_objective_types_order_by!] + + """filter the rows returned""" + where: e_objective_types_bool_exp + ): e_objective_types_aggregate! + + """ + fetch data from the table: "e_objective_types" using primary key columns + """ + e_objective_types_by_pk(value: String!): e_objective_types + + """ + fetch data from the table: "e_player_roles" + """ + e_player_roles( + """distinct select on columns""" + distinct_on: [e_player_roles_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_player_roles_order_by!] + + """filter the rows returned""" + where: e_player_roles_bool_exp + ): [e_player_roles!]! + + """ + fetch aggregated fields from the table: "e_player_roles" + """ + e_player_roles_aggregate( + """distinct select on columns""" + distinct_on: [e_player_roles_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_player_roles_order_by!] + + """filter the rows returned""" + where: e_player_roles_bool_exp + ): e_player_roles_aggregate! + + """fetch data from the table: "e_player_roles" using primary key columns""" + e_player_roles_by_pk(value: String!): e_player_roles + + """ + fetch data from the table: "e_plugin_runtimes" + """ + e_plugin_runtimes( + """distinct select on columns""" + distinct_on: [e_plugin_runtimes_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_plugin_runtimes_order_by!] + + """filter the rows returned""" + where: e_plugin_runtimes_bool_exp + ): [e_plugin_runtimes!]! + + """ + fetch aggregated fields from the table: "e_plugin_runtimes" + """ + e_plugin_runtimes_aggregate( + """distinct select on columns""" + distinct_on: [e_plugin_runtimes_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_plugin_runtimes_order_by!] + + """filter the rows returned""" + where: e_plugin_runtimes_bool_exp + ): e_plugin_runtimes_aggregate! + + """ + fetch data from the table: "e_plugin_runtimes" using primary key columns + """ + e_plugin_runtimes_by_pk(value: String!): e_plugin_runtimes + + """ + fetch data from the table: "e_ready_settings" + """ + e_ready_settings( + """distinct select on columns""" + distinct_on: [e_ready_settings_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_ready_settings_order_by!] + + """filter the rows returned""" + where: e_ready_settings_bool_exp + ): [e_ready_settings!]! + + """ + fetch aggregated fields from the table: "e_ready_settings" + """ + e_ready_settings_aggregate( + """distinct select on columns""" + distinct_on: [e_ready_settings_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_ready_settings_order_by!] + + """filter the rows returned""" + where: e_ready_settings_bool_exp + ): e_ready_settings_aggregate! + + """ + fetch data from the table: "e_ready_settings" using primary key columns + """ + e_ready_settings_by_pk(value: String!): e_ready_settings + + """ + fetch data from the table: "e_sanction_scopes" + """ + e_sanction_scopes( + """distinct select on columns""" + distinct_on: [e_sanction_scopes_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_sanction_scopes_order_by!] + + """filter the rows returned""" + where: e_sanction_scopes_bool_exp + ): [e_sanction_scopes!]! + + """ + fetch aggregated fields from the table: "e_sanction_scopes" + """ + e_sanction_scopes_aggregate( + """distinct select on columns""" + distinct_on: [e_sanction_scopes_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_sanction_scopes_order_by!] + + """filter the rows returned""" + where: e_sanction_scopes_bool_exp + ): e_sanction_scopes_aggregate! + + """ + fetch data from the table: "e_sanction_scopes" using primary key columns + """ + e_sanction_scopes_by_pk(value: String!): e_sanction_scopes + + """ + fetch data from the table: "e_sanction_sources" + """ + e_sanction_sources( + """distinct select on columns""" + distinct_on: [e_sanction_sources_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_sanction_sources_order_by!] + + """filter the rows returned""" + where: e_sanction_sources_bool_exp + ): [e_sanction_sources!]! + + """ + fetch aggregated fields from the table: "e_sanction_sources" + """ + e_sanction_sources_aggregate( + """distinct select on columns""" + distinct_on: [e_sanction_sources_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_sanction_sources_order_by!] + + """filter the rows returned""" + where: e_sanction_sources_bool_exp + ): e_sanction_sources_aggregate! + + """ + fetch data from the table: "e_sanction_sources" using primary key columns + """ + e_sanction_sources_by_pk(value: String!): e_sanction_sources + + """ + fetch data from the table: "e_sanction_types" + """ + e_sanction_types( + """distinct select on columns""" + distinct_on: [e_sanction_types_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_sanction_types_order_by!] + + """filter the rows returned""" + where: e_sanction_types_bool_exp + ): [e_sanction_types!]! + + """ + fetch aggregated fields from the table: "e_sanction_types" + """ + e_sanction_types_aggregate( + """distinct select on columns""" + distinct_on: [e_sanction_types_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_sanction_types_order_by!] + + """filter the rows returned""" + where: e_sanction_types_bool_exp + ): e_sanction_types_aggregate! + + """ + fetch data from the table: "e_sanction_types" using primary key columns + """ + e_sanction_types_by_pk(value: String!): e_sanction_types + + """ + fetch data from the table: "e_scrim_request_statuses" + """ + e_scrim_request_statuses( + """distinct select on columns""" + distinct_on: [e_scrim_request_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_scrim_request_statuses_order_by!] + + """filter the rows returned""" + where: e_scrim_request_statuses_bool_exp + ): [e_scrim_request_statuses!]! + + """ + fetch aggregated fields from the table: "e_scrim_request_statuses" + """ + e_scrim_request_statuses_aggregate( + """distinct select on columns""" + distinct_on: [e_scrim_request_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_scrim_request_statuses_order_by!] + + """filter the rows returned""" + where: e_scrim_request_statuses_bool_exp + ): e_scrim_request_statuses_aggregate! + + """ + fetch data from the table: "e_scrim_request_statuses" using primary key columns + """ + e_scrim_request_statuses_by_pk(value: String!): e_scrim_request_statuses + + """ + fetch data from the table: "e_server_types" + """ + e_server_types( + """distinct select on columns""" + distinct_on: [e_server_types_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_server_types_order_by!] + + """filter the rows returned""" + where: e_server_types_bool_exp + ): [e_server_types!]! + + """ + fetch aggregated fields from the table: "e_server_types" + """ + e_server_types_aggregate( + """distinct select on columns""" + distinct_on: [e_server_types_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_server_types_order_by!] + + """filter the rows returned""" + where: e_server_types_bool_exp + ): e_server_types_aggregate! + + """fetch data from the table: "e_server_types" using primary key columns""" + e_server_types_by_pk(value: String!): e_server_types + + """ + fetch data from the table: "e_sides" + """ + e_sides( + """distinct select on columns""" + distinct_on: [e_sides_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_sides_order_by!] + + """filter the rows returned""" + where: e_sides_bool_exp + ): [e_sides!]! + + """ + fetch aggregated fields from the table: "e_sides" + """ + e_sides_aggregate( + """distinct select on columns""" + distinct_on: [e_sides_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_sides_order_by!] + + """filter the rows returned""" + where: e_sides_bool_exp + ): e_sides_aggregate! + + """fetch data from the table: "e_sides" using primary key columns""" + e_sides_by_pk(value: String!): e_sides + + """ + fetch data from the table: "e_system_alert_types" + """ + e_system_alert_types( + """distinct select on columns""" + distinct_on: [e_system_alert_types_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_system_alert_types_order_by!] + + """filter the rows returned""" + where: e_system_alert_types_bool_exp + ): [e_system_alert_types!]! + + """ + fetch aggregated fields from the table: "e_system_alert_types" + """ + e_system_alert_types_aggregate( + """distinct select on columns""" + distinct_on: [e_system_alert_types_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_system_alert_types_order_by!] + + """filter the rows returned""" + where: e_system_alert_types_bool_exp + ): e_system_alert_types_aggregate! + + """ + fetch data from the table: "e_system_alert_types" using primary key columns + """ + e_system_alert_types_by_pk(value: String!): e_system_alert_types + + """ + fetch data from the table: "e_team_roles" + """ + e_team_roles( + """distinct select on columns""" + distinct_on: [e_team_roles_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_team_roles_order_by!] + + """filter the rows returned""" + where: e_team_roles_bool_exp + ): [e_team_roles!]! + + """ + fetch aggregated fields from the table: "e_team_roles" + """ + e_team_roles_aggregate( + """distinct select on columns""" + distinct_on: [e_team_roles_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_team_roles_order_by!] + + """filter the rows returned""" + where: e_team_roles_bool_exp + ): e_team_roles_aggregate! + + """fetch data from the table: "e_team_roles" using primary key columns""" + e_team_roles_by_pk(value: String!): e_team_roles + + """ + fetch data from the table: "e_team_roster_statuses" + """ + e_team_roster_statuses( + """distinct select on columns""" + distinct_on: [e_team_roster_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_team_roster_statuses_order_by!] + + """filter the rows returned""" + where: e_team_roster_statuses_bool_exp + ): [e_team_roster_statuses!]! + + """ + fetch aggregated fields from the table: "e_team_roster_statuses" + """ + e_team_roster_statuses_aggregate( + """distinct select on columns""" + distinct_on: [e_team_roster_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_team_roster_statuses_order_by!] + + """filter the rows returned""" + where: e_team_roster_statuses_bool_exp + ): e_team_roster_statuses_aggregate! + + """ + fetch data from the table: "e_team_roster_statuses" using primary key columns + """ + e_team_roster_statuses_by_pk(value: String!): e_team_roster_statuses + + """ + fetch data from the table: "e_timeout_settings" + """ + e_timeout_settings( + """distinct select on columns""" + distinct_on: [e_timeout_settings_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_timeout_settings_order_by!] + + """filter the rows returned""" + where: e_timeout_settings_bool_exp + ): [e_timeout_settings!]! + + """ + fetch aggregated fields from the table: "e_timeout_settings" + """ + e_timeout_settings_aggregate( + """distinct select on columns""" + distinct_on: [e_timeout_settings_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_timeout_settings_order_by!] + + """filter the rows returned""" + where: e_timeout_settings_bool_exp + ): e_timeout_settings_aggregate! + + """ + fetch data from the table: "e_timeout_settings" using primary key columns + """ + e_timeout_settings_by_pk(value: String!): e_timeout_settings + + """ + fetch data from the table: "e_tournament_categories" + """ + e_tournament_categories( + """distinct select on columns""" + distinct_on: [e_tournament_categories_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_tournament_categories_order_by!] + + """filter the rows returned""" + where: e_tournament_categories_bool_exp + ): [e_tournament_categories!]! + + """ + fetch aggregated fields from the table: "e_tournament_categories" + """ + e_tournament_categories_aggregate( + """distinct select on columns""" + distinct_on: [e_tournament_categories_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_tournament_categories_order_by!] + + """filter the rows returned""" + where: e_tournament_categories_bool_exp + ): e_tournament_categories_aggregate! + + """ + fetch data from the table: "e_tournament_categories" using primary key columns + """ + e_tournament_categories_by_pk(value: String!): e_tournament_categories + + """ + fetch data from the table: "e_tournament_free_agent_statuses" + """ + e_tournament_free_agent_statuses( + """distinct select on columns""" + distinct_on: [e_tournament_free_agent_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_tournament_free_agent_statuses_order_by!] + + """filter the rows returned""" + where: e_tournament_free_agent_statuses_bool_exp + ): [e_tournament_free_agent_statuses!]! + + """ + fetch aggregated fields from the table: "e_tournament_free_agent_statuses" + """ + e_tournament_free_agent_statuses_aggregate( + """distinct select on columns""" + distinct_on: [e_tournament_free_agent_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_tournament_free_agent_statuses_order_by!] + + """filter the rows returned""" + where: e_tournament_free_agent_statuses_bool_exp + ): e_tournament_free_agent_statuses_aggregate! + + """ + fetch data from the table: "e_tournament_free_agent_statuses" using primary key columns + """ + e_tournament_free_agent_statuses_by_pk(value: String!): e_tournament_free_agent_statuses + + """ + fetch data from the table: "e_tournament_registration_types" + """ + e_tournament_registration_types( + """distinct select on columns""" + distinct_on: [e_tournament_registration_types_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_tournament_registration_types_order_by!] + + """filter the rows returned""" + where: e_tournament_registration_types_bool_exp + ): [e_tournament_registration_types!]! + + """ + fetch aggregated fields from the table: "e_tournament_registration_types" + """ + e_tournament_registration_types_aggregate( + """distinct select on columns""" + distinct_on: [e_tournament_registration_types_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_tournament_registration_types_order_by!] + + """filter the rows returned""" + where: e_tournament_registration_types_bool_exp + ): e_tournament_registration_types_aggregate! + + """ + fetch data from the table: "e_tournament_registration_types" using primary key columns + """ + e_tournament_registration_types_by_pk(value: String!): e_tournament_registration_types + + """ + fetch data from the table: "e_tournament_stage_types" + """ + e_tournament_stage_types( + """distinct select on columns""" + distinct_on: [e_tournament_stage_types_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_tournament_stage_types_order_by!] + + """filter the rows returned""" + where: e_tournament_stage_types_bool_exp + ): [e_tournament_stage_types!]! + + """ + fetch aggregated fields from the table: "e_tournament_stage_types" + """ + e_tournament_stage_types_aggregate( + """distinct select on columns""" + distinct_on: [e_tournament_stage_types_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_tournament_stage_types_order_by!] + + """filter the rows returned""" + where: e_tournament_stage_types_bool_exp + ): e_tournament_stage_types_aggregate! + + """ + fetch data from the table: "e_tournament_stage_types" using primary key columns + """ + e_tournament_stage_types_by_pk(value: String!): e_tournament_stage_types + + """ + fetch data from the table: "e_tournament_status" + """ + e_tournament_status( + """distinct select on columns""" + distinct_on: [e_tournament_status_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_tournament_status_order_by!] + + """filter the rows returned""" + where: e_tournament_status_bool_exp + ): [e_tournament_status!]! + + """ + fetch aggregated fields from the table: "e_tournament_status" + """ + e_tournament_status_aggregate( + """distinct select on columns""" + distinct_on: [e_tournament_status_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_tournament_status_order_by!] + + """filter the rows returned""" + where: e_tournament_status_bool_exp + ): e_tournament_status_aggregate! + + """ + fetch data from the table: "e_tournament_status" using primary key columns + """ + e_tournament_status_by_pk(value: String!): e_tournament_status + + """ + fetch data from the table: "e_utility_practice_access" + """ + e_utility_practice_access( + """distinct select on columns""" + distinct_on: [e_utility_practice_access_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_utility_practice_access_order_by!] + + """filter the rows returned""" + where: e_utility_practice_access_bool_exp + ): [e_utility_practice_access!]! + + """ + fetch aggregated fields from the table: "e_utility_practice_access" + """ + e_utility_practice_access_aggregate( + """distinct select on columns""" + distinct_on: [e_utility_practice_access_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_utility_practice_access_order_by!] + + """filter the rows returned""" + where: e_utility_practice_access_bool_exp + ): e_utility_practice_access_aggregate! + + """ + fetch data from the table: "e_utility_practice_access" using primary key columns + """ + e_utility_practice_access_by_pk(value: String!): e_utility_practice_access + + """ + fetch data from the table: "e_utility_practice_statuses" + """ + e_utility_practice_statuses( + """distinct select on columns""" + distinct_on: [e_utility_practice_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_utility_practice_statuses_order_by!] + + """filter the rows returned""" + where: e_utility_practice_statuses_bool_exp + ): [e_utility_practice_statuses!]! + + """ + fetch aggregated fields from the table: "e_utility_practice_statuses" + """ + e_utility_practice_statuses_aggregate( + """distinct select on columns""" + distinct_on: [e_utility_practice_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_utility_practice_statuses_order_by!] + + """filter the rows returned""" + where: e_utility_practice_statuses_bool_exp + ): e_utility_practice_statuses_aggregate! + + """ + fetch data from the table: "e_utility_practice_statuses" using primary key columns + """ + e_utility_practice_statuses_by_pk(value: String!): e_utility_practice_statuses + + """ + fetch data from the table: "e_utility_sources" + """ + e_utility_sources( + """distinct select on columns""" + distinct_on: [e_utility_sources_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_utility_sources_order_by!] + + """filter the rows returned""" + where: e_utility_sources_bool_exp + ): [e_utility_sources!]! + + """ + fetch aggregated fields from the table: "e_utility_sources" + """ + e_utility_sources_aggregate( + """distinct select on columns""" + distinct_on: [e_utility_sources_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_utility_sources_order_by!] + + """filter the rows returned""" + where: e_utility_sources_bool_exp + ): e_utility_sources_aggregate! + + """ + fetch data from the table: "e_utility_sources" using primary key columns + """ + e_utility_sources_by_pk(value: String!): e_utility_sources + + """ + fetch data from the table: "e_utility_techniques" + """ + e_utility_techniques( + """distinct select on columns""" + distinct_on: [e_utility_techniques_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_utility_techniques_order_by!] + + """filter the rows returned""" + where: e_utility_techniques_bool_exp + ): [e_utility_techniques!]! + + """ + fetch aggregated fields from the table: "e_utility_techniques" + """ + e_utility_techniques_aggregate( + """distinct select on columns""" + distinct_on: [e_utility_techniques_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_utility_techniques_order_by!] + + """filter the rows returned""" + where: e_utility_techniques_bool_exp + ): e_utility_techniques_aggregate! + + """ + fetch data from the table: "e_utility_techniques" using primary key columns + """ + e_utility_techniques_by_pk(value: String!): e_utility_techniques + + """ + fetch data from the table: "e_utility_throw_strengths" + """ + e_utility_throw_strengths( + """distinct select on columns""" + distinct_on: [e_utility_throw_strengths_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_utility_throw_strengths_order_by!] + + """filter the rows returned""" + where: e_utility_throw_strengths_bool_exp + ): [e_utility_throw_strengths!]! + + """ + fetch aggregated fields from the table: "e_utility_throw_strengths" + """ + e_utility_throw_strengths_aggregate( + """distinct select on columns""" + distinct_on: [e_utility_throw_strengths_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_utility_throw_strengths_order_by!] + + """filter the rows returned""" + where: e_utility_throw_strengths_bool_exp + ): e_utility_throw_strengths_aggregate! + + """ + fetch data from the table: "e_utility_throw_strengths" using primary key columns + """ + e_utility_throw_strengths_by_pk(value: String!): e_utility_throw_strengths + + """ + fetch data from the table: "e_utility_types" + """ + e_utility_types( + """distinct select on columns""" + distinct_on: [e_utility_types_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_utility_types_order_by!] + + """filter the rows returned""" + where: e_utility_types_bool_exp + ): [e_utility_types!]! + + """ + fetch aggregated fields from the table: "e_utility_types" + """ + e_utility_types_aggregate( + """distinct select on columns""" + distinct_on: [e_utility_types_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_utility_types_order_by!] + + """filter the rows returned""" + where: e_utility_types_bool_exp + ): e_utility_types_aggregate! + + """fetch data from the table: "e_utility_types" using primary key columns""" + e_utility_types_by_pk(value: String!): e_utility_types + + """ + fetch data from the table: "e_utility_visibility" + """ + e_utility_visibility( + """distinct select on columns""" + distinct_on: [e_utility_visibility_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_utility_visibility_order_by!] + + """filter the rows returned""" + where: e_utility_visibility_bool_exp + ): [e_utility_visibility!]! + + """ + fetch aggregated fields from the table: "e_utility_visibility" + """ + e_utility_visibility_aggregate( + """distinct select on columns""" + distinct_on: [e_utility_visibility_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_utility_visibility_order_by!] + + """filter the rows returned""" + where: e_utility_visibility_bool_exp + ): e_utility_visibility_aggregate! + + """ + fetch data from the table: "e_utility_visibility" using primary key columns + """ + e_utility_visibility_by_pk(value: String!): e_utility_visibility + + """ + fetch data from the table: "e_veto_pick_types" + """ + e_veto_pick_types( + """distinct select on columns""" + distinct_on: [e_veto_pick_types_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_veto_pick_types_order_by!] + + """filter the rows returned""" + where: e_veto_pick_types_bool_exp + ): [e_veto_pick_types!]! + + """ + fetch aggregated fields from the table: "e_veto_pick_types" + """ + e_veto_pick_types_aggregate( + """distinct select on columns""" + distinct_on: [e_veto_pick_types_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_veto_pick_types_order_by!] + + """filter the rows returned""" + where: e_veto_pick_types_bool_exp + ): e_veto_pick_types_aggregate! + + """ + fetch data from the table: "e_veto_pick_types" using primary key columns + """ + e_veto_pick_types_by_pk(value: String!): e_veto_pick_types + + """ + fetch data from the table: "e_winning_reasons" + """ + e_winning_reasons( + """distinct select on columns""" + distinct_on: [e_winning_reasons_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_winning_reasons_order_by!] + + """filter the rows returned""" + where: e_winning_reasons_bool_exp + ): [e_winning_reasons!]! + + """ + fetch aggregated fields from the table: "e_winning_reasons" + """ + e_winning_reasons_aggregate( + """distinct select on columns""" + distinct_on: [e_winning_reasons_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_winning_reasons_order_by!] + + """filter the rows returned""" + where: e_winning_reasons_bool_exp + ): e_winning_reasons_aggregate! + + """ + fetch data from the table: "e_winning_reasons" using primary key columns + """ + e_winning_reasons_by_pk(value: String!): e_winning_reasons + + """ + fetch data from the table: "event_match_links" + """ + event_match_links( + """distinct select on columns""" + distinct_on: [event_match_links_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_match_links_order_by!] + + """filter the rows returned""" + where: event_match_links_bool_exp + ): [event_match_links!]! + + """ + fetch aggregated fields from the table: "event_match_links" + """ + event_match_links_aggregate( + """distinct select on columns""" + distinct_on: [event_match_links_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_match_links_order_by!] + + """filter the rows returned""" + where: event_match_links_bool_exp + ): event_match_links_aggregate! + + """ + fetch data from the table: "event_match_links" using primary key columns + """ + event_match_links_by_pk(event_id: uuid!, match_id: uuid!): event_match_links + + """ + fetch data from the table: "event_media" + """ + event_media( + """distinct select on columns""" + distinct_on: [event_media_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_media_order_by!] + + """filter the rows returned""" + where: event_media_bool_exp + ): [event_media!]! + + """ + fetch aggregated fields from the table: "event_media" + """ + event_media_aggregate( + """distinct select on columns""" + distinct_on: [event_media_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_media_order_by!] + + """filter the rows returned""" + where: event_media_bool_exp + ): event_media_aggregate! + + """fetch data from the table: "event_media" using primary key columns""" + event_media_by_pk(id: uuid!): event_media + + """ + fetch data from the table: "event_media_players" + """ + event_media_players( + """distinct select on columns""" + distinct_on: [event_media_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_media_players_order_by!] + + """filter the rows returned""" + where: event_media_players_bool_exp + ): [event_media_players!]! + + """ + fetch aggregated fields from the table: "event_media_players" + """ + event_media_players_aggregate( + """distinct select on columns""" + distinct_on: [event_media_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_media_players_order_by!] + + """filter the rows returned""" + where: event_media_players_bool_exp + ): event_media_players_aggregate! + + """ + fetch data from the table: "event_media_players" using primary key columns + """ + event_media_players_by_pk(media_id: uuid!, steam_id: bigint!): event_media_players + + """ + fetch data from the table: "event_organizers" + """ + event_organizers( + """distinct select on columns""" + distinct_on: [event_organizers_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_organizers_order_by!] + + """filter the rows returned""" + where: event_organizers_bool_exp + ): [event_organizers!]! + + """ + fetch aggregated fields from the table: "event_organizers" + """ + event_organizers_aggregate( + """distinct select on columns""" + distinct_on: [event_organizers_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_organizers_order_by!] + + """filter the rows returned""" + where: event_organizers_bool_exp + ): event_organizers_aggregate! + + """ + fetch data from the table: "event_organizers" using primary key columns + """ + event_organizers_by_pk(event_id: uuid!, steam_id: bigint!): event_organizers + + """ + fetch data from the table: "event_players" + """ + event_players( + """distinct select on columns""" + distinct_on: [event_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_players_order_by!] + + """filter the rows returned""" + where: event_players_bool_exp + ): [event_players!]! + + """ + fetch aggregated fields from the table: "event_players" + """ + event_players_aggregate( + """distinct select on columns""" + distinct_on: [event_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_players_order_by!] + + """filter the rows returned""" + where: event_players_bool_exp + ): event_players_aggregate! + + """fetch data from the table: "event_players" using primary key columns""" + event_players_by_pk(event_id: uuid!, steam_id: bigint!): event_players + + """ + fetch data from the table: "event_teams" + """ + event_teams( + """distinct select on columns""" + distinct_on: [event_teams_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_teams_order_by!] + + """filter the rows returned""" + where: event_teams_bool_exp + ): [event_teams!]! + + """ + fetch aggregated fields from the table: "event_teams" + """ + event_teams_aggregate( + """distinct select on columns""" + distinct_on: [event_teams_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_teams_order_by!] + + """filter the rows returned""" + where: event_teams_bool_exp + ): event_teams_aggregate! + + """fetch data from the table: "event_teams" using primary key columns""" + event_teams_by_pk(event_id: uuid!, team_id: uuid!): event_teams + + """ + fetch data from the table: "event_tournaments" + """ + event_tournaments( + """distinct select on columns""" + distinct_on: [event_tournaments_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_tournaments_order_by!] + + """filter the rows returned""" + where: event_tournaments_bool_exp + ): [event_tournaments!]! + + """ + fetch aggregated fields from the table: "event_tournaments" + """ + event_tournaments_aggregate( + """distinct select on columns""" + distinct_on: [event_tournaments_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_tournaments_order_by!] + + """filter the rows returned""" + where: event_tournaments_bool_exp + ): event_tournaments_aggregate! + + """ + fetch data from the table: "event_tournaments" using primary key columns + """ + event_tournaments_by_pk(event_id: uuid!, tournament_id: uuid!): event_tournaments + + """ + fetch data from the table: "events" + """ + events( + """distinct select on columns""" + distinct_on: [events_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [events_order_by!] + + """filter the rows returned""" + where: events_bool_exp + ): [events!]! + + """ + fetch aggregated fields from the table: "events" + """ + events_aggregate( + """distinct select on columns""" + distinct_on: [events_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [events_order_by!] + + """filter the rows returned""" + where: events_bool_exp + ): events_aggregate! + + """fetch data from the table: "events" using primary key columns""" + events_by_pk(id: uuid!): events + + """Find the saved smokes that close a given sightline""" + findUtilityLineupsBlocking(from_x: Float!, from_y: Float!, from_z: Float!, limit: Int, map_name: String!, side: String, to_x: Float!, to_y: Float!, to_z: Float!): UtilityBlockingOutput + + """ + fetch data from the table: "friends" + """ + friends( + """distinct select on columns""" + distinct_on: [friends_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: [friends_order_by!] + + """filter the rows returned""" + where: friends_bool_exp + ): [friends!]! + + """ + fetch aggregated fields from the table: "friends" + """ + friends_aggregate( + """distinct select on columns""" + distinct_on: [friends_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: [friends_order_by!] + + """filter the rows returned""" + where: friends_bool_exp + ): friends_aggregate! + + """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""" + distinct_on: [game_server_nodes_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_nodes_order_by!] + + """filter the rows returned""" + where: game_server_nodes_bool_exp + ): [game_server_nodes!]! + + """An aggregate relationship""" + game_server_nodes_aggregate( + """distinct select on columns""" + distinct_on: [game_server_nodes_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_nodes_order_by!] + + """filter the rows returned""" + where: game_server_nodes_bool_exp + ): game_server_nodes_aggregate! + + """ + fetch data from the table: "game_server_nodes" using primary key columns + """ + game_server_nodes_by_pk(id: String!): game_server_nodes + + """ + fetch data from the table: "game_versions" + """ + game_versions( + """distinct select on columns""" + distinct_on: [game_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_versions_order_by!] + + """filter the rows returned""" + where: game_versions_bool_exp + ): [game_versions!]! + + """ + fetch aggregated fields from the table: "game_versions" + """ + game_versions_aggregate( + """distinct select on columns""" + distinct_on: [game_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_versions_order_by!] + + """filter the rows returned""" + where: game_versions_bool_exp + ): game_versions_aggregate! + + """fetch data from the table: "game_versions" using primary key columns""" + game_versions_by_pk(build_id: Int!): game_versions + + """ + fetch data from the table: "gamedata_signature_validations" + """ + gamedata_signature_validations( + """distinct select on columns""" + distinct_on: [gamedata_signature_validations_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: [gamedata_signature_validations_order_by!] + + """filter the rows returned""" + where: gamedata_signature_validations_bool_exp + ): [gamedata_signature_validations!]! + + """ + fetch aggregated fields from the table: "gamedata_signature_validations" + """ + gamedata_signature_validations_aggregate( + """distinct select on columns""" + distinct_on: [gamedata_signature_validations_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: [gamedata_signature_validations_order_by!] + + """filter the rows returned""" + where: gamedata_signature_validations_bool_exp + ): gamedata_signature_validations_aggregate! + + """ + fetch data from the table: "gamedata_signature_validations" using primary key columns + """ + gamedata_signature_validations_by_pk(id: uuid!): gamedata_signature_validations + + """Get list of active connections""" + getActiveConnections: [ActiveConnection]! + + """Get currently executing queries""" + getActiveQueries: [ActiveQuery]! + + """Get connection statistics""" + getConnectionStats: ConnectionStats! + + """Get current database locks""" + getCurrentLocks: [LockInfo]! + + """Get database-wide statistics""" + getDatabaseStats: DatabaseStats! + getDedicatedServerInfo: [DedicatedSeverInfo]! + getDedicatedServerPlayers(serverId: String!): [ServerPlayer!]! + + """Which highlight presets have content for a player on a map's demo""" + getHighlightPresetAvailability(match_map_id: uuid!, target_steam_id: String!): HighlightPresetAvailability + + """Get index I/O statistics""" + getIndexIOStats(schemas: [String!]): [IndexIOStat]! + + """Get index usage statistics""" + getIndexStats(schemas: [String!]): [IndexStat]! + getNodeStats(node: String!): NodeStats! + + """Get detailed query analysis with EXPLAIN plan""" + getQueryDetail(queryid: String!): QueryDetail + + """Get enhanced query performance statistics""" + getQueryStats: [QueryStat]! + + """Get available database schemas""" + getSchemas: String! + getServiceStats: [PodStats]! + + """Get database storage statistics and reclaimable space""" + getStorageStats(schemas: [String!]): StorageStats! + + """Get table I/O statistics""" + getTableIOStats(schemas: [String!]): [TableIOStat]! + + """Get table access statistics""" + getTableStats(schemas: [String!]): [TableStat]! + + """Get TimescaleDB statistics""" + getTimescaleStats: TimescaleStats! + + """ + execute function "get_event_leaderboard" which returns "leaderboard_entries" + """ + get_event_leaderboard( + """ + input parameters for function "get_event_leaderboard" + """ + args: get_event_leaderboard_args! + + """distinct select on columns""" + distinct_on: [leaderboard_entries_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [leaderboard_entries_order_by!] + + """filter the rows returned""" + where: leaderboard_entries_bool_exp + ): [leaderboard_entries!]! + + """ + execute function "get_event_leaderboard" and query aggregates on result of table type "leaderboard_entries" + """ + get_event_leaderboard_aggregate( + """ + input parameters for function "get_event_leaderboard_aggregate" + """ + args: get_event_leaderboard_args! + + """distinct select on columns""" + distinct_on: [leaderboard_entries_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [leaderboard_entries_order_by!] + + """filter the rows returned""" + where: leaderboard_entries_bool_exp + ): leaderboard_entries_aggregate! + + """ + execute function "get_leaderboard" which returns "leaderboard_entries" + """ + get_leaderboard( + """ + input parameters for function "get_leaderboard" + """ + args: get_leaderboard_args! + + """distinct select on columns""" + distinct_on: [leaderboard_entries_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [leaderboard_entries_order_by!] + + """filter the rows returned""" + where: leaderboard_entries_bool_exp + ): [leaderboard_entries!]! + + """ + execute function "get_leaderboard" and query aggregates on result of table type "leaderboard_entries" + """ + get_leaderboard_aggregate( + """ + input parameters for function "get_leaderboard_aggregate" + """ + args: get_leaderboard_args! + + """distinct select on columns""" + distinct_on: [leaderboard_entries_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [leaderboard_entries_order_by!] + + """filter the rows returned""" + where: leaderboard_entries_bool_exp + ): leaderboard_entries_aggregate! + + """ + execute function "get_league_season_leaderboard" which returns "leaderboard_entries" + """ + get_league_season_leaderboard( + """ + input parameters for function "get_league_season_leaderboard" + """ + args: get_league_season_leaderboard_args! + + """distinct select on columns""" + distinct_on: [leaderboard_entries_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [leaderboard_entries_order_by!] + + """filter the rows returned""" + where: leaderboard_entries_bool_exp + ): [leaderboard_entries!]! + + """ + execute function "get_league_season_leaderboard" and query aggregates on result of table type "leaderboard_entries" + """ + get_league_season_leaderboard_aggregate( + """ + input parameters for function "get_league_season_leaderboard_aggregate" + """ + args: get_league_season_leaderboard_args! + + """distinct select on columns""" + distinct_on: [leaderboard_entries_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [leaderboard_entries_order_by!] + + """filter the rows returned""" + where: leaderboard_entries_bool_exp + ): leaderboard_entries_aggregate! + + """ + execute function "get_player_leaderboard_rank" which returns "player_leaderboard_rank" + """ + get_player_leaderboard_rank( + """ + input parameters for function "get_player_leaderboard_rank" + """ + args: get_player_leaderboard_rank_args! + + """distinct select on columns""" + distinct_on: [player_leaderboard_rank_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: [player_leaderboard_rank_order_by!] + + """filter the rows returned""" + where: player_leaderboard_rank_bool_exp + ): [player_leaderboard_rank!]! + + """ + execute function "get_player_leaderboard_rank" and query aggregates on result of table type "player_leaderboard_rank" + """ + get_player_leaderboard_rank_aggregate( + """ + input parameters for function "get_player_leaderboard_rank_aggregate" + """ + args: get_player_leaderboard_rank_args! + + """distinct select on columns""" + distinct_on: [player_leaderboard_rank_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: [player_leaderboard_rank_order_by!] + + """filter the rows returned""" + where: player_leaderboard_rank_bool_exp + ): player_leaderboard_rank_aggregate! + + """ + execute function "get_tournament_leaderboard" which returns "tournament_leaderboard_entries" + """ + get_tournament_leaderboard( + """ + input parameters for function "get_tournament_leaderboard" + """ + args: get_tournament_leaderboard_args! + + """distinct select on columns""" + distinct_on: [tournament_leaderboard_entries_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_leaderboard_entries_order_by!] + + """filter the rows returned""" + where: tournament_leaderboard_entries_bool_exp + ): [tournament_leaderboard_entries!]! + + """ + execute function "get_tournament_leaderboard" and query aggregates on result of table type "tournament_leaderboard_entries" + """ + get_tournament_leaderboard_aggregate( + """ + input parameters for function "get_tournament_leaderboard_aggregate" + """ + args: get_tournament_leaderboard_args! + + """distinct select on columns""" + distinct_on: [tournament_leaderboard_entries_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_leaderboard_entries_order_by!] + + """filter the rows returned""" + where: tournament_leaderboard_entries_bool_exp + ): tournament_leaderboard_entries_aggregate! + + """ + fetch data from the table: "leaderboard_entries" + """ + leaderboard_entries( + """distinct select on columns""" + distinct_on: [leaderboard_entries_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [leaderboard_entries_order_by!] + + """filter the rows returned""" + where: leaderboard_entries_bool_exp + ): [leaderboard_entries!]! + + """ + fetch aggregated fields from the table: "leaderboard_entries" + """ + leaderboard_entries_aggregate( + """distinct select on columns""" + distinct_on: [leaderboard_entries_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [leaderboard_entries_order_by!] + + """filter the rows returned""" + where: leaderboard_entries_bool_exp + ): leaderboard_entries_aggregate! + + """ + fetch data from the table: "league_divisions" + """ + league_divisions( + """distinct select on columns""" + distinct_on: [league_divisions_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: [league_divisions_order_by!] + + """filter the rows returned""" + where: league_divisions_bool_exp + ): [league_divisions!]! + + """ + fetch aggregated fields from the table: "league_divisions" + """ + league_divisions_aggregate( + """distinct select on columns""" + distinct_on: [league_divisions_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: [league_divisions_order_by!] + + """filter the rows returned""" + where: league_divisions_bool_exp + ): league_divisions_aggregate! + + """ + fetch data from the table: "league_divisions" using primary key columns + """ + league_divisions_by_pk(id: uuid!): league_divisions + + """ + fetch data from the table: "league_match_weeks" + """ + league_match_weeks( + """distinct select on columns""" + distinct_on: [league_match_weeks_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: [league_match_weeks_order_by!] + + """filter the rows returned""" + where: league_match_weeks_bool_exp + ): [league_match_weeks!]! + + """ + fetch aggregated fields from the table: "league_match_weeks" + """ + league_match_weeks_aggregate( + """distinct select on columns""" + distinct_on: [league_match_weeks_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: [league_match_weeks_order_by!] + + """filter the rows returned""" + where: league_match_weeks_bool_exp + ): league_match_weeks_aggregate! + + """ + fetch data from the table: "league_match_weeks" using primary key columns + """ + league_match_weeks_by_pk(id: uuid!): league_match_weeks + + """ + fetch data from the table: "league_relegation_playoffs" + """ + league_relegation_playoffs( + """distinct select on columns""" + distinct_on: [league_relegation_playoffs_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: [league_relegation_playoffs_order_by!] + + """filter the rows returned""" + where: league_relegation_playoffs_bool_exp + ): [league_relegation_playoffs!]! + + """ + fetch aggregated fields from the table: "league_relegation_playoffs" + """ + league_relegation_playoffs_aggregate( + """distinct select on columns""" + distinct_on: [league_relegation_playoffs_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: [league_relegation_playoffs_order_by!] + + """filter the rows returned""" + where: league_relegation_playoffs_bool_exp + ): league_relegation_playoffs_aggregate! + + """ + fetch data from the table: "league_relegation_playoffs" using primary key columns + """ + league_relegation_playoffs_by_pk(id: uuid!): league_relegation_playoffs + + """ + fetch data from the table: "league_scheduling_proposals" + """ + league_scheduling_proposals( + """distinct select on columns""" + distinct_on: [league_scheduling_proposals_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: [league_scheduling_proposals_order_by!] + + """filter the rows returned""" + where: league_scheduling_proposals_bool_exp + ): [league_scheduling_proposals!]! + + """ + fetch aggregated fields from the table: "league_scheduling_proposals" + """ + league_scheduling_proposals_aggregate( + """distinct select on columns""" + distinct_on: [league_scheduling_proposals_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: [league_scheduling_proposals_order_by!] + + """filter the rows returned""" + where: league_scheduling_proposals_bool_exp + ): league_scheduling_proposals_aggregate! + + """ + fetch data from the table: "league_scheduling_proposals" using primary key columns + """ + league_scheduling_proposals_by_pk(id: uuid!): league_scheduling_proposals + + """ + fetch data from the table: "league_season_divisions" + """ + league_season_divisions( + """distinct select on columns""" + distinct_on: [league_season_divisions_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: [league_season_divisions_order_by!] + + """filter the rows returned""" + where: league_season_divisions_bool_exp + ): [league_season_divisions!]! + + """ + fetch aggregated fields from the table: "league_season_divisions" + """ + league_season_divisions_aggregate( + """distinct select on columns""" + distinct_on: [league_season_divisions_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: [league_season_divisions_order_by!] + + """filter the rows returned""" + where: league_season_divisions_bool_exp + ): league_season_divisions_aggregate! + + """ + fetch data from the table: "league_season_divisions" using primary key columns + """ + league_season_divisions_by_pk(id: uuid!): league_season_divisions + + """ + fetch data from the table: "league_seasons" + """ + league_seasons( + """distinct select on columns""" + distinct_on: [league_seasons_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: [league_seasons_order_by!] + + """filter the rows returned""" + where: league_seasons_bool_exp + ): [league_seasons!]! + + """ + fetch aggregated fields from the table: "league_seasons" + """ + league_seasons_aggregate( + """distinct select on columns""" + distinct_on: [league_seasons_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: [league_seasons_order_by!] + + """filter the rows returned""" + where: league_seasons_bool_exp + ): league_seasons_aggregate! + + """fetch data from the table: "league_seasons" using primary key columns""" + league_seasons_by_pk(id: uuid!): league_seasons + + """ + fetch data from the table: "league_team_movements" + """ + league_team_movements( + """distinct select on columns""" + distinct_on: [league_team_movements_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: [league_team_movements_order_by!] + + """filter the rows returned""" + where: league_team_movements_bool_exp + ): [league_team_movements!]! + + """ + fetch aggregated fields from the table: "league_team_movements" + """ + league_team_movements_aggregate( + """distinct select on columns""" + distinct_on: [league_team_movements_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: [league_team_movements_order_by!] + + """filter the rows returned""" + where: league_team_movements_bool_exp + ): league_team_movements_aggregate! + + """ + fetch data from the table: "league_team_movements" using primary key columns + """ + league_team_movements_by_pk(id: uuid!): league_team_movements + + """ + fetch data from the table: "league_team_rosters" + """ + league_team_rosters( + """distinct select on columns""" + distinct_on: [league_team_rosters_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: [league_team_rosters_order_by!] + + """filter the rows returned""" + where: league_team_rosters_bool_exp + ): [league_team_rosters!]! + + """ + fetch aggregated fields from the table: "league_team_rosters" + """ + league_team_rosters_aggregate( + """distinct select on columns""" + distinct_on: [league_team_rosters_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: [league_team_rosters_order_by!] + + """filter the rows returned""" + where: league_team_rosters_bool_exp + ): league_team_rosters_aggregate! + + """ + fetch data from the table: "league_team_rosters" using primary key columns + """ + league_team_rosters_by_pk(league_team_season_id: uuid!, player_steam_id: bigint!): league_team_rosters + + """ + fetch data from the table: "league_team_seasons" + """ + league_team_seasons( + """distinct select on columns""" + distinct_on: [league_team_seasons_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: [league_team_seasons_order_by!] + + """filter the rows returned""" + where: league_team_seasons_bool_exp + ): [league_team_seasons!]! + + """ + fetch aggregated fields from the table: "league_team_seasons" + """ + league_team_seasons_aggregate( + """distinct select on columns""" + distinct_on: [league_team_seasons_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: [league_team_seasons_order_by!] + + """filter the rows returned""" + where: league_team_seasons_bool_exp + ): league_team_seasons_aggregate! + + """ + fetch data from the table: "league_team_seasons" using primary key columns + """ + league_team_seasons_by_pk(id: uuid!): league_team_seasons + + """ + fetch data from the table: "league_teams" + """ + league_teams( + """distinct select on columns""" + distinct_on: [league_teams_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [league_teams_order_by!] + + """filter the rows returned""" + where: league_teams_bool_exp + ): [league_teams!]! + + """ + fetch aggregated fields from the table: "league_teams" + """ + league_teams_aggregate( + """distinct select on columns""" + distinct_on: [league_teams_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [league_teams_order_by!] + + """filter the rows returned""" + where: league_teams_bool_exp + ): league_teams_aggregate! + + """fetch data from the table: "league_teams" using primary key columns""" + league_teams_by_pk(id: uuid!): league_teams + + """List files in game server directory""" + listServerFiles(node_id: String!, path: String, server_id: String): FileListResponse! + + """ + fetch data from the table: "lobbies" + """ + lobbies( + """distinct select on columns""" + distinct_on: [lobbies_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: [lobbies_order_by!] + + """filter the rows returned""" + where: lobbies_bool_exp + ): [lobbies!]! + + """ + fetch aggregated fields from the table: "lobbies" + """ + lobbies_aggregate( + """distinct select on columns""" + distinct_on: [lobbies_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: [lobbies_order_by!] + + """filter the rows returned""" + where: lobbies_bool_exp + ): lobbies_aggregate! + + """fetch data from the table: "lobbies" using primary key columns""" + lobbies_by_pk(id: uuid!): lobbies + + """An array relationship""" + lobby_players( + """distinct select on columns""" + distinct_on: [lobby_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [lobby_players_order_by!] + + """filter the rows returned""" + where: lobby_players_bool_exp + ): [lobby_players!]! + + """An aggregate relationship""" + lobby_players_aggregate( + """distinct select on columns""" + distinct_on: [lobby_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [lobby_players_order_by!] + + """filter the rows returned""" + where: lobby_players_bool_exp + ): lobby_players_aggregate! + + """fetch data from the table: "lobby_players" using primary key columns""" + lobby_players_by_pk(lobby_id: uuid!, steam_id: bigint!): lobby_players + + """ + fetch data from the table: "map_callouts" + """ + map_callouts( + """distinct select on columns""" + distinct_on: [map_callouts_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: [map_callouts_order_by!] + + """filter the rows returned""" + where: map_callouts_bool_exp + ): [map_callouts!]! + + """ + fetch aggregated fields from the table: "map_callouts" + """ + map_callouts_aggregate( + """distinct select on columns""" + distinct_on: [map_callouts_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: [map_callouts_order_by!] + + """filter the rows returned""" + where: map_callouts_bool_exp + ): map_callouts_aggregate! + + """fetch data from the table: "map_callouts" using primary key columns""" + map_callouts_by_pk(map_name: String!, name: String!): map_callouts + + """ + fetch data from the table: "map_pools" + """ + map_pools( + """distinct select on columns""" + distinct_on: [map_pools_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: [map_pools_order_by!] + + """filter the rows returned""" + where: map_pools_bool_exp + ): [map_pools!]! + + """ + fetch aggregated fields from the table: "map_pools" + """ + map_pools_aggregate( + """distinct select on columns""" + distinct_on: [map_pools_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: [map_pools_order_by!] + + """filter the rows returned""" + where: map_pools_bool_exp + ): map_pools_aggregate! + + """fetch data from the table: "map_pools" using primary key columns""" + map_pools_by_pk(id: uuid!): map_pools + + """An array relationship""" + maps( + """distinct select on columns""" + distinct_on: [maps_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: [maps_order_by!] + + """filter the rows returned""" + where: maps_bool_exp + ): [maps!]! + + """An aggregate relationship""" + maps_aggregate( + """distinct select on columns""" + distinct_on: [maps_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: [maps_order_by!] + + """filter the rows returned""" + where: maps_bool_exp + ): maps_aggregate! + + """fetch data from the table: "maps" using primary key columns""" + maps_by_pk(id: uuid!): maps + + """An array relationship""" + match_clips( + """distinct select on columns""" + distinct_on: [match_clips_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_clips_order_by!] + + """filter the rows returned""" + where: match_clips_bool_exp + ): [match_clips!]! + + """An aggregate relationship""" + match_clips_aggregate( + """distinct select on columns""" + distinct_on: [match_clips_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_clips_order_by!] + + """filter the rows returned""" + where: match_clips_bool_exp + ): match_clips_aggregate! + + """fetch data from the table: "match_clips" using primary key columns""" + match_clips_by_pk(id: uuid!): match_clips + + """ + fetch data from the table: "match_demo_sessions" + """ + match_demo_sessions( + """distinct select on columns""" + distinct_on: [match_demo_sessions_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_demo_sessions_order_by!] + + """filter the rows returned""" + where: match_demo_sessions_bool_exp + ): [match_demo_sessions!]! + + """ + fetch aggregated fields from the table: "match_demo_sessions" + """ + match_demo_sessions_aggregate( + """distinct select on columns""" + distinct_on: [match_demo_sessions_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_demo_sessions_order_by!] + + """filter the rows returned""" + where: match_demo_sessions_bool_exp + ): match_demo_sessions_aggregate! + + """ + fetch data from the table: "match_demo_sessions" using primary key columns + """ + match_demo_sessions_by_pk(id: uuid!): match_demo_sessions + + """An array relationship""" + match_lineup_players( + """distinct select on columns""" + distinct_on: [match_lineup_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_lineup_players_order_by!] + + """filter the rows returned""" + where: match_lineup_players_bool_exp + ): [match_lineup_players!]! + + """An aggregate relationship""" + match_lineup_players_aggregate( + """distinct select on columns""" + distinct_on: [match_lineup_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_lineup_players_order_by!] + + """filter the rows returned""" + where: match_lineup_players_bool_exp + ): match_lineup_players_aggregate! + + """ + fetch data from the table: "match_lineup_players" using primary key columns + """ + match_lineup_players_by_pk(id: uuid!): match_lineup_players + + """An array relationship""" + match_lineups( + """distinct select on columns""" + distinct_on: [match_lineups_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_lineups_order_by!] + + """filter the rows returned""" + where: match_lineups_bool_exp + ): [match_lineups!]! + + """An aggregate relationship""" + match_lineups_aggregate( + """distinct select on columns""" + distinct_on: [match_lineups_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_lineups_order_by!] + + """filter the rows returned""" + where: match_lineups_bool_exp + ): match_lineups_aggregate! + + """fetch data from the table: "match_lineups" using primary key columns""" + match_lineups_by_pk(id: uuid!): match_lineups + + """ + fetch data from the table: "match_map_demos" + """ + match_map_demos( + """distinct select on columns""" + distinct_on: [match_map_demos_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_map_demos_order_by!] + + """filter the rows returned""" + where: match_map_demos_bool_exp + ): [match_map_demos!]! + + """ + fetch aggregated fields from the table: "match_map_demos" + """ + match_map_demos_aggregate( + """distinct select on columns""" + distinct_on: [match_map_demos_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_map_demos_order_by!] + + """filter the rows returned""" + where: match_map_demos_bool_exp + ): match_map_demos_aggregate! + + """fetch data from the table: "match_map_demos" using primary key columns""" + match_map_demos_by_pk(id: uuid!): match_map_demos + + """ + fetch data from the table: "match_map_rounds" + """ + match_map_rounds( + """distinct select on columns""" + distinct_on: [match_map_rounds_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_map_rounds_order_by!] + + """filter the rows returned""" + where: match_map_rounds_bool_exp + ): [match_map_rounds!]! + + """ + fetch aggregated fields from the table: "match_map_rounds" + """ + match_map_rounds_aggregate( + """distinct select on columns""" + distinct_on: [match_map_rounds_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_map_rounds_order_by!] + + """filter the rows returned""" + where: match_map_rounds_bool_exp + ): match_map_rounds_aggregate! + + """ + fetch data from the table: "match_map_rounds" using primary key columns + """ + match_map_rounds_by_pk(id: uuid!): match_map_rounds + + """ + fetch data from the table: "match_map_veto_picks" + """ + match_map_veto_picks( + """distinct select on columns""" + distinct_on: [match_map_veto_picks_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_map_veto_picks_order_by!] + + """filter the rows returned""" + where: match_map_veto_picks_bool_exp + ): [match_map_veto_picks!]! + + """ + fetch aggregated fields from the table: "match_map_veto_picks" + """ + match_map_veto_picks_aggregate( + """distinct select on columns""" + distinct_on: [match_map_veto_picks_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_map_veto_picks_order_by!] + + """filter the rows returned""" + where: match_map_veto_picks_bool_exp + ): match_map_veto_picks_aggregate! + + """ + fetch data from the table: "match_map_veto_picks" using primary key columns + """ + match_map_veto_picks_by_pk(id: uuid!): match_map_veto_picks + + """An array relationship""" + match_maps( + """distinct select on columns""" + distinct_on: [match_maps_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_maps_order_by!] + + """filter the rows returned""" + where: match_maps_bool_exp + ): [match_maps!]! + + """An aggregate relationship""" + match_maps_aggregate( + """distinct select on columns""" + distinct_on: [match_maps_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_maps_order_by!] + + """filter the rows returned""" + where: match_maps_bool_exp + ): match_maps_aggregate! + + """fetch data from the table: "match_maps" using primary key columns""" + match_maps_by_pk(id: uuid!): match_maps + + """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! + + """fetch data from the table: "match_options" using primary key columns""" + match_options_by_pk(id: uuid!): match_options + + """ + fetch data from the table: "match_region_veto_picks" + """ + match_region_veto_picks( + """distinct select on columns""" + distinct_on: [match_region_veto_picks_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_region_veto_picks_order_by!] + + """filter the rows returned""" + where: match_region_veto_picks_bool_exp + ): [match_region_veto_picks!]! + + """ + fetch aggregated fields from the table: "match_region_veto_picks" + """ + match_region_veto_picks_aggregate( + """distinct select on columns""" + distinct_on: [match_region_veto_picks_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_region_veto_picks_order_by!] + + """filter the rows returned""" + where: match_region_veto_picks_bool_exp + ): match_region_veto_picks_aggregate! + + """ + fetch data from the table: "match_region_veto_picks" using primary key columns + """ + match_region_veto_picks_by_pk(id: uuid!): match_region_veto_picks + + """ + fetch data from the table: "match_streams" + """ + match_streams( + """distinct select on columns""" + distinct_on: [match_streams_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_streams_order_by!] + + """filter the rows returned""" + where: match_streams_bool_exp + ): [match_streams!]! + + """ + fetch aggregated fields from the table: "match_streams" + """ + match_streams_aggregate( + """distinct select on columns""" + distinct_on: [match_streams_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_streams_order_by!] + + """filter the rows returned""" + where: match_streams_bool_exp + ): match_streams_aggregate! + + """fetch data from the table: "match_streams" using primary key columns""" + match_streams_by_pk(id: uuid!): match_streams + + """ + fetch data from the table: "match_type_cfgs" + """ + match_type_cfgs( + """distinct select on columns""" + distinct_on: [match_type_cfgs_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_type_cfgs_order_by!] + + """filter the rows returned""" + where: match_type_cfgs_bool_exp + ): [match_type_cfgs!]! + + """ + fetch aggregated fields from the table: "match_type_cfgs" + """ + match_type_cfgs_aggregate( + """distinct select on columns""" + distinct_on: [match_type_cfgs_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_type_cfgs_order_by!] + + """filter the rows returned""" + where: match_type_cfgs_bool_exp + ): match_type_cfgs_aggregate! + + """fetch data from the table: "match_type_cfgs" using primary key columns""" + match_type_cfgs_by_pk(type: e_game_cfg_types_enum!): match_type_cfgs + + """An array relationship""" + matches( + """distinct select on columns""" + distinct_on: [matches_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: [matches_order_by!] + + """filter the rows returned""" + where: matches_bool_exp + ): [matches!]! + + """An aggregate relationship""" + matches_aggregate( + """distinct select on columns""" + distinct_on: [matches_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: [matches_order_by!] + + """filter the rows returned""" + where: matches_bool_exp + ): matches_aggregate! + + """fetch data from the table: "matches" using primary key columns""" + matches_by_pk(id: uuid!): matches + + """Gets Current User""" + me: MeResponse! + + """ + fetch data from the table: "migration_hashes.hashes" + """ + migration_hashes_hashes( + """distinct select on columns""" + distinct_on: [migration_hashes_hashes_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: [migration_hashes_hashes_order_by!] + + """filter the rows returned""" + where: migration_hashes_hashes_bool_exp + ): [migration_hashes_hashes!]! + + """ + fetch aggregated fields from the table: "migration_hashes.hashes" + """ + migration_hashes_hashes_aggregate( + """distinct select on columns""" + distinct_on: [migration_hashes_hashes_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: [migration_hashes_hashes_order_by!] + + """filter the rows returned""" + where: migration_hashes_hashes_bool_exp + ): migration_hashes_hashes_aggregate! + + """ + fetch data from the table: "migration_hashes.hashes" using primary key columns + """ + migration_hashes_hashes_by_pk(name: String!): migration_hashes_hashes + + """ + fetch data from the table: "v_my_friends" + """ + my_friends( + """distinct select on columns""" + distinct_on: [my_friends_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: [my_friends_order_by!] + + """filter the rows returned""" + where: my_friends_bool_exp + ): [my_friends!]! + + """ + fetch aggregated fields from the table: "v_my_friends" + """ + my_friends_aggregate( + """distinct select on columns""" + distinct_on: [my_friends_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: [my_friends_order_by!] + + """filter the rows returned""" + where: my_friends_bool_exp + ): my_friends_aggregate! + + """ + Fetch a single news post including draft content for editing. Caller role is verified against public.post_news_role. + """ + newsPostAdmin(id: uuid!): NewsPost + + """ + List all news posts including drafts for the management area. Caller role is verified against public.post_news_role. + """ + newsPostsAdmin: [NewsPost!] + + """ + fetch data from the table: "news_articles" + """ + news_articles( + """distinct select on columns""" + distinct_on: [news_articles_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: [news_articles_order_by!] + + """filter the rows returned""" + where: news_articles_bool_exp + ): [news_articles!]! + + """ + fetch aggregated fields from the table: "news_articles" + """ + news_articles_aggregate( + """distinct select on columns""" + distinct_on: [news_articles_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: [news_articles_order_by!] + + """filter the rows returned""" + where: news_articles_bool_exp + ): news_articles_aggregate! + + """fetch data from the table: "news_articles" using primary key columns""" + news_articles_by_pk(id: uuid!): news_articles + + """ + fetch data from the table: "notification_preferences" + """ + notification_preferences( + """distinct select on columns""" + distinct_on: [notification_preferences_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: [notification_preferences_order_by!] + + """filter the rows returned""" + where: notification_preferences_bool_exp + ): [notification_preferences!]! + + """ + fetch aggregated fields from the table: "notification_preferences" + """ + notification_preferences_aggregate( + """distinct select on columns""" + distinct_on: [notification_preferences_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: [notification_preferences_order_by!] + + """filter the rows returned""" + where: notification_preferences_bool_exp + ): notification_preferences_aggregate! + + """ + fetch data from the table: "notification_preferences" using primary key columns + """ + notification_preferences_by_pk(channel: String!, key: String!, steam_id: bigint!): notification_preferences + + """An array relationship""" + notifications( + """distinct select on columns""" + distinct_on: [notifications_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: [notifications_order_by!] + + """filter the rows returned""" + where: notifications_bool_exp + ): [notifications!]! + + """An aggregate relationship""" + notifications_aggregate( + """distinct select on columns""" + distinct_on: [notifications_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: [notifications_order_by!] + + """filter the rows returned""" + where: notifications_bool_exp + ): notifications_aggregate! + + """fetch data from the table: "notifications" using primary key columns""" + notifications_by_pk(id: uuid!): notifications + + """ + fetch data from the table: "pending_match_import_players" + """ + pending_match_import_players( + """distinct select on columns""" + distinct_on: [pending_match_import_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pending_match_import_players_order_by!] + + """filter the rows returned""" + where: pending_match_import_players_bool_exp + ): [pending_match_import_players!]! + + """ + fetch aggregated fields from the table: "pending_match_import_players" + """ + pending_match_import_players_aggregate( + """distinct select on columns""" + distinct_on: [pending_match_import_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pending_match_import_players_order_by!] + + """filter the rows returned""" + where: pending_match_import_players_bool_exp + ): pending_match_import_players_aggregate! + + """ + fetch data from the table: "pending_match_import_players" using primary key columns + """ + pending_match_import_players_by_pk(steam_id: bigint!, valve_match_id: numeric!): pending_match_import_players + + """ + fetch data from the table: "pending_match_imports" + """ + pending_match_imports( + """distinct select on columns""" + distinct_on: [pending_match_imports_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: [pending_match_imports_order_by!] + + """filter the rows returned""" + where: pending_match_imports_bool_exp + ): [pending_match_imports!]! + + """ + fetch aggregated fields from the table: "pending_match_imports" + """ + pending_match_imports_aggregate( + """distinct select on columns""" + distinct_on: [pending_match_imports_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: [pending_match_imports_order_by!] + + """filter the rows returned""" + where: pending_match_imports_bool_exp + ): pending_match_imports_aggregate! + + """ + fetch data from the table: "pending_match_imports" using primary key columns + """ + pending_match_imports_by_pk(valve_match_id: numeric!): pending_match_imports + + """ + fetch data from the table: "player_aim_stats_demo" + """ + player_aim_stats_demo( + """distinct select on columns""" + distinct_on: [player_aim_stats_demo_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: [player_aim_stats_demo_order_by!] + + """filter the rows returned""" + where: player_aim_stats_demo_bool_exp + ): [player_aim_stats_demo!]! + + """ + fetch aggregated fields from the table: "player_aim_stats_demo" + """ + player_aim_stats_demo_aggregate( + """distinct select on columns""" + distinct_on: [player_aim_stats_demo_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: [player_aim_stats_demo_order_by!] + + """filter the rows returned""" + where: player_aim_stats_demo_bool_exp + ): player_aim_stats_demo_aggregate! + + """ + fetch data from the table: "player_aim_stats_demo" using primary key columns + """ + player_aim_stats_demo_by_pk(attacker_steam_id: bigint!, match_map_id: uuid!): player_aim_stats_demo + + """ + fetch data from the table: "player_aim_weapon_stats" + """ + player_aim_weapon_stats( + """distinct select on columns""" + distinct_on: [player_aim_weapon_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [player_aim_weapon_stats_order_by!] + + """filter the rows returned""" + where: player_aim_weapon_stats_bool_exp + ): [player_aim_weapon_stats!]! + + """ + fetch aggregated fields from the table: "player_aim_weapon_stats" + """ + player_aim_weapon_stats_aggregate( + """distinct select on columns""" + distinct_on: [player_aim_weapon_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [player_aim_weapon_stats_order_by!] + + """filter the rows returned""" + where: player_aim_weapon_stats_bool_exp + ): player_aim_weapon_stats_aggregate! + + """ + fetch data from the table: "player_aim_weapon_stats" using primary key columns + """ + player_aim_weapon_stats_by_pk(match_map_id: uuid!, steam_id: bigint!, weapon_class: String!): player_aim_weapon_stats + + """An array relationship""" + player_assists( + """distinct select on columns""" + distinct_on: [player_assists_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: [player_assists_order_by!] + + """filter the rows returned""" + where: player_assists_bool_exp + ): [player_assists!]! + + """An aggregate relationship""" + player_assists_aggregate( + """distinct select on columns""" + distinct_on: [player_assists_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: [player_assists_order_by!] + + """filter the rows returned""" + where: player_assists_bool_exp + ): player_assists_aggregate! + + """fetch data from the table: "player_assists" using primary key columns""" + player_assists_by_pk(attacked_steam_id: bigint!, attacker_steam_id: bigint!, match_map_id: uuid!, time: timestamptz!): player_assists + + """ + fetch data from the table: "player_career_stats_v" + """ + player_career_stats_v( + """distinct select on columns""" + distinct_on: [player_career_stats_v_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: [player_career_stats_v_order_by!] + + """filter the rows returned""" + where: player_career_stats_v_bool_exp + ): [player_career_stats_v!]! + + """ + fetch aggregated fields from the table: "player_career_stats_v" + """ + player_career_stats_v_aggregate( + """distinct select on columns""" + distinct_on: [player_career_stats_v_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: [player_career_stats_v_order_by!] + + """filter the rows returned""" + where: player_career_stats_v_bool_exp + ): player_career_stats_v_aggregate! + + """An array relationship""" + player_damages( + """distinct select on columns""" + distinct_on: [player_damages_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: [player_damages_order_by!] + + """filter the rows returned""" + where: player_damages_bool_exp + ): [player_damages!]! + + """An aggregate relationship""" + player_damages_aggregate( + """distinct select on columns""" + distinct_on: [player_damages_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: [player_damages_order_by!] + + """filter the rows returned""" + where: player_damages_bool_exp + ): player_damages_aggregate! + + """fetch data from the table: "player_damages" using primary key columns""" + player_damages_by_pk(id: uuid!, match_map_id: uuid!, time: timestamptz!): player_damages + + """ + fetch data from the table: "player_elo" + """ + player_elo( + """distinct select on columns""" + distinct_on: [player_elo_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: [player_elo_order_by!] + + """filter the rows returned""" + where: player_elo_bool_exp + ): [player_elo!]! + + """ + fetch aggregated fields from the table: "player_elo" + """ + player_elo_aggregate( + """distinct select on columns""" + distinct_on: [player_elo_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: [player_elo_order_by!] + + """filter the rows returned""" + where: player_elo_bool_exp + ): player_elo_aggregate! + + """fetch data from the table: "player_elo" using primary key columns""" + player_elo_by_pk(match_id: uuid!, steam_id: bigint!, type: e_match_types_enum!): player_elo + + """ + fetch data from the table: "player_faceit_rank_history" + """ + player_faceit_rank_history( + """distinct select on columns""" + distinct_on: [player_faceit_rank_history_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: [player_faceit_rank_history_order_by!] + + """filter the rows returned""" + where: player_faceit_rank_history_bool_exp + ): [player_faceit_rank_history!]! + + """ + fetch aggregated fields from the table: "player_faceit_rank_history" + """ + player_faceit_rank_history_aggregate( + """distinct select on columns""" + distinct_on: [player_faceit_rank_history_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: [player_faceit_rank_history_order_by!] + + """filter the rows returned""" + where: player_faceit_rank_history_bool_exp + ): player_faceit_rank_history_aggregate! + + """ + fetch data from the table: "player_faceit_rank_history" using primary key columns + """ + player_faceit_rank_history_by_pk(id: uuid!): player_faceit_rank_history + + """An array relationship""" + player_flashes( + """distinct select on columns""" + distinct_on: [player_flashes_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: [player_flashes_order_by!] + + """filter the rows returned""" + where: player_flashes_bool_exp + ): [player_flashes!]! + + """An aggregate relationship""" + player_flashes_aggregate( + """distinct select on columns""" + distinct_on: [player_flashes_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: [player_flashes_order_by!] + + """filter the rows returned""" + where: player_flashes_bool_exp + ): player_flashes_aggregate! + + """fetch data from the table: "player_flashes" using primary key columns""" + player_flashes_by_pk(attacked_steam_id: bigint!, attacker_steam_id: bigint!, match_map_id: uuid!, time: timestamptz!): player_flashes + + """An array relationship""" + player_kills( + """distinct select on columns""" + distinct_on: [player_kills_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: [player_kills_order_by!] + + """filter the rows returned""" + where: player_kills_bool_exp + ): [player_kills!]! + + """An aggregate relationship""" + player_kills_aggregate( + """distinct select on columns""" + distinct_on: [player_kills_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: [player_kills_order_by!] + + """filter the rows returned""" + where: player_kills_bool_exp + ): player_kills_aggregate! + + """fetch data from the table: "player_kills" using primary key columns""" + player_kills_by_pk(attacked_steam_id: bigint!, attacker_steam_id: bigint!, match_map_id: uuid!, time: timestamptz!): player_kills + + """ + fetch data from the table: "player_kills_by_weapon" + """ + player_kills_by_weapon( + """distinct select on columns""" + distinct_on: [player_kills_by_weapon_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: [player_kills_by_weapon_order_by!] + + """filter the rows returned""" + where: player_kills_by_weapon_bool_exp + ): [player_kills_by_weapon!]! + + """ + fetch aggregated fields from the table: "player_kills_by_weapon" + """ + player_kills_by_weapon_aggregate( + """distinct select on columns""" + distinct_on: [player_kills_by_weapon_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: [player_kills_by_weapon_order_by!] + + """filter the rows returned""" + where: player_kills_by_weapon_bool_exp + ): player_kills_by_weapon_aggregate! + + """ + fetch data from the table: "player_kills_by_weapon" using primary key columns + """ + player_kills_by_weapon_by_pk(player_steam_id: bigint!, with: String!): player_kills_by_weapon + + """ + fetch data from the table: "player_leaderboard_rank" + """ + player_leaderboard_rank( + """distinct select on columns""" + distinct_on: [player_leaderboard_rank_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: [player_leaderboard_rank_order_by!] + + """filter the rows returned""" + where: player_leaderboard_rank_bool_exp + ): [player_leaderboard_rank!]! + + """ + fetch aggregated fields from the table: "player_leaderboard_rank" + """ + player_leaderboard_rank_aggregate( + """distinct select on columns""" + distinct_on: [player_leaderboard_rank_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: [player_leaderboard_rank_order_by!] + + """filter the rows returned""" + where: player_leaderboard_rank_bool_exp + ): player_leaderboard_rank_aggregate! + + """ + fetch data from the table: "player_match_map_stats" + """ + player_match_map_stats( + """distinct select on columns""" + distinct_on: [player_match_map_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [player_match_map_stats_order_by!] + + """filter the rows returned""" + where: player_match_map_stats_bool_exp + ): [player_match_map_stats!]! + + """ + fetch aggregated fields from the table: "player_match_map_stats" + """ + player_match_map_stats_aggregate( + """distinct select on columns""" + distinct_on: [player_match_map_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [player_match_map_stats_order_by!] + + """filter the rows returned""" + where: player_match_map_stats_bool_exp + ): player_match_map_stats_aggregate! + + """ + fetch data from the table: "player_match_map_stats" using primary key columns + """ + player_match_map_stats_by_pk(match_map_id: uuid!, steam_id: bigint!): player_match_map_stats + + """ + fetch data from the table: "player_match_performance_v" + """ + player_match_performance_v( + """distinct select on columns""" + distinct_on: [player_match_performance_v_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: [player_match_performance_v_order_by!] + + """filter the rows returned""" + where: player_match_performance_v_bool_exp + ): [player_match_performance_v!]! + + """ + fetch aggregated fields from the table: "player_match_performance_v" + """ + player_match_performance_v_aggregate( + """distinct select on columns""" + distinct_on: [player_match_performance_v_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: [player_match_performance_v_order_by!] + + """filter the rows returned""" + where: player_match_performance_v_bool_exp + ): player_match_performance_v_aggregate! + + """ + fetch data from the table: "player_match_stats_v" + """ + player_match_stats_v( + """distinct select on columns""" + distinct_on: [player_match_stats_v_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: [player_match_stats_v_order_by!] + + """filter the rows returned""" + where: player_match_stats_v_bool_exp + ): [player_match_stats_v!]! + + """ + fetch aggregated fields from the table: "player_match_stats_v" + """ + player_match_stats_v_aggregate( + """distinct select on columns""" + distinct_on: [player_match_stats_v_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: [player_match_stats_v_order_by!] + + """filter the rows returned""" + where: player_match_stats_v_bool_exp + ): player_match_stats_v_aggregate! + + """An array relationship""" + player_objectives( + """distinct select on columns""" + distinct_on: [player_objectives_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: [player_objectives_order_by!] + + """filter the rows returned""" + where: player_objectives_bool_exp + ): [player_objectives!]! + + """An aggregate relationship""" + player_objectives_aggregate( + """distinct select on columns""" + distinct_on: [player_objectives_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: [player_objectives_order_by!] + + """filter the rows returned""" + where: player_objectives_bool_exp + ): player_objectives_aggregate! + + """ + fetch data from the table: "player_objectives" using primary key columns + """ + player_objectives_by_pk(match_map_id: uuid!, player_steam_id: bigint!, time: timestamptz!): player_objectives + + """ + fetch data from the table: "player_performance_v" + """ + player_performance_v( + """distinct select on columns""" + distinct_on: [player_performance_v_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: [player_performance_v_order_by!] + + """filter the rows returned""" + where: player_performance_v_bool_exp + ): [player_performance_v!]! + + """ + fetch aggregated fields from the table: "player_performance_v" + """ + player_performance_v_aggregate( + """distinct select on columns""" + distinct_on: [player_performance_v_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: [player_performance_v_order_by!] + + """filter the rows returned""" + where: player_performance_v_bool_exp + ): player_performance_v_aggregate! + + """ + fetch data from the table: "player_premier_rank_history" + """ + player_premier_rank_history( + """distinct select on columns""" + distinct_on: [player_premier_rank_history_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: [player_premier_rank_history_order_by!] + + """filter the rows returned""" + where: player_premier_rank_history_bool_exp + ): [player_premier_rank_history!]! + + """ + fetch aggregated fields from the table: "player_premier_rank_history" + """ + player_premier_rank_history_aggregate( + """distinct select on columns""" + distinct_on: [player_premier_rank_history_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: [player_premier_rank_history_order_by!] + + """filter the rows returned""" + where: player_premier_rank_history_bool_exp + ): player_premier_rank_history_aggregate! + + """ + fetch data from the table: "player_premier_rank_history" using primary key columns + """ + player_premier_rank_history_by_pk(id: uuid!): player_premier_rank_history + + """ + fetch data from the table: "player_sanctions" + """ + player_sanctions( + """distinct select on columns""" + distinct_on: [player_sanctions_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: [player_sanctions_order_by!] + + """filter the rows returned""" + where: player_sanctions_bool_exp + ): [player_sanctions!]! + + """ + fetch aggregated fields from the table: "player_sanctions" + """ + player_sanctions_aggregate( + """distinct select on columns""" + distinct_on: [player_sanctions_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: [player_sanctions_order_by!] + + """filter the rows returned""" + where: player_sanctions_bool_exp + ): player_sanctions_aggregate! + + """ + fetch data from the table: "player_sanctions" using primary key columns + """ + player_sanctions_by_pk(created_at: timestamptz!, id: uuid!): player_sanctions + + """An array relationship""" + player_season_stats( + """distinct select on columns""" + distinct_on: [player_season_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [player_season_stats_order_by!] + + """filter the rows returned""" + where: player_season_stats_bool_exp + ): [player_season_stats!]! + + """An aggregate relationship""" + player_season_stats_aggregate( + """distinct select on columns""" + distinct_on: [player_season_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [player_season_stats_order_by!] + + """filter the rows returned""" + where: player_season_stats_bool_exp + ): player_season_stats_aggregate! + + """ + fetch data from the table: "player_season_stats" using primary key columns + """ + player_season_stats_by_pk(player_steam_id: bigint!, season_id: uuid!): player_season_stats + + """ + fetch data from the table: "player_stats" + """ + player_stats( + """distinct select on columns""" + distinct_on: [player_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [player_stats_order_by!] + + """filter the rows returned""" + where: player_stats_bool_exp + ): [player_stats!]! + + """ + fetch aggregated fields from the table: "player_stats" + """ + player_stats_aggregate( + """distinct select on columns""" + distinct_on: [player_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [player_stats_order_by!] + + """filter the rows returned""" + where: player_stats_bool_exp + ): player_stats_aggregate! + + """fetch data from the table: "player_stats" using primary key columns""" + player_stats_by_pk(player_steam_id: bigint!): player_stats + + """ + fetch data from the table: "player_steam_bot_friend" + """ + player_steam_bot_friend( + """distinct select on columns""" + distinct_on: [player_steam_bot_friend_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: [player_steam_bot_friend_order_by!] + + """filter the rows returned""" + where: player_steam_bot_friend_bool_exp + ): [player_steam_bot_friend!]! + + """ + fetch aggregated fields from the table: "player_steam_bot_friend" + """ + player_steam_bot_friend_aggregate( + """distinct select on columns""" + distinct_on: [player_steam_bot_friend_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: [player_steam_bot_friend_order_by!] + + """filter the rows returned""" + where: player_steam_bot_friend_bool_exp + ): player_steam_bot_friend_aggregate! + + """ + fetch data from the table: "player_steam_bot_friend" using primary key columns + """ + player_steam_bot_friend_by_pk(steam_id: bigint!): player_steam_bot_friend + + """ + fetch data from the table: "player_steam_match_auth" + """ + player_steam_match_auth( + """distinct select on columns""" + distinct_on: [player_steam_match_auth_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: [player_steam_match_auth_order_by!] + + """filter the rows returned""" + where: player_steam_match_auth_bool_exp + ): [player_steam_match_auth!]! + + """ + fetch aggregated fields from the table: "player_steam_match_auth" + """ + player_steam_match_auth_aggregate( + """distinct select on columns""" + distinct_on: [player_steam_match_auth_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: [player_steam_match_auth_order_by!] + + """filter the rows returned""" + where: player_steam_match_auth_bool_exp + ): player_steam_match_auth_aggregate! + + """ + fetch data from the table: "player_steam_match_auth" using primary key columns + """ + player_steam_match_auth_by_pk(steam_id: bigint!): player_steam_match_auth + + """ + fetch data from the table: "player_unused_utility" + """ + player_unused_utility( + """distinct select on columns""" + distinct_on: [player_unused_utility_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: [player_unused_utility_order_by!] + + """filter the rows returned""" + where: player_unused_utility_bool_exp + ): [player_unused_utility!]! + + """ + fetch aggregated fields from the table: "player_unused_utility" + """ + player_unused_utility_aggregate( + """distinct select on columns""" + distinct_on: [player_unused_utility_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: [player_unused_utility_order_by!] + + """filter the rows returned""" + where: player_unused_utility_bool_exp + ): player_unused_utility_aggregate! + + """ + fetch data from the table: "player_unused_utility" using primary key columns + """ + player_unused_utility_by_pk(match_map_id: uuid!, player_steam_id: bigint!): player_unused_utility + + """An array relationship""" + player_utility( + """distinct select on columns""" + distinct_on: [player_utility_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: [player_utility_order_by!] + + """filter the rows returned""" + where: player_utility_bool_exp + ): [player_utility!]! + + """An aggregate relationship""" + player_utility_aggregate( + """distinct select on columns""" + distinct_on: [player_utility_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: [player_utility_order_by!] + + """filter the rows returned""" + where: player_utility_bool_exp + ): player_utility_aggregate! + + """fetch data from the table: "player_utility" using primary key columns""" + player_utility_by_pk(attacker_steam_id: bigint!, match_map_id: uuid!, time: timestamptz!): player_utility + + """ + fetch data from the table: "player_weapon_stats_v" + """ + player_weapon_stats_v( + """distinct select on columns""" + distinct_on: [player_weapon_stats_v_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: [player_weapon_stats_v_order_by!] + + """filter the rows returned""" + where: player_weapon_stats_v_bool_exp + ): [player_weapon_stats_v!]! + + """ + fetch aggregated fields from the table: "player_weapon_stats_v" + """ + player_weapon_stats_v_aggregate( + """distinct select on columns""" + distinct_on: [player_weapon_stats_v_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: [player_weapon_stats_v_order_by!] + + """filter the rows returned""" + where: player_weapon_stats_v_bool_exp + ): player_weapon_stats_v_aggregate! + + """ + fetch data from the table: "players" + """ + players( + """distinct select on columns""" + distinct_on: [players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [players_order_by!] + + """filter the rows returned""" + where: players_bool_exp + ): [players!]! + + """ + fetch aggregated fields from the table: "players" + """ + players_aggregate( + """distinct select on columns""" + distinct_on: [players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [players_order_by!] + + """filter the rows returned""" + where: players_bool_exp + ): players_aggregate! + + """fetch data from the table: "players" using primary key columns""" + players_by_pk(steam_id: bigint!): players + + """ + fetch data from the table: "plugin_versions" + """ + plugin_versions( + """distinct select on columns""" + distinct_on: [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: [plugin_versions_order_by!] + + """filter the rows returned""" + where: plugin_versions_bool_exp + ): [plugin_versions!]! + + """ + fetch aggregated fields from the table: "plugin_versions" + """ + plugin_versions_aggregate( + """distinct select on columns""" + distinct_on: [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: [plugin_versions_order_by!] + + """filter the rows returned""" + where: plugin_versions_bool_exp + ): plugin_versions_aggregate! + + """fetch data from the table: "plugin_versions" using primary key columns""" + plugin_versions_by_pk(runtime: e_plugin_runtimes_enum!, version: String!): plugin_versions + + """ + fetch data from the table: "push_subscriptions" + """ + push_subscriptions( + """distinct select on columns""" + distinct_on: [push_subscriptions_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: [push_subscriptions_order_by!] + + """filter the rows returned""" + where: push_subscriptions_bool_exp + ): [push_subscriptions!]! + + """ + fetch aggregated fields from the table: "push_subscriptions" + """ + push_subscriptions_aggregate( + """distinct select on columns""" + distinct_on: [push_subscriptions_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: [push_subscriptions_order_by!] + + """filter the rows returned""" + where: push_subscriptions_bool_exp + ): push_subscriptions_aggregate! + + """ + fetch data from the table: "push_subscriptions" using primary key columns + """ + push_subscriptions_by_pk(id: uuid!): push_subscriptions + + """Read file content from game server""" + readServerFile(file_path: String!, node_id: String!, server_id: String): FileContentResponse! + + """ + fetch data from the table: "v_role_permissions" + """ + role_permissions( + """distinct select on columns""" + distinct_on: [role_permissions_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: [role_permissions_order_by!] + + """filter the rows returned""" + where: role_permissions_bool_exp + ): [role_permissions!]! + + """ + fetch aggregated fields from the table: "v_role_permissions" + """ + role_permissions_aggregate( + """distinct select on columns""" + distinct_on: [role_permissions_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: [role_permissions_order_by!] + + """filter the rows returned""" + where: role_permissions_bool_exp + ): role_permissions_aggregate! + + """ + fetch data from the table: "seasons" + """ + seasons( + """distinct select on columns""" + distinct_on: [seasons_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: [seasons_order_by!] + + """filter the rows returned""" + where: seasons_bool_exp + ): [seasons!]! + + """ + fetch aggregated fields from the table: "seasons" + """ + seasons_aggregate( + """distinct select on columns""" + distinct_on: [seasons_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: [seasons_order_by!] + + """filter the rows returned""" + where: seasons_bool_exp + ): seasons_aggregate! + + """fetch data from the table: "seasons" using primary key columns""" + seasons_by_pk(id: uuid!): seasons + + """ + fetch data from the table: "server_regions" + """ + server_regions( + """distinct select on columns""" + distinct_on: [server_regions_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: [server_regions_order_by!] + + """filter the rows returned""" + where: server_regions_bool_exp + ): [server_regions!]! + + """ + fetch aggregated fields from the table: "server_regions" + """ + server_regions_aggregate( + """distinct select on columns""" + distinct_on: [server_regions_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: [server_regions_order_by!] + + """filter the rows returned""" + where: server_regions_bool_exp + ): server_regions_aggregate! + + """fetch data from the table: "server_regions" using primary key columns""" + server_regions_by_pk(value: String!): server_regions + + """An array relationship""" + servers( + """distinct select on columns""" + distinct_on: [servers_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: [servers_order_by!] + + """filter the rows returned""" + where: servers_bool_exp + ): [servers!]! + + """An aggregate relationship""" + servers_aggregate( + """distinct select on columns""" + distinct_on: [servers_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: [servers_order_by!] + + """filter the rows returned""" + where: servers_bool_exp + ): servers_aggregate! + + """fetch data from the table: "servers" using primary key columns""" + servers_by_pk(id: uuid!): servers + + """ + fetch data from the table: "settings" + """ + settings( + """distinct select on columns""" + distinct_on: [settings_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: [settings_order_by!] + + """filter the rows returned""" + where: settings_bool_exp + ): [settings!]! + + """ + fetch aggregated fields from the table: "settings" + """ + settings_aggregate( + """distinct select on columns""" + distinct_on: [settings_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: [settings_order_by!] + + """filter the rows returned""" + where: settings_bool_exp + ): settings_aggregate! + + """fetch data from the table: "settings" using primary key columns""" + settings_by_pk(name: String!): settings + + """Steam presence bot admin dashboard status""" + steamPresenceAdminStatus: SteamPresenceAdminStatusOutput! + + """ + fetch data from the table: "steam_account_claims" + """ + steam_account_claims( + """distinct select on columns""" + distinct_on: [steam_account_claims_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: [steam_account_claims_order_by!] + + """filter the rows returned""" + where: steam_account_claims_bool_exp + ): [steam_account_claims!]! + + """ + fetch aggregated fields from the table: "steam_account_claims" + """ + steam_account_claims_aggregate( + """distinct select on columns""" + distinct_on: [steam_account_claims_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: [steam_account_claims_order_by!] + + """filter the rows returned""" + where: steam_account_claims_bool_exp + ): steam_account_claims_aggregate! + + """ + fetch data from the table: "steam_account_claims" using primary key columns + """ + steam_account_claims_by_pk(id: uuid!): steam_account_claims + + """ + fetch data from the table: "steam_accounts" + """ + steam_accounts( + """distinct select on columns""" + distinct_on: [steam_accounts_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: [steam_accounts_order_by!] + + """filter the rows returned""" + where: steam_accounts_bool_exp + ): [steam_accounts!]! + + """ + fetch aggregated fields from the table: "steam_accounts" + """ + steam_accounts_aggregate( + """distinct select on columns""" + distinct_on: [steam_accounts_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: [steam_accounts_order_by!] + + """filter the rows returned""" + where: steam_accounts_bool_exp + ): steam_accounts_aggregate! + + """fetch data from the table: "steam_accounts" using primary key columns""" + steam_accounts_by_pk(id: uuid!): steam_accounts + + """ + fetch data from the table: "system_alerts" + """ + system_alerts( + """distinct select on columns""" + distinct_on: [system_alerts_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: [system_alerts_order_by!] + + """filter the rows returned""" + where: system_alerts_bool_exp + ): [system_alerts!]! + + """ + fetch aggregated fields from the table: "system_alerts" + """ + system_alerts_aggregate( + """distinct select on columns""" + distinct_on: [system_alerts_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: [system_alerts_order_by!] + + """filter the rows returned""" + where: system_alerts_bool_exp + ): system_alerts_aggregate! + + """fetch data from the table: "system_alerts" using primary key columns""" + system_alerts_by_pk(id: uuid!): system_alerts + + """teamCalendarUrl""" + teamCalendarUrl(team_id: uuid!): TeamCalendarOutput + + """An array relationship""" + team_invites( + """distinct select on columns""" + distinct_on: [team_invites_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: [team_invites_order_by!] + + """filter the rows returned""" + where: team_invites_bool_exp + ): [team_invites!]! + + """An aggregate relationship""" + team_invites_aggregate( + """distinct select on columns""" + distinct_on: [team_invites_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: [team_invites_order_by!] + + """filter the rows returned""" + where: team_invites_bool_exp + ): team_invites_aggregate! + + """fetch data from the table: "team_invites" using primary key columns""" + team_invites_by_pk(id: uuid!): team_invites + + """ + fetch data from the table: "team_roster" + """ + team_roster( + """distinct select on columns""" + distinct_on: [team_roster_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: [team_roster_order_by!] + + """filter the rows returned""" + where: team_roster_bool_exp + ): [team_roster!]! + + """ + fetch aggregated fields from the table: "team_roster" + """ + team_roster_aggregate( + """distinct select on columns""" + distinct_on: [team_roster_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: [team_roster_order_by!] + + """filter the rows returned""" + where: team_roster_bool_exp + ): team_roster_aggregate! + + """fetch data from the table: "team_roster" using primary key columns""" + team_roster_by_pk(player_steam_id: bigint!, team_id: uuid!): team_roster + + """ + fetch data from the table: "team_scrim_alerts" + """ + team_scrim_alerts( + """distinct select on columns""" + distinct_on: [team_scrim_alerts_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: [team_scrim_alerts_order_by!] + + """filter the rows returned""" + where: team_scrim_alerts_bool_exp + ): [team_scrim_alerts!]! + + """ + fetch aggregated fields from the table: "team_scrim_alerts" + """ + team_scrim_alerts_aggregate( + """distinct select on columns""" + distinct_on: [team_scrim_alerts_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: [team_scrim_alerts_order_by!] + + """filter the rows returned""" + where: team_scrim_alerts_bool_exp + ): team_scrim_alerts_aggregate! + + """ + fetch data from the table: "team_scrim_alerts" using primary key columns + """ + team_scrim_alerts_by_pk(id: uuid!): team_scrim_alerts + + """ + fetch data from the table: "team_scrim_availability" + """ + team_scrim_availability( + """distinct select on columns""" + distinct_on: [team_scrim_availability_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: [team_scrim_availability_order_by!] + + """filter the rows returned""" + where: team_scrim_availability_bool_exp + ): [team_scrim_availability!]! + + """ + fetch aggregated fields from the table: "team_scrim_availability" + """ + team_scrim_availability_aggregate( + """distinct select on columns""" + distinct_on: [team_scrim_availability_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: [team_scrim_availability_order_by!] + + """filter the rows returned""" + where: team_scrim_availability_bool_exp + ): team_scrim_availability_aggregate! + + """ + fetch data from the table: "team_scrim_availability" using primary key columns + """ + team_scrim_availability_by_pk(id: uuid!): team_scrim_availability + + """ + fetch data from the table: "team_scrim_request_proposals" + """ + team_scrim_request_proposals( + """distinct select on columns""" + distinct_on: [team_scrim_request_proposals_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: [team_scrim_request_proposals_order_by!] + + """filter the rows returned""" + where: team_scrim_request_proposals_bool_exp + ): [team_scrim_request_proposals!]! + + """ + fetch aggregated fields from the table: "team_scrim_request_proposals" + """ + team_scrim_request_proposals_aggregate( + """distinct select on columns""" + distinct_on: [team_scrim_request_proposals_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: [team_scrim_request_proposals_order_by!] + + """filter the rows returned""" + where: team_scrim_request_proposals_bool_exp + ): team_scrim_request_proposals_aggregate! + + """ + fetch data from the table: "team_scrim_request_proposals" using primary key columns + """ + team_scrim_request_proposals_by_pk(id: uuid!): team_scrim_request_proposals + + """ + fetch data from the table: "team_scrim_requests" + """ + team_scrim_requests( + """distinct select on columns""" + distinct_on: [team_scrim_requests_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: [team_scrim_requests_order_by!] + + """filter the rows returned""" + where: team_scrim_requests_bool_exp + ): [team_scrim_requests!]! + + """ + fetch aggregated fields from the table: "team_scrim_requests" + """ + team_scrim_requests_aggregate( + """distinct select on columns""" + distinct_on: [team_scrim_requests_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: [team_scrim_requests_order_by!] + + """filter the rows returned""" + where: team_scrim_requests_bool_exp + ): team_scrim_requests_aggregate! + + """ + fetch data from the table: "team_scrim_requests" using primary key columns + """ + team_scrim_requests_by_pk(id: uuid!): team_scrim_requests + + """ + fetch data from the table: "team_scrim_settings" + """ + team_scrim_settings( + """distinct select on columns""" + distinct_on: [team_scrim_settings_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: [team_scrim_settings_order_by!] + + """filter the rows returned""" + where: team_scrim_settings_bool_exp + ): [team_scrim_settings!]! + + """ + fetch aggregated fields from the table: "team_scrim_settings" + """ + team_scrim_settings_aggregate( + """distinct select on columns""" + distinct_on: [team_scrim_settings_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: [team_scrim_settings_order_by!] + + """filter the rows returned""" + where: team_scrim_settings_bool_exp + ): team_scrim_settings_aggregate! + + """ + fetch data from the table: "team_scrim_settings" using primary key columns + """ + team_scrim_settings_by_pk(id: uuid!): team_scrim_settings + + """ + fetch data from the table: "team_suggestions" + """ + team_suggestions( + """distinct select on columns""" + distinct_on: [team_suggestions_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: [team_suggestions_order_by!] + + """filter the rows returned""" + where: team_suggestions_bool_exp + ): [team_suggestions!]! + + """ + fetch aggregated fields from the table: "team_suggestions" + """ + team_suggestions_aggregate( + """distinct select on columns""" + distinct_on: [team_suggestions_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: [team_suggestions_order_by!] + + """filter the rows returned""" + where: team_suggestions_bool_exp + ): team_suggestions_aggregate! + + """ + fetch data from the table: "team_suggestions" using primary key columns + """ + team_suggestions_by_pk(id: uuid!): team_suggestions + + """ + fetch data from the table: "teams" + """ + teams( + """distinct select on columns""" + distinct_on: [teams_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [teams_order_by!] + + """filter the rows returned""" + where: teams_bool_exp + ): [teams!]! + + """ + fetch aggregated fields from the table: "teams" + """ + teams_aggregate( + """distinct select on columns""" + distinct_on: [teams_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [teams_order_by!] + + """filter the rows returned""" + where: teams_bool_exp + ): teams_aggregate! + + """fetch data from the table: "teams" using primary key columns""" + teams_by_pk(id: uuid!): teams + telemetryStats(includeSelf: Boolean): TelemetryStats! + + """ + fetch data from the table: "tournament_awards" + """ + tournament_awards( + """distinct select on columns""" + distinct_on: [tournament_awards_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_awards_order_by!] + + """filter the rows returned""" + where: tournament_awards_bool_exp + ): [tournament_awards!]! + + """ + fetch aggregated fields from the table: "tournament_awards" + """ + tournament_awards_aggregate( + """distinct select on columns""" + distinct_on: [tournament_awards_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_awards_order_by!] + + """filter the rows returned""" + where: tournament_awards_bool_exp + ): tournament_awards_aggregate! + + """ + fetch data from the table: "tournament_awards" using primary key columns + """ + tournament_awards_by_pk(id: uuid!): tournament_awards + + """An array relationship""" + tournament_brackets( + """distinct select on columns""" + distinct_on: [tournament_brackets_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_brackets_order_by!] + + """filter the rows returned""" + where: tournament_brackets_bool_exp + ): [tournament_brackets!]! + + """An aggregate relationship""" + tournament_brackets_aggregate( + """distinct select on columns""" + distinct_on: [tournament_brackets_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_brackets_order_by!] + + """filter the rows returned""" + where: tournament_brackets_bool_exp + ): tournament_brackets_aggregate! + + """ + fetch data from the table: "tournament_brackets" using primary key columns + """ + tournament_brackets_by_pk(id: uuid!): tournament_brackets + + """An array relationship""" + tournament_categories( + """distinct select on columns""" + distinct_on: [tournament_categories_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_categories_order_by!] + + """filter the rows returned""" + where: tournament_categories_bool_exp + ): [tournament_categories!]! + + """An aggregate relationship""" + tournament_categories_aggregate( + """distinct select on columns""" + distinct_on: [tournament_categories_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_categories_order_by!] + + """filter the rows returned""" + where: tournament_categories_bool_exp + ): tournament_categories_aggregate! + + """ + fetch data from the table: "tournament_categories" using primary key columns + """ + tournament_categories_by_pk(category: e_tournament_categories_enum!, tournament_id: uuid!): tournament_categories + + """An array relationship""" + tournament_free_agents( + """distinct select on columns""" + distinct_on: [tournament_free_agents_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_free_agents_order_by!] + + """filter the rows returned""" + where: tournament_free_agents_bool_exp + ): [tournament_free_agents!]! + + """An aggregate relationship""" + tournament_free_agents_aggregate( + """distinct select on columns""" + distinct_on: [tournament_free_agents_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_free_agents_order_by!] + + """filter the rows returned""" + where: tournament_free_agents_bool_exp + ): tournament_free_agents_aggregate! + + """ + fetch data from the table: "tournament_free_agents" using primary key columns + """ + tournament_free_agents_by_pk(id: uuid!): tournament_free_agents + + """ + fetch data from the table: "tournament_invite_code_uses" + """ + tournament_invite_code_uses( + """distinct select on columns""" + distinct_on: [tournament_invite_code_uses_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_invite_code_uses_order_by!] + + """filter the rows returned""" + where: tournament_invite_code_uses_bool_exp + ): [tournament_invite_code_uses!]! + + """ + fetch aggregated fields from the table: "tournament_invite_code_uses" + """ + tournament_invite_code_uses_aggregate( + """distinct select on columns""" + distinct_on: [tournament_invite_code_uses_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_invite_code_uses_order_by!] + + """filter the rows returned""" + where: tournament_invite_code_uses_bool_exp + ): tournament_invite_code_uses_aggregate! + + """ + fetch data from the table: "tournament_invite_code_uses" using primary key columns + """ + tournament_invite_code_uses_by_pk(invite_code_id: uuid!, player_steam_id: bigint!): tournament_invite_code_uses + + """ + fetch data from the table: "tournament_invite_codes" + """ + tournament_invite_codes( + """distinct select on columns""" + distinct_on: [tournament_invite_codes_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_invite_codes_order_by!] + + """filter the rows returned""" + where: tournament_invite_codes_bool_exp + ): [tournament_invite_codes!]! + + """ + fetch aggregated fields from the table: "tournament_invite_codes" + """ + tournament_invite_codes_aggregate( + """distinct select on columns""" + distinct_on: [tournament_invite_codes_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_invite_codes_order_by!] + + """filter the rows returned""" + where: tournament_invite_codes_bool_exp + ): tournament_invite_codes_aggregate! + + """ + fetch data from the table: "tournament_invite_codes" using primary key columns + """ + tournament_invite_codes_by_pk(id: uuid!): tournament_invite_codes + + """ + fetch data from the table: "tournament_invites" + """ + tournament_invites( + """distinct select on columns""" + distinct_on: [tournament_invites_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_invites_order_by!] + + """filter the rows returned""" + where: tournament_invites_bool_exp + ): [tournament_invites!]! + + """ + fetch aggregated fields from the table: "tournament_invites" + """ + tournament_invites_aggregate( + """distinct select on columns""" + distinct_on: [tournament_invites_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_invites_order_by!] + + """filter the rows returned""" + where: tournament_invites_bool_exp + ): tournament_invites_aggregate! + + """ + fetch data from the table: "tournament_invites" using primary key columns + """ + tournament_invites_by_pk(id: uuid!): tournament_invites + + """ + fetch data from the table: "tournament_leaderboard_entries" + """ + tournament_leaderboard_entries( + """distinct select on columns""" + distinct_on: [tournament_leaderboard_entries_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_leaderboard_entries_order_by!] + + """filter the rows returned""" + where: tournament_leaderboard_entries_bool_exp + ): [tournament_leaderboard_entries!]! + + """ + fetch aggregated fields from the table: "tournament_leaderboard_entries" + """ + tournament_leaderboard_entries_aggregate( + """distinct select on columns""" + distinct_on: [tournament_leaderboard_entries_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_leaderboard_entries_order_by!] + + """filter the rows returned""" + where: tournament_leaderboard_entries_bool_exp + ): tournament_leaderboard_entries_aggregate! + + """ + fetch data from the table: "tournament_no_shows" + """ + tournament_no_shows( + """distinct select on columns""" + distinct_on: [tournament_no_shows_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_no_shows_order_by!] + + """filter the rows returned""" + where: tournament_no_shows_bool_exp + ): [tournament_no_shows!]! + + """ + fetch aggregated fields from the table: "tournament_no_shows" + """ + tournament_no_shows_aggregate( + """distinct select on columns""" + distinct_on: [tournament_no_shows_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_no_shows_order_by!] + + """filter the rows returned""" + where: tournament_no_shows_bool_exp + ): tournament_no_shows_aggregate! + + """ + fetch data from the table: "tournament_no_shows" using primary key columns + """ + tournament_no_shows_by_pk(id: uuid!): tournament_no_shows + + """ + fetch data from the table: "tournament_organizer_teams" + """ + tournament_organizer_teams( + """distinct select on columns""" + distinct_on: [tournament_organizer_teams_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_organizer_teams_order_by!] + + """filter the rows returned""" + where: tournament_organizer_teams_bool_exp + ): [tournament_organizer_teams!]! + + """ + fetch aggregated fields from the table: "tournament_organizer_teams" + """ + tournament_organizer_teams_aggregate( + """distinct select on columns""" + distinct_on: [tournament_organizer_teams_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_organizer_teams_order_by!] + + """filter the rows returned""" + where: tournament_organizer_teams_bool_exp + ): tournament_organizer_teams_aggregate! + + """ + fetch data from the table: "tournament_organizer_teams" using primary key columns + """ + tournament_organizer_teams_by_pk(team_id: uuid!, tournament_id: uuid!): tournament_organizer_teams + + """An array relationship""" + tournament_organizers( + """distinct select on columns""" + distinct_on: [tournament_organizers_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_organizers_order_by!] + + """filter the rows returned""" + where: tournament_organizers_bool_exp + ): [tournament_organizers!]! + + """An aggregate relationship""" + tournament_organizers_aggregate( + """distinct select on columns""" + distinct_on: [tournament_organizers_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_organizers_order_by!] + + """filter the rows returned""" + where: tournament_organizers_bool_exp + ): tournament_organizers_aggregate! + + """ + fetch data from the table: "tournament_organizers" using primary key columns + """ + tournament_organizers_by_pk(steam_id: bigint!, tournament_id: uuid!): tournament_organizers + + """ + fetch data from the table: "tournament_prizes" + """ + tournament_prizes( + """distinct select on columns""" + distinct_on: [tournament_prizes_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_prizes_order_by!] + + """filter the rows returned""" + where: tournament_prizes_bool_exp + ): [tournament_prizes!]! + + """ + fetch aggregated fields from the table: "tournament_prizes" + """ + tournament_prizes_aggregate( + """distinct select on columns""" + distinct_on: [tournament_prizes_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_prizes_order_by!] + + """filter the rows returned""" + where: tournament_prizes_bool_exp + ): tournament_prizes_aggregate! + + """ + fetch data from the table: "tournament_prizes" using primary key columns + """ + tournament_prizes_by_pk(id: uuid!): tournament_prizes + + """ + fetch data from the table: "tournament_registration_unlocks" + """ + tournament_registration_unlocks( + """distinct select on columns""" + distinct_on: [tournament_registration_unlocks_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_registration_unlocks_order_by!] + + """filter the rows returned""" + where: tournament_registration_unlocks_bool_exp + ): [tournament_registration_unlocks!]! + + """ + fetch aggregated fields from the table: "tournament_registration_unlocks" + """ + tournament_registration_unlocks_aggregate( + """distinct select on columns""" + distinct_on: [tournament_registration_unlocks_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_registration_unlocks_order_by!] + + """filter the rows returned""" + where: tournament_registration_unlocks_bool_exp + ): tournament_registration_unlocks_aggregate! + + """ + fetch data from the table: "tournament_stage_windows" + """ + tournament_stage_windows( + """distinct select on columns""" + distinct_on: [tournament_stage_windows_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_stage_windows_order_by!] + + """filter the rows returned""" + where: tournament_stage_windows_bool_exp + ): [tournament_stage_windows!]! + + """ + fetch aggregated fields from the table: "tournament_stage_windows" + """ + tournament_stage_windows_aggregate( + """distinct select on columns""" + distinct_on: [tournament_stage_windows_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_stage_windows_order_by!] + + """filter the rows returned""" + where: tournament_stage_windows_bool_exp + ): tournament_stage_windows_aggregate! + + """ + fetch data from the table: "tournament_stage_windows" using primary key columns + """ + tournament_stage_windows_by_pk(id: uuid!): tournament_stage_windows + + """An array relationship""" + tournament_stages( + """distinct select on columns""" + distinct_on: [tournament_stages_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_stages_order_by!] + + """filter the rows returned""" + where: tournament_stages_bool_exp + ): [tournament_stages!]! + + """An aggregate relationship""" + tournament_stages_aggregate( + """distinct select on columns""" + distinct_on: [tournament_stages_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_stages_order_by!] + + """filter the rows returned""" + where: tournament_stages_bool_exp + ): tournament_stages_aggregate! + + """ + fetch data from the table: "tournament_stages" using primary key columns + """ + tournament_stages_by_pk(id: uuid!): tournament_stages + + """ + fetch data from the table: "tournament_team_invites" + """ + tournament_team_invites( + """distinct select on columns""" + distinct_on: [tournament_team_invites_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_team_invites_order_by!] + + """filter the rows returned""" + where: tournament_team_invites_bool_exp + ): [tournament_team_invites!]! + + """ + fetch aggregated fields from the table: "tournament_team_invites" + """ + tournament_team_invites_aggregate( + """distinct select on columns""" + distinct_on: [tournament_team_invites_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_team_invites_order_by!] + + """filter the rows returned""" + where: tournament_team_invites_bool_exp + ): tournament_team_invites_aggregate! + + """ + fetch data from the table: "tournament_team_invites" using primary key columns + """ + tournament_team_invites_by_pk(id: uuid!): tournament_team_invites + + """ + fetch data from the table: "tournament_team_roster" + """ + tournament_team_roster( + """distinct select on columns""" + distinct_on: [tournament_team_roster_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_team_roster_order_by!] + + """filter the rows returned""" + where: tournament_team_roster_bool_exp + ): [tournament_team_roster!]! + + """ + fetch aggregated fields from the table: "tournament_team_roster" + """ + tournament_team_roster_aggregate( + """distinct select on columns""" + distinct_on: [tournament_team_roster_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_team_roster_order_by!] + + """filter the rows returned""" + where: tournament_team_roster_bool_exp + ): tournament_team_roster_aggregate! + + """ + fetch data from the table: "tournament_team_roster" using primary key columns + """ + tournament_team_roster_by_pk(player_steam_id: bigint!, tournament_id: uuid!): tournament_team_roster + + """An array relationship""" + tournament_teams( + """distinct select on columns""" + distinct_on: [tournament_teams_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_teams_order_by!] + + """filter the rows returned""" + where: tournament_teams_bool_exp + ): [tournament_teams!]! + + """An aggregate relationship""" + tournament_teams_aggregate( + """distinct select on columns""" + distinct_on: [tournament_teams_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_teams_order_by!] + + """filter the rows returned""" + where: tournament_teams_bool_exp + ): tournament_teams_aggregate! + + """ + fetch data from the table: "tournament_teams" using primary key columns + """ + tournament_teams_by_pk(id: uuid!): tournament_teams + + """An array relationship""" + tournaments( + """distinct select on columns""" + distinct_on: [tournaments_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournaments_order_by!] + + """filter the rows returned""" + where: tournaments_bool_exp + ): [tournaments!]! + + """An aggregate relationship""" + tournaments_aggregate( + """distinct select on columns""" + distinct_on: [tournaments_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournaments_order_by!] + + """filter the rows returned""" + where: tournaments_bool_exp + ): tournaments_aggregate! + + """fetch data from the table: "tournaments" using primary key columns""" + tournaments_by_pk(id: uuid!): tournaments + + """Which way everybody misses one lineup, from their practice throws""" + utilityLineupMissPattern(utility_lineup_id: uuid!): UtilityMissPatternOutput + + """Report a player's mined utility throws for a match""" + utilityMatchUtilityReport(match_id: uuid!, steam_id: String): UtilityUtilityReportOutput + + """Rank what to practise next on a map from the mined meta""" + utilityPracticePlan(limit: Int, map_name: String!, order: String, side: String): UtilityPracticePlanOutput + + """Dedicated practice servers free to book right now""" + utilityPracticeServers: UtilityPracticeServersOutput + utilityPracticeWhereAmI: UtilityPracticeWhereOutput + + """Read the practice server solver's calibration gate""" + utilitySolverCalibration(session_id: uuid!): UtilityCalibrationOutput + + """Aggregate a team's mined utility throws against its saved lineups""" + utilityTeamUtilityReport(limit: Int, map_name: String, team_id: uuid!): UtilityTeamUtilityOutput + + """ + fetch data from the table: "utility_collection_items" + """ + utility_collection_items( + """distinct select on columns""" + distinct_on: [utility_collection_items_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: [utility_collection_items_order_by!] + + """filter the rows returned""" + where: utility_collection_items_bool_exp + ): [utility_collection_items!]! + + """ + fetch aggregated fields from the table: "utility_collection_items" + """ + utility_collection_items_aggregate( + """distinct select on columns""" + distinct_on: [utility_collection_items_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: [utility_collection_items_order_by!] + + """filter the rows returned""" + where: utility_collection_items_bool_exp + ): utility_collection_items_aggregate! + + """ + fetch data from the table: "utility_collection_items" using primary key columns + """ + utility_collection_items_by_pk(collection_id: uuid!, utility_lineup_id: uuid!): utility_collection_items + + """ + fetch data from the table: "utility_collections" + """ + utility_collections( + """distinct select on columns""" + distinct_on: [utility_collections_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: [utility_collections_order_by!] + + """filter the rows returned""" + where: utility_collections_bool_exp + ): [utility_collections!]! + + """ + fetch aggregated fields from the table: "utility_collections" + """ + utility_collections_aggregate( + """distinct select on columns""" + distinct_on: [utility_collections_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: [utility_collections_order_by!] + + """filter the rows returned""" + where: utility_collections_bool_exp + ): utility_collections_aggregate! + + """ + fetch data from the table: "utility_collections" using primary key columns + """ + utility_collections_by_pk(id: uuid!): utility_collections + + """ + fetch data from the table: "utility_demo_mines" + """ + utility_demo_mines( + """distinct select on columns""" + distinct_on: [utility_demo_mines_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: [utility_demo_mines_order_by!] + + """filter the rows returned""" + where: utility_demo_mines_bool_exp + ): [utility_demo_mines!]! + + """ + fetch aggregated fields from the table: "utility_demo_mines" + """ + utility_demo_mines_aggregate( + """distinct select on columns""" + distinct_on: [utility_demo_mines_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: [utility_demo_mines_order_by!] + + """filter the rows returned""" + where: utility_demo_mines_bool_exp + ): utility_demo_mines_aggregate! + + """ + fetch data from the table: "utility_demo_mines" using primary key columns + """ + utility_demo_mines_by_pk(match_map_demo_id: uuid!): utility_demo_mines + + """ + fetch data from the table: "utility_demo_throws" + """ + utility_demo_throws( + """distinct select on columns""" + distinct_on: [utility_demo_throws_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: [utility_demo_throws_order_by!] + + """filter the rows returned""" + where: utility_demo_throws_bool_exp + ): [utility_demo_throws!]! + + """ + fetch aggregated fields from the table: "utility_demo_throws" + """ + utility_demo_throws_aggregate( + """distinct select on columns""" + distinct_on: [utility_demo_throws_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: [utility_demo_throws_order_by!] + + """filter the rows returned""" + where: utility_demo_throws_bool_exp + ): utility_demo_throws_aggregate! + + """ + fetch data from the table: "utility_demo_throws" using primary key columns + """ + utility_demo_throws_by_pk(grenade_id: Int!, match_map_demo_id: uuid!): utility_demo_throws + + """ + fetch data from the table: "utility_drift_results" + """ + utility_drift_results( + """distinct select on columns""" + distinct_on: [utility_drift_results_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: [utility_drift_results_order_by!] + + """filter the rows returned""" + where: utility_drift_results_bool_exp + ): [utility_drift_results!]! + + """ + fetch aggregated fields from the table: "utility_drift_results" + """ + utility_drift_results_aggregate( + """distinct select on columns""" + distinct_on: [utility_drift_results_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: [utility_drift_results_order_by!] + + """filter the rows returned""" + where: utility_drift_results_bool_exp + ): utility_drift_results_aggregate! + + """ + fetch data from the table: "utility_drift_results" using primary key columns + """ + utility_drift_results_by_pk(utility_drift_scan_id: uuid!, utility_lineup_id: uuid!): utility_drift_results + + """ + fetch data from the table: "utility_drift_scans" + """ + utility_drift_scans( + """distinct select on columns""" + distinct_on: [utility_drift_scans_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: [utility_drift_scans_order_by!] + + """filter the rows returned""" + where: utility_drift_scans_bool_exp + ): [utility_drift_scans!]! + + """ + fetch aggregated fields from the table: "utility_drift_scans" + """ + utility_drift_scans_aggregate( + """distinct select on columns""" + distinct_on: [utility_drift_scans_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: [utility_drift_scans_order_by!] + + """filter the rows returned""" + where: utility_drift_scans_bool_exp + ): utility_drift_scans_aggregate! + + """ + fetch data from the table: "utility_drift_scans" using primary key columns + """ + utility_drift_scans_by_pk(id: uuid!): utility_drift_scans + + """ + fetch data from the table: "utility_lineup_favorites" + """ + utility_lineup_favorites( + """distinct select on columns""" + distinct_on: [utility_lineup_favorites_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: [utility_lineup_favorites_order_by!] + + """filter the rows returned""" + where: utility_lineup_favorites_bool_exp + ): [utility_lineup_favorites!]! + + """ + fetch aggregated fields from the table: "utility_lineup_favorites" + """ + utility_lineup_favorites_aggregate( + """distinct select on columns""" + distinct_on: [utility_lineup_favorites_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: [utility_lineup_favorites_order_by!] + + """filter the rows returned""" + where: utility_lineup_favorites_bool_exp + ): utility_lineup_favorites_aggregate! + + """ + fetch data from the table: "utility_lineup_favorites" using primary key columns + """ + utility_lineup_favorites_by_pk(steam_id: bigint!, utility_lineup_id: uuid!): utility_lineup_favorites + + """ + fetch data from the table: "utility_lineup_progress" + """ + utility_lineup_progress( + """distinct select on columns""" + distinct_on: [utility_lineup_progress_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: [utility_lineup_progress_order_by!] + + """filter the rows returned""" + where: utility_lineup_progress_bool_exp + ): [utility_lineup_progress!]! + + """ + fetch aggregated fields from the table: "utility_lineup_progress" + """ + utility_lineup_progress_aggregate( + """distinct select on columns""" + distinct_on: [utility_lineup_progress_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: [utility_lineup_progress_order_by!] + + """filter the rows returned""" + where: utility_lineup_progress_bool_exp + ): utility_lineup_progress_aggregate! + + """ + fetch data from the table: "utility_lineup_progress" using primary key columns + """ + utility_lineup_progress_by_pk(steam_id: bigint!, utility_lineup_id: uuid!): utility_lineup_progress + + """ + fetch data from the table: "utility_lineup_renders" + """ + utility_lineup_renders( + """distinct select on columns""" + distinct_on: [utility_lineup_renders_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: [utility_lineup_renders_order_by!] + + """filter the rows returned""" + where: utility_lineup_renders_bool_exp + ): [utility_lineup_renders!]! + + """ + fetch aggregated fields from the table: "utility_lineup_renders" + """ + utility_lineup_renders_aggregate( + """distinct select on columns""" + distinct_on: [utility_lineup_renders_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: [utility_lineup_renders_order_by!] + + """filter the rows returned""" + where: utility_lineup_renders_bool_exp + ): utility_lineup_renders_aggregate! + + """ + fetch data from the table: "utility_lineup_renders" using primary key columns + """ + utility_lineup_renders_by_pk(id: uuid!): utility_lineup_renders + + """ + fetch data from the table: "utility_lineup_repairs" + """ + utility_lineup_repairs( + """distinct select on columns""" + distinct_on: [utility_lineup_repairs_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: [utility_lineup_repairs_order_by!] + + """filter the rows returned""" + where: utility_lineup_repairs_bool_exp + ): [utility_lineup_repairs!]! + + """ + fetch aggregated fields from the table: "utility_lineup_repairs" + """ + utility_lineup_repairs_aggregate( + """distinct select on columns""" + distinct_on: [utility_lineup_repairs_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: [utility_lineup_repairs_order_by!] + + """filter the rows returned""" + where: utility_lineup_repairs_bool_exp + ): utility_lineup_repairs_aggregate! + + """ + fetch data from the table: "utility_lineup_repairs" using primary key columns + """ + utility_lineup_repairs_by_pk(id: uuid!): utility_lineup_repairs + + """ + fetch data from the table: "utility_lineup_votes" + """ + utility_lineup_votes( + """distinct select on columns""" + distinct_on: [utility_lineup_votes_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: [utility_lineup_votes_order_by!] + + """filter the rows returned""" + where: utility_lineup_votes_bool_exp + ): [utility_lineup_votes!]! + + """ + fetch aggregated fields from the table: "utility_lineup_votes" + """ + utility_lineup_votes_aggregate( + """distinct select on columns""" + distinct_on: [utility_lineup_votes_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: [utility_lineup_votes_order_by!] + + """filter the rows returned""" + where: utility_lineup_votes_bool_exp + ): utility_lineup_votes_aggregate! + + """ + fetch data from the table: "utility_lineup_votes" using primary key columns + """ + utility_lineup_votes_by_pk(steam_id: bigint!, utility_lineup_id: uuid!): utility_lineup_votes + + """An array relationship""" + utility_lineups( + """distinct select on columns""" + distinct_on: [utility_lineups_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: [utility_lineups_order_by!] + + """filter the rows returned""" + where: utility_lineups_bool_exp + ): [utility_lineups!]! + + """An aggregate relationship""" + utility_lineups_aggregate( + """distinct select on columns""" + distinct_on: [utility_lineups_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: [utility_lineups_order_by!] + + """filter the rows returned""" + where: utility_lineups_bool_exp + ): utility_lineups_aggregate! + + """fetch data from the table: "utility_lineups" using primary key columns""" + utility_lineups_by_pk(id: uuid!): utility_lineups + + """ + fetch data from the table: "utility_meta_lineups" + """ + utility_meta_lineups( + """distinct select on columns""" + distinct_on: [utility_meta_lineups_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: [utility_meta_lineups_order_by!] + + """filter the rows returned""" + where: utility_meta_lineups_bool_exp + ): [utility_meta_lineups!]! + + """ + fetch aggregated fields from the table: "utility_meta_lineups" + """ + utility_meta_lineups_aggregate( + """distinct select on columns""" + distinct_on: [utility_meta_lineups_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: [utility_meta_lineups_order_by!] + + """filter the rows returned""" + where: utility_meta_lineups_bool_exp + ): utility_meta_lineups_aggregate! + + """ + fetch data from the table: "utility_meta_lineups" using primary key columns + """ + utility_meta_lineups_by_pk(lineup_bucket: String!): utility_meta_lineups + + """ + fetch data from the table: "utility_playbook_steps" + """ + utility_playbook_steps( + """distinct select on columns""" + distinct_on: [utility_playbook_steps_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: [utility_playbook_steps_order_by!] + + """filter the rows returned""" + where: utility_playbook_steps_bool_exp + ): [utility_playbook_steps!]! + + """ + fetch aggregated fields from the table: "utility_playbook_steps" + """ + utility_playbook_steps_aggregate( + """distinct select on columns""" + distinct_on: [utility_playbook_steps_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: [utility_playbook_steps_order_by!] + + """filter the rows returned""" + where: utility_playbook_steps_bool_exp + ): utility_playbook_steps_aggregate! + + """ + fetch data from the table: "utility_playbook_steps" using primary key columns + """ + utility_playbook_steps_by_pk(id: uuid!): utility_playbook_steps + + """ + fetch data from the table: "utility_playbooks" + """ + utility_playbooks( + """distinct select on columns""" + distinct_on: [utility_playbooks_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: [utility_playbooks_order_by!] + + """filter the rows returned""" + where: utility_playbooks_bool_exp + ): [utility_playbooks!]! + + """ + fetch aggregated fields from the table: "utility_playbooks" + """ + utility_playbooks_aggregate( + """distinct select on columns""" + distinct_on: [utility_playbooks_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: [utility_playbooks_order_by!] + + """filter the rows returned""" + where: utility_playbooks_bool_exp + ): utility_playbooks_aggregate! + + """ + fetch data from the table: "utility_playbooks" using primary key columns + """ + utility_playbooks_by_pk(id: uuid!): utility_playbooks + + """ + fetch data from the table: "utility_practice_invites" + """ + utility_practice_invites( + """distinct select on columns""" + distinct_on: [utility_practice_invites_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: [utility_practice_invites_order_by!] + + """filter the rows returned""" + where: utility_practice_invites_bool_exp + ): [utility_practice_invites!]! + + """ + fetch aggregated fields from the table: "utility_practice_invites" + """ + utility_practice_invites_aggregate( + """distinct select on columns""" + distinct_on: [utility_practice_invites_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: [utility_practice_invites_order_by!] + + """filter the rows returned""" + where: utility_practice_invites_bool_exp + ): utility_practice_invites_aggregate! + + """ + fetch data from the table: "utility_practice_invites" using primary key columns + """ + utility_practice_invites_by_pk(steam_id: bigint!, utility_practice_session_id: uuid!): utility_practice_invites + + """An array relationship""" + utility_practice_sessions( + """distinct select on columns""" + distinct_on: [utility_practice_sessions_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: [utility_practice_sessions_order_by!] + + """filter the rows returned""" + where: utility_practice_sessions_bool_exp + ): [utility_practice_sessions!]! + + """An aggregate relationship""" + utility_practice_sessions_aggregate( + """distinct select on columns""" + distinct_on: [utility_practice_sessions_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: [utility_practice_sessions_order_by!] + + """filter the rows returned""" + where: utility_practice_sessions_bool_exp + ): utility_practice_sessions_aggregate! + + """ + fetch data from the table: "utility_practice_sessions" using primary key columns + """ + utility_practice_sessions_by_pk(id: uuid!): utility_practice_sessions + + """ + fetch data from the table: "v_event_player_stats" + """ + v_event_player_stats( + """distinct select on columns""" + distinct_on: [v_event_player_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_event_player_stats_order_by!] + + """filter the rows returned""" + where: v_event_player_stats_bool_exp + ): [v_event_player_stats!]! + + """ + fetch aggregated fields from the table: "v_event_player_stats" + """ + v_event_player_stats_aggregate( + """distinct select on columns""" + distinct_on: [v_event_player_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_event_player_stats_order_by!] + + """filter the rows returned""" + where: v_event_player_stats_bool_exp + ): v_event_player_stats_aggregate! + + """ + fetch data from the table: "v_gpu_pool_status" + """ + v_gpu_pool_status( + """distinct select on columns""" + distinct_on: [v_gpu_pool_status_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_gpu_pool_status_order_by!] + + """filter the rows returned""" + where: v_gpu_pool_status_bool_exp + ): [v_gpu_pool_status!]! + + """ + fetch aggregated fields from the table: "v_gpu_pool_status" + """ + v_gpu_pool_status_aggregate( + """distinct select on columns""" + distinct_on: [v_gpu_pool_status_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_gpu_pool_status_order_by!] + + """filter the rows returned""" + where: v_gpu_pool_status_bool_exp + ): v_gpu_pool_status_aggregate! + + """ + fetch data from the table: "v_league_division_standings" + """ + v_league_division_standings( + """distinct select on columns""" + distinct_on: [v_league_division_standings_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_league_division_standings_order_by!] + + """filter the rows returned""" + where: v_league_division_standings_bool_exp + ): [v_league_division_standings!]! + + """ + fetch aggregated fields from the table: "v_league_division_standings" + """ + v_league_division_standings_aggregate( + """distinct select on columns""" + distinct_on: [v_league_division_standings_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_league_division_standings_order_by!] + + """filter the rows returned""" + where: v_league_division_standings_bool_exp + ): v_league_division_standings_aggregate! + + """ + fetch data from the table: "v_league_season_player_stats" + """ + v_league_season_player_stats( + """distinct select on columns""" + distinct_on: [v_league_season_player_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_league_season_player_stats_order_by!] + + """filter the rows returned""" + where: v_league_season_player_stats_bool_exp + ): [v_league_season_player_stats!]! + + """ + fetch aggregated fields from the table: "v_league_season_player_stats" + """ + v_league_season_player_stats_aggregate( + """distinct select on columns""" + distinct_on: [v_league_season_player_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_league_season_player_stats_order_by!] + + """filter the rows returned""" + where: v_league_season_player_stats_bool_exp + ): v_league_season_player_stats_aggregate! + + """ + fetch data from the table: "v_match_captains" + """ + v_match_captains( + """distinct select on columns""" + distinct_on: [v_match_captains_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_match_captains_order_by!] + + """filter the rows returned""" + where: v_match_captains_bool_exp + ): [v_match_captains!]! + + """ + fetch aggregated fields from the table: "v_match_captains" + """ + v_match_captains_aggregate( + """distinct select on columns""" + distinct_on: [v_match_captains_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_match_captains_order_by!] + + """filter the rows returned""" + where: v_match_captains_bool_exp + ): v_match_captains_aggregate! + + """ + fetch data from the table: "v_match_clutches" + """ + v_match_clutches( + """distinct select on columns""" + distinct_on: [v_match_clutches_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_match_clutches_order_by!] + + """filter the rows returned""" + where: v_match_clutches_bool_exp + ): [v_match_clutches!]! + + """ + fetch aggregated fields from the table: "v_match_clutches" + """ + v_match_clutches_aggregate( + """distinct select on columns""" + distinct_on: [v_match_clutches_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_match_clutches_order_by!] + + """filter the rows returned""" + where: v_match_clutches_bool_exp + ): v_match_clutches_aggregate! + + """ + fetch data from the table: "v_match_kill_pairs" + """ + v_match_kill_pairs( + """distinct select on columns""" + distinct_on: [v_match_kill_pairs_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_match_kill_pairs_order_by!] + + """filter the rows returned""" + where: v_match_kill_pairs_bool_exp + ): [v_match_kill_pairs!]! + + """ + fetch aggregated fields from the table: "v_match_kill_pairs" + """ + v_match_kill_pairs_aggregate( + """distinct select on columns""" + distinct_on: [v_match_kill_pairs_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_match_kill_pairs_order_by!] + + """filter the rows returned""" + where: v_match_kill_pairs_bool_exp + ): v_match_kill_pairs_aggregate! + + """ + fetch data from the table: "v_match_lineup_buy_types" + """ + v_match_lineup_buy_types( + """distinct select on columns""" + distinct_on: [v_match_lineup_buy_types_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_match_lineup_buy_types_order_by!] + + """filter the rows returned""" + where: v_match_lineup_buy_types_bool_exp + ): [v_match_lineup_buy_types!]! + + """ + fetch aggregated fields from the table: "v_match_lineup_buy_types" + """ + v_match_lineup_buy_types_aggregate( + """distinct select on columns""" + distinct_on: [v_match_lineup_buy_types_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_match_lineup_buy_types_order_by!] + + """filter the rows returned""" + where: v_match_lineup_buy_types_bool_exp + ): v_match_lineup_buy_types_aggregate! + + """ + fetch data from the table: "v_match_lineup_map_stats" + """ + v_match_lineup_map_stats( + """distinct select on columns""" + distinct_on: [v_match_lineup_map_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_match_lineup_map_stats_order_by!] + + """filter the rows returned""" + where: v_match_lineup_map_stats_bool_exp + ): [v_match_lineup_map_stats!]! + + """ + fetch aggregated fields from the table: "v_match_lineup_map_stats" + """ + v_match_lineup_map_stats_aggregate( + """distinct select on columns""" + distinct_on: [v_match_lineup_map_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_match_lineup_map_stats_order_by!] + + """filter the rows returned""" + where: v_match_lineup_map_stats_bool_exp + ): v_match_lineup_map_stats_aggregate! + + """ + fetch data from the table: "v_match_map_backup_rounds" + """ + v_match_map_backup_rounds( + """distinct select on columns""" + distinct_on: [v_match_map_backup_rounds_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_match_map_backup_rounds_order_by!] + + """filter the rows returned""" + where: v_match_map_backup_rounds_bool_exp + ): [v_match_map_backup_rounds!]! + + """ + fetch aggregated fields from the table: "v_match_map_backup_rounds" + """ + v_match_map_backup_rounds_aggregate( + """distinct select on columns""" + distinct_on: [v_match_map_backup_rounds_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_match_map_backup_rounds_order_by!] + + """filter the rows returned""" + where: v_match_map_backup_rounds_bool_exp + ): v_match_map_backup_rounds_aggregate! + + """ + fetch data from the table: "v_match_player_buy_types" + """ + v_match_player_buy_types( + """distinct select on columns""" + distinct_on: [v_match_player_buy_types_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_match_player_buy_types_order_by!] + + """filter the rows returned""" + where: v_match_player_buy_types_bool_exp + ): [v_match_player_buy_types!]! + + """ + fetch aggregated fields from the table: "v_match_player_buy_types" + """ + v_match_player_buy_types_aggregate( + """distinct select on columns""" + distinct_on: [v_match_player_buy_types_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_match_player_buy_types_order_by!] + + """filter the rows returned""" + where: v_match_player_buy_types_bool_exp + ): v_match_player_buy_types_aggregate! + + """ + fetch data from the table: "v_match_player_opening_duels" + """ + v_match_player_opening_duels( + """distinct select on columns""" + distinct_on: [v_match_player_opening_duels_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_match_player_opening_duels_order_by!] + + """filter the rows returned""" + where: v_match_player_opening_duels_bool_exp + ): [v_match_player_opening_duels!]! + + """ + fetch aggregated fields from the table: "v_match_player_opening_duels" + """ + v_match_player_opening_duels_aggregate( + """distinct select on columns""" + distinct_on: [v_match_player_opening_duels_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_match_player_opening_duels_order_by!] + + """filter the rows returned""" + where: v_match_player_opening_duels_bool_exp + ): v_match_player_opening_duels_aggregate! + + """ + fetch data from the table: "v_player_arch_nemesis" + """ + v_player_arch_nemesis( + """distinct select on columns""" + distinct_on: [v_player_arch_nemesis_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_arch_nemesis_order_by!] + + """filter the rows returned""" + where: v_player_arch_nemesis_bool_exp + ): [v_player_arch_nemesis!]! + + """ + fetch aggregated fields from the table: "v_player_arch_nemesis" + """ + v_player_arch_nemesis_aggregate( + """distinct select on columns""" + distinct_on: [v_player_arch_nemesis_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_arch_nemesis_order_by!] + + """filter the rows returned""" + where: v_player_arch_nemesis_bool_exp + ): v_player_arch_nemesis_aggregate! + + """ + fetch data from the table: "v_player_damage" + """ + v_player_damage( + """distinct select on columns""" + distinct_on: [v_player_damage_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_damage_order_by!] + + """filter the rows returned""" + where: v_player_damage_bool_exp + ): [v_player_damage!]! + + """ + fetch aggregated fields from the table: "v_player_damage" + """ + v_player_damage_aggregate( + """distinct select on columns""" + distinct_on: [v_player_damage_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_damage_order_by!] + + """filter the rows returned""" + where: v_player_damage_bool_exp + ): v_player_damage_aggregate! + + """ + fetch data from the table: "v_player_elo" + """ + v_player_elo( + """distinct select on columns""" + distinct_on: [v_player_elo_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_elo_order_by!] + + """filter the rows returned""" + where: v_player_elo_bool_exp + ): [v_player_elo!]! + + """ + fetch aggregated fields from the table: "v_player_elo" + """ + v_player_elo_aggregate( + """distinct select on columns""" + distinct_on: [v_player_elo_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_elo_order_by!] + + """filter the rows returned""" + where: v_player_elo_bool_exp + ): v_player_elo_aggregate! + + """ + fetch data from the table: "v_player_map_losses" + """ + v_player_map_losses( + """distinct select on columns""" + distinct_on: [v_player_map_losses_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_map_losses_order_by!] + + """filter the rows returned""" + where: v_player_map_losses_bool_exp + ): [v_player_map_losses!]! + + """ + fetch aggregated fields from the table: "v_player_map_losses" + """ + v_player_map_losses_aggregate( + """distinct select on columns""" + distinct_on: [v_player_map_losses_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_map_losses_order_by!] + + """filter the rows returned""" + where: v_player_map_losses_bool_exp + ): v_player_map_losses_aggregate! + + """ + fetch data from the table: "v_player_map_wins" + """ + v_player_map_wins( + """distinct select on columns""" + distinct_on: [v_player_map_wins_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_map_wins_order_by!] + + """filter the rows returned""" + where: v_player_map_wins_bool_exp + ): [v_player_map_wins!]! + + """ + fetch aggregated fields from the table: "v_player_map_wins" + """ + v_player_map_wins_aggregate( + """distinct select on columns""" + distinct_on: [v_player_map_wins_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_map_wins_order_by!] + + """filter the rows returned""" + where: v_player_map_wins_bool_exp + ): v_player_map_wins_aggregate! + + """ + fetch data from the table: "v_player_match_head_to_head" + """ + v_player_match_head_to_head( + """distinct select on columns""" + distinct_on: [v_player_match_head_to_head_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_match_head_to_head_order_by!] + + """filter the rows returned""" + where: v_player_match_head_to_head_bool_exp + ): [v_player_match_head_to_head!]! + + """ + fetch aggregated fields from the table: "v_player_match_head_to_head" + """ + v_player_match_head_to_head_aggregate( + """distinct select on columns""" + distinct_on: [v_player_match_head_to_head_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_match_head_to_head_order_by!] + + """filter the rows returned""" + where: v_player_match_head_to_head_bool_exp + ): v_player_match_head_to_head_aggregate! + + """ + fetch data from the table: "v_player_match_map_hltv" + """ + v_player_match_map_hltv( + """distinct select on columns""" + distinct_on: [v_player_match_map_hltv_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_match_map_hltv_order_by!] + + """filter the rows returned""" + where: v_player_match_map_hltv_bool_exp + ): [v_player_match_map_hltv!]! + + """ + fetch aggregated fields from the table: "v_player_match_map_hltv" + """ + v_player_match_map_hltv_aggregate( + """distinct select on columns""" + distinct_on: [v_player_match_map_hltv_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_match_map_hltv_order_by!] + + """filter the rows returned""" + where: v_player_match_map_hltv_bool_exp + ): v_player_match_map_hltv_aggregate! + + """ + fetch data from the table: "v_player_match_map_roles" + """ + v_player_match_map_roles( + """distinct select on columns""" + distinct_on: [v_player_match_map_roles_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_match_map_roles_order_by!] + + """filter the rows returned""" + where: v_player_match_map_roles_bool_exp + ): [v_player_match_map_roles!]! + + """ + fetch aggregated fields from the table: "v_player_match_map_roles" + """ + v_player_match_map_roles_aggregate( + """distinct select on columns""" + distinct_on: [v_player_match_map_roles_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_match_map_roles_order_by!] + + """filter the rows returned""" + where: v_player_match_map_roles_bool_exp + ): v_player_match_map_roles_aggregate! + + """ + fetch data from the table: "v_player_match_performance" + """ + v_player_match_performance( + """distinct select on columns""" + distinct_on: [v_player_match_performance_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_match_performance_order_by!] + + """filter the rows returned""" + where: v_player_match_performance_bool_exp + ): [v_player_match_performance!]! + + """ + fetch aggregated fields from the table: "v_player_match_performance" + """ + v_player_match_performance_aggregate( + """distinct select on columns""" + distinct_on: [v_player_match_performance_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_match_performance_order_by!] + + """filter the rows returned""" + where: v_player_match_performance_bool_exp + ): v_player_match_performance_aggregate! + + """ + fetch data from the table: "v_player_match_rating" + """ + v_player_match_rating( + """distinct select on columns""" + distinct_on: [v_player_match_rating_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_match_rating_order_by!] + + """filter the rows returned""" + where: v_player_match_rating_bool_exp + ): [v_player_match_rating!]! + + """ + fetch aggregated fields from the table: "v_player_match_rating" + """ + v_player_match_rating_aggregate( + """distinct select on columns""" + distinct_on: [v_player_match_rating_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_match_rating_order_by!] + + """filter the rows returned""" + where: v_player_match_rating_bool_exp + ): v_player_match_rating_aggregate! + + """ + fetch data from the table: "v_player_multi_kills" + """ + v_player_multi_kills( + """distinct select on columns""" + distinct_on: [v_player_multi_kills_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_multi_kills_order_by!] + + """filter the rows returned""" + where: v_player_multi_kills_bool_exp + ): [v_player_multi_kills!]! + + """ + fetch aggregated fields from the table: "v_player_multi_kills" + """ + v_player_multi_kills_aggregate( + """distinct select on columns""" + distinct_on: [v_player_multi_kills_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_multi_kills_order_by!] + + """filter the rows returned""" + where: v_player_multi_kills_bool_exp + ): v_player_multi_kills_aggregate! + + """ + fetch data from the table: "v_player_queue_partners" + """ + v_player_queue_partners( + """distinct select on columns""" + distinct_on: [v_player_queue_partners_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_queue_partners_order_by!] + + """filter the rows returned""" + where: v_player_queue_partners_bool_exp + ): [v_player_queue_partners!]! + + """ + fetch aggregated fields from the table: "v_player_queue_partners" + """ + v_player_queue_partners_aggregate( + """distinct select on columns""" + distinct_on: [v_player_queue_partners_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_queue_partners_order_by!] + + """filter the rows returned""" + where: v_player_queue_partners_bool_exp + ): v_player_queue_partners_aggregate! + + """ + fetch data from the table: "v_player_weapon_damage" + """ + v_player_weapon_damage( + """distinct select on columns""" + distinct_on: [v_player_weapon_damage_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_weapon_damage_order_by!] + + """filter the rows returned""" + where: v_player_weapon_damage_bool_exp + ): [v_player_weapon_damage!]! + + """ + fetch aggregated fields from the table: "v_player_weapon_damage" + """ + v_player_weapon_damage_aggregate( + """distinct select on columns""" + distinct_on: [v_player_weapon_damage_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_weapon_damage_order_by!] + + """filter the rows returned""" + where: v_player_weapon_damage_bool_exp + ): v_player_weapon_damage_aggregate! + + """ + fetch data from the table: "v_player_weapon_kills" + """ + v_player_weapon_kills( + """distinct select on columns""" + distinct_on: [v_player_weapon_kills_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_weapon_kills_order_by!] + + """filter the rows returned""" + where: v_player_weapon_kills_bool_exp + ): [v_player_weapon_kills!]! + + """ + fetch aggregated fields from the table: "v_player_weapon_kills" + """ + v_player_weapon_kills_aggregate( + """distinct select on columns""" + distinct_on: [v_player_weapon_kills_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_weapon_kills_order_by!] + + """filter the rows returned""" + where: v_player_weapon_kills_bool_exp + ): v_player_weapon_kills_aggregate! + + """ + fetch data from the table: "v_pool_maps" + """ + v_pool_maps( + """distinct select on columns""" + distinct_on: [v_pool_maps_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_pool_maps_order_by!] + + """filter the rows returned""" + where: v_pool_maps_bool_exp + ): [v_pool_maps!]! + + """ + fetch aggregated fields from the table: "v_pool_maps" + """ + v_pool_maps_aggregate( + """distinct select on columns""" + distinct_on: [v_pool_maps_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_pool_maps_order_by!] + + """filter the rows returned""" + where: v_pool_maps_bool_exp + ): v_pool_maps_aggregate! + + """ + fetch data from the table: "v_steam_account_pool_status" + """ + v_steam_account_pool_status( + """distinct select on columns""" + distinct_on: [v_steam_account_pool_status_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_steam_account_pool_status_order_by!] + + """filter the rows returned""" + where: v_steam_account_pool_status_bool_exp + ): [v_steam_account_pool_status!]! + + """ + fetch aggregated fields from the table: "v_steam_account_pool_status" + """ + v_steam_account_pool_status_aggregate( + """distinct select on columns""" + distinct_on: [v_steam_account_pool_status_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_steam_account_pool_status_order_by!] + + """filter the rows returned""" + where: v_steam_account_pool_status_bool_exp + ): v_steam_account_pool_status_aggregate! + + """ + fetch data from the table: "v_team_ranks" + """ + v_team_ranks( + """distinct select on columns""" + distinct_on: [v_team_ranks_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_team_ranks_order_by!] + + """filter the rows returned""" + where: v_team_ranks_bool_exp + ): [v_team_ranks!]! + + """ + fetch aggregated fields from the table: "v_team_ranks" + """ + v_team_ranks_aggregate( + """distinct select on columns""" + distinct_on: [v_team_ranks_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_team_ranks_order_by!] + + """filter the rows returned""" + where: v_team_ranks_bool_exp + ): v_team_ranks_aggregate! + + """ + fetch data from the table: "v_team_reputation" + """ + v_team_reputation( + """distinct select on columns""" + distinct_on: [v_team_reputation_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_team_reputation_order_by!] + + """filter the rows returned""" + where: v_team_reputation_bool_exp + ): [v_team_reputation!]! + + """ + fetch aggregated fields from the table: "v_team_reputation" + """ + v_team_reputation_aggregate( + """distinct select on columns""" + distinct_on: [v_team_reputation_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_team_reputation_order_by!] + + """filter the rows returned""" + where: v_team_reputation_bool_exp + ): v_team_reputation_aggregate! + + """ + fetch data from the table: "v_team_stage_results" + """ + v_team_stage_results( + """distinct select on columns""" + distinct_on: [v_team_stage_results_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_team_stage_results_order_by!] + + """filter the rows returned""" + where: v_team_stage_results_bool_exp + ): [v_team_stage_results!]! + + """ + fetch aggregated fields from the table: "v_team_stage_results" + """ + v_team_stage_results_aggregate( + """distinct select on columns""" + distinct_on: [v_team_stage_results_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_team_stage_results_order_by!] + + """filter the rows returned""" + where: v_team_stage_results_bool_exp + ): v_team_stage_results_aggregate! + + """ + fetch data from the table: "v_team_stage_results" using primary key columns + """ + v_team_stage_results_by_pk(tournament_stage_id: uuid!, tournament_team_id: uuid!): v_team_stage_results + + """ + fetch data from the table: "v_team_tournament_results" + """ + v_team_tournament_results( + """distinct select on columns""" + distinct_on: [v_team_tournament_results_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_team_tournament_results_order_by!] + + """filter the rows returned""" + where: v_team_tournament_results_bool_exp + ): [v_team_tournament_results!]! + + """ + fetch aggregated fields from the table: "v_team_tournament_results" + """ + v_team_tournament_results_aggregate( + """distinct select on columns""" + distinct_on: [v_team_tournament_results_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_team_tournament_results_order_by!] + + """filter the rows returned""" + where: v_team_tournament_results_bool_exp + ): v_team_tournament_results_aggregate! + + """ + fetch data from the table: "v_tournament_player_stats" + """ + v_tournament_player_stats( + """distinct select on columns""" + distinct_on: [v_tournament_player_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_tournament_player_stats_order_by!] + + """filter the rows returned""" + where: v_tournament_player_stats_bool_exp + ): [v_tournament_player_stats!]! + + """ + fetch aggregated fields from the table: "v_tournament_player_stats" + """ + v_tournament_player_stats_aggregate( + """distinct select on columns""" + distinct_on: [v_tournament_player_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_tournament_player_stats_order_by!] + + """filter the rows returned""" + where: v_tournament_player_stats_bool_exp + ): v_tournament_player_stats_aggregate! + + """ + Web push setup status for the application settings page; never returns the private key + """ + webPushStatus: WebPushStatusOutput +} + +input recalculate_tournament_awards_args { + _tournament_id: uuid +} + +input remove_league_team_from_season_args { + _league_team_season_id: uuid +} + +input reorder_league_divisions_args { + _division_ids: _uuid +} + +input restart_league_season_args { + _league_season_id: uuid +} + +""" +columns and relationships of "v_role_permissions" +""" +type role_permissions { + can_create_events: Boolean + can_create_matches: Boolean + can_create_tournaments: Boolean + role: String +} + +""" +aggregated selection of "v_role_permissions" +""" +type role_permissions_aggregate { + aggregate: role_permissions_aggregate_fields + nodes: [role_permissions!]! +} + +""" +aggregate fields of "v_role_permissions" +""" +type role_permissions_aggregate_fields { + count(columns: [role_permissions_select_column!], distinct: Boolean): Int! + max: role_permissions_max_fields + min: role_permissions_min_fields +} + +""" +Boolean expression to filter rows from the table "v_role_permissions". All fields are combined with a logical 'AND'. +""" +input role_permissions_bool_exp { + _and: [role_permissions_bool_exp!] + _not: role_permissions_bool_exp + _or: [role_permissions_bool_exp!] + can_create_events: Boolean_comparison_exp + can_create_matches: Boolean_comparison_exp + can_create_tournaments: Boolean_comparison_exp + role: String_comparison_exp +} + +""" +input type for inserting data into table "v_role_permissions" +""" +input role_permissions_insert_input { + can_create_events: Boolean + can_create_matches: Boolean + can_create_tournaments: Boolean + role: String +} + +"""aggregate max on columns""" +type role_permissions_max_fields { + role: String +} + +"""aggregate min on columns""" +type role_permissions_min_fields { + role: String +} + +""" +response of any mutation on the table "v_role_permissions" +""" +type role_permissions_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [role_permissions!]! +} + +"""Ordering options when selecting data from "v_role_permissions".""" +input role_permissions_order_by { + can_create_events: order_by + can_create_matches: order_by + can_create_tournaments: order_by + role: order_by +} + +""" +select columns of table "v_role_permissions" +""" +enum role_permissions_select_column { + """column name""" + can_create_events + + """column name""" + can_create_matches + + """column name""" + can_create_tournaments + + """column name""" + role +} + +""" +input type for updating data in table "v_role_permissions" +""" +input role_permissions_set_input { + can_create_events: Boolean + can_create_matches: Boolean + can_create_tournaments: Boolean + role: String +} + +""" +Streaming cursor of the table "role_permissions" +""" +input role_permissions_stream_cursor_input { + """Stream column input with initial value""" + initial_value: role_permissions_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input role_permissions_stream_cursor_value_input { + can_create_events: Boolean + can_create_matches: Boolean + can_create_tournaments: Boolean + role: String +} + +input role_permissions_updates { + """sets the columns of the filtered rows to the given values""" + _set: role_permissions_set_input + + """filter the rows which have to be updated""" + where: role_permissions_bool_exp! +} + +""" +columns and relationships of "seasons" +""" +type seasons { + """An array relationship""" + awards( + """distinct select on columns""" + distinct_on: [award_recipients_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: [award_recipients_order_by!] + + """filter the rows returned""" + where: award_recipients_bool_exp + ): [award_recipients!]! + + """An aggregate relationship""" + awards_aggregate( + """distinct select on columns""" + distinct_on: [award_recipients_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: [award_recipients_order_by!] + + """filter the rows returned""" + where: award_recipients_bool_exp + ): award_recipients_aggregate! + created_at: timestamptz! + description: String + ends_at: timestamptz + id: uuid! + needs_rebuild: Boolean! + number: Int! + + """An array relationship""" + player_season_stats( + """distinct select on columns""" + distinct_on: [player_season_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [player_season_stats_order_by!] + + """filter the rows returned""" + where: player_season_stats_bool_exp + ): [player_season_stats!]! + + """An aggregate relationship""" + player_season_stats_aggregate( + """distinct select on columns""" + distinct_on: [player_season_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [player_season_stats_order_by!] + + """filter the rows returned""" + where: player_season_stats_bool_exp + ): player_season_stats_aggregate! + starts_at: timestamptz! +} + +""" +aggregated selection of "seasons" +""" +type seasons_aggregate { + aggregate: seasons_aggregate_fields + nodes: [seasons!]! +} + +""" +aggregate fields of "seasons" +""" +type seasons_aggregate_fields { + avg: seasons_avg_fields + count(columns: [seasons_select_column!], distinct: Boolean): Int! + max: seasons_max_fields + min: seasons_min_fields + stddev: seasons_stddev_fields + stddev_pop: seasons_stddev_pop_fields + stddev_samp: seasons_stddev_samp_fields + sum: seasons_sum_fields + var_pop: seasons_var_pop_fields + var_samp: seasons_var_samp_fields + variance: seasons_variance_fields +} + +"""aggregate avg on columns""" +type seasons_avg_fields { + number: Float +} + +""" +Boolean expression to filter rows from the table "seasons". All fields are combined with a logical 'AND'. +""" +input seasons_bool_exp { + _and: [seasons_bool_exp!] + _not: seasons_bool_exp + _or: [seasons_bool_exp!] + awards: award_recipients_bool_exp + awards_aggregate: award_recipients_aggregate_bool_exp + created_at: timestamptz_comparison_exp + description: String_comparison_exp + ends_at: timestamptz_comparison_exp + id: uuid_comparison_exp + needs_rebuild: Boolean_comparison_exp + number: Int_comparison_exp + player_season_stats: player_season_stats_bool_exp + player_season_stats_aggregate: player_season_stats_aggregate_bool_exp + starts_at: timestamptz_comparison_exp +} + +""" +unique or primary key constraints on table "seasons" +""" +enum seasons_constraint { + """ + unique or primary key constraint on columns "id" + """ + seasons_pkey +} + +""" +input type for incrementing numeric columns in table "seasons" +""" +input seasons_inc_input { + number: Int +} + +""" +input type for inserting data into table "seasons" +""" +input seasons_insert_input { + awards: award_recipients_arr_rel_insert_input + created_at: timestamptz + description: String + ends_at: timestamptz + id: uuid + needs_rebuild: Boolean + number: Int + player_season_stats: player_season_stats_arr_rel_insert_input + starts_at: timestamptz +} + +"""aggregate max on columns""" +type seasons_max_fields { + created_at: timestamptz + description: String + ends_at: timestamptz + id: uuid + number: Int + starts_at: timestamptz +} + +"""aggregate min on columns""" +type seasons_min_fields { + created_at: timestamptz + description: String + ends_at: timestamptz + id: uuid + number: Int + starts_at: timestamptz +} + +""" +response of any mutation on the table "seasons" +""" +type seasons_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [seasons!]! +} + +""" +input type for inserting object relation for remote table "seasons" +""" +input seasons_obj_rel_insert_input { + data: seasons_insert_input! + + """upsert condition""" + on_conflict: seasons_on_conflict +} + +""" +on_conflict condition type for table "seasons" +""" +input seasons_on_conflict { + constraint: seasons_constraint! + update_columns: [seasons_update_column!]! = [] + where: seasons_bool_exp +} + +"""Ordering options when selecting data from "seasons".""" +input seasons_order_by { + awards_aggregate: award_recipients_aggregate_order_by + created_at: order_by + description: order_by + ends_at: order_by + id: order_by + needs_rebuild: order_by + number: order_by + player_season_stats_aggregate: player_season_stats_aggregate_order_by + starts_at: order_by +} + +"""primary key columns input for table: seasons""" +input seasons_pk_columns_input { + id: uuid! +} + +""" +select columns of table "seasons" +""" +enum seasons_select_column { + """column name""" + created_at + + """column name""" + description + + """column name""" + ends_at + + """column name""" + id + + """column name""" + needs_rebuild + + """column name""" + number + + """column name""" + starts_at +} + +""" +input type for updating data in table "seasons" +""" +input seasons_set_input { + created_at: timestamptz + description: String + ends_at: timestamptz + id: uuid + needs_rebuild: Boolean + number: Int + starts_at: timestamptz +} + +"""aggregate stddev on columns""" +type seasons_stddev_fields { + number: Float +} + +"""aggregate stddev_pop on columns""" +type seasons_stddev_pop_fields { + number: Float +} + +"""aggregate stddev_samp on columns""" +type seasons_stddev_samp_fields { + number: Float +} + +""" +Streaming cursor of the table "seasons" +""" +input seasons_stream_cursor_input { + """Stream column input with initial value""" + initial_value: seasons_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input seasons_stream_cursor_value_input { + created_at: timestamptz + description: String + ends_at: timestamptz + id: uuid + needs_rebuild: Boolean + number: Int + starts_at: timestamptz +} + +"""aggregate sum on columns""" +type seasons_sum_fields { + number: Int +} + +""" +update columns of table "seasons" +""" +enum seasons_update_column { + """column name""" + created_at + + """column name""" + description + + """column name""" + ends_at + + """column name""" + id + + """column name""" + needs_rebuild + + """column name""" + number + + """column name""" + starts_at +} + +input seasons_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: seasons_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: seasons_set_input + + """filter the rows which have to be updated""" + where: seasons_bool_exp! +} + +"""aggregate var_pop on columns""" +type seasons_var_pop_fields { + number: Float +} + +"""aggregate var_samp on columns""" +type seasons_var_samp_fields { + number: Float +} + +"""aggregate variance on columns""" +type seasons_variance_fields { + number: Float +} + +""" +columns and relationships of "server_regions" +""" +type server_regions { + """ + A computed field, executes function "available_region_server_count" + """ + available_server_count: Int + description: String + + """An array relationship""" + game_server_nodes( + """distinct select on columns""" + distinct_on: [game_server_nodes_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_nodes_order_by!] + + """filter the rows returned""" + where: game_server_nodes_bool_exp + ): [game_server_nodes!]! + + """An aggregate relationship""" + game_server_nodes_aggregate( + """distinct select on columns""" + distinct_on: [game_server_nodes_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_nodes_order_by!] + + """filter the rows returned""" + where: game_server_nodes_bool_exp + ): game_server_nodes_aggregate! + + """ + A computed field, executes function "region_has_node" + """ + has_node: Boolean + is_lan: Boolean! + + """ + A computed field, executes function "region_status" + """ + status: String + steam_relay: Boolean! + + """ + A computed field, executes function "total_region_server_count" + """ + total_server_count: Int + value: String! +} + +""" +aggregated selection of "server_regions" +""" +type server_regions_aggregate { + aggregate: server_regions_aggregate_fields + nodes: [server_regions!]! +} + +""" +aggregate fields of "server_regions" +""" +type server_regions_aggregate_fields { + avg: server_regions_avg_fields + count(columns: [server_regions_select_column!], distinct: Boolean): Int! + max: server_regions_max_fields + min: server_regions_min_fields + stddev: server_regions_stddev_fields + stddev_pop: server_regions_stddev_pop_fields + stddev_samp: server_regions_stddev_samp_fields + sum: server_regions_sum_fields + var_pop: server_regions_var_pop_fields + var_samp: server_regions_var_samp_fields + variance: server_regions_variance_fields +} + +"""aggregate avg on columns""" +type server_regions_avg_fields { + """ + A computed field, executes function "available_region_server_count" + """ + available_server_count: Int + + """ + A computed field, executes function "total_region_server_count" + """ + total_server_count: Int +} + +""" +Boolean expression to filter rows from the table "server_regions". All fields are combined with a logical 'AND'. +""" +input server_regions_bool_exp { + _and: [server_regions_bool_exp!] + _not: server_regions_bool_exp + _or: [server_regions_bool_exp!] + available_server_count: Int_comparison_exp + description: String_comparison_exp + game_server_nodes: game_server_nodes_bool_exp + game_server_nodes_aggregate: game_server_nodes_aggregate_bool_exp + has_node: Boolean_comparison_exp + is_lan: Boolean_comparison_exp + status: String_comparison_exp + steam_relay: Boolean_comparison_exp + total_server_count: Int_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "server_regions" +""" +enum server_regions_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_server_regions_pkey +} + +""" +input type for inserting data into table "server_regions" +""" +input server_regions_insert_input { + description: String + game_server_nodes: game_server_nodes_arr_rel_insert_input + is_lan: Boolean + steam_relay: Boolean + value: String +} + +"""aggregate max on columns""" +type server_regions_max_fields { + """ + A computed field, executes function "available_region_server_count" + """ + available_server_count: Int + description: String + + """ + A computed field, executes function "region_status" + """ + status: String + + """ + A computed field, executes function "total_region_server_count" + """ + total_server_count: Int + value: String +} + +"""aggregate min on columns""" +type server_regions_min_fields { + """ + A computed field, executes function "available_region_server_count" + """ + available_server_count: Int + description: String + + """ + A computed field, executes function "region_status" + """ + status: String + + """ + A computed field, executes function "total_region_server_count" + """ + total_server_count: Int + value: String +} + +""" +response of any mutation on the table "server_regions" +""" +type server_regions_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [server_regions!]! +} + +""" +input type for inserting object relation for remote table "server_regions" +""" +input server_regions_obj_rel_insert_input { + data: server_regions_insert_input! + + """upsert condition""" + on_conflict: server_regions_on_conflict +} + +""" +on_conflict condition type for table "server_regions" +""" +input server_regions_on_conflict { + constraint: server_regions_constraint! + update_columns: [server_regions_update_column!]! = [] + where: server_regions_bool_exp +} + +"""Ordering options when selecting data from "server_regions".""" +input server_regions_order_by { + available_server_count: order_by + description: order_by + game_server_nodes_aggregate: game_server_nodes_aggregate_order_by + has_node: order_by + is_lan: order_by + status: order_by + steam_relay: order_by + total_server_count: order_by + value: order_by +} + +"""primary key columns input for table: server_regions""" +input server_regions_pk_columns_input { + value: String! +} + +""" +select columns of table "server_regions" +""" +enum server_regions_select_column { + """column name""" + description + + """column name""" + is_lan + + """column name""" + steam_relay + + """column name""" + value +} + +""" +input type for updating data in table "server_regions" +""" +input server_regions_set_input { + description: String + is_lan: Boolean + steam_relay: Boolean + value: String +} + +"""aggregate stddev on columns""" +type server_regions_stddev_fields { + """ + A computed field, executes function "available_region_server_count" + """ + available_server_count: Int + + """ + A computed field, executes function "total_region_server_count" + """ + total_server_count: Int +} + +"""aggregate stddev_pop on columns""" +type server_regions_stddev_pop_fields { + """ + A computed field, executes function "available_region_server_count" + """ + available_server_count: Int + + """ + A computed field, executes function "total_region_server_count" + """ + total_server_count: Int +} + +"""aggregate stddev_samp on columns""" +type server_regions_stddev_samp_fields { + """ + A computed field, executes function "available_region_server_count" + """ + available_server_count: Int + + """ + A computed field, executes function "total_region_server_count" + """ + total_server_count: Int +} + +""" +Streaming cursor of the table "server_regions" +""" +input server_regions_stream_cursor_input { + """Stream column input with initial value""" + initial_value: server_regions_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input server_regions_stream_cursor_value_input { + description: String + is_lan: Boolean + steam_relay: Boolean + value: String +} + +"""aggregate sum on columns""" +type server_regions_sum_fields { + """ + A computed field, executes function "available_region_server_count" + """ + available_server_count: Int + + """ + A computed field, executes function "total_region_server_count" + """ + total_server_count: Int +} + +""" +update columns of table "server_regions" +""" +enum server_regions_update_column { + """column name""" + description + + """column name""" + is_lan + + """column name""" + steam_relay + + """column name""" + value +} + +input server_regions_updates { + """sets the columns of the filtered rows to the given values""" + _set: server_regions_set_input + + """filter the rows which have to be updated""" + where: server_regions_bool_exp! +} + +"""aggregate var_pop on columns""" +type server_regions_var_pop_fields { + """ + A computed field, executes function "available_region_server_count" + """ + available_server_count: Int + + """ + A computed field, executes function "total_region_server_count" + """ + total_server_count: Int +} + +"""aggregate var_samp on columns""" +type server_regions_var_samp_fields { + """ + A computed field, executes function "available_region_server_count" + """ + available_server_count: Int + + """ + A computed field, executes function "total_region_server_count" + """ + total_server_count: Int +} + +"""aggregate variance on columns""" +type server_regions_variance_fields { + """ + A computed field, executes function "available_region_server_count" + """ + available_server_count: Int + + """ + A computed field, executes function "total_region_server_count" + """ + total_server_count: Int +} + +""" +columns and relationships of "servers" +""" +type servers { + api_password: uuid! + boot_status: String + boot_status_detail: String + connect_password: String + connected: Boolean! + + """ + A computed field, executes function "get_server_connection_link" + """ + connection_link: String + + """ + A computed field, executes function "get_server_connection_string" + """ + connection_string: String + + """An object relationship""" + current_match: matches + 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 + host: String! + id: uuid! + is_dedicated: Boolean! + label: String! + loaded_plugins( + """JSON select path""" + path: String + ): jsonb + + """An array relationship""" + matches( + """distinct select on columns""" + distinct_on: [matches_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: [matches_order_by!] + + """filter the rows returned""" + where: matches_bool_exp + ): [matches!]! + + """An aggregate relationship""" + matches_aggregate( + """distinct select on columns""" + distinct_on: [matches_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: [matches_order_by!] + + """filter the rows returned""" + where: matches_bool_exp + ): matches_aggregate! + 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 + region: String! + reserved_by_match_id: uuid + + """An object relationship""" + server_region: server_regions + steam_relay: String + tv_port: Int + type: e_server_types_enum! + updated_at: timestamptz +} + +""" +aggregated selection of "servers" +""" +type servers_aggregate { + aggregate: servers_aggregate_fields + nodes: [servers!]! +} + +input servers_aggregate_bool_exp { + bool_and: servers_aggregate_bool_exp_bool_and + bool_or: servers_aggregate_bool_exp_bool_or + count: servers_aggregate_bool_exp_count +} + +input servers_aggregate_bool_exp_bool_and { + arguments: servers_select_column_servers_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: servers_bool_exp + predicate: Boolean_comparison_exp! +} + +input servers_aggregate_bool_exp_bool_or { + arguments: servers_select_column_servers_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: servers_bool_exp + predicate: Boolean_comparison_exp! +} + +input servers_aggregate_bool_exp_count { + arguments: [servers_select_column!] + distinct: Boolean + filter: servers_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "servers" +""" +type servers_aggregate_fields { + avg: servers_avg_fields + count(columns: [servers_select_column!], distinct: Boolean): Int! + max: servers_max_fields + min: servers_min_fields + stddev: servers_stddev_fields + stddev_pop: servers_stddev_pop_fields + stddev_samp: servers_stddev_samp_fields + sum: servers_sum_fields + var_pop: servers_var_pop_fields + var_samp: servers_var_samp_fields + variance: servers_variance_fields +} + +""" +order by aggregate values of table "servers" +""" +input servers_aggregate_order_by { + avg: servers_avg_order_by + count: order_by + max: servers_max_order_by + min: servers_min_order_by + stddev: servers_stddev_order_by + stddev_pop: servers_stddev_pop_order_by + stddev_samp: servers_stddev_samp_order_by + sum: servers_sum_order_by + var_pop: servers_var_pop_order_by + var_samp: servers_var_samp_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" +""" +input servers_arr_rel_insert_input { + data: [servers_insert_input!]! + + """upsert condition""" + on_conflict: servers_on_conflict +} + +"""aggregate avg on columns""" +type servers_avg_fields { + max_players: Float + port: Float + tv_port: Float +} + +""" +order by avg() on columns of table "servers" +""" +input servers_avg_order_by { + max_players: order_by + port: order_by + tv_port: order_by +} + +""" +Boolean expression to filter rows from the table "servers". All fields are combined with a logical 'AND'. +""" +input servers_bool_exp { + _and: [servers_bool_exp!] + _not: servers_bool_exp + _or: [servers_bool_exp!] + api_password: uuid_comparison_exp + boot_status: String_comparison_exp + boot_status_detail: String_comparison_exp + connect_password: String_comparison_exp + connected: Boolean_comparison_exp + connection_link: String_comparison_exp + connection_string: String_comparison_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 + region: String_comparison_exp + reserved_by_match_id: uuid_comparison_exp + server_region: server_regions_bool_exp + steam_relay: String_comparison_exp + tv_port: Int_comparison_exp + type: e_server_types_enum_comparison_exp + updated_at: timestamptz_comparison_exp +} + +""" +unique or primary key constraints on table "servers" +""" +enum servers_constraint { + """ + unique or primary key constraint on columns "id" + """ + servers_pkey + + """ + unique or primary key constraint on columns "reserved_by_match_id" + """ + 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" +""" +input servers_inc_input { + max_players: Int + port: Int + tv_port: Int +} + +""" +input type for inserting data into table "servers" +""" +input servers_insert_input { + api_password: uuid + boot_status: String + boot_status_detail: String + connect_password: String + connected: Boolean + 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 + region: String + reserved_by_match_id: uuid + server_region: server_regions_obj_rel_insert_input + steam_relay: String + tv_port: Int + type: e_server_types_enum + updated_at: timestamptz +} + +"""aggregate max on columns""" +type servers_max_fields { + api_password: uuid + boot_status: String + boot_status_detail: String + connect_password: String + + """ + A computed field, executes function "get_server_connection_link" + """ + connection_link: String + + """ + A computed field, executes function "get_server_connection_string" + """ + connection_string: String + game: String + game_mode_id: uuid + game_server_node_id: String + host: String + id: uuid + label: String + max_players: Int + offline_at: timestamptz + plugin_version: String + plugins_checked_at: timestamptz + port: Int + region: String + reserved_by_match_id: uuid + steam_relay: String + tv_port: Int + updated_at: timestamptz +} + +""" +order by max() on columns of table "servers" +""" +input servers_max_order_by { + api_password: order_by + boot_status: 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 + label: 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 + steam_relay: order_by + tv_port: order_by + updated_at: order_by +} + +"""aggregate min on columns""" +type servers_min_fields { + api_password: uuid + boot_status: String + boot_status_detail: String + connect_password: String + + """ + A computed field, executes function "get_server_connection_link" + """ + connection_link: String + + """ + A computed field, executes function "get_server_connection_string" + """ + connection_string: String + game: String + game_mode_id: uuid + game_server_node_id: String + host: String + id: uuid + label: String + max_players: Int + offline_at: timestamptz + plugin_version: String + plugins_checked_at: timestamptz + port: Int + region: String + reserved_by_match_id: uuid + steam_relay: String + tv_port: Int + updated_at: timestamptz +} + +""" +order by min() on columns of table "servers" +""" +input servers_min_order_by { + api_password: order_by + boot_status: 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 + label: 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 + steam_relay: order_by + tv_port: order_by + updated_at: order_by +} + +""" +response of any mutation on the table "servers" +""" +type servers_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [servers!]! +} + +""" +input type for inserting object relation for remote table "servers" +""" +input servers_obj_rel_insert_input { + data: servers_insert_input! + + """upsert condition""" + on_conflict: servers_on_conflict +} + +""" +on_conflict condition type for table "servers" +""" +input servers_on_conflict { + constraint: servers_constraint! + update_columns: [servers_update_column!]! = [] + where: servers_bool_exp +} + +"""Ordering options when selecting data from "servers".""" +input servers_order_by { + api_password: order_by + boot_status: order_by + boot_status_detail: order_by + connect_password: order_by + connected: order_by + connection_link: order_by + connection_string: 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 + region: order_by + reserved_by_match_id: order_by + server_region: server_regions_order_by + steam_relay: order_by + tv_port: order_by + type: order_by + updated_at: order_by +} + +"""primary key columns input for table: servers""" +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" +""" +enum servers_select_column { + """column name""" + api_password + + """column name""" + boot_status + + """column name""" + boot_status_detail + + """column name""" + connect_password + + """column name""" + connected + + """column name""" + enabled + + """column name""" + game + + """column name""" + game_mode_id + + """column name""" + game_server_node_id + + """column name""" + host + + """column name""" + id + + """column name""" + is_dedicated + + """column name""" + label + + """column name""" + loaded_plugins + + """column name""" + max_players + + """column name""" + offline_at + + """column name""" + plugin_runtime + + """column name""" + plugin_version + + """column name""" + plugins_checked_at + + """column name""" + port + + """column name""" + rcon_password + + """column name""" + rcon_status + + """column name""" + region + + """column name""" + reserved_by_match_id + + """column name""" + steam_relay + + """column name""" + tv_port + + """column name""" + type + + """column name""" + updated_at +} + +""" +select "servers_aggregate_bool_exp_bool_and_arguments_columns" columns of table "servers" +""" +enum servers_select_column_servers_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + connected + + """column name""" + enabled + + """column name""" + is_dedicated + + """column name""" + rcon_status +} + +""" +select "servers_aggregate_bool_exp_bool_or_arguments_columns" columns of table "servers" +""" +enum servers_select_column_servers_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + connected + + """column name""" + enabled + + """column name""" + is_dedicated + + """column name""" + rcon_status +} + +""" +input type for updating data in table "servers" +""" +input servers_set_input { + api_password: uuid + boot_status: String + boot_status_detail: String + connect_password: String + 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 + region: String + reserved_by_match_id: uuid + steam_relay: String + tv_port: Int + type: e_server_types_enum + updated_at: timestamptz +} + +"""aggregate stddev on columns""" +type servers_stddev_fields { + max_players: Float + port: Float + tv_port: Float +} + +""" +order by stddev() on columns of table "servers" +""" +input servers_stddev_order_by { + max_players: order_by + port: order_by + tv_port: order_by +} + +"""aggregate stddev_pop on columns""" +type servers_stddev_pop_fields { + max_players: Float + port: Float + tv_port: Float +} + +""" +order by stddev_pop() on columns of table "servers" +""" +input servers_stddev_pop_order_by { + max_players: order_by + port: order_by + tv_port: order_by +} + +"""aggregate stddev_samp on columns""" +type servers_stddev_samp_fields { + max_players: Float + port: Float + tv_port: Float +} + +""" +order by stddev_samp() on columns of table "servers" +""" +input servers_stddev_samp_order_by { + max_players: order_by + port: order_by + tv_port: order_by +} + +""" +Streaming cursor of the table "servers" +""" +input servers_stream_cursor_input { + """Stream column input with initial value""" + initial_value: servers_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input servers_stream_cursor_value_input { + api_password: uuid + boot_status: String + boot_status_detail: String + connect_password: String + 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 + region: String + reserved_by_match_id: uuid + steam_relay: String + tv_port: Int + type: e_server_types_enum + updated_at: timestamptz +} + +"""aggregate sum on columns""" +type servers_sum_fields { + max_players: Int + port: Int + tv_port: Int +} + +""" +order by sum() on columns of table "servers" +""" +input servers_sum_order_by { + max_players: order_by + port: order_by + tv_port: order_by +} + +""" +update columns of table "servers" +""" +enum servers_update_column { + """column name""" + api_password + + """column name""" + boot_status + + """column name""" + boot_status_detail + + """column name""" + connect_password + + """column name""" + connected + + """column name""" + enabled + + """column name""" + game + + """column name""" + game_mode_id + + """column name""" + game_server_node_id + + """column name""" + host + + """column name""" + id + + """column name""" + is_dedicated + + """column name""" + label + + """column name""" + loaded_plugins + + """column name""" + max_players + + """column name""" + offline_at + + """column name""" + plugin_runtime + + """column name""" + plugin_version + + """column name""" + plugins_checked_at + + """column name""" + port + + """column name""" + rcon_password + + """column name""" + rcon_status + + """column name""" + region + + """column name""" + reserved_by_match_id + + """column name""" + steam_relay + + """column name""" + tv_port + + """column name""" + type + + """column name""" + updated_at +} + +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 + + """filter the rows which have to be updated""" + where: servers_bool_exp! +} + +"""aggregate var_pop on columns""" +type servers_var_pop_fields { + max_players: Float + port: Float + tv_port: Float +} + +""" +order by var_pop() on columns of table "servers" +""" +input servers_var_pop_order_by { + max_players: order_by + port: order_by + tv_port: order_by +} + +"""aggregate var_samp on columns""" +type servers_var_samp_fields { + max_players: Float + port: Float + tv_port: Float +} + +""" +order by var_samp() on columns of table "servers" +""" +input servers_var_samp_order_by { + max_players: order_by + port: order_by + tv_port: order_by +} + +"""aggregate variance on columns""" +type servers_variance_fields { + max_players: Float + port: Float + tv_port: Float +} + +""" +order by variance() on columns of table "servers" +""" +input servers_variance_order_by { + max_players: order_by + port: order_by + tv_port: order_by +} + +""" +columns and relationships of "settings" +""" +type settings { + name: String! + value: String +} + +""" +aggregated selection of "settings" +""" +type settings_aggregate { + aggregate: settings_aggregate_fields + nodes: [settings!]! +} + +""" +aggregate fields of "settings" +""" +type settings_aggregate_fields { + count(columns: [settings_select_column!], distinct: Boolean): Int! + max: settings_max_fields + min: settings_min_fields +} + +""" +Boolean expression to filter rows from the table "settings". All fields are combined with a logical 'AND'. +""" +input settings_bool_exp { + _and: [settings_bool_exp!] + _not: settings_bool_exp + _or: [settings_bool_exp!] + name: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "settings" +""" +enum settings_constraint { + """ + unique or primary key constraint on columns "name" + """ + settings_pkey +} + +""" +input type for inserting data into table "settings" +""" +input settings_insert_input { + name: String + value: String +} + +"""aggregate max on columns""" +type settings_max_fields { + name: String + value: String +} + +"""aggregate min on columns""" +type settings_min_fields { + name: String + value: String +} + +""" +response of any mutation on the table "settings" +""" +type settings_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [settings!]! +} + +""" +on_conflict condition type for table "settings" +""" +input settings_on_conflict { + constraint: settings_constraint! + update_columns: [settings_update_column!]! = [] + where: settings_bool_exp +} + +"""Ordering options when selecting data from "settings".""" +input settings_order_by { + name: order_by + value: order_by +} + +"""primary key columns input for table: settings""" +input settings_pk_columns_input { + name: String! +} + +""" +select columns of table "settings" +""" +enum settings_select_column { + """column name""" + name + + """column name""" + value +} + +""" +input type for updating data in table "settings" +""" +input settings_set_input { + name: String + value: String +} + +""" +Streaming cursor of the table "settings" +""" +input settings_stream_cursor_input { + """Stream column input with initial value""" + initial_value: settings_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input settings_stream_cursor_value_input { + name: String + value: String +} + +""" +update columns of table "settings" +""" +enum settings_update_column { + """column name""" + name + + """column name""" + value +} + +input settings_updates { + """sets the columns of the filtered rows to the given values""" + _set: settings_set_input + + """filter the rows which have to be updated""" + where: settings_bool_exp! +} + +scalar smallint + +""" +Boolean expression to compare columns of type "smallint". All fields are combined with logical 'AND'. +""" +input smallint_comparison_exp { + _eq: smallint + _gt: smallint + _gte: smallint + _in: [smallint!] + _is_null: Boolean + _lt: smallint + _lte: smallint + _neq: smallint + _nin: [smallint!] +} + +""" +columns and relationships of "steam_account_claims" +""" +type steam_account_claims { + created_at: timestamptz! + id: uuid! + k8s_job_name: String! + + """An object relationship""" + node: game_server_nodes + node_id: String + purpose: String! + + """An object relationship""" + steam_account: steam_accounts! + steam_account_id: uuid! +} + +""" +aggregated selection of "steam_account_claims" +""" +type steam_account_claims_aggregate { + aggregate: steam_account_claims_aggregate_fields + nodes: [steam_account_claims!]! +} + +input steam_account_claims_aggregate_bool_exp { + count: steam_account_claims_aggregate_bool_exp_count +} + +input steam_account_claims_aggregate_bool_exp_count { + arguments: [steam_account_claims_select_column!] + distinct: Boolean + filter: steam_account_claims_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "steam_account_claims" +""" +type steam_account_claims_aggregate_fields { + count(columns: [steam_account_claims_select_column!], distinct: Boolean): Int! + max: steam_account_claims_max_fields + min: steam_account_claims_min_fields +} + +""" +order by aggregate values of table "steam_account_claims" +""" +input steam_account_claims_aggregate_order_by { + count: order_by + max: steam_account_claims_max_order_by + min: steam_account_claims_min_order_by +} + +""" +input type for inserting array relation for remote table "steam_account_claims" +""" +input steam_account_claims_arr_rel_insert_input { + data: [steam_account_claims_insert_input!]! + + """upsert condition""" + on_conflict: steam_account_claims_on_conflict +} + +""" +Boolean expression to filter rows from the table "steam_account_claims". All fields are combined with a logical 'AND'. +""" +input steam_account_claims_bool_exp { + _and: [steam_account_claims_bool_exp!] + _not: steam_account_claims_bool_exp + _or: [steam_account_claims_bool_exp!] + created_at: timestamptz_comparison_exp + id: uuid_comparison_exp + k8s_job_name: String_comparison_exp + node: game_server_nodes_bool_exp + node_id: String_comparison_exp + purpose: String_comparison_exp + steam_account: steam_accounts_bool_exp + steam_account_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "steam_account_claims" +""" +enum steam_account_claims_constraint { + """ + unique or primary key constraint on columns "k8s_job_name" + """ + steam_account_claims_k8s_job_name_key + + """ + unique or primary key constraint on columns "id" + """ + steam_account_claims_pkey +} + +""" +input type for inserting data into table "steam_account_claims" +""" +input steam_account_claims_insert_input { + created_at: timestamptz + id: uuid + k8s_job_name: String + node: game_server_nodes_obj_rel_insert_input + node_id: String + purpose: String + steam_account: steam_accounts_obj_rel_insert_input + steam_account_id: uuid +} + +"""aggregate max on columns""" +type steam_account_claims_max_fields { + created_at: timestamptz + id: uuid + k8s_job_name: String + node_id: String + purpose: String + steam_account_id: uuid +} + +""" +order by max() on columns of table "steam_account_claims" +""" +input steam_account_claims_max_order_by { + created_at: order_by + id: order_by + k8s_job_name: order_by + node_id: order_by + purpose: order_by + steam_account_id: order_by +} + +"""aggregate min on columns""" +type steam_account_claims_min_fields { + created_at: timestamptz + id: uuid + k8s_job_name: String + node_id: String + purpose: String + steam_account_id: uuid +} + +""" +order by min() on columns of table "steam_account_claims" +""" +input steam_account_claims_min_order_by { + created_at: order_by + id: order_by + k8s_job_name: order_by + node_id: order_by + purpose: order_by + steam_account_id: order_by +} + +""" +response of any mutation on the table "steam_account_claims" +""" +type steam_account_claims_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [steam_account_claims!]! +} + +""" +on_conflict condition type for table "steam_account_claims" +""" +input steam_account_claims_on_conflict { + constraint: steam_account_claims_constraint! + update_columns: [steam_account_claims_update_column!]! = [] + where: steam_account_claims_bool_exp +} + +"""Ordering options when selecting data from "steam_account_claims".""" +input steam_account_claims_order_by { + created_at: order_by + id: order_by + k8s_job_name: order_by + node: game_server_nodes_order_by + node_id: order_by + purpose: order_by + steam_account: steam_accounts_order_by + steam_account_id: order_by +} + +"""primary key columns input for table: steam_account_claims""" +input steam_account_claims_pk_columns_input { + id: uuid! +} + +""" +select columns of table "steam_account_claims" +""" +enum steam_account_claims_select_column { + """column name""" + created_at + + """column name""" + id + + """column name""" + k8s_job_name + + """column name""" + node_id + + """column name""" + purpose + + """column name""" + steam_account_id +} + +""" +input type for updating data in table "steam_account_claims" +""" +input steam_account_claims_set_input { + created_at: timestamptz + id: uuid + k8s_job_name: String + node_id: String + purpose: String + steam_account_id: uuid +} + +""" +Streaming cursor of the table "steam_account_claims" +""" +input steam_account_claims_stream_cursor_input { + """Stream column input with initial value""" + initial_value: steam_account_claims_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input steam_account_claims_stream_cursor_value_input { + created_at: timestamptz + id: uuid + k8s_job_name: String + node_id: String + purpose: String + steam_account_id: uuid +} + +""" +update columns of table "steam_account_claims" +""" +enum steam_account_claims_update_column { + """column name""" + created_at + + """column name""" + id + + """column name""" + k8s_job_name + + """column name""" + node_id + + """column name""" + purpose + + """column name""" + steam_account_id +} + +input steam_account_claims_updates { + """sets the columns of the filtered rows to the given values""" + _set: steam_account_claims_set_input + + """filter the rows which have to be updated""" + where: steam_account_claims_bool_exp! +} + +""" +columns and relationships of "steam_accounts" +""" +type steam_accounts { + """An array relationship""" + claims( + """distinct select on columns""" + distinct_on: [steam_account_claims_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: [steam_account_claims_order_by!] + + """filter the rows returned""" + where: steam_account_claims_bool_exp + ): [steam_account_claims!]! + + """An aggregate relationship""" + claims_aggregate( + """distinct select on columns""" + distinct_on: [steam_account_claims_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: [steam_account_claims_order_by!] + + """filter the rows returned""" + where: steam_account_claims_bool_exp + ): steam_account_claims_aggregate! + created_at: timestamptz! + friend_capacity: Int! + id: uuid! + + """An object relationship""" + last_node: game_server_nodes + last_node_id: String + password: String! + role: String! + steam_level: Int + steamid64: bigint + updated_at: timestamptz! + username: String! +} + +""" +aggregated selection of "steam_accounts" +""" +type steam_accounts_aggregate { + aggregate: steam_accounts_aggregate_fields + nodes: [steam_accounts!]! +} + +""" +aggregate fields of "steam_accounts" +""" +type steam_accounts_aggregate_fields { + avg: steam_accounts_avg_fields + count(columns: [steam_accounts_select_column!], distinct: Boolean): Int! + max: steam_accounts_max_fields + min: steam_accounts_min_fields + stddev: steam_accounts_stddev_fields + stddev_pop: steam_accounts_stddev_pop_fields + stddev_samp: steam_accounts_stddev_samp_fields + sum: steam_accounts_sum_fields + var_pop: steam_accounts_var_pop_fields + var_samp: steam_accounts_var_samp_fields + variance: steam_accounts_variance_fields +} + +"""aggregate avg on columns""" +type steam_accounts_avg_fields { + friend_capacity: Float + steam_level: Float + steamid64: Float +} + +""" +Boolean expression to filter rows from the table "steam_accounts". All fields are combined with a logical 'AND'. +""" +input steam_accounts_bool_exp { + _and: [steam_accounts_bool_exp!] + _not: steam_accounts_bool_exp + _or: [steam_accounts_bool_exp!] + claims: steam_account_claims_bool_exp + claims_aggregate: steam_account_claims_aggregate_bool_exp + created_at: timestamptz_comparison_exp + friend_capacity: Int_comparison_exp + id: uuid_comparison_exp + last_node: game_server_nodes_bool_exp + last_node_id: String_comparison_exp + password: String_comparison_exp + role: String_comparison_exp + steam_level: Int_comparison_exp + steamid64: bigint_comparison_exp + updated_at: timestamptz_comparison_exp + username: String_comparison_exp +} + +""" +unique or primary key constraints on table "steam_accounts" +""" +enum steam_accounts_constraint { + """ + unique or primary key constraint on columns "id" + """ + steam_accounts_pkey + + """ + unique or primary key constraint on columns "username" + """ + steam_accounts_username_key +} + +""" +input type for incrementing numeric columns in table "steam_accounts" +""" +input steam_accounts_inc_input { + friend_capacity: Int + steam_level: Int + steamid64: bigint +} + +""" +input type for inserting data into table "steam_accounts" +""" +input steam_accounts_insert_input { + claims: steam_account_claims_arr_rel_insert_input + created_at: timestamptz + friend_capacity: Int + id: uuid + last_node: game_server_nodes_obj_rel_insert_input + last_node_id: String + password: String + role: String + steam_level: Int + steamid64: bigint + updated_at: timestamptz + username: String +} + +"""aggregate max on columns""" +type steam_accounts_max_fields { + created_at: timestamptz + friend_capacity: Int + id: uuid + last_node_id: String + password: String + role: String + steam_level: Int + steamid64: bigint + updated_at: timestamptz + username: String +} + +"""aggregate min on columns""" +type steam_accounts_min_fields { + created_at: timestamptz + friend_capacity: Int + id: uuid + last_node_id: String + password: String + role: String + steam_level: Int + steamid64: bigint + updated_at: timestamptz + username: String +} + +""" +response of any mutation on the table "steam_accounts" +""" +type steam_accounts_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [steam_accounts!]! +} + +""" +input type for inserting object relation for remote table "steam_accounts" +""" +input steam_accounts_obj_rel_insert_input { + data: steam_accounts_insert_input! + + """upsert condition""" + on_conflict: steam_accounts_on_conflict +} + +""" +on_conflict condition type for table "steam_accounts" +""" +input steam_accounts_on_conflict { + constraint: steam_accounts_constraint! + update_columns: [steam_accounts_update_column!]! = [] + where: steam_accounts_bool_exp +} + +"""Ordering options when selecting data from "steam_accounts".""" +input steam_accounts_order_by { + claims_aggregate: steam_account_claims_aggregate_order_by + created_at: order_by + friend_capacity: order_by + id: order_by + last_node: game_server_nodes_order_by + last_node_id: order_by + password: order_by + role: order_by + steam_level: order_by + steamid64: order_by + updated_at: order_by + username: order_by +} + +"""primary key columns input for table: steam_accounts""" +input steam_accounts_pk_columns_input { + id: uuid! +} + +""" +select columns of table "steam_accounts" +""" +enum steam_accounts_select_column { + """column name""" + created_at + + """column name""" + friend_capacity + + """column name""" + id + + """column name""" + last_node_id + + """column name""" + password + + """column name""" + role + + """column name""" + steam_level + + """column name""" + steamid64 + + """column name""" + updated_at + + """column name""" + username +} + +""" +input type for updating data in table "steam_accounts" +""" +input steam_accounts_set_input { + created_at: timestamptz + friend_capacity: Int + id: uuid + last_node_id: String + password: String + role: String + steam_level: Int + steamid64: bigint + updated_at: timestamptz + username: String +} + +"""aggregate stddev on columns""" +type steam_accounts_stddev_fields { + friend_capacity: Float + steam_level: Float + steamid64: Float +} + +"""aggregate stddev_pop on columns""" +type steam_accounts_stddev_pop_fields { + friend_capacity: Float + steam_level: Float + steamid64: Float +} + +"""aggregate stddev_samp on columns""" +type steam_accounts_stddev_samp_fields { + friend_capacity: Float + steam_level: Float + steamid64: Float +} + +""" +Streaming cursor of the table "steam_accounts" +""" +input steam_accounts_stream_cursor_input { + """Stream column input with initial value""" + initial_value: steam_accounts_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input steam_accounts_stream_cursor_value_input { + created_at: timestamptz + friend_capacity: Int + id: uuid + last_node_id: String + password: String + role: String + steam_level: Int + steamid64: bigint + updated_at: timestamptz + username: String +} + +"""aggregate sum on columns""" +type steam_accounts_sum_fields { + friend_capacity: Int + steam_level: Int + steamid64: bigint +} + +""" +update columns of table "steam_accounts" +""" +enum steam_accounts_update_column { + """column name""" + created_at + + """column name""" + friend_capacity + + """column name""" + id + + """column name""" + last_node_id + + """column name""" + password + + """column name""" + role + + """column name""" + steam_level + + """column name""" + steamid64 + + """column name""" + updated_at + + """column name""" + username +} + +input steam_accounts_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: steam_accounts_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: steam_accounts_set_input + + """filter the rows which have to be updated""" + where: steam_accounts_bool_exp! +} + +"""aggregate var_pop on columns""" +type steam_accounts_var_pop_fields { + friend_capacity: Float + steam_level: Float + steamid64: Float +} + +"""aggregate var_samp on columns""" +type steam_accounts_var_samp_fields { + friend_capacity: Float + steam_level: Float + steamid64: Float +} + +"""aggregate variance on columns""" +type steam_accounts_variance_fields { + friend_capacity: Float + steam_level: Float + steamid64: Float +} + +type subscription_root { + """ + fetch data from the table: "_map_pool" + """ + _map_pool( + """distinct select on columns""" + distinct_on: [_map_pool_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: [_map_pool_order_by!] + + """filter the rows returned""" + where: _map_pool_bool_exp + ): [_map_pool!]! + + """ + fetch aggregated fields from the table: "_map_pool" + """ + _map_pool_aggregate( + """distinct select on columns""" + distinct_on: [_map_pool_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: [_map_pool_order_by!] + + """filter the rows returned""" + where: _map_pool_bool_exp + ): _map_pool_aggregate! + + """fetch data from the table: "_map_pool" using primary key columns""" + _map_pool_by_pk(map_id: uuid!, map_pool_id: uuid!): _map_pool + + """ + fetch data from the table in a streaming manner: "_map_pool" + """ + _map_pool_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [_map_pool_stream_cursor_input]! + + """filter the rows returned""" + where: _map_pool_bool_exp + ): [_map_pool!]! + + """An array relationship""" + abandoned_matches( + """distinct select on columns""" + distinct_on: [abandoned_matches_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: [abandoned_matches_order_by!] + + """filter the rows returned""" + where: abandoned_matches_bool_exp + ): [abandoned_matches!]! + + """An aggregate relationship""" + abandoned_matches_aggregate( + """distinct select on columns""" + distinct_on: [abandoned_matches_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: [abandoned_matches_order_by!] + + """filter the rows returned""" + where: abandoned_matches_bool_exp + ): abandoned_matches_aggregate! + + """ + fetch data from the table: "abandoned_matches" using primary key columns + """ + abandoned_matches_by_pk(id: uuid!): abandoned_matches + + """ + fetch data from the table in a streaming manner: "abandoned_matches" + """ + abandoned_matches_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [abandoned_matches_stream_cursor_input]! + + """filter the rows returned""" + where: abandoned_matches_bool_exp + ): [abandoned_matches!]! + + """ + fetch data from the table: "api_keys" + """ + api_keys( + """distinct select on columns""" + distinct_on: [api_keys_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: [api_keys_order_by!] + + """filter the rows returned""" + where: api_keys_bool_exp + ): [api_keys!]! + + """ + fetch aggregated fields from the table: "api_keys" + """ + api_keys_aggregate( + """distinct select on columns""" + distinct_on: [api_keys_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: [api_keys_order_by!] + + """filter the rows returned""" + where: api_keys_bool_exp + ): api_keys_aggregate! + + """fetch data from the table: "api_keys" using primary key columns""" + api_keys_by_pk(id: uuid!): api_keys + + """ + fetch data from the table in a streaming manner: "api_keys" + """ + api_keys_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [api_keys_stream_cursor_input]! + + """filter the rows returned""" + where: api_keys_bool_exp + ): [api_keys!]! + + """ + fetch data from the table: "award_recipients" + """ + award_recipients( + """distinct select on columns""" + distinct_on: [award_recipients_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: [award_recipients_order_by!] + + """filter the rows returned""" + where: award_recipients_bool_exp + ): [award_recipients!]! + + """ + fetch aggregated fields from the table: "award_recipients" + """ + award_recipients_aggregate( + """distinct select on columns""" + distinct_on: [award_recipients_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: [award_recipients_order_by!] + + """filter the rows returned""" + where: award_recipients_bool_exp + ): award_recipients_aggregate! + + """ + fetch data from the table: "award_recipients" using primary key columns + """ + award_recipients_by_pk(id: uuid!): award_recipients + + """ + fetch data from the table in a streaming manner: "award_recipients" + """ + award_recipients_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [award_recipients_stream_cursor_input]! + + """filter the rows returned""" + where: award_recipients_bool_exp + ): [award_recipients!]! + + """ + fetch data from the table: "awards" + """ + awards( + """distinct select on columns""" + distinct_on: [awards_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: [awards_order_by!] + + """filter the rows returned""" + where: awards_bool_exp + ): [awards!]! + + """ + fetch aggregated fields from the table: "awards" + """ + awards_aggregate( + """distinct select on columns""" + distinct_on: [awards_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: [awards_order_by!] + + """filter the rows returned""" + where: awards_bool_exp + ): awards_aggregate! + + """fetch data from the table: "awards" using primary key columns""" + awards_by_pk(id: uuid!): awards + + """ + fetch data from the table in a streaming manner: "awards" + """ + awards_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [awards_stream_cursor_input]! + + """filter the rows returned""" + where: awards_bool_exp + ): [awards!]! + + """ + fetch data from the table: "chat_read_state" + """ + chat_read_state( + """distinct select on columns""" + distinct_on: [chat_read_state_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: [chat_read_state_order_by!] + + """filter the rows returned""" + where: chat_read_state_bool_exp + ): [chat_read_state!]! + + """ + fetch aggregated fields from the table: "chat_read_state" + """ + chat_read_state_aggregate( + """distinct select on columns""" + distinct_on: [chat_read_state_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: [chat_read_state_order_by!] + + """filter the rows returned""" + where: chat_read_state_bool_exp + ): chat_read_state_aggregate! + + """fetch data from the table: "chat_read_state" using primary key columns""" + chat_read_state_by_pk(steam_id: bigint!, thread: String!): chat_read_state + + """ + fetch data from the table in a streaming manner: "chat_read_state" + """ + chat_read_state_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [chat_read_state_stream_cursor_input]! + + """filter the rows returned""" + where: chat_read_state_bool_exp + ): [chat_read_state!]! + + """An array relationship""" + clip_render_jobs( + """distinct select on columns""" + distinct_on: [clip_render_jobs_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: [clip_render_jobs_order_by!] + + """filter the rows returned""" + where: clip_render_jobs_bool_exp + ): [clip_render_jobs!]! + + """An aggregate relationship""" + clip_render_jobs_aggregate( + """distinct select on columns""" + distinct_on: [clip_render_jobs_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: [clip_render_jobs_order_by!] + + """filter the rows returned""" + where: clip_render_jobs_bool_exp + ): clip_render_jobs_aggregate! + + """ + fetch data from the table: "clip_render_jobs" using primary key columns + """ + clip_render_jobs_by_pk(id: uuid!): clip_render_jobs + + """ + fetch data from the table in a streaming manner: "clip_render_jobs" + """ + clip_render_jobs_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [clip_render_jobs_stream_cursor_input]! + + """filter the rows returned""" + where: clip_render_jobs_bool_exp + ): [clip_render_jobs!]! + + """ + fetch data from the table: "custom_pages" + """ + custom_pages( + """distinct select on columns""" + distinct_on: [custom_pages_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [custom_pages_order_by!] + + """filter the rows returned""" + where: custom_pages_bool_exp + ): [custom_pages!]! + + """ + fetch aggregated fields from the table: "custom_pages" + """ + custom_pages_aggregate( + """distinct select on columns""" + distinct_on: [custom_pages_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [custom_pages_order_by!] + + """filter the rows returned""" + where: custom_pages_bool_exp + ): custom_pages_aggregate! + + """fetch data from the table: "custom_pages" using primary key columns""" + custom_pages_by_pk(id: uuid!): custom_pages + + """ + fetch data from the table in a streaming manner: "custom_pages" + """ + custom_pages_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [custom_pages_stream_cursor_input]! + + """filter the rows returned""" + where: custom_pages_bool_exp + ): [custom_pages!]! + + """ + fetch data from the table: "db_backups" + """ + db_backups( + """distinct select on columns""" + distinct_on: [db_backups_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: [db_backups_order_by!] + + """filter the rows returned""" + where: db_backups_bool_exp + ): [db_backups!]! + + """ + fetch aggregated fields from the table: "db_backups" + """ + db_backups_aggregate( + """distinct select on columns""" + distinct_on: [db_backups_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: [db_backups_order_by!] + + """filter the rows returned""" + where: db_backups_bool_exp + ): db_backups_aggregate! + + """fetch data from the table: "db_backups" using primary key columns""" + db_backups_by_pk(id: uuid!): db_backups + + """ + fetch data from the table in a streaming manner: "db_backups" + """ + db_backups_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [db_backups_stream_cursor_input]! + + """filter the rows returned""" + where: db_backups_bool_exp + ): [db_backups!]! + + """ + fetch data from the table: "direct_conversations" + """ + direct_conversations( + """distinct select on columns""" + distinct_on: [direct_conversations_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: [direct_conversations_order_by!] + + """filter the rows returned""" + where: direct_conversations_bool_exp + ): [direct_conversations!]! + + """ + fetch aggregated fields from the table: "direct_conversations" + """ + direct_conversations_aggregate( + """distinct select on columns""" + distinct_on: [direct_conversations_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: [direct_conversations_order_by!] + + """filter the rows returned""" + where: direct_conversations_bool_exp + ): direct_conversations_aggregate! + + """ + fetch data from the table: "direct_conversations" using primary key columns + """ + direct_conversations_by_pk(room_id: String!, steam_id: bigint!): direct_conversations + + """ + fetch data from the table in a streaming manner: "direct_conversations" + """ + direct_conversations_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [direct_conversations_stream_cursor_input]! + + """filter the rows returned""" + where: direct_conversations_bool_exp + ): [direct_conversations!]! + + """ + fetch data from the table: "direct_messages" + """ + direct_messages( + """distinct select on columns""" + distinct_on: [direct_messages_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: [direct_messages_order_by!] + + """filter the rows returned""" + where: direct_messages_bool_exp + ): [direct_messages!]! + + """ + fetch aggregated fields from the table: "direct_messages" + """ + direct_messages_aggregate( + """distinct select on columns""" + distinct_on: [direct_messages_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: [direct_messages_order_by!] + + """filter the rows returned""" + where: direct_messages_bool_exp + ): direct_messages_aggregate! + + """fetch data from the table: "direct_messages" using primary key columns""" + direct_messages_by_pk(id: uuid!): direct_messages + + """ + fetch data from the table in a streaming manner: "direct_messages" + """ + direct_messages_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [direct_messages_stream_cursor_input]! + + """filter the rows returned""" + where: direct_messages_bool_exp + ): [direct_messages!]! + + """ + fetch data from the table: "draft_game_picks" + """ + draft_game_picks( + """distinct select on columns""" + distinct_on: [draft_game_picks_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [draft_game_picks_order_by!] + + """filter the rows returned""" + where: draft_game_picks_bool_exp + ): [draft_game_picks!]! + + """ + fetch aggregated fields from the table: "draft_game_picks" + """ + draft_game_picks_aggregate( + """distinct select on columns""" + distinct_on: [draft_game_picks_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [draft_game_picks_order_by!] + + """filter the rows returned""" + where: draft_game_picks_bool_exp + ): draft_game_picks_aggregate! + + """ + fetch data from the table: "draft_game_picks" using primary key columns + """ + draft_game_picks_by_pk(id: uuid!): draft_game_picks + + """ + fetch data from the table in a streaming manner: "draft_game_picks" + """ + draft_game_picks_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [draft_game_picks_stream_cursor_input]! + + """filter the rows returned""" + where: draft_game_picks_bool_exp + ): [draft_game_picks!]! + + """An array relationship""" + draft_game_players( + """distinct select on columns""" + distinct_on: [draft_game_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [draft_game_players_order_by!] + + """filter the rows returned""" + where: draft_game_players_bool_exp + ): [draft_game_players!]! + + """An aggregate relationship""" + draft_game_players_aggregate( + """distinct select on columns""" + distinct_on: [draft_game_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [draft_game_players_order_by!] + + """filter the rows returned""" + where: draft_game_players_bool_exp + ): draft_game_players_aggregate! + + """ + fetch data from the table: "draft_game_players" using primary key columns + """ + draft_game_players_by_pk(draft_game_id: uuid!, steam_id: bigint!): draft_game_players + + """ + fetch data from the table in a streaming manner: "draft_game_players" + """ + draft_game_players_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [draft_game_players_stream_cursor_input]! + + """filter the rows returned""" + where: draft_game_players_bool_exp + ): [draft_game_players!]! + + """An array relationship""" + draft_games( + """distinct select on columns""" + distinct_on: [draft_games_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: [draft_games_order_by!] + + """filter the rows returned""" + where: draft_games_bool_exp + ): [draft_games!]! + + """An aggregate relationship""" + draft_games_aggregate( + """distinct select on columns""" + distinct_on: [draft_games_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: [draft_games_order_by!] + + """filter the rows returned""" + where: draft_games_bool_exp + ): draft_games_aggregate! + + """fetch data from the table: "draft_games" using primary key columns""" + draft_games_by_pk(id: uuid!): draft_games + + """ + fetch data from the table in a streaming manner: "draft_games" + """ + draft_games_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [draft_games_stream_cursor_input]! + + """filter the rows returned""" + where: draft_games_bool_exp + ): [draft_games!]! + + """ + fetch data from the table: "e_award_sources" + """ + e_award_sources( + """distinct select on columns""" + distinct_on: [e_award_sources_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_award_sources_order_by!] + + """filter the rows returned""" + where: e_award_sources_bool_exp + ): [e_award_sources!]! + + """ + fetch aggregated fields from the table: "e_award_sources" + """ + e_award_sources_aggregate( + """distinct select on columns""" + distinct_on: [e_award_sources_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_award_sources_order_by!] + + """filter the rows returned""" + where: e_award_sources_bool_exp + ): e_award_sources_aggregate! + + """fetch data from the table: "e_award_sources" using primary key columns""" + e_award_sources_by_pk(value: String!): e_award_sources + + """ + fetch data from the table in a streaming manner: "e_award_sources" + """ + e_award_sources_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_award_sources_stream_cursor_input]! + + """filter the rows returned""" + where: e_award_sources_bool_exp + ): [e_award_sources!]! + + """ + fetch data from the table: "e_award_tiers" + """ + e_award_tiers( + """distinct select on columns""" + distinct_on: [e_award_tiers_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_award_tiers_order_by!] + + """filter the rows returned""" + where: e_award_tiers_bool_exp + ): [e_award_tiers!]! + + """ + fetch aggregated fields from the table: "e_award_tiers" + """ + e_award_tiers_aggregate( + """distinct select on columns""" + distinct_on: [e_award_tiers_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_award_tiers_order_by!] + + """filter the rows returned""" + where: e_award_tiers_bool_exp + ): e_award_tiers_aggregate! + + """fetch data from the table: "e_award_tiers" using primary key columns""" + e_award_tiers_by_pk(value: String!): e_award_tiers + + """ + fetch data from the table in a streaming manner: "e_award_tiers" + """ + e_award_tiers_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_award_tiers_stream_cursor_input]! + + """filter the rows returned""" + where: e_award_tiers_bool_exp + ): [e_award_tiers!]! + + """ + fetch data from the table: "e_check_in_settings" + """ + e_check_in_settings( + """distinct select on columns""" + distinct_on: [e_check_in_settings_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_check_in_settings_order_by!] + + """filter the rows returned""" + where: e_check_in_settings_bool_exp + ): [e_check_in_settings!]! + + """ + fetch aggregated fields from the table: "e_check_in_settings" + """ + e_check_in_settings_aggregate( + """distinct select on columns""" + distinct_on: [e_check_in_settings_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_check_in_settings_order_by!] + + """filter the rows returned""" + where: e_check_in_settings_bool_exp + ): e_check_in_settings_aggregate! + + """ + fetch data from the table: "e_check_in_settings" using primary key columns + """ + e_check_in_settings_by_pk(value: String!): e_check_in_settings + + """ + fetch data from the table in a streaming manner: "e_check_in_settings" + """ + e_check_in_settings_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_check_in_settings_stream_cursor_input]! + + """filter the rows returned""" + where: e_check_in_settings_bool_exp + ): [e_check_in_settings!]! + + """ + fetch data from the table: "e_draft_game_captain_selection" + """ + e_draft_game_captain_selection( + """distinct select on columns""" + distinct_on: [e_draft_game_captain_selection_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_draft_game_captain_selection_order_by!] + + """filter the rows returned""" + where: e_draft_game_captain_selection_bool_exp + ): [e_draft_game_captain_selection!]! + + """ + fetch aggregated fields from the table: "e_draft_game_captain_selection" + """ + e_draft_game_captain_selection_aggregate( + """distinct select on columns""" + distinct_on: [e_draft_game_captain_selection_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_draft_game_captain_selection_order_by!] + + """filter the rows returned""" + where: e_draft_game_captain_selection_bool_exp + ): e_draft_game_captain_selection_aggregate! + + """ + fetch data from the table: "e_draft_game_captain_selection" using primary key columns + """ + e_draft_game_captain_selection_by_pk(value: String!): e_draft_game_captain_selection + + """ + fetch data from the table in a streaming manner: "e_draft_game_captain_selection" + """ + e_draft_game_captain_selection_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_draft_game_captain_selection_stream_cursor_input]! + + """filter the rows returned""" + where: e_draft_game_captain_selection_bool_exp + ): [e_draft_game_captain_selection!]! + + """ + fetch data from the table: "e_draft_game_draft_order" + """ + e_draft_game_draft_order( + """distinct select on columns""" + distinct_on: [e_draft_game_draft_order_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_draft_game_draft_order_order_by!] + + """filter the rows returned""" + where: e_draft_game_draft_order_bool_exp + ): [e_draft_game_draft_order!]! + + """ + fetch aggregated fields from the table: "e_draft_game_draft_order" + """ + e_draft_game_draft_order_aggregate( + """distinct select on columns""" + distinct_on: [e_draft_game_draft_order_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_draft_game_draft_order_order_by!] + + """filter the rows returned""" + where: e_draft_game_draft_order_bool_exp + ): e_draft_game_draft_order_aggregate! + + """ + fetch data from the table: "e_draft_game_draft_order" using primary key columns + """ + e_draft_game_draft_order_by_pk(value: String!): e_draft_game_draft_order + + """ + fetch data from the table in a streaming manner: "e_draft_game_draft_order" + """ + e_draft_game_draft_order_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_draft_game_draft_order_stream_cursor_input]! + + """filter the rows returned""" + where: e_draft_game_draft_order_bool_exp + ): [e_draft_game_draft_order!]! + + """ + fetch data from the table: "e_draft_game_mode" + """ + e_draft_game_mode( + """distinct select on columns""" + distinct_on: [e_draft_game_mode_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_draft_game_mode_order_by!] + + """filter the rows returned""" + where: e_draft_game_mode_bool_exp + ): [e_draft_game_mode!]! + + """ + fetch aggregated fields from the table: "e_draft_game_mode" + """ + e_draft_game_mode_aggregate( + """distinct select on columns""" + distinct_on: [e_draft_game_mode_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_draft_game_mode_order_by!] + + """filter the rows returned""" + where: e_draft_game_mode_bool_exp + ): e_draft_game_mode_aggregate! + + """ + fetch data from the table: "e_draft_game_mode" using primary key columns + """ + e_draft_game_mode_by_pk(value: String!): e_draft_game_mode + + """ + fetch data from the table in a streaming manner: "e_draft_game_mode" + """ + e_draft_game_mode_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_draft_game_mode_stream_cursor_input]! + + """filter the rows returned""" + where: e_draft_game_mode_bool_exp + ): [e_draft_game_mode!]! + + """ + fetch data from the table: "e_draft_game_player_status" + """ + e_draft_game_player_status( + """distinct select on columns""" + distinct_on: [e_draft_game_player_status_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_draft_game_player_status_order_by!] + + """filter the rows returned""" + where: e_draft_game_player_status_bool_exp + ): [e_draft_game_player_status!]! + + """ + fetch aggregated fields from the table: "e_draft_game_player_status" + """ + e_draft_game_player_status_aggregate( + """distinct select on columns""" + distinct_on: [e_draft_game_player_status_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_draft_game_player_status_order_by!] + + """filter the rows returned""" + where: e_draft_game_player_status_bool_exp + ): e_draft_game_player_status_aggregate! + + """ + fetch data from the table: "e_draft_game_player_status" using primary key columns + """ + e_draft_game_player_status_by_pk(value: String!): e_draft_game_player_status + + """ + fetch data from the table in a streaming manner: "e_draft_game_player_status" + """ + e_draft_game_player_status_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_draft_game_player_status_stream_cursor_input]! + + """filter the rows returned""" + where: e_draft_game_player_status_bool_exp + ): [e_draft_game_player_status!]! + + """ + fetch data from the table: "e_draft_game_status" + """ + e_draft_game_status( + """distinct select on columns""" + distinct_on: [e_draft_game_status_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_draft_game_status_order_by!] + + """filter the rows returned""" + where: e_draft_game_status_bool_exp + ): [e_draft_game_status!]! + + """ + fetch aggregated fields from the table: "e_draft_game_status" + """ + e_draft_game_status_aggregate( + """distinct select on columns""" + distinct_on: [e_draft_game_status_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_draft_game_status_order_by!] + + """filter the rows returned""" + where: e_draft_game_status_bool_exp + ): e_draft_game_status_aggregate! + + """ + fetch data from the table: "e_draft_game_status" using primary key columns + """ + e_draft_game_status_by_pk(value: String!): e_draft_game_status + + """ + fetch data from the table in a streaming manner: "e_draft_game_status" + """ + e_draft_game_status_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_draft_game_status_stream_cursor_input]! + + """filter the rows returned""" + where: e_draft_game_status_bool_exp + ): [e_draft_game_status!]! + + """ + fetch data from the table: "e_event_media_access" + """ + e_event_media_access( + """distinct select on columns""" + distinct_on: [e_event_media_access_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_event_media_access_order_by!] + + """filter the rows returned""" + where: e_event_media_access_bool_exp + ): [e_event_media_access!]! + + """ + fetch aggregated fields from the table: "e_event_media_access" + """ + e_event_media_access_aggregate( + """distinct select on columns""" + distinct_on: [e_event_media_access_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_event_media_access_order_by!] + + """filter the rows returned""" + where: e_event_media_access_bool_exp + ): e_event_media_access_aggregate! + + """ + fetch data from the table: "e_event_media_access" using primary key columns + """ + e_event_media_access_by_pk(value: String!): e_event_media_access + + """ + fetch data from the table in a streaming manner: "e_event_media_access" + """ + e_event_media_access_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_event_media_access_stream_cursor_input]! + + """filter the rows returned""" + where: e_event_media_access_bool_exp + ): [e_event_media_access!]! + + """ + fetch data from the table: "e_event_visibility" + """ + e_event_visibility( + """distinct select on columns""" + distinct_on: [e_event_visibility_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_event_visibility_order_by!] + + """filter the rows returned""" + where: e_event_visibility_bool_exp + ): [e_event_visibility!]! + + """ + fetch aggregated fields from the table: "e_event_visibility" + """ + e_event_visibility_aggregate( + """distinct select on columns""" + distinct_on: [e_event_visibility_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_event_visibility_order_by!] + + """filter the rows returned""" + where: e_event_visibility_bool_exp + ): e_event_visibility_aggregate! + + """ + fetch data from the table: "e_event_visibility" using primary key columns + """ + e_event_visibility_by_pk(value: String!): e_event_visibility + + """ + fetch data from the table in a streaming manner: "e_event_visibility" + """ + e_event_visibility_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_event_visibility_stream_cursor_input]! + + """filter the rows returned""" + where: e_event_visibility_bool_exp + ): [e_event_visibility!]! + + """ + fetch data from the table: "e_friend_status" + """ + e_friend_status( + """distinct select on columns""" + distinct_on: [e_friend_status_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_friend_status_order_by!] + + """filter the rows returned""" + where: e_friend_status_bool_exp + ): [e_friend_status!]! + + """ + fetch aggregated fields from the table: "e_friend_status" + """ + e_friend_status_aggregate( + """distinct select on columns""" + distinct_on: [e_friend_status_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_friend_status_order_by!] + + """filter the rows returned""" + where: e_friend_status_bool_exp + ): e_friend_status_aggregate! + + """fetch data from the table: "e_friend_status" using primary key columns""" + e_friend_status_by_pk(value: String!): e_friend_status + + """ + fetch data from the table in a streaming manner: "e_friend_status" + """ + e_friend_status_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_friend_status_stream_cursor_input]! + + """filter the rows returned""" + where: e_friend_status_bool_exp + ): [e_friend_status!]! + + """ + fetch data from the table: "e_game_cfg_types" + """ + e_game_cfg_types( + """distinct select on columns""" + distinct_on: [e_game_cfg_types_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_cfg_types_order_by!] + + """filter the rows returned""" + where: e_game_cfg_types_bool_exp + ): [e_game_cfg_types!]! + + """ + fetch aggregated fields from the table: "e_game_cfg_types" + """ + e_game_cfg_types_aggregate( + """distinct select on columns""" + distinct_on: [e_game_cfg_types_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_cfg_types_order_by!] + + """filter the rows returned""" + where: e_game_cfg_types_bool_exp + ): e_game_cfg_types_aggregate! + + """ + fetch data from the table: "e_game_cfg_types" using primary key columns + """ + e_game_cfg_types_by_pk(value: String!): e_game_cfg_types + + """ + fetch data from the table in a streaming manner: "e_game_cfg_types" + """ + e_game_cfg_types_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_cfg_types_stream_cursor_input]! + + """filter the rows returned""" + 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" + """ + e_game_server_node_statuses( + """distinct select on columns""" + distinct_on: [e_game_server_node_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_server_node_statuses_order_by!] + + """filter the rows returned""" + where: e_game_server_node_statuses_bool_exp + ): [e_game_server_node_statuses!]! + + """ + fetch aggregated fields from the table: "e_game_server_node_statuses" + """ + e_game_server_node_statuses_aggregate( + """distinct select on columns""" + distinct_on: [e_game_server_node_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_server_node_statuses_order_by!] + + """filter the rows returned""" + where: e_game_server_node_statuses_bool_exp + ): e_game_server_node_statuses_aggregate! + + """ + fetch data from the table: "e_game_server_node_statuses" using primary key columns + """ + e_game_server_node_statuses_by_pk(value: String!): e_game_server_node_statuses + + """ + fetch data from the table in a streaming manner: "e_game_server_node_statuses" + """ + e_game_server_node_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_server_node_statuses_stream_cursor_input]! + + """filter the rows returned""" + where: e_game_server_node_statuses_bool_exp + ): [e_game_server_node_statuses!]! + + """ + fetch data from the table: "e_league_movement_types" + """ + e_league_movement_types( + """distinct select on columns""" + distinct_on: [e_league_movement_types_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_league_movement_types_order_by!] + + """filter the rows returned""" + where: e_league_movement_types_bool_exp + ): [e_league_movement_types!]! + + """ + fetch aggregated fields from the table: "e_league_movement_types" + """ + e_league_movement_types_aggregate( + """distinct select on columns""" + distinct_on: [e_league_movement_types_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_league_movement_types_order_by!] + + """filter the rows returned""" + where: e_league_movement_types_bool_exp + ): e_league_movement_types_aggregate! + + """ + fetch data from the table: "e_league_movement_types" using primary key columns + """ + e_league_movement_types_by_pk(value: String!): e_league_movement_types + + """ + fetch data from the table in a streaming manner: "e_league_movement_types" + """ + e_league_movement_types_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_league_movement_types_stream_cursor_input]! + + """filter the rows returned""" + where: e_league_movement_types_bool_exp + ): [e_league_movement_types!]! + + """ + fetch data from the table: "e_league_proposal_statuses" + """ + e_league_proposal_statuses( + """distinct select on columns""" + distinct_on: [e_league_proposal_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_league_proposal_statuses_order_by!] + + """filter the rows returned""" + where: e_league_proposal_statuses_bool_exp + ): [e_league_proposal_statuses!]! + + """ + fetch aggregated fields from the table: "e_league_proposal_statuses" + """ + e_league_proposal_statuses_aggregate( + """distinct select on columns""" + distinct_on: [e_league_proposal_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_league_proposal_statuses_order_by!] + + """filter the rows returned""" + where: e_league_proposal_statuses_bool_exp + ): e_league_proposal_statuses_aggregate! + + """ + fetch data from the table: "e_league_proposal_statuses" using primary key columns + """ + e_league_proposal_statuses_by_pk(value: String!): e_league_proposal_statuses + + """ + fetch data from the table in a streaming manner: "e_league_proposal_statuses" + """ + e_league_proposal_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_league_proposal_statuses_stream_cursor_input]! + + """filter the rows returned""" + where: e_league_proposal_statuses_bool_exp + ): [e_league_proposal_statuses!]! + + """ + fetch data from the table: "e_league_registration_statuses" + """ + e_league_registration_statuses( + """distinct select on columns""" + distinct_on: [e_league_registration_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_league_registration_statuses_order_by!] + + """filter the rows returned""" + where: e_league_registration_statuses_bool_exp + ): [e_league_registration_statuses!]! + + """ + fetch aggregated fields from the table: "e_league_registration_statuses" + """ + e_league_registration_statuses_aggregate( + """distinct select on columns""" + distinct_on: [e_league_registration_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_league_registration_statuses_order_by!] + + """filter the rows returned""" + where: e_league_registration_statuses_bool_exp + ): e_league_registration_statuses_aggregate! + + """ + fetch data from the table: "e_league_registration_statuses" using primary key columns + """ + e_league_registration_statuses_by_pk(value: String!): e_league_registration_statuses + + """ + fetch data from the table in a streaming manner: "e_league_registration_statuses" + """ + e_league_registration_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_league_registration_statuses_stream_cursor_input]! + + """filter the rows returned""" + where: e_league_registration_statuses_bool_exp + ): [e_league_registration_statuses!]! + + """ + fetch data from the table: "e_league_season_statuses" + """ + e_league_season_statuses( + """distinct select on columns""" + distinct_on: [e_league_season_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_league_season_statuses_order_by!] + + """filter the rows returned""" + where: e_league_season_statuses_bool_exp + ): [e_league_season_statuses!]! + + """ + fetch aggregated fields from the table: "e_league_season_statuses" + """ + e_league_season_statuses_aggregate( + """distinct select on columns""" + distinct_on: [e_league_season_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_league_season_statuses_order_by!] + + """filter the rows returned""" + where: e_league_season_statuses_bool_exp + ): e_league_season_statuses_aggregate! + + """ + fetch data from the table: "e_league_season_statuses" using primary key columns + """ + e_league_season_statuses_by_pk(value: String!): e_league_season_statuses + + """ + fetch data from the table in a streaming manner: "e_league_season_statuses" + """ + e_league_season_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_league_season_statuses_stream_cursor_input]! + + """filter the rows returned""" + where: e_league_season_statuses_bool_exp + ): [e_league_season_statuses!]! + + """ + fetch data from the table: "e_lobby_access" + """ + e_lobby_access( + """distinct select on columns""" + distinct_on: [e_lobby_access_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_lobby_access_order_by!] + + """filter the rows returned""" + where: e_lobby_access_bool_exp + ): [e_lobby_access!]! + + """ + fetch aggregated fields from the table: "e_lobby_access" + """ + e_lobby_access_aggregate( + """distinct select on columns""" + distinct_on: [e_lobby_access_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_lobby_access_order_by!] + + """filter the rows returned""" + where: e_lobby_access_bool_exp + ): e_lobby_access_aggregate! + + """fetch data from the table: "e_lobby_access" using primary key columns""" + e_lobby_access_by_pk(value: String!): e_lobby_access + + """ + fetch data from the table in a streaming manner: "e_lobby_access" + """ + e_lobby_access_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_lobby_access_stream_cursor_input]! + + """filter the rows returned""" + where: e_lobby_access_bool_exp + ): [e_lobby_access!]! + + """ + fetch data from the table: "e_lobby_player_status" + """ + e_lobby_player_status( + """distinct select on columns""" + distinct_on: [e_lobby_player_status_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_lobby_player_status_order_by!] + + """filter the rows returned""" + where: e_lobby_player_status_bool_exp + ): [e_lobby_player_status!]! + + """ + fetch aggregated fields from the table: "e_lobby_player_status" + """ + e_lobby_player_status_aggregate( + """distinct select on columns""" + distinct_on: [e_lobby_player_status_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_lobby_player_status_order_by!] + + """filter the rows returned""" + where: e_lobby_player_status_bool_exp + ): e_lobby_player_status_aggregate! + + """ + fetch data from the table: "e_lobby_player_status" using primary key columns + """ + e_lobby_player_status_by_pk(value: String!): e_lobby_player_status + + """ + fetch data from the table in a streaming manner: "e_lobby_player_status" + """ + e_lobby_player_status_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_lobby_player_status_stream_cursor_input]! + + """filter the rows returned""" + where: e_lobby_player_status_bool_exp + ): [e_lobby_player_status!]! + + """ + fetch data from the table: "e_map_pool_types" + """ + e_map_pool_types( + """distinct select on columns""" + distinct_on: [e_map_pool_types_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_map_pool_types_order_by!] + + """filter the rows returned""" + where: e_map_pool_types_bool_exp + ): [e_map_pool_types!]! + + """ + fetch aggregated fields from the table: "e_map_pool_types" + """ + e_map_pool_types_aggregate( + """distinct select on columns""" + distinct_on: [e_map_pool_types_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_map_pool_types_order_by!] + + """filter the rows returned""" + where: e_map_pool_types_bool_exp + ): e_map_pool_types_aggregate! + + """ + fetch data from the table: "e_map_pool_types" using primary key columns + """ + e_map_pool_types_by_pk(value: String!): e_map_pool_types + + """ + fetch data from the table in a streaming manner: "e_map_pool_types" + """ + e_map_pool_types_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_map_pool_types_stream_cursor_input]! + + """filter the rows returned""" + where: e_map_pool_types_bool_exp + ): [e_map_pool_types!]! + + """ + fetch data from the table: "e_match_clip_visibility" + """ + e_match_clip_visibility( + """distinct select on columns""" + distinct_on: [e_match_clip_visibility_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_match_clip_visibility_order_by!] + + """filter the rows returned""" + where: e_match_clip_visibility_bool_exp + ): [e_match_clip_visibility!]! + + """ + fetch aggregated fields from the table: "e_match_clip_visibility" + """ + e_match_clip_visibility_aggregate( + """distinct select on columns""" + distinct_on: [e_match_clip_visibility_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_match_clip_visibility_order_by!] + + """filter the rows returned""" + where: e_match_clip_visibility_bool_exp + ): e_match_clip_visibility_aggregate! + + """ + fetch data from the table: "e_match_clip_visibility" using primary key columns + """ + e_match_clip_visibility_by_pk(value: String!): e_match_clip_visibility + + """ + fetch data from the table in a streaming manner: "e_match_clip_visibility" + """ + e_match_clip_visibility_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_match_clip_visibility_stream_cursor_input]! + + """filter the rows returned""" + where: e_match_clip_visibility_bool_exp + ): [e_match_clip_visibility!]! + + """ + fetch data from the table: "e_match_map_status" + """ + e_match_map_status( + """distinct select on columns""" + distinct_on: [e_match_map_status_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_match_map_status_order_by!] + + """filter the rows returned""" + where: e_match_map_status_bool_exp + ): [e_match_map_status!]! + + """ + fetch aggregated fields from the table: "e_match_map_status" + """ + e_match_map_status_aggregate( + """distinct select on columns""" + distinct_on: [e_match_map_status_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_match_map_status_order_by!] + + """filter the rows returned""" + where: e_match_map_status_bool_exp + ): e_match_map_status_aggregate! + + """ + fetch data from the table: "e_match_map_status" using primary key columns + """ + e_match_map_status_by_pk(value: String!): e_match_map_status + + """ + fetch data from the table in a streaming manner: "e_match_map_status" + """ + e_match_map_status_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_match_map_status_stream_cursor_input]! + + """filter the rows returned""" + where: e_match_map_status_bool_exp + ): [e_match_map_status!]! + + """ + fetch data from the table: "e_match_mode" + """ + e_match_mode( + """distinct select on columns""" + distinct_on: [e_match_mode_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_match_mode_order_by!] + + """filter the rows returned""" + where: e_match_mode_bool_exp + ): [e_match_mode!]! + + """ + fetch aggregated fields from the table: "e_match_mode" + """ + e_match_mode_aggregate( + """distinct select on columns""" + distinct_on: [e_match_mode_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_match_mode_order_by!] + + """filter the rows returned""" + where: e_match_mode_bool_exp + ): e_match_mode_aggregate! + + """fetch data from the table: "e_match_mode" using primary key columns""" + e_match_mode_by_pk(value: String!): e_match_mode + + """ + fetch data from the table in a streaming manner: "e_match_mode" + """ + e_match_mode_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_match_mode_stream_cursor_input]! + + """filter the rows returned""" + where: e_match_mode_bool_exp + ): [e_match_mode!]! + + """ + fetch data from the table: "e_match_party_sources" + """ + e_match_party_sources( + """distinct select on columns""" + distinct_on: [e_match_party_sources_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_match_party_sources_order_by!] + + """filter the rows returned""" + where: e_match_party_sources_bool_exp + ): [e_match_party_sources!]! + + """ + fetch aggregated fields from the table: "e_match_party_sources" + """ + e_match_party_sources_aggregate( + """distinct select on columns""" + distinct_on: [e_match_party_sources_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_match_party_sources_order_by!] + + """filter the rows returned""" + where: e_match_party_sources_bool_exp + ): e_match_party_sources_aggregate! + + """ + fetch data from the table: "e_match_party_sources" using primary key columns + """ + e_match_party_sources_by_pk(value: String!): e_match_party_sources + + """ + fetch data from the table in a streaming manner: "e_match_party_sources" + """ + e_match_party_sources_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_match_party_sources_stream_cursor_input]! + + """filter the rows returned""" + where: e_match_party_sources_bool_exp + ): [e_match_party_sources!]! + + """ + fetch data from the table: "e_match_status" + """ + e_match_status( + """distinct select on columns""" + distinct_on: [e_match_status_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_match_status_order_by!] + + """filter the rows returned""" + where: e_match_status_bool_exp + ): [e_match_status!]! + + """ + fetch aggregated fields from the table: "e_match_status" + """ + e_match_status_aggregate( + """distinct select on columns""" + distinct_on: [e_match_status_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_match_status_order_by!] + + """filter the rows returned""" + where: e_match_status_bool_exp + ): e_match_status_aggregate! + + """fetch data from the table: "e_match_status" using primary key columns""" + e_match_status_by_pk(value: String!): e_match_status + + """ + fetch data from the table in a streaming manner: "e_match_status" + """ + e_match_status_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_match_status_stream_cursor_input]! + + """filter the rows returned""" + where: e_match_status_bool_exp + ): [e_match_status!]! + + """ + fetch data from the table: "e_match_types" + """ + e_match_types( + """distinct select on columns""" + distinct_on: [e_match_types_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_match_types_order_by!] + + """filter the rows returned""" + where: e_match_types_bool_exp + ): [e_match_types!]! + + """ + fetch aggregated fields from the table: "e_match_types" + """ + e_match_types_aggregate( + """distinct select on columns""" + distinct_on: [e_match_types_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_match_types_order_by!] + + """filter the rows returned""" + where: e_match_types_bool_exp + ): e_match_types_aggregate! + + """fetch data from the table: "e_match_types" using primary key columns""" + e_match_types_by_pk(value: String!): e_match_types + + """ + fetch data from the table in a streaming manner: "e_match_types" + """ + e_match_types_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_match_types_stream_cursor_input]! + + """filter the rows returned""" + where: e_match_types_bool_exp + ): [e_match_types!]! + + """ + fetch data from the table: "e_notification_types" + """ + e_notification_types( + """distinct select on columns""" + distinct_on: [e_notification_types_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_notification_types_order_by!] + + """filter the rows returned""" + where: e_notification_types_bool_exp + ): [e_notification_types!]! + + """ + fetch aggregated fields from the table: "e_notification_types" + """ + e_notification_types_aggregate( + """distinct select on columns""" + distinct_on: [e_notification_types_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_notification_types_order_by!] + + """filter the rows returned""" + where: e_notification_types_bool_exp + ): e_notification_types_aggregate! + + """ + fetch data from the table: "e_notification_types" using primary key columns + """ + e_notification_types_by_pk(value: String!): e_notification_types + + """ + fetch data from the table in a streaming manner: "e_notification_types" + """ + e_notification_types_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_notification_types_stream_cursor_input]! + + """filter the rows returned""" + where: e_notification_types_bool_exp + ): [e_notification_types!]! + + """ + fetch data from the table: "e_objective_types" + """ + e_objective_types( + """distinct select on columns""" + distinct_on: [e_objective_types_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_objective_types_order_by!] + + """filter the rows returned""" + where: e_objective_types_bool_exp + ): [e_objective_types!]! + + """ + fetch aggregated fields from the table: "e_objective_types" + """ + e_objective_types_aggregate( + """distinct select on columns""" + distinct_on: [e_objective_types_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_objective_types_order_by!] + + """filter the rows returned""" + where: e_objective_types_bool_exp + ): e_objective_types_aggregate! + + """ + fetch data from the table: "e_objective_types" using primary key columns + """ + e_objective_types_by_pk(value: String!): e_objective_types + + """ + fetch data from the table in a streaming manner: "e_objective_types" + """ + e_objective_types_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_objective_types_stream_cursor_input]! + + """filter the rows returned""" + where: e_objective_types_bool_exp + ): [e_objective_types!]! + + """ + fetch data from the table: "e_player_roles" + """ + e_player_roles( + """distinct select on columns""" + distinct_on: [e_player_roles_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_player_roles_order_by!] + + """filter the rows returned""" + where: e_player_roles_bool_exp + ): [e_player_roles!]! + + """ + fetch aggregated fields from the table: "e_player_roles" + """ + e_player_roles_aggregate( + """distinct select on columns""" + distinct_on: [e_player_roles_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_player_roles_order_by!] + + """filter the rows returned""" + where: e_player_roles_bool_exp + ): e_player_roles_aggregate! + + """fetch data from the table: "e_player_roles" using primary key columns""" + e_player_roles_by_pk(value: String!): e_player_roles + + """ + fetch data from the table in a streaming manner: "e_player_roles" + """ + e_player_roles_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_player_roles_stream_cursor_input]! + + """filter the rows returned""" + where: e_player_roles_bool_exp + ): [e_player_roles!]! + + """ + fetch data from the table: "e_plugin_runtimes" + """ + e_plugin_runtimes( + """distinct select on columns""" + distinct_on: [e_plugin_runtimes_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_plugin_runtimes_order_by!] + + """filter the rows returned""" + where: e_plugin_runtimes_bool_exp + ): [e_plugin_runtimes!]! + + """ + fetch aggregated fields from the table: "e_plugin_runtimes" + """ + e_plugin_runtimes_aggregate( + """distinct select on columns""" + distinct_on: [e_plugin_runtimes_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_plugin_runtimes_order_by!] + + """filter the rows returned""" + where: e_plugin_runtimes_bool_exp + ): e_plugin_runtimes_aggregate! + + """ + fetch data from the table: "e_plugin_runtimes" using primary key columns + """ + e_plugin_runtimes_by_pk(value: String!): e_plugin_runtimes + + """ + fetch data from the table in a streaming manner: "e_plugin_runtimes" + """ + e_plugin_runtimes_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_plugin_runtimes_stream_cursor_input]! + + """filter the rows returned""" + where: e_plugin_runtimes_bool_exp + ): [e_plugin_runtimes!]! + + """ + fetch data from the table: "e_ready_settings" + """ + e_ready_settings( + """distinct select on columns""" + distinct_on: [e_ready_settings_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_ready_settings_order_by!] + + """filter the rows returned""" + where: e_ready_settings_bool_exp + ): [e_ready_settings!]! + + """ + fetch aggregated fields from the table: "e_ready_settings" + """ + e_ready_settings_aggregate( + """distinct select on columns""" + distinct_on: [e_ready_settings_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_ready_settings_order_by!] + + """filter the rows returned""" + where: e_ready_settings_bool_exp + ): e_ready_settings_aggregate! + + """ + fetch data from the table: "e_ready_settings" using primary key columns + """ + e_ready_settings_by_pk(value: String!): e_ready_settings + + """ + fetch data from the table in a streaming manner: "e_ready_settings" + """ + e_ready_settings_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_ready_settings_stream_cursor_input]! + + """filter the rows returned""" + where: e_ready_settings_bool_exp + ): [e_ready_settings!]! + + """ + fetch data from the table: "e_sanction_scopes" + """ + e_sanction_scopes( + """distinct select on columns""" + distinct_on: [e_sanction_scopes_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_sanction_scopes_order_by!] + + """filter the rows returned""" + where: e_sanction_scopes_bool_exp + ): [e_sanction_scopes!]! + + """ + fetch aggregated fields from the table: "e_sanction_scopes" + """ + e_sanction_scopes_aggregate( + """distinct select on columns""" + distinct_on: [e_sanction_scopes_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_sanction_scopes_order_by!] + + """filter the rows returned""" + where: e_sanction_scopes_bool_exp + ): e_sanction_scopes_aggregate! + + """ + fetch data from the table: "e_sanction_scopes" using primary key columns + """ + e_sanction_scopes_by_pk(value: String!): e_sanction_scopes + + """ + fetch data from the table in a streaming manner: "e_sanction_scopes" + """ + e_sanction_scopes_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_sanction_scopes_stream_cursor_input]! + + """filter the rows returned""" + where: e_sanction_scopes_bool_exp + ): [e_sanction_scopes!]! + + """ + fetch data from the table: "e_sanction_sources" + """ + e_sanction_sources( + """distinct select on columns""" + distinct_on: [e_sanction_sources_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_sanction_sources_order_by!] + + """filter the rows returned""" + where: e_sanction_sources_bool_exp + ): [e_sanction_sources!]! + + """ + fetch aggregated fields from the table: "e_sanction_sources" + """ + e_sanction_sources_aggregate( + """distinct select on columns""" + distinct_on: [e_sanction_sources_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_sanction_sources_order_by!] + + """filter the rows returned""" + where: e_sanction_sources_bool_exp + ): e_sanction_sources_aggregate! + + """ + fetch data from the table: "e_sanction_sources" using primary key columns + """ + e_sanction_sources_by_pk(value: String!): e_sanction_sources + + """ + fetch data from the table in a streaming manner: "e_sanction_sources" + """ + e_sanction_sources_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_sanction_sources_stream_cursor_input]! + + """filter the rows returned""" + where: e_sanction_sources_bool_exp + ): [e_sanction_sources!]! + + """ + fetch data from the table: "e_sanction_types" + """ + e_sanction_types( + """distinct select on columns""" + distinct_on: [e_sanction_types_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_sanction_types_order_by!] + + """filter the rows returned""" + where: e_sanction_types_bool_exp + ): [e_sanction_types!]! + + """ + fetch aggregated fields from the table: "e_sanction_types" + """ + e_sanction_types_aggregate( + """distinct select on columns""" + distinct_on: [e_sanction_types_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_sanction_types_order_by!] + + """filter the rows returned""" + where: e_sanction_types_bool_exp + ): e_sanction_types_aggregate! + + """ + fetch data from the table: "e_sanction_types" using primary key columns + """ + e_sanction_types_by_pk(value: String!): e_sanction_types + + """ + fetch data from the table in a streaming manner: "e_sanction_types" + """ + e_sanction_types_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_sanction_types_stream_cursor_input]! + + """filter the rows returned""" + where: e_sanction_types_bool_exp + ): [e_sanction_types!]! + + """ + fetch data from the table: "e_scrim_request_statuses" + """ + e_scrim_request_statuses( + """distinct select on columns""" + distinct_on: [e_scrim_request_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_scrim_request_statuses_order_by!] + + """filter the rows returned""" + where: e_scrim_request_statuses_bool_exp + ): [e_scrim_request_statuses!]! + + """ + fetch aggregated fields from the table: "e_scrim_request_statuses" + """ + e_scrim_request_statuses_aggregate( + """distinct select on columns""" + distinct_on: [e_scrim_request_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_scrim_request_statuses_order_by!] + + """filter the rows returned""" + where: e_scrim_request_statuses_bool_exp + ): e_scrim_request_statuses_aggregate! + + """ + fetch data from the table: "e_scrim_request_statuses" using primary key columns + """ + e_scrim_request_statuses_by_pk(value: String!): e_scrim_request_statuses + + """ + fetch data from the table in a streaming manner: "e_scrim_request_statuses" + """ + e_scrim_request_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_scrim_request_statuses_stream_cursor_input]! + + """filter the rows returned""" + where: e_scrim_request_statuses_bool_exp + ): [e_scrim_request_statuses!]! + + """ + fetch data from the table: "e_server_types" + """ + e_server_types( + """distinct select on columns""" + distinct_on: [e_server_types_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_server_types_order_by!] + + """filter the rows returned""" + where: e_server_types_bool_exp + ): [e_server_types!]! + + """ + fetch aggregated fields from the table: "e_server_types" + """ + e_server_types_aggregate( + """distinct select on columns""" + distinct_on: [e_server_types_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_server_types_order_by!] + + """filter the rows returned""" + where: e_server_types_bool_exp + ): e_server_types_aggregate! + + """fetch data from the table: "e_server_types" using primary key columns""" + e_server_types_by_pk(value: String!): e_server_types + + """ + fetch data from the table in a streaming manner: "e_server_types" + """ + e_server_types_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_server_types_stream_cursor_input]! + + """filter the rows returned""" + where: e_server_types_bool_exp + ): [e_server_types!]! + + """ + fetch data from the table: "e_sides" + """ + e_sides( + """distinct select on columns""" + distinct_on: [e_sides_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_sides_order_by!] + + """filter the rows returned""" + where: e_sides_bool_exp + ): [e_sides!]! + + """ + fetch aggregated fields from the table: "e_sides" + """ + e_sides_aggregate( + """distinct select on columns""" + distinct_on: [e_sides_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_sides_order_by!] + + """filter the rows returned""" + where: e_sides_bool_exp + ): e_sides_aggregate! + + """fetch data from the table: "e_sides" using primary key columns""" + e_sides_by_pk(value: String!): e_sides + + """ + fetch data from the table in a streaming manner: "e_sides" + """ + e_sides_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_sides_stream_cursor_input]! + + """filter the rows returned""" + where: e_sides_bool_exp + ): [e_sides!]! + + """ + fetch data from the table: "e_system_alert_types" + """ + e_system_alert_types( + """distinct select on columns""" + distinct_on: [e_system_alert_types_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_system_alert_types_order_by!] + + """filter the rows returned""" + where: e_system_alert_types_bool_exp + ): [e_system_alert_types!]! + + """ + fetch aggregated fields from the table: "e_system_alert_types" + """ + e_system_alert_types_aggregate( + """distinct select on columns""" + distinct_on: [e_system_alert_types_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_system_alert_types_order_by!] + + """filter the rows returned""" + where: e_system_alert_types_bool_exp + ): e_system_alert_types_aggregate! + + """ + fetch data from the table: "e_system_alert_types" using primary key columns + """ + e_system_alert_types_by_pk(value: String!): e_system_alert_types + + """ + fetch data from the table in a streaming manner: "e_system_alert_types" + """ + e_system_alert_types_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_system_alert_types_stream_cursor_input]! + + """filter the rows returned""" + where: e_system_alert_types_bool_exp + ): [e_system_alert_types!]! + + """ + fetch data from the table: "e_team_roles" + """ + e_team_roles( + """distinct select on columns""" + distinct_on: [e_team_roles_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_team_roles_order_by!] + + """filter the rows returned""" + where: e_team_roles_bool_exp + ): [e_team_roles!]! + + """ + fetch aggregated fields from the table: "e_team_roles" + """ + e_team_roles_aggregate( + """distinct select on columns""" + distinct_on: [e_team_roles_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_team_roles_order_by!] + + """filter the rows returned""" + where: e_team_roles_bool_exp + ): e_team_roles_aggregate! + + """fetch data from the table: "e_team_roles" using primary key columns""" + e_team_roles_by_pk(value: String!): e_team_roles + + """ + fetch data from the table in a streaming manner: "e_team_roles" + """ + e_team_roles_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_team_roles_stream_cursor_input]! + + """filter the rows returned""" + where: e_team_roles_bool_exp + ): [e_team_roles!]! + + """ + fetch data from the table: "e_team_roster_statuses" + """ + e_team_roster_statuses( + """distinct select on columns""" + distinct_on: [e_team_roster_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_team_roster_statuses_order_by!] + + """filter the rows returned""" + where: e_team_roster_statuses_bool_exp + ): [e_team_roster_statuses!]! + + """ + fetch aggregated fields from the table: "e_team_roster_statuses" + """ + e_team_roster_statuses_aggregate( + """distinct select on columns""" + distinct_on: [e_team_roster_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_team_roster_statuses_order_by!] + + """filter the rows returned""" + where: e_team_roster_statuses_bool_exp + ): e_team_roster_statuses_aggregate! + + """ + fetch data from the table: "e_team_roster_statuses" using primary key columns + """ + e_team_roster_statuses_by_pk(value: String!): e_team_roster_statuses + + """ + fetch data from the table in a streaming manner: "e_team_roster_statuses" + """ + e_team_roster_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_team_roster_statuses_stream_cursor_input]! + + """filter the rows returned""" + where: e_team_roster_statuses_bool_exp + ): [e_team_roster_statuses!]! + + """ + fetch data from the table: "e_timeout_settings" + """ + e_timeout_settings( + """distinct select on columns""" + distinct_on: [e_timeout_settings_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_timeout_settings_order_by!] + + """filter the rows returned""" + where: e_timeout_settings_bool_exp + ): [e_timeout_settings!]! + + """ + fetch aggregated fields from the table: "e_timeout_settings" + """ + e_timeout_settings_aggregate( + """distinct select on columns""" + distinct_on: [e_timeout_settings_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_timeout_settings_order_by!] + + """filter the rows returned""" + where: e_timeout_settings_bool_exp + ): e_timeout_settings_aggregate! + + """ + fetch data from the table: "e_timeout_settings" using primary key columns + """ + e_timeout_settings_by_pk(value: String!): e_timeout_settings + + """ + fetch data from the table in a streaming manner: "e_timeout_settings" + """ + e_timeout_settings_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_timeout_settings_stream_cursor_input]! + + """filter the rows returned""" + where: e_timeout_settings_bool_exp + ): [e_timeout_settings!]! + + """ + fetch data from the table: "e_tournament_categories" + """ + e_tournament_categories( + """distinct select on columns""" + distinct_on: [e_tournament_categories_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_tournament_categories_order_by!] + + """filter the rows returned""" + where: e_tournament_categories_bool_exp + ): [e_tournament_categories!]! + + """ + fetch aggregated fields from the table: "e_tournament_categories" + """ + e_tournament_categories_aggregate( + """distinct select on columns""" + distinct_on: [e_tournament_categories_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_tournament_categories_order_by!] + + """filter the rows returned""" + where: e_tournament_categories_bool_exp + ): e_tournament_categories_aggregate! + + """ + fetch data from the table: "e_tournament_categories" using primary key columns + """ + e_tournament_categories_by_pk(value: String!): e_tournament_categories + + """ + fetch data from the table in a streaming manner: "e_tournament_categories" + """ + e_tournament_categories_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_tournament_categories_stream_cursor_input]! + + """filter the rows returned""" + where: e_tournament_categories_bool_exp + ): [e_tournament_categories!]! + + """ + fetch data from the table: "e_tournament_free_agent_statuses" + """ + e_tournament_free_agent_statuses( + """distinct select on columns""" + distinct_on: [e_tournament_free_agent_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_tournament_free_agent_statuses_order_by!] + + """filter the rows returned""" + where: e_tournament_free_agent_statuses_bool_exp + ): [e_tournament_free_agent_statuses!]! + + """ + fetch aggregated fields from the table: "e_tournament_free_agent_statuses" + """ + e_tournament_free_agent_statuses_aggregate( + """distinct select on columns""" + distinct_on: [e_tournament_free_agent_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_tournament_free_agent_statuses_order_by!] + + """filter the rows returned""" + where: e_tournament_free_agent_statuses_bool_exp + ): e_tournament_free_agent_statuses_aggregate! + + """ + fetch data from the table: "e_tournament_free_agent_statuses" using primary key columns + """ + e_tournament_free_agent_statuses_by_pk(value: String!): e_tournament_free_agent_statuses + + """ + fetch data from the table in a streaming manner: "e_tournament_free_agent_statuses" + """ + e_tournament_free_agent_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_tournament_free_agent_statuses_stream_cursor_input]! + + """filter the rows returned""" + where: e_tournament_free_agent_statuses_bool_exp + ): [e_tournament_free_agent_statuses!]! + + """ + fetch data from the table: "e_tournament_registration_types" + """ + e_tournament_registration_types( + """distinct select on columns""" + distinct_on: [e_tournament_registration_types_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_tournament_registration_types_order_by!] + + """filter the rows returned""" + where: e_tournament_registration_types_bool_exp + ): [e_tournament_registration_types!]! + + """ + fetch aggregated fields from the table: "e_tournament_registration_types" + """ + e_tournament_registration_types_aggregate( + """distinct select on columns""" + distinct_on: [e_tournament_registration_types_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_tournament_registration_types_order_by!] + + """filter the rows returned""" + where: e_tournament_registration_types_bool_exp + ): e_tournament_registration_types_aggregate! + + """ + fetch data from the table: "e_tournament_registration_types" using primary key columns + """ + e_tournament_registration_types_by_pk(value: String!): e_tournament_registration_types + + """ + fetch data from the table in a streaming manner: "e_tournament_registration_types" + """ + e_tournament_registration_types_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_tournament_registration_types_stream_cursor_input]! + + """filter the rows returned""" + where: e_tournament_registration_types_bool_exp + ): [e_tournament_registration_types!]! + + """ + fetch data from the table: "e_tournament_stage_types" + """ + e_tournament_stage_types( + """distinct select on columns""" + distinct_on: [e_tournament_stage_types_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_tournament_stage_types_order_by!] + + """filter the rows returned""" + where: e_tournament_stage_types_bool_exp + ): [e_tournament_stage_types!]! + + """ + fetch aggregated fields from the table: "e_tournament_stage_types" + """ + e_tournament_stage_types_aggregate( + """distinct select on columns""" + distinct_on: [e_tournament_stage_types_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_tournament_stage_types_order_by!] + + """filter the rows returned""" + where: e_tournament_stage_types_bool_exp + ): e_tournament_stage_types_aggregate! + + """ + fetch data from the table: "e_tournament_stage_types" using primary key columns + """ + e_tournament_stage_types_by_pk(value: String!): e_tournament_stage_types + + """ + fetch data from the table in a streaming manner: "e_tournament_stage_types" + """ + e_tournament_stage_types_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_tournament_stage_types_stream_cursor_input]! + + """filter the rows returned""" + where: e_tournament_stage_types_bool_exp + ): [e_tournament_stage_types!]! + + """ + fetch data from the table: "e_tournament_status" + """ + e_tournament_status( + """distinct select on columns""" + distinct_on: [e_tournament_status_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_tournament_status_order_by!] + + """filter the rows returned""" + where: e_tournament_status_bool_exp + ): [e_tournament_status!]! + + """ + fetch aggregated fields from the table: "e_tournament_status" + """ + e_tournament_status_aggregate( + """distinct select on columns""" + distinct_on: [e_tournament_status_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_tournament_status_order_by!] + + """filter the rows returned""" + where: e_tournament_status_bool_exp + ): e_tournament_status_aggregate! + + """ + fetch data from the table: "e_tournament_status" using primary key columns + """ + e_tournament_status_by_pk(value: String!): e_tournament_status + + """ + fetch data from the table in a streaming manner: "e_tournament_status" + """ + e_tournament_status_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_tournament_status_stream_cursor_input]! + + """filter the rows returned""" + where: e_tournament_status_bool_exp + ): [e_tournament_status!]! + + """ + fetch data from the table: "e_utility_practice_access" + """ + e_utility_practice_access( + """distinct select on columns""" + distinct_on: [e_utility_practice_access_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_utility_practice_access_order_by!] + + """filter the rows returned""" + where: e_utility_practice_access_bool_exp + ): [e_utility_practice_access!]! + + """ + fetch aggregated fields from the table: "e_utility_practice_access" + """ + e_utility_practice_access_aggregate( + """distinct select on columns""" + distinct_on: [e_utility_practice_access_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_utility_practice_access_order_by!] + + """filter the rows returned""" + where: e_utility_practice_access_bool_exp + ): e_utility_practice_access_aggregate! + + """ + fetch data from the table: "e_utility_practice_access" using primary key columns + """ + e_utility_practice_access_by_pk(value: String!): e_utility_practice_access + + """ + fetch data from the table in a streaming manner: "e_utility_practice_access" + """ + e_utility_practice_access_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_utility_practice_access_stream_cursor_input]! + + """filter the rows returned""" + where: e_utility_practice_access_bool_exp + ): [e_utility_practice_access!]! + + """ + fetch data from the table: "e_utility_practice_statuses" + """ + e_utility_practice_statuses( + """distinct select on columns""" + distinct_on: [e_utility_practice_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_utility_practice_statuses_order_by!] + + """filter the rows returned""" + where: e_utility_practice_statuses_bool_exp + ): [e_utility_practice_statuses!]! + + """ + fetch aggregated fields from the table: "e_utility_practice_statuses" + """ + e_utility_practice_statuses_aggregate( + """distinct select on columns""" + distinct_on: [e_utility_practice_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_utility_practice_statuses_order_by!] + + """filter the rows returned""" + where: e_utility_practice_statuses_bool_exp + ): e_utility_practice_statuses_aggregate! + + """ + fetch data from the table: "e_utility_practice_statuses" using primary key columns + """ + e_utility_practice_statuses_by_pk(value: String!): e_utility_practice_statuses + + """ + fetch data from the table in a streaming manner: "e_utility_practice_statuses" + """ + e_utility_practice_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_utility_practice_statuses_stream_cursor_input]! + + """filter the rows returned""" + where: e_utility_practice_statuses_bool_exp + ): [e_utility_practice_statuses!]! + + """ + fetch data from the table: "e_utility_sources" + """ + e_utility_sources( + """distinct select on columns""" + distinct_on: [e_utility_sources_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_utility_sources_order_by!] + + """filter the rows returned""" + where: e_utility_sources_bool_exp + ): [e_utility_sources!]! + + """ + fetch aggregated fields from the table: "e_utility_sources" + """ + e_utility_sources_aggregate( + """distinct select on columns""" + distinct_on: [e_utility_sources_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_utility_sources_order_by!] + + """filter the rows returned""" + where: e_utility_sources_bool_exp + ): e_utility_sources_aggregate! + + """ + fetch data from the table: "e_utility_sources" using primary key columns + """ + e_utility_sources_by_pk(value: String!): e_utility_sources + + """ + fetch data from the table in a streaming manner: "e_utility_sources" + """ + e_utility_sources_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_utility_sources_stream_cursor_input]! + + """filter the rows returned""" + where: e_utility_sources_bool_exp + ): [e_utility_sources!]! + + """ + fetch data from the table: "e_utility_techniques" + """ + e_utility_techniques( + """distinct select on columns""" + distinct_on: [e_utility_techniques_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_utility_techniques_order_by!] + + """filter the rows returned""" + where: e_utility_techniques_bool_exp + ): [e_utility_techniques!]! + + """ + fetch aggregated fields from the table: "e_utility_techniques" + """ + e_utility_techniques_aggregate( + """distinct select on columns""" + distinct_on: [e_utility_techniques_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_utility_techniques_order_by!] + + """filter the rows returned""" + where: e_utility_techniques_bool_exp + ): e_utility_techniques_aggregate! + + """ + fetch data from the table: "e_utility_techniques" using primary key columns + """ + e_utility_techniques_by_pk(value: String!): e_utility_techniques + + """ + fetch data from the table in a streaming manner: "e_utility_techniques" + """ + e_utility_techniques_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_utility_techniques_stream_cursor_input]! + + """filter the rows returned""" + where: e_utility_techniques_bool_exp + ): [e_utility_techniques!]! + + """ + fetch data from the table: "e_utility_throw_strengths" + """ + e_utility_throw_strengths( + """distinct select on columns""" + distinct_on: [e_utility_throw_strengths_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_utility_throw_strengths_order_by!] + + """filter the rows returned""" + where: e_utility_throw_strengths_bool_exp + ): [e_utility_throw_strengths!]! + + """ + fetch aggregated fields from the table: "e_utility_throw_strengths" + """ + e_utility_throw_strengths_aggregate( + """distinct select on columns""" + distinct_on: [e_utility_throw_strengths_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_utility_throw_strengths_order_by!] + + """filter the rows returned""" + where: e_utility_throw_strengths_bool_exp + ): e_utility_throw_strengths_aggregate! + + """ + fetch data from the table: "e_utility_throw_strengths" using primary key columns + """ + e_utility_throw_strengths_by_pk(value: String!): e_utility_throw_strengths + + """ + fetch data from the table in a streaming manner: "e_utility_throw_strengths" + """ + e_utility_throw_strengths_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_utility_throw_strengths_stream_cursor_input]! + + """filter the rows returned""" + where: e_utility_throw_strengths_bool_exp + ): [e_utility_throw_strengths!]! + + """ + fetch data from the table: "e_utility_types" + """ + e_utility_types( + """distinct select on columns""" + distinct_on: [e_utility_types_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_utility_types_order_by!] + + """filter the rows returned""" + where: e_utility_types_bool_exp + ): [e_utility_types!]! + + """ + fetch aggregated fields from the table: "e_utility_types" + """ + e_utility_types_aggregate( + """distinct select on columns""" + distinct_on: [e_utility_types_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_utility_types_order_by!] + + """filter the rows returned""" + where: e_utility_types_bool_exp + ): e_utility_types_aggregate! + + """fetch data from the table: "e_utility_types" using primary key columns""" + e_utility_types_by_pk(value: String!): e_utility_types + + """ + fetch data from the table in a streaming manner: "e_utility_types" + """ + e_utility_types_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_utility_types_stream_cursor_input]! + + """filter the rows returned""" + where: e_utility_types_bool_exp + ): [e_utility_types!]! + + """ + fetch data from the table: "e_utility_visibility" + """ + e_utility_visibility( + """distinct select on columns""" + distinct_on: [e_utility_visibility_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_utility_visibility_order_by!] + + """filter the rows returned""" + where: e_utility_visibility_bool_exp + ): [e_utility_visibility!]! + + """ + fetch aggregated fields from the table: "e_utility_visibility" + """ + e_utility_visibility_aggregate( + """distinct select on columns""" + distinct_on: [e_utility_visibility_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_utility_visibility_order_by!] + + """filter the rows returned""" + where: e_utility_visibility_bool_exp + ): e_utility_visibility_aggregate! + + """ + fetch data from the table: "e_utility_visibility" using primary key columns + """ + e_utility_visibility_by_pk(value: String!): e_utility_visibility + + """ + fetch data from the table in a streaming manner: "e_utility_visibility" + """ + e_utility_visibility_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_utility_visibility_stream_cursor_input]! + + """filter the rows returned""" + where: e_utility_visibility_bool_exp + ): [e_utility_visibility!]! + + """ + fetch data from the table: "e_veto_pick_types" + """ + e_veto_pick_types( + """distinct select on columns""" + distinct_on: [e_veto_pick_types_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_veto_pick_types_order_by!] + + """filter the rows returned""" + where: e_veto_pick_types_bool_exp + ): [e_veto_pick_types!]! + + """ + fetch aggregated fields from the table: "e_veto_pick_types" + """ + e_veto_pick_types_aggregate( + """distinct select on columns""" + distinct_on: [e_veto_pick_types_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_veto_pick_types_order_by!] + + """filter the rows returned""" + where: e_veto_pick_types_bool_exp + ): e_veto_pick_types_aggregate! + + """ + fetch data from the table: "e_veto_pick_types" using primary key columns + """ + e_veto_pick_types_by_pk(value: String!): e_veto_pick_types + + """ + fetch data from the table in a streaming manner: "e_veto_pick_types" + """ + e_veto_pick_types_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_veto_pick_types_stream_cursor_input]! + + """filter the rows returned""" + where: e_veto_pick_types_bool_exp + ): [e_veto_pick_types!]! + + """ + fetch data from the table: "e_winning_reasons" + """ + e_winning_reasons( + """distinct select on columns""" + distinct_on: [e_winning_reasons_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_winning_reasons_order_by!] + + """filter the rows returned""" + where: e_winning_reasons_bool_exp + ): [e_winning_reasons!]! + + """ + fetch aggregated fields from the table: "e_winning_reasons" + """ + e_winning_reasons_aggregate( + """distinct select on columns""" + distinct_on: [e_winning_reasons_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_winning_reasons_order_by!] + + """filter the rows returned""" + where: e_winning_reasons_bool_exp + ): e_winning_reasons_aggregate! + + """ + fetch data from the table: "e_winning_reasons" using primary key columns + """ + e_winning_reasons_by_pk(value: String!): e_winning_reasons + + """ + fetch data from the table in a streaming manner: "e_winning_reasons" + """ + e_winning_reasons_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_winning_reasons_stream_cursor_input]! + + """filter the rows returned""" + where: e_winning_reasons_bool_exp + ): [e_winning_reasons!]! + + """ + fetch data from the table: "event_match_links" + """ + event_match_links( + """distinct select on columns""" + distinct_on: [event_match_links_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_match_links_order_by!] + + """filter the rows returned""" + where: event_match_links_bool_exp + ): [event_match_links!]! + + """ + fetch aggregated fields from the table: "event_match_links" + """ + event_match_links_aggregate( + """distinct select on columns""" + distinct_on: [event_match_links_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_match_links_order_by!] + + """filter the rows returned""" + where: event_match_links_bool_exp + ): event_match_links_aggregate! + + """ + fetch data from the table: "event_match_links" using primary key columns + """ + event_match_links_by_pk(event_id: uuid!, match_id: uuid!): event_match_links + + """ + fetch data from the table in a streaming manner: "event_match_links" + """ + event_match_links_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [event_match_links_stream_cursor_input]! + + """filter the rows returned""" + where: event_match_links_bool_exp + ): [event_match_links!]! + + """ + fetch data from the table: "event_media" + """ + event_media( + """distinct select on columns""" + distinct_on: [event_media_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_media_order_by!] + + """filter the rows returned""" + where: event_media_bool_exp + ): [event_media!]! + + """ + fetch aggregated fields from the table: "event_media" + """ + event_media_aggregate( + """distinct select on columns""" + distinct_on: [event_media_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_media_order_by!] + + """filter the rows returned""" + where: event_media_bool_exp + ): event_media_aggregate! + + """fetch data from the table: "event_media" using primary key columns""" + event_media_by_pk(id: uuid!): event_media + + """ + fetch data from the table: "event_media_players" + """ + event_media_players( + """distinct select on columns""" + distinct_on: [event_media_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_media_players_order_by!] + + """filter the rows returned""" + where: event_media_players_bool_exp + ): [event_media_players!]! + + """ + fetch aggregated fields from the table: "event_media_players" + """ + event_media_players_aggregate( + """distinct select on columns""" + distinct_on: [event_media_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_media_players_order_by!] + + """filter the rows returned""" + where: event_media_players_bool_exp + ): event_media_players_aggregate! + + """ + fetch data from the table: "event_media_players" using primary key columns + """ + event_media_players_by_pk(media_id: uuid!, steam_id: bigint!): event_media_players + + """ + fetch data from the table in a streaming manner: "event_media_players" + """ + event_media_players_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [event_media_players_stream_cursor_input]! + + """filter the rows returned""" + where: event_media_players_bool_exp + ): [event_media_players!]! + + """ + fetch data from the table in a streaming manner: "event_media" + """ + event_media_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [event_media_stream_cursor_input]! + + """filter the rows returned""" + where: event_media_bool_exp + ): [event_media!]! + + """ + fetch data from the table: "event_organizers" + """ + event_organizers( + """distinct select on columns""" + distinct_on: [event_organizers_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_organizers_order_by!] + + """filter the rows returned""" + where: event_organizers_bool_exp + ): [event_organizers!]! + + """ + fetch aggregated fields from the table: "event_organizers" + """ + event_organizers_aggregate( + """distinct select on columns""" + distinct_on: [event_organizers_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_organizers_order_by!] + + """filter the rows returned""" + where: event_organizers_bool_exp + ): event_organizers_aggregate! + + """ + fetch data from the table: "event_organizers" using primary key columns + """ + event_organizers_by_pk(event_id: uuid!, steam_id: bigint!): event_organizers + + """ + fetch data from the table in a streaming manner: "event_organizers" + """ + event_organizers_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [event_organizers_stream_cursor_input]! + + """filter the rows returned""" + where: event_organizers_bool_exp + ): [event_organizers!]! + + """ + fetch data from the table: "event_players" + """ + event_players( + """distinct select on columns""" + distinct_on: [event_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_players_order_by!] + + """filter the rows returned""" + where: event_players_bool_exp + ): [event_players!]! + + """ + fetch aggregated fields from the table: "event_players" + """ + event_players_aggregate( + """distinct select on columns""" + distinct_on: [event_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_players_order_by!] + + """filter the rows returned""" + where: event_players_bool_exp + ): event_players_aggregate! + + """fetch data from the table: "event_players" using primary key columns""" + event_players_by_pk(event_id: uuid!, steam_id: bigint!): event_players + + """ + fetch data from the table in a streaming manner: "event_players" + """ + event_players_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [event_players_stream_cursor_input]! + + """filter the rows returned""" + where: event_players_bool_exp + ): [event_players!]! + + """ + fetch data from the table: "event_teams" + """ + event_teams( + """distinct select on columns""" + distinct_on: [event_teams_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_teams_order_by!] + + """filter the rows returned""" + where: event_teams_bool_exp + ): [event_teams!]! + + """ + fetch aggregated fields from the table: "event_teams" + """ + event_teams_aggregate( + """distinct select on columns""" + distinct_on: [event_teams_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_teams_order_by!] + + """filter the rows returned""" + where: event_teams_bool_exp + ): event_teams_aggregate! + + """fetch data from the table: "event_teams" using primary key columns""" + event_teams_by_pk(event_id: uuid!, team_id: uuid!): event_teams + + """ + fetch data from the table in a streaming manner: "event_teams" + """ + event_teams_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [event_teams_stream_cursor_input]! + + """filter the rows returned""" + where: event_teams_bool_exp + ): [event_teams!]! + + """ + fetch data from the table: "event_tournaments" + """ + event_tournaments( + """distinct select on columns""" + distinct_on: [event_tournaments_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_tournaments_order_by!] + + """filter the rows returned""" + where: event_tournaments_bool_exp + ): [event_tournaments!]! + + """ + fetch aggregated fields from the table: "event_tournaments" + """ + event_tournaments_aggregate( + """distinct select on columns""" + distinct_on: [event_tournaments_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_tournaments_order_by!] + + """filter the rows returned""" + where: event_tournaments_bool_exp + ): event_tournaments_aggregate! + + """ + fetch data from the table: "event_tournaments" using primary key columns + """ + event_tournaments_by_pk(event_id: uuid!, tournament_id: uuid!): event_tournaments + + """ + fetch data from the table in a streaming manner: "event_tournaments" + """ + event_tournaments_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [event_tournaments_stream_cursor_input]! + + """filter the rows returned""" + where: event_tournaments_bool_exp + ): [event_tournaments!]! + + """ + fetch data from the table: "events" + """ + events( + """distinct select on columns""" + distinct_on: [events_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [events_order_by!] + + """filter the rows returned""" + where: events_bool_exp + ): [events!]! + + """ + fetch aggregated fields from the table: "events" + """ + events_aggregate( + """distinct select on columns""" + distinct_on: [events_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [events_order_by!] + + """filter the rows returned""" + where: events_bool_exp + ): events_aggregate! + + """fetch data from the table: "events" using primary key columns""" + events_by_pk(id: uuid!): events + + """ + fetch data from the table in a streaming manner: "events" + """ + events_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [events_stream_cursor_input]! + + """filter the rows returned""" + where: events_bool_exp + ): [events!]! + + """ + fetch data from the table: "friends" + """ + friends( + """distinct select on columns""" + distinct_on: [friends_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: [friends_order_by!] + + """filter the rows returned""" + where: friends_bool_exp + ): [friends!]! + + """ + fetch aggregated fields from the table: "friends" + """ + friends_aggregate( + """distinct select on columns""" + distinct_on: [friends_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: [friends_order_by!] + + """filter the rows returned""" + where: friends_bool_exp + ): friends_aggregate! + + """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 in a streaming manner: "friends" + """ + friends_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [friends_stream_cursor_input]! + + """filter the rows returned""" + 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""" + distinct_on: [game_server_nodes_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_nodes_order_by!] + + """filter the rows returned""" + where: game_server_nodes_bool_exp + ): [game_server_nodes!]! + + """An aggregate relationship""" + game_server_nodes_aggregate( + """distinct select on columns""" + distinct_on: [game_server_nodes_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_nodes_order_by!] + + """filter the rows returned""" + where: game_server_nodes_bool_exp + ): game_server_nodes_aggregate! + + """ + fetch data from the table: "game_server_nodes" using primary key columns + """ + game_server_nodes_by_pk(id: String!): game_server_nodes + + """ + fetch data from the table in a streaming manner: "game_server_nodes" + """ + game_server_nodes_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_nodes_stream_cursor_input]! + + """filter the rows returned""" + where: game_server_nodes_bool_exp + ): [game_server_nodes!]! + + """ + fetch data from the table: "game_versions" + """ + game_versions( + """distinct select on columns""" + distinct_on: [game_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_versions_order_by!] + + """filter the rows returned""" + where: game_versions_bool_exp + ): [game_versions!]! + + """ + fetch aggregated fields from the table: "game_versions" + """ + game_versions_aggregate( + """distinct select on columns""" + distinct_on: [game_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_versions_order_by!] + + """filter the rows returned""" + where: game_versions_bool_exp + ): game_versions_aggregate! + + """fetch data from the table: "game_versions" using primary key columns""" + game_versions_by_pk(build_id: Int!): game_versions + + """ + fetch data from the table in a streaming manner: "game_versions" + """ + game_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_versions_stream_cursor_input]! + + """filter the rows returned""" + where: game_versions_bool_exp + ): [game_versions!]! + + """ + fetch data from the table: "gamedata_signature_validations" + """ + gamedata_signature_validations( + """distinct select on columns""" + distinct_on: [gamedata_signature_validations_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: [gamedata_signature_validations_order_by!] + + """filter the rows returned""" + where: gamedata_signature_validations_bool_exp + ): [gamedata_signature_validations!]! + + """ + fetch aggregated fields from the table: "gamedata_signature_validations" + """ + gamedata_signature_validations_aggregate( + """distinct select on columns""" + distinct_on: [gamedata_signature_validations_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: [gamedata_signature_validations_order_by!] + + """filter the rows returned""" + where: gamedata_signature_validations_bool_exp + ): gamedata_signature_validations_aggregate! + + """ + fetch data from the table: "gamedata_signature_validations" using primary key columns + """ + gamedata_signature_validations_by_pk(id: uuid!): gamedata_signature_validations + + """ + fetch data from the table in a streaming manner: "gamedata_signature_validations" + """ + gamedata_signature_validations_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [gamedata_signature_validations_stream_cursor_input]! + + """filter the rows returned""" + where: gamedata_signature_validations_bool_exp + ): [gamedata_signature_validations!]! + + """ + execute function "get_event_leaderboard" which returns "leaderboard_entries" + """ + get_event_leaderboard( + """ + input parameters for function "get_event_leaderboard" + """ + args: get_event_leaderboard_args! + + """distinct select on columns""" + distinct_on: [leaderboard_entries_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [leaderboard_entries_order_by!] + + """filter the rows returned""" + where: leaderboard_entries_bool_exp + ): [leaderboard_entries!]! + + """ + execute function "get_event_leaderboard" and query aggregates on result of table type "leaderboard_entries" + """ + get_event_leaderboard_aggregate( + """ + input parameters for function "get_event_leaderboard_aggregate" + """ + args: get_event_leaderboard_args! + + """distinct select on columns""" + distinct_on: [leaderboard_entries_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [leaderboard_entries_order_by!] + + """filter the rows returned""" + where: leaderboard_entries_bool_exp + ): leaderboard_entries_aggregate! + + """ + execute function "get_leaderboard" which returns "leaderboard_entries" + """ + get_leaderboard( + """ + input parameters for function "get_leaderboard" + """ + args: get_leaderboard_args! + + """distinct select on columns""" + distinct_on: [leaderboard_entries_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [leaderboard_entries_order_by!] + + """filter the rows returned""" + where: leaderboard_entries_bool_exp + ): [leaderboard_entries!]! + + """ + execute function "get_leaderboard" and query aggregates on result of table type "leaderboard_entries" + """ + get_leaderboard_aggregate( + """ + input parameters for function "get_leaderboard_aggregate" + """ + args: get_leaderboard_args! + + """distinct select on columns""" + distinct_on: [leaderboard_entries_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [leaderboard_entries_order_by!] + + """filter the rows returned""" + where: leaderboard_entries_bool_exp + ): leaderboard_entries_aggregate! + + """ + execute function "get_league_season_leaderboard" which returns "leaderboard_entries" + """ + get_league_season_leaderboard( + """ + input parameters for function "get_league_season_leaderboard" + """ + args: get_league_season_leaderboard_args! + + """distinct select on columns""" + distinct_on: [leaderboard_entries_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [leaderboard_entries_order_by!] + + """filter the rows returned""" + where: leaderboard_entries_bool_exp + ): [leaderboard_entries!]! + + """ + execute function "get_league_season_leaderboard" and query aggregates on result of table type "leaderboard_entries" + """ + get_league_season_leaderboard_aggregate( + """ + input parameters for function "get_league_season_leaderboard_aggregate" + """ + args: get_league_season_leaderboard_args! + + """distinct select on columns""" + distinct_on: [leaderboard_entries_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [leaderboard_entries_order_by!] + + """filter the rows returned""" + where: leaderboard_entries_bool_exp + ): leaderboard_entries_aggregate! + + """ + execute function "get_player_leaderboard_rank" which returns "player_leaderboard_rank" + """ + get_player_leaderboard_rank( + """ + input parameters for function "get_player_leaderboard_rank" + """ + args: get_player_leaderboard_rank_args! + + """distinct select on columns""" + distinct_on: [player_leaderboard_rank_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: [player_leaderboard_rank_order_by!] + + """filter the rows returned""" + where: player_leaderboard_rank_bool_exp + ): [player_leaderboard_rank!]! + + """ + execute function "get_player_leaderboard_rank" and query aggregates on result of table type "player_leaderboard_rank" + """ + get_player_leaderboard_rank_aggregate( + """ + input parameters for function "get_player_leaderboard_rank_aggregate" + """ + args: get_player_leaderboard_rank_args! + + """distinct select on columns""" + distinct_on: [player_leaderboard_rank_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: [player_leaderboard_rank_order_by!] + + """filter the rows returned""" + where: player_leaderboard_rank_bool_exp + ): player_leaderboard_rank_aggregate! + + """ + execute function "get_tournament_leaderboard" which returns "tournament_leaderboard_entries" + """ + get_tournament_leaderboard( + """ + input parameters for function "get_tournament_leaderboard" + """ + args: get_tournament_leaderboard_args! + + """distinct select on columns""" + distinct_on: [tournament_leaderboard_entries_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_leaderboard_entries_order_by!] + + """filter the rows returned""" + where: tournament_leaderboard_entries_bool_exp + ): [tournament_leaderboard_entries!]! + + """ + execute function "get_tournament_leaderboard" and query aggregates on result of table type "tournament_leaderboard_entries" + """ + get_tournament_leaderboard_aggregate( + """ + input parameters for function "get_tournament_leaderboard_aggregate" + """ + args: get_tournament_leaderboard_args! + + """distinct select on columns""" + distinct_on: [tournament_leaderboard_entries_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_leaderboard_entries_order_by!] + + """filter the rows returned""" + where: tournament_leaderboard_entries_bool_exp + ): tournament_leaderboard_entries_aggregate! + + """ + fetch data from the table: "leaderboard_entries" + """ + leaderboard_entries( + """distinct select on columns""" + distinct_on: [leaderboard_entries_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [leaderboard_entries_order_by!] + + """filter the rows returned""" + where: leaderboard_entries_bool_exp + ): [leaderboard_entries!]! + + """ + fetch aggregated fields from the table: "leaderboard_entries" + """ + leaderboard_entries_aggregate( + """distinct select on columns""" + distinct_on: [leaderboard_entries_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [leaderboard_entries_order_by!] + + """filter the rows returned""" + where: leaderboard_entries_bool_exp + ): leaderboard_entries_aggregate! + + """ + fetch data from the table in a streaming manner: "leaderboard_entries" + """ + leaderboard_entries_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [leaderboard_entries_stream_cursor_input]! + + """filter the rows returned""" + where: leaderboard_entries_bool_exp + ): [leaderboard_entries!]! + + """ + fetch data from the table: "league_divisions" + """ + league_divisions( + """distinct select on columns""" + distinct_on: [league_divisions_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: [league_divisions_order_by!] + + """filter the rows returned""" + where: league_divisions_bool_exp + ): [league_divisions!]! + + """ + fetch aggregated fields from the table: "league_divisions" + """ + league_divisions_aggregate( + """distinct select on columns""" + distinct_on: [league_divisions_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: [league_divisions_order_by!] + + """filter the rows returned""" + where: league_divisions_bool_exp + ): league_divisions_aggregate! + + """ + fetch data from the table: "league_divisions" using primary key columns + """ + league_divisions_by_pk(id: uuid!): league_divisions + + """ + fetch data from the table in a streaming manner: "league_divisions" + """ + league_divisions_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [league_divisions_stream_cursor_input]! + + """filter the rows returned""" + where: league_divisions_bool_exp + ): [league_divisions!]! + + """ + fetch data from the table: "league_match_weeks" + """ + league_match_weeks( + """distinct select on columns""" + distinct_on: [league_match_weeks_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: [league_match_weeks_order_by!] + + """filter the rows returned""" + where: league_match_weeks_bool_exp + ): [league_match_weeks!]! + + """ + fetch aggregated fields from the table: "league_match_weeks" + """ + league_match_weeks_aggregate( + """distinct select on columns""" + distinct_on: [league_match_weeks_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: [league_match_weeks_order_by!] + + """filter the rows returned""" + where: league_match_weeks_bool_exp + ): league_match_weeks_aggregate! + + """ + fetch data from the table: "league_match_weeks" using primary key columns + """ + league_match_weeks_by_pk(id: uuid!): league_match_weeks + + """ + fetch data from the table in a streaming manner: "league_match_weeks" + """ + league_match_weeks_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [league_match_weeks_stream_cursor_input]! + + """filter the rows returned""" + where: league_match_weeks_bool_exp + ): [league_match_weeks!]! + + """ + fetch data from the table: "league_relegation_playoffs" + """ + league_relegation_playoffs( + """distinct select on columns""" + distinct_on: [league_relegation_playoffs_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: [league_relegation_playoffs_order_by!] + + """filter the rows returned""" + where: league_relegation_playoffs_bool_exp + ): [league_relegation_playoffs!]! + + """ + fetch aggregated fields from the table: "league_relegation_playoffs" + """ + league_relegation_playoffs_aggregate( + """distinct select on columns""" + distinct_on: [league_relegation_playoffs_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: [league_relegation_playoffs_order_by!] + + """filter the rows returned""" + where: league_relegation_playoffs_bool_exp + ): league_relegation_playoffs_aggregate! + + """ + fetch data from the table: "league_relegation_playoffs" using primary key columns + """ + league_relegation_playoffs_by_pk(id: uuid!): league_relegation_playoffs + + """ + fetch data from the table in a streaming manner: "league_relegation_playoffs" + """ + league_relegation_playoffs_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [league_relegation_playoffs_stream_cursor_input]! + + """filter the rows returned""" + where: league_relegation_playoffs_bool_exp + ): [league_relegation_playoffs!]! + + """ + fetch data from the table: "league_scheduling_proposals" + """ + league_scheduling_proposals( + """distinct select on columns""" + distinct_on: [league_scheduling_proposals_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: [league_scheduling_proposals_order_by!] + + """filter the rows returned""" + where: league_scheduling_proposals_bool_exp + ): [league_scheduling_proposals!]! + + """ + fetch aggregated fields from the table: "league_scheduling_proposals" + """ + league_scheduling_proposals_aggregate( + """distinct select on columns""" + distinct_on: [league_scheduling_proposals_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: [league_scheduling_proposals_order_by!] + + """filter the rows returned""" + where: league_scheduling_proposals_bool_exp + ): league_scheduling_proposals_aggregate! + + """ + fetch data from the table: "league_scheduling_proposals" using primary key columns + """ + league_scheduling_proposals_by_pk(id: uuid!): league_scheduling_proposals + + """ + fetch data from the table in a streaming manner: "league_scheduling_proposals" + """ + league_scheduling_proposals_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [league_scheduling_proposals_stream_cursor_input]! + + """filter the rows returned""" + where: league_scheduling_proposals_bool_exp + ): [league_scheduling_proposals!]! + + """ + fetch data from the table: "league_season_divisions" + """ + league_season_divisions( + """distinct select on columns""" + distinct_on: [league_season_divisions_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: [league_season_divisions_order_by!] + + """filter the rows returned""" + where: league_season_divisions_bool_exp + ): [league_season_divisions!]! + + """ + fetch aggregated fields from the table: "league_season_divisions" + """ + league_season_divisions_aggregate( + """distinct select on columns""" + distinct_on: [league_season_divisions_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: [league_season_divisions_order_by!] + + """filter the rows returned""" + where: league_season_divisions_bool_exp + ): league_season_divisions_aggregate! + + """ + fetch data from the table: "league_season_divisions" using primary key columns + """ + league_season_divisions_by_pk(id: uuid!): league_season_divisions + + """ + fetch data from the table in a streaming manner: "league_season_divisions" + """ + league_season_divisions_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [league_season_divisions_stream_cursor_input]! + + """filter the rows returned""" + where: league_season_divisions_bool_exp + ): [league_season_divisions!]! + + """ + fetch data from the table: "league_seasons" + """ + league_seasons( + """distinct select on columns""" + distinct_on: [league_seasons_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: [league_seasons_order_by!] + + """filter the rows returned""" + where: league_seasons_bool_exp + ): [league_seasons!]! + + """ + fetch aggregated fields from the table: "league_seasons" + """ + league_seasons_aggregate( + """distinct select on columns""" + distinct_on: [league_seasons_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: [league_seasons_order_by!] + + """filter the rows returned""" + where: league_seasons_bool_exp + ): league_seasons_aggregate! + + """fetch data from the table: "league_seasons" using primary key columns""" + league_seasons_by_pk(id: uuid!): league_seasons + + """ + fetch data from the table in a streaming manner: "league_seasons" + """ + league_seasons_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [league_seasons_stream_cursor_input]! + + """filter the rows returned""" + where: league_seasons_bool_exp + ): [league_seasons!]! + + """ + fetch data from the table: "league_team_movements" + """ + league_team_movements( + """distinct select on columns""" + distinct_on: [league_team_movements_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: [league_team_movements_order_by!] + + """filter the rows returned""" + where: league_team_movements_bool_exp + ): [league_team_movements!]! + + """ + fetch aggregated fields from the table: "league_team_movements" + """ + league_team_movements_aggregate( + """distinct select on columns""" + distinct_on: [league_team_movements_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: [league_team_movements_order_by!] + + """filter the rows returned""" + where: league_team_movements_bool_exp + ): league_team_movements_aggregate! + + """ + fetch data from the table: "league_team_movements" using primary key columns + """ + league_team_movements_by_pk(id: uuid!): league_team_movements + + """ + fetch data from the table in a streaming manner: "league_team_movements" + """ + league_team_movements_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [league_team_movements_stream_cursor_input]! + + """filter the rows returned""" + where: league_team_movements_bool_exp + ): [league_team_movements!]! + + """ + fetch data from the table: "league_team_rosters" + """ + league_team_rosters( + """distinct select on columns""" + distinct_on: [league_team_rosters_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: [league_team_rosters_order_by!] + + """filter the rows returned""" + where: league_team_rosters_bool_exp + ): [league_team_rosters!]! + + """ + fetch aggregated fields from the table: "league_team_rosters" + """ + league_team_rosters_aggregate( + """distinct select on columns""" + distinct_on: [league_team_rosters_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: [league_team_rosters_order_by!] + + """filter the rows returned""" + where: league_team_rosters_bool_exp + ): league_team_rosters_aggregate! + + """ + fetch data from the table: "league_team_rosters" using primary key columns + """ + league_team_rosters_by_pk(league_team_season_id: uuid!, player_steam_id: bigint!): league_team_rosters + + """ + fetch data from the table in a streaming manner: "league_team_rosters" + """ + league_team_rosters_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [league_team_rosters_stream_cursor_input]! + + """filter the rows returned""" + where: league_team_rosters_bool_exp + ): [league_team_rosters!]! + + """ + fetch data from the table: "league_team_seasons" + """ + league_team_seasons( + """distinct select on columns""" + distinct_on: [league_team_seasons_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: [league_team_seasons_order_by!] + + """filter the rows returned""" + where: league_team_seasons_bool_exp + ): [league_team_seasons!]! + + """ + fetch aggregated fields from the table: "league_team_seasons" + """ + league_team_seasons_aggregate( + """distinct select on columns""" + distinct_on: [league_team_seasons_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: [league_team_seasons_order_by!] + + """filter the rows returned""" + where: league_team_seasons_bool_exp + ): league_team_seasons_aggregate! + + """ + fetch data from the table: "league_team_seasons" using primary key columns + """ + league_team_seasons_by_pk(id: uuid!): league_team_seasons + + """ + fetch data from the table in a streaming manner: "league_team_seasons" + """ + league_team_seasons_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [league_team_seasons_stream_cursor_input]! + + """filter the rows returned""" + where: league_team_seasons_bool_exp + ): [league_team_seasons!]! + + """ + fetch data from the table: "league_teams" + """ + league_teams( + """distinct select on columns""" + distinct_on: [league_teams_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [league_teams_order_by!] + + """filter the rows returned""" + where: league_teams_bool_exp + ): [league_teams!]! + + """ + fetch aggregated fields from the table: "league_teams" + """ + league_teams_aggregate( + """distinct select on columns""" + distinct_on: [league_teams_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [league_teams_order_by!] + + """filter the rows returned""" + where: league_teams_bool_exp + ): league_teams_aggregate! + + """fetch data from the table: "league_teams" using primary key columns""" + league_teams_by_pk(id: uuid!): league_teams + + """ + fetch data from the table in a streaming manner: "league_teams" + """ + league_teams_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [league_teams_stream_cursor_input]! + + """filter the rows returned""" + where: league_teams_bool_exp + ): [league_teams!]! + + """ + fetch data from the table: "lobbies" + """ + lobbies( + """distinct select on columns""" + distinct_on: [lobbies_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: [lobbies_order_by!] + + """filter the rows returned""" + where: lobbies_bool_exp + ): [lobbies!]! + + """ + fetch aggregated fields from the table: "lobbies" + """ + lobbies_aggregate( + """distinct select on columns""" + distinct_on: [lobbies_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: [lobbies_order_by!] + + """filter the rows returned""" + where: lobbies_bool_exp + ): lobbies_aggregate! + + """fetch data from the table: "lobbies" using primary key columns""" + lobbies_by_pk(id: uuid!): lobbies + + """ + fetch data from the table in a streaming manner: "lobbies" + """ + lobbies_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [lobbies_stream_cursor_input]! + + """filter the rows returned""" + where: lobbies_bool_exp + ): [lobbies!]! + + """An array relationship""" + lobby_players( + """distinct select on columns""" + distinct_on: [lobby_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [lobby_players_order_by!] + + """filter the rows returned""" + where: lobby_players_bool_exp + ): [lobby_players!]! + + """An aggregate relationship""" + lobby_players_aggregate( + """distinct select on columns""" + distinct_on: [lobby_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [lobby_players_order_by!] + + """filter the rows returned""" + where: lobby_players_bool_exp + ): lobby_players_aggregate! + + """fetch data from the table: "lobby_players" using primary key columns""" + lobby_players_by_pk(lobby_id: uuid!, steam_id: bigint!): lobby_players + + """ + fetch data from the table in a streaming manner: "lobby_players" + """ + lobby_players_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [lobby_players_stream_cursor_input]! + + """filter the rows returned""" + where: lobby_players_bool_exp + ): [lobby_players!]! + + """ + fetch data from the table: "map_callouts" + """ + map_callouts( + """distinct select on columns""" + distinct_on: [map_callouts_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: [map_callouts_order_by!] + + """filter the rows returned""" + where: map_callouts_bool_exp + ): [map_callouts!]! + + """ + fetch aggregated fields from the table: "map_callouts" + """ + map_callouts_aggregate( + """distinct select on columns""" + distinct_on: [map_callouts_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: [map_callouts_order_by!] + + """filter the rows returned""" + where: map_callouts_bool_exp + ): map_callouts_aggregate! + + """fetch data from the table: "map_callouts" using primary key columns""" + map_callouts_by_pk(map_name: String!, name: String!): map_callouts + + """ + fetch data from the table in a streaming manner: "map_callouts" + """ + map_callouts_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [map_callouts_stream_cursor_input]! + + """filter the rows returned""" + where: map_callouts_bool_exp + ): [map_callouts!]! + + """ + fetch data from the table: "map_pools" + """ + map_pools( + """distinct select on columns""" + distinct_on: [map_pools_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: [map_pools_order_by!] + + """filter the rows returned""" + where: map_pools_bool_exp + ): [map_pools!]! + + """ + fetch aggregated fields from the table: "map_pools" + """ + map_pools_aggregate( + """distinct select on columns""" + distinct_on: [map_pools_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: [map_pools_order_by!] + + """filter the rows returned""" + where: map_pools_bool_exp + ): map_pools_aggregate! + + """fetch data from the table: "map_pools" using primary key columns""" + map_pools_by_pk(id: uuid!): map_pools + + """ + fetch data from the table in a streaming manner: "map_pools" + """ + map_pools_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [map_pools_stream_cursor_input]! + + """filter the rows returned""" + where: map_pools_bool_exp + ): [map_pools!]! + + """An array relationship""" + maps( + """distinct select on columns""" + distinct_on: [maps_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: [maps_order_by!] + + """filter the rows returned""" + where: maps_bool_exp + ): [maps!]! + + """An aggregate relationship""" + maps_aggregate( + """distinct select on columns""" + distinct_on: [maps_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: [maps_order_by!] + + """filter the rows returned""" + where: maps_bool_exp + ): maps_aggregate! + + """fetch data from the table: "maps" using primary key columns""" + maps_by_pk(id: uuid!): maps + + """ + fetch data from the table in a streaming manner: "maps" + """ + maps_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [maps_stream_cursor_input]! + + """filter the rows returned""" + where: maps_bool_exp + ): [maps!]! + + """An array relationship""" + match_clips( + """distinct select on columns""" + distinct_on: [match_clips_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_clips_order_by!] + + """filter the rows returned""" + where: match_clips_bool_exp + ): [match_clips!]! + + """An aggregate relationship""" + match_clips_aggregate( + """distinct select on columns""" + distinct_on: [match_clips_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_clips_order_by!] + + """filter the rows returned""" + where: match_clips_bool_exp + ): match_clips_aggregate! + + """fetch data from the table: "match_clips" using primary key columns""" + match_clips_by_pk(id: uuid!): match_clips + + """ + fetch data from the table in a streaming manner: "match_clips" + """ + match_clips_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [match_clips_stream_cursor_input]! + + """filter the rows returned""" + where: match_clips_bool_exp + ): [match_clips!]! + + """ + fetch data from the table: "match_demo_sessions" + """ + match_demo_sessions( + """distinct select on columns""" + distinct_on: [match_demo_sessions_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_demo_sessions_order_by!] + + """filter the rows returned""" + where: match_demo_sessions_bool_exp + ): [match_demo_sessions!]! + + """ + fetch aggregated fields from the table: "match_demo_sessions" + """ + match_demo_sessions_aggregate( + """distinct select on columns""" + distinct_on: [match_demo_sessions_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_demo_sessions_order_by!] + + """filter the rows returned""" + where: match_demo_sessions_bool_exp + ): match_demo_sessions_aggregate! + + """ + fetch data from the table: "match_demo_sessions" using primary key columns + """ + match_demo_sessions_by_pk(id: uuid!): match_demo_sessions + + """ + fetch data from the table in a streaming manner: "match_demo_sessions" + """ + match_demo_sessions_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [match_demo_sessions_stream_cursor_input]! + + """filter the rows returned""" + where: match_demo_sessions_bool_exp + ): [match_demo_sessions!]! + + """An array relationship""" + match_lineup_players( + """distinct select on columns""" + distinct_on: [match_lineup_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_lineup_players_order_by!] + + """filter the rows returned""" + where: match_lineup_players_bool_exp + ): [match_lineup_players!]! + + """An aggregate relationship""" + match_lineup_players_aggregate( + """distinct select on columns""" + distinct_on: [match_lineup_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_lineup_players_order_by!] + + """filter the rows returned""" + where: match_lineup_players_bool_exp + ): match_lineup_players_aggregate! + + """ + fetch data from the table: "match_lineup_players" using primary key columns + """ + match_lineup_players_by_pk(id: uuid!): match_lineup_players + + """ + fetch data from the table in a streaming manner: "match_lineup_players" + """ + match_lineup_players_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [match_lineup_players_stream_cursor_input]! + + """filter the rows returned""" + where: match_lineup_players_bool_exp + ): [match_lineup_players!]! + + """An array relationship""" + match_lineups( + """distinct select on columns""" + distinct_on: [match_lineups_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_lineups_order_by!] + + """filter the rows returned""" + where: match_lineups_bool_exp + ): [match_lineups!]! + + """An aggregate relationship""" + match_lineups_aggregate( + """distinct select on columns""" + distinct_on: [match_lineups_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_lineups_order_by!] + + """filter the rows returned""" + where: match_lineups_bool_exp + ): match_lineups_aggregate! + + """fetch data from the table: "match_lineups" using primary key columns""" + match_lineups_by_pk(id: uuid!): match_lineups + + """ + fetch data from the table in a streaming manner: "match_lineups" + """ + match_lineups_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [match_lineups_stream_cursor_input]! + + """filter the rows returned""" + where: match_lineups_bool_exp + ): [match_lineups!]! + + """ + fetch data from the table: "match_map_demos" + """ + match_map_demos( + """distinct select on columns""" + distinct_on: [match_map_demos_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_map_demos_order_by!] + + """filter the rows returned""" + where: match_map_demos_bool_exp + ): [match_map_demos!]! + + """ + fetch aggregated fields from the table: "match_map_demos" + """ + match_map_demos_aggregate( + """distinct select on columns""" + distinct_on: [match_map_demos_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_map_demos_order_by!] + + """filter the rows returned""" + where: match_map_demos_bool_exp + ): match_map_demos_aggregate! + + """fetch data from the table: "match_map_demos" using primary key columns""" + match_map_demos_by_pk(id: uuid!): match_map_demos + + """ + fetch data from the table in a streaming manner: "match_map_demos" + """ + match_map_demos_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [match_map_demos_stream_cursor_input]! + + """filter the rows returned""" + where: match_map_demos_bool_exp + ): [match_map_demos!]! + + """ + fetch data from the table: "match_map_rounds" + """ + match_map_rounds( + """distinct select on columns""" + distinct_on: [match_map_rounds_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_map_rounds_order_by!] + + """filter the rows returned""" + where: match_map_rounds_bool_exp + ): [match_map_rounds!]! + + """ + fetch aggregated fields from the table: "match_map_rounds" + """ + match_map_rounds_aggregate( + """distinct select on columns""" + distinct_on: [match_map_rounds_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_map_rounds_order_by!] + + """filter the rows returned""" + where: match_map_rounds_bool_exp + ): match_map_rounds_aggregate! + + """ + fetch data from the table: "match_map_rounds" using primary key columns + """ + match_map_rounds_by_pk(id: uuid!): match_map_rounds + + """ + fetch data from the table in a streaming manner: "match_map_rounds" + """ + match_map_rounds_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [match_map_rounds_stream_cursor_input]! + + """filter the rows returned""" + where: match_map_rounds_bool_exp + ): [match_map_rounds!]! + + """ + fetch data from the table: "match_map_veto_picks" + """ + match_map_veto_picks( + """distinct select on columns""" + distinct_on: [match_map_veto_picks_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_map_veto_picks_order_by!] + + """filter the rows returned""" + where: match_map_veto_picks_bool_exp + ): [match_map_veto_picks!]! + + """ + fetch aggregated fields from the table: "match_map_veto_picks" + """ + match_map_veto_picks_aggregate( + """distinct select on columns""" + distinct_on: [match_map_veto_picks_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_map_veto_picks_order_by!] + + """filter the rows returned""" + where: match_map_veto_picks_bool_exp + ): match_map_veto_picks_aggregate! + + """ + fetch data from the table: "match_map_veto_picks" using primary key columns + """ + match_map_veto_picks_by_pk(id: uuid!): match_map_veto_picks + + """ + fetch data from the table in a streaming manner: "match_map_veto_picks" + """ + match_map_veto_picks_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [match_map_veto_picks_stream_cursor_input]! + + """filter the rows returned""" + where: match_map_veto_picks_bool_exp + ): [match_map_veto_picks!]! + + """An array relationship""" + match_maps( + """distinct select on columns""" + distinct_on: [match_maps_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_maps_order_by!] + + """filter the rows returned""" + where: match_maps_bool_exp + ): [match_maps!]! + + """An aggregate relationship""" + match_maps_aggregate( + """distinct select on columns""" + distinct_on: [match_maps_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_maps_order_by!] + + """filter the rows returned""" + where: match_maps_bool_exp + ): match_maps_aggregate! + + """fetch data from the table: "match_maps" using primary key columns""" + match_maps_by_pk(id: uuid!): match_maps + + """ + fetch data from the table in a streaming manner: "match_maps" + """ + match_maps_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [match_maps_stream_cursor_input]! + + """filter the rows returned""" + where: match_maps_bool_exp + ): [match_maps!]! + + """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! + + """fetch data from the table: "match_options" using primary key columns""" + match_options_by_pk(id: uuid!): match_options + + """ + fetch data from the table in a streaming manner: "match_options" + """ + match_options_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [match_options_stream_cursor_input]! + + """filter the rows returned""" + where: match_options_bool_exp + ): [match_options!]! + + """ + fetch data from the table: "match_region_veto_picks" + """ + match_region_veto_picks( + """distinct select on columns""" + distinct_on: [match_region_veto_picks_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_region_veto_picks_order_by!] + + """filter the rows returned""" + where: match_region_veto_picks_bool_exp + ): [match_region_veto_picks!]! + + """ + fetch aggregated fields from the table: "match_region_veto_picks" + """ + match_region_veto_picks_aggregate( + """distinct select on columns""" + distinct_on: [match_region_veto_picks_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_region_veto_picks_order_by!] + + """filter the rows returned""" + where: match_region_veto_picks_bool_exp + ): match_region_veto_picks_aggregate! + + """ + fetch data from the table: "match_region_veto_picks" using primary key columns + """ + match_region_veto_picks_by_pk(id: uuid!): match_region_veto_picks + + """ + fetch data from the table in a streaming manner: "match_region_veto_picks" + """ + match_region_veto_picks_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [match_region_veto_picks_stream_cursor_input]! + + """filter the rows returned""" + where: match_region_veto_picks_bool_exp + ): [match_region_veto_picks!]! + + """ + fetch data from the table: "match_streams" + """ + match_streams( + """distinct select on columns""" + distinct_on: [match_streams_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_streams_order_by!] + + """filter the rows returned""" + where: match_streams_bool_exp + ): [match_streams!]! + + """ + fetch aggregated fields from the table: "match_streams" + """ + match_streams_aggregate( + """distinct select on columns""" + distinct_on: [match_streams_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_streams_order_by!] + + """filter the rows returned""" + where: match_streams_bool_exp + ): match_streams_aggregate! + + """fetch data from the table: "match_streams" using primary key columns""" + match_streams_by_pk(id: uuid!): match_streams + + """ + fetch data from the table in a streaming manner: "match_streams" + """ + match_streams_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [match_streams_stream_cursor_input]! + + """filter the rows returned""" + where: match_streams_bool_exp + ): [match_streams!]! + + """ + fetch data from the table: "match_type_cfgs" + """ + match_type_cfgs( + """distinct select on columns""" + distinct_on: [match_type_cfgs_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_type_cfgs_order_by!] + + """filter the rows returned""" + where: match_type_cfgs_bool_exp + ): [match_type_cfgs!]! + + """ + fetch aggregated fields from the table: "match_type_cfgs" + """ + match_type_cfgs_aggregate( + """distinct select on columns""" + distinct_on: [match_type_cfgs_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_type_cfgs_order_by!] + + """filter the rows returned""" + where: match_type_cfgs_bool_exp + ): match_type_cfgs_aggregate! + + """fetch data from the table: "match_type_cfgs" using primary key columns""" + match_type_cfgs_by_pk(type: e_game_cfg_types_enum!): match_type_cfgs + + """ + fetch data from the table in a streaming manner: "match_type_cfgs" + """ + match_type_cfgs_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [match_type_cfgs_stream_cursor_input]! + + """filter the rows returned""" + where: match_type_cfgs_bool_exp + ): [match_type_cfgs!]! + + """An array relationship""" + matches( + """distinct select on columns""" + distinct_on: [matches_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: [matches_order_by!] + + """filter the rows returned""" + where: matches_bool_exp + ): [matches!]! + + """An aggregate relationship""" + matches_aggregate( + """distinct select on columns""" + distinct_on: [matches_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: [matches_order_by!] + + """filter the rows returned""" + where: matches_bool_exp + ): matches_aggregate! + + """fetch data from the table: "matches" using primary key columns""" + matches_by_pk(id: uuid!): matches + + """ + fetch data from the table in a streaming manner: "matches" + """ + matches_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [matches_stream_cursor_input]! + + """filter the rows returned""" + where: matches_bool_exp + ): [matches!]! + + """ + fetch data from the table: "migration_hashes.hashes" + """ + migration_hashes_hashes( + """distinct select on columns""" + distinct_on: [migration_hashes_hashes_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: [migration_hashes_hashes_order_by!] + + """filter the rows returned""" + where: migration_hashes_hashes_bool_exp + ): [migration_hashes_hashes!]! + + """ + fetch aggregated fields from the table: "migration_hashes.hashes" + """ + migration_hashes_hashes_aggregate( + """distinct select on columns""" + distinct_on: [migration_hashes_hashes_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: [migration_hashes_hashes_order_by!] + + """filter the rows returned""" + where: migration_hashes_hashes_bool_exp + ): migration_hashes_hashes_aggregate! + + """ + fetch data from the table: "migration_hashes.hashes" using primary key columns + """ + migration_hashes_hashes_by_pk(name: String!): migration_hashes_hashes + + """ + fetch data from the table in a streaming manner: "migration_hashes.hashes" + """ + migration_hashes_hashes_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [migration_hashes_hashes_stream_cursor_input]! + + """filter the rows returned""" + where: migration_hashes_hashes_bool_exp + ): [migration_hashes_hashes!]! + + """ + fetch data from the table: "v_my_friends" + """ + my_friends( + """distinct select on columns""" + distinct_on: [my_friends_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: [my_friends_order_by!] + + """filter the rows returned""" + where: my_friends_bool_exp + ): [my_friends!]! + + """ + fetch aggregated fields from the table: "v_my_friends" + """ + my_friends_aggregate( + """distinct select on columns""" + distinct_on: [my_friends_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: [my_friends_order_by!] + + """filter the rows returned""" + where: my_friends_bool_exp + ): my_friends_aggregate! + + """ + fetch data from the table in a streaming manner: "v_my_friends" + """ + my_friends_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [my_friends_stream_cursor_input]! + + """filter the rows returned""" + where: my_friends_bool_exp + ): [my_friends!]! + + """ + fetch data from the table: "news_articles" + """ + news_articles( + """distinct select on columns""" + distinct_on: [news_articles_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: [news_articles_order_by!] + + """filter the rows returned""" + where: news_articles_bool_exp + ): [news_articles!]! + + """ + fetch aggregated fields from the table: "news_articles" + """ + news_articles_aggregate( + """distinct select on columns""" + distinct_on: [news_articles_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: [news_articles_order_by!] + + """filter the rows returned""" + where: news_articles_bool_exp + ): news_articles_aggregate! + + """fetch data from the table: "news_articles" using primary key columns""" + news_articles_by_pk(id: uuid!): news_articles + + """ + fetch data from the table in a streaming manner: "news_articles" + """ + news_articles_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [news_articles_stream_cursor_input]! + + """filter the rows returned""" + where: news_articles_bool_exp + ): [news_articles!]! + + """ + fetch data from the table: "notification_preferences" + """ + notification_preferences( + """distinct select on columns""" + distinct_on: [notification_preferences_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: [notification_preferences_order_by!] + + """filter the rows returned""" + where: notification_preferences_bool_exp + ): [notification_preferences!]! + + """ + fetch aggregated fields from the table: "notification_preferences" + """ + notification_preferences_aggregate( + """distinct select on columns""" + distinct_on: [notification_preferences_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: [notification_preferences_order_by!] + + """filter the rows returned""" + where: notification_preferences_bool_exp + ): notification_preferences_aggregate! + + """ + fetch data from the table: "notification_preferences" using primary key columns + """ + notification_preferences_by_pk(channel: String!, key: String!, steam_id: bigint!): notification_preferences + + """ + fetch data from the table in a streaming manner: "notification_preferences" + """ + notification_preferences_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [notification_preferences_stream_cursor_input]! + + """filter the rows returned""" + where: notification_preferences_bool_exp + ): [notification_preferences!]! + + """An array relationship""" + notifications( + """distinct select on columns""" + distinct_on: [notifications_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: [notifications_order_by!] + + """filter the rows returned""" + where: notifications_bool_exp + ): [notifications!]! + + """An aggregate relationship""" + notifications_aggregate( + """distinct select on columns""" + distinct_on: [notifications_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: [notifications_order_by!] + + """filter the rows returned""" + where: notifications_bool_exp + ): notifications_aggregate! + + """fetch data from the table: "notifications" using primary key columns""" + notifications_by_pk(id: uuid!): notifications + + """ + fetch data from the table in a streaming manner: "notifications" + """ + notifications_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [notifications_stream_cursor_input]! + + """filter the rows returned""" + where: notifications_bool_exp + ): [notifications!]! + + """ + fetch data from the table: "pending_match_import_players" + """ + pending_match_import_players( + """distinct select on columns""" + distinct_on: [pending_match_import_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pending_match_import_players_order_by!] + + """filter the rows returned""" + where: pending_match_import_players_bool_exp + ): [pending_match_import_players!]! + + """ + fetch aggregated fields from the table: "pending_match_import_players" + """ + pending_match_import_players_aggregate( + """distinct select on columns""" + distinct_on: [pending_match_import_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pending_match_import_players_order_by!] + + """filter the rows returned""" + where: pending_match_import_players_bool_exp + ): pending_match_import_players_aggregate! + + """ + fetch data from the table: "pending_match_import_players" using primary key columns + """ + pending_match_import_players_by_pk(steam_id: bigint!, valve_match_id: numeric!): pending_match_import_players + + """ + fetch data from the table in a streaming manner: "pending_match_import_players" + """ + pending_match_import_players_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pending_match_import_players_stream_cursor_input]! + + """filter the rows returned""" + where: pending_match_import_players_bool_exp + ): [pending_match_import_players!]! + + """ + fetch data from the table: "pending_match_imports" + """ + pending_match_imports( + """distinct select on columns""" + distinct_on: [pending_match_imports_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: [pending_match_imports_order_by!] + + """filter the rows returned""" + where: pending_match_imports_bool_exp + ): [pending_match_imports!]! + + """ + fetch aggregated fields from the table: "pending_match_imports" + """ + pending_match_imports_aggregate( + """distinct select on columns""" + distinct_on: [pending_match_imports_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: [pending_match_imports_order_by!] + + """filter the rows returned""" + where: pending_match_imports_bool_exp + ): pending_match_imports_aggregate! + + """ + fetch data from the table: "pending_match_imports" using primary key columns + """ + pending_match_imports_by_pk(valve_match_id: numeric!): pending_match_imports + + """ + fetch data from the table in a streaming manner: "pending_match_imports" + """ + pending_match_imports_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pending_match_imports_stream_cursor_input]! + + """filter the rows returned""" + where: pending_match_imports_bool_exp + ): [pending_match_imports!]! + + """ + fetch data from the table: "player_aim_stats_demo" + """ + player_aim_stats_demo( + """distinct select on columns""" + distinct_on: [player_aim_stats_demo_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: [player_aim_stats_demo_order_by!] + + """filter the rows returned""" + where: player_aim_stats_demo_bool_exp + ): [player_aim_stats_demo!]! + + """ + fetch aggregated fields from the table: "player_aim_stats_demo" + """ + player_aim_stats_demo_aggregate( + """distinct select on columns""" + distinct_on: [player_aim_stats_demo_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: [player_aim_stats_demo_order_by!] + + """filter the rows returned""" + where: player_aim_stats_demo_bool_exp + ): player_aim_stats_demo_aggregate! + + """ + fetch data from the table: "player_aim_stats_demo" using primary key columns + """ + player_aim_stats_demo_by_pk(attacker_steam_id: bigint!, match_map_id: uuid!): player_aim_stats_demo + + """ + fetch data from the table in a streaming manner: "player_aim_stats_demo" + """ + player_aim_stats_demo_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [player_aim_stats_demo_stream_cursor_input]! + + """filter the rows returned""" + where: player_aim_stats_demo_bool_exp + ): [player_aim_stats_demo!]! + + """ + fetch data from the table: "player_aim_weapon_stats" + """ + player_aim_weapon_stats( + """distinct select on columns""" + distinct_on: [player_aim_weapon_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [player_aim_weapon_stats_order_by!] + + """filter the rows returned""" + where: player_aim_weapon_stats_bool_exp + ): [player_aim_weapon_stats!]! + + """ + fetch aggregated fields from the table: "player_aim_weapon_stats" + """ + player_aim_weapon_stats_aggregate( + """distinct select on columns""" + distinct_on: [player_aim_weapon_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [player_aim_weapon_stats_order_by!] + + """filter the rows returned""" + where: player_aim_weapon_stats_bool_exp + ): player_aim_weapon_stats_aggregate! + + """ + fetch data from the table: "player_aim_weapon_stats" using primary key columns + """ + player_aim_weapon_stats_by_pk(match_map_id: uuid!, steam_id: bigint!, weapon_class: String!): player_aim_weapon_stats + + """ + fetch data from the table in a streaming manner: "player_aim_weapon_stats" + """ + player_aim_weapon_stats_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [player_aim_weapon_stats_stream_cursor_input]! + + """filter the rows returned""" + where: player_aim_weapon_stats_bool_exp + ): [player_aim_weapon_stats!]! + + """An array relationship""" + player_assists( + """distinct select on columns""" + distinct_on: [player_assists_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: [player_assists_order_by!] + + """filter the rows returned""" + where: player_assists_bool_exp + ): [player_assists!]! + + """An aggregate relationship""" + player_assists_aggregate( + """distinct select on columns""" + distinct_on: [player_assists_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: [player_assists_order_by!] + + """filter the rows returned""" + where: player_assists_bool_exp + ): player_assists_aggregate! + + """fetch data from the table: "player_assists" using primary key columns""" + player_assists_by_pk(attacked_steam_id: bigint!, attacker_steam_id: bigint!, match_map_id: uuid!, time: timestamptz!): player_assists + + """ + fetch data from the table in a streaming manner: "player_assists" + """ + player_assists_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [player_assists_stream_cursor_input]! + + """filter the rows returned""" + where: player_assists_bool_exp + ): [player_assists!]! + + """ + fetch data from the table: "player_career_stats_v" + """ + player_career_stats_v( + """distinct select on columns""" + distinct_on: [player_career_stats_v_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: [player_career_stats_v_order_by!] + + """filter the rows returned""" + where: player_career_stats_v_bool_exp + ): [player_career_stats_v!]! + + """ + fetch aggregated fields from the table: "player_career_stats_v" + """ + player_career_stats_v_aggregate( + """distinct select on columns""" + distinct_on: [player_career_stats_v_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: [player_career_stats_v_order_by!] + + """filter the rows returned""" + where: player_career_stats_v_bool_exp + ): player_career_stats_v_aggregate! + + """ + fetch data from the table in a streaming manner: "player_career_stats_v" + """ + player_career_stats_v_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [player_career_stats_v_stream_cursor_input]! + + """filter the rows returned""" + where: player_career_stats_v_bool_exp + ): [player_career_stats_v!]! + + """An array relationship""" + player_damages( + """distinct select on columns""" + distinct_on: [player_damages_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: [player_damages_order_by!] + + """filter the rows returned""" + where: player_damages_bool_exp + ): [player_damages!]! + + """An aggregate relationship""" + player_damages_aggregate( + """distinct select on columns""" + distinct_on: [player_damages_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: [player_damages_order_by!] + + """filter the rows returned""" + where: player_damages_bool_exp + ): player_damages_aggregate! + + """fetch data from the table: "player_damages" using primary key columns""" + player_damages_by_pk(id: uuid!, match_map_id: uuid!, time: timestamptz!): player_damages + + """ + fetch data from the table in a streaming manner: "player_damages" + """ + player_damages_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [player_damages_stream_cursor_input]! + + """filter the rows returned""" + where: player_damages_bool_exp + ): [player_damages!]! + + """ + fetch data from the table: "player_elo" + """ + player_elo( + """distinct select on columns""" + distinct_on: [player_elo_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: [player_elo_order_by!] + + """filter the rows returned""" + where: player_elo_bool_exp + ): [player_elo!]! + + """ + fetch aggregated fields from the table: "player_elo" + """ + player_elo_aggregate( + """distinct select on columns""" + distinct_on: [player_elo_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: [player_elo_order_by!] + + """filter the rows returned""" + where: player_elo_bool_exp + ): player_elo_aggregate! + + """fetch data from the table: "player_elo" using primary key columns""" + player_elo_by_pk(match_id: uuid!, steam_id: bigint!, type: e_match_types_enum!): player_elo + + """ + fetch data from the table in a streaming manner: "player_elo" + """ + player_elo_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [player_elo_stream_cursor_input]! + + """filter the rows returned""" + where: player_elo_bool_exp + ): [player_elo!]! + + """ + fetch data from the table: "player_faceit_rank_history" + """ + player_faceit_rank_history( + """distinct select on columns""" + distinct_on: [player_faceit_rank_history_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: [player_faceit_rank_history_order_by!] + + """filter the rows returned""" + where: player_faceit_rank_history_bool_exp + ): [player_faceit_rank_history!]! + + """ + fetch aggregated fields from the table: "player_faceit_rank_history" + """ + player_faceit_rank_history_aggregate( + """distinct select on columns""" + distinct_on: [player_faceit_rank_history_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: [player_faceit_rank_history_order_by!] + + """filter the rows returned""" + where: player_faceit_rank_history_bool_exp + ): player_faceit_rank_history_aggregate! + + """ + fetch data from the table: "player_faceit_rank_history" using primary key columns + """ + player_faceit_rank_history_by_pk(id: uuid!): player_faceit_rank_history + + """ + fetch data from the table in a streaming manner: "player_faceit_rank_history" + """ + player_faceit_rank_history_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [player_faceit_rank_history_stream_cursor_input]! + + """filter the rows returned""" + where: player_faceit_rank_history_bool_exp + ): [player_faceit_rank_history!]! + + """An array relationship""" + player_flashes( + """distinct select on columns""" + distinct_on: [player_flashes_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: [player_flashes_order_by!] + + """filter the rows returned""" + where: player_flashes_bool_exp + ): [player_flashes!]! + + """An aggregate relationship""" + player_flashes_aggregate( + """distinct select on columns""" + distinct_on: [player_flashes_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: [player_flashes_order_by!] + + """filter the rows returned""" + where: player_flashes_bool_exp + ): player_flashes_aggregate! + + """fetch data from the table: "player_flashes" using primary key columns""" + player_flashes_by_pk(attacked_steam_id: bigint!, attacker_steam_id: bigint!, match_map_id: uuid!, time: timestamptz!): player_flashes + + """ + fetch data from the table in a streaming manner: "player_flashes" + """ + player_flashes_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [player_flashes_stream_cursor_input]! + + """filter the rows returned""" + where: player_flashes_bool_exp + ): [player_flashes!]! + + """An array relationship""" + player_kills( + """distinct select on columns""" + distinct_on: [player_kills_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: [player_kills_order_by!] + + """filter the rows returned""" + where: player_kills_bool_exp + ): [player_kills!]! + + """An aggregate relationship""" + player_kills_aggregate( + """distinct select on columns""" + distinct_on: [player_kills_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: [player_kills_order_by!] + + """filter the rows returned""" + where: player_kills_bool_exp + ): player_kills_aggregate! + + """fetch data from the table: "player_kills" using primary key columns""" + player_kills_by_pk(attacked_steam_id: bigint!, attacker_steam_id: bigint!, match_map_id: uuid!, time: timestamptz!): player_kills + + """ + fetch data from the table: "player_kills_by_weapon" + """ + player_kills_by_weapon( + """distinct select on columns""" + distinct_on: [player_kills_by_weapon_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: [player_kills_by_weapon_order_by!] + + """filter the rows returned""" + where: player_kills_by_weapon_bool_exp + ): [player_kills_by_weapon!]! + + """ + fetch aggregated fields from the table: "player_kills_by_weapon" + """ + player_kills_by_weapon_aggregate( + """distinct select on columns""" + distinct_on: [player_kills_by_weapon_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: [player_kills_by_weapon_order_by!] + + """filter the rows returned""" + where: player_kills_by_weapon_bool_exp + ): player_kills_by_weapon_aggregate! + + """ + fetch data from the table: "player_kills_by_weapon" using primary key columns + """ + player_kills_by_weapon_by_pk(player_steam_id: bigint!, with: String!): player_kills_by_weapon + + """ + fetch data from the table in a streaming manner: "player_kills_by_weapon" + """ + player_kills_by_weapon_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [player_kills_by_weapon_stream_cursor_input]! + + """filter the rows returned""" + where: player_kills_by_weapon_bool_exp + ): [player_kills_by_weapon!]! + + """ + fetch data from the table in a streaming manner: "player_kills" + """ + player_kills_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [player_kills_stream_cursor_input]! + + """filter the rows returned""" + where: player_kills_bool_exp + ): [player_kills!]! + + """ + fetch data from the table: "player_leaderboard_rank" + """ + player_leaderboard_rank( + """distinct select on columns""" + distinct_on: [player_leaderboard_rank_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: [player_leaderboard_rank_order_by!] + + """filter the rows returned""" + where: player_leaderboard_rank_bool_exp + ): [player_leaderboard_rank!]! + + """ + fetch aggregated fields from the table: "player_leaderboard_rank" + """ + player_leaderboard_rank_aggregate( + """distinct select on columns""" + distinct_on: [player_leaderboard_rank_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: [player_leaderboard_rank_order_by!] + + """filter the rows returned""" + where: player_leaderboard_rank_bool_exp + ): player_leaderboard_rank_aggregate! + + """ + fetch data from the table in a streaming manner: "player_leaderboard_rank" + """ + player_leaderboard_rank_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [player_leaderboard_rank_stream_cursor_input]! + + """filter the rows returned""" + where: player_leaderboard_rank_bool_exp + ): [player_leaderboard_rank!]! + + """ + fetch data from the table: "player_match_map_stats" + """ + player_match_map_stats( + """distinct select on columns""" + distinct_on: [player_match_map_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [player_match_map_stats_order_by!] + + """filter the rows returned""" + where: player_match_map_stats_bool_exp + ): [player_match_map_stats!]! + + """ + fetch aggregated fields from the table: "player_match_map_stats" + """ + player_match_map_stats_aggregate( + """distinct select on columns""" + distinct_on: [player_match_map_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [player_match_map_stats_order_by!] + + """filter the rows returned""" + where: player_match_map_stats_bool_exp + ): player_match_map_stats_aggregate! + + """ + fetch data from the table: "player_match_map_stats" using primary key columns + """ + player_match_map_stats_by_pk(match_map_id: uuid!, steam_id: bigint!): player_match_map_stats + + """ + fetch data from the table in a streaming manner: "player_match_map_stats" + """ + player_match_map_stats_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [player_match_map_stats_stream_cursor_input]! + + """filter the rows returned""" + where: player_match_map_stats_bool_exp + ): [player_match_map_stats!]! + + """ + fetch data from the table: "player_match_performance_v" + """ + player_match_performance_v( + """distinct select on columns""" + distinct_on: [player_match_performance_v_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: [player_match_performance_v_order_by!] + + """filter the rows returned""" + where: player_match_performance_v_bool_exp + ): [player_match_performance_v!]! + + """ + fetch aggregated fields from the table: "player_match_performance_v" + """ + player_match_performance_v_aggregate( + """distinct select on columns""" + distinct_on: [player_match_performance_v_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: [player_match_performance_v_order_by!] + + """filter the rows returned""" + where: player_match_performance_v_bool_exp + ): player_match_performance_v_aggregate! + + """ + fetch data from the table in a streaming manner: "player_match_performance_v" + """ + player_match_performance_v_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [player_match_performance_v_stream_cursor_input]! + + """filter the rows returned""" + where: player_match_performance_v_bool_exp + ): [player_match_performance_v!]! + + """ + fetch data from the table: "player_match_stats_v" + """ + player_match_stats_v( + """distinct select on columns""" + distinct_on: [player_match_stats_v_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: [player_match_stats_v_order_by!] + + """filter the rows returned""" + where: player_match_stats_v_bool_exp + ): [player_match_stats_v!]! + + """ + fetch aggregated fields from the table: "player_match_stats_v" + """ + player_match_stats_v_aggregate( + """distinct select on columns""" + distinct_on: [player_match_stats_v_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: [player_match_stats_v_order_by!] + + """filter the rows returned""" + where: player_match_stats_v_bool_exp + ): player_match_stats_v_aggregate! + + """ + fetch data from the table in a streaming manner: "player_match_stats_v" + """ + player_match_stats_v_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [player_match_stats_v_stream_cursor_input]! + + """filter the rows returned""" + where: player_match_stats_v_bool_exp + ): [player_match_stats_v!]! + + """An array relationship""" + player_objectives( + """distinct select on columns""" + distinct_on: [player_objectives_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: [player_objectives_order_by!] + + """filter the rows returned""" + where: player_objectives_bool_exp + ): [player_objectives!]! + + """An aggregate relationship""" + player_objectives_aggregate( + """distinct select on columns""" + distinct_on: [player_objectives_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: [player_objectives_order_by!] + + """filter the rows returned""" + where: player_objectives_bool_exp + ): player_objectives_aggregate! + + """ + fetch data from the table: "player_objectives" using primary key columns + """ + player_objectives_by_pk(match_map_id: uuid!, player_steam_id: bigint!, time: timestamptz!): player_objectives + + """ + fetch data from the table in a streaming manner: "player_objectives" + """ + player_objectives_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [player_objectives_stream_cursor_input]! + + """filter the rows returned""" + where: player_objectives_bool_exp + ): [player_objectives!]! + + """ + fetch data from the table: "player_performance_v" + """ + player_performance_v( + """distinct select on columns""" + distinct_on: [player_performance_v_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: [player_performance_v_order_by!] + + """filter the rows returned""" + where: player_performance_v_bool_exp + ): [player_performance_v!]! + + """ + fetch aggregated fields from the table: "player_performance_v" + """ + player_performance_v_aggregate( + """distinct select on columns""" + distinct_on: [player_performance_v_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: [player_performance_v_order_by!] + + """filter the rows returned""" + where: player_performance_v_bool_exp + ): player_performance_v_aggregate! + + """ + fetch data from the table in a streaming manner: "player_performance_v" + """ + player_performance_v_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [player_performance_v_stream_cursor_input]! + + """filter the rows returned""" + where: player_performance_v_bool_exp + ): [player_performance_v!]! + + """ + fetch data from the table: "player_premier_rank_history" + """ + player_premier_rank_history( + """distinct select on columns""" + distinct_on: [player_premier_rank_history_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: [player_premier_rank_history_order_by!] + + """filter the rows returned""" + where: player_premier_rank_history_bool_exp + ): [player_premier_rank_history!]! + + """ + fetch aggregated fields from the table: "player_premier_rank_history" + """ + player_premier_rank_history_aggregate( + """distinct select on columns""" + distinct_on: [player_premier_rank_history_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: [player_premier_rank_history_order_by!] + + """filter the rows returned""" + where: player_premier_rank_history_bool_exp + ): player_premier_rank_history_aggregate! + + """ + fetch data from the table: "player_premier_rank_history" using primary key columns + """ + player_premier_rank_history_by_pk(id: uuid!): player_premier_rank_history + + """ + fetch data from the table in a streaming manner: "player_premier_rank_history" + """ + player_premier_rank_history_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [player_premier_rank_history_stream_cursor_input]! + + """filter the rows returned""" + where: player_premier_rank_history_bool_exp + ): [player_premier_rank_history!]! + + """ + fetch data from the table: "player_sanctions" + """ + player_sanctions( + """distinct select on columns""" + distinct_on: [player_sanctions_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: [player_sanctions_order_by!] + + """filter the rows returned""" + where: player_sanctions_bool_exp + ): [player_sanctions!]! + + """ + fetch aggregated fields from the table: "player_sanctions" + """ + player_sanctions_aggregate( + """distinct select on columns""" + distinct_on: [player_sanctions_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: [player_sanctions_order_by!] + + """filter the rows returned""" + where: player_sanctions_bool_exp + ): player_sanctions_aggregate! + + """ + fetch data from the table: "player_sanctions" using primary key columns + """ + player_sanctions_by_pk(created_at: timestamptz!, id: uuid!): player_sanctions + + """ + fetch data from the table in a streaming manner: "player_sanctions" + """ + player_sanctions_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [player_sanctions_stream_cursor_input]! + + """filter the rows returned""" + where: player_sanctions_bool_exp + ): [player_sanctions!]! + + """An array relationship""" + player_season_stats( + """distinct select on columns""" + distinct_on: [player_season_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [player_season_stats_order_by!] + + """filter the rows returned""" + where: player_season_stats_bool_exp + ): [player_season_stats!]! + + """An aggregate relationship""" + player_season_stats_aggregate( + """distinct select on columns""" + distinct_on: [player_season_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [player_season_stats_order_by!] + + """filter the rows returned""" + where: player_season_stats_bool_exp + ): player_season_stats_aggregate! + + """ + fetch data from the table: "player_season_stats" using primary key columns + """ + player_season_stats_by_pk(player_steam_id: bigint!, season_id: uuid!): player_season_stats + + """ + fetch data from the table in a streaming manner: "player_season_stats" + """ + player_season_stats_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [player_season_stats_stream_cursor_input]! + + """filter the rows returned""" + where: player_season_stats_bool_exp + ): [player_season_stats!]! + + """ + fetch data from the table: "player_stats" + """ + player_stats( + """distinct select on columns""" + distinct_on: [player_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [player_stats_order_by!] + + """filter the rows returned""" + where: player_stats_bool_exp + ): [player_stats!]! + + """ + fetch aggregated fields from the table: "player_stats" + """ + player_stats_aggregate( + """distinct select on columns""" + distinct_on: [player_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [player_stats_order_by!] + + """filter the rows returned""" + where: player_stats_bool_exp + ): player_stats_aggregate! + + """fetch data from the table: "player_stats" using primary key columns""" + player_stats_by_pk(player_steam_id: bigint!): player_stats + + """ + fetch data from the table in a streaming manner: "player_stats" + """ + player_stats_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [player_stats_stream_cursor_input]! + + """filter the rows returned""" + where: player_stats_bool_exp + ): [player_stats!]! + + """ + fetch data from the table: "player_steam_bot_friend" + """ + player_steam_bot_friend( + """distinct select on columns""" + distinct_on: [player_steam_bot_friend_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: [player_steam_bot_friend_order_by!] + + """filter the rows returned""" + where: player_steam_bot_friend_bool_exp + ): [player_steam_bot_friend!]! + + """ + fetch aggregated fields from the table: "player_steam_bot_friend" + """ + player_steam_bot_friend_aggregate( + """distinct select on columns""" + distinct_on: [player_steam_bot_friend_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: [player_steam_bot_friend_order_by!] + + """filter the rows returned""" + where: player_steam_bot_friend_bool_exp + ): player_steam_bot_friend_aggregate! + + """ + fetch data from the table: "player_steam_bot_friend" using primary key columns + """ + player_steam_bot_friend_by_pk(steam_id: bigint!): player_steam_bot_friend + + """ + fetch data from the table in a streaming manner: "player_steam_bot_friend" + """ + player_steam_bot_friend_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [player_steam_bot_friend_stream_cursor_input]! + + """filter the rows returned""" + where: player_steam_bot_friend_bool_exp + ): [player_steam_bot_friend!]! + + """ + fetch data from the table: "player_steam_match_auth" + """ + player_steam_match_auth( + """distinct select on columns""" + distinct_on: [player_steam_match_auth_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: [player_steam_match_auth_order_by!] + + """filter the rows returned""" + where: player_steam_match_auth_bool_exp + ): [player_steam_match_auth!]! + + """ + fetch aggregated fields from the table: "player_steam_match_auth" + """ + player_steam_match_auth_aggregate( + """distinct select on columns""" + distinct_on: [player_steam_match_auth_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: [player_steam_match_auth_order_by!] + + """filter the rows returned""" + where: player_steam_match_auth_bool_exp + ): player_steam_match_auth_aggregate! + + """ + fetch data from the table: "player_steam_match_auth" using primary key columns + """ + player_steam_match_auth_by_pk(steam_id: bigint!): player_steam_match_auth + + """ + fetch data from the table in a streaming manner: "player_steam_match_auth" + """ + player_steam_match_auth_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [player_steam_match_auth_stream_cursor_input]! + + """filter the rows returned""" + where: player_steam_match_auth_bool_exp + ): [player_steam_match_auth!]! + + """ + fetch data from the table: "player_unused_utility" + """ + player_unused_utility( + """distinct select on columns""" + distinct_on: [player_unused_utility_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: [player_unused_utility_order_by!] + + """filter the rows returned""" + where: player_unused_utility_bool_exp + ): [player_unused_utility!]! + + """ + fetch aggregated fields from the table: "player_unused_utility" + """ + player_unused_utility_aggregate( + """distinct select on columns""" + distinct_on: [player_unused_utility_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: [player_unused_utility_order_by!] + + """filter the rows returned""" + where: player_unused_utility_bool_exp + ): player_unused_utility_aggregate! + + """ + fetch data from the table: "player_unused_utility" using primary key columns + """ + player_unused_utility_by_pk(match_map_id: uuid!, player_steam_id: bigint!): player_unused_utility + + """ + fetch data from the table in a streaming manner: "player_unused_utility" + """ + player_unused_utility_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [player_unused_utility_stream_cursor_input]! + + """filter the rows returned""" + where: player_unused_utility_bool_exp + ): [player_unused_utility!]! + + """An array relationship""" + player_utility( + """distinct select on columns""" + distinct_on: [player_utility_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: [player_utility_order_by!] + + """filter the rows returned""" + where: player_utility_bool_exp + ): [player_utility!]! + + """An aggregate relationship""" + player_utility_aggregate( + """distinct select on columns""" + distinct_on: [player_utility_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: [player_utility_order_by!] + + """filter the rows returned""" + where: player_utility_bool_exp + ): player_utility_aggregate! + + """fetch data from the table: "player_utility" using primary key columns""" + player_utility_by_pk(attacker_steam_id: bigint!, match_map_id: uuid!, time: timestamptz!): player_utility + + """ + fetch data from the table in a streaming manner: "player_utility" + """ + player_utility_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [player_utility_stream_cursor_input]! + + """filter the rows returned""" + where: player_utility_bool_exp + ): [player_utility!]! + + """ + fetch data from the table: "player_weapon_stats_v" + """ + player_weapon_stats_v( + """distinct select on columns""" + distinct_on: [player_weapon_stats_v_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: [player_weapon_stats_v_order_by!] + + """filter the rows returned""" + where: player_weapon_stats_v_bool_exp + ): [player_weapon_stats_v!]! + + """ + fetch aggregated fields from the table: "player_weapon_stats_v" + """ + player_weapon_stats_v_aggregate( + """distinct select on columns""" + distinct_on: [player_weapon_stats_v_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: [player_weapon_stats_v_order_by!] + + """filter the rows returned""" + where: player_weapon_stats_v_bool_exp + ): player_weapon_stats_v_aggregate! + + """ + fetch data from the table in a streaming manner: "player_weapon_stats_v" + """ + player_weapon_stats_v_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [player_weapon_stats_v_stream_cursor_input]! + + """filter the rows returned""" + where: player_weapon_stats_v_bool_exp + ): [player_weapon_stats_v!]! + + """ + fetch data from the table: "players" + """ + players( + """distinct select on columns""" + distinct_on: [players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [players_order_by!] + + """filter the rows returned""" + where: players_bool_exp + ): [players!]! + + """ + fetch aggregated fields from the table: "players" + """ + players_aggregate( + """distinct select on columns""" + distinct_on: [players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [players_order_by!] + + """filter the rows returned""" + where: players_bool_exp + ): players_aggregate! + + """fetch data from the table: "players" using primary key columns""" + players_by_pk(steam_id: bigint!): players + + """ + fetch data from the table in a streaming manner: "players" + """ + players_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [players_stream_cursor_input]! + + """filter the rows returned""" + where: players_bool_exp + ): [players!]! + + """ + fetch data from the table: "plugin_versions" + """ + plugin_versions( + """distinct select on columns""" + distinct_on: [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: [plugin_versions_order_by!] + + """filter the rows returned""" + where: plugin_versions_bool_exp + ): [plugin_versions!]! + + """ + fetch aggregated fields from the table: "plugin_versions" + """ + plugin_versions_aggregate( + """distinct select on columns""" + distinct_on: [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: [plugin_versions_order_by!] + + """filter the rows returned""" + where: plugin_versions_bool_exp + ): plugin_versions_aggregate! + + """fetch data from the table: "plugin_versions" using primary key columns""" + plugin_versions_by_pk(runtime: e_plugin_runtimes_enum!, version: String!): plugin_versions + + """ + fetch data from the table in a streaming manner: "plugin_versions" + """ + 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: [plugin_versions_stream_cursor_input]! + + """filter the rows returned""" + where: plugin_versions_bool_exp + ): [plugin_versions!]! + + """ + fetch data from the table: "push_subscriptions" + """ + push_subscriptions( + """distinct select on columns""" + distinct_on: [push_subscriptions_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: [push_subscriptions_order_by!] + + """filter the rows returned""" + where: push_subscriptions_bool_exp + ): [push_subscriptions!]! + + """ + fetch aggregated fields from the table: "push_subscriptions" + """ + push_subscriptions_aggregate( + """distinct select on columns""" + distinct_on: [push_subscriptions_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: [push_subscriptions_order_by!] + + """filter the rows returned""" + where: push_subscriptions_bool_exp + ): push_subscriptions_aggregate! + + """ + fetch data from the table: "push_subscriptions" using primary key columns + """ + push_subscriptions_by_pk(id: uuid!): push_subscriptions + + """ + fetch data from the table in a streaming manner: "push_subscriptions" + """ + push_subscriptions_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [push_subscriptions_stream_cursor_input]! + + """filter the rows returned""" + where: push_subscriptions_bool_exp + ): [push_subscriptions!]! + + """ + fetch data from the table: "v_role_permissions" + """ + role_permissions( + """distinct select on columns""" + distinct_on: [role_permissions_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: [role_permissions_order_by!] + + """filter the rows returned""" + where: role_permissions_bool_exp + ): [role_permissions!]! + + """ + fetch aggregated fields from the table: "v_role_permissions" + """ + role_permissions_aggregate( + """distinct select on columns""" + distinct_on: [role_permissions_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: [role_permissions_order_by!] + + """filter the rows returned""" + where: role_permissions_bool_exp + ): role_permissions_aggregate! + + """ + fetch data from the table in a streaming manner: "v_role_permissions" + """ + role_permissions_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [role_permissions_stream_cursor_input]! + + """filter the rows returned""" + where: role_permissions_bool_exp + ): [role_permissions!]! + + """ + fetch data from the table: "seasons" + """ + seasons( + """distinct select on columns""" + distinct_on: [seasons_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: [seasons_order_by!] + + """filter the rows returned""" + where: seasons_bool_exp + ): [seasons!]! + + """ + fetch aggregated fields from the table: "seasons" + """ + seasons_aggregate( + """distinct select on columns""" + distinct_on: [seasons_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: [seasons_order_by!] + + """filter the rows returned""" + where: seasons_bool_exp + ): seasons_aggregate! + + """fetch data from the table: "seasons" using primary key columns""" + seasons_by_pk(id: uuid!): seasons + + """ + fetch data from the table in a streaming manner: "seasons" + """ + seasons_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [seasons_stream_cursor_input]! + + """filter the rows returned""" + where: seasons_bool_exp + ): [seasons!]! + + """ + fetch data from the table: "server_regions" + """ + server_regions( + """distinct select on columns""" + distinct_on: [server_regions_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: [server_regions_order_by!] + + """filter the rows returned""" + where: server_regions_bool_exp + ): [server_regions!]! + + """ + fetch aggregated fields from the table: "server_regions" + """ + server_regions_aggregate( + """distinct select on columns""" + distinct_on: [server_regions_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: [server_regions_order_by!] + + """filter the rows returned""" + where: server_regions_bool_exp + ): server_regions_aggregate! + + """fetch data from the table: "server_regions" using primary key columns""" + server_regions_by_pk(value: String!): server_regions + + """ + fetch data from the table in a streaming manner: "server_regions" + """ + server_regions_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [server_regions_stream_cursor_input]! + + """filter the rows returned""" + where: server_regions_bool_exp + ): [server_regions!]! + + """An array relationship""" + servers( + """distinct select on columns""" + distinct_on: [servers_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: [servers_order_by!] + + """filter the rows returned""" + where: servers_bool_exp + ): [servers!]! + + """An aggregate relationship""" + servers_aggregate( + """distinct select on columns""" + distinct_on: [servers_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: [servers_order_by!] + + """filter the rows returned""" + where: servers_bool_exp + ): servers_aggregate! + + """fetch data from the table: "servers" using primary key columns""" + servers_by_pk(id: uuid!): servers + + """ + fetch data from the table in a streaming manner: "servers" + """ + servers_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [servers_stream_cursor_input]! + + """filter the rows returned""" + where: servers_bool_exp + ): [servers!]! + + """ + fetch data from the table: "settings" + """ + settings( + """distinct select on columns""" + distinct_on: [settings_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: [settings_order_by!] + + """filter the rows returned""" + where: settings_bool_exp + ): [settings!]! + + """ + fetch aggregated fields from the table: "settings" + """ + settings_aggregate( + """distinct select on columns""" + distinct_on: [settings_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: [settings_order_by!] + + """filter the rows returned""" + where: settings_bool_exp + ): settings_aggregate! + + """fetch data from the table: "settings" using primary key columns""" + settings_by_pk(name: String!): settings + + """ + fetch data from the table in a streaming manner: "settings" + """ + settings_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [settings_stream_cursor_input]! + + """filter the rows returned""" + where: settings_bool_exp + ): [settings!]! + + """ + fetch data from the table: "steam_account_claims" + """ + steam_account_claims( + """distinct select on columns""" + distinct_on: [steam_account_claims_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: [steam_account_claims_order_by!] + + """filter the rows returned""" + where: steam_account_claims_bool_exp + ): [steam_account_claims!]! + + """ + fetch aggregated fields from the table: "steam_account_claims" + """ + steam_account_claims_aggregate( + """distinct select on columns""" + distinct_on: [steam_account_claims_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: [steam_account_claims_order_by!] + + """filter the rows returned""" + where: steam_account_claims_bool_exp + ): steam_account_claims_aggregate! + + """ + fetch data from the table: "steam_account_claims" using primary key columns + """ + steam_account_claims_by_pk(id: uuid!): steam_account_claims + + """ + fetch data from the table in a streaming manner: "steam_account_claims" + """ + steam_account_claims_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [steam_account_claims_stream_cursor_input]! + + """filter the rows returned""" + where: steam_account_claims_bool_exp + ): [steam_account_claims!]! + + """ + fetch data from the table: "steam_accounts" + """ + steam_accounts( + """distinct select on columns""" + distinct_on: [steam_accounts_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: [steam_accounts_order_by!] + + """filter the rows returned""" + where: steam_accounts_bool_exp + ): [steam_accounts!]! + + """ + fetch aggregated fields from the table: "steam_accounts" + """ + steam_accounts_aggregate( + """distinct select on columns""" + distinct_on: [steam_accounts_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: [steam_accounts_order_by!] + + """filter the rows returned""" + where: steam_accounts_bool_exp + ): steam_accounts_aggregate! + + """fetch data from the table: "steam_accounts" using primary key columns""" + steam_accounts_by_pk(id: uuid!): steam_accounts + + """ + fetch data from the table in a streaming manner: "steam_accounts" + """ + steam_accounts_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [steam_accounts_stream_cursor_input]! + + """filter the rows returned""" + where: steam_accounts_bool_exp + ): [steam_accounts!]! + + """ + fetch data from the table: "system_alerts" + """ + system_alerts( + """distinct select on columns""" + distinct_on: [system_alerts_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: [system_alerts_order_by!] + + """filter the rows returned""" + where: system_alerts_bool_exp + ): [system_alerts!]! + + """ + fetch aggregated fields from the table: "system_alerts" + """ + system_alerts_aggregate( + """distinct select on columns""" + distinct_on: [system_alerts_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: [system_alerts_order_by!] + + """filter the rows returned""" + where: system_alerts_bool_exp + ): system_alerts_aggregate! + + """fetch data from the table: "system_alerts" using primary key columns""" + system_alerts_by_pk(id: uuid!): system_alerts + + """ + fetch data from the table in a streaming manner: "system_alerts" + """ + system_alerts_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [system_alerts_stream_cursor_input]! + + """filter the rows returned""" + where: system_alerts_bool_exp + ): [system_alerts!]! + + """An array relationship""" + team_invites( + """distinct select on columns""" + distinct_on: [team_invites_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: [team_invites_order_by!] + + """filter the rows returned""" + where: team_invites_bool_exp + ): [team_invites!]! + + """An aggregate relationship""" + team_invites_aggregate( + """distinct select on columns""" + distinct_on: [team_invites_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: [team_invites_order_by!] + + """filter the rows returned""" + where: team_invites_bool_exp + ): team_invites_aggregate! + + """fetch data from the table: "team_invites" using primary key columns""" + team_invites_by_pk(id: uuid!): team_invites + + """ + fetch data from the table in a streaming manner: "team_invites" + """ + team_invites_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [team_invites_stream_cursor_input]! + + """filter the rows returned""" + where: team_invites_bool_exp + ): [team_invites!]! + + """ + fetch data from the table: "team_roster" + """ + team_roster( + """distinct select on columns""" + distinct_on: [team_roster_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: [team_roster_order_by!] + + """filter the rows returned""" + where: team_roster_bool_exp + ): [team_roster!]! + + """ + fetch aggregated fields from the table: "team_roster" + """ + team_roster_aggregate( + """distinct select on columns""" + distinct_on: [team_roster_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: [team_roster_order_by!] + + """filter the rows returned""" + where: team_roster_bool_exp + ): team_roster_aggregate! + + """fetch data from the table: "team_roster" using primary key columns""" + team_roster_by_pk(player_steam_id: bigint!, team_id: uuid!): team_roster + + """ + fetch data from the table in a streaming manner: "team_roster" + """ + team_roster_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [team_roster_stream_cursor_input]! + + """filter the rows returned""" + where: team_roster_bool_exp + ): [team_roster!]! + + """ + fetch data from the table: "team_scrim_alerts" + """ + team_scrim_alerts( + """distinct select on columns""" + distinct_on: [team_scrim_alerts_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: [team_scrim_alerts_order_by!] + + """filter the rows returned""" + where: team_scrim_alerts_bool_exp + ): [team_scrim_alerts!]! + + """ + fetch aggregated fields from the table: "team_scrim_alerts" + """ + team_scrim_alerts_aggregate( + """distinct select on columns""" + distinct_on: [team_scrim_alerts_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: [team_scrim_alerts_order_by!] + + """filter the rows returned""" + where: team_scrim_alerts_bool_exp + ): team_scrim_alerts_aggregate! + + """ + fetch data from the table: "team_scrim_alerts" using primary key columns + """ + team_scrim_alerts_by_pk(id: uuid!): team_scrim_alerts + + """ + fetch data from the table in a streaming manner: "team_scrim_alerts" + """ + team_scrim_alerts_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [team_scrim_alerts_stream_cursor_input]! + + """filter the rows returned""" + where: team_scrim_alerts_bool_exp + ): [team_scrim_alerts!]! + + """ + fetch data from the table: "team_scrim_availability" + """ + team_scrim_availability( + """distinct select on columns""" + distinct_on: [team_scrim_availability_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: [team_scrim_availability_order_by!] + + """filter the rows returned""" + where: team_scrim_availability_bool_exp + ): [team_scrim_availability!]! + + """ + fetch aggregated fields from the table: "team_scrim_availability" + """ + team_scrim_availability_aggregate( + """distinct select on columns""" + distinct_on: [team_scrim_availability_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: [team_scrim_availability_order_by!] + + """filter the rows returned""" + where: team_scrim_availability_bool_exp + ): team_scrim_availability_aggregate! + + """ + fetch data from the table: "team_scrim_availability" using primary key columns + """ + team_scrim_availability_by_pk(id: uuid!): team_scrim_availability + + """ + fetch data from the table in a streaming manner: "team_scrim_availability" + """ + team_scrim_availability_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [team_scrim_availability_stream_cursor_input]! + + """filter the rows returned""" + where: team_scrim_availability_bool_exp + ): [team_scrim_availability!]! + + """ + fetch data from the table: "team_scrim_request_proposals" + """ + team_scrim_request_proposals( + """distinct select on columns""" + distinct_on: [team_scrim_request_proposals_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: [team_scrim_request_proposals_order_by!] + + """filter the rows returned""" + where: team_scrim_request_proposals_bool_exp + ): [team_scrim_request_proposals!]! + + """ + fetch aggregated fields from the table: "team_scrim_request_proposals" + """ + team_scrim_request_proposals_aggregate( + """distinct select on columns""" + distinct_on: [team_scrim_request_proposals_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: [team_scrim_request_proposals_order_by!] + + """filter the rows returned""" + where: team_scrim_request_proposals_bool_exp + ): team_scrim_request_proposals_aggregate! + + """ + fetch data from the table: "team_scrim_request_proposals" using primary key columns + """ + team_scrim_request_proposals_by_pk(id: uuid!): team_scrim_request_proposals + + """ + fetch data from the table in a streaming manner: "team_scrim_request_proposals" + """ + team_scrim_request_proposals_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [team_scrim_request_proposals_stream_cursor_input]! + + """filter the rows returned""" + where: team_scrim_request_proposals_bool_exp + ): [team_scrim_request_proposals!]! + + """ + fetch data from the table: "team_scrim_requests" + """ + team_scrim_requests( + """distinct select on columns""" + distinct_on: [team_scrim_requests_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: [team_scrim_requests_order_by!] + + """filter the rows returned""" + where: team_scrim_requests_bool_exp + ): [team_scrim_requests!]! + + """ + fetch aggregated fields from the table: "team_scrim_requests" + """ + team_scrim_requests_aggregate( + """distinct select on columns""" + distinct_on: [team_scrim_requests_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: [team_scrim_requests_order_by!] + + """filter the rows returned""" + where: team_scrim_requests_bool_exp + ): team_scrim_requests_aggregate! + + """ + fetch data from the table: "team_scrim_requests" using primary key columns + """ + team_scrim_requests_by_pk(id: uuid!): team_scrim_requests + + """ + fetch data from the table in a streaming manner: "team_scrim_requests" + """ + team_scrim_requests_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [team_scrim_requests_stream_cursor_input]! + + """filter the rows returned""" + where: team_scrim_requests_bool_exp + ): [team_scrim_requests!]! + + """ + fetch data from the table: "team_scrim_settings" + """ + team_scrim_settings( + """distinct select on columns""" + distinct_on: [team_scrim_settings_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: [team_scrim_settings_order_by!] + + """filter the rows returned""" + where: team_scrim_settings_bool_exp + ): [team_scrim_settings!]! + + """ + fetch aggregated fields from the table: "team_scrim_settings" + """ + team_scrim_settings_aggregate( + """distinct select on columns""" + distinct_on: [team_scrim_settings_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: [team_scrim_settings_order_by!] + + """filter the rows returned""" + where: team_scrim_settings_bool_exp + ): team_scrim_settings_aggregate! + + """ + fetch data from the table: "team_scrim_settings" using primary key columns + """ + team_scrim_settings_by_pk(id: uuid!): team_scrim_settings + + """ + fetch data from the table in a streaming manner: "team_scrim_settings" + """ + team_scrim_settings_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [team_scrim_settings_stream_cursor_input]! + + """filter the rows returned""" + where: team_scrim_settings_bool_exp + ): [team_scrim_settings!]! + + """ + fetch data from the table: "team_suggestions" + """ + team_suggestions( + """distinct select on columns""" + distinct_on: [team_suggestions_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: [team_suggestions_order_by!] + + """filter the rows returned""" + where: team_suggestions_bool_exp + ): [team_suggestions!]! + + """ + fetch aggregated fields from the table: "team_suggestions" + """ + team_suggestions_aggregate( + """distinct select on columns""" + distinct_on: [team_suggestions_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: [team_suggestions_order_by!] + + """filter the rows returned""" + where: team_suggestions_bool_exp + ): team_suggestions_aggregate! + + """ + fetch data from the table: "team_suggestions" using primary key columns + """ + team_suggestions_by_pk(id: uuid!): team_suggestions + + """ + fetch data from the table in a streaming manner: "team_suggestions" + """ + team_suggestions_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [team_suggestions_stream_cursor_input]! + + """filter the rows returned""" + where: team_suggestions_bool_exp + ): [team_suggestions!]! + + """ + fetch data from the table: "teams" + """ + teams( + """distinct select on columns""" + distinct_on: [teams_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [teams_order_by!] + + """filter the rows returned""" + where: teams_bool_exp + ): [teams!]! + + """ + fetch aggregated fields from the table: "teams" + """ + teams_aggregate( + """distinct select on columns""" + distinct_on: [teams_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [teams_order_by!] + + """filter the rows returned""" + where: teams_bool_exp + ): teams_aggregate! + + """fetch data from the table: "teams" using primary key columns""" + teams_by_pk(id: uuid!): teams + + """ + fetch data from the table in a streaming manner: "teams" + """ + teams_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [teams_stream_cursor_input]! + + """filter the rows returned""" + where: teams_bool_exp + ): [teams!]! + + """ + fetch data from the table: "tournament_awards" + """ + tournament_awards( + """distinct select on columns""" + distinct_on: [tournament_awards_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_awards_order_by!] + + """filter the rows returned""" + where: tournament_awards_bool_exp + ): [tournament_awards!]! + + """ + fetch aggregated fields from the table: "tournament_awards" + """ + tournament_awards_aggregate( + """distinct select on columns""" + distinct_on: [tournament_awards_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_awards_order_by!] + + """filter the rows returned""" + where: tournament_awards_bool_exp + ): tournament_awards_aggregate! + + """ + fetch data from the table: "tournament_awards" using primary key columns + """ + tournament_awards_by_pk(id: uuid!): tournament_awards + + """ + fetch data from the table in a streaming manner: "tournament_awards" + """ + tournament_awards_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [tournament_awards_stream_cursor_input]! + + """filter the rows returned""" + where: tournament_awards_bool_exp + ): [tournament_awards!]! + + """An array relationship""" + tournament_brackets( + """distinct select on columns""" + distinct_on: [tournament_brackets_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_brackets_order_by!] + + """filter the rows returned""" + where: tournament_brackets_bool_exp + ): [tournament_brackets!]! + + """An aggregate relationship""" + tournament_brackets_aggregate( + """distinct select on columns""" + distinct_on: [tournament_brackets_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_brackets_order_by!] + + """filter the rows returned""" + where: tournament_brackets_bool_exp + ): tournament_brackets_aggregate! + + """ + fetch data from the table: "tournament_brackets" using primary key columns + """ + tournament_brackets_by_pk(id: uuid!): tournament_brackets + + """ + fetch data from the table in a streaming manner: "tournament_brackets" + """ + tournament_brackets_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [tournament_brackets_stream_cursor_input]! + + """filter the rows returned""" + where: tournament_brackets_bool_exp + ): [tournament_brackets!]! + + """An array relationship""" + tournament_categories( + """distinct select on columns""" + distinct_on: [tournament_categories_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_categories_order_by!] + + """filter the rows returned""" + where: tournament_categories_bool_exp + ): [tournament_categories!]! + + """An aggregate relationship""" + tournament_categories_aggregate( + """distinct select on columns""" + distinct_on: [tournament_categories_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_categories_order_by!] + + """filter the rows returned""" + where: tournament_categories_bool_exp + ): tournament_categories_aggregate! + + """ + fetch data from the table: "tournament_categories" using primary key columns + """ + tournament_categories_by_pk(category: e_tournament_categories_enum!, tournament_id: uuid!): tournament_categories + + """ + fetch data from the table in a streaming manner: "tournament_categories" + """ + tournament_categories_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [tournament_categories_stream_cursor_input]! + + """filter the rows returned""" + where: tournament_categories_bool_exp + ): [tournament_categories!]! + + """An array relationship""" + tournament_free_agents( + """distinct select on columns""" + distinct_on: [tournament_free_agents_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_free_agents_order_by!] + + """filter the rows returned""" + where: tournament_free_agents_bool_exp + ): [tournament_free_agents!]! + + """An aggregate relationship""" + tournament_free_agents_aggregate( + """distinct select on columns""" + distinct_on: [tournament_free_agents_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_free_agents_order_by!] + + """filter the rows returned""" + where: tournament_free_agents_bool_exp + ): tournament_free_agents_aggregate! + + """ + fetch data from the table: "tournament_free_agents" using primary key columns + """ + tournament_free_agents_by_pk(id: uuid!): tournament_free_agents + + """ + fetch data from the table in a streaming manner: "tournament_free_agents" + """ + tournament_free_agents_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [tournament_free_agents_stream_cursor_input]! + + """filter the rows returned""" + where: tournament_free_agents_bool_exp + ): [tournament_free_agents!]! + + """ + fetch data from the table: "tournament_invite_code_uses" + """ + tournament_invite_code_uses( + """distinct select on columns""" + distinct_on: [tournament_invite_code_uses_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_invite_code_uses_order_by!] + + """filter the rows returned""" + where: tournament_invite_code_uses_bool_exp + ): [tournament_invite_code_uses!]! + + """ + fetch aggregated fields from the table: "tournament_invite_code_uses" + """ + tournament_invite_code_uses_aggregate( + """distinct select on columns""" + distinct_on: [tournament_invite_code_uses_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_invite_code_uses_order_by!] + + """filter the rows returned""" + where: tournament_invite_code_uses_bool_exp + ): tournament_invite_code_uses_aggregate! + + """ + fetch data from the table: "tournament_invite_code_uses" using primary key columns + """ + tournament_invite_code_uses_by_pk(invite_code_id: uuid!, player_steam_id: bigint!): tournament_invite_code_uses + + """ + fetch data from the table in a streaming manner: "tournament_invite_code_uses" + """ + tournament_invite_code_uses_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [tournament_invite_code_uses_stream_cursor_input]! + + """filter the rows returned""" + where: tournament_invite_code_uses_bool_exp + ): [tournament_invite_code_uses!]! + + """ + fetch data from the table: "tournament_invite_codes" + """ + tournament_invite_codes( + """distinct select on columns""" + distinct_on: [tournament_invite_codes_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_invite_codes_order_by!] + + """filter the rows returned""" + where: tournament_invite_codes_bool_exp + ): [tournament_invite_codes!]! + + """ + fetch aggregated fields from the table: "tournament_invite_codes" + """ + tournament_invite_codes_aggregate( + """distinct select on columns""" + distinct_on: [tournament_invite_codes_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_invite_codes_order_by!] + + """filter the rows returned""" + where: tournament_invite_codes_bool_exp + ): tournament_invite_codes_aggregate! + + """ + fetch data from the table: "tournament_invite_codes" using primary key columns + """ + tournament_invite_codes_by_pk(id: uuid!): tournament_invite_codes + + """ + fetch data from the table in a streaming manner: "tournament_invite_codes" + """ + tournament_invite_codes_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [tournament_invite_codes_stream_cursor_input]! + + """filter the rows returned""" + where: tournament_invite_codes_bool_exp + ): [tournament_invite_codes!]! + + """ + fetch data from the table: "tournament_invites" + """ + tournament_invites( + """distinct select on columns""" + distinct_on: [tournament_invites_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_invites_order_by!] + + """filter the rows returned""" + where: tournament_invites_bool_exp + ): [tournament_invites!]! + + """ + fetch aggregated fields from the table: "tournament_invites" + """ + tournament_invites_aggregate( + """distinct select on columns""" + distinct_on: [tournament_invites_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_invites_order_by!] + + """filter the rows returned""" + where: tournament_invites_bool_exp + ): tournament_invites_aggregate! + + """ + fetch data from the table: "tournament_invites" using primary key columns + """ + tournament_invites_by_pk(id: uuid!): tournament_invites + + """ + fetch data from the table in a streaming manner: "tournament_invites" + """ + tournament_invites_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [tournament_invites_stream_cursor_input]! + + """filter the rows returned""" + where: tournament_invites_bool_exp + ): [tournament_invites!]! + + """ + fetch data from the table: "tournament_leaderboard_entries" + """ + tournament_leaderboard_entries( + """distinct select on columns""" + distinct_on: [tournament_leaderboard_entries_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_leaderboard_entries_order_by!] + + """filter the rows returned""" + where: tournament_leaderboard_entries_bool_exp + ): [tournament_leaderboard_entries!]! + + """ + fetch aggregated fields from the table: "tournament_leaderboard_entries" + """ + tournament_leaderboard_entries_aggregate( + """distinct select on columns""" + distinct_on: [tournament_leaderboard_entries_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_leaderboard_entries_order_by!] + + """filter the rows returned""" + where: tournament_leaderboard_entries_bool_exp + ): tournament_leaderboard_entries_aggregate! + + """ + fetch data from the table in a streaming manner: "tournament_leaderboard_entries" + """ + tournament_leaderboard_entries_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [tournament_leaderboard_entries_stream_cursor_input]! + + """filter the rows returned""" + where: tournament_leaderboard_entries_bool_exp + ): [tournament_leaderboard_entries!]! + + """ + fetch data from the table: "tournament_no_shows" + """ + tournament_no_shows( + """distinct select on columns""" + distinct_on: [tournament_no_shows_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_no_shows_order_by!] + + """filter the rows returned""" + where: tournament_no_shows_bool_exp + ): [tournament_no_shows!]! + + """ + fetch aggregated fields from the table: "tournament_no_shows" + """ + tournament_no_shows_aggregate( + """distinct select on columns""" + distinct_on: [tournament_no_shows_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_no_shows_order_by!] + + """filter the rows returned""" + where: tournament_no_shows_bool_exp + ): tournament_no_shows_aggregate! + + """ + fetch data from the table: "tournament_no_shows" using primary key columns + """ + tournament_no_shows_by_pk(id: uuid!): tournament_no_shows + + """ + fetch data from the table in a streaming manner: "tournament_no_shows" + """ + tournament_no_shows_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [tournament_no_shows_stream_cursor_input]! + + """filter the rows returned""" + where: tournament_no_shows_bool_exp + ): [tournament_no_shows!]! + + """ + fetch data from the table: "tournament_organizer_teams" + """ + tournament_organizer_teams( + """distinct select on columns""" + distinct_on: [tournament_organizer_teams_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_organizer_teams_order_by!] + + """filter the rows returned""" + where: tournament_organizer_teams_bool_exp + ): [tournament_organizer_teams!]! + + """ + fetch aggregated fields from the table: "tournament_organizer_teams" + """ + tournament_organizer_teams_aggregate( + """distinct select on columns""" + distinct_on: [tournament_organizer_teams_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_organizer_teams_order_by!] + + """filter the rows returned""" + where: tournament_organizer_teams_bool_exp + ): tournament_organizer_teams_aggregate! + + """ + fetch data from the table: "tournament_organizer_teams" using primary key columns + """ + tournament_organizer_teams_by_pk(team_id: uuid!, tournament_id: uuid!): tournament_organizer_teams + + """ + fetch data from the table in a streaming manner: "tournament_organizer_teams" + """ + tournament_organizer_teams_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [tournament_organizer_teams_stream_cursor_input]! + + """filter the rows returned""" + where: tournament_organizer_teams_bool_exp + ): [tournament_organizer_teams!]! + + """An array relationship""" + tournament_organizers( + """distinct select on columns""" + distinct_on: [tournament_organizers_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_organizers_order_by!] + + """filter the rows returned""" + where: tournament_organizers_bool_exp + ): [tournament_organizers!]! + + """An aggregate relationship""" + tournament_organizers_aggregate( + """distinct select on columns""" + distinct_on: [tournament_organizers_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_organizers_order_by!] + + """filter the rows returned""" + where: tournament_organizers_bool_exp + ): tournament_organizers_aggregate! + + """ + fetch data from the table: "tournament_organizers" using primary key columns + """ + tournament_organizers_by_pk(steam_id: bigint!, tournament_id: uuid!): tournament_organizers + + """ + fetch data from the table in a streaming manner: "tournament_organizers" + """ + tournament_organizers_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [tournament_organizers_stream_cursor_input]! + + """filter the rows returned""" + where: tournament_organizers_bool_exp + ): [tournament_organizers!]! + + """ + fetch data from the table: "tournament_prizes" + """ + tournament_prizes( + """distinct select on columns""" + distinct_on: [tournament_prizes_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_prizes_order_by!] + + """filter the rows returned""" + where: tournament_prizes_bool_exp + ): [tournament_prizes!]! + + """ + fetch aggregated fields from the table: "tournament_prizes" + """ + tournament_prizes_aggregate( + """distinct select on columns""" + distinct_on: [tournament_prizes_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_prizes_order_by!] + + """filter the rows returned""" + where: tournament_prizes_bool_exp + ): tournament_prizes_aggregate! + + """ + fetch data from the table: "tournament_prizes" using primary key columns + """ + tournament_prizes_by_pk(id: uuid!): tournament_prizes + + """ + fetch data from the table in a streaming manner: "tournament_prizes" + """ + tournament_prizes_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [tournament_prizes_stream_cursor_input]! + + """filter the rows returned""" + where: tournament_prizes_bool_exp + ): [tournament_prizes!]! + + """ + fetch data from the table: "tournament_registration_unlocks" + """ + tournament_registration_unlocks( + """distinct select on columns""" + distinct_on: [tournament_registration_unlocks_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_registration_unlocks_order_by!] + + """filter the rows returned""" + where: tournament_registration_unlocks_bool_exp + ): [tournament_registration_unlocks!]! + + """ + fetch aggregated fields from the table: "tournament_registration_unlocks" + """ + tournament_registration_unlocks_aggregate( + """distinct select on columns""" + distinct_on: [tournament_registration_unlocks_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_registration_unlocks_order_by!] + + """filter the rows returned""" + where: tournament_registration_unlocks_bool_exp + ): tournament_registration_unlocks_aggregate! + + """ + fetch data from the table in a streaming manner: "tournament_registration_unlocks" + """ + tournament_registration_unlocks_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [tournament_registration_unlocks_stream_cursor_input]! + + """filter the rows returned""" + where: tournament_registration_unlocks_bool_exp + ): [tournament_registration_unlocks!]! + + """ + fetch data from the table: "tournament_stage_windows" + """ + tournament_stage_windows( + """distinct select on columns""" + distinct_on: [tournament_stage_windows_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_stage_windows_order_by!] + + """filter the rows returned""" + where: tournament_stage_windows_bool_exp + ): [tournament_stage_windows!]! + + """ + fetch aggregated fields from the table: "tournament_stage_windows" + """ + tournament_stage_windows_aggregate( + """distinct select on columns""" + distinct_on: [tournament_stage_windows_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_stage_windows_order_by!] + + """filter the rows returned""" + where: tournament_stage_windows_bool_exp + ): tournament_stage_windows_aggregate! + + """ + fetch data from the table: "tournament_stage_windows" using primary key columns + """ + tournament_stage_windows_by_pk(id: uuid!): tournament_stage_windows + + """ + fetch data from the table in a streaming manner: "tournament_stage_windows" + """ + tournament_stage_windows_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [tournament_stage_windows_stream_cursor_input]! + + """filter the rows returned""" + where: tournament_stage_windows_bool_exp + ): [tournament_stage_windows!]! + + """An array relationship""" + tournament_stages( + """distinct select on columns""" + distinct_on: [tournament_stages_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_stages_order_by!] + + """filter the rows returned""" + where: tournament_stages_bool_exp + ): [tournament_stages!]! + + """An aggregate relationship""" + tournament_stages_aggregate( + """distinct select on columns""" + distinct_on: [tournament_stages_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_stages_order_by!] + + """filter the rows returned""" + where: tournament_stages_bool_exp + ): tournament_stages_aggregate! + + """ + fetch data from the table: "tournament_stages" using primary key columns + """ + tournament_stages_by_pk(id: uuid!): tournament_stages + + """ + fetch data from the table in a streaming manner: "tournament_stages" + """ + tournament_stages_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [tournament_stages_stream_cursor_input]! + + """filter the rows returned""" + where: tournament_stages_bool_exp + ): [tournament_stages!]! + + """ + fetch data from the table: "tournament_team_invites" + """ + tournament_team_invites( + """distinct select on columns""" + distinct_on: [tournament_team_invites_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_team_invites_order_by!] + + """filter the rows returned""" + where: tournament_team_invites_bool_exp + ): [tournament_team_invites!]! + + """ + fetch aggregated fields from the table: "tournament_team_invites" + """ + tournament_team_invites_aggregate( + """distinct select on columns""" + distinct_on: [tournament_team_invites_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_team_invites_order_by!] + + """filter the rows returned""" + where: tournament_team_invites_bool_exp + ): tournament_team_invites_aggregate! + + """ + fetch data from the table: "tournament_team_invites" using primary key columns + """ + tournament_team_invites_by_pk(id: uuid!): tournament_team_invites + + """ + fetch data from the table in a streaming manner: "tournament_team_invites" + """ + tournament_team_invites_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [tournament_team_invites_stream_cursor_input]! + + """filter the rows returned""" + where: tournament_team_invites_bool_exp + ): [tournament_team_invites!]! + + """ + fetch data from the table: "tournament_team_roster" + """ + tournament_team_roster( + """distinct select on columns""" + distinct_on: [tournament_team_roster_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_team_roster_order_by!] + + """filter the rows returned""" + where: tournament_team_roster_bool_exp + ): [tournament_team_roster!]! + + """ + fetch aggregated fields from the table: "tournament_team_roster" + """ + tournament_team_roster_aggregate( + """distinct select on columns""" + distinct_on: [tournament_team_roster_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_team_roster_order_by!] + + """filter the rows returned""" + where: tournament_team_roster_bool_exp + ): tournament_team_roster_aggregate! + + """ + fetch data from the table: "tournament_team_roster" using primary key columns + """ + tournament_team_roster_by_pk(player_steam_id: bigint!, tournament_id: uuid!): tournament_team_roster + + """ + fetch data from the table in a streaming manner: "tournament_team_roster" + """ + tournament_team_roster_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [tournament_team_roster_stream_cursor_input]! + + """filter the rows returned""" + where: tournament_team_roster_bool_exp + ): [tournament_team_roster!]! + + """An array relationship""" + tournament_teams( + """distinct select on columns""" + distinct_on: [tournament_teams_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_teams_order_by!] + + """filter the rows returned""" + where: tournament_teams_bool_exp + ): [tournament_teams!]! + + """An aggregate relationship""" + tournament_teams_aggregate( + """distinct select on columns""" + distinct_on: [tournament_teams_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_teams_order_by!] + + """filter the rows returned""" + where: tournament_teams_bool_exp + ): tournament_teams_aggregate! + + """ + fetch data from the table: "tournament_teams" using primary key columns + """ + tournament_teams_by_pk(id: uuid!): tournament_teams + + """ + fetch data from the table in a streaming manner: "tournament_teams" + """ + tournament_teams_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [tournament_teams_stream_cursor_input]! + + """filter the rows returned""" + where: tournament_teams_bool_exp + ): [tournament_teams!]! + + """An array relationship""" + tournaments( + """distinct select on columns""" + distinct_on: [tournaments_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournaments_order_by!] + + """filter the rows returned""" + where: tournaments_bool_exp + ): [tournaments!]! + + """An aggregate relationship""" + tournaments_aggregate( + """distinct select on columns""" + distinct_on: [tournaments_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournaments_order_by!] + + """filter the rows returned""" + where: tournaments_bool_exp + ): tournaments_aggregate! + + """fetch data from the table: "tournaments" using primary key columns""" + tournaments_by_pk(id: uuid!): tournaments + + """ + fetch data from the table in a streaming manner: "tournaments" + """ + tournaments_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [tournaments_stream_cursor_input]! + + """filter the rows returned""" + where: tournaments_bool_exp + ): [tournaments!]! + + """ + fetch data from the table: "utility_collection_items" + """ + utility_collection_items( + """distinct select on columns""" + distinct_on: [utility_collection_items_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: [utility_collection_items_order_by!] + + """filter the rows returned""" + where: utility_collection_items_bool_exp + ): [utility_collection_items!]! + + """ + fetch aggregated fields from the table: "utility_collection_items" + """ + utility_collection_items_aggregate( + """distinct select on columns""" + distinct_on: [utility_collection_items_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: [utility_collection_items_order_by!] + + """filter the rows returned""" + where: utility_collection_items_bool_exp + ): utility_collection_items_aggregate! + + """ + fetch data from the table: "utility_collection_items" using primary key columns + """ + utility_collection_items_by_pk(collection_id: uuid!, utility_lineup_id: uuid!): utility_collection_items + + """ + fetch data from the table in a streaming manner: "utility_collection_items" + """ + utility_collection_items_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [utility_collection_items_stream_cursor_input]! + + """filter the rows returned""" + where: utility_collection_items_bool_exp + ): [utility_collection_items!]! + + """ + fetch data from the table: "utility_collections" + """ + utility_collections( + """distinct select on columns""" + distinct_on: [utility_collections_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: [utility_collections_order_by!] + + """filter the rows returned""" + where: utility_collections_bool_exp + ): [utility_collections!]! + + """ + fetch aggregated fields from the table: "utility_collections" + """ + utility_collections_aggregate( + """distinct select on columns""" + distinct_on: [utility_collections_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: [utility_collections_order_by!] + + """filter the rows returned""" + where: utility_collections_bool_exp + ): utility_collections_aggregate! + + """ + fetch data from the table: "utility_collections" using primary key columns + """ + utility_collections_by_pk(id: uuid!): utility_collections + + """ + fetch data from the table in a streaming manner: "utility_collections" + """ + utility_collections_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [utility_collections_stream_cursor_input]! + + """filter the rows returned""" + where: utility_collections_bool_exp + ): [utility_collections!]! + + """ + fetch data from the table: "utility_demo_mines" + """ + utility_demo_mines( + """distinct select on columns""" + distinct_on: [utility_demo_mines_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: [utility_demo_mines_order_by!] + + """filter the rows returned""" + where: utility_demo_mines_bool_exp + ): [utility_demo_mines!]! + + """ + fetch aggregated fields from the table: "utility_demo_mines" + """ + utility_demo_mines_aggregate( + """distinct select on columns""" + distinct_on: [utility_demo_mines_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: [utility_demo_mines_order_by!] + + """filter the rows returned""" + where: utility_demo_mines_bool_exp + ): utility_demo_mines_aggregate! + + """ + fetch data from the table: "utility_demo_mines" using primary key columns + """ + utility_demo_mines_by_pk(match_map_demo_id: uuid!): utility_demo_mines + + """ + fetch data from the table in a streaming manner: "utility_demo_mines" + """ + utility_demo_mines_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [utility_demo_mines_stream_cursor_input]! + + """filter the rows returned""" + where: utility_demo_mines_bool_exp + ): [utility_demo_mines!]! + + """ + fetch data from the table: "utility_demo_throws" + """ + utility_demo_throws( + """distinct select on columns""" + distinct_on: [utility_demo_throws_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: [utility_demo_throws_order_by!] + + """filter the rows returned""" + where: utility_demo_throws_bool_exp + ): [utility_demo_throws!]! + + """ + fetch aggregated fields from the table: "utility_demo_throws" + """ + utility_demo_throws_aggregate( + """distinct select on columns""" + distinct_on: [utility_demo_throws_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: [utility_demo_throws_order_by!] + + """filter the rows returned""" + where: utility_demo_throws_bool_exp + ): utility_demo_throws_aggregate! + + """ + fetch data from the table: "utility_demo_throws" using primary key columns + """ + utility_demo_throws_by_pk(grenade_id: Int!, match_map_demo_id: uuid!): utility_demo_throws + + """ + fetch data from the table in a streaming manner: "utility_demo_throws" + """ + utility_demo_throws_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [utility_demo_throws_stream_cursor_input]! + + """filter the rows returned""" + where: utility_demo_throws_bool_exp + ): [utility_demo_throws!]! + + """ + fetch data from the table: "utility_drift_results" + """ + utility_drift_results( + """distinct select on columns""" + distinct_on: [utility_drift_results_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: [utility_drift_results_order_by!] + + """filter the rows returned""" + where: utility_drift_results_bool_exp + ): [utility_drift_results!]! + + """ + fetch aggregated fields from the table: "utility_drift_results" + """ + utility_drift_results_aggregate( + """distinct select on columns""" + distinct_on: [utility_drift_results_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: [utility_drift_results_order_by!] + + """filter the rows returned""" + where: utility_drift_results_bool_exp + ): utility_drift_results_aggregate! + + """ + fetch data from the table: "utility_drift_results" using primary key columns + """ + utility_drift_results_by_pk(utility_drift_scan_id: uuid!, utility_lineup_id: uuid!): utility_drift_results + + """ + fetch data from the table in a streaming manner: "utility_drift_results" + """ + utility_drift_results_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [utility_drift_results_stream_cursor_input]! + + """filter the rows returned""" + where: utility_drift_results_bool_exp + ): [utility_drift_results!]! + + """ + fetch data from the table: "utility_drift_scans" + """ + utility_drift_scans( + """distinct select on columns""" + distinct_on: [utility_drift_scans_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: [utility_drift_scans_order_by!] + + """filter the rows returned""" + where: utility_drift_scans_bool_exp + ): [utility_drift_scans!]! + + """ + fetch aggregated fields from the table: "utility_drift_scans" + """ + utility_drift_scans_aggregate( + """distinct select on columns""" + distinct_on: [utility_drift_scans_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: [utility_drift_scans_order_by!] + + """filter the rows returned""" + where: utility_drift_scans_bool_exp + ): utility_drift_scans_aggregate! + + """ + fetch data from the table: "utility_drift_scans" using primary key columns + """ + utility_drift_scans_by_pk(id: uuid!): utility_drift_scans + + """ + fetch data from the table in a streaming manner: "utility_drift_scans" + """ + utility_drift_scans_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [utility_drift_scans_stream_cursor_input]! + + """filter the rows returned""" + where: utility_drift_scans_bool_exp + ): [utility_drift_scans!]! + + """ + fetch data from the table: "utility_lineup_favorites" + """ + utility_lineup_favorites( + """distinct select on columns""" + distinct_on: [utility_lineup_favorites_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: [utility_lineup_favorites_order_by!] + + """filter the rows returned""" + where: utility_lineup_favorites_bool_exp + ): [utility_lineup_favorites!]! + + """ + fetch aggregated fields from the table: "utility_lineup_favorites" + """ + utility_lineup_favorites_aggregate( + """distinct select on columns""" + distinct_on: [utility_lineup_favorites_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: [utility_lineup_favorites_order_by!] + + """filter the rows returned""" + where: utility_lineup_favorites_bool_exp + ): utility_lineup_favorites_aggregate! + + """ + fetch data from the table: "utility_lineup_favorites" using primary key columns + """ + utility_lineup_favorites_by_pk(steam_id: bigint!, utility_lineup_id: uuid!): utility_lineup_favorites + + """ + fetch data from the table in a streaming manner: "utility_lineup_favorites" + """ + utility_lineup_favorites_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [utility_lineup_favorites_stream_cursor_input]! + + """filter the rows returned""" + where: utility_lineup_favorites_bool_exp + ): [utility_lineup_favorites!]! + + """ + fetch data from the table: "utility_lineup_progress" + """ + utility_lineup_progress( + """distinct select on columns""" + distinct_on: [utility_lineup_progress_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: [utility_lineup_progress_order_by!] + + """filter the rows returned""" + where: utility_lineup_progress_bool_exp + ): [utility_lineup_progress!]! + + """ + fetch aggregated fields from the table: "utility_lineup_progress" + """ + utility_lineup_progress_aggregate( + """distinct select on columns""" + distinct_on: [utility_lineup_progress_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: [utility_lineup_progress_order_by!] + + """filter the rows returned""" + where: utility_lineup_progress_bool_exp + ): utility_lineup_progress_aggregate! + + """ + fetch data from the table: "utility_lineup_progress" using primary key columns + """ + utility_lineup_progress_by_pk(steam_id: bigint!, utility_lineup_id: uuid!): utility_lineup_progress + + """ + fetch data from the table in a streaming manner: "utility_lineup_progress" + """ + utility_lineup_progress_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [utility_lineup_progress_stream_cursor_input]! + + """filter the rows returned""" + where: utility_lineup_progress_bool_exp + ): [utility_lineup_progress!]! + + """ + fetch data from the table: "utility_lineup_renders" + """ + utility_lineup_renders( + """distinct select on columns""" + distinct_on: [utility_lineup_renders_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: [utility_lineup_renders_order_by!] + + """filter the rows returned""" + where: utility_lineup_renders_bool_exp + ): [utility_lineup_renders!]! + + """ + fetch aggregated fields from the table: "utility_lineup_renders" + """ + utility_lineup_renders_aggregate( + """distinct select on columns""" + distinct_on: [utility_lineup_renders_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: [utility_lineup_renders_order_by!] + + """filter the rows returned""" + where: utility_lineup_renders_bool_exp + ): utility_lineup_renders_aggregate! + + """ + fetch data from the table: "utility_lineup_renders" using primary key columns + """ + utility_lineup_renders_by_pk(id: uuid!): utility_lineup_renders + + """ + fetch data from the table in a streaming manner: "utility_lineup_renders" + """ + utility_lineup_renders_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [utility_lineup_renders_stream_cursor_input]! + + """filter the rows returned""" + where: utility_lineup_renders_bool_exp + ): [utility_lineup_renders!]! + + """ + fetch data from the table: "utility_lineup_repairs" + """ + utility_lineup_repairs( + """distinct select on columns""" + distinct_on: [utility_lineup_repairs_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: [utility_lineup_repairs_order_by!] + + """filter the rows returned""" + where: utility_lineup_repairs_bool_exp + ): [utility_lineup_repairs!]! + + """ + fetch aggregated fields from the table: "utility_lineup_repairs" + """ + utility_lineup_repairs_aggregate( + """distinct select on columns""" + distinct_on: [utility_lineup_repairs_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: [utility_lineup_repairs_order_by!] + + """filter the rows returned""" + where: utility_lineup_repairs_bool_exp + ): utility_lineup_repairs_aggregate! + + """ + fetch data from the table: "utility_lineup_repairs" using primary key columns + """ + utility_lineup_repairs_by_pk(id: uuid!): utility_lineup_repairs + + """ + fetch data from the table in a streaming manner: "utility_lineup_repairs" + """ + utility_lineup_repairs_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [utility_lineup_repairs_stream_cursor_input]! + + """filter the rows returned""" + where: utility_lineup_repairs_bool_exp + ): [utility_lineup_repairs!]! + + """ + fetch data from the table: "utility_lineup_votes" + """ + utility_lineup_votes( + """distinct select on columns""" + distinct_on: [utility_lineup_votes_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: [utility_lineup_votes_order_by!] + + """filter the rows returned""" + where: utility_lineup_votes_bool_exp + ): [utility_lineup_votes!]! + + """ + fetch aggregated fields from the table: "utility_lineup_votes" + """ + utility_lineup_votes_aggregate( + """distinct select on columns""" + distinct_on: [utility_lineup_votes_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: [utility_lineup_votes_order_by!] + + """filter the rows returned""" + where: utility_lineup_votes_bool_exp + ): utility_lineup_votes_aggregate! + + """ + fetch data from the table: "utility_lineup_votes" using primary key columns + """ + utility_lineup_votes_by_pk(steam_id: bigint!, utility_lineup_id: uuid!): utility_lineup_votes + + """ + fetch data from the table in a streaming manner: "utility_lineup_votes" + """ + utility_lineup_votes_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [utility_lineup_votes_stream_cursor_input]! + + """filter the rows returned""" + where: utility_lineup_votes_bool_exp + ): [utility_lineup_votes!]! + + """An array relationship""" + utility_lineups( + """distinct select on columns""" + distinct_on: [utility_lineups_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: [utility_lineups_order_by!] + + """filter the rows returned""" + where: utility_lineups_bool_exp + ): [utility_lineups!]! + + """An aggregate relationship""" + utility_lineups_aggregate( + """distinct select on columns""" + distinct_on: [utility_lineups_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: [utility_lineups_order_by!] + + """filter the rows returned""" + where: utility_lineups_bool_exp + ): utility_lineups_aggregate! + + """fetch data from the table: "utility_lineups" using primary key columns""" + utility_lineups_by_pk(id: uuid!): utility_lineups + + """ + fetch data from the table in a streaming manner: "utility_lineups" + """ + utility_lineups_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [utility_lineups_stream_cursor_input]! + + """filter the rows returned""" + where: utility_lineups_bool_exp + ): [utility_lineups!]! + + """ + fetch data from the table: "utility_meta_lineups" + """ + utility_meta_lineups( + """distinct select on columns""" + distinct_on: [utility_meta_lineups_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: [utility_meta_lineups_order_by!] + + """filter the rows returned""" + where: utility_meta_lineups_bool_exp + ): [utility_meta_lineups!]! + + """ + fetch aggregated fields from the table: "utility_meta_lineups" + """ + utility_meta_lineups_aggregate( + """distinct select on columns""" + distinct_on: [utility_meta_lineups_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: [utility_meta_lineups_order_by!] + + """filter the rows returned""" + where: utility_meta_lineups_bool_exp + ): utility_meta_lineups_aggregate! + + """ + fetch data from the table: "utility_meta_lineups" using primary key columns + """ + utility_meta_lineups_by_pk(lineup_bucket: String!): utility_meta_lineups + + """ + fetch data from the table in a streaming manner: "utility_meta_lineups" + """ + utility_meta_lineups_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [utility_meta_lineups_stream_cursor_input]! + + """filter the rows returned""" + where: utility_meta_lineups_bool_exp + ): [utility_meta_lineups!]! + + """ + fetch data from the table: "utility_playbook_steps" + """ + utility_playbook_steps( + """distinct select on columns""" + distinct_on: [utility_playbook_steps_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: [utility_playbook_steps_order_by!] + + """filter the rows returned""" + where: utility_playbook_steps_bool_exp + ): [utility_playbook_steps!]! + + """ + fetch aggregated fields from the table: "utility_playbook_steps" + """ + utility_playbook_steps_aggregate( + """distinct select on columns""" + distinct_on: [utility_playbook_steps_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: [utility_playbook_steps_order_by!] + + """filter the rows returned""" + where: utility_playbook_steps_bool_exp + ): utility_playbook_steps_aggregate! + + """ + fetch data from the table: "utility_playbook_steps" using primary key columns + """ + utility_playbook_steps_by_pk(id: uuid!): utility_playbook_steps + + """ + fetch data from the table in a streaming manner: "utility_playbook_steps" + """ + utility_playbook_steps_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [utility_playbook_steps_stream_cursor_input]! + + """filter the rows returned""" + where: utility_playbook_steps_bool_exp + ): [utility_playbook_steps!]! + + """ + fetch data from the table: "utility_playbooks" + """ + utility_playbooks( + """distinct select on columns""" + distinct_on: [utility_playbooks_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: [utility_playbooks_order_by!] + + """filter the rows returned""" + where: utility_playbooks_bool_exp + ): [utility_playbooks!]! + + """ + fetch aggregated fields from the table: "utility_playbooks" + """ + utility_playbooks_aggregate( + """distinct select on columns""" + distinct_on: [utility_playbooks_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: [utility_playbooks_order_by!] + + """filter the rows returned""" + where: utility_playbooks_bool_exp + ): utility_playbooks_aggregate! + + """ + fetch data from the table: "utility_playbooks" using primary key columns + """ + utility_playbooks_by_pk(id: uuid!): utility_playbooks + + """ + fetch data from the table in a streaming manner: "utility_playbooks" + """ + utility_playbooks_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [utility_playbooks_stream_cursor_input]! + + """filter the rows returned""" + where: utility_playbooks_bool_exp + ): [utility_playbooks!]! + + """ + fetch data from the table: "utility_practice_invites" + """ + utility_practice_invites( + """distinct select on columns""" + distinct_on: [utility_practice_invites_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: [utility_practice_invites_order_by!] + + """filter the rows returned""" + where: utility_practice_invites_bool_exp + ): [utility_practice_invites!]! + + """ + fetch aggregated fields from the table: "utility_practice_invites" + """ + utility_practice_invites_aggregate( + """distinct select on columns""" + distinct_on: [utility_practice_invites_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: [utility_practice_invites_order_by!] + + """filter the rows returned""" + where: utility_practice_invites_bool_exp + ): utility_practice_invites_aggregate! + + """ + fetch data from the table: "utility_practice_invites" using primary key columns + """ + utility_practice_invites_by_pk(steam_id: bigint!, utility_practice_session_id: uuid!): utility_practice_invites + + """ + fetch data from the table in a streaming manner: "utility_practice_invites" + """ + utility_practice_invites_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [utility_practice_invites_stream_cursor_input]! + + """filter the rows returned""" + where: utility_practice_invites_bool_exp + ): [utility_practice_invites!]! + + """An array relationship""" + utility_practice_sessions( + """distinct select on columns""" + distinct_on: [utility_practice_sessions_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: [utility_practice_sessions_order_by!] + + """filter the rows returned""" + where: utility_practice_sessions_bool_exp + ): [utility_practice_sessions!]! + + """An aggregate relationship""" + utility_practice_sessions_aggregate( + """distinct select on columns""" + distinct_on: [utility_practice_sessions_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: [utility_practice_sessions_order_by!] + + """filter the rows returned""" + where: utility_practice_sessions_bool_exp + ): utility_practice_sessions_aggregate! + + """ + fetch data from the table: "utility_practice_sessions" using primary key columns + """ + utility_practice_sessions_by_pk(id: uuid!): utility_practice_sessions + + """ + fetch data from the table in a streaming manner: "utility_practice_sessions" + """ + utility_practice_sessions_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [utility_practice_sessions_stream_cursor_input]! + + """filter the rows returned""" + where: utility_practice_sessions_bool_exp + ): [utility_practice_sessions!]! + + """ + fetch data from the table: "v_event_player_stats" + """ + v_event_player_stats( + """distinct select on columns""" + distinct_on: [v_event_player_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_event_player_stats_order_by!] + + """filter the rows returned""" + where: v_event_player_stats_bool_exp + ): [v_event_player_stats!]! + + """ + fetch aggregated fields from the table: "v_event_player_stats" + """ + v_event_player_stats_aggregate( + """distinct select on columns""" + distinct_on: [v_event_player_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_event_player_stats_order_by!] + + """filter the rows returned""" + where: v_event_player_stats_bool_exp + ): v_event_player_stats_aggregate! + + """ + fetch data from the table in a streaming manner: "v_event_player_stats" + """ + v_event_player_stats_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [v_event_player_stats_stream_cursor_input]! + + """filter the rows returned""" + where: v_event_player_stats_bool_exp + ): [v_event_player_stats!]! + + """ + fetch data from the table: "v_gpu_pool_status" + """ + v_gpu_pool_status( + """distinct select on columns""" + distinct_on: [v_gpu_pool_status_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_gpu_pool_status_order_by!] + + """filter the rows returned""" + where: v_gpu_pool_status_bool_exp + ): [v_gpu_pool_status!]! + + """ + fetch aggregated fields from the table: "v_gpu_pool_status" + """ + v_gpu_pool_status_aggregate( + """distinct select on columns""" + distinct_on: [v_gpu_pool_status_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_gpu_pool_status_order_by!] + + """filter the rows returned""" + where: v_gpu_pool_status_bool_exp + ): v_gpu_pool_status_aggregate! + + """ + fetch data from the table in a streaming manner: "v_gpu_pool_status" + """ + v_gpu_pool_status_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [v_gpu_pool_status_stream_cursor_input]! + + """filter the rows returned""" + where: v_gpu_pool_status_bool_exp + ): [v_gpu_pool_status!]! + + """ + fetch data from the table: "v_league_division_standings" + """ + v_league_division_standings( + """distinct select on columns""" + distinct_on: [v_league_division_standings_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_league_division_standings_order_by!] + + """filter the rows returned""" + where: v_league_division_standings_bool_exp + ): [v_league_division_standings!]! + + """ + fetch aggregated fields from the table: "v_league_division_standings" + """ + v_league_division_standings_aggregate( + """distinct select on columns""" + distinct_on: [v_league_division_standings_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_league_division_standings_order_by!] + + """filter the rows returned""" + where: v_league_division_standings_bool_exp + ): v_league_division_standings_aggregate! + + """ + fetch data from the table in a streaming manner: "v_league_division_standings" + """ + v_league_division_standings_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [v_league_division_standings_stream_cursor_input]! + + """filter the rows returned""" + where: v_league_division_standings_bool_exp + ): [v_league_division_standings!]! + + """ + fetch data from the table: "v_league_season_player_stats" + """ + v_league_season_player_stats( + """distinct select on columns""" + distinct_on: [v_league_season_player_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_league_season_player_stats_order_by!] + + """filter the rows returned""" + where: v_league_season_player_stats_bool_exp + ): [v_league_season_player_stats!]! + + """ + fetch aggregated fields from the table: "v_league_season_player_stats" + """ + v_league_season_player_stats_aggregate( + """distinct select on columns""" + distinct_on: [v_league_season_player_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_league_season_player_stats_order_by!] + + """filter the rows returned""" + where: v_league_season_player_stats_bool_exp + ): v_league_season_player_stats_aggregate! + + """ + fetch data from the table in a streaming manner: "v_league_season_player_stats" + """ + v_league_season_player_stats_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [v_league_season_player_stats_stream_cursor_input]! + + """filter the rows returned""" + where: v_league_season_player_stats_bool_exp + ): [v_league_season_player_stats!]! + + """ + fetch data from the table: "v_match_captains" + """ + v_match_captains( + """distinct select on columns""" + distinct_on: [v_match_captains_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_match_captains_order_by!] + + """filter the rows returned""" + where: v_match_captains_bool_exp + ): [v_match_captains!]! + + """ + fetch aggregated fields from the table: "v_match_captains" + """ + v_match_captains_aggregate( + """distinct select on columns""" + distinct_on: [v_match_captains_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_match_captains_order_by!] + + """filter the rows returned""" + where: v_match_captains_bool_exp + ): v_match_captains_aggregate! + + """ + fetch data from the table in a streaming manner: "v_match_captains" + """ + v_match_captains_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [v_match_captains_stream_cursor_input]! + + """filter the rows returned""" + where: v_match_captains_bool_exp + ): [v_match_captains!]! + + """ + fetch data from the table: "v_match_clutches" + """ + v_match_clutches( + """distinct select on columns""" + distinct_on: [v_match_clutches_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_match_clutches_order_by!] + + """filter the rows returned""" + where: v_match_clutches_bool_exp + ): [v_match_clutches!]! + + """ + fetch aggregated fields from the table: "v_match_clutches" + """ + v_match_clutches_aggregate( + """distinct select on columns""" + distinct_on: [v_match_clutches_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_match_clutches_order_by!] + + """filter the rows returned""" + where: v_match_clutches_bool_exp + ): v_match_clutches_aggregate! + + """ + fetch data from the table in a streaming manner: "v_match_clutches" + """ + v_match_clutches_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [v_match_clutches_stream_cursor_input]! + + """filter the rows returned""" + where: v_match_clutches_bool_exp + ): [v_match_clutches!]! + + """ + fetch data from the table: "v_match_kill_pairs" + """ + v_match_kill_pairs( + """distinct select on columns""" + distinct_on: [v_match_kill_pairs_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_match_kill_pairs_order_by!] + + """filter the rows returned""" + where: v_match_kill_pairs_bool_exp + ): [v_match_kill_pairs!]! + + """ + fetch aggregated fields from the table: "v_match_kill_pairs" + """ + v_match_kill_pairs_aggregate( + """distinct select on columns""" + distinct_on: [v_match_kill_pairs_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_match_kill_pairs_order_by!] + + """filter the rows returned""" + where: v_match_kill_pairs_bool_exp + ): v_match_kill_pairs_aggregate! + + """ + fetch data from the table in a streaming manner: "v_match_kill_pairs" + """ + v_match_kill_pairs_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [v_match_kill_pairs_stream_cursor_input]! + + """filter the rows returned""" + where: v_match_kill_pairs_bool_exp + ): [v_match_kill_pairs!]! + + """ + fetch data from the table: "v_match_lineup_buy_types" + """ + v_match_lineup_buy_types( + """distinct select on columns""" + distinct_on: [v_match_lineup_buy_types_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_match_lineup_buy_types_order_by!] + + """filter the rows returned""" + where: v_match_lineup_buy_types_bool_exp + ): [v_match_lineup_buy_types!]! + + """ + fetch aggregated fields from the table: "v_match_lineup_buy_types" + """ + v_match_lineup_buy_types_aggregate( + """distinct select on columns""" + distinct_on: [v_match_lineup_buy_types_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_match_lineup_buy_types_order_by!] + + """filter the rows returned""" + where: v_match_lineup_buy_types_bool_exp + ): v_match_lineup_buy_types_aggregate! + + """ + fetch data from the table in a streaming manner: "v_match_lineup_buy_types" + """ + v_match_lineup_buy_types_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [v_match_lineup_buy_types_stream_cursor_input]! + + """filter the rows returned""" + where: v_match_lineup_buy_types_bool_exp + ): [v_match_lineup_buy_types!]! + + """ + fetch data from the table: "v_match_lineup_map_stats" + """ + v_match_lineup_map_stats( + """distinct select on columns""" + distinct_on: [v_match_lineup_map_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_match_lineup_map_stats_order_by!] + + """filter the rows returned""" + where: v_match_lineup_map_stats_bool_exp + ): [v_match_lineup_map_stats!]! + + """ + fetch aggregated fields from the table: "v_match_lineup_map_stats" + """ + v_match_lineup_map_stats_aggregate( + """distinct select on columns""" + distinct_on: [v_match_lineup_map_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_match_lineup_map_stats_order_by!] + + """filter the rows returned""" + where: v_match_lineup_map_stats_bool_exp + ): v_match_lineup_map_stats_aggregate! + + """ + fetch data from the table in a streaming manner: "v_match_lineup_map_stats" + """ + v_match_lineup_map_stats_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [v_match_lineup_map_stats_stream_cursor_input]! + + """filter the rows returned""" + where: v_match_lineup_map_stats_bool_exp + ): [v_match_lineup_map_stats!]! + + """ + fetch data from the table: "v_match_map_backup_rounds" + """ + v_match_map_backup_rounds( + """distinct select on columns""" + distinct_on: [v_match_map_backup_rounds_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_match_map_backup_rounds_order_by!] + + """filter the rows returned""" + where: v_match_map_backup_rounds_bool_exp + ): [v_match_map_backup_rounds!]! + + """ + fetch aggregated fields from the table: "v_match_map_backup_rounds" + """ + v_match_map_backup_rounds_aggregate( + """distinct select on columns""" + distinct_on: [v_match_map_backup_rounds_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_match_map_backup_rounds_order_by!] + + """filter the rows returned""" + where: v_match_map_backup_rounds_bool_exp + ): v_match_map_backup_rounds_aggregate! + + """ + fetch data from the table in a streaming manner: "v_match_map_backup_rounds" + """ + v_match_map_backup_rounds_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [v_match_map_backup_rounds_stream_cursor_input]! + + """filter the rows returned""" + where: v_match_map_backup_rounds_bool_exp + ): [v_match_map_backup_rounds!]! + + """ + fetch data from the table: "v_match_player_buy_types" + """ + v_match_player_buy_types( + """distinct select on columns""" + distinct_on: [v_match_player_buy_types_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_match_player_buy_types_order_by!] + + """filter the rows returned""" + where: v_match_player_buy_types_bool_exp + ): [v_match_player_buy_types!]! + + """ + fetch aggregated fields from the table: "v_match_player_buy_types" + """ + v_match_player_buy_types_aggregate( + """distinct select on columns""" + distinct_on: [v_match_player_buy_types_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_match_player_buy_types_order_by!] + + """filter the rows returned""" + where: v_match_player_buy_types_bool_exp + ): v_match_player_buy_types_aggregate! + + """ + fetch data from the table in a streaming manner: "v_match_player_buy_types" + """ + v_match_player_buy_types_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [v_match_player_buy_types_stream_cursor_input]! + + """filter the rows returned""" + where: v_match_player_buy_types_bool_exp + ): [v_match_player_buy_types!]! + + """ + fetch data from the table: "v_match_player_opening_duels" + """ + v_match_player_opening_duels( + """distinct select on columns""" + distinct_on: [v_match_player_opening_duels_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_match_player_opening_duels_order_by!] + + """filter the rows returned""" + where: v_match_player_opening_duels_bool_exp + ): [v_match_player_opening_duels!]! + + """ + fetch aggregated fields from the table: "v_match_player_opening_duels" + """ + v_match_player_opening_duels_aggregate( + """distinct select on columns""" + distinct_on: [v_match_player_opening_duels_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_match_player_opening_duels_order_by!] + + """filter the rows returned""" + where: v_match_player_opening_duels_bool_exp + ): v_match_player_opening_duels_aggregate! + + """ + fetch data from the table in a streaming manner: "v_match_player_opening_duels" + """ + v_match_player_opening_duels_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [v_match_player_opening_duels_stream_cursor_input]! + + """filter the rows returned""" + where: v_match_player_opening_duels_bool_exp + ): [v_match_player_opening_duels!]! + + """ + fetch data from the table: "v_player_arch_nemesis" + """ + v_player_arch_nemesis( + """distinct select on columns""" + distinct_on: [v_player_arch_nemesis_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_arch_nemesis_order_by!] + + """filter the rows returned""" + where: v_player_arch_nemesis_bool_exp + ): [v_player_arch_nemesis!]! + + """ + fetch aggregated fields from the table: "v_player_arch_nemesis" + """ + v_player_arch_nemesis_aggregate( + """distinct select on columns""" + distinct_on: [v_player_arch_nemesis_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_arch_nemesis_order_by!] + + """filter the rows returned""" + where: v_player_arch_nemesis_bool_exp + ): v_player_arch_nemesis_aggregate! + + """ + fetch data from the table in a streaming manner: "v_player_arch_nemesis" + """ + v_player_arch_nemesis_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [v_player_arch_nemesis_stream_cursor_input]! + + """filter the rows returned""" + where: v_player_arch_nemesis_bool_exp + ): [v_player_arch_nemesis!]! + + """ + fetch data from the table: "v_player_damage" + """ + v_player_damage( + """distinct select on columns""" + distinct_on: [v_player_damage_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_damage_order_by!] + + """filter the rows returned""" + where: v_player_damage_bool_exp + ): [v_player_damage!]! + + """ + fetch aggregated fields from the table: "v_player_damage" + """ + v_player_damage_aggregate( + """distinct select on columns""" + distinct_on: [v_player_damage_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_damage_order_by!] + + """filter the rows returned""" + where: v_player_damage_bool_exp + ): v_player_damage_aggregate! + + """ + fetch data from the table in a streaming manner: "v_player_damage" + """ + v_player_damage_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [v_player_damage_stream_cursor_input]! + + """filter the rows returned""" + where: v_player_damage_bool_exp + ): [v_player_damage!]! + + """ + fetch data from the table: "v_player_elo" + """ + v_player_elo( + """distinct select on columns""" + distinct_on: [v_player_elo_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_elo_order_by!] + + """filter the rows returned""" + where: v_player_elo_bool_exp + ): [v_player_elo!]! + + """ + fetch aggregated fields from the table: "v_player_elo" + """ + v_player_elo_aggregate( + """distinct select on columns""" + distinct_on: [v_player_elo_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_elo_order_by!] + + """filter the rows returned""" + where: v_player_elo_bool_exp + ): v_player_elo_aggregate! + + """ + fetch data from the table in a streaming manner: "v_player_elo" + """ + v_player_elo_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [v_player_elo_stream_cursor_input]! + + """filter the rows returned""" + where: v_player_elo_bool_exp + ): [v_player_elo!]! + + """ + fetch data from the table: "v_player_map_losses" + """ + v_player_map_losses( + """distinct select on columns""" + distinct_on: [v_player_map_losses_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_map_losses_order_by!] + + """filter the rows returned""" + where: v_player_map_losses_bool_exp + ): [v_player_map_losses!]! + + """ + fetch aggregated fields from the table: "v_player_map_losses" + """ + v_player_map_losses_aggregate( + """distinct select on columns""" + distinct_on: [v_player_map_losses_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_map_losses_order_by!] + + """filter the rows returned""" + where: v_player_map_losses_bool_exp + ): v_player_map_losses_aggregate! + + """ + fetch data from the table in a streaming manner: "v_player_map_losses" + """ + v_player_map_losses_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [v_player_map_losses_stream_cursor_input]! + + """filter the rows returned""" + where: v_player_map_losses_bool_exp + ): [v_player_map_losses!]! + + """ + fetch data from the table: "v_player_map_wins" + """ + v_player_map_wins( + """distinct select on columns""" + distinct_on: [v_player_map_wins_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_map_wins_order_by!] + + """filter the rows returned""" + where: v_player_map_wins_bool_exp + ): [v_player_map_wins!]! + + """ + fetch aggregated fields from the table: "v_player_map_wins" + """ + v_player_map_wins_aggregate( + """distinct select on columns""" + distinct_on: [v_player_map_wins_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_map_wins_order_by!] + + """filter the rows returned""" + where: v_player_map_wins_bool_exp + ): v_player_map_wins_aggregate! + + """ + fetch data from the table in a streaming manner: "v_player_map_wins" + """ + v_player_map_wins_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [v_player_map_wins_stream_cursor_input]! + + """filter the rows returned""" + where: v_player_map_wins_bool_exp + ): [v_player_map_wins!]! + + """ + fetch data from the table: "v_player_match_head_to_head" + """ + v_player_match_head_to_head( + """distinct select on columns""" + distinct_on: [v_player_match_head_to_head_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_match_head_to_head_order_by!] + + """filter the rows returned""" + where: v_player_match_head_to_head_bool_exp + ): [v_player_match_head_to_head!]! + + """ + fetch aggregated fields from the table: "v_player_match_head_to_head" + """ + v_player_match_head_to_head_aggregate( + """distinct select on columns""" + distinct_on: [v_player_match_head_to_head_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_match_head_to_head_order_by!] + + """filter the rows returned""" + where: v_player_match_head_to_head_bool_exp + ): v_player_match_head_to_head_aggregate! + + """ + fetch data from the table in a streaming manner: "v_player_match_head_to_head" + """ + v_player_match_head_to_head_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [v_player_match_head_to_head_stream_cursor_input]! + + """filter the rows returned""" + where: v_player_match_head_to_head_bool_exp + ): [v_player_match_head_to_head!]! + + """ + fetch data from the table: "v_player_match_map_hltv" + """ + v_player_match_map_hltv( + """distinct select on columns""" + distinct_on: [v_player_match_map_hltv_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_match_map_hltv_order_by!] + + """filter the rows returned""" + where: v_player_match_map_hltv_bool_exp + ): [v_player_match_map_hltv!]! + + """ + fetch aggregated fields from the table: "v_player_match_map_hltv" + """ + v_player_match_map_hltv_aggregate( + """distinct select on columns""" + distinct_on: [v_player_match_map_hltv_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_match_map_hltv_order_by!] + + """filter the rows returned""" + where: v_player_match_map_hltv_bool_exp + ): v_player_match_map_hltv_aggregate! + + """ + fetch data from the table in a streaming manner: "v_player_match_map_hltv" + """ + v_player_match_map_hltv_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [v_player_match_map_hltv_stream_cursor_input]! + + """filter the rows returned""" + where: v_player_match_map_hltv_bool_exp + ): [v_player_match_map_hltv!]! + + """ + fetch data from the table: "v_player_match_map_roles" + """ + v_player_match_map_roles( + """distinct select on columns""" + distinct_on: [v_player_match_map_roles_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_match_map_roles_order_by!] + + """filter the rows returned""" + where: v_player_match_map_roles_bool_exp + ): [v_player_match_map_roles!]! + + """ + fetch aggregated fields from the table: "v_player_match_map_roles" + """ + v_player_match_map_roles_aggregate( + """distinct select on columns""" + distinct_on: [v_player_match_map_roles_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_match_map_roles_order_by!] + + """filter the rows returned""" + where: v_player_match_map_roles_bool_exp + ): v_player_match_map_roles_aggregate! + + """ + fetch data from the table in a streaming manner: "v_player_match_map_roles" + """ + v_player_match_map_roles_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [v_player_match_map_roles_stream_cursor_input]! + + """filter the rows returned""" + where: v_player_match_map_roles_bool_exp + ): [v_player_match_map_roles!]! + + """ + fetch data from the table: "v_player_match_performance" + """ + v_player_match_performance( + """distinct select on columns""" + distinct_on: [v_player_match_performance_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_match_performance_order_by!] + + """filter the rows returned""" + where: v_player_match_performance_bool_exp + ): [v_player_match_performance!]! + + """ + fetch aggregated fields from the table: "v_player_match_performance" + """ + v_player_match_performance_aggregate( + """distinct select on columns""" + distinct_on: [v_player_match_performance_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_match_performance_order_by!] + + """filter the rows returned""" + where: v_player_match_performance_bool_exp + ): v_player_match_performance_aggregate! + + """ + fetch data from the table in a streaming manner: "v_player_match_performance" + """ + v_player_match_performance_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [v_player_match_performance_stream_cursor_input]! + + """filter the rows returned""" + where: v_player_match_performance_bool_exp + ): [v_player_match_performance!]! + + """ + fetch data from the table: "v_player_match_rating" + """ + v_player_match_rating( + """distinct select on columns""" + distinct_on: [v_player_match_rating_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_match_rating_order_by!] + + """filter the rows returned""" + where: v_player_match_rating_bool_exp + ): [v_player_match_rating!]! + + """ + fetch aggregated fields from the table: "v_player_match_rating" + """ + v_player_match_rating_aggregate( + """distinct select on columns""" + distinct_on: [v_player_match_rating_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_match_rating_order_by!] + + """filter the rows returned""" + where: v_player_match_rating_bool_exp + ): v_player_match_rating_aggregate! + + """ + fetch data from the table in a streaming manner: "v_player_match_rating" + """ + v_player_match_rating_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [v_player_match_rating_stream_cursor_input]! + + """filter the rows returned""" + where: v_player_match_rating_bool_exp + ): [v_player_match_rating!]! + + """ + fetch data from the table: "v_player_multi_kills" + """ + v_player_multi_kills( + """distinct select on columns""" + distinct_on: [v_player_multi_kills_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_multi_kills_order_by!] + + """filter the rows returned""" + where: v_player_multi_kills_bool_exp + ): [v_player_multi_kills!]! + + """ + fetch aggregated fields from the table: "v_player_multi_kills" + """ + v_player_multi_kills_aggregate( + """distinct select on columns""" + distinct_on: [v_player_multi_kills_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_multi_kills_order_by!] + + """filter the rows returned""" + where: v_player_multi_kills_bool_exp + ): v_player_multi_kills_aggregate! + + """ + fetch data from the table in a streaming manner: "v_player_multi_kills" + """ + v_player_multi_kills_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [v_player_multi_kills_stream_cursor_input]! + + """filter the rows returned""" + where: v_player_multi_kills_bool_exp + ): [v_player_multi_kills!]! + + """ + fetch data from the table: "v_player_queue_partners" + """ + v_player_queue_partners( + """distinct select on columns""" + distinct_on: [v_player_queue_partners_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_queue_partners_order_by!] + + """filter the rows returned""" + where: v_player_queue_partners_bool_exp + ): [v_player_queue_partners!]! + + """ + fetch aggregated fields from the table: "v_player_queue_partners" + """ + v_player_queue_partners_aggregate( + """distinct select on columns""" + distinct_on: [v_player_queue_partners_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_queue_partners_order_by!] + + """filter the rows returned""" + where: v_player_queue_partners_bool_exp + ): v_player_queue_partners_aggregate! + + """ + fetch data from the table in a streaming manner: "v_player_queue_partners" + """ + v_player_queue_partners_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [v_player_queue_partners_stream_cursor_input]! + + """filter the rows returned""" + where: v_player_queue_partners_bool_exp + ): [v_player_queue_partners!]! + + """ + fetch data from the table: "v_player_weapon_damage" + """ + v_player_weapon_damage( + """distinct select on columns""" + distinct_on: [v_player_weapon_damage_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_weapon_damage_order_by!] + + """filter the rows returned""" + where: v_player_weapon_damage_bool_exp + ): [v_player_weapon_damage!]! + + """ + fetch aggregated fields from the table: "v_player_weapon_damage" + """ + v_player_weapon_damage_aggregate( + """distinct select on columns""" + distinct_on: [v_player_weapon_damage_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_weapon_damage_order_by!] + + """filter the rows returned""" + where: v_player_weapon_damage_bool_exp + ): v_player_weapon_damage_aggregate! + + """ + fetch data from the table in a streaming manner: "v_player_weapon_damage" + """ + v_player_weapon_damage_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [v_player_weapon_damage_stream_cursor_input]! + + """filter the rows returned""" + where: v_player_weapon_damage_bool_exp + ): [v_player_weapon_damage!]! + + """ + fetch data from the table: "v_player_weapon_kills" + """ + v_player_weapon_kills( + """distinct select on columns""" + distinct_on: [v_player_weapon_kills_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_weapon_kills_order_by!] + + """filter the rows returned""" + where: v_player_weapon_kills_bool_exp + ): [v_player_weapon_kills!]! + + """ + fetch aggregated fields from the table: "v_player_weapon_kills" + """ + v_player_weapon_kills_aggregate( + """distinct select on columns""" + distinct_on: [v_player_weapon_kills_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_player_weapon_kills_order_by!] + + """filter the rows returned""" + where: v_player_weapon_kills_bool_exp + ): v_player_weapon_kills_aggregate! + + """ + fetch data from the table in a streaming manner: "v_player_weapon_kills" + """ + v_player_weapon_kills_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [v_player_weapon_kills_stream_cursor_input]! + + """filter the rows returned""" + where: v_player_weapon_kills_bool_exp + ): [v_player_weapon_kills!]! + + """ + fetch data from the table: "v_pool_maps" + """ + v_pool_maps( + """distinct select on columns""" + distinct_on: [v_pool_maps_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_pool_maps_order_by!] + + """filter the rows returned""" + where: v_pool_maps_bool_exp + ): [v_pool_maps!]! + + """ + fetch aggregated fields from the table: "v_pool_maps" + """ + v_pool_maps_aggregate( + """distinct select on columns""" + distinct_on: [v_pool_maps_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_pool_maps_order_by!] + + """filter the rows returned""" + where: v_pool_maps_bool_exp + ): v_pool_maps_aggregate! + + """ + fetch data from the table in a streaming manner: "v_pool_maps" + """ + v_pool_maps_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [v_pool_maps_stream_cursor_input]! + + """filter the rows returned""" + where: v_pool_maps_bool_exp + ): [v_pool_maps!]! + + """ + fetch data from the table: "v_steam_account_pool_status" + """ + v_steam_account_pool_status( + """distinct select on columns""" + distinct_on: [v_steam_account_pool_status_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_steam_account_pool_status_order_by!] + + """filter the rows returned""" + where: v_steam_account_pool_status_bool_exp + ): [v_steam_account_pool_status!]! + + """ + fetch aggregated fields from the table: "v_steam_account_pool_status" + """ + v_steam_account_pool_status_aggregate( + """distinct select on columns""" + distinct_on: [v_steam_account_pool_status_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_steam_account_pool_status_order_by!] + + """filter the rows returned""" + where: v_steam_account_pool_status_bool_exp + ): v_steam_account_pool_status_aggregate! + + """ + fetch data from the table in a streaming manner: "v_steam_account_pool_status" + """ + v_steam_account_pool_status_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [v_steam_account_pool_status_stream_cursor_input]! + + """filter the rows returned""" + where: v_steam_account_pool_status_bool_exp + ): [v_steam_account_pool_status!]! + + """ + fetch data from the table: "v_team_ranks" + """ + v_team_ranks( + """distinct select on columns""" + distinct_on: [v_team_ranks_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_team_ranks_order_by!] + + """filter the rows returned""" + where: v_team_ranks_bool_exp + ): [v_team_ranks!]! + + """ + fetch aggregated fields from the table: "v_team_ranks" + """ + v_team_ranks_aggregate( + """distinct select on columns""" + distinct_on: [v_team_ranks_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_team_ranks_order_by!] + + """filter the rows returned""" + where: v_team_ranks_bool_exp + ): v_team_ranks_aggregate! + + """ + fetch data from the table in a streaming manner: "v_team_ranks" + """ + v_team_ranks_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [v_team_ranks_stream_cursor_input]! + + """filter the rows returned""" + where: v_team_ranks_bool_exp + ): [v_team_ranks!]! + + """ + fetch data from the table: "v_team_reputation" + """ + v_team_reputation( + """distinct select on columns""" + distinct_on: [v_team_reputation_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_team_reputation_order_by!] + + """filter the rows returned""" + where: v_team_reputation_bool_exp + ): [v_team_reputation!]! + + """ + fetch aggregated fields from the table: "v_team_reputation" + """ + v_team_reputation_aggregate( + """distinct select on columns""" + distinct_on: [v_team_reputation_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_team_reputation_order_by!] + + """filter the rows returned""" + where: v_team_reputation_bool_exp + ): v_team_reputation_aggregate! + + """ + fetch data from the table in a streaming manner: "v_team_reputation" + """ + v_team_reputation_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [v_team_reputation_stream_cursor_input]! + + """filter the rows returned""" + where: v_team_reputation_bool_exp + ): [v_team_reputation!]! + + """ + fetch data from the table: "v_team_stage_results" + """ + v_team_stage_results( + """distinct select on columns""" + distinct_on: [v_team_stage_results_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_team_stage_results_order_by!] + + """filter the rows returned""" + where: v_team_stage_results_bool_exp + ): [v_team_stage_results!]! + + """ + fetch aggregated fields from the table: "v_team_stage_results" + """ + v_team_stage_results_aggregate( + """distinct select on columns""" + distinct_on: [v_team_stage_results_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_team_stage_results_order_by!] + + """filter the rows returned""" + where: v_team_stage_results_bool_exp + ): v_team_stage_results_aggregate! + + """ + fetch data from the table: "v_team_stage_results" using primary key columns + """ + v_team_stage_results_by_pk(tournament_stage_id: uuid!, tournament_team_id: uuid!): v_team_stage_results + + """ + fetch data from the table in a streaming manner: "v_team_stage_results" + """ + v_team_stage_results_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [v_team_stage_results_stream_cursor_input]! + + """filter the rows returned""" + where: v_team_stage_results_bool_exp + ): [v_team_stage_results!]! + + """ + fetch data from the table: "v_team_tournament_results" + """ + v_team_tournament_results( + """distinct select on columns""" + distinct_on: [v_team_tournament_results_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_team_tournament_results_order_by!] + + """filter the rows returned""" + where: v_team_tournament_results_bool_exp + ): [v_team_tournament_results!]! + + """ + fetch aggregated fields from the table: "v_team_tournament_results" + """ + v_team_tournament_results_aggregate( + """distinct select on columns""" + distinct_on: [v_team_tournament_results_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_team_tournament_results_order_by!] + + """filter the rows returned""" + where: v_team_tournament_results_bool_exp + ): v_team_tournament_results_aggregate! + + """ + fetch data from the table in a streaming manner: "v_team_tournament_results" + """ + v_team_tournament_results_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [v_team_tournament_results_stream_cursor_input]! + + """filter the rows returned""" + where: v_team_tournament_results_bool_exp + ): [v_team_tournament_results!]! + + """ + fetch data from the table: "v_tournament_player_stats" + """ + v_tournament_player_stats( + """distinct select on columns""" + distinct_on: [v_tournament_player_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_tournament_player_stats_order_by!] + + """filter the rows returned""" + where: v_tournament_player_stats_bool_exp + ): [v_tournament_player_stats!]! + + """ + fetch aggregated fields from the table: "v_tournament_player_stats" + """ + v_tournament_player_stats_aggregate( + """distinct select on columns""" + distinct_on: [v_tournament_player_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_tournament_player_stats_order_by!] + + """filter the rows returned""" + where: v_tournament_player_stats_bool_exp + ): v_tournament_player_stats_aggregate! + + """ + fetch data from the table in a streaming manner: "v_tournament_player_stats" + """ + v_tournament_player_stats_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [v_tournament_player_stats_stream_cursor_input]! + + """filter the rows returned""" + where: v_tournament_player_stats_bool_exp + ): [v_tournament_player_stats!]! +} + +""" +columns and relationships of "system_alerts" +""" +type system_alerts { + created_at: timestamptz! + created_by: bigint + dismissible: Boolean! + expires_at: timestamptz + id: uuid! + is_active: Boolean! + message: String! + title: String + type: e_system_alert_types_enum! + updated_at: timestamptz! +} + +""" +aggregated selection of "system_alerts" +""" +type system_alerts_aggregate { + aggregate: system_alerts_aggregate_fields + nodes: [system_alerts!]! +} + +""" +aggregate fields of "system_alerts" +""" +type system_alerts_aggregate_fields { + avg: system_alerts_avg_fields + count(columns: [system_alerts_select_column!], distinct: Boolean): Int! + max: system_alerts_max_fields + min: system_alerts_min_fields + stddev: system_alerts_stddev_fields + stddev_pop: system_alerts_stddev_pop_fields + stddev_samp: system_alerts_stddev_samp_fields + sum: system_alerts_sum_fields + var_pop: system_alerts_var_pop_fields + var_samp: system_alerts_var_samp_fields + variance: system_alerts_variance_fields +} + +"""aggregate avg on columns""" +type system_alerts_avg_fields { + created_by: Float +} + +""" +Boolean expression to filter rows from the table "system_alerts". All fields are combined with a logical 'AND'. +""" +input system_alerts_bool_exp { + _and: [system_alerts_bool_exp!] + _not: system_alerts_bool_exp + _or: [system_alerts_bool_exp!] + created_at: timestamptz_comparison_exp + created_by: bigint_comparison_exp + dismissible: Boolean_comparison_exp + expires_at: timestamptz_comparison_exp + id: uuid_comparison_exp + is_active: Boolean_comparison_exp + message: String_comparison_exp + title: String_comparison_exp + type: e_system_alert_types_enum_comparison_exp + updated_at: timestamptz_comparison_exp +} + +""" +unique or primary key constraints on table "system_alerts" +""" +enum system_alerts_constraint { + """ + unique or primary key constraint on columns "id" + """ + system_alerts_pkey +} + +""" +input type for incrementing numeric columns in table "system_alerts" +""" +input system_alerts_inc_input { + created_by: bigint +} + +""" +input type for inserting data into table "system_alerts" +""" +input system_alerts_insert_input { + created_at: timestamptz + created_by: bigint + dismissible: Boolean + expires_at: timestamptz + id: uuid + is_active: Boolean + message: String + title: String + type: e_system_alert_types_enum + updated_at: timestamptz +} + +"""aggregate max on columns""" +type system_alerts_max_fields { + created_at: timestamptz + created_by: bigint + expires_at: timestamptz + id: uuid + message: String + title: String + updated_at: timestamptz +} + +"""aggregate min on columns""" +type system_alerts_min_fields { + created_at: timestamptz + created_by: bigint + expires_at: timestamptz + id: uuid + message: String + title: String + updated_at: timestamptz +} + +""" +response of any mutation on the table "system_alerts" +""" +type system_alerts_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [system_alerts!]! +} + +""" +on_conflict condition type for table "system_alerts" +""" +input system_alerts_on_conflict { + constraint: system_alerts_constraint! + update_columns: [system_alerts_update_column!]! = [] + where: system_alerts_bool_exp +} + +"""Ordering options when selecting data from "system_alerts".""" +input system_alerts_order_by { + created_at: order_by + created_by: order_by + dismissible: order_by + expires_at: order_by + id: order_by + is_active: order_by + message: order_by + title: order_by + type: order_by + updated_at: order_by +} + +"""primary key columns input for table: system_alerts""" +input system_alerts_pk_columns_input { + id: uuid! +} + +""" +select columns of table "system_alerts" +""" +enum system_alerts_select_column { + """column name""" + created_at + + """column name""" + created_by + + """column name""" + dismissible + + """column name""" + expires_at + + """column name""" + id + + """column name""" + is_active + + """column name""" + message + + """column name""" + title + + """column name""" + type + + """column name""" + updated_at +} + +""" +input type for updating data in table "system_alerts" +""" +input system_alerts_set_input { + created_at: timestamptz + created_by: bigint + dismissible: Boolean + expires_at: timestamptz + id: uuid + is_active: Boolean + message: String + title: String + type: e_system_alert_types_enum + updated_at: timestamptz +} + +"""aggregate stddev on columns""" +type system_alerts_stddev_fields { + created_by: Float +} + +"""aggregate stddev_pop on columns""" +type system_alerts_stddev_pop_fields { + created_by: Float +} + +"""aggregate stddev_samp on columns""" +type system_alerts_stddev_samp_fields { + created_by: Float +} + +""" +Streaming cursor of the table "system_alerts" +""" +input system_alerts_stream_cursor_input { + """Stream column input with initial value""" + initial_value: system_alerts_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input system_alerts_stream_cursor_value_input { + created_at: timestamptz + created_by: bigint + dismissible: Boolean + expires_at: timestamptz + id: uuid + is_active: Boolean + message: String + title: String + type: e_system_alert_types_enum + updated_at: timestamptz +} + +"""aggregate sum on columns""" +type system_alerts_sum_fields { + created_by: bigint +} + +""" +update columns of table "system_alerts" +""" +enum system_alerts_update_column { + """column name""" + created_at + + """column name""" + created_by + + """column name""" + dismissible + + """column name""" + expires_at + + """column name""" + id + + """column name""" + is_active + + """column name""" + message + + """column name""" + title + + """column name""" + type + + """column name""" + updated_at +} + +input system_alerts_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: system_alerts_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: system_alerts_set_input + + """filter the rows which have to be updated""" + where: system_alerts_bool_exp! +} + +"""aggregate var_pop on columns""" +type system_alerts_var_pop_fields { + created_by: Float +} + +"""aggregate var_samp on columns""" +type system_alerts_var_samp_fields { + created_by: Float +} + +"""aggregate variance on columns""" +type system_alerts_variance_fields { + created_by: Float +} + +""" +columns and relationships of "team_invites" +""" +type team_invites { + created_at: timestamptz! + id: uuid! + + """An object relationship""" + invited_by: players! + invited_by_player_steam_id: bigint! + + """An object relationship""" + player: players! + steam_id: bigint! + + """An object relationship""" + team: teams! + team_id: uuid! +} + +""" +aggregated selection of "team_invites" +""" +type team_invites_aggregate { + aggregate: team_invites_aggregate_fields + nodes: [team_invites!]! +} + +input team_invites_aggregate_bool_exp { + count: team_invites_aggregate_bool_exp_count +} + +input team_invites_aggregate_bool_exp_count { + arguments: [team_invites_select_column!] + distinct: Boolean + filter: team_invites_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "team_invites" +""" +type team_invites_aggregate_fields { + avg: team_invites_avg_fields + count(columns: [team_invites_select_column!], distinct: Boolean): Int! + max: team_invites_max_fields + min: team_invites_min_fields + stddev: team_invites_stddev_fields + stddev_pop: team_invites_stddev_pop_fields + stddev_samp: team_invites_stddev_samp_fields + sum: team_invites_sum_fields + var_pop: team_invites_var_pop_fields + var_samp: team_invites_var_samp_fields + variance: team_invites_variance_fields +} + +""" +order by aggregate values of table "team_invites" +""" +input team_invites_aggregate_order_by { + avg: team_invites_avg_order_by + count: order_by + max: team_invites_max_order_by + min: team_invites_min_order_by + stddev: team_invites_stddev_order_by + stddev_pop: team_invites_stddev_pop_order_by + stddev_samp: team_invites_stddev_samp_order_by + sum: team_invites_sum_order_by + var_pop: team_invites_var_pop_order_by + var_samp: team_invites_var_samp_order_by + variance: team_invites_variance_order_by +} + +""" +input type for inserting array relation for remote table "team_invites" +""" +input team_invites_arr_rel_insert_input { + data: [team_invites_insert_input!]! + + """upsert condition""" + on_conflict: team_invites_on_conflict +} + +"""aggregate avg on columns""" +type team_invites_avg_fields { + invited_by_player_steam_id: Float + steam_id: Float +} + +""" +order by avg() on columns of table "team_invites" +""" +input team_invites_avg_order_by { + invited_by_player_steam_id: order_by + steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "team_invites". All fields are combined with a logical 'AND'. +""" +input team_invites_bool_exp { + _and: [team_invites_bool_exp!] + _not: team_invites_bool_exp + _or: [team_invites_bool_exp!] + created_at: timestamptz_comparison_exp + id: uuid_comparison_exp + invited_by: players_bool_exp + invited_by_player_steam_id: bigint_comparison_exp + player: players_bool_exp + steam_id: bigint_comparison_exp + team: teams_bool_exp + team_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "team_invites" +""" +enum team_invites_constraint { + """ + unique or primary key constraint on columns "id" + """ + team_invites_pkey + + """ + unique or primary key constraint on columns "steam_id", "team_id" + """ + team_invites_team_id_steam_id_key +} + +""" +input type for incrementing numeric columns in table "team_invites" +""" +input team_invites_inc_input { + invited_by_player_steam_id: bigint + steam_id: bigint +} + +""" +input type for inserting data into table "team_invites" +""" +input team_invites_insert_input { + created_at: timestamptz + id: uuid + invited_by: players_obj_rel_insert_input + invited_by_player_steam_id: bigint + player: players_obj_rel_insert_input + steam_id: bigint + team: teams_obj_rel_insert_input + team_id: uuid +} + +"""aggregate max on columns""" +type team_invites_max_fields { + created_at: timestamptz + id: uuid + invited_by_player_steam_id: bigint + steam_id: bigint + team_id: uuid +} + +""" +order by max() on columns of table "team_invites" +""" +input team_invites_max_order_by { + created_at: order_by + id: order_by + invited_by_player_steam_id: order_by + steam_id: order_by + team_id: order_by +} + +"""aggregate min on columns""" +type team_invites_min_fields { + created_at: timestamptz + id: uuid + invited_by_player_steam_id: bigint + steam_id: bigint + team_id: uuid +} + +""" +order by min() on columns of table "team_invites" +""" +input team_invites_min_order_by { + created_at: order_by + id: order_by + invited_by_player_steam_id: order_by + steam_id: order_by + team_id: order_by +} + +""" +response of any mutation on the table "team_invites" +""" +type team_invites_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [team_invites!]! +} + +""" +on_conflict condition type for table "team_invites" +""" +input team_invites_on_conflict { + constraint: team_invites_constraint! + update_columns: [team_invites_update_column!]! = [] + where: team_invites_bool_exp +} + +"""Ordering options when selecting data from "team_invites".""" +input team_invites_order_by { + created_at: order_by + id: order_by + invited_by: players_order_by + invited_by_player_steam_id: order_by + player: players_order_by + steam_id: order_by + team: teams_order_by + team_id: order_by +} + +"""primary key columns input for table: team_invites""" +input team_invites_pk_columns_input { + id: uuid! +} + +""" +select columns of table "team_invites" +""" +enum team_invites_select_column { + """column name""" + created_at + + """column name""" + id + + """column name""" + invited_by_player_steam_id + + """column name""" + steam_id + + """column name""" + team_id +} + +""" +input type for updating data in table "team_invites" +""" +input team_invites_set_input { + created_at: timestamptz + id: uuid + invited_by_player_steam_id: bigint + steam_id: bigint + team_id: uuid +} + +"""aggregate stddev on columns""" +type team_invites_stddev_fields { + invited_by_player_steam_id: Float + steam_id: Float +} + +""" +order by stddev() on columns of table "team_invites" +""" +input team_invites_stddev_order_by { + invited_by_player_steam_id: order_by + steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type team_invites_stddev_pop_fields { + invited_by_player_steam_id: Float + steam_id: Float +} + +""" +order by stddev_pop() on columns of table "team_invites" +""" +input team_invites_stddev_pop_order_by { + invited_by_player_steam_id: order_by + steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type team_invites_stddev_samp_fields { + invited_by_player_steam_id: Float + steam_id: Float +} + +""" +order by stddev_samp() on columns of table "team_invites" +""" +input team_invites_stddev_samp_order_by { + invited_by_player_steam_id: order_by + steam_id: order_by +} + +""" +Streaming cursor of the table "team_invites" +""" +input team_invites_stream_cursor_input { + """Stream column input with initial value""" + initial_value: team_invites_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input team_invites_stream_cursor_value_input { + created_at: timestamptz + id: uuid + invited_by_player_steam_id: bigint + steam_id: bigint + team_id: uuid +} + +"""aggregate sum on columns""" +type team_invites_sum_fields { + invited_by_player_steam_id: bigint + steam_id: bigint +} + +""" +order by sum() on columns of table "team_invites" +""" +input team_invites_sum_order_by { + invited_by_player_steam_id: order_by + steam_id: order_by +} + +""" +update columns of table "team_invites" +""" +enum team_invites_update_column { + """column name""" + created_at + + """column name""" + id + + """column name""" + invited_by_player_steam_id + + """column name""" + steam_id + + """column name""" + team_id +} + +input team_invites_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: team_invites_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: team_invites_set_input + + """filter the rows which have to be updated""" + where: team_invites_bool_exp! +} + +"""aggregate var_pop on columns""" +type team_invites_var_pop_fields { + invited_by_player_steam_id: Float + steam_id: Float +} + +""" +order by var_pop() on columns of table "team_invites" +""" +input team_invites_var_pop_order_by { + invited_by_player_steam_id: order_by + steam_id: order_by +} + +"""aggregate var_samp on columns""" +type team_invites_var_samp_fields { + invited_by_player_steam_id: Float + steam_id: Float +} + +""" +order by var_samp() on columns of table "team_invites" +""" +input team_invites_var_samp_order_by { + invited_by_player_steam_id: order_by + steam_id: order_by +} + +"""aggregate variance on columns""" +type team_invites_variance_fields { + invited_by_player_steam_id: Float + steam_id: Float +} + +""" +order by variance() on columns of table "team_invites" +""" +input team_invites_variance_order_by { + invited_by_player_steam_id: order_by + steam_id: order_by +} + +""" +columns and relationships of "team_roster" +""" +type team_roster { + coach: Boolean! + + """An object relationship""" + player: players! + player_steam_id: bigint! + role: e_team_roles_enum! + roster_image_url: String + status: e_team_roster_statuses_enum! + + """An object relationship""" + team: teams! + team_id: uuid! +} + +""" +aggregated selection of "team_roster" +""" +type team_roster_aggregate { + aggregate: team_roster_aggregate_fields + nodes: [team_roster!]! +} + +input team_roster_aggregate_bool_exp { + bool_and: team_roster_aggregate_bool_exp_bool_and + bool_or: team_roster_aggregate_bool_exp_bool_or + count: team_roster_aggregate_bool_exp_count +} + +input team_roster_aggregate_bool_exp_bool_and { + arguments: team_roster_select_column_team_roster_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: team_roster_bool_exp + predicate: Boolean_comparison_exp! +} + +input team_roster_aggregate_bool_exp_bool_or { + arguments: team_roster_select_column_team_roster_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: team_roster_bool_exp + predicate: Boolean_comparison_exp! +} + +input team_roster_aggregate_bool_exp_count { + arguments: [team_roster_select_column!] + distinct: Boolean + filter: team_roster_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "team_roster" +""" +type team_roster_aggregate_fields { + avg: team_roster_avg_fields + count(columns: [team_roster_select_column!], distinct: Boolean): Int! + max: team_roster_max_fields + min: team_roster_min_fields + stddev: team_roster_stddev_fields + stddev_pop: team_roster_stddev_pop_fields + stddev_samp: team_roster_stddev_samp_fields + sum: team_roster_sum_fields + var_pop: team_roster_var_pop_fields + var_samp: team_roster_var_samp_fields + variance: team_roster_variance_fields +} + +""" +order by aggregate values of table "team_roster" +""" +input team_roster_aggregate_order_by { + avg: team_roster_avg_order_by + count: order_by + max: team_roster_max_order_by + min: team_roster_min_order_by + stddev: team_roster_stddev_order_by + stddev_pop: team_roster_stddev_pop_order_by + stddev_samp: team_roster_stddev_samp_order_by + sum: team_roster_sum_order_by + var_pop: team_roster_var_pop_order_by + var_samp: team_roster_var_samp_order_by + variance: team_roster_variance_order_by +} + +""" +input type for inserting array relation for remote table "team_roster" +""" +input team_roster_arr_rel_insert_input { + data: [team_roster_insert_input!]! + + """upsert condition""" + on_conflict: team_roster_on_conflict +} + +"""aggregate avg on columns""" +type team_roster_avg_fields { + player_steam_id: Float +} + +""" +order by avg() on columns of table "team_roster" +""" +input team_roster_avg_order_by { + player_steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "team_roster". All fields are combined with a logical 'AND'. +""" +input team_roster_bool_exp { + _and: [team_roster_bool_exp!] + _not: team_roster_bool_exp + _or: [team_roster_bool_exp!] + coach: Boolean_comparison_exp + player: players_bool_exp + player_steam_id: bigint_comparison_exp + role: e_team_roles_enum_comparison_exp + roster_image_url: String_comparison_exp + status: e_team_roster_statuses_enum_comparison_exp + team: teams_bool_exp + team_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "team_roster" +""" +enum team_roster_constraint { + """ + unique or primary key constraint on columns "player_steam_id", "team_id" + """ + team_members_pkey +} + +""" +input type for incrementing numeric columns in table "team_roster" +""" +input team_roster_inc_input { + player_steam_id: bigint +} + +""" +input type for inserting data into table "team_roster" +""" +input team_roster_insert_input { + coach: Boolean + player: players_obj_rel_insert_input + player_steam_id: bigint + role: e_team_roles_enum + roster_image_url: String + status: e_team_roster_statuses_enum + team: teams_obj_rel_insert_input + team_id: uuid +} + +"""aggregate max on columns""" +type team_roster_max_fields { + player_steam_id: bigint + roster_image_url: String + team_id: uuid +} + +""" +order by max() on columns of table "team_roster" +""" +input team_roster_max_order_by { + player_steam_id: order_by + roster_image_url: order_by + team_id: order_by +} + +"""aggregate min on columns""" +type team_roster_min_fields { + player_steam_id: bigint + roster_image_url: String + team_id: uuid +} + +""" +order by min() on columns of table "team_roster" +""" +input team_roster_min_order_by { + player_steam_id: order_by + roster_image_url: order_by + team_id: order_by +} + +""" +response of any mutation on the table "team_roster" +""" +type team_roster_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [team_roster!]! +} + +""" +on_conflict condition type for table "team_roster" +""" +input team_roster_on_conflict { + constraint: team_roster_constraint! + update_columns: [team_roster_update_column!]! = [] + where: team_roster_bool_exp +} + +"""Ordering options when selecting data from "team_roster".""" +input team_roster_order_by { + coach: order_by + player: players_order_by + player_steam_id: order_by + role: order_by + roster_image_url: order_by + status: order_by + team: teams_order_by + team_id: order_by +} + +"""primary key columns input for table: team_roster""" +input team_roster_pk_columns_input { + player_steam_id: bigint! + team_id: uuid! +} + +""" +select columns of table "team_roster" +""" +enum team_roster_select_column { + """column name""" + coach + + """column name""" + player_steam_id + + """column name""" + role + + """column name""" + roster_image_url + + """column name""" + status + + """column name""" + team_id +} + +""" +select "team_roster_aggregate_bool_exp_bool_and_arguments_columns" columns of table "team_roster" +""" +enum team_roster_select_column_team_roster_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + coach +} + +""" +select "team_roster_aggregate_bool_exp_bool_or_arguments_columns" columns of table "team_roster" +""" +enum team_roster_select_column_team_roster_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + coach +} + +""" +input type for updating data in table "team_roster" +""" +input team_roster_set_input { + coach: Boolean + player_steam_id: bigint + role: e_team_roles_enum + roster_image_url: String + status: e_team_roster_statuses_enum + team_id: uuid +} + +"""aggregate stddev on columns""" +type team_roster_stddev_fields { + player_steam_id: Float +} + +""" +order by stddev() on columns of table "team_roster" +""" +input team_roster_stddev_order_by { + player_steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type team_roster_stddev_pop_fields { + player_steam_id: Float +} + +""" +order by stddev_pop() on columns of table "team_roster" +""" +input team_roster_stddev_pop_order_by { + player_steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type team_roster_stddev_samp_fields { + player_steam_id: Float +} + +""" +order by stddev_samp() on columns of table "team_roster" +""" +input team_roster_stddev_samp_order_by { + player_steam_id: order_by +} + +""" +Streaming cursor of the table "team_roster" +""" +input team_roster_stream_cursor_input { + """Stream column input with initial value""" + initial_value: team_roster_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input team_roster_stream_cursor_value_input { + coach: Boolean + player_steam_id: bigint + role: e_team_roles_enum + roster_image_url: String + status: e_team_roster_statuses_enum + team_id: uuid +} + +"""aggregate sum on columns""" +type team_roster_sum_fields { + player_steam_id: bigint +} + +""" +order by sum() on columns of table "team_roster" +""" +input team_roster_sum_order_by { + player_steam_id: order_by +} + +""" +update columns of table "team_roster" +""" +enum team_roster_update_column { + """column name""" + coach + + """column name""" + player_steam_id + + """column name""" + role + + """column name""" + roster_image_url + + """column name""" + status + + """column name""" + team_id +} + +input team_roster_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: team_roster_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: team_roster_set_input + + """filter the rows which have to be updated""" + where: team_roster_bool_exp! +} + +"""aggregate var_pop on columns""" +type team_roster_var_pop_fields { + player_steam_id: Float +} + +""" +order by var_pop() on columns of table "team_roster" +""" +input team_roster_var_pop_order_by { + player_steam_id: order_by +} + +"""aggregate var_samp on columns""" +type team_roster_var_samp_fields { + player_steam_id: Float +} + +""" +order by var_samp() on columns of table "team_roster" +""" +input team_roster_var_samp_order_by { + player_steam_id: order_by +} + +"""aggregate variance on columns""" +type team_roster_variance_fields { + player_steam_id: Float +} + +""" +order by variance() on columns of table "team_roster" +""" +input team_roster_variance_order_by { + player_steam_id: order_by +} + +""" +columns and relationships of "team_scrim_alerts" +""" +type team_scrim_alerts { + created_at: timestamptz! + elo_max: Int + elo_min: Int + enabled: Boolean! + id: uuid! + last_notified_at: timestamptz + regions: [String!]! + + """An object relationship""" + team: teams! + team_id: uuid! +} + +""" +aggregated selection of "team_scrim_alerts" +""" +type team_scrim_alerts_aggregate { + aggregate: team_scrim_alerts_aggregate_fields + nodes: [team_scrim_alerts!]! +} + +""" +aggregate fields of "team_scrim_alerts" +""" +type team_scrim_alerts_aggregate_fields { + avg: team_scrim_alerts_avg_fields + count(columns: [team_scrim_alerts_select_column!], distinct: Boolean): Int! + max: team_scrim_alerts_max_fields + min: team_scrim_alerts_min_fields + stddev: team_scrim_alerts_stddev_fields + stddev_pop: team_scrim_alerts_stddev_pop_fields + stddev_samp: team_scrim_alerts_stddev_samp_fields + sum: team_scrim_alerts_sum_fields + var_pop: team_scrim_alerts_var_pop_fields + var_samp: team_scrim_alerts_var_samp_fields + variance: team_scrim_alerts_variance_fields +} + +"""aggregate avg on columns""" +type team_scrim_alerts_avg_fields { + elo_max: Float + elo_min: Float +} + +""" +Boolean expression to filter rows from the table "team_scrim_alerts". All fields are combined with a logical 'AND'. +""" +input team_scrim_alerts_bool_exp { + _and: [team_scrim_alerts_bool_exp!] + _not: team_scrim_alerts_bool_exp + _or: [team_scrim_alerts_bool_exp!] + created_at: timestamptz_comparison_exp + elo_max: Int_comparison_exp + elo_min: Int_comparison_exp + enabled: Boolean_comparison_exp + id: uuid_comparison_exp + last_notified_at: timestamptz_comparison_exp + regions: String_array_comparison_exp + team: teams_bool_exp + team_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "team_scrim_alerts" +""" +enum team_scrim_alerts_constraint { + """ + unique or primary key constraint on columns "id" + """ + team_scrim_alerts_pkey +} + +""" +input type for incrementing numeric columns in table "team_scrim_alerts" +""" +input team_scrim_alerts_inc_input { + elo_max: Int + elo_min: Int +} + +""" +input type for inserting data into table "team_scrim_alerts" +""" +input team_scrim_alerts_insert_input { + created_at: timestamptz + elo_max: Int + elo_min: Int + enabled: Boolean + id: uuid + last_notified_at: timestamptz + regions: [String!] + team: teams_obj_rel_insert_input + team_id: uuid +} + +"""aggregate max on columns""" +type team_scrim_alerts_max_fields { + created_at: timestamptz + elo_max: Int + elo_min: Int + id: uuid + last_notified_at: timestamptz + regions: [String!] + team_id: uuid +} + +"""aggregate min on columns""" +type team_scrim_alerts_min_fields { + created_at: timestamptz + elo_max: Int + elo_min: Int + id: uuid + last_notified_at: timestamptz + regions: [String!] + team_id: uuid +} + +""" +response of any mutation on the table "team_scrim_alerts" +""" +type team_scrim_alerts_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [team_scrim_alerts!]! +} + +""" +on_conflict condition type for table "team_scrim_alerts" +""" +input team_scrim_alerts_on_conflict { + constraint: team_scrim_alerts_constraint! + update_columns: [team_scrim_alerts_update_column!]! = [] + where: team_scrim_alerts_bool_exp +} + +"""Ordering options when selecting data from "team_scrim_alerts".""" +input team_scrim_alerts_order_by { + created_at: order_by + elo_max: order_by + elo_min: order_by + enabled: order_by + id: order_by + last_notified_at: order_by + regions: order_by + team: teams_order_by + team_id: order_by +} + +"""primary key columns input for table: team_scrim_alerts""" +input team_scrim_alerts_pk_columns_input { + id: uuid! +} + +""" +select columns of table "team_scrim_alerts" +""" +enum team_scrim_alerts_select_column { + """column name""" + created_at + + """column name""" + elo_max + + """column name""" + elo_min + + """column name""" + enabled + + """column name""" + id + + """column name""" + last_notified_at + + """column name""" + regions + + """column name""" + team_id +} + +""" +input type for updating data in table "team_scrim_alerts" +""" +input team_scrim_alerts_set_input { + created_at: timestamptz + elo_max: Int + elo_min: Int + enabled: Boolean + id: uuid + last_notified_at: timestamptz + regions: [String!] + team_id: uuid +} + +"""aggregate stddev on columns""" +type team_scrim_alerts_stddev_fields { + elo_max: Float + elo_min: Float +} + +"""aggregate stddev_pop on columns""" +type team_scrim_alerts_stddev_pop_fields { + elo_max: Float + elo_min: Float +} + +"""aggregate stddev_samp on columns""" +type team_scrim_alerts_stddev_samp_fields { + elo_max: Float + elo_min: Float +} + +""" +Streaming cursor of the table "team_scrim_alerts" +""" +input team_scrim_alerts_stream_cursor_input { + """Stream column input with initial value""" + initial_value: team_scrim_alerts_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input team_scrim_alerts_stream_cursor_value_input { + created_at: timestamptz + elo_max: Int + elo_min: Int + enabled: Boolean + id: uuid + last_notified_at: timestamptz + regions: [String!] + team_id: uuid +} + +"""aggregate sum on columns""" +type team_scrim_alerts_sum_fields { + elo_max: Int + elo_min: Int +} + +""" +update columns of table "team_scrim_alerts" +""" +enum team_scrim_alerts_update_column { + """column name""" + created_at + + """column name""" + elo_max + + """column name""" + elo_min + + """column name""" + enabled + + """column name""" + id + + """column name""" + last_notified_at + + """column name""" + regions + + """column name""" + team_id +} + +input team_scrim_alerts_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: team_scrim_alerts_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: team_scrim_alerts_set_input + + """filter the rows which have to be updated""" + where: team_scrim_alerts_bool_exp! +} + +"""aggregate var_pop on columns""" +type team_scrim_alerts_var_pop_fields { + elo_max: Float + elo_min: Float +} + +"""aggregate var_samp on columns""" +type team_scrim_alerts_var_samp_fields { + elo_max: Float + elo_min: Float +} + +"""aggregate variance on columns""" +type team_scrim_alerts_variance_fields { + elo_max: Float + elo_min: Float +} + +""" +columns and relationships of "team_scrim_availability" +""" +type team_scrim_availability { + created_at: timestamptz! + ends_at: timestamptz! + id: uuid! + recurring_weekly: Boolean! + starts_at: timestamptz! + + """An object relationship""" + team: teams! + team_id: uuid! +} + +""" +aggregated selection of "team_scrim_availability" +""" +type team_scrim_availability_aggregate { + aggregate: team_scrim_availability_aggregate_fields + nodes: [team_scrim_availability!]! +} + +input team_scrim_availability_aggregate_bool_exp { + bool_and: team_scrim_availability_aggregate_bool_exp_bool_and + bool_or: team_scrim_availability_aggregate_bool_exp_bool_or + count: team_scrim_availability_aggregate_bool_exp_count +} + +input team_scrim_availability_aggregate_bool_exp_bool_and { + arguments: team_scrim_availability_select_column_team_scrim_availability_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: team_scrim_availability_bool_exp + predicate: Boolean_comparison_exp! +} + +input team_scrim_availability_aggregate_bool_exp_bool_or { + arguments: team_scrim_availability_select_column_team_scrim_availability_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: team_scrim_availability_bool_exp + predicate: Boolean_comparison_exp! +} + +input team_scrim_availability_aggregate_bool_exp_count { + arguments: [team_scrim_availability_select_column!] + distinct: Boolean + filter: team_scrim_availability_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "team_scrim_availability" +""" +type team_scrim_availability_aggregate_fields { + count(columns: [team_scrim_availability_select_column!], distinct: Boolean): Int! + max: team_scrim_availability_max_fields + min: team_scrim_availability_min_fields +} + +""" +order by aggregate values of table "team_scrim_availability" +""" +input team_scrim_availability_aggregate_order_by { + count: order_by + max: team_scrim_availability_max_order_by + min: team_scrim_availability_min_order_by +} + +""" +input type for inserting array relation for remote table "team_scrim_availability" +""" +input team_scrim_availability_arr_rel_insert_input { + data: [team_scrim_availability_insert_input!]! + + """upsert condition""" + on_conflict: team_scrim_availability_on_conflict +} + +""" +Boolean expression to filter rows from the table "team_scrim_availability". All fields are combined with a logical 'AND'. +""" +input team_scrim_availability_bool_exp { + _and: [team_scrim_availability_bool_exp!] + _not: team_scrim_availability_bool_exp + _or: [team_scrim_availability_bool_exp!] + created_at: timestamptz_comparison_exp + ends_at: timestamptz_comparison_exp + id: uuid_comparison_exp + recurring_weekly: Boolean_comparison_exp + starts_at: timestamptz_comparison_exp + team: teams_bool_exp + team_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "team_scrim_availability" +""" +enum team_scrim_availability_constraint { + """ + unique or primary key constraint on columns "id" + """ + team_scrim_availability_pkey +} + +""" +input type for inserting data into table "team_scrim_availability" +""" +input team_scrim_availability_insert_input { + created_at: timestamptz + ends_at: timestamptz + id: uuid + recurring_weekly: Boolean + starts_at: timestamptz + team: teams_obj_rel_insert_input + team_id: uuid +} + +"""aggregate max on columns""" +type team_scrim_availability_max_fields { + created_at: timestamptz + ends_at: timestamptz + id: uuid + starts_at: timestamptz + team_id: uuid +} + +""" +order by max() on columns of table "team_scrim_availability" +""" +input team_scrim_availability_max_order_by { + created_at: order_by + ends_at: order_by + id: order_by + starts_at: order_by + team_id: order_by +} + +"""aggregate min on columns""" +type team_scrim_availability_min_fields { + created_at: timestamptz + ends_at: timestamptz + id: uuid + starts_at: timestamptz + team_id: uuid +} + +""" +order by min() on columns of table "team_scrim_availability" +""" +input team_scrim_availability_min_order_by { + created_at: order_by + ends_at: order_by + id: order_by + starts_at: order_by + team_id: order_by +} + +""" +response of any mutation on the table "team_scrim_availability" +""" +type team_scrim_availability_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [team_scrim_availability!]! +} + +""" +on_conflict condition type for table "team_scrim_availability" +""" +input team_scrim_availability_on_conflict { + constraint: team_scrim_availability_constraint! + update_columns: [team_scrim_availability_update_column!]! = [] + where: team_scrim_availability_bool_exp +} + +"""Ordering options when selecting data from "team_scrim_availability".""" +input team_scrim_availability_order_by { + created_at: order_by + ends_at: order_by + id: order_by + recurring_weekly: order_by + starts_at: order_by + team: teams_order_by + team_id: order_by +} + +"""primary key columns input for table: team_scrim_availability""" +input team_scrim_availability_pk_columns_input { + id: uuid! +} + +""" +select columns of table "team_scrim_availability" +""" +enum team_scrim_availability_select_column { + """column name""" + created_at + + """column name""" + ends_at + + """column name""" + id + + """column name""" + recurring_weekly + + """column name""" + starts_at + + """column name""" + team_id +} + +""" +select "team_scrim_availability_aggregate_bool_exp_bool_and_arguments_columns" columns of table "team_scrim_availability" +""" +enum team_scrim_availability_select_column_team_scrim_availability_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + recurring_weekly +} + +""" +select "team_scrim_availability_aggregate_bool_exp_bool_or_arguments_columns" columns of table "team_scrim_availability" +""" +enum team_scrim_availability_select_column_team_scrim_availability_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + recurring_weekly +} + +""" +input type for updating data in table "team_scrim_availability" +""" +input team_scrim_availability_set_input { + created_at: timestamptz + ends_at: timestamptz + id: uuid + recurring_weekly: Boolean + starts_at: timestamptz + team_id: uuid +} + +""" +Streaming cursor of the table "team_scrim_availability" +""" +input team_scrim_availability_stream_cursor_input { + """Stream column input with initial value""" + initial_value: team_scrim_availability_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input team_scrim_availability_stream_cursor_value_input { + created_at: timestamptz + ends_at: timestamptz + id: uuid + recurring_weekly: Boolean + starts_at: timestamptz + team_id: uuid +} + +""" +update columns of table "team_scrim_availability" +""" +enum team_scrim_availability_update_column { + """column name""" + created_at + + """column name""" + ends_at + + """column name""" + id + + """column name""" + recurring_weekly + + """column name""" + starts_at + + """column name""" + team_id +} + +input team_scrim_availability_updates { + """sets the columns of the filtered rows to the given values""" + _set: team_scrim_availability_set_input + + """filter the rows which have to be updated""" + where: team_scrim_availability_bool_exp! +} + +""" +columns and relationships of "team_scrim_request_proposals" +""" +type team_scrim_request_proposals { + created_at: timestamptz! + id: uuid! + + """An object relationship""" + proposed_by: players! + proposed_by_steam_id: bigint! + + """An object relationship""" + proposed_by_team: teams! + proposed_by_team_id: uuid! + proposed_scheduled_at: timestamptz! + + """An object relationship""" + request: team_scrim_requests! + request_id: uuid! +} + +""" +aggregated selection of "team_scrim_request_proposals" +""" +type team_scrim_request_proposals_aggregate { + aggregate: team_scrim_request_proposals_aggregate_fields + nodes: [team_scrim_request_proposals!]! +} + +input team_scrim_request_proposals_aggregate_bool_exp { + count: team_scrim_request_proposals_aggregate_bool_exp_count +} + +input team_scrim_request_proposals_aggregate_bool_exp_count { + arguments: [team_scrim_request_proposals_select_column!] + distinct: Boolean + filter: team_scrim_request_proposals_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "team_scrim_request_proposals" +""" +type team_scrim_request_proposals_aggregate_fields { + avg: team_scrim_request_proposals_avg_fields + count(columns: [team_scrim_request_proposals_select_column!], distinct: Boolean): Int! + max: team_scrim_request_proposals_max_fields + min: team_scrim_request_proposals_min_fields + stddev: team_scrim_request_proposals_stddev_fields + stddev_pop: team_scrim_request_proposals_stddev_pop_fields + stddev_samp: team_scrim_request_proposals_stddev_samp_fields + sum: team_scrim_request_proposals_sum_fields + var_pop: team_scrim_request_proposals_var_pop_fields + var_samp: team_scrim_request_proposals_var_samp_fields + variance: team_scrim_request_proposals_variance_fields +} + +""" +order by aggregate values of table "team_scrim_request_proposals" +""" +input team_scrim_request_proposals_aggregate_order_by { + avg: team_scrim_request_proposals_avg_order_by + count: order_by + max: team_scrim_request_proposals_max_order_by + min: team_scrim_request_proposals_min_order_by + stddev: team_scrim_request_proposals_stddev_order_by + stddev_pop: team_scrim_request_proposals_stddev_pop_order_by + stddev_samp: team_scrim_request_proposals_stddev_samp_order_by + sum: team_scrim_request_proposals_sum_order_by + var_pop: team_scrim_request_proposals_var_pop_order_by + var_samp: team_scrim_request_proposals_var_samp_order_by + variance: team_scrim_request_proposals_variance_order_by +} + +""" +input type for inserting array relation for remote table "team_scrim_request_proposals" +""" +input team_scrim_request_proposals_arr_rel_insert_input { + data: [team_scrim_request_proposals_insert_input!]! + + """upsert condition""" + on_conflict: team_scrim_request_proposals_on_conflict +} + +"""aggregate avg on columns""" +type team_scrim_request_proposals_avg_fields { + proposed_by_steam_id: Float +} + +""" +order by avg() on columns of table "team_scrim_request_proposals" +""" +input team_scrim_request_proposals_avg_order_by { + proposed_by_steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "team_scrim_request_proposals". All fields are combined with a logical 'AND'. +""" +input team_scrim_request_proposals_bool_exp { + _and: [team_scrim_request_proposals_bool_exp!] + _not: team_scrim_request_proposals_bool_exp + _or: [team_scrim_request_proposals_bool_exp!] + created_at: timestamptz_comparison_exp + id: uuid_comparison_exp + proposed_by: players_bool_exp + proposed_by_steam_id: bigint_comparison_exp + proposed_by_team: teams_bool_exp + proposed_by_team_id: uuid_comparison_exp + proposed_scheduled_at: timestamptz_comparison_exp + request: team_scrim_requests_bool_exp + request_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "team_scrim_request_proposals" +""" +enum team_scrim_request_proposals_constraint { + """ + unique or primary key constraint on columns "id" + """ + team_scrim_request_proposals_pkey +} + +""" +input type for incrementing numeric columns in table "team_scrim_request_proposals" +""" +input team_scrim_request_proposals_inc_input { + proposed_by_steam_id: bigint +} + +""" +input type for inserting data into table "team_scrim_request_proposals" +""" +input team_scrim_request_proposals_insert_input { + created_at: timestamptz + id: uuid + proposed_by: players_obj_rel_insert_input + proposed_by_steam_id: bigint + proposed_by_team: teams_obj_rel_insert_input + proposed_by_team_id: uuid + proposed_scheduled_at: timestamptz + request: team_scrim_requests_obj_rel_insert_input + request_id: uuid +} + +"""aggregate max on columns""" +type team_scrim_request_proposals_max_fields { + created_at: timestamptz + id: uuid + proposed_by_steam_id: bigint + proposed_by_team_id: uuid + proposed_scheduled_at: timestamptz + request_id: uuid +} + +""" +order by max() on columns of table "team_scrim_request_proposals" +""" +input team_scrim_request_proposals_max_order_by { + created_at: order_by + id: order_by + proposed_by_steam_id: order_by + proposed_by_team_id: order_by + proposed_scheduled_at: order_by + request_id: order_by +} + +"""aggregate min on columns""" +type team_scrim_request_proposals_min_fields { + created_at: timestamptz + id: uuid + proposed_by_steam_id: bigint + proposed_by_team_id: uuid + proposed_scheduled_at: timestamptz + request_id: uuid +} + +""" +order by min() on columns of table "team_scrim_request_proposals" +""" +input team_scrim_request_proposals_min_order_by { + created_at: order_by + id: order_by + proposed_by_steam_id: order_by + proposed_by_team_id: order_by + proposed_scheduled_at: order_by + request_id: order_by +} + +""" +response of any mutation on the table "team_scrim_request_proposals" +""" +type team_scrim_request_proposals_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [team_scrim_request_proposals!]! +} + +""" +on_conflict condition type for table "team_scrim_request_proposals" +""" +input team_scrim_request_proposals_on_conflict { + constraint: team_scrim_request_proposals_constraint! + update_columns: [team_scrim_request_proposals_update_column!]! = [] + where: team_scrim_request_proposals_bool_exp +} + +""" +Ordering options when selecting data from "team_scrim_request_proposals". +""" +input team_scrim_request_proposals_order_by { + created_at: order_by + id: order_by + proposed_by: players_order_by + proposed_by_steam_id: order_by + proposed_by_team: teams_order_by + proposed_by_team_id: order_by + proposed_scheduled_at: order_by + request: team_scrim_requests_order_by + request_id: order_by +} + +"""primary key columns input for table: team_scrim_request_proposals""" +input team_scrim_request_proposals_pk_columns_input { + id: uuid! +} + +""" +select columns of table "team_scrim_request_proposals" +""" +enum team_scrim_request_proposals_select_column { + """column name""" + created_at + + """column name""" + id + + """column name""" + proposed_by_steam_id + + """column name""" + proposed_by_team_id + + """column name""" + proposed_scheduled_at + + """column name""" + request_id +} + +""" +input type for updating data in table "team_scrim_request_proposals" +""" +input team_scrim_request_proposals_set_input { + created_at: timestamptz + id: uuid + proposed_by_steam_id: bigint + proposed_by_team_id: uuid + proposed_scheduled_at: timestamptz + request_id: uuid +} + +"""aggregate stddev on columns""" +type team_scrim_request_proposals_stddev_fields { + proposed_by_steam_id: Float +} + +""" +order by stddev() on columns of table "team_scrim_request_proposals" +""" +input team_scrim_request_proposals_stddev_order_by { + proposed_by_steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type team_scrim_request_proposals_stddev_pop_fields { + proposed_by_steam_id: Float +} + +""" +order by stddev_pop() on columns of table "team_scrim_request_proposals" +""" +input team_scrim_request_proposals_stddev_pop_order_by { + proposed_by_steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type team_scrim_request_proposals_stddev_samp_fields { + proposed_by_steam_id: Float +} + +""" +order by stddev_samp() on columns of table "team_scrim_request_proposals" +""" +input team_scrim_request_proposals_stddev_samp_order_by { + proposed_by_steam_id: order_by +} + +""" +Streaming cursor of the table "team_scrim_request_proposals" +""" +input team_scrim_request_proposals_stream_cursor_input { + """Stream column input with initial value""" + initial_value: team_scrim_request_proposals_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input team_scrim_request_proposals_stream_cursor_value_input { + created_at: timestamptz + id: uuid + proposed_by_steam_id: bigint + proposed_by_team_id: uuid + proposed_scheduled_at: timestamptz + request_id: uuid +} + +"""aggregate sum on columns""" +type team_scrim_request_proposals_sum_fields { + proposed_by_steam_id: bigint +} + +""" +order by sum() on columns of table "team_scrim_request_proposals" +""" +input team_scrim_request_proposals_sum_order_by { + proposed_by_steam_id: order_by +} + +""" +update columns of table "team_scrim_request_proposals" +""" +enum team_scrim_request_proposals_update_column { + """column name""" + created_at + + """column name""" + id + + """column name""" + proposed_by_steam_id + + """column name""" + proposed_by_team_id + + """column name""" + proposed_scheduled_at + + """column name""" + request_id +} + +input team_scrim_request_proposals_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: team_scrim_request_proposals_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: team_scrim_request_proposals_set_input + + """filter the rows which have to be updated""" + where: team_scrim_request_proposals_bool_exp! +} + +"""aggregate var_pop on columns""" +type team_scrim_request_proposals_var_pop_fields { + proposed_by_steam_id: Float +} + +""" +order by var_pop() on columns of table "team_scrim_request_proposals" +""" +input team_scrim_request_proposals_var_pop_order_by { + proposed_by_steam_id: order_by +} + +"""aggregate var_samp on columns""" +type team_scrim_request_proposals_var_samp_fields { + proposed_by_steam_id: Float +} + +""" +order by var_samp() on columns of table "team_scrim_request_proposals" +""" +input team_scrim_request_proposals_var_samp_order_by { + proposed_by_steam_id: order_by +} + +"""aggregate variance on columns""" +type team_scrim_request_proposals_variance_fields { + proposed_by_steam_id: Float +} + +""" +order by variance() on columns of table "team_scrim_request_proposals" +""" +input team_scrim_request_proposals_variance_order_by { + proposed_by_steam_id: order_by +} + +""" +columns and relationships of "team_scrim_requests" +""" +type team_scrim_requests { + auto_generated: Boolean! + + """An object relationship""" + awaiting_team: teams! + awaiting_team_id: uuid! + canceled_by_team_id: uuid + canceled_late: Boolean! + created_at: timestamptz! + expires_at: timestamptz! + + """An object relationship""" + from_team: teams! + from_team_checked_in: Boolean + from_team_id: uuid! + id: uuid! + + """An object relationship""" + match: matches + match_id: uuid + + """An object relationship""" + match_options: match_options + match_options_id: uuid + + """ + Terminal match status captured by tbd_match_cancel_scrim before the match row is deleted, so v_team_reputation survives canceled-match GC. + """ + match_outcome: String + + """An array relationship""" + proposals( + """distinct select on columns""" + distinct_on: [team_scrim_request_proposals_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: [team_scrim_request_proposals_order_by!] + + """filter the rows returned""" + where: team_scrim_request_proposals_bool_exp + ): [team_scrim_request_proposals!]! + + """An aggregate relationship""" + proposals_aggregate( + """distinct select on columns""" + distinct_on: [team_scrim_request_proposals_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: [team_scrim_request_proposals_order_by!] + + """filter the rows returned""" + where: team_scrim_request_proposals_bool_exp + ): team_scrim_request_proposals_aggregate! + proposed_scheduled_at: timestamptz! + region: String + + """An object relationship""" + requested_by: players! + requested_by_steam_id: bigint! + responded_at: timestamptz + status: e_scrim_request_statuses_enum! + + """An object relationship""" + to_team: teams! + to_team_checked_in: Boolean + to_team_id: uuid! +} + +""" +aggregated selection of "team_scrim_requests" +""" +type team_scrim_requests_aggregate { + aggregate: team_scrim_requests_aggregate_fields + nodes: [team_scrim_requests!]! +} + +input team_scrim_requests_aggregate_bool_exp { + bool_and: team_scrim_requests_aggregate_bool_exp_bool_and + bool_or: team_scrim_requests_aggregate_bool_exp_bool_or + count: team_scrim_requests_aggregate_bool_exp_count +} + +input team_scrim_requests_aggregate_bool_exp_bool_and { + arguments: team_scrim_requests_select_column_team_scrim_requests_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: team_scrim_requests_bool_exp + predicate: Boolean_comparison_exp! +} + +input team_scrim_requests_aggregate_bool_exp_bool_or { + arguments: team_scrim_requests_select_column_team_scrim_requests_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: team_scrim_requests_bool_exp + predicate: Boolean_comparison_exp! +} + +input team_scrim_requests_aggregate_bool_exp_count { + arguments: [team_scrim_requests_select_column!] + distinct: Boolean + filter: team_scrim_requests_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "team_scrim_requests" +""" +type team_scrim_requests_aggregate_fields { + avg: team_scrim_requests_avg_fields + count(columns: [team_scrim_requests_select_column!], distinct: Boolean): Int! + max: team_scrim_requests_max_fields + min: team_scrim_requests_min_fields + stddev: team_scrim_requests_stddev_fields + stddev_pop: team_scrim_requests_stddev_pop_fields + stddev_samp: team_scrim_requests_stddev_samp_fields + sum: team_scrim_requests_sum_fields + var_pop: team_scrim_requests_var_pop_fields + var_samp: team_scrim_requests_var_samp_fields + variance: team_scrim_requests_variance_fields +} + +""" +order by aggregate values of table "team_scrim_requests" +""" +input team_scrim_requests_aggregate_order_by { + avg: team_scrim_requests_avg_order_by + count: order_by + max: team_scrim_requests_max_order_by + min: team_scrim_requests_min_order_by + stddev: team_scrim_requests_stddev_order_by + stddev_pop: team_scrim_requests_stddev_pop_order_by + stddev_samp: team_scrim_requests_stddev_samp_order_by + sum: team_scrim_requests_sum_order_by + var_pop: team_scrim_requests_var_pop_order_by + var_samp: team_scrim_requests_var_samp_order_by + variance: team_scrim_requests_variance_order_by +} + +""" +input type for inserting array relation for remote table "team_scrim_requests" +""" +input team_scrim_requests_arr_rel_insert_input { + data: [team_scrim_requests_insert_input!]! + + """upsert condition""" + on_conflict: team_scrim_requests_on_conflict +} + +"""aggregate avg on columns""" +type team_scrim_requests_avg_fields { + requested_by_steam_id: Float +} + +""" +order by avg() on columns of table "team_scrim_requests" +""" +input team_scrim_requests_avg_order_by { + requested_by_steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "team_scrim_requests". All fields are combined with a logical 'AND'. +""" +input team_scrim_requests_bool_exp { + _and: [team_scrim_requests_bool_exp!] + _not: team_scrim_requests_bool_exp + _or: [team_scrim_requests_bool_exp!] + auto_generated: Boolean_comparison_exp + awaiting_team: teams_bool_exp + awaiting_team_id: uuid_comparison_exp + canceled_by_team_id: uuid_comparison_exp + canceled_late: Boolean_comparison_exp + created_at: timestamptz_comparison_exp + expires_at: timestamptz_comparison_exp + from_team: teams_bool_exp + from_team_checked_in: Boolean_comparison_exp + from_team_id: uuid_comparison_exp + id: uuid_comparison_exp + match: matches_bool_exp + match_id: uuid_comparison_exp + match_options: match_options_bool_exp + match_options_id: uuid_comparison_exp + match_outcome: String_comparison_exp + proposals: team_scrim_request_proposals_bool_exp + proposals_aggregate: team_scrim_request_proposals_aggregate_bool_exp + proposed_scheduled_at: timestamptz_comparison_exp + region: String_comparison_exp + requested_by: players_bool_exp + requested_by_steam_id: bigint_comparison_exp + responded_at: timestamptz_comparison_exp + status: e_scrim_request_statuses_enum_comparison_exp + to_team: teams_bool_exp + to_team_checked_in: Boolean_comparison_exp + to_team_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "team_scrim_requests" +""" +enum team_scrim_requests_constraint { + """ + unique or primary key constraint on columns "id" + """ + team_scrim_requests_pkey + + """unique or primary key constraint on columns """ + uq_scrim_req_open +} + +""" +input type for incrementing numeric columns in table "team_scrim_requests" +""" +input team_scrim_requests_inc_input { + requested_by_steam_id: bigint +} + +""" +input type for inserting data into table "team_scrim_requests" +""" +input team_scrim_requests_insert_input { + auto_generated: Boolean + awaiting_team: teams_obj_rel_insert_input + awaiting_team_id: uuid + canceled_by_team_id: uuid + canceled_late: Boolean + created_at: timestamptz + expires_at: timestamptz + from_team: teams_obj_rel_insert_input + from_team_checked_in: Boolean + from_team_id: uuid + id: uuid + match: matches_obj_rel_insert_input + match_id: uuid + match_options: match_options_obj_rel_insert_input + match_options_id: uuid + + """ + Terminal match status captured by tbd_match_cancel_scrim before the match row is deleted, so v_team_reputation survives canceled-match GC. + """ + match_outcome: String + proposals: team_scrim_request_proposals_arr_rel_insert_input + proposed_scheduled_at: timestamptz + region: String + requested_by: players_obj_rel_insert_input + requested_by_steam_id: bigint + responded_at: timestamptz + status: e_scrim_request_statuses_enum + to_team: teams_obj_rel_insert_input + to_team_checked_in: Boolean + to_team_id: uuid +} + +"""aggregate max on columns""" +type team_scrim_requests_max_fields { + awaiting_team_id: uuid + canceled_by_team_id: uuid + created_at: timestamptz + expires_at: timestamptz + from_team_id: uuid + id: uuid + match_id: uuid + match_options_id: uuid + + """ + Terminal match status captured by tbd_match_cancel_scrim before the match row is deleted, so v_team_reputation survives canceled-match GC. + """ + match_outcome: String + proposed_scheduled_at: timestamptz + region: String + requested_by_steam_id: bigint + responded_at: timestamptz + to_team_id: uuid +} + +""" +order by max() on columns of table "team_scrim_requests" +""" +input team_scrim_requests_max_order_by { + awaiting_team_id: order_by + canceled_by_team_id: order_by + created_at: order_by + expires_at: order_by + from_team_id: order_by + id: order_by + match_id: order_by + match_options_id: order_by + + """ + Terminal match status captured by tbd_match_cancel_scrim before the match row is deleted, so v_team_reputation survives canceled-match GC. + """ + match_outcome: order_by + proposed_scheduled_at: order_by + region: order_by + requested_by_steam_id: order_by + responded_at: order_by + to_team_id: order_by +} + +"""aggregate min on columns""" +type team_scrim_requests_min_fields { + awaiting_team_id: uuid + canceled_by_team_id: uuid + created_at: timestamptz + expires_at: timestamptz + from_team_id: uuid + id: uuid + match_id: uuid + match_options_id: uuid + + """ + Terminal match status captured by tbd_match_cancel_scrim before the match row is deleted, so v_team_reputation survives canceled-match GC. + """ + match_outcome: String + proposed_scheduled_at: timestamptz + region: String + requested_by_steam_id: bigint + responded_at: timestamptz + to_team_id: uuid +} + +""" +order by min() on columns of table "team_scrim_requests" +""" +input team_scrim_requests_min_order_by { + awaiting_team_id: order_by + canceled_by_team_id: order_by + created_at: order_by + expires_at: order_by + from_team_id: order_by + id: order_by + match_id: order_by + match_options_id: order_by + + """ + Terminal match status captured by tbd_match_cancel_scrim before the match row is deleted, so v_team_reputation survives canceled-match GC. + """ + match_outcome: order_by + proposed_scheduled_at: order_by + region: order_by + requested_by_steam_id: order_by + responded_at: order_by + to_team_id: order_by +} + +""" +response of any mutation on the table "team_scrim_requests" +""" +type team_scrim_requests_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [team_scrim_requests!]! +} + +""" +input type for inserting object relation for remote table "team_scrim_requests" +""" +input team_scrim_requests_obj_rel_insert_input { + data: team_scrim_requests_insert_input! + + """upsert condition""" + on_conflict: team_scrim_requests_on_conflict +} + +""" +on_conflict condition type for table "team_scrim_requests" +""" +input team_scrim_requests_on_conflict { + constraint: team_scrim_requests_constraint! + update_columns: [team_scrim_requests_update_column!]! = [] + where: team_scrim_requests_bool_exp +} + +"""Ordering options when selecting data from "team_scrim_requests".""" +input team_scrim_requests_order_by { + auto_generated: order_by + awaiting_team: teams_order_by + awaiting_team_id: order_by + canceled_by_team_id: order_by + canceled_late: order_by + created_at: order_by + expires_at: order_by + from_team: teams_order_by + from_team_checked_in: order_by + from_team_id: order_by + id: order_by + match: matches_order_by + match_id: order_by + match_options: match_options_order_by + match_options_id: order_by + match_outcome: order_by + proposals_aggregate: team_scrim_request_proposals_aggregate_order_by + proposed_scheduled_at: order_by + region: order_by + requested_by: players_order_by + requested_by_steam_id: order_by + responded_at: order_by + status: order_by + to_team: teams_order_by + to_team_checked_in: order_by + to_team_id: order_by +} + +"""primary key columns input for table: team_scrim_requests""" +input team_scrim_requests_pk_columns_input { + id: uuid! +} + +""" +select columns of table "team_scrim_requests" +""" +enum team_scrim_requests_select_column { + """column name""" + auto_generated + + """column name""" + awaiting_team_id + + """column name""" + canceled_by_team_id + + """column name""" + canceled_late + + """column name""" + created_at + + """column name""" + expires_at + + """column name""" + from_team_checked_in + + """column name""" + from_team_id + + """column name""" + id + + """column name""" + match_id + + """column name""" + match_options_id + + """column name""" + match_outcome + + """column name""" + proposed_scheduled_at + + """column name""" + region + + """column name""" + requested_by_steam_id + + """column name""" + responded_at + + """column name""" + status + + """column name""" + to_team_checked_in + + """column name""" + to_team_id +} + +""" +select "team_scrim_requests_aggregate_bool_exp_bool_and_arguments_columns" columns of table "team_scrim_requests" +""" +enum team_scrim_requests_select_column_team_scrim_requests_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + auto_generated + + """column name""" + canceled_late + + """column name""" + from_team_checked_in + + """column name""" + to_team_checked_in +} + +""" +select "team_scrim_requests_aggregate_bool_exp_bool_or_arguments_columns" columns of table "team_scrim_requests" +""" +enum team_scrim_requests_select_column_team_scrim_requests_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + auto_generated + + """column name""" + canceled_late + + """column name""" + from_team_checked_in + + """column name""" + to_team_checked_in +} + +""" +input type for updating data in table "team_scrim_requests" +""" +input team_scrim_requests_set_input { + auto_generated: Boolean + awaiting_team_id: uuid + canceled_by_team_id: uuid + canceled_late: Boolean + created_at: timestamptz + expires_at: timestamptz + from_team_checked_in: Boolean + from_team_id: uuid + id: uuid + match_id: uuid + match_options_id: uuid + + """ + Terminal match status captured by tbd_match_cancel_scrim before the match row is deleted, so v_team_reputation survives canceled-match GC. + """ + match_outcome: String + proposed_scheduled_at: timestamptz + region: String + requested_by_steam_id: bigint + responded_at: timestamptz + status: e_scrim_request_statuses_enum + to_team_checked_in: Boolean + to_team_id: uuid +} + +"""aggregate stddev on columns""" +type team_scrim_requests_stddev_fields { + requested_by_steam_id: Float +} + +""" +order by stddev() on columns of table "team_scrim_requests" +""" +input team_scrim_requests_stddev_order_by { + requested_by_steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type team_scrim_requests_stddev_pop_fields { + requested_by_steam_id: Float +} + +""" +order by stddev_pop() on columns of table "team_scrim_requests" +""" +input team_scrim_requests_stddev_pop_order_by { + requested_by_steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type team_scrim_requests_stddev_samp_fields { + requested_by_steam_id: Float +} + +""" +order by stddev_samp() on columns of table "team_scrim_requests" +""" +input team_scrim_requests_stddev_samp_order_by { + requested_by_steam_id: order_by +} + +""" +Streaming cursor of the table "team_scrim_requests" +""" +input team_scrim_requests_stream_cursor_input { + """Stream column input with initial value""" + initial_value: team_scrim_requests_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input team_scrim_requests_stream_cursor_value_input { + auto_generated: Boolean + awaiting_team_id: uuid + canceled_by_team_id: uuid + canceled_late: Boolean + created_at: timestamptz + expires_at: timestamptz + from_team_checked_in: Boolean + from_team_id: uuid + id: uuid + match_id: uuid + match_options_id: uuid + + """ + Terminal match status captured by tbd_match_cancel_scrim before the match row is deleted, so v_team_reputation survives canceled-match GC. + """ + match_outcome: String + proposed_scheduled_at: timestamptz + region: String + requested_by_steam_id: bigint + responded_at: timestamptz + status: e_scrim_request_statuses_enum + to_team_checked_in: Boolean + to_team_id: uuid +} + +"""aggregate sum on columns""" +type team_scrim_requests_sum_fields { + requested_by_steam_id: bigint +} + +""" +order by sum() on columns of table "team_scrim_requests" +""" +input team_scrim_requests_sum_order_by { + requested_by_steam_id: order_by +} + +""" +update columns of table "team_scrim_requests" +""" +enum team_scrim_requests_update_column { + """column name""" + auto_generated + + """column name""" + awaiting_team_id + + """column name""" + canceled_by_team_id + + """column name""" + canceled_late + + """column name""" + created_at + + """column name""" + expires_at + + """column name""" + from_team_checked_in + + """column name""" + from_team_id + + """column name""" + id + + """column name""" + match_id + + """column name""" + match_options_id + + """column name""" + match_outcome + + """column name""" + proposed_scheduled_at + + """column name""" + region + + """column name""" + requested_by_steam_id + + """column name""" + responded_at + + """column name""" + status + + """column name""" + to_team_checked_in + + """column name""" + to_team_id +} + +input team_scrim_requests_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: team_scrim_requests_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: team_scrim_requests_set_input + + """filter the rows which have to be updated""" + where: team_scrim_requests_bool_exp! +} + +"""aggregate var_pop on columns""" +type team_scrim_requests_var_pop_fields { + requested_by_steam_id: Float +} + +""" +order by var_pop() on columns of table "team_scrim_requests" +""" +input team_scrim_requests_var_pop_order_by { + requested_by_steam_id: order_by +} + +"""aggregate var_samp on columns""" +type team_scrim_requests_var_samp_fields { + requested_by_steam_id: Float +} + +""" +order by var_samp() on columns of table "team_scrim_requests" +""" +input team_scrim_requests_var_samp_order_by { + requested_by_steam_id: order_by +} + +"""aggregate variance on columns""" +type team_scrim_requests_variance_fields { + requested_by_steam_id: Float +} + +""" +order by variance() on columns of table "team_scrim_requests" +""" +input team_scrim_requests_variance_order_by { + requested_by_steam_id: order_by +} + +""" +columns and relationships of "team_scrim_settings" +""" +type team_scrim_settings { + allow_outside_availability: Boolean! + created_at: timestamptz! + elo_max: Int + elo_min: Int + enabled: Boolean! + id: uuid! + map_ids: [uuid!]! + notes: String + regions: [String!]! + + """An object relationship""" + team: teams! + team_id: uuid! + updated_at: timestamptz! +} + +""" +aggregated selection of "team_scrim_settings" +""" +type team_scrim_settings_aggregate { + aggregate: team_scrim_settings_aggregate_fields + nodes: [team_scrim_settings!]! +} + +""" +aggregate fields of "team_scrim_settings" +""" +type team_scrim_settings_aggregate_fields { + avg: team_scrim_settings_avg_fields + count(columns: [team_scrim_settings_select_column!], distinct: Boolean): Int! + max: team_scrim_settings_max_fields + min: team_scrim_settings_min_fields + stddev: team_scrim_settings_stddev_fields + stddev_pop: team_scrim_settings_stddev_pop_fields + stddev_samp: team_scrim_settings_stddev_samp_fields + sum: team_scrim_settings_sum_fields + var_pop: team_scrim_settings_var_pop_fields + var_samp: team_scrim_settings_var_samp_fields + variance: team_scrim_settings_variance_fields +} + +"""aggregate avg on columns""" +type team_scrim_settings_avg_fields { + elo_max: Float + elo_min: Float +} + +""" +Boolean expression to filter rows from the table "team_scrim_settings". All fields are combined with a logical 'AND'. +""" +input team_scrim_settings_bool_exp { + _and: [team_scrim_settings_bool_exp!] + _not: team_scrim_settings_bool_exp + _or: [team_scrim_settings_bool_exp!] + allow_outside_availability: Boolean_comparison_exp + created_at: timestamptz_comparison_exp + elo_max: Int_comparison_exp + elo_min: Int_comparison_exp + enabled: Boolean_comparison_exp + id: uuid_comparison_exp + map_ids: uuid_array_comparison_exp + notes: String_comparison_exp + regions: String_array_comparison_exp + team: teams_bool_exp + team_id: uuid_comparison_exp + updated_at: timestamptz_comparison_exp +} + +""" +unique or primary key constraints on table "team_scrim_settings" +""" +enum team_scrim_settings_constraint { + """ + unique or primary key constraint on columns "id" + """ + team_scrim_settings_pkey + + """ + unique or primary key constraint on columns "team_id" + """ + team_scrim_settings_team_id_key +} + +""" +input type for incrementing numeric columns in table "team_scrim_settings" +""" +input team_scrim_settings_inc_input { + elo_max: Int + elo_min: Int +} + +""" +input type for inserting data into table "team_scrim_settings" +""" +input team_scrim_settings_insert_input { + allow_outside_availability: Boolean + created_at: timestamptz + elo_max: Int + elo_min: Int + enabled: Boolean + id: uuid + map_ids: [uuid!] + notes: String + regions: [String!] + team: teams_obj_rel_insert_input + team_id: uuid + updated_at: timestamptz +} + +"""aggregate max on columns""" +type team_scrim_settings_max_fields { + created_at: timestamptz + elo_max: Int + elo_min: Int + id: uuid + map_ids: [uuid!] + notes: String + regions: [String!] + team_id: uuid + updated_at: timestamptz +} + +"""aggregate min on columns""" +type team_scrim_settings_min_fields { + created_at: timestamptz + elo_max: Int + elo_min: Int + id: uuid + map_ids: [uuid!] + notes: String + regions: [String!] + team_id: uuid + updated_at: timestamptz +} + +""" +response of any mutation on the table "team_scrim_settings" +""" +type team_scrim_settings_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [team_scrim_settings!]! +} + +""" +input type for inserting object relation for remote table "team_scrim_settings" +""" +input team_scrim_settings_obj_rel_insert_input { + data: team_scrim_settings_insert_input! + + """upsert condition""" + on_conflict: team_scrim_settings_on_conflict +} + +""" +on_conflict condition type for table "team_scrim_settings" +""" +input team_scrim_settings_on_conflict { + constraint: team_scrim_settings_constraint! + update_columns: [team_scrim_settings_update_column!]! = [] + where: team_scrim_settings_bool_exp +} + +"""Ordering options when selecting data from "team_scrim_settings".""" +input team_scrim_settings_order_by { + allow_outside_availability: order_by + created_at: order_by + elo_max: order_by + elo_min: order_by + enabled: order_by + id: order_by + map_ids: order_by + notes: order_by + regions: order_by + team: teams_order_by + team_id: order_by + updated_at: order_by +} + +"""primary key columns input for table: team_scrim_settings""" +input team_scrim_settings_pk_columns_input { + id: uuid! +} + +""" +select columns of table "team_scrim_settings" +""" +enum team_scrim_settings_select_column { + """column name""" + allow_outside_availability + + """column name""" + created_at + + """column name""" + elo_max + + """column name""" + elo_min + + """column name""" + enabled + + """column name""" + id + + """column name""" + map_ids + + """column name""" + notes + + """column name""" + regions + + """column name""" + team_id + + """column name""" + updated_at +} + +""" +input type for updating data in table "team_scrim_settings" +""" +input team_scrim_settings_set_input { + allow_outside_availability: Boolean + created_at: timestamptz + elo_max: Int + elo_min: Int + enabled: Boolean + id: uuid + map_ids: [uuid!] + notes: String + regions: [String!] + team_id: uuid + updated_at: timestamptz +} + +"""aggregate stddev on columns""" +type team_scrim_settings_stddev_fields { + elo_max: Float + elo_min: Float +} + +"""aggregate stddev_pop on columns""" +type team_scrim_settings_stddev_pop_fields { + elo_max: Float + elo_min: Float +} + +"""aggregate stddev_samp on columns""" +type team_scrim_settings_stddev_samp_fields { + elo_max: Float + elo_min: Float +} + +""" +Streaming cursor of the table "team_scrim_settings" +""" +input team_scrim_settings_stream_cursor_input { + """Stream column input with initial value""" + initial_value: team_scrim_settings_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input team_scrim_settings_stream_cursor_value_input { + allow_outside_availability: Boolean + created_at: timestamptz + elo_max: Int + elo_min: Int + enabled: Boolean + id: uuid + map_ids: [uuid!] + notes: String + regions: [String!] + team_id: uuid + updated_at: timestamptz +} + +"""aggregate sum on columns""" +type team_scrim_settings_sum_fields { + elo_max: Int + elo_min: Int +} + +""" +update columns of table "team_scrim_settings" +""" +enum team_scrim_settings_update_column { + """column name""" + allow_outside_availability + + """column name""" + created_at + + """column name""" + elo_max + + """column name""" + elo_min + + """column name""" + enabled + + """column name""" + id + + """column name""" + map_ids + + """column name""" + notes + + """column name""" + regions + + """column name""" + team_id + + """column name""" + updated_at +} + +input team_scrim_settings_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: team_scrim_settings_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: team_scrim_settings_set_input + + """filter the rows which have to be updated""" + where: team_scrim_settings_bool_exp! +} + +"""aggregate var_pop on columns""" +type team_scrim_settings_var_pop_fields { + elo_max: Float + elo_min: Float +} + +"""aggregate var_samp on columns""" +type team_scrim_settings_var_samp_fields { + elo_max: Float + elo_min: Float +} + +"""aggregate variance on columns""" +type team_scrim_settings_variance_fields { + elo_max: Float + elo_min: Float +} + +""" +columns and relationships of "team_suggestions" +""" +type team_suggestions { + created_at: timestamptz! + group_hash: String! + id: uuid! + last_notified_at: timestamptz + member_steam_ids: [bigint!]! + status: String! + together_count: Int! +} + +""" +aggregated selection of "team_suggestions" +""" +type team_suggestions_aggregate { + aggregate: team_suggestions_aggregate_fields + nodes: [team_suggestions!]! +} + +""" +aggregate fields of "team_suggestions" +""" +type team_suggestions_aggregate_fields { + avg: team_suggestions_avg_fields + count(columns: [team_suggestions_select_column!], distinct: Boolean): Int! + max: team_suggestions_max_fields + min: team_suggestions_min_fields + stddev: team_suggestions_stddev_fields + stddev_pop: team_suggestions_stddev_pop_fields + stddev_samp: team_suggestions_stddev_samp_fields + sum: team_suggestions_sum_fields + var_pop: team_suggestions_var_pop_fields + var_samp: team_suggestions_var_samp_fields + variance: team_suggestions_variance_fields +} + +"""aggregate avg on columns""" +type team_suggestions_avg_fields { + together_count: Float +} + +""" +Boolean expression to filter rows from the table "team_suggestions". All fields are combined with a logical 'AND'. +""" +input team_suggestions_bool_exp { + _and: [team_suggestions_bool_exp!] + _not: team_suggestions_bool_exp + _or: [team_suggestions_bool_exp!] + created_at: timestamptz_comparison_exp + group_hash: String_comparison_exp + id: uuid_comparison_exp + last_notified_at: timestamptz_comparison_exp + member_steam_ids: bigint_array_comparison_exp + status: String_comparison_exp + together_count: Int_comparison_exp +} + +""" +unique or primary key constraints on table "team_suggestions" +""" +enum team_suggestions_constraint { + """ + unique or primary key constraint on columns "group_hash" + """ + team_suggestions_group_hash_key + + """ + unique or primary key constraint on columns "id" + """ + team_suggestions_pkey +} + +""" +input type for incrementing numeric columns in table "team_suggestions" +""" +input team_suggestions_inc_input { + together_count: Int +} + +""" +input type for inserting data into table "team_suggestions" +""" +input team_suggestions_insert_input { + created_at: timestamptz + group_hash: String + id: uuid + last_notified_at: timestamptz + member_steam_ids: [bigint!] + status: String + together_count: Int +} + +"""aggregate max on columns""" +type team_suggestions_max_fields { + created_at: timestamptz + group_hash: String + id: uuid + last_notified_at: timestamptz + member_steam_ids: [bigint!] + status: String + together_count: Int +} + +"""aggregate min on columns""" +type team_suggestions_min_fields { + created_at: timestamptz + group_hash: String + id: uuid + last_notified_at: timestamptz + member_steam_ids: [bigint!] + status: String + together_count: Int +} + +""" +response of any mutation on the table "team_suggestions" +""" +type team_suggestions_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [team_suggestions!]! +} + +""" +on_conflict condition type for table "team_suggestions" +""" +input team_suggestions_on_conflict { + constraint: team_suggestions_constraint! + update_columns: [team_suggestions_update_column!]! = [] + where: team_suggestions_bool_exp +} + +"""Ordering options when selecting data from "team_suggestions".""" +input team_suggestions_order_by { + created_at: order_by + group_hash: order_by + id: order_by + last_notified_at: order_by + member_steam_ids: order_by + status: order_by + together_count: order_by +} + +"""primary key columns input for table: team_suggestions""" +input team_suggestions_pk_columns_input { + id: uuid! +} + +""" +select columns of table "team_suggestions" +""" +enum team_suggestions_select_column { + """column name""" + created_at + + """column name""" + group_hash + + """column name""" + id + + """column name""" + last_notified_at + + """column name""" + member_steam_ids + + """column name""" + status + + """column name""" + together_count +} + +""" +input type for updating data in table "team_suggestions" +""" +input team_suggestions_set_input { + created_at: timestamptz + group_hash: String + id: uuid + last_notified_at: timestamptz + member_steam_ids: [bigint!] + status: String + together_count: Int +} + +"""aggregate stddev on columns""" +type team_suggestions_stddev_fields { + together_count: Float +} + +"""aggregate stddev_pop on columns""" +type team_suggestions_stddev_pop_fields { + together_count: Float +} + +"""aggregate stddev_samp on columns""" +type team_suggestions_stddev_samp_fields { + together_count: Float +} + +""" +Streaming cursor of the table "team_suggestions" +""" +input team_suggestions_stream_cursor_input { + """Stream column input with initial value""" + initial_value: team_suggestions_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input team_suggestions_stream_cursor_value_input { + created_at: timestamptz + group_hash: String + id: uuid + last_notified_at: timestamptz + member_steam_ids: [bigint!] + status: String + together_count: Int +} + +"""aggregate sum on columns""" +type team_suggestions_sum_fields { + together_count: Int +} + +""" +update columns of table "team_suggestions" +""" +enum team_suggestions_update_column { + """column name""" + created_at + + """column name""" + group_hash + + """column name""" + id + + """column name""" + last_notified_at + + """column name""" + member_steam_ids + + """column name""" + status + + """column name""" + together_count +} + +input team_suggestions_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: team_suggestions_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: team_suggestions_set_input + + """filter the rows which have to be updated""" + where: team_suggestions_bool_exp! +} + +"""aggregate var_pop on columns""" +type team_suggestions_var_pop_fields { + together_count: Float +} + +"""aggregate var_samp on columns""" +type team_suggestions_var_samp_fields { + together_count: Float +} + +"""aggregate variance on columns""" +type team_suggestions_variance_fields { + together_count: Float +} + +""" +columns and relationships of "teams" +""" +type teams { + avatar_url: String + + """An array relationship""" + awards( + """distinct select on columns""" + distinct_on: [award_recipients_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: [award_recipients_order_by!] + + """filter the rows returned""" + where: award_recipients_bool_exp + ): [award_recipients!]! + + """An aggregate relationship""" + awards_aggregate( + """distinct select on columns""" + distinct_on: [award_recipients_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: [award_recipients_order_by!] + + """filter the rows returned""" + where: award_recipients_bool_exp + ): award_recipients_aggregate! + + """ + A computed field, executes function "can_change_team_role" + """ + can_change_role: Boolean + + """ + A computed field, executes function "can_invite_to_team" + """ + can_invite: Boolean + + """ + A computed field, executes function "can_manage_team_scrims" + """ + can_manage_scrims: Boolean + + """ + A computed field, executes function "can_remove_from_team" + """ + can_remove: Boolean + + """An object relationship""" + captain: players + captain_steam_id: bigint + id: uuid! + + """An array relationship""" + invites( + """distinct select on columns""" + distinct_on: [team_invites_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: [team_invites_order_by!] + + """filter the rows returned""" + where: team_invites_bool_exp + ): [team_invites!]! + + """An aggregate relationship""" + invites_aggregate( + """distinct select on columns""" + distinct_on: [team_invites_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: [team_invites_order_by!] + + """filter the rows returned""" + where: team_invites_bool_exp + ): team_invites_aggregate! + is_organization: Boolean! + + """An array relationship""" + match_lineups( + """distinct select on columns""" + distinct_on: [match_lineups_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_lineups_order_by!] + + """filter the rows returned""" + where: match_lineups_bool_exp + ): [match_lineups!]! + + """An aggregate relationship""" + match_lineups_aggregate( + """distinct select on columns""" + distinct_on: [match_lineups_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_lineups_order_by!] + + """filter the rows returned""" + where: match_lineups_bool_exp + ): match_lineups_aggregate! + + """ + A computed field, executes function "get_team_matches" + """ + matches( + """distinct select on columns""" + distinct_on: [matches_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: [matches_order_by!] + + """filter the rows returned""" + where: matches_bool_exp + ): [matches!] + name: String! + + """An object relationship""" + owner: players! + owner_steam_id: bigint! + + """An object relationship""" + ranks: v_team_ranks + + """An object relationship""" + reputation: v_team_reputation + + """ + A computed field, executes function "team_role" + """ + role: String + + """An array relationship""" + roster( + """distinct select on columns""" + distinct_on: [team_roster_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: [team_roster_order_by!] + + """filter the rows returned""" + where: team_roster_bool_exp + ): [team_roster!]! + + """An aggregate relationship""" + roster_aggregate( + """distinct select on columns""" + distinct_on: [team_roster_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: [team_roster_order_by!] + + """filter the rows returned""" + where: team_roster_bool_exp + ): team_roster_aggregate! + + """An array relationship""" + scrim_availability( + """distinct select on columns""" + distinct_on: [team_scrim_availability_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: [team_scrim_availability_order_by!] + + """filter the rows returned""" + where: team_scrim_availability_bool_exp + ): [team_scrim_availability!]! + + """An aggregate relationship""" + scrim_availability_aggregate( + """distinct select on columns""" + distinct_on: [team_scrim_availability_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: [team_scrim_availability_order_by!] + + """filter the rows returned""" + where: team_scrim_availability_bool_exp + ): team_scrim_availability_aggregate! + + """An object relationship""" + scrim_settings: team_scrim_settings + short_name: String! + + """An array relationship""" + tournament_teams( + """distinct select on columns""" + distinct_on: [tournament_teams_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_teams_order_by!] + + """filter the rows returned""" + where: tournament_teams_bool_exp + ): [tournament_teams!]! + + """An aggregate relationship""" + tournament_teams_aggregate( + """distinct select on columns""" + distinct_on: [tournament_teams_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_teams_order_by!] + + """filter the rows returned""" + where: tournament_teams_bool_exp + ): tournament_teams_aggregate! +} + +""" +aggregated selection of "teams" +""" +type teams_aggregate { + aggregate: teams_aggregate_fields + nodes: [teams!]! +} + +input teams_aggregate_bool_exp { + bool_and: teams_aggregate_bool_exp_bool_and + bool_or: teams_aggregate_bool_exp_bool_or + count: teams_aggregate_bool_exp_count +} + +input teams_aggregate_bool_exp_bool_and { + arguments: teams_select_column_teams_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: teams_bool_exp + predicate: Boolean_comparison_exp! +} + +input teams_aggregate_bool_exp_bool_or { + arguments: teams_select_column_teams_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: teams_bool_exp + predicate: Boolean_comparison_exp! +} + +input teams_aggregate_bool_exp_count { + arguments: [teams_select_column!] + distinct: Boolean + filter: teams_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "teams" +""" +type teams_aggregate_fields { + avg: teams_avg_fields + count(columns: [teams_select_column!], distinct: Boolean): Int! + max: teams_max_fields + min: teams_min_fields + stddev: teams_stddev_fields + stddev_pop: teams_stddev_pop_fields + stddev_samp: teams_stddev_samp_fields + sum: teams_sum_fields + var_pop: teams_var_pop_fields + var_samp: teams_var_samp_fields + variance: teams_variance_fields +} + +""" +order by aggregate values of table "teams" +""" +input teams_aggregate_order_by { + avg: teams_avg_order_by + count: order_by + max: teams_max_order_by + min: teams_min_order_by + stddev: teams_stddev_order_by + stddev_pop: teams_stddev_pop_order_by + stddev_samp: teams_stddev_samp_order_by + sum: teams_sum_order_by + var_pop: teams_var_pop_order_by + var_samp: teams_var_samp_order_by + variance: teams_variance_order_by +} + +""" +input type for inserting array relation for remote table "teams" +""" +input teams_arr_rel_insert_input { + data: [teams_insert_input!]! + + """upsert condition""" + on_conflict: teams_on_conflict +} + +"""aggregate avg on columns""" +type teams_avg_fields { + captain_steam_id: Float + owner_steam_id: Float +} + +""" +order by avg() on columns of table "teams" +""" +input teams_avg_order_by { + captain_steam_id: order_by + owner_steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "teams". All fields are combined with a logical 'AND'. +""" +input teams_bool_exp { + _and: [teams_bool_exp!] + _not: teams_bool_exp + _or: [teams_bool_exp!] + avatar_url: String_comparison_exp + awards: award_recipients_bool_exp + awards_aggregate: award_recipients_aggregate_bool_exp + can_change_role: Boolean_comparison_exp + can_invite: Boolean_comparison_exp + can_manage_scrims: Boolean_comparison_exp + can_remove: Boolean_comparison_exp + captain: players_bool_exp + captain_steam_id: bigint_comparison_exp + id: uuid_comparison_exp + invites: team_invites_bool_exp + invites_aggregate: team_invites_aggregate_bool_exp + is_organization: Boolean_comparison_exp + match_lineups: match_lineups_bool_exp + match_lineups_aggregate: match_lineups_aggregate_bool_exp + matches: matches_bool_exp + name: String_comparison_exp + owner: players_bool_exp + owner_steam_id: bigint_comparison_exp + ranks: v_team_ranks_bool_exp + reputation: v_team_reputation_bool_exp + role: String_comparison_exp + roster: team_roster_bool_exp + roster_aggregate: team_roster_aggregate_bool_exp + scrim_availability: team_scrim_availability_bool_exp + scrim_availability_aggregate: team_scrim_availability_aggregate_bool_exp + scrim_settings: team_scrim_settings_bool_exp + short_name: String_comparison_exp + tournament_teams: tournament_teams_bool_exp + tournament_teams_aggregate: tournament_teams_aggregate_bool_exp +} + +""" +unique or primary key constraints on table "teams" +""" +enum teams_constraint { + """ + unique or primary key constraint on columns "name" + """ + teams_name_key + + """ + unique or primary key constraint on columns "id" + """ + teams_pkey +} + +""" +input type for incrementing numeric columns in table "teams" +""" +input teams_inc_input { + captain_steam_id: bigint + owner_steam_id: bigint +} + +""" +input type for inserting data into table "teams" +""" +input teams_insert_input { + avatar_url: String + awards: award_recipients_arr_rel_insert_input + captain: players_obj_rel_insert_input + captain_steam_id: bigint + id: uuid + invites: team_invites_arr_rel_insert_input + is_organization: Boolean + match_lineups: match_lineups_arr_rel_insert_input + name: String + owner: players_obj_rel_insert_input + owner_steam_id: bigint + ranks: v_team_ranks_obj_rel_insert_input + reputation: v_team_reputation_obj_rel_insert_input + roster: team_roster_arr_rel_insert_input + scrim_availability: team_scrim_availability_arr_rel_insert_input + scrim_settings: team_scrim_settings_obj_rel_insert_input + short_name: String + tournament_teams: tournament_teams_arr_rel_insert_input +} + +"""aggregate max on columns""" +type teams_max_fields { + avatar_url: String + captain_steam_id: bigint + id: uuid + name: String + owner_steam_id: bigint + + """ + A computed field, executes function "team_role" + """ + role: String + short_name: String +} + +""" +order by max() on columns of table "teams" +""" +input teams_max_order_by { + avatar_url: order_by + captain_steam_id: order_by + id: order_by + name: order_by + owner_steam_id: order_by + short_name: order_by +} + +"""aggregate min on columns""" +type teams_min_fields { + avatar_url: String + captain_steam_id: bigint + id: uuid + name: String + owner_steam_id: bigint + + """ + A computed field, executes function "team_role" + """ + role: String + short_name: String +} + +""" +order by min() on columns of table "teams" +""" +input teams_min_order_by { + avatar_url: order_by + captain_steam_id: order_by + id: order_by + name: order_by + owner_steam_id: order_by + short_name: order_by +} + +""" +response of any mutation on the table "teams" +""" +type teams_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [teams!]! +} + +""" +input type for inserting object relation for remote table "teams" +""" +input teams_obj_rel_insert_input { + data: teams_insert_input! + + """upsert condition""" + on_conflict: teams_on_conflict +} + +""" +on_conflict condition type for table "teams" +""" +input teams_on_conflict { + constraint: teams_constraint! + update_columns: [teams_update_column!]! = [] + where: teams_bool_exp +} + +"""Ordering options when selecting data from "teams".""" +input teams_order_by { + avatar_url: order_by + awards_aggregate: award_recipients_aggregate_order_by + can_change_role: order_by + can_invite: order_by + can_manage_scrims: order_by + can_remove: order_by + captain: players_order_by + captain_steam_id: order_by + id: order_by + invites_aggregate: team_invites_aggregate_order_by + is_organization: order_by + match_lineups_aggregate: match_lineups_aggregate_order_by + matches_aggregate: matches_aggregate_order_by + name: order_by + owner: players_order_by + owner_steam_id: order_by + ranks: v_team_ranks_order_by + reputation: v_team_reputation_order_by + role: order_by + roster_aggregate: team_roster_aggregate_order_by + scrim_availability_aggregate: team_scrim_availability_aggregate_order_by + scrim_settings: team_scrim_settings_order_by + short_name: order_by + tournament_teams_aggregate: tournament_teams_aggregate_order_by +} + +"""primary key columns input for table: teams""" +input teams_pk_columns_input { + id: uuid! +} + +""" +select columns of table "teams" +""" +enum teams_select_column { + """column name""" + avatar_url + + """column name""" + captain_steam_id + + """column name""" + id + + """column name""" + is_organization + + """column name""" + name + + """column name""" + owner_steam_id + + """column name""" + short_name +} + +""" +select "teams_aggregate_bool_exp_bool_and_arguments_columns" columns of table "teams" +""" +enum teams_select_column_teams_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + is_organization +} + +""" +select "teams_aggregate_bool_exp_bool_or_arguments_columns" columns of table "teams" +""" +enum teams_select_column_teams_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + is_organization +} + +""" +input type for updating data in table "teams" +""" +input teams_set_input { + avatar_url: String + captain_steam_id: bigint + id: uuid + is_organization: Boolean + name: String + owner_steam_id: bigint + short_name: String +} + +"""aggregate stddev on columns""" +type teams_stddev_fields { + captain_steam_id: Float + owner_steam_id: Float +} + +""" +order by stddev() on columns of table "teams" +""" +input teams_stddev_order_by { + captain_steam_id: order_by + owner_steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type teams_stddev_pop_fields { + captain_steam_id: Float + owner_steam_id: Float +} + +""" +order by stddev_pop() on columns of table "teams" +""" +input teams_stddev_pop_order_by { + captain_steam_id: order_by + owner_steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type teams_stddev_samp_fields { + captain_steam_id: Float + owner_steam_id: Float +} + +""" +order by stddev_samp() on columns of table "teams" +""" +input teams_stddev_samp_order_by { + captain_steam_id: order_by + owner_steam_id: order_by +} + +""" +Streaming cursor of the table "teams" +""" +input teams_stream_cursor_input { + """Stream column input with initial value""" + initial_value: teams_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input teams_stream_cursor_value_input { + avatar_url: String + captain_steam_id: bigint + id: uuid + is_organization: Boolean + name: String + owner_steam_id: bigint + short_name: String +} + +"""aggregate sum on columns""" +type teams_sum_fields { + captain_steam_id: bigint + owner_steam_id: bigint +} + +""" +order by sum() on columns of table "teams" +""" +input teams_sum_order_by { + captain_steam_id: order_by + owner_steam_id: order_by +} + +""" +update columns of table "teams" +""" +enum teams_update_column { + """column name""" + avatar_url + + """column name""" + captain_steam_id + + """column name""" + id + + """column name""" + is_organization + + """column name""" + name + + """column name""" + owner_steam_id + + """column name""" + short_name +} + +input teams_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: teams_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: teams_set_input + + """filter the rows which have to be updated""" + where: teams_bool_exp! +} + +"""aggregate var_pop on columns""" +type teams_var_pop_fields { + captain_steam_id: Float + owner_steam_id: Float +} + +""" +order by var_pop() on columns of table "teams" +""" +input teams_var_pop_order_by { + captain_steam_id: order_by + owner_steam_id: order_by +} + +"""aggregate var_samp on columns""" +type teams_var_samp_fields { + captain_steam_id: Float + owner_steam_id: Float +} + +""" +order by var_samp() on columns of table "teams" +""" +input teams_var_samp_order_by { + captain_steam_id: order_by + owner_steam_id: order_by +} + +"""aggregate variance on columns""" +type teams_variance_fields { + captain_steam_id: Float + owner_steam_id: Float +} + +""" +order by variance() on columns of table "teams" +""" +input teams_variance_order_by { + captain_steam_id: order_by + owner_steam_id: order_by +} + +scalar time + +""" +Boolean expression to compare columns of type "time". All fields are combined with logical 'AND'. +""" +input time_comparison_exp { + _eq: time + _gt: time + _gte: time + _in: [time!] + _is_null: Boolean + _lt: time + _lte: time + _neq: time + _nin: [time!] +} + +scalar timestamp + +scalar timestamptz + +""" +Boolean expression to compare columns of type "timestamptz". All fields are combined with logical 'AND'. +""" +input timestamptz_comparison_exp { + _eq: timestamptz + _gt: timestamptz + _gte: timestamptz + _in: [timestamptz!] + _is_null: Boolean + _lt: timestamptz + _lte: timestamptz + _neq: timestamptz + _nin: [timestamptz!] +} + +""" +columns and relationships of "tournament_awards" +""" +type tournament_awards { + """An object relationship""" + award: awards + award_id: uuid + created_at: timestamptz! + custom_name: String + id: uuid! + image_url: String + placement: Int! + silhouette: Int + + """An object relationship""" + tournament: tournaments! + tournament_id: uuid! + updated_at: timestamptz! +} + +""" +aggregated selection of "tournament_awards" +""" +type tournament_awards_aggregate { + aggregate: tournament_awards_aggregate_fields + nodes: [tournament_awards!]! +} + +input tournament_awards_aggregate_bool_exp { + count: tournament_awards_aggregate_bool_exp_count +} + +input tournament_awards_aggregate_bool_exp_count { + arguments: [tournament_awards_select_column!] + distinct: Boolean + filter: tournament_awards_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "tournament_awards" +""" +type tournament_awards_aggregate_fields { + avg: tournament_awards_avg_fields + count(columns: [tournament_awards_select_column!], distinct: Boolean): Int! + max: tournament_awards_max_fields + min: tournament_awards_min_fields + stddev: tournament_awards_stddev_fields + stddev_pop: tournament_awards_stddev_pop_fields + stddev_samp: tournament_awards_stddev_samp_fields + sum: tournament_awards_sum_fields + var_pop: tournament_awards_var_pop_fields + var_samp: tournament_awards_var_samp_fields + variance: tournament_awards_variance_fields +} + +""" +order by aggregate values of table "tournament_awards" +""" +input tournament_awards_aggregate_order_by { + avg: tournament_awards_avg_order_by + count: order_by + max: tournament_awards_max_order_by + min: tournament_awards_min_order_by + stddev: tournament_awards_stddev_order_by + stddev_pop: tournament_awards_stddev_pop_order_by + stddev_samp: tournament_awards_stddev_samp_order_by + sum: tournament_awards_sum_order_by + var_pop: tournament_awards_var_pop_order_by + var_samp: tournament_awards_var_samp_order_by + variance: tournament_awards_variance_order_by +} + +""" +input type for inserting array relation for remote table "tournament_awards" +""" +input tournament_awards_arr_rel_insert_input { + data: [tournament_awards_insert_input!]! + + """upsert condition""" + on_conflict: tournament_awards_on_conflict +} + +"""aggregate avg on columns""" +type tournament_awards_avg_fields { + placement: Float + silhouette: Float +} + +""" +order by avg() on columns of table "tournament_awards" +""" +input tournament_awards_avg_order_by { + placement: order_by + silhouette: order_by +} + +""" +Boolean expression to filter rows from the table "tournament_awards". All fields are combined with a logical 'AND'. +""" +input tournament_awards_bool_exp { + _and: [tournament_awards_bool_exp!] + _not: tournament_awards_bool_exp + _or: [tournament_awards_bool_exp!] + award: awards_bool_exp + award_id: uuid_comparison_exp + created_at: timestamptz_comparison_exp + custom_name: String_comparison_exp + id: uuid_comparison_exp + image_url: String_comparison_exp + placement: Int_comparison_exp + silhouette: Int_comparison_exp + tournament: tournaments_bool_exp + tournament_id: uuid_comparison_exp + updated_at: timestamptz_comparison_exp +} + +""" +unique or primary key constraints on table "tournament_awards" +""" +enum tournament_awards_constraint { + """ + unique or primary key constraint on columns "id" + """ + tournament_awards_pkey + + """ + unique or primary key constraint on columns "placement", "tournament_id" + """ + tournament_awards_tournament_id_placement_key +} + +""" +input type for incrementing numeric columns in table "tournament_awards" +""" +input tournament_awards_inc_input { + placement: Int + silhouette: Int +} + +""" +input type for inserting data into table "tournament_awards" +""" +input tournament_awards_insert_input { + award: awards_obj_rel_insert_input + award_id: uuid + created_at: timestamptz + custom_name: String + id: uuid + image_url: String + placement: Int + silhouette: Int + tournament: tournaments_obj_rel_insert_input + tournament_id: uuid + updated_at: timestamptz +} + +"""aggregate max on columns""" +type tournament_awards_max_fields { + award_id: uuid + created_at: timestamptz + custom_name: String + id: uuid + image_url: String + placement: Int + silhouette: Int + tournament_id: uuid + updated_at: timestamptz +} + +""" +order by max() on columns of table "tournament_awards" +""" +input tournament_awards_max_order_by { + award_id: order_by + created_at: order_by + custom_name: order_by + id: order_by + image_url: order_by + placement: order_by + silhouette: order_by + tournament_id: order_by + updated_at: order_by +} + +"""aggregate min on columns""" +type tournament_awards_min_fields { + award_id: uuid + created_at: timestamptz + custom_name: String + id: uuid + image_url: String + placement: Int + silhouette: Int + tournament_id: uuid + updated_at: timestamptz +} + +""" +order by min() on columns of table "tournament_awards" +""" +input tournament_awards_min_order_by { + award_id: order_by + created_at: order_by + custom_name: order_by + id: order_by + image_url: order_by + placement: order_by + silhouette: order_by + tournament_id: order_by + updated_at: order_by +} + +""" +response of any mutation on the table "tournament_awards" +""" +type tournament_awards_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [tournament_awards!]! +} + +""" +input type for inserting object relation for remote table "tournament_awards" +""" +input tournament_awards_obj_rel_insert_input { + data: tournament_awards_insert_input! + + """upsert condition""" + on_conflict: tournament_awards_on_conflict +} + +""" +on_conflict condition type for table "tournament_awards" +""" +input tournament_awards_on_conflict { + constraint: tournament_awards_constraint! + update_columns: [tournament_awards_update_column!]! = [] + where: tournament_awards_bool_exp +} + +"""Ordering options when selecting data from "tournament_awards".""" +input tournament_awards_order_by { + award: awards_order_by + award_id: order_by + created_at: order_by + custom_name: order_by + id: order_by + image_url: order_by + placement: order_by + silhouette: order_by + tournament: tournaments_order_by + tournament_id: order_by + updated_at: order_by +} + +"""primary key columns input for table: tournament_awards""" +input tournament_awards_pk_columns_input { + id: uuid! +} + +""" +select columns of table "tournament_awards" +""" +enum tournament_awards_select_column { + """column name""" + award_id + + """column name""" + created_at + + """column name""" + custom_name + + """column name""" + id + + """column name""" + image_url + + """column name""" + placement + + """column name""" + silhouette + + """column name""" + tournament_id + + """column name""" + updated_at +} + +""" +input type for updating data in table "tournament_awards" +""" +input tournament_awards_set_input { + award_id: uuid + created_at: timestamptz + custom_name: String + id: uuid + image_url: String + placement: Int + silhouette: Int + tournament_id: uuid + updated_at: timestamptz +} + +"""aggregate stddev on columns""" +type tournament_awards_stddev_fields { + placement: Float + silhouette: Float +} + +""" +order by stddev() on columns of table "tournament_awards" +""" +input tournament_awards_stddev_order_by { + placement: order_by + silhouette: order_by +} + +"""aggregate stddev_pop on columns""" +type tournament_awards_stddev_pop_fields { + placement: Float + silhouette: Float +} + +""" +order by stddev_pop() on columns of table "tournament_awards" +""" +input tournament_awards_stddev_pop_order_by { + placement: order_by + silhouette: order_by +} + +"""aggregate stddev_samp on columns""" +type tournament_awards_stddev_samp_fields { + placement: Float + silhouette: Float +} + +""" +order by stddev_samp() on columns of table "tournament_awards" +""" +input tournament_awards_stddev_samp_order_by { + placement: order_by + silhouette: order_by +} + +""" +Streaming cursor of the table "tournament_awards" +""" +input tournament_awards_stream_cursor_input { + """Stream column input with initial value""" + initial_value: tournament_awards_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input tournament_awards_stream_cursor_value_input { + award_id: uuid + created_at: timestamptz + custom_name: String + id: uuid + image_url: String + placement: Int + silhouette: Int + tournament_id: uuid + updated_at: timestamptz +} + +"""aggregate sum on columns""" +type tournament_awards_sum_fields { + placement: Int + silhouette: Int +} + +""" +order by sum() on columns of table "tournament_awards" +""" +input tournament_awards_sum_order_by { + placement: order_by + silhouette: order_by +} + +""" +update columns of table "tournament_awards" +""" +enum tournament_awards_update_column { + """column name""" + award_id + + """column name""" + created_at + + """column name""" + custom_name + + """column name""" + id + + """column name""" + image_url + + """column name""" + placement + + """column name""" + silhouette + + """column name""" + tournament_id + + """column name""" + updated_at +} + +input tournament_awards_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_awards_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_awards_set_input + + """filter the rows which have to be updated""" + where: tournament_awards_bool_exp! +} + +"""aggregate var_pop on columns""" +type tournament_awards_var_pop_fields { + placement: Float + silhouette: Float +} + +""" +order by var_pop() on columns of table "tournament_awards" +""" +input tournament_awards_var_pop_order_by { + placement: order_by + silhouette: order_by +} + +"""aggregate var_samp on columns""" +type tournament_awards_var_samp_fields { + placement: Float + silhouette: Float +} + +""" +order by var_samp() on columns of table "tournament_awards" +""" +input tournament_awards_var_samp_order_by { + placement: order_by + silhouette: order_by +} + +"""aggregate variance on columns""" +type tournament_awards_variance_fields { + placement: Float + silhouette: Float +} + +""" +order by variance() on columns of table "tournament_awards" +""" +input tournament_awards_variance_order_by { + placement: order_by + silhouette: order_by +} + +""" +columns and relationships of "tournament_brackets" +""" +type tournament_brackets { + bye: Boolean! + created_at: timestamptz! + + """ + A computed field, executes function "get_feeding_brackets" + """ + feeding_brackets( + """distinct select on columns""" + distinct_on: [tournament_brackets_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_brackets_order_by!] + + """filter the rows returned""" + where: tournament_brackets_bool_exp + ): [tournament_brackets!] + finished: Boolean! + group: numeric + id: uuid! + + """An object relationship""" + loser_bracket: tournament_brackets + loser_parent_bracket_id: uuid + + """An object relationship""" + match: matches + match_id: uuid + match_number: Int + match_options_id: uuid + + """An object relationship""" + options: match_options + + """An object relationship""" + parent_bracket: tournament_brackets + parent_bracket_id: uuid + path: String + round: Int! + scheduled_at: timestamptz + scheduled_eta: timestamptz + + """An array relationship""" + scheduling_proposals( + """distinct select on columns""" + distinct_on: [league_scheduling_proposals_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: [league_scheduling_proposals_order_by!] + + """filter the rows returned""" + where: league_scheduling_proposals_bool_exp + ): [league_scheduling_proposals!]! + + """An aggregate relationship""" + scheduling_proposals_aggregate( + """distinct select on columns""" + distinct_on: [league_scheduling_proposals_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: [league_scheduling_proposals_order_by!] + + """filter the rows returned""" + where: league_scheduling_proposals_bool_exp + ): league_scheduling_proposals_aggregate! + + """An object relationship""" + stage: tournament_stages! + + """An object relationship""" + team_1: tournament_teams + team_1_seed: Int + + """An object relationship""" + team_2: tournament_teams + team_2_seed: Int + tournament_stage_id: uuid! + tournament_team_id_1: uuid + tournament_team_id_2: uuid +} + +""" +aggregated selection of "tournament_brackets" +""" +type tournament_brackets_aggregate { + aggregate: tournament_brackets_aggregate_fields + nodes: [tournament_brackets!]! +} + +input tournament_brackets_aggregate_bool_exp { + bool_and: tournament_brackets_aggregate_bool_exp_bool_and + bool_or: tournament_brackets_aggregate_bool_exp_bool_or + count: tournament_brackets_aggregate_bool_exp_count +} + +input tournament_brackets_aggregate_bool_exp_bool_and { + arguments: tournament_brackets_select_column_tournament_brackets_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: tournament_brackets_bool_exp + predicate: Boolean_comparison_exp! +} + +input tournament_brackets_aggregate_bool_exp_bool_or { + arguments: tournament_brackets_select_column_tournament_brackets_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: tournament_brackets_bool_exp + predicate: Boolean_comparison_exp! +} + +input tournament_brackets_aggregate_bool_exp_count { + arguments: [tournament_brackets_select_column!] + distinct: Boolean + filter: tournament_brackets_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "tournament_brackets" +""" +type tournament_brackets_aggregate_fields { + avg: tournament_brackets_avg_fields + count(columns: [tournament_brackets_select_column!], distinct: Boolean): Int! + max: tournament_brackets_max_fields + min: tournament_brackets_min_fields + stddev: tournament_brackets_stddev_fields + stddev_pop: tournament_brackets_stddev_pop_fields + stddev_samp: tournament_brackets_stddev_samp_fields + sum: tournament_brackets_sum_fields + var_pop: tournament_brackets_var_pop_fields + var_samp: tournament_brackets_var_samp_fields + variance: tournament_brackets_variance_fields +} + +""" +order by aggregate values of table "tournament_brackets" +""" +input tournament_brackets_aggregate_order_by { + avg: tournament_brackets_avg_order_by + count: order_by + max: tournament_brackets_max_order_by + min: tournament_brackets_min_order_by + stddev: tournament_brackets_stddev_order_by + stddev_pop: tournament_brackets_stddev_pop_order_by + stddev_samp: tournament_brackets_stddev_samp_order_by + sum: tournament_brackets_sum_order_by + var_pop: tournament_brackets_var_pop_order_by + var_samp: tournament_brackets_var_samp_order_by + variance: tournament_brackets_variance_order_by +} + +""" +input type for inserting array relation for remote table "tournament_brackets" +""" +input tournament_brackets_arr_rel_insert_input { + data: [tournament_brackets_insert_input!]! + + """upsert condition""" + on_conflict: tournament_brackets_on_conflict +} + +"""aggregate avg on columns""" +type tournament_brackets_avg_fields { + group: Float + match_number: Float + round: Float + team_1_seed: Float + team_2_seed: Float +} + +""" +order by avg() on columns of table "tournament_brackets" +""" +input tournament_brackets_avg_order_by { + group: order_by + match_number: order_by + round: order_by + team_1_seed: order_by + team_2_seed: order_by +} + +""" +Boolean expression to filter rows from the table "tournament_brackets". All fields are combined with a logical 'AND'. +""" +input tournament_brackets_bool_exp { + _and: [tournament_brackets_bool_exp!] + _not: tournament_brackets_bool_exp + _or: [tournament_brackets_bool_exp!] + bye: Boolean_comparison_exp + created_at: timestamptz_comparison_exp + feeding_brackets: tournament_brackets_bool_exp + finished: Boolean_comparison_exp + group: numeric_comparison_exp + id: uuid_comparison_exp + loser_bracket: tournament_brackets_bool_exp + loser_parent_bracket_id: uuid_comparison_exp + match: matches_bool_exp + match_id: uuid_comparison_exp + match_number: Int_comparison_exp + match_options_id: uuid_comparison_exp + options: match_options_bool_exp + parent_bracket: tournament_brackets_bool_exp + parent_bracket_id: uuid_comparison_exp + path: String_comparison_exp + round: Int_comparison_exp + scheduled_at: timestamptz_comparison_exp + scheduled_eta: timestamptz_comparison_exp + scheduling_proposals: league_scheduling_proposals_bool_exp + scheduling_proposals_aggregate: league_scheduling_proposals_aggregate_bool_exp + stage: tournament_stages_bool_exp + team_1: tournament_teams_bool_exp + team_1_seed: Int_comparison_exp + team_2: tournament_teams_bool_exp + team_2_seed: Int_comparison_exp + tournament_stage_id: uuid_comparison_exp + tournament_team_id_1: uuid_comparison_exp + tournament_team_id_2: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "tournament_brackets" +""" +enum tournament_brackets_constraint { + """ + unique or primary key constraint on columns "id" + """ + touarnment_brackets_pkey + + """ + unique or primary key constraint on columns "id", "tournament_team_id_1", "tournament_team_id_2" + """ + tournament_brackets_id_tournament_team_id_1_tournament_team_id_ +} + +""" +input type for incrementing numeric columns in table "tournament_brackets" +""" +input tournament_brackets_inc_input { + group: numeric + match_number: Int + round: Int + team_1_seed: Int + team_2_seed: Int +} + +""" +input type for inserting data into table "tournament_brackets" +""" +input tournament_brackets_insert_input { + bye: Boolean + created_at: timestamptz + finished: Boolean + group: numeric + id: uuid + loser_bracket: tournament_brackets_obj_rel_insert_input + loser_parent_bracket_id: uuid + match: matches_obj_rel_insert_input + match_id: uuid + match_number: Int + match_options_id: uuid + options: match_options_obj_rel_insert_input + parent_bracket: tournament_brackets_obj_rel_insert_input + parent_bracket_id: uuid + path: String + round: Int + scheduled_at: timestamptz + scheduled_eta: timestamptz + scheduling_proposals: league_scheduling_proposals_arr_rel_insert_input + stage: tournament_stages_obj_rel_insert_input + team_1: tournament_teams_obj_rel_insert_input + team_1_seed: Int + team_2: tournament_teams_obj_rel_insert_input + team_2_seed: Int + tournament_stage_id: uuid + tournament_team_id_1: uuid + tournament_team_id_2: uuid +} + +"""aggregate max on columns""" +type tournament_brackets_max_fields { + created_at: timestamptz + group: numeric + id: uuid + loser_parent_bracket_id: uuid + match_id: uuid + match_number: Int + match_options_id: uuid + parent_bracket_id: uuid + path: String + round: Int + scheduled_at: timestamptz + scheduled_eta: timestamptz + team_1_seed: Int + team_2_seed: Int + tournament_stage_id: uuid + tournament_team_id_1: uuid + tournament_team_id_2: uuid +} + +""" +order by max() on columns of table "tournament_brackets" +""" +input tournament_brackets_max_order_by { + created_at: order_by + group: order_by + id: order_by + loser_parent_bracket_id: order_by + match_id: order_by + match_number: order_by + match_options_id: order_by + parent_bracket_id: order_by + path: order_by + round: order_by + scheduled_at: order_by + scheduled_eta: order_by + team_1_seed: order_by + team_2_seed: order_by + tournament_stage_id: order_by + tournament_team_id_1: order_by + tournament_team_id_2: order_by +} + +"""aggregate min on columns""" +type tournament_brackets_min_fields { + created_at: timestamptz + group: numeric + id: uuid + loser_parent_bracket_id: uuid + match_id: uuid + match_number: Int + match_options_id: uuid + parent_bracket_id: uuid + path: String + round: Int + scheduled_at: timestamptz + scheduled_eta: timestamptz + team_1_seed: Int + team_2_seed: Int + tournament_stage_id: uuid + tournament_team_id_1: uuid + tournament_team_id_2: uuid +} + +""" +order by min() on columns of table "tournament_brackets" +""" +input tournament_brackets_min_order_by { + created_at: order_by + group: order_by + id: order_by + loser_parent_bracket_id: order_by + match_id: order_by + match_number: order_by + match_options_id: order_by + parent_bracket_id: order_by + path: order_by + round: order_by + scheduled_at: order_by + scheduled_eta: order_by + team_1_seed: order_by + team_2_seed: order_by + tournament_stage_id: order_by + tournament_team_id_1: order_by + tournament_team_id_2: order_by +} + +""" +response of any mutation on the table "tournament_brackets" +""" +type tournament_brackets_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [tournament_brackets!]! +} + +""" +input type for inserting object relation for remote table "tournament_brackets" +""" +input tournament_brackets_obj_rel_insert_input { + data: tournament_brackets_insert_input! + + """upsert condition""" + on_conflict: tournament_brackets_on_conflict +} + +""" +on_conflict condition type for table "tournament_brackets" +""" +input tournament_brackets_on_conflict { + constraint: tournament_brackets_constraint! + update_columns: [tournament_brackets_update_column!]! = [] + where: tournament_brackets_bool_exp +} + +"""Ordering options when selecting data from "tournament_brackets".""" +input tournament_brackets_order_by { + bye: order_by + created_at: order_by + feeding_brackets_aggregate: tournament_brackets_aggregate_order_by + finished: order_by + group: order_by + id: order_by + loser_bracket: tournament_brackets_order_by + loser_parent_bracket_id: order_by + match: matches_order_by + match_id: order_by + match_number: order_by + match_options_id: order_by + options: match_options_order_by + parent_bracket: tournament_brackets_order_by + parent_bracket_id: order_by + path: order_by + round: order_by + scheduled_at: order_by + scheduled_eta: order_by + scheduling_proposals_aggregate: league_scheduling_proposals_aggregate_order_by + stage: tournament_stages_order_by + team_1: tournament_teams_order_by + team_1_seed: order_by + team_2: tournament_teams_order_by + team_2_seed: order_by + tournament_stage_id: order_by + tournament_team_id_1: order_by + tournament_team_id_2: order_by +} + +"""primary key columns input for table: tournament_brackets""" +input tournament_brackets_pk_columns_input { + id: uuid! +} + +""" +select columns of table "tournament_brackets" +""" +enum tournament_brackets_select_column { + """column name""" + bye + + """column name""" + created_at + + """column name""" + finished + + """column name""" + group + + """column name""" + id + + """column name""" + loser_parent_bracket_id + + """column name""" + match_id + + """column name""" + match_number + + """column name""" + match_options_id + + """column name""" + parent_bracket_id + + """column name""" + path + + """column name""" + round + + """column name""" + scheduled_at + + """column name""" + scheduled_eta + + """column name""" + team_1_seed + + """column name""" + team_2_seed + + """column name""" + tournament_stage_id + + """column name""" + tournament_team_id_1 + + """column name""" + tournament_team_id_2 +} + +""" +select "tournament_brackets_aggregate_bool_exp_bool_and_arguments_columns" columns of table "tournament_brackets" +""" +enum tournament_brackets_select_column_tournament_brackets_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + bye + + """column name""" + finished +} + +""" +select "tournament_brackets_aggregate_bool_exp_bool_or_arguments_columns" columns of table "tournament_brackets" +""" +enum tournament_brackets_select_column_tournament_brackets_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + bye + + """column name""" + finished +} + +""" +input type for updating data in table "tournament_brackets" +""" +input tournament_brackets_set_input { + bye: Boolean + created_at: timestamptz + finished: Boolean + group: numeric + id: uuid + loser_parent_bracket_id: uuid + match_id: uuid + match_number: Int + match_options_id: uuid + parent_bracket_id: uuid + path: String + round: Int + scheduled_at: timestamptz + scheduled_eta: timestamptz + team_1_seed: Int + team_2_seed: Int + tournament_stage_id: uuid + tournament_team_id_1: uuid + tournament_team_id_2: uuid +} + +"""aggregate stddev on columns""" +type tournament_brackets_stddev_fields { + group: Float + match_number: Float + round: Float + team_1_seed: Float + team_2_seed: Float +} + +""" +order by stddev() on columns of table "tournament_brackets" +""" +input tournament_brackets_stddev_order_by { + group: order_by + match_number: order_by + round: order_by + team_1_seed: order_by + team_2_seed: order_by +} + +"""aggregate stddev_pop on columns""" +type tournament_brackets_stddev_pop_fields { + group: Float + match_number: Float + round: Float + team_1_seed: Float + team_2_seed: Float +} + +""" +order by stddev_pop() on columns of table "tournament_brackets" +""" +input tournament_brackets_stddev_pop_order_by { + group: order_by + match_number: order_by + round: order_by + team_1_seed: order_by + team_2_seed: order_by +} + +"""aggregate stddev_samp on columns""" +type tournament_brackets_stddev_samp_fields { + group: Float + match_number: Float + round: Float + team_1_seed: Float + team_2_seed: Float +} + +""" +order by stddev_samp() on columns of table "tournament_brackets" +""" +input tournament_brackets_stddev_samp_order_by { + group: order_by + match_number: order_by + round: order_by + team_1_seed: order_by + team_2_seed: order_by +} + +""" +Streaming cursor of the table "tournament_brackets" +""" +input tournament_brackets_stream_cursor_input { + """Stream column input with initial value""" + initial_value: tournament_brackets_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input tournament_brackets_stream_cursor_value_input { + bye: Boolean + created_at: timestamptz + finished: Boolean + group: numeric + id: uuid + loser_parent_bracket_id: uuid + match_id: uuid + match_number: Int + match_options_id: uuid + parent_bracket_id: uuid + path: String + round: Int + scheduled_at: timestamptz + scheduled_eta: timestamptz + team_1_seed: Int + team_2_seed: Int + tournament_stage_id: uuid + tournament_team_id_1: uuid + tournament_team_id_2: uuid +} + +"""aggregate sum on columns""" +type tournament_brackets_sum_fields { + group: numeric + match_number: Int + round: Int + team_1_seed: Int + team_2_seed: Int +} + +""" +order by sum() on columns of table "tournament_brackets" +""" +input tournament_brackets_sum_order_by { + group: order_by + match_number: order_by + round: order_by + team_1_seed: order_by + team_2_seed: order_by +} + +""" +update columns of table "tournament_brackets" +""" +enum tournament_brackets_update_column { + """column name""" + bye + + """column name""" + created_at + + """column name""" + finished + + """column name""" + group + + """column name""" + id + + """column name""" + loser_parent_bracket_id + + """column name""" + match_id + + """column name""" + match_number + + """column name""" + match_options_id + + """column name""" + parent_bracket_id + + """column name""" + path + + """column name""" + round + + """column name""" + scheduled_at + + """column name""" + scheduled_eta + + """column name""" + team_1_seed + + """column name""" + team_2_seed + + """column name""" + tournament_stage_id + + """column name""" + tournament_team_id_1 + + """column name""" + tournament_team_id_2 +} + +input tournament_brackets_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_brackets_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_brackets_set_input + + """filter the rows which have to be updated""" + where: tournament_brackets_bool_exp! +} + +"""aggregate var_pop on columns""" +type tournament_brackets_var_pop_fields { + group: Float + match_number: Float + round: Float + team_1_seed: Float + team_2_seed: Float +} + +""" +order by var_pop() on columns of table "tournament_brackets" +""" +input tournament_brackets_var_pop_order_by { + group: order_by + match_number: order_by + round: order_by + team_1_seed: order_by + team_2_seed: order_by +} + +"""aggregate var_samp on columns""" +type tournament_brackets_var_samp_fields { + group: Float + match_number: Float + round: Float + team_1_seed: Float + team_2_seed: Float +} + +""" +order by var_samp() on columns of table "tournament_brackets" +""" +input tournament_brackets_var_samp_order_by { + group: order_by + match_number: order_by + round: order_by + team_1_seed: order_by + team_2_seed: order_by +} + +"""aggregate variance on columns""" +type tournament_brackets_variance_fields { + group: Float + match_number: Float + round: Float + team_1_seed: Float + team_2_seed: Float +} + +""" +order by variance() on columns of table "tournament_brackets" +""" +input tournament_brackets_variance_order_by { + group: order_by + match_number: order_by + round: order_by + team_1_seed: order_by + team_2_seed: order_by +} + +""" +columns and relationships of "tournament_categories" +""" +type tournament_categories { + category: e_tournament_categories_enum! + + """An object relationship""" + e_tournament_category: e_tournament_categories! + + """An object relationship""" + tournament: tournaments! + tournament_id: uuid! +} + +""" +aggregated selection of "tournament_categories" +""" +type tournament_categories_aggregate { + aggregate: tournament_categories_aggregate_fields + nodes: [tournament_categories!]! +} + +input tournament_categories_aggregate_bool_exp { + count: tournament_categories_aggregate_bool_exp_count +} + +input tournament_categories_aggregate_bool_exp_count { + arguments: [tournament_categories_select_column!] + distinct: Boolean + filter: tournament_categories_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "tournament_categories" +""" +type tournament_categories_aggregate_fields { + count(columns: [tournament_categories_select_column!], distinct: Boolean): Int! + max: tournament_categories_max_fields + min: tournament_categories_min_fields +} + +""" +order by aggregate values of table "tournament_categories" +""" +input tournament_categories_aggregate_order_by { + count: order_by + max: tournament_categories_max_order_by + min: tournament_categories_min_order_by +} + +""" +input type for inserting array relation for remote table "tournament_categories" +""" +input tournament_categories_arr_rel_insert_input { + data: [tournament_categories_insert_input!]! + + """upsert condition""" + on_conflict: tournament_categories_on_conflict +} + +""" +Boolean expression to filter rows from the table "tournament_categories". All fields are combined with a logical 'AND'. +""" +input tournament_categories_bool_exp { + _and: [tournament_categories_bool_exp!] + _not: tournament_categories_bool_exp + _or: [tournament_categories_bool_exp!] + category: e_tournament_categories_enum_comparison_exp + e_tournament_category: e_tournament_categories_bool_exp + tournament: tournaments_bool_exp + tournament_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "tournament_categories" +""" +enum tournament_categories_constraint { + """ + unique or primary key constraint on columns "tournament_id", "category" + """ + tournament_categories_pkey +} + +""" +input type for inserting data into table "tournament_categories" +""" +input tournament_categories_insert_input { + category: e_tournament_categories_enum + e_tournament_category: e_tournament_categories_obj_rel_insert_input + tournament: tournaments_obj_rel_insert_input + tournament_id: uuid +} + +"""aggregate max on columns""" +type tournament_categories_max_fields { + tournament_id: uuid +} + +""" +order by max() on columns of table "tournament_categories" +""" +input tournament_categories_max_order_by { + tournament_id: order_by +} + +"""aggregate min on columns""" +type tournament_categories_min_fields { + tournament_id: uuid +} + +""" +order by min() on columns of table "tournament_categories" +""" +input tournament_categories_min_order_by { + tournament_id: order_by +} + +""" +response of any mutation on the table "tournament_categories" +""" +type tournament_categories_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [tournament_categories!]! +} + +""" +on_conflict condition type for table "tournament_categories" +""" +input tournament_categories_on_conflict { + constraint: tournament_categories_constraint! + update_columns: [tournament_categories_update_column!]! = [] + where: tournament_categories_bool_exp +} + +"""Ordering options when selecting data from "tournament_categories".""" +input tournament_categories_order_by { + category: order_by + e_tournament_category: e_tournament_categories_order_by + tournament: tournaments_order_by + tournament_id: order_by +} + +"""primary key columns input for table: tournament_categories""" +input tournament_categories_pk_columns_input { + category: e_tournament_categories_enum! + tournament_id: uuid! +} + +""" +select columns of table "tournament_categories" +""" +enum tournament_categories_select_column { + """column name""" + category + + """column name""" + tournament_id +} + +""" +input type for updating data in table "tournament_categories" +""" +input tournament_categories_set_input { + category: e_tournament_categories_enum + tournament_id: uuid +} + +""" +Streaming cursor of the table "tournament_categories" +""" +input tournament_categories_stream_cursor_input { + """Stream column input with initial value""" + initial_value: tournament_categories_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input tournament_categories_stream_cursor_value_input { + category: e_tournament_categories_enum + tournament_id: uuid +} + +""" +update columns of table "tournament_categories" +""" +enum tournament_categories_update_column { + """column name""" + category + + """column name""" + tournament_id +} + +input tournament_categories_updates { + """sets the columns of the filtered rows to the given values""" + _set: tournament_categories_set_input + + """filter the rows which have to be updated""" + where: tournament_categories_bool_exp! +} + +""" +columns and relationships of "tournament_free_agents" +""" +type tournament_free_agents { + checked_in_at: timestamptz + + """Registration priority: decides who makes the cut""" + created_at: timestamptz! + + """An object relationship""" + e_tournament_free_agent_status: e_tournament_free_agent_statuses! + id: uuid! + party_id: uuid + + """An object relationship""" + player: players! + player_steam_id: bigint! + status: e_tournament_free_agent_statuses_enum! + + """An object relationship""" + tournament: tournaments! + tournament_id: uuid! + + """An object relationship""" + tournament_team: tournament_teams + tournament_team_id: uuid +} + +""" +aggregated selection of "tournament_free_agents" +""" +type tournament_free_agents_aggregate { + aggregate: tournament_free_agents_aggregate_fields + nodes: [tournament_free_agents!]! +} + +input tournament_free_agents_aggregate_bool_exp { + count: tournament_free_agents_aggregate_bool_exp_count +} + +input tournament_free_agents_aggregate_bool_exp_count { + arguments: [tournament_free_agents_select_column!] + distinct: Boolean + filter: tournament_free_agents_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "tournament_free_agents" +""" +type tournament_free_agents_aggregate_fields { + avg: tournament_free_agents_avg_fields + count(columns: [tournament_free_agents_select_column!], distinct: Boolean): Int! + max: tournament_free_agents_max_fields + min: tournament_free_agents_min_fields + stddev: tournament_free_agents_stddev_fields + stddev_pop: tournament_free_agents_stddev_pop_fields + stddev_samp: tournament_free_agents_stddev_samp_fields + sum: tournament_free_agents_sum_fields + var_pop: tournament_free_agents_var_pop_fields + var_samp: tournament_free_agents_var_samp_fields + variance: tournament_free_agents_variance_fields +} + +""" +order by aggregate values of table "tournament_free_agents" +""" +input tournament_free_agents_aggregate_order_by { + avg: tournament_free_agents_avg_order_by + count: order_by + max: tournament_free_agents_max_order_by + min: tournament_free_agents_min_order_by + stddev: tournament_free_agents_stddev_order_by + stddev_pop: tournament_free_agents_stddev_pop_order_by + stddev_samp: tournament_free_agents_stddev_samp_order_by + sum: tournament_free_agents_sum_order_by + var_pop: tournament_free_agents_var_pop_order_by + var_samp: tournament_free_agents_var_samp_order_by + variance: tournament_free_agents_variance_order_by +} + +""" +input type for inserting array relation for remote table "tournament_free_agents" +""" +input tournament_free_agents_arr_rel_insert_input { + data: [tournament_free_agents_insert_input!]! + + """upsert condition""" + on_conflict: tournament_free_agents_on_conflict +} + +"""aggregate avg on columns""" +type tournament_free_agents_avg_fields { + player_steam_id: Float +} + +""" +order by avg() on columns of table "tournament_free_agents" +""" +input tournament_free_agents_avg_order_by { + player_steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "tournament_free_agents". All fields are combined with a logical 'AND'. +""" +input tournament_free_agents_bool_exp { + _and: [tournament_free_agents_bool_exp!] + _not: tournament_free_agents_bool_exp + _or: [tournament_free_agents_bool_exp!] + checked_in_at: timestamptz_comparison_exp + created_at: timestamptz_comparison_exp + e_tournament_free_agent_status: e_tournament_free_agent_statuses_bool_exp + id: uuid_comparison_exp + party_id: uuid_comparison_exp + player: players_bool_exp + player_steam_id: bigint_comparison_exp + status: e_tournament_free_agent_statuses_enum_comparison_exp + tournament: tournaments_bool_exp + tournament_id: uuid_comparison_exp + tournament_team: tournament_teams_bool_exp + tournament_team_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "tournament_free_agents" +""" +enum tournament_free_agents_constraint { + """ + unique or primary key constraint on columns "id" + """ + tournament_free_agents_pkey + + """ + unique or primary key constraint on columns "player_steam_id", "tournament_id" + """ + tournament_free_agents_tournament_id_player_steam_id_key +} + +""" +input type for incrementing numeric columns in table "tournament_free_agents" +""" +input tournament_free_agents_inc_input { + player_steam_id: bigint +} + +""" +input type for inserting data into table "tournament_free_agents" +""" +input tournament_free_agents_insert_input { + checked_in_at: timestamptz + + """Registration priority: decides who makes the cut""" + created_at: timestamptz + e_tournament_free_agent_status: e_tournament_free_agent_statuses_obj_rel_insert_input + id: uuid + party_id: uuid + player: players_obj_rel_insert_input + player_steam_id: bigint + status: e_tournament_free_agent_statuses_enum + tournament: tournaments_obj_rel_insert_input + tournament_id: uuid + tournament_team: tournament_teams_obj_rel_insert_input + tournament_team_id: uuid +} + +"""aggregate max on columns""" +type tournament_free_agents_max_fields { + checked_in_at: timestamptz + + """Registration priority: decides who makes the cut""" + created_at: timestamptz + id: uuid + party_id: uuid + player_steam_id: bigint + tournament_id: uuid + tournament_team_id: uuid +} + +""" +order by max() on columns of table "tournament_free_agents" +""" +input tournament_free_agents_max_order_by { + checked_in_at: order_by + + """Registration priority: decides who makes the cut""" + created_at: order_by + id: order_by + party_id: order_by + player_steam_id: order_by + tournament_id: order_by + tournament_team_id: order_by +} + +"""aggregate min on columns""" +type tournament_free_agents_min_fields { + checked_in_at: timestamptz + + """Registration priority: decides who makes the cut""" + created_at: timestamptz + id: uuid + party_id: uuid + player_steam_id: bigint + tournament_id: uuid + tournament_team_id: uuid +} + +""" +order by min() on columns of table "tournament_free_agents" +""" +input tournament_free_agents_min_order_by { + checked_in_at: order_by + + """Registration priority: decides who makes the cut""" + created_at: order_by + id: order_by + party_id: order_by + player_steam_id: order_by + tournament_id: order_by + tournament_team_id: order_by +} + +""" +response of any mutation on the table "tournament_free_agents" +""" +type tournament_free_agents_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [tournament_free_agents!]! +} + +""" +on_conflict condition type for table "tournament_free_agents" +""" +input tournament_free_agents_on_conflict { + constraint: tournament_free_agents_constraint! + update_columns: [tournament_free_agents_update_column!]! = [] + where: tournament_free_agents_bool_exp +} + +"""Ordering options when selecting data from "tournament_free_agents".""" +input tournament_free_agents_order_by { + checked_in_at: order_by + created_at: order_by + e_tournament_free_agent_status: e_tournament_free_agent_statuses_order_by + id: order_by + party_id: order_by + player: players_order_by + player_steam_id: order_by + status: order_by + tournament: tournaments_order_by + tournament_id: order_by + tournament_team: tournament_teams_order_by + tournament_team_id: order_by +} + +"""primary key columns input for table: tournament_free_agents""" +input tournament_free_agents_pk_columns_input { + id: uuid! +} + +""" +select columns of table "tournament_free_agents" +""" +enum tournament_free_agents_select_column { + """column name""" + checked_in_at + + """column name""" + created_at + + """column name""" + id + + """column name""" + party_id + + """column name""" + player_steam_id + + """column name""" + status + + """column name""" + tournament_id + + """column name""" + tournament_team_id +} + +""" +input type for updating data in table "tournament_free_agents" +""" +input tournament_free_agents_set_input { + checked_in_at: timestamptz + + """Registration priority: decides who makes the cut""" + created_at: timestamptz + id: uuid + party_id: uuid + player_steam_id: bigint + status: e_tournament_free_agent_statuses_enum + tournament_id: uuid + tournament_team_id: uuid +} + +"""aggregate stddev on columns""" +type tournament_free_agents_stddev_fields { + player_steam_id: Float +} + +""" +order by stddev() on columns of table "tournament_free_agents" +""" +input tournament_free_agents_stddev_order_by { + player_steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type tournament_free_agents_stddev_pop_fields { + player_steam_id: Float +} + +""" +order by stddev_pop() on columns of table "tournament_free_agents" +""" +input tournament_free_agents_stddev_pop_order_by { + player_steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type tournament_free_agents_stddev_samp_fields { + player_steam_id: Float +} + +""" +order by stddev_samp() on columns of table "tournament_free_agents" +""" +input tournament_free_agents_stddev_samp_order_by { + player_steam_id: order_by +} + +""" +Streaming cursor of the table "tournament_free_agents" +""" +input tournament_free_agents_stream_cursor_input { + """Stream column input with initial value""" + initial_value: tournament_free_agents_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input tournament_free_agents_stream_cursor_value_input { + checked_in_at: timestamptz + + """Registration priority: decides who makes the cut""" + created_at: timestamptz + id: uuid + party_id: uuid + player_steam_id: bigint + status: e_tournament_free_agent_statuses_enum + tournament_id: uuid + tournament_team_id: uuid +} + +"""aggregate sum on columns""" +type tournament_free_agents_sum_fields { + player_steam_id: bigint +} + +""" +order by sum() on columns of table "tournament_free_agents" +""" +input tournament_free_agents_sum_order_by { + player_steam_id: order_by +} + +""" +update columns of table "tournament_free_agents" +""" +enum tournament_free_agents_update_column { + """column name""" + checked_in_at + + """column name""" + created_at + + """column name""" + id + + """column name""" + party_id + + """column name""" + player_steam_id + + """column name""" + status + + """column name""" + tournament_id + + """column name""" + tournament_team_id +} + +input tournament_free_agents_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_free_agents_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_free_agents_set_input + + """filter the rows which have to be updated""" + where: tournament_free_agents_bool_exp! +} + +"""aggregate var_pop on columns""" +type tournament_free_agents_var_pop_fields { + player_steam_id: Float +} + +""" +order by var_pop() on columns of table "tournament_free_agents" +""" +input tournament_free_agents_var_pop_order_by { + player_steam_id: order_by +} + +"""aggregate var_samp on columns""" +type tournament_free_agents_var_samp_fields { + player_steam_id: Float +} + +""" +order by var_samp() on columns of table "tournament_free_agents" +""" +input tournament_free_agents_var_samp_order_by { + player_steam_id: order_by +} + +"""aggregate variance on columns""" +type tournament_free_agents_variance_fields { + player_steam_id: Float +} + +""" +order by variance() on columns of table "tournament_free_agents" +""" +input tournament_free_agents_variance_order_by { + player_steam_id: order_by +} + +""" +columns and relationships of "tournament_invite_code_uses" +""" +type tournament_invite_code_uses { + """An object relationship""" + invite_code: tournament_invite_codes! + invite_code_id: uuid! + + """An object relationship""" + player: players! + player_steam_id: bigint! + + """An object relationship""" + team: teams + team_id: uuid + used_at: timestamptz! +} + +""" +aggregated selection of "tournament_invite_code_uses" +""" +type tournament_invite_code_uses_aggregate { + aggregate: tournament_invite_code_uses_aggregate_fields + nodes: [tournament_invite_code_uses!]! +} + +input tournament_invite_code_uses_aggregate_bool_exp { + count: tournament_invite_code_uses_aggregate_bool_exp_count +} + +input tournament_invite_code_uses_aggregate_bool_exp_count { + arguments: [tournament_invite_code_uses_select_column!] + distinct: Boolean + filter: tournament_invite_code_uses_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "tournament_invite_code_uses" +""" +type tournament_invite_code_uses_aggregate_fields { + avg: tournament_invite_code_uses_avg_fields + count(columns: [tournament_invite_code_uses_select_column!], distinct: Boolean): Int! + max: tournament_invite_code_uses_max_fields + min: tournament_invite_code_uses_min_fields + stddev: tournament_invite_code_uses_stddev_fields + stddev_pop: tournament_invite_code_uses_stddev_pop_fields + stddev_samp: tournament_invite_code_uses_stddev_samp_fields + sum: tournament_invite_code_uses_sum_fields + var_pop: tournament_invite_code_uses_var_pop_fields + var_samp: tournament_invite_code_uses_var_samp_fields + variance: tournament_invite_code_uses_variance_fields +} + +""" +order by aggregate values of table "tournament_invite_code_uses" +""" +input tournament_invite_code_uses_aggregate_order_by { + avg: tournament_invite_code_uses_avg_order_by + count: order_by + max: tournament_invite_code_uses_max_order_by + min: tournament_invite_code_uses_min_order_by + stddev: tournament_invite_code_uses_stddev_order_by + stddev_pop: tournament_invite_code_uses_stddev_pop_order_by + stddev_samp: tournament_invite_code_uses_stddev_samp_order_by + sum: tournament_invite_code_uses_sum_order_by + var_pop: tournament_invite_code_uses_var_pop_order_by + var_samp: tournament_invite_code_uses_var_samp_order_by + variance: tournament_invite_code_uses_variance_order_by +} + +""" +input type for inserting array relation for remote table "tournament_invite_code_uses" +""" +input tournament_invite_code_uses_arr_rel_insert_input { + data: [tournament_invite_code_uses_insert_input!]! + + """upsert condition""" + on_conflict: tournament_invite_code_uses_on_conflict +} + +"""aggregate avg on columns""" +type tournament_invite_code_uses_avg_fields { + player_steam_id: Float +} + +""" +order by avg() on columns of table "tournament_invite_code_uses" +""" +input tournament_invite_code_uses_avg_order_by { + player_steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "tournament_invite_code_uses". All fields are combined with a logical 'AND'. +""" +input tournament_invite_code_uses_bool_exp { + _and: [tournament_invite_code_uses_bool_exp!] + _not: tournament_invite_code_uses_bool_exp + _or: [tournament_invite_code_uses_bool_exp!] + invite_code: tournament_invite_codes_bool_exp + invite_code_id: uuid_comparison_exp + player: players_bool_exp + player_steam_id: bigint_comparison_exp + team: teams_bool_exp + team_id: uuid_comparison_exp + used_at: timestamptz_comparison_exp +} + +""" +unique or primary key constraints on table "tournament_invite_code_uses" +""" +enum tournament_invite_code_uses_constraint { + """ + unique or primary key constraint on columns "player_steam_id", "invite_code_id" + """ + tournament_invite_code_uses_pkey +} + +""" +input type for incrementing numeric columns in table "tournament_invite_code_uses" +""" +input tournament_invite_code_uses_inc_input { + player_steam_id: bigint +} + +""" +input type for inserting data into table "tournament_invite_code_uses" +""" +input tournament_invite_code_uses_insert_input { + invite_code: tournament_invite_codes_obj_rel_insert_input + invite_code_id: uuid + player: players_obj_rel_insert_input + player_steam_id: bigint + team: teams_obj_rel_insert_input + team_id: uuid + used_at: timestamptz +} + +"""aggregate max on columns""" +type tournament_invite_code_uses_max_fields { + invite_code_id: uuid + player_steam_id: bigint + team_id: uuid + used_at: timestamptz +} + +""" +order by max() on columns of table "tournament_invite_code_uses" +""" +input tournament_invite_code_uses_max_order_by { + invite_code_id: order_by + player_steam_id: order_by + team_id: order_by + used_at: order_by +} + +"""aggregate min on columns""" +type tournament_invite_code_uses_min_fields { + invite_code_id: uuid + player_steam_id: bigint + team_id: uuid + used_at: timestamptz +} + +""" +order by min() on columns of table "tournament_invite_code_uses" +""" +input tournament_invite_code_uses_min_order_by { + invite_code_id: order_by + player_steam_id: order_by + team_id: order_by + used_at: order_by +} + +""" +response of any mutation on the table "tournament_invite_code_uses" +""" +type tournament_invite_code_uses_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [tournament_invite_code_uses!]! +} + +""" +on_conflict condition type for table "tournament_invite_code_uses" +""" +input tournament_invite_code_uses_on_conflict { + constraint: tournament_invite_code_uses_constraint! + update_columns: [tournament_invite_code_uses_update_column!]! = [] + where: tournament_invite_code_uses_bool_exp +} + +""" +Ordering options when selecting data from "tournament_invite_code_uses". +""" +input tournament_invite_code_uses_order_by { + invite_code: tournament_invite_codes_order_by + invite_code_id: order_by + player: players_order_by + player_steam_id: order_by + team: teams_order_by + team_id: order_by + used_at: order_by +} + +"""primary key columns input for table: tournament_invite_code_uses""" +input tournament_invite_code_uses_pk_columns_input { + invite_code_id: uuid! + player_steam_id: bigint! +} + +""" +select columns of table "tournament_invite_code_uses" +""" +enum tournament_invite_code_uses_select_column { + """column name""" + invite_code_id + + """column name""" + player_steam_id + + """column name""" + team_id + + """column name""" + used_at +} + +""" +input type for updating data in table "tournament_invite_code_uses" +""" +input tournament_invite_code_uses_set_input { + invite_code_id: uuid + player_steam_id: bigint + team_id: uuid + used_at: timestamptz +} + +"""aggregate stddev on columns""" +type tournament_invite_code_uses_stddev_fields { + player_steam_id: Float +} + +""" +order by stddev() on columns of table "tournament_invite_code_uses" +""" +input tournament_invite_code_uses_stddev_order_by { + player_steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type tournament_invite_code_uses_stddev_pop_fields { + player_steam_id: Float +} + +""" +order by stddev_pop() on columns of table "tournament_invite_code_uses" +""" +input tournament_invite_code_uses_stddev_pop_order_by { + player_steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type tournament_invite_code_uses_stddev_samp_fields { + player_steam_id: Float +} + +""" +order by stddev_samp() on columns of table "tournament_invite_code_uses" +""" +input tournament_invite_code_uses_stddev_samp_order_by { + player_steam_id: order_by +} + +""" +Streaming cursor of the table "tournament_invite_code_uses" +""" +input tournament_invite_code_uses_stream_cursor_input { + """Stream column input with initial value""" + initial_value: tournament_invite_code_uses_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input tournament_invite_code_uses_stream_cursor_value_input { + invite_code_id: uuid + player_steam_id: bigint + team_id: uuid + used_at: timestamptz +} + +"""aggregate sum on columns""" +type tournament_invite_code_uses_sum_fields { + player_steam_id: bigint +} + +""" +order by sum() on columns of table "tournament_invite_code_uses" +""" +input tournament_invite_code_uses_sum_order_by { + player_steam_id: order_by +} + +""" +update columns of table "tournament_invite_code_uses" +""" +enum tournament_invite_code_uses_update_column { + """column name""" + invite_code_id + + """column name""" + player_steam_id + + """column name""" + team_id + + """column name""" + used_at +} + +input tournament_invite_code_uses_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_invite_code_uses_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_invite_code_uses_set_input + + """filter the rows which have to be updated""" + where: tournament_invite_code_uses_bool_exp! +} + +"""aggregate var_pop on columns""" +type tournament_invite_code_uses_var_pop_fields { + player_steam_id: Float +} + +""" +order by var_pop() on columns of table "tournament_invite_code_uses" +""" +input tournament_invite_code_uses_var_pop_order_by { + player_steam_id: order_by +} + +"""aggregate var_samp on columns""" +type tournament_invite_code_uses_var_samp_fields { + player_steam_id: Float +} + +""" +order by var_samp() on columns of table "tournament_invite_code_uses" +""" +input tournament_invite_code_uses_var_samp_order_by { + player_steam_id: order_by +} + +"""aggregate variance on columns""" +type tournament_invite_code_uses_variance_fields { + player_steam_id: Float +} + +""" +order by variance() on columns of table "tournament_invite_code_uses" +""" +input tournament_invite_code_uses_variance_order_by { + player_steam_id: order_by +} + +""" +columns and relationships of "tournament_invite_codes" +""" +type tournament_invite_codes { + code: String! + created_at: timestamptz! + + """An object relationship""" + created_by: players! + created_by_player_steam_id: bigint! + expires_at: timestamptz + id: uuid! + max_uses: Int + revoked_at: timestamptz + + """An object relationship""" + tournament: tournaments! + tournament_id: uuid! + + """An array relationship""" + used_by( + """distinct select on columns""" + distinct_on: [tournament_invite_code_uses_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_invite_code_uses_order_by!] + + """filter the rows returned""" + where: tournament_invite_code_uses_bool_exp + ): [tournament_invite_code_uses!]! + + """An aggregate relationship""" + used_by_aggregate( + """distinct select on columns""" + distinct_on: [tournament_invite_code_uses_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_invite_code_uses_order_by!] + + """filter the rows returned""" + where: tournament_invite_code_uses_bool_exp + ): tournament_invite_code_uses_aggregate! + uses: Int! +} + +""" +aggregated selection of "tournament_invite_codes" +""" +type tournament_invite_codes_aggregate { + aggregate: tournament_invite_codes_aggregate_fields + nodes: [tournament_invite_codes!]! +} + +""" +aggregate fields of "tournament_invite_codes" +""" +type tournament_invite_codes_aggregate_fields { + avg: tournament_invite_codes_avg_fields + count(columns: [tournament_invite_codes_select_column!], distinct: Boolean): Int! + max: tournament_invite_codes_max_fields + min: tournament_invite_codes_min_fields + stddev: tournament_invite_codes_stddev_fields + stddev_pop: tournament_invite_codes_stddev_pop_fields + stddev_samp: tournament_invite_codes_stddev_samp_fields + sum: tournament_invite_codes_sum_fields + var_pop: tournament_invite_codes_var_pop_fields + var_samp: tournament_invite_codes_var_samp_fields + variance: tournament_invite_codes_variance_fields +} + +"""aggregate avg on columns""" +type tournament_invite_codes_avg_fields { + created_by_player_steam_id: Float + max_uses: Float + uses: Float +} + +""" +Boolean expression to filter rows from the table "tournament_invite_codes". All fields are combined with a logical 'AND'. +""" +input tournament_invite_codes_bool_exp { + _and: [tournament_invite_codes_bool_exp!] + _not: tournament_invite_codes_bool_exp + _or: [tournament_invite_codes_bool_exp!] + code: String_comparison_exp + created_at: timestamptz_comparison_exp + created_by: players_bool_exp + created_by_player_steam_id: bigint_comparison_exp + expires_at: timestamptz_comparison_exp + id: uuid_comparison_exp + max_uses: Int_comparison_exp + revoked_at: timestamptz_comparison_exp + tournament: tournaments_bool_exp + tournament_id: uuid_comparison_exp + used_by: tournament_invite_code_uses_bool_exp + used_by_aggregate: tournament_invite_code_uses_aggregate_bool_exp + uses: Int_comparison_exp +} + +""" +unique or primary key constraints on table "tournament_invite_codes" +""" +enum tournament_invite_codes_constraint { + """ + unique or primary key constraint on columns "code" + """ + tournament_invite_codes_code_key + + """ + unique or primary key constraint on columns "id" + """ + tournament_invite_codes_pkey +} + +""" +input type for incrementing numeric columns in table "tournament_invite_codes" +""" +input tournament_invite_codes_inc_input { + created_by_player_steam_id: bigint + max_uses: Int + uses: Int +} + +""" +input type for inserting data into table "tournament_invite_codes" +""" +input tournament_invite_codes_insert_input { + code: String + created_at: timestamptz + created_by: players_obj_rel_insert_input + created_by_player_steam_id: bigint + expires_at: timestamptz + id: uuid + max_uses: Int + revoked_at: timestamptz + tournament: tournaments_obj_rel_insert_input + tournament_id: uuid + used_by: tournament_invite_code_uses_arr_rel_insert_input + uses: Int +} + +"""aggregate max on columns""" +type tournament_invite_codes_max_fields { + code: String + created_at: timestamptz + created_by_player_steam_id: bigint + expires_at: timestamptz + id: uuid + max_uses: Int + revoked_at: timestamptz + tournament_id: uuid + uses: Int +} + +"""aggregate min on columns""" +type tournament_invite_codes_min_fields { + code: String + created_at: timestamptz + created_by_player_steam_id: bigint + expires_at: timestamptz + id: uuid + max_uses: Int + revoked_at: timestamptz + tournament_id: uuid + uses: Int +} + +""" +response of any mutation on the table "tournament_invite_codes" +""" +type tournament_invite_codes_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [tournament_invite_codes!]! +} + +""" +input type for inserting object relation for remote table "tournament_invite_codes" +""" +input tournament_invite_codes_obj_rel_insert_input { + data: tournament_invite_codes_insert_input! + + """upsert condition""" + on_conflict: tournament_invite_codes_on_conflict +} + +""" +on_conflict condition type for table "tournament_invite_codes" +""" +input tournament_invite_codes_on_conflict { + constraint: tournament_invite_codes_constraint! + update_columns: [tournament_invite_codes_update_column!]! = [] + where: tournament_invite_codes_bool_exp +} + +"""Ordering options when selecting data from "tournament_invite_codes".""" +input tournament_invite_codes_order_by { + code: order_by + created_at: order_by + created_by: players_order_by + created_by_player_steam_id: order_by + expires_at: order_by + id: order_by + max_uses: order_by + revoked_at: order_by + tournament: tournaments_order_by + tournament_id: order_by + used_by_aggregate: tournament_invite_code_uses_aggregate_order_by + uses: order_by +} + +"""primary key columns input for table: tournament_invite_codes""" +input tournament_invite_codes_pk_columns_input { + id: uuid! +} + +""" +select columns of table "tournament_invite_codes" +""" +enum tournament_invite_codes_select_column { + """column name""" + code + + """column name""" + created_at + + """column name""" + created_by_player_steam_id + + """column name""" + expires_at + + """column name""" + id + + """column name""" + max_uses + + """column name""" + revoked_at + + """column name""" + tournament_id + + """column name""" + uses +} + +""" +input type for updating data in table "tournament_invite_codes" +""" +input tournament_invite_codes_set_input { + code: String + created_at: timestamptz + created_by_player_steam_id: bigint + expires_at: timestamptz + id: uuid + max_uses: Int + revoked_at: timestamptz + tournament_id: uuid + uses: Int +} + +"""aggregate stddev on columns""" +type tournament_invite_codes_stddev_fields { + created_by_player_steam_id: Float + max_uses: Float + uses: Float +} + +"""aggregate stddev_pop on columns""" +type tournament_invite_codes_stddev_pop_fields { + created_by_player_steam_id: Float + max_uses: Float + uses: Float +} + +"""aggregate stddev_samp on columns""" +type tournament_invite_codes_stddev_samp_fields { + created_by_player_steam_id: Float + max_uses: Float + uses: Float +} + +""" +Streaming cursor of the table "tournament_invite_codes" +""" +input tournament_invite_codes_stream_cursor_input { + """Stream column input with initial value""" + initial_value: tournament_invite_codes_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input tournament_invite_codes_stream_cursor_value_input { + code: String + created_at: timestamptz + created_by_player_steam_id: bigint + expires_at: timestamptz + id: uuid + max_uses: Int + revoked_at: timestamptz + tournament_id: uuid + uses: Int +} + +"""aggregate sum on columns""" +type tournament_invite_codes_sum_fields { + created_by_player_steam_id: bigint + max_uses: Int + uses: Int +} + +""" +update columns of table "tournament_invite_codes" +""" +enum tournament_invite_codes_update_column { + """column name""" + code + + """column name""" + created_at + + """column name""" + created_by_player_steam_id + + """column name""" + expires_at + + """column name""" + id + + """column name""" + max_uses + + """column name""" + revoked_at + + """column name""" + tournament_id + + """column name""" + uses +} + +input tournament_invite_codes_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_invite_codes_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_invite_codes_set_input + + """filter the rows which have to be updated""" + where: tournament_invite_codes_bool_exp! +} + +"""aggregate var_pop on columns""" +type tournament_invite_codes_var_pop_fields { + created_by_player_steam_id: Float + max_uses: Float + uses: Float +} + +"""aggregate var_samp on columns""" +type tournament_invite_codes_var_samp_fields { + created_by_player_steam_id: Float + max_uses: Float + uses: Float +} + +"""aggregate variance on columns""" +type tournament_invite_codes_variance_fields { + created_by_player_steam_id: Float + max_uses: Float + uses: Float +} + +""" +columns and relationships of "tournament_invites" +""" +type tournament_invites { + created_at: timestamptz! + id: uuid! + + """An object relationship""" + invited_by: players! + invited_by_player_steam_id: bigint! + + """An object relationship""" + player: players + steam_id: bigint + + """An object relationship""" + team: teams + team_id: uuid + + """An object relationship""" + tournament: tournaments! + tournament_id: uuid! +} + +""" +aggregated selection of "tournament_invites" +""" +type tournament_invites_aggregate { + aggregate: tournament_invites_aggregate_fields + nodes: [tournament_invites!]! +} + +""" +aggregate fields of "tournament_invites" +""" +type tournament_invites_aggregate_fields { + avg: tournament_invites_avg_fields + count(columns: [tournament_invites_select_column!], distinct: Boolean): Int! + max: tournament_invites_max_fields + min: tournament_invites_min_fields + stddev: tournament_invites_stddev_fields + stddev_pop: tournament_invites_stddev_pop_fields + stddev_samp: tournament_invites_stddev_samp_fields + sum: tournament_invites_sum_fields + var_pop: tournament_invites_var_pop_fields + var_samp: tournament_invites_var_samp_fields + variance: tournament_invites_variance_fields +} + +"""aggregate avg on columns""" +type tournament_invites_avg_fields { + invited_by_player_steam_id: Float + steam_id: Float +} + +""" +Boolean expression to filter rows from the table "tournament_invites". All fields are combined with a logical 'AND'. +""" +input tournament_invites_bool_exp { + _and: [tournament_invites_bool_exp!] + _not: tournament_invites_bool_exp + _or: [tournament_invites_bool_exp!] + created_at: timestamptz_comparison_exp + id: uuid_comparison_exp + invited_by: players_bool_exp + invited_by_player_steam_id: bigint_comparison_exp + player: players_bool_exp + steam_id: bigint_comparison_exp + team: teams_bool_exp + team_id: uuid_comparison_exp + tournament: tournaments_bool_exp + tournament_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "tournament_invites" +""" +enum tournament_invites_constraint { + """ + unique or primary key constraint on columns "steam_id", "tournament_id" + """ + idx_tournament_invites_player_unique + + """ + unique or primary key constraint on columns "tournament_id", "team_id" + """ + idx_tournament_invites_team_unique + + """ + unique or primary key constraint on columns "id" + """ + tournament_invites_pkey +} + +""" +input type for incrementing numeric columns in table "tournament_invites" +""" +input tournament_invites_inc_input { + invited_by_player_steam_id: bigint + steam_id: bigint +} + +""" +input type for inserting data into table "tournament_invites" +""" +input tournament_invites_insert_input { + created_at: timestamptz + id: uuid + invited_by: players_obj_rel_insert_input + invited_by_player_steam_id: bigint + player: players_obj_rel_insert_input + steam_id: bigint + team: teams_obj_rel_insert_input + team_id: uuid + tournament: tournaments_obj_rel_insert_input + tournament_id: uuid +} + +"""aggregate max on columns""" +type tournament_invites_max_fields { + created_at: timestamptz + id: uuid + invited_by_player_steam_id: bigint + steam_id: bigint + team_id: uuid + tournament_id: uuid +} + +"""aggregate min on columns""" +type tournament_invites_min_fields { + created_at: timestamptz + id: uuid + invited_by_player_steam_id: bigint + steam_id: bigint + team_id: uuid + tournament_id: uuid +} + +""" +response of any mutation on the table "tournament_invites" +""" +type tournament_invites_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [tournament_invites!]! +} + +""" +on_conflict condition type for table "tournament_invites" +""" +input tournament_invites_on_conflict { + constraint: tournament_invites_constraint! + update_columns: [tournament_invites_update_column!]! = [] + where: tournament_invites_bool_exp +} + +"""Ordering options when selecting data from "tournament_invites".""" +input tournament_invites_order_by { + created_at: order_by + id: order_by + invited_by: players_order_by + invited_by_player_steam_id: order_by + player: players_order_by + steam_id: order_by + team: teams_order_by + team_id: order_by + tournament: tournaments_order_by + tournament_id: order_by +} + +"""primary key columns input for table: tournament_invites""" +input tournament_invites_pk_columns_input { + id: uuid! +} + +""" +select columns of table "tournament_invites" +""" +enum tournament_invites_select_column { + """column name""" + created_at + + """column name""" + id + + """column name""" + invited_by_player_steam_id + + """column name""" + steam_id + + """column name""" + team_id + + """column name""" + tournament_id +} + +""" +input type for updating data in table "tournament_invites" +""" +input tournament_invites_set_input { + created_at: timestamptz + id: uuid + invited_by_player_steam_id: bigint + steam_id: bigint + team_id: uuid + tournament_id: uuid +} + +"""aggregate stddev on columns""" +type tournament_invites_stddev_fields { + invited_by_player_steam_id: Float + steam_id: Float +} + +"""aggregate stddev_pop on columns""" +type tournament_invites_stddev_pop_fields { + invited_by_player_steam_id: Float + steam_id: Float +} + +"""aggregate stddev_samp on columns""" +type tournament_invites_stddev_samp_fields { + invited_by_player_steam_id: Float + steam_id: Float +} + +""" +Streaming cursor of the table "tournament_invites" +""" +input tournament_invites_stream_cursor_input { + """Stream column input with initial value""" + initial_value: tournament_invites_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input tournament_invites_stream_cursor_value_input { + created_at: timestamptz + id: uuid + invited_by_player_steam_id: bigint + steam_id: bigint + team_id: uuid + tournament_id: uuid +} + +"""aggregate sum on columns""" +type tournament_invites_sum_fields { + invited_by_player_steam_id: bigint + steam_id: bigint +} + +""" +update columns of table "tournament_invites" +""" +enum tournament_invites_update_column { + """column name""" + created_at + + """column name""" + id + + """column name""" + invited_by_player_steam_id + + """column name""" + steam_id + + """column name""" + team_id + + """column name""" + tournament_id +} + +input tournament_invites_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_invites_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_invites_set_input + + """filter the rows which have to be updated""" + where: tournament_invites_bool_exp! +} + +"""aggregate var_pop on columns""" +type tournament_invites_var_pop_fields { + invited_by_player_steam_id: Float + steam_id: Float +} + +"""aggregate var_samp on columns""" +type tournament_invites_var_samp_fields { + invited_by_player_steam_id: Float + steam_id: Float +} + +"""aggregate variance on columns""" +type tournament_invites_variance_fields { + invited_by_player_steam_id: Float + steam_id: Float +} + +""" +columns and relationships of "tournament_leaderboard_entries" +""" +type tournament_leaderboard_entries { + adr: float8! + assists: Int! + deaths: Int! + headshot_percentage: float8! + kdr: float8! + kills: Int! + matches_played: Int! + player_avatar_url: String + player_country: String + player_custom_avatar_url: String + player_name: String! + player_steam_id: String! + rating: float8! + rounds_played: Int! + team_name: String + tournament_team_id: uuid +} + +type tournament_leaderboard_entries_aggregate { + aggregate: tournament_leaderboard_entries_aggregate_fields + nodes: [tournament_leaderboard_entries!]! +} + +""" +aggregate fields of "tournament_leaderboard_entries" +""" +type tournament_leaderboard_entries_aggregate_fields { + avg: tournament_leaderboard_entries_avg_fields + count(columns: [tournament_leaderboard_entries_select_column!], distinct: Boolean): Int! + max: tournament_leaderboard_entries_max_fields + min: tournament_leaderboard_entries_min_fields + stddev: tournament_leaderboard_entries_stddev_fields + stddev_pop: tournament_leaderboard_entries_stddev_pop_fields + stddev_samp: tournament_leaderboard_entries_stddev_samp_fields + sum: tournament_leaderboard_entries_sum_fields + var_pop: tournament_leaderboard_entries_var_pop_fields + var_samp: tournament_leaderboard_entries_var_samp_fields + variance: tournament_leaderboard_entries_variance_fields +} + +"""aggregate avg on columns""" +type tournament_leaderboard_entries_avg_fields { + adr: Float + assists: Float + deaths: Float + headshot_percentage: Float + kdr: Float + kills: Float + matches_played: Float + rating: Float + rounds_played: Float +} + +""" +Boolean expression to filter rows from the table "tournament_leaderboard_entries". All fields are combined with a logical 'AND'. +""" +input tournament_leaderboard_entries_bool_exp { + _and: [tournament_leaderboard_entries_bool_exp!] + _not: tournament_leaderboard_entries_bool_exp + _or: [tournament_leaderboard_entries_bool_exp!] + adr: float8_comparison_exp + assists: Int_comparison_exp + deaths: Int_comparison_exp + headshot_percentage: float8_comparison_exp + kdr: float8_comparison_exp + kills: Int_comparison_exp + matches_played: Int_comparison_exp + player_avatar_url: String_comparison_exp + player_country: String_comparison_exp + player_custom_avatar_url: String_comparison_exp + player_name: String_comparison_exp + player_steam_id: String_comparison_exp + rating: float8_comparison_exp + rounds_played: Int_comparison_exp + team_name: String_comparison_exp + tournament_team_id: uuid_comparison_exp +} + +""" +input type for incrementing numeric columns in table "tournament_leaderboard_entries" +""" +input tournament_leaderboard_entries_inc_input { + adr: float8 + assists: Int + deaths: Int + headshot_percentage: float8 + kdr: float8 + kills: Int + matches_played: Int + rating: float8 + rounds_played: Int +} + +""" +input type for inserting data into table "tournament_leaderboard_entries" +""" +input tournament_leaderboard_entries_insert_input { + adr: float8 + assists: Int + deaths: Int + headshot_percentage: float8 + kdr: float8 + kills: Int + matches_played: Int + player_avatar_url: String + player_country: String + player_custom_avatar_url: String + player_name: String + player_steam_id: String + rating: float8 + rounds_played: Int + team_name: String + tournament_team_id: uuid +} + +"""aggregate max on columns""" +type tournament_leaderboard_entries_max_fields { + adr: float8 + assists: Int + deaths: Int + headshot_percentage: float8 + kdr: float8 + kills: Int + matches_played: Int + player_avatar_url: String + player_country: String + player_custom_avatar_url: String + player_name: String + player_steam_id: String + rating: float8 + rounds_played: Int + team_name: String + tournament_team_id: uuid +} + +"""aggregate min on columns""" +type tournament_leaderboard_entries_min_fields { + adr: float8 + assists: Int + deaths: Int + headshot_percentage: float8 + kdr: float8 + kills: Int + matches_played: Int + player_avatar_url: String + player_country: String + player_custom_avatar_url: String + player_name: String + player_steam_id: String + rating: float8 + rounds_played: Int + team_name: String + tournament_team_id: uuid +} + +""" +response of any mutation on the table "tournament_leaderboard_entries" +""" +type tournament_leaderboard_entries_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [tournament_leaderboard_entries!]! +} + +""" +Ordering options when selecting data from "tournament_leaderboard_entries". +""" +input tournament_leaderboard_entries_order_by { + adr: order_by + assists: order_by + deaths: order_by + headshot_percentage: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_avatar_url: order_by + player_country: order_by + player_custom_avatar_url: order_by + player_name: order_by + player_steam_id: order_by + rating: order_by + rounds_played: order_by + team_name: order_by + tournament_team_id: order_by +} + +""" +select columns of table "tournament_leaderboard_entries" +""" +enum tournament_leaderboard_entries_select_column { + """column name""" + adr + + """column name""" + assists + + """column name""" + deaths + + """column name""" + headshot_percentage + + """column name""" + kdr + + """column name""" + kills + + """column name""" + matches_played + + """column name""" + player_avatar_url + + """column name""" + player_country + + """column name""" + player_custom_avatar_url + + """column name""" + player_name + + """column name""" + player_steam_id + + """column name""" + rating + + """column name""" + rounds_played + + """column name""" + team_name + + """column name""" + tournament_team_id +} + +""" +input type for updating data in table "tournament_leaderboard_entries" +""" +input tournament_leaderboard_entries_set_input { + adr: float8 + assists: Int + deaths: Int + headshot_percentage: float8 + kdr: float8 + kills: Int + matches_played: Int + player_avatar_url: String + player_country: String + player_custom_avatar_url: String + player_name: String + player_steam_id: String + rating: float8 + rounds_played: Int + team_name: String + tournament_team_id: uuid +} + +"""aggregate stddev on columns""" +type tournament_leaderboard_entries_stddev_fields { + adr: Float + assists: Float + deaths: Float + headshot_percentage: Float + kdr: Float + kills: Float + matches_played: Float + rating: Float + rounds_played: Float +} + +"""aggregate stddev_pop on columns""" +type tournament_leaderboard_entries_stddev_pop_fields { + adr: Float + assists: Float + deaths: Float + headshot_percentage: Float + kdr: Float + kills: Float + matches_played: Float + rating: Float + rounds_played: Float +} + +"""aggregate stddev_samp on columns""" +type tournament_leaderboard_entries_stddev_samp_fields { + adr: Float + assists: Float + deaths: Float + headshot_percentage: Float + kdr: Float + kills: Float + matches_played: Float + rating: Float + rounds_played: Float +} + +""" +Streaming cursor of the table "tournament_leaderboard_entries" +""" +input tournament_leaderboard_entries_stream_cursor_input { + """Stream column input with initial value""" + initial_value: tournament_leaderboard_entries_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input tournament_leaderboard_entries_stream_cursor_value_input { + adr: float8 + assists: Int + deaths: Int + headshot_percentage: float8 + kdr: float8 + kills: Int + matches_played: Int + player_avatar_url: String + player_country: String + player_custom_avatar_url: String + player_name: String + player_steam_id: String + rating: float8 + rounds_played: Int + team_name: String + tournament_team_id: uuid +} + +"""aggregate sum on columns""" +type tournament_leaderboard_entries_sum_fields { + adr: float8 + assists: Int + deaths: Int + headshot_percentage: float8 + kdr: float8 + kills: Int + matches_played: Int + rating: float8 + rounds_played: Int +} + +input tournament_leaderboard_entries_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_leaderboard_entries_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_leaderboard_entries_set_input + + """filter the rows which have to be updated""" + where: tournament_leaderboard_entries_bool_exp! +} + +"""aggregate var_pop on columns""" +type tournament_leaderboard_entries_var_pop_fields { + adr: Float + assists: Float + deaths: Float + headshot_percentage: Float + kdr: Float + kills: Float + matches_played: Float + rating: Float + rounds_played: Float +} + +"""aggregate var_samp on columns""" +type tournament_leaderboard_entries_var_samp_fields { + adr: Float + assists: Float + deaths: Float + headshot_percentage: Float + kdr: Float + kills: Float + matches_played: Float + rating: Float + rounds_played: Float +} + +"""aggregate variance on columns""" +type tournament_leaderboard_entries_variance_fields { + adr: Float + assists: Float + deaths: Float + headshot_percentage: Float + kdr: Float + kills: Float + matches_played: Float + rating: Float + rounds_played: Float +} + +""" +columns and relationships of "tournament_no_shows" +""" +type tournament_no_shows { + id: uuid! + occurred_at: timestamptz! + + """An object relationship""" + player: players! + player_steam_id: bigint! + + """An object relationship""" + tournament: tournaments! + tournament_id: uuid! + + """An object relationship""" + tournament_team: tournament_teams + tournament_team_id: uuid +} + +""" +aggregated selection of "tournament_no_shows" +""" +type tournament_no_shows_aggregate { + aggregate: tournament_no_shows_aggregate_fields + nodes: [tournament_no_shows!]! +} + +""" +aggregate fields of "tournament_no_shows" +""" +type tournament_no_shows_aggregate_fields { + avg: tournament_no_shows_avg_fields + count(columns: [tournament_no_shows_select_column!], distinct: Boolean): Int! + max: tournament_no_shows_max_fields + min: tournament_no_shows_min_fields + stddev: tournament_no_shows_stddev_fields + stddev_pop: tournament_no_shows_stddev_pop_fields + stddev_samp: tournament_no_shows_stddev_samp_fields + sum: tournament_no_shows_sum_fields + var_pop: tournament_no_shows_var_pop_fields + var_samp: tournament_no_shows_var_samp_fields + variance: tournament_no_shows_variance_fields +} + +"""aggregate avg on columns""" +type tournament_no_shows_avg_fields { + player_steam_id: Float +} + +""" +Boolean expression to filter rows from the table "tournament_no_shows". All fields are combined with a logical 'AND'. +""" +input tournament_no_shows_bool_exp { + _and: [tournament_no_shows_bool_exp!] + _not: tournament_no_shows_bool_exp + _or: [tournament_no_shows_bool_exp!] + id: uuid_comparison_exp + occurred_at: timestamptz_comparison_exp + player: players_bool_exp + player_steam_id: bigint_comparison_exp + tournament: tournaments_bool_exp + tournament_id: uuid_comparison_exp + tournament_team: tournament_teams_bool_exp + tournament_team_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "tournament_no_shows" +""" +enum tournament_no_shows_constraint { + """ + unique or primary key constraint on columns "id" + """ + tournament_no_shows_pkey + + """ + unique or primary key constraint on columns "player_steam_id", "tournament_id" + """ + tournament_no_shows_tournament_player_key +} + +""" +input type for incrementing numeric columns in table "tournament_no_shows" +""" +input tournament_no_shows_inc_input { + player_steam_id: bigint +} + +""" +input type for inserting data into table "tournament_no_shows" +""" +input tournament_no_shows_insert_input { + id: uuid + occurred_at: timestamptz + player: players_obj_rel_insert_input + player_steam_id: bigint + tournament: tournaments_obj_rel_insert_input + tournament_id: uuid + tournament_team: tournament_teams_obj_rel_insert_input + tournament_team_id: uuid +} + +"""aggregate max on columns""" +type tournament_no_shows_max_fields { + id: uuid + occurred_at: timestamptz + player_steam_id: bigint + tournament_id: uuid + tournament_team_id: uuid +} + +"""aggregate min on columns""" +type tournament_no_shows_min_fields { + id: uuid + occurred_at: timestamptz + player_steam_id: bigint + tournament_id: uuid + tournament_team_id: uuid +} + +""" +response of any mutation on the table "tournament_no_shows" +""" +type tournament_no_shows_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [tournament_no_shows!]! +} + +""" +on_conflict condition type for table "tournament_no_shows" +""" +input tournament_no_shows_on_conflict { + constraint: tournament_no_shows_constraint! + update_columns: [tournament_no_shows_update_column!]! = [] + where: tournament_no_shows_bool_exp +} + +"""Ordering options when selecting data from "tournament_no_shows".""" +input tournament_no_shows_order_by { + id: order_by + occurred_at: order_by + player: players_order_by + player_steam_id: order_by + tournament: tournaments_order_by + tournament_id: order_by + tournament_team: tournament_teams_order_by + tournament_team_id: order_by +} + +"""primary key columns input for table: tournament_no_shows""" +input tournament_no_shows_pk_columns_input { + id: uuid! +} + +""" +select columns of table "tournament_no_shows" +""" +enum tournament_no_shows_select_column { + """column name""" + id + + """column name""" + occurred_at + + """column name""" + player_steam_id + + """column name""" + tournament_id + + """column name""" + tournament_team_id +} + +""" +input type for updating data in table "tournament_no_shows" +""" +input tournament_no_shows_set_input { + id: uuid + occurred_at: timestamptz + player_steam_id: bigint + tournament_id: uuid + tournament_team_id: uuid +} + +"""aggregate stddev on columns""" +type tournament_no_shows_stddev_fields { + player_steam_id: Float +} + +"""aggregate stddev_pop on columns""" +type tournament_no_shows_stddev_pop_fields { + player_steam_id: Float +} + +"""aggregate stddev_samp on columns""" +type tournament_no_shows_stddev_samp_fields { + player_steam_id: Float +} + +""" +Streaming cursor of the table "tournament_no_shows" +""" +input tournament_no_shows_stream_cursor_input { + """Stream column input with initial value""" + initial_value: tournament_no_shows_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input tournament_no_shows_stream_cursor_value_input { + id: uuid + occurred_at: timestamptz + player_steam_id: bigint + tournament_id: uuid + tournament_team_id: uuid +} + +"""aggregate sum on columns""" +type tournament_no_shows_sum_fields { + player_steam_id: bigint +} + +""" +update columns of table "tournament_no_shows" +""" +enum tournament_no_shows_update_column { + """column name""" + id + + """column name""" + occurred_at + + """column name""" + player_steam_id + + """column name""" + tournament_id + + """column name""" + tournament_team_id +} + +input tournament_no_shows_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_no_shows_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_no_shows_set_input + + """filter the rows which have to be updated""" + where: tournament_no_shows_bool_exp! +} + +"""aggregate var_pop on columns""" +type tournament_no_shows_var_pop_fields { + player_steam_id: Float +} + +"""aggregate var_samp on columns""" +type tournament_no_shows_var_samp_fields { + player_steam_id: Float +} + +"""aggregate variance on columns""" +type tournament_no_shows_variance_fields { + player_steam_id: Float +} + +""" +columns and relationships of "tournament_organizer_teams" +""" +type tournament_organizer_teams { + created_at: timestamptz! + + """An object relationship""" + team: teams! + team_id: uuid! + + """An object relationship""" + tournament: tournaments! + tournament_id: uuid! +} + +""" +aggregated selection of "tournament_organizer_teams" +""" +type tournament_organizer_teams_aggregate { + aggregate: tournament_organizer_teams_aggregate_fields + nodes: [tournament_organizer_teams!]! +} + +input tournament_organizer_teams_aggregate_bool_exp { + count: tournament_organizer_teams_aggregate_bool_exp_count +} + +input tournament_organizer_teams_aggregate_bool_exp_count { + arguments: [tournament_organizer_teams_select_column!] + distinct: Boolean + filter: tournament_organizer_teams_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "tournament_organizer_teams" +""" +type tournament_organizer_teams_aggregate_fields { + count(columns: [tournament_organizer_teams_select_column!], distinct: Boolean): Int! + max: tournament_organizer_teams_max_fields + min: tournament_organizer_teams_min_fields +} + +""" +order by aggregate values of table "tournament_organizer_teams" +""" +input tournament_organizer_teams_aggregate_order_by { + count: order_by + max: tournament_organizer_teams_max_order_by + min: tournament_organizer_teams_min_order_by +} + +""" +input type for inserting array relation for remote table "tournament_organizer_teams" +""" +input tournament_organizer_teams_arr_rel_insert_input { + data: [tournament_organizer_teams_insert_input!]! + + """upsert condition""" + on_conflict: tournament_organizer_teams_on_conflict +} + +""" +Boolean expression to filter rows from the table "tournament_organizer_teams". All fields are combined with a logical 'AND'. +""" +input tournament_organizer_teams_bool_exp { + _and: [tournament_organizer_teams_bool_exp!] + _not: tournament_organizer_teams_bool_exp + _or: [tournament_organizer_teams_bool_exp!] + created_at: timestamptz_comparison_exp + team: teams_bool_exp + team_id: uuid_comparison_exp + tournament: tournaments_bool_exp + tournament_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "tournament_organizer_teams" +""" +enum tournament_organizer_teams_constraint { + """ + unique or primary key constraint on columns "tournament_id", "team_id" + """ + tournament_organizer_teams_pkey +} + +""" +input type for inserting data into table "tournament_organizer_teams" +""" +input tournament_organizer_teams_insert_input { + created_at: timestamptz + team: teams_obj_rel_insert_input + team_id: uuid + tournament: tournaments_obj_rel_insert_input + tournament_id: uuid +} + +"""aggregate max on columns""" +type tournament_organizer_teams_max_fields { + created_at: timestamptz + team_id: uuid + tournament_id: uuid +} + +""" +order by max() on columns of table "tournament_organizer_teams" +""" +input tournament_organizer_teams_max_order_by { + created_at: order_by + team_id: order_by + tournament_id: order_by +} + +"""aggregate min on columns""" +type tournament_organizer_teams_min_fields { + created_at: timestamptz + team_id: uuid + tournament_id: uuid +} + +""" +order by min() on columns of table "tournament_organizer_teams" +""" +input tournament_organizer_teams_min_order_by { + created_at: order_by + team_id: order_by + tournament_id: order_by +} + +""" +response of any mutation on the table "tournament_organizer_teams" +""" +type tournament_organizer_teams_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [tournament_organizer_teams!]! +} + +""" +on_conflict condition type for table "tournament_organizer_teams" +""" +input tournament_organizer_teams_on_conflict { + constraint: tournament_organizer_teams_constraint! + update_columns: [tournament_organizer_teams_update_column!]! = [] + where: tournament_organizer_teams_bool_exp +} + +""" +Ordering options when selecting data from "tournament_organizer_teams". +""" +input tournament_organizer_teams_order_by { + created_at: order_by + team: teams_order_by + team_id: order_by + tournament: tournaments_order_by + tournament_id: order_by +} + +"""primary key columns input for table: tournament_organizer_teams""" +input tournament_organizer_teams_pk_columns_input { + team_id: uuid! + tournament_id: uuid! +} + +""" +select columns of table "tournament_organizer_teams" +""" +enum tournament_organizer_teams_select_column { + """column name""" + created_at + + """column name""" + team_id + + """column name""" + tournament_id +} + +""" +input type for updating data in table "tournament_organizer_teams" +""" +input tournament_organizer_teams_set_input { + created_at: timestamptz + team_id: uuid + tournament_id: uuid +} + +""" +Streaming cursor of the table "tournament_organizer_teams" +""" +input tournament_organizer_teams_stream_cursor_input { + """Stream column input with initial value""" + initial_value: tournament_organizer_teams_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input tournament_organizer_teams_stream_cursor_value_input { + created_at: timestamptz + team_id: uuid + tournament_id: uuid +} + +""" +update columns of table "tournament_organizer_teams" +""" +enum tournament_organizer_teams_update_column { + """column name""" + created_at + + """column name""" + team_id + + """column name""" + tournament_id +} + +input tournament_organizer_teams_updates { + """sets the columns of the filtered rows to the given values""" + _set: tournament_organizer_teams_set_input + + """filter the rows which have to be updated""" + where: tournament_organizer_teams_bool_exp! +} + +""" +columns and relationships of "tournament_organizers" +""" +type tournament_organizers { + """An object relationship""" + organization_team: teams + organization_team_id: uuid + + """An object relationship""" + organizer: players! + steam_id: bigint! + + """An object relationship""" + tournament: tournaments! + tournament_id: uuid! +} + +""" +aggregated selection of "tournament_organizers" +""" +type tournament_organizers_aggregate { + aggregate: tournament_organizers_aggregate_fields + nodes: [tournament_organizers!]! +} + +input tournament_organizers_aggregate_bool_exp { + count: tournament_organizers_aggregate_bool_exp_count +} + +input tournament_organizers_aggregate_bool_exp_count { + arguments: [tournament_organizers_select_column!] + distinct: Boolean + filter: tournament_organizers_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "tournament_organizers" +""" +type tournament_organizers_aggregate_fields { + avg: tournament_organizers_avg_fields + count(columns: [tournament_organizers_select_column!], distinct: Boolean): Int! + max: tournament_organizers_max_fields + min: tournament_organizers_min_fields + stddev: tournament_organizers_stddev_fields + stddev_pop: tournament_organizers_stddev_pop_fields + stddev_samp: tournament_organizers_stddev_samp_fields + sum: tournament_organizers_sum_fields + var_pop: tournament_organizers_var_pop_fields + var_samp: tournament_organizers_var_samp_fields + variance: tournament_organizers_variance_fields +} + +""" +order by aggregate values of table "tournament_organizers" +""" +input tournament_organizers_aggregate_order_by { + avg: tournament_organizers_avg_order_by + count: order_by + max: tournament_organizers_max_order_by + min: tournament_organizers_min_order_by + stddev: tournament_organizers_stddev_order_by + stddev_pop: tournament_organizers_stddev_pop_order_by + stddev_samp: tournament_organizers_stddev_samp_order_by + sum: tournament_organizers_sum_order_by + var_pop: tournament_organizers_var_pop_order_by + var_samp: tournament_organizers_var_samp_order_by + variance: tournament_organizers_variance_order_by +} + +""" +input type for inserting array relation for remote table "tournament_organizers" +""" +input tournament_organizers_arr_rel_insert_input { + data: [tournament_organizers_insert_input!]! + + """upsert condition""" + on_conflict: tournament_organizers_on_conflict +} + +"""aggregate avg on columns""" +type tournament_organizers_avg_fields { + steam_id: Float +} + +""" +order by avg() on columns of table "tournament_organizers" +""" +input tournament_organizers_avg_order_by { + steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "tournament_organizers". All fields are combined with a logical 'AND'. +""" +input tournament_organizers_bool_exp { + _and: [tournament_organizers_bool_exp!] + _not: tournament_organizers_bool_exp + _or: [tournament_organizers_bool_exp!] + organization_team: teams_bool_exp + organization_team_id: uuid_comparison_exp + organizer: players_bool_exp + steam_id: bigint_comparison_exp + tournament: tournaments_bool_exp + tournament_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "tournament_organizers" +""" +enum tournament_organizers_constraint { + """ + unique or primary key constraint on columns "steam_id", "tournament_id" + """ + tournament_organizers_pkey +} + +""" +input type for incrementing numeric columns in table "tournament_organizers" +""" +input tournament_organizers_inc_input { + steam_id: bigint +} + +""" +input type for inserting data into table "tournament_organizers" +""" +input tournament_organizers_insert_input { + organization_team: teams_obj_rel_insert_input + organization_team_id: uuid + organizer: players_obj_rel_insert_input + steam_id: bigint + tournament: tournaments_obj_rel_insert_input + tournament_id: uuid +} + +"""aggregate max on columns""" +type tournament_organizers_max_fields { + organization_team_id: uuid + steam_id: bigint + tournament_id: uuid +} + +""" +order by max() on columns of table "tournament_organizers" +""" +input tournament_organizers_max_order_by { + organization_team_id: order_by + steam_id: order_by + tournament_id: order_by +} + +"""aggregate min on columns""" +type tournament_organizers_min_fields { + organization_team_id: uuid + steam_id: bigint + tournament_id: uuid +} + +""" +order by min() on columns of table "tournament_organizers" +""" +input tournament_organizers_min_order_by { + organization_team_id: order_by + steam_id: order_by + tournament_id: order_by +} + +""" +response of any mutation on the table "tournament_organizers" +""" +type tournament_organizers_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [tournament_organizers!]! +} + +""" +on_conflict condition type for table "tournament_organizers" +""" +input tournament_organizers_on_conflict { + constraint: tournament_organizers_constraint! + update_columns: [tournament_organizers_update_column!]! = [] + where: tournament_organizers_bool_exp +} + +"""Ordering options when selecting data from "tournament_organizers".""" +input tournament_organizers_order_by { + organization_team: teams_order_by + organization_team_id: order_by + organizer: players_order_by + steam_id: order_by + tournament: tournaments_order_by + tournament_id: order_by +} + +"""primary key columns input for table: tournament_organizers""" +input tournament_organizers_pk_columns_input { + steam_id: bigint! + tournament_id: uuid! +} + +""" +select columns of table "tournament_organizers" +""" +enum tournament_organizers_select_column { + """column name""" + organization_team_id + + """column name""" + steam_id + + """column name""" + tournament_id +} + +""" +input type for updating data in table "tournament_organizers" +""" +input tournament_organizers_set_input { + organization_team_id: uuid + steam_id: bigint + tournament_id: uuid +} + +"""aggregate stddev on columns""" +type tournament_organizers_stddev_fields { + steam_id: Float +} + +""" +order by stddev() on columns of table "tournament_organizers" +""" +input tournament_organizers_stddev_order_by { + steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type tournament_organizers_stddev_pop_fields { + steam_id: Float +} + +""" +order by stddev_pop() on columns of table "tournament_organizers" +""" +input tournament_organizers_stddev_pop_order_by { + steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type tournament_organizers_stddev_samp_fields { + steam_id: Float +} + +""" +order by stddev_samp() on columns of table "tournament_organizers" +""" +input tournament_organizers_stddev_samp_order_by { + steam_id: order_by +} + +""" +Streaming cursor of the table "tournament_organizers" +""" +input tournament_organizers_stream_cursor_input { + """Stream column input with initial value""" + initial_value: tournament_organizers_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input tournament_organizers_stream_cursor_value_input { + organization_team_id: uuid + steam_id: bigint + tournament_id: uuid +} + +"""aggregate sum on columns""" +type tournament_organizers_sum_fields { + steam_id: bigint +} + +""" +order by sum() on columns of table "tournament_organizers" +""" +input tournament_organizers_sum_order_by { + steam_id: order_by +} + +""" +update columns of table "tournament_organizers" +""" +enum tournament_organizers_update_column { + """column name""" + organization_team_id + + """column name""" + steam_id + + """column name""" + tournament_id +} + +input tournament_organizers_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_organizers_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_organizers_set_input + + """filter the rows which have to be updated""" + where: tournament_organizers_bool_exp! +} + +"""aggregate var_pop on columns""" +type tournament_organizers_var_pop_fields { + steam_id: Float +} + +""" +order by var_pop() on columns of table "tournament_organizers" +""" +input tournament_organizers_var_pop_order_by { + steam_id: order_by +} + +"""aggregate var_samp on columns""" +type tournament_organizers_var_samp_fields { + steam_id: Float +} + +""" +order by var_samp() on columns of table "tournament_organizers" +""" +input tournament_organizers_var_samp_order_by { + steam_id: order_by +} + +"""aggregate variance on columns""" +type tournament_organizers_variance_fields { + steam_id: Float +} + +""" +order by variance() on columns of table "tournament_organizers" +""" +input tournament_organizers_variance_order_by { + steam_id: order_by +} + +""" +columns and relationships of "tournament_prizes" +""" +type tournament_prizes { + created_at: timestamptz! + id: uuid! + order: Int! + place: String! + prize: String! + + """An object relationship""" + tournament: tournaments! + tournament_id: uuid! +} + +""" +aggregated selection of "tournament_prizes" +""" +type tournament_prizes_aggregate { + aggregate: tournament_prizes_aggregate_fields + nodes: [tournament_prizes!]! +} + +input tournament_prizes_aggregate_bool_exp { + count: tournament_prizes_aggregate_bool_exp_count +} + +input tournament_prizes_aggregate_bool_exp_count { + arguments: [tournament_prizes_select_column!] + distinct: Boolean + filter: tournament_prizes_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "tournament_prizes" +""" +type tournament_prizes_aggregate_fields { + avg: tournament_prizes_avg_fields + count(columns: [tournament_prizes_select_column!], distinct: Boolean): Int! + max: tournament_prizes_max_fields + min: tournament_prizes_min_fields + stddev: tournament_prizes_stddev_fields + stddev_pop: tournament_prizes_stddev_pop_fields + stddev_samp: tournament_prizes_stddev_samp_fields + sum: tournament_prizes_sum_fields + var_pop: tournament_prizes_var_pop_fields + var_samp: tournament_prizes_var_samp_fields + variance: tournament_prizes_variance_fields +} + +""" +order by aggregate values of table "tournament_prizes" +""" +input tournament_prizes_aggregate_order_by { + avg: tournament_prizes_avg_order_by + count: order_by + max: tournament_prizes_max_order_by + min: tournament_prizes_min_order_by + stddev: tournament_prizes_stddev_order_by + stddev_pop: tournament_prizes_stddev_pop_order_by + stddev_samp: tournament_prizes_stddev_samp_order_by + sum: tournament_prizes_sum_order_by + var_pop: tournament_prizes_var_pop_order_by + var_samp: tournament_prizes_var_samp_order_by + variance: tournament_prizes_variance_order_by +} + +""" +input type for inserting array relation for remote table "tournament_prizes" +""" +input tournament_prizes_arr_rel_insert_input { + data: [tournament_prizes_insert_input!]! + + """upsert condition""" + on_conflict: tournament_prizes_on_conflict +} + +"""aggregate avg on columns""" +type tournament_prizes_avg_fields { + order: Float +} + +""" +order by avg() on columns of table "tournament_prizes" +""" +input tournament_prizes_avg_order_by { + order: order_by +} + +""" +Boolean expression to filter rows from the table "tournament_prizes". All fields are combined with a logical 'AND'. +""" +input tournament_prizes_bool_exp { + _and: [tournament_prizes_bool_exp!] + _not: tournament_prizes_bool_exp + _or: [tournament_prizes_bool_exp!] + created_at: timestamptz_comparison_exp + id: uuid_comparison_exp + order: Int_comparison_exp + place: String_comparison_exp + prize: String_comparison_exp + tournament: tournaments_bool_exp + tournament_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "tournament_prizes" +""" +enum tournament_prizes_constraint { + """ + unique or primary key constraint on columns "id" + """ + tournament_prizes_pkey +} + +""" +input type for incrementing numeric columns in table "tournament_prizes" +""" +input tournament_prizes_inc_input { + order: Int +} + +""" +input type for inserting data into table "tournament_prizes" +""" +input tournament_prizes_insert_input { + created_at: timestamptz + id: uuid + order: Int + place: String + prize: String + tournament: tournaments_obj_rel_insert_input + tournament_id: uuid +} + +"""aggregate max on columns""" +type tournament_prizes_max_fields { + created_at: timestamptz + id: uuid + order: Int + place: String + prize: String + tournament_id: uuid +} + +""" +order by max() on columns of table "tournament_prizes" +""" +input tournament_prizes_max_order_by { + created_at: order_by + id: order_by + order: order_by + place: order_by + prize: order_by + tournament_id: order_by +} + +"""aggregate min on columns""" +type tournament_prizes_min_fields { + created_at: timestamptz + id: uuid + order: Int + place: String + prize: String + tournament_id: uuid +} + +""" +order by min() on columns of table "tournament_prizes" +""" +input tournament_prizes_min_order_by { + created_at: order_by + id: order_by + order: order_by + place: order_by + prize: order_by + tournament_id: order_by +} + +""" +response of any mutation on the table "tournament_prizes" +""" +type tournament_prizes_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [tournament_prizes!]! +} + +""" +on_conflict condition type for table "tournament_prizes" +""" +input tournament_prizes_on_conflict { + constraint: tournament_prizes_constraint! + update_columns: [tournament_prizes_update_column!]! = [] + where: tournament_prizes_bool_exp +} + +"""Ordering options when selecting data from "tournament_prizes".""" +input tournament_prizes_order_by { + created_at: order_by + id: order_by + order: order_by + place: order_by + prize: order_by + tournament: tournaments_order_by + tournament_id: order_by +} + +"""primary key columns input for table: tournament_prizes""" +input tournament_prizes_pk_columns_input { + id: uuid! +} + +""" +select columns of table "tournament_prizes" +""" +enum tournament_prizes_select_column { + """column name""" + created_at + + """column name""" + id + + """column name""" + order + + """column name""" + place + + """column name""" + prize + + """column name""" + tournament_id +} + +""" +input type for updating data in table "tournament_prizes" +""" +input tournament_prizes_set_input { + created_at: timestamptz + id: uuid + order: Int + place: String + prize: String + tournament_id: uuid +} + +"""aggregate stddev on columns""" +type tournament_prizes_stddev_fields { + order: Float +} + +""" +order by stddev() on columns of table "tournament_prizes" +""" +input tournament_prizes_stddev_order_by { + order: order_by +} + +"""aggregate stddev_pop on columns""" +type tournament_prizes_stddev_pop_fields { + order: Float +} + +""" +order by stddev_pop() on columns of table "tournament_prizes" +""" +input tournament_prizes_stddev_pop_order_by { + order: order_by +} + +"""aggregate stddev_samp on columns""" +type tournament_prizes_stddev_samp_fields { + order: Float +} + +""" +order by stddev_samp() on columns of table "tournament_prizes" +""" +input tournament_prizes_stddev_samp_order_by { + order: order_by +} + +""" +Streaming cursor of the table "tournament_prizes" +""" +input tournament_prizes_stream_cursor_input { + """Stream column input with initial value""" + initial_value: tournament_prizes_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input tournament_prizes_stream_cursor_value_input { + created_at: timestamptz + id: uuid + order: Int + place: String + prize: String + tournament_id: uuid +} + +"""aggregate sum on columns""" +type tournament_prizes_sum_fields { + order: Int +} + +""" +order by sum() on columns of table "tournament_prizes" +""" +input tournament_prizes_sum_order_by { + order: order_by +} + +""" +update columns of table "tournament_prizes" +""" +enum tournament_prizes_update_column { + """column name""" + created_at + + """column name""" + id + + """column name""" + order + + """column name""" + place + + """column name""" + prize + + """column name""" + tournament_id +} + +input tournament_prizes_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_prizes_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_prizes_set_input + + """filter the rows which have to be updated""" + where: tournament_prizes_bool_exp! +} + +"""aggregate var_pop on columns""" +type tournament_prizes_var_pop_fields { + order: Float +} + +""" +order by var_pop() on columns of table "tournament_prizes" +""" +input tournament_prizes_var_pop_order_by { + order: order_by +} + +"""aggregate var_samp on columns""" +type tournament_prizes_var_samp_fields { + order: Float +} + +""" +order by var_samp() on columns of table "tournament_prizes" +""" +input tournament_prizes_var_samp_order_by { + order: order_by +} + +"""aggregate variance on columns""" +type tournament_prizes_variance_fields { + order: Float +} + +""" +order by variance() on columns of table "tournament_prizes" +""" +input tournament_prizes_variance_order_by { + order: order_by +} + +""" +columns and relationships of "tournament_registration_unlocks" +""" +type tournament_registration_unlocks { + created_at: timestamptz! + + """An object relationship""" + player: players + player_steam_id: bigint + + """An object relationship""" + team: teams + team_id: uuid + + """An object relationship""" + tournament: tournaments! + tournament_id: uuid! +} + +""" +aggregated selection of "tournament_registration_unlocks" +""" +type tournament_registration_unlocks_aggregate { + aggregate: tournament_registration_unlocks_aggregate_fields + nodes: [tournament_registration_unlocks!]! +} + +""" +aggregate fields of "tournament_registration_unlocks" +""" +type tournament_registration_unlocks_aggregate_fields { + avg: tournament_registration_unlocks_avg_fields + count(columns: [tournament_registration_unlocks_select_column!], distinct: Boolean): Int! + max: tournament_registration_unlocks_max_fields + min: tournament_registration_unlocks_min_fields + stddev: tournament_registration_unlocks_stddev_fields + stddev_pop: tournament_registration_unlocks_stddev_pop_fields + stddev_samp: tournament_registration_unlocks_stddev_samp_fields + sum: tournament_registration_unlocks_sum_fields + var_pop: tournament_registration_unlocks_var_pop_fields + var_samp: tournament_registration_unlocks_var_samp_fields + variance: tournament_registration_unlocks_variance_fields +} + +"""aggregate avg on columns""" +type tournament_registration_unlocks_avg_fields { + player_steam_id: Float +} + +""" +Boolean expression to filter rows from the table "tournament_registration_unlocks". All fields are combined with a logical 'AND'. +""" +input tournament_registration_unlocks_bool_exp { + _and: [tournament_registration_unlocks_bool_exp!] + _not: tournament_registration_unlocks_bool_exp + _or: [tournament_registration_unlocks_bool_exp!] + created_at: timestamptz_comparison_exp + player: players_bool_exp + player_steam_id: bigint_comparison_exp + team: teams_bool_exp + team_id: uuid_comparison_exp + tournament: tournaments_bool_exp + tournament_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "tournament_registration_unlocks" +""" +enum tournament_registration_unlocks_constraint { + """ + unique or primary key constraint on columns "player_steam_id", "tournament_id" + """ + idx_tournament_registration_unlocks_player + + """ + unique or primary key constraint on columns "tournament_id", "team_id" + """ + idx_tournament_registration_unlocks_team +} + +""" +input type for incrementing numeric columns in table "tournament_registration_unlocks" +""" +input tournament_registration_unlocks_inc_input { + player_steam_id: bigint +} + +""" +input type for inserting data into table "tournament_registration_unlocks" +""" +input tournament_registration_unlocks_insert_input { + created_at: timestamptz + player: players_obj_rel_insert_input + player_steam_id: bigint + team: teams_obj_rel_insert_input + team_id: uuid + tournament: tournaments_obj_rel_insert_input + tournament_id: uuid +} + +"""aggregate max on columns""" +type tournament_registration_unlocks_max_fields { + created_at: timestamptz + player_steam_id: bigint + team_id: uuid + tournament_id: uuid +} + +"""aggregate min on columns""" +type tournament_registration_unlocks_min_fields { + created_at: timestamptz + player_steam_id: bigint + team_id: uuid + tournament_id: uuid +} + +""" +response of any mutation on the table "tournament_registration_unlocks" +""" +type tournament_registration_unlocks_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [tournament_registration_unlocks!]! +} + +""" +on_conflict condition type for table "tournament_registration_unlocks" +""" +input tournament_registration_unlocks_on_conflict { + constraint: tournament_registration_unlocks_constraint! + update_columns: [tournament_registration_unlocks_update_column!]! = [] + where: tournament_registration_unlocks_bool_exp +} + +""" +Ordering options when selecting data from "tournament_registration_unlocks". +""" +input tournament_registration_unlocks_order_by { + created_at: order_by + player: players_order_by + player_steam_id: order_by + team: teams_order_by + team_id: order_by + tournament: tournaments_order_by + tournament_id: order_by +} + +""" +select columns of table "tournament_registration_unlocks" +""" +enum tournament_registration_unlocks_select_column { + """column name""" + created_at + + """column name""" + player_steam_id + + """column name""" + team_id + + """column name""" + tournament_id +} + +""" +input type for updating data in table "tournament_registration_unlocks" +""" +input tournament_registration_unlocks_set_input { + created_at: timestamptz + player_steam_id: bigint + team_id: uuid + tournament_id: uuid +} + +"""aggregate stddev on columns""" +type tournament_registration_unlocks_stddev_fields { + player_steam_id: Float +} + +"""aggregate stddev_pop on columns""" +type tournament_registration_unlocks_stddev_pop_fields { + player_steam_id: Float +} + +"""aggregate stddev_samp on columns""" +type tournament_registration_unlocks_stddev_samp_fields { + player_steam_id: Float +} + +""" +Streaming cursor of the table "tournament_registration_unlocks" +""" +input tournament_registration_unlocks_stream_cursor_input { + """Stream column input with initial value""" + initial_value: tournament_registration_unlocks_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input tournament_registration_unlocks_stream_cursor_value_input { + created_at: timestamptz + player_steam_id: bigint + team_id: uuid + tournament_id: uuid +} + +"""aggregate sum on columns""" +type tournament_registration_unlocks_sum_fields { + player_steam_id: bigint +} + +""" +update columns of table "tournament_registration_unlocks" +""" +enum tournament_registration_unlocks_update_column { + """column name""" + created_at + + """column name""" + player_steam_id + + """column name""" + team_id + + """column name""" + tournament_id +} + +input tournament_registration_unlocks_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_registration_unlocks_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_registration_unlocks_set_input + + """filter the rows which have to be updated""" + where: tournament_registration_unlocks_bool_exp! +} + +"""aggregate var_pop on columns""" +type tournament_registration_unlocks_var_pop_fields { + player_steam_id: Float +} + +"""aggregate var_samp on columns""" +type tournament_registration_unlocks_var_samp_fields { + player_steam_id: Float +} + +"""aggregate variance on columns""" +type tournament_registration_unlocks_variance_fields { + player_steam_id: Float +} + +""" +columns and relationships of "tournament_stage_windows" +""" +type tournament_stage_windows { + closes_at: timestamptz + created_at: timestamptz! + default_match_at: timestamptz + id: uuid! + opens_at: timestamptz + round: Int! + + """An object relationship""" + stage: tournament_stages! + tournament_stage_id: uuid! +} + +""" +aggregated selection of "tournament_stage_windows" +""" +type tournament_stage_windows_aggregate { + aggregate: tournament_stage_windows_aggregate_fields + nodes: [tournament_stage_windows!]! +} + +input tournament_stage_windows_aggregate_bool_exp { + count: tournament_stage_windows_aggregate_bool_exp_count +} + +input tournament_stage_windows_aggregate_bool_exp_count { + arguments: [tournament_stage_windows_select_column!] + distinct: Boolean + filter: tournament_stage_windows_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "tournament_stage_windows" +""" +type tournament_stage_windows_aggregate_fields { + avg: tournament_stage_windows_avg_fields + count(columns: [tournament_stage_windows_select_column!], distinct: Boolean): Int! + max: tournament_stage_windows_max_fields + min: tournament_stage_windows_min_fields + stddev: tournament_stage_windows_stddev_fields + stddev_pop: tournament_stage_windows_stddev_pop_fields + stddev_samp: tournament_stage_windows_stddev_samp_fields + sum: tournament_stage_windows_sum_fields + var_pop: tournament_stage_windows_var_pop_fields + var_samp: tournament_stage_windows_var_samp_fields + variance: tournament_stage_windows_variance_fields +} + +""" +order by aggregate values of table "tournament_stage_windows" +""" +input tournament_stage_windows_aggregate_order_by { + avg: tournament_stage_windows_avg_order_by + count: order_by + max: tournament_stage_windows_max_order_by + min: tournament_stage_windows_min_order_by + stddev: tournament_stage_windows_stddev_order_by + stddev_pop: tournament_stage_windows_stddev_pop_order_by + stddev_samp: tournament_stage_windows_stddev_samp_order_by + sum: tournament_stage_windows_sum_order_by + var_pop: tournament_stage_windows_var_pop_order_by + var_samp: tournament_stage_windows_var_samp_order_by + variance: tournament_stage_windows_variance_order_by +} + +""" +input type for inserting array relation for remote table "tournament_stage_windows" +""" +input tournament_stage_windows_arr_rel_insert_input { + data: [tournament_stage_windows_insert_input!]! + + """upsert condition""" + on_conflict: tournament_stage_windows_on_conflict +} + +"""aggregate avg on columns""" +type tournament_stage_windows_avg_fields { + round: Float +} + +""" +order by avg() on columns of table "tournament_stage_windows" +""" +input tournament_stage_windows_avg_order_by { + round: order_by +} + +""" +Boolean expression to filter rows from the table "tournament_stage_windows". All fields are combined with a logical 'AND'. +""" +input tournament_stage_windows_bool_exp { + _and: [tournament_stage_windows_bool_exp!] + _not: tournament_stage_windows_bool_exp + _or: [tournament_stage_windows_bool_exp!] + closes_at: timestamptz_comparison_exp + created_at: timestamptz_comparison_exp + default_match_at: timestamptz_comparison_exp + id: uuid_comparison_exp + opens_at: timestamptz_comparison_exp + round: Int_comparison_exp + stage: tournament_stages_bool_exp + tournament_stage_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "tournament_stage_windows" +""" +enum tournament_stage_windows_constraint { + """ + unique or primary key constraint on columns "id" + """ + tournament_stage_windows_pkey + + """ + unique or primary key constraint on columns "tournament_stage_id", "round" + """ + tournament_stage_windows_tournament_stage_id_round_key +} + +""" +input type for incrementing numeric columns in table "tournament_stage_windows" +""" +input tournament_stage_windows_inc_input { + round: Int +} + +""" +input type for inserting data into table "tournament_stage_windows" +""" +input tournament_stage_windows_insert_input { + closes_at: timestamptz + created_at: timestamptz + default_match_at: timestamptz + id: uuid + opens_at: timestamptz + round: Int + stage: tournament_stages_obj_rel_insert_input + tournament_stage_id: uuid +} + +"""aggregate max on columns""" +type tournament_stage_windows_max_fields { + closes_at: timestamptz + created_at: timestamptz + default_match_at: timestamptz + id: uuid + opens_at: timestamptz + round: Int + tournament_stage_id: uuid +} + +""" +order by max() on columns of table "tournament_stage_windows" +""" +input tournament_stage_windows_max_order_by { + closes_at: order_by + created_at: order_by + default_match_at: order_by + id: order_by + opens_at: order_by + round: order_by + tournament_stage_id: order_by +} + +"""aggregate min on columns""" +type tournament_stage_windows_min_fields { + closes_at: timestamptz + created_at: timestamptz + default_match_at: timestamptz + id: uuid + opens_at: timestamptz + round: Int + tournament_stage_id: uuid +} + +""" +order by min() on columns of table "tournament_stage_windows" +""" +input tournament_stage_windows_min_order_by { + closes_at: order_by + created_at: order_by + default_match_at: order_by + id: order_by + opens_at: order_by + round: order_by + tournament_stage_id: order_by +} + +""" +response of any mutation on the table "tournament_stage_windows" +""" +type tournament_stage_windows_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [tournament_stage_windows!]! +} + +""" +on_conflict condition type for table "tournament_stage_windows" +""" +input tournament_stage_windows_on_conflict { + constraint: tournament_stage_windows_constraint! + update_columns: [tournament_stage_windows_update_column!]! = [] + where: tournament_stage_windows_bool_exp +} + +"""Ordering options when selecting data from "tournament_stage_windows".""" +input tournament_stage_windows_order_by { + closes_at: order_by + created_at: order_by + default_match_at: order_by + id: order_by + opens_at: order_by + round: order_by + stage: tournament_stages_order_by + tournament_stage_id: order_by +} + +"""primary key columns input for table: tournament_stage_windows""" +input tournament_stage_windows_pk_columns_input { + id: uuid! +} + +""" +select columns of table "tournament_stage_windows" +""" +enum tournament_stage_windows_select_column { + """column name""" + closes_at + + """column name""" + created_at + + """column name""" + default_match_at + + """column name""" + id + + """column name""" + opens_at + + """column name""" + round + + """column name""" + tournament_stage_id +} + +""" +input type for updating data in table "tournament_stage_windows" +""" +input tournament_stage_windows_set_input { + closes_at: timestamptz + created_at: timestamptz + default_match_at: timestamptz + id: uuid + opens_at: timestamptz + round: Int + tournament_stage_id: uuid +} + +"""aggregate stddev on columns""" +type tournament_stage_windows_stddev_fields { + round: Float +} + +""" +order by stddev() on columns of table "tournament_stage_windows" +""" +input tournament_stage_windows_stddev_order_by { + round: order_by +} + +"""aggregate stddev_pop on columns""" +type tournament_stage_windows_stddev_pop_fields { + round: Float +} + +""" +order by stddev_pop() on columns of table "tournament_stage_windows" +""" +input tournament_stage_windows_stddev_pop_order_by { + round: order_by +} + +"""aggregate stddev_samp on columns""" +type tournament_stage_windows_stddev_samp_fields { + round: Float +} + +""" +order by stddev_samp() on columns of table "tournament_stage_windows" +""" +input tournament_stage_windows_stddev_samp_order_by { + round: order_by +} + +""" +Streaming cursor of the table "tournament_stage_windows" +""" +input tournament_stage_windows_stream_cursor_input { + """Stream column input with initial value""" + initial_value: tournament_stage_windows_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input tournament_stage_windows_stream_cursor_value_input { + closes_at: timestamptz + created_at: timestamptz + default_match_at: timestamptz + id: uuid + opens_at: timestamptz + round: Int + tournament_stage_id: uuid +} + +"""aggregate sum on columns""" +type tournament_stage_windows_sum_fields { + round: Int +} + +""" +order by sum() on columns of table "tournament_stage_windows" +""" +input tournament_stage_windows_sum_order_by { + round: order_by +} + +""" +update columns of table "tournament_stage_windows" +""" +enum tournament_stage_windows_update_column { + """column name""" + closes_at + + """column name""" + created_at + + """column name""" + default_match_at + + """column name""" + id + + """column name""" + opens_at + + """column name""" + round + + """column name""" + tournament_stage_id +} + +input tournament_stage_windows_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_stage_windows_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_stage_windows_set_input + + """filter the rows which have to be updated""" + where: tournament_stage_windows_bool_exp! +} + +"""aggregate var_pop on columns""" +type tournament_stage_windows_var_pop_fields { + round: Float +} + +""" +order by var_pop() on columns of table "tournament_stage_windows" +""" +input tournament_stage_windows_var_pop_order_by { + round: order_by +} + +"""aggregate var_samp on columns""" +type tournament_stage_windows_var_samp_fields { + round: Float +} + +""" +order by var_samp() on columns of table "tournament_stage_windows" +""" +input tournament_stage_windows_var_samp_order_by { + round: order_by +} + +"""aggregate variance on columns""" +type tournament_stage_windows_variance_fields { + round: Float +} + +""" +order by variance() on columns of table "tournament_stage_windows" +""" +input tournament_stage_windows_variance_order_by { + round: order_by +} + +""" +columns and relationships of "tournament_stages" +""" +type tournament_stages { + """An array relationship""" + brackets( + """distinct select on columns""" + distinct_on: [tournament_brackets_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_brackets_order_by!] + + """filter the rows returned""" + where: tournament_brackets_bool_exp + ): [tournament_brackets!]! + + """An aggregate relationship""" + brackets_aggregate( + """distinct select on columns""" + distinct_on: [tournament_brackets_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_brackets_order_by!] + + """filter the rows returned""" + where: tournament_brackets_bool_exp + ): tournament_brackets_aggregate! + decider_best_of: Int + default_best_of: Int! + + """An object relationship""" + e_tournament_stage_type: e_tournament_stage_types! + final_map_advantage: Int! + groups: Int + id: uuid! + match_options_id: uuid + max_rounds: Int + max_teams: Int! + min_teams: Int! + + """An object relationship""" + options: match_options + order: Int! + + """An array relationship""" + results( + """distinct select on columns""" + distinct_on: [v_team_stage_results_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_team_stage_results_order_by!] + + """filter the rows returned""" + where: v_team_stage_results_bool_exp + ): [v_team_stage_results!]! + + """An aggregate relationship""" + results_aggregate( + """distinct select on columns""" + distinct_on: [v_team_stage_results_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_team_stage_results_order_by!] + + """filter the rows returned""" + where: v_team_stage_results_bool_exp + ): v_team_stage_results_aggregate! + settings( + """JSON select path""" + path: String + ): jsonb + swiss_no_elimination: Boolean! + third_place_match: Boolean! + + """An object relationship""" + tournament: tournaments! + tournament_id: uuid! + type: e_tournament_stage_types_enum! + + """An array relationship""" + windows( + """distinct select on columns""" + distinct_on: [tournament_stage_windows_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_stage_windows_order_by!] + + """filter the rows returned""" + where: tournament_stage_windows_bool_exp + ): [tournament_stage_windows!]! + + """An aggregate relationship""" + windows_aggregate( + """distinct select on columns""" + distinct_on: [tournament_stage_windows_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_stage_windows_order_by!] + + """filter the rows returned""" + where: tournament_stage_windows_bool_exp + ): tournament_stage_windows_aggregate! +} + +""" +aggregated selection of "tournament_stages" +""" +type tournament_stages_aggregate { + aggregate: tournament_stages_aggregate_fields + nodes: [tournament_stages!]! +} + +input tournament_stages_aggregate_bool_exp { + bool_and: tournament_stages_aggregate_bool_exp_bool_and + bool_or: tournament_stages_aggregate_bool_exp_bool_or + count: tournament_stages_aggregate_bool_exp_count +} + +input tournament_stages_aggregate_bool_exp_bool_and { + arguments: tournament_stages_select_column_tournament_stages_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: tournament_stages_bool_exp + predicate: Boolean_comparison_exp! +} + +input tournament_stages_aggregate_bool_exp_bool_or { + arguments: tournament_stages_select_column_tournament_stages_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: tournament_stages_bool_exp + predicate: Boolean_comparison_exp! +} + +input tournament_stages_aggregate_bool_exp_count { + arguments: [tournament_stages_select_column!] + distinct: Boolean + filter: tournament_stages_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "tournament_stages" +""" +type tournament_stages_aggregate_fields { + avg: tournament_stages_avg_fields + count(columns: [tournament_stages_select_column!], distinct: Boolean): Int! + max: tournament_stages_max_fields + min: tournament_stages_min_fields + stddev: tournament_stages_stddev_fields + stddev_pop: tournament_stages_stddev_pop_fields + stddev_samp: tournament_stages_stddev_samp_fields + sum: tournament_stages_sum_fields + var_pop: tournament_stages_var_pop_fields + var_samp: tournament_stages_var_samp_fields + variance: tournament_stages_variance_fields +} + +""" +order by aggregate values of table "tournament_stages" +""" +input tournament_stages_aggregate_order_by { + avg: tournament_stages_avg_order_by + count: order_by + max: tournament_stages_max_order_by + min: tournament_stages_min_order_by + stddev: tournament_stages_stddev_order_by + stddev_pop: tournament_stages_stddev_pop_order_by + stddev_samp: tournament_stages_stddev_samp_order_by + sum: tournament_stages_sum_order_by + var_pop: tournament_stages_var_pop_order_by + var_samp: tournament_stages_var_samp_order_by + variance: tournament_stages_variance_order_by +} + +"""append existing jsonb value of filtered columns with new jsonb value""" +input tournament_stages_append_input { + settings: jsonb +} + +""" +input type for inserting array relation for remote table "tournament_stages" +""" +input tournament_stages_arr_rel_insert_input { + data: [tournament_stages_insert_input!]! + + """upsert condition""" + on_conflict: tournament_stages_on_conflict +} + +"""aggregate avg on columns""" +type tournament_stages_avg_fields { + decider_best_of: Float + default_best_of: Float + final_map_advantage: Float + groups: Float + max_rounds: Float + max_teams: Float + min_teams: Float + order: Float +} + +""" +order by avg() on columns of table "tournament_stages" +""" +input tournament_stages_avg_order_by { + decider_best_of: order_by + default_best_of: order_by + final_map_advantage: order_by + groups: order_by + max_rounds: order_by + max_teams: order_by + min_teams: order_by + order: order_by +} + +""" +Boolean expression to filter rows from the table "tournament_stages". All fields are combined with a logical 'AND'. +""" +input tournament_stages_bool_exp { + _and: [tournament_stages_bool_exp!] + _not: tournament_stages_bool_exp + _or: [tournament_stages_bool_exp!] + brackets: tournament_brackets_bool_exp + brackets_aggregate: tournament_brackets_aggregate_bool_exp + decider_best_of: Int_comparison_exp + default_best_of: Int_comparison_exp + e_tournament_stage_type: e_tournament_stage_types_bool_exp + final_map_advantage: Int_comparison_exp + groups: Int_comparison_exp + id: uuid_comparison_exp + match_options_id: uuid_comparison_exp + max_rounds: Int_comparison_exp + max_teams: Int_comparison_exp + min_teams: Int_comparison_exp + options: match_options_bool_exp + order: Int_comparison_exp + results: v_team_stage_results_bool_exp + results_aggregate: v_team_stage_results_aggregate_bool_exp + settings: jsonb_comparison_exp + swiss_no_elimination: Boolean_comparison_exp + third_place_match: Boolean_comparison_exp + tournament: tournaments_bool_exp + tournament_id: uuid_comparison_exp + type: e_tournament_stage_types_enum_comparison_exp + windows: tournament_stage_windows_bool_exp + windows_aggregate: tournament_stage_windows_aggregate_bool_exp +} + +""" +unique or primary key constraints on table "tournament_stages" +""" +enum tournament_stages_constraint { + """ + unique or primary key constraint on columns "id" + """ + tournament_stages_pkey +} + +""" +delete the field or element with specified path (for JSON arrays, negative integers count from the end) +""" +input tournament_stages_delete_at_path_input { + settings: [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 tournament_stages_delete_elem_input { + settings: Int +} + +""" +delete key/value pair or string element. key/value pairs are matched based on their key value +""" +input tournament_stages_delete_key_input { + settings: String +} + +""" +input type for incrementing numeric columns in table "tournament_stages" +""" +input tournament_stages_inc_input { + decider_best_of: Int + default_best_of: Int + final_map_advantage: Int + groups: Int + max_rounds: Int + max_teams: Int + min_teams: Int + order: Int +} + +""" +input type for inserting data into table "tournament_stages" +""" +input tournament_stages_insert_input { + brackets: tournament_brackets_arr_rel_insert_input + decider_best_of: Int + default_best_of: Int + e_tournament_stage_type: e_tournament_stage_types_obj_rel_insert_input + final_map_advantage: Int + groups: Int + id: uuid + match_options_id: uuid + max_rounds: Int + max_teams: Int + min_teams: Int + options: match_options_obj_rel_insert_input + order: Int + results: v_team_stage_results_arr_rel_insert_input + settings: jsonb + swiss_no_elimination: Boolean + third_place_match: Boolean + tournament: tournaments_obj_rel_insert_input + tournament_id: uuid + type: e_tournament_stage_types_enum + windows: tournament_stage_windows_arr_rel_insert_input +} + +"""aggregate max on columns""" +type tournament_stages_max_fields { + decider_best_of: Int + default_best_of: Int + final_map_advantage: Int + groups: Int + id: uuid + match_options_id: uuid + max_rounds: Int + max_teams: Int + min_teams: Int + order: Int + tournament_id: uuid +} + +""" +order by max() on columns of table "tournament_stages" +""" +input tournament_stages_max_order_by { + decider_best_of: order_by + default_best_of: order_by + final_map_advantage: order_by + groups: order_by + id: order_by + match_options_id: order_by + max_rounds: order_by + max_teams: order_by + min_teams: order_by + order: order_by + tournament_id: order_by +} + +"""aggregate min on columns""" +type tournament_stages_min_fields { + decider_best_of: Int + default_best_of: Int + final_map_advantage: Int + groups: Int + id: uuid + match_options_id: uuid + max_rounds: Int + max_teams: Int + min_teams: Int + order: Int + tournament_id: uuid +} + +""" +order by min() on columns of table "tournament_stages" +""" +input tournament_stages_min_order_by { + decider_best_of: order_by + default_best_of: order_by + final_map_advantage: order_by + groups: order_by + id: order_by + match_options_id: order_by + max_rounds: order_by + max_teams: order_by + min_teams: order_by + order: order_by + tournament_id: order_by +} + +""" +response of any mutation on the table "tournament_stages" +""" +type tournament_stages_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [tournament_stages!]! +} + +""" +input type for inserting object relation for remote table "tournament_stages" +""" +input tournament_stages_obj_rel_insert_input { + data: tournament_stages_insert_input! + + """upsert condition""" + on_conflict: tournament_stages_on_conflict +} + +""" +on_conflict condition type for table "tournament_stages" +""" +input tournament_stages_on_conflict { + constraint: tournament_stages_constraint! + update_columns: [tournament_stages_update_column!]! = [] + where: tournament_stages_bool_exp +} + +"""Ordering options when selecting data from "tournament_stages".""" +input tournament_stages_order_by { + brackets_aggregate: tournament_brackets_aggregate_order_by + decider_best_of: order_by + default_best_of: order_by + e_tournament_stage_type: e_tournament_stage_types_order_by + final_map_advantage: order_by + groups: order_by + id: order_by + match_options_id: order_by + max_rounds: order_by + max_teams: order_by + min_teams: order_by + options: match_options_order_by + order: order_by + results_aggregate: v_team_stage_results_aggregate_order_by + settings: order_by + swiss_no_elimination: order_by + third_place_match: order_by + tournament: tournaments_order_by + tournament_id: order_by + type: order_by + windows_aggregate: tournament_stage_windows_aggregate_order_by +} + +"""primary key columns input for table: tournament_stages""" +input tournament_stages_pk_columns_input { + id: uuid! +} + +"""prepend existing jsonb value of filtered columns with new jsonb value""" +input tournament_stages_prepend_input { + settings: jsonb +} + +""" +select columns of table "tournament_stages" +""" +enum tournament_stages_select_column { + """column name""" + decider_best_of + + """column name""" + default_best_of + + """column name""" + final_map_advantage + + """column name""" + groups + + """column name""" + id + + """column name""" + match_options_id + + """column name""" + max_rounds + + """column name""" + max_teams + + """column name""" + min_teams + + """column name""" + order + + """column name""" + settings + + """column name""" + swiss_no_elimination + + """column name""" + third_place_match + + """column name""" + tournament_id + + """column name""" + type +} + +""" +select "tournament_stages_aggregate_bool_exp_bool_and_arguments_columns" columns of table "tournament_stages" +""" +enum tournament_stages_select_column_tournament_stages_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + swiss_no_elimination + + """column name""" + third_place_match +} + +""" +select "tournament_stages_aggregate_bool_exp_bool_or_arguments_columns" columns of table "tournament_stages" +""" +enum tournament_stages_select_column_tournament_stages_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + swiss_no_elimination + + """column name""" + third_place_match +} + +""" +input type for updating data in table "tournament_stages" +""" +input tournament_stages_set_input { + decider_best_of: Int + default_best_of: Int + final_map_advantage: Int + groups: Int + id: uuid + match_options_id: uuid + max_rounds: Int + max_teams: Int + min_teams: Int + order: Int + settings: jsonb + swiss_no_elimination: Boolean + third_place_match: Boolean + tournament_id: uuid + type: e_tournament_stage_types_enum +} + +"""aggregate stddev on columns""" +type tournament_stages_stddev_fields { + decider_best_of: Float + default_best_of: Float + final_map_advantage: Float + groups: Float + max_rounds: Float + max_teams: Float + min_teams: Float + order: Float +} + +""" +order by stddev() on columns of table "tournament_stages" +""" +input tournament_stages_stddev_order_by { + decider_best_of: order_by + default_best_of: order_by + final_map_advantage: order_by + groups: order_by + max_rounds: order_by + max_teams: order_by + min_teams: order_by + order: order_by +} + +"""aggregate stddev_pop on columns""" +type tournament_stages_stddev_pop_fields { + decider_best_of: Float + default_best_of: Float + final_map_advantage: Float + groups: Float + max_rounds: Float + max_teams: Float + min_teams: Float + order: Float +} + +""" +order by stddev_pop() on columns of table "tournament_stages" +""" +input tournament_stages_stddev_pop_order_by { + decider_best_of: order_by + default_best_of: order_by + final_map_advantage: order_by + groups: order_by + max_rounds: order_by + max_teams: order_by + min_teams: order_by + order: order_by +} + +"""aggregate stddev_samp on columns""" +type tournament_stages_stddev_samp_fields { + decider_best_of: Float + default_best_of: Float + final_map_advantage: Float + groups: Float + max_rounds: Float + max_teams: Float + min_teams: Float + order: Float +} + +""" +order by stddev_samp() on columns of table "tournament_stages" +""" +input tournament_stages_stddev_samp_order_by { + decider_best_of: order_by + default_best_of: order_by + final_map_advantage: order_by + groups: order_by + max_rounds: order_by + max_teams: order_by + min_teams: order_by + order: order_by +} + +""" +Streaming cursor of the table "tournament_stages" +""" +input tournament_stages_stream_cursor_input { + """Stream column input with initial value""" + initial_value: tournament_stages_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input tournament_stages_stream_cursor_value_input { + decider_best_of: Int + default_best_of: Int + final_map_advantage: Int + groups: Int + id: uuid + match_options_id: uuid + max_rounds: Int + max_teams: Int + min_teams: Int + order: Int + settings: jsonb + swiss_no_elimination: Boolean + third_place_match: Boolean + tournament_id: uuid + type: e_tournament_stage_types_enum +} + +"""aggregate sum on columns""" +type tournament_stages_sum_fields { + decider_best_of: Int + default_best_of: Int + final_map_advantage: Int + groups: Int + max_rounds: Int + max_teams: Int + min_teams: Int + order: Int +} + +""" +order by sum() on columns of table "tournament_stages" +""" +input tournament_stages_sum_order_by { + decider_best_of: order_by + default_best_of: order_by + final_map_advantage: order_by + groups: order_by + max_rounds: order_by + max_teams: order_by + min_teams: order_by + order: order_by +} + +""" +update columns of table "tournament_stages" +""" +enum tournament_stages_update_column { + """column name""" + decider_best_of + + """column name""" + default_best_of + + """column name""" + final_map_advantage + + """column name""" + groups + + """column name""" + id + + """column name""" + match_options_id + + """column name""" + max_rounds + + """column name""" + max_teams + + """column name""" + min_teams + + """column name""" + order + + """column name""" + settings + + """column name""" + swiss_no_elimination + + """column name""" + third_place_match + + """column name""" + tournament_id + + """column name""" + type +} + +input tournament_stages_updates { + """append existing jsonb value of filtered columns with new jsonb value""" + _append: tournament_stages_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: tournament_stages_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: tournament_stages_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: tournament_stages_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_stages_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: tournament_stages_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_stages_set_input + + """filter the rows which have to be updated""" + where: tournament_stages_bool_exp! +} + +"""aggregate var_pop on columns""" +type tournament_stages_var_pop_fields { + decider_best_of: Float + default_best_of: Float + final_map_advantage: Float + groups: Float + max_rounds: Float + max_teams: Float + min_teams: Float + order: Float +} + +""" +order by var_pop() on columns of table "tournament_stages" +""" +input tournament_stages_var_pop_order_by { + decider_best_of: order_by + default_best_of: order_by + final_map_advantage: order_by + groups: order_by + max_rounds: order_by + max_teams: order_by + min_teams: order_by + order: order_by +} + +"""aggregate var_samp on columns""" +type tournament_stages_var_samp_fields { + decider_best_of: Float + default_best_of: Float + final_map_advantage: Float + groups: Float + max_rounds: Float + max_teams: Float + min_teams: Float + order: Float +} + +""" +order by var_samp() on columns of table "tournament_stages" +""" +input tournament_stages_var_samp_order_by { + decider_best_of: order_by + default_best_of: order_by + final_map_advantage: order_by + groups: order_by + max_rounds: order_by + max_teams: order_by + min_teams: order_by + order: order_by +} + +"""aggregate variance on columns""" +type tournament_stages_variance_fields { + decider_best_of: Float + default_best_of: Float + final_map_advantage: Float + groups: Float + max_rounds: Float + max_teams: Float + min_teams: Float + order: Float +} + +""" +order by variance() on columns of table "tournament_stages" +""" +input tournament_stages_variance_order_by { + decider_best_of: order_by + default_best_of: order_by + final_map_advantage: order_by + groups: order_by + max_rounds: order_by + max_teams: order_by + min_teams: order_by + order: order_by +} + +""" +columns and relationships of "tournament_team_invites" +""" +type tournament_team_invites { + created_at: timestamptz! + id: uuid! + + """An object relationship""" + invited_by: players! + invited_by_player_steam_id: bigint! + + """An object relationship""" + player: players! + steam_id: bigint! + + """An object relationship""" + team: tournament_teams! + tournament_team_id: uuid! +} + +""" +aggregated selection of "tournament_team_invites" +""" +type tournament_team_invites_aggregate { + aggregate: tournament_team_invites_aggregate_fields + nodes: [tournament_team_invites!]! +} + +input tournament_team_invites_aggregate_bool_exp { + count: tournament_team_invites_aggregate_bool_exp_count +} + +input tournament_team_invites_aggregate_bool_exp_count { + arguments: [tournament_team_invites_select_column!] + distinct: Boolean + filter: tournament_team_invites_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "tournament_team_invites" +""" +type tournament_team_invites_aggregate_fields { + avg: tournament_team_invites_avg_fields + count(columns: [tournament_team_invites_select_column!], distinct: Boolean): Int! + max: tournament_team_invites_max_fields + min: tournament_team_invites_min_fields + stddev: tournament_team_invites_stddev_fields + stddev_pop: tournament_team_invites_stddev_pop_fields + stddev_samp: tournament_team_invites_stddev_samp_fields + sum: tournament_team_invites_sum_fields + var_pop: tournament_team_invites_var_pop_fields + var_samp: tournament_team_invites_var_samp_fields + variance: tournament_team_invites_variance_fields +} + +""" +order by aggregate values of table "tournament_team_invites" +""" +input tournament_team_invites_aggregate_order_by { + avg: tournament_team_invites_avg_order_by + count: order_by + max: tournament_team_invites_max_order_by + min: tournament_team_invites_min_order_by + stddev: tournament_team_invites_stddev_order_by + stddev_pop: tournament_team_invites_stddev_pop_order_by + stddev_samp: tournament_team_invites_stddev_samp_order_by + sum: tournament_team_invites_sum_order_by + var_pop: tournament_team_invites_var_pop_order_by + var_samp: tournament_team_invites_var_samp_order_by + variance: tournament_team_invites_variance_order_by +} + +""" +input type for inserting array relation for remote table "tournament_team_invites" +""" +input tournament_team_invites_arr_rel_insert_input { + data: [tournament_team_invites_insert_input!]! + + """upsert condition""" + on_conflict: tournament_team_invites_on_conflict +} + +"""aggregate avg on columns""" +type tournament_team_invites_avg_fields { + invited_by_player_steam_id: Float + steam_id: Float +} + +""" +order by avg() on columns of table "tournament_team_invites" +""" +input tournament_team_invites_avg_order_by { + invited_by_player_steam_id: order_by + steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "tournament_team_invites". All fields are combined with a logical 'AND'. +""" +input tournament_team_invites_bool_exp { + _and: [tournament_team_invites_bool_exp!] + _not: tournament_team_invites_bool_exp + _or: [tournament_team_invites_bool_exp!] + created_at: timestamptz_comparison_exp + id: uuid_comparison_exp + invited_by: players_bool_exp + invited_by_player_steam_id: bigint_comparison_exp + player: players_bool_exp + steam_id: bigint_comparison_exp + team: tournament_teams_bool_exp + tournament_team_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "tournament_team_invites" +""" +enum tournament_team_invites_constraint { + """ + unique or primary key constraint on columns "id" + """ + tournament_team_invites_pkey + + """ + unique or primary key constraint on columns "steam_id", "tournament_team_id" + """ + tournament_team_invites_steam_id_tournament_team_id_key +} + +""" +input type for incrementing numeric columns in table "tournament_team_invites" +""" +input tournament_team_invites_inc_input { + invited_by_player_steam_id: bigint + steam_id: bigint +} + +""" +input type for inserting data into table "tournament_team_invites" +""" +input tournament_team_invites_insert_input { + created_at: timestamptz + id: uuid + invited_by: players_obj_rel_insert_input + invited_by_player_steam_id: bigint + player: players_obj_rel_insert_input + steam_id: bigint + team: tournament_teams_obj_rel_insert_input + tournament_team_id: uuid +} + +"""aggregate max on columns""" +type tournament_team_invites_max_fields { + created_at: timestamptz + id: uuid + invited_by_player_steam_id: bigint + steam_id: bigint + tournament_team_id: uuid +} + +""" +order by max() on columns of table "tournament_team_invites" +""" +input tournament_team_invites_max_order_by { + created_at: order_by + id: order_by + invited_by_player_steam_id: order_by + steam_id: order_by + tournament_team_id: order_by +} + +"""aggregate min on columns""" +type tournament_team_invites_min_fields { + created_at: timestamptz + id: uuid + invited_by_player_steam_id: bigint + steam_id: bigint + tournament_team_id: uuid +} + +""" +order by min() on columns of table "tournament_team_invites" +""" +input tournament_team_invites_min_order_by { + created_at: order_by + id: order_by + invited_by_player_steam_id: order_by + steam_id: order_by + tournament_team_id: order_by +} + +""" +response of any mutation on the table "tournament_team_invites" +""" +type tournament_team_invites_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [tournament_team_invites!]! +} + +""" +on_conflict condition type for table "tournament_team_invites" +""" +input tournament_team_invites_on_conflict { + constraint: tournament_team_invites_constraint! + update_columns: [tournament_team_invites_update_column!]! = [] + where: tournament_team_invites_bool_exp +} + +"""Ordering options when selecting data from "tournament_team_invites".""" +input tournament_team_invites_order_by { + created_at: order_by + id: order_by + invited_by: players_order_by + invited_by_player_steam_id: order_by + player: players_order_by + steam_id: order_by + team: tournament_teams_order_by + tournament_team_id: order_by +} + +"""primary key columns input for table: tournament_team_invites""" +input tournament_team_invites_pk_columns_input { + id: uuid! +} + +""" +select columns of table "tournament_team_invites" +""" +enum tournament_team_invites_select_column { + """column name""" + created_at + + """column name""" + id + + """column name""" + invited_by_player_steam_id + + """column name""" + steam_id + + """column name""" + tournament_team_id +} + +""" +input type for updating data in table "tournament_team_invites" +""" +input tournament_team_invites_set_input { + created_at: timestamptz + id: uuid + invited_by_player_steam_id: bigint + steam_id: bigint + tournament_team_id: uuid +} + +"""aggregate stddev on columns""" +type tournament_team_invites_stddev_fields { + invited_by_player_steam_id: Float + steam_id: Float +} + +""" +order by stddev() on columns of table "tournament_team_invites" +""" +input tournament_team_invites_stddev_order_by { + invited_by_player_steam_id: order_by + steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type tournament_team_invites_stddev_pop_fields { + invited_by_player_steam_id: Float + steam_id: Float +} + +""" +order by stddev_pop() on columns of table "tournament_team_invites" +""" +input tournament_team_invites_stddev_pop_order_by { + invited_by_player_steam_id: order_by + steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type tournament_team_invites_stddev_samp_fields { + invited_by_player_steam_id: Float + steam_id: Float +} + +""" +order by stddev_samp() on columns of table "tournament_team_invites" +""" +input tournament_team_invites_stddev_samp_order_by { + invited_by_player_steam_id: order_by + steam_id: order_by +} + +""" +Streaming cursor of the table "tournament_team_invites" +""" +input tournament_team_invites_stream_cursor_input { + """Stream column input with initial value""" + initial_value: tournament_team_invites_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input tournament_team_invites_stream_cursor_value_input { + created_at: timestamptz + id: uuid + invited_by_player_steam_id: bigint + steam_id: bigint + tournament_team_id: uuid +} + +"""aggregate sum on columns""" +type tournament_team_invites_sum_fields { + invited_by_player_steam_id: bigint + steam_id: bigint +} + +""" +order by sum() on columns of table "tournament_team_invites" +""" +input tournament_team_invites_sum_order_by { + invited_by_player_steam_id: order_by + steam_id: order_by +} + +""" +update columns of table "tournament_team_invites" +""" +enum tournament_team_invites_update_column { + """column name""" + created_at + + """column name""" + id + + """column name""" + invited_by_player_steam_id + + """column name""" + steam_id + + """column name""" + tournament_team_id +} + +input tournament_team_invites_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_team_invites_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_team_invites_set_input + + """filter the rows which have to be updated""" + where: tournament_team_invites_bool_exp! +} + +"""aggregate var_pop on columns""" +type tournament_team_invites_var_pop_fields { + invited_by_player_steam_id: Float + steam_id: Float +} + +""" +order by var_pop() on columns of table "tournament_team_invites" +""" +input tournament_team_invites_var_pop_order_by { + invited_by_player_steam_id: order_by + steam_id: order_by +} + +"""aggregate var_samp on columns""" +type tournament_team_invites_var_samp_fields { + invited_by_player_steam_id: Float + steam_id: Float +} + +""" +order by var_samp() on columns of table "tournament_team_invites" +""" +input tournament_team_invites_var_samp_order_by { + invited_by_player_steam_id: order_by + steam_id: order_by +} + +"""aggregate variance on columns""" +type tournament_team_invites_variance_fields { + invited_by_player_steam_id: Float + steam_id: Float +} + +""" +order by variance() on columns of table "tournament_team_invites" +""" +input tournament_team_invites_variance_order_by { + invited_by_player_steam_id: order_by + steam_id: order_by +} + +""" +columns and relationships of "tournament_team_roster" +""" +type tournament_team_roster { + checked_in_at: timestamptz + + """An object relationship""" + e_team_role: e_team_roles! + + """An object relationship""" + player: players! + player_steam_id: bigint! + role: e_team_roles_enum! + + """ + A computed field, executes function "tournament_team_roster_target_eligible" + """ + target_eligible: Boolean + + """An object relationship""" + tournament: tournaments! + tournament_id: uuid! + + """An object relationship""" + tournament_team: tournament_teams! + tournament_team_id: uuid! +} + +""" +aggregated selection of "tournament_team_roster" +""" +type tournament_team_roster_aggregate { + aggregate: tournament_team_roster_aggregate_fields + nodes: [tournament_team_roster!]! +} + +input tournament_team_roster_aggregate_bool_exp { + count: tournament_team_roster_aggregate_bool_exp_count +} + +input tournament_team_roster_aggregate_bool_exp_count { + arguments: [tournament_team_roster_select_column!] + distinct: Boolean + filter: tournament_team_roster_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "tournament_team_roster" +""" +type tournament_team_roster_aggregate_fields { + avg: tournament_team_roster_avg_fields + count(columns: [tournament_team_roster_select_column!], distinct: Boolean): Int! + max: tournament_team_roster_max_fields + min: tournament_team_roster_min_fields + stddev: tournament_team_roster_stddev_fields + stddev_pop: tournament_team_roster_stddev_pop_fields + stddev_samp: tournament_team_roster_stddev_samp_fields + sum: tournament_team_roster_sum_fields + var_pop: tournament_team_roster_var_pop_fields + var_samp: tournament_team_roster_var_samp_fields + variance: tournament_team_roster_variance_fields +} + +""" +order by aggregate values of table "tournament_team_roster" +""" +input tournament_team_roster_aggregate_order_by { + avg: tournament_team_roster_avg_order_by + count: order_by + max: tournament_team_roster_max_order_by + min: tournament_team_roster_min_order_by + stddev: tournament_team_roster_stddev_order_by + stddev_pop: tournament_team_roster_stddev_pop_order_by + stddev_samp: tournament_team_roster_stddev_samp_order_by + sum: tournament_team_roster_sum_order_by + var_pop: tournament_team_roster_var_pop_order_by + var_samp: tournament_team_roster_var_samp_order_by + variance: tournament_team_roster_variance_order_by +} + +""" +input type for inserting array relation for remote table "tournament_team_roster" +""" +input tournament_team_roster_arr_rel_insert_input { + data: [tournament_team_roster_insert_input!]! + + """upsert condition""" + on_conflict: tournament_team_roster_on_conflict +} + +"""aggregate avg on columns""" +type tournament_team_roster_avg_fields { + player_steam_id: Float +} + +""" +order by avg() on columns of table "tournament_team_roster" +""" +input tournament_team_roster_avg_order_by { + player_steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "tournament_team_roster". All fields are combined with a logical 'AND'. +""" +input tournament_team_roster_bool_exp { + _and: [tournament_team_roster_bool_exp!] + _not: tournament_team_roster_bool_exp + _or: [tournament_team_roster_bool_exp!] + checked_in_at: timestamptz_comparison_exp + e_team_role: e_team_roles_bool_exp + player: players_bool_exp + player_steam_id: bigint_comparison_exp + role: e_team_roles_enum_comparison_exp + target_eligible: Boolean_comparison_exp + tournament: tournaments_bool_exp + tournament_id: uuid_comparison_exp + tournament_team: tournament_teams_bool_exp + tournament_team_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "tournament_team_roster" +""" +enum tournament_team_roster_constraint { + """ + unique or primary key constraint on columns "player_steam_id", "tournament_id" + """ + tournament_roster_pkey + + """ + unique or primary key constraint on columns "player_steam_id", "tournament_id" + """ + tournament_roster_player_steam_id_tournament_id_key +} + +""" +input type for incrementing numeric columns in table "tournament_team_roster" +""" +input tournament_team_roster_inc_input { + player_steam_id: bigint +} + +""" +input type for inserting data into table "tournament_team_roster" +""" +input tournament_team_roster_insert_input { + checked_in_at: timestamptz + e_team_role: e_team_roles_obj_rel_insert_input + player: players_obj_rel_insert_input + player_steam_id: bigint + role: e_team_roles_enum + tournament: tournaments_obj_rel_insert_input + tournament_id: uuid + tournament_team: tournament_teams_obj_rel_insert_input + tournament_team_id: uuid +} + +"""aggregate max on columns""" +type tournament_team_roster_max_fields { + checked_in_at: timestamptz + player_steam_id: bigint + tournament_id: uuid + tournament_team_id: uuid +} + +""" +order by max() on columns of table "tournament_team_roster" +""" +input tournament_team_roster_max_order_by { + checked_in_at: order_by + player_steam_id: order_by + tournament_id: order_by + tournament_team_id: order_by +} + +"""aggregate min on columns""" +type tournament_team_roster_min_fields { + checked_in_at: timestamptz + player_steam_id: bigint + tournament_id: uuid + tournament_team_id: uuid +} + +""" +order by min() on columns of table "tournament_team_roster" +""" +input tournament_team_roster_min_order_by { + checked_in_at: order_by + player_steam_id: order_by + tournament_id: order_by + tournament_team_id: order_by +} + +""" +response of any mutation on the table "tournament_team_roster" +""" +type tournament_team_roster_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [tournament_team_roster!]! +} + +""" +on_conflict condition type for table "tournament_team_roster" +""" +input tournament_team_roster_on_conflict { + constraint: tournament_team_roster_constraint! + update_columns: [tournament_team_roster_update_column!]! = [] + where: tournament_team_roster_bool_exp +} + +"""Ordering options when selecting data from "tournament_team_roster".""" +input tournament_team_roster_order_by { + checked_in_at: order_by + e_team_role: e_team_roles_order_by + player: players_order_by + player_steam_id: order_by + role: order_by + target_eligible: order_by + tournament: tournaments_order_by + tournament_id: order_by + tournament_team: tournament_teams_order_by + tournament_team_id: order_by +} + +"""primary key columns input for table: tournament_team_roster""" +input tournament_team_roster_pk_columns_input { + player_steam_id: bigint! + tournament_id: uuid! +} + +""" +select columns of table "tournament_team_roster" +""" +enum tournament_team_roster_select_column { + """column name""" + checked_in_at + + """column name""" + player_steam_id + + """column name""" + role + + """column name""" + tournament_id + + """column name""" + tournament_team_id +} + +""" +input type for updating data in table "tournament_team_roster" +""" +input tournament_team_roster_set_input { + checked_in_at: timestamptz + player_steam_id: bigint + role: e_team_roles_enum + tournament_id: uuid + tournament_team_id: uuid +} + +"""aggregate stddev on columns""" +type tournament_team_roster_stddev_fields { + player_steam_id: Float +} + +""" +order by stddev() on columns of table "tournament_team_roster" +""" +input tournament_team_roster_stddev_order_by { + player_steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type tournament_team_roster_stddev_pop_fields { + player_steam_id: Float +} + +""" +order by stddev_pop() on columns of table "tournament_team_roster" +""" +input tournament_team_roster_stddev_pop_order_by { + player_steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type tournament_team_roster_stddev_samp_fields { + player_steam_id: Float +} + +""" +order by stddev_samp() on columns of table "tournament_team_roster" +""" +input tournament_team_roster_stddev_samp_order_by { + player_steam_id: order_by +} + +""" +Streaming cursor of the table "tournament_team_roster" +""" +input tournament_team_roster_stream_cursor_input { + """Stream column input with initial value""" + initial_value: tournament_team_roster_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input tournament_team_roster_stream_cursor_value_input { + checked_in_at: timestamptz + player_steam_id: bigint + role: e_team_roles_enum + tournament_id: uuid + tournament_team_id: uuid +} + +"""aggregate sum on columns""" +type tournament_team_roster_sum_fields { + player_steam_id: bigint +} + +""" +order by sum() on columns of table "tournament_team_roster" +""" +input tournament_team_roster_sum_order_by { + player_steam_id: order_by +} + +""" +update columns of table "tournament_team_roster" +""" +enum tournament_team_roster_update_column { + """column name""" + checked_in_at + + """column name""" + player_steam_id + + """column name""" + role + + """column name""" + tournament_id + + """column name""" + tournament_team_id +} + +input tournament_team_roster_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_team_roster_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_team_roster_set_input + + """filter the rows which have to be updated""" + where: tournament_team_roster_bool_exp! +} + +"""aggregate var_pop on columns""" +type tournament_team_roster_var_pop_fields { + player_steam_id: Float +} + +""" +order by var_pop() on columns of table "tournament_team_roster" +""" +input tournament_team_roster_var_pop_order_by { + player_steam_id: order_by +} + +"""aggregate var_samp on columns""" +type tournament_team_roster_var_samp_fields { + player_steam_id: Float +} + +""" +order by var_samp() on columns of table "tournament_team_roster" +""" +input tournament_team_roster_var_samp_order_by { + player_steam_id: order_by +} + +"""aggregate variance on columns""" +type tournament_team_roster_variance_fields { + player_steam_id: Float +} + +""" +order by variance() on columns of table "tournament_team_roster" +""" +input tournament_team_roster_variance_order_by { + player_steam_id: order_by +} + +""" +columns and relationships of "tournament_teams" +""" +type tournament_teams { + """ + A computed field, executes function "can_manage_tournament_team" + """ + can_manage: Boolean + + """An object relationship""" + captain: players + captain_steam_id: bigint + + """ + A computed field, executes function "tournament_team_checked_in" + """ + checked_in: Boolean + checked_in_at: timestamptz + created_at: timestamptz! + + """An object relationship""" + creator: players! + eligible_at: timestamptz + + """An array relationship""" + free_agents( + """distinct select on columns""" + distinct_on: [tournament_free_agents_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_free_agents_order_by!] + + """filter the rows returned""" + where: tournament_free_agents_bool_exp + ): [tournament_free_agents!]! + + """An aggregate relationship""" + free_agents_aggregate( + """distinct select on columns""" + distinct_on: [tournament_free_agents_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_free_agents_order_by!] + + """filter the rows returned""" + where: tournament_free_agents_bool_exp + ): tournament_free_agents_aggregate! + id: uuid! + + """An array relationship""" + invites( + """distinct select on columns""" + distinct_on: [tournament_team_invites_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_team_invites_order_by!] + + """filter the rows returned""" + where: tournament_team_invites_bool_exp + ): [tournament_team_invites!]! + + """An aggregate relationship""" + invites_aggregate( + """distinct select on columns""" + distinct_on: [tournament_team_invites_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_team_invites_order_by!] + + """filter the rows returned""" + where: tournament_team_invites_bool_exp + ): tournament_team_invites_aggregate! + + """Created by draft_tournament_free_agent_teams rather than registered""" + is_drafted: Boolean! + name: String + owner_steam_id: bigint! + + """An object relationship""" + results: v_team_stage_results + + """An array relationship""" + roster( + """distinct select on columns""" + distinct_on: [tournament_team_roster_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_team_roster_order_by!] + + """filter the rows returned""" + where: tournament_team_roster_bool_exp + ): [tournament_team_roster!]! + + """An aggregate relationship""" + roster_aggregate( + """distinct select on columns""" + distinct_on: [tournament_team_roster_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_team_roster_order_by!] + + """filter the rows returned""" + where: tournament_team_roster_bool_exp + ): tournament_team_roster_aggregate! + seed: Int + short_name: String + + """An object relationship""" + team: teams + team_id: uuid + + """An object relationship""" + tournament: tournaments! + tournament_id: uuid! +} + +""" +aggregated selection of "tournament_teams" +""" +type tournament_teams_aggregate { + aggregate: tournament_teams_aggregate_fields + nodes: [tournament_teams!]! +} + +input tournament_teams_aggregate_bool_exp { + bool_and: tournament_teams_aggregate_bool_exp_bool_and + bool_or: tournament_teams_aggregate_bool_exp_bool_or + count: tournament_teams_aggregate_bool_exp_count +} + +input tournament_teams_aggregate_bool_exp_bool_and { + arguments: tournament_teams_select_column_tournament_teams_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: tournament_teams_bool_exp + predicate: Boolean_comparison_exp! +} + +input tournament_teams_aggregate_bool_exp_bool_or { + arguments: tournament_teams_select_column_tournament_teams_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: tournament_teams_bool_exp + predicate: Boolean_comparison_exp! +} + +input tournament_teams_aggregate_bool_exp_count { + arguments: [tournament_teams_select_column!] + distinct: Boolean + filter: tournament_teams_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "tournament_teams" +""" +type tournament_teams_aggregate_fields { + avg: tournament_teams_avg_fields + count(columns: [tournament_teams_select_column!], distinct: Boolean): Int! + max: tournament_teams_max_fields + min: tournament_teams_min_fields + stddev: tournament_teams_stddev_fields + stddev_pop: tournament_teams_stddev_pop_fields + stddev_samp: tournament_teams_stddev_samp_fields + sum: tournament_teams_sum_fields + var_pop: tournament_teams_var_pop_fields + var_samp: tournament_teams_var_samp_fields + variance: tournament_teams_variance_fields +} + +""" +order by aggregate values of table "tournament_teams" +""" +input tournament_teams_aggregate_order_by { + avg: tournament_teams_avg_order_by + count: order_by + max: tournament_teams_max_order_by + min: tournament_teams_min_order_by + stddev: tournament_teams_stddev_order_by + stddev_pop: tournament_teams_stddev_pop_order_by + stddev_samp: tournament_teams_stddev_samp_order_by + sum: tournament_teams_sum_order_by + var_pop: tournament_teams_var_pop_order_by + var_samp: tournament_teams_var_samp_order_by + variance: tournament_teams_variance_order_by +} + +""" +input type for inserting array relation for remote table "tournament_teams" +""" +input tournament_teams_arr_rel_insert_input { + data: [tournament_teams_insert_input!]! + + """upsert condition""" + on_conflict: tournament_teams_on_conflict +} + +"""aggregate avg on columns""" +type tournament_teams_avg_fields { + captain_steam_id: Float + owner_steam_id: Float + seed: Float +} + +""" +order by avg() on columns of table "tournament_teams" +""" +input tournament_teams_avg_order_by { + captain_steam_id: order_by + owner_steam_id: order_by + seed: order_by +} + +""" +Boolean expression to filter rows from the table "tournament_teams". All fields are combined with a logical 'AND'. +""" +input tournament_teams_bool_exp { + _and: [tournament_teams_bool_exp!] + _not: tournament_teams_bool_exp + _or: [tournament_teams_bool_exp!] + can_manage: Boolean_comparison_exp + captain: players_bool_exp + captain_steam_id: bigint_comparison_exp + checked_in: Boolean_comparison_exp + checked_in_at: timestamptz_comparison_exp + created_at: timestamptz_comparison_exp + creator: players_bool_exp + eligible_at: timestamptz_comparison_exp + free_agents: tournament_free_agents_bool_exp + free_agents_aggregate: tournament_free_agents_aggregate_bool_exp + id: uuid_comparison_exp + invites: tournament_team_invites_bool_exp + invites_aggregate: tournament_team_invites_aggregate_bool_exp + is_drafted: Boolean_comparison_exp + name: String_comparison_exp + owner_steam_id: bigint_comparison_exp + results: v_team_stage_results_bool_exp + roster: tournament_team_roster_bool_exp + roster_aggregate: tournament_team_roster_aggregate_bool_exp + seed: Int_comparison_exp + short_name: String_comparison_exp + team: teams_bool_exp + team_id: uuid_comparison_exp + tournament: tournaments_bool_exp + tournament_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "tournament_teams" +""" +enum tournament_teams_constraint { + """ + unique or primary key constraint on columns "id" + """ + tournament_teams_pkey + + """ + unique or primary key constraint on columns "tournament_id", "name" + """ + tournament_teams_tournament_id_name_key + + """ + unique or primary key constraint on columns "tournament_id", "seed" + """ + tournament_teams_tournament_id_seed_key + + """ + unique or primary key constraint on columns "tournament_id", "team_id" + """ + tournament_teams_tournament_id_team_id_key +} + +""" +input type for incrementing numeric columns in table "tournament_teams" +""" +input tournament_teams_inc_input { + captain_steam_id: bigint + owner_steam_id: bigint + seed: Int +} + +""" +input type for inserting data into table "tournament_teams" +""" +input tournament_teams_insert_input { + captain: players_obj_rel_insert_input + captain_steam_id: bigint + checked_in_at: timestamptz + created_at: timestamptz + creator: players_obj_rel_insert_input + eligible_at: timestamptz + free_agents: tournament_free_agents_arr_rel_insert_input + id: uuid + invites: tournament_team_invites_arr_rel_insert_input + + """Created by draft_tournament_free_agent_teams rather than registered""" + is_drafted: Boolean + name: String + owner_steam_id: bigint + results: v_team_stage_results_obj_rel_insert_input + roster: tournament_team_roster_arr_rel_insert_input + seed: Int + short_name: String + team: teams_obj_rel_insert_input + team_id: uuid + tournament: tournaments_obj_rel_insert_input + tournament_id: uuid +} + +"""aggregate max on columns""" +type tournament_teams_max_fields { + captain_steam_id: bigint + checked_in_at: timestamptz + created_at: timestamptz + eligible_at: timestamptz + id: uuid + name: String + owner_steam_id: bigint + seed: Int + short_name: String + team_id: uuid + tournament_id: uuid +} + +""" +order by max() on columns of table "tournament_teams" +""" +input tournament_teams_max_order_by { + captain_steam_id: order_by + checked_in_at: order_by + created_at: order_by + eligible_at: order_by + id: order_by + name: order_by + owner_steam_id: order_by + seed: order_by + short_name: order_by + team_id: order_by + tournament_id: order_by +} + +"""aggregate min on columns""" +type tournament_teams_min_fields { + captain_steam_id: bigint + checked_in_at: timestamptz + created_at: timestamptz + eligible_at: timestamptz + id: uuid + name: String + owner_steam_id: bigint + seed: Int + short_name: String + team_id: uuid + tournament_id: uuid +} + +""" +order by min() on columns of table "tournament_teams" +""" +input tournament_teams_min_order_by { + captain_steam_id: order_by + checked_in_at: order_by + created_at: order_by + eligible_at: order_by + id: order_by + name: order_by + owner_steam_id: order_by + seed: order_by + short_name: order_by + team_id: order_by + tournament_id: order_by +} + +""" +response of any mutation on the table "tournament_teams" +""" +type tournament_teams_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [tournament_teams!]! +} + +""" +input type for inserting object relation for remote table "tournament_teams" +""" +input tournament_teams_obj_rel_insert_input { + data: tournament_teams_insert_input! + + """upsert condition""" + on_conflict: tournament_teams_on_conflict +} + +""" +on_conflict condition type for table "tournament_teams" +""" +input tournament_teams_on_conflict { + constraint: tournament_teams_constraint! + update_columns: [tournament_teams_update_column!]! = [] + where: tournament_teams_bool_exp +} + +"""Ordering options when selecting data from "tournament_teams".""" +input tournament_teams_order_by { + can_manage: order_by + captain: players_order_by + captain_steam_id: order_by + checked_in: order_by + checked_in_at: order_by + created_at: order_by + creator: players_order_by + eligible_at: order_by + free_agents_aggregate: tournament_free_agents_aggregate_order_by + id: order_by + invites_aggregate: tournament_team_invites_aggregate_order_by + is_drafted: order_by + name: order_by + owner_steam_id: order_by + results: v_team_stage_results_order_by + roster_aggregate: tournament_team_roster_aggregate_order_by + seed: order_by + short_name: order_by + team: teams_order_by + team_id: order_by + tournament: tournaments_order_by + tournament_id: order_by +} + +"""primary key columns input for table: tournament_teams""" +input tournament_teams_pk_columns_input { + id: uuid! +} + +""" +select columns of table "tournament_teams" +""" +enum tournament_teams_select_column { + """column name""" + captain_steam_id + + """column name""" + checked_in_at + + """column name""" + created_at + + """column name""" + eligible_at + + """column name""" + id + + """column name""" + is_drafted + + """column name""" + name + + """column name""" + owner_steam_id + + """column name""" + seed + + """column name""" + short_name + + """column name""" + team_id + + """column name""" + tournament_id +} + +""" +select "tournament_teams_aggregate_bool_exp_bool_and_arguments_columns" columns of table "tournament_teams" +""" +enum tournament_teams_select_column_tournament_teams_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + is_drafted +} + +""" +select "tournament_teams_aggregate_bool_exp_bool_or_arguments_columns" columns of table "tournament_teams" +""" +enum tournament_teams_select_column_tournament_teams_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + is_drafted +} + +""" +input type for updating data in table "tournament_teams" +""" +input tournament_teams_set_input { + captain_steam_id: bigint + checked_in_at: timestamptz + created_at: timestamptz + eligible_at: timestamptz + id: uuid + + """Created by draft_tournament_free_agent_teams rather than registered""" + is_drafted: Boolean + name: String + owner_steam_id: bigint + seed: Int + short_name: String + team_id: uuid + tournament_id: uuid +} + +"""aggregate stddev on columns""" +type tournament_teams_stddev_fields { + captain_steam_id: Float + owner_steam_id: Float + seed: Float +} + +""" +order by stddev() on columns of table "tournament_teams" +""" +input tournament_teams_stddev_order_by { + captain_steam_id: order_by + owner_steam_id: order_by + seed: order_by +} + +"""aggregate stddev_pop on columns""" +type tournament_teams_stddev_pop_fields { + captain_steam_id: Float + owner_steam_id: Float + seed: Float +} + +""" +order by stddev_pop() on columns of table "tournament_teams" +""" +input tournament_teams_stddev_pop_order_by { + captain_steam_id: order_by + owner_steam_id: order_by + seed: order_by +} + +"""aggregate stddev_samp on columns""" +type tournament_teams_stddev_samp_fields { + captain_steam_id: Float + owner_steam_id: Float + seed: Float +} + +""" +order by stddev_samp() on columns of table "tournament_teams" +""" +input tournament_teams_stddev_samp_order_by { + captain_steam_id: order_by + owner_steam_id: order_by + seed: order_by +} + +""" +Streaming cursor of the table "tournament_teams" +""" +input tournament_teams_stream_cursor_input { + """Stream column input with initial value""" + initial_value: tournament_teams_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input tournament_teams_stream_cursor_value_input { + captain_steam_id: bigint + checked_in_at: timestamptz + created_at: timestamptz + eligible_at: timestamptz + id: uuid + + """Created by draft_tournament_free_agent_teams rather than registered""" + is_drafted: Boolean + name: String + owner_steam_id: bigint + seed: Int + short_name: String + team_id: uuid + tournament_id: uuid +} + +"""aggregate sum on columns""" +type tournament_teams_sum_fields { + captain_steam_id: bigint + owner_steam_id: bigint + seed: Int +} + +""" +order by sum() on columns of table "tournament_teams" +""" +input tournament_teams_sum_order_by { + captain_steam_id: order_by + owner_steam_id: order_by + seed: order_by +} + +""" +update columns of table "tournament_teams" +""" +enum tournament_teams_update_column { + """column name""" + captain_steam_id + + """column name""" + checked_in_at + + """column name""" + created_at + + """column name""" + eligible_at + + """column name""" + id + + """column name""" + is_drafted + + """column name""" + name + + """column name""" + owner_steam_id + + """column name""" + seed + + """column name""" + short_name + + """column name""" + team_id + + """column name""" + tournament_id +} + +input tournament_teams_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_teams_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_teams_set_input + + """filter the rows which have to be updated""" + where: tournament_teams_bool_exp! +} + +"""aggregate var_pop on columns""" +type tournament_teams_var_pop_fields { + captain_steam_id: Float + owner_steam_id: Float + seed: Float +} + +""" +order by var_pop() on columns of table "tournament_teams" +""" +input tournament_teams_var_pop_order_by { + captain_steam_id: order_by + owner_steam_id: order_by + seed: order_by +} + +"""aggregate var_samp on columns""" +type tournament_teams_var_samp_fields { + captain_steam_id: Float + owner_steam_id: Float + seed: Float +} + +""" +order by var_samp() on columns of table "tournament_teams" +""" +input tournament_teams_var_samp_order_by { + captain_steam_id: order_by + owner_steam_id: order_by + seed: order_by +} + +"""aggregate variance on columns""" +type tournament_teams_variance_fields { + captain_steam_id: Float + owner_steam_id: Float + seed: Float +} + +""" +order by variance() on columns of table "tournament_teams" +""" +input tournament_teams_variance_order_by { + captain_steam_id: order_by + owner_steam_id: order_by + seed: order_by +} + +""" +columns and relationships of "tournaments" +""" +type tournaments { + """An object relationship""" + admin: players! + auto_start: Boolean! + + """An array relationship""" + award_configs( + """distinct select on columns""" + distinct_on: [tournament_awards_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_awards_order_by!] + + """filter the rows returned""" + where: tournament_awards_bool_exp + ): [tournament_awards!]! + + """An aggregate relationship""" + award_configs_aggregate( + """distinct select on columns""" + distinct_on: [tournament_awards_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_awards_order_by!] + + """filter the rows returned""" + where: tournament_awards_bool_exp + ): tournament_awards_aggregate! + + """An array relationship""" + awards( + """distinct select on columns""" + distinct_on: [award_recipients_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: [award_recipients_order_by!] + + """filter the rows returned""" + where: award_recipients_bool_exp + ): [award_recipients!]! + + """An aggregate relationship""" + awards_aggregate( + """distinct select on columns""" + distinct_on: [award_recipients_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: [award_recipients_order_by!] + + """filter the rows returned""" + where: award_recipients_bool_exp + ): award_recipients_aggregate! + awards_enabled: Boolean! + banner: String + + """ + A computed field, executes function "can_cancel_tournament" + """ + can_cancel: Boolean + + """ + A computed field, executes function "can_close_tournament_registration" + """ + can_close_registration: Boolean + + """ + A computed field, executes function "can_join_tournament" + """ + can_join: Boolean + + """ + A computed field, executes function "can_open_tournament_registration" + """ + can_open_registration: Boolean + + """ + A computed field, executes function "can_pause_tournament" + """ + can_pause: Boolean + + """ + A computed field, executes function "can_resume_tournament" + """ + can_resume: Boolean + + """ + A computed field, executes function "can_review_tournament_check_in" + """ + can_review_check_in: Boolean + + """ + A computed field, executes function "can_setup_tournament" + """ + can_setup: Boolean + + """ + A computed field, executes function "can_start_tournament" + """ + can_start: Boolean + + """An array relationship""" + categories( + """distinct select on columns""" + distinct_on: [tournament_categories_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_categories_order_by!] + + """filter the rows returned""" + where: tournament_categories_bool_exp + ): [tournament_categories!]! + + """An aggregate relationship""" + categories_aggregate( + """distinct select on columns""" + distinct_on: [tournament_categories_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_categories_order_by!] + + """filter the rows returned""" + where: tournament_categories_bool_exp + ): tournament_categories_aggregate! + + """The check_in_ends_at the close pass has already acted on""" + check_in_closed_for: timestamptz + check_in_closes_before_minutes: Int! + + """The check_in_ends_at the closing reminder was sent for""" + check_in_closing_notified_for: timestamptz + + """When the check-in window closes; NULL until it opens""" + check_in_ends_at: timestamptz + + """ + A computed field, executes function "tournament_check_in_open" + """ + check_in_open: Boolean + check_in_opens_before_minutes: Int! + check_in_required: Boolean! + + """ + Who confirms a team: Captains, every rostered Player, or the organizer (Admin) + """ + check_in_setting: e_check_in_settings_enum! + + """ + A computed field, executes function "tournament_check_in_started" + """ + check_in_started: Boolean + created_at: timestamptz + + """ + A computed field, executes function "tournament_current_stage" + """ + current_stage: Int + description: String + discord_guild_id: String + discord_notifications_enabled: Boolean + discord_notify_Canceled: Boolean + discord_notify_Finished: Boolean + discord_notify_Forfeit: Boolean + discord_notify_Live: Boolean + discord_notify_MapPaused: Boolean + discord_notify_PickingPlayers: Boolean + discord_notify_Scheduled: Boolean + discord_notify_Surrendered: Boolean + discord_notify_Tie: Boolean + discord_notify_Veto: Boolean + discord_notify_WaitingForCheckIn: Boolean + discord_notify_WaitingForServer: Boolean + discord_role_id: String + discord_voice_enabled: Boolean! + discord_webhook: String + + """An object relationship""" + e_tournament_status: e_tournament_status! + + """An array relationship""" + free_agents( + """distinct select on columns""" + distinct_on: [tournament_free_agents_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_free_agents_order_by!] + + """filter the rows returned""" + where: tournament_free_agents_bool_exp + ): [tournament_free_agents!]! + + """An aggregate relationship""" + free_agents_aggregate( + """distinct select on columns""" + distinct_on: [tournament_free_agents_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_free_agents_order_by!] + + """filter the rows returned""" + where: tournament_free_agents_bool_exp + ): tournament_free_agents_aggregate! + + """ + A computed field, executes function "tournament_has_min_teams" + """ + has_min_teams: Boolean + homepage: String + id: uuid! + invite_only: Boolean! + is_league: Boolean! + + """ + A computed field, executes function "is_tournament_organizer" + """ + is_organizer: Boolean + + """ + A computed field, executes function "joined_tournament" + """ + joined_tournament: Boolean + latitude: float8 + + """An object relationship""" + league_season_division: league_season_divisions + location: String + logo: String + longitude: float8 + match_options_id: uuid! + max_elo: Int + + """ + A computed field, executes function "tournament_max_players_per_lineup" + """ + max_players_per_lineup: Int + + """ + A computed field, executes function "meets_min_role" + """ + meets_min_role: Boolean + min_elo: Int + + """ + A computed field, executes function "tournament_min_players_per_lineup" + """ + min_players_per_lineup: Int + min_role: e_player_roles_enum + + """ + A computed field, executes function "tournament_missed_check_in_count" + """ + missed_check_in_count: Int + name: String! + + """An object relationship""" + options: match_options! + organizer_steam_id: bigint! + + """An array relationship""" + organizer_teams( + """distinct select on columns""" + distinct_on: [tournament_organizer_teams_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_organizer_teams_order_by!] + + """filter the rows returned""" + where: tournament_organizer_teams_bool_exp + ): [tournament_organizer_teams!]! + + """An aggregate relationship""" + organizer_teams_aggregate( + """distinct select on columns""" + distinct_on: [tournament_organizer_teams_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_organizer_teams_order_by!] + + """filter the rows returned""" + where: tournament_organizer_teams_bool_exp + ): tournament_organizer_teams_aggregate! + + """An array relationship""" + organizers( + """distinct select on columns""" + distinct_on: [tournament_organizers_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_organizers_order_by!] + + """filter the rows returned""" + where: tournament_organizers_bool_exp + ): [tournament_organizers!]! + + """An aggregate relationship""" + organizers_aggregate( + """distinct select on columns""" + distinct_on: [tournament_organizers_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_organizers_order_by!] + + """filter the rows returned""" + where: tournament_organizers_bool_exp + ): tournament_organizers_aggregate! + + """An array relationship""" + player_stats( + """distinct select on columns""" + distinct_on: [v_tournament_player_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_tournament_player_stats_order_by!] + + """filter the rows returned""" + where: v_tournament_player_stats_bool_exp + ): [v_tournament_player_stats!]! + + """An aggregate relationship""" + player_stats_aggregate( + """distinct select on columns""" + distinct_on: [v_tournament_player_stats_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_tournament_player_stats_order_by!] + + """filter the rows returned""" + where: v_tournament_player_stats_bool_exp + ): v_tournament_player_stats_aggregate! + + """An array relationship""" + prizes( + """distinct select on columns""" + distinct_on: [tournament_prizes_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_prizes_order_by!] + + """filter the rows returned""" + where: tournament_prizes_bool_exp + ): [tournament_prizes!]! + + """An aggregate relationship""" + prizes_aggregate( + """distinct select on columns""" + distinct_on: [tournament_prizes_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_prizes_order_by!] + + """filter the rows returned""" + where: tournament_prizes_bool_exp + ): tournament_prizes_aggregate! + + """Preferred server regions for hosted matches""" + regions: [String!]! + registration_type: e_tournament_registration_types_enum! + + """ + A computed field, executes function "tournament_registration_unlocked_for_session" + """ + registration_unlocked: Boolean + + """An array relationship""" + results( + """distinct select on columns""" + distinct_on: [v_team_tournament_results_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_team_tournament_results_order_by!] + + """filter the rows returned""" + where: v_team_tournament_results_bool_exp + ): [v_team_tournament_results!]! + + """An aggregate relationship""" + results_aggregate( + """distinct select on columns""" + distinct_on: [v_team_tournament_results_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [v_team_tournament_results_order_by!] + + """filter the rows returned""" + where: v_team_tournament_results_bool_exp + ): v_team_tournament_results_aggregate! + + """An array relationship""" + rosters( + """distinct select on columns""" + distinct_on: [tournament_team_roster_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_team_roster_order_by!] + + """filter the rows returned""" + where: tournament_team_roster_bool_exp + ): [tournament_team_roster!]! + + """An aggregate relationship""" + rosters_aggregate( + """distinct select on columns""" + distinct_on: [tournament_team_roster_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_team_roster_order_by!] + + """filter the rows returned""" + where: tournament_team_roster_bool_exp + ): tournament_team_roster_aggregate! + scheduling_mode: String! + + """An array relationship""" + stages( + """distinct select on columns""" + distinct_on: [tournament_stages_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_stages_order_by!] + + """filter the rows returned""" + where: tournament_stages_bool_exp + ): [tournament_stages!]! + + """An aggregate relationship""" + stages_aggregate( + """distinct select on columns""" + distinct_on: [tournament_stages_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_stages_order_by!] + + """filter the rows returned""" + where: tournament_stages_bool_exp + ): tournament_stages_aggregate! + start: timestamptz! + status: e_tournament_status_enum! + + """ + Whether teams may roster and field substitutes beyond the starting lineup + """ + substitutes_enabled: Boolean! + + """An array relationship""" + teams( + """distinct select on columns""" + distinct_on: [tournament_teams_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_teams_order_by!] + + """filter the rows returned""" + where: tournament_teams_bool_exp + ): [tournament_teams!]! + + """An aggregate relationship""" + teams_aggregate( + """distinct select on columns""" + distinct_on: [tournament_teams_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_teams_order_by!] + + """filter the rows returned""" + where: tournament_teams_bool_exp + ): tournament_teams_aggregate! +} + +""" +aggregated selection of "tournaments" +""" +type tournaments_aggregate { + aggregate: tournaments_aggregate_fields + nodes: [tournaments!]! +} + +input tournaments_aggregate_bool_exp { + avg: tournaments_aggregate_bool_exp_avg + bool_and: tournaments_aggregate_bool_exp_bool_and + bool_or: tournaments_aggregate_bool_exp_bool_or + corr: tournaments_aggregate_bool_exp_corr + count: tournaments_aggregate_bool_exp_count + covar_samp: tournaments_aggregate_bool_exp_covar_samp + max: tournaments_aggregate_bool_exp_max + min: tournaments_aggregate_bool_exp_min + stddev_samp: tournaments_aggregate_bool_exp_stddev_samp + sum: tournaments_aggregate_bool_exp_sum + var_samp: tournaments_aggregate_bool_exp_var_samp +} + +input tournaments_aggregate_bool_exp_avg { + arguments: tournaments_select_column_tournaments_aggregate_bool_exp_avg_arguments_columns! + distinct: Boolean + filter: tournaments_bool_exp + predicate: float8_comparison_exp! +} + +input tournaments_aggregate_bool_exp_bool_and { + arguments: tournaments_select_column_tournaments_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: tournaments_bool_exp + predicate: Boolean_comparison_exp! +} + +input tournaments_aggregate_bool_exp_bool_or { + arguments: tournaments_select_column_tournaments_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: tournaments_bool_exp + predicate: Boolean_comparison_exp! +} + +input tournaments_aggregate_bool_exp_corr { + arguments: tournaments_aggregate_bool_exp_corr_arguments! + distinct: Boolean + filter: tournaments_bool_exp + predicate: float8_comparison_exp! +} + +input tournaments_aggregate_bool_exp_corr_arguments { + X: tournaments_select_column_tournaments_aggregate_bool_exp_corr_arguments_columns! + Y: tournaments_select_column_tournaments_aggregate_bool_exp_corr_arguments_columns! +} + +input tournaments_aggregate_bool_exp_count { + arguments: [tournaments_select_column!] + distinct: Boolean + filter: tournaments_bool_exp + predicate: Int_comparison_exp! +} + +input tournaments_aggregate_bool_exp_covar_samp { + arguments: tournaments_aggregate_bool_exp_covar_samp_arguments! + distinct: Boolean + filter: tournaments_bool_exp + predicate: float8_comparison_exp! +} + +input tournaments_aggregate_bool_exp_covar_samp_arguments { + X: tournaments_select_column_tournaments_aggregate_bool_exp_covar_samp_arguments_columns! + Y: tournaments_select_column_tournaments_aggregate_bool_exp_covar_samp_arguments_columns! +} + +input tournaments_aggregate_bool_exp_max { + arguments: tournaments_select_column_tournaments_aggregate_bool_exp_max_arguments_columns! + distinct: Boolean + filter: tournaments_bool_exp + predicate: float8_comparison_exp! +} + +input tournaments_aggregate_bool_exp_min { + arguments: tournaments_select_column_tournaments_aggregate_bool_exp_min_arguments_columns! + distinct: Boolean + filter: tournaments_bool_exp + predicate: float8_comparison_exp! +} + +input tournaments_aggregate_bool_exp_stddev_samp { + arguments: tournaments_select_column_tournaments_aggregate_bool_exp_stddev_samp_arguments_columns! + distinct: Boolean + filter: tournaments_bool_exp + predicate: float8_comparison_exp! +} + +input tournaments_aggregate_bool_exp_sum { + arguments: tournaments_select_column_tournaments_aggregate_bool_exp_sum_arguments_columns! + distinct: Boolean + filter: tournaments_bool_exp + predicate: float8_comparison_exp! +} + +input tournaments_aggregate_bool_exp_var_samp { + arguments: tournaments_select_column_tournaments_aggregate_bool_exp_var_samp_arguments_columns! + distinct: Boolean + filter: tournaments_bool_exp + predicate: float8_comparison_exp! +} + +""" +aggregate fields of "tournaments" +""" +type tournaments_aggregate_fields { + avg: tournaments_avg_fields + count(columns: [tournaments_select_column!], distinct: Boolean): Int! + max: tournaments_max_fields + min: tournaments_min_fields + stddev: tournaments_stddev_fields + stddev_pop: tournaments_stddev_pop_fields + stddev_samp: tournaments_stddev_samp_fields + sum: tournaments_sum_fields + var_pop: tournaments_var_pop_fields + var_samp: tournaments_var_samp_fields + variance: tournaments_variance_fields +} + +""" +order by aggregate values of table "tournaments" +""" +input tournaments_aggregate_order_by { + avg: tournaments_avg_order_by + count: order_by + max: tournaments_max_order_by + min: tournaments_min_order_by + stddev: tournaments_stddev_order_by + stddev_pop: tournaments_stddev_pop_order_by + stddev_samp: tournaments_stddev_samp_order_by + sum: tournaments_sum_order_by + var_pop: tournaments_var_pop_order_by + var_samp: tournaments_var_samp_order_by + variance: tournaments_variance_order_by +} + +""" +input type for inserting array relation for remote table "tournaments" +""" +input tournaments_arr_rel_insert_input { + data: [tournaments_insert_input!]! + + """upsert condition""" + on_conflict: tournaments_on_conflict +} + +"""aggregate avg on columns""" +type tournaments_avg_fields { + check_in_closes_before_minutes: Float + check_in_opens_before_minutes: Float + + """ + A computed field, executes function "tournament_current_stage" + """ + current_stage: Int + latitude: Float + longitude: Float + max_elo: Float + + """ + A computed field, executes function "tournament_max_players_per_lineup" + """ + max_players_per_lineup: Int + min_elo: Float + + """ + A computed field, executes function "tournament_min_players_per_lineup" + """ + min_players_per_lineup: Int + + """ + A computed field, executes function "tournament_missed_check_in_count" + """ + missed_check_in_count: Int + organizer_steam_id: Float +} + +""" +order by avg() on columns of table "tournaments" +""" +input tournaments_avg_order_by { + check_in_closes_before_minutes: order_by + check_in_opens_before_minutes: order_by + latitude: order_by + longitude: order_by + max_elo: order_by + min_elo: order_by + organizer_steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "tournaments". All fields are combined with a logical 'AND'. +""" +input tournaments_bool_exp { + _and: [tournaments_bool_exp!] + _not: tournaments_bool_exp + _or: [tournaments_bool_exp!] + admin: players_bool_exp + auto_start: Boolean_comparison_exp + award_configs: tournament_awards_bool_exp + award_configs_aggregate: tournament_awards_aggregate_bool_exp + awards: award_recipients_bool_exp + awards_aggregate: award_recipients_aggregate_bool_exp + awards_enabled: Boolean_comparison_exp + banner: String_comparison_exp + can_cancel: Boolean_comparison_exp + can_close_registration: Boolean_comparison_exp + can_join: Boolean_comparison_exp + can_open_registration: Boolean_comparison_exp + can_pause: Boolean_comparison_exp + can_resume: Boolean_comparison_exp + can_review_check_in: Boolean_comparison_exp + can_setup: Boolean_comparison_exp + can_start: Boolean_comparison_exp + categories: tournament_categories_bool_exp + categories_aggregate: tournament_categories_aggregate_bool_exp + check_in_closed_for: timestamptz_comparison_exp + check_in_closes_before_minutes: Int_comparison_exp + check_in_closing_notified_for: timestamptz_comparison_exp + check_in_ends_at: timestamptz_comparison_exp + check_in_open: Boolean_comparison_exp + check_in_opens_before_minutes: Int_comparison_exp + check_in_required: Boolean_comparison_exp + check_in_setting: e_check_in_settings_enum_comparison_exp + check_in_started: Boolean_comparison_exp + created_at: timestamptz_comparison_exp + current_stage: Int_comparison_exp + description: String_comparison_exp + discord_guild_id: String_comparison_exp + discord_notifications_enabled: Boolean_comparison_exp + discord_notify_Canceled: Boolean_comparison_exp + discord_notify_Finished: Boolean_comparison_exp + discord_notify_Forfeit: Boolean_comparison_exp + discord_notify_Live: Boolean_comparison_exp + discord_notify_MapPaused: Boolean_comparison_exp + discord_notify_PickingPlayers: Boolean_comparison_exp + discord_notify_Scheduled: Boolean_comparison_exp + discord_notify_Surrendered: Boolean_comparison_exp + discord_notify_Tie: Boolean_comparison_exp + discord_notify_Veto: Boolean_comparison_exp + discord_notify_WaitingForCheckIn: Boolean_comparison_exp + discord_notify_WaitingForServer: Boolean_comparison_exp + discord_role_id: String_comparison_exp + discord_voice_enabled: Boolean_comparison_exp + discord_webhook: String_comparison_exp + e_tournament_status: e_tournament_status_bool_exp + free_agents: tournament_free_agents_bool_exp + free_agents_aggregate: tournament_free_agents_aggregate_bool_exp + has_min_teams: Boolean_comparison_exp + homepage: String_comparison_exp + id: uuid_comparison_exp + invite_only: Boolean_comparison_exp + is_league: Boolean_comparison_exp + is_organizer: Boolean_comparison_exp + joined_tournament: Boolean_comparison_exp + latitude: float8_comparison_exp + league_season_division: league_season_divisions_bool_exp + location: String_comparison_exp + logo: String_comparison_exp + longitude: float8_comparison_exp + match_options_id: uuid_comparison_exp + max_elo: Int_comparison_exp + max_players_per_lineup: Int_comparison_exp + meets_min_role: Boolean_comparison_exp + min_elo: Int_comparison_exp + min_players_per_lineup: Int_comparison_exp + min_role: e_player_roles_enum_comparison_exp + missed_check_in_count: Int_comparison_exp + name: String_comparison_exp + options: match_options_bool_exp + organizer_steam_id: bigint_comparison_exp + organizer_teams: tournament_organizer_teams_bool_exp + organizer_teams_aggregate: tournament_organizer_teams_aggregate_bool_exp + organizers: tournament_organizers_bool_exp + organizers_aggregate: tournament_organizers_aggregate_bool_exp + player_stats: v_tournament_player_stats_bool_exp + player_stats_aggregate: v_tournament_player_stats_aggregate_bool_exp + prizes: tournament_prizes_bool_exp + prizes_aggregate: tournament_prizes_aggregate_bool_exp + regions: String_array_comparison_exp + registration_type: e_tournament_registration_types_enum_comparison_exp + registration_unlocked: Boolean_comparison_exp + results: v_team_tournament_results_bool_exp + results_aggregate: v_team_tournament_results_aggregate_bool_exp + rosters: tournament_team_roster_bool_exp + rosters_aggregate: tournament_team_roster_aggregate_bool_exp + scheduling_mode: String_comparison_exp + stages: tournament_stages_bool_exp + stages_aggregate: tournament_stages_aggregate_bool_exp + start: timestamptz_comparison_exp + status: e_tournament_status_enum_comparison_exp + substitutes_enabled: Boolean_comparison_exp + teams: tournament_teams_bool_exp + teams_aggregate: tournament_teams_aggregate_bool_exp +} + +""" +unique or primary key constraints on table "tournaments" +""" +enum tournaments_constraint { + """ + unique or primary key constraint on columns "match_options_id" + """ + tournaments_match_options_id_key + + """ + unique or primary key constraint on columns "id" + """ + tournaments_pkey +} + +""" +input type for incrementing numeric columns in table "tournaments" +""" +input tournaments_inc_input { + check_in_closes_before_minutes: Int + check_in_opens_before_minutes: Int + latitude: float8 + longitude: float8 + max_elo: Int + min_elo: Int + organizer_steam_id: bigint +} + +""" +input type for inserting data into table "tournaments" +""" +input tournaments_insert_input { + admin: players_obj_rel_insert_input + auto_start: Boolean + award_configs: tournament_awards_arr_rel_insert_input + awards: award_recipients_arr_rel_insert_input + awards_enabled: Boolean + banner: String + categories: tournament_categories_arr_rel_insert_input + + """The check_in_ends_at the close pass has already acted on""" + check_in_closed_for: timestamptz + check_in_closes_before_minutes: Int + + """The check_in_ends_at the closing reminder was sent for""" + check_in_closing_notified_for: timestamptz + + """When the check-in window closes; NULL until it opens""" + check_in_ends_at: timestamptz + check_in_opens_before_minutes: Int + check_in_required: Boolean + + """ + Who confirms a team: Captains, every rostered Player, or the organizer (Admin) + """ + check_in_setting: e_check_in_settings_enum + created_at: timestamptz + description: String + discord_guild_id: String + discord_notifications_enabled: Boolean + discord_notify_Canceled: Boolean + discord_notify_Finished: Boolean + discord_notify_Forfeit: Boolean + discord_notify_Live: Boolean + discord_notify_MapPaused: Boolean + discord_notify_PickingPlayers: Boolean + discord_notify_Scheduled: Boolean + discord_notify_Surrendered: Boolean + discord_notify_Tie: Boolean + discord_notify_Veto: Boolean + discord_notify_WaitingForCheckIn: Boolean + discord_notify_WaitingForServer: Boolean + discord_role_id: String + discord_voice_enabled: Boolean + discord_webhook: String + e_tournament_status: e_tournament_status_obj_rel_insert_input + free_agents: tournament_free_agents_arr_rel_insert_input + homepage: String + id: uuid + invite_only: Boolean + is_league: Boolean + latitude: float8 + league_season_division: league_season_divisions_obj_rel_insert_input + location: String + logo: String + longitude: float8 + match_options_id: uuid + max_elo: Int + min_elo: Int + min_role: e_player_roles_enum + name: String + options: match_options_obj_rel_insert_input + organizer_steam_id: bigint + organizer_teams: tournament_organizer_teams_arr_rel_insert_input + organizers: tournament_organizers_arr_rel_insert_input + player_stats: v_tournament_player_stats_arr_rel_insert_input + prizes: tournament_prizes_arr_rel_insert_input + + """Preferred server regions for hosted matches""" + regions: [String!] + registration_type: e_tournament_registration_types_enum + results: v_team_tournament_results_arr_rel_insert_input + rosters: tournament_team_roster_arr_rel_insert_input + scheduling_mode: String + stages: tournament_stages_arr_rel_insert_input + start: timestamptz + status: e_tournament_status_enum + + """ + Whether teams may roster and field substitutes beyond the starting lineup + """ + substitutes_enabled: Boolean + teams: tournament_teams_arr_rel_insert_input +} + +"""aggregate max on columns""" +type tournaments_max_fields { + banner: String + + """The check_in_ends_at the close pass has already acted on""" + check_in_closed_for: timestamptz + check_in_closes_before_minutes: Int + + """The check_in_ends_at the closing reminder was sent for""" + check_in_closing_notified_for: timestamptz + + """When the check-in window closes; NULL until it opens""" + check_in_ends_at: timestamptz + check_in_opens_before_minutes: Int + created_at: timestamptz + + """ + A computed field, executes function "tournament_current_stage" + """ + current_stage: Int + description: String + discord_guild_id: String + discord_role_id: String + discord_webhook: String + homepage: String + id: uuid + latitude: float8 + location: String + logo: String + longitude: float8 + match_options_id: uuid + max_elo: Int + + """ + A computed field, executes function "tournament_max_players_per_lineup" + """ + max_players_per_lineup: Int + min_elo: Int + + """ + A computed field, executes function "tournament_min_players_per_lineup" + """ + min_players_per_lineup: Int + + """ + A computed field, executes function "tournament_missed_check_in_count" + """ + missed_check_in_count: Int + name: String + organizer_steam_id: bigint + + """Preferred server regions for hosted matches""" + regions: [String!] + scheduling_mode: String + start: timestamptz +} + +""" +order by max() on columns of table "tournaments" +""" +input tournaments_max_order_by { + banner: order_by + + """The check_in_ends_at the close pass has already acted on""" + check_in_closed_for: order_by + check_in_closes_before_minutes: order_by + + """The check_in_ends_at the closing reminder was sent for""" + check_in_closing_notified_for: order_by + + """When the check-in window closes; NULL until it opens""" + check_in_ends_at: order_by + check_in_opens_before_minutes: order_by + created_at: order_by + description: order_by + discord_guild_id: order_by + discord_role_id: order_by + discord_webhook: order_by + homepage: order_by + id: order_by + latitude: order_by + location: order_by + logo: order_by + longitude: order_by + match_options_id: order_by + max_elo: order_by + min_elo: order_by + name: order_by + organizer_steam_id: order_by + + """Preferred server regions for hosted matches""" + regions: order_by + scheduling_mode: order_by + start: order_by +} + +"""aggregate min on columns""" +type tournaments_min_fields { + banner: String + + """The check_in_ends_at the close pass has already acted on""" + check_in_closed_for: timestamptz + check_in_closes_before_minutes: Int + + """The check_in_ends_at the closing reminder was sent for""" + check_in_closing_notified_for: timestamptz + + """When the check-in window closes; NULL until it opens""" + check_in_ends_at: timestamptz + check_in_opens_before_minutes: Int + created_at: timestamptz + + """ + A computed field, executes function "tournament_current_stage" + """ + current_stage: Int + description: String + discord_guild_id: String + discord_role_id: String + discord_webhook: String + homepage: String + id: uuid + latitude: float8 + location: String + logo: String + longitude: float8 + match_options_id: uuid + max_elo: Int + + """ + A computed field, executes function "tournament_max_players_per_lineup" + """ + max_players_per_lineup: Int + min_elo: Int + + """ + A computed field, executes function "tournament_min_players_per_lineup" + """ + min_players_per_lineup: Int + + """ + A computed field, executes function "tournament_missed_check_in_count" + """ + missed_check_in_count: Int + name: String + organizer_steam_id: bigint + + """Preferred server regions for hosted matches""" + regions: [String!] + scheduling_mode: String + start: timestamptz +} + +""" +order by min() on columns of table "tournaments" +""" +input tournaments_min_order_by { + banner: order_by + + """The check_in_ends_at the close pass has already acted on""" + check_in_closed_for: order_by + check_in_closes_before_minutes: order_by + + """The check_in_ends_at the closing reminder was sent for""" + check_in_closing_notified_for: order_by + + """When the check-in window closes; NULL until it opens""" + check_in_ends_at: order_by + check_in_opens_before_minutes: order_by + created_at: order_by + description: order_by + discord_guild_id: order_by + discord_role_id: order_by + discord_webhook: order_by + homepage: order_by + id: order_by + latitude: order_by + location: order_by + logo: order_by + longitude: order_by + match_options_id: order_by + max_elo: order_by + min_elo: order_by + name: order_by + organizer_steam_id: order_by + + """Preferred server regions for hosted matches""" + regions: order_by + scheduling_mode: order_by + start: order_by +} + +""" +response of any mutation on the table "tournaments" +""" +type tournaments_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [tournaments!]! +} + +""" +input type for inserting object relation for remote table "tournaments" +""" +input tournaments_obj_rel_insert_input { + data: tournaments_insert_input! + + """upsert condition""" + on_conflict: tournaments_on_conflict +} + +""" +on_conflict condition type for table "tournaments" +""" +input tournaments_on_conflict { + constraint: tournaments_constraint! + update_columns: [tournaments_update_column!]! = [] + where: tournaments_bool_exp +} + +"""Ordering options when selecting data from "tournaments".""" +input tournaments_order_by { + admin: players_order_by + auto_start: order_by + award_configs_aggregate: tournament_awards_aggregate_order_by + awards_aggregate: award_recipients_aggregate_order_by + awards_enabled: order_by + banner: order_by + can_cancel: order_by + can_close_registration: order_by + can_join: order_by + can_open_registration: order_by + can_pause: order_by + can_resume: order_by + can_review_check_in: order_by + can_setup: order_by + can_start: order_by + categories_aggregate: tournament_categories_aggregate_order_by + check_in_closed_for: order_by + check_in_closes_before_minutes: order_by + check_in_closing_notified_for: order_by + check_in_ends_at: order_by + check_in_open: order_by + check_in_opens_before_minutes: order_by + check_in_required: order_by + check_in_setting: order_by + check_in_started: order_by + created_at: order_by + current_stage: order_by + description: order_by + discord_guild_id: order_by + discord_notifications_enabled: order_by + discord_notify_Canceled: order_by + discord_notify_Finished: order_by + discord_notify_Forfeit: order_by + discord_notify_Live: order_by + discord_notify_MapPaused: order_by + discord_notify_PickingPlayers: order_by + discord_notify_Scheduled: order_by + discord_notify_Surrendered: order_by + discord_notify_Tie: order_by + discord_notify_Veto: order_by + discord_notify_WaitingForCheckIn: order_by + discord_notify_WaitingForServer: order_by + discord_role_id: order_by + discord_voice_enabled: order_by + discord_webhook: order_by + e_tournament_status: e_tournament_status_order_by + free_agents_aggregate: tournament_free_agents_aggregate_order_by + has_min_teams: order_by + homepage: order_by + id: order_by + invite_only: order_by + is_league: order_by + is_organizer: order_by + joined_tournament: order_by + latitude: order_by + league_season_division: league_season_divisions_order_by + location: order_by + logo: order_by + longitude: order_by + match_options_id: order_by + max_elo: order_by + max_players_per_lineup: order_by + meets_min_role: order_by + min_elo: order_by + min_players_per_lineup: order_by + min_role: order_by + missed_check_in_count: order_by + name: order_by + options: match_options_order_by + organizer_steam_id: order_by + organizer_teams_aggregate: tournament_organizer_teams_aggregate_order_by + organizers_aggregate: tournament_organizers_aggregate_order_by + player_stats_aggregate: v_tournament_player_stats_aggregate_order_by + prizes_aggregate: tournament_prizes_aggregate_order_by + regions: order_by + registration_type: order_by + registration_unlocked: order_by + results_aggregate: v_team_tournament_results_aggregate_order_by + rosters_aggregate: tournament_team_roster_aggregate_order_by + scheduling_mode: order_by + stages_aggregate: tournament_stages_aggregate_order_by + start: order_by + status: order_by + substitutes_enabled: order_by + teams_aggregate: tournament_teams_aggregate_order_by +} + +"""primary key columns input for table: tournaments""" +input tournaments_pk_columns_input { + id: uuid! +} + +""" +select columns of table "tournaments" +""" +enum tournaments_select_column { + """column name""" + auto_start + + """column name""" + awards_enabled + + """column name""" + banner + + """column name""" + check_in_closed_for + + """column name""" + check_in_closes_before_minutes + + """column name""" + check_in_closing_notified_for + + """column name""" + check_in_ends_at + + """column name""" + check_in_opens_before_minutes + + """column name""" + check_in_required + + """column name""" + check_in_setting + + """column name""" + created_at + + """column name""" + description + + """column name""" + discord_guild_id + + """column name""" + discord_notifications_enabled + + """column name""" + discord_notify_Canceled + + """column name""" + discord_notify_Finished + + """column name""" + discord_notify_Forfeit + + """column name""" + discord_notify_Live + + """column name""" + discord_notify_MapPaused + + """column name""" + discord_notify_PickingPlayers + + """column name""" + discord_notify_Scheduled + + """column name""" + discord_notify_Surrendered + + """column name""" + discord_notify_Tie + + """column name""" + discord_notify_Veto + + """column name""" + discord_notify_WaitingForCheckIn + + """column name""" + discord_notify_WaitingForServer + + """column name""" + discord_role_id + + """column name""" + discord_voice_enabled + + """column name""" + discord_webhook + + """column name""" + homepage + + """column name""" + id + + """column name""" + invite_only + + """column name""" + is_league + + """column name""" + latitude + + """column name""" + location + + """column name""" + logo + + """column name""" + longitude + + """column name""" + match_options_id + + """column name""" + max_elo + + """column name""" + min_elo + + """column name""" + min_role + + """column name""" + name + + """column name""" + organizer_steam_id + + """column name""" + regions + + """column name""" + registration_type + + """column name""" + scheduling_mode + + """column name""" + start + + """column name""" + status + + """column name""" + substitutes_enabled +} + +""" +select "tournaments_aggregate_bool_exp_avg_arguments_columns" columns of table "tournaments" +""" +enum tournaments_select_column_tournaments_aggregate_bool_exp_avg_arguments_columns { + """column name""" + latitude + + """column name""" + longitude +} + +""" +select "tournaments_aggregate_bool_exp_bool_and_arguments_columns" columns of table "tournaments" +""" +enum tournaments_select_column_tournaments_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + auto_start + + """column name""" + awards_enabled + + """column name""" + check_in_required + + """column name""" + discord_notifications_enabled + + """column name""" + discord_notify_Canceled + + """column name""" + discord_notify_Finished + + """column name""" + discord_notify_Forfeit + + """column name""" + discord_notify_Live + + """column name""" + discord_notify_MapPaused + + """column name""" + discord_notify_PickingPlayers + + """column name""" + discord_notify_Scheduled + + """column name""" + discord_notify_Surrendered + + """column name""" + discord_notify_Tie + + """column name""" + discord_notify_Veto + + """column name""" + discord_notify_WaitingForCheckIn + + """column name""" + discord_notify_WaitingForServer + + """column name""" + discord_voice_enabled + + """column name""" + invite_only + + """column name""" + is_league + + """column name""" + substitutes_enabled +} + +""" +select "tournaments_aggregate_bool_exp_bool_or_arguments_columns" columns of table "tournaments" +""" +enum tournaments_select_column_tournaments_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + auto_start + + """column name""" + awards_enabled + + """column name""" + check_in_required + + """column name""" + discord_notifications_enabled + + """column name""" + discord_notify_Canceled + + """column name""" + discord_notify_Finished + + """column name""" + discord_notify_Forfeit + + """column name""" + discord_notify_Live + + """column name""" + discord_notify_MapPaused + + """column name""" + discord_notify_PickingPlayers + + """column name""" + discord_notify_Scheduled + + """column name""" + discord_notify_Surrendered + + """column name""" + discord_notify_Tie + + """column name""" + discord_notify_Veto + + """column name""" + discord_notify_WaitingForCheckIn + + """column name""" + discord_notify_WaitingForServer + + """column name""" + discord_voice_enabled + + """column name""" + invite_only + + """column name""" + is_league + + """column name""" + substitutes_enabled +} + +""" +select "tournaments_aggregate_bool_exp_corr_arguments_columns" columns of table "tournaments" +""" +enum tournaments_select_column_tournaments_aggregate_bool_exp_corr_arguments_columns { + """column name""" + latitude + + """column name""" + longitude +} + +""" +select "tournaments_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "tournaments" +""" +enum tournaments_select_column_tournaments_aggregate_bool_exp_covar_samp_arguments_columns { + """column name""" + latitude + + """column name""" + longitude +} + +""" +select "tournaments_aggregate_bool_exp_max_arguments_columns" columns of table "tournaments" +""" +enum tournaments_select_column_tournaments_aggregate_bool_exp_max_arguments_columns { + """column name""" + latitude + + """column name""" + longitude +} + +""" +select "tournaments_aggregate_bool_exp_min_arguments_columns" columns of table "tournaments" +""" +enum tournaments_select_column_tournaments_aggregate_bool_exp_min_arguments_columns { + """column name""" + latitude + + """column name""" + longitude +} + +""" +select "tournaments_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "tournaments" +""" +enum tournaments_select_column_tournaments_aggregate_bool_exp_stddev_samp_arguments_columns { + """column name""" + latitude + + """column name""" + longitude +} + +""" +select "tournaments_aggregate_bool_exp_sum_arguments_columns" columns of table "tournaments" +""" +enum tournaments_select_column_tournaments_aggregate_bool_exp_sum_arguments_columns { + """column name""" + latitude + + """column name""" + longitude +} + +""" +select "tournaments_aggregate_bool_exp_var_samp_arguments_columns" columns of table "tournaments" +""" +enum tournaments_select_column_tournaments_aggregate_bool_exp_var_samp_arguments_columns { + """column name""" + latitude + + """column name""" + longitude +} + +""" +input type for updating data in table "tournaments" +""" +input tournaments_set_input { + auto_start: Boolean + awards_enabled: Boolean + banner: String + + """The check_in_ends_at the close pass has already acted on""" + check_in_closed_for: timestamptz + check_in_closes_before_minutes: Int + + """The check_in_ends_at the closing reminder was sent for""" + check_in_closing_notified_for: timestamptz + + """When the check-in window closes; NULL until it opens""" + check_in_ends_at: timestamptz + check_in_opens_before_minutes: Int + check_in_required: Boolean + + """ + Who confirms a team: Captains, every rostered Player, or the organizer (Admin) + """ + check_in_setting: e_check_in_settings_enum + created_at: timestamptz + description: String + discord_guild_id: String + discord_notifications_enabled: Boolean + discord_notify_Canceled: Boolean + discord_notify_Finished: Boolean + discord_notify_Forfeit: Boolean + discord_notify_Live: Boolean + discord_notify_MapPaused: Boolean + discord_notify_PickingPlayers: Boolean + discord_notify_Scheduled: Boolean + discord_notify_Surrendered: Boolean + discord_notify_Tie: Boolean + discord_notify_Veto: Boolean + discord_notify_WaitingForCheckIn: Boolean + discord_notify_WaitingForServer: Boolean + discord_role_id: String + discord_voice_enabled: Boolean + discord_webhook: String + homepage: String + id: uuid + invite_only: Boolean + is_league: Boolean + latitude: float8 + location: String + logo: String + longitude: float8 + match_options_id: uuid + max_elo: Int + min_elo: Int + min_role: e_player_roles_enum + name: String + organizer_steam_id: bigint + + """Preferred server regions for hosted matches""" + regions: [String!] + registration_type: e_tournament_registration_types_enum + scheduling_mode: String + start: timestamptz + status: e_tournament_status_enum + + """ + Whether teams may roster and field substitutes beyond the starting lineup + """ + substitutes_enabled: Boolean +} + +"""aggregate stddev on columns""" +type tournaments_stddev_fields { + check_in_closes_before_minutes: Float + check_in_opens_before_minutes: Float + + """ + A computed field, executes function "tournament_current_stage" + """ + current_stage: Int + latitude: Float + longitude: Float + max_elo: Float + + """ + A computed field, executes function "tournament_max_players_per_lineup" + """ + max_players_per_lineup: Int + min_elo: Float + + """ + A computed field, executes function "tournament_min_players_per_lineup" + """ + min_players_per_lineup: Int + + """ + A computed field, executes function "tournament_missed_check_in_count" + """ + missed_check_in_count: Int + organizer_steam_id: Float +} + +""" +order by stddev() on columns of table "tournaments" +""" +input tournaments_stddev_order_by { + check_in_closes_before_minutes: order_by + check_in_opens_before_minutes: order_by + latitude: order_by + longitude: order_by + max_elo: order_by + min_elo: order_by + organizer_steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type tournaments_stddev_pop_fields { + check_in_closes_before_minutes: Float + check_in_opens_before_minutes: Float + + """ + A computed field, executes function "tournament_current_stage" + """ + current_stage: Int + latitude: Float + longitude: Float + max_elo: Float + + """ + A computed field, executes function "tournament_max_players_per_lineup" + """ + max_players_per_lineup: Int + min_elo: Float + + """ + A computed field, executes function "tournament_min_players_per_lineup" + """ + min_players_per_lineup: Int + + """ + A computed field, executes function "tournament_missed_check_in_count" + """ + missed_check_in_count: Int + organizer_steam_id: Float +} + +""" +order by stddev_pop() on columns of table "tournaments" +""" +input tournaments_stddev_pop_order_by { + check_in_closes_before_minutes: order_by + check_in_opens_before_minutes: order_by + latitude: order_by + longitude: order_by + max_elo: order_by + min_elo: order_by + organizer_steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type tournaments_stddev_samp_fields { + check_in_closes_before_minutes: Float + check_in_opens_before_minutes: Float + + """ + A computed field, executes function "tournament_current_stage" + """ + current_stage: Int + latitude: Float + longitude: Float + max_elo: Float + + """ + A computed field, executes function "tournament_max_players_per_lineup" + """ + max_players_per_lineup: Int + min_elo: Float + + """ + A computed field, executes function "tournament_min_players_per_lineup" + """ + min_players_per_lineup: Int + + """ + A computed field, executes function "tournament_missed_check_in_count" + """ + missed_check_in_count: Int + organizer_steam_id: Float +} + +""" +order by stddev_samp() on columns of table "tournaments" +""" +input tournaments_stddev_samp_order_by { + check_in_closes_before_minutes: order_by + check_in_opens_before_minutes: order_by + latitude: order_by + longitude: order_by + max_elo: order_by + min_elo: order_by + organizer_steam_id: order_by +} + +""" +Streaming cursor of the table "tournaments" +""" +input tournaments_stream_cursor_input { + """Stream column input with initial value""" + initial_value: tournaments_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input tournaments_stream_cursor_value_input { + auto_start: Boolean + awards_enabled: Boolean + banner: String + + """The check_in_ends_at the close pass has already acted on""" + check_in_closed_for: timestamptz + check_in_closes_before_minutes: Int + + """The check_in_ends_at the closing reminder was sent for""" + check_in_closing_notified_for: timestamptz + + """When the check-in window closes; NULL until it opens""" + check_in_ends_at: timestamptz + check_in_opens_before_minutes: Int + check_in_required: Boolean + + """ + Who confirms a team: Captains, every rostered Player, or the organizer (Admin) + """ + check_in_setting: e_check_in_settings_enum + created_at: timestamptz + description: String + discord_guild_id: String + discord_notifications_enabled: Boolean + discord_notify_Canceled: Boolean + discord_notify_Finished: Boolean + discord_notify_Forfeit: Boolean + discord_notify_Live: Boolean + discord_notify_MapPaused: Boolean + discord_notify_PickingPlayers: Boolean + discord_notify_Scheduled: Boolean + discord_notify_Surrendered: Boolean + discord_notify_Tie: Boolean + discord_notify_Veto: Boolean + discord_notify_WaitingForCheckIn: Boolean + discord_notify_WaitingForServer: Boolean + discord_role_id: String + discord_voice_enabled: Boolean + discord_webhook: String + homepage: String + id: uuid + invite_only: Boolean + is_league: Boolean + latitude: float8 + location: String + logo: String + longitude: float8 + match_options_id: uuid + max_elo: Int + min_elo: Int + min_role: e_player_roles_enum + name: String + organizer_steam_id: bigint + + """Preferred server regions for hosted matches""" + regions: [String!] + registration_type: e_tournament_registration_types_enum + scheduling_mode: String + start: timestamptz + status: e_tournament_status_enum + + """ + Whether teams may roster and field substitutes beyond the starting lineup + """ + substitutes_enabled: Boolean +} + +"""aggregate sum on columns""" +type tournaments_sum_fields { + check_in_closes_before_minutes: Int + check_in_opens_before_minutes: Int + + """ + A computed field, executes function "tournament_current_stage" + """ + current_stage: Int + latitude: float8 + longitude: float8 + max_elo: Int + + """ + A computed field, executes function "tournament_max_players_per_lineup" + """ + max_players_per_lineup: Int + min_elo: Int + + """ + A computed field, executes function "tournament_min_players_per_lineup" + """ + min_players_per_lineup: Int + + """ + A computed field, executes function "tournament_missed_check_in_count" + """ + missed_check_in_count: Int + organizer_steam_id: bigint +} + +""" +order by sum() on columns of table "tournaments" +""" +input tournaments_sum_order_by { + check_in_closes_before_minutes: order_by + check_in_opens_before_minutes: order_by + latitude: order_by + longitude: order_by + max_elo: order_by + min_elo: order_by + organizer_steam_id: order_by +} + +""" +update columns of table "tournaments" +""" +enum tournaments_update_column { + """column name""" + auto_start + + """column name""" + awards_enabled + + """column name""" + banner + + """column name""" + check_in_closed_for + + """column name""" + check_in_closes_before_minutes + + """column name""" + check_in_closing_notified_for + + """column name""" + check_in_ends_at + + """column name""" + check_in_opens_before_minutes + + """column name""" + check_in_required + + """column name""" + check_in_setting + + """column name""" + created_at + + """column name""" + description + + """column name""" + discord_guild_id + + """column name""" + discord_notifications_enabled + + """column name""" + discord_notify_Canceled + + """column name""" + discord_notify_Finished + + """column name""" + discord_notify_Forfeit + + """column name""" + discord_notify_Live + + """column name""" + discord_notify_MapPaused + + """column name""" + discord_notify_PickingPlayers + + """column name""" + discord_notify_Scheduled + + """column name""" + discord_notify_Surrendered + + """column name""" + discord_notify_Tie + + """column name""" + discord_notify_Veto + + """column name""" + discord_notify_WaitingForCheckIn + + """column name""" + discord_notify_WaitingForServer + + """column name""" + discord_role_id + + """column name""" + discord_voice_enabled + + """column name""" + discord_webhook + + """column name""" + homepage + + """column name""" + id + + """column name""" + invite_only + + """column name""" + is_league + + """column name""" + latitude + + """column name""" + location + + """column name""" + logo + + """column name""" + longitude + + """column name""" + match_options_id + + """column name""" + max_elo + + """column name""" + min_elo + + """column name""" + min_role + + """column name""" + name + + """column name""" + organizer_steam_id + + """column name""" + regions + + """column name""" + registration_type + + """column name""" + scheduling_mode + + """column name""" + start + + """column name""" + status + + """column name""" + substitutes_enabled +} + +input tournaments_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: tournaments_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournaments_set_input + + """filter the rows which have to be updated""" + where: tournaments_bool_exp! +} + +"""aggregate var_pop on columns""" +type tournaments_var_pop_fields { + check_in_closes_before_minutes: Float + check_in_opens_before_minutes: Float + + """ + A computed field, executes function "tournament_current_stage" + """ + current_stage: Int + latitude: Float + longitude: Float + max_elo: Float + + """ + A computed field, executes function "tournament_max_players_per_lineup" + """ + max_players_per_lineup: Int + min_elo: Float + + """ + A computed field, executes function "tournament_min_players_per_lineup" + """ + min_players_per_lineup: Int + + """ + A computed field, executes function "tournament_missed_check_in_count" + """ + missed_check_in_count: Int + organizer_steam_id: Float +} + +""" +order by var_pop() on columns of table "tournaments" +""" +input tournaments_var_pop_order_by { + check_in_closes_before_minutes: order_by + check_in_opens_before_minutes: order_by + latitude: order_by + longitude: order_by + max_elo: order_by + min_elo: order_by + organizer_steam_id: order_by +} + +"""aggregate var_samp on columns""" +type tournaments_var_samp_fields { + check_in_closes_before_minutes: Float + check_in_opens_before_minutes: Float + + """ + A computed field, executes function "tournament_current_stage" + """ + current_stage: Int + latitude: Float + longitude: Float + max_elo: Float + + """ + A computed field, executes function "tournament_max_players_per_lineup" + """ + max_players_per_lineup: Int + min_elo: Float + + """ + A computed field, executes function "tournament_min_players_per_lineup" + """ + min_players_per_lineup: Int + + """ + A computed field, executes function "tournament_missed_check_in_count" + """ + missed_check_in_count: Int + organizer_steam_id: Float +} + +""" +order by var_samp() on columns of table "tournaments" +""" +input tournaments_var_samp_order_by { + check_in_closes_before_minutes: order_by + check_in_opens_before_minutes: order_by + latitude: order_by + longitude: order_by + max_elo: order_by + min_elo: order_by + organizer_steam_id: order_by +} + +"""aggregate variance on columns""" +type tournaments_variance_fields { + check_in_closes_before_minutes: Float + check_in_opens_before_minutes: Float + + """ + A computed field, executes function "tournament_current_stage" + """ + current_stage: Int + latitude: Float + longitude: Float + max_elo: Float + + """ + A computed field, executes function "tournament_max_players_per_lineup" + """ + max_players_per_lineup: Int + min_elo: Float + + """ + A computed field, executes function "tournament_min_players_per_lineup" + """ + min_players_per_lineup: Int + + """ + A computed field, executes function "tournament_missed_check_in_count" + """ + missed_check_in_count: Int + organizer_steam_id: Float +} + +""" +order by variance() on columns of table "tournaments" +""" +input tournaments_variance_order_by { + check_in_closes_before_minutes: order_by + check_in_opens_before_minutes: order_by + latitude: order_by + longitude: order_by + max_elo: order_by + min_elo: order_by + organizer_steam_id: order_by +} + +""" +columns and relationships of "utility_collection_items" +""" +type utility_collection_items { + """An object relationship""" + collection: utility_collections! + collection_id: uuid! + created_at: timestamptz! + note: String + position: Int! + + """An object relationship""" + utility_lineup: utility_lineups! + utility_lineup_id: uuid! +} + +""" +aggregated selection of "utility_collection_items" +""" +type utility_collection_items_aggregate { + aggregate: utility_collection_items_aggregate_fields + nodes: [utility_collection_items!]! +} + +input utility_collection_items_aggregate_bool_exp { + count: utility_collection_items_aggregate_bool_exp_count +} + +input utility_collection_items_aggregate_bool_exp_count { + arguments: [utility_collection_items_select_column!] + distinct: Boolean + filter: utility_collection_items_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "utility_collection_items" +""" +type utility_collection_items_aggregate_fields { + avg: utility_collection_items_avg_fields + count(columns: [utility_collection_items_select_column!], distinct: Boolean): Int! + max: utility_collection_items_max_fields + min: utility_collection_items_min_fields + stddev: utility_collection_items_stddev_fields + stddev_pop: utility_collection_items_stddev_pop_fields + stddev_samp: utility_collection_items_stddev_samp_fields + sum: utility_collection_items_sum_fields + var_pop: utility_collection_items_var_pop_fields + var_samp: utility_collection_items_var_samp_fields + variance: utility_collection_items_variance_fields +} + +""" +order by aggregate values of table "utility_collection_items" +""" +input utility_collection_items_aggregate_order_by { + avg: utility_collection_items_avg_order_by + count: order_by + max: utility_collection_items_max_order_by + min: utility_collection_items_min_order_by + stddev: utility_collection_items_stddev_order_by + stddev_pop: utility_collection_items_stddev_pop_order_by + stddev_samp: utility_collection_items_stddev_samp_order_by + sum: utility_collection_items_sum_order_by + var_pop: utility_collection_items_var_pop_order_by + var_samp: utility_collection_items_var_samp_order_by + variance: utility_collection_items_variance_order_by +} + +""" +input type for inserting array relation for remote table "utility_collection_items" +""" +input utility_collection_items_arr_rel_insert_input { + data: [utility_collection_items_insert_input!]! + + """upsert condition""" + on_conflict: utility_collection_items_on_conflict +} + +"""aggregate avg on columns""" +type utility_collection_items_avg_fields { + position: Float +} + +""" +order by avg() on columns of table "utility_collection_items" +""" +input utility_collection_items_avg_order_by { + position: order_by +} + +""" +Boolean expression to filter rows from the table "utility_collection_items". All fields are combined with a logical 'AND'. +""" +input utility_collection_items_bool_exp { + _and: [utility_collection_items_bool_exp!] + _not: utility_collection_items_bool_exp + _or: [utility_collection_items_bool_exp!] + collection: utility_collections_bool_exp + collection_id: uuid_comparison_exp + created_at: timestamptz_comparison_exp + note: String_comparison_exp + position: Int_comparison_exp + utility_lineup: utility_lineups_bool_exp + utility_lineup_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "utility_collection_items" +""" +enum utility_collection_items_constraint { + """ + unique or primary key constraint on columns "collection_id", "utility_lineup_id" + """ + utility_collection_items_pkey +} + +""" +input type for incrementing numeric columns in table "utility_collection_items" +""" +input utility_collection_items_inc_input { + position: Int +} + +""" +input type for inserting data into table "utility_collection_items" +""" +input utility_collection_items_insert_input { + collection: utility_collections_obj_rel_insert_input + collection_id: uuid + created_at: timestamptz + note: String + position: Int + utility_lineup: utility_lineups_obj_rel_insert_input + utility_lineup_id: uuid +} + +"""aggregate max on columns""" +type utility_collection_items_max_fields { + collection_id: uuid + created_at: timestamptz + note: String + position: Int + utility_lineup_id: uuid +} + +""" +order by max() on columns of table "utility_collection_items" +""" +input utility_collection_items_max_order_by { + collection_id: order_by + created_at: order_by + note: order_by + position: order_by + utility_lineup_id: order_by +} + +"""aggregate min on columns""" +type utility_collection_items_min_fields { + collection_id: uuid + created_at: timestamptz + note: String + position: Int + utility_lineup_id: uuid +} + +""" +order by min() on columns of table "utility_collection_items" +""" +input utility_collection_items_min_order_by { + collection_id: order_by + created_at: order_by + note: order_by + position: order_by + utility_lineup_id: order_by +} + +""" +response of any mutation on the table "utility_collection_items" +""" +type utility_collection_items_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [utility_collection_items!]! +} + +""" +on_conflict condition type for table "utility_collection_items" +""" +input utility_collection_items_on_conflict { + constraint: utility_collection_items_constraint! + update_columns: [utility_collection_items_update_column!]! = [] + where: utility_collection_items_bool_exp +} + +"""Ordering options when selecting data from "utility_collection_items".""" +input utility_collection_items_order_by { + collection: utility_collections_order_by + collection_id: order_by + created_at: order_by + note: order_by + position: order_by + utility_lineup: utility_lineups_order_by + utility_lineup_id: order_by +} + +"""primary key columns input for table: utility_collection_items""" +input utility_collection_items_pk_columns_input { + collection_id: uuid! + utility_lineup_id: uuid! +} + +""" +select columns of table "utility_collection_items" +""" +enum utility_collection_items_select_column { + """column name""" + collection_id + + """column name""" + created_at + + """column name""" + note + + """column name""" + position + + """column name""" + utility_lineup_id +} + +""" +input type for updating data in table "utility_collection_items" +""" +input utility_collection_items_set_input { + collection_id: uuid + created_at: timestamptz + note: String + position: Int + utility_lineup_id: uuid +} + +"""aggregate stddev on columns""" +type utility_collection_items_stddev_fields { + position: Float +} + +""" +order by stddev() on columns of table "utility_collection_items" +""" +input utility_collection_items_stddev_order_by { + position: order_by +} + +"""aggregate stddev_pop on columns""" +type utility_collection_items_stddev_pop_fields { + position: Float +} + +""" +order by stddev_pop() on columns of table "utility_collection_items" +""" +input utility_collection_items_stddev_pop_order_by { + position: order_by +} + +"""aggregate stddev_samp on columns""" +type utility_collection_items_stddev_samp_fields { + position: Float +} + +""" +order by stddev_samp() on columns of table "utility_collection_items" +""" +input utility_collection_items_stddev_samp_order_by { + position: order_by +} + +""" +Streaming cursor of the table "utility_collection_items" +""" +input utility_collection_items_stream_cursor_input { + """Stream column input with initial value""" + initial_value: utility_collection_items_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input utility_collection_items_stream_cursor_value_input { + collection_id: uuid + created_at: timestamptz + note: String + position: Int + utility_lineup_id: uuid +} + +"""aggregate sum on columns""" +type utility_collection_items_sum_fields { + position: Int +} + +""" +order by sum() on columns of table "utility_collection_items" +""" +input utility_collection_items_sum_order_by { + position: order_by +} + +""" +update columns of table "utility_collection_items" +""" +enum utility_collection_items_update_column { + """column name""" + collection_id + + """column name""" + created_at + + """column name""" + note + + """column name""" + position + + """column name""" + utility_lineup_id +} + +input utility_collection_items_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: utility_collection_items_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_collection_items_set_input + + """filter the rows which have to be updated""" + where: utility_collection_items_bool_exp! +} + +"""aggregate var_pop on columns""" +type utility_collection_items_var_pop_fields { + position: Float +} + +""" +order by var_pop() on columns of table "utility_collection_items" +""" +input utility_collection_items_var_pop_order_by { + position: order_by +} + +"""aggregate var_samp on columns""" +type utility_collection_items_var_samp_fields { + position: Float +} + +""" +order by var_samp() on columns of table "utility_collection_items" +""" +input utility_collection_items_var_samp_order_by { + position: order_by +} + +"""aggregate variance on columns""" +type utility_collection_items_variance_fields { + position: Float +} + +""" +order by variance() on columns of table "utility_collection_items" +""" +input utility_collection_items_variance_order_by { + position: order_by +} + +""" +columns and relationships of "utility_collections" +""" +type utility_collections { + """ + A computed field, executes function "can_edit_utility_collection" + """ + can_edit: Boolean + + """ + A computed field, executes function "can_view_utility_collection" + """ + can_view: Boolean + created_at: timestamptz! + description: String + id: uuid! + + """An array relationship""" + items( + """distinct select on columns""" + distinct_on: [utility_collection_items_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: [utility_collection_items_order_by!] + + """filter the rows returned""" + where: utility_collection_items_bool_exp + ): [utility_collection_items!]! + + """An aggregate relationship""" + items_aggregate( + """distinct select on columns""" + distinct_on: [utility_collection_items_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: [utility_collection_items_order_by!] + + """filter the rows returned""" + where: utility_collection_items_bool_exp + ): utility_collection_items_aggregate! + map_name: String + name: String! + + """An object relationship""" + owner: players! + owner_steam_id: bigint! + + """An object relationship""" + team: teams + team_id: uuid + updated_at: timestamptz! + visibility: e_utility_visibility_enum! +} + +""" +aggregated selection of "utility_collections" +""" +type utility_collections_aggregate { + aggregate: utility_collections_aggregate_fields + nodes: [utility_collections!]! +} + +""" +aggregate fields of "utility_collections" +""" +type utility_collections_aggregate_fields { + avg: utility_collections_avg_fields + count(columns: [utility_collections_select_column!], distinct: Boolean): Int! + max: utility_collections_max_fields + min: utility_collections_min_fields + stddev: utility_collections_stddev_fields + stddev_pop: utility_collections_stddev_pop_fields + stddev_samp: utility_collections_stddev_samp_fields + sum: utility_collections_sum_fields + var_pop: utility_collections_var_pop_fields + var_samp: utility_collections_var_samp_fields + variance: utility_collections_variance_fields +} + +"""aggregate avg on columns""" +type utility_collections_avg_fields { + owner_steam_id: Float +} + +""" +Boolean expression to filter rows from the table "utility_collections". All fields are combined with a logical 'AND'. +""" +input utility_collections_bool_exp { + _and: [utility_collections_bool_exp!] + _not: utility_collections_bool_exp + _or: [utility_collections_bool_exp!] + can_edit: Boolean_comparison_exp + can_view: Boolean_comparison_exp + created_at: timestamptz_comparison_exp + description: String_comparison_exp + id: uuid_comparison_exp + items: utility_collection_items_bool_exp + items_aggregate: utility_collection_items_aggregate_bool_exp + map_name: String_comparison_exp + name: String_comparison_exp + owner: players_bool_exp + owner_steam_id: bigint_comparison_exp + team: teams_bool_exp + team_id: uuid_comparison_exp + updated_at: timestamptz_comparison_exp + visibility: e_utility_visibility_enum_comparison_exp +} + +""" +unique or primary key constraints on table "utility_collections" +""" +enum utility_collections_constraint { + """ + unique or primary key constraint on columns "id" + """ + utility_collections_pkey +} + +""" +input type for incrementing numeric columns in table "utility_collections" +""" +input utility_collections_inc_input { + owner_steam_id: bigint +} + +""" +input type for inserting data into table "utility_collections" +""" +input utility_collections_insert_input { + created_at: timestamptz + description: String + id: uuid + items: utility_collection_items_arr_rel_insert_input + map_name: String + name: String + owner: players_obj_rel_insert_input + owner_steam_id: bigint + team: teams_obj_rel_insert_input + team_id: uuid + updated_at: timestamptz + visibility: e_utility_visibility_enum +} + +"""aggregate max on columns""" +type utility_collections_max_fields { + created_at: timestamptz + description: String + id: uuid + map_name: String + name: String + owner_steam_id: bigint + team_id: uuid + updated_at: timestamptz +} + +"""aggregate min on columns""" +type utility_collections_min_fields { + created_at: timestamptz + description: String + id: uuid + map_name: String + name: String + owner_steam_id: bigint + team_id: uuid + updated_at: timestamptz +} + +""" +response of any mutation on the table "utility_collections" +""" +type utility_collections_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [utility_collections!]! +} + +""" +input type for inserting object relation for remote table "utility_collections" +""" +input utility_collections_obj_rel_insert_input { + data: utility_collections_insert_input! + + """upsert condition""" + on_conflict: utility_collections_on_conflict +} + +""" +on_conflict condition type for table "utility_collections" +""" +input utility_collections_on_conflict { + constraint: utility_collections_constraint! + update_columns: [utility_collections_update_column!]! = [] + where: utility_collections_bool_exp +} + +"""Ordering options when selecting data from "utility_collections".""" +input utility_collections_order_by { + can_edit: order_by + can_view: order_by + created_at: order_by + description: order_by + id: order_by + items_aggregate: utility_collection_items_aggregate_order_by + map_name: order_by + name: order_by + owner: players_order_by + owner_steam_id: order_by + team: teams_order_by + team_id: order_by + updated_at: order_by + visibility: order_by +} + +"""primary key columns input for table: utility_collections""" +input utility_collections_pk_columns_input { + id: uuid! +} + +""" +select columns of table "utility_collections" +""" +enum utility_collections_select_column { + """column name""" + created_at + + """column name""" + description + + """column name""" + id + + """column name""" + map_name + + """column name""" + name + + """column name""" + owner_steam_id + + """column name""" + team_id + + """column name""" + updated_at + + """column name""" + visibility +} + +""" +input type for updating data in table "utility_collections" +""" +input utility_collections_set_input { + created_at: timestamptz + description: String + id: uuid + map_name: String + name: String + owner_steam_id: bigint + team_id: uuid + updated_at: timestamptz + visibility: e_utility_visibility_enum +} + +"""aggregate stddev on columns""" +type utility_collections_stddev_fields { + owner_steam_id: Float +} + +"""aggregate stddev_pop on columns""" +type utility_collections_stddev_pop_fields { + owner_steam_id: Float +} + +"""aggregate stddev_samp on columns""" +type utility_collections_stddev_samp_fields { + owner_steam_id: Float +} + +""" +Streaming cursor of the table "utility_collections" +""" +input utility_collections_stream_cursor_input { + """Stream column input with initial value""" + initial_value: utility_collections_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input utility_collections_stream_cursor_value_input { + created_at: timestamptz + description: String + id: uuid + map_name: String + name: String + owner_steam_id: bigint + team_id: uuid + updated_at: timestamptz + visibility: e_utility_visibility_enum +} + +"""aggregate sum on columns""" +type utility_collections_sum_fields { + owner_steam_id: bigint +} + +""" +update columns of table "utility_collections" +""" +enum utility_collections_update_column { + """column name""" + created_at + + """column name""" + description + + """column name""" + id + + """column name""" + map_name + + """column name""" + name + + """column name""" + owner_steam_id + + """column name""" + team_id + + """column name""" + updated_at + + """column name""" + visibility +} + +input utility_collections_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: utility_collections_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_collections_set_input + + """filter the rows which have to be updated""" + where: utility_collections_bool_exp! +} + +"""aggregate var_pop on columns""" +type utility_collections_var_pop_fields { + owner_steam_id: Float +} + +"""aggregate var_samp on columns""" +type utility_collections_var_samp_fields { + owner_steam_id: Float +} + +"""aggregate variance on columns""" +type utility_collections_variance_fields { + owner_steam_id: Float +} + +""" +columns and relationships of "utility_demo_mines" +""" +type utility_demo_mines { + failed_reason: String + match_map_demo_id: uuid! + mined_at: timestamptz! + throws: Int! + version: Int! +} + +""" +aggregated selection of "utility_demo_mines" +""" +type utility_demo_mines_aggregate { + aggregate: utility_demo_mines_aggregate_fields + nodes: [utility_demo_mines!]! +} + +""" +aggregate fields of "utility_demo_mines" +""" +type utility_demo_mines_aggregate_fields { + avg: utility_demo_mines_avg_fields + count(columns: [utility_demo_mines_select_column!], distinct: Boolean): Int! + max: utility_demo_mines_max_fields + min: utility_demo_mines_min_fields + stddev: utility_demo_mines_stddev_fields + stddev_pop: utility_demo_mines_stddev_pop_fields + stddev_samp: utility_demo_mines_stddev_samp_fields + sum: utility_demo_mines_sum_fields + var_pop: utility_demo_mines_var_pop_fields + var_samp: utility_demo_mines_var_samp_fields + variance: utility_demo_mines_variance_fields +} + +"""aggregate avg on columns""" +type utility_demo_mines_avg_fields { + throws: Float + version: Float +} + +""" +Boolean expression to filter rows from the table "utility_demo_mines". All fields are combined with a logical 'AND'. +""" +input utility_demo_mines_bool_exp { + _and: [utility_demo_mines_bool_exp!] + _not: utility_demo_mines_bool_exp + _or: [utility_demo_mines_bool_exp!] + failed_reason: String_comparison_exp + match_map_demo_id: uuid_comparison_exp + mined_at: timestamptz_comparison_exp + throws: Int_comparison_exp + version: Int_comparison_exp +} + +""" +unique or primary key constraints on table "utility_demo_mines" +""" +enum utility_demo_mines_constraint { + """ + unique or primary key constraint on columns "match_map_demo_id" + """ + utility_demo_mines_pkey +} + +""" +input type for incrementing numeric columns in table "utility_demo_mines" +""" +input utility_demo_mines_inc_input { + throws: Int + version: Int +} + +""" +input type for inserting data into table "utility_demo_mines" +""" +input utility_demo_mines_insert_input { + failed_reason: String + match_map_demo_id: uuid + mined_at: timestamptz + throws: Int + version: Int +} + +"""aggregate max on columns""" +type utility_demo_mines_max_fields { + failed_reason: String + match_map_demo_id: uuid + mined_at: timestamptz + throws: Int + version: Int +} + +"""aggregate min on columns""" +type utility_demo_mines_min_fields { + failed_reason: String + match_map_demo_id: uuid + mined_at: timestamptz + throws: Int + version: Int +} + +""" +response of any mutation on the table "utility_demo_mines" +""" +type utility_demo_mines_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [utility_demo_mines!]! +} + +""" +on_conflict condition type for table "utility_demo_mines" +""" +input utility_demo_mines_on_conflict { + constraint: utility_demo_mines_constraint! + update_columns: [utility_demo_mines_update_column!]! = [] + where: utility_demo_mines_bool_exp +} + +"""Ordering options when selecting data from "utility_demo_mines".""" +input utility_demo_mines_order_by { + failed_reason: order_by + match_map_demo_id: order_by + mined_at: order_by + throws: order_by + version: order_by +} + +"""primary key columns input for table: utility_demo_mines""" +input utility_demo_mines_pk_columns_input { + match_map_demo_id: uuid! +} + +""" +select columns of table "utility_demo_mines" +""" +enum utility_demo_mines_select_column { + """column name""" + failed_reason + + """column name""" + match_map_demo_id + + """column name""" + mined_at + + """column name""" + throws + + """column name""" + version +} + +""" +input type for updating data in table "utility_demo_mines" +""" +input utility_demo_mines_set_input { + failed_reason: String + match_map_demo_id: uuid + mined_at: timestamptz + throws: Int + version: Int +} + +"""aggregate stddev on columns""" +type utility_demo_mines_stddev_fields { + throws: Float + version: Float +} + +"""aggregate stddev_pop on columns""" +type utility_demo_mines_stddev_pop_fields { + throws: Float + version: Float +} + +"""aggregate stddev_samp on columns""" +type utility_demo_mines_stddev_samp_fields { + throws: Float + version: Float +} + +""" +Streaming cursor of the table "utility_demo_mines" +""" +input utility_demo_mines_stream_cursor_input { + """Stream column input with initial value""" + initial_value: utility_demo_mines_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input utility_demo_mines_stream_cursor_value_input { + failed_reason: String + match_map_demo_id: uuid + mined_at: timestamptz + throws: Int + version: Int +} + +"""aggregate sum on columns""" +type utility_demo_mines_sum_fields { + throws: Int + version: Int +} + +""" +update columns of table "utility_demo_mines" +""" +enum utility_demo_mines_update_column { + """column name""" + failed_reason + + """column name""" + match_map_demo_id + + """column name""" + mined_at + + """column name""" + throws + + """column name""" + version +} + +input utility_demo_mines_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: utility_demo_mines_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_demo_mines_set_input + + """filter the rows which have to be updated""" + where: utility_demo_mines_bool_exp! +} + +"""aggregate var_pop on columns""" +type utility_demo_mines_var_pop_fields { + throws: Float + version: Float +} + +"""aggregate var_samp on columns""" +type utility_demo_mines_var_samp_fields { + throws: Float + version: Float +} + +"""aggregate variance on columns""" +type utility_demo_mines_variance_fields { + throws: Float + version: Float +} + +""" +columns and relationships of "utility_demo_throws" +""" +type utility_demo_throws { + created_at: timestamptz! + flight_time_ms: Int + grenade_id: Int! + land_x: float8! + land_y: float8! + land_z: float8! + lineup_bucket: String + map_name: String! + + """An object relationship""" + match: matches + match_id: uuid + + """An object relationship""" + match_map: match_maps + match_map_demo_id: uuid! + match_map_id: uuid + origin_x: float8! + origin_y: float8! + origin_z: float8! + round: Int + side: e_sides_enum! + technique: e_utility_techniques_enum! + throw_strength: e_utility_throw_strengths_enum + thrower_steam_id: bigint + thrown_at: timestamptz + tick: Int + utility_type: e_utility_types_enum! + view_pitch: float8 + view_yaw: float8 +} + +""" +aggregated selection of "utility_demo_throws" +""" +type utility_demo_throws_aggregate { + aggregate: utility_demo_throws_aggregate_fields + nodes: [utility_demo_throws!]! +} + +""" +aggregate fields of "utility_demo_throws" +""" +type utility_demo_throws_aggregate_fields { + avg: utility_demo_throws_avg_fields + count(columns: [utility_demo_throws_select_column!], distinct: Boolean): Int! + max: utility_demo_throws_max_fields + min: utility_demo_throws_min_fields + stddev: utility_demo_throws_stddev_fields + stddev_pop: utility_demo_throws_stddev_pop_fields + stddev_samp: utility_demo_throws_stddev_samp_fields + sum: utility_demo_throws_sum_fields + var_pop: utility_demo_throws_var_pop_fields + var_samp: utility_demo_throws_var_samp_fields + variance: utility_demo_throws_variance_fields +} + +"""aggregate avg on columns""" +type utility_demo_throws_avg_fields { + flight_time_ms: Float + grenade_id: Float + land_x: Float + land_y: Float + land_z: Float + origin_x: Float + origin_y: Float + origin_z: Float + round: Float + thrower_steam_id: Float + tick: Float + view_pitch: Float + view_yaw: Float +} + +""" +Boolean expression to filter rows from the table "utility_demo_throws". All fields are combined with a logical 'AND'. +""" +input utility_demo_throws_bool_exp { + _and: [utility_demo_throws_bool_exp!] + _not: utility_demo_throws_bool_exp + _or: [utility_demo_throws_bool_exp!] + created_at: timestamptz_comparison_exp + flight_time_ms: Int_comparison_exp + grenade_id: Int_comparison_exp + land_x: float8_comparison_exp + land_y: float8_comparison_exp + land_z: float8_comparison_exp + lineup_bucket: String_comparison_exp + map_name: String_comparison_exp + match: matches_bool_exp + match_id: uuid_comparison_exp + match_map: match_maps_bool_exp + match_map_demo_id: uuid_comparison_exp + match_map_id: uuid_comparison_exp + origin_x: float8_comparison_exp + origin_y: float8_comparison_exp + origin_z: float8_comparison_exp + round: Int_comparison_exp + side: e_sides_enum_comparison_exp + technique: e_utility_techniques_enum_comparison_exp + throw_strength: e_utility_throw_strengths_enum_comparison_exp + thrower_steam_id: bigint_comparison_exp + thrown_at: timestamptz_comparison_exp + tick: Int_comparison_exp + utility_type: e_utility_types_enum_comparison_exp + view_pitch: float8_comparison_exp + view_yaw: float8_comparison_exp +} + +""" +unique or primary key constraints on table "utility_demo_throws" +""" +enum utility_demo_throws_constraint { + """ + unique or primary key constraint on columns "match_map_demo_id", "grenade_id" + """ + utility_demo_throws_pkey +} + +""" +input type for incrementing numeric columns in table "utility_demo_throws" +""" +input utility_demo_throws_inc_input { + flight_time_ms: Int + grenade_id: Int + land_x: float8 + land_y: float8 + land_z: float8 + origin_x: float8 + origin_y: float8 + origin_z: float8 + round: Int + thrower_steam_id: bigint + tick: Int + view_pitch: float8 + view_yaw: float8 +} + +""" +input type for inserting data into table "utility_demo_throws" +""" +input utility_demo_throws_insert_input { + created_at: timestamptz + flight_time_ms: Int + grenade_id: Int + land_x: float8 + land_y: float8 + land_z: float8 + map_name: String + match: matches_obj_rel_insert_input + match_id: uuid + match_map: match_maps_obj_rel_insert_input + match_map_demo_id: uuid + match_map_id: uuid + origin_x: float8 + origin_y: float8 + origin_z: float8 + round: Int + side: e_sides_enum + technique: e_utility_techniques_enum + throw_strength: e_utility_throw_strengths_enum + thrower_steam_id: bigint + thrown_at: timestamptz + tick: Int + utility_type: e_utility_types_enum + view_pitch: float8 + view_yaw: float8 +} + +"""aggregate max on columns""" +type utility_demo_throws_max_fields { + created_at: timestamptz + flight_time_ms: Int + grenade_id: Int + land_x: float8 + land_y: float8 + land_z: float8 + lineup_bucket: String + map_name: String + match_id: uuid + match_map_demo_id: uuid + match_map_id: uuid + origin_x: float8 + origin_y: float8 + origin_z: float8 + round: Int + thrower_steam_id: bigint + thrown_at: timestamptz + tick: Int + view_pitch: float8 + view_yaw: float8 +} + +"""aggregate min on columns""" +type utility_demo_throws_min_fields { + created_at: timestamptz + flight_time_ms: Int + grenade_id: Int + land_x: float8 + land_y: float8 + land_z: float8 + lineup_bucket: String + map_name: String + match_id: uuid + match_map_demo_id: uuid + match_map_id: uuid + origin_x: float8 + origin_y: float8 + origin_z: float8 + round: Int + thrower_steam_id: bigint + thrown_at: timestamptz + tick: Int + view_pitch: float8 + view_yaw: float8 +} + +""" +response of any mutation on the table "utility_demo_throws" +""" +type utility_demo_throws_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [utility_demo_throws!]! +} + +""" +on_conflict condition type for table "utility_demo_throws" +""" +input utility_demo_throws_on_conflict { + constraint: utility_demo_throws_constraint! + update_columns: [utility_demo_throws_update_column!]! = [] + where: utility_demo_throws_bool_exp +} + +"""Ordering options when selecting data from "utility_demo_throws".""" +input utility_demo_throws_order_by { + created_at: order_by + flight_time_ms: order_by + grenade_id: order_by + land_x: order_by + land_y: order_by + land_z: order_by + lineup_bucket: order_by + map_name: order_by + match: matches_order_by + match_id: order_by + match_map: match_maps_order_by + match_map_demo_id: order_by + match_map_id: order_by + origin_x: order_by + origin_y: order_by + origin_z: order_by + round: order_by + side: order_by + technique: order_by + throw_strength: order_by + thrower_steam_id: order_by + thrown_at: order_by + tick: order_by + utility_type: order_by + view_pitch: order_by + view_yaw: order_by +} + +"""primary key columns input for table: utility_demo_throws""" +input utility_demo_throws_pk_columns_input { + grenade_id: Int! + match_map_demo_id: uuid! +} + +""" +select columns of table "utility_demo_throws" +""" +enum utility_demo_throws_select_column { + """column name""" + created_at + + """column name""" + flight_time_ms + + """column name""" + grenade_id + + """column name""" + land_x + + """column name""" + land_y + + """column name""" + land_z + + """column name""" + lineup_bucket + + """column name""" + map_name + + """column name""" + match_id + + """column name""" + match_map_demo_id + + """column name""" + match_map_id + + """column name""" + origin_x + + """column name""" + origin_y + + """column name""" + origin_z + + """column name""" + round + + """column name""" + side + + """column name""" + technique + + """column name""" + throw_strength + + """column name""" + thrower_steam_id + + """column name""" + thrown_at + + """column name""" + tick + + """column name""" + utility_type + + """column name""" + view_pitch + + """column name""" + view_yaw +} + +""" +input type for updating data in table "utility_demo_throws" +""" +input utility_demo_throws_set_input { + created_at: timestamptz + flight_time_ms: Int + grenade_id: Int + land_x: float8 + land_y: float8 + land_z: float8 + map_name: String + match_id: uuid + match_map_demo_id: uuid + match_map_id: uuid + origin_x: float8 + origin_y: float8 + origin_z: float8 + round: Int + side: e_sides_enum + technique: e_utility_techniques_enum + throw_strength: e_utility_throw_strengths_enum + thrower_steam_id: bigint + thrown_at: timestamptz + tick: Int + utility_type: e_utility_types_enum + view_pitch: float8 + view_yaw: float8 +} + +"""aggregate stddev on columns""" +type utility_demo_throws_stddev_fields { + flight_time_ms: Float + grenade_id: Float + land_x: Float + land_y: Float + land_z: Float + origin_x: Float + origin_y: Float + origin_z: Float + round: Float + thrower_steam_id: Float + tick: Float + view_pitch: Float + view_yaw: Float +} + +"""aggregate stddev_pop on columns""" +type utility_demo_throws_stddev_pop_fields { + flight_time_ms: Float + grenade_id: Float + land_x: Float + land_y: Float + land_z: Float + origin_x: Float + origin_y: Float + origin_z: Float + round: Float + thrower_steam_id: Float + tick: Float + view_pitch: Float + view_yaw: Float +} + +"""aggregate stddev_samp on columns""" +type utility_demo_throws_stddev_samp_fields { + flight_time_ms: Float + grenade_id: Float + land_x: Float + land_y: Float + land_z: Float + origin_x: Float + origin_y: Float + origin_z: Float + round: Float + thrower_steam_id: Float + tick: Float + view_pitch: Float + view_yaw: Float +} + +""" +Streaming cursor of the table "utility_demo_throws" +""" +input utility_demo_throws_stream_cursor_input { + """Stream column input with initial value""" + initial_value: utility_demo_throws_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input utility_demo_throws_stream_cursor_value_input { + created_at: timestamptz + flight_time_ms: Int + grenade_id: Int + land_x: float8 + land_y: float8 + land_z: float8 + lineup_bucket: String + map_name: String + match_id: uuid + match_map_demo_id: uuid + match_map_id: uuid + origin_x: float8 + origin_y: float8 + origin_z: float8 + round: Int + side: e_sides_enum + technique: e_utility_techniques_enum + throw_strength: e_utility_throw_strengths_enum + thrower_steam_id: bigint + thrown_at: timestamptz + tick: Int + utility_type: e_utility_types_enum + view_pitch: float8 + view_yaw: float8 +} + +"""aggregate sum on columns""" +type utility_demo_throws_sum_fields { + flight_time_ms: Int + grenade_id: Int + land_x: float8 + land_y: float8 + land_z: float8 + origin_x: float8 + origin_y: float8 + origin_z: float8 + round: Int + thrower_steam_id: bigint + tick: Int + view_pitch: float8 + view_yaw: float8 +} + +""" +update columns of table "utility_demo_throws" +""" +enum utility_demo_throws_update_column { + """column name""" + created_at + + """column name""" + flight_time_ms + + """column name""" + grenade_id + + """column name""" + land_x + + """column name""" + land_y + + """column name""" + land_z + + """column name""" + map_name + + """column name""" + match_id + + """column name""" + match_map_demo_id + + """column name""" + match_map_id + + """column name""" + origin_x + + """column name""" + origin_y + + """column name""" + origin_z + + """column name""" + round + + """column name""" + side + + """column name""" + technique + + """column name""" + throw_strength + + """column name""" + thrower_steam_id + + """column name""" + thrown_at + + """column name""" + tick + + """column name""" + utility_type + + """column name""" + view_pitch + + """column name""" + view_yaw +} + +input utility_demo_throws_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: utility_demo_throws_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_demo_throws_set_input + + """filter the rows which have to be updated""" + where: utility_demo_throws_bool_exp! +} + +"""aggregate var_pop on columns""" +type utility_demo_throws_var_pop_fields { + flight_time_ms: Float + grenade_id: Float + land_x: Float + land_y: Float + land_z: Float + origin_x: Float + origin_y: Float + origin_z: Float + round: Float + thrower_steam_id: Float + tick: Float + view_pitch: Float + view_yaw: Float +} + +"""aggregate var_samp on columns""" +type utility_demo_throws_var_samp_fields { + flight_time_ms: Float + grenade_id: Float + land_x: Float + land_y: Float + land_z: Float + origin_x: Float + origin_y: Float + origin_z: Float + round: Float + thrower_steam_id: Float + tick: Float + view_pitch: Float + view_yaw: Float +} + +"""aggregate variance on columns""" +type utility_demo_throws_variance_fields { + flight_time_ms: Float + grenade_id: Float + land_x: Float + land_y: Float + land_z: Float + origin_x: Float + origin_y: Float + origin_z: Float + round: Float + thrower_steam_id: Float + tick: Float + view_pitch: Float + view_yaw: Float +} + +""" +columns and relationships of "utility_drift_results" +""" +type utility_drift_results { + created_at: timestamptz! + distance: float8 + distance_xy: float8 + distance_z: float8 + reason: String + + """An object relationship""" + scan: utility_drift_scans! + severity: String + utility_drift_scan_id: uuid! + + """An object relationship""" + utility_lineup: utility_lineups! + utility_lineup_id: uuid! + verdict: String! +} + +""" +aggregated selection of "utility_drift_results" +""" +type utility_drift_results_aggregate { + aggregate: utility_drift_results_aggregate_fields + nodes: [utility_drift_results!]! +} + +input utility_drift_results_aggregate_bool_exp { + avg: utility_drift_results_aggregate_bool_exp_avg + corr: utility_drift_results_aggregate_bool_exp_corr + count: utility_drift_results_aggregate_bool_exp_count + covar_samp: utility_drift_results_aggregate_bool_exp_covar_samp + max: utility_drift_results_aggregate_bool_exp_max + min: utility_drift_results_aggregate_bool_exp_min + stddev_samp: utility_drift_results_aggregate_bool_exp_stddev_samp + sum: utility_drift_results_aggregate_bool_exp_sum + var_samp: utility_drift_results_aggregate_bool_exp_var_samp +} + +input utility_drift_results_aggregate_bool_exp_avg { + arguments: utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_avg_arguments_columns! + distinct: Boolean + filter: utility_drift_results_bool_exp + predicate: float8_comparison_exp! +} + +input utility_drift_results_aggregate_bool_exp_corr { + arguments: utility_drift_results_aggregate_bool_exp_corr_arguments! + distinct: Boolean + filter: utility_drift_results_bool_exp + predicate: float8_comparison_exp! +} + +input utility_drift_results_aggregate_bool_exp_corr_arguments { + X: utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_corr_arguments_columns! + Y: utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_corr_arguments_columns! +} + +input utility_drift_results_aggregate_bool_exp_count { + arguments: [utility_drift_results_select_column!] + distinct: Boolean + filter: utility_drift_results_bool_exp + predicate: Int_comparison_exp! +} + +input utility_drift_results_aggregate_bool_exp_covar_samp { + arguments: utility_drift_results_aggregate_bool_exp_covar_samp_arguments! + distinct: Boolean + filter: utility_drift_results_bool_exp + predicate: float8_comparison_exp! +} + +input utility_drift_results_aggregate_bool_exp_covar_samp_arguments { + X: utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_covar_samp_arguments_columns! + Y: utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_covar_samp_arguments_columns! +} + +input utility_drift_results_aggregate_bool_exp_max { + arguments: utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_max_arguments_columns! + distinct: Boolean + filter: utility_drift_results_bool_exp + predicate: float8_comparison_exp! +} + +input utility_drift_results_aggregate_bool_exp_min { + arguments: utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_min_arguments_columns! + distinct: Boolean + filter: utility_drift_results_bool_exp + predicate: float8_comparison_exp! +} + +input utility_drift_results_aggregate_bool_exp_stddev_samp { + arguments: utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_stddev_samp_arguments_columns! + distinct: Boolean + filter: utility_drift_results_bool_exp + predicate: float8_comparison_exp! +} + +input utility_drift_results_aggregate_bool_exp_sum { + arguments: utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_sum_arguments_columns! + distinct: Boolean + filter: utility_drift_results_bool_exp + predicate: float8_comparison_exp! +} + +input utility_drift_results_aggregate_bool_exp_var_samp { + arguments: utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_var_samp_arguments_columns! + distinct: Boolean + filter: utility_drift_results_bool_exp + predicate: float8_comparison_exp! +} + +""" +aggregate fields of "utility_drift_results" +""" +type utility_drift_results_aggregate_fields { + avg: utility_drift_results_avg_fields + count(columns: [utility_drift_results_select_column!], distinct: Boolean): Int! + max: utility_drift_results_max_fields + min: utility_drift_results_min_fields + stddev: utility_drift_results_stddev_fields + stddev_pop: utility_drift_results_stddev_pop_fields + stddev_samp: utility_drift_results_stddev_samp_fields + sum: utility_drift_results_sum_fields + var_pop: utility_drift_results_var_pop_fields + var_samp: utility_drift_results_var_samp_fields + variance: utility_drift_results_variance_fields +} + +""" +order by aggregate values of table "utility_drift_results" +""" +input utility_drift_results_aggregate_order_by { + avg: utility_drift_results_avg_order_by + count: order_by + max: utility_drift_results_max_order_by + min: utility_drift_results_min_order_by + stddev: utility_drift_results_stddev_order_by + stddev_pop: utility_drift_results_stddev_pop_order_by + stddev_samp: utility_drift_results_stddev_samp_order_by + sum: utility_drift_results_sum_order_by + var_pop: utility_drift_results_var_pop_order_by + var_samp: utility_drift_results_var_samp_order_by + variance: utility_drift_results_variance_order_by +} + +""" +input type for inserting array relation for remote table "utility_drift_results" +""" +input utility_drift_results_arr_rel_insert_input { + data: [utility_drift_results_insert_input!]! + + """upsert condition""" + on_conflict: utility_drift_results_on_conflict +} + +"""aggregate avg on columns""" +type utility_drift_results_avg_fields { + distance: Float + distance_xy: Float + distance_z: Float +} + +""" +order by avg() on columns of table "utility_drift_results" +""" +input utility_drift_results_avg_order_by { + distance: order_by + distance_xy: order_by + distance_z: order_by +} + +""" +Boolean expression to filter rows from the table "utility_drift_results". All fields are combined with a logical 'AND'. +""" +input utility_drift_results_bool_exp { + _and: [utility_drift_results_bool_exp!] + _not: utility_drift_results_bool_exp + _or: [utility_drift_results_bool_exp!] + created_at: timestamptz_comparison_exp + distance: float8_comparison_exp + distance_xy: float8_comparison_exp + distance_z: float8_comparison_exp + reason: String_comparison_exp + scan: utility_drift_scans_bool_exp + severity: String_comparison_exp + utility_drift_scan_id: uuid_comparison_exp + utility_lineup: utility_lineups_bool_exp + utility_lineup_id: uuid_comparison_exp + verdict: String_comparison_exp +} + +""" +unique or primary key constraints on table "utility_drift_results" +""" +enum utility_drift_results_constraint { + """ + unique or primary key constraint on columns "utility_drift_scan_id", "utility_lineup_id" + """ + utility_drift_results_pkey +} + +""" +input type for incrementing numeric columns in table "utility_drift_results" +""" +input utility_drift_results_inc_input { + distance: float8 + distance_xy: float8 + distance_z: float8 +} + +""" +input type for inserting data into table "utility_drift_results" +""" +input utility_drift_results_insert_input { + created_at: timestamptz + distance: float8 + distance_xy: float8 + distance_z: float8 + reason: String + scan: utility_drift_scans_obj_rel_insert_input + severity: String + utility_drift_scan_id: uuid + utility_lineup: utility_lineups_obj_rel_insert_input + utility_lineup_id: uuid + verdict: String +} + +"""aggregate max on columns""" +type utility_drift_results_max_fields { + created_at: timestamptz + distance: float8 + distance_xy: float8 + distance_z: float8 + reason: String + severity: String + utility_drift_scan_id: uuid + utility_lineup_id: uuid + verdict: String +} + +""" +order by max() on columns of table "utility_drift_results" +""" +input utility_drift_results_max_order_by { + created_at: order_by + distance: order_by + distance_xy: order_by + distance_z: order_by + reason: order_by + severity: order_by + utility_drift_scan_id: order_by + utility_lineup_id: order_by + verdict: order_by +} + +"""aggregate min on columns""" +type utility_drift_results_min_fields { + created_at: timestamptz + distance: float8 + distance_xy: float8 + distance_z: float8 + reason: String + severity: String + utility_drift_scan_id: uuid + utility_lineup_id: uuid + verdict: String +} + +""" +order by min() on columns of table "utility_drift_results" +""" +input utility_drift_results_min_order_by { + created_at: order_by + distance: order_by + distance_xy: order_by + distance_z: order_by + reason: order_by + severity: order_by + utility_drift_scan_id: order_by + utility_lineup_id: order_by + verdict: order_by +} + +""" +response of any mutation on the table "utility_drift_results" +""" +type utility_drift_results_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [utility_drift_results!]! +} + +""" +on_conflict condition type for table "utility_drift_results" +""" +input utility_drift_results_on_conflict { + constraint: utility_drift_results_constraint! + update_columns: [utility_drift_results_update_column!]! = [] + where: utility_drift_results_bool_exp +} + +"""Ordering options when selecting data from "utility_drift_results".""" +input utility_drift_results_order_by { + created_at: order_by + distance: order_by + distance_xy: order_by + distance_z: order_by + reason: order_by + scan: utility_drift_scans_order_by + severity: order_by + utility_drift_scan_id: order_by + utility_lineup: utility_lineups_order_by + utility_lineup_id: order_by + verdict: order_by +} + +"""primary key columns input for table: utility_drift_results""" +input utility_drift_results_pk_columns_input { + utility_drift_scan_id: uuid! + utility_lineup_id: uuid! +} + +""" +select columns of table "utility_drift_results" +""" +enum utility_drift_results_select_column { + """column name""" + created_at + + """column name""" + distance + + """column name""" + distance_xy + + """column name""" + distance_z + + """column name""" + reason + + """column name""" + severity + + """column name""" + utility_drift_scan_id + + """column name""" + utility_lineup_id + + """column name""" + verdict +} + +""" +select "utility_drift_results_aggregate_bool_exp_avg_arguments_columns" columns of table "utility_drift_results" +""" +enum utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_avg_arguments_columns { + """column name""" + distance + + """column name""" + distance_xy + + """column name""" + distance_z +} + +""" +select "utility_drift_results_aggregate_bool_exp_corr_arguments_columns" columns of table "utility_drift_results" +""" +enum utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_corr_arguments_columns { + """column name""" + distance + + """column name""" + distance_xy + + """column name""" + distance_z +} + +""" +select "utility_drift_results_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "utility_drift_results" +""" +enum utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_covar_samp_arguments_columns { + """column name""" + distance + + """column name""" + distance_xy + + """column name""" + distance_z +} + +""" +select "utility_drift_results_aggregate_bool_exp_max_arguments_columns" columns of table "utility_drift_results" +""" +enum utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_max_arguments_columns { + """column name""" + distance + + """column name""" + distance_xy + + """column name""" + distance_z +} + +""" +select "utility_drift_results_aggregate_bool_exp_min_arguments_columns" columns of table "utility_drift_results" +""" +enum utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_min_arguments_columns { + """column name""" + distance + + """column name""" + distance_xy + + """column name""" + distance_z +} + +""" +select "utility_drift_results_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "utility_drift_results" +""" +enum utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_stddev_samp_arguments_columns { + """column name""" + distance + + """column name""" + distance_xy + + """column name""" + distance_z +} + +""" +select "utility_drift_results_aggregate_bool_exp_sum_arguments_columns" columns of table "utility_drift_results" +""" +enum utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_sum_arguments_columns { + """column name""" + distance + + """column name""" + distance_xy + + """column name""" + distance_z +} + +""" +select "utility_drift_results_aggregate_bool_exp_var_samp_arguments_columns" columns of table "utility_drift_results" +""" +enum utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_var_samp_arguments_columns { + """column name""" + distance + + """column name""" + distance_xy + + """column name""" + distance_z +} + +""" +input type for updating data in table "utility_drift_results" +""" +input utility_drift_results_set_input { + created_at: timestamptz + distance: float8 + distance_xy: float8 + distance_z: float8 + reason: String + severity: String + utility_drift_scan_id: uuid + utility_lineup_id: uuid + verdict: String +} + +"""aggregate stddev on columns""" +type utility_drift_results_stddev_fields { + distance: Float + distance_xy: Float + distance_z: Float +} + +""" +order by stddev() on columns of table "utility_drift_results" +""" +input utility_drift_results_stddev_order_by { + distance: order_by + distance_xy: order_by + distance_z: order_by +} + +"""aggregate stddev_pop on columns""" +type utility_drift_results_stddev_pop_fields { + distance: Float + distance_xy: Float + distance_z: Float +} + +""" +order by stddev_pop() on columns of table "utility_drift_results" +""" +input utility_drift_results_stddev_pop_order_by { + distance: order_by + distance_xy: order_by + distance_z: order_by +} + +"""aggregate stddev_samp on columns""" +type utility_drift_results_stddev_samp_fields { + distance: Float + distance_xy: Float + distance_z: Float +} + +""" +order by stddev_samp() on columns of table "utility_drift_results" +""" +input utility_drift_results_stddev_samp_order_by { + distance: order_by + distance_xy: order_by + distance_z: order_by +} + +""" +Streaming cursor of the table "utility_drift_results" +""" +input utility_drift_results_stream_cursor_input { + """Stream column input with initial value""" + initial_value: utility_drift_results_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input utility_drift_results_stream_cursor_value_input { + created_at: timestamptz + distance: float8 + distance_xy: float8 + distance_z: float8 + reason: String + severity: String + utility_drift_scan_id: uuid + utility_lineup_id: uuid + verdict: String +} + +"""aggregate sum on columns""" +type utility_drift_results_sum_fields { + distance: float8 + distance_xy: float8 + distance_z: float8 +} + +""" +order by sum() on columns of table "utility_drift_results" +""" +input utility_drift_results_sum_order_by { + distance: order_by + distance_xy: order_by + distance_z: order_by +} + +""" +update columns of table "utility_drift_results" +""" +enum utility_drift_results_update_column { + """column name""" + created_at + + """column name""" + distance + + """column name""" + distance_xy + + """column name""" + distance_z + + """column name""" + reason + + """column name""" + severity + + """column name""" + utility_drift_scan_id + + """column name""" + utility_lineup_id + + """column name""" + verdict +} + +input utility_drift_results_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: utility_drift_results_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_drift_results_set_input + + """filter the rows which have to be updated""" + where: utility_drift_results_bool_exp! +} + +"""aggregate var_pop on columns""" +type utility_drift_results_var_pop_fields { + distance: Float + distance_xy: Float + distance_z: Float +} + +""" +order by var_pop() on columns of table "utility_drift_results" +""" +input utility_drift_results_var_pop_order_by { + distance: order_by + distance_xy: order_by + distance_z: order_by +} + +"""aggregate var_samp on columns""" +type utility_drift_results_var_samp_fields { + distance: Float + distance_xy: Float + distance_z: Float +} + +""" +order by var_samp() on columns of table "utility_drift_results" +""" +input utility_drift_results_var_samp_order_by { + distance: order_by + distance_xy: order_by + distance_z: order_by +} + +"""aggregate variance on columns""" +type utility_drift_results_variance_fields { + distance: Float + distance_xy: Float + distance_z: Float +} + +""" +order by variance() on columns of table "utility_drift_results" +""" +input utility_drift_results_variance_order_by { + distance: order_by + distance_xy: order_by + distance_z: order_by +} + +""" +columns and relationships of "utility_drift_scans" +""" +type utility_drift_scans { + broken: Int! + created_at: timestamptz! + failure_reason: String + finished_at: timestamptz + from_revision: String + id: uuid! + lineups: Int! + map_name: String! + max_distance: float8 + moved: Int! + + """An object relationship""" + requested_by: players + requested_by_steam_id: bigint + + """An array relationship""" + results( + """distinct select on columns""" + distinct_on: [utility_drift_results_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: [utility_drift_results_order_by!] + + """filter the rows returned""" + where: utility_drift_results_bool_exp + ): [utility_drift_results!]! + + """An aggregate relationship""" + results_aggregate( + """distinct select on columns""" + distinct_on: [utility_drift_results_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: [utility_drift_results_order_by!] + + """filter the rows returned""" + where: utility_drift_results_bool_exp + ): utility_drift_results_aggregate! + scanned: Int! + started_at: timestamptz + status: String! + to_revision: String + unchanged: Int! + unsimulatable: Int! + updated_at: timestamptz! +} + +""" +aggregated selection of "utility_drift_scans" +""" +type utility_drift_scans_aggregate { + aggregate: utility_drift_scans_aggregate_fields + nodes: [utility_drift_scans!]! +} + +""" +aggregate fields of "utility_drift_scans" +""" +type utility_drift_scans_aggregate_fields { + avg: utility_drift_scans_avg_fields + count(columns: [utility_drift_scans_select_column!], distinct: Boolean): Int! + max: utility_drift_scans_max_fields + min: utility_drift_scans_min_fields + stddev: utility_drift_scans_stddev_fields + stddev_pop: utility_drift_scans_stddev_pop_fields + stddev_samp: utility_drift_scans_stddev_samp_fields + sum: utility_drift_scans_sum_fields + var_pop: utility_drift_scans_var_pop_fields + var_samp: utility_drift_scans_var_samp_fields + variance: utility_drift_scans_variance_fields +} + +"""aggregate avg on columns""" +type utility_drift_scans_avg_fields { + broken: Float + lineups: Float + max_distance: Float + moved: Float + requested_by_steam_id: Float + scanned: Float + unchanged: Float + unsimulatable: Float +} + +""" +Boolean expression to filter rows from the table "utility_drift_scans". All fields are combined with a logical 'AND'. +""" +input utility_drift_scans_bool_exp { + _and: [utility_drift_scans_bool_exp!] + _not: utility_drift_scans_bool_exp + _or: [utility_drift_scans_bool_exp!] + broken: Int_comparison_exp + created_at: timestamptz_comparison_exp + failure_reason: String_comparison_exp + finished_at: timestamptz_comparison_exp + from_revision: String_comparison_exp + id: uuid_comparison_exp + lineups: Int_comparison_exp + map_name: String_comparison_exp + max_distance: float8_comparison_exp + moved: Int_comparison_exp + requested_by: players_bool_exp + requested_by_steam_id: bigint_comparison_exp + results: utility_drift_results_bool_exp + results_aggregate: utility_drift_results_aggregate_bool_exp + scanned: Int_comparison_exp + started_at: timestamptz_comparison_exp + status: String_comparison_exp + to_revision: String_comparison_exp + unchanged: Int_comparison_exp + unsimulatable: Int_comparison_exp + updated_at: timestamptz_comparison_exp +} + +""" +unique or primary key constraints on table "utility_drift_scans" +""" +enum utility_drift_scans_constraint { + """ + unique or primary key constraint on columns "id" + """ + utility_drift_scans_pkey +} + +""" +input type for incrementing numeric columns in table "utility_drift_scans" +""" +input utility_drift_scans_inc_input { + broken: Int + lineups: Int + max_distance: float8 + moved: Int + requested_by_steam_id: bigint + scanned: Int + unchanged: Int + unsimulatable: Int +} + +""" +input type for inserting data into table "utility_drift_scans" +""" +input utility_drift_scans_insert_input { + broken: Int + created_at: timestamptz + failure_reason: String + finished_at: timestamptz + from_revision: String + id: uuid + lineups: Int + map_name: String + max_distance: float8 + moved: Int + requested_by: players_obj_rel_insert_input + requested_by_steam_id: bigint + results: utility_drift_results_arr_rel_insert_input + scanned: Int + started_at: timestamptz + status: String + to_revision: String + unchanged: Int + unsimulatable: Int + updated_at: timestamptz +} + +"""aggregate max on columns""" +type utility_drift_scans_max_fields { + broken: Int + created_at: timestamptz + failure_reason: String + finished_at: timestamptz + from_revision: String + id: uuid + lineups: Int + map_name: String + max_distance: float8 + moved: Int + requested_by_steam_id: bigint + scanned: Int + started_at: timestamptz + status: String + to_revision: String + unchanged: Int + unsimulatable: Int + updated_at: timestamptz +} + +"""aggregate min on columns""" +type utility_drift_scans_min_fields { + broken: Int + created_at: timestamptz + failure_reason: String + finished_at: timestamptz + from_revision: String + id: uuid + lineups: Int + map_name: String + max_distance: float8 + moved: Int + requested_by_steam_id: bigint + scanned: Int + started_at: timestamptz + status: String + to_revision: String + unchanged: Int + unsimulatable: Int + updated_at: timestamptz +} + +""" +response of any mutation on the table "utility_drift_scans" +""" +type utility_drift_scans_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [utility_drift_scans!]! +} + +""" +input type for inserting object relation for remote table "utility_drift_scans" +""" +input utility_drift_scans_obj_rel_insert_input { + data: utility_drift_scans_insert_input! + + """upsert condition""" + on_conflict: utility_drift_scans_on_conflict +} + +""" +on_conflict condition type for table "utility_drift_scans" +""" +input utility_drift_scans_on_conflict { + constraint: utility_drift_scans_constraint! + update_columns: [utility_drift_scans_update_column!]! = [] + where: utility_drift_scans_bool_exp +} + +"""Ordering options when selecting data from "utility_drift_scans".""" +input utility_drift_scans_order_by { + broken: order_by + created_at: order_by + failure_reason: order_by + finished_at: order_by + from_revision: order_by + id: order_by + lineups: order_by + map_name: order_by + max_distance: order_by + moved: order_by + requested_by: players_order_by + requested_by_steam_id: order_by + results_aggregate: utility_drift_results_aggregate_order_by + scanned: order_by + started_at: order_by + status: order_by + to_revision: order_by + unchanged: order_by + unsimulatable: order_by + updated_at: order_by +} + +"""primary key columns input for table: utility_drift_scans""" +input utility_drift_scans_pk_columns_input { + id: uuid! +} + +""" +select columns of table "utility_drift_scans" +""" +enum utility_drift_scans_select_column { + """column name""" + broken + + """column name""" + created_at + + """column name""" + failure_reason + + """column name""" + finished_at + + """column name""" + from_revision + + """column name""" + id + + """column name""" + lineups + + """column name""" + map_name + + """column name""" + max_distance + + """column name""" + moved + + """column name""" + requested_by_steam_id + + """column name""" + scanned + + """column name""" + started_at + + """column name""" + status + + """column name""" + to_revision + + """column name""" + unchanged + + """column name""" + unsimulatable + + """column name""" + updated_at +} + +""" +input type for updating data in table "utility_drift_scans" +""" +input utility_drift_scans_set_input { + broken: Int + created_at: timestamptz + failure_reason: String + finished_at: timestamptz + from_revision: String + id: uuid + lineups: Int + map_name: String + max_distance: float8 + moved: Int + requested_by_steam_id: bigint + scanned: Int + started_at: timestamptz + status: String + to_revision: String + unchanged: Int + unsimulatable: Int + updated_at: timestamptz +} + +"""aggregate stddev on columns""" +type utility_drift_scans_stddev_fields { + broken: Float + lineups: Float + max_distance: Float + moved: Float + requested_by_steam_id: Float + scanned: Float + unchanged: Float + unsimulatable: Float +} + +"""aggregate stddev_pop on columns""" +type utility_drift_scans_stddev_pop_fields { + broken: Float + lineups: Float + max_distance: Float + moved: Float + requested_by_steam_id: Float + scanned: Float + unchanged: Float + unsimulatable: Float +} + +"""aggregate stddev_samp on columns""" +type utility_drift_scans_stddev_samp_fields { + broken: Float + lineups: Float + max_distance: Float + moved: Float + requested_by_steam_id: Float + scanned: Float + unchanged: Float + unsimulatable: Float +} + +""" +Streaming cursor of the table "utility_drift_scans" +""" +input utility_drift_scans_stream_cursor_input { + """Stream column input with initial value""" + initial_value: utility_drift_scans_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input utility_drift_scans_stream_cursor_value_input { + broken: Int + created_at: timestamptz + failure_reason: String + finished_at: timestamptz + from_revision: String + id: uuid + lineups: Int + map_name: String + max_distance: float8 + moved: Int + requested_by_steam_id: bigint + scanned: Int + started_at: timestamptz + status: String + to_revision: String + unchanged: Int + unsimulatable: Int + updated_at: timestamptz +} + +"""aggregate sum on columns""" +type utility_drift_scans_sum_fields { + broken: Int + lineups: Int + max_distance: float8 + moved: Int + requested_by_steam_id: bigint + scanned: Int + unchanged: Int + unsimulatable: Int +} + +""" +update columns of table "utility_drift_scans" +""" +enum utility_drift_scans_update_column { + """column name""" + broken + + """column name""" + created_at + + """column name""" + failure_reason + + """column name""" + finished_at + + """column name""" + from_revision + + """column name""" + id + + """column name""" + lineups + + """column name""" + map_name + + """column name""" + max_distance + + """column name""" + moved + + """column name""" + requested_by_steam_id + + """column name""" + scanned + + """column name""" + started_at + + """column name""" + status + + """column name""" + to_revision + + """column name""" + unchanged + + """column name""" + unsimulatable + + """column name""" + updated_at +} + +input utility_drift_scans_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: utility_drift_scans_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_drift_scans_set_input + + """filter the rows which have to be updated""" + where: utility_drift_scans_bool_exp! +} + +"""aggregate var_pop on columns""" +type utility_drift_scans_var_pop_fields { + broken: Float + lineups: Float + max_distance: Float + moved: Float + requested_by_steam_id: Float + scanned: Float + unchanged: Float + unsimulatable: Float +} + +"""aggregate var_samp on columns""" +type utility_drift_scans_var_samp_fields { + broken: Float + lineups: Float + max_distance: Float + moved: Float + requested_by_steam_id: Float + scanned: Float + unchanged: Float + unsimulatable: Float +} + +"""aggregate variance on columns""" +type utility_drift_scans_variance_fields { + broken: Float + lineups: Float + max_distance: Float + moved: Float + requested_by_steam_id: Float + scanned: Float + unchanged: Float + unsimulatable: Float +} + +""" +columns and relationships of "utility_lineup_favorites" +""" +type utility_lineup_favorites { + created_at: timestamptz! + + """An object relationship""" + player: players! + steam_id: bigint! + + """An object relationship""" + utility_lineup: utility_lineups! + utility_lineup_id: uuid! +} + +""" +aggregated selection of "utility_lineup_favorites" +""" +type utility_lineup_favorites_aggregate { + aggregate: utility_lineup_favorites_aggregate_fields + nodes: [utility_lineup_favorites!]! +} + +input utility_lineup_favorites_aggregate_bool_exp { + count: utility_lineup_favorites_aggregate_bool_exp_count +} + +input utility_lineup_favorites_aggregate_bool_exp_count { + arguments: [utility_lineup_favorites_select_column!] + distinct: Boolean + filter: utility_lineup_favorites_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "utility_lineup_favorites" +""" +type utility_lineup_favorites_aggregate_fields { + avg: utility_lineup_favorites_avg_fields + count(columns: [utility_lineup_favorites_select_column!], distinct: Boolean): Int! + max: utility_lineup_favorites_max_fields + min: utility_lineup_favorites_min_fields + stddev: utility_lineup_favorites_stddev_fields + stddev_pop: utility_lineup_favorites_stddev_pop_fields + stddev_samp: utility_lineup_favorites_stddev_samp_fields + sum: utility_lineup_favorites_sum_fields + var_pop: utility_lineup_favorites_var_pop_fields + var_samp: utility_lineup_favorites_var_samp_fields + variance: utility_lineup_favorites_variance_fields +} + +""" +order by aggregate values of table "utility_lineup_favorites" +""" +input utility_lineup_favorites_aggregate_order_by { + avg: utility_lineup_favorites_avg_order_by + count: order_by + max: utility_lineup_favorites_max_order_by + min: utility_lineup_favorites_min_order_by + stddev: utility_lineup_favorites_stddev_order_by + stddev_pop: utility_lineup_favorites_stddev_pop_order_by + stddev_samp: utility_lineup_favorites_stddev_samp_order_by + sum: utility_lineup_favorites_sum_order_by + var_pop: utility_lineup_favorites_var_pop_order_by + var_samp: utility_lineup_favorites_var_samp_order_by + variance: utility_lineup_favorites_variance_order_by +} + +""" +input type for inserting array relation for remote table "utility_lineup_favorites" +""" +input utility_lineup_favorites_arr_rel_insert_input { + data: [utility_lineup_favorites_insert_input!]! + + """upsert condition""" + on_conflict: utility_lineup_favorites_on_conflict +} + +"""aggregate avg on columns""" +type utility_lineup_favorites_avg_fields { + steam_id: Float +} + +""" +order by avg() on columns of table "utility_lineup_favorites" +""" +input utility_lineup_favorites_avg_order_by { + steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "utility_lineup_favorites". All fields are combined with a logical 'AND'. +""" +input utility_lineup_favorites_bool_exp { + _and: [utility_lineup_favorites_bool_exp!] + _not: utility_lineup_favorites_bool_exp + _or: [utility_lineup_favorites_bool_exp!] + created_at: timestamptz_comparison_exp + player: players_bool_exp + steam_id: bigint_comparison_exp + utility_lineup: utility_lineups_bool_exp + utility_lineup_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "utility_lineup_favorites" +""" +enum utility_lineup_favorites_constraint { + """ + unique or primary key constraint on columns "steam_id", "utility_lineup_id" + """ + utility_lineup_favorites_pkey +} + +""" +input type for incrementing numeric columns in table "utility_lineup_favorites" +""" +input utility_lineup_favorites_inc_input { + steam_id: bigint +} + +""" +input type for inserting data into table "utility_lineup_favorites" +""" +input utility_lineup_favorites_insert_input { + created_at: timestamptz + player: players_obj_rel_insert_input + steam_id: bigint + utility_lineup: utility_lineups_obj_rel_insert_input + utility_lineup_id: uuid +} + +"""aggregate max on columns""" +type utility_lineup_favorites_max_fields { + created_at: timestamptz + steam_id: bigint + utility_lineup_id: uuid +} + +""" +order by max() on columns of table "utility_lineup_favorites" +""" +input utility_lineup_favorites_max_order_by { + created_at: order_by + steam_id: order_by + utility_lineup_id: order_by +} + +"""aggregate min on columns""" +type utility_lineup_favorites_min_fields { + created_at: timestamptz + steam_id: bigint + utility_lineup_id: uuid +} + +""" +order by min() on columns of table "utility_lineup_favorites" +""" +input utility_lineup_favorites_min_order_by { + created_at: order_by + steam_id: order_by + utility_lineup_id: order_by +} + +""" +response of any mutation on the table "utility_lineup_favorites" +""" +type utility_lineup_favorites_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [utility_lineup_favorites!]! +} + +""" +on_conflict condition type for table "utility_lineup_favorites" +""" +input utility_lineup_favorites_on_conflict { + constraint: utility_lineup_favorites_constraint! + update_columns: [utility_lineup_favorites_update_column!]! = [] + where: utility_lineup_favorites_bool_exp +} + +"""Ordering options when selecting data from "utility_lineup_favorites".""" +input utility_lineup_favorites_order_by { + created_at: order_by + player: players_order_by + steam_id: order_by + utility_lineup: utility_lineups_order_by + utility_lineup_id: order_by +} + +"""primary key columns input for table: utility_lineup_favorites""" +input utility_lineup_favorites_pk_columns_input { + steam_id: bigint! + utility_lineup_id: uuid! +} + +""" +select columns of table "utility_lineup_favorites" +""" +enum utility_lineup_favorites_select_column { + """column name""" + created_at + + """column name""" + steam_id + + """column name""" + utility_lineup_id +} + +""" +input type for updating data in table "utility_lineup_favorites" +""" +input utility_lineup_favorites_set_input { + created_at: timestamptz + steam_id: bigint + utility_lineup_id: uuid +} + +"""aggregate stddev on columns""" +type utility_lineup_favorites_stddev_fields { + steam_id: Float +} + +""" +order by stddev() on columns of table "utility_lineup_favorites" +""" +input utility_lineup_favorites_stddev_order_by { + steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type utility_lineup_favorites_stddev_pop_fields { + steam_id: Float +} + +""" +order by stddev_pop() on columns of table "utility_lineup_favorites" +""" +input utility_lineup_favorites_stddev_pop_order_by { + steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type utility_lineup_favorites_stddev_samp_fields { + steam_id: Float +} + +""" +order by stddev_samp() on columns of table "utility_lineup_favorites" +""" +input utility_lineup_favorites_stddev_samp_order_by { + steam_id: order_by +} + +""" +Streaming cursor of the table "utility_lineup_favorites" +""" +input utility_lineup_favorites_stream_cursor_input { + """Stream column input with initial value""" + initial_value: utility_lineup_favorites_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input utility_lineup_favorites_stream_cursor_value_input { + created_at: timestamptz + steam_id: bigint + utility_lineup_id: uuid +} + +"""aggregate sum on columns""" +type utility_lineup_favorites_sum_fields { + steam_id: bigint +} + +""" +order by sum() on columns of table "utility_lineup_favorites" +""" +input utility_lineup_favorites_sum_order_by { + steam_id: order_by +} + +""" +update columns of table "utility_lineup_favorites" +""" +enum utility_lineup_favorites_update_column { + """column name""" + created_at + + """column name""" + steam_id + + """column name""" + utility_lineup_id +} + +input utility_lineup_favorites_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: utility_lineup_favorites_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_lineup_favorites_set_input + + """filter the rows which have to be updated""" + where: utility_lineup_favorites_bool_exp! +} + +"""aggregate var_pop on columns""" +type utility_lineup_favorites_var_pop_fields { + steam_id: Float +} + +""" +order by var_pop() on columns of table "utility_lineup_favorites" +""" +input utility_lineup_favorites_var_pop_order_by { + steam_id: order_by +} + +"""aggregate var_samp on columns""" +type utility_lineup_favorites_var_samp_fields { + steam_id: Float +} + +""" +order by var_samp() on columns of table "utility_lineup_favorites" +""" +input utility_lineup_favorites_var_samp_order_by { + steam_id: order_by +} + +"""aggregate variance on columns""" +type utility_lineup_favorites_variance_fields { + steam_id: Float +} + +""" +order by variance() on columns of table "utility_lineup_favorites" +""" +input utility_lineup_favorites_variance_order_by { + steam_id: order_by +} + +""" +columns and relationships of "utility_lineup_progress" +""" +type utility_lineup_progress { + attempts: Int! + best_streak: Int! + current_streak: Int! + last_practiced_at: timestamptz + mastered_at: timestamptz + miss_along_sum: float8! + miss_lateral_sum: float8! + miss_samples: Int! + miss_vertical_sum: float8! + + """An object relationship""" + player: players! + steam_id: bigint! + successes: Int! + + """An object relationship""" + utility_lineup: utility_lineups! + utility_lineup_id: uuid! +} + +""" +aggregated selection of "utility_lineup_progress" +""" +type utility_lineup_progress_aggregate { + aggregate: utility_lineup_progress_aggregate_fields + nodes: [utility_lineup_progress!]! +} + +input utility_lineup_progress_aggregate_bool_exp { + avg: utility_lineup_progress_aggregate_bool_exp_avg + corr: utility_lineup_progress_aggregate_bool_exp_corr + count: utility_lineup_progress_aggregate_bool_exp_count + covar_samp: utility_lineup_progress_aggregate_bool_exp_covar_samp + max: utility_lineup_progress_aggregate_bool_exp_max + min: utility_lineup_progress_aggregate_bool_exp_min + stddev_samp: utility_lineup_progress_aggregate_bool_exp_stddev_samp + sum: utility_lineup_progress_aggregate_bool_exp_sum + var_samp: utility_lineup_progress_aggregate_bool_exp_var_samp +} + +input utility_lineup_progress_aggregate_bool_exp_avg { + arguments: utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_avg_arguments_columns! + distinct: Boolean + filter: utility_lineup_progress_bool_exp + predicate: float8_comparison_exp! +} + +input utility_lineup_progress_aggregate_bool_exp_corr { + arguments: utility_lineup_progress_aggregate_bool_exp_corr_arguments! + distinct: Boolean + filter: utility_lineup_progress_bool_exp + predicate: float8_comparison_exp! +} + +input utility_lineup_progress_aggregate_bool_exp_corr_arguments { + X: utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_corr_arguments_columns! + Y: utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_corr_arguments_columns! +} + +input utility_lineup_progress_aggregate_bool_exp_count { + arguments: [utility_lineup_progress_select_column!] + distinct: Boolean + filter: utility_lineup_progress_bool_exp + predicate: Int_comparison_exp! +} + +input utility_lineup_progress_aggregate_bool_exp_covar_samp { + arguments: utility_lineup_progress_aggregate_bool_exp_covar_samp_arguments! + distinct: Boolean + filter: utility_lineup_progress_bool_exp + predicate: float8_comparison_exp! +} + +input utility_lineup_progress_aggregate_bool_exp_covar_samp_arguments { + X: utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_covar_samp_arguments_columns! + Y: utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_covar_samp_arguments_columns! +} + +input utility_lineup_progress_aggregate_bool_exp_max { + arguments: utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_max_arguments_columns! + distinct: Boolean + filter: utility_lineup_progress_bool_exp + predicate: float8_comparison_exp! +} + +input utility_lineup_progress_aggregate_bool_exp_min { + arguments: utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_min_arguments_columns! + distinct: Boolean + filter: utility_lineup_progress_bool_exp + predicate: float8_comparison_exp! +} + +input utility_lineup_progress_aggregate_bool_exp_stddev_samp { + arguments: utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_stddev_samp_arguments_columns! + distinct: Boolean + filter: utility_lineup_progress_bool_exp + predicate: float8_comparison_exp! +} + +input utility_lineup_progress_aggregate_bool_exp_sum { + arguments: utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_sum_arguments_columns! + distinct: Boolean + filter: utility_lineup_progress_bool_exp + predicate: float8_comparison_exp! +} + +input utility_lineup_progress_aggregate_bool_exp_var_samp { + arguments: utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_var_samp_arguments_columns! + distinct: Boolean + filter: utility_lineup_progress_bool_exp + predicate: float8_comparison_exp! +} + +""" +aggregate fields of "utility_lineup_progress" +""" +type utility_lineup_progress_aggregate_fields { + avg: utility_lineup_progress_avg_fields + count(columns: [utility_lineup_progress_select_column!], distinct: Boolean): Int! + max: utility_lineup_progress_max_fields + min: utility_lineup_progress_min_fields + stddev: utility_lineup_progress_stddev_fields + stddev_pop: utility_lineup_progress_stddev_pop_fields + stddev_samp: utility_lineup_progress_stddev_samp_fields + sum: utility_lineup_progress_sum_fields + var_pop: utility_lineup_progress_var_pop_fields + var_samp: utility_lineup_progress_var_samp_fields + variance: utility_lineup_progress_variance_fields +} + +""" +order by aggregate values of table "utility_lineup_progress" +""" +input utility_lineup_progress_aggregate_order_by { + avg: utility_lineup_progress_avg_order_by + count: order_by + max: utility_lineup_progress_max_order_by + min: utility_lineup_progress_min_order_by + stddev: utility_lineup_progress_stddev_order_by + stddev_pop: utility_lineup_progress_stddev_pop_order_by + stddev_samp: utility_lineup_progress_stddev_samp_order_by + sum: utility_lineup_progress_sum_order_by + var_pop: utility_lineup_progress_var_pop_order_by + var_samp: utility_lineup_progress_var_samp_order_by + variance: utility_lineup_progress_variance_order_by +} + +""" +input type for inserting array relation for remote table "utility_lineup_progress" +""" +input utility_lineup_progress_arr_rel_insert_input { + data: [utility_lineup_progress_insert_input!]! + + """upsert condition""" + on_conflict: utility_lineup_progress_on_conflict +} + +"""aggregate avg on columns""" +type utility_lineup_progress_avg_fields { + attempts: Float + best_streak: Float + current_streak: Float + miss_along_sum: Float + miss_lateral_sum: Float + miss_samples: Float + miss_vertical_sum: Float + steam_id: Float + successes: Float +} + +""" +order by avg() on columns of table "utility_lineup_progress" +""" +input utility_lineup_progress_avg_order_by { + attempts: order_by + best_streak: order_by + current_streak: order_by + miss_along_sum: order_by + miss_lateral_sum: order_by + miss_samples: order_by + miss_vertical_sum: order_by + steam_id: order_by + successes: order_by +} + +""" +Boolean expression to filter rows from the table "utility_lineup_progress". All fields are combined with a logical 'AND'. +""" +input utility_lineup_progress_bool_exp { + _and: [utility_lineup_progress_bool_exp!] + _not: utility_lineup_progress_bool_exp + _or: [utility_lineup_progress_bool_exp!] + attempts: Int_comparison_exp + best_streak: Int_comparison_exp + current_streak: Int_comparison_exp + last_practiced_at: timestamptz_comparison_exp + mastered_at: timestamptz_comparison_exp + miss_along_sum: float8_comparison_exp + miss_lateral_sum: float8_comparison_exp + miss_samples: Int_comparison_exp + miss_vertical_sum: float8_comparison_exp + player: players_bool_exp + steam_id: bigint_comparison_exp + successes: Int_comparison_exp + utility_lineup: utility_lineups_bool_exp + utility_lineup_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "utility_lineup_progress" +""" +enum utility_lineup_progress_constraint { + """ + unique or primary key constraint on columns "steam_id", "utility_lineup_id" + """ + utility_lineup_progress_pkey +} + +""" +input type for incrementing numeric columns in table "utility_lineup_progress" +""" +input utility_lineup_progress_inc_input { + attempts: Int + best_streak: Int + current_streak: Int + miss_along_sum: float8 + miss_lateral_sum: float8 + miss_samples: Int + miss_vertical_sum: float8 + steam_id: bigint + successes: Int +} + +""" +input type for inserting data into table "utility_lineup_progress" +""" +input utility_lineup_progress_insert_input { + attempts: Int + best_streak: Int + current_streak: Int + last_practiced_at: timestamptz + mastered_at: timestamptz + miss_along_sum: float8 + miss_lateral_sum: float8 + miss_samples: Int + miss_vertical_sum: float8 + player: players_obj_rel_insert_input + steam_id: bigint + successes: Int + utility_lineup: utility_lineups_obj_rel_insert_input + utility_lineup_id: uuid +} + +"""aggregate max on columns""" +type utility_lineup_progress_max_fields { + attempts: Int + best_streak: Int + current_streak: Int + last_practiced_at: timestamptz + mastered_at: timestamptz + miss_along_sum: float8 + miss_lateral_sum: float8 + miss_samples: Int + miss_vertical_sum: float8 + steam_id: bigint + successes: Int + utility_lineup_id: uuid +} + +""" +order by max() on columns of table "utility_lineup_progress" +""" +input utility_lineup_progress_max_order_by { + attempts: order_by + best_streak: order_by + current_streak: order_by + last_practiced_at: order_by + mastered_at: order_by + miss_along_sum: order_by + miss_lateral_sum: order_by + miss_samples: order_by + miss_vertical_sum: order_by + steam_id: order_by + successes: order_by + utility_lineup_id: order_by +} + +"""aggregate min on columns""" +type utility_lineup_progress_min_fields { + attempts: Int + best_streak: Int + current_streak: Int + last_practiced_at: timestamptz + mastered_at: timestamptz + miss_along_sum: float8 + miss_lateral_sum: float8 + miss_samples: Int + miss_vertical_sum: float8 + steam_id: bigint + successes: Int + utility_lineup_id: uuid +} + +""" +order by min() on columns of table "utility_lineup_progress" +""" +input utility_lineup_progress_min_order_by { + attempts: order_by + best_streak: order_by + current_streak: order_by + last_practiced_at: order_by + mastered_at: order_by + miss_along_sum: order_by + miss_lateral_sum: order_by + miss_samples: order_by + miss_vertical_sum: order_by + steam_id: order_by + successes: order_by + utility_lineup_id: order_by +} + +""" +response of any mutation on the table "utility_lineup_progress" +""" +type utility_lineup_progress_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [utility_lineup_progress!]! +} + +""" +on_conflict condition type for table "utility_lineup_progress" +""" +input utility_lineup_progress_on_conflict { + constraint: utility_lineup_progress_constraint! + update_columns: [utility_lineup_progress_update_column!]! = [] + where: utility_lineup_progress_bool_exp +} + +"""Ordering options when selecting data from "utility_lineup_progress".""" +input utility_lineup_progress_order_by { + attempts: order_by + best_streak: order_by + current_streak: order_by + last_practiced_at: order_by + mastered_at: order_by + miss_along_sum: order_by + miss_lateral_sum: order_by + miss_samples: order_by + miss_vertical_sum: order_by + player: players_order_by + steam_id: order_by + successes: order_by + utility_lineup: utility_lineups_order_by + utility_lineup_id: order_by +} + +"""primary key columns input for table: utility_lineup_progress""" +input utility_lineup_progress_pk_columns_input { + steam_id: bigint! + utility_lineup_id: uuid! +} + +""" +select columns of table "utility_lineup_progress" +""" +enum utility_lineup_progress_select_column { + """column name""" + attempts + + """column name""" + best_streak + + """column name""" + current_streak + + """column name""" + last_practiced_at + + """column name""" + mastered_at + + """column name""" + miss_along_sum + + """column name""" + miss_lateral_sum + + """column name""" + miss_samples + + """column name""" + miss_vertical_sum + + """column name""" + steam_id + + """column name""" + successes + + """column name""" + utility_lineup_id +} + +""" +select "utility_lineup_progress_aggregate_bool_exp_avg_arguments_columns" columns of table "utility_lineup_progress" +""" +enum utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_avg_arguments_columns { + """column name""" + miss_along_sum + + """column name""" + miss_lateral_sum + + """column name""" + miss_vertical_sum +} + +""" +select "utility_lineup_progress_aggregate_bool_exp_corr_arguments_columns" columns of table "utility_lineup_progress" +""" +enum utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_corr_arguments_columns { + """column name""" + miss_along_sum + + """column name""" + miss_lateral_sum + + """column name""" + miss_vertical_sum +} + +""" +select "utility_lineup_progress_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "utility_lineup_progress" +""" +enum utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_covar_samp_arguments_columns { + """column name""" + miss_along_sum + + """column name""" + miss_lateral_sum + + """column name""" + miss_vertical_sum +} + +""" +select "utility_lineup_progress_aggregate_bool_exp_max_arguments_columns" columns of table "utility_lineup_progress" +""" +enum utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_max_arguments_columns { + """column name""" + miss_along_sum + + """column name""" + miss_lateral_sum + + """column name""" + miss_vertical_sum +} + +""" +select "utility_lineup_progress_aggregate_bool_exp_min_arguments_columns" columns of table "utility_lineup_progress" +""" +enum utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_min_arguments_columns { + """column name""" + miss_along_sum + + """column name""" + miss_lateral_sum + + """column name""" + miss_vertical_sum +} + +""" +select "utility_lineup_progress_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "utility_lineup_progress" +""" +enum utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_stddev_samp_arguments_columns { + """column name""" + miss_along_sum + + """column name""" + miss_lateral_sum + + """column name""" + miss_vertical_sum +} + +""" +select "utility_lineup_progress_aggregate_bool_exp_sum_arguments_columns" columns of table "utility_lineup_progress" +""" +enum utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_sum_arguments_columns { + """column name""" + miss_along_sum + + """column name""" + miss_lateral_sum + + """column name""" + miss_vertical_sum +} + +""" +select "utility_lineup_progress_aggregate_bool_exp_var_samp_arguments_columns" columns of table "utility_lineup_progress" +""" +enum utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_var_samp_arguments_columns { + """column name""" + miss_along_sum + + """column name""" + miss_lateral_sum + + """column name""" + miss_vertical_sum +} + +""" +input type for updating data in table "utility_lineup_progress" +""" +input utility_lineup_progress_set_input { + attempts: Int + best_streak: Int + current_streak: Int + last_practiced_at: timestamptz + mastered_at: timestamptz + miss_along_sum: float8 + miss_lateral_sum: float8 + miss_samples: Int + miss_vertical_sum: float8 + steam_id: bigint + successes: Int + utility_lineup_id: uuid +} + +"""aggregate stddev on columns""" +type utility_lineup_progress_stddev_fields { + attempts: Float + best_streak: Float + current_streak: Float + miss_along_sum: Float + miss_lateral_sum: Float + miss_samples: Float + miss_vertical_sum: Float + steam_id: Float + successes: Float +} + +""" +order by stddev() on columns of table "utility_lineup_progress" +""" +input utility_lineup_progress_stddev_order_by { + attempts: order_by + best_streak: order_by + current_streak: order_by + miss_along_sum: order_by + miss_lateral_sum: order_by + miss_samples: order_by + miss_vertical_sum: order_by + steam_id: order_by + successes: order_by +} + +"""aggregate stddev_pop on columns""" +type utility_lineup_progress_stddev_pop_fields { + attempts: Float + best_streak: Float + current_streak: Float + miss_along_sum: Float + miss_lateral_sum: Float + miss_samples: Float + miss_vertical_sum: Float + steam_id: Float + successes: Float +} + +""" +order by stddev_pop() on columns of table "utility_lineup_progress" +""" +input utility_lineup_progress_stddev_pop_order_by { + attempts: order_by + best_streak: order_by + current_streak: order_by + miss_along_sum: order_by + miss_lateral_sum: order_by + miss_samples: order_by + miss_vertical_sum: order_by + steam_id: order_by + successes: order_by +} + +"""aggregate stddev_samp on columns""" +type utility_lineup_progress_stddev_samp_fields { + attempts: Float + best_streak: Float + current_streak: Float + miss_along_sum: Float + miss_lateral_sum: Float + miss_samples: Float + miss_vertical_sum: Float + steam_id: Float + successes: Float +} + +""" +order by stddev_samp() on columns of table "utility_lineup_progress" +""" +input utility_lineup_progress_stddev_samp_order_by { + attempts: order_by + best_streak: order_by + current_streak: order_by + miss_along_sum: order_by + miss_lateral_sum: order_by + miss_samples: order_by + miss_vertical_sum: order_by + steam_id: order_by + successes: order_by +} + +""" +Streaming cursor of the table "utility_lineup_progress" +""" +input utility_lineup_progress_stream_cursor_input { + """Stream column input with initial value""" + initial_value: utility_lineup_progress_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input utility_lineup_progress_stream_cursor_value_input { + attempts: Int + best_streak: Int + current_streak: Int + last_practiced_at: timestamptz + mastered_at: timestamptz + miss_along_sum: float8 + miss_lateral_sum: float8 + miss_samples: Int + miss_vertical_sum: float8 + steam_id: bigint + successes: Int + utility_lineup_id: uuid +} + +"""aggregate sum on columns""" +type utility_lineup_progress_sum_fields { + attempts: Int + best_streak: Int + current_streak: Int + miss_along_sum: float8 + miss_lateral_sum: float8 + miss_samples: Int + miss_vertical_sum: float8 + steam_id: bigint + successes: Int +} + +""" +order by sum() on columns of table "utility_lineup_progress" +""" +input utility_lineup_progress_sum_order_by { + attempts: order_by + best_streak: order_by + current_streak: order_by + miss_along_sum: order_by + miss_lateral_sum: order_by + miss_samples: order_by + miss_vertical_sum: order_by + steam_id: order_by + successes: order_by +} + +""" +update columns of table "utility_lineup_progress" +""" +enum utility_lineup_progress_update_column { + """column name""" + attempts + + """column name""" + best_streak + + """column name""" + current_streak + + """column name""" + last_practiced_at + + """column name""" + mastered_at + + """column name""" + miss_along_sum + + """column name""" + miss_lateral_sum + + """column name""" + miss_samples + + """column name""" + miss_vertical_sum + + """column name""" + steam_id + + """column name""" + successes + + """column name""" + utility_lineup_id +} + +input utility_lineup_progress_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: utility_lineup_progress_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_lineup_progress_set_input + + """filter the rows which have to be updated""" + where: utility_lineup_progress_bool_exp! +} + +"""aggregate var_pop on columns""" +type utility_lineup_progress_var_pop_fields { + attempts: Float + best_streak: Float + current_streak: Float + miss_along_sum: Float + miss_lateral_sum: Float + miss_samples: Float + miss_vertical_sum: Float + steam_id: Float + successes: Float +} + +""" +order by var_pop() on columns of table "utility_lineup_progress" +""" +input utility_lineup_progress_var_pop_order_by { + attempts: order_by + best_streak: order_by + current_streak: order_by + miss_along_sum: order_by + miss_lateral_sum: order_by + miss_samples: order_by + miss_vertical_sum: order_by + steam_id: order_by + successes: order_by +} + +"""aggregate var_samp on columns""" +type utility_lineup_progress_var_samp_fields { + attempts: Float + best_streak: Float + current_streak: Float + miss_along_sum: Float + miss_lateral_sum: Float + miss_samples: Float + miss_vertical_sum: Float + steam_id: Float + successes: Float +} + +""" +order by var_samp() on columns of table "utility_lineup_progress" +""" +input utility_lineup_progress_var_samp_order_by { + attempts: order_by + best_streak: order_by + current_streak: order_by + miss_along_sum: order_by + miss_lateral_sum: order_by + miss_samples: order_by + miss_vertical_sum: order_by + steam_id: order_by + successes: order_by +} + +"""aggregate variance on columns""" +type utility_lineup_progress_variance_fields { + attempts: Float + best_streak: Float + current_streak: Float + miss_along_sum: Float + miss_lateral_sum: Float + miss_samples: Float + miss_vertical_sum: Float + steam_id: Float + successes: Float +} + +""" +order by variance() on columns of table "utility_lineup_progress" +""" +input utility_lineup_progress_variance_order_by { + attempts: order_by + best_streak: order_by + current_streak: order_by + miss_along_sum: order_by + miss_lateral_sum: order_by + miss_samples: order_by + miss_vertical_sum: order_by + steam_id: order_by + successes: order_by +} + +""" +columns and relationships of "utility_lineup_renders" +""" +type utility_lineup_renders { + created_at: timestamptz! + duration_ms: Int + error_message: String + + """An object relationship""" + game_server_node: game_server_nodes + game_server_node_id: String + id: uuid! + k8s_job_name: String + last_status_at: timestamptz! + + """An object relationship""" + lineup: utility_lineups! + map_name: String! + paused: Boolean! + + """An object relationship""" + practice_session: utility_practice_sessions + progress: numeric + + """An object relationship""" + requested_by: players + requested_by_steam_id: bigint + session_token: String! + skip_reason: String + sort_index: Int! + spec( + """JSON select path""" + path: String + ): jsonb! + status: String! + status_history( + """JSON select path""" + path: String + ): jsonb! + utility_lineup_id: uuid! + utility_practice_session_id: uuid +} + +""" +aggregated selection of "utility_lineup_renders" +""" +type utility_lineup_renders_aggregate { + aggregate: utility_lineup_renders_aggregate_fields + nodes: [utility_lineup_renders!]! +} + +input utility_lineup_renders_aggregate_bool_exp { + bool_and: utility_lineup_renders_aggregate_bool_exp_bool_and + bool_or: utility_lineup_renders_aggregate_bool_exp_bool_or + count: utility_lineup_renders_aggregate_bool_exp_count +} + +input utility_lineup_renders_aggregate_bool_exp_bool_and { + arguments: utility_lineup_renders_select_column_utility_lineup_renders_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: utility_lineup_renders_bool_exp + predicate: Boolean_comparison_exp! +} + +input utility_lineup_renders_aggregate_bool_exp_bool_or { + arguments: utility_lineup_renders_select_column_utility_lineup_renders_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: utility_lineup_renders_bool_exp + predicate: Boolean_comparison_exp! +} + +input utility_lineup_renders_aggregate_bool_exp_count { + arguments: [utility_lineup_renders_select_column!] + distinct: Boolean + filter: utility_lineup_renders_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "utility_lineup_renders" +""" +type utility_lineup_renders_aggregate_fields { + avg: utility_lineup_renders_avg_fields + count(columns: [utility_lineup_renders_select_column!], distinct: Boolean): Int! + max: utility_lineup_renders_max_fields + min: utility_lineup_renders_min_fields + stddev: utility_lineup_renders_stddev_fields + stddev_pop: utility_lineup_renders_stddev_pop_fields + stddev_samp: utility_lineup_renders_stddev_samp_fields + sum: utility_lineup_renders_sum_fields + var_pop: utility_lineup_renders_var_pop_fields + var_samp: utility_lineup_renders_var_samp_fields + variance: utility_lineup_renders_variance_fields +} + +""" +order by aggregate values of table "utility_lineup_renders" +""" +input utility_lineup_renders_aggregate_order_by { + avg: utility_lineup_renders_avg_order_by + count: order_by + max: utility_lineup_renders_max_order_by + min: utility_lineup_renders_min_order_by + stddev: utility_lineup_renders_stddev_order_by + stddev_pop: utility_lineup_renders_stddev_pop_order_by + stddev_samp: utility_lineup_renders_stddev_samp_order_by + sum: utility_lineup_renders_sum_order_by + var_pop: utility_lineup_renders_var_pop_order_by + var_samp: utility_lineup_renders_var_samp_order_by + variance: utility_lineup_renders_variance_order_by +} + +"""append existing jsonb value of filtered columns with new jsonb value""" +input utility_lineup_renders_append_input { + spec: jsonb + status_history: jsonb +} + +""" +input type for inserting array relation for remote table "utility_lineup_renders" +""" +input utility_lineup_renders_arr_rel_insert_input { + data: [utility_lineup_renders_insert_input!]! + + """upsert condition""" + on_conflict: utility_lineup_renders_on_conflict +} + +"""aggregate avg on columns""" +type utility_lineup_renders_avg_fields { + duration_ms: Float + progress: Float + requested_by_steam_id: Float + sort_index: Float +} + +""" +order by avg() on columns of table "utility_lineup_renders" +""" +input utility_lineup_renders_avg_order_by { + duration_ms: order_by + progress: order_by + requested_by_steam_id: order_by + sort_index: order_by +} + +""" +Boolean expression to filter rows from the table "utility_lineup_renders". All fields are combined with a logical 'AND'. +""" +input utility_lineup_renders_bool_exp { + _and: [utility_lineup_renders_bool_exp!] + _not: utility_lineup_renders_bool_exp + _or: [utility_lineup_renders_bool_exp!] + created_at: timestamptz_comparison_exp + duration_ms: Int_comparison_exp + error_message: String_comparison_exp + game_server_node: game_server_nodes_bool_exp + game_server_node_id: String_comparison_exp + id: uuid_comparison_exp + k8s_job_name: String_comparison_exp + last_status_at: timestamptz_comparison_exp + lineup: utility_lineups_bool_exp + map_name: String_comparison_exp + paused: Boolean_comparison_exp + practice_session: utility_practice_sessions_bool_exp + progress: numeric_comparison_exp + requested_by: players_bool_exp + requested_by_steam_id: bigint_comparison_exp + session_token: String_comparison_exp + skip_reason: String_comparison_exp + sort_index: Int_comparison_exp + spec: jsonb_comparison_exp + status: String_comparison_exp + status_history: jsonb_comparison_exp + utility_lineup_id: uuid_comparison_exp + utility_practice_session_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "utility_lineup_renders" +""" +enum utility_lineup_renders_constraint { + """ + unique or primary key constraint on columns "utility_lineup_id" + """ + utility_lineup_renders_one_in_flight_idx + + """ + unique or primary key constraint on columns "id" + """ + utility_lineup_renders_pkey +} + +""" +delete the field or element with specified path (for JSON arrays, negative integers count from the end) +""" +input utility_lineup_renders_delete_at_path_input { + spec: [String!] + status_history: [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 utility_lineup_renders_delete_elem_input { + spec: Int + status_history: Int +} + +""" +delete key/value pair or string element. key/value pairs are matched based on their key value +""" +input utility_lineup_renders_delete_key_input { + spec: String + status_history: String +} + +""" +input type for incrementing numeric columns in table "utility_lineup_renders" +""" +input utility_lineup_renders_inc_input { + duration_ms: Int + progress: numeric + requested_by_steam_id: bigint + sort_index: Int +} + +""" +input type for inserting data into table "utility_lineup_renders" +""" +input utility_lineup_renders_insert_input { + created_at: timestamptz + duration_ms: Int + error_message: String + game_server_node: game_server_nodes_obj_rel_insert_input + game_server_node_id: String + id: uuid + k8s_job_name: String + last_status_at: timestamptz + lineup: utility_lineups_obj_rel_insert_input + map_name: String + paused: Boolean + practice_session: utility_practice_sessions_obj_rel_insert_input + progress: numeric + requested_by: players_obj_rel_insert_input + requested_by_steam_id: bigint + session_token: String + skip_reason: String + sort_index: Int + spec: jsonb + status: String + status_history: jsonb + utility_lineup_id: uuid + utility_practice_session_id: uuid +} + +"""aggregate max on columns""" +type utility_lineup_renders_max_fields { + created_at: timestamptz + duration_ms: Int + error_message: String + game_server_node_id: String + id: uuid + k8s_job_name: String + last_status_at: timestamptz + map_name: String + progress: numeric + requested_by_steam_id: bigint + session_token: String + skip_reason: String + sort_index: Int + status: String + utility_lineup_id: uuid + utility_practice_session_id: uuid +} + +""" +order by max() on columns of table "utility_lineup_renders" +""" +input utility_lineup_renders_max_order_by { + created_at: order_by + duration_ms: order_by + error_message: order_by + game_server_node_id: order_by + id: order_by + k8s_job_name: order_by + last_status_at: order_by + map_name: order_by + progress: order_by + requested_by_steam_id: order_by + session_token: order_by + skip_reason: order_by + sort_index: order_by + status: order_by + utility_lineup_id: order_by + utility_practice_session_id: order_by +} + +"""aggregate min on columns""" +type utility_lineup_renders_min_fields { + created_at: timestamptz + duration_ms: Int + error_message: String + game_server_node_id: String + id: uuid + k8s_job_name: String + last_status_at: timestamptz + map_name: String + progress: numeric + requested_by_steam_id: bigint + session_token: String + skip_reason: String + sort_index: Int + status: String + utility_lineup_id: uuid + utility_practice_session_id: uuid +} + +""" +order by min() on columns of table "utility_lineup_renders" +""" +input utility_lineup_renders_min_order_by { + created_at: order_by + duration_ms: order_by + error_message: order_by + game_server_node_id: order_by + id: order_by + k8s_job_name: order_by + last_status_at: order_by + map_name: order_by + progress: order_by + requested_by_steam_id: order_by + session_token: order_by + skip_reason: order_by + sort_index: order_by + status: order_by + utility_lineup_id: order_by + utility_practice_session_id: order_by +} + +""" +response of any mutation on the table "utility_lineup_renders" +""" +type utility_lineup_renders_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [utility_lineup_renders!]! +} + +""" +on_conflict condition type for table "utility_lineup_renders" +""" +input utility_lineup_renders_on_conflict { + constraint: utility_lineup_renders_constraint! + update_columns: [utility_lineup_renders_update_column!]! = [] + where: utility_lineup_renders_bool_exp +} + +"""Ordering options when selecting data from "utility_lineup_renders".""" +input utility_lineup_renders_order_by { + created_at: order_by + duration_ms: order_by + error_message: order_by + game_server_node: game_server_nodes_order_by + game_server_node_id: order_by + id: order_by + k8s_job_name: order_by + last_status_at: order_by + lineup: utility_lineups_order_by + map_name: order_by + paused: order_by + practice_session: utility_practice_sessions_order_by + progress: order_by + requested_by: players_order_by + requested_by_steam_id: order_by + session_token: order_by + skip_reason: order_by + sort_index: order_by + spec: order_by + status: order_by + status_history: order_by + utility_lineup_id: order_by + utility_practice_session_id: order_by +} + +"""primary key columns input for table: utility_lineup_renders""" +input utility_lineup_renders_pk_columns_input { + id: uuid! +} + +"""prepend existing jsonb value of filtered columns with new jsonb value""" +input utility_lineup_renders_prepend_input { + spec: jsonb + status_history: jsonb +} + +""" +select columns of table "utility_lineup_renders" +""" +enum utility_lineup_renders_select_column { + """column name""" + created_at + + """column name""" + duration_ms + + """column name""" + error_message + + """column name""" + game_server_node_id + + """column name""" + id + + """column name""" + k8s_job_name + + """column name""" + last_status_at + + """column name""" + map_name + + """column name""" + paused + + """column name""" + progress + + """column name""" + requested_by_steam_id + + """column name""" + session_token + + """column name""" + skip_reason + + """column name""" + sort_index + + """column name""" + spec + + """column name""" + status + + """column name""" + status_history + + """column name""" + utility_lineup_id + + """column name""" + utility_practice_session_id +} + +""" +select "utility_lineup_renders_aggregate_bool_exp_bool_and_arguments_columns" columns of table "utility_lineup_renders" +""" +enum utility_lineup_renders_select_column_utility_lineup_renders_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + paused +} + +""" +select "utility_lineup_renders_aggregate_bool_exp_bool_or_arguments_columns" columns of table "utility_lineup_renders" +""" +enum utility_lineup_renders_select_column_utility_lineup_renders_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + paused +} + +""" +input type for updating data in table "utility_lineup_renders" +""" +input utility_lineup_renders_set_input { + created_at: timestamptz + duration_ms: Int + error_message: String + game_server_node_id: String + id: uuid + k8s_job_name: String + last_status_at: timestamptz + map_name: String + paused: Boolean + progress: numeric + requested_by_steam_id: bigint + session_token: String + skip_reason: String + sort_index: Int + spec: jsonb + status: String + status_history: jsonb + utility_lineup_id: uuid + utility_practice_session_id: uuid +} + +"""aggregate stddev on columns""" +type utility_lineup_renders_stddev_fields { + duration_ms: Float + progress: Float + requested_by_steam_id: Float + sort_index: Float +} + +""" +order by stddev() on columns of table "utility_lineup_renders" +""" +input utility_lineup_renders_stddev_order_by { + duration_ms: order_by + progress: order_by + requested_by_steam_id: order_by + sort_index: order_by +} + +"""aggregate stddev_pop on columns""" +type utility_lineup_renders_stddev_pop_fields { + duration_ms: Float + progress: Float + requested_by_steam_id: Float + sort_index: Float +} + +""" +order by stddev_pop() on columns of table "utility_lineup_renders" +""" +input utility_lineup_renders_stddev_pop_order_by { + duration_ms: order_by + progress: order_by + requested_by_steam_id: order_by + sort_index: order_by +} + +"""aggregate stddev_samp on columns""" +type utility_lineup_renders_stddev_samp_fields { + duration_ms: Float + progress: Float + requested_by_steam_id: Float + sort_index: Float +} + +""" +order by stddev_samp() on columns of table "utility_lineup_renders" +""" +input utility_lineup_renders_stddev_samp_order_by { + duration_ms: order_by + progress: order_by + requested_by_steam_id: order_by + sort_index: order_by +} + +""" +Streaming cursor of the table "utility_lineup_renders" +""" +input utility_lineup_renders_stream_cursor_input { + """Stream column input with initial value""" + initial_value: utility_lineup_renders_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input utility_lineup_renders_stream_cursor_value_input { + created_at: timestamptz + duration_ms: Int + error_message: String + game_server_node_id: String + id: uuid + k8s_job_name: String + last_status_at: timestamptz + map_name: String + paused: Boolean + progress: numeric + requested_by_steam_id: bigint + session_token: String + skip_reason: String + sort_index: Int + spec: jsonb + status: String + status_history: jsonb + utility_lineup_id: uuid + utility_practice_session_id: uuid +} + +"""aggregate sum on columns""" +type utility_lineup_renders_sum_fields { + duration_ms: Int + progress: numeric + requested_by_steam_id: bigint + sort_index: Int +} + +""" +order by sum() on columns of table "utility_lineup_renders" +""" +input utility_lineup_renders_sum_order_by { + duration_ms: order_by + progress: order_by + requested_by_steam_id: order_by + sort_index: order_by +} + +""" +update columns of table "utility_lineup_renders" +""" +enum utility_lineup_renders_update_column { + """column name""" + created_at + + """column name""" + duration_ms + + """column name""" + error_message + + """column name""" + game_server_node_id + + """column name""" + id + + """column name""" + k8s_job_name + + """column name""" + last_status_at + + """column name""" + map_name + + """column name""" + paused + + """column name""" + progress + + """column name""" + requested_by_steam_id + + """column name""" + session_token + + """column name""" + skip_reason + + """column name""" + sort_index + + """column name""" + spec + + """column name""" + status + + """column name""" + status_history + + """column name""" + utility_lineup_id + + """column name""" + utility_practice_session_id +} + +input utility_lineup_renders_updates { + """append existing jsonb value of filtered columns with new jsonb value""" + _append: utility_lineup_renders_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: utility_lineup_renders_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: utility_lineup_renders_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: utility_lineup_renders_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: utility_lineup_renders_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: utility_lineup_renders_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_lineup_renders_set_input + + """filter the rows which have to be updated""" + where: utility_lineup_renders_bool_exp! +} + +"""aggregate var_pop on columns""" +type utility_lineup_renders_var_pop_fields { + duration_ms: Float + progress: Float + requested_by_steam_id: Float + sort_index: Float +} + +""" +order by var_pop() on columns of table "utility_lineup_renders" +""" +input utility_lineup_renders_var_pop_order_by { + duration_ms: order_by + progress: order_by + requested_by_steam_id: order_by + sort_index: order_by +} + +"""aggregate var_samp on columns""" +type utility_lineup_renders_var_samp_fields { + duration_ms: Float + progress: Float + requested_by_steam_id: Float + sort_index: Float +} + +""" +order by var_samp() on columns of table "utility_lineup_renders" +""" +input utility_lineup_renders_var_samp_order_by { + duration_ms: order_by + progress: order_by + requested_by_steam_id: order_by + sort_index: order_by +} + +"""aggregate variance on columns""" +type utility_lineup_renders_variance_fields { + duration_ms: Float + progress: Float + requested_by_steam_id: Float + sort_index: Float +} + +""" +order by variance() on columns of table "utility_lineup_renders" +""" +input utility_lineup_renders_variance_order_by { + duration_ms: order_by + progress: order_by + requested_by_steam_id: order_by + sort_index: order_by +} + +""" +columns and relationships of "utility_lineup_repairs" +""" +type utility_lineup_repairs { + created_at: timestamptz! + drift_distance: float8 + expires_at: timestamptz! + id: uuid! + repaired_at: timestamptz + + """An object relationship""" + repaired_utility_lineup: utility_lineups + repaired_utility_lineup_id: uuid + + """An object relationship""" + requested_by: players! + requested_by_steam_id: bigint! + status: String! + + """An object relationship""" + utility_drift_scan: utility_drift_scans + utility_drift_scan_id: uuid + + """An object relationship""" + utility_lineup: utility_lineups! + utility_lineup_id: uuid! + + """An object relationship""" + utility_practice_session: utility_practice_sessions + utility_practice_session_id: uuid +} + +""" +aggregated selection of "utility_lineup_repairs" +""" +type utility_lineup_repairs_aggregate { + aggregate: utility_lineup_repairs_aggregate_fields + nodes: [utility_lineup_repairs!]! +} + +input utility_lineup_repairs_aggregate_bool_exp { + avg: utility_lineup_repairs_aggregate_bool_exp_avg + corr: utility_lineup_repairs_aggregate_bool_exp_corr + count: utility_lineup_repairs_aggregate_bool_exp_count + covar_samp: utility_lineup_repairs_aggregate_bool_exp_covar_samp + max: utility_lineup_repairs_aggregate_bool_exp_max + min: utility_lineup_repairs_aggregate_bool_exp_min + stddev_samp: utility_lineup_repairs_aggregate_bool_exp_stddev_samp + sum: utility_lineup_repairs_aggregate_bool_exp_sum + var_samp: utility_lineup_repairs_aggregate_bool_exp_var_samp +} + +input utility_lineup_repairs_aggregate_bool_exp_avg { + arguments: utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_avg_arguments_columns! + distinct: Boolean + filter: utility_lineup_repairs_bool_exp + predicate: float8_comparison_exp! +} + +input utility_lineup_repairs_aggregate_bool_exp_corr { + arguments: utility_lineup_repairs_aggregate_bool_exp_corr_arguments! + distinct: Boolean + filter: utility_lineup_repairs_bool_exp + predicate: float8_comparison_exp! +} + +input utility_lineup_repairs_aggregate_bool_exp_corr_arguments { + X: utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_corr_arguments_columns! + Y: utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_corr_arguments_columns! +} + +input utility_lineup_repairs_aggregate_bool_exp_count { + arguments: [utility_lineup_repairs_select_column!] + distinct: Boolean + filter: utility_lineup_repairs_bool_exp + predicate: Int_comparison_exp! +} + +input utility_lineup_repairs_aggregate_bool_exp_covar_samp { + arguments: utility_lineup_repairs_aggregate_bool_exp_covar_samp_arguments! + distinct: Boolean + filter: utility_lineup_repairs_bool_exp + predicate: float8_comparison_exp! +} + +input utility_lineup_repairs_aggregate_bool_exp_covar_samp_arguments { + X: utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_covar_samp_arguments_columns! + Y: utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_covar_samp_arguments_columns! +} + +input utility_lineup_repairs_aggregate_bool_exp_max { + arguments: utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_max_arguments_columns! + distinct: Boolean + filter: utility_lineup_repairs_bool_exp + predicate: float8_comparison_exp! +} + +input utility_lineup_repairs_aggregate_bool_exp_min { + arguments: utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_min_arguments_columns! + distinct: Boolean + filter: utility_lineup_repairs_bool_exp + predicate: float8_comparison_exp! +} + +input utility_lineup_repairs_aggregate_bool_exp_stddev_samp { + arguments: utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_stddev_samp_arguments_columns! + distinct: Boolean + filter: utility_lineup_repairs_bool_exp + predicate: float8_comparison_exp! +} + +input utility_lineup_repairs_aggregate_bool_exp_sum { + arguments: utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_sum_arguments_columns! + distinct: Boolean + filter: utility_lineup_repairs_bool_exp + predicate: float8_comparison_exp! +} + +input utility_lineup_repairs_aggregate_bool_exp_var_samp { + arguments: utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_var_samp_arguments_columns! + distinct: Boolean + filter: utility_lineup_repairs_bool_exp + predicate: float8_comparison_exp! +} + +""" +aggregate fields of "utility_lineup_repairs" +""" +type utility_lineup_repairs_aggregate_fields { + avg: utility_lineup_repairs_avg_fields + count(columns: [utility_lineup_repairs_select_column!], distinct: Boolean): Int! + max: utility_lineup_repairs_max_fields + min: utility_lineup_repairs_min_fields + stddev: utility_lineup_repairs_stddev_fields + stddev_pop: utility_lineup_repairs_stddev_pop_fields + stddev_samp: utility_lineup_repairs_stddev_samp_fields + sum: utility_lineup_repairs_sum_fields + var_pop: utility_lineup_repairs_var_pop_fields + var_samp: utility_lineup_repairs_var_samp_fields + variance: utility_lineup_repairs_variance_fields +} + +""" +order by aggregate values of table "utility_lineup_repairs" +""" +input utility_lineup_repairs_aggregate_order_by { + avg: utility_lineup_repairs_avg_order_by + count: order_by + max: utility_lineup_repairs_max_order_by + min: utility_lineup_repairs_min_order_by + stddev: utility_lineup_repairs_stddev_order_by + stddev_pop: utility_lineup_repairs_stddev_pop_order_by + stddev_samp: utility_lineup_repairs_stddev_samp_order_by + sum: utility_lineup_repairs_sum_order_by + var_pop: utility_lineup_repairs_var_pop_order_by + var_samp: utility_lineup_repairs_var_samp_order_by + variance: utility_lineup_repairs_variance_order_by +} + +""" +input type for inserting array relation for remote table "utility_lineup_repairs" +""" +input utility_lineup_repairs_arr_rel_insert_input { + data: [utility_lineup_repairs_insert_input!]! + + """upsert condition""" + on_conflict: utility_lineup_repairs_on_conflict +} + +"""aggregate avg on columns""" +type utility_lineup_repairs_avg_fields { + drift_distance: Float + requested_by_steam_id: Float +} + +""" +order by avg() on columns of table "utility_lineup_repairs" +""" +input utility_lineup_repairs_avg_order_by { + drift_distance: order_by + requested_by_steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "utility_lineup_repairs". All fields are combined with a logical 'AND'. +""" +input utility_lineup_repairs_bool_exp { + _and: [utility_lineup_repairs_bool_exp!] + _not: utility_lineup_repairs_bool_exp + _or: [utility_lineup_repairs_bool_exp!] + created_at: timestamptz_comparison_exp + drift_distance: float8_comparison_exp + expires_at: timestamptz_comparison_exp + id: uuid_comparison_exp + repaired_at: timestamptz_comparison_exp + repaired_utility_lineup: utility_lineups_bool_exp + repaired_utility_lineup_id: uuid_comparison_exp + requested_by: players_bool_exp + requested_by_steam_id: bigint_comparison_exp + status: String_comparison_exp + utility_drift_scan: utility_drift_scans_bool_exp + utility_drift_scan_id: uuid_comparison_exp + utility_lineup: utility_lineups_bool_exp + utility_lineup_id: uuid_comparison_exp + utility_practice_session: utility_practice_sessions_bool_exp + utility_practice_session_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "utility_lineup_repairs" +""" +enum utility_lineup_repairs_constraint { + """ + unique or primary key constraint on columns "utility_lineup_id", "requested_by_steam_id" + """ + utility_lineup_repairs_open_idx + + """ + unique or primary key constraint on columns "id" + """ + utility_lineup_repairs_pkey +} + +""" +input type for incrementing numeric columns in table "utility_lineup_repairs" +""" +input utility_lineup_repairs_inc_input { + drift_distance: float8 + requested_by_steam_id: bigint +} + +""" +input type for inserting data into table "utility_lineup_repairs" +""" +input utility_lineup_repairs_insert_input { + created_at: timestamptz + drift_distance: float8 + expires_at: timestamptz + id: uuid + repaired_at: timestamptz + repaired_utility_lineup: utility_lineups_obj_rel_insert_input + repaired_utility_lineup_id: uuid + requested_by: players_obj_rel_insert_input + requested_by_steam_id: bigint + status: String + utility_drift_scan: utility_drift_scans_obj_rel_insert_input + utility_drift_scan_id: uuid + utility_lineup: utility_lineups_obj_rel_insert_input + utility_lineup_id: uuid + utility_practice_session: utility_practice_sessions_obj_rel_insert_input + utility_practice_session_id: uuid +} + +"""aggregate max on columns""" +type utility_lineup_repairs_max_fields { + created_at: timestamptz + drift_distance: float8 + expires_at: timestamptz + id: uuid + repaired_at: timestamptz + repaired_utility_lineup_id: uuid + requested_by_steam_id: bigint + status: String + utility_drift_scan_id: uuid + utility_lineup_id: uuid + utility_practice_session_id: uuid +} + +""" +order by max() on columns of table "utility_lineup_repairs" +""" +input utility_lineup_repairs_max_order_by { + created_at: order_by + drift_distance: order_by + expires_at: order_by + id: order_by + repaired_at: order_by + repaired_utility_lineup_id: order_by + requested_by_steam_id: order_by + status: order_by + utility_drift_scan_id: order_by + utility_lineup_id: order_by + utility_practice_session_id: order_by +} + +"""aggregate min on columns""" +type utility_lineup_repairs_min_fields { + created_at: timestamptz + drift_distance: float8 + expires_at: timestamptz + id: uuid + repaired_at: timestamptz + repaired_utility_lineup_id: uuid + requested_by_steam_id: bigint + status: String + utility_drift_scan_id: uuid + utility_lineup_id: uuid + utility_practice_session_id: uuid +} + +""" +order by min() on columns of table "utility_lineup_repairs" +""" +input utility_lineup_repairs_min_order_by { + created_at: order_by + drift_distance: order_by + expires_at: order_by + id: order_by + repaired_at: order_by + repaired_utility_lineup_id: order_by + requested_by_steam_id: order_by + status: order_by + utility_drift_scan_id: order_by + utility_lineup_id: order_by + utility_practice_session_id: order_by +} + +""" +response of any mutation on the table "utility_lineup_repairs" +""" +type utility_lineup_repairs_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [utility_lineup_repairs!]! +} + +""" +on_conflict condition type for table "utility_lineup_repairs" +""" +input utility_lineup_repairs_on_conflict { + constraint: utility_lineup_repairs_constraint! + update_columns: [utility_lineup_repairs_update_column!]! = [] + where: utility_lineup_repairs_bool_exp +} + +"""Ordering options when selecting data from "utility_lineup_repairs".""" +input utility_lineup_repairs_order_by { + created_at: order_by + drift_distance: order_by + expires_at: order_by + id: order_by + repaired_at: order_by + repaired_utility_lineup: utility_lineups_order_by + repaired_utility_lineup_id: order_by + requested_by: players_order_by + requested_by_steam_id: order_by + status: order_by + utility_drift_scan: utility_drift_scans_order_by + utility_drift_scan_id: order_by + utility_lineup: utility_lineups_order_by + utility_lineup_id: order_by + utility_practice_session: utility_practice_sessions_order_by + utility_practice_session_id: order_by +} + +"""primary key columns input for table: utility_lineup_repairs""" +input utility_lineup_repairs_pk_columns_input { + id: uuid! +} + +""" +select columns of table "utility_lineup_repairs" +""" +enum utility_lineup_repairs_select_column { + """column name""" + created_at + + """column name""" + drift_distance + + """column name""" + expires_at + + """column name""" + id + + """column name""" + repaired_at + + """column name""" + repaired_utility_lineup_id + + """column name""" + requested_by_steam_id + + """column name""" + status + + """column name""" + utility_drift_scan_id + + """column name""" + utility_lineup_id + + """column name""" + utility_practice_session_id +} + +""" +select "utility_lineup_repairs_aggregate_bool_exp_avg_arguments_columns" columns of table "utility_lineup_repairs" +""" +enum utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_avg_arguments_columns { + """column name""" + drift_distance +} + +""" +select "utility_lineup_repairs_aggregate_bool_exp_corr_arguments_columns" columns of table "utility_lineup_repairs" +""" +enum utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_corr_arguments_columns { + """column name""" + drift_distance +} + +""" +select "utility_lineup_repairs_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "utility_lineup_repairs" +""" +enum utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_covar_samp_arguments_columns { + """column name""" + drift_distance +} + +""" +select "utility_lineup_repairs_aggregate_bool_exp_max_arguments_columns" columns of table "utility_lineup_repairs" +""" +enum utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_max_arguments_columns { + """column name""" + drift_distance +} + +""" +select "utility_lineup_repairs_aggregate_bool_exp_min_arguments_columns" columns of table "utility_lineup_repairs" +""" +enum utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_min_arguments_columns { + """column name""" + drift_distance +} + +""" +select "utility_lineup_repairs_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "utility_lineup_repairs" +""" +enum utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_stddev_samp_arguments_columns { + """column name""" + drift_distance +} + +""" +select "utility_lineup_repairs_aggregate_bool_exp_sum_arguments_columns" columns of table "utility_lineup_repairs" +""" +enum utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_sum_arguments_columns { + """column name""" + drift_distance +} + +""" +select "utility_lineup_repairs_aggregate_bool_exp_var_samp_arguments_columns" columns of table "utility_lineup_repairs" +""" +enum utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_var_samp_arguments_columns { + """column name""" + drift_distance +} + +""" +input type for updating data in table "utility_lineup_repairs" +""" +input utility_lineup_repairs_set_input { + created_at: timestamptz + drift_distance: float8 + expires_at: timestamptz + id: uuid + repaired_at: timestamptz + repaired_utility_lineup_id: uuid + requested_by_steam_id: bigint + status: String + utility_drift_scan_id: uuid + utility_lineup_id: uuid + utility_practice_session_id: uuid +} + +"""aggregate stddev on columns""" +type utility_lineup_repairs_stddev_fields { + drift_distance: Float + requested_by_steam_id: Float +} + +""" +order by stddev() on columns of table "utility_lineup_repairs" +""" +input utility_lineup_repairs_stddev_order_by { + drift_distance: order_by + requested_by_steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type utility_lineup_repairs_stddev_pop_fields { + drift_distance: Float + requested_by_steam_id: Float +} + +""" +order by stddev_pop() on columns of table "utility_lineup_repairs" +""" +input utility_lineup_repairs_stddev_pop_order_by { + drift_distance: order_by + requested_by_steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type utility_lineup_repairs_stddev_samp_fields { + drift_distance: Float + requested_by_steam_id: Float +} + +""" +order by stddev_samp() on columns of table "utility_lineup_repairs" +""" +input utility_lineup_repairs_stddev_samp_order_by { + drift_distance: order_by + requested_by_steam_id: order_by +} + +""" +Streaming cursor of the table "utility_lineup_repairs" +""" +input utility_lineup_repairs_stream_cursor_input { + """Stream column input with initial value""" + initial_value: utility_lineup_repairs_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input utility_lineup_repairs_stream_cursor_value_input { + created_at: timestamptz + drift_distance: float8 + expires_at: timestamptz + id: uuid + repaired_at: timestamptz + repaired_utility_lineup_id: uuid + requested_by_steam_id: bigint + status: String + utility_drift_scan_id: uuid + utility_lineup_id: uuid + utility_practice_session_id: uuid +} + +"""aggregate sum on columns""" +type utility_lineup_repairs_sum_fields { + drift_distance: float8 + requested_by_steam_id: bigint +} + +""" +order by sum() on columns of table "utility_lineup_repairs" +""" +input utility_lineup_repairs_sum_order_by { + drift_distance: order_by + requested_by_steam_id: order_by +} + +""" +update columns of table "utility_lineup_repairs" +""" +enum utility_lineup_repairs_update_column { + """column name""" + created_at + + """column name""" + drift_distance + + """column name""" + expires_at + + """column name""" + id + + """column name""" + repaired_at + + """column name""" + repaired_utility_lineup_id + + """column name""" + requested_by_steam_id + + """column name""" + status + + """column name""" + utility_drift_scan_id + + """column name""" + utility_lineup_id + + """column name""" + utility_practice_session_id +} + +input utility_lineup_repairs_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: utility_lineup_repairs_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_lineup_repairs_set_input + + """filter the rows which have to be updated""" + where: utility_lineup_repairs_bool_exp! +} + +"""aggregate var_pop on columns""" +type utility_lineup_repairs_var_pop_fields { + drift_distance: Float + requested_by_steam_id: Float +} + +""" +order by var_pop() on columns of table "utility_lineup_repairs" +""" +input utility_lineup_repairs_var_pop_order_by { + drift_distance: order_by + requested_by_steam_id: order_by +} + +"""aggregate var_samp on columns""" +type utility_lineup_repairs_var_samp_fields { + drift_distance: Float + requested_by_steam_id: Float +} + +""" +order by var_samp() on columns of table "utility_lineup_repairs" +""" +input utility_lineup_repairs_var_samp_order_by { + drift_distance: order_by + requested_by_steam_id: order_by +} + +"""aggregate variance on columns""" +type utility_lineup_repairs_variance_fields { + drift_distance: Float + requested_by_steam_id: Float +} + +""" +order by variance() on columns of table "utility_lineup_repairs" +""" +input utility_lineup_repairs_variance_order_by { + drift_distance: order_by + requested_by_steam_id: order_by +} + +""" +columns and relationships of "utility_lineup_votes" +""" +type utility_lineup_votes { + created_at: timestamptz! + + """An object relationship""" + player: players! + steam_id: bigint! + + """An object relationship""" + utility_lineup: utility_lineups! + utility_lineup_id: uuid! + vote: smallint! +} + +""" +aggregated selection of "utility_lineup_votes" +""" +type utility_lineup_votes_aggregate { + aggregate: utility_lineup_votes_aggregate_fields + nodes: [utility_lineup_votes!]! +} + +input utility_lineup_votes_aggregate_bool_exp { + count: utility_lineup_votes_aggregate_bool_exp_count +} + +input utility_lineup_votes_aggregate_bool_exp_count { + arguments: [utility_lineup_votes_select_column!] + distinct: Boolean + filter: utility_lineup_votes_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "utility_lineup_votes" +""" +type utility_lineup_votes_aggregate_fields { + avg: utility_lineup_votes_avg_fields + count(columns: [utility_lineup_votes_select_column!], distinct: Boolean): Int! + max: utility_lineup_votes_max_fields + min: utility_lineup_votes_min_fields + stddev: utility_lineup_votes_stddev_fields + stddev_pop: utility_lineup_votes_stddev_pop_fields + stddev_samp: utility_lineup_votes_stddev_samp_fields + sum: utility_lineup_votes_sum_fields + var_pop: utility_lineup_votes_var_pop_fields + var_samp: utility_lineup_votes_var_samp_fields + variance: utility_lineup_votes_variance_fields +} + +""" +order by aggregate values of table "utility_lineup_votes" +""" +input utility_lineup_votes_aggregate_order_by { + avg: utility_lineup_votes_avg_order_by + count: order_by + max: utility_lineup_votes_max_order_by + min: utility_lineup_votes_min_order_by + stddev: utility_lineup_votes_stddev_order_by + stddev_pop: utility_lineup_votes_stddev_pop_order_by + stddev_samp: utility_lineup_votes_stddev_samp_order_by + sum: utility_lineup_votes_sum_order_by + var_pop: utility_lineup_votes_var_pop_order_by + var_samp: utility_lineup_votes_var_samp_order_by + variance: utility_lineup_votes_variance_order_by +} + +""" +input type for inserting array relation for remote table "utility_lineup_votes" +""" +input utility_lineup_votes_arr_rel_insert_input { + data: [utility_lineup_votes_insert_input!]! + + """upsert condition""" + on_conflict: utility_lineup_votes_on_conflict +} + +"""aggregate avg on columns""" +type utility_lineup_votes_avg_fields { + steam_id: Float + vote: Float +} + +""" +order by avg() on columns of table "utility_lineup_votes" +""" +input utility_lineup_votes_avg_order_by { + steam_id: order_by + vote: order_by +} + +""" +Boolean expression to filter rows from the table "utility_lineup_votes". All fields are combined with a logical 'AND'. +""" +input utility_lineup_votes_bool_exp { + _and: [utility_lineup_votes_bool_exp!] + _not: utility_lineup_votes_bool_exp + _or: [utility_lineup_votes_bool_exp!] + created_at: timestamptz_comparison_exp + player: players_bool_exp + steam_id: bigint_comparison_exp + utility_lineup: utility_lineups_bool_exp + utility_lineup_id: uuid_comparison_exp + vote: smallint_comparison_exp +} + +""" +unique or primary key constraints on table "utility_lineup_votes" +""" +enum utility_lineup_votes_constraint { + """ + unique or primary key constraint on columns "steam_id", "utility_lineup_id" + """ + utility_lineup_votes_pkey +} + +""" +input type for incrementing numeric columns in table "utility_lineup_votes" +""" +input utility_lineup_votes_inc_input { + steam_id: bigint + vote: smallint +} + +""" +input type for inserting data into table "utility_lineup_votes" +""" +input utility_lineup_votes_insert_input { + created_at: timestamptz + player: players_obj_rel_insert_input + steam_id: bigint + utility_lineup: utility_lineups_obj_rel_insert_input + utility_lineup_id: uuid + vote: smallint +} + +"""aggregate max on columns""" +type utility_lineup_votes_max_fields { + created_at: timestamptz + steam_id: bigint + utility_lineup_id: uuid + vote: smallint +} + +""" +order by max() on columns of table "utility_lineup_votes" +""" +input utility_lineup_votes_max_order_by { + created_at: order_by + steam_id: order_by + utility_lineup_id: order_by + vote: order_by +} + +"""aggregate min on columns""" +type utility_lineup_votes_min_fields { + created_at: timestamptz + steam_id: bigint + utility_lineup_id: uuid + vote: smallint +} + +""" +order by min() on columns of table "utility_lineup_votes" +""" +input utility_lineup_votes_min_order_by { + created_at: order_by + steam_id: order_by + utility_lineup_id: order_by + vote: order_by +} + +""" +response of any mutation on the table "utility_lineup_votes" +""" +type utility_lineup_votes_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [utility_lineup_votes!]! +} + +""" +on_conflict condition type for table "utility_lineup_votes" +""" +input utility_lineup_votes_on_conflict { + constraint: utility_lineup_votes_constraint! + update_columns: [utility_lineup_votes_update_column!]! = [] + where: utility_lineup_votes_bool_exp +} + +"""Ordering options when selecting data from "utility_lineup_votes".""" +input utility_lineup_votes_order_by { + created_at: order_by + player: players_order_by + steam_id: order_by + utility_lineup: utility_lineups_order_by + utility_lineup_id: order_by + vote: order_by +} + +"""primary key columns input for table: utility_lineup_votes""" +input utility_lineup_votes_pk_columns_input { + steam_id: bigint! + utility_lineup_id: uuid! +} + +""" +select columns of table "utility_lineup_votes" +""" +enum utility_lineup_votes_select_column { + """column name""" + created_at + + """column name""" + steam_id + + """column name""" + utility_lineup_id + + """column name""" + vote +} + +""" +input type for updating data in table "utility_lineup_votes" +""" +input utility_lineup_votes_set_input { + created_at: timestamptz + steam_id: bigint + utility_lineup_id: uuid + vote: smallint +} + +"""aggregate stddev on columns""" +type utility_lineup_votes_stddev_fields { + steam_id: Float + vote: Float +} + +""" +order by stddev() on columns of table "utility_lineup_votes" +""" +input utility_lineup_votes_stddev_order_by { + steam_id: order_by + vote: order_by +} + +"""aggregate stddev_pop on columns""" +type utility_lineup_votes_stddev_pop_fields { + steam_id: Float + vote: Float +} + +""" +order by stddev_pop() on columns of table "utility_lineup_votes" +""" +input utility_lineup_votes_stddev_pop_order_by { + steam_id: order_by + vote: order_by +} + +"""aggregate stddev_samp on columns""" +type utility_lineup_votes_stddev_samp_fields { + steam_id: Float + vote: Float +} + +""" +order by stddev_samp() on columns of table "utility_lineup_votes" +""" +input utility_lineup_votes_stddev_samp_order_by { + steam_id: order_by + vote: order_by +} + +""" +Streaming cursor of the table "utility_lineup_votes" +""" +input utility_lineup_votes_stream_cursor_input { + """Stream column input with initial value""" + initial_value: utility_lineup_votes_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input utility_lineup_votes_stream_cursor_value_input { + created_at: timestamptz + steam_id: bigint + utility_lineup_id: uuid + vote: smallint +} + +"""aggregate sum on columns""" +type utility_lineup_votes_sum_fields { + steam_id: bigint + vote: smallint +} + +""" +order by sum() on columns of table "utility_lineup_votes" +""" +input utility_lineup_votes_sum_order_by { + steam_id: order_by + vote: order_by +} + +""" +update columns of table "utility_lineup_votes" +""" +enum utility_lineup_votes_update_column { + """column name""" + created_at + + """column name""" + steam_id + + """column name""" + utility_lineup_id + + """column name""" + vote +} + +input utility_lineup_votes_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: utility_lineup_votes_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_lineup_votes_set_input + + """filter the rows which have to be updated""" + where: utility_lineup_votes_bool_exp! +} + +"""aggregate var_pop on columns""" +type utility_lineup_votes_var_pop_fields { + steam_id: Float + vote: Float +} + +""" +order by var_pop() on columns of table "utility_lineup_votes" +""" +input utility_lineup_votes_var_pop_order_by { + steam_id: order_by + vote: order_by +} + +"""aggregate var_samp on columns""" +type utility_lineup_votes_var_samp_fields { + steam_id: Float + vote: Float +} + +""" +order by var_samp() on columns of table "utility_lineup_votes" +""" +input utility_lineup_votes_var_samp_order_by { + steam_id: order_by + vote: order_by +} + +"""aggregate variance on columns""" +type utility_lineup_votes_variance_fields { + steam_id: Float + vote: Float +} + +""" +order by variance() on columns of table "utility_lineup_votes" +""" +input utility_lineup_votes_variance_order_by { + steam_id: order_by + vote: order_by +} + +""" +columns and relationships of "utility_lineups" +""" +type utility_lineups { + aim_tolerance: float8! + archived_at: timestamptz + + """An object relationship""" + author: players! + author_steam_id: bigint! + + """ + A computed field, executes function "can_edit_utility_lineup" + """ + can_edit: Boolean + + """ + A computed field, executes function "can_view_utility_lineup" + """ + can_view: Boolean + + """An array relationship""" + collection_items( + """distinct select on columns""" + distinct_on: [utility_collection_items_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: [utility_collection_items_order_by!] + + """filter the rows returned""" + where: utility_collection_items_bool_exp + ): [utility_collection_items!]! + + """An aggregate relationship""" + collection_items_aggregate( + """distinct select on columns""" + distinct_on: [utility_collection_items_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: [utility_collection_items_order_by!] + + """filter the rows returned""" + where: utility_collection_items_bool_exp + ): utility_collection_items_aggregate! + confidence: String! + created_at: timestamptz! + description: String + + """ + A computed field, executes function "utility_lineup_difficulty" + """ + difficulty: String + downvotes: Int! + external_id: String + eye_z: float8 + + """An array relationship""" + favorited_by( + """distinct select on columns""" + distinct_on: [utility_lineup_favorites_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: [utility_lineup_favorites_order_by!] + + """filter the rows returned""" + where: utility_lineup_favorites_bool_exp + ): [utility_lineup_favorites!]! + + """An aggregate relationship""" + favorited_by_aggregate( + """distinct select on columns""" + distinct_on: [utility_lineup_favorites_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: [utility_lineup_favorites_order_by!] + + """filter the rows returned""" + where: utility_lineup_favorites_bool_exp + ): utility_lineup_favorites_aggregate! + favorites: Int! + flight_time_ms: Int + + """An object relationship""" + forked_from: utility_lineups + forked_from_utility_lineup_id: uuid + id: uuid! + initial_pos_x: float8 + initial_pos_y: float8 + initial_pos_z: float8 + initial_vel_x: float8 + initial_vel_y: float8 + initial_vel_z: float8 + + """ + A computed field, executes function "utility_lineup_is_favorited" + """ + is_favorited: Boolean + jump_throw_bind: Boolean! + land_x: float8! + land_y: float8! + land_z: float8! + lineup_bucket: String + map_name: String! + + """ + A computed field, executes function "utility_lineup_my_vote" + """ + my_vote: smallint + name: String! + origin_source: e_utility_sources_enum! + origin_x: float8! + origin_y: float8! + origin_z: float8! + practice_attempts: Int! + practice_players: Int! + practice_successes: Int! + preview_duration_ms: Int + preview_file: String + preview_rendered_at: timestamptz + preview_thumbnail: String + + """ + A computed field, executes function "utility_lineup_preview_thumbnail_url" + """ + preview_thumbnail_url: String + + """ + A computed field, executes function "utility_lineup_preview_url" + """ + preview_url: String + + """An array relationship""" + progress( + """distinct select on columns""" + distinct_on: [utility_lineup_progress_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: [utility_lineup_progress_order_by!] + + """filter the rows returned""" + where: utility_lineup_progress_bool_exp + ): [utility_lineup_progress!]! + + """An aggregate relationship""" + progress_aggregate( + """distinct select on columns""" + distinct_on: [utility_lineup_progress_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: [utility_lineup_progress_order_by!] + + """filter the rows returned""" + where: utility_lineup_progress_bool_exp + ): utility_lineup_progress_aggregate! + public_requested_at: timestamptz + public_review_note: String + public_reviewed_at: timestamptz + public_reviewed_by: bigint + + """An array relationship""" + renders( + """distinct select on columns""" + distinct_on: [utility_lineup_renders_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: [utility_lineup_renders_order_by!] + + """filter the rows returned""" + where: utility_lineup_renders_bool_exp + ): [utility_lineup_renders!]! + + """An aggregate relationship""" + renders_aggregate( + """distinct select on columns""" + distinct_on: [utility_lineup_renders_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: [utility_lineup_renders_order_by!] + + """filter the rows returned""" + where: utility_lineup_renders_bool_exp + ): utility_lineup_renders_aggregate! + + """An array relationship""" + repairs( + """distinct select on columns""" + distinct_on: [utility_lineup_repairs_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: [utility_lineup_repairs_order_by!] + + """filter the rows returned""" + where: utility_lineup_repairs_bool_exp + ): [utility_lineup_repairs!]! + + """An aggregate relationship""" + repairs_aggregate( + """distinct select on columns""" + distinct_on: [utility_lineup_repairs_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: [utility_lineup_repairs_order_by!] + + """filter the rows returned""" + where: utility_lineup_repairs_bool_exp + ): utility_lineup_repairs_aggregate! + side: e_sides_enum! + source_grenade_id: Int + + """An object relationship""" + source_match: matches + source_match_id: uuid + + """An object relationship""" + source_match_map: match_maps + source_match_map_id: uuid + source_url: String + tags: [String!]! + + """An object relationship""" + team: teams + team_id: uuid + technique: e_utility_techniques_enum! + throw_strength: e_utility_throw_strengths_enum + trajectory_file: String + trajectory_preview( + """JSON select path""" + path: String + ): jsonb + trajectory_size: Int + updated_at: timestamptz! + upvotes: Int! + utility_type: e_utility_types_enum! + verified_at: timestamptz + view_pitch: float8! + view_pitch_delta: float8 + view_yaw: float8! + view_yaw_delta: float8 + visibility: e_utility_visibility_enum! + + """An array relationship""" + votes( + """distinct select on columns""" + distinct_on: [utility_lineup_votes_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: [utility_lineup_votes_order_by!] + + """filter the rows returned""" + where: utility_lineup_votes_bool_exp + ): [utility_lineup_votes!]! + + """An aggregate relationship""" + votes_aggregate( + """distinct select on columns""" + distinct_on: [utility_lineup_votes_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: [utility_lineup_votes_order_by!] + + """filter the rows returned""" + where: utility_lineup_votes_bool_exp + ): utility_lineup_votes_aggregate! + workshop_map_id: String +} + +""" +aggregated selection of "utility_lineups" +""" +type utility_lineups_aggregate { + aggregate: utility_lineups_aggregate_fields + nodes: [utility_lineups!]! +} + +input utility_lineups_aggregate_bool_exp { + avg: utility_lineups_aggregate_bool_exp_avg + bool_and: utility_lineups_aggregate_bool_exp_bool_and + bool_or: utility_lineups_aggregate_bool_exp_bool_or + corr: utility_lineups_aggregate_bool_exp_corr + count: utility_lineups_aggregate_bool_exp_count + covar_samp: utility_lineups_aggregate_bool_exp_covar_samp + max: utility_lineups_aggregate_bool_exp_max + min: utility_lineups_aggregate_bool_exp_min + stddev_samp: utility_lineups_aggregate_bool_exp_stddev_samp + sum: utility_lineups_aggregate_bool_exp_sum + var_samp: utility_lineups_aggregate_bool_exp_var_samp +} + +input utility_lineups_aggregate_bool_exp_avg { + arguments: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_avg_arguments_columns! + distinct: Boolean + filter: utility_lineups_bool_exp + predicate: float8_comparison_exp! +} + +input utility_lineups_aggregate_bool_exp_bool_and { + arguments: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: utility_lineups_bool_exp + predicate: Boolean_comparison_exp! +} + +input utility_lineups_aggregate_bool_exp_bool_or { + arguments: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: utility_lineups_bool_exp + predicate: Boolean_comparison_exp! +} + +input utility_lineups_aggregate_bool_exp_corr { + arguments: utility_lineups_aggregate_bool_exp_corr_arguments! + distinct: Boolean + filter: utility_lineups_bool_exp + predicate: float8_comparison_exp! +} + +input utility_lineups_aggregate_bool_exp_corr_arguments { + X: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_corr_arguments_columns! + Y: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_corr_arguments_columns! +} + +input utility_lineups_aggregate_bool_exp_count { + arguments: [utility_lineups_select_column!] + distinct: Boolean + filter: utility_lineups_bool_exp + predicate: Int_comparison_exp! +} + +input utility_lineups_aggregate_bool_exp_covar_samp { + arguments: utility_lineups_aggregate_bool_exp_covar_samp_arguments! + distinct: Boolean + filter: utility_lineups_bool_exp + predicate: float8_comparison_exp! +} + +input utility_lineups_aggregate_bool_exp_covar_samp_arguments { + X: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_covar_samp_arguments_columns! + Y: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_covar_samp_arguments_columns! +} + +input utility_lineups_aggregate_bool_exp_max { + arguments: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_max_arguments_columns! + distinct: Boolean + filter: utility_lineups_bool_exp + predicate: float8_comparison_exp! +} + +input utility_lineups_aggregate_bool_exp_min { + arguments: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_min_arguments_columns! + distinct: Boolean + filter: utility_lineups_bool_exp + predicate: float8_comparison_exp! +} + +input utility_lineups_aggregate_bool_exp_stddev_samp { + arguments: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_stddev_samp_arguments_columns! + distinct: Boolean + filter: utility_lineups_bool_exp + predicate: float8_comparison_exp! +} + +input utility_lineups_aggregate_bool_exp_sum { + arguments: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_sum_arguments_columns! + distinct: Boolean + filter: utility_lineups_bool_exp + predicate: float8_comparison_exp! +} + +input utility_lineups_aggregate_bool_exp_var_samp { + arguments: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_var_samp_arguments_columns! + distinct: Boolean + filter: utility_lineups_bool_exp + predicate: float8_comparison_exp! +} + +""" +aggregate fields of "utility_lineups" +""" +type utility_lineups_aggregate_fields { + avg: utility_lineups_avg_fields + count(columns: [utility_lineups_select_column!], distinct: Boolean): Int! + max: utility_lineups_max_fields + min: utility_lineups_min_fields + stddev: utility_lineups_stddev_fields + stddev_pop: utility_lineups_stddev_pop_fields + stddev_samp: utility_lineups_stddev_samp_fields + sum: utility_lineups_sum_fields + var_pop: utility_lineups_var_pop_fields + var_samp: utility_lineups_var_samp_fields + variance: utility_lineups_variance_fields +} + +""" +order by aggregate values of table "utility_lineups" +""" +input utility_lineups_aggregate_order_by { + avg: utility_lineups_avg_order_by + count: order_by + max: utility_lineups_max_order_by + min: utility_lineups_min_order_by + stddev: utility_lineups_stddev_order_by + stddev_pop: utility_lineups_stddev_pop_order_by + stddev_samp: utility_lineups_stddev_samp_order_by + sum: utility_lineups_sum_order_by + var_pop: utility_lineups_var_pop_order_by + var_samp: utility_lineups_var_samp_order_by + variance: utility_lineups_variance_order_by +} + +"""append existing jsonb value of filtered columns with new jsonb value""" +input utility_lineups_append_input { + trajectory_preview: jsonb +} + +""" +input type for inserting array relation for remote table "utility_lineups" +""" +input utility_lineups_arr_rel_insert_input { + data: [utility_lineups_insert_input!]! + + """upsert condition""" + on_conflict: utility_lineups_on_conflict +} + +"""aggregate avg on columns""" +type utility_lineups_avg_fields { + aim_tolerance: Float + author_steam_id: Float + downvotes: Float + eye_z: Float + favorites: Float + flight_time_ms: Float + initial_pos_x: Float + initial_pos_y: Float + initial_pos_z: Float + initial_vel_x: Float + initial_vel_y: Float + initial_vel_z: Float + land_x: Float + land_y: Float + land_z: Float + + """ + A computed field, executes function "utility_lineup_my_vote" + """ + my_vote: smallint + origin_x: Float + origin_y: Float + origin_z: Float + practice_attempts: Float + practice_players: Float + practice_successes: Float + preview_duration_ms: Float + public_reviewed_by: Float + source_grenade_id: Float + trajectory_size: Float + upvotes: Float + view_pitch: Float + view_pitch_delta: Float + view_yaw: Float + view_yaw_delta: Float +} + +""" +order by avg() on columns of table "utility_lineups" +""" +input utility_lineups_avg_order_by { + aim_tolerance: order_by + author_steam_id: order_by + downvotes: order_by + eye_z: order_by + favorites: order_by + flight_time_ms: order_by + initial_pos_x: order_by + initial_pos_y: order_by + initial_pos_z: order_by + initial_vel_x: order_by + initial_vel_y: order_by + initial_vel_z: order_by + land_x: order_by + land_y: order_by + land_z: order_by + origin_x: order_by + origin_y: order_by + origin_z: order_by + practice_attempts: order_by + practice_players: order_by + practice_successes: order_by + preview_duration_ms: order_by + public_reviewed_by: order_by + source_grenade_id: order_by + trajectory_size: order_by + upvotes: order_by + view_pitch: order_by + view_pitch_delta: order_by + view_yaw: order_by + view_yaw_delta: order_by +} + +""" +Boolean expression to filter rows from the table "utility_lineups". All fields are combined with a logical 'AND'. +""" +input utility_lineups_bool_exp { + _and: [utility_lineups_bool_exp!] + _not: utility_lineups_bool_exp + _or: [utility_lineups_bool_exp!] + aim_tolerance: float8_comparison_exp + archived_at: timestamptz_comparison_exp + author: players_bool_exp + author_steam_id: bigint_comparison_exp + can_edit: Boolean_comparison_exp + can_view: Boolean_comparison_exp + collection_items: utility_collection_items_bool_exp + collection_items_aggregate: utility_collection_items_aggregate_bool_exp + confidence: String_comparison_exp + created_at: timestamptz_comparison_exp + description: String_comparison_exp + difficulty: String_comparison_exp + downvotes: Int_comparison_exp + external_id: String_comparison_exp + eye_z: float8_comparison_exp + favorited_by: utility_lineup_favorites_bool_exp + favorited_by_aggregate: utility_lineup_favorites_aggregate_bool_exp + favorites: Int_comparison_exp + flight_time_ms: Int_comparison_exp + forked_from: utility_lineups_bool_exp + forked_from_utility_lineup_id: uuid_comparison_exp + id: uuid_comparison_exp + initial_pos_x: float8_comparison_exp + initial_pos_y: float8_comparison_exp + initial_pos_z: float8_comparison_exp + initial_vel_x: float8_comparison_exp + initial_vel_y: float8_comparison_exp + initial_vel_z: float8_comparison_exp + is_favorited: Boolean_comparison_exp + jump_throw_bind: Boolean_comparison_exp + land_x: float8_comparison_exp + land_y: float8_comparison_exp + land_z: float8_comparison_exp + lineup_bucket: String_comparison_exp + map_name: String_comparison_exp + my_vote: smallint_comparison_exp + name: String_comparison_exp + origin_source: e_utility_sources_enum_comparison_exp + origin_x: float8_comparison_exp + origin_y: float8_comparison_exp + origin_z: float8_comparison_exp + practice_attempts: Int_comparison_exp + practice_players: Int_comparison_exp + practice_successes: Int_comparison_exp + preview_duration_ms: Int_comparison_exp + preview_file: String_comparison_exp + preview_rendered_at: timestamptz_comparison_exp + preview_thumbnail: String_comparison_exp + preview_thumbnail_url: String_comparison_exp + preview_url: String_comparison_exp + progress: utility_lineup_progress_bool_exp + progress_aggregate: utility_lineup_progress_aggregate_bool_exp + public_requested_at: timestamptz_comparison_exp + public_review_note: String_comparison_exp + public_reviewed_at: timestamptz_comparison_exp + public_reviewed_by: bigint_comparison_exp + renders: utility_lineup_renders_bool_exp + renders_aggregate: utility_lineup_renders_aggregate_bool_exp + repairs: utility_lineup_repairs_bool_exp + repairs_aggregate: utility_lineup_repairs_aggregate_bool_exp + side: e_sides_enum_comparison_exp + source_grenade_id: Int_comparison_exp + source_match: matches_bool_exp + source_match_id: uuid_comparison_exp + source_match_map: match_maps_bool_exp + source_match_map_id: uuid_comparison_exp + source_url: String_comparison_exp + tags: String_array_comparison_exp + team: teams_bool_exp + team_id: uuid_comparison_exp + technique: e_utility_techniques_enum_comparison_exp + throw_strength: e_utility_throw_strengths_enum_comparison_exp + trajectory_file: String_comparison_exp + trajectory_preview: jsonb_comparison_exp + trajectory_size: Int_comparison_exp + updated_at: timestamptz_comparison_exp + upvotes: Int_comparison_exp + utility_type: e_utility_types_enum_comparison_exp + verified_at: timestamptz_comparison_exp + view_pitch: float8_comparison_exp + view_pitch_delta: float8_comparison_exp + view_yaw: float8_comparison_exp + view_yaw_delta: float8_comparison_exp + visibility: e_utility_visibility_enum_comparison_exp + votes: utility_lineup_votes_bool_exp + votes_aggregate: utility_lineup_votes_aggregate_bool_exp + workshop_map_id: String_comparison_exp +} + +""" +unique or primary key constraints on table "utility_lineups" +""" +enum utility_lineups_constraint { + """ + unique or primary key constraint on columns "origin_source", "external_id" + """ + utility_lineups_external_idx + + """ + unique or primary key constraint on columns "id" + """ + utility_lineups_pkey +} + +""" +delete the field or element with specified path (for JSON arrays, negative integers count from the end) +""" +input utility_lineups_delete_at_path_input { + trajectory_preview: [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 utility_lineups_delete_elem_input { + trajectory_preview: Int +} + +""" +delete key/value pair or string element. key/value pairs are matched based on their key value +""" +input utility_lineups_delete_key_input { + trajectory_preview: String +} + +""" +input type for incrementing numeric columns in table "utility_lineups" +""" +input utility_lineups_inc_input { + aim_tolerance: float8 + author_steam_id: bigint + downvotes: Int + eye_z: float8 + favorites: Int + flight_time_ms: Int + initial_pos_x: float8 + initial_pos_y: float8 + initial_pos_z: float8 + initial_vel_x: float8 + initial_vel_y: float8 + initial_vel_z: float8 + land_x: float8 + land_y: float8 + land_z: float8 + origin_x: float8 + origin_y: float8 + origin_z: float8 + practice_attempts: Int + practice_players: Int + practice_successes: Int + preview_duration_ms: Int + public_reviewed_by: bigint + source_grenade_id: Int + trajectory_size: Int + upvotes: Int + view_pitch: float8 + view_pitch_delta: float8 + view_yaw: float8 + view_yaw_delta: float8 +} + +""" +input type for inserting data into table "utility_lineups" +""" +input utility_lineups_insert_input { + aim_tolerance: float8 + archived_at: timestamptz + author: players_obj_rel_insert_input + author_steam_id: bigint + collection_items: utility_collection_items_arr_rel_insert_input + confidence: String + created_at: timestamptz + description: String + downvotes: Int + external_id: String + eye_z: float8 + favorited_by: utility_lineup_favorites_arr_rel_insert_input + favorites: Int + flight_time_ms: Int + forked_from: utility_lineups_obj_rel_insert_input + forked_from_utility_lineup_id: uuid + id: uuid + initial_pos_x: float8 + initial_pos_y: float8 + initial_pos_z: float8 + initial_vel_x: float8 + initial_vel_y: float8 + initial_vel_z: float8 + jump_throw_bind: Boolean + land_x: float8 + land_y: float8 + land_z: float8 + map_name: String + name: String + origin_source: e_utility_sources_enum + origin_x: float8 + origin_y: float8 + origin_z: float8 + practice_attempts: Int + practice_players: Int + practice_successes: Int + preview_duration_ms: Int + preview_file: String + preview_rendered_at: timestamptz + preview_thumbnail: String + progress: utility_lineup_progress_arr_rel_insert_input + public_requested_at: timestamptz + public_review_note: String + public_reviewed_at: timestamptz + public_reviewed_by: bigint + renders: utility_lineup_renders_arr_rel_insert_input + repairs: utility_lineup_repairs_arr_rel_insert_input + side: e_sides_enum + source_grenade_id: Int + source_match: matches_obj_rel_insert_input + source_match_id: uuid + source_match_map: match_maps_obj_rel_insert_input + source_match_map_id: uuid + source_url: String + tags: [String!] + team: teams_obj_rel_insert_input + team_id: uuid + technique: e_utility_techniques_enum + throw_strength: e_utility_throw_strengths_enum + trajectory_file: String + trajectory_preview: jsonb + trajectory_size: Int + updated_at: timestamptz + upvotes: Int + utility_type: e_utility_types_enum + verified_at: timestamptz + view_pitch: float8 + view_pitch_delta: float8 + view_yaw: float8 + view_yaw_delta: float8 + visibility: e_utility_visibility_enum + votes: utility_lineup_votes_arr_rel_insert_input + workshop_map_id: String +} + +"""aggregate max on columns""" +type utility_lineups_max_fields { + aim_tolerance: float8 + archived_at: timestamptz + author_steam_id: bigint + confidence: String + created_at: timestamptz + description: String + + """ + A computed field, executes function "utility_lineup_difficulty" + """ + difficulty: String + downvotes: Int + external_id: String + eye_z: float8 + favorites: Int + flight_time_ms: Int + forked_from_utility_lineup_id: uuid + id: uuid + initial_pos_x: float8 + initial_pos_y: float8 + initial_pos_z: float8 + initial_vel_x: float8 + initial_vel_y: float8 + initial_vel_z: float8 + land_x: float8 + land_y: float8 + land_z: float8 + lineup_bucket: String + map_name: String + + """ + A computed field, executes function "utility_lineup_my_vote" + """ + my_vote: smallint + name: String + origin_x: float8 + origin_y: float8 + origin_z: float8 + practice_attempts: Int + practice_players: Int + practice_successes: Int + preview_duration_ms: Int + preview_file: String + preview_rendered_at: timestamptz + preview_thumbnail: String + + """ + A computed field, executes function "utility_lineup_preview_thumbnail_url" + """ + preview_thumbnail_url: String + + """ + A computed field, executes function "utility_lineup_preview_url" + """ + preview_url: String + public_requested_at: timestamptz + public_review_note: String + public_reviewed_at: timestamptz + public_reviewed_by: bigint + source_grenade_id: Int + source_match_id: uuid + source_match_map_id: uuid + source_url: String + tags: [String!] + team_id: uuid + trajectory_file: String + trajectory_size: Int + updated_at: timestamptz + upvotes: Int + verified_at: timestamptz + view_pitch: float8 + view_pitch_delta: float8 + view_yaw: float8 + view_yaw_delta: float8 + workshop_map_id: String +} + +""" +order by max() on columns of table "utility_lineups" +""" +input utility_lineups_max_order_by { + aim_tolerance: order_by + archived_at: order_by + author_steam_id: order_by + confidence: order_by + created_at: order_by + description: order_by + downvotes: order_by + external_id: order_by + eye_z: order_by + favorites: order_by + flight_time_ms: order_by + forked_from_utility_lineup_id: order_by + id: order_by + initial_pos_x: order_by + initial_pos_y: order_by + initial_pos_z: order_by + initial_vel_x: order_by + initial_vel_y: order_by + initial_vel_z: order_by + land_x: order_by + land_y: order_by + land_z: order_by + lineup_bucket: order_by + map_name: order_by + name: order_by + origin_x: order_by + origin_y: order_by + origin_z: order_by + practice_attempts: order_by + practice_players: order_by + practice_successes: order_by + preview_duration_ms: order_by + preview_file: order_by + preview_rendered_at: order_by + preview_thumbnail: order_by + public_requested_at: order_by + public_review_note: order_by + public_reviewed_at: order_by + public_reviewed_by: order_by + source_grenade_id: order_by + source_match_id: order_by + source_match_map_id: order_by + source_url: order_by + tags: order_by + team_id: order_by + trajectory_file: order_by + trajectory_size: order_by + updated_at: order_by + upvotes: order_by + verified_at: order_by + view_pitch: order_by + view_pitch_delta: order_by + view_yaw: order_by + view_yaw_delta: order_by + workshop_map_id: order_by +} + +"""aggregate min on columns""" +type utility_lineups_min_fields { + aim_tolerance: float8 + archived_at: timestamptz + author_steam_id: bigint + confidence: String + created_at: timestamptz + description: String + + """ + A computed field, executes function "utility_lineup_difficulty" + """ + difficulty: String + downvotes: Int + external_id: String + eye_z: float8 + favorites: Int + flight_time_ms: Int + forked_from_utility_lineup_id: uuid + id: uuid + initial_pos_x: float8 + initial_pos_y: float8 + initial_pos_z: float8 + initial_vel_x: float8 + initial_vel_y: float8 + initial_vel_z: float8 + land_x: float8 + land_y: float8 + land_z: float8 + lineup_bucket: String + map_name: String + + """ + A computed field, executes function "utility_lineup_my_vote" + """ + my_vote: smallint + name: String + origin_x: float8 + origin_y: float8 + origin_z: float8 + practice_attempts: Int + practice_players: Int + practice_successes: Int + preview_duration_ms: Int + preview_file: String + preview_rendered_at: timestamptz + preview_thumbnail: String + + """ + A computed field, executes function "utility_lineup_preview_thumbnail_url" + """ + preview_thumbnail_url: String + + """ + A computed field, executes function "utility_lineup_preview_url" + """ + preview_url: String + public_requested_at: timestamptz + public_review_note: String + public_reviewed_at: timestamptz + public_reviewed_by: bigint + source_grenade_id: Int + source_match_id: uuid + source_match_map_id: uuid + source_url: String + tags: [String!] + team_id: uuid + trajectory_file: String + trajectory_size: Int + updated_at: timestamptz + upvotes: Int + verified_at: timestamptz + view_pitch: float8 + view_pitch_delta: float8 + view_yaw: float8 + view_yaw_delta: float8 + workshop_map_id: String +} + +""" +order by min() on columns of table "utility_lineups" +""" +input utility_lineups_min_order_by { + aim_tolerance: order_by + archived_at: order_by + author_steam_id: order_by + confidence: order_by + created_at: order_by + description: order_by + downvotes: order_by + external_id: order_by + eye_z: order_by + favorites: order_by + flight_time_ms: order_by + forked_from_utility_lineup_id: order_by + id: order_by + initial_pos_x: order_by + initial_pos_y: order_by + initial_pos_z: order_by + initial_vel_x: order_by + initial_vel_y: order_by + initial_vel_z: order_by + land_x: order_by + land_y: order_by + land_z: order_by + lineup_bucket: order_by + map_name: order_by + name: order_by + origin_x: order_by + origin_y: order_by + origin_z: order_by + practice_attempts: order_by + practice_players: order_by + practice_successes: order_by + preview_duration_ms: order_by + preview_file: order_by + preview_rendered_at: order_by + preview_thumbnail: order_by + public_requested_at: order_by + public_review_note: order_by + public_reviewed_at: order_by + public_reviewed_by: order_by + source_grenade_id: order_by + source_match_id: order_by + source_match_map_id: order_by + source_url: order_by + tags: order_by + team_id: order_by + trajectory_file: order_by + trajectory_size: order_by + updated_at: order_by + upvotes: order_by + verified_at: order_by + view_pitch: order_by + view_pitch_delta: order_by + view_yaw: order_by + view_yaw_delta: order_by + workshop_map_id: order_by +} + +""" +response of any mutation on the table "utility_lineups" +""" +type utility_lineups_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [utility_lineups!]! +} + +""" +input type for inserting object relation for remote table "utility_lineups" +""" +input utility_lineups_obj_rel_insert_input { + data: utility_lineups_insert_input! + + """upsert condition""" + on_conflict: utility_lineups_on_conflict +} + +""" +on_conflict condition type for table "utility_lineups" +""" +input utility_lineups_on_conflict { + constraint: utility_lineups_constraint! + update_columns: [utility_lineups_update_column!]! = [] + where: utility_lineups_bool_exp +} + +"""Ordering options when selecting data from "utility_lineups".""" +input utility_lineups_order_by { + aim_tolerance: order_by + archived_at: order_by + author: players_order_by + author_steam_id: order_by + can_edit: order_by + can_view: order_by + collection_items_aggregate: utility_collection_items_aggregate_order_by + confidence: order_by + created_at: order_by + description: order_by + difficulty: order_by + downvotes: order_by + external_id: order_by + eye_z: order_by + favorited_by_aggregate: utility_lineup_favorites_aggregate_order_by + favorites: order_by + flight_time_ms: order_by + forked_from: utility_lineups_order_by + forked_from_utility_lineup_id: order_by + id: order_by + initial_pos_x: order_by + initial_pos_y: order_by + initial_pos_z: order_by + initial_vel_x: order_by + initial_vel_y: order_by + initial_vel_z: order_by + is_favorited: order_by + jump_throw_bind: order_by + land_x: order_by + land_y: order_by + land_z: order_by + lineup_bucket: order_by + map_name: order_by + my_vote: order_by + name: order_by + origin_source: order_by + origin_x: order_by + origin_y: order_by + origin_z: order_by + practice_attempts: order_by + practice_players: order_by + practice_successes: order_by + preview_duration_ms: order_by + preview_file: order_by + preview_rendered_at: order_by + preview_thumbnail: order_by + preview_thumbnail_url: order_by + preview_url: order_by + progress_aggregate: utility_lineup_progress_aggregate_order_by + public_requested_at: order_by + public_review_note: order_by + public_reviewed_at: order_by + public_reviewed_by: order_by + renders_aggregate: utility_lineup_renders_aggregate_order_by + repairs_aggregate: utility_lineup_repairs_aggregate_order_by + side: order_by + source_grenade_id: order_by + source_match: matches_order_by + source_match_id: order_by + source_match_map: match_maps_order_by + source_match_map_id: order_by + source_url: order_by + tags: order_by + team: teams_order_by + team_id: order_by + technique: order_by + throw_strength: order_by + trajectory_file: order_by + trajectory_preview: order_by + trajectory_size: order_by + updated_at: order_by + upvotes: order_by + utility_type: order_by + verified_at: order_by + view_pitch: order_by + view_pitch_delta: order_by + view_yaw: order_by + view_yaw_delta: order_by + visibility: order_by + votes_aggregate: utility_lineup_votes_aggregate_order_by + workshop_map_id: order_by +} + +"""primary key columns input for table: utility_lineups""" +input utility_lineups_pk_columns_input { + id: uuid! +} + +"""prepend existing jsonb value of filtered columns with new jsonb value""" +input utility_lineups_prepend_input { + trajectory_preview: jsonb +} + +""" +select columns of table "utility_lineups" +""" +enum utility_lineups_select_column { + """column name""" + aim_tolerance + + """column name""" + archived_at + + """column name""" + author_steam_id + + """column name""" + confidence + + """column name""" + created_at + + """column name""" + description + + """column name""" + downvotes + + """column name""" + external_id + + """column name""" + eye_z + + """column name""" + favorites + + """column name""" + flight_time_ms + + """column name""" + forked_from_utility_lineup_id + + """column name""" + id + + """column name""" + initial_pos_x + + """column name""" + initial_pos_y + + """column name""" + initial_pos_z + + """column name""" + initial_vel_x + + """column name""" + initial_vel_y + + """column name""" + initial_vel_z + + """column name""" + jump_throw_bind + + """column name""" + land_x + + """column name""" + land_y + + """column name""" + land_z + + """column name""" + lineup_bucket + + """column name""" + map_name + + """column name""" + name + + """column name""" + origin_source + + """column name""" + origin_x + + """column name""" + origin_y + + """column name""" + origin_z + + """column name""" + practice_attempts + + """column name""" + practice_players + + """column name""" + practice_successes + + """column name""" + preview_duration_ms + + """column name""" + preview_file + + """column name""" + preview_rendered_at + + """column name""" + preview_thumbnail + + """column name""" + public_requested_at + + """column name""" + public_review_note + + """column name""" + public_reviewed_at + + """column name""" + public_reviewed_by + + """column name""" + side + + """column name""" + source_grenade_id + + """column name""" + source_match_id + + """column name""" + source_match_map_id + + """column name""" + source_url + + """column name""" + tags + + """column name""" + team_id + + """column name""" + technique + + """column name""" + throw_strength + + """column name""" + trajectory_file + + """column name""" + trajectory_preview + + """column name""" + trajectory_size + + """column name""" + updated_at + + """column name""" + upvotes + + """column name""" + utility_type + + """column name""" + verified_at + + """column name""" + view_pitch + + """column name""" + view_pitch_delta + + """column name""" + view_yaw + + """column name""" + view_yaw_delta + + """column name""" + visibility + + """column name""" + workshop_map_id +} + +""" +select "utility_lineups_aggregate_bool_exp_avg_arguments_columns" columns of table "utility_lineups" +""" +enum utility_lineups_select_column_utility_lineups_aggregate_bool_exp_avg_arguments_columns { + """column name""" + aim_tolerance + + """column name""" + eye_z + + """column name""" + initial_pos_x + + """column name""" + initial_pos_y + + """column name""" + initial_pos_z + + """column name""" + initial_vel_x + + """column name""" + initial_vel_y + + """column name""" + initial_vel_z + + """column name""" + land_x + + """column name""" + land_y + + """column name""" + land_z + + """column name""" + origin_x + + """column name""" + origin_y + + """column name""" + origin_z + + """column name""" + view_pitch + + """column name""" + view_pitch_delta + + """column name""" + view_yaw + + """column name""" + view_yaw_delta +} + +""" +select "utility_lineups_aggregate_bool_exp_bool_and_arguments_columns" columns of table "utility_lineups" +""" +enum utility_lineups_select_column_utility_lineups_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + jump_throw_bind +} + +""" +select "utility_lineups_aggregate_bool_exp_bool_or_arguments_columns" columns of table "utility_lineups" +""" +enum utility_lineups_select_column_utility_lineups_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + jump_throw_bind +} + +""" +select "utility_lineups_aggregate_bool_exp_corr_arguments_columns" columns of table "utility_lineups" +""" +enum utility_lineups_select_column_utility_lineups_aggregate_bool_exp_corr_arguments_columns { + """column name""" + aim_tolerance + + """column name""" + eye_z + + """column name""" + initial_pos_x + + """column name""" + initial_pos_y + + """column name""" + initial_pos_z + + """column name""" + initial_vel_x + + """column name""" + initial_vel_y + + """column name""" + initial_vel_z + + """column name""" + land_x + + """column name""" + land_y + + """column name""" + land_z + + """column name""" + origin_x + + """column name""" + origin_y + + """column name""" + origin_z + + """column name""" + view_pitch + + """column name""" + view_pitch_delta + + """column name""" + view_yaw + + """column name""" + view_yaw_delta +} + +""" +select "utility_lineups_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "utility_lineups" +""" +enum utility_lineups_select_column_utility_lineups_aggregate_bool_exp_covar_samp_arguments_columns { + """column name""" + aim_tolerance + + """column name""" + eye_z + + """column name""" + initial_pos_x + + """column name""" + initial_pos_y + + """column name""" + initial_pos_z + + """column name""" + initial_vel_x + + """column name""" + initial_vel_y + + """column name""" + initial_vel_z + + """column name""" + land_x + + """column name""" + land_y + + """column name""" + land_z + + """column name""" + origin_x + + """column name""" + origin_y + + """column name""" + origin_z + + """column name""" + view_pitch + + """column name""" + view_pitch_delta + + """column name""" + view_yaw + + """column name""" + view_yaw_delta +} + +""" +select "utility_lineups_aggregate_bool_exp_max_arguments_columns" columns of table "utility_lineups" +""" +enum utility_lineups_select_column_utility_lineups_aggregate_bool_exp_max_arguments_columns { + """column name""" + aim_tolerance + + """column name""" + eye_z + + """column name""" + initial_pos_x + + """column name""" + initial_pos_y + + """column name""" + initial_pos_z + + """column name""" + initial_vel_x + + """column name""" + initial_vel_y + + """column name""" + initial_vel_z + + """column name""" + land_x + + """column name""" + land_y + + """column name""" + land_z + + """column name""" + origin_x + + """column name""" + origin_y + + """column name""" + origin_z + + """column name""" + view_pitch + + """column name""" + view_pitch_delta + + """column name""" + view_yaw + + """column name""" + view_yaw_delta +} + +""" +select "utility_lineups_aggregate_bool_exp_min_arguments_columns" columns of table "utility_lineups" +""" +enum utility_lineups_select_column_utility_lineups_aggregate_bool_exp_min_arguments_columns { + """column name""" + aim_tolerance + + """column name""" + eye_z + + """column name""" + initial_pos_x + + """column name""" + initial_pos_y + + """column name""" + initial_pos_z + + """column name""" + initial_vel_x + + """column name""" + initial_vel_y + + """column name""" + initial_vel_z + + """column name""" + land_x + + """column name""" + land_y + + """column name""" + land_z + + """column name""" + origin_x + + """column name""" + origin_y + + """column name""" + origin_z + + """column name""" + view_pitch + + """column name""" + view_pitch_delta + + """column name""" + view_yaw + + """column name""" + view_yaw_delta +} + +""" +select "utility_lineups_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "utility_lineups" +""" +enum utility_lineups_select_column_utility_lineups_aggregate_bool_exp_stddev_samp_arguments_columns { + """column name""" + aim_tolerance + + """column name""" + eye_z + + """column name""" + initial_pos_x + + """column name""" + initial_pos_y + + """column name""" + initial_pos_z + + """column name""" + initial_vel_x + + """column name""" + initial_vel_y + + """column name""" + initial_vel_z + + """column name""" + land_x + + """column name""" + land_y + + """column name""" + land_z + + """column name""" + origin_x + + """column name""" + origin_y + + """column name""" + origin_z + + """column name""" + view_pitch + + """column name""" + view_pitch_delta + + """column name""" + view_yaw + + """column name""" + view_yaw_delta +} + +""" +select "utility_lineups_aggregate_bool_exp_sum_arguments_columns" columns of table "utility_lineups" +""" +enum utility_lineups_select_column_utility_lineups_aggregate_bool_exp_sum_arguments_columns { + """column name""" + aim_tolerance + + """column name""" + eye_z + + """column name""" + initial_pos_x + + """column name""" + initial_pos_y + + """column name""" + initial_pos_z + + """column name""" + initial_vel_x + + """column name""" + initial_vel_y + + """column name""" + initial_vel_z + + """column name""" + land_x + + """column name""" + land_y + + """column name""" + land_z + + """column name""" + origin_x + + """column name""" + origin_y + + """column name""" + origin_z + + """column name""" + view_pitch + + """column name""" + view_pitch_delta + + """column name""" + view_yaw + + """column name""" + view_yaw_delta +} + +""" +select "utility_lineups_aggregate_bool_exp_var_samp_arguments_columns" columns of table "utility_lineups" +""" +enum utility_lineups_select_column_utility_lineups_aggregate_bool_exp_var_samp_arguments_columns { + """column name""" + aim_tolerance + + """column name""" + eye_z + + """column name""" + initial_pos_x + + """column name""" + initial_pos_y + + """column name""" + initial_pos_z + + """column name""" + initial_vel_x + + """column name""" + initial_vel_y + + """column name""" + initial_vel_z + + """column name""" + land_x + + """column name""" + land_y + + """column name""" + land_z + + """column name""" + origin_x + + """column name""" + origin_y + + """column name""" + origin_z + + """column name""" + view_pitch + + """column name""" + view_pitch_delta + + """column name""" + view_yaw + + """column name""" + view_yaw_delta +} + +""" +input type for updating data in table "utility_lineups" +""" +input utility_lineups_set_input { + aim_tolerance: float8 + archived_at: timestamptz + author_steam_id: bigint + confidence: String + created_at: timestamptz + description: String + downvotes: Int + external_id: String + eye_z: float8 + favorites: Int + flight_time_ms: Int + forked_from_utility_lineup_id: uuid + id: uuid + initial_pos_x: float8 + initial_pos_y: float8 + initial_pos_z: float8 + initial_vel_x: float8 + initial_vel_y: float8 + initial_vel_z: float8 + jump_throw_bind: Boolean + land_x: float8 + land_y: float8 + land_z: float8 + map_name: String + name: String + origin_source: e_utility_sources_enum + origin_x: float8 + origin_y: float8 + origin_z: float8 + practice_attempts: Int + practice_players: Int + practice_successes: Int + preview_duration_ms: Int + preview_file: String + preview_rendered_at: timestamptz + preview_thumbnail: String + public_requested_at: timestamptz + public_review_note: String + public_reviewed_at: timestamptz + public_reviewed_by: bigint + side: e_sides_enum + source_grenade_id: Int + source_match_id: uuid + source_match_map_id: uuid + source_url: String + tags: [String!] + team_id: uuid + technique: e_utility_techniques_enum + throw_strength: e_utility_throw_strengths_enum + trajectory_file: String + trajectory_preview: jsonb + trajectory_size: Int + updated_at: timestamptz + upvotes: Int + utility_type: e_utility_types_enum + verified_at: timestamptz + view_pitch: float8 + view_pitch_delta: float8 + view_yaw: float8 + view_yaw_delta: float8 + visibility: e_utility_visibility_enum + workshop_map_id: String +} + +"""aggregate stddev on columns""" +type utility_lineups_stddev_fields { + aim_tolerance: Float + author_steam_id: Float + downvotes: Float + eye_z: Float + favorites: Float + flight_time_ms: Float + initial_pos_x: Float + initial_pos_y: Float + initial_pos_z: Float + initial_vel_x: Float + initial_vel_y: Float + initial_vel_z: Float + land_x: Float + land_y: Float + land_z: Float + + """ + A computed field, executes function "utility_lineup_my_vote" + """ + my_vote: smallint + origin_x: Float + origin_y: Float + origin_z: Float + practice_attempts: Float + practice_players: Float + practice_successes: Float + preview_duration_ms: Float + public_reviewed_by: Float + source_grenade_id: Float + trajectory_size: Float + upvotes: Float + view_pitch: Float + view_pitch_delta: Float + view_yaw: Float + view_yaw_delta: Float +} + +""" +order by stddev() on columns of table "utility_lineups" +""" +input utility_lineups_stddev_order_by { + aim_tolerance: order_by + author_steam_id: order_by + downvotes: order_by + eye_z: order_by + favorites: order_by + flight_time_ms: order_by + initial_pos_x: order_by + initial_pos_y: order_by + initial_pos_z: order_by + initial_vel_x: order_by + initial_vel_y: order_by + initial_vel_z: order_by + land_x: order_by + land_y: order_by + land_z: order_by + origin_x: order_by + origin_y: order_by + origin_z: order_by + practice_attempts: order_by + practice_players: order_by + practice_successes: order_by + preview_duration_ms: order_by + public_reviewed_by: order_by + source_grenade_id: order_by + trajectory_size: order_by + upvotes: order_by + view_pitch: order_by + view_pitch_delta: order_by + view_yaw: order_by + view_yaw_delta: order_by +} + +"""aggregate stddev_pop on columns""" +type utility_lineups_stddev_pop_fields { + aim_tolerance: Float + author_steam_id: Float + downvotes: Float + eye_z: Float + favorites: Float + flight_time_ms: Float + initial_pos_x: Float + initial_pos_y: Float + initial_pos_z: Float + initial_vel_x: Float + initial_vel_y: Float + initial_vel_z: Float + land_x: Float + land_y: Float + land_z: Float + + """ + A computed field, executes function "utility_lineup_my_vote" + """ + my_vote: smallint + origin_x: Float + origin_y: Float + origin_z: Float + practice_attempts: Float + practice_players: Float + practice_successes: Float + preview_duration_ms: Float + public_reviewed_by: Float + source_grenade_id: Float + trajectory_size: Float + upvotes: Float + view_pitch: Float + view_pitch_delta: Float + view_yaw: Float + view_yaw_delta: Float +} + +""" +order by stddev_pop() on columns of table "utility_lineups" +""" +input utility_lineups_stddev_pop_order_by { + aim_tolerance: order_by + author_steam_id: order_by + downvotes: order_by + eye_z: order_by + favorites: order_by + flight_time_ms: order_by + initial_pos_x: order_by + initial_pos_y: order_by + initial_pos_z: order_by + initial_vel_x: order_by + initial_vel_y: order_by + initial_vel_z: order_by + land_x: order_by + land_y: order_by + land_z: order_by + origin_x: order_by + origin_y: order_by + origin_z: order_by + practice_attempts: order_by + practice_players: order_by + practice_successes: order_by + preview_duration_ms: order_by + public_reviewed_by: order_by + source_grenade_id: order_by + trajectory_size: order_by + upvotes: order_by + view_pitch: order_by + view_pitch_delta: order_by + view_yaw: order_by + view_yaw_delta: order_by +} + +"""aggregate stddev_samp on columns""" +type utility_lineups_stddev_samp_fields { + aim_tolerance: Float + author_steam_id: Float + downvotes: Float + eye_z: Float + favorites: Float + flight_time_ms: Float + initial_pos_x: Float + initial_pos_y: Float + initial_pos_z: Float + initial_vel_x: Float + initial_vel_y: Float + initial_vel_z: Float + land_x: Float + land_y: Float + land_z: Float + + """ + A computed field, executes function "utility_lineup_my_vote" + """ + my_vote: smallint + origin_x: Float + origin_y: Float + origin_z: Float + practice_attempts: Float + practice_players: Float + practice_successes: Float + preview_duration_ms: Float + public_reviewed_by: Float + source_grenade_id: Float + trajectory_size: Float + upvotes: Float + view_pitch: Float + view_pitch_delta: Float + view_yaw: Float + view_yaw_delta: Float +} + +""" +order by stddev_samp() on columns of table "utility_lineups" +""" +input utility_lineups_stddev_samp_order_by { + aim_tolerance: order_by + author_steam_id: order_by + downvotes: order_by + eye_z: order_by + favorites: order_by + flight_time_ms: order_by + initial_pos_x: order_by + initial_pos_y: order_by + initial_pos_z: order_by + initial_vel_x: order_by + initial_vel_y: order_by + initial_vel_z: order_by + land_x: order_by + land_y: order_by + land_z: order_by + origin_x: order_by + origin_y: order_by + origin_z: order_by + practice_attempts: order_by + practice_players: order_by + practice_successes: order_by + preview_duration_ms: order_by + public_reviewed_by: order_by + source_grenade_id: order_by + trajectory_size: order_by + upvotes: order_by + view_pitch: order_by + view_pitch_delta: order_by + view_yaw: order_by + view_yaw_delta: order_by +} + +""" +Streaming cursor of the table "utility_lineups" +""" +input utility_lineups_stream_cursor_input { + """Stream column input with initial value""" + initial_value: utility_lineups_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input utility_lineups_stream_cursor_value_input { + aim_tolerance: float8 + archived_at: timestamptz + author_steam_id: bigint + confidence: String + created_at: timestamptz + description: String + downvotes: Int + external_id: String + eye_z: float8 + favorites: Int + flight_time_ms: Int + forked_from_utility_lineup_id: uuid + id: uuid + initial_pos_x: float8 + initial_pos_y: float8 + initial_pos_z: float8 + initial_vel_x: float8 + initial_vel_y: float8 + initial_vel_z: float8 + jump_throw_bind: Boolean + land_x: float8 + land_y: float8 + land_z: float8 + lineup_bucket: String + map_name: String + name: String + origin_source: e_utility_sources_enum + origin_x: float8 + origin_y: float8 + origin_z: float8 + practice_attempts: Int + practice_players: Int + practice_successes: Int + preview_duration_ms: Int + preview_file: String + preview_rendered_at: timestamptz + preview_thumbnail: String + public_requested_at: timestamptz + public_review_note: String + public_reviewed_at: timestamptz + public_reviewed_by: bigint + side: e_sides_enum + source_grenade_id: Int + source_match_id: uuid + source_match_map_id: uuid + source_url: String + tags: [String!] + team_id: uuid + technique: e_utility_techniques_enum + throw_strength: e_utility_throw_strengths_enum + trajectory_file: String + trajectory_preview: jsonb + trajectory_size: Int + updated_at: timestamptz + upvotes: Int + utility_type: e_utility_types_enum + verified_at: timestamptz + view_pitch: float8 + view_pitch_delta: float8 + view_yaw: float8 + view_yaw_delta: float8 + visibility: e_utility_visibility_enum + workshop_map_id: String +} + +"""aggregate sum on columns""" +type utility_lineups_sum_fields { + aim_tolerance: float8 + author_steam_id: bigint + downvotes: Int + eye_z: float8 + favorites: Int + flight_time_ms: Int + initial_pos_x: float8 + initial_pos_y: float8 + initial_pos_z: float8 + initial_vel_x: float8 + initial_vel_y: float8 + initial_vel_z: float8 + land_x: float8 + land_y: float8 + land_z: float8 + + """ + A computed field, executes function "utility_lineup_my_vote" + """ + my_vote: smallint + origin_x: float8 + origin_y: float8 + origin_z: float8 + practice_attempts: Int + practice_players: Int + practice_successes: Int + preview_duration_ms: Int + public_reviewed_by: bigint + source_grenade_id: Int + trajectory_size: Int + upvotes: Int + view_pitch: float8 + view_pitch_delta: float8 + view_yaw: float8 + view_yaw_delta: float8 +} + +""" +order by sum() on columns of table "utility_lineups" +""" +input utility_lineups_sum_order_by { + aim_tolerance: order_by + author_steam_id: order_by + downvotes: order_by + eye_z: order_by + favorites: order_by + flight_time_ms: order_by + initial_pos_x: order_by + initial_pos_y: order_by + initial_pos_z: order_by + initial_vel_x: order_by + initial_vel_y: order_by + initial_vel_z: order_by + land_x: order_by + land_y: order_by + land_z: order_by + origin_x: order_by + origin_y: order_by + origin_z: order_by + practice_attempts: order_by + practice_players: order_by + practice_successes: order_by + preview_duration_ms: order_by + public_reviewed_by: order_by + source_grenade_id: order_by + trajectory_size: order_by + upvotes: order_by + view_pitch: order_by + view_pitch_delta: order_by + view_yaw: order_by + view_yaw_delta: order_by +} + +""" +update columns of table "utility_lineups" +""" +enum utility_lineups_update_column { + """column name""" + aim_tolerance + + """column name""" + archived_at + + """column name""" + author_steam_id + + """column name""" + confidence + + """column name""" + created_at + + """column name""" + description + + """column name""" + downvotes + + """column name""" + external_id + + """column name""" + eye_z + + """column name""" + favorites + + """column name""" + flight_time_ms + + """column name""" + forked_from_utility_lineup_id + + """column name""" + id + + """column name""" + initial_pos_x + + """column name""" + initial_pos_y + + """column name""" + initial_pos_z + + """column name""" + initial_vel_x + + """column name""" + initial_vel_y + + """column name""" + initial_vel_z + + """column name""" + jump_throw_bind + + """column name""" + land_x + + """column name""" + land_y + + """column name""" + land_z + + """column name""" + map_name + + """column name""" + name + + """column name""" + origin_source + + """column name""" + origin_x + + """column name""" + origin_y + + """column name""" + origin_z + + """column name""" + practice_attempts + + """column name""" + practice_players + + """column name""" + practice_successes + + """column name""" + preview_duration_ms + + """column name""" + preview_file + + """column name""" + preview_rendered_at + + """column name""" + preview_thumbnail + + """column name""" + public_requested_at + + """column name""" + public_review_note + + """column name""" + public_reviewed_at + + """column name""" + public_reviewed_by + + """column name""" + side + + """column name""" + source_grenade_id + + """column name""" + source_match_id + + """column name""" + source_match_map_id + + """column name""" + source_url + + """column name""" + tags + + """column name""" + team_id + + """column name""" + technique + + """column name""" + throw_strength + + """column name""" + trajectory_file + + """column name""" + trajectory_preview + + """column name""" + trajectory_size + + """column name""" + updated_at + + """column name""" + upvotes + + """column name""" + utility_type + + """column name""" + verified_at + + """column name""" + view_pitch + + """column name""" + view_pitch_delta + + """column name""" + view_yaw + + """column name""" + view_yaw_delta + + """column name""" + visibility + + """column name""" + workshop_map_id +} + +input utility_lineups_updates { + """append existing jsonb value of filtered columns with new jsonb value""" + _append: utility_lineups_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: utility_lineups_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: utility_lineups_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: utility_lineups_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: utility_lineups_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: utility_lineups_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_lineups_set_input + + """filter the rows which have to be updated""" + where: utility_lineups_bool_exp! +} + +"""aggregate var_pop on columns""" +type utility_lineups_var_pop_fields { + aim_tolerance: Float + author_steam_id: Float + downvotes: Float + eye_z: Float + favorites: Float + flight_time_ms: Float + initial_pos_x: Float + initial_pos_y: Float + initial_pos_z: Float + initial_vel_x: Float + initial_vel_y: Float + initial_vel_z: Float + land_x: Float + land_y: Float + land_z: Float + + """ + A computed field, executes function "utility_lineup_my_vote" + """ + my_vote: smallint + origin_x: Float + origin_y: Float + origin_z: Float + practice_attempts: Float + practice_players: Float + practice_successes: Float + preview_duration_ms: Float + public_reviewed_by: Float + source_grenade_id: Float + trajectory_size: Float + upvotes: Float + view_pitch: Float + view_pitch_delta: Float + view_yaw: Float + view_yaw_delta: Float +} + +""" +order by var_pop() on columns of table "utility_lineups" +""" +input utility_lineups_var_pop_order_by { + aim_tolerance: order_by + author_steam_id: order_by + downvotes: order_by + eye_z: order_by + favorites: order_by + flight_time_ms: order_by + initial_pos_x: order_by + initial_pos_y: order_by + initial_pos_z: order_by + initial_vel_x: order_by + initial_vel_y: order_by + initial_vel_z: order_by + land_x: order_by + land_y: order_by + land_z: order_by + origin_x: order_by + origin_y: order_by + origin_z: order_by + practice_attempts: order_by + practice_players: order_by + practice_successes: order_by + preview_duration_ms: order_by + public_reviewed_by: order_by + source_grenade_id: order_by + trajectory_size: order_by + upvotes: order_by + view_pitch: order_by + view_pitch_delta: order_by + view_yaw: order_by + view_yaw_delta: order_by +} + +"""aggregate var_samp on columns""" +type utility_lineups_var_samp_fields { + aim_tolerance: Float + author_steam_id: Float + downvotes: Float + eye_z: Float + favorites: Float + flight_time_ms: Float + initial_pos_x: Float + initial_pos_y: Float + initial_pos_z: Float + initial_vel_x: Float + initial_vel_y: Float + initial_vel_z: Float + land_x: Float + land_y: Float + land_z: Float + + """ + A computed field, executes function "utility_lineup_my_vote" + """ + my_vote: smallint + origin_x: Float + origin_y: Float + origin_z: Float + practice_attempts: Float + practice_players: Float + practice_successes: Float + preview_duration_ms: Float + public_reviewed_by: Float + source_grenade_id: Float + trajectory_size: Float + upvotes: Float + view_pitch: Float + view_pitch_delta: Float + view_yaw: Float + view_yaw_delta: Float +} + +""" +order by var_samp() on columns of table "utility_lineups" +""" +input utility_lineups_var_samp_order_by { + aim_tolerance: order_by + author_steam_id: order_by + downvotes: order_by + eye_z: order_by + favorites: order_by + flight_time_ms: order_by + initial_pos_x: order_by + initial_pos_y: order_by + initial_pos_z: order_by + initial_vel_x: order_by + initial_vel_y: order_by + initial_vel_z: order_by + land_x: order_by + land_y: order_by + land_z: order_by + origin_x: order_by + origin_y: order_by + origin_z: order_by + practice_attempts: order_by + practice_players: order_by + practice_successes: order_by + preview_duration_ms: order_by + public_reviewed_by: order_by + source_grenade_id: order_by + trajectory_size: order_by + upvotes: order_by + view_pitch: order_by + view_pitch_delta: order_by + view_yaw: order_by + view_yaw_delta: order_by +} + +"""aggregate variance on columns""" +type utility_lineups_variance_fields { + aim_tolerance: Float + author_steam_id: Float + downvotes: Float + eye_z: Float + favorites: Float + flight_time_ms: Float + initial_pos_x: Float + initial_pos_y: Float + initial_pos_z: Float + initial_vel_x: Float + initial_vel_y: Float + initial_vel_z: Float + land_x: Float + land_y: Float + land_z: Float + + """ + A computed field, executes function "utility_lineup_my_vote" + """ + my_vote: smallint + origin_x: Float + origin_y: Float + origin_z: Float + practice_attempts: Float + practice_players: Float + practice_successes: Float + preview_duration_ms: Float + public_reviewed_by: Float + source_grenade_id: Float + trajectory_size: Float + upvotes: Float + view_pitch: Float + view_pitch_delta: Float + view_yaw: Float + view_yaw_delta: Float +} + +""" +order by variance() on columns of table "utility_lineups" +""" +input utility_lineups_variance_order_by { + aim_tolerance: order_by + author_steam_id: order_by + downvotes: order_by + eye_z: order_by + favorites: order_by + flight_time_ms: order_by + initial_pos_x: order_by + initial_pos_y: order_by + initial_pos_z: order_by + initial_vel_x: order_by + initial_vel_y: order_by + initial_vel_z: order_by + land_x: order_by + land_y: order_by + land_z: order_by + origin_x: order_by + origin_y: order_by + origin_z: order_by + practice_attempts: order_by + practice_players: order_by + practice_successes: order_by + preview_duration_ms: order_by + public_reviewed_by: order_by + source_grenade_id: order_by + trajectory_size: order_by + upvotes: order_by + view_pitch: order_by + view_pitch_delta: order_by + view_yaw: order_by + view_yaw_delta: order_by +} + +""" +columns and relationships of "utility_meta_lineups" +""" +type utility_meta_lineups { + first_seen_at: timestamptz + land_x: float8! + land_y: float8! + land_z: float8! + last_seen_at: timestamptz + lineup_bucket: String! + lineups: Int! + map_name: String! + matches: Int! + origin_x: float8! + origin_y: float8! + origin_z: float8! + refreshed_at: timestamptz! + side: e_sides_enum! + technique: e_utility_techniques_enum! + throw_strength: String + throwers: Int! + throws: Int! + utility_type: e_utility_types_enum! + view_pitch: float8 + view_yaw: float8 +} + +""" +aggregated selection of "utility_meta_lineups" +""" +type utility_meta_lineups_aggregate { + aggregate: utility_meta_lineups_aggregate_fields + nodes: [utility_meta_lineups!]! +} + +""" +aggregate fields of "utility_meta_lineups" +""" +type utility_meta_lineups_aggregate_fields { + avg: utility_meta_lineups_avg_fields + count(columns: [utility_meta_lineups_select_column!], distinct: Boolean): Int! + max: utility_meta_lineups_max_fields + min: utility_meta_lineups_min_fields + stddev: utility_meta_lineups_stddev_fields + stddev_pop: utility_meta_lineups_stddev_pop_fields + stddev_samp: utility_meta_lineups_stddev_samp_fields + sum: utility_meta_lineups_sum_fields + var_pop: utility_meta_lineups_var_pop_fields + var_samp: utility_meta_lineups_var_samp_fields + variance: utility_meta_lineups_variance_fields +} + +"""aggregate avg on columns""" +type utility_meta_lineups_avg_fields { + land_x: Float + land_y: Float + land_z: Float + lineups: Float + matches: Float + origin_x: Float + origin_y: Float + origin_z: Float + throwers: Float + throws: Float + view_pitch: Float + view_yaw: Float +} + +""" +Boolean expression to filter rows from the table "utility_meta_lineups". All fields are combined with a logical 'AND'. +""" +input utility_meta_lineups_bool_exp { + _and: [utility_meta_lineups_bool_exp!] + _not: utility_meta_lineups_bool_exp + _or: [utility_meta_lineups_bool_exp!] + first_seen_at: timestamptz_comparison_exp + land_x: float8_comparison_exp + land_y: float8_comparison_exp + land_z: float8_comparison_exp + last_seen_at: timestamptz_comparison_exp + lineup_bucket: String_comparison_exp + lineups: Int_comparison_exp + map_name: String_comparison_exp + matches: Int_comparison_exp + origin_x: float8_comparison_exp + origin_y: float8_comparison_exp + origin_z: float8_comparison_exp + refreshed_at: timestamptz_comparison_exp + side: e_sides_enum_comparison_exp + technique: e_utility_techniques_enum_comparison_exp + throw_strength: String_comparison_exp + throwers: Int_comparison_exp + throws: Int_comparison_exp + utility_type: e_utility_types_enum_comparison_exp + view_pitch: float8_comparison_exp + view_yaw: float8_comparison_exp +} + +""" +unique or primary key constraints on table "utility_meta_lineups" +""" +enum utility_meta_lineups_constraint { + """ + unique or primary key constraint on columns "lineup_bucket" + """ + utility_meta_lineups_pkey +} + +""" +input type for incrementing numeric columns in table "utility_meta_lineups" +""" +input utility_meta_lineups_inc_input { + land_x: float8 + land_y: float8 + land_z: float8 + lineups: Int + matches: Int + origin_x: float8 + origin_y: float8 + origin_z: float8 + throwers: Int + throws: Int + view_pitch: float8 + view_yaw: float8 +} + +""" +input type for inserting data into table "utility_meta_lineups" +""" +input utility_meta_lineups_insert_input { + first_seen_at: timestamptz + land_x: float8 + land_y: float8 + land_z: float8 + last_seen_at: timestamptz + lineup_bucket: String + lineups: Int + map_name: String + matches: Int + origin_x: float8 + origin_y: float8 + origin_z: float8 + refreshed_at: timestamptz + side: e_sides_enum + technique: e_utility_techniques_enum + throw_strength: String + throwers: Int + throws: Int + utility_type: e_utility_types_enum + view_pitch: float8 + view_yaw: float8 +} + +"""aggregate max on columns""" +type utility_meta_lineups_max_fields { + first_seen_at: timestamptz + land_x: float8 + land_y: float8 + land_z: float8 + last_seen_at: timestamptz + lineup_bucket: String + lineups: Int + map_name: String + matches: Int + origin_x: float8 + origin_y: float8 + origin_z: float8 + refreshed_at: timestamptz + throw_strength: String + throwers: Int + throws: Int + view_pitch: float8 + view_yaw: float8 +} + +"""aggregate min on columns""" +type utility_meta_lineups_min_fields { + first_seen_at: timestamptz + land_x: float8 + land_y: float8 + land_z: float8 + last_seen_at: timestamptz + lineup_bucket: String + lineups: Int + map_name: String + matches: Int + origin_x: float8 + origin_y: float8 + origin_z: float8 + refreshed_at: timestamptz + throw_strength: String + throwers: Int + throws: Int + view_pitch: float8 + view_yaw: float8 +} + +""" +response of any mutation on the table "utility_meta_lineups" +""" +type utility_meta_lineups_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [utility_meta_lineups!]! +} + +""" +on_conflict condition type for table "utility_meta_lineups" +""" +input utility_meta_lineups_on_conflict { + constraint: utility_meta_lineups_constraint! + update_columns: [utility_meta_lineups_update_column!]! = [] + where: utility_meta_lineups_bool_exp +} + +"""Ordering options when selecting data from "utility_meta_lineups".""" +input utility_meta_lineups_order_by { + first_seen_at: order_by + land_x: order_by + land_y: order_by + land_z: order_by + last_seen_at: order_by + lineup_bucket: order_by + lineups: order_by + map_name: order_by + matches: order_by + origin_x: order_by + origin_y: order_by + origin_z: order_by + refreshed_at: order_by + side: order_by + technique: order_by + throw_strength: order_by + throwers: order_by + throws: order_by + utility_type: order_by + view_pitch: order_by + view_yaw: order_by +} + +"""primary key columns input for table: utility_meta_lineups""" +input utility_meta_lineups_pk_columns_input { + lineup_bucket: String! +} + +""" +select columns of table "utility_meta_lineups" +""" +enum utility_meta_lineups_select_column { + """column name""" + first_seen_at + + """column name""" + land_x + + """column name""" + land_y + + """column name""" + land_z + + """column name""" + last_seen_at + + """column name""" + lineup_bucket + + """column name""" + lineups + + """column name""" + map_name + + """column name""" + matches + + """column name""" + origin_x + + """column name""" + origin_y + + """column name""" + origin_z + + """column name""" + refreshed_at + + """column name""" + side + + """column name""" + technique + + """column name""" + throw_strength + + """column name""" + throwers + + """column name""" + throws + + """column name""" + utility_type + + """column name""" + view_pitch + + """column name""" + view_yaw +} + +""" +input type for updating data in table "utility_meta_lineups" +""" +input utility_meta_lineups_set_input { + first_seen_at: timestamptz + land_x: float8 + land_y: float8 + land_z: float8 + last_seen_at: timestamptz + lineup_bucket: String + lineups: Int + map_name: String + matches: Int + origin_x: float8 + origin_y: float8 + origin_z: float8 + refreshed_at: timestamptz + side: e_sides_enum + technique: e_utility_techniques_enum + throw_strength: String + throwers: Int + throws: Int + utility_type: e_utility_types_enum + view_pitch: float8 + view_yaw: float8 +} + +"""aggregate stddev on columns""" +type utility_meta_lineups_stddev_fields { + land_x: Float + land_y: Float + land_z: Float + lineups: Float + matches: Float + origin_x: Float + origin_y: Float + origin_z: Float + throwers: Float + throws: Float + view_pitch: Float + view_yaw: Float +} + +"""aggregate stddev_pop on columns""" +type utility_meta_lineups_stddev_pop_fields { + land_x: Float + land_y: Float + land_z: Float + lineups: Float + matches: Float + origin_x: Float + origin_y: Float + origin_z: Float + throwers: Float + throws: Float + view_pitch: Float + view_yaw: Float +} + +"""aggregate stddev_samp on columns""" +type utility_meta_lineups_stddev_samp_fields { + land_x: Float + land_y: Float + land_z: Float + lineups: Float + matches: Float + origin_x: Float + origin_y: Float + origin_z: Float + throwers: Float + throws: Float + view_pitch: Float + view_yaw: Float +} + +""" +Streaming cursor of the table "utility_meta_lineups" +""" +input utility_meta_lineups_stream_cursor_input { + """Stream column input with initial value""" + initial_value: utility_meta_lineups_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input utility_meta_lineups_stream_cursor_value_input { + first_seen_at: timestamptz + land_x: float8 + land_y: float8 + land_z: float8 + last_seen_at: timestamptz + lineup_bucket: String + lineups: Int + map_name: String + matches: Int + origin_x: float8 + origin_y: float8 + origin_z: float8 + refreshed_at: timestamptz + side: e_sides_enum + technique: e_utility_techniques_enum + throw_strength: String + throwers: Int + throws: Int + utility_type: e_utility_types_enum + view_pitch: float8 + view_yaw: float8 +} + +"""aggregate sum on columns""" +type utility_meta_lineups_sum_fields { + land_x: float8 + land_y: float8 + land_z: float8 + lineups: Int + matches: Int + origin_x: float8 + origin_y: float8 + origin_z: float8 + throwers: Int + throws: Int + view_pitch: float8 + view_yaw: float8 +} + +""" +update columns of table "utility_meta_lineups" +""" +enum utility_meta_lineups_update_column { + """column name""" + first_seen_at + + """column name""" + land_x + + """column name""" + land_y + + """column name""" + land_z + + """column name""" + last_seen_at + + """column name""" + lineup_bucket + + """column name""" + lineups + + """column name""" + map_name + + """column name""" + matches + + """column name""" + origin_x + + """column name""" + origin_y + + """column name""" + origin_z + + """column name""" + refreshed_at + + """column name""" + side + + """column name""" + technique + + """column name""" + throw_strength + + """column name""" + throwers + + """column name""" + throws + + """column name""" + utility_type + + """column name""" + view_pitch + + """column name""" + view_yaw +} + +input utility_meta_lineups_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: utility_meta_lineups_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_meta_lineups_set_input + + """filter the rows which have to be updated""" + where: utility_meta_lineups_bool_exp! +} + +"""aggregate var_pop on columns""" +type utility_meta_lineups_var_pop_fields { + land_x: Float + land_y: Float + land_z: Float + lineups: Float + matches: Float + origin_x: Float + origin_y: Float + origin_z: Float + throwers: Float + throws: Float + view_pitch: Float + view_yaw: Float +} + +"""aggregate var_samp on columns""" +type utility_meta_lineups_var_samp_fields { + land_x: Float + land_y: Float + land_z: Float + lineups: Float + matches: Float + origin_x: Float + origin_y: Float + origin_z: Float + throwers: Float + throws: Float + view_pitch: Float + view_yaw: Float +} + +"""aggregate variance on columns""" +type utility_meta_lineups_variance_fields { + land_x: Float + land_y: Float + land_z: Float + lineups: Float + matches: Float + origin_x: Float + origin_y: Float + origin_z: Float + throwers: Float + throws: Float + view_pitch: Float + view_yaw: Float +} + +""" +columns and relationships of "utility_playbook_steps" +""" +type utility_playbook_steps { + """An object relationship""" + assigned_player: players + assigned_steam_id: bigint + created_at: timestamptz! + id: uuid! + note: String + offset_ms: Int! + + """An object relationship""" + playbook: utility_playbooks! + playbook_id: uuid! + step_order: Int! + + """An object relationship""" + utility_lineup: utility_lineups! + utility_lineup_id: uuid! +} + +""" +aggregated selection of "utility_playbook_steps" +""" +type utility_playbook_steps_aggregate { + aggregate: utility_playbook_steps_aggregate_fields + nodes: [utility_playbook_steps!]! +} + +input utility_playbook_steps_aggregate_bool_exp { + count: utility_playbook_steps_aggregate_bool_exp_count +} + +input utility_playbook_steps_aggregate_bool_exp_count { + arguments: [utility_playbook_steps_select_column!] + distinct: Boolean + filter: utility_playbook_steps_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "utility_playbook_steps" +""" +type utility_playbook_steps_aggregate_fields { + avg: utility_playbook_steps_avg_fields + count(columns: [utility_playbook_steps_select_column!], distinct: Boolean): Int! + max: utility_playbook_steps_max_fields + min: utility_playbook_steps_min_fields + stddev: utility_playbook_steps_stddev_fields + stddev_pop: utility_playbook_steps_stddev_pop_fields + stddev_samp: utility_playbook_steps_stddev_samp_fields + sum: utility_playbook_steps_sum_fields + var_pop: utility_playbook_steps_var_pop_fields + var_samp: utility_playbook_steps_var_samp_fields + variance: utility_playbook_steps_variance_fields +} + +""" +order by aggregate values of table "utility_playbook_steps" +""" +input utility_playbook_steps_aggregate_order_by { + avg: utility_playbook_steps_avg_order_by + count: order_by + max: utility_playbook_steps_max_order_by + min: utility_playbook_steps_min_order_by + stddev: utility_playbook_steps_stddev_order_by + stddev_pop: utility_playbook_steps_stddev_pop_order_by + stddev_samp: utility_playbook_steps_stddev_samp_order_by + sum: utility_playbook_steps_sum_order_by + var_pop: utility_playbook_steps_var_pop_order_by + var_samp: utility_playbook_steps_var_samp_order_by + variance: utility_playbook_steps_variance_order_by +} + +""" +input type for inserting array relation for remote table "utility_playbook_steps" +""" +input utility_playbook_steps_arr_rel_insert_input { + data: [utility_playbook_steps_insert_input!]! + + """upsert condition""" + on_conflict: utility_playbook_steps_on_conflict +} + +"""aggregate avg on columns""" +type utility_playbook_steps_avg_fields { + assigned_steam_id: Float + offset_ms: Float + step_order: Float +} + +""" +order by avg() on columns of table "utility_playbook_steps" +""" +input utility_playbook_steps_avg_order_by { + assigned_steam_id: order_by + offset_ms: order_by + step_order: order_by +} + +""" +Boolean expression to filter rows from the table "utility_playbook_steps". All fields are combined with a logical 'AND'. +""" +input utility_playbook_steps_bool_exp { + _and: [utility_playbook_steps_bool_exp!] + _not: utility_playbook_steps_bool_exp + _or: [utility_playbook_steps_bool_exp!] + assigned_player: players_bool_exp + assigned_steam_id: bigint_comparison_exp + created_at: timestamptz_comparison_exp + id: uuid_comparison_exp + note: String_comparison_exp + offset_ms: Int_comparison_exp + playbook: utility_playbooks_bool_exp + playbook_id: uuid_comparison_exp + step_order: Int_comparison_exp + utility_lineup: utility_lineups_bool_exp + utility_lineup_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "utility_playbook_steps" +""" +enum utility_playbook_steps_constraint { + """ + unique or primary key constraint on columns "playbook_id", "step_order" + """ + utility_playbook_steps_order_key + + """ + unique or primary key constraint on columns "id" + """ + utility_playbook_steps_pkey +} + +""" +input type for incrementing numeric columns in table "utility_playbook_steps" +""" +input utility_playbook_steps_inc_input { + assigned_steam_id: bigint + offset_ms: Int + step_order: Int +} + +""" +input type for inserting data into table "utility_playbook_steps" +""" +input utility_playbook_steps_insert_input { + assigned_player: players_obj_rel_insert_input + assigned_steam_id: bigint + created_at: timestamptz + id: uuid + note: String + offset_ms: Int + playbook: utility_playbooks_obj_rel_insert_input + playbook_id: uuid + step_order: Int + utility_lineup: utility_lineups_obj_rel_insert_input + utility_lineup_id: uuid +} + +"""aggregate max on columns""" +type utility_playbook_steps_max_fields { + assigned_steam_id: bigint + created_at: timestamptz + id: uuid + note: String + offset_ms: Int + playbook_id: uuid + step_order: Int + utility_lineup_id: uuid +} + +""" +order by max() on columns of table "utility_playbook_steps" +""" +input utility_playbook_steps_max_order_by { + assigned_steam_id: order_by + created_at: order_by + id: order_by + note: order_by + offset_ms: order_by + playbook_id: order_by + step_order: order_by + utility_lineup_id: order_by +} + +"""aggregate min on columns""" +type utility_playbook_steps_min_fields { + assigned_steam_id: bigint + created_at: timestamptz + id: uuid + note: String + offset_ms: Int + playbook_id: uuid + step_order: Int + utility_lineup_id: uuid +} + +""" +order by min() on columns of table "utility_playbook_steps" +""" +input utility_playbook_steps_min_order_by { + assigned_steam_id: order_by + created_at: order_by + id: order_by + note: order_by + offset_ms: order_by + playbook_id: order_by + step_order: order_by + utility_lineup_id: order_by +} + +""" +response of any mutation on the table "utility_playbook_steps" +""" +type utility_playbook_steps_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [utility_playbook_steps!]! +} + +""" +on_conflict condition type for table "utility_playbook_steps" +""" +input utility_playbook_steps_on_conflict { + constraint: utility_playbook_steps_constraint! + update_columns: [utility_playbook_steps_update_column!]! = [] + where: utility_playbook_steps_bool_exp +} + +"""Ordering options when selecting data from "utility_playbook_steps".""" +input utility_playbook_steps_order_by { + assigned_player: players_order_by + assigned_steam_id: order_by + created_at: order_by + id: order_by + note: order_by + offset_ms: order_by + playbook: utility_playbooks_order_by + playbook_id: order_by + step_order: order_by + utility_lineup: utility_lineups_order_by + utility_lineup_id: order_by +} + +"""primary key columns input for table: utility_playbook_steps""" +input utility_playbook_steps_pk_columns_input { + id: uuid! +} + +""" +select columns of table "utility_playbook_steps" +""" +enum utility_playbook_steps_select_column { + """column name""" + assigned_steam_id + + """column name""" + created_at + + """column name""" + id + + """column name""" + note + + """column name""" + offset_ms + + """column name""" + playbook_id + + """column name""" + step_order + + """column name""" + utility_lineup_id +} + +""" +input type for updating data in table "utility_playbook_steps" +""" +input utility_playbook_steps_set_input { + assigned_steam_id: bigint + created_at: timestamptz + id: uuid + note: String + offset_ms: Int + playbook_id: uuid + step_order: Int + utility_lineup_id: uuid +} + +"""aggregate stddev on columns""" +type utility_playbook_steps_stddev_fields { + assigned_steam_id: Float + offset_ms: Float + step_order: Float +} + +""" +order by stddev() on columns of table "utility_playbook_steps" +""" +input utility_playbook_steps_stddev_order_by { + assigned_steam_id: order_by + offset_ms: order_by + step_order: order_by +} + +"""aggregate stddev_pop on columns""" +type utility_playbook_steps_stddev_pop_fields { + assigned_steam_id: Float + offset_ms: Float + step_order: Float +} + +""" +order by stddev_pop() on columns of table "utility_playbook_steps" +""" +input utility_playbook_steps_stddev_pop_order_by { + assigned_steam_id: order_by + offset_ms: order_by + step_order: order_by +} + +"""aggregate stddev_samp on columns""" +type utility_playbook_steps_stddev_samp_fields { + assigned_steam_id: Float + offset_ms: Float + step_order: Float +} + +""" +order by stddev_samp() on columns of table "utility_playbook_steps" +""" +input utility_playbook_steps_stddev_samp_order_by { + assigned_steam_id: order_by + offset_ms: order_by + step_order: order_by +} + +""" +Streaming cursor of the table "utility_playbook_steps" +""" +input utility_playbook_steps_stream_cursor_input { + """Stream column input with initial value""" + initial_value: utility_playbook_steps_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input utility_playbook_steps_stream_cursor_value_input { + assigned_steam_id: bigint + created_at: timestamptz + id: uuid + note: String + offset_ms: Int + playbook_id: uuid + step_order: Int + utility_lineup_id: uuid +} + +"""aggregate sum on columns""" +type utility_playbook_steps_sum_fields { + assigned_steam_id: bigint + offset_ms: Int + step_order: Int +} + +""" +order by sum() on columns of table "utility_playbook_steps" +""" +input utility_playbook_steps_sum_order_by { + assigned_steam_id: order_by + offset_ms: order_by + step_order: order_by +} + +""" +update columns of table "utility_playbook_steps" +""" +enum utility_playbook_steps_update_column { + """column name""" + assigned_steam_id + + """column name""" + created_at + + """column name""" + id + + """column name""" + note + + """column name""" + offset_ms + + """column name""" + playbook_id + + """column name""" + step_order + + """column name""" + utility_lineup_id +} + +input utility_playbook_steps_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: utility_playbook_steps_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_playbook_steps_set_input + + """filter the rows which have to be updated""" + where: utility_playbook_steps_bool_exp! +} + +"""aggregate var_pop on columns""" +type utility_playbook_steps_var_pop_fields { + assigned_steam_id: Float + offset_ms: Float + step_order: Float +} + +""" +order by var_pop() on columns of table "utility_playbook_steps" +""" +input utility_playbook_steps_var_pop_order_by { + assigned_steam_id: order_by + offset_ms: order_by + step_order: order_by +} + +"""aggregate var_samp on columns""" +type utility_playbook_steps_var_samp_fields { + assigned_steam_id: Float + offset_ms: Float + step_order: Float +} + +""" +order by var_samp() on columns of table "utility_playbook_steps" +""" +input utility_playbook_steps_var_samp_order_by { + assigned_steam_id: order_by + offset_ms: order_by + step_order: order_by +} + +"""aggregate variance on columns""" +type utility_playbook_steps_variance_fields { + assigned_steam_id: Float + offset_ms: Float + step_order: Float +} + +""" +order by variance() on columns of table "utility_playbook_steps" +""" +input utility_playbook_steps_variance_order_by { + assigned_steam_id: order_by + offset_ms: order_by + step_order: order_by +} + +""" +columns and relationships of "utility_playbooks" +""" +type utility_playbooks { + """ + A computed field, executes function "can_edit_utility_playbook" + """ + can_edit: Boolean + + """ + A computed field, executes function "can_view_utility_playbook" + """ + can_view: Boolean + created_at: timestamptz! + description: String + id: uuid! + map_name: String! + name: String! + + """An object relationship""" + owner: players! + owner_steam_id: bigint! + side: e_sides_enum! + + """An array relationship""" + steps( + """distinct select on columns""" + distinct_on: [utility_playbook_steps_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: [utility_playbook_steps_order_by!] + + """filter the rows returned""" + where: utility_playbook_steps_bool_exp + ): [utility_playbook_steps!]! + + """An aggregate relationship""" + steps_aggregate( + """distinct select on columns""" + distinct_on: [utility_playbook_steps_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: [utility_playbook_steps_order_by!] + + """filter the rows returned""" + where: utility_playbook_steps_bool_exp + ): utility_playbook_steps_aggregate! + + """An object relationship""" + team: teams + team_id: uuid + updated_at: timestamptz! + visibility: e_utility_visibility_enum! +} + +""" +aggregated selection of "utility_playbooks" +""" +type utility_playbooks_aggregate { + aggregate: utility_playbooks_aggregate_fields + nodes: [utility_playbooks!]! +} + +""" +aggregate fields of "utility_playbooks" +""" +type utility_playbooks_aggregate_fields { + avg: utility_playbooks_avg_fields + count(columns: [utility_playbooks_select_column!], distinct: Boolean): Int! + max: utility_playbooks_max_fields + min: utility_playbooks_min_fields + stddev: utility_playbooks_stddev_fields + stddev_pop: utility_playbooks_stddev_pop_fields + stddev_samp: utility_playbooks_stddev_samp_fields + sum: utility_playbooks_sum_fields + var_pop: utility_playbooks_var_pop_fields + var_samp: utility_playbooks_var_samp_fields + variance: utility_playbooks_variance_fields +} + +"""aggregate avg on columns""" +type utility_playbooks_avg_fields { + owner_steam_id: Float +} + +""" +Boolean expression to filter rows from the table "utility_playbooks". All fields are combined with a logical 'AND'. +""" +input utility_playbooks_bool_exp { + _and: [utility_playbooks_bool_exp!] + _not: utility_playbooks_bool_exp + _or: [utility_playbooks_bool_exp!] + can_edit: Boolean_comparison_exp + can_view: Boolean_comparison_exp + created_at: timestamptz_comparison_exp + description: String_comparison_exp + id: uuid_comparison_exp + map_name: String_comparison_exp + name: String_comparison_exp + owner: players_bool_exp + owner_steam_id: bigint_comparison_exp + side: e_sides_enum_comparison_exp + steps: utility_playbook_steps_bool_exp + steps_aggregate: utility_playbook_steps_aggregate_bool_exp + team: teams_bool_exp + team_id: uuid_comparison_exp + updated_at: timestamptz_comparison_exp + visibility: e_utility_visibility_enum_comparison_exp +} + +""" +unique or primary key constraints on table "utility_playbooks" +""" +enum utility_playbooks_constraint { + """ + unique or primary key constraint on columns "id" + """ + utility_playbooks_pkey +} + +""" +input type for incrementing numeric columns in table "utility_playbooks" +""" +input utility_playbooks_inc_input { + owner_steam_id: bigint +} + +""" +input type for inserting data into table "utility_playbooks" +""" +input utility_playbooks_insert_input { + created_at: timestamptz + description: String + id: uuid + map_name: String + name: String + owner: players_obj_rel_insert_input + owner_steam_id: bigint + side: e_sides_enum + steps: utility_playbook_steps_arr_rel_insert_input + team: teams_obj_rel_insert_input + team_id: uuid + updated_at: timestamptz + visibility: e_utility_visibility_enum +} + +"""aggregate max on columns""" +type utility_playbooks_max_fields { + created_at: timestamptz + description: String + id: uuid + map_name: String + name: String + owner_steam_id: bigint + team_id: uuid + updated_at: timestamptz +} + +"""aggregate min on columns""" +type utility_playbooks_min_fields { + created_at: timestamptz + description: String + id: uuid + map_name: String + name: String + owner_steam_id: bigint + team_id: uuid + updated_at: timestamptz +} + +""" +response of any mutation on the table "utility_playbooks" +""" +type utility_playbooks_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [utility_playbooks!]! +} + +""" +input type for inserting object relation for remote table "utility_playbooks" +""" +input utility_playbooks_obj_rel_insert_input { + data: utility_playbooks_insert_input! + + """upsert condition""" + on_conflict: utility_playbooks_on_conflict +} + +""" +on_conflict condition type for table "utility_playbooks" +""" +input utility_playbooks_on_conflict { + constraint: utility_playbooks_constraint! + update_columns: [utility_playbooks_update_column!]! = [] + where: utility_playbooks_bool_exp +} + +"""Ordering options when selecting data from "utility_playbooks".""" +input utility_playbooks_order_by { + can_edit: order_by + can_view: order_by + created_at: order_by + description: order_by + id: order_by + map_name: order_by + name: order_by + owner: players_order_by + owner_steam_id: order_by + side: order_by + steps_aggregate: utility_playbook_steps_aggregate_order_by + team: teams_order_by + team_id: order_by + updated_at: order_by + visibility: order_by +} + +"""primary key columns input for table: utility_playbooks""" +input utility_playbooks_pk_columns_input { + id: uuid! +} + +""" +select columns of table "utility_playbooks" +""" +enum utility_playbooks_select_column { + """column name""" + created_at + + """column name""" + description + + """column name""" + id + + """column name""" + map_name + + """column name""" + name + + """column name""" + owner_steam_id + + """column name""" + side + + """column name""" + team_id + + """column name""" + updated_at + + """column name""" + visibility +} + +""" +input type for updating data in table "utility_playbooks" +""" +input utility_playbooks_set_input { + created_at: timestamptz + description: String + id: uuid + map_name: String + name: String + owner_steam_id: bigint + side: e_sides_enum + team_id: uuid + updated_at: timestamptz + visibility: e_utility_visibility_enum +} + +"""aggregate stddev on columns""" +type utility_playbooks_stddev_fields { + owner_steam_id: Float +} + +"""aggregate stddev_pop on columns""" +type utility_playbooks_stddev_pop_fields { + owner_steam_id: Float +} + +"""aggregate stddev_samp on columns""" +type utility_playbooks_stddev_samp_fields { + owner_steam_id: Float +} + +""" +Streaming cursor of the table "utility_playbooks" +""" +input utility_playbooks_stream_cursor_input { + """Stream column input with initial value""" + initial_value: utility_playbooks_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input utility_playbooks_stream_cursor_value_input { + created_at: timestamptz + description: String + id: uuid + map_name: String + name: String + owner_steam_id: bigint + side: e_sides_enum + team_id: uuid + updated_at: timestamptz + visibility: e_utility_visibility_enum +} + +"""aggregate sum on columns""" +type utility_playbooks_sum_fields { + owner_steam_id: bigint +} + +""" +update columns of table "utility_playbooks" +""" +enum utility_playbooks_update_column { + """column name""" + created_at + + """column name""" + description + + """column name""" + id + + """column name""" + map_name + + """column name""" + name + + """column name""" + owner_steam_id + + """column name""" + side + + """column name""" + team_id + + """column name""" + updated_at + + """column name""" + visibility +} + +input utility_playbooks_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: utility_playbooks_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_playbooks_set_input + + """filter the rows which have to be updated""" + where: utility_playbooks_bool_exp! +} + +"""aggregate var_pop on columns""" +type utility_playbooks_var_pop_fields { + owner_steam_id: Float +} + +"""aggregate var_samp on columns""" +type utility_playbooks_var_samp_fields { + owner_steam_id: Float +} + +"""aggregate variance on columns""" +type utility_playbooks_variance_fields { + owner_steam_id: Float +} + +""" +columns and relationships of "utility_practice_invites" +""" +type utility_practice_invites { + created_at: timestamptz! + + """An object relationship""" + invited_by: players + invited_by_steam_id: bigint + + """An object relationship""" + player: players! + + """An object relationship""" + session: utility_practice_sessions! + steam_id: bigint! + utility_practice_session_id: uuid! +} + +""" +aggregated selection of "utility_practice_invites" +""" +type utility_practice_invites_aggregate { + aggregate: utility_practice_invites_aggregate_fields + nodes: [utility_practice_invites!]! +} + +input utility_practice_invites_aggregate_bool_exp { + count: utility_practice_invites_aggregate_bool_exp_count +} + +input utility_practice_invites_aggregate_bool_exp_count { + arguments: [utility_practice_invites_select_column!] + distinct: Boolean + filter: utility_practice_invites_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "utility_practice_invites" +""" +type utility_practice_invites_aggregate_fields { + avg: utility_practice_invites_avg_fields + count(columns: [utility_practice_invites_select_column!], distinct: Boolean): Int! + max: utility_practice_invites_max_fields + min: utility_practice_invites_min_fields + stddev: utility_practice_invites_stddev_fields + stddev_pop: utility_practice_invites_stddev_pop_fields + stddev_samp: utility_practice_invites_stddev_samp_fields + sum: utility_practice_invites_sum_fields + var_pop: utility_practice_invites_var_pop_fields + var_samp: utility_practice_invites_var_samp_fields + variance: utility_practice_invites_variance_fields +} + +""" +order by aggregate values of table "utility_practice_invites" +""" +input utility_practice_invites_aggregate_order_by { + avg: utility_practice_invites_avg_order_by + count: order_by + max: utility_practice_invites_max_order_by + min: utility_practice_invites_min_order_by + stddev: utility_practice_invites_stddev_order_by + stddev_pop: utility_practice_invites_stddev_pop_order_by + stddev_samp: utility_practice_invites_stddev_samp_order_by + sum: utility_practice_invites_sum_order_by + var_pop: utility_practice_invites_var_pop_order_by + var_samp: utility_practice_invites_var_samp_order_by + variance: utility_practice_invites_variance_order_by +} + +""" +input type for inserting array relation for remote table "utility_practice_invites" +""" +input utility_practice_invites_arr_rel_insert_input { + data: [utility_practice_invites_insert_input!]! + + """upsert condition""" + on_conflict: utility_practice_invites_on_conflict +} + +"""aggregate avg on columns""" +type utility_practice_invites_avg_fields { + invited_by_steam_id: Float + steam_id: Float +} + +""" +order by avg() on columns of table "utility_practice_invites" +""" +input utility_practice_invites_avg_order_by { + invited_by_steam_id: order_by + steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "utility_practice_invites". All fields are combined with a logical 'AND'. +""" +input utility_practice_invites_bool_exp { + _and: [utility_practice_invites_bool_exp!] + _not: utility_practice_invites_bool_exp + _or: [utility_practice_invites_bool_exp!] + created_at: timestamptz_comparison_exp + invited_by: players_bool_exp + invited_by_steam_id: bigint_comparison_exp + player: players_bool_exp + session: utility_practice_sessions_bool_exp + steam_id: bigint_comparison_exp + utility_practice_session_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "utility_practice_invites" +""" +enum utility_practice_invites_constraint { + """ + unique or primary key constraint on columns "steam_id", "utility_practice_session_id" + """ + utility_practice_invites_pkey +} + +""" +input type for incrementing numeric columns in table "utility_practice_invites" +""" +input utility_practice_invites_inc_input { + invited_by_steam_id: bigint + steam_id: bigint +} + +""" +input type for inserting data into table "utility_practice_invites" +""" +input utility_practice_invites_insert_input { + created_at: timestamptz + invited_by: players_obj_rel_insert_input + invited_by_steam_id: bigint + player: players_obj_rel_insert_input + session: utility_practice_sessions_obj_rel_insert_input + steam_id: bigint + utility_practice_session_id: uuid +} + +"""aggregate max on columns""" +type utility_practice_invites_max_fields { + created_at: timestamptz + invited_by_steam_id: bigint + steam_id: bigint + utility_practice_session_id: uuid +} + +""" +order by max() on columns of table "utility_practice_invites" +""" +input utility_practice_invites_max_order_by { + created_at: order_by + invited_by_steam_id: order_by + steam_id: order_by + utility_practice_session_id: order_by +} + +"""aggregate min on columns""" +type utility_practice_invites_min_fields { + created_at: timestamptz + invited_by_steam_id: bigint + steam_id: bigint + utility_practice_session_id: uuid +} + +""" +order by min() on columns of table "utility_practice_invites" +""" +input utility_practice_invites_min_order_by { + created_at: order_by + invited_by_steam_id: order_by + steam_id: order_by + utility_practice_session_id: order_by +} + +""" +response of any mutation on the table "utility_practice_invites" +""" +type utility_practice_invites_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [utility_practice_invites!]! +} + +""" +on_conflict condition type for table "utility_practice_invites" +""" +input utility_practice_invites_on_conflict { + constraint: utility_practice_invites_constraint! + update_columns: [utility_practice_invites_update_column!]! = [] + where: utility_practice_invites_bool_exp +} + +"""Ordering options when selecting data from "utility_practice_invites".""" +input utility_practice_invites_order_by { + created_at: order_by + invited_by: players_order_by + invited_by_steam_id: order_by + player: players_order_by + session: utility_practice_sessions_order_by + steam_id: order_by + utility_practice_session_id: order_by +} + +"""primary key columns input for table: utility_practice_invites""" +input utility_practice_invites_pk_columns_input { + steam_id: bigint! + utility_practice_session_id: uuid! +} + +""" +select columns of table "utility_practice_invites" +""" +enum utility_practice_invites_select_column { + """column name""" + created_at + + """column name""" + invited_by_steam_id + + """column name""" + steam_id + + """column name""" + utility_practice_session_id +} + +""" +input type for updating data in table "utility_practice_invites" +""" +input utility_practice_invites_set_input { + created_at: timestamptz + invited_by_steam_id: bigint + steam_id: bigint + utility_practice_session_id: uuid +} + +"""aggregate stddev on columns""" +type utility_practice_invites_stddev_fields { + invited_by_steam_id: Float + steam_id: Float +} + +""" +order by stddev() on columns of table "utility_practice_invites" +""" +input utility_practice_invites_stddev_order_by { + invited_by_steam_id: order_by + steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type utility_practice_invites_stddev_pop_fields { + invited_by_steam_id: Float + steam_id: Float +} + +""" +order by stddev_pop() on columns of table "utility_practice_invites" +""" +input utility_practice_invites_stddev_pop_order_by { + invited_by_steam_id: order_by + steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type utility_practice_invites_stddev_samp_fields { + invited_by_steam_id: Float + steam_id: Float +} + +""" +order by stddev_samp() on columns of table "utility_practice_invites" +""" +input utility_practice_invites_stddev_samp_order_by { + invited_by_steam_id: order_by + steam_id: order_by +} + +""" +Streaming cursor of the table "utility_practice_invites" +""" +input utility_practice_invites_stream_cursor_input { + """Stream column input with initial value""" + initial_value: utility_practice_invites_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input utility_practice_invites_stream_cursor_value_input { + created_at: timestamptz + invited_by_steam_id: bigint + steam_id: bigint + utility_practice_session_id: uuid +} + +"""aggregate sum on columns""" +type utility_practice_invites_sum_fields { + invited_by_steam_id: bigint + steam_id: bigint +} + +""" +order by sum() on columns of table "utility_practice_invites" +""" +input utility_practice_invites_sum_order_by { + invited_by_steam_id: order_by + steam_id: order_by +} + +""" +update columns of table "utility_practice_invites" +""" +enum utility_practice_invites_update_column { + """column name""" + created_at + + """column name""" + invited_by_steam_id + + """column name""" + steam_id + + """column name""" + utility_practice_session_id +} + +input utility_practice_invites_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: utility_practice_invites_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_practice_invites_set_input + + """filter the rows which have to be updated""" + where: utility_practice_invites_bool_exp! +} + +"""aggregate var_pop on columns""" +type utility_practice_invites_var_pop_fields { + invited_by_steam_id: Float + steam_id: Float +} + +""" +order by var_pop() on columns of table "utility_practice_invites" +""" +input utility_practice_invites_var_pop_order_by { + invited_by_steam_id: order_by + steam_id: order_by +} + +"""aggregate var_samp on columns""" +type utility_practice_invites_var_samp_fields { + invited_by_steam_id: Float + steam_id: Float +} + +""" +order by var_samp() on columns of table "utility_practice_invites" +""" +input utility_practice_invites_var_samp_order_by { + invited_by_steam_id: order_by + steam_id: order_by +} + +"""aggregate variance on columns""" +type utility_practice_invites_variance_fields { + invited_by_steam_id: Float + steam_id: Float +} + +""" +order by variance() on columns of table "utility_practice_invites" +""" +input utility_practice_invites_variance_order_by { + invited_by_steam_id: order_by + steam_id: order_by +} + +""" +columns and relationships of "utility_practice_sessions" +""" +type utility_practice_sessions { + access: e_utility_practice_access_enum! + + """ + A computed field, executes function "can_manage_utility_practice_session" + """ + can_manage: Boolean + + """ + A computed field, executes function "can_view_utility_practice_session" + """ + can_view: Boolean + + """An object relationship""" + collection: utility_collections + collection_id: uuid + + """ + A computed field, executes function "utility_practice_connection_link" + """ + connection_link: String + + """ + A computed field, executes function "utility_practice_connection_string" + """ + connection_string: String + created_at: timestamptz! + + """An object relationship""" + e_utility_practice_status: e_utility_practice_statuses! + empty_since: timestamptz + expires_at: timestamptz + failure_reason: String + first_joined_at: timestamptz + + """An object relationship""" + host: players + host_steam_id: bigint + id: uuid! + invite_code: String! + + """An array relationship""" + invites( + """distinct select on columns""" + distinct_on: [utility_practice_invites_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: [utility_practice_invites_order_by!] + + """filter the rows returned""" + where: utility_practice_invites_bool_exp + ): [utility_practice_invites!]! + + """An aggregate relationship""" + invites_aggregate( + """distinct select on columns""" + distinct_on: [utility_practice_invites_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: [utility_practice_invites_order_by!] + + """filter the rows returned""" + where: utility_practice_invites_bool_exp + ): utility_practice_invites_aggregate! + + """ + A computed field, executes function "is_utility_practice_member" + """ + is_member: Boolean + is_open: Boolean! + is_render: Boolean! + last_occupied_at: timestamptz + map_changing_at: timestamptz + map_name: String! + + """An object relationship""" + match: matches + match_id: uuid + notify_when_ready: Boolean! + + """An object relationship""" + playbook: utility_playbooks + playbook_id: uuid + region: String + status: e_utility_practice_statuses_enum! + + """An object relationship""" + team: teams + team_id: uuid + updated_at: timestamptz! +} + +""" +aggregated selection of "utility_practice_sessions" +""" +type utility_practice_sessions_aggregate { + aggregate: utility_practice_sessions_aggregate_fields + nodes: [utility_practice_sessions!]! +} + +input utility_practice_sessions_aggregate_bool_exp { + bool_and: utility_practice_sessions_aggregate_bool_exp_bool_and + bool_or: utility_practice_sessions_aggregate_bool_exp_bool_or + count: utility_practice_sessions_aggregate_bool_exp_count +} + +input utility_practice_sessions_aggregate_bool_exp_bool_and { + arguments: utility_practice_sessions_select_column_utility_practice_sessions_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: utility_practice_sessions_bool_exp + predicate: Boolean_comparison_exp! +} + +input utility_practice_sessions_aggregate_bool_exp_bool_or { + arguments: utility_practice_sessions_select_column_utility_practice_sessions_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: utility_practice_sessions_bool_exp + predicate: Boolean_comparison_exp! +} + +input utility_practice_sessions_aggregate_bool_exp_count { + arguments: [utility_practice_sessions_select_column!] + distinct: Boolean + filter: utility_practice_sessions_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "utility_practice_sessions" +""" +type utility_practice_sessions_aggregate_fields { + avg: utility_practice_sessions_avg_fields + count(columns: [utility_practice_sessions_select_column!], distinct: Boolean): Int! + max: utility_practice_sessions_max_fields + min: utility_practice_sessions_min_fields + stddev: utility_practice_sessions_stddev_fields + stddev_pop: utility_practice_sessions_stddev_pop_fields + stddev_samp: utility_practice_sessions_stddev_samp_fields + sum: utility_practice_sessions_sum_fields + var_pop: utility_practice_sessions_var_pop_fields + var_samp: utility_practice_sessions_var_samp_fields + variance: utility_practice_sessions_variance_fields +} + +""" +order by aggregate values of table "utility_practice_sessions" +""" +input utility_practice_sessions_aggregate_order_by { + avg: utility_practice_sessions_avg_order_by + count: order_by + max: utility_practice_sessions_max_order_by + min: utility_practice_sessions_min_order_by + stddev: utility_practice_sessions_stddev_order_by + stddev_pop: utility_practice_sessions_stddev_pop_order_by + stddev_samp: utility_practice_sessions_stddev_samp_order_by + sum: utility_practice_sessions_sum_order_by + var_pop: utility_practice_sessions_var_pop_order_by + var_samp: utility_practice_sessions_var_samp_order_by + variance: utility_practice_sessions_variance_order_by +} + +""" +input type for inserting array relation for remote table "utility_practice_sessions" +""" +input utility_practice_sessions_arr_rel_insert_input { + data: [utility_practice_sessions_insert_input!]! + + """upsert condition""" + on_conflict: utility_practice_sessions_on_conflict +} + +"""aggregate avg on columns""" +type utility_practice_sessions_avg_fields { + host_steam_id: Float +} + +""" +order by avg() on columns of table "utility_practice_sessions" +""" +input utility_practice_sessions_avg_order_by { + host_steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "utility_practice_sessions". All fields are combined with a logical 'AND'. +""" +input utility_practice_sessions_bool_exp { + _and: [utility_practice_sessions_bool_exp!] + _not: utility_practice_sessions_bool_exp + _or: [utility_practice_sessions_bool_exp!] + access: e_utility_practice_access_enum_comparison_exp + can_manage: Boolean_comparison_exp + can_view: Boolean_comparison_exp + collection: utility_collections_bool_exp + collection_id: uuid_comparison_exp + connection_link: String_comparison_exp + connection_string: String_comparison_exp + created_at: timestamptz_comparison_exp + e_utility_practice_status: e_utility_practice_statuses_bool_exp + empty_since: timestamptz_comparison_exp + expires_at: timestamptz_comparison_exp + failure_reason: String_comparison_exp + first_joined_at: timestamptz_comparison_exp + host: players_bool_exp + host_steam_id: bigint_comparison_exp + id: uuid_comparison_exp + invite_code: String_comparison_exp + invites: utility_practice_invites_bool_exp + invites_aggregate: utility_practice_invites_aggregate_bool_exp + is_member: Boolean_comparison_exp + is_open: Boolean_comparison_exp + is_render: Boolean_comparison_exp + last_occupied_at: timestamptz_comparison_exp + map_changing_at: timestamptz_comparison_exp + map_name: String_comparison_exp + match: matches_bool_exp + match_id: uuid_comparison_exp + notify_when_ready: Boolean_comparison_exp + playbook: utility_playbooks_bool_exp + playbook_id: uuid_comparison_exp + region: String_comparison_exp + status: e_utility_practice_statuses_enum_comparison_exp + team: teams_bool_exp + team_id: uuid_comparison_exp + updated_at: timestamptz_comparison_exp +} + +""" +unique or primary key constraints on table "utility_practice_sessions" +""" +enum utility_practice_sessions_constraint { + """ + unique or primary key constraint on columns "invite_code" + """ + utility_practice_sessions_invite_code_idx + + """ + unique or primary key constraint on columns "match_id" + """ + utility_practice_sessions_match_key + + """ + unique or primary key constraint on columns "host_steam_id" + """ + utility_practice_sessions_one_live_per_host_idx + + """ + unique or primary key constraint on columns "id" + """ + utility_practice_sessions_pkey +} + +""" +input type for incrementing numeric columns in table "utility_practice_sessions" +""" +input utility_practice_sessions_inc_input { + host_steam_id: bigint +} + +""" +input type for inserting data into table "utility_practice_sessions" +""" +input utility_practice_sessions_insert_input { + access: e_utility_practice_access_enum + collection: utility_collections_obj_rel_insert_input + collection_id: uuid + created_at: timestamptz + e_utility_practice_status: e_utility_practice_statuses_obj_rel_insert_input + empty_since: timestamptz + expires_at: timestamptz + failure_reason: String + first_joined_at: timestamptz + host: players_obj_rel_insert_input + host_steam_id: bigint + id: uuid + invite_code: String + invites: utility_practice_invites_arr_rel_insert_input + is_open: Boolean + is_render: Boolean + last_occupied_at: timestamptz + map_changing_at: timestamptz + map_name: String + match: matches_obj_rel_insert_input + match_id: uuid + notify_when_ready: Boolean + playbook: utility_playbooks_obj_rel_insert_input + playbook_id: uuid + region: String + status: e_utility_practice_statuses_enum + team: teams_obj_rel_insert_input + team_id: uuid + updated_at: timestamptz +} + +"""aggregate max on columns""" +type utility_practice_sessions_max_fields { + collection_id: uuid + + """ + A computed field, executes function "utility_practice_connection_link" + """ + connection_link: String + + """ + A computed field, executes function "utility_practice_connection_string" + """ + connection_string: String + created_at: timestamptz + empty_since: timestamptz + expires_at: timestamptz + failure_reason: String + first_joined_at: timestamptz + host_steam_id: bigint + id: uuid + invite_code: String + last_occupied_at: timestamptz + map_changing_at: timestamptz + map_name: String + match_id: uuid + playbook_id: uuid + region: String + team_id: uuid + updated_at: timestamptz +} + +""" +order by max() on columns of table "utility_practice_sessions" +""" +input utility_practice_sessions_max_order_by { + collection_id: order_by + created_at: order_by + empty_since: order_by + expires_at: order_by + failure_reason: order_by + first_joined_at: order_by + host_steam_id: order_by + id: order_by + invite_code: order_by + last_occupied_at: order_by + map_changing_at: order_by + map_name: order_by + match_id: order_by + playbook_id: order_by + region: order_by + team_id: order_by + updated_at: order_by +} + +"""aggregate min on columns""" +type utility_practice_sessions_min_fields { + collection_id: uuid + + """ + A computed field, executes function "utility_practice_connection_link" + """ + connection_link: String + + """ + A computed field, executes function "utility_practice_connection_string" + """ + connection_string: String + created_at: timestamptz + empty_since: timestamptz + expires_at: timestamptz + failure_reason: String + first_joined_at: timestamptz + host_steam_id: bigint + id: uuid + invite_code: String + last_occupied_at: timestamptz + map_changing_at: timestamptz + map_name: String + match_id: uuid + playbook_id: uuid + region: String + team_id: uuid + updated_at: timestamptz +} + +""" +order by min() on columns of table "utility_practice_sessions" +""" +input utility_practice_sessions_min_order_by { + collection_id: order_by + created_at: order_by + empty_since: order_by + expires_at: order_by + failure_reason: order_by + first_joined_at: order_by + host_steam_id: order_by + id: order_by + invite_code: order_by + last_occupied_at: order_by + map_changing_at: order_by + map_name: order_by + match_id: order_by + playbook_id: order_by + region: order_by + team_id: order_by + updated_at: order_by +} + +""" +response of any mutation on the table "utility_practice_sessions" +""" +type utility_practice_sessions_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [utility_practice_sessions!]! +} + +""" +input type for inserting object relation for remote table "utility_practice_sessions" +""" +input utility_practice_sessions_obj_rel_insert_input { + data: utility_practice_sessions_insert_input! + + """upsert condition""" + on_conflict: utility_practice_sessions_on_conflict +} + +""" +on_conflict condition type for table "utility_practice_sessions" +""" +input utility_practice_sessions_on_conflict { + constraint: utility_practice_sessions_constraint! + update_columns: [utility_practice_sessions_update_column!]! = [] + where: utility_practice_sessions_bool_exp +} + +"""Ordering options when selecting data from "utility_practice_sessions".""" +input utility_practice_sessions_order_by { + access: order_by + can_manage: order_by + can_view: order_by + collection: utility_collections_order_by + collection_id: order_by + connection_link: order_by + connection_string: order_by + created_at: order_by + e_utility_practice_status: e_utility_practice_statuses_order_by + empty_since: order_by + expires_at: order_by + failure_reason: order_by + first_joined_at: order_by + host: players_order_by + host_steam_id: order_by + id: order_by + invite_code: order_by + invites_aggregate: utility_practice_invites_aggregate_order_by + is_member: order_by + is_open: order_by + is_render: order_by + last_occupied_at: order_by + map_changing_at: order_by + map_name: order_by + match: matches_order_by + match_id: order_by + notify_when_ready: order_by + playbook: utility_playbooks_order_by + playbook_id: order_by + region: order_by + status: order_by + team: teams_order_by + team_id: order_by + updated_at: order_by +} + +"""primary key columns input for table: utility_practice_sessions""" +input utility_practice_sessions_pk_columns_input { + id: uuid! +} + +""" +select columns of table "utility_practice_sessions" +""" +enum utility_practice_sessions_select_column { + """column name""" + access + + """column name""" + collection_id + + """column name""" + created_at + + """column name""" + empty_since + + """column name""" + expires_at + + """column name""" + failure_reason + + """column name""" + first_joined_at + + """column name""" + host_steam_id + + """column name""" + id + + """column name""" + invite_code + + """column name""" + is_open + + """column name""" + is_render + + """column name""" + last_occupied_at + + """column name""" + map_changing_at + + """column name""" + map_name + + """column name""" + match_id + + """column name""" + notify_when_ready + + """column name""" + playbook_id + + """column name""" + region + + """column name""" + status + + """column name""" + team_id + + """column name""" + updated_at +} + +""" +select "utility_practice_sessions_aggregate_bool_exp_bool_and_arguments_columns" columns of table "utility_practice_sessions" +""" +enum utility_practice_sessions_select_column_utility_practice_sessions_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + is_open + + """column name""" + is_render + + """column name""" + notify_when_ready +} + +""" +select "utility_practice_sessions_aggregate_bool_exp_bool_or_arguments_columns" columns of table "utility_practice_sessions" +""" +enum utility_practice_sessions_select_column_utility_practice_sessions_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + is_open + + """column name""" + is_render + + """column name""" + notify_when_ready +} + +""" +input type for updating data in table "utility_practice_sessions" +""" +input utility_practice_sessions_set_input { + access: e_utility_practice_access_enum + collection_id: uuid + created_at: timestamptz + empty_since: timestamptz + expires_at: timestamptz + failure_reason: String + first_joined_at: timestamptz + host_steam_id: bigint + id: uuid + invite_code: String + is_open: Boolean + is_render: Boolean + last_occupied_at: timestamptz + map_changing_at: timestamptz + map_name: String + match_id: uuid + notify_when_ready: Boolean + playbook_id: uuid + region: String + status: e_utility_practice_statuses_enum + team_id: uuid + updated_at: timestamptz +} + +"""aggregate stddev on columns""" +type utility_practice_sessions_stddev_fields { + host_steam_id: Float +} + +""" +order by stddev() on columns of table "utility_practice_sessions" +""" +input utility_practice_sessions_stddev_order_by { + host_steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type utility_practice_sessions_stddev_pop_fields { + host_steam_id: Float +} + +""" +order by stddev_pop() on columns of table "utility_practice_sessions" +""" +input utility_practice_sessions_stddev_pop_order_by { + host_steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type utility_practice_sessions_stddev_samp_fields { + host_steam_id: Float +} + +""" +order by stddev_samp() on columns of table "utility_practice_sessions" +""" +input utility_practice_sessions_stddev_samp_order_by { + host_steam_id: order_by +} + +""" +Streaming cursor of the table "utility_practice_sessions" +""" +input utility_practice_sessions_stream_cursor_input { + """Stream column input with initial value""" + initial_value: utility_practice_sessions_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input utility_practice_sessions_stream_cursor_value_input { + access: e_utility_practice_access_enum + collection_id: uuid + created_at: timestamptz + empty_since: timestamptz + expires_at: timestamptz + failure_reason: String + first_joined_at: timestamptz + host_steam_id: bigint + id: uuid + invite_code: String + is_open: Boolean + is_render: Boolean + last_occupied_at: timestamptz + map_changing_at: timestamptz + map_name: String + match_id: uuid + notify_when_ready: Boolean + playbook_id: uuid + region: String + status: e_utility_practice_statuses_enum + team_id: uuid + updated_at: timestamptz +} + +"""aggregate sum on columns""" +type utility_practice_sessions_sum_fields { + host_steam_id: bigint +} + +""" +order by sum() on columns of table "utility_practice_sessions" +""" +input utility_practice_sessions_sum_order_by { + host_steam_id: order_by +} + +""" +update columns of table "utility_practice_sessions" +""" +enum utility_practice_sessions_update_column { + """column name""" + access + + """column name""" + collection_id + + """column name""" + created_at + + """column name""" + empty_since + + """column name""" + expires_at + + """column name""" + failure_reason + + """column name""" + first_joined_at + + """column name""" + host_steam_id + + """column name""" + id + + """column name""" + invite_code + + """column name""" + is_open + + """column name""" + is_render + + """column name""" + last_occupied_at + + """column name""" + map_changing_at + + """column name""" + map_name + + """column name""" + match_id + + """column name""" + notify_when_ready + + """column name""" + playbook_id + + """column name""" + region + + """column name""" + status + + """column name""" + team_id + + """column name""" + updated_at +} + +input utility_practice_sessions_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: utility_practice_sessions_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: utility_practice_sessions_set_input + + """filter the rows which have to be updated""" + where: utility_practice_sessions_bool_exp! +} + +"""aggregate var_pop on columns""" +type utility_practice_sessions_var_pop_fields { + host_steam_id: Float +} + +""" +order by var_pop() on columns of table "utility_practice_sessions" +""" +input utility_practice_sessions_var_pop_order_by { + host_steam_id: order_by +} + +"""aggregate var_samp on columns""" +type utility_practice_sessions_var_samp_fields { + host_steam_id: Float +} + +""" +order by var_samp() on columns of table "utility_practice_sessions" +""" +input utility_practice_sessions_var_samp_order_by { + host_steam_id: order_by +} + +"""aggregate variance on columns""" +type utility_practice_sessions_variance_fields { + host_steam_id: Float +} + +""" +order by variance() on columns of table "utility_practice_sessions" +""" +input utility_practice_sessions_variance_order_by { + host_steam_id: order_by +} + +scalar uuid + +""" +Boolean expression to compare columns of type "uuid". All fields are combined with logical 'AND'. +""" +input uuid_array_comparison_exp { + """is the array contained in the given array value""" + _contained_in: [uuid!] + + """does the array contain the given value""" + _contains: [uuid!] + _eq: [uuid!] + _gt: [uuid!] + _gte: [uuid!] + _in: [[uuid!]!] + _is_null: Boolean + _lt: [uuid!] + _lte: [uuid!] + _neq: [uuid!] + _nin: [[uuid!]!] +} + +""" +Boolean expression to compare columns of type "uuid". All fields are combined with logical 'AND'. +""" +input uuid_comparison_exp { + _eq: uuid + _gt: uuid + _gte: uuid + _in: [uuid!] + _is_null: Boolean + _lt: uuid + _lte: uuid + _neq: uuid + _nin: [uuid!] +} + +""" +columns and relationships of "v_event_player_stats" +""" +type v_event_player_stats { + assists: Int + deaths: Int + + """An object relationship""" + event: events + event_id: uuid + headshot_percentage: float8 + headshots: Int + kdr: float8 + kills: Int + matches_played: Int + + """An object relationship""" + player: players + player_steam_id: bigint +} + +""" +aggregated selection of "v_event_player_stats" +""" +type v_event_player_stats_aggregate { + aggregate: v_event_player_stats_aggregate_fields + nodes: [v_event_player_stats!]! +} + +input v_event_player_stats_aggregate_bool_exp { + avg: v_event_player_stats_aggregate_bool_exp_avg + corr: v_event_player_stats_aggregate_bool_exp_corr + count: v_event_player_stats_aggregate_bool_exp_count + covar_samp: v_event_player_stats_aggregate_bool_exp_covar_samp + max: v_event_player_stats_aggregate_bool_exp_max + min: v_event_player_stats_aggregate_bool_exp_min + stddev_samp: v_event_player_stats_aggregate_bool_exp_stddev_samp + sum: v_event_player_stats_aggregate_bool_exp_sum + var_samp: v_event_player_stats_aggregate_bool_exp_var_samp +} + +input v_event_player_stats_aggregate_bool_exp_avg { + arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_avg_arguments_columns! + distinct: Boolean + filter: v_event_player_stats_bool_exp + predicate: float8_comparison_exp! +} + +input v_event_player_stats_aggregate_bool_exp_corr { + arguments: v_event_player_stats_aggregate_bool_exp_corr_arguments! + distinct: Boolean + filter: v_event_player_stats_bool_exp + predicate: float8_comparison_exp! +} + +input v_event_player_stats_aggregate_bool_exp_corr_arguments { + X: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_corr_arguments_columns! + Y: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_corr_arguments_columns! +} + +input v_event_player_stats_aggregate_bool_exp_count { + arguments: [v_event_player_stats_select_column!] + distinct: Boolean + filter: v_event_player_stats_bool_exp + predicate: Int_comparison_exp! +} + +input v_event_player_stats_aggregate_bool_exp_covar_samp { + arguments: v_event_player_stats_aggregate_bool_exp_covar_samp_arguments! + distinct: Boolean + filter: v_event_player_stats_bool_exp + predicate: float8_comparison_exp! +} + +input v_event_player_stats_aggregate_bool_exp_covar_samp_arguments { + X: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_covar_samp_arguments_columns! + Y: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_covar_samp_arguments_columns! +} + +input v_event_player_stats_aggregate_bool_exp_max { + arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_max_arguments_columns! + distinct: Boolean + filter: v_event_player_stats_bool_exp + predicate: float8_comparison_exp! +} + +input v_event_player_stats_aggregate_bool_exp_min { + arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_min_arguments_columns! + distinct: Boolean + filter: v_event_player_stats_bool_exp + predicate: float8_comparison_exp! +} + +input v_event_player_stats_aggregate_bool_exp_stddev_samp { + arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns! + distinct: Boolean + filter: v_event_player_stats_bool_exp + predicate: float8_comparison_exp! +} + +input v_event_player_stats_aggregate_bool_exp_sum { + arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_sum_arguments_columns! + distinct: Boolean + filter: v_event_player_stats_bool_exp + predicate: float8_comparison_exp! +} + +input v_event_player_stats_aggregate_bool_exp_var_samp { + arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_var_samp_arguments_columns! + distinct: Boolean + filter: v_event_player_stats_bool_exp + predicate: float8_comparison_exp! +} + +""" +aggregate fields of "v_event_player_stats" +""" +type v_event_player_stats_aggregate_fields { + avg: v_event_player_stats_avg_fields + count(columns: [v_event_player_stats_select_column!], distinct: Boolean): Int! + max: v_event_player_stats_max_fields + min: v_event_player_stats_min_fields + stddev: v_event_player_stats_stddev_fields + stddev_pop: v_event_player_stats_stddev_pop_fields + stddev_samp: v_event_player_stats_stddev_samp_fields + sum: v_event_player_stats_sum_fields + var_pop: v_event_player_stats_var_pop_fields + var_samp: v_event_player_stats_var_samp_fields + variance: v_event_player_stats_variance_fields +} + +""" +order by aggregate values of table "v_event_player_stats" +""" +input v_event_player_stats_aggregate_order_by { + avg: v_event_player_stats_avg_order_by + count: order_by + max: v_event_player_stats_max_order_by + min: v_event_player_stats_min_order_by + stddev: v_event_player_stats_stddev_order_by + stddev_pop: v_event_player_stats_stddev_pop_order_by + stddev_samp: v_event_player_stats_stddev_samp_order_by + sum: v_event_player_stats_sum_order_by + var_pop: v_event_player_stats_var_pop_order_by + var_samp: v_event_player_stats_var_samp_order_by + variance: v_event_player_stats_variance_order_by +} + +""" +input type for inserting array relation for remote table "v_event_player_stats" +""" +input v_event_player_stats_arr_rel_insert_input { + data: [v_event_player_stats_insert_input!]! +} + +"""aggregate avg on columns""" +type v_event_player_stats_avg_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kdr: Float + kills: Float + matches_played: Float + player_steam_id: Float +} + +""" +order by avg() on columns of table "v_event_player_stats" +""" +input v_event_player_stats_avg_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "v_event_player_stats". All fields are combined with a logical 'AND'. +""" +input v_event_player_stats_bool_exp { + _and: [v_event_player_stats_bool_exp!] + _not: v_event_player_stats_bool_exp + _or: [v_event_player_stats_bool_exp!] + assists: Int_comparison_exp + deaths: Int_comparison_exp + event: events_bool_exp + event_id: uuid_comparison_exp + headshot_percentage: float8_comparison_exp + headshots: Int_comparison_exp + kdr: float8_comparison_exp + kills: Int_comparison_exp + matches_played: Int_comparison_exp + player: players_bool_exp + player_steam_id: bigint_comparison_exp +} + +""" +input type for inserting data into table "v_event_player_stats" +""" +input v_event_player_stats_insert_input { + assists: Int + deaths: Int + event: events_obj_rel_insert_input + event_id: uuid + headshot_percentage: float8 + headshots: Int + kdr: float8 + kills: Int + matches_played: Int + player: players_obj_rel_insert_input + player_steam_id: bigint +} + +"""aggregate max on columns""" +type v_event_player_stats_max_fields { + assists: Int + deaths: Int + event_id: uuid + headshot_percentage: float8 + headshots: Int + kdr: float8 + kills: Int + matches_played: Int + player_steam_id: bigint +} + +""" +order by max() on columns of table "v_event_player_stats" +""" +input v_event_player_stats_max_order_by { + assists: order_by + deaths: order_by + event_id: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + +"""aggregate min on columns""" +type v_event_player_stats_min_fields { + assists: Int + deaths: Int + event_id: uuid + headshot_percentage: float8 + headshots: Int + kdr: float8 + kills: Int + matches_played: Int + player_steam_id: bigint +} + +""" +order by min() on columns of table "v_event_player_stats" +""" +input v_event_player_stats_min_order_by { + assists: order_by + deaths: order_by + event_id: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + +"""Ordering options when selecting data from "v_event_player_stats".""" +input v_event_player_stats_order_by { + assists: order_by + deaths: order_by + event: events_order_by + event_id: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player: players_order_by + player_steam_id: order_by +} + +""" +select columns of table "v_event_player_stats" +""" +enum v_event_player_stats_select_column { + """column name""" + assists + + """column name""" + deaths + + """column name""" + event_id + + """column name""" + headshot_percentage + + """column name""" + headshots + + """column name""" + kdr + + """column name""" + kills + + """column name""" + matches_played + + """column name""" + player_steam_id +} + +""" +select "v_event_player_stats_aggregate_bool_exp_avg_arguments_columns" columns of table "v_event_player_stats" +""" +enum v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_avg_arguments_columns { + """column name""" + headshot_percentage + + """column name""" + kdr +} + +""" +select "v_event_player_stats_aggregate_bool_exp_corr_arguments_columns" columns of table "v_event_player_stats" +""" +enum v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_corr_arguments_columns { + """column name""" + headshot_percentage + + """column name""" + kdr +} + +""" +select "v_event_player_stats_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "v_event_player_stats" +""" +enum v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_covar_samp_arguments_columns { + """column name""" + headshot_percentage + + """column name""" + kdr +} + +""" +select "v_event_player_stats_aggregate_bool_exp_max_arguments_columns" columns of table "v_event_player_stats" +""" +enum v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_max_arguments_columns { + """column name""" + headshot_percentage + + """column name""" + kdr +} + +""" +select "v_event_player_stats_aggregate_bool_exp_min_arguments_columns" columns of table "v_event_player_stats" +""" +enum v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_min_arguments_columns { + """column name""" + headshot_percentage + + """column name""" + kdr +} + +""" +select "v_event_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "v_event_player_stats" +""" +enum v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns { + """column name""" + headshot_percentage + + """column name""" + kdr +} + +""" +select "v_event_player_stats_aggregate_bool_exp_sum_arguments_columns" columns of table "v_event_player_stats" +""" +enum v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_sum_arguments_columns { + """column name""" + headshot_percentage + + """column name""" + kdr +} + +""" +select "v_event_player_stats_aggregate_bool_exp_var_samp_arguments_columns" columns of table "v_event_player_stats" +""" +enum v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_var_samp_arguments_columns { + """column name""" + headshot_percentage + + """column name""" + kdr +} + +"""aggregate stddev on columns""" +type v_event_player_stats_stddev_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kdr: Float + kills: Float + matches_played: Float + player_steam_id: Float +} + +""" +order by stddev() on columns of table "v_event_player_stats" +""" +input v_event_player_stats_stddev_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type v_event_player_stats_stddev_pop_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kdr: Float + kills: Float + matches_played: Float + player_steam_id: Float +} + +""" +order by stddev_pop() on columns of table "v_event_player_stats" +""" +input v_event_player_stats_stddev_pop_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type v_event_player_stats_stddev_samp_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kdr: Float + kills: Float + matches_played: Float + player_steam_id: Float +} + +""" +order by stddev_samp() on columns of table "v_event_player_stats" +""" +input v_event_player_stats_stddev_samp_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + +""" +Streaming cursor of the table "v_event_player_stats" +""" +input v_event_player_stats_stream_cursor_input { + """Stream column input with initial value""" + initial_value: v_event_player_stats_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input v_event_player_stats_stream_cursor_value_input { + assists: Int + deaths: Int + event_id: uuid + headshot_percentage: float8 + headshots: Int + kdr: float8 + kills: Int + matches_played: Int + player_steam_id: bigint +} + +"""aggregate sum on columns""" +type v_event_player_stats_sum_fields { + assists: Int + deaths: Int + headshot_percentage: float8 + headshots: Int + kdr: float8 + kills: Int + matches_played: Int + player_steam_id: bigint +} + +""" +order by sum() on columns of table "v_event_player_stats" +""" +input v_event_player_stats_sum_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + +"""aggregate var_pop on columns""" +type v_event_player_stats_var_pop_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kdr: Float + kills: Float + matches_played: Float + player_steam_id: Float +} + +""" +order by var_pop() on columns of table "v_event_player_stats" +""" +input v_event_player_stats_var_pop_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + +"""aggregate var_samp on columns""" +type v_event_player_stats_var_samp_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kdr: Float + kills: Float + matches_played: Float + player_steam_id: Float +} + +""" +order by var_samp() on columns of table "v_event_player_stats" +""" +input v_event_player_stats_var_samp_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + +"""aggregate variance on columns""" +type v_event_player_stats_variance_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kdr: Float + kills: Float + matches_played: Float + player_steam_id: Float +} + +""" +order by variance() on columns of table "v_event_player_stats" +""" +input v_event_player_stats_variance_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + +""" +columns and relationships of "v_gpu_pool_status" +""" +type v_gpu_pool_status { + demo_free_gpu_nodes: Int + demo_in_progress: Boolean + demo_total_gpu_nodes: Int + free_gpu_nodes: Int + free_gpu_nodes_for_batch: Int + highlights_in_progress: Boolean + id: Int + live_in_progress: Boolean + registered_gpu_nodes: Int + rendering_total_gpu_nodes: Int + renders_paused_for_active_match: Boolean + streaming_free_gpu_nodes: Int + streaming_total_gpu_nodes: Int + total_gpu_nodes: Int +} + +""" +aggregated selection of "v_gpu_pool_status" +""" +type v_gpu_pool_status_aggregate { + aggregate: v_gpu_pool_status_aggregate_fields + nodes: [v_gpu_pool_status!]! +} + +""" +aggregate fields of "v_gpu_pool_status" +""" +type v_gpu_pool_status_aggregate_fields { + avg: v_gpu_pool_status_avg_fields + count(columns: [v_gpu_pool_status_select_column!], distinct: Boolean): Int! + max: v_gpu_pool_status_max_fields + min: v_gpu_pool_status_min_fields + stddev: v_gpu_pool_status_stddev_fields + stddev_pop: v_gpu_pool_status_stddev_pop_fields + stddev_samp: v_gpu_pool_status_stddev_samp_fields + sum: v_gpu_pool_status_sum_fields + var_pop: v_gpu_pool_status_var_pop_fields + var_samp: v_gpu_pool_status_var_samp_fields + variance: v_gpu_pool_status_variance_fields +} + +"""aggregate avg on columns""" +type v_gpu_pool_status_avg_fields { + demo_free_gpu_nodes: Float + demo_total_gpu_nodes: Float + free_gpu_nodes: Float + free_gpu_nodes_for_batch: Float + id: Float + registered_gpu_nodes: Float + rendering_total_gpu_nodes: Float + streaming_free_gpu_nodes: Float + streaming_total_gpu_nodes: Float + total_gpu_nodes: Float +} + +""" +Boolean expression to filter rows from the table "v_gpu_pool_status". All fields are combined with a logical 'AND'. +""" +input v_gpu_pool_status_bool_exp { + _and: [v_gpu_pool_status_bool_exp!] + _not: v_gpu_pool_status_bool_exp + _or: [v_gpu_pool_status_bool_exp!] + demo_free_gpu_nodes: Int_comparison_exp + demo_in_progress: Boolean_comparison_exp + demo_total_gpu_nodes: Int_comparison_exp + free_gpu_nodes: Int_comparison_exp + free_gpu_nodes_for_batch: Int_comparison_exp + highlights_in_progress: Boolean_comparison_exp + id: Int_comparison_exp + live_in_progress: Boolean_comparison_exp + registered_gpu_nodes: Int_comparison_exp + rendering_total_gpu_nodes: Int_comparison_exp + renders_paused_for_active_match: Boolean_comparison_exp + streaming_free_gpu_nodes: Int_comparison_exp + streaming_total_gpu_nodes: Int_comparison_exp + total_gpu_nodes: Int_comparison_exp +} + +"""aggregate max on columns""" +type v_gpu_pool_status_max_fields { + demo_free_gpu_nodes: Int + demo_total_gpu_nodes: Int + free_gpu_nodes: Int + free_gpu_nodes_for_batch: Int + id: Int + registered_gpu_nodes: Int + rendering_total_gpu_nodes: Int + streaming_free_gpu_nodes: Int + streaming_total_gpu_nodes: Int + total_gpu_nodes: Int +} + +"""aggregate min on columns""" +type v_gpu_pool_status_min_fields { + demo_free_gpu_nodes: Int + demo_total_gpu_nodes: Int + free_gpu_nodes: Int + free_gpu_nodes_for_batch: Int + id: Int + registered_gpu_nodes: Int + rendering_total_gpu_nodes: Int + streaming_free_gpu_nodes: Int + streaming_total_gpu_nodes: Int + total_gpu_nodes: Int +} + +"""Ordering options when selecting data from "v_gpu_pool_status".""" +input v_gpu_pool_status_order_by { + demo_free_gpu_nodes: order_by + demo_in_progress: order_by + demo_total_gpu_nodes: order_by + free_gpu_nodes: order_by + free_gpu_nodes_for_batch: order_by + highlights_in_progress: order_by + id: order_by + live_in_progress: order_by + registered_gpu_nodes: order_by + rendering_total_gpu_nodes: order_by + renders_paused_for_active_match: order_by + streaming_free_gpu_nodes: order_by + streaming_total_gpu_nodes: order_by + total_gpu_nodes: order_by +} + +""" +select columns of table "v_gpu_pool_status" +""" +enum v_gpu_pool_status_select_column { + """column name""" + demo_free_gpu_nodes + + """column name""" + demo_in_progress + + """column name""" + demo_total_gpu_nodes + + """column name""" + free_gpu_nodes + + """column name""" + free_gpu_nodes_for_batch + + """column name""" + highlights_in_progress + + """column name""" + id + + """column name""" + live_in_progress + + """column name""" + registered_gpu_nodes + + """column name""" + rendering_total_gpu_nodes + + """column name""" + renders_paused_for_active_match + + """column name""" + streaming_free_gpu_nodes + + """column name""" + streaming_total_gpu_nodes + + """column name""" + total_gpu_nodes +} + +"""aggregate stddev on columns""" +type v_gpu_pool_status_stddev_fields { + demo_free_gpu_nodes: Float + demo_total_gpu_nodes: Float + free_gpu_nodes: Float + free_gpu_nodes_for_batch: Float + id: Float + registered_gpu_nodes: Float + rendering_total_gpu_nodes: Float + streaming_free_gpu_nodes: Float + streaming_total_gpu_nodes: Float + total_gpu_nodes: Float +} + +"""aggregate stddev_pop on columns""" +type v_gpu_pool_status_stddev_pop_fields { + demo_free_gpu_nodes: Float + demo_total_gpu_nodes: Float + free_gpu_nodes: Float + free_gpu_nodes_for_batch: Float + id: Float + registered_gpu_nodes: Float + rendering_total_gpu_nodes: Float + streaming_free_gpu_nodes: Float + streaming_total_gpu_nodes: Float + total_gpu_nodes: Float +} + +"""aggregate stddev_samp on columns""" +type v_gpu_pool_status_stddev_samp_fields { + demo_free_gpu_nodes: Float + demo_total_gpu_nodes: Float + free_gpu_nodes: Float + free_gpu_nodes_for_batch: Float + id: Float + registered_gpu_nodes: Float + rendering_total_gpu_nodes: Float + streaming_free_gpu_nodes: Float + streaming_total_gpu_nodes: Float + total_gpu_nodes: Float +} + +""" +Streaming cursor of the table "v_gpu_pool_status" +""" +input v_gpu_pool_status_stream_cursor_input { + """Stream column input with initial value""" + initial_value: v_gpu_pool_status_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input v_gpu_pool_status_stream_cursor_value_input { + demo_free_gpu_nodes: Int + demo_in_progress: Boolean + demo_total_gpu_nodes: Int + free_gpu_nodes: Int + free_gpu_nodes_for_batch: Int + highlights_in_progress: Boolean + id: Int + live_in_progress: Boolean + registered_gpu_nodes: Int + rendering_total_gpu_nodes: Int + renders_paused_for_active_match: Boolean + streaming_free_gpu_nodes: Int + streaming_total_gpu_nodes: Int + total_gpu_nodes: Int +} + +"""aggregate sum on columns""" +type v_gpu_pool_status_sum_fields { + demo_free_gpu_nodes: Int + demo_total_gpu_nodes: Int + free_gpu_nodes: Int + free_gpu_nodes_for_batch: Int + id: Int + registered_gpu_nodes: Int + rendering_total_gpu_nodes: Int + streaming_free_gpu_nodes: Int + streaming_total_gpu_nodes: Int + total_gpu_nodes: Int +} + +"""aggregate var_pop on columns""" +type v_gpu_pool_status_var_pop_fields { + demo_free_gpu_nodes: Float + demo_total_gpu_nodes: Float + free_gpu_nodes: Float + free_gpu_nodes_for_batch: Float + id: Float + registered_gpu_nodes: Float + rendering_total_gpu_nodes: Float + streaming_free_gpu_nodes: Float + streaming_total_gpu_nodes: Float + total_gpu_nodes: Float +} + +"""aggregate var_samp on columns""" +type v_gpu_pool_status_var_samp_fields { + demo_free_gpu_nodes: Float + demo_total_gpu_nodes: Float + free_gpu_nodes: Float + free_gpu_nodes_for_batch: Float + id: Float + registered_gpu_nodes: Float + rendering_total_gpu_nodes: Float + streaming_free_gpu_nodes: Float + streaming_total_gpu_nodes: Float + total_gpu_nodes: Float +} + +"""aggregate variance on columns""" +type v_gpu_pool_status_variance_fields { + demo_free_gpu_nodes: Float + demo_total_gpu_nodes: Float + free_gpu_nodes: Float + free_gpu_nodes_for_batch: Float + id: Float + registered_gpu_nodes: Float + rendering_total_gpu_nodes: Float + streaming_free_gpu_nodes: Float + streaming_total_gpu_nodes: Float + total_gpu_nodes: Float +} + +""" +columns and relationships of "v_league_division_standings" +""" +type v_league_division_standings { + head_to_head_match_wins: Int + head_to_head_rounds_won: Int + league_division_id: uuid + league_season_division_id: uuid + league_season_id: uuid + + """An object relationship""" + league_team: league_teams + league_team_id: uuid + league_team_season_id: uuid + losses: Int + maps_lost: Int + maps_won: Int + matches_played: Int + matches_remaining: Int + rank: Int + round_diff: Int + rounds_lost: Int + rounds_won: Int + + """An object relationship""" + season_division: league_season_divisions + + """An object relationship""" + team_season: league_team_seasons + tournament_team_id: uuid + wins: Int +} + +""" +aggregated selection of "v_league_division_standings" +""" +type v_league_division_standings_aggregate { + aggregate: v_league_division_standings_aggregate_fields + nodes: [v_league_division_standings!]! +} + +input v_league_division_standings_aggregate_bool_exp { + count: v_league_division_standings_aggregate_bool_exp_count +} + +input v_league_division_standings_aggregate_bool_exp_count { + arguments: [v_league_division_standings_select_column!] + distinct: Boolean + filter: v_league_division_standings_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "v_league_division_standings" +""" +type v_league_division_standings_aggregate_fields { + avg: v_league_division_standings_avg_fields + count(columns: [v_league_division_standings_select_column!], distinct: Boolean): Int! + max: v_league_division_standings_max_fields + min: v_league_division_standings_min_fields + stddev: v_league_division_standings_stddev_fields + stddev_pop: v_league_division_standings_stddev_pop_fields + stddev_samp: v_league_division_standings_stddev_samp_fields + sum: v_league_division_standings_sum_fields + var_pop: v_league_division_standings_var_pop_fields + var_samp: v_league_division_standings_var_samp_fields + variance: v_league_division_standings_variance_fields +} + +""" +order by aggregate values of table "v_league_division_standings" +""" +input v_league_division_standings_aggregate_order_by { + avg: v_league_division_standings_avg_order_by + count: order_by + max: v_league_division_standings_max_order_by + min: v_league_division_standings_min_order_by + stddev: v_league_division_standings_stddev_order_by + stddev_pop: v_league_division_standings_stddev_pop_order_by + stddev_samp: v_league_division_standings_stddev_samp_order_by + sum: v_league_division_standings_sum_order_by + var_pop: v_league_division_standings_var_pop_order_by + var_samp: v_league_division_standings_var_samp_order_by + variance: v_league_division_standings_variance_order_by +} + +""" +input type for inserting array relation for remote table "v_league_division_standings" +""" +input v_league_division_standings_arr_rel_insert_input { + data: [v_league_division_standings_insert_input!]! +} + +"""aggregate avg on columns""" +type v_league_division_standings_avg_fields { + head_to_head_match_wins: Float + head_to_head_rounds_won: Float + losses: Float + maps_lost: Float + maps_won: Float + matches_played: Float + matches_remaining: Float + rank: Float + round_diff: Float + rounds_lost: Float + rounds_won: Float + wins: Float +} + +""" +order by avg() on columns of table "v_league_division_standings" +""" +input v_league_division_standings_avg_order_by { + head_to_head_match_wins: order_by + head_to_head_rounds_won: order_by + losses: order_by + maps_lost: order_by + maps_won: order_by + matches_played: order_by + matches_remaining: order_by + rank: order_by + round_diff: order_by + rounds_lost: order_by + rounds_won: order_by + wins: order_by +} + +""" +Boolean expression to filter rows from the table "v_league_division_standings". All fields are combined with a logical 'AND'. +""" +input v_league_division_standings_bool_exp { + _and: [v_league_division_standings_bool_exp!] + _not: v_league_division_standings_bool_exp + _or: [v_league_division_standings_bool_exp!] + head_to_head_match_wins: Int_comparison_exp + head_to_head_rounds_won: Int_comparison_exp + league_division_id: uuid_comparison_exp + league_season_division_id: uuid_comparison_exp + league_season_id: uuid_comparison_exp + league_team: league_teams_bool_exp + league_team_id: uuid_comparison_exp + league_team_season_id: uuid_comparison_exp + losses: Int_comparison_exp + maps_lost: Int_comparison_exp + maps_won: Int_comparison_exp + matches_played: Int_comparison_exp + matches_remaining: Int_comparison_exp + rank: Int_comparison_exp + round_diff: Int_comparison_exp + rounds_lost: Int_comparison_exp + rounds_won: Int_comparison_exp + season_division: league_season_divisions_bool_exp + team_season: league_team_seasons_bool_exp + tournament_team_id: uuid_comparison_exp + wins: Int_comparison_exp +} + +""" +input type for inserting data into table "v_league_division_standings" +""" +input v_league_division_standings_insert_input { + head_to_head_match_wins: Int + head_to_head_rounds_won: Int + league_division_id: uuid + league_season_division_id: uuid + league_season_id: uuid + league_team: league_teams_obj_rel_insert_input + league_team_id: uuid + league_team_season_id: uuid + losses: Int + maps_lost: Int + maps_won: Int + matches_played: Int + matches_remaining: Int + rank: Int + round_diff: Int + rounds_lost: Int + rounds_won: Int + season_division: league_season_divisions_obj_rel_insert_input + team_season: league_team_seasons_obj_rel_insert_input + tournament_team_id: uuid + wins: Int +} + +"""aggregate max on columns""" +type v_league_division_standings_max_fields { + head_to_head_match_wins: Int + head_to_head_rounds_won: Int + league_division_id: uuid + league_season_division_id: uuid + league_season_id: uuid + league_team_id: uuid + league_team_season_id: uuid + losses: Int + maps_lost: Int + maps_won: Int + matches_played: Int + matches_remaining: Int + rank: Int + round_diff: Int + rounds_lost: Int + rounds_won: Int + tournament_team_id: uuid + wins: Int +} + +""" +order by max() on columns of table "v_league_division_standings" +""" +input v_league_division_standings_max_order_by { + head_to_head_match_wins: order_by + head_to_head_rounds_won: order_by + league_division_id: order_by + league_season_division_id: order_by + league_season_id: order_by + league_team_id: order_by + league_team_season_id: order_by + losses: order_by + maps_lost: order_by + maps_won: order_by + matches_played: order_by + matches_remaining: order_by + rank: order_by + round_diff: order_by + rounds_lost: order_by + rounds_won: order_by + tournament_team_id: order_by + wins: order_by +} + +"""aggregate min on columns""" +type v_league_division_standings_min_fields { + head_to_head_match_wins: Int + head_to_head_rounds_won: Int + league_division_id: uuid + league_season_division_id: uuid + league_season_id: uuid + league_team_id: uuid + league_team_season_id: uuid + losses: Int + maps_lost: Int + maps_won: Int + matches_played: Int + matches_remaining: Int + rank: Int + round_diff: Int + rounds_lost: Int + rounds_won: Int + tournament_team_id: uuid + wins: Int +} + +""" +order by min() on columns of table "v_league_division_standings" +""" +input v_league_division_standings_min_order_by { + head_to_head_match_wins: order_by + head_to_head_rounds_won: order_by + league_division_id: order_by + league_season_division_id: order_by + league_season_id: order_by + league_team_id: order_by + league_team_season_id: order_by + losses: order_by + maps_lost: order_by + maps_won: order_by + matches_played: order_by + matches_remaining: order_by + rank: order_by + round_diff: order_by + rounds_lost: order_by + rounds_won: order_by + tournament_team_id: order_by + wins: order_by +} + +""" +Ordering options when selecting data from "v_league_division_standings". +""" +input v_league_division_standings_order_by { + head_to_head_match_wins: order_by + head_to_head_rounds_won: order_by + league_division_id: order_by + league_season_division_id: order_by + league_season_id: order_by + league_team: league_teams_order_by + league_team_id: order_by + league_team_season_id: order_by + losses: order_by + maps_lost: order_by + maps_won: order_by + matches_played: order_by + matches_remaining: order_by + rank: order_by + round_diff: order_by + rounds_lost: order_by + rounds_won: order_by + season_division: league_season_divisions_order_by + team_season: league_team_seasons_order_by + tournament_team_id: order_by + wins: order_by +} + +""" +select columns of table "v_league_division_standings" +""" +enum v_league_division_standings_select_column { + """column name""" + head_to_head_match_wins + + """column name""" + head_to_head_rounds_won + + """column name""" + league_division_id + + """column name""" + league_season_division_id + + """column name""" + league_season_id + + """column name""" + league_team_id + + """column name""" + league_team_season_id + + """column name""" + losses + + """column name""" + maps_lost + + """column name""" + maps_won + + """column name""" + matches_played + + """column name""" + matches_remaining + + """column name""" + rank + + """column name""" + round_diff + + """column name""" + rounds_lost + + """column name""" + rounds_won + + """column name""" + tournament_team_id + + """column name""" + wins +} + +"""aggregate stddev on columns""" +type v_league_division_standings_stddev_fields { + head_to_head_match_wins: Float + head_to_head_rounds_won: Float + losses: Float + maps_lost: Float + maps_won: Float + matches_played: Float + matches_remaining: Float + rank: Float + round_diff: Float + rounds_lost: Float + rounds_won: Float + wins: Float +} + +""" +order by stddev() on columns of table "v_league_division_standings" +""" +input v_league_division_standings_stddev_order_by { + head_to_head_match_wins: order_by + head_to_head_rounds_won: order_by + losses: order_by + maps_lost: order_by + maps_won: order_by + matches_played: order_by + matches_remaining: order_by + rank: order_by + round_diff: order_by + rounds_lost: order_by + rounds_won: order_by + wins: order_by +} + +"""aggregate stddev_pop on columns""" +type v_league_division_standings_stddev_pop_fields { + head_to_head_match_wins: Float + head_to_head_rounds_won: Float + losses: Float + maps_lost: Float + maps_won: Float + matches_played: Float + matches_remaining: Float + rank: Float + round_diff: Float + rounds_lost: Float + rounds_won: Float + wins: Float +} + +""" +order by stddev_pop() on columns of table "v_league_division_standings" +""" +input v_league_division_standings_stddev_pop_order_by { + head_to_head_match_wins: order_by + head_to_head_rounds_won: order_by + losses: order_by + maps_lost: order_by + maps_won: order_by + matches_played: order_by + matches_remaining: order_by + rank: order_by + round_diff: order_by + rounds_lost: order_by + rounds_won: order_by + wins: order_by +} + +"""aggregate stddev_samp on columns""" +type v_league_division_standings_stddev_samp_fields { + head_to_head_match_wins: Float + head_to_head_rounds_won: Float + losses: Float + maps_lost: Float + maps_won: Float + matches_played: Float + matches_remaining: Float + rank: Float + round_diff: Float + rounds_lost: Float + rounds_won: Float + wins: Float +} + +""" +order by stddev_samp() on columns of table "v_league_division_standings" +""" +input v_league_division_standings_stddev_samp_order_by { + head_to_head_match_wins: order_by + head_to_head_rounds_won: order_by + losses: order_by + maps_lost: order_by + maps_won: order_by + matches_played: order_by + matches_remaining: order_by + rank: order_by + round_diff: order_by + rounds_lost: order_by + rounds_won: order_by + wins: order_by +} + +""" +Streaming cursor of the table "v_league_division_standings" +""" +input v_league_division_standings_stream_cursor_input { + """Stream column input with initial value""" + initial_value: v_league_division_standings_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input v_league_division_standings_stream_cursor_value_input { + head_to_head_match_wins: Int + head_to_head_rounds_won: Int + league_division_id: uuid + league_season_division_id: uuid + league_season_id: uuid + league_team_id: uuid + league_team_season_id: uuid + losses: Int + maps_lost: Int + maps_won: Int + matches_played: Int + matches_remaining: Int + rank: Int + round_diff: Int + rounds_lost: Int + rounds_won: Int + tournament_team_id: uuid + wins: Int +} + +"""aggregate sum on columns""" +type v_league_division_standings_sum_fields { + head_to_head_match_wins: Int + head_to_head_rounds_won: Int + losses: Int + maps_lost: Int + maps_won: Int + matches_played: Int + matches_remaining: Int + rank: Int + round_diff: Int + rounds_lost: Int + rounds_won: Int + wins: Int +} + +""" +order by sum() on columns of table "v_league_division_standings" +""" +input v_league_division_standings_sum_order_by { + head_to_head_match_wins: order_by + head_to_head_rounds_won: order_by + losses: order_by + maps_lost: order_by + maps_won: order_by + matches_played: order_by + matches_remaining: order_by + rank: order_by + round_diff: order_by + rounds_lost: order_by + rounds_won: order_by + wins: order_by +} + +"""aggregate var_pop on columns""" +type v_league_division_standings_var_pop_fields { + head_to_head_match_wins: Float + head_to_head_rounds_won: Float + losses: Float + maps_lost: Float + maps_won: Float + matches_played: Float + matches_remaining: Float + rank: Float + round_diff: Float + rounds_lost: Float + rounds_won: Float + wins: Float +} + +""" +order by var_pop() on columns of table "v_league_division_standings" +""" +input v_league_division_standings_var_pop_order_by { + head_to_head_match_wins: order_by + head_to_head_rounds_won: order_by + losses: order_by + maps_lost: order_by + maps_won: order_by + matches_played: order_by + matches_remaining: order_by + rank: order_by + round_diff: order_by + rounds_lost: order_by + rounds_won: order_by + wins: order_by +} + +"""aggregate var_samp on columns""" +type v_league_division_standings_var_samp_fields { + head_to_head_match_wins: Float + head_to_head_rounds_won: Float + losses: Float + maps_lost: Float + maps_won: Float + matches_played: Float + matches_remaining: Float + rank: Float + round_diff: Float + rounds_lost: Float + rounds_won: Float + wins: Float +} + +""" +order by var_samp() on columns of table "v_league_division_standings" +""" +input v_league_division_standings_var_samp_order_by { + head_to_head_match_wins: order_by + head_to_head_rounds_won: order_by + losses: order_by + maps_lost: order_by + maps_won: order_by + matches_played: order_by + matches_remaining: order_by + rank: order_by + round_diff: order_by + rounds_lost: order_by + rounds_won: order_by + wins: order_by +} + +"""aggregate variance on columns""" +type v_league_division_standings_variance_fields { + head_to_head_match_wins: Float + head_to_head_rounds_won: Float + losses: Float + maps_lost: Float + maps_won: Float + matches_played: Float + matches_remaining: Float + rank: Float + round_diff: Float + rounds_lost: Float + rounds_won: Float + wins: Float +} + +""" +order by variance() on columns of table "v_league_division_standings" +""" +input v_league_division_standings_variance_order_by { + head_to_head_match_wins: order_by + head_to_head_rounds_won: order_by + losses: order_by + maps_lost: order_by + maps_won: order_by + matches_played: order_by + matches_remaining: order_by + rank: order_by + round_diff: order_by + rounds_lost: order_by + rounds_won: order_by + wins: order_by +} + +""" +columns and relationships of "v_league_season_player_stats" +""" +type v_league_season_player_stats { + assists: Int + deaths: Int + headshot_percentage: float8 + headshots: Int + kdr: float8 + kills: Int + league_division_id: uuid + league_season_division_id: uuid + league_season_id: uuid + + """An object relationship""" + league_team: league_teams + league_team_id: uuid + league_team_season_id: uuid + matches_played: Int + + """An object relationship""" + player: players + player_steam_id: bigint +} + +""" +aggregated selection of "v_league_season_player_stats" +""" +type v_league_season_player_stats_aggregate { + aggregate: v_league_season_player_stats_aggregate_fields + nodes: [v_league_season_player_stats!]! +} + +input v_league_season_player_stats_aggregate_bool_exp { + avg: v_league_season_player_stats_aggregate_bool_exp_avg + corr: v_league_season_player_stats_aggregate_bool_exp_corr + count: v_league_season_player_stats_aggregate_bool_exp_count + covar_samp: v_league_season_player_stats_aggregate_bool_exp_covar_samp + max: v_league_season_player_stats_aggregate_bool_exp_max + min: v_league_season_player_stats_aggregate_bool_exp_min + stddev_samp: v_league_season_player_stats_aggregate_bool_exp_stddev_samp + sum: v_league_season_player_stats_aggregate_bool_exp_sum + var_samp: v_league_season_player_stats_aggregate_bool_exp_var_samp +} + +input v_league_season_player_stats_aggregate_bool_exp_avg { + arguments: v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_avg_arguments_columns! + distinct: Boolean + filter: v_league_season_player_stats_bool_exp + predicate: float8_comparison_exp! +} + +input v_league_season_player_stats_aggregate_bool_exp_corr { + arguments: v_league_season_player_stats_aggregate_bool_exp_corr_arguments! + distinct: Boolean + filter: v_league_season_player_stats_bool_exp + predicate: float8_comparison_exp! +} + +input v_league_season_player_stats_aggregate_bool_exp_corr_arguments { + X: v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_corr_arguments_columns! + Y: v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_corr_arguments_columns! +} + +input v_league_season_player_stats_aggregate_bool_exp_count { + arguments: [v_league_season_player_stats_select_column!] + distinct: Boolean + filter: v_league_season_player_stats_bool_exp + predicate: Int_comparison_exp! +} + +input v_league_season_player_stats_aggregate_bool_exp_covar_samp { + arguments: v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments! + distinct: Boolean + filter: v_league_season_player_stats_bool_exp + predicate: float8_comparison_exp! +} + +input v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments { + X: v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments_columns! + Y: v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments_columns! +} + +input v_league_season_player_stats_aggregate_bool_exp_max { + arguments: v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_max_arguments_columns! + distinct: Boolean + filter: v_league_season_player_stats_bool_exp + predicate: float8_comparison_exp! +} + +input v_league_season_player_stats_aggregate_bool_exp_min { + arguments: v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_min_arguments_columns! + distinct: Boolean + filter: v_league_season_player_stats_bool_exp + predicate: float8_comparison_exp! +} + +input v_league_season_player_stats_aggregate_bool_exp_stddev_samp { + arguments: v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns! + distinct: Boolean + filter: v_league_season_player_stats_bool_exp + predicate: float8_comparison_exp! +} + +input v_league_season_player_stats_aggregate_bool_exp_sum { + arguments: v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_sum_arguments_columns! + distinct: Boolean + filter: v_league_season_player_stats_bool_exp + predicate: float8_comparison_exp! +} + +input v_league_season_player_stats_aggregate_bool_exp_var_samp { + arguments: v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_var_samp_arguments_columns! + distinct: Boolean + filter: v_league_season_player_stats_bool_exp + predicate: float8_comparison_exp! +} + +""" +aggregate fields of "v_league_season_player_stats" +""" +type v_league_season_player_stats_aggregate_fields { + avg: v_league_season_player_stats_avg_fields + count(columns: [v_league_season_player_stats_select_column!], distinct: Boolean): Int! + max: v_league_season_player_stats_max_fields + min: v_league_season_player_stats_min_fields + stddev: v_league_season_player_stats_stddev_fields + stddev_pop: v_league_season_player_stats_stddev_pop_fields + stddev_samp: v_league_season_player_stats_stddev_samp_fields + sum: v_league_season_player_stats_sum_fields + var_pop: v_league_season_player_stats_var_pop_fields + var_samp: v_league_season_player_stats_var_samp_fields + variance: v_league_season_player_stats_variance_fields +} + +""" +order by aggregate values of table "v_league_season_player_stats" +""" +input v_league_season_player_stats_aggregate_order_by { + avg: v_league_season_player_stats_avg_order_by + count: order_by + max: v_league_season_player_stats_max_order_by + min: v_league_season_player_stats_min_order_by + stddev: v_league_season_player_stats_stddev_order_by + stddev_pop: v_league_season_player_stats_stddev_pop_order_by + stddev_samp: v_league_season_player_stats_stddev_samp_order_by + sum: v_league_season_player_stats_sum_order_by + var_pop: v_league_season_player_stats_var_pop_order_by + var_samp: v_league_season_player_stats_var_samp_order_by + variance: v_league_season_player_stats_variance_order_by +} + +""" +input type for inserting array relation for remote table "v_league_season_player_stats" +""" +input v_league_season_player_stats_arr_rel_insert_input { + data: [v_league_season_player_stats_insert_input!]! +} + +"""aggregate avg on columns""" +type v_league_season_player_stats_avg_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kdr: Float + kills: Float + matches_played: Float + player_steam_id: Float +} + +""" +order by avg() on columns of table "v_league_season_player_stats" +""" +input v_league_season_player_stats_avg_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "v_league_season_player_stats". All fields are combined with a logical 'AND'. +""" +input v_league_season_player_stats_bool_exp { + _and: [v_league_season_player_stats_bool_exp!] + _not: v_league_season_player_stats_bool_exp + _or: [v_league_season_player_stats_bool_exp!] + assists: Int_comparison_exp + deaths: Int_comparison_exp + headshot_percentage: float8_comparison_exp + headshots: Int_comparison_exp + kdr: float8_comparison_exp + kills: Int_comparison_exp + league_division_id: uuid_comparison_exp + league_season_division_id: uuid_comparison_exp + league_season_id: uuid_comparison_exp + league_team: league_teams_bool_exp + league_team_id: uuid_comparison_exp + league_team_season_id: uuid_comparison_exp + matches_played: Int_comparison_exp + player: players_bool_exp + player_steam_id: bigint_comparison_exp +} + +""" +input type for inserting data into table "v_league_season_player_stats" +""" +input v_league_season_player_stats_insert_input { + assists: Int + deaths: Int + headshot_percentage: float8 + headshots: Int + kdr: float8 + kills: Int + league_division_id: uuid + league_season_division_id: uuid + league_season_id: uuid + league_team: league_teams_obj_rel_insert_input + league_team_id: uuid + league_team_season_id: uuid + matches_played: Int + player: players_obj_rel_insert_input + player_steam_id: bigint +} + +"""aggregate max on columns""" +type v_league_season_player_stats_max_fields { + assists: Int + deaths: Int + headshot_percentage: float8 + headshots: Int + kdr: float8 + kills: Int + league_division_id: uuid + league_season_division_id: uuid + league_season_id: uuid + league_team_id: uuid + league_team_season_id: uuid + matches_played: Int + player_steam_id: bigint +} + +""" +order by max() on columns of table "v_league_season_player_stats" +""" +input v_league_season_player_stats_max_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + league_division_id: order_by + league_season_division_id: order_by + league_season_id: order_by + league_team_id: order_by + league_team_season_id: order_by + matches_played: order_by + player_steam_id: order_by +} + +"""aggregate min on columns""" +type v_league_season_player_stats_min_fields { + assists: Int + deaths: Int + headshot_percentage: float8 + headshots: Int + kdr: float8 + kills: Int + league_division_id: uuid + league_season_division_id: uuid + league_season_id: uuid + league_team_id: uuid + league_team_season_id: uuid + matches_played: Int + player_steam_id: bigint +} + +""" +order by min() on columns of table "v_league_season_player_stats" +""" +input v_league_season_player_stats_min_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + league_division_id: order_by + league_season_division_id: order_by + league_season_id: order_by + league_team_id: order_by + league_team_season_id: order_by + matches_played: order_by + player_steam_id: order_by +} + +""" +Ordering options when selecting data from "v_league_season_player_stats". +""" +input v_league_season_player_stats_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + league_division_id: order_by + league_season_division_id: order_by + league_season_id: order_by + league_team: league_teams_order_by + league_team_id: order_by + league_team_season_id: order_by + matches_played: order_by + player: players_order_by + player_steam_id: order_by +} + +""" +select columns of table "v_league_season_player_stats" +""" +enum v_league_season_player_stats_select_column { + """column name""" + assists + + """column name""" + deaths + + """column name""" + headshot_percentage + + """column name""" + headshots + + """column name""" + kdr + + """column name""" + kills + + """column name""" + league_division_id + + """column name""" + league_season_division_id + + """column name""" + league_season_id + + """column name""" + league_team_id + + """column name""" + league_team_season_id + + """column name""" + matches_played + + """column name""" + player_steam_id +} + +""" +select "v_league_season_player_stats_aggregate_bool_exp_avg_arguments_columns" columns of table "v_league_season_player_stats" +""" +enum v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_avg_arguments_columns { + """column name""" + headshot_percentage + + """column name""" + kdr +} + +""" +select "v_league_season_player_stats_aggregate_bool_exp_corr_arguments_columns" columns of table "v_league_season_player_stats" +""" +enum v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_corr_arguments_columns { + """column name""" + headshot_percentage + + """column name""" + kdr +} + +""" +select "v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "v_league_season_player_stats" +""" +enum v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments_columns { + """column name""" + headshot_percentage + + """column name""" + kdr +} + +""" +select "v_league_season_player_stats_aggregate_bool_exp_max_arguments_columns" columns of table "v_league_season_player_stats" +""" +enum v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_max_arguments_columns { + """column name""" + headshot_percentage + + """column name""" + kdr +} + +""" +select "v_league_season_player_stats_aggregate_bool_exp_min_arguments_columns" columns of table "v_league_season_player_stats" +""" +enum v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_min_arguments_columns { + """column name""" + headshot_percentage + + """column name""" + kdr +} + +""" +select "v_league_season_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "v_league_season_player_stats" +""" +enum v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns { + """column name""" + headshot_percentage + + """column name""" + kdr +} + +""" +select "v_league_season_player_stats_aggregate_bool_exp_sum_arguments_columns" columns of table "v_league_season_player_stats" +""" +enum v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_sum_arguments_columns { + """column name""" + headshot_percentage + + """column name""" + kdr +} + +""" +select "v_league_season_player_stats_aggregate_bool_exp_var_samp_arguments_columns" columns of table "v_league_season_player_stats" +""" +enum v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_var_samp_arguments_columns { + """column name""" + headshot_percentage + + """column name""" + kdr +} + +"""aggregate stddev on columns""" +type v_league_season_player_stats_stddev_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kdr: Float + kills: Float + matches_played: Float + player_steam_id: Float +} + +""" +order by stddev() on columns of table "v_league_season_player_stats" +""" +input v_league_season_player_stats_stddev_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type v_league_season_player_stats_stddev_pop_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kdr: Float + kills: Float + matches_played: Float + player_steam_id: Float +} + +""" +order by stddev_pop() on columns of table "v_league_season_player_stats" +""" +input v_league_season_player_stats_stddev_pop_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type v_league_season_player_stats_stddev_samp_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kdr: Float + kills: Float + matches_played: Float + player_steam_id: Float +} + +""" +order by stddev_samp() on columns of table "v_league_season_player_stats" +""" +input v_league_season_player_stats_stddev_samp_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + +""" +Streaming cursor of the table "v_league_season_player_stats" +""" +input v_league_season_player_stats_stream_cursor_input { + """Stream column input with initial value""" + initial_value: v_league_season_player_stats_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input v_league_season_player_stats_stream_cursor_value_input { + assists: Int + deaths: Int + headshot_percentage: float8 + headshots: Int + kdr: float8 + kills: Int + league_division_id: uuid + league_season_division_id: uuid + league_season_id: uuid + league_team_id: uuid + league_team_season_id: uuid + matches_played: Int + player_steam_id: bigint +} + +"""aggregate sum on columns""" +type v_league_season_player_stats_sum_fields { + assists: Int + deaths: Int + headshot_percentage: float8 + headshots: Int + kdr: float8 + kills: Int + matches_played: Int + player_steam_id: bigint +} + +""" +order by sum() on columns of table "v_league_season_player_stats" +""" +input v_league_season_player_stats_sum_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + +"""aggregate var_pop on columns""" +type v_league_season_player_stats_var_pop_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kdr: Float + kills: Float + matches_played: Float + player_steam_id: Float +} + +""" +order by var_pop() on columns of table "v_league_season_player_stats" +""" +input v_league_season_player_stats_var_pop_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + +"""aggregate var_samp on columns""" +type v_league_season_player_stats_var_samp_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kdr: Float + kills: Float + matches_played: Float + player_steam_id: Float +} + +""" +order by var_samp() on columns of table "v_league_season_player_stats" +""" +input v_league_season_player_stats_var_samp_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + +"""aggregate variance on columns""" +type v_league_season_player_stats_variance_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kdr: Float + kills: Float + matches_played: Float + player_steam_id: Float +} + +""" +order by variance() on columns of table "v_league_season_player_stats" +""" +input v_league_season_player_stats_variance_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + +""" +columns and relationships of "v_match_captains" +""" +type v_match_captains { + captain: Boolean + discord_id: String + id: uuid + + """An object relationship""" + lineup: match_lineups + match_lineup_id: uuid + placeholder_name: String + + """An object relationship""" + player: players + steam_id: bigint +} + +""" +aggregated selection of "v_match_captains" +""" +type v_match_captains_aggregate { + aggregate: v_match_captains_aggregate_fields + nodes: [v_match_captains!]! +} + +""" +aggregate fields of "v_match_captains" +""" +type v_match_captains_aggregate_fields { + avg: v_match_captains_avg_fields + count(columns: [v_match_captains_select_column!], distinct: Boolean): Int! + max: v_match_captains_max_fields + min: v_match_captains_min_fields + stddev: v_match_captains_stddev_fields + stddev_pop: v_match_captains_stddev_pop_fields + stddev_samp: v_match_captains_stddev_samp_fields + sum: v_match_captains_sum_fields + var_pop: v_match_captains_var_pop_fields + var_samp: v_match_captains_var_samp_fields + variance: v_match_captains_variance_fields +} + +"""aggregate avg on columns""" +type v_match_captains_avg_fields { + steam_id: Float +} + +""" +Boolean expression to filter rows from the table "v_match_captains". All fields are combined with a logical 'AND'. +""" +input v_match_captains_bool_exp { + _and: [v_match_captains_bool_exp!] + _not: v_match_captains_bool_exp + _or: [v_match_captains_bool_exp!] + captain: Boolean_comparison_exp + discord_id: String_comparison_exp + id: uuid_comparison_exp + lineup: match_lineups_bool_exp + match_lineup_id: uuid_comparison_exp + placeholder_name: String_comparison_exp + player: players_bool_exp + steam_id: bigint_comparison_exp +} + +""" +input type for incrementing numeric columns in table "v_match_captains" +""" +input v_match_captains_inc_input { + steam_id: bigint +} + +""" +input type for inserting data into table "v_match_captains" +""" +input v_match_captains_insert_input { + captain: Boolean + discord_id: String + id: uuid + lineup: match_lineups_obj_rel_insert_input + match_lineup_id: uuid + placeholder_name: String + player: players_obj_rel_insert_input + steam_id: bigint +} + +"""aggregate max on columns""" +type v_match_captains_max_fields { + discord_id: String + id: uuid + match_lineup_id: uuid + placeholder_name: String + steam_id: bigint +} + +"""aggregate min on columns""" +type v_match_captains_min_fields { + discord_id: String + id: uuid + match_lineup_id: uuid + placeholder_name: String + steam_id: bigint +} + +""" +response of any mutation on the table "v_match_captains" +""" +type v_match_captains_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [v_match_captains!]! +} + +""" +input type for inserting object relation for remote table "v_match_captains" +""" +input v_match_captains_obj_rel_insert_input { + data: v_match_captains_insert_input! +} + +"""Ordering options when selecting data from "v_match_captains".""" +input v_match_captains_order_by { + captain: order_by + discord_id: order_by + id: order_by + lineup: match_lineups_order_by + match_lineup_id: order_by + placeholder_name: order_by + player: players_order_by + steam_id: order_by +} + +""" +select columns of table "v_match_captains" +""" +enum v_match_captains_select_column { + """column name""" + captain + + """column name""" + discord_id + + """column name""" + id + + """column name""" + match_lineup_id + + """column name""" + placeholder_name + + """column name""" + steam_id +} + +""" +input type for updating data in table "v_match_captains" +""" +input v_match_captains_set_input { + captain: Boolean + discord_id: String + id: uuid + match_lineup_id: uuid + placeholder_name: String + steam_id: bigint +} + +"""aggregate stddev on columns""" +type v_match_captains_stddev_fields { + steam_id: Float +} + +"""aggregate stddev_pop on columns""" +type v_match_captains_stddev_pop_fields { + steam_id: Float +} + +"""aggregate stddev_samp on columns""" +type v_match_captains_stddev_samp_fields { + steam_id: Float +} + +""" +Streaming cursor of the table "v_match_captains" +""" +input v_match_captains_stream_cursor_input { + """Stream column input with initial value""" + initial_value: v_match_captains_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input v_match_captains_stream_cursor_value_input { + captain: Boolean + discord_id: String + id: uuid + match_lineup_id: uuid + placeholder_name: String + steam_id: bigint +} + +"""aggregate sum on columns""" +type v_match_captains_sum_fields { + steam_id: bigint +} + +input v_match_captains_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: v_match_captains_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: v_match_captains_set_input + + """filter the rows which have to be updated""" + where: v_match_captains_bool_exp! +} + +"""aggregate var_pop on columns""" +type v_match_captains_var_pop_fields { + steam_id: Float +} + +"""aggregate var_samp on columns""" +type v_match_captains_var_samp_fields { + steam_id: Float +} + +"""aggregate variance on columns""" +type v_match_captains_variance_fields { + steam_id: Float +} + +""" +columns and relationships of "v_match_clutches" +""" +type v_match_clutches { + against_count: Int + + """An object relationship""" + clutcher: players + clutcher_steam_id: bigint + kills_in_clutch: Int + + """An object relationship""" + match: matches + match_id: uuid + + """An object relationship""" + match_lineup: match_lineups + match_lineup_id: uuid + + """An object relationship""" + match_map: match_maps + match_map_id: uuid + outcome: String + round: Int + side: String +} + +""" +aggregated selection of "v_match_clutches" +""" +type v_match_clutches_aggregate { + aggregate: v_match_clutches_aggregate_fields + nodes: [v_match_clutches!]! +} + +input v_match_clutches_aggregate_bool_exp { + count: v_match_clutches_aggregate_bool_exp_count +} + +input v_match_clutches_aggregate_bool_exp_count { + arguments: [v_match_clutches_select_column!] + distinct: Boolean + filter: v_match_clutches_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "v_match_clutches" +""" +type v_match_clutches_aggregate_fields { + avg: v_match_clutches_avg_fields + count(columns: [v_match_clutches_select_column!], distinct: Boolean): Int! + max: v_match_clutches_max_fields + min: v_match_clutches_min_fields + stddev: v_match_clutches_stddev_fields + stddev_pop: v_match_clutches_stddev_pop_fields + stddev_samp: v_match_clutches_stddev_samp_fields + sum: v_match_clutches_sum_fields + var_pop: v_match_clutches_var_pop_fields + var_samp: v_match_clutches_var_samp_fields + variance: v_match_clutches_variance_fields +} + +""" +order by aggregate values of table "v_match_clutches" +""" +input v_match_clutches_aggregate_order_by { + avg: v_match_clutches_avg_order_by + count: order_by + max: v_match_clutches_max_order_by + min: v_match_clutches_min_order_by + stddev: v_match_clutches_stddev_order_by + stddev_pop: v_match_clutches_stddev_pop_order_by + stddev_samp: v_match_clutches_stddev_samp_order_by + sum: v_match_clutches_sum_order_by + var_pop: v_match_clutches_var_pop_order_by + var_samp: v_match_clutches_var_samp_order_by + variance: v_match_clutches_variance_order_by +} + +""" +input type for inserting array relation for remote table "v_match_clutches" +""" +input v_match_clutches_arr_rel_insert_input { + data: [v_match_clutches_insert_input!]! +} + +"""aggregate avg on columns""" +type v_match_clutches_avg_fields { + against_count: Float + clutcher_steam_id: Float + kills_in_clutch: Float + round: Float +} + +""" +order by avg() on columns of table "v_match_clutches" +""" +input v_match_clutches_avg_order_by { + against_count: order_by + clutcher_steam_id: order_by + kills_in_clutch: order_by + round: order_by +} + +""" +Boolean expression to filter rows from the table "v_match_clutches". All fields are combined with a logical 'AND'. +""" +input v_match_clutches_bool_exp { + _and: [v_match_clutches_bool_exp!] + _not: v_match_clutches_bool_exp + _or: [v_match_clutches_bool_exp!] + against_count: Int_comparison_exp + clutcher: players_bool_exp + clutcher_steam_id: bigint_comparison_exp + kills_in_clutch: Int_comparison_exp + match: matches_bool_exp + match_id: uuid_comparison_exp + match_lineup: match_lineups_bool_exp + match_lineup_id: uuid_comparison_exp + match_map: match_maps_bool_exp + match_map_id: uuid_comparison_exp + outcome: String_comparison_exp + round: Int_comparison_exp + side: String_comparison_exp +} + +""" +input type for inserting data into table "v_match_clutches" +""" +input v_match_clutches_insert_input { + against_count: Int + clutcher: players_obj_rel_insert_input + clutcher_steam_id: bigint + kills_in_clutch: Int + match: matches_obj_rel_insert_input + match_id: uuid + match_lineup: match_lineups_obj_rel_insert_input + match_lineup_id: uuid + match_map: match_maps_obj_rel_insert_input + match_map_id: uuid + outcome: String + round: Int + side: String +} + +"""aggregate max on columns""" +type v_match_clutches_max_fields { + against_count: Int + clutcher_steam_id: bigint + kills_in_clutch: Int + match_id: uuid + match_lineup_id: uuid + match_map_id: uuid + outcome: String + round: Int + side: String +} + +""" +order by max() on columns of table "v_match_clutches" +""" +input v_match_clutches_max_order_by { + against_count: order_by + clutcher_steam_id: order_by + kills_in_clutch: order_by + match_id: order_by + match_lineup_id: order_by + match_map_id: order_by + outcome: order_by + round: order_by + side: order_by +} + +"""aggregate min on columns""" +type v_match_clutches_min_fields { + against_count: Int + clutcher_steam_id: bigint + kills_in_clutch: Int + match_id: uuid + match_lineup_id: uuid + match_map_id: uuid + outcome: String + round: Int + side: String +} + +""" +order by min() on columns of table "v_match_clutches" +""" +input v_match_clutches_min_order_by { + against_count: order_by + clutcher_steam_id: order_by + kills_in_clutch: order_by + match_id: order_by + match_lineup_id: order_by + match_map_id: order_by + outcome: order_by + round: order_by + side: order_by +} + +"""Ordering options when selecting data from "v_match_clutches".""" +input v_match_clutches_order_by { + against_count: order_by + clutcher: players_order_by + clutcher_steam_id: order_by + kills_in_clutch: order_by + match: matches_order_by + match_id: order_by + match_lineup: match_lineups_order_by + match_lineup_id: order_by + match_map: match_maps_order_by + match_map_id: order_by + outcome: order_by + round: order_by + side: order_by +} + +""" +select columns of table "v_match_clutches" +""" +enum v_match_clutches_select_column { + """column name""" + against_count + + """column name""" + clutcher_steam_id + + """column name""" + kills_in_clutch + + """column name""" + match_id + + """column name""" + match_lineup_id + + """column name""" + match_map_id + + """column name""" + outcome + + """column name""" + round + + """column name""" + side +} + +"""aggregate stddev on columns""" +type v_match_clutches_stddev_fields { + against_count: Float + clutcher_steam_id: Float + kills_in_clutch: Float + round: Float +} + +""" +order by stddev() on columns of table "v_match_clutches" +""" +input v_match_clutches_stddev_order_by { + against_count: order_by + clutcher_steam_id: order_by + kills_in_clutch: order_by + round: order_by +} + +"""aggregate stddev_pop on columns""" +type v_match_clutches_stddev_pop_fields { + against_count: Float + clutcher_steam_id: Float + kills_in_clutch: Float + round: Float +} + +""" +order by stddev_pop() on columns of table "v_match_clutches" +""" +input v_match_clutches_stddev_pop_order_by { + against_count: order_by + clutcher_steam_id: order_by + kills_in_clutch: order_by + round: order_by +} + +"""aggregate stddev_samp on columns""" +type v_match_clutches_stddev_samp_fields { + against_count: Float + clutcher_steam_id: Float + kills_in_clutch: Float + round: Float +} + +""" +order by stddev_samp() on columns of table "v_match_clutches" +""" +input v_match_clutches_stddev_samp_order_by { + against_count: order_by + clutcher_steam_id: order_by + kills_in_clutch: order_by + round: order_by +} + +""" +Streaming cursor of the table "v_match_clutches" +""" +input v_match_clutches_stream_cursor_input { + """Stream column input with initial value""" + initial_value: v_match_clutches_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input v_match_clutches_stream_cursor_value_input { + against_count: Int + clutcher_steam_id: bigint + kills_in_clutch: Int + match_id: uuid + match_lineup_id: uuid + match_map_id: uuid + outcome: String + round: Int + side: String +} + +"""aggregate sum on columns""" +type v_match_clutches_sum_fields { + against_count: Int + clutcher_steam_id: bigint + kills_in_clutch: Int + round: Int +} + +""" +order by sum() on columns of table "v_match_clutches" +""" +input v_match_clutches_sum_order_by { + against_count: order_by + clutcher_steam_id: order_by + kills_in_clutch: order_by + round: order_by +} + +"""aggregate var_pop on columns""" +type v_match_clutches_var_pop_fields { + against_count: Float + clutcher_steam_id: Float + kills_in_clutch: Float + round: Float +} + +""" +order by var_pop() on columns of table "v_match_clutches" +""" +input v_match_clutches_var_pop_order_by { + against_count: order_by + clutcher_steam_id: order_by + kills_in_clutch: order_by + round: order_by +} + +"""aggregate var_samp on columns""" +type v_match_clutches_var_samp_fields { + against_count: Float + clutcher_steam_id: Float + kills_in_clutch: Float + round: Float +} + +""" +order by var_samp() on columns of table "v_match_clutches" +""" +input v_match_clutches_var_samp_order_by { + against_count: order_by + clutcher_steam_id: order_by + kills_in_clutch: order_by + round: order_by +} + +"""aggregate variance on columns""" +type v_match_clutches_variance_fields { + against_count: Float + clutcher_steam_id: Float + kills_in_clutch: Float + round: Float +} + +""" +order by variance() on columns of table "v_match_clutches" +""" +input v_match_clutches_variance_order_by { + against_count: order_by + clutcher_steam_id: order_by + kills_in_clutch: order_by + round: order_by +} + +""" +columns and relationships of "v_match_kill_pairs" +""" +type v_match_kill_pairs { + killer_side: String + killer_steam_id: bigint + kills: Int + + """An object relationship""" + match: matches + match_id: uuid + + """An object relationship""" + match_map: match_maps + match_map_id: uuid + victim_side: String + victim_steam_id: bigint + weapon: String +} + +""" +aggregated selection of "v_match_kill_pairs" +""" +type v_match_kill_pairs_aggregate { + aggregate: v_match_kill_pairs_aggregate_fields + nodes: [v_match_kill_pairs!]! +} + +""" +aggregate fields of "v_match_kill_pairs" +""" +type v_match_kill_pairs_aggregate_fields { + avg: v_match_kill_pairs_avg_fields + count(columns: [v_match_kill_pairs_select_column!], distinct: Boolean): Int! + max: v_match_kill_pairs_max_fields + min: v_match_kill_pairs_min_fields + stddev: v_match_kill_pairs_stddev_fields + stddev_pop: v_match_kill_pairs_stddev_pop_fields + stddev_samp: v_match_kill_pairs_stddev_samp_fields + sum: v_match_kill_pairs_sum_fields + var_pop: v_match_kill_pairs_var_pop_fields + var_samp: v_match_kill_pairs_var_samp_fields + variance: v_match_kill_pairs_variance_fields +} + +"""aggregate avg on columns""" +type v_match_kill_pairs_avg_fields { + killer_steam_id: Float + kills: Float + victim_steam_id: Float +} + +""" +Boolean expression to filter rows from the table "v_match_kill_pairs". All fields are combined with a logical 'AND'. +""" +input v_match_kill_pairs_bool_exp { + _and: [v_match_kill_pairs_bool_exp!] + _not: v_match_kill_pairs_bool_exp + _or: [v_match_kill_pairs_bool_exp!] + killer_side: String_comparison_exp + killer_steam_id: bigint_comparison_exp + kills: Int_comparison_exp + match: matches_bool_exp + match_id: uuid_comparison_exp + match_map: match_maps_bool_exp + match_map_id: uuid_comparison_exp + victim_side: String_comparison_exp + victim_steam_id: bigint_comparison_exp + weapon: String_comparison_exp +} + +"""aggregate max on columns""" +type v_match_kill_pairs_max_fields { + killer_side: String + killer_steam_id: bigint + kills: Int + match_id: uuid + match_map_id: uuid + victim_side: String + victim_steam_id: bigint + weapon: String +} + +"""aggregate min on columns""" +type v_match_kill_pairs_min_fields { + killer_side: String + killer_steam_id: bigint + kills: Int + match_id: uuid + match_map_id: uuid + victim_side: String + victim_steam_id: bigint + weapon: String +} + +"""Ordering options when selecting data from "v_match_kill_pairs".""" +input v_match_kill_pairs_order_by { + killer_side: order_by + killer_steam_id: order_by + kills: order_by + match: matches_order_by + match_id: order_by + match_map: match_maps_order_by + match_map_id: order_by + victim_side: order_by + victim_steam_id: order_by + weapon: order_by +} + +""" +select columns of table "v_match_kill_pairs" +""" +enum v_match_kill_pairs_select_column { + """column name""" + killer_side + + """column name""" + killer_steam_id + + """column name""" + kills + + """column name""" + match_id + + """column name""" + match_map_id + + """column name""" + victim_side + + """column name""" + victim_steam_id + + """column name""" + weapon +} + +"""aggregate stddev on columns""" +type v_match_kill_pairs_stddev_fields { + killer_steam_id: Float + kills: Float + victim_steam_id: Float +} + +"""aggregate stddev_pop on columns""" +type v_match_kill_pairs_stddev_pop_fields { + killer_steam_id: Float + kills: Float + victim_steam_id: Float +} + +"""aggregate stddev_samp on columns""" +type v_match_kill_pairs_stddev_samp_fields { + killer_steam_id: Float + kills: Float + victim_steam_id: Float +} + +""" +Streaming cursor of the table "v_match_kill_pairs" +""" +input v_match_kill_pairs_stream_cursor_input { + """Stream column input with initial value""" + initial_value: v_match_kill_pairs_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input v_match_kill_pairs_stream_cursor_value_input { + killer_side: String + killer_steam_id: bigint + kills: Int + match_id: uuid + match_map_id: uuid + victim_side: String + victim_steam_id: bigint + weapon: String +} + +"""aggregate sum on columns""" +type v_match_kill_pairs_sum_fields { + killer_steam_id: bigint + kills: Int + victim_steam_id: bigint +} + +"""aggregate var_pop on columns""" +type v_match_kill_pairs_var_pop_fields { + killer_steam_id: Float + kills: Float + victim_steam_id: Float +} + +"""aggregate var_samp on columns""" +type v_match_kill_pairs_var_samp_fields { + killer_steam_id: Float + kills: Float + victim_steam_id: Float +} + +"""aggregate variance on columns""" +type v_match_kill_pairs_variance_fields { + killer_steam_id: Float + kills: Float + victim_steam_id: Float +} + +""" +columns and relationships of "v_match_lineup_buy_types" +""" +type v_match_lineup_buy_types { + """An object relationship""" + match: matches + match_id: uuid + + """An object relationship""" + match_lineup: match_lineups + match_lineup_id: uuid + + """An object relationship""" + match_map: match_maps + match_map_id: uuid + matchup: String + rounds: Int + side: String + wins: Int +} + +""" +aggregated selection of "v_match_lineup_buy_types" +""" +type v_match_lineup_buy_types_aggregate { + aggregate: v_match_lineup_buy_types_aggregate_fields + nodes: [v_match_lineup_buy_types!]! +} + +""" +aggregate fields of "v_match_lineup_buy_types" +""" +type v_match_lineup_buy_types_aggregate_fields { + avg: v_match_lineup_buy_types_avg_fields + count(columns: [v_match_lineup_buy_types_select_column!], distinct: Boolean): Int! + max: v_match_lineup_buy_types_max_fields + min: v_match_lineup_buy_types_min_fields + stddev: v_match_lineup_buy_types_stddev_fields + stddev_pop: v_match_lineup_buy_types_stddev_pop_fields + stddev_samp: v_match_lineup_buy_types_stddev_samp_fields + sum: v_match_lineup_buy_types_sum_fields + var_pop: v_match_lineup_buy_types_var_pop_fields + var_samp: v_match_lineup_buy_types_var_samp_fields + variance: v_match_lineup_buy_types_variance_fields +} + +"""aggregate avg on columns""" +type v_match_lineup_buy_types_avg_fields { + rounds: Float + wins: Float +} + +""" +Boolean expression to filter rows from the table "v_match_lineup_buy_types". All fields are combined with a logical 'AND'. +""" +input v_match_lineup_buy_types_bool_exp { + _and: [v_match_lineup_buy_types_bool_exp!] + _not: v_match_lineup_buy_types_bool_exp + _or: [v_match_lineup_buy_types_bool_exp!] + match: matches_bool_exp + match_id: uuid_comparison_exp + match_lineup: match_lineups_bool_exp + match_lineup_id: uuid_comparison_exp + match_map: match_maps_bool_exp + match_map_id: uuid_comparison_exp + matchup: String_comparison_exp + rounds: Int_comparison_exp + side: String_comparison_exp + wins: Int_comparison_exp +} + +"""aggregate max on columns""" +type v_match_lineup_buy_types_max_fields { + match_id: uuid + match_lineup_id: uuid + match_map_id: uuid + matchup: String + rounds: Int + side: String + wins: Int +} + +"""aggregate min on columns""" +type v_match_lineup_buy_types_min_fields { + match_id: uuid + match_lineup_id: uuid + match_map_id: uuid + matchup: String + rounds: Int + side: String + wins: Int +} + +"""Ordering options when selecting data from "v_match_lineup_buy_types".""" +input v_match_lineup_buy_types_order_by { + match: matches_order_by + match_id: order_by + match_lineup: match_lineups_order_by + match_lineup_id: order_by + match_map: match_maps_order_by + match_map_id: order_by + matchup: order_by + rounds: order_by + side: order_by + wins: order_by +} + +""" +select columns of table "v_match_lineup_buy_types" +""" +enum v_match_lineup_buy_types_select_column { + """column name""" + match_id + + """column name""" + match_lineup_id + + """column name""" + match_map_id + + """column name""" + matchup + + """column name""" + rounds + + """column name""" + side + + """column name""" + wins +} + +"""aggregate stddev on columns""" +type v_match_lineup_buy_types_stddev_fields { + rounds: Float + wins: Float +} + +"""aggregate stddev_pop on columns""" +type v_match_lineup_buy_types_stddev_pop_fields { + rounds: Float + wins: Float +} + +"""aggregate stddev_samp on columns""" +type v_match_lineup_buy_types_stddev_samp_fields { + rounds: Float + wins: Float +} + +""" +Streaming cursor of the table "v_match_lineup_buy_types" +""" +input v_match_lineup_buy_types_stream_cursor_input { + """Stream column input with initial value""" + initial_value: v_match_lineup_buy_types_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input v_match_lineup_buy_types_stream_cursor_value_input { + match_id: uuid + match_lineup_id: uuid + match_map_id: uuid + matchup: String + rounds: Int + side: String + wins: Int +} + +"""aggregate sum on columns""" +type v_match_lineup_buy_types_sum_fields { + rounds: Int + wins: Int +} + +"""aggregate var_pop on columns""" +type v_match_lineup_buy_types_var_pop_fields { + rounds: Float + wins: Float +} + +"""aggregate var_samp on columns""" +type v_match_lineup_buy_types_var_samp_fields { + rounds: Float + wins: Float +} + +"""aggregate variance on columns""" +type v_match_lineup_buy_types_variance_fields { + rounds: Float + wins: Float +} + +""" +columns and relationships of "v_match_lineup_map_stats" +""" +type v_match_lineup_map_stats { + man_adv_rounds: Int + man_adv_wins: Int + man_dis_rounds: Int + man_dis_wins: Int + + """An object relationship""" + match: matches + match_id: uuid + + """An object relationship""" + match_lineup: match_lineups + match_lineup_id: uuid + + """An object relationship""" + match_map: match_maps + match_map_id: uuid + opening_attempts: Int + opening_wins: Int + pistol_rounds: Int + pistol_wins: Int + round_wins: Int + rounds: Int + side: String + won_buy_eco: Int + won_buy_force: Int + won_buy_full: Int + won_buy_pistol: Int +} + +""" +aggregated selection of "v_match_lineup_map_stats" +""" +type v_match_lineup_map_stats_aggregate { + aggregate: v_match_lineup_map_stats_aggregate_fields + nodes: [v_match_lineup_map_stats!]! +} + +""" +aggregate fields of "v_match_lineup_map_stats" +""" +type v_match_lineup_map_stats_aggregate_fields { + avg: v_match_lineup_map_stats_avg_fields + count(columns: [v_match_lineup_map_stats_select_column!], distinct: Boolean): Int! + max: v_match_lineup_map_stats_max_fields + min: v_match_lineup_map_stats_min_fields + stddev: v_match_lineup_map_stats_stddev_fields + stddev_pop: v_match_lineup_map_stats_stddev_pop_fields + stddev_samp: v_match_lineup_map_stats_stddev_samp_fields + sum: v_match_lineup_map_stats_sum_fields + var_pop: v_match_lineup_map_stats_var_pop_fields + var_samp: v_match_lineup_map_stats_var_samp_fields + variance: v_match_lineup_map_stats_variance_fields +} + +"""aggregate avg on columns""" +type v_match_lineup_map_stats_avg_fields { + man_adv_rounds: Float + man_adv_wins: Float + man_dis_rounds: Float + man_dis_wins: Float + opening_attempts: Float + opening_wins: Float + pistol_rounds: Float + pistol_wins: Float + round_wins: Float + rounds: Float + won_buy_eco: Float + won_buy_force: Float + won_buy_full: Float + won_buy_pistol: Float +} + +""" +Boolean expression to filter rows from the table "v_match_lineup_map_stats". All fields are combined with a logical 'AND'. +""" +input v_match_lineup_map_stats_bool_exp { + _and: [v_match_lineup_map_stats_bool_exp!] + _not: v_match_lineup_map_stats_bool_exp + _or: [v_match_lineup_map_stats_bool_exp!] + man_adv_rounds: Int_comparison_exp + man_adv_wins: Int_comparison_exp + man_dis_rounds: Int_comparison_exp + man_dis_wins: Int_comparison_exp + match: matches_bool_exp + match_id: uuid_comparison_exp + match_lineup: match_lineups_bool_exp + match_lineup_id: uuid_comparison_exp + match_map: match_maps_bool_exp + match_map_id: uuid_comparison_exp + opening_attempts: Int_comparison_exp + opening_wins: Int_comparison_exp + pistol_rounds: Int_comparison_exp + pistol_wins: Int_comparison_exp + round_wins: Int_comparison_exp + rounds: Int_comparison_exp + side: String_comparison_exp + won_buy_eco: Int_comparison_exp + won_buy_force: Int_comparison_exp + won_buy_full: Int_comparison_exp + won_buy_pistol: Int_comparison_exp +} + +"""aggregate max on columns""" +type v_match_lineup_map_stats_max_fields { + man_adv_rounds: Int + man_adv_wins: Int + man_dis_rounds: Int + man_dis_wins: Int + match_id: uuid + match_lineup_id: uuid + match_map_id: uuid + opening_attempts: Int + opening_wins: Int + pistol_rounds: Int + pistol_wins: Int + round_wins: Int + rounds: Int + side: String + won_buy_eco: Int + won_buy_force: Int + won_buy_full: Int + won_buy_pistol: Int +} + +"""aggregate min on columns""" +type v_match_lineup_map_stats_min_fields { + man_adv_rounds: Int + man_adv_wins: Int + man_dis_rounds: Int + man_dis_wins: Int + match_id: uuid + match_lineup_id: uuid + match_map_id: uuid + opening_attempts: Int + opening_wins: Int + pistol_rounds: Int + pistol_wins: Int + round_wins: Int + rounds: Int + side: String + won_buy_eco: Int + won_buy_force: Int + won_buy_full: Int + won_buy_pistol: Int +} + +"""Ordering options when selecting data from "v_match_lineup_map_stats".""" +input v_match_lineup_map_stats_order_by { + man_adv_rounds: order_by + man_adv_wins: order_by + man_dis_rounds: order_by + man_dis_wins: order_by + match: matches_order_by + match_id: order_by + match_lineup: match_lineups_order_by + match_lineup_id: order_by + match_map: match_maps_order_by + match_map_id: order_by + opening_attempts: order_by + opening_wins: order_by + pistol_rounds: order_by + pistol_wins: order_by + round_wins: order_by + rounds: order_by + side: order_by + won_buy_eco: order_by + won_buy_force: order_by + won_buy_full: order_by + won_buy_pistol: order_by +} + +""" +select columns of table "v_match_lineup_map_stats" +""" +enum v_match_lineup_map_stats_select_column { + """column name""" + man_adv_rounds + + """column name""" + man_adv_wins + + """column name""" + man_dis_rounds + + """column name""" + man_dis_wins + + """column name""" + match_id + + """column name""" + match_lineup_id + + """column name""" + match_map_id + + """column name""" + opening_attempts + + """column name""" + opening_wins + + """column name""" + pistol_rounds + + """column name""" + pistol_wins + + """column name""" + round_wins + + """column name""" + rounds + + """column name""" + side + + """column name""" + won_buy_eco + + """column name""" + won_buy_force + + """column name""" + won_buy_full + + """column name""" + won_buy_pistol +} + +"""aggregate stddev on columns""" +type v_match_lineup_map_stats_stddev_fields { + man_adv_rounds: Float + man_adv_wins: Float + man_dis_rounds: Float + man_dis_wins: Float + opening_attempts: Float + opening_wins: Float + pistol_rounds: Float + pistol_wins: Float + round_wins: Float + rounds: Float + won_buy_eco: Float + won_buy_force: Float + won_buy_full: Float + won_buy_pistol: Float +} + +"""aggregate stddev_pop on columns""" +type v_match_lineup_map_stats_stddev_pop_fields { + man_adv_rounds: Float + man_adv_wins: Float + man_dis_rounds: Float + man_dis_wins: Float + opening_attempts: Float + opening_wins: Float + pistol_rounds: Float + pistol_wins: Float + round_wins: Float + rounds: Float + won_buy_eco: Float + won_buy_force: Float + won_buy_full: Float + won_buy_pistol: Float +} + +"""aggregate stddev_samp on columns""" +type v_match_lineup_map_stats_stddev_samp_fields { + man_adv_rounds: Float + man_adv_wins: Float + man_dis_rounds: Float + man_dis_wins: Float + opening_attempts: Float + opening_wins: Float + pistol_rounds: Float + pistol_wins: Float + round_wins: Float + rounds: Float + won_buy_eco: Float + won_buy_force: Float + won_buy_full: Float + won_buy_pistol: Float +} + +""" +Streaming cursor of the table "v_match_lineup_map_stats" +""" +input v_match_lineup_map_stats_stream_cursor_input { + """Stream column input with initial value""" + initial_value: v_match_lineup_map_stats_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input v_match_lineup_map_stats_stream_cursor_value_input { + man_adv_rounds: Int + man_adv_wins: Int + man_dis_rounds: Int + man_dis_wins: Int + match_id: uuid + match_lineup_id: uuid + match_map_id: uuid + opening_attempts: Int + opening_wins: Int + pistol_rounds: Int + pistol_wins: Int + round_wins: Int + rounds: Int + side: String + won_buy_eco: Int + won_buy_force: Int + won_buy_full: Int + won_buy_pistol: Int +} + +"""aggregate sum on columns""" +type v_match_lineup_map_stats_sum_fields { + man_adv_rounds: Int + man_adv_wins: Int + man_dis_rounds: Int + man_dis_wins: Int + opening_attempts: Int + opening_wins: Int + pistol_rounds: Int + pistol_wins: Int + round_wins: Int + rounds: Int + won_buy_eco: Int + won_buy_force: Int + won_buy_full: Int + won_buy_pistol: Int +} + +"""aggregate var_pop on columns""" +type v_match_lineup_map_stats_var_pop_fields { + man_adv_rounds: Float + man_adv_wins: Float + man_dis_rounds: Float + man_dis_wins: Float + opening_attempts: Float + opening_wins: Float + pistol_rounds: Float + pistol_wins: Float + round_wins: Float + rounds: Float + won_buy_eco: Float + won_buy_force: Float + won_buy_full: Float + won_buy_pistol: Float +} + +"""aggregate var_samp on columns""" +type v_match_lineup_map_stats_var_samp_fields { + man_adv_rounds: Float + man_adv_wins: Float + man_dis_rounds: Float + man_dis_wins: Float + opening_attempts: Float + opening_wins: Float + pistol_rounds: Float + pistol_wins: Float + round_wins: Float + rounds: Float + won_buy_eco: Float + won_buy_force: Float + won_buy_full: Float + won_buy_pistol: Float +} + +"""aggregate variance on columns""" +type v_match_lineup_map_stats_variance_fields { + man_adv_rounds: Float + man_adv_wins: Float + man_dis_rounds: Float + man_dis_wins: Float + opening_attempts: Float + opening_wins: Float + pistol_rounds: Float + pistol_wins: Float + round_wins: Float + rounds: Float + won_buy_eco: Float + won_buy_force: Float + won_buy_full: Float + won_buy_pistol: Float +} + +""" +columns and relationships of "v_match_map_backup_rounds" +""" +type v_match_map_backup_rounds { + has_backup_file: Boolean + match_map_id: uuid + round: Int +} + +""" +aggregated selection of "v_match_map_backup_rounds" +""" +type v_match_map_backup_rounds_aggregate { + aggregate: v_match_map_backup_rounds_aggregate_fields + nodes: [v_match_map_backup_rounds!]! +} + +""" +aggregate fields of "v_match_map_backup_rounds" +""" +type v_match_map_backup_rounds_aggregate_fields { + avg: v_match_map_backup_rounds_avg_fields + count(columns: [v_match_map_backup_rounds_select_column!], distinct: Boolean): Int! + max: v_match_map_backup_rounds_max_fields + min: v_match_map_backup_rounds_min_fields + stddev: v_match_map_backup_rounds_stddev_fields + stddev_pop: v_match_map_backup_rounds_stddev_pop_fields + stddev_samp: v_match_map_backup_rounds_stddev_samp_fields + sum: v_match_map_backup_rounds_sum_fields + var_pop: v_match_map_backup_rounds_var_pop_fields + var_samp: v_match_map_backup_rounds_var_samp_fields + variance: v_match_map_backup_rounds_variance_fields +} + +"""aggregate avg on columns""" +type v_match_map_backup_rounds_avg_fields { + round: Float +} + +""" +Boolean expression to filter rows from the table "v_match_map_backup_rounds". All fields are combined with a logical 'AND'. +""" +input v_match_map_backup_rounds_bool_exp { + _and: [v_match_map_backup_rounds_bool_exp!] + _not: v_match_map_backup_rounds_bool_exp + _or: [v_match_map_backup_rounds_bool_exp!] + has_backup_file: Boolean_comparison_exp + match_map_id: uuid_comparison_exp + round: Int_comparison_exp +} + +""" +input type for incrementing numeric columns in table "v_match_map_backup_rounds" +""" +input v_match_map_backup_rounds_inc_input { + round: Int +} + +""" +input type for inserting data into table "v_match_map_backup_rounds" +""" +input v_match_map_backup_rounds_insert_input { + has_backup_file: Boolean + match_map_id: uuid + round: Int +} + +"""aggregate max on columns""" +type v_match_map_backup_rounds_max_fields { + match_map_id: uuid + round: Int +} + +"""aggregate min on columns""" +type v_match_map_backup_rounds_min_fields { + match_map_id: uuid + round: Int +} + +""" +response of any mutation on the table "v_match_map_backup_rounds" +""" +type v_match_map_backup_rounds_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [v_match_map_backup_rounds!]! +} + +"""Ordering options when selecting data from "v_match_map_backup_rounds".""" +input v_match_map_backup_rounds_order_by { + has_backup_file: order_by + match_map_id: order_by + round: order_by +} + +""" +select columns of table "v_match_map_backup_rounds" +""" +enum v_match_map_backup_rounds_select_column { + """column name""" + has_backup_file + + """column name""" + match_map_id + + """column name""" + round +} + +""" +input type for updating data in table "v_match_map_backup_rounds" +""" +input v_match_map_backup_rounds_set_input { + has_backup_file: Boolean + match_map_id: uuid + round: Int +} + +"""aggregate stddev on columns""" +type v_match_map_backup_rounds_stddev_fields { + round: Float +} + +"""aggregate stddev_pop on columns""" +type v_match_map_backup_rounds_stddev_pop_fields { + round: Float +} + +"""aggregate stddev_samp on columns""" +type v_match_map_backup_rounds_stddev_samp_fields { + round: Float +} + +""" +Streaming cursor of the table "v_match_map_backup_rounds" +""" +input v_match_map_backup_rounds_stream_cursor_input { + """Stream column input with initial value""" + initial_value: v_match_map_backup_rounds_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input v_match_map_backup_rounds_stream_cursor_value_input { + has_backup_file: Boolean + match_map_id: uuid + round: Int +} + +"""aggregate sum on columns""" +type v_match_map_backup_rounds_sum_fields { + round: Int +} + +input v_match_map_backup_rounds_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: v_match_map_backup_rounds_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: v_match_map_backup_rounds_set_input + + """filter the rows which have to be updated""" + where: v_match_map_backup_rounds_bool_exp! +} + +"""aggregate var_pop on columns""" +type v_match_map_backup_rounds_var_pop_fields { + round: Float +} + +"""aggregate var_samp on columns""" +type v_match_map_backup_rounds_var_samp_fields { + round: Float +} + +"""aggregate variance on columns""" +type v_match_map_backup_rounds_variance_fields { + round: Float +} + +""" +columns and relationships of "v_match_player_buy_types" +""" +type v_match_player_buy_types { + deaths: Int + kills: Int + + """An object relationship""" + match: matches + match_id: uuid + + """An object relationship""" + match_lineup: match_lineups + match_lineup_id: uuid + + """An object relationship""" + match_map: match_maps + match_map_id: uuid + matchup: String + + """An object relationship""" + player: players + rounds: Int + side: String + steam_id: bigint +} + +""" +aggregated selection of "v_match_player_buy_types" +""" +type v_match_player_buy_types_aggregate { + aggregate: v_match_player_buy_types_aggregate_fields + nodes: [v_match_player_buy_types!]! +} + +""" +aggregate fields of "v_match_player_buy_types" +""" +type v_match_player_buy_types_aggregate_fields { + avg: v_match_player_buy_types_avg_fields + count(columns: [v_match_player_buy_types_select_column!], distinct: Boolean): Int! + max: v_match_player_buy_types_max_fields + min: v_match_player_buy_types_min_fields + stddev: v_match_player_buy_types_stddev_fields + stddev_pop: v_match_player_buy_types_stddev_pop_fields + stddev_samp: v_match_player_buy_types_stddev_samp_fields + sum: v_match_player_buy_types_sum_fields + var_pop: v_match_player_buy_types_var_pop_fields + var_samp: v_match_player_buy_types_var_samp_fields + variance: v_match_player_buy_types_variance_fields +} + +"""aggregate avg on columns""" +type v_match_player_buy_types_avg_fields { + deaths: Float + kills: Float + rounds: Float + steam_id: Float +} + +""" +Boolean expression to filter rows from the table "v_match_player_buy_types". All fields are combined with a logical 'AND'. +""" +input v_match_player_buy_types_bool_exp { + _and: [v_match_player_buy_types_bool_exp!] + _not: v_match_player_buy_types_bool_exp + _or: [v_match_player_buy_types_bool_exp!] + deaths: Int_comparison_exp + kills: Int_comparison_exp + match: matches_bool_exp + match_id: uuid_comparison_exp + match_lineup: match_lineups_bool_exp + match_lineup_id: uuid_comparison_exp + match_map: match_maps_bool_exp + match_map_id: uuid_comparison_exp + matchup: String_comparison_exp + player: players_bool_exp + rounds: Int_comparison_exp + side: String_comparison_exp + steam_id: bigint_comparison_exp +} + +"""aggregate max on columns""" +type v_match_player_buy_types_max_fields { + deaths: Int + kills: Int + match_id: uuid + match_lineup_id: uuid + match_map_id: uuid + matchup: String + rounds: Int + side: String + steam_id: bigint +} + +"""aggregate min on columns""" +type v_match_player_buy_types_min_fields { + deaths: Int + kills: Int + match_id: uuid + match_lineup_id: uuid + match_map_id: uuid + matchup: String + rounds: Int + side: String + steam_id: bigint +} + +"""Ordering options when selecting data from "v_match_player_buy_types".""" +input v_match_player_buy_types_order_by { + deaths: order_by + kills: order_by + match: matches_order_by + match_id: order_by + match_lineup: match_lineups_order_by + match_lineup_id: order_by + match_map: match_maps_order_by + match_map_id: order_by + matchup: order_by + player: players_order_by + rounds: order_by + side: order_by + steam_id: order_by +} + +""" +select columns of table "v_match_player_buy_types" +""" +enum v_match_player_buy_types_select_column { + """column name""" + deaths + + """column name""" + kills + + """column name""" + match_id + + """column name""" + match_lineup_id + + """column name""" + match_map_id + + """column name""" + matchup + + """column name""" + rounds + + """column name""" + side + + """column name""" + steam_id +} + +"""aggregate stddev on columns""" +type v_match_player_buy_types_stddev_fields { + deaths: Float + kills: Float + rounds: Float + steam_id: Float +} + +"""aggregate stddev_pop on columns""" +type v_match_player_buy_types_stddev_pop_fields { + deaths: Float + kills: Float + rounds: Float + steam_id: Float +} + +"""aggregate stddev_samp on columns""" +type v_match_player_buy_types_stddev_samp_fields { + deaths: Float + kills: Float + rounds: Float + steam_id: Float +} + +""" +Streaming cursor of the table "v_match_player_buy_types" +""" +input v_match_player_buy_types_stream_cursor_input { + """Stream column input with initial value""" + initial_value: v_match_player_buy_types_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input v_match_player_buy_types_stream_cursor_value_input { + deaths: Int + kills: Int + match_id: uuid + match_lineup_id: uuid + match_map_id: uuid + matchup: String + rounds: Int + side: String + steam_id: bigint +} + +"""aggregate sum on columns""" +type v_match_player_buy_types_sum_fields { + deaths: Int + kills: Int + rounds: Int + steam_id: bigint +} + +"""aggregate var_pop on columns""" +type v_match_player_buy_types_var_pop_fields { + deaths: Float + kills: Float + rounds: Float + steam_id: Float +} + +"""aggregate var_samp on columns""" +type v_match_player_buy_types_var_samp_fields { + deaths: Float + kills: Float + rounds: Float + steam_id: Float +} + +"""aggregate variance on columns""" +type v_match_player_buy_types_variance_fields { + deaths: Float + kills: Float + rounds: Float + steam_id: Float +} + +""" +columns and relationships of "v_match_player_opening_duels" +""" +type v_match_player_opening_duels { + attempts: Int + deaths: Int + + """An object relationship""" + match: matches + match_id: uuid + + """An object relationship""" + match_lineup: match_lineups + match_lineup_id: uuid + + """An object relationship""" + match_map: match_maps + match_map_id: uuid + + """An object relationship""" + player: players + side: String + steam_id: bigint + traded_deaths: Int + wins: Int +} + +""" +aggregated selection of "v_match_player_opening_duels" +""" +type v_match_player_opening_duels_aggregate { + aggregate: v_match_player_opening_duels_aggregate_fields + nodes: [v_match_player_opening_duels!]! +} + +input v_match_player_opening_duels_aggregate_bool_exp { + count: v_match_player_opening_duels_aggregate_bool_exp_count +} + +input v_match_player_opening_duels_aggregate_bool_exp_count { + arguments: [v_match_player_opening_duels_select_column!] + distinct: Boolean + filter: v_match_player_opening_duels_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "v_match_player_opening_duels" +""" +type v_match_player_opening_duels_aggregate_fields { + avg: v_match_player_opening_duels_avg_fields + count(columns: [v_match_player_opening_duels_select_column!], distinct: Boolean): Int! + max: v_match_player_opening_duels_max_fields + min: v_match_player_opening_duels_min_fields + stddev: v_match_player_opening_duels_stddev_fields + stddev_pop: v_match_player_opening_duels_stddev_pop_fields + stddev_samp: v_match_player_opening_duels_stddev_samp_fields + sum: v_match_player_opening_duels_sum_fields + var_pop: v_match_player_opening_duels_var_pop_fields + var_samp: v_match_player_opening_duels_var_samp_fields + variance: v_match_player_opening_duels_variance_fields +} + +""" +order by aggregate values of table "v_match_player_opening_duels" +""" +input v_match_player_opening_duels_aggregate_order_by { + avg: v_match_player_opening_duels_avg_order_by + count: order_by + max: v_match_player_opening_duels_max_order_by + min: v_match_player_opening_duels_min_order_by + stddev: v_match_player_opening_duels_stddev_order_by + stddev_pop: v_match_player_opening_duels_stddev_pop_order_by + stddev_samp: v_match_player_opening_duels_stddev_samp_order_by + sum: v_match_player_opening_duels_sum_order_by + var_pop: v_match_player_opening_duels_var_pop_order_by + var_samp: v_match_player_opening_duels_var_samp_order_by + variance: v_match_player_opening_duels_variance_order_by +} + +""" +input type for inserting array relation for remote table "v_match_player_opening_duels" +""" +input v_match_player_opening_duels_arr_rel_insert_input { + data: [v_match_player_opening_duels_insert_input!]! +} + +"""aggregate avg on columns""" +type v_match_player_opening_duels_avg_fields { + attempts: Float + deaths: Float + steam_id: Float + traded_deaths: Float + wins: Float +} + +""" +order by avg() on columns of table "v_match_player_opening_duels" +""" +input v_match_player_opening_duels_avg_order_by { + attempts: order_by + deaths: order_by + steam_id: order_by + traded_deaths: order_by + wins: order_by +} + +""" +Boolean expression to filter rows from the table "v_match_player_opening_duels". All fields are combined with a logical 'AND'. +""" +input v_match_player_opening_duels_bool_exp { + _and: [v_match_player_opening_duels_bool_exp!] + _not: v_match_player_opening_duels_bool_exp + _or: [v_match_player_opening_duels_bool_exp!] + attempts: Int_comparison_exp + deaths: Int_comparison_exp + match: matches_bool_exp + match_id: uuid_comparison_exp + match_lineup: match_lineups_bool_exp + match_lineup_id: uuid_comparison_exp + match_map: match_maps_bool_exp + match_map_id: uuid_comparison_exp + player: players_bool_exp + side: String_comparison_exp + steam_id: bigint_comparison_exp + traded_deaths: Int_comparison_exp + wins: Int_comparison_exp +} + +""" +input type for inserting data into table "v_match_player_opening_duels" +""" +input v_match_player_opening_duels_insert_input { + attempts: Int + deaths: Int + match: matches_obj_rel_insert_input + match_id: uuid + match_lineup: match_lineups_obj_rel_insert_input + match_lineup_id: uuid + match_map: match_maps_obj_rel_insert_input + match_map_id: uuid + player: players_obj_rel_insert_input + side: String + steam_id: bigint + traded_deaths: Int + wins: Int +} + +"""aggregate max on columns""" +type v_match_player_opening_duels_max_fields { + attempts: Int + deaths: Int + match_id: uuid + match_lineup_id: uuid + match_map_id: uuid + side: String + steam_id: bigint + traded_deaths: Int + wins: Int +} + +""" +order by max() on columns of table "v_match_player_opening_duels" +""" +input v_match_player_opening_duels_max_order_by { + attempts: order_by + deaths: order_by + match_id: order_by + match_lineup_id: order_by + match_map_id: order_by + side: order_by + steam_id: order_by + traded_deaths: order_by + wins: order_by +} + +"""aggregate min on columns""" +type v_match_player_opening_duels_min_fields { + attempts: Int + deaths: Int + match_id: uuid + match_lineup_id: uuid + match_map_id: uuid + side: String + steam_id: bigint + traded_deaths: Int + wins: Int +} + +""" +order by min() on columns of table "v_match_player_opening_duels" +""" +input v_match_player_opening_duels_min_order_by { + attempts: order_by + deaths: order_by + match_id: order_by + match_lineup_id: order_by + match_map_id: order_by + side: order_by + steam_id: order_by + traded_deaths: order_by + wins: order_by +} + +""" +Ordering options when selecting data from "v_match_player_opening_duels". +""" +input v_match_player_opening_duels_order_by { + attempts: order_by + deaths: order_by + match: matches_order_by + match_id: order_by + match_lineup: match_lineups_order_by + match_lineup_id: order_by + match_map: match_maps_order_by + match_map_id: order_by + player: players_order_by + side: order_by + steam_id: order_by + traded_deaths: order_by + wins: order_by +} + +""" +select columns of table "v_match_player_opening_duels" +""" +enum v_match_player_opening_duels_select_column { + """column name""" + attempts + + """column name""" + deaths + + """column name""" + match_id + + """column name""" + match_lineup_id + + """column name""" + match_map_id + + """column name""" + side + + """column name""" + steam_id + + """column name""" + traded_deaths + + """column name""" + wins +} + +"""aggregate stddev on columns""" +type v_match_player_opening_duels_stddev_fields { + attempts: Float + deaths: Float + steam_id: Float + traded_deaths: Float + wins: Float +} + +""" +order by stddev() on columns of table "v_match_player_opening_duels" +""" +input v_match_player_opening_duels_stddev_order_by { + attempts: order_by + deaths: order_by + steam_id: order_by + traded_deaths: order_by + wins: order_by +} + +"""aggregate stddev_pop on columns""" +type v_match_player_opening_duels_stddev_pop_fields { + attempts: Float + deaths: Float + steam_id: Float + traded_deaths: Float + wins: Float +} + +""" +order by stddev_pop() on columns of table "v_match_player_opening_duels" +""" +input v_match_player_opening_duels_stddev_pop_order_by { + attempts: order_by + deaths: order_by + steam_id: order_by + traded_deaths: order_by + wins: order_by +} + +"""aggregate stddev_samp on columns""" +type v_match_player_opening_duels_stddev_samp_fields { + attempts: Float + deaths: Float + steam_id: Float + traded_deaths: Float + wins: Float +} + +""" +order by stddev_samp() on columns of table "v_match_player_opening_duels" +""" +input v_match_player_opening_duels_stddev_samp_order_by { + attempts: order_by + deaths: order_by + steam_id: order_by + traded_deaths: order_by + wins: order_by +} + +""" +Streaming cursor of the table "v_match_player_opening_duels" +""" +input v_match_player_opening_duels_stream_cursor_input { + """Stream column input with initial value""" + initial_value: v_match_player_opening_duels_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input v_match_player_opening_duels_stream_cursor_value_input { + attempts: Int + deaths: Int + match_id: uuid + match_lineup_id: uuid + match_map_id: uuid + side: String + steam_id: bigint + traded_deaths: Int + wins: Int +} + +"""aggregate sum on columns""" +type v_match_player_opening_duels_sum_fields { + attempts: Int + deaths: Int + steam_id: bigint + traded_deaths: Int + wins: Int +} + +""" +order by sum() on columns of table "v_match_player_opening_duels" +""" +input v_match_player_opening_duels_sum_order_by { + attempts: order_by + deaths: order_by + steam_id: order_by + traded_deaths: order_by + wins: order_by +} + +"""aggregate var_pop on columns""" +type v_match_player_opening_duels_var_pop_fields { + attempts: Float + deaths: Float + steam_id: Float + traded_deaths: Float + wins: Float +} + +""" +order by var_pop() on columns of table "v_match_player_opening_duels" +""" +input v_match_player_opening_duels_var_pop_order_by { + attempts: order_by + deaths: order_by + steam_id: order_by + traded_deaths: order_by + wins: order_by +} + +"""aggregate var_samp on columns""" +type v_match_player_opening_duels_var_samp_fields { + attempts: Float + deaths: Float + steam_id: Float + traded_deaths: Float + wins: Float +} + +""" +order by var_samp() on columns of table "v_match_player_opening_duels" +""" +input v_match_player_opening_duels_var_samp_order_by { + attempts: order_by + deaths: order_by + steam_id: order_by + traded_deaths: order_by + wins: order_by +} + +"""aggregate variance on columns""" +type v_match_player_opening_duels_variance_fields { + attempts: Float + deaths: Float + steam_id: Float + traded_deaths: Float + wins: Float +} + +""" +order by variance() on columns of table "v_match_player_opening_duels" +""" +input v_match_player_opening_duels_variance_order_by { + attempts: order_by + deaths: order_by + steam_id: order_by + traded_deaths: order_by + wins: order_by +} + +""" +columns and relationships of "v_player_arch_nemesis" +""" +type v_player_arch_nemesis { + attacker_id: bigint + kill_count: bigint + + """An object relationship""" + nemsis: players + + """An object relationship""" + player: players + victim_id: bigint +} + +""" +aggregated selection of "v_player_arch_nemesis" +""" +type v_player_arch_nemesis_aggregate { + aggregate: v_player_arch_nemesis_aggregate_fields + nodes: [v_player_arch_nemesis!]! +} + +""" +aggregate fields of "v_player_arch_nemesis" +""" +type v_player_arch_nemesis_aggregate_fields { + avg: v_player_arch_nemesis_avg_fields + count(columns: [v_player_arch_nemesis_select_column!], distinct: Boolean): Int! + max: v_player_arch_nemesis_max_fields + min: v_player_arch_nemesis_min_fields + stddev: v_player_arch_nemesis_stddev_fields + stddev_pop: v_player_arch_nemesis_stddev_pop_fields + stddev_samp: v_player_arch_nemesis_stddev_samp_fields + sum: v_player_arch_nemesis_sum_fields + var_pop: v_player_arch_nemesis_var_pop_fields + var_samp: v_player_arch_nemesis_var_samp_fields + variance: v_player_arch_nemesis_variance_fields +} + +"""aggregate avg on columns""" +type v_player_arch_nemesis_avg_fields { + attacker_id: Float + kill_count: Float + victim_id: Float +} + +""" +Boolean expression to filter rows from the table "v_player_arch_nemesis". All fields are combined with a logical 'AND'. +""" +input v_player_arch_nemesis_bool_exp { + _and: [v_player_arch_nemesis_bool_exp!] + _not: v_player_arch_nemesis_bool_exp + _or: [v_player_arch_nemesis_bool_exp!] + attacker_id: bigint_comparison_exp + kill_count: bigint_comparison_exp + nemsis: players_bool_exp + player: players_bool_exp + victim_id: bigint_comparison_exp +} + +"""aggregate max on columns""" +type v_player_arch_nemesis_max_fields { + attacker_id: bigint + kill_count: bigint + victim_id: bigint +} + +"""aggregate min on columns""" +type v_player_arch_nemesis_min_fields { + attacker_id: bigint + kill_count: bigint + victim_id: bigint +} + +"""Ordering options when selecting data from "v_player_arch_nemesis".""" +input v_player_arch_nemesis_order_by { + attacker_id: order_by + kill_count: order_by + nemsis: players_order_by + player: players_order_by + victim_id: order_by +} + +""" +select columns of table "v_player_arch_nemesis" +""" +enum v_player_arch_nemesis_select_column { + """column name""" + attacker_id + + """column name""" + kill_count + + """column name""" + victim_id +} + +"""aggregate stddev on columns""" +type v_player_arch_nemesis_stddev_fields { + attacker_id: Float + kill_count: Float + victim_id: Float +} + +"""aggregate stddev_pop on columns""" +type v_player_arch_nemesis_stddev_pop_fields { + attacker_id: Float + kill_count: Float + victim_id: Float +} + +"""aggregate stddev_samp on columns""" +type v_player_arch_nemesis_stddev_samp_fields { + attacker_id: Float + kill_count: Float + victim_id: Float +} + +""" +Streaming cursor of the table "v_player_arch_nemesis" +""" +input v_player_arch_nemesis_stream_cursor_input { + """Stream column input with initial value""" + initial_value: v_player_arch_nemesis_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input v_player_arch_nemesis_stream_cursor_value_input { + attacker_id: bigint + kill_count: bigint + victim_id: bigint +} + +"""aggregate sum on columns""" +type v_player_arch_nemesis_sum_fields { + attacker_id: bigint + kill_count: bigint + victim_id: bigint +} + +"""aggregate var_pop on columns""" +type v_player_arch_nemesis_var_pop_fields { + attacker_id: Float + kill_count: Float + victim_id: Float +} + +"""aggregate var_samp on columns""" +type v_player_arch_nemesis_var_samp_fields { + attacker_id: Float + kill_count: Float + victim_id: Float +} + +"""aggregate variance on columns""" +type v_player_arch_nemesis_variance_fields { + attacker_id: Float + kill_count: Float + victim_id: Float +} + +""" +columns and relationships of "v_player_damage" +""" +type v_player_damage { + avg_damage_per_round: bigint + + """An object relationship""" + player: players + player_steam_id: bigint + total_damage: bigint + total_rounds: bigint +} + +""" +aggregated selection of "v_player_damage" +""" +type v_player_damage_aggregate { + aggregate: v_player_damage_aggregate_fields + nodes: [v_player_damage!]! +} + +""" +aggregate fields of "v_player_damage" +""" +type v_player_damage_aggregate_fields { + avg: v_player_damage_avg_fields + count(columns: [v_player_damage_select_column!], distinct: Boolean): Int! + max: v_player_damage_max_fields + min: v_player_damage_min_fields + stddev: v_player_damage_stddev_fields + stddev_pop: v_player_damage_stddev_pop_fields + stddev_samp: v_player_damage_stddev_samp_fields + sum: v_player_damage_sum_fields + var_pop: v_player_damage_var_pop_fields + var_samp: v_player_damage_var_samp_fields + variance: v_player_damage_variance_fields +} + +"""aggregate avg on columns""" +type v_player_damage_avg_fields { + avg_damage_per_round: Float + player_steam_id: Float + total_damage: Float + total_rounds: Float +} + +""" +Boolean expression to filter rows from the table "v_player_damage". All fields are combined with a logical 'AND'. +""" +input v_player_damage_bool_exp { + _and: [v_player_damage_bool_exp!] + _not: v_player_damage_bool_exp + _or: [v_player_damage_bool_exp!] + avg_damage_per_round: bigint_comparison_exp + player: players_bool_exp + player_steam_id: bigint_comparison_exp + total_damage: bigint_comparison_exp + total_rounds: bigint_comparison_exp +} + +"""aggregate max on columns""" +type v_player_damage_max_fields { + avg_damage_per_round: bigint + player_steam_id: bigint + total_damage: bigint + total_rounds: bigint +} + +"""aggregate min on columns""" +type v_player_damage_min_fields { + avg_damage_per_round: bigint + player_steam_id: bigint + total_damage: bigint + total_rounds: bigint +} + +"""Ordering options when selecting data from "v_player_damage".""" +input v_player_damage_order_by { + avg_damage_per_round: order_by + player: players_order_by + player_steam_id: order_by + total_damage: order_by + total_rounds: order_by +} + +""" +select columns of table "v_player_damage" +""" +enum v_player_damage_select_column { + """column name""" + avg_damage_per_round + + """column name""" + player_steam_id + + """column name""" + total_damage + + """column name""" + total_rounds +} + +"""aggregate stddev on columns""" +type v_player_damage_stddev_fields { + avg_damage_per_round: Float + player_steam_id: Float + total_damage: Float + total_rounds: Float +} + +"""aggregate stddev_pop on columns""" +type v_player_damage_stddev_pop_fields { + avg_damage_per_round: Float + player_steam_id: Float + total_damage: Float + total_rounds: Float +} + +"""aggregate stddev_samp on columns""" +type v_player_damage_stddev_samp_fields { + avg_damage_per_round: Float + player_steam_id: Float + total_damage: Float + total_rounds: Float +} + +""" +Streaming cursor of the table "v_player_damage" +""" +input v_player_damage_stream_cursor_input { + """Stream column input with initial value""" + initial_value: v_player_damage_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input v_player_damage_stream_cursor_value_input { + avg_damage_per_round: bigint + player_steam_id: bigint + total_damage: bigint + total_rounds: bigint +} + +"""aggregate sum on columns""" +type v_player_damage_sum_fields { + avg_damage_per_round: bigint + player_steam_id: bigint + total_damage: bigint + total_rounds: bigint +} + +"""aggregate var_pop on columns""" +type v_player_damage_var_pop_fields { + avg_damage_per_round: Float + player_steam_id: Float + total_damage: Float + total_rounds: Float +} + +"""aggregate var_samp on columns""" +type v_player_damage_var_samp_fields { + avg_damage_per_round: Float + player_steam_id: Float + total_damage: Float + total_rounds: Float +} + +"""aggregate variance on columns""" +type v_player_damage_variance_fields { + avg_damage_per_round: Float + player_steam_id: Float + total_damage: Float + total_rounds: Float +} + +""" +columns and relationships of "v_player_elo" +""" +type v_player_elo { + actual_score: float8 + assists: Int + current_elo: Int + damage: Int + damage_percent: float8 + deaths: Int + elo_change: Int + expected_score: float8 + impact: float8 + k_factor: Int + kda: float8 + kills: Int + map_losses: Int + map_wins: Int + + """An object relationship""" + match: matches + match_created_at: timestamptz + match_id: uuid + match_result: String + opponent_team_elo_avg: float8 + performance_multiplier: float8 + player_name: String + player_steam_id: bigint + player_team_elo_avg: float8 + rating_for_expected: float8 + season_id: uuid + series_multiplier: Int + team_avg_kda: float8 + type: String + updated_elo: Int +} + +""" +aggregated selection of "v_player_elo" +""" +type v_player_elo_aggregate { + aggregate: v_player_elo_aggregate_fields + nodes: [v_player_elo!]! +} + +input v_player_elo_aggregate_bool_exp { + avg: v_player_elo_aggregate_bool_exp_avg + corr: v_player_elo_aggregate_bool_exp_corr + count: v_player_elo_aggregate_bool_exp_count + covar_samp: v_player_elo_aggregate_bool_exp_covar_samp + max: v_player_elo_aggregate_bool_exp_max + min: v_player_elo_aggregate_bool_exp_min + stddev_samp: v_player_elo_aggregate_bool_exp_stddev_samp + sum: v_player_elo_aggregate_bool_exp_sum + var_samp: v_player_elo_aggregate_bool_exp_var_samp +} + +input v_player_elo_aggregate_bool_exp_avg { + arguments: v_player_elo_select_column_v_player_elo_aggregate_bool_exp_avg_arguments_columns! + distinct: Boolean + filter: v_player_elo_bool_exp + predicate: float8_comparison_exp! +} + +input v_player_elo_aggregate_bool_exp_corr { + arguments: v_player_elo_aggregate_bool_exp_corr_arguments! + distinct: Boolean + filter: v_player_elo_bool_exp + predicate: float8_comparison_exp! +} + +input v_player_elo_aggregate_bool_exp_corr_arguments { + X: v_player_elo_select_column_v_player_elo_aggregate_bool_exp_corr_arguments_columns! + Y: v_player_elo_select_column_v_player_elo_aggregate_bool_exp_corr_arguments_columns! +} + +input v_player_elo_aggregate_bool_exp_count { + arguments: [v_player_elo_select_column!] + distinct: Boolean + filter: v_player_elo_bool_exp + predicate: Int_comparison_exp! +} + +input v_player_elo_aggregate_bool_exp_covar_samp { + arguments: v_player_elo_aggregate_bool_exp_covar_samp_arguments! + distinct: Boolean + filter: v_player_elo_bool_exp + predicate: float8_comparison_exp! +} + +input v_player_elo_aggregate_bool_exp_covar_samp_arguments { + X: v_player_elo_select_column_v_player_elo_aggregate_bool_exp_covar_samp_arguments_columns! + Y: v_player_elo_select_column_v_player_elo_aggregate_bool_exp_covar_samp_arguments_columns! +} + +input v_player_elo_aggregate_bool_exp_max { + arguments: v_player_elo_select_column_v_player_elo_aggregate_bool_exp_max_arguments_columns! + distinct: Boolean + filter: v_player_elo_bool_exp + predicate: float8_comparison_exp! +} + +input v_player_elo_aggregate_bool_exp_min { + arguments: v_player_elo_select_column_v_player_elo_aggregate_bool_exp_min_arguments_columns! + distinct: Boolean + filter: v_player_elo_bool_exp + predicate: float8_comparison_exp! +} + +input v_player_elo_aggregate_bool_exp_stddev_samp { + arguments: v_player_elo_select_column_v_player_elo_aggregate_bool_exp_stddev_samp_arguments_columns! + distinct: Boolean + filter: v_player_elo_bool_exp + predicate: float8_comparison_exp! +} + +input v_player_elo_aggregate_bool_exp_sum { + arguments: v_player_elo_select_column_v_player_elo_aggregate_bool_exp_sum_arguments_columns! + distinct: Boolean + filter: v_player_elo_bool_exp + predicate: float8_comparison_exp! +} + +input v_player_elo_aggregate_bool_exp_var_samp { + arguments: v_player_elo_select_column_v_player_elo_aggregate_bool_exp_var_samp_arguments_columns! + distinct: Boolean + filter: v_player_elo_bool_exp + predicate: float8_comparison_exp! +} + +""" +aggregate fields of "v_player_elo" +""" +type v_player_elo_aggregate_fields { + avg: v_player_elo_avg_fields + count(columns: [v_player_elo_select_column!], distinct: Boolean): Int! + max: v_player_elo_max_fields + min: v_player_elo_min_fields + stddev: v_player_elo_stddev_fields + stddev_pop: v_player_elo_stddev_pop_fields + stddev_samp: v_player_elo_stddev_samp_fields + sum: v_player_elo_sum_fields + var_pop: v_player_elo_var_pop_fields + var_samp: v_player_elo_var_samp_fields + variance: v_player_elo_variance_fields +} + +""" +order by aggregate values of table "v_player_elo" +""" +input v_player_elo_aggregate_order_by { + avg: v_player_elo_avg_order_by + count: order_by + max: v_player_elo_max_order_by + min: v_player_elo_min_order_by + stddev: v_player_elo_stddev_order_by + stddev_pop: v_player_elo_stddev_pop_order_by + stddev_samp: v_player_elo_stddev_samp_order_by + sum: v_player_elo_sum_order_by + var_pop: v_player_elo_var_pop_order_by + var_samp: v_player_elo_var_samp_order_by + variance: v_player_elo_variance_order_by +} + +""" +input type for inserting array relation for remote table "v_player_elo" +""" +input v_player_elo_arr_rel_insert_input { + data: [v_player_elo_insert_input!]! +} + +"""aggregate avg on columns""" +type v_player_elo_avg_fields { + actual_score: Float + assists: Float + current_elo: Float + damage: Float + damage_percent: Float + deaths: Float + elo_change: Float + expected_score: Float + impact: Float + k_factor: Float + kda: Float + kills: Float + map_losses: Float + map_wins: Float + opponent_team_elo_avg: Float + performance_multiplier: Float + player_steam_id: Float + player_team_elo_avg: Float + rating_for_expected: Float + series_multiplier: Float + team_avg_kda: Float + updated_elo: Float +} + +""" +order by avg() on columns of table "v_player_elo" +""" +input v_player_elo_avg_order_by { + actual_score: order_by + assists: order_by + current_elo: order_by + damage: order_by + damage_percent: order_by + deaths: order_by + elo_change: order_by + expected_score: order_by + impact: order_by + k_factor: order_by + kda: order_by + kills: order_by + map_losses: order_by + map_wins: order_by + opponent_team_elo_avg: order_by + performance_multiplier: order_by + player_steam_id: order_by + player_team_elo_avg: order_by + rating_for_expected: order_by + series_multiplier: order_by + team_avg_kda: order_by + updated_elo: order_by +} + +""" +Boolean expression to filter rows from the table "v_player_elo". All fields are combined with a logical 'AND'. +""" +input v_player_elo_bool_exp { + _and: [v_player_elo_bool_exp!] + _not: v_player_elo_bool_exp + _or: [v_player_elo_bool_exp!] + actual_score: float8_comparison_exp + assists: Int_comparison_exp + current_elo: Int_comparison_exp + damage: Int_comparison_exp + damage_percent: float8_comparison_exp + deaths: Int_comparison_exp + elo_change: Int_comparison_exp + expected_score: float8_comparison_exp + impact: float8_comparison_exp + k_factor: Int_comparison_exp + kda: float8_comparison_exp + kills: Int_comparison_exp + map_losses: Int_comparison_exp + map_wins: Int_comparison_exp + match: matches_bool_exp + match_created_at: timestamptz_comparison_exp + match_id: uuid_comparison_exp + match_result: String_comparison_exp + opponent_team_elo_avg: float8_comparison_exp + performance_multiplier: float8_comparison_exp + player_name: String_comparison_exp + player_steam_id: bigint_comparison_exp + player_team_elo_avg: float8_comparison_exp + rating_for_expected: float8_comparison_exp + season_id: uuid_comparison_exp + series_multiplier: Int_comparison_exp + team_avg_kda: float8_comparison_exp + type: String_comparison_exp + updated_elo: Int_comparison_exp +} + +""" +input type for inserting data into table "v_player_elo" +""" +input v_player_elo_insert_input { + actual_score: float8 + assists: Int + current_elo: Int + damage: Int + damage_percent: float8 + deaths: Int + elo_change: Int + expected_score: float8 + impact: float8 + k_factor: Int + kda: float8 + kills: Int + map_losses: Int + map_wins: Int + match: matches_obj_rel_insert_input + match_created_at: timestamptz + match_id: uuid + match_result: String + opponent_team_elo_avg: float8 + performance_multiplier: float8 + player_name: String + player_steam_id: bigint + player_team_elo_avg: float8 + rating_for_expected: float8 + season_id: uuid + series_multiplier: Int + team_avg_kda: float8 + type: String + updated_elo: Int +} + +"""aggregate max on columns""" +type v_player_elo_max_fields { + actual_score: float8 + assists: Int + current_elo: Int + damage: Int + damage_percent: float8 + deaths: Int + elo_change: Int + expected_score: float8 + impact: float8 + k_factor: Int + kda: float8 + kills: Int + map_losses: Int + map_wins: Int + match_created_at: timestamptz + match_id: uuid + match_result: String + opponent_team_elo_avg: float8 + performance_multiplier: float8 + player_name: String + player_steam_id: bigint + player_team_elo_avg: float8 + rating_for_expected: float8 + season_id: uuid + series_multiplier: Int + team_avg_kda: float8 + type: String + updated_elo: Int +} + +""" +order by max() on columns of table "v_player_elo" +""" +input v_player_elo_max_order_by { + actual_score: order_by + assists: order_by + current_elo: order_by + damage: order_by + damage_percent: order_by + deaths: order_by + elo_change: order_by + expected_score: order_by + impact: order_by + k_factor: order_by + kda: order_by + kills: order_by + map_losses: order_by + map_wins: order_by + match_created_at: order_by + match_id: order_by + match_result: order_by + opponent_team_elo_avg: order_by + performance_multiplier: order_by + player_name: order_by + player_steam_id: order_by + player_team_elo_avg: order_by + rating_for_expected: order_by + season_id: order_by + series_multiplier: order_by + team_avg_kda: order_by + type: order_by + updated_elo: order_by +} + +"""aggregate min on columns""" +type v_player_elo_min_fields { + actual_score: float8 + assists: Int + current_elo: Int + damage: Int + damage_percent: float8 + deaths: Int + elo_change: Int + expected_score: float8 + impact: float8 + k_factor: Int + kda: float8 + kills: Int + map_losses: Int + map_wins: Int + match_created_at: timestamptz + match_id: uuid + match_result: String + opponent_team_elo_avg: float8 + performance_multiplier: float8 + player_name: String + player_steam_id: bigint + player_team_elo_avg: float8 + rating_for_expected: float8 + season_id: uuid + series_multiplier: Int + team_avg_kda: float8 + type: String + updated_elo: Int +} + +""" +order by min() on columns of table "v_player_elo" +""" +input v_player_elo_min_order_by { + actual_score: order_by + assists: order_by + current_elo: order_by + damage: order_by + damage_percent: order_by + deaths: order_by + elo_change: order_by + expected_score: order_by + impact: order_by + k_factor: order_by + kda: order_by + kills: order_by + map_losses: order_by + map_wins: order_by + match_created_at: order_by + match_id: order_by + match_result: order_by + opponent_team_elo_avg: order_by + performance_multiplier: order_by + player_name: order_by + player_steam_id: order_by + player_team_elo_avg: order_by + rating_for_expected: order_by + season_id: order_by + series_multiplier: order_by + team_avg_kda: order_by + type: order_by + updated_elo: order_by +} + +"""Ordering options when selecting data from "v_player_elo".""" +input v_player_elo_order_by { + actual_score: order_by + assists: order_by + current_elo: order_by + damage: order_by + damage_percent: order_by + deaths: order_by + elo_change: order_by + expected_score: order_by + impact: order_by + k_factor: order_by + kda: order_by + kills: order_by + map_losses: order_by + map_wins: order_by + match: matches_order_by + match_created_at: order_by + match_id: order_by + match_result: order_by + opponent_team_elo_avg: order_by + performance_multiplier: order_by + player_name: order_by + player_steam_id: order_by + player_team_elo_avg: order_by + rating_for_expected: order_by + season_id: order_by + series_multiplier: order_by + team_avg_kda: order_by + type: order_by + updated_elo: order_by +} + +""" +select columns of table "v_player_elo" +""" +enum v_player_elo_select_column { + """column name""" + actual_score + + """column name""" + assists + + """column name""" + current_elo + + """column name""" + damage + + """column name""" + damage_percent + + """column name""" + deaths + + """column name""" + elo_change + + """column name""" + expected_score + + """column name""" + impact + + """column name""" + k_factor + + """column name""" + kda + + """column name""" + kills + + """column name""" + map_losses + + """column name""" + map_wins + + """column name""" + match_created_at + + """column name""" + match_id + + """column name""" + match_result + + """column name""" + opponent_team_elo_avg + + """column name""" + performance_multiplier + + """column name""" + player_name + + """column name""" + player_steam_id + + """column name""" + player_team_elo_avg + + """column name""" + rating_for_expected + + """column name""" + season_id + + """column name""" + series_multiplier + + """column name""" + team_avg_kda + + """column name""" + type + + """column name""" + updated_elo +} + +""" +select "v_player_elo_aggregate_bool_exp_avg_arguments_columns" columns of table "v_player_elo" +""" +enum v_player_elo_select_column_v_player_elo_aggregate_bool_exp_avg_arguments_columns { + """column name""" + actual_score + + """column name""" + damage_percent + + """column name""" + expected_score + + """column name""" + impact + + """column name""" + kda + + """column name""" + opponent_team_elo_avg + + """column name""" + performance_multiplier + + """column name""" + player_team_elo_avg + + """column name""" + rating_for_expected + + """column name""" + team_avg_kda +} + +""" +select "v_player_elo_aggregate_bool_exp_corr_arguments_columns" columns of table "v_player_elo" +""" +enum v_player_elo_select_column_v_player_elo_aggregate_bool_exp_corr_arguments_columns { + """column name""" + actual_score + + """column name""" + damage_percent + + """column name""" + expected_score + + """column name""" + impact + + """column name""" + kda + + """column name""" + opponent_team_elo_avg + + """column name""" + performance_multiplier + + """column name""" + player_team_elo_avg + + """column name""" + rating_for_expected + + """column name""" + team_avg_kda +} + +""" +select "v_player_elo_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "v_player_elo" +""" +enum v_player_elo_select_column_v_player_elo_aggregate_bool_exp_covar_samp_arguments_columns { + """column name""" + actual_score + + """column name""" + damage_percent + + """column name""" + expected_score + + """column name""" + impact + + """column name""" + kda + + """column name""" + opponent_team_elo_avg + + """column name""" + performance_multiplier + + """column name""" + player_team_elo_avg + + """column name""" + rating_for_expected + + """column name""" + team_avg_kda +} + +""" +select "v_player_elo_aggregate_bool_exp_max_arguments_columns" columns of table "v_player_elo" +""" +enum v_player_elo_select_column_v_player_elo_aggregate_bool_exp_max_arguments_columns { + """column name""" + actual_score + + """column name""" + damage_percent + + """column name""" + expected_score + + """column name""" + impact + + """column name""" + kda + + """column name""" + opponent_team_elo_avg + + """column name""" + performance_multiplier + + """column name""" + player_team_elo_avg + + """column name""" + rating_for_expected + + """column name""" + team_avg_kda +} + +""" +select "v_player_elo_aggregate_bool_exp_min_arguments_columns" columns of table "v_player_elo" +""" +enum v_player_elo_select_column_v_player_elo_aggregate_bool_exp_min_arguments_columns { + """column name""" + actual_score + + """column name""" + damage_percent + + """column name""" + expected_score + + """column name""" + impact + + """column name""" + kda + + """column name""" + opponent_team_elo_avg + + """column name""" + performance_multiplier + + """column name""" + player_team_elo_avg + + """column name""" + rating_for_expected + + """column name""" + team_avg_kda +} + +""" +select "v_player_elo_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "v_player_elo" +""" +enum v_player_elo_select_column_v_player_elo_aggregate_bool_exp_stddev_samp_arguments_columns { + """column name""" + actual_score + + """column name""" + damage_percent + + """column name""" + expected_score + + """column name""" + impact + + """column name""" + kda + + """column name""" + opponent_team_elo_avg + + """column name""" + performance_multiplier + + """column name""" + player_team_elo_avg + + """column name""" + rating_for_expected + + """column name""" + team_avg_kda +} + +""" +select "v_player_elo_aggregate_bool_exp_sum_arguments_columns" columns of table "v_player_elo" +""" +enum v_player_elo_select_column_v_player_elo_aggregate_bool_exp_sum_arguments_columns { + """column name""" + actual_score + + """column name""" + damage_percent + + """column name""" + expected_score + + """column name""" + impact + + """column name""" + kda + + """column name""" + opponent_team_elo_avg + + """column name""" + performance_multiplier + + """column name""" + player_team_elo_avg + + """column name""" + rating_for_expected + + """column name""" + team_avg_kda +} + +""" +select "v_player_elo_aggregate_bool_exp_var_samp_arguments_columns" columns of table "v_player_elo" +""" +enum v_player_elo_select_column_v_player_elo_aggregate_bool_exp_var_samp_arguments_columns { + """column name""" + actual_score + + """column name""" + damage_percent + + """column name""" + expected_score + + """column name""" + impact + + """column name""" + kda + + """column name""" + opponent_team_elo_avg + + """column name""" + performance_multiplier + + """column name""" + player_team_elo_avg + + """column name""" + rating_for_expected + + """column name""" + team_avg_kda +} + +"""aggregate stddev on columns""" +type v_player_elo_stddev_fields { + actual_score: Float + assists: Float + current_elo: Float + damage: Float + damage_percent: Float + deaths: Float + elo_change: Float + expected_score: Float + impact: Float + k_factor: Float + kda: Float + kills: Float + map_losses: Float + map_wins: Float + opponent_team_elo_avg: Float + performance_multiplier: Float + player_steam_id: Float + player_team_elo_avg: Float + rating_for_expected: Float + series_multiplier: Float + team_avg_kda: Float + updated_elo: Float +} + +""" +order by stddev() on columns of table "v_player_elo" +""" +input v_player_elo_stddev_order_by { + actual_score: order_by + assists: order_by + current_elo: order_by + damage: order_by + damage_percent: order_by + deaths: order_by + elo_change: order_by + expected_score: order_by + impact: order_by + k_factor: order_by + kda: order_by + kills: order_by + map_losses: order_by + map_wins: order_by + opponent_team_elo_avg: order_by + performance_multiplier: order_by + player_steam_id: order_by + player_team_elo_avg: order_by + rating_for_expected: order_by + series_multiplier: order_by + team_avg_kda: order_by + updated_elo: order_by +} + +"""aggregate stddev_pop on columns""" +type v_player_elo_stddev_pop_fields { + actual_score: Float + assists: Float + current_elo: Float + damage: Float + damage_percent: Float + deaths: Float + elo_change: Float + expected_score: Float + impact: Float + k_factor: Float + kda: Float + kills: Float + map_losses: Float + map_wins: Float + opponent_team_elo_avg: Float + performance_multiplier: Float + player_steam_id: Float + player_team_elo_avg: Float + rating_for_expected: Float + series_multiplier: Float + team_avg_kda: Float + updated_elo: Float +} + +""" +order by stddev_pop() on columns of table "v_player_elo" +""" +input v_player_elo_stddev_pop_order_by { + actual_score: order_by + assists: order_by + current_elo: order_by + damage: order_by + damage_percent: order_by + deaths: order_by + elo_change: order_by + expected_score: order_by + impact: order_by + k_factor: order_by + kda: order_by + kills: order_by + map_losses: order_by + map_wins: order_by + opponent_team_elo_avg: order_by + performance_multiplier: order_by + player_steam_id: order_by + player_team_elo_avg: order_by + rating_for_expected: order_by + series_multiplier: order_by + team_avg_kda: order_by + updated_elo: order_by +} + +"""aggregate stddev_samp on columns""" +type v_player_elo_stddev_samp_fields { + actual_score: Float + assists: Float + current_elo: Float + damage: Float + damage_percent: Float + deaths: Float + elo_change: Float + expected_score: Float + impact: Float + k_factor: Float + kda: Float + kills: Float + map_losses: Float + map_wins: Float + opponent_team_elo_avg: Float + performance_multiplier: Float + player_steam_id: Float + player_team_elo_avg: Float + rating_for_expected: Float + series_multiplier: Float + team_avg_kda: Float + updated_elo: Float +} + +""" +order by stddev_samp() on columns of table "v_player_elo" +""" +input v_player_elo_stddev_samp_order_by { + actual_score: order_by + assists: order_by + current_elo: order_by + damage: order_by + damage_percent: order_by + deaths: order_by + elo_change: order_by + expected_score: order_by + impact: order_by + k_factor: order_by + kda: order_by + kills: order_by + map_losses: order_by + map_wins: order_by + opponent_team_elo_avg: order_by + performance_multiplier: order_by + player_steam_id: order_by + player_team_elo_avg: order_by + rating_for_expected: order_by + series_multiplier: order_by + team_avg_kda: order_by + updated_elo: order_by +} + +""" +Streaming cursor of the table "v_player_elo" +""" +input v_player_elo_stream_cursor_input { + """Stream column input with initial value""" + initial_value: v_player_elo_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input v_player_elo_stream_cursor_value_input { + actual_score: float8 + assists: Int + current_elo: Int + damage: Int + damage_percent: float8 + deaths: Int + elo_change: Int + expected_score: float8 + impact: float8 + k_factor: Int + kda: float8 + kills: Int + map_losses: Int + map_wins: Int + match_created_at: timestamptz + match_id: uuid + match_result: String + opponent_team_elo_avg: float8 + performance_multiplier: float8 + player_name: String + player_steam_id: bigint + player_team_elo_avg: float8 + rating_for_expected: float8 + season_id: uuid + series_multiplier: Int + team_avg_kda: float8 + type: String + updated_elo: Int +} + +"""aggregate sum on columns""" +type v_player_elo_sum_fields { + actual_score: float8 + assists: Int + current_elo: Int + damage: Int + damage_percent: float8 + deaths: Int + elo_change: Int + expected_score: float8 + impact: float8 + k_factor: Int + kda: float8 + kills: Int + map_losses: Int + map_wins: Int + opponent_team_elo_avg: float8 + performance_multiplier: float8 + player_steam_id: bigint + player_team_elo_avg: float8 + rating_for_expected: float8 + series_multiplier: Int + team_avg_kda: float8 + updated_elo: Int +} + +""" +order by sum() on columns of table "v_player_elo" +""" +input v_player_elo_sum_order_by { + actual_score: order_by + assists: order_by + current_elo: order_by + damage: order_by + damage_percent: order_by + deaths: order_by + elo_change: order_by + expected_score: order_by + impact: order_by + k_factor: order_by + kda: order_by + kills: order_by + map_losses: order_by + map_wins: order_by + opponent_team_elo_avg: order_by + performance_multiplier: order_by + player_steam_id: order_by + player_team_elo_avg: order_by + rating_for_expected: order_by + series_multiplier: order_by + team_avg_kda: order_by + updated_elo: order_by +} + +"""aggregate var_pop on columns""" +type v_player_elo_var_pop_fields { + actual_score: Float + assists: Float + current_elo: Float + damage: Float + damage_percent: Float + deaths: Float + elo_change: Float + expected_score: Float + impact: Float + k_factor: Float + kda: Float + kills: Float + map_losses: Float + map_wins: Float + opponent_team_elo_avg: Float + performance_multiplier: Float + player_steam_id: Float + player_team_elo_avg: Float + rating_for_expected: Float + series_multiplier: Float + team_avg_kda: Float + updated_elo: Float +} + +""" +order by var_pop() on columns of table "v_player_elo" +""" +input v_player_elo_var_pop_order_by { + actual_score: order_by + assists: order_by + current_elo: order_by + damage: order_by + damage_percent: order_by + deaths: order_by + elo_change: order_by + expected_score: order_by + impact: order_by + k_factor: order_by + kda: order_by + kills: order_by + map_losses: order_by + map_wins: order_by + opponent_team_elo_avg: order_by + performance_multiplier: order_by + player_steam_id: order_by + player_team_elo_avg: order_by + rating_for_expected: order_by + series_multiplier: order_by + team_avg_kda: order_by + updated_elo: order_by +} + +"""aggregate var_samp on columns""" +type v_player_elo_var_samp_fields { + actual_score: Float + assists: Float + current_elo: Float + damage: Float + damage_percent: Float + deaths: Float + elo_change: Float + expected_score: Float + impact: Float + k_factor: Float + kda: Float + kills: Float + map_losses: Float + map_wins: Float + opponent_team_elo_avg: Float + performance_multiplier: Float + player_steam_id: Float + player_team_elo_avg: Float + rating_for_expected: Float + series_multiplier: Float + team_avg_kda: Float + updated_elo: Float +} + +""" +order by var_samp() on columns of table "v_player_elo" +""" +input v_player_elo_var_samp_order_by { + actual_score: order_by + assists: order_by + current_elo: order_by + damage: order_by + damage_percent: order_by + deaths: order_by + elo_change: order_by + expected_score: order_by + impact: order_by + k_factor: order_by + kda: order_by + kills: order_by + map_losses: order_by + map_wins: order_by + opponent_team_elo_avg: order_by + performance_multiplier: order_by + player_steam_id: order_by + player_team_elo_avg: order_by + rating_for_expected: order_by + series_multiplier: order_by + team_avg_kda: order_by + updated_elo: order_by +} + +"""aggregate variance on columns""" +type v_player_elo_variance_fields { + actual_score: Float + assists: Float + current_elo: Float + damage: Float + damage_percent: Float + deaths: Float + elo_change: Float + expected_score: Float + impact: Float + k_factor: Float + kda: Float + kills: Float + map_losses: Float + map_wins: Float + opponent_team_elo_avg: Float + performance_multiplier: Float + player_steam_id: Float + player_team_elo_avg: Float + rating_for_expected: Float + series_multiplier: Float + team_avg_kda: Float + updated_elo: Float +} + +""" +order by variance() on columns of table "v_player_elo" +""" +input v_player_elo_variance_order_by { + actual_score: order_by + assists: order_by + current_elo: order_by + damage: order_by + damage_percent: order_by + deaths: order_by + elo_change: order_by + expected_score: order_by + impact: order_by + k_factor: order_by + kda: order_by + kills: order_by + map_losses: order_by + map_wins: order_by + opponent_team_elo_avg: order_by + performance_multiplier: order_by + player_steam_id: order_by + player_team_elo_avg: order_by + rating_for_expected: order_by + series_multiplier: order_by + team_avg_kda: order_by + updated_elo: order_by +} + +""" +columns and relationships of "v_player_map_losses" +""" +type v_player_map_losses { + """An object relationship""" + map: maps + map_id: uuid + + """An object relationship""" + match: matches + match_id: uuid + started_at: timestamptz + steam_id: bigint +} + +""" +aggregated selection of "v_player_map_losses" +""" +type v_player_map_losses_aggregate { + aggregate: v_player_map_losses_aggregate_fields + nodes: [v_player_map_losses!]! +} + +""" +aggregate fields of "v_player_map_losses" +""" +type v_player_map_losses_aggregate_fields { + avg: v_player_map_losses_avg_fields + count(columns: [v_player_map_losses_select_column!], distinct: Boolean): Int! + max: v_player_map_losses_max_fields + min: v_player_map_losses_min_fields + stddev: v_player_map_losses_stddev_fields + stddev_pop: v_player_map_losses_stddev_pop_fields + stddev_samp: v_player_map_losses_stddev_samp_fields + sum: v_player_map_losses_sum_fields + var_pop: v_player_map_losses_var_pop_fields + var_samp: v_player_map_losses_var_samp_fields + variance: v_player_map_losses_variance_fields +} + +"""aggregate avg on columns""" +type v_player_map_losses_avg_fields { + steam_id: Float +} + +""" +Boolean expression to filter rows from the table "v_player_map_losses". All fields are combined with a logical 'AND'. +""" +input v_player_map_losses_bool_exp { + _and: [v_player_map_losses_bool_exp!] + _not: v_player_map_losses_bool_exp + _or: [v_player_map_losses_bool_exp!] + map: maps_bool_exp + map_id: uuid_comparison_exp + match: matches_bool_exp + match_id: uuid_comparison_exp + started_at: timestamptz_comparison_exp + steam_id: bigint_comparison_exp +} + +"""aggregate max on columns""" +type v_player_map_losses_max_fields { + map_id: uuid + match_id: uuid + started_at: timestamptz + steam_id: bigint +} + +"""aggregate min on columns""" +type v_player_map_losses_min_fields { + map_id: uuid + match_id: uuid + started_at: timestamptz + steam_id: bigint +} + +"""Ordering options when selecting data from "v_player_map_losses".""" +input v_player_map_losses_order_by { + map: maps_order_by + map_id: order_by + match: matches_order_by + match_id: order_by + started_at: order_by + steam_id: order_by +} + +""" +select columns of table "v_player_map_losses" +""" +enum v_player_map_losses_select_column { + """column name""" + map_id + + """column name""" + match_id + + """column name""" + started_at + + """column name""" + steam_id +} + +"""aggregate stddev on columns""" +type v_player_map_losses_stddev_fields { + steam_id: Float +} + +"""aggregate stddev_pop on columns""" +type v_player_map_losses_stddev_pop_fields { + steam_id: Float +} + +"""aggregate stddev_samp on columns""" +type v_player_map_losses_stddev_samp_fields { + steam_id: Float +} + +""" +Streaming cursor of the table "v_player_map_losses" +""" +input v_player_map_losses_stream_cursor_input { + """Stream column input with initial value""" + initial_value: v_player_map_losses_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input v_player_map_losses_stream_cursor_value_input { + map_id: uuid + match_id: uuid + started_at: timestamptz + steam_id: bigint +} + +"""aggregate sum on columns""" +type v_player_map_losses_sum_fields { + steam_id: bigint +} + +"""aggregate var_pop on columns""" +type v_player_map_losses_var_pop_fields { + steam_id: Float +} + +"""aggregate var_samp on columns""" +type v_player_map_losses_var_samp_fields { + steam_id: Float +} + +"""aggregate variance on columns""" +type v_player_map_losses_variance_fields { + steam_id: Float +} + +""" +columns and relationships of "v_player_map_wins" +""" +type v_player_map_wins { + """An object relationship""" + map: maps + map_id: uuid + + """An object relationship""" + match: matches + match_id: uuid + started_at: timestamptz + steam_id: bigint +} + +""" +aggregated selection of "v_player_map_wins" +""" +type v_player_map_wins_aggregate { + aggregate: v_player_map_wins_aggregate_fields + nodes: [v_player_map_wins!]! +} + +""" +aggregate fields of "v_player_map_wins" +""" +type v_player_map_wins_aggregate_fields { + avg: v_player_map_wins_avg_fields + count(columns: [v_player_map_wins_select_column!], distinct: Boolean): Int! + max: v_player_map_wins_max_fields + min: v_player_map_wins_min_fields + stddev: v_player_map_wins_stddev_fields + stddev_pop: v_player_map_wins_stddev_pop_fields + stddev_samp: v_player_map_wins_stddev_samp_fields + sum: v_player_map_wins_sum_fields + var_pop: v_player_map_wins_var_pop_fields + var_samp: v_player_map_wins_var_samp_fields + variance: v_player_map_wins_variance_fields +} + +"""aggregate avg on columns""" +type v_player_map_wins_avg_fields { + steam_id: Float +} + +""" +Boolean expression to filter rows from the table "v_player_map_wins". All fields are combined with a logical 'AND'. +""" +input v_player_map_wins_bool_exp { + _and: [v_player_map_wins_bool_exp!] + _not: v_player_map_wins_bool_exp + _or: [v_player_map_wins_bool_exp!] + map: maps_bool_exp + map_id: uuid_comparison_exp + match: matches_bool_exp + match_id: uuid_comparison_exp + started_at: timestamptz_comparison_exp + steam_id: bigint_comparison_exp +} + +"""aggregate max on columns""" +type v_player_map_wins_max_fields { + map_id: uuid + match_id: uuid + started_at: timestamptz + steam_id: bigint +} + +"""aggregate min on columns""" +type v_player_map_wins_min_fields { + map_id: uuid + match_id: uuid + started_at: timestamptz + steam_id: bigint +} + +"""Ordering options when selecting data from "v_player_map_wins".""" +input v_player_map_wins_order_by { + map: maps_order_by + map_id: order_by + match: matches_order_by + match_id: order_by + started_at: order_by + steam_id: order_by +} + +""" +select columns of table "v_player_map_wins" +""" +enum v_player_map_wins_select_column { + """column name""" + map_id + + """column name""" + match_id + + """column name""" + started_at + + """column name""" + steam_id +} + +"""aggregate stddev on columns""" +type v_player_map_wins_stddev_fields { + steam_id: Float +} + +"""aggregate stddev_pop on columns""" +type v_player_map_wins_stddev_pop_fields { + steam_id: Float +} + +"""aggregate stddev_samp on columns""" +type v_player_map_wins_stddev_samp_fields { + steam_id: Float +} + +""" +Streaming cursor of the table "v_player_map_wins" +""" +input v_player_map_wins_stream_cursor_input { + """Stream column input with initial value""" + initial_value: v_player_map_wins_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input v_player_map_wins_stream_cursor_value_input { + map_id: uuid + match_id: uuid + started_at: timestamptz + steam_id: bigint +} + +"""aggregate sum on columns""" +type v_player_map_wins_sum_fields { + steam_id: bigint +} + +"""aggregate var_pop on columns""" +type v_player_map_wins_var_pop_fields { + steam_id: Float +} + +"""aggregate var_samp on columns""" +type v_player_map_wins_var_samp_fields { + steam_id: Float +} + +"""aggregate variance on columns""" +type v_player_map_wins_variance_fields { + steam_id: Float +} + +""" +columns and relationships of "v_player_match_head_to_head" +""" +type v_player_match_head_to_head { + """An object relationship""" + attacked: players + attacked_steam_id: bigint + + """An object relationship""" + attacker: players + attacker_steam_id: bigint + damage_dealt: Int + flash_count: bigint + headshot_kills: bigint + hits: bigint + kills: bigint + + """An object relationship""" + match: matches + match_id: uuid +} + +""" +aggregated selection of "v_player_match_head_to_head" +""" +type v_player_match_head_to_head_aggregate { + aggregate: v_player_match_head_to_head_aggregate_fields + nodes: [v_player_match_head_to_head!]! +} + +""" +aggregate fields of "v_player_match_head_to_head" +""" +type v_player_match_head_to_head_aggregate_fields { + avg: v_player_match_head_to_head_avg_fields + count(columns: [v_player_match_head_to_head_select_column!], distinct: Boolean): Int! + max: v_player_match_head_to_head_max_fields + min: v_player_match_head_to_head_min_fields + stddev: v_player_match_head_to_head_stddev_fields + stddev_pop: v_player_match_head_to_head_stddev_pop_fields + stddev_samp: v_player_match_head_to_head_stddev_samp_fields + sum: v_player_match_head_to_head_sum_fields + var_pop: v_player_match_head_to_head_var_pop_fields + var_samp: v_player_match_head_to_head_var_samp_fields + variance: v_player_match_head_to_head_variance_fields +} + +"""aggregate avg on columns""" +type v_player_match_head_to_head_avg_fields { + attacked_steam_id: Float + attacker_steam_id: Float + damage_dealt: Float + flash_count: Float + headshot_kills: Float + hits: Float + kills: Float +} + +""" +Boolean expression to filter rows from the table "v_player_match_head_to_head". All fields are combined with a logical 'AND'. +""" +input v_player_match_head_to_head_bool_exp { + _and: [v_player_match_head_to_head_bool_exp!] + _not: v_player_match_head_to_head_bool_exp + _or: [v_player_match_head_to_head_bool_exp!] + attacked: players_bool_exp + attacked_steam_id: bigint_comparison_exp + attacker: players_bool_exp + attacker_steam_id: bigint_comparison_exp + damage_dealt: Int_comparison_exp + flash_count: bigint_comparison_exp + headshot_kills: bigint_comparison_exp + hits: bigint_comparison_exp + kills: bigint_comparison_exp + match: matches_bool_exp + match_id: uuid_comparison_exp +} + +"""aggregate max on columns""" +type v_player_match_head_to_head_max_fields { + attacked_steam_id: bigint + attacker_steam_id: bigint + damage_dealt: Int + flash_count: bigint + headshot_kills: bigint + hits: bigint + kills: bigint + match_id: uuid +} + +"""aggregate min on columns""" +type v_player_match_head_to_head_min_fields { + attacked_steam_id: bigint + attacker_steam_id: bigint + damage_dealt: Int + flash_count: bigint + headshot_kills: bigint + hits: bigint + kills: bigint + match_id: uuid +} + +""" +Ordering options when selecting data from "v_player_match_head_to_head". +""" +input v_player_match_head_to_head_order_by { + attacked: players_order_by + attacked_steam_id: order_by + attacker: players_order_by + attacker_steam_id: order_by + damage_dealt: order_by + flash_count: order_by + headshot_kills: order_by + hits: order_by + kills: order_by + match: matches_order_by + match_id: order_by +} + +""" +select columns of table "v_player_match_head_to_head" +""" +enum v_player_match_head_to_head_select_column { + """column name""" + attacked_steam_id + + """column name""" + attacker_steam_id + + """column name""" + damage_dealt + + """column name""" + flash_count + + """column name""" + headshot_kills + + """column name""" + hits + + """column name""" + kills + + """column name""" + match_id +} + +"""aggregate stddev on columns""" +type v_player_match_head_to_head_stddev_fields { + attacked_steam_id: Float + attacker_steam_id: Float + damage_dealt: Float + flash_count: Float + headshot_kills: Float + hits: Float + kills: Float +} + +"""aggregate stddev_pop on columns""" +type v_player_match_head_to_head_stddev_pop_fields { + attacked_steam_id: Float + attacker_steam_id: Float + damage_dealt: Float + flash_count: Float + headshot_kills: Float + hits: Float + kills: Float +} + +"""aggregate stddev_samp on columns""" +type v_player_match_head_to_head_stddev_samp_fields { + attacked_steam_id: Float + attacker_steam_id: Float + damage_dealt: Float + flash_count: Float + headshot_kills: Float + hits: Float + kills: Float +} + +""" +Streaming cursor of the table "v_player_match_head_to_head" +""" +input v_player_match_head_to_head_stream_cursor_input { + """Stream column input with initial value""" + initial_value: v_player_match_head_to_head_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input v_player_match_head_to_head_stream_cursor_value_input { + attacked_steam_id: bigint + attacker_steam_id: bigint + damage_dealt: Int + flash_count: bigint + headshot_kills: bigint + hits: bigint + kills: bigint + match_id: uuid +} + +"""aggregate sum on columns""" +type v_player_match_head_to_head_sum_fields { + attacked_steam_id: bigint + attacker_steam_id: bigint + damage_dealt: Int + flash_count: bigint + headshot_kills: bigint + hits: bigint + kills: bigint +} + +"""aggregate var_pop on columns""" +type v_player_match_head_to_head_var_pop_fields { + attacked_steam_id: Float + attacker_steam_id: Float + damage_dealt: Float + flash_count: Float + headshot_kills: Float + hits: Float + kills: Float +} + +"""aggregate var_samp on columns""" +type v_player_match_head_to_head_var_samp_fields { + attacked_steam_id: Float + attacker_steam_id: Float + damage_dealt: Float + flash_count: Float + headshot_kills: Float + hits: Float + kills: Float +} + +"""aggregate variance on columns""" +type v_player_match_head_to_head_variance_fields { + attacked_steam_id: Float + attacker_steam_id: Float + damage_dealt: Float + flash_count: Float + headshot_kills: Float + hits: Float + kills: Float +} + +""" +columns and relationships of "v_player_match_map_hltv" +""" +type v_player_match_map_hltv { + adr: numeric + apr: numeric + dpr: numeric + hltv_rating: numeric + kast_pct: numeric + kpr: numeric + + """An object relationship""" + match: matches + match_id: uuid + + """An object relationship""" + match_map: match_maps + match_map_id: uuid + + """An object relationship""" + player: players + rounds_played: Int + steam_id: bigint +} + +""" +aggregated selection of "v_player_match_map_hltv" +""" +type v_player_match_map_hltv_aggregate { + aggregate: v_player_match_map_hltv_aggregate_fields + nodes: [v_player_match_map_hltv!]! +} + +input v_player_match_map_hltv_aggregate_bool_exp { + count: v_player_match_map_hltv_aggregate_bool_exp_count +} + +input v_player_match_map_hltv_aggregate_bool_exp_count { + arguments: [v_player_match_map_hltv_select_column!] + distinct: Boolean + filter: v_player_match_map_hltv_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "v_player_match_map_hltv" +""" +type v_player_match_map_hltv_aggregate_fields { + avg: v_player_match_map_hltv_avg_fields + count(columns: [v_player_match_map_hltv_select_column!], distinct: Boolean): Int! + max: v_player_match_map_hltv_max_fields + min: v_player_match_map_hltv_min_fields + stddev: v_player_match_map_hltv_stddev_fields + stddev_pop: v_player_match_map_hltv_stddev_pop_fields + stddev_samp: v_player_match_map_hltv_stddev_samp_fields + sum: v_player_match_map_hltv_sum_fields + var_pop: v_player_match_map_hltv_var_pop_fields + var_samp: v_player_match_map_hltv_var_samp_fields + variance: v_player_match_map_hltv_variance_fields +} + +""" +order by aggregate values of table "v_player_match_map_hltv" +""" +input v_player_match_map_hltv_aggregate_order_by { + avg: v_player_match_map_hltv_avg_order_by + count: order_by + max: v_player_match_map_hltv_max_order_by + min: v_player_match_map_hltv_min_order_by + stddev: v_player_match_map_hltv_stddev_order_by + stddev_pop: v_player_match_map_hltv_stddev_pop_order_by + stddev_samp: v_player_match_map_hltv_stddev_samp_order_by + sum: v_player_match_map_hltv_sum_order_by + var_pop: v_player_match_map_hltv_var_pop_order_by + var_samp: v_player_match_map_hltv_var_samp_order_by + variance: v_player_match_map_hltv_variance_order_by +} + +""" +input type for inserting array relation for remote table "v_player_match_map_hltv" +""" +input v_player_match_map_hltv_arr_rel_insert_input { + data: [v_player_match_map_hltv_insert_input!]! +} + +"""aggregate avg on columns""" +type v_player_match_map_hltv_avg_fields { + adr: Float + apr: Float + dpr: Float + hltv_rating: Float + kast_pct: Float + kpr: Float + rounds_played: Float + steam_id: Float +} + +""" +order by avg() on columns of table "v_player_match_map_hltv" +""" +input v_player_match_map_hltv_avg_order_by { + adr: order_by + apr: order_by + dpr: order_by + hltv_rating: order_by + kast_pct: order_by + kpr: order_by + rounds_played: order_by + steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "v_player_match_map_hltv". All fields are combined with a logical 'AND'. +""" +input v_player_match_map_hltv_bool_exp { + _and: [v_player_match_map_hltv_bool_exp!] + _not: v_player_match_map_hltv_bool_exp + _or: [v_player_match_map_hltv_bool_exp!] + adr: numeric_comparison_exp + apr: numeric_comparison_exp + dpr: numeric_comparison_exp + hltv_rating: numeric_comparison_exp + kast_pct: numeric_comparison_exp + kpr: numeric_comparison_exp + match: matches_bool_exp + match_id: uuid_comparison_exp + match_map: match_maps_bool_exp + match_map_id: uuid_comparison_exp + player: players_bool_exp + rounds_played: Int_comparison_exp + steam_id: bigint_comparison_exp +} + +""" +input type for incrementing numeric columns in table "v_player_match_map_hltv" +""" +input v_player_match_map_hltv_inc_input { + adr: numeric + apr: numeric + dpr: numeric + hltv_rating: numeric + kast_pct: numeric + kpr: numeric + rounds_played: Int + steam_id: bigint +} + +""" +input type for inserting data into table "v_player_match_map_hltv" +""" +input v_player_match_map_hltv_insert_input { + adr: numeric + apr: numeric + dpr: numeric + hltv_rating: numeric + kast_pct: numeric + kpr: numeric + match: matches_obj_rel_insert_input + match_id: uuid + match_map: match_maps_obj_rel_insert_input + match_map_id: uuid + player: players_obj_rel_insert_input + rounds_played: Int + steam_id: bigint +} + +"""aggregate max on columns""" +type v_player_match_map_hltv_max_fields { + adr: numeric + apr: numeric + dpr: numeric + hltv_rating: numeric + kast_pct: numeric + kpr: numeric + match_id: uuid + match_map_id: uuid + rounds_played: Int + steam_id: bigint +} + +""" +order by max() on columns of table "v_player_match_map_hltv" +""" +input v_player_match_map_hltv_max_order_by { + adr: order_by + apr: order_by + dpr: order_by + hltv_rating: order_by + kast_pct: order_by + kpr: order_by + match_id: order_by + match_map_id: order_by + rounds_played: order_by + steam_id: order_by +} + +"""aggregate min on columns""" +type v_player_match_map_hltv_min_fields { + adr: numeric + apr: numeric + dpr: numeric + hltv_rating: numeric + kast_pct: numeric + kpr: numeric + match_id: uuid + match_map_id: uuid + rounds_played: Int + steam_id: bigint +} + +""" +order by min() on columns of table "v_player_match_map_hltv" +""" +input v_player_match_map_hltv_min_order_by { + adr: order_by + apr: order_by + dpr: order_by + hltv_rating: order_by + kast_pct: order_by + kpr: order_by + match_id: order_by + match_map_id: order_by + rounds_played: order_by + steam_id: order_by +} + +""" +response of any mutation on the table "v_player_match_map_hltv" +""" +type v_player_match_map_hltv_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [v_player_match_map_hltv!]! +} + +"""Ordering options when selecting data from "v_player_match_map_hltv".""" +input v_player_match_map_hltv_order_by { + adr: order_by + apr: order_by + dpr: order_by + hltv_rating: order_by + kast_pct: order_by + kpr: order_by + match: matches_order_by + match_id: order_by + match_map: match_maps_order_by + match_map_id: order_by + player: players_order_by + rounds_played: order_by + steam_id: order_by +} + +""" +select columns of table "v_player_match_map_hltv" +""" +enum v_player_match_map_hltv_select_column { + """column name""" + adr + + """column name""" + apr + + """column name""" + dpr + + """column name""" + hltv_rating + + """column name""" + kast_pct + + """column name""" + kpr + + """column name""" + match_id + + """column name""" + match_map_id + + """column name""" + rounds_played + + """column name""" + steam_id +} + +""" +input type for updating data in table "v_player_match_map_hltv" +""" +input v_player_match_map_hltv_set_input { + adr: numeric + apr: numeric + dpr: numeric + hltv_rating: numeric + kast_pct: numeric + kpr: numeric + match_id: uuid + match_map_id: uuid + rounds_played: Int + steam_id: bigint +} + +"""aggregate stddev on columns""" +type v_player_match_map_hltv_stddev_fields { + adr: Float + apr: Float + dpr: Float + hltv_rating: Float + kast_pct: Float + kpr: Float + rounds_played: Float + steam_id: Float +} + +""" +order by stddev() on columns of table "v_player_match_map_hltv" +""" +input v_player_match_map_hltv_stddev_order_by { + adr: order_by + apr: order_by + dpr: order_by + hltv_rating: order_by + kast_pct: order_by + kpr: order_by + rounds_played: order_by + steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type v_player_match_map_hltv_stddev_pop_fields { + adr: Float + apr: Float + dpr: Float + hltv_rating: Float + kast_pct: Float + kpr: Float + rounds_played: Float + steam_id: Float +} + +""" +order by stddev_pop() on columns of table "v_player_match_map_hltv" +""" +input v_player_match_map_hltv_stddev_pop_order_by { + adr: order_by + apr: order_by + dpr: order_by + hltv_rating: order_by + kast_pct: order_by + kpr: order_by + rounds_played: order_by + steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type v_player_match_map_hltv_stddev_samp_fields { + adr: Float + apr: Float + dpr: Float + hltv_rating: Float + kast_pct: Float + kpr: Float + rounds_played: Float + steam_id: Float +} + +""" +order by stddev_samp() on columns of table "v_player_match_map_hltv" +""" +input v_player_match_map_hltv_stddev_samp_order_by { + adr: order_by + apr: order_by + dpr: order_by + hltv_rating: order_by + kast_pct: order_by + kpr: order_by + rounds_played: order_by + steam_id: order_by +} + +""" +Streaming cursor of the table "v_player_match_map_hltv" +""" +input v_player_match_map_hltv_stream_cursor_input { + """Stream column input with initial value""" + initial_value: v_player_match_map_hltv_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input v_player_match_map_hltv_stream_cursor_value_input { + adr: numeric + apr: numeric + dpr: numeric + hltv_rating: numeric + kast_pct: numeric + kpr: numeric + match_id: uuid + match_map_id: uuid + rounds_played: Int + steam_id: bigint +} + +"""aggregate sum on columns""" +type v_player_match_map_hltv_sum_fields { + adr: numeric + apr: numeric + dpr: numeric + hltv_rating: numeric + kast_pct: numeric + kpr: numeric + rounds_played: Int + steam_id: bigint +} + +""" +order by sum() on columns of table "v_player_match_map_hltv" +""" +input v_player_match_map_hltv_sum_order_by { + adr: order_by + apr: order_by + dpr: order_by + hltv_rating: order_by + kast_pct: order_by + kpr: order_by + rounds_played: order_by + steam_id: order_by +} + +input v_player_match_map_hltv_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: v_player_match_map_hltv_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: v_player_match_map_hltv_set_input + + """filter the rows which have to be updated""" + where: v_player_match_map_hltv_bool_exp! +} + +"""aggregate var_pop on columns""" +type v_player_match_map_hltv_var_pop_fields { + adr: Float + apr: Float + dpr: Float + hltv_rating: Float + kast_pct: Float + kpr: Float + rounds_played: Float + steam_id: Float +} + +""" +order by var_pop() on columns of table "v_player_match_map_hltv" +""" +input v_player_match_map_hltv_var_pop_order_by { + adr: order_by + apr: order_by + dpr: order_by + hltv_rating: order_by + kast_pct: order_by + kpr: order_by + rounds_played: order_by + steam_id: order_by +} + +"""aggregate var_samp on columns""" +type v_player_match_map_hltv_var_samp_fields { + adr: Float + apr: Float + dpr: Float + hltv_rating: Float + kast_pct: Float + kpr: Float + rounds_played: Float + steam_id: Float +} + +""" +order by var_samp() on columns of table "v_player_match_map_hltv" +""" +input v_player_match_map_hltv_var_samp_order_by { + adr: order_by + apr: order_by + dpr: order_by + hltv_rating: order_by + kast_pct: order_by + kpr: order_by + rounds_played: order_by + steam_id: order_by +} + +"""aggregate variance on columns""" +type v_player_match_map_hltv_variance_fields { + adr: Float + apr: Float + dpr: Float + hltv_rating: Float + kast_pct: Float + kpr: Float + rounds_played: Float + steam_id: Float +} + +""" +order by variance() on columns of table "v_player_match_map_hltv" +""" +input v_player_match_map_hltv_variance_order_by { + adr: order_by + apr: order_by + dpr: order_by + hltv_rating: order_by + kast_pct: order_by + kpr: order_by + rounds_played: order_by + steam_id: order_by +} + +""" +columns and relationships of "v_player_match_map_roles" +""" +type v_player_match_map_roles { + adr: numeric + awp_kills: Int + awp_share: numeric + deaths: Int + dpr: numeric + entry_rate: numeric + flash_assists: Int + hltv_rating: numeric + kast_pct: numeric + kills: Int + kpr: numeric + lineup_id: uuid + + """An object relationship""" + match: matches + match_id: uuid + + """An object relationship""" + match_map: match_maps + match_map_id: uuid + open_deaths: Int + open_kills: Int + opening_attempts: Int + + """An object relationship""" + player: players + role: String + rounds: Int + steam_id: bigint + support_idx: numeric + total_kills: Int + trade_kill_successes: Int + traded_death_successes: Int + util_damage: Int +} + +""" +aggregated selection of "v_player_match_map_roles" +""" +type v_player_match_map_roles_aggregate { + aggregate: v_player_match_map_roles_aggregate_fields + nodes: [v_player_match_map_roles!]! +} + +""" +aggregate fields of "v_player_match_map_roles" +""" +type v_player_match_map_roles_aggregate_fields { + avg: v_player_match_map_roles_avg_fields + count(columns: [v_player_match_map_roles_select_column!], distinct: Boolean): Int! + max: v_player_match_map_roles_max_fields + min: v_player_match_map_roles_min_fields + stddev: v_player_match_map_roles_stddev_fields + stddev_pop: v_player_match_map_roles_stddev_pop_fields + stddev_samp: v_player_match_map_roles_stddev_samp_fields + sum: v_player_match_map_roles_sum_fields + var_pop: v_player_match_map_roles_var_pop_fields + var_samp: v_player_match_map_roles_var_samp_fields + variance: v_player_match_map_roles_variance_fields +} + +"""aggregate avg on columns""" +type v_player_match_map_roles_avg_fields { + adr: Float + awp_kills: Float + awp_share: Float + deaths: Float + dpr: Float + entry_rate: Float + flash_assists: Float + hltv_rating: Float + kast_pct: Float + kills: Float + kpr: Float + open_deaths: Float + open_kills: Float + opening_attempts: Float + rounds: Float + steam_id: Float + support_idx: Float + total_kills: Float + trade_kill_successes: Float + traded_death_successes: Float + util_damage: Float +} + +""" +Boolean expression to filter rows from the table "v_player_match_map_roles". All fields are combined with a logical 'AND'. +""" +input v_player_match_map_roles_bool_exp { + _and: [v_player_match_map_roles_bool_exp!] + _not: v_player_match_map_roles_bool_exp + _or: [v_player_match_map_roles_bool_exp!] + adr: numeric_comparison_exp + awp_kills: Int_comparison_exp + awp_share: numeric_comparison_exp + deaths: Int_comparison_exp + dpr: numeric_comparison_exp + entry_rate: numeric_comparison_exp + flash_assists: Int_comparison_exp + hltv_rating: numeric_comparison_exp + kast_pct: numeric_comparison_exp + kills: Int_comparison_exp + kpr: numeric_comparison_exp + lineup_id: uuid_comparison_exp + match: matches_bool_exp + match_id: uuid_comparison_exp + match_map: match_maps_bool_exp + match_map_id: uuid_comparison_exp + open_deaths: Int_comparison_exp + open_kills: Int_comparison_exp + opening_attempts: Int_comparison_exp + player: players_bool_exp + role: String_comparison_exp + rounds: Int_comparison_exp + steam_id: bigint_comparison_exp + support_idx: numeric_comparison_exp + total_kills: Int_comparison_exp + trade_kill_successes: Int_comparison_exp + traded_death_successes: Int_comparison_exp + util_damage: Int_comparison_exp +} + +"""aggregate max on columns""" +type v_player_match_map_roles_max_fields { + adr: numeric + awp_kills: Int + awp_share: numeric + deaths: Int + dpr: numeric + entry_rate: numeric + flash_assists: Int + hltv_rating: numeric + kast_pct: numeric + kills: Int + kpr: numeric + lineup_id: uuid + match_id: uuid + match_map_id: uuid + open_deaths: Int + open_kills: Int + opening_attempts: Int + role: String + rounds: Int + steam_id: bigint + support_idx: numeric + total_kills: Int + trade_kill_successes: Int + traded_death_successes: Int + util_damage: Int +} + +"""aggregate min on columns""" +type v_player_match_map_roles_min_fields { + adr: numeric + awp_kills: Int + awp_share: numeric + deaths: Int + dpr: numeric + entry_rate: numeric + flash_assists: Int + hltv_rating: numeric + kast_pct: numeric + kills: Int + kpr: numeric + lineup_id: uuid + match_id: uuid + match_map_id: uuid + open_deaths: Int + open_kills: Int + opening_attempts: Int + role: String + rounds: Int + steam_id: bigint + support_idx: numeric + total_kills: Int + trade_kill_successes: Int + traded_death_successes: Int + util_damage: Int +} + +"""Ordering options when selecting data from "v_player_match_map_roles".""" +input v_player_match_map_roles_order_by { + adr: order_by + awp_kills: order_by + awp_share: order_by + deaths: order_by + dpr: order_by + entry_rate: order_by + flash_assists: order_by + hltv_rating: order_by + kast_pct: order_by + kills: order_by + kpr: order_by + lineup_id: order_by + match: matches_order_by + match_id: order_by + match_map: match_maps_order_by + match_map_id: order_by + open_deaths: order_by + open_kills: order_by + opening_attempts: order_by + player: players_order_by + role: order_by + rounds: order_by + steam_id: order_by + support_idx: order_by + total_kills: order_by + trade_kill_successes: order_by + traded_death_successes: order_by + util_damage: order_by +} + +""" +select columns of table "v_player_match_map_roles" +""" +enum v_player_match_map_roles_select_column { + """column name""" + adr + + """column name""" + awp_kills + + """column name""" + awp_share + + """column name""" + deaths + + """column name""" + dpr + + """column name""" + entry_rate + + """column name""" + flash_assists + + """column name""" + hltv_rating + + """column name""" + kast_pct + + """column name""" + kills + + """column name""" + kpr + + """column name""" + lineup_id + + """column name""" + match_id + + """column name""" + match_map_id + + """column name""" + open_deaths + + """column name""" + open_kills + + """column name""" + opening_attempts + + """column name""" + role + + """column name""" + rounds + + """column name""" + steam_id + + """column name""" + support_idx + + """column name""" + total_kills + + """column name""" + trade_kill_successes + + """column name""" + traded_death_successes + + """column name""" + util_damage +} + +"""aggregate stddev on columns""" +type v_player_match_map_roles_stddev_fields { + adr: Float + awp_kills: Float + awp_share: Float + deaths: Float + dpr: Float + entry_rate: Float + flash_assists: Float + hltv_rating: Float + kast_pct: Float + kills: Float + kpr: Float + open_deaths: Float + open_kills: Float + opening_attempts: Float + rounds: Float + steam_id: Float + support_idx: Float + total_kills: Float + trade_kill_successes: Float + traded_death_successes: Float + util_damage: Float +} + +"""aggregate stddev_pop on columns""" +type v_player_match_map_roles_stddev_pop_fields { + adr: Float + awp_kills: Float + awp_share: Float + deaths: Float + dpr: Float + entry_rate: Float + flash_assists: Float + hltv_rating: Float + kast_pct: Float + kills: Float + kpr: Float + open_deaths: Float + open_kills: Float + opening_attempts: Float + rounds: Float + steam_id: Float + support_idx: Float + total_kills: Float + trade_kill_successes: Float + traded_death_successes: Float + util_damage: Float +} + +"""aggregate stddev_samp on columns""" +type v_player_match_map_roles_stddev_samp_fields { + adr: Float + awp_kills: Float + awp_share: Float + deaths: Float + dpr: Float + entry_rate: Float + flash_assists: Float + hltv_rating: Float + kast_pct: Float + kills: Float + kpr: Float + open_deaths: Float + open_kills: Float + opening_attempts: Float + rounds: Float + steam_id: Float + support_idx: Float + total_kills: Float + trade_kill_successes: Float + traded_death_successes: Float + util_damage: Float +} + +""" +Streaming cursor of the table "v_player_match_map_roles" +""" +input v_player_match_map_roles_stream_cursor_input { + """Stream column input with initial value""" + initial_value: v_player_match_map_roles_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input v_player_match_map_roles_stream_cursor_value_input { + adr: numeric + awp_kills: Int + awp_share: numeric + deaths: Int + dpr: numeric + entry_rate: numeric + flash_assists: Int + hltv_rating: numeric + kast_pct: numeric + kills: Int + kpr: numeric + lineup_id: uuid + match_id: uuid + match_map_id: uuid + open_deaths: Int + open_kills: Int + opening_attempts: Int + role: String + rounds: Int + steam_id: bigint + support_idx: numeric + total_kills: Int + trade_kill_successes: Int + traded_death_successes: Int + util_damage: Int +} + +"""aggregate sum on columns""" +type v_player_match_map_roles_sum_fields { + adr: numeric + awp_kills: Int + awp_share: numeric + deaths: Int + dpr: numeric + entry_rate: numeric + flash_assists: Int + hltv_rating: numeric + kast_pct: numeric + kills: Int + kpr: numeric + open_deaths: Int + open_kills: Int + opening_attempts: Int + rounds: Int + steam_id: bigint + support_idx: numeric + total_kills: Int + trade_kill_successes: Int + traded_death_successes: Int + util_damage: Int +} + +"""aggregate var_pop on columns""" +type v_player_match_map_roles_var_pop_fields { + adr: Float + awp_kills: Float + awp_share: Float + deaths: Float + dpr: Float + entry_rate: Float + flash_assists: Float + hltv_rating: Float + kast_pct: Float + kills: Float + kpr: Float + open_deaths: Float + open_kills: Float + opening_attempts: Float + rounds: Float + steam_id: Float + support_idx: Float + total_kills: Float + trade_kill_successes: Float + traded_death_successes: Float + util_damage: Float +} + +"""aggregate var_samp on columns""" +type v_player_match_map_roles_var_samp_fields { + adr: Float + awp_kills: Float + awp_share: Float + deaths: Float + dpr: Float + entry_rate: Float + flash_assists: Float + hltv_rating: Float + kast_pct: Float + kills: Float + kpr: Float + open_deaths: Float + open_kills: Float + opening_attempts: Float + rounds: Float + steam_id: Float + support_idx: Float + total_kills: Float + trade_kill_successes: Float + traded_death_successes: Float + util_damage: Float +} + +"""aggregate variance on columns""" +type v_player_match_map_roles_variance_fields { + adr: Float + awp_kills: Float + awp_share: Float + deaths: Float + dpr: Float + entry_rate: Float + flash_assists: Float + hltv_rating: Float + kast_pct: Float + kills: Float + kpr: Float + open_deaths: Float + open_kills: Float + opening_attempts: Float + rounds: Float + steam_id: Float + support_idx: Float + total_kills: Float + trade_kill_successes: Float + traded_death_successes: Float + util_damage: Float +} + +""" +columns and relationships of "v_player_match_performance" +""" +type v_player_match_performance { + assists: Int + deaths: Int + kills: Int + + """An object relationship""" + map: maps + map_id: uuid + + """An object relationship""" + match: matches + match_created_at: timestamptz + match_id: uuid + match_result: String + player_steam_id: bigint + source: String + type: String +} + +""" +aggregated selection of "v_player_match_performance" +""" +type v_player_match_performance_aggregate { + aggregate: v_player_match_performance_aggregate_fields + nodes: [v_player_match_performance!]! +} + +""" +aggregate fields of "v_player_match_performance" +""" +type v_player_match_performance_aggregate_fields { + avg: v_player_match_performance_avg_fields + count(columns: [v_player_match_performance_select_column!], distinct: Boolean): Int! + max: v_player_match_performance_max_fields + min: v_player_match_performance_min_fields + stddev: v_player_match_performance_stddev_fields + stddev_pop: v_player_match_performance_stddev_pop_fields + stddev_samp: v_player_match_performance_stddev_samp_fields + sum: v_player_match_performance_sum_fields + var_pop: v_player_match_performance_var_pop_fields + var_samp: v_player_match_performance_var_samp_fields + variance: v_player_match_performance_variance_fields +} + +"""aggregate avg on columns""" +type v_player_match_performance_avg_fields { + assists: Float + deaths: Float + kills: Float + player_steam_id: Float +} + +""" +Boolean expression to filter rows from the table "v_player_match_performance". All fields are combined with a logical 'AND'. +""" +input v_player_match_performance_bool_exp { + _and: [v_player_match_performance_bool_exp!] + _not: v_player_match_performance_bool_exp + _or: [v_player_match_performance_bool_exp!] + assists: Int_comparison_exp + deaths: Int_comparison_exp + kills: Int_comparison_exp + map: maps_bool_exp + map_id: uuid_comparison_exp + match: matches_bool_exp + match_created_at: timestamptz_comparison_exp + match_id: uuid_comparison_exp + match_result: String_comparison_exp + player_steam_id: bigint_comparison_exp + source: String_comparison_exp + type: String_comparison_exp +} + +"""aggregate max on columns""" +type v_player_match_performance_max_fields { + assists: Int + deaths: Int + kills: Int + map_id: uuid + match_created_at: timestamptz + match_id: uuid + match_result: String + player_steam_id: bigint + source: String + type: String +} + +"""aggregate min on columns""" +type v_player_match_performance_min_fields { + assists: Int + deaths: Int + kills: Int + map_id: uuid + match_created_at: timestamptz + match_id: uuid + match_result: String + player_steam_id: bigint + source: String + type: String +} + +""" +Ordering options when selecting data from "v_player_match_performance". +""" +input v_player_match_performance_order_by { + assists: order_by + deaths: order_by + kills: order_by + map: maps_order_by + map_id: order_by + match: matches_order_by + match_created_at: order_by + match_id: order_by + match_result: order_by + player_steam_id: order_by + source: order_by + type: order_by +} + +""" +select columns of table "v_player_match_performance" +""" +enum v_player_match_performance_select_column { + """column name""" + assists + + """column name""" + deaths + + """column name""" + kills + + """column name""" + map_id + + """column name""" + match_created_at + + """column name""" + match_id + + """column name""" + match_result + + """column name""" + player_steam_id + + """column name""" + source + + """column name""" + type +} + +"""aggregate stddev on columns""" +type v_player_match_performance_stddev_fields { + assists: Float + deaths: Float + kills: Float + player_steam_id: Float +} + +"""aggregate stddev_pop on columns""" +type v_player_match_performance_stddev_pop_fields { + assists: Float + deaths: Float + kills: Float + player_steam_id: Float +} + +"""aggregate stddev_samp on columns""" +type v_player_match_performance_stddev_samp_fields { + assists: Float + deaths: Float + kills: Float + player_steam_id: Float +} + +""" +Streaming cursor of the table "v_player_match_performance" +""" +input v_player_match_performance_stream_cursor_input { + """Stream column input with initial value""" + initial_value: v_player_match_performance_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input v_player_match_performance_stream_cursor_value_input { + assists: Int + deaths: Int + kills: Int + map_id: uuid + match_created_at: timestamptz + match_id: uuid + match_result: String + player_steam_id: bigint + source: String + type: String +} + +"""aggregate sum on columns""" +type v_player_match_performance_sum_fields { + assists: Int + deaths: Int + kills: Int + player_steam_id: bigint +} + +"""aggregate var_pop on columns""" +type v_player_match_performance_var_pop_fields { + assists: Float + deaths: Float + kills: Float + player_steam_id: Float +} + +"""aggregate var_samp on columns""" +type v_player_match_performance_var_samp_fields { + assists: Float + deaths: Float + kills: Float + player_steam_id: Float +} + +"""aggregate variance on columns""" +type v_player_match_performance_variance_fields { + assists: Float + deaths: Float + kills: Float + player_steam_id: Float +} + +""" +columns and relationships of "v_player_match_rating" +""" +type v_player_match_rating { + adr: numeric + dpr: numeric + hltv_rating: numeric + kast_pct: numeric + kpr: numeric + + """An object relationship""" + match: matches + match_id: uuid + + """An object relationship""" + player: players + rounds_played: Int + steam_id: bigint +} + +""" +aggregated selection of "v_player_match_rating" +""" +type v_player_match_rating_aggregate { + aggregate: v_player_match_rating_aggregate_fields + nodes: [v_player_match_rating!]! +} + +""" +aggregate fields of "v_player_match_rating" +""" +type v_player_match_rating_aggregate_fields { + avg: v_player_match_rating_avg_fields + count(columns: [v_player_match_rating_select_column!], distinct: Boolean): Int! + max: v_player_match_rating_max_fields + min: v_player_match_rating_min_fields + stddev: v_player_match_rating_stddev_fields + stddev_pop: v_player_match_rating_stddev_pop_fields + stddev_samp: v_player_match_rating_stddev_samp_fields + sum: v_player_match_rating_sum_fields + var_pop: v_player_match_rating_var_pop_fields + var_samp: v_player_match_rating_var_samp_fields + variance: v_player_match_rating_variance_fields +} + +"""aggregate avg on columns""" +type v_player_match_rating_avg_fields { + adr: Float + dpr: Float + hltv_rating: Float + kast_pct: Float + kpr: Float + rounds_played: Float + steam_id: Float +} + +""" +Boolean expression to filter rows from the table "v_player_match_rating". All fields are combined with a logical 'AND'. +""" +input v_player_match_rating_bool_exp { + _and: [v_player_match_rating_bool_exp!] + _not: v_player_match_rating_bool_exp + _or: [v_player_match_rating_bool_exp!] + adr: numeric_comparison_exp + dpr: numeric_comparison_exp + hltv_rating: numeric_comparison_exp + kast_pct: numeric_comparison_exp + kpr: numeric_comparison_exp + match: matches_bool_exp + match_id: uuid_comparison_exp + player: players_bool_exp + rounds_played: Int_comparison_exp + steam_id: bigint_comparison_exp +} + +"""aggregate max on columns""" +type v_player_match_rating_max_fields { + adr: numeric + dpr: numeric + hltv_rating: numeric + kast_pct: numeric + kpr: numeric + match_id: uuid + rounds_played: Int + steam_id: bigint +} + +"""aggregate min on columns""" +type v_player_match_rating_min_fields { + adr: numeric + dpr: numeric + hltv_rating: numeric + kast_pct: numeric + kpr: numeric + match_id: uuid + rounds_played: Int + steam_id: bigint +} + +"""Ordering options when selecting data from "v_player_match_rating".""" +input v_player_match_rating_order_by { + adr: order_by + dpr: order_by + hltv_rating: order_by + kast_pct: order_by + kpr: order_by + match: matches_order_by + match_id: order_by + player: players_order_by + rounds_played: order_by + steam_id: order_by +} + +""" +select columns of table "v_player_match_rating" +""" +enum v_player_match_rating_select_column { + """column name""" + adr + + """column name""" + dpr + + """column name""" + hltv_rating + + """column name""" + kast_pct + + """column name""" + kpr + + """column name""" + match_id + + """column name""" + rounds_played + + """column name""" + steam_id +} + +"""aggregate stddev on columns""" +type v_player_match_rating_stddev_fields { + adr: Float + dpr: Float + hltv_rating: Float + kast_pct: Float + kpr: Float + rounds_played: Float + steam_id: Float +} + +"""aggregate stddev_pop on columns""" +type v_player_match_rating_stddev_pop_fields { + adr: Float + dpr: Float + hltv_rating: Float + kast_pct: Float + kpr: Float + rounds_played: Float + steam_id: Float +} + +"""aggregate stddev_samp on columns""" +type v_player_match_rating_stddev_samp_fields { + adr: Float + dpr: Float + hltv_rating: Float + kast_pct: Float + kpr: Float + rounds_played: Float + steam_id: Float +} + +""" +Streaming cursor of the table "v_player_match_rating" +""" +input v_player_match_rating_stream_cursor_input { + """Stream column input with initial value""" + initial_value: v_player_match_rating_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input v_player_match_rating_stream_cursor_value_input { + adr: numeric + dpr: numeric + hltv_rating: numeric + kast_pct: numeric + kpr: numeric + match_id: uuid + rounds_played: Int + steam_id: bigint +} + +"""aggregate sum on columns""" +type v_player_match_rating_sum_fields { + adr: numeric + dpr: numeric + hltv_rating: numeric + kast_pct: numeric + kpr: numeric + rounds_played: Int + steam_id: bigint +} + +"""aggregate var_pop on columns""" +type v_player_match_rating_var_pop_fields { + adr: Float + dpr: Float + hltv_rating: Float + kast_pct: Float + kpr: Float + rounds_played: Float + steam_id: Float +} + +"""aggregate var_samp on columns""" +type v_player_match_rating_var_samp_fields { + adr: Float + dpr: Float + hltv_rating: Float + kast_pct: Float + kpr: Float + rounds_played: Float + steam_id: Float +} + +"""aggregate variance on columns""" +type v_player_match_rating_variance_fields { + adr: Float + dpr: Float + hltv_rating: Float + kast_pct: Float + kpr: Float + rounds_played: Float + steam_id: Float +} + +""" +columns and relationships of "v_player_multi_kills" +""" +type v_player_multi_kills { + attacker_steam_id: bigint + kills: bigint + match_id: uuid + round: Int +} + +""" +aggregated selection of "v_player_multi_kills" +""" +type v_player_multi_kills_aggregate { + aggregate: v_player_multi_kills_aggregate_fields + nodes: [v_player_multi_kills!]! +} + +input v_player_multi_kills_aggregate_bool_exp { + count: v_player_multi_kills_aggregate_bool_exp_count +} + +input v_player_multi_kills_aggregate_bool_exp_count { + arguments: [v_player_multi_kills_select_column!] + distinct: Boolean + filter: v_player_multi_kills_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "v_player_multi_kills" +""" +type v_player_multi_kills_aggregate_fields { + avg: v_player_multi_kills_avg_fields + count(columns: [v_player_multi_kills_select_column!], distinct: Boolean): Int! + max: v_player_multi_kills_max_fields + min: v_player_multi_kills_min_fields + stddev: v_player_multi_kills_stddev_fields + stddev_pop: v_player_multi_kills_stddev_pop_fields + stddev_samp: v_player_multi_kills_stddev_samp_fields + sum: v_player_multi_kills_sum_fields + var_pop: v_player_multi_kills_var_pop_fields + var_samp: v_player_multi_kills_var_samp_fields + variance: v_player_multi_kills_variance_fields +} + +""" +order by aggregate values of table "v_player_multi_kills" +""" +input v_player_multi_kills_aggregate_order_by { + avg: v_player_multi_kills_avg_order_by + count: order_by + max: v_player_multi_kills_max_order_by + min: v_player_multi_kills_min_order_by + stddev: v_player_multi_kills_stddev_order_by + stddev_pop: v_player_multi_kills_stddev_pop_order_by + stddev_samp: v_player_multi_kills_stddev_samp_order_by + sum: v_player_multi_kills_sum_order_by + var_pop: v_player_multi_kills_var_pop_order_by + var_samp: v_player_multi_kills_var_samp_order_by + variance: v_player_multi_kills_variance_order_by +} + +""" +input type for inserting array relation for remote table "v_player_multi_kills" +""" +input v_player_multi_kills_arr_rel_insert_input { + data: [v_player_multi_kills_insert_input!]! +} + +"""aggregate avg on columns""" +type v_player_multi_kills_avg_fields { + attacker_steam_id: Float + kills: Float + round: Float +} + +""" +order by avg() on columns of table "v_player_multi_kills" +""" +input v_player_multi_kills_avg_order_by { + attacker_steam_id: order_by + kills: order_by + round: order_by +} + +""" +Boolean expression to filter rows from the table "v_player_multi_kills". All fields are combined with a logical 'AND'. +""" +input v_player_multi_kills_bool_exp { + _and: [v_player_multi_kills_bool_exp!] + _not: v_player_multi_kills_bool_exp + _or: [v_player_multi_kills_bool_exp!] + attacker_steam_id: bigint_comparison_exp + kills: bigint_comparison_exp + match_id: uuid_comparison_exp + round: Int_comparison_exp +} + +""" +input type for inserting data into table "v_player_multi_kills" +""" +input v_player_multi_kills_insert_input { + attacker_steam_id: bigint + kills: bigint + match_id: uuid + round: Int +} + +"""aggregate max on columns""" +type v_player_multi_kills_max_fields { + attacker_steam_id: bigint + kills: bigint + match_id: uuid + round: Int +} + +""" +order by max() on columns of table "v_player_multi_kills" +""" +input v_player_multi_kills_max_order_by { + attacker_steam_id: order_by + kills: order_by + match_id: order_by + round: order_by +} + +"""aggregate min on columns""" +type v_player_multi_kills_min_fields { + attacker_steam_id: bigint + kills: bigint + match_id: uuid + round: Int +} + +""" +order by min() on columns of table "v_player_multi_kills" +""" +input v_player_multi_kills_min_order_by { + attacker_steam_id: order_by + kills: order_by + match_id: order_by + round: order_by +} + +"""Ordering options when selecting data from "v_player_multi_kills".""" +input v_player_multi_kills_order_by { + attacker_steam_id: order_by + kills: order_by + match_id: order_by + round: order_by +} + +""" +select columns of table "v_player_multi_kills" +""" +enum v_player_multi_kills_select_column { + """column name""" + attacker_steam_id + + """column name""" + kills + + """column name""" + match_id + + """column name""" + round +} + +"""aggregate stddev on columns""" +type v_player_multi_kills_stddev_fields { + attacker_steam_id: Float + kills: Float + round: Float +} + +""" +order by stddev() on columns of table "v_player_multi_kills" +""" +input v_player_multi_kills_stddev_order_by { + attacker_steam_id: order_by + kills: order_by + round: order_by +} + +"""aggregate stddev_pop on columns""" +type v_player_multi_kills_stddev_pop_fields { + attacker_steam_id: Float + kills: Float + round: Float +} + +""" +order by stddev_pop() on columns of table "v_player_multi_kills" +""" +input v_player_multi_kills_stddev_pop_order_by { + attacker_steam_id: order_by + kills: order_by + round: order_by +} + +"""aggregate stddev_samp on columns""" +type v_player_multi_kills_stddev_samp_fields { + attacker_steam_id: Float + kills: Float + round: Float +} + +""" +order by stddev_samp() on columns of table "v_player_multi_kills" +""" +input v_player_multi_kills_stddev_samp_order_by { + attacker_steam_id: order_by + kills: order_by + round: order_by +} + +""" +Streaming cursor of the table "v_player_multi_kills" +""" +input v_player_multi_kills_stream_cursor_input { + """Stream column input with initial value""" + initial_value: v_player_multi_kills_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input v_player_multi_kills_stream_cursor_value_input { + attacker_steam_id: bigint + kills: bigint + match_id: uuid + round: Int +} + +"""aggregate sum on columns""" +type v_player_multi_kills_sum_fields { + attacker_steam_id: bigint + kills: bigint + round: Int +} + +""" +order by sum() on columns of table "v_player_multi_kills" +""" +input v_player_multi_kills_sum_order_by { + attacker_steam_id: order_by + kills: order_by + round: order_by +} + +"""aggregate var_pop on columns""" +type v_player_multi_kills_var_pop_fields { + attacker_steam_id: Float + kills: Float + round: Float +} + +""" +order by var_pop() on columns of table "v_player_multi_kills" +""" +input v_player_multi_kills_var_pop_order_by { + attacker_steam_id: order_by + kills: order_by + round: order_by +} + +"""aggregate var_samp on columns""" +type v_player_multi_kills_var_samp_fields { + attacker_steam_id: Float + kills: Float + round: Float +} + +""" +order by var_samp() on columns of table "v_player_multi_kills" +""" +input v_player_multi_kills_var_samp_order_by { + attacker_steam_id: order_by + kills: order_by + round: order_by +} + +"""aggregate variance on columns""" +type v_player_multi_kills_variance_fields { + attacker_steam_id: Float + kills: Float + round: Float +} + +""" +order by variance() on columns of table "v_player_multi_kills" +""" +input v_player_multi_kills_variance_order_by { + attacker_steam_id: order_by + kills: order_by + round: order_by +} + +""" +columns and relationships of "v_player_queue_partners" +""" +type v_player_queue_partners { + first_played_at: timestamptz + last_played_at: timestamptz + matches_together: Int + + """An object relationship""" + partner: players + partner_steam_id: bigint + + """An object relationship""" + player: players + steam_id: bigint + wins_together: Int +} + +""" +aggregated selection of "v_player_queue_partners" +""" +type v_player_queue_partners_aggregate { + aggregate: v_player_queue_partners_aggregate_fields + nodes: [v_player_queue_partners!]! +} + +""" +aggregate fields of "v_player_queue_partners" +""" +type v_player_queue_partners_aggregate_fields { + avg: v_player_queue_partners_avg_fields + count(columns: [v_player_queue_partners_select_column!], distinct: Boolean): Int! + max: v_player_queue_partners_max_fields + min: v_player_queue_partners_min_fields + stddev: v_player_queue_partners_stddev_fields + stddev_pop: v_player_queue_partners_stddev_pop_fields + stddev_samp: v_player_queue_partners_stddev_samp_fields + sum: v_player_queue_partners_sum_fields + var_pop: v_player_queue_partners_var_pop_fields + var_samp: v_player_queue_partners_var_samp_fields + variance: v_player_queue_partners_variance_fields +} + +"""aggregate avg on columns""" +type v_player_queue_partners_avg_fields { + matches_together: Float + partner_steam_id: Float + steam_id: Float + wins_together: Float +} + +""" +Boolean expression to filter rows from the table "v_player_queue_partners". All fields are combined with a logical 'AND'. +""" +input v_player_queue_partners_bool_exp { + _and: [v_player_queue_partners_bool_exp!] + _not: v_player_queue_partners_bool_exp + _or: [v_player_queue_partners_bool_exp!] + first_played_at: timestamptz_comparison_exp + last_played_at: timestamptz_comparison_exp + matches_together: Int_comparison_exp + partner: players_bool_exp + partner_steam_id: bigint_comparison_exp + player: players_bool_exp + steam_id: bigint_comparison_exp + wins_together: Int_comparison_exp +} + +"""aggregate max on columns""" +type v_player_queue_partners_max_fields { + first_played_at: timestamptz + last_played_at: timestamptz + matches_together: Int + partner_steam_id: bigint + steam_id: bigint + wins_together: Int +} + +"""aggregate min on columns""" +type v_player_queue_partners_min_fields { + first_played_at: timestamptz + last_played_at: timestamptz + matches_together: Int + partner_steam_id: bigint + steam_id: bigint + wins_together: Int +} + +"""Ordering options when selecting data from "v_player_queue_partners".""" +input v_player_queue_partners_order_by { + first_played_at: order_by + last_played_at: order_by + matches_together: order_by + partner: players_order_by + partner_steam_id: order_by + player: players_order_by + steam_id: order_by + wins_together: order_by +} + +""" +select columns of table "v_player_queue_partners" +""" +enum v_player_queue_partners_select_column { + """column name""" + first_played_at + + """column name""" + last_played_at + + """column name""" + matches_together + + """column name""" + partner_steam_id + + """column name""" + steam_id + + """column name""" + wins_together +} + +"""aggregate stddev on columns""" +type v_player_queue_partners_stddev_fields { + matches_together: Float + partner_steam_id: Float + steam_id: Float + wins_together: Float +} + +"""aggregate stddev_pop on columns""" +type v_player_queue_partners_stddev_pop_fields { + matches_together: Float + partner_steam_id: Float + steam_id: Float + wins_together: Float +} + +"""aggregate stddev_samp on columns""" +type v_player_queue_partners_stddev_samp_fields { + matches_together: Float + partner_steam_id: Float + steam_id: Float + wins_together: Float +} + +""" +Streaming cursor of the table "v_player_queue_partners" +""" +input v_player_queue_partners_stream_cursor_input { + """Stream column input with initial value""" + initial_value: v_player_queue_partners_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input v_player_queue_partners_stream_cursor_value_input { + first_played_at: timestamptz + last_played_at: timestamptz + matches_together: Int + partner_steam_id: bigint + steam_id: bigint + wins_together: Int +} + +"""aggregate sum on columns""" +type v_player_queue_partners_sum_fields { + matches_together: Int + partner_steam_id: bigint + steam_id: bigint + wins_together: Int +} + +"""aggregate var_pop on columns""" +type v_player_queue_partners_var_pop_fields { + matches_together: Float + partner_steam_id: Float + steam_id: Float + wins_together: Float +} + +"""aggregate var_samp on columns""" +type v_player_queue_partners_var_samp_fields { + matches_together: Float + partner_steam_id: Float + steam_id: Float + wins_together: Float +} + +"""aggregate variance on columns""" +type v_player_queue_partners_variance_fields { + matches_together: Float + partner_steam_id: Float + steam_id: Float + wins_together: Float +} + +""" +columns and relationships of "v_player_weapon_damage" +""" +type v_player_weapon_damage { + damage: bigint + hits: bigint + player_steam_id: bigint + source: String + type: String + with: String +} + +""" +aggregated selection of "v_player_weapon_damage" +""" +type v_player_weapon_damage_aggregate { + aggregate: v_player_weapon_damage_aggregate_fields + nodes: [v_player_weapon_damage!]! +} + +""" +aggregate fields of "v_player_weapon_damage" +""" +type v_player_weapon_damage_aggregate_fields { + avg: v_player_weapon_damage_avg_fields + count(columns: [v_player_weapon_damage_select_column!], distinct: Boolean): Int! + max: v_player_weapon_damage_max_fields + min: v_player_weapon_damage_min_fields + stddev: v_player_weapon_damage_stddev_fields + stddev_pop: v_player_weapon_damage_stddev_pop_fields + stddev_samp: v_player_weapon_damage_stddev_samp_fields + sum: v_player_weapon_damage_sum_fields + var_pop: v_player_weapon_damage_var_pop_fields + var_samp: v_player_weapon_damage_var_samp_fields + variance: v_player_weapon_damage_variance_fields +} + +"""aggregate avg on columns""" +type v_player_weapon_damage_avg_fields { + damage: Float + hits: Float + player_steam_id: Float +} + +""" +Boolean expression to filter rows from the table "v_player_weapon_damage". All fields are combined with a logical 'AND'. +""" +input v_player_weapon_damage_bool_exp { + _and: [v_player_weapon_damage_bool_exp!] + _not: v_player_weapon_damage_bool_exp + _or: [v_player_weapon_damage_bool_exp!] + damage: bigint_comparison_exp + hits: bigint_comparison_exp + player_steam_id: bigint_comparison_exp + source: String_comparison_exp + type: String_comparison_exp + with: String_comparison_exp +} + +"""aggregate max on columns""" +type v_player_weapon_damage_max_fields { + damage: bigint + hits: bigint + player_steam_id: bigint + source: String + type: String + with: String +} + +"""aggregate min on columns""" +type v_player_weapon_damage_min_fields { + damage: bigint + hits: bigint + player_steam_id: bigint + source: String + type: String + with: String +} + +"""Ordering options when selecting data from "v_player_weapon_damage".""" +input v_player_weapon_damage_order_by { + damage: order_by + hits: order_by + player_steam_id: order_by + source: order_by + type: order_by + with: order_by +} + +""" +select columns of table "v_player_weapon_damage" +""" +enum v_player_weapon_damage_select_column { + """column name""" + damage + + """column name""" + hits + + """column name""" + player_steam_id + + """column name""" + source + + """column name""" + type + + """column name""" + with +} + +"""aggregate stddev on columns""" +type v_player_weapon_damage_stddev_fields { + damage: Float + hits: Float + player_steam_id: Float +} + +"""aggregate stddev_pop on columns""" +type v_player_weapon_damage_stddev_pop_fields { + damage: Float + hits: Float + player_steam_id: Float +} + +"""aggregate stddev_samp on columns""" +type v_player_weapon_damage_stddev_samp_fields { + damage: Float + hits: Float + player_steam_id: Float +} + +""" +Streaming cursor of the table "v_player_weapon_damage" +""" +input v_player_weapon_damage_stream_cursor_input { + """Stream column input with initial value""" + initial_value: v_player_weapon_damage_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input v_player_weapon_damage_stream_cursor_value_input { + damage: bigint + hits: bigint + player_steam_id: bigint + source: String + type: String + with: String +} + +"""aggregate sum on columns""" +type v_player_weapon_damage_sum_fields { + damage: bigint + hits: bigint + player_steam_id: bigint +} + +"""aggregate var_pop on columns""" +type v_player_weapon_damage_var_pop_fields { + damage: Float + hits: Float + player_steam_id: Float +} + +"""aggregate var_samp on columns""" +type v_player_weapon_damage_var_samp_fields { + damage: Float + hits: Float + player_steam_id: Float +} + +"""aggregate variance on columns""" +type v_player_weapon_damage_variance_fields { + damage: Float + hits: Float + player_steam_id: Float +} + +""" +columns and relationships of "v_player_weapon_kills" +""" +type v_player_weapon_kills { + kill_count: bigint + player_steam_id: bigint + rounds: bigint + source: String + type: String + with: String +} + +""" +aggregated selection of "v_player_weapon_kills" +""" +type v_player_weapon_kills_aggregate { + aggregate: v_player_weapon_kills_aggregate_fields + nodes: [v_player_weapon_kills!]! +} + +""" +aggregate fields of "v_player_weapon_kills" +""" +type v_player_weapon_kills_aggregate_fields { + avg: v_player_weapon_kills_avg_fields + count(columns: [v_player_weapon_kills_select_column!], distinct: Boolean): Int! + max: v_player_weapon_kills_max_fields + min: v_player_weapon_kills_min_fields + stddev: v_player_weapon_kills_stddev_fields + stddev_pop: v_player_weapon_kills_stddev_pop_fields + stddev_samp: v_player_weapon_kills_stddev_samp_fields + sum: v_player_weapon_kills_sum_fields + var_pop: v_player_weapon_kills_var_pop_fields + var_samp: v_player_weapon_kills_var_samp_fields + variance: v_player_weapon_kills_variance_fields +} + +"""aggregate avg on columns""" +type v_player_weapon_kills_avg_fields { + kill_count: Float + player_steam_id: Float + rounds: Float +} + +""" +Boolean expression to filter rows from the table "v_player_weapon_kills". All fields are combined with a logical 'AND'. +""" +input v_player_weapon_kills_bool_exp { + _and: [v_player_weapon_kills_bool_exp!] + _not: v_player_weapon_kills_bool_exp + _or: [v_player_weapon_kills_bool_exp!] + kill_count: bigint_comparison_exp + player_steam_id: bigint_comparison_exp + rounds: bigint_comparison_exp + source: String_comparison_exp + type: String_comparison_exp + with: String_comparison_exp +} + +"""aggregate max on columns""" +type v_player_weapon_kills_max_fields { + kill_count: bigint + player_steam_id: bigint + rounds: bigint + source: String + type: String + with: String +} + +"""aggregate min on columns""" +type v_player_weapon_kills_min_fields { + kill_count: bigint + player_steam_id: bigint + rounds: bigint + source: String + type: String + with: String +} + +"""Ordering options when selecting data from "v_player_weapon_kills".""" +input v_player_weapon_kills_order_by { + kill_count: order_by + player_steam_id: order_by + rounds: order_by + source: order_by + type: order_by + with: order_by +} + +""" +select columns of table "v_player_weapon_kills" +""" +enum v_player_weapon_kills_select_column { + """column name""" + kill_count + + """column name""" + player_steam_id + + """column name""" + rounds + + """column name""" + source + + """column name""" + type + + """column name""" + with +} + +"""aggregate stddev on columns""" +type v_player_weapon_kills_stddev_fields { + kill_count: Float + player_steam_id: Float + rounds: Float +} + +"""aggregate stddev_pop on columns""" +type v_player_weapon_kills_stddev_pop_fields { + kill_count: Float + player_steam_id: Float + rounds: Float +} + +"""aggregate stddev_samp on columns""" +type v_player_weapon_kills_stddev_samp_fields { + kill_count: Float + player_steam_id: Float + rounds: Float +} + +""" +Streaming cursor of the table "v_player_weapon_kills" +""" +input v_player_weapon_kills_stream_cursor_input { + """Stream column input with initial value""" + initial_value: v_player_weapon_kills_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input v_player_weapon_kills_stream_cursor_value_input { + kill_count: bigint + player_steam_id: bigint + rounds: bigint + source: String + type: String + with: String +} + +"""aggregate sum on columns""" +type v_player_weapon_kills_sum_fields { + kill_count: bigint + player_steam_id: bigint + rounds: bigint +} + +"""aggregate var_pop on columns""" +type v_player_weapon_kills_var_pop_fields { + kill_count: Float + player_steam_id: Float + rounds: Float +} + +"""aggregate var_samp on columns""" +type v_player_weapon_kills_var_samp_fields { + kill_count: Float + player_steam_id: Float + rounds: Float +} + +"""aggregate variance on columns""" +type v_player_weapon_kills_variance_fields { + kill_count: Float + player_steam_id: Float + rounds: Float +} + +""" +columns and relationships of "v_pool_maps" +""" +type v_pool_maps { + active_pool: Boolean + id: uuid + label: String + + """An object relationship""" + map_pool: map_pools + map_pool_id: uuid + name: String + patch: String + poster: String + type: String + workshop_map_id: String +} + +""" +aggregated selection of "v_pool_maps" +""" +type v_pool_maps_aggregate { + aggregate: v_pool_maps_aggregate_fields + nodes: [v_pool_maps!]! +} + +input v_pool_maps_aggregate_bool_exp { + bool_and: v_pool_maps_aggregate_bool_exp_bool_and + bool_or: v_pool_maps_aggregate_bool_exp_bool_or + count: v_pool_maps_aggregate_bool_exp_count +} + +input v_pool_maps_aggregate_bool_exp_bool_and { + arguments: v_pool_maps_select_column_v_pool_maps_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: v_pool_maps_bool_exp + predicate: Boolean_comparison_exp! +} + +input v_pool_maps_aggregate_bool_exp_bool_or { + arguments: v_pool_maps_select_column_v_pool_maps_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: v_pool_maps_bool_exp + predicate: Boolean_comparison_exp! +} + +input v_pool_maps_aggregate_bool_exp_count { + arguments: [v_pool_maps_select_column!] + distinct: Boolean + filter: v_pool_maps_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "v_pool_maps" +""" +type v_pool_maps_aggregate_fields { + count(columns: [v_pool_maps_select_column!], distinct: Boolean): Int! + max: v_pool_maps_max_fields + min: v_pool_maps_min_fields +} + +""" +order by aggregate values of table "v_pool_maps" +""" +input v_pool_maps_aggregate_order_by { + count: order_by + max: v_pool_maps_max_order_by + min: v_pool_maps_min_order_by +} + +""" +input type for inserting array relation for remote table "v_pool_maps" +""" +input v_pool_maps_arr_rel_insert_input { + data: [v_pool_maps_insert_input!]! +} + +""" +Boolean expression to filter rows from the table "v_pool_maps". All fields are combined with a logical 'AND'. +""" +input v_pool_maps_bool_exp { + _and: [v_pool_maps_bool_exp!] + _not: v_pool_maps_bool_exp + _or: [v_pool_maps_bool_exp!] + active_pool: Boolean_comparison_exp + id: uuid_comparison_exp + label: String_comparison_exp + map_pool: map_pools_bool_exp + map_pool_id: uuid_comparison_exp + name: String_comparison_exp + patch: String_comparison_exp + poster: String_comparison_exp + type: String_comparison_exp + workshop_map_id: String_comparison_exp +} + +""" +input type for inserting data into table "v_pool_maps" +""" +input v_pool_maps_insert_input { + active_pool: Boolean + id: uuid + label: String + map_pool: map_pools_obj_rel_insert_input + map_pool_id: uuid + name: String + patch: String + poster: String + type: String + workshop_map_id: String +} + +"""aggregate max on columns""" +type v_pool_maps_max_fields { + id: uuid + label: String + map_pool_id: uuid + name: String + patch: String + poster: String + type: String + workshop_map_id: String +} + +""" +order by max() on columns of table "v_pool_maps" +""" +input v_pool_maps_max_order_by { + id: order_by + label: order_by + map_pool_id: order_by + name: order_by + patch: order_by + poster: order_by + type: order_by + workshop_map_id: order_by +} + +"""aggregate min on columns""" +type v_pool_maps_min_fields { + id: uuid + label: String + map_pool_id: uuid + name: String + patch: String + poster: String + type: String + workshop_map_id: String +} + +""" +order by min() on columns of table "v_pool_maps" +""" +input v_pool_maps_min_order_by { + id: order_by + label: order_by + map_pool_id: order_by + name: order_by + patch: order_by + poster: order_by + type: order_by + workshop_map_id: order_by +} + +""" +response of any mutation on the table "v_pool_maps" +""" +type v_pool_maps_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [v_pool_maps!]! +} + +"""Ordering options when selecting data from "v_pool_maps".""" +input v_pool_maps_order_by { + active_pool: order_by + id: order_by + label: order_by + map_pool: map_pools_order_by + map_pool_id: order_by + name: order_by + patch: order_by + poster: order_by + type: order_by + workshop_map_id: order_by +} + +""" +select columns of table "v_pool_maps" +""" +enum v_pool_maps_select_column { + """column name""" + active_pool + + """column name""" + id + + """column name""" + label + + """column name""" + map_pool_id + + """column name""" + name + + """column name""" + patch + + """column name""" + poster + + """column name""" + type + + """column name""" + workshop_map_id +} + +""" +select "v_pool_maps_aggregate_bool_exp_bool_and_arguments_columns" columns of table "v_pool_maps" +""" +enum v_pool_maps_select_column_v_pool_maps_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + active_pool +} + +""" +select "v_pool_maps_aggregate_bool_exp_bool_or_arguments_columns" columns of table "v_pool_maps" +""" +enum v_pool_maps_select_column_v_pool_maps_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + active_pool +} + +""" +input type for updating data in table "v_pool_maps" +""" +input v_pool_maps_set_input { + active_pool: Boolean + id: uuid + label: String + map_pool_id: uuid + name: String + patch: String + poster: String + type: String + workshop_map_id: String +} + +""" +Streaming cursor of the table "v_pool_maps" +""" +input v_pool_maps_stream_cursor_input { + """Stream column input with initial value""" + initial_value: v_pool_maps_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input v_pool_maps_stream_cursor_value_input { + active_pool: Boolean + id: uuid + label: String + map_pool_id: uuid + name: String + patch: String + poster: String + type: String + workshop_map_id: String +} + +input v_pool_maps_updates { + """sets the columns of the filtered rows to the given values""" + _set: v_pool_maps_set_input + + """filter the rows which have to be updated""" + where: v_pool_maps_bool_exp! +} + +""" +columns and relationships of "v_steam_account_pool_status" +""" +type v_steam_account_pool_status { + busy_accounts: Int + free_accounts: Int + id: Int + total_accounts: Int +} + +""" +aggregated selection of "v_steam_account_pool_status" +""" +type v_steam_account_pool_status_aggregate { + aggregate: v_steam_account_pool_status_aggregate_fields + nodes: [v_steam_account_pool_status!]! +} + +""" +aggregate fields of "v_steam_account_pool_status" +""" +type v_steam_account_pool_status_aggregate_fields { + avg: v_steam_account_pool_status_avg_fields + count(columns: [v_steam_account_pool_status_select_column!], distinct: Boolean): Int! + max: v_steam_account_pool_status_max_fields + min: v_steam_account_pool_status_min_fields + stddev: v_steam_account_pool_status_stddev_fields + stddev_pop: v_steam_account_pool_status_stddev_pop_fields + stddev_samp: v_steam_account_pool_status_stddev_samp_fields + sum: v_steam_account_pool_status_sum_fields + var_pop: v_steam_account_pool_status_var_pop_fields + var_samp: v_steam_account_pool_status_var_samp_fields + variance: v_steam_account_pool_status_variance_fields +} + +"""aggregate avg on columns""" +type v_steam_account_pool_status_avg_fields { + busy_accounts: Float + free_accounts: Float + id: Float + total_accounts: Float +} + +""" +Boolean expression to filter rows from the table "v_steam_account_pool_status". All fields are combined with a logical 'AND'. +""" +input v_steam_account_pool_status_bool_exp { + _and: [v_steam_account_pool_status_bool_exp!] + _not: v_steam_account_pool_status_bool_exp + _or: [v_steam_account_pool_status_bool_exp!] + busy_accounts: Int_comparison_exp + free_accounts: Int_comparison_exp + id: Int_comparison_exp + total_accounts: Int_comparison_exp +} + +"""aggregate max on columns""" +type v_steam_account_pool_status_max_fields { + busy_accounts: Int + free_accounts: Int + id: Int + total_accounts: Int +} + +"""aggregate min on columns""" +type v_steam_account_pool_status_min_fields { + busy_accounts: Int + free_accounts: Int + id: Int + total_accounts: Int +} + +""" +Ordering options when selecting data from "v_steam_account_pool_status". +""" +input v_steam_account_pool_status_order_by { + busy_accounts: order_by + free_accounts: order_by + id: order_by + total_accounts: order_by +} + +""" +select columns of table "v_steam_account_pool_status" +""" +enum v_steam_account_pool_status_select_column { + """column name""" + busy_accounts + + """column name""" + free_accounts + + """column name""" + id + + """column name""" + total_accounts +} + +"""aggregate stddev on columns""" +type v_steam_account_pool_status_stddev_fields { + busy_accounts: Float + free_accounts: Float + id: Float + total_accounts: Float +} + +"""aggregate stddev_pop on columns""" +type v_steam_account_pool_status_stddev_pop_fields { + busy_accounts: Float + free_accounts: Float + id: Float + total_accounts: Float +} + +"""aggregate stddev_samp on columns""" +type v_steam_account_pool_status_stddev_samp_fields { + busy_accounts: Float + free_accounts: Float + id: Float + total_accounts: Float +} + +""" +Streaming cursor of the table "v_steam_account_pool_status" +""" +input v_steam_account_pool_status_stream_cursor_input { + """Stream column input with initial value""" + initial_value: v_steam_account_pool_status_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input v_steam_account_pool_status_stream_cursor_value_input { + busy_accounts: Int + free_accounts: Int + id: Int + total_accounts: Int +} + +"""aggregate sum on columns""" +type v_steam_account_pool_status_sum_fields { + busy_accounts: Int + free_accounts: Int + id: Int + total_accounts: Int +} + +"""aggregate var_pop on columns""" +type v_steam_account_pool_status_var_pop_fields { + busy_accounts: Float + free_accounts: Float + id: Float + total_accounts: Float +} + +"""aggregate var_samp on columns""" +type v_steam_account_pool_status_var_samp_fields { + busy_accounts: Float + free_accounts: Float + id: Float + total_accounts: Float +} + +"""aggregate variance on columns""" +type v_steam_account_pool_status_variance_fields { + busy_accounts: Float + free_accounts: Float + id: Float + total_accounts: Float +} + +""" +columns and relationships of "v_team_ranks" +""" +type v_team_ranks { + avg_duel_elo: Int + avg_elo: Int + avg_faceit_elo: Int + avg_faceit_level: float8 + avg_premier: Int + avg_wingman_elo: Int + max_elo: Int + min_elo: Int + roster_size: bigint + + """An object relationship""" + team: teams + team_id: uuid +} + +""" +aggregated selection of "v_team_ranks" +""" +type v_team_ranks_aggregate { + aggregate: v_team_ranks_aggregate_fields + nodes: [v_team_ranks!]! +} + +""" +aggregate fields of "v_team_ranks" +""" +type v_team_ranks_aggregate_fields { + avg: v_team_ranks_avg_fields + count(columns: [v_team_ranks_select_column!], distinct: Boolean): Int! + max: v_team_ranks_max_fields + min: v_team_ranks_min_fields + stddev: v_team_ranks_stddev_fields + stddev_pop: v_team_ranks_stddev_pop_fields + stddev_samp: v_team_ranks_stddev_samp_fields + sum: v_team_ranks_sum_fields + var_pop: v_team_ranks_var_pop_fields + var_samp: v_team_ranks_var_samp_fields + variance: v_team_ranks_variance_fields +} + +"""aggregate avg on columns""" +type v_team_ranks_avg_fields { + avg_duel_elo: Float + avg_elo: Float + avg_faceit_elo: Float + avg_faceit_level: Float + avg_premier: Float + avg_wingman_elo: Float + max_elo: Float + min_elo: Float + roster_size: Float +} + +""" +Boolean expression to filter rows from the table "v_team_ranks". All fields are combined with a logical 'AND'. +""" +input v_team_ranks_bool_exp { + _and: [v_team_ranks_bool_exp!] + _not: v_team_ranks_bool_exp + _or: [v_team_ranks_bool_exp!] + avg_duel_elo: Int_comparison_exp + avg_elo: Int_comparison_exp + avg_faceit_elo: Int_comparison_exp + avg_faceit_level: float8_comparison_exp + avg_premier: Int_comparison_exp + avg_wingman_elo: Int_comparison_exp + max_elo: Int_comparison_exp + min_elo: Int_comparison_exp + roster_size: bigint_comparison_exp + team: teams_bool_exp + team_id: uuid_comparison_exp +} + +""" +input type for inserting data into table "v_team_ranks" +""" +input v_team_ranks_insert_input { + avg_duel_elo: Int + avg_elo: Int + avg_faceit_elo: Int + avg_faceit_level: float8 + avg_premier: Int + avg_wingman_elo: Int + max_elo: Int + min_elo: Int + roster_size: bigint + team: teams_obj_rel_insert_input + team_id: uuid +} + +"""aggregate max on columns""" +type v_team_ranks_max_fields { + avg_duel_elo: Int + avg_elo: Int + avg_faceit_elo: Int + avg_faceit_level: float8 + avg_premier: Int + avg_wingman_elo: Int + max_elo: Int + min_elo: Int + roster_size: bigint + team_id: uuid +} + +"""aggregate min on columns""" +type v_team_ranks_min_fields { + avg_duel_elo: Int + avg_elo: Int + avg_faceit_elo: Int + avg_faceit_level: float8 + avg_premier: Int + avg_wingman_elo: Int + max_elo: Int + min_elo: Int + roster_size: bigint + team_id: uuid +} + +""" +input type for inserting object relation for remote table "v_team_ranks" +""" +input v_team_ranks_obj_rel_insert_input { + data: v_team_ranks_insert_input! +} + +"""Ordering options when selecting data from "v_team_ranks".""" +input v_team_ranks_order_by { + avg_duel_elo: order_by + avg_elo: order_by + avg_faceit_elo: order_by + avg_faceit_level: order_by + avg_premier: order_by + avg_wingman_elo: order_by + max_elo: order_by + min_elo: order_by + roster_size: order_by + team: teams_order_by + team_id: order_by +} + +""" +select columns of table "v_team_ranks" +""" +enum v_team_ranks_select_column { + """column name""" + avg_duel_elo + + """column name""" + avg_elo + + """column name""" + avg_faceit_elo + + """column name""" + avg_faceit_level + + """column name""" + avg_premier + + """column name""" + avg_wingman_elo + + """column name""" + max_elo + + """column name""" + min_elo + + """column name""" + roster_size + + """column name""" + team_id +} + +"""aggregate stddev on columns""" +type v_team_ranks_stddev_fields { + avg_duel_elo: Float + avg_elo: Float + avg_faceit_elo: Float + avg_faceit_level: Float + avg_premier: Float + avg_wingman_elo: Float + max_elo: Float + min_elo: Float + roster_size: Float +} + +"""aggregate stddev_pop on columns""" +type v_team_ranks_stddev_pop_fields { + avg_duel_elo: Float + avg_elo: Float + avg_faceit_elo: Float + avg_faceit_level: Float + avg_premier: Float + avg_wingman_elo: Float + max_elo: Float + min_elo: Float + roster_size: Float +} + +"""aggregate stddev_samp on columns""" +type v_team_ranks_stddev_samp_fields { + avg_duel_elo: Float + avg_elo: Float + avg_faceit_elo: Float + avg_faceit_level: Float + avg_premier: Float + avg_wingman_elo: Float + max_elo: Float + min_elo: Float + roster_size: Float +} + +""" +Streaming cursor of the table "v_team_ranks" +""" +input v_team_ranks_stream_cursor_input { + """Stream column input with initial value""" + initial_value: v_team_ranks_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input v_team_ranks_stream_cursor_value_input { + avg_duel_elo: Int + avg_elo: Int + avg_faceit_elo: Int + avg_faceit_level: float8 + avg_premier: Int + avg_wingman_elo: Int + max_elo: Int + min_elo: Int + roster_size: bigint + team_id: uuid +} + +"""aggregate sum on columns""" +type v_team_ranks_sum_fields { + avg_duel_elo: Int + avg_elo: Int + avg_faceit_elo: Int + avg_faceit_level: float8 + avg_premier: Int + avg_wingman_elo: Int + max_elo: Int + min_elo: Int + roster_size: bigint +} + +"""aggregate var_pop on columns""" +type v_team_ranks_var_pop_fields { + avg_duel_elo: Float + avg_elo: Float + avg_faceit_elo: Float + avg_faceit_level: Float + avg_premier: Float + avg_wingman_elo: Float + max_elo: Float + min_elo: Float + roster_size: Float +} + +"""aggregate var_samp on columns""" +type v_team_ranks_var_samp_fields { + avg_duel_elo: Float + avg_elo: Float + avg_faceit_elo: Float + avg_faceit_level: Float + avg_premier: Float + avg_wingman_elo: Float + max_elo: Float + min_elo: Float + roster_size: Float +} + +"""aggregate variance on columns""" +type v_team_ranks_variance_fields { + avg_duel_elo: Float + avg_elo: Float + avg_faceit_elo: Float + avg_faceit_level: Float + avg_premier: Float + avg_wingman_elo: Float + max_elo: Float + min_elo: Float + roster_size: Float +} + +""" +columns and relationships of "v_team_reputation" +""" +type v_team_reputation { + late_cancels: bigint + no_shows: bigint + reliability_pct: numeric + scrims_completed: bigint + + """An object relationship""" + team: teams + team_id: uuid +} + +""" +aggregated selection of "v_team_reputation" +""" +type v_team_reputation_aggregate { + aggregate: v_team_reputation_aggregate_fields + nodes: [v_team_reputation!]! +} + +""" +aggregate fields of "v_team_reputation" +""" +type v_team_reputation_aggregate_fields { + avg: v_team_reputation_avg_fields + count(columns: [v_team_reputation_select_column!], distinct: Boolean): Int! + max: v_team_reputation_max_fields + min: v_team_reputation_min_fields + stddev: v_team_reputation_stddev_fields + stddev_pop: v_team_reputation_stddev_pop_fields + stddev_samp: v_team_reputation_stddev_samp_fields + sum: v_team_reputation_sum_fields + var_pop: v_team_reputation_var_pop_fields + var_samp: v_team_reputation_var_samp_fields + variance: v_team_reputation_variance_fields +} + +"""aggregate avg on columns""" +type v_team_reputation_avg_fields { + late_cancels: Float + no_shows: Float + reliability_pct: Float + scrims_completed: Float +} + +""" +Boolean expression to filter rows from the table "v_team_reputation". All fields are combined with a logical 'AND'. +""" +input v_team_reputation_bool_exp { + _and: [v_team_reputation_bool_exp!] + _not: v_team_reputation_bool_exp + _or: [v_team_reputation_bool_exp!] + late_cancels: bigint_comparison_exp + no_shows: bigint_comparison_exp + reliability_pct: numeric_comparison_exp + scrims_completed: bigint_comparison_exp + team: teams_bool_exp + team_id: uuid_comparison_exp +} + +""" +input type for inserting data into table "v_team_reputation" +""" +input v_team_reputation_insert_input { + late_cancels: bigint + no_shows: bigint + reliability_pct: numeric + scrims_completed: bigint + team: teams_obj_rel_insert_input + team_id: uuid +} + +"""aggregate max on columns""" +type v_team_reputation_max_fields { + late_cancels: bigint + no_shows: bigint + reliability_pct: numeric + scrims_completed: bigint + team_id: uuid +} + +"""aggregate min on columns""" +type v_team_reputation_min_fields { + late_cancels: bigint + no_shows: bigint + reliability_pct: numeric + scrims_completed: bigint + team_id: uuid +} + +""" +input type for inserting object relation for remote table "v_team_reputation" +""" +input v_team_reputation_obj_rel_insert_input { + data: v_team_reputation_insert_input! +} + +"""Ordering options when selecting data from "v_team_reputation".""" +input v_team_reputation_order_by { + late_cancels: order_by + no_shows: order_by + reliability_pct: order_by + scrims_completed: order_by + team: teams_order_by + team_id: order_by +} + +""" +select columns of table "v_team_reputation" +""" +enum v_team_reputation_select_column { + """column name""" + late_cancels + + """column name""" + no_shows + + """column name""" + reliability_pct + + """column name""" + scrims_completed + + """column name""" + team_id +} + +"""aggregate stddev on columns""" +type v_team_reputation_stddev_fields { + late_cancels: Float + no_shows: Float + reliability_pct: Float + scrims_completed: Float +} + +"""aggregate stddev_pop on columns""" +type v_team_reputation_stddev_pop_fields { + late_cancels: Float + no_shows: Float + reliability_pct: Float + scrims_completed: Float +} + +"""aggregate stddev_samp on columns""" +type v_team_reputation_stddev_samp_fields { + late_cancels: Float + no_shows: Float + reliability_pct: Float + scrims_completed: Float +} + +""" +Streaming cursor of the table "v_team_reputation" +""" +input v_team_reputation_stream_cursor_input { + """Stream column input with initial value""" + initial_value: v_team_reputation_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input v_team_reputation_stream_cursor_value_input { + late_cancels: bigint + no_shows: bigint + reliability_pct: numeric + scrims_completed: bigint + team_id: uuid +} + +"""aggregate sum on columns""" +type v_team_reputation_sum_fields { + late_cancels: bigint + no_shows: bigint + reliability_pct: numeric + scrims_completed: bigint +} + +"""aggregate var_pop on columns""" +type v_team_reputation_var_pop_fields { + late_cancels: Float + no_shows: Float + reliability_pct: Float + scrims_completed: Float +} + +"""aggregate var_samp on columns""" +type v_team_reputation_var_samp_fields { + late_cancels: Float + no_shows: Float + reliability_pct: Float + scrims_completed: Float +} + +"""aggregate variance on columns""" +type v_team_reputation_variance_fields { + late_cancels: Float + no_shows: Float + reliability_pct: Float + scrims_completed: Float +} + +""" +columns and relationships of "v_team_stage_results" +""" +type v_team_stage_results { + group_number: Int! + head_to_head_match_wins: Int! + head_to_head_rounds_won: Int! + losses: Int! + maps_lost: Int! + maps_won: Int! + matches_played: Int! + matches_remaining: Int! + placement: Int! + rank: Int! + rounds_lost: Int! + rounds_won: Int! + + """An object relationship""" + stage: tournament_stages + + """An object relationship""" + team: tournament_teams + team_kdr: float8! + total_deaths: Int! + total_kills: Int! + tournament_stage_id: uuid! + tournament_team_id: uuid! + wins: Int! +} + +""" +aggregated selection of "v_team_stage_results" +""" +type v_team_stage_results_aggregate { + aggregate: v_team_stage_results_aggregate_fields + nodes: [v_team_stage_results!]! +} + +input v_team_stage_results_aggregate_bool_exp { + avg: v_team_stage_results_aggregate_bool_exp_avg + corr: v_team_stage_results_aggregate_bool_exp_corr + count: v_team_stage_results_aggregate_bool_exp_count + covar_samp: v_team_stage_results_aggregate_bool_exp_covar_samp + max: v_team_stage_results_aggregate_bool_exp_max + min: v_team_stage_results_aggregate_bool_exp_min + stddev_samp: v_team_stage_results_aggregate_bool_exp_stddev_samp + sum: v_team_stage_results_aggregate_bool_exp_sum + var_samp: v_team_stage_results_aggregate_bool_exp_var_samp +} + +input v_team_stage_results_aggregate_bool_exp_avg { + arguments: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_avg_arguments_columns! + distinct: Boolean + filter: v_team_stage_results_bool_exp + predicate: float8_comparison_exp! +} + +input v_team_stage_results_aggregate_bool_exp_corr { + arguments: v_team_stage_results_aggregate_bool_exp_corr_arguments! + distinct: Boolean + filter: v_team_stage_results_bool_exp + predicate: float8_comparison_exp! +} + +input v_team_stage_results_aggregate_bool_exp_corr_arguments { + X: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_corr_arguments_columns! + Y: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_corr_arguments_columns! +} + +input v_team_stage_results_aggregate_bool_exp_count { + arguments: [v_team_stage_results_select_column!] + distinct: Boolean + filter: v_team_stage_results_bool_exp + predicate: Int_comparison_exp! +} + +input v_team_stage_results_aggregate_bool_exp_covar_samp { + arguments: v_team_stage_results_aggregate_bool_exp_covar_samp_arguments! + distinct: Boolean + filter: v_team_stage_results_bool_exp + predicate: float8_comparison_exp! +} + +input v_team_stage_results_aggregate_bool_exp_covar_samp_arguments { + X: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_covar_samp_arguments_columns! + Y: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_covar_samp_arguments_columns! +} + +input v_team_stage_results_aggregate_bool_exp_max { + arguments: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_max_arguments_columns! + distinct: Boolean + filter: v_team_stage_results_bool_exp + predicate: float8_comparison_exp! +} + +input v_team_stage_results_aggregate_bool_exp_min { + arguments: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_min_arguments_columns! + distinct: Boolean + filter: v_team_stage_results_bool_exp + predicate: float8_comparison_exp! +} + +input v_team_stage_results_aggregate_bool_exp_stddev_samp { + arguments: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_stddev_samp_arguments_columns! + distinct: Boolean + filter: v_team_stage_results_bool_exp + predicate: float8_comparison_exp! +} + +input v_team_stage_results_aggregate_bool_exp_sum { + arguments: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_sum_arguments_columns! + distinct: Boolean + filter: v_team_stage_results_bool_exp + predicate: float8_comparison_exp! +} + +input v_team_stage_results_aggregate_bool_exp_var_samp { + arguments: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_var_samp_arguments_columns! + distinct: Boolean + filter: v_team_stage_results_bool_exp + predicate: float8_comparison_exp! +} + +""" +aggregate fields of "v_team_stage_results" +""" +type v_team_stage_results_aggregate_fields { + avg: v_team_stage_results_avg_fields + count(columns: [v_team_stage_results_select_column!], distinct: Boolean): Int! + max: v_team_stage_results_max_fields + min: v_team_stage_results_min_fields + stddev: v_team_stage_results_stddev_fields + stddev_pop: v_team_stage_results_stddev_pop_fields + stddev_samp: v_team_stage_results_stddev_samp_fields + sum: v_team_stage_results_sum_fields + var_pop: v_team_stage_results_var_pop_fields + var_samp: v_team_stage_results_var_samp_fields + variance: v_team_stage_results_variance_fields +} + +""" +order by aggregate values of table "v_team_stage_results" +""" +input v_team_stage_results_aggregate_order_by { + avg: v_team_stage_results_avg_order_by + count: order_by + max: v_team_stage_results_max_order_by + min: v_team_stage_results_min_order_by + stddev: v_team_stage_results_stddev_order_by + stddev_pop: v_team_stage_results_stddev_pop_order_by + stddev_samp: v_team_stage_results_stddev_samp_order_by + sum: v_team_stage_results_sum_order_by + var_pop: v_team_stage_results_var_pop_order_by + var_samp: v_team_stage_results_var_samp_order_by + variance: v_team_stage_results_variance_order_by +} + +""" +input type for inserting array relation for remote table "v_team_stage_results" +""" +input v_team_stage_results_arr_rel_insert_input { + data: [v_team_stage_results_insert_input!]! + + """upsert condition""" + on_conflict: v_team_stage_results_on_conflict +} + +"""aggregate avg on columns""" +type v_team_stage_results_avg_fields { + group_number: Float + head_to_head_match_wins: Float + head_to_head_rounds_won: Float + losses: Float + maps_lost: Float + maps_won: Float + matches_played: Float + matches_remaining: Float + placement: Float + rank: Float + rounds_lost: Float + rounds_won: Float + team_kdr: Float + total_deaths: Float + total_kills: Float + wins: Float +} + +""" +order by avg() on columns of table "v_team_stage_results" +""" +input v_team_stage_results_avg_order_by { + group_number: order_by + head_to_head_match_wins: order_by + head_to_head_rounds_won: order_by + losses: order_by + maps_lost: order_by + maps_won: order_by + matches_played: order_by + matches_remaining: order_by + placement: order_by + rank: order_by + rounds_lost: order_by + rounds_won: order_by + team_kdr: order_by + total_deaths: order_by + total_kills: order_by + wins: order_by +} + +""" +Boolean expression to filter rows from the table "v_team_stage_results". All fields are combined with a logical 'AND'. +""" +input v_team_stage_results_bool_exp { + _and: [v_team_stage_results_bool_exp!] + _not: v_team_stage_results_bool_exp + _or: [v_team_stage_results_bool_exp!] + group_number: Int_comparison_exp + head_to_head_match_wins: Int_comparison_exp + head_to_head_rounds_won: Int_comparison_exp + losses: Int_comparison_exp + maps_lost: Int_comparison_exp + maps_won: Int_comparison_exp + matches_played: Int_comparison_exp + matches_remaining: Int_comparison_exp + placement: Int_comparison_exp + rank: Int_comparison_exp + rounds_lost: Int_comparison_exp + rounds_won: Int_comparison_exp + stage: tournament_stages_bool_exp + team: tournament_teams_bool_exp + team_kdr: float8_comparison_exp + total_deaths: Int_comparison_exp + total_kills: Int_comparison_exp + tournament_stage_id: uuid_comparison_exp + tournament_team_id: uuid_comparison_exp + wins: Int_comparison_exp +} + +""" +unique or primary key constraints on table "v_team_stage_results" +""" +enum v_team_stage_results_constraint { + """ + unique or primary key constraint on columns "tournament_team_id", "tournament_stage_id" + """ + v_team_stage_results_pkey +} + +""" +input type for incrementing numeric columns in table "v_team_stage_results" +""" +input v_team_stage_results_inc_input { + group_number: Int + head_to_head_match_wins: Int + head_to_head_rounds_won: Int + losses: Int + maps_lost: Int + maps_won: Int + matches_played: Int + matches_remaining: Int + placement: Int + rank: Int + rounds_lost: Int + rounds_won: Int + team_kdr: float8 + total_deaths: Int + total_kills: Int + wins: Int +} + +""" +input type for inserting data into table "v_team_stage_results" +""" +input v_team_stage_results_insert_input { + group_number: Int + head_to_head_match_wins: Int + head_to_head_rounds_won: Int + losses: Int + maps_lost: Int + maps_won: Int + matches_played: Int + matches_remaining: Int + placement: Int + rank: Int + rounds_lost: Int + rounds_won: Int + stage: tournament_stages_obj_rel_insert_input + team: tournament_teams_obj_rel_insert_input + team_kdr: float8 + total_deaths: Int + total_kills: Int + tournament_stage_id: uuid + tournament_team_id: uuid + wins: Int +} + +"""aggregate max on columns""" +type v_team_stage_results_max_fields { + group_number: Int + head_to_head_match_wins: Int + head_to_head_rounds_won: Int + losses: Int + maps_lost: Int + maps_won: Int + matches_played: Int + matches_remaining: Int + placement: Int + rank: Int + rounds_lost: Int + rounds_won: Int + team_kdr: float8 + total_deaths: Int + total_kills: Int + tournament_stage_id: uuid + tournament_team_id: uuid + wins: Int +} + +""" +order by max() on columns of table "v_team_stage_results" +""" +input v_team_stage_results_max_order_by { + group_number: order_by + head_to_head_match_wins: order_by + head_to_head_rounds_won: order_by + losses: order_by + maps_lost: order_by + maps_won: order_by + matches_played: order_by + matches_remaining: order_by + placement: order_by + rank: order_by + rounds_lost: order_by + rounds_won: order_by + team_kdr: order_by + total_deaths: order_by + total_kills: order_by + tournament_stage_id: order_by + tournament_team_id: order_by + wins: order_by +} + +"""aggregate min on columns""" +type v_team_stage_results_min_fields { + group_number: Int + head_to_head_match_wins: Int + head_to_head_rounds_won: Int + losses: Int + maps_lost: Int + maps_won: Int + matches_played: Int + matches_remaining: Int + placement: Int + rank: Int + rounds_lost: Int + rounds_won: Int + team_kdr: float8 + total_deaths: Int + total_kills: Int + tournament_stage_id: uuid + tournament_team_id: uuid + wins: Int +} + +""" +order by min() on columns of table "v_team_stage_results" +""" +input v_team_stage_results_min_order_by { + group_number: order_by + head_to_head_match_wins: order_by + head_to_head_rounds_won: order_by + losses: order_by + maps_lost: order_by + maps_won: order_by + matches_played: order_by + matches_remaining: order_by + placement: order_by + rank: order_by + rounds_lost: order_by + rounds_won: order_by + team_kdr: order_by + total_deaths: order_by + total_kills: order_by + tournament_stage_id: order_by + tournament_team_id: order_by + wins: order_by +} + +""" +response of any mutation on the table "v_team_stage_results" +""" +type v_team_stage_results_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [v_team_stage_results!]! +} + +""" +input type for inserting object relation for remote table "v_team_stage_results" +""" +input v_team_stage_results_obj_rel_insert_input { + data: v_team_stage_results_insert_input! + + """upsert condition""" + on_conflict: v_team_stage_results_on_conflict +} + +""" +on_conflict condition type for table "v_team_stage_results" +""" +input v_team_stage_results_on_conflict { + constraint: v_team_stage_results_constraint! + update_columns: [v_team_stage_results_update_column!]! = [] + where: v_team_stage_results_bool_exp +} + +"""Ordering options when selecting data from "v_team_stage_results".""" +input v_team_stage_results_order_by { + group_number: order_by + head_to_head_match_wins: order_by + head_to_head_rounds_won: order_by + losses: order_by + maps_lost: order_by + maps_won: order_by + matches_played: order_by + matches_remaining: order_by + placement: order_by + rank: order_by + rounds_lost: order_by + rounds_won: order_by + stage: tournament_stages_order_by + team: tournament_teams_order_by + team_kdr: order_by + total_deaths: order_by + total_kills: order_by + tournament_stage_id: order_by + tournament_team_id: order_by + wins: order_by +} + +"""primary key columns input for table: v_team_stage_results""" +input v_team_stage_results_pk_columns_input { + tournament_stage_id: uuid! + tournament_team_id: uuid! +} + +""" +select columns of table "v_team_stage_results" +""" +enum v_team_stage_results_select_column { + """column name""" + group_number + + """column name""" + head_to_head_match_wins + + """column name""" + head_to_head_rounds_won + + """column name""" + losses + + """column name""" + maps_lost + + """column name""" + maps_won + + """column name""" + matches_played + + """column name""" + matches_remaining + + """column name""" + placement + + """column name""" + rank + + """column name""" + rounds_lost + + """column name""" + rounds_won + + """column name""" + team_kdr + + """column name""" + total_deaths + + """column name""" + total_kills + + """column name""" + tournament_stage_id + + """column name""" + tournament_team_id + + """column name""" + wins +} + +""" +select "v_team_stage_results_aggregate_bool_exp_avg_arguments_columns" columns of table "v_team_stage_results" +""" +enum v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_avg_arguments_columns { + """column name""" + team_kdr +} + +""" +select "v_team_stage_results_aggregate_bool_exp_corr_arguments_columns" columns of table "v_team_stage_results" +""" +enum v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_corr_arguments_columns { + """column name""" + team_kdr +} + +""" +select "v_team_stage_results_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "v_team_stage_results" +""" +enum v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_covar_samp_arguments_columns { + """column name""" + team_kdr +} + +""" +select "v_team_stage_results_aggregate_bool_exp_max_arguments_columns" columns of table "v_team_stage_results" +""" +enum v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_max_arguments_columns { + """column name""" + team_kdr +} + +""" +select "v_team_stage_results_aggregate_bool_exp_min_arguments_columns" columns of table "v_team_stage_results" +""" +enum v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_min_arguments_columns { + """column name""" + team_kdr +} + +""" +select "v_team_stage_results_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "v_team_stage_results" +""" +enum v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_stddev_samp_arguments_columns { + """column name""" + team_kdr +} + +""" +select "v_team_stage_results_aggregate_bool_exp_sum_arguments_columns" columns of table "v_team_stage_results" +""" +enum v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_sum_arguments_columns { + """column name""" + team_kdr +} + +""" +select "v_team_stage_results_aggregate_bool_exp_var_samp_arguments_columns" columns of table "v_team_stage_results" +""" +enum v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_var_samp_arguments_columns { + """column name""" + team_kdr +} + +""" +input type for updating data in table "v_team_stage_results" +""" +input v_team_stage_results_set_input { + group_number: Int + head_to_head_match_wins: Int + head_to_head_rounds_won: Int + losses: Int + maps_lost: Int + maps_won: Int + matches_played: Int + matches_remaining: Int + placement: Int + rank: Int + rounds_lost: Int + rounds_won: Int + team_kdr: float8 + total_deaths: Int + total_kills: Int + tournament_stage_id: uuid + tournament_team_id: uuid + wins: Int +} + +"""aggregate stddev on columns""" +type v_team_stage_results_stddev_fields { + group_number: Float + head_to_head_match_wins: Float + head_to_head_rounds_won: Float + losses: Float + maps_lost: Float + maps_won: Float + matches_played: Float + matches_remaining: Float + placement: Float + rank: Float + rounds_lost: Float + rounds_won: Float + team_kdr: Float + total_deaths: Float + total_kills: Float + wins: Float +} + +""" +order by stddev() on columns of table "v_team_stage_results" +""" +input v_team_stage_results_stddev_order_by { + group_number: order_by + head_to_head_match_wins: order_by + head_to_head_rounds_won: order_by + losses: order_by + maps_lost: order_by + maps_won: order_by + matches_played: order_by + matches_remaining: order_by + placement: order_by + rank: order_by + rounds_lost: order_by + rounds_won: order_by + team_kdr: order_by + total_deaths: order_by + total_kills: order_by + wins: order_by +} + +"""aggregate stddev_pop on columns""" +type v_team_stage_results_stddev_pop_fields { + group_number: Float + head_to_head_match_wins: Float + head_to_head_rounds_won: Float + losses: Float + maps_lost: Float + maps_won: Float + matches_played: Float + matches_remaining: Float + placement: Float + rank: Float + rounds_lost: Float + rounds_won: Float + team_kdr: Float + total_deaths: Float + total_kills: Float + wins: Float +} + +""" +order by stddev_pop() on columns of table "v_team_stage_results" +""" +input v_team_stage_results_stddev_pop_order_by { + group_number: order_by + head_to_head_match_wins: order_by + head_to_head_rounds_won: order_by + losses: order_by + maps_lost: order_by + maps_won: order_by + matches_played: order_by + matches_remaining: order_by + placement: order_by + rank: order_by + rounds_lost: order_by + rounds_won: order_by + team_kdr: order_by + total_deaths: order_by + total_kills: order_by + wins: order_by +} + +"""aggregate stddev_samp on columns""" +type v_team_stage_results_stddev_samp_fields { + group_number: Float + head_to_head_match_wins: Float + head_to_head_rounds_won: Float + losses: Float + maps_lost: Float + maps_won: Float + matches_played: Float + matches_remaining: Float + placement: Float + rank: Float + rounds_lost: Float + rounds_won: Float + team_kdr: Float + total_deaths: Float + total_kills: Float + wins: Float +} + +""" +order by stddev_samp() on columns of table "v_team_stage_results" +""" +input v_team_stage_results_stddev_samp_order_by { + group_number: order_by + head_to_head_match_wins: order_by + head_to_head_rounds_won: order_by + losses: order_by + maps_lost: order_by + maps_won: order_by + matches_played: order_by + matches_remaining: order_by + placement: order_by + rank: order_by + rounds_lost: order_by + rounds_won: order_by + team_kdr: order_by + total_deaths: order_by + total_kills: order_by + wins: order_by +} + +""" +Streaming cursor of the table "v_team_stage_results" +""" +input v_team_stage_results_stream_cursor_input { + """Stream column input with initial value""" + initial_value: v_team_stage_results_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input v_team_stage_results_stream_cursor_value_input { + group_number: Int + head_to_head_match_wins: Int + head_to_head_rounds_won: Int + losses: Int + maps_lost: Int + maps_won: Int + matches_played: Int + matches_remaining: Int + placement: Int + rank: Int + rounds_lost: Int + rounds_won: Int + team_kdr: float8 + total_deaths: Int + total_kills: Int + tournament_stage_id: uuid + tournament_team_id: uuid + wins: Int +} + +"""aggregate sum on columns""" +type v_team_stage_results_sum_fields { + group_number: Int + head_to_head_match_wins: Int + head_to_head_rounds_won: Int + losses: Int + maps_lost: Int + maps_won: Int + matches_played: Int + matches_remaining: Int + placement: Int + rank: Int + rounds_lost: Int + rounds_won: Int + team_kdr: float8 + total_deaths: Int + total_kills: Int + wins: Int +} + +""" +order by sum() on columns of table "v_team_stage_results" +""" +input v_team_stage_results_sum_order_by { + group_number: order_by + head_to_head_match_wins: order_by + head_to_head_rounds_won: order_by + losses: order_by + maps_lost: order_by + maps_won: order_by + matches_played: order_by + matches_remaining: order_by + placement: order_by + rank: order_by + rounds_lost: order_by + rounds_won: order_by + team_kdr: order_by + total_deaths: order_by + total_kills: order_by + wins: order_by +} + +""" +update columns of table "v_team_stage_results" +""" +enum v_team_stage_results_update_column { + """column name""" + group_number + + """column name""" + head_to_head_match_wins + + """column name""" + head_to_head_rounds_won + + """column name""" + losses + + """column name""" + maps_lost + + """column name""" + maps_won + + """column name""" + matches_played + + """column name""" + matches_remaining + + """column name""" + placement + + """column name""" + rank + + """column name""" + rounds_lost + + """column name""" + rounds_won + + """column name""" + team_kdr + + """column name""" + total_deaths + + """column name""" + total_kills + + """column name""" + tournament_stage_id + + """column name""" + tournament_team_id + + """column name""" + wins +} + +input v_team_stage_results_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: v_team_stage_results_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: v_team_stage_results_set_input + + """filter the rows which have to be updated""" + where: v_team_stage_results_bool_exp! +} + +"""aggregate var_pop on columns""" +type v_team_stage_results_var_pop_fields { + group_number: Float + head_to_head_match_wins: Float + head_to_head_rounds_won: Float + losses: Float + maps_lost: Float + maps_won: Float + matches_played: Float + matches_remaining: Float + placement: Float + rank: Float + rounds_lost: Float + rounds_won: Float + team_kdr: Float + total_deaths: Float + total_kills: Float + wins: Float +} + +""" +order by var_pop() on columns of table "v_team_stage_results" +""" +input v_team_stage_results_var_pop_order_by { + group_number: order_by + head_to_head_match_wins: order_by + head_to_head_rounds_won: order_by + losses: order_by + maps_lost: order_by + maps_won: order_by + matches_played: order_by + matches_remaining: order_by + placement: order_by + rank: order_by + rounds_lost: order_by + rounds_won: order_by + team_kdr: order_by + total_deaths: order_by + total_kills: order_by + wins: order_by +} + +"""aggregate var_samp on columns""" +type v_team_stage_results_var_samp_fields { + group_number: Float + head_to_head_match_wins: Float + head_to_head_rounds_won: Float + losses: Float + maps_lost: Float + maps_won: Float + matches_played: Float + matches_remaining: Float + placement: Float + rank: Float + rounds_lost: Float + rounds_won: Float + team_kdr: Float + total_deaths: Float + total_kills: Float + wins: Float +} + +""" +order by var_samp() on columns of table "v_team_stage_results" +""" +input v_team_stage_results_var_samp_order_by { + group_number: order_by + head_to_head_match_wins: order_by + head_to_head_rounds_won: order_by + losses: order_by + maps_lost: order_by + maps_won: order_by + matches_played: order_by + matches_remaining: order_by + placement: order_by + rank: order_by + rounds_lost: order_by + rounds_won: order_by + team_kdr: order_by + total_deaths: order_by + total_kills: order_by + wins: order_by +} + +"""aggregate variance on columns""" +type v_team_stage_results_variance_fields { + group_number: Float + head_to_head_match_wins: Float + head_to_head_rounds_won: Float + losses: Float + maps_lost: Float + maps_won: Float + matches_played: Float + matches_remaining: Float + placement: Float + rank: Float + rounds_lost: Float + rounds_won: Float + team_kdr: Float + total_deaths: Float + total_kills: Float + wins: Float +} + +""" +order by variance() on columns of table "v_team_stage_results" +""" +input v_team_stage_results_variance_order_by { + group_number: order_by + head_to_head_match_wins: order_by + head_to_head_rounds_won: order_by + losses: order_by + maps_lost: order_by + maps_won: order_by + matches_played: order_by + matches_remaining: order_by + placement: order_by + rank: order_by + rounds_lost: order_by + rounds_won: order_by + team_kdr: order_by + total_deaths: order_by + total_kills: order_by + wins: order_by +} + +""" +columns and relationships of "v_team_tournament_results" +""" +type v_team_tournament_results { + head_to_head_match_wins: Int + head_to_head_rounds_won: Int + losses: Int + maps_lost: Int + maps_won: Int + matches_played: Int + matches_remaining: Int + rounds_lost: Int + rounds_won: Int + + """An object relationship""" + team: tournament_teams + team_kdr: float8 + total_deaths: Int + total_kills: Int + + """An object relationship""" + tournament: tournaments + tournament_id: uuid + tournament_team_id: uuid + wins: Int +} + +""" +aggregated selection of "v_team_tournament_results" +""" +type v_team_tournament_results_aggregate { + aggregate: v_team_tournament_results_aggregate_fields + nodes: [v_team_tournament_results!]! +} + +input v_team_tournament_results_aggregate_bool_exp { + avg: v_team_tournament_results_aggregate_bool_exp_avg + corr: v_team_tournament_results_aggregate_bool_exp_corr + count: v_team_tournament_results_aggregate_bool_exp_count + covar_samp: v_team_tournament_results_aggregate_bool_exp_covar_samp + max: v_team_tournament_results_aggregate_bool_exp_max + min: v_team_tournament_results_aggregate_bool_exp_min + stddev_samp: v_team_tournament_results_aggregate_bool_exp_stddev_samp + sum: v_team_tournament_results_aggregate_bool_exp_sum + var_samp: v_team_tournament_results_aggregate_bool_exp_var_samp +} + +input v_team_tournament_results_aggregate_bool_exp_avg { + arguments: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_avg_arguments_columns! + distinct: Boolean + filter: v_team_tournament_results_bool_exp + predicate: float8_comparison_exp! +} + +input v_team_tournament_results_aggregate_bool_exp_corr { + arguments: v_team_tournament_results_aggregate_bool_exp_corr_arguments! + distinct: Boolean + filter: v_team_tournament_results_bool_exp + predicate: float8_comparison_exp! +} + +input v_team_tournament_results_aggregate_bool_exp_corr_arguments { + X: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_corr_arguments_columns! + Y: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_corr_arguments_columns! +} + +input v_team_tournament_results_aggregate_bool_exp_count { + arguments: [v_team_tournament_results_select_column!] + distinct: Boolean + filter: v_team_tournament_results_bool_exp + predicate: Int_comparison_exp! +} + +input v_team_tournament_results_aggregate_bool_exp_covar_samp { + arguments: v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments! + distinct: Boolean + filter: v_team_tournament_results_bool_exp + predicate: float8_comparison_exp! +} + +input v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments { + X: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments_columns! + Y: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments_columns! +} + +input v_team_tournament_results_aggregate_bool_exp_max { + arguments: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_max_arguments_columns! + distinct: Boolean + filter: v_team_tournament_results_bool_exp + predicate: float8_comparison_exp! +} + +input v_team_tournament_results_aggregate_bool_exp_min { + arguments: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_min_arguments_columns! + distinct: Boolean + filter: v_team_tournament_results_bool_exp + predicate: float8_comparison_exp! +} + +input v_team_tournament_results_aggregate_bool_exp_stddev_samp { + arguments: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_stddev_samp_arguments_columns! + distinct: Boolean + filter: v_team_tournament_results_bool_exp + predicate: float8_comparison_exp! +} + +input v_team_tournament_results_aggregate_bool_exp_sum { + arguments: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_sum_arguments_columns! + distinct: Boolean + filter: v_team_tournament_results_bool_exp + predicate: float8_comparison_exp! +} + +input v_team_tournament_results_aggregate_bool_exp_var_samp { + arguments: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_var_samp_arguments_columns! + distinct: Boolean + filter: v_team_tournament_results_bool_exp + predicate: float8_comparison_exp! +} + +""" +aggregate fields of "v_team_tournament_results" +""" +type v_team_tournament_results_aggregate_fields { + avg: v_team_tournament_results_avg_fields + count(columns: [v_team_tournament_results_select_column!], distinct: Boolean): Int! + max: v_team_tournament_results_max_fields + min: v_team_tournament_results_min_fields + stddev: v_team_tournament_results_stddev_fields + stddev_pop: v_team_tournament_results_stddev_pop_fields + stddev_samp: v_team_tournament_results_stddev_samp_fields + sum: v_team_tournament_results_sum_fields + var_pop: v_team_tournament_results_var_pop_fields + var_samp: v_team_tournament_results_var_samp_fields + variance: v_team_tournament_results_variance_fields +} + +""" +order by aggregate values of table "v_team_tournament_results" +""" +input v_team_tournament_results_aggregate_order_by { + avg: v_team_tournament_results_avg_order_by + count: order_by + max: v_team_tournament_results_max_order_by + min: v_team_tournament_results_min_order_by + stddev: v_team_tournament_results_stddev_order_by + stddev_pop: v_team_tournament_results_stddev_pop_order_by + stddev_samp: v_team_tournament_results_stddev_samp_order_by + sum: v_team_tournament_results_sum_order_by + var_pop: v_team_tournament_results_var_pop_order_by + var_samp: v_team_tournament_results_var_samp_order_by + variance: v_team_tournament_results_variance_order_by +} + +""" +input type for inserting array relation for remote table "v_team_tournament_results" +""" +input v_team_tournament_results_arr_rel_insert_input { + data: [v_team_tournament_results_insert_input!]! +} + +"""aggregate avg on columns""" +type v_team_tournament_results_avg_fields { + head_to_head_match_wins: Float + head_to_head_rounds_won: Float + losses: Float + maps_lost: Float + maps_won: Float + matches_played: Float + matches_remaining: Float + rounds_lost: Float + rounds_won: Float + team_kdr: Float + total_deaths: Float + total_kills: Float + wins: Float +} + +""" +order by avg() on columns of table "v_team_tournament_results" +""" +input v_team_tournament_results_avg_order_by { + head_to_head_match_wins: order_by + head_to_head_rounds_won: order_by + losses: order_by + maps_lost: order_by + maps_won: order_by + matches_played: order_by + matches_remaining: order_by + rounds_lost: order_by + rounds_won: order_by + team_kdr: order_by + total_deaths: order_by + total_kills: order_by + wins: order_by +} + +""" +Boolean expression to filter rows from the table "v_team_tournament_results". All fields are combined with a logical 'AND'. +""" +input v_team_tournament_results_bool_exp { + _and: [v_team_tournament_results_bool_exp!] + _not: v_team_tournament_results_bool_exp + _or: [v_team_tournament_results_bool_exp!] + head_to_head_match_wins: Int_comparison_exp + head_to_head_rounds_won: Int_comparison_exp + losses: Int_comparison_exp + maps_lost: Int_comparison_exp + maps_won: Int_comparison_exp + matches_played: Int_comparison_exp + matches_remaining: Int_comparison_exp + rounds_lost: Int_comparison_exp + rounds_won: Int_comparison_exp + team: tournament_teams_bool_exp + team_kdr: float8_comparison_exp + total_deaths: Int_comparison_exp + total_kills: Int_comparison_exp + tournament: tournaments_bool_exp + tournament_id: uuid_comparison_exp + tournament_team_id: uuid_comparison_exp + wins: Int_comparison_exp +} + +""" +input type for inserting data into table "v_team_tournament_results" +""" +input v_team_tournament_results_insert_input { + head_to_head_match_wins: Int + head_to_head_rounds_won: Int + losses: Int + maps_lost: Int + maps_won: Int + matches_played: Int + matches_remaining: Int + rounds_lost: Int + rounds_won: Int + team: tournament_teams_obj_rel_insert_input + team_kdr: float8 + total_deaths: Int + total_kills: Int + tournament: tournaments_obj_rel_insert_input + tournament_id: uuid + tournament_team_id: uuid + wins: Int +} + +"""aggregate max on columns""" +type v_team_tournament_results_max_fields { + head_to_head_match_wins: Int + head_to_head_rounds_won: Int + losses: Int + maps_lost: Int + maps_won: Int + matches_played: Int + matches_remaining: Int + rounds_lost: Int + rounds_won: Int + team_kdr: float8 + total_deaths: Int + total_kills: Int + tournament_id: uuid + tournament_team_id: uuid + wins: Int +} + +""" +order by max() on columns of table "v_team_tournament_results" +""" +input v_team_tournament_results_max_order_by { + head_to_head_match_wins: order_by + head_to_head_rounds_won: order_by + losses: order_by + maps_lost: order_by + maps_won: order_by + matches_played: order_by + matches_remaining: order_by + rounds_lost: order_by + rounds_won: order_by + team_kdr: order_by + total_deaths: order_by + total_kills: order_by + tournament_id: order_by + tournament_team_id: order_by + wins: order_by +} + +"""aggregate min on columns""" +type v_team_tournament_results_min_fields { + head_to_head_match_wins: Int + head_to_head_rounds_won: Int + losses: Int + maps_lost: Int + maps_won: Int + matches_played: Int + matches_remaining: Int + rounds_lost: Int + rounds_won: Int + team_kdr: float8 + total_deaths: Int + total_kills: Int + tournament_id: uuid + tournament_team_id: uuid + wins: Int +} + +""" +order by min() on columns of table "v_team_tournament_results" +""" +input v_team_tournament_results_min_order_by { + head_to_head_match_wins: order_by + head_to_head_rounds_won: order_by + losses: order_by + maps_lost: order_by + maps_won: order_by + matches_played: order_by + matches_remaining: order_by + rounds_lost: order_by + rounds_won: order_by + team_kdr: order_by + total_deaths: order_by + total_kills: order_by + tournament_id: order_by + tournament_team_id: order_by + wins: order_by +} + +"""Ordering options when selecting data from "v_team_tournament_results".""" +input v_team_tournament_results_order_by { + head_to_head_match_wins: order_by + head_to_head_rounds_won: order_by + losses: order_by + maps_lost: order_by + maps_won: order_by + matches_played: order_by + matches_remaining: order_by + rounds_lost: order_by + rounds_won: order_by + team: tournament_teams_order_by + team_kdr: order_by + total_deaths: order_by + total_kills: order_by + tournament: tournaments_order_by + tournament_id: order_by + tournament_team_id: order_by + wins: order_by +} + +""" +select columns of table "v_team_tournament_results" +""" +enum v_team_tournament_results_select_column { + """column name""" + head_to_head_match_wins + + """column name""" + head_to_head_rounds_won + + """column name""" + losses + + """column name""" + maps_lost + + """column name""" + maps_won + + """column name""" + matches_played + + """column name""" + matches_remaining + + """column name""" + rounds_lost + + """column name""" + rounds_won + + """column name""" + team_kdr + + """column name""" + total_deaths + + """column name""" + total_kills + + """column name""" + tournament_id + + """column name""" + tournament_team_id + + """column name""" + wins +} + +""" +select "v_team_tournament_results_aggregate_bool_exp_avg_arguments_columns" columns of table "v_team_tournament_results" +""" +enum v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_avg_arguments_columns { + """column name""" + team_kdr +} + +""" +select "v_team_tournament_results_aggregate_bool_exp_corr_arguments_columns" columns of table "v_team_tournament_results" +""" +enum v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_corr_arguments_columns { + """column name""" + team_kdr +} + +""" +select "v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "v_team_tournament_results" +""" +enum v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments_columns { + """column name""" + team_kdr +} + +""" +select "v_team_tournament_results_aggregate_bool_exp_max_arguments_columns" columns of table "v_team_tournament_results" +""" +enum v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_max_arguments_columns { + """column name""" + team_kdr +} + +""" +select "v_team_tournament_results_aggregate_bool_exp_min_arguments_columns" columns of table "v_team_tournament_results" +""" +enum v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_min_arguments_columns { + """column name""" + team_kdr +} + +""" +select "v_team_tournament_results_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "v_team_tournament_results" +""" +enum v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_stddev_samp_arguments_columns { + """column name""" + team_kdr +} + +""" +select "v_team_tournament_results_aggregate_bool_exp_sum_arguments_columns" columns of table "v_team_tournament_results" +""" +enum v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_sum_arguments_columns { + """column name""" + team_kdr +} + +""" +select "v_team_tournament_results_aggregate_bool_exp_var_samp_arguments_columns" columns of table "v_team_tournament_results" +""" +enum v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_var_samp_arguments_columns { + """column name""" + team_kdr +} + +"""aggregate stddev on columns""" +type v_team_tournament_results_stddev_fields { + head_to_head_match_wins: Float + head_to_head_rounds_won: Float + losses: Float + maps_lost: Float + maps_won: Float + matches_played: Float + matches_remaining: Float + rounds_lost: Float + rounds_won: Float + team_kdr: Float + total_deaths: Float + total_kills: Float + wins: Float +} + +""" +order by stddev() on columns of table "v_team_tournament_results" +""" +input v_team_tournament_results_stddev_order_by { + head_to_head_match_wins: order_by + head_to_head_rounds_won: order_by + losses: order_by + maps_lost: order_by + maps_won: order_by + matches_played: order_by + matches_remaining: order_by + rounds_lost: order_by + rounds_won: order_by + team_kdr: order_by + total_deaths: order_by + total_kills: order_by + wins: order_by +} + +"""aggregate stddev_pop on columns""" +type v_team_tournament_results_stddev_pop_fields { + head_to_head_match_wins: Float + head_to_head_rounds_won: Float + losses: Float + maps_lost: Float + maps_won: Float + matches_played: Float + matches_remaining: Float + rounds_lost: Float + rounds_won: Float + team_kdr: Float + total_deaths: Float + total_kills: Float + wins: Float +} + +""" +order by stddev_pop() on columns of table "v_team_tournament_results" +""" +input v_team_tournament_results_stddev_pop_order_by { + head_to_head_match_wins: order_by + head_to_head_rounds_won: order_by + losses: order_by + maps_lost: order_by + maps_won: order_by + matches_played: order_by + matches_remaining: order_by + rounds_lost: order_by + rounds_won: order_by + team_kdr: order_by + total_deaths: order_by + total_kills: order_by + wins: order_by +} + +"""aggregate stddev_samp on columns""" +type v_team_tournament_results_stddev_samp_fields { + head_to_head_match_wins: Float + head_to_head_rounds_won: Float + losses: Float + maps_lost: Float + maps_won: Float + matches_played: Float + matches_remaining: Float + rounds_lost: Float + rounds_won: Float + team_kdr: Float + total_deaths: Float + total_kills: Float + wins: Float +} + +""" +order by stddev_samp() on columns of table "v_team_tournament_results" +""" +input v_team_tournament_results_stddev_samp_order_by { + head_to_head_match_wins: order_by + head_to_head_rounds_won: order_by + losses: order_by + maps_lost: order_by + maps_won: order_by + matches_played: order_by + matches_remaining: order_by + rounds_lost: order_by + rounds_won: order_by + team_kdr: order_by + total_deaths: order_by + total_kills: order_by + wins: order_by +} + +""" +Streaming cursor of the table "v_team_tournament_results" +""" +input v_team_tournament_results_stream_cursor_input { + """Stream column input with initial value""" + initial_value: v_team_tournament_results_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input v_team_tournament_results_stream_cursor_value_input { + head_to_head_match_wins: Int + head_to_head_rounds_won: Int + losses: Int + maps_lost: Int + maps_won: Int + matches_played: Int + matches_remaining: Int + rounds_lost: Int + rounds_won: Int + team_kdr: float8 + total_deaths: Int + total_kills: Int + tournament_id: uuid + tournament_team_id: uuid + wins: Int +} + +"""aggregate sum on columns""" +type v_team_tournament_results_sum_fields { + head_to_head_match_wins: Int + head_to_head_rounds_won: Int + losses: Int + maps_lost: Int + maps_won: Int + matches_played: Int + matches_remaining: Int + rounds_lost: Int + rounds_won: Int + team_kdr: float8 + total_deaths: Int + total_kills: Int + wins: Int +} + +""" +order by sum() on columns of table "v_team_tournament_results" +""" +input v_team_tournament_results_sum_order_by { + head_to_head_match_wins: order_by + head_to_head_rounds_won: order_by + losses: order_by + maps_lost: order_by + maps_won: order_by + matches_played: order_by + matches_remaining: order_by + rounds_lost: order_by + rounds_won: order_by + team_kdr: order_by + total_deaths: order_by + total_kills: order_by + wins: order_by +} + +"""aggregate var_pop on columns""" +type v_team_tournament_results_var_pop_fields { + head_to_head_match_wins: Float + head_to_head_rounds_won: Float + losses: Float + maps_lost: Float + maps_won: Float + matches_played: Float + matches_remaining: Float + rounds_lost: Float + rounds_won: Float + team_kdr: Float + total_deaths: Float + total_kills: Float + wins: Float +} + +""" +order by var_pop() on columns of table "v_team_tournament_results" +""" +input v_team_tournament_results_var_pop_order_by { + head_to_head_match_wins: order_by + head_to_head_rounds_won: order_by + losses: order_by + maps_lost: order_by + maps_won: order_by + matches_played: order_by + matches_remaining: order_by + rounds_lost: order_by + rounds_won: order_by + team_kdr: order_by + total_deaths: order_by + total_kills: order_by + wins: order_by +} + +"""aggregate var_samp on columns""" +type v_team_tournament_results_var_samp_fields { + head_to_head_match_wins: Float + head_to_head_rounds_won: Float + losses: Float + maps_lost: Float + maps_won: Float + matches_played: Float + matches_remaining: Float + rounds_lost: Float + rounds_won: Float + team_kdr: Float + total_deaths: Float + total_kills: Float + wins: Float +} + +""" +order by var_samp() on columns of table "v_team_tournament_results" +""" +input v_team_tournament_results_var_samp_order_by { + head_to_head_match_wins: order_by + head_to_head_rounds_won: order_by + losses: order_by + maps_lost: order_by + maps_won: order_by + matches_played: order_by + matches_remaining: order_by + rounds_lost: order_by + rounds_won: order_by + team_kdr: order_by + total_deaths: order_by + total_kills: order_by + wins: order_by +} + +"""aggregate variance on columns""" +type v_team_tournament_results_variance_fields { + head_to_head_match_wins: Float + head_to_head_rounds_won: Float + losses: Float + maps_lost: Float + maps_won: Float + matches_played: Float + matches_remaining: Float + rounds_lost: Float + rounds_won: Float + team_kdr: Float + total_deaths: Float + total_kills: Float + wins: Float +} + +""" +order by variance() on columns of table "v_team_tournament_results" +""" +input v_team_tournament_results_variance_order_by { + head_to_head_match_wins: order_by + head_to_head_rounds_won: order_by + losses: order_by + maps_lost: order_by + maps_won: order_by + matches_played: order_by + matches_remaining: order_by + rounds_lost: order_by + rounds_won: order_by + team_kdr: order_by + total_deaths: order_by + total_kills: order_by + wins: order_by +} + +""" +columns and relationships of "v_tournament_player_stats" +""" +type v_tournament_player_stats { + assists: Int + deaths: Int + headshot_percentage: float8 + headshots: Int + kdr: float8 + kills: Int + matches_played: Int + + """An object relationship""" + player: players + player_steam_id: bigint + + """An object relationship""" + tournament: tournaments + tournament_id: uuid +} + +""" +aggregated selection of "v_tournament_player_stats" +""" +type v_tournament_player_stats_aggregate { + aggregate: v_tournament_player_stats_aggregate_fields + nodes: [v_tournament_player_stats!]! +} + +input v_tournament_player_stats_aggregate_bool_exp { + avg: v_tournament_player_stats_aggregate_bool_exp_avg + corr: v_tournament_player_stats_aggregate_bool_exp_corr + count: v_tournament_player_stats_aggregate_bool_exp_count + covar_samp: v_tournament_player_stats_aggregate_bool_exp_covar_samp + max: v_tournament_player_stats_aggregate_bool_exp_max + min: v_tournament_player_stats_aggregate_bool_exp_min + stddev_samp: v_tournament_player_stats_aggregate_bool_exp_stddev_samp + sum: v_tournament_player_stats_aggregate_bool_exp_sum + var_samp: v_tournament_player_stats_aggregate_bool_exp_var_samp +} + +input v_tournament_player_stats_aggregate_bool_exp_avg { + arguments: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_avg_arguments_columns! + distinct: Boolean + filter: v_tournament_player_stats_bool_exp + predicate: float8_comparison_exp! +} + +input v_tournament_player_stats_aggregate_bool_exp_corr { + arguments: v_tournament_player_stats_aggregate_bool_exp_corr_arguments! + distinct: Boolean + filter: v_tournament_player_stats_bool_exp + predicate: float8_comparison_exp! +} + +input v_tournament_player_stats_aggregate_bool_exp_corr_arguments { + X: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_corr_arguments_columns! + Y: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_corr_arguments_columns! +} + +input v_tournament_player_stats_aggregate_bool_exp_count { + arguments: [v_tournament_player_stats_select_column!] + distinct: Boolean + filter: v_tournament_player_stats_bool_exp + predicate: Int_comparison_exp! +} + +input v_tournament_player_stats_aggregate_bool_exp_covar_samp { + arguments: v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments! + distinct: Boolean + filter: v_tournament_player_stats_bool_exp + predicate: float8_comparison_exp! +} + +input v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments { + X: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments_columns! + Y: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments_columns! +} + +input v_tournament_player_stats_aggregate_bool_exp_max { + arguments: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_max_arguments_columns! + distinct: Boolean + filter: v_tournament_player_stats_bool_exp + predicate: float8_comparison_exp! +} + +input v_tournament_player_stats_aggregate_bool_exp_min { + arguments: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_min_arguments_columns! + distinct: Boolean + filter: v_tournament_player_stats_bool_exp + predicate: float8_comparison_exp! +} + +input v_tournament_player_stats_aggregate_bool_exp_stddev_samp { + arguments: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns! + distinct: Boolean + filter: v_tournament_player_stats_bool_exp + predicate: float8_comparison_exp! +} + +input v_tournament_player_stats_aggregate_bool_exp_sum { + arguments: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_sum_arguments_columns! + distinct: Boolean + filter: v_tournament_player_stats_bool_exp + predicate: float8_comparison_exp! +} + +input v_tournament_player_stats_aggregate_bool_exp_var_samp { + arguments: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_var_samp_arguments_columns! + distinct: Boolean + filter: v_tournament_player_stats_bool_exp + predicate: float8_comparison_exp! +} + +""" +aggregate fields of "v_tournament_player_stats" +""" +type v_tournament_player_stats_aggregate_fields { + avg: v_tournament_player_stats_avg_fields + count(columns: [v_tournament_player_stats_select_column!], distinct: Boolean): Int! + max: v_tournament_player_stats_max_fields + min: v_tournament_player_stats_min_fields + stddev: v_tournament_player_stats_stddev_fields + stddev_pop: v_tournament_player_stats_stddev_pop_fields + stddev_samp: v_tournament_player_stats_stddev_samp_fields + sum: v_tournament_player_stats_sum_fields + var_pop: v_tournament_player_stats_var_pop_fields + var_samp: v_tournament_player_stats_var_samp_fields + variance: v_tournament_player_stats_variance_fields +} + +""" +order by aggregate values of table "v_tournament_player_stats" +""" +input v_tournament_player_stats_aggregate_order_by { + avg: v_tournament_player_stats_avg_order_by + count: order_by + max: v_tournament_player_stats_max_order_by + min: v_tournament_player_stats_min_order_by + stddev: v_tournament_player_stats_stddev_order_by + stddev_pop: v_tournament_player_stats_stddev_pop_order_by + stddev_samp: v_tournament_player_stats_stddev_samp_order_by + sum: v_tournament_player_stats_sum_order_by + var_pop: v_tournament_player_stats_var_pop_order_by + var_samp: v_tournament_player_stats_var_samp_order_by + variance: v_tournament_player_stats_variance_order_by +} + +""" +input type for inserting array relation for remote table "v_tournament_player_stats" +""" +input v_tournament_player_stats_arr_rel_insert_input { + data: [v_tournament_player_stats_insert_input!]! +} + +"""aggregate avg on columns""" +type v_tournament_player_stats_avg_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kdr: Float + kills: Float + matches_played: Float + player_steam_id: Float +} + +""" +order by avg() on columns of table "v_tournament_player_stats" +""" +input v_tournament_player_stats_avg_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "v_tournament_player_stats". All fields are combined with a logical 'AND'. +""" +input v_tournament_player_stats_bool_exp { + _and: [v_tournament_player_stats_bool_exp!] + _not: v_tournament_player_stats_bool_exp + _or: [v_tournament_player_stats_bool_exp!] + assists: Int_comparison_exp + deaths: Int_comparison_exp + headshot_percentage: float8_comparison_exp + headshots: Int_comparison_exp + kdr: float8_comparison_exp + kills: Int_comparison_exp + matches_played: Int_comparison_exp + player: players_bool_exp + player_steam_id: bigint_comparison_exp + tournament: tournaments_bool_exp + tournament_id: uuid_comparison_exp +} + +""" +input type for inserting data into table "v_tournament_player_stats" +""" +input v_tournament_player_stats_insert_input { + assists: Int + deaths: Int + headshot_percentage: float8 + headshots: Int + kdr: float8 + kills: Int + matches_played: Int + player: players_obj_rel_insert_input + player_steam_id: bigint + tournament: tournaments_obj_rel_insert_input + tournament_id: uuid +} + +"""aggregate max on columns""" +type v_tournament_player_stats_max_fields { + assists: Int + deaths: Int + headshot_percentage: float8 + headshots: Int + kdr: float8 + kills: Int + matches_played: Int + player_steam_id: bigint + tournament_id: uuid +} + +""" +order by max() on columns of table "v_tournament_player_stats" +""" +input v_tournament_player_stats_max_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by + tournament_id: order_by +} + +"""aggregate min on columns""" +type v_tournament_player_stats_min_fields { + assists: Int + deaths: Int + headshot_percentage: float8 + headshots: Int + kdr: float8 + kills: Int + matches_played: Int + player_steam_id: bigint + tournament_id: uuid +} + +""" +order by min() on columns of table "v_tournament_player_stats" +""" +input v_tournament_player_stats_min_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by + tournament_id: order_by +} + +"""Ordering options when selecting data from "v_tournament_player_stats".""" +input v_tournament_player_stats_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player: players_order_by + player_steam_id: order_by + tournament: tournaments_order_by + tournament_id: order_by +} + +""" +select columns of table "v_tournament_player_stats" +""" +enum v_tournament_player_stats_select_column { + """column name""" + assists + + """column name""" + deaths + + """column name""" + headshot_percentage + + """column name""" + headshots + + """column name""" + kdr + + """column name""" + kills + + """column name""" + matches_played + + """column name""" + player_steam_id + + """column name""" + tournament_id +} + +""" +select "v_tournament_player_stats_aggregate_bool_exp_avg_arguments_columns" columns of table "v_tournament_player_stats" +""" +enum v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_avg_arguments_columns { + """column name""" + headshot_percentage + + """column name""" + kdr +} + +""" +select "v_tournament_player_stats_aggregate_bool_exp_corr_arguments_columns" columns of table "v_tournament_player_stats" +""" +enum v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_corr_arguments_columns { + """column name""" + headshot_percentage + + """column name""" + kdr +} + +""" +select "v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "v_tournament_player_stats" +""" +enum v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments_columns { + """column name""" + headshot_percentage + + """column name""" + kdr +} + +""" +select "v_tournament_player_stats_aggregate_bool_exp_max_arguments_columns" columns of table "v_tournament_player_stats" +""" +enum v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_max_arguments_columns { + """column name""" + headshot_percentage + + """column name""" + kdr +} + +""" +select "v_tournament_player_stats_aggregate_bool_exp_min_arguments_columns" columns of table "v_tournament_player_stats" +""" +enum v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_min_arguments_columns { + """column name""" + headshot_percentage + + """column name""" + kdr +} + +""" +select "v_tournament_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "v_tournament_player_stats" +""" +enum v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns { + """column name""" + headshot_percentage + + """column name""" + kdr +} + +""" +select "v_tournament_player_stats_aggregate_bool_exp_sum_arguments_columns" columns of table "v_tournament_player_stats" +""" +enum v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_sum_arguments_columns { + """column name""" + headshot_percentage + + """column name""" + kdr +} + +""" +select "v_tournament_player_stats_aggregate_bool_exp_var_samp_arguments_columns" columns of table "v_tournament_player_stats" +""" +enum v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_var_samp_arguments_columns { + """column name""" + headshot_percentage + + """column name""" + kdr +} + +"""aggregate stddev on columns""" +type v_tournament_player_stats_stddev_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kdr: Float + kills: Float + matches_played: Float + player_steam_id: Float +} + +""" +order by stddev() on columns of table "v_tournament_player_stats" +""" +input v_tournament_player_stats_stddev_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type v_tournament_player_stats_stddev_pop_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kdr: Float + kills: Float + matches_played: Float + player_steam_id: Float +} + +""" +order by stddev_pop() on columns of table "v_tournament_player_stats" +""" +input v_tournament_player_stats_stddev_pop_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type v_tournament_player_stats_stddev_samp_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kdr: Float + kills: Float + matches_played: Float + player_steam_id: Float +} + +""" +order by stddev_samp() on columns of table "v_tournament_player_stats" +""" +input v_tournament_player_stats_stddev_samp_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + +""" +Streaming cursor of the table "v_tournament_player_stats" +""" +input v_tournament_player_stats_stream_cursor_input { + """Stream column input with initial value""" + initial_value: v_tournament_player_stats_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input v_tournament_player_stats_stream_cursor_value_input { + assists: Int + deaths: Int + headshot_percentage: float8 + headshots: Int + kdr: float8 + kills: Int + matches_played: Int + player_steam_id: bigint + tournament_id: uuid +} + +"""aggregate sum on columns""" +type v_tournament_player_stats_sum_fields { + assists: Int + deaths: Int + headshot_percentage: float8 + headshots: Int + kdr: float8 + kills: Int + matches_played: Int + player_steam_id: bigint +} + +""" +order by sum() on columns of table "v_tournament_player_stats" +""" +input v_tournament_player_stats_sum_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + +"""aggregate var_pop on columns""" +type v_tournament_player_stats_var_pop_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kdr: Float + kills: Float + matches_played: Float + player_steam_id: Float +} + +""" +order by var_pop() on columns of table "v_tournament_player_stats" +""" +input v_tournament_player_stats_var_pop_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + +"""aggregate var_samp on columns""" +type v_tournament_player_stats_var_samp_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kdr: Float + kills: Float + matches_played: Float + player_steam_id: Float +} + +""" +order by var_samp() on columns of table "v_tournament_player_stats" +""" +input v_tournament_player_stats_var_samp_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + +"""aggregate variance on columns""" +type v_tournament_player_stats_variance_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kdr: Float + kills: Float + matches_played: Float + player_steam_id: Float +} + +""" +order by variance() on columns of table "v_tournament_player_stats" +""" +input v_tournament_player_stats_variance_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} \ No newline at end of file diff --git a/generated/schema.ts b/generated/schema.ts new file mode 100644 index 00000000..28eacda2 --- /dev/null +++ b/generated/schema.ts @@ -0,0 +1,157254 @@ +// @ts-nocheck +/* istanbul ignore file */ +/* tslint:disable */ +/* eslint-disable */ + +export type Scalars = { + Boolean: boolean, + Float: number, + Int: number, + String: string, + _uuid: any, + bigint: any, + bytea: any, + float8: any, + inet: any, + json: any, + jsonb: any, + numeric: any, + smallint: any, + time: any, + timestamp: any, + timestamptz: any, + uuid: any, +} + +export interface ActiveConnection { + application_name: (Scalars['String'] | null) + client_addr: (Scalars['String'] | null) + pid: Scalars['Int'] + query: Scalars['String'] + query_start: (Scalars['timestamp'] | null) + state: (Scalars['String'] | null) + usename: (Scalars['String'] | null) + __typename: 'ActiveConnection' +} + +export interface ActiveQuery { + application_name: (Scalars['String'] | null) + client_addr: (Scalars['String'] | null) + duration_seconds: Scalars['Float'] + pid: Scalars['Int'] + query: Scalars['String'] + query_start: Scalars['timestamp'] + state: Scalars['String'] + usename: Scalars['String'] + wait_event: (Scalars['String'] | null) + wait_event_type: (Scalars['String'] | null) + __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' +} + +export interface Award { + allow_multiple: Scalars['Boolean'] + created_at: Scalars['String'] + created_by_steam_id: (Scalars['String'] | null) + description: (Scalars['String'] | null) + event_id: (Scalars['uuid'] | null) + id: Scalars['uuid'] + image_url: (Scalars['String'] | null) + league_season_id: (Scalars['uuid'] | null) + name: Scalars['String'] + season_id: (Scalars['uuid'] | null) + silhouette: (Scalars['Int'] | null) + system_key: (Scalars['String'] | null) + tier: Scalars['String'] + tournament_id: (Scalars['uuid'] | null) + updated_at: Scalars['String'] + __typename: 'Award' +} + +export interface AwardRecipient { + award_id: Scalars['uuid'] + awarded_by_steam_id: (Scalars['String'] | null) + created_at: Scalars['String'] + id: Scalars['uuid'] + note: (Scalars['String'] | null) + placement: (Scalars['Int'] | null) + player_steam_id: (Scalars['String'] | null) + source: Scalars['String'] + team_id: (Scalars['uuid'] | null) + tournament_id: (Scalars['uuid'] | null) + tournament_team_id: (Scalars['uuid'] | null) + __typename: 'AwardRecipient' +} + +export interface ConnectionByState { + count: Scalars['Int'] + state: Scalars['String'] + wait_event_type: (Scalars['String'] | null) + waiting_count: Scalars['Int'] + __typename: 'ConnectionByState' +} + +export interface ConnectionStats { + active: Scalars['Int'] + by_state: (ConnectionByState | null)[] + idle: Scalars['Int'] + idle_in_transaction: Scalars['Int'] + total: Scalars['Int'] + waiting: Scalars['Int'] + __typename: 'ConnectionStats' +} + +export interface CpuStat { + time: (Scalars['timestamp'] | null) + total: (Scalars['bigint'] | null) + used: (Scalars['bigint'] | null) + window: (Scalars['Float'] | null) + __typename: 'CpuStat' +} + +export interface CreateClipRenderOutput { + job_id: Scalars['uuid'] + success: Scalars['Boolean'] + __typename: 'CreateClipRenderOutput' +} + +export interface CreateDraftGameOutput { + draftGameId: Scalars['uuid'] + __typename: 'CreateDraftGameOutput' +} + +export interface CreateScheduledMatchOutput { + matchId: Scalars['uuid'] + __typename: 'CreateScheduledMatchOutput' +} + +export interface DatabaseStats { + blks_hit: Scalars['Int'] + blks_read: Scalars['Int'] + cache_hit_ratio: Scalars['Float'] + conflicts: Scalars['Int'] + datname: Scalars['String'] + deadlocks: Scalars['Int'] + numbackends: Scalars['Int'] + tup_deleted: Scalars['Int'] + tup_fetched: Scalars['Int'] + tup_inserted: Scalars['Int'] + tup_returned: Scalars['Int'] + tup_updated: Scalars['Int'] + xact_commit: Scalars['Int'] + xact_rollback: Scalars['Int'] + __typename: 'DatabaseStats' +} + +export interface DbStats { + calls: Scalars['Int'] + local_blks_hit: Scalars['Int'] + local_blks_read: Scalars['Int'] + max_exec_time: Scalars['Float'] + mean_exec_time: Scalars['Float'] + min_exec_time: Scalars['Float'] + query: Scalars['String'] + queryid: Scalars['String'] + shared_blks_hit: Scalars['Int'] + shared_blks_read: Scalars['Int'] + total_exec_time: Scalars['Float'] + total_rows: Scalars['Int'] + __typename: 'DbStats' +} + +export interface DedicatedSeverInfo { + id: Scalars['String'] + lastPing: Scalars['String'] + map: Scalars['String'] + players: Scalars['Int'] + __typename: 'DedicatedSeverInfo' +} + +export interface DeleteOrphansOutput { + bytes_freed: Scalars['Float'] + deleted: Scalars['Int'] + remaining_orphans: Scalars['Int'] + success: Scalars['Boolean'] + __typename: 'DeleteOrphansOutput' +} + +export interface DiskStat { + available: (Scalars['String'] | null) + filesystem: (Scalars['String'] | null) + mountpoint: (Scalars['String'] | null) + size: (Scalars['String'] | null) + used: (Scalars['String'] | null) + usedPercent: (Scalars['String'] | null) + __typename: 'DiskStat' +} + +export interface DiskStats { + disks: ((DiskStat | null)[] | null) + time: (Scalars['timestamp'] | null) + __typename: 'DiskStats' +} + +export interface DraftGamePreviewOutput { + accepted_count: (Scalars['Int'] | null) + access: (Scalars['String'] | null) + capacity: (Scalars['Int'] | null) + host_avatar_url: (Scalars['String'] | null) + host_name: (Scalars['String'] | null) + host_steam_id: (Scalars['String'] | null) + id: Scalars['uuid'] + mode: (Scalars['String'] | null) + players: DraftGamePreviewPlayer[] + require_approval: (Scalars['Boolean'] | null) + status: (Scalars['String'] | null) + type: (Scalars['String'] | null) + __typename: 'DraftGamePreviewOutput' +} + +export interface DraftGamePreviewPlayer { + avatar_url: (Scalars['String'] | null) + name: (Scalars['String'] | null) + status: (Scalars['String'] | null) + steam_id: Scalars['String'] + __typename: 'DraftGamePreviewPlayer' +} + +export interface FaceitTestOutput { + dataApi: FaceitTestResult + downloadApi: FaceitTestResult + __typename: 'FaceitTestOutput' +} + +export interface FaceitTestResult { + detail: Scalars['String'] + ok: (Scalars['Boolean'] | null) + __typename: 'FaceitTestResult' +} + +export interface FileContentResponse { + content: Scalars['String'] + path: Scalars['String'] + size: Scalars['bigint'] + __typename: 'FileContentResponse' +} + +export interface FileItem { + isDirectory: Scalars['Boolean'] + modified: (Scalars['timestamp'] | null) + name: Scalars['String'] + path: Scalars['String'] + size: (Scalars['bigint'] | null) + type: Scalars['String'] + __typename: 'FileItem' +} + +export interface FileListResponse { + currentPath: Scalars['String'] + items: FileItem[] + __typename: 'FileListResponse' +} + +export interface GetTestUploadResponse { + error: (Scalars['String'] | null) + link: (Scalars['String'] | null) + __typename: 'GetTestUploadResponse' +} + +export interface GpuDeviceStat { + index: (Scalars['Int'] | null) + memory_mb: (Scalars['Int'] | null) + memory_used_mb: (Scalars['Int'] | null) + name: (Scalars['String'] | null) + power_w: (Scalars['Int'] | null) + temperature_c: (Scalars['Int'] | null) + utilization_percent: (Scalars['Int'] | null) + __typename: 'GpuDeviceStat' +} + +export interface GpuStats { + devices: ((GpuDeviceStat | null)[] | null) + time: (Scalars['timestamp'] | null) + __typename: 'GpuStats' +} + +export interface HighlightPresetAvailability { + best_round: Scalars['Boolean'] + has_demo: Scalars['Boolean'] + knife: Scalars['Boolean'] + multikills: Scalars['Boolean'] + recap: Scalars['Boolean'] + __typename: 'HighlightPresetAvailability' +} + +export interface HypertableInfo { + compression_enabled: Scalars['Boolean'] + hypertable_name: Scalars['String'] + num_chunks: Scalars['Int'] + __typename: 'HypertableInfo' +} + +export interface IndexIOStat { + idx_blks_hit: Scalars['Int'] + idx_blks_read: Scalars['Int'] + indexname: Scalars['String'] + schemaname: Scalars['String'] + tablename: Scalars['String'] + __typename: 'IndexIOStat' +} + +export interface IndexStat { + idx_scan: Scalars['Int'] + idx_tup_fetch: Scalars['Int'] + idx_tup_read: Scalars['Int'] + index_size: Scalars['Int'] + indexname: Scalars['String'] + schemaname: Scalars['String'] + table_size: Scalars['Int'] + tablename: Scalars['String'] + __typename: 'IndexStat' +} + +export interface KickResult { + kicked: Scalars['Boolean'] + message: (Scalars['String'] | null) + __typename: 'KickResult' +} + +export interface LiveSpecGsi { + map_name: (Scalars['String'] | null) + map_phase: (Scalars['String'] | null) + round_number: (Scalars['Int'] | null) + round_phase: (Scalars['String'] | null) + spec_slots: LiveSpecSlot[] + spectated_steam_id: (Scalars['String'] | null) + team_ct_name: (Scalars['String'] | null) + team_ct_score: (Scalars['Int'] | null) + team_t_name: (Scalars['String'] | null) + team_t_score: (Scalars['Int'] | null) + __typename: 'LiveSpecGsi' +} + +export interface LiveSpecSlot { + alive: Scalars['Boolean'] + health: Scalars['Int'] + name: (Scalars['String'] | null) + slot: Scalars['Int'] + steam_id: Scalars['String'] + team: (Scalars['String'] | null) + __typename: 'LiveSpecSlot' +} + +export interface LiveStreamSpecState { + gsi: (LiveSpecGsi | null) + __typename: 'LiveStreamSpecState' +} + +export interface LockInfo { + granted: Scalars['Boolean'] + locktype: Scalars['String'] + mode: Scalars['String'] + pid: Scalars['Int'] + query: (Scalars['String'] | null) + relation: (Scalars['String'] | null) + usename: (Scalars['String'] | null) + __typename: 'LockInfo' +} + +export interface MapCalloutSyncOutput { + callouts: Scalars['Int'] + maps: Scalars['Int'] + __typename: 'MapCalloutSyncOutput' +} + +export interface MeResponse { + avatar_url: Scalars['String'] + country: (Scalars['String'] | null) + discord_id: (Scalars['String'] | null) + language: (Scalars['String'] | null) + name: Scalars['String'] + player: (players | null) + profile_url: (Scalars['String'] | null) + role: Scalars['String'] + steam_id: Scalars['String'] + __typename: 'MeResponse' +} + +export interface MemoryStat { + time: (Scalars['timestamp'] | null) + total: (Scalars['bigint'] | null) + used: (Scalars['bigint'] | null) + __typename: 'MemoryStat' +} + +export interface NetworkStats { + nics: ((NicStat | null)[] | null) + time: (Scalars['timestamp'] | null) + __typename: 'NetworkStats' +} + +export interface NewsPost { + author_steam_id: (Scalars['String'] | null) + content_markdown: Scalars['String'] + cover_image_url: (Scalars['String'] | null) + created_at: Scalars['String'] + id: Scalars['uuid'] + published_at: (Scalars['String'] | null) + slug: Scalars['String'] + status: Scalars['String'] + teaser: (Scalars['String'] | null) + title: Scalars['String'] + updated_at: Scalars['String'] + view_count: Scalars['bigint'] + __typename: 'NewsPost' +} + +export interface NicStat { + name: (Scalars['String'] | null) + rx: (Scalars['bigint'] | null) + tx: (Scalars['bigint'] | null) + __typename: 'NicStat' +} + +export interface NodeStats { + cpu: (CpuStat | null) + disks: ((DiskStats | null)[] | null) + gpu: ((GpuStats | null)[] | null) + memory: (MemoryStat | null) + network: ((NetworkStats | null)[] | null) + node: Scalars['String'] + __typename: 'NodeStats' +} + +export interface OrphanObject { + key: Scalars['String'] + size: Scalars['Float'] + __typename: 'OrphanObject' +} + +export interface OrphanScanResultOutput { + bucket: (Scalars['String'] | null) + clip_bytes: Scalars['Float'] + clip_objects: Scalars['Int'] + demo_bytes: Scalars['Float'] + demo_objects: Scalars['Int'] + found: Scalars['Boolean'] + orphan_bytes: Scalars['Float'] + orphan_objects: Scalars['Int'] + orphans: OrphanObject[] + other_bytes: Scalars['Float'] + other_objects: Scalars['Int'] + scanned_at: (Scalars['String'] | null) + scanning: Scalars['Boolean'] + total_bytes: Scalars['Float'] + total_objects: Scalars['Int'] + tracked_bytes: Scalars['Float'] + tracked_objects: Scalars['Int'] + __typename: 'OrphanScanResultOutput' +} + +export interface PendingMatchImportActionOutput { + error: (Scalars['String'] | null) + success: Scalars['Boolean'] + __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) + name: Scalars['String'] + node: Scalars['String'] + __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' +} + +export interface QueryDetail { + explain_plan: (Scalars['String'] | null) + query: Scalars['String'] + queryid: Scalars['String'] + stats: QueryStat + __typename: 'QueryDetail' +} + +export interface QueryStat { + cache_hit_ratio: (Scalars['Float'] | null) + calls: Scalars['Int'] + local_blks_hit: Scalars['Int'] + local_blks_read: Scalars['Int'] + max_exec_time: Scalars['Float'] + mean_exec_time: Scalars['Float'] + min_exec_time: Scalars['Float'] + query: Scalars['String'] + queryid: Scalars['String'] + shared_blks_hit: Scalars['Int'] + shared_blks_read: Scalars['Int'] + stddev_exec_time: (Scalars['Float'] | null) + temp_blks_written: Scalars['Int'] + total_exec_time: Scalars['Float'] + total_rows: Scalars['Int'] + __typename: 'QueryStat' +} + +export interface RecomputeEloStartedOutput { + running: Scalars['Boolean'] + success: Scalars['Boolean'] + __typename: 'RecomputeEloStartedOutput' +} + +export interface RecomputeEloStatusOutput { + canceled: Scalars['Boolean'] + completed: Scalars['Int'] + current_match_id: (Scalars['String'] | null) + failed: Scalars['Int'] + finished_at: (Scalars['String'] | null) + running: Scalars['Boolean'] + started_at: (Scalars['String'] | null) + total: Scalars['Int'] + __typename: 'RecomputeEloStatusOutput' +} + +export interface ReconcileNodePluginsOutput { + detected: Scalars['Int'] + __typename: 'ReconcileNodePluginsOutput' +} + +export interface ReindexStartedOutput { + running: Scalars['Boolean'] + success: Scalars['Boolean'] + __typename: 'ReindexStartedOutput' +} + +export interface ReindexStatusOutput { + canceled: Scalars['Boolean'] + completed: Scalars['Int'] + current_steam_id: (Scalars['String'] | null) + failed: Scalars['Int'] + finished_at: (Scalars['String'] | null) + running: Scalars['Boolean'] + started_at: (Scalars['String'] | null) + total: Scalars['Int'] + __typename: 'ReindexStatusOutput' +} + +export interface ReparseAllStartedOutput { + running: Scalars['Boolean'] + success: Scalars['Boolean'] + __typename: 'ReparseAllStartedOutput' +} + +export interface ReparseAllStatusOutput { + canceled: Scalars['Boolean'] + completed: Scalars['Int'] + current_demo_id: (Scalars['String'] | null) + failed: Scalars['Int'] + finished_at: (Scalars['String'] | null) + running: Scalars['Boolean'] + started_at: (Scalars['String'] | null) + total: Scalars['Int'] + __typename: 'ReparseAllStatusOutput' +} + +export interface SanctionResult { + enforced: Scalars['Boolean'] + id: (Scalars['String'] | null) + message: (Scalars['String'] | null) + __typename: 'SanctionResult' +} + +export interface ScanStartedOutput { + scanning: Scalars['Boolean'] + success: Scalars['Boolean'] + __typename: 'ScanStartedOutput' +} + +export interface SeasonBackfillStatusOutput { + canceled: Scalars['Boolean'] + completed: Scalars['Int'] + current_match_id: (Scalars['String'] | null) + failed: Scalars['Int'] + finished_at: (Scalars['String'] | null) + running: Scalars['Boolean'] + season_id: (Scalars['String'] | null) + started_at: (Scalars['String'] | null) + total: Scalars['Int'] + __typename: 'SeasonBackfillStatusOutput' +} + +export interface ServerPlayer { + name: Scalars['String'] + steam_id: Scalars['String'] + __typename: 'ServerPlayer' +} + +export interface SetupGameServeOutput { + gameServerId: Scalars['String'] + link: Scalars['String'] + __typename: 'SetupGameServeOutput' +} + +export interface SteamMatchHistoryLinkOutput { + error: (Scalars['String'] | null) + success: Scalars['Boolean'] + __typename: 'SteamMatchHistoryLinkOutput' +} + +export interface SteamMatchHistoryPollOutput { + collected: Scalars['Int'] + error: (Scalars['String'] | null) + success: Scalars['Boolean'] + __typename: 'SteamMatchHistoryPollOutput' +} + +export interface SteamPresenceAdminStatusOutput { + bots: SteamPresenceBot[] + enabled: Scalars['Boolean'] + pool: SteamPresencePool + __typename: 'SteamPresenceAdminStatusOutput' +} + +export interface SteamPresenceBot { + assigned: Scalars['Int'] + capacity: Scalars['Int'] + guardLastWrong: Scalars['Boolean'] + guardType: (Scalars['String'] | null) + id: Scalars['String'] + needs2fa: Scalars['Boolean'] + online: Scalars['Boolean'] + steamId: (Scalars['String'] | null) + steamLevel: (Scalars['Int'] | null) + username: Scalars['String'] + watching: Scalars['Int'] + __typename: 'SteamPresenceBot' +} + +export interface SteamPresenceBotAssignment { + addUrl: (Scalars['String'] | null) + enabled: Scalars['Boolean'] + status: (Scalars['String'] | null) + steamId: (Scalars['String'] | null) + __typename: 'SteamPresenceBotAssignment' +} + +export interface SteamPresencePool { + bots: Scalars['Int'] + capacity: Scalars['Int'] + online: Scalars['Int'] + pending: Scalars['Int'] + watching: Scalars['Int'] + __typename: 'SteamPresencePool' +} + +export interface StorageStats { + summary: StorageSummary + tables: TableSizeInfo[] + __typename: 'StorageStats' +} + +export interface StorageSummary { + estimated_reclaimable_space: Scalars['Float'] + total_database_size: Scalars['Float'] + total_indexes_size: Scalars['Float'] + total_table_size: Scalars['Float'] + __typename: 'StorageSummary' +} + +export interface SuccessOutput { + success: Scalars['Boolean'] + __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'] + heap_blks_read: Scalars['Int'] + idx_blks_hit: Scalars['Int'] + idx_blks_read: Scalars['Int'] + relname: Scalars['String'] + schemaname: Scalars['String'] + __typename: 'TableIOStat' +} + +export interface TableSizeInfo { + estimated_dead_tuple_bytes: Scalars['Float'] + indexes_size: Scalars['Float'] + n_dead_tup: Scalars['Int'] + n_live_tup: Scalars['Int'] + schemaname: Scalars['String'] + table_size: Scalars['Float'] + tablename: Scalars['String'] + total_size: Scalars['Float'] + __typename: 'TableSizeInfo' +} + +export interface TableStat { + idx_scan: (Scalars['Int'] | null) + idx_tup_fetch: (Scalars['Int'] | null) + last_analyze: (Scalars['timestamp'] | null) + last_autoanalyze: (Scalars['timestamp'] | null) + last_autovacuum: (Scalars['timestamp'] | null) + last_vacuum: (Scalars['timestamp'] | null) + n_dead_tup: Scalars['Int'] + n_live_tup: Scalars['Int'] + n_tup_del: Scalars['Int'] + n_tup_hot_upd: Scalars['Int'] + n_tup_ins: Scalars['Int'] + n_tup_upd: Scalars['Int'] + relname: Scalars['String'] + schemaname: Scalars['String'] + seq_scan: Scalars['Int'] + seq_tup_read: Scalars['Int'] + __typename: 'TableStat' +} + +export interface TeamCalendarOutput { + url: Scalars['String'] + __typename: 'TeamCalendarOutput' +} + +export interface TelemetryActivityPoint { + day: Scalars['String'] + installs: Scalars['Int'] + matches: Scalars['Int'] + __typename: 'TelemetryActivityPoint' +} + +export interface TelemetryCountryCount { + country: Scalars['String'] + installs: Scalars['Int'] + __typename: 'TelemetryCountryCount' +} + +export interface TelemetryFeatureAdoption { + counted: Scalars['Int'] + enabled: Scalars['Int'] + flagged: Scalars['Int'] + installsUsing: Scalars['Int'] + key: Scalars['String'] + kind: Scalars['String'] + reporting: Scalars['Int'] + total: Scalars['Int'] + __typename: 'TelemetryFeatureAdoption' +} + +export interface TelemetryFleetTotals { + appearancesReported: Scalars['Int'] + competitionReported: Scalars['Int'] + 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'] + gpuNodes: Scalars['Int'] + leagueRegistrations: Scalars['Int'] + leagueSeasons: Scalars['Int'] + leagueSeasonsFinished: Scalars['Int'] + leagueTeams: Scalars['Int'] + mapsPlayed: Scalars['Int'] + matches: Scalars['Int'] + matchesAbandoned: Scalars['Int'] + matchesCreated: Scalars['Int'] + matchesFinished: Scalars['Int'] + matchesImported: Scalars['Int'] + matchesImportedMonth: Scalars['Int'] + matchesImportedYear: Scalars['Int'] + matchesLeague: Scalars['Int'] + matchesLive: Scalars['Int'] + matchesMonth: Scalars['Int'] + matchesScrim: Scalars['Int'] + matchesTournament: Scalars['Int'] + matchesWeek: Scalars['Int'] + matchesYear: Scalars['Int'] + outcomesReported: Scalars['Int'] + panels: Scalars['Int'] + playerAppearances: Scalars['Int'] + playersActive30d: Scalars['Int'] + playersActive7d: Scalars['Int'] + 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'] + servers: Scalars['Int'] + serversEnabled: Scalars['Int'] + teams: Scalars['Int'] + tournamentTeams: Scalars['Int'] + tournaments: Scalars['Int'] + tournamentsFinished: Scalars['Int'] + __typename: 'TelemetryFleetTotals' +} + +export interface TelemetryGrowthPoint { + installs: Scalars['Int'] + month: Scalars['String'] + __typename: 'TelemetryGrowthPoint' +} + +export interface TelemetryInstallCounts { + active24h: Scalars['Int'] + active30d: Scalars['Int'] + active7d: Scalars['Int'] + new30d: Scalars['Int'] + retained180d: Scalars['Int'] + total: Scalars['Int'] + __typename: 'TelemetryInstallCounts' +} + +export interface TelemetryMatchSourceCount { + matches: Scalars['Int'] + source: Scalars['String'] + __typename: 'TelemetryMatchSourceCount' +} + +export interface TelemetryMatchTypeCount { + matches: Scalars['Int'] + type: Scalars['String'] + __typename: 'TelemetryMatchTypeCount' +} + +export interface TelemetryRuntimeCount { + installs: Scalars['Int'] + runtime: Scalars['String'] + __typename: 'TelemetryRuntimeCount' +} + +export interface TelemetryStats { + activity: TelemetryActivityPoint[] + countries: TelemetryCountryCount[] + features: TelemetryFeatureAdoption[] + growth: TelemetryGrowthPoint[] + installs: TelemetryInstallCounts + matchSources: TelemetryMatchSourceCount[] + matchTypes: TelemetryMatchTypeCount[] + online: Scalars['Int'] + runtimes: TelemetryRuntimeCount[] + totals: TelemetryFleetTotals + utility: TelemetryUtilityTotals + utilitySources: TelemetryUtilitySourceCount[] + utilityTypes: TelemetryUtilityTypeCount[] + versions: TelemetryVersionCount[] + __typename: 'TelemetryStats' +} + +export interface TelemetryUtilitySourceCount { + lineups: Scalars['Int'] + source: Scalars['String'] + __typename: 'TelemetryUtilitySourceCount' +} + +export interface TelemetryUtilityTotals { + archived: Scalars['Int'] + attempts: Scalars['Int'] + authors: Scalars['Int'] + collections: Scalars['Int'] + demoThrows: Scalars['Int'] + demosMined: Scalars['Int'] + driftFlagged: Scalars['Int'] + driftScans: Scalars['Int'] + favorites: Scalars['Int'] + hosts: Scalars['Int'] + lineups: Scalars['Int'] + maps: Scalars['Int'] + mastered: Scalars['Int'] + metaLineups: Scalars['Int'] + month: Scalars['Int'] + pendingReview: Scalars['Int'] + playbookSteps: Scalars['Int'] + playbooks: Scalars['Int'] + practicing: Scalars['Int'] + previews: Scalars['Int'] + private: Scalars['Int'] + public: Scalars['Int'] + repairs: Scalars['Int'] + reported: Scalars['Int'] + sessions: Scalars['Int'] + sessionsFailed: Scalars['Int'] + sessionsMonth: Scalars['Int'] + sessionsWeek: Scalars['Int'] + successes: Scalars['Int'] + team: Scalars['Int'] + verified: Scalars['Int'] + votes: Scalars['Int'] + week: Scalars['Int'] + __typename: 'TelemetryUtilityTotals' +} + +export interface TelemetryUtilityTypeCount { + lineups: Scalars['Int'] + type: Scalars['String'] + __typename: 'TelemetryUtilityTypeCount' +} + +export interface TelemetryVersionCount { + installs: Scalars['Int'] + rank: Scalars['Int'] + since: Scalars['String'] + version: Scalars['String'] + __typename: 'TelemetryVersionCount' +} + +export interface TestUploadResponse { + error: (Scalars['String'] | null) + __typename: 'TestUploadResponse' +} + +export interface TimescaleJob { + hypertable_name: (Scalars['String'] | null) + job_id: Scalars['Int'] + job_type: Scalars['String'] + last_run_status: (Scalars['String'] | null) + next_start: (Scalars['timestamp'] | null) + __typename: 'TimescaleJob' +} + +export interface TimescaleStats { + chunks_count: Scalars['Int'] + hypertables: (HypertableInfo | null)[] + jobs: (TimescaleJob | null)[] + __typename: 'TimescaleStats' +} + +export interface TournamentAward { + award_id: (Scalars['uuid'] | null) + custom_name: (Scalars['String'] | null) + id: Scalars['uuid'] + image_url: (Scalars['String'] | null) + placement: Scalars['Int'] + silhouette: (Scalars['Int'] | null) + tournament_id: Scalars['uuid'] + __typename: 'TournamentAward' +} + +export interface TournamentDraftOutput { + teams_created: Scalars['Int'] + __typename: 'TournamentDraftOutput' +} + +export interface TournamentInviteCodeOutput { + code: Scalars['String'] + id: Scalars['uuid'] + __typename: 'TournamentInviteCodeOutput' +} + +export interface TournamentMatchResetImpact { + bracket_id: Scalars['uuid'] + depth: Scalars['Int'] + is_source: Scalars['Boolean'] + match_id: (Scalars['uuid'] | null) + match_number: Scalars['Int'] + match_status: (Scalars['String'] | null) + path: (Scalars['String'] | null) + round: Scalars['Int'] + stage_type: Scalars['String'] + will_delete_match: Scalars['Boolean'] + __typename: 'TournamentMatchResetImpact' +} + +export interface UtilityBlockingOutput { + degraded: (Scalars['Boolean'] | null) + message: (Scalars['String'] | null) + results: UtilityBlockingResult[] + __typename: 'UtilityBlockingOutput' +} + +export interface UtilityBlockingResult { + blocked: Scalars['Boolean'] + depth: Scalars['Float'] + transmittance: Scalars['Float'] + utility_lineup_id: Scalars['uuid'] + __typename: 'UtilityBlockingResult' +} + +export interface UtilityCalibrationOutput { + detail: (Scalars['String'] | null) + ready: Scalars['Boolean'] + status: Scalars['String'] + __typename: 'UtilityCalibrationOutput' +} + +export interface UtilityDriftScanOutput { + lineups: Scalars['Int'] + scan_id: Scalars['uuid'] + __typename: 'UtilityDriftScanOutput' +} + +export interface UtilityDrillLoadOutput { + map_name: (Scalars['String'] | null) + queued: Scalars['Int'] + reason: Scalars['String'] + sent: Scalars['Boolean'] + __typename: 'UtilityDrillLoadOutput' +} + +export interface UtilityImportError { + external_id: (Scalars['String'] | null) + index: Scalars['Int'] + reason: Scalars['String'] + __typename: 'UtilityImportError' +} + +export interface UtilityImportOutput { + dry_run: Scalars['Boolean'] + errors: UtilityImportError[] + failed: Scalars['Int'] + imported: Scalars['Int'] + total: Scalars['Int'] + updated: Scalars['Int'] + __typename: 'UtilityImportOutput' +} + +export interface UtilityLaunchSeedBackfillOutput { + done: Scalars['Boolean'] + scanned: Scalars['Int'] + seeded: Scalars['Int'] + skipped: Scalars['Int'] + __typename: 'UtilityLaunchSeedBackfillOutput' +} + +export interface UtilityLineupOutput { + id: Scalars['uuid'] + __typename: 'UtilityLineupOutput' +} + +export interface UtilityLoadOutput { + map_name: (Scalars['String'] | null) + reason: Scalars['String'] + sent: Scalars['Boolean'] + __typename: 'UtilityLoadOutput' +} + +export interface UtilityMissPatternOutput { + analysed: Scalars['Boolean'] + bias: (Scalars['String'] | null) + mean_along: (Scalars['Float'] | null) + mean_lateral: (Scalars['Float'] | null) + mean_vertical: (Scalars['Float'] | null) + message: (Scalars['String'] | null) + players: Scalars['Int'] + samples: Scalars['Int'] + __typename: 'UtilityMissPatternOutput' +} + +export interface UtilityOneWayOutput { + degraded: (Scalars['Boolean'] | null) + message: (Scalars['String'] | null) + results: UtilityOneWayResult[] + __typename: 'UtilityOneWayOutput' +} + +export interface UtilityOneWayResult { + cause: (Scalars['String'] | null) + confidence: Scalars['String'] + contested: Scalars['Boolean'] + favors: (Scalars['String'] | null) + index: Scalars['Int'] + one_way: Scalars['Boolean'] + __typename: 'UtilityOneWayResult' +} + +export interface UtilityPlaybookCoverageOutput { + degraded: (Scalars['Boolean'] | null) + message: (Scalars['String'] | null) + results: UtilityPlaybookCoverageResult[] + __typename: 'UtilityPlaybookCoverageOutput' +} + +export interface UtilityPlaybookCoverageResult { + by_step: (Scalars['Int'] | null) + covered: Scalars['Boolean'] + depth: (Scalars['Float'] | null) + index: Scalars['Int'] + transmittance: (Scalars['Float'] | null) + __typename: 'UtilityPlaybookCoverageResult' +} + +export interface UtilityPlaybookOutput { + id: Scalars['uuid'] + __typename: 'UtilityPlaybookOutput' +} + +export interface UtilityPracticeMapChangeOutput { + map_name: Scalars['String'] + queued: Scalars['Boolean'] + success: Scalars['Boolean'] + __typename: 'UtilityPracticeMapChangeOutput' +} + +export interface UtilityPracticePlanEntry { + attempts: Scalars['Int'] + difficulty: Scalars['String'] + global_attempts: Scalars['Int'] + global_landing_rate: (Scalars['Float'] | null) + global_players: Scalars['Int'] + mastered: Scalars['Boolean'] + meta_throwers: Scalars['Int'] + priority: Scalars['Float'] + reason: Scalars['String'] + successes: Scalars['Int'] + utility_lineup_id: Scalars['uuid'] + __typename: 'UtilityPracticePlanEntry' +} + +export interface UtilityPracticePlanOutput { + analysed: Scalars['Boolean'] + entries: UtilityPracticePlanEntry[] + message: (Scalars['String'] | null) + __typename: 'UtilityPracticePlanOutput' +} + +export interface UtilityPracticeServer { + held_by: (Scalars['String'] | null) + id: Scalars['uuid'] + in_use: Scalars['Boolean'] + label: Scalars['String'] + region: Scalars['String'] + __typename: 'UtilityPracticeServer' +} + +export interface UtilityPracticeServersOutput { + servers: UtilityPracticeServer[] + __typename: 'UtilityPracticeServersOutput' +} + +export interface UtilityPracticeSessionOutput { + id: Scalars['uuid'] + invite_code: (Scalars['String'] | null) + match_id: (Scalars['uuid'] | null) + status: (Scalars['String'] | null) + __typename: 'UtilityPracticeSessionOutput' +} + +export interface UtilityPracticeWhereOutput { + map_name: (Scalars['String'] | null) + on_server: Scalars['Boolean'] + session_id: (Scalars['uuid'] | null) + switching: Scalars['Boolean'] + __typename: 'UtilityPracticeWhereOutput' +} + +export interface UtilityPurgeOutput { + dry_run: Scalars['Boolean'] + lineups: Scalars['Int'] + origin_source: Scalars['String'] + __typename: 'UtilityPurgeOutput' +} + +export interface UtilityRemineOutput { + demos: Scalars['Int'] + done: Scalars['Boolean'] + throws: Scalars['Int'] + __typename: 'UtilityRemineOutput' +} + +export interface UtilityRenderClearOutput { + cleared: Scalars['Int'] + __typename: 'UtilityRenderClearOutput' +} + +export interface UtilityRenderQueueOutput { + reason: (Scalars['String'] | null) + render_id: (Scalars['uuid'] | null) + status: Scalars['String'] + success: Scalars['Boolean'] + __typename: 'UtilityRenderQueueOutput' +} + +export interface UtilitySightlineOutput { + degraded: (Scalars['Boolean'] | null) + message: (Scalars['String'] | null) + results: UtilitySightlineResult[] + threshold: Scalars['Float'] + __typename: 'UtilitySightlineOutput' +} + +export interface UtilitySightlineResult { + blocked: Scalars['Boolean'] + blocked_by: (Scalars['String'] | null) + depth: Scalars['Float'] + index: Scalars['Int'] + transmittance: Scalars['Float'] + world_blocked: Scalars['Boolean'] + __typename: 'UtilitySightlineResult' +} + +export interface UtilitySolveOutput { + accepted: Scalars['Boolean'] + message: (Scalars['String'] | null) + status: Scalars['String'] + __typename: 'UtilitySolveOutput' +} + +export interface UtilityTeamUtilityEntry { + landed: Scalars['Int'] + players: Scalars['Int'] + thrown: Scalars['Int'] + utility_lineup_id: Scalars['uuid'] + __typename: 'UtilityTeamUtilityEntry' +} + +export interface UtilityTeamUtilityOutput { + analysed: Scalars['Boolean'] + entries: UtilityTeamUtilityEntry[] + message: (Scalars['String'] | null) + __typename: 'UtilityTeamUtilityOutput' +} + +export interface UtilityUtilityReportOutput { + analysed: Scalars['Boolean'] + by_type: UtilityUtilityTypeReport[] + landed: Scalars['Int'] + matched_lineups: Scalars['Int'] + matched_meta: Scalars['Int'] + message: (Scalars['String'] | null) + radius: Scalars['Float'] + steam_id: Scalars['String'] + throws: Scalars['Int'] + __typename: 'UtilityUtilityReportOutput' +} + +export interface UtilityUtilityTypeReport { + landed: Scalars['Int'] + matched_lineups: Scalars['Int'] + matched_meta: Scalars['Int'] + throws: Scalars['Int'] + utility_type: Scalars['String'] + __typename: 'UtilityUtilityTypeReport' +} + +export interface WatchDemoOutput { + match_map_id: (Scalars['String'] | null) + session_id: Scalars['String'] + stream_url: Scalars['String'] + success: Scalars['Boolean'] + __typename: 'WatchDemoOutput' +} + +export interface WebPushPlatformCount { + devices: Scalars['Int'] + platform: Scalars['String'] + __typename: 'WebPushPlatformCount' +} + +export interface WebPushStatusOutput { + active_7d: Scalars['Int'] + configured: Scalars['Boolean'] + last_delivered_at: (Scalars['timestamptz'] | null) + managed_by_environment: Scalars['Boolean'] + never_delivered: Scalars['Int'] + new_7d: Scalars['Int'] + platforms: WebPushPlatformCount[] + players: Scalars['Int'] + subscriptions: Scalars['Int'] + __typename: 'WebPushStatusOutput' +} + + +/** columns and relationships of "_map_pool" */ +export interface _map_pool { + map_id: Scalars['uuid'] + map_pool_id: Scalars['uuid'] + __typename: '_map_pool' +} + + +/** aggregated selection of "_map_pool" */ +export interface _map_pool_aggregate { + aggregate: (_map_pool_aggregate_fields | null) + nodes: _map_pool[] + __typename: '_map_pool_aggregate' +} + + +/** aggregate fields of "_map_pool" */ +export interface _map_pool_aggregate_fields { + count: Scalars['Int'] + max: (_map_pool_max_fields | null) + min: (_map_pool_min_fields | null) + __typename: '_map_pool_aggregate_fields' +} + + +/** unique or primary key constraints on table "_map_pool" */ +export type _map_pool_constraint = 'map_pool_pkey' + + +/** aggregate max on columns */ +export interface _map_pool_max_fields { + map_id: (Scalars['uuid'] | null) + map_pool_id: (Scalars['uuid'] | null) + __typename: '_map_pool_max_fields' +} + + +/** aggregate min on columns */ +export interface _map_pool_min_fields { + map_id: (Scalars['uuid'] | null) + map_pool_id: (Scalars['uuid'] | null) + __typename: '_map_pool_min_fields' +} + + +/** response of any mutation on the table "_map_pool" */ +export interface _map_pool_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: _map_pool[] + __typename: '_map_pool_mutation_response' +} + + +/** select columns of table "_map_pool" */ +export type _map_pool_select_column = 'map_id' | 'map_pool_id' + + +/** update columns of table "_map_pool" */ +export type _map_pool_update_column = 'map_id' | 'map_pool_id' + + +/** columns and relationships of "abandoned_matches" */ +export interface abandoned_matches { + abandoned_at: Scalars['timestamptz'] + id: Scalars['uuid'] + /** An object relationship */ + match: (matches | null) + match_id: (Scalars['uuid'] | null) + steam_id: Scalars['bigint'] + __typename: 'abandoned_matches' +} + + +/** aggregated selection of "abandoned_matches" */ +export interface abandoned_matches_aggregate { + aggregate: (abandoned_matches_aggregate_fields | null) + nodes: abandoned_matches[] + __typename: 'abandoned_matches_aggregate' +} + + +/** aggregate fields of "abandoned_matches" */ +export interface abandoned_matches_aggregate_fields { + avg: (abandoned_matches_avg_fields | null) + count: Scalars['Int'] + max: (abandoned_matches_max_fields | null) + min: (abandoned_matches_min_fields | null) + stddev: (abandoned_matches_stddev_fields | null) + stddev_pop: (abandoned_matches_stddev_pop_fields | null) + stddev_samp: (abandoned_matches_stddev_samp_fields | null) + sum: (abandoned_matches_sum_fields | null) + var_pop: (abandoned_matches_var_pop_fields | null) + var_samp: (abandoned_matches_var_samp_fields | null) + variance: (abandoned_matches_variance_fields | null) + __typename: 'abandoned_matches_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface abandoned_matches_avg_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'abandoned_matches_avg_fields' +} + + +/** unique or primary key constraints on table "abandoned_matches" */ +export type abandoned_matches_constraint = 'abandoned_matches_pkey' | 'abandoned_matches_steam_id_match_id_key' + + +/** aggregate max on columns */ +export interface abandoned_matches_max_fields { + abandoned_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'abandoned_matches_max_fields' +} + + +/** aggregate min on columns */ +export interface abandoned_matches_min_fields { + abandoned_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'abandoned_matches_min_fields' +} + + +/** response of any mutation on the table "abandoned_matches" */ +export interface abandoned_matches_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: abandoned_matches[] + __typename: 'abandoned_matches_mutation_response' +} + + +/** select columns of table "abandoned_matches" */ +export type abandoned_matches_select_column = 'abandoned_at' | 'id' | 'match_id' | 'steam_id' + + +/** aggregate stddev on columns */ +export interface abandoned_matches_stddev_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'abandoned_matches_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface abandoned_matches_stddev_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'abandoned_matches_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface abandoned_matches_stddev_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'abandoned_matches_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface abandoned_matches_sum_fields { + steam_id: (Scalars['bigint'] | null) + __typename: 'abandoned_matches_sum_fields' +} + + +/** update columns of table "abandoned_matches" */ +export type abandoned_matches_update_column = 'abandoned_at' | 'id' | 'match_id' | 'steam_id' + + +/** aggregate var_pop on columns */ +export interface abandoned_matches_var_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'abandoned_matches_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface abandoned_matches_var_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'abandoned_matches_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface abandoned_matches_variance_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'abandoned_matches_variance_fields' +} + + +/** columns and relationships of "api_keys" */ +export interface api_keys { + created_at: Scalars['timestamptz'] + id: Scalars['uuid'] + label: Scalars['String'] + last_used_at: (Scalars['timestamptz'] | null) + steam_id: Scalars['bigint'] + __typename: 'api_keys' +} + + +/** aggregated selection of "api_keys" */ +export interface api_keys_aggregate { + aggregate: (api_keys_aggregate_fields | null) + nodes: api_keys[] + __typename: 'api_keys_aggregate' +} + + +/** aggregate fields of "api_keys" */ +export interface api_keys_aggregate_fields { + avg: (api_keys_avg_fields | null) + count: Scalars['Int'] + max: (api_keys_max_fields | null) + min: (api_keys_min_fields | null) + stddev: (api_keys_stddev_fields | null) + stddev_pop: (api_keys_stddev_pop_fields | null) + stddev_samp: (api_keys_stddev_samp_fields | null) + sum: (api_keys_sum_fields | null) + var_pop: (api_keys_var_pop_fields | null) + var_samp: (api_keys_var_samp_fields | null) + variance: (api_keys_variance_fields | null) + __typename: 'api_keys_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface api_keys_avg_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'api_keys_avg_fields' +} + + +/** unique or primary key constraints on table "api_keys" */ +export type api_keys_constraint = 'api_keys_pkey' + + +/** aggregate max on columns */ +export interface api_keys_max_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + label: (Scalars['String'] | null) + last_used_at: (Scalars['timestamptz'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'api_keys_max_fields' +} + + +/** aggregate min on columns */ +export interface api_keys_min_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + label: (Scalars['String'] | null) + last_used_at: (Scalars['timestamptz'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'api_keys_min_fields' +} + + +/** response of any mutation on the table "api_keys" */ +export interface api_keys_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: api_keys[] + __typename: 'api_keys_mutation_response' +} + + +/** select columns of table "api_keys" */ +export type api_keys_select_column = 'created_at' | 'id' | 'label' | 'last_used_at' | 'steam_id' + + +/** aggregate stddev on columns */ +export interface api_keys_stddev_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'api_keys_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface api_keys_stddev_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'api_keys_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface api_keys_stddev_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'api_keys_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface api_keys_sum_fields { + steam_id: (Scalars['bigint'] | null) + __typename: 'api_keys_sum_fields' +} + + +/** update columns of table "api_keys" */ +export type api_keys_update_column = 'created_at' | 'id' | 'label' | 'last_used_at' | 'steam_id' + + +/** aggregate var_pop on columns */ +export interface api_keys_var_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'api_keys_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface api_keys_var_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'api_keys_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface api_keys_variance_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'api_keys_variance_fields' +} + + +/** columns and relationships of "award_recipients" */ +export interface award_recipients { + /** An object relationship */ + award: awards + award_id: Scalars['uuid'] + /** An object relationship */ + awarded_by: (players | null) + awarded_by_steam_id: (Scalars['bigint'] | null) + created_at: Scalars['timestamptz'] + /** An object relationship */ + event: (events | null) + event_id: (Scalars['uuid'] | null) + id: Scalars['uuid'] + /** An object relationship */ + league_season: (league_seasons | null) + league_season_id: (Scalars['uuid'] | null) + note: (Scalars['String'] | null) + placement: (Scalars['Int'] | null) + placement_tier: (Scalars['String'] | null) + /** An object relationship */ + player: (players | null) + player_steam_id: (Scalars['bigint'] | null) + /** An object relationship */ + season: (seasons | null) + season_id: (Scalars['uuid'] | null) + source: e_award_sources_enum + /** An object relationship */ + team: (teams | null) + team_id: (Scalars['uuid'] | null) + /** An object relationship */ + tournament: (tournaments | null) + /** An object relationship */ + tournament_award: (tournament_awards | null) + tournament_id: (Scalars['uuid'] | null) + /** An object relationship */ + tournament_team: (tournament_teams | null) + tournament_team_id: (Scalars['uuid'] | null) + __typename: 'award_recipients' +} + + +/** aggregated selection of "award_recipients" */ +export interface award_recipients_aggregate { + aggregate: (award_recipients_aggregate_fields | null) + nodes: award_recipients[] + __typename: 'award_recipients_aggregate' +} + + +/** aggregate fields of "award_recipients" */ +export interface award_recipients_aggregate_fields { + avg: (award_recipients_avg_fields | null) + count: Scalars['Int'] + max: (award_recipients_max_fields | null) + min: (award_recipients_min_fields | null) + stddev: (award_recipients_stddev_fields | null) + stddev_pop: (award_recipients_stddev_pop_fields | null) + stddev_samp: (award_recipients_stddev_samp_fields | null) + sum: (award_recipients_sum_fields | null) + var_pop: (award_recipients_var_pop_fields | null) + var_samp: (award_recipients_var_samp_fields | null) + variance: (award_recipients_variance_fields | null) + __typename: 'award_recipients_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface award_recipients_avg_fields { + awarded_by_steam_id: (Scalars['Float'] | null) + placement: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'award_recipients_avg_fields' +} + + +/** unique or primary key constraints on table "award_recipients" */ +export type award_recipients_constraint = 'award_recipients_one_mvp_per_tournament' | 'award_recipients_pkey' | 'award_recipients_player_recipient_key' | 'award_recipients_season_player_key' | 'award_recipients_team_recipient_key' + + +/** aggregate max on columns */ +export interface award_recipients_max_fields { + 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) + team_id: (Scalars['uuid'] | null) + tournament_id: (Scalars['uuid'] | null) + tournament_team_id: (Scalars['uuid'] | null) + __typename: 'award_recipients_max_fields' +} + + +/** aggregate min on columns */ +export interface award_recipients_min_fields { + 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) + team_id: (Scalars['uuid'] | null) + tournament_id: (Scalars['uuid'] | null) + tournament_team_id: (Scalars['uuid'] | null) + __typename: 'award_recipients_min_fields' +} + + +/** response of any mutation on the table "award_recipients" */ +export interface award_recipients_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: award_recipients[] + __typename: 'award_recipients_mutation_response' +} + + +/** select columns of table "award_recipients" */ +export type award_recipients_select_column = 'award_id' | 'awarded_by_steam_id' | 'created_at' | 'event_id' | 'id' | 'league_season_id' | 'note' | 'placement' | 'placement_tier' | 'player_steam_id' | 'season_id' | 'source' | 'team_id' | 'tournament_id' | 'tournament_team_id' + + +/** aggregate stddev on columns */ +export interface award_recipients_stddev_fields { + awarded_by_steam_id: (Scalars['Float'] | null) + placement: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'award_recipients_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface award_recipients_stddev_pop_fields { + awarded_by_steam_id: (Scalars['Float'] | null) + placement: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'award_recipients_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface award_recipients_stddev_samp_fields { + awarded_by_steam_id: (Scalars['Float'] | null) + placement: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'award_recipients_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface award_recipients_sum_fields { + awarded_by_steam_id: (Scalars['bigint'] | null) + placement: (Scalars['Int'] | null) + player_steam_id: (Scalars['bigint'] | null) + __typename: 'award_recipients_sum_fields' +} + + +/** update columns of table "award_recipients" */ +export type award_recipients_update_column = 'award_id' | 'awarded_by_steam_id' | 'created_at' | 'event_id' | 'id' | 'league_season_id' | 'note' | 'placement' | 'player_steam_id' | 'season_id' | 'source' | 'team_id' | 'tournament_id' | 'tournament_team_id' + + +/** aggregate var_pop on columns */ +export interface award_recipients_var_pop_fields { + awarded_by_steam_id: (Scalars['Float'] | null) + placement: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'award_recipients_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface award_recipients_var_samp_fields { + awarded_by_steam_id: (Scalars['Float'] | null) + placement: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'award_recipients_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface award_recipients_variance_fields { + awarded_by_steam_id: (Scalars['Float'] | null) + placement: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'award_recipients_variance_fields' +} + + +/** columns and relationships of "awards" */ +export interface awards { + allow_multiple: Scalars['Boolean'] + created_at: Scalars['timestamptz'] + /** An object relationship */ + created_by: (players | null) + created_by_steam_id: (Scalars['bigint'] | null) + description: (Scalars['String'] | null) + /** An object relationship */ + event: (events | null) + event_id: (Scalars['uuid'] | null) + id: Scalars['uuid'] + image_url: (Scalars['String'] | null) + /** An object relationship */ + league_season: (league_seasons | null) + league_season_id: (Scalars['uuid'] | null) + name: Scalars['String'] + /** An array relationship */ + recipients: award_recipients[] + /** An aggregate relationship */ + recipients_aggregate: award_recipients_aggregate + /** An object relationship */ + season: (seasons | null) + season_id: (Scalars['uuid'] | null) + silhouette: (Scalars['Int'] | null) + system_key: (Scalars['String'] | null) + tier: e_award_tiers_enum + /** An object relationship */ + tournament: (tournaments | null) + /** An array relationship */ + tournament_configs: tournament_awards[] + /** An aggregate relationship */ + tournament_configs_aggregate: tournament_awards_aggregate + tournament_id: (Scalars['uuid'] | null) + updated_at: Scalars['timestamptz'] + __typename: 'awards' +} + + +/** aggregated selection of "awards" */ +export interface awards_aggregate { + aggregate: (awards_aggregate_fields | null) + nodes: awards[] + __typename: 'awards_aggregate' +} + + +/** aggregate fields of "awards" */ +export interface awards_aggregate_fields { + avg: (awards_avg_fields | null) + count: Scalars['Int'] + max: (awards_max_fields | null) + min: (awards_min_fields | null) + stddev: (awards_stddev_fields | null) + stddev_pop: (awards_stddev_pop_fields | null) + stddev_samp: (awards_stddev_samp_fields | null) + sum: (awards_sum_fields | null) + var_pop: (awards_var_pop_fields | null) + var_samp: (awards_var_samp_fields | null) + variance: (awards_variance_fields | null) + __typename: 'awards_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface awards_avg_fields { + created_by_steam_id: (Scalars['Float'] | null) + silhouette: (Scalars['Float'] | null) + __typename: 'awards_avg_fields' +} + + +/** unique or primary key constraints on table "awards" */ +export type awards_constraint = 'awards_pkey' | 'awards_system_key_key' + + +/** aggregate max on columns */ +export interface awards_max_fields { + 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) + tournament_id: (Scalars['uuid'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'awards_max_fields' +} + + +/** aggregate min on columns */ +export interface awards_min_fields { + 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) + tournament_id: (Scalars['uuid'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'awards_min_fields' +} + + +/** response of any mutation on the table "awards" */ +export interface awards_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: awards[] + __typename: 'awards_mutation_response' +} + + +/** select columns of table "awards" */ +export type awards_select_column = 'allow_multiple' | 'created_at' | 'created_by_steam_id' | 'description' | 'event_id' | 'id' | 'image_url' | 'league_season_id' | 'name' | 'season_id' | 'silhouette' | 'system_key' | 'tier' | 'tournament_id' | 'updated_at' + + +/** aggregate stddev on columns */ +export interface awards_stddev_fields { + created_by_steam_id: (Scalars['Float'] | null) + silhouette: (Scalars['Float'] | null) + __typename: 'awards_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface awards_stddev_pop_fields { + created_by_steam_id: (Scalars['Float'] | null) + silhouette: (Scalars['Float'] | null) + __typename: 'awards_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface awards_stddev_samp_fields { + created_by_steam_id: (Scalars['Float'] | null) + silhouette: (Scalars['Float'] | null) + __typename: 'awards_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface awards_sum_fields { + created_by_steam_id: (Scalars['bigint'] | null) + silhouette: (Scalars['Int'] | null) + __typename: 'awards_sum_fields' +} + + +/** update columns of table "awards" */ +export type awards_update_column = 'allow_multiple' | 'created_at' | 'created_by_steam_id' | 'description' | 'event_id' | 'id' | 'image_url' | 'league_season_id' | 'name' | 'season_id' | 'silhouette' | 'system_key' | 'tier' | 'tournament_id' | 'updated_at' + + +/** aggregate var_pop on columns */ +export interface awards_var_pop_fields { + created_by_steam_id: (Scalars['Float'] | null) + silhouette: (Scalars['Float'] | null) + __typename: 'awards_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface awards_var_samp_fields { + created_by_steam_id: (Scalars['Float'] | null) + silhouette: (Scalars['Float'] | null) + __typename: 'awards_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface awards_variance_fields { + created_by_steam_id: (Scalars['Float'] | null) + silhouette: (Scalars['Float'] | null) + __typename: 'awards_variance_fields' +} + + +/** columns and relationships of "chat_read_state" */ +export interface chat_read_state { + last_read_at: Scalars['timestamptz'] + steam_id: Scalars['bigint'] + thread: Scalars['String'] + __typename: 'chat_read_state' +} + + +/** aggregated selection of "chat_read_state" */ +export interface chat_read_state_aggregate { + aggregate: (chat_read_state_aggregate_fields | null) + nodes: chat_read_state[] + __typename: 'chat_read_state_aggregate' +} + + +/** aggregate fields of "chat_read_state" */ +export interface chat_read_state_aggregate_fields { + avg: (chat_read_state_avg_fields | null) + count: Scalars['Int'] + max: (chat_read_state_max_fields | null) + min: (chat_read_state_min_fields | null) + stddev: (chat_read_state_stddev_fields | null) + stddev_pop: (chat_read_state_stddev_pop_fields | null) + stddev_samp: (chat_read_state_stddev_samp_fields | null) + sum: (chat_read_state_sum_fields | null) + var_pop: (chat_read_state_var_pop_fields | null) + var_samp: (chat_read_state_var_samp_fields | null) + variance: (chat_read_state_variance_fields | null) + __typename: 'chat_read_state_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface chat_read_state_avg_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'chat_read_state_avg_fields' +} + + +/** unique or primary key constraints on table "chat_read_state" */ +export type chat_read_state_constraint = 'chat_read_state_pkey' + + +/** aggregate max on columns */ +export interface chat_read_state_max_fields { + last_read_at: (Scalars['timestamptz'] | null) + steam_id: (Scalars['bigint'] | null) + thread: (Scalars['String'] | null) + __typename: 'chat_read_state_max_fields' +} + + +/** aggregate min on columns */ +export interface chat_read_state_min_fields { + last_read_at: (Scalars['timestamptz'] | null) + steam_id: (Scalars['bigint'] | null) + thread: (Scalars['String'] | null) + __typename: 'chat_read_state_min_fields' +} + + +/** response of any mutation on the table "chat_read_state" */ +export interface chat_read_state_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: chat_read_state[] + __typename: 'chat_read_state_mutation_response' +} + + +/** select columns of table "chat_read_state" */ +export type chat_read_state_select_column = 'last_read_at' | 'steam_id' | 'thread' + + +/** aggregate stddev on columns */ +export interface chat_read_state_stddev_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'chat_read_state_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface chat_read_state_stddev_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'chat_read_state_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface chat_read_state_stddev_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'chat_read_state_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface chat_read_state_sum_fields { + steam_id: (Scalars['bigint'] | null) + __typename: 'chat_read_state_sum_fields' +} + + +/** update columns of table "chat_read_state" */ +export type chat_read_state_update_column = 'last_read_at' | 'steam_id' | 'thread' + + +/** aggregate var_pop on columns */ +export interface chat_read_state_var_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'chat_read_state_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface chat_read_state_var_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'chat_read_state_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface chat_read_state_variance_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'chat_read_state_variance_fields' +} + + +/** columns and relationships of "clip_render_jobs" */ +export interface clip_render_jobs { + /** An object relationship */ + clip: (match_clips | null) + clip_id: (Scalars['uuid'] | null) + 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_status_at: Scalars['timestamptz'] + /** 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'] + paused: Scalars['Boolean'] + progress: (Scalars['numeric'] | null) + session_token: Scalars['String'] + sort_index: Scalars['Int'] + spec: Scalars['jsonb'] + status: Scalars['String'] + status_history: Scalars['jsonb'] + /** An object relationship */ + user: (players | null) + user_steam_id: (Scalars['bigint'] | null) + __typename: 'clip_render_jobs' +} + + +/** aggregated selection of "clip_render_jobs" */ +export interface clip_render_jobs_aggregate { + aggregate: (clip_render_jobs_aggregate_fields | null) + nodes: clip_render_jobs[] + __typename: 'clip_render_jobs_aggregate' +} + + +/** aggregate fields of "clip_render_jobs" */ +export interface clip_render_jobs_aggregate_fields { + avg: (clip_render_jobs_avg_fields | null) + count: Scalars['Int'] + max: (clip_render_jobs_max_fields | null) + min: (clip_render_jobs_min_fields | null) + stddev: (clip_render_jobs_stddev_fields | null) + stddev_pop: (clip_render_jobs_stddev_pop_fields | null) + stddev_samp: (clip_render_jobs_stddev_samp_fields | null) + sum: (clip_render_jobs_sum_fields | null) + var_pop: (clip_render_jobs_var_pop_fields | null) + var_samp: (clip_render_jobs_var_samp_fields | null) + variance: (clip_render_jobs_variance_fields | null) + __typename: 'clip_render_jobs_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface clip_render_jobs_avg_fields { + progress: (Scalars['Float'] | null) + sort_index: (Scalars['Float'] | null) + user_steam_id: (Scalars['Float'] | null) + __typename: 'clip_render_jobs_avg_fields' +} + + +/** unique or primary key constraints on table "clip_render_jobs" */ +export type clip_render_jobs_constraint = 'clip_render_jobs_pkey' + + +/** aggregate max on columns */ +export interface clip_render_jobs_max_fields { + 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) + progress: (Scalars['numeric'] | null) + session_token: (Scalars['String'] | null) + sort_index: (Scalars['Int'] | null) + status: (Scalars['String'] | null) + user_steam_id: (Scalars['bigint'] | null) + __typename: 'clip_render_jobs_max_fields' +} + + +/** aggregate min on columns */ +export interface clip_render_jobs_min_fields { + 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) + progress: (Scalars['numeric'] | null) + session_token: (Scalars['String'] | null) + sort_index: (Scalars['Int'] | null) + status: (Scalars['String'] | null) + user_steam_id: (Scalars['bigint'] | null) + __typename: 'clip_render_jobs_min_fields' +} + + +/** response of any mutation on the table "clip_render_jobs" */ +export interface clip_render_jobs_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: clip_render_jobs[] + __typename: 'clip_render_jobs_mutation_response' +} + + +/** select columns of table "clip_render_jobs" */ +export type clip_render_jobs_select_column = 'clip_id' | 'created_at' | 'error_message' | 'game_server_node_id' | 'id' | 'k8s_job_name' | 'last_status_at' | 'match_map_demo_id' | 'match_map_id' | 'paused' | 'progress' | 'session_token' | 'sort_index' | 'spec' | 'status' | 'status_history' | 'user_steam_id' + + +/** select "clip_render_jobs_aggregate_bool_exp_bool_and_arguments_columns" columns of table "clip_render_jobs" */ +export type clip_render_jobs_select_column_clip_render_jobs_aggregate_bool_exp_bool_and_arguments_columns = 'paused' + + +/** select "clip_render_jobs_aggregate_bool_exp_bool_or_arguments_columns" columns of table "clip_render_jobs" */ +export type clip_render_jobs_select_column_clip_render_jobs_aggregate_bool_exp_bool_or_arguments_columns = 'paused' + + +/** aggregate stddev on columns */ +export interface clip_render_jobs_stddev_fields { + progress: (Scalars['Float'] | null) + sort_index: (Scalars['Float'] | null) + user_steam_id: (Scalars['Float'] | null) + __typename: 'clip_render_jobs_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface clip_render_jobs_stddev_pop_fields { + progress: (Scalars['Float'] | null) + sort_index: (Scalars['Float'] | null) + user_steam_id: (Scalars['Float'] | null) + __typename: 'clip_render_jobs_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface clip_render_jobs_stddev_samp_fields { + progress: (Scalars['Float'] | null) + sort_index: (Scalars['Float'] | null) + user_steam_id: (Scalars['Float'] | null) + __typename: 'clip_render_jobs_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface clip_render_jobs_sum_fields { + progress: (Scalars['numeric'] | null) + sort_index: (Scalars['Int'] | null) + user_steam_id: (Scalars['bigint'] | null) + __typename: 'clip_render_jobs_sum_fields' +} + + +/** update columns of table "clip_render_jobs" */ +export type clip_render_jobs_update_column = 'clip_id' | 'created_at' | 'error_message' | 'game_server_node_id' | 'id' | 'k8s_job_name' | 'last_status_at' | 'match_map_demo_id' | 'match_map_id' | 'paused' | 'progress' | 'session_token' | 'sort_index' | 'spec' | 'status' | 'status_history' | 'user_steam_id' + + +/** aggregate var_pop on columns */ +export interface clip_render_jobs_var_pop_fields { + progress: (Scalars['Float'] | null) + sort_index: (Scalars['Float'] | null) + user_steam_id: (Scalars['Float'] | null) + __typename: 'clip_render_jobs_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface clip_render_jobs_var_samp_fields { + progress: (Scalars['Float'] | null) + sort_index: (Scalars['Float'] | null) + user_steam_id: (Scalars['Float'] | null) + __typename: 'clip_render_jobs_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface clip_render_jobs_variance_fields { + progress: (Scalars['Float'] | null) + sort_index: (Scalars['Float'] | null) + user_steam_id: (Scalars['Float'] | null) + __typename: 'clip_render_jobs_variance_fields' +} + + +/** ordering argument of a cursor */ +export type cursor_ordering = 'ASC' | 'DESC' + + +/** columns and relationships of "custom_pages" */ +export interface custom_pages { + created_at: Scalars['timestamptz'] + deployments: Scalars['jsonb'] + enabled: Scalars['Boolean'] + exposed_module: Scalars['String'] + icon: (Scalars['String'] | null) + id: Scalars['uuid'] + is_default: Scalars['Boolean'] + 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'] + required_role: (e_player_roles_enum | null) + slug: Scalars['String'] + title: Scalars['String'] + updated_at: Scalars['timestamptz'] + __typename: 'custom_pages' +} + + +/** aggregated selection of "custom_pages" */ +export interface custom_pages_aggregate { + aggregate: (custom_pages_aggregate_fields | null) + nodes: custom_pages[] + __typename: 'custom_pages_aggregate' +} + + +/** aggregate fields of "custom_pages" */ +export interface custom_pages_aggregate_fields { + avg: (custom_pages_avg_fields | null) + count: Scalars['Int'] + max: (custom_pages_max_fields | null) + min: (custom_pages_min_fields | null) + stddev: (custom_pages_stddev_fields | null) + stddev_pop: (custom_pages_stddev_pop_fields | null) + stddev_samp: (custom_pages_stddev_samp_fields | null) + sum: (custom_pages_sum_fields | null) + var_pop: (custom_pages_var_pop_fields | null) + var_samp: (custom_pages_var_samp_fields | null) + variance: (custom_pages_variance_fields | null) + __typename: 'custom_pages_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface custom_pages_avg_fields { + nav_order: (Scalars['Float'] | null) + __typename: 'custom_pages_avg_fields' +} + + +/** unique or primary key constraints on table "custom_pages" */ +export type custom_pages_constraint = 'custom_pages_pkey' | 'custom_pages_plugin_slug_idx' | 'custom_pages_single_default_idx' | 'custom_pages_slug_key' + + +/** aggregate max on columns */ +export interface custom_pages_max_fields { + created_at: (Scalars['timestamptz'] | null) + exposed_module: (Scalars['String'] | null) + icon: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + 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) + slug: (Scalars['String'] | null) + title: (Scalars['String'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'custom_pages_max_fields' +} + + +/** aggregate min on columns */ +export interface custom_pages_min_fields { + created_at: (Scalars['timestamptz'] | null) + exposed_module: (Scalars['String'] | null) + icon: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + 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) + slug: (Scalars['String'] | null) + title: (Scalars['String'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'custom_pages_min_fields' +} + + +/** response of any mutation on the table "custom_pages" */ +export interface custom_pages_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: custom_pages[] + __typename: 'custom_pages_mutation_response' +} + + +/** select columns of table "custom_pages" */ +export type custom_pages_select_column = 'created_at' | '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 */ +export interface custom_pages_stddev_fields { + nav_order: (Scalars['Float'] | null) + __typename: 'custom_pages_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface custom_pages_stddev_pop_fields { + nav_order: (Scalars['Float'] | null) + __typename: 'custom_pages_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface custom_pages_stddev_samp_fields { + nav_order: (Scalars['Float'] | null) + __typename: 'custom_pages_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface custom_pages_sum_fields { + nav_order: (Scalars['Int'] | null) + __typename: 'custom_pages_sum_fields' +} + + +/** update columns of table "custom_pages" */ +export type custom_pages_update_column = 'created_at' | '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 */ +export interface custom_pages_var_pop_fields { + nav_order: (Scalars['Float'] | null) + __typename: 'custom_pages_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface custom_pages_var_samp_fields { + nav_order: (Scalars['Float'] | null) + __typename: 'custom_pages_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface custom_pages_variance_fields { + nav_order: (Scalars['Float'] | null) + __typename: 'custom_pages_variance_fields' +} + + +/** columns and relationships of "db_backups" */ +export interface db_backups { + created_at: Scalars['timestamptz'] + id: Scalars['uuid'] + name: Scalars['String'] + size: Scalars['Int'] + __typename: 'db_backups' +} + + +/** aggregated selection of "db_backups" */ +export interface db_backups_aggregate { + aggregate: (db_backups_aggregate_fields | null) + nodes: db_backups[] + __typename: 'db_backups_aggregate' +} + + +/** aggregate fields of "db_backups" */ +export interface db_backups_aggregate_fields { + avg: (db_backups_avg_fields | null) + count: Scalars['Int'] + max: (db_backups_max_fields | null) + min: (db_backups_min_fields | null) + stddev: (db_backups_stddev_fields | null) + stddev_pop: (db_backups_stddev_pop_fields | null) + stddev_samp: (db_backups_stddev_samp_fields | null) + sum: (db_backups_sum_fields | null) + var_pop: (db_backups_var_pop_fields | null) + var_samp: (db_backups_var_samp_fields | null) + variance: (db_backups_variance_fields | null) + __typename: 'db_backups_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface db_backups_avg_fields { + size: (Scalars['Float'] | null) + __typename: 'db_backups_avg_fields' +} + + +/** unique or primary key constraints on table "db_backups" */ +export type db_backups_constraint = 'db_backups_pkey' + + +/** aggregate max on columns */ +export interface db_backups_max_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + name: (Scalars['String'] | null) + size: (Scalars['Int'] | null) + __typename: 'db_backups_max_fields' +} + + +/** aggregate min on columns */ +export interface db_backups_min_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + name: (Scalars['String'] | null) + size: (Scalars['Int'] | null) + __typename: 'db_backups_min_fields' +} + + +/** response of any mutation on the table "db_backups" */ +export interface db_backups_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: db_backups[] + __typename: 'db_backups_mutation_response' +} + + +/** select columns of table "db_backups" */ +export type db_backups_select_column = 'created_at' | 'id' | 'name' | 'size' + + +/** aggregate stddev on columns */ +export interface db_backups_stddev_fields { + size: (Scalars['Float'] | null) + __typename: 'db_backups_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface db_backups_stddev_pop_fields { + size: (Scalars['Float'] | null) + __typename: 'db_backups_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface db_backups_stddev_samp_fields { + size: (Scalars['Float'] | null) + __typename: 'db_backups_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface db_backups_sum_fields { + size: (Scalars['Int'] | null) + __typename: 'db_backups_sum_fields' +} + + +/** update columns of table "db_backups" */ +export type db_backups_update_column = 'created_at' | 'id' | 'name' | 'size' + + +/** aggregate var_pop on columns */ +export interface db_backups_var_pop_fields { + size: (Scalars['Float'] | null) + __typename: 'db_backups_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface db_backups_var_samp_fields { + size: (Scalars['Float'] | null) + __typename: 'db_backups_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface db_backups_variance_fields { + size: (Scalars['Float'] | null) + __typename: 'db_backups_variance_fields' +} + + +/** columns and relationships of "direct_conversations" */ +export interface direct_conversations { + is_open: Scalars['Boolean'] + last_message_at: Scalars['timestamptz'] + position: Scalars['Int'] + room_id: Scalars['String'] + steam_id: Scalars['bigint'] + __typename: 'direct_conversations' +} + + +/** aggregated selection of "direct_conversations" */ +export interface direct_conversations_aggregate { + aggregate: (direct_conversations_aggregate_fields | null) + nodes: direct_conversations[] + __typename: 'direct_conversations_aggregate' +} + + +/** aggregate fields of "direct_conversations" */ +export interface direct_conversations_aggregate_fields { + avg: (direct_conversations_avg_fields | null) + count: Scalars['Int'] + max: (direct_conversations_max_fields | null) + min: (direct_conversations_min_fields | null) + stddev: (direct_conversations_stddev_fields | null) + stddev_pop: (direct_conversations_stddev_pop_fields | null) + stddev_samp: (direct_conversations_stddev_samp_fields | null) + sum: (direct_conversations_sum_fields | null) + var_pop: (direct_conversations_var_pop_fields | null) + var_samp: (direct_conversations_var_samp_fields | null) + variance: (direct_conversations_variance_fields | null) + __typename: 'direct_conversations_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface direct_conversations_avg_fields { + position: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'direct_conversations_avg_fields' +} + + +/** unique or primary key constraints on table "direct_conversations" */ +export type direct_conversations_constraint = 'direct_conversations_pkey' + + +/** aggregate max on columns */ +export interface direct_conversations_max_fields { + last_message_at: (Scalars['timestamptz'] | null) + position: (Scalars['Int'] | null) + room_id: (Scalars['String'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'direct_conversations_max_fields' +} + + +/** aggregate min on columns */ +export interface direct_conversations_min_fields { + last_message_at: (Scalars['timestamptz'] | null) + position: (Scalars['Int'] | null) + room_id: (Scalars['String'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'direct_conversations_min_fields' +} + + +/** response of any mutation on the table "direct_conversations" */ +export interface direct_conversations_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: direct_conversations[] + __typename: 'direct_conversations_mutation_response' +} + + +/** select columns of table "direct_conversations" */ +export type direct_conversations_select_column = 'is_open' | 'last_message_at' | 'position' | 'room_id' | 'steam_id' + + +/** aggregate stddev on columns */ +export interface direct_conversations_stddev_fields { + position: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'direct_conversations_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface direct_conversations_stddev_pop_fields { + position: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'direct_conversations_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface direct_conversations_stddev_samp_fields { + position: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'direct_conversations_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface direct_conversations_sum_fields { + position: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'direct_conversations_sum_fields' +} + + +/** update columns of table "direct_conversations" */ +export type direct_conversations_update_column = 'is_open' | 'last_message_at' | 'position' | 'room_id' | 'steam_id' + + +/** aggregate var_pop on columns */ +export interface direct_conversations_var_pop_fields { + position: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'direct_conversations_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface direct_conversations_var_samp_fields { + position: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'direct_conversations_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface direct_conversations_variance_fields { + position: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'direct_conversations_variance_fields' +} + + +/** columns and relationships of "direct_messages" */ +export interface direct_messages { + created_at: Scalars['timestamptz'] + from_steam_id: Scalars['bigint'] + id: Scalars['uuid'] + message: Scalars['String'] + room_id: Scalars['String'] + seq: Scalars['bigint'] + __typename: 'direct_messages' +} + + +/** aggregated selection of "direct_messages" */ +export interface direct_messages_aggregate { + aggregate: (direct_messages_aggregate_fields | null) + nodes: direct_messages[] + __typename: 'direct_messages_aggregate' +} + + +/** aggregate fields of "direct_messages" */ +export interface direct_messages_aggregate_fields { + avg: (direct_messages_avg_fields | null) + count: Scalars['Int'] + max: (direct_messages_max_fields | null) + min: (direct_messages_min_fields | null) + stddev: (direct_messages_stddev_fields | null) + stddev_pop: (direct_messages_stddev_pop_fields | null) + stddev_samp: (direct_messages_stddev_samp_fields | null) + sum: (direct_messages_sum_fields | null) + var_pop: (direct_messages_var_pop_fields | null) + var_samp: (direct_messages_var_samp_fields | null) + variance: (direct_messages_variance_fields | null) + __typename: 'direct_messages_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface direct_messages_avg_fields { + from_steam_id: (Scalars['Float'] | null) + seq: (Scalars['Float'] | null) + __typename: 'direct_messages_avg_fields' +} + + +/** unique or primary key constraints on table "direct_messages" */ +export type direct_messages_constraint = 'direct_messages_pkey' + + +/** aggregate max on columns */ +export interface direct_messages_max_fields { + 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) + __typename: 'direct_messages_max_fields' +} + + +/** aggregate min on columns */ +export interface direct_messages_min_fields { + 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) + __typename: 'direct_messages_min_fields' +} + + +/** response of any mutation on the table "direct_messages" */ +export interface direct_messages_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: direct_messages[] + __typename: 'direct_messages_mutation_response' +} + + +/** select columns of table "direct_messages" */ +export type direct_messages_select_column = 'created_at' | 'from_steam_id' | 'id' | 'message' | 'room_id' | 'seq' + + +/** aggregate stddev on columns */ +export interface direct_messages_stddev_fields { + from_steam_id: (Scalars['Float'] | null) + seq: (Scalars['Float'] | null) + __typename: 'direct_messages_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface direct_messages_stddev_pop_fields { + from_steam_id: (Scalars['Float'] | null) + seq: (Scalars['Float'] | null) + __typename: 'direct_messages_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface direct_messages_stddev_samp_fields { + from_steam_id: (Scalars['Float'] | null) + seq: (Scalars['Float'] | null) + __typename: 'direct_messages_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface direct_messages_sum_fields { + from_steam_id: (Scalars['bigint'] | null) + seq: (Scalars['bigint'] | null) + __typename: 'direct_messages_sum_fields' +} + + +/** update columns of table "direct_messages" */ +export type direct_messages_update_column = 'created_at' | 'from_steam_id' | 'id' | 'message' | 'room_id' | 'seq' + + +/** aggregate var_pop on columns */ +export interface direct_messages_var_pop_fields { + from_steam_id: (Scalars['Float'] | null) + seq: (Scalars['Float'] | null) + __typename: 'direct_messages_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface direct_messages_var_samp_fields { + from_steam_id: (Scalars['Float'] | null) + seq: (Scalars['Float'] | null) + __typename: 'direct_messages_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface direct_messages_variance_fields { + from_steam_id: (Scalars['Float'] | null) + seq: (Scalars['Float'] | null) + __typename: 'direct_messages_variance_fields' +} + + +/** columns and relationships of "draft_game_picks" */ +export interface draft_game_picks { + auto_picked: Scalars['Boolean'] + /** An object relationship */ + captain: players + captain_steam_id: Scalars['bigint'] + created_at: Scalars['timestamptz'] + /** An object relationship */ + draft_game: draft_games + draft_game_id: Scalars['uuid'] + id: Scalars['uuid'] + is_organizer: (Scalars['Boolean'] | null) + lineup: Scalars['Int'] + /** An object relationship */ + picked: players + picked_steam_id: Scalars['bigint'] + __typename: 'draft_game_picks' +} + + +/** aggregated selection of "draft_game_picks" */ +export interface draft_game_picks_aggregate { + aggregate: (draft_game_picks_aggregate_fields | null) + nodes: draft_game_picks[] + __typename: 'draft_game_picks_aggregate' +} + + +/** aggregate fields of "draft_game_picks" */ +export interface draft_game_picks_aggregate_fields { + avg: (draft_game_picks_avg_fields | null) + count: Scalars['Int'] + max: (draft_game_picks_max_fields | null) + min: (draft_game_picks_min_fields | null) + stddev: (draft_game_picks_stddev_fields | null) + stddev_pop: (draft_game_picks_stddev_pop_fields | null) + stddev_samp: (draft_game_picks_stddev_samp_fields | null) + sum: (draft_game_picks_sum_fields | null) + var_pop: (draft_game_picks_var_pop_fields | null) + var_samp: (draft_game_picks_var_samp_fields | null) + variance: (draft_game_picks_variance_fields | null) + __typename: 'draft_game_picks_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface draft_game_picks_avg_fields { + captain_steam_id: (Scalars['Float'] | null) + lineup: (Scalars['Float'] | null) + picked_steam_id: (Scalars['Float'] | null) + __typename: 'draft_game_picks_avg_fields' +} + + +/** unique or primary key constraints on table "draft_game_picks" */ +export type draft_game_picks_constraint = 'draft_game_picks_pkey' + + +/** aggregate max on columns */ +export interface draft_game_picks_max_fields { + 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) + __typename: 'draft_game_picks_max_fields' +} + + +/** aggregate min on columns */ +export interface draft_game_picks_min_fields { + 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) + __typename: 'draft_game_picks_min_fields' +} + + +/** response of any mutation on the table "draft_game_picks" */ +export interface draft_game_picks_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: draft_game_picks[] + __typename: 'draft_game_picks_mutation_response' +} + + +/** select columns of table "draft_game_picks" */ +export type draft_game_picks_select_column = 'auto_picked' | 'captain_steam_id' | 'created_at' | 'draft_game_id' | 'id' | 'lineup' | 'picked_steam_id' + + +/** select "draft_game_picks_aggregate_bool_exp_bool_and_arguments_columns" columns of table "draft_game_picks" */ +export type draft_game_picks_select_column_draft_game_picks_aggregate_bool_exp_bool_and_arguments_columns = 'auto_picked' + + +/** select "draft_game_picks_aggregate_bool_exp_bool_or_arguments_columns" columns of table "draft_game_picks" */ +export type draft_game_picks_select_column_draft_game_picks_aggregate_bool_exp_bool_or_arguments_columns = 'auto_picked' + + +/** aggregate stddev on columns */ +export interface draft_game_picks_stddev_fields { + captain_steam_id: (Scalars['Float'] | null) + lineup: (Scalars['Float'] | null) + picked_steam_id: (Scalars['Float'] | null) + __typename: 'draft_game_picks_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface draft_game_picks_stddev_pop_fields { + captain_steam_id: (Scalars['Float'] | null) + lineup: (Scalars['Float'] | null) + picked_steam_id: (Scalars['Float'] | null) + __typename: 'draft_game_picks_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface draft_game_picks_stddev_samp_fields { + captain_steam_id: (Scalars['Float'] | null) + lineup: (Scalars['Float'] | null) + picked_steam_id: (Scalars['Float'] | null) + __typename: 'draft_game_picks_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface draft_game_picks_sum_fields { + captain_steam_id: (Scalars['bigint'] | null) + lineup: (Scalars['Int'] | null) + picked_steam_id: (Scalars['bigint'] | null) + __typename: 'draft_game_picks_sum_fields' +} + + +/** update columns of table "draft_game_picks" */ +export type draft_game_picks_update_column = 'auto_picked' | 'captain_steam_id' | 'created_at' | 'draft_game_id' | 'id' | 'lineup' | 'picked_steam_id' + + +/** aggregate var_pop on columns */ +export interface draft_game_picks_var_pop_fields { + captain_steam_id: (Scalars['Float'] | null) + lineup: (Scalars['Float'] | null) + picked_steam_id: (Scalars['Float'] | null) + __typename: 'draft_game_picks_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface draft_game_picks_var_samp_fields { + captain_steam_id: (Scalars['Float'] | null) + lineup: (Scalars['Float'] | null) + picked_steam_id: (Scalars['Float'] | null) + __typename: 'draft_game_picks_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface draft_game_picks_variance_fields { + captain_steam_id: (Scalars['Float'] | null) + lineup: (Scalars['Float'] | null) + picked_steam_id: (Scalars['Float'] | null) + __typename: 'draft_game_picks_variance_fields' +} + + +/** columns and relationships of "draft_game_players" */ +export interface draft_game_players { + /** An object relationship */ + draft_game: draft_games + draft_game_id: Scalars['uuid'] + /** An object relationship */ + e_draft_game_player_status: e_draft_game_player_status + elo_snapshot: (Scalars['Int'] | null) + is_captain: Scalars['Boolean'] + is_organizer: (Scalars['Boolean'] | null) + joined_at: Scalars['timestamptz'] + lineup: (Scalars['Int'] | null) + pick_order: (Scalars['Int'] | null) + /** An object relationship */ + player: players + status: e_draft_game_player_status_enum + steam_id: Scalars['bigint'] + __typename: 'draft_game_players' +} + + +/** aggregated selection of "draft_game_players" */ +export interface draft_game_players_aggregate { + aggregate: (draft_game_players_aggregate_fields | null) + nodes: draft_game_players[] + __typename: 'draft_game_players_aggregate' +} + + +/** aggregate fields of "draft_game_players" */ +export interface draft_game_players_aggregate_fields { + avg: (draft_game_players_avg_fields | null) + count: Scalars['Int'] + max: (draft_game_players_max_fields | null) + min: (draft_game_players_min_fields | null) + stddev: (draft_game_players_stddev_fields | null) + stddev_pop: (draft_game_players_stddev_pop_fields | null) + stddev_samp: (draft_game_players_stddev_samp_fields | null) + sum: (draft_game_players_sum_fields | null) + var_pop: (draft_game_players_var_pop_fields | null) + var_samp: (draft_game_players_var_samp_fields | null) + variance: (draft_game_players_variance_fields | null) + __typename: 'draft_game_players_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface draft_game_players_avg_fields { + elo_snapshot: (Scalars['Float'] | null) + lineup: (Scalars['Float'] | null) + pick_order: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'draft_game_players_avg_fields' +} + + +/** unique or primary key constraints on table "draft_game_players" */ +export type draft_game_players_constraint = 'draft_game_players_pkey' + + +/** aggregate max on columns */ +export interface draft_game_players_max_fields { + draft_game_id: (Scalars['uuid'] | null) + elo_snapshot: (Scalars['Int'] | null) + joined_at: (Scalars['timestamptz'] | null) + lineup: (Scalars['Int'] | null) + pick_order: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'draft_game_players_max_fields' +} + + +/** aggregate min on columns */ +export interface draft_game_players_min_fields { + draft_game_id: (Scalars['uuid'] | null) + elo_snapshot: (Scalars['Int'] | null) + joined_at: (Scalars['timestamptz'] | null) + lineup: (Scalars['Int'] | null) + pick_order: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'draft_game_players_min_fields' +} + + +/** response of any mutation on the table "draft_game_players" */ +export interface draft_game_players_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: draft_game_players[] + __typename: 'draft_game_players_mutation_response' +} + + +/** select columns of table "draft_game_players" */ +export type draft_game_players_select_column = 'draft_game_id' | 'elo_snapshot' | 'is_captain' | 'joined_at' | 'lineup' | 'pick_order' | 'status' | 'steam_id' + + +/** select "draft_game_players_aggregate_bool_exp_bool_and_arguments_columns" columns of table "draft_game_players" */ +export type draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_and_arguments_columns = 'is_captain' + + +/** select "draft_game_players_aggregate_bool_exp_bool_or_arguments_columns" columns of table "draft_game_players" */ +export type draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_or_arguments_columns = 'is_captain' + + +/** aggregate stddev on columns */ +export interface draft_game_players_stddev_fields { + elo_snapshot: (Scalars['Float'] | null) + lineup: (Scalars['Float'] | null) + pick_order: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'draft_game_players_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface draft_game_players_stddev_pop_fields { + elo_snapshot: (Scalars['Float'] | null) + lineup: (Scalars['Float'] | null) + pick_order: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'draft_game_players_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface draft_game_players_stddev_samp_fields { + elo_snapshot: (Scalars['Float'] | null) + lineup: (Scalars['Float'] | null) + pick_order: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'draft_game_players_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface draft_game_players_sum_fields { + elo_snapshot: (Scalars['Int'] | null) + lineup: (Scalars['Int'] | null) + pick_order: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'draft_game_players_sum_fields' +} + + +/** update columns of table "draft_game_players" */ +export type draft_game_players_update_column = 'draft_game_id' | 'elo_snapshot' | 'is_captain' | 'joined_at' | 'lineup' | 'pick_order' | 'status' | 'steam_id' + + +/** aggregate var_pop on columns */ +export interface draft_game_players_var_pop_fields { + elo_snapshot: (Scalars['Float'] | null) + lineup: (Scalars['Float'] | null) + pick_order: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'draft_game_players_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface draft_game_players_var_samp_fields { + elo_snapshot: (Scalars['Float'] | null) + lineup: (Scalars['Float'] | null) + pick_order: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'draft_game_players_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface draft_game_players_variance_fields { + elo_snapshot: (Scalars['Float'] | null) + lineup: (Scalars['Float'] | null) + pick_order: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'draft_game_players_variance_fields' +} + + +/** columns and relationships of "draft_games" */ +export interface draft_games { + access: e_lobby_access_enum + capacity: Scalars['Int'] + captain_selection: e_draft_game_captain_selection_enum + created_at: Scalars['timestamptz'] + current_pick_lineup: (Scalars['Int'] | null) + draft_order: e_draft_game_draft_order_enum + /** An object relationship */ + e_draft_game_captain_selection: e_draft_game_captain_selection + /** An object relationship */ + e_draft_game_draft_order: e_draft_game_draft_order + /** An object relationship */ + e_draft_game_mode: e_draft_game_mode + /** An object relationship */ + e_draft_game_status: e_draft_game_status + /** An object relationship */ + e_lobby_access: e_lobby_access + expires_at: (Scalars['timestamptz'] | null) + /** An object relationship */ + host: players + host_steam_id: Scalars['bigint'] + id: Scalars['uuid'] + inner_squad: Scalars['Boolean'] + invite_code: Scalars['uuid'] + is_organizer: (Scalars['Boolean'] | null) + /** An object relationship */ + map_pool: (map_pools | null) + map_pool_id: (Scalars['uuid'] | null) + /** An object relationship */ + match: (matches | 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 + /** An object relationship */ + options: (match_options | null) + /** Turn order (lineup 1/2) for each remaining non-captain pick. */ + pattern: (Scalars['jsonb'] | null) + pick_deadline: (Scalars['timestamptz'] | null) + /** An array relationship */ + picks: draft_game_picks[] + /** An aggregate relationship */ + picks_aggregate: draft_game_picks_aggregate + /** An array relationship */ + players: draft_game_players[] + /** An aggregate relationship */ + players_aggregate: draft_game_players_aggregate + regions: Scalars['String'][] + require_approval: Scalars['Boolean'] + scheduled_at: (Scalars['timestamptz'] | null) + status: e_draft_game_status_enum + /** An object relationship */ + team_1: (teams | null) + team_1_id: (Scalars['uuid'] | null) + /** An object relationship */ + team_2: (teams | null) + team_2_id: (Scalars['uuid'] | null) + type: e_match_types_enum + updated_at: Scalars['timestamptz'] + __typename: 'draft_games' +} + + +/** aggregated selection of "draft_games" */ +export interface draft_games_aggregate { + aggregate: (draft_games_aggregate_fields | null) + nodes: draft_games[] + __typename: 'draft_games_aggregate' +} + + +/** aggregate fields of "draft_games" */ +export interface draft_games_aggregate_fields { + avg: (draft_games_avg_fields | null) + count: Scalars['Int'] + max: (draft_games_max_fields | null) + min: (draft_games_min_fields | null) + stddev: (draft_games_stddev_fields | null) + stddev_pop: (draft_games_stddev_pop_fields | null) + stddev_samp: (draft_games_stddev_samp_fields | null) + sum: (draft_games_sum_fields | null) + var_pop: (draft_games_var_pop_fields | null) + var_samp: (draft_games_var_samp_fields | null) + variance: (draft_games_variance_fields | null) + __typename: 'draft_games_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface draft_games_avg_fields { + capacity: (Scalars['Float'] | null) + current_pick_lineup: (Scalars['Float'] | null) + host_steam_id: (Scalars['Float'] | null) + max_elo: (Scalars['Float'] | null) + min_elo: (Scalars['Float'] | null) + __typename: 'draft_games_avg_fields' +} + + +/** unique or primary key constraints on table "draft_games" */ +export type draft_games_constraint = 'draft_games_pkey' + + +/** aggregate max on columns */ +export interface draft_games_max_fields { + capacity: (Scalars['Int'] | null) + created_at: (Scalars['timestamptz'] | null) + current_pick_lineup: (Scalars['Int'] | null) + expires_at: (Scalars['timestamptz'] | null) + host_steam_id: (Scalars['bigint'] | null) + id: (Scalars['uuid'] | 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) + pick_deadline: (Scalars['timestamptz'] | null) + regions: (Scalars['String'][] | null) + scheduled_at: (Scalars['timestamptz'] | null) + team_1_id: (Scalars['uuid'] | null) + team_2_id: (Scalars['uuid'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'draft_games_max_fields' +} + + +/** aggregate min on columns */ +export interface draft_games_min_fields { + capacity: (Scalars['Int'] | null) + created_at: (Scalars['timestamptz'] | null) + current_pick_lineup: (Scalars['Int'] | null) + expires_at: (Scalars['timestamptz'] | null) + host_steam_id: (Scalars['bigint'] | null) + id: (Scalars['uuid'] | 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) + pick_deadline: (Scalars['timestamptz'] | null) + regions: (Scalars['String'][] | null) + scheduled_at: (Scalars['timestamptz'] | null) + team_1_id: (Scalars['uuid'] | null) + team_2_id: (Scalars['uuid'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'draft_games_min_fields' +} + + +/** response of any mutation on the table "draft_games" */ +export interface draft_games_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: draft_games[] + __typename: 'draft_games_mutation_response' +} + + +/** select columns of table "draft_games" */ +export type draft_games_select_column = 'access' | 'capacity' | 'captain_selection' | 'created_at' | 'current_pick_lineup' | 'draft_order' | 'expires_at' | 'host_steam_id' | 'id' | 'inner_squad' | 'invite_code' | 'map_pool_id' | 'match_id' | 'match_options_id' | 'max_elo' | 'min_elo' | 'mode' | 'pick_deadline' | 'regions' | 'require_approval' | 'scheduled_at' | 'status' | 'team_1_id' | 'team_2_id' | 'type' | 'updated_at' + + +/** select "draft_games_aggregate_bool_exp_bool_and_arguments_columns" columns of table "draft_games" */ +export type draft_games_select_column_draft_games_aggregate_bool_exp_bool_and_arguments_columns = 'inner_squad' | 'require_approval' + + +/** select "draft_games_aggregate_bool_exp_bool_or_arguments_columns" columns of table "draft_games" */ +export type draft_games_select_column_draft_games_aggregate_bool_exp_bool_or_arguments_columns = 'inner_squad' | 'require_approval' + + +/** aggregate stddev on columns */ +export interface draft_games_stddev_fields { + capacity: (Scalars['Float'] | null) + current_pick_lineup: (Scalars['Float'] | null) + host_steam_id: (Scalars['Float'] | null) + max_elo: (Scalars['Float'] | null) + min_elo: (Scalars['Float'] | null) + __typename: 'draft_games_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface draft_games_stddev_pop_fields { + capacity: (Scalars['Float'] | null) + current_pick_lineup: (Scalars['Float'] | null) + host_steam_id: (Scalars['Float'] | null) + max_elo: (Scalars['Float'] | null) + min_elo: (Scalars['Float'] | null) + __typename: 'draft_games_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface draft_games_stddev_samp_fields { + capacity: (Scalars['Float'] | null) + current_pick_lineup: (Scalars['Float'] | null) + host_steam_id: (Scalars['Float'] | null) + max_elo: (Scalars['Float'] | null) + min_elo: (Scalars['Float'] | null) + __typename: 'draft_games_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface draft_games_sum_fields { + 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) + __typename: 'draft_games_sum_fields' +} + + +/** update columns of table "draft_games" */ +export type draft_games_update_column = 'access' | 'capacity' | 'captain_selection' | 'created_at' | 'current_pick_lineup' | 'draft_order' | 'expires_at' | 'host_steam_id' | 'id' | 'inner_squad' | 'invite_code' | 'map_pool_id' | 'match_id' | 'match_options_id' | 'max_elo' | 'min_elo' | 'mode' | 'pick_deadline' | 'regions' | 'require_approval' | 'scheduled_at' | 'status' | 'team_1_id' | 'team_2_id' | 'type' | 'updated_at' + + +/** aggregate var_pop on columns */ +export interface draft_games_var_pop_fields { + capacity: (Scalars['Float'] | null) + current_pick_lineup: (Scalars['Float'] | null) + host_steam_id: (Scalars['Float'] | null) + max_elo: (Scalars['Float'] | null) + min_elo: (Scalars['Float'] | null) + __typename: 'draft_games_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface draft_games_var_samp_fields { + capacity: (Scalars['Float'] | null) + current_pick_lineup: (Scalars['Float'] | null) + host_steam_id: (Scalars['Float'] | null) + max_elo: (Scalars['Float'] | null) + min_elo: (Scalars['Float'] | null) + __typename: 'draft_games_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface draft_games_variance_fields { + capacity: (Scalars['Float'] | null) + current_pick_lineup: (Scalars['Float'] | null) + host_steam_id: (Scalars['Float'] | null) + max_elo: (Scalars['Float'] | null) + min_elo: (Scalars['Float'] | null) + __typename: 'draft_games_variance_fields' +} + + +/** columns and relationships of "e_award_sources" */ +export interface e_award_sources { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_award_sources' +} + + +/** aggregated selection of "e_award_sources" */ +export interface e_award_sources_aggregate { + aggregate: (e_award_sources_aggregate_fields | null) + nodes: e_award_sources[] + __typename: 'e_award_sources_aggregate' +} + + +/** aggregate fields of "e_award_sources" */ +export interface e_award_sources_aggregate_fields { + count: Scalars['Int'] + max: (e_award_sources_max_fields | null) + min: (e_award_sources_min_fields | null) + __typename: 'e_award_sources_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_award_sources" */ +export type e_award_sources_constraint = 'e_award_sources_pkey' + +export type e_award_sources_enum = 'manual' | 'season' | 'tournament' + + +/** aggregate max on columns */ +export interface e_award_sources_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_award_sources_max_fields' +} + + +/** aggregate min on columns */ +export interface e_award_sources_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_award_sources_min_fields' +} + + +/** response of any mutation on the table "e_award_sources" */ +export interface e_award_sources_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_award_sources[] + __typename: 'e_award_sources_mutation_response' +} + + +/** select columns of table "e_award_sources" */ +export type e_award_sources_select_column = 'description' | 'value' + + +/** update columns of table "e_award_sources" */ +export type e_award_sources_update_column = 'description' | 'value' + + +/** columns and relationships of "e_award_tiers" */ +export interface e_award_tiers { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_award_tiers' +} + + +/** aggregated selection of "e_award_tiers" */ +export interface e_award_tiers_aggregate { + aggregate: (e_award_tiers_aggregate_fields | null) + nodes: e_award_tiers[] + __typename: 'e_award_tiers_aggregate' +} + + +/** aggregate fields of "e_award_tiers" */ +export interface e_award_tiers_aggregate_fields { + count: Scalars['Int'] + max: (e_award_tiers_max_fields | null) + min: (e_award_tiers_min_fields | null) + __typename: 'e_award_tiers_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_award_tiers" */ +export type e_award_tiers_constraint = 'e_award_tiers_pkey' + +export type e_award_tiers_enum = 'bronze' | 'gold' | 'mvp' | 'silver' | 'special' + + +/** aggregate max on columns */ +export interface e_award_tiers_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_award_tiers_max_fields' +} + + +/** aggregate min on columns */ +export interface e_award_tiers_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_award_tiers_min_fields' +} + + +/** response of any mutation on the table "e_award_tiers" */ +export interface e_award_tiers_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_award_tiers[] + __typename: 'e_award_tiers_mutation_response' +} + + +/** select columns of table "e_award_tiers" */ +export type e_award_tiers_select_column = 'description' | 'value' + + +/** update columns of table "e_award_tiers" */ +export type e_award_tiers_update_column = 'description' | 'value' + + +/** columns and relationships of "e_check_in_settings" */ +export interface e_check_in_settings { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_check_in_settings' +} + + +/** aggregated selection of "e_check_in_settings" */ +export interface e_check_in_settings_aggregate { + aggregate: (e_check_in_settings_aggregate_fields | null) + nodes: e_check_in_settings[] + __typename: 'e_check_in_settings_aggregate' +} + + +/** aggregate fields of "e_check_in_settings" */ +export interface e_check_in_settings_aggregate_fields { + count: Scalars['Int'] + max: (e_check_in_settings_max_fields | null) + min: (e_check_in_settings_min_fields | null) + __typename: 'e_check_in_settings_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_check_in_settings" */ +export type e_check_in_settings_constraint = 'e_check_in_settings_pkey' + +export type e_check_in_settings_enum = 'Admin' | 'Captains' | 'Players' + + +/** aggregate max on columns */ +export interface e_check_in_settings_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_check_in_settings_max_fields' +} + + +/** aggregate min on columns */ +export interface e_check_in_settings_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_check_in_settings_min_fields' +} + + +/** response of any mutation on the table "e_check_in_settings" */ +export interface e_check_in_settings_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_check_in_settings[] + __typename: 'e_check_in_settings_mutation_response' +} + + +/** select columns of table "e_check_in_settings" */ +export type e_check_in_settings_select_column = 'description' | 'value' + + +/** update columns of table "e_check_in_settings" */ +export type e_check_in_settings_update_column = 'description' | 'value' + + +/** columns and relationships of "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_draft_game_captain_selection' +} + + +/** aggregated selection of "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_aggregate { + aggregate: (e_draft_game_captain_selection_aggregate_fields | null) + nodes: e_draft_game_captain_selection[] + __typename: 'e_draft_game_captain_selection_aggregate' +} + + +/** aggregate fields of "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_aggregate_fields { + count: Scalars['Int'] + max: (e_draft_game_captain_selection_max_fields | null) + min: (e_draft_game_captain_selection_min_fields | null) + __typename: 'e_draft_game_captain_selection_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_draft_game_captain_selection" */ +export type e_draft_game_captain_selection_constraint = 'e_draft_game_captain_selection_pkey' + +export type e_draft_game_captain_selection_enum = 'HostAndNext' | 'Manual' | 'RandomTwo' | 'TopEloTwo' + + +/** aggregate max on columns */ +export interface e_draft_game_captain_selection_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_draft_game_captain_selection_max_fields' +} + + +/** aggregate min on columns */ +export interface e_draft_game_captain_selection_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_draft_game_captain_selection_min_fields' +} + + +/** response of any mutation on the table "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_draft_game_captain_selection[] + __typename: 'e_draft_game_captain_selection_mutation_response' +} + + +/** select columns of table "e_draft_game_captain_selection" */ +export type e_draft_game_captain_selection_select_column = 'description' | 'value' + + +/** update columns of table "e_draft_game_captain_selection" */ +export type e_draft_game_captain_selection_update_column = 'description' | 'value' + + +/** columns and relationships of "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_draft_game_draft_order' +} + + +/** aggregated selection of "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order_aggregate { + aggregate: (e_draft_game_draft_order_aggregate_fields | null) + nodes: e_draft_game_draft_order[] + __typename: 'e_draft_game_draft_order_aggregate' +} + + +/** aggregate fields of "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order_aggregate_fields { + count: Scalars['Int'] + max: (e_draft_game_draft_order_max_fields | null) + min: (e_draft_game_draft_order_min_fields | null) + __typename: 'e_draft_game_draft_order_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_draft_game_draft_order" */ +export type e_draft_game_draft_order_constraint = 'e_draft_game_draft_order_pkey' + +export type e_draft_game_draft_order_enum = 'Alternating' | 'FrontLoaded' | 'Snake' + + +/** aggregate max on columns */ +export interface e_draft_game_draft_order_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_draft_game_draft_order_max_fields' +} + + +/** aggregate min on columns */ +export interface e_draft_game_draft_order_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_draft_game_draft_order_min_fields' +} + + +/** response of any mutation on the table "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_draft_game_draft_order[] + __typename: 'e_draft_game_draft_order_mutation_response' +} + + +/** select columns of table "e_draft_game_draft_order" */ +export type e_draft_game_draft_order_select_column = 'description' | 'value' + + +/** update columns of table "e_draft_game_draft_order" */ +export type e_draft_game_draft_order_update_column = 'description' | 'value' + + +/** columns and relationships of "e_draft_game_mode" */ +export interface e_draft_game_mode { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_draft_game_mode' +} + + +/** aggregated selection of "e_draft_game_mode" */ +export interface e_draft_game_mode_aggregate { + aggregate: (e_draft_game_mode_aggregate_fields | null) + nodes: e_draft_game_mode[] + __typename: 'e_draft_game_mode_aggregate' +} + + +/** aggregate fields of "e_draft_game_mode" */ +export interface e_draft_game_mode_aggregate_fields { + count: Scalars['Int'] + max: (e_draft_game_mode_max_fields | null) + min: (e_draft_game_mode_min_fields | null) + __typename: 'e_draft_game_mode_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_draft_game_mode" */ +export type e_draft_game_mode_constraint = 'e_draft_game_mode_pkey' + +export type e_draft_game_mode_enum = 'Captains' | 'Host' | 'Pug' | 'Teams' + + +/** aggregate max on columns */ +export interface e_draft_game_mode_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_draft_game_mode_max_fields' +} + + +/** aggregate min on columns */ +export interface e_draft_game_mode_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_draft_game_mode_min_fields' +} + + +/** response of any mutation on the table "e_draft_game_mode" */ +export interface e_draft_game_mode_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_draft_game_mode[] + __typename: 'e_draft_game_mode_mutation_response' +} + + +/** select columns of table "e_draft_game_mode" */ +export type e_draft_game_mode_select_column = 'description' | 'value' + + +/** update columns of table "e_draft_game_mode" */ +export type e_draft_game_mode_update_column = 'description' | 'value' + + +/** columns and relationships of "e_draft_game_player_status" */ +export interface e_draft_game_player_status { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_draft_game_player_status' +} + + +/** aggregated selection of "e_draft_game_player_status" */ +export interface e_draft_game_player_status_aggregate { + aggregate: (e_draft_game_player_status_aggregate_fields | null) + nodes: e_draft_game_player_status[] + __typename: 'e_draft_game_player_status_aggregate' +} + + +/** aggregate fields of "e_draft_game_player_status" */ +export interface e_draft_game_player_status_aggregate_fields { + count: Scalars['Int'] + max: (e_draft_game_player_status_max_fields | null) + min: (e_draft_game_player_status_min_fields | null) + __typename: 'e_draft_game_player_status_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_draft_game_player_status" */ +export type e_draft_game_player_status_constraint = 'e_draft_game_player_status_pkey' + +export type e_draft_game_player_status_enum = 'Accepted' | 'Invited' | 'Requested' | 'Waitlist' + + +/** aggregate max on columns */ +export interface e_draft_game_player_status_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_draft_game_player_status_max_fields' +} + + +/** aggregate min on columns */ +export interface e_draft_game_player_status_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_draft_game_player_status_min_fields' +} + + +/** response of any mutation on the table "e_draft_game_player_status" */ +export interface e_draft_game_player_status_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_draft_game_player_status[] + __typename: 'e_draft_game_player_status_mutation_response' +} + + +/** select columns of table "e_draft_game_player_status" */ +export type e_draft_game_player_status_select_column = 'description' | 'value' + + +/** update columns of table "e_draft_game_player_status" */ +export type e_draft_game_player_status_update_column = 'description' | 'value' + + +/** columns and relationships of "e_draft_game_status" */ +export interface e_draft_game_status { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_draft_game_status' +} + + +/** aggregated selection of "e_draft_game_status" */ +export interface e_draft_game_status_aggregate { + aggregate: (e_draft_game_status_aggregate_fields | null) + nodes: e_draft_game_status[] + __typename: 'e_draft_game_status_aggregate' +} + + +/** aggregate fields of "e_draft_game_status" */ +export interface e_draft_game_status_aggregate_fields { + count: Scalars['Int'] + max: (e_draft_game_status_max_fields | null) + min: (e_draft_game_status_min_fields | null) + __typename: 'e_draft_game_status_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_draft_game_status" */ +export type e_draft_game_status_constraint = 'e_draft_game_status_pkey' + +export type e_draft_game_status_enum = 'Canceled' | 'Completed' | 'CreatingMatch' | 'Drafting' | 'Filled' | 'Open' | 'SelectingCaptains' + + +/** aggregate max on columns */ +export interface e_draft_game_status_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_draft_game_status_max_fields' +} + + +/** aggregate min on columns */ +export interface e_draft_game_status_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_draft_game_status_min_fields' +} + + +/** response of any mutation on the table "e_draft_game_status" */ +export interface e_draft_game_status_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_draft_game_status[] + __typename: 'e_draft_game_status_mutation_response' +} + + +/** select columns of table "e_draft_game_status" */ +export type e_draft_game_status_select_column = 'description' | 'value' + + +/** update columns of table "e_draft_game_status" */ +export type e_draft_game_status_update_column = 'description' | 'value' + + +/** columns and relationships of "e_event_media_access" */ +export interface e_event_media_access { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_event_media_access' +} + + +/** aggregated selection of "e_event_media_access" */ +export interface e_event_media_access_aggregate { + aggregate: (e_event_media_access_aggregate_fields | null) + nodes: e_event_media_access[] + __typename: 'e_event_media_access_aggregate' +} + + +/** aggregate fields of "e_event_media_access" */ +export interface e_event_media_access_aggregate_fields { + count: Scalars['Int'] + max: (e_event_media_access_max_fields | null) + min: (e_event_media_access_min_fields | null) + __typename: 'e_event_media_access_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_event_media_access" */ +export type e_event_media_access_constraint = 'e_event_media_access_pkey' + +export type e_event_media_access_enum = 'Involved' | 'Organizers' + + +/** aggregate max on columns */ +export interface e_event_media_access_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_event_media_access_max_fields' +} + + +/** aggregate min on columns */ +export interface e_event_media_access_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_event_media_access_min_fields' +} + + +/** response of any mutation on the table "e_event_media_access" */ +export interface e_event_media_access_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_event_media_access[] + __typename: 'e_event_media_access_mutation_response' +} + + +/** select columns of table "e_event_media_access" */ +export type e_event_media_access_select_column = 'description' | 'value' + + +/** update columns of table "e_event_media_access" */ +export type e_event_media_access_update_column = 'description' | 'value' + + +/** columns and relationships of "e_event_visibility" */ +export interface e_event_visibility { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_event_visibility' +} + + +/** aggregated selection of "e_event_visibility" */ +export interface e_event_visibility_aggregate { + aggregate: (e_event_visibility_aggregate_fields | null) + nodes: e_event_visibility[] + __typename: 'e_event_visibility_aggregate' +} + + +/** aggregate fields of "e_event_visibility" */ +export interface e_event_visibility_aggregate_fields { + count: Scalars['Int'] + max: (e_event_visibility_max_fields | null) + min: (e_event_visibility_min_fields | null) + __typename: 'e_event_visibility_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_event_visibility" */ +export type e_event_visibility_constraint = 'e_event_visibility_pkey' + +export type e_event_visibility_enum = 'Friends' | 'Private' | 'Public' + + +/** aggregate max on columns */ +export interface e_event_visibility_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_event_visibility_max_fields' +} + + +/** aggregate min on columns */ +export interface e_event_visibility_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_event_visibility_min_fields' +} + + +/** response of any mutation on the table "e_event_visibility" */ +export interface e_event_visibility_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_event_visibility[] + __typename: 'e_event_visibility_mutation_response' +} + + +/** select columns of table "e_event_visibility" */ +export type e_event_visibility_select_column = 'description' | 'value' + + +/** update columns of table "e_event_visibility" */ +export type e_event_visibility_update_column = 'description' | 'value' + + +/** columns and relationships of "e_friend_status" */ +export interface e_friend_status { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_friend_status' +} + + +/** aggregated selection of "e_friend_status" */ +export interface e_friend_status_aggregate { + aggregate: (e_friend_status_aggregate_fields | null) + nodes: e_friend_status[] + __typename: 'e_friend_status_aggregate' +} + + +/** aggregate fields of "e_friend_status" */ +export interface e_friend_status_aggregate_fields { + count: Scalars['Int'] + max: (e_friend_status_max_fields | null) + min: (e_friend_status_min_fields | null) + __typename: 'e_friend_status_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_friend_status" */ +export type e_friend_status_constraint = 'e_friend_status_pkey' + +export type e_friend_status_enum = 'Accepted' | 'Pending' + + +/** aggregate max on columns */ +export interface e_friend_status_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_friend_status_max_fields' +} + + +/** aggregate min on columns */ +export interface e_friend_status_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_friend_status_min_fields' +} + + +/** response of any mutation on the table "e_friend_status" */ +export interface e_friend_status_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_friend_status[] + __typename: 'e_friend_status_mutation_response' +} + + +/** select columns of table "e_friend_status" */ +export type e_friend_status_select_column = 'description' | 'value' + + +/** update columns of table "e_friend_status" */ +export type e_friend_status_update_column = 'description' | 'value' + + +/** columns and relationships of "e_game_cfg_types" */ +export interface e_game_cfg_types { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_game_cfg_types' +} + + +/** aggregated selection of "e_game_cfg_types" */ +export interface e_game_cfg_types_aggregate { + aggregate: (e_game_cfg_types_aggregate_fields | null) + nodes: e_game_cfg_types[] + __typename: 'e_game_cfg_types_aggregate' +} + + +/** aggregate fields of "e_game_cfg_types" */ +export interface e_game_cfg_types_aggregate_fields { + count: Scalars['Int'] + max: (e_game_cfg_types_max_fields | null) + min: (e_game_cfg_types_min_fields | null) + __typename: 'e_game_cfg_types_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_game_cfg_types" */ +export type e_game_cfg_types_constraint = 'e_game_cfg_types_pkey' + +export type e_game_cfg_types_enum = 'Base' | 'Competitive' | 'Duel' | 'Global' | 'Lan' | 'Live' | 'Wingman' + + +/** aggregate max on columns */ +export interface e_game_cfg_types_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_game_cfg_types_max_fields' +} + + +/** aggregate min on columns */ +export interface e_game_cfg_types_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_game_cfg_types_min_fields' +} + + +/** response of any mutation on the table "e_game_cfg_types" */ +export interface e_game_cfg_types_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_game_cfg_types[] + __typename: 'e_game_cfg_types_mutation_response' +} + + +/** select columns of table "e_game_cfg_types" */ +export type e_game_cfg_types_select_column = 'description' | 'value' + + +/** update columns of table "e_game_cfg_types" */ +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'] + value: Scalars['String'] + __typename: 'e_game_server_node_statuses' +} + + +/** aggregated selection of "e_game_server_node_statuses" */ +export interface e_game_server_node_statuses_aggregate { + aggregate: (e_game_server_node_statuses_aggregate_fields | null) + nodes: e_game_server_node_statuses[] + __typename: 'e_game_server_node_statuses_aggregate' +} + + +/** aggregate fields of "e_game_server_node_statuses" */ +export interface e_game_server_node_statuses_aggregate_fields { + count: Scalars['Int'] + max: (e_game_server_node_statuses_max_fields | null) + min: (e_game_server_node_statuses_min_fields | null) + __typename: 'e_game_server_node_statuses_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_game_server_node_statuses" */ +export type e_game_server_node_statuses_constraint = 'e_game_server_node_statuses_pkey' + +export type e_game_server_node_statuses_enum = 'NotAcceptingNewMatches' | 'Offline' | 'Online' | 'Setup' + + +/** aggregate max on columns */ +export interface e_game_server_node_statuses_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_game_server_node_statuses_max_fields' +} + + +/** aggregate min on columns */ +export interface e_game_server_node_statuses_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_game_server_node_statuses_min_fields' +} + + +/** response of any mutation on the table "e_game_server_node_statuses" */ +export interface e_game_server_node_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_server_node_statuses[] + __typename: 'e_game_server_node_statuses_mutation_response' +} + + +/** select columns of table "e_game_server_node_statuses" */ +export type e_game_server_node_statuses_select_column = 'description' | 'value' + + +/** update columns of table "e_game_server_node_statuses" */ +export type e_game_server_node_statuses_update_column = 'description' | 'value' + + +/** columns and relationships of "e_league_movement_types" */ +export interface e_league_movement_types { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_league_movement_types' +} + + +/** aggregated selection of "e_league_movement_types" */ +export interface e_league_movement_types_aggregate { + aggregate: (e_league_movement_types_aggregate_fields | null) + nodes: e_league_movement_types[] + __typename: 'e_league_movement_types_aggregate' +} + + +/** aggregate fields of "e_league_movement_types" */ +export interface e_league_movement_types_aggregate_fields { + count: Scalars['Int'] + max: (e_league_movement_types_max_fields | null) + min: (e_league_movement_types_min_fields | null) + __typename: 'e_league_movement_types_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_league_movement_types" */ +export type e_league_movement_types_constraint = 'e_league_movement_types_pkey' + +export type e_league_movement_types_enum = 'DirectPromote' | 'DirectRelegate' | 'Hold' | 'Promote' | 'Relegate' | 'RelegationDown' | 'RelegationUp' | 'Remove' | 'Stay' + + +/** aggregate max on columns */ +export interface e_league_movement_types_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_league_movement_types_max_fields' +} + + +/** aggregate min on columns */ +export interface e_league_movement_types_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_league_movement_types_min_fields' +} + + +/** response of any mutation on the table "e_league_movement_types" */ +export interface e_league_movement_types_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_league_movement_types[] + __typename: 'e_league_movement_types_mutation_response' +} + + +/** select columns of table "e_league_movement_types" */ +export type e_league_movement_types_select_column = 'description' | 'value' + + +/** update columns of table "e_league_movement_types" */ +export type e_league_movement_types_update_column = 'description' | 'value' + + +/** columns and relationships of "e_league_proposal_statuses" */ +export interface e_league_proposal_statuses { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_league_proposal_statuses' +} + + +/** aggregated selection of "e_league_proposal_statuses" */ +export interface e_league_proposal_statuses_aggregate { + aggregate: (e_league_proposal_statuses_aggregate_fields | null) + nodes: e_league_proposal_statuses[] + __typename: 'e_league_proposal_statuses_aggregate' +} + + +/** aggregate fields of "e_league_proposal_statuses" */ +export interface e_league_proposal_statuses_aggregate_fields { + count: Scalars['Int'] + max: (e_league_proposal_statuses_max_fields | null) + min: (e_league_proposal_statuses_min_fields | null) + __typename: 'e_league_proposal_statuses_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_league_proposal_statuses" */ +export type e_league_proposal_statuses_constraint = 'e_league_proposal_statuses_pkey' + +export type e_league_proposal_statuses_enum = 'Accepted' | 'Countered' | 'Declined' | 'Expired' | 'Pending' | 'Superseded' + + +/** aggregate max on columns */ +export interface e_league_proposal_statuses_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_league_proposal_statuses_max_fields' +} + + +/** aggregate min on columns */ +export interface e_league_proposal_statuses_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_league_proposal_statuses_min_fields' +} + + +/** response of any mutation on the table "e_league_proposal_statuses" */ +export interface e_league_proposal_statuses_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_league_proposal_statuses[] + __typename: 'e_league_proposal_statuses_mutation_response' +} + + +/** select columns of table "e_league_proposal_statuses" */ +export type e_league_proposal_statuses_select_column = 'description' | 'value' + + +/** update columns of table "e_league_proposal_statuses" */ +export type e_league_proposal_statuses_update_column = 'description' | 'value' + + +/** columns and relationships of "e_league_registration_statuses" */ +export interface e_league_registration_statuses { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_league_registration_statuses' +} + + +/** aggregated selection of "e_league_registration_statuses" */ +export interface e_league_registration_statuses_aggregate { + aggregate: (e_league_registration_statuses_aggregate_fields | null) + nodes: e_league_registration_statuses[] + __typename: 'e_league_registration_statuses_aggregate' +} + + +/** aggregate fields of "e_league_registration_statuses" */ +export interface e_league_registration_statuses_aggregate_fields { + count: Scalars['Int'] + max: (e_league_registration_statuses_max_fields | null) + min: (e_league_registration_statuses_min_fields | null) + __typename: 'e_league_registration_statuses_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_league_registration_statuses" */ +export type e_league_registration_statuses_constraint = 'e_league_registration_statuses_pkey' + +export type e_league_registration_statuses_enum = 'Approved' | 'Declined' | 'Pending' | 'Waitlisted' | 'Withdrawn' + + +/** aggregate max on columns */ +export interface e_league_registration_statuses_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_league_registration_statuses_max_fields' +} + + +/** aggregate min on columns */ +export interface e_league_registration_statuses_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_league_registration_statuses_min_fields' +} + + +/** response of any mutation on the table "e_league_registration_statuses" */ +export interface e_league_registration_statuses_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_league_registration_statuses[] + __typename: 'e_league_registration_statuses_mutation_response' +} + + +/** select columns of table "e_league_registration_statuses" */ +export type e_league_registration_statuses_select_column = 'description' | 'value' + + +/** update columns of table "e_league_registration_statuses" */ +export type e_league_registration_statuses_update_column = 'description' | 'value' + + +/** columns and relationships of "e_league_season_statuses" */ +export interface e_league_season_statuses { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_league_season_statuses' +} + + +/** aggregated selection of "e_league_season_statuses" */ +export interface e_league_season_statuses_aggregate { + aggregate: (e_league_season_statuses_aggregate_fields | null) + nodes: e_league_season_statuses[] + __typename: 'e_league_season_statuses_aggregate' +} + + +/** aggregate fields of "e_league_season_statuses" */ +export interface e_league_season_statuses_aggregate_fields { + count: Scalars['Int'] + max: (e_league_season_statuses_max_fields | null) + min: (e_league_season_statuses_min_fields | null) + __typename: 'e_league_season_statuses_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_league_season_statuses" */ +export type e_league_season_statuses_constraint = 'e_league_season_statuses_pkey' + +export type e_league_season_statuses_enum = 'Canceled' | 'Finished' | 'Live' | 'Playoffs' | 'RegistrationClosed' | 'RegistrationOpen' | 'Setup' + + +/** aggregate max on columns */ +export interface e_league_season_statuses_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_league_season_statuses_max_fields' +} + + +/** aggregate min on columns */ +export interface e_league_season_statuses_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_league_season_statuses_min_fields' +} + + +/** response of any mutation on the table "e_league_season_statuses" */ +export interface e_league_season_statuses_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_league_season_statuses[] + __typename: 'e_league_season_statuses_mutation_response' +} + + +/** select columns of table "e_league_season_statuses" */ +export type e_league_season_statuses_select_column = 'description' | 'value' + + +/** update columns of table "e_league_season_statuses" */ +export type e_league_season_statuses_update_column = 'description' | 'value' + + +/** columns and relationships of "e_lobby_access" */ +export interface e_lobby_access { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_lobby_access' +} + + +/** aggregated selection of "e_lobby_access" */ +export interface e_lobby_access_aggregate { + aggregate: (e_lobby_access_aggregate_fields | null) + nodes: e_lobby_access[] + __typename: 'e_lobby_access_aggregate' +} + + +/** aggregate fields of "e_lobby_access" */ +export interface e_lobby_access_aggregate_fields { + count: Scalars['Int'] + max: (e_lobby_access_max_fields | null) + min: (e_lobby_access_min_fields | null) + __typename: 'e_lobby_access_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_lobby_access" */ +export type e_lobby_access_constraint = 'e_lobby_access_pkey' + +export type e_lobby_access_enum = 'Friends' | 'Invite' | 'Open' | 'Private' + + +/** aggregate max on columns */ +export interface e_lobby_access_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_lobby_access_max_fields' +} + + +/** aggregate min on columns */ +export interface e_lobby_access_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_lobby_access_min_fields' +} + + +/** response of any mutation on the table "e_lobby_access" */ +export interface e_lobby_access_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_lobby_access[] + __typename: 'e_lobby_access_mutation_response' +} + + +/** select columns of table "e_lobby_access" */ +export type e_lobby_access_select_column = 'description' | 'value' + + +/** update columns of table "e_lobby_access" */ +export type e_lobby_access_update_column = 'description' | 'value' + + +/** columns and relationships of "e_lobby_player_status" */ +export interface e_lobby_player_status { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_lobby_player_status' +} + + +/** aggregated selection of "e_lobby_player_status" */ +export interface e_lobby_player_status_aggregate { + aggregate: (e_lobby_player_status_aggregate_fields | null) + nodes: e_lobby_player_status[] + __typename: 'e_lobby_player_status_aggregate' +} + + +/** aggregate fields of "e_lobby_player_status" */ +export interface e_lobby_player_status_aggregate_fields { + count: Scalars['Int'] + max: (e_lobby_player_status_max_fields | null) + min: (e_lobby_player_status_min_fields | null) + __typename: 'e_lobby_player_status_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_lobby_player_status" */ +export type e_lobby_player_status_constraint = 'e_lobby_player_status_pkey' + +export type e_lobby_player_status_enum = 'Accepted' | 'Invited' + + +/** aggregate max on columns */ +export interface e_lobby_player_status_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_lobby_player_status_max_fields' +} + + +/** aggregate min on columns */ +export interface e_lobby_player_status_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_lobby_player_status_min_fields' +} + + +/** response of any mutation on the table "e_lobby_player_status" */ +export interface e_lobby_player_status_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_lobby_player_status[] + __typename: 'e_lobby_player_status_mutation_response' +} + + +/** select columns of table "e_lobby_player_status" */ +export type e_lobby_player_status_select_column = 'description' | 'value' + + +/** update columns of table "e_lobby_player_status" */ +export type e_lobby_player_status_update_column = 'description' | 'value' + + +/** columns and relationships of "e_map_pool_types" */ +export interface e_map_pool_types { + description: (Scalars['String'] | null) + value: Scalars['String'] + __typename: 'e_map_pool_types' +} + + +/** aggregated selection of "e_map_pool_types" */ +export interface e_map_pool_types_aggregate { + aggregate: (e_map_pool_types_aggregate_fields | null) + nodes: e_map_pool_types[] + __typename: 'e_map_pool_types_aggregate' +} + + +/** aggregate fields of "e_map_pool_types" */ +export interface e_map_pool_types_aggregate_fields { + count: Scalars['Int'] + max: (e_map_pool_types_max_fields | null) + min: (e_map_pool_types_min_fields | null) + __typename: 'e_map_pool_types_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_map_pool_types" */ +export type e_map_pool_types_constraint = 'e_map_pool_types_pkey' + +export type e_map_pool_types_enum = 'Competitive' | 'Custom' | 'Duel' | 'Wingman' + + +/** aggregate max on columns */ +export interface e_map_pool_types_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_map_pool_types_max_fields' +} + + +/** aggregate min on columns */ +export interface e_map_pool_types_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_map_pool_types_min_fields' +} + + +/** response of any mutation on the table "e_map_pool_types" */ +export interface e_map_pool_types_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_map_pool_types[] + __typename: 'e_map_pool_types_mutation_response' +} + + +/** select columns of table "e_map_pool_types" */ +export type e_map_pool_types_select_column = 'description' | 'value' + + +/** update columns of table "e_map_pool_types" */ +export type e_map_pool_types_update_column = 'description' | 'value' + + +/** columns and relationships of "e_match_clip_visibility" */ +export interface e_match_clip_visibility { + description: Scalars['String'] + /** An array relationship */ + match_clips: match_clips[] + /** An aggregate relationship */ + match_clips_aggregate: match_clips_aggregate + value: Scalars['String'] + __typename: 'e_match_clip_visibility' +} + + +/** aggregated selection of "e_match_clip_visibility" */ +export interface e_match_clip_visibility_aggregate { + aggregate: (e_match_clip_visibility_aggregate_fields | null) + nodes: e_match_clip_visibility[] + __typename: 'e_match_clip_visibility_aggregate' +} + + +/** aggregate fields of "e_match_clip_visibility" */ +export interface e_match_clip_visibility_aggregate_fields { + count: Scalars['Int'] + max: (e_match_clip_visibility_max_fields | null) + min: (e_match_clip_visibility_min_fields | null) + __typename: 'e_match_clip_visibility_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_match_clip_visibility" */ +export type e_match_clip_visibility_constraint = 'e_match_clip_visibility_pkey' + +export type e_match_clip_visibility_enum = 'match' | 'private' | 'public' + + +/** aggregate max on columns */ +export interface e_match_clip_visibility_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_match_clip_visibility_max_fields' +} + + +/** aggregate min on columns */ +export interface e_match_clip_visibility_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_match_clip_visibility_min_fields' +} + + +/** response of any mutation on the table "e_match_clip_visibility" */ +export interface e_match_clip_visibility_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_match_clip_visibility[] + __typename: 'e_match_clip_visibility_mutation_response' +} + + +/** select columns of table "e_match_clip_visibility" */ +export type e_match_clip_visibility_select_column = 'description' | 'value' + + +/** update columns of table "e_match_clip_visibility" */ +export type e_match_clip_visibility_update_column = 'description' | 'value' + + +/** columns and relationships of "e_match_map_status" */ +export interface e_match_map_status { + description: Scalars['String'] + /** An array relationship */ + match_maps: match_maps[] + /** An aggregate relationship */ + match_maps_aggregate: match_maps_aggregate + value: Scalars['String'] + __typename: 'e_match_map_status' +} + + +/** aggregated selection of "e_match_map_status" */ +export interface e_match_map_status_aggregate { + aggregate: (e_match_map_status_aggregate_fields | null) + nodes: e_match_map_status[] + __typename: 'e_match_map_status_aggregate' +} + + +/** aggregate fields of "e_match_map_status" */ +export interface e_match_map_status_aggregate_fields { + count: Scalars['Int'] + max: (e_match_map_status_max_fields | null) + min: (e_match_map_status_min_fields | null) + __typename: 'e_match_map_status_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_match_map_status" */ +export type e_match_map_status_constraint = 'match_map_status_pkey' + +export type e_match_map_status_enum = 'Canceled' | 'Finished' | 'Knife' | 'Live' | 'Overtime' | 'Paused' | 'Scheduled' | 'Surrendered' | 'UploadingDemo' | 'WaitingForTV' | 'Warmup' + + +/** aggregate max on columns */ +export interface e_match_map_status_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_match_map_status_max_fields' +} + + +/** aggregate min on columns */ +export interface e_match_map_status_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_match_map_status_min_fields' +} + + +/** response of any mutation on the table "e_match_map_status" */ +export interface e_match_map_status_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_match_map_status[] + __typename: 'e_match_map_status_mutation_response' +} + + +/** select columns of table "e_match_map_status" */ +export type e_match_map_status_select_column = 'description' | 'value' + + +/** update columns of table "e_match_map_status" */ +export type e_match_map_status_update_column = 'description' | 'value' + + +/** columns and relationships of "e_match_mode" */ +export interface e_match_mode { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_match_mode' +} + + +/** aggregated selection of "e_match_mode" */ +export interface e_match_mode_aggregate { + aggregate: (e_match_mode_aggregate_fields | null) + nodes: e_match_mode[] + __typename: 'e_match_mode_aggregate' +} + + +/** aggregate fields of "e_match_mode" */ +export interface e_match_mode_aggregate_fields { + count: Scalars['Int'] + max: (e_match_mode_max_fields | null) + min: (e_match_mode_min_fields | null) + __typename: 'e_match_mode_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_match_mode" */ +export type e_match_mode_constraint = 'e_match_mode_pkey' + +export type e_match_mode_enum = 'admin' | 'auto' + + +/** aggregate max on columns */ +export interface e_match_mode_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_match_mode_max_fields' +} + + +/** aggregate min on columns */ +export interface e_match_mode_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_match_mode_min_fields' +} + + +/** response of any mutation on the table "e_match_mode" */ +export interface e_match_mode_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_match_mode[] + __typename: 'e_match_mode_mutation_response' +} + + +/** select columns of table "e_match_mode" */ +export type e_match_mode_select_column = 'description' | 'value' + + +/** update columns of table "e_match_mode" */ +export type e_match_mode_update_column = 'description' | 'value' + + +/** columns and relationships of "e_match_party_sources" */ +export interface e_match_party_sources { + description: Scalars['String'] + /** An array relationship */ + match_lineup_players: match_lineup_players[] + /** An aggregate relationship */ + match_lineup_players_aggregate: match_lineup_players_aggregate + value: Scalars['String'] + __typename: 'e_match_party_sources' +} + + +/** aggregated selection of "e_match_party_sources" */ +export interface e_match_party_sources_aggregate { + aggregate: (e_match_party_sources_aggregate_fields | null) + nodes: e_match_party_sources[] + __typename: 'e_match_party_sources_aggregate' +} + + +/** aggregate fields of "e_match_party_sources" */ +export interface e_match_party_sources_aggregate_fields { + count: Scalars['Int'] + max: (e_match_party_sources_max_fields | null) + min: (e_match_party_sources_min_fields | null) + __typename: 'e_match_party_sources_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_match_party_sources" */ +export type e_match_party_sources_constraint = 'e_match_party_sources_pkey' + +export type e_match_party_sources_enum = 'faceit' | 'lobby' | 'valve' + + +/** aggregate max on columns */ +export interface e_match_party_sources_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_match_party_sources_max_fields' +} + + +/** aggregate min on columns */ +export interface e_match_party_sources_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_match_party_sources_min_fields' +} + + +/** response of any mutation on the table "e_match_party_sources" */ +export interface e_match_party_sources_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_match_party_sources[] + __typename: 'e_match_party_sources_mutation_response' +} + + +/** select columns of table "e_match_party_sources" */ +export type e_match_party_sources_select_column = 'description' | 'value' + + +/** update columns of table "e_match_party_sources" */ +export type e_match_party_sources_update_column = 'description' | 'value' + + +/** columns and relationships of "e_match_status" */ +export interface e_match_status { + description: Scalars['String'] + /** An array relationship */ + matches: matches[] + /** An aggregate relationship */ + matches_aggregate: matches_aggregate + value: Scalars['String'] + __typename: 'e_match_status' +} + + +/** aggregated selection of "e_match_status" */ +export interface e_match_status_aggregate { + aggregate: (e_match_status_aggregate_fields | null) + nodes: e_match_status[] + __typename: 'e_match_status_aggregate' +} + + +/** aggregate fields of "e_match_status" */ +export interface e_match_status_aggregate_fields { + count: Scalars['Int'] + max: (e_match_status_max_fields | null) + min: (e_match_status_min_fields | null) + __typename: 'e_match_status_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_match_status" */ +export type e_match_status_constraint = 'e_match_status_pkey' + +export type e_match_status_enum = 'Canceled' | 'Finished' | 'Forfeit' | 'Live' | 'PickingPlayers' | 'Scheduled' | 'Surrendered' | 'Tie' | 'Veto' | 'WaitingForCheckIn' | 'WaitingForServer' + + +/** aggregate max on columns */ +export interface e_match_status_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_match_status_max_fields' +} + + +/** aggregate min on columns */ +export interface e_match_status_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_match_status_min_fields' +} + + +/** response of any mutation on the table "e_match_status" */ +export interface e_match_status_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_match_status[] + __typename: 'e_match_status_mutation_response' +} + + +/** select columns of table "e_match_status" */ +export type e_match_status_select_column = 'description' | 'value' + + +/** update columns of table "e_match_status" */ +export type e_match_status_update_column = 'description' | 'value' + + +/** columns and relationships of "e_match_types" */ +export interface e_match_types { + description: Scalars['String'] + /** An array relationship */ + maps: maps[] + /** An aggregate relationship */ + maps_aggregate: maps_aggregate + value: Scalars['String'] + __typename: 'e_match_types' +} + + +/** aggregated selection of "e_match_types" */ +export interface e_match_types_aggregate { + aggregate: (e_match_types_aggregate_fields | null) + nodes: e_match_types[] + __typename: 'e_match_types_aggregate' +} + + +/** aggregate fields of "e_match_types" */ +export interface e_match_types_aggregate_fields { + count: Scalars['Int'] + max: (e_match_types_max_fields | null) + min: (e_match_types_min_fields | null) + __typename: 'e_match_types_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_match_types" */ +export type e_match_types_constraint = 'e_match_types_pkey' + +export type e_match_types_enum = 'Competitive' | 'Duel' | 'Faceit' | 'Premier' | 'Wingman' + + +/** aggregate max on columns */ +export interface e_match_types_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_match_types_max_fields' +} + + +/** aggregate min on columns */ +export interface e_match_types_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_match_types_min_fields' +} + + +/** response of any mutation on the table "e_match_types" */ +export interface e_match_types_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_match_types[] + __typename: 'e_match_types_mutation_response' +} + + +/** select columns of table "e_match_types" */ +export type e_match_types_select_column = 'description' | 'value' + + +/** update columns of table "e_match_types" */ +export type e_match_types_update_column = 'description' | 'value' + + +/** columns and relationships of "e_notification_types" */ +export interface e_notification_types { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_notification_types' +} + + +/** aggregated selection of "e_notification_types" */ +export interface e_notification_types_aggregate { + aggregate: (e_notification_types_aggregate_fields | null) + nodes: e_notification_types[] + __typename: 'e_notification_types_aggregate' +} + + +/** aggregate fields of "e_notification_types" */ +export interface e_notification_types_aggregate_fields { + count: Scalars['Int'] + max: (e_notification_types_max_fields | null) + min: (e_notification_types_min_fields | null) + __typename: 'e_notification_types_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_notification_types" */ +export type e_notification_types_constraint = 'e_notification_types_pkey' + +export type e_notification_types_enum = 'AwardGranted' | 'ChatMessage' | 'ClipReady' | 'DedicatedServerRconStatus' | 'DedicatedServerStatus' | 'DraftInvite' | 'EloRecompute' | 'EventReminder' | 'FormTeamSuggestion' | 'GameNodeStatus' | 'GameUpdate' | 'LeagueMatchUnscheduled' | 'LeagueProposalAccepted' | 'LeagueProposalDeclined' | 'LeagueProposalReceived' | 'LeagueRegistrationDecision' | 'LeagueRosterUndersized' | 'MatchAbandoned' | 'MatchChatMessage' | 'MatchImported' | 'MatchStatsReady' | 'MatchStatusChange' | 'MatchSupport' | 'NadeDriftScanFinished' | 'NadePracticeInvite' | 'NadePracticeReady' | 'NameChangeApproved' | 'NameChangeDenied' | 'NameChangeRequest' | 'NewsPublished' | 'PlayerReindex' | 'PlayerSanctioned' | 'ScrimAlertMatch' | 'ScrimMatchCanceled' | 'ScrimMatchScheduled' | 'ScrimRequestAccepted' | 'ScrimRequestCountered' | 'ScrimRequestDeclined' | 'ScrimRequestExpired' | 'ScrimRequestReceived' | 'ScrimTimeChanged' | 'SeasonEnded' | 'StorageScan' | 'TeamInvite' | 'TournamentCheckInClosing' | 'TournamentCheckInMissed' | 'TournamentCheckInOpen' | 'TournamentCreated' | 'TournamentInvite' | 'TournamentPartySignup' | 'TournamentReminder' | 'TournamentTeamInvite' | 'UtilityDriftScanFinished' | 'UtilityPracticeInvite' | 'UtilityPracticeReady' + + +/** aggregate max on columns */ +export interface e_notification_types_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_notification_types_max_fields' +} + + +/** aggregate min on columns */ +export interface e_notification_types_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_notification_types_min_fields' +} + + +/** response of any mutation on the table "e_notification_types" */ +export interface e_notification_types_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_notification_types[] + __typename: 'e_notification_types_mutation_response' +} + + +/** select columns of table "e_notification_types" */ +export type e_notification_types_select_column = 'description' | 'value' + + +/** update columns of table "e_notification_types" */ +export type e_notification_types_update_column = 'description' | 'value' + + +/** columns and relationships of "e_objective_types" */ +export interface e_objective_types { + description: Scalars['String'] + /** An array relationship */ + player_objectives: player_objectives[] + /** An aggregate relationship */ + player_objectives_aggregate: player_objectives_aggregate + value: Scalars['String'] + __typename: 'e_objective_types' +} + + +/** aggregated selection of "e_objective_types" */ +export interface e_objective_types_aggregate { + aggregate: (e_objective_types_aggregate_fields | null) + nodes: e_objective_types[] + __typename: 'e_objective_types_aggregate' +} + + +/** aggregate fields of "e_objective_types" */ +export interface e_objective_types_aggregate_fields { + count: Scalars['Int'] + max: (e_objective_types_max_fields | null) + min: (e_objective_types_min_fields | null) + __typename: 'e_objective_types_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_objective_types" */ +export type e_objective_types_constraint = 'e_objective__pkey' + +export type e_objective_types_enum = 'Defused' | 'Exploded' | 'Planted' + + +/** aggregate max on columns */ +export interface e_objective_types_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_objective_types_max_fields' +} + + +/** aggregate min on columns */ +export interface e_objective_types_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_objective_types_min_fields' +} + + +/** response of any mutation on the table "e_objective_types" */ +export interface e_objective_types_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_objective_types[] + __typename: 'e_objective_types_mutation_response' +} + + +/** select columns of table "e_objective_types" */ +export type e_objective_types_select_column = 'description' | 'value' + + +/** update columns of table "e_objective_types" */ +export type e_objective_types_update_column = 'description' | 'value' + + +/** columns and relationships of "e_player_roles" */ +export interface e_player_roles { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_player_roles' +} + + +/** aggregated selection of "e_player_roles" */ +export interface e_player_roles_aggregate { + aggregate: (e_player_roles_aggregate_fields | null) + nodes: e_player_roles[] + __typename: 'e_player_roles_aggregate' +} + + +/** aggregate fields of "e_player_roles" */ +export interface e_player_roles_aggregate_fields { + count: Scalars['Int'] + max: (e_player_roles_max_fields | null) + min: (e_player_roles_min_fields | null) + __typename: 'e_player_roles_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_player_roles" */ +export type e_player_roles_constraint = 'e_player_roles_pkey' + +export type e_player_roles_enum = 'administrator' | 'match_organizer' | 'moderator' | 'streamer' | 'tournament_organizer' | 'user' | 'verified_user' + + +/** aggregate max on columns */ +export interface e_player_roles_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_player_roles_max_fields' +} + + +/** aggregate min on columns */ +export interface e_player_roles_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_player_roles_min_fields' +} + + +/** response of any mutation on the table "e_player_roles" */ +export interface e_player_roles_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_player_roles[] + __typename: 'e_player_roles_mutation_response' +} + + +/** select columns of table "e_player_roles" */ +export type e_player_roles_select_column = 'description' | 'value' + + +/** update columns of table "e_player_roles" */ +export type e_player_roles_update_column = 'description' | 'value' + + +/** columns and relationships of "e_plugin_runtimes" */ +export interface e_plugin_runtimes { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_plugin_runtimes' +} + + +/** aggregated selection of "e_plugin_runtimes" */ +export interface e_plugin_runtimes_aggregate { + aggregate: (e_plugin_runtimes_aggregate_fields | null) + nodes: e_plugin_runtimes[] + __typename: 'e_plugin_runtimes_aggregate' +} + + +/** aggregate fields of "e_plugin_runtimes" */ +export interface e_plugin_runtimes_aggregate_fields { + count: Scalars['Int'] + max: (e_plugin_runtimes_max_fields | null) + min: (e_plugin_runtimes_min_fields | null) + __typename: 'e_plugin_runtimes_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_plugin_runtimes" */ +export type e_plugin_runtimes_constraint = 'e_plugin_runtimes_pkey' + +export type e_plugin_runtimes_enum = 'counterstrikesharp' | 'swiftlys2' + + +/** aggregate max on columns */ +export interface e_plugin_runtimes_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_plugin_runtimes_max_fields' +} + + +/** aggregate min on columns */ +export interface e_plugin_runtimes_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_plugin_runtimes_min_fields' +} + + +/** response of any mutation on the table "e_plugin_runtimes" */ +export interface e_plugin_runtimes_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_plugin_runtimes[] + __typename: 'e_plugin_runtimes_mutation_response' +} + + +/** select columns of table "e_plugin_runtimes" */ +export type e_plugin_runtimes_select_column = 'description' | 'value' + + +/** update columns of table "e_plugin_runtimes" */ +export type e_plugin_runtimes_update_column = 'description' | 'value' + + +/** columns and relationships of "e_ready_settings" */ +export interface e_ready_settings { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_ready_settings' +} + + +/** aggregated selection of "e_ready_settings" */ +export interface e_ready_settings_aggregate { + aggregate: (e_ready_settings_aggregate_fields | null) + nodes: e_ready_settings[] + __typename: 'e_ready_settings_aggregate' +} + + +/** aggregate fields of "e_ready_settings" */ +export interface e_ready_settings_aggregate_fields { + count: Scalars['Int'] + max: (e_ready_settings_max_fields | null) + min: (e_ready_settings_min_fields | null) + __typename: 'e_ready_settings_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_ready_settings" */ +export type e_ready_settings_constraint = 'e_ready_settings_pkey' + +export type e_ready_settings_enum = 'Admin' | 'Captains' | 'Coach' | 'Players' + + +/** aggregate max on columns */ +export interface e_ready_settings_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_ready_settings_max_fields' +} + + +/** aggregate min on columns */ +export interface e_ready_settings_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_ready_settings_min_fields' +} + + +/** response of any mutation on the table "e_ready_settings" */ +export interface e_ready_settings_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_ready_settings[] + __typename: 'e_ready_settings_mutation_response' +} + + +/** select columns of table "e_ready_settings" */ +export type e_ready_settings_select_column = 'description' | 'value' + + +/** update columns of table "e_ready_settings" */ +export type e_ready_settings_update_column = 'description' | 'value' + + +/** columns and relationships of "e_sanction_scopes" */ +export interface e_sanction_scopes { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_sanction_scopes' +} + + +/** aggregated selection of "e_sanction_scopes" */ +export interface e_sanction_scopes_aggregate { + aggregate: (e_sanction_scopes_aggregate_fields | null) + nodes: e_sanction_scopes[] + __typename: 'e_sanction_scopes_aggregate' +} + + +/** aggregate fields of "e_sanction_scopes" */ +export interface e_sanction_scopes_aggregate_fields { + count: Scalars['Int'] + max: (e_sanction_scopes_max_fields | null) + min: (e_sanction_scopes_min_fields | null) + __typename: 'e_sanction_scopes_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_sanction_scopes" */ +export type e_sanction_scopes_constraint = 'e_sanction_scopes_pkey' + + +/** aggregate max on columns */ +export interface e_sanction_scopes_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_sanction_scopes_max_fields' +} + + +/** aggregate min on columns */ +export interface e_sanction_scopes_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_sanction_scopes_min_fields' +} + + +/** response of any mutation on the table "e_sanction_scopes" */ +export interface e_sanction_scopes_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_sanction_scopes[] + __typename: 'e_sanction_scopes_mutation_response' +} + + +/** select columns of table "e_sanction_scopes" */ +export type e_sanction_scopes_select_column = 'description' | 'value' + + +/** update columns of table "e_sanction_scopes" */ +export type e_sanction_scopes_update_column = 'description' | 'value' + + +/** columns and relationships of "e_sanction_sources" */ +export interface e_sanction_sources { + /** Comma separated ban durations in minutes, indexed by occurrence count */ + default_durations: Scalars['String'] + default_enabled: Scalars['Boolean'] + default_scope: Scalars['String'] + default_threshold: Scalars['Int'] + default_window_days: Scalars['Int'] + description: Scalars['String'] + /** An object relationship */ + e_sanction_scope: e_sanction_scopes + value: Scalars['String'] + /** Source issues a player_sanctions ban row instead of a scoped cooldown */ + writes_platform_ban: Scalars['Boolean'] + __typename: 'e_sanction_sources' +} + + +/** aggregated selection of "e_sanction_sources" */ +export interface e_sanction_sources_aggregate { + aggregate: (e_sanction_sources_aggregate_fields | null) + nodes: e_sanction_sources[] + __typename: 'e_sanction_sources_aggregate' +} + + +/** aggregate fields of "e_sanction_sources" */ +export interface e_sanction_sources_aggregate_fields { + avg: (e_sanction_sources_avg_fields | null) + count: Scalars['Int'] + max: (e_sanction_sources_max_fields | null) + min: (e_sanction_sources_min_fields | null) + stddev: (e_sanction_sources_stddev_fields | null) + stddev_pop: (e_sanction_sources_stddev_pop_fields | null) + stddev_samp: (e_sanction_sources_stddev_samp_fields | null) + sum: (e_sanction_sources_sum_fields | null) + var_pop: (e_sanction_sources_var_pop_fields | null) + var_samp: (e_sanction_sources_var_samp_fields | null) + variance: (e_sanction_sources_variance_fields | null) + __typename: 'e_sanction_sources_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface e_sanction_sources_avg_fields { + default_threshold: (Scalars['Float'] | null) + default_window_days: (Scalars['Float'] | null) + __typename: 'e_sanction_sources_avg_fields' +} + + +/** unique or primary key constraints on table "e_sanction_sources" */ +export type e_sanction_sources_constraint = 'e_sanction_sources_pkey' + + +/** aggregate max on columns */ +export interface e_sanction_sources_max_fields { + /** Comma separated ban durations in minutes, indexed by occurrence count */ + default_durations: (Scalars['String'] | null) + default_scope: (Scalars['String'] | null) + default_threshold: (Scalars['Int'] | null) + default_window_days: (Scalars['Int'] | null) + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_sanction_sources_max_fields' +} + + +/** aggregate min on columns */ +export interface e_sanction_sources_min_fields { + /** Comma separated ban durations in minutes, indexed by occurrence count */ + default_durations: (Scalars['String'] | null) + default_scope: (Scalars['String'] | null) + default_threshold: (Scalars['Int'] | null) + default_window_days: (Scalars['Int'] | null) + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_sanction_sources_min_fields' +} + + +/** response of any mutation on the table "e_sanction_sources" */ +export interface e_sanction_sources_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_sanction_sources[] + __typename: 'e_sanction_sources_mutation_response' +} + + +/** select columns of table "e_sanction_sources" */ +export type e_sanction_sources_select_column = 'default_durations' | 'default_enabled' | 'default_scope' | 'default_threshold' | 'default_window_days' | 'description' | 'value' | 'writes_platform_ban' + + +/** aggregate stddev on columns */ +export interface e_sanction_sources_stddev_fields { + default_threshold: (Scalars['Float'] | null) + default_window_days: (Scalars['Float'] | null) + __typename: 'e_sanction_sources_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface e_sanction_sources_stddev_pop_fields { + default_threshold: (Scalars['Float'] | null) + default_window_days: (Scalars['Float'] | null) + __typename: 'e_sanction_sources_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface e_sanction_sources_stddev_samp_fields { + default_threshold: (Scalars['Float'] | null) + default_window_days: (Scalars['Float'] | null) + __typename: 'e_sanction_sources_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface e_sanction_sources_sum_fields { + default_threshold: (Scalars['Int'] | null) + default_window_days: (Scalars['Int'] | null) + __typename: 'e_sanction_sources_sum_fields' +} + + +/** update columns of table "e_sanction_sources" */ +export type e_sanction_sources_update_column = 'default_durations' | 'default_enabled' | 'default_scope' | 'default_threshold' | 'default_window_days' | 'description' | 'value' | 'writes_platform_ban' + + +/** aggregate var_pop on columns */ +export interface e_sanction_sources_var_pop_fields { + default_threshold: (Scalars['Float'] | null) + default_window_days: (Scalars['Float'] | null) + __typename: 'e_sanction_sources_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface e_sanction_sources_var_samp_fields { + default_threshold: (Scalars['Float'] | null) + default_window_days: (Scalars['Float'] | null) + __typename: 'e_sanction_sources_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface e_sanction_sources_variance_fields { + default_threshold: (Scalars['Float'] | null) + default_window_days: (Scalars['Float'] | null) + __typename: 'e_sanction_sources_variance_fields' +} + + +/** columns and relationships of "e_sanction_types" */ +export interface e_sanction_types { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_sanction_types' +} + + +/** aggregated selection of "e_sanction_types" */ +export interface e_sanction_types_aggregate { + aggregate: (e_sanction_types_aggregate_fields | null) + nodes: e_sanction_types[] + __typename: 'e_sanction_types_aggregate' +} + + +/** aggregate fields of "e_sanction_types" */ +export interface e_sanction_types_aggregate_fields { + count: Scalars['Int'] + max: (e_sanction_types_max_fields | null) + min: (e_sanction_types_min_fields | null) + __typename: 'e_sanction_types_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_sanction_types" */ +export type e_sanction_types_constraint = 'e_sanction_types_pkey' + +export type e_sanction_types_enum = 'ban' | 'gag' | 'mute' | 'silence' + + +/** aggregate max on columns */ +export interface e_sanction_types_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_sanction_types_max_fields' +} + + +/** aggregate min on columns */ +export interface e_sanction_types_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_sanction_types_min_fields' +} + + +/** response of any mutation on the table "e_sanction_types" */ +export interface e_sanction_types_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_sanction_types[] + __typename: 'e_sanction_types_mutation_response' +} + + +/** select columns of table "e_sanction_types" */ +export type e_sanction_types_select_column = 'description' | 'value' + + +/** update columns of table "e_sanction_types" */ +export type e_sanction_types_update_column = 'description' | 'value' + + +/** columns and relationships of "e_scrim_request_statuses" */ +export interface e_scrim_request_statuses { + description: Scalars['String'] + /** An array relationship */ + scrim_requests: team_scrim_requests[] + /** An aggregate relationship */ + scrim_requests_aggregate: team_scrim_requests_aggregate + value: Scalars['String'] + __typename: 'e_scrim_request_statuses' +} + + +/** aggregated selection of "e_scrim_request_statuses" */ +export interface e_scrim_request_statuses_aggregate { + aggregate: (e_scrim_request_statuses_aggregate_fields | null) + nodes: e_scrim_request_statuses[] + __typename: 'e_scrim_request_statuses_aggregate' +} + + +/** aggregate fields of "e_scrim_request_statuses" */ +export interface e_scrim_request_statuses_aggregate_fields { + count: Scalars['Int'] + max: (e_scrim_request_statuses_max_fields | null) + min: (e_scrim_request_statuses_min_fields | null) + __typename: 'e_scrim_request_statuses_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_scrim_request_statuses" */ +export type e_scrim_request_statuses_constraint = 'e_scrim_request_statuses_pkey' + +export type e_scrim_request_statuses_enum = 'Accepted' | 'Cancelled' | 'Countered' | 'Declined' | 'Expired' | 'Matched' | 'Pending' + + +/** aggregate max on columns */ +export interface e_scrim_request_statuses_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_scrim_request_statuses_max_fields' +} + + +/** aggregate min on columns */ +export interface e_scrim_request_statuses_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_scrim_request_statuses_min_fields' +} + + +/** response of any mutation on the table "e_scrim_request_statuses" */ +export interface e_scrim_request_statuses_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_scrim_request_statuses[] + __typename: 'e_scrim_request_statuses_mutation_response' +} + + +/** select columns of table "e_scrim_request_statuses" */ +export type e_scrim_request_statuses_select_column = 'description' | 'value' + + +/** update columns of table "e_scrim_request_statuses" */ +export type e_scrim_request_statuses_update_column = 'description' | 'value' + + +/** columns and relationships of "e_server_types" */ +export interface e_server_types { + description: Scalars['String'] + /** An array relationship */ + servers: servers[] + /** An aggregate relationship */ + servers_aggregate: servers_aggregate + value: Scalars['String'] + __typename: 'e_server_types' +} + + +/** aggregated selection of "e_server_types" */ +export interface e_server_types_aggregate { + aggregate: (e_server_types_aggregate_fields | null) + nodes: e_server_types[] + __typename: 'e_server_types_aggregate' +} + + +/** aggregate fields of "e_server_types" */ +export interface e_server_types_aggregate_fields { + count: Scalars['Int'] + max: (e_server_types_max_fields | null) + min: (e_server_types_min_fields | null) + __typename: 'e_server_types_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_server_types" */ +export type e_server_types_constraint = 'e_server_types_pkey' + +export type e_server_types_enum = 'ArmsRace' | 'Casual' | 'Competitive' | 'Custom' | 'Deathmatch' | 'Practice' | 'Ranked' | 'Retake' | 'Wingman' + + +/** aggregate max on columns */ +export interface e_server_types_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_server_types_max_fields' +} + + +/** aggregate min on columns */ +export interface e_server_types_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_server_types_min_fields' +} + + +/** response of any mutation on the table "e_server_types" */ +export interface e_server_types_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_server_types[] + __typename: 'e_server_types_mutation_response' +} + + +/** select columns of table "e_server_types" */ +export type e_server_types_select_column = 'description' | 'value' + + +/** update columns of table "e_server_types" */ +export type e_server_types_update_column = 'description' | 'value' + + +/** columns and relationships of "e_sides" */ +export interface e_sides { + description: Scalars['String'] + /** An array relationship */ + match_map_lineup_1: match_maps[] + /** An aggregate relationship */ + match_map_lineup_1_aggregate: match_maps_aggregate + /** An array relationship */ + match_map_lineup_2: match_maps[] + /** An aggregate relationship */ + match_map_lineup_2_aggregate: match_maps_aggregate + value: Scalars['String'] + __typename: 'e_sides' +} + + +/** aggregated selection of "e_sides" */ +export interface e_sides_aggregate { + aggregate: (e_sides_aggregate_fields | null) + nodes: e_sides[] + __typename: 'e_sides_aggregate' +} + + +/** aggregate fields of "e_sides" */ +export interface e_sides_aggregate_fields { + count: Scalars['Int'] + max: (e_sides_max_fields | null) + min: (e_sides_min_fields | null) + __typename: 'e_sides_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_sides" */ +export type e_sides_constraint = 'e_teams_pkey' + +export type e_sides_enum = 'CT' | 'None' | 'Spectator' | 'TERRORIST' + + +/** aggregate max on columns */ +export interface e_sides_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_sides_max_fields' +} + + +/** aggregate min on columns */ +export interface e_sides_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_sides_min_fields' +} + + +/** response of any mutation on the table "e_sides" */ +export interface e_sides_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_sides[] + __typename: 'e_sides_mutation_response' +} + + +/** select columns of table "e_sides" */ +export type e_sides_select_column = 'description' | 'value' + + +/** update columns of table "e_sides" */ +export type e_sides_update_column = 'description' | 'value' + + +/** columns and relationships of "e_system_alert_types" */ +export interface e_system_alert_types { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_system_alert_types' +} + + +/** aggregated selection of "e_system_alert_types" */ +export interface e_system_alert_types_aggregate { + aggregate: (e_system_alert_types_aggregate_fields | null) + nodes: e_system_alert_types[] + __typename: 'e_system_alert_types_aggregate' +} + + +/** aggregate fields of "e_system_alert_types" */ +export interface e_system_alert_types_aggregate_fields { + count: Scalars['Int'] + max: (e_system_alert_types_max_fields | null) + min: (e_system_alert_types_min_fields | null) + __typename: 'e_system_alert_types_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_system_alert_types" */ +export type e_system_alert_types_constraint = 'e_system_alert_types_pkey' + +export type e_system_alert_types_enum = 'critical' | 'info' | 'warning' + + +/** aggregate max on columns */ +export interface e_system_alert_types_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_system_alert_types_max_fields' +} + + +/** aggregate min on columns */ +export interface e_system_alert_types_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_system_alert_types_min_fields' +} + + +/** response of any mutation on the table "e_system_alert_types" */ +export interface e_system_alert_types_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_system_alert_types[] + __typename: 'e_system_alert_types_mutation_response' +} + + +/** select columns of table "e_system_alert_types" */ +export type e_system_alert_types_select_column = 'description' | 'value' + + +/** update columns of table "e_system_alert_types" */ +export type e_system_alert_types_update_column = 'description' | 'value' + + +/** columns and relationships of "e_team_roles" */ +export interface e_team_roles { + description: Scalars['String'] + /** An array relationship */ + team_rosters: team_roster[] + /** An aggregate relationship */ + team_rosters_aggregate: team_roster_aggregate + /** An array relationship */ + tournament_team_rosters: tournament_team_roster[] + /** An aggregate relationship */ + tournament_team_rosters_aggregate: tournament_team_roster_aggregate + value: Scalars['String'] + __typename: 'e_team_roles' +} + + +/** aggregated selection of "e_team_roles" */ +export interface e_team_roles_aggregate { + aggregate: (e_team_roles_aggregate_fields | null) + nodes: e_team_roles[] + __typename: 'e_team_roles_aggregate' +} + + +/** aggregate fields of "e_team_roles" */ +export interface e_team_roles_aggregate_fields { + count: Scalars['Int'] + max: (e_team_roles_max_fields | null) + min: (e_team_roles_min_fields | null) + __typename: 'e_team_roles_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_team_roles" */ +export type e_team_roles_constraint = 'e_team_roles_pkey' + +export type e_team_roles_enum = 'Admin' | 'Invite' | 'Member' + + +/** aggregate max on columns */ +export interface e_team_roles_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_team_roles_max_fields' +} + + +/** aggregate min on columns */ +export interface e_team_roles_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_team_roles_min_fields' +} + + +/** response of any mutation on the table "e_team_roles" */ +export interface e_team_roles_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_team_roles[] + __typename: 'e_team_roles_mutation_response' +} + + +/** select columns of table "e_team_roles" */ +export type e_team_roles_select_column = 'description' | 'value' + + +/** update columns of table "e_team_roles" */ +export type e_team_roles_update_column = 'description' | 'value' + + +/** columns and relationships of "e_team_roster_statuses" */ +export interface e_team_roster_statuses { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_team_roster_statuses' +} + + +/** aggregated selection of "e_team_roster_statuses" */ +export interface e_team_roster_statuses_aggregate { + aggregate: (e_team_roster_statuses_aggregate_fields | null) + nodes: e_team_roster_statuses[] + __typename: 'e_team_roster_statuses_aggregate' +} + + +/** aggregate fields of "e_team_roster_statuses" */ +export interface e_team_roster_statuses_aggregate_fields { + count: Scalars['Int'] + max: (e_team_roster_statuses_max_fields | null) + min: (e_team_roster_statuses_min_fields | null) + __typename: 'e_team_roster_statuses_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_team_roster_statuses" */ +export type e_team_roster_statuses_constraint = 'e_team_roster_statuses_pkey' + +export type e_team_roster_statuses_enum = 'Benched' | 'Starter' | 'Substitute' + + +/** aggregate max on columns */ +export interface e_team_roster_statuses_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_team_roster_statuses_max_fields' +} + + +/** aggregate min on columns */ +export interface e_team_roster_statuses_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_team_roster_statuses_min_fields' +} + + +/** response of any mutation on the table "e_team_roster_statuses" */ +export interface e_team_roster_statuses_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_team_roster_statuses[] + __typename: 'e_team_roster_statuses_mutation_response' +} + + +/** select columns of table "e_team_roster_statuses" */ +export type e_team_roster_statuses_select_column = 'description' | 'value' + + +/** update columns of table "e_team_roster_statuses" */ +export type e_team_roster_statuses_update_column = 'description' | 'value' + + +/** columns and relationships of "e_timeout_settings" */ +export interface e_timeout_settings { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_timeout_settings' +} + + +/** aggregated selection of "e_timeout_settings" */ +export interface e_timeout_settings_aggregate { + aggregate: (e_timeout_settings_aggregate_fields | null) + nodes: e_timeout_settings[] + __typename: 'e_timeout_settings_aggregate' +} + + +/** aggregate fields of "e_timeout_settings" */ +export interface e_timeout_settings_aggregate_fields { + count: Scalars['Int'] + max: (e_timeout_settings_max_fields | null) + min: (e_timeout_settings_min_fields | null) + __typename: 'e_timeout_settings_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_timeout_settings" */ +export type e_timeout_settings_constraint = 'e_timeout_settings_pkey' + +export type e_timeout_settings_enum = 'Admin' | 'Coach' | 'CoachAndCaptains' | 'CoachAndPlayers' + + +/** aggregate max on columns */ +export interface e_timeout_settings_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_timeout_settings_max_fields' +} + + +/** aggregate min on columns */ +export interface e_timeout_settings_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_timeout_settings_min_fields' +} + + +/** response of any mutation on the table "e_timeout_settings" */ +export interface e_timeout_settings_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_timeout_settings[] + __typename: 'e_timeout_settings_mutation_response' +} + + +/** select columns of table "e_timeout_settings" */ +export type e_timeout_settings_select_column = 'description' | 'value' + + +/** update columns of table "e_timeout_settings" */ +export type e_timeout_settings_update_column = 'description' | 'value' + + +/** columns and relationships of "e_tournament_categories" */ +export interface e_tournament_categories { + description: Scalars['String'] + /** An array relationship */ + tournament_categories: tournament_categories[] + /** An aggregate relationship */ + tournament_categories_aggregate: tournament_categories_aggregate + value: Scalars['String'] + __typename: 'e_tournament_categories' +} + + +/** aggregated selection of "e_tournament_categories" */ +export interface e_tournament_categories_aggregate { + aggregate: (e_tournament_categories_aggregate_fields | null) + nodes: e_tournament_categories[] + __typename: 'e_tournament_categories_aggregate' +} + + +/** aggregate fields of "e_tournament_categories" */ +export interface e_tournament_categories_aggregate_fields { + count: Scalars['Int'] + max: (e_tournament_categories_max_fields | null) + min: (e_tournament_categories_min_fields | null) + __typename: 'e_tournament_categories_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_tournament_categories" */ +export type e_tournament_categories_constraint = 'e_tournament_categories_pkey' + +export type e_tournament_categories_enum = 'LAN' | 'League' | 'LocationEvent' | 'OnlineEvent' + + +/** aggregate max on columns */ +export interface e_tournament_categories_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_tournament_categories_max_fields' +} + + +/** aggregate min on columns */ +export interface e_tournament_categories_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_tournament_categories_min_fields' +} + + +/** response of any mutation on the table "e_tournament_categories" */ +export interface e_tournament_categories_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_tournament_categories[] + __typename: 'e_tournament_categories_mutation_response' +} + + +/** select columns of table "e_tournament_categories" */ +export type e_tournament_categories_select_column = 'description' | 'value' + + +/** update columns of table "e_tournament_categories" */ +export type e_tournament_categories_update_column = 'description' | 'value' + + +/** columns and relationships of "e_tournament_free_agent_statuses" */ +export interface e_tournament_free_agent_statuses { + description: Scalars['String'] + /** An array relationship */ + tournament_free_agents: tournament_free_agents[] + /** An aggregate relationship */ + tournament_free_agents_aggregate: tournament_free_agents_aggregate + value: Scalars['String'] + __typename: 'e_tournament_free_agent_statuses' +} + + +/** aggregated selection of "e_tournament_free_agent_statuses" */ +export interface e_tournament_free_agent_statuses_aggregate { + aggregate: (e_tournament_free_agent_statuses_aggregate_fields | null) + nodes: e_tournament_free_agent_statuses[] + __typename: 'e_tournament_free_agent_statuses_aggregate' +} + + +/** aggregate fields of "e_tournament_free_agent_statuses" */ +export interface e_tournament_free_agent_statuses_aggregate_fields { + count: Scalars['Int'] + max: (e_tournament_free_agent_statuses_max_fields | null) + min: (e_tournament_free_agent_statuses_min_fields | null) + __typename: 'e_tournament_free_agent_statuses_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_tournament_free_agent_statuses" */ +export type e_tournament_free_agent_statuses_constraint = 'e_tournament_free_agent_statuses_pkey' + +export type e_tournament_free_agent_statuses_enum = 'drafted' | 'registered' | 'waitlisted' | 'withdrawn' + + +/** aggregate max on columns */ +export interface e_tournament_free_agent_statuses_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_tournament_free_agent_statuses_max_fields' +} + + +/** aggregate min on columns */ +export interface e_tournament_free_agent_statuses_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_tournament_free_agent_statuses_min_fields' +} + + +/** response of any mutation on the table "e_tournament_free_agent_statuses" */ +export interface e_tournament_free_agent_statuses_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_tournament_free_agent_statuses[] + __typename: 'e_tournament_free_agent_statuses_mutation_response' +} + + +/** select columns of table "e_tournament_free_agent_statuses" */ +export type e_tournament_free_agent_statuses_select_column = 'description' | 'value' + + +/** update columns of table "e_tournament_free_agent_statuses" */ +export type e_tournament_free_agent_statuses_update_column = 'description' | 'value' + + +/** columns and relationships of "e_tournament_registration_types" */ +export interface e_tournament_registration_types { + description: Scalars['String'] + /** An array relationship */ + tournaments: tournaments[] + /** An aggregate relationship */ + tournaments_aggregate: tournaments_aggregate + value: Scalars['String'] + __typename: 'e_tournament_registration_types' +} + + +/** aggregated selection of "e_tournament_registration_types" */ +export interface e_tournament_registration_types_aggregate { + aggregate: (e_tournament_registration_types_aggregate_fields | null) + nodes: e_tournament_registration_types[] + __typename: 'e_tournament_registration_types_aggregate' +} + + +/** aggregate fields of "e_tournament_registration_types" */ +export interface e_tournament_registration_types_aggregate_fields { + count: Scalars['Int'] + max: (e_tournament_registration_types_max_fields | null) + min: (e_tournament_registration_types_min_fields | null) + __typename: 'e_tournament_registration_types_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_tournament_registration_types" */ +export type e_tournament_registration_types_constraint = 'e_tournament_registration_types_pkey' + +export type e_tournament_registration_types_enum = 'both' | 'free_agents' | 'teams' + + +/** aggregate max on columns */ +export interface e_tournament_registration_types_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_tournament_registration_types_max_fields' +} + + +/** aggregate min on columns */ +export interface e_tournament_registration_types_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_tournament_registration_types_min_fields' +} + + +/** response of any mutation on the table "e_tournament_registration_types" */ +export interface e_tournament_registration_types_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_tournament_registration_types[] + __typename: 'e_tournament_registration_types_mutation_response' +} + + +/** select columns of table "e_tournament_registration_types" */ +export type e_tournament_registration_types_select_column = 'description' | 'value' + + +/** update columns of table "e_tournament_registration_types" */ +export type e_tournament_registration_types_update_column = 'description' | 'value' + + +/** columns and relationships of "e_tournament_stage_types" */ +export interface e_tournament_stage_types { + description: Scalars['String'] + /** An array relationship */ + tournament_stages: tournament_stages[] + /** An aggregate relationship */ + tournament_stages_aggregate: tournament_stages_aggregate + value: Scalars['String'] + __typename: 'e_tournament_stage_types' +} + + +/** aggregated selection of "e_tournament_stage_types" */ +export interface e_tournament_stage_types_aggregate { + aggregate: (e_tournament_stage_types_aggregate_fields | null) + nodes: e_tournament_stage_types[] + __typename: 'e_tournament_stage_types_aggregate' +} + + +/** aggregate fields of "e_tournament_stage_types" */ +export interface e_tournament_stage_types_aggregate_fields { + count: Scalars['Int'] + max: (e_tournament_stage_types_max_fields | null) + min: (e_tournament_stage_types_min_fields | null) + __typename: 'e_tournament_stage_types_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_tournament_stage_types" */ +export type e_tournament_stage_types_constraint = 'e_tournament_stage_types_pkey' + +export type e_tournament_stage_types_enum = 'DoubleElimination' | 'RoundRobin' | 'SingleElimination' | 'Swiss' + + +/** aggregate max on columns */ +export interface e_tournament_stage_types_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_tournament_stage_types_max_fields' +} + + +/** aggregate min on columns */ +export interface e_tournament_stage_types_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_tournament_stage_types_min_fields' +} + + +/** response of any mutation on the table "e_tournament_stage_types" */ +export interface e_tournament_stage_types_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_tournament_stage_types[] + __typename: 'e_tournament_stage_types_mutation_response' +} + + +/** select columns of table "e_tournament_stage_types" */ +export type e_tournament_stage_types_select_column = 'description' | 'value' + + +/** update columns of table "e_tournament_stage_types" */ +export type e_tournament_stage_types_update_column = 'description' | 'value' + + +/** columns and relationships of "e_tournament_status" */ +export interface e_tournament_status { + description: Scalars['String'] + /** An array relationship */ + tournaments: tournaments[] + /** An aggregate relationship */ + tournaments_aggregate: tournaments_aggregate + value: Scalars['String'] + __typename: 'e_tournament_status' +} + + +/** aggregated selection of "e_tournament_status" */ +export interface e_tournament_status_aggregate { + aggregate: (e_tournament_status_aggregate_fields | null) + nodes: e_tournament_status[] + __typename: 'e_tournament_status_aggregate' +} + + +/** aggregate fields of "e_tournament_status" */ +export interface e_tournament_status_aggregate_fields { + count: Scalars['Int'] + max: (e_tournament_status_max_fields | null) + min: (e_tournament_status_min_fields | null) + __typename: 'e_tournament_status_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_tournament_status" */ +export type e_tournament_status_constraint = 'e_tournament_status_pkey' + +export type e_tournament_status_enum = 'Cancelled' | 'CancelledMinTeams' | 'CheckInReview' | 'Finished' | 'Live' | 'Paused' | 'RegistrationClosed' | 'RegistrationOpen' | 'Setup' + + +/** aggregate max on columns */ +export interface e_tournament_status_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_tournament_status_max_fields' +} + + +/** aggregate min on columns */ +export interface e_tournament_status_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_tournament_status_min_fields' +} + + +/** response of any mutation on the table "e_tournament_status" */ +export interface e_tournament_status_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_tournament_status[] + __typename: 'e_tournament_status_mutation_response' +} + + +/** select columns of table "e_tournament_status" */ +export type e_tournament_status_select_column = 'description' | 'value' + + +/** update columns of table "e_tournament_status" */ +export type e_tournament_status_update_column = 'description' | 'value' + + +/** columns and relationships of "e_utility_practice_access" */ +export interface e_utility_practice_access { + description: Scalars['String'] + /** An array relationship */ + utility_practice_sessions: utility_practice_sessions[] + /** An aggregate relationship */ + utility_practice_sessions_aggregate: utility_practice_sessions_aggregate + value: Scalars['String'] + __typename: 'e_utility_practice_access' +} + + +/** aggregated selection of "e_utility_practice_access" */ +export interface e_utility_practice_access_aggregate { + aggregate: (e_utility_practice_access_aggregate_fields | null) + nodes: e_utility_practice_access[] + __typename: 'e_utility_practice_access_aggregate' +} + + +/** aggregate fields of "e_utility_practice_access" */ +export interface e_utility_practice_access_aggregate_fields { + count: Scalars['Int'] + max: (e_utility_practice_access_max_fields | null) + min: (e_utility_practice_access_min_fields | null) + __typename: 'e_utility_practice_access_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_utility_practice_access" */ +export type e_utility_practice_access_constraint = 'e_utility_practice_access_pkey' + +export type e_utility_practice_access_enum = 'Friends' | 'Invite' | 'Open' | 'Private' + + +/** aggregate max on columns */ +export interface e_utility_practice_access_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_utility_practice_access_max_fields' +} + + +/** aggregate min on columns */ +export interface e_utility_practice_access_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_utility_practice_access_min_fields' +} + + +/** response of any mutation on the table "e_utility_practice_access" */ +export interface e_utility_practice_access_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_utility_practice_access[] + __typename: 'e_utility_practice_access_mutation_response' +} + + +/** select columns of table "e_utility_practice_access" */ +export type e_utility_practice_access_select_column = 'description' | 'value' + + +/** update columns of table "e_utility_practice_access" */ +export type e_utility_practice_access_update_column = 'description' | 'value' + + +/** columns and relationships of "e_utility_practice_statuses" */ +export interface e_utility_practice_statuses { + description: Scalars['String'] + /** An array relationship */ + utility_practice_sessions: utility_practice_sessions[] + /** An aggregate relationship */ + utility_practice_sessions_aggregate: utility_practice_sessions_aggregate + value: Scalars['String'] + __typename: 'e_utility_practice_statuses' +} + + +/** aggregated selection of "e_utility_practice_statuses" */ +export interface e_utility_practice_statuses_aggregate { + aggregate: (e_utility_practice_statuses_aggregate_fields | null) + nodes: e_utility_practice_statuses[] + __typename: 'e_utility_practice_statuses_aggregate' +} + + +/** aggregate fields of "e_utility_practice_statuses" */ +export interface e_utility_practice_statuses_aggregate_fields { + count: Scalars['Int'] + max: (e_utility_practice_statuses_max_fields | null) + min: (e_utility_practice_statuses_min_fields | null) + __typename: 'e_utility_practice_statuses_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_utility_practice_statuses" */ +export type e_utility_practice_statuses_constraint = 'e_utility_practice_statuses_pkey' + +export type e_utility_practice_statuses_enum = 'Ended' | 'Failed' | 'Ready' | 'Starting' + + +/** aggregate max on columns */ +export interface e_utility_practice_statuses_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_utility_practice_statuses_max_fields' +} + + +/** aggregate min on columns */ +export interface e_utility_practice_statuses_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_utility_practice_statuses_min_fields' +} + + +/** response of any mutation on the table "e_utility_practice_statuses" */ +export interface e_utility_practice_statuses_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_utility_practice_statuses[] + __typename: 'e_utility_practice_statuses_mutation_response' +} + + +/** select columns of table "e_utility_practice_statuses" */ +export type e_utility_practice_statuses_select_column = 'description' | 'value' + + +/** update columns of table "e_utility_practice_statuses" */ +export type e_utility_practice_statuses_update_column = 'description' | 'value' + + +/** columns and relationships of "e_utility_sources" */ +export interface e_utility_sources { + description: Scalars['String'] + /** An array relationship */ + utility_lineups: utility_lineups[] + /** An aggregate relationship */ + utility_lineups_aggregate: utility_lineups_aggregate + value: Scalars['String'] + __typename: 'e_utility_sources' +} + + +/** aggregated selection of "e_utility_sources" */ +export interface e_utility_sources_aggregate { + aggregate: (e_utility_sources_aggregate_fields | null) + nodes: e_utility_sources[] + __typename: 'e_utility_sources_aggregate' +} + + +/** aggregate fields of "e_utility_sources" */ +export interface e_utility_sources_aggregate_fields { + count: Scalars['Int'] + max: (e_utility_sources_max_fields | null) + min: (e_utility_sources_min_fields | null) + __typename: 'e_utility_sources_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_utility_sources" */ +export type e_utility_sources_constraint = 'e_utility_sources_pkey' + +export type e_utility_sources_enum = 'demo' | 'editor' | 'fork' | 'import' | 'plugin' + + +/** aggregate max on columns */ +export interface e_utility_sources_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_utility_sources_max_fields' +} + + +/** aggregate min on columns */ +export interface e_utility_sources_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_utility_sources_min_fields' +} + + +/** response of any mutation on the table "e_utility_sources" */ +export interface e_utility_sources_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_utility_sources[] + __typename: 'e_utility_sources_mutation_response' +} + + +/** select columns of table "e_utility_sources" */ +export type e_utility_sources_select_column = 'description' | 'value' + + +/** update columns of table "e_utility_sources" */ +export type e_utility_sources_update_column = 'description' | 'value' + + +/** columns and relationships of "e_utility_techniques" */ +export interface e_utility_techniques { + description: Scalars['String'] + /** An array relationship */ + utility_lineups: utility_lineups[] + /** An aggregate relationship */ + utility_lineups_aggregate: utility_lineups_aggregate + value: Scalars['String'] + __typename: 'e_utility_techniques' +} + + +/** aggregated selection of "e_utility_techniques" */ +export interface e_utility_techniques_aggregate { + aggregate: (e_utility_techniques_aggregate_fields | null) + nodes: e_utility_techniques[] + __typename: 'e_utility_techniques_aggregate' +} + + +/** aggregate fields of "e_utility_techniques" */ +export interface e_utility_techniques_aggregate_fields { + count: Scalars['Int'] + max: (e_utility_techniques_max_fields | null) + min: (e_utility_techniques_min_fields | null) + __typename: 'e_utility_techniques_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_utility_techniques" */ +export type e_utility_techniques_constraint = 'e_utility_techniques_pkey' + +export type e_utility_techniques_enum = 'Crouch' | 'CrouchJump' | 'Jump' | 'RunJump' | 'Running' | 'Stationary' | 'WalkJump' | 'Walking' + + +/** aggregate max on columns */ +export interface e_utility_techniques_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_utility_techniques_max_fields' +} + + +/** aggregate min on columns */ +export interface e_utility_techniques_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_utility_techniques_min_fields' +} + + +/** response of any mutation on the table "e_utility_techniques" */ +export interface e_utility_techniques_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_utility_techniques[] + __typename: 'e_utility_techniques_mutation_response' +} + + +/** select columns of table "e_utility_techniques" */ +export type e_utility_techniques_select_column = 'description' | 'value' + + +/** update columns of table "e_utility_techniques" */ +export type e_utility_techniques_update_column = 'description' | 'value' + + +/** columns and relationships of "e_utility_throw_strengths" */ +export interface e_utility_throw_strengths { + description: Scalars['String'] + /** An array relationship */ + utility_lineups: utility_lineups[] + /** An aggregate relationship */ + utility_lineups_aggregate: utility_lineups_aggregate + value: Scalars['String'] + __typename: 'e_utility_throw_strengths' +} + + +/** aggregated selection of "e_utility_throw_strengths" */ +export interface e_utility_throw_strengths_aggregate { + aggregate: (e_utility_throw_strengths_aggregate_fields | null) + nodes: e_utility_throw_strengths[] + __typename: 'e_utility_throw_strengths_aggregate' +} + + +/** aggregate fields of "e_utility_throw_strengths" */ +export interface e_utility_throw_strengths_aggregate_fields { + count: Scalars['Int'] + max: (e_utility_throw_strengths_max_fields | null) + min: (e_utility_throw_strengths_min_fields | null) + __typename: 'e_utility_throw_strengths_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_utility_throw_strengths" */ +export type e_utility_throw_strengths_constraint = 'e_utility_throw_strengths_pkey' + +export type e_utility_throw_strengths_enum = 'Drop' | 'Full' | 'Half' + + +/** aggregate max on columns */ +export interface e_utility_throw_strengths_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_utility_throw_strengths_max_fields' +} + + +/** aggregate min on columns */ +export interface e_utility_throw_strengths_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_utility_throw_strengths_min_fields' +} + + +/** response of any mutation on the table "e_utility_throw_strengths" */ +export interface e_utility_throw_strengths_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_utility_throw_strengths[] + __typename: 'e_utility_throw_strengths_mutation_response' +} + + +/** select columns of table "e_utility_throw_strengths" */ +export type e_utility_throw_strengths_select_column = 'description' | 'value' + + +/** update columns of table "e_utility_throw_strengths" */ +export type e_utility_throw_strengths_update_column = 'description' | 'value' + + +/** columns and relationships of "e_utility_types" */ +export interface e_utility_types { + description: Scalars['String'] + /** An array relationship */ + player_utilities: player_utility[] + /** An aggregate relationship */ + player_utilities_aggregate: player_utility_aggregate + value: Scalars['String'] + __typename: 'e_utility_types' +} + + +/** aggregated selection of "e_utility_types" */ +export interface e_utility_types_aggregate { + aggregate: (e_utility_types_aggregate_fields | null) + nodes: e_utility_types[] + __typename: 'e_utility_types_aggregate' +} + + +/** aggregate fields of "e_utility_types" */ +export interface e_utility_types_aggregate_fields { + count: Scalars['Int'] + max: (e_utility_types_max_fields | null) + min: (e_utility_types_min_fields | null) + __typename: 'e_utility_types_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_utility_types" */ +export type e_utility_types_constraint = 'e_utility_types_pkey' + +export type e_utility_types_enum = 'Decoy' | 'Flash' | 'HighExplosive' | 'Molotov' | 'Smoke' + + +/** aggregate max on columns */ +export interface e_utility_types_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_utility_types_max_fields' +} + + +/** aggregate min on columns */ +export interface e_utility_types_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_utility_types_min_fields' +} + + +/** response of any mutation on the table "e_utility_types" */ +export interface e_utility_types_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_utility_types[] + __typename: 'e_utility_types_mutation_response' +} + + +/** select columns of table "e_utility_types" */ +export type e_utility_types_select_column = 'description' | 'value' + + +/** update columns of table "e_utility_types" */ +export type e_utility_types_update_column = 'description' | 'value' + + +/** columns and relationships of "e_utility_visibility" */ +export interface e_utility_visibility { + description: Scalars['String'] + /** An array relationship */ + utility_lineups: utility_lineups[] + /** An aggregate relationship */ + utility_lineups_aggregate: utility_lineups_aggregate + value: Scalars['String'] + __typename: 'e_utility_visibility' +} + + +/** aggregated selection of "e_utility_visibility" */ +export interface e_utility_visibility_aggregate { + aggregate: (e_utility_visibility_aggregate_fields | null) + nodes: e_utility_visibility[] + __typename: 'e_utility_visibility_aggregate' +} + + +/** aggregate fields of "e_utility_visibility" */ +export interface e_utility_visibility_aggregate_fields { + count: Scalars['Int'] + max: (e_utility_visibility_max_fields | null) + min: (e_utility_visibility_min_fields | null) + __typename: 'e_utility_visibility_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_utility_visibility" */ +export type e_utility_visibility_constraint = 'e_utility_visibility_pkey' + +export type e_utility_visibility_enum = 'Private' | 'Public' | 'Team' + + +/** aggregate max on columns */ +export interface e_utility_visibility_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_utility_visibility_max_fields' +} + + +/** aggregate min on columns */ +export interface e_utility_visibility_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_utility_visibility_min_fields' +} + + +/** response of any mutation on the table "e_utility_visibility" */ +export interface e_utility_visibility_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_utility_visibility[] + __typename: 'e_utility_visibility_mutation_response' +} + + +/** select columns of table "e_utility_visibility" */ +export type e_utility_visibility_select_column = 'description' | 'value' + + +/** update columns of table "e_utility_visibility" */ +export type e_utility_visibility_update_column = 'description' | 'value' + + +/** columns and relationships of "e_veto_pick_types" */ +export interface e_veto_pick_types { + description: Scalars['String'] + /** An array relationship */ + match_veto_picks: match_map_veto_picks[] + /** An aggregate relationship */ + match_veto_picks_aggregate: match_map_veto_picks_aggregate + value: Scalars['String'] + __typename: 'e_veto_pick_types' +} + + +/** aggregated selection of "e_veto_pick_types" */ +export interface e_veto_pick_types_aggregate { + aggregate: (e_veto_pick_types_aggregate_fields | null) + nodes: e_veto_pick_types[] + __typename: 'e_veto_pick_types_aggregate' +} + + +/** aggregate fields of "e_veto_pick_types" */ +export interface e_veto_pick_types_aggregate_fields { + count: Scalars['Int'] + max: (e_veto_pick_types_max_fields | null) + min: (e_veto_pick_types_min_fields | null) + __typename: 'e_veto_pick_types_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_veto_pick_types" */ +export type e_veto_pick_types_constraint = 'e_veto_pick_type_pkey' + +export type e_veto_pick_types_enum = 'Ban' | 'Decider' | 'Pick' | 'Side' + + +/** aggregate max on columns */ +export interface e_veto_pick_types_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_veto_pick_types_max_fields' +} + + +/** aggregate min on columns */ +export interface e_veto_pick_types_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_veto_pick_types_min_fields' +} + + +/** response of any mutation on the table "e_veto_pick_types" */ +export interface e_veto_pick_types_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_veto_pick_types[] + __typename: 'e_veto_pick_types_mutation_response' +} + + +/** select columns of table "e_veto_pick_types" */ +export type e_veto_pick_types_select_column = 'description' | 'value' + + +/** update columns of table "e_veto_pick_types" */ +export type e_veto_pick_types_update_column = 'description' | 'value' + + +/** columns and relationships of "e_winning_reasons" */ +export interface e_winning_reasons { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_winning_reasons' +} + + +/** aggregated selection of "e_winning_reasons" */ +export interface e_winning_reasons_aggregate { + aggregate: (e_winning_reasons_aggregate_fields | null) + nodes: e_winning_reasons[] + __typename: 'e_winning_reasons_aggregate' +} + + +/** aggregate fields of "e_winning_reasons" */ +export interface e_winning_reasons_aggregate_fields { + count: Scalars['Int'] + max: (e_winning_reasons_max_fields | null) + min: (e_winning_reasons_min_fields | null) + __typename: 'e_winning_reasons_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_winning_reasons" */ +export type e_winning_reasons_constraint = 'e_winning_reasons_pkey' + +export type e_winning_reasons_enum = 'BombDefused' | 'BombExploded' | 'CTsWin' | 'TerroristsWin' | 'TimeRanOut' | 'Unknown' + + +/** aggregate max on columns */ +export interface e_winning_reasons_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_winning_reasons_max_fields' +} + + +/** aggregate min on columns */ +export interface e_winning_reasons_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_winning_reasons_min_fields' +} + + +/** response of any mutation on the table "e_winning_reasons" */ +export interface e_winning_reasons_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_winning_reasons[] + __typename: 'e_winning_reasons_mutation_response' +} + + +/** select columns of table "e_winning_reasons" */ +export type e_winning_reasons_select_column = 'description' | 'value' + + +/** update columns of table "e_winning_reasons" */ +export type e_winning_reasons_update_column = 'description' | 'value' + + +/** columns and relationships of "event_match_links" */ +export interface event_match_links { + created_at: Scalars['timestamptz'] + /** An object relationship */ + event: events + event_id: Scalars['uuid'] + /** An object relationship */ + match: matches + match_id: Scalars['uuid'] + __typename: 'event_match_links' +} + + +/** aggregated selection of "event_match_links" */ +export interface event_match_links_aggregate { + aggregate: (event_match_links_aggregate_fields | null) + nodes: event_match_links[] + __typename: 'event_match_links_aggregate' +} + + +/** aggregate fields of "event_match_links" */ +export interface event_match_links_aggregate_fields { + count: Scalars['Int'] + max: (event_match_links_max_fields | null) + min: (event_match_links_min_fields | null) + __typename: 'event_match_links_aggregate_fields' +} + + +/** unique or primary key constraints on table "event_match_links" */ +export type event_match_links_constraint = 'event_match_links_pkey' + + +/** aggregate max on columns */ +export interface event_match_links_max_fields { + created_at: (Scalars['timestamptz'] | null) + event_id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + __typename: 'event_match_links_max_fields' +} + + +/** aggregate min on columns */ +export interface event_match_links_min_fields { + created_at: (Scalars['timestamptz'] | null) + event_id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + __typename: 'event_match_links_min_fields' +} + + +/** response of any mutation on the table "event_match_links" */ +export interface event_match_links_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: event_match_links[] + __typename: 'event_match_links_mutation_response' +} + + +/** select columns of table "event_match_links" */ +export type event_match_links_select_column = 'created_at' | 'event_id' | 'match_id' + + +/** update columns of table "event_match_links" */ +export type event_match_links_update_column = 'created_at' | 'event_id' | 'match_id' + + +/** columns and relationships of "event_media" */ +export interface event_media { + created_at: Scalars['timestamptz'] + /** An object relationship */ + event: events + event_id: Scalars['uuid'] + external_url: (Scalars['String'] | null) + filename: (Scalars['String'] | null) + id: Scalars['uuid'] + mime_type: (Scalars['String'] | null) + /** An array relationship */ + players: event_media_players[] + /** An aggregate relationship */ + players_aggregate: event_media_players_aggregate + size: Scalars['bigint'] + thumbnail_filename: (Scalars['String'] | null) + title: (Scalars['String'] | null) + /** An object relationship */ + uploader: players + uploader_steam_id: Scalars['bigint'] + __typename: 'event_media' +} + + +/** aggregated selection of "event_media" */ +export interface event_media_aggregate { + aggregate: (event_media_aggregate_fields | null) + nodes: event_media[] + __typename: 'event_media_aggregate' +} + + +/** aggregate fields of "event_media" */ +export interface event_media_aggregate_fields { + avg: (event_media_avg_fields | null) + count: Scalars['Int'] + max: (event_media_max_fields | null) + min: (event_media_min_fields | null) + stddev: (event_media_stddev_fields | null) + stddev_pop: (event_media_stddev_pop_fields | null) + stddev_samp: (event_media_stddev_samp_fields | null) + sum: (event_media_sum_fields | null) + var_pop: (event_media_var_pop_fields | null) + var_samp: (event_media_var_samp_fields | null) + variance: (event_media_variance_fields | null) + __typename: 'event_media_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface event_media_avg_fields { + size: (Scalars['Float'] | null) + uploader_steam_id: (Scalars['Float'] | null) + __typename: 'event_media_avg_fields' +} + + +/** unique or primary key constraints on table "event_media" */ +export type event_media_constraint = 'event_media_event_id_filename_key' | 'event_media_pkey' + + +/** aggregate max on columns */ +export interface event_media_max_fields { + created_at: (Scalars['timestamptz'] | null) + event_id: (Scalars['uuid'] | null) + external_url: (Scalars['String'] | null) + filename: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + mime_type: (Scalars['String'] | null) + size: (Scalars['bigint'] | null) + thumbnail_filename: (Scalars['String'] | null) + title: (Scalars['String'] | null) + uploader_steam_id: (Scalars['bigint'] | null) + __typename: 'event_media_max_fields' +} + + +/** aggregate min on columns */ +export interface event_media_min_fields { + created_at: (Scalars['timestamptz'] | null) + event_id: (Scalars['uuid'] | null) + external_url: (Scalars['String'] | null) + filename: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + mime_type: (Scalars['String'] | null) + size: (Scalars['bigint'] | null) + thumbnail_filename: (Scalars['String'] | null) + title: (Scalars['String'] | null) + uploader_steam_id: (Scalars['bigint'] | null) + __typename: 'event_media_min_fields' +} + + +/** response of any mutation on the table "event_media" */ +export interface event_media_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: event_media[] + __typename: 'event_media_mutation_response' +} + + +/** columns and relationships of "event_media_players" */ +export interface event_media_players { + created_at: Scalars['timestamptz'] + /** An object relationship */ + media: event_media + media_id: Scalars['uuid'] + /** An object relationship */ + player: players + steam_id: Scalars['bigint'] + __typename: 'event_media_players' +} + + +/** aggregated selection of "event_media_players" */ +export interface event_media_players_aggregate { + aggregate: (event_media_players_aggregate_fields | null) + nodes: event_media_players[] + __typename: 'event_media_players_aggregate' +} + + +/** aggregate fields of "event_media_players" */ +export interface event_media_players_aggregate_fields { + avg: (event_media_players_avg_fields | null) + count: Scalars['Int'] + max: (event_media_players_max_fields | null) + min: (event_media_players_min_fields | null) + stddev: (event_media_players_stddev_fields | null) + stddev_pop: (event_media_players_stddev_pop_fields | null) + stddev_samp: (event_media_players_stddev_samp_fields | null) + sum: (event_media_players_sum_fields | null) + var_pop: (event_media_players_var_pop_fields | null) + var_samp: (event_media_players_var_samp_fields | null) + variance: (event_media_players_variance_fields | null) + __typename: 'event_media_players_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface event_media_players_avg_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_media_players_avg_fields' +} + + +/** unique or primary key constraints on table "event_media_players" */ +export type event_media_players_constraint = 'event_media_players_pkey' + + +/** aggregate max on columns */ +export interface event_media_players_max_fields { + created_at: (Scalars['timestamptz'] | null) + media_id: (Scalars['uuid'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'event_media_players_max_fields' +} + + +/** aggregate min on columns */ +export interface event_media_players_min_fields { + created_at: (Scalars['timestamptz'] | null) + media_id: (Scalars['uuid'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'event_media_players_min_fields' +} + + +/** response of any mutation on the table "event_media_players" */ +export interface event_media_players_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: event_media_players[] + __typename: 'event_media_players_mutation_response' +} + + +/** select columns of table "event_media_players" */ +export type event_media_players_select_column = 'created_at' | 'media_id' | 'steam_id' + + +/** aggregate stddev on columns */ +export interface event_media_players_stddev_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_media_players_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface event_media_players_stddev_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_media_players_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface event_media_players_stddev_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_media_players_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface event_media_players_sum_fields { + steam_id: (Scalars['bigint'] | null) + __typename: 'event_media_players_sum_fields' +} + + +/** update columns of table "event_media_players" */ +export type event_media_players_update_column = 'created_at' | 'media_id' | 'steam_id' + + +/** aggregate var_pop on columns */ +export interface event_media_players_var_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_media_players_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface event_media_players_var_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_media_players_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface event_media_players_variance_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_media_players_variance_fields' +} + + +/** select columns of table "event_media" */ +export type event_media_select_column = 'created_at' | 'event_id' | 'external_url' | 'filename' | 'id' | 'mime_type' | 'size' | 'thumbnail_filename' | 'title' | 'uploader_steam_id' + + +/** aggregate stddev on columns */ +export interface event_media_stddev_fields { + size: (Scalars['Float'] | null) + uploader_steam_id: (Scalars['Float'] | null) + __typename: 'event_media_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface event_media_stddev_pop_fields { + size: (Scalars['Float'] | null) + uploader_steam_id: (Scalars['Float'] | null) + __typename: 'event_media_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface event_media_stddev_samp_fields { + size: (Scalars['Float'] | null) + uploader_steam_id: (Scalars['Float'] | null) + __typename: 'event_media_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface event_media_sum_fields { + size: (Scalars['bigint'] | null) + uploader_steam_id: (Scalars['bigint'] | null) + __typename: 'event_media_sum_fields' +} + + +/** update columns of table "event_media" */ +export type event_media_update_column = 'created_at' | 'event_id' | 'external_url' | 'filename' | 'id' | 'mime_type' | 'size' | 'thumbnail_filename' | 'title' | 'uploader_steam_id' + + +/** aggregate var_pop on columns */ +export interface event_media_var_pop_fields { + size: (Scalars['Float'] | null) + uploader_steam_id: (Scalars['Float'] | null) + __typename: 'event_media_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface event_media_var_samp_fields { + size: (Scalars['Float'] | null) + uploader_steam_id: (Scalars['Float'] | null) + __typename: 'event_media_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface event_media_variance_fields { + size: (Scalars['Float'] | null) + uploader_steam_id: (Scalars['Float'] | null) + __typename: 'event_media_variance_fields' +} + + +/** columns and relationships of "event_organizers" */ +export interface event_organizers { + created_at: Scalars['timestamptz'] + /** An object relationship */ + event: events + event_id: Scalars['uuid'] + /** An object relationship */ + organizer: players + steam_id: Scalars['bigint'] + __typename: 'event_organizers' +} + + +/** aggregated selection of "event_organizers" */ +export interface event_organizers_aggregate { + aggregate: (event_organizers_aggregate_fields | null) + nodes: event_organizers[] + __typename: 'event_organizers_aggregate' +} + + +/** aggregate fields of "event_organizers" */ +export interface event_organizers_aggregate_fields { + avg: (event_organizers_avg_fields | null) + count: Scalars['Int'] + max: (event_organizers_max_fields | null) + min: (event_organizers_min_fields | null) + stddev: (event_organizers_stddev_fields | null) + stddev_pop: (event_organizers_stddev_pop_fields | null) + stddev_samp: (event_organizers_stddev_samp_fields | null) + sum: (event_organizers_sum_fields | null) + var_pop: (event_organizers_var_pop_fields | null) + var_samp: (event_organizers_var_samp_fields | null) + variance: (event_organizers_variance_fields | null) + __typename: 'event_organizers_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface event_organizers_avg_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_organizers_avg_fields' +} + + +/** unique or primary key constraints on table "event_organizers" */ +export type event_organizers_constraint = 'event_organizers_pkey' + + +/** aggregate max on columns */ +export interface event_organizers_max_fields { + created_at: (Scalars['timestamptz'] | null) + event_id: (Scalars['uuid'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'event_organizers_max_fields' +} + + +/** aggregate min on columns */ +export interface event_organizers_min_fields { + created_at: (Scalars['timestamptz'] | null) + event_id: (Scalars['uuid'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'event_organizers_min_fields' +} + + +/** response of any mutation on the table "event_organizers" */ +export interface event_organizers_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: event_organizers[] + __typename: 'event_organizers_mutation_response' +} + + +/** select columns of table "event_organizers" */ +export type event_organizers_select_column = 'created_at' | 'event_id' | 'steam_id' + + +/** aggregate stddev on columns */ +export interface event_organizers_stddev_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_organizers_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface event_organizers_stddev_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_organizers_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface event_organizers_stddev_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_organizers_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface event_organizers_sum_fields { + steam_id: (Scalars['bigint'] | null) + __typename: 'event_organizers_sum_fields' +} + + +/** update columns of table "event_organizers" */ +export type event_organizers_update_column = 'created_at' | 'event_id' | 'steam_id' + + +/** aggregate var_pop on columns */ +export interface event_organizers_var_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_organizers_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface event_organizers_var_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_organizers_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface event_organizers_variance_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_organizers_variance_fields' +} + + +/** columns and relationships of "event_players" */ +export interface event_players { + created_at: Scalars['timestamptz'] + /** An object relationship */ + event: events + event_id: Scalars['uuid'] + /** An object relationship */ + player: players + steam_id: Scalars['bigint'] + __typename: 'event_players' +} + + +/** aggregated selection of "event_players" */ +export interface event_players_aggregate { + aggregate: (event_players_aggregate_fields | null) + nodes: event_players[] + __typename: 'event_players_aggregate' +} + + +/** aggregate fields of "event_players" */ +export interface event_players_aggregate_fields { + avg: (event_players_avg_fields | null) + count: Scalars['Int'] + max: (event_players_max_fields | null) + min: (event_players_min_fields | null) + stddev: (event_players_stddev_fields | null) + stddev_pop: (event_players_stddev_pop_fields | null) + stddev_samp: (event_players_stddev_samp_fields | null) + sum: (event_players_sum_fields | null) + var_pop: (event_players_var_pop_fields | null) + var_samp: (event_players_var_samp_fields | null) + variance: (event_players_variance_fields | null) + __typename: 'event_players_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface event_players_avg_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_players_avg_fields' +} + + +/** unique or primary key constraints on table "event_players" */ +export type event_players_constraint = 'event_players_pkey' + + +/** aggregate max on columns */ +export interface event_players_max_fields { + created_at: (Scalars['timestamptz'] | null) + event_id: (Scalars['uuid'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'event_players_max_fields' +} + + +/** aggregate min on columns */ +export interface event_players_min_fields { + created_at: (Scalars['timestamptz'] | null) + event_id: (Scalars['uuid'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'event_players_min_fields' +} + + +/** response of any mutation on the table "event_players" */ +export interface event_players_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: event_players[] + __typename: 'event_players_mutation_response' +} + + +/** select columns of table "event_players" */ +export type event_players_select_column = 'created_at' | 'event_id' | 'steam_id' + + +/** aggregate stddev on columns */ +export interface event_players_stddev_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_players_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface event_players_stddev_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_players_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface event_players_stddev_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_players_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface event_players_sum_fields { + steam_id: (Scalars['bigint'] | null) + __typename: 'event_players_sum_fields' +} + + +/** update columns of table "event_players" */ +export type event_players_update_column = 'created_at' | 'event_id' | 'steam_id' + + +/** aggregate var_pop on columns */ +export interface event_players_var_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_players_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface event_players_var_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_players_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface event_players_variance_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_players_variance_fields' +} + + +/** columns and relationships of "event_teams" */ +export interface event_teams { + created_at: Scalars['timestamptz'] + /** An object relationship */ + event: events + event_id: Scalars['uuid'] + /** An object relationship */ + team: teams + team_id: Scalars['uuid'] + __typename: 'event_teams' +} + + +/** aggregated selection of "event_teams" */ +export interface event_teams_aggregate { + aggregate: (event_teams_aggregate_fields | null) + nodes: event_teams[] + __typename: 'event_teams_aggregate' +} + + +/** aggregate fields of "event_teams" */ +export interface event_teams_aggregate_fields { + count: Scalars['Int'] + max: (event_teams_max_fields | null) + min: (event_teams_min_fields | null) + __typename: 'event_teams_aggregate_fields' +} + + +/** unique or primary key constraints on table "event_teams" */ +export type event_teams_constraint = 'event_teams_pkey' + + +/** aggregate max on columns */ +export interface event_teams_max_fields { + created_at: (Scalars['timestamptz'] | null) + event_id: (Scalars['uuid'] | null) + team_id: (Scalars['uuid'] | null) + __typename: 'event_teams_max_fields' +} + + +/** aggregate min on columns */ +export interface event_teams_min_fields { + created_at: (Scalars['timestamptz'] | null) + event_id: (Scalars['uuid'] | null) + team_id: (Scalars['uuid'] | null) + __typename: 'event_teams_min_fields' +} + + +/** response of any mutation on the table "event_teams" */ +export interface event_teams_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: event_teams[] + __typename: 'event_teams_mutation_response' +} + + +/** select columns of table "event_teams" */ +export type event_teams_select_column = 'created_at' | 'event_id' | 'team_id' + + +/** update columns of table "event_teams" */ +export type event_teams_update_column = 'created_at' | 'event_id' | 'team_id' + + +/** columns and relationships of "event_tournaments" */ +export interface event_tournaments { + created_at: Scalars['timestamptz'] + /** An object relationship */ + event: events + event_id: Scalars['uuid'] + /** An object relationship */ + tournament: tournaments + tournament_id: Scalars['uuid'] + __typename: 'event_tournaments' +} + + +/** aggregated selection of "event_tournaments" */ +export interface event_tournaments_aggregate { + aggregate: (event_tournaments_aggregate_fields | null) + nodes: event_tournaments[] + __typename: 'event_tournaments_aggregate' +} + + +/** aggregate fields of "event_tournaments" */ +export interface event_tournaments_aggregate_fields { + count: Scalars['Int'] + max: (event_tournaments_max_fields | null) + min: (event_tournaments_min_fields | null) + __typename: 'event_tournaments_aggregate_fields' +} + + +/** unique or primary key constraints on table "event_tournaments" */ +export type event_tournaments_constraint = 'event_tournaments_pkey' + + +/** aggregate max on columns */ +export interface event_tournaments_max_fields { + created_at: (Scalars['timestamptz'] | null) + event_id: (Scalars['uuid'] | null) + tournament_id: (Scalars['uuid'] | null) + __typename: 'event_tournaments_max_fields' +} + + +/** aggregate min on columns */ +export interface event_tournaments_min_fields { + created_at: (Scalars['timestamptz'] | null) + event_id: (Scalars['uuid'] | null) + tournament_id: (Scalars['uuid'] | null) + __typename: 'event_tournaments_min_fields' +} + + +/** response of any mutation on the table "event_tournaments" */ +export interface event_tournaments_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: event_tournaments[] + __typename: 'event_tournaments_mutation_response' +} + + +/** select columns of table "event_tournaments" */ +export type event_tournaments_select_column = 'created_at' | 'event_id' | 'tournament_id' + + +/** update columns of table "event_tournaments" */ +export type event_tournaments_update_column = 'created_at' | 'event_id' | 'tournament_id' + + +/** columns and relationships of "events" */ +export interface events { + /** An array relationship */ + awards: award_recipients[] + /** An aggregate relationship */ + awards_aggregate: award_recipients_aggregate + /** An object relationship */ + banner: (event_media | null) + banner_media_id: (Scalars['uuid'] | null) + /** A computed field, executes function "can_upload_event_media" */ + can_upload_media: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_view_event" */ + can_view: (Scalars['Boolean'] | null) + created_at: Scalars['timestamptz'] + description: (Scalars['String'] | null) + ends_at: (Scalars['timestamptz'] | null) + hide_creator_organizer: Scalars['Boolean'] + id: Scalars['uuid'] + /** A computed field, executes function "is_event_organizer" */ + is_organizer: (Scalars['Boolean'] | null) + /** An array relationship */ + media: event_media[] + media_access: e_event_media_access_enum + /** An aggregate relationship */ + media_aggregate: event_media_aggregate + name: Scalars['String'] + /** An object relationship */ + organizer: players + organizer_steam_id: Scalars['bigint'] + /** An array relationship */ + organizers: event_organizers[] + /** An aggregate relationship */ + organizers_aggregate: event_organizers_aggregate + /** An array relationship */ + player_stats: v_event_player_stats[] + /** An aggregate relationship */ + player_stats_aggregate: v_event_player_stats_aggregate + /** An array relationship */ + players: event_players[] + /** An aggregate relationship */ + players_aggregate: event_players_aggregate + starts_at: Scalars['timestamptz'] + /** An array relationship */ + teams: event_teams[] + /** An aggregate relationship */ + teams_aggregate: event_teams_aggregate + /** An array relationship */ + tournaments: event_tournaments[] + /** An aggregate relationship */ + tournaments_aggregate: event_tournaments_aggregate + visibility: e_event_visibility_enum + __typename: 'events' +} + + +/** aggregated selection of "events" */ +export interface events_aggregate { + aggregate: (events_aggregate_fields | null) + nodes: events[] + __typename: 'events_aggregate' +} + + +/** aggregate fields of "events" */ +export interface events_aggregate_fields { + avg: (events_avg_fields | null) + count: Scalars['Int'] + max: (events_max_fields | null) + min: (events_min_fields | null) + stddev: (events_stddev_fields | null) + stddev_pop: (events_stddev_pop_fields | null) + stddev_samp: (events_stddev_samp_fields | null) + sum: (events_sum_fields | null) + var_pop: (events_var_pop_fields | null) + var_samp: (events_var_samp_fields | null) + variance: (events_variance_fields | null) + __typename: 'events_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface events_avg_fields { + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'events_avg_fields' +} + + +/** unique or primary key constraints on table "events" */ +export type events_constraint = 'events_pkey' + + +/** aggregate max on columns */ +export interface events_max_fields { + banner_media_id: (Scalars['uuid'] | null) + created_at: (Scalars['timestamptz'] | null) + description: (Scalars['String'] | null) + ends_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + name: (Scalars['String'] | null) + organizer_steam_id: (Scalars['bigint'] | null) + starts_at: (Scalars['timestamptz'] | null) + __typename: 'events_max_fields' +} + + +/** aggregate min on columns */ +export interface events_min_fields { + banner_media_id: (Scalars['uuid'] | null) + created_at: (Scalars['timestamptz'] | null) + description: (Scalars['String'] | null) + ends_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + name: (Scalars['String'] | null) + organizer_steam_id: (Scalars['bigint'] | null) + starts_at: (Scalars['timestamptz'] | null) + __typename: 'events_min_fields' +} + + +/** response of any mutation on the table "events" */ +export interface events_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: events[] + __typename: 'events_mutation_response' +} + + +/** select columns of table "events" */ +export type events_select_column = 'banner_media_id' | 'created_at' | 'description' | 'ends_at' | 'hide_creator_organizer' | 'id' | 'media_access' | 'name' | 'organizer_steam_id' | 'starts_at' | 'visibility' + + +/** aggregate stddev on columns */ +export interface events_stddev_fields { + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'events_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface events_stddev_pop_fields { + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'events_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface events_stddev_samp_fields { + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'events_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface events_sum_fields { + organizer_steam_id: (Scalars['bigint'] | null) + __typename: 'events_sum_fields' +} + + +/** update columns of table "events" */ +export type events_update_column = 'banner_media_id' | 'created_at' | 'description' | 'ends_at' | 'hide_creator_organizer' | 'id' | 'media_access' | 'name' | 'organizer_steam_id' | 'starts_at' | 'visibility' + + +/** aggregate var_pop on columns */ +export interface events_var_pop_fields { + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'events_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface events_var_samp_fields { + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'events_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface events_variance_fields { + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'events_variance_fields' +} + + +/** columns and relationships of "friends" */ +export interface friends { + /** An object relationship */ + e_status: e_friend_status + other_player_steam_id: Scalars['bigint'] + player_steam_id: Scalars['bigint'] + status: e_friend_status_enum + __typename: 'friends' +} + + +/** aggregated selection of "friends" */ +export interface friends_aggregate { + aggregate: (friends_aggregate_fields | null) + nodes: friends[] + __typename: 'friends_aggregate' +} + + +/** aggregate fields of "friends" */ +export interface friends_aggregate_fields { + avg: (friends_avg_fields | null) + count: Scalars['Int'] + max: (friends_max_fields | null) + min: (friends_min_fields | null) + stddev: (friends_stddev_fields | null) + stddev_pop: (friends_stddev_pop_fields | null) + stddev_samp: (friends_stddev_samp_fields | null) + sum: (friends_sum_fields | null) + var_pop: (friends_var_pop_fields | null) + var_samp: (friends_var_samp_fields | null) + variance: (friends_variance_fields | null) + __typename: 'friends_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface friends_avg_fields { + other_player_steam_id: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'friends_avg_fields' +} + + +/** unique or primary key constraints on table "friends" */ +export type friends_constraint = 'friends_pkey' | 'friends_player_steam_id_other_player_steam_id_key' + + +/** aggregate max on columns */ +export interface friends_max_fields { + other_player_steam_id: (Scalars['bigint'] | null) + player_steam_id: (Scalars['bigint'] | null) + __typename: 'friends_max_fields' +} + + +/** aggregate min on columns */ +export interface friends_min_fields { + other_player_steam_id: (Scalars['bigint'] | null) + player_steam_id: (Scalars['bigint'] | null) + __typename: 'friends_min_fields' +} + + +/** response of any mutation on the table "friends" */ +export interface friends_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: friends[] + __typename: 'friends_mutation_response' +} + + +/** select columns of table "friends" */ +export type friends_select_column = 'other_player_steam_id' | 'player_steam_id' | 'status' + + +/** aggregate stddev on columns */ +export interface friends_stddev_fields { + other_player_steam_id: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'friends_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface friends_stddev_pop_fields { + other_player_steam_id: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'friends_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface friends_stddev_samp_fields { + other_player_steam_id: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'friends_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface friends_sum_fields { + other_player_steam_id: (Scalars['bigint'] | null) + player_steam_id: (Scalars['bigint'] | null) + __typename: 'friends_sum_fields' +} + + +/** update columns of table "friends" */ +export type friends_update_column = 'other_player_steam_id' | 'player_steam_id' | 'status' + + +/** aggregate var_pop on columns */ +export interface friends_var_pop_fields { + other_player_steam_id: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'friends_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface friends_var_samp_fields { + other_player_steam_id: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'friends_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface friends_variance_fields { + other_player_steam_id: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'friends_variance_fields' +} + + +/** columns and relationships of "game_mode_plugins" */ +export interface game_mode_plugins { + config: (Scalars['jsonb'] | null) + /** An object relationship */ + game_mode: game_modes + game_mode_id: Scalars['uuid'] + load_order: Scalars['Int'] + /** An object relationship */ + plugin: game_plugins + plugin_slug: Scalars['String'] + required: Scalars['Boolean'] + __typename: 'game_mode_plugins' +} + + +/** 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_mode_plugins" */ +export interface game_mode_plugins_aggregate_fields { + avg: (game_mode_plugins_avg_fields | null) + count: Scalars['Int'] + 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_mode_plugins_avg_fields { + load_order: (Scalars['Float'] | null) + __typename: 'game_mode_plugins_avg_fields' +} + + +/** 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_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_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_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_mode_plugins[] + __typename: 'game_mode_plugins_mutation_response' +} + + +/** 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_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_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_mode_plugins_stddev_fields { + load_order: (Scalars['Float'] | null) + __typename: 'game_mode_plugins_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +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_mode_plugins_stddev_samp_fields { + load_order: (Scalars['Float'] | null) + __typename: 'game_mode_plugins_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface game_mode_plugins_sum_fields { + load_order: (Scalars['Int'] | null) + __typename: 'game_mode_plugins_sum_fields' +} + + +/** 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_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_mode_plugins_var_samp_fields { + load_order: (Scalars['Float'] | null) + __typename: 'game_mode_plugins_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface game_mode_plugins_variance_fields { + load_order: (Scalars['Float'] | null) + __typename: 'game_mode_plugins_variance_fields' +} + + +/** columns and relationships of "game_modes" */ +export interface game_modes { + archived_at: (Scalars['timestamptz'] | null) + cfg: (Scalars['String'] | null) + competitive_safe: Scalars['Boolean'] + created_at: Scalars['timestamptz'] + description: (Scalars['String'] | null) + enabled: Scalars['Boolean'] + extra_game_params: (Scalars['String'] | null) + icon: (Scalars['String'] | null) + id: Scalars['uuid'] + /** An array relationship */ + match_options: match_options[] + /** An aggregate relationship */ + match_options_aggregate: match_options_aggregate + name: Scalars['String'] + /** An array relationship */ + plugins: game_mode_plugins[] + /** An aggregate relationship */ + plugins_aggregate: game_mode_plugins_aggregate + /** Plugins in this mode with no build for the deployment's runtime */ + runtime_conflicts: (Scalars['jsonb'] | null) + slug: Scalars['String'] + /** Frameworks every plugin in this mode publishes for; empty means the selection cannot run */ + supported_runtimes: (Scalars['jsonb'] | null) + updated_at: Scalars['timestamptz'] + __typename: 'game_modes' +} + + +/** 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_modes" */ +export interface game_modes_aggregate_fields { + count: Scalars['Int'] + 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_modes" */ +export type game_modes_constraint = 'game_modes_pkey' | 'game_modes_slug_key' + + +/** aggregate max on columns */ +export interface game_modes_max_fields { + archived_at: (Scalars['timestamptz'] | null) + cfg: (Scalars['String'] | null) + created_at: (Scalars['timestamptz'] | null) + description: (Scalars['String'] | null) + extra_game_params: (Scalars['String'] | null) + icon: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + name: (Scalars['String'] | null) + slug: (Scalars['String'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'game_modes_max_fields' +} + + +/** aggregate min on columns */ +export interface game_modes_min_fields { + archived_at: (Scalars['timestamptz'] | null) + cfg: (Scalars['String'] | null) + created_at: (Scalars['timestamptz'] | null) + description: (Scalars['String'] | null) + extra_game_params: (Scalars['String'] | null) + icon: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + name: (Scalars['String'] | null) + slug: (Scalars['String'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'game_modes_min_fields' +} + + +/** 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_modes[] + __typename: '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' | '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' | 'name' | 'slug' | 'updated_at' + + +/** columns and relationships of "game_plugin_installs" */ +export interface game_plugin_installs { + cfg: (Scalars['String'] | null) + channel: e_game_plugin_channels_enum + created_at: Scalars['timestamptz'] + disable_server_guidelines: Scalars['Boolean'] + enabled: Scalars['Boolean'] + load_custom: Scalars['Boolean'] + load_ranked: Scalars['Boolean'] + load_tournaments: Scalars['Boolean'] + /** An object relationship */ + plugin: game_plugins + plugin_slug: Scalars['String'] + updated_at: Scalars['timestamptz'] + version: (Scalars['String'] | null) + __typename: 'game_plugin_installs' +} + + +/** 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 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' +} + + +/** unique or primary key constraints on table "game_plugin_installs" */ +export type game_plugin_installs_constraint = 'game_plugin_installs_pkey' + + +/** aggregate max on columns */ +export interface game_plugin_installs_max_fields { + cfg: (Scalars['String'] | null) + 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 min on columns */ +export interface game_plugin_installs_min_fields { + cfg: (Scalars['String'] | null) + 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' +} + + +/** 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' +} + + +/** select columns of table "game_plugin_installs" */ +export type game_plugin_installs_select_column = 'cfg' | 'channel' | 'created_at' | 'disable_server_guidelines' | 'enabled' | 'load_custom' | 'load_ranked' | 'load_tournaments' | 'plugin_slug' | 'updated_at' | 'version' + + +/** update columns of table "game_plugin_installs" */ +export type game_plugin_installs_update_column = 'cfg' | 'channel' | 'created_at' | 'disable_server_guidelines' | 'enabled' | 'load_custom' | 'load_ranked' | 'load_tournaments' | '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 */ + 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 "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 "game_plugin_versions" */ +export interface game_plugin_versions_aggregate_fields { + avg: (game_plugin_versions_avg_fields | null) + count: Scalars['Int'] + 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 game_plugin_versions_avg_fields { + size: (Scalars['Float'] | null) + __typename: 'game_plugin_versions_avg_fields' +} + + +/** 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 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 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 "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: game_plugin_versions[] + __typename: 'game_plugin_versions_mutation_response' +} + + +/** 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 game_plugin_versions_stddev_fields { + size: (Scalars['Float'] | null) + __typename: 'game_plugin_versions_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +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 game_plugin_versions_stddev_samp_fields { + size: (Scalars['Float'] | null) + __typename: 'game_plugin_versions_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface game_plugin_versions_sum_fields { + size: (Scalars['Int'] | null) + __typename: 'game_plugin_versions_sum_fields' +} + + +/** 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 game_plugin_versions_var_pop_fields { + size: (Scalars['Float'] | null) + __typename: 'game_plugin_versions_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +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 game_plugin_versions_variance_fields { + size: (Scalars['Float'] | null) + __typename: 'game_plugin_versions_variance_fields' +} + + +/** columns and relationships of "game_plugins" */ +export interface game_plugins { + author: Scalars['String'] + config_path: (Scalars['String'] | null) + config_schema: (Scalars['jsonb'] | null) + cvars: Scalars['String'][] + description: Scalars['String'] + /** An array relationship */ + game_modes: game_mode_plugins[] + /** An aggregate relationship */ + game_modes_aggregate: game_mode_plugins_aggregate + homepage: (Scalars['String'] | null) + hot_swappable: Scalars['Boolean'] + /** Installed | Partial | Pending | Failed | Manual | NotInstalled */ + install_state: (Scalars['String'] | null) + /** A computed field, executes function "game_plugin_installed_node_count" */ + installed_node_count: (Scalars['Int'] | null) + kind: e_game_plugin_kinds_enum + name: Scalars['String'] + /** An array relationship */ + node_installs: game_server_node_plugins[] + /** An aggregate relationship */ + node_installs_aggregate: game_server_node_plugins_aggregate + pairs_with: Scalars['String'][] + panel: (Scalars['jsonb'] | null) + requires_server_guidelines_disabled: Scalars['Boolean'] + requires_service: (Scalars['String'] | null) + slug: Scalars['String'] + source: Scalars['String'] + synced_at: Scalars['timestamptz'] + tags: Scalars['String'][] + /** A computed field, executes function "game_plugin_target_node_count" */ + target_node_count: (Scalars['Int'] | null) + verified: Scalars['Boolean'] + /** An array relationship */ + versions: game_plugin_versions[] + /** An aggregate relationship */ + versions_aggregate: game_plugin_versions_aggregate + wiring: (Scalars['jsonb'] | null) + __typename: 'game_plugins' +} + + +/** 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 "game_plugins" */ +export interface game_plugins_aggregate_fields { + avg: (game_plugins_avg_fields | null) + count: Scalars['Int'] + 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 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 game_plugins_max_fields { + author: (Scalars['String'] | null) + config_path: (Scalars['String'] | null) + cvars: (Scalars['String'][] | null) + description: (Scalars['String'] | null) + homepage: (Scalars['String'] | null) + /** Installed | Partial | Pending | Failed | Manual | NotInstalled */ + install_state: (Scalars['String'] | null) + /** A computed field, executes function "game_plugin_installed_node_count" */ + installed_node_count: (Scalars['Int'] | null) + name: (Scalars['String'] | null) + pairs_with: (Scalars['String'][] | null) + requires_service: (Scalars['String'] | null) + slug: (Scalars['String'] | null) + source: (Scalars['String'] | null) + synced_at: (Scalars['timestamptz'] | null) + tags: (Scalars['String'][] | null) + /** A computed field, executes function "game_plugin_target_node_count" */ + target_node_count: (Scalars['Int'] | null) + __typename: 'game_plugins_max_fields' +} + + +/** aggregate min on columns */ +export interface game_plugins_min_fields { + author: (Scalars['String'] | null) + config_path: (Scalars['String'] | null) + cvars: (Scalars['String'][] | null) + description: (Scalars['String'] | null) + homepage: (Scalars['String'] | null) + /** Installed | Partial | Pending | Failed | Manual | NotInstalled */ + install_state: (Scalars['String'] | null) + /** A computed field, executes function "game_plugin_installed_node_count" */ + installed_node_count: (Scalars['Int'] | null) + name: (Scalars['String'] | null) + pairs_with: (Scalars['String'][] | null) + requires_service: (Scalars['String'] | null) + slug: (Scalars['String'] | null) + source: (Scalars['String'] | null) + synced_at: (Scalars['timestamptz'] | null) + tags: (Scalars['String'][] | null) + /** A computed field, executes function "game_plugin_target_node_count" */ + target_node_count: (Scalars['Int'] | null) + __typename: 'game_plugins_min_fields' +} + + +/** response of any mutation on the table "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: game_plugins[] + __typename: '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_server_guidelines_disabled' | 'requires_service' | 'slug' | 'source' | 'synced_at' | 'tags' | 'verified' | 'wiring' + + +/** aggregate stddev on columns */ +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 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 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 game_plugins_sum_fields { + /** A computed field, executes function "game_plugin_installed_node_count" */ + installed_node_count: (Scalars['Int'] | null) + /** A computed field, executes function "game_plugin_target_node_count" */ + target_node_count: (Scalars['Int'] | null) + __typename: 'game_plugins_sum_fields' +} + + +/** update columns of table "game_plugins" */ +export type game_plugins_update_column = 'author' | 'config_path' | 'config_schema' | 'cvars' | 'description' | 'homepage' | 'hot_swappable' | 'kind' | 'name' | 'pairs_with' | 'panel' | 'requires_server_guidelines_disabled' | 'requires_service' | 'slug' | 'source' | 'synced_at' | 'tags' | 'verified' | 'wiring' + + +/** aggregate var_pop on columns */ +export interface 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 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 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 "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'] + installed_at: (Scalars['timestamptz'] | null) + last_error: (Scalars['String'] | null) + path: (Scalars['String'] | null) + /** An object relationship */ + plugin: (game_plugins | null) + plugin_slug: Scalars['String'] + previous_version: (Scalars['String'] | null) + 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 "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 "game_server_node_plugins" */ +export interface game_server_node_plugins_aggregate_fields { + count: Scalars['Int'] + 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 "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 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) + installed_at: (Scalars['timestamptz'] | null) + last_error: (Scalars['String'] | null) + path: (Scalars['String'] | null) + plugin_slug: (Scalars['String'] | null) + previous_version: (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 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) + installed_at: (Scalars['timestamptz'] | null) + last_error: (Scalars['String'] | null) + path: (Scalars['String'] | null) + plugin_slug: (Scalars['String'] | null) + previous_version: (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 "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: game_server_node_plugins[] + __typename: 'game_server_node_plugins_mutation_response' +} + + +/** 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' | 'path' | 'plugin_slug' | 'previous_version' | 'runtime' | 'source' | 'status' | 'updated_at' | 'version' + + +/** 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' + + +/** 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' + + +/** 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' | 'path' | 'plugin_slug' | 'previous_version' | 'runtime' | 'source' | 'status' | 'updated_at' | 'version' + + +/** columns and relationships of "game_server_nodes" */ +export interface game_server_nodes { + /** A computed field, executes function "available_node_server_count" */ + available_server_count: (Scalars['Int'] | null) + build_id: (Scalars['Int'] | null) + cpu_cores_per_socket: (Scalars['Int'] | null) + cpu_frequency_info: (Scalars['jsonb'] | null) + cpu_governor_info: (Scalars['jsonb'] | null) + cpu_sockets: (Scalars['Int'] | null) + cpu_threads_per_core: (Scalars['Int'] | null) + cpu_warnings: (Scalars['jsonb'] | null) + cs2_launch_options: Scalars['jsonb'] + cs2_video_settings: Scalars['jsonb'] + csgo_build_id: (Scalars['Int'] | null) + demo_network_limiter: (Scalars['Int'] | null) + disk_available_gb: (Scalars['Int'] | null) + disk_used_percent: (Scalars['Int'] | null) + /** An object relationship */ + e_region: (server_regions | null) + /** An object relationship */ + e_status: (e_game_server_node_statuses | null) + enabled: Scalars['Boolean'] + enabled_for_match_making: Scalars['Boolean'] + end_port_range: (Scalars['Int'] | null) + gpu: Scalars['Boolean'] + gpu_demos_enabled: Scalars['Boolean'] + gpu_info: (Scalars['jsonb'] | null) + gpu_rendering_enabled: Scalars['Boolean'] + gpu_streaming_enabled: Scalars['Boolean'] + id: Scalars['String'] + label: (Scalars['String'] | null) + lan_ip: (Scalars['inet'] | null) + node_ip: (Scalars['inet'] | null) + offline_at: (Scalars['timestamptz'] | null) + pin_build_id: (Scalars['Int'] | null) + pin_plugin_runtime: (Scalars['String'] | null) + pin_plugin_version: (Scalars['String'] | null) + /** An object relationship */ + pinned_version: (game_versions | null) + /** A computed field, executes function "game_server_node_plugin_supported" */ + plugin_supported: (Scalars['Boolean'] | null) + /** An array relationship */ + plugins: game_server_node_plugins[] + /** An aggregate relationship */ + plugins_aggregate: game_server_node_plugins_aggregate + plugins_synced_at: (Scalars['timestamptz'] | null) + public_ip: (Scalars['inet'] | null) + region: (Scalars['String'] | null) + /** An array relationship */ + servers: servers[] + /** An aggregate relationship */ + servers_aggregate: servers_aggregate + shader_bake_progress: (Scalars['numeric'] | null) + shader_bake_progress_stage: (Scalars['String'] | null) + shader_bake_status: (Scalars['String'] | null) + shader_bake_status_history: Scalars['jsonb'] + start_port_range: (Scalars['Int'] | null) + status: (e_game_server_node_statuses_enum | null) + supports_cpu_pinning: Scalars['Boolean'] + supports_low_latency: Scalars['Boolean'] + token: (Scalars['String'] | null) + /** A computed field, executes function "total_node_server_count" */ + total_server_count: (Scalars['Int'] | null) + update_status: (Scalars['String'] | null) + /** An object relationship */ + version: (game_versions | null) + __typename: 'game_server_nodes' +} + + +/** 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 "game_server_nodes" */ +export interface game_server_nodes_aggregate_fields { + avg: (game_server_nodes_avg_fields | null) + count: Scalars['Int'] + max: (game_server_nodes_max_fields | null) + min: (game_server_nodes_min_fields | null) + stddev: (game_server_nodes_stddev_fields | null) + stddev_pop: (game_server_nodes_stddev_pop_fields | null) + stddev_samp: (game_server_nodes_stddev_samp_fields | null) + sum: (game_server_nodes_sum_fields | null) + var_pop: (game_server_nodes_var_pop_fields | null) + var_samp: (game_server_nodes_var_samp_fields | null) + variance: (game_server_nodes_variance_fields | null) + __typename: 'game_server_nodes_aggregate_fields' +} + + +/** aggregate 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' +} + + +/** 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 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 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 "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: game_server_nodes[] + __typename: 'game_server_nodes_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' | '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 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 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 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 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 "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 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 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 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 "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 "game_versions" */ +export interface game_versions_aggregate { + aggregate: (game_versions_aggregate_fields | null) + nodes: game_versions[] + __typename: 'game_versions_aggregate' +} + + +/** aggregate fields of "game_versions" */ +export interface game_versions_aggregate_fields { + avg: (game_versions_avg_fields | null) + count: Scalars['Int'] + max: (game_versions_max_fields | null) + min: (game_versions_min_fields | null) + stddev: (game_versions_stddev_fields | null) + stddev_pop: (game_versions_stddev_pop_fields | null) + stddev_samp: (game_versions_stddev_samp_fields | null) + sum: (game_versions_sum_fields | null) + var_pop: (game_versions_var_pop_fields | null) + var_samp: (game_versions_var_samp_fields | null) + variance: (game_versions_variance_fields | null) + __typename: 'game_versions_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface game_versions_avg_fields { + build_id: (Scalars['Float'] | null) + __typename: 'game_versions_avg_fields' +} + + +/** 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 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 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 "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: game_versions[] + __typename: 'game_versions_mutation_response' +} + + +/** 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 game_versions_stddev_fields { + build_id: (Scalars['Float'] | null) + __typename: 'game_versions_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface game_versions_stddev_pop_fields { + build_id: (Scalars['Float'] | null) + __typename: 'game_versions_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface game_versions_stddev_samp_fields { + build_id: (Scalars['Float'] | null) + __typename: 'game_versions_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface game_versions_sum_fields { + build_id: (Scalars['Int'] | null) + __typename: 'game_versions_sum_fields' +} + + +/** 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 game_versions_var_pop_fields { + build_id: (Scalars['Float'] | null) + __typename: 'game_versions_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface game_versions_var_samp_fields { + build_id: (Scalars['Float'] | null) + __typename: 'game_versions_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface game_versions_variance_fields { + build_id: (Scalars['Float'] | null) + __typename: 'game_versions_variance_fields' +} + + +/** columns and relationships of "gamedata_signature_validations" */ +export interface gamedata_signature_validations { + branch: Scalars['String'] + build_id: Scalars['Int'] + /** 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' +} + + +/** 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 "gamedata_signature_validations" */ +export interface gamedata_signature_validations_aggregate_fields { + avg: (gamedata_signature_validations_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' +} + + +/** aggregate avg on columns */ +export interface gamedata_signature_validations_avg_fields { + build_id: (Scalars['Float'] | null) + __typename: 'gamedata_signature_validations_avg_fields' +} + + +/** unique or primary key constraints on table "gamedata_signature_validations" */ +export type gamedata_signature_validations_constraint = 'gamedata_signature_validations_build_branch_idx' | 'gamedata_signature_validations_pkey' + + +/** aggregate max on columns */ +export interface 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' +} + + +/** 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' +} + + +/** 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: gamedata_signature_validations[] + __typename: 'gamedata_signature_validations_mutation_response' +} + + +/** 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 gamedata_signature_validations_stddev_fields { + build_id: (Scalars['Float'] | null) + __typename: 'gamedata_signature_validations_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' +} + + +/** aggregate stddev_samp on columns */ +export interface gamedata_signature_validations_stddev_samp_fields { + build_id: (Scalars['Float'] | null) + __typename: 'gamedata_signature_validations_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface gamedata_signature_validations_sum_fields { + build_id: (Scalars['Int'] | null) + __typename: 'gamedata_signature_validations_sum_fields' +} + + +/** 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 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 gamedata_signature_validations_var_samp_fields { + build_id: (Scalars['Float'] | null) + __typename: 'gamedata_signature_validations_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' +} + + +/** 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' +} + +export interface leaderboard_entries_aggregate { + aggregate: (leaderboard_entries_aggregate_fields | null) + nodes: leaderboard_entries[] + __typename: 'leaderboard_entries_aggregate' +} + + +/** aggregate fields of "leaderboard_entries" */ +export interface leaderboard_entries_aggregate_fields { + avg: (leaderboard_entries_avg_fields | null) + count: Scalars['Int'] + max: (leaderboard_entries_max_fields | null) + min: (leaderboard_entries_min_fields | null) + stddev: (leaderboard_entries_stddev_fields | null) + stddev_pop: (leaderboard_entries_stddev_pop_fields | null) + stddev_samp: (leaderboard_entries_stddev_samp_fields | null) + sum: (leaderboard_entries_sum_fields | null) + var_pop: (leaderboard_entries_var_pop_fields | null) + var_samp: (leaderboard_entries_var_samp_fields | null) + variance: (leaderboard_entries_variance_fields | null) + __typename: 'leaderboard_entries_aggregate_fields' +} + + +/** aggregate 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 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 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 "leaderboard_entries" */ +export interface leaderboard_entries_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: leaderboard_entries[] + __typename: 'leaderboard_entries_mutation_response' +} + + +/** 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' + + +/** aggregate stddev on columns */ +export interface leaderboard_entries_stddev_fields { + matches_played: (Scalars['Float'] | null) + secondary_value: (Scalars['Float'] | null) + tertiary_value: (Scalars['Float'] | null) + value: (Scalars['Float'] | null) + __typename: 'leaderboard_entries_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface leaderboard_entries_stddev_pop_fields { + matches_played: (Scalars['Float'] | null) + secondary_value: (Scalars['Float'] | null) + tertiary_value: (Scalars['Float'] | null) + value: (Scalars['Float'] | null) + __typename: 'leaderboard_entries_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface leaderboard_entries_stddev_samp_fields { + matches_played: (Scalars['Float'] | null) + secondary_value: (Scalars['Float'] | null) + tertiary_value: (Scalars['Float'] | null) + value: (Scalars['Float'] | null) + __typename: 'leaderboard_entries_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface leaderboard_entries_sum_fields { + matches_played: (Scalars['Int'] | null) + secondary_value: (Scalars['float8'] | null) + tertiary_value: (Scalars['float8'] | null) + value: (Scalars['float8'] | null) + __typename: 'leaderboard_entries_sum_fields' +} + + +/** aggregate var_pop on columns */ +export interface 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'] + 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' +} + + +/** 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_divisions" */ +export interface league_divisions_aggregate_fields { + avg: (league_divisions_avg_fields | null) + count: Scalars['Int'] + max: (league_divisions_max_fields | null) + min: (league_divisions_min_fields | null) + stddev: (league_divisions_stddev_fields | null) + stddev_pop: (league_divisions_stddev_pop_fields | null) + stddev_samp: (league_divisions_stddev_samp_fields | null) + sum: (league_divisions_sum_fields | null) + var_pop: (league_divisions_var_pop_fields | null) + var_samp: (league_divisions_var_samp_fields | null) + variance: (league_divisions_variance_fields | null) + __typename: 'league_divisions_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface league_divisions_avg_fields { + tier: (Scalars['Float'] | null) + __typename: 'league_divisions_avg_fields' +} + + +/** unique or primary key constraints on table "league_divisions" */ +export type league_divisions_constraint = 'league_divisions_name_key' | 'league_divisions_pkey' | 'league_divisions_tier_key' + + +/** aggregate max on columns */ +export interface league_divisions_max_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + name: (Scalars['String'] | null) + tier: (Scalars['smallint'] | null) + __typename: 'league_divisions_max_fields' +} + + +/** aggregate min on columns */ +export interface league_divisions_min_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + name: (Scalars['String'] | null) + tier: (Scalars['smallint'] | null) + __typename: 'league_divisions_min_fields' +} + + +/** 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_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' +} + + +/** 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_divisions_var_pop_fields { + tier: (Scalars['Float'] | null) + __typename: 'league_divisions_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface league_divisions_var_samp_fields { + tier: (Scalars['Float'] | null) + __typename: 'league_divisions_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface league_divisions_variance_fields { + tier: (Scalars['Float'] | null) + __typename: 'league_divisions_variance_fields' +} + + +/** columns and relationships of "league_match_weeks" */ +export interface league_match_weeks { + closes_at: Scalars['timestamptz'] + created_at: Scalars['timestamptz'] + default_match_at: Scalars['timestamptz'] + id: Scalars['uuid'] + league_season_id: Scalars['uuid'] + opens_at: Scalars['timestamptz'] + /** An object relationship */ + season: league_seasons + week_number: Scalars['Int'] + __typename: 'league_match_weeks' +} + + +/** aggregated selection of "league_match_weeks" */ +export interface league_match_weeks_aggregate { + aggregate: (league_match_weeks_aggregate_fields | null) + nodes: league_match_weeks[] + __typename: 'league_match_weeks_aggregate' +} + + +/** aggregate fields of "league_match_weeks" */ +export interface league_match_weeks_aggregate_fields { + avg: (league_match_weeks_avg_fields | null) + count: Scalars['Int'] + max: (league_match_weeks_max_fields | null) + min: (league_match_weeks_min_fields | null) + stddev: (league_match_weeks_stddev_fields | null) + stddev_pop: (league_match_weeks_stddev_pop_fields | null) + stddev_samp: (league_match_weeks_stddev_samp_fields | null) + sum: (league_match_weeks_sum_fields | null) + var_pop: (league_match_weeks_var_pop_fields | null) + var_samp: (league_match_weeks_var_samp_fields | null) + variance: (league_match_weeks_variance_fields | null) + __typename: 'league_match_weeks_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface league_match_weeks_avg_fields { + week_number: (Scalars['Float'] | null) + __typename: 'league_match_weeks_avg_fields' +} + + +/** unique or primary key constraints on table "league_match_weeks" */ +export type league_match_weeks_constraint = 'league_match_weeks_league_season_id_week_number_key' | 'league_match_weeks_pkey' + + +/** aggregate max on columns */ +export interface league_match_weeks_max_fields { + closes_at: (Scalars['timestamptz'] | null) + created_at: (Scalars['timestamptz'] | null) + default_match_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + league_season_id: (Scalars['uuid'] | null) + opens_at: (Scalars['timestamptz'] | null) + week_number: (Scalars['Int'] | null) + __typename: 'league_match_weeks_max_fields' +} + + +/** aggregate 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' +} + + +/** 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_match_weeks[] + __typename: 'league_match_weeks_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' + + +/** aggregate stddev on columns */ +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_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_match_weeks_stddev_samp_fields { + week_number: (Scalars['Float'] | null) + __typename: 'league_match_weeks_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' +} + + +/** 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_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_match_weeks_var_samp_fields { + week_number: (Scalars['Float'] | null) + __typename: 'league_match_weeks_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' +} + + +/** 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' +} + + +/** 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_relegation_playoffs" */ +export interface league_relegation_playoffs_aggregate_fields { + avg: (league_relegation_playoffs_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' +} + + +/** aggregate avg on columns */ +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_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_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_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_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_relegation_playoffs[] + __typename: 'league_relegation_playoffs_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' + + +/** aggregate stddev on columns */ +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_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_relegation_playoffs_stddev_samp_fields { + higher_slots: (Scalars['Float'] | null) + __typename: 'league_relegation_playoffs_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' +} + + +/** 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_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_relegation_playoffs_var_samp_fields { + higher_slots: (Scalars['Float'] | null) + __typename: 'league_relegation_playoffs_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' +} + + +/** columns and relationships of "league_scheduling_proposals" */ +export interface league_scheduling_proposals { + /** An object relationship */ + bracket: tournament_brackets + created_at: Scalars['timestamptz'] + /** An object relationship */ + e_proposal_status: e_league_proposal_statuses + id: Scalars['uuid'] + message: (Scalars['String'] | null) + /** An object relationship */ + proposed_by: players + proposed_by_league_team_season_id: (Scalars['uuid'] | null) + proposed_by_steam_id: Scalars['bigint'] + proposed_time: Scalars['timestamptz'] + /** An object relationship */ + responded_by: (players | null) + responded_by_steam_id: (Scalars['bigint'] | null) + status: e_league_proposal_statuses_enum + /** An object relationship */ + team_season: (league_team_seasons | null) + tournament_bracket_id: Scalars['uuid'] + __typename: 'league_scheduling_proposals' +} + + +/** 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_scheduling_proposals" */ +export interface league_scheduling_proposals_aggregate_fields { + avg: (league_scheduling_proposals_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' +} + + +/** aggregate avg on columns */ +export interface league_scheduling_proposals_avg_fields { + proposed_by_steam_id: (Scalars['Float'] | null) + responded_by_steam_id: (Scalars['Float'] | null) + __typename: 'league_scheduling_proposals_avg_fields' +} + + +/** unique or primary key constraints on table "league_scheduling_proposals" */ +export type league_scheduling_proposals_constraint = 'league_scheduling_proposals_pkey' + + +/** aggregate max on columns */ +export interface league_scheduling_proposals_max_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + message: (Scalars['String'] | null) + proposed_by_league_team_season_id: (Scalars['uuid'] | null) + proposed_by_steam_id: (Scalars['bigint'] | null) + proposed_time: (Scalars['timestamptz'] | null) + responded_by_steam_id: (Scalars['bigint'] | null) + tournament_bracket_id: (Scalars['uuid'] | null) + __typename: 'league_scheduling_proposals_max_fields' +} + + +/** aggregate min on columns */ +export interface league_scheduling_proposals_min_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + message: (Scalars['String'] | null) + proposed_by_league_team_season_id: (Scalars['uuid'] | null) + proposed_by_steam_id: (Scalars['bigint'] | null) + proposed_time: (Scalars['timestamptz'] | null) + responded_by_steam_id: (Scalars['bigint'] | null) + tournament_bracket_id: (Scalars['uuid'] | null) + __typename: 'league_scheduling_proposals_min_fields' +} + + +/** 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_scheduling_proposals[] + __typename: 'league_scheduling_proposals_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' + + +/** 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' +} + + +/** 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' +} + + +/** aggregate stddev_samp on columns */ +export interface league_scheduling_proposals_stddev_samp_fields { + proposed_by_steam_id: (Scalars['Float'] | null) + responded_by_steam_id: (Scalars['Float'] | null) + __typename: 'league_scheduling_proposals_stddev_samp_fields' +} + + +/** aggregate 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' +} + + +/** 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_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_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_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_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' +} + + +/** 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_season_divisions" */ +export interface league_season_divisions_aggregate_fields { + count: Scalars['Int'] + 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_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_season_divisions_max_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + league_division_id: (Scalars['uuid'] | null) + league_season_id: (Scalars['uuid'] | null) + tournament_id: (Scalars['uuid'] | null) + __typename: 'league_season_divisions_max_fields' +} + + +/** aggregate min on columns */ +export interface league_season_divisions_min_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + league_division_id: (Scalars['uuid'] | null) + league_season_id: (Scalars['uuid'] | null) + tournament_id: (Scalars['uuid'] | null) + __typename: 'league_season_divisions_min_fields' +} + + +/** response of any mutation on the table "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_season_divisions[] + __typename: 'league_season_divisions_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' + + +/** 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 "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_league_season_status: e_league_season_statuses + games_per_week: Scalars['Int'] + id: Scalars['uuid'] + /** A computed field, executes function "is_league_season_admin" */ + is_league_admin: (Scalars['Boolean'] | null) + /** A computed field, executes function "league_season_is_roster_locked" */ + is_roster_locked: (Scalars['Boolean'] | null) + match_options_id: (Scalars['uuid'] | null) + /** An array relationship */ + match_weeks: league_match_weeks[] + /** An aggregate relationship */ + match_weeks_aggregate: league_match_weeks_aggregate + match_weeks_count: Scalars['Int'] + max_roster_size: (Scalars['Int'] | null) + min_roster_size: Scalars['Int'] + /** An array relationship */ + movements: league_team_movements[] + /** An aggregate relationship */ + movements_aggregate: league_team_movements_aggregate + /** A computed field, executes function "league_season_my_registration" */ + my_registration: (league_team_seasons[] | null) + name: Scalars['String'] + /** An object relationship */ + options: (match_options | null) + /** An array relationship */ + player_stats: v_league_season_player_stats[] + /** An aggregate relationship */ + player_stats_aggregate: v_league_season_player_stats_aggregate + playoff_best_of: Scalars['Int'] + playoff_round_best_of: Scalars['jsonb'] + playoff_seats: Scalars['Int'] + playoff_stage_type: e_tournament_stage_types_enum + playoff_third_place_match: Scalars['Boolean'] + promote_count: Scalars['Int'] + regular_season_stage_type: e_tournament_stage_types_enum + relegate_count: Scalars['Int'] + relegation_down_count: Scalars['Int'] + /** An array relationship */ + relegation_playoffs: league_relegation_playoffs[] + /** An aggregate relationship */ + relegation_playoffs_aggregate: league_relegation_playoffs_aggregate + relegation_up_count: Scalars['Int'] + roster_lock_at: (Scalars['timestamptz'] | null) + /** An array relationship */ + season_divisions: league_season_divisions[] + /** An aggregate relationship */ + season_divisions_aggregate: league_season_divisions_aggregate + season_number: (Scalars['Int'] | null) + signup_closes_at: (Scalars['timestamptz'] | null) + signup_opens_at: (Scalars['timestamptz'] | null) + /** An array relationship */ + standings: v_league_division_standings[] + /** An aggregate relationship */ + standings_aggregate: v_league_division_standings_aggregate + starts_at: (Scalars['timestamptz'] | null) + status: e_league_season_statuses_enum + /** An array relationship */ + team_seasons: league_team_seasons[] + /** An aggregate relationship */ + team_seasons_aggregate: league_team_seasons_aggregate + week_best_of: Scalars['jsonb'] + __typename: 'league_seasons' +} + + +/** aggregated selection of "league_seasons" */ +export interface league_seasons_aggregate { + aggregate: (league_seasons_aggregate_fields | null) + nodes: league_seasons[] + __typename: 'league_seasons_aggregate' +} + + +/** aggregate fields of "league_seasons" */ +export interface league_seasons_aggregate_fields { + avg: (league_seasons_avg_fields | null) + count: Scalars['Int'] + max: (league_seasons_max_fields | null) + min: (league_seasons_min_fields | null) + stddev: (league_seasons_stddev_fields | null) + stddev_pop: (league_seasons_stddev_pop_fields | null) + stddev_samp: (league_seasons_stddev_samp_fields | null) + sum: (league_seasons_sum_fields | null) + var_pop: (league_seasons_var_pop_fields | null) + var_samp: (league_seasons_var_samp_fields | null) + variance: (league_seasons_variance_fields | null) + __typename: 'league_seasons_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface league_seasons_avg_fields { + created_by_steam_id: (Scalars['Float'] | null) + default_best_of: (Scalars['Float'] | null) + direct_promote_count: (Scalars['Float'] | null) + direct_relegate_count: (Scalars['Float'] | null) + games_per_week: (Scalars['Float'] | null) + match_weeks_count: (Scalars['Float'] | null) + max_roster_size: (Scalars['Float'] | null) + min_roster_size: (Scalars['Float'] | null) + playoff_best_of: (Scalars['Float'] | null) + playoff_seats: (Scalars['Float'] | null) + promote_count: (Scalars['Float'] | null) + relegate_count: (Scalars['Float'] | null) + relegation_down_count: (Scalars['Float'] | null) + relegation_up_count: (Scalars['Float'] | null) + season_number: (Scalars['Float'] | null) + __typename: 'league_seasons_avg_fields' +} + + +/** unique or primary key constraints on table "league_seasons" */ +export type league_seasons_constraint = 'league_seasons_name_key' | 'league_seasons_pkey' | 'league_seasons_season_number_key' + + +/** aggregate max on columns */ +export interface league_seasons_max_fields { + created_at: (Scalars['timestamptz'] | null) + created_by_steam_id: (Scalars['bigint'] | null) + default_best_of: (Scalars['Int'] | null) + direct_promote_count: (Scalars['Int'] | null) + direct_relegate_count: (Scalars['Int'] | null) + games_per_week: (Scalars['Int'] | null) + id: (Scalars['uuid'] | null) + match_options_id: (Scalars['uuid'] | null) + match_weeks_count: (Scalars['Int'] | null) + max_roster_size: (Scalars['Int'] | null) + min_roster_size: (Scalars['Int'] | null) + name: (Scalars['String'] | null) + playoff_best_of: (Scalars['Int'] | null) + playoff_seats: (Scalars['Int'] | null) + promote_count: (Scalars['Int'] | null) + relegate_count: (Scalars['Int'] | null) + relegation_down_count: (Scalars['Int'] | null) + relegation_up_count: (Scalars['Int'] | null) + roster_lock_at: (Scalars['timestamptz'] | null) + season_number: (Scalars['Int'] | null) + signup_closes_at: (Scalars['timestamptz'] | null) + signup_opens_at: (Scalars['timestamptz'] | null) + starts_at: (Scalars['timestamptz'] | null) + __typename: 'league_seasons_max_fields' +} + + +/** aggregate min on columns */ +export interface league_seasons_min_fields { + created_at: (Scalars['timestamptz'] | null) + created_by_steam_id: (Scalars['bigint'] | null) + default_best_of: (Scalars['Int'] | null) + direct_promote_count: (Scalars['Int'] | null) + direct_relegate_count: (Scalars['Int'] | null) + games_per_week: (Scalars['Int'] | null) + id: (Scalars['uuid'] | null) + match_options_id: (Scalars['uuid'] | null) + match_weeks_count: (Scalars['Int'] | null) + max_roster_size: (Scalars['Int'] | null) + min_roster_size: (Scalars['Int'] | null) + name: (Scalars['String'] | null) + playoff_best_of: (Scalars['Int'] | null) + playoff_seats: (Scalars['Int'] | null) + promote_count: (Scalars['Int'] | null) + relegate_count: (Scalars['Int'] | null) + relegation_down_count: (Scalars['Int'] | null) + relegation_up_count: (Scalars['Int'] | null) + roster_lock_at: (Scalars['timestamptz'] | null) + season_number: (Scalars['Int'] | null) + signup_closes_at: (Scalars['timestamptz'] | null) + signup_opens_at: (Scalars['timestamptz'] | null) + starts_at: (Scalars['timestamptz'] | null) + __typename: 'league_seasons_min_fields' +} + + +/** response of any mutation on the table "league_seasons" */ +export interface league_seasons_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: league_seasons[] + __typename: 'league_seasons_mutation_response' +} + + +/** select columns of table "league_seasons" */ +export type league_seasons_select_column = 'auto_regular_season_format' | 'created_at' | 'created_by_steam_id' | 'default_best_of' | 'direct_promote_count' | 'direct_relegate_count' | 'games_per_week' | 'id' | 'match_options_id' | 'match_weeks_count' | 'max_roster_size' | 'min_roster_size' | 'name' | 'playoff_best_of' | 'playoff_round_best_of' | 'playoff_seats' | 'playoff_stage_type' | 'playoff_third_place_match' | 'promote_count' | 'regular_season_stage_type' | 'relegate_count' | 'relegation_down_count' | 'relegation_up_count' | 'roster_lock_at' | 'season_number' | 'signup_closes_at' | 'signup_opens_at' | 'starts_at' | 'status' | 'week_best_of' + + +/** aggregate stddev on columns */ +export interface league_seasons_stddev_fields { + created_by_steam_id: (Scalars['Float'] | null) + default_best_of: (Scalars['Float'] | null) + direct_promote_count: (Scalars['Float'] | null) + direct_relegate_count: (Scalars['Float'] | null) + games_per_week: (Scalars['Float'] | null) + match_weeks_count: (Scalars['Float'] | null) + max_roster_size: (Scalars['Float'] | null) + min_roster_size: (Scalars['Float'] | null) + playoff_best_of: (Scalars['Float'] | null) + playoff_seats: (Scalars['Float'] | null) + promote_count: (Scalars['Float'] | null) + relegate_count: (Scalars['Float'] | null) + relegation_down_count: (Scalars['Float'] | null) + relegation_up_count: (Scalars['Float'] | null) + season_number: (Scalars['Float'] | null) + __typename: 'league_seasons_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface league_seasons_stddev_pop_fields { + created_by_steam_id: (Scalars['Float'] | null) + default_best_of: (Scalars['Float'] | null) + direct_promote_count: (Scalars['Float'] | null) + direct_relegate_count: (Scalars['Float'] | null) + games_per_week: (Scalars['Float'] | null) + match_weeks_count: (Scalars['Float'] | null) + max_roster_size: (Scalars['Float'] | null) + min_roster_size: (Scalars['Float'] | null) + playoff_best_of: (Scalars['Float'] | null) + playoff_seats: (Scalars['Float'] | null) + promote_count: (Scalars['Float'] | null) + relegate_count: (Scalars['Float'] | null) + relegation_down_count: (Scalars['Float'] | null) + relegation_up_count: (Scalars['Float'] | null) + season_number: (Scalars['Float'] | null) + __typename: 'league_seasons_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface league_seasons_stddev_samp_fields { + created_by_steam_id: (Scalars['Float'] | null) + default_best_of: (Scalars['Float'] | null) + direct_promote_count: (Scalars['Float'] | null) + direct_relegate_count: (Scalars['Float'] | null) + games_per_week: (Scalars['Float'] | null) + match_weeks_count: (Scalars['Float'] | null) + max_roster_size: (Scalars['Float'] | null) + min_roster_size: (Scalars['Float'] | null) + playoff_best_of: (Scalars['Float'] | null) + playoff_seats: (Scalars['Float'] | null) + promote_count: (Scalars['Float'] | null) + relegate_count: (Scalars['Float'] | null) + relegation_down_count: (Scalars['Float'] | null) + relegation_up_count: (Scalars['Float'] | null) + season_number: (Scalars['Float'] | null) + __typename: 'league_seasons_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface league_seasons_sum_fields { + created_by_steam_id: (Scalars['bigint'] | null) + default_best_of: (Scalars['Int'] | null) + direct_promote_count: (Scalars['Int'] | null) + direct_relegate_count: (Scalars['Int'] | null) + games_per_week: (Scalars['Int'] | null) + match_weeks_count: (Scalars['Int'] | null) + max_roster_size: (Scalars['Int'] | null) + min_roster_size: (Scalars['Int'] | null) + playoff_best_of: (Scalars['Int'] | null) + playoff_seats: (Scalars['Int'] | null) + promote_count: (Scalars['Int'] | null) + relegate_count: (Scalars['Int'] | null) + relegation_down_count: (Scalars['Int'] | null) + relegation_up_count: (Scalars['Int'] | null) + season_number: (Scalars['Int'] | null) + __typename: 'league_seasons_sum_fields' +} + + +/** update columns of table "league_seasons" */ +export type league_seasons_update_column = 'auto_regular_season_format' | 'created_at' | 'created_by_steam_id' | 'default_best_of' | 'direct_promote_count' | 'direct_relegate_count' | 'games_per_week' | 'id' | 'match_options_id' | 'match_weeks_count' | 'max_roster_size' | 'min_roster_size' | 'name' | 'playoff_best_of' | 'playoff_round_best_of' | 'playoff_seats' | 'playoff_stage_type' | 'playoff_third_place_match' | 'promote_count' | 'regular_season_stage_type' | 'relegate_count' | 'relegation_down_count' | 'relegation_up_count' | 'roster_lock_at' | 'season_number' | 'signup_closes_at' | 'signup_opens_at' | 'starts_at' | 'status' | 'week_best_of' + + +/** aggregate var_pop on columns */ +export interface league_seasons_var_pop_fields { + created_by_steam_id: (Scalars['Float'] | null) + default_best_of: (Scalars['Float'] | null) + direct_promote_count: (Scalars['Float'] | null) + direct_relegate_count: (Scalars['Float'] | null) + games_per_week: (Scalars['Float'] | null) + match_weeks_count: (Scalars['Float'] | null) + max_roster_size: (Scalars['Float'] | null) + min_roster_size: (Scalars['Float'] | null) + playoff_best_of: (Scalars['Float'] | null) + playoff_seats: (Scalars['Float'] | null) + promote_count: (Scalars['Float'] | null) + relegate_count: (Scalars['Float'] | null) + relegation_down_count: (Scalars['Float'] | null) + relegation_up_count: (Scalars['Float'] | null) + season_number: (Scalars['Float'] | null) + __typename: 'league_seasons_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface league_seasons_var_samp_fields { + created_by_steam_id: (Scalars['Float'] | null) + default_best_of: (Scalars['Float'] | null) + direct_promote_count: (Scalars['Float'] | null) + direct_relegate_count: (Scalars['Float'] | null) + games_per_week: (Scalars['Float'] | null) + match_weeks_count: (Scalars['Float'] | null) + max_roster_size: (Scalars['Float'] | null) + min_roster_size: (Scalars['Float'] | null) + playoff_best_of: (Scalars['Float'] | null) + playoff_seats: (Scalars['Float'] | null) + promote_count: (Scalars['Float'] | null) + relegate_count: (Scalars['Float'] | null) + relegation_down_count: (Scalars['Float'] | null) + relegation_up_count: (Scalars['Float'] | null) + season_number: (Scalars['Float'] | null) + __typename: 'league_seasons_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface league_seasons_variance_fields { + created_by_steam_id: (Scalars['Float'] | null) + default_best_of: (Scalars['Float'] | null) + direct_promote_count: (Scalars['Float'] | null) + direct_relegate_count: (Scalars['Float'] | null) + games_per_week: (Scalars['Float'] | null) + match_weeks_count: (Scalars['Float'] | null) + max_roster_size: (Scalars['Float'] | null) + min_roster_size: (Scalars['Float'] | null) + playoff_best_of: (Scalars['Float'] | null) + playoff_seats: (Scalars['Float'] | null) + promote_count: (Scalars['Float'] | null) + relegate_count: (Scalars['Float'] | null) + relegation_down_count: (Scalars['Float'] | null) + relegation_up_count: (Scalars['Float'] | null) + season_number: (Scalars['Float'] | null) + __typename: 'league_seasons_variance_fields' +} + + +/** columns and relationships of "league_team_movements" */ +export interface league_team_movements { + approved_at: (Scalars['timestamptz'] | null) + /** An object relationship */ + approved_by: (players | null) + approved_by_steam_id: (Scalars['bigint'] | null) + /** An object relationship */ + computed_to_division: (league_divisions | null) + computed_to_division_id: (Scalars['uuid'] | null) + created_at: Scalars['timestamptz'] + /** An object relationship */ + e_movement_type: e_league_movement_types + final_rank: (Scalars['Int'] | null) + /** An object relationship */ + final_to_division: (league_divisions | null) + final_to_division_id: (Scalars['uuid'] | null) + /** An object relationship */ + from_division: (league_divisions | null) + from_division_id: (Scalars['uuid'] | null) + id: Scalars['uuid'] + league_season_id: Scalars['uuid'] + /** An object relationship */ + league_team: league_teams + league_team_id: Scalars['uuid'] + /** An object relationship */ + season: league_seasons + type: e_league_movement_types_enum + __typename: 'league_team_movements' +} + + +/** aggregated selection of "league_team_movements" */ +export interface league_team_movements_aggregate { + aggregate: (league_team_movements_aggregate_fields | null) + nodes: league_team_movements[] + __typename: 'league_team_movements_aggregate' +} + + +/** aggregate fields of "league_team_movements" */ +export interface league_team_movements_aggregate_fields { + avg: (league_team_movements_avg_fields | null) + count: Scalars['Int'] + max: (league_team_movements_max_fields | null) + min: (league_team_movements_min_fields | null) + stddev: (league_team_movements_stddev_fields | null) + stddev_pop: (league_team_movements_stddev_pop_fields | null) + stddev_samp: (league_team_movements_stddev_samp_fields | null) + sum: (league_team_movements_sum_fields | null) + var_pop: (league_team_movements_var_pop_fields | null) + var_samp: (league_team_movements_var_samp_fields | null) + variance: (league_team_movements_variance_fields | null) + __typename: 'league_team_movements_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface league_team_movements_avg_fields { + approved_by_steam_id: (Scalars['Float'] | null) + final_rank: (Scalars['Float'] | null) + __typename: 'league_team_movements_avg_fields' +} + + +/** unique or primary key constraints on table "league_team_movements" */ +export type league_team_movements_constraint = 'league_team_movements_league_season_id_league_team_id_key' | 'league_team_movements_pkey' + + +/** aggregate max on columns */ +export interface 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 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 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 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 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 "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 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 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 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 "league_team_rosters" */ +export interface league_team_rosters { + added_at: Scalars['timestamptz'] + league_team_season_id: Scalars['uuid'] + /** An object relationship */ + player: players + player_steam_id: Scalars['bigint'] + removed_at: (Scalars['timestamptz'] | null) + removed_reason: (Scalars['String'] | null) + status: e_team_roster_statuses_enum + /** An object relationship */ + team_season: league_team_seasons + __typename: 'league_team_rosters' +} + + +/** 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 "league_team_rosters" */ +export interface league_team_rosters_aggregate_fields { + avg: (league_team_rosters_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' +} + + +/** 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 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 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 "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: league_team_rosters[] + __typename: 'league_team_rosters_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' + + +/** aggregate stddev on columns */ +export interface league_team_rosters_stddev_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'league_team_rosters_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface league_team_rosters_stddev_pop_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'league_team_rosters_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface league_team_rosters_stddev_samp_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'league_team_rosters_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface league_team_rosters_sum_fields { + player_steam_id: (Scalars['bigint'] | null) + __typename: 'league_team_rosters_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' + + +/** 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 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' +} + + +/** aggregate variance on columns */ +export interface league_team_rosters_variance_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'league_team_rosters_variance_fields' +} + + +/** columns and relationships of "league_team_seasons" */ +export interface league_team_seasons { + /** An object relationship */ + assigned_division: (league_divisions | null) + assigned_division_id: (Scalars['uuid'] | null) + /** An object relationship */ + captain: (players | null) + captain_steam_id: (Scalars['bigint'] | null) + created_at: Scalars['timestamptz'] + decline_reason: (Scalars['String'] | null) + /** An object relationship */ + e_registration_status: e_league_registration_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) + /** 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 + /** An object relationship */ + season: league_seasons + seed: (Scalars['Int'] | null) + status: e_league_registration_statuses_enum + /** An object relationship */ + tournament_team: (tournament_teams | null) + tournament_team_id: (Scalars['uuid'] | null) + __typename: 'league_team_seasons' +} + + +/** aggregated selection of "league_team_seasons" */ +export interface league_team_seasons_aggregate { + aggregate: (league_team_seasons_aggregate_fields | null) + nodes: league_team_seasons[] + __typename: 'league_team_seasons_aggregate' +} + + +/** aggregate fields of "league_team_seasons" */ +export interface league_team_seasons_aggregate_fields { + avg: (league_team_seasons_avg_fields | null) + count: Scalars['Int'] + max: (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 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 "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 league_team_seasons_max_fields { + assigned_division_id: (Scalars['uuid'] | null) + captain_steam_id: (Scalars['bigint'] | null) + 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' +} + + +/** aggregate min on columns */ +export interface league_team_seasons_min_fields { + assigned_division_id: (Scalars['uuid'] | null) + captain_steam_id: (Scalars['bigint'] | null) + 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' +} + + +/** 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: league_team_seasons[] + __typename: 'league_team_seasons_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' + + +/** 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' +} + + +/** 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' +} + + +/** 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' +} + + +/** 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' +} + + +/** 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 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 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 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 "league_teams" */ +export interface league_teams { + created_at: Scalars['timestamptz'] + id: Scalars['uuid'] + /** An array relationship */ + movements: league_team_movements[] + /** An aggregate relationship */ + movements_aggregate: league_team_movements_aggregate + /** An object relationship */ + 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 "league_teams" */ +export interface league_teams_aggregate { + aggregate: (league_teams_aggregate_fields | null) + nodes: league_teams[] + __typename: 'league_teams_aggregate' +} + + +/** aggregate fields of "league_teams" */ +export interface league_teams_aggregate_fields { + count: Scalars['Int'] + max: (league_teams_max_fields | null) + min: (league_teams_min_fields | null) + __typename: 'league_teams_aggregate_fields' +} + + +/** unique or primary key constraints on table "league_teams" */ +export type league_teams_constraint = 'league_teams_pkey' | 'league_teams_team_id_key' + + +/** aggregate max on columns */ +export interface league_teams_max_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + team_id: (Scalars['uuid'] | null) + __typename: 'league_teams_max_fields' +} + + +/** aggregate min on columns */ +export interface league_teams_min_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + team_id: (Scalars['uuid'] | null) + __typename: 'league_teams_min_fields' +} + + +/** 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: league_teams[] + __typename: 'league_teams_mutation_response' +} + + +/** select columns of table "league_teams" */ +export type league_teams_select_column = 'created_at' | 'id' | 'team_id' + + +/** update columns of table "league_teams" */ +export type league_teams_update_column = 'created_at' | 'id' | 'team_id' + + +/** 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' +} + + +/** aggregated selection of "lobbies" */ +export interface lobbies_aggregate { + aggregate: (lobbies_aggregate_fields | null) + nodes: lobbies[] + __typename: 'lobbies_aggregate' +} + + +/** 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' +} + + +/** unique or primary key constraints on table "lobbies" */ +export type lobbies_constraint = 'lobbies_pkey' + + +/** aggregate max on columns */ +export interface lobbies_max_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + __typename: 'lobbies_max_fields' +} + + +/** aggregate min on columns */ +export interface lobbies_min_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + __typename: 'lobbies_min_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' +} + + +/** select columns of table "lobbies" */ +export type lobbies_select_column = 'access' | 'created_at' | 'id' + + +/** update columns of table "lobbies" */ +export type lobbies_update_column = 'access' | 'created_at' | 'id' + + +/** columns and relationships of "lobby_players" */ +export interface lobby_players { + captain: Scalars['Boolean'] + invited_by_steam_id: (Scalars['bigint'] | null) + /** 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' +} + + +/** 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 "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 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' +} + + +/** 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' +} + + +/** 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' +} + + +/** 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' +} + + +/** select columns of table "lobby_players" */ +export type lobby_players_select_column = 'captain' | 'invited_by_steam_id' | 'lobby_id' | 'status' | 'steam_id' + + +/** select "lobby_players_aggregate_bool_exp_bool_and_arguments_columns" columns of table "lobby_players" */ +export type lobby_players_select_column_lobby_players_aggregate_bool_exp_bool_and_arguments_columns = 'captain' + + +/** select "lobby_players_aggregate_bool_exp_bool_or_arguments_columns" columns of table "lobby_players" */ +export type lobby_players_select_column_lobby_players_aggregate_bool_exp_bool_or_arguments_columns = 'captain' + + +/** aggregate stddev on columns */ +export interface lobby_players_stddev_fields { + invited_by_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'lobby_players_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface lobby_players_stddev_pop_fields { + invited_by_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'lobby_players_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface lobby_players_stddev_samp_fields { + invited_by_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'lobby_players_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface lobby_players_sum_fields { + invited_by_steam_id: (Scalars['bigint'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'lobby_players_sum_fields' +} + + +/** update columns of table "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 lobby_players_var_pop_fields { + invited_by_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'lobby_players_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface lobby_players_var_samp_fields { + invited_by_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'lobby_players_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface lobby_players_variance_fields { + invited_by_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'lobby_players_variance_fields' +} + + +/** columns and relationships of "map_callouts" */ +export interface map_callouts { + boxes: Scalars['jsonb'] + map_name: Scalars['String'] + name: Scalars['String'] + source: Scalars['String'] + updated_at: Scalars['timestamptz'] + __typename: 'map_callouts' +} + + +/** aggregated selection of "map_callouts" */ +export interface map_callouts_aggregate { + aggregate: (map_callouts_aggregate_fields | null) + nodes: map_callouts[] + __typename: 'map_callouts_aggregate' +} + + +/** aggregate fields of "map_callouts" */ +export interface map_callouts_aggregate_fields { + count: Scalars['Int'] + max: (map_callouts_max_fields | null) + min: (map_callouts_min_fields | null) + __typename: 'map_callouts_aggregate_fields' +} + + +/** unique or primary key constraints on table "map_callouts" */ +export type map_callouts_constraint = 'map_callouts_pkey' + + +/** aggregate max on columns */ +export interface map_callouts_max_fields { + map_name: (Scalars['String'] | null) + name: (Scalars['String'] | null) + source: (Scalars['String'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'map_callouts_max_fields' +} + + +/** aggregate min on columns */ +export interface map_callouts_min_fields { + map_name: (Scalars['String'] | null) + name: (Scalars['String'] | null) + source: (Scalars['String'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'map_callouts_min_fields' +} + + +/** response of any mutation on the table "map_callouts" */ +export interface map_callouts_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: map_callouts[] + __typename: 'map_callouts_mutation_response' +} + + +/** select columns of table "map_callouts" */ +export type map_callouts_select_column = 'boxes' | 'map_name' | 'name' | 'source' | 'updated_at' + + +/** update columns of table "map_callouts" */ +export type map_callouts_update_column = 'boxes' | 'map_name' | 'name' | 'source' | 'updated_at' + + +/** columns and relationships of "map_pools" */ +export interface map_pools { + /** 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' +} + + +/** 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 "map_pools" */ +export interface map_pools_aggregate_fields { + count: Scalars['Int'] + max: (map_pools_max_fields | null) + min: (map_pools_min_fields | null) + __typename: 'map_pools_aggregate_fields' +} + + +/** unique or primary key constraints on table "map_pools" */ +export type map_pools_constraint = 'map_pools_pkey' + + +/** aggregate max on columns */ +export interface map_pools_max_fields { + id: (Scalars['uuid'] | null) + __typename: 'map_pools_max_fields' +} + + +/** aggregate min on columns */ +export interface map_pools_min_fields { + id: (Scalars['uuid'] | null) + __typename: 'map_pools_min_fields' +} + + +/** 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: map_pools[] + __typename: 'map_pools_mutation_response' +} + + +/** select columns of table "map_pools" */ +export type map_pools_select_column = 'enabled' | 'id' | 'seed' | 'type' + + +/** update columns of table "map_pools" */ +export type map_pools_update_column = 'enabled' | 'id' | 'seed' | 'type' + + +/** columns and relationships of "maps" */ +export interface maps { + active_pool: Scalars['Boolean'] + deleted_at: (Scalars['timestamptz'] | null) + /** 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' +} + + +/** aggregated selection of "maps" */ +export interface maps_aggregate { + aggregate: (maps_aggregate_fields | null) + nodes: maps[] + __typename: 'maps_aggregate' +} + + +/** 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' +} + + +/** unique or primary key constraints on table "maps" */ +export type maps_constraint = 'maps_name_type_key' | 'maps_pkey' + + +/** aggregate max on columns */ +export interface maps_max_fields { + deleted_at: (Scalars['timestamptz'] | null) + 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 min on columns */ +export interface maps_min_fields { + deleted_at: (Scalars['timestamptz'] | null) + 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' +} + + +/** 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' +} + + +/** select columns of table "maps" */ +export type maps_select_column = 'active_pool' | 'deleted_at' | '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' | 'deleted_at' | 'enabled' | 'id' | 'label' | 'name' | 'patch' | 'poster' | 'type' | 'workshop_map_id' + + +/** columns and relationships of "match_clips" */ +export interface match_clips { + created_at: Scalars['timestamptz'] + /** A computed field, executes function "clip_download_url" */ + download_url: (Scalars['String'] | null) + duration_ms: (Scalars['Int'] | null) + file: (Scalars['String'] | null) + id: Scalars['uuid'] + kills_count: (Scalars['Int'] | null) + /** An object relationship */ + match_map: match_maps + /** An object relationship */ + match_map_demo: (match_map_demos | null) + match_map_demo_id: (Scalars['uuid'] | null) + match_map_id: Scalars['uuid'] + /** An array relationship */ + render_jobs: clip_render_jobs[] + /** An aggregate relationship */ + render_jobs_aggregate: clip_render_jobs_aggregate + round: (Scalars['Int'] | null) + size: Scalars['bigint'] + /** An object relationship */ + target: (players | null) + target_steam_id: (Scalars['bigint'] | null) + /** A computed field, executes function "clip_thumbnail_download_url" */ + thumbnail_download_url: (Scalars['String'] | null) + thumbnail_url: (Scalars['String'] | null) + title: (Scalars['String'] | null) + /** An object relationship */ + user: (players | null) + user_steam_id: (Scalars['bigint'] | null) + views_count: Scalars['Int'] + visibility: e_match_clip_visibility_enum + __typename: 'match_clips' +} + + +/** aggregated selection of "match_clips" */ +export interface match_clips_aggregate { + aggregate: (match_clips_aggregate_fields | null) + nodes: match_clips[] + __typename: 'match_clips_aggregate' +} + + +/** aggregate fields of "match_clips" */ +export interface match_clips_aggregate_fields { + avg: (match_clips_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' +} + + +/** 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' +} + + +/** unique or primary key constraints on table "match_clips" */ +export type match_clips_constraint = 'match_clips_pkey' + + +/** aggregate max on columns */ +export interface match_clips_max_fields { + created_at: (Scalars['timestamptz'] | null) + /** A computed field, executes function "clip_download_url" */ + download_url: (Scalars['String'] | null) + duration_ms: (Scalars['Int'] | null) + file: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + kills_count: (Scalars['Int'] | null) + match_map_demo_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + round: (Scalars['Int'] | null) + size: (Scalars['bigint'] | null) + target_steam_id: (Scalars['bigint'] | null) + /** A computed field, executes function "clip_thumbnail_download_url" */ + thumbnail_download_url: (Scalars['String'] | null) + thumbnail_url: (Scalars['String'] | null) + title: (Scalars['String'] | null) + user_steam_id: (Scalars['bigint'] | null) + views_count: (Scalars['Int'] | null) + __typename: 'match_clips_max_fields' +} + + +/** aggregate min on columns */ +export interface match_clips_min_fields { + created_at: (Scalars['timestamptz'] | null) + /** A computed field, executes function "clip_download_url" */ + download_url: (Scalars['String'] | null) + duration_ms: (Scalars['Int'] | null) + file: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + kills_count: (Scalars['Int'] | null) + match_map_demo_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + round: (Scalars['Int'] | null) + size: (Scalars['bigint'] | null) + target_steam_id: (Scalars['bigint'] | null) + /** A computed field, executes function "clip_thumbnail_download_url" */ + thumbnail_download_url: (Scalars['String'] | null) + thumbnail_url: (Scalars['String'] | null) + title: (Scalars['String'] | null) + user_steam_id: (Scalars['bigint'] | null) + views_count: (Scalars['Int'] | null) + __typename: 'match_clips_min_fields' +} + + +/** 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_clips[] + __typename: 'match_clips_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' + + +/** 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' +} + + +/** 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' +} + + +/** 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' +} + + +/** 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' +} + + +/** 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_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' +} + + +/** 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' +} + + +/** 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' +} + + +/** columns and relationships of "match_demo_sessions" */ +export interface match_demo_sessions { + 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 object relationship */ + watcher: players + watcher_steam_id: Scalars['bigint'] + __typename: 'match_demo_sessions' +} + + +/** aggregated selection of "match_demo_sessions" */ +export interface match_demo_sessions_aggregate { + aggregate: (match_demo_sessions_aggregate_fields | null) + nodes: match_demo_sessions[] + __typename: 'match_demo_sessions_aggregate' +} + + +/** aggregate fields of "match_demo_sessions" */ +export interface match_demo_sessions_aggregate_fields { + avg: (match_demo_sessions_avg_fields | null) + count: Scalars['Int'] + max: (match_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' +} + + +/** 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_demo_sessions_max_fields { + created_at: (Scalars['timestamptz'] | null) + error_message: (Scalars['String'] | null) + game_server_node_id: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + 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' +} + + +/** aggregate min on columns */ +export interface match_demo_sessions_min_fields { + created_at: (Scalars['timestamptz'] | null) + error_message: (Scalars['String'] | null) + game_server_node_id: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + 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' +} + + +/** 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_demo_sessions[] + __typename: 'match_demo_sessions_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' + + +/** aggregate stddev on columns */ +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_demo_sessions_stddev_pop_fields { + watcher_steam_id: (Scalars['Float'] | null) + __typename: 'match_demo_sessions_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface match_demo_sessions_stddev_samp_fields { + watcher_steam_id: (Scalars['Float'] | null) + __typename: 'match_demo_sessions_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface match_demo_sessions_sum_fields { + watcher_steam_id: (Scalars['bigint'] | null) + __typename: 'match_demo_sessions_sum_fields' +} + + +/** update columns of table "match_demo_sessions" */ +export type match_demo_sessions_update_column = 'created_at' | 'error_message' | 'game_server_node_id' | 'id' | 'k8s_job_name' | 'last_activity_at' | 'last_status_at' | 'match_id' | 'match_map_demo_id' | 'match_map_id' | 'status' | 'status_history' | 'stream_url' | 'watcher_steam_id' + + +/** aggregate var_pop on columns */ +export interface match_demo_sessions_var_pop_fields { + watcher_steam_id: (Scalars['Float'] | null) + __typename: 'match_demo_sessions_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface match_demo_sessions_var_samp_fields { + watcher_steam_id: (Scalars['Float'] | null) + __typename: 'match_demo_sessions_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface match_demo_sessions_variance_fields { + watcher_steam_id: (Scalars['Float'] | null) + __typename: 'match_demo_sessions_variance_fields' +} + + +/** relational table for assigning a players to a match and lineup */ +export interface match_lineup_players { + captain: Scalars['Boolean'] + checked_in: Scalars['Boolean'] + discord_id: (Scalars['String'] | null) + id: Scalars['uuid'] + is_connected: Scalars['Boolean'] + /** 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) + /** An object relationship */ + player: (players | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'match_lineup_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' +} + + +/** 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_lineup_players_max_fields | null) + min: (match_lineup_players_min_fields | null) + stddev: (match_lineup_players_stddev_fields | null) + stddev_pop: (match_lineup_players_stddev_pop_fields | null) + stddev_samp: (match_lineup_players_stddev_samp_fields | null) + sum: (match_lineup_players_sum_fields | null) + var_pop: (match_lineup_players_var_pop_fields | null) + var_samp: (match_lineup_players_var_samp_fields | null) + variance: (match_lineup_players_variance_fields | null) + __typename: 'match_lineup_players_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface match_lineup_players_avg_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'match_lineup_players_avg_fields' +} + + +/** 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_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) + steam_id: (Scalars['bigint'] | null) + __typename: 'match_lineup_players_max_fields' +} + + +/** aggregate min on columns */ +export interface match_lineup_players_min_fields { + discord_id: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + match_lineup_id: (Scalars['uuid'] | null) + party_id: (Scalars['uuid'] | null) + placeholder_name: (Scalars['String'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'match_lineup_players_min_fields' +} + + +/** 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_lineup_players[] + __typename: 'match_lineup_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 "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_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' + + +/** aggregate stddev on columns */ +export interface match_lineup_players_stddev_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'match_lineup_players_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface match_lineup_players_stddev_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'match_lineup_players_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface match_lineup_players_stddev_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'match_lineup_players_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface match_lineup_players_sum_fields { + steam_id: (Scalars['bigint'] | null) + __typename: 'match_lineup_players_sum_fields' +} + + +/** update columns of table "match_lineup_players" */ +export type match_lineup_players_update_column = 'captain' | 'checked_in' | 'discord_id' | 'id' | 'is_connected' | 'match_lineup_id' | 'party_id' | 'party_source' | 'placeholder_name' | 'steam_id' + + +/** aggregate var_pop on columns */ +export interface match_lineup_players_var_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'match_lineup_players_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface match_lineup_players_var_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'match_lineup_players_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface match_lineup_players_variance_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'match_lineup_players_variance_fields' +} + + +/** relational table for assigning a team to a match and lineup */ +export interface match_lineups { + /** A computed field, executes function "can_pick_map_veto" */ + can_pick_map_veto: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_pick_region_veto" */ + can_pick_region_veto: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_update_lineup" */ + can_update_lineup: (Scalars['Boolean'] | null) + /** An object relationship */ + captain: (v_match_captains | null) + /** An object relationship */ + coach: (players | null) + coach_steam_id: (Scalars['bigint'] | null) + id: Scalars['uuid'] + /** A computed field, executes function "is_on_lineup" */ + is_on_lineup: (Scalars['Boolean'] | null) + /** A computed field, executes function "lineup_is_picking_map_veto" */ + is_picking_map_veto: (Scalars['Boolean'] | null) + /** A computed field, executes function "lineup_is_picking_region_veto" */ + is_picking_region_veto: (Scalars['Boolean'] | null) + /** A computed field, executes function "is_match_lineup_ready" */ + is_ready: (Scalars['Boolean'] | null) + /** An array relationship */ + 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[] + /** 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' +} + + +/** 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_lineups" */ +export interface match_lineups_aggregate_fields { + avg: (match_lineups_avg_fields | null) + count: Scalars['Int'] + max: (match_lineups_max_fields | null) + min: (match_lineups_min_fields | null) + stddev: (match_lineups_stddev_fields | null) + stddev_pop: (match_lineups_stddev_pop_fields | null) + stddev_samp: (match_lineups_stddev_samp_fields | null) + sum: (match_lineups_sum_fields | null) + var_pop: (match_lineups_var_pop_fields | null) + var_samp: (match_lineups_var_samp_fields | null) + variance: (match_lineups_variance_fields | null) + __typename: 'match_lineups_aggregate_fields' +} + + +/** aggregate avg on columns */ +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_lineups" */ +export type match_lineups_constraint = 'match_teams_pkey' + + +/** aggregate max on columns */ +export interface match_lineups_max_fields { + coach_steam_id: (Scalars['bigint'] | null) + id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + /** A computed field, executes function "get_team_name" */ + name: (Scalars['String'] | null) + team_id: (Scalars['uuid'] | null) + team_name: (Scalars['String'] | null) + __typename: 'match_lineups_max_fields' +} + + +/** aggregate min on columns */ +export interface match_lineups_min_fields { + coach_steam_id: (Scalars['bigint'] | null) + id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + /** A computed field, executes function "get_team_name" */ + name: (Scalars['String'] | null) + team_id: (Scalars['uuid'] | null) + team_name: (Scalars['String'] | null) + __typename: 'match_lineups_min_fields' +} + + +/** 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_lineups[] + __typename: 'match_lineups_mutation_response' +} + + +/** 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_lineups_stddev_fields { + coach_steam_id: (Scalars['Float'] | null) + __typename: 'match_lineups_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface match_lineups_stddev_pop_fields { + coach_steam_id: (Scalars['Float'] | null) + __typename: 'match_lineups_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +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_lineups_sum_fields { + coach_steam_id: (Scalars['bigint'] | null) + __typename: 'match_lineups_sum_fields' +} + + +/** 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_lineups_var_pop_fields { + coach_steam_id: (Scalars['Float'] | null) + __typename: 'match_lineups_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface match_lineups_var_samp_fields { + coach_steam_id: (Scalars['Float'] | null) + __typename: 'match_lineups_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface match_lineups_variance_fields { + coach_steam_id: (Scalars['Float'] | null) + __typename: 'match_lineups_variance_fields' +} + + +/** columns and relationships of "match_map_demos" */ +export interface match_map_demos { + bombs: (Scalars['jsonb'] | null) + /** An array relationship */ + clip_render_jobs: clip_render_jobs[] + /** An aggregate relationship */ + clip_render_jobs_aggregate: clip_render_jobs_aggregate + created_at: Scalars['timestamptz'] + cs2_build: (Scalars['String'] | null) + /** An array relationship */ + demo_sessions: match_demo_sessions[] + /** An aggregate relationship */ + demo_sessions_aggregate: match_demo_sessions_aggregate + /** A computed field, executes function "demo_download_url" */ + download_url: (Scalars['String'] | null) + duration_seconds: (Scalars['Float'] | null) + file: Scalars['String'] + geometry_validated: (Scalars['Boolean'] | null) + id: Scalars['uuid'] + kills: (Scalars['jsonb'] | null) + map_name: (Scalars['String'] | null) + /** An object relationship */ + match: matches + /** An array relationship */ + match_clips: match_clips[] + /** An aggregate relationship */ + match_clips_aggregate: match_clips_aggregate + match_id: Scalars['uuid'] + /** An object relationship */ + match_map: match_maps + match_map_id: Scalars['uuid'] + metadata_parsed_at: (Scalars['timestamptz'] | null) + parser_version: (Scalars['Int'] | null) + playback_file: (Scalars['String'] | null) + playback_size: (Scalars['Int'] | null) + /** A computed field, executes function "demo_playback_url" */ + playback_url: (Scalars['String'] | null) + playback_version: (Scalars['Int'] | 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_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_map_demos" */ +export interface match_map_demos_aggregate_fields { + avg: (match_map_demos_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' +} + + +/** aggregate avg on columns */ +export interface match_map_demos_avg_fields { + duration_seconds: (Scalars['Float'] | null) + parser_version: (Scalars['Float'] | null) + playback_size: (Scalars['Float'] | null) + playback_version: (Scalars['Float'] | null) + size: (Scalars['Float'] | null) + tick_rate: (Scalars['Float'] | null) + total_ticks: (Scalars['Float'] | null) + __typename: 'match_map_demos_avg_fields' +} + + +/** unique or primary key constraints on table "match_map_demos" */ +export type match_map_demos_constraint = 'match_demos_pkey' | 'match_map_demos_match_map_id_file_key' + + +/** aggregate max on columns */ +export interface match_map_demos_max_fields { + created_at: (Scalars['timestamptz'] | null) + cs2_build: (Scalars['String'] | null) + /** A computed field, executes function "demo_download_url" */ + download_url: (Scalars['String'] | null) + duration_seconds: (Scalars['Float'] | null) + file: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + map_name: (Scalars['String'] | null) + match_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + metadata_parsed_at: (Scalars['timestamptz'] | null) + parser_version: (Scalars['Int'] | null) + playback_file: (Scalars['String'] | null) + playback_size: (Scalars['Int'] | null) + /** A computed field, executes function "demo_playback_url" */ + playback_url: (Scalars['String'] | null) + playback_version: (Scalars['Int'] | null) + size: (Scalars['Int'] | null) + tick_rate: (Scalars['Float'] | null) + total_ticks: (Scalars['Int'] | null) + workshop_id: (Scalars['String'] | null) + __typename: 'match_map_demos_max_fields' +} + + +/** aggregate min on columns */ +export interface match_map_demos_min_fields { + created_at: (Scalars['timestamptz'] | null) + cs2_build: (Scalars['String'] | null) + /** A computed field, executes function "demo_download_url" */ + download_url: (Scalars['String'] | null) + duration_seconds: (Scalars['Float'] | null) + file: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + map_name: (Scalars['String'] | null) + match_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + metadata_parsed_at: (Scalars['timestamptz'] | null) + parser_version: (Scalars['Int'] | null) + playback_file: (Scalars['String'] | null) + playback_size: (Scalars['Int'] | null) + /** A computed field, executes function "demo_playback_url" */ + playback_url: (Scalars['String'] | null) + playback_version: (Scalars['Int'] | 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_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_map_demos[] + __typename: 'match_map_demos_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' | 'parser_version' | 'playback_file' | 'playback_size' | 'playback_version' | '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_map_demos_stddev_fields { + duration_seconds: (Scalars['Float'] | null) + parser_version: (Scalars['Float'] | null) + playback_size: (Scalars['Float'] | null) + playback_version: (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_map_demos_stddev_pop_fields { + duration_seconds: (Scalars['Float'] | null) + parser_version: (Scalars['Float'] | null) + playback_size: (Scalars['Float'] | null) + playback_version: (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_map_demos_stddev_samp_fields { + duration_seconds: (Scalars['Float'] | null) + parser_version: (Scalars['Float'] | null) + playback_size: (Scalars['Float'] | null) + playback_version: (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_map_demos_sum_fields { + duration_seconds: (Scalars['Float'] | null) + parser_version: (Scalars['Int'] | null) + playback_size: (Scalars['Int'] | null) + playback_version: (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_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' | 'parser_version' | 'playback_file' | 'playback_size' | 'playback_version' | 'players' | 'round_ticks' | 'size' | 'tick_rate' | 'total_ticks' | 'workshop_id' + + +/** aggregate var_pop on columns */ +export interface match_map_demos_var_pop_fields { + duration_seconds: (Scalars['Float'] | null) + parser_version: (Scalars['Float'] | null) + playback_size: (Scalars['Float'] | null) + playback_version: (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_map_demos_var_samp_fields { + duration_seconds: (Scalars['Float'] | null) + parser_version: (Scalars['Float'] | null) + playback_size: (Scalars['Float'] | null) + playback_version: (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_map_demos_variance_fields { + duration_seconds: (Scalars['Float'] | null) + parser_version: (Scalars['Float'] | null) + playback_size: (Scalars['Float'] | null) + playback_version: (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_map_rounds" */ +export interface match_map_rounds { + /** An array relationship */ + assists: player_assists[] + /** An aggregate relationship */ + assists_aggregate: player_assists_aggregate + backup_file: (Scalars['String'] | null) + created_at: Scalars['timestamptz'] + deleted_at: (Scalars['timestamptz'] | null) + /** A computed field, executes function "has_backup_file" */ + has_backup_file: (Scalars['Boolean'] | null) + id: Scalars['uuid'] + /** An array relationship */ + kills: player_kills[] + /** An aggregate relationship */ + kills_aggregate: player_kills_aggregate + lineup_1_money: Scalars['Int'] + lineup_1_score: Scalars['Int'] + lineup_1_side: e_sides_enum + lineup_1_timeouts_available: Scalars['Int'] + lineup_2_money: Scalars['Int'] + lineup_2_score: Scalars['Int'] + lineup_2_side: e_sides_enum + lineup_2_timeouts_available: Scalars['Int'] + /** An object relationship */ + match_map: match_maps + match_map_id: Scalars['uuid'] + round: Scalars['Int'] + time: Scalars['timestamptz'] + winning_reason: (e_winning_reasons_enum | null) + winning_side: Scalars['String'] + __typename: 'match_map_rounds' +} + + +/** 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_map_rounds" */ +export interface match_map_rounds_aggregate_fields { + avg: (match_map_rounds_avg_fields | null) + count: Scalars['Int'] + max: (match_map_rounds_max_fields | null) + min: (match_map_rounds_min_fields | null) + stddev: (match_map_rounds_stddev_fields | null) + stddev_pop: (match_map_rounds_stddev_pop_fields | null) + stddev_samp: (match_map_rounds_stddev_samp_fields | null) + sum: (match_map_rounds_sum_fields | null) + var_pop: (match_map_rounds_var_pop_fields | null) + var_samp: (match_map_rounds_var_samp_fields | null) + variance: (match_map_rounds_variance_fields | null) + __typename: 'match_map_rounds_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface match_map_rounds_avg_fields { + lineup_1_money: (Scalars['Float'] | null) + lineup_1_score: (Scalars['Float'] | null) + lineup_1_timeouts_available: (Scalars['Float'] | null) + lineup_2_money: (Scalars['Float'] | null) + lineup_2_score: (Scalars['Float'] | null) + lineup_2_timeouts_available: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'match_map_rounds_avg_fields' +} + + +/** unique or primary key constraints on table "match_map_rounds" */ +export type match_map_rounds_constraint = 'match_rounds__id_key' | 'match_rounds_match_id_round_key' | 'match_rounds_pkey' + + +/** aggregate max on columns */ +export interface match_map_rounds_max_fields { + backup_file: (Scalars['String'] | null) + created_at: (Scalars['timestamptz'] | null) + deleted_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + lineup_1_money: (Scalars['Int'] | null) + lineup_1_score: (Scalars['Int'] | null) + lineup_1_timeouts_available: (Scalars['Int'] | null) + lineup_2_money: (Scalars['Int'] | null) + lineup_2_score: (Scalars['Int'] | null) + lineup_2_timeouts_available: (Scalars['Int'] | null) + match_map_id: (Scalars['uuid'] | null) + round: (Scalars['Int'] | null) + time: (Scalars['timestamptz'] | null) + winning_side: (Scalars['String'] | null) + __typename: 'match_map_rounds_max_fields' +} + + +/** aggregate min on columns */ +export interface match_map_rounds_min_fields { + backup_file: (Scalars['String'] | null) + created_at: (Scalars['timestamptz'] | null) + deleted_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + lineup_1_money: (Scalars['Int'] | null) + lineup_1_score: (Scalars['Int'] | null) + lineup_1_timeouts_available: (Scalars['Int'] | null) + lineup_2_money: (Scalars['Int'] | null) + lineup_2_score: (Scalars['Int'] | null) + lineup_2_timeouts_available: (Scalars['Int'] | null) + match_map_id: (Scalars['uuid'] | null) + round: (Scalars['Int'] | null) + time: (Scalars['timestamptz'] | null) + winning_side: (Scalars['String'] | null) + __typename: 'match_map_rounds_min_fields' +} + + +/** response of any mutation on the table "match_map_rounds" */ +export interface match_map_rounds_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: match_map_rounds[] + __typename: 'match_map_rounds_mutation_response' +} + + +/** select columns of table "match_map_rounds" */ +export type match_map_rounds_select_column = 'backup_file' | 'created_at' | 'deleted_at' | 'id' | 'lineup_1_money' | 'lineup_1_score' | 'lineup_1_side' | 'lineup_1_timeouts_available' | 'lineup_2_money' | 'lineup_2_score' | 'lineup_2_side' | 'lineup_2_timeouts_available' | 'match_map_id' | 'round' | 'time' | 'winning_reason' | 'winning_side' + + +/** aggregate stddev on columns */ +export interface match_map_rounds_stddev_fields { + lineup_1_money: (Scalars['Float'] | null) + lineup_1_score: (Scalars['Float'] | null) + lineup_1_timeouts_available: (Scalars['Float'] | null) + lineup_2_money: (Scalars['Float'] | null) + lineup_2_score: (Scalars['Float'] | null) + lineup_2_timeouts_available: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'match_map_rounds_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface match_map_rounds_stddev_pop_fields { + lineup_1_money: (Scalars['Float'] | null) + lineup_1_score: (Scalars['Float'] | null) + lineup_1_timeouts_available: (Scalars['Float'] | null) + lineup_2_money: (Scalars['Float'] | null) + lineup_2_score: (Scalars['Float'] | null) + lineup_2_timeouts_available: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'match_map_rounds_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface match_map_rounds_stddev_samp_fields { + lineup_1_money: (Scalars['Float'] | null) + lineup_1_score: (Scalars['Float'] | null) + lineup_1_timeouts_available: (Scalars['Float'] | null) + lineup_2_money: (Scalars['Float'] | null) + lineup_2_score: (Scalars['Float'] | null) + lineup_2_timeouts_available: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'match_map_rounds_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface match_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'] + /** An object relationship */ + map: maps + map_id: Scalars['uuid'] + /** An object relationship */ + match: matches + match_id: Scalars['uuid'] + /** An object relationship */ + match_lineup: match_lineups + match_lineup_id: Scalars['uuid'] + side: (Scalars['String'] | null) + type: e_veto_pick_types_enum + __typename: 'match_map_veto_picks' +} + + +/** aggregated selection of "match_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_map_veto_picks" */ +export interface match_map_veto_picks_aggregate_fields { + 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' +} + + +/** 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_map_veto_picks_max_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + map_id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + match_lineup_id: (Scalars['uuid'] | null) + side: (Scalars['String'] | null) + __typename: 'match_map_veto_picks_max_fields' +} + + +/** aggregate min on columns */ +export interface match_map_veto_picks_min_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + map_id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + match_lineup_id: (Scalars['uuid'] | null) + side: (Scalars['String'] | null) + __typename: 'match_map_veto_picks_min_fields' +} + + +/** response of any mutation on the table "match_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_map_veto_picks[] + __typename: 'match_map_veto_picks_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 "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_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_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 "match_maps" */ +export interface match_maps { + clips_count: Scalars['Int'] + created_at: Scalars['timestamptz'] + demo_processing_started_at: (Scalars['timestamptz'] | null) + /** An array relationship */ + demos: match_map_demos[] + /** An aggregate relationship */ + demos_aggregate: match_map_demos_aggregate + /** A computed field, executes function "match_map_demo_download_url" */ + demos_download_url: (Scalars['String'] | null) + /** A computed field, executes function "match_map_demo_total_size" */ + demos_total_size: (Scalars['Int'] | null) + /** An object relationship */ + e_match_map_status: e_match_map_status + ended_at: (Scalars['timestamptz'] | null) + /** An array relationship */ + flashes: player_flashes[] + /** An aggregate relationship */ + flashes_aggregate: player_flashes_aggregate + id: Scalars['uuid'] + /** A computed field, executes function "is_current_match_map" */ + is_current_map: (Scalars['Boolean'] | null) + latest_clip_at: (Scalars['timestamptz'] | null) + /** A computed field, executes function "lineup_1_score" */ + lineup_1_score: (Scalars['Int'] | null) + lineup_1_side: e_sides_enum + lineup_1_timeouts_available: Scalars['Int'] + /** A computed field, executes function "lineup_2_score" */ + lineup_2_score: (Scalars['Int'] | null) + lineup_2_side: (e_sides_enum | null) + lineup_2_timeouts_available: Scalars['Int'] + /** An object relationship */ + map: maps + map_id: Scalars['uuid'] + /** An object relationship */ + match: matches + /** An array relationship */ + match_clips: match_clips[] + /** An aggregate relationship */ + match_clips_aggregate: match_clips_aggregate + match_id: Scalars['uuid'] + /** An array relationship */ + objectives: player_objectives[] + /** An aggregate relationship */ + objectives_aggregate: player_objectives_aggregate + order: Scalars['Int'] + /** An array relationship */ + player_assists: player_assists[] + /** An aggregate relationship */ + player_assists_aggregate: player_assists_aggregate + /** An array relationship */ + player_damages: player_damages[] + /** An aggregate relationship */ + player_damages_aggregate: player_damages_aggregate + /** An array relationship */ + player_kills: player_kills[] + /** An aggregate relationship */ + player_kills_aggregate: player_kills_aggregate + /** An array relationship */ + player_unused_utilities: player_unused_utility[] + /** An aggregate relationship */ + player_unused_utilities_aggregate: player_unused_utility_aggregate + public_clips_count: Scalars['Int'] + public_latest_clip_at: (Scalars['timestamptz'] | null) + /** An array relationship */ + rounds: match_map_rounds[] + /** An aggregate relationship */ + rounds_aggregate: match_map_rounds_aggregate + started_at: (Scalars['timestamptz'] | null) + status: e_match_map_status_enum + /** An array relationship */ + utility: player_utility[] + /** An aggregate relationship */ + utility_aggregate: player_utility_aggregate + /** An array relationship */ + vetos: match_map_veto_picks[] + /** An aggregate relationship */ + vetos_aggregate: match_map_veto_picks_aggregate + winning_lineup_id: (Scalars['uuid'] | null) + __typename: 'match_maps' +} + + +/** 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 "match_maps" */ +export interface match_maps_aggregate_fields { + avg: (match_maps_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' +} + + +/** aggregate avg on columns */ +export interface match_maps_avg_fields { + clips_count: (Scalars['Float'] | null) + /** A computed field, executes function "match_map_demo_total_size" */ + demos_total_size: (Scalars['Int'] | null) + /** A computed field, executes function "lineup_1_score" */ + lineup_1_score: (Scalars['Int'] | null) + lineup_1_timeouts_available: (Scalars['Float'] | null) + /** A computed field, executes function "lineup_2_score" */ + lineup_2_score: (Scalars['Int'] | null) + lineup_2_timeouts_available: (Scalars['Float'] | null) + order: (Scalars['Float'] | null) + public_clips_count: (Scalars['Float'] | null) + __typename: 'match_maps_avg_fields' +} + + +/** unique or primary key constraints on table "match_maps" */ +export type match_maps_constraint = 'match_maps_match_id_order_key' | 'match_maps_pkey' + + +/** aggregate max on columns */ +export interface 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) + 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' +} + + +/** 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) + 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' +} + + +/** 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: match_maps[] + __typename: 'match_maps_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' + + +/** 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' +} + + +/** 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 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 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 "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 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 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 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 "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 "match_options" */ +export interface match_options_aggregate { + aggregate: (match_options_aggregate_fields | null) + nodes: match_options[] + __typename: 'match_options_aggregate' +} + + +/** aggregate fields of "match_options" */ +export interface match_options_aggregate_fields { + avg: (match_options_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' +} + + +/** 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 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 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 "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: match_options[] + __typename: 'match_options_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' | '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' + + +/** 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' + + +/** select "match_options_aggregate_bool_exp_bool_or_arguments_columns" columns of table "match_options" */ +export type match_options_select_column_match_options_aggregate_bool_exp_bool_or_arguments_columns = 'auto_cancellation' | 'camera_allow_teammates' | 'camera_required' | 'coaches' | 'default_models' | 'halftime_pausematch' | 'knife_round' | 'map_veto' | 'overtime' | 'prefer_dedicated_server' | 'region_veto' + + +/** aggregate stddev on columns */ +export interface match_options_stddev_fields { + auto_cancel_duration: (Scalars['Float'] | null) + best_of: (Scalars['Float'] | null) + live_match_timeout: (Scalars['Float'] | null) + mr: (Scalars['Float'] | null) + number_of_substitutes: (Scalars['Float'] | null) + round_restart_delay: (Scalars['Float'] | null) + tv_delay: (Scalars['Float'] | null) + veto_pick_timeout: (Scalars['Float'] | null) + __typename: 'match_options_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface match_options_stddev_pop_fields { + auto_cancel_duration: (Scalars['Float'] | null) + best_of: (Scalars['Float'] | null) + live_match_timeout: (Scalars['Float'] | null) + mr: (Scalars['Float'] | null) + number_of_substitutes: (Scalars['Float'] | null) + round_restart_delay: (Scalars['Float'] | null) + tv_delay: (Scalars['Float'] | null) + veto_pick_timeout: (Scalars['Float'] | null) + __typename: 'match_options_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface match_options_stddev_samp_fields { + auto_cancel_duration: (Scalars['Float'] | null) + best_of: (Scalars['Float'] | null) + live_match_timeout: (Scalars['Float'] | null) + mr: (Scalars['Float'] | null) + number_of_substitutes: (Scalars['Float'] | null) + round_restart_delay: (Scalars['Float'] | null) + tv_delay: (Scalars['Float'] | null) + veto_pick_timeout: (Scalars['Float'] | null) + __typename: 'match_options_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface match_options_sum_fields { + auto_cancel_duration: (Scalars['Int'] | null) + best_of: (Scalars['Int'] | null) + live_match_timeout: (Scalars['Int'] | null) + mr: (Scalars['Int'] | null) + number_of_substitutes: (Scalars['Int'] | null) + round_restart_delay: (Scalars['Int'] | null) + tv_delay: (Scalars['Int'] | null) + veto_pick_timeout: (Scalars['Int'] | null) + __typename: 'match_options_sum_fields' +} + + +/** update columns of table "match_options" */ +export type match_options_update_column = 'auto_cancel_duration' | 'auto_cancellation' | 'best_of' | 'camera_allow_teammates' | 'camera_required' | 'check_in_setting' | 'coaches' | 'default_models' | 'game_mode_id' | 'halftime_pausematch' | 'id' | 'invite_code' | 'knife_round' | 'live_match_timeout' | 'map_pool_id' | 'map_veto' | 'match_mode' | 'mr' | 'number_of_substitutes' | 'overtime' | 'prefer_dedicated_server' | 'ready_setting' | 'region_veto' | 'regions' | 'round_restart_delay' | 'tech_timeout_setting' | 'timeout_setting' | 'tv_delay' | 'type' | 'veto_pick_timeout' + + +/** aggregate var_pop on columns */ +export interface match_options_var_pop_fields { + auto_cancel_duration: (Scalars['Float'] | null) + best_of: (Scalars['Float'] | null) + live_match_timeout: (Scalars['Float'] | null) + mr: (Scalars['Float'] | null) + number_of_substitutes: (Scalars['Float'] | null) + round_restart_delay: (Scalars['Float'] | null) + tv_delay: (Scalars['Float'] | null) + veto_pick_timeout: (Scalars['Float'] | null) + __typename: 'match_options_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface match_options_var_samp_fields { + auto_cancel_duration: (Scalars['Float'] | null) + best_of: (Scalars['Float'] | null) + live_match_timeout: (Scalars['Float'] | null) + mr: (Scalars['Float'] | null) + number_of_substitutes: (Scalars['Float'] | null) + round_restart_delay: (Scalars['Float'] | null) + tv_delay: (Scalars['Float'] | null) + veto_pick_timeout: (Scalars['Float'] | null) + __typename: 'match_options_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface match_options_variance_fields { + auto_cancel_duration: (Scalars['Float'] | null) + best_of: (Scalars['Float'] | null) + live_match_timeout: (Scalars['Float'] | null) + mr: (Scalars['Float'] | null) + number_of_substitutes: (Scalars['Float'] | null) + round_restart_delay: (Scalars['Float'] | null) + tv_delay: (Scalars['Float'] | null) + veto_pick_timeout: (Scalars['Float'] | null) + __typename: 'match_options_variance_fields' +} + + +/** columns and relationships of "match_region_veto_picks" */ +export interface match_region_veto_picks { + auto_picked: Scalars['Boolean'] + created_at: Scalars['timestamptz'] + id: Scalars['uuid'] + /** An object relationship */ + match: matches + match_id: Scalars['uuid'] + /** An object relationship */ + match_lineup: match_lineups + match_lineup_id: Scalars['uuid'] + region: Scalars['String'] + type: e_veto_pick_types_enum + __typename: 'match_region_veto_picks' +} + + +/** aggregated selection of "match_region_veto_picks" */ +export interface match_region_veto_picks_aggregate { + aggregate: (match_region_veto_picks_aggregate_fields | null) + nodes: match_region_veto_picks[] + __typename: 'match_region_veto_picks_aggregate' +} + + +/** aggregate fields of "match_region_veto_picks" */ +export interface match_region_veto_picks_aggregate_fields { + count: Scalars['Int'] + max: (match_region_veto_picks_max_fields | null) + min: (match_region_veto_picks_min_fields | null) + __typename: 'match_region_veto_picks_aggregate_fields' +} + + +/** unique or primary key constraints on table "match_region_veto_picks" */ +export type match_region_veto_picks_constraint = 'match_region_veto_picks_match_id_region_key' | 'match_region_veto_picks_pkey' + + +/** aggregate max on columns */ +export interface match_region_veto_picks_max_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + match_lineup_id: (Scalars['uuid'] | null) + region: (Scalars['String'] | null) + __typename: 'match_region_veto_picks_max_fields' +} + + +/** aggregate min on columns */ +export interface match_region_veto_picks_min_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + match_lineup_id: (Scalars['uuid'] | null) + region: (Scalars['String'] | null) + __typename: 'match_region_veto_picks_min_fields' +} + + +/** response of any mutation on the table "match_region_veto_picks" */ +export interface match_region_veto_picks_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: match_region_veto_picks[] + __typename: 'match_region_veto_picks_mutation_response' +} + + +/** select columns of table "match_region_veto_picks" */ +export type match_region_veto_picks_select_column = 'auto_picked' | 'created_at' | 'id' | 'match_id' | 'match_lineup_id' | 'region' | 'type' + + +/** select "match_region_veto_picks_aggregate_bool_exp_bool_and_arguments_columns" columns of table "match_region_veto_picks" */ +export type match_region_veto_picks_select_column_match_region_veto_picks_aggregate_bool_exp_bool_and_arguments_columns = 'auto_picked' + + +/** select "match_region_veto_picks_aggregate_bool_exp_bool_or_arguments_columns" columns of table "match_region_veto_picks" */ +export type match_region_veto_picks_select_column_match_region_veto_picks_aggregate_bool_exp_bool_or_arguments_columns = 'auto_picked' + + +/** update columns of table "match_region_veto_picks" */ +export type match_region_veto_picks_update_column = 'auto_picked' | 'created_at' | 'id' | 'match_id' | 'match_lineup_id' | 'region' | 'type' + + +/** columns and relationships of "match_streams" */ +export interface match_streams { + autodirector: Scalars['Boolean'] + error_message: (Scalars['String'] | null) + /** An object relationship */ + game_server_node: (game_server_nodes | null) + game_server_node_id: (Scalars['String'] | null) + id: Scalars['uuid'] + is_game_streamer: Scalars['Boolean'] + is_live: Scalars['Boolean'] + k8s_service_name: (Scalars['String'] | null) + last_status_at: (Scalars['timestamptz'] | null) + link: Scalars['String'] + /** An object relationship */ + match: matches + match_id: Scalars['uuid'] + mode: Scalars['String'] + priority: Scalars['Int'] + status: (Scalars['String'] | null) + status_history: Scalars['jsonb'] + stream_url: (Scalars['String'] | null) + title: Scalars['String'] + __typename: 'match_streams' +} + + +/** aggregated selection of "match_streams" */ +export interface match_streams_aggregate { + aggregate: (match_streams_aggregate_fields | null) + nodes: match_streams[] + __typename: 'match_streams_aggregate' +} + + +/** aggregate fields of "match_streams" */ +export interface match_streams_aggregate_fields { + avg: (match_streams_avg_fields | null) + count: Scalars['Int'] + max: (match_streams_max_fields | null) + min: (match_streams_min_fields | null) + stddev: (match_streams_stddev_fields | null) + stddev_pop: (match_streams_stddev_pop_fields | null) + stddev_samp: (match_streams_stddev_samp_fields | null) + sum: (match_streams_sum_fields | null) + var_pop: (match_streams_var_pop_fields | null) + var_samp: (match_streams_var_samp_fields | null) + variance: (match_streams_variance_fields | null) + __typename: 'match_streams_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface match_streams_avg_fields { + priority: (Scalars['Float'] | null) + __typename: 'match_streams_avg_fields' +} + + +/** unique or primary key constraints on table "match_streams" */ +export type match_streams_constraint = 'match_streams_pkey' + + +/** aggregate max on columns */ +export interface match_streams_max_fields { + error_message: (Scalars['String'] | null) + game_server_node_id: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + k8s_service_name: (Scalars['String'] | null) + last_status_at: (Scalars['timestamptz'] | null) + link: (Scalars['String'] | null) + match_id: (Scalars['uuid'] | null) + mode: (Scalars['String'] | null) + priority: (Scalars['Int'] | null) + status: (Scalars['String'] | null) + stream_url: (Scalars['String'] | null) + title: (Scalars['String'] | null) + __typename: 'match_streams_max_fields' +} + + +/** aggregate min on columns */ +export interface match_streams_min_fields { + error_message: (Scalars['String'] | null) + game_server_node_id: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + k8s_service_name: (Scalars['String'] | null) + last_status_at: (Scalars['timestamptz'] | null) + link: (Scalars['String'] | null) + match_id: (Scalars['uuid'] | null) + mode: (Scalars['String'] | null) + priority: (Scalars['Int'] | null) + status: (Scalars['String'] | null) + stream_url: (Scalars['String'] | null) + title: (Scalars['String'] | null) + __typename: 'match_streams_min_fields' +} + + +/** response of any mutation on the table "match_streams" */ +export interface match_streams_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: match_streams[] + __typename: 'match_streams_mutation_response' +} + + +/** select columns of table "match_streams" */ +export type match_streams_select_column = 'autodirector' | 'error_message' | 'game_server_node_id' | 'id' | 'is_game_streamer' | 'is_live' | 'k8s_service_name' | 'last_status_at' | 'link' | 'match_id' | 'mode' | 'priority' | 'status' | 'status_history' | 'stream_url' | 'title' + + +/** select "match_streams_aggregate_bool_exp_bool_and_arguments_columns" columns of table "match_streams" */ +export type match_streams_select_column_match_streams_aggregate_bool_exp_bool_and_arguments_columns = 'autodirector' | 'is_game_streamer' | 'is_live' + + +/** select "match_streams_aggregate_bool_exp_bool_or_arguments_columns" columns of table "match_streams" */ +export type match_streams_select_column_match_streams_aggregate_bool_exp_bool_or_arguments_columns = 'autodirector' | 'is_game_streamer' | 'is_live' + + +/** aggregate stddev on columns */ +export interface match_streams_stddev_fields { + priority: (Scalars['Float'] | null) + __typename: 'match_streams_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface match_streams_stddev_pop_fields { + priority: (Scalars['Float'] | null) + __typename: 'match_streams_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface match_streams_stddev_samp_fields { + priority: (Scalars['Float'] | null) + __typename: 'match_streams_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface match_streams_sum_fields { + priority: (Scalars['Int'] | null) + __typename: 'match_streams_sum_fields' +} + + +/** update columns of table "match_streams" */ +export type match_streams_update_column = 'autodirector' | 'error_message' | 'game_server_node_id' | 'id' | 'is_game_streamer' | 'is_live' | 'k8s_service_name' | 'last_status_at' | 'link' | 'match_id' | 'mode' | 'priority' | 'status' | 'status_history' | 'stream_url' | 'title' + + +/** aggregate var_pop on columns */ +export interface match_streams_var_pop_fields { + priority: (Scalars['Float'] | null) + __typename: 'match_streams_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface match_streams_var_samp_fields { + priority: (Scalars['Float'] | null) + __typename: 'match_streams_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface match_streams_variance_fields { + priority: (Scalars['Float'] | null) + __typename: 'match_streams_variance_fields' +} + + +/** columns and relationships of "match_type_cfgs" */ +export interface match_type_cfgs { + cfg: Scalars['String'] + type: e_game_cfg_types_enum + __typename: 'match_type_cfgs' +} + + +/** aggregated selection of "match_type_cfgs" */ +export interface match_type_cfgs_aggregate { + aggregate: (match_type_cfgs_aggregate_fields | null) + nodes: match_type_cfgs[] + __typename: 'match_type_cfgs_aggregate' +} + + +/** aggregate fields of "match_type_cfgs" */ +export interface match_type_cfgs_aggregate_fields { + count: Scalars['Int'] + max: (match_type_cfgs_max_fields | null) + min: (match_type_cfgs_min_fields | null) + __typename: 'match_type_cfgs_aggregate_fields' +} + + +/** unique or primary key constraints on table "match_type_cfgs" */ +export type match_type_cfgs_constraint = 'match_type_cfgs_pkey' + + +/** aggregate max on columns */ +export interface match_type_cfgs_max_fields { + cfg: (Scalars['String'] | null) + __typename: 'match_type_cfgs_max_fields' +} + + +/** aggregate min on columns */ +export interface match_type_cfgs_min_fields { + cfg: (Scalars['String'] | null) + __typename: 'match_type_cfgs_min_fields' +} + + +/** response of any mutation on the table "match_type_cfgs" */ +export interface match_type_cfgs_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: match_type_cfgs[] + __typename: 'match_type_cfgs_mutation_response' +} + + +/** select columns of table "match_type_cfgs" */ +export type match_type_cfgs_select_column = 'cfg' | 'type' + + +/** update columns of table "match_type_cfgs" */ +export type match_type_cfgs_update_column = 'cfg' | 'type' + + +/** columns and relationships of "matches" */ +export interface matches { + /** A computed field, executes function "can_assign_server_to_match" */ + can_assign_server: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_cancel_match" */ + can_cancel: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_check_in" */ + can_check_in: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_reassign_winner" */ + can_reassign_winner: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_schedule_match" */ + can_schedule: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_start_match" */ + can_start: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_stream_live" */ + can_stream_live: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_stream_tv" */ + can_stream_tv: (Scalars['Boolean'] | null) + cancels_at: (Scalars['timestamptz'] | null) + /** An array relationship */ + clutches: v_match_clutches[] + /** An aggregate relationship */ + clutches_aggregate: v_match_clutches_aggregate + /** A computed field, executes function "get_match_connection_link" */ + connection_link: (Scalars['String'] | null) + /** A computed field, executes function "get_match_connection_string" */ + connection_string: (Scalars['String'] | null) + counts_toward_ranking: Scalars['Boolean'] + created_at: Scalars['timestamptz'] + /** A computed field, executes function "get_current_match_map" */ + current_match_map_id: (Scalars['uuid'] | null) + /** An array relationship */ + demos: match_map_demos[] + /** An aggregate relationship */ + demos_aggregate: match_map_demos_aggregate + /** An array relationship */ + draft_games: draft_games[] + /** An aggregate relationship */ + draft_games_aggregate: draft_games_aggregate + /** An object relationship */ + e_match_status: e_match_status + /** An object relationship */ + e_region: (server_regions | null) + effective_at: (Scalars['timestamptz'] | null) + /** An array relationship */ + elo_changes: v_player_elo[] + /** An aggregate relationship */ + elo_changes_aggregate: v_player_elo_aggregate + ended_at: (Scalars['timestamptz'] | null) + external_id: (Scalars['String'] | null) + id: Scalars['uuid'] + /** A computed field, executes function "match_invite_code" */ + invite_code: (Scalars['String'] | null) + /** A computed field, executes function "is_captain" */ + is_captain: (Scalars['Boolean'] | null) + /** A computed field, executes function "is_coach" */ + is_coach: (Scalars['Boolean'] | null) + /** A computed field, executes function "is_friend_in_match_lineup" */ + is_friend_in_match_lineup: (Scalars['Boolean'] | null) + /** A computed field, executes function "is_in_lineup" */ + is_in_lineup: (Scalars['Boolean'] | null) + /** A computed field, executes function "is_match_server_available" */ + is_match_server_available: (Scalars['Boolean'] | null) + /** A computed field, executes function "is_match_organizer" */ + is_organizer: (Scalars['Boolean'] | null) + /** A computed field, executes function "is_server_online" */ + is_server_online: (Scalars['Boolean'] | null) + /** A computed field, executes function "is_tournament_match" */ + is_tournament_match: (Scalars['Boolean'] | null) + label: (Scalars['String'] | null) + /** An object relationship */ + lineup_1: match_lineups + lineup_1_id: Scalars['uuid'] + /** An object relationship */ + lineup_2: match_lineups + lineup_2_id: Scalars['uuid'] + /** A computed field, executes function "get_lineup_counts" */ + lineup_counts: (Scalars['json'] | null) + /** A computed field, executes function "get_map_veto_picking_lineup_id" */ + map_veto_picking_lineup_id: (Scalars['uuid'] | null) + /** An array relationship */ + map_veto_picks: match_map_veto_picks[] + /** An aggregate relationship */ + map_veto_picks_aggregate: match_map_veto_picks_aggregate + /** A computed field, executes function "get_map_veto_type" */ + map_veto_type: (Scalars['String'] | null) + /** An array relationship */ + match_maps: match_maps[] + /** An aggregate relationship */ + match_maps_aggregate: match_maps_aggregate + match_options_id: (Scalars['uuid'] | null) + /** A computed field, executes function "match_max_players_per_lineup" */ + max_players_per_lineup: (Scalars['Int'] | null) + /** A computed field, executes function "match_min_players_per_lineup" */ + min_players_per_lineup: (Scalars['Int'] | null) + /** An array relationship */ + opening_duels: v_match_player_opening_duels[] + /** An aggregate relationship */ + opening_duels_aggregate: v_match_player_opening_duels_aggregate + /** An object relationship */ + options: (match_options | null) + /** An object relationship */ + organizer: (players | null) + organizer_steam_id: (Scalars['bigint'] | null) + password: Scalars['String'] + /** An array relationship */ + player_assists: player_assists[] + /** An aggregate relationship */ + player_assists_aggregate: player_assists_aggregate + /** An array relationship */ + player_damages: player_damages[] + /** An aggregate relationship */ + player_damages_aggregate: player_damages_aggregate + /** An array relationship */ + player_flashes: player_flashes[] + /** An aggregate relationship */ + player_flashes_aggregate: player_flashes_aggregate + /** An array relationship */ + player_kills: player_kills[] + /** An aggregate relationship */ + player_kills_aggregate: player_kills_aggregate + /** An array relationship */ + player_objectives: player_objectives[] + /** An aggregate relationship */ + player_objectives_aggregate: player_objectives_aggregate + /** An array relationship */ + player_unused_utilities: player_unused_utility[] + /** An aggregate relationship */ + player_unused_utilities_aggregate: player_unused_utility_aggregate + /** An array relationship */ + player_utility: player_utility[] + /** An aggregate relationship */ + player_utility_aggregate: player_utility_aggregate + region: (Scalars['String'] | null) + /** A computed field, executes function "get_region_veto_picking_lineup_id" */ + region_veto_picking_lineup_id: (Scalars['uuid'] | null) + /** An array relationship */ + region_veto_picks: match_region_veto_picks[] + /** An aggregate relationship */ + region_veto_picks_aggregate: match_region_veto_picks_aggregate + /** A computed field, executes function "match_requested_organizer" */ + requested_organizer: (Scalars['Boolean'] | null) + scheduled_at: (Scalars['timestamptz'] | null) + /** An object relationship */ + server: (servers | null) + server_error: (Scalars['String'] | null) + server_id: (Scalars['uuid'] | null) + /** A computed field, executes function "get_match_server_plugin_runtime" */ + server_plugin_runtime: (Scalars['String'] | null) + /** A computed field, executes function "get_match_server_region" */ + server_region: (Scalars['String'] | null) + /** A computed field, executes function "get_match_server_type" */ + server_type: (Scalars['String'] | null) + share_code: (Scalars['String'] | null) + source: Scalars['String'] + started_at: (Scalars['timestamptz'] | null) + status: e_match_status_enum + /** An array relationship */ + streams: match_streams[] + /** An aggregate relationship */ + streams_aggregate: match_streams_aggregate + /** A computed field, executes function "get_match_teams" */ + teams: (teams[] | null) + /** An array relationship */ + tournament_brackets: tournament_brackets[] + /** An aggregate relationship */ + tournament_brackets_aggregate: tournament_brackets_aggregate + /** A computed field, executes function "get_match_tv_connection_string" */ + tv_connection_string: (Scalars['String'] | null) + veto_pick_expires_at: (Scalars['timestamptz'] | null) + /** An object relationship */ + winner: (match_lineups | null) + winning_lineup_id: (Scalars['uuid'] | null) + __typename: 'matches' +} + + +/** aggregated selection of "matches" */ +export interface matches_aggregate { + aggregate: (matches_aggregate_fields | null) + nodes: matches[] + __typename: 'matches_aggregate' +} + + +/** aggregate fields of "matches" */ +export interface matches_aggregate_fields { + avg: (matches_avg_fields | null) + count: Scalars['Int'] + max: (matches_max_fields | null) + min: (matches_min_fields | null) + stddev: (matches_stddev_fields | null) + stddev_pop: (matches_stddev_pop_fields | null) + stddev_samp: (matches_stddev_samp_fields | null) + sum: (matches_sum_fields | null) + var_pop: (matches_var_pop_fields | null) + var_samp: (matches_var_samp_fields | null) + variance: (matches_variance_fields | null) + __typename: 'matches_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface matches_avg_fields { + /** A computed field, executes function "match_max_players_per_lineup" */ + max_players_per_lineup: (Scalars['Int'] | null) + /** A computed field, executes function "match_min_players_per_lineup" */ + min_players_per_lineup: (Scalars['Int'] | null) + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'matches_avg_fields' +} + + +/** unique or primary key constraints on table "matches" */ +export type matches_constraint = 'matches_lineup_1_id_key' | 'matches_lineup_1_id_lineup_2_id_key' | 'matches_lineup_2_id_key' | 'matches_pkey' | 'uq_matches_source_external_id' + + +/** aggregate max on columns */ +export interface matches_max_fields { + cancels_at: (Scalars['timestamptz'] | null) + /** A computed field, executes function "get_match_connection_link" */ + connection_link: (Scalars['String'] | null) + /** A computed field, executes function "get_match_connection_string" */ + connection_string: (Scalars['String'] | null) + created_at: (Scalars['timestamptz'] | null) + /** A computed field, executes function "get_current_match_map" */ + current_match_map_id: (Scalars['uuid'] | null) + effective_at: (Scalars['timestamptz'] | null) + ended_at: (Scalars['timestamptz'] | null) + external_id: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + /** A computed field, executes function "match_invite_code" */ + invite_code: (Scalars['String'] | null) + label: (Scalars['String'] | null) + lineup_1_id: (Scalars['uuid'] | null) + lineup_2_id: (Scalars['uuid'] | null) + /** A computed field, executes function "get_map_veto_picking_lineup_id" */ + map_veto_picking_lineup_id: (Scalars['uuid'] | null) + /** A computed field, executes function "get_map_veto_type" */ + map_veto_type: (Scalars['String'] | null) + match_options_id: (Scalars['uuid'] | null) + /** A computed field, executes function "match_max_players_per_lineup" */ + max_players_per_lineup: (Scalars['Int'] | null) + /** A computed field, executes function "match_min_players_per_lineup" */ + min_players_per_lineup: (Scalars['Int'] | null) + organizer_steam_id: (Scalars['bigint'] | null) + password: (Scalars['String'] | null) + region: (Scalars['String'] | null) + /** A computed field, executes function "get_region_veto_picking_lineup_id" */ + region_veto_picking_lineup_id: (Scalars['uuid'] | null) + scheduled_at: (Scalars['timestamptz'] | null) + server_error: (Scalars['String'] | null) + server_id: (Scalars['uuid'] | null) + /** A computed field, executes function "get_match_server_plugin_runtime" */ + server_plugin_runtime: (Scalars['String'] | null) + /** A computed field, executes function "get_match_server_region" */ + server_region: (Scalars['String'] | null) + /** A computed field, executes function "get_match_server_type" */ + server_type: (Scalars['String'] | null) + share_code: (Scalars['String'] | null) + source: (Scalars['String'] | null) + started_at: (Scalars['timestamptz'] | null) + /** A computed field, executes function "get_match_tv_connection_string" */ + tv_connection_string: (Scalars['String'] | null) + veto_pick_expires_at: (Scalars['timestamptz'] | null) + winning_lineup_id: (Scalars['uuid'] | null) + __typename: 'matches_max_fields' +} + + +/** aggregate min on columns */ +export interface matches_min_fields { + cancels_at: (Scalars['timestamptz'] | null) + /** A computed field, executes function "get_match_connection_link" */ + connection_link: (Scalars['String'] | null) + /** A computed field, executes function "get_match_connection_string" */ + connection_string: (Scalars['String'] | null) + created_at: (Scalars['timestamptz'] | null) + /** A computed field, executes function "get_current_match_map" */ + current_match_map_id: (Scalars['uuid'] | null) + effective_at: (Scalars['timestamptz'] | null) + ended_at: (Scalars['timestamptz'] | null) + external_id: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + /** A computed field, executes function "match_invite_code" */ + invite_code: (Scalars['String'] | null) + label: (Scalars['String'] | null) + lineup_1_id: (Scalars['uuid'] | null) + lineup_2_id: (Scalars['uuid'] | null) + /** A computed field, executes function "get_map_veto_picking_lineup_id" */ + map_veto_picking_lineup_id: (Scalars['uuid'] | null) + /** A computed field, executes function "get_map_veto_type" */ + map_veto_type: (Scalars['String'] | null) + match_options_id: (Scalars['uuid'] | null) + /** A computed field, executes function "match_max_players_per_lineup" */ + max_players_per_lineup: (Scalars['Int'] | null) + /** A computed field, executes function "match_min_players_per_lineup" */ + min_players_per_lineup: (Scalars['Int'] | null) + organizer_steam_id: (Scalars['bigint'] | null) + password: (Scalars['String'] | null) + region: (Scalars['String'] | null) + /** A computed field, executes function "get_region_veto_picking_lineup_id" */ + region_veto_picking_lineup_id: (Scalars['uuid'] | null) + scheduled_at: (Scalars['timestamptz'] | null) + server_error: (Scalars['String'] | null) + server_id: (Scalars['uuid'] | null) + /** A computed field, executes function "get_match_server_plugin_runtime" */ + server_plugin_runtime: (Scalars['String'] | null) + /** A computed field, executes function "get_match_server_region" */ + server_region: (Scalars['String'] | null) + /** A computed field, executes function "get_match_server_type" */ + server_type: (Scalars['String'] | null) + share_code: (Scalars['String'] | null) + source: (Scalars['String'] | null) + started_at: (Scalars['timestamptz'] | null) + /** A computed field, executes function "get_match_tv_connection_string" */ + tv_connection_string: (Scalars['String'] | null) + veto_pick_expires_at: (Scalars['timestamptz'] | null) + winning_lineup_id: (Scalars['uuid'] | null) + __typename: 'matches_min_fields' +} + + +/** response of any mutation on the table "matches" */ +export interface matches_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: matches[] + __typename: 'matches_mutation_response' +} + + +/** select columns of table "matches" */ +export type matches_select_column = 'cancels_at' | 'counts_toward_ranking' | 'created_at' | 'effective_at' | 'ended_at' | 'external_id' | 'id' | 'label' | 'lineup_1_id' | 'lineup_2_id' | 'match_options_id' | 'organizer_steam_id' | 'password' | 'region' | 'scheduled_at' | 'server_error' | 'server_id' | 'share_code' | 'source' | 'started_at' | 'status' | 'veto_pick_expires_at' | 'winning_lineup_id' + + +/** select "matches_aggregate_bool_exp_bool_and_arguments_columns" columns of table "matches" */ +export type matches_select_column_matches_aggregate_bool_exp_bool_and_arguments_columns = 'counts_toward_ranking' + + +/** select "matches_aggregate_bool_exp_bool_or_arguments_columns" columns of table "matches" */ +export type matches_select_column_matches_aggregate_bool_exp_bool_or_arguments_columns = 'counts_toward_ranking' + + +/** aggregate stddev on columns */ +export interface matches_stddev_fields { + /** A computed field, executes function "match_max_players_per_lineup" */ + max_players_per_lineup: (Scalars['Int'] | null) + /** A computed field, executes function "match_min_players_per_lineup" */ + min_players_per_lineup: (Scalars['Int'] | null) + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'matches_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface matches_stddev_pop_fields { + /** A computed field, executes function "match_max_players_per_lineup" */ + max_players_per_lineup: (Scalars['Int'] | null) + /** A computed field, executes function "match_min_players_per_lineup" */ + min_players_per_lineup: (Scalars['Int'] | null) + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'matches_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface matches_stddev_samp_fields { + /** A computed field, executes function "match_max_players_per_lineup" */ + max_players_per_lineup: (Scalars['Int'] | null) + /** A computed field, executes function "match_min_players_per_lineup" */ + min_players_per_lineup: (Scalars['Int'] | null) + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'matches_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface matches_sum_fields { + /** A computed field, executes function "match_max_players_per_lineup" */ + max_players_per_lineup: (Scalars['Int'] | null) + /** A computed field, executes function "match_min_players_per_lineup" */ + min_players_per_lineup: (Scalars['Int'] | null) + organizer_steam_id: (Scalars['bigint'] | null) + __typename: 'matches_sum_fields' +} + + +/** update columns of table "matches" */ +export type matches_update_column = 'cancels_at' | 'counts_toward_ranking' | 'created_at' | 'ended_at' | 'external_id' | 'id' | 'label' | 'lineup_1_id' | 'lineup_2_id' | 'match_options_id' | 'organizer_steam_id' | 'password' | 'region' | 'scheduled_at' | 'server_error' | 'server_id' | 'share_code' | 'source' | 'started_at' | 'status' | 'veto_pick_expires_at' | 'winning_lineup_id' + + +/** aggregate var_pop on columns */ +export interface matches_var_pop_fields { + /** A computed field, executes function "match_max_players_per_lineup" */ + max_players_per_lineup: (Scalars['Int'] | null) + /** A computed field, executes function "match_min_players_per_lineup" */ + min_players_per_lineup: (Scalars['Int'] | null) + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'matches_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface matches_var_samp_fields { + /** A computed field, executes function "match_max_players_per_lineup" */ + max_players_per_lineup: (Scalars['Int'] | null) + /** A computed field, executes function "match_min_players_per_lineup" */ + min_players_per_lineup: (Scalars['Int'] | null) + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'matches_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface matches_variance_fields { + /** A computed field, executes function "match_max_players_per_lineup" */ + max_players_per_lineup: (Scalars['Int'] | null) + /** A computed field, executes function "match_min_players_per_lineup" */ + min_players_per_lineup: (Scalars['Int'] | null) + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'matches_variance_fields' +} + + +/** columns and relationships of "migration_hashes.hashes" */ +export interface migration_hashes_hashes { + hash: Scalars['String'] + name: Scalars['String'] + __typename: 'migration_hashes_hashes' +} + + +/** aggregated selection of "migration_hashes.hashes" */ +export interface migration_hashes_hashes_aggregate { + aggregate: (migration_hashes_hashes_aggregate_fields | null) + nodes: migration_hashes_hashes[] + __typename: 'migration_hashes_hashes_aggregate' +} + + +/** aggregate fields of "migration_hashes.hashes" */ +export interface migration_hashes_hashes_aggregate_fields { + count: Scalars['Int'] + max: (migration_hashes_hashes_max_fields | null) + min: (migration_hashes_hashes_min_fields | null) + __typename: 'migration_hashes_hashes_aggregate_fields' +} + + +/** unique or primary key constraints on table "migration_hashes.hashes" */ +export type migration_hashes_hashes_constraint = 'hashes_pkey' + + +/** aggregate max on columns */ +export interface migration_hashes_hashes_max_fields { + hash: (Scalars['String'] | null) + name: (Scalars['String'] | null) + __typename: 'migration_hashes_hashes_max_fields' +} + + +/** aggregate min on columns */ +export interface migration_hashes_hashes_min_fields { + hash: (Scalars['String'] | null) + name: (Scalars['String'] | null) + __typename: 'migration_hashes_hashes_min_fields' +} + + +/** response of any mutation on the table "migration_hashes.hashes" */ +export interface migration_hashes_hashes_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: migration_hashes_hashes[] + __typename: 'migration_hashes_hashes_mutation_response' +} + + +/** select columns of table "migration_hashes.hashes" */ +export type migration_hashes_hashes_select_column = 'hash' | 'name' + + +/** update columns of table "migration_hashes.hashes" */ +export type migration_hashes_hashes_update_column = 'hash' | 'name' + + +/** mutation root */ +export interface mutation_root { + PreviewTournamentMatchReset: PreviewTournamentMatchResetOutput + ResetTournamentMatch: (SuccessOutput | null) + /** accept team invite */ + acceptInvite: (SuccessOutput | null) + /** Add a game plugin the registry does not carry, from a release URL */ + addCustomGamePlugin: (AddCustomGamePluginOutput | null) + /** addDraftPlayer */ + addDraftPlayer: (SuccessOutput | null) + /** Add a friends-role presence bot account to the pool */ + addSteamPresenceBotAccount: (SuccessOutput | null) + approveNameChange: (SuccessOutput | null) + /** execute VOLATILE function "approve_league_season_movements" which returns "league_team_movements" */ + approve_league_season_movements: league_team_movements[] + /** Assign the presence bot a user should add as a friend */ + assignSteamPresenceBot: (SteamPresenceBotAssignment | null) + /** Dev-only — attach the demo player to a standing dev game-streamer pod (no Job boot) */ + attachDemo: (WatchDemoOutput | null) + /** Rebuild a season's ELO + stats from the matches inside its date range (admin only). Runs in the background; track via backfillSeasonEloStatus. */ + backfillSeasonElo: (RecomputeEloStartedOutput | null) + /** Return the progress of the season ELO backfill run (admin only). */ + backfillSeasonEloStatus: (SeasonBackfillStatusOutput | null) + /** Recover launch seeds from recorded trajectories, one batch per call */ + backfillUtilityLaunchSeeds: (UtilityLaunchSeedBackfillOutput | 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) + /** Cancel an in-flight lineup preview render */ + cancelUtilityLineupRender: (SuccessOutput | null) + changeUtilityPracticeMap: (UtilityPracticeMapChangeOutput | null) + /** checkIntoMatch */ + checkIntoMatch: (SuccessOutput | null) + /** Confirm a check-in, enforcing the tournament's check_in_setting */ + checkIntoTournament: (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) + /** Drop every finished row from the lineup preview queue */ + clearFinishedUtilityLineupRenders: (UtilityRenderClearOutput | null) + clearPendingMatchImport: (PendingMatchImportActionOutput | null) + /** execute VOLATILE function "clone_league_season" which returns "league_seasons" */ + clone_league_season: league_seasons[] + /** Organizer proceeds without the teams that missed check-in */ + continueTournamentCheckIn: (SuccessOutput | null) + /** 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) + /** Organizer mints an expiring, use capped invite link for a tournament */ + createTournamentInviteCode: (TournamentInviteCodeOutput | 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 a render and its preview clip */ + deleteUtilityLineupRender: (SuccessOutput | null) + /** Delete a utility playbook */ + deleteUtilityPlaybook: (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) + /** delete data from the table: "e_match_types" */ + delete_e_match_types: (e_match_types_mutation_response | null) + /** delete single row from the table: "e_match_types" */ + delete_e_match_types_by_pk: (e_match_types | null) + /** delete data from the table: "e_notification_types" */ + delete_e_notification_types: (e_notification_types_mutation_response | null) + /** delete single row from the table: "e_notification_types" */ + delete_e_notification_types_by_pk: (e_notification_types | null) + /** delete data from the table: "e_objective_types" */ + delete_e_objective_types: (e_objective_types_mutation_response | null) + /** delete single row from the table: "e_objective_types" */ + delete_e_objective_types_by_pk: (e_objective_types | null) + /** delete data from the table: "e_player_roles" */ + delete_e_player_roles: (e_player_roles_mutation_response | null) + /** delete single row from the table: "e_player_roles" */ + delete_e_player_roles_by_pk: (e_player_roles | null) + /** delete data from the table: "e_plugin_runtimes" */ + delete_e_plugin_runtimes: (e_plugin_runtimes_mutation_response | null) + /** delete single row from the table: "e_plugin_runtimes" */ + delete_e_plugin_runtimes_by_pk: (e_plugin_runtimes | null) + /** delete data from the table: "e_ready_settings" */ + delete_e_ready_settings: (e_ready_settings_mutation_response | null) + /** delete single row from the table: "e_ready_settings" */ + delete_e_ready_settings_by_pk: (e_ready_settings | null) + /** delete data from the table: "e_sanction_scopes" */ + delete_e_sanction_scopes: (e_sanction_scopes_mutation_response | null) + /** delete single row from the table: "e_sanction_scopes" */ + delete_e_sanction_scopes_by_pk: (e_sanction_scopes | null) + /** delete data from the table: "e_sanction_sources" */ + delete_e_sanction_sources: (e_sanction_sources_mutation_response | null) + /** delete single row from the table: "e_sanction_sources" */ + delete_e_sanction_sources_by_pk: (e_sanction_sources | null) + /** delete data from the table: "e_sanction_types" */ + delete_e_sanction_types: (e_sanction_types_mutation_response | null) + /** delete single row from the table: "e_sanction_types" */ + delete_e_sanction_types_by_pk: (e_sanction_types | null) + /** delete data from the table: "e_scrim_request_statuses" */ + delete_e_scrim_request_statuses: (e_scrim_request_statuses_mutation_response | null) + /** delete single row from the table: "e_scrim_request_statuses" */ + delete_e_scrim_request_statuses_by_pk: (e_scrim_request_statuses | null) + /** delete data from the table: "e_server_types" */ + delete_e_server_types: (e_server_types_mutation_response | null) + /** delete single row from the table: "e_server_types" */ + delete_e_server_types_by_pk: (e_server_types | null) + /** delete data from the table: "e_sides" */ + delete_e_sides: (e_sides_mutation_response | null) + /** delete single row from the table: "e_sides" */ + delete_e_sides_by_pk: (e_sides | null) + /** delete data from the table: "e_system_alert_types" */ + delete_e_system_alert_types: (e_system_alert_types_mutation_response | null) + /** delete single row from the table: "e_system_alert_types" */ + delete_e_system_alert_types_by_pk: (e_system_alert_types | null) + /** delete data from the table: "e_team_roles" */ + delete_e_team_roles: (e_team_roles_mutation_response | null) + /** delete single row from the table: "e_team_roles" */ + delete_e_team_roles_by_pk: (e_team_roles | null) + /** delete data from the table: "e_team_roster_statuses" */ + delete_e_team_roster_statuses: (e_team_roster_statuses_mutation_response | null) + /** delete single row from the table: "e_team_roster_statuses" */ + delete_e_team_roster_statuses_by_pk: (e_team_roster_statuses | null) + /** delete data from the table: "e_timeout_settings" */ + delete_e_timeout_settings: (e_timeout_settings_mutation_response | null) + /** delete single row from the table: "e_timeout_settings" */ + delete_e_timeout_settings_by_pk: (e_timeout_settings | null) + /** delete data from the table: "e_tournament_categories" */ + delete_e_tournament_categories: (e_tournament_categories_mutation_response | null) + /** delete single row from the table: "e_tournament_categories" */ + delete_e_tournament_categories_by_pk: (e_tournament_categories | null) + /** delete data from the table: "e_tournament_free_agent_statuses" */ + delete_e_tournament_free_agent_statuses: (e_tournament_free_agent_statuses_mutation_response | null) + /** delete single row from the table: "e_tournament_free_agent_statuses" */ + delete_e_tournament_free_agent_statuses_by_pk: (e_tournament_free_agent_statuses | null) + /** delete data from the table: "e_tournament_registration_types" */ + delete_e_tournament_registration_types: (e_tournament_registration_types_mutation_response | null) + /** delete single row from the table: "e_tournament_registration_types" */ + delete_e_tournament_registration_types_by_pk: (e_tournament_registration_types | null) + /** delete data from the table: "e_tournament_stage_types" */ + delete_e_tournament_stage_types: (e_tournament_stage_types_mutation_response | null) + /** delete single row from the table: "e_tournament_stage_types" */ + delete_e_tournament_stage_types_by_pk: (e_tournament_stage_types | null) + /** delete data from the table: "e_tournament_status" */ + delete_e_tournament_status: (e_tournament_status_mutation_response | null) + /** delete single row from the table: "e_tournament_status" */ + delete_e_tournament_status_by_pk: (e_tournament_status | null) + /** delete data from the table: "e_utility_practice_access" */ + delete_e_utility_practice_access: (e_utility_practice_access_mutation_response | null) + /** delete single row from the table: "e_utility_practice_access" */ + delete_e_utility_practice_access_by_pk: (e_utility_practice_access | null) + /** delete data from the table: "e_utility_practice_statuses" */ + delete_e_utility_practice_statuses: (e_utility_practice_statuses_mutation_response | null) + /** delete single row from the table: "e_utility_practice_statuses" */ + delete_e_utility_practice_statuses_by_pk: (e_utility_practice_statuses | null) + /** delete data from the table: "e_utility_sources" */ + delete_e_utility_sources: (e_utility_sources_mutation_response | null) + /** delete single row from the table: "e_utility_sources" */ + delete_e_utility_sources_by_pk: (e_utility_sources | null) + /** delete data from the table: "e_utility_techniques" */ + delete_e_utility_techniques: (e_utility_techniques_mutation_response | null) + /** delete single row from the table: "e_utility_techniques" */ + delete_e_utility_techniques_by_pk: (e_utility_techniques | null) + /** delete data from the table: "e_utility_throw_strengths" */ + delete_e_utility_throw_strengths: (e_utility_throw_strengths_mutation_response | null) + /** delete single row from the table: "e_utility_throw_strengths" */ + delete_e_utility_throw_strengths_by_pk: (e_utility_throw_strengths | null) + /** delete data from the table: "e_utility_types" */ + delete_e_utility_types: (e_utility_types_mutation_response | null) + /** delete single row from the table: "e_utility_types" */ + delete_e_utility_types_by_pk: (e_utility_types | null) + /** delete data from the table: "e_utility_visibility" */ + delete_e_utility_visibility: (e_utility_visibility_mutation_response | null) + /** delete single row from the table: "e_utility_visibility" */ + delete_e_utility_visibility_by_pk: (e_utility_visibility | null) + /** delete data from the table: "e_veto_pick_types" */ + delete_e_veto_pick_types: (e_veto_pick_types_mutation_response | null) + /** delete single row from the table: "e_veto_pick_types" */ + delete_e_veto_pick_types_by_pk: (e_veto_pick_types | null) + /** delete data from the table: "e_winning_reasons" */ + delete_e_winning_reasons: (e_winning_reasons_mutation_response | null) + /** delete single row from the table: "e_winning_reasons" */ + delete_e_winning_reasons_by_pk: (e_winning_reasons | null) + /** delete data from the table: "event_match_links" */ + delete_event_match_links: (event_match_links_mutation_response | null) + /** delete single row from the table: "event_match_links" */ + delete_event_match_links_by_pk: (event_match_links | null) + /** delete data from the table: "event_media" */ + delete_event_media: (event_media_mutation_response | null) + /** delete single row from the table: "event_media" */ + delete_event_media_by_pk: (event_media | null) + /** delete data from the table: "event_media_players" */ + delete_event_media_players: (event_media_players_mutation_response | null) + /** delete single row from the table: "event_media_players" */ + delete_event_media_players_by_pk: (event_media_players | null) + /** delete data from the table: "event_organizers" */ + delete_event_organizers: (event_organizers_mutation_response | null) + /** delete single row from the table: "event_organizers" */ + delete_event_organizers_by_pk: (event_organizers | null) + /** delete data from the table: "event_players" */ + delete_event_players: (event_players_mutation_response | null) + /** delete single row from the table: "event_players" */ + delete_event_players_by_pk: (event_players | null) + /** delete data from the table: "event_teams" */ + delete_event_teams: (event_teams_mutation_response | null) + /** delete single row from the table: "event_teams" */ + delete_event_teams_by_pk: (event_teams | null) + /** delete data from the table: "event_tournaments" */ + delete_event_tournaments: (event_tournaments_mutation_response | null) + /** delete single row from the table: "event_tournaments" */ + delete_event_tournaments_by_pk: (event_tournaments | null) + /** delete data from the table: "events" */ + delete_events: (events_mutation_response | null) + /** delete single row from the table: "events" */ + delete_events_by_pk: (events | null) + /** delete data from the table: "friends" */ + delete_friends: (friends_mutation_response | null) + /** delete single row from the table: "friends" */ + 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" */ + delete_game_server_nodes_by_pk: (game_server_nodes | null) + /** delete data from the table: "game_versions" */ + delete_game_versions: (game_versions_mutation_response | null) + /** delete single row from the table: "game_versions" */ + delete_game_versions_by_pk: (game_versions | null) + /** delete data from the table: "gamedata_signature_validations" */ + delete_gamedata_signature_validations: (gamedata_signature_validations_mutation_response | null) + /** delete single row from the table: "gamedata_signature_validations" */ + delete_gamedata_signature_validations_by_pk: (gamedata_signature_validations | null) + /** delete data from the table: "leaderboard_entries" */ + delete_leaderboard_entries: (leaderboard_entries_mutation_response | null) + /** delete data from the table: "league_divisions" */ + delete_league_divisions: (league_divisions_mutation_response | null) + /** delete single row from the table: "league_divisions" */ + delete_league_divisions_by_pk: (league_divisions | null) + /** delete data from the table: "league_match_weeks" */ + delete_league_match_weeks: (league_match_weeks_mutation_response | null) + /** delete single row from the table: "league_match_weeks" */ + delete_league_match_weeks_by_pk: (league_match_weeks | null) + /** delete data from the table: "league_relegation_playoffs" */ + delete_league_relegation_playoffs: (league_relegation_playoffs_mutation_response | null) + /** delete single row from the table: "league_relegation_playoffs" */ + delete_league_relegation_playoffs_by_pk: (league_relegation_playoffs | null) + /** delete data from the table: "league_scheduling_proposals" */ + delete_league_scheduling_proposals: (league_scheduling_proposals_mutation_response | null) + /** delete single row from the table: "league_scheduling_proposals" */ + delete_league_scheduling_proposals_by_pk: (league_scheduling_proposals | null) + /** delete data from the table: "league_season_divisions" */ + delete_league_season_divisions: (league_season_divisions_mutation_response | null) + /** delete single row from the table: "league_season_divisions" */ + delete_league_season_divisions_by_pk: (league_season_divisions | null) + /** delete data from the table: "league_seasons" */ + delete_league_seasons: (league_seasons_mutation_response | null) + /** delete single row from the table: "league_seasons" */ + delete_league_seasons_by_pk: (league_seasons | null) + /** delete data from the table: "league_team_movements" */ + delete_league_team_movements: (league_team_movements_mutation_response | null) + /** delete single row from the table: "league_team_movements" */ + delete_league_team_movements_by_pk: (league_team_movements | null) + /** delete data from the table: "league_team_rosters" */ + delete_league_team_rosters: (league_team_rosters_mutation_response | null) + /** delete single row from the table: "league_team_rosters" */ + delete_league_team_rosters_by_pk: (league_team_rosters | null) + /** delete data from the table: "league_team_seasons" */ + delete_league_team_seasons: (league_team_seasons_mutation_response | null) + /** delete single row from the table: "league_team_seasons" */ + delete_league_team_seasons_by_pk: (league_team_seasons | null) + /** delete data from the table: "league_teams" */ + delete_league_teams: (league_teams_mutation_response | null) + /** delete single row from the table: "league_teams" */ + delete_league_teams_by_pk: (league_teams | null) + /** delete data from the table: "lobbies" */ + delete_lobbies: (lobbies_mutation_response | null) + /** delete single row from the table: "lobbies" */ + delete_lobbies_by_pk: (lobbies | null) + /** delete data from the table: "lobby_players" */ + delete_lobby_players: (lobby_players_mutation_response | null) + /** delete single row from the table: "lobby_players" */ + delete_lobby_players_by_pk: (lobby_players | null) + /** delete data from the table: "map_callouts" */ + delete_map_callouts: (map_callouts_mutation_response | null) + /** delete single row from the table: "map_callouts" */ + delete_map_callouts_by_pk: (map_callouts | null) + /** delete data from the table: "map_pools" */ + delete_map_pools: (map_pools_mutation_response | null) + /** delete single row from the table: "map_pools" */ + delete_map_pools_by_pk: (map_pools | null) + /** delete data from the table: "maps" */ + delete_maps: (maps_mutation_response | null) + /** delete single row from the table: "maps" */ + delete_maps_by_pk: (maps | null) + /** delete data from the table: "match_clips" */ + delete_match_clips: (match_clips_mutation_response | null) + /** delete single row from the table: "match_clips" */ + delete_match_clips_by_pk: (match_clips | null) + /** delete data from the table: "match_demo_sessions" */ + delete_match_demo_sessions: (match_demo_sessions_mutation_response | null) + /** delete single row from the table: "match_demo_sessions" */ + delete_match_demo_sessions_by_pk: (match_demo_sessions | null) + /** delete data from the table: "match_lineup_players" */ + delete_match_lineup_players: (match_lineup_players_mutation_response | null) + /** delete single row from the table: "match_lineup_players" */ + delete_match_lineup_players_by_pk: (match_lineup_players | null) + /** delete data from the table: "match_lineups" */ + delete_match_lineups: (match_lineups_mutation_response | null) + /** delete single row from the table: "match_lineups" */ + delete_match_lineups_by_pk: (match_lineups | null) + /** delete data from the table: "match_map_demos" */ + delete_match_map_demos: (match_map_demos_mutation_response | null) + /** delete single row from the table: "match_map_demos" */ + delete_match_map_demos_by_pk: (match_map_demos | null) + /** delete data from the table: "match_map_rounds" */ + delete_match_map_rounds: (match_map_rounds_mutation_response | null) + /** delete single row from the table: "match_map_rounds" */ + delete_match_map_rounds_by_pk: (match_map_rounds | null) + /** delete data from the table: "match_map_veto_picks" */ + delete_match_map_veto_picks: (match_map_veto_picks_mutation_response | null) + /** delete single row from the table: "match_map_veto_picks" */ + delete_match_map_veto_picks_by_pk: (match_map_veto_picks | null) + /** delete data from the table: "match_maps" */ + delete_match_maps: (match_maps_mutation_response | null) + /** delete single row from the table: "match_maps" */ + delete_match_maps_by_pk: (match_maps | null) + /** delete data from the table: "match_options" */ + delete_match_options: (match_options_mutation_response | null) + /** delete single row from the table: "match_options" */ + delete_match_options_by_pk: (match_options | null) + /** delete data from the table: "match_region_veto_picks" */ + delete_match_region_veto_picks: (match_region_veto_picks_mutation_response | null) + /** delete single row from the table: "match_region_veto_picks" */ + delete_match_region_veto_picks_by_pk: (match_region_veto_picks | null) + /** delete data from the table: "match_streams" */ + delete_match_streams: (match_streams_mutation_response | null) + /** delete single row from the table: "match_streams" */ + delete_match_streams_by_pk: (match_streams | null) + /** delete data from the table: "match_type_cfgs" */ + delete_match_type_cfgs: (match_type_cfgs_mutation_response | null) + /** delete single row from the table: "match_type_cfgs" */ + delete_match_type_cfgs_by_pk: (match_type_cfgs | null) + /** delete data from the table: "matches" */ + delete_matches: (matches_mutation_response | null) + /** delete single row from the table: "matches" */ + delete_matches_by_pk: (matches | null) + /** delete data from the table: "migration_hashes.hashes" */ + delete_migration_hashes_hashes: (migration_hashes_hashes_mutation_response | null) + /** delete single row from the table: "migration_hashes.hashes" */ + delete_migration_hashes_hashes_by_pk: (migration_hashes_hashes | null) + /** delete data from the table: "v_my_friends" */ + delete_my_friends: (my_friends_mutation_response | null) + /** delete data from the table: "news_articles" */ + delete_news_articles: (news_articles_mutation_response | null) + /** delete single row from the table: "news_articles" */ + delete_news_articles_by_pk: (news_articles | null) + /** delete data from the table: "notification_preferences" */ + delete_notification_preferences: (notification_preferences_mutation_response | null) + /** delete single row from the table: "notification_preferences" */ + delete_notification_preferences_by_pk: (notification_preferences | null) + /** delete data from the table: "notifications" */ + delete_notifications: (notifications_mutation_response | null) + /** delete single row from the table: "notifications" */ + delete_notifications_by_pk: (notifications | null) + /** delete data from the table: "pending_match_import_players" */ + delete_pending_match_import_players: (pending_match_import_players_mutation_response | null) + /** delete single row from the table: "pending_match_import_players" */ + delete_pending_match_import_players_by_pk: (pending_match_import_players | null) + /** delete data from the table: "pending_match_imports" */ + delete_pending_match_imports: (pending_match_imports_mutation_response | null) + /** delete single row from the table: "pending_match_imports" */ + delete_pending_match_imports_by_pk: (pending_match_imports | null) + /** delete data from the table: "player_aim_stats_demo" */ + delete_player_aim_stats_demo: (player_aim_stats_demo_mutation_response | null) + /** delete single row from the table: "player_aim_stats_demo" */ + delete_player_aim_stats_demo_by_pk: (player_aim_stats_demo | null) + /** delete data from the table: "player_aim_weapon_stats" */ + delete_player_aim_weapon_stats: (player_aim_weapon_stats_mutation_response | null) + /** delete single row from the table: "player_aim_weapon_stats" */ + delete_player_aim_weapon_stats_by_pk: (player_aim_weapon_stats | null) + /** delete data from the table: "player_assists" */ + delete_player_assists: (player_assists_mutation_response | null) + /** delete single row from the table: "player_assists" */ + delete_player_assists_by_pk: (player_assists | null) + /** delete data from the table: "player_damages" */ + delete_player_damages: (player_damages_mutation_response | null) + /** delete single row from the table: "player_damages" */ + delete_player_damages_by_pk: (player_damages | null) + /** delete data from the table: "player_elo" */ + delete_player_elo: (player_elo_mutation_response | null) + /** delete single row from the table: "player_elo" */ + delete_player_elo_by_pk: (player_elo | null) + /** delete data from the table: "player_faceit_rank_history" */ + delete_player_faceit_rank_history: (player_faceit_rank_history_mutation_response | null) + /** delete single row from the table: "player_faceit_rank_history" */ + delete_player_faceit_rank_history_by_pk: (player_faceit_rank_history | null) + /** delete data from the table: "player_flashes" */ + delete_player_flashes: (player_flashes_mutation_response | null) + /** delete single row from the table: "player_flashes" */ + delete_player_flashes_by_pk: (player_flashes | null) + /** delete data from the table: "player_kills" */ + delete_player_kills: (player_kills_mutation_response | null) + /** delete single row from the table: "player_kills" */ + delete_player_kills_by_pk: (player_kills | null) + /** delete data from the table: "player_kills_by_weapon" */ + delete_player_kills_by_weapon: (player_kills_by_weapon_mutation_response | null) + /** delete single row from the table: "player_kills_by_weapon" */ + delete_player_kills_by_weapon_by_pk: (player_kills_by_weapon | null) + /** delete data from the table: "player_leaderboard_rank" */ + delete_player_leaderboard_rank: (player_leaderboard_rank_mutation_response | null) + /** delete data from the table: "player_match_map_stats" */ + delete_player_match_map_stats: (player_match_map_stats_mutation_response | null) + /** delete single row from the table: "player_match_map_stats" */ + delete_player_match_map_stats_by_pk: (player_match_map_stats | null) + /** delete data from the table: "player_objectives" */ + delete_player_objectives: (player_objectives_mutation_response | null) + /** delete single row from the table: "player_objectives" */ + delete_player_objectives_by_pk: (player_objectives | null) + /** delete data from the table: "player_premier_rank_history" */ + delete_player_premier_rank_history: (player_premier_rank_history_mutation_response | null) + /** delete single row from the table: "player_premier_rank_history" */ + delete_player_premier_rank_history_by_pk: (player_premier_rank_history | null) + /** delete data from the table: "player_sanctions" */ + delete_player_sanctions: (player_sanctions_mutation_response | null) + /** delete single row from the table: "player_sanctions" */ + delete_player_sanctions_by_pk: (player_sanctions | null) + /** delete data from the table: "player_season_stats" */ + delete_player_season_stats: (player_season_stats_mutation_response | null) + /** delete single row from the table: "player_season_stats" */ + delete_player_season_stats_by_pk: (player_season_stats | null) + /** delete data from the table: "player_stats" */ + delete_player_stats: (player_stats_mutation_response | null) + /** delete single row from the table: "player_stats" */ + delete_player_stats_by_pk: (player_stats | null) + /** delete data from the table: "player_steam_bot_friend" */ + delete_player_steam_bot_friend: (player_steam_bot_friend_mutation_response | null) + /** delete single row from the table: "player_steam_bot_friend" */ + delete_player_steam_bot_friend_by_pk: (player_steam_bot_friend | null) + /** delete data from the table: "player_steam_match_auth" */ + delete_player_steam_match_auth: (player_steam_match_auth_mutation_response | null) + /** delete single row from the table: "player_steam_match_auth" */ + delete_player_steam_match_auth_by_pk: (player_steam_match_auth | null) + /** delete data from the table: "player_unused_utility" */ + delete_player_unused_utility: (player_unused_utility_mutation_response | null) + /** delete single row from the table: "player_unused_utility" */ + delete_player_unused_utility_by_pk: (player_unused_utility | null) + /** delete data from the table: "player_utility" */ + delete_player_utility: (player_utility_mutation_response | null) + /** delete single row from the table: "player_utility" */ + delete_player_utility_by_pk: (player_utility | null) + /** delete data from the table: "players" */ + delete_players: (players_mutation_response | null) + /** delete single row from the table: "players" */ + delete_players_by_pk: (players | null) + /** delete data from the table: "plugin_versions" */ + delete_plugin_versions: (plugin_versions_mutation_response | null) + /** delete single row from the table: "plugin_versions" */ + delete_plugin_versions_by_pk: (plugin_versions | null) + /** delete data from the table: "push_subscriptions" */ + delete_push_subscriptions: (push_subscriptions_mutation_response | null) + /** delete single row from the table: "push_subscriptions" */ + delete_push_subscriptions_by_pk: (push_subscriptions | null) + /** delete data from the table: "v_role_permissions" */ + delete_role_permissions: (role_permissions_mutation_response | null) + /** delete data from the table: "seasons" */ + delete_seasons: (seasons_mutation_response | null) + /** delete single row from the table: "seasons" */ + delete_seasons_by_pk: (seasons | null) + /** delete data from the table: "server_regions" */ + delete_server_regions: (server_regions_mutation_response | null) + /** delete single row from the table: "server_regions" */ + delete_server_regions_by_pk: (server_regions | null) + /** delete data from the table: "servers" */ + delete_servers: (servers_mutation_response | null) + /** delete single row from the table: "servers" */ + delete_servers_by_pk: (servers | null) + /** delete data from the table: "settings" */ + delete_settings: (settings_mutation_response | null) + /** delete single row from the table: "settings" */ + delete_settings_by_pk: (settings | null) + /** delete data from the table: "steam_account_claims" */ + delete_steam_account_claims: (steam_account_claims_mutation_response | null) + /** delete single row from the table: "steam_account_claims" */ + delete_steam_account_claims_by_pk: (steam_account_claims | null) + /** delete data from the table: "steam_accounts" */ + delete_steam_accounts: (steam_accounts_mutation_response | null) + /** delete single row from the table: "steam_accounts" */ + delete_steam_accounts_by_pk: (steam_accounts | null) + /** delete data from the table: "system_alerts" */ + delete_system_alerts: (system_alerts_mutation_response | null) + /** delete single row from the table: "system_alerts" */ + delete_system_alerts_by_pk: (system_alerts | null) + /** delete data from the table: "team_invites" */ + delete_team_invites: (team_invites_mutation_response | null) + /** delete single row from the table: "team_invites" */ + delete_team_invites_by_pk: (team_invites | null) + /** delete data from the table: "team_roster" */ + delete_team_roster: (team_roster_mutation_response | null) + /** delete single row from the table: "team_roster" */ + delete_team_roster_by_pk: (team_roster | null) + /** delete data from the table: "team_scrim_alerts" */ + delete_team_scrim_alerts: (team_scrim_alerts_mutation_response | null) + /** delete single row from the table: "team_scrim_alerts" */ + delete_team_scrim_alerts_by_pk: (team_scrim_alerts | null) + /** delete data from the table: "team_scrim_availability" */ + delete_team_scrim_availability: (team_scrim_availability_mutation_response | null) + /** delete single row from the table: "team_scrim_availability" */ + delete_team_scrim_availability_by_pk: (team_scrim_availability | null) + /** delete data from the table: "team_scrim_request_proposals" */ + delete_team_scrim_request_proposals: (team_scrim_request_proposals_mutation_response | null) + /** delete single row from the table: "team_scrim_request_proposals" */ + delete_team_scrim_request_proposals_by_pk: (team_scrim_request_proposals | null) + /** delete data from the table: "team_scrim_requests" */ + delete_team_scrim_requests: (team_scrim_requests_mutation_response | null) + /** delete single row from the table: "team_scrim_requests" */ + delete_team_scrim_requests_by_pk: (team_scrim_requests | null) + /** delete data from the table: "team_scrim_settings" */ + delete_team_scrim_settings: (team_scrim_settings_mutation_response | null) + /** delete single row from the table: "team_scrim_settings" */ + delete_team_scrim_settings_by_pk: (team_scrim_settings | null) + /** delete data from the table: "team_suggestions" */ + delete_team_suggestions: (team_suggestions_mutation_response | null) + /** delete single row from the table: "team_suggestions" */ + delete_team_suggestions_by_pk: (team_suggestions | null) + /** delete data from the table: "teams" */ + delete_teams: (teams_mutation_response | null) + /** delete single row from the table: "teams" */ + delete_teams_by_pk: (teams | null) + /** delete data from the table: "tournament_awards" */ + delete_tournament_awards: (tournament_awards_mutation_response | null) + /** delete single row from the table: "tournament_awards" */ + delete_tournament_awards_by_pk: (tournament_awards | null) + /** delete data from the table: "tournament_brackets" */ + delete_tournament_brackets: (tournament_brackets_mutation_response | null) + /** delete single row from the table: "tournament_brackets" */ + delete_tournament_brackets_by_pk: (tournament_brackets | null) + /** delete data from the table: "tournament_categories" */ + delete_tournament_categories: (tournament_categories_mutation_response | null) + /** delete single row from the table: "tournament_categories" */ + delete_tournament_categories_by_pk: (tournament_categories | null) + /** delete data from the table: "tournament_free_agents" */ + delete_tournament_free_agents: (tournament_free_agents_mutation_response | null) + /** delete single row from the table: "tournament_free_agents" */ + delete_tournament_free_agents_by_pk: (tournament_free_agents | null) + /** delete data from the table: "tournament_invite_code_uses" */ + delete_tournament_invite_code_uses: (tournament_invite_code_uses_mutation_response | null) + /** delete single row from the table: "tournament_invite_code_uses" */ + delete_tournament_invite_code_uses_by_pk: (tournament_invite_code_uses | null) + /** delete data from the table: "tournament_invite_codes" */ + delete_tournament_invite_codes: (tournament_invite_codes_mutation_response | null) + /** delete single row from the table: "tournament_invite_codes" */ + delete_tournament_invite_codes_by_pk: (tournament_invite_codes | null) + /** delete data from the table: "tournament_invites" */ + delete_tournament_invites: (tournament_invites_mutation_response | null) + /** delete single row from the table: "tournament_invites" */ + delete_tournament_invites_by_pk: (tournament_invites | null) + /** delete data from the table: "tournament_leaderboard_entries" */ + delete_tournament_leaderboard_entries: (tournament_leaderboard_entries_mutation_response | null) + /** delete data from the table: "tournament_no_shows" */ + delete_tournament_no_shows: (tournament_no_shows_mutation_response | null) + /** delete single row from the table: "tournament_no_shows" */ + delete_tournament_no_shows_by_pk: (tournament_no_shows | null) + /** delete data from the table: "tournament_organizer_teams" */ + delete_tournament_organizer_teams: (tournament_organizer_teams_mutation_response | null) + /** delete single row from the table: "tournament_organizer_teams" */ + delete_tournament_organizer_teams_by_pk: (tournament_organizer_teams | null) + /** delete data from the table: "tournament_organizers" */ + delete_tournament_organizers: (tournament_organizers_mutation_response | null) + /** delete single row from the table: "tournament_organizers" */ + delete_tournament_organizers_by_pk: (tournament_organizers | null) + /** delete data from the table: "tournament_prizes" */ + delete_tournament_prizes: (tournament_prizes_mutation_response | null) + /** delete single row from the table: "tournament_prizes" */ + delete_tournament_prizes_by_pk: (tournament_prizes | null) + /** delete data from the table: "tournament_registration_unlocks" */ + delete_tournament_registration_unlocks: (tournament_registration_unlocks_mutation_response | null) + /** delete data from the table: "tournament_stage_windows" */ + delete_tournament_stage_windows: (tournament_stage_windows_mutation_response | null) + /** delete single row from the table: "tournament_stage_windows" */ + delete_tournament_stage_windows_by_pk: (tournament_stage_windows | null) + /** delete data from the table: "tournament_stages" */ + delete_tournament_stages: (tournament_stages_mutation_response | null) + /** delete single row from the table: "tournament_stages" */ + delete_tournament_stages_by_pk: (tournament_stages | null) + /** delete data from the table: "tournament_team_invites" */ + delete_tournament_team_invites: (tournament_team_invites_mutation_response | null) + /** delete single row from the table: "tournament_team_invites" */ + delete_tournament_team_invites_by_pk: (tournament_team_invites | null) + /** delete data from the table: "tournament_team_roster" */ + delete_tournament_team_roster: (tournament_team_roster_mutation_response | null) + /** delete single row from the table: "tournament_team_roster" */ + delete_tournament_team_roster_by_pk: (tournament_team_roster | null) + /** delete data from the table: "tournament_teams" */ + delete_tournament_teams: (tournament_teams_mutation_response | null) + /** delete single row from the table: "tournament_teams" */ + delete_tournament_teams_by_pk: (tournament_teams | null) + /** delete data from the table: "tournaments" */ + delete_tournaments: (tournaments_mutation_response | null) + /** delete single row from the table: "tournaments" */ + delete_tournaments_by_pk: (tournaments | null) + /** delete data from the table: "utility_collection_items" */ + delete_utility_collection_items: (utility_collection_items_mutation_response | null) + /** delete single row from the table: "utility_collection_items" */ + delete_utility_collection_items_by_pk: (utility_collection_items | null) + /** delete data from the table: "utility_collections" */ + delete_utility_collections: (utility_collections_mutation_response | null) + /** delete single row from the table: "utility_collections" */ + delete_utility_collections_by_pk: (utility_collections | null) + /** delete data from the table: "utility_demo_mines" */ + delete_utility_demo_mines: (utility_demo_mines_mutation_response | null) + /** delete single row from the table: "utility_demo_mines" */ + delete_utility_demo_mines_by_pk: (utility_demo_mines | null) + /** delete data from the table: "utility_demo_throws" */ + delete_utility_demo_throws: (utility_demo_throws_mutation_response | null) + /** delete single row from the table: "utility_demo_throws" */ + delete_utility_demo_throws_by_pk: (utility_demo_throws | null) + /** delete data from the table: "utility_drift_results" */ + delete_utility_drift_results: (utility_drift_results_mutation_response | null) + /** delete single row from the table: "utility_drift_results" */ + delete_utility_drift_results_by_pk: (utility_drift_results | null) + /** delete data from the table: "utility_drift_scans" */ + delete_utility_drift_scans: (utility_drift_scans_mutation_response | null) + /** delete single row from the table: "utility_drift_scans" */ + delete_utility_drift_scans_by_pk: (utility_drift_scans | null) + /** delete data from the table: "utility_lineup_favorites" */ + delete_utility_lineup_favorites: (utility_lineup_favorites_mutation_response | null) + /** delete single row from the table: "utility_lineup_favorites" */ + delete_utility_lineup_favorites_by_pk: (utility_lineup_favorites | null) + /** delete data from the table: "utility_lineup_progress" */ + delete_utility_lineup_progress: (utility_lineup_progress_mutation_response | null) + /** delete single row from the table: "utility_lineup_progress" */ + delete_utility_lineup_progress_by_pk: (utility_lineup_progress | null) + /** delete data from the table: "utility_lineup_renders" */ + delete_utility_lineup_renders: (utility_lineup_renders_mutation_response | null) + /** delete single row from the table: "utility_lineup_renders" */ + delete_utility_lineup_renders_by_pk: (utility_lineup_renders | null) + /** delete data from the table: "utility_lineup_repairs" */ + delete_utility_lineup_repairs: (utility_lineup_repairs_mutation_response | null) + /** delete single row from the table: "utility_lineup_repairs" */ + delete_utility_lineup_repairs_by_pk: (utility_lineup_repairs | null) + /** delete data from the table: "utility_lineup_votes" */ + delete_utility_lineup_votes: (utility_lineup_votes_mutation_response | null) + /** delete single row from the table: "utility_lineup_votes" */ + delete_utility_lineup_votes_by_pk: (utility_lineup_votes | null) + /** delete data from the table: "utility_lineups" */ + delete_utility_lineups: (utility_lineups_mutation_response | null) + /** delete single row from the table: "utility_lineups" */ + delete_utility_lineups_by_pk: (utility_lineups | null) + /** delete data from the table: "utility_meta_lineups" */ + delete_utility_meta_lineups: (utility_meta_lineups_mutation_response | null) + /** delete single row from the table: "utility_meta_lineups" */ + delete_utility_meta_lineups_by_pk: (utility_meta_lineups | null) + /** delete data from the table: "utility_playbook_steps" */ + delete_utility_playbook_steps: (utility_playbook_steps_mutation_response | null) + /** delete single row from the table: "utility_playbook_steps" */ + delete_utility_playbook_steps_by_pk: (utility_playbook_steps | null) + /** delete data from the table: "utility_playbooks" */ + delete_utility_playbooks: (utility_playbooks_mutation_response | null) + /** delete single row from the table: "utility_playbooks" */ + delete_utility_playbooks_by_pk: (utility_playbooks | null) + /** delete data from the table: "utility_practice_invites" */ + delete_utility_practice_invites: (utility_practice_invites_mutation_response | null) + /** delete single row from the table: "utility_practice_invites" */ + delete_utility_practice_invites_by_pk: (utility_practice_invites | null) + /** delete data from the table: "utility_practice_sessions" */ + delete_utility_practice_sessions: (utility_practice_sessions_mutation_response | null) + /** delete single row from the table: "utility_practice_sessions" */ + delete_utility_practice_sessions_by_pk: (utility_practice_sessions | null) + /** delete data from the table: "v_match_captains" */ + delete_v_match_captains: (v_match_captains_mutation_response | null) + /** delete data from the table: "v_match_map_backup_rounds" */ + delete_v_match_map_backup_rounds: (v_match_map_backup_rounds_mutation_response | null) + /** delete data from the table: "v_player_match_map_hltv" */ + delete_v_player_match_map_hltv: (v_player_match_map_hltv_mutation_response | null) + /** delete data from the table: "v_pool_maps" */ + delete_v_pool_maps: (v_pool_maps_mutation_response | null) + /** delete data from the table: "v_team_stage_results" */ + delete_v_team_stage_results: (v_team_stage_results_mutation_response | null) + /** delete single row from the table: "v_team_stage_results" */ + delete_v_team_stage_results_by_pk: (v_team_stage_results | null) + denyInvite: (SuccessOutput | null) + denyNameChange: (SuccessOutput | null) + /** Organizer regenerates the free agent teams and re-seeds */ + draftTournamentTeams: (TournamentDraftOutput | null) + /** Organizer pushes the check-in deadline out and reopens registration */ + extendTournamentCheckIn: (SuccessOutput | null) + forfeitMatch: (SuccessOutput | null) + /** Copy a lineup you can see into your own library */ + forkUtilityLineup: (UtilityLineupOutput | 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) + /** Seed the utility library from an operator-supplied payload */ + importUtilityLineups: (UtilityImportOutput | null) + /** insert data into the table: "_map_pool" */ + insert__map_pool: (_map_pool_mutation_response | null) + /** insert a single row into the table: "_map_pool" */ + insert__map_pool_one: (_map_pool | null) + /** insert data into the table: "abandoned_matches" */ + insert_abandoned_matches: (abandoned_matches_mutation_response | null) + /** insert a single row into the table: "abandoned_matches" */ + insert_abandoned_matches_one: (abandoned_matches | null) + /** insert data into the table: "api_keys" */ + insert_api_keys: (api_keys_mutation_response | null) + /** insert a single row into the table: "api_keys" */ + insert_api_keys_one: (api_keys | null) + /** insert data into the table: "award_recipients" */ + insert_award_recipients: (award_recipients_mutation_response | null) + /** insert a single row into the table: "award_recipients" */ + insert_award_recipients_one: (award_recipients | null) + /** insert data into the table: "awards" */ + insert_awards: (awards_mutation_response | null) + /** insert a single row into the table: "awards" */ + insert_awards_one: (awards | null) + /** insert data into the table: "chat_read_state" */ + insert_chat_read_state: (chat_read_state_mutation_response | null) + /** insert a single row into the table: "chat_read_state" */ + insert_chat_read_state_one: (chat_read_state | null) + /** insert data into the table: "clip_render_jobs" */ + insert_clip_render_jobs: (clip_render_jobs_mutation_response | null) + /** insert a single row into the table: "clip_render_jobs" */ + insert_clip_render_jobs_one: (clip_render_jobs | null) + /** insert data into the table: "custom_pages" */ + insert_custom_pages: (custom_pages_mutation_response | null) + /** insert a single row into the table: "custom_pages" */ + insert_custom_pages_one: (custom_pages | null) + /** insert data into the table: "db_backups" */ + insert_db_backups: (db_backups_mutation_response | null) + /** insert a single row into the table: "db_backups" */ + insert_db_backups_one: (db_backups | null) + /** insert data into the table: "direct_conversations" */ + insert_direct_conversations: (direct_conversations_mutation_response | null) + /** insert a single row into the table: "direct_conversations" */ + insert_direct_conversations_one: (direct_conversations | null) + /** insert data into the table: "direct_messages" */ + insert_direct_messages: (direct_messages_mutation_response | null) + /** insert a single row into the table: "direct_messages" */ + insert_direct_messages_one: (direct_messages | null) + /** insert data into the table: "draft_game_picks" */ + insert_draft_game_picks: (draft_game_picks_mutation_response | null) + /** insert a single row into the table: "draft_game_picks" */ + insert_draft_game_picks_one: (draft_game_picks | null) + /** insert data into the table: "draft_game_players" */ + insert_draft_game_players: (draft_game_players_mutation_response | null) + /** insert a single row into the table: "draft_game_players" */ + insert_draft_game_players_one: (draft_game_players | null) + /** insert data into the table: "draft_games" */ + insert_draft_games: (draft_games_mutation_response | null) + /** insert a single row into the table: "draft_games" */ + insert_draft_games_one: (draft_games | null) + /** insert data into the table: "e_award_sources" */ + insert_e_award_sources: (e_award_sources_mutation_response | null) + /** insert a single row into the table: "e_award_sources" */ + insert_e_award_sources_one: (e_award_sources | null) + /** insert data into the table: "e_award_tiers" */ + insert_e_award_tiers: (e_award_tiers_mutation_response | null) + /** insert a single row into the table: "e_award_tiers" */ + insert_e_award_tiers_one: (e_award_tiers | null) + /** insert data into the table: "e_check_in_settings" */ + insert_e_check_in_settings: (e_check_in_settings_mutation_response | null) + /** insert a single row into the table: "e_check_in_settings" */ + insert_e_check_in_settings_one: (e_check_in_settings | null) + /** insert data into the table: "e_draft_game_captain_selection" */ + insert_e_draft_game_captain_selection: (e_draft_game_captain_selection_mutation_response | null) + /** insert a single row into the table: "e_draft_game_captain_selection" */ + insert_e_draft_game_captain_selection_one: (e_draft_game_captain_selection | null) + /** insert data into the table: "e_draft_game_draft_order" */ + insert_e_draft_game_draft_order: (e_draft_game_draft_order_mutation_response | null) + /** insert a single row into the table: "e_draft_game_draft_order" */ + insert_e_draft_game_draft_order_one: (e_draft_game_draft_order | null) + /** insert data into the table: "e_draft_game_mode" */ + insert_e_draft_game_mode: (e_draft_game_mode_mutation_response | null) + /** insert a single row into the table: "e_draft_game_mode" */ + insert_e_draft_game_mode_one: (e_draft_game_mode | null) + /** insert data into the table: "e_draft_game_player_status" */ + insert_e_draft_game_player_status: (e_draft_game_player_status_mutation_response | null) + /** insert a single row into the table: "e_draft_game_player_status" */ + insert_e_draft_game_player_status_one: (e_draft_game_player_status | null) + /** insert data into the table: "e_draft_game_status" */ + insert_e_draft_game_status: (e_draft_game_status_mutation_response | null) + /** insert a single row into the table: "e_draft_game_status" */ + insert_e_draft_game_status_one: (e_draft_game_status | null) + /** insert data into the table: "e_event_media_access" */ + insert_e_event_media_access: (e_event_media_access_mutation_response | null) + /** insert a single row into the table: "e_event_media_access" */ + insert_e_event_media_access_one: (e_event_media_access | null) + /** insert data into the table: "e_event_visibility" */ + insert_e_event_visibility: (e_event_visibility_mutation_response | null) + /** insert a single row into the table: "e_event_visibility" */ + insert_e_event_visibility_one: (e_event_visibility | null) + /** insert data into the table: "e_friend_status" */ + insert_e_friend_status: (e_friend_status_mutation_response | null) + /** insert a single row into the table: "e_friend_status" */ + insert_e_friend_status_one: (e_friend_status | null) + /** insert data into the table: "e_game_cfg_types" */ + 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" */ + insert_e_game_server_node_statuses_one: (e_game_server_node_statuses | null) + /** insert data into the table: "e_league_movement_types" */ + insert_e_league_movement_types: (e_league_movement_types_mutation_response | null) + /** insert a single row into the table: "e_league_movement_types" */ + insert_e_league_movement_types_one: (e_league_movement_types | null) + /** insert data into the table: "e_league_proposal_statuses" */ + insert_e_league_proposal_statuses: (e_league_proposal_statuses_mutation_response | null) + /** insert a single row into the table: "e_league_proposal_statuses" */ + insert_e_league_proposal_statuses_one: (e_league_proposal_statuses | null) + /** insert data into the table: "e_league_registration_statuses" */ + insert_e_league_registration_statuses: (e_league_registration_statuses_mutation_response | null) + /** insert a single row into the table: "e_league_registration_statuses" */ + insert_e_league_registration_statuses_one: (e_league_registration_statuses | null) + /** insert data into the table: "e_league_season_statuses" */ + insert_e_league_season_statuses: (e_league_season_statuses_mutation_response | null) + /** insert a single row into the table: "e_league_season_statuses" */ + insert_e_league_season_statuses_one: (e_league_season_statuses | null) + /** insert data into the table: "e_lobby_access" */ + insert_e_lobby_access: (e_lobby_access_mutation_response | null) + /** insert a single row into the table: "e_lobby_access" */ + insert_e_lobby_access_one: (e_lobby_access | null) + /** insert data into the table: "e_lobby_player_status" */ + insert_e_lobby_player_status: (e_lobby_player_status_mutation_response | null) + /** insert a single row into the table: "e_lobby_player_status" */ + insert_e_lobby_player_status_one: (e_lobby_player_status | null) + /** insert data into the table: "e_map_pool_types" */ + insert_e_map_pool_types: (e_map_pool_types_mutation_response | null) + /** insert a single row into the table: "e_map_pool_types" */ + insert_e_map_pool_types_one: (e_map_pool_types | null) + /** insert data into the table: "e_match_clip_visibility" */ + insert_e_match_clip_visibility: (e_match_clip_visibility_mutation_response | null) + /** insert a single row into the table: "e_match_clip_visibility" */ + insert_e_match_clip_visibility_one: (e_match_clip_visibility | null) + /** insert data into the table: "e_match_map_status" */ + insert_e_match_map_status: (e_match_map_status_mutation_response | null) + /** insert a single row into the table: "e_match_map_status" */ + insert_e_match_map_status_one: (e_match_map_status | null) + /** insert data into the table: "e_match_mode" */ + insert_e_match_mode: (e_match_mode_mutation_response | null) + /** insert a single row into the table: "e_match_mode" */ + insert_e_match_mode_one: (e_match_mode | null) + /** insert data into the table: "e_match_party_sources" */ + insert_e_match_party_sources: (e_match_party_sources_mutation_response | null) + /** insert a single row into the table: "e_match_party_sources" */ + insert_e_match_party_sources_one: (e_match_party_sources | null) + /** insert data into the table: "e_match_status" */ + insert_e_match_status: (e_match_status_mutation_response | null) + /** insert a single row into the table: "e_match_status" */ + insert_e_match_status_one: (e_match_status | null) + /** insert data into the table: "e_match_types" */ + insert_e_match_types: (e_match_types_mutation_response | null) + /** insert a single row into the table: "e_match_types" */ + insert_e_match_types_one: (e_match_types | null) + /** insert data into the table: "e_notification_types" */ + insert_e_notification_types: (e_notification_types_mutation_response | null) + /** insert a single row into the table: "e_notification_types" */ + insert_e_notification_types_one: (e_notification_types | null) + /** insert data into the table: "e_objective_types" */ + insert_e_objective_types: (e_objective_types_mutation_response | null) + /** insert a single row into the table: "e_objective_types" */ + insert_e_objective_types_one: (e_objective_types | null) + /** insert data into the table: "e_player_roles" */ + insert_e_player_roles: (e_player_roles_mutation_response | null) + /** insert a single row into the table: "e_player_roles" */ + insert_e_player_roles_one: (e_player_roles | null) + /** insert data into the table: "e_plugin_runtimes" */ + insert_e_plugin_runtimes: (e_plugin_runtimes_mutation_response | null) + /** insert a single row into the table: "e_plugin_runtimes" */ + insert_e_plugin_runtimes_one: (e_plugin_runtimes | null) + /** insert data into the table: "e_ready_settings" */ + insert_e_ready_settings: (e_ready_settings_mutation_response | null) + /** insert a single row into the table: "e_ready_settings" */ + insert_e_ready_settings_one: (e_ready_settings | null) + /** insert data into the table: "e_sanction_scopes" */ + insert_e_sanction_scopes: (e_sanction_scopes_mutation_response | null) + /** insert a single row into the table: "e_sanction_scopes" */ + insert_e_sanction_scopes_one: (e_sanction_scopes | null) + /** insert data into the table: "e_sanction_sources" */ + insert_e_sanction_sources: (e_sanction_sources_mutation_response | null) + /** insert a single row into the table: "e_sanction_sources" */ + insert_e_sanction_sources_one: (e_sanction_sources | null) + /** insert data into the table: "e_sanction_types" */ + insert_e_sanction_types: (e_sanction_types_mutation_response | null) + /** insert a single row into the table: "e_sanction_types" */ + insert_e_sanction_types_one: (e_sanction_types | null) + /** insert data into the table: "e_scrim_request_statuses" */ + insert_e_scrim_request_statuses: (e_scrim_request_statuses_mutation_response | null) + /** insert a single row into the table: "e_scrim_request_statuses" */ + insert_e_scrim_request_statuses_one: (e_scrim_request_statuses | null) + /** insert data into the table: "e_server_types" */ + insert_e_server_types: (e_server_types_mutation_response | null) + /** insert a single row into the table: "e_server_types" */ + insert_e_server_types_one: (e_server_types | null) + /** insert data into the table: "e_sides" */ + insert_e_sides: (e_sides_mutation_response | null) + /** insert a single row into the table: "e_sides" */ + insert_e_sides_one: (e_sides | null) + /** insert data into the table: "e_system_alert_types" */ + insert_e_system_alert_types: (e_system_alert_types_mutation_response | null) + /** insert a single row into the table: "e_system_alert_types" */ + insert_e_system_alert_types_one: (e_system_alert_types | null) + /** insert data into the table: "e_team_roles" */ + insert_e_team_roles: (e_team_roles_mutation_response | null) + /** insert a single row into the table: "e_team_roles" */ + insert_e_team_roles_one: (e_team_roles | null) + /** insert data into the table: "e_team_roster_statuses" */ + insert_e_team_roster_statuses: (e_team_roster_statuses_mutation_response | null) + /** insert a single row into the table: "e_team_roster_statuses" */ + insert_e_team_roster_statuses_one: (e_team_roster_statuses | null) + /** insert data into the table: "e_timeout_settings" */ + insert_e_timeout_settings: (e_timeout_settings_mutation_response | null) + /** insert a single row into the table: "e_timeout_settings" */ + insert_e_timeout_settings_one: (e_timeout_settings | null) + /** insert data into the table: "e_tournament_categories" */ + insert_e_tournament_categories: (e_tournament_categories_mutation_response | null) + /** insert a single row into the table: "e_tournament_categories" */ + insert_e_tournament_categories_one: (e_tournament_categories | null) + /** insert data into the table: "e_tournament_free_agent_statuses" */ + insert_e_tournament_free_agent_statuses: (e_tournament_free_agent_statuses_mutation_response | null) + /** insert a single row into the table: "e_tournament_free_agent_statuses" */ + insert_e_tournament_free_agent_statuses_one: (e_tournament_free_agent_statuses | null) + /** insert data into the table: "e_tournament_registration_types" */ + insert_e_tournament_registration_types: (e_tournament_registration_types_mutation_response | null) + /** insert a single row into the table: "e_tournament_registration_types" */ + insert_e_tournament_registration_types_one: (e_tournament_registration_types | null) + /** insert data into the table: "e_tournament_stage_types" */ + insert_e_tournament_stage_types: (e_tournament_stage_types_mutation_response | null) + /** insert a single row into the table: "e_tournament_stage_types" */ + insert_e_tournament_stage_types_one: (e_tournament_stage_types | null) + /** insert data into the table: "e_tournament_status" */ + insert_e_tournament_status: (e_tournament_status_mutation_response | null) + /** insert a single row into the table: "e_tournament_status" */ + insert_e_tournament_status_one: (e_tournament_status | null) + /** insert data into the table: "e_utility_practice_access" */ + insert_e_utility_practice_access: (e_utility_practice_access_mutation_response | null) + /** insert a single row into the table: "e_utility_practice_access" */ + insert_e_utility_practice_access_one: (e_utility_practice_access | null) + /** insert data into the table: "e_utility_practice_statuses" */ + insert_e_utility_practice_statuses: (e_utility_practice_statuses_mutation_response | null) + /** insert a single row into the table: "e_utility_practice_statuses" */ + insert_e_utility_practice_statuses_one: (e_utility_practice_statuses | null) + /** insert data into the table: "e_utility_sources" */ + insert_e_utility_sources: (e_utility_sources_mutation_response | null) + /** insert a single row into the table: "e_utility_sources" */ + insert_e_utility_sources_one: (e_utility_sources | null) + /** insert data into the table: "e_utility_techniques" */ + insert_e_utility_techniques: (e_utility_techniques_mutation_response | null) + /** insert a single row into the table: "e_utility_techniques" */ + insert_e_utility_techniques_one: (e_utility_techniques | null) + /** insert data into the table: "e_utility_throw_strengths" */ + insert_e_utility_throw_strengths: (e_utility_throw_strengths_mutation_response | null) + /** insert a single row into the table: "e_utility_throw_strengths" */ + insert_e_utility_throw_strengths_one: (e_utility_throw_strengths | null) + /** insert data into the table: "e_utility_types" */ + insert_e_utility_types: (e_utility_types_mutation_response | null) + /** insert a single row into the table: "e_utility_types" */ + insert_e_utility_types_one: (e_utility_types | null) + /** insert data into the table: "e_utility_visibility" */ + insert_e_utility_visibility: (e_utility_visibility_mutation_response | null) + /** insert a single row into the table: "e_utility_visibility" */ + insert_e_utility_visibility_one: (e_utility_visibility | null) + /** insert data into the table: "e_veto_pick_types" */ + insert_e_veto_pick_types: (e_veto_pick_types_mutation_response | null) + /** insert a single row into the table: "e_veto_pick_types" */ + insert_e_veto_pick_types_one: (e_veto_pick_types | null) + /** insert data into the table: "e_winning_reasons" */ + insert_e_winning_reasons: (e_winning_reasons_mutation_response | null) + /** insert a single row into the table: "e_winning_reasons" */ + insert_e_winning_reasons_one: (e_winning_reasons | null) + /** insert data into the table: "event_match_links" */ + insert_event_match_links: (event_match_links_mutation_response | null) + /** insert a single row into the table: "event_match_links" */ + insert_event_match_links_one: (event_match_links | null) + /** insert data into the table: "event_media" */ + insert_event_media: (event_media_mutation_response | null) + /** insert a single row into the table: "event_media" */ + insert_event_media_one: (event_media | null) + /** insert data into the table: "event_media_players" */ + insert_event_media_players: (event_media_players_mutation_response | null) + /** insert a single row into the table: "event_media_players" */ + insert_event_media_players_one: (event_media_players | null) + /** insert data into the table: "event_organizers" */ + insert_event_organizers: (event_organizers_mutation_response | null) + /** insert a single row into the table: "event_organizers" */ + insert_event_organizers_one: (event_organizers | null) + /** insert data into the table: "event_players" */ + insert_event_players: (event_players_mutation_response | null) + /** insert a single row into the table: "event_players" */ + insert_event_players_one: (event_players | null) + /** insert data into the table: "event_teams" */ + insert_event_teams: (event_teams_mutation_response | null) + /** insert a single row into the table: "event_teams" */ + insert_event_teams_one: (event_teams | null) + /** insert data into the table: "event_tournaments" */ + insert_event_tournaments: (event_tournaments_mutation_response | null) + /** insert a single row into the table: "event_tournaments" */ + insert_event_tournaments_one: (event_tournaments | null) + /** insert data into the table: "events" */ + insert_events: (events_mutation_response | null) + /** insert a single row into the table: "events" */ + insert_events_one: (events | null) + /** insert data into the table: "friends" */ + insert_friends: (friends_mutation_response | null) + /** insert a single row into the table: "friends" */ + 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" */ + insert_game_server_nodes_one: (game_server_nodes | null) + /** insert data into the table: "game_versions" */ + insert_game_versions: (game_versions_mutation_response | null) + /** insert a single row into the table: "game_versions" */ + insert_game_versions_one: (game_versions | null) + /** insert data into the table: "gamedata_signature_validations" */ + insert_gamedata_signature_validations: (gamedata_signature_validations_mutation_response | null) + /** insert a single row into the table: "gamedata_signature_validations" */ + insert_gamedata_signature_validations_one: (gamedata_signature_validations | null) + /** insert data into the table: "leaderboard_entries" */ + insert_leaderboard_entries: (leaderboard_entries_mutation_response | null) + /** insert a single row into the table: "leaderboard_entries" */ + insert_leaderboard_entries_one: (leaderboard_entries | null) + /** insert data into the table: "league_divisions" */ + insert_league_divisions: (league_divisions_mutation_response | null) + /** insert a single row into the table: "league_divisions" */ + insert_league_divisions_one: (league_divisions | null) + /** insert data into the table: "league_match_weeks" */ + insert_league_match_weeks: (league_match_weeks_mutation_response | null) + /** insert a single row into the table: "league_match_weeks" */ + insert_league_match_weeks_one: (league_match_weeks | null) + /** insert data into the table: "league_relegation_playoffs" */ + insert_league_relegation_playoffs: (league_relegation_playoffs_mutation_response | null) + /** insert a single row into the table: "league_relegation_playoffs" */ + insert_league_relegation_playoffs_one: (league_relegation_playoffs | null) + /** insert data into the table: "league_scheduling_proposals" */ + insert_league_scheduling_proposals: (league_scheduling_proposals_mutation_response | null) + /** insert a single row into the table: "league_scheduling_proposals" */ + insert_league_scheduling_proposals_one: (league_scheduling_proposals | null) + /** insert data into the table: "league_season_divisions" */ + insert_league_season_divisions: (league_season_divisions_mutation_response | null) + /** insert a single row into the table: "league_season_divisions" */ + insert_league_season_divisions_one: (league_season_divisions | null) + /** insert data into the table: "league_seasons" */ + insert_league_seasons: (league_seasons_mutation_response | null) + /** insert a single row into the table: "league_seasons" */ + insert_league_seasons_one: (league_seasons | null) + /** insert data into the table: "league_team_movements" */ + insert_league_team_movements: (league_team_movements_mutation_response | null) + /** insert a single row into the table: "league_team_movements" */ + insert_league_team_movements_one: (league_team_movements | null) + /** insert data into the table: "league_team_rosters" */ + insert_league_team_rosters: (league_team_rosters_mutation_response | null) + /** insert a single row into the table: "league_team_rosters" */ + insert_league_team_rosters_one: (league_team_rosters | null) + /** insert data into the table: "league_team_seasons" */ + insert_league_team_seasons: (league_team_seasons_mutation_response | null) + /** insert a single row into the table: "league_team_seasons" */ + insert_league_team_seasons_one: (league_team_seasons | null) + /** insert data into the table: "league_teams" */ + insert_league_teams: (league_teams_mutation_response | null) + /** insert a single row into the table: "league_teams" */ + insert_league_teams_one: (league_teams | null) + /** insert data into the table: "lobbies" */ + insert_lobbies: (lobbies_mutation_response | null) + /** insert a single row into the table: "lobbies" */ + insert_lobbies_one: (lobbies | null) + /** insert data into the table: "lobby_players" */ + insert_lobby_players: (lobby_players_mutation_response | null) + /** insert a single row into the table: "lobby_players" */ + insert_lobby_players_one: (lobby_players | null) + /** insert data into the table: "map_callouts" */ + insert_map_callouts: (map_callouts_mutation_response | null) + /** insert a single row into the table: "map_callouts" */ + insert_map_callouts_one: (map_callouts | null) + /** insert data into the table: "map_pools" */ + insert_map_pools: (map_pools_mutation_response | null) + /** insert a single row into the table: "map_pools" */ + insert_map_pools_one: (map_pools | null) + /** insert data into the table: "maps" */ + insert_maps: (maps_mutation_response | null) + /** insert a single row into the table: "maps" */ + insert_maps_one: (maps | null) + /** insert data into the table: "match_clips" */ + insert_match_clips: (match_clips_mutation_response | null) + /** insert a single row into the table: "match_clips" */ + insert_match_clips_one: (match_clips | null) + /** insert data into the table: "match_demo_sessions" */ + insert_match_demo_sessions: (match_demo_sessions_mutation_response | null) + /** insert a single row into the table: "match_demo_sessions" */ + insert_match_demo_sessions_one: (match_demo_sessions | null) + /** insert data into the table: "match_lineup_players" */ + insert_match_lineup_players: (match_lineup_players_mutation_response | null) + /** insert a single row into the table: "match_lineup_players" */ + insert_match_lineup_players_one: (match_lineup_players | null) + /** insert data into the table: "match_lineups" */ + insert_match_lineups: (match_lineups_mutation_response | null) + /** insert a single row into the table: "match_lineups" */ + insert_match_lineups_one: (match_lineups | null) + /** insert data into the table: "match_map_demos" */ + insert_match_map_demos: (match_map_demos_mutation_response | null) + /** insert a single row into the table: "match_map_demos" */ + insert_match_map_demos_one: (match_map_demos | null) + /** insert data into the table: "match_map_rounds" */ + insert_match_map_rounds: (match_map_rounds_mutation_response | null) + /** insert a single row into the table: "match_map_rounds" */ + insert_match_map_rounds_one: (match_map_rounds | null) + /** insert data into the table: "match_map_veto_picks" */ + insert_match_map_veto_picks: (match_map_veto_picks_mutation_response | null) + /** insert a single row into the table: "match_map_veto_picks" */ + insert_match_map_veto_picks_one: (match_map_veto_picks | null) + /** insert data into the table: "match_maps" */ + insert_match_maps: (match_maps_mutation_response | null) + /** insert a single row into the table: "match_maps" */ + insert_match_maps_one: (match_maps | null) + /** insert data into the table: "match_options" */ + insert_match_options: (match_options_mutation_response | null) + /** insert a single row into the table: "match_options" */ + insert_match_options_one: (match_options | null) + /** insert data into the table: "match_region_veto_picks" */ + insert_match_region_veto_picks: (match_region_veto_picks_mutation_response | null) + /** insert a single row into the table: "match_region_veto_picks" */ + insert_match_region_veto_picks_one: (match_region_veto_picks | null) + /** insert data into the table: "match_streams" */ + insert_match_streams: (match_streams_mutation_response | null) + /** insert a single row into the table: "match_streams" */ + insert_match_streams_one: (match_streams | null) + /** insert data into the table: "match_type_cfgs" */ + insert_match_type_cfgs: (match_type_cfgs_mutation_response | null) + /** insert a single row into the table: "match_type_cfgs" */ + insert_match_type_cfgs_one: (match_type_cfgs | null) + /** insert data into the table: "matches" */ + insert_matches: (matches_mutation_response | null) + /** insert a single row into the table: "matches" */ + insert_matches_one: (matches | null) + /** insert data into the table: "migration_hashes.hashes" */ + insert_migration_hashes_hashes: (migration_hashes_hashes_mutation_response | null) + /** insert a single row into the table: "migration_hashes.hashes" */ + insert_migration_hashes_hashes_one: (migration_hashes_hashes | null) + /** insert data into the table: "v_my_friends" */ + insert_my_friends: (my_friends_mutation_response | null) + /** insert a single row into the table: "v_my_friends" */ + insert_my_friends_one: (my_friends | null) + /** insert data into the table: "news_articles" */ + insert_news_articles: (news_articles_mutation_response | null) + /** insert a single row into the table: "news_articles" */ + insert_news_articles_one: (news_articles | null) + /** insert data into the table: "notification_preferences" */ + insert_notification_preferences: (notification_preferences_mutation_response | null) + /** insert a single row into the table: "notification_preferences" */ + insert_notification_preferences_one: (notification_preferences | null) + /** insert data into the table: "notifications" */ + insert_notifications: (notifications_mutation_response | null) + /** insert a single row into the table: "notifications" */ + insert_notifications_one: (notifications | null) + /** insert data into the table: "pending_match_import_players" */ + insert_pending_match_import_players: (pending_match_import_players_mutation_response | null) + /** insert a single row into the table: "pending_match_import_players" */ + insert_pending_match_import_players_one: (pending_match_import_players | null) + /** insert data into the table: "pending_match_imports" */ + insert_pending_match_imports: (pending_match_imports_mutation_response | null) + /** insert a single row into the table: "pending_match_imports" */ + insert_pending_match_imports_one: (pending_match_imports | null) + /** insert data into the table: "player_aim_stats_demo" */ + insert_player_aim_stats_demo: (player_aim_stats_demo_mutation_response | null) + /** insert a single row into the table: "player_aim_stats_demo" */ + insert_player_aim_stats_demo_one: (player_aim_stats_demo | null) + /** insert data into the table: "player_aim_weapon_stats" */ + insert_player_aim_weapon_stats: (player_aim_weapon_stats_mutation_response | null) + /** insert a single row into the table: "player_aim_weapon_stats" */ + insert_player_aim_weapon_stats_one: (player_aim_weapon_stats | null) + /** insert data into the table: "player_assists" */ + insert_player_assists: (player_assists_mutation_response | null) + /** insert a single row into the table: "player_assists" */ + insert_player_assists_one: (player_assists | null) + /** insert data into the table: "player_damages" */ + insert_player_damages: (player_damages_mutation_response | null) + /** insert a single row into the table: "player_damages" */ + insert_player_damages_one: (player_damages | null) + /** insert data into the table: "player_elo" */ + insert_player_elo: (player_elo_mutation_response | null) + /** insert a single row into the table: "player_elo" */ + insert_player_elo_one: (player_elo | null) + /** insert data into the table: "player_faceit_rank_history" */ + insert_player_faceit_rank_history: (player_faceit_rank_history_mutation_response | null) + /** insert a single row into the table: "player_faceit_rank_history" */ + insert_player_faceit_rank_history_one: (player_faceit_rank_history | null) + /** insert data into the table: "player_flashes" */ + insert_player_flashes: (player_flashes_mutation_response | null) + /** insert a single row into the table: "player_flashes" */ + insert_player_flashes_one: (player_flashes | null) + /** insert data into the table: "player_kills" */ + insert_player_kills: (player_kills_mutation_response | null) + /** insert data into the table: "player_kills_by_weapon" */ + insert_player_kills_by_weapon: (player_kills_by_weapon_mutation_response | null) + /** insert a single row into the table: "player_kills_by_weapon" */ + insert_player_kills_by_weapon_one: (player_kills_by_weapon | null) + /** insert a single row into the table: "player_kills" */ + insert_player_kills_one: (player_kills | null) + /** insert data into the table: "player_leaderboard_rank" */ + insert_player_leaderboard_rank: (player_leaderboard_rank_mutation_response | null) + /** insert a single row into the table: "player_leaderboard_rank" */ + insert_player_leaderboard_rank_one: (player_leaderboard_rank | null) + /** insert data into the table: "player_match_map_stats" */ + insert_player_match_map_stats: (player_match_map_stats_mutation_response | null) + /** insert a single row into the table: "player_match_map_stats" */ + insert_player_match_map_stats_one: (player_match_map_stats | null) + /** insert data into the table: "player_objectives" */ + insert_player_objectives: (player_objectives_mutation_response | null) + /** insert a single row into the table: "player_objectives" */ + insert_player_objectives_one: (player_objectives | null) + /** insert data into the table: "player_premier_rank_history" */ + insert_player_premier_rank_history: (player_premier_rank_history_mutation_response | null) + /** insert a single row into the table: "player_premier_rank_history" */ + insert_player_premier_rank_history_one: (player_premier_rank_history | null) + /** insert data into the table: "player_sanctions" */ + insert_player_sanctions: (player_sanctions_mutation_response | null) + /** insert a single row into the table: "player_sanctions" */ + insert_player_sanctions_one: (player_sanctions | null) + /** insert data into the table: "player_season_stats" */ + insert_player_season_stats: (player_season_stats_mutation_response | null) + /** insert a single row into the table: "player_season_stats" */ + insert_player_season_stats_one: (player_season_stats | null) + /** insert data into the table: "player_stats" */ + insert_player_stats: (player_stats_mutation_response | null) + /** insert a single row into the table: "player_stats" */ + insert_player_stats_one: (player_stats | null) + /** insert data into the table: "player_steam_bot_friend" */ + insert_player_steam_bot_friend: (player_steam_bot_friend_mutation_response | null) + /** insert a single row into the table: "player_steam_bot_friend" */ + insert_player_steam_bot_friend_one: (player_steam_bot_friend | null) + /** insert data into the table: "player_steam_match_auth" */ + insert_player_steam_match_auth: (player_steam_match_auth_mutation_response | null) + /** insert a single row into the table: "player_steam_match_auth" */ + insert_player_steam_match_auth_one: (player_steam_match_auth | null) + /** insert data into the table: "player_unused_utility" */ + insert_player_unused_utility: (player_unused_utility_mutation_response | null) + /** insert a single row into the table: "player_unused_utility" */ + insert_player_unused_utility_one: (player_unused_utility | null) + /** insert data into the table: "player_utility" */ + insert_player_utility: (player_utility_mutation_response | null) + /** insert a single row into the table: "player_utility" */ + insert_player_utility_one: (player_utility | null) + /** insert data into the table: "players" */ + insert_players: (players_mutation_response | null) + /** insert a single row into the table: "players" */ + insert_players_one: (players | null) + /** insert data into the table: "plugin_versions" */ + insert_plugin_versions: (plugin_versions_mutation_response | null) + /** insert a single row into the table: "plugin_versions" */ + insert_plugin_versions_one: (plugin_versions | null) + /** insert data into the table: "push_subscriptions" */ + insert_push_subscriptions: (push_subscriptions_mutation_response | null) + /** insert a single row into the table: "push_subscriptions" */ + insert_push_subscriptions_one: (push_subscriptions | null) + /** insert data into the table: "v_role_permissions" */ + insert_role_permissions: (role_permissions_mutation_response | null) + /** insert a single row into the table: "v_role_permissions" */ + insert_role_permissions_one: (role_permissions | null) + /** insert data into the table: "seasons" */ + insert_seasons: (seasons_mutation_response | null) + /** insert a single row into the table: "seasons" */ + insert_seasons_one: (seasons | null) + /** insert data into the table: "server_regions" */ + insert_server_regions: (server_regions_mutation_response | null) + /** insert a single row into the table: "server_regions" */ + insert_server_regions_one: (server_regions | null) + /** insert data into the table: "servers" */ + insert_servers: (servers_mutation_response | null) + /** insert a single row into the table: "servers" */ + insert_servers_one: (servers | null) + /** insert data into the table: "settings" */ + insert_settings: (settings_mutation_response | null) + /** insert a single row into the table: "settings" */ + insert_settings_one: (settings | null) + /** insert data into the table: "steam_account_claims" */ + insert_steam_account_claims: (steam_account_claims_mutation_response | null) + /** insert a single row into the table: "steam_account_claims" */ + insert_steam_account_claims_one: (steam_account_claims | null) + /** insert data into the table: "steam_accounts" */ + insert_steam_accounts: (steam_accounts_mutation_response | null) + /** insert a single row into the table: "steam_accounts" */ + insert_steam_accounts_one: (steam_accounts | null) + /** insert data into the table: "system_alerts" */ + insert_system_alerts: (system_alerts_mutation_response | null) + /** insert a single row into the table: "system_alerts" */ + insert_system_alerts_one: (system_alerts | null) + /** insert data into the table: "team_invites" */ + insert_team_invites: (team_invites_mutation_response | null) + /** insert a single row into the table: "team_invites" */ + insert_team_invites_one: (team_invites | null) + /** insert data into the table: "team_roster" */ + insert_team_roster: (team_roster_mutation_response | null) + /** insert a single row into the table: "team_roster" */ + insert_team_roster_one: (team_roster | null) + /** insert data into the table: "team_scrim_alerts" */ + insert_team_scrim_alerts: (team_scrim_alerts_mutation_response | null) + /** insert a single row into the table: "team_scrim_alerts" */ + insert_team_scrim_alerts_one: (team_scrim_alerts | null) + /** insert data into the table: "team_scrim_availability" */ + insert_team_scrim_availability: (team_scrim_availability_mutation_response | null) + /** insert a single row into the table: "team_scrim_availability" */ + insert_team_scrim_availability_one: (team_scrim_availability | null) + /** insert data into the table: "team_scrim_request_proposals" */ + insert_team_scrim_request_proposals: (team_scrim_request_proposals_mutation_response | null) + /** insert a single row into the table: "team_scrim_request_proposals" */ + insert_team_scrim_request_proposals_one: (team_scrim_request_proposals | null) + /** insert data into the table: "team_scrim_requests" */ + insert_team_scrim_requests: (team_scrim_requests_mutation_response | null) + /** insert a single row into the table: "team_scrim_requests" */ + insert_team_scrim_requests_one: (team_scrim_requests | null) + /** insert data into the table: "team_scrim_settings" */ + insert_team_scrim_settings: (team_scrim_settings_mutation_response | null) + /** insert a single row into the table: "team_scrim_settings" */ + insert_team_scrim_settings_one: (team_scrim_settings | null) + /** insert data into the table: "team_suggestions" */ + insert_team_suggestions: (team_suggestions_mutation_response | null) + /** insert a single row into the table: "team_suggestions" */ + insert_team_suggestions_one: (team_suggestions | null) + /** insert data into the table: "teams" */ + insert_teams: (teams_mutation_response | null) + /** insert a single row into the table: "teams" */ + insert_teams_one: (teams | null) + /** insert data into the table: "tournament_awards" */ + insert_tournament_awards: (tournament_awards_mutation_response | null) + /** insert a single row into the table: "tournament_awards" */ + insert_tournament_awards_one: (tournament_awards | null) + /** insert data into the table: "tournament_brackets" */ + insert_tournament_brackets: (tournament_brackets_mutation_response | null) + /** insert a single row into the table: "tournament_brackets" */ + insert_tournament_brackets_one: (tournament_brackets | null) + /** insert data into the table: "tournament_categories" */ + insert_tournament_categories: (tournament_categories_mutation_response | null) + /** insert a single row into the table: "tournament_categories" */ + insert_tournament_categories_one: (tournament_categories | null) + /** insert data into the table: "tournament_free_agents" */ + insert_tournament_free_agents: (tournament_free_agents_mutation_response | null) + /** insert a single row into the table: "tournament_free_agents" */ + insert_tournament_free_agents_one: (tournament_free_agents | null) + /** insert data into the table: "tournament_invite_code_uses" */ + insert_tournament_invite_code_uses: (tournament_invite_code_uses_mutation_response | null) + /** insert a single row into the table: "tournament_invite_code_uses" */ + insert_tournament_invite_code_uses_one: (tournament_invite_code_uses | null) + /** insert data into the table: "tournament_invite_codes" */ + insert_tournament_invite_codes: (tournament_invite_codes_mutation_response | null) + /** insert a single row into the table: "tournament_invite_codes" */ + insert_tournament_invite_codes_one: (tournament_invite_codes | null) + /** insert data into the table: "tournament_invites" */ + insert_tournament_invites: (tournament_invites_mutation_response | null) + /** insert a single row into the table: "tournament_invites" */ + insert_tournament_invites_one: (tournament_invites | null) + /** insert data into the table: "tournament_leaderboard_entries" */ + insert_tournament_leaderboard_entries: (tournament_leaderboard_entries_mutation_response | null) + /** insert a single row into the table: "tournament_leaderboard_entries" */ + insert_tournament_leaderboard_entries_one: (tournament_leaderboard_entries | null) + /** insert data into the table: "tournament_no_shows" */ + insert_tournament_no_shows: (tournament_no_shows_mutation_response | null) + /** insert a single row into the table: "tournament_no_shows" */ + insert_tournament_no_shows_one: (tournament_no_shows | null) + /** insert data into the table: "tournament_organizer_teams" */ + insert_tournament_organizer_teams: (tournament_organizer_teams_mutation_response | null) + /** insert a single row into the table: "tournament_organizer_teams" */ + insert_tournament_organizer_teams_one: (tournament_organizer_teams | null) + /** insert data into the table: "tournament_organizers" */ + insert_tournament_organizers: (tournament_organizers_mutation_response | null) + /** insert a single row into the table: "tournament_organizers" */ + insert_tournament_organizers_one: (tournament_organizers | null) + /** insert data into the table: "tournament_prizes" */ + insert_tournament_prizes: (tournament_prizes_mutation_response | null) + /** insert a single row into the table: "tournament_prizes" */ + insert_tournament_prizes_one: (tournament_prizes | null) + /** insert data into the table: "tournament_registration_unlocks" */ + insert_tournament_registration_unlocks: (tournament_registration_unlocks_mutation_response | null) + /** insert a single row into the table: "tournament_registration_unlocks" */ + insert_tournament_registration_unlocks_one: (tournament_registration_unlocks | null) + /** insert data into the table: "tournament_stage_windows" */ + insert_tournament_stage_windows: (tournament_stage_windows_mutation_response | null) + /** insert a single row into the table: "tournament_stage_windows" */ + insert_tournament_stage_windows_one: (tournament_stage_windows | null) + /** insert data into the table: "tournament_stages" */ + insert_tournament_stages: (tournament_stages_mutation_response | null) + /** insert a single row into the table: "tournament_stages" */ + insert_tournament_stages_one: (tournament_stages | null) + /** insert data into the table: "tournament_team_invites" */ + insert_tournament_team_invites: (tournament_team_invites_mutation_response | null) + /** insert a single row into the table: "tournament_team_invites" */ + insert_tournament_team_invites_one: (tournament_team_invites | null) + /** insert data into the table: "tournament_team_roster" */ + insert_tournament_team_roster: (tournament_team_roster_mutation_response | null) + /** insert a single row into the table: "tournament_team_roster" */ + insert_tournament_team_roster_one: (tournament_team_roster | null) + /** insert data into the table: "tournament_teams" */ + insert_tournament_teams: (tournament_teams_mutation_response | null) + /** insert a single row into the table: "tournament_teams" */ + insert_tournament_teams_one: (tournament_teams | null) + /** insert data into the table: "tournaments" */ + insert_tournaments: (tournaments_mutation_response | null) + /** insert a single row into the table: "tournaments" */ + insert_tournaments_one: (tournaments | null) + /** insert data into the table: "utility_collection_items" */ + insert_utility_collection_items: (utility_collection_items_mutation_response | null) + /** insert a single row into the table: "utility_collection_items" */ + insert_utility_collection_items_one: (utility_collection_items | null) + /** insert data into the table: "utility_collections" */ + insert_utility_collections: (utility_collections_mutation_response | null) + /** insert a single row into the table: "utility_collections" */ + insert_utility_collections_one: (utility_collections | null) + /** insert data into the table: "utility_demo_mines" */ + insert_utility_demo_mines: (utility_demo_mines_mutation_response | null) + /** insert a single row into the table: "utility_demo_mines" */ + insert_utility_demo_mines_one: (utility_demo_mines | null) + /** insert data into the table: "utility_demo_throws" */ + insert_utility_demo_throws: (utility_demo_throws_mutation_response | null) + /** insert a single row into the table: "utility_demo_throws" */ + insert_utility_demo_throws_one: (utility_demo_throws | null) + /** insert data into the table: "utility_drift_results" */ + insert_utility_drift_results: (utility_drift_results_mutation_response | null) + /** insert a single row into the table: "utility_drift_results" */ + insert_utility_drift_results_one: (utility_drift_results | null) + /** insert data into the table: "utility_drift_scans" */ + insert_utility_drift_scans: (utility_drift_scans_mutation_response | null) + /** insert a single row into the table: "utility_drift_scans" */ + insert_utility_drift_scans_one: (utility_drift_scans | null) + /** insert data into the table: "utility_lineup_favorites" */ + insert_utility_lineup_favorites: (utility_lineup_favorites_mutation_response | null) + /** insert a single row into the table: "utility_lineup_favorites" */ + insert_utility_lineup_favorites_one: (utility_lineup_favorites | null) + /** insert data into the table: "utility_lineup_progress" */ + insert_utility_lineup_progress: (utility_lineup_progress_mutation_response | null) + /** insert a single row into the table: "utility_lineup_progress" */ + insert_utility_lineup_progress_one: (utility_lineup_progress | null) + /** insert data into the table: "utility_lineup_renders" */ + insert_utility_lineup_renders: (utility_lineup_renders_mutation_response | null) + /** insert a single row into the table: "utility_lineup_renders" */ + insert_utility_lineup_renders_one: (utility_lineup_renders | null) + /** insert data into the table: "utility_lineup_repairs" */ + insert_utility_lineup_repairs: (utility_lineup_repairs_mutation_response | null) + /** insert a single row into the table: "utility_lineup_repairs" */ + insert_utility_lineup_repairs_one: (utility_lineup_repairs | null) + /** insert data into the table: "utility_lineup_votes" */ + insert_utility_lineup_votes: (utility_lineup_votes_mutation_response | null) + /** insert a single row into the table: "utility_lineup_votes" */ + insert_utility_lineup_votes_one: (utility_lineup_votes | null) + /** insert data into the table: "utility_lineups" */ + insert_utility_lineups: (utility_lineups_mutation_response | null) + /** insert a single row into the table: "utility_lineups" */ + insert_utility_lineups_one: (utility_lineups | null) + /** insert data into the table: "utility_meta_lineups" */ + insert_utility_meta_lineups: (utility_meta_lineups_mutation_response | null) + /** insert a single row into the table: "utility_meta_lineups" */ + insert_utility_meta_lineups_one: (utility_meta_lineups | null) + /** insert data into the table: "utility_playbook_steps" */ + insert_utility_playbook_steps: (utility_playbook_steps_mutation_response | null) + /** insert a single row into the table: "utility_playbook_steps" */ + insert_utility_playbook_steps_one: (utility_playbook_steps | null) + /** insert data into the table: "utility_playbooks" */ + insert_utility_playbooks: (utility_playbooks_mutation_response | null) + /** insert a single row into the table: "utility_playbooks" */ + insert_utility_playbooks_one: (utility_playbooks | null) + /** insert data into the table: "utility_practice_invites" */ + insert_utility_practice_invites: (utility_practice_invites_mutation_response | null) + /** insert a single row into the table: "utility_practice_invites" */ + insert_utility_practice_invites_one: (utility_practice_invites | null) + /** insert data into the table: "utility_practice_sessions" */ + insert_utility_practice_sessions: (utility_practice_sessions_mutation_response | null) + /** insert a single row into the table: "utility_practice_sessions" */ + insert_utility_practice_sessions_one: (utility_practice_sessions | null) + /** insert data into the table: "v_match_captains" */ + insert_v_match_captains: (v_match_captains_mutation_response | null) + /** insert a single row into the table: "v_match_captains" */ + insert_v_match_captains_one: (v_match_captains | null) + /** insert data into the table: "v_match_map_backup_rounds" */ + insert_v_match_map_backup_rounds: (v_match_map_backup_rounds_mutation_response | null) + /** insert a single row into the table: "v_match_map_backup_rounds" */ + insert_v_match_map_backup_rounds_one: (v_match_map_backup_rounds | null) + /** insert data into the table: "v_player_match_map_hltv" */ + insert_v_player_match_map_hltv: (v_player_match_map_hltv_mutation_response | null) + /** insert a single row into the table: "v_player_match_map_hltv" */ + insert_v_player_match_map_hltv_one: (v_player_match_map_hltv | null) + /** insert data into the table: "v_pool_maps" */ + insert_v_pool_maps: (v_pool_maps_mutation_response | null) + /** insert a single row into the table: "v_pool_maps" */ + insert_v_pool_maps_one: (v_pool_maps | null) + /** insert data into the table: "v_team_stage_results" */ + 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) + /** Invite players to a utility practice session */ + inviteToUtilityPractice: (SuccessOutput | null) + /** joinDraftGame */ + joinDraftGame: (SuccessOutput | null) + /** joinDraftGameAsParty */ + joinDraftGameAsParty: (SuccessOutput | null) + /** Register for a tournament that drafts teams, alone or with your lobby */ + joinTournamentAsFreeAgent: (SuccessOutput | null) + /** Join a utility practice session */ + joinUtilityPractice: (UtilityPracticeSessionOutput | null) + kickServerPlayer: KickResult + /** execute VOLATILE function "league_award_forfeit" which returns "matches" */ + league_award_forfeit: matches[] + leaveLineup: (SuccessOutput | null) + /** Withdraw from a tournament's free agent pool */ + leaveTournamentAsFreeAgent: (SuccessOutput | null) + /** Leave a utility practice session */ + leaveUtilityPractice: (SuccessOutput | null) + linkSteamMatchHistory: (SteamMatchHistoryLinkOutput | null) + /** Load dev fixture data (dev only) */ + loadFixtures: (SuccessOutput | null) + /** Load a utility playbook into a running practice session */ + loadUtilityPlaybookIntoSession: (SuccessOutput | null) + /** logout */ + logout: (SuccessOutput | null) + /** Move file or directory on game server */ + moveServerItem: (SuccessOutput | null) + /** Return the latest S3 orphan-scan report (admin only). */ + orphanedDemosScanResult: (OrphanScanResultOutput | null) + /** Flag in-flight clip_render_jobs paused; pod halts after current highlight. */ + pauseClipRenderBatch: (SuccessOutput | null) + pollSteamMatchHistory: (SteamMatchHistoryPollOutput | null) + /** previewDraftGame */ + previewDraftGame: (DraftGamePreviewOutput | null) + /** Resolve a game mode into the plugins and cfg a server would load */ + previewGameMode: (PreviewGameModeOutput | null) + /** Delete every lineup that came from one origin source */ + purgeUtilityLineupSource: (UtilityPurgeOutput | 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) + /** Organizer re-admits a team that missed check-in, then re-seeds */ + readmitTournamentTeam: (SuccessOutput | null) + rebootMatchServer: (SuccessOutput | null) + /** execute VOLATILE function "recalculate_tournament_awards" which returns "award_recipients" */ + recalculate_tournament_awards: award_recipients[] + /** Wipe and rebuild all player ELO from finished matches in chronological order (admin only). Runs in the background; track via recomputePlayerEloStatus. */ + 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) + /** Spend a tournament invite link for an unlock on an invite only tournament */ + redeemTournamentInviteCode: (SuccessOutput | null) + /** Reindex every player into the Typesense search index (admin only). Runs in the background; track via refreshAllPlayersStatus. */ + refreshAllPlayers: (ReindexStartedOutput | null) + /** Return the progress of the player reindex run (admin only). */ + refreshAllPlayersStatus: (ReindexStatusOutput | null) + refreshFaceitRank: (SuccessOutput | null) + refreshLiveHud: (SuccessOutput | null) + registerName: (SuccessOutput | null) + /** Re-mine one batch of demos after a miner change */ + remineUtilityMeta: (UtilityRemineOutput | null) + /** Remove dev fixture data (dev only) */ + removeFixtures: (SuccessOutput | null) + /** Remove a friends-role presence bot account */ + removeSteamPresenceBotAccount: (SuccessOutput | null) + /** execute VOLATILE function "remove_league_team_from_season" which returns "league_team_seasons" */ + remove_league_team_from_season: league_team_seasons[] + /** Rename file or directory on game server */ + renameServerItem: (SuccessOutput | null) + /** Re-film a public lineup's preview clip */ + renderUtilityLineupPreview: (UtilityRenderQueueOutput | null) + /** execute VOLATILE function "reorder_league_divisions" which returns "league_divisions" */ + reorder_league_divisions: league_divisions[] + /** Re-solve a lineup a drift scan says the map moved */ + repairUtilityLineup: (UtilitySolveOutput | null) + /** Re-parse every demo in the system (admin only). Runs one demo at a time in the background; this can take a very long time. Track via reparseAllDemosStatus. */ + reparseAllDemos: (ReparseAllStartedOutput | null) + /** Return the progress of the reparse-all-demos run (admin only). */ + reparseAllDemosStatus: (ReparseAllStatusOutput | null) + /** Re-parse demo metadata for a match map (admin only) */ + reparseDemo: (SuccessOutput | null) + /** Re-parse all demos across every map for a match (admin only). Fires in the background and returns immediately. */ + reparseMatchDemos: (SuccessOutput | null) + requestNameChange: (SuccessOutput | null) + /** Reset a terminal-state clip_render_jobs row back to queued and re-enqueue the batch worker (admin only). */ + requeueClipRender: (SuccessOutput | null) + /** respondDraftInvite */ + respondDraftInvite: (SuccessOutput | null) + /** respondToScrimRequest */ + respondToScrimRequest: (SuccessOutput | null) + restartService: (SuccessOutput | null) + /** execute VOLATILE function "restart_league_season" which returns "league_seasons" */ + restart_league_season: league_seasons[] + /** Clear paused flag and re-enqueue remaining queued clip_render_jobs. */ + resumeClipRenderBatch: (SuccessOutput | null) + /** Delete terminal clip_render_jobs rows for a match_map (all or only failed/cancelled) and re-create them from their saved specs. */ + retryClipRenderBatch: (SuccessOutput | null) + retryPendingMatchImport: (PendingMatchImportActionOutput | null) + /** Revoke a hand-granted award */ + revokeAward: (SuccessOutput | null) + /** Organizer kills a tournament invite link without losing who already used it */ + revokeTournamentInviteCode: (SuccessOutput | null) + sanctionServerPlayer: SanctionResult + /** Create or update a catalog award */ + saveAward: (Award | null) + /** Create or update a first-party news post. Caller role is verified against public.post_news_role. */ + saveNewsPost: (NewsPost | null) + /** Mine a lineup out of a parsed demo */ + saveUtilityLineupFromDemo: (UtilityLineupOutput | null) + /** Save a lineup recorded in a practice session */ + saveUtilityLineupFromPractice: (UtilityLineupOutput | null) + /** Create or update a utility playbook and its steps */ + saveUtilityPlaybook: (UtilityPlaybookOutput | null) + /** Scan S3 for objects not referenced in the database (admin only). Runs in the background; results land in the logs and orphanedDemosScanResult. */ + scanOrphanedDemos: (ScanStartedOutput | null) + /** Scan all players who have been on a lineup for Steam VAC/game bans */ + scanSteamBans: (SuccessOutput | null) + /** scheduleMatch */ + scheduleMatch: (SuccessOutput | null) + /** sendScrimRequest */ + sendScrimRequest: (SuccessOutput | null) + sendUtilityDrillToServer: (UtilityDrillLoadOutput | null) + sendUtilityLineupToServer: (UtilityLoadOutput | null) + sendUtilityScratchToServer: (UtilityLoadOutput | null) + setGameNodeSchedulingState: (SuccessOutput | null) + /** Track new releases of a game plugin, or pin it where it is */ + setGamePluginAutoUpdate: (SuccessOutput | null) + setHudMode: (SuccessOutput | null) + /** setMapWinner */ + setMapWinner: (SuccessOutput | null) + /** setMatchWinner */ + setMatchWinner: (SuccessOutput | null) + /** Publish or unpublish a news post. Caller role is verified against public.post_news_role. */ + setNewsPostStatus: (NewsPost | null) + /** Map a tournament placement to an award */ + setTournamentAward: (TournamentAward | null) + setUtilityPracticeAccess: (SuccessOutput | null) + setupGameServer: (SetupGameServeOutput | null) + skipShaders: (SuccessOutput | null) + /** Ask a practice server to solve a throw onto a point */ + solveUtilityLineup: (UtilitySolveOutput | null) + specAutodirector: (SuccessOutput | null) + specClick: (SuccessOutput | null) + specHud: (SuccessOutput | null) + specHudSides: (SuccessOutput | null) + specJump: (SuccessOutput | null) + specPlayer: (SuccessOutput | null) + specScoreboard: (SuccessOutput | null) + specSlot: (SuccessOutput | null) + specXray: (SuccessOutput | null) + startLive: (SuccessOutput | null) + /** startMatch */ + startMatch: (SuccessOutput | null) + /** Re-fly a map's lineups against two collision meshes */ + startUtilityDriftScan: (UtilityDriftScanOutput | null) + /** Start a utility practice session */ + startUtilityPractice: (UtilityPracticeSessionOutput | null) + stopGpuSession: (SuccessOutput | null) + stopLive: (SuccessOutput | null) + /** Stop a utility practice session */ + stopUtilityPractice: (SuccessOutput | null) + stopWatchDemo: (SuccessOutput | null) + /** Submit a Steam Guard code for a presence bot account */ + submitSteamPresenceSteamGuard: (SuccessOutput | null) + swapLineups: (SuccessOutput | null) + switchLineup: (SuccessOutput | null) + switchLiveMatch: (SuccessOutput | null) + /** Pull the published map callouts for every enabled map */ + syncMapCallouts: (MapCalloutSyncOutput | 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 + /** Owner-only patch for clip title / visibility / target_steam_id. */ + updateClip: (SuccessOutput | null) + updateCs: (SuccessOutput | null) + /** updateDraftGame */ + updateDraftGame: (SuccessOutput | null) + updateServices: (SuccessOutput | null) + /** update data of the table: "_map_pool" */ + update__map_pool: (_map_pool_mutation_response | null) + /** update single row of the table: "_map_pool" */ + update__map_pool_by_pk: (_map_pool | null) + /** update multiples rows of table: "_map_pool" */ + update__map_pool_many: ((_map_pool_mutation_response | null)[] | null) + /** update data of the table: "abandoned_matches" */ + update_abandoned_matches: (abandoned_matches_mutation_response | null) + /** update single row of the table: "abandoned_matches" */ + update_abandoned_matches_by_pk: (abandoned_matches | null) + /** update multiples rows of table: "abandoned_matches" */ + update_abandoned_matches_many: ((abandoned_matches_mutation_response | null)[] | null) + /** update data of the table: "api_keys" */ + update_api_keys: (api_keys_mutation_response | null) + /** update single row of the table: "api_keys" */ + update_api_keys_by_pk: (api_keys | null) + /** update multiples rows of table: "api_keys" */ + update_api_keys_many: ((api_keys_mutation_response | null)[] | null) + /** update data of the table: "award_recipients" */ + update_award_recipients: (award_recipients_mutation_response | null) + /** update single row of the table: "award_recipients" */ + update_award_recipients_by_pk: (award_recipients | null) + /** update multiples rows of table: "award_recipients" */ + update_award_recipients_many: ((award_recipients_mutation_response | null)[] | null) + /** update data of the table: "awards" */ + update_awards: (awards_mutation_response | null) + /** update single row of the table: "awards" */ + update_awards_by_pk: (awards | null) + /** update multiples rows of table: "awards" */ + update_awards_many: ((awards_mutation_response | null)[] | null) + /** update data of the table: "chat_read_state" */ + update_chat_read_state: (chat_read_state_mutation_response | null) + /** update single row of the table: "chat_read_state" */ + update_chat_read_state_by_pk: (chat_read_state | null) + /** update multiples rows of table: "chat_read_state" */ + update_chat_read_state_many: ((chat_read_state_mutation_response | null)[] | null) + /** update data of the table: "clip_render_jobs" */ + update_clip_render_jobs: (clip_render_jobs_mutation_response | null) + /** update single row of the table: "clip_render_jobs" */ + update_clip_render_jobs_by_pk: (clip_render_jobs | null) + /** update multiples rows of table: "clip_render_jobs" */ + update_clip_render_jobs_many: ((clip_render_jobs_mutation_response | null)[] | null) + /** update data of the table: "custom_pages" */ + update_custom_pages: (custom_pages_mutation_response | null) + /** update single row of the table: "custom_pages" */ + update_custom_pages_by_pk: (custom_pages | null) + /** update multiples rows of table: "custom_pages" */ + update_custom_pages_many: ((custom_pages_mutation_response | null)[] | null) + /** update data of the table: "db_backups" */ + update_db_backups: (db_backups_mutation_response | null) + /** update single row of the table: "db_backups" */ + update_db_backups_by_pk: (db_backups | null) + /** update multiples rows of table: "db_backups" */ + update_db_backups_many: ((db_backups_mutation_response | null)[] | null) + /** update data of the table: "direct_conversations" */ + update_direct_conversations: (direct_conversations_mutation_response | null) + /** update single row of the table: "direct_conversations" */ + update_direct_conversations_by_pk: (direct_conversations | null) + /** update multiples rows of table: "direct_conversations" */ + update_direct_conversations_many: ((direct_conversations_mutation_response | null)[] | null) + /** update data of the table: "direct_messages" */ + update_direct_messages: (direct_messages_mutation_response | null) + /** update single row of the table: "direct_messages" */ + update_direct_messages_by_pk: (direct_messages | null) + /** update multiples rows of table: "direct_messages" */ + update_direct_messages_many: ((direct_messages_mutation_response | null)[] | null) + /** update data of the table: "draft_game_picks" */ + update_draft_game_picks: (draft_game_picks_mutation_response | null) + /** update single row of the table: "draft_game_picks" */ + update_draft_game_picks_by_pk: (draft_game_picks | null) + /** update multiples rows of table: "draft_game_picks" */ + update_draft_game_picks_many: ((draft_game_picks_mutation_response | null)[] | null) + /** update data of the table: "draft_game_players" */ + update_draft_game_players: (draft_game_players_mutation_response | null) + /** update single row of the table: "draft_game_players" */ + update_draft_game_players_by_pk: (draft_game_players | null) + /** update multiples rows of table: "draft_game_players" */ + update_draft_game_players_many: ((draft_game_players_mutation_response | null)[] | null) + /** update data of the table: "draft_games" */ + update_draft_games: (draft_games_mutation_response | null) + /** update single row of the table: "draft_games" */ + update_draft_games_by_pk: (draft_games | null) + /** update multiples rows of table: "draft_games" */ + update_draft_games_many: ((draft_games_mutation_response | null)[] | null) + /** update data of the table: "e_award_sources" */ + update_e_award_sources: (e_award_sources_mutation_response | null) + /** update single row of the table: "e_award_sources" */ + update_e_award_sources_by_pk: (e_award_sources | null) + /** update multiples rows of table: "e_award_sources" */ + update_e_award_sources_many: ((e_award_sources_mutation_response | null)[] | null) + /** update data of the table: "e_award_tiers" */ + update_e_award_tiers: (e_award_tiers_mutation_response | null) + /** update single row of the table: "e_award_tiers" */ + update_e_award_tiers_by_pk: (e_award_tiers | null) + /** update multiples rows of table: "e_award_tiers" */ + update_e_award_tiers_many: ((e_award_tiers_mutation_response | null)[] | null) + /** update data of the table: "e_check_in_settings" */ + update_e_check_in_settings: (e_check_in_settings_mutation_response | null) + /** update single row of the table: "e_check_in_settings" */ + update_e_check_in_settings_by_pk: (e_check_in_settings | null) + /** update multiples rows of table: "e_check_in_settings" */ + update_e_check_in_settings_many: ((e_check_in_settings_mutation_response | null)[] | null) + /** update data of the table: "e_draft_game_captain_selection" */ + update_e_draft_game_captain_selection: (e_draft_game_captain_selection_mutation_response | null) + /** update single row of the table: "e_draft_game_captain_selection" */ + update_e_draft_game_captain_selection_by_pk: (e_draft_game_captain_selection | null) + /** update multiples rows of table: "e_draft_game_captain_selection" */ + update_e_draft_game_captain_selection_many: ((e_draft_game_captain_selection_mutation_response | null)[] | null) + /** update data of the table: "e_draft_game_draft_order" */ + update_e_draft_game_draft_order: (e_draft_game_draft_order_mutation_response | null) + /** update single row of the table: "e_draft_game_draft_order" */ + update_e_draft_game_draft_order_by_pk: (e_draft_game_draft_order | null) + /** update multiples rows of table: "e_draft_game_draft_order" */ + update_e_draft_game_draft_order_many: ((e_draft_game_draft_order_mutation_response | null)[] | null) + /** update data of the table: "e_draft_game_mode" */ + update_e_draft_game_mode: (e_draft_game_mode_mutation_response | null) + /** update single row of the table: "e_draft_game_mode" */ + update_e_draft_game_mode_by_pk: (e_draft_game_mode | null) + /** update multiples rows of table: "e_draft_game_mode" */ + update_e_draft_game_mode_many: ((e_draft_game_mode_mutation_response | null)[] | null) + /** update data of the table: "e_draft_game_player_status" */ + update_e_draft_game_player_status: (e_draft_game_player_status_mutation_response | null) + /** update single row of the table: "e_draft_game_player_status" */ + update_e_draft_game_player_status_by_pk: (e_draft_game_player_status | null) + /** update multiples rows of table: "e_draft_game_player_status" */ + update_e_draft_game_player_status_many: ((e_draft_game_player_status_mutation_response | null)[] | null) + /** update data of the table: "e_draft_game_status" */ + update_e_draft_game_status: (e_draft_game_status_mutation_response | null) + /** update single row of the table: "e_draft_game_status" */ + update_e_draft_game_status_by_pk: (e_draft_game_status | null) + /** update multiples rows of table: "e_draft_game_status" */ + update_e_draft_game_status_many: ((e_draft_game_status_mutation_response | null)[] | null) + /** update data of the table: "e_event_media_access" */ + update_e_event_media_access: (e_event_media_access_mutation_response | null) + /** update single row of the table: "e_event_media_access" */ + update_e_event_media_access_by_pk: (e_event_media_access | null) + /** update multiples rows of table: "e_event_media_access" */ + update_e_event_media_access_many: ((e_event_media_access_mutation_response | null)[] | null) + /** update data of the table: "e_event_visibility" */ + update_e_event_visibility: (e_event_visibility_mutation_response | null) + /** update single row of the table: "e_event_visibility" */ + update_e_event_visibility_by_pk: (e_event_visibility | null) + /** update multiples rows of table: "e_event_visibility" */ + update_e_event_visibility_many: ((e_event_visibility_mutation_response | null)[] | null) + /** update data of the table: "e_friend_status" */ + update_e_friend_status: (e_friend_status_mutation_response | null) + /** update single row of the table: "e_friend_status" */ + update_e_friend_status_by_pk: (e_friend_status | null) + /** update multiples rows of table: "e_friend_status" */ + update_e_friend_status_many: ((e_friend_status_mutation_response | null)[] | null) + /** update data of the table: "e_game_cfg_types" */ + update_e_game_cfg_types: (e_game_cfg_types_mutation_response | null) + /** update single row of the table: "e_game_cfg_types" */ + 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" */ + update_e_game_server_node_statuses_by_pk: (e_game_server_node_statuses | null) + /** update multiples rows of table: "e_game_server_node_statuses" */ + update_e_game_server_node_statuses_many: ((e_game_server_node_statuses_mutation_response | null)[] | null) + /** update data of the table: "e_league_movement_types" */ + update_e_league_movement_types: (e_league_movement_types_mutation_response | null) + /** update single row of the table: "e_league_movement_types" */ + update_e_league_movement_types_by_pk: (e_league_movement_types | null) + /** update multiples rows of table: "e_league_movement_types" */ + update_e_league_movement_types_many: ((e_league_movement_types_mutation_response | null)[] | null) + /** update data of the table: "e_league_proposal_statuses" */ + update_e_league_proposal_statuses: (e_league_proposal_statuses_mutation_response | null) + /** update single row of the table: "e_league_proposal_statuses" */ + update_e_league_proposal_statuses_by_pk: (e_league_proposal_statuses | null) + /** update multiples rows of table: "e_league_proposal_statuses" */ + update_e_league_proposal_statuses_many: ((e_league_proposal_statuses_mutation_response | null)[] | null) + /** update data of the table: "e_league_registration_statuses" */ + update_e_league_registration_statuses: (e_league_registration_statuses_mutation_response | null) + /** update single row of the table: "e_league_registration_statuses" */ + update_e_league_registration_statuses_by_pk: (e_league_registration_statuses | null) + /** update multiples rows of table: "e_league_registration_statuses" */ + update_e_league_registration_statuses_many: ((e_league_registration_statuses_mutation_response | null)[] | null) + /** update data of the table: "e_league_season_statuses" */ + update_e_league_season_statuses: (e_league_season_statuses_mutation_response | null) + /** update single row of the table: "e_league_season_statuses" */ + update_e_league_season_statuses_by_pk: (e_league_season_statuses | null) + /** update multiples rows of table: "e_league_season_statuses" */ + update_e_league_season_statuses_many: ((e_league_season_statuses_mutation_response | null)[] | null) + /** update data of the table: "e_lobby_access" */ + update_e_lobby_access: (e_lobby_access_mutation_response | null) + /** update single row of the table: "e_lobby_access" */ + update_e_lobby_access_by_pk: (e_lobby_access | null) + /** update multiples rows of table: "e_lobby_access" */ + update_e_lobby_access_many: ((e_lobby_access_mutation_response | null)[] | null) + /** update data of the table: "e_lobby_player_status" */ + update_e_lobby_player_status: (e_lobby_player_status_mutation_response | null) + /** update single row of the table: "e_lobby_player_status" */ + update_e_lobby_player_status_by_pk: (e_lobby_player_status | null) + /** update multiples rows of table: "e_lobby_player_status" */ + update_e_lobby_player_status_many: ((e_lobby_player_status_mutation_response | null)[] | null) + /** update data of the table: "e_map_pool_types" */ + update_e_map_pool_types: (e_map_pool_types_mutation_response | null) + /** update single row of the table: "e_map_pool_types" */ + update_e_map_pool_types_by_pk: (e_map_pool_types | null) + /** update multiples rows of table: "e_map_pool_types" */ + update_e_map_pool_types_many: ((e_map_pool_types_mutation_response | null)[] | null) + /** update data of the table: "e_match_clip_visibility" */ + update_e_match_clip_visibility: (e_match_clip_visibility_mutation_response | null) + /** update single row of the table: "e_match_clip_visibility" */ + update_e_match_clip_visibility_by_pk: (e_match_clip_visibility | null) + /** update multiples rows of table: "e_match_clip_visibility" */ + update_e_match_clip_visibility_many: ((e_match_clip_visibility_mutation_response | null)[] | null) + /** update data of the table: "e_match_map_status" */ + update_e_match_map_status: (e_match_map_status_mutation_response | null) + /** update single row of the table: "e_match_map_status" */ + update_e_match_map_status_by_pk: (e_match_map_status | null) + /** update multiples rows of table: "e_match_map_status" */ + update_e_match_map_status_many: ((e_match_map_status_mutation_response | null)[] | null) + /** update data of the table: "e_match_mode" */ + update_e_match_mode: (e_match_mode_mutation_response | null) + /** update single row of the table: "e_match_mode" */ + update_e_match_mode_by_pk: (e_match_mode | null) + /** update multiples rows of table: "e_match_mode" */ + update_e_match_mode_many: ((e_match_mode_mutation_response | null)[] | null) + /** update data of the table: "e_match_party_sources" */ + update_e_match_party_sources: (e_match_party_sources_mutation_response | null) + /** update single row of the table: "e_match_party_sources" */ + update_e_match_party_sources_by_pk: (e_match_party_sources | null) + /** update multiples rows of table: "e_match_party_sources" */ + update_e_match_party_sources_many: ((e_match_party_sources_mutation_response | null)[] | null) + /** update data of the table: "e_match_status" */ + update_e_match_status: (e_match_status_mutation_response | null) + /** update single row of the table: "e_match_status" */ + update_e_match_status_by_pk: (e_match_status | null) + /** update multiples rows of table: "e_match_status" */ + update_e_match_status_many: ((e_match_status_mutation_response | null)[] | null) + /** update data of the table: "e_match_types" */ + update_e_match_types: (e_match_types_mutation_response | null) + /** update single row of the table: "e_match_types" */ + update_e_match_types_by_pk: (e_match_types | null) + /** update multiples rows of table: "e_match_types" */ + update_e_match_types_many: ((e_match_types_mutation_response | null)[] | null) + /** update data of the table: "e_notification_types" */ + update_e_notification_types: (e_notification_types_mutation_response | null) + /** update single row of the table: "e_notification_types" */ + update_e_notification_types_by_pk: (e_notification_types | null) + /** update multiples rows of table: "e_notification_types" */ + update_e_notification_types_many: ((e_notification_types_mutation_response | null)[] | null) + /** update data of the table: "e_objective_types" */ + update_e_objective_types: (e_objective_types_mutation_response | null) + /** update single row of the table: "e_objective_types" */ + update_e_objective_types_by_pk: (e_objective_types | null) + /** update multiples rows of table: "e_objective_types" */ + update_e_objective_types_many: ((e_objective_types_mutation_response | null)[] | null) + /** update data of the table: "e_player_roles" */ + update_e_player_roles: (e_player_roles_mutation_response | null) + /** update single row of the table: "e_player_roles" */ + update_e_player_roles_by_pk: (e_player_roles | null) + /** update multiples rows of table: "e_player_roles" */ + update_e_player_roles_many: ((e_player_roles_mutation_response | null)[] | null) + /** update data of the table: "e_plugin_runtimes" */ + update_e_plugin_runtimes: (e_plugin_runtimes_mutation_response | null) + /** update single row of the table: "e_plugin_runtimes" */ + update_e_plugin_runtimes_by_pk: (e_plugin_runtimes | null) + /** update multiples rows of table: "e_plugin_runtimes" */ + update_e_plugin_runtimes_many: ((e_plugin_runtimes_mutation_response | null)[] | null) + /** update data of the table: "e_ready_settings" */ + update_e_ready_settings: (e_ready_settings_mutation_response | null) + /** update single row of the table: "e_ready_settings" */ + update_e_ready_settings_by_pk: (e_ready_settings | null) + /** update multiples rows of table: "e_ready_settings" */ + update_e_ready_settings_many: ((e_ready_settings_mutation_response | null)[] | null) + /** update data of the table: "e_sanction_scopes" */ + update_e_sanction_scopes: (e_sanction_scopes_mutation_response | null) + /** update single row of the table: "e_sanction_scopes" */ + update_e_sanction_scopes_by_pk: (e_sanction_scopes | null) + /** update multiples rows of table: "e_sanction_scopes" */ + update_e_sanction_scopes_many: ((e_sanction_scopes_mutation_response | null)[] | null) + /** update data of the table: "e_sanction_sources" */ + update_e_sanction_sources: (e_sanction_sources_mutation_response | null) + /** update single row of the table: "e_sanction_sources" */ + update_e_sanction_sources_by_pk: (e_sanction_sources | null) + /** update multiples rows of table: "e_sanction_sources" */ + update_e_sanction_sources_many: ((e_sanction_sources_mutation_response | null)[] | null) + /** update data of the table: "e_sanction_types" */ + update_e_sanction_types: (e_sanction_types_mutation_response | null) + /** update single row of the table: "e_sanction_types" */ + update_e_sanction_types_by_pk: (e_sanction_types | null) + /** update multiples rows of table: "e_sanction_types" */ + update_e_sanction_types_many: ((e_sanction_types_mutation_response | null)[] | null) + /** update data of the table: "e_scrim_request_statuses" */ + update_e_scrim_request_statuses: (e_scrim_request_statuses_mutation_response | null) + /** update single row of the table: "e_scrim_request_statuses" */ + update_e_scrim_request_statuses_by_pk: (e_scrim_request_statuses | null) + /** update multiples rows of table: "e_scrim_request_statuses" */ + update_e_scrim_request_statuses_many: ((e_scrim_request_statuses_mutation_response | null)[] | null) + /** update data of the table: "e_server_types" */ + update_e_server_types: (e_server_types_mutation_response | null) + /** update single row of the table: "e_server_types" */ + update_e_server_types_by_pk: (e_server_types | null) + /** update multiples rows of table: "e_server_types" */ + update_e_server_types_many: ((e_server_types_mutation_response | null)[] | null) + /** update data of the table: "e_sides" */ + update_e_sides: (e_sides_mutation_response | null) + /** update single row of the table: "e_sides" */ + update_e_sides_by_pk: (e_sides | null) + /** update multiples rows of table: "e_sides" */ + update_e_sides_many: ((e_sides_mutation_response | null)[] | null) + /** update data of the table: "e_system_alert_types" */ + update_e_system_alert_types: (e_system_alert_types_mutation_response | null) + /** update single row of the table: "e_system_alert_types" */ + update_e_system_alert_types_by_pk: (e_system_alert_types | null) + /** update multiples rows of table: "e_system_alert_types" */ + update_e_system_alert_types_many: ((e_system_alert_types_mutation_response | null)[] | null) + /** update data of the table: "e_team_roles" */ + update_e_team_roles: (e_team_roles_mutation_response | null) + /** update single row of the table: "e_team_roles" */ + update_e_team_roles_by_pk: (e_team_roles | null) + /** update multiples rows of table: "e_team_roles" */ + update_e_team_roles_many: ((e_team_roles_mutation_response | null)[] | null) + /** update data of the table: "e_team_roster_statuses" */ + update_e_team_roster_statuses: (e_team_roster_statuses_mutation_response | null) + /** update single row of the table: "e_team_roster_statuses" */ + update_e_team_roster_statuses_by_pk: (e_team_roster_statuses | null) + /** update multiples rows of table: "e_team_roster_statuses" */ + update_e_team_roster_statuses_many: ((e_team_roster_statuses_mutation_response | null)[] | null) + /** update data of the table: "e_timeout_settings" */ + update_e_timeout_settings: (e_timeout_settings_mutation_response | null) + /** update single row of the table: "e_timeout_settings" */ + update_e_timeout_settings_by_pk: (e_timeout_settings | null) + /** update multiples rows of table: "e_timeout_settings" */ + update_e_timeout_settings_many: ((e_timeout_settings_mutation_response | null)[] | null) + /** update data of the table: "e_tournament_categories" */ + update_e_tournament_categories: (e_tournament_categories_mutation_response | null) + /** update single row of the table: "e_tournament_categories" */ + update_e_tournament_categories_by_pk: (e_tournament_categories | null) + /** update multiples rows of table: "e_tournament_categories" */ + update_e_tournament_categories_many: ((e_tournament_categories_mutation_response | null)[] | null) + /** update data of the table: "e_tournament_free_agent_statuses" */ + update_e_tournament_free_agent_statuses: (e_tournament_free_agent_statuses_mutation_response | null) + /** update single row of the table: "e_tournament_free_agent_statuses" */ + update_e_tournament_free_agent_statuses_by_pk: (e_tournament_free_agent_statuses | null) + /** update multiples rows of table: "e_tournament_free_agent_statuses" */ + update_e_tournament_free_agent_statuses_many: ((e_tournament_free_agent_statuses_mutation_response | null)[] | null) + /** update data of the table: "e_tournament_registration_types" */ + update_e_tournament_registration_types: (e_tournament_registration_types_mutation_response | null) + /** update single row of the table: "e_tournament_registration_types" */ + update_e_tournament_registration_types_by_pk: (e_tournament_registration_types | null) + /** update multiples rows of table: "e_tournament_registration_types" */ + update_e_tournament_registration_types_many: ((e_tournament_registration_types_mutation_response | null)[] | null) + /** update data of the table: "e_tournament_stage_types" */ + update_e_tournament_stage_types: (e_tournament_stage_types_mutation_response | null) + /** update single row of the table: "e_tournament_stage_types" */ + update_e_tournament_stage_types_by_pk: (e_tournament_stage_types | null) + /** update multiples rows of table: "e_tournament_stage_types" */ + update_e_tournament_stage_types_many: ((e_tournament_stage_types_mutation_response | null)[] | null) + /** update data of the table: "e_tournament_status" */ + update_e_tournament_status: (e_tournament_status_mutation_response | null) + /** update single row of the table: "e_tournament_status" */ + update_e_tournament_status_by_pk: (e_tournament_status | null) + /** update multiples rows of table: "e_tournament_status" */ + update_e_tournament_status_many: ((e_tournament_status_mutation_response | null)[] | null) + /** update data of the table: "e_utility_practice_access" */ + update_e_utility_practice_access: (e_utility_practice_access_mutation_response | null) + /** update single row of the table: "e_utility_practice_access" */ + update_e_utility_practice_access_by_pk: (e_utility_practice_access | null) + /** update multiples rows of table: "e_utility_practice_access" */ + update_e_utility_practice_access_many: ((e_utility_practice_access_mutation_response | null)[] | null) + /** update data of the table: "e_utility_practice_statuses" */ + update_e_utility_practice_statuses: (e_utility_practice_statuses_mutation_response | null) + /** update single row of the table: "e_utility_practice_statuses" */ + update_e_utility_practice_statuses_by_pk: (e_utility_practice_statuses | null) + /** update multiples rows of table: "e_utility_practice_statuses" */ + update_e_utility_practice_statuses_many: ((e_utility_practice_statuses_mutation_response | null)[] | null) + /** update data of the table: "e_utility_sources" */ + update_e_utility_sources: (e_utility_sources_mutation_response | null) + /** update single row of the table: "e_utility_sources" */ + update_e_utility_sources_by_pk: (e_utility_sources | null) + /** update multiples rows of table: "e_utility_sources" */ + update_e_utility_sources_many: ((e_utility_sources_mutation_response | null)[] | null) + /** update data of the table: "e_utility_techniques" */ + update_e_utility_techniques: (e_utility_techniques_mutation_response | null) + /** update single row of the table: "e_utility_techniques" */ + update_e_utility_techniques_by_pk: (e_utility_techniques | null) + /** update multiples rows of table: "e_utility_techniques" */ + update_e_utility_techniques_many: ((e_utility_techniques_mutation_response | null)[] | null) + /** update data of the table: "e_utility_throw_strengths" */ + update_e_utility_throw_strengths: (e_utility_throw_strengths_mutation_response | null) + /** update single row of the table: "e_utility_throw_strengths" */ + update_e_utility_throw_strengths_by_pk: (e_utility_throw_strengths | null) + /** update multiples rows of table: "e_utility_throw_strengths" */ + update_e_utility_throw_strengths_many: ((e_utility_throw_strengths_mutation_response | null)[] | null) + /** update data of the table: "e_utility_types" */ + update_e_utility_types: (e_utility_types_mutation_response | null) + /** update single row of the table: "e_utility_types" */ + update_e_utility_types_by_pk: (e_utility_types | null) + /** update multiples rows of table: "e_utility_types" */ + update_e_utility_types_many: ((e_utility_types_mutation_response | null)[] | null) + /** update data of the table: "e_utility_visibility" */ + update_e_utility_visibility: (e_utility_visibility_mutation_response | null) + /** update single row of the table: "e_utility_visibility" */ + update_e_utility_visibility_by_pk: (e_utility_visibility | null) + /** update multiples rows of table: "e_utility_visibility" */ + update_e_utility_visibility_many: ((e_utility_visibility_mutation_response | null)[] | null) + /** update data of the table: "e_veto_pick_types" */ + update_e_veto_pick_types: (e_veto_pick_types_mutation_response | null) + /** update single row of the table: "e_veto_pick_types" */ + update_e_veto_pick_types_by_pk: (e_veto_pick_types | null) + /** update multiples rows of table: "e_veto_pick_types" */ + update_e_veto_pick_types_many: ((e_veto_pick_types_mutation_response | null)[] | null) + /** update data of the table: "e_winning_reasons" */ + update_e_winning_reasons: (e_winning_reasons_mutation_response | null) + /** update single row of the table: "e_winning_reasons" */ + update_e_winning_reasons_by_pk: (e_winning_reasons | null) + /** update multiples rows of table: "e_winning_reasons" */ + update_e_winning_reasons_many: ((e_winning_reasons_mutation_response | null)[] | null) + /** update data of the table: "event_match_links" */ + update_event_match_links: (event_match_links_mutation_response | null) + /** update single row of the table: "event_match_links" */ + update_event_match_links_by_pk: (event_match_links | null) + /** update multiples rows of table: "event_match_links" */ + update_event_match_links_many: ((event_match_links_mutation_response | null)[] | null) + /** update data of the table: "event_media" */ + update_event_media: (event_media_mutation_response | null) + /** update single row of the table: "event_media" */ + update_event_media_by_pk: (event_media | null) + /** update multiples rows of table: "event_media" */ + update_event_media_many: ((event_media_mutation_response | null)[] | null) + /** update data of the table: "event_media_players" */ + update_event_media_players: (event_media_players_mutation_response | null) + /** update single row of the table: "event_media_players" */ + update_event_media_players_by_pk: (event_media_players | null) + /** update multiples rows of table: "event_media_players" */ + update_event_media_players_many: ((event_media_players_mutation_response | null)[] | null) + /** update data of the table: "event_organizers" */ + update_event_organizers: (event_organizers_mutation_response | null) + /** update single row of the table: "event_organizers" */ + update_event_organizers_by_pk: (event_organizers | null) + /** update multiples rows of table: "event_organizers" */ + update_event_organizers_many: ((event_organizers_mutation_response | null)[] | null) + /** update data of the table: "event_players" */ + update_event_players: (event_players_mutation_response | null) + /** update single row of the table: "event_players" */ + update_event_players_by_pk: (event_players | null) + /** update multiples rows of table: "event_players" */ + update_event_players_many: ((event_players_mutation_response | null)[] | null) + /** update data of the table: "event_teams" */ + update_event_teams: (event_teams_mutation_response | null) + /** update single row of the table: "event_teams" */ + update_event_teams_by_pk: (event_teams | null) + /** update multiples rows of table: "event_teams" */ + update_event_teams_many: ((event_teams_mutation_response | null)[] | null) + /** update data of the table: "event_tournaments" */ + update_event_tournaments: (event_tournaments_mutation_response | null) + /** update single row of the table: "event_tournaments" */ + update_event_tournaments_by_pk: (event_tournaments | null) + /** update multiples rows of table: "event_tournaments" */ + update_event_tournaments_many: ((event_tournaments_mutation_response | null)[] | null) + /** update data of the table: "events" */ + update_events: (events_mutation_response | null) + /** update single row of the table: "events" */ + update_events_by_pk: (events | null) + /** update multiples rows of table: "events" */ + update_events_many: ((events_mutation_response | null)[] | null) + /** update data of the table: "friends" */ + update_friends: (friends_mutation_response | null) + /** update single row of the table: "friends" */ + 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" */ + update_game_server_nodes_by_pk: (game_server_nodes | null) + /** update multiples rows of table: "game_server_nodes" */ + update_game_server_nodes_many: ((game_server_nodes_mutation_response | null)[] | null) + /** update data of the table: "game_versions" */ + update_game_versions: (game_versions_mutation_response | null) + /** update single row of the table: "game_versions" */ + update_game_versions_by_pk: (game_versions | null) + /** update multiples rows of table: "game_versions" */ + update_game_versions_many: ((game_versions_mutation_response | null)[] | null) + /** update data of the table: "gamedata_signature_validations" */ + update_gamedata_signature_validations: (gamedata_signature_validations_mutation_response | null) + /** update single row of the table: "gamedata_signature_validations" */ + update_gamedata_signature_validations_by_pk: (gamedata_signature_validations | null) + /** update multiples rows of table: "gamedata_signature_validations" */ + update_gamedata_signature_validations_many: ((gamedata_signature_validations_mutation_response | null)[] | null) + /** update data of the table: "leaderboard_entries" */ + update_leaderboard_entries: (leaderboard_entries_mutation_response | null) + /** update multiples rows of table: "leaderboard_entries" */ + update_leaderboard_entries_many: ((leaderboard_entries_mutation_response | null)[] | null) + /** update data of the table: "league_divisions" */ + update_league_divisions: (league_divisions_mutation_response | null) + /** update single row of the table: "league_divisions" */ + update_league_divisions_by_pk: (league_divisions | null) + /** update multiples rows of table: "league_divisions" */ + update_league_divisions_many: ((league_divisions_mutation_response | null)[] | null) + /** update data of the table: "league_match_weeks" */ + update_league_match_weeks: (league_match_weeks_mutation_response | null) + /** update single row of the table: "league_match_weeks" */ + update_league_match_weeks_by_pk: (league_match_weeks | null) + /** update multiples rows of table: "league_match_weeks" */ + update_league_match_weeks_many: ((league_match_weeks_mutation_response | null)[] | null) + /** update data of the table: "league_relegation_playoffs" */ + update_league_relegation_playoffs: (league_relegation_playoffs_mutation_response | null) + /** update single row of the table: "league_relegation_playoffs" */ + update_league_relegation_playoffs_by_pk: (league_relegation_playoffs | null) + /** update multiples rows of table: "league_relegation_playoffs" */ + update_league_relegation_playoffs_many: ((league_relegation_playoffs_mutation_response | null)[] | null) + /** update data of the table: "league_scheduling_proposals" */ + update_league_scheduling_proposals: (league_scheduling_proposals_mutation_response | null) + /** update single row of the table: "league_scheduling_proposals" */ + update_league_scheduling_proposals_by_pk: (league_scheduling_proposals | null) + /** update multiples rows of table: "league_scheduling_proposals" */ + update_league_scheduling_proposals_many: ((league_scheduling_proposals_mutation_response | null)[] | null) + /** update data of the table: "league_season_divisions" */ + update_league_season_divisions: (league_season_divisions_mutation_response | null) + /** update single row of the table: "league_season_divisions" */ + update_league_season_divisions_by_pk: (league_season_divisions | null) + /** update multiples rows of table: "league_season_divisions" */ + update_league_season_divisions_many: ((league_season_divisions_mutation_response | null)[] | null) + /** update data of the table: "league_seasons" */ + update_league_seasons: (league_seasons_mutation_response | null) + /** update single row of the table: "league_seasons" */ + update_league_seasons_by_pk: (league_seasons | null) + /** update multiples rows of table: "league_seasons" */ + update_league_seasons_many: ((league_seasons_mutation_response | null)[] | null) + /** update data of the table: "league_team_movements" */ + update_league_team_movements: (league_team_movements_mutation_response | null) + /** update single row of the table: "league_team_movements" */ + update_league_team_movements_by_pk: (league_team_movements | null) + /** update multiples rows of table: "league_team_movements" */ + update_league_team_movements_many: ((league_team_movements_mutation_response | null)[] | null) + /** update data of the table: "league_team_rosters" */ + update_league_team_rosters: (league_team_rosters_mutation_response | null) + /** update single row of the table: "league_team_rosters" */ + update_league_team_rosters_by_pk: (league_team_rosters | null) + /** update multiples rows of table: "league_team_rosters" */ + update_league_team_rosters_many: ((league_team_rosters_mutation_response | null)[] | null) + /** update data of the table: "league_team_seasons" */ + update_league_team_seasons: (league_team_seasons_mutation_response | null) + /** update single row of the table: "league_team_seasons" */ + update_league_team_seasons_by_pk: (league_team_seasons | null) + /** update multiples rows of table: "league_team_seasons" */ + update_league_team_seasons_many: ((league_team_seasons_mutation_response | null)[] | null) + /** update data of the table: "league_teams" */ + update_league_teams: (league_teams_mutation_response | null) + /** update single row of the table: "league_teams" */ + update_league_teams_by_pk: (league_teams | null) + /** update multiples rows of table: "league_teams" */ + update_league_teams_many: ((league_teams_mutation_response | null)[] | null) + /** update data of the table: "lobbies" */ + update_lobbies: (lobbies_mutation_response | null) + /** update single row of the table: "lobbies" */ + update_lobbies_by_pk: (lobbies | null) + /** update multiples rows of table: "lobbies" */ + update_lobbies_many: ((lobbies_mutation_response | null)[] | null) + /** update data of the table: "lobby_players" */ + update_lobby_players: (lobby_players_mutation_response | null) + /** update single row of the table: "lobby_players" */ + update_lobby_players_by_pk: (lobby_players | null) + /** update multiples rows of table: "lobby_players" */ + update_lobby_players_many: ((lobby_players_mutation_response | null)[] | null) + /** update data of the table: "map_callouts" */ + update_map_callouts: (map_callouts_mutation_response | null) + /** update single row of the table: "map_callouts" */ + update_map_callouts_by_pk: (map_callouts | null) + /** update multiples rows of table: "map_callouts" */ + update_map_callouts_many: ((map_callouts_mutation_response | null)[] | null) + /** update data of the table: "map_pools" */ + update_map_pools: (map_pools_mutation_response | null) + /** update single row of the table: "map_pools" */ + update_map_pools_by_pk: (map_pools | null) + /** update multiples rows of table: "map_pools" */ + update_map_pools_many: ((map_pools_mutation_response | null)[] | null) + /** update data of the table: "maps" */ + update_maps: (maps_mutation_response | null) + /** update single row of the table: "maps" */ + update_maps_by_pk: (maps | null) + /** update multiples rows of table: "maps" */ + update_maps_many: ((maps_mutation_response | null)[] | null) + /** update data of the table: "match_clips" */ + update_match_clips: (match_clips_mutation_response | null) + /** update single row of the table: "match_clips" */ + update_match_clips_by_pk: (match_clips | null) + /** update multiples rows of table: "match_clips" */ + update_match_clips_many: ((match_clips_mutation_response | null)[] | null) + /** update data of the table: "match_demo_sessions" */ + update_match_demo_sessions: (match_demo_sessions_mutation_response | null) + /** update single row of the table: "match_demo_sessions" */ + update_match_demo_sessions_by_pk: (match_demo_sessions | null) + /** update multiples rows of table: "match_demo_sessions" */ + update_match_demo_sessions_many: ((match_demo_sessions_mutation_response | null)[] | null) + /** update data of the table: "match_lineup_players" */ + update_match_lineup_players: (match_lineup_players_mutation_response | null) + /** update single row of the table: "match_lineup_players" */ + update_match_lineup_players_by_pk: (match_lineup_players | null) + /** update multiples rows of table: "match_lineup_players" */ + update_match_lineup_players_many: ((match_lineup_players_mutation_response | null)[] | null) + /** update data of the table: "match_lineups" */ + update_match_lineups: (match_lineups_mutation_response | null) + /** update single row of the table: "match_lineups" */ + update_match_lineups_by_pk: (match_lineups | null) + /** update multiples rows of table: "match_lineups" */ + update_match_lineups_many: ((match_lineups_mutation_response | null)[] | null) + /** update data of the table: "match_map_demos" */ + update_match_map_demos: (match_map_demos_mutation_response | null) + /** update single row of the table: "match_map_demos" */ + update_match_map_demos_by_pk: (match_map_demos | null) + /** update multiples rows of table: "match_map_demos" */ + update_match_map_demos_many: ((match_map_demos_mutation_response | null)[] | null) + /** update data of the table: "match_map_rounds" */ + update_match_map_rounds: (match_map_rounds_mutation_response | null) + /** update single row of the table: "match_map_rounds" */ + update_match_map_rounds_by_pk: (match_map_rounds | null) + /** update multiples rows of table: "match_map_rounds" */ + update_match_map_rounds_many: ((match_map_rounds_mutation_response | null)[] | null) + /** update data of the table: "match_map_veto_picks" */ + update_match_map_veto_picks: (match_map_veto_picks_mutation_response | null) + /** update single row of the table: "match_map_veto_picks" */ + update_match_map_veto_picks_by_pk: (match_map_veto_picks | null) + /** update multiples rows of table: "match_map_veto_picks" */ + update_match_map_veto_picks_many: ((match_map_veto_picks_mutation_response | null)[] | null) + /** update data of the table: "match_maps" */ + update_match_maps: (match_maps_mutation_response | null) + /** update single row of the table: "match_maps" */ + update_match_maps_by_pk: (match_maps | null) + /** update multiples rows of table: "match_maps" */ + update_match_maps_many: ((match_maps_mutation_response | null)[] | null) + /** update data of the table: "match_options" */ + update_match_options: (match_options_mutation_response | null) + /** update single row of the table: "match_options" */ + update_match_options_by_pk: (match_options | null) + /** update multiples rows of table: "match_options" */ + update_match_options_many: ((match_options_mutation_response | null)[] | null) + /** update data of the table: "match_region_veto_picks" */ + update_match_region_veto_picks: (match_region_veto_picks_mutation_response | null) + /** update single row of the table: "match_region_veto_picks" */ + update_match_region_veto_picks_by_pk: (match_region_veto_picks | null) + /** update multiples rows of table: "match_region_veto_picks" */ + update_match_region_veto_picks_many: ((match_region_veto_picks_mutation_response | null)[] | null) + /** update data of the table: "match_streams" */ + update_match_streams: (match_streams_mutation_response | null) + /** update single row of the table: "match_streams" */ + update_match_streams_by_pk: (match_streams | null) + /** update multiples rows of table: "match_streams" */ + update_match_streams_many: ((match_streams_mutation_response | null)[] | null) + /** update data of the table: "match_type_cfgs" */ + update_match_type_cfgs: (match_type_cfgs_mutation_response | null) + /** update single row of the table: "match_type_cfgs" */ + update_match_type_cfgs_by_pk: (match_type_cfgs | null) + /** update multiples rows of table: "match_type_cfgs" */ + update_match_type_cfgs_many: ((match_type_cfgs_mutation_response | null)[] | null) + /** update data of the table: "matches" */ + update_matches: (matches_mutation_response | null) + /** update single row of the table: "matches" */ + update_matches_by_pk: (matches | null) + /** update multiples rows of table: "matches" */ + update_matches_many: ((matches_mutation_response | null)[] | null) + /** update data of the table: "migration_hashes.hashes" */ + update_migration_hashes_hashes: (migration_hashes_hashes_mutation_response | null) + /** update single row of the table: "migration_hashes.hashes" */ + update_migration_hashes_hashes_by_pk: (migration_hashes_hashes | null) + /** update multiples rows of table: "migration_hashes.hashes" */ + update_migration_hashes_hashes_many: ((migration_hashes_hashes_mutation_response | null)[] | null) + /** update data of the table: "v_my_friends" */ + update_my_friends: (my_friends_mutation_response | null) + /** update multiples rows of table: "v_my_friends" */ + update_my_friends_many: ((my_friends_mutation_response | null)[] | null) + /** update data of the table: "news_articles" */ + update_news_articles: (news_articles_mutation_response | null) + /** update single row of the table: "news_articles" */ + update_news_articles_by_pk: (news_articles | null) + /** update multiples rows of table: "news_articles" */ + update_news_articles_many: ((news_articles_mutation_response | null)[] | null) + /** update data of the table: "notification_preferences" */ + update_notification_preferences: (notification_preferences_mutation_response | null) + /** update single row of the table: "notification_preferences" */ + update_notification_preferences_by_pk: (notification_preferences | null) + /** update multiples rows of table: "notification_preferences" */ + update_notification_preferences_many: ((notification_preferences_mutation_response | null)[] | null) + /** update data of the table: "notifications" */ + update_notifications: (notifications_mutation_response | null) + /** update single row of the table: "notifications" */ + update_notifications_by_pk: (notifications | null) + /** update multiples rows of table: "notifications" */ + update_notifications_many: ((notifications_mutation_response | null)[] | null) + /** update data of the table: "pending_match_import_players" */ + update_pending_match_import_players: (pending_match_import_players_mutation_response | null) + /** update single row of the table: "pending_match_import_players" */ + update_pending_match_import_players_by_pk: (pending_match_import_players | null) + /** update multiples rows of table: "pending_match_import_players" */ + update_pending_match_import_players_many: ((pending_match_import_players_mutation_response | null)[] | null) + /** update data of the table: "pending_match_imports" */ + update_pending_match_imports: (pending_match_imports_mutation_response | null) + /** update single row of the table: "pending_match_imports" */ + update_pending_match_imports_by_pk: (pending_match_imports | null) + /** update multiples rows of table: "pending_match_imports" */ + update_pending_match_imports_many: ((pending_match_imports_mutation_response | null)[] | null) + /** update data of the table: "player_aim_stats_demo" */ + update_player_aim_stats_demo: (player_aim_stats_demo_mutation_response | null) + /** update single row of the table: "player_aim_stats_demo" */ + update_player_aim_stats_demo_by_pk: (player_aim_stats_demo | null) + /** update multiples rows of table: "player_aim_stats_demo" */ + update_player_aim_stats_demo_many: ((player_aim_stats_demo_mutation_response | null)[] | null) + /** update data of the table: "player_aim_weapon_stats" */ + update_player_aim_weapon_stats: (player_aim_weapon_stats_mutation_response | null) + /** update single row of the table: "player_aim_weapon_stats" */ + update_player_aim_weapon_stats_by_pk: (player_aim_weapon_stats | null) + /** update multiples rows of table: "player_aim_weapon_stats" */ + update_player_aim_weapon_stats_many: ((player_aim_weapon_stats_mutation_response | null)[] | null) + /** update data of the table: "player_assists" */ + update_player_assists: (player_assists_mutation_response | null) + /** update single row of the table: "player_assists" */ + update_player_assists_by_pk: (player_assists | null) + /** update multiples rows of table: "player_assists" */ + update_player_assists_many: ((player_assists_mutation_response | null)[] | null) + /** update data of the table: "player_damages" */ + update_player_damages: (player_damages_mutation_response | null) + /** update single row of the table: "player_damages" */ + update_player_damages_by_pk: (player_damages | null) + /** update multiples rows of table: "player_damages" */ + update_player_damages_many: ((player_damages_mutation_response | null)[] | null) + /** update data of the table: "player_elo" */ + update_player_elo: (player_elo_mutation_response | null) + /** update single row of the table: "player_elo" */ + update_player_elo_by_pk: (player_elo | null) + /** update multiples rows of table: "player_elo" */ + update_player_elo_many: ((player_elo_mutation_response | null)[] | null) + /** update data of the table: "player_faceit_rank_history" */ + update_player_faceit_rank_history: (player_faceit_rank_history_mutation_response | null) + /** update single row of the table: "player_faceit_rank_history" */ + update_player_faceit_rank_history_by_pk: (player_faceit_rank_history | null) + /** update multiples rows of table: "player_faceit_rank_history" */ + update_player_faceit_rank_history_many: ((player_faceit_rank_history_mutation_response | null)[] | null) + /** update data of the table: "player_flashes" */ + update_player_flashes: (player_flashes_mutation_response | null) + /** update single row of the table: "player_flashes" */ + update_player_flashes_by_pk: (player_flashes | null) + /** update multiples rows of table: "player_flashes" */ + update_player_flashes_many: ((player_flashes_mutation_response | null)[] | null) + /** update data of the table: "player_kills" */ + update_player_kills: (player_kills_mutation_response | null) + /** update single row of the table: "player_kills" */ + update_player_kills_by_pk: (player_kills | null) + /** update data of the table: "player_kills_by_weapon" */ + update_player_kills_by_weapon: (player_kills_by_weapon_mutation_response | null) + /** update single row of the table: "player_kills_by_weapon" */ + update_player_kills_by_weapon_by_pk: (player_kills_by_weapon | null) + /** update multiples rows of table: "player_kills_by_weapon" */ + update_player_kills_by_weapon_many: ((player_kills_by_weapon_mutation_response | null)[] | null) + /** update multiples rows of table: "player_kills" */ + update_player_kills_many: ((player_kills_mutation_response | null)[] | null) + /** update data of the table: "player_leaderboard_rank" */ + update_player_leaderboard_rank: (player_leaderboard_rank_mutation_response | null) + /** update multiples rows of table: "player_leaderboard_rank" */ + update_player_leaderboard_rank_many: ((player_leaderboard_rank_mutation_response | null)[] | null) + /** update data of the table: "player_match_map_stats" */ + update_player_match_map_stats: (player_match_map_stats_mutation_response | null) + /** update single row of the table: "player_match_map_stats" */ + update_player_match_map_stats_by_pk: (player_match_map_stats | null) + /** update multiples rows of table: "player_match_map_stats" */ + update_player_match_map_stats_many: ((player_match_map_stats_mutation_response | null)[] | null) + /** update data of the table: "player_objectives" */ + update_player_objectives: (player_objectives_mutation_response | null) + /** update single row of the table: "player_objectives" */ + update_player_objectives_by_pk: (player_objectives | null) + /** update multiples rows of table: "player_objectives" */ + update_player_objectives_many: ((player_objectives_mutation_response | null)[] | null) + /** update data of the table: "player_premier_rank_history" */ + update_player_premier_rank_history: (player_premier_rank_history_mutation_response | null) + /** update single row of the table: "player_premier_rank_history" */ + update_player_premier_rank_history_by_pk: (player_premier_rank_history | null) + /** update multiples rows of table: "player_premier_rank_history" */ + update_player_premier_rank_history_many: ((player_premier_rank_history_mutation_response | null)[] | null) + /** update data of the table: "player_sanctions" */ + update_player_sanctions: (player_sanctions_mutation_response | null) + /** update single row of the table: "player_sanctions" */ + update_player_sanctions_by_pk: (player_sanctions | null) + /** update multiples rows of table: "player_sanctions" */ + update_player_sanctions_many: ((player_sanctions_mutation_response | null)[] | null) + /** update data of the table: "player_season_stats" */ + update_player_season_stats: (player_season_stats_mutation_response | null) + /** update single row of the table: "player_season_stats" */ + update_player_season_stats_by_pk: (player_season_stats | null) + /** update multiples rows of table: "player_season_stats" */ + update_player_season_stats_many: ((player_season_stats_mutation_response | null)[] | null) + /** update data of the table: "player_stats" */ + update_player_stats: (player_stats_mutation_response | null) + /** update single row of the table: "player_stats" */ + update_player_stats_by_pk: (player_stats | null) + /** update multiples rows of table: "player_stats" */ + update_player_stats_many: ((player_stats_mutation_response | null)[] | null) + /** update data of the table: "player_steam_bot_friend" */ + update_player_steam_bot_friend: (player_steam_bot_friend_mutation_response | null) + /** update single row of the table: "player_steam_bot_friend" */ + update_player_steam_bot_friend_by_pk: (player_steam_bot_friend | null) + /** update multiples rows of table: "player_steam_bot_friend" */ + update_player_steam_bot_friend_many: ((player_steam_bot_friend_mutation_response | null)[] | null) + /** update data of the table: "player_steam_match_auth" */ + update_player_steam_match_auth: (player_steam_match_auth_mutation_response | null) + /** update single row of the table: "player_steam_match_auth" */ + update_player_steam_match_auth_by_pk: (player_steam_match_auth | null) + /** update multiples rows of table: "player_steam_match_auth" */ + update_player_steam_match_auth_many: ((player_steam_match_auth_mutation_response | null)[] | null) + /** update data of the table: "player_unused_utility" */ + update_player_unused_utility: (player_unused_utility_mutation_response | null) + /** update single row of the table: "player_unused_utility" */ + update_player_unused_utility_by_pk: (player_unused_utility | null) + /** update multiples rows of table: "player_unused_utility" */ + update_player_unused_utility_many: ((player_unused_utility_mutation_response | null)[] | null) + /** update data of the table: "player_utility" */ + update_player_utility: (player_utility_mutation_response | null) + /** update single row of the table: "player_utility" */ + update_player_utility_by_pk: (player_utility | null) + /** update multiples rows of table: "player_utility" */ + update_player_utility_many: ((player_utility_mutation_response | null)[] | null) + /** update data of the table: "players" */ + update_players: (players_mutation_response | null) + /** update single row of the table: "players" */ + update_players_by_pk: (players | null) + /** update multiples rows of table: "players" */ + update_players_many: ((players_mutation_response | null)[] | null) + /** update data of the table: "plugin_versions" */ + update_plugin_versions: (plugin_versions_mutation_response | null) + /** update single row of the table: "plugin_versions" */ + update_plugin_versions_by_pk: (plugin_versions | null) + /** update multiples rows of table: "plugin_versions" */ + update_plugin_versions_many: ((plugin_versions_mutation_response | null)[] | null) + /** update data of the table: "push_subscriptions" */ + update_push_subscriptions: (push_subscriptions_mutation_response | null) + /** update single row of the table: "push_subscriptions" */ + update_push_subscriptions_by_pk: (push_subscriptions | null) + /** update multiples rows of table: "push_subscriptions" */ + update_push_subscriptions_many: ((push_subscriptions_mutation_response | null)[] | null) + /** update data of the table: "v_role_permissions" */ + update_role_permissions: (role_permissions_mutation_response | null) + /** update multiples rows of table: "v_role_permissions" */ + update_role_permissions_many: ((role_permissions_mutation_response | null)[] | null) + /** update data of the table: "seasons" */ + update_seasons: (seasons_mutation_response | null) + /** update single row of the table: "seasons" */ + update_seasons_by_pk: (seasons | null) + /** update multiples rows of table: "seasons" */ + update_seasons_many: ((seasons_mutation_response | null)[] | null) + /** update data of the table: "server_regions" */ + update_server_regions: (server_regions_mutation_response | null) + /** update single row of the table: "server_regions" */ + update_server_regions_by_pk: (server_regions | null) + /** update multiples rows of table: "server_regions" */ + update_server_regions_many: ((server_regions_mutation_response | null)[] | null) + /** update data of the table: "servers" */ + update_servers: (servers_mutation_response | null) + /** update single row of the table: "servers" */ + update_servers_by_pk: (servers | null) + /** update multiples rows of table: "servers" */ + update_servers_many: ((servers_mutation_response | null)[] | null) + /** update data of the table: "settings" */ + update_settings: (settings_mutation_response | null) + /** update single row of the table: "settings" */ + update_settings_by_pk: (settings | null) + /** update multiples rows of table: "settings" */ + update_settings_many: ((settings_mutation_response | null)[] | null) + /** update data of the table: "steam_account_claims" */ + update_steam_account_claims: (steam_account_claims_mutation_response | null) + /** update single row of the table: "steam_account_claims" */ + update_steam_account_claims_by_pk: (steam_account_claims | null) + /** update multiples rows of table: "steam_account_claims" */ + update_steam_account_claims_many: ((steam_account_claims_mutation_response | null)[] | null) + /** update data of the table: "steam_accounts" */ + update_steam_accounts: (steam_accounts_mutation_response | null) + /** update single row of the table: "steam_accounts" */ + update_steam_accounts_by_pk: (steam_accounts | null) + /** update multiples rows of table: "steam_accounts" */ + update_steam_accounts_many: ((steam_accounts_mutation_response | null)[] | null) + /** update data of the table: "system_alerts" */ + update_system_alerts: (system_alerts_mutation_response | null) + /** update single row of the table: "system_alerts" */ + update_system_alerts_by_pk: (system_alerts | null) + /** update multiples rows of table: "system_alerts" */ + update_system_alerts_many: ((system_alerts_mutation_response | null)[] | null) + /** update data of the table: "team_invites" */ + update_team_invites: (team_invites_mutation_response | null) + /** update single row of the table: "team_invites" */ + update_team_invites_by_pk: (team_invites | null) + /** update multiples rows of table: "team_invites" */ + update_team_invites_many: ((team_invites_mutation_response | null)[] | null) + /** update data of the table: "team_roster" */ + update_team_roster: (team_roster_mutation_response | null) + /** update single row of the table: "team_roster" */ + update_team_roster_by_pk: (team_roster | null) + /** update multiples rows of table: "team_roster" */ + update_team_roster_many: ((team_roster_mutation_response | null)[] | null) + /** update data of the table: "team_scrim_alerts" */ + update_team_scrim_alerts: (team_scrim_alerts_mutation_response | null) + /** update single row of the table: "team_scrim_alerts" */ + update_team_scrim_alerts_by_pk: (team_scrim_alerts | null) + /** update multiples rows of table: "team_scrim_alerts" */ + update_team_scrim_alerts_many: ((team_scrim_alerts_mutation_response | null)[] | null) + /** update data of the table: "team_scrim_availability" */ + update_team_scrim_availability: (team_scrim_availability_mutation_response | null) + /** update single row of the table: "team_scrim_availability" */ + update_team_scrim_availability_by_pk: (team_scrim_availability | null) + /** update multiples rows of table: "team_scrim_availability" */ + update_team_scrim_availability_many: ((team_scrim_availability_mutation_response | null)[] | null) + /** update data of the table: "team_scrim_request_proposals" */ + update_team_scrim_request_proposals: (team_scrim_request_proposals_mutation_response | null) + /** update single row of the table: "team_scrim_request_proposals" */ + update_team_scrim_request_proposals_by_pk: (team_scrim_request_proposals | null) + /** update multiples rows of table: "team_scrim_request_proposals" */ + update_team_scrim_request_proposals_many: ((team_scrim_request_proposals_mutation_response | null)[] | null) + /** update data of the table: "team_scrim_requests" */ + update_team_scrim_requests: (team_scrim_requests_mutation_response | null) + /** update single row of the table: "team_scrim_requests" */ + update_team_scrim_requests_by_pk: (team_scrim_requests | null) + /** update multiples rows of table: "team_scrim_requests" */ + update_team_scrim_requests_many: ((team_scrim_requests_mutation_response | null)[] | null) + /** update data of the table: "team_scrim_settings" */ + update_team_scrim_settings: (team_scrim_settings_mutation_response | null) + /** update single row of the table: "team_scrim_settings" */ + update_team_scrim_settings_by_pk: (team_scrim_settings | null) + /** update multiples rows of table: "team_scrim_settings" */ + update_team_scrim_settings_many: ((team_scrim_settings_mutation_response | null)[] | null) + /** update data of the table: "team_suggestions" */ + update_team_suggestions: (team_suggestions_mutation_response | null) + /** update single row of the table: "team_suggestions" */ + update_team_suggestions_by_pk: (team_suggestions | null) + /** update multiples rows of table: "team_suggestions" */ + update_team_suggestions_many: ((team_suggestions_mutation_response | null)[] | null) + /** update data of the table: "teams" */ + update_teams: (teams_mutation_response | null) + /** update single row of the table: "teams" */ + update_teams_by_pk: (teams | null) + /** update multiples rows of table: "teams" */ + update_teams_many: ((teams_mutation_response | null)[] | null) + /** update data of the table: "tournament_awards" */ + update_tournament_awards: (tournament_awards_mutation_response | null) + /** update single row of the table: "tournament_awards" */ + update_tournament_awards_by_pk: (tournament_awards | null) + /** update multiples rows of table: "tournament_awards" */ + update_tournament_awards_many: ((tournament_awards_mutation_response | null)[] | null) + /** update data of the table: "tournament_brackets" */ + update_tournament_brackets: (tournament_brackets_mutation_response | null) + /** update single row of the table: "tournament_brackets" */ + update_tournament_brackets_by_pk: (tournament_brackets | null) + /** update multiples rows of table: "tournament_brackets" */ + update_tournament_brackets_many: ((tournament_brackets_mutation_response | null)[] | null) + /** update data of the table: "tournament_categories" */ + update_tournament_categories: (tournament_categories_mutation_response | null) + /** update single row of the table: "tournament_categories" */ + update_tournament_categories_by_pk: (tournament_categories | null) + /** update multiples rows of table: "tournament_categories" */ + update_tournament_categories_many: ((tournament_categories_mutation_response | null)[] | null) + /** update data of the table: "tournament_free_agents" */ + update_tournament_free_agents: (tournament_free_agents_mutation_response | null) + /** update single row of the table: "tournament_free_agents" */ + update_tournament_free_agents_by_pk: (tournament_free_agents | null) + /** update multiples rows of table: "tournament_free_agents" */ + update_tournament_free_agents_many: ((tournament_free_agents_mutation_response | null)[] | null) + /** update data of the table: "tournament_invite_code_uses" */ + update_tournament_invite_code_uses: (tournament_invite_code_uses_mutation_response | null) + /** update single row of the table: "tournament_invite_code_uses" */ + update_tournament_invite_code_uses_by_pk: (tournament_invite_code_uses | null) + /** update multiples rows of table: "tournament_invite_code_uses" */ + update_tournament_invite_code_uses_many: ((tournament_invite_code_uses_mutation_response | null)[] | null) + /** update data of the table: "tournament_invite_codes" */ + update_tournament_invite_codes: (tournament_invite_codes_mutation_response | null) + /** update single row of the table: "tournament_invite_codes" */ + update_tournament_invite_codes_by_pk: (tournament_invite_codes | null) + /** update multiples rows of table: "tournament_invite_codes" */ + update_tournament_invite_codes_many: ((tournament_invite_codes_mutation_response | null)[] | null) + /** update data of the table: "tournament_invites" */ + update_tournament_invites: (tournament_invites_mutation_response | null) + /** update single row of the table: "tournament_invites" */ + update_tournament_invites_by_pk: (tournament_invites | null) + /** update multiples rows of table: "tournament_invites" */ + update_tournament_invites_many: ((tournament_invites_mutation_response | null)[] | null) + /** update data of the table: "tournament_leaderboard_entries" */ + update_tournament_leaderboard_entries: (tournament_leaderboard_entries_mutation_response | null) + /** update multiples rows of table: "tournament_leaderboard_entries" */ + update_tournament_leaderboard_entries_many: ((tournament_leaderboard_entries_mutation_response | null)[] | null) + /** update data of the table: "tournament_no_shows" */ + update_tournament_no_shows: (tournament_no_shows_mutation_response | null) + /** update single row of the table: "tournament_no_shows" */ + update_tournament_no_shows_by_pk: (tournament_no_shows | null) + /** update multiples rows of table: "tournament_no_shows" */ + update_tournament_no_shows_many: ((tournament_no_shows_mutation_response | null)[] | null) + /** update data of the table: "tournament_organizer_teams" */ + update_tournament_organizer_teams: (tournament_organizer_teams_mutation_response | null) + /** update single row of the table: "tournament_organizer_teams" */ + update_tournament_organizer_teams_by_pk: (tournament_organizer_teams | null) + /** update multiples rows of table: "tournament_organizer_teams" */ + update_tournament_organizer_teams_many: ((tournament_organizer_teams_mutation_response | null)[] | null) + /** update data of the table: "tournament_organizers" */ + update_tournament_organizers: (tournament_organizers_mutation_response | null) + /** update single row of the table: "tournament_organizers" */ + update_tournament_organizers_by_pk: (tournament_organizers | null) + /** update multiples rows of table: "tournament_organizers" */ + update_tournament_organizers_many: ((tournament_organizers_mutation_response | null)[] | null) + /** update data of the table: "tournament_prizes" */ + update_tournament_prizes: (tournament_prizes_mutation_response | null) + /** update single row of the table: "tournament_prizes" */ + update_tournament_prizes_by_pk: (tournament_prizes | null) + /** update multiples rows of table: "tournament_prizes" */ + update_tournament_prizes_many: ((tournament_prizes_mutation_response | null)[] | null) + /** update data of the table: "tournament_registration_unlocks" */ + update_tournament_registration_unlocks: (tournament_registration_unlocks_mutation_response | null) + /** update multiples rows of table: "tournament_registration_unlocks" */ + update_tournament_registration_unlocks_many: ((tournament_registration_unlocks_mutation_response | null)[] | null) + /** update data of the table: "tournament_stage_windows" */ + update_tournament_stage_windows: (tournament_stage_windows_mutation_response | null) + /** update single row of the table: "tournament_stage_windows" */ + update_tournament_stage_windows_by_pk: (tournament_stage_windows | null) + /** update multiples rows of table: "tournament_stage_windows" */ + update_tournament_stage_windows_many: ((tournament_stage_windows_mutation_response | null)[] | null) + /** update data of the table: "tournament_stages" */ + update_tournament_stages: (tournament_stages_mutation_response | null) + /** update single row of the table: "tournament_stages" */ + update_tournament_stages_by_pk: (tournament_stages | null) + /** update multiples rows of table: "tournament_stages" */ + update_tournament_stages_many: ((tournament_stages_mutation_response | null)[] | null) + /** update data of the table: "tournament_team_invites" */ + update_tournament_team_invites: (tournament_team_invites_mutation_response | null) + /** update single row of the table: "tournament_team_invites" */ + update_tournament_team_invites_by_pk: (tournament_team_invites | null) + /** update multiples rows of table: "tournament_team_invites" */ + update_tournament_team_invites_many: ((tournament_team_invites_mutation_response | null)[] | null) + /** update data of the table: "tournament_team_roster" */ + update_tournament_team_roster: (tournament_team_roster_mutation_response | null) + /** update single row of the table: "tournament_team_roster" */ + update_tournament_team_roster_by_pk: (tournament_team_roster | null) + /** update multiples rows of table: "tournament_team_roster" */ + update_tournament_team_roster_many: ((tournament_team_roster_mutation_response | null)[] | null) + /** update data of the table: "tournament_teams" */ + update_tournament_teams: (tournament_teams_mutation_response | null) + /** update single row of the table: "tournament_teams" */ + update_tournament_teams_by_pk: (tournament_teams | null) + /** update multiples rows of table: "tournament_teams" */ + update_tournament_teams_many: ((tournament_teams_mutation_response | null)[] | null) + /** update data of the table: "tournaments" */ + update_tournaments: (tournaments_mutation_response | null) + /** update single row of the table: "tournaments" */ + update_tournaments_by_pk: (tournaments | null) + /** update multiples rows of table: "tournaments" */ + update_tournaments_many: ((tournaments_mutation_response | null)[] | null) + /** update data of the table: "utility_collection_items" */ + update_utility_collection_items: (utility_collection_items_mutation_response | null) + /** update single row of the table: "utility_collection_items" */ + update_utility_collection_items_by_pk: (utility_collection_items | null) + /** update multiples rows of table: "utility_collection_items" */ + update_utility_collection_items_many: ((utility_collection_items_mutation_response | null)[] | null) + /** update data of the table: "utility_collections" */ + update_utility_collections: (utility_collections_mutation_response | null) + /** update single row of the table: "utility_collections" */ + update_utility_collections_by_pk: (utility_collections | null) + /** update multiples rows of table: "utility_collections" */ + update_utility_collections_many: ((utility_collections_mutation_response | null)[] | null) + /** update data of the table: "utility_demo_mines" */ + update_utility_demo_mines: (utility_demo_mines_mutation_response | null) + /** update single row of the table: "utility_demo_mines" */ + update_utility_demo_mines_by_pk: (utility_demo_mines | null) + /** update multiples rows of table: "utility_demo_mines" */ + update_utility_demo_mines_many: ((utility_demo_mines_mutation_response | null)[] | null) + /** update data of the table: "utility_demo_throws" */ + update_utility_demo_throws: (utility_demo_throws_mutation_response | null) + /** update single row of the table: "utility_demo_throws" */ + update_utility_demo_throws_by_pk: (utility_demo_throws | null) + /** update multiples rows of table: "utility_demo_throws" */ + update_utility_demo_throws_many: ((utility_demo_throws_mutation_response | null)[] | null) + /** update data of the table: "utility_drift_results" */ + update_utility_drift_results: (utility_drift_results_mutation_response | null) + /** update single row of the table: "utility_drift_results" */ + update_utility_drift_results_by_pk: (utility_drift_results | null) + /** update multiples rows of table: "utility_drift_results" */ + update_utility_drift_results_many: ((utility_drift_results_mutation_response | null)[] | null) + /** update data of the table: "utility_drift_scans" */ + update_utility_drift_scans: (utility_drift_scans_mutation_response | null) + /** update single row of the table: "utility_drift_scans" */ + update_utility_drift_scans_by_pk: (utility_drift_scans | null) + /** update multiples rows of table: "utility_drift_scans" */ + update_utility_drift_scans_many: ((utility_drift_scans_mutation_response | null)[] | null) + /** update data of the table: "utility_lineup_favorites" */ + update_utility_lineup_favorites: (utility_lineup_favorites_mutation_response | null) + /** update single row of the table: "utility_lineup_favorites" */ + update_utility_lineup_favorites_by_pk: (utility_lineup_favorites | null) + /** update multiples rows of table: "utility_lineup_favorites" */ + update_utility_lineup_favorites_many: ((utility_lineup_favorites_mutation_response | null)[] | null) + /** update data of the table: "utility_lineup_progress" */ + update_utility_lineup_progress: (utility_lineup_progress_mutation_response | null) + /** update single row of the table: "utility_lineup_progress" */ + update_utility_lineup_progress_by_pk: (utility_lineup_progress | null) + /** update multiples rows of table: "utility_lineup_progress" */ + update_utility_lineup_progress_many: ((utility_lineup_progress_mutation_response | null)[] | null) + /** update data of the table: "utility_lineup_renders" */ + update_utility_lineup_renders: (utility_lineup_renders_mutation_response | null) + /** update single row of the table: "utility_lineup_renders" */ + update_utility_lineup_renders_by_pk: (utility_lineup_renders | null) + /** update multiples rows of table: "utility_lineup_renders" */ + update_utility_lineup_renders_many: ((utility_lineup_renders_mutation_response | null)[] | null) + /** update data of the table: "utility_lineup_repairs" */ + update_utility_lineup_repairs: (utility_lineup_repairs_mutation_response | null) + /** update single row of the table: "utility_lineup_repairs" */ + update_utility_lineup_repairs_by_pk: (utility_lineup_repairs | null) + /** update multiples rows of table: "utility_lineup_repairs" */ + update_utility_lineup_repairs_many: ((utility_lineup_repairs_mutation_response | null)[] | null) + /** update data of the table: "utility_lineup_votes" */ + update_utility_lineup_votes: (utility_lineup_votes_mutation_response | null) + /** update single row of the table: "utility_lineup_votes" */ + update_utility_lineup_votes_by_pk: (utility_lineup_votes | null) + /** update multiples rows of table: "utility_lineup_votes" */ + update_utility_lineup_votes_many: ((utility_lineup_votes_mutation_response | null)[] | null) + /** update data of the table: "utility_lineups" */ + update_utility_lineups: (utility_lineups_mutation_response | null) + /** update single row of the table: "utility_lineups" */ + update_utility_lineups_by_pk: (utility_lineups | null) + /** update multiples rows of table: "utility_lineups" */ + update_utility_lineups_many: ((utility_lineups_mutation_response | null)[] | null) + /** update data of the table: "utility_meta_lineups" */ + update_utility_meta_lineups: (utility_meta_lineups_mutation_response | null) + /** update single row of the table: "utility_meta_lineups" */ + update_utility_meta_lineups_by_pk: (utility_meta_lineups | null) + /** update multiples rows of table: "utility_meta_lineups" */ + update_utility_meta_lineups_many: ((utility_meta_lineups_mutation_response | null)[] | null) + /** update data of the table: "utility_playbook_steps" */ + update_utility_playbook_steps: (utility_playbook_steps_mutation_response | null) + /** update single row of the table: "utility_playbook_steps" */ + update_utility_playbook_steps_by_pk: (utility_playbook_steps | null) + /** update multiples rows of table: "utility_playbook_steps" */ + update_utility_playbook_steps_many: ((utility_playbook_steps_mutation_response | null)[] | null) + /** update data of the table: "utility_playbooks" */ + update_utility_playbooks: (utility_playbooks_mutation_response | null) + /** update single row of the table: "utility_playbooks" */ + update_utility_playbooks_by_pk: (utility_playbooks | null) + /** update multiples rows of table: "utility_playbooks" */ + update_utility_playbooks_many: ((utility_playbooks_mutation_response | null)[] | null) + /** update data of the table: "utility_practice_invites" */ + update_utility_practice_invites: (utility_practice_invites_mutation_response | null) + /** update single row of the table: "utility_practice_invites" */ + update_utility_practice_invites_by_pk: (utility_practice_invites | null) + /** update multiples rows of table: "utility_practice_invites" */ + update_utility_practice_invites_many: ((utility_practice_invites_mutation_response | null)[] | null) + /** update data of the table: "utility_practice_sessions" */ + update_utility_practice_sessions: (utility_practice_sessions_mutation_response | null) + /** update single row of the table: "utility_practice_sessions" */ + update_utility_practice_sessions_by_pk: (utility_practice_sessions | null) + /** update multiples rows of table: "utility_practice_sessions" */ + update_utility_practice_sessions_many: ((utility_practice_sessions_mutation_response | null)[] | null) + /** update data of the table: "v_match_captains" */ + update_v_match_captains: (v_match_captains_mutation_response | null) + /** update multiples rows of table: "v_match_captains" */ + update_v_match_captains_many: ((v_match_captains_mutation_response | null)[] | null) + /** update data of the table: "v_match_map_backup_rounds" */ + update_v_match_map_backup_rounds: (v_match_map_backup_rounds_mutation_response | null) + /** update multiples rows of table: "v_match_map_backup_rounds" */ + update_v_match_map_backup_rounds_many: ((v_match_map_backup_rounds_mutation_response | null)[] | null) + /** update data of the table: "v_player_match_map_hltv" */ + update_v_player_match_map_hltv: (v_player_match_map_hltv_mutation_response | null) + /** update multiples rows of table: "v_player_match_map_hltv" */ + update_v_player_match_map_hltv_many: ((v_player_match_map_hltv_mutation_response | null)[] | null) + /** update data of the table: "v_pool_maps" */ + update_v_pool_maps: (v_pool_maps_mutation_response | null) + /** update multiples rows of table: "v_pool_maps" */ + update_v_pool_maps_many: ((v_pool_maps_mutation_response | null)[] | null) + /** update data of the table: "v_team_stage_results" */ + update_v_team_stage_results: (v_team_stage_results_mutation_response | null) + /** update single row of the table: "v_team_stage_results" */ + update_v_team_stage_results_by_pk: (v_team_stage_results | null) + /** update multiples rows of table: "v_team_stage_results" */ + update_v_team_stage_results_many: ((v_team_stage_results_mutation_response | null)[] | null) + /** Validate CS2 gamedata signatures/offsets on a node (5stack.gg test instance only) */ + validateGamedata: (SuccessOutput | null) + /** Spawn a per-user game-streamer pod to play back a finished match's demo */ + watchDemo: (WatchDemoOutput | null) + /** Write content to file on game server */ + writeServerFile: (SuccessOutput | null) + __typename: 'mutation_root' +} + + +/** columns and relationships of "v_my_friends" */ +export interface my_friends { + avatar_url: (Scalars['String'] | null) + country: (Scalars['String'] | null) + created_at: (Scalars['timestamptz'] | null) + custom_avatar_url: (Scalars['String'] | null) + days_since_last_ban: (Scalars['Int'] | null) + discord_id: (Scalars['String'] | null) + elo: (Scalars['jsonb'] | null) + faceit_elo: (Scalars['Int'] | null) + faceit_nickname: (Scalars['String'] | null) + faceit_player_id: (Scalars['String'] | null) + faceit_skill_level: (Scalars['Int'] | null) + faceit_updated_at: (Scalars['timestamptz'] | null) + faceit_url: (Scalars['String'] | null) + friend_steam_id: (Scalars['bigint'] | null) + game_ban_count: (Scalars['Int'] | null) + invited_by_steam_id: (Scalars['bigint'] | null) + language: (Scalars['String'] | null) + last_presence_state: (Scalars['jsonb'] | null) + last_read_news_at: (Scalars['timestamptz'] | null) + last_sign_in_at: (Scalars['timestamptz'] | null) + name: (Scalars['String'] | null) + name_registered: (Scalars['Boolean'] | null) + notification_timezone: (Scalars['String'] | null) + /** An object relationship */ + player: (players | null) + premier_rank: (Scalars['Int'] | null) + premier_rank_updated_at: (Scalars['timestamptz'] | null) + presence_updated_at: (Scalars['timestamptz'] | null) + profile_url: (Scalars['String'] | null) + quiet_hours_end: (Scalars['time'] | null) + quiet_hours_start: (Scalars['time'] | null) + role: (Scalars['String'] | null) + roster_image_url: (Scalars['String'] | null) + show_match_ready_modal: (Scalars['Boolean'] | null) + status: (Scalars['String'] | null) + steam_bans_checked_at: (Scalars['timestamptz'] | null) + steam_id: (Scalars['bigint'] | null) + vac_ban_count: (Scalars['Int'] | null) + vac_banned: (Scalars['Boolean'] | null) + __typename: 'my_friends' +} + + +/** aggregated selection of "v_my_friends" */ +export interface my_friends_aggregate { + aggregate: (my_friends_aggregate_fields | null) + nodes: my_friends[] + __typename: 'my_friends_aggregate' +} + + +/** aggregate fields of "v_my_friends" */ +export interface my_friends_aggregate_fields { + avg: (my_friends_avg_fields | null) + count: Scalars['Int'] + max: (my_friends_max_fields | null) + min: (my_friends_min_fields | null) + stddev: (my_friends_stddev_fields | null) + stddev_pop: (my_friends_stddev_pop_fields | null) + stddev_samp: (my_friends_stddev_samp_fields | null) + sum: (my_friends_sum_fields | null) + var_pop: (my_friends_var_pop_fields | null) + var_samp: (my_friends_var_samp_fields | null) + variance: (my_friends_variance_fields | null) + __typename: 'my_friends_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface my_friends_avg_fields { + days_since_last_ban: (Scalars['Float'] | null) + faceit_elo: (Scalars['Float'] | null) + faceit_skill_level: (Scalars['Float'] | null) + friend_steam_id: (Scalars['Float'] | null) + game_ban_count: (Scalars['Float'] | null) + invited_by_steam_id: (Scalars['Float'] | null) + premier_rank: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + vac_ban_count: (Scalars['Float'] | null) + __typename: 'my_friends_avg_fields' +} + + +/** aggregate max on columns */ +export interface my_friends_max_fields { + avatar_url: (Scalars['String'] | null) + country: (Scalars['String'] | null) + created_at: (Scalars['timestamptz'] | null) + custom_avatar_url: (Scalars['String'] | null) + days_since_last_ban: (Scalars['Int'] | null) + discord_id: (Scalars['String'] | null) + faceit_elo: (Scalars['Int'] | null) + faceit_nickname: (Scalars['String'] | null) + faceit_player_id: (Scalars['String'] | null) + faceit_skill_level: (Scalars['Int'] | null) + faceit_updated_at: (Scalars['timestamptz'] | null) + faceit_url: (Scalars['String'] | null) + friend_steam_id: (Scalars['bigint'] | null) + game_ban_count: (Scalars['Int'] | null) + invited_by_steam_id: (Scalars['bigint'] | null) + language: (Scalars['String'] | null) + last_read_news_at: (Scalars['timestamptz'] | null) + last_sign_in_at: (Scalars['timestamptz'] | null) + name: (Scalars['String'] | null) + notification_timezone: (Scalars['String'] | null) + premier_rank: (Scalars['Int'] | null) + premier_rank_updated_at: (Scalars['timestamptz'] | null) + presence_updated_at: (Scalars['timestamptz'] | null) + profile_url: (Scalars['String'] | null) + role: (Scalars['String'] | null) + roster_image_url: (Scalars['String'] | null) + status: (Scalars['String'] | null) + steam_bans_checked_at: (Scalars['timestamptz'] | null) + steam_id: (Scalars['bigint'] | null) + vac_ban_count: (Scalars['Int'] | null) + __typename: 'my_friends_max_fields' +} + + +/** aggregate min on columns */ +export interface my_friends_min_fields { + avatar_url: (Scalars['String'] | null) + country: (Scalars['String'] | null) + created_at: (Scalars['timestamptz'] | null) + custom_avatar_url: (Scalars['String'] | null) + days_since_last_ban: (Scalars['Int'] | null) + discord_id: (Scalars['String'] | null) + faceit_elo: (Scalars['Int'] | null) + faceit_nickname: (Scalars['String'] | null) + faceit_player_id: (Scalars['String'] | null) + faceit_skill_level: (Scalars['Int'] | null) + faceit_updated_at: (Scalars['timestamptz'] | null) + faceit_url: (Scalars['String'] | null) + friend_steam_id: (Scalars['bigint'] | null) + game_ban_count: (Scalars['Int'] | null) + invited_by_steam_id: (Scalars['bigint'] | null) + language: (Scalars['String'] | null) + last_read_news_at: (Scalars['timestamptz'] | null) + last_sign_in_at: (Scalars['timestamptz'] | null) + name: (Scalars['String'] | null) + notification_timezone: (Scalars['String'] | null) + premier_rank: (Scalars['Int'] | null) + premier_rank_updated_at: (Scalars['timestamptz'] | null) + presence_updated_at: (Scalars['timestamptz'] | null) + profile_url: (Scalars['String'] | null) + role: (Scalars['String'] | null) + roster_image_url: (Scalars['String'] | null) + status: (Scalars['String'] | null) + steam_bans_checked_at: (Scalars['timestamptz'] | null) + steam_id: (Scalars['bigint'] | null) + vac_ban_count: (Scalars['Int'] | null) + __typename: 'my_friends_min_fields' +} + + +/** response of any mutation on the table "v_my_friends" */ +export interface my_friends_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: my_friends[] + __typename: 'my_friends_mutation_response' +} + + +/** select columns of table "v_my_friends" */ +export type my_friends_select_column = 'avatar_url' | 'country' | 'created_at' | 'custom_avatar_url' | 'days_since_last_ban' | 'discord_id' | 'elo' | 'faceit_elo' | 'faceit_nickname' | 'faceit_player_id' | 'faceit_skill_level' | 'faceit_updated_at' | 'faceit_url' | 'friend_steam_id' | 'game_ban_count' | 'invited_by_steam_id' | 'language' | 'last_presence_state' | 'last_read_news_at' | 'last_sign_in_at' | 'name' | 'name_registered' | 'notification_timezone' | 'premier_rank' | 'premier_rank_updated_at' | 'presence_updated_at' | 'profile_url' | 'quiet_hours_end' | 'quiet_hours_start' | 'role' | 'roster_image_url' | 'show_match_ready_modal' | 'status' | 'steam_bans_checked_at' | 'steam_id' | 'vac_ban_count' | 'vac_banned' + + +/** select "my_friends_aggregate_bool_exp_bool_and_arguments_columns" columns of table "v_my_friends" */ +export type my_friends_select_column_my_friends_aggregate_bool_exp_bool_and_arguments_columns = 'name_registered' | 'show_match_ready_modal' | 'vac_banned' + + +/** select "my_friends_aggregate_bool_exp_bool_or_arguments_columns" columns of table "v_my_friends" */ +export type my_friends_select_column_my_friends_aggregate_bool_exp_bool_or_arguments_columns = 'name_registered' | 'show_match_ready_modal' | 'vac_banned' + + +/** aggregate stddev on columns */ +export interface my_friends_stddev_fields { + days_since_last_ban: (Scalars['Float'] | null) + faceit_elo: (Scalars['Float'] | null) + faceit_skill_level: (Scalars['Float'] | null) + friend_steam_id: (Scalars['Float'] | null) + game_ban_count: (Scalars['Float'] | null) + invited_by_steam_id: (Scalars['Float'] | null) + premier_rank: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + vac_ban_count: (Scalars['Float'] | null) + __typename: 'my_friends_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface my_friends_stddev_pop_fields { + days_since_last_ban: (Scalars['Float'] | null) + faceit_elo: (Scalars['Float'] | null) + faceit_skill_level: (Scalars['Float'] | null) + friend_steam_id: (Scalars['Float'] | null) + game_ban_count: (Scalars['Float'] | null) + invited_by_steam_id: (Scalars['Float'] | null) + premier_rank: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + vac_ban_count: (Scalars['Float'] | null) + __typename: 'my_friends_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface my_friends_stddev_samp_fields { + days_since_last_ban: (Scalars['Float'] | null) + faceit_elo: (Scalars['Float'] | null) + faceit_skill_level: (Scalars['Float'] | null) + friend_steam_id: (Scalars['Float'] | null) + game_ban_count: (Scalars['Float'] | null) + invited_by_steam_id: (Scalars['Float'] | null) + premier_rank: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + vac_ban_count: (Scalars['Float'] | null) + __typename: 'my_friends_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface my_friends_sum_fields { + days_since_last_ban: (Scalars['Int'] | null) + faceit_elo: (Scalars['Int'] | null) + faceit_skill_level: (Scalars['Int'] | null) + friend_steam_id: (Scalars['bigint'] | null) + game_ban_count: (Scalars['Int'] | null) + invited_by_steam_id: (Scalars['bigint'] | null) + premier_rank: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + vac_ban_count: (Scalars['Int'] | null) + __typename: 'my_friends_sum_fields' +} + + +/** aggregate var_pop on columns */ +export interface my_friends_var_pop_fields { + days_since_last_ban: (Scalars['Float'] | null) + faceit_elo: (Scalars['Float'] | null) + faceit_skill_level: (Scalars['Float'] | null) + friend_steam_id: (Scalars['Float'] | null) + game_ban_count: (Scalars['Float'] | null) + invited_by_steam_id: (Scalars['Float'] | null) + premier_rank: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + vac_ban_count: (Scalars['Float'] | null) + __typename: 'my_friends_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface my_friends_var_samp_fields { + days_since_last_ban: (Scalars['Float'] | null) + faceit_elo: (Scalars['Float'] | null) + faceit_skill_level: (Scalars['Float'] | null) + friend_steam_id: (Scalars['Float'] | null) + game_ban_count: (Scalars['Float'] | null) + invited_by_steam_id: (Scalars['Float'] | null) + premier_rank: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + vac_ban_count: (Scalars['Float'] | null) + __typename: 'my_friends_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface my_friends_variance_fields { + days_since_last_ban: (Scalars['Float'] | null) + faceit_elo: (Scalars['Float'] | null) + faceit_skill_level: (Scalars['Float'] | null) + friend_steam_id: (Scalars['Float'] | null) + game_ban_count: (Scalars['Float'] | null) + invited_by_steam_id: (Scalars['Float'] | null) + premier_rank: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + vac_ban_count: (Scalars['Float'] | null) + __typename: 'my_friends_variance_fields' +} + + +/** columns and relationships of "news_articles" */ +export interface news_articles { + /** An object relationship */ + author: (players | null) + author_steam_id: (Scalars['bigint'] | null) + content_markdown: Scalars['String'] + cover_image_url: (Scalars['String'] | null) + created_at: Scalars['timestamptz'] + id: Scalars['uuid'] + published_at: (Scalars['timestamptz'] | null) + slug: Scalars['String'] + status: Scalars['String'] + teaser: (Scalars['String'] | null) + title: Scalars['String'] + updated_at: Scalars['timestamptz'] + view_count: Scalars['bigint'] + __typename: 'news_articles' +} + + +/** aggregated selection of "news_articles" */ +export interface news_articles_aggregate { + aggregate: (news_articles_aggregate_fields | null) + nodes: news_articles[] + __typename: 'news_articles_aggregate' +} + + +/** aggregate fields of "news_articles" */ +export interface news_articles_aggregate_fields { + avg: (news_articles_avg_fields | null) + count: Scalars['Int'] + max: (news_articles_max_fields | null) + min: (news_articles_min_fields | null) + stddev: (news_articles_stddev_fields | null) + stddev_pop: (news_articles_stddev_pop_fields | null) + stddev_samp: (news_articles_stddev_samp_fields | null) + sum: (news_articles_sum_fields | null) + var_pop: (news_articles_var_pop_fields | null) + var_samp: (news_articles_var_samp_fields | null) + variance: (news_articles_variance_fields | null) + __typename: 'news_articles_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface news_articles_avg_fields { + author_steam_id: (Scalars['Float'] | null) + view_count: (Scalars['Float'] | null) + __typename: 'news_articles_avg_fields' +} + + +/** unique or primary key constraints on table "news_articles" */ +export type news_articles_constraint = 'news_articles_pkey' | 'news_articles_slug_key' + + +/** aggregate max on columns */ +export interface news_articles_max_fields { + author_steam_id: (Scalars['bigint'] | null) + content_markdown: (Scalars['String'] | null) + cover_image_url: (Scalars['String'] | null) + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + published_at: (Scalars['timestamptz'] | null) + slug: (Scalars['String'] | null) + status: (Scalars['String'] | null) + teaser: (Scalars['String'] | null) + title: (Scalars['String'] | null) + updated_at: (Scalars['timestamptz'] | null) + view_count: (Scalars['bigint'] | null) + __typename: 'news_articles_max_fields' +} + + +/** aggregate min on columns */ +export interface news_articles_min_fields { + author_steam_id: (Scalars['bigint'] | null) + content_markdown: (Scalars['String'] | null) + cover_image_url: (Scalars['String'] | null) + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + published_at: (Scalars['timestamptz'] | null) + slug: (Scalars['String'] | null) + status: (Scalars['String'] | null) + teaser: (Scalars['String'] | null) + title: (Scalars['String'] | null) + updated_at: (Scalars['timestamptz'] | null) + view_count: (Scalars['bigint'] | null) + __typename: 'news_articles_min_fields' +} + + +/** response of any mutation on the table "news_articles" */ +export interface news_articles_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: news_articles[] + __typename: 'news_articles_mutation_response' +} + + +/** select columns of table "news_articles" */ +export type news_articles_select_column = 'author_steam_id' | 'content_markdown' | 'cover_image_url' | 'created_at' | 'id' | 'published_at' | 'slug' | 'status' | 'teaser' | 'title' | 'updated_at' | 'view_count' + + +/** aggregate stddev on columns */ +export interface news_articles_stddev_fields { + author_steam_id: (Scalars['Float'] | null) + view_count: (Scalars['Float'] | null) + __typename: 'news_articles_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface news_articles_stddev_pop_fields { + author_steam_id: (Scalars['Float'] | null) + view_count: (Scalars['Float'] | null) + __typename: 'news_articles_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface news_articles_stddev_samp_fields { + author_steam_id: (Scalars['Float'] | null) + view_count: (Scalars['Float'] | null) + __typename: 'news_articles_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface news_articles_sum_fields { + author_steam_id: (Scalars['bigint'] | null) + view_count: (Scalars['bigint'] | null) + __typename: 'news_articles_sum_fields' +} + + +/** update columns of table "news_articles" */ +export type news_articles_update_column = 'author_steam_id' | 'content_markdown' | 'cover_image_url' | 'created_at' | 'id' | 'published_at' | 'slug' | 'status' | 'teaser' | 'title' | 'updated_at' | 'view_count' + + +/** aggregate var_pop on columns */ +export interface news_articles_var_pop_fields { + author_steam_id: (Scalars['Float'] | null) + view_count: (Scalars['Float'] | null) + __typename: 'news_articles_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface news_articles_var_samp_fields { + author_steam_id: (Scalars['Float'] | null) + view_count: (Scalars['Float'] | null) + __typename: 'news_articles_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface news_articles_variance_fields { + author_steam_id: (Scalars['Float'] | null) + view_count: (Scalars['Float'] | null) + __typename: 'news_articles_variance_fields' +} + + +/** columns and relationships of "notification_preferences" */ +export interface notification_preferences { + channel: Scalars['String'] + enabled: Scalars['Boolean'] + key: Scalars['String'] + steam_id: Scalars['bigint'] + updated_at: Scalars['timestamptz'] + __typename: 'notification_preferences' +} + + +/** aggregated selection of "notification_preferences" */ +export interface notification_preferences_aggregate { + aggregate: (notification_preferences_aggregate_fields | null) + nodes: notification_preferences[] + __typename: 'notification_preferences_aggregate' +} + + +/** aggregate fields of "notification_preferences" */ +export interface notification_preferences_aggregate_fields { + avg: (notification_preferences_avg_fields | null) + count: Scalars['Int'] + max: (notification_preferences_max_fields | null) + min: (notification_preferences_min_fields | null) + stddev: (notification_preferences_stddev_fields | null) + stddev_pop: (notification_preferences_stddev_pop_fields | null) + stddev_samp: (notification_preferences_stddev_samp_fields | null) + sum: (notification_preferences_sum_fields | null) + var_pop: (notification_preferences_var_pop_fields | null) + var_samp: (notification_preferences_var_samp_fields | null) + variance: (notification_preferences_variance_fields | null) + __typename: 'notification_preferences_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface notification_preferences_avg_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'notification_preferences_avg_fields' +} + + +/** unique or primary key constraints on table "notification_preferences" */ +export type notification_preferences_constraint = 'notification_preferences_pkey' + + +/** aggregate max on columns */ +export interface notification_preferences_max_fields { + channel: (Scalars['String'] | null) + key: (Scalars['String'] | null) + steam_id: (Scalars['bigint'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'notification_preferences_max_fields' +} + + +/** aggregate min on columns */ +export interface notification_preferences_min_fields { + channel: (Scalars['String'] | null) + key: (Scalars['String'] | null) + steam_id: (Scalars['bigint'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'notification_preferences_min_fields' +} + + +/** response of any mutation on the table "notification_preferences" */ +export interface notification_preferences_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: notification_preferences[] + __typename: 'notification_preferences_mutation_response' +} + + +/** select columns of table "notification_preferences" */ +export type notification_preferences_select_column = 'channel' | 'enabled' | 'key' | 'steam_id' | 'updated_at' + + +/** aggregate stddev on columns */ +export interface notification_preferences_stddev_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'notification_preferences_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface notification_preferences_stddev_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'notification_preferences_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface notification_preferences_stddev_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'notification_preferences_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface notification_preferences_sum_fields { + steam_id: (Scalars['bigint'] | null) + __typename: 'notification_preferences_sum_fields' +} + + +/** update columns of table "notification_preferences" */ +export type notification_preferences_update_column = 'channel' | 'enabled' | 'key' | 'steam_id' | 'updated_at' + + +/** aggregate var_pop on columns */ +export interface notification_preferences_var_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'notification_preferences_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface notification_preferences_var_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'notification_preferences_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface notification_preferences_variance_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'notification_preferences_variance_fields' +} + + +/** columns and relationships of "notifications" */ +export interface notifications { + actions: (Scalars['jsonb'] | null) + created_at: Scalars['timestamptz'] + data: (Scalars['jsonb'] | null) + deletable: Scalars['Boolean'] + deleted_at: (Scalars['timestamptz'] | null) + entity_id: (Scalars['String'] | null) + id: Scalars['uuid'] + in_app: Scalars['Boolean'] + is_read: Scalars['Boolean'] + message: Scalars['String'] + /** An object relationship */ + player: (players | null) + role: e_player_roles_enum + steam_id: (Scalars['bigint'] | null) + title: Scalars['String'] + type: e_notification_types_enum + __typename: 'notifications' +} + + +/** aggregated selection of "notifications" */ +export interface notifications_aggregate { + aggregate: (notifications_aggregate_fields | null) + nodes: notifications[] + __typename: 'notifications_aggregate' +} + + +/** aggregate fields of "notifications" */ +export interface notifications_aggregate_fields { + avg: (notifications_avg_fields | null) + count: Scalars['Int'] + max: (notifications_max_fields | null) + min: (notifications_min_fields | null) + stddev: (notifications_stddev_fields | null) + stddev_pop: (notifications_stddev_pop_fields | null) + stddev_samp: (notifications_stddev_samp_fields | null) + sum: (notifications_sum_fields | null) + var_pop: (notifications_var_pop_fields | null) + var_samp: (notifications_var_samp_fields | null) + variance: (notifications_variance_fields | null) + __typename: 'notifications_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface notifications_avg_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'notifications_avg_fields' +} + + +/** unique or primary key constraints on table "notifications" */ +export type notifications_constraint = 'notifications_pkey' + + +/** aggregate max on columns */ +export interface notifications_max_fields { + created_at: (Scalars['timestamptz'] | null) + deleted_at: (Scalars['timestamptz'] | null) + entity_id: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + message: (Scalars['String'] | null) + steam_id: (Scalars['bigint'] | null) + title: (Scalars['String'] | null) + __typename: 'notifications_max_fields' +} + + +/** aggregate min on columns */ +export interface notifications_min_fields { + created_at: (Scalars['timestamptz'] | null) + deleted_at: (Scalars['timestamptz'] | null) + entity_id: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + message: (Scalars['String'] | null) + steam_id: (Scalars['bigint'] | null) + title: (Scalars['String'] | null) + __typename: 'notifications_min_fields' +} + + +/** response of any mutation on the table "notifications" */ +export interface notifications_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: notifications[] + __typename: 'notifications_mutation_response' +} + + +/** select columns of table "notifications" */ +export type notifications_select_column = 'actions' | 'created_at' | 'data' | 'deletable' | 'deleted_at' | 'entity_id' | 'id' | 'in_app' | 'is_read' | 'message' | 'role' | 'steam_id' | 'title' | 'type' + + +/** select "notifications_aggregate_bool_exp_bool_and_arguments_columns" columns of table "notifications" */ +export type notifications_select_column_notifications_aggregate_bool_exp_bool_and_arguments_columns = 'deletable' | 'in_app' | 'is_read' + + +/** select "notifications_aggregate_bool_exp_bool_or_arguments_columns" columns of table "notifications" */ +export type notifications_select_column_notifications_aggregate_bool_exp_bool_or_arguments_columns = 'deletable' | 'in_app' | 'is_read' + + +/** aggregate stddev on columns */ +export interface notifications_stddev_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'notifications_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface notifications_stddev_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'notifications_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface notifications_stddev_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'notifications_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface notifications_sum_fields { + steam_id: (Scalars['bigint'] | null) + __typename: 'notifications_sum_fields' +} + + +/** update columns of table "notifications" */ +export type notifications_update_column = 'actions' | 'created_at' | 'data' | 'deletable' | 'deleted_at' | 'entity_id' | 'id' | 'in_app' | 'is_read' | 'message' | 'role' | 'steam_id' | 'title' | 'type' + + +/** aggregate var_pop on columns */ +export interface notifications_var_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'notifications_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface notifications_var_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'notifications_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface notifications_variance_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'notifications_variance_fields' +} + + +/** column ordering options */ +export type order_by = 'asc' | 'asc_nulls_first' | 'asc_nulls_last' | 'desc' | 'desc_nulls_first' | 'desc_nulls_last' + + +/** columns and relationships of "pending_match_import_players" */ +export interface pending_match_import_players { + created_at: Scalars['timestamptz'] + /** An object relationship */ + pending_match_import: pending_match_imports + /** An object relationship */ + player: players + steam_id: Scalars['bigint'] + valve_match_id: Scalars['numeric'] + __typename: 'pending_match_import_players' +} + + +/** aggregated selection of "pending_match_import_players" */ +export interface pending_match_import_players_aggregate { + aggregate: (pending_match_import_players_aggregate_fields | null) + nodes: pending_match_import_players[] + __typename: 'pending_match_import_players_aggregate' +} + + +/** aggregate fields of "pending_match_import_players" */ +export interface pending_match_import_players_aggregate_fields { + avg: (pending_match_import_players_avg_fields | null) + count: Scalars['Int'] + max: (pending_match_import_players_max_fields | null) + min: (pending_match_import_players_min_fields | null) + stddev: (pending_match_import_players_stddev_fields | null) + stddev_pop: (pending_match_import_players_stddev_pop_fields | null) + stddev_samp: (pending_match_import_players_stddev_samp_fields | null) + sum: (pending_match_import_players_sum_fields | null) + var_pop: (pending_match_import_players_var_pop_fields | null) + var_samp: (pending_match_import_players_var_samp_fields | null) + variance: (pending_match_import_players_variance_fields | null) + __typename: 'pending_match_import_players_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface pending_match_import_players_avg_fields { + steam_id: (Scalars['Float'] | null) + valve_match_id: (Scalars['Float'] | null) + __typename: 'pending_match_import_players_avg_fields' +} + + +/** unique or primary key constraints on table "pending_match_import_players" */ +export type pending_match_import_players_constraint = 'pending_match_import_players_pkey' + + +/** aggregate max on columns */ +export interface pending_match_import_players_max_fields { + created_at: (Scalars['timestamptz'] | null) + steam_id: (Scalars['bigint'] | null) + valve_match_id: (Scalars['numeric'] | null) + __typename: 'pending_match_import_players_max_fields' +} + + +/** aggregate min on columns */ +export interface pending_match_import_players_min_fields { + created_at: (Scalars['timestamptz'] | null) + steam_id: (Scalars['bigint'] | null) + valve_match_id: (Scalars['numeric'] | null) + __typename: 'pending_match_import_players_min_fields' +} + + +/** response of any mutation on the table "pending_match_import_players" */ +export interface pending_match_import_players_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: pending_match_import_players[] + __typename: 'pending_match_import_players_mutation_response' +} + + +/** select columns of table "pending_match_import_players" */ +export type pending_match_import_players_select_column = 'created_at' | 'steam_id' | 'valve_match_id' + + +/** aggregate stddev on columns */ +export interface pending_match_import_players_stddev_fields { + steam_id: (Scalars['Float'] | null) + valve_match_id: (Scalars['Float'] | null) + __typename: 'pending_match_import_players_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface pending_match_import_players_stddev_pop_fields { + steam_id: (Scalars['Float'] | null) + valve_match_id: (Scalars['Float'] | null) + __typename: 'pending_match_import_players_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface pending_match_import_players_stddev_samp_fields { + steam_id: (Scalars['Float'] | null) + valve_match_id: (Scalars['Float'] | null) + __typename: 'pending_match_import_players_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface pending_match_import_players_sum_fields { + steam_id: (Scalars['bigint'] | null) + valve_match_id: (Scalars['numeric'] | null) + __typename: 'pending_match_import_players_sum_fields' +} + + +/** update columns of table "pending_match_import_players" */ +export type pending_match_import_players_update_column = 'created_at' | 'steam_id' | 'valve_match_id' + + +/** aggregate var_pop on columns */ +export interface pending_match_import_players_var_pop_fields { + steam_id: (Scalars['Float'] | null) + valve_match_id: (Scalars['Float'] | null) + __typename: 'pending_match_import_players_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface pending_match_import_players_var_samp_fields { + steam_id: (Scalars['Float'] | null) + valve_match_id: (Scalars['Float'] | null) + __typename: 'pending_match_import_players_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface pending_match_import_players_variance_fields { + steam_id: (Scalars['Float'] | null) + valve_match_id: (Scalars['Float'] | null) + __typename: 'pending_match_import_players_variance_fields' +} + + +/** columns and relationships of "pending_match_imports" */ +export interface pending_match_imports { + created_at: Scalars['timestamptz'] + demo_url: (Scalars['String'] | null) + error: (Scalars['String'] | null) + map_name: (Scalars['String'] | null) + match_start_time: (Scalars['timestamptz'] | null) + /** An array relationship */ + players: pending_match_import_players[] + /** An aggregate relationship */ + players_aggregate: pending_match_import_players_aggregate + share_code: Scalars['String'] + status: Scalars['String'] + updated_at: Scalars['timestamptz'] + valve_match_id: Scalars['numeric'] + __typename: 'pending_match_imports' +} + + +/** aggregated selection of "pending_match_imports" */ +export interface pending_match_imports_aggregate { + aggregate: (pending_match_imports_aggregate_fields | null) + nodes: pending_match_imports[] + __typename: 'pending_match_imports_aggregate' +} + + +/** aggregate fields of "pending_match_imports" */ +export interface pending_match_imports_aggregate_fields { + avg: (pending_match_imports_avg_fields | null) + count: Scalars['Int'] + max: (pending_match_imports_max_fields | null) + min: (pending_match_imports_min_fields | null) + stddev: (pending_match_imports_stddev_fields | null) + stddev_pop: (pending_match_imports_stddev_pop_fields | null) + stddev_samp: (pending_match_imports_stddev_samp_fields | null) + sum: (pending_match_imports_sum_fields | null) + var_pop: (pending_match_imports_var_pop_fields | null) + var_samp: (pending_match_imports_var_samp_fields | null) + variance: (pending_match_imports_variance_fields | null) + __typename: 'pending_match_imports_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface pending_match_imports_avg_fields { + valve_match_id: (Scalars['Float'] | null) + __typename: 'pending_match_imports_avg_fields' +} + + +/** unique or primary key constraints on table "pending_match_imports" */ +export type pending_match_imports_constraint = 'pending_match_imports_pkey' + + +/** aggregate max on columns */ +export interface pending_match_imports_max_fields { + created_at: (Scalars['timestamptz'] | null) + demo_url: (Scalars['String'] | null) + error: (Scalars['String'] | null) + map_name: (Scalars['String'] | null) + match_start_time: (Scalars['timestamptz'] | null) + share_code: (Scalars['String'] | null) + status: (Scalars['String'] | null) + updated_at: (Scalars['timestamptz'] | null) + valve_match_id: (Scalars['numeric'] | null) + __typename: 'pending_match_imports_max_fields' +} + + +/** aggregate min on columns */ +export interface pending_match_imports_min_fields { + created_at: (Scalars['timestamptz'] | null) + demo_url: (Scalars['String'] | null) + error: (Scalars['String'] | null) + map_name: (Scalars['String'] | null) + match_start_time: (Scalars['timestamptz'] | null) + share_code: (Scalars['String'] | null) + status: (Scalars['String'] | null) + updated_at: (Scalars['timestamptz'] | null) + valve_match_id: (Scalars['numeric'] | null) + __typename: 'pending_match_imports_min_fields' +} + + +/** response of any mutation on the table "pending_match_imports" */ +export interface pending_match_imports_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: pending_match_imports[] + __typename: 'pending_match_imports_mutation_response' +} + + +/** select columns of table "pending_match_imports" */ +export type pending_match_imports_select_column = 'created_at' | 'demo_url' | 'error' | 'map_name' | 'match_start_time' | 'share_code' | 'status' | 'updated_at' | 'valve_match_id' + + +/** aggregate stddev on columns */ +export interface pending_match_imports_stddev_fields { + valve_match_id: (Scalars['Float'] | null) + __typename: 'pending_match_imports_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface pending_match_imports_stddev_pop_fields { + valve_match_id: (Scalars['Float'] | null) + __typename: 'pending_match_imports_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface pending_match_imports_stddev_samp_fields { + valve_match_id: (Scalars['Float'] | null) + __typename: 'pending_match_imports_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface pending_match_imports_sum_fields { + valve_match_id: (Scalars['numeric'] | null) + __typename: 'pending_match_imports_sum_fields' +} + + +/** update columns of table "pending_match_imports" */ +export type pending_match_imports_update_column = 'created_at' | 'demo_url' | 'error' | 'map_name' | 'match_start_time' | 'share_code' | 'status' | 'updated_at' | 'valve_match_id' + + +/** aggregate var_pop on columns */ +export interface pending_match_imports_var_pop_fields { + valve_match_id: (Scalars['Float'] | null) + __typename: 'pending_match_imports_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface pending_match_imports_var_samp_fields { + valve_match_id: (Scalars['Float'] | null) + __typename: 'pending_match_imports_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface pending_match_imports_variance_fields { + valve_match_id: (Scalars['Float'] | null) + __typename: 'pending_match_imports_variance_fields' +} + + +/** columns and relationships of "player_aim_stats_demo" */ +export interface player_aim_stats_demo { + /** An object relationship */ + attacker: (players | null) + attacker_steam_id: Scalars['bigint'] + counter_strafe_eligible_shots: Scalars['Int'] + counter_strafed_shots: Scalars['Int'] + crosshair_angle_count: Scalars['Int'] + crosshair_angle_sum_deg: Scalars['numeric'] + first_bullet_hits: Scalars['Int'] + first_bullet_shots: Scalars['Int'] + headshot_hits: Scalars['Int'] + hits: Scalars['Int'] + hits_at_spotted: Scalars['Int'] + /** An object relationship */ + match: matches + match_id: Scalars['uuid'] + /** An object relationship */ + match_map: match_maps + match_map_id: Scalars['uuid'] + non_awp_hits: Scalars['Int'] + on_target_frames: Scalars['Int'] + shots_at_spotted: Scalars['Int'] + spray_hits: Scalars['Int'] + spray_shots: Scalars['Int'] + time_to_damage_count: Scalars['Int'] + time_to_damage_sum_s: Scalars['numeric'] + total_engagement_frames: Scalars['Int'] + __typename: 'player_aim_stats_demo' +} + + +/** aggregated selection of "player_aim_stats_demo" */ +export interface player_aim_stats_demo_aggregate { + aggregate: (player_aim_stats_demo_aggregate_fields | null) + nodes: player_aim_stats_demo[] + __typename: 'player_aim_stats_demo_aggregate' +} + + +/** aggregate fields of "player_aim_stats_demo" */ +export interface player_aim_stats_demo_aggregate_fields { + avg: (player_aim_stats_demo_avg_fields | null) + count: Scalars['Int'] + max: (player_aim_stats_demo_max_fields | null) + min: (player_aim_stats_demo_min_fields | null) + stddev: (player_aim_stats_demo_stddev_fields | null) + stddev_pop: (player_aim_stats_demo_stddev_pop_fields | null) + stddev_samp: (player_aim_stats_demo_stddev_samp_fields | null) + sum: (player_aim_stats_demo_sum_fields | null) + var_pop: (player_aim_stats_demo_var_pop_fields | null) + var_samp: (player_aim_stats_demo_var_samp_fields | null) + variance: (player_aim_stats_demo_variance_fields | null) + __typename: 'player_aim_stats_demo_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface player_aim_stats_demo_avg_fields { + attacker_steam_id: (Scalars['Float'] | null) + counter_strafe_eligible_shots: (Scalars['Float'] | null) + counter_strafed_shots: (Scalars['Float'] | null) + crosshair_angle_count: (Scalars['Float'] | null) + crosshair_angle_sum_deg: (Scalars['Float'] | null) + first_bullet_hits: (Scalars['Float'] | null) + first_bullet_shots: (Scalars['Float'] | null) + headshot_hits: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + hits_at_spotted: (Scalars['Float'] | null) + non_awp_hits: (Scalars['Float'] | null) + on_target_frames: (Scalars['Float'] | null) + shots_at_spotted: (Scalars['Float'] | null) + spray_hits: (Scalars['Float'] | null) + spray_shots: (Scalars['Float'] | null) + time_to_damage_count: (Scalars['Float'] | null) + time_to_damage_sum_s: (Scalars['Float'] | null) + total_engagement_frames: (Scalars['Float'] | null) + __typename: 'player_aim_stats_demo_avg_fields' +} + + +/** unique or primary key constraints on table "player_aim_stats_demo" */ +export type player_aim_stats_demo_constraint = 'player_aim_stats_demo_pkey' + + +/** aggregate max on columns */ +export interface player_aim_stats_demo_max_fields { + attacker_steam_id: (Scalars['bigint'] | null) + counter_strafe_eligible_shots: (Scalars['Int'] | null) + counter_strafed_shots: (Scalars['Int'] | null) + crosshair_angle_count: (Scalars['Int'] | null) + crosshair_angle_sum_deg: (Scalars['numeric'] | null) + first_bullet_hits: (Scalars['Int'] | null) + first_bullet_shots: (Scalars['Int'] | null) + headshot_hits: (Scalars['Int'] | null) + hits: (Scalars['Int'] | null) + hits_at_spotted: (Scalars['Int'] | null) + match_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + non_awp_hits: (Scalars['Int'] | null) + on_target_frames: (Scalars['Int'] | null) + shots_at_spotted: (Scalars['Int'] | null) + spray_hits: (Scalars['Int'] | null) + spray_shots: (Scalars['Int'] | null) + time_to_damage_count: (Scalars['Int'] | null) + time_to_damage_sum_s: (Scalars['numeric'] | null) + total_engagement_frames: (Scalars['Int'] | null) + __typename: 'player_aim_stats_demo_max_fields' +} + + +/** aggregate min on columns */ +export interface player_aim_stats_demo_min_fields { + attacker_steam_id: (Scalars['bigint'] | null) + counter_strafe_eligible_shots: (Scalars['Int'] | null) + counter_strafed_shots: (Scalars['Int'] | null) + crosshair_angle_count: (Scalars['Int'] | null) + crosshair_angle_sum_deg: (Scalars['numeric'] | null) + first_bullet_hits: (Scalars['Int'] | null) + first_bullet_shots: (Scalars['Int'] | null) + headshot_hits: (Scalars['Int'] | null) + hits: (Scalars['Int'] | null) + hits_at_spotted: (Scalars['Int'] | null) + match_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + non_awp_hits: (Scalars['Int'] | null) + on_target_frames: (Scalars['Int'] | null) + shots_at_spotted: (Scalars['Int'] | null) + spray_hits: (Scalars['Int'] | null) + spray_shots: (Scalars['Int'] | null) + time_to_damage_count: (Scalars['Int'] | null) + time_to_damage_sum_s: (Scalars['numeric'] | null) + total_engagement_frames: (Scalars['Int'] | null) + __typename: 'player_aim_stats_demo_min_fields' +} + + +/** response of any mutation on the table "player_aim_stats_demo" */ +export interface player_aim_stats_demo_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: player_aim_stats_demo[] + __typename: 'player_aim_stats_demo_mutation_response' +} + + +/** select columns of table "player_aim_stats_demo" */ +export type player_aim_stats_demo_select_column = 'attacker_steam_id' | 'counter_strafe_eligible_shots' | 'counter_strafed_shots' | 'crosshair_angle_count' | 'crosshair_angle_sum_deg' | 'first_bullet_hits' | 'first_bullet_shots' | 'headshot_hits' | 'hits' | 'hits_at_spotted' | 'match_id' | 'match_map_id' | 'non_awp_hits' | 'on_target_frames' | 'shots_at_spotted' | 'spray_hits' | 'spray_shots' | 'time_to_damage_count' | 'time_to_damage_sum_s' | 'total_engagement_frames' + + +/** aggregate stddev on columns */ +export interface player_aim_stats_demo_stddev_fields { + attacker_steam_id: (Scalars['Float'] | null) + counter_strafe_eligible_shots: (Scalars['Float'] | null) + counter_strafed_shots: (Scalars['Float'] | null) + crosshair_angle_count: (Scalars['Float'] | null) + crosshair_angle_sum_deg: (Scalars['Float'] | null) + first_bullet_hits: (Scalars['Float'] | null) + first_bullet_shots: (Scalars['Float'] | null) + headshot_hits: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + hits_at_spotted: (Scalars['Float'] | null) + non_awp_hits: (Scalars['Float'] | null) + on_target_frames: (Scalars['Float'] | null) + shots_at_spotted: (Scalars['Float'] | null) + spray_hits: (Scalars['Float'] | null) + spray_shots: (Scalars['Float'] | null) + time_to_damage_count: (Scalars['Float'] | null) + time_to_damage_sum_s: (Scalars['Float'] | null) + total_engagement_frames: (Scalars['Float'] | null) + __typename: 'player_aim_stats_demo_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface player_aim_stats_demo_stddev_pop_fields { + attacker_steam_id: (Scalars['Float'] | null) + counter_strafe_eligible_shots: (Scalars['Float'] | null) + counter_strafed_shots: (Scalars['Float'] | null) + crosshair_angle_count: (Scalars['Float'] | null) + crosshair_angle_sum_deg: (Scalars['Float'] | null) + first_bullet_hits: (Scalars['Float'] | null) + first_bullet_shots: (Scalars['Float'] | null) + headshot_hits: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + hits_at_spotted: (Scalars['Float'] | null) + non_awp_hits: (Scalars['Float'] | null) + on_target_frames: (Scalars['Float'] | null) + shots_at_spotted: (Scalars['Float'] | null) + spray_hits: (Scalars['Float'] | null) + spray_shots: (Scalars['Float'] | null) + time_to_damage_count: (Scalars['Float'] | null) + time_to_damage_sum_s: (Scalars['Float'] | null) + total_engagement_frames: (Scalars['Float'] | null) + __typename: 'player_aim_stats_demo_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface player_aim_stats_demo_stddev_samp_fields { + attacker_steam_id: (Scalars['Float'] | null) + counter_strafe_eligible_shots: (Scalars['Float'] | null) + counter_strafed_shots: (Scalars['Float'] | null) + crosshair_angle_count: (Scalars['Float'] | null) + crosshair_angle_sum_deg: (Scalars['Float'] | null) + first_bullet_hits: (Scalars['Float'] | null) + first_bullet_shots: (Scalars['Float'] | null) + headshot_hits: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + hits_at_spotted: (Scalars['Float'] | null) + non_awp_hits: (Scalars['Float'] | null) + on_target_frames: (Scalars['Float'] | null) + shots_at_spotted: (Scalars['Float'] | null) + spray_hits: (Scalars['Float'] | null) + spray_shots: (Scalars['Float'] | null) + time_to_damage_count: (Scalars['Float'] | null) + time_to_damage_sum_s: (Scalars['Float'] | null) + total_engagement_frames: (Scalars['Float'] | null) + __typename: 'player_aim_stats_demo_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface player_aim_stats_demo_sum_fields { + attacker_steam_id: (Scalars['bigint'] | null) + counter_strafe_eligible_shots: (Scalars['Int'] | null) + counter_strafed_shots: (Scalars['Int'] | null) + crosshair_angle_count: (Scalars['Int'] | null) + crosshair_angle_sum_deg: (Scalars['numeric'] | null) + first_bullet_hits: (Scalars['Int'] | null) + first_bullet_shots: (Scalars['Int'] | null) + headshot_hits: (Scalars['Int'] | null) + hits: (Scalars['Int'] | null) + hits_at_spotted: (Scalars['Int'] | null) + non_awp_hits: (Scalars['Int'] | null) + on_target_frames: (Scalars['Int'] | null) + shots_at_spotted: (Scalars['Int'] | null) + spray_hits: (Scalars['Int'] | null) + spray_shots: (Scalars['Int'] | null) + time_to_damage_count: (Scalars['Int'] | null) + time_to_damage_sum_s: (Scalars['numeric'] | null) + total_engagement_frames: (Scalars['Int'] | null) + __typename: 'player_aim_stats_demo_sum_fields' +} + + +/** update columns of table "player_aim_stats_demo" */ +export type player_aim_stats_demo_update_column = 'attacker_steam_id' | 'counter_strafe_eligible_shots' | 'counter_strafed_shots' | 'crosshair_angle_count' | 'crosshair_angle_sum_deg' | 'first_bullet_hits' | 'first_bullet_shots' | 'headshot_hits' | 'hits' | 'hits_at_spotted' | 'match_id' | 'match_map_id' | 'non_awp_hits' | 'on_target_frames' | 'shots_at_spotted' | 'spray_hits' | 'spray_shots' | 'time_to_damage_count' | 'time_to_damage_sum_s' | 'total_engagement_frames' + + +/** aggregate var_pop on columns */ +export interface player_aim_stats_demo_var_pop_fields { + attacker_steam_id: (Scalars['Float'] | null) + counter_strafe_eligible_shots: (Scalars['Float'] | null) + counter_strafed_shots: (Scalars['Float'] | null) + crosshair_angle_count: (Scalars['Float'] | null) + crosshair_angle_sum_deg: (Scalars['Float'] | null) + first_bullet_hits: (Scalars['Float'] | null) + first_bullet_shots: (Scalars['Float'] | null) + headshot_hits: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + hits_at_spotted: (Scalars['Float'] | null) + non_awp_hits: (Scalars['Float'] | null) + on_target_frames: (Scalars['Float'] | null) + shots_at_spotted: (Scalars['Float'] | null) + spray_hits: (Scalars['Float'] | null) + spray_shots: (Scalars['Float'] | null) + time_to_damage_count: (Scalars['Float'] | null) + time_to_damage_sum_s: (Scalars['Float'] | null) + total_engagement_frames: (Scalars['Float'] | null) + __typename: 'player_aim_stats_demo_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface player_aim_stats_demo_var_samp_fields { + attacker_steam_id: (Scalars['Float'] | null) + counter_strafe_eligible_shots: (Scalars['Float'] | null) + counter_strafed_shots: (Scalars['Float'] | null) + crosshair_angle_count: (Scalars['Float'] | null) + crosshair_angle_sum_deg: (Scalars['Float'] | null) + first_bullet_hits: (Scalars['Float'] | null) + first_bullet_shots: (Scalars['Float'] | null) + headshot_hits: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + hits_at_spotted: (Scalars['Float'] | null) + non_awp_hits: (Scalars['Float'] | null) + on_target_frames: (Scalars['Float'] | null) + shots_at_spotted: (Scalars['Float'] | null) + spray_hits: (Scalars['Float'] | null) + spray_shots: (Scalars['Float'] | null) + time_to_damage_count: (Scalars['Float'] | null) + time_to_damage_sum_s: (Scalars['Float'] | null) + total_engagement_frames: (Scalars['Float'] | null) + __typename: 'player_aim_stats_demo_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface player_aim_stats_demo_variance_fields { + attacker_steam_id: (Scalars['Float'] | null) + counter_strafe_eligible_shots: (Scalars['Float'] | null) + counter_strafed_shots: (Scalars['Float'] | null) + crosshair_angle_count: (Scalars['Float'] | null) + crosshair_angle_sum_deg: (Scalars['Float'] | null) + first_bullet_hits: (Scalars['Float'] | null) + first_bullet_shots: (Scalars['Float'] | null) + headshot_hits: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + hits_at_spotted: (Scalars['Float'] | null) + non_awp_hits: (Scalars['Float'] | null) + on_target_frames: (Scalars['Float'] | null) + shots_at_spotted: (Scalars['Float'] | null) + spray_hits: (Scalars['Float'] | null) + spray_shots: (Scalars['Float'] | null) + time_to_damage_count: (Scalars['Float'] | null) + time_to_damage_sum_s: (Scalars['Float'] | null) + total_engagement_frames: (Scalars['Float'] | null) + __typename: 'player_aim_stats_demo_variance_fields' +} + + +/** columns and relationships of "player_aim_weapon_stats" */ +export interface player_aim_weapon_stats { + first_bullet_hits: Scalars['Int'] + first_bullet_shots: Scalars['Int'] + hits: Scalars['Int'] + hits_spotted: Scalars['Int'] + /** An object relationship */ + match: matches + match_id: Scalars['uuid'] + /** An object relationship */ + match_map: match_maps + match_map_id: Scalars['uuid'] + /** An object relationship */ + player: (players | null) + shots: Scalars['Int'] + shots_spotted: Scalars['Int'] + steam_id: Scalars['bigint'] + weapon_class: Scalars['String'] + __typename: 'player_aim_weapon_stats' +} + + +/** aggregated selection of "player_aim_weapon_stats" */ +export interface player_aim_weapon_stats_aggregate { + aggregate: (player_aim_weapon_stats_aggregate_fields | null) + nodes: player_aim_weapon_stats[] + __typename: 'player_aim_weapon_stats_aggregate' +} + + +/** aggregate fields of "player_aim_weapon_stats" */ +export interface player_aim_weapon_stats_aggregate_fields { + avg: (player_aim_weapon_stats_avg_fields | null) + count: Scalars['Int'] + max: (player_aim_weapon_stats_max_fields | null) + min: (player_aim_weapon_stats_min_fields | null) + stddev: (player_aim_weapon_stats_stddev_fields | null) + stddev_pop: (player_aim_weapon_stats_stddev_pop_fields | null) + stddev_samp: (player_aim_weapon_stats_stddev_samp_fields | null) + sum: (player_aim_weapon_stats_sum_fields | null) + var_pop: (player_aim_weapon_stats_var_pop_fields | null) + var_samp: (player_aim_weapon_stats_var_samp_fields | null) + variance: (player_aim_weapon_stats_variance_fields | null) + __typename: 'player_aim_weapon_stats_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface player_aim_weapon_stats_avg_fields { + first_bullet_hits: (Scalars['Float'] | null) + first_bullet_shots: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + hits_spotted: (Scalars['Float'] | null) + shots: (Scalars['Float'] | null) + shots_spotted: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'player_aim_weapon_stats_avg_fields' +} + + +/** unique or primary key constraints on table "player_aim_weapon_stats" */ +export type player_aim_weapon_stats_constraint = 'player_aim_weapon_stats_pkey' + + +/** aggregate max on columns */ +export interface player_aim_weapon_stats_max_fields { + first_bullet_hits: (Scalars['Int'] | null) + first_bullet_shots: (Scalars['Int'] | null) + hits: (Scalars['Int'] | null) + hits_spotted: (Scalars['Int'] | null) + match_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + shots: (Scalars['Int'] | null) + shots_spotted: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + weapon_class: (Scalars['String'] | null) + __typename: 'player_aim_weapon_stats_max_fields' +} + + +/** aggregate min on columns */ +export interface player_aim_weapon_stats_min_fields { + first_bullet_hits: (Scalars['Int'] | null) + first_bullet_shots: (Scalars['Int'] | null) + hits: (Scalars['Int'] | null) + hits_spotted: (Scalars['Int'] | null) + match_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + shots: (Scalars['Int'] | null) + shots_spotted: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + weapon_class: (Scalars['String'] | null) + __typename: 'player_aim_weapon_stats_min_fields' +} + + +/** response of any mutation on the table "player_aim_weapon_stats" */ +export interface player_aim_weapon_stats_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: player_aim_weapon_stats[] + __typename: 'player_aim_weapon_stats_mutation_response' +} + + +/** select columns of table "player_aim_weapon_stats" */ +export type player_aim_weapon_stats_select_column = 'first_bullet_hits' | 'first_bullet_shots' | 'hits' | 'hits_spotted' | 'match_id' | 'match_map_id' | 'shots' | 'shots_spotted' | 'steam_id' | 'weapon_class' + + +/** aggregate stddev on columns */ +export interface player_aim_weapon_stats_stddev_fields { + first_bullet_hits: (Scalars['Float'] | null) + first_bullet_shots: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + hits_spotted: (Scalars['Float'] | null) + shots: (Scalars['Float'] | null) + shots_spotted: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'player_aim_weapon_stats_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface player_aim_weapon_stats_stddev_pop_fields { + first_bullet_hits: (Scalars['Float'] | null) + first_bullet_shots: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + hits_spotted: (Scalars['Float'] | null) + shots: (Scalars['Float'] | null) + shots_spotted: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'player_aim_weapon_stats_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface player_aim_weapon_stats_stddev_samp_fields { + first_bullet_hits: (Scalars['Float'] | null) + first_bullet_shots: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + hits_spotted: (Scalars['Float'] | null) + shots: (Scalars['Float'] | null) + shots_spotted: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'player_aim_weapon_stats_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface player_aim_weapon_stats_sum_fields { + first_bullet_hits: (Scalars['Int'] | null) + first_bullet_shots: (Scalars['Int'] | null) + hits: (Scalars['Int'] | null) + hits_spotted: (Scalars['Int'] | null) + shots: (Scalars['Int'] | null) + shots_spotted: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'player_aim_weapon_stats_sum_fields' +} + + +/** update columns of table "player_aim_weapon_stats" */ +export type player_aim_weapon_stats_update_column = 'first_bullet_hits' | 'first_bullet_shots' | 'hits' | 'hits_spotted' | 'match_id' | 'match_map_id' | 'shots' | 'shots_spotted' | 'steam_id' | 'weapon_class' + + +/** aggregate var_pop on columns */ +export interface player_aim_weapon_stats_var_pop_fields { + first_bullet_hits: (Scalars['Float'] | null) + first_bullet_shots: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + hits_spotted: (Scalars['Float'] | null) + shots: (Scalars['Float'] | null) + shots_spotted: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'player_aim_weapon_stats_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface player_aim_weapon_stats_var_samp_fields { + first_bullet_hits: (Scalars['Float'] | null) + first_bullet_shots: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + hits_spotted: (Scalars['Float'] | null) + shots: (Scalars['Float'] | null) + shots_spotted: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'player_aim_weapon_stats_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface player_aim_weapon_stats_variance_fields { + first_bullet_hits: (Scalars['Float'] | null) + first_bullet_shots: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + hits_spotted: (Scalars['Float'] | null) + shots: (Scalars['Float'] | null) + shots_spotted: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'player_aim_weapon_stats_variance_fields' +} + + +/** columns and relationships of "player_assists" */ +export interface player_assists { + /** An object relationship */ + attacked_player: players + attacked_steam_id: Scalars['bigint'] + attacked_team: Scalars['String'] + attacker_steam_id: Scalars['bigint'] + attacker_team: Scalars['String'] + deleted_at: (Scalars['timestamptz'] | null) + flash: Scalars['Boolean'] + /** A computed field, executes function "is_team_assist" */ + is_team_assist: (Scalars['Boolean'] | null) + /** An object relationship */ + match: matches + match_id: Scalars['uuid'] + /** An object relationship */ + match_map: match_maps + match_map_id: Scalars['uuid'] + /** An object relationship */ + player: players + round: Scalars['Int'] + time: Scalars['timestamptz'] + __typename: 'player_assists' +} + + +/** aggregated selection of "player_assists" */ +export interface player_assists_aggregate { + aggregate: (player_assists_aggregate_fields | null) + nodes: player_assists[] + __typename: 'player_assists_aggregate' +} + + +/** aggregate fields of "player_assists" */ +export interface player_assists_aggregate_fields { + avg: (player_assists_avg_fields | null) + count: Scalars['Int'] + max: (player_assists_max_fields | null) + min: (player_assists_min_fields | null) + stddev: (player_assists_stddev_fields | null) + stddev_pop: (player_assists_stddev_pop_fields | null) + stddev_samp: (player_assists_stddev_samp_fields | null) + sum: (player_assists_sum_fields | null) + var_pop: (player_assists_var_pop_fields | null) + var_samp: (player_assists_var_samp_fields | null) + variance: (player_assists_variance_fields | null) + __typename: 'player_assists_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface player_assists_avg_fields { + attacked_steam_id: (Scalars['Float'] | null) + attacker_steam_id: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'player_assists_avg_fields' +} + + +/** unique or primary key constraints on table "player_assists" */ +export type player_assists_constraint = 'player_assists_pkey' + + +/** aggregate max on columns */ +export interface player_assists_max_fields { + attacked_steam_id: (Scalars['bigint'] | null) + attacked_team: (Scalars['String'] | null) + attacker_steam_id: (Scalars['bigint'] | null) + attacker_team: (Scalars['String'] | null) + deleted_at: (Scalars['timestamptz'] | null) + match_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + round: (Scalars['Int'] | null) + time: (Scalars['timestamptz'] | null) + __typename: 'player_assists_max_fields' +} + + +/** aggregate min on columns */ +export interface player_assists_min_fields { + attacked_steam_id: (Scalars['bigint'] | null) + attacked_team: (Scalars['String'] | null) + attacker_steam_id: (Scalars['bigint'] | null) + attacker_team: (Scalars['String'] | null) + deleted_at: (Scalars['timestamptz'] | null) + match_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + round: (Scalars['Int'] | null) + time: (Scalars['timestamptz'] | null) + __typename: 'player_assists_min_fields' +} + + +/** response of any mutation on the table "player_assists" */ +export interface player_assists_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: player_assists[] + __typename: 'player_assists_mutation_response' +} + + +/** select columns of table "player_assists" */ +export type player_assists_select_column = 'attacked_steam_id' | 'attacked_team' | 'attacker_steam_id' | 'attacker_team' | 'deleted_at' | 'flash' | 'match_id' | 'match_map_id' | 'round' | 'time' + + +/** select "player_assists_aggregate_bool_exp_bool_and_arguments_columns" columns of table "player_assists" */ +export type player_assists_select_column_player_assists_aggregate_bool_exp_bool_and_arguments_columns = 'flash' + + +/** select "player_assists_aggregate_bool_exp_bool_or_arguments_columns" columns of table "player_assists" */ +export type player_assists_select_column_player_assists_aggregate_bool_exp_bool_or_arguments_columns = 'flash' + + +/** aggregate stddev on columns */ +export interface player_assists_stddev_fields { + attacked_steam_id: (Scalars['Float'] | null) + attacker_steam_id: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'player_assists_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface player_assists_stddev_pop_fields { + attacked_steam_id: (Scalars['Float'] | null) + attacker_steam_id: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'player_assists_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface player_assists_stddev_samp_fields { + attacked_steam_id: (Scalars['Float'] | null) + attacker_steam_id: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'player_assists_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface player_assists_sum_fields { + attacked_steam_id: (Scalars['bigint'] | null) + attacker_steam_id: (Scalars['bigint'] | null) + round: (Scalars['Int'] | null) + __typename: 'player_assists_sum_fields' +} + + +/** update columns of table "player_assists" */ +export type player_assists_update_column = 'attacked_steam_id' | 'attacked_team' | 'attacker_steam_id' | 'attacker_team' | 'deleted_at' | 'flash' | 'match_id' | 'match_map_id' | 'round' | 'time' + + +/** aggregate var_pop on columns */ +export interface player_assists_var_pop_fields { + attacked_steam_id: (Scalars['Float'] | null) + attacker_steam_id: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'player_assists_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface player_assists_var_samp_fields { + attacked_steam_id: (Scalars['Float'] | null) + attacker_steam_id: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'player_assists_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface player_assists_variance_fields { + attacked_steam_id: (Scalars['Float'] | null) + attacker_steam_id: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'player_assists_variance_fields' +} + + +/** columns and relationships of "player_career_stats_v" */ +export interface player_career_stats_v { + accuracy: (Scalars['numeric'] | null) + accuracy_spotted: (Scalars['numeric'] | null) + counter_strafe_pct: (Scalars['numeric'] | null) + crosshair_deg: (Scalars['numeric'] | null) + enemy_blind_pr: (Scalars['numeric'] | null) + flash_assists_pr: (Scalars['numeric'] | null) + hs_pct: (Scalars['numeric'] | null) + kast_pct: (Scalars['numeric'] | null) + maps: (Scalars['Int'] | null) + premier_rank: (Scalars['Int'] | null) + rounds: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + survival_pct: (Scalars['numeric'] | null) + time_to_damage_s: (Scalars['numeric'] | null) + traded_death_pct: (Scalars['numeric'] | null) + util_efficiency: (Scalars['numeric'] | null) + __typename: 'player_career_stats_v' +} + + +/** aggregated selection of "player_career_stats_v" */ +export interface player_career_stats_v_aggregate { + aggregate: (player_career_stats_v_aggregate_fields | null) + nodes: player_career_stats_v[] + __typename: 'player_career_stats_v_aggregate' +} + + +/** aggregate fields of "player_career_stats_v" */ +export interface player_career_stats_v_aggregate_fields { + avg: (player_career_stats_v_avg_fields | null) + count: Scalars['Int'] + max: (player_career_stats_v_max_fields | null) + min: (player_career_stats_v_min_fields | null) + stddev: (player_career_stats_v_stddev_fields | null) + stddev_pop: (player_career_stats_v_stddev_pop_fields | null) + stddev_samp: (player_career_stats_v_stddev_samp_fields | null) + sum: (player_career_stats_v_sum_fields | null) + var_pop: (player_career_stats_v_var_pop_fields | null) + var_samp: (player_career_stats_v_var_samp_fields | null) + variance: (player_career_stats_v_variance_fields | null) + __typename: 'player_career_stats_v_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface player_career_stats_v_avg_fields { + accuracy: (Scalars['Float'] | null) + accuracy_spotted: (Scalars['Float'] | null) + counter_strafe_pct: (Scalars['Float'] | null) + crosshair_deg: (Scalars['Float'] | null) + enemy_blind_pr: (Scalars['Float'] | null) + flash_assists_pr: (Scalars['Float'] | null) + hs_pct: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + maps: (Scalars['Float'] | null) + premier_rank: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + survival_pct: (Scalars['Float'] | null) + time_to_damage_s: (Scalars['Float'] | null) + traded_death_pct: (Scalars['Float'] | null) + util_efficiency: (Scalars['Float'] | null) + __typename: 'player_career_stats_v_avg_fields' +} + + +/** aggregate max on columns */ +export interface player_career_stats_v_max_fields { + accuracy: (Scalars['numeric'] | null) + accuracy_spotted: (Scalars['numeric'] | null) + counter_strafe_pct: (Scalars['numeric'] | null) + crosshair_deg: (Scalars['numeric'] | null) + enemy_blind_pr: (Scalars['numeric'] | null) + flash_assists_pr: (Scalars['numeric'] | null) + hs_pct: (Scalars['numeric'] | null) + kast_pct: (Scalars['numeric'] | null) + maps: (Scalars['Int'] | null) + premier_rank: (Scalars['Int'] | null) + rounds: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + survival_pct: (Scalars['numeric'] | null) + time_to_damage_s: (Scalars['numeric'] | null) + traded_death_pct: (Scalars['numeric'] | null) + util_efficiency: (Scalars['numeric'] | null) + __typename: 'player_career_stats_v_max_fields' +} + + +/** aggregate min on columns */ +export interface player_career_stats_v_min_fields { + accuracy: (Scalars['numeric'] | null) + accuracy_spotted: (Scalars['numeric'] | null) + counter_strafe_pct: (Scalars['numeric'] | null) + crosshair_deg: (Scalars['numeric'] | null) + enemy_blind_pr: (Scalars['numeric'] | null) + flash_assists_pr: (Scalars['numeric'] | null) + hs_pct: (Scalars['numeric'] | null) + kast_pct: (Scalars['numeric'] | null) + maps: (Scalars['Int'] | null) + premier_rank: (Scalars['Int'] | null) + rounds: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + survival_pct: (Scalars['numeric'] | null) + time_to_damage_s: (Scalars['numeric'] | null) + traded_death_pct: (Scalars['numeric'] | null) + util_efficiency: (Scalars['numeric'] | null) + __typename: 'player_career_stats_v_min_fields' +} + + +/** select columns of table "player_career_stats_v" */ +export type player_career_stats_v_select_column = 'accuracy' | 'accuracy_spotted' | 'counter_strafe_pct' | 'crosshair_deg' | 'enemy_blind_pr' | 'flash_assists_pr' | 'hs_pct' | 'kast_pct' | 'maps' | 'premier_rank' | 'rounds' | 'steam_id' | 'survival_pct' | 'time_to_damage_s' | 'traded_death_pct' | 'util_efficiency' + + +/** aggregate stddev on columns */ +export interface player_career_stats_v_stddev_fields { + accuracy: (Scalars['Float'] | null) + accuracy_spotted: (Scalars['Float'] | null) + counter_strafe_pct: (Scalars['Float'] | null) + crosshair_deg: (Scalars['Float'] | null) + enemy_blind_pr: (Scalars['Float'] | null) + flash_assists_pr: (Scalars['Float'] | null) + hs_pct: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + maps: (Scalars['Float'] | null) + premier_rank: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + survival_pct: (Scalars['Float'] | null) + time_to_damage_s: (Scalars['Float'] | null) + traded_death_pct: (Scalars['Float'] | null) + util_efficiency: (Scalars['Float'] | null) + __typename: 'player_career_stats_v_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface player_career_stats_v_stddev_pop_fields { + accuracy: (Scalars['Float'] | null) + accuracy_spotted: (Scalars['Float'] | null) + counter_strafe_pct: (Scalars['Float'] | null) + crosshair_deg: (Scalars['Float'] | null) + enemy_blind_pr: (Scalars['Float'] | null) + flash_assists_pr: (Scalars['Float'] | null) + hs_pct: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + maps: (Scalars['Float'] | null) + premier_rank: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + survival_pct: (Scalars['Float'] | null) + time_to_damage_s: (Scalars['Float'] | null) + traded_death_pct: (Scalars['Float'] | null) + util_efficiency: (Scalars['Float'] | null) + __typename: 'player_career_stats_v_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface player_career_stats_v_stddev_samp_fields { + accuracy: (Scalars['Float'] | null) + accuracy_spotted: (Scalars['Float'] | null) + counter_strafe_pct: (Scalars['Float'] | null) + crosshair_deg: (Scalars['Float'] | null) + enemy_blind_pr: (Scalars['Float'] | null) + flash_assists_pr: (Scalars['Float'] | null) + hs_pct: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + maps: (Scalars['Float'] | null) + premier_rank: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + survival_pct: (Scalars['Float'] | null) + time_to_damage_s: (Scalars['Float'] | null) + traded_death_pct: (Scalars['Float'] | null) + util_efficiency: (Scalars['Float'] | null) + __typename: 'player_career_stats_v_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface player_career_stats_v_sum_fields { + accuracy: (Scalars['numeric'] | null) + accuracy_spotted: (Scalars['numeric'] | null) + counter_strafe_pct: (Scalars['numeric'] | null) + crosshair_deg: (Scalars['numeric'] | null) + enemy_blind_pr: (Scalars['numeric'] | null) + flash_assists_pr: (Scalars['numeric'] | null) + hs_pct: (Scalars['numeric'] | null) + kast_pct: (Scalars['numeric'] | null) + maps: (Scalars['Int'] | null) + premier_rank: (Scalars['Int'] | null) + rounds: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + survival_pct: (Scalars['numeric'] | null) + time_to_damage_s: (Scalars['numeric'] | null) + traded_death_pct: (Scalars['numeric'] | null) + util_efficiency: (Scalars['numeric'] | null) + __typename: 'player_career_stats_v_sum_fields' +} + + +/** aggregate var_pop on columns */ +export interface player_career_stats_v_var_pop_fields { + accuracy: (Scalars['Float'] | null) + accuracy_spotted: (Scalars['Float'] | null) + counter_strafe_pct: (Scalars['Float'] | null) + crosshair_deg: (Scalars['Float'] | null) + enemy_blind_pr: (Scalars['Float'] | null) + flash_assists_pr: (Scalars['Float'] | null) + hs_pct: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + maps: (Scalars['Float'] | null) + premier_rank: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + survival_pct: (Scalars['Float'] | null) + time_to_damage_s: (Scalars['Float'] | null) + traded_death_pct: (Scalars['Float'] | null) + util_efficiency: (Scalars['Float'] | null) + __typename: 'player_career_stats_v_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface player_career_stats_v_var_samp_fields { + accuracy: (Scalars['Float'] | null) + accuracy_spotted: (Scalars['Float'] | null) + counter_strafe_pct: (Scalars['Float'] | null) + crosshair_deg: (Scalars['Float'] | null) + enemy_blind_pr: (Scalars['Float'] | null) + flash_assists_pr: (Scalars['Float'] | null) + hs_pct: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + maps: (Scalars['Float'] | null) + premier_rank: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + survival_pct: (Scalars['Float'] | null) + time_to_damage_s: (Scalars['Float'] | null) + traded_death_pct: (Scalars['Float'] | null) + util_efficiency: (Scalars['Float'] | null) + __typename: 'player_career_stats_v_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface player_career_stats_v_variance_fields { + accuracy: (Scalars['Float'] | null) + accuracy_spotted: (Scalars['Float'] | null) + counter_strafe_pct: (Scalars['Float'] | null) + crosshair_deg: (Scalars['Float'] | null) + enemy_blind_pr: (Scalars['Float'] | null) + flash_assists_pr: (Scalars['Float'] | null) + hs_pct: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + maps: (Scalars['Float'] | null) + premier_rank: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + survival_pct: (Scalars['Float'] | null) + time_to_damage_s: (Scalars['Float'] | null) + traded_death_pct: (Scalars['Float'] | null) + util_efficiency: (Scalars['Float'] | null) + __typename: 'player_career_stats_v_variance_fields' +} + + +/** columns and relationships of "player_damages" */ +export interface player_damages { + armor: Scalars['Int'] + attacked_location: Scalars['String'] + attacked_location_coordinates: (Scalars['String'] | null) + /** An object relationship */ + attacked_player: players + attacked_steam_id: Scalars['bigint'] + attacked_team: Scalars['String'] + attacker_location: (Scalars['String'] | null) + attacker_location_coordinates: (Scalars['String'] | null) + attacker_steam_id: (Scalars['bigint'] | null) + attacker_team: (Scalars['String'] | null) + damage: Scalars['Int'] + damage_armor: Scalars['Int'] + deleted_at: (Scalars['timestamptz'] | null) + health: Scalars['Int'] + hitgroup: Scalars['String'] + id: Scalars['uuid'] + /** An object relationship */ + match: matches + match_id: Scalars['uuid'] + /** An object relationship */ + match_map: match_maps + match_map_id: Scalars['uuid'] + /** An object relationship */ + player: (players | null) + round: Scalars['numeric'] + /** A computed field, executes function "is_team_damage" */ + team_damage: (Scalars['Boolean'] | null) + time: Scalars['timestamptz'] + with: (Scalars['String'] | null) + __typename: 'player_damages' +} + + +/** aggregated selection of "player_damages" */ +export interface player_damages_aggregate { + aggregate: (player_damages_aggregate_fields | null) + nodes: player_damages[] + __typename: 'player_damages_aggregate' +} + + +/** aggregate fields of "player_damages" */ +export interface player_damages_aggregate_fields { + avg: (player_damages_avg_fields | null) + count: Scalars['Int'] + max: (player_damages_max_fields | null) + min: (player_damages_min_fields | null) + stddev: (player_damages_stddev_fields | null) + stddev_pop: (player_damages_stddev_pop_fields | null) + stddev_samp: (player_damages_stddev_samp_fields | null) + sum: (player_damages_sum_fields | null) + var_pop: (player_damages_var_pop_fields | null) + var_samp: (player_damages_var_samp_fields | null) + variance: (player_damages_variance_fields | null) + __typename: 'player_damages_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface player_damages_avg_fields { + armor: (Scalars['Float'] | null) + attacked_steam_id: (Scalars['Float'] | null) + attacker_steam_id: (Scalars['Float'] | null) + damage: (Scalars['Float'] | null) + damage_armor: (Scalars['Float'] | null) + health: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'player_damages_avg_fields' +} + + +/** unique or primary key constraints on table "player_damages" */ +export type player_damages_constraint = 'player_damages_pkey' + + +/** aggregate max on columns */ +export interface player_damages_max_fields { + armor: (Scalars['Int'] | null) + attacked_location: (Scalars['String'] | null) + attacked_location_coordinates: (Scalars['String'] | null) + attacked_steam_id: (Scalars['bigint'] | null) + attacked_team: (Scalars['String'] | null) + attacker_location: (Scalars['String'] | null) + attacker_location_coordinates: (Scalars['String'] | null) + attacker_steam_id: (Scalars['bigint'] | null) + attacker_team: (Scalars['String'] | null) + damage: (Scalars['Int'] | null) + damage_armor: (Scalars['Int'] | null) + deleted_at: (Scalars['timestamptz'] | null) + health: (Scalars['Int'] | null) + hitgroup: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + round: (Scalars['numeric'] | null) + time: (Scalars['timestamptz'] | null) + with: (Scalars['String'] | null) + __typename: 'player_damages_max_fields' +} + + +/** aggregate min on columns */ +export interface player_damages_min_fields { + armor: (Scalars['Int'] | null) + attacked_location: (Scalars['String'] | null) + attacked_location_coordinates: (Scalars['String'] | null) + attacked_steam_id: (Scalars['bigint'] | null) + attacked_team: (Scalars['String'] | null) + attacker_location: (Scalars['String'] | null) + attacker_location_coordinates: (Scalars['String'] | null) + attacker_steam_id: (Scalars['bigint'] | null) + attacker_team: (Scalars['String'] | null) + damage: (Scalars['Int'] | null) + damage_armor: (Scalars['Int'] | null) + deleted_at: (Scalars['timestamptz'] | null) + health: (Scalars['Int'] | null) + hitgroup: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + round: (Scalars['numeric'] | null) + time: (Scalars['timestamptz'] | null) + with: (Scalars['String'] | null) + __typename: 'player_damages_min_fields' +} + + +/** response of any mutation on the table "player_damages" */ +export interface player_damages_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: player_damages[] + __typename: 'player_damages_mutation_response' +} + + +/** select columns of table "player_damages" */ +export type player_damages_select_column = 'armor' | 'attacked_location' | 'attacked_location_coordinates' | 'attacked_steam_id' | 'attacked_team' | 'attacker_location' | 'attacker_location_coordinates' | 'attacker_steam_id' | 'attacker_team' | 'damage' | 'damage_armor' | 'deleted_at' | 'health' | 'hitgroup' | 'id' | 'match_id' | 'match_map_id' | 'round' | 'time' | 'with' + + +/** aggregate stddev on columns */ +export interface player_damages_stddev_fields { + armor: (Scalars['Float'] | null) + attacked_steam_id: (Scalars['Float'] | null) + attacker_steam_id: (Scalars['Float'] | null) + damage: (Scalars['Float'] | null) + damage_armor: (Scalars['Float'] | null) + health: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'player_damages_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface player_damages_stddev_pop_fields { + armor: (Scalars['Float'] | null) + attacked_steam_id: (Scalars['Float'] | null) + attacker_steam_id: (Scalars['Float'] | null) + damage: (Scalars['Float'] | null) + damage_armor: (Scalars['Float'] | null) + health: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'player_damages_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface player_damages_stddev_samp_fields { + armor: (Scalars['Float'] | null) + attacked_steam_id: (Scalars['Float'] | null) + attacker_steam_id: (Scalars['Float'] | null) + damage: (Scalars['Float'] | null) + damage_armor: (Scalars['Float'] | null) + health: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'player_damages_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface player_damages_sum_fields { + armor: (Scalars['Int'] | null) + attacked_steam_id: (Scalars['bigint'] | null) + attacker_steam_id: (Scalars['bigint'] | null) + damage: (Scalars['Int'] | null) + damage_armor: (Scalars['Int'] | null) + health: (Scalars['Int'] | null) + round: (Scalars['numeric'] | null) + __typename: 'player_damages_sum_fields' +} + + +/** update columns of table "player_damages" */ +export type player_damages_update_column = 'armor' | 'attacked_location' | 'attacked_location_coordinates' | 'attacked_steam_id' | 'attacked_team' | 'attacker_location' | 'attacker_location_coordinates' | 'attacker_steam_id' | 'attacker_team' | 'damage' | 'damage_armor' | 'deleted_at' | 'health' | 'hitgroup' | 'id' | 'match_id' | 'match_map_id' | 'round' | 'time' | 'with' + + +/** aggregate var_pop on columns */ +export interface player_damages_var_pop_fields { + armor: (Scalars['Float'] | null) + attacked_steam_id: (Scalars['Float'] | null) + attacker_steam_id: (Scalars['Float'] | null) + damage: (Scalars['Float'] | null) + damage_armor: (Scalars['Float'] | null) + health: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'player_damages_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface player_damages_var_samp_fields { + armor: (Scalars['Float'] | null) + attacked_steam_id: (Scalars['Float'] | null) + attacker_steam_id: (Scalars['Float'] | null) + damage: (Scalars['Float'] | null) + damage_armor: (Scalars['Float'] | null) + health: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'player_damages_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface player_damages_variance_fields { + armor: (Scalars['Float'] | null) + attacked_steam_id: (Scalars['Float'] | null) + attacker_steam_id: (Scalars['Float'] | null) + damage: (Scalars['Float'] | null) + damage_armor: (Scalars['Float'] | null) + health: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'player_damages_variance_fields' +} + + +/** columns and relationships of "player_elo" */ +export interface player_elo { + actual_score: (Scalars['float8'] | null) + assists: (Scalars['Int'] | null) + change: Scalars['numeric'] + created_at: Scalars['timestamptz'] + current: Scalars['numeric'] + damage: (Scalars['Int'] | null) + damage_percent: (Scalars['float8'] | null) + deaths: (Scalars['Int'] | null) + expected_score: (Scalars['float8'] | null) + impact: (Scalars['numeric'] | null) + k_factor: (Scalars['Int'] | null) + kda: (Scalars['float8'] | null) + kills: (Scalars['Int'] | null) + map_losses: (Scalars['Int'] | null) + map_wins: (Scalars['Int'] | null) + /** An object relationship */ + match: matches + match_id: Scalars['uuid'] + opponent_team_elo_avg: (Scalars['float8'] | null) + performance_multiplier: (Scalars['float8'] | null) + /** An object relationship */ + player: players + player_team_elo_avg: (Scalars['float8'] | null) + rating_for_expected: (Scalars['float8'] | null) + /** An object relationship */ + season: (seasons | null) + season_id: (Scalars['uuid'] | null) + series_multiplier: (Scalars['Int'] | null) + steam_id: Scalars['bigint'] + team_avg_kda: (Scalars['float8'] | null) + type: e_match_types_enum + __typename: 'player_elo' +} + + +/** aggregated selection of "player_elo" */ +export interface player_elo_aggregate { + aggregate: (player_elo_aggregate_fields | null) + nodes: player_elo[] + __typename: 'player_elo_aggregate' +} + + +/** aggregate fields of "player_elo" */ +export interface player_elo_aggregate_fields { + avg: (player_elo_avg_fields | null) + count: Scalars['Int'] + max: (player_elo_max_fields | null) + min: (player_elo_min_fields | null) + stddev: (player_elo_stddev_fields | null) + stddev_pop: (player_elo_stddev_pop_fields | null) + stddev_samp: (player_elo_stddev_samp_fields | null) + sum: (player_elo_sum_fields | null) + var_pop: (player_elo_var_pop_fields | null) + var_samp: (player_elo_var_samp_fields | null) + variance: (player_elo_variance_fields | null) + __typename: 'player_elo_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface player_elo_avg_fields { + actual_score: (Scalars['Float'] | null) + assists: (Scalars['Float'] | null) + change: (Scalars['Float'] | null) + current: (Scalars['Float'] | null) + damage: (Scalars['Float'] | null) + damage_percent: (Scalars['Float'] | null) + deaths: (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_team_elo_avg: (Scalars['Float'] | null) + rating_for_expected: (Scalars['Float'] | null) + series_multiplier: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + team_avg_kda: (Scalars['Float'] | null) + __typename: 'player_elo_avg_fields' +} + + +/** unique or primary key constraints on table "player_elo" */ +export type player_elo_constraint = 'player_elo_pkey' + + +/** aggregate max on columns */ +export interface player_elo_max_fields { + actual_score: (Scalars['float8'] | null) + assists: (Scalars['Int'] | null) + change: (Scalars['numeric'] | null) + created_at: (Scalars['timestamptz'] | null) + current: (Scalars['numeric'] | null) + damage: (Scalars['Int'] | null) + damage_percent: (Scalars['float8'] | null) + deaths: (Scalars['Int'] | null) + expected_score: (Scalars['float8'] | null) + impact: (Scalars['numeric'] | null) + k_factor: (Scalars['Int'] | null) + kda: (Scalars['float8'] | null) + kills: (Scalars['Int'] | null) + map_losses: (Scalars['Int'] | null) + map_wins: (Scalars['Int'] | null) + match_id: (Scalars['uuid'] | null) + opponent_team_elo_avg: (Scalars['float8'] | null) + performance_multiplier: (Scalars['float8'] | null) + player_team_elo_avg: (Scalars['float8'] | null) + rating_for_expected: (Scalars['float8'] | null) + season_id: (Scalars['uuid'] | null) + series_multiplier: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + team_avg_kda: (Scalars['float8'] | null) + __typename: 'player_elo_max_fields' +} + + +/** aggregate min on columns */ +export interface player_elo_min_fields { + actual_score: (Scalars['float8'] | null) + assists: (Scalars['Int'] | null) + change: (Scalars['numeric'] | null) + created_at: (Scalars['timestamptz'] | null) + current: (Scalars['numeric'] | null) + damage: (Scalars['Int'] | null) + damage_percent: (Scalars['float8'] | null) + deaths: (Scalars['Int'] | null) + expected_score: (Scalars['float8'] | null) + impact: (Scalars['numeric'] | null) + k_factor: (Scalars['Int'] | null) + kda: (Scalars['float8'] | null) + kills: (Scalars['Int'] | null) + map_losses: (Scalars['Int'] | null) + map_wins: (Scalars['Int'] | null) + match_id: (Scalars['uuid'] | null) + opponent_team_elo_avg: (Scalars['float8'] | null) + performance_multiplier: (Scalars['float8'] | null) + player_team_elo_avg: (Scalars['float8'] | null) + rating_for_expected: (Scalars['float8'] | null) + season_id: (Scalars['uuid'] | null) + series_multiplier: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + team_avg_kda: (Scalars['float8'] | null) + __typename: 'player_elo_min_fields' +} + + +/** response of any mutation on the table "player_elo" */ +export interface player_elo_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: player_elo[] + __typename: 'player_elo_mutation_response' +} + + +/** select columns of table "player_elo" */ +export type player_elo_select_column = 'actual_score' | 'assists' | 'change' | 'created_at' | 'current' | 'damage' | 'damage_percent' | 'deaths' | 'expected_score' | 'impact' | 'k_factor' | 'kda' | 'kills' | 'map_losses' | 'map_wins' | 'match_id' | 'opponent_team_elo_avg' | 'performance_multiplier' | 'player_team_elo_avg' | 'rating_for_expected' | 'season_id' | 'series_multiplier' | 'steam_id' | 'team_avg_kda' | 'type' + + +/** aggregate stddev on columns */ +export interface player_elo_stddev_fields { + actual_score: (Scalars['Float'] | null) + assists: (Scalars['Float'] | null) + change: (Scalars['Float'] | null) + current: (Scalars['Float'] | null) + damage: (Scalars['Float'] | null) + damage_percent: (Scalars['Float'] | null) + deaths: (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_team_elo_avg: (Scalars['Float'] | null) + rating_for_expected: (Scalars['Float'] | null) + series_multiplier: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + team_avg_kda: (Scalars['Float'] | null) + __typename: 'player_elo_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface player_elo_stddev_pop_fields { + actual_score: (Scalars['Float'] | null) + assists: (Scalars['Float'] | null) + change: (Scalars['Float'] | null) + current: (Scalars['Float'] | null) + damage: (Scalars['Float'] | null) + damage_percent: (Scalars['Float'] | null) + deaths: (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_team_elo_avg: (Scalars['Float'] | null) + rating_for_expected: (Scalars['Float'] | null) + series_multiplier: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + team_avg_kda: (Scalars['Float'] | null) + __typename: 'player_elo_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface player_elo_stddev_samp_fields { + actual_score: (Scalars['Float'] | null) + assists: (Scalars['Float'] | null) + change: (Scalars['Float'] | null) + current: (Scalars['Float'] | null) + damage: (Scalars['Float'] | null) + damage_percent: (Scalars['Float'] | null) + deaths: (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_team_elo_avg: (Scalars['Float'] | null) + rating_for_expected: (Scalars['Float'] | null) + series_multiplier: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + team_avg_kda: (Scalars['Float'] | null) + __typename: 'player_elo_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface player_elo_sum_fields { + actual_score: (Scalars['float8'] | null) + assists: (Scalars['Int'] | null) + change: (Scalars['numeric'] | null) + current: (Scalars['numeric'] | null) + damage: (Scalars['Int'] | null) + damage_percent: (Scalars['float8'] | null) + deaths: (Scalars['Int'] | null) + expected_score: (Scalars['float8'] | null) + impact: (Scalars['numeric'] | 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_team_elo_avg: (Scalars['float8'] | null) + rating_for_expected: (Scalars['float8'] | null) + series_multiplier: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + team_avg_kda: (Scalars['float8'] | null) + __typename: 'player_elo_sum_fields' +} + + +/** update columns of table "player_elo" */ +export type player_elo_update_column = 'actual_score' | 'assists' | 'change' | 'created_at' | 'current' | 'damage' | 'damage_percent' | 'deaths' | 'expected_score' | 'impact' | 'k_factor' | 'kda' | 'kills' | 'map_losses' | 'map_wins' | 'match_id' | 'opponent_team_elo_avg' | 'performance_multiplier' | 'player_team_elo_avg' | 'rating_for_expected' | 'season_id' | 'series_multiplier' | 'steam_id' | 'team_avg_kda' | 'type' + + +/** aggregate var_pop on columns */ +export interface player_elo_var_pop_fields { + actual_score: (Scalars['Float'] | null) + assists: (Scalars['Float'] | null) + change: (Scalars['Float'] | null) + current: (Scalars['Float'] | null) + damage: (Scalars['Float'] | null) + damage_percent: (Scalars['Float'] | null) + deaths: (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_team_elo_avg: (Scalars['Float'] | null) + rating_for_expected: (Scalars['Float'] | null) + series_multiplier: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + team_avg_kda: (Scalars['Float'] | null) + __typename: 'player_elo_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface player_elo_var_samp_fields { + actual_score: (Scalars['Float'] | null) + assists: (Scalars['Float'] | null) + change: (Scalars['Float'] | null) + current: (Scalars['Float'] | null) + damage: (Scalars['Float'] | null) + damage_percent: (Scalars['Float'] | null) + deaths: (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_team_elo_avg: (Scalars['Float'] | null) + rating_for_expected: (Scalars['Float'] | null) + series_multiplier: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + team_avg_kda: (Scalars['Float'] | null) + __typename: 'player_elo_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface player_elo_variance_fields { + actual_score: (Scalars['Float'] | null) + assists: (Scalars['Float'] | null) + change: (Scalars['Float'] | null) + current: (Scalars['Float'] | null) + damage: (Scalars['Float'] | null) + damage_percent: (Scalars['Float'] | null) + deaths: (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_team_elo_avg: (Scalars['Float'] | null) + rating_for_expected: (Scalars['Float'] | null) + series_multiplier: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + team_avg_kda: (Scalars['Float'] | null) + __typename: 'player_elo_variance_fields' +} + + +/** columns and relationships of "player_faceit_rank_history" */ +export interface player_faceit_rank_history { + elo: (Scalars['Int'] | null) + id: Scalars['uuid'] + /** An object relationship */ + match: matches + match_id: Scalars['uuid'] + observed_at: Scalars['timestamptz'] + /** An object relationship */ + player: players + previous_rank: (Scalars['Int'] | null) + skill_level: Scalars['Int'] + steam_id: Scalars['bigint'] + __typename: 'player_faceit_rank_history' +} + + +/** aggregated selection of "player_faceit_rank_history" */ +export interface player_faceit_rank_history_aggregate { + aggregate: (player_faceit_rank_history_aggregate_fields | null) + nodes: player_faceit_rank_history[] + __typename: 'player_faceit_rank_history_aggregate' +} + + +/** aggregate fields of "player_faceit_rank_history" */ +export interface player_faceit_rank_history_aggregate_fields { + avg: (player_faceit_rank_history_avg_fields | null) + count: Scalars['Int'] + max: (player_faceit_rank_history_max_fields | null) + min: (player_faceit_rank_history_min_fields | null) + stddev: (player_faceit_rank_history_stddev_fields | null) + stddev_pop: (player_faceit_rank_history_stddev_pop_fields | null) + stddev_samp: (player_faceit_rank_history_stddev_samp_fields | null) + sum: (player_faceit_rank_history_sum_fields | null) + var_pop: (player_faceit_rank_history_var_pop_fields | null) + var_samp: (player_faceit_rank_history_var_samp_fields | null) + variance: (player_faceit_rank_history_variance_fields | null) + __typename: 'player_faceit_rank_history_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface player_faceit_rank_history_avg_fields { + elo: (Scalars['Float'] | null) + previous_rank: (Scalars['Float'] | null) + skill_level: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'player_faceit_rank_history_avg_fields' +} + + +/** unique or primary key constraints on table "player_faceit_rank_history" */ +export type player_faceit_rank_history_constraint = 'player_faceit_rank_history_pkey' | 'uq_player_faceit_rank_history_steam_match' + + +/** aggregate max on columns */ +export interface player_faceit_rank_history_max_fields { + elo: (Scalars['Int'] | null) + id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + observed_at: (Scalars['timestamptz'] | null) + previous_rank: (Scalars['Int'] | null) + skill_level: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'player_faceit_rank_history_max_fields' +} + + +/** aggregate min on columns */ +export interface player_faceit_rank_history_min_fields { + elo: (Scalars['Int'] | null) + id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + observed_at: (Scalars['timestamptz'] | null) + previous_rank: (Scalars['Int'] | null) + skill_level: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'player_faceit_rank_history_min_fields' +} + + +/** response of any mutation on the table "player_faceit_rank_history" */ +export interface player_faceit_rank_history_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: player_faceit_rank_history[] + __typename: 'player_faceit_rank_history_mutation_response' +} + + +/** select columns of table "player_faceit_rank_history" */ +export type player_faceit_rank_history_select_column = 'elo' | 'id' | 'match_id' | 'observed_at' | 'previous_rank' | 'skill_level' | 'steam_id' + + +/** aggregate stddev on columns */ +export interface player_faceit_rank_history_stddev_fields { + elo: (Scalars['Float'] | null) + previous_rank: (Scalars['Float'] | null) + skill_level: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'player_faceit_rank_history_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface player_faceit_rank_history_stddev_pop_fields { + elo: (Scalars['Float'] | null) + previous_rank: (Scalars['Float'] | null) + skill_level: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'player_faceit_rank_history_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface player_faceit_rank_history_stddev_samp_fields { + elo: (Scalars['Float'] | null) + previous_rank: (Scalars['Float'] | null) + skill_level: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'player_faceit_rank_history_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface player_faceit_rank_history_sum_fields { + elo: (Scalars['Int'] | null) + previous_rank: (Scalars['Int'] | null) + skill_level: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'player_faceit_rank_history_sum_fields' +} + + +/** update columns of table "player_faceit_rank_history" */ +export type player_faceit_rank_history_update_column = 'elo' | 'id' | 'match_id' | 'observed_at' | 'previous_rank' | 'skill_level' | 'steam_id' + + +/** aggregate var_pop on columns */ +export interface player_faceit_rank_history_var_pop_fields { + elo: (Scalars['Float'] | null) + previous_rank: (Scalars['Float'] | null) + skill_level: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'player_faceit_rank_history_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface player_faceit_rank_history_var_samp_fields { + elo: (Scalars['Float'] | null) + previous_rank: (Scalars['Float'] | null) + skill_level: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'player_faceit_rank_history_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface player_faceit_rank_history_variance_fields { + elo: (Scalars['Float'] | null) + previous_rank: (Scalars['Float'] | null) + skill_level: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'player_faceit_rank_history_variance_fields' +} + + +/** columns and relationships of "player_flashes" */ +export interface player_flashes { + attacked_steam_id: Scalars['bigint'] + attacker_steam_id: Scalars['bigint'] + /** An object relationship */ + blinded: players + deleted_at: (Scalars['timestamptz'] | null) + duration: Scalars['numeric'] + /** An object relationship */ + match: matches + match_id: Scalars['uuid'] + /** An object relationship */ + match_map: match_maps + match_map_id: Scalars['uuid'] + round: Scalars['Int'] + team_flash: Scalars['Boolean'] + /** An object relationship */ + thrown_by: players + time: Scalars['timestamptz'] + __typename: 'player_flashes' +} + + +/** aggregated selection of "player_flashes" */ +export interface player_flashes_aggregate { + aggregate: (player_flashes_aggregate_fields | null) + nodes: player_flashes[] + __typename: 'player_flashes_aggregate' +} + + +/** aggregate fields of "player_flashes" */ +export interface player_flashes_aggregate_fields { + avg: (player_flashes_avg_fields | null) + count: Scalars['Int'] + max: (player_flashes_max_fields | null) + min: (player_flashes_min_fields | null) + stddev: (player_flashes_stddev_fields | null) + stddev_pop: (player_flashes_stddev_pop_fields | null) + stddev_samp: (player_flashes_stddev_samp_fields | null) + sum: (player_flashes_sum_fields | null) + var_pop: (player_flashes_var_pop_fields | null) + var_samp: (player_flashes_var_samp_fields | null) + variance: (player_flashes_variance_fields | null) + __typename: 'player_flashes_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface player_flashes_avg_fields { + attacked_steam_id: (Scalars['Float'] | null) + attacker_steam_id: (Scalars['Float'] | null) + duration: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'player_flashes_avg_fields' +} + + +/** unique or primary key constraints on table "player_flashes" */ +export type player_flashes_constraint = 'player_flashes_pkey' + + +/** aggregate max on columns */ +export interface player_flashes_max_fields { + attacked_steam_id: (Scalars['bigint'] | null) + attacker_steam_id: (Scalars['bigint'] | null) + deleted_at: (Scalars['timestamptz'] | null) + duration: (Scalars['numeric'] | null) + match_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + round: (Scalars['Int'] | null) + time: (Scalars['timestamptz'] | null) + __typename: 'player_flashes_max_fields' +} + + +/** aggregate min on columns */ +export interface player_flashes_min_fields { + attacked_steam_id: (Scalars['bigint'] | null) + attacker_steam_id: (Scalars['bigint'] | null) + deleted_at: (Scalars['timestamptz'] | null) + duration: (Scalars['numeric'] | null) + match_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + round: (Scalars['Int'] | null) + time: (Scalars['timestamptz'] | null) + __typename: 'player_flashes_min_fields' +} + + +/** response of any mutation on the table "player_flashes" */ +export interface player_flashes_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: player_flashes[] + __typename: 'player_flashes_mutation_response' +} + + +/** select columns of table "player_flashes" */ +export type player_flashes_select_column = 'attacked_steam_id' | 'attacker_steam_id' | 'deleted_at' | 'duration' | 'match_id' | 'match_map_id' | 'round' | 'team_flash' | 'time' + + +/** select "player_flashes_aggregate_bool_exp_bool_and_arguments_columns" columns of table "player_flashes" */ +export type player_flashes_select_column_player_flashes_aggregate_bool_exp_bool_and_arguments_columns = 'team_flash' + + +/** select "player_flashes_aggregate_bool_exp_bool_or_arguments_columns" columns of table "player_flashes" */ +export type player_flashes_select_column_player_flashes_aggregate_bool_exp_bool_or_arguments_columns = 'team_flash' + + +/** aggregate stddev on columns */ +export interface player_flashes_stddev_fields { + attacked_steam_id: (Scalars['Float'] | null) + attacker_steam_id: (Scalars['Float'] | null) + duration: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'player_flashes_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface player_flashes_stddev_pop_fields { + attacked_steam_id: (Scalars['Float'] | null) + attacker_steam_id: (Scalars['Float'] | null) + duration: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'player_flashes_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface player_flashes_stddev_samp_fields { + attacked_steam_id: (Scalars['Float'] | null) + attacker_steam_id: (Scalars['Float'] | null) + duration: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'player_flashes_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface player_flashes_sum_fields { + attacked_steam_id: (Scalars['bigint'] | null) + attacker_steam_id: (Scalars['bigint'] | null) + duration: (Scalars['numeric'] | null) + round: (Scalars['Int'] | null) + __typename: 'player_flashes_sum_fields' +} + + +/** update columns of table "player_flashes" */ +export type player_flashes_update_column = 'attacked_steam_id' | 'attacker_steam_id' | 'deleted_at' | 'duration' | 'match_id' | 'match_map_id' | 'round' | 'team_flash' | 'time' + + +/** aggregate var_pop on columns */ +export interface player_flashes_var_pop_fields { + attacked_steam_id: (Scalars['Float'] | null) + attacker_steam_id: (Scalars['Float'] | null) + duration: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'player_flashes_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface player_flashes_var_samp_fields { + attacked_steam_id: (Scalars['Float'] | null) + attacker_steam_id: (Scalars['Float'] | null) + duration: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'player_flashes_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface player_flashes_variance_fields { + attacked_steam_id: (Scalars['Float'] | null) + attacker_steam_id: (Scalars['Float'] | null) + duration: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'player_flashes_variance_fields' +} + + +/** columns and relationships of "player_kills" */ +export interface player_kills { + assisted: Scalars['Boolean'] + attacked_location: Scalars['String'] + attacked_location_coordinates: (Scalars['String'] | null) + /** An object relationship */ + attacked_player: players + attacked_steam_id: Scalars['bigint'] + attacked_team: Scalars['String'] + attacker_location: (Scalars['String'] | null) + attacker_location_coordinates: (Scalars['String'] | null) + attacker_steam_id: Scalars['bigint'] + attacker_team: (Scalars['String'] | null) + blinded: Scalars['Boolean'] + deleted_at: (Scalars['timestamptz'] | null) + headshot: Scalars['Boolean'] + hitgroup: Scalars['String'] + in_air: Scalars['Boolean'] + /** A computed field, executes function "is_suicide" */ + is_suicide: (Scalars['Boolean'] | null) + /** An object relationship */ + match: matches + match_id: Scalars['uuid'] + /** An object relationship */ + match_map: match_maps + match_map_id: Scalars['uuid'] + no_scope: Scalars['Boolean'] + /** An object relationship */ + player: players + round: Scalars['Int'] + /** A computed field, executes function "is_team_kill" */ + team_kill: (Scalars['Boolean'] | null) + thru_smoke: Scalars['Boolean'] + thru_wall: Scalars['Boolean'] + time: Scalars['timestamptz'] + with: (Scalars['String'] | null) + __typename: 'player_kills' +} + + +/** aggregated selection of "player_kills" */ +export interface player_kills_aggregate { + aggregate: (player_kills_aggregate_fields | null) + nodes: player_kills[] + __typename: 'player_kills_aggregate' +} + + +/** aggregate fields of "player_kills" */ +export interface player_kills_aggregate_fields { + avg: (player_kills_avg_fields | null) + count: Scalars['Int'] + max: (player_kills_max_fields | null) + min: (player_kills_min_fields | null) + stddev: (player_kills_stddev_fields | null) + stddev_pop: (player_kills_stddev_pop_fields | null) + stddev_samp: (player_kills_stddev_samp_fields | null) + sum: (player_kills_sum_fields | null) + var_pop: (player_kills_var_pop_fields | null) + var_samp: (player_kills_var_samp_fields | null) + variance: (player_kills_variance_fields | null) + __typename: 'player_kills_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface player_kills_avg_fields { + attacked_steam_id: (Scalars['Float'] | null) + attacker_steam_id: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'player_kills_avg_fields' +} + + +/** columns and relationships of "player_kills_by_weapon" */ +export interface player_kills_by_weapon { + kill_count: Scalars['bigint'] + /** An object relationship */ + player: players + player_steam_id: Scalars['bigint'] + with: Scalars['String'] + __typename: 'player_kills_by_weapon' +} + + +/** aggregated selection of "player_kills_by_weapon" */ +export interface player_kills_by_weapon_aggregate { + aggregate: (player_kills_by_weapon_aggregate_fields | null) + nodes: player_kills_by_weapon[] + __typename: 'player_kills_by_weapon_aggregate' +} + + +/** aggregate fields of "player_kills_by_weapon" */ +export interface player_kills_by_weapon_aggregate_fields { + avg: (player_kills_by_weapon_avg_fields | null) + count: Scalars['Int'] + max: (player_kills_by_weapon_max_fields | null) + min: (player_kills_by_weapon_min_fields | null) + stddev: (player_kills_by_weapon_stddev_fields | null) + stddev_pop: (player_kills_by_weapon_stddev_pop_fields | null) + stddev_samp: (player_kills_by_weapon_stddev_samp_fields | null) + sum: (player_kills_by_weapon_sum_fields | null) + var_pop: (player_kills_by_weapon_var_pop_fields | null) + var_samp: (player_kills_by_weapon_var_samp_fields | null) + variance: (player_kills_by_weapon_variance_fields | null) + __typename: 'player_kills_by_weapon_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface player_kills_by_weapon_avg_fields { + kill_count: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'player_kills_by_weapon_avg_fields' +} + + +/** unique or primary key constraints on table "player_kills_by_weapon" */ +export type player_kills_by_weapon_constraint = 'player_kills_by_weapon_pkey' + + +/** aggregate max on columns */ +export interface player_kills_by_weapon_max_fields { + kill_count: (Scalars['bigint'] | null) + player_steam_id: (Scalars['bigint'] | null) + with: (Scalars['String'] | null) + __typename: 'player_kills_by_weapon_max_fields' +} + + +/** aggregate min on columns */ +export interface player_kills_by_weapon_min_fields { + kill_count: (Scalars['bigint'] | null) + player_steam_id: (Scalars['bigint'] | null) + with: (Scalars['String'] | null) + __typename: 'player_kills_by_weapon_min_fields' +} + + +/** response of any mutation on the table "player_kills_by_weapon" */ +export interface player_kills_by_weapon_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: player_kills_by_weapon[] + __typename: 'player_kills_by_weapon_mutation_response' +} + + +/** select columns of table "player_kills_by_weapon" */ +export type player_kills_by_weapon_select_column = 'kill_count' | 'player_steam_id' | 'with' + + +/** aggregate stddev on columns */ +export interface player_kills_by_weapon_stddev_fields { + kill_count: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'player_kills_by_weapon_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface player_kills_by_weapon_stddev_pop_fields { + kill_count: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'player_kills_by_weapon_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface player_kills_by_weapon_stddev_samp_fields { + kill_count: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'player_kills_by_weapon_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface player_kills_by_weapon_sum_fields { + kill_count: (Scalars['bigint'] | null) + player_steam_id: (Scalars['bigint'] | null) + __typename: 'player_kills_by_weapon_sum_fields' +} + + +/** update columns of table "player_kills_by_weapon" */ +export type player_kills_by_weapon_update_column = 'kill_count' | 'player_steam_id' | 'with' + + +/** aggregate var_pop on columns */ +export interface player_kills_by_weapon_var_pop_fields { + kill_count: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'player_kills_by_weapon_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface player_kills_by_weapon_var_samp_fields { + kill_count: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'player_kills_by_weapon_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface player_kills_by_weapon_variance_fields { + kill_count: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'player_kills_by_weapon_variance_fields' +} + + +/** unique or primary key constraints on table "player_kills" */ +export type player_kills_constraint = 'player_kills_pkey' + + +/** aggregate max on columns */ +export interface player_kills_max_fields { + attacked_location: (Scalars['String'] | null) + attacked_location_coordinates: (Scalars['String'] | null) + attacked_steam_id: (Scalars['bigint'] | null) + attacked_team: (Scalars['String'] | null) + attacker_location: (Scalars['String'] | null) + attacker_location_coordinates: (Scalars['String'] | null) + attacker_steam_id: (Scalars['bigint'] | null) + attacker_team: (Scalars['String'] | null) + deleted_at: (Scalars['timestamptz'] | null) + hitgroup: (Scalars['String'] | null) + match_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + round: (Scalars['Int'] | null) + time: (Scalars['timestamptz'] | null) + with: (Scalars['String'] | null) + __typename: 'player_kills_max_fields' +} + + +/** aggregate min on columns */ +export interface player_kills_min_fields { + attacked_location: (Scalars['String'] | null) + attacked_location_coordinates: (Scalars['String'] | null) + attacked_steam_id: (Scalars['bigint'] | null) + attacked_team: (Scalars['String'] | null) + attacker_location: (Scalars['String'] | null) + attacker_location_coordinates: (Scalars['String'] | null) + attacker_steam_id: (Scalars['bigint'] | null) + attacker_team: (Scalars['String'] | null) + deleted_at: (Scalars['timestamptz'] | null) + hitgroup: (Scalars['String'] | null) + match_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + round: (Scalars['Int'] | null) + time: (Scalars['timestamptz'] | null) + with: (Scalars['String'] | null) + __typename: 'player_kills_min_fields' +} + + +/** response of any mutation on the table "player_kills" */ +export interface player_kills_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: player_kills[] + __typename: 'player_kills_mutation_response' +} + + +/** select columns of table "player_kills" */ +export type player_kills_select_column = 'assisted' | 'attacked_location' | 'attacked_location_coordinates' | 'attacked_steam_id' | 'attacked_team' | 'attacker_location' | 'attacker_location_coordinates' | 'attacker_steam_id' | 'attacker_team' | 'blinded' | 'deleted_at' | 'headshot' | 'hitgroup' | 'in_air' | 'match_id' | 'match_map_id' | 'no_scope' | 'round' | 'thru_smoke' | 'thru_wall' | 'time' | 'with' + + +/** select "player_kills_aggregate_bool_exp_bool_and_arguments_columns" columns of table "player_kills" */ +export type player_kills_select_column_player_kills_aggregate_bool_exp_bool_and_arguments_columns = 'assisted' | 'blinded' | 'headshot' | 'in_air' | 'no_scope' | 'thru_smoke' | 'thru_wall' + + +/** select "player_kills_aggregate_bool_exp_bool_or_arguments_columns" columns of table "player_kills" */ +export type player_kills_select_column_player_kills_aggregate_bool_exp_bool_or_arguments_columns = 'assisted' | 'blinded' | 'headshot' | 'in_air' | 'no_scope' | 'thru_smoke' | 'thru_wall' + + +/** aggregate stddev on columns */ +export interface player_kills_stddev_fields { + attacked_steam_id: (Scalars['Float'] | null) + attacker_steam_id: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'player_kills_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface player_kills_stddev_pop_fields { + attacked_steam_id: (Scalars['Float'] | null) + attacker_steam_id: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'player_kills_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface player_kills_stddev_samp_fields { + attacked_steam_id: (Scalars['Float'] | null) + attacker_steam_id: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'player_kills_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface player_kills_sum_fields { + attacked_steam_id: (Scalars['bigint'] | null) + attacker_steam_id: (Scalars['bigint'] | null) + round: (Scalars['Int'] | null) + __typename: 'player_kills_sum_fields' +} + + +/** update columns of table "player_kills" */ +export type player_kills_update_column = 'assisted' | 'attacked_location' | 'attacked_location_coordinates' | 'attacked_steam_id' | 'attacked_team' | 'attacker_location' | 'attacker_location_coordinates' | 'attacker_steam_id' | 'attacker_team' | 'blinded' | 'deleted_at' | 'headshot' | 'hitgroup' | 'in_air' | 'match_id' | 'match_map_id' | 'no_scope' | 'round' | 'thru_smoke' | 'thru_wall' | 'time' | 'with' + + +/** aggregate var_pop on columns */ +export interface player_kills_var_pop_fields { + attacked_steam_id: (Scalars['Float'] | null) + attacker_steam_id: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'player_kills_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface player_kills_var_samp_fields { + attacked_steam_id: (Scalars['Float'] | null) + attacker_steam_id: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'player_kills_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface player_kills_variance_fields { + attacked_steam_id: (Scalars['Float'] | null) + attacker_steam_id: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'player_kills_variance_fields' +} + + +/** columns and relationships of "player_leaderboard_rank" */ +export interface player_leaderboard_rank { + player_steam_id: Scalars['String'] + rank: Scalars['Int'] + total: Scalars['Int'] + value: Scalars['float8'] + __typename: 'player_leaderboard_rank' +} + +export interface player_leaderboard_rank_aggregate { + aggregate: (player_leaderboard_rank_aggregate_fields | null) + nodes: player_leaderboard_rank[] + __typename: 'player_leaderboard_rank_aggregate' +} + + +/** aggregate fields of "player_leaderboard_rank" */ +export interface player_leaderboard_rank_aggregate_fields { + avg: (player_leaderboard_rank_avg_fields | null) + count: Scalars['Int'] + max: (player_leaderboard_rank_max_fields | null) + min: (player_leaderboard_rank_min_fields | null) + stddev: (player_leaderboard_rank_stddev_fields | null) + stddev_pop: (player_leaderboard_rank_stddev_pop_fields | null) + stddev_samp: (player_leaderboard_rank_stddev_samp_fields | null) + sum: (player_leaderboard_rank_sum_fields | null) + var_pop: (player_leaderboard_rank_var_pop_fields | null) + var_samp: (player_leaderboard_rank_var_samp_fields | null) + variance: (player_leaderboard_rank_variance_fields | null) + __typename: 'player_leaderboard_rank_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface player_leaderboard_rank_avg_fields { + rank: (Scalars['Float'] | null) + total: (Scalars['Float'] | null) + value: (Scalars['Float'] | null) + __typename: 'player_leaderboard_rank_avg_fields' +} + + +/** aggregate max on columns */ +export interface player_leaderboard_rank_max_fields { + player_steam_id: (Scalars['String'] | null) + rank: (Scalars['Int'] | null) + total: (Scalars['Int'] | null) + value: (Scalars['float8'] | null) + __typename: 'player_leaderboard_rank_max_fields' +} + + +/** aggregate min on columns */ +export interface player_leaderboard_rank_min_fields { + player_steam_id: (Scalars['String'] | null) + rank: (Scalars['Int'] | null) + total: (Scalars['Int'] | null) + value: (Scalars['float8'] | null) + __typename: 'player_leaderboard_rank_min_fields' +} + + +/** response of any mutation on the table "player_leaderboard_rank" */ +export interface player_leaderboard_rank_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: player_leaderboard_rank[] + __typename: 'player_leaderboard_rank_mutation_response' +} + + +/** select columns of table "player_leaderboard_rank" */ +export type player_leaderboard_rank_select_column = 'player_steam_id' | 'rank' | 'total' | 'value' + + +/** aggregate stddev on columns */ +export interface player_leaderboard_rank_stddev_fields { + rank: (Scalars['Float'] | null) + total: (Scalars['Float'] | null) + value: (Scalars['Float'] | null) + __typename: 'player_leaderboard_rank_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface player_leaderboard_rank_stddev_pop_fields { + rank: (Scalars['Float'] | null) + total: (Scalars['Float'] | null) + value: (Scalars['Float'] | null) + __typename: 'player_leaderboard_rank_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface player_leaderboard_rank_stddev_samp_fields { + rank: (Scalars['Float'] | null) + total: (Scalars['Float'] | null) + value: (Scalars['Float'] | null) + __typename: 'player_leaderboard_rank_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface player_leaderboard_rank_sum_fields { + rank: (Scalars['Int'] | null) + total: (Scalars['Int'] | null) + value: (Scalars['float8'] | null) + __typename: 'player_leaderboard_rank_sum_fields' +} + + +/** aggregate var_pop on columns */ +export interface player_leaderboard_rank_var_pop_fields { + rank: (Scalars['Float'] | null) + total: (Scalars['Float'] | null) + value: (Scalars['Float'] | null) + __typename: 'player_leaderboard_rank_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface player_leaderboard_rank_var_samp_fields { + rank: (Scalars['Float'] | null) + total: (Scalars['Float'] | null) + value: (Scalars['Float'] | null) + __typename: 'player_leaderboard_rank_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface player_leaderboard_rank_variance_fields { + rank: (Scalars['Float'] | null) + total: (Scalars['Float'] | null) + value: (Scalars['Float'] | null) + __typename: 'player_leaderboard_rank_variance_fields' +} + + +/** columns and relationships of "player_match_map_stats" */ +export interface player_match_map_stats { + assists: Scalars['Int'] + assists_ct: Scalars['Int'] + assists_t: Scalars['Int'] + counter_strafe_eligible_shots: Scalars['Int'] + counter_strafed_shots: Scalars['Int'] + crosshair_angle_count: Scalars['Int'] + crosshair_angle_sum_deg: Scalars['numeric'] + damage: Scalars['Int'] + damage_ct: Scalars['Int'] + damage_t: Scalars['Int'] + deaths: Scalars['Int'] + deaths_ct: Scalars['Int'] + deaths_t: Scalars['Int'] + decoy_throws: Scalars['Int'] + enemies_flashed: Scalars['Int'] + first_bullet_hits: Scalars['Int'] + first_bullet_shots: Scalars['Int'] + five_kill_rounds: Scalars['Int'] + flash_assists: Scalars['Int'] + flash_duration_count: Scalars['Int'] + flash_duration_sum: Scalars['numeric'] + flashes_thrown: Scalars['Int'] + four_kill_rounds: Scalars['Int'] + he_damage: Scalars['Int'] + he_team_damage: Scalars['Int'] + he_throws: Scalars['Int'] + headshot_hits: Scalars['Int'] + hits: Scalars['Int'] + hits_at_spotted: Scalars['Int'] + hs_kills: Scalars['Int'] + hs_kills_ct: Scalars['Int'] + hs_kills_t: Scalars['Int'] + kast_rounds: Scalars['Int'] + kast_total_rounds: Scalars['Int'] + kills: Scalars['Int'] + kills_ct: Scalars['Int'] + kills_t: Scalars['Int'] + knife_kills: Scalars['Int'] + /** An object relationship */ + match: matches + match_id: Scalars['uuid'] + /** An object relationship */ + match_map: match_maps + match_map_id: Scalars['uuid'] + molotov_damage: Scalars['Int'] + molotov_throws: Scalars['Int'] + non_awp_hits: Scalars['Int'] + on_target_frames: Scalars['Int'] + /** An object relationship */ + player: players + rounds_ct: Scalars['Int'] + rounds_played: Scalars['Int'] + rounds_t: Scalars['Int'] + shots_at_spotted: Scalars['Int'] + shots_fired: Scalars['Int'] + smoke_throws: Scalars['Int'] + spotted_count: Scalars['Int'] + spotted_with_damage_count: Scalars['Int'] + spray_hits: Scalars['Int'] + spray_shots: Scalars['Int'] + steam_id: Scalars['bigint'] + team_damage: Scalars['Int'] + team_flashed: Scalars['Int'] + three_kill_rounds: Scalars['Int'] + time_to_damage_count: Scalars['Int'] + time_to_damage_sum_s: Scalars['numeric'] + total_engagement_frames: Scalars['Int'] + trade_kill_attempts: Scalars['Int'] + trade_kill_opportunities: Scalars['Int'] + trade_kill_successes: Scalars['Int'] + traded_death_attempts: Scalars['Int'] + traded_death_opportunities: Scalars['Int'] + traded_death_successes: Scalars['Int'] + two_kill_rounds: Scalars['Int'] + unused_utility_value: Scalars['Int'] + updated_at: Scalars['timestamptz'] + util_on_death_count: Scalars['Int'] + util_on_death_sum: Scalars['Int'] + wasted_magazine_shots: Scalars['Int'] + zeus_kills: Scalars['Int'] + __typename: 'player_match_map_stats' +} + + +/** aggregated selection of "player_match_map_stats" */ +export interface player_match_map_stats_aggregate { + aggregate: (player_match_map_stats_aggregate_fields | null) + nodes: player_match_map_stats[] + __typename: 'player_match_map_stats_aggregate' +} + + +/** aggregate fields of "player_match_map_stats" */ +export interface player_match_map_stats_aggregate_fields { + avg: (player_match_map_stats_avg_fields | null) + count: Scalars['Int'] + max: (player_match_map_stats_max_fields | null) + min: (player_match_map_stats_min_fields | null) + stddev: (player_match_map_stats_stddev_fields | null) + stddev_pop: (player_match_map_stats_stddev_pop_fields | null) + stddev_samp: (player_match_map_stats_stddev_samp_fields | null) + sum: (player_match_map_stats_sum_fields | null) + var_pop: (player_match_map_stats_var_pop_fields | null) + var_samp: (player_match_map_stats_var_samp_fields | null) + variance: (player_match_map_stats_variance_fields | null) + __typename: 'player_match_map_stats_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface player_match_map_stats_avg_fields { + assists: (Scalars['Float'] | null) + assists_ct: (Scalars['Float'] | null) + assists_t: (Scalars['Float'] | null) + counter_strafe_eligible_shots: (Scalars['Float'] | null) + counter_strafed_shots: (Scalars['Float'] | null) + crosshair_angle_count: (Scalars['Float'] | null) + crosshair_angle_sum_deg: (Scalars['Float'] | null) + damage: (Scalars['Float'] | null) + damage_ct: (Scalars['Float'] | null) + damage_t: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + deaths_ct: (Scalars['Float'] | null) + deaths_t: (Scalars['Float'] | null) + decoy_throws: (Scalars['Float'] | null) + enemies_flashed: (Scalars['Float'] | null) + first_bullet_hits: (Scalars['Float'] | null) + first_bullet_shots: (Scalars['Float'] | null) + five_kill_rounds: (Scalars['Float'] | null) + flash_assists: (Scalars['Float'] | null) + flash_duration_count: (Scalars['Float'] | null) + flash_duration_sum: (Scalars['Float'] | null) + flashes_thrown: (Scalars['Float'] | null) + four_kill_rounds: (Scalars['Float'] | null) + he_damage: (Scalars['Float'] | null) + he_team_damage: (Scalars['Float'] | null) + he_throws: (Scalars['Float'] | null) + headshot_hits: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + hits_at_spotted: (Scalars['Float'] | null) + hs_kills: (Scalars['Float'] | null) + hs_kills_ct: (Scalars['Float'] | null) + hs_kills_t: (Scalars['Float'] | null) + kast_rounds: (Scalars['Float'] | null) + kast_total_rounds: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + kills_ct: (Scalars['Float'] | null) + kills_t: (Scalars['Float'] | null) + knife_kills: (Scalars['Float'] | null) + molotov_damage: (Scalars['Float'] | null) + molotov_throws: (Scalars['Float'] | null) + non_awp_hits: (Scalars['Float'] | null) + on_target_frames: (Scalars['Float'] | null) + rounds_ct: (Scalars['Float'] | null) + rounds_played: (Scalars['Float'] | null) + rounds_t: (Scalars['Float'] | null) + shots_at_spotted: (Scalars['Float'] | null) + shots_fired: (Scalars['Float'] | null) + smoke_throws: (Scalars['Float'] | null) + spotted_count: (Scalars['Float'] | null) + spotted_with_damage_count: (Scalars['Float'] | null) + spray_hits: (Scalars['Float'] | null) + spray_shots: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + team_damage: (Scalars['Float'] | null) + team_flashed: (Scalars['Float'] | null) + three_kill_rounds: (Scalars['Float'] | null) + time_to_damage_count: (Scalars['Float'] | null) + time_to_damage_sum_s: (Scalars['Float'] | null) + total_engagement_frames: (Scalars['Float'] | null) + trade_kill_attempts: (Scalars['Float'] | null) + trade_kill_opportunities: (Scalars['Float'] | null) + trade_kill_successes: (Scalars['Float'] | null) + traded_death_attempts: (Scalars['Float'] | null) + traded_death_opportunities: (Scalars['Float'] | null) + traded_death_successes: (Scalars['Float'] | null) + two_kill_rounds: (Scalars['Float'] | null) + unused_utility_value: (Scalars['Float'] | null) + util_on_death_count: (Scalars['Float'] | null) + util_on_death_sum: (Scalars['Float'] | null) + wasted_magazine_shots: (Scalars['Float'] | null) + zeus_kills: (Scalars['Float'] | null) + __typename: 'player_match_map_stats_avg_fields' +} + + +/** unique or primary key constraints on table "player_match_map_stats" */ +export type player_match_map_stats_constraint = 'player_match_map_stats_pkey' + + +/** aggregate max on columns */ +export interface player_match_map_stats_max_fields { + assists: (Scalars['Int'] | null) + assists_ct: (Scalars['Int'] | null) + assists_t: (Scalars['Int'] | null) + counter_strafe_eligible_shots: (Scalars['Int'] | null) + counter_strafed_shots: (Scalars['Int'] | null) + crosshair_angle_count: (Scalars['Int'] | null) + crosshair_angle_sum_deg: (Scalars['numeric'] | null) + damage: (Scalars['Int'] | null) + damage_ct: (Scalars['Int'] | null) + damage_t: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) + deaths_ct: (Scalars['Int'] | null) + deaths_t: (Scalars['Int'] | null) + decoy_throws: (Scalars['Int'] | null) + enemies_flashed: (Scalars['Int'] | null) + first_bullet_hits: (Scalars['Int'] | null) + first_bullet_shots: (Scalars['Int'] | null) + five_kill_rounds: (Scalars['Int'] | null) + flash_assists: (Scalars['Int'] | null) + flash_duration_count: (Scalars['Int'] | null) + flash_duration_sum: (Scalars['numeric'] | null) + flashes_thrown: (Scalars['Int'] | null) + four_kill_rounds: (Scalars['Int'] | null) + he_damage: (Scalars['Int'] | null) + he_team_damage: (Scalars['Int'] | null) + he_throws: (Scalars['Int'] | null) + headshot_hits: (Scalars['Int'] | null) + hits: (Scalars['Int'] | null) + hits_at_spotted: (Scalars['Int'] | null) + hs_kills: (Scalars['Int'] | null) + hs_kills_ct: (Scalars['Int'] | null) + hs_kills_t: (Scalars['Int'] | null) + kast_rounds: (Scalars['Int'] | null) + kast_total_rounds: (Scalars['Int'] | null) + kills: (Scalars['Int'] | null) + kills_ct: (Scalars['Int'] | null) + kills_t: (Scalars['Int'] | null) + knife_kills: (Scalars['Int'] | null) + match_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + molotov_damage: (Scalars['Int'] | null) + molotov_throws: (Scalars['Int'] | null) + non_awp_hits: (Scalars['Int'] | null) + on_target_frames: (Scalars['Int'] | null) + rounds_ct: (Scalars['Int'] | null) + rounds_played: (Scalars['Int'] | null) + rounds_t: (Scalars['Int'] | null) + shots_at_spotted: (Scalars['Int'] | null) + shots_fired: (Scalars['Int'] | null) + smoke_throws: (Scalars['Int'] | null) + spotted_count: (Scalars['Int'] | null) + spotted_with_damage_count: (Scalars['Int'] | null) + spray_hits: (Scalars['Int'] | null) + spray_shots: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + team_damage: (Scalars['Int'] | null) + team_flashed: (Scalars['Int'] | null) + three_kill_rounds: (Scalars['Int'] | null) + time_to_damage_count: (Scalars['Int'] | null) + time_to_damage_sum_s: (Scalars['numeric'] | null) + total_engagement_frames: (Scalars['Int'] | null) + trade_kill_attempts: (Scalars['Int'] | null) + trade_kill_opportunities: (Scalars['Int'] | null) + trade_kill_successes: (Scalars['Int'] | null) + traded_death_attempts: (Scalars['Int'] | null) + traded_death_opportunities: (Scalars['Int'] | null) + traded_death_successes: (Scalars['Int'] | null) + two_kill_rounds: (Scalars['Int'] | null) + unused_utility_value: (Scalars['Int'] | null) + updated_at: (Scalars['timestamptz'] | null) + util_on_death_count: (Scalars['Int'] | null) + util_on_death_sum: (Scalars['Int'] | null) + wasted_magazine_shots: (Scalars['Int'] | null) + zeus_kills: (Scalars['Int'] | null) + __typename: 'player_match_map_stats_max_fields' +} + + +/** aggregate min on columns */ +export interface player_match_map_stats_min_fields { + assists: (Scalars['Int'] | null) + assists_ct: (Scalars['Int'] | null) + assists_t: (Scalars['Int'] | null) + counter_strafe_eligible_shots: (Scalars['Int'] | null) + counter_strafed_shots: (Scalars['Int'] | null) + crosshair_angle_count: (Scalars['Int'] | null) + crosshair_angle_sum_deg: (Scalars['numeric'] | null) + damage: (Scalars['Int'] | null) + damage_ct: (Scalars['Int'] | null) + damage_t: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) + deaths_ct: (Scalars['Int'] | null) + deaths_t: (Scalars['Int'] | null) + decoy_throws: (Scalars['Int'] | null) + enemies_flashed: (Scalars['Int'] | null) + first_bullet_hits: (Scalars['Int'] | null) + first_bullet_shots: (Scalars['Int'] | null) + five_kill_rounds: (Scalars['Int'] | null) + flash_assists: (Scalars['Int'] | null) + flash_duration_count: (Scalars['Int'] | null) + flash_duration_sum: (Scalars['numeric'] | null) + flashes_thrown: (Scalars['Int'] | null) + four_kill_rounds: (Scalars['Int'] | null) + he_damage: (Scalars['Int'] | null) + he_team_damage: (Scalars['Int'] | null) + he_throws: (Scalars['Int'] | null) + headshot_hits: (Scalars['Int'] | null) + hits: (Scalars['Int'] | null) + hits_at_spotted: (Scalars['Int'] | null) + hs_kills: (Scalars['Int'] | null) + hs_kills_ct: (Scalars['Int'] | null) + hs_kills_t: (Scalars['Int'] | null) + kast_rounds: (Scalars['Int'] | null) + kast_total_rounds: (Scalars['Int'] | null) + kills: (Scalars['Int'] | null) + kills_ct: (Scalars['Int'] | null) + kills_t: (Scalars['Int'] | null) + knife_kills: (Scalars['Int'] | null) + match_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + molotov_damage: (Scalars['Int'] | null) + molotov_throws: (Scalars['Int'] | null) + non_awp_hits: (Scalars['Int'] | null) + on_target_frames: (Scalars['Int'] | null) + rounds_ct: (Scalars['Int'] | null) + rounds_played: (Scalars['Int'] | null) + rounds_t: (Scalars['Int'] | null) + shots_at_spotted: (Scalars['Int'] | null) + shots_fired: (Scalars['Int'] | null) + smoke_throws: (Scalars['Int'] | null) + spotted_count: (Scalars['Int'] | null) + spotted_with_damage_count: (Scalars['Int'] | null) + spray_hits: (Scalars['Int'] | null) + spray_shots: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + team_damage: (Scalars['Int'] | null) + team_flashed: (Scalars['Int'] | null) + three_kill_rounds: (Scalars['Int'] | null) + time_to_damage_count: (Scalars['Int'] | null) + time_to_damage_sum_s: (Scalars['numeric'] | null) + total_engagement_frames: (Scalars['Int'] | null) + trade_kill_attempts: (Scalars['Int'] | null) + trade_kill_opportunities: (Scalars['Int'] | null) + trade_kill_successes: (Scalars['Int'] | null) + traded_death_attempts: (Scalars['Int'] | null) + traded_death_opportunities: (Scalars['Int'] | null) + traded_death_successes: (Scalars['Int'] | null) + two_kill_rounds: (Scalars['Int'] | null) + unused_utility_value: (Scalars['Int'] | null) + updated_at: (Scalars['timestamptz'] | null) + util_on_death_count: (Scalars['Int'] | null) + util_on_death_sum: (Scalars['Int'] | null) + wasted_magazine_shots: (Scalars['Int'] | null) + zeus_kills: (Scalars['Int'] | null) + __typename: 'player_match_map_stats_min_fields' +} + + +/** response of any mutation on the table "player_match_map_stats" */ +export interface player_match_map_stats_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: player_match_map_stats[] + __typename: 'player_match_map_stats_mutation_response' +} + + +/** select columns of table "player_match_map_stats" */ +export type player_match_map_stats_select_column = 'assists' | 'assists_ct' | 'assists_t' | 'counter_strafe_eligible_shots' | 'counter_strafed_shots' | 'crosshair_angle_count' | 'crosshair_angle_sum_deg' | 'damage' | 'damage_ct' | 'damage_t' | 'deaths' | 'deaths_ct' | 'deaths_t' | 'decoy_throws' | 'enemies_flashed' | 'first_bullet_hits' | 'first_bullet_shots' | 'five_kill_rounds' | 'flash_assists' | 'flash_duration_count' | 'flash_duration_sum' | 'flashes_thrown' | 'four_kill_rounds' | 'he_damage' | 'he_team_damage' | 'he_throws' | 'headshot_hits' | 'hits' | 'hits_at_spotted' | 'hs_kills' | 'hs_kills_ct' | 'hs_kills_t' | 'kast_rounds' | 'kast_total_rounds' | 'kills' | 'kills_ct' | 'kills_t' | 'knife_kills' | 'match_id' | 'match_map_id' | 'molotov_damage' | 'molotov_throws' | 'non_awp_hits' | 'on_target_frames' | 'rounds_ct' | 'rounds_played' | 'rounds_t' | 'shots_at_spotted' | 'shots_fired' | 'smoke_throws' | 'spotted_count' | 'spotted_with_damage_count' | 'spray_hits' | 'spray_shots' | 'steam_id' | 'team_damage' | 'team_flashed' | 'three_kill_rounds' | 'time_to_damage_count' | 'time_to_damage_sum_s' | 'total_engagement_frames' | 'trade_kill_attempts' | 'trade_kill_opportunities' | 'trade_kill_successes' | 'traded_death_attempts' | 'traded_death_opportunities' | 'traded_death_successes' | 'two_kill_rounds' | 'unused_utility_value' | 'updated_at' | 'util_on_death_count' | 'util_on_death_sum' | 'wasted_magazine_shots' | 'zeus_kills' + + +/** aggregate stddev on columns */ +export interface player_match_map_stats_stddev_fields { + assists: (Scalars['Float'] | null) + assists_ct: (Scalars['Float'] | null) + assists_t: (Scalars['Float'] | null) + counter_strafe_eligible_shots: (Scalars['Float'] | null) + counter_strafed_shots: (Scalars['Float'] | null) + crosshair_angle_count: (Scalars['Float'] | null) + crosshair_angle_sum_deg: (Scalars['Float'] | null) + damage: (Scalars['Float'] | null) + damage_ct: (Scalars['Float'] | null) + damage_t: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + deaths_ct: (Scalars['Float'] | null) + deaths_t: (Scalars['Float'] | null) + decoy_throws: (Scalars['Float'] | null) + enemies_flashed: (Scalars['Float'] | null) + first_bullet_hits: (Scalars['Float'] | null) + first_bullet_shots: (Scalars['Float'] | null) + five_kill_rounds: (Scalars['Float'] | null) + flash_assists: (Scalars['Float'] | null) + flash_duration_count: (Scalars['Float'] | null) + flash_duration_sum: (Scalars['Float'] | null) + flashes_thrown: (Scalars['Float'] | null) + four_kill_rounds: (Scalars['Float'] | null) + he_damage: (Scalars['Float'] | null) + he_team_damage: (Scalars['Float'] | null) + he_throws: (Scalars['Float'] | null) + headshot_hits: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + hits_at_spotted: (Scalars['Float'] | null) + hs_kills: (Scalars['Float'] | null) + hs_kills_ct: (Scalars['Float'] | null) + hs_kills_t: (Scalars['Float'] | null) + kast_rounds: (Scalars['Float'] | null) + kast_total_rounds: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + kills_ct: (Scalars['Float'] | null) + kills_t: (Scalars['Float'] | null) + knife_kills: (Scalars['Float'] | null) + molotov_damage: (Scalars['Float'] | null) + molotov_throws: (Scalars['Float'] | null) + non_awp_hits: (Scalars['Float'] | null) + on_target_frames: (Scalars['Float'] | null) + rounds_ct: (Scalars['Float'] | null) + rounds_played: (Scalars['Float'] | null) + rounds_t: (Scalars['Float'] | null) + shots_at_spotted: (Scalars['Float'] | null) + shots_fired: (Scalars['Float'] | null) + smoke_throws: (Scalars['Float'] | null) + spotted_count: (Scalars['Float'] | null) + spotted_with_damage_count: (Scalars['Float'] | null) + spray_hits: (Scalars['Float'] | null) + spray_shots: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + team_damage: (Scalars['Float'] | null) + team_flashed: (Scalars['Float'] | null) + three_kill_rounds: (Scalars['Float'] | null) + time_to_damage_count: (Scalars['Float'] | null) + time_to_damage_sum_s: (Scalars['Float'] | null) + total_engagement_frames: (Scalars['Float'] | null) + trade_kill_attempts: (Scalars['Float'] | null) + trade_kill_opportunities: (Scalars['Float'] | null) + trade_kill_successes: (Scalars['Float'] | null) + traded_death_attempts: (Scalars['Float'] | null) + traded_death_opportunities: (Scalars['Float'] | null) + traded_death_successes: (Scalars['Float'] | null) + two_kill_rounds: (Scalars['Float'] | null) + unused_utility_value: (Scalars['Float'] | null) + util_on_death_count: (Scalars['Float'] | null) + util_on_death_sum: (Scalars['Float'] | null) + wasted_magazine_shots: (Scalars['Float'] | null) + zeus_kills: (Scalars['Float'] | null) + __typename: 'player_match_map_stats_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface player_match_map_stats_stddev_pop_fields { + assists: (Scalars['Float'] | null) + assists_ct: (Scalars['Float'] | null) + assists_t: (Scalars['Float'] | null) + counter_strafe_eligible_shots: (Scalars['Float'] | null) + counter_strafed_shots: (Scalars['Float'] | null) + crosshair_angle_count: (Scalars['Float'] | null) + crosshair_angle_sum_deg: (Scalars['Float'] | null) + damage: (Scalars['Float'] | null) + damage_ct: (Scalars['Float'] | null) + damage_t: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + deaths_ct: (Scalars['Float'] | null) + deaths_t: (Scalars['Float'] | null) + decoy_throws: (Scalars['Float'] | null) + enemies_flashed: (Scalars['Float'] | null) + first_bullet_hits: (Scalars['Float'] | null) + first_bullet_shots: (Scalars['Float'] | null) + five_kill_rounds: (Scalars['Float'] | null) + flash_assists: (Scalars['Float'] | null) + flash_duration_count: (Scalars['Float'] | null) + flash_duration_sum: (Scalars['Float'] | null) + flashes_thrown: (Scalars['Float'] | null) + four_kill_rounds: (Scalars['Float'] | null) + he_damage: (Scalars['Float'] | null) + he_team_damage: (Scalars['Float'] | null) + he_throws: (Scalars['Float'] | null) + headshot_hits: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + hits_at_spotted: (Scalars['Float'] | null) + hs_kills: (Scalars['Float'] | null) + hs_kills_ct: (Scalars['Float'] | null) + hs_kills_t: (Scalars['Float'] | null) + kast_rounds: (Scalars['Float'] | null) + kast_total_rounds: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + kills_ct: (Scalars['Float'] | null) + kills_t: (Scalars['Float'] | null) + knife_kills: (Scalars['Float'] | null) + molotov_damage: (Scalars['Float'] | null) + molotov_throws: (Scalars['Float'] | null) + non_awp_hits: (Scalars['Float'] | null) + on_target_frames: (Scalars['Float'] | null) + rounds_ct: (Scalars['Float'] | null) + rounds_played: (Scalars['Float'] | null) + rounds_t: (Scalars['Float'] | null) + shots_at_spotted: (Scalars['Float'] | null) + shots_fired: (Scalars['Float'] | null) + smoke_throws: (Scalars['Float'] | null) + spotted_count: (Scalars['Float'] | null) + spotted_with_damage_count: (Scalars['Float'] | null) + spray_hits: (Scalars['Float'] | null) + spray_shots: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + team_damage: (Scalars['Float'] | null) + team_flashed: (Scalars['Float'] | null) + three_kill_rounds: (Scalars['Float'] | null) + time_to_damage_count: (Scalars['Float'] | null) + time_to_damage_sum_s: (Scalars['Float'] | null) + total_engagement_frames: (Scalars['Float'] | null) + trade_kill_attempts: (Scalars['Float'] | null) + trade_kill_opportunities: (Scalars['Float'] | null) + trade_kill_successes: (Scalars['Float'] | null) + traded_death_attempts: (Scalars['Float'] | null) + traded_death_opportunities: (Scalars['Float'] | null) + traded_death_successes: (Scalars['Float'] | null) + two_kill_rounds: (Scalars['Float'] | null) + unused_utility_value: (Scalars['Float'] | null) + util_on_death_count: (Scalars['Float'] | null) + util_on_death_sum: (Scalars['Float'] | null) + wasted_magazine_shots: (Scalars['Float'] | null) + zeus_kills: (Scalars['Float'] | null) + __typename: 'player_match_map_stats_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface player_match_map_stats_stddev_samp_fields { + assists: (Scalars['Float'] | null) + assists_ct: (Scalars['Float'] | null) + assists_t: (Scalars['Float'] | null) + counter_strafe_eligible_shots: (Scalars['Float'] | null) + counter_strafed_shots: (Scalars['Float'] | null) + crosshair_angle_count: (Scalars['Float'] | null) + crosshair_angle_sum_deg: (Scalars['Float'] | null) + damage: (Scalars['Float'] | null) + damage_ct: (Scalars['Float'] | null) + damage_t: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + deaths_ct: (Scalars['Float'] | null) + deaths_t: (Scalars['Float'] | null) + decoy_throws: (Scalars['Float'] | null) + enemies_flashed: (Scalars['Float'] | null) + first_bullet_hits: (Scalars['Float'] | null) + first_bullet_shots: (Scalars['Float'] | null) + five_kill_rounds: (Scalars['Float'] | null) + flash_assists: (Scalars['Float'] | null) + flash_duration_count: (Scalars['Float'] | null) + flash_duration_sum: (Scalars['Float'] | null) + flashes_thrown: (Scalars['Float'] | null) + four_kill_rounds: (Scalars['Float'] | null) + he_damage: (Scalars['Float'] | null) + he_team_damage: (Scalars['Float'] | null) + he_throws: (Scalars['Float'] | null) + headshot_hits: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + hits_at_spotted: (Scalars['Float'] | null) + hs_kills: (Scalars['Float'] | null) + hs_kills_ct: (Scalars['Float'] | null) + hs_kills_t: (Scalars['Float'] | null) + kast_rounds: (Scalars['Float'] | null) + kast_total_rounds: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + kills_ct: (Scalars['Float'] | null) + kills_t: (Scalars['Float'] | null) + knife_kills: (Scalars['Float'] | null) + molotov_damage: (Scalars['Float'] | null) + molotov_throws: (Scalars['Float'] | null) + non_awp_hits: (Scalars['Float'] | null) + on_target_frames: (Scalars['Float'] | null) + rounds_ct: (Scalars['Float'] | null) + rounds_played: (Scalars['Float'] | null) + rounds_t: (Scalars['Float'] | null) + shots_at_spotted: (Scalars['Float'] | null) + shots_fired: (Scalars['Float'] | null) + smoke_throws: (Scalars['Float'] | null) + spotted_count: (Scalars['Float'] | null) + spotted_with_damage_count: (Scalars['Float'] | null) + spray_hits: (Scalars['Float'] | null) + spray_shots: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + team_damage: (Scalars['Float'] | null) + team_flashed: (Scalars['Float'] | null) + three_kill_rounds: (Scalars['Float'] | null) + time_to_damage_count: (Scalars['Float'] | null) + time_to_damage_sum_s: (Scalars['Float'] | null) + total_engagement_frames: (Scalars['Float'] | null) + trade_kill_attempts: (Scalars['Float'] | null) + trade_kill_opportunities: (Scalars['Float'] | null) + trade_kill_successes: (Scalars['Float'] | null) + traded_death_attempts: (Scalars['Float'] | null) + traded_death_opportunities: (Scalars['Float'] | null) + traded_death_successes: (Scalars['Float'] | null) + two_kill_rounds: (Scalars['Float'] | null) + unused_utility_value: (Scalars['Float'] | null) + util_on_death_count: (Scalars['Float'] | null) + util_on_death_sum: (Scalars['Float'] | null) + wasted_magazine_shots: (Scalars['Float'] | null) + zeus_kills: (Scalars['Float'] | null) + __typename: 'player_match_map_stats_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface player_match_map_stats_sum_fields { + assists: (Scalars['Int'] | null) + assists_ct: (Scalars['Int'] | null) + assists_t: (Scalars['Int'] | null) + counter_strafe_eligible_shots: (Scalars['Int'] | null) + counter_strafed_shots: (Scalars['Int'] | null) + crosshair_angle_count: (Scalars['Int'] | null) + crosshair_angle_sum_deg: (Scalars['numeric'] | null) + damage: (Scalars['Int'] | null) + damage_ct: (Scalars['Int'] | null) + damage_t: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) + deaths_ct: (Scalars['Int'] | null) + deaths_t: (Scalars['Int'] | null) + decoy_throws: (Scalars['Int'] | null) + enemies_flashed: (Scalars['Int'] | null) + first_bullet_hits: (Scalars['Int'] | null) + first_bullet_shots: (Scalars['Int'] | null) + five_kill_rounds: (Scalars['Int'] | null) + flash_assists: (Scalars['Int'] | null) + flash_duration_count: (Scalars['Int'] | null) + flash_duration_sum: (Scalars['numeric'] | null) + flashes_thrown: (Scalars['Int'] | null) + four_kill_rounds: (Scalars['Int'] | null) + he_damage: (Scalars['Int'] | null) + he_team_damage: (Scalars['Int'] | null) + he_throws: (Scalars['Int'] | null) + headshot_hits: (Scalars['Int'] | null) + hits: (Scalars['Int'] | null) + hits_at_spotted: (Scalars['Int'] | null) + hs_kills: (Scalars['Int'] | null) + hs_kills_ct: (Scalars['Int'] | null) + hs_kills_t: (Scalars['Int'] | null) + kast_rounds: (Scalars['Int'] | null) + kast_total_rounds: (Scalars['Int'] | null) + kills: (Scalars['Int'] | null) + kills_ct: (Scalars['Int'] | null) + kills_t: (Scalars['Int'] | null) + knife_kills: (Scalars['Int'] | null) + molotov_damage: (Scalars['Int'] | null) + molotov_throws: (Scalars['Int'] | null) + non_awp_hits: (Scalars['Int'] | null) + on_target_frames: (Scalars['Int'] | null) + rounds_ct: (Scalars['Int'] | null) + rounds_played: (Scalars['Int'] | null) + rounds_t: (Scalars['Int'] | null) + shots_at_spotted: (Scalars['Int'] | null) + shots_fired: (Scalars['Int'] | null) + smoke_throws: (Scalars['Int'] | null) + spotted_count: (Scalars['Int'] | null) + spotted_with_damage_count: (Scalars['Int'] | null) + spray_hits: (Scalars['Int'] | null) + spray_shots: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + team_damage: (Scalars['Int'] | null) + team_flashed: (Scalars['Int'] | null) + three_kill_rounds: (Scalars['Int'] | null) + time_to_damage_count: (Scalars['Int'] | null) + time_to_damage_sum_s: (Scalars['numeric'] | null) + total_engagement_frames: (Scalars['Int'] | null) + trade_kill_attempts: (Scalars['Int'] | null) + trade_kill_opportunities: (Scalars['Int'] | null) + trade_kill_successes: (Scalars['Int'] | null) + traded_death_attempts: (Scalars['Int'] | null) + traded_death_opportunities: (Scalars['Int'] | null) + traded_death_successes: (Scalars['Int'] | null) + two_kill_rounds: (Scalars['Int'] | null) + unused_utility_value: (Scalars['Int'] | null) + util_on_death_count: (Scalars['Int'] | null) + util_on_death_sum: (Scalars['Int'] | null) + wasted_magazine_shots: (Scalars['Int'] | null) + zeus_kills: (Scalars['Int'] | null) + __typename: 'player_match_map_stats_sum_fields' +} + + +/** update columns of table "player_match_map_stats" */ +export type player_match_map_stats_update_column = 'assists' | 'assists_ct' | 'assists_t' | 'counter_strafe_eligible_shots' | 'counter_strafed_shots' | 'crosshair_angle_count' | 'crosshair_angle_sum_deg' | 'damage' | 'damage_ct' | 'damage_t' | 'deaths' | 'deaths_ct' | 'deaths_t' | 'decoy_throws' | 'enemies_flashed' | 'first_bullet_hits' | 'first_bullet_shots' | 'five_kill_rounds' | 'flash_assists' | 'flash_duration_count' | 'flash_duration_sum' | 'flashes_thrown' | 'four_kill_rounds' | 'he_damage' | 'he_team_damage' | 'he_throws' | 'headshot_hits' | 'hits' | 'hits_at_spotted' | 'hs_kills' | 'hs_kills_ct' | 'hs_kills_t' | 'kast_rounds' | 'kast_total_rounds' | 'kills' | 'kills_ct' | 'kills_t' | 'knife_kills' | 'match_id' | 'match_map_id' | 'molotov_damage' | 'molotov_throws' | 'non_awp_hits' | 'on_target_frames' | 'rounds_ct' | 'rounds_played' | 'rounds_t' | 'shots_at_spotted' | 'shots_fired' | 'smoke_throws' | 'spotted_count' | 'spotted_with_damage_count' | 'spray_hits' | 'spray_shots' | 'steam_id' | 'team_damage' | 'team_flashed' | 'three_kill_rounds' | 'time_to_damage_count' | 'time_to_damage_sum_s' | 'total_engagement_frames' | 'trade_kill_attempts' | 'trade_kill_opportunities' | 'trade_kill_successes' | 'traded_death_attempts' | 'traded_death_opportunities' | 'traded_death_successes' | 'two_kill_rounds' | 'unused_utility_value' | 'updated_at' | 'util_on_death_count' | 'util_on_death_sum' | 'wasted_magazine_shots' | 'zeus_kills' + + +/** aggregate var_pop on columns */ +export interface player_match_map_stats_var_pop_fields { + assists: (Scalars['Float'] | null) + assists_ct: (Scalars['Float'] | null) + assists_t: (Scalars['Float'] | null) + counter_strafe_eligible_shots: (Scalars['Float'] | null) + counter_strafed_shots: (Scalars['Float'] | null) + crosshair_angle_count: (Scalars['Float'] | null) + crosshair_angle_sum_deg: (Scalars['Float'] | null) + damage: (Scalars['Float'] | null) + damage_ct: (Scalars['Float'] | null) + damage_t: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + deaths_ct: (Scalars['Float'] | null) + deaths_t: (Scalars['Float'] | null) + decoy_throws: (Scalars['Float'] | null) + enemies_flashed: (Scalars['Float'] | null) + first_bullet_hits: (Scalars['Float'] | null) + first_bullet_shots: (Scalars['Float'] | null) + five_kill_rounds: (Scalars['Float'] | null) + flash_assists: (Scalars['Float'] | null) + flash_duration_count: (Scalars['Float'] | null) + flash_duration_sum: (Scalars['Float'] | null) + flashes_thrown: (Scalars['Float'] | null) + four_kill_rounds: (Scalars['Float'] | null) + he_damage: (Scalars['Float'] | null) + he_team_damage: (Scalars['Float'] | null) + he_throws: (Scalars['Float'] | null) + headshot_hits: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + hits_at_spotted: (Scalars['Float'] | null) + hs_kills: (Scalars['Float'] | null) + hs_kills_ct: (Scalars['Float'] | null) + hs_kills_t: (Scalars['Float'] | null) + kast_rounds: (Scalars['Float'] | null) + kast_total_rounds: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + kills_ct: (Scalars['Float'] | null) + kills_t: (Scalars['Float'] | null) + knife_kills: (Scalars['Float'] | null) + molotov_damage: (Scalars['Float'] | null) + molotov_throws: (Scalars['Float'] | null) + non_awp_hits: (Scalars['Float'] | null) + on_target_frames: (Scalars['Float'] | null) + rounds_ct: (Scalars['Float'] | null) + rounds_played: (Scalars['Float'] | null) + rounds_t: (Scalars['Float'] | null) + shots_at_spotted: (Scalars['Float'] | null) + shots_fired: (Scalars['Float'] | null) + smoke_throws: (Scalars['Float'] | null) + spotted_count: (Scalars['Float'] | null) + spotted_with_damage_count: (Scalars['Float'] | null) + spray_hits: (Scalars['Float'] | null) + spray_shots: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + team_damage: (Scalars['Float'] | null) + team_flashed: (Scalars['Float'] | null) + three_kill_rounds: (Scalars['Float'] | null) + time_to_damage_count: (Scalars['Float'] | null) + time_to_damage_sum_s: (Scalars['Float'] | null) + total_engagement_frames: (Scalars['Float'] | null) + trade_kill_attempts: (Scalars['Float'] | null) + trade_kill_opportunities: (Scalars['Float'] | null) + trade_kill_successes: (Scalars['Float'] | null) + traded_death_attempts: (Scalars['Float'] | null) + traded_death_opportunities: (Scalars['Float'] | null) + traded_death_successes: (Scalars['Float'] | null) + two_kill_rounds: (Scalars['Float'] | null) + unused_utility_value: (Scalars['Float'] | null) + util_on_death_count: (Scalars['Float'] | null) + util_on_death_sum: (Scalars['Float'] | null) + wasted_magazine_shots: (Scalars['Float'] | null) + zeus_kills: (Scalars['Float'] | null) + __typename: 'player_match_map_stats_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface player_match_map_stats_var_samp_fields { + assists: (Scalars['Float'] | null) + assists_ct: (Scalars['Float'] | null) + assists_t: (Scalars['Float'] | null) + counter_strafe_eligible_shots: (Scalars['Float'] | null) + counter_strafed_shots: (Scalars['Float'] | null) + crosshair_angle_count: (Scalars['Float'] | null) + crosshair_angle_sum_deg: (Scalars['Float'] | null) + damage: (Scalars['Float'] | null) + damage_ct: (Scalars['Float'] | null) + damage_t: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + deaths_ct: (Scalars['Float'] | null) + deaths_t: (Scalars['Float'] | null) + decoy_throws: (Scalars['Float'] | null) + enemies_flashed: (Scalars['Float'] | null) + first_bullet_hits: (Scalars['Float'] | null) + first_bullet_shots: (Scalars['Float'] | null) + five_kill_rounds: (Scalars['Float'] | null) + flash_assists: (Scalars['Float'] | null) + flash_duration_count: (Scalars['Float'] | null) + flash_duration_sum: (Scalars['Float'] | null) + flashes_thrown: (Scalars['Float'] | null) + four_kill_rounds: (Scalars['Float'] | null) + he_damage: (Scalars['Float'] | null) + he_team_damage: (Scalars['Float'] | null) + he_throws: (Scalars['Float'] | null) + headshot_hits: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + hits_at_spotted: (Scalars['Float'] | null) + hs_kills: (Scalars['Float'] | null) + hs_kills_ct: (Scalars['Float'] | null) + hs_kills_t: (Scalars['Float'] | null) + kast_rounds: (Scalars['Float'] | null) + kast_total_rounds: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + kills_ct: (Scalars['Float'] | null) + kills_t: (Scalars['Float'] | null) + knife_kills: (Scalars['Float'] | null) + molotov_damage: (Scalars['Float'] | null) + molotov_throws: (Scalars['Float'] | null) + non_awp_hits: (Scalars['Float'] | null) + on_target_frames: (Scalars['Float'] | null) + rounds_ct: (Scalars['Float'] | null) + rounds_played: (Scalars['Float'] | null) + rounds_t: (Scalars['Float'] | null) + shots_at_spotted: (Scalars['Float'] | null) + shots_fired: (Scalars['Float'] | null) + smoke_throws: (Scalars['Float'] | null) + spotted_count: (Scalars['Float'] | null) + spotted_with_damage_count: (Scalars['Float'] | null) + spray_hits: (Scalars['Float'] | null) + spray_shots: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + team_damage: (Scalars['Float'] | null) + team_flashed: (Scalars['Float'] | null) + three_kill_rounds: (Scalars['Float'] | null) + time_to_damage_count: (Scalars['Float'] | null) + time_to_damage_sum_s: (Scalars['Float'] | null) + total_engagement_frames: (Scalars['Float'] | null) + trade_kill_attempts: (Scalars['Float'] | null) + trade_kill_opportunities: (Scalars['Float'] | null) + trade_kill_successes: (Scalars['Float'] | null) + traded_death_attempts: (Scalars['Float'] | null) + traded_death_opportunities: (Scalars['Float'] | null) + traded_death_successes: (Scalars['Float'] | null) + two_kill_rounds: (Scalars['Float'] | null) + unused_utility_value: (Scalars['Float'] | null) + util_on_death_count: (Scalars['Float'] | null) + util_on_death_sum: (Scalars['Float'] | null) + wasted_magazine_shots: (Scalars['Float'] | null) + zeus_kills: (Scalars['Float'] | null) + __typename: 'player_match_map_stats_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface player_match_map_stats_variance_fields { + assists: (Scalars['Float'] | null) + assists_ct: (Scalars['Float'] | null) + assists_t: (Scalars['Float'] | null) + counter_strafe_eligible_shots: (Scalars['Float'] | null) + counter_strafed_shots: (Scalars['Float'] | null) + crosshair_angle_count: (Scalars['Float'] | null) + crosshair_angle_sum_deg: (Scalars['Float'] | null) + damage: (Scalars['Float'] | null) + damage_ct: (Scalars['Float'] | null) + damage_t: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + deaths_ct: (Scalars['Float'] | null) + deaths_t: (Scalars['Float'] | null) + decoy_throws: (Scalars['Float'] | null) + enemies_flashed: (Scalars['Float'] | null) + first_bullet_hits: (Scalars['Float'] | null) + first_bullet_shots: (Scalars['Float'] | null) + five_kill_rounds: (Scalars['Float'] | null) + flash_assists: (Scalars['Float'] | null) + flash_duration_count: (Scalars['Float'] | null) + flash_duration_sum: (Scalars['Float'] | null) + flashes_thrown: (Scalars['Float'] | null) + four_kill_rounds: (Scalars['Float'] | null) + he_damage: (Scalars['Float'] | null) + he_team_damage: (Scalars['Float'] | null) + he_throws: (Scalars['Float'] | null) + headshot_hits: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + hits_at_spotted: (Scalars['Float'] | null) + hs_kills: (Scalars['Float'] | null) + hs_kills_ct: (Scalars['Float'] | null) + hs_kills_t: (Scalars['Float'] | null) + kast_rounds: (Scalars['Float'] | null) + kast_total_rounds: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + kills_ct: (Scalars['Float'] | null) + kills_t: (Scalars['Float'] | null) + knife_kills: (Scalars['Float'] | null) + molotov_damage: (Scalars['Float'] | null) + molotov_throws: (Scalars['Float'] | null) + non_awp_hits: (Scalars['Float'] | null) + on_target_frames: (Scalars['Float'] | null) + rounds_ct: (Scalars['Float'] | null) + rounds_played: (Scalars['Float'] | null) + rounds_t: (Scalars['Float'] | null) + shots_at_spotted: (Scalars['Float'] | null) + shots_fired: (Scalars['Float'] | null) + smoke_throws: (Scalars['Float'] | null) + spotted_count: (Scalars['Float'] | null) + spotted_with_damage_count: (Scalars['Float'] | null) + spray_hits: (Scalars['Float'] | null) + spray_shots: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + team_damage: (Scalars['Float'] | null) + team_flashed: (Scalars['Float'] | null) + three_kill_rounds: (Scalars['Float'] | null) + time_to_damage_count: (Scalars['Float'] | null) + time_to_damage_sum_s: (Scalars['Float'] | null) + total_engagement_frames: (Scalars['Float'] | null) + trade_kill_attempts: (Scalars['Float'] | null) + trade_kill_opportunities: (Scalars['Float'] | null) + trade_kill_successes: (Scalars['Float'] | null) + traded_death_attempts: (Scalars['Float'] | null) + traded_death_opportunities: (Scalars['Float'] | null) + traded_death_successes: (Scalars['Float'] | null) + two_kill_rounds: (Scalars['Float'] | null) + unused_utility_value: (Scalars['Float'] | null) + util_on_death_count: (Scalars['Float'] | null) + util_on_death_sum: (Scalars['Float'] | null) + wasted_magazine_shots: (Scalars['Float'] | null) + zeus_kills: (Scalars['Float'] | null) + __typename: 'player_match_map_stats_variance_fields' +} + + +/** columns and relationships of "player_match_performance_v" */ +export interface player_match_performance_v { + accuracy: (Scalars['numeric'] | null) + accuracy_spotted: (Scalars['numeric'] | null) + aim_rating: (Scalars['float8'] | null) + counter_strafe_pct: (Scalars['numeric'] | null) + enemy_blind_pr: (Scalars['numeric'] | null) + flash_assists_pr: (Scalars['numeric'] | null) + hs_pct: (Scalars['numeric'] | null) + kast_pct: (Scalars['numeric'] | null) + match_id: (Scalars['uuid'] | null) + overall_rating: (Scalars['float8'] | null) + played_at: (Scalars['timestamptz'] | null) + positioning_rating: (Scalars['float8'] | null) + rounds: (Scalars['Int'] | null) + source: (Scalars['String'] | null) + steam_id: (Scalars['bigint'] | null) + survival_pct: (Scalars['numeric'] | null) + traded_death_pct: (Scalars['numeric'] | null) + util_efficiency: (Scalars['numeric'] | null) + utility_rating: (Scalars['float8'] | null) + __typename: 'player_match_performance_v' +} + + +/** aggregated selection of "player_match_performance_v" */ +export interface player_match_performance_v_aggregate { + aggregate: (player_match_performance_v_aggregate_fields | null) + nodes: player_match_performance_v[] + __typename: 'player_match_performance_v_aggregate' +} + + +/** aggregate fields of "player_match_performance_v" */ +export interface player_match_performance_v_aggregate_fields { + avg: (player_match_performance_v_avg_fields | null) + count: Scalars['Int'] + max: (player_match_performance_v_max_fields | null) + min: (player_match_performance_v_min_fields | null) + stddev: (player_match_performance_v_stddev_fields | null) + stddev_pop: (player_match_performance_v_stddev_pop_fields | null) + stddev_samp: (player_match_performance_v_stddev_samp_fields | null) + sum: (player_match_performance_v_sum_fields | null) + var_pop: (player_match_performance_v_var_pop_fields | null) + var_samp: (player_match_performance_v_var_samp_fields | null) + variance: (player_match_performance_v_variance_fields | null) + __typename: 'player_match_performance_v_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface player_match_performance_v_avg_fields { + accuracy: (Scalars['Float'] | null) + accuracy_spotted: (Scalars['Float'] | null) + aim_rating: (Scalars['Float'] | null) + counter_strafe_pct: (Scalars['Float'] | null) + enemy_blind_pr: (Scalars['Float'] | null) + flash_assists_pr: (Scalars['Float'] | null) + hs_pct: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + overall_rating: (Scalars['Float'] | null) + positioning_rating: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + survival_pct: (Scalars['Float'] | null) + traded_death_pct: (Scalars['Float'] | null) + util_efficiency: (Scalars['Float'] | null) + utility_rating: (Scalars['Float'] | null) + __typename: 'player_match_performance_v_avg_fields' +} + + +/** aggregate max on columns */ +export interface player_match_performance_v_max_fields { + accuracy: (Scalars['numeric'] | null) + accuracy_spotted: (Scalars['numeric'] | null) + aim_rating: (Scalars['float8'] | null) + counter_strafe_pct: (Scalars['numeric'] | null) + enemy_blind_pr: (Scalars['numeric'] | null) + flash_assists_pr: (Scalars['numeric'] | null) + hs_pct: (Scalars['numeric'] | null) + kast_pct: (Scalars['numeric'] | null) + match_id: (Scalars['uuid'] | null) + overall_rating: (Scalars['float8'] | null) + played_at: (Scalars['timestamptz'] | null) + positioning_rating: (Scalars['float8'] | null) + rounds: (Scalars['Int'] | null) + source: (Scalars['String'] | null) + steam_id: (Scalars['bigint'] | null) + survival_pct: (Scalars['numeric'] | null) + traded_death_pct: (Scalars['numeric'] | null) + util_efficiency: (Scalars['numeric'] | null) + utility_rating: (Scalars['float8'] | null) + __typename: 'player_match_performance_v_max_fields' +} + + +/** aggregate min on columns */ +export interface player_match_performance_v_min_fields { + accuracy: (Scalars['numeric'] | null) + accuracy_spotted: (Scalars['numeric'] | null) + aim_rating: (Scalars['float8'] | null) + counter_strafe_pct: (Scalars['numeric'] | null) + enemy_blind_pr: (Scalars['numeric'] | null) + flash_assists_pr: (Scalars['numeric'] | null) + hs_pct: (Scalars['numeric'] | null) + kast_pct: (Scalars['numeric'] | null) + match_id: (Scalars['uuid'] | null) + overall_rating: (Scalars['float8'] | null) + played_at: (Scalars['timestamptz'] | null) + positioning_rating: (Scalars['float8'] | null) + rounds: (Scalars['Int'] | null) + source: (Scalars['String'] | null) + steam_id: (Scalars['bigint'] | null) + survival_pct: (Scalars['numeric'] | null) + traded_death_pct: (Scalars['numeric'] | null) + util_efficiency: (Scalars['numeric'] | null) + utility_rating: (Scalars['float8'] | null) + __typename: 'player_match_performance_v_min_fields' +} + + +/** select columns of table "player_match_performance_v" */ +export type player_match_performance_v_select_column = 'accuracy' | 'accuracy_spotted' | 'aim_rating' | 'counter_strafe_pct' | 'enemy_blind_pr' | 'flash_assists_pr' | 'hs_pct' | 'kast_pct' | 'match_id' | 'overall_rating' | 'played_at' | 'positioning_rating' | 'rounds' | 'source' | 'steam_id' | 'survival_pct' | 'traded_death_pct' | 'util_efficiency' | 'utility_rating' + + +/** aggregate stddev on columns */ +export interface player_match_performance_v_stddev_fields { + accuracy: (Scalars['Float'] | null) + accuracy_spotted: (Scalars['Float'] | null) + aim_rating: (Scalars['Float'] | null) + counter_strafe_pct: (Scalars['Float'] | null) + enemy_blind_pr: (Scalars['Float'] | null) + flash_assists_pr: (Scalars['Float'] | null) + hs_pct: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + overall_rating: (Scalars['Float'] | null) + positioning_rating: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + survival_pct: (Scalars['Float'] | null) + traded_death_pct: (Scalars['Float'] | null) + util_efficiency: (Scalars['Float'] | null) + utility_rating: (Scalars['Float'] | null) + __typename: 'player_match_performance_v_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface player_match_performance_v_stddev_pop_fields { + accuracy: (Scalars['Float'] | null) + accuracy_spotted: (Scalars['Float'] | null) + aim_rating: (Scalars['Float'] | null) + counter_strafe_pct: (Scalars['Float'] | null) + enemy_blind_pr: (Scalars['Float'] | null) + flash_assists_pr: (Scalars['Float'] | null) + hs_pct: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + overall_rating: (Scalars['Float'] | null) + positioning_rating: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + survival_pct: (Scalars['Float'] | null) + traded_death_pct: (Scalars['Float'] | null) + util_efficiency: (Scalars['Float'] | null) + utility_rating: (Scalars['Float'] | null) + __typename: 'player_match_performance_v_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface player_match_performance_v_stddev_samp_fields { + accuracy: (Scalars['Float'] | null) + accuracy_spotted: (Scalars['Float'] | null) + aim_rating: (Scalars['Float'] | null) + counter_strafe_pct: (Scalars['Float'] | null) + enemy_blind_pr: (Scalars['Float'] | null) + flash_assists_pr: (Scalars['Float'] | null) + hs_pct: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + overall_rating: (Scalars['Float'] | null) + positioning_rating: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + survival_pct: (Scalars['Float'] | null) + traded_death_pct: (Scalars['Float'] | null) + util_efficiency: (Scalars['Float'] | null) + utility_rating: (Scalars['Float'] | null) + __typename: 'player_match_performance_v_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface player_match_performance_v_sum_fields { + accuracy: (Scalars['numeric'] | null) + accuracy_spotted: (Scalars['numeric'] | null) + aim_rating: (Scalars['float8'] | null) + counter_strafe_pct: (Scalars['numeric'] | null) + enemy_blind_pr: (Scalars['numeric'] | null) + flash_assists_pr: (Scalars['numeric'] | null) + hs_pct: (Scalars['numeric'] | null) + kast_pct: (Scalars['numeric'] | null) + overall_rating: (Scalars['float8'] | null) + positioning_rating: (Scalars['float8'] | null) + rounds: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + survival_pct: (Scalars['numeric'] | null) + traded_death_pct: (Scalars['numeric'] | null) + util_efficiency: (Scalars['numeric'] | null) + utility_rating: (Scalars['float8'] | null) + __typename: 'player_match_performance_v_sum_fields' +} + + +/** aggregate var_pop on columns */ +export interface player_match_performance_v_var_pop_fields { + accuracy: (Scalars['Float'] | null) + accuracy_spotted: (Scalars['Float'] | null) + aim_rating: (Scalars['Float'] | null) + counter_strafe_pct: (Scalars['Float'] | null) + enemy_blind_pr: (Scalars['Float'] | null) + flash_assists_pr: (Scalars['Float'] | null) + hs_pct: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + overall_rating: (Scalars['Float'] | null) + positioning_rating: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + survival_pct: (Scalars['Float'] | null) + traded_death_pct: (Scalars['Float'] | null) + util_efficiency: (Scalars['Float'] | null) + utility_rating: (Scalars['Float'] | null) + __typename: 'player_match_performance_v_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface player_match_performance_v_var_samp_fields { + accuracy: (Scalars['Float'] | null) + accuracy_spotted: (Scalars['Float'] | null) + aim_rating: (Scalars['Float'] | null) + counter_strafe_pct: (Scalars['Float'] | null) + enemy_blind_pr: (Scalars['Float'] | null) + flash_assists_pr: (Scalars['Float'] | null) + hs_pct: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + overall_rating: (Scalars['Float'] | null) + positioning_rating: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + survival_pct: (Scalars['Float'] | null) + traded_death_pct: (Scalars['Float'] | null) + util_efficiency: (Scalars['Float'] | null) + utility_rating: (Scalars['Float'] | null) + __typename: 'player_match_performance_v_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface player_match_performance_v_variance_fields { + accuracy: (Scalars['Float'] | null) + accuracy_spotted: (Scalars['Float'] | null) + aim_rating: (Scalars['Float'] | null) + counter_strafe_pct: (Scalars['Float'] | null) + enemy_blind_pr: (Scalars['Float'] | null) + flash_assists_pr: (Scalars['Float'] | null) + hs_pct: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + overall_rating: (Scalars['Float'] | null) + positioning_rating: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + survival_pct: (Scalars['Float'] | null) + traded_death_pct: (Scalars['Float'] | null) + util_efficiency: (Scalars['Float'] | null) + utility_rating: (Scalars['Float'] | null) + __typename: 'player_match_performance_v_variance_fields' +} + + +/** columns and relationships of "player_match_stats_v" */ +export interface player_match_stats_v { + assists: (Scalars['Int'] | null) + assists_ct: (Scalars['Int'] | null) + assists_t: (Scalars['Int'] | null) + avg_crosshair_angle_deg: (Scalars['numeric'] | null) + avg_flash_duration: (Scalars['numeric'] | null) + avg_time_to_damage_s: (Scalars['numeric'] | null) + counter_strafe_eligible_shots: (Scalars['Int'] | null) + counter_strafed_shots: (Scalars['Int'] | null) + damage: (Scalars['Int'] | null) + damage_ct: (Scalars['Int'] | null) + damage_t: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) + deaths_ct: (Scalars['Int'] | null) + deaths_t: (Scalars['Int'] | null) + decoy_throws: (Scalars['Int'] | null) + enemies_flashed: (Scalars['Int'] | null) + first_bullet_hits: (Scalars['Int'] | null) + first_bullet_shots: (Scalars['Int'] | null) + five_kill_rounds: (Scalars['Int'] | null) + flash_assists: (Scalars['Int'] | null) + flashes_thrown: (Scalars['Int'] | null) + four_kill_rounds: (Scalars['Int'] | null) + he_damage: (Scalars['Int'] | null) + he_team_damage: (Scalars['Int'] | null) + he_throws: (Scalars['Int'] | null) + headshot_hits: (Scalars['Int'] | null) + hits: (Scalars['Int'] | null) + hits_at_spotted: (Scalars['Int'] | null) + hs_kills: (Scalars['Int'] | null) + hs_kills_ct: (Scalars['Int'] | null) + hs_kills_t: (Scalars['Int'] | null) + kills: (Scalars['Int'] | null) + kills_ct: (Scalars['Int'] | null) + kills_t: (Scalars['Int'] | null) + knife_kills: (Scalars['Int'] | null) + match_id: (Scalars['uuid'] | null) + molotov_damage: (Scalars['Int'] | null) + molotov_throws: (Scalars['Int'] | null) + non_awp_hits: (Scalars['Int'] | null) + on_target_frames: (Scalars['Int'] | null) + rounds_ct: (Scalars['Int'] | null) + rounds_played: (Scalars['Int'] | null) + rounds_t: (Scalars['Int'] | null) + shots_at_spotted: (Scalars['Int'] | null) + shots_fired: (Scalars['Int'] | null) + smoke_throws: (Scalars['Int'] | null) + spotted_count: (Scalars['Int'] | null) + spotted_with_damage_count: (Scalars['Int'] | null) + spray_hits: (Scalars['Int'] | null) + spray_shots: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + team_damage: (Scalars['Int'] | null) + team_flashed: (Scalars['Int'] | null) + three_kill_rounds: (Scalars['Int'] | null) + total_engagement_frames: (Scalars['Int'] | null) + trade_kill_attempts: (Scalars['Int'] | null) + trade_kill_opportunities: (Scalars['Int'] | null) + trade_kill_successes: (Scalars['Int'] | null) + traded_death_attempts: (Scalars['Int'] | null) + traded_death_opportunities: (Scalars['Int'] | null) + traded_death_successes: (Scalars['Int'] | null) + two_kill_rounds: (Scalars['Int'] | null) + unused_utility_value: (Scalars['Int'] | null) + utility_on_death: (Scalars['numeric'] | null) + wasted_magazine_shots: (Scalars['Int'] | null) + zeus_kills: (Scalars['Int'] | null) + __typename: 'player_match_stats_v' +} + + +/** aggregated selection of "player_match_stats_v" */ +export interface player_match_stats_v_aggregate { + aggregate: (player_match_stats_v_aggregate_fields | null) + nodes: player_match_stats_v[] + __typename: 'player_match_stats_v_aggregate' +} + + +/** aggregate fields of "player_match_stats_v" */ +export interface player_match_stats_v_aggregate_fields { + avg: (player_match_stats_v_avg_fields | null) + count: Scalars['Int'] + max: (player_match_stats_v_max_fields | null) + min: (player_match_stats_v_min_fields | null) + stddev: (player_match_stats_v_stddev_fields | null) + stddev_pop: (player_match_stats_v_stddev_pop_fields | null) + stddev_samp: (player_match_stats_v_stddev_samp_fields | null) + sum: (player_match_stats_v_sum_fields | null) + var_pop: (player_match_stats_v_var_pop_fields | null) + var_samp: (player_match_stats_v_var_samp_fields | null) + variance: (player_match_stats_v_variance_fields | null) + __typename: 'player_match_stats_v_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface player_match_stats_v_avg_fields { + assists: (Scalars['Float'] | null) + assists_ct: (Scalars['Float'] | null) + assists_t: (Scalars['Float'] | null) + avg_crosshair_angle_deg: (Scalars['Float'] | null) + avg_flash_duration: (Scalars['Float'] | null) + avg_time_to_damage_s: (Scalars['Float'] | null) + counter_strafe_eligible_shots: (Scalars['Float'] | null) + counter_strafed_shots: (Scalars['Float'] | null) + damage: (Scalars['Float'] | null) + damage_ct: (Scalars['Float'] | null) + damage_t: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + deaths_ct: (Scalars['Float'] | null) + deaths_t: (Scalars['Float'] | null) + decoy_throws: (Scalars['Float'] | null) + enemies_flashed: (Scalars['Float'] | null) + first_bullet_hits: (Scalars['Float'] | null) + first_bullet_shots: (Scalars['Float'] | null) + five_kill_rounds: (Scalars['Float'] | null) + flash_assists: (Scalars['Float'] | null) + flashes_thrown: (Scalars['Float'] | null) + four_kill_rounds: (Scalars['Float'] | null) + he_damage: (Scalars['Float'] | null) + he_team_damage: (Scalars['Float'] | null) + he_throws: (Scalars['Float'] | null) + headshot_hits: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + hits_at_spotted: (Scalars['Float'] | null) + hs_kills: (Scalars['Float'] | null) + hs_kills_ct: (Scalars['Float'] | null) + hs_kills_t: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + kills_ct: (Scalars['Float'] | null) + kills_t: (Scalars['Float'] | null) + knife_kills: (Scalars['Float'] | null) + molotov_damage: (Scalars['Float'] | null) + molotov_throws: (Scalars['Float'] | null) + non_awp_hits: (Scalars['Float'] | null) + on_target_frames: (Scalars['Float'] | null) + rounds_ct: (Scalars['Float'] | null) + rounds_played: (Scalars['Float'] | null) + rounds_t: (Scalars['Float'] | null) + shots_at_spotted: (Scalars['Float'] | null) + shots_fired: (Scalars['Float'] | null) + smoke_throws: (Scalars['Float'] | null) + spotted_count: (Scalars['Float'] | null) + spotted_with_damage_count: (Scalars['Float'] | null) + spray_hits: (Scalars['Float'] | null) + spray_shots: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + team_damage: (Scalars['Float'] | null) + team_flashed: (Scalars['Float'] | null) + three_kill_rounds: (Scalars['Float'] | null) + total_engagement_frames: (Scalars['Float'] | null) + trade_kill_attempts: (Scalars['Float'] | null) + trade_kill_opportunities: (Scalars['Float'] | null) + trade_kill_successes: (Scalars['Float'] | null) + traded_death_attempts: (Scalars['Float'] | null) + traded_death_opportunities: (Scalars['Float'] | null) + traded_death_successes: (Scalars['Float'] | null) + two_kill_rounds: (Scalars['Float'] | null) + unused_utility_value: (Scalars['Float'] | null) + utility_on_death: (Scalars['Float'] | null) + wasted_magazine_shots: (Scalars['Float'] | null) + zeus_kills: (Scalars['Float'] | null) + __typename: 'player_match_stats_v_avg_fields' +} + + +/** aggregate max on columns */ +export interface player_match_stats_v_max_fields { + assists: (Scalars['Int'] | null) + assists_ct: (Scalars['Int'] | null) + assists_t: (Scalars['Int'] | null) + avg_crosshair_angle_deg: (Scalars['numeric'] | null) + avg_flash_duration: (Scalars['numeric'] | null) + avg_time_to_damage_s: (Scalars['numeric'] | null) + counter_strafe_eligible_shots: (Scalars['Int'] | null) + counter_strafed_shots: (Scalars['Int'] | null) + damage: (Scalars['Int'] | null) + damage_ct: (Scalars['Int'] | null) + damage_t: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) + deaths_ct: (Scalars['Int'] | null) + deaths_t: (Scalars['Int'] | null) + decoy_throws: (Scalars['Int'] | null) + enemies_flashed: (Scalars['Int'] | null) + first_bullet_hits: (Scalars['Int'] | null) + first_bullet_shots: (Scalars['Int'] | null) + five_kill_rounds: (Scalars['Int'] | null) + flash_assists: (Scalars['Int'] | null) + flashes_thrown: (Scalars['Int'] | null) + four_kill_rounds: (Scalars['Int'] | null) + he_damage: (Scalars['Int'] | null) + he_team_damage: (Scalars['Int'] | null) + he_throws: (Scalars['Int'] | null) + headshot_hits: (Scalars['Int'] | null) + hits: (Scalars['Int'] | null) + hits_at_spotted: (Scalars['Int'] | null) + hs_kills: (Scalars['Int'] | null) + hs_kills_ct: (Scalars['Int'] | null) + hs_kills_t: (Scalars['Int'] | null) + kills: (Scalars['Int'] | null) + kills_ct: (Scalars['Int'] | null) + kills_t: (Scalars['Int'] | null) + knife_kills: (Scalars['Int'] | null) + match_id: (Scalars['uuid'] | null) + molotov_damage: (Scalars['Int'] | null) + molotov_throws: (Scalars['Int'] | null) + non_awp_hits: (Scalars['Int'] | null) + on_target_frames: (Scalars['Int'] | null) + rounds_ct: (Scalars['Int'] | null) + rounds_played: (Scalars['Int'] | null) + rounds_t: (Scalars['Int'] | null) + shots_at_spotted: (Scalars['Int'] | null) + shots_fired: (Scalars['Int'] | null) + smoke_throws: (Scalars['Int'] | null) + spotted_count: (Scalars['Int'] | null) + spotted_with_damage_count: (Scalars['Int'] | null) + spray_hits: (Scalars['Int'] | null) + spray_shots: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + team_damage: (Scalars['Int'] | null) + team_flashed: (Scalars['Int'] | null) + three_kill_rounds: (Scalars['Int'] | null) + total_engagement_frames: (Scalars['Int'] | null) + trade_kill_attempts: (Scalars['Int'] | null) + trade_kill_opportunities: (Scalars['Int'] | null) + trade_kill_successes: (Scalars['Int'] | null) + traded_death_attempts: (Scalars['Int'] | null) + traded_death_opportunities: (Scalars['Int'] | null) + traded_death_successes: (Scalars['Int'] | null) + two_kill_rounds: (Scalars['Int'] | null) + unused_utility_value: (Scalars['Int'] | null) + utility_on_death: (Scalars['numeric'] | null) + wasted_magazine_shots: (Scalars['Int'] | null) + zeus_kills: (Scalars['Int'] | null) + __typename: 'player_match_stats_v_max_fields' +} + + +/** aggregate min on columns */ +export interface player_match_stats_v_min_fields { + assists: (Scalars['Int'] | null) + assists_ct: (Scalars['Int'] | null) + assists_t: (Scalars['Int'] | null) + avg_crosshair_angle_deg: (Scalars['numeric'] | null) + avg_flash_duration: (Scalars['numeric'] | null) + avg_time_to_damage_s: (Scalars['numeric'] | null) + counter_strafe_eligible_shots: (Scalars['Int'] | null) + counter_strafed_shots: (Scalars['Int'] | null) + damage: (Scalars['Int'] | null) + damage_ct: (Scalars['Int'] | null) + damage_t: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) + deaths_ct: (Scalars['Int'] | null) + deaths_t: (Scalars['Int'] | null) + decoy_throws: (Scalars['Int'] | null) + enemies_flashed: (Scalars['Int'] | null) + first_bullet_hits: (Scalars['Int'] | null) + first_bullet_shots: (Scalars['Int'] | null) + five_kill_rounds: (Scalars['Int'] | null) + flash_assists: (Scalars['Int'] | null) + flashes_thrown: (Scalars['Int'] | null) + four_kill_rounds: (Scalars['Int'] | null) + he_damage: (Scalars['Int'] | null) + he_team_damage: (Scalars['Int'] | null) + he_throws: (Scalars['Int'] | null) + headshot_hits: (Scalars['Int'] | null) + hits: (Scalars['Int'] | null) + hits_at_spotted: (Scalars['Int'] | null) + hs_kills: (Scalars['Int'] | null) + hs_kills_ct: (Scalars['Int'] | null) + hs_kills_t: (Scalars['Int'] | null) + kills: (Scalars['Int'] | null) + kills_ct: (Scalars['Int'] | null) + kills_t: (Scalars['Int'] | null) + knife_kills: (Scalars['Int'] | null) + match_id: (Scalars['uuid'] | null) + molotov_damage: (Scalars['Int'] | null) + molotov_throws: (Scalars['Int'] | null) + non_awp_hits: (Scalars['Int'] | null) + on_target_frames: (Scalars['Int'] | null) + rounds_ct: (Scalars['Int'] | null) + rounds_played: (Scalars['Int'] | null) + rounds_t: (Scalars['Int'] | null) + shots_at_spotted: (Scalars['Int'] | null) + shots_fired: (Scalars['Int'] | null) + smoke_throws: (Scalars['Int'] | null) + spotted_count: (Scalars['Int'] | null) + spotted_with_damage_count: (Scalars['Int'] | null) + spray_hits: (Scalars['Int'] | null) + spray_shots: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + team_damage: (Scalars['Int'] | null) + team_flashed: (Scalars['Int'] | null) + three_kill_rounds: (Scalars['Int'] | null) + total_engagement_frames: (Scalars['Int'] | null) + trade_kill_attempts: (Scalars['Int'] | null) + trade_kill_opportunities: (Scalars['Int'] | null) + trade_kill_successes: (Scalars['Int'] | null) + traded_death_attempts: (Scalars['Int'] | null) + traded_death_opportunities: (Scalars['Int'] | null) + traded_death_successes: (Scalars['Int'] | null) + two_kill_rounds: (Scalars['Int'] | null) + unused_utility_value: (Scalars['Int'] | null) + utility_on_death: (Scalars['numeric'] | null) + wasted_magazine_shots: (Scalars['Int'] | null) + zeus_kills: (Scalars['Int'] | null) + __typename: 'player_match_stats_v_min_fields' +} + + +/** select columns of table "player_match_stats_v" */ +export type player_match_stats_v_select_column = 'assists' | 'assists_ct' | 'assists_t' | 'avg_crosshair_angle_deg' | 'avg_flash_duration' | 'avg_time_to_damage_s' | 'counter_strafe_eligible_shots' | 'counter_strafed_shots' | 'damage' | 'damage_ct' | 'damage_t' | 'deaths' | 'deaths_ct' | 'deaths_t' | 'decoy_throws' | 'enemies_flashed' | 'first_bullet_hits' | 'first_bullet_shots' | 'five_kill_rounds' | 'flash_assists' | 'flashes_thrown' | 'four_kill_rounds' | 'he_damage' | 'he_team_damage' | 'he_throws' | 'headshot_hits' | 'hits' | 'hits_at_spotted' | 'hs_kills' | 'hs_kills_ct' | 'hs_kills_t' | 'kills' | 'kills_ct' | 'kills_t' | 'knife_kills' | 'match_id' | 'molotov_damage' | 'molotov_throws' | 'non_awp_hits' | 'on_target_frames' | 'rounds_ct' | 'rounds_played' | 'rounds_t' | 'shots_at_spotted' | 'shots_fired' | 'smoke_throws' | 'spotted_count' | 'spotted_with_damage_count' | 'spray_hits' | 'spray_shots' | 'steam_id' | 'team_damage' | 'team_flashed' | 'three_kill_rounds' | 'total_engagement_frames' | 'trade_kill_attempts' | 'trade_kill_opportunities' | 'trade_kill_successes' | 'traded_death_attempts' | 'traded_death_opportunities' | 'traded_death_successes' | 'two_kill_rounds' | 'unused_utility_value' | 'utility_on_death' | 'wasted_magazine_shots' | 'zeus_kills' + + +/** aggregate stddev on columns */ +export interface player_match_stats_v_stddev_fields { + assists: (Scalars['Float'] | null) + assists_ct: (Scalars['Float'] | null) + assists_t: (Scalars['Float'] | null) + avg_crosshair_angle_deg: (Scalars['Float'] | null) + avg_flash_duration: (Scalars['Float'] | null) + avg_time_to_damage_s: (Scalars['Float'] | null) + counter_strafe_eligible_shots: (Scalars['Float'] | null) + counter_strafed_shots: (Scalars['Float'] | null) + damage: (Scalars['Float'] | null) + damage_ct: (Scalars['Float'] | null) + damage_t: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + deaths_ct: (Scalars['Float'] | null) + deaths_t: (Scalars['Float'] | null) + decoy_throws: (Scalars['Float'] | null) + enemies_flashed: (Scalars['Float'] | null) + first_bullet_hits: (Scalars['Float'] | null) + first_bullet_shots: (Scalars['Float'] | null) + five_kill_rounds: (Scalars['Float'] | null) + flash_assists: (Scalars['Float'] | null) + flashes_thrown: (Scalars['Float'] | null) + four_kill_rounds: (Scalars['Float'] | null) + he_damage: (Scalars['Float'] | null) + he_team_damage: (Scalars['Float'] | null) + he_throws: (Scalars['Float'] | null) + headshot_hits: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + hits_at_spotted: (Scalars['Float'] | null) + hs_kills: (Scalars['Float'] | null) + hs_kills_ct: (Scalars['Float'] | null) + hs_kills_t: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + kills_ct: (Scalars['Float'] | null) + kills_t: (Scalars['Float'] | null) + knife_kills: (Scalars['Float'] | null) + molotov_damage: (Scalars['Float'] | null) + molotov_throws: (Scalars['Float'] | null) + non_awp_hits: (Scalars['Float'] | null) + on_target_frames: (Scalars['Float'] | null) + rounds_ct: (Scalars['Float'] | null) + rounds_played: (Scalars['Float'] | null) + rounds_t: (Scalars['Float'] | null) + shots_at_spotted: (Scalars['Float'] | null) + shots_fired: (Scalars['Float'] | null) + smoke_throws: (Scalars['Float'] | null) + spotted_count: (Scalars['Float'] | null) + spotted_with_damage_count: (Scalars['Float'] | null) + spray_hits: (Scalars['Float'] | null) + spray_shots: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + team_damage: (Scalars['Float'] | null) + team_flashed: (Scalars['Float'] | null) + three_kill_rounds: (Scalars['Float'] | null) + total_engagement_frames: (Scalars['Float'] | null) + trade_kill_attempts: (Scalars['Float'] | null) + trade_kill_opportunities: (Scalars['Float'] | null) + trade_kill_successes: (Scalars['Float'] | null) + traded_death_attempts: (Scalars['Float'] | null) + traded_death_opportunities: (Scalars['Float'] | null) + traded_death_successes: (Scalars['Float'] | null) + two_kill_rounds: (Scalars['Float'] | null) + unused_utility_value: (Scalars['Float'] | null) + utility_on_death: (Scalars['Float'] | null) + wasted_magazine_shots: (Scalars['Float'] | null) + zeus_kills: (Scalars['Float'] | null) + __typename: 'player_match_stats_v_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface player_match_stats_v_stddev_pop_fields { + assists: (Scalars['Float'] | null) + assists_ct: (Scalars['Float'] | null) + assists_t: (Scalars['Float'] | null) + avg_crosshair_angle_deg: (Scalars['Float'] | null) + avg_flash_duration: (Scalars['Float'] | null) + avg_time_to_damage_s: (Scalars['Float'] | null) + counter_strafe_eligible_shots: (Scalars['Float'] | null) + counter_strafed_shots: (Scalars['Float'] | null) + damage: (Scalars['Float'] | null) + damage_ct: (Scalars['Float'] | null) + damage_t: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + deaths_ct: (Scalars['Float'] | null) + deaths_t: (Scalars['Float'] | null) + decoy_throws: (Scalars['Float'] | null) + enemies_flashed: (Scalars['Float'] | null) + first_bullet_hits: (Scalars['Float'] | null) + first_bullet_shots: (Scalars['Float'] | null) + five_kill_rounds: (Scalars['Float'] | null) + flash_assists: (Scalars['Float'] | null) + flashes_thrown: (Scalars['Float'] | null) + four_kill_rounds: (Scalars['Float'] | null) + he_damage: (Scalars['Float'] | null) + he_team_damage: (Scalars['Float'] | null) + he_throws: (Scalars['Float'] | null) + headshot_hits: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + hits_at_spotted: (Scalars['Float'] | null) + hs_kills: (Scalars['Float'] | null) + hs_kills_ct: (Scalars['Float'] | null) + hs_kills_t: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + kills_ct: (Scalars['Float'] | null) + kills_t: (Scalars['Float'] | null) + knife_kills: (Scalars['Float'] | null) + molotov_damage: (Scalars['Float'] | null) + molotov_throws: (Scalars['Float'] | null) + non_awp_hits: (Scalars['Float'] | null) + on_target_frames: (Scalars['Float'] | null) + rounds_ct: (Scalars['Float'] | null) + rounds_played: (Scalars['Float'] | null) + rounds_t: (Scalars['Float'] | null) + shots_at_spotted: (Scalars['Float'] | null) + shots_fired: (Scalars['Float'] | null) + smoke_throws: (Scalars['Float'] | null) + spotted_count: (Scalars['Float'] | null) + spotted_with_damage_count: (Scalars['Float'] | null) + spray_hits: (Scalars['Float'] | null) + spray_shots: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + team_damage: (Scalars['Float'] | null) + team_flashed: (Scalars['Float'] | null) + three_kill_rounds: (Scalars['Float'] | null) + total_engagement_frames: (Scalars['Float'] | null) + trade_kill_attempts: (Scalars['Float'] | null) + trade_kill_opportunities: (Scalars['Float'] | null) + trade_kill_successes: (Scalars['Float'] | null) + traded_death_attempts: (Scalars['Float'] | null) + traded_death_opportunities: (Scalars['Float'] | null) + traded_death_successes: (Scalars['Float'] | null) + two_kill_rounds: (Scalars['Float'] | null) + unused_utility_value: (Scalars['Float'] | null) + utility_on_death: (Scalars['Float'] | null) + wasted_magazine_shots: (Scalars['Float'] | null) + zeus_kills: (Scalars['Float'] | null) + __typename: 'player_match_stats_v_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface player_match_stats_v_stddev_samp_fields { + assists: (Scalars['Float'] | null) + assists_ct: (Scalars['Float'] | null) + assists_t: (Scalars['Float'] | null) + avg_crosshair_angle_deg: (Scalars['Float'] | null) + avg_flash_duration: (Scalars['Float'] | null) + avg_time_to_damage_s: (Scalars['Float'] | null) + counter_strafe_eligible_shots: (Scalars['Float'] | null) + counter_strafed_shots: (Scalars['Float'] | null) + damage: (Scalars['Float'] | null) + damage_ct: (Scalars['Float'] | null) + damage_t: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + deaths_ct: (Scalars['Float'] | null) + deaths_t: (Scalars['Float'] | null) + decoy_throws: (Scalars['Float'] | null) + enemies_flashed: (Scalars['Float'] | null) + first_bullet_hits: (Scalars['Float'] | null) + first_bullet_shots: (Scalars['Float'] | null) + five_kill_rounds: (Scalars['Float'] | null) + flash_assists: (Scalars['Float'] | null) + flashes_thrown: (Scalars['Float'] | null) + four_kill_rounds: (Scalars['Float'] | null) + he_damage: (Scalars['Float'] | null) + he_team_damage: (Scalars['Float'] | null) + he_throws: (Scalars['Float'] | null) + headshot_hits: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + hits_at_spotted: (Scalars['Float'] | null) + hs_kills: (Scalars['Float'] | null) + hs_kills_ct: (Scalars['Float'] | null) + hs_kills_t: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + kills_ct: (Scalars['Float'] | null) + kills_t: (Scalars['Float'] | null) + knife_kills: (Scalars['Float'] | null) + molotov_damage: (Scalars['Float'] | null) + molotov_throws: (Scalars['Float'] | null) + non_awp_hits: (Scalars['Float'] | null) + on_target_frames: (Scalars['Float'] | null) + rounds_ct: (Scalars['Float'] | null) + rounds_played: (Scalars['Float'] | null) + rounds_t: (Scalars['Float'] | null) + shots_at_spotted: (Scalars['Float'] | null) + shots_fired: (Scalars['Float'] | null) + smoke_throws: (Scalars['Float'] | null) + spotted_count: (Scalars['Float'] | null) + spotted_with_damage_count: (Scalars['Float'] | null) + spray_hits: (Scalars['Float'] | null) + spray_shots: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + team_damage: (Scalars['Float'] | null) + team_flashed: (Scalars['Float'] | null) + three_kill_rounds: (Scalars['Float'] | null) + total_engagement_frames: (Scalars['Float'] | null) + trade_kill_attempts: (Scalars['Float'] | null) + trade_kill_opportunities: (Scalars['Float'] | null) + trade_kill_successes: (Scalars['Float'] | null) + traded_death_attempts: (Scalars['Float'] | null) + traded_death_opportunities: (Scalars['Float'] | null) + traded_death_successes: (Scalars['Float'] | null) + two_kill_rounds: (Scalars['Float'] | null) + unused_utility_value: (Scalars['Float'] | null) + utility_on_death: (Scalars['Float'] | null) + wasted_magazine_shots: (Scalars['Float'] | null) + zeus_kills: (Scalars['Float'] | null) + __typename: 'player_match_stats_v_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface player_match_stats_v_sum_fields { + assists: (Scalars['Int'] | null) + assists_ct: (Scalars['Int'] | null) + assists_t: (Scalars['Int'] | null) + avg_crosshair_angle_deg: (Scalars['numeric'] | null) + avg_flash_duration: (Scalars['numeric'] | null) + avg_time_to_damage_s: (Scalars['numeric'] | null) + counter_strafe_eligible_shots: (Scalars['Int'] | null) + counter_strafed_shots: (Scalars['Int'] | null) + damage: (Scalars['Int'] | null) + damage_ct: (Scalars['Int'] | null) + damage_t: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) + deaths_ct: (Scalars['Int'] | null) + deaths_t: (Scalars['Int'] | null) + decoy_throws: (Scalars['Int'] | null) + enemies_flashed: (Scalars['Int'] | null) + first_bullet_hits: (Scalars['Int'] | null) + first_bullet_shots: (Scalars['Int'] | null) + five_kill_rounds: (Scalars['Int'] | null) + flash_assists: (Scalars['Int'] | null) + flashes_thrown: (Scalars['Int'] | null) + four_kill_rounds: (Scalars['Int'] | null) + he_damage: (Scalars['Int'] | null) + he_team_damage: (Scalars['Int'] | null) + he_throws: (Scalars['Int'] | null) + headshot_hits: (Scalars['Int'] | null) + hits: (Scalars['Int'] | null) + hits_at_spotted: (Scalars['Int'] | null) + hs_kills: (Scalars['Int'] | null) + hs_kills_ct: (Scalars['Int'] | null) + hs_kills_t: (Scalars['Int'] | null) + kills: (Scalars['Int'] | null) + kills_ct: (Scalars['Int'] | null) + kills_t: (Scalars['Int'] | null) + knife_kills: (Scalars['Int'] | null) + molotov_damage: (Scalars['Int'] | null) + molotov_throws: (Scalars['Int'] | null) + non_awp_hits: (Scalars['Int'] | null) + on_target_frames: (Scalars['Int'] | null) + rounds_ct: (Scalars['Int'] | null) + rounds_played: (Scalars['Int'] | null) + rounds_t: (Scalars['Int'] | null) + shots_at_spotted: (Scalars['Int'] | null) + shots_fired: (Scalars['Int'] | null) + smoke_throws: (Scalars['Int'] | null) + spotted_count: (Scalars['Int'] | null) + spotted_with_damage_count: (Scalars['Int'] | null) + spray_hits: (Scalars['Int'] | null) + spray_shots: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + team_damage: (Scalars['Int'] | null) + team_flashed: (Scalars['Int'] | null) + three_kill_rounds: (Scalars['Int'] | null) + total_engagement_frames: (Scalars['Int'] | null) + trade_kill_attempts: (Scalars['Int'] | null) + trade_kill_opportunities: (Scalars['Int'] | null) + trade_kill_successes: (Scalars['Int'] | null) + traded_death_attempts: (Scalars['Int'] | null) + traded_death_opportunities: (Scalars['Int'] | null) + traded_death_successes: (Scalars['Int'] | null) + two_kill_rounds: (Scalars['Int'] | null) + unused_utility_value: (Scalars['Int'] | null) + utility_on_death: (Scalars['numeric'] | null) + wasted_magazine_shots: (Scalars['Int'] | null) + zeus_kills: (Scalars['Int'] | null) + __typename: 'player_match_stats_v_sum_fields' +} + + +/** aggregate var_pop on columns */ +export interface player_match_stats_v_var_pop_fields { + assists: (Scalars['Float'] | null) + assists_ct: (Scalars['Float'] | null) + assists_t: (Scalars['Float'] | null) + avg_crosshair_angle_deg: (Scalars['Float'] | null) + avg_flash_duration: (Scalars['Float'] | null) + avg_time_to_damage_s: (Scalars['Float'] | null) + counter_strafe_eligible_shots: (Scalars['Float'] | null) + counter_strafed_shots: (Scalars['Float'] | null) + damage: (Scalars['Float'] | null) + damage_ct: (Scalars['Float'] | null) + damage_t: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + deaths_ct: (Scalars['Float'] | null) + deaths_t: (Scalars['Float'] | null) + decoy_throws: (Scalars['Float'] | null) + enemies_flashed: (Scalars['Float'] | null) + first_bullet_hits: (Scalars['Float'] | null) + first_bullet_shots: (Scalars['Float'] | null) + five_kill_rounds: (Scalars['Float'] | null) + flash_assists: (Scalars['Float'] | null) + flashes_thrown: (Scalars['Float'] | null) + four_kill_rounds: (Scalars['Float'] | null) + he_damage: (Scalars['Float'] | null) + he_team_damage: (Scalars['Float'] | null) + he_throws: (Scalars['Float'] | null) + headshot_hits: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + hits_at_spotted: (Scalars['Float'] | null) + hs_kills: (Scalars['Float'] | null) + hs_kills_ct: (Scalars['Float'] | null) + hs_kills_t: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + kills_ct: (Scalars['Float'] | null) + kills_t: (Scalars['Float'] | null) + knife_kills: (Scalars['Float'] | null) + molotov_damage: (Scalars['Float'] | null) + molotov_throws: (Scalars['Float'] | null) + non_awp_hits: (Scalars['Float'] | null) + on_target_frames: (Scalars['Float'] | null) + rounds_ct: (Scalars['Float'] | null) + rounds_played: (Scalars['Float'] | null) + rounds_t: (Scalars['Float'] | null) + shots_at_spotted: (Scalars['Float'] | null) + shots_fired: (Scalars['Float'] | null) + smoke_throws: (Scalars['Float'] | null) + spotted_count: (Scalars['Float'] | null) + spotted_with_damage_count: (Scalars['Float'] | null) + spray_hits: (Scalars['Float'] | null) + spray_shots: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + team_damage: (Scalars['Float'] | null) + team_flashed: (Scalars['Float'] | null) + three_kill_rounds: (Scalars['Float'] | null) + total_engagement_frames: (Scalars['Float'] | null) + trade_kill_attempts: (Scalars['Float'] | null) + trade_kill_opportunities: (Scalars['Float'] | null) + trade_kill_successes: (Scalars['Float'] | null) + traded_death_attempts: (Scalars['Float'] | null) + traded_death_opportunities: (Scalars['Float'] | null) + traded_death_successes: (Scalars['Float'] | null) + two_kill_rounds: (Scalars['Float'] | null) + unused_utility_value: (Scalars['Float'] | null) + utility_on_death: (Scalars['Float'] | null) + wasted_magazine_shots: (Scalars['Float'] | null) + zeus_kills: (Scalars['Float'] | null) + __typename: 'player_match_stats_v_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface player_match_stats_v_var_samp_fields { + assists: (Scalars['Float'] | null) + assists_ct: (Scalars['Float'] | null) + assists_t: (Scalars['Float'] | null) + avg_crosshair_angle_deg: (Scalars['Float'] | null) + avg_flash_duration: (Scalars['Float'] | null) + avg_time_to_damage_s: (Scalars['Float'] | null) + counter_strafe_eligible_shots: (Scalars['Float'] | null) + counter_strafed_shots: (Scalars['Float'] | null) + damage: (Scalars['Float'] | null) + damage_ct: (Scalars['Float'] | null) + damage_t: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + deaths_ct: (Scalars['Float'] | null) + deaths_t: (Scalars['Float'] | null) + decoy_throws: (Scalars['Float'] | null) + enemies_flashed: (Scalars['Float'] | null) + first_bullet_hits: (Scalars['Float'] | null) + first_bullet_shots: (Scalars['Float'] | null) + five_kill_rounds: (Scalars['Float'] | null) + flash_assists: (Scalars['Float'] | null) + flashes_thrown: (Scalars['Float'] | null) + four_kill_rounds: (Scalars['Float'] | null) + he_damage: (Scalars['Float'] | null) + he_team_damage: (Scalars['Float'] | null) + he_throws: (Scalars['Float'] | null) + headshot_hits: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + hits_at_spotted: (Scalars['Float'] | null) + hs_kills: (Scalars['Float'] | null) + hs_kills_ct: (Scalars['Float'] | null) + hs_kills_t: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + kills_ct: (Scalars['Float'] | null) + kills_t: (Scalars['Float'] | null) + knife_kills: (Scalars['Float'] | null) + molotov_damage: (Scalars['Float'] | null) + molotov_throws: (Scalars['Float'] | null) + non_awp_hits: (Scalars['Float'] | null) + on_target_frames: (Scalars['Float'] | null) + rounds_ct: (Scalars['Float'] | null) + rounds_played: (Scalars['Float'] | null) + rounds_t: (Scalars['Float'] | null) + shots_at_spotted: (Scalars['Float'] | null) + shots_fired: (Scalars['Float'] | null) + smoke_throws: (Scalars['Float'] | null) + spotted_count: (Scalars['Float'] | null) + spotted_with_damage_count: (Scalars['Float'] | null) + spray_hits: (Scalars['Float'] | null) + spray_shots: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + team_damage: (Scalars['Float'] | null) + team_flashed: (Scalars['Float'] | null) + three_kill_rounds: (Scalars['Float'] | null) + total_engagement_frames: (Scalars['Float'] | null) + trade_kill_attempts: (Scalars['Float'] | null) + trade_kill_opportunities: (Scalars['Float'] | null) + trade_kill_successes: (Scalars['Float'] | null) + traded_death_attempts: (Scalars['Float'] | null) + traded_death_opportunities: (Scalars['Float'] | null) + traded_death_successes: (Scalars['Float'] | null) + two_kill_rounds: (Scalars['Float'] | null) + unused_utility_value: (Scalars['Float'] | null) + utility_on_death: (Scalars['Float'] | null) + wasted_magazine_shots: (Scalars['Float'] | null) + zeus_kills: (Scalars['Float'] | null) + __typename: 'player_match_stats_v_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface player_match_stats_v_variance_fields { + assists: (Scalars['Float'] | null) + assists_ct: (Scalars['Float'] | null) + assists_t: (Scalars['Float'] | null) + avg_crosshair_angle_deg: (Scalars['Float'] | null) + avg_flash_duration: (Scalars['Float'] | null) + avg_time_to_damage_s: (Scalars['Float'] | null) + counter_strafe_eligible_shots: (Scalars['Float'] | null) + counter_strafed_shots: (Scalars['Float'] | null) + damage: (Scalars['Float'] | null) + damage_ct: (Scalars['Float'] | null) + damage_t: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + deaths_ct: (Scalars['Float'] | null) + deaths_t: (Scalars['Float'] | null) + decoy_throws: (Scalars['Float'] | null) + enemies_flashed: (Scalars['Float'] | null) + first_bullet_hits: (Scalars['Float'] | null) + first_bullet_shots: (Scalars['Float'] | null) + five_kill_rounds: (Scalars['Float'] | null) + flash_assists: (Scalars['Float'] | null) + flashes_thrown: (Scalars['Float'] | null) + four_kill_rounds: (Scalars['Float'] | null) + he_damage: (Scalars['Float'] | null) + he_team_damage: (Scalars['Float'] | null) + he_throws: (Scalars['Float'] | null) + headshot_hits: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + hits_at_spotted: (Scalars['Float'] | null) + hs_kills: (Scalars['Float'] | null) + hs_kills_ct: (Scalars['Float'] | null) + hs_kills_t: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + kills_ct: (Scalars['Float'] | null) + kills_t: (Scalars['Float'] | null) + knife_kills: (Scalars['Float'] | null) + molotov_damage: (Scalars['Float'] | null) + molotov_throws: (Scalars['Float'] | null) + non_awp_hits: (Scalars['Float'] | null) + on_target_frames: (Scalars['Float'] | null) + rounds_ct: (Scalars['Float'] | null) + rounds_played: (Scalars['Float'] | null) + rounds_t: (Scalars['Float'] | null) + shots_at_spotted: (Scalars['Float'] | null) + shots_fired: (Scalars['Float'] | null) + smoke_throws: (Scalars['Float'] | null) + spotted_count: (Scalars['Float'] | null) + spotted_with_damage_count: (Scalars['Float'] | null) + spray_hits: (Scalars['Float'] | null) + spray_shots: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + team_damage: (Scalars['Float'] | null) + team_flashed: (Scalars['Float'] | null) + three_kill_rounds: (Scalars['Float'] | null) + total_engagement_frames: (Scalars['Float'] | null) + trade_kill_attempts: (Scalars['Float'] | null) + trade_kill_opportunities: (Scalars['Float'] | null) + trade_kill_successes: (Scalars['Float'] | null) + traded_death_attempts: (Scalars['Float'] | null) + traded_death_opportunities: (Scalars['Float'] | null) + traded_death_successes: (Scalars['Float'] | null) + two_kill_rounds: (Scalars['Float'] | null) + unused_utility_value: (Scalars['Float'] | null) + utility_on_death: (Scalars['Float'] | null) + wasted_magazine_shots: (Scalars['Float'] | null) + zeus_kills: (Scalars['Float'] | null) + __typename: 'player_match_stats_v_variance_fields' +} + + +/** columns and relationships of "player_objectives" */ +export interface player_objectives { + deleted_at: (Scalars['timestamptz'] | null) + /** An object relationship */ + match: matches + match_id: Scalars['uuid'] + /** An object relationship */ + match_map: match_maps + match_map_id: Scalars['uuid'] + /** An object relationship */ + player: players + player_steam_id: Scalars['bigint'] + round: Scalars['Int'] + time: Scalars['timestamptz'] + type: e_objective_types_enum + __typename: 'player_objectives' +} + + +/** aggregated selection of "player_objectives" */ +export interface player_objectives_aggregate { + aggregate: (player_objectives_aggregate_fields | null) + nodes: player_objectives[] + __typename: 'player_objectives_aggregate' +} + + +/** aggregate fields of "player_objectives" */ +export interface player_objectives_aggregate_fields { + avg: (player_objectives_avg_fields | null) + count: Scalars['Int'] + max: (player_objectives_max_fields | null) + min: (player_objectives_min_fields | null) + stddev: (player_objectives_stddev_fields | null) + stddev_pop: (player_objectives_stddev_pop_fields | null) + stddev_samp: (player_objectives_stddev_samp_fields | null) + sum: (player_objectives_sum_fields | null) + var_pop: (player_objectives_var_pop_fields | null) + var_samp: (player_objectives_var_samp_fields | null) + variance: (player_objectives_variance_fields | null) + __typename: 'player_objectives_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface player_objectives_avg_fields { + player_steam_id: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'player_objectives_avg_fields' +} + + +/** unique or primary key constraints on table "player_objectives" */ +export type player_objectives_constraint = 'player_objectives_pkey' + + +/** aggregate max on columns */ +export interface player_objectives_max_fields { + deleted_at: (Scalars['timestamptz'] | null) + match_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + player_steam_id: (Scalars['bigint'] | null) + round: (Scalars['Int'] | null) + time: (Scalars['timestamptz'] | null) + __typename: 'player_objectives_max_fields' +} + + +/** aggregate min on columns */ +export interface player_objectives_min_fields { + deleted_at: (Scalars['timestamptz'] | null) + match_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + player_steam_id: (Scalars['bigint'] | null) + round: (Scalars['Int'] | null) + time: (Scalars['timestamptz'] | null) + __typename: 'player_objectives_min_fields' +} + + +/** response of any mutation on the table "player_objectives" */ +export interface player_objectives_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: player_objectives[] + __typename: 'player_objectives_mutation_response' +} + + +/** select columns of table "player_objectives" */ +export type player_objectives_select_column = 'deleted_at' | 'match_id' | 'match_map_id' | 'player_steam_id' | 'round' | 'time' | 'type' + + +/** aggregate stddev on columns */ +export interface player_objectives_stddev_fields { + player_steam_id: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'player_objectives_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface player_objectives_stddev_pop_fields { + player_steam_id: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'player_objectives_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface player_objectives_stddev_samp_fields { + player_steam_id: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'player_objectives_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface player_objectives_sum_fields { + player_steam_id: (Scalars['bigint'] | null) + round: (Scalars['Int'] | null) + __typename: 'player_objectives_sum_fields' +} + + +/** update columns of table "player_objectives" */ +export type player_objectives_update_column = 'deleted_at' | 'match_id' | 'match_map_id' | 'player_steam_id' | 'round' | 'time' | 'type' + + +/** aggregate var_pop on columns */ +export interface player_objectives_var_pop_fields { + player_steam_id: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'player_objectives_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface player_objectives_var_samp_fields { + player_steam_id: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'player_objectives_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface player_objectives_variance_fields { + player_steam_id: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'player_objectives_variance_fields' +} + + +/** columns and relationships of "player_performance_v" */ +export interface player_performance_v { + accuracy_score: (Scalars['float8'] | null) + aim_goal: (Scalars['float8'] | null) + aim_rating: (Scalars['float8'] | null) + band: (Scalars['Int'] | null) + band_sample: (Scalars['bigint'] | null) + blind_score: (Scalars['float8'] | null) + counter_strafe_score: (Scalars['float8'] | null) + crosshair_score: (Scalars['float8'] | null) + flash_assists_score: (Scalars['float8'] | null) + hs_score: (Scalars['float8'] | null) + kast_score: (Scalars['float8'] | null) + maps: (Scalars['Int'] | null) + positioning_goal: (Scalars['float8'] | null) + positioning_rating: (Scalars['float8'] | null) + premier_rank: (Scalars['Int'] | null) + rounds: (Scalars['Int'] | null) + spotted_score: (Scalars['float8'] | null) + steam_id: (Scalars['bigint'] | null) + survival_score: (Scalars['float8'] | null) + traded_score: (Scalars['float8'] | null) + ttd_score: (Scalars['float8'] | null) + util_eff_score: (Scalars['float8'] | null) + utility_goal: (Scalars['float8'] | null) + utility_rating: (Scalars['float8'] | null) + __typename: 'player_performance_v' +} + + +/** aggregated selection of "player_performance_v" */ +export interface player_performance_v_aggregate { + aggregate: (player_performance_v_aggregate_fields | null) + nodes: player_performance_v[] + __typename: 'player_performance_v_aggregate' +} + + +/** aggregate fields of "player_performance_v" */ +export interface player_performance_v_aggregate_fields { + avg: (player_performance_v_avg_fields | null) + count: Scalars['Int'] + max: (player_performance_v_max_fields | null) + min: (player_performance_v_min_fields | null) + stddev: (player_performance_v_stddev_fields | null) + stddev_pop: (player_performance_v_stddev_pop_fields | null) + stddev_samp: (player_performance_v_stddev_samp_fields | null) + sum: (player_performance_v_sum_fields | null) + var_pop: (player_performance_v_var_pop_fields | null) + var_samp: (player_performance_v_var_samp_fields | null) + variance: (player_performance_v_variance_fields | null) + __typename: 'player_performance_v_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface player_performance_v_avg_fields { + accuracy_score: (Scalars['Float'] | null) + aim_goal: (Scalars['Float'] | null) + aim_rating: (Scalars['Float'] | null) + band: (Scalars['Float'] | null) + band_sample: (Scalars['Float'] | null) + blind_score: (Scalars['Float'] | null) + counter_strafe_score: (Scalars['Float'] | null) + crosshair_score: (Scalars['Float'] | null) + flash_assists_score: (Scalars['Float'] | null) + hs_score: (Scalars['Float'] | null) + kast_score: (Scalars['Float'] | null) + maps: (Scalars['Float'] | null) + positioning_goal: (Scalars['Float'] | null) + positioning_rating: (Scalars['Float'] | null) + premier_rank: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + spotted_score: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + survival_score: (Scalars['Float'] | null) + traded_score: (Scalars['Float'] | null) + ttd_score: (Scalars['Float'] | null) + util_eff_score: (Scalars['Float'] | null) + utility_goal: (Scalars['Float'] | null) + utility_rating: (Scalars['Float'] | null) + __typename: 'player_performance_v_avg_fields' +} + + +/** aggregate max on columns */ +export interface player_performance_v_max_fields { + accuracy_score: (Scalars['float8'] | null) + aim_goal: (Scalars['float8'] | null) + aim_rating: (Scalars['float8'] | null) + band: (Scalars['Int'] | null) + band_sample: (Scalars['bigint'] | null) + blind_score: (Scalars['float8'] | null) + counter_strafe_score: (Scalars['float8'] | null) + crosshair_score: (Scalars['float8'] | null) + flash_assists_score: (Scalars['float8'] | null) + hs_score: (Scalars['float8'] | null) + kast_score: (Scalars['float8'] | null) + maps: (Scalars['Int'] | null) + positioning_goal: (Scalars['float8'] | null) + positioning_rating: (Scalars['float8'] | null) + premier_rank: (Scalars['Int'] | null) + rounds: (Scalars['Int'] | null) + spotted_score: (Scalars['float8'] | null) + steam_id: (Scalars['bigint'] | null) + survival_score: (Scalars['float8'] | null) + traded_score: (Scalars['float8'] | null) + ttd_score: (Scalars['float8'] | null) + util_eff_score: (Scalars['float8'] | null) + utility_goal: (Scalars['float8'] | null) + utility_rating: (Scalars['float8'] | null) + __typename: 'player_performance_v_max_fields' +} + + +/** aggregate min on columns */ +export interface player_performance_v_min_fields { + accuracy_score: (Scalars['float8'] | null) + aim_goal: (Scalars['float8'] | null) + aim_rating: (Scalars['float8'] | null) + band: (Scalars['Int'] | null) + band_sample: (Scalars['bigint'] | null) + blind_score: (Scalars['float8'] | null) + counter_strafe_score: (Scalars['float8'] | null) + crosshair_score: (Scalars['float8'] | null) + flash_assists_score: (Scalars['float8'] | null) + hs_score: (Scalars['float8'] | null) + kast_score: (Scalars['float8'] | null) + maps: (Scalars['Int'] | null) + positioning_goal: (Scalars['float8'] | null) + positioning_rating: (Scalars['float8'] | null) + premier_rank: (Scalars['Int'] | null) + rounds: (Scalars['Int'] | null) + spotted_score: (Scalars['float8'] | null) + steam_id: (Scalars['bigint'] | null) + survival_score: (Scalars['float8'] | null) + traded_score: (Scalars['float8'] | null) + ttd_score: (Scalars['float8'] | null) + util_eff_score: (Scalars['float8'] | null) + utility_goal: (Scalars['float8'] | null) + utility_rating: (Scalars['float8'] | null) + __typename: 'player_performance_v_min_fields' +} + + +/** select columns of table "player_performance_v" */ +export type player_performance_v_select_column = 'accuracy_score' | 'aim_goal' | 'aim_rating' | 'band' | 'band_sample' | 'blind_score' | 'counter_strafe_score' | 'crosshair_score' | 'flash_assists_score' | 'hs_score' | 'kast_score' | 'maps' | 'positioning_goal' | 'positioning_rating' | 'premier_rank' | 'rounds' | 'spotted_score' | 'steam_id' | 'survival_score' | 'traded_score' | 'ttd_score' | 'util_eff_score' | 'utility_goal' | 'utility_rating' + + +/** aggregate stddev on columns */ +export interface player_performance_v_stddev_fields { + accuracy_score: (Scalars['Float'] | null) + aim_goal: (Scalars['Float'] | null) + aim_rating: (Scalars['Float'] | null) + band: (Scalars['Float'] | null) + band_sample: (Scalars['Float'] | null) + blind_score: (Scalars['Float'] | null) + counter_strafe_score: (Scalars['Float'] | null) + crosshair_score: (Scalars['Float'] | null) + flash_assists_score: (Scalars['Float'] | null) + hs_score: (Scalars['Float'] | null) + kast_score: (Scalars['Float'] | null) + maps: (Scalars['Float'] | null) + positioning_goal: (Scalars['Float'] | null) + positioning_rating: (Scalars['Float'] | null) + premier_rank: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + spotted_score: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + survival_score: (Scalars['Float'] | null) + traded_score: (Scalars['Float'] | null) + ttd_score: (Scalars['Float'] | null) + util_eff_score: (Scalars['Float'] | null) + utility_goal: (Scalars['Float'] | null) + utility_rating: (Scalars['Float'] | null) + __typename: 'player_performance_v_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface player_performance_v_stddev_pop_fields { + accuracy_score: (Scalars['Float'] | null) + aim_goal: (Scalars['Float'] | null) + aim_rating: (Scalars['Float'] | null) + band: (Scalars['Float'] | null) + band_sample: (Scalars['Float'] | null) + blind_score: (Scalars['Float'] | null) + counter_strafe_score: (Scalars['Float'] | null) + crosshair_score: (Scalars['Float'] | null) + flash_assists_score: (Scalars['Float'] | null) + hs_score: (Scalars['Float'] | null) + kast_score: (Scalars['Float'] | null) + maps: (Scalars['Float'] | null) + positioning_goal: (Scalars['Float'] | null) + positioning_rating: (Scalars['Float'] | null) + premier_rank: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + spotted_score: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + survival_score: (Scalars['Float'] | null) + traded_score: (Scalars['Float'] | null) + ttd_score: (Scalars['Float'] | null) + util_eff_score: (Scalars['Float'] | null) + utility_goal: (Scalars['Float'] | null) + utility_rating: (Scalars['Float'] | null) + __typename: 'player_performance_v_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface player_performance_v_stddev_samp_fields { + accuracy_score: (Scalars['Float'] | null) + aim_goal: (Scalars['Float'] | null) + aim_rating: (Scalars['Float'] | null) + band: (Scalars['Float'] | null) + band_sample: (Scalars['Float'] | null) + blind_score: (Scalars['Float'] | null) + counter_strafe_score: (Scalars['Float'] | null) + crosshair_score: (Scalars['Float'] | null) + flash_assists_score: (Scalars['Float'] | null) + hs_score: (Scalars['Float'] | null) + kast_score: (Scalars['Float'] | null) + maps: (Scalars['Float'] | null) + positioning_goal: (Scalars['Float'] | null) + positioning_rating: (Scalars['Float'] | null) + premier_rank: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + spotted_score: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + survival_score: (Scalars['Float'] | null) + traded_score: (Scalars['Float'] | null) + ttd_score: (Scalars['Float'] | null) + util_eff_score: (Scalars['Float'] | null) + utility_goal: (Scalars['Float'] | null) + utility_rating: (Scalars['Float'] | null) + __typename: 'player_performance_v_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface player_performance_v_sum_fields { + accuracy_score: (Scalars['float8'] | null) + aim_goal: (Scalars['float8'] | null) + aim_rating: (Scalars['float8'] | null) + band: (Scalars['Int'] | null) + band_sample: (Scalars['bigint'] | null) + blind_score: (Scalars['float8'] | null) + counter_strafe_score: (Scalars['float8'] | null) + crosshair_score: (Scalars['float8'] | null) + flash_assists_score: (Scalars['float8'] | null) + hs_score: (Scalars['float8'] | null) + kast_score: (Scalars['float8'] | null) + maps: (Scalars['Int'] | null) + positioning_goal: (Scalars['float8'] | null) + positioning_rating: (Scalars['float8'] | null) + premier_rank: (Scalars['Int'] | null) + rounds: (Scalars['Int'] | null) + spotted_score: (Scalars['float8'] | null) + steam_id: (Scalars['bigint'] | null) + survival_score: (Scalars['float8'] | null) + traded_score: (Scalars['float8'] | null) + ttd_score: (Scalars['float8'] | null) + util_eff_score: (Scalars['float8'] | null) + utility_goal: (Scalars['float8'] | null) + utility_rating: (Scalars['float8'] | null) + __typename: 'player_performance_v_sum_fields' +} + + +/** aggregate var_pop on columns */ +export interface player_performance_v_var_pop_fields { + accuracy_score: (Scalars['Float'] | null) + aim_goal: (Scalars['Float'] | null) + aim_rating: (Scalars['Float'] | null) + band: (Scalars['Float'] | null) + band_sample: (Scalars['Float'] | null) + blind_score: (Scalars['Float'] | null) + counter_strafe_score: (Scalars['Float'] | null) + crosshair_score: (Scalars['Float'] | null) + flash_assists_score: (Scalars['Float'] | null) + hs_score: (Scalars['Float'] | null) + kast_score: (Scalars['Float'] | null) + maps: (Scalars['Float'] | null) + positioning_goal: (Scalars['Float'] | null) + positioning_rating: (Scalars['Float'] | null) + premier_rank: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + spotted_score: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + survival_score: (Scalars['Float'] | null) + traded_score: (Scalars['Float'] | null) + ttd_score: (Scalars['Float'] | null) + util_eff_score: (Scalars['Float'] | null) + utility_goal: (Scalars['Float'] | null) + utility_rating: (Scalars['Float'] | null) + __typename: 'player_performance_v_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface player_performance_v_var_samp_fields { + accuracy_score: (Scalars['Float'] | null) + aim_goal: (Scalars['Float'] | null) + aim_rating: (Scalars['Float'] | null) + band: (Scalars['Float'] | null) + band_sample: (Scalars['Float'] | null) + blind_score: (Scalars['Float'] | null) + counter_strafe_score: (Scalars['Float'] | null) + crosshair_score: (Scalars['Float'] | null) + flash_assists_score: (Scalars['Float'] | null) + hs_score: (Scalars['Float'] | null) + kast_score: (Scalars['Float'] | null) + maps: (Scalars['Float'] | null) + positioning_goal: (Scalars['Float'] | null) + positioning_rating: (Scalars['Float'] | null) + premier_rank: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + spotted_score: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + survival_score: (Scalars['Float'] | null) + traded_score: (Scalars['Float'] | null) + ttd_score: (Scalars['Float'] | null) + util_eff_score: (Scalars['Float'] | null) + utility_goal: (Scalars['Float'] | null) + utility_rating: (Scalars['Float'] | null) + __typename: 'player_performance_v_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface player_performance_v_variance_fields { + accuracy_score: (Scalars['Float'] | null) + aim_goal: (Scalars['Float'] | null) + aim_rating: (Scalars['Float'] | null) + band: (Scalars['Float'] | null) + band_sample: (Scalars['Float'] | null) + blind_score: (Scalars['Float'] | null) + counter_strafe_score: (Scalars['Float'] | null) + crosshair_score: (Scalars['Float'] | null) + flash_assists_score: (Scalars['Float'] | null) + hs_score: (Scalars['Float'] | null) + kast_score: (Scalars['Float'] | null) + maps: (Scalars['Float'] | null) + positioning_goal: (Scalars['Float'] | null) + positioning_rating: (Scalars['Float'] | null) + premier_rank: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + spotted_score: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + survival_score: (Scalars['Float'] | null) + traded_score: (Scalars['Float'] | null) + ttd_score: (Scalars['Float'] | null) + util_eff_score: (Scalars['Float'] | null) + utility_goal: (Scalars['Float'] | null) + utility_rating: (Scalars['Float'] | null) + __typename: 'player_performance_v_variance_fields' +} + + +/** columns and relationships of "player_premier_rank_history" */ +export interface player_premier_rank_history { + id: Scalars['uuid'] + /** An object relationship */ + map: (maps | null) + map_id: (Scalars['uuid'] | null) + /** An object relationship */ + match: matches + match_id: Scalars['uuid'] + observed_at: Scalars['timestamptz'] + /** An object relationship */ + player: players + previous_rank: (Scalars['Int'] | null) + rank: Scalars['Int'] + rank_type: Scalars['Int'] + steam_id: Scalars['bigint'] + __typename: 'player_premier_rank_history' +} + + +/** aggregated selection of "player_premier_rank_history" */ +export interface player_premier_rank_history_aggregate { + aggregate: (player_premier_rank_history_aggregate_fields | null) + nodes: player_premier_rank_history[] + __typename: 'player_premier_rank_history_aggregate' +} + + +/** aggregate fields of "player_premier_rank_history" */ +export interface player_premier_rank_history_aggregate_fields { + avg: (player_premier_rank_history_avg_fields | null) + count: Scalars['Int'] + max: (player_premier_rank_history_max_fields | null) + min: (player_premier_rank_history_min_fields | null) + stddev: (player_premier_rank_history_stddev_fields | null) + stddev_pop: (player_premier_rank_history_stddev_pop_fields | null) + stddev_samp: (player_premier_rank_history_stddev_samp_fields | null) + sum: (player_premier_rank_history_sum_fields | null) + var_pop: (player_premier_rank_history_var_pop_fields | null) + var_samp: (player_premier_rank_history_var_samp_fields | null) + variance: (player_premier_rank_history_variance_fields | null) + __typename: 'player_premier_rank_history_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface player_premier_rank_history_avg_fields { + previous_rank: (Scalars['Float'] | null) + rank: (Scalars['Float'] | null) + rank_type: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'player_premier_rank_history_avg_fields' +} + + +/** unique or primary key constraints on table "player_premier_rank_history" */ +export type player_premier_rank_history_constraint = 'player_premier_rank_history_pkey' | 'uq_player_premier_rank_history_steam_match_type' + + +/** aggregate max on columns */ +export interface player_premier_rank_history_max_fields { + id: (Scalars['uuid'] | null) + map_id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + observed_at: (Scalars['timestamptz'] | null) + previous_rank: (Scalars['Int'] | null) + rank: (Scalars['Int'] | null) + rank_type: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'player_premier_rank_history_max_fields' +} + + +/** aggregate min on columns */ +export interface player_premier_rank_history_min_fields { + id: (Scalars['uuid'] | null) + map_id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + observed_at: (Scalars['timestamptz'] | null) + previous_rank: (Scalars['Int'] | null) + rank: (Scalars['Int'] | null) + rank_type: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'player_premier_rank_history_min_fields' +} + + +/** response of any mutation on the table "player_premier_rank_history" */ +export interface player_premier_rank_history_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: player_premier_rank_history[] + __typename: 'player_premier_rank_history_mutation_response' +} + + +/** select columns of table "player_premier_rank_history" */ +export type player_premier_rank_history_select_column = 'id' | 'map_id' | 'match_id' | 'observed_at' | 'previous_rank' | 'rank' | 'rank_type' | 'steam_id' + + +/** aggregate stddev on columns */ +export interface player_premier_rank_history_stddev_fields { + previous_rank: (Scalars['Float'] | null) + rank: (Scalars['Float'] | null) + rank_type: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'player_premier_rank_history_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface player_premier_rank_history_stddev_pop_fields { + previous_rank: (Scalars['Float'] | null) + rank: (Scalars['Float'] | null) + rank_type: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'player_premier_rank_history_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface player_premier_rank_history_stddev_samp_fields { + previous_rank: (Scalars['Float'] | null) + rank: (Scalars['Float'] | null) + rank_type: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'player_premier_rank_history_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface player_premier_rank_history_sum_fields { + previous_rank: (Scalars['Int'] | null) + rank: (Scalars['Int'] | null) + rank_type: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'player_premier_rank_history_sum_fields' +} + + +/** update columns of table "player_premier_rank_history" */ +export type player_premier_rank_history_update_column = 'id' | 'map_id' | 'match_id' | 'observed_at' | 'previous_rank' | 'rank' | 'rank_type' | 'steam_id' + + +/** aggregate var_pop on columns */ +export interface player_premier_rank_history_var_pop_fields { + previous_rank: (Scalars['Float'] | null) + rank: (Scalars['Float'] | null) + rank_type: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'player_premier_rank_history_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface player_premier_rank_history_var_samp_fields { + previous_rank: (Scalars['Float'] | null) + rank: (Scalars['Float'] | null) + rank_type: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'player_premier_rank_history_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface player_premier_rank_history_variance_fields { + previous_rank: (Scalars['Float'] | null) + rank: (Scalars['Float'] | null) + rank_type: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'player_premier_rank_history_variance_fields' +} + + +/** columns and relationships of "player_sanctions" */ +export interface player_sanctions { + created_at: Scalars['timestamptz'] + deleted_at: (Scalars['timestamptz'] | null) + /** An object relationship */ + e_sanction_type: e_sanction_types + id: Scalars['uuid'] + /** An object relationship */ + player: players + player_steam_id: Scalars['bigint'] + reason: (Scalars['String'] | null) + remove_sanction_date: (Scalars['timestamptz'] | null) + /** An object relationship */ + sanctioned_by: (players | null) + sanctioned_by_steam_id: (Scalars['bigint'] | null) + type: e_sanction_types_enum + __typename: 'player_sanctions' +} + + +/** aggregated selection of "player_sanctions" */ +export interface player_sanctions_aggregate { + aggregate: (player_sanctions_aggregate_fields | null) + nodes: player_sanctions[] + __typename: 'player_sanctions_aggregate' +} + + +/** aggregate fields of "player_sanctions" */ +export interface player_sanctions_aggregate_fields { + avg: (player_sanctions_avg_fields | null) + count: Scalars['Int'] + max: (player_sanctions_max_fields | null) + min: (player_sanctions_min_fields | null) + stddev: (player_sanctions_stddev_fields | null) + stddev_pop: (player_sanctions_stddev_pop_fields | null) + stddev_samp: (player_sanctions_stddev_samp_fields | null) + sum: (player_sanctions_sum_fields | null) + var_pop: (player_sanctions_var_pop_fields | null) + var_samp: (player_sanctions_var_samp_fields | null) + variance: (player_sanctions_variance_fields | null) + __typename: 'player_sanctions_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface player_sanctions_avg_fields { + player_steam_id: (Scalars['Float'] | null) + sanctioned_by_steam_id: (Scalars['Float'] | null) + __typename: 'player_sanctions_avg_fields' +} + + +/** unique or primary key constraints on table "player_sanctions" */ +export type player_sanctions_constraint = 'player_sanctions_pkey' + + +/** aggregate max on columns */ +export interface player_sanctions_max_fields { + created_at: (Scalars['timestamptz'] | null) + deleted_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + player_steam_id: (Scalars['bigint'] | null) + reason: (Scalars['String'] | null) + remove_sanction_date: (Scalars['timestamptz'] | null) + sanctioned_by_steam_id: (Scalars['bigint'] | null) + __typename: 'player_sanctions_max_fields' +} + + +/** aggregate min on columns */ +export interface player_sanctions_min_fields { + created_at: (Scalars['timestamptz'] | null) + deleted_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + player_steam_id: (Scalars['bigint'] | null) + reason: (Scalars['String'] | null) + remove_sanction_date: (Scalars['timestamptz'] | null) + sanctioned_by_steam_id: (Scalars['bigint'] | null) + __typename: 'player_sanctions_min_fields' +} + + +/** response of any mutation on the table "player_sanctions" */ +export interface player_sanctions_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: player_sanctions[] + __typename: 'player_sanctions_mutation_response' +} + + +/** select columns of table "player_sanctions" */ +export type player_sanctions_select_column = 'created_at' | 'deleted_at' | 'id' | 'player_steam_id' | 'reason' | 'remove_sanction_date' | 'sanctioned_by_steam_id' | 'type' + + +/** aggregate stddev on columns */ +export interface player_sanctions_stddev_fields { + player_steam_id: (Scalars['Float'] | null) + sanctioned_by_steam_id: (Scalars['Float'] | null) + __typename: 'player_sanctions_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface player_sanctions_stddev_pop_fields { + player_steam_id: (Scalars['Float'] | null) + sanctioned_by_steam_id: (Scalars['Float'] | null) + __typename: 'player_sanctions_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface player_sanctions_stddev_samp_fields { + player_steam_id: (Scalars['Float'] | null) + sanctioned_by_steam_id: (Scalars['Float'] | null) + __typename: 'player_sanctions_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface player_sanctions_sum_fields { + player_steam_id: (Scalars['bigint'] | null) + sanctioned_by_steam_id: (Scalars['bigint'] | null) + __typename: 'player_sanctions_sum_fields' +} + + +/** update columns of table "player_sanctions" */ +export type player_sanctions_update_column = 'created_at' | 'deleted_at' | 'id' | 'player_steam_id' | 'reason' | 'remove_sanction_date' | 'sanctioned_by_steam_id' | 'type' + + +/** aggregate var_pop on columns */ +export interface player_sanctions_var_pop_fields { + player_steam_id: (Scalars['Float'] | null) + sanctioned_by_steam_id: (Scalars['Float'] | null) + __typename: 'player_sanctions_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface player_sanctions_var_samp_fields { + player_steam_id: (Scalars['Float'] | null) + sanctioned_by_steam_id: (Scalars['Float'] | null) + __typename: 'player_sanctions_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface player_sanctions_variance_fields { + player_steam_id: (Scalars['Float'] | null) + sanctioned_by_steam_id: (Scalars['Float'] | null) + __typename: 'player_sanctions_variance_fields' +} + + +/** columns and relationships of "player_season_stats" */ +export interface player_season_stats { + assists: Scalars['bigint'] + deaths: Scalars['bigint'] + headshot_percentage: Scalars['float8'] + headshots: Scalars['bigint'] + kills: Scalars['bigint'] + /** An object relationship */ + player: players + player_steam_id: Scalars['bigint'] + /** An object relationship */ + season: seasons + season_id: Scalars['uuid'] + __typename: 'player_season_stats' +} + + +/** aggregated selection of "player_season_stats" */ +export interface player_season_stats_aggregate { + aggregate: (player_season_stats_aggregate_fields | null) + nodes: player_season_stats[] + __typename: 'player_season_stats_aggregate' +} + + +/** aggregate fields of "player_season_stats" */ +export interface player_season_stats_aggregate_fields { + avg: (player_season_stats_avg_fields | null) + count: Scalars['Int'] + max: (player_season_stats_max_fields | null) + min: (player_season_stats_min_fields | null) + stddev: (player_season_stats_stddev_fields | null) + stddev_pop: (player_season_stats_stddev_pop_fields | null) + stddev_samp: (player_season_stats_stddev_samp_fields | null) + sum: (player_season_stats_sum_fields | null) + var_pop: (player_season_stats_var_pop_fields | null) + var_samp: (player_season_stats_var_samp_fields | null) + variance: (player_season_stats_variance_fields | null) + __typename: 'player_season_stats_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface player_season_stats_avg_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'player_season_stats_avg_fields' +} + + +/** unique or primary key constraints on table "player_season_stats" */ +export type player_season_stats_constraint = 'player_season_stats_pkey' + + +/** aggregate max on columns */ +export interface player_season_stats_max_fields { + assists: (Scalars['bigint'] | null) + deaths: (Scalars['bigint'] | null) + headshot_percentage: (Scalars['float8'] | null) + headshots: (Scalars['bigint'] | null) + kills: (Scalars['bigint'] | null) + player_steam_id: (Scalars['bigint'] | null) + season_id: (Scalars['uuid'] | null) + __typename: 'player_season_stats_max_fields' +} + + +/** aggregate min on columns */ +export interface player_season_stats_min_fields { + assists: (Scalars['bigint'] | null) + deaths: (Scalars['bigint'] | null) + headshot_percentage: (Scalars['float8'] | null) + headshots: (Scalars['bigint'] | null) + kills: (Scalars['bigint'] | null) + player_steam_id: (Scalars['bigint'] | null) + season_id: (Scalars['uuid'] | null) + __typename: 'player_season_stats_min_fields' +} + + +/** response of any mutation on the table "player_season_stats" */ +export interface player_season_stats_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: player_season_stats[] + __typename: 'player_season_stats_mutation_response' +} + + +/** select columns of table "player_season_stats" */ +export type player_season_stats_select_column = 'assists' | 'deaths' | 'headshot_percentage' | 'headshots' | 'kills' | 'player_steam_id' | 'season_id' + + +/** select "player_season_stats_aggregate_bool_exp_avg_arguments_columns" columns of table "player_season_stats" */ +export type player_season_stats_select_column_player_season_stats_aggregate_bool_exp_avg_arguments_columns = 'headshot_percentage' + + +/** select "player_season_stats_aggregate_bool_exp_corr_arguments_columns" columns of table "player_season_stats" */ +export type player_season_stats_select_column_player_season_stats_aggregate_bool_exp_corr_arguments_columns = 'headshot_percentage' + + +/** select "player_season_stats_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "player_season_stats" */ +export type player_season_stats_select_column_player_season_stats_aggregate_bool_exp_covar_samp_arguments_columns = 'headshot_percentage' + + +/** select "player_season_stats_aggregate_bool_exp_max_arguments_columns" columns of table "player_season_stats" */ +export type player_season_stats_select_column_player_season_stats_aggregate_bool_exp_max_arguments_columns = 'headshot_percentage' + + +/** select "player_season_stats_aggregate_bool_exp_min_arguments_columns" columns of table "player_season_stats" */ +export type player_season_stats_select_column_player_season_stats_aggregate_bool_exp_min_arguments_columns = 'headshot_percentage' + + +/** select "player_season_stats_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "player_season_stats" */ +export type player_season_stats_select_column_player_season_stats_aggregate_bool_exp_stddev_samp_arguments_columns = 'headshot_percentage' + + +/** select "player_season_stats_aggregate_bool_exp_sum_arguments_columns" columns of table "player_season_stats" */ +export type player_season_stats_select_column_player_season_stats_aggregate_bool_exp_sum_arguments_columns = 'headshot_percentage' + + +/** select "player_season_stats_aggregate_bool_exp_var_samp_arguments_columns" columns of table "player_season_stats" */ +export type player_season_stats_select_column_player_season_stats_aggregate_bool_exp_var_samp_arguments_columns = 'headshot_percentage' + + +/** aggregate stddev on columns */ +export interface player_season_stats_stddev_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'player_season_stats_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface player_season_stats_stddev_pop_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'player_season_stats_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface player_season_stats_stddev_samp_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'player_season_stats_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface player_season_stats_sum_fields { + assists: (Scalars['bigint'] | null) + deaths: (Scalars['bigint'] | null) + headshot_percentage: (Scalars['float8'] | null) + headshots: (Scalars['bigint'] | null) + kills: (Scalars['bigint'] | null) + player_steam_id: (Scalars['bigint'] | null) + __typename: 'player_season_stats_sum_fields' +} + + +/** update columns of table "player_season_stats" */ +export type player_season_stats_update_column = 'assists' | 'deaths' | 'headshot_percentage' | 'headshots' | 'kills' | 'player_steam_id' | 'season_id' + + +/** aggregate var_pop on columns */ +export interface player_season_stats_var_pop_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'player_season_stats_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface player_season_stats_var_samp_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'player_season_stats_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface player_season_stats_variance_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'player_season_stats_variance_fields' +} + + +/** columns and relationships of "player_stats" */ +export interface player_stats { + assists: Scalars['bigint'] + deaths: Scalars['bigint'] + headshot_percentage: Scalars['float8'] + headshots: Scalars['bigint'] + kills: Scalars['bigint'] + /** An object relationship */ + player: players + player_steam_id: Scalars['bigint'] + __typename: 'player_stats' +} + + +/** aggregated selection of "player_stats" */ +export interface player_stats_aggregate { + aggregate: (player_stats_aggregate_fields | null) + nodes: player_stats[] + __typename: 'player_stats_aggregate' +} + + +/** aggregate fields of "player_stats" */ +export interface player_stats_aggregate_fields { + avg: (player_stats_avg_fields | null) + count: Scalars['Int'] + max: (player_stats_max_fields | null) + min: (player_stats_min_fields | null) + stddev: (player_stats_stddev_fields | null) + stddev_pop: (player_stats_stddev_pop_fields | null) + stddev_samp: (player_stats_stddev_samp_fields | null) + sum: (player_stats_sum_fields | null) + var_pop: (player_stats_var_pop_fields | null) + var_samp: (player_stats_var_samp_fields | null) + variance: (player_stats_variance_fields | null) + __typename: 'player_stats_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface player_stats_avg_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'player_stats_avg_fields' +} + + +/** unique or primary key constraints on table "player_stats" */ +export type player_stats_constraint = 'player_stats_pkey' + + +/** aggregate max on columns */ +export interface player_stats_max_fields { + assists: (Scalars['bigint'] | null) + deaths: (Scalars['bigint'] | null) + headshot_percentage: (Scalars['float8'] | null) + headshots: (Scalars['bigint'] | null) + kills: (Scalars['bigint'] | null) + player_steam_id: (Scalars['bigint'] | null) + __typename: 'player_stats_max_fields' +} + + +/** aggregate min on columns */ +export interface player_stats_min_fields { + assists: (Scalars['bigint'] | null) + deaths: (Scalars['bigint'] | null) + headshot_percentage: (Scalars['float8'] | null) + headshots: (Scalars['bigint'] | null) + kills: (Scalars['bigint'] | null) + player_steam_id: (Scalars['bigint'] | null) + __typename: 'player_stats_min_fields' +} + + +/** response of any mutation on the table "player_stats" */ +export interface player_stats_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: player_stats[] + __typename: 'player_stats_mutation_response' +} + + +/** select columns of table "player_stats" */ +export type player_stats_select_column = 'assists' | 'deaths' | 'headshot_percentage' | 'headshots' | 'kills' | 'player_steam_id' + + +/** aggregate stddev on columns */ +export interface player_stats_stddev_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'player_stats_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface player_stats_stddev_pop_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'player_stats_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface player_stats_stddev_samp_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'player_stats_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface player_stats_sum_fields { + assists: (Scalars['bigint'] | null) + deaths: (Scalars['bigint'] | null) + headshot_percentage: (Scalars['float8'] | null) + headshots: (Scalars['bigint'] | null) + kills: (Scalars['bigint'] | null) + player_steam_id: (Scalars['bigint'] | null) + __typename: 'player_stats_sum_fields' +} + + +/** update columns of table "player_stats" */ +export type player_stats_update_column = 'assists' | 'deaths' | 'headshot_percentage' | 'headshots' | 'kills' | 'player_steam_id' + + +/** aggregate var_pop on columns */ +export interface player_stats_var_pop_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'player_stats_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface player_stats_var_samp_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'player_stats_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface player_stats_variance_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'player_stats_variance_fields' +} + + +/** columns and relationships of "player_steam_bot_friend" */ +export interface player_steam_bot_friend { + bot_steam_account_id: (Scalars['uuid'] | null) + bot_steamid64: (Scalars['bigint'] | null) + created_at: Scalars['timestamptz'] + friended_at: (Scalars['timestamptz'] | null) + last_presence_state: (Scalars['jsonb'] | null) + /** An object relationship */ + player: players + status: Scalars['String'] + steam_id: Scalars['bigint'] + updated_at: Scalars['timestamptz'] + __typename: 'player_steam_bot_friend' +} + + +/** aggregated selection of "player_steam_bot_friend" */ +export interface player_steam_bot_friend_aggregate { + aggregate: (player_steam_bot_friend_aggregate_fields | null) + nodes: player_steam_bot_friend[] + __typename: 'player_steam_bot_friend_aggregate' +} + + +/** aggregate fields of "player_steam_bot_friend" */ +export interface player_steam_bot_friend_aggregate_fields { + avg: (player_steam_bot_friend_avg_fields | null) + count: Scalars['Int'] + max: (player_steam_bot_friend_max_fields | null) + min: (player_steam_bot_friend_min_fields | null) + stddev: (player_steam_bot_friend_stddev_fields | null) + stddev_pop: (player_steam_bot_friend_stddev_pop_fields | null) + stddev_samp: (player_steam_bot_friend_stddev_samp_fields | null) + sum: (player_steam_bot_friend_sum_fields | null) + var_pop: (player_steam_bot_friend_var_pop_fields | null) + var_samp: (player_steam_bot_friend_var_samp_fields | null) + variance: (player_steam_bot_friend_variance_fields | null) + __typename: 'player_steam_bot_friend_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface player_steam_bot_friend_avg_fields { + bot_steamid64: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'player_steam_bot_friend_avg_fields' +} + + +/** unique or primary key constraints on table "player_steam_bot_friend" */ +export type player_steam_bot_friend_constraint = 'player_steam_bot_friend_pkey' + + +/** aggregate max on columns */ +export interface player_steam_bot_friend_max_fields { + bot_steam_account_id: (Scalars['uuid'] | null) + bot_steamid64: (Scalars['bigint'] | null) + created_at: (Scalars['timestamptz'] | null) + friended_at: (Scalars['timestamptz'] | null) + status: (Scalars['String'] | null) + steam_id: (Scalars['bigint'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'player_steam_bot_friend_max_fields' +} + + +/** aggregate min on columns */ +export interface player_steam_bot_friend_min_fields { + bot_steam_account_id: (Scalars['uuid'] | null) + bot_steamid64: (Scalars['bigint'] | null) + created_at: (Scalars['timestamptz'] | null) + friended_at: (Scalars['timestamptz'] | null) + status: (Scalars['String'] | null) + steam_id: (Scalars['bigint'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'player_steam_bot_friend_min_fields' +} + + +/** response of any mutation on the table "player_steam_bot_friend" */ +export interface player_steam_bot_friend_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: player_steam_bot_friend[] + __typename: 'player_steam_bot_friend_mutation_response' +} + + +/** select columns of table "player_steam_bot_friend" */ +export type player_steam_bot_friend_select_column = 'bot_steam_account_id' | 'bot_steamid64' | 'created_at' | 'friended_at' | 'last_presence_state' | 'status' | 'steam_id' | 'updated_at' + + +/** aggregate stddev on columns */ +export interface player_steam_bot_friend_stddev_fields { + bot_steamid64: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'player_steam_bot_friend_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface player_steam_bot_friend_stddev_pop_fields { + bot_steamid64: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'player_steam_bot_friend_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface player_steam_bot_friend_stddev_samp_fields { + bot_steamid64: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'player_steam_bot_friend_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface player_steam_bot_friend_sum_fields { + bot_steamid64: (Scalars['bigint'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'player_steam_bot_friend_sum_fields' +} + + +/** update columns of table "player_steam_bot_friend" */ +export type player_steam_bot_friend_update_column = 'bot_steam_account_id' | 'bot_steamid64' | 'created_at' | 'friended_at' | 'last_presence_state' | 'status' | 'steam_id' | 'updated_at' + + +/** aggregate var_pop on columns */ +export interface player_steam_bot_friend_var_pop_fields { + bot_steamid64: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'player_steam_bot_friend_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface player_steam_bot_friend_var_samp_fields { + bot_steamid64: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'player_steam_bot_friend_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface player_steam_bot_friend_variance_fields { + bot_steamid64: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'player_steam_bot_friend_variance_fields' +} + + +/** columns and relationships of "player_steam_match_auth" */ +export interface player_steam_match_auth { + auth_code: Scalars['String'] + created_at: Scalars['timestamptz'] + last_error: (Scalars['String'] | null) + last_known_share_code: Scalars['String'] + last_polled_at: (Scalars['timestamptz'] | null) + /** An object relationship */ + player: players + steam_id: Scalars['bigint'] + updated_at: Scalars['timestamptz'] + __typename: 'player_steam_match_auth' +} + + +/** aggregated selection of "player_steam_match_auth" */ +export interface player_steam_match_auth_aggregate { + aggregate: (player_steam_match_auth_aggregate_fields | null) + nodes: player_steam_match_auth[] + __typename: 'player_steam_match_auth_aggregate' +} + + +/** aggregate fields of "player_steam_match_auth" */ +export interface player_steam_match_auth_aggregate_fields { + avg: (player_steam_match_auth_avg_fields | null) + count: Scalars['Int'] + max: (player_steam_match_auth_max_fields | null) + min: (player_steam_match_auth_min_fields | null) + stddev: (player_steam_match_auth_stddev_fields | null) + stddev_pop: (player_steam_match_auth_stddev_pop_fields | null) + stddev_samp: (player_steam_match_auth_stddev_samp_fields | null) + sum: (player_steam_match_auth_sum_fields | null) + var_pop: (player_steam_match_auth_var_pop_fields | null) + var_samp: (player_steam_match_auth_var_samp_fields | null) + variance: (player_steam_match_auth_variance_fields | null) + __typename: 'player_steam_match_auth_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface player_steam_match_auth_avg_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'player_steam_match_auth_avg_fields' +} + + +/** unique or primary key constraints on table "player_steam_match_auth" */ +export type player_steam_match_auth_constraint = 'player_steam_match_auth_pkey' + + +/** aggregate max on columns */ +export interface player_steam_match_auth_max_fields { + auth_code: (Scalars['String'] | null) + created_at: (Scalars['timestamptz'] | null) + last_error: (Scalars['String'] | null) + last_known_share_code: (Scalars['String'] | null) + last_polled_at: (Scalars['timestamptz'] | null) + steam_id: (Scalars['bigint'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'player_steam_match_auth_max_fields' +} + + +/** aggregate min on columns */ +export interface player_steam_match_auth_min_fields { + auth_code: (Scalars['String'] | null) + created_at: (Scalars['timestamptz'] | null) + last_error: (Scalars['String'] | null) + last_known_share_code: (Scalars['String'] | null) + last_polled_at: (Scalars['timestamptz'] | null) + steam_id: (Scalars['bigint'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'player_steam_match_auth_min_fields' +} + + +/** response of any mutation on the table "player_steam_match_auth" */ +export interface player_steam_match_auth_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: player_steam_match_auth[] + __typename: 'player_steam_match_auth_mutation_response' +} + + +/** select columns of table "player_steam_match_auth" */ +export type player_steam_match_auth_select_column = 'auth_code' | 'created_at' | 'last_error' | 'last_known_share_code' | 'last_polled_at' | 'steam_id' | 'updated_at' + + +/** aggregate stddev on columns */ +export interface player_steam_match_auth_stddev_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'player_steam_match_auth_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface player_steam_match_auth_stddev_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'player_steam_match_auth_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface player_steam_match_auth_stddev_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'player_steam_match_auth_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface player_steam_match_auth_sum_fields { + steam_id: (Scalars['bigint'] | null) + __typename: 'player_steam_match_auth_sum_fields' +} + + +/** update columns of table "player_steam_match_auth" */ +export type player_steam_match_auth_update_column = 'auth_code' | 'created_at' | 'last_error' | 'last_known_share_code' | 'last_polled_at' | 'steam_id' | 'updated_at' + + +/** aggregate var_pop on columns */ +export interface player_steam_match_auth_var_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'player_steam_match_auth_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface player_steam_match_auth_var_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'player_steam_match_auth_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface player_steam_match_auth_variance_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'player_steam_match_auth_variance_fields' +} + + +/** columns and relationships of "player_unused_utility" */ +export interface player_unused_utility { + deleted_at: (Scalars['timestamptz'] | null) + /** An object relationship */ + match: matches + match_id: Scalars['uuid'] + /** An object relationship */ + match_map: match_maps + match_map_id: Scalars['uuid'] + /** An object relationship */ + player: players + player_steam_id: Scalars['bigint'] + round: Scalars['Int'] + unused: Scalars['Int'] + __typename: 'player_unused_utility' +} + + +/** aggregated selection of "player_unused_utility" */ +export interface player_unused_utility_aggregate { + aggregate: (player_unused_utility_aggregate_fields | null) + nodes: player_unused_utility[] + __typename: 'player_unused_utility_aggregate' +} + + +/** aggregate fields of "player_unused_utility" */ +export interface player_unused_utility_aggregate_fields { + avg: (player_unused_utility_avg_fields | null) + count: Scalars['Int'] + max: (player_unused_utility_max_fields | null) + min: (player_unused_utility_min_fields | null) + stddev: (player_unused_utility_stddev_fields | null) + stddev_pop: (player_unused_utility_stddev_pop_fields | null) + stddev_samp: (player_unused_utility_stddev_samp_fields | null) + sum: (player_unused_utility_sum_fields | null) + var_pop: (player_unused_utility_var_pop_fields | null) + var_samp: (player_unused_utility_var_samp_fields | null) + variance: (player_unused_utility_variance_fields | null) + __typename: 'player_unused_utility_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface player_unused_utility_avg_fields { + player_steam_id: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + unused: (Scalars['Float'] | null) + __typename: 'player_unused_utility_avg_fields' +} + + +/** unique or primary key constraints on table "player_unused_utility" */ +export type player_unused_utility_constraint = 'player_unused_utility_pkey' + + +/** aggregate max on columns */ +export interface player_unused_utility_max_fields { + deleted_at: (Scalars['timestamptz'] | null) + match_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + player_steam_id: (Scalars['bigint'] | null) + round: (Scalars['Int'] | null) + unused: (Scalars['Int'] | null) + __typename: 'player_unused_utility_max_fields' +} + + +/** aggregate min on columns */ +export interface player_unused_utility_min_fields { + deleted_at: (Scalars['timestamptz'] | null) + match_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + player_steam_id: (Scalars['bigint'] | null) + round: (Scalars['Int'] | null) + unused: (Scalars['Int'] | null) + __typename: 'player_unused_utility_min_fields' +} + + +/** response of any mutation on the table "player_unused_utility" */ +export interface player_unused_utility_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: player_unused_utility[] + __typename: 'player_unused_utility_mutation_response' +} + + +/** select columns of table "player_unused_utility" */ +export type player_unused_utility_select_column = 'deleted_at' | 'match_id' | 'match_map_id' | 'player_steam_id' | 'round' | 'unused' + + +/** aggregate stddev on columns */ +export interface player_unused_utility_stddev_fields { + player_steam_id: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + unused: (Scalars['Float'] | null) + __typename: 'player_unused_utility_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface player_unused_utility_stddev_pop_fields { + player_steam_id: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + unused: (Scalars['Float'] | null) + __typename: 'player_unused_utility_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface player_unused_utility_stddev_samp_fields { + player_steam_id: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + unused: (Scalars['Float'] | null) + __typename: 'player_unused_utility_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface player_unused_utility_sum_fields { + player_steam_id: (Scalars['bigint'] | null) + round: (Scalars['Int'] | null) + unused: (Scalars['Int'] | null) + __typename: 'player_unused_utility_sum_fields' +} + + +/** update columns of table "player_unused_utility" */ +export type player_unused_utility_update_column = 'deleted_at' | 'match_id' | 'match_map_id' | 'player_steam_id' | 'round' | 'unused' + + +/** aggregate var_pop on columns */ +export interface player_unused_utility_var_pop_fields { + player_steam_id: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + unused: (Scalars['Float'] | null) + __typename: 'player_unused_utility_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface player_unused_utility_var_samp_fields { + player_steam_id: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + unused: (Scalars['Float'] | null) + __typename: 'player_unused_utility_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface player_unused_utility_variance_fields { + player_steam_id: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + unused: (Scalars['Float'] | null) + __typename: 'player_unused_utility_variance_fields' +} + + +/** columns and relationships of "player_utility" */ +export interface player_utility { + attacker_location_coordinates: (Scalars['String'] | null) + attacker_steam_id: Scalars['bigint'] + deleted_at: (Scalars['timestamptz'] | null) + /** An object relationship */ + match: matches + match_id: Scalars['uuid'] + /** An object relationship */ + match_map: match_maps + match_map_id: Scalars['uuid'] + /** An object relationship */ + player: players + round: Scalars['Int'] + time: Scalars['timestamptz'] + type: e_utility_types_enum + __typename: 'player_utility' +} + + +/** aggregated selection of "player_utility" */ +export interface player_utility_aggregate { + aggregate: (player_utility_aggregate_fields | null) + nodes: player_utility[] + __typename: 'player_utility_aggregate' +} + + +/** aggregate fields of "player_utility" */ +export interface player_utility_aggregate_fields { + avg: (player_utility_avg_fields | null) + count: Scalars['Int'] + max: (player_utility_max_fields | null) + min: (player_utility_min_fields | null) + stddev: (player_utility_stddev_fields | null) + stddev_pop: (player_utility_stddev_pop_fields | null) + stddev_samp: (player_utility_stddev_samp_fields | null) + sum: (player_utility_sum_fields | null) + var_pop: (player_utility_var_pop_fields | null) + var_samp: (player_utility_var_samp_fields | null) + variance: (player_utility_variance_fields | null) + __typename: 'player_utility_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface player_utility_avg_fields { + attacker_steam_id: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'player_utility_avg_fields' +} + + +/** unique or primary key constraints on table "player_utility" */ +export type player_utility_constraint = 'player_utility_pkey' + + +/** aggregate max on columns */ +export interface player_utility_max_fields { + attacker_location_coordinates: (Scalars['String'] | null) + attacker_steam_id: (Scalars['bigint'] | null) + deleted_at: (Scalars['timestamptz'] | null) + match_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + round: (Scalars['Int'] | null) + time: (Scalars['timestamptz'] | null) + __typename: 'player_utility_max_fields' +} + + +/** aggregate min on columns */ +export interface player_utility_min_fields { + attacker_location_coordinates: (Scalars['String'] | null) + attacker_steam_id: (Scalars['bigint'] | null) + deleted_at: (Scalars['timestamptz'] | null) + match_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + round: (Scalars['Int'] | null) + time: (Scalars['timestamptz'] | null) + __typename: 'player_utility_min_fields' +} + + +/** response of any mutation on the table "player_utility" */ +export interface player_utility_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: player_utility[] + __typename: 'player_utility_mutation_response' +} + + +/** select columns of table "player_utility" */ +export type player_utility_select_column = 'attacker_location_coordinates' | 'attacker_steam_id' | 'deleted_at' | 'match_id' | 'match_map_id' | 'round' | 'time' | 'type' + + +/** aggregate stddev on columns */ +export interface player_utility_stddev_fields { + attacker_steam_id: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'player_utility_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface player_utility_stddev_pop_fields { + attacker_steam_id: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'player_utility_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface player_utility_stddev_samp_fields { + attacker_steam_id: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'player_utility_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface player_utility_sum_fields { + attacker_steam_id: (Scalars['bigint'] | null) + round: (Scalars['Int'] | null) + __typename: 'player_utility_sum_fields' +} + + +/** update columns of table "player_utility" */ +export type player_utility_update_column = 'attacker_location_coordinates' | 'attacker_steam_id' | 'deleted_at' | 'match_id' | 'match_map_id' | 'round' | 'time' | 'type' + + +/** aggregate var_pop on columns */ +export interface player_utility_var_pop_fields { + attacker_steam_id: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'player_utility_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface player_utility_var_samp_fields { + attacker_steam_id: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'player_utility_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface player_utility_variance_fields { + attacker_steam_id: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'player_utility_variance_fields' +} + + +/** columns and relationships of "player_weapon_stats_v" */ +export interface player_weapon_stats_v { + first_bullet_hits: (Scalars['Int'] | null) + first_bullet_shots: (Scalars['Int'] | null) + hits: (Scalars['Int'] | null) + hits_spotted: (Scalars['Int'] | null) + match_id: (Scalars['uuid'] | null) + shots: (Scalars['Int'] | null) + shots_spotted: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + weapon_class: (Scalars['String'] | null) + __typename: 'player_weapon_stats_v' +} + + +/** aggregated selection of "player_weapon_stats_v" */ +export interface player_weapon_stats_v_aggregate { + aggregate: (player_weapon_stats_v_aggregate_fields | null) + nodes: player_weapon_stats_v[] + __typename: 'player_weapon_stats_v_aggregate' +} + + +/** aggregate fields of "player_weapon_stats_v" */ +export interface player_weapon_stats_v_aggregate_fields { + avg: (player_weapon_stats_v_avg_fields | null) + count: Scalars['Int'] + max: (player_weapon_stats_v_max_fields | null) + min: (player_weapon_stats_v_min_fields | null) + stddev: (player_weapon_stats_v_stddev_fields | null) + stddev_pop: (player_weapon_stats_v_stddev_pop_fields | null) + stddev_samp: (player_weapon_stats_v_stddev_samp_fields | null) + sum: (player_weapon_stats_v_sum_fields | null) + var_pop: (player_weapon_stats_v_var_pop_fields | null) + var_samp: (player_weapon_stats_v_var_samp_fields | null) + variance: (player_weapon_stats_v_variance_fields | null) + __typename: 'player_weapon_stats_v_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface player_weapon_stats_v_avg_fields { + first_bullet_hits: (Scalars['Float'] | null) + first_bullet_shots: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + hits_spotted: (Scalars['Float'] | null) + shots: (Scalars['Float'] | null) + shots_spotted: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'player_weapon_stats_v_avg_fields' +} + + +/** aggregate max on columns */ +export interface player_weapon_stats_v_max_fields { + first_bullet_hits: (Scalars['Int'] | null) + first_bullet_shots: (Scalars['Int'] | null) + hits: (Scalars['Int'] | null) + hits_spotted: (Scalars['Int'] | null) + match_id: (Scalars['uuid'] | null) + shots: (Scalars['Int'] | null) + shots_spotted: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + weapon_class: (Scalars['String'] | null) + __typename: 'player_weapon_stats_v_max_fields' +} + + +/** aggregate min on columns */ +export interface player_weapon_stats_v_min_fields { + first_bullet_hits: (Scalars['Int'] | null) + first_bullet_shots: (Scalars['Int'] | null) + hits: (Scalars['Int'] | null) + hits_spotted: (Scalars['Int'] | null) + match_id: (Scalars['uuid'] | null) + shots: (Scalars['Int'] | null) + shots_spotted: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + weapon_class: (Scalars['String'] | null) + __typename: 'player_weapon_stats_v_min_fields' +} + + +/** select columns of table "player_weapon_stats_v" */ +export type player_weapon_stats_v_select_column = 'first_bullet_hits' | 'first_bullet_shots' | 'hits' | 'hits_spotted' | 'match_id' | 'shots' | 'shots_spotted' | 'steam_id' | 'weapon_class' + + +/** aggregate stddev on columns */ +export interface player_weapon_stats_v_stddev_fields { + first_bullet_hits: (Scalars['Float'] | null) + first_bullet_shots: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + hits_spotted: (Scalars['Float'] | null) + shots: (Scalars['Float'] | null) + shots_spotted: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'player_weapon_stats_v_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface player_weapon_stats_v_stddev_pop_fields { + first_bullet_hits: (Scalars['Float'] | null) + first_bullet_shots: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + hits_spotted: (Scalars['Float'] | null) + shots: (Scalars['Float'] | null) + shots_spotted: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'player_weapon_stats_v_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface player_weapon_stats_v_stddev_samp_fields { + first_bullet_hits: (Scalars['Float'] | null) + first_bullet_shots: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + hits_spotted: (Scalars['Float'] | null) + shots: (Scalars['Float'] | null) + shots_spotted: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'player_weapon_stats_v_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface player_weapon_stats_v_sum_fields { + first_bullet_hits: (Scalars['Int'] | null) + first_bullet_shots: (Scalars['Int'] | null) + hits: (Scalars['Int'] | null) + hits_spotted: (Scalars['Int'] | null) + shots: (Scalars['Int'] | null) + shots_spotted: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'player_weapon_stats_v_sum_fields' +} + + +/** aggregate var_pop on columns */ +export interface player_weapon_stats_v_var_pop_fields { + first_bullet_hits: (Scalars['Float'] | null) + first_bullet_shots: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + hits_spotted: (Scalars['Float'] | null) + shots: (Scalars['Float'] | null) + shots_spotted: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'player_weapon_stats_v_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface player_weapon_stats_v_var_samp_fields { + first_bullet_hits: (Scalars['Float'] | null) + first_bullet_shots: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + hits_spotted: (Scalars['Float'] | null) + shots: (Scalars['Float'] | null) + shots_spotted: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'player_weapon_stats_v_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface player_weapon_stats_v_variance_fields { + first_bullet_hits: (Scalars['Float'] | null) + first_bullet_shots: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + hits_spotted: (Scalars['Float'] | null) + shots: (Scalars['Float'] | null) + shots_spotted: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'player_weapon_stats_v_variance_fields' +} + + +/** columns and relationships of "players" */ +export interface players { + /** An array relationship */ + abandoned_matches: abandoned_matches[] + /** An aggregate relationship */ + abandoned_matches_aggregate: abandoned_matches_aggregate + /** An array relationship */ + aim_weapon_stats: player_aim_weapon_stats[] + /** An aggregate relationship */ + aim_weapon_stats_aggregate: player_aim_weapon_stats_aggregate + /** An array relationship */ + assists: player_assists[] + /** An aggregate relationship */ + assists_aggregate: player_assists_aggregate + /** An array relationship */ + assited_by_players: player_assists[] + /** An aggregate relationship */ + assited_by_players_aggregate: player_assists_aggregate + avatar_url: (Scalars['String'] | null) + /** An array relationship */ + awards: award_recipients[] + /** An aggregate relationship */ + awards_aggregate: award_recipients_aggregate + /** A computed field, executes function "banned_until" */ + banned_until: (Scalars['timestamptz'] | null) + /** An array relationship */ + coach_lineups: match_lineups[] + /** An aggregate relationship */ + coach_lineups_aggregate: match_lineups_aggregate + country: (Scalars['String'] | null) + created_at: (Scalars['timestamptz'] | null) + /** A computed field, executes function "get_player_current_lobby_id" */ + current_lobby_id: (Scalars['uuid'] | null) + custom_avatar_url: (Scalars['String'] | null) + /** An array relationship */ + damage_dealt: player_damages[] + /** An aggregate relationship */ + damage_dealt_aggregate: player_damages_aggregate + /** An array relationship */ + damage_taken: player_damages[] + /** An aggregate relationship */ + damage_taken_aggregate: player_damages_aggregate + days_since_last_ban: (Scalars['Int'] | null) + /** An array relationship */ + deaths: player_kills[] + /** An aggregate relationship */ + deaths_aggregate: player_kills_aggregate + discord_id: (Scalars['String'] | null) + /** An array relationship */ + draft_game_players: draft_game_players[] + /** An aggregate relationship */ + draft_game_players_aggregate: draft_game_players_aggregate + /** A computed field, executes function "get_player_elo" */ + elo: (Scalars['jsonb'] | null) + /** An array relationship */ + elo_history: v_player_elo[] + /** An aggregate relationship */ + elo_history_aggregate: v_player_elo_aggregate + faceit_elo: (Scalars['Int'] | null) + faceit_nickname: (Scalars['String'] | null) + faceit_player_id: (Scalars['String'] | null) + /** An array relationship */ + faceit_rank_history: player_faceit_rank_history[] + /** An aggregate relationship */ + faceit_rank_history_aggregate: player_faceit_rank_history_aggregate + faceit_skill_level: (Scalars['Int'] | null) + faceit_updated_at: (Scalars['timestamptz'] | null) + faceit_url: (Scalars['String'] | null) + /** An array relationship */ + flashed_by_players: player_flashes[] + /** An aggregate relationship */ + flashed_by_players_aggregate: player_flashes_aggregate + /** An array relationship */ + flashed_players: player_flashes[] + /** An aggregate relationship */ + flashed_players_aggregate: player_flashes_aggregate + /** An array relationship */ + friends: my_friends[] + /** An aggregate relationship */ + friends_aggregate: my_friends_aggregate + game_ban_count: Scalars['Int'] + /** An array relationship */ + invited_players: team_invites[] + /** An aggregate relationship */ + invited_players_aggregate: team_invites_aggregate + /** A computed field, executes function "is_admin_sanctioned" */ + is_admin_sanctioned: (Scalars['Boolean'] | null) + /** A computed field, executes function "is_banned" */ + is_banned: (Scalars['Boolean'] | null) + /** A computed field, executes function "is_gagged" */ + is_gagged: (Scalars['Boolean'] | null) + /** A computed field, executes function "is_in_another_match" */ + is_in_another_match: (Scalars['Boolean'] | null) + /** A computed field, executes function "is_in_draft" */ + is_in_draft: (Scalars['Boolean'] | null) + /** A computed field, executes function "is_in_lobby" */ + is_in_lobby: (Scalars['Boolean'] | null) + /** A computed field, executes function "is_muted" */ + is_muted: (Scalars['Boolean'] | null) + /** A computed field, executes function "is_registered" */ + is_registered: (Scalars['Boolean'] | null) + /** An array relationship */ + kills: player_kills[] + /** An aggregate relationship */ + kills_aggregate: player_kills_aggregate + /** An array relationship */ + kills_by_weapons: player_kills_by_weapon[] + /** An aggregate relationship */ + kills_by_weapons_aggregate: player_kills_by_weapon_aggregate + language: (Scalars['String'] | null) + last_read_news_at: (Scalars['timestamptz'] | null) + last_sign_in_at: (Scalars['timestamptz'] | null) + /** An array relationship */ + lobby_players: lobby_players[] + /** An aggregate relationship */ + lobby_players_aggregate: lobby_players_aggregate + /** A computed field, executes function "get_total_player_losses" */ + losses: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_losses_competitive" */ + losses_competitive: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_losses_duel" */ + losses_duel: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_losses_wingman" */ + losses_wingman: (Scalars['Int'] | null) + /** An array relationship */ + match_map_hltv: v_player_match_map_hltv[] + /** An aggregate relationship */ + match_map_hltv_aggregate: v_player_match_map_hltv_aggregate + /** An array relationship */ + match_map_stats: player_match_map_stats[] + /** An aggregate relationship */ + match_map_stats_aggregate: player_match_map_stats_aggregate + /** An array relationship */ + match_stats: player_match_stats_v[] + /** An aggregate relationship */ + match_stats_aggregate: player_match_stats_v_aggregate + /** A computed field, executes function "get_player_matches" */ + matches: (matches[] | null) + /** A computed field, executes function "get_player_matchmaking_cooldown" */ + matchmaking_cooldown: (Scalars['timestamptz'] | null) + /** An array relationship */ + multi_kills: v_player_multi_kills[] + /** An aggregate relationship */ + multi_kills_aggregate: v_player_multi_kills_aggregate + name: Scalars['String'] + name_registered: Scalars['Boolean'] + notification_timezone: (Scalars['String'] | null) + /** An array relationship */ + notifications: notifications[] + /** An aggregate relationship */ + notifications_aggregate: notifications_aggregate + /** An array relationship */ + objectives: player_objectives[] + /** An aggregate relationship */ + objectives_aggregate: player_objectives_aggregate + /** An array relationship */ + owned_teams: teams[] + /** An aggregate relationship */ + owned_teams_aggregate: teams_aggregate + /** A computed field, executes function "get_player_peak_elo" */ + peak_elo: (Scalars['jsonb'] | null) + /** An array relationship */ + pending_match_imports: pending_match_import_players[] + /** An aggregate relationship */ + pending_match_imports_aggregate: pending_match_import_players_aggregate + /** An array relationship */ + player_lineup: match_lineup_players[] + /** An aggregate relationship */ + player_lineup_aggregate: match_lineup_players_aggregate + /** An array relationship */ + player_unused_utilities: player_unused_utility[] + /** An aggregate relationship */ + player_unused_utilities_aggregate: player_unused_utility_aggregate + premier_rank: (Scalars['Int'] | null) + /** An array relationship */ + premier_rank_history: player_premier_rank_history[] + /** An aggregate relationship */ + premier_rank_history_aggregate: player_premier_rank_history_aggregate + premier_rank_updated_at: (Scalars['timestamptz'] | null) + profile_url: (Scalars['String'] | null) + quiet_hours_end: (Scalars['time'] | null) + quiet_hours_start: (Scalars['time'] | null) + role: e_player_roles_enum + roster_image_url: (Scalars['String'] | null) + /** An array relationship */ + sanctions: player_sanctions[] + /** An aggregate relationship */ + sanctions_aggregate: player_sanctions_aggregate + /** An array relationship */ + season_stats: player_season_stats[] + /** An aggregate relationship */ + season_stats_aggregate: player_season_stats_aggregate + show_match_ready_modal: Scalars['Boolean'] + /** An object relationship */ + stats: (player_stats | null) + steam_bans_checked_at: (Scalars['timestamptz'] | null) + steam_id: Scalars['bigint'] + /** An array relationship */ + team_invites: team_invites[] + /** An aggregate relationship */ + team_invites_aggregate: team_invites_aggregate + /** An array relationship */ + team_members: team_roster[] + /** An aggregate relationship */ + team_members_aggregate: team_roster_aggregate + /** A computed field, executes function "get_player_teams" */ + teams: (teams[] | null) + /** A computed field, executes function "get_total_player_matches" */ + total_matches: (Scalars['Int'] | null) + /** A computed field, executes function "get_player_tournament_cooldown" */ + tournament_cooldown: (Scalars['timestamptz'] | null) + /** An array relationship */ + tournament_organizers: tournament_organizers[] + /** An aggregate relationship */ + tournament_organizers_aggregate: tournament_organizers_aggregate + /** An array relationship */ + tournament_rosters: tournament_team_roster[] + /** An aggregate relationship */ + tournament_rosters_aggregate: tournament_team_roster_aggregate + /** An array relationship */ + tournaments: tournaments[] + /** An aggregate relationship */ + tournaments_aggregate: tournaments_aggregate + /** An array relationship */ + utility_thrown: player_utility[] + /** An aggregate relationship */ + utility_thrown_aggregate: player_utility_aggregate + vac_ban_count: Scalars['Int'] + vac_banned: Scalars['Boolean'] + /** An array relationship */ + weapon_stats: player_weapon_stats_v[] + /** An aggregate relationship */ + weapon_stats_aggregate: player_weapon_stats_v_aggregate + /** A computed field, executes function "get_total_player_wins" */ + wins: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_wins_competitive" */ + wins_competitive: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_wins_duel" */ + wins_duel: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_wins_wingman" */ + wins_wingman: (Scalars['Int'] | null) + __typename: 'players' +} + + +/** aggregated selection of "players" */ +export interface players_aggregate { + aggregate: (players_aggregate_fields | null) + nodes: players[] + __typename: 'players_aggregate' +} + + +/** aggregate fields of "players" */ +export interface players_aggregate_fields { + avg: (players_avg_fields | null) + count: Scalars['Int'] + max: (players_max_fields | null) + min: (players_min_fields | null) + stddev: (players_stddev_fields | null) + stddev_pop: (players_stddev_pop_fields | null) + stddev_samp: (players_stddev_samp_fields | null) + sum: (players_sum_fields | null) + var_pop: (players_var_pop_fields | null) + var_samp: (players_var_samp_fields | null) + variance: (players_variance_fields | null) + __typename: 'players_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface players_avg_fields { + days_since_last_ban: (Scalars['Float'] | null) + faceit_elo: (Scalars['Float'] | null) + faceit_skill_level: (Scalars['Float'] | null) + game_ban_count: (Scalars['Float'] | null) + /** A computed field, executes function "get_total_player_losses" */ + losses: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_losses_competitive" */ + losses_competitive: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_losses_duel" */ + losses_duel: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_losses_wingman" */ + losses_wingman: (Scalars['Int'] | null) + premier_rank: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + /** A computed field, executes function "get_total_player_matches" */ + total_matches: (Scalars['Int'] | null) + vac_ban_count: (Scalars['Float'] | null) + /** A computed field, executes function "get_total_player_wins" */ + wins: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_wins_competitive" */ + wins_competitive: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_wins_duel" */ + wins_duel: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_wins_wingman" */ + wins_wingman: (Scalars['Int'] | null) + __typename: 'players_avg_fields' +} + + +/** unique or primary key constraints on table "players" */ +export type players_constraint = 'players_discord_id_key' | 'players_pkey' | 'players_steam_id_key' + + +/** aggregate max on columns */ +export interface players_max_fields { + avatar_url: (Scalars['String'] | null) + /** A computed field, executes function "banned_until" */ + banned_until: (Scalars['timestamptz'] | null) + country: (Scalars['String'] | null) + created_at: (Scalars['timestamptz'] | null) + /** A computed field, executes function "get_player_current_lobby_id" */ + current_lobby_id: (Scalars['uuid'] | null) + custom_avatar_url: (Scalars['String'] | null) + days_since_last_ban: (Scalars['Int'] | null) + discord_id: (Scalars['String'] | null) + faceit_elo: (Scalars['Int'] | null) + faceit_nickname: (Scalars['String'] | null) + faceit_player_id: (Scalars['String'] | null) + faceit_skill_level: (Scalars['Int'] | null) + faceit_updated_at: (Scalars['timestamptz'] | null) + faceit_url: (Scalars['String'] | null) + game_ban_count: (Scalars['Int'] | null) + language: (Scalars['String'] | null) + last_read_news_at: (Scalars['timestamptz'] | null) + last_sign_in_at: (Scalars['timestamptz'] | null) + /** A computed field, executes function "get_total_player_losses" */ + losses: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_losses_competitive" */ + losses_competitive: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_losses_duel" */ + losses_duel: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_losses_wingman" */ + losses_wingman: (Scalars['Int'] | null) + /** A computed field, executes function "get_player_matchmaking_cooldown" */ + matchmaking_cooldown: (Scalars['timestamptz'] | null) + name: (Scalars['String'] | null) + notification_timezone: (Scalars['String'] | null) + premier_rank: (Scalars['Int'] | null) + premier_rank_updated_at: (Scalars['timestamptz'] | null) + profile_url: (Scalars['String'] | null) + roster_image_url: (Scalars['String'] | null) + steam_bans_checked_at: (Scalars['timestamptz'] | null) + steam_id: (Scalars['bigint'] | null) + /** A computed field, executes function "get_total_player_matches" */ + total_matches: (Scalars['Int'] | null) + /** A computed field, executes function "get_player_tournament_cooldown" */ + tournament_cooldown: (Scalars['timestamptz'] | null) + vac_ban_count: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_wins" */ + wins: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_wins_competitive" */ + wins_competitive: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_wins_duel" */ + wins_duel: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_wins_wingman" */ + wins_wingman: (Scalars['Int'] | null) + __typename: 'players_max_fields' +} + + +/** aggregate min on columns */ +export interface players_min_fields { + avatar_url: (Scalars['String'] | null) + /** A computed field, executes function "banned_until" */ + banned_until: (Scalars['timestamptz'] | null) + country: (Scalars['String'] | null) + created_at: (Scalars['timestamptz'] | null) + /** A computed field, executes function "get_player_current_lobby_id" */ + current_lobby_id: (Scalars['uuid'] | null) + custom_avatar_url: (Scalars['String'] | null) + days_since_last_ban: (Scalars['Int'] | null) + discord_id: (Scalars['String'] | null) + faceit_elo: (Scalars['Int'] | null) + faceit_nickname: (Scalars['String'] | null) + faceit_player_id: (Scalars['String'] | null) + faceit_skill_level: (Scalars['Int'] | null) + faceit_updated_at: (Scalars['timestamptz'] | null) + faceit_url: (Scalars['String'] | null) + game_ban_count: (Scalars['Int'] | null) + language: (Scalars['String'] | null) + last_read_news_at: (Scalars['timestamptz'] | null) + last_sign_in_at: (Scalars['timestamptz'] | null) + /** A computed field, executes function "get_total_player_losses" */ + losses: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_losses_competitive" */ + losses_competitive: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_losses_duel" */ + losses_duel: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_losses_wingman" */ + losses_wingman: (Scalars['Int'] | null) + /** A computed field, executes function "get_player_matchmaking_cooldown" */ + matchmaking_cooldown: (Scalars['timestamptz'] | null) + name: (Scalars['String'] | null) + notification_timezone: (Scalars['String'] | null) + premier_rank: (Scalars['Int'] | null) + premier_rank_updated_at: (Scalars['timestamptz'] | null) + profile_url: (Scalars['String'] | null) + roster_image_url: (Scalars['String'] | null) + steam_bans_checked_at: (Scalars['timestamptz'] | null) + steam_id: (Scalars['bigint'] | null) + /** A computed field, executes function "get_total_player_matches" */ + total_matches: (Scalars['Int'] | null) + /** A computed field, executes function "get_player_tournament_cooldown" */ + tournament_cooldown: (Scalars['timestamptz'] | null) + vac_ban_count: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_wins" */ + wins: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_wins_competitive" */ + wins_competitive: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_wins_duel" */ + wins_duel: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_wins_wingman" */ + wins_wingman: (Scalars['Int'] | null) + __typename: 'players_min_fields' +} + + +/** response of any mutation on the table "players" */ +export interface players_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: players[] + __typename: 'players_mutation_response' +} + + +/** select columns of table "players" */ +export type players_select_column = 'avatar_url' | 'country' | 'created_at' | 'custom_avatar_url' | 'days_since_last_ban' | 'discord_id' | 'faceit_elo' | 'faceit_nickname' | 'faceit_player_id' | 'faceit_skill_level' | 'faceit_updated_at' | 'faceit_url' | 'game_ban_count' | 'language' | 'last_read_news_at' | 'last_sign_in_at' | 'name' | 'name_registered' | 'notification_timezone' | 'premier_rank' | 'premier_rank_updated_at' | 'profile_url' | 'quiet_hours_end' | 'quiet_hours_start' | 'role' | 'roster_image_url' | 'show_match_ready_modal' | 'steam_bans_checked_at' | 'steam_id' | 'vac_ban_count' | 'vac_banned' + + +/** aggregate stddev on columns */ +export interface players_stddev_fields { + days_since_last_ban: (Scalars['Float'] | null) + faceit_elo: (Scalars['Float'] | null) + faceit_skill_level: (Scalars['Float'] | null) + game_ban_count: (Scalars['Float'] | null) + /** A computed field, executes function "get_total_player_losses" */ + losses: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_losses_competitive" */ + losses_competitive: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_losses_duel" */ + losses_duel: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_losses_wingman" */ + losses_wingman: (Scalars['Int'] | null) + premier_rank: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + /** A computed field, executes function "get_total_player_matches" */ + total_matches: (Scalars['Int'] | null) + vac_ban_count: (Scalars['Float'] | null) + /** A computed field, executes function "get_total_player_wins" */ + wins: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_wins_competitive" */ + wins_competitive: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_wins_duel" */ + wins_duel: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_wins_wingman" */ + wins_wingman: (Scalars['Int'] | null) + __typename: 'players_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface players_stddev_pop_fields { + days_since_last_ban: (Scalars['Float'] | null) + faceit_elo: (Scalars['Float'] | null) + faceit_skill_level: (Scalars['Float'] | null) + game_ban_count: (Scalars['Float'] | null) + /** A computed field, executes function "get_total_player_losses" */ + losses: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_losses_competitive" */ + losses_competitive: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_losses_duel" */ + losses_duel: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_losses_wingman" */ + losses_wingman: (Scalars['Int'] | null) + premier_rank: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + /** A computed field, executes function "get_total_player_matches" */ + total_matches: (Scalars['Int'] | null) + vac_ban_count: (Scalars['Float'] | null) + /** A computed field, executes function "get_total_player_wins" */ + wins: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_wins_competitive" */ + wins_competitive: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_wins_duel" */ + wins_duel: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_wins_wingman" */ + wins_wingman: (Scalars['Int'] | null) + __typename: 'players_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface players_stddev_samp_fields { + days_since_last_ban: (Scalars['Float'] | null) + faceit_elo: (Scalars['Float'] | null) + faceit_skill_level: (Scalars['Float'] | null) + game_ban_count: (Scalars['Float'] | null) + /** A computed field, executes function "get_total_player_losses" */ + losses: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_losses_competitive" */ + losses_competitive: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_losses_duel" */ + losses_duel: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_losses_wingman" */ + losses_wingman: (Scalars['Int'] | null) + premier_rank: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + /** A computed field, executes function "get_total_player_matches" */ + total_matches: (Scalars['Int'] | null) + vac_ban_count: (Scalars['Float'] | null) + /** A computed field, executes function "get_total_player_wins" */ + wins: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_wins_competitive" */ + wins_competitive: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_wins_duel" */ + wins_duel: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_wins_wingman" */ + wins_wingman: (Scalars['Int'] | null) + __typename: 'players_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface players_sum_fields { + days_since_last_ban: (Scalars['Int'] | null) + faceit_elo: (Scalars['Int'] | null) + faceit_skill_level: (Scalars['Int'] | null) + game_ban_count: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_losses" */ + losses: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_losses_competitive" */ + losses_competitive: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_losses_duel" */ + losses_duel: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_losses_wingman" */ + losses_wingman: (Scalars['Int'] | null) + premier_rank: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + /** A computed field, executes function "get_total_player_matches" */ + total_matches: (Scalars['Int'] | null) + vac_ban_count: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_wins" */ + wins: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_wins_competitive" */ + wins_competitive: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_wins_duel" */ + wins_duel: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_wins_wingman" */ + wins_wingman: (Scalars['Int'] | null) + __typename: 'players_sum_fields' +} + + +/** update columns of table "players" */ +export type players_update_column = 'avatar_url' | 'country' | 'created_at' | 'custom_avatar_url' | 'days_since_last_ban' | 'discord_id' | 'faceit_elo' | 'faceit_nickname' | 'faceit_player_id' | 'faceit_skill_level' | 'faceit_updated_at' | 'faceit_url' | 'game_ban_count' | 'language' | 'last_read_news_at' | 'last_sign_in_at' | 'name' | 'name_registered' | 'notification_timezone' | 'premier_rank' | 'premier_rank_updated_at' | 'profile_url' | 'quiet_hours_end' | 'quiet_hours_start' | 'role' | 'roster_image_url' | 'show_match_ready_modal' | 'steam_bans_checked_at' | 'steam_id' | 'vac_ban_count' | 'vac_banned' + + +/** aggregate var_pop on columns */ +export interface players_var_pop_fields { + days_since_last_ban: (Scalars['Float'] | null) + faceit_elo: (Scalars['Float'] | null) + faceit_skill_level: (Scalars['Float'] | null) + game_ban_count: (Scalars['Float'] | null) + /** A computed field, executes function "get_total_player_losses" */ + losses: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_losses_competitive" */ + losses_competitive: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_losses_duel" */ + losses_duel: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_losses_wingman" */ + losses_wingman: (Scalars['Int'] | null) + premier_rank: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + /** A computed field, executes function "get_total_player_matches" */ + total_matches: (Scalars['Int'] | null) + vac_ban_count: (Scalars['Float'] | null) + /** A computed field, executes function "get_total_player_wins" */ + wins: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_wins_competitive" */ + wins_competitive: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_wins_duel" */ + wins_duel: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_wins_wingman" */ + wins_wingman: (Scalars['Int'] | null) + __typename: 'players_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface players_var_samp_fields { + days_since_last_ban: (Scalars['Float'] | null) + faceit_elo: (Scalars['Float'] | null) + faceit_skill_level: (Scalars['Float'] | null) + game_ban_count: (Scalars['Float'] | null) + /** A computed field, executes function "get_total_player_losses" */ + losses: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_losses_competitive" */ + losses_competitive: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_losses_duel" */ + losses_duel: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_losses_wingman" */ + losses_wingman: (Scalars['Int'] | null) + premier_rank: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + /** A computed field, executes function "get_total_player_matches" */ + total_matches: (Scalars['Int'] | null) + vac_ban_count: (Scalars['Float'] | null) + /** A computed field, executes function "get_total_player_wins" */ + wins: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_wins_competitive" */ + wins_competitive: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_wins_duel" */ + wins_duel: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_wins_wingman" */ + wins_wingman: (Scalars['Int'] | null) + __typename: 'players_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface players_variance_fields { + days_since_last_ban: (Scalars['Float'] | null) + faceit_elo: (Scalars['Float'] | null) + faceit_skill_level: (Scalars['Float'] | null) + game_ban_count: (Scalars['Float'] | null) + /** A computed field, executes function "get_total_player_losses" */ + losses: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_losses_competitive" */ + losses_competitive: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_losses_duel" */ + losses_duel: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_losses_wingman" */ + losses_wingman: (Scalars['Int'] | null) + premier_rank: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + /** A computed field, executes function "get_total_player_matches" */ + total_matches: (Scalars['Int'] | null) + vac_ban_count: (Scalars['Float'] | null) + /** A computed field, executes function "get_total_player_wins" */ + wins: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_wins_competitive" */ + wins_competitive: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_wins_duel" */ + wins_duel: (Scalars['Int'] | null) + /** A computed field, executes function "get_total_player_wins_wingman" */ + wins_wingman: (Scalars['Int'] | null) + __typename: 'players_variance_fields' +} + + +/** columns and relationships of "plugin_versions" */ +export interface plugin_versions { + min_game_build_id: (Scalars['Int'] | null) + published_at: Scalars['timestamptz'] + runtime: e_plugin_runtimes_enum + version: Scalars['String'] + __typename: 'plugin_versions' +} + + +/** aggregated selection of "plugin_versions" */ +export interface plugin_versions_aggregate { + aggregate: (plugin_versions_aggregate_fields | null) + nodes: plugin_versions[] + __typename: 'plugin_versions_aggregate' +} + + +/** aggregate fields of "plugin_versions" */ +export interface plugin_versions_aggregate_fields { + avg: (plugin_versions_avg_fields | null) + count: Scalars['Int'] + max: (plugin_versions_max_fields | null) + min: (plugin_versions_min_fields | null) + stddev: (plugin_versions_stddev_fields | null) + stddev_pop: (plugin_versions_stddev_pop_fields | null) + stddev_samp: (plugin_versions_stddev_samp_fields | null) + sum: (plugin_versions_sum_fields | null) + var_pop: (plugin_versions_var_pop_fields | null) + var_samp: (plugin_versions_var_samp_fields | null) + variance: (plugin_versions_variance_fields | null) + __typename: 'plugin_versions_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface plugin_versions_avg_fields { + min_game_build_id: (Scalars['Float'] | null) + __typename: 'plugin_versions_avg_fields' +} + + +/** unique or primary key constraints on table "plugin_versions" */ +export type plugin_versions_constraint = 'plugin_versions_pkey' + + +/** aggregate max on columns */ +export interface plugin_versions_max_fields { + min_game_build_id: (Scalars['Int'] | null) + published_at: (Scalars['timestamptz'] | null) + version: (Scalars['String'] | null) + __typename: 'plugin_versions_max_fields' +} + + +/** aggregate min on columns */ +export interface plugin_versions_min_fields { + min_game_build_id: (Scalars['Int'] | null) + published_at: (Scalars['timestamptz'] | null) + version: (Scalars['String'] | null) + __typename: 'plugin_versions_min_fields' +} + + +/** response of any mutation on the table "plugin_versions" */ +export interface plugin_versions_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: plugin_versions[] + __typename: 'plugin_versions_mutation_response' +} + + +/** select columns of table "plugin_versions" */ +export type plugin_versions_select_column = 'min_game_build_id' | 'published_at' | 'runtime' | 'version' + + +/** aggregate stddev on columns */ +export interface plugin_versions_stddev_fields { + min_game_build_id: (Scalars['Float'] | null) + __typename: 'plugin_versions_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface plugin_versions_stddev_pop_fields { + min_game_build_id: (Scalars['Float'] | null) + __typename: 'plugin_versions_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface plugin_versions_stddev_samp_fields { + min_game_build_id: (Scalars['Float'] | null) + __typename: 'plugin_versions_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface plugin_versions_sum_fields { + min_game_build_id: (Scalars['Int'] | null) + __typename: 'plugin_versions_sum_fields' +} + + +/** update columns of table "plugin_versions" */ +export type plugin_versions_update_column = 'min_game_build_id' | 'published_at' | 'runtime' | 'version' + + +/** aggregate var_pop on columns */ +export interface plugin_versions_var_pop_fields { + min_game_build_id: (Scalars['Float'] | null) + __typename: 'plugin_versions_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface plugin_versions_var_samp_fields { + min_game_build_id: (Scalars['Float'] | null) + __typename: 'plugin_versions_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface plugin_versions_variance_fields { + min_game_build_id: (Scalars['Float'] | null) + __typename: 'plugin_versions_variance_fields' +} + + +/** columns and relationships of "push_subscriptions" */ +export interface push_subscriptions { + auth: Scalars['String'] + created_at: Scalars['timestamptz'] + endpoint: Scalars['String'] + id: Scalars['uuid'] + last_used_at: (Scalars['timestamptz'] | null) + p256dh: Scalars['String'] + steam_id: Scalars['bigint'] + user_agent: (Scalars['String'] | null) + __typename: 'push_subscriptions' +} + + +/** aggregated selection of "push_subscriptions" */ +export interface push_subscriptions_aggregate { + aggregate: (push_subscriptions_aggregate_fields | null) + nodes: push_subscriptions[] + __typename: 'push_subscriptions_aggregate' +} + + +/** aggregate fields of "push_subscriptions" */ +export interface push_subscriptions_aggregate_fields { + avg: (push_subscriptions_avg_fields | null) + count: Scalars['Int'] + max: (push_subscriptions_max_fields | null) + min: (push_subscriptions_min_fields | null) + stddev: (push_subscriptions_stddev_fields | null) + stddev_pop: (push_subscriptions_stddev_pop_fields | null) + stddev_samp: (push_subscriptions_stddev_samp_fields | null) + sum: (push_subscriptions_sum_fields | null) + var_pop: (push_subscriptions_var_pop_fields | null) + var_samp: (push_subscriptions_var_samp_fields | null) + variance: (push_subscriptions_variance_fields | null) + __typename: 'push_subscriptions_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface push_subscriptions_avg_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'push_subscriptions_avg_fields' +} + + +/** unique or primary key constraints on table "push_subscriptions" */ +export type push_subscriptions_constraint = 'push_subscriptions_endpoint_key' | 'push_subscriptions_pkey' + + +/** aggregate max on columns */ +export interface push_subscriptions_max_fields { + auth: (Scalars['String'] | null) + created_at: (Scalars['timestamptz'] | null) + endpoint: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + last_used_at: (Scalars['timestamptz'] | null) + p256dh: (Scalars['String'] | null) + steam_id: (Scalars['bigint'] | null) + user_agent: (Scalars['String'] | null) + __typename: 'push_subscriptions_max_fields' +} + + +/** aggregate min on columns */ +export interface push_subscriptions_min_fields { + auth: (Scalars['String'] | null) + created_at: (Scalars['timestamptz'] | null) + endpoint: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + last_used_at: (Scalars['timestamptz'] | null) + p256dh: (Scalars['String'] | null) + steam_id: (Scalars['bigint'] | null) + user_agent: (Scalars['String'] | null) + __typename: 'push_subscriptions_min_fields' +} + + +/** response of any mutation on the table "push_subscriptions" */ +export interface push_subscriptions_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: push_subscriptions[] + __typename: 'push_subscriptions_mutation_response' +} + + +/** select columns of table "push_subscriptions" */ +export type push_subscriptions_select_column = 'auth' | 'created_at' | 'endpoint' | 'id' | 'last_used_at' | 'p256dh' | 'steam_id' | 'user_agent' + + +/** aggregate stddev on columns */ +export interface push_subscriptions_stddev_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'push_subscriptions_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface push_subscriptions_stddev_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'push_subscriptions_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface push_subscriptions_stddev_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'push_subscriptions_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface push_subscriptions_sum_fields { + steam_id: (Scalars['bigint'] | null) + __typename: 'push_subscriptions_sum_fields' +} + + +/** update columns of table "push_subscriptions" */ +export type push_subscriptions_update_column = 'auth' | 'created_at' | 'endpoint' | 'id' | 'last_used_at' | 'p256dh' | 'steam_id' | 'user_agent' + + +/** aggregate var_pop on columns */ +export interface push_subscriptions_var_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'push_subscriptions_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface push_subscriptions_var_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'push_subscriptions_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface push_subscriptions_variance_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'push_subscriptions_variance_fields' +} + +export interface query_root { + /** fetch data from the table: "_map_pool" */ + _map_pool: _map_pool[] + /** fetch aggregated fields from the table: "_map_pool" */ + _map_pool_aggregate: _map_pool_aggregate + /** fetch data from the table: "_map_pool" using primary key columns */ + _map_pool_by_pk: (_map_pool | null) + /** An array relationship */ + abandoned_matches: abandoned_matches[] + /** An aggregate relationship */ + abandoned_matches_aggregate: abandoned_matches_aggregate + /** fetch data from the table: "abandoned_matches" using primary key columns */ + abandoned_matches_by_pk: (abandoned_matches | null) + /** Ask which sightlines a playbook's smokes leave open */ + analyseUtilityPlaybookCoverage: (UtilityPlaybookCoverageOutput | null) + /** fetch data from the table: "api_keys" */ + api_keys: api_keys[] + /** fetch aggregated fields from the table: "api_keys" */ + api_keys_aggregate: api_keys_aggregate + /** fetch data from the table: "api_keys" using primary key columns */ + api_keys_by_pk: (api_keys | null) + /** fetch data from the table: "award_recipients" */ + award_recipients: award_recipients[] + /** fetch aggregated fields from the table: "award_recipients" */ + award_recipients_aggregate: award_recipients_aggregate + /** fetch data from the table: "award_recipients" using primary key columns */ + award_recipients_by_pk: (award_recipients | null) + /** fetch data from the table: "awards" */ + awards: awards[] + /** fetch aggregated fields from the table: "awards" */ + awards_aggregate: awards_aggregate + /** fetch data from the table: "awards" using primary key columns */ + awards_by_pk: (awards | null) + /** fetch data from the table: "chat_read_state" */ + chat_read_state: chat_read_state[] + /** fetch aggregated fields from the table: "chat_read_state" */ + chat_read_state_aggregate: chat_read_state_aggregate + /** fetch data from the table: "chat_read_state" using primary key columns */ + chat_read_state_by_pk: (chat_read_state | null) + /** Ask whether a lineup's smoke makes an angle one-way */ + checkUtilityOneWay: (UtilityOneWayOutput | null) + /** Ask whether a lineup's smoke blocks a set of sightlines */ + checkUtilitySightlines: (UtilitySightlineOutput | null) + /** An array relationship */ + clip_render_jobs: clip_render_jobs[] + /** An aggregate relationship */ + clip_render_jobs_aggregate: clip_render_jobs_aggregate + /** fetch data from the table: "clip_render_jobs" using primary key columns */ + clip_render_jobs_by_pk: (clip_render_jobs | null) + /** fetch data from the table: "custom_pages" */ + custom_pages: custom_pages[] + /** fetch aggregated fields from the table: "custom_pages" */ + custom_pages_aggregate: custom_pages_aggregate + /** fetch data from the table: "custom_pages" using primary key columns */ + custom_pages_by_pk: (custom_pages | null) + dbStats: ((DbStats | null)[] | null) + /** fetch data from the table: "db_backups" */ + db_backups: db_backups[] + /** fetch aggregated fields from the table: "db_backups" */ + db_backups_aggregate: db_backups_aggregate + /** fetch data from the table: "db_backups" using primary key columns */ + db_backups_by_pk: (db_backups | null) + /** fetch data from the table: "direct_conversations" */ + direct_conversations: direct_conversations[] + /** fetch aggregated fields from the table: "direct_conversations" */ + direct_conversations_aggregate: direct_conversations_aggregate + /** fetch data from the table: "direct_conversations" using primary key columns */ + direct_conversations_by_pk: (direct_conversations | null) + /** fetch data from the table: "direct_messages" */ + direct_messages: direct_messages[] + /** fetch aggregated fields from the table: "direct_messages" */ + direct_messages_aggregate: direct_messages_aggregate + /** fetch data from the table: "direct_messages" using primary key columns */ + direct_messages_by_pk: (direct_messages | null) + /** fetch data from the table: "draft_game_picks" */ + draft_game_picks: draft_game_picks[] + /** fetch aggregated fields from the table: "draft_game_picks" */ + draft_game_picks_aggregate: draft_game_picks_aggregate + /** fetch data from the table: "draft_game_picks" using primary key columns */ + draft_game_picks_by_pk: (draft_game_picks | null) + /** An array relationship */ + draft_game_players: draft_game_players[] + /** An aggregate relationship */ + draft_game_players_aggregate: draft_game_players_aggregate + /** fetch data from the table: "draft_game_players" using primary key columns */ + draft_game_players_by_pk: (draft_game_players | null) + /** An array relationship */ + draft_games: draft_games[] + /** An aggregate relationship */ + draft_games_aggregate: draft_games_aggregate + /** fetch data from the table: "draft_games" using primary key columns */ + draft_games_by_pk: (draft_games | null) + /** fetch data from the table: "e_award_sources" */ + e_award_sources: e_award_sources[] + /** fetch aggregated fields from the table: "e_award_sources" */ + e_award_sources_aggregate: e_award_sources_aggregate + /** fetch data from the table: "e_award_sources" using primary key columns */ + e_award_sources_by_pk: (e_award_sources | null) + /** fetch data from the table: "e_award_tiers" */ + e_award_tiers: e_award_tiers[] + /** fetch aggregated fields from the table: "e_award_tiers" */ + e_award_tiers_aggregate: e_award_tiers_aggregate + /** fetch data from the table: "e_award_tiers" using primary key columns */ + e_award_tiers_by_pk: (e_award_tiers | null) + /** fetch data from the table: "e_check_in_settings" */ + e_check_in_settings: e_check_in_settings[] + /** fetch aggregated fields from the table: "e_check_in_settings" */ + e_check_in_settings_aggregate: e_check_in_settings_aggregate + /** fetch data from the table: "e_check_in_settings" using primary key columns */ + e_check_in_settings_by_pk: (e_check_in_settings | null) + /** fetch data from the table: "e_draft_game_captain_selection" */ + e_draft_game_captain_selection: e_draft_game_captain_selection[] + /** fetch aggregated fields from the table: "e_draft_game_captain_selection" */ + e_draft_game_captain_selection_aggregate: e_draft_game_captain_selection_aggregate + /** fetch data from the table: "e_draft_game_captain_selection" using primary key columns */ + e_draft_game_captain_selection_by_pk: (e_draft_game_captain_selection | null) + /** fetch data from the table: "e_draft_game_draft_order" */ + e_draft_game_draft_order: e_draft_game_draft_order[] + /** fetch aggregated fields from the table: "e_draft_game_draft_order" */ + e_draft_game_draft_order_aggregate: e_draft_game_draft_order_aggregate + /** fetch data from the table: "e_draft_game_draft_order" using primary key columns */ + e_draft_game_draft_order_by_pk: (e_draft_game_draft_order | null) + /** fetch data from the table: "e_draft_game_mode" */ + e_draft_game_mode: e_draft_game_mode[] + /** fetch aggregated fields from the table: "e_draft_game_mode" */ + e_draft_game_mode_aggregate: e_draft_game_mode_aggregate + /** fetch data from the table: "e_draft_game_mode" using primary key columns */ + e_draft_game_mode_by_pk: (e_draft_game_mode | null) + /** fetch data from the table: "e_draft_game_player_status" */ + e_draft_game_player_status: e_draft_game_player_status[] + /** fetch aggregated fields from the table: "e_draft_game_player_status" */ + e_draft_game_player_status_aggregate: e_draft_game_player_status_aggregate + /** fetch data from the table: "e_draft_game_player_status" using primary key columns */ + e_draft_game_player_status_by_pk: (e_draft_game_player_status | null) + /** fetch data from the table: "e_draft_game_status" */ + e_draft_game_status: e_draft_game_status[] + /** fetch aggregated fields from the table: "e_draft_game_status" */ + e_draft_game_status_aggregate: e_draft_game_status_aggregate + /** fetch data from the table: "e_draft_game_status" using primary key columns */ + e_draft_game_status_by_pk: (e_draft_game_status | null) + /** fetch data from the table: "e_event_media_access" */ + e_event_media_access: e_event_media_access[] + /** fetch aggregated fields from the table: "e_event_media_access" */ + e_event_media_access_aggregate: e_event_media_access_aggregate + /** fetch data from the table: "e_event_media_access" using primary key columns */ + e_event_media_access_by_pk: (e_event_media_access | null) + /** fetch data from the table: "e_event_visibility" */ + e_event_visibility: e_event_visibility[] + /** fetch aggregated fields from the table: "e_event_visibility" */ + e_event_visibility_aggregate: e_event_visibility_aggregate + /** fetch data from the table: "e_event_visibility" using primary key columns */ + e_event_visibility_by_pk: (e_event_visibility | null) + /** fetch data from the table: "e_friend_status" */ + e_friend_status: e_friend_status[] + /** fetch aggregated fields from the table: "e_friend_status" */ + e_friend_status_aggregate: e_friend_status_aggregate + /** fetch data from the table: "e_friend_status" using primary key columns */ + e_friend_status_by_pk: (e_friend_status | null) + /** fetch data from the table: "e_game_cfg_types" */ + e_game_cfg_types: e_game_cfg_types[] + /** fetch aggregated fields from the table: "e_game_cfg_types" */ + 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" */ + e_game_server_node_statuses_aggregate: e_game_server_node_statuses_aggregate + /** fetch data from the table: "e_game_server_node_statuses" using primary key columns */ + e_game_server_node_statuses_by_pk: (e_game_server_node_statuses | null) + /** fetch data from the table: "e_league_movement_types" */ + e_league_movement_types: e_league_movement_types[] + /** fetch aggregated fields from the table: "e_league_movement_types" */ + e_league_movement_types_aggregate: e_league_movement_types_aggregate + /** fetch data from the table: "e_league_movement_types" using primary key columns */ + e_league_movement_types_by_pk: (e_league_movement_types | null) + /** fetch data from the table: "e_league_proposal_statuses" */ + e_league_proposal_statuses: e_league_proposal_statuses[] + /** fetch aggregated fields from the table: "e_league_proposal_statuses" */ + e_league_proposal_statuses_aggregate: e_league_proposal_statuses_aggregate + /** fetch data from the table: "e_league_proposal_statuses" using primary key columns */ + e_league_proposal_statuses_by_pk: (e_league_proposal_statuses | null) + /** fetch data from the table: "e_league_registration_statuses" */ + e_league_registration_statuses: e_league_registration_statuses[] + /** fetch aggregated fields from the table: "e_league_registration_statuses" */ + e_league_registration_statuses_aggregate: e_league_registration_statuses_aggregate + /** fetch data from the table: "e_league_registration_statuses" using primary key columns */ + e_league_registration_statuses_by_pk: (e_league_registration_statuses | null) + /** fetch data from the table: "e_league_season_statuses" */ + e_league_season_statuses: e_league_season_statuses[] + /** fetch aggregated fields from the table: "e_league_season_statuses" */ + e_league_season_statuses_aggregate: e_league_season_statuses_aggregate + /** fetch data from the table: "e_league_season_statuses" using primary key columns */ + e_league_season_statuses_by_pk: (e_league_season_statuses | null) + /** fetch data from the table: "e_lobby_access" */ + e_lobby_access: e_lobby_access[] + /** fetch aggregated fields from the table: "e_lobby_access" */ + e_lobby_access_aggregate: e_lobby_access_aggregate + /** fetch data from the table: "e_lobby_access" using primary key columns */ + e_lobby_access_by_pk: (e_lobby_access | null) + /** fetch data from the table: "e_lobby_player_status" */ + e_lobby_player_status: e_lobby_player_status[] + /** fetch aggregated fields from the table: "e_lobby_player_status" */ + e_lobby_player_status_aggregate: e_lobby_player_status_aggregate + /** fetch data from the table: "e_lobby_player_status" using primary key columns */ + e_lobby_player_status_by_pk: (e_lobby_player_status | null) + /** fetch data from the table: "e_map_pool_types" */ + e_map_pool_types: e_map_pool_types[] + /** fetch aggregated fields from the table: "e_map_pool_types" */ + e_map_pool_types_aggregate: e_map_pool_types_aggregate + /** fetch data from the table: "e_map_pool_types" using primary key columns */ + e_map_pool_types_by_pk: (e_map_pool_types | null) + /** fetch data from the table: "e_match_clip_visibility" */ + e_match_clip_visibility: e_match_clip_visibility[] + /** fetch aggregated fields from the table: "e_match_clip_visibility" */ + e_match_clip_visibility_aggregate: e_match_clip_visibility_aggregate + /** fetch data from the table: "e_match_clip_visibility" using primary key columns */ + e_match_clip_visibility_by_pk: (e_match_clip_visibility | null) + /** fetch data from the table: "e_match_map_status" */ + e_match_map_status: e_match_map_status[] + /** fetch aggregated fields from the table: "e_match_map_status" */ + e_match_map_status_aggregate: e_match_map_status_aggregate + /** fetch data from the table: "e_match_map_status" using primary key columns */ + e_match_map_status_by_pk: (e_match_map_status | null) + /** fetch data from the table: "e_match_mode" */ + e_match_mode: e_match_mode[] + /** fetch aggregated fields from the table: "e_match_mode" */ + e_match_mode_aggregate: e_match_mode_aggregate + /** fetch data from the table: "e_match_mode" using primary key columns */ + e_match_mode_by_pk: (e_match_mode | null) + /** fetch data from the table: "e_match_party_sources" */ + e_match_party_sources: e_match_party_sources[] + /** fetch aggregated fields from the table: "e_match_party_sources" */ + e_match_party_sources_aggregate: e_match_party_sources_aggregate + /** fetch data from the table: "e_match_party_sources" using primary key columns */ + e_match_party_sources_by_pk: (e_match_party_sources | null) + /** fetch data from the table: "e_match_status" */ + e_match_status: e_match_status[] + /** fetch aggregated fields from the table: "e_match_status" */ + e_match_status_aggregate: e_match_status_aggregate + /** fetch data from the table: "e_match_status" using primary key columns */ + e_match_status_by_pk: (e_match_status | null) + /** fetch data from the table: "e_match_types" */ + e_match_types: e_match_types[] + /** fetch aggregated fields from the table: "e_match_types" */ + e_match_types_aggregate: e_match_types_aggregate + /** fetch data from the table: "e_match_types" using primary key columns */ + e_match_types_by_pk: (e_match_types | null) + /** fetch data from the table: "e_notification_types" */ + e_notification_types: e_notification_types[] + /** fetch aggregated fields from the table: "e_notification_types" */ + e_notification_types_aggregate: e_notification_types_aggregate + /** fetch data from the table: "e_notification_types" using primary key columns */ + e_notification_types_by_pk: (e_notification_types | null) + /** fetch data from the table: "e_objective_types" */ + e_objective_types: e_objective_types[] + /** fetch aggregated fields from the table: "e_objective_types" */ + e_objective_types_aggregate: e_objective_types_aggregate + /** fetch data from the table: "e_objective_types" using primary key columns */ + e_objective_types_by_pk: (e_objective_types | null) + /** fetch data from the table: "e_player_roles" */ + e_player_roles: e_player_roles[] + /** fetch aggregated fields from the table: "e_player_roles" */ + e_player_roles_aggregate: e_player_roles_aggregate + /** fetch data from the table: "e_player_roles" using primary key columns */ + e_player_roles_by_pk: (e_player_roles | null) + /** fetch data from the table: "e_plugin_runtimes" */ + e_plugin_runtimes: e_plugin_runtimes[] + /** fetch aggregated fields from the table: "e_plugin_runtimes" */ + e_plugin_runtimes_aggregate: e_plugin_runtimes_aggregate + /** fetch data from the table: "e_plugin_runtimes" using primary key columns */ + e_plugin_runtimes_by_pk: (e_plugin_runtimes | null) + /** fetch data from the table: "e_ready_settings" */ + e_ready_settings: e_ready_settings[] + /** fetch aggregated fields from the table: "e_ready_settings" */ + e_ready_settings_aggregate: e_ready_settings_aggregate + /** fetch data from the table: "e_ready_settings" using primary key columns */ + e_ready_settings_by_pk: (e_ready_settings | null) + /** fetch data from the table: "e_sanction_scopes" */ + e_sanction_scopes: e_sanction_scopes[] + /** fetch aggregated fields from the table: "e_sanction_scopes" */ + e_sanction_scopes_aggregate: e_sanction_scopes_aggregate + /** fetch data from the table: "e_sanction_scopes" using primary key columns */ + e_sanction_scopes_by_pk: (e_sanction_scopes | null) + /** fetch data from the table: "e_sanction_sources" */ + e_sanction_sources: e_sanction_sources[] + /** fetch aggregated fields from the table: "e_sanction_sources" */ + e_sanction_sources_aggregate: e_sanction_sources_aggregate + /** fetch data from the table: "e_sanction_sources" using primary key columns */ + e_sanction_sources_by_pk: (e_sanction_sources | null) + /** fetch data from the table: "e_sanction_types" */ + e_sanction_types: e_sanction_types[] + /** fetch aggregated fields from the table: "e_sanction_types" */ + e_sanction_types_aggregate: e_sanction_types_aggregate + /** fetch data from the table: "e_sanction_types" using primary key columns */ + e_sanction_types_by_pk: (e_sanction_types | null) + /** fetch data from the table: "e_scrim_request_statuses" */ + e_scrim_request_statuses: e_scrim_request_statuses[] + /** fetch aggregated fields from the table: "e_scrim_request_statuses" */ + e_scrim_request_statuses_aggregate: e_scrim_request_statuses_aggregate + /** fetch data from the table: "e_scrim_request_statuses" using primary key columns */ + e_scrim_request_statuses_by_pk: (e_scrim_request_statuses | null) + /** fetch data from the table: "e_server_types" */ + e_server_types: e_server_types[] + /** fetch aggregated fields from the table: "e_server_types" */ + e_server_types_aggregate: e_server_types_aggregate + /** fetch data from the table: "e_server_types" using primary key columns */ + e_server_types_by_pk: (e_server_types | null) + /** fetch data from the table: "e_sides" */ + e_sides: e_sides[] + /** fetch aggregated fields from the table: "e_sides" */ + e_sides_aggregate: e_sides_aggregate + /** fetch data from the table: "e_sides" using primary key columns */ + e_sides_by_pk: (e_sides | null) + /** fetch data from the table: "e_system_alert_types" */ + e_system_alert_types: e_system_alert_types[] + /** fetch aggregated fields from the table: "e_system_alert_types" */ + e_system_alert_types_aggregate: e_system_alert_types_aggregate + /** fetch data from the table: "e_system_alert_types" using primary key columns */ + e_system_alert_types_by_pk: (e_system_alert_types | null) + /** fetch data from the table: "e_team_roles" */ + e_team_roles: e_team_roles[] + /** fetch aggregated fields from the table: "e_team_roles" */ + e_team_roles_aggregate: e_team_roles_aggregate + /** fetch data from the table: "e_team_roles" using primary key columns */ + e_team_roles_by_pk: (e_team_roles | null) + /** fetch data from the table: "e_team_roster_statuses" */ + e_team_roster_statuses: e_team_roster_statuses[] + /** fetch aggregated fields from the table: "e_team_roster_statuses" */ + e_team_roster_statuses_aggregate: e_team_roster_statuses_aggregate + /** fetch data from the table: "e_team_roster_statuses" using primary key columns */ + e_team_roster_statuses_by_pk: (e_team_roster_statuses | null) + /** fetch data from the table: "e_timeout_settings" */ + e_timeout_settings: e_timeout_settings[] + /** fetch aggregated fields from the table: "e_timeout_settings" */ + e_timeout_settings_aggregate: e_timeout_settings_aggregate + /** fetch data from the table: "e_timeout_settings" using primary key columns */ + e_timeout_settings_by_pk: (e_timeout_settings | null) + /** fetch data from the table: "e_tournament_categories" */ + e_tournament_categories: e_tournament_categories[] + /** fetch aggregated fields from the table: "e_tournament_categories" */ + e_tournament_categories_aggregate: e_tournament_categories_aggregate + /** fetch data from the table: "e_tournament_categories" using primary key columns */ + e_tournament_categories_by_pk: (e_tournament_categories | null) + /** fetch data from the table: "e_tournament_free_agent_statuses" */ + e_tournament_free_agent_statuses: e_tournament_free_agent_statuses[] + /** fetch aggregated fields from the table: "e_tournament_free_agent_statuses" */ + e_tournament_free_agent_statuses_aggregate: e_tournament_free_agent_statuses_aggregate + /** fetch data from the table: "e_tournament_free_agent_statuses" using primary key columns */ + e_tournament_free_agent_statuses_by_pk: (e_tournament_free_agent_statuses | null) + /** fetch data from the table: "e_tournament_registration_types" */ + e_tournament_registration_types: e_tournament_registration_types[] + /** fetch aggregated fields from the table: "e_tournament_registration_types" */ + e_tournament_registration_types_aggregate: e_tournament_registration_types_aggregate + /** fetch data from the table: "e_tournament_registration_types" using primary key columns */ + e_tournament_registration_types_by_pk: (e_tournament_registration_types | null) + /** fetch data from the table: "e_tournament_stage_types" */ + e_tournament_stage_types: e_tournament_stage_types[] + /** fetch aggregated fields from the table: "e_tournament_stage_types" */ + e_tournament_stage_types_aggregate: e_tournament_stage_types_aggregate + /** fetch data from the table: "e_tournament_stage_types" using primary key columns */ + e_tournament_stage_types_by_pk: (e_tournament_stage_types | null) + /** fetch data from the table: "e_tournament_status" */ + e_tournament_status: e_tournament_status[] + /** fetch aggregated fields from the table: "e_tournament_status" */ + e_tournament_status_aggregate: e_tournament_status_aggregate + /** fetch data from the table: "e_tournament_status" using primary key columns */ + e_tournament_status_by_pk: (e_tournament_status | null) + /** fetch data from the table: "e_utility_practice_access" */ + e_utility_practice_access: e_utility_practice_access[] + /** fetch aggregated fields from the table: "e_utility_practice_access" */ + e_utility_practice_access_aggregate: e_utility_practice_access_aggregate + /** fetch data from the table: "e_utility_practice_access" using primary key columns */ + e_utility_practice_access_by_pk: (e_utility_practice_access | null) + /** fetch data from the table: "e_utility_practice_statuses" */ + e_utility_practice_statuses: e_utility_practice_statuses[] + /** fetch aggregated fields from the table: "e_utility_practice_statuses" */ + e_utility_practice_statuses_aggregate: e_utility_practice_statuses_aggregate + /** fetch data from the table: "e_utility_practice_statuses" using primary key columns */ + e_utility_practice_statuses_by_pk: (e_utility_practice_statuses | null) + /** fetch data from the table: "e_utility_sources" */ + e_utility_sources: e_utility_sources[] + /** fetch aggregated fields from the table: "e_utility_sources" */ + e_utility_sources_aggregate: e_utility_sources_aggregate + /** fetch data from the table: "e_utility_sources" using primary key columns */ + e_utility_sources_by_pk: (e_utility_sources | null) + /** fetch data from the table: "e_utility_techniques" */ + e_utility_techniques: e_utility_techniques[] + /** fetch aggregated fields from the table: "e_utility_techniques" */ + e_utility_techniques_aggregate: e_utility_techniques_aggregate + /** fetch data from the table: "e_utility_techniques" using primary key columns */ + e_utility_techniques_by_pk: (e_utility_techniques | null) + /** fetch data from the table: "e_utility_throw_strengths" */ + e_utility_throw_strengths: e_utility_throw_strengths[] + /** fetch aggregated fields from the table: "e_utility_throw_strengths" */ + e_utility_throw_strengths_aggregate: e_utility_throw_strengths_aggregate + /** fetch data from the table: "e_utility_throw_strengths" using primary key columns */ + e_utility_throw_strengths_by_pk: (e_utility_throw_strengths | null) + /** fetch data from the table: "e_utility_types" */ + e_utility_types: e_utility_types[] + /** fetch aggregated fields from the table: "e_utility_types" */ + e_utility_types_aggregate: e_utility_types_aggregate + /** fetch data from the table: "e_utility_types" using primary key columns */ + e_utility_types_by_pk: (e_utility_types | null) + /** fetch data from the table: "e_utility_visibility" */ + e_utility_visibility: e_utility_visibility[] + /** fetch aggregated fields from the table: "e_utility_visibility" */ + e_utility_visibility_aggregate: e_utility_visibility_aggregate + /** fetch data from the table: "e_utility_visibility" using primary key columns */ + e_utility_visibility_by_pk: (e_utility_visibility | null) + /** fetch data from the table: "e_veto_pick_types" */ + e_veto_pick_types: e_veto_pick_types[] + /** fetch aggregated fields from the table: "e_veto_pick_types" */ + e_veto_pick_types_aggregate: e_veto_pick_types_aggregate + /** fetch data from the table: "e_veto_pick_types" using primary key columns */ + e_veto_pick_types_by_pk: (e_veto_pick_types | null) + /** fetch data from the table: "e_winning_reasons" */ + e_winning_reasons: e_winning_reasons[] + /** fetch aggregated fields from the table: "e_winning_reasons" */ + e_winning_reasons_aggregate: e_winning_reasons_aggregate + /** fetch data from the table: "e_winning_reasons" using primary key columns */ + e_winning_reasons_by_pk: (e_winning_reasons | null) + /** fetch data from the table: "event_match_links" */ + event_match_links: event_match_links[] + /** fetch aggregated fields from the table: "event_match_links" */ + event_match_links_aggregate: event_match_links_aggregate + /** fetch data from the table: "event_match_links" using primary key columns */ + event_match_links_by_pk: (event_match_links | null) + /** fetch data from the table: "event_media" */ + event_media: event_media[] + /** fetch aggregated fields from the table: "event_media" */ + event_media_aggregate: event_media_aggregate + /** fetch data from the table: "event_media" using primary key columns */ + event_media_by_pk: (event_media | null) + /** fetch data from the table: "event_media_players" */ + event_media_players: event_media_players[] + /** fetch aggregated fields from the table: "event_media_players" */ + event_media_players_aggregate: event_media_players_aggregate + /** fetch data from the table: "event_media_players" using primary key columns */ + event_media_players_by_pk: (event_media_players | null) + /** fetch data from the table: "event_organizers" */ + event_organizers: event_organizers[] + /** fetch aggregated fields from the table: "event_organizers" */ + event_organizers_aggregate: event_organizers_aggregate + /** fetch data from the table: "event_organizers" using primary key columns */ + event_organizers_by_pk: (event_organizers | null) + /** fetch data from the table: "event_players" */ + event_players: event_players[] + /** fetch aggregated fields from the table: "event_players" */ + event_players_aggregate: event_players_aggregate + /** fetch data from the table: "event_players" using primary key columns */ + event_players_by_pk: (event_players | null) + /** fetch data from the table: "event_teams" */ + event_teams: event_teams[] + /** fetch aggregated fields from the table: "event_teams" */ + event_teams_aggregate: event_teams_aggregate + /** fetch data from the table: "event_teams" using primary key columns */ + event_teams_by_pk: (event_teams | null) + /** fetch data from the table: "event_tournaments" */ + event_tournaments: event_tournaments[] + /** fetch aggregated fields from the table: "event_tournaments" */ + event_tournaments_aggregate: event_tournaments_aggregate + /** fetch data from the table: "event_tournaments" using primary key columns */ + event_tournaments_by_pk: (event_tournaments | null) + /** fetch data from the table: "events" */ + events: events[] + /** fetch aggregated fields from the table: "events" */ + events_aggregate: events_aggregate + /** fetch data from the table: "events" using primary key columns */ + events_by_pk: (events | null) + /** Find the saved smokes that close a given sightline */ + findUtilityLineupsBlocking: (UtilityBlockingOutput | null) + /** fetch data from the table: "friends" */ + friends: friends[] + /** fetch aggregated fields from the table: "friends" */ + 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 */ + game_server_nodes_aggregate: game_server_nodes_aggregate + /** fetch data from the table: "game_server_nodes" using primary key columns */ + game_server_nodes_by_pk: (game_server_nodes | null) + /** fetch data from the table: "game_versions" */ + game_versions: game_versions[] + /** fetch aggregated fields from the table: "game_versions" */ + game_versions_aggregate: game_versions_aggregate + /** fetch data from the table: "game_versions" using primary key columns */ + game_versions_by_pk: (game_versions | null) + /** fetch data from the table: "gamedata_signature_validations" */ + gamedata_signature_validations: gamedata_signature_validations[] + /** fetch aggregated fields from the table: "gamedata_signature_validations" */ + gamedata_signature_validations_aggregate: gamedata_signature_validations_aggregate + /** fetch data from the table: "gamedata_signature_validations" using primary key columns */ + gamedata_signature_validations_by_pk: (gamedata_signature_validations | null) + /** Get list of active connections */ + getActiveConnections: (ActiveConnection | null)[] + /** Get currently executing queries */ + getActiveQueries: (ActiveQuery | null)[] + /** Get connection statistics */ + getConnectionStats: ConnectionStats + /** Get current database locks */ + getCurrentLocks: (LockInfo | null)[] + /** Get database-wide statistics */ + getDatabaseStats: DatabaseStats + getDedicatedServerInfo: (DedicatedSeverInfo | null)[] + getDedicatedServerPlayers: ServerPlayer[] + /** Which highlight presets have content for a player on a map's demo */ + getHighlightPresetAvailability: (HighlightPresetAvailability | null) + /** Get index I/O statistics */ + getIndexIOStats: (IndexIOStat | null)[] + /** Get index usage statistics */ + getIndexStats: (IndexStat | null)[] + getNodeStats: NodeStats + /** Get detailed query analysis with EXPLAIN plan */ + getQueryDetail: (QueryDetail | null) + /** Get enhanced query performance statistics */ + getQueryStats: (QueryStat | null)[] + /** Get available database schemas */ + getSchemas: Scalars['String'] + getServiceStats: (PodStats | null)[] + /** Get database storage statistics and reclaimable space */ + getStorageStats: StorageStats + /** Get table I/O statistics */ + getTableIOStats: (TableIOStat | null)[] + /** Get table access statistics */ + getTableStats: (TableStat | null)[] + /** Get TimescaleDB statistics */ + getTimescaleStats: TimescaleStats + /** execute function "get_event_leaderboard" which returns "leaderboard_entries" */ + get_event_leaderboard: leaderboard_entries[] + /** execute function "get_event_leaderboard" and query aggregates on result of table type "leaderboard_entries" */ + get_event_leaderboard_aggregate: leaderboard_entries_aggregate + /** execute function "get_leaderboard" which returns "leaderboard_entries" */ + get_leaderboard: leaderboard_entries[] + /** execute function "get_leaderboard" and query aggregates on result of table type "leaderboard_entries" */ + get_leaderboard_aggregate: leaderboard_entries_aggregate + /** execute function "get_league_season_leaderboard" which returns "leaderboard_entries" */ + get_league_season_leaderboard: leaderboard_entries[] + /** execute function "get_league_season_leaderboard" and query aggregates on result of table type "leaderboard_entries" */ + get_league_season_leaderboard_aggregate: leaderboard_entries_aggregate + /** execute function "get_player_leaderboard_rank" which returns "player_leaderboard_rank" */ + get_player_leaderboard_rank: player_leaderboard_rank[] + /** execute function "get_player_leaderboard_rank" and query aggregates on result of table type "player_leaderboard_rank" */ + get_player_leaderboard_rank_aggregate: player_leaderboard_rank_aggregate + /** execute function "get_tournament_leaderboard" which returns "tournament_leaderboard_entries" */ + get_tournament_leaderboard: tournament_leaderboard_entries[] + /** execute function "get_tournament_leaderboard" and query aggregates on result of table type "tournament_leaderboard_entries" */ + get_tournament_leaderboard_aggregate: tournament_leaderboard_entries_aggregate + /** fetch data from the table: "leaderboard_entries" */ + leaderboard_entries: leaderboard_entries[] + /** fetch aggregated fields from the table: "leaderboard_entries" */ + leaderboard_entries_aggregate: leaderboard_entries_aggregate + /** fetch data from the table: "league_divisions" */ + league_divisions: league_divisions[] + /** fetch aggregated fields from the table: "league_divisions" */ + league_divisions_aggregate: league_divisions_aggregate + /** fetch data from the table: "league_divisions" using primary key columns */ + league_divisions_by_pk: (league_divisions | null) + /** fetch data from the table: "league_match_weeks" */ + league_match_weeks: league_match_weeks[] + /** fetch aggregated fields from the table: "league_match_weeks" */ + league_match_weeks_aggregate: league_match_weeks_aggregate + /** fetch data from the table: "league_match_weeks" using primary key columns */ + league_match_weeks_by_pk: (league_match_weeks | null) + /** fetch data from the table: "league_relegation_playoffs" */ + league_relegation_playoffs: league_relegation_playoffs[] + /** fetch aggregated fields from the table: "league_relegation_playoffs" */ + league_relegation_playoffs_aggregate: league_relegation_playoffs_aggregate + /** fetch data from the table: "league_relegation_playoffs" using primary key columns */ + league_relegation_playoffs_by_pk: (league_relegation_playoffs | null) + /** fetch data from the table: "league_scheduling_proposals" */ + league_scheduling_proposals: league_scheduling_proposals[] + /** fetch aggregated fields from the table: "league_scheduling_proposals" */ + league_scheduling_proposals_aggregate: league_scheduling_proposals_aggregate + /** fetch data from the table: "league_scheduling_proposals" using primary key columns */ + league_scheduling_proposals_by_pk: (league_scheduling_proposals | null) + /** fetch data from the table: "league_season_divisions" */ + league_season_divisions: league_season_divisions[] + /** fetch aggregated fields from the table: "league_season_divisions" */ + league_season_divisions_aggregate: league_season_divisions_aggregate + /** fetch data from the table: "league_season_divisions" using primary key columns */ + league_season_divisions_by_pk: (league_season_divisions | null) + /** fetch data from the table: "league_seasons" */ + league_seasons: league_seasons[] + /** fetch aggregated fields from the table: "league_seasons" */ + league_seasons_aggregate: league_seasons_aggregate + /** fetch data from the table: "league_seasons" using primary key columns */ + league_seasons_by_pk: (league_seasons | null) + /** fetch data from the table: "league_team_movements" */ + league_team_movements: league_team_movements[] + /** fetch aggregated fields from the table: "league_team_movements" */ + league_team_movements_aggregate: league_team_movements_aggregate + /** fetch data from the table: "league_team_movements" using primary key columns */ + league_team_movements_by_pk: (league_team_movements | null) + /** fetch data from the table: "league_team_rosters" */ + league_team_rosters: league_team_rosters[] + /** fetch aggregated fields from the table: "league_team_rosters" */ + league_team_rosters_aggregate: league_team_rosters_aggregate + /** fetch data from the table: "league_team_rosters" using primary key columns */ + league_team_rosters_by_pk: (league_team_rosters | null) + /** fetch data from the table: "league_team_seasons" */ + league_team_seasons: league_team_seasons[] + /** fetch aggregated fields from the table: "league_team_seasons" */ + league_team_seasons_aggregate: league_team_seasons_aggregate + /** fetch data from the table: "league_team_seasons" using primary key columns */ + league_team_seasons_by_pk: (league_team_seasons | null) + /** fetch data from the table: "league_teams" */ + league_teams: league_teams[] + /** fetch aggregated fields from the table: "league_teams" */ + league_teams_aggregate: league_teams_aggregate + /** fetch data from the table: "league_teams" using primary key columns */ + league_teams_by_pk: (league_teams | null) + /** List files in game server directory */ + listServerFiles: FileListResponse + /** fetch data from the table: "lobbies" */ + lobbies: lobbies[] + /** fetch aggregated fields from the table: "lobbies" */ + lobbies_aggregate: lobbies_aggregate + /** fetch data from the table: "lobbies" using primary key columns */ + lobbies_by_pk: (lobbies | null) + /** An array relationship */ + lobby_players: lobby_players[] + /** An aggregate relationship */ + lobby_players_aggregate: lobby_players_aggregate + /** fetch data from the table: "lobby_players" using primary key columns */ + lobby_players_by_pk: (lobby_players | null) + /** fetch data from the table: "map_callouts" */ + map_callouts: map_callouts[] + /** fetch aggregated fields from the table: "map_callouts" */ + map_callouts_aggregate: map_callouts_aggregate + /** fetch data from the table: "map_callouts" using primary key columns */ + map_callouts_by_pk: (map_callouts | null) + /** fetch data from the table: "map_pools" */ + map_pools: map_pools[] + /** fetch aggregated fields from the table: "map_pools" */ + map_pools_aggregate: map_pools_aggregate + /** fetch data from the table: "map_pools" using primary key columns */ + map_pools_by_pk: (map_pools | null) + /** An array relationship */ + maps: maps[] + /** An aggregate relationship */ + maps_aggregate: maps_aggregate + /** fetch data from the table: "maps" using primary key columns */ + maps_by_pk: (maps | null) + /** An array relationship */ + match_clips: match_clips[] + /** An aggregate relationship */ + match_clips_aggregate: match_clips_aggregate + /** fetch data from the table: "match_clips" using primary key columns */ + match_clips_by_pk: (match_clips | null) + /** fetch data from the table: "match_demo_sessions" */ + match_demo_sessions: match_demo_sessions[] + /** fetch aggregated fields from the table: "match_demo_sessions" */ + match_demo_sessions_aggregate: match_demo_sessions_aggregate + /** fetch data from the table: "match_demo_sessions" using primary key columns */ + match_demo_sessions_by_pk: (match_demo_sessions | null) + /** An array relationship */ + match_lineup_players: match_lineup_players[] + /** An aggregate relationship */ + match_lineup_players_aggregate: match_lineup_players_aggregate + /** fetch data from the table: "match_lineup_players" using primary key columns */ + match_lineup_players_by_pk: (match_lineup_players | null) + /** An array relationship */ + match_lineups: match_lineups[] + /** An aggregate relationship */ + match_lineups_aggregate: match_lineups_aggregate + /** fetch data from the table: "match_lineups" using primary key columns */ + match_lineups_by_pk: (match_lineups | null) + /** fetch data from the table: "match_map_demos" */ + match_map_demos: match_map_demos[] + /** fetch aggregated fields from the table: "match_map_demos" */ + match_map_demos_aggregate: match_map_demos_aggregate + /** fetch data from the table: "match_map_demos" using primary key columns */ + match_map_demos_by_pk: (match_map_demos | null) + /** fetch data from the table: "match_map_rounds" */ + match_map_rounds: match_map_rounds[] + /** fetch aggregated fields from the table: "match_map_rounds" */ + match_map_rounds_aggregate: match_map_rounds_aggregate + /** fetch data from the table: "match_map_rounds" using primary key columns */ + match_map_rounds_by_pk: (match_map_rounds | null) + /** fetch data from the table: "match_map_veto_picks" */ + match_map_veto_picks: match_map_veto_picks[] + /** fetch aggregated fields from the table: "match_map_veto_picks" */ + match_map_veto_picks_aggregate: match_map_veto_picks_aggregate + /** fetch data from the table: "match_map_veto_picks" using primary key columns */ + match_map_veto_picks_by_pk: (match_map_veto_picks | null) + /** An array relationship */ + match_maps: match_maps[] + /** An aggregate relationship */ + match_maps_aggregate: match_maps_aggregate + /** fetch data from the table: "match_maps" using primary key columns */ + match_maps_by_pk: (match_maps | null) + /** An array relationship */ + match_options: 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) + /** fetch data from the table: "match_region_veto_picks" */ + match_region_veto_picks: match_region_veto_picks[] + /** fetch aggregated fields from the table: "match_region_veto_picks" */ + match_region_veto_picks_aggregate: match_region_veto_picks_aggregate + /** fetch data from the table: "match_region_veto_picks" using primary key columns */ + match_region_veto_picks_by_pk: (match_region_veto_picks | null) + /** fetch data from the table: "match_streams" */ + match_streams: match_streams[] + /** fetch aggregated fields from the table: "match_streams" */ + match_streams_aggregate: match_streams_aggregate + /** fetch data from the table: "match_streams" using primary key columns */ + match_streams_by_pk: (match_streams | null) + /** fetch data from the table: "match_type_cfgs" */ + match_type_cfgs: match_type_cfgs[] + /** fetch aggregated fields from the table: "match_type_cfgs" */ + match_type_cfgs_aggregate: match_type_cfgs_aggregate + /** fetch data from the table: "match_type_cfgs" using primary key columns */ + match_type_cfgs_by_pk: (match_type_cfgs | null) + /** An array relationship */ + matches: matches[] + /** An aggregate relationship */ + matches_aggregate: matches_aggregate + /** fetch data from the table: "matches" using primary key columns */ + matches_by_pk: (matches | null) + /** Gets Current User */ + me: MeResponse + /** fetch data from the table: "migration_hashes.hashes" */ + migration_hashes_hashes: migration_hashes_hashes[] + /** fetch aggregated fields from the table: "migration_hashes.hashes" */ + migration_hashes_hashes_aggregate: migration_hashes_hashes_aggregate + /** fetch data from the table: "migration_hashes.hashes" using primary key columns */ + migration_hashes_hashes_by_pk: (migration_hashes_hashes | null) + /** fetch data from the table: "v_my_friends" */ + my_friends: my_friends[] + /** fetch aggregated fields from the table: "v_my_friends" */ + my_friends_aggregate: my_friends_aggregate + /** Fetch a single news post including draft content for editing. Caller role is verified against public.post_news_role. */ + newsPostAdmin: (NewsPost | null) + /** List all news posts including drafts for the management area. Caller role is verified against public.post_news_role. */ + newsPostsAdmin: (NewsPost[] | null) + /** fetch data from the table: "news_articles" */ + news_articles: news_articles[] + /** fetch aggregated fields from the table: "news_articles" */ + news_articles_aggregate: news_articles_aggregate + /** fetch data from the table: "news_articles" using primary key columns */ + news_articles_by_pk: (news_articles | null) + /** fetch data from the table: "notification_preferences" */ + notification_preferences: notification_preferences[] + /** fetch aggregated fields from the table: "notification_preferences" */ + notification_preferences_aggregate: notification_preferences_aggregate + /** fetch data from the table: "notification_preferences" using primary key columns */ + notification_preferences_by_pk: (notification_preferences | null) + /** An array relationship */ + notifications: notifications[] + /** An aggregate relationship */ + notifications_aggregate: notifications_aggregate + /** fetch data from the table: "notifications" using primary key columns */ + notifications_by_pk: (notifications | null) + /** fetch data from the table: "pending_match_import_players" */ + pending_match_import_players: pending_match_import_players[] + /** fetch aggregated fields from the table: "pending_match_import_players" */ + pending_match_import_players_aggregate: pending_match_import_players_aggregate + /** fetch data from the table: "pending_match_import_players" using primary key columns */ + pending_match_import_players_by_pk: (pending_match_import_players | null) + /** fetch data from the table: "pending_match_imports" */ + pending_match_imports: pending_match_imports[] + /** fetch aggregated fields from the table: "pending_match_imports" */ + pending_match_imports_aggregate: pending_match_imports_aggregate + /** fetch data from the table: "pending_match_imports" using primary key columns */ + pending_match_imports_by_pk: (pending_match_imports | null) + /** fetch data from the table: "player_aim_stats_demo" */ + player_aim_stats_demo: player_aim_stats_demo[] + /** fetch aggregated fields from the table: "player_aim_stats_demo" */ + player_aim_stats_demo_aggregate: player_aim_stats_demo_aggregate + /** fetch data from the table: "player_aim_stats_demo" using primary key columns */ + player_aim_stats_demo_by_pk: (player_aim_stats_demo | null) + /** fetch data from the table: "player_aim_weapon_stats" */ + player_aim_weapon_stats: player_aim_weapon_stats[] + /** fetch aggregated fields from the table: "player_aim_weapon_stats" */ + player_aim_weapon_stats_aggregate: player_aim_weapon_stats_aggregate + /** fetch data from the table: "player_aim_weapon_stats" using primary key columns */ + player_aim_weapon_stats_by_pk: (player_aim_weapon_stats | null) + /** An array relationship */ + player_assists: player_assists[] + /** An aggregate relationship */ + player_assists_aggregate: player_assists_aggregate + /** fetch data from the table: "player_assists" using primary key columns */ + player_assists_by_pk: (player_assists | null) + /** fetch data from the table: "player_career_stats_v" */ + player_career_stats_v: player_career_stats_v[] + /** fetch aggregated fields from the table: "player_career_stats_v" */ + player_career_stats_v_aggregate: player_career_stats_v_aggregate + /** An array relationship */ + player_damages: player_damages[] + /** An aggregate relationship */ + player_damages_aggregate: player_damages_aggregate + /** fetch data from the table: "player_damages" using primary key columns */ + player_damages_by_pk: (player_damages | null) + /** fetch data from the table: "player_elo" */ + player_elo: player_elo[] + /** fetch aggregated fields from the table: "player_elo" */ + player_elo_aggregate: player_elo_aggregate + /** fetch data from the table: "player_elo" using primary key columns */ + player_elo_by_pk: (player_elo | null) + /** fetch data from the table: "player_faceit_rank_history" */ + player_faceit_rank_history: player_faceit_rank_history[] + /** fetch aggregated fields from the table: "player_faceit_rank_history" */ + player_faceit_rank_history_aggregate: player_faceit_rank_history_aggregate + /** fetch data from the table: "player_faceit_rank_history" using primary key columns */ + player_faceit_rank_history_by_pk: (player_faceit_rank_history | null) + /** An array relationship */ + player_flashes: player_flashes[] + /** An aggregate relationship */ + player_flashes_aggregate: player_flashes_aggregate + /** fetch data from the table: "player_flashes" using primary key columns */ + player_flashes_by_pk: (player_flashes | null) + /** An array relationship */ + player_kills: player_kills[] + /** An aggregate relationship */ + player_kills_aggregate: player_kills_aggregate + /** fetch data from the table: "player_kills" using primary key columns */ + player_kills_by_pk: (player_kills | null) + /** fetch data from the table: "player_kills_by_weapon" */ + player_kills_by_weapon: player_kills_by_weapon[] + /** fetch aggregated fields from the table: "player_kills_by_weapon" */ + player_kills_by_weapon_aggregate: player_kills_by_weapon_aggregate + /** fetch data from the table: "player_kills_by_weapon" using primary key columns */ + player_kills_by_weapon_by_pk: (player_kills_by_weapon | null) + /** fetch data from the table: "player_leaderboard_rank" */ + player_leaderboard_rank: player_leaderboard_rank[] + /** fetch aggregated fields from the table: "player_leaderboard_rank" */ + player_leaderboard_rank_aggregate: player_leaderboard_rank_aggregate + /** fetch data from the table: "player_match_map_stats" */ + player_match_map_stats: player_match_map_stats[] + /** fetch aggregated fields from the table: "player_match_map_stats" */ + player_match_map_stats_aggregate: player_match_map_stats_aggregate + /** fetch data from the table: "player_match_map_stats" using primary key columns */ + player_match_map_stats_by_pk: (player_match_map_stats | null) + /** fetch data from the table: "player_match_performance_v" */ + player_match_performance_v: player_match_performance_v[] + /** fetch aggregated fields from the table: "player_match_performance_v" */ + player_match_performance_v_aggregate: player_match_performance_v_aggregate + /** fetch data from the table: "player_match_stats_v" */ + player_match_stats_v: player_match_stats_v[] + /** fetch aggregated fields from the table: "player_match_stats_v" */ + player_match_stats_v_aggregate: player_match_stats_v_aggregate + /** An array relationship */ + player_objectives: player_objectives[] + /** An aggregate relationship */ + player_objectives_aggregate: player_objectives_aggregate + /** fetch data from the table: "player_objectives" using primary key columns */ + player_objectives_by_pk: (player_objectives | null) + /** fetch data from the table: "player_performance_v" */ + player_performance_v: player_performance_v[] + /** fetch aggregated fields from the table: "player_performance_v" */ + player_performance_v_aggregate: player_performance_v_aggregate + /** fetch data from the table: "player_premier_rank_history" */ + player_premier_rank_history: player_premier_rank_history[] + /** fetch aggregated fields from the table: "player_premier_rank_history" */ + player_premier_rank_history_aggregate: player_premier_rank_history_aggregate + /** fetch data from the table: "player_premier_rank_history" using primary key columns */ + player_premier_rank_history_by_pk: (player_premier_rank_history | null) + /** fetch data from the table: "player_sanctions" */ + player_sanctions: player_sanctions[] + /** fetch aggregated fields from the table: "player_sanctions" */ + player_sanctions_aggregate: player_sanctions_aggregate + /** fetch data from the table: "player_sanctions" using primary key columns */ + player_sanctions_by_pk: (player_sanctions | null) + /** An array relationship */ + player_season_stats: player_season_stats[] + /** An aggregate relationship */ + player_season_stats_aggregate: player_season_stats_aggregate + /** fetch data from the table: "player_season_stats" using primary key columns */ + player_season_stats_by_pk: (player_season_stats | null) + /** fetch data from the table: "player_stats" */ + player_stats: player_stats[] + /** fetch aggregated fields from the table: "player_stats" */ + player_stats_aggregate: player_stats_aggregate + /** fetch data from the table: "player_stats" using primary key columns */ + player_stats_by_pk: (player_stats | null) + /** fetch data from the table: "player_steam_bot_friend" */ + player_steam_bot_friend: player_steam_bot_friend[] + /** fetch aggregated fields from the table: "player_steam_bot_friend" */ + player_steam_bot_friend_aggregate: player_steam_bot_friend_aggregate + /** fetch data from the table: "player_steam_bot_friend" using primary key columns */ + player_steam_bot_friend_by_pk: (player_steam_bot_friend | null) + /** fetch data from the table: "player_steam_match_auth" */ + player_steam_match_auth: player_steam_match_auth[] + /** fetch aggregated fields from the table: "player_steam_match_auth" */ + player_steam_match_auth_aggregate: player_steam_match_auth_aggregate + /** fetch data from the table: "player_steam_match_auth" using primary key columns */ + player_steam_match_auth_by_pk: (player_steam_match_auth | null) + /** fetch data from the table: "player_unused_utility" */ + player_unused_utility: player_unused_utility[] + /** fetch aggregated fields from the table: "player_unused_utility" */ + player_unused_utility_aggregate: player_unused_utility_aggregate + /** fetch data from the table: "player_unused_utility" using primary key columns */ + player_unused_utility_by_pk: (player_unused_utility | null) + /** An array relationship */ + player_utility: player_utility[] + /** An aggregate relationship */ + player_utility_aggregate: player_utility_aggregate + /** fetch data from the table: "player_utility" using primary key columns */ + player_utility_by_pk: (player_utility | null) + /** fetch data from the table: "player_weapon_stats_v" */ + player_weapon_stats_v: player_weapon_stats_v[] + /** fetch aggregated fields from the table: "player_weapon_stats_v" */ + player_weapon_stats_v_aggregate: player_weapon_stats_v_aggregate + /** fetch data from the table: "players" */ + players: players[] + /** fetch aggregated fields from the table: "players" */ + players_aggregate: players_aggregate + /** fetch data from the table: "players" using primary key columns */ + players_by_pk: (players | null) + /** fetch data from the table: "plugin_versions" */ + plugin_versions: plugin_versions[] + /** fetch aggregated fields from the table: "plugin_versions" */ + plugin_versions_aggregate: plugin_versions_aggregate + /** fetch data from the table: "plugin_versions" using primary key columns */ + plugin_versions_by_pk: (plugin_versions | null) + /** fetch data from the table: "push_subscriptions" */ + push_subscriptions: push_subscriptions[] + /** fetch aggregated fields from the table: "push_subscriptions" */ + push_subscriptions_aggregate: push_subscriptions_aggregate + /** fetch data from the table: "push_subscriptions" using primary key columns */ + push_subscriptions_by_pk: (push_subscriptions | null) + /** Read file content from game server */ + readServerFile: FileContentResponse + /** fetch data from the table: "v_role_permissions" */ + role_permissions: role_permissions[] + /** fetch aggregated fields from the table: "v_role_permissions" */ + role_permissions_aggregate: role_permissions_aggregate + /** fetch data from the table: "seasons" */ + seasons: seasons[] + /** fetch aggregated fields from the table: "seasons" */ + seasons_aggregate: seasons_aggregate + /** fetch data from the table: "seasons" using primary key columns */ + seasons_by_pk: (seasons | null) + /** fetch data from the table: "server_regions" */ + server_regions: server_regions[] + /** fetch aggregated fields from the table: "server_regions" */ + server_regions_aggregate: server_regions_aggregate + /** fetch data from the table: "server_regions" using primary key columns */ + server_regions_by_pk: (server_regions | null) + /** An array relationship */ + servers: servers[] + /** An aggregate relationship */ + servers_aggregate: servers_aggregate + /** fetch data from the table: "servers" using primary key columns */ + servers_by_pk: (servers | null) + /** fetch data from the table: "settings" */ + settings: settings[] + /** fetch aggregated fields from the table: "settings" */ + settings_aggregate: settings_aggregate + /** fetch data from the table: "settings" using primary key columns */ + settings_by_pk: (settings | null) + /** Steam presence bot admin dashboard status */ + steamPresenceAdminStatus: SteamPresenceAdminStatusOutput + /** fetch data from the table: "steam_account_claims" */ + steam_account_claims: steam_account_claims[] + /** fetch aggregated fields from the table: "steam_account_claims" */ + steam_account_claims_aggregate: steam_account_claims_aggregate + /** fetch data from the table: "steam_account_claims" using primary key columns */ + steam_account_claims_by_pk: (steam_account_claims | null) + /** fetch data from the table: "steam_accounts" */ + steam_accounts: steam_accounts[] + /** fetch aggregated fields from the table: "steam_accounts" */ + steam_accounts_aggregate: steam_accounts_aggregate + /** fetch data from the table: "steam_accounts" using primary key columns */ + steam_accounts_by_pk: (steam_accounts | null) + /** fetch data from the table: "system_alerts" */ + system_alerts: system_alerts[] + /** fetch aggregated fields from the table: "system_alerts" */ + system_alerts_aggregate: system_alerts_aggregate + /** fetch data from the table: "system_alerts" using primary key columns */ + system_alerts_by_pk: (system_alerts | null) + /** teamCalendarUrl */ + teamCalendarUrl: (TeamCalendarOutput | null) + /** An array relationship */ + team_invites: team_invites[] + /** An aggregate relationship */ + team_invites_aggregate: team_invites_aggregate + /** fetch data from the table: "team_invites" using primary key columns */ + team_invites_by_pk: (team_invites | null) + /** fetch data from the table: "team_roster" */ + team_roster: team_roster[] + /** fetch aggregated fields from the table: "team_roster" */ + team_roster_aggregate: team_roster_aggregate + /** fetch data from the table: "team_roster" using primary key columns */ + team_roster_by_pk: (team_roster | null) + /** fetch data from the table: "team_scrim_alerts" */ + team_scrim_alerts: team_scrim_alerts[] + /** fetch aggregated fields from the table: "team_scrim_alerts" */ + team_scrim_alerts_aggregate: team_scrim_alerts_aggregate + /** fetch data from the table: "team_scrim_alerts" using primary key columns */ + team_scrim_alerts_by_pk: (team_scrim_alerts | null) + /** fetch data from the table: "team_scrim_availability" */ + team_scrim_availability: team_scrim_availability[] + /** fetch aggregated fields from the table: "team_scrim_availability" */ + team_scrim_availability_aggregate: team_scrim_availability_aggregate + /** fetch data from the table: "team_scrim_availability" using primary key columns */ + team_scrim_availability_by_pk: (team_scrim_availability | null) + /** fetch data from the table: "team_scrim_request_proposals" */ + team_scrim_request_proposals: team_scrim_request_proposals[] + /** fetch aggregated fields from the table: "team_scrim_request_proposals" */ + team_scrim_request_proposals_aggregate: team_scrim_request_proposals_aggregate + /** fetch data from the table: "team_scrim_request_proposals" using primary key columns */ + team_scrim_request_proposals_by_pk: (team_scrim_request_proposals | null) + /** fetch data from the table: "team_scrim_requests" */ + team_scrim_requests: team_scrim_requests[] + /** fetch aggregated fields from the table: "team_scrim_requests" */ + team_scrim_requests_aggregate: team_scrim_requests_aggregate + /** fetch data from the table: "team_scrim_requests" using primary key columns */ + team_scrim_requests_by_pk: (team_scrim_requests | null) + /** fetch data from the table: "team_scrim_settings" */ + team_scrim_settings: team_scrim_settings[] + /** fetch aggregated fields from the table: "team_scrim_settings" */ + team_scrim_settings_aggregate: team_scrim_settings_aggregate + /** fetch data from the table: "team_scrim_settings" using primary key columns */ + team_scrim_settings_by_pk: (team_scrim_settings | null) + /** fetch data from the table: "team_suggestions" */ + team_suggestions: team_suggestions[] + /** fetch aggregated fields from the table: "team_suggestions" */ + team_suggestions_aggregate: team_suggestions_aggregate + /** fetch data from the table: "team_suggestions" using primary key columns */ + team_suggestions_by_pk: (team_suggestions | null) + /** fetch data from the table: "teams" */ + teams: teams[] + /** fetch aggregated fields from the table: "teams" */ + teams_aggregate: teams_aggregate + /** fetch data from the table: "teams" using primary key columns */ + teams_by_pk: (teams | null) + telemetryStats: TelemetryStats + /** fetch data from the table: "tournament_awards" */ + tournament_awards: tournament_awards[] + /** fetch aggregated fields from the table: "tournament_awards" */ + tournament_awards_aggregate: tournament_awards_aggregate + /** fetch data from the table: "tournament_awards" using primary key columns */ + tournament_awards_by_pk: (tournament_awards | null) + /** An array relationship */ + tournament_brackets: tournament_brackets[] + /** An aggregate relationship */ + tournament_brackets_aggregate: tournament_brackets_aggregate + /** fetch data from the table: "tournament_brackets" using primary key columns */ + tournament_brackets_by_pk: (tournament_brackets | null) + /** An array relationship */ + tournament_categories: tournament_categories[] + /** An aggregate relationship */ + tournament_categories_aggregate: tournament_categories_aggregate + /** fetch data from the table: "tournament_categories" using primary key columns */ + tournament_categories_by_pk: (tournament_categories | null) + /** An array relationship */ + tournament_free_agents: tournament_free_agents[] + /** An aggregate relationship */ + tournament_free_agents_aggregate: tournament_free_agents_aggregate + /** fetch data from the table: "tournament_free_agents" using primary key columns */ + tournament_free_agents_by_pk: (tournament_free_agents | null) + /** fetch data from the table: "tournament_invite_code_uses" */ + tournament_invite_code_uses: tournament_invite_code_uses[] + /** fetch aggregated fields from the table: "tournament_invite_code_uses" */ + tournament_invite_code_uses_aggregate: tournament_invite_code_uses_aggregate + /** fetch data from the table: "tournament_invite_code_uses" using primary key columns */ + tournament_invite_code_uses_by_pk: (tournament_invite_code_uses | null) + /** fetch data from the table: "tournament_invite_codes" */ + tournament_invite_codes: tournament_invite_codes[] + /** fetch aggregated fields from the table: "tournament_invite_codes" */ + tournament_invite_codes_aggregate: tournament_invite_codes_aggregate + /** fetch data from the table: "tournament_invite_codes" using primary key columns */ + tournament_invite_codes_by_pk: (tournament_invite_codes | null) + /** fetch data from the table: "tournament_invites" */ + tournament_invites: tournament_invites[] + /** fetch aggregated fields from the table: "tournament_invites" */ + tournament_invites_aggregate: tournament_invites_aggregate + /** fetch data from the table: "tournament_invites" using primary key columns */ + tournament_invites_by_pk: (tournament_invites | null) + /** fetch data from the table: "tournament_leaderboard_entries" */ + tournament_leaderboard_entries: tournament_leaderboard_entries[] + /** fetch aggregated fields from the table: "tournament_leaderboard_entries" */ + tournament_leaderboard_entries_aggregate: tournament_leaderboard_entries_aggregate + /** fetch data from the table: "tournament_no_shows" */ + tournament_no_shows: tournament_no_shows[] + /** fetch aggregated fields from the table: "tournament_no_shows" */ + tournament_no_shows_aggregate: tournament_no_shows_aggregate + /** fetch data from the table: "tournament_no_shows" using primary key columns */ + tournament_no_shows_by_pk: (tournament_no_shows | null) + /** fetch data from the table: "tournament_organizer_teams" */ + tournament_organizer_teams: tournament_organizer_teams[] + /** fetch aggregated fields from the table: "tournament_organizer_teams" */ + tournament_organizer_teams_aggregate: tournament_organizer_teams_aggregate + /** fetch data from the table: "tournament_organizer_teams" using primary key columns */ + tournament_organizer_teams_by_pk: (tournament_organizer_teams | null) + /** An array relationship */ + tournament_organizers: tournament_organizers[] + /** An aggregate relationship */ + tournament_organizers_aggregate: tournament_organizers_aggregate + /** fetch data from the table: "tournament_organizers" using primary key columns */ + tournament_organizers_by_pk: (tournament_organizers | null) + /** fetch data from the table: "tournament_prizes" */ + tournament_prizes: tournament_prizes[] + /** fetch aggregated fields from the table: "tournament_prizes" */ + tournament_prizes_aggregate: tournament_prizes_aggregate + /** fetch data from the table: "tournament_prizes" using primary key columns */ + tournament_prizes_by_pk: (tournament_prizes | null) + /** fetch data from the table: "tournament_registration_unlocks" */ + tournament_registration_unlocks: tournament_registration_unlocks[] + /** fetch aggregated fields from the table: "tournament_registration_unlocks" */ + tournament_registration_unlocks_aggregate: tournament_registration_unlocks_aggregate + /** fetch data from the table: "tournament_stage_windows" */ + tournament_stage_windows: tournament_stage_windows[] + /** fetch aggregated fields from the table: "tournament_stage_windows" */ + tournament_stage_windows_aggregate: tournament_stage_windows_aggregate + /** fetch data from the table: "tournament_stage_windows" using primary key columns */ + tournament_stage_windows_by_pk: (tournament_stage_windows | null) + /** An array relationship */ + tournament_stages: tournament_stages[] + /** An aggregate relationship */ + tournament_stages_aggregate: tournament_stages_aggregate + /** fetch data from the table: "tournament_stages" using primary key columns */ + tournament_stages_by_pk: (tournament_stages | null) + /** fetch data from the table: "tournament_team_invites" */ + tournament_team_invites: tournament_team_invites[] + /** fetch aggregated fields from the table: "tournament_team_invites" */ + tournament_team_invites_aggregate: tournament_team_invites_aggregate + /** fetch data from the table: "tournament_team_invites" using primary key columns */ + tournament_team_invites_by_pk: (tournament_team_invites | null) + /** fetch data from the table: "tournament_team_roster" */ + tournament_team_roster: tournament_team_roster[] + /** fetch aggregated fields from the table: "tournament_team_roster" */ + tournament_team_roster_aggregate: tournament_team_roster_aggregate + /** fetch data from the table: "tournament_team_roster" using primary key columns */ + tournament_team_roster_by_pk: (tournament_team_roster | null) + /** An array relationship */ + tournament_teams: tournament_teams[] + /** An aggregate relationship */ + tournament_teams_aggregate: tournament_teams_aggregate + /** fetch data from the table: "tournament_teams" using primary key columns */ + tournament_teams_by_pk: (tournament_teams | null) + /** An array relationship */ + tournaments: tournaments[] + /** An aggregate relationship */ + tournaments_aggregate: tournaments_aggregate + /** fetch data from the table: "tournaments" using primary key columns */ + tournaments_by_pk: (tournaments | null) + /** Which way everybody misses one lineup, from their practice throws */ + utilityLineupMissPattern: (UtilityMissPatternOutput | null) + /** Report a player's mined utility throws for a match */ + utilityMatchUtilityReport: (UtilityUtilityReportOutput | null) + /** Rank what to practise next on a map from the mined meta */ + utilityPracticePlan: (UtilityPracticePlanOutput | null) + /** Dedicated practice servers free to book right now */ + utilityPracticeServers: (UtilityPracticeServersOutput | null) + utilityPracticeWhereAmI: (UtilityPracticeWhereOutput | null) + /** Read the practice server solver's calibration gate */ + utilitySolverCalibration: (UtilityCalibrationOutput | null) + /** Aggregate a team's mined utility throws against its saved lineups */ + utilityTeamUtilityReport: (UtilityTeamUtilityOutput | null) + /** fetch data from the table: "utility_collection_items" */ + utility_collection_items: utility_collection_items[] + /** fetch aggregated fields from the table: "utility_collection_items" */ + utility_collection_items_aggregate: utility_collection_items_aggregate + /** fetch data from the table: "utility_collection_items" using primary key columns */ + utility_collection_items_by_pk: (utility_collection_items | null) + /** fetch data from the table: "utility_collections" */ + utility_collections: utility_collections[] + /** fetch aggregated fields from the table: "utility_collections" */ + utility_collections_aggregate: utility_collections_aggregate + /** fetch data from the table: "utility_collections" using primary key columns */ + utility_collections_by_pk: (utility_collections | null) + /** fetch data from the table: "utility_demo_mines" */ + utility_demo_mines: utility_demo_mines[] + /** fetch aggregated fields from the table: "utility_demo_mines" */ + utility_demo_mines_aggregate: utility_demo_mines_aggregate + /** fetch data from the table: "utility_demo_mines" using primary key columns */ + utility_demo_mines_by_pk: (utility_demo_mines | null) + /** fetch data from the table: "utility_demo_throws" */ + utility_demo_throws: utility_demo_throws[] + /** fetch aggregated fields from the table: "utility_demo_throws" */ + utility_demo_throws_aggregate: utility_demo_throws_aggregate + /** fetch data from the table: "utility_demo_throws" using primary key columns */ + utility_demo_throws_by_pk: (utility_demo_throws | null) + /** fetch data from the table: "utility_drift_results" */ + utility_drift_results: utility_drift_results[] + /** fetch aggregated fields from the table: "utility_drift_results" */ + utility_drift_results_aggregate: utility_drift_results_aggregate + /** fetch data from the table: "utility_drift_results" using primary key columns */ + utility_drift_results_by_pk: (utility_drift_results | null) + /** fetch data from the table: "utility_drift_scans" */ + utility_drift_scans: utility_drift_scans[] + /** fetch aggregated fields from the table: "utility_drift_scans" */ + utility_drift_scans_aggregate: utility_drift_scans_aggregate + /** fetch data from the table: "utility_drift_scans" using primary key columns */ + utility_drift_scans_by_pk: (utility_drift_scans | null) + /** fetch data from the table: "utility_lineup_favorites" */ + utility_lineup_favorites: utility_lineup_favorites[] + /** fetch aggregated fields from the table: "utility_lineup_favorites" */ + utility_lineup_favorites_aggregate: utility_lineup_favorites_aggregate + /** fetch data from the table: "utility_lineup_favorites" using primary key columns */ + utility_lineup_favorites_by_pk: (utility_lineup_favorites | null) + /** fetch data from the table: "utility_lineup_progress" */ + utility_lineup_progress: utility_lineup_progress[] + /** fetch aggregated fields from the table: "utility_lineup_progress" */ + utility_lineup_progress_aggregate: utility_lineup_progress_aggregate + /** fetch data from the table: "utility_lineup_progress" using primary key columns */ + utility_lineup_progress_by_pk: (utility_lineup_progress | null) + /** fetch data from the table: "utility_lineup_renders" */ + utility_lineup_renders: utility_lineup_renders[] + /** fetch aggregated fields from the table: "utility_lineup_renders" */ + utility_lineup_renders_aggregate: utility_lineup_renders_aggregate + /** fetch data from the table: "utility_lineup_renders" using primary key columns */ + utility_lineup_renders_by_pk: (utility_lineup_renders | null) + /** fetch data from the table: "utility_lineup_repairs" */ + utility_lineup_repairs: utility_lineup_repairs[] + /** fetch aggregated fields from the table: "utility_lineup_repairs" */ + utility_lineup_repairs_aggregate: utility_lineup_repairs_aggregate + /** fetch data from the table: "utility_lineup_repairs" using primary key columns */ + utility_lineup_repairs_by_pk: (utility_lineup_repairs | null) + /** fetch data from the table: "utility_lineup_votes" */ + utility_lineup_votes: utility_lineup_votes[] + /** fetch aggregated fields from the table: "utility_lineup_votes" */ + utility_lineup_votes_aggregate: utility_lineup_votes_aggregate + /** fetch data from the table: "utility_lineup_votes" using primary key columns */ + utility_lineup_votes_by_pk: (utility_lineup_votes | null) + /** An array relationship */ + utility_lineups: utility_lineups[] + /** An aggregate relationship */ + utility_lineups_aggregate: utility_lineups_aggregate + /** fetch data from the table: "utility_lineups" using primary key columns */ + utility_lineups_by_pk: (utility_lineups | null) + /** fetch data from the table: "utility_meta_lineups" */ + utility_meta_lineups: utility_meta_lineups[] + /** fetch aggregated fields from the table: "utility_meta_lineups" */ + utility_meta_lineups_aggregate: utility_meta_lineups_aggregate + /** fetch data from the table: "utility_meta_lineups" using primary key columns */ + utility_meta_lineups_by_pk: (utility_meta_lineups | null) + /** fetch data from the table: "utility_playbook_steps" */ + utility_playbook_steps: utility_playbook_steps[] + /** fetch aggregated fields from the table: "utility_playbook_steps" */ + utility_playbook_steps_aggregate: utility_playbook_steps_aggregate + /** fetch data from the table: "utility_playbook_steps" using primary key columns */ + utility_playbook_steps_by_pk: (utility_playbook_steps | null) + /** fetch data from the table: "utility_playbooks" */ + utility_playbooks: utility_playbooks[] + /** fetch aggregated fields from the table: "utility_playbooks" */ + utility_playbooks_aggregate: utility_playbooks_aggregate + /** fetch data from the table: "utility_playbooks" using primary key columns */ + utility_playbooks_by_pk: (utility_playbooks | null) + /** fetch data from the table: "utility_practice_invites" */ + utility_practice_invites: utility_practice_invites[] + /** fetch aggregated fields from the table: "utility_practice_invites" */ + utility_practice_invites_aggregate: utility_practice_invites_aggregate + /** fetch data from the table: "utility_practice_invites" using primary key columns */ + utility_practice_invites_by_pk: (utility_practice_invites | null) + /** An array relationship */ + utility_practice_sessions: utility_practice_sessions[] + /** An aggregate relationship */ + utility_practice_sessions_aggregate: utility_practice_sessions_aggregate + /** fetch data from the table: "utility_practice_sessions" using primary key columns */ + utility_practice_sessions_by_pk: (utility_practice_sessions | null) + /** fetch data from the table: "v_event_player_stats" */ + v_event_player_stats: v_event_player_stats[] + /** fetch aggregated fields from the table: "v_event_player_stats" */ + v_event_player_stats_aggregate: v_event_player_stats_aggregate + /** fetch data from the table: "v_gpu_pool_status" */ + v_gpu_pool_status: v_gpu_pool_status[] + /** fetch aggregated fields from the table: "v_gpu_pool_status" */ + v_gpu_pool_status_aggregate: v_gpu_pool_status_aggregate + /** fetch data from the table: "v_league_division_standings" */ + v_league_division_standings: v_league_division_standings[] + /** fetch aggregated fields from the table: "v_league_division_standings" */ + v_league_division_standings_aggregate: v_league_division_standings_aggregate + /** fetch data from the table: "v_league_season_player_stats" */ + v_league_season_player_stats: v_league_season_player_stats[] + /** fetch aggregated fields from the table: "v_league_season_player_stats" */ + v_league_season_player_stats_aggregate: v_league_season_player_stats_aggregate + /** fetch data from the table: "v_match_captains" */ + v_match_captains: v_match_captains[] + /** fetch aggregated fields from the table: "v_match_captains" */ + v_match_captains_aggregate: v_match_captains_aggregate + /** fetch data from the table: "v_match_clutches" */ + v_match_clutches: v_match_clutches[] + /** fetch aggregated fields from the table: "v_match_clutches" */ + v_match_clutches_aggregate: v_match_clutches_aggregate + /** fetch data from the table: "v_match_kill_pairs" */ + v_match_kill_pairs: v_match_kill_pairs[] + /** fetch aggregated fields from the table: "v_match_kill_pairs" */ + v_match_kill_pairs_aggregate: v_match_kill_pairs_aggregate + /** fetch data from the table: "v_match_lineup_buy_types" */ + v_match_lineup_buy_types: v_match_lineup_buy_types[] + /** fetch aggregated fields from the table: "v_match_lineup_buy_types" */ + v_match_lineup_buy_types_aggregate: v_match_lineup_buy_types_aggregate + /** fetch data from the table: "v_match_lineup_map_stats" */ + v_match_lineup_map_stats: v_match_lineup_map_stats[] + /** fetch aggregated fields from the table: "v_match_lineup_map_stats" */ + v_match_lineup_map_stats_aggregate: v_match_lineup_map_stats_aggregate + /** fetch data from the table: "v_match_map_backup_rounds" */ + v_match_map_backup_rounds: v_match_map_backup_rounds[] + /** fetch aggregated fields from the table: "v_match_map_backup_rounds" */ + v_match_map_backup_rounds_aggregate: v_match_map_backup_rounds_aggregate + /** fetch data from the table: "v_match_player_buy_types" */ + v_match_player_buy_types: v_match_player_buy_types[] + /** fetch aggregated fields from the table: "v_match_player_buy_types" */ + v_match_player_buy_types_aggregate: v_match_player_buy_types_aggregate + /** fetch data from the table: "v_match_player_opening_duels" */ + v_match_player_opening_duels: v_match_player_opening_duels[] + /** fetch aggregated fields from the table: "v_match_player_opening_duels" */ + v_match_player_opening_duels_aggregate: v_match_player_opening_duels_aggregate + /** fetch data from the table: "v_player_arch_nemesis" */ + v_player_arch_nemesis: v_player_arch_nemesis[] + /** fetch aggregated fields from the table: "v_player_arch_nemesis" */ + v_player_arch_nemesis_aggregate: v_player_arch_nemesis_aggregate + /** fetch data from the table: "v_player_damage" */ + v_player_damage: v_player_damage[] + /** fetch aggregated fields from the table: "v_player_damage" */ + v_player_damage_aggregate: v_player_damage_aggregate + /** fetch data from the table: "v_player_elo" */ + v_player_elo: v_player_elo[] + /** fetch aggregated fields from the table: "v_player_elo" */ + v_player_elo_aggregate: v_player_elo_aggregate + /** fetch data from the table: "v_player_map_losses" */ + v_player_map_losses: v_player_map_losses[] + /** fetch aggregated fields from the table: "v_player_map_losses" */ + v_player_map_losses_aggregate: v_player_map_losses_aggregate + /** fetch data from the table: "v_player_map_wins" */ + v_player_map_wins: v_player_map_wins[] + /** fetch aggregated fields from the table: "v_player_map_wins" */ + v_player_map_wins_aggregate: v_player_map_wins_aggregate + /** fetch data from the table: "v_player_match_head_to_head" */ + v_player_match_head_to_head: v_player_match_head_to_head[] + /** fetch aggregated fields from the table: "v_player_match_head_to_head" */ + v_player_match_head_to_head_aggregate: v_player_match_head_to_head_aggregate + /** fetch data from the table: "v_player_match_map_hltv" */ + v_player_match_map_hltv: v_player_match_map_hltv[] + /** fetch aggregated fields from the table: "v_player_match_map_hltv" */ + v_player_match_map_hltv_aggregate: v_player_match_map_hltv_aggregate + /** fetch data from the table: "v_player_match_map_roles" */ + v_player_match_map_roles: v_player_match_map_roles[] + /** fetch aggregated fields from the table: "v_player_match_map_roles" */ + v_player_match_map_roles_aggregate: v_player_match_map_roles_aggregate + /** fetch data from the table: "v_player_match_performance" */ + v_player_match_performance: v_player_match_performance[] + /** fetch aggregated fields from the table: "v_player_match_performance" */ + v_player_match_performance_aggregate: v_player_match_performance_aggregate + /** fetch data from the table: "v_player_match_rating" */ + v_player_match_rating: v_player_match_rating[] + /** fetch aggregated fields from the table: "v_player_match_rating" */ + v_player_match_rating_aggregate: v_player_match_rating_aggregate + /** fetch data from the table: "v_player_multi_kills" */ + v_player_multi_kills: v_player_multi_kills[] + /** fetch aggregated fields from the table: "v_player_multi_kills" */ + v_player_multi_kills_aggregate: v_player_multi_kills_aggregate + /** fetch data from the table: "v_player_queue_partners" */ + v_player_queue_partners: v_player_queue_partners[] + /** fetch aggregated fields from the table: "v_player_queue_partners" */ + v_player_queue_partners_aggregate: v_player_queue_partners_aggregate + /** fetch data from the table: "v_player_weapon_damage" */ + v_player_weapon_damage: v_player_weapon_damage[] + /** fetch aggregated fields from the table: "v_player_weapon_damage" */ + v_player_weapon_damage_aggregate: v_player_weapon_damage_aggregate + /** fetch data from the table: "v_player_weapon_kills" */ + v_player_weapon_kills: v_player_weapon_kills[] + /** fetch aggregated fields from the table: "v_player_weapon_kills" */ + v_player_weapon_kills_aggregate: v_player_weapon_kills_aggregate + /** fetch data from the table: "v_pool_maps" */ + v_pool_maps: v_pool_maps[] + /** fetch aggregated fields from the table: "v_pool_maps" */ + v_pool_maps_aggregate: v_pool_maps_aggregate + /** fetch data from the table: "v_steam_account_pool_status" */ + v_steam_account_pool_status: v_steam_account_pool_status[] + /** fetch aggregated fields from the table: "v_steam_account_pool_status" */ + v_steam_account_pool_status_aggregate: v_steam_account_pool_status_aggregate + /** fetch data from the table: "v_team_ranks" */ + v_team_ranks: v_team_ranks[] + /** fetch aggregated fields from the table: "v_team_ranks" */ + v_team_ranks_aggregate: v_team_ranks_aggregate + /** fetch data from the table: "v_team_reputation" */ + v_team_reputation: v_team_reputation[] + /** fetch aggregated fields from the table: "v_team_reputation" */ + v_team_reputation_aggregate: v_team_reputation_aggregate + /** fetch data from the table: "v_team_stage_results" */ + v_team_stage_results: v_team_stage_results[] + /** fetch aggregated fields from the table: "v_team_stage_results" */ + v_team_stage_results_aggregate: v_team_stage_results_aggregate + /** fetch data from the table: "v_team_stage_results" using primary key columns */ + v_team_stage_results_by_pk: (v_team_stage_results | null) + /** fetch data from the table: "v_team_tournament_results" */ + v_team_tournament_results: v_team_tournament_results[] + /** fetch aggregated fields from the table: "v_team_tournament_results" */ + v_team_tournament_results_aggregate: v_team_tournament_results_aggregate + /** fetch data from the table: "v_tournament_player_stats" */ + v_tournament_player_stats: v_tournament_player_stats[] + /** fetch aggregated fields from the table: "v_tournament_player_stats" */ + v_tournament_player_stats_aggregate: v_tournament_player_stats_aggregate + /** Web push setup status for the application settings page; never returns the private key */ + webPushStatus: (WebPushStatusOutput | null) + __typename: 'query_root' +} + + +/** columns and relationships of "v_role_permissions" */ +export interface role_permissions { + can_create_events: (Scalars['Boolean'] | null) + can_create_matches: (Scalars['Boolean'] | null) + can_create_tournaments: (Scalars['Boolean'] | null) + role: (Scalars['String'] | null) + __typename: 'role_permissions' +} + + +/** aggregated selection of "v_role_permissions" */ +export interface role_permissions_aggregate { + aggregate: (role_permissions_aggregate_fields | null) + nodes: role_permissions[] + __typename: 'role_permissions_aggregate' +} + + +/** aggregate fields of "v_role_permissions" */ +export interface role_permissions_aggregate_fields { + count: Scalars['Int'] + max: (role_permissions_max_fields | null) + min: (role_permissions_min_fields | null) + __typename: 'role_permissions_aggregate_fields' +} + + +/** aggregate max on columns */ +export interface role_permissions_max_fields { + role: (Scalars['String'] | null) + __typename: 'role_permissions_max_fields' +} + + +/** aggregate min on columns */ +export interface role_permissions_min_fields { + role: (Scalars['String'] | null) + __typename: 'role_permissions_min_fields' +} + + +/** response of any mutation on the table "v_role_permissions" */ +export interface role_permissions_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: role_permissions[] + __typename: 'role_permissions_mutation_response' +} + + +/** select columns of table "v_role_permissions" */ +export type role_permissions_select_column = 'can_create_events' | 'can_create_matches' | 'can_create_tournaments' | 'role' + + +/** columns and relationships of "seasons" */ +export interface seasons { + /** An array relationship */ + awards: award_recipients[] + /** An aggregate relationship */ + awards_aggregate: award_recipients_aggregate + created_at: Scalars['timestamptz'] + description: (Scalars['String'] | null) + ends_at: (Scalars['timestamptz'] | null) + id: Scalars['uuid'] + needs_rebuild: Scalars['Boolean'] + number: Scalars['Int'] + /** An array relationship */ + player_season_stats: player_season_stats[] + /** An aggregate relationship */ + player_season_stats_aggregate: player_season_stats_aggregate + starts_at: Scalars['timestamptz'] + __typename: 'seasons' +} + + +/** aggregated selection of "seasons" */ +export interface seasons_aggregate { + aggregate: (seasons_aggregate_fields | null) + nodes: seasons[] + __typename: 'seasons_aggregate' +} + + +/** aggregate fields of "seasons" */ +export interface seasons_aggregate_fields { + avg: (seasons_avg_fields | null) + count: Scalars['Int'] + max: (seasons_max_fields | null) + min: (seasons_min_fields | null) + stddev: (seasons_stddev_fields | null) + stddev_pop: (seasons_stddev_pop_fields | null) + stddev_samp: (seasons_stddev_samp_fields | null) + sum: (seasons_sum_fields | null) + var_pop: (seasons_var_pop_fields | null) + var_samp: (seasons_var_samp_fields | null) + variance: (seasons_variance_fields | null) + __typename: 'seasons_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface seasons_avg_fields { + number: (Scalars['Float'] | null) + __typename: 'seasons_avg_fields' +} + + +/** unique or primary key constraints on table "seasons" */ +export type seasons_constraint = 'seasons_pkey' + + +/** aggregate max on columns */ +export interface seasons_max_fields { + created_at: (Scalars['timestamptz'] | null) + description: (Scalars['String'] | null) + ends_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + number: (Scalars['Int'] | null) + starts_at: (Scalars['timestamptz'] | null) + __typename: 'seasons_max_fields' +} + + +/** aggregate min on columns */ +export interface seasons_min_fields { + created_at: (Scalars['timestamptz'] | null) + description: (Scalars['String'] | null) + ends_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + number: (Scalars['Int'] | null) + starts_at: (Scalars['timestamptz'] | null) + __typename: 'seasons_min_fields' +} + + +/** response of any mutation on the table "seasons" */ +export interface seasons_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: seasons[] + __typename: 'seasons_mutation_response' +} + + +/** select columns of table "seasons" */ +export type seasons_select_column = 'created_at' | 'description' | 'ends_at' | 'id' | 'needs_rebuild' | 'number' | 'starts_at' + + +/** aggregate stddev on columns */ +export interface seasons_stddev_fields { + number: (Scalars['Float'] | null) + __typename: 'seasons_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface seasons_stddev_pop_fields { + number: (Scalars['Float'] | null) + __typename: 'seasons_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface seasons_stddev_samp_fields { + number: (Scalars['Float'] | null) + __typename: 'seasons_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface seasons_sum_fields { + number: (Scalars['Int'] | null) + __typename: 'seasons_sum_fields' +} + + +/** update columns of table "seasons" */ +export type seasons_update_column = 'created_at' | 'description' | 'ends_at' | 'id' | 'needs_rebuild' | 'number' | 'starts_at' + + +/** aggregate var_pop on columns */ +export interface seasons_var_pop_fields { + number: (Scalars['Float'] | null) + __typename: 'seasons_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface seasons_var_samp_fields { + number: (Scalars['Float'] | null) + __typename: 'seasons_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface seasons_variance_fields { + number: (Scalars['Float'] | null) + __typename: 'seasons_variance_fields' +} + + +/** columns and relationships of "server_regions" */ +export interface server_regions { + /** A computed field, executes function "available_region_server_count" */ + available_server_count: (Scalars['Int'] | null) + description: (Scalars['String'] | null) + /** An array relationship */ + game_server_nodes: game_server_nodes[] + /** An aggregate relationship */ + game_server_nodes_aggregate: game_server_nodes_aggregate + /** A computed field, executes function "region_has_node" */ + has_node: (Scalars['Boolean'] | null) + is_lan: Scalars['Boolean'] + /** A computed field, executes function "region_status" */ + status: (Scalars['String'] | null) + steam_relay: Scalars['Boolean'] + /** A computed field, executes function "total_region_server_count" */ + total_server_count: (Scalars['Int'] | null) + value: Scalars['String'] + __typename: 'server_regions' +} + + +/** aggregated selection of "server_regions" */ +export interface server_regions_aggregate { + aggregate: (server_regions_aggregate_fields | null) + nodes: server_regions[] + __typename: 'server_regions_aggregate' +} + + +/** aggregate fields of "server_regions" */ +export interface server_regions_aggregate_fields { + avg: (server_regions_avg_fields | null) + count: Scalars['Int'] + max: (server_regions_max_fields | null) + min: (server_regions_min_fields | null) + stddev: (server_regions_stddev_fields | null) + stddev_pop: (server_regions_stddev_pop_fields | null) + stddev_samp: (server_regions_stddev_samp_fields | null) + sum: (server_regions_sum_fields | null) + var_pop: (server_regions_var_pop_fields | null) + var_samp: (server_regions_var_samp_fields | null) + variance: (server_regions_variance_fields | null) + __typename: 'server_regions_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface server_regions_avg_fields { + /** A computed field, executes function "available_region_server_count" */ + available_server_count: (Scalars['Int'] | null) + /** A computed field, executes function "total_region_server_count" */ + total_server_count: (Scalars['Int'] | null) + __typename: 'server_regions_avg_fields' +} + + +/** unique or primary key constraints on table "server_regions" */ +export type server_regions_constraint = 'e_server_regions_pkey' + + +/** aggregate max on columns */ +export interface server_regions_max_fields { + /** A computed field, executes function "available_region_server_count" */ + available_server_count: (Scalars['Int'] | null) + description: (Scalars['String'] | null) + /** A computed field, executes function "region_status" */ + status: (Scalars['String'] | null) + /** A computed field, executes function "total_region_server_count" */ + total_server_count: (Scalars['Int'] | null) + value: (Scalars['String'] | null) + __typename: 'server_regions_max_fields' +} + + +/** aggregate min on columns */ +export interface server_regions_min_fields { + /** A computed field, executes function "available_region_server_count" */ + available_server_count: (Scalars['Int'] | null) + description: (Scalars['String'] | null) + /** A computed field, executes function "region_status" */ + status: (Scalars['String'] | null) + /** A computed field, executes function "total_region_server_count" */ + total_server_count: (Scalars['Int'] | null) + value: (Scalars['String'] | null) + __typename: 'server_regions_min_fields' +} + + +/** response of any mutation on the table "server_regions" */ +export interface server_regions_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: server_regions[] + __typename: 'server_regions_mutation_response' +} + + +/** select columns of table "server_regions" */ +export type server_regions_select_column = 'description' | 'is_lan' | 'steam_relay' | 'value' + + +/** aggregate stddev on columns */ +export interface server_regions_stddev_fields { + /** A computed field, executes function "available_region_server_count" */ + available_server_count: (Scalars['Int'] | null) + /** A computed field, executes function "total_region_server_count" */ + total_server_count: (Scalars['Int'] | null) + __typename: 'server_regions_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface server_regions_stddev_pop_fields { + /** A computed field, executes function "available_region_server_count" */ + available_server_count: (Scalars['Int'] | null) + /** A computed field, executes function "total_region_server_count" */ + total_server_count: (Scalars['Int'] | null) + __typename: 'server_regions_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface server_regions_stddev_samp_fields { + /** A computed field, executes function "available_region_server_count" */ + available_server_count: (Scalars['Int'] | null) + /** A computed field, executes function "total_region_server_count" */ + total_server_count: (Scalars['Int'] | null) + __typename: 'server_regions_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface server_regions_sum_fields { + /** A computed field, executes function "available_region_server_count" */ + available_server_count: (Scalars['Int'] | null) + /** A computed field, executes function "total_region_server_count" */ + total_server_count: (Scalars['Int'] | null) + __typename: 'server_regions_sum_fields' +} + + +/** update columns of table "server_regions" */ +export type server_regions_update_column = 'description' | 'is_lan' | 'steam_relay' | 'value' + + +/** aggregate var_pop on columns */ +export interface server_regions_var_pop_fields { + /** A computed field, executes function "available_region_server_count" */ + available_server_count: (Scalars['Int'] | null) + /** A computed field, executes function "total_region_server_count" */ + total_server_count: (Scalars['Int'] | null) + __typename: 'server_regions_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface server_regions_var_samp_fields { + /** A computed field, executes function "available_region_server_count" */ + available_server_count: (Scalars['Int'] | null) + /** A computed field, executes function "total_region_server_count" */ + total_server_count: (Scalars['Int'] | null) + __typename: 'server_regions_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface server_regions_variance_fields { + /** A computed field, executes function "available_region_server_count" */ + available_server_count: (Scalars['Int'] | null) + /** A computed field, executes function "total_region_server_count" */ + total_server_count: (Scalars['Int'] | null) + __typename: 'server_regions_variance_fields' +} + + +/** columns and relationships of "servers" */ +export interface servers { + api_password: Scalars['uuid'] + boot_status: (Scalars['String'] | null) + boot_status_detail: (Scalars['String'] | null) + connect_password: (Scalars['String'] | null) + connected: Scalars['Boolean'] + /** A computed field, executes function "get_server_connection_link" */ + connection_link: (Scalars['String'] | null) + /** A computed field, executes function "get_server_connection_string" */ + connection_string: (Scalars['String'] | null) + /** An object relationship */ + current_match: (matches | null) + 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 */ + matches_aggregate: matches_aggregate + 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'] + rcon_password: Scalars['bytea'] + rcon_status: (Scalars['Boolean'] | null) + region: Scalars['String'] + reserved_by_match_id: (Scalars['uuid'] | null) + /** An object relationship */ + server_region: (server_regions | null) + steam_relay: (Scalars['String'] | null) + tv_port: (Scalars['Int'] | null) + type: e_server_types_enum + updated_at: (Scalars['timestamptz'] | null) + __typename: 'servers' +} + + +/** aggregated selection of "servers" */ +export interface servers_aggregate { + aggregate: (servers_aggregate_fields | null) + nodes: servers[] + __typename: 'servers_aggregate' +} + + +/** aggregate fields of "servers" */ +export interface servers_aggregate_fields { + avg: (servers_avg_fields | null) + count: Scalars['Int'] + max: (servers_max_fields | null) + min: (servers_min_fields | null) + stddev: (servers_stddev_fields | null) + stddev_pop: (servers_stddev_pop_fields | null) + stddev_samp: (servers_stddev_samp_fields | null) + sum: (servers_sum_fields | null) + var_pop: (servers_var_pop_fields | null) + var_samp: (servers_var_samp_fields | null) + variance: (servers_variance_fields | null) + __typename: 'servers_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface servers_avg_fields { + max_players: (Scalars['Float'] | null) + port: (Scalars['Float'] | null) + tv_port: (Scalars['Float'] | null) + __typename: 'servers_avg_fields' +} + + +/** unique or primary key constraints on table "servers" */ +export type servers_constraint = 'servers_pkey' | 'servers_reserved_by_match_id_key' + + +/** aggregate max on columns */ +export interface servers_max_fields { + api_password: (Scalars['uuid'] | null) + boot_status: (Scalars['String'] | null) + boot_status_detail: (Scalars['String'] | null) + connect_password: (Scalars['String'] | null) + /** A computed field, executes function "get_server_connection_link" */ + connection_link: (Scalars['String'] | null) + /** 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) + label: (Scalars['String'] | null) + 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) + steam_relay: (Scalars['String'] | null) + tv_port: (Scalars['Int'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'servers_max_fields' +} + + +/** aggregate min on columns */ +export interface servers_min_fields { + api_password: (Scalars['uuid'] | null) + boot_status: (Scalars['String'] | null) + boot_status_detail: (Scalars['String'] | null) + connect_password: (Scalars['String'] | null) + /** A computed field, executes function "get_server_connection_link" */ + connection_link: (Scalars['String'] | null) + /** 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) + label: (Scalars['String'] | null) + 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) + steam_relay: (Scalars['String'] | null) + tv_port: (Scalars['Int'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'servers_min_fields' +} + + +/** response of any mutation on the table "servers" */ +export interface servers_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: servers[] + __typename: '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_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" */ +export type servers_select_column_servers_aggregate_bool_exp_bool_and_arguments_columns = 'connected' | 'enabled' | 'is_dedicated' | 'rcon_status' + + +/** select "servers_aggregate_bool_exp_bool_or_arguments_columns" columns of table "servers" */ +export type servers_select_column_servers_aggregate_bool_exp_bool_or_arguments_columns = 'connected' | 'enabled' | 'is_dedicated' | 'rcon_status' + + +/** aggregate stddev on columns */ +export interface servers_stddev_fields { + max_players: (Scalars['Float'] | null) + port: (Scalars['Float'] | null) + tv_port: (Scalars['Float'] | null) + __typename: 'servers_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface servers_stddev_pop_fields { + max_players: (Scalars['Float'] | null) + port: (Scalars['Float'] | null) + tv_port: (Scalars['Float'] | null) + __typename: 'servers_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface servers_stddev_samp_fields { + max_players: (Scalars['Float'] | null) + port: (Scalars['Float'] | null) + tv_port: (Scalars['Float'] | null) + __typename: 'servers_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface servers_sum_fields { + max_players: (Scalars['Int'] | null) + port: (Scalars['Int'] | null) + tv_port: (Scalars['Int'] | null) + __typename: '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_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 */ +export interface servers_var_pop_fields { + max_players: (Scalars['Float'] | null) + port: (Scalars['Float'] | null) + tv_port: (Scalars['Float'] | null) + __typename: 'servers_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface servers_var_samp_fields { + max_players: (Scalars['Float'] | null) + port: (Scalars['Float'] | null) + tv_port: (Scalars['Float'] | null) + __typename: 'servers_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface servers_variance_fields { + max_players: (Scalars['Float'] | null) + port: (Scalars['Float'] | null) + tv_port: (Scalars['Float'] | null) + __typename: 'servers_variance_fields' +} + + +/** columns and relationships of "settings" */ +export interface settings { + name: Scalars['String'] + value: (Scalars['String'] | null) + __typename: 'settings' +} + + +/** aggregated selection of "settings" */ +export interface settings_aggregate { + aggregate: (settings_aggregate_fields | null) + nodes: settings[] + __typename: 'settings_aggregate' +} + + +/** aggregate fields of "settings" */ +export interface settings_aggregate_fields { + count: Scalars['Int'] + max: (settings_max_fields | null) + min: (settings_min_fields | null) + __typename: 'settings_aggregate_fields' +} + + +/** unique or primary key constraints on table "settings" */ +export type settings_constraint = 'settings_pkey' + + +/** aggregate max on columns */ +export interface settings_max_fields { + name: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'settings_max_fields' +} + + +/** aggregate min on columns */ +export interface settings_min_fields { + name: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'settings_min_fields' +} + + +/** response of any mutation on the table "settings" */ +export interface settings_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: settings[] + __typename: 'settings_mutation_response' +} + + +/** select columns of table "settings" */ +export type settings_select_column = 'name' | 'value' + + +/** update columns of table "settings" */ +export type settings_update_column = 'name' | 'value' + + +/** columns and relationships of "steam_account_claims" */ +export interface steam_account_claims { + created_at: Scalars['timestamptz'] + id: Scalars['uuid'] + k8s_job_name: Scalars['String'] + /** An object relationship */ + node: (game_server_nodes | null) + node_id: (Scalars['String'] | null) + purpose: Scalars['String'] + /** An object relationship */ + steam_account: steam_accounts + steam_account_id: Scalars['uuid'] + __typename: 'steam_account_claims' +} + + +/** aggregated selection of "steam_account_claims" */ +export interface steam_account_claims_aggregate { + aggregate: (steam_account_claims_aggregate_fields | null) + nodes: steam_account_claims[] + __typename: 'steam_account_claims_aggregate' +} + + +/** aggregate fields of "steam_account_claims" */ +export interface steam_account_claims_aggregate_fields { + count: Scalars['Int'] + max: (steam_account_claims_max_fields | null) + min: (steam_account_claims_min_fields | null) + __typename: 'steam_account_claims_aggregate_fields' +} + + +/** unique or primary key constraints on table "steam_account_claims" */ +export type steam_account_claims_constraint = 'steam_account_claims_k8s_job_name_key' | 'steam_account_claims_pkey' + + +/** aggregate max on columns */ +export interface steam_account_claims_max_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + k8s_job_name: (Scalars['String'] | null) + node_id: (Scalars['String'] | null) + purpose: (Scalars['String'] | null) + steam_account_id: (Scalars['uuid'] | null) + __typename: 'steam_account_claims_max_fields' +} + + +/** aggregate min on columns */ +export interface steam_account_claims_min_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + k8s_job_name: (Scalars['String'] | null) + node_id: (Scalars['String'] | null) + purpose: (Scalars['String'] | null) + steam_account_id: (Scalars['uuid'] | null) + __typename: 'steam_account_claims_min_fields' +} + + +/** response of any mutation on the table "steam_account_claims" */ +export interface steam_account_claims_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: steam_account_claims[] + __typename: 'steam_account_claims_mutation_response' +} + + +/** select columns of table "steam_account_claims" */ +export type steam_account_claims_select_column = 'created_at' | 'id' | 'k8s_job_name' | 'node_id' | 'purpose' | 'steam_account_id' + + +/** update columns of table "steam_account_claims" */ +export type steam_account_claims_update_column = 'created_at' | 'id' | 'k8s_job_name' | 'node_id' | 'purpose' | 'steam_account_id' + + +/** columns and relationships of "steam_accounts" */ +export interface steam_accounts { + /** An array relationship */ + claims: steam_account_claims[] + /** An aggregate relationship */ + claims_aggregate: steam_account_claims_aggregate + created_at: Scalars['timestamptz'] + friend_capacity: Scalars['Int'] + id: Scalars['uuid'] + /** An object relationship */ + last_node: (game_server_nodes | null) + last_node_id: (Scalars['String'] | null) + password: Scalars['String'] + role: Scalars['String'] + steam_level: (Scalars['Int'] | null) + steamid64: (Scalars['bigint'] | null) + updated_at: Scalars['timestamptz'] + username: Scalars['String'] + __typename: 'steam_accounts' +} + + +/** aggregated selection of "steam_accounts" */ +export interface steam_accounts_aggregate { + aggregate: (steam_accounts_aggregate_fields | null) + nodes: steam_accounts[] + __typename: 'steam_accounts_aggregate' +} + + +/** aggregate fields of "steam_accounts" */ +export interface steam_accounts_aggregate_fields { + avg: (steam_accounts_avg_fields | null) + count: Scalars['Int'] + max: (steam_accounts_max_fields | null) + min: (steam_accounts_min_fields | null) + stddev: (steam_accounts_stddev_fields | null) + stddev_pop: (steam_accounts_stddev_pop_fields | null) + stddev_samp: (steam_accounts_stddev_samp_fields | null) + sum: (steam_accounts_sum_fields | null) + var_pop: (steam_accounts_var_pop_fields | null) + var_samp: (steam_accounts_var_samp_fields | null) + variance: (steam_accounts_variance_fields | null) + __typename: 'steam_accounts_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface steam_accounts_avg_fields { + friend_capacity: (Scalars['Float'] | null) + steam_level: (Scalars['Float'] | null) + steamid64: (Scalars['Float'] | null) + __typename: 'steam_accounts_avg_fields' +} + + +/** unique or primary key constraints on table "steam_accounts" */ +export type steam_accounts_constraint = 'steam_accounts_pkey' | 'steam_accounts_username_key' + + +/** aggregate max on columns */ +export interface steam_accounts_max_fields { + created_at: (Scalars['timestamptz'] | null) + friend_capacity: (Scalars['Int'] | null) + id: (Scalars['uuid'] | null) + last_node_id: (Scalars['String'] | null) + password: (Scalars['String'] | null) + role: (Scalars['String'] | null) + steam_level: (Scalars['Int'] | null) + steamid64: (Scalars['bigint'] | null) + updated_at: (Scalars['timestamptz'] | null) + username: (Scalars['String'] | null) + __typename: 'steam_accounts_max_fields' +} + + +/** aggregate min on columns */ +export interface steam_accounts_min_fields { + created_at: (Scalars['timestamptz'] | null) + friend_capacity: (Scalars['Int'] | null) + id: (Scalars['uuid'] | null) + last_node_id: (Scalars['String'] | null) + password: (Scalars['String'] | null) + role: (Scalars['String'] | null) + steam_level: (Scalars['Int'] | null) + steamid64: (Scalars['bigint'] | null) + updated_at: (Scalars['timestamptz'] | null) + username: (Scalars['String'] | null) + __typename: 'steam_accounts_min_fields' +} + + +/** response of any mutation on the table "steam_accounts" */ +export interface steam_accounts_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: steam_accounts[] + __typename: 'steam_accounts_mutation_response' +} + + +/** select columns of table "steam_accounts" */ +export type steam_accounts_select_column = 'created_at' | 'friend_capacity' | 'id' | 'last_node_id' | 'password' | 'role' | 'steam_level' | 'steamid64' | 'updated_at' | 'username' + + +/** aggregate stddev on columns */ +export interface steam_accounts_stddev_fields { + friend_capacity: (Scalars['Float'] | null) + steam_level: (Scalars['Float'] | null) + steamid64: (Scalars['Float'] | null) + __typename: 'steam_accounts_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface steam_accounts_stddev_pop_fields { + friend_capacity: (Scalars['Float'] | null) + steam_level: (Scalars['Float'] | null) + steamid64: (Scalars['Float'] | null) + __typename: 'steam_accounts_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface steam_accounts_stddev_samp_fields { + friend_capacity: (Scalars['Float'] | null) + steam_level: (Scalars['Float'] | null) + steamid64: (Scalars['Float'] | null) + __typename: 'steam_accounts_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface steam_accounts_sum_fields { + friend_capacity: (Scalars['Int'] | null) + steam_level: (Scalars['Int'] | null) + steamid64: (Scalars['bigint'] | null) + __typename: 'steam_accounts_sum_fields' +} + + +/** update columns of table "steam_accounts" */ +export type steam_accounts_update_column = 'created_at' | 'friend_capacity' | 'id' | 'last_node_id' | 'password' | 'role' | 'steam_level' | 'steamid64' | 'updated_at' | 'username' + + +/** aggregate var_pop on columns */ +export interface steam_accounts_var_pop_fields { + friend_capacity: (Scalars['Float'] | null) + steam_level: (Scalars['Float'] | null) + steamid64: (Scalars['Float'] | null) + __typename: 'steam_accounts_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface steam_accounts_var_samp_fields { + friend_capacity: (Scalars['Float'] | null) + steam_level: (Scalars['Float'] | null) + steamid64: (Scalars['Float'] | null) + __typename: 'steam_accounts_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface steam_accounts_variance_fields { + friend_capacity: (Scalars['Float'] | null) + steam_level: (Scalars['Float'] | null) + steamid64: (Scalars['Float'] | null) + __typename: 'steam_accounts_variance_fields' +} + +export interface subscription_root { + /** fetch data from the table: "_map_pool" */ + _map_pool: _map_pool[] + /** fetch aggregated fields from the table: "_map_pool" */ + _map_pool_aggregate: _map_pool_aggregate + /** fetch data from the table: "_map_pool" using primary key columns */ + _map_pool_by_pk: (_map_pool | null) + /** fetch data from the table in a streaming manner: "_map_pool" */ + _map_pool_stream: _map_pool[] + /** An array relationship */ + abandoned_matches: abandoned_matches[] + /** An aggregate relationship */ + abandoned_matches_aggregate: abandoned_matches_aggregate + /** fetch data from the table: "abandoned_matches" using primary key columns */ + abandoned_matches_by_pk: (abandoned_matches | null) + /** fetch data from the table in a streaming manner: "abandoned_matches" */ + abandoned_matches_stream: abandoned_matches[] + /** fetch data from the table: "api_keys" */ + api_keys: api_keys[] + /** fetch aggregated fields from the table: "api_keys" */ + api_keys_aggregate: api_keys_aggregate + /** fetch data from the table: "api_keys" using primary key columns */ + api_keys_by_pk: (api_keys | null) + /** fetch data from the table in a streaming manner: "api_keys" */ + api_keys_stream: api_keys[] + /** fetch data from the table: "award_recipients" */ + award_recipients: award_recipients[] + /** fetch aggregated fields from the table: "award_recipients" */ + award_recipients_aggregate: award_recipients_aggregate + /** fetch data from the table: "award_recipients" using primary key columns */ + award_recipients_by_pk: (award_recipients | null) + /** fetch data from the table in a streaming manner: "award_recipients" */ + award_recipients_stream: award_recipients[] + /** fetch data from the table: "awards" */ + awards: awards[] + /** fetch aggregated fields from the table: "awards" */ + awards_aggregate: awards_aggregate + /** fetch data from the table: "awards" using primary key columns */ + awards_by_pk: (awards | null) + /** fetch data from the table in a streaming manner: "awards" */ + awards_stream: awards[] + /** fetch data from the table: "chat_read_state" */ + chat_read_state: chat_read_state[] + /** fetch aggregated fields from the table: "chat_read_state" */ + chat_read_state_aggregate: chat_read_state_aggregate + /** fetch data from the table: "chat_read_state" using primary key columns */ + chat_read_state_by_pk: (chat_read_state | null) + /** fetch data from the table in a streaming manner: "chat_read_state" */ + chat_read_state_stream: chat_read_state[] + /** An array relationship */ + clip_render_jobs: clip_render_jobs[] + /** An aggregate relationship */ + clip_render_jobs_aggregate: clip_render_jobs_aggregate + /** fetch data from the table: "clip_render_jobs" using primary key columns */ + clip_render_jobs_by_pk: (clip_render_jobs | null) + /** fetch data from the table in a streaming manner: "clip_render_jobs" */ + clip_render_jobs_stream: clip_render_jobs[] + /** fetch data from the table: "custom_pages" */ + custom_pages: custom_pages[] + /** fetch aggregated fields from the table: "custom_pages" */ + custom_pages_aggregate: custom_pages_aggregate + /** fetch data from the table: "custom_pages" using primary key columns */ + custom_pages_by_pk: (custom_pages | null) + /** fetch data from the table in a streaming manner: "custom_pages" */ + custom_pages_stream: custom_pages[] + /** fetch data from the table: "db_backups" */ + db_backups: db_backups[] + /** fetch aggregated fields from the table: "db_backups" */ + db_backups_aggregate: db_backups_aggregate + /** fetch data from the table: "db_backups" using primary key columns */ + db_backups_by_pk: (db_backups | null) + /** fetch data from the table in a streaming manner: "db_backups" */ + db_backups_stream: db_backups[] + /** fetch data from the table: "direct_conversations" */ + direct_conversations: direct_conversations[] + /** fetch aggregated fields from the table: "direct_conversations" */ + direct_conversations_aggregate: direct_conversations_aggregate + /** fetch data from the table: "direct_conversations" using primary key columns */ + direct_conversations_by_pk: (direct_conversations | null) + /** fetch data from the table in a streaming manner: "direct_conversations" */ + direct_conversations_stream: direct_conversations[] + /** fetch data from the table: "direct_messages" */ + direct_messages: direct_messages[] + /** fetch aggregated fields from the table: "direct_messages" */ + direct_messages_aggregate: direct_messages_aggregate + /** fetch data from the table: "direct_messages" using primary key columns */ + direct_messages_by_pk: (direct_messages | null) + /** fetch data from the table in a streaming manner: "direct_messages" */ + direct_messages_stream: direct_messages[] + /** fetch data from the table: "draft_game_picks" */ + draft_game_picks: draft_game_picks[] + /** fetch aggregated fields from the table: "draft_game_picks" */ + draft_game_picks_aggregate: draft_game_picks_aggregate + /** fetch data from the table: "draft_game_picks" using primary key columns */ + draft_game_picks_by_pk: (draft_game_picks | null) + /** fetch data from the table in a streaming manner: "draft_game_picks" */ + draft_game_picks_stream: draft_game_picks[] + /** An array relationship */ + draft_game_players: draft_game_players[] + /** An aggregate relationship */ + draft_game_players_aggregate: draft_game_players_aggregate + /** fetch data from the table: "draft_game_players" using primary key columns */ + draft_game_players_by_pk: (draft_game_players | null) + /** fetch data from the table in a streaming manner: "draft_game_players" */ + draft_game_players_stream: draft_game_players[] + /** An array relationship */ + draft_games: draft_games[] + /** An aggregate relationship */ + draft_games_aggregate: draft_games_aggregate + /** fetch data from the table: "draft_games" using primary key columns */ + draft_games_by_pk: (draft_games | null) + /** fetch data from the table in a streaming manner: "draft_games" */ + draft_games_stream: draft_games[] + /** fetch data from the table: "e_award_sources" */ + e_award_sources: e_award_sources[] + /** fetch aggregated fields from the table: "e_award_sources" */ + e_award_sources_aggregate: e_award_sources_aggregate + /** fetch data from the table: "e_award_sources" using primary key columns */ + e_award_sources_by_pk: (e_award_sources | null) + /** fetch data from the table in a streaming manner: "e_award_sources" */ + e_award_sources_stream: e_award_sources[] + /** fetch data from the table: "e_award_tiers" */ + e_award_tiers: e_award_tiers[] + /** fetch aggregated fields from the table: "e_award_tiers" */ + e_award_tiers_aggregate: e_award_tiers_aggregate + /** fetch data from the table: "e_award_tiers" using primary key columns */ + e_award_tiers_by_pk: (e_award_tiers | null) + /** fetch data from the table in a streaming manner: "e_award_tiers" */ + e_award_tiers_stream: e_award_tiers[] + /** fetch data from the table: "e_check_in_settings" */ + e_check_in_settings: e_check_in_settings[] + /** fetch aggregated fields from the table: "e_check_in_settings" */ + e_check_in_settings_aggregate: e_check_in_settings_aggregate + /** fetch data from the table: "e_check_in_settings" using primary key columns */ + e_check_in_settings_by_pk: (e_check_in_settings | null) + /** fetch data from the table in a streaming manner: "e_check_in_settings" */ + e_check_in_settings_stream: e_check_in_settings[] + /** fetch data from the table: "e_draft_game_captain_selection" */ + e_draft_game_captain_selection: e_draft_game_captain_selection[] + /** fetch aggregated fields from the table: "e_draft_game_captain_selection" */ + e_draft_game_captain_selection_aggregate: e_draft_game_captain_selection_aggregate + /** fetch data from the table: "e_draft_game_captain_selection" using primary key columns */ + e_draft_game_captain_selection_by_pk: (e_draft_game_captain_selection | null) + /** fetch data from the table in a streaming manner: "e_draft_game_captain_selection" */ + e_draft_game_captain_selection_stream: e_draft_game_captain_selection[] + /** fetch data from the table: "e_draft_game_draft_order" */ + e_draft_game_draft_order: e_draft_game_draft_order[] + /** fetch aggregated fields from the table: "e_draft_game_draft_order" */ + e_draft_game_draft_order_aggregate: e_draft_game_draft_order_aggregate + /** fetch data from the table: "e_draft_game_draft_order" using primary key columns */ + e_draft_game_draft_order_by_pk: (e_draft_game_draft_order | null) + /** fetch data from the table in a streaming manner: "e_draft_game_draft_order" */ + e_draft_game_draft_order_stream: e_draft_game_draft_order[] + /** fetch data from the table: "e_draft_game_mode" */ + e_draft_game_mode: e_draft_game_mode[] + /** fetch aggregated fields from the table: "e_draft_game_mode" */ + e_draft_game_mode_aggregate: e_draft_game_mode_aggregate + /** fetch data from the table: "e_draft_game_mode" using primary key columns */ + e_draft_game_mode_by_pk: (e_draft_game_mode | null) + /** fetch data from the table in a streaming manner: "e_draft_game_mode" */ + e_draft_game_mode_stream: e_draft_game_mode[] + /** fetch data from the table: "e_draft_game_player_status" */ + e_draft_game_player_status: e_draft_game_player_status[] + /** fetch aggregated fields from the table: "e_draft_game_player_status" */ + e_draft_game_player_status_aggregate: e_draft_game_player_status_aggregate + /** fetch data from the table: "e_draft_game_player_status" using primary key columns */ + e_draft_game_player_status_by_pk: (e_draft_game_player_status | null) + /** fetch data from the table in a streaming manner: "e_draft_game_player_status" */ + e_draft_game_player_status_stream: e_draft_game_player_status[] + /** fetch data from the table: "e_draft_game_status" */ + e_draft_game_status: e_draft_game_status[] + /** fetch aggregated fields from the table: "e_draft_game_status" */ + e_draft_game_status_aggregate: e_draft_game_status_aggregate + /** fetch data from the table: "e_draft_game_status" using primary key columns */ + e_draft_game_status_by_pk: (e_draft_game_status | null) + /** fetch data from the table in a streaming manner: "e_draft_game_status" */ + e_draft_game_status_stream: e_draft_game_status[] + /** fetch data from the table: "e_event_media_access" */ + e_event_media_access: e_event_media_access[] + /** fetch aggregated fields from the table: "e_event_media_access" */ + e_event_media_access_aggregate: e_event_media_access_aggregate + /** fetch data from the table: "e_event_media_access" using primary key columns */ + e_event_media_access_by_pk: (e_event_media_access | null) + /** fetch data from the table in a streaming manner: "e_event_media_access" */ + e_event_media_access_stream: e_event_media_access[] + /** fetch data from the table: "e_event_visibility" */ + e_event_visibility: e_event_visibility[] + /** fetch aggregated fields from the table: "e_event_visibility" */ + e_event_visibility_aggregate: e_event_visibility_aggregate + /** fetch data from the table: "e_event_visibility" using primary key columns */ + e_event_visibility_by_pk: (e_event_visibility | null) + /** fetch data from the table in a streaming manner: "e_event_visibility" */ + e_event_visibility_stream: e_event_visibility[] + /** fetch data from the table: "e_friend_status" */ + e_friend_status: e_friend_status[] + /** fetch aggregated fields from the table: "e_friend_status" */ + e_friend_status_aggregate: e_friend_status_aggregate + /** fetch data from the table: "e_friend_status" using primary key columns */ + e_friend_status_by_pk: (e_friend_status | null) + /** fetch data from the table in a streaming manner: "e_friend_status" */ + e_friend_status_stream: e_friend_status[] + /** fetch data from the table: "e_game_cfg_types" */ + e_game_cfg_types: e_game_cfg_types[] + /** fetch aggregated fields from the table: "e_game_cfg_types" */ + 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 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" */ + e_game_server_node_statuses_aggregate: e_game_server_node_statuses_aggregate + /** fetch data from the table: "e_game_server_node_statuses" using primary key columns */ + e_game_server_node_statuses_by_pk: (e_game_server_node_statuses | null) + /** fetch data from the table in a streaming manner: "e_game_server_node_statuses" */ + e_game_server_node_statuses_stream: e_game_server_node_statuses[] + /** fetch data from the table: "e_league_movement_types" */ + e_league_movement_types: e_league_movement_types[] + /** fetch aggregated fields from the table: "e_league_movement_types" */ + e_league_movement_types_aggregate: e_league_movement_types_aggregate + /** fetch data from the table: "e_league_movement_types" using primary key columns */ + e_league_movement_types_by_pk: (e_league_movement_types | null) + /** fetch data from the table in a streaming manner: "e_league_movement_types" */ + e_league_movement_types_stream: e_league_movement_types[] + /** fetch data from the table: "e_league_proposal_statuses" */ + e_league_proposal_statuses: e_league_proposal_statuses[] + /** fetch aggregated fields from the table: "e_league_proposal_statuses" */ + e_league_proposal_statuses_aggregate: e_league_proposal_statuses_aggregate + /** fetch data from the table: "e_league_proposal_statuses" using primary key columns */ + e_league_proposal_statuses_by_pk: (e_league_proposal_statuses | null) + /** fetch data from the table in a streaming manner: "e_league_proposal_statuses" */ + e_league_proposal_statuses_stream: e_league_proposal_statuses[] + /** fetch data from the table: "e_league_registration_statuses" */ + e_league_registration_statuses: e_league_registration_statuses[] + /** fetch aggregated fields from the table: "e_league_registration_statuses" */ + e_league_registration_statuses_aggregate: e_league_registration_statuses_aggregate + /** fetch data from the table: "e_league_registration_statuses" using primary key columns */ + e_league_registration_statuses_by_pk: (e_league_registration_statuses | null) + /** fetch data from the table in a streaming manner: "e_league_registration_statuses" */ + e_league_registration_statuses_stream: e_league_registration_statuses[] + /** fetch data from the table: "e_league_season_statuses" */ + e_league_season_statuses: e_league_season_statuses[] + /** fetch aggregated fields from the table: "e_league_season_statuses" */ + e_league_season_statuses_aggregate: e_league_season_statuses_aggregate + /** fetch data from the table: "e_league_season_statuses" using primary key columns */ + e_league_season_statuses_by_pk: (e_league_season_statuses | null) + /** fetch data from the table in a streaming manner: "e_league_season_statuses" */ + e_league_season_statuses_stream: e_league_season_statuses[] + /** fetch data from the table: "e_lobby_access" */ + e_lobby_access: e_lobby_access[] + /** fetch aggregated fields from the table: "e_lobby_access" */ + e_lobby_access_aggregate: e_lobby_access_aggregate + /** fetch data from the table: "e_lobby_access" using primary key columns */ + e_lobby_access_by_pk: (e_lobby_access | null) + /** fetch data from the table in a streaming manner: "e_lobby_access" */ + e_lobby_access_stream: e_lobby_access[] + /** fetch data from the table: "e_lobby_player_status" */ + e_lobby_player_status: e_lobby_player_status[] + /** fetch aggregated fields from the table: "e_lobby_player_status" */ + e_lobby_player_status_aggregate: e_lobby_player_status_aggregate + /** fetch data from the table: "e_lobby_player_status" using primary key columns */ + e_lobby_player_status_by_pk: (e_lobby_player_status | null) + /** fetch data from the table in a streaming manner: "e_lobby_player_status" */ + e_lobby_player_status_stream: e_lobby_player_status[] + /** fetch data from the table: "e_map_pool_types" */ + e_map_pool_types: e_map_pool_types[] + /** fetch aggregated fields from the table: "e_map_pool_types" */ + e_map_pool_types_aggregate: e_map_pool_types_aggregate + /** fetch data from the table: "e_map_pool_types" using primary key columns */ + e_map_pool_types_by_pk: (e_map_pool_types | null) + /** fetch data from the table in a streaming manner: "e_map_pool_types" */ + e_map_pool_types_stream: e_map_pool_types[] + /** fetch data from the table: "e_match_clip_visibility" */ + e_match_clip_visibility: e_match_clip_visibility[] + /** fetch aggregated fields from the table: "e_match_clip_visibility" */ + e_match_clip_visibility_aggregate: e_match_clip_visibility_aggregate + /** fetch data from the table: "e_match_clip_visibility" using primary key columns */ + e_match_clip_visibility_by_pk: (e_match_clip_visibility | null) + /** fetch data from the table in a streaming manner: "e_match_clip_visibility" */ + e_match_clip_visibility_stream: e_match_clip_visibility[] + /** fetch data from the table: "e_match_map_status" */ + e_match_map_status: e_match_map_status[] + /** fetch aggregated fields from the table: "e_match_map_status" */ + e_match_map_status_aggregate: e_match_map_status_aggregate + /** fetch data from the table: "e_match_map_status" using primary key columns */ + e_match_map_status_by_pk: (e_match_map_status | null) + /** fetch data from the table in a streaming manner: "e_match_map_status" */ + e_match_map_status_stream: e_match_map_status[] + /** fetch data from the table: "e_match_mode" */ + e_match_mode: e_match_mode[] + /** fetch aggregated fields from the table: "e_match_mode" */ + e_match_mode_aggregate: e_match_mode_aggregate + /** fetch data from the table: "e_match_mode" using primary key columns */ + e_match_mode_by_pk: (e_match_mode | null) + /** fetch data from the table in a streaming manner: "e_match_mode" */ + e_match_mode_stream: e_match_mode[] + /** fetch data from the table: "e_match_party_sources" */ + e_match_party_sources: e_match_party_sources[] + /** fetch aggregated fields from the table: "e_match_party_sources" */ + e_match_party_sources_aggregate: e_match_party_sources_aggregate + /** fetch data from the table: "e_match_party_sources" using primary key columns */ + e_match_party_sources_by_pk: (e_match_party_sources | null) + /** fetch data from the table in a streaming manner: "e_match_party_sources" */ + e_match_party_sources_stream: e_match_party_sources[] + /** fetch data from the table: "e_match_status" */ + e_match_status: e_match_status[] + /** fetch aggregated fields from the table: "e_match_status" */ + e_match_status_aggregate: e_match_status_aggregate + /** fetch data from the table: "e_match_status" using primary key columns */ + e_match_status_by_pk: (e_match_status | null) + /** fetch data from the table in a streaming manner: "e_match_status" */ + e_match_status_stream: e_match_status[] + /** fetch data from the table: "e_match_types" */ + e_match_types: e_match_types[] + /** fetch aggregated fields from the table: "e_match_types" */ + e_match_types_aggregate: e_match_types_aggregate + /** fetch data from the table: "e_match_types" using primary key columns */ + e_match_types_by_pk: (e_match_types | null) + /** fetch data from the table in a streaming manner: "e_match_types" */ + e_match_types_stream: e_match_types[] + /** fetch data from the table: "e_notification_types" */ + e_notification_types: e_notification_types[] + /** fetch aggregated fields from the table: "e_notification_types" */ + e_notification_types_aggregate: e_notification_types_aggregate + /** fetch data from the table: "e_notification_types" using primary key columns */ + e_notification_types_by_pk: (e_notification_types | null) + /** fetch data from the table in a streaming manner: "e_notification_types" */ + e_notification_types_stream: e_notification_types[] + /** fetch data from the table: "e_objective_types" */ + e_objective_types: e_objective_types[] + /** fetch aggregated fields from the table: "e_objective_types" */ + e_objective_types_aggregate: e_objective_types_aggregate + /** fetch data from the table: "e_objective_types" using primary key columns */ + e_objective_types_by_pk: (e_objective_types | null) + /** fetch data from the table in a streaming manner: "e_objective_types" */ + e_objective_types_stream: e_objective_types[] + /** fetch data from the table: "e_player_roles" */ + e_player_roles: e_player_roles[] + /** fetch aggregated fields from the table: "e_player_roles" */ + e_player_roles_aggregate: e_player_roles_aggregate + /** fetch data from the table: "e_player_roles" using primary key columns */ + e_player_roles_by_pk: (e_player_roles | null) + /** fetch data from the table in a streaming manner: "e_player_roles" */ + e_player_roles_stream: e_player_roles[] + /** fetch data from the table: "e_plugin_runtimes" */ + e_plugin_runtimes: e_plugin_runtimes[] + /** fetch aggregated fields from the table: "e_plugin_runtimes" */ + e_plugin_runtimes_aggregate: e_plugin_runtimes_aggregate + /** fetch data from the table: "e_plugin_runtimes" using primary key columns */ + e_plugin_runtimes_by_pk: (e_plugin_runtimes | null) + /** fetch data from the table in a streaming manner: "e_plugin_runtimes" */ + e_plugin_runtimes_stream: e_plugin_runtimes[] + /** fetch data from the table: "e_ready_settings" */ + e_ready_settings: e_ready_settings[] + /** fetch aggregated fields from the table: "e_ready_settings" */ + e_ready_settings_aggregate: e_ready_settings_aggregate + /** fetch data from the table: "e_ready_settings" using primary key columns */ + e_ready_settings_by_pk: (e_ready_settings | null) + /** fetch data from the table in a streaming manner: "e_ready_settings" */ + e_ready_settings_stream: e_ready_settings[] + /** fetch data from the table: "e_sanction_scopes" */ + e_sanction_scopes: e_sanction_scopes[] + /** fetch aggregated fields from the table: "e_sanction_scopes" */ + e_sanction_scopes_aggregate: e_sanction_scopes_aggregate + /** fetch data from the table: "e_sanction_scopes" using primary key columns */ + e_sanction_scopes_by_pk: (e_sanction_scopes | null) + /** fetch data from the table in a streaming manner: "e_sanction_scopes" */ + e_sanction_scopes_stream: e_sanction_scopes[] + /** fetch data from the table: "e_sanction_sources" */ + e_sanction_sources: e_sanction_sources[] + /** fetch aggregated fields from the table: "e_sanction_sources" */ + e_sanction_sources_aggregate: e_sanction_sources_aggregate + /** fetch data from the table: "e_sanction_sources" using primary key columns */ + e_sanction_sources_by_pk: (e_sanction_sources | null) + /** fetch data from the table in a streaming manner: "e_sanction_sources" */ + e_sanction_sources_stream: e_sanction_sources[] + /** fetch data from the table: "e_sanction_types" */ + e_sanction_types: e_sanction_types[] + /** fetch aggregated fields from the table: "e_sanction_types" */ + e_sanction_types_aggregate: e_sanction_types_aggregate + /** fetch data from the table: "e_sanction_types" using primary key columns */ + e_sanction_types_by_pk: (e_sanction_types | null) + /** fetch data from the table in a streaming manner: "e_sanction_types" */ + e_sanction_types_stream: e_sanction_types[] + /** fetch data from the table: "e_scrim_request_statuses" */ + e_scrim_request_statuses: e_scrim_request_statuses[] + /** fetch aggregated fields from the table: "e_scrim_request_statuses" */ + e_scrim_request_statuses_aggregate: e_scrim_request_statuses_aggregate + /** fetch data from the table: "e_scrim_request_statuses" using primary key columns */ + e_scrim_request_statuses_by_pk: (e_scrim_request_statuses | null) + /** fetch data from the table in a streaming manner: "e_scrim_request_statuses" */ + e_scrim_request_statuses_stream: e_scrim_request_statuses[] + /** fetch data from the table: "e_server_types" */ + e_server_types: e_server_types[] + /** fetch aggregated fields from the table: "e_server_types" */ + e_server_types_aggregate: e_server_types_aggregate + /** fetch data from the table: "e_server_types" using primary key columns */ + e_server_types_by_pk: (e_server_types | null) + /** fetch data from the table in a streaming manner: "e_server_types" */ + e_server_types_stream: e_server_types[] + /** fetch data from the table: "e_sides" */ + e_sides: e_sides[] + /** fetch aggregated fields from the table: "e_sides" */ + e_sides_aggregate: e_sides_aggregate + /** fetch data from the table: "e_sides" using primary key columns */ + e_sides_by_pk: (e_sides | null) + /** fetch data from the table in a streaming manner: "e_sides" */ + e_sides_stream: e_sides[] + /** fetch data from the table: "e_system_alert_types" */ + e_system_alert_types: e_system_alert_types[] + /** fetch aggregated fields from the table: "e_system_alert_types" */ + e_system_alert_types_aggregate: e_system_alert_types_aggregate + /** fetch data from the table: "e_system_alert_types" using primary key columns */ + e_system_alert_types_by_pk: (e_system_alert_types | null) + /** fetch data from the table in a streaming manner: "e_system_alert_types" */ + e_system_alert_types_stream: e_system_alert_types[] + /** fetch data from the table: "e_team_roles" */ + e_team_roles: e_team_roles[] + /** fetch aggregated fields from the table: "e_team_roles" */ + e_team_roles_aggregate: e_team_roles_aggregate + /** fetch data from the table: "e_team_roles" using primary key columns */ + e_team_roles_by_pk: (e_team_roles | null) + /** fetch data from the table in a streaming manner: "e_team_roles" */ + e_team_roles_stream: e_team_roles[] + /** fetch data from the table: "e_team_roster_statuses" */ + e_team_roster_statuses: e_team_roster_statuses[] + /** fetch aggregated fields from the table: "e_team_roster_statuses" */ + e_team_roster_statuses_aggregate: e_team_roster_statuses_aggregate + /** fetch data from the table: "e_team_roster_statuses" using primary key columns */ + e_team_roster_statuses_by_pk: (e_team_roster_statuses | null) + /** fetch data from the table in a streaming manner: "e_team_roster_statuses" */ + e_team_roster_statuses_stream: e_team_roster_statuses[] + /** fetch data from the table: "e_timeout_settings" */ + e_timeout_settings: e_timeout_settings[] + /** fetch aggregated fields from the table: "e_timeout_settings" */ + e_timeout_settings_aggregate: e_timeout_settings_aggregate + /** fetch data from the table: "e_timeout_settings" using primary key columns */ + e_timeout_settings_by_pk: (e_timeout_settings | null) + /** fetch data from the table in a streaming manner: "e_timeout_settings" */ + e_timeout_settings_stream: e_timeout_settings[] + /** fetch data from the table: "e_tournament_categories" */ + e_tournament_categories: e_tournament_categories[] + /** fetch aggregated fields from the table: "e_tournament_categories" */ + e_tournament_categories_aggregate: e_tournament_categories_aggregate + /** fetch data from the table: "e_tournament_categories" using primary key columns */ + e_tournament_categories_by_pk: (e_tournament_categories | null) + /** fetch data from the table in a streaming manner: "e_tournament_categories" */ + e_tournament_categories_stream: e_tournament_categories[] + /** fetch data from the table: "e_tournament_free_agent_statuses" */ + e_tournament_free_agent_statuses: e_tournament_free_agent_statuses[] + /** fetch aggregated fields from the table: "e_tournament_free_agent_statuses" */ + e_tournament_free_agent_statuses_aggregate: e_tournament_free_agent_statuses_aggregate + /** fetch data from the table: "e_tournament_free_agent_statuses" using primary key columns */ + e_tournament_free_agent_statuses_by_pk: (e_tournament_free_agent_statuses | null) + /** fetch data from the table in a streaming manner: "e_tournament_free_agent_statuses" */ + e_tournament_free_agent_statuses_stream: e_tournament_free_agent_statuses[] + /** fetch data from the table: "e_tournament_registration_types" */ + e_tournament_registration_types: e_tournament_registration_types[] + /** fetch aggregated fields from the table: "e_tournament_registration_types" */ + e_tournament_registration_types_aggregate: e_tournament_registration_types_aggregate + /** fetch data from the table: "e_tournament_registration_types" using primary key columns */ + e_tournament_registration_types_by_pk: (e_tournament_registration_types | null) + /** fetch data from the table in a streaming manner: "e_tournament_registration_types" */ + e_tournament_registration_types_stream: e_tournament_registration_types[] + /** fetch data from the table: "e_tournament_stage_types" */ + e_tournament_stage_types: e_tournament_stage_types[] + /** fetch aggregated fields from the table: "e_tournament_stage_types" */ + e_tournament_stage_types_aggregate: e_tournament_stage_types_aggregate + /** fetch data from the table: "e_tournament_stage_types" using primary key columns */ + e_tournament_stage_types_by_pk: (e_tournament_stage_types | null) + /** fetch data from the table in a streaming manner: "e_tournament_stage_types" */ + e_tournament_stage_types_stream: e_tournament_stage_types[] + /** fetch data from the table: "e_tournament_status" */ + e_tournament_status: e_tournament_status[] + /** fetch aggregated fields from the table: "e_tournament_status" */ + e_tournament_status_aggregate: e_tournament_status_aggregate + /** fetch data from the table: "e_tournament_status" using primary key columns */ + e_tournament_status_by_pk: (e_tournament_status | null) + /** fetch data from the table in a streaming manner: "e_tournament_status" */ + e_tournament_status_stream: e_tournament_status[] + /** fetch data from the table: "e_utility_practice_access" */ + e_utility_practice_access: e_utility_practice_access[] + /** fetch aggregated fields from the table: "e_utility_practice_access" */ + e_utility_practice_access_aggregate: e_utility_practice_access_aggregate + /** fetch data from the table: "e_utility_practice_access" using primary key columns */ + e_utility_practice_access_by_pk: (e_utility_practice_access | null) + /** fetch data from the table in a streaming manner: "e_utility_practice_access" */ + e_utility_practice_access_stream: e_utility_practice_access[] + /** fetch data from the table: "e_utility_practice_statuses" */ + e_utility_practice_statuses: e_utility_practice_statuses[] + /** fetch aggregated fields from the table: "e_utility_practice_statuses" */ + e_utility_practice_statuses_aggregate: e_utility_practice_statuses_aggregate + /** fetch data from the table: "e_utility_practice_statuses" using primary key columns */ + e_utility_practice_statuses_by_pk: (e_utility_practice_statuses | null) + /** fetch data from the table in a streaming manner: "e_utility_practice_statuses" */ + e_utility_practice_statuses_stream: e_utility_practice_statuses[] + /** fetch data from the table: "e_utility_sources" */ + e_utility_sources: e_utility_sources[] + /** fetch aggregated fields from the table: "e_utility_sources" */ + e_utility_sources_aggregate: e_utility_sources_aggregate + /** fetch data from the table: "e_utility_sources" using primary key columns */ + e_utility_sources_by_pk: (e_utility_sources | null) + /** fetch data from the table in a streaming manner: "e_utility_sources" */ + e_utility_sources_stream: e_utility_sources[] + /** fetch data from the table: "e_utility_techniques" */ + e_utility_techniques: e_utility_techniques[] + /** fetch aggregated fields from the table: "e_utility_techniques" */ + e_utility_techniques_aggregate: e_utility_techniques_aggregate + /** fetch data from the table: "e_utility_techniques" using primary key columns */ + e_utility_techniques_by_pk: (e_utility_techniques | null) + /** fetch data from the table in a streaming manner: "e_utility_techniques" */ + e_utility_techniques_stream: e_utility_techniques[] + /** fetch data from the table: "e_utility_throw_strengths" */ + e_utility_throw_strengths: e_utility_throw_strengths[] + /** fetch aggregated fields from the table: "e_utility_throw_strengths" */ + e_utility_throw_strengths_aggregate: e_utility_throw_strengths_aggregate + /** fetch data from the table: "e_utility_throw_strengths" using primary key columns */ + e_utility_throw_strengths_by_pk: (e_utility_throw_strengths | null) + /** fetch data from the table in a streaming manner: "e_utility_throw_strengths" */ + e_utility_throw_strengths_stream: e_utility_throw_strengths[] + /** fetch data from the table: "e_utility_types" */ + e_utility_types: e_utility_types[] + /** fetch aggregated fields from the table: "e_utility_types" */ + e_utility_types_aggregate: e_utility_types_aggregate + /** fetch data from the table: "e_utility_types" using primary key columns */ + e_utility_types_by_pk: (e_utility_types | null) + /** fetch data from the table in a streaming manner: "e_utility_types" */ + e_utility_types_stream: e_utility_types[] + /** fetch data from the table: "e_utility_visibility" */ + e_utility_visibility: e_utility_visibility[] + /** fetch aggregated fields from the table: "e_utility_visibility" */ + e_utility_visibility_aggregate: e_utility_visibility_aggregate + /** fetch data from the table: "e_utility_visibility" using primary key columns */ + e_utility_visibility_by_pk: (e_utility_visibility | null) + /** fetch data from the table in a streaming manner: "e_utility_visibility" */ + e_utility_visibility_stream: e_utility_visibility[] + /** fetch data from the table: "e_veto_pick_types" */ + e_veto_pick_types: e_veto_pick_types[] + /** fetch aggregated fields from the table: "e_veto_pick_types" */ + e_veto_pick_types_aggregate: e_veto_pick_types_aggregate + /** fetch data from the table: "e_veto_pick_types" using primary key columns */ + e_veto_pick_types_by_pk: (e_veto_pick_types | null) + /** fetch data from the table in a streaming manner: "e_veto_pick_types" */ + e_veto_pick_types_stream: e_veto_pick_types[] + /** fetch data from the table: "e_winning_reasons" */ + e_winning_reasons: e_winning_reasons[] + /** fetch aggregated fields from the table: "e_winning_reasons" */ + e_winning_reasons_aggregate: e_winning_reasons_aggregate + /** fetch data from the table: "e_winning_reasons" using primary key columns */ + e_winning_reasons_by_pk: (e_winning_reasons | null) + /** fetch data from the table in a streaming manner: "e_winning_reasons" */ + e_winning_reasons_stream: e_winning_reasons[] + /** fetch data from the table: "event_match_links" */ + event_match_links: event_match_links[] + /** fetch aggregated fields from the table: "event_match_links" */ + event_match_links_aggregate: event_match_links_aggregate + /** fetch data from the table: "event_match_links" using primary key columns */ + event_match_links_by_pk: (event_match_links | null) + /** fetch data from the table in a streaming manner: "event_match_links" */ + event_match_links_stream: event_match_links[] + /** fetch data from the table: "event_media" */ + event_media: event_media[] + /** fetch aggregated fields from the table: "event_media" */ + event_media_aggregate: event_media_aggregate + /** fetch data from the table: "event_media" using primary key columns */ + event_media_by_pk: (event_media | null) + /** fetch data from the table: "event_media_players" */ + event_media_players: event_media_players[] + /** fetch aggregated fields from the table: "event_media_players" */ + event_media_players_aggregate: event_media_players_aggregate + /** fetch data from the table: "event_media_players" using primary key columns */ + event_media_players_by_pk: (event_media_players | null) + /** fetch data from the table in a streaming manner: "event_media_players" */ + event_media_players_stream: event_media_players[] + /** fetch data from the table in a streaming manner: "event_media" */ + event_media_stream: event_media[] + /** fetch data from the table: "event_organizers" */ + event_organizers: event_organizers[] + /** fetch aggregated fields from the table: "event_organizers" */ + event_organizers_aggregate: event_organizers_aggregate + /** fetch data from the table: "event_organizers" using primary key columns */ + event_organizers_by_pk: (event_organizers | null) + /** fetch data from the table in a streaming manner: "event_organizers" */ + event_organizers_stream: event_organizers[] + /** fetch data from the table: "event_players" */ + event_players: event_players[] + /** fetch aggregated fields from the table: "event_players" */ + event_players_aggregate: event_players_aggregate + /** fetch data from the table: "event_players" using primary key columns */ + event_players_by_pk: (event_players | null) + /** fetch data from the table in a streaming manner: "event_players" */ + event_players_stream: event_players[] + /** fetch data from the table: "event_teams" */ + event_teams: event_teams[] + /** fetch aggregated fields from the table: "event_teams" */ + event_teams_aggregate: event_teams_aggregate + /** fetch data from the table: "event_teams" using primary key columns */ + event_teams_by_pk: (event_teams | null) + /** fetch data from the table in a streaming manner: "event_teams" */ + event_teams_stream: event_teams[] + /** fetch data from the table: "event_tournaments" */ + event_tournaments: event_tournaments[] + /** fetch aggregated fields from the table: "event_tournaments" */ + event_tournaments_aggregate: event_tournaments_aggregate + /** fetch data from the table: "event_tournaments" using primary key columns */ + event_tournaments_by_pk: (event_tournaments | null) + /** fetch data from the table in a streaming manner: "event_tournaments" */ + event_tournaments_stream: event_tournaments[] + /** fetch data from the table: "events" */ + events: events[] + /** fetch aggregated fields from the table: "events" */ + events_aggregate: events_aggregate + /** fetch data from the table: "events" using primary key columns */ + events_by_pk: (events | null) + /** fetch data from the table in a streaming manner: "events" */ + events_stream: events[] + /** fetch data from the table: "friends" */ + friends: friends[] + /** fetch aggregated fields from the table: "friends" */ + friends_aggregate: friends_aggregate + /** fetch data from the table: "friends" using primary key columns */ + 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 */ + game_server_nodes_aggregate: game_server_nodes_aggregate + /** fetch data from the table: "game_server_nodes" using primary key columns */ + game_server_nodes_by_pk: (game_server_nodes | null) + /** fetch data from the table in a streaming manner: "game_server_nodes" */ + game_server_nodes_stream: game_server_nodes[] + /** fetch data from the table: "game_versions" */ + game_versions: game_versions[] + /** fetch aggregated fields from the table: "game_versions" */ + game_versions_aggregate: game_versions_aggregate + /** fetch data from the table: "game_versions" using primary key columns */ + game_versions_by_pk: (game_versions | null) + /** fetch data from the table in a streaming manner: "game_versions" */ + game_versions_stream: game_versions[] + /** fetch data from the table: "gamedata_signature_validations" */ + gamedata_signature_validations: gamedata_signature_validations[] + /** fetch aggregated fields from the table: "gamedata_signature_validations" */ + gamedata_signature_validations_aggregate: gamedata_signature_validations_aggregate + /** fetch data from the table: "gamedata_signature_validations" using primary key columns */ + gamedata_signature_validations_by_pk: (gamedata_signature_validations | null) + /** fetch data from the table in a streaming manner: "gamedata_signature_validations" */ + gamedata_signature_validations_stream: gamedata_signature_validations[] + /** execute function "get_event_leaderboard" which returns "leaderboard_entries" */ + get_event_leaderboard: leaderboard_entries[] + /** execute function "get_event_leaderboard" and query aggregates on result of table type "leaderboard_entries" */ + get_event_leaderboard_aggregate: leaderboard_entries_aggregate + /** execute function "get_leaderboard" which returns "leaderboard_entries" */ + get_leaderboard: leaderboard_entries[] + /** execute function "get_leaderboard" and query aggregates on result of table type "leaderboard_entries" */ + get_leaderboard_aggregate: leaderboard_entries_aggregate + /** execute function "get_league_season_leaderboard" which returns "leaderboard_entries" */ + get_league_season_leaderboard: leaderboard_entries[] + /** execute function "get_league_season_leaderboard" and query aggregates on result of table type "leaderboard_entries" */ + get_league_season_leaderboard_aggregate: leaderboard_entries_aggregate + /** execute function "get_player_leaderboard_rank" which returns "player_leaderboard_rank" */ + get_player_leaderboard_rank: player_leaderboard_rank[] + /** execute function "get_player_leaderboard_rank" and query aggregates on result of table type "player_leaderboard_rank" */ + get_player_leaderboard_rank_aggregate: player_leaderboard_rank_aggregate + /** execute function "get_tournament_leaderboard" which returns "tournament_leaderboard_entries" */ + get_tournament_leaderboard: tournament_leaderboard_entries[] + /** execute function "get_tournament_leaderboard" and query aggregates on result of table type "tournament_leaderboard_entries" */ + get_tournament_leaderboard_aggregate: tournament_leaderboard_entries_aggregate + /** fetch data from the table: "leaderboard_entries" */ + leaderboard_entries: leaderboard_entries[] + /** fetch aggregated fields from the table: "leaderboard_entries" */ + leaderboard_entries_aggregate: leaderboard_entries_aggregate + /** fetch data from the table in a streaming manner: "leaderboard_entries" */ + leaderboard_entries_stream: leaderboard_entries[] + /** fetch data from the table: "league_divisions" */ + league_divisions: league_divisions[] + /** fetch aggregated fields from the table: "league_divisions" */ + league_divisions_aggregate: league_divisions_aggregate + /** fetch data from the table: "league_divisions" using primary key columns */ + league_divisions_by_pk: (league_divisions | null) + /** fetch data from the table in a streaming manner: "league_divisions" */ + league_divisions_stream: league_divisions[] + /** fetch data from the table: "league_match_weeks" */ + league_match_weeks: league_match_weeks[] + /** fetch aggregated fields from the table: "league_match_weeks" */ + league_match_weeks_aggregate: league_match_weeks_aggregate + /** fetch data from the table: "league_match_weeks" using primary key columns */ + league_match_weeks_by_pk: (league_match_weeks | null) + /** fetch data from the table in a streaming manner: "league_match_weeks" */ + league_match_weeks_stream: league_match_weeks[] + /** fetch data from the table: "league_relegation_playoffs" */ + league_relegation_playoffs: league_relegation_playoffs[] + /** fetch aggregated fields from the table: "league_relegation_playoffs" */ + league_relegation_playoffs_aggregate: league_relegation_playoffs_aggregate + /** fetch data from the table: "league_relegation_playoffs" using primary key columns */ + league_relegation_playoffs_by_pk: (league_relegation_playoffs | null) + /** fetch data from the table in a streaming manner: "league_relegation_playoffs" */ + league_relegation_playoffs_stream: league_relegation_playoffs[] + /** fetch data from the table: "league_scheduling_proposals" */ + league_scheduling_proposals: league_scheduling_proposals[] + /** fetch aggregated fields from the table: "league_scheduling_proposals" */ + league_scheduling_proposals_aggregate: league_scheduling_proposals_aggregate + /** fetch data from the table: "league_scheduling_proposals" using primary key columns */ + league_scheduling_proposals_by_pk: (league_scheduling_proposals | null) + /** fetch data from the table in a streaming manner: "league_scheduling_proposals" */ + league_scheduling_proposals_stream: league_scheduling_proposals[] + /** fetch data from the table: "league_season_divisions" */ + league_season_divisions: league_season_divisions[] + /** fetch aggregated fields from the table: "league_season_divisions" */ + league_season_divisions_aggregate: league_season_divisions_aggregate + /** fetch data from the table: "league_season_divisions" using primary key columns */ + league_season_divisions_by_pk: (league_season_divisions | null) + /** fetch data from the table in a streaming manner: "league_season_divisions" */ + league_season_divisions_stream: league_season_divisions[] + /** fetch data from the table: "league_seasons" */ + league_seasons: league_seasons[] + /** fetch aggregated fields from the table: "league_seasons" */ + league_seasons_aggregate: league_seasons_aggregate + /** fetch data from the table: "league_seasons" using primary key columns */ + league_seasons_by_pk: (league_seasons | null) + /** fetch data from the table in a streaming manner: "league_seasons" */ + league_seasons_stream: league_seasons[] + /** fetch data from the table: "league_team_movements" */ + league_team_movements: league_team_movements[] + /** fetch aggregated fields from the table: "league_team_movements" */ + league_team_movements_aggregate: league_team_movements_aggregate + /** fetch data from the table: "league_team_movements" using primary key columns */ + league_team_movements_by_pk: (league_team_movements | null) + /** fetch data from the table in a streaming manner: "league_team_movements" */ + league_team_movements_stream: league_team_movements[] + /** fetch data from the table: "league_team_rosters" */ + league_team_rosters: league_team_rosters[] + /** fetch aggregated fields from the table: "league_team_rosters" */ + league_team_rosters_aggregate: league_team_rosters_aggregate + /** fetch data from the table: "league_team_rosters" using primary key columns */ + league_team_rosters_by_pk: (league_team_rosters | null) + /** fetch data from the table in a streaming manner: "league_team_rosters" */ + league_team_rosters_stream: league_team_rosters[] + /** fetch data from the table: "league_team_seasons" */ + league_team_seasons: league_team_seasons[] + /** fetch aggregated fields from the table: "league_team_seasons" */ + league_team_seasons_aggregate: league_team_seasons_aggregate + /** fetch data from the table: "league_team_seasons" using primary key columns */ + league_team_seasons_by_pk: (league_team_seasons | null) + /** fetch data from the table in a streaming manner: "league_team_seasons" */ + league_team_seasons_stream: league_team_seasons[] + /** fetch data from the table: "league_teams" */ + league_teams: league_teams[] + /** fetch aggregated fields from the table: "league_teams" */ + league_teams_aggregate: league_teams_aggregate + /** fetch data from the table: "league_teams" using primary key columns */ + league_teams_by_pk: (league_teams | null) + /** fetch data from the table in a streaming manner: "league_teams" */ + league_teams_stream: league_teams[] + /** fetch data from the table: "lobbies" */ + lobbies: lobbies[] + /** fetch aggregated fields from the table: "lobbies" */ + lobbies_aggregate: lobbies_aggregate + /** fetch data from the table: "lobbies" using primary key columns */ + lobbies_by_pk: (lobbies | null) + /** fetch data from the table in a streaming manner: "lobbies" */ + lobbies_stream: lobbies[] + /** An array relationship */ + lobby_players: lobby_players[] + /** An aggregate relationship */ + lobby_players_aggregate: lobby_players_aggregate + /** fetch data from the table: "lobby_players" using primary key columns */ + lobby_players_by_pk: (lobby_players | null) + /** fetch data from the table in a streaming manner: "lobby_players" */ + lobby_players_stream: lobby_players[] + /** fetch data from the table: "map_callouts" */ + map_callouts: map_callouts[] + /** fetch aggregated fields from the table: "map_callouts" */ + map_callouts_aggregate: map_callouts_aggregate + /** fetch data from the table: "map_callouts" using primary key columns */ + map_callouts_by_pk: (map_callouts | null) + /** fetch data from the table in a streaming manner: "map_callouts" */ + map_callouts_stream: map_callouts[] + /** fetch data from the table: "map_pools" */ + map_pools: map_pools[] + /** fetch aggregated fields from the table: "map_pools" */ + map_pools_aggregate: map_pools_aggregate + /** fetch data from the table: "map_pools" using primary key columns */ + map_pools_by_pk: (map_pools | null) + /** fetch data from the table in a streaming manner: "map_pools" */ + map_pools_stream: map_pools[] + /** An array relationship */ + maps: maps[] + /** An aggregate relationship */ + maps_aggregate: maps_aggregate + /** fetch data from the table: "maps" using primary key columns */ + maps_by_pk: (maps | null) + /** fetch data from the table in a streaming manner: "maps" */ + maps_stream: maps[] + /** An array relationship */ + match_clips: match_clips[] + /** An aggregate relationship */ + match_clips_aggregate: match_clips_aggregate + /** fetch data from the table: "match_clips" using primary key columns */ + match_clips_by_pk: (match_clips | null) + /** fetch data from the table in a streaming manner: "match_clips" */ + match_clips_stream: match_clips[] + /** fetch data from the table: "match_demo_sessions" */ + match_demo_sessions: match_demo_sessions[] + /** fetch aggregated fields from the table: "match_demo_sessions" */ + match_demo_sessions_aggregate: match_demo_sessions_aggregate + /** fetch data from the table: "match_demo_sessions" using primary key columns */ + match_demo_sessions_by_pk: (match_demo_sessions | null) + /** fetch data from the table in a streaming manner: "match_demo_sessions" */ + match_demo_sessions_stream: match_demo_sessions[] + /** An array relationship */ + match_lineup_players: match_lineup_players[] + /** An aggregate relationship */ + match_lineup_players_aggregate: match_lineup_players_aggregate + /** fetch data from the table: "match_lineup_players" using primary key columns */ + match_lineup_players_by_pk: (match_lineup_players | null) + /** fetch data from the table in a streaming manner: "match_lineup_players" */ + match_lineup_players_stream: match_lineup_players[] + /** An array relationship */ + match_lineups: match_lineups[] + /** An aggregate relationship */ + match_lineups_aggregate: match_lineups_aggregate + /** fetch data from the table: "match_lineups" using primary key columns */ + match_lineups_by_pk: (match_lineups | null) + /** fetch data from the table in a streaming manner: "match_lineups" */ + match_lineups_stream: match_lineups[] + /** fetch data from the table: "match_map_demos" */ + match_map_demos: match_map_demos[] + /** fetch aggregated fields from the table: "match_map_demos" */ + match_map_demos_aggregate: match_map_demos_aggregate + /** fetch data from the table: "match_map_demos" using primary key columns */ + match_map_demos_by_pk: (match_map_demos | null) + /** fetch data from the table in a streaming manner: "match_map_demos" */ + match_map_demos_stream: match_map_demos[] + /** fetch data from the table: "match_map_rounds" */ + match_map_rounds: match_map_rounds[] + /** fetch aggregated fields from the table: "match_map_rounds" */ + match_map_rounds_aggregate: match_map_rounds_aggregate + /** fetch data from the table: "match_map_rounds" using primary key columns */ + match_map_rounds_by_pk: (match_map_rounds | null) + /** fetch data from the table in a streaming manner: "match_map_rounds" */ + match_map_rounds_stream: match_map_rounds[] + /** fetch data from the table: "match_map_veto_picks" */ + match_map_veto_picks: match_map_veto_picks[] + /** fetch aggregated fields from the table: "match_map_veto_picks" */ + match_map_veto_picks_aggregate: match_map_veto_picks_aggregate + /** fetch data from the table: "match_map_veto_picks" using primary key columns */ + match_map_veto_picks_by_pk: (match_map_veto_picks | null) + /** fetch data from the table in a streaming manner: "match_map_veto_picks" */ + match_map_veto_picks_stream: match_map_veto_picks[] + /** An array relationship */ + match_maps: match_maps[] + /** An aggregate relationship */ + 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 in a streaming manner: "match_maps" */ + match_maps_stream: match_maps[] + /** An array relationship */ + match_options: 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) + /** fetch data from the table in a streaming manner: "match_options" */ + match_options_stream: match_options[] + /** fetch data from the table: "match_region_veto_picks" */ + match_region_veto_picks: match_region_veto_picks[] + /** fetch aggregated fields from the table: "match_region_veto_picks" */ + match_region_veto_picks_aggregate: match_region_veto_picks_aggregate + /** fetch data from the table: "match_region_veto_picks" using primary key columns */ + match_region_veto_picks_by_pk: (match_region_veto_picks | null) + /** fetch data from the table in a streaming manner: "match_region_veto_picks" */ + match_region_veto_picks_stream: match_region_veto_picks[] + /** fetch data from the table: "match_streams" */ + match_streams: match_streams[] + /** fetch aggregated fields from the table: "match_streams" */ + match_streams_aggregate: match_streams_aggregate + /** fetch data from the table: "match_streams" using primary key columns */ + match_streams_by_pk: (match_streams | null) + /** fetch data from the table in a streaming manner: "match_streams" */ + match_streams_stream: match_streams[] + /** fetch data from the table: "match_type_cfgs" */ + match_type_cfgs: match_type_cfgs[] + /** fetch aggregated fields from the table: "match_type_cfgs" */ + match_type_cfgs_aggregate: match_type_cfgs_aggregate + /** fetch data from the table: "match_type_cfgs" using primary key columns */ + match_type_cfgs_by_pk: (match_type_cfgs | null) + /** fetch data from the table in a streaming manner: "match_type_cfgs" */ + match_type_cfgs_stream: match_type_cfgs[] + /** An array relationship */ + matches: matches[] + /** An aggregate relationship */ + matches_aggregate: matches_aggregate + /** fetch data from the table: "matches" using primary key columns */ + matches_by_pk: (matches | null) + /** fetch data from the table in a streaming manner: "matches" */ + matches_stream: matches[] + /** fetch data from the table: "migration_hashes.hashes" */ + migration_hashes_hashes: migration_hashes_hashes[] + /** fetch aggregated fields from the table: "migration_hashes.hashes" */ + migration_hashes_hashes_aggregate: migration_hashes_hashes_aggregate + /** fetch data from the table: "migration_hashes.hashes" using primary key columns */ + migration_hashes_hashes_by_pk: (migration_hashes_hashes | null) + /** fetch data from the table in a streaming manner: "migration_hashes.hashes" */ + migration_hashes_hashes_stream: migration_hashes_hashes[] + /** fetch data from the table: "v_my_friends" */ + my_friends: my_friends[] + /** fetch aggregated fields from the table: "v_my_friends" */ + my_friends_aggregate: my_friends_aggregate + /** fetch data from the table in a streaming manner: "v_my_friends" */ + my_friends_stream: my_friends[] + /** fetch data from the table: "news_articles" */ + news_articles: news_articles[] + /** fetch aggregated fields from the table: "news_articles" */ + news_articles_aggregate: news_articles_aggregate + /** fetch data from the table: "news_articles" using primary key columns */ + news_articles_by_pk: (news_articles | null) + /** fetch data from the table in a streaming manner: "news_articles" */ + news_articles_stream: news_articles[] + /** fetch data from the table: "notification_preferences" */ + notification_preferences: notification_preferences[] + /** fetch aggregated fields from the table: "notification_preferences" */ + notification_preferences_aggregate: notification_preferences_aggregate + /** fetch data from the table: "notification_preferences" using primary key columns */ + notification_preferences_by_pk: (notification_preferences | null) + /** fetch data from the table in a streaming manner: "notification_preferences" */ + notification_preferences_stream: notification_preferences[] + /** An array relationship */ + notifications: notifications[] + /** An aggregate relationship */ + notifications_aggregate: notifications_aggregate + /** fetch data from the table: "notifications" using primary key columns */ + notifications_by_pk: (notifications | null) + /** fetch data from the table in a streaming manner: "notifications" */ + notifications_stream: notifications[] + /** fetch data from the table: "pending_match_import_players" */ + pending_match_import_players: pending_match_import_players[] + /** fetch aggregated fields from the table: "pending_match_import_players" */ + pending_match_import_players_aggregate: pending_match_import_players_aggregate + /** fetch data from the table: "pending_match_import_players" using primary key columns */ + pending_match_import_players_by_pk: (pending_match_import_players | null) + /** fetch data from the table in a streaming manner: "pending_match_import_players" */ + pending_match_import_players_stream: pending_match_import_players[] + /** fetch data from the table: "pending_match_imports" */ + pending_match_imports: pending_match_imports[] + /** fetch aggregated fields from the table: "pending_match_imports" */ + pending_match_imports_aggregate: pending_match_imports_aggregate + /** fetch data from the table: "pending_match_imports" using primary key columns */ + pending_match_imports_by_pk: (pending_match_imports | null) + /** fetch data from the table in a streaming manner: "pending_match_imports" */ + pending_match_imports_stream: pending_match_imports[] + /** fetch data from the table: "player_aim_stats_demo" */ + player_aim_stats_demo: player_aim_stats_demo[] + /** fetch aggregated fields from the table: "player_aim_stats_demo" */ + player_aim_stats_demo_aggregate: player_aim_stats_demo_aggregate + /** fetch data from the table: "player_aim_stats_demo" using primary key columns */ + player_aim_stats_demo_by_pk: (player_aim_stats_demo | null) + /** fetch data from the table in a streaming manner: "player_aim_stats_demo" */ + player_aim_stats_demo_stream: player_aim_stats_demo[] + /** fetch data from the table: "player_aim_weapon_stats" */ + player_aim_weapon_stats: player_aim_weapon_stats[] + /** fetch aggregated fields from the table: "player_aim_weapon_stats" */ + player_aim_weapon_stats_aggregate: player_aim_weapon_stats_aggregate + /** fetch data from the table: "player_aim_weapon_stats" using primary key columns */ + player_aim_weapon_stats_by_pk: (player_aim_weapon_stats | null) + /** fetch data from the table in a streaming manner: "player_aim_weapon_stats" */ + player_aim_weapon_stats_stream: player_aim_weapon_stats[] + /** An array relationship */ + player_assists: player_assists[] + /** An aggregate relationship */ + player_assists_aggregate: player_assists_aggregate + /** fetch data from the table: "player_assists" using primary key columns */ + player_assists_by_pk: (player_assists | null) + /** fetch data from the table in a streaming manner: "player_assists" */ + player_assists_stream: player_assists[] + /** fetch data from the table: "player_career_stats_v" */ + player_career_stats_v: player_career_stats_v[] + /** fetch aggregated fields from the table: "player_career_stats_v" */ + player_career_stats_v_aggregate: player_career_stats_v_aggregate + /** fetch data from the table in a streaming manner: "player_career_stats_v" */ + player_career_stats_v_stream: player_career_stats_v[] + /** An array relationship */ + player_damages: player_damages[] + /** An aggregate relationship */ + player_damages_aggregate: player_damages_aggregate + /** fetch data from the table: "player_damages" using primary key columns */ + player_damages_by_pk: (player_damages | null) + /** fetch data from the table in a streaming manner: "player_damages" */ + player_damages_stream: player_damages[] + /** fetch data from the table: "player_elo" */ + player_elo: player_elo[] + /** fetch aggregated fields from the table: "player_elo" */ + player_elo_aggregate: player_elo_aggregate + /** fetch data from the table: "player_elo" using primary key columns */ + player_elo_by_pk: (player_elo | null) + /** fetch data from the table in a streaming manner: "player_elo" */ + player_elo_stream: player_elo[] + /** fetch data from the table: "player_faceit_rank_history" */ + player_faceit_rank_history: player_faceit_rank_history[] + /** fetch aggregated fields from the table: "player_faceit_rank_history" */ + player_faceit_rank_history_aggregate: player_faceit_rank_history_aggregate + /** fetch data from the table: "player_faceit_rank_history" using primary key columns */ + player_faceit_rank_history_by_pk: (player_faceit_rank_history | null) + /** fetch data from the table in a streaming manner: "player_faceit_rank_history" */ + player_faceit_rank_history_stream: player_faceit_rank_history[] + /** An array relationship */ + player_flashes: player_flashes[] + /** An aggregate relationship */ + player_flashes_aggregate: player_flashes_aggregate + /** fetch data from the table: "player_flashes" using primary key columns */ + player_flashes_by_pk: (player_flashes | null) + /** fetch data from the table in a streaming manner: "player_flashes" */ + player_flashes_stream: player_flashes[] + /** An array relationship */ + player_kills: player_kills[] + /** An aggregate relationship */ + player_kills_aggregate: player_kills_aggregate + /** fetch data from the table: "player_kills" using primary key columns */ + player_kills_by_pk: (player_kills | null) + /** fetch data from the table: "player_kills_by_weapon" */ + player_kills_by_weapon: player_kills_by_weapon[] + /** fetch aggregated fields from the table: "player_kills_by_weapon" */ + player_kills_by_weapon_aggregate: player_kills_by_weapon_aggregate + /** fetch data from the table: "player_kills_by_weapon" using primary key columns */ + player_kills_by_weapon_by_pk: (player_kills_by_weapon | null) + /** fetch data from the table in a streaming manner: "player_kills_by_weapon" */ + player_kills_by_weapon_stream: player_kills_by_weapon[] + /** fetch data from the table in a streaming manner: "player_kills" */ + player_kills_stream: player_kills[] + /** fetch data from the table: "player_leaderboard_rank" */ + player_leaderboard_rank: player_leaderboard_rank[] + /** fetch aggregated fields from the table: "player_leaderboard_rank" */ + player_leaderboard_rank_aggregate: player_leaderboard_rank_aggregate + /** fetch data from the table in a streaming manner: "player_leaderboard_rank" */ + player_leaderboard_rank_stream: player_leaderboard_rank[] + /** fetch data from the table: "player_match_map_stats" */ + player_match_map_stats: player_match_map_stats[] + /** fetch aggregated fields from the table: "player_match_map_stats" */ + player_match_map_stats_aggregate: player_match_map_stats_aggregate + /** fetch data from the table: "player_match_map_stats" using primary key columns */ + player_match_map_stats_by_pk: (player_match_map_stats | null) + /** fetch data from the table in a streaming manner: "player_match_map_stats" */ + player_match_map_stats_stream: player_match_map_stats[] + /** fetch data from the table: "player_match_performance_v" */ + player_match_performance_v: player_match_performance_v[] + /** fetch aggregated fields from the table: "player_match_performance_v" */ + player_match_performance_v_aggregate: player_match_performance_v_aggregate + /** fetch data from the table in a streaming manner: "player_match_performance_v" */ + player_match_performance_v_stream: player_match_performance_v[] + /** fetch data from the table: "player_match_stats_v" */ + player_match_stats_v: player_match_stats_v[] + /** fetch aggregated fields from the table: "player_match_stats_v" */ + player_match_stats_v_aggregate: player_match_stats_v_aggregate + /** fetch data from the table in a streaming manner: "player_match_stats_v" */ + player_match_stats_v_stream: player_match_stats_v[] + /** An array relationship */ + player_objectives: player_objectives[] + /** An aggregate relationship */ + player_objectives_aggregate: player_objectives_aggregate + /** fetch data from the table: "player_objectives" using primary key columns */ + player_objectives_by_pk: (player_objectives | null) + /** fetch data from the table in a streaming manner: "player_objectives" */ + player_objectives_stream: player_objectives[] + /** fetch data from the table: "player_performance_v" */ + player_performance_v: player_performance_v[] + /** fetch aggregated fields from the table: "player_performance_v" */ + player_performance_v_aggregate: player_performance_v_aggregate + /** fetch data from the table in a streaming manner: "player_performance_v" */ + player_performance_v_stream: player_performance_v[] + /** fetch data from the table: "player_premier_rank_history" */ + player_premier_rank_history: player_premier_rank_history[] + /** fetch aggregated fields from the table: "player_premier_rank_history" */ + player_premier_rank_history_aggregate: player_premier_rank_history_aggregate + /** fetch data from the table: "player_premier_rank_history" using primary key columns */ + player_premier_rank_history_by_pk: (player_premier_rank_history | null) + /** fetch data from the table in a streaming manner: "player_premier_rank_history" */ + player_premier_rank_history_stream: player_premier_rank_history[] + /** fetch data from the table: "player_sanctions" */ + player_sanctions: player_sanctions[] + /** fetch aggregated fields from the table: "player_sanctions" */ + player_sanctions_aggregate: player_sanctions_aggregate + /** fetch data from the table: "player_sanctions" using primary key columns */ + player_sanctions_by_pk: (player_sanctions | null) + /** fetch data from the table in a streaming manner: "player_sanctions" */ + player_sanctions_stream: player_sanctions[] + /** An array relationship */ + player_season_stats: player_season_stats[] + /** An aggregate relationship */ + player_season_stats_aggregate: player_season_stats_aggregate + /** fetch data from the table: "player_season_stats" using primary key columns */ + player_season_stats_by_pk: (player_season_stats | null) + /** fetch data from the table in a streaming manner: "player_season_stats" */ + player_season_stats_stream: player_season_stats[] + /** fetch data from the table: "player_stats" */ + player_stats: player_stats[] + /** fetch aggregated fields from the table: "player_stats" */ + player_stats_aggregate: player_stats_aggregate + /** fetch data from the table: "player_stats" using primary key columns */ + player_stats_by_pk: (player_stats | null) + /** fetch data from the table in a streaming manner: "player_stats" */ + player_stats_stream: player_stats[] + /** fetch data from the table: "player_steam_bot_friend" */ + player_steam_bot_friend: player_steam_bot_friend[] + /** fetch aggregated fields from the table: "player_steam_bot_friend" */ + player_steam_bot_friend_aggregate: player_steam_bot_friend_aggregate + /** fetch data from the table: "player_steam_bot_friend" using primary key columns */ + player_steam_bot_friend_by_pk: (player_steam_bot_friend | null) + /** fetch data from the table in a streaming manner: "player_steam_bot_friend" */ + player_steam_bot_friend_stream: player_steam_bot_friend[] + /** fetch data from the table: "player_steam_match_auth" */ + player_steam_match_auth: player_steam_match_auth[] + /** fetch aggregated fields from the table: "player_steam_match_auth" */ + player_steam_match_auth_aggregate: player_steam_match_auth_aggregate + /** fetch data from the table: "player_steam_match_auth" using primary key columns */ + player_steam_match_auth_by_pk: (player_steam_match_auth | null) + /** fetch data from the table in a streaming manner: "player_steam_match_auth" */ + player_steam_match_auth_stream: player_steam_match_auth[] + /** fetch data from the table: "player_unused_utility" */ + player_unused_utility: player_unused_utility[] + /** fetch aggregated fields from the table: "player_unused_utility" */ + player_unused_utility_aggregate: player_unused_utility_aggregate + /** fetch data from the table: "player_unused_utility" using primary key columns */ + player_unused_utility_by_pk: (player_unused_utility | null) + /** fetch data from the table in a streaming manner: "player_unused_utility" */ + player_unused_utility_stream: player_unused_utility[] + /** An array relationship */ + player_utility: player_utility[] + /** An aggregate relationship */ + player_utility_aggregate: player_utility_aggregate + /** fetch data from the table: "player_utility" using primary key columns */ + player_utility_by_pk: (player_utility | null) + /** fetch data from the table in a streaming manner: "player_utility" */ + player_utility_stream: player_utility[] + /** fetch data from the table: "player_weapon_stats_v" */ + player_weapon_stats_v: player_weapon_stats_v[] + /** fetch aggregated fields from the table: "player_weapon_stats_v" */ + player_weapon_stats_v_aggregate: player_weapon_stats_v_aggregate + /** fetch data from the table in a streaming manner: "player_weapon_stats_v" */ + player_weapon_stats_v_stream: player_weapon_stats_v[] + /** fetch data from the table: "players" */ + players: players[] + /** fetch aggregated fields from the table: "players" */ + players_aggregate: players_aggregate + /** fetch data from the table: "players" using primary key columns */ + players_by_pk: (players | null) + /** fetch data from the table in a streaming manner: "players" */ + players_stream: players[] + /** fetch data from the table: "plugin_versions" */ + plugin_versions: plugin_versions[] + /** fetch aggregated fields from the table: "plugin_versions" */ + plugin_versions_aggregate: plugin_versions_aggregate + /** fetch data from the table: "plugin_versions" using primary key columns */ + plugin_versions_by_pk: (plugin_versions | null) + /** fetch data from the table in a streaming manner: "plugin_versions" */ + plugin_versions_stream: plugin_versions[] + /** fetch data from the table: "push_subscriptions" */ + push_subscriptions: push_subscriptions[] + /** fetch aggregated fields from the table: "push_subscriptions" */ + push_subscriptions_aggregate: push_subscriptions_aggregate + /** fetch data from the table: "push_subscriptions" using primary key columns */ + push_subscriptions_by_pk: (push_subscriptions | null) + /** fetch data from the table in a streaming manner: "push_subscriptions" */ + push_subscriptions_stream: push_subscriptions[] + /** fetch data from the table: "v_role_permissions" */ + role_permissions: role_permissions[] + /** fetch aggregated fields from the table: "v_role_permissions" */ + role_permissions_aggregate: role_permissions_aggregate + /** fetch data from the table in a streaming manner: "v_role_permissions" */ + role_permissions_stream: role_permissions[] + /** fetch data from the table: "seasons" */ + seasons: seasons[] + /** fetch aggregated fields from the table: "seasons" */ + seasons_aggregate: seasons_aggregate + /** fetch data from the table: "seasons" using primary key columns */ + seasons_by_pk: (seasons | null) + /** fetch data from the table in a streaming manner: "seasons" */ + seasons_stream: seasons[] + /** fetch data from the table: "server_regions" */ + server_regions: server_regions[] + /** fetch aggregated fields from the table: "server_regions" */ + server_regions_aggregate: server_regions_aggregate + /** fetch data from the table: "server_regions" using primary key columns */ + server_regions_by_pk: (server_regions | null) + /** fetch data from the table in a streaming manner: "server_regions" */ + server_regions_stream: server_regions[] + /** An array relationship */ + servers: servers[] + /** An aggregate relationship */ + servers_aggregate: servers_aggregate + /** fetch data from the table: "servers" using primary key columns */ + servers_by_pk: (servers | null) + /** fetch data from the table in a streaming manner: "servers" */ + servers_stream: servers[] + /** fetch data from the table: "settings" */ + settings: settings[] + /** fetch aggregated fields from the table: "settings" */ + settings_aggregate: settings_aggregate + /** fetch data from the table: "settings" using primary key columns */ + settings_by_pk: (settings | null) + /** fetch data from the table in a streaming manner: "settings" */ + settings_stream: settings[] + /** fetch data from the table: "steam_account_claims" */ + steam_account_claims: steam_account_claims[] + /** fetch aggregated fields from the table: "steam_account_claims" */ + steam_account_claims_aggregate: steam_account_claims_aggregate + /** fetch data from the table: "steam_account_claims" using primary key columns */ + steam_account_claims_by_pk: (steam_account_claims | null) + /** fetch data from the table in a streaming manner: "steam_account_claims" */ + steam_account_claims_stream: steam_account_claims[] + /** fetch data from the table: "steam_accounts" */ + steam_accounts: steam_accounts[] + /** fetch aggregated fields from the table: "steam_accounts" */ + steam_accounts_aggregate: steam_accounts_aggregate + /** fetch data from the table: "steam_accounts" using primary key columns */ + steam_accounts_by_pk: (steam_accounts | null) + /** fetch data from the table in a streaming manner: "steam_accounts" */ + steam_accounts_stream: steam_accounts[] + /** fetch data from the table: "system_alerts" */ + system_alerts: system_alerts[] + /** fetch aggregated fields from the table: "system_alerts" */ + system_alerts_aggregate: system_alerts_aggregate + /** fetch data from the table: "system_alerts" using primary key columns */ + system_alerts_by_pk: (system_alerts | null) + /** fetch data from the table in a streaming manner: "system_alerts" */ + system_alerts_stream: system_alerts[] + /** An array relationship */ + team_invites: team_invites[] + /** An aggregate relationship */ + team_invites_aggregate: team_invites_aggregate + /** fetch data from the table: "team_invites" using primary key columns */ + team_invites_by_pk: (team_invites | null) + /** fetch data from the table in a streaming manner: "team_invites" */ + team_invites_stream: team_invites[] + /** fetch data from the table: "team_roster" */ + team_roster: team_roster[] + /** fetch aggregated fields from the table: "team_roster" */ + team_roster_aggregate: team_roster_aggregate + /** fetch data from the table: "team_roster" using primary key columns */ + team_roster_by_pk: (team_roster | null) + /** fetch data from the table in a streaming manner: "team_roster" */ + team_roster_stream: team_roster[] + /** fetch data from the table: "team_scrim_alerts" */ + team_scrim_alerts: team_scrim_alerts[] + /** fetch aggregated fields from the table: "team_scrim_alerts" */ + team_scrim_alerts_aggregate: team_scrim_alerts_aggregate + /** fetch data from the table: "team_scrim_alerts" using primary key columns */ + team_scrim_alerts_by_pk: (team_scrim_alerts | null) + /** fetch data from the table in a streaming manner: "team_scrim_alerts" */ + team_scrim_alerts_stream: team_scrim_alerts[] + /** fetch data from the table: "team_scrim_availability" */ + team_scrim_availability: team_scrim_availability[] + /** fetch aggregated fields from the table: "team_scrim_availability" */ + team_scrim_availability_aggregate: team_scrim_availability_aggregate + /** fetch data from the table: "team_scrim_availability" using primary key columns */ + team_scrim_availability_by_pk: (team_scrim_availability | null) + /** fetch data from the table in a streaming manner: "team_scrim_availability" */ + team_scrim_availability_stream: team_scrim_availability[] + /** fetch data from the table: "team_scrim_request_proposals" */ + team_scrim_request_proposals: team_scrim_request_proposals[] + /** fetch aggregated fields from the table: "team_scrim_request_proposals" */ + team_scrim_request_proposals_aggregate: team_scrim_request_proposals_aggregate + /** fetch data from the table: "team_scrim_request_proposals" using primary key columns */ + team_scrim_request_proposals_by_pk: (team_scrim_request_proposals | null) + /** fetch data from the table in a streaming manner: "team_scrim_request_proposals" */ + team_scrim_request_proposals_stream: team_scrim_request_proposals[] + /** fetch data from the table: "team_scrim_requests" */ + team_scrim_requests: team_scrim_requests[] + /** fetch aggregated fields from the table: "team_scrim_requests" */ + team_scrim_requests_aggregate: team_scrim_requests_aggregate + /** fetch data from the table: "team_scrim_requests" using primary key columns */ + team_scrim_requests_by_pk: (team_scrim_requests | null) + /** fetch data from the table in a streaming manner: "team_scrim_requests" */ + team_scrim_requests_stream: team_scrim_requests[] + /** fetch data from the table: "team_scrim_settings" */ + team_scrim_settings: team_scrim_settings[] + /** fetch aggregated fields from the table: "team_scrim_settings" */ + team_scrim_settings_aggregate: team_scrim_settings_aggregate + /** fetch data from the table: "team_scrim_settings" using primary key columns */ + team_scrim_settings_by_pk: (team_scrim_settings | null) + /** fetch data from the table in a streaming manner: "team_scrim_settings" */ + team_scrim_settings_stream: team_scrim_settings[] + /** fetch data from the table: "team_suggestions" */ + team_suggestions: team_suggestions[] + /** fetch aggregated fields from the table: "team_suggestions" */ + team_suggestions_aggregate: team_suggestions_aggregate + /** fetch data from the table: "team_suggestions" using primary key columns */ + team_suggestions_by_pk: (team_suggestions | null) + /** fetch data from the table in a streaming manner: "team_suggestions" */ + team_suggestions_stream: team_suggestions[] + /** fetch data from the table: "teams" */ + teams: teams[] + /** fetch aggregated fields from the table: "teams" */ + teams_aggregate: teams_aggregate + /** fetch data from the table: "teams" using primary key columns */ + teams_by_pk: (teams | null) + /** fetch data from the table in a streaming manner: "teams" */ + teams_stream: teams[] + /** fetch data from the table: "tournament_awards" */ + tournament_awards: tournament_awards[] + /** fetch aggregated fields from the table: "tournament_awards" */ + tournament_awards_aggregate: tournament_awards_aggregate + /** fetch data from the table: "tournament_awards" using primary key columns */ + tournament_awards_by_pk: (tournament_awards | null) + /** fetch data from the table in a streaming manner: "tournament_awards" */ + tournament_awards_stream: tournament_awards[] + /** An array relationship */ + tournament_brackets: tournament_brackets[] + /** An aggregate relationship */ + tournament_brackets_aggregate: tournament_brackets_aggregate + /** fetch data from the table: "tournament_brackets" using primary key columns */ + tournament_brackets_by_pk: (tournament_brackets | null) + /** fetch data from the table in a streaming manner: "tournament_brackets" */ + tournament_brackets_stream: tournament_brackets[] + /** An array relationship */ + tournament_categories: tournament_categories[] + /** An aggregate relationship */ + tournament_categories_aggregate: tournament_categories_aggregate + /** fetch data from the table: "tournament_categories" using primary key columns */ + tournament_categories_by_pk: (tournament_categories | null) + /** fetch data from the table in a streaming manner: "tournament_categories" */ + tournament_categories_stream: tournament_categories[] + /** An array relationship */ + tournament_free_agents: tournament_free_agents[] + /** An aggregate relationship */ + tournament_free_agents_aggregate: tournament_free_agents_aggregate + /** fetch data from the table: "tournament_free_agents" using primary key columns */ + tournament_free_agents_by_pk: (tournament_free_agents | null) + /** fetch data from the table in a streaming manner: "tournament_free_agents" */ + tournament_free_agents_stream: tournament_free_agents[] + /** fetch data from the table: "tournament_invite_code_uses" */ + tournament_invite_code_uses: tournament_invite_code_uses[] + /** fetch aggregated fields from the table: "tournament_invite_code_uses" */ + tournament_invite_code_uses_aggregate: tournament_invite_code_uses_aggregate + /** fetch data from the table: "tournament_invite_code_uses" using primary key columns */ + tournament_invite_code_uses_by_pk: (tournament_invite_code_uses | null) + /** fetch data from the table in a streaming manner: "tournament_invite_code_uses" */ + tournament_invite_code_uses_stream: tournament_invite_code_uses[] + /** fetch data from the table: "tournament_invite_codes" */ + tournament_invite_codes: tournament_invite_codes[] + /** fetch aggregated fields from the table: "tournament_invite_codes" */ + tournament_invite_codes_aggregate: tournament_invite_codes_aggregate + /** fetch data from the table: "tournament_invite_codes" using primary key columns */ + tournament_invite_codes_by_pk: (tournament_invite_codes | null) + /** fetch data from the table in a streaming manner: "tournament_invite_codes" */ + tournament_invite_codes_stream: tournament_invite_codes[] + /** fetch data from the table: "tournament_invites" */ + tournament_invites: tournament_invites[] + /** fetch aggregated fields from the table: "tournament_invites" */ + tournament_invites_aggregate: tournament_invites_aggregate + /** fetch data from the table: "tournament_invites" using primary key columns */ + tournament_invites_by_pk: (tournament_invites | null) + /** fetch data from the table in a streaming manner: "tournament_invites" */ + tournament_invites_stream: tournament_invites[] + /** fetch data from the table: "tournament_leaderboard_entries" */ + tournament_leaderboard_entries: tournament_leaderboard_entries[] + /** fetch aggregated fields from the table: "tournament_leaderboard_entries" */ + tournament_leaderboard_entries_aggregate: tournament_leaderboard_entries_aggregate + /** fetch data from the table in a streaming manner: "tournament_leaderboard_entries" */ + tournament_leaderboard_entries_stream: tournament_leaderboard_entries[] + /** fetch data from the table: "tournament_no_shows" */ + tournament_no_shows: tournament_no_shows[] + /** fetch aggregated fields from the table: "tournament_no_shows" */ + tournament_no_shows_aggregate: tournament_no_shows_aggregate + /** fetch data from the table: "tournament_no_shows" using primary key columns */ + tournament_no_shows_by_pk: (tournament_no_shows | null) + /** fetch data from the table in a streaming manner: "tournament_no_shows" */ + tournament_no_shows_stream: tournament_no_shows[] + /** fetch data from the table: "tournament_organizer_teams" */ + tournament_organizer_teams: tournament_organizer_teams[] + /** fetch aggregated fields from the table: "tournament_organizer_teams" */ + tournament_organizer_teams_aggregate: tournament_organizer_teams_aggregate + /** fetch data from the table: "tournament_organizer_teams" using primary key columns */ + tournament_organizer_teams_by_pk: (tournament_organizer_teams | null) + /** fetch data from the table in a streaming manner: "tournament_organizer_teams" */ + tournament_organizer_teams_stream: tournament_organizer_teams[] + /** An array relationship */ + tournament_organizers: tournament_organizers[] + /** An aggregate relationship */ + tournament_organizers_aggregate: tournament_organizers_aggregate + /** fetch data from the table: "tournament_organizers" using primary key columns */ + tournament_organizers_by_pk: (tournament_organizers | null) + /** fetch data from the table in a streaming manner: "tournament_organizers" */ + tournament_organizers_stream: tournament_organizers[] + /** fetch data from the table: "tournament_prizes" */ + tournament_prizes: tournament_prizes[] + /** fetch aggregated fields from the table: "tournament_prizes" */ + tournament_prizes_aggregate: tournament_prizes_aggregate + /** fetch data from the table: "tournament_prizes" using primary key columns */ + tournament_prizes_by_pk: (tournament_prizes | null) + /** fetch data from the table in a streaming manner: "tournament_prizes" */ + tournament_prizes_stream: tournament_prizes[] + /** fetch data from the table: "tournament_registration_unlocks" */ + tournament_registration_unlocks: tournament_registration_unlocks[] + /** fetch aggregated fields from the table: "tournament_registration_unlocks" */ + tournament_registration_unlocks_aggregate: tournament_registration_unlocks_aggregate + /** fetch data from the table in a streaming manner: "tournament_registration_unlocks" */ + tournament_registration_unlocks_stream: tournament_registration_unlocks[] + /** fetch data from the table: "tournament_stage_windows" */ + tournament_stage_windows: tournament_stage_windows[] + /** fetch aggregated fields from the table: "tournament_stage_windows" */ + tournament_stage_windows_aggregate: tournament_stage_windows_aggregate + /** fetch data from the table: "tournament_stage_windows" using primary key columns */ + tournament_stage_windows_by_pk: (tournament_stage_windows | null) + /** fetch data from the table in a streaming manner: "tournament_stage_windows" */ + tournament_stage_windows_stream: tournament_stage_windows[] + /** An array relationship */ + tournament_stages: tournament_stages[] + /** An aggregate relationship */ + tournament_stages_aggregate: tournament_stages_aggregate + /** fetch data from the table: "tournament_stages" using primary key columns */ + tournament_stages_by_pk: (tournament_stages | null) + /** fetch data from the table in a streaming manner: "tournament_stages" */ + tournament_stages_stream: tournament_stages[] + /** fetch data from the table: "tournament_team_invites" */ + tournament_team_invites: tournament_team_invites[] + /** fetch aggregated fields from the table: "tournament_team_invites" */ + tournament_team_invites_aggregate: tournament_team_invites_aggregate + /** fetch data from the table: "tournament_team_invites" using primary key columns */ + tournament_team_invites_by_pk: (tournament_team_invites | null) + /** fetch data from the table in a streaming manner: "tournament_team_invites" */ + tournament_team_invites_stream: tournament_team_invites[] + /** fetch data from the table: "tournament_team_roster" */ + tournament_team_roster: tournament_team_roster[] + /** fetch aggregated fields from the table: "tournament_team_roster" */ + tournament_team_roster_aggregate: tournament_team_roster_aggregate + /** fetch data from the table: "tournament_team_roster" using primary key columns */ + tournament_team_roster_by_pk: (tournament_team_roster | null) + /** fetch data from the table in a streaming manner: "tournament_team_roster" */ + tournament_team_roster_stream: tournament_team_roster[] + /** An array relationship */ + tournament_teams: tournament_teams[] + /** An aggregate relationship */ + tournament_teams_aggregate: tournament_teams_aggregate + /** fetch data from the table: "tournament_teams" using primary key columns */ + tournament_teams_by_pk: (tournament_teams | null) + /** fetch data from the table in a streaming manner: "tournament_teams" */ + tournament_teams_stream: tournament_teams[] + /** An array relationship */ + tournaments: tournaments[] + /** An aggregate relationship */ + tournaments_aggregate: tournaments_aggregate + /** fetch data from the table: "tournaments" using primary key columns */ + tournaments_by_pk: (tournaments | null) + /** fetch data from the table in a streaming manner: "tournaments" */ + tournaments_stream: tournaments[] + /** fetch data from the table: "utility_collection_items" */ + utility_collection_items: utility_collection_items[] + /** fetch aggregated fields from the table: "utility_collection_items" */ + utility_collection_items_aggregate: utility_collection_items_aggregate + /** fetch data from the table: "utility_collection_items" using primary key columns */ + utility_collection_items_by_pk: (utility_collection_items | null) + /** fetch data from the table in a streaming manner: "utility_collection_items" */ + utility_collection_items_stream: utility_collection_items[] + /** fetch data from the table: "utility_collections" */ + utility_collections: utility_collections[] + /** fetch aggregated fields from the table: "utility_collections" */ + utility_collections_aggregate: utility_collections_aggregate + /** fetch data from the table: "utility_collections" using primary key columns */ + utility_collections_by_pk: (utility_collections | null) + /** fetch data from the table in a streaming manner: "utility_collections" */ + utility_collections_stream: utility_collections[] + /** fetch data from the table: "utility_demo_mines" */ + utility_demo_mines: utility_demo_mines[] + /** fetch aggregated fields from the table: "utility_demo_mines" */ + utility_demo_mines_aggregate: utility_demo_mines_aggregate + /** fetch data from the table: "utility_demo_mines" using primary key columns */ + utility_demo_mines_by_pk: (utility_demo_mines | null) + /** fetch data from the table in a streaming manner: "utility_demo_mines" */ + utility_demo_mines_stream: utility_demo_mines[] + /** fetch data from the table: "utility_demo_throws" */ + utility_demo_throws: utility_demo_throws[] + /** fetch aggregated fields from the table: "utility_demo_throws" */ + utility_demo_throws_aggregate: utility_demo_throws_aggregate + /** fetch data from the table: "utility_demo_throws" using primary key columns */ + utility_demo_throws_by_pk: (utility_demo_throws | null) + /** fetch data from the table in a streaming manner: "utility_demo_throws" */ + utility_demo_throws_stream: utility_demo_throws[] + /** fetch data from the table: "utility_drift_results" */ + utility_drift_results: utility_drift_results[] + /** fetch aggregated fields from the table: "utility_drift_results" */ + utility_drift_results_aggregate: utility_drift_results_aggregate + /** fetch data from the table: "utility_drift_results" using primary key columns */ + utility_drift_results_by_pk: (utility_drift_results | null) + /** fetch data from the table in a streaming manner: "utility_drift_results" */ + utility_drift_results_stream: utility_drift_results[] + /** fetch data from the table: "utility_drift_scans" */ + utility_drift_scans: utility_drift_scans[] + /** fetch aggregated fields from the table: "utility_drift_scans" */ + utility_drift_scans_aggregate: utility_drift_scans_aggregate + /** fetch data from the table: "utility_drift_scans" using primary key columns */ + utility_drift_scans_by_pk: (utility_drift_scans | null) + /** fetch data from the table in a streaming manner: "utility_drift_scans" */ + utility_drift_scans_stream: utility_drift_scans[] + /** fetch data from the table: "utility_lineup_favorites" */ + utility_lineup_favorites: utility_lineup_favorites[] + /** fetch aggregated fields from the table: "utility_lineup_favorites" */ + utility_lineup_favorites_aggregate: utility_lineup_favorites_aggregate + /** fetch data from the table: "utility_lineup_favorites" using primary key columns */ + utility_lineup_favorites_by_pk: (utility_lineup_favorites | null) + /** fetch data from the table in a streaming manner: "utility_lineup_favorites" */ + utility_lineup_favorites_stream: utility_lineup_favorites[] + /** fetch data from the table: "utility_lineup_progress" */ + utility_lineup_progress: utility_lineup_progress[] + /** fetch aggregated fields from the table: "utility_lineup_progress" */ + utility_lineup_progress_aggregate: utility_lineup_progress_aggregate + /** fetch data from the table: "utility_lineup_progress" using primary key columns */ + utility_lineup_progress_by_pk: (utility_lineup_progress | null) + /** fetch data from the table in a streaming manner: "utility_lineup_progress" */ + utility_lineup_progress_stream: utility_lineup_progress[] + /** fetch data from the table: "utility_lineup_renders" */ + utility_lineup_renders: utility_lineup_renders[] + /** fetch aggregated fields from the table: "utility_lineup_renders" */ + utility_lineup_renders_aggregate: utility_lineup_renders_aggregate + /** fetch data from the table: "utility_lineup_renders" using primary key columns */ + utility_lineup_renders_by_pk: (utility_lineup_renders | null) + /** fetch data from the table in a streaming manner: "utility_lineup_renders" */ + utility_lineup_renders_stream: utility_lineup_renders[] + /** fetch data from the table: "utility_lineup_repairs" */ + utility_lineup_repairs: utility_lineup_repairs[] + /** fetch aggregated fields from the table: "utility_lineup_repairs" */ + utility_lineup_repairs_aggregate: utility_lineup_repairs_aggregate + /** fetch data from the table: "utility_lineup_repairs" using primary key columns */ + utility_lineup_repairs_by_pk: (utility_lineup_repairs | null) + /** fetch data from the table in a streaming manner: "utility_lineup_repairs" */ + utility_lineup_repairs_stream: utility_lineup_repairs[] + /** fetch data from the table: "utility_lineup_votes" */ + utility_lineup_votes: utility_lineup_votes[] + /** fetch aggregated fields from the table: "utility_lineup_votes" */ + utility_lineup_votes_aggregate: utility_lineup_votes_aggregate + /** fetch data from the table: "utility_lineup_votes" using primary key columns */ + utility_lineup_votes_by_pk: (utility_lineup_votes | null) + /** fetch data from the table in a streaming manner: "utility_lineup_votes" */ + utility_lineup_votes_stream: utility_lineup_votes[] + /** An array relationship */ + utility_lineups: utility_lineups[] + /** An aggregate relationship */ + utility_lineups_aggregate: utility_lineups_aggregate + /** fetch data from the table: "utility_lineups" using primary key columns */ + utility_lineups_by_pk: (utility_lineups | null) + /** fetch data from the table in a streaming manner: "utility_lineups" */ + utility_lineups_stream: utility_lineups[] + /** fetch data from the table: "utility_meta_lineups" */ + utility_meta_lineups: utility_meta_lineups[] + /** fetch aggregated fields from the table: "utility_meta_lineups" */ + utility_meta_lineups_aggregate: utility_meta_lineups_aggregate + /** fetch data from the table: "utility_meta_lineups" using primary key columns */ + utility_meta_lineups_by_pk: (utility_meta_lineups | null) + /** fetch data from the table in a streaming manner: "utility_meta_lineups" */ + utility_meta_lineups_stream: utility_meta_lineups[] + /** fetch data from the table: "utility_playbook_steps" */ + utility_playbook_steps: utility_playbook_steps[] + /** fetch aggregated fields from the table: "utility_playbook_steps" */ + utility_playbook_steps_aggregate: utility_playbook_steps_aggregate + /** fetch data from the table: "utility_playbook_steps" using primary key columns */ + utility_playbook_steps_by_pk: (utility_playbook_steps | null) + /** fetch data from the table in a streaming manner: "utility_playbook_steps" */ + utility_playbook_steps_stream: utility_playbook_steps[] + /** fetch data from the table: "utility_playbooks" */ + utility_playbooks: utility_playbooks[] + /** fetch aggregated fields from the table: "utility_playbooks" */ + utility_playbooks_aggregate: utility_playbooks_aggregate + /** fetch data from the table: "utility_playbooks" using primary key columns */ + utility_playbooks_by_pk: (utility_playbooks | null) + /** fetch data from the table in a streaming manner: "utility_playbooks" */ + utility_playbooks_stream: utility_playbooks[] + /** fetch data from the table: "utility_practice_invites" */ + utility_practice_invites: utility_practice_invites[] + /** fetch aggregated fields from the table: "utility_practice_invites" */ + utility_practice_invites_aggregate: utility_practice_invites_aggregate + /** fetch data from the table: "utility_practice_invites" using primary key columns */ + utility_practice_invites_by_pk: (utility_practice_invites | null) + /** fetch data from the table in a streaming manner: "utility_practice_invites" */ + utility_practice_invites_stream: utility_practice_invites[] + /** An array relationship */ + utility_practice_sessions: utility_practice_sessions[] + /** An aggregate relationship */ + utility_practice_sessions_aggregate: utility_practice_sessions_aggregate + /** fetch data from the table: "utility_practice_sessions" using primary key columns */ + utility_practice_sessions_by_pk: (utility_practice_sessions | null) + /** fetch data from the table in a streaming manner: "utility_practice_sessions" */ + utility_practice_sessions_stream: utility_practice_sessions[] + /** fetch data from the table: "v_event_player_stats" */ + v_event_player_stats: v_event_player_stats[] + /** fetch aggregated fields from the table: "v_event_player_stats" */ + v_event_player_stats_aggregate: v_event_player_stats_aggregate + /** fetch data from the table in a streaming manner: "v_event_player_stats" */ + v_event_player_stats_stream: v_event_player_stats[] + /** fetch data from the table: "v_gpu_pool_status" */ + v_gpu_pool_status: v_gpu_pool_status[] + /** fetch aggregated fields from the table: "v_gpu_pool_status" */ + v_gpu_pool_status_aggregate: v_gpu_pool_status_aggregate + /** fetch data from the table in a streaming manner: "v_gpu_pool_status" */ + v_gpu_pool_status_stream: v_gpu_pool_status[] + /** fetch data from the table: "v_league_division_standings" */ + v_league_division_standings: v_league_division_standings[] + /** fetch aggregated fields from the table: "v_league_division_standings" */ + v_league_division_standings_aggregate: v_league_division_standings_aggregate + /** fetch data from the table in a streaming manner: "v_league_division_standings" */ + v_league_division_standings_stream: v_league_division_standings[] + /** fetch data from the table: "v_league_season_player_stats" */ + v_league_season_player_stats: v_league_season_player_stats[] + /** fetch aggregated fields from the table: "v_league_season_player_stats" */ + v_league_season_player_stats_aggregate: v_league_season_player_stats_aggregate + /** fetch data from the table in a streaming manner: "v_league_season_player_stats" */ + v_league_season_player_stats_stream: v_league_season_player_stats[] + /** fetch data from the table: "v_match_captains" */ + v_match_captains: v_match_captains[] + /** fetch aggregated fields from the table: "v_match_captains" */ + v_match_captains_aggregate: v_match_captains_aggregate + /** fetch data from the table in a streaming manner: "v_match_captains" */ + v_match_captains_stream: v_match_captains[] + /** fetch data from the table: "v_match_clutches" */ + v_match_clutches: v_match_clutches[] + /** fetch aggregated fields from the table: "v_match_clutches" */ + v_match_clutches_aggregate: v_match_clutches_aggregate + /** fetch data from the table in a streaming manner: "v_match_clutches" */ + v_match_clutches_stream: v_match_clutches[] + /** fetch data from the table: "v_match_kill_pairs" */ + v_match_kill_pairs: v_match_kill_pairs[] + /** fetch aggregated fields from the table: "v_match_kill_pairs" */ + v_match_kill_pairs_aggregate: v_match_kill_pairs_aggregate + /** fetch data from the table in a streaming manner: "v_match_kill_pairs" */ + v_match_kill_pairs_stream: v_match_kill_pairs[] + /** fetch data from the table: "v_match_lineup_buy_types" */ + v_match_lineup_buy_types: v_match_lineup_buy_types[] + /** fetch aggregated fields from the table: "v_match_lineup_buy_types" */ + v_match_lineup_buy_types_aggregate: v_match_lineup_buy_types_aggregate + /** fetch data from the table in a streaming manner: "v_match_lineup_buy_types" */ + v_match_lineup_buy_types_stream: v_match_lineup_buy_types[] + /** fetch data from the table: "v_match_lineup_map_stats" */ + v_match_lineup_map_stats: v_match_lineup_map_stats[] + /** fetch aggregated fields from the table: "v_match_lineup_map_stats" */ + v_match_lineup_map_stats_aggregate: v_match_lineup_map_stats_aggregate + /** fetch data from the table in a streaming manner: "v_match_lineup_map_stats" */ + v_match_lineup_map_stats_stream: v_match_lineup_map_stats[] + /** fetch data from the table: "v_match_map_backup_rounds" */ + v_match_map_backup_rounds: v_match_map_backup_rounds[] + /** fetch aggregated fields from the table: "v_match_map_backup_rounds" */ + v_match_map_backup_rounds_aggregate: v_match_map_backup_rounds_aggregate + /** fetch data from the table in a streaming manner: "v_match_map_backup_rounds" */ + v_match_map_backup_rounds_stream: v_match_map_backup_rounds[] + /** fetch data from the table: "v_match_player_buy_types" */ + v_match_player_buy_types: v_match_player_buy_types[] + /** fetch aggregated fields from the table: "v_match_player_buy_types" */ + v_match_player_buy_types_aggregate: v_match_player_buy_types_aggregate + /** fetch data from the table in a streaming manner: "v_match_player_buy_types" */ + v_match_player_buy_types_stream: v_match_player_buy_types[] + /** fetch data from the table: "v_match_player_opening_duels" */ + v_match_player_opening_duels: v_match_player_opening_duels[] + /** fetch aggregated fields from the table: "v_match_player_opening_duels" */ + v_match_player_opening_duels_aggregate: v_match_player_opening_duels_aggregate + /** fetch data from the table in a streaming manner: "v_match_player_opening_duels" */ + v_match_player_opening_duels_stream: v_match_player_opening_duels[] + /** fetch data from the table: "v_player_arch_nemesis" */ + v_player_arch_nemesis: v_player_arch_nemesis[] + /** fetch aggregated fields from the table: "v_player_arch_nemesis" */ + v_player_arch_nemesis_aggregate: v_player_arch_nemesis_aggregate + /** fetch data from the table in a streaming manner: "v_player_arch_nemesis" */ + v_player_arch_nemesis_stream: v_player_arch_nemesis[] + /** fetch data from the table: "v_player_damage" */ + v_player_damage: v_player_damage[] + /** fetch aggregated fields from the table: "v_player_damage" */ + v_player_damage_aggregate: v_player_damage_aggregate + /** fetch data from the table in a streaming manner: "v_player_damage" */ + v_player_damage_stream: v_player_damage[] + /** fetch data from the table: "v_player_elo" */ + v_player_elo: v_player_elo[] + /** fetch aggregated fields from the table: "v_player_elo" */ + v_player_elo_aggregate: v_player_elo_aggregate + /** fetch data from the table in a streaming manner: "v_player_elo" */ + v_player_elo_stream: v_player_elo[] + /** fetch data from the table: "v_player_map_losses" */ + v_player_map_losses: v_player_map_losses[] + /** fetch aggregated fields from the table: "v_player_map_losses" */ + v_player_map_losses_aggregate: v_player_map_losses_aggregate + /** fetch data from the table in a streaming manner: "v_player_map_losses" */ + v_player_map_losses_stream: v_player_map_losses[] + /** fetch data from the table: "v_player_map_wins" */ + v_player_map_wins: v_player_map_wins[] + /** fetch aggregated fields from the table: "v_player_map_wins" */ + v_player_map_wins_aggregate: v_player_map_wins_aggregate + /** fetch data from the table in a streaming manner: "v_player_map_wins" */ + v_player_map_wins_stream: v_player_map_wins[] + /** fetch data from the table: "v_player_match_head_to_head" */ + v_player_match_head_to_head: v_player_match_head_to_head[] + /** fetch aggregated fields from the table: "v_player_match_head_to_head" */ + v_player_match_head_to_head_aggregate: v_player_match_head_to_head_aggregate + /** fetch data from the table in a streaming manner: "v_player_match_head_to_head" */ + v_player_match_head_to_head_stream: v_player_match_head_to_head[] + /** fetch data from the table: "v_player_match_map_hltv" */ + v_player_match_map_hltv: v_player_match_map_hltv[] + /** fetch aggregated fields from the table: "v_player_match_map_hltv" */ + v_player_match_map_hltv_aggregate: v_player_match_map_hltv_aggregate + /** fetch data from the table in a streaming manner: "v_player_match_map_hltv" */ + v_player_match_map_hltv_stream: v_player_match_map_hltv[] + /** fetch data from the table: "v_player_match_map_roles" */ + v_player_match_map_roles: v_player_match_map_roles[] + /** fetch aggregated fields from the table: "v_player_match_map_roles" */ + v_player_match_map_roles_aggregate: v_player_match_map_roles_aggregate + /** fetch data from the table in a streaming manner: "v_player_match_map_roles" */ + v_player_match_map_roles_stream: v_player_match_map_roles[] + /** fetch data from the table: "v_player_match_performance" */ + v_player_match_performance: v_player_match_performance[] + /** fetch aggregated fields from the table: "v_player_match_performance" */ + v_player_match_performance_aggregate: v_player_match_performance_aggregate + /** fetch data from the table in a streaming manner: "v_player_match_performance" */ + v_player_match_performance_stream: v_player_match_performance[] + /** fetch data from the table: "v_player_match_rating" */ + v_player_match_rating: v_player_match_rating[] + /** fetch aggregated fields from the table: "v_player_match_rating" */ + v_player_match_rating_aggregate: v_player_match_rating_aggregate + /** fetch data from the table in a streaming manner: "v_player_match_rating" */ + v_player_match_rating_stream: v_player_match_rating[] + /** fetch data from the table: "v_player_multi_kills" */ + v_player_multi_kills: v_player_multi_kills[] + /** fetch aggregated fields from the table: "v_player_multi_kills" */ + v_player_multi_kills_aggregate: v_player_multi_kills_aggregate + /** fetch data from the table in a streaming manner: "v_player_multi_kills" */ + v_player_multi_kills_stream: v_player_multi_kills[] + /** fetch data from the table: "v_player_queue_partners" */ + v_player_queue_partners: v_player_queue_partners[] + /** fetch aggregated fields from the table: "v_player_queue_partners" */ + v_player_queue_partners_aggregate: v_player_queue_partners_aggregate + /** fetch data from the table in a streaming manner: "v_player_queue_partners" */ + v_player_queue_partners_stream: v_player_queue_partners[] + /** fetch data from the table: "v_player_weapon_damage" */ + v_player_weapon_damage: v_player_weapon_damage[] + /** fetch aggregated fields from the table: "v_player_weapon_damage" */ + v_player_weapon_damage_aggregate: v_player_weapon_damage_aggregate + /** fetch data from the table in a streaming manner: "v_player_weapon_damage" */ + v_player_weapon_damage_stream: v_player_weapon_damage[] + /** fetch data from the table: "v_player_weapon_kills" */ + v_player_weapon_kills: v_player_weapon_kills[] + /** fetch aggregated fields from the table: "v_player_weapon_kills" */ + v_player_weapon_kills_aggregate: v_player_weapon_kills_aggregate + /** fetch data from the table in a streaming manner: "v_player_weapon_kills" */ + v_player_weapon_kills_stream: v_player_weapon_kills[] + /** fetch data from the table: "v_pool_maps" */ + v_pool_maps: v_pool_maps[] + /** fetch aggregated fields from the table: "v_pool_maps" */ + v_pool_maps_aggregate: v_pool_maps_aggregate + /** fetch data from the table in a streaming manner: "v_pool_maps" */ + v_pool_maps_stream: v_pool_maps[] + /** fetch data from the table: "v_steam_account_pool_status" */ + v_steam_account_pool_status: v_steam_account_pool_status[] + /** fetch aggregated fields from the table: "v_steam_account_pool_status" */ + v_steam_account_pool_status_aggregate: v_steam_account_pool_status_aggregate + /** fetch data from the table in a streaming manner: "v_steam_account_pool_status" */ + v_steam_account_pool_status_stream: v_steam_account_pool_status[] + /** fetch data from the table: "v_team_ranks" */ + v_team_ranks: v_team_ranks[] + /** fetch aggregated fields from the table: "v_team_ranks" */ + v_team_ranks_aggregate: v_team_ranks_aggregate + /** fetch data from the table in a streaming manner: "v_team_ranks" */ + v_team_ranks_stream: v_team_ranks[] + /** fetch data from the table: "v_team_reputation" */ + v_team_reputation: v_team_reputation[] + /** fetch aggregated fields from the table: "v_team_reputation" */ + v_team_reputation_aggregate: v_team_reputation_aggregate + /** fetch data from the table in a streaming manner: "v_team_reputation" */ + v_team_reputation_stream: v_team_reputation[] + /** fetch data from the table: "v_team_stage_results" */ + v_team_stage_results: v_team_stage_results[] + /** fetch aggregated fields from the table: "v_team_stage_results" */ + v_team_stage_results_aggregate: v_team_stage_results_aggregate + /** fetch data from the table: "v_team_stage_results" using primary key columns */ + v_team_stage_results_by_pk: (v_team_stage_results | null) + /** fetch data from the table in a streaming manner: "v_team_stage_results" */ + v_team_stage_results_stream: v_team_stage_results[] + /** fetch data from the table: "v_team_tournament_results" */ + v_team_tournament_results: v_team_tournament_results[] + /** fetch aggregated fields from the table: "v_team_tournament_results" */ + v_team_tournament_results_aggregate: v_team_tournament_results_aggregate + /** fetch data from the table in a streaming manner: "v_team_tournament_results" */ + v_team_tournament_results_stream: v_team_tournament_results[] + /** fetch data from the table: "v_tournament_player_stats" */ + v_tournament_player_stats: v_tournament_player_stats[] + /** fetch aggregated fields from the table: "v_tournament_player_stats" */ + v_tournament_player_stats_aggregate: v_tournament_player_stats_aggregate + /** fetch data from the table in a streaming manner: "v_tournament_player_stats" */ + v_tournament_player_stats_stream: v_tournament_player_stats[] + __typename: 'subscription_root' +} + + +/** columns and relationships of "system_alerts" */ +export interface system_alerts { + created_at: Scalars['timestamptz'] + created_by: (Scalars['bigint'] | null) + dismissible: Scalars['Boolean'] + expires_at: (Scalars['timestamptz'] | null) + id: Scalars['uuid'] + is_active: Scalars['Boolean'] + message: Scalars['String'] + title: (Scalars['String'] | null) + type: e_system_alert_types_enum + updated_at: Scalars['timestamptz'] + __typename: 'system_alerts' +} + + +/** aggregated selection of "system_alerts" */ +export interface system_alerts_aggregate { + aggregate: (system_alerts_aggregate_fields | null) + nodes: system_alerts[] + __typename: 'system_alerts_aggregate' +} + + +/** aggregate fields of "system_alerts" */ +export interface system_alerts_aggregate_fields { + avg: (system_alerts_avg_fields | null) + count: Scalars['Int'] + max: (system_alerts_max_fields | null) + min: (system_alerts_min_fields | null) + stddev: (system_alerts_stddev_fields | null) + stddev_pop: (system_alerts_stddev_pop_fields | null) + stddev_samp: (system_alerts_stddev_samp_fields | null) + sum: (system_alerts_sum_fields | null) + var_pop: (system_alerts_var_pop_fields | null) + var_samp: (system_alerts_var_samp_fields | null) + variance: (system_alerts_variance_fields | null) + __typename: 'system_alerts_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface system_alerts_avg_fields { + created_by: (Scalars['Float'] | null) + __typename: 'system_alerts_avg_fields' +} + + +/** unique or primary key constraints on table "system_alerts" */ +export type system_alerts_constraint = 'system_alerts_pkey' + + +/** aggregate max on columns */ +export interface system_alerts_max_fields { + created_at: (Scalars['timestamptz'] | null) + created_by: (Scalars['bigint'] | null) + expires_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + message: (Scalars['String'] | null) + title: (Scalars['String'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'system_alerts_max_fields' +} + + +/** aggregate min on columns */ +export interface system_alerts_min_fields { + created_at: (Scalars['timestamptz'] | null) + created_by: (Scalars['bigint'] | null) + expires_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + message: (Scalars['String'] | null) + title: (Scalars['String'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'system_alerts_min_fields' +} + + +/** response of any mutation on the table "system_alerts" */ +export interface system_alerts_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: system_alerts[] + __typename: 'system_alerts_mutation_response' +} + + +/** select columns of table "system_alerts" */ +export type system_alerts_select_column = 'created_at' | 'created_by' | 'dismissible' | 'expires_at' | 'id' | 'is_active' | 'message' | 'title' | 'type' | 'updated_at' + + +/** aggregate stddev on columns */ +export interface system_alerts_stddev_fields { + created_by: (Scalars['Float'] | null) + __typename: 'system_alerts_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface system_alerts_stddev_pop_fields { + created_by: (Scalars['Float'] | null) + __typename: 'system_alerts_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface system_alerts_stddev_samp_fields { + created_by: (Scalars['Float'] | null) + __typename: 'system_alerts_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface system_alerts_sum_fields { + created_by: (Scalars['bigint'] | null) + __typename: 'system_alerts_sum_fields' +} + + +/** update columns of table "system_alerts" */ +export type system_alerts_update_column = 'created_at' | 'created_by' | 'dismissible' | 'expires_at' | 'id' | 'is_active' | 'message' | 'title' | 'type' | 'updated_at' + + +/** aggregate var_pop on columns */ +export interface system_alerts_var_pop_fields { + created_by: (Scalars['Float'] | null) + __typename: 'system_alerts_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface system_alerts_var_samp_fields { + created_by: (Scalars['Float'] | null) + __typename: 'system_alerts_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface system_alerts_variance_fields { + created_by: (Scalars['Float'] | null) + __typename: 'system_alerts_variance_fields' +} + + +/** columns and relationships of "team_invites" */ +export interface team_invites { + created_at: Scalars['timestamptz'] + id: Scalars['uuid'] + /** An object relationship */ + invited_by: players + invited_by_player_steam_id: Scalars['bigint'] + /** An object relationship */ + player: players + steam_id: Scalars['bigint'] + /** An object relationship */ + team: teams + team_id: Scalars['uuid'] + __typename: 'team_invites' +} + + +/** aggregated selection of "team_invites" */ +export interface team_invites_aggregate { + aggregate: (team_invites_aggregate_fields | null) + nodes: team_invites[] + __typename: 'team_invites_aggregate' +} + + +/** aggregate fields of "team_invites" */ +export interface team_invites_aggregate_fields { + avg: (team_invites_avg_fields | null) + count: Scalars['Int'] + max: (team_invites_max_fields | null) + min: (team_invites_min_fields | null) + stddev: (team_invites_stddev_fields | null) + stddev_pop: (team_invites_stddev_pop_fields | null) + stddev_samp: (team_invites_stddev_samp_fields | null) + sum: (team_invites_sum_fields | null) + var_pop: (team_invites_var_pop_fields | null) + var_samp: (team_invites_var_samp_fields | null) + variance: (team_invites_variance_fields | null) + __typename: 'team_invites_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface team_invites_avg_fields { + invited_by_player_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'team_invites_avg_fields' +} + + +/** unique or primary key constraints on table "team_invites" */ +export type team_invites_constraint = 'team_invites_pkey' | 'team_invites_team_id_steam_id_key' + + +/** aggregate max on columns */ +export interface team_invites_max_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + invited_by_player_steam_id: (Scalars['bigint'] | null) + steam_id: (Scalars['bigint'] | null) + team_id: (Scalars['uuid'] | null) + __typename: 'team_invites_max_fields' +} + + +/** aggregate min on columns */ +export interface team_invites_min_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + invited_by_player_steam_id: (Scalars['bigint'] | null) + steam_id: (Scalars['bigint'] | null) + team_id: (Scalars['uuid'] | null) + __typename: 'team_invites_min_fields' +} + + +/** response of any mutation on the table "team_invites" */ +export interface team_invites_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: team_invites[] + __typename: 'team_invites_mutation_response' +} + + +/** select columns of table "team_invites" */ +export type team_invites_select_column = 'created_at' | 'id' | 'invited_by_player_steam_id' | 'steam_id' | 'team_id' + + +/** aggregate stddev on columns */ +export interface team_invites_stddev_fields { + invited_by_player_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'team_invites_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface team_invites_stddev_pop_fields { + invited_by_player_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'team_invites_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface team_invites_stddev_samp_fields { + invited_by_player_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'team_invites_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface team_invites_sum_fields { + invited_by_player_steam_id: (Scalars['bigint'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'team_invites_sum_fields' +} + + +/** update columns of table "team_invites" */ +export type team_invites_update_column = 'created_at' | 'id' | 'invited_by_player_steam_id' | 'steam_id' | 'team_id' + + +/** aggregate var_pop on columns */ +export interface team_invites_var_pop_fields { + invited_by_player_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'team_invites_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface team_invites_var_samp_fields { + invited_by_player_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'team_invites_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface team_invites_variance_fields { + invited_by_player_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'team_invites_variance_fields' +} + + +/** columns and relationships of "team_roster" */ +export interface team_roster { + coach: Scalars['Boolean'] + /** An object relationship */ + player: players + player_steam_id: Scalars['bigint'] + role: e_team_roles_enum + roster_image_url: (Scalars['String'] | null) + status: e_team_roster_statuses_enum + /** An object relationship */ + team: teams + team_id: Scalars['uuid'] + __typename: 'team_roster' +} + + +/** aggregated selection of "team_roster" */ +export interface team_roster_aggregate { + aggregate: (team_roster_aggregate_fields | null) + nodes: team_roster[] + __typename: 'team_roster_aggregate' +} + + +/** aggregate fields of "team_roster" */ +export interface team_roster_aggregate_fields { + avg: (team_roster_avg_fields | null) + count: Scalars['Int'] + max: (team_roster_max_fields | null) + min: (team_roster_min_fields | null) + stddev: (team_roster_stddev_fields | null) + stddev_pop: (team_roster_stddev_pop_fields | null) + stddev_samp: (team_roster_stddev_samp_fields | null) + sum: (team_roster_sum_fields | null) + var_pop: (team_roster_var_pop_fields | null) + var_samp: (team_roster_var_samp_fields | null) + variance: (team_roster_variance_fields | null) + __typename: 'team_roster_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface team_roster_avg_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'team_roster_avg_fields' +} + + +/** unique or primary key constraints on table "team_roster" */ +export type team_roster_constraint = 'team_members_pkey' + + +/** aggregate max on columns */ +export interface team_roster_max_fields { + player_steam_id: (Scalars['bigint'] | null) + roster_image_url: (Scalars['String'] | null) + team_id: (Scalars['uuid'] | null) + __typename: 'team_roster_max_fields' +} + + +/** aggregate min on columns */ +export interface team_roster_min_fields { + player_steam_id: (Scalars['bigint'] | null) + roster_image_url: (Scalars['String'] | null) + team_id: (Scalars['uuid'] | null) + __typename: 'team_roster_min_fields' +} + + +/** response of any mutation on the table "team_roster" */ +export interface team_roster_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: team_roster[] + __typename: 'team_roster_mutation_response' +} + + +/** select columns of table "team_roster" */ +export type team_roster_select_column = 'coach' | 'player_steam_id' | 'role' | 'roster_image_url' | 'status' | 'team_id' + + +/** select "team_roster_aggregate_bool_exp_bool_and_arguments_columns" columns of table "team_roster" */ +export type team_roster_select_column_team_roster_aggregate_bool_exp_bool_and_arguments_columns = 'coach' + + +/** select "team_roster_aggregate_bool_exp_bool_or_arguments_columns" columns of table "team_roster" */ +export type team_roster_select_column_team_roster_aggregate_bool_exp_bool_or_arguments_columns = 'coach' + + +/** aggregate stddev on columns */ +export interface team_roster_stddev_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'team_roster_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface team_roster_stddev_pop_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'team_roster_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface team_roster_stddev_samp_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'team_roster_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface team_roster_sum_fields { + player_steam_id: (Scalars['bigint'] | null) + __typename: 'team_roster_sum_fields' +} + + +/** update columns of table "team_roster" */ +export type team_roster_update_column = 'coach' | 'player_steam_id' | 'role' | 'roster_image_url' | 'status' | 'team_id' + + +/** aggregate var_pop on columns */ +export interface team_roster_var_pop_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'team_roster_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface team_roster_var_samp_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'team_roster_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface team_roster_variance_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'team_roster_variance_fields' +} + + +/** columns and relationships of "team_scrim_alerts" */ +export interface team_scrim_alerts { + created_at: Scalars['timestamptz'] + elo_max: (Scalars['Int'] | null) + elo_min: (Scalars['Int'] | null) + enabled: Scalars['Boolean'] + id: Scalars['uuid'] + last_notified_at: (Scalars['timestamptz'] | null) + regions: Scalars['String'][] + /** An object relationship */ + team: teams + team_id: Scalars['uuid'] + __typename: 'team_scrim_alerts' +} + + +/** aggregated selection of "team_scrim_alerts" */ +export interface team_scrim_alerts_aggregate { + aggregate: (team_scrim_alerts_aggregate_fields | null) + nodes: team_scrim_alerts[] + __typename: 'team_scrim_alerts_aggregate' +} + + +/** aggregate fields of "team_scrim_alerts" */ +export interface team_scrim_alerts_aggregate_fields { + avg: (team_scrim_alerts_avg_fields | null) + count: Scalars['Int'] + max: (team_scrim_alerts_max_fields | null) + min: (team_scrim_alerts_min_fields | null) + stddev: (team_scrim_alerts_stddev_fields | null) + stddev_pop: (team_scrim_alerts_stddev_pop_fields | null) + stddev_samp: (team_scrim_alerts_stddev_samp_fields | null) + sum: (team_scrim_alerts_sum_fields | null) + var_pop: (team_scrim_alerts_var_pop_fields | null) + var_samp: (team_scrim_alerts_var_samp_fields | null) + variance: (team_scrim_alerts_variance_fields | null) + __typename: 'team_scrim_alerts_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface team_scrim_alerts_avg_fields { + elo_max: (Scalars['Float'] | null) + elo_min: (Scalars['Float'] | null) + __typename: 'team_scrim_alerts_avg_fields' +} + + +/** unique or primary key constraints on table "team_scrim_alerts" */ +export type team_scrim_alerts_constraint = 'team_scrim_alerts_pkey' + + +/** aggregate max on columns */ +export interface team_scrim_alerts_max_fields { + created_at: (Scalars['timestamptz'] | null) + elo_max: (Scalars['Int'] | null) + elo_min: (Scalars['Int'] | null) + id: (Scalars['uuid'] | null) + last_notified_at: (Scalars['timestamptz'] | null) + regions: (Scalars['String'][] | null) + team_id: (Scalars['uuid'] | null) + __typename: 'team_scrim_alerts_max_fields' +} + + +/** aggregate min on columns */ +export interface team_scrim_alerts_min_fields { + created_at: (Scalars['timestamptz'] | null) + elo_max: (Scalars['Int'] | null) + elo_min: (Scalars['Int'] | null) + id: (Scalars['uuid'] | null) + last_notified_at: (Scalars['timestamptz'] | null) + regions: (Scalars['String'][] | null) + team_id: (Scalars['uuid'] | null) + __typename: 'team_scrim_alerts_min_fields' +} + + +/** response of any mutation on the table "team_scrim_alerts" */ +export interface team_scrim_alerts_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: team_scrim_alerts[] + __typename: 'team_scrim_alerts_mutation_response' +} + + +/** select columns of table "team_scrim_alerts" */ +export type team_scrim_alerts_select_column = 'created_at' | 'elo_max' | 'elo_min' | 'enabled' | 'id' | 'last_notified_at' | 'regions' | 'team_id' + + +/** aggregate stddev on columns */ +export interface team_scrim_alerts_stddev_fields { + elo_max: (Scalars['Float'] | null) + elo_min: (Scalars['Float'] | null) + __typename: 'team_scrim_alerts_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface team_scrim_alerts_stddev_pop_fields { + elo_max: (Scalars['Float'] | null) + elo_min: (Scalars['Float'] | null) + __typename: 'team_scrim_alerts_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface team_scrim_alerts_stddev_samp_fields { + elo_max: (Scalars['Float'] | null) + elo_min: (Scalars['Float'] | null) + __typename: 'team_scrim_alerts_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface team_scrim_alerts_sum_fields { + elo_max: (Scalars['Int'] | null) + elo_min: (Scalars['Int'] | null) + __typename: 'team_scrim_alerts_sum_fields' +} + + +/** update columns of table "team_scrim_alerts" */ +export type team_scrim_alerts_update_column = 'created_at' | 'elo_max' | 'elo_min' | 'enabled' | 'id' | 'last_notified_at' | 'regions' | 'team_id' + + +/** aggregate var_pop on columns */ +export interface team_scrim_alerts_var_pop_fields { + elo_max: (Scalars['Float'] | null) + elo_min: (Scalars['Float'] | null) + __typename: 'team_scrim_alerts_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface team_scrim_alerts_var_samp_fields { + elo_max: (Scalars['Float'] | null) + elo_min: (Scalars['Float'] | null) + __typename: 'team_scrim_alerts_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface team_scrim_alerts_variance_fields { + elo_max: (Scalars['Float'] | null) + elo_min: (Scalars['Float'] | null) + __typename: 'team_scrim_alerts_variance_fields' +} + + +/** columns and relationships of "team_scrim_availability" */ +export interface team_scrim_availability { + created_at: Scalars['timestamptz'] + ends_at: Scalars['timestamptz'] + id: Scalars['uuid'] + recurring_weekly: Scalars['Boolean'] + starts_at: Scalars['timestamptz'] + /** An object relationship */ + team: teams + team_id: Scalars['uuid'] + __typename: 'team_scrim_availability' +} + + +/** aggregated selection of "team_scrim_availability" */ +export interface team_scrim_availability_aggregate { + aggregate: (team_scrim_availability_aggregate_fields | null) + nodes: team_scrim_availability[] + __typename: 'team_scrim_availability_aggregate' +} + + +/** aggregate fields of "team_scrim_availability" */ +export interface team_scrim_availability_aggregate_fields { + count: Scalars['Int'] + max: (team_scrim_availability_max_fields | null) + min: (team_scrim_availability_min_fields | null) + __typename: 'team_scrim_availability_aggregate_fields' +} + + +/** unique or primary key constraints on table "team_scrim_availability" */ +export type team_scrim_availability_constraint = 'team_scrim_availability_pkey' + + +/** aggregate max on columns */ +export interface team_scrim_availability_max_fields { + created_at: (Scalars['timestamptz'] | null) + ends_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + starts_at: (Scalars['timestamptz'] | null) + team_id: (Scalars['uuid'] | null) + __typename: 'team_scrim_availability_max_fields' +} + + +/** aggregate min on columns */ +export interface team_scrim_availability_min_fields { + created_at: (Scalars['timestamptz'] | null) + ends_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + starts_at: (Scalars['timestamptz'] | null) + team_id: (Scalars['uuid'] | null) + __typename: 'team_scrim_availability_min_fields' +} + + +/** response of any mutation on the table "team_scrim_availability" */ +export interface team_scrim_availability_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: team_scrim_availability[] + __typename: 'team_scrim_availability_mutation_response' +} + + +/** select columns of table "team_scrim_availability" */ +export type team_scrim_availability_select_column = 'created_at' | 'ends_at' | 'id' | 'recurring_weekly' | 'starts_at' | 'team_id' + + +/** select "team_scrim_availability_aggregate_bool_exp_bool_and_arguments_columns" columns of table "team_scrim_availability" */ +export type team_scrim_availability_select_column_team_scrim_availability_aggregate_bool_exp_bool_and_arguments_columns = 'recurring_weekly' + + +/** select "team_scrim_availability_aggregate_bool_exp_bool_or_arguments_columns" columns of table "team_scrim_availability" */ +export type team_scrim_availability_select_column_team_scrim_availability_aggregate_bool_exp_bool_or_arguments_columns = 'recurring_weekly' + + +/** update columns of table "team_scrim_availability" */ +export type team_scrim_availability_update_column = 'created_at' | 'ends_at' | 'id' | 'recurring_weekly' | 'starts_at' | 'team_id' + + +/** columns and relationships of "team_scrim_request_proposals" */ +export interface team_scrim_request_proposals { + created_at: Scalars['timestamptz'] + id: Scalars['uuid'] + /** An object relationship */ + proposed_by: players + proposed_by_steam_id: Scalars['bigint'] + /** An object relationship */ + proposed_by_team: teams + proposed_by_team_id: Scalars['uuid'] + proposed_scheduled_at: Scalars['timestamptz'] + /** An object relationship */ + request: team_scrim_requests + request_id: Scalars['uuid'] + __typename: 'team_scrim_request_proposals' +} + + +/** aggregated selection of "team_scrim_request_proposals" */ +export interface team_scrim_request_proposals_aggregate { + aggregate: (team_scrim_request_proposals_aggregate_fields | null) + nodes: team_scrim_request_proposals[] + __typename: 'team_scrim_request_proposals_aggregate' +} + + +/** aggregate fields of "team_scrim_request_proposals" */ +export interface team_scrim_request_proposals_aggregate_fields { + avg: (team_scrim_request_proposals_avg_fields | null) + count: Scalars['Int'] + max: (team_scrim_request_proposals_max_fields | null) + min: (team_scrim_request_proposals_min_fields | null) + stddev: (team_scrim_request_proposals_stddev_fields | null) + stddev_pop: (team_scrim_request_proposals_stddev_pop_fields | null) + stddev_samp: (team_scrim_request_proposals_stddev_samp_fields | null) + sum: (team_scrim_request_proposals_sum_fields | null) + var_pop: (team_scrim_request_proposals_var_pop_fields | null) + var_samp: (team_scrim_request_proposals_var_samp_fields | null) + variance: (team_scrim_request_proposals_variance_fields | null) + __typename: 'team_scrim_request_proposals_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface team_scrim_request_proposals_avg_fields { + proposed_by_steam_id: (Scalars['Float'] | null) + __typename: 'team_scrim_request_proposals_avg_fields' +} + + +/** unique or primary key constraints on table "team_scrim_request_proposals" */ +export type team_scrim_request_proposals_constraint = 'team_scrim_request_proposals_pkey' + + +/** aggregate max on columns */ +export interface team_scrim_request_proposals_max_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + proposed_by_steam_id: (Scalars['bigint'] | null) + proposed_by_team_id: (Scalars['uuid'] | null) + proposed_scheduled_at: (Scalars['timestamptz'] | null) + request_id: (Scalars['uuid'] | null) + __typename: 'team_scrim_request_proposals_max_fields' +} + + +/** aggregate min on columns */ +export interface team_scrim_request_proposals_min_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + proposed_by_steam_id: (Scalars['bigint'] | null) + proposed_by_team_id: (Scalars['uuid'] | null) + proposed_scheduled_at: (Scalars['timestamptz'] | null) + request_id: (Scalars['uuid'] | null) + __typename: 'team_scrim_request_proposals_min_fields' +} + + +/** response of any mutation on the table "team_scrim_request_proposals" */ +export interface team_scrim_request_proposals_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: team_scrim_request_proposals[] + __typename: 'team_scrim_request_proposals_mutation_response' +} + + +/** select columns of table "team_scrim_request_proposals" */ +export type team_scrim_request_proposals_select_column = 'created_at' | 'id' | 'proposed_by_steam_id' | 'proposed_by_team_id' | 'proposed_scheduled_at' | 'request_id' + + +/** aggregate stddev on columns */ +export interface team_scrim_request_proposals_stddev_fields { + proposed_by_steam_id: (Scalars['Float'] | null) + __typename: 'team_scrim_request_proposals_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface team_scrim_request_proposals_stddev_pop_fields { + proposed_by_steam_id: (Scalars['Float'] | null) + __typename: 'team_scrim_request_proposals_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface team_scrim_request_proposals_stddev_samp_fields { + proposed_by_steam_id: (Scalars['Float'] | null) + __typename: 'team_scrim_request_proposals_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface team_scrim_request_proposals_sum_fields { + proposed_by_steam_id: (Scalars['bigint'] | null) + __typename: 'team_scrim_request_proposals_sum_fields' +} + + +/** update columns of table "team_scrim_request_proposals" */ +export type team_scrim_request_proposals_update_column = 'created_at' | 'id' | 'proposed_by_steam_id' | 'proposed_by_team_id' | 'proposed_scheduled_at' | 'request_id' + + +/** aggregate var_pop on columns */ +export interface team_scrim_request_proposals_var_pop_fields { + proposed_by_steam_id: (Scalars['Float'] | null) + __typename: 'team_scrim_request_proposals_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface team_scrim_request_proposals_var_samp_fields { + proposed_by_steam_id: (Scalars['Float'] | null) + __typename: 'team_scrim_request_proposals_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface team_scrim_request_proposals_variance_fields { + proposed_by_steam_id: (Scalars['Float'] | null) + __typename: 'team_scrim_request_proposals_variance_fields' +} + + +/** columns and relationships of "team_scrim_requests" */ +export interface team_scrim_requests { + auto_generated: Scalars['Boolean'] + /** An object relationship */ + awaiting_team: teams + awaiting_team_id: Scalars['uuid'] + canceled_by_team_id: (Scalars['uuid'] | null) + canceled_late: Scalars['Boolean'] + created_at: Scalars['timestamptz'] + expires_at: Scalars['timestamptz'] + /** An object relationship */ + from_team: teams + from_team_checked_in: (Scalars['Boolean'] | null) + from_team_id: Scalars['uuid'] + id: Scalars['uuid'] + /** An object relationship */ + match: (matches | null) + match_id: (Scalars['uuid'] | null) + /** An object relationship */ + match_options: (match_options | null) + match_options_id: (Scalars['uuid'] | null) + /** Terminal match status captured by tbd_match_cancel_scrim before the match row is deleted, so v_team_reputation survives canceled-match GC. */ + match_outcome: (Scalars['String'] | null) + /** An array relationship */ + proposals: team_scrim_request_proposals[] + /** An aggregate relationship */ + proposals_aggregate: team_scrim_request_proposals_aggregate + proposed_scheduled_at: Scalars['timestamptz'] + region: (Scalars['String'] | null) + /** An object relationship */ + requested_by: players + requested_by_steam_id: Scalars['bigint'] + responded_at: (Scalars['timestamptz'] | null) + status: e_scrim_request_statuses_enum + /** An object relationship */ + to_team: teams + to_team_checked_in: (Scalars['Boolean'] | null) + to_team_id: Scalars['uuid'] + __typename: 'team_scrim_requests' +} + + +/** aggregated selection of "team_scrim_requests" */ +export interface team_scrim_requests_aggregate { + aggregate: (team_scrim_requests_aggregate_fields | null) + nodes: team_scrim_requests[] + __typename: 'team_scrim_requests_aggregate' +} + + +/** aggregate fields of "team_scrim_requests" */ +export interface team_scrim_requests_aggregate_fields { + avg: (team_scrim_requests_avg_fields | null) + count: Scalars['Int'] + max: (team_scrim_requests_max_fields | null) + min: (team_scrim_requests_min_fields | null) + stddev: (team_scrim_requests_stddev_fields | null) + stddev_pop: (team_scrim_requests_stddev_pop_fields | null) + stddev_samp: (team_scrim_requests_stddev_samp_fields | null) + sum: (team_scrim_requests_sum_fields | null) + var_pop: (team_scrim_requests_var_pop_fields | null) + var_samp: (team_scrim_requests_var_samp_fields | null) + variance: (team_scrim_requests_variance_fields | null) + __typename: 'team_scrim_requests_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface team_scrim_requests_avg_fields { + requested_by_steam_id: (Scalars['Float'] | null) + __typename: 'team_scrim_requests_avg_fields' +} + + +/** unique or primary key constraints on table "team_scrim_requests" */ +export type team_scrim_requests_constraint = 'team_scrim_requests_pkey' | 'uq_scrim_req_open' + + +/** aggregate max on columns */ +export interface team_scrim_requests_max_fields { + awaiting_team_id: (Scalars['uuid'] | null) + canceled_by_team_id: (Scalars['uuid'] | null) + created_at: (Scalars['timestamptz'] | null) + expires_at: (Scalars['timestamptz'] | null) + from_team_id: (Scalars['uuid'] | null) + id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + match_options_id: (Scalars['uuid'] | null) + /** Terminal match status captured by tbd_match_cancel_scrim before the match row is deleted, so v_team_reputation survives canceled-match GC. */ + match_outcome: (Scalars['String'] | null) + proposed_scheduled_at: (Scalars['timestamptz'] | null) + region: (Scalars['String'] | null) + requested_by_steam_id: (Scalars['bigint'] | null) + responded_at: (Scalars['timestamptz'] | null) + to_team_id: (Scalars['uuid'] | null) + __typename: 'team_scrim_requests_max_fields' +} + + +/** aggregate min on columns */ +export interface team_scrim_requests_min_fields { + awaiting_team_id: (Scalars['uuid'] | null) + canceled_by_team_id: (Scalars['uuid'] | null) + created_at: (Scalars['timestamptz'] | null) + expires_at: (Scalars['timestamptz'] | null) + from_team_id: (Scalars['uuid'] | null) + id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + match_options_id: (Scalars['uuid'] | null) + /** Terminal match status captured by tbd_match_cancel_scrim before the match row is deleted, so v_team_reputation survives canceled-match GC. */ + match_outcome: (Scalars['String'] | null) + proposed_scheduled_at: (Scalars['timestamptz'] | null) + region: (Scalars['String'] | null) + requested_by_steam_id: (Scalars['bigint'] | null) + responded_at: (Scalars['timestamptz'] | null) + to_team_id: (Scalars['uuid'] | null) + __typename: 'team_scrim_requests_min_fields' +} + + +/** response of any mutation on the table "team_scrim_requests" */ +export interface team_scrim_requests_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: team_scrim_requests[] + __typename: 'team_scrim_requests_mutation_response' +} + + +/** select columns of table "team_scrim_requests" */ +export type team_scrim_requests_select_column = 'auto_generated' | 'awaiting_team_id' | 'canceled_by_team_id' | 'canceled_late' | 'created_at' | 'expires_at' | 'from_team_checked_in' | 'from_team_id' | 'id' | 'match_id' | 'match_options_id' | 'match_outcome' | 'proposed_scheduled_at' | 'region' | 'requested_by_steam_id' | 'responded_at' | 'status' | 'to_team_checked_in' | 'to_team_id' + + +/** select "team_scrim_requests_aggregate_bool_exp_bool_and_arguments_columns" columns of table "team_scrim_requests" */ +export type team_scrim_requests_select_column_team_scrim_requests_aggregate_bool_exp_bool_and_arguments_columns = 'auto_generated' | 'canceled_late' | 'from_team_checked_in' | 'to_team_checked_in' + + +/** select "team_scrim_requests_aggregate_bool_exp_bool_or_arguments_columns" columns of table "team_scrim_requests" */ +export type team_scrim_requests_select_column_team_scrim_requests_aggregate_bool_exp_bool_or_arguments_columns = 'auto_generated' | 'canceled_late' | 'from_team_checked_in' | 'to_team_checked_in' + + +/** aggregate stddev on columns */ +export interface team_scrim_requests_stddev_fields { + requested_by_steam_id: (Scalars['Float'] | null) + __typename: 'team_scrim_requests_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface team_scrim_requests_stddev_pop_fields { + requested_by_steam_id: (Scalars['Float'] | null) + __typename: 'team_scrim_requests_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface team_scrim_requests_stddev_samp_fields { + requested_by_steam_id: (Scalars['Float'] | null) + __typename: 'team_scrim_requests_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface team_scrim_requests_sum_fields { + requested_by_steam_id: (Scalars['bigint'] | null) + __typename: 'team_scrim_requests_sum_fields' +} + + +/** update columns of table "team_scrim_requests" */ +export type team_scrim_requests_update_column = 'auto_generated' | 'awaiting_team_id' | 'canceled_by_team_id' | 'canceled_late' | 'created_at' | 'expires_at' | 'from_team_checked_in' | 'from_team_id' | 'id' | 'match_id' | 'match_options_id' | 'match_outcome' | 'proposed_scheduled_at' | 'region' | 'requested_by_steam_id' | 'responded_at' | 'status' | 'to_team_checked_in' | 'to_team_id' + + +/** aggregate var_pop on columns */ +export interface team_scrim_requests_var_pop_fields { + requested_by_steam_id: (Scalars['Float'] | null) + __typename: 'team_scrim_requests_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface team_scrim_requests_var_samp_fields { + requested_by_steam_id: (Scalars['Float'] | null) + __typename: 'team_scrim_requests_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface team_scrim_requests_variance_fields { + requested_by_steam_id: (Scalars['Float'] | null) + __typename: 'team_scrim_requests_variance_fields' +} + + +/** columns and relationships of "team_scrim_settings" */ +export interface team_scrim_settings { + allow_outside_availability: Scalars['Boolean'] + created_at: Scalars['timestamptz'] + elo_max: (Scalars['Int'] | null) + elo_min: (Scalars['Int'] | null) + enabled: Scalars['Boolean'] + id: Scalars['uuid'] + map_ids: Scalars['uuid'][] + notes: (Scalars['String'] | null) + regions: Scalars['String'][] + /** An object relationship */ + team: teams + team_id: Scalars['uuid'] + updated_at: Scalars['timestamptz'] + __typename: 'team_scrim_settings' +} + + +/** aggregated selection of "team_scrim_settings" */ +export interface team_scrim_settings_aggregate { + aggregate: (team_scrim_settings_aggregate_fields | null) + nodes: team_scrim_settings[] + __typename: 'team_scrim_settings_aggregate' +} + + +/** aggregate fields of "team_scrim_settings" */ +export interface team_scrim_settings_aggregate_fields { + avg: (team_scrim_settings_avg_fields | null) + count: Scalars['Int'] + max: (team_scrim_settings_max_fields | null) + min: (team_scrim_settings_min_fields | null) + stddev: (team_scrim_settings_stddev_fields | null) + stddev_pop: (team_scrim_settings_stddev_pop_fields | null) + stddev_samp: (team_scrim_settings_stddev_samp_fields | null) + sum: (team_scrim_settings_sum_fields | null) + var_pop: (team_scrim_settings_var_pop_fields | null) + var_samp: (team_scrim_settings_var_samp_fields | null) + variance: (team_scrim_settings_variance_fields | null) + __typename: 'team_scrim_settings_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface team_scrim_settings_avg_fields { + elo_max: (Scalars['Float'] | null) + elo_min: (Scalars['Float'] | null) + __typename: 'team_scrim_settings_avg_fields' +} + + +/** unique or primary key constraints on table "team_scrim_settings" */ +export type team_scrim_settings_constraint = 'team_scrim_settings_pkey' | 'team_scrim_settings_team_id_key' + + +/** aggregate max on columns */ +export interface team_scrim_settings_max_fields { + created_at: (Scalars['timestamptz'] | null) + elo_max: (Scalars['Int'] | null) + elo_min: (Scalars['Int'] | null) + id: (Scalars['uuid'] | null) + map_ids: (Scalars['uuid'][] | null) + notes: (Scalars['String'] | null) + regions: (Scalars['String'][] | null) + team_id: (Scalars['uuid'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'team_scrim_settings_max_fields' +} + + +/** aggregate min on columns */ +export interface team_scrim_settings_min_fields { + created_at: (Scalars['timestamptz'] | null) + elo_max: (Scalars['Int'] | null) + elo_min: (Scalars['Int'] | null) + id: (Scalars['uuid'] | null) + map_ids: (Scalars['uuid'][] | null) + notes: (Scalars['String'] | null) + regions: (Scalars['String'][] | null) + team_id: (Scalars['uuid'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'team_scrim_settings_min_fields' +} + + +/** response of any mutation on the table "team_scrim_settings" */ +export interface team_scrim_settings_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: team_scrim_settings[] + __typename: 'team_scrim_settings_mutation_response' +} + + +/** select columns of table "team_scrim_settings" */ +export type team_scrim_settings_select_column = 'allow_outside_availability' | 'created_at' | 'elo_max' | 'elo_min' | 'enabled' | 'id' | 'map_ids' | 'notes' | 'regions' | 'team_id' | 'updated_at' + + +/** aggregate stddev on columns */ +export interface team_scrim_settings_stddev_fields { + elo_max: (Scalars['Float'] | null) + elo_min: (Scalars['Float'] | null) + __typename: 'team_scrim_settings_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface team_scrim_settings_stddev_pop_fields { + elo_max: (Scalars['Float'] | null) + elo_min: (Scalars['Float'] | null) + __typename: 'team_scrim_settings_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface team_scrim_settings_stddev_samp_fields { + elo_max: (Scalars['Float'] | null) + elo_min: (Scalars['Float'] | null) + __typename: 'team_scrim_settings_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface team_scrim_settings_sum_fields { + elo_max: (Scalars['Int'] | null) + elo_min: (Scalars['Int'] | null) + __typename: 'team_scrim_settings_sum_fields' +} + + +/** update columns of table "team_scrim_settings" */ +export type team_scrim_settings_update_column = 'allow_outside_availability' | 'created_at' | 'elo_max' | 'elo_min' | 'enabled' | 'id' | 'map_ids' | 'notes' | 'regions' | 'team_id' | 'updated_at' + + +/** aggregate var_pop on columns */ +export interface team_scrim_settings_var_pop_fields { + elo_max: (Scalars['Float'] | null) + elo_min: (Scalars['Float'] | null) + __typename: 'team_scrim_settings_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface team_scrim_settings_var_samp_fields { + elo_max: (Scalars['Float'] | null) + elo_min: (Scalars['Float'] | null) + __typename: 'team_scrim_settings_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface team_scrim_settings_variance_fields { + elo_max: (Scalars['Float'] | null) + elo_min: (Scalars['Float'] | null) + __typename: 'team_scrim_settings_variance_fields' +} + + +/** columns and relationships of "team_suggestions" */ +export interface team_suggestions { + created_at: Scalars['timestamptz'] + group_hash: Scalars['String'] + id: Scalars['uuid'] + last_notified_at: (Scalars['timestamptz'] | null) + member_steam_ids: Scalars['bigint'][] + status: Scalars['String'] + together_count: Scalars['Int'] + __typename: 'team_suggestions' +} + + +/** aggregated selection of "team_suggestions" */ +export interface team_suggestions_aggregate { + aggregate: (team_suggestions_aggregate_fields | null) + nodes: team_suggestions[] + __typename: 'team_suggestions_aggregate' +} + + +/** aggregate fields of "team_suggestions" */ +export interface team_suggestions_aggregate_fields { + avg: (team_suggestions_avg_fields | null) + count: Scalars['Int'] + max: (team_suggestions_max_fields | null) + min: (team_suggestions_min_fields | null) + stddev: (team_suggestions_stddev_fields | null) + stddev_pop: (team_suggestions_stddev_pop_fields | null) + stddev_samp: (team_suggestions_stddev_samp_fields | null) + sum: (team_suggestions_sum_fields | null) + var_pop: (team_suggestions_var_pop_fields | null) + var_samp: (team_suggestions_var_samp_fields | null) + variance: (team_suggestions_variance_fields | null) + __typename: 'team_suggestions_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface team_suggestions_avg_fields { + together_count: (Scalars['Float'] | null) + __typename: 'team_suggestions_avg_fields' +} + + +/** unique or primary key constraints on table "team_suggestions" */ +export type team_suggestions_constraint = 'team_suggestions_group_hash_key' | 'team_suggestions_pkey' + + +/** aggregate max on columns */ +export interface team_suggestions_max_fields { + created_at: (Scalars['timestamptz'] | null) + group_hash: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + last_notified_at: (Scalars['timestamptz'] | null) + member_steam_ids: (Scalars['bigint'][] | null) + status: (Scalars['String'] | null) + together_count: (Scalars['Int'] | null) + __typename: 'team_suggestions_max_fields' +} + + +/** aggregate min on columns */ +export interface team_suggestions_min_fields { + created_at: (Scalars['timestamptz'] | null) + group_hash: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + last_notified_at: (Scalars['timestamptz'] | null) + member_steam_ids: (Scalars['bigint'][] | null) + status: (Scalars['String'] | null) + together_count: (Scalars['Int'] | null) + __typename: 'team_suggestions_min_fields' +} + + +/** response of any mutation on the table "team_suggestions" */ +export interface team_suggestions_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: team_suggestions[] + __typename: 'team_suggestions_mutation_response' +} + + +/** select columns of table "team_suggestions" */ +export type team_suggestions_select_column = 'created_at' | 'group_hash' | 'id' | 'last_notified_at' | 'member_steam_ids' | 'status' | 'together_count' + + +/** aggregate stddev on columns */ +export interface team_suggestions_stddev_fields { + together_count: (Scalars['Float'] | null) + __typename: 'team_suggestions_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface team_suggestions_stddev_pop_fields { + together_count: (Scalars['Float'] | null) + __typename: 'team_suggestions_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface team_suggestions_stddev_samp_fields { + together_count: (Scalars['Float'] | null) + __typename: 'team_suggestions_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface team_suggestions_sum_fields { + together_count: (Scalars['Int'] | null) + __typename: 'team_suggestions_sum_fields' +} + + +/** update columns of table "team_suggestions" */ +export type team_suggestions_update_column = 'created_at' | 'group_hash' | 'id' | 'last_notified_at' | 'member_steam_ids' | 'status' | 'together_count' + + +/** aggregate var_pop on columns */ +export interface team_suggestions_var_pop_fields { + together_count: (Scalars['Float'] | null) + __typename: 'team_suggestions_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface team_suggestions_var_samp_fields { + together_count: (Scalars['Float'] | null) + __typename: 'team_suggestions_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface team_suggestions_variance_fields { + together_count: (Scalars['Float'] | null) + __typename: 'team_suggestions_variance_fields' +} + + +/** columns and relationships of "teams" */ +export interface teams { + avatar_url: (Scalars['String'] | null) + /** An array relationship */ + awards: award_recipients[] + /** An aggregate relationship */ + awards_aggregate: award_recipients_aggregate + /** A computed field, executes function "can_change_team_role" */ + can_change_role: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_invite_to_team" */ + can_invite: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_manage_team_scrims" */ + can_manage_scrims: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_remove_from_team" */ + can_remove: (Scalars['Boolean'] | null) + /** An object relationship */ + captain: (players | null) + captain_steam_id: (Scalars['bigint'] | null) + id: Scalars['uuid'] + /** An array relationship */ + invites: team_invites[] + /** An aggregate relationship */ + invites_aggregate: team_invites_aggregate + is_organization: Scalars['Boolean'] + /** An array relationship */ + match_lineups: match_lineups[] + /** An aggregate relationship */ + match_lineups_aggregate: match_lineups_aggregate + /** A computed field, executes function "get_team_matches" */ + matches: (matches[] | null) + name: Scalars['String'] + /** An object relationship */ + owner: players + owner_steam_id: Scalars['bigint'] + /** An object relationship */ + ranks: (v_team_ranks | null) + /** An object relationship */ + reputation: (v_team_reputation | null) + /** A computed field, executes function "team_role" */ + role: (Scalars['String'] | null) + /** An array relationship */ + roster: team_roster[] + /** An aggregate relationship */ + roster_aggregate: team_roster_aggregate + /** An array relationship */ + scrim_availability: team_scrim_availability[] + /** An aggregate relationship */ + scrim_availability_aggregate: team_scrim_availability_aggregate + /** An object relationship */ + scrim_settings: (team_scrim_settings | null) + short_name: Scalars['String'] + /** An array relationship */ + tournament_teams: tournament_teams[] + /** An aggregate relationship */ + tournament_teams_aggregate: tournament_teams_aggregate + __typename: 'teams' +} + + +/** aggregated selection of "teams" */ +export interface teams_aggregate { + aggregate: (teams_aggregate_fields | null) + nodes: teams[] + __typename: 'teams_aggregate' +} + + +/** aggregate fields of "teams" */ +export interface teams_aggregate_fields { + avg: (teams_avg_fields | null) + count: Scalars['Int'] + max: (teams_max_fields | null) + min: (teams_min_fields | null) + stddev: (teams_stddev_fields | null) + stddev_pop: (teams_stddev_pop_fields | null) + stddev_samp: (teams_stddev_samp_fields | null) + sum: (teams_sum_fields | null) + var_pop: (teams_var_pop_fields | null) + var_samp: (teams_var_samp_fields | null) + variance: (teams_variance_fields | null) + __typename: 'teams_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface teams_avg_fields { + captain_steam_id: (Scalars['Float'] | null) + owner_steam_id: (Scalars['Float'] | null) + __typename: 'teams_avg_fields' +} + + +/** unique or primary key constraints on table "teams" */ +export type teams_constraint = 'teams_name_key' | 'teams_pkey' + + +/** aggregate max on columns */ +export interface teams_max_fields { + avatar_url: (Scalars['String'] | null) + captain_steam_id: (Scalars['bigint'] | null) + id: (Scalars['uuid'] | null) + name: (Scalars['String'] | null) + owner_steam_id: (Scalars['bigint'] | null) + /** A computed field, executes function "team_role" */ + role: (Scalars['String'] | null) + short_name: (Scalars['String'] | null) + __typename: 'teams_max_fields' +} + + +/** aggregate min on columns */ +export interface teams_min_fields { + avatar_url: (Scalars['String'] | null) + captain_steam_id: (Scalars['bigint'] | null) + id: (Scalars['uuid'] | null) + name: (Scalars['String'] | null) + owner_steam_id: (Scalars['bigint'] | null) + /** A computed field, executes function "team_role" */ + role: (Scalars['String'] | null) + short_name: (Scalars['String'] | null) + __typename: 'teams_min_fields' +} + + +/** response of any mutation on the table "teams" */ +export interface teams_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: teams[] + __typename: 'teams_mutation_response' +} + + +/** select columns of table "teams" */ +export type teams_select_column = 'avatar_url' | 'captain_steam_id' | 'id' | 'is_organization' | 'name' | 'owner_steam_id' | 'short_name' + + +/** select "teams_aggregate_bool_exp_bool_and_arguments_columns" columns of table "teams" */ +export type teams_select_column_teams_aggregate_bool_exp_bool_and_arguments_columns = 'is_organization' + + +/** select "teams_aggregate_bool_exp_bool_or_arguments_columns" columns of table "teams" */ +export type teams_select_column_teams_aggregate_bool_exp_bool_or_arguments_columns = 'is_organization' + + +/** aggregate stddev on columns */ +export interface teams_stddev_fields { + captain_steam_id: (Scalars['Float'] | null) + owner_steam_id: (Scalars['Float'] | null) + __typename: 'teams_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface teams_stddev_pop_fields { + captain_steam_id: (Scalars['Float'] | null) + owner_steam_id: (Scalars['Float'] | null) + __typename: 'teams_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface teams_stddev_samp_fields { + captain_steam_id: (Scalars['Float'] | null) + owner_steam_id: (Scalars['Float'] | null) + __typename: 'teams_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface teams_sum_fields { + captain_steam_id: (Scalars['bigint'] | null) + owner_steam_id: (Scalars['bigint'] | null) + __typename: 'teams_sum_fields' +} + + +/** update columns of table "teams" */ +export type teams_update_column = 'avatar_url' | 'captain_steam_id' | 'id' | 'is_organization' | 'name' | 'owner_steam_id' | 'short_name' + + +/** aggregate var_pop on columns */ +export interface teams_var_pop_fields { + captain_steam_id: (Scalars['Float'] | null) + owner_steam_id: (Scalars['Float'] | null) + __typename: 'teams_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface teams_var_samp_fields { + captain_steam_id: (Scalars['Float'] | null) + owner_steam_id: (Scalars['Float'] | null) + __typename: 'teams_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface teams_variance_fields { + captain_steam_id: (Scalars['Float'] | null) + owner_steam_id: (Scalars['Float'] | null) + __typename: 'teams_variance_fields' +} + + +/** columns and relationships of "tournament_awards" */ +export interface tournament_awards { + /** An object relationship */ + award: (awards | null) + award_id: (Scalars['uuid'] | null) + created_at: Scalars['timestamptz'] + custom_name: (Scalars['String'] | null) + id: Scalars['uuid'] + image_url: (Scalars['String'] | null) + placement: Scalars['Int'] + silhouette: (Scalars['Int'] | null) + /** An object relationship */ + tournament: tournaments + tournament_id: Scalars['uuid'] + updated_at: Scalars['timestamptz'] + __typename: 'tournament_awards' +} + + +/** aggregated selection of "tournament_awards" */ +export interface tournament_awards_aggregate { + aggregate: (tournament_awards_aggregate_fields | null) + nodes: tournament_awards[] + __typename: 'tournament_awards_aggregate' +} + + +/** aggregate fields of "tournament_awards" */ +export interface tournament_awards_aggregate_fields { + avg: (tournament_awards_avg_fields | null) + count: Scalars['Int'] + max: (tournament_awards_max_fields | null) + min: (tournament_awards_min_fields | null) + stddev: (tournament_awards_stddev_fields | null) + stddev_pop: (tournament_awards_stddev_pop_fields | null) + stddev_samp: (tournament_awards_stddev_samp_fields | null) + sum: (tournament_awards_sum_fields | null) + var_pop: (tournament_awards_var_pop_fields | null) + var_samp: (tournament_awards_var_samp_fields | null) + variance: (tournament_awards_variance_fields | null) + __typename: 'tournament_awards_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface tournament_awards_avg_fields { + placement: (Scalars['Float'] | null) + silhouette: (Scalars['Float'] | null) + __typename: 'tournament_awards_avg_fields' +} + + +/** unique or primary key constraints on table "tournament_awards" */ +export type tournament_awards_constraint = 'tournament_awards_pkey' | 'tournament_awards_tournament_id_placement_key' + + +/** aggregate max on columns */ +export interface tournament_awards_max_fields { + award_id: (Scalars['uuid'] | null) + created_at: (Scalars['timestamptz'] | null) + custom_name: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + image_url: (Scalars['String'] | null) + placement: (Scalars['Int'] | null) + silhouette: (Scalars['Int'] | null) + tournament_id: (Scalars['uuid'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'tournament_awards_max_fields' +} + + +/** aggregate min on columns */ +export interface tournament_awards_min_fields { + award_id: (Scalars['uuid'] | null) + created_at: (Scalars['timestamptz'] | null) + custom_name: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + image_url: (Scalars['String'] | null) + placement: (Scalars['Int'] | null) + silhouette: (Scalars['Int'] | null) + tournament_id: (Scalars['uuid'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'tournament_awards_min_fields' +} + + +/** response of any mutation on the table "tournament_awards" */ +export interface tournament_awards_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: tournament_awards[] + __typename: 'tournament_awards_mutation_response' +} + + +/** select columns of table "tournament_awards" */ +export type tournament_awards_select_column = 'award_id' | 'created_at' | 'custom_name' | 'id' | 'image_url' | 'placement' | 'silhouette' | 'tournament_id' | 'updated_at' + + +/** aggregate stddev on columns */ +export interface tournament_awards_stddev_fields { + placement: (Scalars['Float'] | null) + silhouette: (Scalars['Float'] | null) + __typename: 'tournament_awards_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface tournament_awards_stddev_pop_fields { + placement: (Scalars['Float'] | null) + silhouette: (Scalars['Float'] | null) + __typename: 'tournament_awards_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface tournament_awards_stddev_samp_fields { + placement: (Scalars['Float'] | null) + silhouette: (Scalars['Float'] | null) + __typename: 'tournament_awards_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface tournament_awards_sum_fields { + placement: (Scalars['Int'] | null) + silhouette: (Scalars['Int'] | null) + __typename: 'tournament_awards_sum_fields' +} + + +/** update columns of table "tournament_awards" */ +export type tournament_awards_update_column = 'award_id' | 'created_at' | 'custom_name' | 'id' | 'image_url' | 'placement' | 'silhouette' | 'tournament_id' | 'updated_at' + + +/** aggregate var_pop on columns */ +export interface tournament_awards_var_pop_fields { + placement: (Scalars['Float'] | null) + silhouette: (Scalars['Float'] | null) + __typename: 'tournament_awards_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface tournament_awards_var_samp_fields { + placement: (Scalars['Float'] | null) + silhouette: (Scalars['Float'] | null) + __typename: 'tournament_awards_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface tournament_awards_variance_fields { + placement: (Scalars['Float'] | null) + silhouette: (Scalars['Float'] | null) + __typename: 'tournament_awards_variance_fields' +} + + +/** columns and relationships of "tournament_brackets" */ +export interface tournament_brackets { + bye: Scalars['Boolean'] + created_at: Scalars['timestamptz'] + /** A computed field, executes function "get_feeding_brackets" */ + feeding_brackets: (tournament_brackets[] | null) + finished: Scalars['Boolean'] + group: (Scalars['numeric'] | null) + id: Scalars['uuid'] + /** An object relationship */ + loser_bracket: (tournament_brackets | null) + loser_parent_bracket_id: (Scalars['uuid'] | null) + /** An object relationship */ + match: (matches | null) + match_id: (Scalars['uuid'] | null) + match_number: (Scalars['Int'] | null) + match_options_id: (Scalars['uuid'] | null) + /** An object relationship */ + options: (match_options | null) + /** An object relationship */ + parent_bracket: (tournament_brackets | null) + parent_bracket_id: (Scalars['uuid'] | null) + path: (Scalars['String'] | null) + round: Scalars['Int'] + scheduled_at: (Scalars['timestamptz'] | null) + scheduled_eta: (Scalars['timestamptz'] | null) + /** An array relationship */ + scheduling_proposals: league_scheduling_proposals[] + /** An aggregate relationship */ + scheduling_proposals_aggregate: league_scheduling_proposals_aggregate + /** An object relationship */ + stage: tournament_stages + /** An object relationship */ + team_1: (tournament_teams | null) + team_1_seed: (Scalars['Int'] | null) + /** An object relationship */ + team_2: (tournament_teams | null) + team_2_seed: (Scalars['Int'] | null) + tournament_stage_id: Scalars['uuid'] + tournament_team_id_1: (Scalars['uuid'] | null) + tournament_team_id_2: (Scalars['uuid'] | null) + __typename: 'tournament_brackets' +} + + +/** aggregated selection of "tournament_brackets" */ +export interface tournament_brackets_aggregate { + aggregate: (tournament_brackets_aggregate_fields | null) + nodes: tournament_brackets[] + __typename: 'tournament_brackets_aggregate' +} + + +/** aggregate fields of "tournament_brackets" */ +export interface tournament_brackets_aggregate_fields { + avg: (tournament_brackets_avg_fields | null) + count: Scalars['Int'] + max: (tournament_brackets_max_fields | null) + min: (tournament_brackets_min_fields | null) + stddev: (tournament_brackets_stddev_fields | null) + stddev_pop: (tournament_brackets_stddev_pop_fields | null) + stddev_samp: (tournament_brackets_stddev_samp_fields | null) + sum: (tournament_brackets_sum_fields | null) + var_pop: (tournament_brackets_var_pop_fields | null) + var_samp: (tournament_brackets_var_samp_fields | null) + variance: (tournament_brackets_variance_fields | null) + __typename: 'tournament_brackets_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface tournament_brackets_avg_fields { + group: (Scalars['Float'] | null) + match_number: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + team_1_seed: (Scalars['Float'] | null) + team_2_seed: (Scalars['Float'] | null) + __typename: 'tournament_brackets_avg_fields' +} + + +/** unique or primary key constraints on table "tournament_brackets" */ +export type tournament_brackets_constraint = 'touarnment_brackets_pkey' | 'tournament_brackets_id_tournament_team_id_1_tournament_team_id_' + + +/** aggregate max on columns */ +export interface tournament_brackets_max_fields { + created_at: (Scalars['timestamptz'] | null) + group: (Scalars['numeric'] | null) + id: (Scalars['uuid'] | null) + loser_parent_bracket_id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + match_number: (Scalars['Int'] | null) + match_options_id: (Scalars['uuid'] | null) + parent_bracket_id: (Scalars['uuid'] | null) + path: (Scalars['String'] | null) + round: (Scalars['Int'] | null) + scheduled_at: (Scalars['timestamptz'] | null) + scheduled_eta: (Scalars['timestamptz'] | null) + team_1_seed: (Scalars['Int'] | null) + team_2_seed: (Scalars['Int'] | null) + tournament_stage_id: (Scalars['uuid'] | null) + tournament_team_id_1: (Scalars['uuid'] | null) + tournament_team_id_2: (Scalars['uuid'] | null) + __typename: 'tournament_brackets_max_fields' +} + + +/** aggregate min on columns */ +export interface tournament_brackets_min_fields { + created_at: (Scalars['timestamptz'] | null) + group: (Scalars['numeric'] | null) + id: (Scalars['uuid'] | null) + loser_parent_bracket_id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + match_number: (Scalars['Int'] | null) + match_options_id: (Scalars['uuid'] | null) + parent_bracket_id: (Scalars['uuid'] | null) + path: (Scalars['String'] | null) + round: (Scalars['Int'] | null) + scheduled_at: (Scalars['timestamptz'] | null) + scheduled_eta: (Scalars['timestamptz'] | null) + team_1_seed: (Scalars['Int'] | null) + team_2_seed: (Scalars['Int'] | null) + tournament_stage_id: (Scalars['uuid'] | null) + tournament_team_id_1: (Scalars['uuid'] | null) + tournament_team_id_2: (Scalars['uuid'] | null) + __typename: 'tournament_brackets_min_fields' +} + + +/** response of any mutation on the table "tournament_brackets" */ +export interface tournament_brackets_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: tournament_brackets[] + __typename: 'tournament_brackets_mutation_response' +} + + +/** select columns of table "tournament_brackets" */ +export type tournament_brackets_select_column = 'bye' | 'created_at' | 'finished' | 'group' | 'id' | 'loser_parent_bracket_id' | 'match_id' | 'match_number' | 'match_options_id' | 'parent_bracket_id' | 'path' | 'round' | 'scheduled_at' | 'scheduled_eta' | 'team_1_seed' | 'team_2_seed' | 'tournament_stage_id' | 'tournament_team_id_1' | 'tournament_team_id_2' + + +/** select "tournament_brackets_aggregate_bool_exp_bool_and_arguments_columns" columns of table "tournament_brackets" */ +export type tournament_brackets_select_column_tournament_brackets_aggregate_bool_exp_bool_and_arguments_columns = 'bye' | 'finished' + + +/** select "tournament_brackets_aggregate_bool_exp_bool_or_arguments_columns" columns of table "tournament_brackets" */ +export type tournament_brackets_select_column_tournament_brackets_aggregate_bool_exp_bool_or_arguments_columns = 'bye' | 'finished' + + +/** aggregate stddev on columns */ +export interface tournament_brackets_stddev_fields { + group: (Scalars['Float'] | null) + match_number: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + team_1_seed: (Scalars['Float'] | null) + team_2_seed: (Scalars['Float'] | null) + __typename: 'tournament_brackets_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface tournament_brackets_stddev_pop_fields { + group: (Scalars['Float'] | null) + match_number: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + team_1_seed: (Scalars['Float'] | null) + team_2_seed: (Scalars['Float'] | null) + __typename: 'tournament_brackets_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface tournament_brackets_stddev_samp_fields { + group: (Scalars['Float'] | null) + match_number: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + team_1_seed: (Scalars['Float'] | null) + team_2_seed: (Scalars['Float'] | null) + __typename: 'tournament_brackets_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface tournament_brackets_sum_fields { + group: (Scalars['numeric'] | null) + match_number: (Scalars['Int'] | null) + round: (Scalars['Int'] | null) + team_1_seed: (Scalars['Int'] | null) + team_2_seed: (Scalars['Int'] | null) + __typename: 'tournament_brackets_sum_fields' +} + + +/** update columns of table "tournament_brackets" */ +export type tournament_brackets_update_column = 'bye' | 'created_at' | 'finished' | 'group' | 'id' | 'loser_parent_bracket_id' | 'match_id' | 'match_number' | 'match_options_id' | 'parent_bracket_id' | 'path' | 'round' | 'scheduled_at' | 'scheduled_eta' | 'team_1_seed' | 'team_2_seed' | 'tournament_stage_id' | 'tournament_team_id_1' | 'tournament_team_id_2' + + +/** aggregate var_pop on columns */ +export interface tournament_brackets_var_pop_fields { + group: (Scalars['Float'] | null) + match_number: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + team_1_seed: (Scalars['Float'] | null) + team_2_seed: (Scalars['Float'] | null) + __typename: 'tournament_brackets_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface tournament_brackets_var_samp_fields { + group: (Scalars['Float'] | null) + match_number: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + team_1_seed: (Scalars['Float'] | null) + team_2_seed: (Scalars['Float'] | null) + __typename: 'tournament_brackets_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface tournament_brackets_variance_fields { + group: (Scalars['Float'] | null) + match_number: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + team_1_seed: (Scalars['Float'] | null) + team_2_seed: (Scalars['Float'] | null) + __typename: 'tournament_brackets_variance_fields' +} + + +/** columns and relationships of "tournament_categories" */ +export interface tournament_categories { + category: e_tournament_categories_enum + /** An object relationship */ + e_tournament_category: e_tournament_categories + /** An object relationship */ + tournament: tournaments + tournament_id: Scalars['uuid'] + __typename: 'tournament_categories' +} + + +/** aggregated selection of "tournament_categories" */ +export interface tournament_categories_aggregate { + aggregate: (tournament_categories_aggregate_fields | null) + nodes: tournament_categories[] + __typename: 'tournament_categories_aggregate' +} + + +/** aggregate fields of "tournament_categories" */ +export interface tournament_categories_aggregate_fields { + count: Scalars['Int'] + max: (tournament_categories_max_fields | null) + min: (tournament_categories_min_fields | null) + __typename: 'tournament_categories_aggregate_fields' +} + + +/** unique or primary key constraints on table "tournament_categories" */ +export type tournament_categories_constraint = 'tournament_categories_pkey' + + +/** aggregate max on columns */ +export interface tournament_categories_max_fields { + tournament_id: (Scalars['uuid'] | null) + __typename: 'tournament_categories_max_fields' +} + + +/** aggregate min on columns */ +export interface tournament_categories_min_fields { + tournament_id: (Scalars['uuid'] | null) + __typename: 'tournament_categories_min_fields' +} + + +/** response of any mutation on the table "tournament_categories" */ +export interface tournament_categories_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: tournament_categories[] + __typename: 'tournament_categories_mutation_response' +} + + +/** select columns of table "tournament_categories" */ +export type tournament_categories_select_column = 'category' | 'tournament_id' + + +/** update columns of table "tournament_categories" */ +export type tournament_categories_update_column = 'category' | 'tournament_id' + + +/** columns and relationships of "tournament_free_agents" */ +export interface tournament_free_agents { + checked_in_at: (Scalars['timestamptz'] | null) + /** Registration priority: decides who makes the cut */ + created_at: Scalars['timestamptz'] + /** An object relationship */ + e_tournament_free_agent_status: e_tournament_free_agent_statuses + id: Scalars['uuid'] + party_id: (Scalars['uuid'] | null) + /** An object relationship */ + player: players + player_steam_id: Scalars['bigint'] + status: e_tournament_free_agent_statuses_enum + /** An object relationship */ + tournament: tournaments + tournament_id: Scalars['uuid'] + /** An object relationship */ + tournament_team: (tournament_teams | null) + tournament_team_id: (Scalars['uuid'] | null) + __typename: 'tournament_free_agents' +} + + +/** aggregated selection of "tournament_free_agents" */ +export interface tournament_free_agents_aggregate { + aggregate: (tournament_free_agents_aggregate_fields | null) + nodes: tournament_free_agents[] + __typename: 'tournament_free_agents_aggregate' +} + + +/** aggregate fields of "tournament_free_agents" */ +export interface tournament_free_agents_aggregate_fields { + avg: (tournament_free_agents_avg_fields | null) + count: Scalars['Int'] + max: (tournament_free_agents_max_fields | null) + min: (tournament_free_agents_min_fields | null) + stddev: (tournament_free_agents_stddev_fields | null) + stddev_pop: (tournament_free_agents_stddev_pop_fields | null) + stddev_samp: (tournament_free_agents_stddev_samp_fields | null) + sum: (tournament_free_agents_sum_fields | null) + var_pop: (tournament_free_agents_var_pop_fields | null) + var_samp: (tournament_free_agents_var_samp_fields | null) + variance: (tournament_free_agents_variance_fields | null) + __typename: 'tournament_free_agents_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface tournament_free_agents_avg_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_free_agents_avg_fields' +} + + +/** unique or primary key constraints on table "tournament_free_agents" */ +export type tournament_free_agents_constraint = 'tournament_free_agents_pkey' | 'tournament_free_agents_tournament_id_player_steam_id_key' + + +/** aggregate max on columns */ +export interface tournament_free_agents_max_fields { + checked_in_at: (Scalars['timestamptz'] | null) + /** Registration priority: decides who makes the cut */ + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + party_id: (Scalars['uuid'] | null) + player_steam_id: (Scalars['bigint'] | null) + tournament_id: (Scalars['uuid'] | null) + tournament_team_id: (Scalars['uuid'] | null) + __typename: 'tournament_free_agents_max_fields' +} + + +/** aggregate min on columns */ +export interface tournament_free_agents_min_fields { + checked_in_at: (Scalars['timestamptz'] | null) + /** Registration priority: decides who makes the cut */ + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + party_id: (Scalars['uuid'] | null) + player_steam_id: (Scalars['bigint'] | null) + tournament_id: (Scalars['uuid'] | null) + tournament_team_id: (Scalars['uuid'] | null) + __typename: 'tournament_free_agents_min_fields' +} + + +/** response of any mutation on the table "tournament_free_agents" */ +export interface tournament_free_agents_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: tournament_free_agents[] + __typename: 'tournament_free_agents_mutation_response' +} + + +/** select columns of table "tournament_free_agents" */ +export type tournament_free_agents_select_column = 'checked_in_at' | 'created_at' | 'id' | 'party_id' | 'player_steam_id' | 'status' | 'tournament_id' | 'tournament_team_id' + + +/** aggregate stddev on columns */ +export interface tournament_free_agents_stddev_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_free_agents_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface tournament_free_agents_stddev_pop_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_free_agents_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface tournament_free_agents_stddev_samp_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_free_agents_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface tournament_free_agents_sum_fields { + player_steam_id: (Scalars['bigint'] | null) + __typename: 'tournament_free_agents_sum_fields' +} + + +/** update columns of table "tournament_free_agents" */ +export type tournament_free_agents_update_column = 'checked_in_at' | 'created_at' | 'id' | 'party_id' | 'player_steam_id' | 'status' | 'tournament_id' | 'tournament_team_id' + + +/** aggregate var_pop on columns */ +export interface tournament_free_agents_var_pop_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_free_agents_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface tournament_free_agents_var_samp_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_free_agents_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface tournament_free_agents_variance_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_free_agents_variance_fields' +} + + +/** columns and relationships of "tournament_invite_code_uses" */ +export interface tournament_invite_code_uses { + /** An object relationship */ + invite_code: tournament_invite_codes + invite_code_id: Scalars['uuid'] + /** An object relationship */ + player: players + player_steam_id: Scalars['bigint'] + /** An object relationship */ + team: (teams | null) + team_id: (Scalars['uuid'] | null) + used_at: Scalars['timestamptz'] + __typename: 'tournament_invite_code_uses' +} + + +/** aggregated selection of "tournament_invite_code_uses" */ +export interface tournament_invite_code_uses_aggregate { + aggregate: (tournament_invite_code_uses_aggregate_fields | null) + nodes: tournament_invite_code_uses[] + __typename: 'tournament_invite_code_uses_aggregate' +} + + +/** aggregate fields of "tournament_invite_code_uses" */ +export interface tournament_invite_code_uses_aggregate_fields { + avg: (tournament_invite_code_uses_avg_fields | null) + count: Scalars['Int'] + max: (tournament_invite_code_uses_max_fields | null) + min: (tournament_invite_code_uses_min_fields | null) + stddev: (tournament_invite_code_uses_stddev_fields | null) + stddev_pop: (tournament_invite_code_uses_stddev_pop_fields | null) + stddev_samp: (tournament_invite_code_uses_stddev_samp_fields | null) + sum: (tournament_invite_code_uses_sum_fields | null) + var_pop: (tournament_invite_code_uses_var_pop_fields | null) + var_samp: (tournament_invite_code_uses_var_samp_fields | null) + variance: (tournament_invite_code_uses_variance_fields | null) + __typename: 'tournament_invite_code_uses_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface tournament_invite_code_uses_avg_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_invite_code_uses_avg_fields' +} + + +/** unique or primary key constraints on table "tournament_invite_code_uses" */ +export type tournament_invite_code_uses_constraint = 'tournament_invite_code_uses_pkey' + + +/** aggregate max on columns */ +export interface tournament_invite_code_uses_max_fields { + invite_code_id: (Scalars['uuid'] | null) + player_steam_id: (Scalars['bigint'] | null) + team_id: (Scalars['uuid'] | null) + used_at: (Scalars['timestamptz'] | null) + __typename: 'tournament_invite_code_uses_max_fields' +} + + +/** aggregate min on columns */ +export interface tournament_invite_code_uses_min_fields { + invite_code_id: (Scalars['uuid'] | null) + player_steam_id: (Scalars['bigint'] | null) + team_id: (Scalars['uuid'] | null) + used_at: (Scalars['timestamptz'] | null) + __typename: 'tournament_invite_code_uses_min_fields' +} + + +/** response of any mutation on the table "tournament_invite_code_uses" */ +export interface tournament_invite_code_uses_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: tournament_invite_code_uses[] + __typename: 'tournament_invite_code_uses_mutation_response' +} + + +/** select columns of table "tournament_invite_code_uses" */ +export type tournament_invite_code_uses_select_column = 'invite_code_id' | 'player_steam_id' | 'team_id' | 'used_at' + + +/** aggregate stddev on columns */ +export interface tournament_invite_code_uses_stddev_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_invite_code_uses_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface tournament_invite_code_uses_stddev_pop_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_invite_code_uses_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface tournament_invite_code_uses_stddev_samp_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_invite_code_uses_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface tournament_invite_code_uses_sum_fields { + player_steam_id: (Scalars['bigint'] | null) + __typename: 'tournament_invite_code_uses_sum_fields' +} + + +/** update columns of table "tournament_invite_code_uses" */ +export type tournament_invite_code_uses_update_column = 'invite_code_id' | 'player_steam_id' | 'team_id' | 'used_at' + + +/** aggregate var_pop on columns */ +export interface tournament_invite_code_uses_var_pop_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_invite_code_uses_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface tournament_invite_code_uses_var_samp_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_invite_code_uses_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface tournament_invite_code_uses_variance_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_invite_code_uses_variance_fields' +} + + +/** columns and relationships of "tournament_invite_codes" */ +export interface tournament_invite_codes { + code: Scalars['String'] + created_at: Scalars['timestamptz'] + /** An object relationship */ + created_by: players + created_by_player_steam_id: Scalars['bigint'] + expires_at: (Scalars['timestamptz'] | null) + id: Scalars['uuid'] + max_uses: (Scalars['Int'] | null) + revoked_at: (Scalars['timestamptz'] | null) + /** An object relationship */ + tournament: tournaments + tournament_id: Scalars['uuid'] + /** An array relationship */ + used_by: tournament_invite_code_uses[] + /** An aggregate relationship */ + used_by_aggregate: tournament_invite_code_uses_aggregate + uses: Scalars['Int'] + __typename: 'tournament_invite_codes' +} + + +/** aggregated selection of "tournament_invite_codes" */ +export interface tournament_invite_codes_aggregate { + aggregate: (tournament_invite_codes_aggregate_fields | null) + nodes: tournament_invite_codes[] + __typename: 'tournament_invite_codes_aggregate' +} + + +/** aggregate fields of "tournament_invite_codes" */ +export interface tournament_invite_codes_aggregate_fields { + avg: (tournament_invite_codes_avg_fields | null) + count: Scalars['Int'] + max: (tournament_invite_codes_max_fields | null) + min: (tournament_invite_codes_min_fields | null) + stddev: (tournament_invite_codes_stddev_fields | null) + stddev_pop: (tournament_invite_codes_stddev_pop_fields | null) + stddev_samp: (tournament_invite_codes_stddev_samp_fields | null) + sum: (tournament_invite_codes_sum_fields | null) + var_pop: (tournament_invite_codes_var_pop_fields | null) + var_samp: (tournament_invite_codes_var_samp_fields | null) + variance: (tournament_invite_codes_variance_fields | null) + __typename: 'tournament_invite_codes_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface tournament_invite_codes_avg_fields { + created_by_player_steam_id: (Scalars['Float'] | null) + max_uses: (Scalars['Float'] | null) + uses: (Scalars['Float'] | null) + __typename: 'tournament_invite_codes_avg_fields' +} + + +/** unique or primary key constraints on table "tournament_invite_codes" */ +export type tournament_invite_codes_constraint = 'tournament_invite_codes_code_key' | 'tournament_invite_codes_pkey' + + +/** aggregate max on columns */ +export interface tournament_invite_codes_max_fields { + code: (Scalars['String'] | null) + created_at: (Scalars['timestamptz'] | null) + created_by_player_steam_id: (Scalars['bigint'] | null) + expires_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + max_uses: (Scalars['Int'] | null) + revoked_at: (Scalars['timestamptz'] | null) + tournament_id: (Scalars['uuid'] | null) + uses: (Scalars['Int'] | null) + __typename: 'tournament_invite_codes_max_fields' +} + + +/** aggregate min on columns */ +export interface tournament_invite_codes_min_fields { + code: (Scalars['String'] | null) + created_at: (Scalars['timestamptz'] | null) + created_by_player_steam_id: (Scalars['bigint'] | null) + expires_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + max_uses: (Scalars['Int'] | null) + revoked_at: (Scalars['timestamptz'] | null) + tournament_id: (Scalars['uuid'] | null) + uses: (Scalars['Int'] | null) + __typename: 'tournament_invite_codes_min_fields' +} + + +/** response of any mutation on the table "tournament_invite_codes" */ +export interface tournament_invite_codes_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: tournament_invite_codes[] + __typename: 'tournament_invite_codes_mutation_response' +} + + +/** select columns of table "tournament_invite_codes" */ +export type tournament_invite_codes_select_column = 'code' | 'created_at' | 'created_by_player_steam_id' | 'expires_at' | 'id' | 'max_uses' | 'revoked_at' | 'tournament_id' | 'uses' + + +/** aggregate stddev on columns */ +export interface tournament_invite_codes_stddev_fields { + created_by_player_steam_id: (Scalars['Float'] | null) + max_uses: (Scalars['Float'] | null) + uses: (Scalars['Float'] | null) + __typename: 'tournament_invite_codes_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface tournament_invite_codes_stddev_pop_fields { + created_by_player_steam_id: (Scalars['Float'] | null) + max_uses: (Scalars['Float'] | null) + uses: (Scalars['Float'] | null) + __typename: 'tournament_invite_codes_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface tournament_invite_codes_stddev_samp_fields { + created_by_player_steam_id: (Scalars['Float'] | null) + max_uses: (Scalars['Float'] | null) + uses: (Scalars['Float'] | null) + __typename: 'tournament_invite_codes_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface tournament_invite_codes_sum_fields { + created_by_player_steam_id: (Scalars['bigint'] | null) + max_uses: (Scalars['Int'] | null) + uses: (Scalars['Int'] | null) + __typename: 'tournament_invite_codes_sum_fields' +} + + +/** update columns of table "tournament_invite_codes" */ +export type tournament_invite_codes_update_column = 'code' | 'created_at' | 'created_by_player_steam_id' | 'expires_at' | 'id' | 'max_uses' | 'revoked_at' | 'tournament_id' | 'uses' + + +/** aggregate var_pop on columns */ +export interface tournament_invite_codes_var_pop_fields { + created_by_player_steam_id: (Scalars['Float'] | null) + max_uses: (Scalars['Float'] | null) + uses: (Scalars['Float'] | null) + __typename: 'tournament_invite_codes_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface tournament_invite_codes_var_samp_fields { + created_by_player_steam_id: (Scalars['Float'] | null) + max_uses: (Scalars['Float'] | null) + uses: (Scalars['Float'] | null) + __typename: 'tournament_invite_codes_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface tournament_invite_codes_variance_fields { + created_by_player_steam_id: (Scalars['Float'] | null) + max_uses: (Scalars['Float'] | null) + uses: (Scalars['Float'] | null) + __typename: 'tournament_invite_codes_variance_fields' +} + + +/** columns and relationships of "tournament_invites" */ +export interface tournament_invites { + created_at: Scalars['timestamptz'] + id: Scalars['uuid'] + /** An object relationship */ + invited_by: players + invited_by_player_steam_id: Scalars['bigint'] + /** An object relationship */ + player: (players | null) + steam_id: (Scalars['bigint'] | null) + /** An object relationship */ + team: (teams | null) + team_id: (Scalars['uuid'] | null) + /** An object relationship */ + tournament: tournaments + tournament_id: Scalars['uuid'] + __typename: 'tournament_invites' +} + + +/** aggregated selection of "tournament_invites" */ +export interface tournament_invites_aggregate { + aggregate: (tournament_invites_aggregate_fields | null) + nodes: tournament_invites[] + __typename: 'tournament_invites_aggregate' +} + + +/** aggregate fields of "tournament_invites" */ +export interface tournament_invites_aggregate_fields { + avg: (tournament_invites_avg_fields | null) + count: Scalars['Int'] + max: (tournament_invites_max_fields | null) + min: (tournament_invites_min_fields | null) + stddev: (tournament_invites_stddev_fields | null) + stddev_pop: (tournament_invites_stddev_pop_fields | null) + stddev_samp: (tournament_invites_stddev_samp_fields | null) + sum: (tournament_invites_sum_fields | null) + var_pop: (tournament_invites_var_pop_fields | null) + var_samp: (tournament_invites_var_samp_fields | null) + variance: (tournament_invites_variance_fields | null) + __typename: 'tournament_invites_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface tournament_invites_avg_fields { + invited_by_player_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'tournament_invites_avg_fields' +} + + +/** unique or primary key constraints on table "tournament_invites" */ +export type tournament_invites_constraint = 'idx_tournament_invites_player_unique' | 'idx_tournament_invites_team_unique' | 'tournament_invites_pkey' + + +/** aggregate max on columns */ +export interface tournament_invites_max_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + invited_by_player_steam_id: (Scalars['bigint'] | null) + steam_id: (Scalars['bigint'] | null) + team_id: (Scalars['uuid'] | null) + tournament_id: (Scalars['uuid'] | null) + __typename: 'tournament_invites_max_fields' +} + + +/** aggregate min on columns */ +export interface tournament_invites_min_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + invited_by_player_steam_id: (Scalars['bigint'] | null) + steam_id: (Scalars['bigint'] | null) + team_id: (Scalars['uuid'] | null) + tournament_id: (Scalars['uuid'] | null) + __typename: 'tournament_invites_min_fields' +} + + +/** response of any mutation on the table "tournament_invites" */ +export interface tournament_invites_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: tournament_invites[] + __typename: 'tournament_invites_mutation_response' +} + + +/** select columns of table "tournament_invites" */ +export type tournament_invites_select_column = 'created_at' | 'id' | 'invited_by_player_steam_id' | 'steam_id' | 'team_id' | 'tournament_id' + + +/** aggregate stddev on columns */ +export interface tournament_invites_stddev_fields { + invited_by_player_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'tournament_invites_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface tournament_invites_stddev_pop_fields { + invited_by_player_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'tournament_invites_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface tournament_invites_stddev_samp_fields { + invited_by_player_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'tournament_invites_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface tournament_invites_sum_fields { + invited_by_player_steam_id: (Scalars['bigint'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'tournament_invites_sum_fields' +} + + +/** update columns of table "tournament_invites" */ +export type tournament_invites_update_column = 'created_at' | 'id' | 'invited_by_player_steam_id' | 'steam_id' | 'team_id' | 'tournament_id' + + +/** aggregate var_pop on columns */ +export interface tournament_invites_var_pop_fields { + invited_by_player_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'tournament_invites_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface tournament_invites_var_samp_fields { + invited_by_player_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'tournament_invites_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface tournament_invites_variance_fields { + invited_by_player_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'tournament_invites_variance_fields' +} + + +/** columns and relationships of "tournament_leaderboard_entries" */ +export interface tournament_leaderboard_entries { + adr: Scalars['float8'] + assists: Scalars['Int'] + deaths: Scalars['Int'] + headshot_percentage: Scalars['float8'] + kdr: Scalars['float8'] + kills: Scalars['Int'] + matches_played: Scalars['Int'] + 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'] + rating: Scalars['float8'] + rounds_played: Scalars['Int'] + team_name: (Scalars['String'] | null) + tournament_team_id: (Scalars['uuid'] | null) + __typename: 'tournament_leaderboard_entries' +} + +export interface tournament_leaderboard_entries_aggregate { + aggregate: (tournament_leaderboard_entries_aggregate_fields | null) + nodes: tournament_leaderboard_entries[] + __typename: 'tournament_leaderboard_entries_aggregate' +} + + +/** aggregate fields of "tournament_leaderboard_entries" */ +export interface tournament_leaderboard_entries_aggregate_fields { + avg: (tournament_leaderboard_entries_avg_fields | null) + count: Scalars['Int'] + max: (tournament_leaderboard_entries_max_fields | null) + min: (tournament_leaderboard_entries_min_fields | null) + stddev: (tournament_leaderboard_entries_stddev_fields | null) + stddev_pop: (tournament_leaderboard_entries_stddev_pop_fields | null) + stddev_samp: (tournament_leaderboard_entries_stddev_samp_fields | null) + sum: (tournament_leaderboard_entries_sum_fields | null) + var_pop: (tournament_leaderboard_entries_var_pop_fields | null) + var_samp: (tournament_leaderboard_entries_var_samp_fields | null) + variance: (tournament_leaderboard_entries_variance_fields | null) + __typename: 'tournament_leaderboard_entries_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface tournament_leaderboard_entries_avg_fields { + adr: (Scalars['Float'] | null) + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + rating: (Scalars['Float'] | null) + rounds_played: (Scalars['Float'] | null) + __typename: 'tournament_leaderboard_entries_avg_fields' +} + + +/** aggregate max on columns */ +export interface tournament_leaderboard_entries_max_fields { + adr: (Scalars['float8'] | null) + assists: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) + headshot_percentage: (Scalars['float8'] | null) + kdr: (Scalars['float8'] | null) + kills: (Scalars['Int'] | null) + 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) + rating: (Scalars['float8'] | null) + rounds_played: (Scalars['Int'] | null) + team_name: (Scalars['String'] | null) + tournament_team_id: (Scalars['uuid'] | null) + __typename: 'tournament_leaderboard_entries_max_fields' +} + + +/** aggregate min on columns */ +export interface tournament_leaderboard_entries_min_fields { + adr: (Scalars['float8'] | null) + assists: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) + headshot_percentage: (Scalars['float8'] | null) + kdr: (Scalars['float8'] | null) + kills: (Scalars['Int'] | null) + 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) + rating: (Scalars['float8'] | null) + rounds_played: (Scalars['Int'] | null) + team_name: (Scalars['String'] | null) + tournament_team_id: (Scalars['uuid'] | null) + __typename: 'tournament_leaderboard_entries_min_fields' +} + + +/** response of any mutation on the table "tournament_leaderboard_entries" */ +export interface tournament_leaderboard_entries_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: tournament_leaderboard_entries[] + __typename: 'tournament_leaderboard_entries_mutation_response' +} + + +/** select columns of table "tournament_leaderboard_entries" */ +export type tournament_leaderboard_entries_select_column = 'adr' | 'assists' | 'deaths' | 'headshot_percentage' | 'kdr' | 'kills' | 'matches_played' | 'player_avatar_url' | 'player_country' | 'player_custom_avatar_url' | 'player_name' | 'player_steam_id' | 'rating' | 'rounds_played' | 'team_name' | 'tournament_team_id' + + +/** aggregate stddev on columns */ +export interface tournament_leaderboard_entries_stddev_fields { + adr: (Scalars['Float'] | null) + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + rating: (Scalars['Float'] | null) + rounds_played: (Scalars['Float'] | null) + __typename: 'tournament_leaderboard_entries_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface tournament_leaderboard_entries_stddev_pop_fields { + adr: (Scalars['Float'] | null) + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + rating: (Scalars['Float'] | null) + rounds_played: (Scalars['Float'] | null) + __typename: 'tournament_leaderboard_entries_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface tournament_leaderboard_entries_stddev_samp_fields { + adr: (Scalars['Float'] | null) + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + rating: (Scalars['Float'] | null) + rounds_played: (Scalars['Float'] | null) + __typename: 'tournament_leaderboard_entries_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface tournament_leaderboard_entries_sum_fields { + adr: (Scalars['float8'] | null) + assists: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) + headshot_percentage: (Scalars['float8'] | null) + kdr: (Scalars['float8'] | null) + kills: (Scalars['Int'] | null) + matches_played: (Scalars['Int'] | null) + rating: (Scalars['float8'] | null) + rounds_played: (Scalars['Int'] | null) + __typename: 'tournament_leaderboard_entries_sum_fields' +} + + +/** aggregate var_pop on columns */ +export interface tournament_leaderboard_entries_var_pop_fields { + adr: (Scalars['Float'] | null) + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + rating: (Scalars['Float'] | null) + rounds_played: (Scalars['Float'] | null) + __typename: 'tournament_leaderboard_entries_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface tournament_leaderboard_entries_var_samp_fields { + adr: (Scalars['Float'] | null) + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + rating: (Scalars['Float'] | null) + rounds_played: (Scalars['Float'] | null) + __typename: 'tournament_leaderboard_entries_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface tournament_leaderboard_entries_variance_fields { + adr: (Scalars['Float'] | null) + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + rating: (Scalars['Float'] | null) + rounds_played: (Scalars['Float'] | null) + __typename: 'tournament_leaderboard_entries_variance_fields' +} + + +/** columns and relationships of "tournament_no_shows" */ +export interface tournament_no_shows { + id: Scalars['uuid'] + occurred_at: Scalars['timestamptz'] + /** An object relationship */ + player: players + player_steam_id: Scalars['bigint'] + /** An object relationship */ + tournament: tournaments + tournament_id: Scalars['uuid'] + /** An object relationship */ + tournament_team: (tournament_teams | null) + tournament_team_id: (Scalars['uuid'] | null) + __typename: 'tournament_no_shows' +} + + +/** aggregated selection of "tournament_no_shows" */ +export interface tournament_no_shows_aggregate { + aggregate: (tournament_no_shows_aggregate_fields | null) + nodes: tournament_no_shows[] + __typename: 'tournament_no_shows_aggregate' +} + + +/** aggregate fields of "tournament_no_shows" */ +export interface tournament_no_shows_aggregate_fields { + avg: (tournament_no_shows_avg_fields | null) + count: Scalars['Int'] + max: (tournament_no_shows_max_fields | null) + min: (tournament_no_shows_min_fields | null) + stddev: (tournament_no_shows_stddev_fields | null) + stddev_pop: (tournament_no_shows_stddev_pop_fields | null) + stddev_samp: (tournament_no_shows_stddev_samp_fields | null) + sum: (tournament_no_shows_sum_fields | null) + var_pop: (tournament_no_shows_var_pop_fields | null) + var_samp: (tournament_no_shows_var_samp_fields | null) + variance: (tournament_no_shows_variance_fields | null) + __typename: 'tournament_no_shows_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface tournament_no_shows_avg_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_no_shows_avg_fields' +} + + +/** unique or primary key constraints on table "tournament_no_shows" */ +export type tournament_no_shows_constraint = 'tournament_no_shows_pkey' | 'tournament_no_shows_tournament_player_key' + + +/** aggregate max on columns */ +export interface tournament_no_shows_max_fields { + id: (Scalars['uuid'] | null) + occurred_at: (Scalars['timestamptz'] | null) + player_steam_id: (Scalars['bigint'] | null) + tournament_id: (Scalars['uuid'] | null) + tournament_team_id: (Scalars['uuid'] | null) + __typename: 'tournament_no_shows_max_fields' +} + + +/** aggregate min on columns */ +export interface tournament_no_shows_min_fields { + id: (Scalars['uuid'] | null) + occurred_at: (Scalars['timestamptz'] | null) + player_steam_id: (Scalars['bigint'] | null) + tournament_id: (Scalars['uuid'] | null) + tournament_team_id: (Scalars['uuid'] | null) + __typename: 'tournament_no_shows_min_fields' +} + + +/** response of any mutation on the table "tournament_no_shows" */ +export interface tournament_no_shows_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: tournament_no_shows[] + __typename: 'tournament_no_shows_mutation_response' +} + + +/** select columns of table "tournament_no_shows" */ +export type tournament_no_shows_select_column = 'id' | 'occurred_at' | 'player_steam_id' | 'tournament_id' | 'tournament_team_id' + + +/** aggregate stddev on columns */ +export interface tournament_no_shows_stddev_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_no_shows_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface tournament_no_shows_stddev_pop_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_no_shows_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface tournament_no_shows_stddev_samp_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_no_shows_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface tournament_no_shows_sum_fields { + player_steam_id: (Scalars['bigint'] | null) + __typename: 'tournament_no_shows_sum_fields' +} + + +/** update columns of table "tournament_no_shows" */ +export type tournament_no_shows_update_column = 'id' | 'occurred_at' | 'player_steam_id' | 'tournament_id' | 'tournament_team_id' + + +/** aggregate var_pop on columns */ +export interface tournament_no_shows_var_pop_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_no_shows_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface tournament_no_shows_var_samp_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_no_shows_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface tournament_no_shows_variance_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_no_shows_variance_fields' +} + + +/** columns and relationships of "tournament_organizer_teams" */ +export interface tournament_organizer_teams { + created_at: Scalars['timestamptz'] + /** An object relationship */ + team: teams + team_id: Scalars['uuid'] + /** An object relationship */ + tournament: tournaments + tournament_id: Scalars['uuid'] + __typename: 'tournament_organizer_teams' +} + + +/** aggregated selection of "tournament_organizer_teams" */ +export interface tournament_organizer_teams_aggregate { + aggregate: (tournament_organizer_teams_aggregate_fields | null) + nodes: tournament_organizer_teams[] + __typename: 'tournament_organizer_teams_aggregate' +} + + +/** aggregate fields of "tournament_organizer_teams" */ +export interface tournament_organizer_teams_aggregate_fields { + count: Scalars['Int'] + max: (tournament_organizer_teams_max_fields | null) + min: (tournament_organizer_teams_min_fields | null) + __typename: 'tournament_organizer_teams_aggregate_fields' +} + + +/** unique or primary key constraints on table "tournament_organizer_teams" */ +export type tournament_organizer_teams_constraint = 'tournament_organizer_teams_pkey' + + +/** aggregate max on columns */ +export interface tournament_organizer_teams_max_fields { + created_at: (Scalars['timestamptz'] | null) + team_id: (Scalars['uuid'] | null) + tournament_id: (Scalars['uuid'] | null) + __typename: 'tournament_organizer_teams_max_fields' +} + + +/** aggregate min on columns */ +export interface tournament_organizer_teams_min_fields { + created_at: (Scalars['timestamptz'] | null) + team_id: (Scalars['uuid'] | null) + tournament_id: (Scalars['uuid'] | null) + __typename: 'tournament_organizer_teams_min_fields' +} + + +/** response of any mutation on the table "tournament_organizer_teams" */ +export interface tournament_organizer_teams_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: tournament_organizer_teams[] + __typename: 'tournament_organizer_teams_mutation_response' +} + + +/** select columns of table "tournament_organizer_teams" */ +export type tournament_organizer_teams_select_column = 'created_at' | 'team_id' | 'tournament_id' + + +/** update columns of table "tournament_organizer_teams" */ +export type tournament_organizer_teams_update_column = 'created_at' | 'team_id' | 'tournament_id' + + +/** columns and relationships of "tournament_organizers" */ +export interface tournament_organizers { + /** An object relationship */ + organization_team: (teams | null) + organization_team_id: (Scalars['uuid'] | null) + /** An object relationship */ + organizer: players + steam_id: Scalars['bigint'] + /** An object relationship */ + tournament: tournaments + tournament_id: Scalars['uuid'] + __typename: 'tournament_organizers' +} + + +/** aggregated selection of "tournament_organizers" */ +export interface tournament_organizers_aggregate { + aggregate: (tournament_organizers_aggregate_fields | null) + nodes: tournament_organizers[] + __typename: 'tournament_organizers_aggregate' +} + + +/** aggregate fields of "tournament_organizers" */ +export interface tournament_organizers_aggregate_fields { + avg: (tournament_organizers_avg_fields | null) + count: Scalars['Int'] + max: (tournament_organizers_max_fields | null) + min: (tournament_organizers_min_fields | null) + stddev: (tournament_organizers_stddev_fields | null) + stddev_pop: (tournament_organizers_stddev_pop_fields | null) + stddev_samp: (tournament_organizers_stddev_samp_fields | null) + sum: (tournament_organizers_sum_fields | null) + var_pop: (tournament_organizers_var_pop_fields | null) + var_samp: (tournament_organizers_var_samp_fields | null) + variance: (tournament_organizers_variance_fields | null) + __typename: 'tournament_organizers_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface tournament_organizers_avg_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'tournament_organizers_avg_fields' +} + + +/** unique or primary key constraints on table "tournament_organizers" */ +export type tournament_organizers_constraint = 'tournament_organizers_pkey' + + +/** aggregate max on columns */ +export interface tournament_organizers_max_fields { + organization_team_id: (Scalars['uuid'] | null) + steam_id: (Scalars['bigint'] | null) + tournament_id: (Scalars['uuid'] | null) + __typename: 'tournament_organizers_max_fields' +} + + +/** aggregate min on columns */ +export interface tournament_organizers_min_fields { + organization_team_id: (Scalars['uuid'] | null) + steam_id: (Scalars['bigint'] | null) + tournament_id: (Scalars['uuid'] | null) + __typename: 'tournament_organizers_min_fields' +} + + +/** response of any mutation on the table "tournament_organizers" */ +export interface tournament_organizers_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: tournament_organizers[] + __typename: 'tournament_organizers_mutation_response' +} + + +/** select columns of table "tournament_organizers" */ +export type tournament_organizers_select_column = 'organization_team_id' | 'steam_id' | 'tournament_id' + + +/** aggregate stddev on columns */ +export interface tournament_organizers_stddev_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'tournament_organizers_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface tournament_organizers_stddev_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'tournament_organizers_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface tournament_organizers_stddev_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'tournament_organizers_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface tournament_organizers_sum_fields { + steam_id: (Scalars['bigint'] | null) + __typename: 'tournament_organizers_sum_fields' +} + + +/** update columns of table "tournament_organizers" */ +export type tournament_organizers_update_column = 'organization_team_id' | 'steam_id' | 'tournament_id' + + +/** aggregate var_pop on columns */ +export interface tournament_organizers_var_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'tournament_organizers_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface tournament_organizers_var_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'tournament_organizers_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface tournament_organizers_variance_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'tournament_organizers_variance_fields' +} + + +/** columns and relationships of "tournament_prizes" */ +export interface tournament_prizes { + created_at: Scalars['timestamptz'] + id: Scalars['uuid'] + order: Scalars['Int'] + place: Scalars['String'] + prize: Scalars['String'] + /** An object relationship */ + tournament: tournaments + tournament_id: Scalars['uuid'] + __typename: 'tournament_prizes' +} + + +/** aggregated selection of "tournament_prizes" */ +export interface tournament_prizes_aggregate { + aggregate: (tournament_prizes_aggregate_fields | null) + nodes: tournament_prizes[] + __typename: 'tournament_prizes_aggregate' +} + + +/** aggregate fields of "tournament_prizes" */ +export interface tournament_prizes_aggregate_fields { + avg: (tournament_prizes_avg_fields | null) + count: Scalars['Int'] + max: (tournament_prizes_max_fields | null) + min: (tournament_prizes_min_fields | null) + stddev: (tournament_prizes_stddev_fields | null) + stddev_pop: (tournament_prizes_stddev_pop_fields | null) + stddev_samp: (tournament_prizes_stddev_samp_fields | null) + sum: (tournament_prizes_sum_fields | null) + var_pop: (tournament_prizes_var_pop_fields | null) + var_samp: (tournament_prizes_var_samp_fields | null) + variance: (tournament_prizes_variance_fields | null) + __typename: 'tournament_prizes_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface tournament_prizes_avg_fields { + order: (Scalars['Float'] | null) + __typename: 'tournament_prizes_avg_fields' +} + + +/** unique or primary key constraints on table "tournament_prizes" */ +export type tournament_prizes_constraint = 'tournament_prizes_pkey' + + +/** aggregate max on columns */ +export interface tournament_prizes_max_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + order: (Scalars['Int'] | null) + place: (Scalars['String'] | null) + prize: (Scalars['String'] | null) + tournament_id: (Scalars['uuid'] | null) + __typename: 'tournament_prizes_max_fields' +} + + +/** aggregate min on columns */ +export interface tournament_prizes_min_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + order: (Scalars['Int'] | null) + place: (Scalars['String'] | null) + prize: (Scalars['String'] | null) + tournament_id: (Scalars['uuid'] | null) + __typename: 'tournament_prizes_min_fields' +} + + +/** response of any mutation on the table "tournament_prizes" */ +export interface tournament_prizes_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: tournament_prizes[] + __typename: 'tournament_prizes_mutation_response' +} + + +/** select columns of table "tournament_prizes" */ +export type tournament_prizes_select_column = 'created_at' | 'id' | 'order' | 'place' | 'prize' | 'tournament_id' + + +/** aggregate stddev on columns */ +export interface tournament_prizes_stddev_fields { + order: (Scalars['Float'] | null) + __typename: 'tournament_prizes_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface tournament_prizes_stddev_pop_fields { + order: (Scalars['Float'] | null) + __typename: 'tournament_prizes_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface tournament_prizes_stddev_samp_fields { + order: (Scalars['Float'] | null) + __typename: 'tournament_prizes_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface tournament_prizes_sum_fields { + order: (Scalars['Int'] | null) + __typename: 'tournament_prizes_sum_fields' +} + + +/** update columns of table "tournament_prizes" */ +export type tournament_prizes_update_column = 'created_at' | 'id' | 'order' | 'place' | 'prize' | 'tournament_id' + + +/** aggregate var_pop on columns */ +export interface tournament_prizes_var_pop_fields { + order: (Scalars['Float'] | null) + __typename: 'tournament_prizes_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface tournament_prizes_var_samp_fields { + order: (Scalars['Float'] | null) + __typename: 'tournament_prizes_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface tournament_prizes_variance_fields { + order: (Scalars['Float'] | null) + __typename: 'tournament_prizes_variance_fields' +} + + +/** columns and relationships of "tournament_registration_unlocks" */ +export interface tournament_registration_unlocks { + created_at: Scalars['timestamptz'] + /** An object relationship */ + player: (players | null) + player_steam_id: (Scalars['bigint'] | null) + /** An object relationship */ + team: (teams | null) + team_id: (Scalars['uuid'] | null) + /** An object relationship */ + tournament: tournaments + tournament_id: Scalars['uuid'] + __typename: 'tournament_registration_unlocks' +} + + +/** aggregated selection of "tournament_registration_unlocks" */ +export interface tournament_registration_unlocks_aggregate { + aggregate: (tournament_registration_unlocks_aggregate_fields | null) + nodes: tournament_registration_unlocks[] + __typename: 'tournament_registration_unlocks_aggregate' +} + + +/** aggregate fields of "tournament_registration_unlocks" */ +export interface tournament_registration_unlocks_aggregate_fields { + avg: (tournament_registration_unlocks_avg_fields | null) + count: Scalars['Int'] + max: (tournament_registration_unlocks_max_fields | null) + min: (tournament_registration_unlocks_min_fields | null) + stddev: (tournament_registration_unlocks_stddev_fields | null) + stddev_pop: (tournament_registration_unlocks_stddev_pop_fields | null) + stddev_samp: (tournament_registration_unlocks_stddev_samp_fields | null) + sum: (tournament_registration_unlocks_sum_fields | null) + var_pop: (tournament_registration_unlocks_var_pop_fields | null) + var_samp: (tournament_registration_unlocks_var_samp_fields | null) + variance: (tournament_registration_unlocks_variance_fields | null) + __typename: 'tournament_registration_unlocks_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface tournament_registration_unlocks_avg_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_registration_unlocks_avg_fields' +} + + +/** unique or primary key constraints on table "tournament_registration_unlocks" */ +export type tournament_registration_unlocks_constraint = 'idx_tournament_registration_unlocks_player' | 'idx_tournament_registration_unlocks_team' + + +/** aggregate max on columns */ +export interface tournament_registration_unlocks_max_fields { + created_at: (Scalars['timestamptz'] | null) + player_steam_id: (Scalars['bigint'] | null) + team_id: (Scalars['uuid'] | null) + tournament_id: (Scalars['uuid'] | null) + __typename: 'tournament_registration_unlocks_max_fields' +} + + +/** aggregate min on columns */ +export interface tournament_registration_unlocks_min_fields { + created_at: (Scalars['timestamptz'] | null) + player_steam_id: (Scalars['bigint'] | null) + team_id: (Scalars['uuid'] | null) + tournament_id: (Scalars['uuid'] | null) + __typename: 'tournament_registration_unlocks_min_fields' +} + + +/** response of any mutation on the table "tournament_registration_unlocks" */ +export interface tournament_registration_unlocks_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: tournament_registration_unlocks[] + __typename: 'tournament_registration_unlocks_mutation_response' +} + + +/** select columns of table "tournament_registration_unlocks" */ +export type tournament_registration_unlocks_select_column = 'created_at' | 'player_steam_id' | 'team_id' | 'tournament_id' + + +/** aggregate stddev on columns */ +export interface tournament_registration_unlocks_stddev_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_registration_unlocks_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface tournament_registration_unlocks_stddev_pop_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_registration_unlocks_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface tournament_registration_unlocks_stddev_samp_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_registration_unlocks_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface tournament_registration_unlocks_sum_fields { + player_steam_id: (Scalars['bigint'] | null) + __typename: 'tournament_registration_unlocks_sum_fields' +} + + +/** update columns of table "tournament_registration_unlocks" */ +export type tournament_registration_unlocks_update_column = 'created_at' | 'player_steam_id' | 'team_id' | 'tournament_id' + + +/** aggregate var_pop on columns */ +export interface tournament_registration_unlocks_var_pop_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_registration_unlocks_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface tournament_registration_unlocks_var_samp_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_registration_unlocks_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface tournament_registration_unlocks_variance_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_registration_unlocks_variance_fields' +} + + +/** columns and relationships of "tournament_stage_windows" */ +export interface tournament_stage_windows { + closes_at: (Scalars['timestamptz'] | null) + created_at: Scalars['timestamptz'] + default_match_at: (Scalars['timestamptz'] | null) + id: Scalars['uuid'] + opens_at: (Scalars['timestamptz'] | null) + round: Scalars['Int'] + /** An object relationship */ + stage: tournament_stages + tournament_stage_id: Scalars['uuid'] + __typename: 'tournament_stage_windows' +} + + +/** aggregated selection of "tournament_stage_windows" */ +export interface tournament_stage_windows_aggregate { + aggregate: (tournament_stage_windows_aggregate_fields | null) + nodes: tournament_stage_windows[] + __typename: 'tournament_stage_windows_aggregate' +} + + +/** aggregate fields of "tournament_stage_windows" */ +export interface tournament_stage_windows_aggregate_fields { + avg: (tournament_stage_windows_avg_fields | null) + count: Scalars['Int'] + max: (tournament_stage_windows_max_fields | null) + min: (tournament_stage_windows_min_fields | null) + stddev: (tournament_stage_windows_stddev_fields | null) + stddev_pop: (tournament_stage_windows_stddev_pop_fields | null) + stddev_samp: (tournament_stage_windows_stddev_samp_fields | null) + sum: (tournament_stage_windows_sum_fields | null) + var_pop: (tournament_stage_windows_var_pop_fields | null) + var_samp: (tournament_stage_windows_var_samp_fields | null) + variance: (tournament_stage_windows_variance_fields | null) + __typename: 'tournament_stage_windows_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface tournament_stage_windows_avg_fields { + round: (Scalars['Float'] | null) + __typename: 'tournament_stage_windows_avg_fields' +} + + +/** unique or primary key constraints on table "tournament_stage_windows" */ +export type tournament_stage_windows_constraint = 'tournament_stage_windows_pkey' | 'tournament_stage_windows_tournament_stage_id_round_key' + + +/** aggregate max on columns */ +export interface tournament_stage_windows_max_fields { + closes_at: (Scalars['timestamptz'] | null) + created_at: (Scalars['timestamptz'] | null) + default_match_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + opens_at: (Scalars['timestamptz'] | null) + round: (Scalars['Int'] | null) + tournament_stage_id: (Scalars['uuid'] | null) + __typename: 'tournament_stage_windows_max_fields' +} + + +/** aggregate min on columns */ +export interface tournament_stage_windows_min_fields { + closes_at: (Scalars['timestamptz'] | null) + created_at: (Scalars['timestamptz'] | null) + default_match_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + opens_at: (Scalars['timestamptz'] | null) + round: (Scalars['Int'] | null) + tournament_stage_id: (Scalars['uuid'] | null) + __typename: 'tournament_stage_windows_min_fields' +} + + +/** response of any mutation on the table "tournament_stage_windows" */ +export interface tournament_stage_windows_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: tournament_stage_windows[] + __typename: 'tournament_stage_windows_mutation_response' +} + + +/** select columns of table "tournament_stage_windows" */ +export type tournament_stage_windows_select_column = 'closes_at' | 'created_at' | 'default_match_at' | 'id' | 'opens_at' | 'round' | 'tournament_stage_id' + + +/** aggregate stddev on columns */ +export interface tournament_stage_windows_stddev_fields { + round: (Scalars['Float'] | null) + __typename: 'tournament_stage_windows_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface tournament_stage_windows_stddev_pop_fields { + round: (Scalars['Float'] | null) + __typename: 'tournament_stage_windows_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface tournament_stage_windows_stddev_samp_fields { + round: (Scalars['Float'] | null) + __typename: 'tournament_stage_windows_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface tournament_stage_windows_sum_fields { + round: (Scalars['Int'] | null) + __typename: 'tournament_stage_windows_sum_fields' +} + + +/** update columns of table "tournament_stage_windows" */ +export type tournament_stage_windows_update_column = 'closes_at' | 'created_at' | 'default_match_at' | 'id' | 'opens_at' | 'round' | 'tournament_stage_id' + + +/** aggregate var_pop on columns */ +export interface tournament_stage_windows_var_pop_fields { + round: (Scalars['Float'] | null) + __typename: 'tournament_stage_windows_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface tournament_stage_windows_var_samp_fields { + round: (Scalars['Float'] | null) + __typename: 'tournament_stage_windows_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface tournament_stage_windows_variance_fields { + round: (Scalars['Float'] | null) + __typename: 'tournament_stage_windows_variance_fields' +} + + +/** columns and relationships of "tournament_stages" */ +export interface tournament_stages { + /** An array relationship */ + brackets: tournament_brackets[] + /** An aggregate relationship */ + brackets_aggregate: tournament_brackets_aggregate + decider_best_of: (Scalars['Int'] | null) + default_best_of: Scalars['Int'] + /** An object relationship */ + e_tournament_stage_type: e_tournament_stage_types + final_map_advantage: Scalars['Int'] + groups: (Scalars['Int'] | null) + id: Scalars['uuid'] + match_options_id: (Scalars['uuid'] | null) + max_rounds: (Scalars['Int'] | null) + max_teams: Scalars['Int'] + min_teams: Scalars['Int'] + /** An object relationship */ + options: (match_options | null) + order: Scalars['Int'] + /** An array relationship */ + results: v_team_stage_results[] + /** An aggregate relationship */ + results_aggregate: v_team_stage_results_aggregate + settings: (Scalars['jsonb'] | null) + swiss_no_elimination: Scalars['Boolean'] + third_place_match: Scalars['Boolean'] + /** An object relationship */ + tournament: tournaments + tournament_id: Scalars['uuid'] + type: e_tournament_stage_types_enum + /** An array relationship */ + windows: tournament_stage_windows[] + /** An aggregate relationship */ + windows_aggregate: tournament_stage_windows_aggregate + __typename: 'tournament_stages' +} + + +/** aggregated selection of "tournament_stages" */ +export interface tournament_stages_aggregate { + aggregate: (tournament_stages_aggregate_fields | null) + nodes: tournament_stages[] + __typename: 'tournament_stages_aggregate' +} + + +/** aggregate fields of "tournament_stages" */ +export interface tournament_stages_aggregate_fields { + avg: (tournament_stages_avg_fields | null) + count: Scalars['Int'] + max: (tournament_stages_max_fields | null) + min: (tournament_stages_min_fields | null) + stddev: (tournament_stages_stddev_fields | null) + stddev_pop: (tournament_stages_stddev_pop_fields | null) + stddev_samp: (tournament_stages_stddev_samp_fields | null) + sum: (tournament_stages_sum_fields | null) + var_pop: (tournament_stages_var_pop_fields | null) + var_samp: (tournament_stages_var_samp_fields | null) + variance: (tournament_stages_variance_fields | null) + __typename: 'tournament_stages_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface tournament_stages_avg_fields { + decider_best_of: (Scalars['Float'] | null) + default_best_of: (Scalars['Float'] | null) + final_map_advantage: (Scalars['Float'] | null) + groups: (Scalars['Float'] | null) + max_rounds: (Scalars['Float'] | null) + max_teams: (Scalars['Float'] | null) + min_teams: (Scalars['Float'] | null) + order: (Scalars['Float'] | null) + __typename: 'tournament_stages_avg_fields' +} + + +/** unique or primary key constraints on table "tournament_stages" */ +export type tournament_stages_constraint = 'tournament_stages_pkey' + + +/** aggregate max on columns */ +export interface tournament_stages_max_fields { + decider_best_of: (Scalars['Int'] | null) + default_best_of: (Scalars['Int'] | null) + final_map_advantage: (Scalars['Int'] | null) + groups: (Scalars['Int'] | null) + id: (Scalars['uuid'] | null) + match_options_id: (Scalars['uuid'] | null) + max_rounds: (Scalars['Int'] | null) + max_teams: (Scalars['Int'] | null) + min_teams: (Scalars['Int'] | null) + order: (Scalars['Int'] | null) + tournament_id: (Scalars['uuid'] | null) + __typename: 'tournament_stages_max_fields' +} + + +/** aggregate min on columns */ +export interface tournament_stages_min_fields { + decider_best_of: (Scalars['Int'] | null) + default_best_of: (Scalars['Int'] | null) + final_map_advantage: (Scalars['Int'] | null) + groups: (Scalars['Int'] | null) + id: (Scalars['uuid'] | null) + match_options_id: (Scalars['uuid'] | null) + max_rounds: (Scalars['Int'] | null) + max_teams: (Scalars['Int'] | null) + min_teams: (Scalars['Int'] | null) + order: (Scalars['Int'] | null) + tournament_id: (Scalars['uuid'] | null) + __typename: 'tournament_stages_min_fields' +} + + +/** response of any mutation on the table "tournament_stages" */ +export interface tournament_stages_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: tournament_stages[] + __typename: 'tournament_stages_mutation_response' +} + + +/** select columns of table "tournament_stages" */ +export type tournament_stages_select_column = 'decider_best_of' | 'default_best_of' | 'final_map_advantage' | 'groups' | 'id' | 'match_options_id' | 'max_rounds' | 'max_teams' | 'min_teams' | 'order' | 'settings' | 'swiss_no_elimination' | 'third_place_match' | 'tournament_id' | 'type' + + +/** select "tournament_stages_aggregate_bool_exp_bool_and_arguments_columns" columns of table "tournament_stages" */ +export type tournament_stages_select_column_tournament_stages_aggregate_bool_exp_bool_and_arguments_columns = 'swiss_no_elimination' | 'third_place_match' + + +/** select "tournament_stages_aggregate_bool_exp_bool_or_arguments_columns" columns of table "tournament_stages" */ +export type tournament_stages_select_column_tournament_stages_aggregate_bool_exp_bool_or_arguments_columns = 'swiss_no_elimination' | 'third_place_match' + + +/** aggregate stddev on columns */ +export interface tournament_stages_stddev_fields { + decider_best_of: (Scalars['Float'] | null) + default_best_of: (Scalars['Float'] | null) + final_map_advantage: (Scalars['Float'] | null) + groups: (Scalars['Float'] | null) + max_rounds: (Scalars['Float'] | null) + max_teams: (Scalars['Float'] | null) + min_teams: (Scalars['Float'] | null) + order: (Scalars['Float'] | null) + __typename: 'tournament_stages_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface tournament_stages_stddev_pop_fields { + decider_best_of: (Scalars['Float'] | null) + default_best_of: (Scalars['Float'] | null) + final_map_advantage: (Scalars['Float'] | null) + groups: (Scalars['Float'] | null) + max_rounds: (Scalars['Float'] | null) + max_teams: (Scalars['Float'] | null) + min_teams: (Scalars['Float'] | null) + order: (Scalars['Float'] | null) + __typename: 'tournament_stages_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface tournament_stages_stddev_samp_fields { + decider_best_of: (Scalars['Float'] | null) + default_best_of: (Scalars['Float'] | null) + final_map_advantage: (Scalars['Float'] | null) + groups: (Scalars['Float'] | null) + max_rounds: (Scalars['Float'] | null) + max_teams: (Scalars['Float'] | null) + min_teams: (Scalars['Float'] | null) + order: (Scalars['Float'] | null) + __typename: 'tournament_stages_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface tournament_stages_sum_fields { + decider_best_of: (Scalars['Int'] | null) + default_best_of: (Scalars['Int'] | null) + final_map_advantage: (Scalars['Int'] | null) + groups: (Scalars['Int'] | null) + max_rounds: (Scalars['Int'] | null) + max_teams: (Scalars['Int'] | null) + min_teams: (Scalars['Int'] | null) + order: (Scalars['Int'] | null) + __typename: 'tournament_stages_sum_fields' +} + + +/** update columns of table "tournament_stages" */ +export type tournament_stages_update_column = 'decider_best_of' | 'default_best_of' | 'final_map_advantage' | 'groups' | 'id' | 'match_options_id' | 'max_rounds' | 'max_teams' | 'min_teams' | 'order' | 'settings' | 'swiss_no_elimination' | 'third_place_match' | 'tournament_id' | 'type' + + +/** aggregate var_pop on columns */ +export interface tournament_stages_var_pop_fields { + decider_best_of: (Scalars['Float'] | null) + default_best_of: (Scalars['Float'] | null) + final_map_advantage: (Scalars['Float'] | null) + groups: (Scalars['Float'] | null) + max_rounds: (Scalars['Float'] | null) + max_teams: (Scalars['Float'] | null) + min_teams: (Scalars['Float'] | null) + order: (Scalars['Float'] | null) + __typename: 'tournament_stages_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface tournament_stages_var_samp_fields { + decider_best_of: (Scalars['Float'] | null) + default_best_of: (Scalars['Float'] | null) + final_map_advantage: (Scalars['Float'] | null) + groups: (Scalars['Float'] | null) + max_rounds: (Scalars['Float'] | null) + max_teams: (Scalars['Float'] | null) + min_teams: (Scalars['Float'] | null) + order: (Scalars['Float'] | null) + __typename: 'tournament_stages_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface tournament_stages_variance_fields { + decider_best_of: (Scalars['Float'] | null) + default_best_of: (Scalars['Float'] | null) + final_map_advantage: (Scalars['Float'] | null) + groups: (Scalars['Float'] | null) + max_rounds: (Scalars['Float'] | null) + max_teams: (Scalars['Float'] | null) + min_teams: (Scalars['Float'] | null) + order: (Scalars['Float'] | null) + __typename: 'tournament_stages_variance_fields' +} + + +/** columns and relationships of "tournament_team_invites" */ +export interface tournament_team_invites { + created_at: Scalars['timestamptz'] + id: Scalars['uuid'] + /** An object relationship */ + invited_by: players + invited_by_player_steam_id: Scalars['bigint'] + /** An object relationship */ + player: players + steam_id: Scalars['bigint'] + /** An object relationship */ + team: tournament_teams + tournament_team_id: Scalars['uuid'] + __typename: 'tournament_team_invites' +} + + +/** aggregated selection of "tournament_team_invites" */ +export interface tournament_team_invites_aggregate { + aggregate: (tournament_team_invites_aggregate_fields | null) + nodes: tournament_team_invites[] + __typename: 'tournament_team_invites_aggregate' +} + + +/** aggregate fields of "tournament_team_invites" */ +export interface tournament_team_invites_aggregate_fields { + avg: (tournament_team_invites_avg_fields | null) + count: Scalars['Int'] + max: (tournament_team_invites_max_fields | null) + min: (tournament_team_invites_min_fields | null) + stddev: (tournament_team_invites_stddev_fields | null) + stddev_pop: (tournament_team_invites_stddev_pop_fields | null) + stddev_samp: (tournament_team_invites_stddev_samp_fields | null) + sum: (tournament_team_invites_sum_fields | null) + var_pop: (tournament_team_invites_var_pop_fields | null) + var_samp: (tournament_team_invites_var_samp_fields | null) + variance: (tournament_team_invites_variance_fields | null) + __typename: 'tournament_team_invites_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface tournament_team_invites_avg_fields { + invited_by_player_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'tournament_team_invites_avg_fields' +} + + +/** unique or primary key constraints on table "tournament_team_invites" */ +export type tournament_team_invites_constraint = 'tournament_team_invites_pkey' | 'tournament_team_invites_steam_id_tournament_team_id_key' + + +/** aggregate max on columns */ +export interface tournament_team_invites_max_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + invited_by_player_steam_id: (Scalars['bigint'] | null) + steam_id: (Scalars['bigint'] | null) + tournament_team_id: (Scalars['uuid'] | null) + __typename: 'tournament_team_invites_max_fields' +} + + +/** aggregate min on columns */ +export interface tournament_team_invites_min_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + invited_by_player_steam_id: (Scalars['bigint'] | null) + steam_id: (Scalars['bigint'] | null) + tournament_team_id: (Scalars['uuid'] | null) + __typename: 'tournament_team_invites_min_fields' +} + + +/** response of any mutation on the table "tournament_team_invites" */ +export interface tournament_team_invites_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: tournament_team_invites[] + __typename: 'tournament_team_invites_mutation_response' +} + + +/** select columns of table "tournament_team_invites" */ +export type tournament_team_invites_select_column = 'created_at' | 'id' | 'invited_by_player_steam_id' | 'steam_id' | 'tournament_team_id' + + +/** aggregate stddev on columns */ +export interface tournament_team_invites_stddev_fields { + invited_by_player_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'tournament_team_invites_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface tournament_team_invites_stddev_pop_fields { + invited_by_player_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'tournament_team_invites_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface tournament_team_invites_stddev_samp_fields { + invited_by_player_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'tournament_team_invites_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface tournament_team_invites_sum_fields { + invited_by_player_steam_id: (Scalars['bigint'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'tournament_team_invites_sum_fields' +} + + +/** update columns of table "tournament_team_invites" */ +export type tournament_team_invites_update_column = 'created_at' | 'id' | 'invited_by_player_steam_id' | 'steam_id' | 'tournament_team_id' + + +/** aggregate var_pop on columns */ +export interface tournament_team_invites_var_pop_fields { + invited_by_player_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'tournament_team_invites_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface tournament_team_invites_var_samp_fields { + invited_by_player_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'tournament_team_invites_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface tournament_team_invites_variance_fields { + invited_by_player_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'tournament_team_invites_variance_fields' +} + + +/** columns and relationships of "tournament_team_roster" */ +export interface tournament_team_roster { + checked_in_at: (Scalars['timestamptz'] | null) + /** An object relationship */ + e_team_role: e_team_roles + /** An object relationship */ + player: players + player_steam_id: Scalars['bigint'] + role: e_team_roles_enum + /** A computed field, executes function "tournament_team_roster_target_eligible" */ + target_eligible: (Scalars['Boolean'] | null) + /** An object relationship */ + tournament: tournaments + tournament_id: Scalars['uuid'] + /** An object relationship */ + tournament_team: tournament_teams + tournament_team_id: Scalars['uuid'] + __typename: 'tournament_team_roster' +} + + +/** aggregated selection of "tournament_team_roster" */ +export interface tournament_team_roster_aggregate { + aggregate: (tournament_team_roster_aggregate_fields | null) + nodes: tournament_team_roster[] + __typename: 'tournament_team_roster_aggregate' +} + + +/** aggregate fields of "tournament_team_roster" */ +export interface tournament_team_roster_aggregate_fields { + avg: (tournament_team_roster_avg_fields | null) + count: Scalars['Int'] + max: (tournament_team_roster_max_fields | null) + min: (tournament_team_roster_min_fields | null) + stddev: (tournament_team_roster_stddev_fields | null) + stddev_pop: (tournament_team_roster_stddev_pop_fields | null) + stddev_samp: (tournament_team_roster_stddev_samp_fields | null) + sum: (tournament_team_roster_sum_fields | null) + var_pop: (tournament_team_roster_var_pop_fields | null) + var_samp: (tournament_team_roster_var_samp_fields | null) + variance: (tournament_team_roster_variance_fields | null) + __typename: 'tournament_team_roster_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface tournament_team_roster_avg_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_team_roster_avg_fields' +} + + +/** unique or primary key constraints on table "tournament_team_roster" */ +export type tournament_team_roster_constraint = 'tournament_roster_pkey' | 'tournament_roster_player_steam_id_tournament_id_key' + + +/** aggregate max on columns */ +export interface tournament_team_roster_max_fields { + checked_in_at: (Scalars['timestamptz'] | null) + player_steam_id: (Scalars['bigint'] | null) + tournament_id: (Scalars['uuid'] | null) + tournament_team_id: (Scalars['uuid'] | null) + __typename: 'tournament_team_roster_max_fields' +} + + +/** aggregate min on columns */ +export interface tournament_team_roster_min_fields { + checked_in_at: (Scalars['timestamptz'] | null) + player_steam_id: (Scalars['bigint'] | null) + tournament_id: (Scalars['uuid'] | null) + tournament_team_id: (Scalars['uuid'] | null) + __typename: 'tournament_team_roster_min_fields' +} + + +/** response of any mutation on the table "tournament_team_roster" */ +export interface tournament_team_roster_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: tournament_team_roster[] + __typename: 'tournament_team_roster_mutation_response' +} + + +/** select columns of table "tournament_team_roster" */ +export type tournament_team_roster_select_column = 'checked_in_at' | 'player_steam_id' | 'role' | 'tournament_id' | 'tournament_team_id' + + +/** aggregate stddev on columns */ +export interface tournament_team_roster_stddev_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_team_roster_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface tournament_team_roster_stddev_pop_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_team_roster_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface tournament_team_roster_stddev_samp_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_team_roster_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface tournament_team_roster_sum_fields { + player_steam_id: (Scalars['bigint'] | null) + __typename: 'tournament_team_roster_sum_fields' +} + + +/** update columns of table "tournament_team_roster" */ +export type tournament_team_roster_update_column = 'checked_in_at' | 'player_steam_id' | 'role' | 'tournament_id' | 'tournament_team_id' + + +/** aggregate var_pop on columns */ +export interface tournament_team_roster_var_pop_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_team_roster_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface tournament_team_roster_var_samp_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_team_roster_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface tournament_team_roster_variance_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_team_roster_variance_fields' +} + + +/** columns and relationships of "tournament_teams" */ +export interface tournament_teams { + /** A computed field, executes function "can_manage_tournament_team" */ + can_manage: (Scalars['Boolean'] | null) + /** An object relationship */ + captain: (players | null) + captain_steam_id: (Scalars['bigint'] | null) + /** A computed field, executes function "tournament_team_checked_in" */ + checked_in: (Scalars['Boolean'] | null) + checked_in_at: (Scalars['timestamptz'] | null) + created_at: Scalars['timestamptz'] + /** An object relationship */ + creator: players + eligible_at: (Scalars['timestamptz'] | null) + /** An array relationship */ + free_agents: tournament_free_agents[] + /** An aggregate relationship */ + free_agents_aggregate: tournament_free_agents_aggregate + id: Scalars['uuid'] + /** An array relationship */ + invites: tournament_team_invites[] + /** An aggregate relationship */ + invites_aggregate: tournament_team_invites_aggregate + /** Created by draft_tournament_free_agent_teams rather than registered */ + is_drafted: Scalars['Boolean'] + name: (Scalars['String'] | null) + owner_steam_id: Scalars['bigint'] + /** An object relationship */ + results: (v_team_stage_results | null) + /** An array relationship */ + roster: tournament_team_roster[] + /** An aggregate relationship */ + roster_aggregate: tournament_team_roster_aggregate + seed: (Scalars['Int'] | null) + short_name: (Scalars['String'] | null) + /** An object relationship */ + team: (teams | null) + team_id: (Scalars['uuid'] | null) + /** An object relationship */ + tournament: tournaments + tournament_id: Scalars['uuid'] + __typename: 'tournament_teams' +} + + +/** aggregated selection of "tournament_teams" */ +export interface tournament_teams_aggregate { + aggregate: (tournament_teams_aggregate_fields | null) + nodes: tournament_teams[] + __typename: 'tournament_teams_aggregate' +} + + +/** aggregate fields of "tournament_teams" */ +export interface tournament_teams_aggregate_fields { + avg: (tournament_teams_avg_fields | null) + count: Scalars['Int'] + max: (tournament_teams_max_fields | null) + min: (tournament_teams_min_fields | null) + stddev: (tournament_teams_stddev_fields | null) + stddev_pop: (tournament_teams_stddev_pop_fields | null) + stddev_samp: (tournament_teams_stddev_samp_fields | null) + sum: (tournament_teams_sum_fields | null) + var_pop: (tournament_teams_var_pop_fields | null) + var_samp: (tournament_teams_var_samp_fields | null) + variance: (tournament_teams_variance_fields | null) + __typename: 'tournament_teams_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface tournament_teams_avg_fields { + captain_steam_id: (Scalars['Float'] | null) + owner_steam_id: (Scalars['Float'] | null) + seed: (Scalars['Float'] | null) + __typename: 'tournament_teams_avg_fields' +} + + +/** unique or primary key constraints on table "tournament_teams" */ +export type tournament_teams_constraint = 'tournament_teams_pkey' | 'tournament_teams_tournament_id_name_key' | 'tournament_teams_tournament_id_seed_key' | 'tournament_teams_tournament_id_team_id_key' + + +/** aggregate max on columns */ +export interface tournament_teams_max_fields { + captain_steam_id: (Scalars['bigint'] | null) + checked_in_at: (Scalars['timestamptz'] | null) + created_at: (Scalars['timestamptz'] | null) + eligible_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + name: (Scalars['String'] | null) + owner_steam_id: (Scalars['bigint'] | null) + seed: (Scalars['Int'] | null) + short_name: (Scalars['String'] | null) + team_id: (Scalars['uuid'] | null) + tournament_id: (Scalars['uuid'] | null) + __typename: 'tournament_teams_max_fields' +} + + +/** aggregate min on columns */ +export interface tournament_teams_min_fields { + captain_steam_id: (Scalars['bigint'] | null) + checked_in_at: (Scalars['timestamptz'] | null) + created_at: (Scalars['timestamptz'] | null) + eligible_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + name: (Scalars['String'] | null) + owner_steam_id: (Scalars['bigint'] | null) + seed: (Scalars['Int'] | null) + short_name: (Scalars['String'] | null) + team_id: (Scalars['uuid'] | null) + tournament_id: (Scalars['uuid'] | null) + __typename: 'tournament_teams_min_fields' +} + + +/** response of any mutation on the table "tournament_teams" */ +export interface tournament_teams_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: tournament_teams[] + __typename: 'tournament_teams_mutation_response' +} + + +/** select columns of table "tournament_teams" */ +export type tournament_teams_select_column = 'captain_steam_id' | 'checked_in_at' | 'created_at' | 'eligible_at' | 'id' | 'is_drafted' | 'name' | 'owner_steam_id' | 'seed' | 'short_name' | 'team_id' | 'tournament_id' + + +/** select "tournament_teams_aggregate_bool_exp_bool_and_arguments_columns" columns of table "tournament_teams" */ +export type tournament_teams_select_column_tournament_teams_aggregate_bool_exp_bool_and_arguments_columns = 'is_drafted' + + +/** select "tournament_teams_aggregate_bool_exp_bool_or_arguments_columns" columns of table "tournament_teams" */ +export type tournament_teams_select_column_tournament_teams_aggregate_bool_exp_bool_or_arguments_columns = 'is_drafted' + + +/** aggregate stddev on columns */ +export interface tournament_teams_stddev_fields { + captain_steam_id: (Scalars['Float'] | null) + owner_steam_id: (Scalars['Float'] | null) + seed: (Scalars['Float'] | null) + __typename: 'tournament_teams_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface tournament_teams_stddev_pop_fields { + captain_steam_id: (Scalars['Float'] | null) + owner_steam_id: (Scalars['Float'] | null) + seed: (Scalars['Float'] | null) + __typename: 'tournament_teams_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface tournament_teams_stddev_samp_fields { + captain_steam_id: (Scalars['Float'] | null) + owner_steam_id: (Scalars['Float'] | null) + seed: (Scalars['Float'] | null) + __typename: 'tournament_teams_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface tournament_teams_sum_fields { + captain_steam_id: (Scalars['bigint'] | null) + owner_steam_id: (Scalars['bigint'] | null) + seed: (Scalars['Int'] | null) + __typename: 'tournament_teams_sum_fields' +} + + +/** update columns of table "tournament_teams" */ +export type tournament_teams_update_column = 'captain_steam_id' | 'checked_in_at' | 'created_at' | 'eligible_at' | 'id' | 'is_drafted' | 'name' | 'owner_steam_id' | 'seed' | 'short_name' | 'team_id' | 'tournament_id' + + +/** aggregate var_pop on columns */ +export interface tournament_teams_var_pop_fields { + captain_steam_id: (Scalars['Float'] | null) + owner_steam_id: (Scalars['Float'] | null) + seed: (Scalars['Float'] | null) + __typename: 'tournament_teams_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface tournament_teams_var_samp_fields { + captain_steam_id: (Scalars['Float'] | null) + owner_steam_id: (Scalars['Float'] | null) + seed: (Scalars['Float'] | null) + __typename: 'tournament_teams_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface tournament_teams_variance_fields { + captain_steam_id: (Scalars['Float'] | null) + owner_steam_id: (Scalars['Float'] | null) + seed: (Scalars['Float'] | null) + __typename: 'tournament_teams_variance_fields' +} + + +/** columns and relationships of "tournaments" */ +export interface tournaments { + /** An object relationship */ + admin: players + auto_start: Scalars['Boolean'] + /** An array relationship */ + award_configs: tournament_awards[] + /** An aggregate relationship */ + award_configs_aggregate: tournament_awards_aggregate + /** An array relationship */ + awards: award_recipients[] + /** An aggregate relationship */ + awards_aggregate: award_recipients_aggregate + awards_enabled: Scalars['Boolean'] + banner: (Scalars['String'] | null) + /** A computed field, executes function "can_cancel_tournament" */ + can_cancel: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_close_tournament_registration" */ + can_close_registration: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_join_tournament" */ + can_join: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_open_tournament_registration" */ + can_open_registration: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_pause_tournament" */ + can_pause: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_resume_tournament" */ + can_resume: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_review_tournament_check_in" */ + can_review_check_in: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_setup_tournament" */ + can_setup: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_start_tournament" */ + can_start: (Scalars['Boolean'] | null) + /** An array relationship */ + categories: tournament_categories[] + /** An aggregate relationship */ + categories_aggregate: tournament_categories_aggregate + /** The check_in_ends_at the close pass has already acted on */ + check_in_closed_for: (Scalars['timestamptz'] | null) + check_in_closes_before_minutes: Scalars['Int'] + /** The check_in_ends_at the closing reminder was sent for */ + check_in_closing_notified_for: (Scalars['timestamptz'] | null) + /** When the check-in window closes; NULL until it opens */ + check_in_ends_at: (Scalars['timestamptz'] | null) + /** A computed field, executes function "tournament_check_in_open" */ + check_in_open: (Scalars['Boolean'] | null) + check_in_opens_before_minutes: Scalars['Int'] + check_in_required: Scalars['Boolean'] + /** Who confirms a team: Captains, every rostered Player, or the organizer (Admin) */ + check_in_setting: e_check_in_settings_enum + /** A computed field, executes function "tournament_check_in_started" */ + check_in_started: (Scalars['Boolean'] | null) + created_at: (Scalars['timestamptz'] | null) + /** A computed field, executes function "tournament_current_stage" */ + current_stage: (Scalars['Int'] | null) + description: (Scalars['String'] | null) + discord_guild_id: (Scalars['String'] | null) + discord_notifications_enabled: (Scalars['Boolean'] | null) + discord_notify_Canceled: (Scalars['Boolean'] | null) + discord_notify_Finished: (Scalars['Boolean'] | null) + discord_notify_Forfeit: (Scalars['Boolean'] | null) + discord_notify_Live: (Scalars['Boolean'] | null) + discord_notify_MapPaused: (Scalars['Boolean'] | null) + discord_notify_PickingPlayers: (Scalars['Boolean'] | null) + discord_notify_Scheduled: (Scalars['Boolean'] | null) + discord_notify_Surrendered: (Scalars['Boolean'] | null) + discord_notify_Tie: (Scalars['Boolean'] | null) + discord_notify_Veto: (Scalars['Boolean'] | null) + discord_notify_WaitingForCheckIn: (Scalars['Boolean'] | null) + discord_notify_WaitingForServer: (Scalars['Boolean'] | null) + discord_role_id: (Scalars['String'] | null) + discord_voice_enabled: Scalars['Boolean'] + discord_webhook: (Scalars['String'] | null) + /** An object relationship */ + e_tournament_status: e_tournament_status + /** An array relationship */ + free_agents: tournament_free_agents[] + /** An aggregate relationship */ + free_agents_aggregate: tournament_free_agents_aggregate + /** A computed field, executes function "tournament_has_min_teams" */ + has_min_teams: (Scalars['Boolean'] | null) + homepage: (Scalars['String'] | null) + id: Scalars['uuid'] + invite_only: Scalars['Boolean'] + is_league: Scalars['Boolean'] + /** A computed field, executes function "is_tournament_organizer" */ + is_organizer: (Scalars['Boolean'] | null) + /** A computed field, executes function "joined_tournament" */ + joined_tournament: (Scalars['Boolean'] | null) + latitude: (Scalars['float8'] | null) + /** An object relationship */ + league_season_division: (league_season_divisions | null) + location: (Scalars['String'] | null) + logo: (Scalars['String'] | null) + longitude: (Scalars['float8'] | null) + match_options_id: Scalars['uuid'] + max_elo: (Scalars['Int'] | null) + /** A computed field, executes function "tournament_max_players_per_lineup" */ + max_players_per_lineup: (Scalars['Int'] | null) + /** A computed field, executes function "meets_min_role" */ + meets_min_role: (Scalars['Boolean'] | null) + min_elo: (Scalars['Int'] | null) + /** A computed field, executes function "tournament_min_players_per_lineup" */ + min_players_per_lineup: (Scalars['Int'] | null) + min_role: (e_player_roles_enum | null) + /** A computed field, executes function "tournament_missed_check_in_count" */ + missed_check_in_count: (Scalars['Int'] | null) + name: Scalars['String'] + /** An object relationship */ + options: match_options + organizer_steam_id: Scalars['bigint'] + /** An array relationship */ + organizer_teams: tournament_organizer_teams[] + /** An aggregate relationship */ + organizer_teams_aggregate: tournament_organizer_teams_aggregate + /** An array relationship */ + organizers: tournament_organizers[] + /** An aggregate relationship */ + organizers_aggregate: tournament_organizers_aggregate + /** An array relationship */ + player_stats: v_tournament_player_stats[] + /** An aggregate relationship */ + player_stats_aggregate: v_tournament_player_stats_aggregate + /** An array relationship */ + prizes: tournament_prizes[] + /** An aggregate relationship */ + prizes_aggregate: tournament_prizes_aggregate + /** Preferred server regions for hosted matches */ + regions: Scalars['String'][] + registration_type: e_tournament_registration_types_enum + /** A computed field, executes function "tournament_registration_unlocked_for_session" */ + registration_unlocked: (Scalars['Boolean'] | null) + /** An array relationship */ + results: v_team_tournament_results[] + /** An aggregate relationship */ + results_aggregate: v_team_tournament_results_aggregate + /** An array relationship */ + rosters: tournament_team_roster[] + /** An aggregate relationship */ + rosters_aggregate: tournament_team_roster_aggregate + scheduling_mode: Scalars['String'] + /** An array relationship */ + stages: tournament_stages[] + /** An aggregate relationship */ + stages_aggregate: tournament_stages_aggregate + start: Scalars['timestamptz'] + status: e_tournament_status_enum + /** Whether teams may roster and field substitutes beyond the starting lineup */ + substitutes_enabled: Scalars['Boolean'] + /** An array relationship */ + teams: tournament_teams[] + /** An aggregate relationship */ + teams_aggregate: tournament_teams_aggregate + __typename: 'tournaments' +} + + +/** aggregated selection of "tournaments" */ +export interface tournaments_aggregate { + aggregate: (tournaments_aggregate_fields | null) + nodes: tournaments[] + __typename: 'tournaments_aggregate' +} + + +/** aggregate fields of "tournaments" */ +export interface tournaments_aggregate_fields { + avg: (tournaments_avg_fields | null) + count: Scalars['Int'] + max: (tournaments_max_fields | null) + min: (tournaments_min_fields | null) + stddev: (tournaments_stddev_fields | null) + stddev_pop: (tournaments_stddev_pop_fields | null) + stddev_samp: (tournaments_stddev_samp_fields | null) + sum: (tournaments_sum_fields | null) + var_pop: (tournaments_var_pop_fields | null) + var_samp: (tournaments_var_samp_fields | null) + variance: (tournaments_variance_fields | null) + __typename: 'tournaments_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface tournaments_avg_fields { + check_in_closes_before_minutes: (Scalars['Float'] | null) + check_in_opens_before_minutes: (Scalars['Float'] | null) + /** A computed field, executes function "tournament_current_stage" */ + current_stage: (Scalars['Int'] | null) + latitude: (Scalars['Float'] | null) + longitude: (Scalars['Float'] | null) + max_elo: (Scalars['Float'] | null) + /** A computed field, executes function "tournament_max_players_per_lineup" */ + max_players_per_lineup: (Scalars['Int'] | null) + min_elo: (Scalars['Float'] | null) + /** A computed field, executes function "tournament_min_players_per_lineup" */ + min_players_per_lineup: (Scalars['Int'] | null) + /** A computed field, executes function "tournament_missed_check_in_count" */ + missed_check_in_count: (Scalars['Int'] | null) + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'tournaments_avg_fields' +} + + +/** unique or primary key constraints on table "tournaments" */ +export type tournaments_constraint = 'tournaments_match_options_id_key' | 'tournaments_pkey' + + +/** aggregate max on columns */ +export interface tournaments_max_fields { + banner: (Scalars['String'] | null) + /** The check_in_ends_at the close pass has already acted on */ + check_in_closed_for: (Scalars['timestamptz'] | null) + check_in_closes_before_minutes: (Scalars['Int'] | null) + /** The check_in_ends_at the closing reminder was sent for */ + check_in_closing_notified_for: (Scalars['timestamptz'] | null) + /** When the check-in window closes; NULL until it opens */ + check_in_ends_at: (Scalars['timestamptz'] | null) + check_in_opens_before_minutes: (Scalars['Int'] | null) + created_at: (Scalars['timestamptz'] | null) + /** A computed field, executes function "tournament_current_stage" */ + current_stage: (Scalars['Int'] | null) + description: (Scalars['String'] | null) + discord_guild_id: (Scalars['String'] | null) + discord_role_id: (Scalars['String'] | null) + discord_webhook: (Scalars['String'] | null) + homepage: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + latitude: (Scalars['float8'] | null) + location: (Scalars['String'] | null) + logo: (Scalars['String'] | null) + longitude: (Scalars['float8'] | null) + match_options_id: (Scalars['uuid'] | null) + max_elo: (Scalars['Int'] | null) + /** A computed field, executes function "tournament_max_players_per_lineup" */ + max_players_per_lineup: (Scalars['Int'] | null) + min_elo: (Scalars['Int'] | null) + /** A computed field, executes function "tournament_min_players_per_lineup" */ + min_players_per_lineup: (Scalars['Int'] | null) + /** A computed field, executes function "tournament_missed_check_in_count" */ + missed_check_in_count: (Scalars['Int'] | null) + name: (Scalars['String'] | null) + organizer_steam_id: (Scalars['bigint'] | null) + /** Preferred server regions for hosted matches */ + regions: (Scalars['String'][] | null) + scheduling_mode: (Scalars['String'] | null) + start: (Scalars['timestamptz'] | null) + __typename: 'tournaments_max_fields' +} + + +/** aggregate min on columns */ +export interface tournaments_min_fields { + banner: (Scalars['String'] | null) + /** The check_in_ends_at the close pass has already acted on */ + check_in_closed_for: (Scalars['timestamptz'] | null) + check_in_closes_before_minutes: (Scalars['Int'] | null) + /** The check_in_ends_at the closing reminder was sent for */ + check_in_closing_notified_for: (Scalars['timestamptz'] | null) + /** When the check-in window closes; NULL until it opens */ + check_in_ends_at: (Scalars['timestamptz'] | null) + check_in_opens_before_minutes: (Scalars['Int'] | null) + created_at: (Scalars['timestamptz'] | null) + /** A computed field, executes function "tournament_current_stage" */ + current_stage: (Scalars['Int'] | null) + description: (Scalars['String'] | null) + discord_guild_id: (Scalars['String'] | null) + discord_role_id: (Scalars['String'] | null) + discord_webhook: (Scalars['String'] | null) + homepage: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + latitude: (Scalars['float8'] | null) + location: (Scalars['String'] | null) + logo: (Scalars['String'] | null) + longitude: (Scalars['float8'] | null) + match_options_id: (Scalars['uuid'] | null) + max_elo: (Scalars['Int'] | null) + /** A computed field, executes function "tournament_max_players_per_lineup" */ + max_players_per_lineup: (Scalars['Int'] | null) + min_elo: (Scalars['Int'] | null) + /** A computed field, executes function "tournament_min_players_per_lineup" */ + min_players_per_lineup: (Scalars['Int'] | null) + /** A computed field, executes function "tournament_missed_check_in_count" */ + missed_check_in_count: (Scalars['Int'] | null) + name: (Scalars['String'] | null) + organizer_steam_id: (Scalars['bigint'] | null) + /** Preferred server regions for hosted matches */ + regions: (Scalars['String'][] | null) + scheduling_mode: (Scalars['String'] | null) + start: (Scalars['timestamptz'] | null) + __typename: 'tournaments_min_fields' +} + + +/** response of any mutation on the table "tournaments" */ +export interface tournaments_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: tournaments[] + __typename: 'tournaments_mutation_response' +} + + +/** select columns of table "tournaments" */ +export type tournaments_select_column = 'auto_start' | 'awards_enabled' | 'banner' | 'check_in_closed_for' | 'check_in_closes_before_minutes' | 'check_in_closing_notified_for' | 'check_in_ends_at' | 'check_in_opens_before_minutes' | 'check_in_required' | 'check_in_setting' | 'created_at' | 'description' | 'discord_guild_id' | 'discord_notifications_enabled' | 'discord_notify_Canceled' | 'discord_notify_Finished' | 'discord_notify_Forfeit' | 'discord_notify_Live' | 'discord_notify_MapPaused' | 'discord_notify_PickingPlayers' | 'discord_notify_Scheduled' | 'discord_notify_Surrendered' | 'discord_notify_Tie' | 'discord_notify_Veto' | 'discord_notify_WaitingForCheckIn' | 'discord_notify_WaitingForServer' | 'discord_role_id' | 'discord_voice_enabled' | 'discord_webhook' | 'homepage' | 'id' | 'invite_only' | 'is_league' | 'latitude' | 'location' | 'logo' | 'longitude' | 'match_options_id' | 'max_elo' | 'min_elo' | 'min_role' | 'name' | 'organizer_steam_id' | 'regions' | 'registration_type' | 'scheduling_mode' | 'start' | 'status' | 'substitutes_enabled' + + +/** select "tournaments_aggregate_bool_exp_avg_arguments_columns" columns of table "tournaments" */ +export type tournaments_select_column_tournaments_aggregate_bool_exp_avg_arguments_columns = 'latitude' | 'longitude' + + +/** select "tournaments_aggregate_bool_exp_bool_and_arguments_columns" columns of table "tournaments" */ +export type tournaments_select_column_tournaments_aggregate_bool_exp_bool_and_arguments_columns = 'auto_start' | 'awards_enabled' | 'check_in_required' | 'discord_notifications_enabled' | 'discord_notify_Canceled' | 'discord_notify_Finished' | 'discord_notify_Forfeit' | 'discord_notify_Live' | 'discord_notify_MapPaused' | 'discord_notify_PickingPlayers' | 'discord_notify_Scheduled' | 'discord_notify_Surrendered' | 'discord_notify_Tie' | 'discord_notify_Veto' | 'discord_notify_WaitingForCheckIn' | 'discord_notify_WaitingForServer' | 'discord_voice_enabled' | 'invite_only' | 'is_league' | 'substitutes_enabled' + + +/** select "tournaments_aggregate_bool_exp_bool_or_arguments_columns" columns of table "tournaments" */ +export type tournaments_select_column_tournaments_aggregate_bool_exp_bool_or_arguments_columns = 'auto_start' | 'awards_enabled' | 'check_in_required' | 'discord_notifications_enabled' | 'discord_notify_Canceled' | 'discord_notify_Finished' | 'discord_notify_Forfeit' | 'discord_notify_Live' | 'discord_notify_MapPaused' | 'discord_notify_PickingPlayers' | 'discord_notify_Scheduled' | 'discord_notify_Surrendered' | 'discord_notify_Tie' | 'discord_notify_Veto' | 'discord_notify_WaitingForCheckIn' | 'discord_notify_WaitingForServer' | 'discord_voice_enabled' | 'invite_only' | 'is_league' | 'substitutes_enabled' + + +/** select "tournaments_aggregate_bool_exp_corr_arguments_columns" columns of table "tournaments" */ +export type tournaments_select_column_tournaments_aggregate_bool_exp_corr_arguments_columns = 'latitude' | 'longitude' + + +/** select "tournaments_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "tournaments" */ +export type tournaments_select_column_tournaments_aggregate_bool_exp_covar_samp_arguments_columns = 'latitude' | 'longitude' + + +/** select "tournaments_aggregate_bool_exp_max_arguments_columns" columns of table "tournaments" */ +export type tournaments_select_column_tournaments_aggregate_bool_exp_max_arguments_columns = 'latitude' | 'longitude' + + +/** select "tournaments_aggregate_bool_exp_min_arguments_columns" columns of table "tournaments" */ +export type tournaments_select_column_tournaments_aggregate_bool_exp_min_arguments_columns = 'latitude' | 'longitude' + + +/** select "tournaments_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "tournaments" */ +export type tournaments_select_column_tournaments_aggregate_bool_exp_stddev_samp_arguments_columns = 'latitude' | 'longitude' + + +/** select "tournaments_aggregate_bool_exp_sum_arguments_columns" columns of table "tournaments" */ +export type tournaments_select_column_tournaments_aggregate_bool_exp_sum_arguments_columns = 'latitude' | 'longitude' + + +/** select "tournaments_aggregate_bool_exp_var_samp_arguments_columns" columns of table "tournaments" */ +export type tournaments_select_column_tournaments_aggregate_bool_exp_var_samp_arguments_columns = 'latitude' | 'longitude' + + +/** aggregate stddev on columns */ +export interface tournaments_stddev_fields { + check_in_closes_before_minutes: (Scalars['Float'] | null) + check_in_opens_before_minutes: (Scalars['Float'] | null) + /** A computed field, executes function "tournament_current_stage" */ + current_stage: (Scalars['Int'] | null) + latitude: (Scalars['Float'] | null) + longitude: (Scalars['Float'] | null) + max_elo: (Scalars['Float'] | null) + /** A computed field, executes function "tournament_max_players_per_lineup" */ + max_players_per_lineup: (Scalars['Int'] | null) + min_elo: (Scalars['Float'] | null) + /** A computed field, executes function "tournament_min_players_per_lineup" */ + min_players_per_lineup: (Scalars['Int'] | null) + /** A computed field, executes function "tournament_missed_check_in_count" */ + missed_check_in_count: (Scalars['Int'] | null) + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'tournaments_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface tournaments_stddev_pop_fields { + check_in_closes_before_minutes: (Scalars['Float'] | null) + check_in_opens_before_minutes: (Scalars['Float'] | null) + /** A computed field, executes function "tournament_current_stage" */ + current_stage: (Scalars['Int'] | null) + latitude: (Scalars['Float'] | null) + longitude: (Scalars['Float'] | null) + max_elo: (Scalars['Float'] | null) + /** A computed field, executes function "tournament_max_players_per_lineup" */ + max_players_per_lineup: (Scalars['Int'] | null) + min_elo: (Scalars['Float'] | null) + /** A computed field, executes function "tournament_min_players_per_lineup" */ + min_players_per_lineup: (Scalars['Int'] | null) + /** A computed field, executes function "tournament_missed_check_in_count" */ + missed_check_in_count: (Scalars['Int'] | null) + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'tournaments_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface tournaments_stddev_samp_fields { + check_in_closes_before_minutes: (Scalars['Float'] | null) + check_in_opens_before_minutes: (Scalars['Float'] | null) + /** A computed field, executes function "tournament_current_stage" */ + current_stage: (Scalars['Int'] | null) + latitude: (Scalars['Float'] | null) + longitude: (Scalars['Float'] | null) + max_elo: (Scalars['Float'] | null) + /** A computed field, executes function "tournament_max_players_per_lineup" */ + max_players_per_lineup: (Scalars['Int'] | null) + min_elo: (Scalars['Float'] | null) + /** A computed field, executes function "tournament_min_players_per_lineup" */ + min_players_per_lineup: (Scalars['Int'] | null) + /** A computed field, executes function "tournament_missed_check_in_count" */ + missed_check_in_count: (Scalars['Int'] | null) + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'tournaments_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface tournaments_sum_fields { + check_in_closes_before_minutes: (Scalars['Int'] | null) + check_in_opens_before_minutes: (Scalars['Int'] | null) + /** A computed field, executes function "tournament_current_stage" */ + current_stage: (Scalars['Int'] | null) + latitude: (Scalars['float8'] | null) + longitude: (Scalars['float8'] | null) + max_elo: (Scalars['Int'] | null) + /** A computed field, executes function "tournament_max_players_per_lineup" */ + max_players_per_lineup: (Scalars['Int'] | null) + min_elo: (Scalars['Int'] | null) + /** A computed field, executes function "tournament_min_players_per_lineup" */ + min_players_per_lineup: (Scalars['Int'] | null) + /** A computed field, executes function "tournament_missed_check_in_count" */ + missed_check_in_count: (Scalars['Int'] | null) + organizer_steam_id: (Scalars['bigint'] | null) + __typename: 'tournaments_sum_fields' +} + + +/** update columns of table "tournaments" */ +export type tournaments_update_column = 'auto_start' | 'awards_enabled' | 'banner' | 'check_in_closed_for' | 'check_in_closes_before_minutes' | 'check_in_closing_notified_for' | 'check_in_ends_at' | 'check_in_opens_before_minutes' | 'check_in_required' | 'check_in_setting' | 'created_at' | 'description' | 'discord_guild_id' | 'discord_notifications_enabled' | 'discord_notify_Canceled' | 'discord_notify_Finished' | 'discord_notify_Forfeit' | 'discord_notify_Live' | 'discord_notify_MapPaused' | 'discord_notify_PickingPlayers' | 'discord_notify_Scheduled' | 'discord_notify_Surrendered' | 'discord_notify_Tie' | 'discord_notify_Veto' | 'discord_notify_WaitingForCheckIn' | 'discord_notify_WaitingForServer' | 'discord_role_id' | 'discord_voice_enabled' | 'discord_webhook' | 'homepage' | 'id' | 'invite_only' | 'is_league' | 'latitude' | 'location' | 'logo' | 'longitude' | 'match_options_id' | 'max_elo' | 'min_elo' | 'min_role' | 'name' | 'organizer_steam_id' | 'regions' | 'registration_type' | 'scheduling_mode' | 'start' | 'status' | 'substitutes_enabled' + + +/** aggregate var_pop on columns */ +export interface tournaments_var_pop_fields { + check_in_closes_before_minutes: (Scalars['Float'] | null) + check_in_opens_before_minutes: (Scalars['Float'] | null) + /** A computed field, executes function "tournament_current_stage" */ + current_stage: (Scalars['Int'] | null) + latitude: (Scalars['Float'] | null) + longitude: (Scalars['Float'] | null) + max_elo: (Scalars['Float'] | null) + /** A computed field, executes function "tournament_max_players_per_lineup" */ + max_players_per_lineup: (Scalars['Int'] | null) + min_elo: (Scalars['Float'] | null) + /** A computed field, executes function "tournament_min_players_per_lineup" */ + min_players_per_lineup: (Scalars['Int'] | null) + /** A computed field, executes function "tournament_missed_check_in_count" */ + missed_check_in_count: (Scalars['Int'] | null) + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'tournaments_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface tournaments_var_samp_fields { + check_in_closes_before_minutes: (Scalars['Float'] | null) + check_in_opens_before_minutes: (Scalars['Float'] | null) + /** A computed field, executes function "tournament_current_stage" */ + current_stage: (Scalars['Int'] | null) + latitude: (Scalars['Float'] | null) + longitude: (Scalars['Float'] | null) + max_elo: (Scalars['Float'] | null) + /** A computed field, executes function "tournament_max_players_per_lineup" */ + max_players_per_lineup: (Scalars['Int'] | null) + min_elo: (Scalars['Float'] | null) + /** A computed field, executes function "tournament_min_players_per_lineup" */ + min_players_per_lineup: (Scalars['Int'] | null) + /** A computed field, executes function "tournament_missed_check_in_count" */ + missed_check_in_count: (Scalars['Int'] | null) + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'tournaments_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface tournaments_variance_fields { + check_in_closes_before_minutes: (Scalars['Float'] | null) + check_in_opens_before_minutes: (Scalars['Float'] | null) + /** A computed field, executes function "tournament_current_stage" */ + current_stage: (Scalars['Int'] | null) + latitude: (Scalars['Float'] | null) + longitude: (Scalars['Float'] | null) + max_elo: (Scalars['Float'] | null) + /** A computed field, executes function "tournament_max_players_per_lineup" */ + max_players_per_lineup: (Scalars['Int'] | null) + min_elo: (Scalars['Float'] | null) + /** A computed field, executes function "tournament_min_players_per_lineup" */ + min_players_per_lineup: (Scalars['Int'] | null) + /** A computed field, executes function "tournament_missed_check_in_count" */ + missed_check_in_count: (Scalars['Int'] | null) + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'tournaments_variance_fields' +} + + +/** columns and relationships of "utility_collection_items" */ +export interface utility_collection_items { + /** An object relationship */ + collection: utility_collections + collection_id: Scalars['uuid'] + created_at: Scalars['timestamptz'] + note: (Scalars['String'] | null) + position: Scalars['Int'] + /** An object relationship */ + utility_lineup: utility_lineups + utility_lineup_id: Scalars['uuid'] + __typename: 'utility_collection_items' +} + + +/** aggregated selection of "utility_collection_items" */ +export interface utility_collection_items_aggregate { + aggregate: (utility_collection_items_aggregate_fields | null) + nodes: utility_collection_items[] + __typename: 'utility_collection_items_aggregate' +} + + +/** aggregate fields of "utility_collection_items" */ +export interface utility_collection_items_aggregate_fields { + avg: (utility_collection_items_avg_fields | null) + count: Scalars['Int'] + max: (utility_collection_items_max_fields | null) + min: (utility_collection_items_min_fields | null) + stddev: (utility_collection_items_stddev_fields | null) + stddev_pop: (utility_collection_items_stddev_pop_fields | null) + stddev_samp: (utility_collection_items_stddev_samp_fields | null) + sum: (utility_collection_items_sum_fields | null) + var_pop: (utility_collection_items_var_pop_fields | null) + var_samp: (utility_collection_items_var_samp_fields | null) + variance: (utility_collection_items_variance_fields | null) + __typename: 'utility_collection_items_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface utility_collection_items_avg_fields { + position: (Scalars['Float'] | null) + __typename: 'utility_collection_items_avg_fields' +} + + +/** unique or primary key constraints on table "utility_collection_items" */ +export type utility_collection_items_constraint = 'utility_collection_items_pkey' + + +/** aggregate max on columns */ +export interface utility_collection_items_max_fields { + collection_id: (Scalars['uuid'] | null) + created_at: (Scalars['timestamptz'] | null) + note: (Scalars['String'] | null) + position: (Scalars['Int'] | null) + utility_lineup_id: (Scalars['uuid'] | null) + __typename: 'utility_collection_items_max_fields' +} + + +/** aggregate min on columns */ +export interface utility_collection_items_min_fields { + collection_id: (Scalars['uuid'] | null) + created_at: (Scalars['timestamptz'] | null) + note: (Scalars['String'] | null) + position: (Scalars['Int'] | null) + utility_lineup_id: (Scalars['uuid'] | null) + __typename: 'utility_collection_items_min_fields' +} + + +/** response of any mutation on the table "utility_collection_items" */ +export interface utility_collection_items_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: utility_collection_items[] + __typename: 'utility_collection_items_mutation_response' +} + + +/** select columns of table "utility_collection_items" */ +export type utility_collection_items_select_column = 'collection_id' | 'created_at' | 'note' | 'position' | 'utility_lineup_id' + + +/** aggregate stddev on columns */ +export interface utility_collection_items_stddev_fields { + position: (Scalars['Float'] | null) + __typename: 'utility_collection_items_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface utility_collection_items_stddev_pop_fields { + position: (Scalars['Float'] | null) + __typename: 'utility_collection_items_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface utility_collection_items_stddev_samp_fields { + position: (Scalars['Float'] | null) + __typename: 'utility_collection_items_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface utility_collection_items_sum_fields { + position: (Scalars['Int'] | null) + __typename: 'utility_collection_items_sum_fields' +} + + +/** update columns of table "utility_collection_items" */ +export type utility_collection_items_update_column = 'collection_id' | 'created_at' | 'note' | 'position' | 'utility_lineup_id' + + +/** aggregate var_pop on columns */ +export interface utility_collection_items_var_pop_fields { + position: (Scalars['Float'] | null) + __typename: 'utility_collection_items_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface utility_collection_items_var_samp_fields { + position: (Scalars['Float'] | null) + __typename: 'utility_collection_items_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface utility_collection_items_variance_fields { + position: (Scalars['Float'] | null) + __typename: 'utility_collection_items_variance_fields' +} + + +/** columns and relationships of "utility_collections" */ +export interface utility_collections { + /** A computed field, executes function "can_edit_utility_collection" */ + can_edit: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_view_utility_collection" */ + can_view: (Scalars['Boolean'] | null) + created_at: Scalars['timestamptz'] + description: (Scalars['String'] | null) + id: Scalars['uuid'] + /** An array relationship */ + items: utility_collection_items[] + /** An aggregate relationship */ + items_aggregate: utility_collection_items_aggregate + map_name: (Scalars['String'] | null) + name: Scalars['String'] + /** An object relationship */ + owner: players + owner_steam_id: Scalars['bigint'] + /** An object relationship */ + team: (teams | null) + team_id: (Scalars['uuid'] | null) + updated_at: Scalars['timestamptz'] + visibility: e_utility_visibility_enum + __typename: 'utility_collections' +} + + +/** aggregated selection of "utility_collections" */ +export interface utility_collections_aggregate { + aggregate: (utility_collections_aggregate_fields | null) + nodes: utility_collections[] + __typename: 'utility_collections_aggregate' +} + + +/** aggregate fields of "utility_collections" */ +export interface utility_collections_aggregate_fields { + avg: (utility_collections_avg_fields | null) + count: Scalars['Int'] + max: (utility_collections_max_fields | null) + min: (utility_collections_min_fields | null) + stddev: (utility_collections_stddev_fields | null) + stddev_pop: (utility_collections_stddev_pop_fields | null) + stddev_samp: (utility_collections_stddev_samp_fields | null) + sum: (utility_collections_sum_fields | null) + var_pop: (utility_collections_var_pop_fields | null) + var_samp: (utility_collections_var_samp_fields | null) + variance: (utility_collections_variance_fields | null) + __typename: 'utility_collections_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface utility_collections_avg_fields { + owner_steam_id: (Scalars['Float'] | null) + __typename: 'utility_collections_avg_fields' +} + + +/** unique or primary key constraints on table "utility_collections" */ +export type utility_collections_constraint = 'utility_collections_pkey' + + +/** aggregate max on columns */ +export interface utility_collections_max_fields { + created_at: (Scalars['timestamptz'] | null) + description: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + map_name: (Scalars['String'] | null) + name: (Scalars['String'] | null) + owner_steam_id: (Scalars['bigint'] | null) + team_id: (Scalars['uuid'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'utility_collections_max_fields' +} + + +/** aggregate min on columns */ +export interface utility_collections_min_fields { + created_at: (Scalars['timestamptz'] | null) + description: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + map_name: (Scalars['String'] | null) + name: (Scalars['String'] | null) + owner_steam_id: (Scalars['bigint'] | null) + team_id: (Scalars['uuid'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'utility_collections_min_fields' +} + + +/** response of any mutation on the table "utility_collections" */ +export interface utility_collections_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: utility_collections[] + __typename: 'utility_collections_mutation_response' +} + + +/** select columns of table "utility_collections" */ +export type utility_collections_select_column = 'created_at' | 'description' | 'id' | 'map_name' | 'name' | 'owner_steam_id' | 'team_id' | 'updated_at' | 'visibility' + + +/** aggregate stddev on columns */ +export interface utility_collections_stddev_fields { + owner_steam_id: (Scalars['Float'] | null) + __typename: 'utility_collections_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface utility_collections_stddev_pop_fields { + owner_steam_id: (Scalars['Float'] | null) + __typename: 'utility_collections_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface utility_collections_stddev_samp_fields { + owner_steam_id: (Scalars['Float'] | null) + __typename: 'utility_collections_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface utility_collections_sum_fields { + owner_steam_id: (Scalars['bigint'] | null) + __typename: 'utility_collections_sum_fields' +} + + +/** update columns of table "utility_collections" */ +export type utility_collections_update_column = 'created_at' | 'description' | 'id' | 'map_name' | 'name' | 'owner_steam_id' | 'team_id' | 'updated_at' | 'visibility' + + +/** aggregate var_pop on columns */ +export interface utility_collections_var_pop_fields { + owner_steam_id: (Scalars['Float'] | null) + __typename: 'utility_collections_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface utility_collections_var_samp_fields { + owner_steam_id: (Scalars['Float'] | null) + __typename: 'utility_collections_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface utility_collections_variance_fields { + owner_steam_id: (Scalars['Float'] | null) + __typename: 'utility_collections_variance_fields' +} + + +/** columns and relationships of "utility_demo_mines" */ +export interface utility_demo_mines { + failed_reason: (Scalars['String'] | null) + match_map_demo_id: Scalars['uuid'] + mined_at: Scalars['timestamptz'] + throws: Scalars['Int'] + version: Scalars['Int'] + __typename: 'utility_demo_mines' +} + + +/** aggregated selection of "utility_demo_mines" */ +export interface utility_demo_mines_aggregate { + aggregate: (utility_demo_mines_aggregate_fields | null) + nodes: utility_demo_mines[] + __typename: 'utility_demo_mines_aggregate' +} + + +/** aggregate fields of "utility_demo_mines" */ +export interface utility_demo_mines_aggregate_fields { + avg: (utility_demo_mines_avg_fields | null) + count: Scalars['Int'] + max: (utility_demo_mines_max_fields | null) + min: (utility_demo_mines_min_fields | null) + stddev: (utility_demo_mines_stddev_fields | null) + stddev_pop: (utility_demo_mines_stddev_pop_fields | null) + stddev_samp: (utility_demo_mines_stddev_samp_fields | null) + sum: (utility_demo_mines_sum_fields | null) + var_pop: (utility_demo_mines_var_pop_fields | null) + var_samp: (utility_demo_mines_var_samp_fields | null) + variance: (utility_demo_mines_variance_fields | null) + __typename: 'utility_demo_mines_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface utility_demo_mines_avg_fields { + throws: (Scalars['Float'] | null) + version: (Scalars['Float'] | null) + __typename: 'utility_demo_mines_avg_fields' +} + + +/** unique or primary key constraints on table "utility_demo_mines" */ +export type utility_demo_mines_constraint = 'utility_demo_mines_pkey' + + +/** aggregate max on columns */ +export interface utility_demo_mines_max_fields { + failed_reason: (Scalars['String'] | null) + match_map_demo_id: (Scalars['uuid'] | null) + mined_at: (Scalars['timestamptz'] | null) + throws: (Scalars['Int'] | null) + version: (Scalars['Int'] | null) + __typename: 'utility_demo_mines_max_fields' +} + + +/** aggregate min on columns */ +export interface utility_demo_mines_min_fields { + failed_reason: (Scalars['String'] | null) + match_map_demo_id: (Scalars['uuid'] | null) + mined_at: (Scalars['timestamptz'] | null) + throws: (Scalars['Int'] | null) + version: (Scalars['Int'] | null) + __typename: 'utility_demo_mines_min_fields' +} + + +/** response of any mutation on the table "utility_demo_mines" */ +export interface utility_demo_mines_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: utility_demo_mines[] + __typename: 'utility_demo_mines_mutation_response' +} + + +/** select columns of table "utility_demo_mines" */ +export type utility_demo_mines_select_column = 'failed_reason' | 'match_map_demo_id' | 'mined_at' | 'throws' | 'version' + + +/** aggregate stddev on columns */ +export interface utility_demo_mines_stddev_fields { + throws: (Scalars['Float'] | null) + version: (Scalars['Float'] | null) + __typename: 'utility_demo_mines_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface utility_demo_mines_stddev_pop_fields { + throws: (Scalars['Float'] | null) + version: (Scalars['Float'] | null) + __typename: 'utility_demo_mines_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface utility_demo_mines_stddev_samp_fields { + throws: (Scalars['Float'] | null) + version: (Scalars['Float'] | null) + __typename: 'utility_demo_mines_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface utility_demo_mines_sum_fields { + throws: (Scalars['Int'] | null) + version: (Scalars['Int'] | null) + __typename: 'utility_demo_mines_sum_fields' +} + + +/** update columns of table "utility_demo_mines" */ +export type utility_demo_mines_update_column = 'failed_reason' | 'match_map_demo_id' | 'mined_at' | 'throws' | 'version' + + +/** aggregate var_pop on columns */ +export interface utility_demo_mines_var_pop_fields { + throws: (Scalars['Float'] | null) + version: (Scalars['Float'] | null) + __typename: 'utility_demo_mines_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface utility_demo_mines_var_samp_fields { + throws: (Scalars['Float'] | null) + version: (Scalars['Float'] | null) + __typename: 'utility_demo_mines_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface utility_demo_mines_variance_fields { + throws: (Scalars['Float'] | null) + version: (Scalars['Float'] | null) + __typename: 'utility_demo_mines_variance_fields' +} + + +/** columns and relationships of "utility_demo_throws" */ +export interface utility_demo_throws { + created_at: Scalars['timestamptz'] + flight_time_ms: (Scalars['Int'] | null) + grenade_id: Scalars['Int'] + land_x: Scalars['float8'] + land_y: Scalars['float8'] + land_z: Scalars['float8'] + lineup_bucket: (Scalars['String'] | null) + map_name: Scalars['String'] + /** An object relationship */ + match: (matches | null) + match_id: (Scalars['uuid'] | null) + /** An object relationship */ + match_map: (match_maps | null) + match_map_demo_id: Scalars['uuid'] + match_map_id: (Scalars['uuid'] | null) + origin_x: Scalars['float8'] + origin_y: Scalars['float8'] + origin_z: Scalars['float8'] + round: (Scalars['Int'] | null) + side: e_sides_enum + technique: e_utility_techniques_enum + throw_strength: (e_utility_throw_strengths_enum | null) + thrower_steam_id: (Scalars['bigint'] | null) + thrown_at: (Scalars['timestamptz'] | null) + tick: (Scalars['Int'] | null) + utility_type: e_utility_types_enum + view_pitch: (Scalars['float8'] | null) + view_yaw: (Scalars['float8'] | null) + __typename: 'utility_demo_throws' +} + + +/** aggregated selection of "utility_demo_throws" */ +export interface utility_demo_throws_aggregate { + aggregate: (utility_demo_throws_aggregate_fields | null) + nodes: utility_demo_throws[] + __typename: 'utility_demo_throws_aggregate' +} + + +/** aggregate fields of "utility_demo_throws" */ +export interface utility_demo_throws_aggregate_fields { + avg: (utility_demo_throws_avg_fields | null) + count: Scalars['Int'] + max: (utility_demo_throws_max_fields | null) + min: (utility_demo_throws_min_fields | null) + stddev: (utility_demo_throws_stddev_fields | null) + stddev_pop: (utility_demo_throws_stddev_pop_fields | null) + stddev_samp: (utility_demo_throws_stddev_samp_fields | null) + sum: (utility_demo_throws_sum_fields | null) + var_pop: (utility_demo_throws_var_pop_fields | null) + var_samp: (utility_demo_throws_var_samp_fields | null) + variance: (utility_demo_throws_variance_fields | null) + __typename: 'utility_demo_throws_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface utility_demo_throws_avg_fields { + flight_time_ms: (Scalars['Float'] | null) + grenade_id: (Scalars['Float'] | null) + land_x: (Scalars['Float'] | null) + land_y: (Scalars['Float'] | null) + land_z: (Scalars['Float'] | null) + origin_x: (Scalars['Float'] | null) + origin_y: (Scalars['Float'] | null) + origin_z: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + thrower_steam_id: (Scalars['Float'] | null) + tick: (Scalars['Float'] | null) + view_pitch: (Scalars['Float'] | null) + view_yaw: (Scalars['Float'] | null) + __typename: 'utility_demo_throws_avg_fields' +} + + +/** unique or primary key constraints on table "utility_demo_throws" */ +export type utility_demo_throws_constraint = 'utility_demo_throws_pkey' + + +/** aggregate max on columns */ +export interface utility_demo_throws_max_fields { + created_at: (Scalars['timestamptz'] | null) + flight_time_ms: (Scalars['Int'] | null) + grenade_id: (Scalars['Int'] | null) + land_x: (Scalars['float8'] | null) + land_y: (Scalars['float8'] | null) + land_z: (Scalars['float8'] | null) + lineup_bucket: (Scalars['String'] | null) + map_name: (Scalars['String'] | null) + match_id: (Scalars['uuid'] | null) + match_map_demo_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + origin_x: (Scalars['float8'] | null) + origin_y: (Scalars['float8'] | null) + origin_z: (Scalars['float8'] | null) + round: (Scalars['Int'] | null) + thrower_steam_id: (Scalars['bigint'] | null) + thrown_at: (Scalars['timestamptz'] | null) + tick: (Scalars['Int'] | null) + view_pitch: (Scalars['float8'] | null) + view_yaw: (Scalars['float8'] | null) + __typename: 'utility_demo_throws_max_fields' +} + + +/** aggregate min on columns */ +export interface utility_demo_throws_min_fields { + created_at: (Scalars['timestamptz'] | null) + flight_time_ms: (Scalars['Int'] | null) + grenade_id: (Scalars['Int'] | null) + land_x: (Scalars['float8'] | null) + land_y: (Scalars['float8'] | null) + land_z: (Scalars['float8'] | null) + lineup_bucket: (Scalars['String'] | null) + map_name: (Scalars['String'] | null) + match_id: (Scalars['uuid'] | null) + match_map_demo_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + origin_x: (Scalars['float8'] | null) + origin_y: (Scalars['float8'] | null) + origin_z: (Scalars['float8'] | null) + round: (Scalars['Int'] | null) + thrower_steam_id: (Scalars['bigint'] | null) + thrown_at: (Scalars['timestamptz'] | null) + tick: (Scalars['Int'] | null) + view_pitch: (Scalars['float8'] | null) + view_yaw: (Scalars['float8'] | null) + __typename: 'utility_demo_throws_min_fields' +} + + +/** response of any mutation on the table "utility_demo_throws" */ +export interface utility_demo_throws_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: utility_demo_throws[] + __typename: 'utility_demo_throws_mutation_response' +} + + +/** select columns of table "utility_demo_throws" */ +export type utility_demo_throws_select_column = 'created_at' | 'flight_time_ms' | 'grenade_id' | 'land_x' | 'land_y' | 'land_z' | 'lineup_bucket' | 'map_name' | 'match_id' | 'match_map_demo_id' | 'match_map_id' | 'origin_x' | 'origin_y' | 'origin_z' | 'round' | 'side' | 'technique' | 'throw_strength' | 'thrower_steam_id' | 'thrown_at' | 'tick' | 'utility_type' | 'view_pitch' | 'view_yaw' + + +/** aggregate stddev on columns */ +export interface utility_demo_throws_stddev_fields { + flight_time_ms: (Scalars['Float'] | null) + grenade_id: (Scalars['Float'] | null) + land_x: (Scalars['Float'] | null) + land_y: (Scalars['Float'] | null) + land_z: (Scalars['Float'] | null) + origin_x: (Scalars['Float'] | null) + origin_y: (Scalars['Float'] | null) + origin_z: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + thrower_steam_id: (Scalars['Float'] | null) + tick: (Scalars['Float'] | null) + view_pitch: (Scalars['Float'] | null) + view_yaw: (Scalars['Float'] | null) + __typename: 'utility_demo_throws_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface utility_demo_throws_stddev_pop_fields { + flight_time_ms: (Scalars['Float'] | null) + grenade_id: (Scalars['Float'] | null) + land_x: (Scalars['Float'] | null) + land_y: (Scalars['Float'] | null) + land_z: (Scalars['Float'] | null) + origin_x: (Scalars['Float'] | null) + origin_y: (Scalars['Float'] | null) + origin_z: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + thrower_steam_id: (Scalars['Float'] | null) + tick: (Scalars['Float'] | null) + view_pitch: (Scalars['Float'] | null) + view_yaw: (Scalars['Float'] | null) + __typename: 'utility_demo_throws_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface utility_demo_throws_stddev_samp_fields { + flight_time_ms: (Scalars['Float'] | null) + grenade_id: (Scalars['Float'] | null) + land_x: (Scalars['Float'] | null) + land_y: (Scalars['Float'] | null) + land_z: (Scalars['Float'] | null) + origin_x: (Scalars['Float'] | null) + origin_y: (Scalars['Float'] | null) + origin_z: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + thrower_steam_id: (Scalars['Float'] | null) + tick: (Scalars['Float'] | null) + view_pitch: (Scalars['Float'] | null) + view_yaw: (Scalars['Float'] | null) + __typename: 'utility_demo_throws_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface utility_demo_throws_sum_fields { + flight_time_ms: (Scalars['Int'] | null) + grenade_id: (Scalars['Int'] | null) + land_x: (Scalars['float8'] | null) + land_y: (Scalars['float8'] | null) + land_z: (Scalars['float8'] | null) + origin_x: (Scalars['float8'] | null) + origin_y: (Scalars['float8'] | null) + origin_z: (Scalars['float8'] | null) + round: (Scalars['Int'] | null) + thrower_steam_id: (Scalars['bigint'] | null) + tick: (Scalars['Int'] | null) + view_pitch: (Scalars['float8'] | null) + view_yaw: (Scalars['float8'] | null) + __typename: 'utility_demo_throws_sum_fields' +} + + +/** update columns of table "utility_demo_throws" */ +export type utility_demo_throws_update_column = 'created_at' | 'flight_time_ms' | 'grenade_id' | 'land_x' | 'land_y' | 'land_z' | 'map_name' | 'match_id' | 'match_map_demo_id' | 'match_map_id' | 'origin_x' | 'origin_y' | 'origin_z' | 'round' | 'side' | 'technique' | 'throw_strength' | 'thrower_steam_id' | 'thrown_at' | 'tick' | 'utility_type' | 'view_pitch' | 'view_yaw' + + +/** aggregate var_pop on columns */ +export interface utility_demo_throws_var_pop_fields { + flight_time_ms: (Scalars['Float'] | null) + grenade_id: (Scalars['Float'] | null) + land_x: (Scalars['Float'] | null) + land_y: (Scalars['Float'] | null) + land_z: (Scalars['Float'] | null) + origin_x: (Scalars['Float'] | null) + origin_y: (Scalars['Float'] | null) + origin_z: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + thrower_steam_id: (Scalars['Float'] | null) + tick: (Scalars['Float'] | null) + view_pitch: (Scalars['Float'] | null) + view_yaw: (Scalars['Float'] | null) + __typename: 'utility_demo_throws_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface utility_demo_throws_var_samp_fields { + flight_time_ms: (Scalars['Float'] | null) + grenade_id: (Scalars['Float'] | null) + land_x: (Scalars['Float'] | null) + land_y: (Scalars['Float'] | null) + land_z: (Scalars['Float'] | null) + origin_x: (Scalars['Float'] | null) + origin_y: (Scalars['Float'] | null) + origin_z: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + thrower_steam_id: (Scalars['Float'] | null) + tick: (Scalars['Float'] | null) + view_pitch: (Scalars['Float'] | null) + view_yaw: (Scalars['Float'] | null) + __typename: 'utility_demo_throws_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface utility_demo_throws_variance_fields { + flight_time_ms: (Scalars['Float'] | null) + grenade_id: (Scalars['Float'] | null) + land_x: (Scalars['Float'] | null) + land_y: (Scalars['Float'] | null) + land_z: (Scalars['Float'] | null) + origin_x: (Scalars['Float'] | null) + origin_y: (Scalars['Float'] | null) + origin_z: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + thrower_steam_id: (Scalars['Float'] | null) + tick: (Scalars['Float'] | null) + view_pitch: (Scalars['Float'] | null) + view_yaw: (Scalars['Float'] | null) + __typename: 'utility_demo_throws_variance_fields' +} + + +/** columns and relationships of "utility_drift_results" */ +export interface utility_drift_results { + created_at: Scalars['timestamptz'] + distance: (Scalars['float8'] | null) + distance_xy: (Scalars['float8'] | null) + distance_z: (Scalars['float8'] | null) + reason: (Scalars['String'] | null) + /** An object relationship */ + scan: utility_drift_scans + severity: (Scalars['String'] | null) + utility_drift_scan_id: Scalars['uuid'] + /** An object relationship */ + utility_lineup: utility_lineups + utility_lineup_id: Scalars['uuid'] + verdict: Scalars['String'] + __typename: 'utility_drift_results' +} + + +/** aggregated selection of "utility_drift_results" */ +export interface utility_drift_results_aggregate { + aggregate: (utility_drift_results_aggregate_fields | null) + nodes: utility_drift_results[] + __typename: 'utility_drift_results_aggregate' +} + + +/** aggregate fields of "utility_drift_results" */ +export interface utility_drift_results_aggregate_fields { + avg: (utility_drift_results_avg_fields | null) + count: Scalars['Int'] + max: (utility_drift_results_max_fields | null) + min: (utility_drift_results_min_fields | null) + stddev: (utility_drift_results_stddev_fields | null) + stddev_pop: (utility_drift_results_stddev_pop_fields | null) + stddev_samp: (utility_drift_results_stddev_samp_fields | null) + sum: (utility_drift_results_sum_fields | null) + var_pop: (utility_drift_results_var_pop_fields | null) + var_samp: (utility_drift_results_var_samp_fields | null) + variance: (utility_drift_results_variance_fields | null) + __typename: 'utility_drift_results_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface utility_drift_results_avg_fields { + distance: (Scalars['Float'] | null) + distance_xy: (Scalars['Float'] | null) + distance_z: (Scalars['Float'] | null) + __typename: 'utility_drift_results_avg_fields' +} + + +/** unique or primary key constraints on table "utility_drift_results" */ +export type utility_drift_results_constraint = 'utility_drift_results_pkey' + + +/** aggregate max on columns */ +export interface utility_drift_results_max_fields { + created_at: (Scalars['timestamptz'] | null) + distance: (Scalars['float8'] | null) + distance_xy: (Scalars['float8'] | null) + distance_z: (Scalars['float8'] | null) + reason: (Scalars['String'] | null) + severity: (Scalars['String'] | null) + utility_drift_scan_id: (Scalars['uuid'] | null) + utility_lineup_id: (Scalars['uuid'] | null) + verdict: (Scalars['String'] | null) + __typename: 'utility_drift_results_max_fields' +} + + +/** aggregate min on columns */ +export interface utility_drift_results_min_fields { + created_at: (Scalars['timestamptz'] | null) + distance: (Scalars['float8'] | null) + distance_xy: (Scalars['float8'] | null) + distance_z: (Scalars['float8'] | null) + reason: (Scalars['String'] | null) + severity: (Scalars['String'] | null) + utility_drift_scan_id: (Scalars['uuid'] | null) + utility_lineup_id: (Scalars['uuid'] | null) + verdict: (Scalars['String'] | null) + __typename: 'utility_drift_results_min_fields' +} + + +/** response of any mutation on the table "utility_drift_results" */ +export interface utility_drift_results_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: utility_drift_results[] + __typename: 'utility_drift_results_mutation_response' +} + + +/** select columns of table "utility_drift_results" */ +export type utility_drift_results_select_column = 'created_at' | 'distance' | 'distance_xy' | 'distance_z' | 'reason' | 'severity' | 'utility_drift_scan_id' | 'utility_lineup_id' | 'verdict' + + +/** select "utility_drift_results_aggregate_bool_exp_avg_arguments_columns" columns of table "utility_drift_results" */ +export type utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_avg_arguments_columns = 'distance' | 'distance_xy' | 'distance_z' + + +/** select "utility_drift_results_aggregate_bool_exp_corr_arguments_columns" columns of table "utility_drift_results" */ +export type utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_corr_arguments_columns = 'distance' | 'distance_xy' | 'distance_z' + + +/** select "utility_drift_results_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "utility_drift_results" */ +export type utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_covar_samp_arguments_columns = 'distance' | 'distance_xy' | 'distance_z' + + +/** select "utility_drift_results_aggregate_bool_exp_max_arguments_columns" columns of table "utility_drift_results" */ +export type utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_max_arguments_columns = 'distance' | 'distance_xy' | 'distance_z' + + +/** select "utility_drift_results_aggregate_bool_exp_min_arguments_columns" columns of table "utility_drift_results" */ +export type utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_min_arguments_columns = 'distance' | 'distance_xy' | 'distance_z' + + +/** select "utility_drift_results_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "utility_drift_results" */ +export type utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_stddev_samp_arguments_columns = 'distance' | 'distance_xy' | 'distance_z' + + +/** select "utility_drift_results_aggregate_bool_exp_sum_arguments_columns" columns of table "utility_drift_results" */ +export type utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_sum_arguments_columns = 'distance' | 'distance_xy' | 'distance_z' + + +/** select "utility_drift_results_aggregate_bool_exp_var_samp_arguments_columns" columns of table "utility_drift_results" */ +export type utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_var_samp_arguments_columns = 'distance' | 'distance_xy' | 'distance_z' + + +/** aggregate stddev on columns */ +export interface utility_drift_results_stddev_fields { + distance: (Scalars['Float'] | null) + distance_xy: (Scalars['Float'] | null) + distance_z: (Scalars['Float'] | null) + __typename: 'utility_drift_results_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface utility_drift_results_stddev_pop_fields { + distance: (Scalars['Float'] | null) + distance_xy: (Scalars['Float'] | null) + distance_z: (Scalars['Float'] | null) + __typename: 'utility_drift_results_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface utility_drift_results_stddev_samp_fields { + distance: (Scalars['Float'] | null) + distance_xy: (Scalars['Float'] | null) + distance_z: (Scalars['Float'] | null) + __typename: 'utility_drift_results_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface utility_drift_results_sum_fields { + distance: (Scalars['float8'] | null) + distance_xy: (Scalars['float8'] | null) + distance_z: (Scalars['float8'] | null) + __typename: 'utility_drift_results_sum_fields' +} + + +/** update columns of table "utility_drift_results" */ +export type utility_drift_results_update_column = 'created_at' | 'distance' | 'distance_xy' | 'distance_z' | 'reason' | 'severity' | 'utility_drift_scan_id' | 'utility_lineup_id' | 'verdict' + + +/** aggregate var_pop on columns */ +export interface utility_drift_results_var_pop_fields { + distance: (Scalars['Float'] | null) + distance_xy: (Scalars['Float'] | null) + distance_z: (Scalars['Float'] | null) + __typename: 'utility_drift_results_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface utility_drift_results_var_samp_fields { + distance: (Scalars['Float'] | null) + distance_xy: (Scalars['Float'] | null) + distance_z: (Scalars['Float'] | null) + __typename: 'utility_drift_results_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface utility_drift_results_variance_fields { + distance: (Scalars['Float'] | null) + distance_xy: (Scalars['Float'] | null) + distance_z: (Scalars['Float'] | null) + __typename: 'utility_drift_results_variance_fields' +} + + +/** columns and relationships of "utility_drift_scans" */ +export interface utility_drift_scans { + broken: Scalars['Int'] + created_at: Scalars['timestamptz'] + failure_reason: (Scalars['String'] | null) + finished_at: (Scalars['timestamptz'] | null) + from_revision: (Scalars['String'] | null) + id: Scalars['uuid'] + lineups: Scalars['Int'] + map_name: Scalars['String'] + max_distance: (Scalars['float8'] | null) + moved: Scalars['Int'] + /** An object relationship */ + requested_by: (players | null) + requested_by_steam_id: (Scalars['bigint'] | null) + /** An array relationship */ + results: utility_drift_results[] + /** An aggregate relationship */ + results_aggregate: utility_drift_results_aggregate + scanned: Scalars['Int'] + started_at: (Scalars['timestamptz'] | null) + status: Scalars['String'] + to_revision: (Scalars['String'] | null) + unchanged: Scalars['Int'] + unsimulatable: Scalars['Int'] + updated_at: Scalars['timestamptz'] + __typename: 'utility_drift_scans' +} + + +/** aggregated selection of "utility_drift_scans" */ +export interface utility_drift_scans_aggregate { + aggregate: (utility_drift_scans_aggregate_fields | null) + nodes: utility_drift_scans[] + __typename: 'utility_drift_scans_aggregate' +} + + +/** aggregate fields of "utility_drift_scans" */ +export interface utility_drift_scans_aggregate_fields { + avg: (utility_drift_scans_avg_fields | null) + count: Scalars['Int'] + max: (utility_drift_scans_max_fields | null) + min: (utility_drift_scans_min_fields | null) + stddev: (utility_drift_scans_stddev_fields | null) + stddev_pop: (utility_drift_scans_stddev_pop_fields | null) + stddev_samp: (utility_drift_scans_stddev_samp_fields | null) + sum: (utility_drift_scans_sum_fields | null) + var_pop: (utility_drift_scans_var_pop_fields | null) + var_samp: (utility_drift_scans_var_samp_fields | null) + variance: (utility_drift_scans_variance_fields | null) + __typename: 'utility_drift_scans_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface utility_drift_scans_avg_fields { + broken: (Scalars['Float'] | null) + lineups: (Scalars['Float'] | null) + max_distance: (Scalars['Float'] | null) + moved: (Scalars['Float'] | null) + requested_by_steam_id: (Scalars['Float'] | null) + scanned: (Scalars['Float'] | null) + unchanged: (Scalars['Float'] | null) + unsimulatable: (Scalars['Float'] | null) + __typename: 'utility_drift_scans_avg_fields' +} + + +/** unique or primary key constraints on table "utility_drift_scans" */ +export type utility_drift_scans_constraint = 'utility_drift_scans_pkey' + + +/** aggregate max on columns */ +export interface utility_drift_scans_max_fields { + broken: (Scalars['Int'] | null) + created_at: (Scalars['timestamptz'] | null) + failure_reason: (Scalars['String'] | null) + finished_at: (Scalars['timestamptz'] | null) + from_revision: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + lineups: (Scalars['Int'] | null) + map_name: (Scalars['String'] | null) + max_distance: (Scalars['float8'] | null) + moved: (Scalars['Int'] | null) + requested_by_steam_id: (Scalars['bigint'] | null) + scanned: (Scalars['Int'] | null) + started_at: (Scalars['timestamptz'] | null) + status: (Scalars['String'] | null) + to_revision: (Scalars['String'] | null) + unchanged: (Scalars['Int'] | null) + unsimulatable: (Scalars['Int'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'utility_drift_scans_max_fields' +} + + +/** aggregate min on columns */ +export interface utility_drift_scans_min_fields { + broken: (Scalars['Int'] | null) + created_at: (Scalars['timestamptz'] | null) + failure_reason: (Scalars['String'] | null) + finished_at: (Scalars['timestamptz'] | null) + from_revision: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + lineups: (Scalars['Int'] | null) + map_name: (Scalars['String'] | null) + max_distance: (Scalars['float8'] | null) + moved: (Scalars['Int'] | null) + requested_by_steam_id: (Scalars['bigint'] | null) + scanned: (Scalars['Int'] | null) + started_at: (Scalars['timestamptz'] | null) + status: (Scalars['String'] | null) + to_revision: (Scalars['String'] | null) + unchanged: (Scalars['Int'] | null) + unsimulatable: (Scalars['Int'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'utility_drift_scans_min_fields' +} + + +/** response of any mutation on the table "utility_drift_scans" */ +export interface utility_drift_scans_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: utility_drift_scans[] + __typename: 'utility_drift_scans_mutation_response' +} + + +/** select columns of table "utility_drift_scans" */ +export type utility_drift_scans_select_column = 'broken' | 'created_at' | 'failure_reason' | 'finished_at' | 'from_revision' | 'id' | 'lineups' | 'map_name' | 'max_distance' | 'moved' | 'requested_by_steam_id' | 'scanned' | 'started_at' | 'status' | 'to_revision' | 'unchanged' | 'unsimulatable' | 'updated_at' + + +/** aggregate stddev on columns */ +export interface utility_drift_scans_stddev_fields { + broken: (Scalars['Float'] | null) + lineups: (Scalars['Float'] | null) + max_distance: (Scalars['Float'] | null) + moved: (Scalars['Float'] | null) + requested_by_steam_id: (Scalars['Float'] | null) + scanned: (Scalars['Float'] | null) + unchanged: (Scalars['Float'] | null) + unsimulatable: (Scalars['Float'] | null) + __typename: 'utility_drift_scans_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface utility_drift_scans_stddev_pop_fields { + broken: (Scalars['Float'] | null) + lineups: (Scalars['Float'] | null) + max_distance: (Scalars['Float'] | null) + moved: (Scalars['Float'] | null) + requested_by_steam_id: (Scalars['Float'] | null) + scanned: (Scalars['Float'] | null) + unchanged: (Scalars['Float'] | null) + unsimulatable: (Scalars['Float'] | null) + __typename: 'utility_drift_scans_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface utility_drift_scans_stddev_samp_fields { + broken: (Scalars['Float'] | null) + lineups: (Scalars['Float'] | null) + max_distance: (Scalars['Float'] | null) + moved: (Scalars['Float'] | null) + requested_by_steam_id: (Scalars['Float'] | null) + scanned: (Scalars['Float'] | null) + unchanged: (Scalars['Float'] | null) + unsimulatable: (Scalars['Float'] | null) + __typename: 'utility_drift_scans_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface utility_drift_scans_sum_fields { + broken: (Scalars['Int'] | null) + lineups: (Scalars['Int'] | null) + max_distance: (Scalars['float8'] | null) + moved: (Scalars['Int'] | null) + requested_by_steam_id: (Scalars['bigint'] | null) + scanned: (Scalars['Int'] | null) + unchanged: (Scalars['Int'] | null) + unsimulatable: (Scalars['Int'] | null) + __typename: 'utility_drift_scans_sum_fields' +} + + +/** update columns of table "utility_drift_scans" */ +export type utility_drift_scans_update_column = 'broken' | 'created_at' | 'failure_reason' | 'finished_at' | 'from_revision' | 'id' | 'lineups' | 'map_name' | 'max_distance' | 'moved' | 'requested_by_steam_id' | 'scanned' | 'started_at' | 'status' | 'to_revision' | 'unchanged' | 'unsimulatable' | 'updated_at' + + +/** aggregate var_pop on columns */ +export interface utility_drift_scans_var_pop_fields { + broken: (Scalars['Float'] | null) + lineups: (Scalars['Float'] | null) + max_distance: (Scalars['Float'] | null) + moved: (Scalars['Float'] | null) + requested_by_steam_id: (Scalars['Float'] | null) + scanned: (Scalars['Float'] | null) + unchanged: (Scalars['Float'] | null) + unsimulatable: (Scalars['Float'] | null) + __typename: 'utility_drift_scans_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface utility_drift_scans_var_samp_fields { + broken: (Scalars['Float'] | null) + lineups: (Scalars['Float'] | null) + max_distance: (Scalars['Float'] | null) + moved: (Scalars['Float'] | null) + requested_by_steam_id: (Scalars['Float'] | null) + scanned: (Scalars['Float'] | null) + unchanged: (Scalars['Float'] | null) + unsimulatable: (Scalars['Float'] | null) + __typename: 'utility_drift_scans_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface utility_drift_scans_variance_fields { + broken: (Scalars['Float'] | null) + lineups: (Scalars['Float'] | null) + max_distance: (Scalars['Float'] | null) + moved: (Scalars['Float'] | null) + requested_by_steam_id: (Scalars['Float'] | null) + scanned: (Scalars['Float'] | null) + unchanged: (Scalars['Float'] | null) + unsimulatable: (Scalars['Float'] | null) + __typename: 'utility_drift_scans_variance_fields' +} + + +/** columns and relationships of "utility_lineup_favorites" */ +export interface utility_lineup_favorites { + created_at: Scalars['timestamptz'] + /** An object relationship */ + player: players + steam_id: Scalars['bigint'] + /** An object relationship */ + utility_lineup: utility_lineups + utility_lineup_id: Scalars['uuid'] + __typename: 'utility_lineup_favorites' +} + + +/** aggregated selection of "utility_lineup_favorites" */ +export interface utility_lineup_favorites_aggregate { + aggregate: (utility_lineup_favorites_aggregate_fields | null) + nodes: utility_lineup_favorites[] + __typename: 'utility_lineup_favorites_aggregate' +} + + +/** aggregate fields of "utility_lineup_favorites" */ +export interface utility_lineup_favorites_aggregate_fields { + avg: (utility_lineup_favorites_avg_fields | null) + count: Scalars['Int'] + max: (utility_lineup_favorites_max_fields | null) + min: (utility_lineup_favorites_min_fields | null) + stddev: (utility_lineup_favorites_stddev_fields | null) + stddev_pop: (utility_lineup_favorites_stddev_pop_fields | null) + stddev_samp: (utility_lineup_favorites_stddev_samp_fields | null) + sum: (utility_lineup_favorites_sum_fields | null) + var_pop: (utility_lineup_favorites_var_pop_fields | null) + var_samp: (utility_lineup_favorites_var_samp_fields | null) + variance: (utility_lineup_favorites_variance_fields | null) + __typename: 'utility_lineup_favorites_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface utility_lineup_favorites_avg_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'utility_lineup_favorites_avg_fields' +} + + +/** unique or primary key constraints on table "utility_lineup_favorites" */ +export type utility_lineup_favorites_constraint = 'utility_lineup_favorites_pkey' + + +/** aggregate max on columns */ +export interface utility_lineup_favorites_max_fields { + created_at: (Scalars['timestamptz'] | null) + steam_id: (Scalars['bigint'] | null) + utility_lineup_id: (Scalars['uuid'] | null) + __typename: 'utility_lineup_favorites_max_fields' +} + + +/** aggregate min on columns */ +export interface utility_lineup_favorites_min_fields { + created_at: (Scalars['timestamptz'] | null) + steam_id: (Scalars['bigint'] | null) + utility_lineup_id: (Scalars['uuid'] | null) + __typename: 'utility_lineup_favorites_min_fields' +} + + +/** response of any mutation on the table "utility_lineup_favorites" */ +export interface utility_lineup_favorites_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: utility_lineup_favorites[] + __typename: 'utility_lineup_favorites_mutation_response' +} + + +/** select columns of table "utility_lineup_favorites" */ +export type utility_lineup_favorites_select_column = 'created_at' | 'steam_id' | 'utility_lineup_id' + + +/** aggregate stddev on columns */ +export interface utility_lineup_favorites_stddev_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'utility_lineup_favorites_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface utility_lineup_favorites_stddev_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'utility_lineup_favorites_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface utility_lineup_favorites_stddev_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'utility_lineup_favorites_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface utility_lineup_favorites_sum_fields { + steam_id: (Scalars['bigint'] | null) + __typename: 'utility_lineup_favorites_sum_fields' +} + + +/** update columns of table "utility_lineup_favorites" */ +export type utility_lineup_favorites_update_column = 'created_at' | 'steam_id' | 'utility_lineup_id' + + +/** aggregate var_pop on columns */ +export interface utility_lineup_favorites_var_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'utility_lineup_favorites_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface utility_lineup_favorites_var_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'utility_lineup_favorites_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface utility_lineup_favorites_variance_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'utility_lineup_favorites_variance_fields' +} + + +/** columns and relationships of "utility_lineup_progress" */ +export interface utility_lineup_progress { + attempts: Scalars['Int'] + best_streak: Scalars['Int'] + current_streak: Scalars['Int'] + last_practiced_at: (Scalars['timestamptz'] | null) + mastered_at: (Scalars['timestamptz'] | null) + miss_along_sum: Scalars['float8'] + miss_lateral_sum: Scalars['float8'] + miss_samples: Scalars['Int'] + miss_vertical_sum: Scalars['float8'] + /** An object relationship */ + player: players + steam_id: Scalars['bigint'] + successes: Scalars['Int'] + /** An object relationship */ + utility_lineup: utility_lineups + utility_lineup_id: Scalars['uuid'] + __typename: 'utility_lineup_progress' +} + + +/** aggregated selection of "utility_lineup_progress" */ +export interface utility_lineup_progress_aggregate { + aggregate: (utility_lineup_progress_aggregate_fields | null) + nodes: utility_lineup_progress[] + __typename: 'utility_lineup_progress_aggregate' +} + + +/** aggregate fields of "utility_lineup_progress" */ +export interface utility_lineup_progress_aggregate_fields { + avg: (utility_lineup_progress_avg_fields | null) + count: Scalars['Int'] + max: (utility_lineup_progress_max_fields | null) + min: (utility_lineup_progress_min_fields | null) + stddev: (utility_lineup_progress_stddev_fields | null) + stddev_pop: (utility_lineup_progress_stddev_pop_fields | null) + stddev_samp: (utility_lineup_progress_stddev_samp_fields | null) + sum: (utility_lineup_progress_sum_fields | null) + var_pop: (utility_lineup_progress_var_pop_fields | null) + var_samp: (utility_lineup_progress_var_samp_fields | null) + variance: (utility_lineup_progress_variance_fields | null) + __typename: 'utility_lineup_progress_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface utility_lineup_progress_avg_fields { + attempts: (Scalars['Float'] | null) + best_streak: (Scalars['Float'] | null) + current_streak: (Scalars['Float'] | null) + miss_along_sum: (Scalars['Float'] | null) + miss_lateral_sum: (Scalars['Float'] | null) + miss_samples: (Scalars['Float'] | null) + miss_vertical_sum: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + successes: (Scalars['Float'] | null) + __typename: 'utility_lineup_progress_avg_fields' +} + + +/** unique or primary key constraints on table "utility_lineup_progress" */ +export type utility_lineup_progress_constraint = 'utility_lineup_progress_pkey' + + +/** aggregate max on columns */ +export interface utility_lineup_progress_max_fields { + attempts: (Scalars['Int'] | null) + best_streak: (Scalars['Int'] | null) + current_streak: (Scalars['Int'] | null) + last_practiced_at: (Scalars['timestamptz'] | null) + mastered_at: (Scalars['timestamptz'] | null) + miss_along_sum: (Scalars['float8'] | null) + miss_lateral_sum: (Scalars['float8'] | null) + miss_samples: (Scalars['Int'] | null) + miss_vertical_sum: (Scalars['float8'] | null) + steam_id: (Scalars['bigint'] | null) + successes: (Scalars['Int'] | null) + utility_lineup_id: (Scalars['uuid'] | null) + __typename: 'utility_lineup_progress_max_fields' +} + + +/** aggregate min on columns */ +export interface utility_lineup_progress_min_fields { + attempts: (Scalars['Int'] | null) + best_streak: (Scalars['Int'] | null) + current_streak: (Scalars['Int'] | null) + last_practiced_at: (Scalars['timestamptz'] | null) + mastered_at: (Scalars['timestamptz'] | null) + miss_along_sum: (Scalars['float8'] | null) + miss_lateral_sum: (Scalars['float8'] | null) + miss_samples: (Scalars['Int'] | null) + miss_vertical_sum: (Scalars['float8'] | null) + steam_id: (Scalars['bigint'] | null) + successes: (Scalars['Int'] | null) + utility_lineup_id: (Scalars['uuid'] | null) + __typename: 'utility_lineup_progress_min_fields' +} + + +/** response of any mutation on the table "utility_lineup_progress" */ +export interface utility_lineup_progress_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: utility_lineup_progress[] + __typename: 'utility_lineup_progress_mutation_response' +} + + +/** select columns of table "utility_lineup_progress" */ +export type utility_lineup_progress_select_column = 'attempts' | 'best_streak' | 'current_streak' | 'last_practiced_at' | 'mastered_at' | 'miss_along_sum' | 'miss_lateral_sum' | 'miss_samples' | 'miss_vertical_sum' | 'steam_id' | 'successes' | 'utility_lineup_id' + + +/** select "utility_lineup_progress_aggregate_bool_exp_avg_arguments_columns" columns of table "utility_lineup_progress" */ +export type utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_avg_arguments_columns = 'miss_along_sum' | 'miss_lateral_sum' | 'miss_vertical_sum' + + +/** select "utility_lineup_progress_aggregate_bool_exp_corr_arguments_columns" columns of table "utility_lineup_progress" */ +export type utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_corr_arguments_columns = 'miss_along_sum' | 'miss_lateral_sum' | 'miss_vertical_sum' + + +/** select "utility_lineup_progress_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "utility_lineup_progress" */ +export type utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_covar_samp_arguments_columns = 'miss_along_sum' | 'miss_lateral_sum' | 'miss_vertical_sum' + + +/** select "utility_lineup_progress_aggregate_bool_exp_max_arguments_columns" columns of table "utility_lineup_progress" */ +export type utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_max_arguments_columns = 'miss_along_sum' | 'miss_lateral_sum' | 'miss_vertical_sum' + + +/** select "utility_lineup_progress_aggregate_bool_exp_min_arguments_columns" columns of table "utility_lineup_progress" */ +export type utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_min_arguments_columns = 'miss_along_sum' | 'miss_lateral_sum' | 'miss_vertical_sum' + + +/** select "utility_lineup_progress_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "utility_lineup_progress" */ +export type utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_stddev_samp_arguments_columns = 'miss_along_sum' | 'miss_lateral_sum' | 'miss_vertical_sum' + + +/** select "utility_lineup_progress_aggregate_bool_exp_sum_arguments_columns" columns of table "utility_lineup_progress" */ +export type utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_sum_arguments_columns = 'miss_along_sum' | 'miss_lateral_sum' | 'miss_vertical_sum' + + +/** select "utility_lineup_progress_aggregate_bool_exp_var_samp_arguments_columns" columns of table "utility_lineup_progress" */ +export type utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_var_samp_arguments_columns = 'miss_along_sum' | 'miss_lateral_sum' | 'miss_vertical_sum' + + +/** aggregate stddev on columns */ +export interface utility_lineup_progress_stddev_fields { + attempts: (Scalars['Float'] | null) + best_streak: (Scalars['Float'] | null) + current_streak: (Scalars['Float'] | null) + miss_along_sum: (Scalars['Float'] | null) + miss_lateral_sum: (Scalars['Float'] | null) + miss_samples: (Scalars['Float'] | null) + miss_vertical_sum: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + successes: (Scalars['Float'] | null) + __typename: 'utility_lineup_progress_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface utility_lineup_progress_stddev_pop_fields { + attempts: (Scalars['Float'] | null) + best_streak: (Scalars['Float'] | null) + current_streak: (Scalars['Float'] | null) + miss_along_sum: (Scalars['Float'] | null) + miss_lateral_sum: (Scalars['Float'] | null) + miss_samples: (Scalars['Float'] | null) + miss_vertical_sum: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + successes: (Scalars['Float'] | null) + __typename: 'utility_lineup_progress_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface utility_lineup_progress_stddev_samp_fields { + attempts: (Scalars['Float'] | null) + best_streak: (Scalars['Float'] | null) + current_streak: (Scalars['Float'] | null) + miss_along_sum: (Scalars['Float'] | null) + miss_lateral_sum: (Scalars['Float'] | null) + miss_samples: (Scalars['Float'] | null) + miss_vertical_sum: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + successes: (Scalars['Float'] | null) + __typename: 'utility_lineup_progress_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface utility_lineup_progress_sum_fields { + attempts: (Scalars['Int'] | null) + best_streak: (Scalars['Int'] | null) + current_streak: (Scalars['Int'] | null) + miss_along_sum: (Scalars['float8'] | null) + miss_lateral_sum: (Scalars['float8'] | null) + miss_samples: (Scalars['Int'] | null) + miss_vertical_sum: (Scalars['float8'] | null) + steam_id: (Scalars['bigint'] | null) + successes: (Scalars['Int'] | null) + __typename: 'utility_lineup_progress_sum_fields' +} + + +/** update columns of table "utility_lineup_progress" */ +export type utility_lineup_progress_update_column = 'attempts' | 'best_streak' | 'current_streak' | 'last_practiced_at' | 'mastered_at' | 'miss_along_sum' | 'miss_lateral_sum' | 'miss_samples' | 'miss_vertical_sum' | 'steam_id' | 'successes' | 'utility_lineup_id' + + +/** aggregate var_pop on columns */ +export interface utility_lineup_progress_var_pop_fields { + attempts: (Scalars['Float'] | null) + best_streak: (Scalars['Float'] | null) + current_streak: (Scalars['Float'] | null) + miss_along_sum: (Scalars['Float'] | null) + miss_lateral_sum: (Scalars['Float'] | null) + miss_samples: (Scalars['Float'] | null) + miss_vertical_sum: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + successes: (Scalars['Float'] | null) + __typename: 'utility_lineup_progress_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface utility_lineup_progress_var_samp_fields { + attempts: (Scalars['Float'] | null) + best_streak: (Scalars['Float'] | null) + current_streak: (Scalars['Float'] | null) + miss_along_sum: (Scalars['Float'] | null) + miss_lateral_sum: (Scalars['Float'] | null) + miss_samples: (Scalars['Float'] | null) + miss_vertical_sum: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + successes: (Scalars['Float'] | null) + __typename: 'utility_lineup_progress_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface utility_lineup_progress_variance_fields { + attempts: (Scalars['Float'] | null) + best_streak: (Scalars['Float'] | null) + current_streak: (Scalars['Float'] | null) + miss_along_sum: (Scalars['Float'] | null) + miss_lateral_sum: (Scalars['Float'] | null) + miss_samples: (Scalars['Float'] | null) + miss_vertical_sum: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + successes: (Scalars['Float'] | null) + __typename: 'utility_lineup_progress_variance_fields' +} + + +/** columns and relationships of "utility_lineup_renders" */ +export interface utility_lineup_renders { + created_at: Scalars['timestamptz'] + duration_ms: (Scalars['Int'] | 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'] + k8s_job_name: (Scalars['String'] | null) + last_status_at: Scalars['timestamptz'] + /** An object relationship */ + lineup: utility_lineups + map_name: Scalars['String'] + paused: Scalars['Boolean'] + /** An object relationship */ + practice_session: (utility_practice_sessions | null) + progress: (Scalars['numeric'] | null) + /** An object relationship */ + requested_by: (players | null) + requested_by_steam_id: (Scalars['bigint'] | null) + session_token: Scalars['String'] + skip_reason: (Scalars['String'] | null) + sort_index: Scalars['Int'] + spec: Scalars['jsonb'] + status: Scalars['String'] + status_history: Scalars['jsonb'] + utility_lineup_id: Scalars['uuid'] + utility_practice_session_id: (Scalars['uuid'] | null) + __typename: 'utility_lineup_renders' +} + + +/** aggregated selection of "utility_lineup_renders" */ +export interface utility_lineup_renders_aggregate { + aggregate: (utility_lineup_renders_aggregate_fields | null) + nodes: utility_lineup_renders[] + __typename: 'utility_lineup_renders_aggregate' +} + + +/** aggregate fields of "utility_lineup_renders" */ +export interface utility_lineup_renders_aggregate_fields { + avg: (utility_lineup_renders_avg_fields | null) + count: Scalars['Int'] + max: (utility_lineup_renders_max_fields | null) + min: (utility_lineup_renders_min_fields | null) + stddev: (utility_lineup_renders_stddev_fields | null) + stddev_pop: (utility_lineup_renders_stddev_pop_fields | null) + stddev_samp: (utility_lineup_renders_stddev_samp_fields | null) + sum: (utility_lineup_renders_sum_fields | null) + var_pop: (utility_lineup_renders_var_pop_fields | null) + var_samp: (utility_lineup_renders_var_samp_fields | null) + variance: (utility_lineup_renders_variance_fields | null) + __typename: 'utility_lineup_renders_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface utility_lineup_renders_avg_fields { + duration_ms: (Scalars['Float'] | null) + progress: (Scalars['Float'] | null) + requested_by_steam_id: (Scalars['Float'] | null) + sort_index: (Scalars['Float'] | null) + __typename: 'utility_lineup_renders_avg_fields' +} + + +/** unique or primary key constraints on table "utility_lineup_renders" */ +export type utility_lineup_renders_constraint = 'utility_lineup_renders_one_in_flight_idx' | 'utility_lineup_renders_pkey' + + +/** aggregate max on columns */ +export interface utility_lineup_renders_max_fields { + created_at: (Scalars['timestamptz'] | null) + duration_ms: (Scalars['Int'] | 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) + map_name: (Scalars['String'] | null) + progress: (Scalars['numeric'] | null) + requested_by_steam_id: (Scalars['bigint'] | null) + session_token: (Scalars['String'] | null) + skip_reason: (Scalars['String'] | null) + sort_index: (Scalars['Int'] | null) + status: (Scalars['String'] | null) + utility_lineup_id: (Scalars['uuid'] | null) + utility_practice_session_id: (Scalars['uuid'] | null) + __typename: 'utility_lineup_renders_max_fields' +} + + +/** aggregate min on columns */ +export interface utility_lineup_renders_min_fields { + created_at: (Scalars['timestamptz'] | null) + duration_ms: (Scalars['Int'] | 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) + map_name: (Scalars['String'] | null) + progress: (Scalars['numeric'] | null) + requested_by_steam_id: (Scalars['bigint'] | null) + session_token: (Scalars['String'] | null) + skip_reason: (Scalars['String'] | null) + sort_index: (Scalars['Int'] | null) + status: (Scalars['String'] | null) + utility_lineup_id: (Scalars['uuid'] | null) + utility_practice_session_id: (Scalars['uuid'] | null) + __typename: 'utility_lineup_renders_min_fields' +} + + +/** response of any mutation on the table "utility_lineup_renders" */ +export interface utility_lineup_renders_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: utility_lineup_renders[] + __typename: 'utility_lineup_renders_mutation_response' +} + + +/** select columns of table "utility_lineup_renders" */ +export type utility_lineup_renders_select_column = 'created_at' | 'duration_ms' | 'error_message' | 'game_server_node_id' | 'id' | 'k8s_job_name' | 'last_status_at' | 'map_name' | 'paused' | 'progress' | 'requested_by_steam_id' | 'session_token' | 'skip_reason' | 'sort_index' | 'spec' | 'status' | 'status_history' | 'utility_lineup_id' | 'utility_practice_session_id' + + +/** select "utility_lineup_renders_aggregate_bool_exp_bool_and_arguments_columns" columns of table "utility_lineup_renders" */ +export type utility_lineup_renders_select_column_utility_lineup_renders_aggregate_bool_exp_bool_and_arguments_columns = 'paused' + + +/** select "utility_lineup_renders_aggregate_bool_exp_bool_or_arguments_columns" columns of table "utility_lineup_renders" */ +export type utility_lineup_renders_select_column_utility_lineup_renders_aggregate_bool_exp_bool_or_arguments_columns = 'paused' + + +/** aggregate stddev on columns */ +export interface utility_lineup_renders_stddev_fields { + duration_ms: (Scalars['Float'] | null) + progress: (Scalars['Float'] | null) + requested_by_steam_id: (Scalars['Float'] | null) + sort_index: (Scalars['Float'] | null) + __typename: 'utility_lineup_renders_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface utility_lineup_renders_stddev_pop_fields { + duration_ms: (Scalars['Float'] | null) + progress: (Scalars['Float'] | null) + requested_by_steam_id: (Scalars['Float'] | null) + sort_index: (Scalars['Float'] | null) + __typename: 'utility_lineup_renders_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface utility_lineup_renders_stddev_samp_fields { + duration_ms: (Scalars['Float'] | null) + progress: (Scalars['Float'] | null) + requested_by_steam_id: (Scalars['Float'] | null) + sort_index: (Scalars['Float'] | null) + __typename: 'utility_lineup_renders_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface utility_lineup_renders_sum_fields { + duration_ms: (Scalars['Int'] | null) + progress: (Scalars['numeric'] | null) + requested_by_steam_id: (Scalars['bigint'] | null) + sort_index: (Scalars['Int'] | null) + __typename: 'utility_lineup_renders_sum_fields' +} + + +/** update columns of table "utility_lineup_renders" */ +export type utility_lineup_renders_update_column = 'created_at' | 'duration_ms' | 'error_message' | 'game_server_node_id' | 'id' | 'k8s_job_name' | 'last_status_at' | 'map_name' | 'paused' | 'progress' | 'requested_by_steam_id' | 'session_token' | 'skip_reason' | 'sort_index' | 'spec' | 'status' | 'status_history' | 'utility_lineup_id' | 'utility_practice_session_id' + + +/** aggregate var_pop on columns */ +export interface utility_lineup_renders_var_pop_fields { + duration_ms: (Scalars['Float'] | null) + progress: (Scalars['Float'] | null) + requested_by_steam_id: (Scalars['Float'] | null) + sort_index: (Scalars['Float'] | null) + __typename: 'utility_lineup_renders_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface utility_lineup_renders_var_samp_fields { + duration_ms: (Scalars['Float'] | null) + progress: (Scalars['Float'] | null) + requested_by_steam_id: (Scalars['Float'] | null) + sort_index: (Scalars['Float'] | null) + __typename: 'utility_lineup_renders_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface utility_lineup_renders_variance_fields { + duration_ms: (Scalars['Float'] | null) + progress: (Scalars['Float'] | null) + requested_by_steam_id: (Scalars['Float'] | null) + sort_index: (Scalars['Float'] | null) + __typename: 'utility_lineup_renders_variance_fields' +} + + +/** columns and relationships of "utility_lineup_repairs" */ +export interface utility_lineup_repairs { + created_at: Scalars['timestamptz'] + drift_distance: (Scalars['float8'] | null) + expires_at: Scalars['timestamptz'] + id: Scalars['uuid'] + repaired_at: (Scalars['timestamptz'] | null) + /** An object relationship */ + repaired_utility_lineup: (utility_lineups | null) + repaired_utility_lineup_id: (Scalars['uuid'] | null) + /** An object relationship */ + requested_by: players + requested_by_steam_id: Scalars['bigint'] + status: Scalars['String'] + /** An object relationship */ + utility_drift_scan: (utility_drift_scans | null) + utility_drift_scan_id: (Scalars['uuid'] | null) + /** An object relationship */ + utility_lineup: utility_lineups + utility_lineup_id: Scalars['uuid'] + /** An object relationship */ + utility_practice_session: (utility_practice_sessions | null) + utility_practice_session_id: (Scalars['uuid'] | null) + __typename: 'utility_lineup_repairs' +} + + +/** aggregated selection of "utility_lineup_repairs" */ +export interface utility_lineup_repairs_aggregate { + aggregate: (utility_lineup_repairs_aggregate_fields | null) + nodes: utility_lineup_repairs[] + __typename: 'utility_lineup_repairs_aggregate' +} + + +/** aggregate fields of "utility_lineup_repairs" */ +export interface utility_lineup_repairs_aggregate_fields { + avg: (utility_lineup_repairs_avg_fields | null) + count: Scalars['Int'] + max: (utility_lineup_repairs_max_fields | null) + min: (utility_lineup_repairs_min_fields | null) + stddev: (utility_lineup_repairs_stddev_fields | null) + stddev_pop: (utility_lineup_repairs_stddev_pop_fields | null) + stddev_samp: (utility_lineup_repairs_stddev_samp_fields | null) + sum: (utility_lineup_repairs_sum_fields | null) + var_pop: (utility_lineup_repairs_var_pop_fields | null) + var_samp: (utility_lineup_repairs_var_samp_fields | null) + variance: (utility_lineup_repairs_variance_fields | null) + __typename: 'utility_lineup_repairs_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface utility_lineup_repairs_avg_fields { + drift_distance: (Scalars['Float'] | null) + requested_by_steam_id: (Scalars['Float'] | null) + __typename: 'utility_lineup_repairs_avg_fields' +} + + +/** unique or primary key constraints on table "utility_lineup_repairs" */ +export type utility_lineup_repairs_constraint = 'utility_lineup_repairs_open_idx' | 'utility_lineup_repairs_pkey' + + +/** aggregate max on columns */ +export interface utility_lineup_repairs_max_fields { + created_at: (Scalars['timestamptz'] | null) + drift_distance: (Scalars['float8'] | null) + expires_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + repaired_at: (Scalars['timestamptz'] | null) + repaired_utility_lineup_id: (Scalars['uuid'] | null) + requested_by_steam_id: (Scalars['bigint'] | null) + status: (Scalars['String'] | null) + utility_drift_scan_id: (Scalars['uuid'] | null) + utility_lineup_id: (Scalars['uuid'] | null) + utility_practice_session_id: (Scalars['uuid'] | null) + __typename: 'utility_lineup_repairs_max_fields' +} + + +/** aggregate min on columns */ +export interface utility_lineup_repairs_min_fields { + created_at: (Scalars['timestamptz'] | null) + drift_distance: (Scalars['float8'] | null) + expires_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + repaired_at: (Scalars['timestamptz'] | null) + repaired_utility_lineup_id: (Scalars['uuid'] | null) + requested_by_steam_id: (Scalars['bigint'] | null) + status: (Scalars['String'] | null) + utility_drift_scan_id: (Scalars['uuid'] | null) + utility_lineup_id: (Scalars['uuid'] | null) + utility_practice_session_id: (Scalars['uuid'] | null) + __typename: 'utility_lineup_repairs_min_fields' +} + + +/** response of any mutation on the table "utility_lineup_repairs" */ +export interface utility_lineup_repairs_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: utility_lineup_repairs[] + __typename: 'utility_lineup_repairs_mutation_response' +} + + +/** select columns of table "utility_lineup_repairs" */ +export type utility_lineup_repairs_select_column = 'created_at' | 'drift_distance' | 'expires_at' | 'id' | 'repaired_at' | 'repaired_utility_lineup_id' | 'requested_by_steam_id' | 'status' | 'utility_drift_scan_id' | 'utility_lineup_id' | 'utility_practice_session_id' + + +/** select "utility_lineup_repairs_aggregate_bool_exp_avg_arguments_columns" columns of table "utility_lineup_repairs" */ +export type utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_avg_arguments_columns = 'drift_distance' + + +/** select "utility_lineup_repairs_aggregate_bool_exp_corr_arguments_columns" columns of table "utility_lineup_repairs" */ +export type utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_corr_arguments_columns = 'drift_distance' + + +/** select "utility_lineup_repairs_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "utility_lineup_repairs" */ +export type utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_covar_samp_arguments_columns = 'drift_distance' + + +/** select "utility_lineup_repairs_aggregate_bool_exp_max_arguments_columns" columns of table "utility_lineup_repairs" */ +export type utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_max_arguments_columns = 'drift_distance' + + +/** select "utility_lineup_repairs_aggregate_bool_exp_min_arguments_columns" columns of table "utility_lineup_repairs" */ +export type utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_min_arguments_columns = 'drift_distance' + + +/** select "utility_lineup_repairs_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "utility_lineup_repairs" */ +export type utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_stddev_samp_arguments_columns = 'drift_distance' + + +/** select "utility_lineup_repairs_aggregate_bool_exp_sum_arguments_columns" columns of table "utility_lineup_repairs" */ +export type utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_sum_arguments_columns = 'drift_distance' + + +/** select "utility_lineup_repairs_aggregate_bool_exp_var_samp_arguments_columns" columns of table "utility_lineup_repairs" */ +export type utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_var_samp_arguments_columns = 'drift_distance' + + +/** aggregate stddev on columns */ +export interface utility_lineup_repairs_stddev_fields { + drift_distance: (Scalars['Float'] | null) + requested_by_steam_id: (Scalars['Float'] | null) + __typename: 'utility_lineup_repairs_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface utility_lineup_repairs_stddev_pop_fields { + drift_distance: (Scalars['Float'] | null) + requested_by_steam_id: (Scalars['Float'] | null) + __typename: 'utility_lineup_repairs_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface utility_lineup_repairs_stddev_samp_fields { + drift_distance: (Scalars['Float'] | null) + requested_by_steam_id: (Scalars['Float'] | null) + __typename: 'utility_lineup_repairs_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface utility_lineup_repairs_sum_fields { + drift_distance: (Scalars['float8'] | null) + requested_by_steam_id: (Scalars['bigint'] | null) + __typename: 'utility_lineup_repairs_sum_fields' +} + + +/** update columns of table "utility_lineup_repairs" */ +export type utility_lineup_repairs_update_column = 'created_at' | 'drift_distance' | 'expires_at' | 'id' | 'repaired_at' | 'repaired_utility_lineup_id' | 'requested_by_steam_id' | 'status' | 'utility_drift_scan_id' | 'utility_lineup_id' | 'utility_practice_session_id' + + +/** aggregate var_pop on columns */ +export interface utility_lineup_repairs_var_pop_fields { + drift_distance: (Scalars['Float'] | null) + requested_by_steam_id: (Scalars['Float'] | null) + __typename: 'utility_lineup_repairs_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface utility_lineup_repairs_var_samp_fields { + drift_distance: (Scalars['Float'] | null) + requested_by_steam_id: (Scalars['Float'] | null) + __typename: 'utility_lineup_repairs_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface utility_lineup_repairs_variance_fields { + drift_distance: (Scalars['Float'] | null) + requested_by_steam_id: (Scalars['Float'] | null) + __typename: 'utility_lineup_repairs_variance_fields' +} + + +/** columns and relationships of "utility_lineup_votes" */ +export interface utility_lineup_votes { + created_at: Scalars['timestamptz'] + /** An object relationship */ + player: players + steam_id: Scalars['bigint'] + /** An object relationship */ + utility_lineup: utility_lineups + utility_lineup_id: Scalars['uuid'] + vote: Scalars['smallint'] + __typename: 'utility_lineup_votes' +} + + +/** aggregated selection of "utility_lineup_votes" */ +export interface utility_lineup_votes_aggregate { + aggregate: (utility_lineup_votes_aggregate_fields | null) + nodes: utility_lineup_votes[] + __typename: 'utility_lineup_votes_aggregate' +} + + +/** aggregate fields of "utility_lineup_votes" */ +export interface utility_lineup_votes_aggregate_fields { + avg: (utility_lineup_votes_avg_fields | null) + count: Scalars['Int'] + max: (utility_lineup_votes_max_fields | null) + min: (utility_lineup_votes_min_fields | null) + stddev: (utility_lineup_votes_stddev_fields | null) + stddev_pop: (utility_lineup_votes_stddev_pop_fields | null) + stddev_samp: (utility_lineup_votes_stddev_samp_fields | null) + sum: (utility_lineup_votes_sum_fields | null) + var_pop: (utility_lineup_votes_var_pop_fields | null) + var_samp: (utility_lineup_votes_var_samp_fields | null) + variance: (utility_lineup_votes_variance_fields | null) + __typename: 'utility_lineup_votes_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface utility_lineup_votes_avg_fields { + steam_id: (Scalars['Float'] | null) + vote: (Scalars['Float'] | null) + __typename: 'utility_lineup_votes_avg_fields' +} + + +/** unique or primary key constraints on table "utility_lineup_votes" */ +export type utility_lineup_votes_constraint = 'utility_lineup_votes_pkey' + + +/** aggregate max on columns */ +export interface utility_lineup_votes_max_fields { + created_at: (Scalars['timestamptz'] | null) + steam_id: (Scalars['bigint'] | null) + utility_lineup_id: (Scalars['uuid'] | null) + vote: (Scalars['smallint'] | null) + __typename: 'utility_lineup_votes_max_fields' +} + + +/** aggregate min on columns */ +export interface utility_lineup_votes_min_fields { + created_at: (Scalars['timestamptz'] | null) + steam_id: (Scalars['bigint'] | null) + utility_lineup_id: (Scalars['uuid'] | null) + vote: (Scalars['smallint'] | null) + __typename: 'utility_lineup_votes_min_fields' +} + + +/** response of any mutation on the table "utility_lineup_votes" */ +export interface utility_lineup_votes_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: utility_lineup_votes[] + __typename: 'utility_lineup_votes_mutation_response' +} + + +/** select columns of table "utility_lineup_votes" */ +export type utility_lineup_votes_select_column = 'created_at' | 'steam_id' | 'utility_lineup_id' | 'vote' + + +/** aggregate stddev on columns */ +export interface utility_lineup_votes_stddev_fields { + steam_id: (Scalars['Float'] | null) + vote: (Scalars['Float'] | null) + __typename: 'utility_lineup_votes_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface utility_lineup_votes_stddev_pop_fields { + steam_id: (Scalars['Float'] | null) + vote: (Scalars['Float'] | null) + __typename: 'utility_lineup_votes_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface utility_lineup_votes_stddev_samp_fields { + steam_id: (Scalars['Float'] | null) + vote: (Scalars['Float'] | null) + __typename: 'utility_lineup_votes_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface utility_lineup_votes_sum_fields { + steam_id: (Scalars['bigint'] | null) + vote: (Scalars['smallint'] | null) + __typename: 'utility_lineup_votes_sum_fields' +} + + +/** update columns of table "utility_lineup_votes" */ +export type utility_lineup_votes_update_column = 'created_at' | 'steam_id' | 'utility_lineup_id' | 'vote' + + +/** aggregate var_pop on columns */ +export interface utility_lineup_votes_var_pop_fields { + steam_id: (Scalars['Float'] | null) + vote: (Scalars['Float'] | null) + __typename: 'utility_lineup_votes_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface utility_lineup_votes_var_samp_fields { + steam_id: (Scalars['Float'] | null) + vote: (Scalars['Float'] | null) + __typename: 'utility_lineup_votes_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface utility_lineup_votes_variance_fields { + steam_id: (Scalars['Float'] | null) + vote: (Scalars['Float'] | null) + __typename: 'utility_lineup_votes_variance_fields' +} + + +/** columns and relationships of "utility_lineups" */ +export interface utility_lineups { + aim_tolerance: Scalars['float8'] + archived_at: (Scalars['timestamptz'] | null) + /** An object relationship */ + author: players + author_steam_id: Scalars['bigint'] + /** A computed field, executes function "can_edit_utility_lineup" */ + can_edit: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_view_utility_lineup" */ + can_view: (Scalars['Boolean'] | null) + /** An array relationship */ + collection_items: utility_collection_items[] + /** An aggregate relationship */ + collection_items_aggregate: utility_collection_items_aggregate + confidence: Scalars['String'] + created_at: Scalars['timestamptz'] + description: (Scalars['String'] | null) + /** A computed field, executes function "utility_lineup_difficulty" */ + difficulty: (Scalars['String'] | null) + downvotes: Scalars['Int'] + external_id: (Scalars['String'] | null) + eye_z: (Scalars['float8'] | null) + /** An array relationship */ + favorited_by: utility_lineup_favorites[] + /** An aggregate relationship */ + favorited_by_aggregate: utility_lineup_favorites_aggregate + favorites: Scalars['Int'] + flight_time_ms: (Scalars['Int'] | null) + /** An object relationship */ + forked_from: (utility_lineups | null) + forked_from_utility_lineup_id: (Scalars['uuid'] | null) + id: Scalars['uuid'] + initial_pos_x: (Scalars['float8'] | null) + initial_pos_y: (Scalars['float8'] | null) + initial_pos_z: (Scalars['float8'] | null) + initial_vel_x: (Scalars['float8'] | null) + initial_vel_y: (Scalars['float8'] | null) + initial_vel_z: (Scalars['float8'] | null) + /** A computed field, executes function "utility_lineup_is_favorited" */ + is_favorited: (Scalars['Boolean'] | null) + jump_throw_bind: Scalars['Boolean'] + land_x: Scalars['float8'] + land_y: Scalars['float8'] + land_z: Scalars['float8'] + lineup_bucket: (Scalars['String'] | null) + map_name: Scalars['String'] + /** A computed field, executes function "utility_lineup_my_vote" */ + my_vote: (Scalars['smallint'] | null) + name: Scalars['String'] + origin_source: e_utility_sources_enum + origin_x: Scalars['float8'] + origin_y: Scalars['float8'] + origin_z: Scalars['float8'] + practice_attempts: Scalars['Int'] + practice_players: Scalars['Int'] + practice_successes: Scalars['Int'] + preview_duration_ms: (Scalars['Int'] | null) + preview_file: (Scalars['String'] | null) + preview_rendered_at: (Scalars['timestamptz'] | null) + preview_thumbnail: (Scalars['String'] | null) + /** A computed field, executes function "utility_lineup_preview_thumbnail_url" */ + preview_thumbnail_url: (Scalars['String'] | null) + /** A computed field, executes function "utility_lineup_preview_url" */ + preview_url: (Scalars['String'] | null) + /** An array relationship */ + progress: utility_lineup_progress[] + /** An aggregate relationship */ + progress_aggregate: utility_lineup_progress_aggregate + public_requested_at: (Scalars['timestamptz'] | null) + public_review_note: (Scalars['String'] | null) + public_reviewed_at: (Scalars['timestamptz'] | null) + public_reviewed_by: (Scalars['bigint'] | null) + /** An array relationship */ + renders: utility_lineup_renders[] + /** An aggregate relationship */ + renders_aggregate: utility_lineup_renders_aggregate + /** An array relationship */ + repairs: utility_lineup_repairs[] + /** An aggregate relationship */ + repairs_aggregate: utility_lineup_repairs_aggregate + side: e_sides_enum + source_grenade_id: (Scalars['Int'] | null) + /** An object relationship */ + source_match: (matches | null) + source_match_id: (Scalars['uuid'] | null) + /** An object relationship */ + source_match_map: (match_maps | null) + source_match_map_id: (Scalars['uuid'] | null) + source_url: (Scalars['String'] | null) + tags: Scalars['String'][] + /** An object relationship */ + team: (teams | null) + team_id: (Scalars['uuid'] | null) + technique: e_utility_techniques_enum + throw_strength: (e_utility_throw_strengths_enum | null) + trajectory_file: (Scalars['String'] | null) + trajectory_preview: (Scalars['jsonb'] | null) + trajectory_size: (Scalars['Int'] | null) + updated_at: Scalars['timestamptz'] + upvotes: Scalars['Int'] + utility_type: e_utility_types_enum + verified_at: (Scalars['timestamptz'] | null) + view_pitch: Scalars['float8'] + view_pitch_delta: (Scalars['float8'] | null) + view_yaw: Scalars['float8'] + view_yaw_delta: (Scalars['float8'] | null) + visibility: e_utility_visibility_enum + /** An array relationship */ + votes: utility_lineup_votes[] + /** An aggregate relationship */ + votes_aggregate: utility_lineup_votes_aggregate + workshop_map_id: (Scalars['String'] | null) + __typename: 'utility_lineups' +} + + +/** aggregated selection of "utility_lineups" */ +export interface utility_lineups_aggregate { + aggregate: (utility_lineups_aggregate_fields | null) + nodes: utility_lineups[] + __typename: 'utility_lineups_aggregate' +} + + +/** aggregate fields of "utility_lineups" */ +export interface utility_lineups_aggregate_fields { + avg: (utility_lineups_avg_fields | null) + count: Scalars['Int'] + max: (utility_lineups_max_fields | null) + min: (utility_lineups_min_fields | null) + stddev: (utility_lineups_stddev_fields | null) + stddev_pop: (utility_lineups_stddev_pop_fields | null) + stddev_samp: (utility_lineups_stddev_samp_fields | null) + sum: (utility_lineups_sum_fields | null) + var_pop: (utility_lineups_var_pop_fields | null) + var_samp: (utility_lineups_var_samp_fields | null) + variance: (utility_lineups_variance_fields | null) + __typename: 'utility_lineups_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface utility_lineups_avg_fields { + aim_tolerance: (Scalars['Float'] | null) + author_steam_id: (Scalars['Float'] | null) + downvotes: (Scalars['Float'] | null) + eye_z: (Scalars['Float'] | null) + favorites: (Scalars['Float'] | null) + flight_time_ms: (Scalars['Float'] | null) + initial_pos_x: (Scalars['Float'] | null) + initial_pos_y: (Scalars['Float'] | null) + initial_pos_z: (Scalars['Float'] | null) + initial_vel_x: (Scalars['Float'] | null) + initial_vel_y: (Scalars['Float'] | null) + initial_vel_z: (Scalars['Float'] | null) + land_x: (Scalars['Float'] | null) + land_y: (Scalars['Float'] | null) + land_z: (Scalars['Float'] | null) + /** A computed field, executes function "utility_lineup_my_vote" */ + my_vote: (Scalars['smallint'] | null) + origin_x: (Scalars['Float'] | null) + origin_y: (Scalars['Float'] | null) + origin_z: (Scalars['Float'] | null) + practice_attempts: (Scalars['Float'] | null) + practice_players: (Scalars['Float'] | null) + practice_successes: (Scalars['Float'] | null) + preview_duration_ms: (Scalars['Float'] | null) + public_reviewed_by: (Scalars['Float'] | null) + source_grenade_id: (Scalars['Float'] | null) + trajectory_size: (Scalars['Float'] | null) + upvotes: (Scalars['Float'] | null) + view_pitch: (Scalars['Float'] | null) + view_pitch_delta: (Scalars['Float'] | null) + view_yaw: (Scalars['Float'] | null) + view_yaw_delta: (Scalars['Float'] | null) + __typename: 'utility_lineups_avg_fields' +} + + +/** unique or primary key constraints on table "utility_lineups" */ +export type utility_lineups_constraint = 'utility_lineups_external_idx' | 'utility_lineups_pkey' + + +/** aggregate max on columns */ +export interface utility_lineups_max_fields { + aim_tolerance: (Scalars['float8'] | null) + archived_at: (Scalars['timestamptz'] | null) + author_steam_id: (Scalars['bigint'] | null) + confidence: (Scalars['String'] | null) + created_at: (Scalars['timestamptz'] | null) + description: (Scalars['String'] | null) + /** A computed field, executes function "utility_lineup_difficulty" */ + difficulty: (Scalars['String'] | null) + downvotes: (Scalars['Int'] | null) + external_id: (Scalars['String'] | null) + eye_z: (Scalars['float8'] | null) + favorites: (Scalars['Int'] | null) + flight_time_ms: (Scalars['Int'] | null) + forked_from_utility_lineup_id: (Scalars['uuid'] | null) + id: (Scalars['uuid'] | null) + initial_pos_x: (Scalars['float8'] | null) + initial_pos_y: (Scalars['float8'] | null) + initial_pos_z: (Scalars['float8'] | null) + initial_vel_x: (Scalars['float8'] | null) + initial_vel_y: (Scalars['float8'] | null) + initial_vel_z: (Scalars['float8'] | null) + land_x: (Scalars['float8'] | null) + land_y: (Scalars['float8'] | null) + land_z: (Scalars['float8'] | null) + lineup_bucket: (Scalars['String'] | null) + map_name: (Scalars['String'] | null) + /** A computed field, executes function "utility_lineup_my_vote" */ + my_vote: (Scalars['smallint'] | null) + name: (Scalars['String'] | null) + origin_x: (Scalars['float8'] | null) + origin_y: (Scalars['float8'] | null) + origin_z: (Scalars['float8'] | null) + practice_attempts: (Scalars['Int'] | null) + practice_players: (Scalars['Int'] | null) + practice_successes: (Scalars['Int'] | null) + preview_duration_ms: (Scalars['Int'] | null) + preview_file: (Scalars['String'] | null) + preview_rendered_at: (Scalars['timestamptz'] | null) + preview_thumbnail: (Scalars['String'] | null) + /** A computed field, executes function "utility_lineup_preview_thumbnail_url" */ + preview_thumbnail_url: (Scalars['String'] | null) + /** A computed field, executes function "utility_lineup_preview_url" */ + preview_url: (Scalars['String'] | null) + public_requested_at: (Scalars['timestamptz'] | null) + public_review_note: (Scalars['String'] | null) + public_reviewed_at: (Scalars['timestamptz'] | null) + public_reviewed_by: (Scalars['bigint'] | null) + source_grenade_id: (Scalars['Int'] | null) + source_match_id: (Scalars['uuid'] | null) + source_match_map_id: (Scalars['uuid'] | null) + source_url: (Scalars['String'] | null) + tags: (Scalars['String'][] | null) + team_id: (Scalars['uuid'] | null) + trajectory_file: (Scalars['String'] | null) + trajectory_size: (Scalars['Int'] | null) + updated_at: (Scalars['timestamptz'] | null) + upvotes: (Scalars['Int'] | null) + verified_at: (Scalars['timestamptz'] | null) + view_pitch: (Scalars['float8'] | null) + view_pitch_delta: (Scalars['float8'] | null) + view_yaw: (Scalars['float8'] | null) + view_yaw_delta: (Scalars['float8'] | null) + workshop_map_id: (Scalars['String'] | null) + __typename: 'utility_lineups_max_fields' +} + + +/** aggregate min on columns */ +export interface utility_lineups_min_fields { + aim_tolerance: (Scalars['float8'] | null) + archived_at: (Scalars['timestamptz'] | null) + author_steam_id: (Scalars['bigint'] | null) + confidence: (Scalars['String'] | null) + created_at: (Scalars['timestamptz'] | null) + description: (Scalars['String'] | null) + /** A computed field, executes function "utility_lineup_difficulty" */ + difficulty: (Scalars['String'] | null) + downvotes: (Scalars['Int'] | null) + external_id: (Scalars['String'] | null) + eye_z: (Scalars['float8'] | null) + favorites: (Scalars['Int'] | null) + flight_time_ms: (Scalars['Int'] | null) + forked_from_utility_lineup_id: (Scalars['uuid'] | null) + id: (Scalars['uuid'] | null) + initial_pos_x: (Scalars['float8'] | null) + initial_pos_y: (Scalars['float8'] | null) + initial_pos_z: (Scalars['float8'] | null) + initial_vel_x: (Scalars['float8'] | null) + initial_vel_y: (Scalars['float8'] | null) + initial_vel_z: (Scalars['float8'] | null) + land_x: (Scalars['float8'] | null) + land_y: (Scalars['float8'] | null) + land_z: (Scalars['float8'] | null) + lineup_bucket: (Scalars['String'] | null) + map_name: (Scalars['String'] | null) + /** A computed field, executes function "utility_lineup_my_vote" */ + my_vote: (Scalars['smallint'] | null) + name: (Scalars['String'] | null) + origin_x: (Scalars['float8'] | null) + origin_y: (Scalars['float8'] | null) + origin_z: (Scalars['float8'] | null) + practice_attempts: (Scalars['Int'] | null) + practice_players: (Scalars['Int'] | null) + practice_successes: (Scalars['Int'] | null) + preview_duration_ms: (Scalars['Int'] | null) + preview_file: (Scalars['String'] | null) + preview_rendered_at: (Scalars['timestamptz'] | null) + preview_thumbnail: (Scalars['String'] | null) + /** A computed field, executes function "utility_lineup_preview_thumbnail_url" */ + preview_thumbnail_url: (Scalars['String'] | null) + /** A computed field, executes function "utility_lineup_preview_url" */ + preview_url: (Scalars['String'] | null) + public_requested_at: (Scalars['timestamptz'] | null) + public_review_note: (Scalars['String'] | null) + public_reviewed_at: (Scalars['timestamptz'] | null) + public_reviewed_by: (Scalars['bigint'] | null) + source_grenade_id: (Scalars['Int'] | null) + source_match_id: (Scalars['uuid'] | null) + source_match_map_id: (Scalars['uuid'] | null) + source_url: (Scalars['String'] | null) + tags: (Scalars['String'][] | null) + team_id: (Scalars['uuid'] | null) + trajectory_file: (Scalars['String'] | null) + trajectory_size: (Scalars['Int'] | null) + updated_at: (Scalars['timestamptz'] | null) + upvotes: (Scalars['Int'] | null) + verified_at: (Scalars['timestamptz'] | null) + view_pitch: (Scalars['float8'] | null) + view_pitch_delta: (Scalars['float8'] | null) + view_yaw: (Scalars['float8'] | null) + view_yaw_delta: (Scalars['float8'] | null) + workshop_map_id: (Scalars['String'] | null) + __typename: 'utility_lineups_min_fields' +} + + +/** response of any mutation on the table "utility_lineups" */ +export interface utility_lineups_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: utility_lineups[] + __typename: 'utility_lineups_mutation_response' +} + + +/** select columns of table "utility_lineups" */ +export type utility_lineups_select_column = 'aim_tolerance' | 'archived_at' | 'author_steam_id' | 'confidence' | 'created_at' | 'description' | 'downvotes' | 'external_id' | 'eye_z' | 'favorites' | 'flight_time_ms' | 'forked_from_utility_lineup_id' | 'id' | 'initial_pos_x' | 'initial_pos_y' | 'initial_pos_z' | 'initial_vel_x' | 'initial_vel_y' | 'initial_vel_z' | 'jump_throw_bind' | 'land_x' | 'land_y' | 'land_z' | 'lineup_bucket' | 'map_name' | 'name' | 'origin_source' | 'origin_x' | 'origin_y' | 'origin_z' | 'practice_attempts' | 'practice_players' | 'practice_successes' | 'preview_duration_ms' | 'preview_file' | 'preview_rendered_at' | 'preview_thumbnail' | 'public_requested_at' | 'public_review_note' | 'public_reviewed_at' | 'public_reviewed_by' | 'side' | 'source_grenade_id' | 'source_match_id' | 'source_match_map_id' | 'source_url' | 'tags' | 'team_id' | 'technique' | 'throw_strength' | 'trajectory_file' | 'trajectory_preview' | 'trajectory_size' | 'updated_at' | 'upvotes' | 'utility_type' | 'verified_at' | 'view_pitch' | 'view_pitch_delta' | 'view_yaw' | 'view_yaw_delta' | 'visibility' | 'workshop_map_id' + + +/** select "utility_lineups_aggregate_bool_exp_avg_arguments_columns" columns of table "utility_lineups" */ +export type utility_lineups_select_column_utility_lineups_aggregate_bool_exp_avg_arguments_columns = 'aim_tolerance' | 'eye_z' | 'initial_pos_x' | 'initial_pos_y' | 'initial_pos_z' | 'initial_vel_x' | 'initial_vel_y' | 'initial_vel_z' | 'land_x' | 'land_y' | 'land_z' | 'origin_x' | 'origin_y' | 'origin_z' | 'view_pitch' | 'view_pitch_delta' | 'view_yaw' | 'view_yaw_delta' + + +/** select "utility_lineups_aggregate_bool_exp_bool_and_arguments_columns" columns of table "utility_lineups" */ +export type utility_lineups_select_column_utility_lineups_aggregate_bool_exp_bool_and_arguments_columns = 'jump_throw_bind' + + +/** select "utility_lineups_aggregate_bool_exp_bool_or_arguments_columns" columns of table "utility_lineups" */ +export type utility_lineups_select_column_utility_lineups_aggregate_bool_exp_bool_or_arguments_columns = 'jump_throw_bind' + + +/** select "utility_lineups_aggregate_bool_exp_corr_arguments_columns" columns of table "utility_lineups" */ +export type utility_lineups_select_column_utility_lineups_aggregate_bool_exp_corr_arguments_columns = 'aim_tolerance' | 'eye_z' | 'initial_pos_x' | 'initial_pos_y' | 'initial_pos_z' | 'initial_vel_x' | 'initial_vel_y' | 'initial_vel_z' | 'land_x' | 'land_y' | 'land_z' | 'origin_x' | 'origin_y' | 'origin_z' | 'view_pitch' | 'view_pitch_delta' | 'view_yaw' | 'view_yaw_delta' + + +/** select "utility_lineups_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "utility_lineups" */ +export type utility_lineups_select_column_utility_lineups_aggregate_bool_exp_covar_samp_arguments_columns = 'aim_tolerance' | 'eye_z' | 'initial_pos_x' | 'initial_pos_y' | 'initial_pos_z' | 'initial_vel_x' | 'initial_vel_y' | 'initial_vel_z' | 'land_x' | 'land_y' | 'land_z' | 'origin_x' | 'origin_y' | 'origin_z' | 'view_pitch' | 'view_pitch_delta' | 'view_yaw' | 'view_yaw_delta' + + +/** select "utility_lineups_aggregate_bool_exp_max_arguments_columns" columns of table "utility_lineups" */ +export type utility_lineups_select_column_utility_lineups_aggregate_bool_exp_max_arguments_columns = 'aim_tolerance' | 'eye_z' | 'initial_pos_x' | 'initial_pos_y' | 'initial_pos_z' | 'initial_vel_x' | 'initial_vel_y' | 'initial_vel_z' | 'land_x' | 'land_y' | 'land_z' | 'origin_x' | 'origin_y' | 'origin_z' | 'view_pitch' | 'view_pitch_delta' | 'view_yaw' | 'view_yaw_delta' + + +/** select "utility_lineups_aggregate_bool_exp_min_arguments_columns" columns of table "utility_lineups" */ +export type utility_lineups_select_column_utility_lineups_aggregate_bool_exp_min_arguments_columns = 'aim_tolerance' | 'eye_z' | 'initial_pos_x' | 'initial_pos_y' | 'initial_pos_z' | 'initial_vel_x' | 'initial_vel_y' | 'initial_vel_z' | 'land_x' | 'land_y' | 'land_z' | 'origin_x' | 'origin_y' | 'origin_z' | 'view_pitch' | 'view_pitch_delta' | 'view_yaw' | 'view_yaw_delta' + + +/** select "utility_lineups_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "utility_lineups" */ +export type utility_lineups_select_column_utility_lineups_aggregate_bool_exp_stddev_samp_arguments_columns = 'aim_tolerance' | 'eye_z' | 'initial_pos_x' | 'initial_pos_y' | 'initial_pos_z' | 'initial_vel_x' | 'initial_vel_y' | 'initial_vel_z' | 'land_x' | 'land_y' | 'land_z' | 'origin_x' | 'origin_y' | 'origin_z' | 'view_pitch' | 'view_pitch_delta' | 'view_yaw' | 'view_yaw_delta' + + +/** select "utility_lineups_aggregate_bool_exp_sum_arguments_columns" columns of table "utility_lineups" */ +export type utility_lineups_select_column_utility_lineups_aggregate_bool_exp_sum_arguments_columns = 'aim_tolerance' | 'eye_z' | 'initial_pos_x' | 'initial_pos_y' | 'initial_pos_z' | 'initial_vel_x' | 'initial_vel_y' | 'initial_vel_z' | 'land_x' | 'land_y' | 'land_z' | 'origin_x' | 'origin_y' | 'origin_z' | 'view_pitch' | 'view_pitch_delta' | 'view_yaw' | 'view_yaw_delta' + + +/** select "utility_lineups_aggregate_bool_exp_var_samp_arguments_columns" columns of table "utility_lineups" */ +export type utility_lineups_select_column_utility_lineups_aggregate_bool_exp_var_samp_arguments_columns = 'aim_tolerance' | 'eye_z' | 'initial_pos_x' | 'initial_pos_y' | 'initial_pos_z' | 'initial_vel_x' | 'initial_vel_y' | 'initial_vel_z' | 'land_x' | 'land_y' | 'land_z' | 'origin_x' | 'origin_y' | 'origin_z' | 'view_pitch' | 'view_pitch_delta' | 'view_yaw' | 'view_yaw_delta' + + +/** aggregate stddev on columns */ +export interface utility_lineups_stddev_fields { + aim_tolerance: (Scalars['Float'] | null) + author_steam_id: (Scalars['Float'] | null) + downvotes: (Scalars['Float'] | null) + eye_z: (Scalars['Float'] | null) + favorites: (Scalars['Float'] | null) + flight_time_ms: (Scalars['Float'] | null) + initial_pos_x: (Scalars['Float'] | null) + initial_pos_y: (Scalars['Float'] | null) + initial_pos_z: (Scalars['Float'] | null) + initial_vel_x: (Scalars['Float'] | null) + initial_vel_y: (Scalars['Float'] | null) + initial_vel_z: (Scalars['Float'] | null) + land_x: (Scalars['Float'] | null) + land_y: (Scalars['Float'] | null) + land_z: (Scalars['Float'] | null) + /** A computed field, executes function "utility_lineup_my_vote" */ + my_vote: (Scalars['smallint'] | null) + origin_x: (Scalars['Float'] | null) + origin_y: (Scalars['Float'] | null) + origin_z: (Scalars['Float'] | null) + practice_attempts: (Scalars['Float'] | null) + practice_players: (Scalars['Float'] | null) + practice_successes: (Scalars['Float'] | null) + preview_duration_ms: (Scalars['Float'] | null) + public_reviewed_by: (Scalars['Float'] | null) + source_grenade_id: (Scalars['Float'] | null) + trajectory_size: (Scalars['Float'] | null) + upvotes: (Scalars['Float'] | null) + view_pitch: (Scalars['Float'] | null) + view_pitch_delta: (Scalars['Float'] | null) + view_yaw: (Scalars['Float'] | null) + view_yaw_delta: (Scalars['Float'] | null) + __typename: 'utility_lineups_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface utility_lineups_stddev_pop_fields { + aim_tolerance: (Scalars['Float'] | null) + author_steam_id: (Scalars['Float'] | null) + downvotes: (Scalars['Float'] | null) + eye_z: (Scalars['Float'] | null) + favorites: (Scalars['Float'] | null) + flight_time_ms: (Scalars['Float'] | null) + initial_pos_x: (Scalars['Float'] | null) + initial_pos_y: (Scalars['Float'] | null) + initial_pos_z: (Scalars['Float'] | null) + initial_vel_x: (Scalars['Float'] | null) + initial_vel_y: (Scalars['Float'] | null) + initial_vel_z: (Scalars['Float'] | null) + land_x: (Scalars['Float'] | null) + land_y: (Scalars['Float'] | null) + land_z: (Scalars['Float'] | null) + /** A computed field, executes function "utility_lineup_my_vote" */ + my_vote: (Scalars['smallint'] | null) + origin_x: (Scalars['Float'] | null) + origin_y: (Scalars['Float'] | null) + origin_z: (Scalars['Float'] | null) + practice_attempts: (Scalars['Float'] | null) + practice_players: (Scalars['Float'] | null) + practice_successes: (Scalars['Float'] | null) + preview_duration_ms: (Scalars['Float'] | null) + public_reviewed_by: (Scalars['Float'] | null) + source_grenade_id: (Scalars['Float'] | null) + trajectory_size: (Scalars['Float'] | null) + upvotes: (Scalars['Float'] | null) + view_pitch: (Scalars['Float'] | null) + view_pitch_delta: (Scalars['Float'] | null) + view_yaw: (Scalars['Float'] | null) + view_yaw_delta: (Scalars['Float'] | null) + __typename: 'utility_lineups_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface utility_lineups_stddev_samp_fields { + aim_tolerance: (Scalars['Float'] | null) + author_steam_id: (Scalars['Float'] | null) + downvotes: (Scalars['Float'] | null) + eye_z: (Scalars['Float'] | null) + favorites: (Scalars['Float'] | null) + flight_time_ms: (Scalars['Float'] | null) + initial_pos_x: (Scalars['Float'] | null) + initial_pos_y: (Scalars['Float'] | null) + initial_pos_z: (Scalars['Float'] | null) + initial_vel_x: (Scalars['Float'] | null) + initial_vel_y: (Scalars['Float'] | null) + initial_vel_z: (Scalars['Float'] | null) + land_x: (Scalars['Float'] | null) + land_y: (Scalars['Float'] | null) + land_z: (Scalars['Float'] | null) + /** A computed field, executes function "utility_lineup_my_vote" */ + my_vote: (Scalars['smallint'] | null) + origin_x: (Scalars['Float'] | null) + origin_y: (Scalars['Float'] | null) + origin_z: (Scalars['Float'] | null) + practice_attempts: (Scalars['Float'] | null) + practice_players: (Scalars['Float'] | null) + practice_successes: (Scalars['Float'] | null) + preview_duration_ms: (Scalars['Float'] | null) + public_reviewed_by: (Scalars['Float'] | null) + source_grenade_id: (Scalars['Float'] | null) + trajectory_size: (Scalars['Float'] | null) + upvotes: (Scalars['Float'] | null) + view_pitch: (Scalars['Float'] | null) + view_pitch_delta: (Scalars['Float'] | null) + view_yaw: (Scalars['Float'] | null) + view_yaw_delta: (Scalars['Float'] | null) + __typename: 'utility_lineups_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface utility_lineups_sum_fields { + aim_tolerance: (Scalars['float8'] | null) + author_steam_id: (Scalars['bigint'] | null) + downvotes: (Scalars['Int'] | null) + eye_z: (Scalars['float8'] | null) + favorites: (Scalars['Int'] | null) + flight_time_ms: (Scalars['Int'] | null) + initial_pos_x: (Scalars['float8'] | null) + initial_pos_y: (Scalars['float8'] | null) + initial_pos_z: (Scalars['float8'] | null) + initial_vel_x: (Scalars['float8'] | null) + initial_vel_y: (Scalars['float8'] | null) + initial_vel_z: (Scalars['float8'] | null) + land_x: (Scalars['float8'] | null) + land_y: (Scalars['float8'] | null) + land_z: (Scalars['float8'] | null) + /** A computed field, executes function "utility_lineup_my_vote" */ + my_vote: (Scalars['smallint'] | null) + origin_x: (Scalars['float8'] | null) + origin_y: (Scalars['float8'] | null) + origin_z: (Scalars['float8'] | null) + practice_attempts: (Scalars['Int'] | null) + practice_players: (Scalars['Int'] | null) + practice_successes: (Scalars['Int'] | null) + preview_duration_ms: (Scalars['Int'] | null) + public_reviewed_by: (Scalars['bigint'] | null) + source_grenade_id: (Scalars['Int'] | null) + trajectory_size: (Scalars['Int'] | null) + upvotes: (Scalars['Int'] | null) + view_pitch: (Scalars['float8'] | null) + view_pitch_delta: (Scalars['float8'] | null) + view_yaw: (Scalars['float8'] | null) + view_yaw_delta: (Scalars['float8'] | null) + __typename: 'utility_lineups_sum_fields' +} + + +/** update columns of table "utility_lineups" */ +export type utility_lineups_update_column = 'aim_tolerance' | 'archived_at' | 'author_steam_id' | 'confidence' | 'created_at' | 'description' | 'downvotes' | 'external_id' | 'eye_z' | 'favorites' | 'flight_time_ms' | 'forked_from_utility_lineup_id' | 'id' | 'initial_pos_x' | 'initial_pos_y' | 'initial_pos_z' | 'initial_vel_x' | 'initial_vel_y' | 'initial_vel_z' | 'jump_throw_bind' | 'land_x' | 'land_y' | 'land_z' | 'map_name' | 'name' | 'origin_source' | 'origin_x' | 'origin_y' | 'origin_z' | 'practice_attempts' | 'practice_players' | 'practice_successes' | 'preview_duration_ms' | 'preview_file' | 'preview_rendered_at' | 'preview_thumbnail' | 'public_requested_at' | 'public_review_note' | 'public_reviewed_at' | 'public_reviewed_by' | 'side' | 'source_grenade_id' | 'source_match_id' | 'source_match_map_id' | 'source_url' | 'tags' | 'team_id' | 'technique' | 'throw_strength' | 'trajectory_file' | 'trajectory_preview' | 'trajectory_size' | 'updated_at' | 'upvotes' | 'utility_type' | 'verified_at' | 'view_pitch' | 'view_pitch_delta' | 'view_yaw' | 'view_yaw_delta' | 'visibility' | 'workshop_map_id' + + +/** aggregate var_pop on columns */ +export interface utility_lineups_var_pop_fields { + aim_tolerance: (Scalars['Float'] | null) + author_steam_id: (Scalars['Float'] | null) + downvotes: (Scalars['Float'] | null) + eye_z: (Scalars['Float'] | null) + favorites: (Scalars['Float'] | null) + flight_time_ms: (Scalars['Float'] | null) + initial_pos_x: (Scalars['Float'] | null) + initial_pos_y: (Scalars['Float'] | null) + initial_pos_z: (Scalars['Float'] | null) + initial_vel_x: (Scalars['Float'] | null) + initial_vel_y: (Scalars['Float'] | null) + initial_vel_z: (Scalars['Float'] | null) + land_x: (Scalars['Float'] | null) + land_y: (Scalars['Float'] | null) + land_z: (Scalars['Float'] | null) + /** A computed field, executes function "utility_lineup_my_vote" */ + my_vote: (Scalars['smallint'] | null) + origin_x: (Scalars['Float'] | null) + origin_y: (Scalars['Float'] | null) + origin_z: (Scalars['Float'] | null) + practice_attempts: (Scalars['Float'] | null) + practice_players: (Scalars['Float'] | null) + practice_successes: (Scalars['Float'] | null) + preview_duration_ms: (Scalars['Float'] | null) + public_reviewed_by: (Scalars['Float'] | null) + source_grenade_id: (Scalars['Float'] | null) + trajectory_size: (Scalars['Float'] | null) + upvotes: (Scalars['Float'] | null) + view_pitch: (Scalars['Float'] | null) + view_pitch_delta: (Scalars['Float'] | null) + view_yaw: (Scalars['Float'] | null) + view_yaw_delta: (Scalars['Float'] | null) + __typename: 'utility_lineups_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface utility_lineups_var_samp_fields { + aim_tolerance: (Scalars['Float'] | null) + author_steam_id: (Scalars['Float'] | null) + downvotes: (Scalars['Float'] | null) + eye_z: (Scalars['Float'] | null) + favorites: (Scalars['Float'] | null) + flight_time_ms: (Scalars['Float'] | null) + initial_pos_x: (Scalars['Float'] | null) + initial_pos_y: (Scalars['Float'] | null) + initial_pos_z: (Scalars['Float'] | null) + initial_vel_x: (Scalars['Float'] | null) + initial_vel_y: (Scalars['Float'] | null) + initial_vel_z: (Scalars['Float'] | null) + land_x: (Scalars['Float'] | null) + land_y: (Scalars['Float'] | null) + land_z: (Scalars['Float'] | null) + /** A computed field, executes function "utility_lineup_my_vote" */ + my_vote: (Scalars['smallint'] | null) + origin_x: (Scalars['Float'] | null) + origin_y: (Scalars['Float'] | null) + origin_z: (Scalars['Float'] | null) + practice_attempts: (Scalars['Float'] | null) + practice_players: (Scalars['Float'] | null) + practice_successes: (Scalars['Float'] | null) + preview_duration_ms: (Scalars['Float'] | null) + public_reviewed_by: (Scalars['Float'] | null) + source_grenade_id: (Scalars['Float'] | null) + trajectory_size: (Scalars['Float'] | null) + upvotes: (Scalars['Float'] | null) + view_pitch: (Scalars['Float'] | null) + view_pitch_delta: (Scalars['Float'] | null) + view_yaw: (Scalars['Float'] | null) + view_yaw_delta: (Scalars['Float'] | null) + __typename: 'utility_lineups_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface utility_lineups_variance_fields { + aim_tolerance: (Scalars['Float'] | null) + author_steam_id: (Scalars['Float'] | null) + downvotes: (Scalars['Float'] | null) + eye_z: (Scalars['Float'] | null) + favorites: (Scalars['Float'] | null) + flight_time_ms: (Scalars['Float'] | null) + initial_pos_x: (Scalars['Float'] | null) + initial_pos_y: (Scalars['Float'] | null) + initial_pos_z: (Scalars['Float'] | null) + initial_vel_x: (Scalars['Float'] | null) + initial_vel_y: (Scalars['Float'] | null) + initial_vel_z: (Scalars['Float'] | null) + land_x: (Scalars['Float'] | null) + land_y: (Scalars['Float'] | null) + land_z: (Scalars['Float'] | null) + /** A computed field, executes function "utility_lineup_my_vote" */ + my_vote: (Scalars['smallint'] | null) + origin_x: (Scalars['Float'] | null) + origin_y: (Scalars['Float'] | null) + origin_z: (Scalars['Float'] | null) + practice_attempts: (Scalars['Float'] | null) + practice_players: (Scalars['Float'] | null) + practice_successes: (Scalars['Float'] | null) + preview_duration_ms: (Scalars['Float'] | null) + public_reviewed_by: (Scalars['Float'] | null) + source_grenade_id: (Scalars['Float'] | null) + trajectory_size: (Scalars['Float'] | null) + upvotes: (Scalars['Float'] | null) + view_pitch: (Scalars['Float'] | null) + view_pitch_delta: (Scalars['Float'] | null) + view_yaw: (Scalars['Float'] | null) + view_yaw_delta: (Scalars['Float'] | null) + __typename: 'utility_lineups_variance_fields' +} + + +/** columns and relationships of "utility_meta_lineups" */ +export interface utility_meta_lineups { + first_seen_at: (Scalars['timestamptz'] | null) + land_x: Scalars['float8'] + land_y: Scalars['float8'] + land_z: Scalars['float8'] + last_seen_at: (Scalars['timestamptz'] | null) + lineup_bucket: Scalars['String'] + lineups: Scalars['Int'] + map_name: Scalars['String'] + matches: Scalars['Int'] + origin_x: Scalars['float8'] + origin_y: Scalars['float8'] + origin_z: Scalars['float8'] + refreshed_at: Scalars['timestamptz'] + side: e_sides_enum + technique: e_utility_techniques_enum + throw_strength: (Scalars['String'] | null) + throwers: Scalars['Int'] + throws: Scalars['Int'] + utility_type: e_utility_types_enum + view_pitch: (Scalars['float8'] | null) + view_yaw: (Scalars['float8'] | null) + __typename: 'utility_meta_lineups' +} + + +/** aggregated selection of "utility_meta_lineups" */ +export interface utility_meta_lineups_aggregate { + aggregate: (utility_meta_lineups_aggregate_fields | null) + nodes: utility_meta_lineups[] + __typename: 'utility_meta_lineups_aggregate' +} + + +/** aggregate fields of "utility_meta_lineups" */ +export interface utility_meta_lineups_aggregate_fields { + avg: (utility_meta_lineups_avg_fields | null) + count: Scalars['Int'] + max: (utility_meta_lineups_max_fields | null) + min: (utility_meta_lineups_min_fields | null) + stddev: (utility_meta_lineups_stddev_fields | null) + stddev_pop: (utility_meta_lineups_stddev_pop_fields | null) + stddev_samp: (utility_meta_lineups_stddev_samp_fields | null) + sum: (utility_meta_lineups_sum_fields | null) + var_pop: (utility_meta_lineups_var_pop_fields | null) + var_samp: (utility_meta_lineups_var_samp_fields | null) + variance: (utility_meta_lineups_variance_fields | null) + __typename: 'utility_meta_lineups_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface utility_meta_lineups_avg_fields { + land_x: (Scalars['Float'] | null) + land_y: (Scalars['Float'] | null) + land_z: (Scalars['Float'] | null) + lineups: (Scalars['Float'] | null) + matches: (Scalars['Float'] | null) + origin_x: (Scalars['Float'] | null) + origin_y: (Scalars['Float'] | null) + origin_z: (Scalars['Float'] | null) + throwers: (Scalars['Float'] | null) + throws: (Scalars['Float'] | null) + view_pitch: (Scalars['Float'] | null) + view_yaw: (Scalars['Float'] | null) + __typename: 'utility_meta_lineups_avg_fields' +} + + +/** unique or primary key constraints on table "utility_meta_lineups" */ +export type utility_meta_lineups_constraint = 'utility_meta_lineups_pkey' + + +/** aggregate max on columns */ +export interface utility_meta_lineups_max_fields { + first_seen_at: (Scalars['timestamptz'] | null) + land_x: (Scalars['float8'] | null) + land_y: (Scalars['float8'] | null) + land_z: (Scalars['float8'] | null) + last_seen_at: (Scalars['timestamptz'] | null) + lineup_bucket: (Scalars['String'] | null) + lineups: (Scalars['Int'] | null) + map_name: (Scalars['String'] | null) + matches: (Scalars['Int'] | null) + origin_x: (Scalars['float8'] | null) + origin_y: (Scalars['float8'] | null) + origin_z: (Scalars['float8'] | null) + refreshed_at: (Scalars['timestamptz'] | null) + throw_strength: (Scalars['String'] | null) + throwers: (Scalars['Int'] | null) + throws: (Scalars['Int'] | null) + view_pitch: (Scalars['float8'] | null) + view_yaw: (Scalars['float8'] | null) + __typename: 'utility_meta_lineups_max_fields' +} + + +/** aggregate min on columns */ +export interface utility_meta_lineups_min_fields { + first_seen_at: (Scalars['timestamptz'] | null) + land_x: (Scalars['float8'] | null) + land_y: (Scalars['float8'] | null) + land_z: (Scalars['float8'] | null) + last_seen_at: (Scalars['timestamptz'] | null) + lineup_bucket: (Scalars['String'] | null) + lineups: (Scalars['Int'] | null) + map_name: (Scalars['String'] | null) + matches: (Scalars['Int'] | null) + origin_x: (Scalars['float8'] | null) + origin_y: (Scalars['float8'] | null) + origin_z: (Scalars['float8'] | null) + refreshed_at: (Scalars['timestamptz'] | null) + throw_strength: (Scalars['String'] | null) + throwers: (Scalars['Int'] | null) + throws: (Scalars['Int'] | null) + view_pitch: (Scalars['float8'] | null) + view_yaw: (Scalars['float8'] | null) + __typename: 'utility_meta_lineups_min_fields' +} + + +/** response of any mutation on the table "utility_meta_lineups" */ +export interface utility_meta_lineups_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: utility_meta_lineups[] + __typename: 'utility_meta_lineups_mutation_response' +} + + +/** select columns of table "utility_meta_lineups" */ +export type utility_meta_lineups_select_column = 'first_seen_at' | 'land_x' | 'land_y' | 'land_z' | 'last_seen_at' | 'lineup_bucket' | 'lineups' | 'map_name' | 'matches' | 'origin_x' | 'origin_y' | 'origin_z' | 'refreshed_at' | 'side' | 'technique' | 'throw_strength' | 'throwers' | 'throws' | 'utility_type' | 'view_pitch' | 'view_yaw' + + +/** aggregate stddev on columns */ +export interface utility_meta_lineups_stddev_fields { + land_x: (Scalars['Float'] | null) + land_y: (Scalars['Float'] | null) + land_z: (Scalars['Float'] | null) + lineups: (Scalars['Float'] | null) + matches: (Scalars['Float'] | null) + origin_x: (Scalars['Float'] | null) + origin_y: (Scalars['Float'] | null) + origin_z: (Scalars['Float'] | null) + throwers: (Scalars['Float'] | null) + throws: (Scalars['Float'] | null) + view_pitch: (Scalars['Float'] | null) + view_yaw: (Scalars['Float'] | null) + __typename: 'utility_meta_lineups_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface utility_meta_lineups_stddev_pop_fields { + land_x: (Scalars['Float'] | null) + land_y: (Scalars['Float'] | null) + land_z: (Scalars['Float'] | null) + lineups: (Scalars['Float'] | null) + matches: (Scalars['Float'] | null) + origin_x: (Scalars['Float'] | null) + origin_y: (Scalars['Float'] | null) + origin_z: (Scalars['Float'] | null) + throwers: (Scalars['Float'] | null) + throws: (Scalars['Float'] | null) + view_pitch: (Scalars['Float'] | null) + view_yaw: (Scalars['Float'] | null) + __typename: 'utility_meta_lineups_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface utility_meta_lineups_stddev_samp_fields { + land_x: (Scalars['Float'] | null) + land_y: (Scalars['Float'] | null) + land_z: (Scalars['Float'] | null) + lineups: (Scalars['Float'] | null) + matches: (Scalars['Float'] | null) + origin_x: (Scalars['Float'] | null) + origin_y: (Scalars['Float'] | null) + origin_z: (Scalars['Float'] | null) + throwers: (Scalars['Float'] | null) + throws: (Scalars['Float'] | null) + view_pitch: (Scalars['Float'] | null) + view_yaw: (Scalars['Float'] | null) + __typename: 'utility_meta_lineups_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface utility_meta_lineups_sum_fields { + land_x: (Scalars['float8'] | null) + land_y: (Scalars['float8'] | null) + land_z: (Scalars['float8'] | null) + lineups: (Scalars['Int'] | null) + matches: (Scalars['Int'] | null) + origin_x: (Scalars['float8'] | null) + origin_y: (Scalars['float8'] | null) + origin_z: (Scalars['float8'] | null) + throwers: (Scalars['Int'] | null) + throws: (Scalars['Int'] | null) + view_pitch: (Scalars['float8'] | null) + view_yaw: (Scalars['float8'] | null) + __typename: 'utility_meta_lineups_sum_fields' +} + + +/** update columns of table "utility_meta_lineups" */ +export type utility_meta_lineups_update_column = 'first_seen_at' | 'land_x' | 'land_y' | 'land_z' | 'last_seen_at' | 'lineup_bucket' | 'lineups' | 'map_name' | 'matches' | 'origin_x' | 'origin_y' | 'origin_z' | 'refreshed_at' | 'side' | 'technique' | 'throw_strength' | 'throwers' | 'throws' | 'utility_type' | 'view_pitch' | 'view_yaw' + + +/** aggregate var_pop on columns */ +export interface utility_meta_lineups_var_pop_fields { + land_x: (Scalars['Float'] | null) + land_y: (Scalars['Float'] | null) + land_z: (Scalars['Float'] | null) + lineups: (Scalars['Float'] | null) + matches: (Scalars['Float'] | null) + origin_x: (Scalars['Float'] | null) + origin_y: (Scalars['Float'] | null) + origin_z: (Scalars['Float'] | null) + throwers: (Scalars['Float'] | null) + throws: (Scalars['Float'] | null) + view_pitch: (Scalars['Float'] | null) + view_yaw: (Scalars['Float'] | null) + __typename: 'utility_meta_lineups_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface utility_meta_lineups_var_samp_fields { + land_x: (Scalars['Float'] | null) + land_y: (Scalars['Float'] | null) + land_z: (Scalars['Float'] | null) + lineups: (Scalars['Float'] | null) + matches: (Scalars['Float'] | null) + origin_x: (Scalars['Float'] | null) + origin_y: (Scalars['Float'] | null) + origin_z: (Scalars['Float'] | null) + throwers: (Scalars['Float'] | null) + throws: (Scalars['Float'] | null) + view_pitch: (Scalars['Float'] | null) + view_yaw: (Scalars['Float'] | null) + __typename: 'utility_meta_lineups_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface utility_meta_lineups_variance_fields { + land_x: (Scalars['Float'] | null) + land_y: (Scalars['Float'] | null) + land_z: (Scalars['Float'] | null) + lineups: (Scalars['Float'] | null) + matches: (Scalars['Float'] | null) + origin_x: (Scalars['Float'] | null) + origin_y: (Scalars['Float'] | null) + origin_z: (Scalars['Float'] | null) + throwers: (Scalars['Float'] | null) + throws: (Scalars['Float'] | null) + view_pitch: (Scalars['Float'] | null) + view_yaw: (Scalars['Float'] | null) + __typename: 'utility_meta_lineups_variance_fields' +} + + +/** columns and relationships of "utility_playbook_steps" */ +export interface utility_playbook_steps { + /** An object relationship */ + assigned_player: (players | null) + assigned_steam_id: (Scalars['bigint'] | null) + created_at: Scalars['timestamptz'] + id: Scalars['uuid'] + note: (Scalars['String'] | null) + offset_ms: Scalars['Int'] + /** An object relationship */ + playbook: utility_playbooks + playbook_id: Scalars['uuid'] + step_order: Scalars['Int'] + /** An object relationship */ + utility_lineup: utility_lineups + utility_lineup_id: Scalars['uuid'] + __typename: 'utility_playbook_steps' +} + + +/** aggregated selection of "utility_playbook_steps" */ +export interface utility_playbook_steps_aggregate { + aggregate: (utility_playbook_steps_aggregate_fields | null) + nodes: utility_playbook_steps[] + __typename: 'utility_playbook_steps_aggregate' +} + + +/** aggregate fields of "utility_playbook_steps" */ +export interface utility_playbook_steps_aggregate_fields { + avg: (utility_playbook_steps_avg_fields | null) + count: Scalars['Int'] + max: (utility_playbook_steps_max_fields | null) + min: (utility_playbook_steps_min_fields | null) + stddev: (utility_playbook_steps_stddev_fields | null) + stddev_pop: (utility_playbook_steps_stddev_pop_fields | null) + stddev_samp: (utility_playbook_steps_stddev_samp_fields | null) + sum: (utility_playbook_steps_sum_fields | null) + var_pop: (utility_playbook_steps_var_pop_fields | null) + var_samp: (utility_playbook_steps_var_samp_fields | null) + variance: (utility_playbook_steps_variance_fields | null) + __typename: 'utility_playbook_steps_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface utility_playbook_steps_avg_fields { + assigned_steam_id: (Scalars['Float'] | null) + offset_ms: (Scalars['Float'] | null) + step_order: (Scalars['Float'] | null) + __typename: 'utility_playbook_steps_avg_fields' +} + + +/** unique or primary key constraints on table "utility_playbook_steps" */ +export type utility_playbook_steps_constraint = 'utility_playbook_steps_order_key' | 'utility_playbook_steps_pkey' + + +/** aggregate max on columns */ +export interface utility_playbook_steps_max_fields { + assigned_steam_id: (Scalars['bigint'] | null) + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + note: (Scalars['String'] | null) + offset_ms: (Scalars['Int'] | null) + playbook_id: (Scalars['uuid'] | null) + step_order: (Scalars['Int'] | null) + utility_lineup_id: (Scalars['uuid'] | null) + __typename: 'utility_playbook_steps_max_fields' +} + + +/** aggregate min on columns */ +export interface utility_playbook_steps_min_fields { + assigned_steam_id: (Scalars['bigint'] | null) + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + note: (Scalars['String'] | null) + offset_ms: (Scalars['Int'] | null) + playbook_id: (Scalars['uuid'] | null) + step_order: (Scalars['Int'] | null) + utility_lineup_id: (Scalars['uuid'] | null) + __typename: 'utility_playbook_steps_min_fields' +} + + +/** response of any mutation on the table "utility_playbook_steps" */ +export interface utility_playbook_steps_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: utility_playbook_steps[] + __typename: 'utility_playbook_steps_mutation_response' +} + + +/** select columns of table "utility_playbook_steps" */ +export type utility_playbook_steps_select_column = 'assigned_steam_id' | 'created_at' | 'id' | 'note' | 'offset_ms' | 'playbook_id' | 'step_order' | 'utility_lineup_id' + + +/** aggregate stddev on columns */ +export interface utility_playbook_steps_stddev_fields { + assigned_steam_id: (Scalars['Float'] | null) + offset_ms: (Scalars['Float'] | null) + step_order: (Scalars['Float'] | null) + __typename: 'utility_playbook_steps_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface utility_playbook_steps_stddev_pop_fields { + assigned_steam_id: (Scalars['Float'] | null) + offset_ms: (Scalars['Float'] | null) + step_order: (Scalars['Float'] | null) + __typename: 'utility_playbook_steps_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface utility_playbook_steps_stddev_samp_fields { + assigned_steam_id: (Scalars['Float'] | null) + offset_ms: (Scalars['Float'] | null) + step_order: (Scalars['Float'] | null) + __typename: 'utility_playbook_steps_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface utility_playbook_steps_sum_fields { + assigned_steam_id: (Scalars['bigint'] | null) + offset_ms: (Scalars['Int'] | null) + step_order: (Scalars['Int'] | null) + __typename: 'utility_playbook_steps_sum_fields' +} + + +/** update columns of table "utility_playbook_steps" */ +export type utility_playbook_steps_update_column = 'assigned_steam_id' | 'created_at' | 'id' | 'note' | 'offset_ms' | 'playbook_id' | 'step_order' | 'utility_lineup_id' + + +/** aggregate var_pop on columns */ +export interface utility_playbook_steps_var_pop_fields { + assigned_steam_id: (Scalars['Float'] | null) + offset_ms: (Scalars['Float'] | null) + step_order: (Scalars['Float'] | null) + __typename: 'utility_playbook_steps_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface utility_playbook_steps_var_samp_fields { + assigned_steam_id: (Scalars['Float'] | null) + offset_ms: (Scalars['Float'] | null) + step_order: (Scalars['Float'] | null) + __typename: 'utility_playbook_steps_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface utility_playbook_steps_variance_fields { + assigned_steam_id: (Scalars['Float'] | null) + offset_ms: (Scalars['Float'] | null) + step_order: (Scalars['Float'] | null) + __typename: 'utility_playbook_steps_variance_fields' +} + + +/** columns and relationships of "utility_playbooks" */ +export interface utility_playbooks { + /** A computed field, executes function "can_edit_utility_playbook" */ + can_edit: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_view_utility_playbook" */ + can_view: (Scalars['Boolean'] | null) + created_at: Scalars['timestamptz'] + description: (Scalars['String'] | null) + id: Scalars['uuid'] + map_name: Scalars['String'] + name: Scalars['String'] + /** An object relationship */ + owner: players + owner_steam_id: Scalars['bigint'] + side: e_sides_enum + /** An array relationship */ + steps: utility_playbook_steps[] + /** An aggregate relationship */ + steps_aggregate: utility_playbook_steps_aggregate + /** An object relationship */ + team: (teams | null) + team_id: (Scalars['uuid'] | null) + updated_at: Scalars['timestamptz'] + visibility: e_utility_visibility_enum + __typename: 'utility_playbooks' +} + + +/** aggregated selection of "utility_playbooks" */ +export interface utility_playbooks_aggregate { + aggregate: (utility_playbooks_aggregate_fields | null) + nodes: utility_playbooks[] + __typename: 'utility_playbooks_aggregate' +} + + +/** aggregate fields of "utility_playbooks" */ +export interface utility_playbooks_aggregate_fields { + avg: (utility_playbooks_avg_fields | null) + count: Scalars['Int'] + max: (utility_playbooks_max_fields | null) + min: (utility_playbooks_min_fields | null) + stddev: (utility_playbooks_stddev_fields | null) + stddev_pop: (utility_playbooks_stddev_pop_fields | null) + stddev_samp: (utility_playbooks_stddev_samp_fields | null) + sum: (utility_playbooks_sum_fields | null) + var_pop: (utility_playbooks_var_pop_fields | null) + var_samp: (utility_playbooks_var_samp_fields | null) + variance: (utility_playbooks_variance_fields | null) + __typename: 'utility_playbooks_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface utility_playbooks_avg_fields { + owner_steam_id: (Scalars['Float'] | null) + __typename: 'utility_playbooks_avg_fields' +} + + +/** unique or primary key constraints on table "utility_playbooks" */ +export type utility_playbooks_constraint = 'utility_playbooks_pkey' + + +/** aggregate max on columns */ +export interface utility_playbooks_max_fields { + created_at: (Scalars['timestamptz'] | null) + description: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + map_name: (Scalars['String'] | null) + name: (Scalars['String'] | null) + owner_steam_id: (Scalars['bigint'] | null) + team_id: (Scalars['uuid'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'utility_playbooks_max_fields' +} + + +/** aggregate min on columns */ +export interface utility_playbooks_min_fields { + created_at: (Scalars['timestamptz'] | null) + description: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + map_name: (Scalars['String'] | null) + name: (Scalars['String'] | null) + owner_steam_id: (Scalars['bigint'] | null) + team_id: (Scalars['uuid'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'utility_playbooks_min_fields' +} + + +/** response of any mutation on the table "utility_playbooks" */ +export interface utility_playbooks_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: utility_playbooks[] + __typename: 'utility_playbooks_mutation_response' +} + + +/** select columns of table "utility_playbooks" */ +export type utility_playbooks_select_column = 'created_at' | 'description' | 'id' | 'map_name' | 'name' | 'owner_steam_id' | 'side' | 'team_id' | 'updated_at' | 'visibility' + + +/** aggregate stddev on columns */ +export interface utility_playbooks_stddev_fields { + owner_steam_id: (Scalars['Float'] | null) + __typename: 'utility_playbooks_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface utility_playbooks_stddev_pop_fields { + owner_steam_id: (Scalars['Float'] | null) + __typename: 'utility_playbooks_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface utility_playbooks_stddev_samp_fields { + owner_steam_id: (Scalars['Float'] | null) + __typename: 'utility_playbooks_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface utility_playbooks_sum_fields { + owner_steam_id: (Scalars['bigint'] | null) + __typename: 'utility_playbooks_sum_fields' +} + + +/** update columns of table "utility_playbooks" */ +export type utility_playbooks_update_column = 'created_at' | 'description' | 'id' | 'map_name' | 'name' | 'owner_steam_id' | 'side' | 'team_id' | 'updated_at' | 'visibility' + + +/** aggregate var_pop on columns */ +export interface utility_playbooks_var_pop_fields { + owner_steam_id: (Scalars['Float'] | null) + __typename: 'utility_playbooks_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface utility_playbooks_var_samp_fields { + owner_steam_id: (Scalars['Float'] | null) + __typename: 'utility_playbooks_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface utility_playbooks_variance_fields { + owner_steam_id: (Scalars['Float'] | null) + __typename: 'utility_playbooks_variance_fields' +} + + +/** columns and relationships of "utility_practice_invites" */ +export interface utility_practice_invites { + created_at: Scalars['timestamptz'] + /** An object relationship */ + invited_by: (players | null) + invited_by_steam_id: (Scalars['bigint'] | null) + /** An object relationship */ + player: players + /** An object relationship */ + session: utility_practice_sessions + steam_id: Scalars['bigint'] + utility_practice_session_id: Scalars['uuid'] + __typename: 'utility_practice_invites' +} + + +/** aggregated selection of "utility_practice_invites" */ +export interface utility_practice_invites_aggregate { + aggregate: (utility_practice_invites_aggregate_fields | null) + nodes: utility_practice_invites[] + __typename: 'utility_practice_invites_aggregate' +} + + +/** aggregate fields of "utility_practice_invites" */ +export interface utility_practice_invites_aggregate_fields { + avg: (utility_practice_invites_avg_fields | null) + count: Scalars['Int'] + max: (utility_practice_invites_max_fields | null) + min: (utility_practice_invites_min_fields | null) + stddev: (utility_practice_invites_stddev_fields | null) + stddev_pop: (utility_practice_invites_stddev_pop_fields | null) + stddev_samp: (utility_practice_invites_stddev_samp_fields | null) + sum: (utility_practice_invites_sum_fields | null) + var_pop: (utility_practice_invites_var_pop_fields | null) + var_samp: (utility_practice_invites_var_samp_fields | null) + variance: (utility_practice_invites_variance_fields | null) + __typename: 'utility_practice_invites_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface utility_practice_invites_avg_fields { + invited_by_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'utility_practice_invites_avg_fields' +} + + +/** unique or primary key constraints on table "utility_practice_invites" */ +export type utility_practice_invites_constraint = 'utility_practice_invites_pkey' + + +/** aggregate max on columns */ +export interface utility_practice_invites_max_fields { + created_at: (Scalars['timestamptz'] | null) + invited_by_steam_id: (Scalars['bigint'] | null) + steam_id: (Scalars['bigint'] | null) + utility_practice_session_id: (Scalars['uuid'] | null) + __typename: 'utility_practice_invites_max_fields' +} + + +/** aggregate min on columns */ +export interface utility_practice_invites_min_fields { + created_at: (Scalars['timestamptz'] | null) + invited_by_steam_id: (Scalars['bigint'] | null) + steam_id: (Scalars['bigint'] | null) + utility_practice_session_id: (Scalars['uuid'] | null) + __typename: 'utility_practice_invites_min_fields' +} + + +/** response of any mutation on the table "utility_practice_invites" */ +export interface utility_practice_invites_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: utility_practice_invites[] + __typename: 'utility_practice_invites_mutation_response' +} + + +/** select columns of table "utility_practice_invites" */ +export type utility_practice_invites_select_column = 'created_at' | 'invited_by_steam_id' | 'steam_id' | 'utility_practice_session_id' + + +/** aggregate stddev on columns */ +export interface utility_practice_invites_stddev_fields { + invited_by_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'utility_practice_invites_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface utility_practice_invites_stddev_pop_fields { + invited_by_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'utility_practice_invites_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface utility_practice_invites_stddev_samp_fields { + invited_by_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'utility_practice_invites_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface utility_practice_invites_sum_fields { + invited_by_steam_id: (Scalars['bigint'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'utility_practice_invites_sum_fields' +} + + +/** update columns of table "utility_practice_invites" */ +export type utility_practice_invites_update_column = 'created_at' | 'invited_by_steam_id' | 'steam_id' | 'utility_practice_session_id' + + +/** aggregate var_pop on columns */ +export interface utility_practice_invites_var_pop_fields { + invited_by_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'utility_practice_invites_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface utility_practice_invites_var_samp_fields { + invited_by_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'utility_practice_invites_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface utility_practice_invites_variance_fields { + invited_by_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'utility_practice_invites_variance_fields' +} + + +/** columns and relationships of "utility_practice_sessions" */ +export interface utility_practice_sessions { + access: e_utility_practice_access_enum + /** A computed field, executes function "can_manage_utility_practice_session" */ + can_manage: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_view_utility_practice_session" */ + can_view: (Scalars['Boolean'] | null) + /** An object relationship */ + collection: (utility_collections | null) + collection_id: (Scalars['uuid'] | null) + /** A computed field, executes function "utility_practice_connection_link" */ + connection_link: (Scalars['String'] | null) + /** A computed field, executes function "utility_practice_connection_string" */ + connection_string: (Scalars['String'] | null) + created_at: Scalars['timestamptz'] + /** An object relationship */ + e_utility_practice_status: e_utility_practice_statuses + empty_since: (Scalars['timestamptz'] | null) + expires_at: (Scalars['timestamptz'] | null) + failure_reason: (Scalars['String'] | null) + first_joined_at: (Scalars['timestamptz'] | null) + /** An object relationship */ + host: (players | null) + host_steam_id: (Scalars['bigint'] | null) + id: Scalars['uuid'] + invite_code: Scalars['String'] + /** An array relationship */ + invites: utility_practice_invites[] + /** An aggregate relationship */ + invites_aggregate: utility_practice_invites_aggregate + /** A computed field, executes function "is_utility_practice_member" */ + is_member: (Scalars['Boolean'] | null) + is_open: Scalars['Boolean'] + is_render: Scalars['Boolean'] + last_occupied_at: (Scalars['timestamptz'] | null) + map_changing_at: (Scalars['timestamptz'] | null) + map_name: Scalars['String'] + /** An object relationship */ + match: (matches | null) + match_id: (Scalars['uuid'] | null) + notify_when_ready: Scalars['Boolean'] + /** An object relationship */ + playbook: (utility_playbooks | null) + playbook_id: (Scalars['uuid'] | null) + region: (Scalars['String'] | null) + status: e_utility_practice_statuses_enum + /** An object relationship */ + team: (teams | null) + team_id: (Scalars['uuid'] | null) + updated_at: Scalars['timestamptz'] + __typename: 'utility_practice_sessions' +} + + +/** aggregated selection of "utility_practice_sessions" */ +export interface utility_practice_sessions_aggregate { + aggregate: (utility_practice_sessions_aggregate_fields | null) + nodes: utility_practice_sessions[] + __typename: 'utility_practice_sessions_aggregate' +} + + +/** aggregate fields of "utility_practice_sessions" */ +export interface utility_practice_sessions_aggregate_fields { + avg: (utility_practice_sessions_avg_fields | null) + count: Scalars['Int'] + max: (utility_practice_sessions_max_fields | null) + min: (utility_practice_sessions_min_fields | null) + stddev: (utility_practice_sessions_stddev_fields | null) + stddev_pop: (utility_practice_sessions_stddev_pop_fields | null) + stddev_samp: (utility_practice_sessions_stddev_samp_fields | null) + sum: (utility_practice_sessions_sum_fields | null) + var_pop: (utility_practice_sessions_var_pop_fields | null) + var_samp: (utility_practice_sessions_var_samp_fields | null) + variance: (utility_practice_sessions_variance_fields | null) + __typename: 'utility_practice_sessions_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface utility_practice_sessions_avg_fields { + host_steam_id: (Scalars['Float'] | null) + __typename: 'utility_practice_sessions_avg_fields' +} + + +/** unique or primary key constraints on table "utility_practice_sessions" */ +export type utility_practice_sessions_constraint = 'utility_practice_sessions_invite_code_idx' | 'utility_practice_sessions_match_key' | 'utility_practice_sessions_one_live_per_host_idx' | 'utility_practice_sessions_pkey' + + +/** aggregate max on columns */ +export interface utility_practice_sessions_max_fields { + collection_id: (Scalars['uuid'] | null) + /** A computed field, executes function "utility_practice_connection_link" */ + connection_link: (Scalars['String'] | null) + /** A computed field, executes function "utility_practice_connection_string" */ + connection_string: (Scalars['String'] | null) + created_at: (Scalars['timestamptz'] | null) + empty_since: (Scalars['timestamptz'] | null) + expires_at: (Scalars['timestamptz'] | null) + failure_reason: (Scalars['String'] | null) + first_joined_at: (Scalars['timestamptz'] | null) + host_steam_id: (Scalars['bigint'] | null) + id: (Scalars['uuid'] | null) + invite_code: (Scalars['String'] | null) + last_occupied_at: (Scalars['timestamptz'] | null) + map_changing_at: (Scalars['timestamptz'] | null) + map_name: (Scalars['String'] | null) + match_id: (Scalars['uuid'] | null) + playbook_id: (Scalars['uuid'] | null) + region: (Scalars['String'] | null) + team_id: (Scalars['uuid'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'utility_practice_sessions_max_fields' +} + + +/** aggregate min on columns */ +export interface utility_practice_sessions_min_fields { + collection_id: (Scalars['uuid'] | null) + /** A computed field, executes function "utility_practice_connection_link" */ + connection_link: (Scalars['String'] | null) + /** A computed field, executes function "utility_practice_connection_string" */ + connection_string: (Scalars['String'] | null) + created_at: (Scalars['timestamptz'] | null) + empty_since: (Scalars['timestamptz'] | null) + expires_at: (Scalars['timestamptz'] | null) + failure_reason: (Scalars['String'] | null) + first_joined_at: (Scalars['timestamptz'] | null) + host_steam_id: (Scalars['bigint'] | null) + id: (Scalars['uuid'] | null) + invite_code: (Scalars['String'] | null) + last_occupied_at: (Scalars['timestamptz'] | null) + map_changing_at: (Scalars['timestamptz'] | null) + map_name: (Scalars['String'] | null) + match_id: (Scalars['uuid'] | null) + playbook_id: (Scalars['uuid'] | null) + region: (Scalars['String'] | null) + team_id: (Scalars['uuid'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'utility_practice_sessions_min_fields' +} + + +/** response of any mutation on the table "utility_practice_sessions" */ +export interface utility_practice_sessions_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: utility_practice_sessions[] + __typename: 'utility_practice_sessions_mutation_response' +} + + +/** select columns of table "utility_practice_sessions" */ +export type utility_practice_sessions_select_column = 'access' | 'collection_id' | 'created_at' | 'empty_since' | 'expires_at' | 'failure_reason' | 'first_joined_at' | 'host_steam_id' | 'id' | 'invite_code' | 'is_open' | 'is_render' | 'last_occupied_at' | 'map_changing_at' | 'map_name' | 'match_id' | 'notify_when_ready' | 'playbook_id' | 'region' | 'status' | 'team_id' | 'updated_at' + + +/** select "utility_practice_sessions_aggregate_bool_exp_bool_and_arguments_columns" columns of table "utility_practice_sessions" */ +export type utility_practice_sessions_select_column_utility_practice_sessions_aggregate_bool_exp_bool_and_arguments_columns = 'is_open' | 'is_render' | 'notify_when_ready' + + +/** select "utility_practice_sessions_aggregate_bool_exp_bool_or_arguments_columns" columns of table "utility_practice_sessions" */ +export type utility_practice_sessions_select_column_utility_practice_sessions_aggregate_bool_exp_bool_or_arguments_columns = 'is_open' | 'is_render' | 'notify_when_ready' + + +/** aggregate stddev on columns */ +export interface utility_practice_sessions_stddev_fields { + host_steam_id: (Scalars['Float'] | null) + __typename: 'utility_practice_sessions_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface utility_practice_sessions_stddev_pop_fields { + host_steam_id: (Scalars['Float'] | null) + __typename: 'utility_practice_sessions_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface utility_practice_sessions_stddev_samp_fields { + host_steam_id: (Scalars['Float'] | null) + __typename: 'utility_practice_sessions_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface utility_practice_sessions_sum_fields { + host_steam_id: (Scalars['bigint'] | null) + __typename: 'utility_practice_sessions_sum_fields' +} + + +/** update columns of table "utility_practice_sessions" */ +export type utility_practice_sessions_update_column = 'access' | 'collection_id' | 'created_at' | 'empty_since' | 'expires_at' | 'failure_reason' | 'first_joined_at' | 'host_steam_id' | 'id' | 'invite_code' | 'is_open' | 'is_render' | 'last_occupied_at' | 'map_changing_at' | 'map_name' | 'match_id' | 'notify_when_ready' | 'playbook_id' | 'region' | 'status' | 'team_id' | 'updated_at' + + +/** aggregate var_pop on columns */ +export interface utility_practice_sessions_var_pop_fields { + host_steam_id: (Scalars['Float'] | null) + __typename: 'utility_practice_sessions_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface utility_practice_sessions_var_samp_fields { + host_steam_id: (Scalars['Float'] | null) + __typename: 'utility_practice_sessions_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface utility_practice_sessions_variance_fields { + host_steam_id: (Scalars['Float'] | null) + __typename: 'utility_practice_sessions_variance_fields' +} + + +/** columns and relationships of "v_event_player_stats" */ +export interface v_event_player_stats { + assists: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) + /** An object relationship */ + event: (events | null) + event_id: (Scalars['uuid'] | null) + headshot_percentage: (Scalars['float8'] | null) + headshots: (Scalars['Int'] | null) + kdr: (Scalars['float8'] | null) + kills: (Scalars['Int'] | null) + matches_played: (Scalars['Int'] | null) + /** An object relationship */ + player: (players | null) + player_steam_id: (Scalars['bigint'] | null) + __typename: 'v_event_player_stats' +} + + +/** aggregated selection of "v_event_player_stats" */ +export interface v_event_player_stats_aggregate { + aggregate: (v_event_player_stats_aggregate_fields | null) + nodes: v_event_player_stats[] + __typename: 'v_event_player_stats_aggregate' +} + + +/** aggregate fields of "v_event_player_stats" */ +export interface v_event_player_stats_aggregate_fields { + avg: (v_event_player_stats_avg_fields | null) + count: Scalars['Int'] + max: (v_event_player_stats_max_fields | null) + min: (v_event_player_stats_min_fields | null) + stddev: (v_event_player_stats_stddev_fields | null) + stddev_pop: (v_event_player_stats_stddev_pop_fields | null) + stddev_samp: (v_event_player_stats_stddev_samp_fields | null) + sum: (v_event_player_stats_sum_fields | null) + var_pop: (v_event_player_stats_var_pop_fields | null) + var_samp: (v_event_player_stats_var_samp_fields | null) + variance: (v_event_player_stats_variance_fields | null) + __typename: 'v_event_player_stats_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface v_event_player_stats_avg_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_event_player_stats_avg_fields' +} + + +/** aggregate max on columns */ +export interface v_event_player_stats_max_fields { + assists: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) + event_id: (Scalars['uuid'] | null) + headshot_percentage: (Scalars['float8'] | null) + headshots: (Scalars['Int'] | null) + kdr: (Scalars['float8'] | null) + kills: (Scalars['Int'] | null) + matches_played: (Scalars['Int'] | null) + player_steam_id: (Scalars['bigint'] | null) + __typename: 'v_event_player_stats_max_fields' +} + + +/** aggregate min on columns */ +export interface v_event_player_stats_min_fields { + assists: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) + event_id: (Scalars['uuid'] | null) + headshot_percentage: (Scalars['float8'] | null) + headshots: (Scalars['Int'] | null) + kdr: (Scalars['float8'] | null) + kills: (Scalars['Int'] | null) + matches_played: (Scalars['Int'] | null) + player_steam_id: (Scalars['bigint'] | null) + __typename: 'v_event_player_stats_min_fields' +} + + +/** select columns of table "v_event_player_stats" */ +export type v_event_player_stats_select_column = 'assists' | 'deaths' | 'event_id' | 'headshot_percentage' | 'headshots' | 'kdr' | 'kills' | 'matches_played' | 'player_steam_id' + + +/** select "v_event_player_stats_aggregate_bool_exp_avg_arguments_columns" columns of table "v_event_player_stats" */ +export type v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_avg_arguments_columns = 'headshot_percentage' | 'kdr' + + +/** select "v_event_player_stats_aggregate_bool_exp_corr_arguments_columns" columns of table "v_event_player_stats" */ +export type v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_corr_arguments_columns = 'headshot_percentage' | 'kdr' + + +/** select "v_event_player_stats_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "v_event_player_stats" */ +export type v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_covar_samp_arguments_columns = 'headshot_percentage' | 'kdr' + + +/** select "v_event_player_stats_aggregate_bool_exp_max_arguments_columns" columns of table "v_event_player_stats" */ +export type v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_max_arguments_columns = 'headshot_percentage' | 'kdr' + + +/** select "v_event_player_stats_aggregate_bool_exp_min_arguments_columns" columns of table "v_event_player_stats" */ +export type v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_min_arguments_columns = 'headshot_percentage' | 'kdr' + + +/** select "v_event_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "v_event_player_stats" */ +export type v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns = 'headshot_percentage' | 'kdr' + + +/** select "v_event_player_stats_aggregate_bool_exp_sum_arguments_columns" columns of table "v_event_player_stats" */ +export type v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_sum_arguments_columns = 'headshot_percentage' | 'kdr' + + +/** select "v_event_player_stats_aggregate_bool_exp_var_samp_arguments_columns" columns of table "v_event_player_stats" */ +export type v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_var_samp_arguments_columns = 'headshot_percentage' | 'kdr' + + +/** aggregate stddev on columns */ +export interface v_event_player_stats_stddev_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_event_player_stats_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface v_event_player_stats_stddev_pop_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_event_player_stats_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface v_event_player_stats_stddev_samp_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_event_player_stats_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface v_event_player_stats_sum_fields { + assists: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) + headshot_percentage: (Scalars['float8'] | null) + headshots: (Scalars['Int'] | null) + kdr: (Scalars['float8'] | null) + kills: (Scalars['Int'] | null) + matches_played: (Scalars['Int'] | null) + player_steam_id: (Scalars['bigint'] | null) + __typename: 'v_event_player_stats_sum_fields' +} + + +/** aggregate var_pop on columns */ +export interface v_event_player_stats_var_pop_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_event_player_stats_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface v_event_player_stats_var_samp_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_event_player_stats_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface v_event_player_stats_variance_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_event_player_stats_variance_fields' +} + + +/** columns and relationships of "v_gpu_pool_status" */ +export interface v_gpu_pool_status { + demo_free_gpu_nodes: (Scalars['Int'] | null) + demo_in_progress: (Scalars['Boolean'] | null) + demo_total_gpu_nodes: (Scalars['Int'] | null) + free_gpu_nodes: (Scalars['Int'] | null) + free_gpu_nodes_for_batch: (Scalars['Int'] | null) + highlights_in_progress: (Scalars['Boolean'] | null) + id: (Scalars['Int'] | null) + live_in_progress: (Scalars['Boolean'] | null) + registered_gpu_nodes: (Scalars['Int'] | null) + rendering_total_gpu_nodes: (Scalars['Int'] | null) + renders_paused_for_active_match: (Scalars['Boolean'] | null) + streaming_free_gpu_nodes: (Scalars['Int'] | null) + streaming_total_gpu_nodes: (Scalars['Int'] | null) + total_gpu_nodes: (Scalars['Int'] | null) + __typename: 'v_gpu_pool_status' +} + + +/** aggregated selection of "v_gpu_pool_status" */ +export interface v_gpu_pool_status_aggregate { + aggregate: (v_gpu_pool_status_aggregate_fields | null) + nodes: v_gpu_pool_status[] + __typename: 'v_gpu_pool_status_aggregate' +} + + +/** aggregate fields of "v_gpu_pool_status" */ +export interface v_gpu_pool_status_aggregate_fields { + avg: (v_gpu_pool_status_avg_fields | null) + count: Scalars['Int'] + max: (v_gpu_pool_status_max_fields | null) + min: (v_gpu_pool_status_min_fields | null) + stddev: (v_gpu_pool_status_stddev_fields | null) + stddev_pop: (v_gpu_pool_status_stddev_pop_fields | null) + stddev_samp: (v_gpu_pool_status_stddev_samp_fields | null) + sum: (v_gpu_pool_status_sum_fields | null) + var_pop: (v_gpu_pool_status_var_pop_fields | null) + var_samp: (v_gpu_pool_status_var_samp_fields | null) + variance: (v_gpu_pool_status_variance_fields | null) + __typename: 'v_gpu_pool_status_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface v_gpu_pool_status_avg_fields { + demo_free_gpu_nodes: (Scalars['Float'] | null) + demo_total_gpu_nodes: (Scalars['Float'] | null) + free_gpu_nodes: (Scalars['Float'] | null) + free_gpu_nodes_for_batch: (Scalars['Float'] | null) + id: (Scalars['Float'] | null) + registered_gpu_nodes: (Scalars['Float'] | null) + rendering_total_gpu_nodes: (Scalars['Float'] | null) + streaming_free_gpu_nodes: (Scalars['Float'] | null) + streaming_total_gpu_nodes: (Scalars['Float'] | null) + total_gpu_nodes: (Scalars['Float'] | null) + __typename: 'v_gpu_pool_status_avg_fields' +} + + +/** aggregate max on columns */ +export interface v_gpu_pool_status_max_fields { + demo_free_gpu_nodes: (Scalars['Int'] | null) + demo_total_gpu_nodes: (Scalars['Int'] | null) + free_gpu_nodes: (Scalars['Int'] | null) + free_gpu_nodes_for_batch: (Scalars['Int'] | null) + id: (Scalars['Int'] | null) + registered_gpu_nodes: (Scalars['Int'] | null) + rendering_total_gpu_nodes: (Scalars['Int'] | null) + streaming_free_gpu_nodes: (Scalars['Int'] | null) + streaming_total_gpu_nodes: (Scalars['Int'] | null) + total_gpu_nodes: (Scalars['Int'] | null) + __typename: 'v_gpu_pool_status_max_fields' +} + + +/** aggregate min on columns */ +export interface v_gpu_pool_status_min_fields { + demo_free_gpu_nodes: (Scalars['Int'] | null) + demo_total_gpu_nodes: (Scalars['Int'] | null) + free_gpu_nodes: (Scalars['Int'] | null) + free_gpu_nodes_for_batch: (Scalars['Int'] | null) + id: (Scalars['Int'] | null) + registered_gpu_nodes: (Scalars['Int'] | null) + rendering_total_gpu_nodes: (Scalars['Int'] | null) + streaming_free_gpu_nodes: (Scalars['Int'] | null) + streaming_total_gpu_nodes: (Scalars['Int'] | null) + total_gpu_nodes: (Scalars['Int'] | null) + __typename: 'v_gpu_pool_status_min_fields' +} + + +/** select columns of table "v_gpu_pool_status" */ +export type v_gpu_pool_status_select_column = 'demo_free_gpu_nodes' | 'demo_in_progress' | 'demo_total_gpu_nodes' | 'free_gpu_nodes' | 'free_gpu_nodes_for_batch' | 'highlights_in_progress' | 'id' | 'live_in_progress' | 'registered_gpu_nodes' | 'rendering_total_gpu_nodes' | 'renders_paused_for_active_match' | 'streaming_free_gpu_nodes' | 'streaming_total_gpu_nodes' | 'total_gpu_nodes' + + +/** aggregate stddev on columns */ +export interface v_gpu_pool_status_stddev_fields { + demo_free_gpu_nodes: (Scalars['Float'] | null) + demo_total_gpu_nodes: (Scalars['Float'] | null) + free_gpu_nodes: (Scalars['Float'] | null) + free_gpu_nodes_for_batch: (Scalars['Float'] | null) + id: (Scalars['Float'] | null) + registered_gpu_nodes: (Scalars['Float'] | null) + rendering_total_gpu_nodes: (Scalars['Float'] | null) + streaming_free_gpu_nodes: (Scalars['Float'] | null) + streaming_total_gpu_nodes: (Scalars['Float'] | null) + total_gpu_nodes: (Scalars['Float'] | null) + __typename: 'v_gpu_pool_status_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface v_gpu_pool_status_stddev_pop_fields { + demo_free_gpu_nodes: (Scalars['Float'] | null) + demo_total_gpu_nodes: (Scalars['Float'] | null) + free_gpu_nodes: (Scalars['Float'] | null) + free_gpu_nodes_for_batch: (Scalars['Float'] | null) + id: (Scalars['Float'] | null) + registered_gpu_nodes: (Scalars['Float'] | null) + rendering_total_gpu_nodes: (Scalars['Float'] | null) + streaming_free_gpu_nodes: (Scalars['Float'] | null) + streaming_total_gpu_nodes: (Scalars['Float'] | null) + total_gpu_nodes: (Scalars['Float'] | null) + __typename: 'v_gpu_pool_status_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface v_gpu_pool_status_stddev_samp_fields { + demo_free_gpu_nodes: (Scalars['Float'] | null) + demo_total_gpu_nodes: (Scalars['Float'] | null) + free_gpu_nodes: (Scalars['Float'] | null) + free_gpu_nodes_for_batch: (Scalars['Float'] | null) + id: (Scalars['Float'] | null) + registered_gpu_nodes: (Scalars['Float'] | null) + rendering_total_gpu_nodes: (Scalars['Float'] | null) + streaming_free_gpu_nodes: (Scalars['Float'] | null) + streaming_total_gpu_nodes: (Scalars['Float'] | null) + total_gpu_nodes: (Scalars['Float'] | null) + __typename: 'v_gpu_pool_status_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface v_gpu_pool_status_sum_fields { + demo_free_gpu_nodes: (Scalars['Int'] | null) + demo_total_gpu_nodes: (Scalars['Int'] | null) + free_gpu_nodes: (Scalars['Int'] | null) + free_gpu_nodes_for_batch: (Scalars['Int'] | null) + id: (Scalars['Int'] | null) + registered_gpu_nodes: (Scalars['Int'] | null) + rendering_total_gpu_nodes: (Scalars['Int'] | null) + streaming_free_gpu_nodes: (Scalars['Int'] | null) + streaming_total_gpu_nodes: (Scalars['Int'] | null) + total_gpu_nodes: (Scalars['Int'] | null) + __typename: 'v_gpu_pool_status_sum_fields' +} + + +/** aggregate var_pop on columns */ +export interface v_gpu_pool_status_var_pop_fields { + demo_free_gpu_nodes: (Scalars['Float'] | null) + demo_total_gpu_nodes: (Scalars['Float'] | null) + free_gpu_nodes: (Scalars['Float'] | null) + free_gpu_nodes_for_batch: (Scalars['Float'] | null) + id: (Scalars['Float'] | null) + registered_gpu_nodes: (Scalars['Float'] | null) + rendering_total_gpu_nodes: (Scalars['Float'] | null) + streaming_free_gpu_nodes: (Scalars['Float'] | null) + streaming_total_gpu_nodes: (Scalars['Float'] | null) + total_gpu_nodes: (Scalars['Float'] | null) + __typename: 'v_gpu_pool_status_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface v_gpu_pool_status_var_samp_fields { + demo_free_gpu_nodes: (Scalars['Float'] | null) + demo_total_gpu_nodes: (Scalars['Float'] | null) + free_gpu_nodes: (Scalars['Float'] | null) + free_gpu_nodes_for_batch: (Scalars['Float'] | null) + id: (Scalars['Float'] | null) + registered_gpu_nodes: (Scalars['Float'] | null) + rendering_total_gpu_nodes: (Scalars['Float'] | null) + streaming_free_gpu_nodes: (Scalars['Float'] | null) + streaming_total_gpu_nodes: (Scalars['Float'] | null) + total_gpu_nodes: (Scalars['Float'] | null) + __typename: 'v_gpu_pool_status_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface v_gpu_pool_status_variance_fields { + demo_free_gpu_nodes: (Scalars['Float'] | null) + demo_total_gpu_nodes: (Scalars['Float'] | null) + free_gpu_nodes: (Scalars['Float'] | null) + free_gpu_nodes_for_batch: (Scalars['Float'] | null) + id: (Scalars['Float'] | null) + registered_gpu_nodes: (Scalars['Float'] | null) + rendering_total_gpu_nodes: (Scalars['Float'] | null) + streaming_free_gpu_nodes: (Scalars['Float'] | null) + streaming_total_gpu_nodes: (Scalars['Float'] | null) + total_gpu_nodes: (Scalars['Float'] | null) + __typename: 'v_gpu_pool_status_variance_fields' +} + + +/** columns and relationships of "v_league_division_standings" */ +export interface v_league_division_standings { + head_to_head_match_wins: (Scalars['Int'] | null) + head_to_head_rounds_won: (Scalars['Int'] | null) + league_division_id: (Scalars['uuid'] | null) + league_season_division_id: (Scalars['uuid'] | null) + league_season_id: (Scalars['uuid'] | null) + /** An object relationship */ + league_team: (league_teams | null) + league_team_id: (Scalars['uuid'] | null) + league_team_season_id: (Scalars['uuid'] | null) + losses: (Scalars['Int'] | null) + maps_lost: (Scalars['Int'] | null) + maps_won: (Scalars['Int'] | null) + matches_played: (Scalars['Int'] | null) + matches_remaining: (Scalars['Int'] | null) + rank: (Scalars['Int'] | null) + round_diff: (Scalars['Int'] | null) + rounds_lost: (Scalars['Int'] | null) + rounds_won: (Scalars['Int'] | null) + /** An object relationship */ + season_division: (league_season_divisions | null) + /** An object relationship */ + team_season: (league_team_seasons | null) + tournament_team_id: (Scalars['uuid'] | null) + wins: (Scalars['Int'] | null) + __typename: 'v_league_division_standings' +} + + +/** aggregated selection of "v_league_division_standings" */ +export interface v_league_division_standings_aggregate { + aggregate: (v_league_division_standings_aggregate_fields | null) + nodes: v_league_division_standings[] + __typename: 'v_league_division_standings_aggregate' +} + + +/** aggregate fields of "v_league_division_standings" */ +export interface v_league_division_standings_aggregate_fields { + avg: (v_league_division_standings_avg_fields | null) + count: Scalars['Int'] + max: (v_league_division_standings_max_fields | null) + min: (v_league_division_standings_min_fields | null) + stddev: (v_league_division_standings_stddev_fields | null) + stddev_pop: (v_league_division_standings_stddev_pop_fields | null) + stddev_samp: (v_league_division_standings_stddev_samp_fields | null) + sum: (v_league_division_standings_sum_fields | null) + var_pop: (v_league_division_standings_var_pop_fields | null) + var_samp: (v_league_division_standings_var_samp_fields | null) + variance: (v_league_division_standings_variance_fields | null) + __typename: 'v_league_division_standings_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface v_league_division_standings_avg_fields { + head_to_head_match_wins: (Scalars['Float'] | null) + head_to_head_rounds_won: (Scalars['Float'] | null) + losses: (Scalars['Float'] | null) + maps_lost: (Scalars['Float'] | null) + maps_won: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + matches_remaining: (Scalars['Float'] | null) + rank: (Scalars['Float'] | null) + round_diff: (Scalars['Float'] | null) + rounds_lost: (Scalars['Float'] | null) + rounds_won: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_league_division_standings_avg_fields' +} + + +/** aggregate max on columns */ +export interface v_league_division_standings_max_fields { + head_to_head_match_wins: (Scalars['Int'] | null) + head_to_head_rounds_won: (Scalars['Int'] | null) + league_division_id: (Scalars['uuid'] | null) + league_season_division_id: (Scalars['uuid'] | null) + league_season_id: (Scalars['uuid'] | null) + league_team_id: (Scalars['uuid'] | null) + league_team_season_id: (Scalars['uuid'] | null) + losses: (Scalars['Int'] | null) + maps_lost: (Scalars['Int'] | null) + maps_won: (Scalars['Int'] | null) + matches_played: (Scalars['Int'] | null) + matches_remaining: (Scalars['Int'] | null) + rank: (Scalars['Int'] | null) + round_diff: (Scalars['Int'] | null) + rounds_lost: (Scalars['Int'] | null) + rounds_won: (Scalars['Int'] | null) + tournament_team_id: (Scalars['uuid'] | null) + wins: (Scalars['Int'] | null) + __typename: 'v_league_division_standings_max_fields' +} + + +/** aggregate min on columns */ +export interface v_league_division_standings_min_fields { + head_to_head_match_wins: (Scalars['Int'] | null) + head_to_head_rounds_won: (Scalars['Int'] | null) + league_division_id: (Scalars['uuid'] | null) + league_season_division_id: (Scalars['uuid'] | null) + league_season_id: (Scalars['uuid'] | null) + league_team_id: (Scalars['uuid'] | null) + league_team_season_id: (Scalars['uuid'] | null) + losses: (Scalars['Int'] | null) + maps_lost: (Scalars['Int'] | null) + maps_won: (Scalars['Int'] | null) + matches_played: (Scalars['Int'] | null) + matches_remaining: (Scalars['Int'] | null) + rank: (Scalars['Int'] | null) + round_diff: (Scalars['Int'] | null) + rounds_lost: (Scalars['Int'] | null) + rounds_won: (Scalars['Int'] | null) + tournament_team_id: (Scalars['uuid'] | null) + wins: (Scalars['Int'] | null) + __typename: 'v_league_division_standings_min_fields' +} + + +/** select columns of table "v_league_division_standings" */ +export type v_league_division_standings_select_column = 'head_to_head_match_wins' | 'head_to_head_rounds_won' | 'league_division_id' | 'league_season_division_id' | 'league_season_id' | 'league_team_id' | 'league_team_season_id' | 'losses' | 'maps_lost' | 'maps_won' | 'matches_played' | 'matches_remaining' | 'rank' | 'round_diff' | 'rounds_lost' | 'rounds_won' | 'tournament_team_id' | 'wins' + + +/** aggregate stddev on columns */ +export interface v_league_division_standings_stddev_fields { + head_to_head_match_wins: (Scalars['Float'] | null) + head_to_head_rounds_won: (Scalars['Float'] | null) + losses: (Scalars['Float'] | null) + maps_lost: (Scalars['Float'] | null) + maps_won: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + matches_remaining: (Scalars['Float'] | null) + rank: (Scalars['Float'] | null) + round_diff: (Scalars['Float'] | null) + rounds_lost: (Scalars['Float'] | null) + rounds_won: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_league_division_standings_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface v_league_division_standings_stddev_pop_fields { + head_to_head_match_wins: (Scalars['Float'] | null) + head_to_head_rounds_won: (Scalars['Float'] | null) + losses: (Scalars['Float'] | null) + maps_lost: (Scalars['Float'] | null) + maps_won: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + matches_remaining: (Scalars['Float'] | null) + rank: (Scalars['Float'] | null) + round_diff: (Scalars['Float'] | null) + rounds_lost: (Scalars['Float'] | null) + rounds_won: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_league_division_standings_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface v_league_division_standings_stddev_samp_fields { + head_to_head_match_wins: (Scalars['Float'] | null) + head_to_head_rounds_won: (Scalars['Float'] | null) + losses: (Scalars['Float'] | null) + maps_lost: (Scalars['Float'] | null) + maps_won: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + matches_remaining: (Scalars['Float'] | null) + rank: (Scalars['Float'] | null) + round_diff: (Scalars['Float'] | null) + rounds_lost: (Scalars['Float'] | null) + rounds_won: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_league_division_standings_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface v_league_division_standings_sum_fields { + head_to_head_match_wins: (Scalars['Int'] | null) + head_to_head_rounds_won: (Scalars['Int'] | null) + losses: (Scalars['Int'] | null) + maps_lost: (Scalars['Int'] | null) + maps_won: (Scalars['Int'] | null) + matches_played: (Scalars['Int'] | null) + matches_remaining: (Scalars['Int'] | null) + rank: (Scalars['Int'] | null) + round_diff: (Scalars['Int'] | null) + rounds_lost: (Scalars['Int'] | null) + rounds_won: (Scalars['Int'] | null) + wins: (Scalars['Int'] | null) + __typename: 'v_league_division_standings_sum_fields' +} + + +/** aggregate var_pop on columns */ +export interface v_league_division_standings_var_pop_fields { + head_to_head_match_wins: (Scalars['Float'] | null) + head_to_head_rounds_won: (Scalars['Float'] | null) + losses: (Scalars['Float'] | null) + maps_lost: (Scalars['Float'] | null) + maps_won: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + matches_remaining: (Scalars['Float'] | null) + rank: (Scalars['Float'] | null) + round_diff: (Scalars['Float'] | null) + rounds_lost: (Scalars['Float'] | null) + rounds_won: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_league_division_standings_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface v_league_division_standings_var_samp_fields { + head_to_head_match_wins: (Scalars['Float'] | null) + head_to_head_rounds_won: (Scalars['Float'] | null) + losses: (Scalars['Float'] | null) + maps_lost: (Scalars['Float'] | null) + maps_won: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + matches_remaining: (Scalars['Float'] | null) + rank: (Scalars['Float'] | null) + round_diff: (Scalars['Float'] | null) + rounds_lost: (Scalars['Float'] | null) + rounds_won: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_league_division_standings_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface v_league_division_standings_variance_fields { + head_to_head_match_wins: (Scalars['Float'] | null) + head_to_head_rounds_won: (Scalars['Float'] | null) + losses: (Scalars['Float'] | null) + maps_lost: (Scalars['Float'] | null) + maps_won: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + matches_remaining: (Scalars['Float'] | null) + rank: (Scalars['Float'] | null) + round_diff: (Scalars['Float'] | null) + rounds_lost: (Scalars['Float'] | null) + rounds_won: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_league_division_standings_variance_fields' +} + + +/** columns and relationships of "v_league_season_player_stats" */ +export interface v_league_season_player_stats { + assists: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) + headshot_percentage: (Scalars['float8'] | null) + headshots: (Scalars['Int'] | null) + kdr: (Scalars['float8'] | null) + kills: (Scalars['Int'] | null) + league_division_id: (Scalars['uuid'] | null) + league_season_division_id: (Scalars['uuid'] | null) + league_season_id: (Scalars['uuid'] | null) + /** An object relationship */ + league_team: (league_teams | null) + league_team_id: (Scalars['uuid'] | null) + league_team_season_id: (Scalars['uuid'] | null) + matches_played: (Scalars['Int'] | null) + /** An object relationship */ + player: (players | null) + player_steam_id: (Scalars['bigint'] | null) + __typename: 'v_league_season_player_stats' +} + + +/** aggregated selection of "v_league_season_player_stats" */ +export interface v_league_season_player_stats_aggregate { + aggregate: (v_league_season_player_stats_aggregate_fields | null) + nodes: v_league_season_player_stats[] + __typename: 'v_league_season_player_stats_aggregate' +} + + +/** aggregate fields of "v_league_season_player_stats" */ +export interface v_league_season_player_stats_aggregate_fields { + avg: (v_league_season_player_stats_avg_fields | null) + count: Scalars['Int'] + max: (v_league_season_player_stats_max_fields | null) + min: (v_league_season_player_stats_min_fields | null) + stddev: (v_league_season_player_stats_stddev_fields | null) + stddev_pop: (v_league_season_player_stats_stddev_pop_fields | null) + stddev_samp: (v_league_season_player_stats_stddev_samp_fields | null) + sum: (v_league_season_player_stats_sum_fields | null) + var_pop: (v_league_season_player_stats_var_pop_fields | null) + var_samp: (v_league_season_player_stats_var_samp_fields | null) + variance: (v_league_season_player_stats_variance_fields | null) + __typename: 'v_league_season_player_stats_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface v_league_season_player_stats_avg_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_league_season_player_stats_avg_fields' +} + + +/** aggregate max on columns */ +export interface v_league_season_player_stats_max_fields { + assists: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) + headshot_percentage: (Scalars['float8'] | null) + headshots: (Scalars['Int'] | null) + kdr: (Scalars['float8'] | null) + kills: (Scalars['Int'] | null) + league_division_id: (Scalars['uuid'] | null) + league_season_division_id: (Scalars['uuid'] | null) + league_season_id: (Scalars['uuid'] | null) + league_team_id: (Scalars['uuid'] | null) + league_team_season_id: (Scalars['uuid'] | null) + matches_played: (Scalars['Int'] | null) + player_steam_id: (Scalars['bigint'] | null) + __typename: 'v_league_season_player_stats_max_fields' +} + + +/** aggregate min on columns */ +export interface v_league_season_player_stats_min_fields { + assists: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) + headshot_percentage: (Scalars['float8'] | null) + headshots: (Scalars['Int'] | null) + kdr: (Scalars['float8'] | null) + kills: (Scalars['Int'] | null) + league_division_id: (Scalars['uuid'] | null) + league_season_division_id: (Scalars['uuid'] | null) + league_season_id: (Scalars['uuid'] | null) + league_team_id: (Scalars['uuid'] | null) + league_team_season_id: (Scalars['uuid'] | null) + matches_played: (Scalars['Int'] | null) + player_steam_id: (Scalars['bigint'] | null) + __typename: 'v_league_season_player_stats_min_fields' +} + + +/** select columns of table "v_league_season_player_stats" */ +export type v_league_season_player_stats_select_column = 'assists' | 'deaths' | 'headshot_percentage' | 'headshots' | 'kdr' | 'kills' | 'league_division_id' | 'league_season_division_id' | 'league_season_id' | 'league_team_id' | 'league_team_season_id' | 'matches_played' | 'player_steam_id' + + +/** select "v_league_season_player_stats_aggregate_bool_exp_avg_arguments_columns" columns of table "v_league_season_player_stats" */ +export type v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_avg_arguments_columns = 'headshot_percentage' | 'kdr' + + +/** select "v_league_season_player_stats_aggregate_bool_exp_corr_arguments_columns" columns of table "v_league_season_player_stats" */ +export type v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_corr_arguments_columns = 'headshot_percentage' | 'kdr' + + +/** select "v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "v_league_season_player_stats" */ +export type v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments_columns = 'headshot_percentage' | 'kdr' + + +/** select "v_league_season_player_stats_aggregate_bool_exp_max_arguments_columns" columns of table "v_league_season_player_stats" */ +export type v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_max_arguments_columns = 'headshot_percentage' | 'kdr' + + +/** select "v_league_season_player_stats_aggregate_bool_exp_min_arguments_columns" columns of table "v_league_season_player_stats" */ +export type v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_min_arguments_columns = 'headshot_percentage' | 'kdr' + + +/** select "v_league_season_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "v_league_season_player_stats" */ +export type v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns = 'headshot_percentage' | 'kdr' + + +/** select "v_league_season_player_stats_aggregate_bool_exp_sum_arguments_columns" columns of table "v_league_season_player_stats" */ +export type v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_sum_arguments_columns = 'headshot_percentage' | 'kdr' + + +/** select "v_league_season_player_stats_aggregate_bool_exp_var_samp_arguments_columns" columns of table "v_league_season_player_stats" */ +export type v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_var_samp_arguments_columns = 'headshot_percentage' | 'kdr' + + +/** aggregate stddev on columns */ +export interface v_league_season_player_stats_stddev_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_league_season_player_stats_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface v_league_season_player_stats_stddev_pop_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_league_season_player_stats_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface v_league_season_player_stats_stddev_samp_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_league_season_player_stats_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface v_league_season_player_stats_sum_fields { + assists: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) + headshot_percentage: (Scalars['float8'] | null) + headshots: (Scalars['Int'] | null) + kdr: (Scalars['float8'] | null) + kills: (Scalars['Int'] | null) + matches_played: (Scalars['Int'] | null) + player_steam_id: (Scalars['bigint'] | null) + __typename: 'v_league_season_player_stats_sum_fields' +} + + +/** aggregate var_pop on columns */ +export interface v_league_season_player_stats_var_pop_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_league_season_player_stats_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface v_league_season_player_stats_var_samp_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_league_season_player_stats_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface v_league_season_player_stats_variance_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_league_season_player_stats_variance_fields' +} + + +/** columns and relationships of "v_match_captains" */ +export interface v_match_captains { + captain: (Scalars['Boolean'] | null) + discord_id: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + /** An object relationship */ + lineup: (match_lineups | null) + match_lineup_id: (Scalars['uuid'] | null) + placeholder_name: (Scalars['String'] | null) + /** An object relationship */ + player: (players | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'v_match_captains' +} + + +/** aggregated selection of "v_match_captains" */ +export interface v_match_captains_aggregate { + aggregate: (v_match_captains_aggregate_fields | null) + nodes: v_match_captains[] + __typename: 'v_match_captains_aggregate' +} + + +/** aggregate fields of "v_match_captains" */ +export interface v_match_captains_aggregate_fields { + avg: (v_match_captains_avg_fields | null) + count: Scalars['Int'] + max: (v_match_captains_max_fields | null) + min: (v_match_captains_min_fields | null) + stddev: (v_match_captains_stddev_fields | null) + stddev_pop: (v_match_captains_stddev_pop_fields | null) + stddev_samp: (v_match_captains_stddev_samp_fields | null) + sum: (v_match_captains_sum_fields | null) + var_pop: (v_match_captains_var_pop_fields | null) + var_samp: (v_match_captains_var_samp_fields | null) + variance: (v_match_captains_variance_fields | null) + __typename: 'v_match_captains_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface v_match_captains_avg_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'v_match_captains_avg_fields' +} + + +/** aggregate max on columns */ +export interface v_match_captains_max_fields { + discord_id: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + match_lineup_id: (Scalars['uuid'] | null) + placeholder_name: (Scalars['String'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'v_match_captains_max_fields' +} + + +/** aggregate min on columns */ +export interface v_match_captains_min_fields { + discord_id: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + match_lineup_id: (Scalars['uuid'] | null) + placeholder_name: (Scalars['String'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'v_match_captains_min_fields' +} + + +/** response of any mutation on the table "v_match_captains" */ +export interface v_match_captains_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: v_match_captains[] + __typename: 'v_match_captains_mutation_response' +} + + +/** select columns of table "v_match_captains" */ +export type v_match_captains_select_column = 'captain' | 'discord_id' | 'id' | 'match_lineup_id' | 'placeholder_name' | 'steam_id' + + +/** aggregate stddev on columns */ +export interface v_match_captains_stddev_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'v_match_captains_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface v_match_captains_stddev_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'v_match_captains_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface v_match_captains_stddev_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'v_match_captains_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface v_match_captains_sum_fields { + steam_id: (Scalars['bigint'] | null) + __typename: 'v_match_captains_sum_fields' +} + + +/** aggregate var_pop on columns */ +export interface v_match_captains_var_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'v_match_captains_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface v_match_captains_var_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'v_match_captains_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface v_match_captains_variance_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'v_match_captains_variance_fields' +} + + +/** columns and relationships of "v_match_clutches" */ +export interface v_match_clutches { + against_count: (Scalars['Int'] | null) + /** An object relationship */ + clutcher: (players | null) + clutcher_steam_id: (Scalars['bigint'] | null) + kills_in_clutch: (Scalars['Int'] | null) + /** An object relationship */ + match: (matches | null) + match_id: (Scalars['uuid'] | null) + /** An object relationship */ + match_lineup: (match_lineups | null) + match_lineup_id: (Scalars['uuid'] | null) + /** An object relationship */ + match_map: (match_maps | null) + match_map_id: (Scalars['uuid'] | null) + outcome: (Scalars['String'] | null) + round: (Scalars['Int'] | null) + side: (Scalars['String'] | null) + __typename: 'v_match_clutches' +} + + +/** aggregated selection of "v_match_clutches" */ +export interface v_match_clutches_aggregate { + aggregate: (v_match_clutches_aggregate_fields | null) + nodes: v_match_clutches[] + __typename: 'v_match_clutches_aggregate' +} + + +/** aggregate fields of "v_match_clutches" */ +export interface v_match_clutches_aggregate_fields { + avg: (v_match_clutches_avg_fields | null) + count: Scalars['Int'] + max: (v_match_clutches_max_fields | null) + min: (v_match_clutches_min_fields | null) + stddev: (v_match_clutches_stddev_fields | null) + stddev_pop: (v_match_clutches_stddev_pop_fields | null) + stddev_samp: (v_match_clutches_stddev_samp_fields | null) + sum: (v_match_clutches_sum_fields | null) + var_pop: (v_match_clutches_var_pop_fields | null) + var_samp: (v_match_clutches_var_samp_fields | null) + variance: (v_match_clutches_variance_fields | null) + __typename: 'v_match_clutches_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface v_match_clutches_avg_fields { + against_count: (Scalars['Float'] | null) + clutcher_steam_id: (Scalars['Float'] | null) + kills_in_clutch: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'v_match_clutches_avg_fields' +} + + +/** aggregate max on columns */ +export interface v_match_clutches_max_fields { + against_count: (Scalars['Int'] | null) + clutcher_steam_id: (Scalars['bigint'] | null) + kills_in_clutch: (Scalars['Int'] | null) + match_id: (Scalars['uuid'] | null) + match_lineup_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + outcome: (Scalars['String'] | null) + round: (Scalars['Int'] | null) + side: (Scalars['String'] | null) + __typename: 'v_match_clutches_max_fields' +} + + +/** aggregate min on columns */ +export interface v_match_clutches_min_fields { + against_count: (Scalars['Int'] | null) + clutcher_steam_id: (Scalars['bigint'] | null) + kills_in_clutch: (Scalars['Int'] | null) + match_id: (Scalars['uuid'] | null) + match_lineup_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + outcome: (Scalars['String'] | null) + round: (Scalars['Int'] | null) + side: (Scalars['String'] | null) + __typename: 'v_match_clutches_min_fields' +} + + +/** select columns of table "v_match_clutches" */ +export type v_match_clutches_select_column = 'against_count' | 'clutcher_steam_id' | 'kills_in_clutch' | 'match_id' | 'match_lineup_id' | 'match_map_id' | 'outcome' | 'round' | 'side' + + +/** aggregate stddev on columns */ +export interface v_match_clutches_stddev_fields { + against_count: (Scalars['Float'] | null) + clutcher_steam_id: (Scalars['Float'] | null) + kills_in_clutch: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'v_match_clutches_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface v_match_clutches_stddev_pop_fields { + against_count: (Scalars['Float'] | null) + clutcher_steam_id: (Scalars['Float'] | null) + kills_in_clutch: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'v_match_clutches_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface v_match_clutches_stddev_samp_fields { + against_count: (Scalars['Float'] | null) + clutcher_steam_id: (Scalars['Float'] | null) + kills_in_clutch: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'v_match_clutches_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface v_match_clutches_sum_fields { + against_count: (Scalars['Int'] | null) + clutcher_steam_id: (Scalars['bigint'] | null) + kills_in_clutch: (Scalars['Int'] | null) + round: (Scalars['Int'] | null) + __typename: 'v_match_clutches_sum_fields' +} + + +/** aggregate var_pop on columns */ +export interface v_match_clutches_var_pop_fields { + against_count: (Scalars['Float'] | null) + clutcher_steam_id: (Scalars['Float'] | null) + kills_in_clutch: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'v_match_clutches_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface v_match_clutches_var_samp_fields { + against_count: (Scalars['Float'] | null) + clutcher_steam_id: (Scalars['Float'] | null) + kills_in_clutch: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'v_match_clutches_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface v_match_clutches_variance_fields { + against_count: (Scalars['Float'] | null) + clutcher_steam_id: (Scalars['Float'] | null) + kills_in_clutch: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'v_match_clutches_variance_fields' +} + + +/** columns and relationships of "v_match_kill_pairs" */ +export interface v_match_kill_pairs { + killer_side: (Scalars['String'] | null) + killer_steam_id: (Scalars['bigint'] | null) + kills: (Scalars['Int'] | null) + /** An object relationship */ + match: (matches | null) + match_id: (Scalars['uuid'] | null) + /** An object relationship */ + match_map: (match_maps | null) + match_map_id: (Scalars['uuid'] | null) + victim_side: (Scalars['String'] | null) + victim_steam_id: (Scalars['bigint'] | null) + weapon: (Scalars['String'] | null) + __typename: 'v_match_kill_pairs' +} + + +/** aggregated selection of "v_match_kill_pairs" */ +export interface v_match_kill_pairs_aggregate { + aggregate: (v_match_kill_pairs_aggregate_fields | null) + nodes: v_match_kill_pairs[] + __typename: 'v_match_kill_pairs_aggregate' +} + + +/** aggregate fields of "v_match_kill_pairs" */ +export interface v_match_kill_pairs_aggregate_fields { + avg: (v_match_kill_pairs_avg_fields | null) + count: Scalars['Int'] + max: (v_match_kill_pairs_max_fields | null) + min: (v_match_kill_pairs_min_fields | null) + stddev: (v_match_kill_pairs_stddev_fields | null) + stddev_pop: (v_match_kill_pairs_stddev_pop_fields | null) + stddev_samp: (v_match_kill_pairs_stddev_samp_fields | null) + sum: (v_match_kill_pairs_sum_fields | null) + var_pop: (v_match_kill_pairs_var_pop_fields | null) + var_samp: (v_match_kill_pairs_var_samp_fields | null) + variance: (v_match_kill_pairs_variance_fields | null) + __typename: 'v_match_kill_pairs_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface v_match_kill_pairs_avg_fields { + killer_steam_id: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + victim_steam_id: (Scalars['Float'] | null) + __typename: 'v_match_kill_pairs_avg_fields' +} + + +/** aggregate max on columns */ +export interface v_match_kill_pairs_max_fields { + killer_side: (Scalars['String'] | null) + killer_steam_id: (Scalars['bigint'] | null) + kills: (Scalars['Int'] | null) + match_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + victim_side: (Scalars['String'] | null) + victim_steam_id: (Scalars['bigint'] | null) + weapon: (Scalars['String'] | null) + __typename: 'v_match_kill_pairs_max_fields' +} + + +/** aggregate min on columns */ +export interface v_match_kill_pairs_min_fields { + killer_side: (Scalars['String'] | null) + killer_steam_id: (Scalars['bigint'] | null) + kills: (Scalars['Int'] | null) + match_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + victim_side: (Scalars['String'] | null) + victim_steam_id: (Scalars['bigint'] | null) + weapon: (Scalars['String'] | null) + __typename: 'v_match_kill_pairs_min_fields' +} + + +/** select columns of table "v_match_kill_pairs" */ +export type v_match_kill_pairs_select_column = 'killer_side' | 'killer_steam_id' | 'kills' | 'match_id' | 'match_map_id' | 'victim_side' | 'victim_steam_id' | 'weapon' + + +/** aggregate stddev on columns */ +export interface v_match_kill_pairs_stddev_fields { + killer_steam_id: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + victim_steam_id: (Scalars['Float'] | null) + __typename: 'v_match_kill_pairs_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface v_match_kill_pairs_stddev_pop_fields { + killer_steam_id: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + victim_steam_id: (Scalars['Float'] | null) + __typename: 'v_match_kill_pairs_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface v_match_kill_pairs_stddev_samp_fields { + killer_steam_id: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + victim_steam_id: (Scalars['Float'] | null) + __typename: 'v_match_kill_pairs_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface v_match_kill_pairs_sum_fields { + killer_steam_id: (Scalars['bigint'] | null) + kills: (Scalars['Int'] | null) + victim_steam_id: (Scalars['bigint'] | null) + __typename: 'v_match_kill_pairs_sum_fields' +} + + +/** aggregate var_pop on columns */ +export interface v_match_kill_pairs_var_pop_fields { + killer_steam_id: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + victim_steam_id: (Scalars['Float'] | null) + __typename: 'v_match_kill_pairs_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface v_match_kill_pairs_var_samp_fields { + killer_steam_id: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + victim_steam_id: (Scalars['Float'] | null) + __typename: 'v_match_kill_pairs_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface v_match_kill_pairs_variance_fields { + killer_steam_id: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + victim_steam_id: (Scalars['Float'] | null) + __typename: 'v_match_kill_pairs_variance_fields' +} + + +/** columns and relationships of "v_match_lineup_buy_types" */ +export interface v_match_lineup_buy_types { + /** An object relationship */ + match: (matches | null) + match_id: (Scalars['uuid'] | null) + /** An object relationship */ + match_lineup: (match_lineups | null) + match_lineup_id: (Scalars['uuid'] | null) + /** An object relationship */ + match_map: (match_maps | null) + match_map_id: (Scalars['uuid'] | null) + matchup: (Scalars['String'] | null) + rounds: (Scalars['Int'] | null) + side: (Scalars['String'] | null) + wins: (Scalars['Int'] | null) + __typename: 'v_match_lineup_buy_types' +} + + +/** aggregated selection of "v_match_lineup_buy_types" */ +export interface v_match_lineup_buy_types_aggregate { + aggregate: (v_match_lineup_buy_types_aggregate_fields | null) + nodes: v_match_lineup_buy_types[] + __typename: 'v_match_lineup_buy_types_aggregate' +} + + +/** aggregate fields of "v_match_lineup_buy_types" */ +export interface v_match_lineup_buy_types_aggregate_fields { + avg: (v_match_lineup_buy_types_avg_fields | null) + count: Scalars['Int'] + max: (v_match_lineup_buy_types_max_fields | null) + min: (v_match_lineup_buy_types_min_fields | null) + stddev: (v_match_lineup_buy_types_stddev_fields | null) + stddev_pop: (v_match_lineup_buy_types_stddev_pop_fields | null) + stddev_samp: (v_match_lineup_buy_types_stddev_samp_fields | null) + sum: (v_match_lineup_buy_types_sum_fields | null) + var_pop: (v_match_lineup_buy_types_var_pop_fields | null) + var_samp: (v_match_lineup_buy_types_var_samp_fields | null) + variance: (v_match_lineup_buy_types_variance_fields | null) + __typename: 'v_match_lineup_buy_types_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface v_match_lineup_buy_types_avg_fields { + rounds: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_match_lineup_buy_types_avg_fields' +} + + +/** aggregate max on columns */ +export interface v_match_lineup_buy_types_max_fields { + match_id: (Scalars['uuid'] | null) + match_lineup_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + matchup: (Scalars['String'] | null) + rounds: (Scalars['Int'] | null) + side: (Scalars['String'] | null) + wins: (Scalars['Int'] | null) + __typename: 'v_match_lineup_buy_types_max_fields' +} + + +/** aggregate min on columns */ +export interface v_match_lineup_buy_types_min_fields { + match_id: (Scalars['uuid'] | null) + match_lineup_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + matchup: (Scalars['String'] | null) + rounds: (Scalars['Int'] | null) + side: (Scalars['String'] | null) + wins: (Scalars['Int'] | null) + __typename: 'v_match_lineup_buy_types_min_fields' +} + + +/** select columns of table "v_match_lineup_buy_types" */ +export type v_match_lineup_buy_types_select_column = 'match_id' | 'match_lineup_id' | 'match_map_id' | 'matchup' | 'rounds' | 'side' | 'wins' + + +/** aggregate stddev on columns */ +export interface v_match_lineup_buy_types_stddev_fields { + rounds: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_match_lineup_buy_types_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface v_match_lineup_buy_types_stddev_pop_fields { + rounds: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_match_lineup_buy_types_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface v_match_lineup_buy_types_stddev_samp_fields { + rounds: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_match_lineup_buy_types_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface v_match_lineup_buy_types_sum_fields { + rounds: (Scalars['Int'] | null) + wins: (Scalars['Int'] | null) + __typename: 'v_match_lineup_buy_types_sum_fields' +} + + +/** aggregate var_pop on columns */ +export interface v_match_lineup_buy_types_var_pop_fields { + rounds: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_match_lineup_buy_types_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface v_match_lineup_buy_types_var_samp_fields { + rounds: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_match_lineup_buy_types_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface v_match_lineup_buy_types_variance_fields { + rounds: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_match_lineup_buy_types_variance_fields' +} + + +/** columns and relationships of "v_match_lineup_map_stats" */ +export interface v_match_lineup_map_stats { + man_adv_rounds: (Scalars['Int'] | null) + man_adv_wins: (Scalars['Int'] | null) + man_dis_rounds: (Scalars['Int'] | null) + man_dis_wins: (Scalars['Int'] | null) + /** An object relationship */ + match: (matches | null) + match_id: (Scalars['uuid'] | null) + /** An object relationship */ + match_lineup: (match_lineups | null) + match_lineup_id: (Scalars['uuid'] | null) + /** An object relationship */ + match_map: (match_maps | null) + match_map_id: (Scalars['uuid'] | null) + opening_attempts: (Scalars['Int'] | null) + opening_wins: (Scalars['Int'] | null) + pistol_rounds: (Scalars['Int'] | null) + pistol_wins: (Scalars['Int'] | null) + round_wins: (Scalars['Int'] | null) + rounds: (Scalars['Int'] | null) + side: (Scalars['String'] | null) + won_buy_eco: (Scalars['Int'] | null) + won_buy_force: (Scalars['Int'] | null) + won_buy_full: (Scalars['Int'] | null) + won_buy_pistol: (Scalars['Int'] | null) + __typename: 'v_match_lineup_map_stats' +} + + +/** aggregated selection of "v_match_lineup_map_stats" */ +export interface v_match_lineup_map_stats_aggregate { + aggregate: (v_match_lineup_map_stats_aggregate_fields | null) + nodes: v_match_lineup_map_stats[] + __typename: 'v_match_lineup_map_stats_aggregate' +} + + +/** aggregate fields of "v_match_lineup_map_stats" */ +export interface v_match_lineup_map_stats_aggregate_fields { + avg: (v_match_lineup_map_stats_avg_fields | null) + count: Scalars['Int'] + max: (v_match_lineup_map_stats_max_fields | null) + min: (v_match_lineup_map_stats_min_fields | null) + stddev: (v_match_lineup_map_stats_stddev_fields | null) + stddev_pop: (v_match_lineup_map_stats_stddev_pop_fields | null) + stddev_samp: (v_match_lineup_map_stats_stddev_samp_fields | null) + sum: (v_match_lineup_map_stats_sum_fields | null) + var_pop: (v_match_lineup_map_stats_var_pop_fields | null) + var_samp: (v_match_lineup_map_stats_var_samp_fields | null) + variance: (v_match_lineup_map_stats_variance_fields | null) + __typename: 'v_match_lineup_map_stats_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface v_match_lineup_map_stats_avg_fields { + man_adv_rounds: (Scalars['Float'] | null) + man_adv_wins: (Scalars['Float'] | null) + man_dis_rounds: (Scalars['Float'] | null) + man_dis_wins: (Scalars['Float'] | null) + opening_attempts: (Scalars['Float'] | null) + opening_wins: (Scalars['Float'] | null) + pistol_rounds: (Scalars['Float'] | null) + pistol_wins: (Scalars['Float'] | null) + round_wins: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + won_buy_eco: (Scalars['Float'] | null) + won_buy_force: (Scalars['Float'] | null) + won_buy_full: (Scalars['Float'] | null) + won_buy_pistol: (Scalars['Float'] | null) + __typename: 'v_match_lineup_map_stats_avg_fields' +} + + +/** aggregate max on columns */ +export interface v_match_lineup_map_stats_max_fields { + man_adv_rounds: (Scalars['Int'] | null) + man_adv_wins: (Scalars['Int'] | null) + man_dis_rounds: (Scalars['Int'] | null) + man_dis_wins: (Scalars['Int'] | null) + match_id: (Scalars['uuid'] | null) + match_lineup_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + opening_attempts: (Scalars['Int'] | null) + opening_wins: (Scalars['Int'] | null) + pistol_rounds: (Scalars['Int'] | null) + pistol_wins: (Scalars['Int'] | null) + round_wins: (Scalars['Int'] | null) + rounds: (Scalars['Int'] | null) + side: (Scalars['String'] | null) + won_buy_eco: (Scalars['Int'] | null) + won_buy_force: (Scalars['Int'] | null) + won_buy_full: (Scalars['Int'] | null) + won_buy_pistol: (Scalars['Int'] | null) + __typename: 'v_match_lineup_map_stats_max_fields' +} + + +/** aggregate min on columns */ +export interface v_match_lineup_map_stats_min_fields { + man_adv_rounds: (Scalars['Int'] | null) + man_adv_wins: (Scalars['Int'] | null) + man_dis_rounds: (Scalars['Int'] | null) + man_dis_wins: (Scalars['Int'] | null) + match_id: (Scalars['uuid'] | null) + match_lineup_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + opening_attempts: (Scalars['Int'] | null) + opening_wins: (Scalars['Int'] | null) + pistol_rounds: (Scalars['Int'] | null) + pistol_wins: (Scalars['Int'] | null) + round_wins: (Scalars['Int'] | null) + rounds: (Scalars['Int'] | null) + side: (Scalars['String'] | null) + won_buy_eco: (Scalars['Int'] | null) + won_buy_force: (Scalars['Int'] | null) + won_buy_full: (Scalars['Int'] | null) + won_buy_pistol: (Scalars['Int'] | null) + __typename: 'v_match_lineup_map_stats_min_fields' +} + + +/** select columns of table "v_match_lineup_map_stats" */ +export type v_match_lineup_map_stats_select_column = 'man_adv_rounds' | 'man_adv_wins' | 'man_dis_rounds' | 'man_dis_wins' | 'match_id' | 'match_lineup_id' | 'match_map_id' | 'opening_attempts' | 'opening_wins' | 'pistol_rounds' | 'pistol_wins' | 'round_wins' | 'rounds' | 'side' | 'won_buy_eco' | 'won_buy_force' | 'won_buy_full' | 'won_buy_pistol' + + +/** aggregate stddev on columns */ +export interface v_match_lineup_map_stats_stddev_fields { + man_adv_rounds: (Scalars['Float'] | null) + man_adv_wins: (Scalars['Float'] | null) + man_dis_rounds: (Scalars['Float'] | null) + man_dis_wins: (Scalars['Float'] | null) + opening_attempts: (Scalars['Float'] | null) + opening_wins: (Scalars['Float'] | null) + pistol_rounds: (Scalars['Float'] | null) + pistol_wins: (Scalars['Float'] | null) + round_wins: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + won_buy_eco: (Scalars['Float'] | null) + won_buy_force: (Scalars['Float'] | null) + won_buy_full: (Scalars['Float'] | null) + won_buy_pistol: (Scalars['Float'] | null) + __typename: 'v_match_lineup_map_stats_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface v_match_lineup_map_stats_stddev_pop_fields { + man_adv_rounds: (Scalars['Float'] | null) + man_adv_wins: (Scalars['Float'] | null) + man_dis_rounds: (Scalars['Float'] | null) + man_dis_wins: (Scalars['Float'] | null) + opening_attempts: (Scalars['Float'] | null) + opening_wins: (Scalars['Float'] | null) + pistol_rounds: (Scalars['Float'] | null) + pistol_wins: (Scalars['Float'] | null) + round_wins: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + won_buy_eco: (Scalars['Float'] | null) + won_buy_force: (Scalars['Float'] | null) + won_buy_full: (Scalars['Float'] | null) + won_buy_pistol: (Scalars['Float'] | null) + __typename: 'v_match_lineup_map_stats_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface v_match_lineup_map_stats_stddev_samp_fields { + man_adv_rounds: (Scalars['Float'] | null) + man_adv_wins: (Scalars['Float'] | null) + man_dis_rounds: (Scalars['Float'] | null) + man_dis_wins: (Scalars['Float'] | null) + opening_attempts: (Scalars['Float'] | null) + opening_wins: (Scalars['Float'] | null) + pistol_rounds: (Scalars['Float'] | null) + pistol_wins: (Scalars['Float'] | null) + round_wins: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + won_buy_eco: (Scalars['Float'] | null) + won_buy_force: (Scalars['Float'] | null) + won_buy_full: (Scalars['Float'] | null) + won_buy_pistol: (Scalars['Float'] | null) + __typename: 'v_match_lineup_map_stats_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface v_match_lineup_map_stats_sum_fields { + man_adv_rounds: (Scalars['Int'] | null) + man_adv_wins: (Scalars['Int'] | null) + man_dis_rounds: (Scalars['Int'] | null) + man_dis_wins: (Scalars['Int'] | null) + opening_attempts: (Scalars['Int'] | null) + opening_wins: (Scalars['Int'] | null) + pistol_rounds: (Scalars['Int'] | null) + pistol_wins: (Scalars['Int'] | null) + round_wins: (Scalars['Int'] | null) + rounds: (Scalars['Int'] | null) + won_buy_eco: (Scalars['Int'] | null) + won_buy_force: (Scalars['Int'] | null) + won_buy_full: (Scalars['Int'] | null) + won_buy_pistol: (Scalars['Int'] | null) + __typename: 'v_match_lineup_map_stats_sum_fields' +} + + +/** aggregate var_pop on columns */ +export interface v_match_lineup_map_stats_var_pop_fields { + man_adv_rounds: (Scalars['Float'] | null) + man_adv_wins: (Scalars['Float'] | null) + man_dis_rounds: (Scalars['Float'] | null) + man_dis_wins: (Scalars['Float'] | null) + opening_attempts: (Scalars['Float'] | null) + opening_wins: (Scalars['Float'] | null) + pistol_rounds: (Scalars['Float'] | null) + pistol_wins: (Scalars['Float'] | null) + round_wins: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + won_buy_eco: (Scalars['Float'] | null) + won_buy_force: (Scalars['Float'] | null) + won_buy_full: (Scalars['Float'] | null) + won_buy_pistol: (Scalars['Float'] | null) + __typename: 'v_match_lineup_map_stats_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface v_match_lineup_map_stats_var_samp_fields { + man_adv_rounds: (Scalars['Float'] | null) + man_adv_wins: (Scalars['Float'] | null) + man_dis_rounds: (Scalars['Float'] | null) + man_dis_wins: (Scalars['Float'] | null) + opening_attempts: (Scalars['Float'] | null) + opening_wins: (Scalars['Float'] | null) + pistol_rounds: (Scalars['Float'] | null) + pistol_wins: (Scalars['Float'] | null) + round_wins: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + won_buy_eco: (Scalars['Float'] | null) + won_buy_force: (Scalars['Float'] | null) + won_buy_full: (Scalars['Float'] | null) + won_buy_pistol: (Scalars['Float'] | null) + __typename: 'v_match_lineup_map_stats_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface v_match_lineup_map_stats_variance_fields { + man_adv_rounds: (Scalars['Float'] | null) + man_adv_wins: (Scalars['Float'] | null) + man_dis_rounds: (Scalars['Float'] | null) + man_dis_wins: (Scalars['Float'] | null) + opening_attempts: (Scalars['Float'] | null) + opening_wins: (Scalars['Float'] | null) + pistol_rounds: (Scalars['Float'] | null) + pistol_wins: (Scalars['Float'] | null) + round_wins: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + won_buy_eco: (Scalars['Float'] | null) + won_buy_force: (Scalars['Float'] | null) + won_buy_full: (Scalars['Float'] | null) + won_buy_pistol: (Scalars['Float'] | null) + __typename: 'v_match_lineup_map_stats_variance_fields' +} + + +/** columns and relationships of "v_match_map_backup_rounds" */ +export interface v_match_map_backup_rounds { + has_backup_file: (Scalars['Boolean'] | null) + match_map_id: (Scalars['uuid'] | null) + round: (Scalars['Int'] | null) + __typename: 'v_match_map_backup_rounds' +} + + +/** aggregated selection of "v_match_map_backup_rounds" */ +export interface v_match_map_backup_rounds_aggregate { + aggregate: (v_match_map_backup_rounds_aggregate_fields | null) + nodes: v_match_map_backup_rounds[] + __typename: 'v_match_map_backup_rounds_aggregate' +} + + +/** aggregate fields of "v_match_map_backup_rounds" */ +export interface v_match_map_backup_rounds_aggregate_fields { + avg: (v_match_map_backup_rounds_avg_fields | null) + count: Scalars['Int'] + max: (v_match_map_backup_rounds_max_fields | null) + min: (v_match_map_backup_rounds_min_fields | null) + stddev: (v_match_map_backup_rounds_stddev_fields | null) + stddev_pop: (v_match_map_backup_rounds_stddev_pop_fields | null) + stddev_samp: (v_match_map_backup_rounds_stddev_samp_fields | null) + sum: (v_match_map_backup_rounds_sum_fields | null) + var_pop: (v_match_map_backup_rounds_var_pop_fields | null) + var_samp: (v_match_map_backup_rounds_var_samp_fields | null) + variance: (v_match_map_backup_rounds_variance_fields | null) + __typename: 'v_match_map_backup_rounds_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface v_match_map_backup_rounds_avg_fields { + round: (Scalars['Float'] | null) + __typename: 'v_match_map_backup_rounds_avg_fields' +} + + +/** aggregate max on columns */ +export interface v_match_map_backup_rounds_max_fields { + match_map_id: (Scalars['uuid'] | null) + round: (Scalars['Int'] | null) + __typename: 'v_match_map_backup_rounds_max_fields' +} + + +/** aggregate min on columns */ +export interface v_match_map_backup_rounds_min_fields { + match_map_id: (Scalars['uuid'] | null) + round: (Scalars['Int'] | null) + __typename: 'v_match_map_backup_rounds_min_fields' +} + + +/** response of any mutation on the table "v_match_map_backup_rounds" */ +export interface v_match_map_backup_rounds_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: v_match_map_backup_rounds[] + __typename: 'v_match_map_backup_rounds_mutation_response' +} + + +/** select columns of table "v_match_map_backup_rounds" */ +export type v_match_map_backup_rounds_select_column = 'has_backup_file' | 'match_map_id' | 'round' + + +/** aggregate stddev on columns */ +export interface v_match_map_backup_rounds_stddev_fields { + round: (Scalars['Float'] | null) + __typename: 'v_match_map_backup_rounds_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface v_match_map_backup_rounds_stddev_pop_fields { + round: (Scalars['Float'] | null) + __typename: 'v_match_map_backup_rounds_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface v_match_map_backup_rounds_stddev_samp_fields { + round: (Scalars['Float'] | null) + __typename: 'v_match_map_backup_rounds_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface v_match_map_backup_rounds_sum_fields { + round: (Scalars['Int'] | null) + __typename: 'v_match_map_backup_rounds_sum_fields' +} + + +/** aggregate var_pop on columns */ +export interface v_match_map_backup_rounds_var_pop_fields { + round: (Scalars['Float'] | null) + __typename: 'v_match_map_backup_rounds_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface v_match_map_backup_rounds_var_samp_fields { + round: (Scalars['Float'] | null) + __typename: 'v_match_map_backup_rounds_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface v_match_map_backup_rounds_variance_fields { + round: (Scalars['Float'] | null) + __typename: 'v_match_map_backup_rounds_variance_fields' +} + + +/** columns and relationships of "v_match_player_buy_types" */ +export interface v_match_player_buy_types { + deaths: (Scalars['Int'] | null) + kills: (Scalars['Int'] | null) + /** An object relationship */ + match: (matches | null) + match_id: (Scalars['uuid'] | null) + /** An object relationship */ + match_lineup: (match_lineups | null) + match_lineup_id: (Scalars['uuid'] | null) + /** An object relationship */ + match_map: (match_maps | null) + match_map_id: (Scalars['uuid'] | null) + matchup: (Scalars['String'] | null) + /** An object relationship */ + player: (players | null) + rounds: (Scalars['Int'] | null) + side: (Scalars['String'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'v_match_player_buy_types' +} + + +/** aggregated selection of "v_match_player_buy_types" */ +export interface v_match_player_buy_types_aggregate { + aggregate: (v_match_player_buy_types_aggregate_fields | null) + nodes: v_match_player_buy_types[] + __typename: 'v_match_player_buy_types_aggregate' +} + + +/** aggregate fields of "v_match_player_buy_types" */ +export interface v_match_player_buy_types_aggregate_fields { + avg: (v_match_player_buy_types_avg_fields | null) + count: Scalars['Int'] + max: (v_match_player_buy_types_max_fields | null) + min: (v_match_player_buy_types_min_fields | null) + stddev: (v_match_player_buy_types_stddev_fields | null) + stddev_pop: (v_match_player_buy_types_stddev_pop_fields | null) + stddev_samp: (v_match_player_buy_types_stddev_samp_fields | null) + sum: (v_match_player_buy_types_sum_fields | null) + var_pop: (v_match_player_buy_types_var_pop_fields | null) + var_samp: (v_match_player_buy_types_var_samp_fields | null) + variance: (v_match_player_buy_types_variance_fields | null) + __typename: 'v_match_player_buy_types_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface v_match_player_buy_types_avg_fields { + deaths: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'v_match_player_buy_types_avg_fields' +} + + +/** aggregate max on columns */ +export interface v_match_player_buy_types_max_fields { + deaths: (Scalars['Int'] | null) + kills: (Scalars['Int'] | null) + match_id: (Scalars['uuid'] | null) + match_lineup_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + matchup: (Scalars['String'] | null) + rounds: (Scalars['Int'] | null) + side: (Scalars['String'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'v_match_player_buy_types_max_fields' +} + + +/** aggregate min on columns */ +export interface v_match_player_buy_types_min_fields { + deaths: (Scalars['Int'] | null) + kills: (Scalars['Int'] | null) + match_id: (Scalars['uuid'] | null) + match_lineup_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + matchup: (Scalars['String'] | null) + rounds: (Scalars['Int'] | null) + side: (Scalars['String'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'v_match_player_buy_types_min_fields' +} + + +/** select columns of table "v_match_player_buy_types" */ +export type v_match_player_buy_types_select_column = 'deaths' | 'kills' | 'match_id' | 'match_lineup_id' | 'match_map_id' | 'matchup' | 'rounds' | 'side' | 'steam_id' + + +/** aggregate stddev on columns */ +export interface v_match_player_buy_types_stddev_fields { + deaths: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'v_match_player_buy_types_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface v_match_player_buy_types_stddev_pop_fields { + deaths: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'v_match_player_buy_types_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface v_match_player_buy_types_stddev_samp_fields { + deaths: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'v_match_player_buy_types_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface v_match_player_buy_types_sum_fields { + deaths: (Scalars['Int'] | null) + kills: (Scalars['Int'] | null) + rounds: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'v_match_player_buy_types_sum_fields' +} + + +/** aggregate var_pop on columns */ +export interface v_match_player_buy_types_var_pop_fields { + deaths: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'v_match_player_buy_types_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface v_match_player_buy_types_var_samp_fields { + deaths: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'v_match_player_buy_types_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface v_match_player_buy_types_variance_fields { + deaths: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'v_match_player_buy_types_variance_fields' +} + + +/** columns and relationships of "v_match_player_opening_duels" */ +export interface v_match_player_opening_duels { + attempts: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) + /** An object relationship */ + match: (matches | null) + match_id: (Scalars['uuid'] | null) + /** An object relationship */ + match_lineup: (match_lineups | null) + match_lineup_id: (Scalars['uuid'] | null) + /** An object relationship */ + match_map: (match_maps | null) + match_map_id: (Scalars['uuid'] | null) + /** An object relationship */ + player: (players | null) + side: (Scalars['String'] | null) + steam_id: (Scalars['bigint'] | null) + traded_deaths: (Scalars['Int'] | null) + wins: (Scalars['Int'] | null) + __typename: 'v_match_player_opening_duels' +} + + +/** aggregated selection of "v_match_player_opening_duels" */ +export interface v_match_player_opening_duels_aggregate { + aggregate: (v_match_player_opening_duels_aggregate_fields | null) + nodes: v_match_player_opening_duels[] + __typename: 'v_match_player_opening_duels_aggregate' +} + + +/** aggregate fields of "v_match_player_opening_duels" */ +export interface v_match_player_opening_duels_aggregate_fields { + avg: (v_match_player_opening_duels_avg_fields | null) + count: Scalars['Int'] + max: (v_match_player_opening_duels_max_fields | null) + min: (v_match_player_opening_duels_min_fields | null) + stddev: (v_match_player_opening_duels_stddev_fields | null) + stddev_pop: (v_match_player_opening_duels_stddev_pop_fields | null) + stddev_samp: (v_match_player_opening_duels_stddev_samp_fields | null) + sum: (v_match_player_opening_duels_sum_fields | null) + var_pop: (v_match_player_opening_duels_var_pop_fields | null) + var_samp: (v_match_player_opening_duels_var_samp_fields | null) + variance: (v_match_player_opening_duels_variance_fields | null) + __typename: 'v_match_player_opening_duels_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface v_match_player_opening_duels_avg_fields { + attempts: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + traded_deaths: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_match_player_opening_duels_avg_fields' +} + + +/** aggregate max on columns */ +export interface v_match_player_opening_duels_max_fields { + attempts: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) + match_id: (Scalars['uuid'] | null) + match_lineup_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + side: (Scalars['String'] | null) + steam_id: (Scalars['bigint'] | null) + traded_deaths: (Scalars['Int'] | null) + wins: (Scalars['Int'] | null) + __typename: 'v_match_player_opening_duels_max_fields' +} + + +/** aggregate min on columns */ +export interface v_match_player_opening_duels_min_fields { + attempts: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) + match_id: (Scalars['uuid'] | null) + match_lineup_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + side: (Scalars['String'] | null) + steam_id: (Scalars['bigint'] | null) + traded_deaths: (Scalars['Int'] | null) + wins: (Scalars['Int'] | null) + __typename: 'v_match_player_opening_duels_min_fields' +} + + +/** select columns of table "v_match_player_opening_duels" */ +export type v_match_player_opening_duels_select_column = 'attempts' | 'deaths' | 'match_id' | 'match_lineup_id' | 'match_map_id' | 'side' | 'steam_id' | 'traded_deaths' | 'wins' + + +/** aggregate stddev on columns */ +export interface v_match_player_opening_duels_stddev_fields { + attempts: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + traded_deaths: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_match_player_opening_duels_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface v_match_player_opening_duels_stddev_pop_fields { + attempts: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + traded_deaths: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_match_player_opening_duels_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface v_match_player_opening_duels_stddev_samp_fields { + attempts: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + traded_deaths: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_match_player_opening_duels_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface v_match_player_opening_duels_sum_fields { + attempts: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + traded_deaths: (Scalars['Int'] | null) + wins: (Scalars['Int'] | null) + __typename: 'v_match_player_opening_duels_sum_fields' +} + + +/** aggregate var_pop on columns */ +export interface v_match_player_opening_duels_var_pop_fields { + attempts: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + traded_deaths: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_match_player_opening_duels_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface v_match_player_opening_duels_var_samp_fields { + attempts: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + traded_deaths: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_match_player_opening_duels_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface v_match_player_opening_duels_variance_fields { + attempts: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + traded_deaths: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_match_player_opening_duels_variance_fields' +} + + +/** columns and relationships of "v_player_arch_nemesis" */ +export interface v_player_arch_nemesis { + attacker_id: (Scalars['bigint'] | null) + kill_count: (Scalars['bigint'] | null) + /** An object relationship */ + nemsis: (players | null) + /** An object relationship */ + player: (players | null) + victim_id: (Scalars['bigint'] | null) + __typename: 'v_player_arch_nemesis' +} + + +/** aggregated selection of "v_player_arch_nemesis" */ +export interface v_player_arch_nemesis_aggregate { + aggregate: (v_player_arch_nemesis_aggregate_fields | null) + nodes: v_player_arch_nemesis[] + __typename: 'v_player_arch_nemesis_aggregate' +} + + +/** aggregate fields of "v_player_arch_nemesis" */ +export interface v_player_arch_nemesis_aggregate_fields { + avg: (v_player_arch_nemesis_avg_fields | null) + count: Scalars['Int'] + max: (v_player_arch_nemesis_max_fields | null) + min: (v_player_arch_nemesis_min_fields | null) + stddev: (v_player_arch_nemesis_stddev_fields | null) + stddev_pop: (v_player_arch_nemesis_stddev_pop_fields | null) + stddev_samp: (v_player_arch_nemesis_stddev_samp_fields | null) + sum: (v_player_arch_nemesis_sum_fields | null) + var_pop: (v_player_arch_nemesis_var_pop_fields | null) + var_samp: (v_player_arch_nemesis_var_samp_fields | null) + variance: (v_player_arch_nemesis_variance_fields | null) + __typename: 'v_player_arch_nemesis_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface v_player_arch_nemesis_avg_fields { + attacker_id: (Scalars['Float'] | null) + kill_count: (Scalars['Float'] | null) + victim_id: (Scalars['Float'] | null) + __typename: 'v_player_arch_nemesis_avg_fields' +} + + +/** aggregate max on columns */ +export interface v_player_arch_nemesis_max_fields { + attacker_id: (Scalars['bigint'] | null) + kill_count: (Scalars['bigint'] | null) + victim_id: (Scalars['bigint'] | null) + __typename: 'v_player_arch_nemesis_max_fields' +} + + +/** aggregate min on columns */ +export interface v_player_arch_nemesis_min_fields { + attacker_id: (Scalars['bigint'] | null) + kill_count: (Scalars['bigint'] | null) + victim_id: (Scalars['bigint'] | null) + __typename: 'v_player_arch_nemesis_min_fields' +} + + +/** select columns of table "v_player_arch_nemesis" */ +export type v_player_arch_nemesis_select_column = 'attacker_id' | 'kill_count' | 'victim_id' + + +/** aggregate stddev on columns */ +export interface v_player_arch_nemesis_stddev_fields { + attacker_id: (Scalars['Float'] | null) + kill_count: (Scalars['Float'] | null) + victim_id: (Scalars['Float'] | null) + __typename: 'v_player_arch_nemesis_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface v_player_arch_nemesis_stddev_pop_fields { + attacker_id: (Scalars['Float'] | null) + kill_count: (Scalars['Float'] | null) + victim_id: (Scalars['Float'] | null) + __typename: 'v_player_arch_nemesis_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface v_player_arch_nemesis_stddev_samp_fields { + attacker_id: (Scalars['Float'] | null) + kill_count: (Scalars['Float'] | null) + victim_id: (Scalars['Float'] | null) + __typename: 'v_player_arch_nemesis_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface v_player_arch_nemesis_sum_fields { + attacker_id: (Scalars['bigint'] | null) + kill_count: (Scalars['bigint'] | null) + victim_id: (Scalars['bigint'] | null) + __typename: 'v_player_arch_nemesis_sum_fields' +} + + +/** aggregate var_pop on columns */ +export interface v_player_arch_nemesis_var_pop_fields { + attacker_id: (Scalars['Float'] | null) + kill_count: (Scalars['Float'] | null) + victim_id: (Scalars['Float'] | null) + __typename: 'v_player_arch_nemesis_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface v_player_arch_nemesis_var_samp_fields { + attacker_id: (Scalars['Float'] | null) + kill_count: (Scalars['Float'] | null) + victim_id: (Scalars['Float'] | null) + __typename: 'v_player_arch_nemesis_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface v_player_arch_nemesis_variance_fields { + attacker_id: (Scalars['Float'] | null) + kill_count: (Scalars['Float'] | null) + victim_id: (Scalars['Float'] | null) + __typename: 'v_player_arch_nemesis_variance_fields' +} + + +/** columns and relationships of "v_player_damage" */ +export interface v_player_damage { + avg_damage_per_round: (Scalars['bigint'] | null) + /** An object relationship */ + player: (players | null) + player_steam_id: (Scalars['bigint'] | null) + total_damage: (Scalars['bigint'] | null) + total_rounds: (Scalars['bigint'] | null) + __typename: 'v_player_damage' +} + + +/** aggregated selection of "v_player_damage" */ +export interface v_player_damage_aggregate { + aggregate: (v_player_damage_aggregate_fields | null) + nodes: v_player_damage[] + __typename: 'v_player_damage_aggregate' +} + + +/** aggregate fields of "v_player_damage" */ +export interface v_player_damage_aggregate_fields { + avg: (v_player_damage_avg_fields | null) + count: Scalars['Int'] + max: (v_player_damage_max_fields | null) + min: (v_player_damage_min_fields | null) + stddev: (v_player_damage_stddev_fields | null) + stddev_pop: (v_player_damage_stddev_pop_fields | null) + stddev_samp: (v_player_damage_stddev_samp_fields | null) + sum: (v_player_damage_sum_fields | null) + var_pop: (v_player_damage_var_pop_fields | null) + var_samp: (v_player_damage_var_samp_fields | null) + variance: (v_player_damage_variance_fields | null) + __typename: 'v_player_damage_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface v_player_damage_avg_fields { + avg_damage_per_round: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + total_damage: (Scalars['Float'] | null) + total_rounds: (Scalars['Float'] | null) + __typename: 'v_player_damage_avg_fields' +} + + +/** aggregate max on columns */ +export interface v_player_damage_max_fields { + avg_damage_per_round: (Scalars['bigint'] | null) + player_steam_id: (Scalars['bigint'] | null) + total_damage: (Scalars['bigint'] | null) + total_rounds: (Scalars['bigint'] | null) + __typename: 'v_player_damage_max_fields' +} + + +/** aggregate min on columns */ +export interface v_player_damage_min_fields { + avg_damage_per_round: (Scalars['bigint'] | null) + player_steam_id: (Scalars['bigint'] | null) + total_damage: (Scalars['bigint'] | null) + total_rounds: (Scalars['bigint'] | null) + __typename: 'v_player_damage_min_fields' +} + + +/** select columns of table "v_player_damage" */ +export type v_player_damage_select_column = 'avg_damage_per_round' | 'player_steam_id' | 'total_damage' | 'total_rounds' + + +/** aggregate stddev on columns */ +export interface v_player_damage_stddev_fields { + avg_damage_per_round: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + total_damage: (Scalars['Float'] | null) + total_rounds: (Scalars['Float'] | null) + __typename: 'v_player_damage_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface v_player_damage_stddev_pop_fields { + avg_damage_per_round: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + total_damage: (Scalars['Float'] | null) + total_rounds: (Scalars['Float'] | null) + __typename: 'v_player_damage_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface v_player_damage_stddev_samp_fields { + avg_damage_per_round: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + total_damage: (Scalars['Float'] | null) + total_rounds: (Scalars['Float'] | null) + __typename: 'v_player_damage_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface v_player_damage_sum_fields { + avg_damage_per_round: (Scalars['bigint'] | null) + player_steam_id: (Scalars['bigint'] | null) + total_damage: (Scalars['bigint'] | null) + total_rounds: (Scalars['bigint'] | null) + __typename: 'v_player_damage_sum_fields' +} + + +/** aggregate var_pop on columns */ +export interface v_player_damage_var_pop_fields { + avg_damage_per_round: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + total_damage: (Scalars['Float'] | null) + total_rounds: (Scalars['Float'] | null) + __typename: 'v_player_damage_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface v_player_damage_var_samp_fields { + avg_damage_per_round: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + total_damage: (Scalars['Float'] | null) + total_rounds: (Scalars['Float'] | null) + __typename: 'v_player_damage_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface v_player_damage_variance_fields { + avg_damage_per_round: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + total_damage: (Scalars['Float'] | null) + total_rounds: (Scalars['Float'] | null) + __typename: 'v_player_damage_variance_fields' +} + + +/** columns and relationships of "v_player_elo" */ +export interface v_player_elo { + actual_score: (Scalars['float8'] | null) + assists: (Scalars['Int'] | null) + current_elo: (Scalars['Int'] | null) + damage: (Scalars['Int'] | null) + damage_percent: (Scalars['float8'] | null) + deaths: (Scalars['Int'] | null) + elo_change: (Scalars['Int'] | null) + expected_score: (Scalars['float8'] | null) + impact: (Scalars['float8'] | null) + k_factor: (Scalars['Int'] | null) + kda: (Scalars['float8'] | null) + kills: (Scalars['Int'] | null) + map_losses: (Scalars['Int'] | null) + map_wins: (Scalars['Int'] | null) + /** An object relationship */ + match: (matches | null) + match_created_at: (Scalars['timestamptz'] | null) + match_id: (Scalars['uuid'] | null) + match_result: (Scalars['String'] | null) + opponent_team_elo_avg: (Scalars['float8'] | null) + performance_multiplier: (Scalars['float8'] | null) + player_name: (Scalars['String'] | null) + player_steam_id: (Scalars['bigint'] | null) + player_team_elo_avg: (Scalars['float8'] | null) + rating_for_expected: (Scalars['float8'] | null) + season_id: (Scalars['uuid'] | null) + series_multiplier: (Scalars['Int'] | null) + team_avg_kda: (Scalars['float8'] | null) + type: (Scalars['String'] | null) + updated_elo: (Scalars['Int'] | null) + __typename: 'v_player_elo' +} + + +/** aggregated selection of "v_player_elo" */ +export interface v_player_elo_aggregate { + aggregate: (v_player_elo_aggregate_fields | null) + nodes: v_player_elo[] + __typename: 'v_player_elo_aggregate' +} + + +/** aggregate fields of "v_player_elo" */ +export interface v_player_elo_aggregate_fields { + avg: (v_player_elo_avg_fields | null) + count: Scalars['Int'] + max: (v_player_elo_max_fields | null) + min: (v_player_elo_min_fields | null) + stddev: (v_player_elo_stddev_fields | null) + stddev_pop: (v_player_elo_stddev_pop_fields | null) + stddev_samp: (v_player_elo_stddev_samp_fields | null) + sum: (v_player_elo_sum_fields | null) + var_pop: (v_player_elo_var_pop_fields | null) + var_samp: (v_player_elo_var_samp_fields | null) + variance: (v_player_elo_variance_fields | null) + __typename: 'v_player_elo_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface v_player_elo_avg_fields { + actual_score: (Scalars['Float'] | null) + assists: (Scalars['Float'] | null) + current_elo: (Scalars['Float'] | null) + damage: (Scalars['Float'] | null) + damage_percent: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + elo_change: (Scalars['Float'] | null) + expected_score: (Scalars['Float'] | null) + impact: (Scalars['Float'] | null) + k_factor: (Scalars['Float'] | null) + kda: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + map_losses: (Scalars['Float'] | null) + map_wins: (Scalars['Float'] | null) + opponent_team_elo_avg: (Scalars['Float'] | null) + performance_multiplier: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + player_team_elo_avg: (Scalars['Float'] | null) + 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_avg_fields' +} + + +/** aggregate max on columns */ +export interface v_player_elo_max_fields { + actual_score: (Scalars['float8'] | null) + assists: (Scalars['Int'] | null) + current_elo: (Scalars['Int'] | null) + damage: (Scalars['Int'] | null) + damage_percent: (Scalars['float8'] | null) + deaths: (Scalars['Int'] | null) + elo_change: (Scalars['Int'] | null) + expected_score: (Scalars['float8'] | null) + impact: (Scalars['float8'] | null) + k_factor: (Scalars['Int'] | null) + kda: (Scalars['float8'] | null) + kills: (Scalars['Int'] | null) + map_losses: (Scalars['Int'] | null) + map_wins: (Scalars['Int'] | null) + match_created_at: (Scalars['timestamptz'] | null) + match_id: (Scalars['uuid'] | null) + match_result: (Scalars['String'] | null) + opponent_team_elo_avg: (Scalars['float8'] | null) + performance_multiplier: (Scalars['float8'] | null) + player_name: (Scalars['String'] | null) + player_steam_id: (Scalars['bigint'] | null) + player_team_elo_avg: (Scalars['float8'] | null) + rating_for_expected: (Scalars['float8'] | null) + season_id: (Scalars['uuid'] | null) + series_multiplier: (Scalars['Int'] | null) + team_avg_kda: (Scalars['float8'] | null) + type: (Scalars['String'] | null) + updated_elo: (Scalars['Int'] | null) + __typename: 'v_player_elo_max_fields' +} + + +/** aggregate min on columns */ +export interface v_player_elo_min_fields { + actual_score: (Scalars['float8'] | null) + assists: (Scalars['Int'] | null) + current_elo: (Scalars['Int'] | null) + damage: (Scalars['Int'] | null) + damage_percent: (Scalars['float8'] | null) + deaths: (Scalars['Int'] | null) + elo_change: (Scalars['Int'] | null) + expected_score: (Scalars['float8'] | null) + impact: (Scalars['float8'] | null) + k_factor: (Scalars['Int'] | null) + kda: (Scalars['float8'] | null) + kills: (Scalars['Int'] | null) + map_losses: (Scalars['Int'] | null) + map_wins: (Scalars['Int'] | null) + match_created_at: (Scalars['timestamptz'] | null) + match_id: (Scalars['uuid'] | null) + match_result: (Scalars['String'] | null) + opponent_team_elo_avg: (Scalars['float8'] | null) + performance_multiplier: (Scalars['float8'] | null) + player_name: (Scalars['String'] | null) + player_steam_id: (Scalars['bigint'] | null) + player_team_elo_avg: (Scalars['float8'] | null) + rating_for_expected: (Scalars['float8'] | null) + season_id: (Scalars['uuid'] | null) + series_multiplier: (Scalars['Int'] | null) + team_avg_kda: (Scalars['float8'] | null) + type: (Scalars['String'] | null) + updated_elo: (Scalars['Int'] | null) + __typename: 'v_player_elo_min_fields' +} + + +/** select columns of table "v_player_elo" */ +export type v_player_elo_select_column = 'actual_score' | 'assists' | 'current_elo' | 'damage' | 'damage_percent' | 'deaths' | 'elo_change' | 'expected_score' | 'impact' | 'k_factor' | 'kda' | 'kills' | 'map_losses' | 'map_wins' | 'match_created_at' | 'match_id' | 'match_result' | 'opponent_team_elo_avg' | 'performance_multiplier' | 'player_name' | 'player_steam_id' | 'player_team_elo_avg' | 'rating_for_expected' | 'season_id' | 'series_multiplier' | 'team_avg_kda' | 'type' | 'updated_elo' + + +/** select "v_player_elo_aggregate_bool_exp_avg_arguments_columns" columns of table "v_player_elo" */ +export type v_player_elo_select_column_v_player_elo_aggregate_bool_exp_avg_arguments_columns = 'actual_score' | 'damage_percent' | 'expected_score' | 'impact' | 'kda' | 'opponent_team_elo_avg' | 'performance_multiplier' | 'player_team_elo_avg' | 'rating_for_expected' | 'team_avg_kda' + + +/** select "v_player_elo_aggregate_bool_exp_corr_arguments_columns" columns of table "v_player_elo" */ +export type v_player_elo_select_column_v_player_elo_aggregate_bool_exp_corr_arguments_columns = 'actual_score' | 'damage_percent' | 'expected_score' | 'impact' | 'kda' | 'opponent_team_elo_avg' | 'performance_multiplier' | 'player_team_elo_avg' | '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' +} + + +/** 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' +} + + +/** 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' +} + + +/** 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' +} + + +/** 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 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_match_head_to_head_stddev_fields { + attacked_steam_id: (Scalars['Float'] | null) + attacker_steam_id: (Scalars['Float'] | null) + damage_dealt: (Scalars['Float'] | null) + flash_count: (Scalars['Float'] | null) + headshot_kills: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + __typename: 'v_player_match_head_to_head_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface v_player_match_head_to_head_stddev_pop_fields { + attacked_steam_id: (Scalars['Float'] | null) + attacker_steam_id: (Scalars['Float'] | null) + damage_dealt: (Scalars['Float'] | null) + flash_count: (Scalars['Float'] | null) + headshot_kills: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + __typename: 'v_player_match_head_to_head_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface v_player_match_head_to_head_stddev_samp_fields { + attacked_steam_id: (Scalars['Float'] | null) + attacker_steam_id: (Scalars['Float'] | null) + damage_dealt: (Scalars['Float'] | null) + flash_count: (Scalars['Float'] | null) + headshot_kills: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + __typename: 'v_player_match_head_to_head_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface v_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_match_head_to_head_var_pop_fields { + attacked_steam_id: (Scalars['Float'] | null) + attacker_steam_id: (Scalars['Float'] | null) + damage_dealt: (Scalars['Float'] | null) + flash_count: (Scalars['Float'] | null) + headshot_kills: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + __typename: 'v_player_match_head_to_head_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface v_player_match_head_to_head_var_samp_fields { + attacked_steam_id: (Scalars['Float'] | null) + attacker_steam_id: (Scalars['Float'] | null) + damage_dealt: (Scalars['Float'] | null) + flash_count: (Scalars['Float'] | null) + headshot_kills: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + __typename: 'v_player_match_head_to_head_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface v_player_match_head_to_head_variance_fields { + attacked_steam_id: (Scalars['Float'] | null) + attacker_steam_id: (Scalars['Float'] | null) + damage_dealt: (Scalars['Float'] | null) + flash_count: (Scalars['Float'] | null) + headshot_kills: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + __typename: 'v_player_match_head_to_head_variance_fields' +} + + +/** columns and relationships of "v_player_match_map_hltv" */ +export interface v_player_match_map_hltv { + adr: (Scalars['numeric'] | null) + apr: (Scalars['numeric'] | null) + dpr: (Scalars['numeric'] | null) + hltv_rating: (Scalars['numeric'] | null) + kast_pct: (Scalars['numeric'] | null) + kpr: (Scalars['numeric'] | null) + /** An object relationship */ + match: (matches | null) + match_id: (Scalars['uuid'] | null) + /** An object relationship */ + match_map: (match_maps | null) + match_map_id: (Scalars['uuid'] | null) + /** An object relationship */ + player: (players | null) + rounds_played: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'v_player_match_map_hltv' +} + + +/** 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_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_match_map_hltv_max_fields | null) + min: (v_player_match_map_hltv_min_fields | null) + stddev: (v_player_match_map_hltv_stddev_fields | null) + stddev_pop: (v_player_match_map_hltv_stddev_pop_fields | null) + stddev_samp: (v_player_match_map_hltv_stddev_samp_fields | null) + sum: (v_player_match_map_hltv_sum_fields | null) + var_pop: (v_player_match_map_hltv_var_pop_fields | null) + var_samp: (v_player_match_map_hltv_var_samp_fields | null) + variance: (v_player_match_map_hltv_variance_fields | null) + __typename: 'v_player_match_map_hltv_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface v_player_match_map_hltv_avg_fields { + adr: (Scalars['Float'] | null) + apr: (Scalars['Float'] | null) + dpr: (Scalars['Float'] | null) + hltv_rating: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + kpr: (Scalars['Float'] | null) + rounds_played: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'v_player_match_map_hltv_avg_fields' +} + + +/** aggregate max on columns */ +export interface v_player_match_map_hltv_max_fields { + adr: (Scalars['numeric'] | null) + apr: (Scalars['numeric'] | null) + dpr: (Scalars['numeric'] | null) + hltv_rating: (Scalars['numeric'] | null) + kast_pct: (Scalars['numeric'] | null) + kpr: (Scalars['numeric'] | null) + match_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + rounds_played: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'v_player_match_map_hltv_max_fields' +} + + +/** aggregate min on columns */ +export interface v_player_match_map_hltv_min_fields { + adr: (Scalars['numeric'] | null) + apr: (Scalars['numeric'] | null) + dpr: (Scalars['numeric'] | null) + hltv_rating: (Scalars['numeric'] | null) + kast_pct: (Scalars['numeric'] | null) + kpr: (Scalars['numeric'] | null) + match_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + rounds_played: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'v_player_match_map_hltv_min_fields' +} + + +/** 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_match_map_hltv_stddev_fields { + adr: (Scalars['Float'] | null) + apr: (Scalars['Float'] | null) + dpr: (Scalars['Float'] | null) + hltv_rating: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + kpr: (Scalars['Float'] | null) + rounds_played: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'v_player_match_map_hltv_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface v_player_match_map_hltv_stddev_pop_fields { + adr: (Scalars['Float'] | null) + apr: (Scalars['Float'] | null) + dpr: (Scalars['Float'] | null) + hltv_rating: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + kpr: (Scalars['Float'] | null) + rounds_played: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'v_player_match_map_hltv_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface v_player_match_map_hltv_stddev_samp_fields { + adr: (Scalars['Float'] | null) + apr: (Scalars['Float'] | null) + dpr: (Scalars['Float'] | null) + hltv_rating: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + kpr: (Scalars['Float'] | null) + rounds_played: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'v_player_match_map_hltv_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface v_player_match_map_hltv_sum_fields { + adr: (Scalars['numeric'] | null) + apr: (Scalars['numeric'] | null) + dpr: (Scalars['numeric'] | null) + hltv_rating: (Scalars['numeric'] | null) + kast_pct: (Scalars['numeric'] | null) + kpr: (Scalars['numeric'] | null) + rounds_played: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'v_player_match_map_hltv_sum_fields' +} + + +/** aggregate var_pop on columns */ +export interface v_player_match_map_hltv_var_pop_fields { + adr: (Scalars['Float'] | null) + apr: (Scalars['Float'] | null) + dpr: (Scalars['Float'] | null) + hltv_rating: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + kpr: (Scalars['Float'] | null) + rounds_played: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'v_player_match_map_hltv_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface v_player_match_map_hltv_var_samp_fields { + adr: (Scalars['Float'] | null) + apr: (Scalars['Float'] | null) + dpr: (Scalars['Float'] | null) + hltv_rating: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + kpr: (Scalars['Float'] | null) + rounds_played: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'v_player_match_map_hltv_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface v_player_match_map_hltv_variance_fields { + adr: (Scalars['Float'] | null) + apr: (Scalars['Float'] | null) + dpr: (Scalars['Float'] | null) + hltv_rating: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + kpr: (Scalars['Float'] | null) + rounds_played: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'v_player_match_map_hltv_variance_fields' +} + + +/** columns and relationships of "v_player_match_map_roles" */ +export interface v_player_match_map_roles { + adr: (Scalars['numeric'] | null) + awp_kills: (Scalars['Int'] | null) + awp_share: (Scalars['numeric'] | null) + deaths: (Scalars['Int'] | null) + dpr: (Scalars['numeric'] | null) + entry_rate: (Scalars['numeric'] | null) + flash_assists: (Scalars['Int'] | null) + hltv_rating: (Scalars['numeric'] | null) + kast_pct: (Scalars['numeric'] | null) + kills: (Scalars['Int'] | null) + kpr: (Scalars['numeric'] | null) + lineup_id: (Scalars['uuid'] | null) + /** An object relationship */ + match: (matches | null) + match_id: (Scalars['uuid'] | null) + /** An object relationship */ + match_map: (match_maps | null) + match_map_id: (Scalars['uuid'] | null) + open_deaths: (Scalars['Int'] | null) + open_kills: (Scalars['Int'] | null) + opening_attempts: (Scalars['Int'] | null) + /** An object relationship */ + player: (players | null) + role: (Scalars['String'] | null) + rounds: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + support_idx: (Scalars['numeric'] | null) + total_kills: (Scalars['Int'] | null) + trade_kill_successes: (Scalars['Int'] | null) + traded_death_successes: (Scalars['Int'] | null) + util_damage: (Scalars['Int'] | null) + __typename: 'v_player_match_map_roles' +} + + +/** aggregated selection of "v_player_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_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_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_match_map_roles_avg_fields { + adr: (Scalars['Float'] | null) + awp_kills: (Scalars['Float'] | null) + awp_share: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + dpr: (Scalars['Float'] | null) + entry_rate: (Scalars['Float'] | null) + flash_assists: (Scalars['Float'] | null) + hltv_rating: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + kpr: (Scalars['Float'] | null) + open_deaths: (Scalars['Float'] | null) + open_kills: (Scalars['Float'] | null) + opening_attempts: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + support_idx: (Scalars['Float'] | null) + total_kills: (Scalars['Float'] | null) + trade_kill_successes: (Scalars['Float'] | null) + traded_death_successes: (Scalars['Float'] | null) + util_damage: (Scalars['Float'] | null) + __typename: 'v_player_match_map_roles_avg_fields' +} + + +/** aggregate max on columns */ +export interface v_player_match_map_roles_max_fields { + adr: (Scalars['numeric'] | null) + awp_kills: (Scalars['Int'] | null) + awp_share: (Scalars['numeric'] | null) + deaths: (Scalars['Int'] | null) + dpr: (Scalars['numeric'] | null) + entry_rate: (Scalars['numeric'] | null) + flash_assists: (Scalars['Int'] | null) + hltv_rating: (Scalars['numeric'] | null) + kast_pct: (Scalars['numeric'] | null) + kills: (Scalars['Int'] | null) + kpr: (Scalars['numeric'] | null) + lineup_id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + open_deaths: (Scalars['Int'] | null) + open_kills: (Scalars['Int'] | null) + opening_attempts: (Scalars['Int'] | null) + role: (Scalars['String'] | null) + rounds: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + support_idx: (Scalars['numeric'] | null) + total_kills: (Scalars['Int'] | null) + trade_kill_successes: (Scalars['Int'] | null) + traded_death_successes: (Scalars['Int'] | null) + util_damage: (Scalars['Int'] | null) + __typename: 'v_player_match_map_roles_max_fields' +} + + +/** aggregate min on columns */ +export interface v_player_match_map_roles_min_fields { + adr: (Scalars['numeric'] | null) + awp_kills: (Scalars['Int'] | null) + awp_share: (Scalars['numeric'] | null) + deaths: (Scalars['Int'] | null) + dpr: (Scalars['numeric'] | null) + entry_rate: (Scalars['numeric'] | null) + flash_assists: (Scalars['Int'] | null) + hltv_rating: (Scalars['numeric'] | null) + kast_pct: (Scalars['numeric'] | null) + kills: (Scalars['Int'] | null) + kpr: (Scalars['numeric'] | null) + lineup_id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + open_deaths: (Scalars['Int'] | null) + open_kills: (Scalars['Int'] | null) + opening_attempts: (Scalars['Int'] | null) + role: (Scalars['String'] | null) + rounds: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + support_idx: (Scalars['numeric'] | null) + total_kills: (Scalars['Int'] | null) + trade_kill_successes: (Scalars['Int'] | null) + traded_death_successes: (Scalars['Int'] | null) + util_damage: (Scalars['Int'] | null) + __typename: 'v_player_match_map_roles_min_fields' +} + + +/** select columns of table "v_player_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_match_map_roles_stddev_fields { + adr: (Scalars['Float'] | null) + awp_kills: (Scalars['Float'] | null) + awp_share: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + dpr: (Scalars['Float'] | null) + entry_rate: (Scalars['Float'] | null) + flash_assists: (Scalars['Float'] | null) + hltv_rating: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + kpr: (Scalars['Float'] | null) + open_deaths: (Scalars['Float'] | null) + open_kills: (Scalars['Float'] | null) + opening_attempts: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + support_idx: (Scalars['Float'] | null) + total_kills: (Scalars['Float'] | null) + trade_kill_successes: (Scalars['Float'] | null) + traded_death_successes: (Scalars['Float'] | null) + util_damage: (Scalars['Float'] | null) + __typename: 'v_player_match_map_roles_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface v_player_match_map_roles_stddev_pop_fields { + adr: (Scalars['Float'] | null) + awp_kills: (Scalars['Float'] | null) + awp_share: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + dpr: (Scalars['Float'] | null) + entry_rate: (Scalars['Float'] | null) + flash_assists: (Scalars['Float'] | null) + hltv_rating: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + kpr: (Scalars['Float'] | null) + open_deaths: (Scalars['Float'] | null) + open_kills: (Scalars['Float'] | null) + opening_attempts: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + support_idx: (Scalars['Float'] | null) + total_kills: (Scalars['Float'] | null) + trade_kill_successes: (Scalars['Float'] | null) + traded_death_successes: (Scalars['Float'] | null) + util_damage: (Scalars['Float'] | null) + __typename: 'v_player_match_map_roles_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface v_player_match_map_roles_stddev_samp_fields { + adr: (Scalars['Float'] | null) + awp_kills: (Scalars['Float'] | null) + awp_share: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + dpr: (Scalars['Float'] | null) + entry_rate: (Scalars['Float'] | null) + flash_assists: (Scalars['Float'] | null) + hltv_rating: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + kpr: (Scalars['Float'] | null) + open_deaths: (Scalars['Float'] | null) + open_kills: (Scalars['Float'] | null) + opening_attempts: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + support_idx: (Scalars['Float'] | null) + total_kills: (Scalars['Float'] | null) + trade_kill_successes: (Scalars['Float'] | null) + traded_death_successes: (Scalars['Float'] | null) + util_damage: (Scalars['Float'] | null) + __typename: 'v_player_match_map_roles_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface v_player_match_map_roles_sum_fields { + adr: (Scalars['numeric'] | null) + awp_kills: (Scalars['Int'] | null) + awp_share: (Scalars['numeric'] | null) + deaths: (Scalars['Int'] | null) + dpr: (Scalars['numeric'] | null) + entry_rate: (Scalars['numeric'] | null) + flash_assists: (Scalars['Int'] | null) + hltv_rating: (Scalars['numeric'] | null) + kast_pct: (Scalars['numeric'] | null) + kills: (Scalars['Int'] | null) + kpr: (Scalars['numeric'] | null) + open_deaths: (Scalars['Int'] | null) + open_kills: (Scalars['Int'] | null) + opening_attempts: (Scalars['Int'] | null) + rounds: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + support_idx: (Scalars['numeric'] | null) + total_kills: (Scalars['Int'] | null) + trade_kill_successes: (Scalars['Int'] | null) + traded_death_successes: (Scalars['Int'] | null) + util_damage: (Scalars['Int'] | null) + __typename: 'v_player_match_map_roles_sum_fields' +} + + +/** aggregate var_pop on columns */ +export interface v_player_match_map_roles_var_pop_fields { + adr: (Scalars['Float'] | null) + awp_kills: (Scalars['Float'] | null) + awp_share: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + dpr: (Scalars['Float'] | null) + entry_rate: (Scalars['Float'] | null) + flash_assists: (Scalars['Float'] | null) + hltv_rating: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + kpr: (Scalars['Float'] | null) + open_deaths: (Scalars['Float'] | null) + open_kills: (Scalars['Float'] | null) + opening_attempts: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + support_idx: (Scalars['Float'] | null) + total_kills: (Scalars['Float'] | null) + trade_kill_successes: (Scalars['Float'] | null) + traded_death_successes: (Scalars['Float'] | null) + util_damage: (Scalars['Float'] | null) + __typename: 'v_player_match_map_roles_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface v_player_match_map_roles_var_samp_fields { + adr: (Scalars['Float'] | null) + awp_kills: (Scalars['Float'] | null) + awp_share: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + dpr: (Scalars['Float'] | null) + entry_rate: (Scalars['Float'] | null) + flash_assists: (Scalars['Float'] | null) + hltv_rating: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + kpr: (Scalars['Float'] | null) + open_deaths: (Scalars['Float'] | null) + open_kills: (Scalars['Float'] | null) + opening_attempts: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + support_idx: (Scalars['Float'] | null) + total_kills: (Scalars['Float'] | null) + trade_kill_successes: (Scalars['Float'] | null) + traded_death_successes: (Scalars['Float'] | null) + util_damage: (Scalars['Float'] | null) + __typename: 'v_player_match_map_roles_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface v_player_match_map_roles_variance_fields { + adr: (Scalars['Float'] | null) + awp_kills: (Scalars['Float'] | null) + awp_share: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + dpr: (Scalars['Float'] | null) + entry_rate: (Scalars['Float'] | null) + flash_assists: (Scalars['Float'] | null) + hltv_rating: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + kpr: (Scalars['Float'] | null) + open_deaths: (Scalars['Float'] | null) + open_kills: (Scalars['Float'] | null) + opening_attempts: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + support_idx: (Scalars['Float'] | null) + total_kills: (Scalars['Float'] | null) + trade_kill_successes: (Scalars['Float'] | null) + traded_death_successes: (Scalars['Float'] | null) + util_damage: (Scalars['Float'] | null) + __typename: 'v_player_match_map_roles_variance_fields' +} + + +/** columns and relationships of "v_player_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) + 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_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_performance" */ +export interface v_player_match_performance_aggregate_fields { + avg: (v_player_match_performance_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' +} + + +/** aggregate avg on columns */ +export interface v_player_match_performance_avg_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_player_match_performance_avg_fields' +} + + +/** aggregate max on columns */ +export interface v_player_match_performance_max_fields { + assists: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) + kills: (Scalars['Int'] | null) + map_id: (Scalars['uuid'] | null) + match_created_at: (Scalars['timestamptz'] | null) + match_id: (Scalars['uuid'] | null) + match_result: (Scalars['String'] | null) + player_steam_id: (Scalars['bigint'] | null) + source: (Scalars['String'] | null) + type: (Scalars['String'] | null) + __typename: 'v_player_match_performance_max_fields' +} + + +/** aggregate min on columns */ +export interface v_player_match_performance_min_fields { + assists: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) + kills: (Scalars['Int'] | null) + map_id: (Scalars['uuid'] | null) + match_created_at: (Scalars['timestamptz'] | null) + match_id: (Scalars['uuid'] | null) + match_result: (Scalars['String'] | null) + player_steam_id: (Scalars['bigint'] | null) + source: (Scalars['String'] | null) + type: (Scalars['String'] | null) + __typename: 'v_player_match_performance_min_fields' +} + + +/** 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_performance_stddev_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_player_match_performance_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface v_player_match_performance_stddev_pop_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_player_match_performance_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface v_player_match_performance_stddev_samp_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_player_match_performance_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface v_player_match_performance_sum_fields { + assists: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) + kills: (Scalars['Int'] | null) + player_steam_id: (Scalars['bigint'] | null) + __typename: 'v_player_match_performance_sum_fields' +} + + +/** aggregate var_pop on columns */ +export interface v_player_match_performance_var_pop_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_player_match_performance_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface v_player_match_performance_var_samp_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_player_match_performance_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface v_player_match_performance_variance_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_player_match_performance_variance_fields' +} + + +/** 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' +} + + +/** 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_rating" */ +export interface v_player_match_rating_aggregate_fields { + avg: (v_player_match_rating_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' +} + + +/** 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' +} + + +/** 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' +} + + +/** 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' +} + + +/** 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_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' +} + + +/** 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' +} + + +/** 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' +} + + +/** 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' +} + + +/** 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' +} + + +/** 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' +} + + +/** 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' +} + + +/** 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 */ + partner: (players | null) + partner_steam_id: (Scalars['bigint'] | null) + /** An object relationship */ + player: (players | null) + steam_id: (Scalars['bigint'] | null) + wins_together: (Scalars['Int'] | null) + __typename: 'v_player_queue_partners' +} + + +/** 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_queue_partners" */ +export interface v_player_queue_partners_aggregate_fields { + avg: (v_player_queue_partners_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' +} + + +/** 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' +} + + +/** 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' +} + + +/** 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' +} + + +/** 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_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' +} + + +/** 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' +} + + +/** 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' +} + + +/** 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' +} + + +/** 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' +} + + +/** 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' +} + + +/** 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' +} + + +/** 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' +} + + +/** 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_weapon_damage" */ +export interface v_player_weapon_damage_aggregate_fields { + avg: (v_player_weapon_damage_avg_fields | null) + count: Scalars['Int'] + max: (v_player_weapon_damage_max_fields | null) + min: (v_player_weapon_damage_min_fields | null) + stddev: (v_player_weapon_damage_stddev_fields | null) + stddev_pop: (v_player_weapon_damage_stddev_pop_fields | null) + stddev_samp: (v_player_weapon_damage_stddev_samp_fields | null) + sum: (v_player_weapon_damage_sum_fields | null) + var_pop: (v_player_weapon_damage_var_pop_fields | null) + var_samp: (v_player_weapon_damage_var_samp_fields | null) + variance: (v_player_weapon_damage_variance_fields | null) + __typename: 'v_player_weapon_damage_aggregate_fields' +} + + +/** 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' +} + + +/** 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' +} + + +/** aggregate min on columns */ +export interface v_player_weapon_damage_min_fields { + damage: (Scalars['bigint'] | null) + hits: (Scalars['bigint'] | null) + player_steam_id: (Scalars['bigint'] | null) + source: (Scalars['String'] | null) + type: (Scalars['String'] | null) + with: (Scalars['String'] | null) + __typename: 'v_player_weapon_damage_min_fields' +} + + +/** select columns of table "v_player_weapon_damage" */ +export type v_player_weapon_damage_select_column = 'damage' | 'hits' | 'player_steam_id' | 'source' | 'type' | 'with' + + +/** aggregate stddev on columns */ +export interface v_player_weapon_damage_stddev_fields { + damage: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_player_weapon_damage_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface v_player_weapon_damage_stddev_pop_fields { + damage: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_player_weapon_damage_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface v_player_weapon_damage_stddev_samp_fields { + damage: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_player_weapon_damage_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface v_player_weapon_damage_sum_fields { + damage: (Scalars['bigint'] | null) + hits: (Scalars['bigint'] | null) + player_steam_id: (Scalars['bigint'] | null) + __typename: 'v_player_weapon_damage_sum_fields' +} + + +/** aggregate var_pop on columns */ +export interface v_player_weapon_damage_var_pop_fields { + damage: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_player_weapon_damage_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface v_player_weapon_damage_var_samp_fields { + damage: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_player_weapon_damage_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface v_player_weapon_damage_variance_fields { + damage: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_player_weapon_damage_variance_fields' +} + + +/** columns and relationships of "v_player_weapon_kills" */ +export interface v_player_weapon_kills { + kill_count: (Scalars['bigint'] | null) + player_steam_id: (Scalars['bigint'] | null) + rounds: (Scalars['bigint'] | null) + source: (Scalars['String'] | null) + type: (Scalars['String'] | null) + with: (Scalars['String'] | null) + __typename: 'v_player_weapon_kills' +} + + +/** aggregated selection of "v_player_weapon_kills" */ +export interface v_player_weapon_kills_aggregate { + aggregate: (v_player_weapon_kills_aggregate_fields | null) + nodes: v_player_weapon_kills[] + __typename: 'v_player_weapon_kills_aggregate' +} + + +/** aggregate fields of "v_player_weapon_kills" */ +export interface v_player_weapon_kills_aggregate_fields { + avg: (v_player_weapon_kills_avg_fields | null) + count: Scalars['Int'] + max: (v_player_weapon_kills_max_fields | null) + min: (v_player_weapon_kills_min_fields | null) + stddev: (v_player_weapon_kills_stddev_fields | null) + stddev_pop: (v_player_weapon_kills_stddev_pop_fields | null) + stddev_samp: (v_player_weapon_kills_stddev_samp_fields | null) + sum: (v_player_weapon_kills_sum_fields | null) + var_pop: (v_player_weapon_kills_var_pop_fields | null) + var_samp: (v_player_weapon_kills_var_samp_fields | null) + variance: (v_player_weapon_kills_variance_fields | null) + __typename: 'v_player_weapon_kills_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface v_player_weapon_kills_avg_fields { + kill_count: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + __typename: 'v_player_weapon_kills_avg_fields' +} + + +/** aggregate max on columns */ +export interface v_player_weapon_kills_max_fields { + kill_count: (Scalars['bigint'] | null) + player_steam_id: (Scalars['bigint'] | null) + rounds: (Scalars['bigint'] | null) + source: (Scalars['String'] | null) + type: (Scalars['String'] | null) + with: (Scalars['String'] | null) + __typename: 'v_player_weapon_kills_max_fields' +} + + +/** aggregate min on columns */ +export interface v_player_weapon_kills_min_fields { + kill_count: (Scalars['bigint'] | null) + player_steam_id: (Scalars['bigint'] | null) + rounds: (Scalars['bigint'] | null) + source: (Scalars['String'] | null) + type: (Scalars['String'] | null) + with: (Scalars['String'] | null) + __typename: 'v_player_weapon_kills_min_fields' +} + + +/** select columns of table "v_player_weapon_kills" */ +export type v_player_weapon_kills_select_column = 'kill_count' | 'player_steam_id' | 'rounds' | 'source' | 'type' | 'with' + + +/** aggregate stddev on columns */ +export interface v_player_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_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_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_weapon_kills_sum_fields { + kill_count: (Scalars['bigint'] | null) + player_steam_id: (Scalars['bigint'] | null) + rounds: (Scalars['bigint'] | null) + __typename: 'v_player_weapon_kills_sum_fields' +} + + +/** aggregate var_pop on columns */ +export interface v_player_weapon_kills_var_pop_fields { + kill_count: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + __typename: 'v_player_weapon_kills_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface v_player_weapon_kills_var_samp_fields { + kill_count: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + __typename: 'v_player_weapon_kills_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface v_player_weapon_kills_variance_fields { + kill_count: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + __typename: 'v_player_weapon_kills_variance_fields' +} + + +/** columns and relationships of "v_pool_maps" */ +export interface v_pool_maps { + active_pool: (Scalars['Boolean'] | null) + id: (Scalars['uuid'] | null) + label: (Scalars['String'] | null) + /** An object relationship */ + map_pool: (map_pools | null) + map_pool_id: (Scalars['uuid'] | null) + name: (Scalars['String'] | null) + patch: (Scalars['String'] | null) + poster: (Scalars['String'] | null) + type: (Scalars['String'] | null) + workshop_map_id: (Scalars['String'] | null) + __typename: 'v_pool_maps' +} + + +/** aggregated selection of "v_pool_maps" */ +export interface v_pool_maps_aggregate { + aggregate: (v_pool_maps_aggregate_fields | null) + nodes: v_pool_maps[] + __typename: 'v_pool_maps_aggregate' +} + + +/** aggregate fields of "v_pool_maps" */ +export interface v_pool_maps_aggregate_fields { + count: Scalars['Int'] + max: (v_pool_maps_max_fields | null) + min: (v_pool_maps_min_fields | null) + __typename: 'v_pool_maps_aggregate_fields' +} + + +/** aggregate max on columns */ +export interface v_pool_maps_max_fields { + id: (Scalars['uuid'] | null) + label: (Scalars['String'] | null) + map_pool_id: (Scalars['uuid'] | null) + name: (Scalars['String'] | null) + patch: (Scalars['String'] | null) + poster: (Scalars['String'] | null) + type: (Scalars['String'] | null) + workshop_map_id: (Scalars['String'] | null) + __typename: 'v_pool_maps_max_fields' +} + + +/** aggregate min on columns */ +export interface v_pool_maps_min_fields { + id: (Scalars['uuid'] | null) + label: (Scalars['String'] | null) + map_pool_id: (Scalars['uuid'] | null) + name: (Scalars['String'] | null) + patch: (Scalars['String'] | null) + poster: (Scalars['String'] | null) + type: (Scalars['String'] | null) + workshop_map_id: (Scalars['String'] | null) + __typename: 'v_pool_maps_min_fields' +} + + +/** response of any mutation on the table "v_pool_maps" */ +export interface v_pool_maps_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: v_pool_maps[] + __typename: 'v_pool_maps_mutation_response' +} + + +/** select columns of table "v_pool_maps" */ +export type v_pool_maps_select_column = 'active_pool' | 'id' | 'label' | 'map_pool_id' | 'name' | 'patch' | 'poster' | 'type' | 'workshop_map_id' + + +/** select "v_pool_maps_aggregate_bool_exp_bool_and_arguments_columns" columns of table "v_pool_maps" */ +export type v_pool_maps_select_column_v_pool_maps_aggregate_bool_exp_bool_and_arguments_columns = 'active_pool' + + +/** select "v_pool_maps_aggregate_bool_exp_bool_or_arguments_columns" columns of table "v_pool_maps" */ +export type v_pool_maps_select_column_v_pool_maps_aggregate_bool_exp_bool_or_arguments_columns = 'active_pool' + + +/** columns and relationships of "v_steam_account_pool_status" */ +export interface v_steam_account_pool_status { + busy_accounts: (Scalars['Int'] | null) + free_accounts: (Scalars['Int'] | null) + id: (Scalars['Int'] | null) + total_accounts: (Scalars['Int'] | null) + __typename: 'v_steam_account_pool_status' +} + + +/** aggregated selection of "v_steam_account_pool_status" */ +export interface v_steam_account_pool_status_aggregate { + aggregate: (v_steam_account_pool_status_aggregate_fields | null) + nodes: v_steam_account_pool_status[] + __typename: 'v_steam_account_pool_status_aggregate' +} + + +/** aggregate fields of "v_steam_account_pool_status" */ +export interface v_steam_account_pool_status_aggregate_fields { + avg: (v_steam_account_pool_status_avg_fields | null) + count: Scalars['Int'] + max: (v_steam_account_pool_status_max_fields | null) + min: (v_steam_account_pool_status_min_fields | null) + stddev: (v_steam_account_pool_status_stddev_fields | null) + stddev_pop: (v_steam_account_pool_status_stddev_pop_fields | null) + stddev_samp: (v_steam_account_pool_status_stddev_samp_fields | null) + sum: (v_steam_account_pool_status_sum_fields | null) + var_pop: (v_steam_account_pool_status_var_pop_fields | null) + var_samp: (v_steam_account_pool_status_var_samp_fields | null) + variance: (v_steam_account_pool_status_variance_fields | null) + __typename: 'v_steam_account_pool_status_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface v_steam_account_pool_status_avg_fields { + busy_accounts: (Scalars['Float'] | null) + free_accounts: (Scalars['Float'] | null) + id: (Scalars['Float'] | null) + total_accounts: (Scalars['Float'] | null) + __typename: 'v_steam_account_pool_status_avg_fields' +} + + +/** aggregate max on columns */ +export interface v_steam_account_pool_status_max_fields { + busy_accounts: (Scalars['Int'] | null) + free_accounts: (Scalars['Int'] | null) + id: (Scalars['Int'] | null) + total_accounts: (Scalars['Int'] | null) + __typename: 'v_steam_account_pool_status_max_fields' +} + + +/** aggregate min on columns */ +export interface v_steam_account_pool_status_min_fields { + busy_accounts: (Scalars['Int'] | null) + free_accounts: (Scalars['Int'] | null) + id: (Scalars['Int'] | null) + total_accounts: (Scalars['Int'] | null) + __typename: 'v_steam_account_pool_status_min_fields' +} + + +/** select columns of table "v_steam_account_pool_status" */ +export type v_steam_account_pool_status_select_column = 'busy_accounts' | 'free_accounts' | 'id' | 'total_accounts' + + +/** aggregate stddev on columns */ +export interface v_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_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_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_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_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_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_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_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 */ + team: (teams | null) + team_id: (Scalars['uuid'] | null) + __typename: 'v_team_ranks' +} + + +/** 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_team_ranks" */ +export interface v_team_ranks_aggregate_fields { + avg: (v_team_ranks_avg_fields | null) + count: Scalars['Int'] + max: (v_team_ranks_max_fields | null) + min: (v_team_ranks_min_fields | null) + stddev: (v_team_ranks_stddev_fields | null) + stddev_pop: (v_team_ranks_stddev_pop_fields | null) + stddev_samp: (v_team_ranks_stddev_samp_fields | null) + sum: (v_team_ranks_sum_fields | null) + var_pop: (v_team_ranks_var_pop_fields | null) + var_samp: (v_team_ranks_var_samp_fields | null) + variance: (v_team_ranks_variance_fields | null) + __typename: 'v_team_ranks_aggregate_fields' +} + + +/** 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' +} + + +/** 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' +} + + +/** 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' +} + + +/** 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_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_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_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_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_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_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_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_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_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_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' +} + + +/** 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' +} + + +/** 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' +} + + +/** 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' +} + + +/** 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_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_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_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_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_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_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_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_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_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_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' +} + + +/** 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' +} + + +/** 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_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_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' +} + + +/** 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_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_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_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_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_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_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_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_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' +} + + +/** 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_team_tournament_results" */ +export interface v_team_tournament_results_aggregate_fields { + avg: (v_team_tournament_results_avg_fields | null) + count: Scalars['Int'] + max: (v_team_tournament_results_max_fields | null) + min: (v_team_tournament_results_min_fields | null) + stddev: (v_team_tournament_results_stddev_fields | null) + stddev_pop: (v_team_tournament_results_stddev_pop_fields | null) + stddev_samp: (v_team_tournament_results_stddev_samp_fields | null) + sum: (v_team_tournament_results_sum_fields | null) + var_pop: (v_team_tournament_results_var_pop_fields | null) + var_samp: (v_team_tournament_results_var_samp_fields | null) + variance: (v_team_tournament_results_variance_fields | null) + __typename: 'v_team_tournament_results_aggregate_fields' +} + + +/** aggregate 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 max on columns */ +export interface v_team_tournament_results_max_fields { + head_to_head_match_wins: (Scalars['Int'] | null) + head_to_head_rounds_won: (Scalars['Int'] | null) + losses: (Scalars['Int'] | null) + maps_lost: (Scalars['Int'] | null) + maps_won: (Scalars['Int'] | null) + matches_played: (Scalars['Int'] | null) + matches_remaining: (Scalars['Int'] | null) + rounds_lost: (Scalars['Int'] | null) + rounds_won: (Scalars['Int'] | null) + team_kdr: (Scalars['float8'] | null) + total_deaths: (Scalars['Int'] | null) + total_kills: (Scalars['Int'] | null) + tournament_id: (Scalars['uuid'] | null) + tournament_team_id: (Scalars['uuid'] | null) + wins: (Scalars['Int'] | null) + __typename: 'v_team_tournament_results_max_fields' +} + + +/** aggregate 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_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_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' + + +/** 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' + + +/** 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' + + +/** 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' + + +/** 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' + + +/** select "v_team_tournament_results_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "v_team_tournament_results" */ +export type v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_stddev_samp_arguments_columns = 'team_kdr' + + +/** select "v_team_tournament_results_aggregate_bool_exp_sum_arguments_columns" columns of table "v_team_tournament_results" */ +export type v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_sum_arguments_columns = 'team_kdr' + + +/** select "v_team_tournament_results_aggregate_bool_exp_var_samp_arguments_columns" columns of table "v_team_tournament_results" */ +export type v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_var_samp_arguments_columns = 'team_kdr' + + +/** aggregate stddev on columns */ +export interface v_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_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_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_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_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_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_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_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 "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_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' +} + + +/** aggregate avg on columns */ +export interface v_tournament_player_stats_avg_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_tournament_player_stats_avg_fields' +} + + +/** aggregate max on columns */ +export interface v_tournament_player_stats_max_fields { + assists: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) + headshot_percentage: (Scalars['float8'] | null) + headshots: (Scalars['Int'] | null) + kdr: (Scalars['float8'] | null) + kills: (Scalars['Int'] | null) + matches_played: (Scalars['Int'] | null) + player_steam_id: (Scalars['bigint'] | null) + tournament_id: (Scalars['uuid'] | null) + __typename: 'v_tournament_player_stats_max_fields' +} + + +/** aggregate 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' +} + + +/** 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_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_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_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_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_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_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_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 + +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 +} + +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 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 + __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 + 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 +} + +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 +} + + +/** 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)} + +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']} + +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)} + +export interface ConnectionByStateGenqlSelection{ + count?: boolean | number + state?: boolean | number + wait_event_type?: boolean | number + waiting_count?: 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 + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface CreateClipRenderOutputGenqlSelection{ + job_id?: boolean | number + success?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface CreateDraftGameOutputGenqlSelection{ + draftGameId?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + + +/** 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 +} + +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 +} + +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 +} + +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 +} + + +/** 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 +} + +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 +} + +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 +} + +export interface MapCalloutSyncOutputGenqlSelection{ + callouts?: boolean | number + maps?: 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 + __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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +export interface ReparseAllStartedOutputGenqlSelection{ + running?: boolean | number + success?: 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 + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface SanctionResultGenqlSelection{ + enforced?: boolean | number + id?: boolean | number + message?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +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)} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + + +/** 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)} + + +/** Boolean expression to compare columns of type "String". All fields are combined with logical 'AND'. */ +export interface String_comparison_exp {_eq?: (Scalars['String'] | null),_gt?: (Scalars['String'] | null),_gte?: (Scalars['String'] | null), +/** does the column match the given case-insensitive pattern */ +_ilike?: (Scalars['String'] | null),_in?: (Scalars['String'][] | null), +/** does the column match the given POSIX regular expression, case insensitive */ +_iregex?: (Scalars['String'] | null),_is_null?: (Scalars['Boolean'] | null), +/** does the column match the given pattern */ +_like?: (Scalars['String'] | null),_lt?: (Scalars['String'] | null),_lte?: (Scalars['String'] | null),_neq?: (Scalars['String'] | null), +/** does the column NOT match the given case-insensitive pattern */ +_nilike?: (Scalars['String'] | null),_nin?: (Scalars['String'][] | null), +/** does the column NOT match the given POSIX regular expression, case insensitive */ +_niregex?: (Scalars['String'] | null), +/** does the column NOT match the given pattern */ +_nlike?: (Scalars['String'] | null), +/** does the column NOT match the given POSIX regular expression, case sensitive */ +_nregex?: (Scalars['String'] | null), +/** does the column NOT match the given SQL regular expression */ +_nsimilar?: (Scalars['String'] | null), +/** does the column match the given POSIX regular expression, case sensitive */ +_regex?: (Scalars['String'] | null), +/** does the column match the given SQL regular expression */ +_similar?: (Scalars['String'] | null)} + +export interface SuccessOutputGenqlSelection{ + success?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface 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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 +} + +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 + utility?: TelemetryUtilityTotalsGenqlSelection + utilitySources?: TelemetryUtilitySourceCountGenqlSelection + utilityTypes?: TelemetryUtilityTypeCountGenqlSelection + versions?: TelemetryVersionCountGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface TelemetryUtilitySourceCountGenqlSelection{ + lineups?: boolean | number + source?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface TelemetryUtilityTotalsGenqlSelection{ + archived?: boolean | number + attempts?: boolean | number + authors?: boolean | number + collections?: boolean | number + demoThrows?: boolean | number + demosMined?: boolean | number + driftFlagged?: boolean | number + driftScans?: boolean | number + favorites?: boolean | number + hosts?: boolean | number + lineups?: boolean | number + maps?: boolean | number + mastered?: boolean | number + metaLineups?: boolean | number + month?: boolean | number + pendingReview?: boolean | number + playbookSteps?: boolean | number + playbooks?: boolean | number + practicing?: boolean | number + previews?: boolean | number + private?: boolean | number + public?: boolean | number + repairs?: boolean | number + reported?: boolean | number + sessions?: boolean | number + sessionsFailed?: boolean | number + sessionsMonth?: boolean | number + sessionsWeek?: boolean | number + successes?: boolean | number + team?: boolean | number + verified?: boolean | number + votes?: boolean | number + week?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface TelemetryUtilityTypeCountGenqlSelection{ + lineups?: boolean | number + type?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +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 +} + +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 +} + +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 TournamentDraftOutputGenqlSelection{ + teams_created?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface TournamentInviteCodeOutputGenqlSelection{ + code?: boolean | number + 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 +} + +export interface UtilityBlockingOutputGenqlSelection{ + degraded?: boolean | number + message?: boolean | number + results?: UtilityBlockingResultGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface UtilityBlockingResultGenqlSelection{ + blocked?: boolean | number + depth?: boolean | number + transmittance?: boolean | number + utility_lineup_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface UtilityCalibrationOutputGenqlSelection{ + detail?: boolean | number + ready?: boolean | number + status?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface UtilityDriftScanOutputGenqlSelection{ + lineups?: boolean | number + scan_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface UtilityDrillLoadOutputGenqlSelection{ + map_name?: boolean | number + queued?: boolean | number + reason?: boolean | number + sent?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface UtilityImportErrorGenqlSelection{ + external_id?: boolean | number + index?: boolean | number + reason?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface UtilityImportOutputGenqlSelection{ + dry_run?: boolean | number + errors?: UtilityImportErrorGenqlSelection + failed?: boolean | number + imported?: boolean | number + total?: boolean | number + updated?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface UtilityLaunchSeedBackfillOutputGenqlSelection{ + done?: boolean | number + scanned?: boolean | number + seeded?: boolean | number + skipped?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface UtilityLineupOutputGenqlSelection{ + id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface UtilityLoadOutputGenqlSelection{ + map_name?: boolean | number + reason?: boolean | number + sent?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface UtilityMissPatternOutputGenqlSelection{ + analysed?: boolean | number + bias?: boolean | number + mean_along?: boolean | number + mean_lateral?: boolean | number + mean_vertical?: boolean | number + message?: boolean | number + players?: boolean | number + samples?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface UtilityOneWayOutputGenqlSelection{ + degraded?: boolean | number + message?: boolean | number + results?: UtilityOneWayResultGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface UtilityOneWayResultGenqlSelection{ + cause?: boolean | number + confidence?: boolean | number + contested?: boolean | number + favors?: boolean | number + index?: boolean | number + one_way?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface UtilityPlaybookCoverageOutputGenqlSelection{ + degraded?: boolean | number + message?: boolean | number + results?: UtilityPlaybookCoverageResultGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface UtilityPlaybookCoverageResultGenqlSelection{ + by_step?: boolean | number + covered?: boolean | number + depth?: boolean | number + index?: boolean | number + transmittance?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface UtilityPlaybookOutputGenqlSelection{ + id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface UtilityPlaybookStepInput {assigned_steam_id?: (Scalars['String'] | null),note?: (Scalars['String'] | null),offset_ms?: (Scalars['Int'] | null),utility_lineup_id: Scalars['uuid']} + +export interface UtilityPracticeMapChangeOutputGenqlSelection{ + map_name?: boolean | number + queued?: boolean | number + success?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface UtilityPracticePlanEntryGenqlSelection{ + attempts?: boolean | number + difficulty?: boolean | number + global_attempts?: boolean | number + global_landing_rate?: boolean | number + global_players?: boolean | number + mastered?: boolean | number + meta_throwers?: boolean | number + priority?: boolean | number + reason?: boolean | number + successes?: boolean | number + utility_lineup_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface UtilityPracticePlanOutputGenqlSelection{ + analysed?: boolean | number + entries?: UtilityPracticePlanEntryGenqlSelection + message?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface UtilityPracticeServerGenqlSelection{ + held_by?: boolean | number + id?: boolean | number + in_use?: boolean | number + label?: boolean | number + region?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface UtilityPracticeServersOutputGenqlSelection{ + servers?: UtilityPracticeServerGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface UtilityPracticeSessionOutputGenqlSelection{ + id?: boolean | number + invite_code?: boolean | number + match_id?: boolean | number + status?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface UtilityPracticeWhereOutputGenqlSelection{ + map_name?: boolean | number + on_server?: boolean | number + session_id?: boolean | number + switching?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface UtilityPurgeOutputGenqlSelection{ + dry_run?: boolean | number + lineups?: boolean | number + origin_source?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface UtilityRemineOutputGenqlSelection{ + demos?: boolean | number + done?: boolean | number + throws?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface UtilityRenderClearOutputGenqlSelection{ + cleared?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface UtilityRenderQueueOutputGenqlSelection{ + reason?: boolean | number + render_id?: boolean | number + status?: boolean | number + success?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface UtilityScratchLineupInput {client_id: Scalars['String'],eye_z: Scalars['Float'],land_x?: (Scalars['Float'] | null),land_y?: (Scalars['Float'] | null),land_z?: (Scalars['Float'] | null),map_name: Scalars['String'],name: Scalars['String'],origin_x: Scalars['Float'],origin_y: Scalars['Float'],origin_z: Scalars['Float'],side: Scalars['String'],technique: Scalars['String'],throw_strength: Scalars['String'],utility_type: Scalars['String'],view_pitch: Scalars['Float'],view_yaw: Scalars['Float']} + +export interface UtilitySightlineOutputGenqlSelection{ + degraded?: boolean | number + message?: boolean | number + results?: UtilitySightlineResultGenqlSelection + threshold?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface UtilitySightlinePairInput {from_x: Scalars['Float'],from_y: Scalars['Float'],from_z: Scalars['Float'],to_x: Scalars['Float'],to_y: Scalars['Float'],to_z: Scalars['Float']} + +export interface UtilitySightlineResultGenqlSelection{ + blocked?: boolean | number + blocked_by?: boolean | number + depth?: boolean | number + index?: boolean | number + transmittance?: boolean | number + world_blocked?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface UtilitySolveOutputGenqlSelection{ + accepted?: boolean | number + message?: boolean | number + status?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface UtilityTeamUtilityEntryGenqlSelection{ + landed?: boolean | number + players?: boolean | number + thrown?: boolean | number + utility_lineup_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface UtilityTeamUtilityOutputGenqlSelection{ + analysed?: boolean | number + entries?: UtilityTeamUtilityEntryGenqlSelection + message?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface UtilityUtilityReportOutputGenqlSelection{ + analysed?: boolean | number + by_type?: UtilityUtilityTypeReportGenqlSelection + landed?: boolean | number + matched_lineups?: boolean | number + matched_meta?: boolean | number + message?: boolean | number + radius?: boolean | number + steam_id?: boolean | number + throws?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface UtilityUtilityTypeReportGenqlSelection{ + landed?: boolean | number + matched_lineups?: boolean | number + matched_meta?: boolean | number + throws?: boolean | number + utility_type?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface WatchDemoOutputGenqlSelection{ + match_map_id?: boolean | number + session_id?: boolean | number + stream_url?: boolean | number + success?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +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 +} + + +/** 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 +} + + +/** aggregated selection of "_map_pool" */ +export interface _map_pool_aggregateGenqlSelection{ + aggregate?: _map_pool_aggregate_fieldsGenqlSelection + nodes?: _map_poolGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "_map_pool" */ +export interface _map_pool_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (_map_pool_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: _map_pool_max_fieldsGenqlSelection + min?: _map_pool_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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)} + + +/** 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 _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 _map_pool_min_fieldsGenqlSelection{ + map_id?: boolean | number + map_pool_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 + __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)} + + +/** primary key columns input for table: _map_pool */ +export interface _map_pool_pk_columns_input {map_id: Scalars['uuid'],map_pool_id: Scalars['uuid']} + + +/** 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)} + + +/** 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)} + + +/** Initial value of the column from where the streaming should start */ +export interface _map_pool_stream_cursor_value_input {map_id?: (Scalars['uuid'] | null),map_pool_id?: (Scalars['uuid'] | null)} + +export interface _map_pool_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (_map_pool_set_input | null), +/** filter the rows which have to be updated */ +where: _map_pool_bool_exp} + + +/** columns and relationships of "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 +} + + +/** 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)} + +export interface abandoned_matches_aggregate_bool_exp_count {arguments?: (abandoned_matches_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (abandoned_matches_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "abandoned_matches" */ +export interface abandoned_matches_aggregate_fieldsGenqlSelection{ + avg?: abandoned_matches_avg_fieldsGenqlSelection + count?: { __args: {columns?: (abandoned_matches_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: abandoned_matches_max_fieldsGenqlSelection + min?: abandoned_matches_min_fieldsGenqlSelection + stddev?: abandoned_matches_stddev_fieldsGenqlSelection + stddev_pop?: abandoned_matches_stddev_pop_fieldsGenqlSelection + stddev_samp?: abandoned_matches_stddev_samp_fieldsGenqlSelection + sum?: abandoned_matches_sum_fieldsGenqlSelection + var_pop?: abandoned_matches_var_pop_fieldsGenqlSelection + var_samp?: abandoned_matches_var_samp_fieldsGenqlSelection + variance?: abandoned_matches_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "abandoned_matches" */ +export interface abandoned_matches_aggregate_order_by {avg?: (abandoned_matches_avg_order_by | null),count?: (order_by | null),max?: (abandoned_matches_max_order_by | null),min?: (abandoned_matches_min_order_by | null),stddev?: (abandoned_matches_stddev_order_by | null),stddev_pop?: (abandoned_matches_stddev_pop_order_by | null),stddev_samp?: (abandoned_matches_stddev_samp_order_by | null),sum?: (abandoned_matches_sum_order_by | null),var_pop?: (abandoned_matches_var_pop_order_by | null),var_samp?: (abandoned_matches_var_samp_order_by | null),variance?: (abandoned_matches_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "abandoned_matches" */ +export interface abandoned_matches_arr_rel_insert_input {data: abandoned_matches_insert_input[], +/** upsert condition */ +on_conflict?: (abandoned_matches_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface abandoned_matches_avg_fieldsGenqlSelection{ + steam_id?: 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 "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)} + + +/** 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 +} + + +/** 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 + match_id?: boolean | number + steam_id?: 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{ + /** 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 +} + + +/** 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)} + + +/** 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']} + + +/** 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)} + + +/** aggregate stddev on columns */ +export interface abandoned_matches_stddev_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "abandoned_matches" */ +export interface abandoned_matches_stddev_order_by {steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface abandoned_matches_stddev_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "abandoned_matches" */ +export interface abandoned_matches_stddev_pop_order_by {steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface abandoned_matches_stddev_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "abandoned_matches" */ +export interface abandoned_matches_stddev_samp_order_by {steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "abandoned_matches" */ +export interface abandoned_matches_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: abandoned_matches_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface abandoned_matches_stream_cursor_value_input {abandoned_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),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 +} + + +/** 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 +} + + +/** 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 +} + + +/** 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 +} + + +/** 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 + label?: boolean | number + last_used_at?: boolean | number + steam_id?: 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 + __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 + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface api_keys_avg_fieldsGenqlSelection{ + steam_id?: 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)} + + +/** 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 + label?: boolean | number + last_used_at?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface api_keys_min_fieldsGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + label?: boolean | number + last_used_at?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: 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 +} + + +/** on_conflict condition type for table "api_keys" */ +export interface api_keys_on_conflict {constraint: api_keys_constraint,update_columns?: api_keys_update_column[],where?: (api_keys_bool_exp | null)} + + +/** Ordering options when selecting data from "api_keys". */ +export interface api_keys_order_by {created_at?: (order_by | null),id?: (order_by | null),label?: (order_by | null),last_used_at?: (order_by | null),steam_id?: (order_by | null)} + + +/** primary key columns input for table: api_keys */ +export interface api_keys_pk_columns_input {id: Scalars['uuid']} + + +/** input type for 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 +} + + +/** aggregate stddev_pop on columns */ +export interface api_keys_stddev_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface api_keys_stddev_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "api_keys" */ +export interface api_keys_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: api_keys_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface api_keys_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),label?: (Scalars['String'] | null),last_used_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate sum on columns */ +export interface api_keys_sum_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface api_keys_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (api_keys_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (api_keys_set_input | null), +/** filter the rows which have to be updated */ +where: api_keys_bool_exp} + + +/** aggregate var_pop on columns */ +export interface api_keys_var_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface api_keys_var_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: 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)} + + +/** 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 +} + + +/** 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 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 +} + + +/** 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 +} + + +/** 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 +} + + +/** 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 + __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{ + /** 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 +} + + +/** 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)} + + +/** 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 +} + + +/** 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 +} + + +/** 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 +} + + +/** 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 +} + + +/** 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 +} + + +/** 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 +} + + +/** 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 +} + + +/** 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 +} + + +/** aggregated selection of "awards" */ +export interface awards_aggregateGenqlSelection{ + aggregate?: awards_aggregate_fieldsGenqlSelection + nodes?: awardsGenqlSelection + __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 + __typename?: boolean | number + __scalar?: 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 +} + + +/** 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 + silhouette?: boolean | number + system_key?: boolean | number + tournament_id?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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 + 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 +} + + +/** 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 +} + + +/** 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 +} + + +/** 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 +} + + +/** 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 +} + + +/** 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 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 +} + + +/** 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 +} + + +/** 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 "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 + __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 + __typename?: boolean | number + __scalar?: 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 +} + + +/** aggregate avg on columns */ +export interface chat_read_state_avg_fieldsGenqlSelection{ + 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)} + + +/** 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 +} + + +/** 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 +} + + +/** 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 +} + + +/** 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 +} + + +/** aggregate stddev_pop on columns */ +export interface chat_read_state_stddev_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: 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 +} + + +/** 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 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 +} + + +/** aggregate var_samp on columns */ +export interface chat_read_state_var_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface chat_read_state_variance_fieldsGenqlSelection{ + 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 + /** 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 +} + + +/** 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 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 +} + + +/** 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 +} + + +/** order by avg() on columns of table "clip_render_jobs" */ +export interface clip_render_jobs_avg_order_by {progress?: (order_by | null),sort_index?: (order_by | null),user_steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "clip_render_jobs". All fields are combined with a logical 'AND'. */ +export interface clip_render_jobs_bool_exp {_and?: (clip_render_jobs_bool_exp[] | null),_not?: (clip_render_jobs_bool_exp | null),_or?: (clip_render_jobs_bool_exp[] | null),clip?: (match_clips_bool_exp | null),clip_id?: (uuid_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),error_message?: (String_comparison_exp | null),game_server_node?: (game_server_nodes_bool_exp | null),game_server_node_id?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),k8s_job_name?: (String_comparison_exp | null),last_status_at?: (timestamptz_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_demo?: (match_map_demos_bool_exp | null),match_map_demo_id?: (uuid_comparison_exp | null),match_map_id?: (uuid_comparison_exp | null),paused?: (Boolean_comparison_exp | null),progress?: (numeric_comparison_exp | null),session_token?: (String_comparison_exp | null),sort_index?: (Int_comparison_exp | null),spec?: (jsonb_comparison_exp | null),status?: (String_comparison_exp | null),status_history?: (jsonb_comparison_exp | null),user?: (players_bool_exp | null),user_steam_id?: (bigint_comparison_exp | null)} + + +/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ +export interface clip_render_jobs_delete_at_path_input {spec?: (Scalars['String'][] | null),status_history?: (Scalars['String'][] | null)} + + +/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */ +export interface clip_render_jobs_delete_elem_input {spec?: (Scalars['Int'] | null),status_history?: (Scalars['Int'] | null)} + + +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +export interface clip_render_jobs_delete_key_input {spec?: (Scalars['String'] | null),status_history?: (Scalars['String'] | null)} + + +/** input type for incrementing numeric columns in table "clip_render_jobs" */ +export interface clip_render_jobs_inc_input {progress?: (Scalars['numeric'] | null),sort_index?: (Scalars['Int'] | null),user_steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "clip_render_jobs" */ +export interface clip_render_jobs_insert_input {clip?: (match_clips_obj_rel_insert_input | null),clip_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),error_message?: (Scalars['String'] | null),game_server_node?: (game_server_nodes_obj_rel_insert_input | null),game_server_node_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),k8s_job_name?: (Scalars['String'] | null),last_status_at?: (Scalars['timestamptz'] | null),match_map?: (match_maps_obj_rel_insert_input | null),match_map_demo?: (match_map_demos_obj_rel_insert_input | null),match_map_demo_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),paused?: (Scalars['Boolean'] | null),progress?: (Scalars['numeric'] | null),session_token?: (Scalars['String'] | null),sort_index?: (Scalars['Int'] | null),spec?: (Scalars['jsonb'] | null),status?: (Scalars['String'] | null),status_history?: (Scalars['jsonb'] | null),user?: (players_obj_rel_insert_input | null),user_steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate max on columns */ +export interface clip_render_jobs_max_fieldsGenqlSelection{ + clip_id?: boolean | number + created_at?: boolean | number + error_message?: boolean | number + game_server_node_id?: boolean | number + id?: boolean | number + k8s_job_name?: boolean | number + last_status_at?: boolean | number + match_map_demo_id?: boolean | number + match_map_id?: boolean | number + progress?: boolean | number + session_token?: boolean | number + sort_index?: boolean | number + status?: boolean | number + user_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "clip_render_jobs" */ +export interface clip_render_jobs_max_order_by {clip_id?: (order_by | null),created_at?: (order_by | null),error_message?: (order_by | null),game_server_node_id?: (order_by | null),id?: (order_by | null),k8s_job_name?: (order_by | null),last_status_at?: (order_by | null),match_map_demo_id?: (order_by | null),match_map_id?: (order_by | null),progress?: (order_by | null),session_token?: (order_by | null),sort_index?: (order_by | null),status?: (order_by | null),user_steam_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface clip_render_jobs_min_fieldsGenqlSelection{ + clip_id?: boolean | number + created_at?: boolean | number + error_message?: boolean | number + game_server_node_id?: boolean | number + id?: boolean | number + k8s_job_name?: boolean | number + last_status_at?: boolean | number + match_map_demo_id?: boolean | number + match_map_id?: boolean | number + progress?: boolean | number + session_token?: boolean | number + sort_index?: boolean | number + status?: boolean | number + user_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "clip_render_jobs" */ +export interface clip_render_jobs_min_order_by {clip_id?: (order_by | null),created_at?: (order_by | null),error_message?: (order_by | null),game_server_node_id?: (order_by | null),id?: (order_by | null),k8s_job_name?: (order_by | null),last_status_at?: (order_by | null),match_map_demo_id?: (order_by | null),match_map_id?: (order_by | null),progress?: (order_by | null),session_token?: (order_by | null),sort_index?: (order_by | null),status?: (order_by | null),user_steam_id?: (order_by | null)} + + +/** response of any mutation on the table "clip_render_jobs" */ +export interface clip_render_jobs_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: clip_render_jobsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "clip_render_jobs" */ +export interface clip_render_jobs_on_conflict {constraint: clip_render_jobs_constraint,update_columns?: clip_render_jobs_update_column[],where?: (clip_render_jobs_bool_exp | null)} + + +/** Ordering options when selecting data from "clip_render_jobs". */ +export interface clip_render_jobs_order_by {clip?: (match_clips_order_by | null),clip_id?: (order_by | null),created_at?: (order_by | null),error_message?: (order_by | null),game_server_node?: (game_server_nodes_order_by | null),game_server_node_id?: (order_by | null),id?: (order_by | null),k8s_job_name?: (order_by | null),last_status_at?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_demo?: (match_map_demos_order_by | null),match_map_demo_id?: (order_by | null),match_map_id?: (order_by | null),paused?: (order_by | null),progress?: (order_by | null),session_token?: (order_by | null),sort_index?: (order_by | null),spec?: (order_by | null),status?: (order_by | null),status_history?: (order_by | null),user?: (players_order_by | null),user_steam_id?: (order_by | null)} + + +/** primary key columns input for table: clip_render_jobs */ +export interface clip_render_jobs_pk_columns_input {id: Scalars['uuid']} + + +/** prepend existing jsonb value of filtered columns with new jsonb value */ +export interface clip_render_jobs_prepend_input {spec?: (Scalars['jsonb'] | null),status_history?: (Scalars['jsonb'] | null)} + + +/** input type for updating data in table "clip_render_jobs" */ +export interface clip_render_jobs_set_input {clip_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),error_message?: (Scalars['String'] | null),game_server_node_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),k8s_job_name?: (Scalars['String'] | null),last_status_at?: (Scalars['timestamptz'] | null),match_map_demo_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),paused?: (Scalars['Boolean'] | null),progress?: (Scalars['numeric'] | null),session_token?: (Scalars['String'] | null),sort_index?: (Scalars['Int'] | null),spec?: (Scalars['jsonb'] | null),status?: (Scalars['String'] | null),status_history?: (Scalars['jsonb'] | null),user_steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate stddev on columns */ +export interface clip_render_jobs_stddev_fieldsGenqlSelection{ + progress?: boolean | number + sort_index?: boolean | number + user_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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 +} + + +/** order by stddev_pop() on columns of table "clip_render_jobs" */ +export interface clip_render_jobs_stddev_pop_order_by {progress?: (order_by | null),sort_index?: (order_by | null),user_steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface clip_render_jobs_stddev_samp_fieldsGenqlSelection{ + progress?: boolean | number + sort_index?: boolean | number + user_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "clip_render_jobs" */ +export interface clip_render_jobs_stddev_samp_order_by {progress?: (order_by | null),sort_index?: (order_by | null),user_steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "clip_render_jobs" */ +export interface clip_render_jobs_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: clip_render_jobs_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface clip_render_jobs_stream_cursor_value_input {clip_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),error_message?: (Scalars['String'] | null),game_server_node_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),k8s_job_name?: (Scalars['String'] | null),last_status_at?: (Scalars['timestamptz'] | null),match_map_demo_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),paused?: (Scalars['Boolean'] | null),progress?: (Scalars['numeric'] | null),session_token?: (Scalars['String'] | null),sort_index?: (Scalars['Int'] | null),spec?: (Scalars['jsonb'] | null),status?: (Scalars['String'] | null),status_history?: (Scalars['jsonb'] | null),user_steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate sum on columns */ +export interface clip_render_jobs_sum_fieldsGenqlSelection{ + progress?: boolean | number + sort_index?: boolean | number + user_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "clip_render_jobs" */ +export interface clip_render_jobs_sum_order_by {progress?: (order_by | null),sort_index?: (order_by | null),user_steam_id?: (order_by | null)} + +export interface clip_render_jobs_updates { +/** append existing jsonb value of filtered columns with new jsonb value */ +_append?: (clip_render_jobs_append_input | null), +/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ +_delete_at_path?: (clip_render_jobs_delete_at_path_input | null), +/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */ +_delete_elem?: (clip_render_jobs_delete_elem_input | null), +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +_delete_key?: (clip_render_jobs_delete_key_input | null), +/** increments the numeric columns with given value of the filtered values */ +_inc?: (clip_render_jobs_inc_input | null), +/** prepend existing jsonb value of filtered columns with new jsonb value */ +_prepend?: (clip_render_jobs_prepend_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (clip_render_jobs_set_input | null), +/** filter the rows which have to be updated */ +where: clip_render_jobs_bool_exp} + + +/** aggregate var_pop on columns */ +export interface clip_render_jobs_var_pop_fieldsGenqlSelection{ + progress?: boolean | number + sort_index?: boolean | number + user_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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 +} + + +/** order by var_samp() on columns of table "clip_render_jobs" */ +export interface clip_render_jobs_var_samp_order_by {progress?: (order_by | null),sort_index?: (order_by | null),user_steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface clip_render_jobs_variance_fieldsGenqlSelection{ + progress?: boolean | number + sort_index?: boolean | number + user_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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 +} + + +/** 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 custom_pages_avg_fieldsGenqlSelection{ + nav_order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "custom_pages". All fields are combined with a logical 'AND'. */ +export interface custom_pages_bool_exp {_and?: (custom_pages_bool_exp[] | null),_not?: (custom_pages_bool_exp | null),_or?: (custom_pages_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),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)} + + +/** 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)} + + +/** 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)} + + +/** 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 custom_pages_max_fieldsGenqlSelection{ + created_at?: boolean | number + exposed_module?: boolean | number + icon?: boolean | number + 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 +} + + +/** aggregate min on columns */ +export interface custom_pages_min_fieldsGenqlSelection{ + created_at?: boolean | number + exposed_module?: boolean | number + icon?: boolean | number + 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 +} + + +/** response of any mutation on the table "custom_pages" */ +export interface custom_pages_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: custom_pagesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "custom_pages" */ +export interface custom_pages_on_conflict {constraint: custom_pages_constraint,update_columns?: custom_pages_update_column[],where?: (custom_pages_bool_exp | null)} + + +/** Ordering options when selecting data from "custom_pages". */ +export interface custom_pages_order_by {created_at?: (order_by | null),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: custom_pages */ +export interface custom_pages_pk_columns_input {id: Scalars['uuid']} + + +/** 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 custom_pages_stddev_fieldsGenqlSelection{ + nav_order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface custom_pages_stddev_pop_fieldsGenqlSelection{ + nav_order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface custom_pages_stddev_samp_fieldsGenqlSelection{ + nav_order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "custom_pages" */ +export interface custom_pages_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: custom_pages_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface custom_pages_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),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 custom_pages_sum_fieldsGenqlSelection{ + nav_order?: 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), +/** 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), +/** sets the columns of the filtered rows to the given values */ +_set?: (custom_pages_set_input | null), +/** filter the rows which have to be updated */ +where: custom_pages_bool_exp} + + +/** aggregate var_pop on columns */ +export interface custom_pages_var_pop_fieldsGenqlSelection{ + nav_order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface custom_pages_var_samp_fieldsGenqlSelection{ + nav_order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface custom_pages_variance_fieldsGenqlSelection{ + nav_order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "db_backups" */ +export interface db_backupsGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + name?: boolean | number + size?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "db_backups" */ +export interface db_backups_aggregateGenqlSelection{ + aggregate?: db_backups_aggregate_fieldsGenqlSelection + nodes?: db_backupsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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 db_backups_avg_fieldsGenqlSelection{ + size?: boolean | number + __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)} + + +/** input type for incrementing numeric columns in table "db_backups" */ +export interface db_backups_inc_input {size?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "db_backups" */ +export interface db_backups_insert_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),size?: (Scalars['Int'] | null)} + + +/** aggregate max on columns */ +export interface db_backups_max_fieldsGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + name?: boolean | number + size?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface db_backups_min_fieldsGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + name?: boolean | number + size?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "db_backups" */ +export interface db_backups_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: db_backupsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "db_backups" */ +export interface db_backups_on_conflict {constraint: db_backups_constraint,update_columns?: db_backups_update_column[],where?: (db_backups_bool_exp | null)} + + +/** Ordering options when selecting data from "db_backups". */ +export interface db_backups_order_by {created_at?: (order_by | null),id?: (order_by | null),name?: (order_by | null),size?: (order_by | null)} + + +/** primary key columns input for table: db_backups */ +export interface db_backups_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "db_backups" */ +export interface db_backups_set_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),size?: (Scalars['Int'] | null)} + + +/** aggregate stddev on columns */ +export interface db_backups_stddev_fieldsGenqlSelection{ + size?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface db_backups_stddev_pop_fieldsGenqlSelection{ + size?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface db_backups_stddev_samp_fieldsGenqlSelection{ + size?: boolean | number + __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)} + + +/** Initial value of the column from where the streaming should start */ +export interface db_backups_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),size?: (Scalars['Int'] | null)} + + +/** aggregate sum on columns */ +export interface db_backups_sum_fieldsGenqlSelection{ + size?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface 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} + + +/** aggregate var_pop on columns */ +export interface db_backups_var_pop_fieldsGenqlSelection{ + size?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface db_backups_var_samp_fieldsGenqlSelection{ + size?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface db_backups_variance_fieldsGenqlSelection{ + size?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "direct_conversations" */ +export interface direct_conversationsGenqlSelection{ + is_open?: boolean | number + last_message_at?: boolean | number + position?: boolean | number + room_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "direct_conversations" */ +export interface direct_conversations_aggregateGenqlSelection{ + aggregate?: direct_conversations_aggregate_fieldsGenqlSelection + nodes?: direct_conversationsGenqlSelection + __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 + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface direct_conversations_avg_fieldsGenqlSelection{ + position?: boolean | number + steam_id?: boolean | number + __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)} + + +/** 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 "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 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 +} + + +/** 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 + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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?: direct_conversationsGenqlSelection + __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)} + + +/** 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: direct_conversations */ +export interface direct_conversations_pk_columns_input {room_id: Scalars['String'],steam_id: Scalars['bigint']} + + +/** 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 direct_conversations_stddev_fieldsGenqlSelection{ + position?: boolean | number + steam_id?: 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 + __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 + __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)} + + +/** 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)} + + +/** 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} + + +/** aggregate var_pop on columns */ +export interface direct_conversations_var_pop_fieldsGenqlSelection{ + position?: boolean | number + steam_id?: 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 + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface direct_conversations_variance_fieldsGenqlSelection{ + position?: boolean | number + steam_id?: boolean | number + __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 +} + + +/** 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 "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 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 "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 "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 "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 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 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 + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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?: direct_messagesGenqlSelection + __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 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 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 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 direct_messages_stddev_samp_fieldsGenqlSelection{ + from_steam_id?: boolean | number + seq?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "direct_messages" */ +export interface direct_messages_stream_cursor_input { +/** Stream column input with initial value */ +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 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 direct_messages_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (direct_messages_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (direct_messages_set_input | null), +/** filter the rows which have to be updated */ +where: direct_messages_bool_exp} + + +/** aggregate var_pop on columns */ +export interface direct_messages_var_pop_fieldsGenqlSelection{ + from_steam_id?: boolean | number + seq?: boolean | number + __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 + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface direct_messages_variance_fieldsGenqlSelection{ + from_steam_id?: boolean | number + seq?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "draft_game_picks" */ +export interface draft_game_picksGenqlSelection{ + auto_picked?: boolean | number + /** An object relationship */ + captain?: playersGenqlSelection + captain_steam_id?: boolean | number + created_at?: boolean | number + /** An object relationship */ + draft_game?: draft_gamesGenqlSelection + draft_game_id?: boolean | number + id?: boolean | number + is_organizer?: boolean | number + lineup?: boolean | number + /** An object relationship */ + picked?: playersGenqlSelection + picked_steam_id?: boolean | number + __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 + __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 + __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 draft_game_picks_avg_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "draft_game_picks" */ +export interface draft_game_picks_avg_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "draft_game_picks". All fields are combined with a logical 'AND'. */ +export interface draft_game_picks_bool_exp {_and?: (draft_game_picks_bool_exp[] | null),_not?: (draft_game_picks_bool_exp | null),_or?: (draft_game_picks_bool_exp[] | null),auto_picked?: (Boolean_comparison_exp | null),captain?: (players_bool_exp | null),captain_steam_id?: (bigint_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),draft_game?: (draft_games_bool_exp | null),draft_game_id?: (uuid_comparison_exp | null),id?: (uuid_comparison_exp | null),is_organizer?: (Boolean_comparison_exp | null),lineup?: (Int_comparison_exp | null),picked?: (players_bool_exp | null),picked_steam_id?: (bigint_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "draft_game_picks" */ +export interface draft_game_picks_inc_input {captain_steam_id?: (Scalars['bigint'] | null),lineup?: (Scalars['Int'] | null),picked_steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "draft_game_picks" */ +export interface draft_game_picks_insert_input {auto_picked?: (Scalars['Boolean'] | null),captain?: (players_obj_rel_insert_input | null),captain_steam_id?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),draft_game?: (draft_games_obj_rel_insert_input | null),draft_game_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),lineup?: (Scalars['Int'] | null),picked?: (players_obj_rel_insert_input | null),picked_steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate max on columns */ +export interface draft_game_picks_max_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + created_at?: boolean | number + draft_game_id?: boolean | number + id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "draft_game_picks" */ +export interface draft_game_picks_max_order_by {captain_steam_id?: (order_by | null),created_at?: (order_by | null),draft_game_id?: (order_by | null),id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface draft_game_picks_min_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + created_at?: boolean | number + draft_game_id?: boolean | number + id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "draft_game_picks" */ +export interface draft_game_picks_min_order_by {captain_steam_id?: (order_by | null),created_at?: (order_by | null),draft_game_id?: (order_by | null),id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + + +/** response of any mutation on the table "draft_game_picks" */ +export interface draft_game_picks_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: draft_game_picksGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "draft_game_picks" */ +export interface draft_game_picks_on_conflict {constraint: draft_game_picks_constraint,update_columns?: draft_game_picks_update_column[],where?: (draft_game_picks_bool_exp | null)} + + +/** Ordering options when selecting data from "draft_game_picks". */ +export interface draft_game_picks_order_by {auto_picked?: (order_by | null),captain?: (players_order_by | null),captain_steam_id?: (order_by | null),created_at?: (order_by | null),draft_game?: (draft_games_order_by | null),draft_game_id?: (order_by | null),id?: (order_by | null),is_organizer?: (order_by | null),lineup?: (order_by | null),picked?: (players_order_by | null),picked_steam_id?: (order_by | null)} + + +/** primary key columns input for table: draft_game_picks */ +export interface draft_game_picks_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "draft_game_picks" */ +export interface draft_game_picks_set_input {auto_picked?: (Scalars['Boolean'] | null),captain_steam_id?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),draft_game_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),lineup?: (Scalars['Int'] | null),picked_steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate stddev on columns */ +export interface draft_game_picks_stddev_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "draft_game_picks" */ +export interface draft_game_picks_stddev_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface draft_game_picks_stddev_pop_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "draft_game_picks" */ +export interface draft_game_picks_stddev_pop_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface draft_game_picks_stddev_samp_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "draft_game_picks" */ +export interface draft_game_picks_stddev_samp_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "draft_game_picks" */ +export interface draft_game_picks_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: draft_game_picks_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface draft_game_picks_stream_cursor_value_input {auto_picked?: (Scalars['Boolean'] | null),captain_steam_id?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),draft_game_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),lineup?: (Scalars['Int'] | null),picked_steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate sum on columns */ +export interface draft_game_picks_sum_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "draft_game_picks" */ +export interface draft_game_picks_sum_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + +export interface draft_game_picks_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (draft_game_picks_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (draft_game_picks_set_input | null), +/** filter the rows which have to be updated */ +where: draft_game_picks_bool_exp} + + +/** aggregate var_pop on columns */ +export interface draft_game_picks_var_pop_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "draft_game_picks" */ +export interface draft_game_picks_var_pop_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface draft_game_picks_var_samp_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "draft_game_picks" */ +export interface draft_game_picks_var_samp_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface draft_game_picks_variance_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "draft_game_picks" */ +export interface draft_game_picks_variance_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + + +/** columns and relationships of "draft_game_players" */ +export interface draft_game_playersGenqlSelection{ + /** An object relationship */ + draft_game?: draft_gamesGenqlSelection + draft_game_id?: boolean | number + /** An object relationship */ + e_draft_game_player_status?: e_draft_game_player_statusGenqlSelection + elo_snapshot?: boolean | number + is_captain?: boolean | number + is_organizer?: boolean | number + joined_at?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + status?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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 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 + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "draft_game_players" */ +export interface draft_game_players_aggregate_order_by {avg?: (draft_game_players_avg_order_by | null),count?: (order_by | null),max?: (draft_game_players_max_order_by | null),min?: (draft_game_players_min_order_by | null),stddev?: (draft_game_players_stddev_order_by | null),stddev_pop?: (draft_game_players_stddev_pop_order_by | null),stddev_samp?: (draft_game_players_stddev_samp_order_by | null),sum?: (draft_game_players_sum_order_by | null),var_pop?: (draft_game_players_var_pop_order_by | null),var_samp?: (draft_game_players_var_samp_order_by | null),variance?: (draft_game_players_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "draft_game_players" */ +export interface draft_game_players_arr_rel_insert_input {data: draft_game_players_insert_input[], +/** upsert condition */ +on_conflict?: (draft_game_players_on_conflict | null)} + + +/** aggregate 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 +} + + +/** order by avg() on columns of table "draft_game_players" */ +export interface draft_game_players_avg_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "draft_game_players". All fields are combined with a logical 'AND'. */ +export interface draft_game_players_bool_exp {_and?: (draft_game_players_bool_exp[] | null),_not?: (draft_game_players_bool_exp | null),_or?: (draft_game_players_bool_exp[] | null),draft_game?: (draft_games_bool_exp | null),draft_game_id?: (uuid_comparison_exp | null),e_draft_game_player_status?: (e_draft_game_player_status_bool_exp | null),elo_snapshot?: (Int_comparison_exp | null),is_captain?: (Boolean_comparison_exp | null),is_organizer?: (Boolean_comparison_exp | null),joined_at?: (timestamptz_comparison_exp | null),lineup?: (Int_comparison_exp | null),pick_order?: (Int_comparison_exp | null),player?: (players_bool_exp | null),status?: (e_draft_game_player_status_enum_comparison_exp | null),steam_id?: (bigint_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "draft_game_players" */ +export interface draft_game_players_inc_input {elo_snapshot?: (Scalars['Int'] | null),lineup?: (Scalars['Int'] | null),pick_order?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "draft_game_players" */ +export interface draft_game_players_insert_input {draft_game?: (draft_games_obj_rel_insert_input | null),draft_game_id?: (Scalars['uuid'] | null),e_draft_game_player_status?: (e_draft_game_player_status_obj_rel_insert_input | null),elo_snapshot?: (Scalars['Int'] | null),is_captain?: (Scalars['Boolean'] | null),joined_at?: (Scalars['timestamptz'] | null),lineup?: (Scalars['Int'] | null),pick_order?: (Scalars['Int'] | null),player?: (players_obj_rel_insert_input | null),status?: (e_draft_game_player_status_enum | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate max on columns */ +export interface draft_game_players_max_fieldsGenqlSelection{ + draft_game_id?: boolean | number + elo_snapshot?: boolean | number + joined_at?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "draft_game_players" */ +export interface draft_game_players_max_order_by {draft_game_id?: (order_by | null),elo_snapshot?: (order_by | null),joined_at?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface draft_game_players_min_fieldsGenqlSelection{ + draft_game_id?: boolean | number + elo_snapshot?: boolean | number + joined_at?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "draft_game_players" */ +export interface draft_game_players_min_order_by {draft_game_id?: (order_by | null),elo_snapshot?: (order_by | null),joined_at?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} + + +/** response of any mutation on the table "draft_game_players" */ +export interface draft_game_players_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: draft_game_playersGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "draft_game_players" */ +export interface draft_game_players_on_conflict {constraint: draft_game_players_constraint,update_columns?: draft_game_players_update_column[],where?: (draft_game_players_bool_exp | null)} + + +/** Ordering options when selecting data from "draft_game_players". */ +export interface draft_game_players_order_by {draft_game?: (draft_games_order_by | null),draft_game_id?: (order_by | null),e_draft_game_player_status?: (e_draft_game_player_status_order_by | null),elo_snapshot?: (order_by | null),is_captain?: (order_by | null),is_organizer?: (order_by | null),joined_at?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),player?: (players_order_by | null),status?: (order_by | null),steam_id?: (order_by | null)} + + +/** primary key columns input for table: draft_game_players */ +export interface draft_game_players_pk_columns_input {draft_game_id: Scalars['uuid'],steam_id: Scalars['bigint']} + + +/** input type for updating data in table "draft_game_players" */ +export interface draft_game_players_set_input {draft_game_id?: (Scalars['uuid'] | null),elo_snapshot?: (Scalars['Int'] | null),is_captain?: (Scalars['Boolean'] | null),joined_at?: (Scalars['timestamptz'] | null),lineup?: (Scalars['Int'] | null),pick_order?: (Scalars['Int'] | null),status?: (e_draft_game_player_status_enum | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate stddev on columns */ +export interface draft_game_players_stddev_fieldsGenqlSelection{ + elo_snapshot?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "draft_game_players" */ +export interface draft_game_players_stddev_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface draft_game_players_stddev_pop_fieldsGenqlSelection{ + elo_snapshot?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "draft_game_players" */ +export interface draft_game_players_stddev_pop_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface draft_game_players_stddev_samp_fieldsGenqlSelection{ + elo_snapshot?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "draft_game_players" */ +export interface draft_game_players_stddev_samp_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "draft_game_players" */ +export interface draft_game_players_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: draft_game_players_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface draft_game_players_stream_cursor_value_input {draft_game_id?: (Scalars['uuid'] | null),elo_snapshot?: (Scalars['Int'] | null),is_captain?: (Scalars['Boolean'] | null),joined_at?: (Scalars['timestamptz'] | null),lineup?: (Scalars['Int'] | null),pick_order?: (Scalars['Int'] | null),status?: (e_draft_game_player_status_enum | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate sum on columns */ +export interface draft_game_players_sum_fieldsGenqlSelection{ + elo_snapshot?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "draft_game_players" */ +export interface draft_game_players_sum_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} + +export interface draft_game_players_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (draft_game_players_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (draft_game_players_set_input | null), +/** filter the rows which have to be updated */ +where: draft_game_players_bool_exp} + + +/** aggregate var_pop on columns */ +export interface draft_game_players_var_pop_fieldsGenqlSelection{ + elo_snapshot?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "draft_game_players" */ +export interface draft_game_players_var_pop_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface draft_game_players_var_samp_fieldsGenqlSelection{ + elo_snapshot?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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 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 "draft_game_players" */ +export interface draft_game_players_variance_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} + + +/** columns and relationships of "draft_games" */ +export interface draft_gamesGenqlSelection{ + access?: boolean | number + capacity?: boolean | number + captain_selection?: boolean | number + created_at?: boolean | number + current_pick_lineup?: boolean | number + draft_order?: boolean | number + /** An object relationship */ + e_draft_game_captain_selection?: e_draft_game_captain_selectionGenqlSelection + /** An object relationship */ + e_draft_game_draft_order?: e_draft_game_draft_orderGenqlSelection + /** An object relationship */ + e_draft_game_mode?: e_draft_game_modeGenqlSelection + /** An object relationship */ + e_draft_game_status?: e_draft_game_statusGenqlSelection + /** An object relationship */ + e_lobby_access?: e_lobby_accessGenqlSelection + expires_at?: boolean | number + /** An object relationship */ + host?: playersGenqlSelection + host_steam_id?: boolean | number + id?: boolean | number + inner_squad?: boolean | number + invite_code?: boolean | number + is_organizer?: boolean | number + /** An object relationship */ + map_pool?: map_poolsGenqlSelection + map_pool_id?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + match_id?: boolean | number + match_options_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + mode?: boolean | number + /** An object relationship */ + options?: match_optionsGenqlSelection + /** Turn order (lineup 1/2) for each remaining non-captain pick. */ + pattern?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number + pick_deadline?: boolean | number + /** An array relationship */ + picks?: (draft_game_picksGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_game_picks_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (draft_game_picks_order_by[] | null), + /** filter the rows returned */ + where?: (draft_game_picks_bool_exp | null)} }) + /** An aggregate relationship */ + picks_aggregate?: (draft_game_picks_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_game_picks_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (draft_game_picks_order_by[] | null), + /** filter the rows returned */ + where?: (draft_game_picks_bool_exp | null)} }) + /** An array relationship */ + players?: (draft_game_playersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_game_players_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (draft_game_players_order_by[] | null), + /** filter the rows returned */ + where?: (draft_game_players_bool_exp | null)} }) + /** An aggregate relationship */ + players_aggregate?: (draft_game_players_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_game_players_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (draft_game_players_order_by[] | null), + /** filter the rows returned */ + where?: (draft_game_players_bool_exp | null)} }) + regions?: boolean | number + require_approval?: boolean | number + scheduled_at?: boolean | number + status?: boolean | number + /** An object relationship */ + team_1?: teamsGenqlSelection + team_1_id?: boolean | number + /** An object relationship */ + team_2?: teamsGenqlSelection + team_2_id?: boolean | number + type?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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)} + +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} + +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 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 +} + + +/** order by aggregate values of table "draft_games" */ +export interface draft_games_aggregate_order_by {avg?: (draft_games_avg_order_by | null),count?: (order_by | null),max?: (draft_games_max_order_by | null),min?: (draft_games_min_order_by | null),stddev?: (draft_games_stddev_order_by | null),stddev_pop?: (draft_games_stddev_pop_order_by | null),stddev_samp?: (draft_games_stddev_samp_order_by | null),sum?: (draft_games_sum_order_by | null),var_pop?: (draft_games_var_pop_order_by | null),var_samp?: (draft_games_var_samp_order_by | null),variance?: (draft_games_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "draft_games" */ +export interface draft_games_arr_rel_insert_input {data: draft_games_insert_input[], +/** upsert condition */ +on_conflict?: (draft_games_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface draft_games_avg_fieldsGenqlSelection{ + capacity?: boolean | number + current_pick_lineup?: boolean | number + host_steam_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "draft_games" */ +export interface draft_games_avg_order_by {capacity?: (order_by | null),current_pick_lineup?: (order_by | null),host_steam_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "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 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 draft_games_max_fieldsGenqlSelection{ + capacity?: boolean | number + created_at?: boolean | number + current_pick_lineup?: boolean | number + expires_at?: boolean | number + host_steam_id?: boolean | number + id?: boolean | number + invite_code?: boolean | number + map_pool_id?: boolean | number + match_id?: boolean | number + match_options_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + pick_deadline?: boolean | number + regions?: boolean | number + scheduled_at?: boolean | number + team_1_id?: boolean | number + team_2_id?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "draft_games" */ +export interface draft_games_max_order_by {capacity?: (order_by | null),created_at?: (order_by | null),current_pick_lineup?: (order_by | null),expires_at?: (order_by | null),host_steam_id?: (order_by | null),id?: (order_by | null),invite_code?: (order_by | null),map_pool_id?: (order_by | null),match_id?: (order_by | null),match_options_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null),pick_deadline?: (order_by | null),regions?: (order_by | null),scheduled_at?: (order_by | null),team_1_id?: (order_by | null),team_2_id?: (order_by | null),updated_at?: (order_by | null)} + + +/** aggregate min on columns */ +export interface draft_games_min_fieldsGenqlSelection{ + capacity?: boolean | number + created_at?: boolean | number + current_pick_lineup?: boolean | number + expires_at?: boolean | number + host_steam_id?: boolean | number + id?: boolean | number + invite_code?: boolean | number + map_pool_id?: boolean | number + match_id?: boolean | number + match_options_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + pick_deadline?: boolean | number + regions?: boolean | number + scheduled_at?: boolean | number + team_1_id?: boolean | number + team_2_id?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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?: draft_gamesGenqlSelection + __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, +/** upsert condition */ +on_conflict?: (draft_games_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)} + + +/** 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)} + + +/** 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 "draft_games" */ +export interface draft_games_set_input {access?: (e_lobby_access_enum | null),capacity?: (Scalars['Int'] | null),captain_selection?: (e_draft_game_captain_selection_enum | null),created_at?: (Scalars['timestamptz'] | null),current_pick_lineup?: (Scalars['Int'] | null),draft_order?: (e_draft_game_draft_order_enum | null),expires_at?: (Scalars['timestamptz'] | null),host_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),inner_squad?: (Scalars['Boolean'] | null),invite_code?: (Scalars['uuid'] | null),map_pool_id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),max_elo?: (Scalars['Int'] | null),min_elo?: (Scalars['Int'] | null),mode?: (e_draft_game_mode_enum | null),pick_deadline?: (Scalars['timestamptz'] | null),regions?: (Scalars['String'][] | null),require_approval?: (Scalars['Boolean'] | null),scheduled_at?: (Scalars['timestamptz'] | null),status?: (e_draft_game_status_enum | null),team_1_id?: (Scalars['uuid'] | null),team_2_id?: (Scalars['uuid'] | null),type?: (e_match_types_enum | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate stddev on columns */ +export interface draft_games_stddev_fieldsGenqlSelection{ + capacity?: boolean | number + current_pick_lineup?: boolean | number + host_steam_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "draft_games" */ +export interface draft_games_stddev_order_by {capacity?: (order_by | null),current_pick_lineup?: (order_by | null),host_steam_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface draft_games_stddev_pop_fieldsGenqlSelection{ + capacity?: boolean | number + current_pick_lineup?: boolean | number + host_steam_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "draft_games" */ +export interface draft_games_stddev_pop_order_by {capacity?: (order_by | null),current_pick_lineup?: (order_by | null),host_steam_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface draft_games_stddev_samp_fieldsGenqlSelection{ + capacity?: boolean | number + current_pick_lineup?: boolean | number + host_steam_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "draft_games" */ +export interface draft_games_stddev_samp_order_by {capacity?: (order_by | null),current_pick_lineup?: (order_by | null),host_steam_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null)} + + +/** Streaming cursor of the table "draft_games" */ +export interface draft_games_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: 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 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 draft_games_sum_fieldsGenqlSelection{ + capacity?: boolean | number + current_pick_lineup?: boolean | number + host_steam_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "draft_games" */ +export interface draft_games_sum_order_by {capacity?: (order_by | null),current_pick_lineup?: (order_by | null),host_steam_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null)} + +export interface draft_games_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (draft_games_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (draft_games_set_input | null), +/** filter the rows which have to be updated */ +where: draft_games_bool_exp} + + +/** aggregate var_pop on columns */ +export interface draft_games_var_pop_fieldsGenqlSelection{ + capacity?: boolean | number + current_pick_lineup?: boolean | number + host_steam_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "draft_games" */ +export interface draft_games_var_pop_order_by {capacity?: (order_by | null),current_pick_lineup?: (order_by | null),host_steam_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface draft_games_var_samp_fieldsGenqlSelection{ + capacity?: boolean | number + current_pick_lineup?: boolean | number + host_steam_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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 draft_games_variance_fieldsGenqlSelection{ + capacity?: boolean | number + current_pick_lineup?: boolean | number + host_steam_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by 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)} + + +/** columns and relationships of "e_award_sources" */ +export interface e_award_sourcesGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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 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 "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 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 "e_award_sources" */ +export interface e_award_sources_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +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 e_award_sources_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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?: e_award_sourcesGenqlSelection + __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)} + + +/** 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: e_award_sources */ +export interface e_award_sources_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)} + + +/** 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 +} + + +/** 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 fields of "e_award_tiers" */ +export interface e_award_tiers_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_award_tiers_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_award_tiers_max_fieldsGenqlSelection + min?: e_award_tiers_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "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 compare columns of type "e_award_tiers_enum". All fields are combined with logical 'AND'. */ +export interface e_award_tiers_enum_comparison_exp {_eq?: (e_award_tiers_enum | null),_in?: (e_award_tiers_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_award_tiers_enum | null),_nin?: (e_award_tiers_enum[] | null)} + + +/** input type for inserting data into table "e_award_tiers" */ +export interface e_award_tiers_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_award_tiers_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_award_tiers_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: 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 +} + + +/** on_conflict condition type for table "e_award_tiers" */ +export interface e_award_tiers_on_conflict {constraint: e_award_tiers_constraint,update_columns?: e_award_tiers_update_column[],where?: (e_award_tiers_bool_exp | null)} + + +/** Ordering options when selecting data from "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 +} + + +/** 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 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 "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 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 "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 e_check_in_settings_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_check_in_settings_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "e_check_in_settings" */ +export interface e_check_in_settings_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_check_in_settingsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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 "e_check_in_settings". */ +export interface e_check_in_settings_order_by {description?: (order_by | null),value?: (order_by | null)} + + +/** primary key columns input for table: e_check_in_settings */ +export interface e_check_in_settings_pk_columns_input {value: Scalars['String']} + + +/** input type for updating data in table "e_check_in_settings" */ +export interface e_check_in_settings_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** Streaming cursor of the table "e_check_in_settings" */ +export interface e_check_in_settings_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_check_in_settings_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface e_check_in_settings_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_check_in_settings_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_check_in_settings_set_input | null), +/** filter the rows which have to be updated */ +where: e_check_in_settings_bool_exp} + + +/** columns and relationships of "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selectionGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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 fields of "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_draft_game_captain_selection_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_draft_game_captain_selection_max_fieldsGenqlSelection + min?: e_draft_game_captain_selection_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "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 compare columns of type "e_draft_game_captain_selection_enum". All fields are combined with logical 'AND'. */ +export interface e_draft_game_captain_selection_enum_comparison_exp {_eq?: (e_draft_game_captain_selection_enum | null),_in?: (e_draft_game_captain_selection_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_draft_game_captain_selection_enum | null),_nin?: (e_draft_game_captain_selection_enum[] | null)} + + +/** input type for inserting data into table "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_draft_game_captain_selection_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_draft_game_captain_selection_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "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 +} + + +/** 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)} + + +/** 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 +} + + +/** 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 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 "e_draft_game_draft_order". All fields are combined with a logical 'AND'. */ +export interface e_draft_game_draft_order_bool_exp {_and?: (e_draft_game_draft_order_bool_exp[] | null),_not?: (e_draft_game_draft_order_bool_exp | null),_or?: (e_draft_game_draft_order_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} + + +/** Boolean expression to compare columns of type "e_draft_game_draft_order_enum". All fields are combined with logical 'AND'. */ +export interface e_draft_game_draft_order_enum_comparison_exp {_eq?: (e_draft_game_draft_order_enum | null),_in?: (e_draft_game_draft_order_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_draft_game_draft_order_enum | null),_nin?: (e_draft_game_draft_order_enum[] | null)} + + +/** input type for inserting data into table "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_draft_game_draft_order_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_draft_game_draft_order_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_draft_game_draft_orderGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order_obj_rel_insert_input {data: e_draft_game_draft_order_insert_input, +/** upsert condition */ +on_conflict?: (e_draft_game_draft_order_on_conflict | null)} + + +/** on_conflict condition type for table "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order_on_conflict {constraint: e_draft_game_draft_order_constraint,update_columns?: e_draft_game_draft_order_update_column[],where?: (e_draft_game_draft_order_bool_exp | null)} + + +/** 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)} + + +/** primary key columns input for table: e_draft_game_draft_order */ +export interface e_draft_game_draft_order_pk_columns_input {value: Scalars['String']} + + +/** input type for 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 "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_draft_game_draft_order_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface e_draft_game_draft_order_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_draft_game_draft_order_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_draft_game_draft_order_set_input | null), +/** filter the rows which have to be updated */ +where: e_draft_game_draft_order_bool_exp} + + +/** columns and relationships of "e_draft_game_mode" */ +export interface e_draft_game_modeGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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 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 +} + + +/** 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 +} + + +/** aggregate min on columns */ +export interface e_draft_game_mode_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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 +} + + +/** 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)} + + +/** 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)} + + +/** 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)} + + +/** primary key columns input for table: e_draft_game_mode */ +export interface e_draft_game_mode_pk_columns_input {value: Scalars['String']} + + +/** input type for updating data in table "e_draft_game_mode" */ +export interface e_draft_game_mode_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 { +/** Stream column input with initial value */ +initial_value: e_draft_game_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_draft_game_mode_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_draft_game_mode_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_draft_game_mode_set_input | null), +/** filter the rows which have to be updated */ +where: e_draft_game_mode_bool_exp} + + +/** columns and relationships of "e_draft_game_player_status" */ +export interface e_draft_game_player_statusGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "e_draft_game_player_status" */ +export interface e_draft_game_player_status_aggregateGenqlSelection{ + aggregate?: e_draft_game_player_status_aggregate_fieldsGenqlSelection + nodes?: e_draft_game_player_statusGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate 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 +} + + +/** 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 compare columns of type "e_draft_game_player_status_enum". All fields are combined with logical 'AND'. */ +export interface e_draft_game_player_status_enum_comparison_exp {_eq?: (e_draft_game_player_status_enum | null),_in?: (e_draft_game_player_status_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_draft_game_player_status_enum | null),_nin?: (e_draft_game_player_status_enum[] | null)} + + +/** input type for inserting data into table "e_draft_game_player_status" */ +export interface e_draft_game_player_status_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_draft_game_player_status_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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 +} + + +/** 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 +} + + +/** input type for inserting object relation for remote table "e_draft_game_player_status" */ +export interface e_draft_game_player_status_obj_rel_insert_input {data: e_draft_game_player_status_insert_input, +/** upsert condition */ +on_conflict?: (e_draft_game_player_status_on_conflict | null)} + + +/** on_conflict condition type for table "e_draft_game_player_status" */ +export interface e_draft_game_player_status_on_conflict {constraint: e_draft_game_player_status_constraint,update_columns?: e_draft_game_player_status_update_column[],where?: (e_draft_game_player_status_bool_exp | null)} + + +/** 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)} + + +/** primary key columns input for table: e_draft_game_player_status */ +export interface e_draft_game_player_status_pk_columns_input {value: Scalars['String']} + + +/** input type for updating data in table "e_draft_game_player_status" */ +export interface e_draft_game_player_status_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 { +/** Stream column input with initial value */ +initial_value: e_draft_game_player_status_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface e_draft_game_player_status_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_draft_game_player_status_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_draft_game_player_status_set_input | null), +/** filter the rows which have to be updated */ +where: e_draft_game_player_status_bool_exp} + + +/** columns and relationships of "e_draft_game_status" */ +export interface e_draft_game_statusGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "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 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 +} + + +/** 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 compare columns of type "e_draft_game_status_enum". All fields are combined with logical 'AND'. */ +export interface e_draft_game_status_enum_comparison_exp {_eq?: (e_draft_game_status_enum | null),_in?: (e_draft_game_status_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_draft_game_status_enum | null),_nin?: (e_draft_game_status_enum[] | null)} + + +/** input type for inserting data into table "e_draft_game_status" */ +export interface e_draft_game_status_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_draft_game_status_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_draft_game_status_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "e_draft_game_status" */ +export interface e_draft_game_status_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_draft_game_statusGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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)} + + +/** 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)} + + +/** 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)} + + +/** primary key columns input for table: e_draft_game_status */ +export interface e_draft_game_status_pk_columns_input {value: Scalars['String']} + + +/** input type for updating data in table "e_draft_game_status" */ +export interface e_draft_game_status_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** 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)} + + +/** Initial value of the column from where the streaming should start */ +export interface e_draft_game_status_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_draft_game_status_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_draft_game_status_set_input | null), +/** filter the rows which have to be updated */ +where: e_draft_game_status_bool_exp} + + +/** columns and relationships of "e_event_media_access" */ +export interface e_event_media_accessGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "e_event_media_access" */ +export interface e_event_media_access_aggregateGenqlSelection{ + aggregate?: e_event_media_access_aggregate_fieldsGenqlSelection + nodes?: e_event_media_accessGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "e_event_media_access" */ +export interface e_event_media_access_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_event_media_access_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_event_media_access_max_fieldsGenqlSelection + min?: e_event_media_access_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "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 compare columns of type "e_event_media_access_enum". All fields are combined with logical 'AND'. */ +export interface e_event_media_access_enum_comparison_exp {_eq?: (e_event_media_access_enum | null),_in?: (e_event_media_access_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_event_media_access_enum | null),_nin?: (e_event_media_access_enum[] | null)} + + +/** input type for inserting data into table "e_event_media_access" */ +export interface e_event_media_access_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_event_media_access_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_event_media_access_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "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 +} + + +/** 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)} + + +/** 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)} + + +/** primary key columns input for table: e_event_media_access */ +export interface e_event_media_access_pk_columns_input {value: Scalars['String']} + + +/** 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: 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 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} + + +/** columns and relationships of "e_event_visibility" */ +export interface e_event_visibilityGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "e_event_visibility" */ +export interface e_event_visibility_aggregateGenqlSelection{ + aggregate?: e_event_visibility_aggregate_fieldsGenqlSelection + nodes?: e_event_visibilityGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate 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 +} + + +/** Boolean expression to filter rows from the table "e_event_visibility". All fields are combined with a logical 'AND'. */ +export interface e_event_visibility_bool_exp {_and?: (e_event_visibility_bool_exp[] | null),_not?: (e_event_visibility_bool_exp | null),_or?: (e_event_visibility_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} + + +/** Boolean expression to compare columns of type "e_event_visibility_enum". All fields are combined with logical 'AND'. */ +export interface e_event_visibility_enum_comparison_exp {_eq?: (e_event_visibility_enum | null),_in?: (e_event_visibility_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_event_visibility_enum | null),_nin?: (e_event_visibility_enum[] | null)} + + +/** input type for inserting data into table "e_event_visibility" */ +export interface e_event_visibility_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_event_visibility_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_event_visibility_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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 +} + + +/** 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)} + + +/** Ordering options when selecting data from "e_event_visibility". */ +export interface e_event_visibility_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']} + + +/** 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)} + + +/** 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)} + + +/** 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 +} + + +/** 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 +} + + +/** 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 +} + + +/** Boolean expression to filter rows from the table "e_friend_status". All fields are combined with a logical 'AND'. */ +export interface e_friend_status_bool_exp {_and?: (e_friend_status_bool_exp[] | null),_not?: (e_friend_status_bool_exp | null),_or?: (e_friend_status_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} + + +/** Boolean expression to compare columns of type "e_friend_status_enum". All fields are combined with logical 'AND'. */ +export interface e_friend_status_enum_comparison_exp {_eq?: (e_friend_status_enum | null),_in?: (e_friend_status_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_friend_status_enum | null),_nin?: (e_friend_status_enum[] | null)} + + +/** input type for inserting data into table "e_friend_status" */ +export interface e_friend_status_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | 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 e_friend_status_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "e_friend_status" */ +export interface e_friend_status_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_friend_statusGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "e_friend_status" */ +export interface e_friend_status_obj_rel_insert_input {data: e_friend_status_insert_input, +/** upsert condition */ +on_conflict?: (e_friend_status_on_conflict | null)} + + +/** on_conflict condition type for table "e_friend_status" */ +export interface e_friend_status_on_conflict {constraint: e_friend_status_constraint,update_columns?: e_friend_status_update_column[],where?: (e_friend_status_bool_exp | null)} + + +/** 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: e_friend_status */ +export interface e_friend_status_pk_columns_input {value: Scalars['String']} + + +/** input type for updating data in table "e_friend_status" */ +export interface e_friend_status_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** Streaming cursor of the table "e_friend_status" */ +export interface e_friend_status_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_friend_status_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface 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} + + +/** 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 +} + + +/** 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 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 +} + + +/** 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 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)} + + +/** 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 max on columns */ +export interface e_game_cfg_types_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_game_cfg_types_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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 +} + + +/** 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)} + + +/** 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)} + + +/** primary key columns input for table: e_game_cfg_types */ +export interface e_game_cfg_types_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)} + + +/** 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)} + + +/** 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 + __scalar?: boolean | number +} + + +/** 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_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_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_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_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_game_plugin_channels_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_game_plugin_channels_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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_game_plugin_channelsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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_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_game_plugin_channels */ +export interface e_game_plugin_channels_pk_columns_input {value: Scalars['String']} + + +/** 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_game_plugin_channels" */ +export interface 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 | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface e_game_plugin_channels_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_game_plugin_channels_updates { +/** 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} + + +/** 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 + __scalar?: boolean | number +} + + +/** 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_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_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_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_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_game_plugin_install_statuses_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_game_plugin_install_statuses_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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_game_plugin_install_statusesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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_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_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_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_game_plugin_install_statuses" */ +export interface 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 | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface e_game_plugin_install_statuses_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface 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 | null), +/** filter the rows which have to be updated */ +where: e_game_plugin_install_statuses_bool_exp} + + +/** columns and relationships of "e_game_plugin_kinds" */ +export interface e_game_plugin_kindsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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_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_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_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_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_game_plugin_kinds_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_game_plugin_kinds_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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_game_plugin_kindsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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_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_game_plugin_kinds */ +export interface e_game_plugin_kinds_pk_columns_input {value: Scalars['String']} + + +/** 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_game_plugin_kinds" */ +export interface 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 | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface e_game_plugin_kinds_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_game_plugin_kinds_updates { +/** 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} + + +/** columns and relationships of "e_game_server_node_statuses" */ +export interface e_game_server_node_statusesGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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_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_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_game_server_node_statuses_enum". All fields are combined with logical 'AND'. */ +export interface e_game_server_node_statuses_enum_comparison_exp {_eq?: (e_game_server_node_statuses_enum | null),_in?: (e_game_server_node_statuses_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_game_server_node_statuses_enum | null),_nin?: (e_game_server_node_statuses_enum[] | null)} + + +/** input type for inserting data into table "e_game_server_node_statuses" */ +export interface e_game_server_node_statuses_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_game_server_node_statuses_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_game_server_node_statuses_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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_game_server_node_statusesGenqlSelection + __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, +/** upsert condition */ +on_conflict?: (e_game_server_node_statuses_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)} + + +/** 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_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_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_game_server_node_statuses" */ +export interface e_game_server_node_statuses_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_game_server_node_statuses_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface e_game_server_node_statuses_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_game_server_node_statuses_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_game_server_node_statuses_set_input | null), +/** filter the rows which have to be updated */ +where: e_game_server_node_statuses_bool_exp} + + +/** columns and relationships of "e_league_movement_types" */ +export interface e_league_movement_typesGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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_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_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_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_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_league_movement_types_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_league_movement_types_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "e_league_movement_types" */ +export interface e_league_movement_types_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_league_movement_typesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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)} + + +/** 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_league_movement_types */ +export interface e_league_movement_types_pk_columns_input {value: Scalars['String']} + + +/** input type for updating data in table "e_league_movement_types" */ +export interface e_league_movement_types_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** Streaming cursor of the table "e_league_movement_types" */ +export interface e_league_movement_types_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_league_movement_types_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface e_league_movement_types_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_league_movement_types_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_league_movement_types_set_input | null), +/** filter the rows which have to be updated */ +where: e_league_movement_types_bool_exp} + + +/** columns and relationships of "e_league_proposal_statuses" */ +export interface e_league_proposal_statusesGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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_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_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_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_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_league_proposal_statuses_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_league_proposal_statuses_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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_league_proposal_statusesGenqlSelection + __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)} + + +/** 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_league_proposal_statuses */ +export interface e_league_proposal_statuses_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)} + + +/** Streaming cursor of the table "e_league_proposal_statuses" */ +export interface e_league_proposal_statuses_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_league_proposal_statuses_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface e_league_proposal_statuses_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_league_proposal_statuses_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_league_proposal_statuses_set_input | null), +/** filter the rows which have to be updated */ +where: e_league_proposal_statuses_bool_exp} + + +/** columns and relationships of "e_league_registration_statuses" */ +export interface e_league_registration_statusesGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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_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_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_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_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_league_registration_statuses_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_league_registration_statuses_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "e_league_registration_statuses" */ +export interface e_league_registration_statuses_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_league_registration_statusesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "e_league_registration_statuses" */ +export interface e_league_registration_statuses_obj_rel_insert_input {data: e_league_registration_statuses_insert_input, +/** upsert condition */ +on_conflict?: (e_league_registration_statuses_on_conflict | null)} + + +/** on_conflict condition type for table "e_league_registration_statuses" */ +export interface e_league_registration_statuses_on_conflict {constraint: e_league_registration_statuses_constraint,update_columns?: e_league_registration_statuses_update_column[],where?: (e_league_registration_statuses_bool_exp | null)} + + +/** 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_league_registration_statuses */ +export interface e_league_registration_statuses_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)} + + +/** Streaming cursor of the table "e_league_registration_statuses" */ +export interface e_league_registration_statuses_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_league_registration_statuses_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface e_league_registration_statuses_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_league_registration_statuses_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_league_registration_statuses_set_input | null), +/** filter the rows which have to be updated */ +where: e_league_registration_statuses_bool_exp} + + +/** columns and relationships of "e_league_season_statuses" */ +export interface e_league_season_statusesGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __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 + __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 + __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 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_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_league_season_statuses_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_league_season_statuses_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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_league_season_statusesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "e_league_season_statuses" */ +export interface e_league_season_statuses_obj_rel_insert_input {data: e_league_season_statuses_insert_input, +/** upsert condition */ +on_conflict?: (e_league_season_statuses_on_conflict | null)} + + +/** on_conflict condition type for table "e_league_season_statuses" */ +export interface e_league_season_statuses_on_conflict {constraint: e_league_season_statuses_constraint,update_columns?: e_league_season_statuses_update_column[],where?: (e_league_season_statuses_bool_exp | null)} + + +/** 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_league_season_statuses */ +export interface e_league_season_statuses_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)} + + +/** 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_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_league_season_statuses_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_league_season_statuses_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_league_season_statuses_set_input | null), +/** filter the rows which have to be updated */ +where: e_league_season_statuses_bool_exp} + + +/** columns and relationships of "e_lobby_access" */ +export interface e_lobby_accessGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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_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_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_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_lobby_access" */ +export interface e_lobby_access_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_lobby_access_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_lobby_access_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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_lobby_accessGenqlSelection + __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)} + + +/** Ordering options when selecting data from "e_lobby_access". */ +export interface e_lobby_access_order_by {description?: (order_by | null),value?: (order_by | null)} + + +/** primary key columns input for table: e_lobby_access */ +export interface e_lobby_access_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)} + + +/** 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_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_lobby_access_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_lobby_access_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_lobby_access_set_input | null), +/** filter the rows which have to be updated */ +where: e_lobby_access_bool_exp} + + +/** columns and relationships of "e_lobby_player_status" */ +export interface e_lobby_player_statusGenqlSelection{ + description?: boolean | number + 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 + __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 + __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 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_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_lobby_player_status_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_lobby_player_status_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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_lobby_player_statusGenqlSelection + __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)} + + +/** 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_lobby_player_status */ +export interface e_lobby_player_status_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)} + + +/** 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_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_lobby_player_status_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_lobby_player_status_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_lobby_player_status_set_input | null), +/** filter the rows which have to be updated */ +where: e_lobby_player_status_bool_exp} + + +/** columns and relationships of "e_map_pool_types" */ +export interface e_map_pool_typesGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "e_map_pool_types" */ +export interface e_map_pool_types_aggregateGenqlSelection{ + aggregate?: e_map_pool_types_aggregate_fieldsGenqlSelection + nodes?: e_map_pool_typesGenqlSelection + __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 + __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 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_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_map_pool_types_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_map_pool_types_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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_map_pool_typesGenqlSelection + __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)} + + +/** 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_map_pool_types */ +export interface e_map_pool_types_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)} + + +/** 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_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_map_pool_types_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_map_pool_types_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_map_pool_types_set_input | null), +/** filter the rows which have to be updated */ +where: e_map_pool_types_bool_exp} + + +/** 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_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_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_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_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_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_match_clip_visibility_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_match_clip_visibility_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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_match_clip_visibilityGenqlSelection + __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)} + + +/** 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_match_clip_visibility */ +export interface e_match_clip_visibility_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)} + + +/** 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_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_match_clip_visibility_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_match_clip_visibility_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_match_clip_visibility_set_input | null), +/** filter the rows which have to be updated */ +where: e_match_clip_visibility_bool_exp} + + +/** 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_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_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_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_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_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_match_map_status_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_match_map_status_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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_match_map_statusGenqlSelection + __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)} + + +/** 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_match_map_status */ +export interface e_match_map_status_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)} + + +/** 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_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_match_map_status_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_match_map_status_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_match_map_status_set_input | null), +/** filter the rows which have to be updated */ +where: e_match_map_status_bool_exp} + + +/** columns and relationships of "e_match_mode" */ +export interface e_match_modeGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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_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_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_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_match_mode" */ +export interface e_match_mode_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_match_mode_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_match_mode_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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_match_modeGenqlSelection + __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)} + + +/** 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_match_mode */ +export interface e_match_mode_pk_columns_input {value: Scalars['String']} + + +/** input type for updating data in table "e_match_mode" */ +export interface e_match_mode_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** 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_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_match_mode_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_match_mode_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_match_mode_set_input | null), +/** filter the rows which have to be updated */ +where: e_match_mode_bool_exp} + + +/** 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_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_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_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_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_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_match_party_sources_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_match_party_sources_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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_match_party_sourcesGenqlSelection + __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)} + + +/** 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_match_party_sources */ +export interface e_match_party_sources_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)} + + +/** 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_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_match_party_sources_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_match_party_sources_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_match_party_sources_set_input | null), +/** filter the rows which have to be updated */ +where: e_match_party_sources_bool_exp} + + +/** 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_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_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_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_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_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_match_status_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_match_status_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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_match_statusGenqlSelection + __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)} + + +/** 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_match_status */ +export interface e_match_status_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)} + + +/** 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_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_match_status_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_match_status_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_match_status_set_input | null), +/** filter the rows which have to be updated */ +where: e_match_status_bool_exp} + + +/** 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_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_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_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_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_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_match_types_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_match_types_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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_match_typesGenqlSelection + __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)} + + +/** 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_match_types */ +export interface e_match_types_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)} + + +/** 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_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_match_types_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_match_types_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_match_types_set_input | null), +/** filter the rows which have to be updated */ +where: e_match_types_bool_exp} + + +/** columns and relationships of "e_notification_types" */ +export interface e_notification_typesGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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_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_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_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_notification_types" */ +export interface e_notification_types_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_notification_types_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_notification_types_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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_notification_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)} + + +/** 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_notification_types */ +export interface e_notification_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)} + + +/** 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_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_notification_types_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_notification_types_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_notification_types_set_input | null), +/** filter the rows which have to be updated */ +where: e_notification_types_bool_exp} + + +/** 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_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_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_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_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_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_objective_types_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_objective_types_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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_objective_typesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "e_objective_types" */ +export interface e_objective_types_on_conflict {constraint: e_objective_types_constraint,update_columns?: e_objective_types_update_column[],where?: (e_objective_types_bool_exp | null)} + + +/** 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_objective_types */ +export interface e_objective_types_pk_columns_input {value: Scalars['String']} + + +/** 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_objective_types" */ +export interface e_objective_types_stream_cursor_input { +/** Stream column input with initial value */ +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_objective_types_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_objective_types_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_objective_types_set_input | null), +/** filter the rows which have to be updated */ +where: e_objective_types_bool_exp} + + +/** columns and relationships of "e_player_roles" */ +export interface e_player_rolesGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "e_player_roles" */ +export interface e_player_roles_aggregateGenqlSelection{ + aggregate?: e_player_roles_aggregate_fieldsGenqlSelection + nodes?: e_player_rolesGenqlSelection + __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 + __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 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_player_roles" */ +export interface e_player_roles_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_player_roles_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_player_roles_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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_player_rolesGenqlSelection + __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)} + + +/** 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_player_roles */ +export interface e_player_roles_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)} + + +/** 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_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_player_roles_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_player_roles_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_player_roles_set_input | null), +/** filter the rows which have to be updated */ +where: e_player_roles_bool_exp} + + +/** columns and relationships of "e_plugin_runtimes" */ +export interface e_plugin_runtimesGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "e_plugin_runtimes" */ +export interface e_plugin_runtimes_aggregateGenqlSelection{ + aggregate?: e_plugin_runtimes_aggregate_fieldsGenqlSelection + nodes?: e_plugin_runtimesGenqlSelection + __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 + __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 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_plugin_runtimes" */ +export interface e_plugin_runtimes_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_plugin_runtimes_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_plugin_runtimes_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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_plugin_runtimesGenqlSelection + __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)} + + +/** 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_plugin_runtimes */ +export interface e_plugin_runtimes_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)} + + +/** 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_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_plugin_runtimes_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_plugin_runtimes_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_plugin_runtimes_set_input | null), +/** filter the rows which have to be updated */ +where: e_plugin_runtimes_bool_exp} + + +/** columns and relationships of "e_ready_settings" */ +export interface e_ready_settingsGenqlSelection{ + description?: boolean | number + 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 + __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 + __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 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_ready_settings" */ +export interface e_ready_settings_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_ready_settings_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_ready_settings_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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_ready_settingsGenqlSelection + __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)} + + +/** 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_ready_settings */ +export interface e_ready_settings_pk_columns_input {value: Scalars['String']} + + +/** input type for updating data in table "e_ready_settings" */ +export interface e_ready_settings_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** 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_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_ready_settings_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_ready_settings_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_ready_settings_set_input | null), +/** filter the rows which have to be updated */ +where: e_ready_settings_bool_exp} + + +/** columns and relationships of "e_sanction_scopes" */ +export interface e_sanction_scopesGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "e_sanction_scopes" */ +export interface e_sanction_scopes_aggregateGenqlSelection{ + aggregate?: e_sanction_scopes_aggregate_fieldsGenqlSelection + nodes?: e_sanction_scopesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "e_sanction_scopes" */ +export interface e_sanction_scopes_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_sanction_scopes_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_sanction_scopes_max_fieldsGenqlSelection + min?: e_sanction_scopes_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "e_sanction_scopes". All fields are combined with a logical 'AND'. */ +export interface e_sanction_scopes_bool_exp {_and?: (e_sanction_scopes_bool_exp[] | null),_not?: (e_sanction_scopes_bool_exp | null),_or?: (e_sanction_scopes_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} + + +/** input type for inserting data into table "e_sanction_scopes" */ +export interface e_sanction_scopes_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_sanction_scopes_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_sanction_scopes_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "e_sanction_scopes" */ +export interface e_sanction_scopes_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_sanction_scopesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "e_sanction_scopes" */ +export interface e_sanction_scopes_obj_rel_insert_input {data: e_sanction_scopes_insert_input, +/** upsert condition */ +on_conflict?: (e_sanction_scopes_on_conflict | null)} + + +/** on_conflict condition type for table "e_sanction_scopes" */ +export interface e_sanction_scopes_on_conflict {constraint: e_sanction_scopes_constraint,update_columns?: e_sanction_scopes_update_column[],where?: (e_sanction_scopes_bool_exp | null)} + + +/** Ordering options when selecting data from "e_sanction_scopes". */ +export interface e_sanction_scopes_order_by {description?: (order_by | null),value?: (order_by | null)} + + +/** primary key columns input for table: e_sanction_scopes */ +export interface e_sanction_scopes_pk_columns_input {value: Scalars['String']} + + +/** input type for updating data in table "e_sanction_scopes" */ +export interface e_sanction_scopes_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** Streaming cursor of the table "e_sanction_scopes" */ +export interface e_sanction_scopes_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_sanction_scopes_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_scopes_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_sanction_scopes_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_sanction_scopes_set_input | null), +/** filter the rows which have to be updated */ +where: e_sanction_scopes_bool_exp} + + +/** columns and relationships of "e_sanction_sources" */ +export interface e_sanction_sourcesGenqlSelection{ + /** Comma separated ban durations in minutes, indexed by occurrence count */ + default_durations?: boolean | number + default_enabled?: boolean | number + default_scope?: boolean | number + default_threshold?: boolean | number + default_window_days?: boolean | number + description?: boolean | number + /** An object relationship */ + e_sanction_scope?: e_sanction_scopesGenqlSelection + value?: boolean | number + /** Source issues a player_sanctions ban row instead of a scoped cooldown */ + writes_platform_ban?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "e_sanction_sources" */ +export interface e_sanction_sources_aggregateGenqlSelection{ + aggregate?: e_sanction_sources_aggregate_fieldsGenqlSelection + nodes?: e_sanction_sourcesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "e_sanction_sources" */ +export interface e_sanction_sources_aggregate_fieldsGenqlSelection{ + avg?: e_sanction_sources_avg_fieldsGenqlSelection + count?: { __args: {columns?: (e_sanction_sources_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_sanction_sources_max_fieldsGenqlSelection + min?: e_sanction_sources_min_fieldsGenqlSelection + stddev?: e_sanction_sources_stddev_fieldsGenqlSelection + stddev_pop?: e_sanction_sources_stddev_pop_fieldsGenqlSelection + stddev_samp?: e_sanction_sources_stddev_samp_fieldsGenqlSelection + sum?: e_sanction_sources_sum_fieldsGenqlSelection + var_pop?: e_sanction_sources_var_pop_fieldsGenqlSelection + var_samp?: e_sanction_sources_var_samp_fieldsGenqlSelection + variance?: e_sanction_sources_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface e_sanction_sources_avg_fieldsGenqlSelection{ + default_threshold?: boolean | number + default_window_days?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "e_sanction_sources". All fields are combined with a logical 'AND'. */ +export interface e_sanction_sources_bool_exp {_and?: (e_sanction_sources_bool_exp[] | null),_not?: (e_sanction_sources_bool_exp | null),_or?: (e_sanction_sources_bool_exp[] | null),default_durations?: (String_comparison_exp | null),default_enabled?: (Boolean_comparison_exp | null),default_scope?: (String_comparison_exp | null),default_threshold?: (Int_comparison_exp | null),default_window_days?: (Int_comparison_exp | null),description?: (String_comparison_exp | null),e_sanction_scope?: (e_sanction_scopes_bool_exp | null),value?: (String_comparison_exp | null),writes_platform_ban?: (Boolean_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "e_sanction_sources" */ +export interface e_sanction_sources_inc_input {default_threshold?: (Scalars['Int'] | null),default_window_days?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "e_sanction_sources" */ +export interface e_sanction_sources_insert_input { +/** Comma separated ban durations in minutes, indexed by occurrence count */ +default_durations?: (Scalars['String'] | null),default_enabled?: (Scalars['Boolean'] | null),default_scope?: (Scalars['String'] | null),default_threshold?: (Scalars['Int'] | null),default_window_days?: (Scalars['Int'] | null),description?: (Scalars['String'] | null),e_sanction_scope?: (e_sanction_scopes_obj_rel_insert_input | null),value?: (Scalars['String'] | null), +/** Source issues a player_sanctions ban row instead of a scoped cooldown */ +writes_platform_ban?: (Scalars['Boolean'] | null)} + + +/** aggregate max on columns */ +export interface e_sanction_sources_max_fieldsGenqlSelection{ + /** Comma separated ban durations in minutes, indexed by occurrence count */ + default_durations?: boolean | number + default_scope?: boolean | number + default_threshold?: boolean | number + default_window_days?: boolean | number + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_sanction_sources_min_fieldsGenqlSelection{ + /** Comma separated ban durations in minutes, indexed by occurrence count */ + default_durations?: boolean | number + default_scope?: boolean | number + default_threshold?: boolean | number + default_window_days?: boolean | number + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "e_sanction_sources" */ +export interface e_sanction_sources_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_sanction_sourcesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "e_sanction_sources" */ +export interface e_sanction_sources_on_conflict {constraint: e_sanction_sources_constraint,update_columns?: e_sanction_sources_update_column[],where?: (e_sanction_sources_bool_exp | null)} + + +/** Ordering options when selecting data from "e_sanction_sources". */ +export interface e_sanction_sources_order_by {default_durations?: (order_by | null),default_enabled?: (order_by | null),default_scope?: (order_by | null),default_threshold?: (order_by | null),default_window_days?: (order_by | null),description?: (order_by | null),e_sanction_scope?: (e_sanction_scopes_order_by | null),value?: (order_by | null),writes_platform_ban?: (order_by | null)} + + +/** primary key columns input for table: e_sanction_sources */ +export interface e_sanction_sources_pk_columns_input {value: Scalars['String']} + + +/** input type for updating data in table "e_sanction_sources" */ +export interface e_sanction_sources_set_input { +/** Comma separated ban durations in minutes, indexed by occurrence count */ +default_durations?: (Scalars['String'] | null),default_enabled?: (Scalars['Boolean'] | null),default_scope?: (Scalars['String'] | null),default_threshold?: (Scalars['Int'] | null),default_window_days?: (Scalars['Int'] | null),description?: (Scalars['String'] | null),value?: (Scalars['String'] | null), +/** Source issues a player_sanctions ban row instead of a scoped cooldown */ +writes_platform_ban?: (Scalars['Boolean'] | null)} + + +/** aggregate stddev on columns */ +export interface e_sanction_sources_stddev_fieldsGenqlSelection{ + default_threshold?: boolean | number + default_window_days?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface e_sanction_sources_stddev_pop_fieldsGenqlSelection{ + default_threshold?: boolean | number + default_window_days?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface e_sanction_sources_stddev_samp_fieldsGenqlSelection{ + default_threshold?: boolean | number + default_window_days?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "e_sanction_sources" */ +export interface e_sanction_sources_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_sanction_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_sanction_sources_stream_cursor_value_input { +/** Comma separated ban durations in minutes, indexed by occurrence count */ +default_durations?: (Scalars['String'] | null),default_enabled?: (Scalars['Boolean'] | null),default_scope?: (Scalars['String'] | null),default_threshold?: (Scalars['Int'] | null),default_window_days?: (Scalars['Int'] | null),description?: (Scalars['String'] | null),value?: (Scalars['String'] | null), +/** Source issues a player_sanctions ban row instead of a scoped cooldown */ +writes_platform_ban?: (Scalars['Boolean'] | null)} + + +/** aggregate sum on columns */ +export interface e_sanction_sources_sum_fieldsGenqlSelection{ + default_threshold?: boolean | number + default_window_days?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface e_sanction_sources_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (e_sanction_sources_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (e_sanction_sources_set_input | null), +/** filter the rows which have to be updated */ +where: e_sanction_sources_bool_exp} + + +/** aggregate var_pop on columns */ +export interface e_sanction_sources_var_pop_fieldsGenqlSelection{ + default_threshold?: boolean | number + default_window_days?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface e_sanction_sources_var_samp_fieldsGenqlSelection{ + default_threshold?: boolean | number + default_window_days?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface e_sanction_sources_variance_fieldsGenqlSelection{ + default_threshold?: boolean | number + default_window_days?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "e_sanction_types" */ +export interface e_sanction_typesGenqlSelection{ + description?: boolean | number + 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 + __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 + __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 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_sanction_types" */ +export interface e_sanction_types_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_sanction_types_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_sanction_types_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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_sanction_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, +/** upsert condition */ +on_conflict?: (e_sanction_types_on_conflict | null)} + + +/** on_conflict condition type for table "e_sanction_types" */ +export interface e_sanction_types_on_conflict {constraint: e_sanction_types_constraint,update_columns?: e_sanction_types_update_column[],where?: (e_sanction_types_bool_exp | null)} + + +/** Ordering options when selecting data from "e_sanction_types". */ +export interface e_sanction_types_order_by {description?: (order_by | null),value?: (order_by | null)} + + +/** primary key columns input for table: e_sanction_types */ +export interface e_sanction_types_pk_columns_input {value: Scalars['String']} + + +/** 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_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_sanction_types_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_sanction_types_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_sanction_types_set_input | null), +/** filter the rows which have to be updated */ +where: e_sanction_types_bool_exp} + + +/** columns and relationships of "e_scrim_request_statuses" */ +export interface e_scrim_request_statusesGenqlSelection{ + description?: boolean | number + /** An array relationship */ + scrim_requests?: (team_scrim_requestsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (team_scrim_requests_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (team_scrim_requests_order_by[] | null), + /** filter the rows returned */ + where?: (team_scrim_requests_bool_exp | null)} }) + /** An aggregate relationship */ + scrim_requests_aggregate?: (team_scrim_requests_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (team_scrim_requests_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (team_scrim_requests_order_by[] | null), + /** filter the rows returned */ + where?: (team_scrim_requests_bool_exp | null)} }) + value?: boolean | number + __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 + __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 + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "e_scrim_request_statuses". All fields are combined with a logical 'AND'. */ +export interface e_scrim_request_statuses_bool_exp {_and?: (e_scrim_request_statuses_bool_exp[] | null),_not?: (e_scrim_request_statuses_bool_exp | null),_or?: (e_scrim_request_statuses_bool_exp[] | null),description?: (String_comparison_exp | null),scrim_requests?: (team_scrim_requests_bool_exp | null),scrim_requests_aggregate?: (team_scrim_requests_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} + + +/** Boolean expression to compare columns of type "e_scrim_request_statuses_enum". All fields are combined with logical 'AND'. */ +export interface e_scrim_request_statuses_enum_comparison_exp {_eq?: (e_scrim_request_statuses_enum | null),_in?: (e_scrim_request_statuses_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_scrim_request_statuses_enum | null),_nin?: (e_scrim_request_statuses_enum[] | null)} + + +/** 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_scrim_request_statuses_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_scrim_request_statuses_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "e_scrim_request_statuses" */ +export interface e_scrim_request_statuses_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_scrim_request_statusesGenqlSelection + __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)} + + +/** 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_scrim_request_statuses */ +export interface e_scrim_request_statuses_pk_columns_input {value: Scalars['String']} + + +/** 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_scrim_request_statuses" */ +export interface e_scrim_request_statuses_stream_cursor_input { +/** Stream column input with initial value */ +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_scrim_request_statuses_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_scrim_request_statuses_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_scrim_request_statuses_set_input | null), +/** filter the rows which have to be updated */ +where: e_scrim_request_statuses_bool_exp} + + +/** columns and relationships of "e_server_types" */ +export interface e_server_typesGenqlSelection{ + description?: boolean | number + /** An array relationship */ + servers?: (serversGenqlSelection & { __args?: { + /** distinct select on columns */ + 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?: (servers_order_by[] | null), + /** filter the rows returned */ + where?: (servers_bool_exp | null)} }) + /** An aggregate relationship */ + servers_aggregate?: (servers_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + 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?: (servers_order_by[] | null), + /** filter the rows returned */ + where?: (servers_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 + __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 + __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 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_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_server_types_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_server_types_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "e_server_types" */ +export interface e_server_types_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_server_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)} + + +/** 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_server_types */ +export interface e_server_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)} + + +/** Streaming cursor of the table "e_server_types" */ +export interface e_server_types_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_server_types_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface e_server_types_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_server_types_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_server_types_set_input | null), +/** filter the rows which have to be updated */ +where: e_server_types_bool_exp} + + +/** columns and relationships of "e_sides" */ +export interface e_sidesGenqlSelection{ + description?: boolean | number + /** An array relationship */ + match_map_lineup_1?: (match_mapsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_maps_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (match_maps_order_by[] | null), + /** filter the rows returned */ + where?: (match_maps_bool_exp | null)} }) + /** An aggregate relationship */ + match_map_lineup_1_aggregate?: (match_maps_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_maps_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (match_maps_order_by[] | null), + /** filter the rows returned */ + where?: (match_maps_bool_exp | null)} }) + /** An array relationship */ + match_map_lineup_2?: (match_mapsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_maps_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (match_maps_order_by[] | null), + /** filter the rows returned */ + where?: (match_maps_bool_exp | null)} }) + /** An aggregate relationship */ + match_map_lineup_2_aggregate?: (match_maps_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_maps_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (match_maps_order_by[] | null), + /** filter the rows returned */ + where?: (match_maps_bool_exp | null)} }) + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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_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_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_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_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_sides_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_sides_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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_sidesGenqlSelection + __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)} + + +/** 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_sides */ +export interface e_sides_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)} + + +/** Streaming cursor of the table "e_sides" */ +export interface e_sides_stream_cursor_input { +/** Stream column input with initial value */ +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_sides_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_sides_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_sides_set_input | null), +/** filter the rows which have to be updated */ +where: e_sides_bool_exp} + + +/** columns and relationships of "e_system_alert_types" */ +export interface e_system_alert_typesGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "e_system_alert_types" */ +export interface e_system_alert_types_aggregateGenqlSelection{ + aggregate?: e_system_alert_types_aggregate_fieldsGenqlSelection + nodes?: e_system_alert_typesGenqlSelection + __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 + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "e_system_alert_types". All fields are combined with a logical 'AND'. */ +export interface e_system_alert_types_bool_exp {_and?: (e_system_alert_types_bool_exp[] | null),_not?: (e_system_alert_types_bool_exp | null),_or?: (e_system_alert_types_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} + + +/** Boolean expression to compare columns of type "e_system_alert_types_enum". All fields are combined with logical 'AND'. */ +export interface e_system_alert_types_enum_comparison_exp {_eq?: (e_system_alert_types_enum | null),_in?: (e_system_alert_types_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_system_alert_types_enum | null),_nin?: (e_system_alert_types_enum[] | null)} + + +/** 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_system_alert_types_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_system_alert_types_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "e_system_alert_types" */ +export interface e_system_alert_types_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_system_alert_typesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "e_system_alert_types" */ +export interface e_system_alert_types_on_conflict {constraint: e_system_alert_types_constraint,update_columns?: e_system_alert_types_update_column[],where?: (e_system_alert_types_bool_exp | null)} + + +/** Ordering options when selecting data from "e_system_alert_types". */ +export interface e_system_alert_types_order_by {description?: (order_by | null),value?: (order_by | null)} + + +/** 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_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_system_alert_types" */ +export interface e_system_alert_types_stream_cursor_input { +/** Stream column input with initial value */ +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_system_alert_types_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_system_alert_types_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_system_alert_types_set_input | null), +/** filter the rows which have to be updated */ +where: e_system_alert_types_bool_exp} + + +/** 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 + __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 + __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 + __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)} + + +/** 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_team_roles_max_fieldsGenqlSelection{ + description?: boolean | number + value?: 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 + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "e_team_roles" */ +export interface e_team_roles_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_team_rolesGenqlSelection + __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)} + + +/** Ordering options when selecting data from "e_team_roles". */ +export interface e_team_roles_order_by {description?: (order_by | null),team_rosters_aggregate?: (team_roster_aggregate_order_by | null),tournament_team_rosters_aggregate?: (tournament_team_roster_aggregate_order_by | null),value?: (order_by | null)} + + +/** primary key columns input for table: e_team_roles */ +export interface e_team_roles_pk_columns_input {value: Scalars['String']} + + +/** 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_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_team_roles_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_team_roles_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_team_roles_set_input | null), +/** filter the rows which have to be updated */ +where: e_team_roles_bool_exp} + + +/** columns and relationships of "e_team_roster_statuses" */ +export interface e_team_roster_statusesGenqlSelection{ + description?: boolean | number + value?: 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 + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "e_team_roster_statuses" */ +export interface e_team_roster_statuses_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_team_roster_statuses_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_team_roster_statuses_max_fieldsGenqlSelection + min?: e_team_roster_statuses_min_fieldsGenqlSelection + __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)} + + +/** 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_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_team_roster_statuses_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_team_roster_statuses_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "e_team_roster_statuses" */ +export interface e_team_roster_statuses_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_team_roster_statusesGenqlSelection + __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)} + + +/** 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_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_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)} + + +/** 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 "e_timeout_settings" */ +export interface e_timeout_settingsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "e_timeout_settings" */ +export interface e_timeout_settings_aggregateGenqlSelection{ + aggregate?: e_timeout_settings_aggregate_fieldsGenqlSelection + nodes?: e_timeout_settingsGenqlSelection + __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 + __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)} + + +/** 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_timeout_settings" */ +export interface e_timeout_settings_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_timeout_settings_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_timeout_settings_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "e_timeout_settings" */ +export interface e_timeout_settings_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_timeout_settingsGenqlSelection + __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)} + + +/** 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_timeout_settings */ +export interface e_timeout_settings_pk_columns_input {value: Scalars['String']} + + +/** 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_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)} + + +/** 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} + + +/** columns and relationships of "e_tournament_categories" */ +export interface e_tournament_categoriesGenqlSelection{ + description?: boolean | number + /** An array relationship */ + tournament_categories?: (tournament_categoriesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_categories_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_categories_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_categories_bool_exp | null)} }) + /** An aggregate relationship */ + tournament_categories_aggregate?: (tournament_categories_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_categories_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_categories_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_categories_bool_exp | null)} }) + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "e_tournament_categories" */ +export interface e_tournament_categories_aggregateGenqlSelection{ + aggregate?: e_tournament_categories_aggregate_fieldsGenqlSelection + nodes?: e_tournament_categoriesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "e_tournament_categories" */ +export interface e_tournament_categories_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_tournament_categories_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_tournament_categories_max_fieldsGenqlSelection + min?: e_tournament_categories_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "e_tournament_categories". All fields are combined with a logical 'AND'. */ +export interface e_tournament_categories_bool_exp {_and?: (e_tournament_categories_bool_exp[] | null),_not?: (e_tournament_categories_bool_exp | null),_or?: (e_tournament_categories_bool_exp[] | null),description?: (String_comparison_exp | null),tournament_categories?: (tournament_categories_bool_exp | null),tournament_categories_aggregate?: (tournament_categories_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} + + +/** Boolean expression to compare columns of type "e_tournament_categories_enum". All fields are combined with logical 'AND'. */ +export interface e_tournament_categories_enum_comparison_exp {_eq?: (e_tournament_categories_enum | null),_in?: (e_tournament_categories_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_tournament_categories_enum | null),_nin?: (e_tournament_categories_enum[] | null)} + + +/** input type for inserting data into table "e_tournament_categories" */ +export interface e_tournament_categories_insert_input {description?: (Scalars['String'] | null),tournament_categories?: (tournament_categories_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_tournament_categories_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_tournament_categories_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "e_tournament_categories" */ +export interface e_tournament_categories_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_tournament_categoriesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "e_tournament_categories" */ +export interface e_tournament_categories_obj_rel_insert_input {data: e_tournament_categories_insert_input, +/** upsert condition */ +on_conflict?: (e_tournament_categories_on_conflict | null)} + + +/** on_conflict condition type for table "e_tournament_categories" */ +export interface e_tournament_categories_on_conflict {constraint: e_tournament_categories_constraint,update_columns?: e_tournament_categories_update_column[],where?: (e_tournament_categories_bool_exp | null)} + + +/** Ordering options when selecting data from "e_tournament_categories". */ +export interface e_tournament_categories_order_by {description?: (order_by | null),tournament_categories_aggregate?: (tournament_categories_aggregate_order_by | null),value?: (order_by | null)} + + +/** primary key columns input for table: e_tournament_categories */ +export interface e_tournament_categories_pk_columns_input {value: Scalars['String']} + + +/** input type for updating data in table "e_tournament_categories" */ +export interface e_tournament_categories_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** Streaming cursor of the table "e_tournament_categories" */ +export interface e_tournament_categories_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_tournament_categories_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface e_tournament_categories_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_tournament_categories_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_tournament_categories_set_input | null), +/** filter the rows which have to be updated */ +where: e_tournament_categories_bool_exp} + + +/** columns and relationships of "e_tournament_free_agent_statuses" */ +export interface e_tournament_free_agent_statusesGenqlSelection{ + description?: boolean | number + /** An array relationship */ + tournament_free_agents?: (tournament_free_agentsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_free_agents_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_free_agents_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_free_agents_bool_exp | null)} }) + /** An aggregate relationship */ + tournament_free_agents_aggregate?: (tournament_free_agents_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_free_agents_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_free_agents_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_free_agents_bool_exp | null)} }) + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "e_tournament_free_agent_statuses" */ +export interface e_tournament_free_agent_statuses_aggregateGenqlSelection{ + aggregate?: e_tournament_free_agent_statuses_aggregate_fieldsGenqlSelection + nodes?: e_tournament_free_agent_statusesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "e_tournament_free_agent_statuses" */ +export interface e_tournament_free_agent_statuses_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_tournament_free_agent_statuses_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_tournament_free_agent_statuses_max_fieldsGenqlSelection + min?: e_tournament_free_agent_statuses_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "e_tournament_free_agent_statuses". All fields are combined with a logical 'AND'. */ +export interface e_tournament_free_agent_statuses_bool_exp {_and?: (e_tournament_free_agent_statuses_bool_exp[] | null),_not?: (e_tournament_free_agent_statuses_bool_exp | null),_or?: (e_tournament_free_agent_statuses_bool_exp[] | null),description?: (String_comparison_exp | null),tournament_free_agents?: (tournament_free_agents_bool_exp | null),tournament_free_agents_aggregate?: (tournament_free_agents_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} + + +/** Boolean expression to compare columns of type "e_tournament_free_agent_statuses_enum". All fields are combined with logical 'AND'. */ +export interface e_tournament_free_agent_statuses_enum_comparison_exp {_eq?: (e_tournament_free_agent_statuses_enum | null),_in?: (e_tournament_free_agent_statuses_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_tournament_free_agent_statuses_enum | null),_nin?: (e_tournament_free_agent_statuses_enum[] | null)} + + +/** input type for inserting data into table "e_tournament_free_agent_statuses" */ +export interface e_tournament_free_agent_statuses_insert_input {description?: (Scalars['String'] | null),tournament_free_agents?: (tournament_free_agents_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_tournament_free_agent_statuses_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_tournament_free_agent_statuses_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "e_tournament_free_agent_statuses" */ +export interface e_tournament_free_agent_statuses_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_tournament_free_agent_statusesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "e_tournament_free_agent_statuses" */ +export interface e_tournament_free_agent_statuses_obj_rel_insert_input {data: e_tournament_free_agent_statuses_insert_input, +/** upsert condition */ +on_conflict?: (e_tournament_free_agent_statuses_on_conflict | null)} + + +/** on_conflict condition type for table "e_tournament_free_agent_statuses" */ +export interface e_tournament_free_agent_statuses_on_conflict {constraint: e_tournament_free_agent_statuses_constraint,update_columns?: e_tournament_free_agent_statuses_update_column[],where?: (e_tournament_free_agent_statuses_bool_exp | null)} + + +/** Ordering options when selecting data from "e_tournament_free_agent_statuses". */ +export interface e_tournament_free_agent_statuses_order_by {description?: (order_by | null),tournament_free_agents_aggregate?: (tournament_free_agents_aggregate_order_by | null),value?: (order_by | null)} + + +/** primary key columns input for table: e_tournament_free_agent_statuses */ +export interface e_tournament_free_agent_statuses_pk_columns_input {value: Scalars['String']} + + +/** input type for updating data in table "e_tournament_free_agent_statuses" */ +export interface e_tournament_free_agent_statuses_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** Streaming cursor of the table "e_tournament_free_agent_statuses" */ +export interface e_tournament_free_agent_statuses_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_tournament_free_agent_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_tournament_free_agent_statuses_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_tournament_free_agent_statuses_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_tournament_free_agent_statuses_set_input | null), +/** filter the rows which have to be updated */ +where: e_tournament_free_agent_statuses_bool_exp} + + +/** columns and relationships of "e_tournament_registration_types" */ +export interface e_tournament_registration_typesGenqlSelection{ + description?: boolean | number + /** An array relationship */ + tournaments?: (tournamentsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournaments_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournaments_order_by[] | null), + /** filter the rows returned */ + where?: (tournaments_bool_exp | null)} }) + /** An aggregate relationship */ + tournaments_aggregate?: (tournaments_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournaments_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournaments_order_by[] | null), + /** filter the rows returned */ + where?: (tournaments_bool_exp | null)} }) + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "e_tournament_registration_types" */ +export interface e_tournament_registration_types_aggregateGenqlSelection{ + aggregate?: e_tournament_registration_types_aggregate_fieldsGenqlSelection + nodes?: e_tournament_registration_typesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "e_tournament_registration_types" */ +export interface e_tournament_registration_types_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_tournament_registration_types_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_tournament_registration_types_max_fieldsGenqlSelection + min?: e_tournament_registration_types_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "e_tournament_registration_types". All fields are combined with a logical 'AND'. */ +export interface e_tournament_registration_types_bool_exp {_and?: (e_tournament_registration_types_bool_exp[] | null),_not?: (e_tournament_registration_types_bool_exp | null),_or?: (e_tournament_registration_types_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_tournament_registration_types_enum". All fields are combined with logical 'AND'. */ +export interface e_tournament_registration_types_enum_comparison_exp {_eq?: (e_tournament_registration_types_enum | null),_in?: (e_tournament_registration_types_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_tournament_registration_types_enum | null),_nin?: (e_tournament_registration_types_enum[] | null)} + + +/** input type for inserting data into table "e_tournament_registration_types" */ +export interface e_tournament_registration_types_insert_input {description?: (Scalars['String'] | null),tournaments?: (tournaments_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_tournament_registration_types_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_tournament_registration_types_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "e_tournament_registration_types" */ +export interface e_tournament_registration_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_registration_typesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "e_tournament_registration_types" */ +export interface e_tournament_registration_types_on_conflict {constraint: e_tournament_registration_types_constraint,update_columns?: e_tournament_registration_types_update_column[],where?: (e_tournament_registration_types_bool_exp | null)} + + +/** Ordering options when selecting data from "e_tournament_registration_types". */ +export interface e_tournament_registration_types_order_by {description?: (order_by | null),tournaments_aggregate?: (tournaments_aggregate_order_by | null),value?: (order_by | null)} + + +/** primary key columns input for table: e_tournament_registration_types */ +export interface e_tournament_registration_types_pk_columns_input {value: Scalars['String']} + + +/** input type for updating data in table "e_tournament_registration_types" */ +export interface e_tournament_registration_types_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** Streaming cursor of the table "e_tournament_registration_types" */ +export interface e_tournament_registration_types_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_tournament_registration_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_tournament_registration_types_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_tournament_registration_types_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_tournament_registration_types_set_input | null), +/** filter the rows which have to be updated */ +where: e_tournament_registration_types_bool_exp} + + +/** 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_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_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_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_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_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_tournament_stage_types_max_fieldsGenqlSelection{ + description?: boolean | number + value?: 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 +} + + +/** 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 + __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)} + + +/** 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_tournament_stage_types */ +export interface e_tournament_stage_types_pk_columns_input {value: Scalars['String']} + + +/** input type for updating data in table "e_tournament_stage_types" */ +export interface e_tournament_stage_types_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** Streaming cursor of the table "e_tournament_stage_types" */ +export interface e_tournament_stage_types_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_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_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 "e_tournament_status" */ +export interface e_tournament_statusGenqlSelection{ + description?: boolean | number + /** An array relationship */ + tournaments?: (tournamentsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournaments_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournaments_order_by[] | null), + /** filter the rows returned */ + where?: (tournaments_bool_exp | null)} }) + /** An aggregate relationship */ + tournaments_aggregate?: (tournaments_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournaments_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournaments_order_by[] | null), + /** filter the rows returned */ + where?: (tournaments_bool_exp | null)} }) + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "e_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_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_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_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_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_tournament_status_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_tournament_status_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "e_tournament_status" */ +export interface e_tournament_status_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_tournament_statusGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "e_tournament_status" */ +export interface e_tournament_status_obj_rel_insert_input {data: e_tournament_status_insert_input, +/** upsert condition */ +on_conflict?: (e_tournament_status_on_conflict | null)} + + +/** on_conflict condition type for table "e_tournament_status" */ +export interface e_tournament_status_on_conflict {constraint: e_tournament_status_constraint,update_columns?: e_tournament_status_update_column[],where?: (e_tournament_status_bool_exp | null)} + + +/** Ordering options when selecting data from "e_tournament_status". */ +export interface e_tournament_status_order_by {description?: (order_by | null),tournaments_aggregate?: (tournaments_aggregate_order_by | null),value?: (order_by | null)} + + +/** primary key columns input for table: e_tournament_status */ +export interface e_tournament_status_pk_columns_input {value: Scalars['String']} + + +/** 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_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_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} + + +/** columns and relationships of "e_utility_practice_access" */ +export interface e_utility_practice_accessGenqlSelection{ + description?: boolean | number + /** An array relationship */ + utility_practice_sessions?: (utility_practice_sessionsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_practice_sessions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_practice_sessions_order_by[] | null), + /** filter the rows returned */ + where?: (utility_practice_sessions_bool_exp | null)} }) + /** An aggregate relationship */ + utility_practice_sessions_aggregate?: (utility_practice_sessions_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_practice_sessions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_practice_sessions_order_by[] | null), + /** filter the rows returned */ + where?: (utility_practice_sessions_bool_exp | null)} }) + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "e_utility_practice_access" */ +export interface e_utility_practice_access_aggregateGenqlSelection{ + aggregate?: e_utility_practice_access_aggregate_fieldsGenqlSelection + nodes?: e_utility_practice_accessGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "e_utility_practice_access" */ +export interface e_utility_practice_access_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_utility_practice_access_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_utility_practice_access_max_fieldsGenqlSelection + min?: e_utility_practice_access_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "e_utility_practice_access". All fields are combined with a logical 'AND'. */ +export interface e_utility_practice_access_bool_exp {_and?: (e_utility_practice_access_bool_exp[] | null),_not?: (e_utility_practice_access_bool_exp | null),_or?: (e_utility_practice_access_bool_exp[] | null),description?: (String_comparison_exp | null),utility_practice_sessions?: (utility_practice_sessions_bool_exp | null),utility_practice_sessions_aggregate?: (utility_practice_sessions_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} + + +/** Boolean expression to compare columns of type "e_utility_practice_access_enum". All fields are combined with logical 'AND'. */ +export interface e_utility_practice_access_enum_comparison_exp {_eq?: (e_utility_practice_access_enum | null),_in?: (e_utility_practice_access_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_utility_practice_access_enum | null),_nin?: (e_utility_practice_access_enum[] | null)} + + +/** input type for inserting data into table "e_utility_practice_access" */ +export interface e_utility_practice_access_insert_input {description?: (Scalars['String'] | null),utility_practice_sessions?: (utility_practice_sessions_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_utility_practice_access_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_utility_practice_access_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "e_utility_practice_access" */ +export interface e_utility_practice_access_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_utility_practice_accessGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "e_utility_practice_access" */ +export interface e_utility_practice_access_on_conflict {constraint: e_utility_practice_access_constraint,update_columns?: e_utility_practice_access_update_column[],where?: (e_utility_practice_access_bool_exp | null)} + + +/** Ordering options when selecting data from "e_utility_practice_access". */ +export interface e_utility_practice_access_order_by {description?: (order_by | null),utility_practice_sessions_aggregate?: (utility_practice_sessions_aggregate_order_by | null),value?: (order_by | null)} + + +/** primary key columns input for table: e_utility_practice_access */ +export interface e_utility_practice_access_pk_columns_input {value: Scalars['String']} + + +/** input type for updating data in table "e_utility_practice_access" */ +export interface e_utility_practice_access_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** Streaming cursor of the table "e_utility_practice_access" */ +export interface e_utility_practice_access_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_utility_practice_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_utility_practice_access_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_utility_practice_access_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_utility_practice_access_set_input | null), +/** filter the rows which have to be updated */ +where: e_utility_practice_access_bool_exp} + + +/** columns and relationships of "e_utility_practice_statuses" */ +export interface e_utility_practice_statusesGenqlSelection{ + description?: boolean | number + /** An array relationship */ + utility_practice_sessions?: (utility_practice_sessionsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_practice_sessions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_practice_sessions_order_by[] | null), + /** filter the rows returned */ + where?: (utility_practice_sessions_bool_exp | null)} }) + /** An aggregate relationship */ + utility_practice_sessions_aggregate?: (utility_practice_sessions_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_practice_sessions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_practice_sessions_order_by[] | null), + /** filter the rows returned */ + where?: (utility_practice_sessions_bool_exp | null)} }) + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "e_utility_practice_statuses" */ +export interface e_utility_practice_statuses_aggregateGenqlSelection{ + aggregate?: e_utility_practice_statuses_aggregate_fieldsGenqlSelection + nodes?: e_utility_practice_statusesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "e_utility_practice_statuses" */ +export interface e_utility_practice_statuses_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_utility_practice_statuses_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_utility_practice_statuses_max_fieldsGenqlSelection + min?: e_utility_practice_statuses_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "e_utility_practice_statuses". All fields are combined with a logical 'AND'. */ +export interface e_utility_practice_statuses_bool_exp {_and?: (e_utility_practice_statuses_bool_exp[] | null),_not?: (e_utility_practice_statuses_bool_exp | null),_or?: (e_utility_practice_statuses_bool_exp[] | null),description?: (String_comparison_exp | null),utility_practice_sessions?: (utility_practice_sessions_bool_exp | null),utility_practice_sessions_aggregate?: (utility_practice_sessions_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} + + +/** Boolean expression to compare columns of type "e_utility_practice_statuses_enum". All fields are combined with logical 'AND'. */ +export interface e_utility_practice_statuses_enum_comparison_exp {_eq?: (e_utility_practice_statuses_enum | null),_in?: (e_utility_practice_statuses_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_utility_practice_statuses_enum | null),_nin?: (e_utility_practice_statuses_enum[] | null)} + + +/** input type for inserting data into table "e_utility_practice_statuses" */ +export interface e_utility_practice_statuses_insert_input {description?: (Scalars['String'] | null),utility_practice_sessions?: (utility_practice_sessions_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_utility_practice_statuses_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_utility_practice_statuses_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "e_utility_practice_statuses" */ +export interface e_utility_practice_statuses_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_utility_practice_statusesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "e_utility_practice_statuses" */ +export interface e_utility_practice_statuses_obj_rel_insert_input {data: e_utility_practice_statuses_insert_input, +/** upsert condition */ +on_conflict?: (e_utility_practice_statuses_on_conflict | null)} + + +/** on_conflict condition type for table "e_utility_practice_statuses" */ +export interface e_utility_practice_statuses_on_conflict {constraint: e_utility_practice_statuses_constraint,update_columns?: e_utility_practice_statuses_update_column[],where?: (e_utility_practice_statuses_bool_exp | null)} + + +/** Ordering options when selecting data from "e_utility_practice_statuses". */ +export interface e_utility_practice_statuses_order_by {description?: (order_by | null),utility_practice_sessions_aggregate?: (utility_practice_sessions_aggregate_order_by | null),value?: (order_by | null)} + + +/** primary key columns input for table: e_utility_practice_statuses */ +export interface e_utility_practice_statuses_pk_columns_input {value: Scalars['String']} + + +/** input type for updating data in table "e_utility_practice_statuses" */ +export interface e_utility_practice_statuses_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** Streaming cursor of the table "e_utility_practice_statuses" */ +export interface e_utility_practice_statuses_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_utility_practice_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_utility_practice_statuses_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_utility_practice_statuses_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_utility_practice_statuses_set_input | null), +/** filter the rows which have to be updated */ +where: e_utility_practice_statuses_bool_exp} + + +/** columns and relationships of "e_utility_sources" */ +export interface e_utility_sourcesGenqlSelection{ + description?: boolean | number + /** An array relationship */ + utility_lineups?: (utility_lineupsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_lineups_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_lineups_order_by[] | null), + /** filter the rows returned */ + where?: (utility_lineups_bool_exp | null)} }) + /** An aggregate relationship */ + utility_lineups_aggregate?: (utility_lineups_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_lineups_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_lineups_order_by[] | null), + /** filter the rows returned */ + where?: (utility_lineups_bool_exp | null)} }) + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "e_utility_sources" */ +export interface e_utility_sources_aggregateGenqlSelection{ + aggregate?: e_utility_sources_aggregate_fieldsGenqlSelection + nodes?: e_utility_sourcesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "e_utility_sources" */ +export interface e_utility_sources_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_utility_sources_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_utility_sources_max_fieldsGenqlSelection + min?: e_utility_sources_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "e_utility_sources". All fields are combined with a logical 'AND'. */ +export interface e_utility_sources_bool_exp {_and?: (e_utility_sources_bool_exp[] | null),_not?: (e_utility_sources_bool_exp | null),_or?: (e_utility_sources_bool_exp[] | null),description?: (String_comparison_exp | null),utility_lineups?: (utility_lineups_bool_exp | null),utility_lineups_aggregate?: (utility_lineups_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} + + +/** Boolean expression to compare columns of type "e_utility_sources_enum". All fields are combined with logical 'AND'. */ +export interface e_utility_sources_enum_comparison_exp {_eq?: (e_utility_sources_enum | null),_in?: (e_utility_sources_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_utility_sources_enum | null),_nin?: (e_utility_sources_enum[] | null)} + + +/** input type for inserting data into table "e_utility_sources" */ +export interface e_utility_sources_insert_input {description?: (Scalars['String'] | null),utility_lineups?: (utility_lineups_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_utility_sources_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_utility_sources_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "e_utility_sources" */ +export interface e_utility_sources_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_utility_sourcesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "e_utility_sources" */ +export interface e_utility_sources_on_conflict {constraint: e_utility_sources_constraint,update_columns?: e_utility_sources_update_column[],where?: (e_utility_sources_bool_exp | null)} + + +/** Ordering options when selecting data from "e_utility_sources". */ +export interface e_utility_sources_order_by {description?: (order_by | null),utility_lineups_aggregate?: (utility_lineups_aggregate_order_by | null),value?: (order_by | null)} + + +/** primary key columns input for table: e_utility_sources */ +export interface e_utility_sources_pk_columns_input {value: Scalars['String']} + + +/** input type for updating data in table "e_utility_sources" */ +export interface e_utility_sources_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** Streaming cursor of the table "e_utility_sources" */ +export interface e_utility_sources_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_utility_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_utility_sources_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_utility_sources_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_utility_sources_set_input | null), +/** filter the rows which have to be updated */ +where: e_utility_sources_bool_exp} + + +/** columns and relationships of "e_utility_techniques" */ +export interface e_utility_techniquesGenqlSelection{ + description?: boolean | number + /** An array relationship */ + utility_lineups?: (utility_lineupsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_lineups_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_lineups_order_by[] | null), + /** filter the rows returned */ + where?: (utility_lineups_bool_exp | null)} }) + /** An aggregate relationship */ + utility_lineups_aggregate?: (utility_lineups_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_lineups_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_lineups_order_by[] | null), + /** filter the rows returned */ + where?: (utility_lineups_bool_exp | null)} }) + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "e_utility_techniques" */ +export interface e_utility_techniques_aggregateGenqlSelection{ + aggregate?: e_utility_techniques_aggregate_fieldsGenqlSelection + nodes?: e_utility_techniquesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "e_utility_techniques" */ +export interface e_utility_techniques_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_utility_techniques_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_utility_techniques_max_fieldsGenqlSelection + min?: e_utility_techniques_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "e_utility_techniques". All fields are combined with a logical 'AND'. */ +export interface e_utility_techniques_bool_exp {_and?: (e_utility_techniques_bool_exp[] | null),_not?: (e_utility_techniques_bool_exp | null),_or?: (e_utility_techniques_bool_exp[] | null),description?: (String_comparison_exp | null),utility_lineups?: (utility_lineups_bool_exp | null),utility_lineups_aggregate?: (utility_lineups_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} + + +/** Boolean expression to compare columns of type "e_utility_techniques_enum". All fields are combined with logical 'AND'. */ +export interface e_utility_techniques_enum_comparison_exp {_eq?: (e_utility_techniques_enum | null),_in?: (e_utility_techniques_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_utility_techniques_enum | null),_nin?: (e_utility_techniques_enum[] | null)} + + +/** input type for inserting data into table "e_utility_techniques" */ +export interface e_utility_techniques_insert_input {description?: (Scalars['String'] | null),utility_lineups?: (utility_lineups_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_utility_techniques_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_utility_techniques_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "e_utility_techniques" */ +export interface e_utility_techniques_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_utility_techniquesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "e_utility_techniques" */ +export interface e_utility_techniques_on_conflict {constraint: e_utility_techniques_constraint,update_columns?: e_utility_techniques_update_column[],where?: (e_utility_techniques_bool_exp | null)} + + +/** Ordering options when selecting data from "e_utility_techniques". */ +export interface e_utility_techniques_order_by {description?: (order_by | null),utility_lineups_aggregate?: (utility_lineups_aggregate_order_by | null),value?: (order_by | null)} + + +/** primary key columns input for table: e_utility_techniques */ +export interface e_utility_techniques_pk_columns_input {value: Scalars['String']} + + +/** input type for updating data in table "e_utility_techniques" */ +export interface e_utility_techniques_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** Streaming cursor of the table "e_utility_techniques" */ +export interface e_utility_techniques_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_utility_techniques_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface e_utility_techniques_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_utility_techniques_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_utility_techniques_set_input | null), +/** filter the rows which have to be updated */ +where: e_utility_techniques_bool_exp} + + +/** columns and relationships of "e_utility_throw_strengths" */ +export interface e_utility_throw_strengthsGenqlSelection{ + description?: boolean | number + /** An array relationship */ + utility_lineups?: (utility_lineupsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_lineups_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_lineups_order_by[] | null), + /** filter the rows returned */ + where?: (utility_lineups_bool_exp | null)} }) + /** An aggregate relationship */ + utility_lineups_aggregate?: (utility_lineups_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_lineups_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_lineups_order_by[] | null), + /** filter the rows returned */ + where?: (utility_lineups_bool_exp | null)} }) + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "e_utility_throw_strengths" */ +export interface e_utility_throw_strengths_aggregateGenqlSelection{ + aggregate?: e_utility_throw_strengths_aggregate_fieldsGenqlSelection + nodes?: e_utility_throw_strengthsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "e_utility_throw_strengths" */ +export interface e_utility_throw_strengths_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_utility_throw_strengths_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_utility_throw_strengths_max_fieldsGenqlSelection + min?: e_utility_throw_strengths_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "e_utility_throw_strengths". All fields are combined with a logical 'AND'. */ +export interface e_utility_throw_strengths_bool_exp {_and?: (e_utility_throw_strengths_bool_exp[] | null),_not?: (e_utility_throw_strengths_bool_exp | null),_or?: (e_utility_throw_strengths_bool_exp[] | null),description?: (String_comparison_exp | null),utility_lineups?: (utility_lineups_bool_exp | null),utility_lineups_aggregate?: (utility_lineups_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} + + +/** Boolean expression to compare columns of type "e_utility_throw_strengths_enum". All fields are combined with logical 'AND'. */ +export interface e_utility_throw_strengths_enum_comparison_exp {_eq?: (e_utility_throw_strengths_enum | null),_in?: (e_utility_throw_strengths_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_utility_throw_strengths_enum | null),_nin?: (e_utility_throw_strengths_enum[] | null)} + + +/** input type for inserting data into table "e_utility_throw_strengths" */ +export interface e_utility_throw_strengths_insert_input {description?: (Scalars['String'] | null),utility_lineups?: (utility_lineups_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_utility_throw_strengths_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_utility_throw_strengths_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "e_utility_throw_strengths" */ +export interface e_utility_throw_strengths_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_utility_throw_strengthsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "e_utility_throw_strengths" */ +export interface e_utility_throw_strengths_on_conflict {constraint: e_utility_throw_strengths_constraint,update_columns?: e_utility_throw_strengths_update_column[],where?: (e_utility_throw_strengths_bool_exp | null)} + + +/** Ordering options when selecting data from "e_utility_throw_strengths". */ +export interface e_utility_throw_strengths_order_by {description?: (order_by | null),utility_lineups_aggregate?: (utility_lineups_aggregate_order_by | null),value?: (order_by | null)} + + +/** primary key columns input for table: e_utility_throw_strengths */ +export interface e_utility_throw_strengths_pk_columns_input {value: Scalars['String']} + + +/** input type for updating data in table "e_utility_throw_strengths" */ +export interface e_utility_throw_strengths_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** Streaming cursor of the table "e_utility_throw_strengths" */ +export interface e_utility_throw_strengths_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_utility_throw_strengths_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface e_utility_throw_strengths_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_utility_throw_strengths_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_utility_throw_strengths_set_input | null), +/** filter the rows which have to be updated */ +where: e_utility_throw_strengths_bool_exp} + + +/** columns and relationships of "e_utility_types" */ +export interface e_utility_typesGenqlSelection{ + description?: boolean | number + /** An array relationship */ + player_utilities?: (player_utilityGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_utility_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (player_utility_order_by[] | null), + /** filter the rows returned */ + where?: (player_utility_bool_exp | null)} }) + /** An aggregate relationship */ + player_utilities_aggregate?: (player_utility_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_utility_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (player_utility_order_by[] | null), + /** filter the rows returned */ + where?: (player_utility_bool_exp | null)} }) + value?: boolean | number + __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 +} + + +/** 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_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_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_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_utility_types_max_fieldsGenqlSelection{ + description?: boolean | number + value?: 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 +} + + +/** 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 + __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)} + + +/** Ordering options when selecting data from "e_utility_types". */ +export interface e_utility_types_order_by {description?: (order_by | null),player_utilities_aggregate?: (player_utility_aggregate_order_by | null),value?: (order_by | null)} + + +/** primary key columns input for table: e_utility_types */ +export interface e_utility_types_pk_columns_input {value: Scalars['String']} + + +/** input type for updating data in table "e_utility_types" */ +export interface e_utility_types_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** 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)} + + +/** 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 "e_utility_visibility" */ +export interface e_utility_visibilityGenqlSelection{ + description?: boolean | number + /** An array relationship */ + utility_lineups?: (utility_lineupsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_lineups_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_lineups_order_by[] | null), + /** filter the rows returned */ + where?: (utility_lineups_bool_exp | null)} }) + /** An aggregate relationship */ + utility_lineups_aggregate?: (utility_lineups_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_lineups_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_lineups_order_by[] | null), + /** filter the rows returned */ + where?: (utility_lineups_bool_exp | null)} }) + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "e_utility_visibility" */ +export interface e_utility_visibility_aggregateGenqlSelection{ + aggregate?: e_utility_visibility_aggregate_fieldsGenqlSelection + nodes?: e_utility_visibilityGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "e_utility_visibility" */ +export interface e_utility_visibility_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_utility_visibility_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_utility_visibility_max_fieldsGenqlSelection + min?: e_utility_visibility_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "e_utility_visibility". All fields are combined with a logical 'AND'. */ +export interface e_utility_visibility_bool_exp {_and?: (e_utility_visibility_bool_exp[] | null),_not?: (e_utility_visibility_bool_exp | null),_or?: (e_utility_visibility_bool_exp[] | null),description?: (String_comparison_exp | null),utility_lineups?: (utility_lineups_bool_exp | null),utility_lineups_aggregate?: (utility_lineups_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} + + +/** Boolean expression to compare columns of type "e_utility_visibility_enum". All fields are combined with logical 'AND'. */ +export interface e_utility_visibility_enum_comparison_exp {_eq?: (e_utility_visibility_enum | null),_in?: (e_utility_visibility_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_utility_visibility_enum | null),_nin?: (e_utility_visibility_enum[] | null)} + + +/** input type for inserting data into table "e_utility_visibility" */ +export interface e_utility_visibility_insert_input {description?: (Scalars['String'] | null),utility_lineups?: (utility_lineups_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_utility_visibility_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_utility_visibility_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "e_utility_visibility" */ +export interface e_utility_visibility_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_utility_visibilityGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "e_utility_visibility" */ +export interface e_utility_visibility_on_conflict {constraint: e_utility_visibility_constraint,update_columns?: e_utility_visibility_update_column[],where?: (e_utility_visibility_bool_exp | null)} + + +/** Ordering options when selecting data from "e_utility_visibility". */ +export interface e_utility_visibility_order_by {description?: (order_by | null),utility_lineups_aggregate?: (utility_lineups_aggregate_order_by | null),value?: (order_by | null)} + + +/** primary key columns input for table: e_utility_visibility */ +export interface e_utility_visibility_pk_columns_input {value: Scalars['String']} + + +/** input type for updating data in table "e_utility_visibility" */ +export interface e_utility_visibility_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** Streaming cursor of the table "e_utility_visibility" */ +export interface e_utility_visibility_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_utility_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_utility_visibility_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_utility_visibility_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_utility_visibility_set_input | null), +/** filter the rows which have to be updated */ +where: e_utility_visibility_bool_exp} + + +/** columns and relationships of "e_veto_pick_types" */ +export interface e_veto_pick_typesGenqlSelection{ + description?: boolean | number + /** An array relationship */ + match_veto_picks?: (match_map_veto_picksGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_map_veto_picks_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (match_map_veto_picks_order_by[] | null), + /** filter the rows returned */ + where?: (match_map_veto_picks_bool_exp | null)} }) + /** An aggregate relationship */ + match_veto_picks_aggregate?: (match_map_veto_picks_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_map_veto_picks_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (match_map_veto_picks_order_by[] | null), + /** filter the rows returned */ + where?: (match_map_veto_picks_bool_exp | null)} }) + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "e_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_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_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_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_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_veto_pick_types_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_veto_pick_types_min_fieldsGenqlSelection{ + description?: boolean | number + value?: 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{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_veto_pick_typesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "e_veto_pick_types" */ +export interface e_veto_pick_types_on_conflict {constraint: e_veto_pick_types_constraint,update_columns?: e_veto_pick_types_update_column[],where?: (e_veto_pick_types_bool_exp | null)} + + +/** Ordering options when selecting data from "e_veto_pick_types". */ +export interface e_veto_pick_types_order_by {description?: (order_by | null),match_veto_picks_aggregate?: (match_map_veto_picks_aggregate_order_by | null),value?: (order_by | null)} + + +/** primary key columns input for table: e_veto_pick_types */ +export interface e_veto_pick_types_pk_columns_input {value: Scalars['String']} + + +/** 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_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)} + + +/** 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} + + +/** columns and relationships of "e_winning_reasons" */ +export interface e_winning_reasonsGenqlSelection{ + description?: boolean | number + value?: 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 +} + + +/** 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_winning_reasons". All fields are combined with a logical 'AND'. */ +export interface e_winning_reasons_bool_exp {_and?: (e_winning_reasons_bool_exp[] | null),_not?: (e_winning_reasons_bool_exp | null),_or?: (e_winning_reasons_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} + + +/** Boolean expression to compare columns of type "e_winning_reasons_enum". All fields are combined with logical 'AND'. */ +export interface e_winning_reasons_enum_comparison_exp {_eq?: (e_winning_reasons_enum | null),_in?: (e_winning_reasons_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_winning_reasons_enum | null),_nin?: (e_winning_reasons_enum[] | null)} + + +/** 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_winning_reasons_max_fieldsGenqlSelection{ + description?: boolean | number + value?: 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 +} + + +/** 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 + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "e_winning_reasons" */ +export interface e_winning_reasons_on_conflict {constraint: e_winning_reasons_constraint,update_columns?: e_winning_reasons_update_column[],where?: (e_winning_reasons_bool_exp | null)} + + +/** Ordering options when selecting data from "e_winning_reasons". */ +export interface e_winning_reasons_order_by {description?: (order_by | null),value?: (order_by | null)} + + +/** primary key columns input for table: e_winning_reasons */ +export interface e_winning_reasons_pk_columns_input {value: Scalars['String']} + + +/** input type for updating data in table "e_winning_reasons" */ +export interface e_winning_reasons_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** Streaming cursor of the table "e_winning_reasons" */ +export interface e_winning_reasons_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_winning_reasons_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface e_winning_reasons_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_winning_reasons_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_winning_reasons_set_input | null), +/** filter the rows which have to be updated */ +where: e_winning_reasons_bool_exp} + + +/** 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 "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 "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 "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 "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 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 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 "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?: event_match_linksGenqlSelection + __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)} + + +/** 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: 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 "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 "event_match_links" */ +export interface event_match_links_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: event_match_links_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | 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_match_links_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (event_match_links_set_input | null), +/** filter the rows which have to be updated */ +where: event_match_links_bool_exp} + + +/** columns and relationships of "event_media" */ +export interface event_mediaGenqlSelection{ + created_at?: boolean | number + /** An object relationship */ + event?: eventsGenqlSelection + event_id?: boolean | number + external_url?: boolean | number + filename?: boolean | number + id?: boolean | number + mime_type?: boolean | number + /** An array relationship */ + players?: (event_media_playersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_media_players_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (event_media_players_order_by[] | null), + /** filter the rows returned */ + where?: (event_media_players_bool_exp | null)} }) + /** An aggregate relationship */ + players_aggregate?: (event_media_players_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_media_players_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (event_media_players_order_by[] | null), + /** filter the rows returned */ + where?: (event_media_players_bool_exp | null)} }) + size?: boolean | number + thumbnail_filename?: boolean | number + title?: boolean | number + /** An object relationship */ + uploader?: playersGenqlSelection + uploader_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "event_media" */ +export interface event_media_aggregateGenqlSelection{ + aggregate?: event_media_aggregate_fieldsGenqlSelection + nodes?: event_mediaGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface event_media_aggregate_bool_exp {count?: (event_media_aggregate_bool_exp_count | null)} + +export interface event_media_aggregate_bool_exp_count {arguments?: (event_media_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (event_media_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "event_media" */ +export interface event_media_aggregate_fieldsGenqlSelection{ + avg?: event_media_avg_fieldsGenqlSelection + count?: { __args: {columns?: (event_media_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: event_media_max_fieldsGenqlSelection + min?: event_media_min_fieldsGenqlSelection + stddev?: event_media_stddev_fieldsGenqlSelection + stddev_pop?: event_media_stddev_pop_fieldsGenqlSelection + stddev_samp?: event_media_stddev_samp_fieldsGenqlSelection + sum?: event_media_sum_fieldsGenqlSelection + var_pop?: event_media_var_pop_fieldsGenqlSelection + var_samp?: event_media_var_samp_fieldsGenqlSelection + variance?: event_media_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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)} + + +/** input type for incrementing numeric columns in table "event_media" */ +export interface event_media_inc_input {size?: (Scalars['bigint'] | null),uploader_steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "event_media" */ +export interface event_media_insert_input {created_at?: (Scalars['timestamptz'] | null),event?: (events_obj_rel_insert_input | null),event_id?: (Scalars['uuid'] | null),external_url?: (Scalars['String'] | null),filename?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),mime_type?: (Scalars['String'] | null),players?: (event_media_players_arr_rel_insert_input | null),size?: (Scalars['bigint'] | null),thumbnail_filename?: (Scalars['String'] | null),title?: (Scalars['String'] | null),uploader?: (players_obj_rel_insert_input | null),uploader_steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate max on columns */ +export interface 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 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 +} + + +/** 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?: event_mediaGenqlSelection + __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_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_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_media */ +export interface event_media_pk_columns_input {id: Scalars['uuid']} + + +/** 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 +} + + +/** 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)} + +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 +} + + +/** 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 +} + + +/** 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)} + + +/** 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 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 event_media_players_min_fieldsGenqlSelection{ + created_at?: boolean | number + media_id?: boolean | number + steam_id?: 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{ + /** 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 + __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 +} + + +/** order by var_samp() on columns of table "event_media_players" */ +export interface event_media_players_var_samp_order_by {steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface event_media_players_variance_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "event_media_players" */ +export interface event_media_players_variance_order_by {steam_id?: (order_by | null)} + + +/** input type for updating data in table "event_media" */ +export interface event_media_set_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),external_url?: (Scalars['String'] | null),filename?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),mime_type?: (Scalars['String'] | null),size?: (Scalars['bigint'] | null),thumbnail_filename?: (Scalars['String'] | null),title?: (Scalars['String'] | null),uploader_steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate stddev on columns */ +export interface event_media_stddev_fieldsGenqlSelection{ + size?: boolean | number + uploader_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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 +} + + +/** 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 +} + + +/** 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 { +/** Stream column input with initial value */ +initial_value: event_media_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface 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 sum on columns */ +export interface event_media_sum_fieldsGenqlSelection{ + size?: boolean | number + uploader_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 { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (event_media_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (event_media_set_input | null), +/** filter the rows which have to be updated */ +where: event_media_bool_exp} + + +/** aggregate var_pop on columns */ +export interface event_media_var_pop_fieldsGenqlSelection{ + size?: boolean | number + uploader_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "event_media" */ +export interface event_media_var_pop_order_by {size?: (order_by | null),uploader_steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface event_media_var_samp_fieldsGenqlSelection{ + size?: boolean | number + uploader_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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 + __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)} + + +/** 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 +} + + +/** 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)} + +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 +} + + +/** 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 +} + + +/** 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)} + + +/** 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 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 event_organizers_min_fieldsGenqlSelection{ + created_at?: boolean | number + event_id?: boolean | number + 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{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: event_organizersGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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 "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: event_organizers */ +export interface event_organizers_pk_columns_input {event_id: Scalars['uuid'],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)} + + +/** aggregate stddev on columns */ +export interface event_organizers_stddev_fieldsGenqlSelection{ + 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 + __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 + __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 { +/** Stream column input with initial value */ +initial_value: event_organizers_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface event_organizers_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate sum on columns */ +export interface event_organizers_sum_fieldsGenqlSelection{ + 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 { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (event_organizers_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (event_organizers_set_input | null), +/** filter the rows which have to be updated */ +where: event_organizers_bool_exp} + + +/** aggregate var_pop on columns */ +export interface event_organizers_var_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "event_organizers" */ +export interface event_organizers_var_pop_order_by {steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface event_organizers_var_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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 + __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 + /** An object relationship */ + event?: eventsGenqlSelection + event_id?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + steam_id?: 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 + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface event_players_aggregate_bool_exp {count?: (event_players_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} + + +/** 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 +} + + +/** 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 +} + + +/** order by avg() on columns of table "event_players" */ +export interface event_players_avg_order_by {steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "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 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 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 event_players_min_fieldsGenqlSelection{ + created_at?: boolean | number + event_id?: boolean | number + steam_id?: 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)} + + +/** response of any mutation on the table "event_players" */ +export interface event_players_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: event_playersGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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 "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: event_players */ +export interface event_players_pk_columns_input {event_id: Scalars['uuid'],steam_id: Scalars['bigint']} + + +/** input type for updating data in table "event_players" */ +export interface event_players_set_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate stddev on columns */ +export interface event_players_stddev_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "event_players" */ +export interface event_players_stddev_order_by {steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface event_players_stddev_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "event_players" */ +export interface event_players_stddev_pop_order_by {steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface event_players_stddev_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "event_players" */ +export interface event_players_stddev_samp_order_by {steam_id?: (order_by | 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)} + + +/** 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 sum on columns */ +export interface event_players_sum_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "event_players" */ +export interface event_players_sum_order_by {steam_id?: (order_by | null)} + +export interface event_players_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (event_players_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (event_players_set_input | null), +/** filter the rows which have to be updated */ +where: event_players_bool_exp} + + +/** aggregate var_pop on columns */ +export interface event_players_var_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "event_players" */ +export interface event_players_var_pop_order_by {steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface event_players_var_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "event_players" */ +export interface event_players_var_samp_order_by {steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface event_players_variance_fieldsGenqlSelection{ + steam_id?: 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)} + + +/** columns and relationships of "event_teams" */ +export interface event_teamsGenqlSelection{ + created_at?: boolean | number + /** An object relationship */ + event?: eventsGenqlSelection + event_id?: boolean | number + /** An object relationship */ + team?: teamsGenqlSelection + team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "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)} + +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 +} + + +/** 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 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_teams_max_fieldsGenqlSelection{ + created_at?: boolean | number + event_id?: boolean | number + team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "event_teams" */ +export interface event_teams_max_order_by {created_at?: (order_by | null),event_id?: (order_by | null),team_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface event_teams_min_fieldsGenqlSelection{ + created_at?: boolean | number + event_id?: boolean | number + team_id?: 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)} + + +/** 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_teamsGenqlSelection + __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)} + + +/** 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_teams */ +export interface event_teams_pk_columns_input {event_id: Scalars['uuid'],team_id: Scalars['uuid']} + + +/** 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_teams" */ +export interface event_teams_stream_cursor_input { +/** Stream column input with initial value */ +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_teams_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),team_id?: (Scalars['uuid'] | null)} + +export interface event_teams_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (event_teams_set_input | null), +/** filter the rows which have to be updated */ +where: event_teams_bool_exp} + + +/** columns and relationships of "event_tournaments" */ +export interface event_tournamentsGenqlSelection{ + created_at?: boolean | number + /** An object relationship */ + event?: eventsGenqlSelection + event_id?: boolean | number + /** An object relationship */ + tournament?: tournamentsGenqlSelection + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "event_tournaments" */ +export interface event_tournaments_aggregateGenqlSelection{ + aggregate?: event_tournaments_aggregate_fieldsGenqlSelection + nodes?: event_tournamentsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface event_tournaments_aggregate_bool_exp {count?: (event_tournaments_aggregate_bool_exp_count | null)} + +export interface event_tournaments_aggregate_bool_exp_count {arguments?: (event_tournaments_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (event_tournaments_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "event_tournaments" */ +export interface event_tournaments_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (event_tournaments_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: event_tournaments_max_fieldsGenqlSelection + min?: event_tournaments_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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_tournaments" */ +export interface event_tournaments_arr_rel_insert_input {data: event_tournaments_insert_input[], +/** upsert condition */ +on_conflict?: (event_tournaments_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)} + + +/** 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_tournaments_max_fieldsGenqlSelection{ + created_at?: boolean | number + event_id?: boolean | number + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "event_tournaments" */ +export interface event_tournaments_max_order_by {created_at?: (order_by | null),event_id?: (order_by | null),tournament_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface event_tournaments_min_fieldsGenqlSelection{ + created_at?: boolean | number + event_id?: boolean | number + tournament_id?: 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)} + + +/** 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_tournamentsGenqlSelection + __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)} + + +/** Ordering options when selecting data from "event_tournaments". */ +export interface event_tournaments_order_by {created_at?: (order_by | null),event?: (events_order_by | null),event_id?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null)} + + +/** primary key columns input for table: event_tournaments */ +export interface event_tournaments_pk_columns_input {event_id: Scalars['uuid'],tournament_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)} + + +/** 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 */ + 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 */ + 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 "events" */ +export interface events_aggregateGenqlSelection{ + aggregate?: events_aggregate_fieldsGenqlSelection + nodes?: eventsGenqlSelection + __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 + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface events_avg_fieldsGenqlSelection{ + organizer_steam_id?: 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)} + + +/** input type for incrementing numeric columns in table "events" */ +export interface events_inc_input {organizer_steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "events" */ +export interface events_insert_input {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 events_max_fieldsGenqlSelection{ + banner_media_id?: boolean | number + created_at?: 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 +} + + +/** aggregate min on columns */ +export interface events_min_fieldsGenqlSelection{ + banner_media_id?: boolean | number + created_at?: 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 +} + + +/** 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?: eventsGenqlSelection + __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)} + + +/** 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)} + + +/** 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)} + + +/** primary key columns input for table: events */ +export interface events_pk_columns_input {id: Scalars['uuid']} + + +/** 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 events_stddev_fieldsGenqlSelection{ + organizer_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface events_stddev_pop_fieldsGenqlSelection{ + organizer_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface events_stddev_samp_fieldsGenqlSelection{ + organizer_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "events" */ +export interface events_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: events_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface events_stream_cursor_value_input {banner_media_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),ends_at?: (Scalars['timestamptz'] | null),hide_creator_organizer?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),media_access?: (e_event_media_access_enum | null),name?: (Scalars['String'] | null),organizer_steam_id?: (Scalars['bigint'] | null),starts_at?: (Scalars['timestamptz'] | null),visibility?: (e_event_visibility_enum | null)} + + +/** aggregate sum on columns */ +export interface events_sum_fieldsGenqlSelection{ + organizer_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface events_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (events_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (events_set_input | null), +/** filter the rows which have to be updated */ +where: events_bool_exp} + + +/** aggregate var_pop on columns */ +export interface events_var_pop_fieldsGenqlSelection{ + organizer_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface events_var_samp_fieldsGenqlSelection{ + organizer_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface events_variance_fieldsGenqlSelection{ + organizer_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to compare columns of type "float8". All fields are combined with logical 'AND'. */ +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{ + /** An object relationship */ + 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 "friends" */ +export interface friends_aggregateGenqlSelection{ + aggregate?: friends_aggregate_fieldsGenqlSelection + nodes?: friendsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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 +} + + +/** aggregate avg on columns */ +export interface friends_avg_fieldsGenqlSelection{ + other_player_steam_id?: boolean | number + player_steam_id?: boolean | number + __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)} + + +/** 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 "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 friends_max_fieldsGenqlSelection{ + other_player_steam_id?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface friends_min_fieldsGenqlSelection{ + other_player_steam_id?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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?: friendsGenqlSelection + __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)} + + +/** 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 +} + + +/** 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 +} + + +/** 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 +} + + +/** Streaming cursor of the table "friends" */ +export interface friends_stream_cursor_input { +/** Stream column input with initial value */ +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 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 friends_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (friends_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (friends_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 +} + + +/** 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 */ + game_mode?: game_modesGenqlSelection + game_mode_id?: boolean | number + load_order?: boolean | number + /** An object relationship */ + plugin?: game_pluginsGenqlSelection + plugin_slug?: boolean | number + required?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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 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 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} + +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 "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)} + + +/** 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?: (game_mode_plugins_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface game_mode_plugins_avg_fieldsGenqlSelection{ + load_order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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 "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)} + + +/** 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)} + + +/** 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 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 "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 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 "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 "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?: game_mode_pluginsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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 "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: game_mode_plugins */ +export interface game_mode_plugins_pk_columns_input {game_mode_id: Scalars['uuid'],plugin_slug: Scalars['String']} + + +/** 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 game_mode_plugins_stddev_fieldsGenqlSelection{ + load_order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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 game_mode_plugins_stddev_pop_fieldsGenqlSelection{ + load_order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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 game_mode_plugins_stddev_samp_fieldsGenqlSelection{ + load_order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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 "game_mode_plugins" */ +export interface 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 | null)} + + +/** Initial value of the column from where the streaming should start */ +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 game_mode_plugins_sum_fieldsGenqlSelection{ + load_order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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 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?: (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} + + +/** aggregate var_pop on columns */ +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 "game_mode_plugins" */ +export interface game_mode_plugins_var_pop_order_by {load_order?: (order_by | null)} + + +/** aggregate var_samp on columns */ +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 "game_mode_plugins" */ +export interface game_mode_plugins_var_samp_order_by {load_order?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface game_mode_plugins_variance_fieldsGenqlSelection{ + load_order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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 "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 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 "game_modes" */ +export interface game_modes_aggregateGenqlSelection{ + aggregate?: game_modes_aggregate_fieldsGenqlSelection + nodes?: game_modesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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 +} + + +/** Boolean expression to filter rows from the table "game_modes". All fields are combined with a logical 'AND'. */ +export interface game_modes_bool_exp {_and?: (game_modes_bool_exp[] | null),_not?: (game_modes_bool_exp | null),_or?: (game_modes_bool_exp[] | null),archived_at?: (timestamptz_comparison_exp | null),cfg?: (String_comparison_exp | null),competitive_safe?: (Boolean_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),description?: (String_comparison_exp | null),enabled?: (Boolean_comparison_exp | null),extra_game_params?: (String_comparison_exp | null),icon?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),match_options?: (match_options_bool_exp | null),match_options_aggregate?: (match_options_aggregate_bool_exp | null),name?: (String_comparison_exp | null),plugins?: (game_mode_plugins_bool_exp | null),plugins_aggregate?: (game_mode_plugins_aggregate_bool_exp | null),runtime_conflicts?: (jsonb_comparison_exp | null),slug?: (String_comparison_exp | null),supported_runtimes?: (jsonb_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null)} + + +/** input type for inserting data into table "game_modes" */ +export interface game_modes_insert_input {archived_at?: (Scalars['timestamptz'] | null),cfg?: (Scalars['String'] | null),competitive_safe?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),enabled?: (Scalars['Boolean'] | null),extra_game_params?: (Scalars['String'] | null),icon?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),match_options?: (match_options_arr_rel_insert_input | null),name?: (Scalars['String'] | null),plugins?: (game_mode_plugins_arr_rel_insert_input | null),slug?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate max on columns */ +export interface game_modes_max_fieldsGenqlSelection{ + archived_at?: boolean | number + cfg?: boolean | number + created_at?: boolean | number + description?: boolean | number + extra_game_params?: boolean | number + icon?: boolean | number + id?: boolean | number + name?: boolean | number + slug?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface game_modes_min_fieldsGenqlSelection{ + archived_at?: boolean | number + cfg?: boolean | number + created_at?: boolean | number + description?: boolean | number + extra_game_params?: boolean | number + icon?: boolean | number + id?: boolean | number + name?: boolean | number + slug?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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?: (game_modes_on_conflict | 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)} + + +/** Ordering options when selecting data from "game_modes". */ +export interface game_modes_order_by {archived_at?: (order_by | null),cfg?: (order_by | null),competitive_safe?: (order_by | null),created_at?: (order_by | null),description?: (order_by | null),enabled?: (order_by | null),extra_game_params?: (order_by | null),icon?: (order_by | null),id?: (order_by | null),match_options_aggregate?: (match_options_aggregate_order_by | null),name?: (order_by | null),plugins_aggregate?: (game_mode_plugins_aggregate_order_by | null),runtime_conflicts?: (order_by | null),slug?: (order_by | null),supported_runtimes?: (order_by | null),updated_at?: (order_by | null)} + + +/** primary key columns input for table: game_modes */ +export interface game_modes_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "game_modes" */ +export interface game_modes_set_input {archived_at?: (Scalars['timestamptz'] | null),cfg?: (Scalars['String'] | null),competitive_safe?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),enabled?: (Scalars['Boolean'] | null),extra_game_params?: (Scalars['String'] | null),icon?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),slug?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** Streaming cursor of the table "game_modes" */ +export interface game_modes_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: game_modes_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface game_modes_stream_cursor_value_input {archived_at?: (Scalars['timestamptz'] | null),cfg?: (Scalars['String'] | null),competitive_safe?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),enabled?: (Scalars['Boolean'] | null),extra_game_params?: (Scalars['String'] | null),icon?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),slug?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null)} + +export interface game_modes_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (game_modes_set_input | null), +/** filter the rows which have to be updated */ +where: game_modes_bool_exp} + + +/** columns and relationships of "game_plugin_installs" */ +export interface game_plugin_installsGenqlSelection{ + cfg?: boolean | number + channel?: boolean | number + created_at?: boolean | number + disable_server_guidelines?: boolean | number + enabled?: boolean | number + load_custom?: boolean | number + load_ranked?: boolean | number + load_tournaments?: 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 +} + + +/** 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 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),cfg?: (String_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),load_custom?: (Boolean_comparison_exp | null),load_ranked?: (Boolean_comparison_exp | null),load_tournaments?: (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 {cfg?: (Scalars['String'] | null),channel?: (e_game_plugin_channels_enum | null),created_at?: (Scalars['timestamptz'] | null),disable_server_guidelines?: (Scalars['Boolean'] | null),enabled?: (Scalars['Boolean'] | null),load_custom?: (Scalars['Boolean'] | null),load_ranked?: (Scalars['Boolean'] | null),load_tournaments?: (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{ + cfg?: boolean | number + created_at?: boolean | number + plugin_slug?: boolean | number + updated_at?: boolean | number + version?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface game_plugin_installs_min_fieldsGenqlSelection{ + cfg?: boolean | number + 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 "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?: game_plugin_installsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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 "game_plugin_installs". */ +export interface game_plugin_installs_order_by {cfg?: (order_by | null),channel?: (order_by | null),created_at?: (order_by | null),disable_server_guidelines?: (order_by | null),enabled?: (order_by | null),load_custom?: (order_by | null),load_ranked?: (order_by | null),load_tournaments?: (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 */ +export interface game_plugin_installs_pk_columns_input {plugin_slug: Scalars['String']} + + +/** input type for updating data in table "game_plugin_installs" */ +export interface game_plugin_installs_set_input {cfg?: (Scalars['String'] | null),channel?: (e_game_plugin_channels_enum | null),created_at?: (Scalars['timestamptz'] | null),disable_server_guidelines?: (Scalars['Boolean'] | null),enabled?: (Scalars['Boolean'] | null),load_custom?: (Scalars['Boolean'] | null),load_ranked?: (Scalars['Boolean'] | null),load_tournaments?: (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" */ +export interface 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 | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface game_plugin_installs_stream_cursor_value_input {cfg?: (Scalars['String'] | null),channel?: (e_game_plugin_channels_enum | null),created_at?: (Scalars['timestamptz'] | null),disable_server_guidelines?: (Scalars['Boolean'] | null),enabled?: (Scalars['Boolean'] | null),load_custom?: (Scalars['Boolean'] | null),load_ranked?: (Scalars['Boolean'] | null),load_tournaments?: (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 */ +_set?: (game_plugin_installs_set_input | null), +/** filter the rows which have to be updated */ +where: game_plugin_installs_bool_exp} + + +/** columns and relationships of "game_plugin_versions" */ +export interface game_plugin_versionsGenqlSelection{ + install_path?: boolean | number + layout?: boolean | number + /** An object relationship */ + 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 "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 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 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} + +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 "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 "game_plugin_versions" */ +export interface game_plugin_versions_arr_rel_insert_input {data: game_plugin_versions_insert_input[], +/** upsert condition */ +on_conflict?: (game_plugin_versions_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface game_plugin_versions_avg_fieldsGenqlSelection{ + size?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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 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 "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 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 "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 "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?: 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 +} + + +/** 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} + + +/** aggregate var_pop on columns */ +export interface game_plugin_versions_var_pop_fieldsGenqlSelection{ + size?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "game_plugin_versions" */ +export interface game_plugin_versions_var_pop_order_by {size?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface game_plugin_versions_var_samp_fieldsGenqlSelection{ + size?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "game_plugin_versions" */ +export interface game_plugin_versions_var_samp_order_by {size?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface game_plugin_versions_variance_fieldsGenqlSelection{ + size?: boolean | number + __typename?: boolean | number + __scalar?: 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 + /** An array relationship */ + game_modes?: (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 */ + game_modes_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)} }) + 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 array relationship */ + node_installs?: (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 */ + node_installs_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)} }) + pairs_with?: boolean | number + panel?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number + requires_server_guidelines_disabled?: boolean | number + requires_service?: boolean | number + slug?: boolean | number + source?: boolean | number + synced_at?: boolean | number + tags?: boolean | number + /** A computed field, executes function "game_plugin_target_node_count" */ + target_node_count?: boolean | number + verified?: boolean | number + /** An array relationship */ + 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)} }) + /** An aggregate relationship */ + 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)} }) + wiring?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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 "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 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 "game_plugins". All fields are combined with a logical 'AND'. */ +export interface game_plugins_bool_exp {_and?: (game_plugins_bool_exp[] | null),_not?: (game_plugins_bool_exp | null),_or?: (game_plugins_bool_exp[] | null),author?: (String_comparison_exp | null),config_path?: (String_comparison_exp | null),config_schema?: (jsonb_comparison_exp | null),cvars?: (String_array_comparison_exp | null),description?: (String_comparison_exp | null),game_modes?: (game_mode_plugins_bool_exp | null),game_modes_aggregate?: (game_mode_plugins_aggregate_bool_exp | null),homepage?: (String_comparison_exp | null),hot_swappable?: (Boolean_comparison_exp | null),install_state?: (String_comparison_exp | null),installed_node_count?: (Int_comparison_exp | null),kind?: (e_game_plugin_kinds_enum_comparison_exp | null),name?: (String_comparison_exp | null),node_installs?: (game_server_node_plugins_bool_exp | null),node_installs_aggregate?: (game_server_node_plugins_aggregate_bool_exp | null),pairs_with?: (String_array_comparison_exp | null),panel?: (jsonb_comparison_exp | null),requires_server_guidelines_disabled?: (Boolean_comparison_exp | null),requires_service?: (String_comparison_exp | null),slug?: (String_comparison_exp | null),source?: (String_comparison_exp | null),synced_at?: (timestamptz_comparison_exp | null),tags?: (String_array_comparison_exp | null),target_node_count?: (Int_comparison_exp | null),verified?: (Boolean_comparison_exp | null),versions?: (game_plugin_versions_bool_exp | null),versions_aggregate?: (game_plugin_versions_aggregate_bool_exp | null),wiring?: (jsonb_comparison_exp | null)} + + +/** 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)} + + +/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */ +export interface game_plugins_delete_elem_input {config_schema?: (Scalars['Int'] | null),panel?: (Scalars['Int'] | null),wiring?: (Scalars['Int'] | null)} + + +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +export interface game_plugins_delete_key_input {config_schema?: (Scalars['String'] | null),panel?: (Scalars['String'] | null),wiring?: (Scalars['String'] | null)} + + +/** input type for inserting data into table "game_plugins" */ +export interface game_plugins_insert_input {author?: (Scalars['String'] | null),config_path?: (Scalars['String'] | null),config_schema?: (Scalars['jsonb'] | null),cvars?: (Scalars['String'][] | null),description?: (Scalars['String'] | null),game_modes?: (game_mode_plugins_arr_rel_insert_input | null),homepage?: (Scalars['String'] | null),hot_swappable?: (Scalars['Boolean'] | null),kind?: (e_game_plugin_kinds_enum | null),name?: (Scalars['String'] | null),node_installs?: (game_server_node_plugins_arr_rel_insert_input | null),pairs_with?: (Scalars['String'][] | null),panel?: (Scalars['jsonb'] | null),requires_server_guidelines_disabled?: (Scalars['Boolean'] | null),requires_service?: (Scalars['String'] | null),slug?: (Scalars['String'] | null),source?: (Scalars['String'] | null),synced_at?: (Scalars['timestamptz'] | null),tags?: (Scalars['String'][] | null),verified?: (Scalars['Boolean'] | null),versions?: (game_plugin_versions_arr_rel_insert_input | null),wiring?: (Scalars['jsonb'] | null)} + + +/** aggregate max on columns */ +export interface game_plugins_max_fieldsGenqlSelection{ + author?: boolean | number + config_path?: boolean | number + cvars?: boolean | number + description?: 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 + pairs_with?: boolean | number + requires_service?: boolean | number + slug?: boolean | number + source?: boolean | number + synced_at?: boolean | number + tags?: boolean | number + /** A computed field, executes function "game_plugin_target_node_count" */ + target_node_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface game_plugins_min_fieldsGenqlSelection{ + author?: boolean | number + config_path?: boolean | number + cvars?: boolean | number + description?: 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 + pairs_with?: boolean | number + requires_service?: boolean | number + slug?: boolean | number + source?: boolean | number + synced_at?: boolean | number + tags?: boolean | number + /** A computed field, executes function "game_plugin_target_node_count" */ + target_node_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "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?: game_pluginsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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?: (game_plugins_on_conflict | 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 "game_plugins". */ +export interface game_plugins_order_by {author?: (order_by | null),config_path?: (order_by | null),config_schema?: (order_by | null),cvars?: (order_by | null),description?: (order_by | null),game_modes_aggregate?: (game_mode_plugins_aggregate_order_by | null),homepage?: (order_by | null),hot_swappable?: (order_by | null),install_state?: (order_by | null),installed_node_count?: (order_by | null),kind?: (order_by | null),name?: (order_by | null),node_installs_aggregate?: (game_server_node_plugins_aggregate_order_by | null),pairs_with?: (order_by | null),panel?: (order_by | null),requires_server_guidelines_disabled?: (order_by | null),requires_service?: (order_by | null),slug?: (order_by | null),source?: (order_by | null),synced_at?: (order_by | null),tags?: (order_by | null),target_node_count?: (order_by | null),verified?: (order_by | null),versions_aggregate?: (game_plugin_versions_aggregate_order_by | null),wiring?: (order_by | null)} + + +/** primary key columns input for table: game_plugins */ +export interface game_plugins_pk_columns_input {slug: Scalars['String']} + + +/** prepend existing jsonb value of filtered columns with new jsonb value */ +export interface game_plugins_prepend_input {config_schema?: (Scalars['jsonb'] | null),panel?: (Scalars['jsonb'] | null),wiring?: (Scalars['jsonb'] | null)} + + +/** input type for updating data in table "game_plugins" */ +export interface game_plugins_set_input {author?: (Scalars['String'] | null),config_path?: (Scalars['String'] | null),config_schema?: (Scalars['jsonb'] | null),cvars?: (Scalars['String'][] | null),description?: (Scalars['String'] | null),homepage?: (Scalars['String'] | null),hot_swappable?: (Scalars['Boolean'] | null),kind?: (e_game_plugin_kinds_enum | null),name?: (Scalars['String'] | null),pairs_with?: (Scalars['String'][] | null),panel?: (Scalars['jsonb'] | null),requires_server_guidelines_disabled?: (Scalars['Boolean'] | null),requires_service?: (Scalars['String'] | null),slug?: (Scalars['String'] | null),source?: (Scalars['String'] | null),synced_at?: (Scalars['timestamptz'] | null),tags?: (Scalars['String'][] | null),verified?: (Scalars['Boolean'] | null),wiring?: (Scalars['jsonb'] | null)} + + +/** aggregate stddev on columns */ +export interface 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 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 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 "game_plugins" */ +export interface game_plugins_stream_cursor_input { +/** Stream column input with initial value */ +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 game_plugins_stream_cursor_value_input {author?: (Scalars['String'] | null),config_path?: (Scalars['String'] | null),config_schema?: (Scalars['jsonb'] | null),cvars?: (Scalars['String'][] | null),description?: (Scalars['String'] | null),homepage?: (Scalars['String'] | null),hot_swappable?: (Scalars['Boolean'] | null),kind?: (e_game_plugin_kinds_enum | null),name?: (Scalars['String'] | null),pairs_with?: (Scalars['String'][] | null),panel?: (Scalars['jsonb'] | null),requires_server_guidelines_disabled?: (Scalars['Boolean'] | null),requires_service?: (Scalars['String'] | null),slug?: (Scalars['String'] | null),source?: (Scalars['String'] | null),synced_at?: (Scalars['timestamptz'] | null),tags?: (Scalars['String'][] | null),verified?: (Scalars['Boolean'] | null),wiring?: (Scalars['jsonb'] | null)} + + +/** aggregate sum on columns */ +export interface 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 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?: (game_plugins_set_input | null), +/** filter the rows which have to be updated */ +where: game_plugins_bool_exp} + + +/** aggregate var_pop on columns */ +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 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 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 +} + + +/** 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 */ + game_server_node?: game_server_nodesGenqlSelection + game_server_node_id?: boolean | number + id?: boolean | number + installed_at?: boolean | number + last_error?: boolean | number + path?: boolean | number + /** An object relationship */ + plugin?: game_pluginsGenqlSelection + plugin_slug?: boolean | number + previous_version?: 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 "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)} + +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} + +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 +} + + +/** 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 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)} + + +/** 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),path?: (String_comparison_exp | null),plugin?: (game_plugins_bool_exp | null),plugin_slug?: (String_comparison_exp | null),previous_version?: (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),path?: (Scalars['String'] | null),plugin?: (game_plugins_obj_rel_insert_input | null),plugin_slug?: (Scalars['String'] | null),previous_version?: (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 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 + path?: boolean | number + plugin_slug?: boolean | number + previous_version?: 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),path?: (order_by | null),plugin_slug?: (order_by | null),previous_version?: (order_by | null),source?: (order_by | null),updated_at?: (order_by | null),version?: (order_by | null)} + + +/** aggregate min on columns */ +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 + path?: boolean | number + plugin_slug?: boolean | number + previous_version?: boolean | number + source?: boolean | number + updated_at?: boolean | number + version?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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),path?: (order_by | null),plugin_slug?: (order_by | null),previous_version?: (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?: game_server_node_pluginsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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)} + + +/** 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),path?: (order_by | null),plugin?: (game_plugins_order_by | null),plugin_slug?: (order_by | null),previous_version?: (order_by | null),runtime?: (order_by | null),source?: (order_by | null),status?: (order_by | null),updated_at?: (order_by | null),version?: (order_by | null)} + + +/** primary key columns input for table: game_server_node_plugins */ +export interface game_server_node_plugins_pk_columns_input {id: Scalars['uuid']} + + +/** 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),path?: (Scalars['String'] | null),plugin_slug?: (Scalars['String'] | null),previous_version?: (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 "game_server_node_plugins" */ +export interface 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 | null)} + + +/** Initial value of the column from where the streaming should start */ +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),path?: (Scalars['String'] | null),plugin_slug?: (Scalars['String'] | null),previous_version?: (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 game_server_node_plugins_updates { +/** 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} + + +/** columns and relationships of "game_server_nodes" */ +export interface game_server_nodesGenqlSelection{ + /** A computed field, executes function "available_node_server_count" */ + available_server_count?: boolean | number + build_id?: boolean | number + cpu_cores_per_socket?: boolean | number + cpu_frequency_info?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number + cpu_governor_info?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number + cpu_sockets?: boolean | number + cpu_threads_per_core?: boolean | number + cpu_warnings?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number + cs2_launch_options?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number + cs2_video_settings?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number + csgo_build_id?: boolean | number + demo_network_limiter?: boolean | number + disk_available_gb?: boolean | number + disk_used_percent?: boolean | number + /** An object relationship */ + e_region?: server_regionsGenqlSelection + /** An object relationship */ + e_status?: e_game_server_node_statusesGenqlSelection + enabled?: boolean | number + enabled_for_match_making?: boolean | number + end_port_range?: boolean | number + gpu?: boolean | number + gpu_demos_enabled?: boolean | number + gpu_info?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number + gpu_rendering_enabled?: boolean | number + gpu_streaming_enabled?: boolean | number + id?: boolean | number + label?: boolean | number + lan_ip?: boolean | number + node_ip?: boolean | number + offline_at?: boolean | number + pin_build_id?: boolean | number + pin_plugin_runtime?: boolean | number + pin_plugin_version?: boolean | number + /** An object relationship */ + 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 */ + servers?: (serversGenqlSelection & { __args?: { + /** distinct select on columns */ + 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?: (servers_order_by[] | null), + /** filter the rows returned */ + where?: (servers_bool_exp | null)} }) + /** An aggregate relationship */ + servers_aggregate?: (servers_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + 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?: (servers_order_by[] | null), + /** filter the rows returned */ + where?: (servers_bool_exp | null)} }) + shader_bake_progress?: boolean | number + shader_bake_progress_stage?: boolean | number + shader_bake_status?: boolean | number + shader_bake_status_history?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number + start_port_range?: boolean | number + status?: boolean | number + supports_cpu_pinning?: boolean | number + supports_low_latency?: boolean | number + token?: boolean | number + /** A computed field, executes function "total_node_server_count" */ + total_server_count?: boolean | number + update_status?: boolean | number + /** An object relationship */ + version?: game_versionsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "game_server_nodes" */ +export interface game_server_nodes_aggregateGenqlSelection{ + aggregate?: game_server_nodes_aggregate_fieldsGenqlSelection + nodes?: game_server_nodesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface game_server_nodes_aggregate_bool_exp {bool_and?: (game_server_nodes_aggregate_bool_exp_bool_and | null),bool_or?: (game_server_nodes_aggregate_bool_exp_bool_or | null),count?: (game_server_nodes_aggregate_bool_exp_count | null)} + +export interface game_server_nodes_aggregate_bool_exp_bool_and {arguments: game_server_nodes_select_column_game_server_nodes_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (game_server_nodes_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface game_server_nodes_aggregate_bool_exp_bool_or {arguments: game_server_nodes_select_column_game_server_nodes_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (game_server_nodes_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface game_server_nodes_aggregate_bool_exp_count {arguments?: (game_server_nodes_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (game_server_nodes_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "game_server_nodes" */ +export interface game_server_nodes_aggregate_fieldsGenqlSelection{ + avg?: game_server_nodes_avg_fieldsGenqlSelection + count?: { __args: {columns?: (game_server_nodes_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: game_server_nodes_max_fieldsGenqlSelection + min?: game_server_nodes_min_fieldsGenqlSelection + stddev?: game_server_nodes_stddev_fieldsGenqlSelection + stddev_pop?: game_server_nodes_stddev_pop_fieldsGenqlSelection + stddev_samp?: game_server_nodes_stddev_samp_fieldsGenqlSelection + sum?: game_server_nodes_sum_fieldsGenqlSelection + var_pop?: game_server_nodes_var_pop_fieldsGenqlSelection + var_samp?: game_server_nodes_var_samp_fieldsGenqlSelection + variance?: game_server_nodes_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "game_server_nodes" */ +export interface game_server_nodes_aggregate_order_by {avg?: (game_server_nodes_avg_order_by | null),count?: (order_by | null),max?: (game_server_nodes_max_order_by | null),min?: (game_server_nodes_min_order_by | null),stddev?: (game_server_nodes_stddev_order_by | null),stddev_pop?: (game_server_nodes_stddev_pop_order_by | null),stddev_samp?: (game_server_nodes_stddev_samp_order_by | null),sum?: (game_server_nodes_sum_order_by | null),var_pop?: (game_server_nodes_var_pop_order_by | null),var_samp?: (game_server_nodes_var_samp_order_by | null),variance?: (game_server_nodes_variance_order_by | null)} + + +/** append existing jsonb value of filtered columns with new jsonb value */ +export interface game_server_nodes_append_input {cpu_frequency_info?: (Scalars['jsonb'] | null),cpu_governor_info?: (Scalars['jsonb'] | null),cpu_warnings?: (Scalars['jsonb'] | null),cs2_launch_options?: (Scalars['jsonb'] | null),cs2_video_settings?: (Scalars['jsonb'] | null),gpu_info?: (Scalars['jsonb'] | null),shader_bake_status_history?: (Scalars['jsonb'] | null)} + + +/** input type for inserting array relation for remote table "game_server_nodes" */ +export interface game_server_nodes_arr_rel_insert_input {data: game_server_nodes_insert_input[], +/** upsert condition */ +on_conflict?: (game_server_nodes_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface game_server_nodes_avg_fieldsGenqlSelection{ + /** A computed field, executes function "available_node_server_count" */ + available_server_count?: boolean | number + build_id?: boolean | number + cpu_cores_per_socket?: boolean | number + cpu_sockets?: boolean | number + cpu_threads_per_core?: boolean | number + csgo_build_id?: boolean | number + demo_network_limiter?: boolean | number + disk_available_gb?: boolean | number + disk_used_percent?: boolean | number + end_port_range?: boolean | number + pin_build_id?: boolean | number + shader_bake_progress?: boolean | number + start_port_range?: boolean | number + /** A computed field, executes function "total_node_server_count" */ + total_server_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "game_server_nodes" */ +export interface game_server_nodes_avg_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),pin_build_id?: (order_by | null),shader_bake_progress?: (order_by | null),start_port_range?: (order_by | null)} + + +/** 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),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) */ +export interface game_server_nodes_delete_at_path_input {cpu_frequency_info?: (Scalars['String'][] | null),cpu_governor_info?: (Scalars['String'][] | null),cpu_warnings?: (Scalars['String'][] | null),cs2_launch_options?: (Scalars['String'][] | null),cs2_video_settings?: (Scalars['String'][] | null),gpu_info?: (Scalars['String'][] | null),shader_bake_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 game_server_nodes_delete_elem_input {cpu_frequency_info?: (Scalars['Int'] | null),cpu_governor_info?: (Scalars['Int'] | null),cpu_warnings?: (Scalars['Int'] | null),cs2_launch_options?: (Scalars['Int'] | null),cs2_video_settings?: (Scalars['Int'] | null),gpu_info?: (Scalars['Int'] | null),shader_bake_status_history?: (Scalars['Int'] | null)} + + +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +export interface game_server_nodes_delete_key_input {cpu_frequency_info?: (Scalars['String'] | null),cpu_governor_info?: (Scalars['String'] | null),cpu_warnings?: (Scalars['String'] | null),cs2_launch_options?: (Scalars['String'] | null),cs2_video_settings?: (Scalars['String'] | null),gpu_info?: (Scalars['String'] | null),shader_bake_status_history?: (Scalars['String'] | null)} + + +/** input type for incrementing numeric columns in table "game_server_nodes" */ +export interface game_server_nodes_inc_input {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)} + + +/** 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),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 */ +export interface game_server_nodes_max_fieldsGenqlSelection{ + /** A computed field, executes function "available_node_server_count" */ + available_server_count?: boolean | number + build_id?: boolean | number + cpu_cores_per_socket?: boolean | number + cpu_sockets?: boolean | number + cpu_threads_per_core?: boolean | number + csgo_build_id?: boolean | number + demo_network_limiter?: boolean | number + disk_available_gb?: boolean | number + disk_used_percent?: boolean | number + end_port_range?: boolean | number + id?: boolean | number + label?: boolean | number + offline_at?: boolean | number + 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 + shader_bake_status?: boolean | number + start_port_range?: boolean | number + token?: boolean | number + /** A computed field, executes function "total_node_server_count" */ + total_server_count?: boolean | number + update_status?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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),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 */ +export interface game_server_nodes_min_fieldsGenqlSelection{ + /** A computed field, executes function "available_node_server_count" */ + available_server_count?: boolean | number + build_id?: boolean | number + cpu_cores_per_socket?: boolean | number + cpu_sockets?: boolean | number + cpu_threads_per_core?: boolean | number + csgo_build_id?: boolean | number + demo_network_limiter?: boolean | number + disk_available_gb?: boolean | number + disk_used_percent?: boolean | number + end_port_range?: boolean | number + id?: boolean | number + label?: boolean | number + offline_at?: boolean | number + 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 + shader_bake_status?: boolean | number + start_port_range?: boolean | number + token?: boolean | number + /** A computed field, executes function "total_node_server_count" */ + total_server_count?: boolean | number + update_status?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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),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" */ +export interface game_server_nodes_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: game_server_nodesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "game_server_nodes" */ +export interface game_server_nodes_obj_rel_insert_input {data: game_server_nodes_insert_input, +/** upsert condition */ +on_conflict?: (game_server_nodes_on_conflict | null)} + + +/** on_conflict condition type for table "game_server_nodes" */ +export interface game_server_nodes_on_conflict {constraint: game_server_nodes_constraint,update_columns?: game_server_nodes_update_column[],where?: (game_server_nodes_bool_exp | null)} + + +/** 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),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 */ +export interface game_server_nodes_pk_columns_input {id: Scalars['String']} + + +/** prepend existing jsonb value of filtered columns with new jsonb value */ +export interface game_server_nodes_prepend_input {cpu_frequency_info?: (Scalars['jsonb'] | null),cpu_governor_info?: (Scalars['jsonb'] | null),cpu_warnings?: (Scalars['jsonb'] | null),cs2_launch_options?: (Scalars['jsonb'] | null),cs2_video_settings?: (Scalars['jsonb'] | null),gpu_info?: (Scalars['jsonb'] | null),shader_bake_status_history?: (Scalars['jsonb'] | null)} + + +/** 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),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 */ +export interface game_server_nodes_stddev_fieldsGenqlSelection{ + /** A computed field, executes function "available_node_server_count" */ + available_server_count?: boolean | number + build_id?: boolean | number + cpu_cores_per_socket?: boolean | number + cpu_sockets?: boolean | number + cpu_threads_per_core?: boolean | number + csgo_build_id?: boolean | number + demo_network_limiter?: boolean | number + disk_available_gb?: boolean | number + disk_used_percent?: boolean | number + end_port_range?: boolean | number + pin_build_id?: boolean | number + shader_bake_progress?: boolean | number + start_port_range?: boolean | number + /** A computed field, executes function "total_node_server_count" */ + total_server_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "game_server_nodes" */ +export interface game_server_nodes_stddev_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),pin_build_id?: (order_by | null),shader_bake_progress?: (order_by | null),start_port_range?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface game_server_nodes_stddev_pop_fieldsGenqlSelection{ + /** A computed field, executes function "available_node_server_count" */ + available_server_count?: boolean | number + build_id?: boolean | number + cpu_cores_per_socket?: boolean | number + cpu_sockets?: boolean | number + cpu_threads_per_core?: boolean | number + csgo_build_id?: boolean | number + demo_network_limiter?: boolean | number + disk_available_gb?: boolean | number + disk_used_percent?: boolean | number + end_port_range?: boolean | number + pin_build_id?: boolean | number + shader_bake_progress?: boolean | number + start_port_range?: boolean | number + /** A computed field, executes function "total_node_server_count" */ + total_server_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "game_server_nodes" */ +export interface game_server_nodes_stddev_pop_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),pin_build_id?: (order_by | null),shader_bake_progress?: (order_by | null),start_port_range?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface game_server_nodes_stddev_samp_fieldsGenqlSelection{ + /** A computed field, executes function "available_node_server_count" */ + available_server_count?: boolean | number + build_id?: boolean | number + cpu_cores_per_socket?: boolean | number + cpu_sockets?: boolean | number + cpu_threads_per_core?: boolean | number + csgo_build_id?: boolean | number + demo_network_limiter?: boolean | number + disk_available_gb?: boolean | number + disk_used_percent?: boolean | number + end_port_range?: boolean | number + pin_build_id?: boolean | number + shader_bake_progress?: boolean | number + start_port_range?: boolean | number + /** A computed field, executes function "total_node_server_count" */ + total_server_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "game_server_nodes" */ +export interface game_server_nodes_stddev_samp_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),pin_build_id?: (order_by | null),shader_bake_progress?: (order_by | null),start_port_range?: (order_by | null)} + + +/** Streaming cursor of the table "game_server_nodes" */ +export interface game_server_nodes_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: game_server_nodes_stream_cursor_value_input, +/** cursor ordering */ +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),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 */ +export interface game_server_nodes_sum_fieldsGenqlSelection{ + /** A computed field, executes function "available_node_server_count" */ + available_server_count?: boolean | number + build_id?: boolean | number + cpu_cores_per_socket?: boolean | number + cpu_sockets?: boolean | number + cpu_threads_per_core?: boolean | number + csgo_build_id?: boolean | number + demo_network_limiter?: boolean | number + disk_available_gb?: boolean | number + disk_used_percent?: boolean | number + end_port_range?: boolean | number + pin_build_id?: boolean | number + shader_bake_progress?: boolean | number + start_port_range?: boolean | number + /** A computed field, executes function "total_node_server_count" */ + total_server_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "game_server_nodes" */ +export interface game_server_nodes_sum_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),pin_build_id?: (order_by | null),shader_bake_progress?: (order_by | null),start_port_range?: (order_by | null)} + +export interface game_server_nodes_updates { +/** append existing jsonb value of filtered columns with new jsonb value */ +_append?: (game_server_nodes_append_input | null), +/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ +_delete_at_path?: (game_server_nodes_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_server_nodes_delete_elem_input | null), +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +_delete_key?: (game_server_nodes_delete_key_input | null), +/** increments the numeric columns with given value of the filtered values */ +_inc?: (game_server_nodes_inc_input | null), +/** prepend existing jsonb value of filtered columns with new jsonb value */ +_prepend?: (game_server_nodes_prepend_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (game_server_nodes_set_input | null), +/** filter the rows which have to be updated */ +where: game_server_nodes_bool_exp} + + +/** aggregate var_pop on columns */ +export interface game_server_nodes_var_pop_fieldsGenqlSelection{ + /** A computed field, executes function "available_node_server_count" */ + available_server_count?: boolean | number + build_id?: boolean | number + cpu_cores_per_socket?: boolean | number + cpu_sockets?: boolean | number + cpu_threads_per_core?: boolean | number + csgo_build_id?: boolean | number + demo_network_limiter?: boolean | number + disk_available_gb?: boolean | number + disk_used_percent?: boolean | number + end_port_range?: boolean | number + pin_build_id?: boolean | number + shader_bake_progress?: boolean | number + start_port_range?: boolean | number + /** A computed field, executes function "total_node_server_count" */ + total_server_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "game_server_nodes" */ +export interface game_server_nodes_var_pop_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),pin_build_id?: (order_by | null),shader_bake_progress?: (order_by | null),start_port_range?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface game_server_nodes_var_samp_fieldsGenqlSelection{ + /** A computed field, executes function "available_node_server_count" */ + available_server_count?: boolean | number + build_id?: boolean | number + cpu_cores_per_socket?: boolean | number + cpu_sockets?: boolean | number + cpu_threads_per_core?: boolean | number + csgo_build_id?: boolean | number + demo_network_limiter?: boolean | number + disk_available_gb?: boolean | number + disk_used_percent?: boolean | number + end_port_range?: boolean | number + pin_build_id?: boolean | number + shader_bake_progress?: boolean | number + start_port_range?: boolean | number + /** A computed field, executes function "total_node_server_count" */ + total_server_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "game_server_nodes" */ +export interface game_server_nodes_var_samp_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),pin_build_id?: (order_by | null),shader_bake_progress?: (order_by | null),start_port_range?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface game_server_nodes_variance_fieldsGenqlSelection{ + /** A computed field, executes function "available_node_server_count" */ + available_server_count?: boolean | number + build_id?: boolean | number + cpu_cores_per_socket?: boolean | number + cpu_sockets?: boolean | number + cpu_threads_per_core?: boolean | number + csgo_build_id?: boolean | number + demo_network_limiter?: boolean | number + disk_available_gb?: boolean | number + disk_used_percent?: boolean | number + end_port_range?: boolean | number + pin_build_id?: boolean | number + shader_bake_progress?: boolean | number + start_port_range?: boolean | number + /** A computed field, executes function "total_node_server_count" */ + total_server_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "game_server_nodes" */ +export interface game_server_nodes_variance_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),pin_build_id?: (order_by | null),shader_bake_progress?: (order_by | null),start_port_range?: (order_by | null)} + + +/** columns and relationships of "game_versions" */ +export interface game_versionsGenqlSelection{ + build_id?: boolean | number + current?: boolean | number + cvars?: boolean | number + description?: boolean | number + downloads?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number + updated_at?: boolean | number + version?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "game_versions" */ +export interface game_versions_aggregateGenqlSelection{ + aggregate?: game_versions_aggregate_fieldsGenqlSelection + nodes?: game_versionsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "game_versions" */ +export interface game_versions_aggregate_fieldsGenqlSelection{ + avg?: game_versions_avg_fieldsGenqlSelection + count?: { __args: {columns?: (game_versions_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: game_versions_max_fieldsGenqlSelection + min?: game_versions_min_fieldsGenqlSelection + stddev?: game_versions_stddev_fieldsGenqlSelection + stddev_pop?: game_versions_stddev_pop_fieldsGenqlSelection + stddev_samp?: game_versions_stddev_samp_fieldsGenqlSelection + sum?: game_versions_sum_fieldsGenqlSelection + var_pop?: game_versions_var_pop_fieldsGenqlSelection + var_samp?: game_versions_var_samp_fieldsGenqlSelection + variance?: game_versions_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** append existing jsonb value of filtered columns with new jsonb value */ +export interface game_versions_append_input {downloads?: (Scalars['jsonb'] | null)} + + +/** aggregate avg on columns */ +export interface game_versions_avg_fieldsGenqlSelection{ + build_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "game_versions". All fields are combined with a logical 'AND'. */ +export interface game_versions_bool_exp {_and?: (game_versions_bool_exp[] | null),_not?: (game_versions_bool_exp | null),_or?: (game_versions_bool_exp[] | null),build_id?: (Int_comparison_exp | null),current?: (Boolean_comparison_exp | null),cvars?: (Boolean_comparison_exp | null),description?: (String_comparison_exp | null),downloads?: (jsonb_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null),version?: (String_comparison_exp | null)} + + +/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ +export interface game_versions_delete_at_path_input {downloads?: (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_versions_delete_elem_input {downloads?: (Scalars['Int'] | null)} + + +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +export interface game_versions_delete_key_input {downloads?: (Scalars['String'] | null)} + + +/** input type for incrementing numeric columns in table "game_versions" */ +export interface game_versions_inc_input {build_id?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "game_versions" */ +export interface game_versions_insert_input {build_id?: (Scalars['Int'] | null),current?: (Scalars['Boolean'] | null),cvars?: (Scalars['Boolean'] | null),description?: (Scalars['String'] | null),downloads?: (Scalars['jsonb'] | null),updated_at?: (Scalars['timestamptz'] | null),version?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface game_versions_max_fieldsGenqlSelection{ + build_id?: boolean | number + description?: boolean | number + updated_at?: boolean | number + version?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface game_versions_min_fieldsGenqlSelection{ + build_id?: boolean | number + description?: boolean | number + updated_at?: boolean | number + version?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "game_versions" */ +export interface game_versions_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: game_versionsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "game_versions" */ +export interface game_versions_obj_rel_insert_input {data: game_versions_insert_input, +/** upsert condition */ +on_conflict?: (game_versions_on_conflict | null)} + + +/** on_conflict condition type for table "game_versions" */ +export interface game_versions_on_conflict {constraint: game_versions_constraint,update_columns?: game_versions_update_column[],where?: (game_versions_bool_exp | null)} + + +/** Ordering options when selecting data from "game_versions". */ +export interface game_versions_order_by {build_id?: (order_by | null),current?: (order_by | null),cvars?: (order_by | null),description?: (order_by | null),downloads?: (order_by | null),updated_at?: (order_by | null),version?: (order_by | null)} + + +/** primary key columns input for table: game_versions */ +export interface game_versions_pk_columns_input {build_id: Scalars['Int']} + + +/** prepend existing jsonb value of filtered columns with new jsonb value */ +export interface game_versions_prepend_input {downloads?: (Scalars['jsonb'] | null)} + + +/** input type for updating data in table "game_versions" */ +export interface game_versions_set_input {build_id?: (Scalars['Int'] | null),current?: (Scalars['Boolean'] | null),cvars?: (Scalars['Boolean'] | null),description?: (Scalars['String'] | null),downloads?: (Scalars['jsonb'] | null),updated_at?: (Scalars['timestamptz'] | null),version?: (Scalars['String'] | null)} + + +/** aggregate stddev on columns */ +export interface game_versions_stddev_fieldsGenqlSelection{ + build_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface game_versions_stddev_pop_fieldsGenqlSelection{ + build_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface game_versions_stddev_samp_fieldsGenqlSelection{ + build_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "game_versions" */ +export interface game_versions_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: game_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_versions_stream_cursor_value_input {build_id?: (Scalars['Int'] | null),current?: (Scalars['Boolean'] | null),cvars?: (Scalars['Boolean'] | null),description?: (Scalars['String'] | null),downloads?: (Scalars['jsonb'] | null),updated_at?: (Scalars['timestamptz'] | null),version?: (Scalars['String'] | null)} + + +/** aggregate sum on columns */ +export interface game_versions_sum_fieldsGenqlSelection{ + build_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface game_versions_updates { +/** append existing jsonb value of filtered columns with new jsonb value */ +_append?: (game_versions_append_input | null), +/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ +_delete_at_path?: (game_versions_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_versions_delete_elem_input | null), +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +_delete_key?: (game_versions_delete_key_input | null), +/** increments the numeric columns with given value of the filtered values */ +_inc?: (game_versions_inc_input | null), +/** prepend existing jsonb value of filtered columns with new jsonb value */ +_prepend?: (game_versions_prepend_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (game_versions_set_input | null), +/** filter the rows which have to be updated */ +where: game_versions_bool_exp} + + +/** aggregate var_pop on columns */ +export interface game_versions_var_pop_fieldsGenqlSelection{ + build_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface game_versions_var_samp_fieldsGenqlSelection{ + build_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface game_versions_variance_fieldsGenqlSelection{ + build_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "gamedata_signature_validations" */ +export interface gamedata_signature_validationsGenqlSelection{ + branch?: boolean | number + build_id?: boolean | number + /** An object relationship */ + game_version?: game_versionsGenqlSelection + id?: boolean | number + results?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number + status?: boolean | number + validated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "gamedata_signature_validations" */ +export interface gamedata_signature_validations_aggregateGenqlSelection{ + aggregate?: gamedata_signature_validations_aggregate_fieldsGenqlSelection + nodes?: gamedata_signature_validationsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "gamedata_signature_validations" */ +export interface gamedata_signature_validations_aggregate_fieldsGenqlSelection{ + avg?: gamedata_signature_validations_avg_fieldsGenqlSelection + count?: { __args: {columns?: (gamedata_signature_validations_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: gamedata_signature_validations_max_fieldsGenqlSelection + min?: gamedata_signature_validations_min_fieldsGenqlSelection + stddev?: gamedata_signature_validations_stddev_fieldsGenqlSelection + stddev_pop?: gamedata_signature_validations_stddev_pop_fieldsGenqlSelection + stddev_samp?: gamedata_signature_validations_stddev_samp_fieldsGenqlSelection + sum?: gamedata_signature_validations_sum_fieldsGenqlSelection + var_pop?: gamedata_signature_validations_var_pop_fieldsGenqlSelection + var_samp?: gamedata_signature_validations_var_samp_fieldsGenqlSelection + variance?: gamedata_signature_validations_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** append existing jsonb value of filtered columns with new jsonb value */ +export interface gamedata_signature_validations_append_input {results?: (Scalars['jsonb'] | null)} + + +/** aggregate avg on columns */ +export interface gamedata_signature_validations_avg_fieldsGenqlSelection{ + build_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "gamedata_signature_validations". All fields are combined with a logical 'AND'. */ +export interface gamedata_signature_validations_bool_exp {_and?: (gamedata_signature_validations_bool_exp[] | null),_not?: (gamedata_signature_validations_bool_exp | null),_or?: (gamedata_signature_validations_bool_exp[] | null),branch?: (String_comparison_exp | null),build_id?: (Int_comparison_exp | null),game_version?: (game_versions_bool_exp | null),id?: (uuid_comparison_exp | null),results?: (jsonb_comparison_exp | null),status?: (String_comparison_exp | null),validated_at?: (timestamptz_comparison_exp | null)} + + +/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ +export interface gamedata_signature_validations_delete_at_path_input {results?: (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 gamedata_signature_validations_delete_elem_input {results?: (Scalars['Int'] | null)} + + +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +export interface gamedata_signature_validations_delete_key_input {results?: (Scalars['String'] | null)} + + +/** input type for incrementing numeric columns in table "gamedata_signature_validations" */ +export interface gamedata_signature_validations_inc_input {build_id?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "gamedata_signature_validations" */ +export interface gamedata_signature_validations_insert_input {branch?: (Scalars['String'] | null),build_id?: (Scalars['Int'] | null),game_version?: (game_versions_obj_rel_insert_input | null),id?: (Scalars['uuid'] | null),results?: (Scalars['jsonb'] | null),status?: (Scalars['String'] | null),validated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate max on columns */ +export interface gamedata_signature_validations_max_fieldsGenqlSelection{ + branch?: boolean | number + build_id?: boolean | number + id?: boolean | number + status?: boolean | number + validated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface gamedata_signature_validations_min_fieldsGenqlSelection{ + branch?: boolean | number + build_id?: boolean | number + id?: boolean | number + status?: boolean | number + validated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "gamedata_signature_validations" */ +export interface gamedata_signature_validations_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: gamedata_signature_validationsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "gamedata_signature_validations" */ +export interface gamedata_signature_validations_on_conflict {constraint: gamedata_signature_validations_constraint,update_columns?: gamedata_signature_validations_update_column[],where?: (gamedata_signature_validations_bool_exp | null)} + + +/** Ordering options when selecting data from "gamedata_signature_validations". */ +export interface gamedata_signature_validations_order_by {branch?: (order_by | null),build_id?: (order_by | null),game_version?: (game_versions_order_by | null),id?: (order_by | null),results?: (order_by | null),status?: (order_by | null),validated_at?: (order_by | null)} + + +/** primary key columns input for table: gamedata_signature_validations */ +export interface gamedata_signature_validations_pk_columns_input {id: Scalars['uuid']} + + +/** prepend existing jsonb value of filtered columns with new jsonb value */ +export interface gamedata_signature_validations_prepend_input {results?: (Scalars['jsonb'] | null)} + + +/** input type for updating data in table "gamedata_signature_validations" */ +export interface gamedata_signature_validations_set_input {branch?: (Scalars['String'] | null),build_id?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),results?: (Scalars['jsonb'] | null),status?: (Scalars['String'] | null),validated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate stddev on columns */ +export interface gamedata_signature_validations_stddev_fieldsGenqlSelection{ + build_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface gamedata_signature_validations_stddev_pop_fieldsGenqlSelection{ + build_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface gamedata_signature_validations_stddev_samp_fieldsGenqlSelection{ + build_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "gamedata_signature_validations" */ +export interface gamedata_signature_validations_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: gamedata_signature_validations_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface gamedata_signature_validations_stream_cursor_value_input {branch?: (Scalars['String'] | null),build_id?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),results?: (Scalars['jsonb'] | null),status?: (Scalars['String'] | null),validated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate sum on columns */ +export interface gamedata_signature_validations_sum_fieldsGenqlSelection{ + build_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface gamedata_signature_validations_updates { +/** append existing jsonb value of filtered columns with new jsonb value */ +_append?: (gamedata_signature_validations_append_input | null), +/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ +_delete_at_path?: (gamedata_signature_validations_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?: (gamedata_signature_validations_delete_elem_input | null), +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +_delete_key?: (gamedata_signature_validations_delete_key_input | null), +/** increments the numeric columns with given value of the filtered values */ +_inc?: (gamedata_signature_validations_inc_input | null), +/** prepend existing jsonb value of filtered columns with new jsonb value */ +_prepend?: (gamedata_signature_validations_prepend_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (gamedata_signature_validations_set_input | null), +/** filter the rows which have to be updated */ +where: gamedata_signature_validations_bool_exp} + + +/** aggregate var_pop on columns */ +export interface gamedata_signature_validations_var_pop_fieldsGenqlSelection{ + build_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface gamedata_signature_validations_var_samp_fieldsGenqlSelection{ + build_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface gamedata_signature_validations_variance_fieldsGenqlSelection{ + build_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface get_event_leaderboard_args {_category?: (Scalars['String'] | null),_event_id?: (Scalars['uuid'] | null),_match_type?: (Scalars['String'] | null),_min_rounds?: (Scalars['Int'] | null)} + +export interface get_leaderboard_args {_category?: (Scalars['String'] | null),_exclude_tournaments?: (Scalars['Boolean'] | null),_match_type?: (Scalars['String'] | null),_role?: (Scalars['String'] | null),_season_id?: (Scalars['uuid'] | null),_source?: (Scalars['String'] | null),_window_days?: (Scalars['Int'] | null)} + +export interface get_league_season_leaderboard_args {_category?: (Scalars['String'] | null),_league_season_id?: (Scalars['uuid'] | null),_role?: (Scalars['String'] | null)} + +export interface get_player_leaderboard_rank_args {_category?: (Scalars['String'] | null),_exclude_tournaments?: (Scalars['Boolean'] | null),_match_type?: (Scalars['String'] | null),_player_steam_id?: (Scalars['String'] | null),_season_id?: (Scalars['uuid'] | null),_source?: (Scalars['String'] | null),_window_days?: (Scalars['Int'] | null)} + +export interface get_tournament_leaderboard_args {_tournament_id?: (Scalars['uuid'] | null)} + + +/** Boolean expression to compare columns of type "inet". All fields are combined with logical 'AND'. */ +export interface inet_comparison_exp {_eq?: (Scalars['inet'] | null),_gt?: (Scalars['inet'] | null),_gte?: (Scalars['inet'] | null),_in?: (Scalars['inet'][] | null),_is_null?: (Scalars['Boolean'] | null),_lt?: (Scalars['inet'] | null),_lte?: (Scalars['inet'] | null),_neq?: (Scalars['inet'] | null),_nin?: (Scalars['inet'][] | null)} + + +/** Boolean expression to compare columns of type "json". All fields are combined with logical 'AND'. */ +export interface json_comparison_exp {_eq?: (Scalars['json'] | null),_gt?: (Scalars['json'] | null),_gte?: (Scalars['json'] | null),_in?: (Scalars['json'][] | null),_is_null?: (Scalars['Boolean'] | null),_lt?: (Scalars['json'] | null),_lte?: (Scalars['json'] | null),_neq?: (Scalars['json'] | null),_nin?: (Scalars['json'][] | null)} + +export interface jsonb_cast_exp {String?: (String_comparison_exp | null)} + + +/** Boolean expression to compare columns of type "jsonb". All fields are combined with logical 'AND'. */ +export interface jsonb_comparison_exp {_cast?: (jsonb_cast_exp | null), +/** is the column contained in the given json value */ +_contained_in?: (Scalars['jsonb'] | null), +/** does the column contain the given json value at the top level */ +_contains?: (Scalars['jsonb'] | null),_eq?: (Scalars['jsonb'] | null),_gt?: (Scalars['jsonb'] | null),_gte?: (Scalars['jsonb'] | null), +/** does the string exist as a top-level key in the column */ +_has_key?: (Scalars['String'] | null), +/** do all of these strings exist as top-level keys in the column */ +_has_keys_all?: (Scalars['String'][] | null), +/** do any of these strings exist as top-level keys in the column */ +_has_keys_any?: (Scalars['String'][] | null),_in?: (Scalars['jsonb'][] | null),_is_null?: (Scalars['Boolean'] | null),_lt?: (Scalars['jsonb'] | null),_lte?: (Scalars['jsonb'] | null),_neq?: (Scalars['jsonb'] | null),_nin?: (Scalars['jsonb'][] | null)} + + +/** columns and relationships of "leaderboard_entries" */ +export interface leaderboard_entriesGenqlSelection{ + matches_played?: boolean | number + player_avatar_url?: boolean | number + player_country?: boolean | number + player_custom_avatar_url?: boolean | number + player_name?: boolean | number + player_steam_id?: boolean | number + secondary_value?: boolean | number + tertiary_value?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface leaderboard_entries_aggregateGenqlSelection{ + aggregate?: leaderboard_entries_aggregate_fieldsGenqlSelection + nodes?: leaderboard_entriesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "leaderboard_entries" */ +export interface leaderboard_entries_aggregate_fieldsGenqlSelection{ + avg?: leaderboard_entries_avg_fieldsGenqlSelection + count?: { __args: {columns?: (leaderboard_entries_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: leaderboard_entries_max_fieldsGenqlSelection + min?: leaderboard_entries_min_fieldsGenqlSelection + stddev?: leaderboard_entries_stddev_fieldsGenqlSelection + stddev_pop?: leaderboard_entries_stddev_pop_fieldsGenqlSelection + stddev_samp?: leaderboard_entries_stddev_samp_fieldsGenqlSelection + sum?: leaderboard_entries_sum_fieldsGenqlSelection + var_pop?: leaderboard_entries_var_pop_fieldsGenqlSelection + var_samp?: leaderboard_entries_var_samp_fieldsGenqlSelection + variance?: leaderboard_entries_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface leaderboard_entries_avg_fieldsGenqlSelection{ + matches_played?: boolean | number + secondary_value?: boolean | number + tertiary_value?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "leaderboard_entries". All fields are combined with a logical 'AND'. */ +export interface leaderboard_entries_bool_exp {_and?: (leaderboard_entries_bool_exp[] | null),_not?: (leaderboard_entries_bool_exp | null),_or?: (leaderboard_entries_bool_exp[] | null),matches_played?: (Int_comparison_exp | null),player_avatar_url?: (String_comparison_exp | null),player_country?: (String_comparison_exp | null),player_custom_avatar_url?: (String_comparison_exp | null),player_name?: (String_comparison_exp | null),player_steam_id?: (String_comparison_exp | null),secondary_value?: (float8_comparison_exp | null),tertiary_value?: (float8_comparison_exp | null),value?: (float8_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "leaderboard_entries" */ +export interface leaderboard_entries_inc_input {matches_played?: (Scalars['Int'] | null),secondary_value?: (Scalars['float8'] | null),tertiary_value?: (Scalars['float8'] | null),value?: (Scalars['float8'] | null)} + + +/** input type for inserting data into table "leaderboard_entries" */ +export interface leaderboard_entries_insert_input {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)} + + +/** aggregate max on columns */ +export interface leaderboard_entries_max_fieldsGenqlSelection{ + matches_played?: boolean | number + player_avatar_url?: boolean | number + player_country?: boolean | number + player_custom_avatar_url?: boolean | number + player_name?: boolean | number + player_steam_id?: boolean | number + secondary_value?: boolean | number + tertiary_value?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface leaderboard_entries_min_fieldsGenqlSelection{ + matches_played?: boolean | number + player_avatar_url?: boolean | number + player_country?: boolean | number + player_custom_avatar_url?: boolean | number + player_name?: boolean | number + player_steam_id?: boolean | number + secondary_value?: boolean | number + tertiary_value?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "leaderboard_entries" */ +export interface leaderboard_entries_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: leaderboard_entriesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Ordering options when selecting data from "leaderboard_entries". */ +export interface leaderboard_entries_order_by {matches_played?: (order_by | null),player_avatar_url?: (order_by | null),player_country?: (order_by | null),player_custom_avatar_url?: (order_by | null),player_name?: (order_by | null),player_steam_id?: (order_by | null),secondary_value?: (order_by | null),tertiary_value?: (order_by | null),value?: (order_by | null)} + + +/** input type for updating data in table "leaderboard_entries" */ +export interface leaderboard_entries_set_input {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)} + + +/** aggregate stddev on columns */ +export interface leaderboard_entries_stddev_fieldsGenqlSelection{ + matches_played?: boolean | number + secondary_value?: boolean | number + tertiary_value?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface leaderboard_entries_stddev_pop_fieldsGenqlSelection{ + matches_played?: boolean | number + secondary_value?: boolean | number + tertiary_value?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface leaderboard_entries_stddev_samp_fieldsGenqlSelection{ + matches_played?: boolean | number + secondary_value?: boolean | number + tertiary_value?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "leaderboard_entries" */ +export interface leaderboard_entries_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: leaderboard_entries_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface leaderboard_entries_stream_cursor_value_input {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)} + + +/** aggregate sum on columns */ +export interface leaderboard_entries_sum_fieldsGenqlSelection{ + matches_played?: boolean | number + secondary_value?: boolean | number + tertiary_value?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface leaderboard_entries_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (leaderboard_entries_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (leaderboard_entries_set_input | null), +/** filter the rows which have to be updated */ +where: leaderboard_entries_bool_exp} + + +/** aggregate var_pop on columns */ +export interface leaderboard_entries_var_pop_fieldsGenqlSelection{ + matches_played?: boolean | number + secondary_value?: boolean | number + tertiary_value?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface leaderboard_entries_var_samp_fieldsGenqlSelection{ + matches_played?: boolean | number + secondary_value?: boolean | number + tertiary_value?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface leaderboard_entries_variance_fieldsGenqlSelection{ + matches_played?: boolean | number + secondary_value?: boolean | number + tertiary_value?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface league_award_forfeit_args {_tournament_bracket_id?: (Scalars['uuid'] | null),_winning_tournament_team_id?: (Scalars['uuid'] | null)} + + +/** columns and relationships of "league_divisions" */ +export interface league_divisionsGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + name?: boolean | number + /** An array relationship */ + season_divisions?: (league_season_divisionsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_season_divisions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_season_divisions_order_by[] | null), + /** filter the rows returned */ + where?: (league_season_divisions_bool_exp | null)} }) + /** An aggregate relationship */ + season_divisions_aggregate?: (league_season_divisions_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_season_divisions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_season_divisions_order_by[] | null), + /** filter the rows returned */ + where?: (league_season_divisions_bool_exp | null)} }) + tier?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "league_divisions" */ +export interface league_divisions_aggregateGenqlSelection{ + aggregate?: league_divisions_aggregate_fieldsGenqlSelection + nodes?: league_divisionsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "league_divisions" */ +export interface league_divisions_aggregate_fieldsGenqlSelection{ + avg?: league_divisions_avg_fieldsGenqlSelection + count?: { __args: {columns?: (league_divisions_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: league_divisions_max_fieldsGenqlSelection + min?: league_divisions_min_fieldsGenqlSelection + stddev?: league_divisions_stddev_fieldsGenqlSelection + stddev_pop?: league_divisions_stddev_pop_fieldsGenqlSelection + stddev_samp?: league_divisions_stddev_samp_fieldsGenqlSelection + sum?: league_divisions_sum_fieldsGenqlSelection + var_pop?: league_divisions_var_pop_fieldsGenqlSelection + var_samp?: league_divisions_var_samp_fieldsGenqlSelection + variance?: league_divisions_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface league_divisions_avg_fieldsGenqlSelection{ + tier?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "league_divisions". All fields are combined with a logical 'AND'. */ +export interface league_divisions_bool_exp {_and?: (league_divisions_bool_exp[] | null),_not?: (league_divisions_bool_exp | null),_or?: (league_divisions_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),name?: (String_comparison_exp | null),season_divisions?: (league_season_divisions_bool_exp | null),season_divisions_aggregate?: (league_season_divisions_aggregate_bool_exp | null),tier?: (smallint_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "league_divisions" */ +export interface league_divisions_inc_input {tier?: (Scalars['smallint'] | null)} + + +/** input type for inserting data into table "league_divisions" */ +export interface league_divisions_insert_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),season_divisions?: (league_season_divisions_arr_rel_insert_input | null),tier?: (Scalars['smallint'] | null)} + + +/** aggregate max on columns */ +export interface league_divisions_max_fieldsGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + name?: boolean | number + tier?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface league_divisions_min_fieldsGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + name?: boolean | number + tier?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "league_divisions" */ +export interface league_divisions_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: league_divisionsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "league_divisions" */ +export interface league_divisions_obj_rel_insert_input {data: league_divisions_insert_input, +/** upsert condition */ +on_conflict?: (league_divisions_on_conflict | null)} + + +/** on_conflict condition type for table "league_divisions" */ +export interface league_divisions_on_conflict {constraint: league_divisions_constraint,update_columns?: league_divisions_update_column[],where?: (league_divisions_bool_exp | null)} + + +/** Ordering options when selecting data from "league_divisions". */ +export interface league_divisions_order_by {created_at?: (order_by | null),id?: (order_by | null),name?: (order_by | null),season_divisions_aggregate?: (league_season_divisions_aggregate_order_by | null),tier?: (order_by | null)} + + +/** primary key columns input for table: league_divisions */ +export interface league_divisions_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "league_divisions" */ +export interface league_divisions_set_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),tier?: (Scalars['smallint'] | null)} + + +/** aggregate stddev on columns */ +export interface league_divisions_stddev_fieldsGenqlSelection{ + tier?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface league_divisions_stddev_pop_fieldsGenqlSelection{ + tier?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface league_divisions_stddev_samp_fieldsGenqlSelection{ + tier?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "league_divisions" */ +export interface league_divisions_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: league_divisions_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface league_divisions_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),tier?: (Scalars['smallint'] | null)} + + +/** aggregate sum on columns */ +export interface league_divisions_sum_fieldsGenqlSelection{ + tier?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface league_divisions_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (league_divisions_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (league_divisions_set_input | null), +/** filter the rows which have to be updated */ +where: league_divisions_bool_exp} + + +/** aggregate var_pop on columns */ +export interface league_divisions_var_pop_fieldsGenqlSelection{ + tier?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface league_divisions_var_samp_fieldsGenqlSelection{ + tier?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface league_divisions_variance_fieldsGenqlSelection{ + tier?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "league_match_weeks" */ +export interface league_match_weeksGenqlSelection{ + closes_at?: boolean | number + created_at?: boolean | number + default_match_at?: boolean | number + id?: boolean | number + league_season_id?: boolean | number + opens_at?: boolean | number + /** An object relationship */ + season?: league_seasonsGenqlSelection + week_number?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "league_match_weeks" */ +export interface league_match_weeks_aggregateGenqlSelection{ + aggregate?: league_match_weeks_aggregate_fieldsGenqlSelection + nodes?: league_match_weeksGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface league_match_weeks_aggregate_bool_exp {count?: (league_match_weeks_aggregate_bool_exp_count | null)} + +export interface league_match_weeks_aggregate_bool_exp_count {arguments?: (league_match_weeks_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (league_match_weeks_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "league_match_weeks" */ +export interface league_match_weeks_aggregate_fieldsGenqlSelection{ + avg?: league_match_weeks_avg_fieldsGenqlSelection + count?: { __args: {columns?: (league_match_weeks_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: league_match_weeks_max_fieldsGenqlSelection + min?: league_match_weeks_min_fieldsGenqlSelection + stddev?: league_match_weeks_stddev_fieldsGenqlSelection + stddev_pop?: league_match_weeks_stddev_pop_fieldsGenqlSelection + stddev_samp?: league_match_weeks_stddev_samp_fieldsGenqlSelection + sum?: league_match_weeks_sum_fieldsGenqlSelection + var_pop?: league_match_weeks_var_pop_fieldsGenqlSelection + var_samp?: league_match_weeks_var_samp_fieldsGenqlSelection + variance?: league_match_weeks_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "league_match_weeks" */ +export interface league_match_weeks_aggregate_order_by {avg?: (league_match_weeks_avg_order_by | null),count?: (order_by | null),max?: (league_match_weeks_max_order_by | null),min?: (league_match_weeks_min_order_by | null),stddev?: (league_match_weeks_stddev_order_by | null),stddev_pop?: (league_match_weeks_stddev_pop_order_by | null),stddev_samp?: (league_match_weeks_stddev_samp_order_by | null),sum?: (league_match_weeks_sum_order_by | null),var_pop?: (league_match_weeks_var_pop_order_by | null),var_samp?: (league_match_weeks_var_samp_order_by | null),variance?: (league_match_weeks_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "league_match_weeks" */ +export interface league_match_weeks_arr_rel_insert_input {data: league_match_weeks_insert_input[], +/** upsert condition */ +on_conflict?: (league_match_weeks_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface league_match_weeks_avg_fieldsGenqlSelection{ + week_number?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "league_match_weeks" */ +export interface league_match_weeks_avg_order_by {week_number?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "league_match_weeks". All fields are combined with a logical 'AND'. */ +export interface league_match_weeks_bool_exp {_and?: (league_match_weeks_bool_exp[] | null),_not?: (league_match_weeks_bool_exp | null),_or?: (league_match_weeks_bool_exp[] | null),closes_at?: (timestamptz_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),default_match_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),league_season_id?: (uuid_comparison_exp | null),opens_at?: (timestamptz_comparison_exp | null),season?: (league_seasons_bool_exp | null),week_number?: (Int_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "league_match_weeks" */ +export interface league_match_weeks_inc_input {week_number?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "league_match_weeks" */ +export interface league_match_weeks_insert_input {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),season?: (league_seasons_obj_rel_insert_input | null),week_number?: (Scalars['Int'] | null)} + + +/** aggregate max on columns */ +export interface league_match_weeks_max_fieldsGenqlSelection{ + closes_at?: boolean | number + created_at?: boolean | number + default_match_at?: boolean | number + id?: boolean | number + league_season_id?: boolean | number + opens_at?: boolean | number + week_number?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "league_match_weeks" */ +export interface league_match_weeks_max_order_by {closes_at?: (order_by | null),created_at?: (order_by | null),default_match_at?: (order_by | null),id?: (order_by | null),league_season_id?: (order_by | null),opens_at?: (order_by | null),week_number?: (order_by | null)} + + +/** aggregate min on columns */ +export interface league_match_weeks_min_fieldsGenqlSelection{ + closes_at?: boolean | number + created_at?: boolean | number + default_match_at?: boolean | number + id?: boolean | number + league_season_id?: boolean | number + opens_at?: boolean | number + week_number?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "league_match_weeks" */ +export interface league_match_weeks_min_order_by {closes_at?: (order_by | null),created_at?: (order_by | null),default_match_at?: (order_by | null),id?: (order_by | null),league_season_id?: (order_by | null),opens_at?: (order_by | null),week_number?: (order_by | null)} + + +/** response of any mutation on the table "league_match_weeks" */ +export interface league_match_weeks_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: league_match_weeksGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "league_match_weeks" */ +export interface league_match_weeks_on_conflict {constraint: league_match_weeks_constraint,update_columns?: league_match_weeks_update_column[],where?: (league_match_weeks_bool_exp | null)} + + +/** Ordering options when selecting data from "league_match_weeks". */ +export interface league_match_weeks_order_by {closes_at?: (order_by | null),created_at?: (order_by | null),default_match_at?: (order_by | null),id?: (order_by | null),league_season_id?: (order_by | null),opens_at?: (order_by | null),season?: (league_seasons_order_by | null),week_number?: (order_by | null)} + + +/** primary key columns input for table: league_match_weeks */ +export interface league_match_weeks_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "league_match_weeks" */ +export interface league_match_weeks_set_input {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)} + + +/** aggregate stddev on columns */ +export interface league_match_weeks_stddev_fieldsGenqlSelection{ + week_number?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "league_match_weeks" */ +export interface league_match_weeks_stddev_order_by {week_number?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface league_match_weeks_stddev_pop_fieldsGenqlSelection{ + week_number?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "league_match_weeks" */ +export interface league_match_weeks_stddev_pop_order_by {week_number?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface league_match_weeks_stddev_samp_fieldsGenqlSelection{ + week_number?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "league_match_weeks" */ +export interface league_match_weeks_stddev_samp_order_by {week_number?: (order_by | null)} + + +/** Streaming cursor of the table "league_match_weeks" */ +export interface league_match_weeks_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: league_match_weeks_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface league_match_weeks_stream_cursor_value_input {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)} + + +/** aggregate sum on columns */ +export interface league_match_weeks_sum_fieldsGenqlSelection{ + week_number?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "league_match_weeks" */ +export interface league_match_weeks_sum_order_by {week_number?: (order_by | null)} + +export interface league_match_weeks_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (league_match_weeks_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (league_match_weeks_set_input | null), +/** filter the rows which have to be updated */ +where: league_match_weeks_bool_exp} + + +/** aggregate var_pop on columns */ +export interface league_match_weeks_var_pop_fieldsGenqlSelection{ + week_number?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "league_match_weeks" */ +export interface league_match_weeks_var_pop_order_by {week_number?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface league_match_weeks_var_samp_fieldsGenqlSelection{ + week_number?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "league_match_weeks" */ +export interface league_match_weeks_var_samp_order_by {week_number?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface league_match_weeks_variance_fieldsGenqlSelection{ + week_number?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "league_match_weeks" */ +export interface league_match_weeks_variance_order_by {week_number?: (order_by | null)} + + +/** columns and relationships of "league_relegation_playoffs" */ +export interface league_relegation_playoffsGenqlSelection{ + created_at?: boolean | number + /** An object relationship */ + higher_division?: league_divisionsGenqlSelection + higher_division_id?: boolean | number + higher_slots?: boolean | number + id?: boolean | number + league_season_id?: boolean | number + /** An object relationship */ + lower_division?: league_divisionsGenqlSelection + lower_division_id?: boolean | number + resolved_at?: boolean | number + /** An object relationship */ + season?: league_seasonsGenqlSelection + /** An object relationship */ + tournament?: tournamentsGenqlSelection + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "league_relegation_playoffs" */ +export interface league_relegation_playoffs_aggregateGenqlSelection{ + aggregate?: league_relegation_playoffs_aggregate_fieldsGenqlSelection + nodes?: league_relegation_playoffsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface league_relegation_playoffs_aggregate_bool_exp {count?: (league_relegation_playoffs_aggregate_bool_exp_count | null)} + +export interface league_relegation_playoffs_aggregate_bool_exp_count {arguments?: (league_relegation_playoffs_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (league_relegation_playoffs_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "league_relegation_playoffs" */ +export interface league_relegation_playoffs_aggregate_fieldsGenqlSelection{ + avg?: league_relegation_playoffs_avg_fieldsGenqlSelection + count?: { __args: {columns?: (league_relegation_playoffs_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: league_relegation_playoffs_max_fieldsGenqlSelection + min?: league_relegation_playoffs_min_fieldsGenqlSelection + stddev?: league_relegation_playoffs_stddev_fieldsGenqlSelection + stddev_pop?: league_relegation_playoffs_stddev_pop_fieldsGenqlSelection + stddev_samp?: league_relegation_playoffs_stddev_samp_fieldsGenqlSelection + sum?: league_relegation_playoffs_sum_fieldsGenqlSelection + var_pop?: league_relegation_playoffs_var_pop_fieldsGenqlSelection + var_samp?: league_relegation_playoffs_var_samp_fieldsGenqlSelection + variance?: league_relegation_playoffs_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "league_relegation_playoffs" */ +export interface league_relegation_playoffs_aggregate_order_by {avg?: (league_relegation_playoffs_avg_order_by | null),count?: (order_by | null),max?: (league_relegation_playoffs_max_order_by | null),min?: (league_relegation_playoffs_min_order_by | null),stddev?: (league_relegation_playoffs_stddev_order_by | null),stddev_pop?: (league_relegation_playoffs_stddev_pop_order_by | null),stddev_samp?: (league_relegation_playoffs_stddev_samp_order_by | null),sum?: (league_relegation_playoffs_sum_order_by | null),var_pop?: (league_relegation_playoffs_var_pop_order_by | null),var_samp?: (league_relegation_playoffs_var_samp_order_by | null),variance?: (league_relegation_playoffs_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "league_relegation_playoffs" */ +export interface league_relegation_playoffs_arr_rel_insert_input {data: league_relegation_playoffs_insert_input[], +/** upsert condition */ +on_conflict?: (league_relegation_playoffs_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface league_relegation_playoffs_avg_fieldsGenqlSelection{ + higher_slots?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "league_relegation_playoffs" */ +export interface league_relegation_playoffs_avg_order_by {higher_slots?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "league_relegation_playoffs". All fields are combined with a logical 'AND'. */ +export interface league_relegation_playoffs_bool_exp {_and?: (league_relegation_playoffs_bool_exp[] | null),_not?: (league_relegation_playoffs_bool_exp | null),_or?: (league_relegation_playoffs_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),higher_division?: (league_divisions_bool_exp | null),higher_division_id?: (uuid_comparison_exp | null),higher_slots?: (Int_comparison_exp | null),id?: (uuid_comparison_exp | null),league_season_id?: (uuid_comparison_exp | null),lower_division?: (league_divisions_bool_exp | null),lower_division_id?: (uuid_comparison_exp | null),resolved_at?: (timestamptz_comparison_exp | null),season?: (league_seasons_bool_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "league_relegation_playoffs" */ +export interface league_relegation_playoffs_inc_input {higher_slots?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "league_relegation_playoffs" */ +export interface league_relegation_playoffs_insert_input {created_at?: (Scalars['timestamptz'] | null),higher_division?: (league_divisions_obj_rel_insert_input | null),higher_division_id?: (Scalars['uuid'] | null),higher_slots?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),league_season_id?: (Scalars['uuid'] | null),lower_division?: (league_divisions_obj_rel_insert_input | null),lower_division_id?: (Scalars['uuid'] | null),resolved_at?: (Scalars['timestamptz'] | null),season?: (league_seasons_obj_rel_insert_input | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface league_relegation_playoffs_max_fieldsGenqlSelection{ + created_at?: boolean | number + higher_division_id?: boolean | number + higher_slots?: boolean | number + id?: boolean | number + league_season_id?: boolean | number + lower_division_id?: boolean | number + resolved_at?: boolean | number + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "league_relegation_playoffs" */ +export interface league_relegation_playoffs_max_order_by {created_at?: (order_by | null),higher_division_id?: (order_by | null),higher_slots?: (order_by | null),id?: (order_by | null),league_season_id?: (order_by | null),lower_division_id?: (order_by | null),resolved_at?: (order_by | null),tournament_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface league_relegation_playoffs_min_fieldsGenqlSelection{ + created_at?: boolean | number + higher_division_id?: boolean | number + higher_slots?: boolean | number + id?: boolean | number + league_season_id?: boolean | number + lower_division_id?: boolean | number + resolved_at?: boolean | number + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "league_relegation_playoffs" */ +export interface league_relegation_playoffs_min_order_by {created_at?: (order_by | null),higher_division_id?: (order_by | null),higher_slots?: (order_by | null),id?: (order_by | null),league_season_id?: (order_by | null),lower_division_id?: (order_by | null),resolved_at?: (order_by | null),tournament_id?: (order_by | null)} + + +/** response of any mutation on the table "league_relegation_playoffs" */ +export interface league_relegation_playoffs_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: league_relegation_playoffsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "league_relegation_playoffs" */ +export interface league_relegation_playoffs_on_conflict {constraint: league_relegation_playoffs_constraint,update_columns?: league_relegation_playoffs_update_column[],where?: (league_relegation_playoffs_bool_exp | null)} + + +/** Ordering options when selecting data from "league_relegation_playoffs". */ +export interface league_relegation_playoffs_order_by {created_at?: (order_by | null),higher_division?: (league_divisions_order_by | null),higher_division_id?: (order_by | null),higher_slots?: (order_by | null),id?: (order_by | null),league_season_id?: (order_by | null),lower_division?: (league_divisions_order_by | null),lower_division_id?: (order_by | null),resolved_at?: (order_by | null),season?: (league_seasons_order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null)} + + +/** primary key columns input for table: league_relegation_playoffs */ +export interface league_relegation_playoffs_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "league_relegation_playoffs" */ +export interface league_relegation_playoffs_set_input {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)} + + +/** aggregate stddev on columns */ +export interface league_relegation_playoffs_stddev_fieldsGenqlSelection{ + higher_slots?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "league_relegation_playoffs" */ +export interface league_relegation_playoffs_stddev_order_by {higher_slots?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface league_relegation_playoffs_stddev_pop_fieldsGenqlSelection{ + higher_slots?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "league_relegation_playoffs" */ +export interface league_relegation_playoffs_stddev_pop_order_by {higher_slots?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface league_relegation_playoffs_stddev_samp_fieldsGenqlSelection{ + higher_slots?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "league_relegation_playoffs" */ +export interface league_relegation_playoffs_stddev_samp_order_by {higher_slots?: (order_by | null)} + + +/** Streaming cursor of the table "league_relegation_playoffs" */ +export interface league_relegation_playoffs_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: league_relegation_playoffs_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface league_relegation_playoffs_stream_cursor_value_input {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)} + + +/** aggregate sum on columns */ +export interface league_relegation_playoffs_sum_fieldsGenqlSelection{ + higher_slots?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "league_relegation_playoffs" */ +export interface league_relegation_playoffs_sum_order_by {higher_slots?: (order_by | null)} + +export interface league_relegation_playoffs_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (league_relegation_playoffs_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (league_relegation_playoffs_set_input | null), +/** filter the rows which have to be updated */ +where: league_relegation_playoffs_bool_exp} + + +/** aggregate var_pop on columns */ +export interface league_relegation_playoffs_var_pop_fieldsGenqlSelection{ + higher_slots?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "league_relegation_playoffs" */ +export interface league_relegation_playoffs_var_pop_order_by {higher_slots?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface league_relegation_playoffs_var_samp_fieldsGenqlSelection{ + higher_slots?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "league_relegation_playoffs" */ +export interface league_relegation_playoffs_var_samp_order_by {higher_slots?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface league_relegation_playoffs_variance_fieldsGenqlSelection{ + higher_slots?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "league_relegation_playoffs" */ +export interface league_relegation_playoffs_variance_order_by {higher_slots?: (order_by | null)} + + +/** columns and relationships of "league_scheduling_proposals" */ +export interface league_scheduling_proposalsGenqlSelection{ + /** An object relationship */ + bracket?: tournament_bracketsGenqlSelection + created_at?: boolean | number + /** An object relationship */ + e_proposal_status?: e_league_proposal_statusesGenqlSelection + id?: boolean | number + message?: boolean | number + /** An object relationship */ + proposed_by?: playersGenqlSelection + proposed_by_league_team_season_id?: boolean | number + proposed_by_steam_id?: boolean | number + proposed_time?: boolean | number + /** An object relationship */ + responded_by?: playersGenqlSelection + responded_by_steam_id?: boolean | number + status?: boolean | number + /** An object relationship */ + team_season?: league_team_seasonsGenqlSelection + tournament_bracket_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "league_scheduling_proposals" */ +export interface league_scheduling_proposals_aggregateGenqlSelection{ + aggregate?: league_scheduling_proposals_aggregate_fieldsGenqlSelection + nodes?: league_scheduling_proposalsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface league_scheduling_proposals_aggregate_bool_exp {count?: (league_scheduling_proposals_aggregate_bool_exp_count | null)} + +export interface league_scheduling_proposals_aggregate_bool_exp_count {arguments?: (league_scheduling_proposals_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (league_scheduling_proposals_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "league_scheduling_proposals" */ +export interface league_scheduling_proposals_aggregate_fieldsGenqlSelection{ + avg?: league_scheduling_proposals_avg_fieldsGenqlSelection + count?: { __args: {columns?: (league_scheduling_proposals_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: league_scheduling_proposals_max_fieldsGenqlSelection + min?: league_scheduling_proposals_min_fieldsGenqlSelection + stddev?: league_scheduling_proposals_stddev_fieldsGenqlSelection + stddev_pop?: league_scheduling_proposals_stddev_pop_fieldsGenqlSelection + stddev_samp?: league_scheduling_proposals_stddev_samp_fieldsGenqlSelection + sum?: league_scheduling_proposals_sum_fieldsGenqlSelection + var_pop?: league_scheduling_proposals_var_pop_fieldsGenqlSelection + var_samp?: league_scheduling_proposals_var_samp_fieldsGenqlSelection + variance?: league_scheduling_proposals_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "league_scheduling_proposals" */ +export interface league_scheduling_proposals_aggregate_order_by {avg?: (league_scheduling_proposals_avg_order_by | null),count?: (order_by | null),max?: (league_scheduling_proposals_max_order_by | null),min?: (league_scheduling_proposals_min_order_by | null),stddev?: (league_scheduling_proposals_stddev_order_by | null),stddev_pop?: (league_scheduling_proposals_stddev_pop_order_by | null),stddev_samp?: (league_scheduling_proposals_stddev_samp_order_by | null),sum?: (league_scheduling_proposals_sum_order_by | null),var_pop?: (league_scheduling_proposals_var_pop_order_by | null),var_samp?: (league_scheduling_proposals_var_samp_order_by | null),variance?: (league_scheduling_proposals_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "league_scheduling_proposals" */ +export interface league_scheduling_proposals_arr_rel_insert_input {data: league_scheduling_proposals_insert_input[], +/** upsert condition */ +on_conflict?: (league_scheduling_proposals_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface league_scheduling_proposals_avg_fieldsGenqlSelection{ + proposed_by_steam_id?: boolean | number + responded_by_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "league_scheduling_proposals" */ +export interface league_scheduling_proposals_avg_order_by {proposed_by_steam_id?: (order_by | null),responded_by_steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "league_scheduling_proposals". All fields are combined with a logical 'AND'. */ +export interface league_scheduling_proposals_bool_exp {_and?: (league_scheduling_proposals_bool_exp[] | null),_not?: (league_scheduling_proposals_bool_exp | null),_or?: (league_scheduling_proposals_bool_exp[] | null),bracket?: (tournament_brackets_bool_exp | null),created_at?: (timestamptz_comparison_exp | null),e_proposal_status?: (e_league_proposal_statuses_bool_exp | null),id?: (uuid_comparison_exp | null),message?: (String_comparison_exp | null),proposed_by?: (players_bool_exp | null),proposed_by_league_team_season_id?: (uuid_comparison_exp | null),proposed_by_steam_id?: (bigint_comparison_exp | null),proposed_time?: (timestamptz_comparison_exp | null),responded_by?: (players_bool_exp | null),responded_by_steam_id?: (bigint_comparison_exp | null),status?: (e_league_proposal_statuses_enum_comparison_exp | null),team_season?: (league_team_seasons_bool_exp | null),tournament_bracket_id?: (uuid_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "league_scheduling_proposals" */ +export interface league_scheduling_proposals_inc_input {proposed_by_steam_id?: (Scalars['bigint'] | null),responded_by_steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "league_scheduling_proposals" */ +export interface league_scheduling_proposals_insert_input {bracket?: (tournament_brackets_obj_rel_insert_input | null),created_at?: (Scalars['timestamptz'] | null),e_proposal_status?: (e_league_proposal_statuses_obj_rel_insert_input | null),id?: (Scalars['uuid'] | null),message?: (Scalars['String'] | null),proposed_by?: (players_obj_rel_insert_input | null),proposed_by_league_team_season_id?: (Scalars['uuid'] | null),proposed_by_steam_id?: (Scalars['bigint'] | null),proposed_time?: (Scalars['timestamptz'] | null),responded_by?: (players_obj_rel_insert_input | null),responded_by_steam_id?: (Scalars['bigint'] | null),status?: (e_league_proposal_statuses_enum | null),team_season?: (league_team_seasons_obj_rel_insert_input | null),tournament_bracket_id?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface league_scheduling_proposals_max_fieldsGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + message?: boolean | number + proposed_by_league_team_season_id?: boolean | number + proposed_by_steam_id?: boolean | number + proposed_time?: boolean | number + responded_by_steam_id?: boolean | number + tournament_bracket_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "league_scheduling_proposals" */ +export interface league_scheduling_proposals_max_order_by {created_at?: (order_by | null),id?: (order_by | null),message?: (order_by | null),proposed_by_league_team_season_id?: (order_by | null),proposed_by_steam_id?: (order_by | null),proposed_time?: (order_by | null),responded_by_steam_id?: (order_by | null),tournament_bracket_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface league_scheduling_proposals_min_fieldsGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + message?: boolean | number + proposed_by_league_team_season_id?: boolean | number + proposed_by_steam_id?: boolean | number + proposed_time?: boolean | number + responded_by_steam_id?: boolean | number + tournament_bracket_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "league_scheduling_proposals" */ +export interface league_scheduling_proposals_min_order_by {created_at?: (order_by | null),id?: (order_by | null),message?: (order_by | null),proposed_by_league_team_season_id?: (order_by | null),proposed_by_steam_id?: (order_by | null),proposed_time?: (order_by | null),responded_by_steam_id?: (order_by | null),tournament_bracket_id?: (order_by | null)} + + +/** response of any mutation on the table "league_scheduling_proposals" */ +export interface league_scheduling_proposals_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: league_scheduling_proposalsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "league_scheduling_proposals" */ +export interface league_scheduling_proposals_on_conflict {constraint: league_scheduling_proposals_constraint,update_columns?: league_scheduling_proposals_update_column[],where?: (league_scheduling_proposals_bool_exp | null)} + + +/** Ordering options when selecting data from "league_scheduling_proposals". */ +export interface league_scheduling_proposals_order_by {bracket?: (tournament_brackets_order_by | null),created_at?: (order_by | null),e_proposal_status?: (e_league_proposal_statuses_order_by | null),id?: (order_by | null),message?: (order_by | null),proposed_by?: (players_order_by | null),proposed_by_league_team_season_id?: (order_by | null),proposed_by_steam_id?: (order_by | null),proposed_time?: (order_by | null),responded_by?: (players_order_by | null),responded_by_steam_id?: (order_by | null),status?: (order_by | null),team_season?: (league_team_seasons_order_by | null),tournament_bracket_id?: (order_by | null)} + + +/** primary key columns input for table: league_scheduling_proposals */ +export interface league_scheduling_proposals_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "league_scheduling_proposals" */ +export interface league_scheduling_proposals_set_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),message?: (Scalars['String'] | null),proposed_by_league_team_season_id?: (Scalars['uuid'] | null),proposed_by_steam_id?: (Scalars['bigint'] | null),proposed_time?: (Scalars['timestamptz'] | null),responded_by_steam_id?: (Scalars['bigint'] | null),status?: (e_league_proposal_statuses_enum | null),tournament_bracket_id?: (Scalars['uuid'] | null)} + + +/** aggregate stddev on columns */ +export interface league_scheduling_proposals_stddev_fieldsGenqlSelection{ + proposed_by_steam_id?: boolean | number + responded_by_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "league_scheduling_proposals" */ +export interface league_scheduling_proposals_stddev_order_by {proposed_by_steam_id?: (order_by | null),responded_by_steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface league_scheduling_proposals_stddev_pop_fieldsGenqlSelection{ + proposed_by_steam_id?: boolean | number + responded_by_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "league_scheduling_proposals" */ +export interface league_scheduling_proposals_stddev_pop_order_by {proposed_by_steam_id?: (order_by | null),responded_by_steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface league_scheduling_proposals_stddev_samp_fieldsGenqlSelection{ + proposed_by_steam_id?: boolean | number + responded_by_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "league_scheduling_proposals" */ +export interface league_scheduling_proposals_stddev_samp_order_by {proposed_by_steam_id?: (order_by | null),responded_by_steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "league_scheduling_proposals" */ +export interface league_scheduling_proposals_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: league_scheduling_proposals_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface league_scheduling_proposals_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),message?: (Scalars['String'] | null),proposed_by_league_team_season_id?: (Scalars['uuid'] | null),proposed_by_steam_id?: (Scalars['bigint'] | null),proposed_time?: (Scalars['timestamptz'] | null),responded_by_steam_id?: (Scalars['bigint'] | null),status?: (e_league_proposal_statuses_enum | null),tournament_bracket_id?: (Scalars['uuid'] | null)} + + +/** aggregate sum on columns */ +export interface league_scheduling_proposals_sum_fieldsGenqlSelection{ + proposed_by_steam_id?: boolean | number + responded_by_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "league_scheduling_proposals" */ +export interface league_scheduling_proposals_sum_order_by {proposed_by_steam_id?: (order_by | null),responded_by_steam_id?: (order_by | null)} + +export interface league_scheduling_proposals_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (league_scheduling_proposals_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (league_scheduling_proposals_set_input | null), +/** filter the rows which have to be updated */ +where: league_scheduling_proposals_bool_exp} + + +/** aggregate var_pop on columns */ +export interface league_scheduling_proposals_var_pop_fieldsGenqlSelection{ + proposed_by_steam_id?: boolean | number + responded_by_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "league_scheduling_proposals" */ +export interface league_scheduling_proposals_var_pop_order_by {proposed_by_steam_id?: (order_by | null),responded_by_steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface league_scheduling_proposals_var_samp_fieldsGenqlSelection{ + proposed_by_steam_id?: boolean | number + responded_by_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "league_scheduling_proposals" */ +export interface league_scheduling_proposals_var_samp_order_by {proposed_by_steam_id?: (order_by | null),responded_by_steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface league_scheduling_proposals_variance_fieldsGenqlSelection{ + proposed_by_steam_id?: boolean | number + responded_by_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "league_scheduling_proposals" */ +export interface league_scheduling_proposals_variance_order_by {proposed_by_steam_id?: (order_by | null),responded_by_steam_id?: (order_by | null)} + + +/** columns and relationships of "league_season_divisions" */ +export interface league_season_divisionsGenqlSelection{ + created_at?: boolean | number + /** An object relationship */ + division?: league_divisionsGenqlSelection + id?: boolean | number + league_division_id?: boolean | number + league_season_id?: boolean | number + /** An object relationship */ + season?: league_seasonsGenqlSelection + /** An array relationship */ + standings?: (v_league_division_standingsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_league_division_standings_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_league_division_standings_order_by[] | null), + /** filter the rows returned */ + where?: (v_league_division_standings_bool_exp | null)} }) + /** An aggregate relationship */ + standings_aggregate?: (v_league_division_standings_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_league_division_standings_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_league_division_standings_order_by[] | null), + /** filter the rows returned */ + where?: (v_league_division_standings_bool_exp | null)} }) + /** An object relationship */ + tournament?: tournamentsGenqlSelection + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "league_season_divisions" */ +export interface league_season_divisions_aggregateGenqlSelection{ + aggregate?: league_season_divisions_aggregate_fieldsGenqlSelection + nodes?: league_season_divisionsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface league_season_divisions_aggregate_bool_exp {count?: (league_season_divisions_aggregate_bool_exp_count | null)} + +export interface league_season_divisions_aggregate_bool_exp_count {arguments?: (league_season_divisions_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (league_season_divisions_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "league_season_divisions" */ +export interface league_season_divisions_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (league_season_divisions_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: league_season_divisions_max_fieldsGenqlSelection + min?: league_season_divisions_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "league_season_divisions" */ +export interface league_season_divisions_aggregate_order_by {count?: (order_by | null),max?: (league_season_divisions_max_order_by | null),min?: (league_season_divisions_min_order_by | null)} + + +/** input type for inserting array relation for remote table "league_season_divisions" */ +export interface league_season_divisions_arr_rel_insert_input {data: league_season_divisions_insert_input[], +/** upsert condition */ +on_conflict?: (league_season_divisions_on_conflict | null)} + + +/** Boolean expression to filter rows from the table "league_season_divisions". All fields are combined with a logical 'AND'. */ +export interface league_season_divisions_bool_exp {_and?: (league_season_divisions_bool_exp[] | null),_not?: (league_season_divisions_bool_exp | null),_or?: (league_season_divisions_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),division?: (league_divisions_bool_exp | null),id?: (uuid_comparison_exp | null),league_division_id?: (uuid_comparison_exp | null),league_season_id?: (uuid_comparison_exp | null),season?: (league_seasons_bool_exp | null),standings?: (v_league_division_standings_bool_exp | null),standings_aggregate?: (v_league_division_standings_aggregate_bool_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null)} + + +/** input type for inserting data into table "league_season_divisions" */ +export interface league_season_divisions_insert_input {created_at?: (Scalars['timestamptz'] | null),division?: (league_divisions_obj_rel_insert_input | null),id?: (Scalars['uuid'] | null),league_division_id?: (Scalars['uuid'] | null),league_season_id?: (Scalars['uuid'] | null),season?: (league_seasons_obj_rel_insert_input | null),standings?: (v_league_division_standings_arr_rel_insert_input | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface league_season_divisions_max_fieldsGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + league_division_id?: boolean | number + league_season_id?: boolean | number + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "league_season_divisions" */ +export interface league_season_divisions_max_order_by {created_at?: (order_by | null),id?: (order_by | null),league_division_id?: (order_by | null),league_season_id?: (order_by | null),tournament_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface league_season_divisions_min_fieldsGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + league_division_id?: boolean | number + league_season_id?: boolean | number + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "league_season_divisions" */ +export interface league_season_divisions_min_order_by {created_at?: (order_by | null),id?: (order_by | null),league_division_id?: (order_by | null),league_season_id?: (order_by | null),tournament_id?: (order_by | null)} + + +/** response of any mutation on the table "league_season_divisions" */ +export interface league_season_divisions_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: league_season_divisionsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "league_season_divisions" */ +export interface league_season_divisions_obj_rel_insert_input {data: league_season_divisions_insert_input, +/** upsert condition */ +on_conflict?: (league_season_divisions_on_conflict | null)} + + +/** on_conflict condition type for table "league_season_divisions" */ +export interface league_season_divisions_on_conflict {constraint: league_season_divisions_constraint,update_columns?: league_season_divisions_update_column[],where?: (league_season_divisions_bool_exp | null)} + + +/** Ordering options when selecting data from "league_season_divisions". */ +export interface league_season_divisions_order_by {created_at?: (order_by | null),division?: (league_divisions_order_by | null),id?: (order_by | null),league_division_id?: (order_by | null),league_season_id?: (order_by | null),season?: (league_seasons_order_by | null),standings_aggregate?: (v_league_division_standings_aggregate_order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null)} + + +/** primary key columns input for table: league_season_divisions */ +export interface league_season_divisions_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "league_season_divisions" */ +export interface league_season_divisions_set_input {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)} + + +/** Streaming cursor of the table "league_season_divisions" */ +export interface league_season_divisions_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: league_season_divisions_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface league_season_divisions_stream_cursor_value_input {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)} + +export interface league_season_divisions_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (league_season_divisions_set_input | null), +/** filter the rows which have to be updated */ +where: league_season_divisions_bool_exp} + + +/** columns and relationships of "league_seasons" */ +export interface league_seasonsGenqlSelection{ + auto_regular_season_format?: boolean | number + /** 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)} }) + /** A computed field, executes function "can_register_for_league_season" */ + can_register?: boolean | number + created_at?: boolean | number + created_by_steam_id?: boolean | number + default_best_of?: boolean | number + direct_promote_count?: boolean | number + direct_relegate_count?: boolean | number + /** An object relationship */ + e_league_season_status?: e_league_season_statusesGenqlSelection + games_per_week?: boolean | number + id?: boolean | number + /** A computed field, executes function "is_league_season_admin" */ + is_league_admin?: boolean | number + /** A computed field, executes function "league_season_is_roster_locked" */ + is_roster_locked?: boolean | number + match_options_id?: boolean | number + /** An array relationship */ + match_weeks?: (league_match_weeksGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_match_weeks_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_match_weeks_order_by[] | null), + /** filter the rows returned */ + where?: (league_match_weeks_bool_exp | null)} }) + /** An aggregate relationship */ + match_weeks_aggregate?: (league_match_weeks_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_match_weeks_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_match_weeks_order_by[] | null), + /** filter the rows returned */ + where?: (league_match_weeks_bool_exp | null)} }) + match_weeks_count?: boolean | number + max_roster_size?: boolean | number + min_roster_size?: boolean | number + /** An array relationship */ + movements?: (league_team_movementsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_team_movements_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_team_movements_order_by[] | null), + /** filter the rows returned */ + where?: (league_team_movements_bool_exp | null)} }) + /** An aggregate relationship */ + movements_aggregate?: (league_team_movements_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_team_movements_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_team_movements_order_by[] | null), + /** filter the rows returned */ + where?: (league_team_movements_bool_exp | null)} }) + /** A computed field, executes function "league_season_my_registration" */ + my_registration?: (league_team_seasonsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_team_seasons_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_team_seasons_order_by[] | null), + /** filter the rows returned */ + where?: (league_team_seasons_bool_exp | null)} }) + name?: boolean | number + /** An object relationship */ + options?: match_optionsGenqlSelection + /** An array relationship */ + player_stats?: (v_league_season_player_statsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_league_season_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_league_season_player_stats_order_by[] | null), + /** filter the rows returned */ + where?: (v_league_season_player_stats_bool_exp | null)} }) + /** An aggregate relationship */ + player_stats_aggregate?: (v_league_season_player_stats_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_league_season_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_league_season_player_stats_order_by[] | null), + /** filter the rows returned */ + where?: (v_league_season_player_stats_bool_exp | null)} }) + playoff_best_of?: boolean | number + playoff_round_best_of?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number + playoff_seats?: boolean | number + playoff_stage_type?: boolean | number + playoff_third_place_match?: boolean | number + promote_count?: boolean | number + regular_season_stage_type?: boolean | number + relegate_count?: boolean | number + relegation_down_count?: boolean | number + /** An array relationship */ + relegation_playoffs?: (league_relegation_playoffsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_relegation_playoffs_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_relegation_playoffs_order_by[] | null), + /** filter the rows returned */ + where?: (league_relegation_playoffs_bool_exp | null)} }) + /** An aggregate relationship */ + relegation_playoffs_aggregate?: (league_relegation_playoffs_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_relegation_playoffs_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_relegation_playoffs_order_by[] | null), + /** filter the rows returned */ + where?: (league_relegation_playoffs_bool_exp | null)} }) + relegation_up_count?: boolean | number + roster_lock_at?: boolean | number + /** An array relationship */ + season_divisions?: (league_season_divisionsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_season_divisions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_season_divisions_order_by[] | null), + /** filter the rows returned */ + where?: (league_season_divisions_bool_exp | null)} }) + /** An aggregate relationship */ + season_divisions_aggregate?: (league_season_divisions_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_season_divisions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_season_divisions_order_by[] | null), + /** filter the rows returned */ + where?: (league_season_divisions_bool_exp | null)} }) + season_number?: boolean | number + signup_closes_at?: boolean | number + signup_opens_at?: boolean | number + /** An array relationship */ + standings?: (v_league_division_standingsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_league_division_standings_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_league_division_standings_order_by[] | null), + /** filter the rows returned */ + where?: (v_league_division_standings_bool_exp | null)} }) + /** An aggregate relationship */ + standings_aggregate?: (v_league_division_standings_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_league_division_standings_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_league_division_standings_order_by[] | null), + /** filter the rows returned */ + where?: (v_league_division_standings_bool_exp | null)} }) + starts_at?: boolean | number + status?: boolean | number + /** An array relationship */ + team_seasons?: (league_team_seasonsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_team_seasons_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_team_seasons_order_by[] | null), + /** filter the rows returned */ + where?: (league_team_seasons_bool_exp | null)} }) + /** An aggregate relationship */ + team_seasons_aggregate?: (league_team_seasons_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_team_seasons_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_team_seasons_order_by[] | null), + /** filter the rows returned */ + where?: (league_team_seasons_bool_exp | null)} }) + week_best_of?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "league_seasons" */ +export interface league_seasons_aggregateGenqlSelection{ + aggregate?: league_seasons_aggregate_fieldsGenqlSelection + nodes?: league_seasonsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "league_seasons" */ +export interface league_seasons_aggregate_fieldsGenqlSelection{ + avg?: league_seasons_avg_fieldsGenqlSelection + count?: { __args: {columns?: (league_seasons_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: league_seasons_max_fieldsGenqlSelection + min?: league_seasons_min_fieldsGenqlSelection + stddev?: league_seasons_stddev_fieldsGenqlSelection + stddev_pop?: league_seasons_stddev_pop_fieldsGenqlSelection + stddev_samp?: league_seasons_stddev_samp_fieldsGenqlSelection + sum?: league_seasons_sum_fieldsGenqlSelection + var_pop?: league_seasons_var_pop_fieldsGenqlSelection + var_samp?: league_seasons_var_samp_fieldsGenqlSelection + variance?: league_seasons_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** append existing jsonb value of filtered columns with new jsonb value */ +export interface league_seasons_append_input {playoff_round_best_of?: (Scalars['jsonb'] | null),week_best_of?: (Scalars['jsonb'] | null)} + + +/** aggregate avg on columns */ +export interface league_seasons_avg_fieldsGenqlSelection{ + created_by_steam_id?: boolean | number + default_best_of?: boolean | number + direct_promote_count?: boolean | number + direct_relegate_count?: boolean | number + games_per_week?: boolean | number + match_weeks_count?: boolean | number + max_roster_size?: boolean | number + min_roster_size?: boolean | number + playoff_best_of?: boolean | number + playoff_seats?: boolean | number + promote_count?: boolean | number + relegate_count?: boolean | number + relegation_down_count?: boolean | number + relegation_up_count?: boolean | number + season_number?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "league_seasons". All fields are combined with a logical 'AND'. */ +export interface league_seasons_bool_exp {_and?: (league_seasons_bool_exp[] | null),_not?: (league_seasons_bool_exp | null),_or?: (league_seasons_bool_exp[] | null),auto_regular_season_format?: (Boolean_comparison_exp | null),awards?: (award_recipients_bool_exp | null),awards_aggregate?: (award_recipients_aggregate_bool_exp | null),can_register?: (Boolean_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),created_by_steam_id?: (bigint_comparison_exp | null),default_best_of?: (Int_comparison_exp | null),direct_promote_count?: (Int_comparison_exp | null),direct_relegate_count?: (Int_comparison_exp | null),e_league_season_status?: (e_league_season_statuses_bool_exp | null),games_per_week?: (Int_comparison_exp | null),id?: (uuid_comparison_exp | null),is_league_admin?: (Boolean_comparison_exp | null),is_roster_locked?: (Boolean_comparison_exp | null),match_options_id?: (uuid_comparison_exp | null),match_weeks?: (league_match_weeks_bool_exp | null),match_weeks_aggregate?: (league_match_weeks_aggregate_bool_exp | null),match_weeks_count?: (Int_comparison_exp | null),max_roster_size?: (Int_comparison_exp | null),min_roster_size?: (Int_comparison_exp | null),movements?: (league_team_movements_bool_exp | null),movements_aggregate?: (league_team_movements_aggregate_bool_exp | null),my_registration?: (league_team_seasons_bool_exp | null),name?: (String_comparison_exp | null),options?: (match_options_bool_exp | null),player_stats?: (v_league_season_player_stats_bool_exp | null),player_stats_aggregate?: (v_league_season_player_stats_aggregate_bool_exp | null),playoff_best_of?: (Int_comparison_exp | null),playoff_round_best_of?: (jsonb_comparison_exp | null),playoff_seats?: (Int_comparison_exp | null),playoff_stage_type?: (e_tournament_stage_types_enum_comparison_exp | null),playoff_third_place_match?: (Boolean_comparison_exp | null),promote_count?: (Int_comparison_exp | null),regular_season_stage_type?: (e_tournament_stage_types_enum_comparison_exp | null),relegate_count?: (Int_comparison_exp | null),relegation_down_count?: (Int_comparison_exp | null),relegation_playoffs?: (league_relegation_playoffs_bool_exp | null),relegation_playoffs_aggregate?: (league_relegation_playoffs_aggregate_bool_exp | null),relegation_up_count?: (Int_comparison_exp | null),roster_lock_at?: (timestamptz_comparison_exp | null),season_divisions?: (league_season_divisions_bool_exp | null),season_divisions_aggregate?: (league_season_divisions_aggregate_bool_exp | null),season_number?: (Int_comparison_exp | null),signup_closes_at?: (timestamptz_comparison_exp | null),signup_opens_at?: (timestamptz_comparison_exp | null),standings?: (v_league_division_standings_bool_exp | null),standings_aggregate?: (v_league_division_standings_aggregate_bool_exp | null),starts_at?: (timestamptz_comparison_exp | null),status?: (e_league_season_statuses_enum_comparison_exp | null),team_seasons?: (league_team_seasons_bool_exp | null),team_seasons_aggregate?: (league_team_seasons_aggregate_bool_exp | null),week_best_of?: (jsonb_comparison_exp | null)} + + +/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ +export interface league_seasons_delete_at_path_input {playoff_round_best_of?: (Scalars['String'][] | null),week_best_of?: (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 league_seasons_delete_elem_input {playoff_round_best_of?: (Scalars['Int'] | null),week_best_of?: (Scalars['Int'] | null)} + + +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +export interface league_seasons_delete_key_input {playoff_round_best_of?: (Scalars['String'] | null),week_best_of?: (Scalars['String'] | null)} + + +/** input type for incrementing numeric columns in table "league_seasons" */ +export interface league_seasons_inc_input {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)} + + +/** input type for inserting data into table "league_seasons" */ +export interface league_seasons_insert_input {auto_regular_season_format?: (Scalars['Boolean'] | null),awards?: (award_recipients_arr_rel_insert_input | null),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),e_league_season_status?: (e_league_season_statuses_obj_rel_insert_input | null),games_per_week?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),match_weeks?: (league_match_weeks_arr_rel_insert_input | null),match_weeks_count?: (Scalars['Int'] | null),max_roster_size?: (Scalars['Int'] | null),min_roster_size?: (Scalars['Int'] | null),movements?: (league_team_movements_arr_rel_insert_input | null),name?: (Scalars['String'] | null),options?: (match_options_obj_rel_insert_input | null),player_stats?: (v_league_season_player_stats_arr_rel_insert_input | null),playoff_best_of?: (Scalars['Int'] | null),playoff_round_best_of?: (Scalars['jsonb'] | null),playoff_seats?: (Scalars['Int'] | null),playoff_stage_type?: (e_tournament_stage_types_enum | null),playoff_third_place_match?: (Scalars['Boolean'] | null),promote_count?: (Scalars['Int'] | null),regular_season_stage_type?: (e_tournament_stage_types_enum | null),relegate_count?: (Scalars['Int'] | null),relegation_down_count?: (Scalars['Int'] | null),relegation_playoffs?: (league_relegation_playoffs_arr_rel_insert_input | null),relegation_up_count?: (Scalars['Int'] | null),roster_lock_at?: (Scalars['timestamptz'] | null),season_divisions?: (league_season_divisions_arr_rel_insert_input | null),season_number?: (Scalars['Int'] | null),signup_closes_at?: (Scalars['timestamptz'] | null),signup_opens_at?: (Scalars['timestamptz'] | null),standings?: (v_league_division_standings_arr_rel_insert_input | null),starts_at?: (Scalars['timestamptz'] | null),status?: (e_league_season_statuses_enum | null),team_seasons?: (league_team_seasons_arr_rel_insert_input | null),week_best_of?: (Scalars['jsonb'] | null)} + + +/** aggregate max on columns */ +export interface league_seasons_max_fieldsGenqlSelection{ + created_at?: boolean | number + created_by_steam_id?: boolean | number + default_best_of?: boolean | number + direct_promote_count?: boolean | number + direct_relegate_count?: boolean | number + games_per_week?: boolean | number + id?: boolean | number + match_options_id?: boolean | number + match_weeks_count?: boolean | number + max_roster_size?: boolean | number + min_roster_size?: boolean | number + name?: boolean | number + playoff_best_of?: boolean | number + playoff_seats?: boolean | number + promote_count?: boolean | number + relegate_count?: boolean | number + relegation_down_count?: boolean | number + relegation_up_count?: boolean | number + roster_lock_at?: boolean | number + season_number?: boolean | number + signup_closes_at?: boolean | number + signup_opens_at?: boolean | number + starts_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface league_seasons_min_fieldsGenqlSelection{ + created_at?: boolean | number + created_by_steam_id?: boolean | number + default_best_of?: boolean | number + direct_promote_count?: boolean | number + direct_relegate_count?: boolean | number + games_per_week?: boolean | number + id?: boolean | number + match_options_id?: boolean | number + match_weeks_count?: boolean | number + max_roster_size?: boolean | number + min_roster_size?: boolean | number + name?: boolean | number + playoff_best_of?: boolean | number + playoff_seats?: boolean | number + promote_count?: boolean | number + relegate_count?: boolean | number + relegation_down_count?: boolean | number + relegation_up_count?: boolean | number + roster_lock_at?: boolean | number + season_number?: boolean | number + signup_closes_at?: boolean | number + signup_opens_at?: boolean | number + starts_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "league_seasons" */ +export interface league_seasons_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: league_seasonsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "league_seasons" */ +export interface league_seasons_obj_rel_insert_input {data: league_seasons_insert_input, +/** upsert condition */ +on_conflict?: (league_seasons_on_conflict | null)} + + +/** on_conflict condition type for table "league_seasons" */ +export interface league_seasons_on_conflict {constraint: league_seasons_constraint,update_columns?: league_seasons_update_column[],where?: (league_seasons_bool_exp | null)} + + +/** Ordering options when selecting data from "league_seasons". */ +export interface league_seasons_order_by {auto_regular_season_format?: (order_by | null),awards_aggregate?: (award_recipients_aggregate_order_by | null),can_register?: (order_by | null),created_at?: (order_by | null),created_by_steam_id?: (order_by | null),default_best_of?: (order_by | null),direct_promote_count?: (order_by | null),direct_relegate_count?: (order_by | null),e_league_season_status?: (e_league_season_statuses_order_by | null),games_per_week?: (order_by | null),id?: (order_by | null),is_league_admin?: (order_by | null),is_roster_locked?: (order_by | null),match_options_id?: (order_by | null),match_weeks_aggregate?: (league_match_weeks_aggregate_order_by | null),match_weeks_count?: (order_by | null),max_roster_size?: (order_by | null),min_roster_size?: (order_by | null),movements_aggregate?: (league_team_movements_aggregate_order_by | null),my_registration_aggregate?: (league_team_seasons_aggregate_order_by | null),name?: (order_by | null),options?: (match_options_order_by | null),player_stats_aggregate?: (v_league_season_player_stats_aggregate_order_by | null),playoff_best_of?: (order_by | null),playoff_round_best_of?: (order_by | null),playoff_seats?: (order_by | null),playoff_stage_type?: (order_by | null),playoff_third_place_match?: (order_by | null),promote_count?: (order_by | null),regular_season_stage_type?: (order_by | null),relegate_count?: (order_by | null),relegation_down_count?: (order_by | null),relegation_playoffs_aggregate?: (league_relegation_playoffs_aggregate_order_by | null),relegation_up_count?: (order_by | null),roster_lock_at?: (order_by | null),season_divisions_aggregate?: (league_season_divisions_aggregate_order_by | null),season_number?: (order_by | null),signup_closes_at?: (order_by | null),signup_opens_at?: (order_by | null),standings_aggregate?: (v_league_division_standings_aggregate_order_by | null),starts_at?: (order_by | null),status?: (order_by | null),team_seasons_aggregate?: (league_team_seasons_aggregate_order_by | null),week_best_of?: (order_by | null)} + + +/** primary key columns input for table: league_seasons */ +export interface league_seasons_pk_columns_input {id: Scalars['uuid']} + + +/** prepend existing jsonb value of filtered columns with new jsonb value */ +export interface league_seasons_prepend_input {playoff_round_best_of?: (Scalars['jsonb'] | null),week_best_of?: (Scalars['jsonb'] | null)} + + +/** input type for updating data in table "league_seasons" */ +export interface league_seasons_set_input {auto_regular_season_format?: (Scalars['Boolean'] | null),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_round_best_of?: (Scalars['jsonb'] | null),playoff_seats?: (Scalars['Int'] | null),playoff_stage_type?: (e_tournament_stage_types_enum | null),playoff_third_place_match?: (Scalars['Boolean'] | null),promote_count?: (Scalars['Int'] | null),regular_season_stage_type?: (e_tournament_stage_types_enum | 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),status?: (e_league_season_statuses_enum | null),week_best_of?: (Scalars['jsonb'] | null)} + + +/** aggregate stddev on columns */ +export interface league_seasons_stddev_fieldsGenqlSelection{ + created_by_steam_id?: boolean | number + default_best_of?: boolean | number + direct_promote_count?: boolean | number + direct_relegate_count?: boolean | number + games_per_week?: boolean | number + match_weeks_count?: boolean | number + max_roster_size?: boolean | number + min_roster_size?: boolean | number + playoff_best_of?: boolean | number + playoff_seats?: boolean | number + promote_count?: boolean | number + relegate_count?: boolean | number + relegation_down_count?: boolean | number + relegation_up_count?: boolean | number + season_number?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface league_seasons_stddev_pop_fieldsGenqlSelection{ + created_by_steam_id?: boolean | number + default_best_of?: boolean | number + direct_promote_count?: boolean | number + direct_relegate_count?: boolean | number + games_per_week?: boolean | number + match_weeks_count?: boolean | number + max_roster_size?: boolean | number + min_roster_size?: boolean | number + playoff_best_of?: boolean | number + playoff_seats?: boolean | number + promote_count?: boolean | number + relegate_count?: boolean | number + relegation_down_count?: boolean | number + relegation_up_count?: boolean | number + season_number?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface league_seasons_stddev_samp_fieldsGenqlSelection{ + created_by_steam_id?: boolean | number + default_best_of?: boolean | number + direct_promote_count?: boolean | number + direct_relegate_count?: boolean | number + games_per_week?: boolean | number + match_weeks_count?: boolean | number + max_roster_size?: boolean | number + min_roster_size?: boolean | number + playoff_best_of?: boolean | number + playoff_seats?: boolean | number + promote_count?: boolean | number + relegate_count?: boolean | number + relegation_down_count?: boolean | number + relegation_up_count?: boolean | number + season_number?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "league_seasons" */ +export interface league_seasons_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: league_seasons_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface league_seasons_stream_cursor_value_input {auto_regular_season_format?: (Scalars['Boolean'] | null),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_round_best_of?: (Scalars['jsonb'] | null),playoff_seats?: (Scalars['Int'] | null),playoff_stage_type?: (e_tournament_stage_types_enum | null),playoff_third_place_match?: (Scalars['Boolean'] | null),promote_count?: (Scalars['Int'] | null),regular_season_stage_type?: (e_tournament_stage_types_enum | 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),status?: (e_league_season_statuses_enum | null),week_best_of?: (Scalars['jsonb'] | null)} + + +/** aggregate sum on columns */ +export interface league_seasons_sum_fieldsGenqlSelection{ + created_by_steam_id?: boolean | number + default_best_of?: boolean | number + direct_promote_count?: boolean | number + direct_relegate_count?: boolean | number + games_per_week?: boolean | number + match_weeks_count?: boolean | number + max_roster_size?: boolean | number + min_roster_size?: boolean | number + playoff_best_of?: boolean | number + playoff_seats?: boolean | number + promote_count?: boolean | number + relegate_count?: boolean | number + relegation_down_count?: boolean | number + relegation_up_count?: boolean | number + season_number?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface league_seasons_updates { +/** append existing jsonb value of filtered columns with new jsonb value */ +_append?: (league_seasons_append_input | null), +/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ +_delete_at_path?: (league_seasons_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?: (league_seasons_delete_elem_input | null), +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +_delete_key?: (league_seasons_delete_key_input | null), +/** increments the numeric columns with given value of the filtered values */ +_inc?: (league_seasons_inc_input | null), +/** prepend existing jsonb value of filtered columns with new jsonb value */ +_prepend?: (league_seasons_prepend_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (league_seasons_set_input | null), +/** filter the rows which have to be updated */ +where: league_seasons_bool_exp} + + +/** aggregate var_pop on columns */ +export interface league_seasons_var_pop_fieldsGenqlSelection{ + created_by_steam_id?: boolean | number + default_best_of?: boolean | number + direct_promote_count?: boolean | number + direct_relegate_count?: boolean | number + games_per_week?: boolean | number + match_weeks_count?: boolean | number + max_roster_size?: boolean | number + min_roster_size?: boolean | number + playoff_best_of?: boolean | number + playoff_seats?: boolean | number + promote_count?: boolean | number + relegate_count?: boolean | number + relegation_down_count?: boolean | number + relegation_up_count?: boolean | number + season_number?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface league_seasons_var_samp_fieldsGenqlSelection{ + created_by_steam_id?: boolean | number + default_best_of?: boolean | number + direct_promote_count?: boolean | number + direct_relegate_count?: boolean | number + games_per_week?: boolean | number + match_weeks_count?: boolean | number + max_roster_size?: boolean | number + min_roster_size?: boolean | number + playoff_best_of?: boolean | number + playoff_seats?: boolean | number + promote_count?: boolean | number + relegate_count?: boolean | number + relegation_down_count?: boolean | number + relegation_up_count?: boolean | number + season_number?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface league_seasons_variance_fieldsGenqlSelection{ + created_by_steam_id?: boolean | number + default_best_of?: boolean | number + direct_promote_count?: boolean | number + direct_relegate_count?: boolean | number + games_per_week?: boolean | number + match_weeks_count?: boolean | number + max_roster_size?: boolean | number + min_roster_size?: boolean | number + playoff_best_of?: boolean | number + playoff_seats?: boolean | number + promote_count?: boolean | number + relegate_count?: boolean | number + relegation_down_count?: boolean | number + relegation_up_count?: boolean | number + season_number?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "league_team_movements" */ +export interface league_team_movementsGenqlSelection{ + approved_at?: boolean | number + /** An object relationship */ + approved_by?: playersGenqlSelection + approved_by_steam_id?: boolean | number + /** An object relationship */ + computed_to_division?: league_divisionsGenqlSelection + computed_to_division_id?: boolean | number + created_at?: boolean | number + /** An object relationship */ + e_movement_type?: e_league_movement_typesGenqlSelection + final_rank?: boolean | number + /** An object relationship */ + final_to_division?: league_divisionsGenqlSelection + final_to_division_id?: boolean | number + /** An object relationship */ + from_division?: league_divisionsGenqlSelection + from_division_id?: boolean | number + id?: boolean | number + league_season_id?: boolean | number + /** An object relationship */ + league_team?: league_teamsGenqlSelection + league_team_id?: boolean | number + /** An object relationship */ + season?: league_seasonsGenqlSelection + type?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "league_team_movements" */ +export interface league_team_movements_aggregateGenqlSelection{ + aggregate?: league_team_movements_aggregate_fieldsGenqlSelection + nodes?: league_team_movementsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface league_team_movements_aggregate_bool_exp {count?: (league_team_movements_aggregate_bool_exp_count | null)} + +export interface league_team_movements_aggregate_bool_exp_count {arguments?: (league_team_movements_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (league_team_movements_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "league_team_movements" */ +export interface league_team_movements_aggregate_fieldsGenqlSelection{ + avg?: league_team_movements_avg_fieldsGenqlSelection + count?: { __args: {columns?: (league_team_movements_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: league_team_movements_max_fieldsGenqlSelection + min?: league_team_movements_min_fieldsGenqlSelection + stddev?: league_team_movements_stddev_fieldsGenqlSelection + stddev_pop?: league_team_movements_stddev_pop_fieldsGenqlSelection + stddev_samp?: league_team_movements_stddev_samp_fieldsGenqlSelection + sum?: league_team_movements_sum_fieldsGenqlSelection + var_pop?: league_team_movements_var_pop_fieldsGenqlSelection + var_samp?: league_team_movements_var_samp_fieldsGenqlSelection + variance?: league_team_movements_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "league_team_movements" */ +export interface league_team_movements_aggregate_order_by {avg?: (league_team_movements_avg_order_by | null),count?: (order_by | null),max?: (league_team_movements_max_order_by | null),min?: (league_team_movements_min_order_by | null),stddev?: (league_team_movements_stddev_order_by | null),stddev_pop?: (league_team_movements_stddev_pop_order_by | null),stddev_samp?: (league_team_movements_stddev_samp_order_by | null),sum?: (league_team_movements_sum_order_by | null),var_pop?: (league_team_movements_var_pop_order_by | null),var_samp?: (league_team_movements_var_samp_order_by | null),variance?: (league_team_movements_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "league_team_movements" */ +export interface league_team_movements_arr_rel_insert_input {data: league_team_movements_insert_input[], +/** upsert condition */ +on_conflict?: (league_team_movements_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface league_team_movements_avg_fieldsGenqlSelection{ + approved_by_steam_id?: boolean | number + final_rank?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "league_team_movements" */ +export interface league_team_movements_avg_order_by {approved_by_steam_id?: (order_by | null),final_rank?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "league_team_movements". All fields are combined with a logical 'AND'. */ +export interface league_team_movements_bool_exp {_and?: (league_team_movements_bool_exp[] | null),_not?: (league_team_movements_bool_exp | null),_or?: (league_team_movements_bool_exp[] | null),approved_at?: (timestamptz_comparison_exp | null),approved_by?: (players_bool_exp | null),approved_by_steam_id?: (bigint_comparison_exp | null),computed_to_division?: (league_divisions_bool_exp | null),computed_to_division_id?: (uuid_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),e_movement_type?: (e_league_movement_types_bool_exp | null),final_rank?: (Int_comparison_exp | null),final_to_division?: (league_divisions_bool_exp | null),final_to_division_id?: (uuid_comparison_exp | null),from_division?: (league_divisions_bool_exp | null),from_division_id?: (uuid_comparison_exp | null),id?: (uuid_comparison_exp | null),league_season_id?: (uuid_comparison_exp | null),league_team?: (league_teams_bool_exp | null),league_team_id?: (uuid_comparison_exp | null),season?: (league_seasons_bool_exp | null),type?: (e_league_movement_types_enum_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "league_team_movements" */ +export interface league_team_movements_inc_input {approved_by_steam_id?: (Scalars['bigint'] | null),final_rank?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "league_team_movements" */ +export interface league_team_movements_insert_input {approved_at?: (Scalars['timestamptz'] | null),approved_by?: (players_obj_rel_insert_input | null),approved_by_steam_id?: (Scalars['bigint'] | null),computed_to_division?: (league_divisions_obj_rel_insert_input | null),computed_to_division_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),e_movement_type?: (e_league_movement_types_obj_rel_insert_input | null),final_rank?: (Scalars['Int'] | null),final_to_division?: (league_divisions_obj_rel_insert_input | null),final_to_division_id?: (Scalars['uuid'] | null),from_division?: (league_divisions_obj_rel_insert_input | null),from_division_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),league_season_id?: (Scalars['uuid'] | null),league_team?: (league_teams_obj_rel_insert_input | null),league_team_id?: (Scalars['uuid'] | null),season?: (league_seasons_obj_rel_insert_input | null),type?: (e_league_movement_types_enum | null)} + + +/** aggregate max on columns */ +export interface league_team_movements_max_fieldsGenqlSelection{ + approved_at?: boolean | number + approved_by_steam_id?: boolean | number + computed_to_division_id?: boolean | number + created_at?: boolean | number + final_rank?: boolean | number + final_to_division_id?: boolean | number + from_division_id?: boolean | number + id?: boolean | number + league_season_id?: boolean | number + league_team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "league_team_movements" */ +export interface league_team_movements_max_order_by {approved_at?: (order_by | null),approved_by_steam_id?: (order_by | null),computed_to_division_id?: (order_by | null),created_at?: (order_by | null),final_rank?: (order_by | null),final_to_division_id?: (order_by | null),from_division_id?: (order_by | null),id?: (order_by | null),league_season_id?: (order_by | null),league_team_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface league_team_movements_min_fieldsGenqlSelection{ + approved_at?: boolean | number + approved_by_steam_id?: boolean | number + computed_to_division_id?: boolean | number + created_at?: boolean | number + final_rank?: boolean | number + final_to_division_id?: boolean | number + from_division_id?: boolean | number + id?: boolean | number + league_season_id?: boolean | number + league_team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "league_team_movements" */ +export interface league_team_movements_min_order_by {approved_at?: (order_by | null),approved_by_steam_id?: (order_by | null),computed_to_division_id?: (order_by | null),created_at?: (order_by | null),final_rank?: (order_by | null),final_to_division_id?: (order_by | null),from_division_id?: (order_by | null),id?: (order_by | null),league_season_id?: (order_by | null),league_team_id?: (order_by | null)} + + +/** response of any mutation on the table "league_team_movements" */ +export interface league_team_movements_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: league_team_movementsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "league_team_movements" */ +export interface league_team_movements_on_conflict {constraint: league_team_movements_constraint,update_columns?: league_team_movements_update_column[],where?: (league_team_movements_bool_exp | null)} + + +/** Ordering options when selecting data from "league_team_movements". */ +export interface league_team_movements_order_by {approved_at?: (order_by | null),approved_by?: (players_order_by | null),approved_by_steam_id?: (order_by | null),computed_to_division?: (league_divisions_order_by | null),computed_to_division_id?: (order_by | null),created_at?: (order_by | null),e_movement_type?: (e_league_movement_types_order_by | null),final_rank?: (order_by | null),final_to_division?: (league_divisions_order_by | null),final_to_division_id?: (order_by | null),from_division?: (league_divisions_order_by | null),from_division_id?: (order_by | null),id?: (order_by | null),league_season_id?: (order_by | null),league_team?: (league_teams_order_by | null),league_team_id?: (order_by | null),season?: (league_seasons_order_by | null),type?: (order_by | null)} + + +/** primary key columns input for table: league_team_movements */ +export interface league_team_movements_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "league_team_movements" */ +export interface league_team_movements_set_input {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),type?: (e_league_movement_types_enum | null)} + + +/** aggregate stddev on columns */ +export interface league_team_movements_stddev_fieldsGenqlSelection{ + approved_by_steam_id?: boolean | number + final_rank?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "league_team_movements" */ +export interface league_team_movements_stddev_order_by {approved_by_steam_id?: (order_by | null),final_rank?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface league_team_movements_stddev_pop_fieldsGenqlSelection{ + approved_by_steam_id?: boolean | number + final_rank?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "league_team_movements" */ +export interface league_team_movements_stddev_pop_order_by {approved_by_steam_id?: (order_by | null),final_rank?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface league_team_movements_stddev_samp_fieldsGenqlSelection{ + approved_by_steam_id?: boolean | number + final_rank?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "league_team_movements" */ +export interface league_team_movements_stddev_samp_order_by {approved_by_steam_id?: (order_by | null),final_rank?: (order_by | null)} + + +/** Streaming cursor of the table "league_team_movements" */ +export interface league_team_movements_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: league_team_movements_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface league_team_movements_stream_cursor_value_input {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),type?: (e_league_movement_types_enum | null)} + + +/** aggregate sum on columns */ +export interface league_team_movements_sum_fieldsGenqlSelection{ + approved_by_steam_id?: boolean | number + final_rank?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "league_team_movements" */ +export interface league_team_movements_sum_order_by {approved_by_steam_id?: (order_by | null),final_rank?: (order_by | null)} + +export interface league_team_movements_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (league_team_movements_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (league_team_movements_set_input | null), +/** filter the rows which have to be updated */ +where: league_team_movements_bool_exp} + + +/** aggregate var_pop on columns */ +export interface league_team_movements_var_pop_fieldsGenqlSelection{ + approved_by_steam_id?: boolean | number + final_rank?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "league_team_movements" */ +export interface league_team_movements_var_pop_order_by {approved_by_steam_id?: (order_by | null),final_rank?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface league_team_movements_var_samp_fieldsGenqlSelection{ + approved_by_steam_id?: boolean | number + final_rank?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "league_team_movements" */ +export interface league_team_movements_var_samp_order_by {approved_by_steam_id?: (order_by | null),final_rank?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface league_team_movements_variance_fieldsGenqlSelection{ + approved_by_steam_id?: boolean | number + final_rank?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "league_team_movements" */ +export interface league_team_movements_variance_order_by {approved_by_steam_id?: (order_by | null),final_rank?: (order_by | null)} + + +/** columns and relationships of "league_team_rosters" */ +export interface league_team_rostersGenqlSelection{ + added_at?: boolean | number + league_team_season_id?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + player_steam_id?: boolean | number + removed_at?: boolean | number + removed_reason?: boolean | number + status?: boolean | number + /** An object relationship */ + team_season?: league_team_seasonsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "league_team_rosters" */ +export interface league_team_rosters_aggregateGenqlSelection{ + aggregate?: league_team_rosters_aggregate_fieldsGenqlSelection + nodes?: league_team_rostersGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface league_team_rosters_aggregate_bool_exp {count?: (league_team_rosters_aggregate_bool_exp_count | null)} + +export interface league_team_rosters_aggregate_bool_exp_count {arguments?: (league_team_rosters_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (league_team_rosters_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "league_team_rosters" */ +export interface league_team_rosters_aggregate_fieldsGenqlSelection{ + avg?: league_team_rosters_avg_fieldsGenqlSelection + count?: { __args: {columns?: (league_team_rosters_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: league_team_rosters_max_fieldsGenqlSelection + min?: league_team_rosters_min_fieldsGenqlSelection + stddev?: league_team_rosters_stddev_fieldsGenqlSelection + stddev_pop?: league_team_rosters_stddev_pop_fieldsGenqlSelection + stddev_samp?: league_team_rosters_stddev_samp_fieldsGenqlSelection + sum?: league_team_rosters_sum_fieldsGenqlSelection + var_pop?: league_team_rosters_var_pop_fieldsGenqlSelection + var_samp?: league_team_rosters_var_samp_fieldsGenqlSelection + variance?: league_team_rosters_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "league_team_rosters" */ +export interface league_team_rosters_aggregate_order_by {avg?: (league_team_rosters_avg_order_by | null),count?: (order_by | null),max?: (league_team_rosters_max_order_by | null),min?: (league_team_rosters_min_order_by | null),stddev?: (league_team_rosters_stddev_order_by | null),stddev_pop?: (league_team_rosters_stddev_pop_order_by | null),stddev_samp?: (league_team_rosters_stddev_samp_order_by | null),sum?: (league_team_rosters_sum_order_by | null),var_pop?: (league_team_rosters_var_pop_order_by | null),var_samp?: (league_team_rosters_var_samp_order_by | null),variance?: (league_team_rosters_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "league_team_rosters" */ +export interface league_team_rosters_arr_rel_insert_input {data: league_team_rosters_insert_input[], +/** upsert condition */ +on_conflict?: (league_team_rosters_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface league_team_rosters_avg_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "league_team_rosters" */ +export interface league_team_rosters_avg_order_by {player_steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "league_team_rosters". All fields are combined with a logical 'AND'. */ +export interface league_team_rosters_bool_exp {_and?: (league_team_rosters_bool_exp[] | null),_not?: (league_team_rosters_bool_exp | null),_or?: (league_team_rosters_bool_exp[] | null),added_at?: (timestamptz_comparison_exp | null),league_team_season_id?: (uuid_comparison_exp | null),player?: (players_bool_exp | null),player_steam_id?: (bigint_comparison_exp | null),removed_at?: (timestamptz_comparison_exp | null),removed_reason?: (String_comparison_exp | null),status?: (e_team_roster_statuses_enum_comparison_exp | null),team_season?: (league_team_seasons_bool_exp | null)} + + +/** input type for incrementing numeric columns in table "league_team_rosters" */ +export interface league_team_rosters_inc_input {player_steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "league_team_rosters" */ +export interface league_team_rosters_insert_input {added_at?: (Scalars['timestamptz'] | null),league_team_season_id?: (Scalars['uuid'] | null),player?: (players_obj_rel_insert_input | null),player_steam_id?: (Scalars['bigint'] | null),removed_at?: (Scalars['timestamptz'] | null),removed_reason?: (Scalars['String'] | null),status?: (e_team_roster_statuses_enum | null),team_season?: (league_team_seasons_obj_rel_insert_input | null)} + + +/** aggregate max on columns */ +export interface league_team_rosters_max_fieldsGenqlSelection{ + added_at?: boolean | number + league_team_season_id?: boolean | number + player_steam_id?: boolean | number + removed_at?: boolean | number + removed_reason?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "league_team_rosters" */ +export interface league_team_rosters_max_order_by {added_at?: (order_by | null),league_team_season_id?: (order_by | null),player_steam_id?: (order_by | null),removed_at?: (order_by | null),removed_reason?: (order_by | null)} + + +/** aggregate min on columns */ +export interface league_team_rosters_min_fieldsGenqlSelection{ + added_at?: boolean | number + league_team_season_id?: boolean | number + player_steam_id?: boolean | number + removed_at?: boolean | number + removed_reason?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "league_team_rosters" */ +export interface league_team_rosters_min_order_by {added_at?: (order_by | null),league_team_season_id?: (order_by | null),player_steam_id?: (order_by | null),removed_at?: (order_by | null),removed_reason?: (order_by | null)} + + +/** response of any mutation on the table "league_team_rosters" */ +export interface league_team_rosters_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: league_team_rostersGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "league_team_rosters" */ +export interface league_team_rosters_on_conflict {constraint: league_team_rosters_constraint,update_columns?: league_team_rosters_update_column[],where?: (league_team_rosters_bool_exp | null)} + + +/** Ordering options when selecting data from "league_team_rosters". */ +export interface league_team_rosters_order_by {added_at?: (order_by | null),league_team_season_id?: (order_by | null),player?: (players_order_by | null),player_steam_id?: (order_by | null),removed_at?: (order_by | null),removed_reason?: (order_by | null),status?: (order_by | null),team_season?: (league_team_seasons_order_by | null)} + + +/** primary key columns input for table: league_team_rosters */ +export interface league_team_rosters_pk_columns_input {league_team_season_id: Scalars['uuid'],player_steam_id: Scalars['bigint']} + + +/** input type for updating data in table "league_team_rosters" */ +export interface league_team_rosters_set_input {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),status?: (e_team_roster_statuses_enum | null)} + + +/** aggregate stddev on columns */ +export interface league_team_rosters_stddev_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "league_team_rosters" */ +export interface league_team_rosters_stddev_order_by {player_steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface league_team_rosters_stddev_pop_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "league_team_rosters" */ +export interface league_team_rosters_stddev_pop_order_by {player_steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface league_team_rosters_stddev_samp_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "league_team_rosters" */ +export interface league_team_rosters_stddev_samp_order_by {player_steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "league_team_rosters" */ +export interface league_team_rosters_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: league_team_rosters_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface league_team_rosters_stream_cursor_value_input {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),status?: (e_team_roster_statuses_enum | null)} + + +/** aggregate sum on columns */ +export interface league_team_rosters_sum_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "league_team_rosters" */ +export interface league_team_rosters_sum_order_by {player_steam_id?: (order_by | null)} + +export interface league_team_rosters_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (league_team_rosters_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (league_team_rosters_set_input | null), +/** filter the rows which have to be updated */ +where: league_team_rosters_bool_exp} + + +/** aggregate var_pop on columns */ +export interface league_team_rosters_var_pop_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "league_team_rosters" */ +export interface league_team_rosters_var_pop_order_by {player_steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface league_team_rosters_var_samp_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "league_team_rosters" */ +export interface league_team_rosters_var_samp_order_by {player_steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface league_team_rosters_variance_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "league_team_rosters" */ +export interface league_team_rosters_variance_order_by {player_steam_id?: (order_by | null)} + + +/** columns and relationships of "league_team_seasons" */ +export interface league_team_seasonsGenqlSelection{ + /** An object relationship */ + assigned_division?: league_divisionsGenqlSelection + assigned_division_id?: boolean | number + /** An object relationship */ + captain?: playersGenqlSelection + captain_steam_id?: boolean | number + created_at?: boolean | number + decline_reason?: boolean | number + /** An object relationship */ + e_registration_status?: e_league_registration_statusesGenqlSelection + id?: boolean | number + league_season_id?: boolean | number + /** An object relationship */ + league_team?: league_teamsGenqlSelection + league_team_id?: boolean | number + /** An object relationship */ + registered_by?: playersGenqlSelection + registered_by_steam_id?: boolean | number + /** An object relationship */ + requested_division?: league_divisionsGenqlSelection + requested_division_id?: boolean | number + /** An array relationship */ + roster?: (league_team_rostersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_team_rosters_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_team_rosters_order_by[] | null), + /** filter the rows returned */ + where?: (league_team_rosters_bool_exp | null)} }) + /** An aggregate relationship */ + roster_aggregate?: (league_team_rosters_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_team_rosters_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_team_rosters_order_by[] | null), + /** filter the rows returned */ + where?: (league_team_rosters_bool_exp | null)} }) + /** An object relationship */ + season?: league_seasonsGenqlSelection + seed?: boolean | number + status?: boolean | number + /** An object relationship */ + tournament_team?: tournament_teamsGenqlSelection + tournament_team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "league_team_seasons" */ +export interface league_team_seasons_aggregateGenqlSelection{ + aggregate?: league_team_seasons_aggregate_fieldsGenqlSelection + nodes?: league_team_seasonsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface league_team_seasons_aggregate_bool_exp {count?: (league_team_seasons_aggregate_bool_exp_count | null)} + +export interface league_team_seasons_aggregate_bool_exp_count {arguments?: (league_team_seasons_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (league_team_seasons_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "league_team_seasons" */ +export interface league_team_seasons_aggregate_fieldsGenqlSelection{ + avg?: league_team_seasons_avg_fieldsGenqlSelection + count?: { __args: {columns?: (league_team_seasons_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: league_team_seasons_max_fieldsGenqlSelection + min?: league_team_seasons_min_fieldsGenqlSelection + stddev?: league_team_seasons_stddev_fieldsGenqlSelection + stddev_pop?: league_team_seasons_stddev_pop_fieldsGenqlSelection + stddev_samp?: league_team_seasons_stddev_samp_fieldsGenqlSelection + sum?: league_team_seasons_sum_fieldsGenqlSelection + var_pop?: league_team_seasons_var_pop_fieldsGenqlSelection + var_samp?: league_team_seasons_var_samp_fieldsGenqlSelection + variance?: league_team_seasons_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "league_team_seasons" */ +export interface league_team_seasons_aggregate_order_by {avg?: (league_team_seasons_avg_order_by | null),count?: (order_by | null),max?: (league_team_seasons_max_order_by | null),min?: (league_team_seasons_min_order_by | null),stddev?: (league_team_seasons_stddev_order_by | null),stddev_pop?: (league_team_seasons_stddev_pop_order_by | null),stddev_samp?: (league_team_seasons_stddev_samp_order_by | null),sum?: (league_team_seasons_sum_order_by | null),var_pop?: (league_team_seasons_var_pop_order_by | null),var_samp?: (league_team_seasons_var_samp_order_by | null),variance?: (league_team_seasons_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "league_team_seasons" */ +export interface league_team_seasons_arr_rel_insert_input {data: league_team_seasons_insert_input[], +/** upsert condition */ +on_conflict?: (league_team_seasons_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface league_team_seasons_avg_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + registered_by_steam_id?: boolean | number + seed?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "league_team_seasons" */ +export interface league_team_seasons_avg_order_by {captain_steam_id?: (order_by | null),registered_by_steam_id?: (order_by | null),seed?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "league_team_seasons". All fields are combined with a logical 'AND'. */ +export interface league_team_seasons_bool_exp {_and?: (league_team_seasons_bool_exp[] | null),_not?: (league_team_seasons_bool_exp | null),_or?: (league_team_seasons_bool_exp[] | null),assigned_division?: (league_divisions_bool_exp | null),assigned_division_id?: (uuid_comparison_exp | null),captain?: (players_bool_exp | null),captain_steam_id?: (bigint_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),decline_reason?: (String_comparison_exp | null),e_registration_status?: (e_league_registration_statuses_bool_exp | null),id?: (uuid_comparison_exp | null),league_season_id?: (uuid_comparison_exp | null),league_team?: (league_teams_bool_exp | null),league_team_id?: (uuid_comparison_exp | null),registered_by?: (players_bool_exp | null),registered_by_steam_id?: (bigint_comparison_exp | null),requested_division?: (league_divisions_bool_exp | null),requested_division_id?: (uuid_comparison_exp | null),roster?: (league_team_rosters_bool_exp | null),roster_aggregate?: (league_team_rosters_aggregate_bool_exp | null),season?: (league_seasons_bool_exp | null),seed?: (Int_comparison_exp | null),status?: (e_league_registration_statuses_enum_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 "league_team_seasons" */ +export interface league_team_seasons_inc_input {captain_steam_id?: (Scalars['bigint'] | null),registered_by_steam_id?: (Scalars['bigint'] | null),seed?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "league_team_seasons" */ +export interface league_team_seasons_insert_input {assigned_division?: (league_divisions_obj_rel_insert_input | null),assigned_division_id?: (Scalars['uuid'] | null),captain?: (players_obj_rel_insert_input | null),captain_steam_id?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),decline_reason?: (Scalars['String'] | null),e_registration_status?: (e_league_registration_statuses_obj_rel_insert_input | null),id?: (Scalars['uuid'] | null),league_season_id?: (Scalars['uuid'] | null),league_team?: (league_teams_obj_rel_insert_input | null),league_team_id?: (Scalars['uuid'] | null),registered_by?: (players_obj_rel_insert_input | null),registered_by_steam_id?: (Scalars['bigint'] | null),requested_division?: (league_divisions_obj_rel_insert_input | null),requested_division_id?: (Scalars['uuid'] | null),roster?: (league_team_rosters_arr_rel_insert_input | null),season?: (league_seasons_obj_rel_insert_input | null),seed?: (Scalars['Int'] | null),status?: (e_league_registration_statuses_enum | null),tournament_team?: (tournament_teams_obj_rel_insert_input | null),tournament_team_id?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface league_team_seasons_max_fieldsGenqlSelection{ + assigned_division_id?: boolean | number + captain_steam_id?: boolean | number + created_at?: boolean | number + decline_reason?: boolean | number + id?: boolean | number + league_season_id?: boolean | number + league_team_id?: boolean | number + registered_by_steam_id?: boolean | number + requested_division_id?: boolean | number + seed?: boolean | number + tournament_team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "league_team_seasons" */ +export interface league_team_seasons_max_order_by {assigned_division_id?: (order_by | null),captain_steam_id?: (order_by | null),created_at?: (order_by | null),decline_reason?: (order_by | null),id?: (order_by | null),league_season_id?: (order_by | null),league_team_id?: (order_by | null),registered_by_steam_id?: (order_by | null),requested_division_id?: (order_by | null),seed?: (order_by | null),tournament_team_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface league_team_seasons_min_fieldsGenqlSelection{ + assigned_division_id?: boolean | number + captain_steam_id?: boolean | number + created_at?: boolean | number + decline_reason?: boolean | number + id?: boolean | number + league_season_id?: boolean | number + league_team_id?: boolean | number + registered_by_steam_id?: boolean | number + requested_division_id?: boolean | number + seed?: boolean | number + tournament_team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "league_team_seasons" */ +export interface league_team_seasons_min_order_by {assigned_division_id?: (order_by | null),captain_steam_id?: (order_by | null),created_at?: (order_by | null),decline_reason?: (order_by | null),id?: (order_by | null),league_season_id?: (order_by | null),league_team_id?: (order_by | null),registered_by_steam_id?: (order_by | null),requested_division_id?: (order_by | null),seed?: (order_by | null),tournament_team_id?: (order_by | null)} + + +/** response of any mutation on the table "league_team_seasons" */ +export interface league_team_seasons_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: league_team_seasonsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "league_team_seasons" */ +export interface league_team_seasons_obj_rel_insert_input {data: league_team_seasons_insert_input, +/** upsert condition */ +on_conflict?: (league_team_seasons_on_conflict | null)} + + +/** on_conflict condition type for table "league_team_seasons" */ +export interface league_team_seasons_on_conflict {constraint: league_team_seasons_constraint,update_columns?: league_team_seasons_update_column[],where?: (league_team_seasons_bool_exp | null)} + + +/** Ordering options when selecting data from "league_team_seasons". */ +export interface league_team_seasons_order_by {assigned_division?: (league_divisions_order_by | null),assigned_division_id?: (order_by | null),captain?: (players_order_by | null),captain_steam_id?: (order_by | null),created_at?: (order_by | null),decline_reason?: (order_by | null),e_registration_status?: (e_league_registration_statuses_order_by | null),id?: (order_by | null),league_season_id?: (order_by | null),league_team?: (league_teams_order_by | null),league_team_id?: (order_by | null),registered_by?: (players_order_by | null),registered_by_steam_id?: (order_by | null),requested_division?: (league_divisions_order_by | null),requested_division_id?: (order_by | null),roster_aggregate?: (league_team_rosters_aggregate_order_by | null),season?: (league_seasons_order_by | null),seed?: (order_by | null),status?: (order_by | null),tournament_team?: (tournament_teams_order_by | null),tournament_team_id?: (order_by | null)} + + +/** primary key columns input for table: league_team_seasons */ +export interface league_team_seasons_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "league_team_seasons" */ +export interface league_team_seasons_set_input {assigned_division_id?: (Scalars['uuid'] | null),captain_steam_id?: (Scalars['bigint'] | null),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),status?: (e_league_registration_statuses_enum | null),tournament_team_id?: (Scalars['uuid'] | null)} + + +/** aggregate stddev on columns */ +export interface league_team_seasons_stddev_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + registered_by_steam_id?: boolean | number + seed?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "league_team_seasons" */ +export interface league_team_seasons_stddev_order_by {captain_steam_id?: (order_by | null),registered_by_steam_id?: (order_by | null),seed?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface league_team_seasons_stddev_pop_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + registered_by_steam_id?: boolean | number + seed?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "league_team_seasons" */ +export interface league_team_seasons_stddev_pop_order_by {captain_steam_id?: (order_by | null),registered_by_steam_id?: (order_by | null),seed?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface league_team_seasons_stddev_samp_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + registered_by_steam_id?: boolean | number + seed?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "league_team_seasons" */ +export interface league_team_seasons_stddev_samp_order_by {captain_steam_id?: (order_by | null),registered_by_steam_id?: (order_by | null),seed?: (order_by | null)} + + +/** Streaming cursor of the table "league_team_seasons" */ +export interface league_team_seasons_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: league_team_seasons_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface league_team_seasons_stream_cursor_value_input {assigned_division_id?: (Scalars['uuid'] | null),captain_steam_id?: (Scalars['bigint'] | null),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),status?: (e_league_registration_statuses_enum | null),tournament_team_id?: (Scalars['uuid'] | null)} + + +/** aggregate sum on columns */ +export interface league_team_seasons_sum_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + registered_by_steam_id?: boolean | number + seed?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "league_team_seasons" */ +export interface league_team_seasons_sum_order_by {captain_steam_id?: (order_by | null),registered_by_steam_id?: (order_by | null),seed?: (order_by | null)} + +export interface league_team_seasons_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (league_team_seasons_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (league_team_seasons_set_input | null), +/** filter the rows which have to be updated */ +where: league_team_seasons_bool_exp} + + +/** aggregate var_pop on columns */ +export interface league_team_seasons_var_pop_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + registered_by_steam_id?: boolean | number + seed?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "league_team_seasons" */ +export interface league_team_seasons_var_pop_order_by {captain_steam_id?: (order_by | null),registered_by_steam_id?: (order_by | null),seed?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface league_team_seasons_var_samp_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + registered_by_steam_id?: boolean | number + seed?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "league_team_seasons" */ +export interface league_team_seasons_var_samp_order_by {captain_steam_id?: (order_by | null),registered_by_steam_id?: (order_by | null),seed?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface league_team_seasons_variance_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + registered_by_steam_id?: boolean | number + seed?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "league_team_seasons" */ +export interface league_team_seasons_variance_order_by {captain_steam_id?: (order_by | null),registered_by_steam_id?: (order_by | null),seed?: (order_by | null)} + + +/** columns and relationships of "league_teams" */ +export interface league_teamsGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + /** An array relationship */ + movements?: (league_team_movementsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_team_movements_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_team_movements_order_by[] | null), + /** filter the rows returned */ + where?: (league_team_movements_bool_exp | null)} }) + /** An aggregate relationship */ + movements_aggregate?: (league_team_movements_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_team_movements_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_team_movements_order_by[] | null), + /** filter the rows returned */ + where?: (league_team_movements_bool_exp | null)} }) + /** An object relationship */ + team?: teamsGenqlSelection + team_id?: boolean | number + /** An array relationship */ + team_seasons?: (league_team_seasonsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_team_seasons_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_team_seasons_order_by[] | null), + /** filter the rows returned */ + where?: (league_team_seasons_bool_exp | null)} }) + /** An aggregate relationship */ + team_seasons_aggregate?: (league_team_seasons_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_team_seasons_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_team_seasons_order_by[] | null), + /** filter the rows returned */ + where?: (league_team_seasons_bool_exp | null)} }) + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "league_teams" */ +export interface league_teams_aggregateGenqlSelection{ + aggregate?: league_teams_aggregate_fieldsGenqlSelection + nodes?: league_teamsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "league_teams" */ +export interface league_teams_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (league_teams_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: league_teams_max_fieldsGenqlSelection + min?: league_teams_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "league_teams". All fields are combined with a logical 'AND'. */ +export interface league_teams_bool_exp {_and?: (league_teams_bool_exp[] | null),_not?: (league_teams_bool_exp | null),_or?: (league_teams_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),movements?: (league_team_movements_bool_exp | null),movements_aggregate?: (league_team_movements_aggregate_bool_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null),team_seasons?: (league_team_seasons_bool_exp | null),team_seasons_aggregate?: (league_team_seasons_aggregate_bool_exp | null)} + + +/** input type for inserting data into table "league_teams" */ +export interface league_teams_insert_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),movements?: (league_team_movements_arr_rel_insert_input | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null),team_seasons?: (league_team_seasons_arr_rel_insert_input | null)} + + +/** aggregate max on columns */ +export interface league_teams_max_fieldsGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface league_teams_min_fieldsGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "league_teams" */ +export interface league_teams_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: league_teamsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "league_teams" */ +export interface league_teams_obj_rel_insert_input {data: league_teams_insert_input, +/** upsert condition */ +on_conflict?: (league_teams_on_conflict | null)} + + +/** on_conflict condition type for table "league_teams" */ +export interface league_teams_on_conflict {constraint: league_teams_constraint,update_columns?: league_teams_update_column[],where?: (league_teams_bool_exp | null)} + + +/** Ordering options when selecting data from "league_teams". */ +export interface league_teams_order_by {created_at?: (order_by | null),id?: (order_by | null),movements_aggregate?: (league_team_movements_aggregate_order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null),team_seasons_aggregate?: (league_team_seasons_aggregate_order_by | null)} + + +/** primary key columns input for table: league_teams */ +export interface league_teams_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "league_teams" */ +export interface league_teams_set_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),team_id?: (Scalars['uuid'] | null)} + + +/** Streaming cursor of the table "league_teams" */ +export interface league_teams_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: league_teams_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface league_teams_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),team_id?: (Scalars['uuid'] | null)} + +export interface league_teams_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (league_teams_set_input | null), +/** filter the rows which have to be updated */ +where: league_teams_bool_exp} + + +/** columns and relationships of "lobbies" */ +export interface lobbiesGenqlSelection{ + access?: boolean | number + created_at?: boolean | number + /** An object relationship */ + e_lobby_access?: e_lobby_accessGenqlSelection + id?: boolean | number + /** An array relationship */ + players?: (lobby_playersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (lobby_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?: (lobby_players_order_by[] | null), + /** filter the rows returned */ + where?: (lobby_players_bool_exp | null)} }) + /** An aggregate relationship */ + players_aggregate?: (lobby_players_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (lobby_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?: (lobby_players_order_by[] | null), + /** filter the rows returned */ + where?: (lobby_players_bool_exp | null)} }) + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "lobbies" */ +export interface lobbies_aggregateGenqlSelection{ + aggregate?: lobbies_aggregate_fieldsGenqlSelection + nodes?: lobbiesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "lobbies" */ +export interface lobbies_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (lobbies_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: lobbies_max_fieldsGenqlSelection + min?: lobbies_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "lobbies". All fields are combined with a logical 'AND'. */ +export interface lobbies_bool_exp {_and?: (lobbies_bool_exp[] | null),_not?: (lobbies_bool_exp | null),_or?: (lobbies_bool_exp[] | null),access?: (e_lobby_access_enum_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),e_lobby_access?: (e_lobby_access_bool_exp | null),id?: (uuid_comparison_exp | null),players?: (lobby_players_bool_exp | null),players_aggregate?: (lobby_players_aggregate_bool_exp | null)} + + +/** input type for inserting data into table "lobbies" */ +export interface lobbies_insert_input {access?: (e_lobby_access_enum | null),created_at?: (Scalars['timestamptz'] | null),e_lobby_access?: (e_lobby_access_obj_rel_insert_input | null),id?: (Scalars['uuid'] | null),players?: (lobby_players_arr_rel_insert_input | null)} + + +/** aggregate max on columns */ +export interface lobbies_max_fieldsGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface lobbies_min_fieldsGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "lobbies" */ +export interface lobbies_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: lobbiesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "lobbies" */ +export interface lobbies_obj_rel_insert_input {data: lobbies_insert_input, +/** upsert condition */ +on_conflict?: (lobbies_on_conflict | null)} + + +/** on_conflict condition type for table "lobbies" */ +export interface lobbies_on_conflict {constraint: lobbies_constraint,update_columns?: lobbies_update_column[],where?: (lobbies_bool_exp | null)} + + +/** Ordering options when selecting data from "lobbies". */ +export interface lobbies_order_by {access?: (order_by | null),created_at?: (order_by | null),e_lobby_access?: (e_lobby_access_order_by | null),id?: (order_by | null),players_aggregate?: (lobby_players_aggregate_order_by | null)} + + +/** primary key columns input for table: lobbies */ +export interface lobbies_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "lobbies" */ +export interface lobbies_set_input {access?: (e_lobby_access_enum | null),created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null)} + + +/** Streaming cursor of the table "lobbies" */ +export interface lobbies_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: lobbies_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface lobbies_stream_cursor_value_input {access?: (e_lobby_access_enum | null),created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null)} + +export interface lobbies_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (lobbies_set_input | null), +/** filter the rows which have to be updated */ +where: lobbies_bool_exp} + + +/** columns and relationships of "lobby_players" */ +export interface lobby_playersGenqlSelection{ + captain?: boolean | number + invited_by_steam_id?: boolean | number + /** An object relationship */ + lobby?: lobbiesGenqlSelection + lobby_id?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + status?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "lobby_players" */ +export interface lobby_players_aggregateGenqlSelection{ + aggregate?: lobby_players_aggregate_fieldsGenqlSelection + nodes?: lobby_playersGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface lobby_players_aggregate_bool_exp {bool_and?: (lobby_players_aggregate_bool_exp_bool_and | null),bool_or?: (lobby_players_aggregate_bool_exp_bool_or | null),count?: (lobby_players_aggregate_bool_exp_count | null)} + +export interface lobby_players_aggregate_bool_exp_bool_and {arguments: lobby_players_select_column_lobby_players_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (lobby_players_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface lobby_players_aggregate_bool_exp_bool_or {arguments: lobby_players_select_column_lobby_players_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (lobby_players_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface lobby_players_aggregate_bool_exp_count {arguments?: (lobby_players_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (lobby_players_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "lobby_players" */ +export interface lobby_players_aggregate_fieldsGenqlSelection{ + avg?: lobby_players_avg_fieldsGenqlSelection + count?: { __args: {columns?: (lobby_players_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: lobby_players_max_fieldsGenqlSelection + min?: lobby_players_min_fieldsGenqlSelection + stddev?: lobby_players_stddev_fieldsGenqlSelection + stddev_pop?: lobby_players_stddev_pop_fieldsGenqlSelection + stddev_samp?: lobby_players_stddev_samp_fieldsGenqlSelection + sum?: lobby_players_sum_fieldsGenqlSelection + var_pop?: lobby_players_var_pop_fieldsGenqlSelection + var_samp?: lobby_players_var_samp_fieldsGenqlSelection + variance?: lobby_players_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "lobby_players" */ +export interface lobby_players_aggregate_order_by {avg?: (lobby_players_avg_order_by | null),count?: (order_by | null),max?: (lobby_players_max_order_by | null),min?: (lobby_players_min_order_by | null),stddev?: (lobby_players_stddev_order_by | null),stddev_pop?: (lobby_players_stddev_pop_order_by | null),stddev_samp?: (lobby_players_stddev_samp_order_by | null),sum?: (lobby_players_sum_order_by | null),var_pop?: (lobby_players_var_pop_order_by | null),var_samp?: (lobby_players_var_samp_order_by | null),variance?: (lobby_players_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "lobby_players" */ +export interface lobby_players_arr_rel_insert_input {data: lobby_players_insert_input[], +/** upsert condition */ +on_conflict?: (lobby_players_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface lobby_players_avg_fieldsGenqlSelection{ + invited_by_steam_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "lobby_players" */ +export interface lobby_players_avg_order_by {invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "lobby_players". All fields are combined with a logical 'AND'. */ +export interface lobby_players_bool_exp {_and?: (lobby_players_bool_exp[] | null),_not?: (lobby_players_bool_exp | null),_or?: (lobby_players_bool_exp[] | null),captain?: (Boolean_comparison_exp | null),invited_by_steam_id?: (bigint_comparison_exp | null),lobby?: (lobbies_bool_exp | null),lobby_id?: (uuid_comparison_exp | null),player?: (players_bool_exp | null),status?: (e_lobby_player_status_enum_comparison_exp | null),steam_id?: (bigint_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "lobby_players" */ +export interface lobby_players_inc_input {invited_by_steam_id?: (Scalars['bigint'] | null),steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "lobby_players" */ +export interface lobby_players_insert_input {captain?: (Scalars['Boolean'] | null),invited_by_steam_id?: (Scalars['bigint'] | null),lobby?: (lobbies_obj_rel_insert_input | null),lobby_id?: (Scalars['uuid'] | null),player?: (players_obj_rel_insert_input | null),status?: (e_lobby_player_status_enum | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate max on columns */ +export interface lobby_players_max_fieldsGenqlSelection{ + invited_by_steam_id?: boolean | number + lobby_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "lobby_players" */ +export interface lobby_players_max_order_by {invited_by_steam_id?: (order_by | null),lobby_id?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface lobby_players_min_fieldsGenqlSelection{ + invited_by_steam_id?: boolean | number + lobby_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "lobby_players" */ +export interface lobby_players_min_order_by {invited_by_steam_id?: (order_by | null),lobby_id?: (order_by | null),steam_id?: (order_by | null)} + + +/** response of any mutation on the table "lobby_players" */ +export interface lobby_players_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: lobby_playersGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "lobby_players" */ +export interface lobby_players_on_conflict {constraint: lobby_players_constraint,update_columns?: lobby_players_update_column[],where?: (lobby_players_bool_exp | null)} + + +/** Ordering options when selecting data from "lobby_players". */ +export interface lobby_players_order_by {captain?: (order_by | null),invited_by_steam_id?: (order_by | null),lobby?: (lobbies_order_by | null),lobby_id?: (order_by | null),player?: (players_order_by | null),status?: (order_by | null),steam_id?: (order_by | null)} + + +/** primary key columns input for table: lobby_players */ +export interface lobby_players_pk_columns_input {lobby_id: Scalars['uuid'],steam_id: Scalars['bigint']} + + +/** input type for updating data in table "lobby_players" */ +export interface lobby_players_set_input {captain?: (Scalars['Boolean'] | null),invited_by_steam_id?: (Scalars['bigint'] | null),lobby_id?: (Scalars['uuid'] | null),status?: (e_lobby_player_status_enum | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate stddev on columns */ +export interface lobby_players_stddev_fieldsGenqlSelection{ + invited_by_steam_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "lobby_players" */ +export interface lobby_players_stddev_order_by {invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface lobby_players_stddev_pop_fieldsGenqlSelection{ + invited_by_steam_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "lobby_players" */ +export interface lobby_players_stddev_pop_order_by {invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface lobby_players_stddev_samp_fieldsGenqlSelection{ + invited_by_steam_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "lobby_players" */ +export interface lobby_players_stddev_samp_order_by {invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "lobby_players" */ +export interface lobby_players_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: lobby_players_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface lobby_players_stream_cursor_value_input {captain?: (Scalars['Boolean'] | null),invited_by_steam_id?: (Scalars['bigint'] | null),lobby_id?: (Scalars['uuid'] | null),status?: (e_lobby_player_status_enum | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate sum on columns */ +export interface lobby_players_sum_fieldsGenqlSelection{ + invited_by_steam_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "lobby_players" */ +export interface lobby_players_sum_order_by {invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null)} + +export interface lobby_players_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (lobby_players_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (lobby_players_set_input | null), +/** filter the rows which have to be updated */ +where: lobby_players_bool_exp} + + +/** aggregate var_pop on columns */ +export interface lobby_players_var_pop_fieldsGenqlSelection{ + invited_by_steam_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "lobby_players" */ +export interface lobby_players_var_pop_order_by {invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface lobby_players_var_samp_fieldsGenqlSelection{ + invited_by_steam_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "lobby_players" */ +export interface lobby_players_var_samp_order_by {invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface lobby_players_variance_fieldsGenqlSelection{ + invited_by_steam_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "lobby_players" */ +export interface lobby_players_variance_order_by {invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null)} + + +/** columns and relationships of "map_callouts" */ +export interface map_calloutsGenqlSelection{ + boxes?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number + map_name?: boolean | number + name?: boolean | number + source?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "map_callouts" */ +export interface map_callouts_aggregateGenqlSelection{ + aggregate?: map_callouts_aggregate_fieldsGenqlSelection + nodes?: map_calloutsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "map_callouts" */ +export interface map_callouts_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (map_callouts_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: map_callouts_max_fieldsGenqlSelection + min?: map_callouts_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** append existing jsonb value of filtered columns with new jsonb value */ +export interface map_callouts_append_input {boxes?: (Scalars['jsonb'] | null)} + + +/** Boolean expression to filter rows from the table "map_callouts". All fields are combined with a logical 'AND'. */ +export interface map_callouts_bool_exp {_and?: (map_callouts_bool_exp[] | null),_not?: (map_callouts_bool_exp | null),_or?: (map_callouts_bool_exp[] | null),boxes?: (jsonb_comparison_exp | null),map_name?: (String_comparison_exp | null),name?: (String_comparison_exp | null),source?: (String_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 map_callouts_delete_at_path_input {boxes?: (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 map_callouts_delete_elem_input {boxes?: (Scalars['Int'] | null)} + + +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +export interface map_callouts_delete_key_input {boxes?: (Scalars['String'] | null)} + + +/** input type for inserting data into table "map_callouts" */ +export interface map_callouts_insert_input {boxes?: (Scalars['jsonb'] | null),map_name?: (Scalars['String'] | null),name?: (Scalars['String'] | null),source?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate max on columns */ +export interface map_callouts_max_fieldsGenqlSelection{ + map_name?: boolean | number + name?: boolean | number + source?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface map_callouts_min_fieldsGenqlSelection{ + map_name?: boolean | number + name?: boolean | number + source?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "map_callouts" */ +export interface map_callouts_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: map_calloutsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "map_callouts" */ +export interface map_callouts_on_conflict {constraint: map_callouts_constraint,update_columns?: map_callouts_update_column[],where?: (map_callouts_bool_exp | null)} + + +/** Ordering options when selecting data from "map_callouts". */ +export interface map_callouts_order_by {boxes?: (order_by | null),map_name?: (order_by | null),name?: (order_by | null),source?: (order_by | null),updated_at?: (order_by | null)} + + +/** primary key columns input for table: map_callouts */ +export interface map_callouts_pk_columns_input {map_name: Scalars['String'],name: Scalars['String']} + + +/** prepend existing jsonb value of filtered columns with new jsonb value */ +export interface map_callouts_prepend_input {boxes?: (Scalars['jsonb'] | null)} + + +/** input type for updating data in table "map_callouts" */ +export interface map_callouts_set_input {boxes?: (Scalars['jsonb'] | null),map_name?: (Scalars['String'] | null),name?: (Scalars['String'] | null),source?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** Streaming cursor of the table "map_callouts" */ +export interface map_callouts_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: map_callouts_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface map_callouts_stream_cursor_value_input {boxes?: (Scalars['jsonb'] | null),map_name?: (Scalars['String'] | null),name?: (Scalars['String'] | null),source?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null)} + +export interface map_callouts_updates { +/** append existing jsonb value of filtered columns with new jsonb value */ +_append?: (map_callouts_append_input | null), +/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ +_delete_at_path?: (map_callouts_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?: (map_callouts_delete_elem_input | null), +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +_delete_key?: (map_callouts_delete_key_input | null), +/** prepend existing jsonb value of filtered columns with new jsonb value */ +_prepend?: (map_callouts_prepend_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (map_callouts_set_input | null), +/** filter the rows which have to be updated */ +where: map_callouts_bool_exp} + + +/** columns and relationships of "map_pools" */ +export interface map_poolsGenqlSelection{ + /** An object relationship */ + e_type?: e_map_pool_typesGenqlSelection + enabled?: boolean | number + id?: boolean | number + /** An array relationship */ + maps?: (v_pool_mapsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_pool_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?: (v_pool_maps_order_by[] | null), + /** filter the rows returned */ + where?: (v_pool_maps_bool_exp | null)} }) + /** An aggregate relationship */ + maps_aggregate?: (v_pool_maps_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_pool_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?: (v_pool_maps_order_by[] | null), + /** filter the rows returned */ + where?: (v_pool_maps_bool_exp | null)} }) + seed?: boolean | number + type?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "map_pools" */ +export interface map_pools_aggregateGenqlSelection{ + aggregate?: map_pools_aggregate_fieldsGenqlSelection + nodes?: map_poolsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "map_pools" */ +export interface map_pools_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (map_pools_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: map_pools_max_fieldsGenqlSelection + min?: map_pools_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "map_pools". All fields are combined with a logical 'AND'. */ +export interface map_pools_bool_exp {_and?: (map_pools_bool_exp[] | null),_not?: (map_pools_bool_exp | null),_or?: (map_pools_bool_exp[] | null),e_type?: (e_map_pool_types_bool_exp | null),enabled?: (Boolean_comparison_exp | null),id?: (uuid_comparison_exp | null),maps?: (v_pool_maps_bool_exp | null),maps_aggregate?: (v_pool_maps_aggregate_bool_exp | null),seed?: (Boolean_comparison_exp | null),type?: (e_map_pool_types_enum_comparison_exp | null)} + + +/** input type for inserting data into table "map_pools" */ +export interface map_pools_insert_input {e_type?: (e_map_pool_types_obj_rel_insert_input | null),enabled?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),maps?: (v_pool_maps_arr_rel_insert_input | null),seed?: (Scalars['Boolean'] | null),type?: (e_map_pool_types_enum | null)} + + +/** aggregate max on columns */ +export interface map_pools_max_fieldsGenqlSelection{ + id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface map_pools_min_fieldsGenqlSelection{ + id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "map_pools" */ +export interface map_pools_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: map_poolsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "map_pools" */ +export interface map_pools_obj_rel_insert_input {data: map_pools_insert_input, +/** upsert condition */ +on_conflict?: (map_pools_on_conflict | null)} + + +/** on_conflict condition type for table "map_pools" */ +export interface map_pools_on_conflict {constraint: map_pools_constraint,update_columns?: map_pools_update_column[],where?: (map_pools_bool_exp | null)} + + +/** Ordering options when selecting data from "map_pools". */ +export interface map_pools_order_by {e_type?: (e_map_pool_types_order_by | null),enabled?: (order_by | null),id?: (order_by | null),maps_aggregate?: (v_pool_maps_aggregate_order_by | null),seed?: (order_by | null),type?: (order_by | null)} + + +/** primary key columns input for table: map_pools */ +export interface map_pools_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "map_pools" */ +export interface map_pools_set_input {enabled?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),seed?: (Scalars['Boolean'] | null),type?: (e_map_pool_types_enum | null)} + + +/** Streaming cursor of the table "map_pools" */ +export interface map_pools_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: map_pools_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface map_pools_stream_cursor_value_input {enabled?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),seed?: (Scalars['Boolean'] | null),type?: (e_map_pool_types_enum | null)} + +export interface map_pools_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (map_pools_set_input | null), +/** filter the rows which have to be updated */ +where: map_pools_bool_exp} + + +/** columns and relationships of "maps" */ +export interface mapsGenqlSelection{ + active_pool?: boolean | number + deleted_at?: boolean | number + /** An object relationship */ + e_match_type?: e_match_typesGenqlSelection + enabled?: boolean | number + id?: boolean | number + label?: 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)} }) + /** 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)} }) + name?: boolean | number + patch?: boolean | number + poster?: boolean | number + type?: boolean | number + workshop_map_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "maps" */ +export interface maps_aggregateGenqlSelection{ + aggregate?: maps_aggregate_fieldsGenqlSelection + nodes?: mapsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface maps_aggregate_bool_exp {bool_and?: (maps_aggregate_bool_exp_bool_and | null),bool_or?: (maps_aggregate_bool_exp_bool_or | null),count?: (maps_aggregate_bool_exp_count | null)} + +export interface maps_aggregate_bool_exp_bool_and {arguments: maps_select_column_maps_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (maps_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface maps_aggregate_bool_exp_bool_or {arguments: maps_select_column_maps_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (maps_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface maps_aggregate_bool_exp_count {arguments?: (maps_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (maps_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "maps" */ +export interface maps_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (maps_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: maps_max_fieldsGenqlSelection + min?: maps_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "maps" */ +export interface maps_aggregate_order_by {count?: (order_by | null),max?: (maps_max_order_by | null),min?: (maps_min_order_by | null)} + + +/** input type for inserting array relation for remote table "maps" */ +export interface maps_arr_rel_insert_input {data: maps_insert_input[], +/** upsert condition */ +on_conflict?: (maps_on_conflict | null)} + + +/** Boolean expression to filter rows from the table "maps". All fields are combined with a logical 'AND'. */ +export interface maps_bool_exp {_and?: (maps_bool_exp[] | null),_not?: (maps_bool_exp | null),_or?: (maps_bool_exp[] | null),active_pool?: (Boolean_comparison_exp | null),deleted_at?: (timestamptz_comparison_exp | null),e_match_type?: (e_match_types_bool_exp | null),enabled?: (Boolean_comparison_exp | null),id?: (uuid_comparison_exp | null),label?: (String_comparison_exp | null),match_maps?: (match_maps_bool_exp | null),match_maps_aggregate?: (match_maps_aggregate_bool_exp | null),match_veto_picks?: (match_map_veto_picks_bool_exp | null),match_veto_picks_aggregate?: (match_map_veto_picks_aggregate_bool_exp | null),name?: (String_comparison_exp | null),patch?: (String_comparison_exp | null),poster?: (String_comparison_exp | null),type?: (e_match_types_enum_comparison_exp | null),workshop_map_id?: (String_comparison_exp | null)} + + +/** input type for inserting data into table "maps" */ +export interface maps_insert_input {active_pool?: (Scalars['Boolean'] | null),deleted_at?: (Scalars['timestamptz'] | null),e_match_type?: (e_match_types_obj_rel_insert_input | null),enabled?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),label?: (Scalars['String'] | null),match_maps?: (match_maps_arr_rel_insert_input | null),match_veto_picks?: (match_map_veto_picks_arr_rel_insert_input | null),name?: (Scalars['String'] | null),patch?: (Scalars['String'] | null),poster?: (Scalars['String'] | null),type?: (e_match_types_enum | null),workshop_map_id?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface maps_max_fieldsGenqlSelection{ + deleted_at?: boolean | number + id?: boolean | number + label?: boolean | number + name?: boolean | number + patch?: boolean | number + poster?: boolean | number + workshop_map_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "maps" */ +export interface maps_max_order_by {deleted_at?: (order_by | null),id?: (order_by | null),label?: (order_by | null),name?: (order_by | null),patch?: (order_by | null),poster?: (order_by | null),workshop_map_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface maps_min_fieldsGenqlSelection{ + deleted_at?: boolean | number + id?: boolean | number + label?: boolean | number + name?: boolean | number + patch?: boolean | number + poster?: boolean | number + workshop_map_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "maps" */ +export interface maps_min_order_by {deleted_at?: (order_by | null),id?: (order_by | null),label?: (order_by | null),name?: (order_by | null),patch?: (order_by | null),poster?: (order_by | null),workshop_map_id?: (order_by | null)} + + +/** response of any mutation on the table "maps" */ +export interface maps_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: mapsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "maps" */ +export interface maps_obj_rel_insert_input {data: maps_insert_input, +/** upsert condition */ +on_conflict?: (maps_on_conflict | null)} + + +/** on_conflict condition type for table "maps" */ +export interface maps_on_conflict {constraint: maps_constraint,update_columns?: maps_update_column[],where?: (maps_bool_exp | null)} + + +/** Ordering options when selecting data from "maps". */ +export interface maps_order_by {active_pool?: (order_by | null),deleted_at?: (order_by | null),e_match_type?: (e_match_types_order_by | null),enabled?: (order_by | null),id?: (order_by | null),label?: (order_by | null),match_maps_aggregate?: (match_maps_aggregate_order_by | null),match_veto_picks_aggregate?: (match_map_veto_picks_aggregate_order_by | null),name?: (order_by | null),patch?: (order_by | null),poster?: (order_by | null),type?: (order_by | null),workshop_map_id?: (order_by | null)} + + +/** primary key columns input for table: maps */ +export interface maps_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "maps" */ +export interface maps_set_input {active_pool?: (Scalars['Boolean'] | null),deleted_at?: (Scalars['timestamptz'] | null),enabled?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),label?: (Scalars['String'] | null),name?: (Scalars['String'] | null),patch?: (Scalars['String'] | null),poster?: (Scalars['String'] | null),type?: (e_match_types_enum | null),workshop_map_id?: (Scalars['String'] | null)} + + +/** Streaming cursor of the table "maps" */ +export interface maps_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: maps_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface maps_stream_cursor_value_input {active_pool?: (Scalars['Boolean'] | null),deleted_at?: (Scalars['timestamptz'] | null),enabled?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),label?: (Scalars['String'] | null),name?: (Scalars['String'] | null),patch?: (Scalars['String'] | null),poster?: (Scalars['String'] | null),type?: (e_match_types_enum | null),workshop_map_id?: (Scalars['String'] | null)} + +export interface maps_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (maps_set_input | null), +/** filter the rows which have to be updated */ +where: maps_bool_exp} + + +/** columns and relationships of "match_clips" */ +export interface match_clipsGenqlSelection{ + created_at?: boolean | number + /** A computed field, executes function "clip_download_url" */ + download_url?: boolean | number + duration_ms?: boolean | number + file?: boolean | number + id?: boolean | number + kills_count?: 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 + /** An array relationship */ + render_jobs?: (clip_render_jobsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (clip_render_jobs_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (clip_render_jobs_order_by[] | null), + /** filter the rows returned */ + where?: (clip_render_jobs_bool_exp | null)} }) + /** An aggregate relationship */ + render_jobs_aggregate?: (clip_render_jobs_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (clip_render_jobs_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (clip_render_jobs_order_by[] | null), + /** filter the rows returned */ + where?: (clip_render_jobs_bool_exp | null)} }) + round?: boolean | number + size?: boolean | number + /** An object relationship */ + target?: playersGenqlSelection + target_steam_id?: boolean | number + /** A computed field, executes function "clip_thumbnail_download_url" */ + thumbnail_download_url?: boolean | number + thumbnail_url?: boolean | number + title?: boolean | number + /** An object relationship */ + user?: playersGenqlSelection + user_steam_id?: boolean | number + views_count?: boolean | number + visibility?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "match_clips" */ +export interface match_clips_aggregateGenqlSelection{ + aggregate?: match_clips_aggregate_fieldsGenqlSelection + nodes?: match_clipsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface match_clips_aggregate_bool_exp {count?: (match_clips_aggregate_bool_exp_count | null)} + +export interface match_clips_aggregate_bool_exp_count {arguments?: (match_clips_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (match_clips_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "match_clips" */ +export interface match_clips_aggregate_fieldsGenqlSelection{ + avg?: match_clips_avg_fieldsGenqlSelection + count?: { __args: {columns?: (match_clips_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: match_clips_max_fieldsGenqlSelection + min?: match_clips_min_fieldsGenqlSelection + stddev?: match_clips_stddev_fieldsGenqlSelection + stddev_pop?: match_clips_stddev_pop_fieldsGenqlSelection + stddev_samp?: match_clips_stddev_samp_fieldsGenqlSelection + sum?: match_clips_sum_fieldsGenqlSelection + var_pop?: match_clips_var_pop_fieldsGenqlSelection + var_samp?: match_clips_var_samp_fieldsGenqlSelection + variance?: match_clips_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "match_clips" */ +export interface match_clips_aggregate_order_by {avg?: (match_clips_avg_order_by | null),count?: (order_by | null),max?: (match_clips_max_order_by | null),min?: (match_clips_min_order_by | null),stddev?: (match_clips_stddev_order_by | null),stddev_pop?: (match_clips_stddev_pop_order_by | null),stddev_samp?: (match_clips_stddev_samp_order_by | null),sum?: (match_clips_sum_order_by | null),var_pop?: (match_clips_var_pop_order_by | null),var_samp?: (match_clips_var_samp_order_by | null),variance?: (match_clips_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "match_clips" */ +export interface match_clips_arr_rel_insert_input {data: match_clips_insert_input[], +/** upsert condition */ +on_conflict?: (match_clips_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface match_clips_avg_fieldsGenqlSelection{ + duration_ms?: boolean | number + kills_count?: boolean | number + round?: boolean | number + size?: boolean | number + target_steam_id?: boolean | number + user_steam_id?: boolean | number + views_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "match_clips" */ +export interface match_clips_avg_order_by {duration_ms?: (order_by | null),kills_count?: (order_by | null),round?: (order_by | null),size?: (order_by | null),target_steam_id?: (order_by | null),user_steam_id?: (order_by | null),views_count?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "match_clips". All fields are combined with a logical 'AND'. */ +export interface match_clips_bool_exp {_and?: (match_clips_bool_exp[] | null),_not?: (match_clips_bool_exp | null),_or?: (match_clips_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),download_url?: (String_comparison_exp | null),duration_ms?: (Int_comparison_exp | null),file?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),kills_count?: (Int_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),render_jobs?: (clip_render_jobs_bool_exp | null),render_jobs_aggregate?: (clip_render_jobs_aggregate_bool_exp | null),round?: (Int_comparison_exp | null),size?: (bigint_comparison_exp | null),target?: (players_bool_exp | null),target_steam_id?: (bigint_comparison_exp | null),thumbnail_download_url?: (String_comparison_exp | null),thumbnail_url?: (String_comparison_exp | null),title?: (String_comparison_exp | null),user?: (players_bool_exp | null),user_steam_id?: (bigint_comparison_exp | null),views_count?: (Int_comparison_exp | null),visibility?: (e_match_clip_visibility_enum_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "match_clips" */ +export interface match_clips_inc_input {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)} + + +/** input type for inserting data into table "match_clips" */ +export interface match_clips_insert_input {created_at?: (Scalars['timestamptz'] | null),duration_ms?: (Scalars['Int'] | null),file?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),kills_count?: (Scalars['Int'] | 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),render_jobs?: (clip_render_jobs_arr_rel_insert_input | null),round?: (Scalars['Int'] | null),size?: (Scalars['bigint'] | null),target?: (players_obj_rel_insert_input | null),target_steam_id?: (Scalars['bigint'] | null),thumbnail_url?: (Scalars['String'] | null),title?: (Scalars['String'] | null),user?: (players_obj_rel_insert_input | null),user_steam_id?: (Scalars['bigint'] | null),views_count?: (Scalars['Int'] | null),visibility?: (e_match_clip_visibility_enum | null)} + + +/** aggregate max on columns */ +export interface match_clips_max_fieldsGenqlSelection{ + created_at?: boolean | number + /** A computed field, executes function "clip_download_url" */ + download_url?: boolean | number + duration_ms?: boolean | number + file?: boolean | number + id?: boolean | number + kills_count?: boolean | number + match_map_demo_id?: boolean | number + match_map_id?: boolean | number + round?: boolean | number + size?: boolean | number + target_steam_id?: boolean | number + /** A computed field, executes function "clip_thumbnail_download_url" */ + thumbnail_download_url?: boolean | number + thumbnail_url?: boolean | number + title?: boolean | number + user_steam_id?: boolean | number + views_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "match_clips" */ +export interface match_clips_max_order_by {created_at?: (order_by | null),duration_ms?: (order_by | null),file?: (order_by | null),id?: (order_by | null),kills_count?: (order_by | null),match_map_demo_id?: (order_by | null),match_map_id?: (order_by | null),round?: (order_by | null),size?: (order_by | null),target_steam_id?: (order_by | null),thumbnail_url?: (order_by | null),title?: (order_by | null),user_steam_id?: (order_by | null),views_count?: (order_by | null)} + + +/** aggregate min on columns */ +export interface match_clips_min_fieldsGenqlSelection{ + created_at?: boolean | number + /** A computed field, executes function "clip_download_url" */ + download_url?: boolean | number + duration_ms?: boolean | number + file?: boolean | number + id?: boolean | number + kills_count?: boolean | number + match_map_demo_id?: boolean | number + match_map_id?: boolean | number + round?: boolean | number + size?: boolean | number + target_steam_id?: boolean | number + /** A computed field, executes function "clip_thumbnail_download_url" */ + thumbnail_download_url?: boolean | number + thumbnail_url?: boolean | number + title?: boolean | number + user_steam_id?: boolean | number + views_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "match_clips" */ +export interface match_clips_min_order_by {created_at?: (order_by | null),duration_ms?: (order_by | null),file?: (order_by | null),id?: (order_by | null),kills_count?: (order_by | null),match_map_demo_id?: (order_by | null),match_map_id?: (order_by | null),round?: (order_by | null),size?: (order_by | null),target_steam_id?: (order_by | null),thumbnail_url?: (order_by | null),title?: (order_by | null),user_steam_id?: (order_by | null),views_count?: (order_by | null)} + + +/** response of any mutation on the table "match_clips" */ +export interface match_clips_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: match_clipsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "match_clips" */ +export interface match_clips_obj_rel_insert_input {data: match_clips_insert_input, +/** upsert condition */ +on_conflict?: (match_clips_on_conflict | null)} + + +/** on_conflict condition type for table "match_clips" */ +export interface match_clips_on_conflict {constraint: match_clips_constraint,update_columns?: match_clips_update_column[],where?: (match_clips_bool_exp | null)} + + +/** Ordering options when selecting data from "match_clips". */ +export interface match_clips_order_by {created_at?: (order_by | null),download_url?: (order_by | null),duration_ms?: (order_by | null),file?: (order_by | null),id?: (order_by | null),kills_count?: (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),render_jobs_aggregate?: (clip_render_jobs_aggregate_order_by | null),round?: (order_by | null),size?: (order_by | null),target?: (players_order_by | null),target_steam_id?: (order_by | null),thumbnail_download_url?: (order_by | null),thumbnail_url?: (order_by | null),title?: (order_by | null),user?: (players_order_by | null),user_steam_id?: (order_by | null),views_count?: (order_by | null),visibility?: (order_by | null)} + + +/** primary key columns input for table: match_clips */ +export interface match_clips_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "match_clips" */ +export interface match_clips_set_input {created_at?: (Scalars['timestamptz'] | null),duration_ms?: (Scalars['Int'] | null),file?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),kills_count?: (Scalars['Int'] | null),match_map_demo_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),round?: (Scalars['Int'] | null),size?: (Scalars['bigint'] | null),target_steam_id?: (Scalars['bigint'] | null),thumbnail_url?: (Scalars['String'] | null),title?: (Scalars['String'] | null),user_steam_id?: (Scalars['bigint'] | null),views_count?: (Scalars['Int'] | null),visibility?: (e_match_clip_visibility_enum | null)} + + +/** aggregate stddev on columns */ +export interface match_clips_stddev_fieldsGenqlSelection{ + duration_ms?: boolean | number + kills_count?: boolean | number + round?: boolean | number + size?: boolean | number + target_steam_id?: boolean | number + user_steam_id?: boolean | number + views_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "match_clips" */ +export interface match_clips_stddev_order_by {duration_ms?: (order_by | null),kills_count?: (order_by | null),round?: (order_by | null),size?: (order_by | null),target_steam_id?: (order_by | null),user_steam_id?: (order_by | null),views_count?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface match_clips_stddev_pop_fieldsGenqlSelection{ + duration_ms?: boolean | number + kills_count?: boolean | number + round?: boolean | number + size?: boolean | number + target_steam_id?: boolean | number + user_steam_id?: boolean | number + views_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "match_clips" */ +export interface match_clips_stddev_pop_order_by {duration_ms?: (order_by | null),kills_count?: (order_by | null),round?: (order_by | null),size?: (order_by | null),target_steam_id?: (order_by | null),user_steam_id?: (order_by | null),views_count?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface match_clips_stddev_samp_fieldsGenqlSelection{ + duration_ms?: boolean | number + kills_count?: boolean | number + round?: boolean | number + size?: boolean | number + target_steam_id?: boolean | number + user_steam_id?: boolean | number + views_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "match_clips" */ +export interface match_clips_stddev_samp_order_by {duration_ms?: (order_by | null),kills_count?: (order_by | null),round?: (order_by | null),size?: (order_by | null),target_steam_id?: (order_by | null),user_steam_id?: (order_by | null),views_count?: (order_by | null)} + + +/** Streaming cursor of the table "match_clips" */ +export interface match_clips_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: match_clips_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface match_clips_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),duration_ms?: (Scalars['Int'] | null),file?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),kills_count?: (Scalars['Int'] | null),match_map_demo_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),round?: (Scalars['Int'] | null),size?: (Scalars['bigint'] | null),target_steam_id?: (Scalars['bigint'] | null),thumbnail_url?: (Scalars['String'] | null),title?: (Scalars['String'] | null),user_steam_id?: (Scalars['bigint'] | null),views_count?: (Scalars['Int'] | null),visibility?: (e_match_clip_visibility_enum | null)} + + +/** aggregate sum on columns */ +export interface match_clips_sum_fieldsGenqlSelection{ + duration_ms?: boolean | number + kills_count?: boolean | number + round?: boolean | number + size?: boolean | number + target_steam_id?: boolean | number + user_steam_id?: boolean | number + views_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "match_clips" */ +export interface match_clips_sum_order_by {duration_ms?: (order_by | null),kills_count?: (order_by | null),round?: (order_by | null),size?: (order_by | null),target_steam_id?: (order_by | null),user_steam_id?: (order_by | null),views_count?: (order_by | null)} + +export interface match_clips_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (match_clips_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (match_clips_set_input | null), +/** filter the rows which have to be updated */ +where: match_clips_bool_exp} + + +/** aggregate var_pop on columns */ +export interface match_clips_var_pop_fieldsGenqlSelection{ + duration_ms?: boolean | number + kills_count?: boolean | number + round?: boolean | number + size?: boolean | number + target_steam_id?: boolean | number + user_steam_id?: boolean | number + views_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "match_clips" */ +export interface match_clips_var_pop_order_by {duration_ms?: (order_by | null),kills_count?: (order_by | null),round?: (order_by | null),size?: (order_by | null),target_steam_id?: (order_by | null),user_steam_id?: (order_by | null),views_count?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface match_clips_var_samp_fieldsGenqlSelection{ + duration_ms?: boolean | number + kills_count?: boolean | number + round?: boolean | number + size?: boolean | number + target_steam_id?: boolean | number + user_steam_id?: boolean | number + views_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "match_clips" */ +export interface match_clips_var_samp_order_by {duration_ms?: (order_by | null),kills_count?: (order_by | null),round?: (order_by | null),size?: (order_by | null),target_steam_id?: (order_by | null),user_steam_id?: (order_by | null),views_count?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface match_clips_variance_fieldsGenqlSelection{ + duration_ms?: boolean | number + kills_count?: boolean | number + round?: boolean | number + size?: boolean | number + target_steam_id?: boolean | number + user_steam_id?: boolean | number + views_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "match_clips" */ +export interface match_clips_variance_order_by {duration_ms?: (order_by | null),kills_count?: (order_by | null),round?: (order_by | null),size?: (order_by | null),target_steam_id?: (order_by | null),user_steam_id?: (order_by | null),views_count?: (order_by | null)} + + +/** columns and relationships of "match_demo_sessions" */ +export interface match_demo_sessionsGenqlSelection{ + 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_activity_at?: boolean | number + last_status_at?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + match_id?: 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 + status?: boolean | number + status_history?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number + stream_url?: boolean | number + /** An object relationship */ + watcher?: playersGenqlSelection + watcher_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "match_demo_sessions" */ +export interface match_demo_sessions_aggregateGenqlSelection{ + aggregate?: match_demo_sessions_aggregate_fieldsGenqlSelection + nodes?: match_demo_sessionsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface match_demo_sessions_aggregate_bool_exp {count?: (match_demo_sessions_aggregate_bool_exp_count | null)} + +export interface match_demo_sessions_aggregate_bool_exp_count {arguments?: (match_demo_sessions_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (match_demo_sessions_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "match_demo_sessions" */ +export interface match_demo_sessions_aggregate_fieldsGenqlSelection{ + avg?: match_demo_sessions_avg_fieldsGenqlSelection + count?: { __args: {columns?: (match_demo_sessions_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: match_demo_sessions_max_fieldsGenqlSelection + min?: match_demo_sessions_min_fieldsGenqlSelection + stddev?: match_demo_sessions_stddev_fieldsGenqlSelection + stddev_pop?: match_demo_sessions_stddev_pop_fieldsGenqlSelection + stddev_samp?: match_demo_sessions_stddev_samp_fieldsGenqlSelection + sum?: match_demo_sessions_sum_fieldsGenqlSelection + var_pop?: match_demo_sessions_var_pop_fieldsGenqlSelection + var_samp?: match_demo_sessions_var_samp_fieldsGenqlSelection + variance?: match_demo_sessions_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "match_demo_sessions" */ +export interface match_demo_sessions_aggregate_order_by {avg?: (match_demo_sessions_avg_order_by | null),count?: (order_by | null),max?: (match_demo_sessions_max_order_by | null),min?: (match_demo_sessions_min_order_by | null),stddev?: (match_demo_sessions_stddev_order_by | null),stddev_pop?: (match_demo_sessions_stddev_pop_order_by | null),stddev_samp?: (match_demo_sessions_stddev_samp_order_by | null),sum?: (match_demo_sessions_sum_order_by | null),var_pop?: (match_demo_sessions_var_pop_order_by | null),var_samp?: (match_demo_sessions_var_samp_order_by | null),variance?: (match_demo_sessions_variance_order_by | null)} + + +/** append existing jsonb value of filtered columns with new jsonb value */ +export interface match_demo_sessions_append_input {status_history?: (Scalars['jsonb'] | null)} + + +/** input type for inserting array relation for remote table "match_demo_sessions" */ +export interface match_demo_sessions_arr_rel_insert_input {data: match_demo_sessions_insert_input[], +/** upsert condition */ +on_conflict?: (match_demo_sessions_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface match_demo_sessions_avg_fieldsGenqlSelection{ + watcher_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "match_demo_sessions" */ +export interface match_demo_sessions_avg_order_by {watcher_steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "match_demo_sessions". All fields are combined with a logical 'AND'. */ +export interface match_demo_sessions_bool_exp {_and?: (match_demo_sessions_bool_exp[] | null),_not?: (match_demo_sessions_bool_exp | null),_or?: (match_demo_sessions_bool_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_activity_at?: (timestamptz_comparison_exp | null),last_status_at?: (timestamptz_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_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),status?: (String_comparison_exp | null),status_history?: (jsonb_comparison_exp | null),stream_url?: (String_comparison_exp | null),watcher?: (players_bool_exp | null),watcher_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 match_demo_sessions_delete_at_path_input {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 match_demo_sessions_delete_elem_input {status_history?: (Scalars['Int'] | null)} + + +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +export interface match_demo_sessions_delete_key_input {status_history?: (Scalars['String'] | null)} + + +/** input type for incrementing numeric columns in table "match_demo_sessions" */ +export interface match_demo_sessions_inc_input {watcher_steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "match_demo_sessions" */ +export interface match_demo_sessions_insert_input {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_activity_at?: (Scalars['timestamptz'] | null),last_status_at?: (Scalars['timestamptz'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | 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),status?: (Scalars['String'] | null),status_history?: (Scalars['jsonb'] | null),stream_url?: (Scalars['String'] | null),watcher?: (players_obj_rel_insert_input | null),watcher_steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate max on columns */ +export interface match_demo_sessions_max_fieldsGenqlSelection{ + created_at?: boolean | number + error_message?: boolean | number + game_server_node_id?: boolean | number + id?: boolean | number + k8s_job_name?: boolean | number + last_activity_at?: boolean | number + last_status_at?: boolean | number + match_id?: boolean | number + match_map_demo_id?: boolean | number + match_map_id?: boolean | number + status?: boolean | number + stream_url?: boolean | number + watcher_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "match_demo_sessions" */ +export interface match_demo_sessions_max_order_by {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_activity_at?: (order_by | null),last_status_at?: (order_by | null),match_id?: (order_by | null),match_map_demo_id?: (order_by | null),match_map_id?: (order_by | null),status?: (order_by | null),stream_url?: (order_by | null),watcher_steam_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface match_demo_sessions_min_fieldsGenqlSelection{ + created_at?: boolean | number + error_message?: boolean | number + game_server_node_id?: boolean | number + id?: boolean | number + k8s_job_name?: boolean | number + last_activity_at?: boolean | number + last_status_at?: boolean | number + match_id?: boolean | number + match_map_demo_id?: boolean | number + match_map_id?: boolean | number + status?: boolean | number + stream_url?: boolean | number + watcher_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "match_demo_sessions" */ +export interface match_demo_sessions_min_order_by {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_activity_at?: (order_by | null),last_status_at?: (order_by | null),match_id?: (order_by | null),match_map_demo_id?: (order_by | null),match_map_id?: (order_by | null),status?: (order_by | null),stream_url?: (order_by | null),watcher_steam_id?: (order_by | null)} + + +/** response of any mutation on the table "match_demo_sessions" */ +export interface match_demo_sessions_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: match_demo_sessionsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "match_demo_sessions" */ +export interface match_demo_sessions_on_conflict {constraint: match_demo_sessions_constraint,update_columns?: match_demo_sessions_update_column[],where?: (match_demo_sessions_bool_exp | null)} + + +/** Ordering options when selecting data from "match_demo_sessions". */ +export interface match_demo_sessions_order_by {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_activity_at?: (order_by | null),last_status_at?: (order_by | null),match?: (matches_order_by | null),match_id?: (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),status?: (order_by | null),status_history?: (order_by | null),stream_url?: (order_by | null),watcher?: (players_order_by | null),watcher_steam_id?: (order_by | null)} + + +/** primary key columns input for table: match_demo_sessions */ +export interface match_demo_sessions_pk_columns_input {id: Scalars['uuid']} + + +/** prepend existing jsonb value of filtered columns with new jsonb value */ +export interface match_demo_sessions_prepend_input {status_history?: (Scalars['jsonb'] | null)} + + +/** input type for updating data in table "match_demo_sessions" */ +export interface match_demo_sessions_set_input {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),status_history?: (Scalars['jsonb'] | null),stream_url?: (Scalars['String'] | null),watcher_steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate stddev on columns */ +export interface match_demo_sessions_stddev_fieldsGenqlSelection{ + watcher_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "match_demo_sessions" */ +export interface match_demo_sessions_stddev_order_by {watcher_steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface match_demo_sessions_stddev_pop_fieldsGenqlSelection{ + watcher_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "match_demo_sessions" */ +export interface match_demo_sessions_stddev_pop_order_by {watcher_steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface match_demo_sessions_stddev_samp_fieldsGenqlSelection{ + watcher_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "match_demo_sessions" */ +export interface match_demo_sessions_stddev_samp_order_by {watcher_steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "match_demo_sessions" */ +export interface match_demo_sessions_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: match_demo_sessions_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface match_demo_sessions_stream_cursor_value_input {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),status_history?: (Scalars['jsonb'] | null),stream_url?: (Scalars['String'] | null),watcher_steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate sum on columns */ +export interface match_demo_sessions_sum_fieldsGenqlSelection{ + watcher_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "match_demo_sessions" */ +export interface match_demo_sessions_sum_order_by {watcher_steam_id?: (order_by | null)} + +export interface match_demo_sessions_updates { +/** append existing jsonb value of filtered columns with new jsonb value */ +_append?: (match_demo_sessions_append_input | null), +/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ +_delete_at_path?: (match_demo_sessions_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?: (match_demo_sessions_delete_elem_input | null), +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +_delete_key?: (match_demo_sessions_delete_key_input | null), +/** increments the numeric columns with given value of the filtered values */ +_inc?: (match_demo_sessions_inc_input | null), +/** prepend existing jsonb value of filtered columns with new jsonb value */ +_prepend?: (match_demo_sessions_prepend_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (match_demo_sessions_set_input | null), +/** filter the rows which have to be updated */ +where: match_demo_sessions_bool_exp} + + +/** aggregate var_pop on columns */ +export interface match_demo_sessions_var_pop_fieldsGenqlSelection{ + watcher_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "match_demo_sessions" */ +export interface match_demo_sessions_var_pop_order_by {watcher_steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface match_demo_sessions_var_samp_fieldsGenqlSelection{ + watcher_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "match_demo_sessions" */ +export interface match_demo_sessions_var_samp_order_by {watcher_steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface match_demo_sessions_variance_fieldsGenqlSelection{ + watcher_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "match_demo_sessions" */ +export interface match_demo_sessions_variance_order_by {watcher_steam_id?: (order_by | null)} + + +/** relational table for assigning a players to a match and lineup */ +export interface match_lineup_playersGenqlSelection{ + captain?: boolean | number + checked_in?: boolean | number + discord_id?: boolean | number + id?: boolean | number + is_connected?: boolean | number + /** An object relationship */ + lineup?: match_lineupsGenqlSelection + match_lineup_id?: boolean | number + party_id?: boolean | number + party_source?: boolean | number + placeholder_name?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "match_lineup_players" */ +export interface match_lineup_players_aggregateGenqlSelection{ + aggregate?: match_lineup_players_aggregate_fieldsGenqlSelection + nodes?: match_lineup_playersGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface match_lineup_players_aggregate_bool_exp {bool_and?: (match_lineup_players_aggregate_bool_exp_bool_and | null),bool_or?: (match_lineup_players_aggregate_bool_exp_bool_or | null),count?: (match_lineup_players_aggregate_bool_exp_count | null)} + +export interface match_lineup_players_aggregate_bool_exp_bool_and {arguments: match_lineup_players_select_column_match_lineup_players_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (match_lineup_players_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface match_lineup_players_aggregate_bool_exp_bool_or {arguments: match_lineup_players_select_column_match_lineup_players_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (match_lineup_players_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface match_lineup_players_aggregate_bool_exp_count {arguments?: (match_lineup_players_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (match_lineup_players_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "match_lineup_players" */ +export interface match_lineup_players_aggregate_fieldsGenqlSelection{ + avg?: match_lineup_players_avg_fieldsGenqlSelection + count?: { __args: {columns?: (match_lineup_players_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: match_lineup_players_max_fieldsGenqlSelection + min?: match_lineup_players_min_fieldsGenqlSelection + stddev?: match_lineup_players_stddev_fieldsGenqlSelection + stddev_pop?: match_lineup_players_stddev_pop_fieldsGenqlSelection + stddev_samp?: match_lineup_players_stddev_samp_fieldsGenqlSelection + sum?: match_lineup_players_sum_fieldsGenqlSelection + var_pop?: match_lineup_players_var_pop_fieldsGenqlSelection + var_samp?: match_lineup_players_var_samp_fieldsGenqlSelection + variance?: match_lineup_players_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "match_lineup_players" */ +export interface match_lineup_players_aggregate_order_by {avg?: (match_lineup_players_avg_order_by | null),count?: (order_by | null),max?: (match_lineup_players_max_order_by | null),min?: (match_lineup_players_min_order_by | null),stddev?: (match_lineup_players_stddev_order_by | null),stddev_pop?: (match_lineup_players_stddev_pop_order_by | null),stddev_samp?: (match_lineup_players_stddev_samp_order_by | null),sum?: (match_lineup_players_sum_order_by | null),var_pop?: (match_lineup_players_var_pop_order_by | null),var_samp?: (match_lineup_players_var_samp_order_by | null),variance?: (match_lineup_players_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "match_lineup_players" */ +export interface match_lineup_players_arr_rel_insert_input {data: match_lineup_players_insert_input[], +/** upsert condition */ +on_conflict?: (match_lineup_players_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface match_lineup_players_avg_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "match_lineup_players" */ +export interface match_lineup_players_avg_order_by {steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "match_lineup_players". All fields are combined with a logical 'AND'. */ +export interface match_lineup_players_bool_exp {_and?: (match_lineup_players_bool_exp[] | null),_not?: (match_lineup_players_bool_exp | null),_or?: (match_lineup_players_bool_exp[] | null),captain?: (Boolean_comparison_exp | null),checked_in?: (Boolean_comparison_exp | null),discord_id?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),is_connected?: (Boolean_comparison_exp | null),lineup?: (match_lineups_bool_exp | null),match_lineup_id?: (uuid_comparison_exp | null),party_id?: (uuid_comparison_exp | null),party_source?: (e_match_party_sources_enum_comparison_exp | null),placeholder_name?: (String_comparison_exp | null),player?: (players_bool_exp | null),steam_id?: (bigint_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "match_lineup_players" */ +export interface match_lineup_players_inc_input {steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "match_lineup_players" */ +export interface match_lineup_players_insert_input {captain?: (Scalars['Boolean'] | null),checked_in?: (Scalars['Boolean'] | null),discord_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_connected?: (Scalars['Boolean'] | null),lineup?: (match_lineups_obj_rel_insert_input | null),match_lineup_id?: (Scalars['uuid'] | null),party_id?: (Scalars['uuid'] | null),party_source?: (e_match_party_sources_enum | null),placeholder_name?: (Scalars['String'] | null),player?: (players_obj_rel_insert_input | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate max on columns */ +export interface match_lineup_players_max_fieldsGenqlSelection{ + discord_id?: boolean | number + id?: boolean | number + match_lineup_id?: boolean | number + party_id?: boolean | number + placeholder_name?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "match_lineup_players" */ +export interface match_lineup_players_max_order_by {discord_id?: (order_by | null),id?: (order_by | null),match_lineup_id?: (order_by | null),party_id?: (order_by | null),placeholder_name?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface match_lineup_players_min_fieldsGenqlSelection{ + discord_id?: boolean | number + id?: boolean | number + match_lineup_id?: boolean | number + party_id?: boolean | number + placeholder_name?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "match_lineup_players" */ +export interface match_lineup_players_min_order_by {discord_id?: (order_by | null),id?: (order_by | null),match_lineup_id?: (order_by | null),party_id?: (order_by | null),placeholder_name?: (order_by | null),steam_id?: (order_by | null)} + + +/** response of any mutation on the table "match_lineup_players" */ +export interface match_lineup_players_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: match_lineup_playersGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "match_lineup_players" */ +export interface match_lineup_players_on_conflict {constraint: match_lineup_players_constraint,update_columns?: match_lineup_players_update_column[],where?: (match_lineup_players_bool_exp | null)} + + +/** Ordering options when selecting data from "match_lineup_players". */ +export interface match_lineup_players_order_by {captain?: (order_by | null),checked_in?: (order_by | null),discord_id?: (order_by | null),id?: (order_by | null),is_connected?: (order_by | null),lineup?: (match_lineups_order_by | null),match_lineup_id?: (order_by | null),party_id?: (order_by | null),party_source?: (order_by | null),placeholder_name?: (order_by | null),player?: (players_order_by | null),steam_id?: (order_by | null)} + + +/** primary key columns input for table: match_lineup_players */ +export interface match_lineup_players_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "match_lineup_players" */ +export interface match_lineup_players_set_input {captain?: (Scalars['Boolean'] | null),checked_in?: (Scalars['Boolean'] | null),discord_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_connected?: (Scalars['Boolean'] | null),match_lineup_id?: (Scalars['uuid'] | null),party_id?: (Scalars['uuid'] | null),party_source?: (e_match_party_sources_enum | null),placeholder_name?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate stddev on columns */ +export interface match_lineup_players_stddev_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "match_lineup_players" */ +export interface match_lineup_players_stddev_order_by {steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface match_lineup_players_stddev_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "match_lineup_players" */ +export interface match_lineup_players_stddev_pop_order_by {steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface match_lineup_players_stddev_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "match_lineup_players" */ +export interface match_lineup_players_stddev_samp_order_by {steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "match_lineup_players" */ +export interface match_lineup_players_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: match_lineup_players_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface match_lineup_players_stream_cursor_value_input {captain?: (Scalars['Boolean'] | null),checked_in?: (Scalars['Boolean'] | null),discord_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_connected?: (Scalars['Boolean'] | null),match_lineup_id?: (Scalars['uuid'] | null),party_id?: (Scalars['uuid'] | null),party_source?: (e_match_party_sources_enum | null),placeholder_name?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate sum on columns */ +export interface match_lineup_players_sum_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "match_lineup_players" */ +export interface match_lineup_players_sum_order_by {steam_id?: (order_by | null)} + +export interface match_lineup_players_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (match_lineup_players_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (match_lineup_players_set_input | null), +/** filter the rows which have to be updated */ +where: match_lineup_players_bool_exp} + + +/** aggregate var_pop on columns */ +export interface match_lineup_players_var_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "match_lineup_players" */ +export interface match_lineup_players_var_pop_order_by {steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface match_lineup_players_var_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "match_lineup_players" */ +export interface match_lineup_players_var_samp_order_by {steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface match_lineup_players_variance_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "match_lineup_players" */ +export interface match_lineup_players_variance_order_by {steam_id?: (order_by | null)} + + +/** relational table for assigning a team to a match and lineup */ +export interface match_lineupsGenqlSelection{ + /** A computed field, executes function "can_pick_map_veto" */ + can_pick_map_veto?: boolean | number + /** A computed field, executes function "can_pick_region_veto" */ + can_pick_region_veto?: boolean | number + /** A computed field, executes function "can_update_lineup" */ + can_update_lineup?: boolean | number + /** An object relationship */ + captain?: v_match_captainsGenqlSelection + /** An object relationship */ + coach?: playersGenqlSelection + coach_steam_id?: boolean | number + id?: boolean | number + /** A computed field, executes function "is_on_lineup" */ + is_on_lineup?: boolean | number + /** A computed field, executes function "lineup_is_picking_map_veto" */ + is_picking_map_veto?: boolean | number + /** A computed field, executes function "lineup_is_picking_region_veto" */ + is_picking_region_veto?: boolean | number + /** A computed field, executes function "is_match_lineup_ready" */ + is_ready?: boolean | number + /** An array relationship */ + 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 */ + 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)} }) + /** An object relationship */ + match?: matchesGenqlSelection + match_id?: 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)} }) + /** A computed field, executes function "get_team_name" */ + name?: boolean | number + /** An object relationship */ + team?: teamsGenqlSelection + team_id?: boolean | number + team_name?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "match_lineups" */ +export interface match_lineups_aggregateGenqlSelection{ + aggregate?: match_lineups_aggregate_fieldsGenqlSelection + nodes?: match_lineupsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface match_lineups_aggregate_bool_exp {count?: (match_lineups_aggregate_bool_exp_count | null)} + +export interface match_lineups_aggregate_bool_exp_count {arguments?: (match_lineups_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (match_lineups_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "match_lineups" */ +export interface match_lineups_aggregate_fieldsGenqlSelection{ + avg?: match_lineups_avg_fieldsGenqlSelection + count?: { __args: {columns?: (match_lineups_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: match_lineups_max_fieldsGenqlSelection + min?: match_lineups_min_fieldsGenqlSelection + stddev?: match_lineups_stddev_fieldsGenqlSelection + stddev_pop?: match_lineups_stddev_pop_fieldsGenqlSelection + stddev_samp?: match_lineups_stddev_samp_fieldsGenqlSelection + sum?: match_lineups_sum_fieldsGenqlSelection + var_pop?: match_lineups_var_pop_fieldsGenqlSelection + var_samp?: match_lineups_var_samp_fieldsGenqlSelection + variance?: match_lineups_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "match_lineups" */ +export interface match_lineups_aggregate_order_by {avg?: (match_lineups_avg_order_by | null),count?: (order_by | null),max?: (match_lineups_max_order_by | null),min?: (match_lineups_min_order_by | null),stddev?: (match_lineups_stddev_order_by | null),stddev_pop?: (match_lineups_stddev_pop_order_by | null),stddev_samp?: (match_lineups_stddev_samp_order_by | null),sum?: (match_lineups_sum_order_by | null),var_pop?: (match_lineups_var_pop_order_by | null),var_samp?: (match_lineups_var_samp_order_by | null),variance?: (match_lineups_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "match_lineups" */ +export interface match_lineups_arr_rel_insert_input {data: match_lineups_insert_input[], +/** upsert condition */ +on_conflict?: (match_lineups_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface match_lineups_avg_fieldsGenqlSelection{ + coach_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "match_lineups" */ +export interface match_lineups_avg_order_by {coach_steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "match_lineups". All fields are combined with a logical 'AND'. */ +export interface match_lineups_bool_exp {_and?: (match_lineups_bool_exp[] | null),_not?: (match_lineups_bool_exp | null),_or?: (match_lineups_bool_exp[] | null),can_pick_map_veto?: (Boolean_comparison_exp | null),can_pick_region_veto?: (Boolean_comparison_exp | null),can_update_lineup?: (Boolean_comparison_exp | null),captain?: (v_match_captains_bool_exp | null),coach?: (players_bool_exp | null),coach_steam_id?: (bigint_comparison_exp | null),id?: (uuid_comparison_exp | null),is_on_lineup?: (Boolean_comparison_exp | null),is_picking_map_veto?: (Boolean_comparison_exp | null),is_picking_region_veto?: (Boolean_comparison_exp | null),is_ready?: (Boolean_comparison_exp | null),lineup_players?: (match_lineup_players_bool_exp | null),lineup_players_aggregate?: (match_lineup_players_aggregate_bool_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_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),name?: (String_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null),team_name?: (String_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "match_lineups" */ +export interface match_lineups_inc_input {coach_steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "match_lineups" */ +export interface match_lineups_insert_input {captain?: (v_match_captains_obj_rel_insert_input | null),coach?: (players_obj_rel_insert_input | null),coach_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),lineup_players?: (match_lineup_players_arr_rel_insert_input | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_veto_picks?: (match_map_veto_picks_arr_rel_insert_input | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null),team_name?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface match_lineups_max_fieldsGenqlSelection{ + coach_steam_id?: boolean | number + id?: boolean | number + match_id?: boolean | number + /** A computed field, executes function "get_team_name" */ + name?: boolean | number + team_id?: boolean | number + team_name?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "match_lineups" */ +export interface match_lineups_max_order_by {coach_steam_id?: (order_by | null),id?: (order_by | null),match_id?: (order_by | null),team_id?: (order_by | null),team_name?: (order_by | null)} + + +/** aggregate min on columns */ +export interface match_lineups_min_fieldsGenqlSelection{ + coach_steam_id?: boolean | number + id?: boolean | number + match_id?: boolean | number + /** A computed field, executes function "get_team_name" */ + name?: boolean | number + team_id?: boolean | number + team_name?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "match_lineups" */ +export interface match_lineups_min_order_by {coach_steam_id?: (order_by | null),id?: (order_by | null),match_id?: (order_by | null),team_id?: (order_by | null),team_name?: (order_by | null)} + + +/** response of any mutation on the table "match_lineups" */ +export interface match_lineups_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: match_lineupsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "match_lineups" */ +export interface match_lineups_obj_rel_insert_input {data: match_lineups_insert_input, +/** upsert condition */ +on_conflict?: (match_lineups_on_conflict | null)} + + +/** on_conflict condition type for table "match_lineups" */ +export interface match_lineups_on_conflict {constraint: match_lineups_constraint,update_columns?: match_lineups_update_column[],where?: (match_lineups_bool_exp | null)} + + +/** Ordering options when selecting data from "match_lineups". */ +export interface match_lineups_order_by {can_pick_map_veto?: (order_by | null),can_pick_region_veto?: (order_by | null),can_update_lineup?: (order_by | null),captain?: (v_match_captains_order_by | null),coach?: (players_order_by | null),coach_steam_id?: (order_by | null),id?: (order_by | null),is_on_lineup?: (order_by | null),is_picking_map_veto?: (order_by | null),is_picking_region_veto?: (order_by | null),is_ready?: (order_by | null),lineup_players_aggregate?: (match_lineup_players_aggregate_order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_veto_picks_aggregate?: (match_map_veto_picks_aggregate_order_by | null),name?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null),team_name?: (order_by | null)} + + +/** primary key columns input for table: match_lineups */ +export interface match_lineups_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "match_lineups" */ +export interface match_lineups_set_input {coach_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),team_id?: (Scalars['uuid'] | null),team_name?: (Scalars['String'] | null)} + + +/** aggregate stddev on columns */ +export interface match_lineups_stddev_fieldsGenqlSelection{ + coach_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "match_lineups" */ +export interface match_lineups_stddev_order_by {coach_steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface match_lineups_stddev_pop_fieldsGenqlSelection{ + coach_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "match_lineups" */ +export interface match_lineups_stddev_pop_order_by {coach_steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface match_lineups_stddev_samp_fieldsGenqlSelection{ + coach_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "match_lineups" */ +export interface match_lineups_stddev_samp_order_by {coach_steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "match_lineups" */ +export interface match_lineups_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: match_lineups_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface match_lineups_stream_cursor_value_input {coach_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),team_id?: (Scalars['uuid'] | null),team_name?: (Scalars['String'] | null)} + + +/** aggregate sum on columns */ +export interface match_lineups_sum_fieldsGenqlSelection{ + coach_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "match_lineups" */ +export interface match_lineups_sum_order_by {coach_steam_id?: (order_by | null)} + +export interface match_lineups_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (match_lineups_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (match_lineups_set_input | null), +/** filter the rows which have to be updated */ +where: match_lineups_bool_exp} + + +/** aggregate var_pop on columns */ +export interface match_lineups_var_pop_fieldsGenqlSelection{ + coach_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "match_lineups" */ +export interface match_lineups_var_pop_order_by {coach_steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface match_lineups_var_samp_fieldsGenqlSelection{ + coach_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "match_lineups" */ +export interface match_lineups_var_samp_order_by {coach_steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface match_lineups_variance_fieldsGenqlSelection{ + coach_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "match_lineups" */ +export interface match_lineups_variance_order_by {coach_steam_id?: (order_by | null)} + + +/** columns and relationships of "match_map_demos" */ +export interface match_map_demosGenqlSelection{ + bombs?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number + /** An array relationship */ + clip_render_jobs?: (clip_render_jobsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (clip_render_jobs_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (clip_render_jobs_order_by[] | null), + /** filter the rows returned */ + where?: (clip_render_jobs_bool_exp | null)} }) + /** An aggregate relationship */ + clip_render_jobs_aggregate?: (clip_render_jobs_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (clip_render_jobs_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (clip_render_jobs_order_by[] | null), + /** filter the rows returned */ + where?: (clip_render_jobs_bool_exp | null)} }) + created_at?: boolean | number + cs2_build?: boolean | number + /** An array relationship */ + demo_sessions?: (match_demo_sessionsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_demo_sessions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_demo_sessions_order_by[] | null), + /** filter the rows returned */ + where?: (match_demo_sessions_bool_exp | null)} }) + /** An aggregate relationship */ + demo_sessions_aggregate?: (match_demo_sessions_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_demo_sessions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_demo_sessions_order_by[] | null), + /** filter the rows returned */ + where?: (match_demo_sessions_bool_exp | null)} }) + /** A computed field, executes function "demo_download_url" */ + download_url?: boolean | number + duration_seconds?: boolean | number + file?: boolean | number + geometry_validated?: boolean | number + id?: boolean | number + kills?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number + map_name?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + /** 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)} }) + match_id?: boolean | number + /** An object relationship */ + match_map?: match_mapsGenqlSelection + match_map_id?: boolean | number + metadata_parsed_at?: boolean | number + parser_version?: boolean | number + playback_file?: boolean | number + playback_size?: boolean | number + /** A computed field, executes function "demo_playback_url" */ + playback_url?: boolean | number + playback_version?: boolean | number + players?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number + round_ticks?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number + size?: boolean | number + tick_rate?: boolean | number + total_ticks?: boolean | number + workshop_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "match_map_demos" */ +export interface match_map_demos_aggregateGenqlSelection{ + aggregate?: match_map_demos_aggregate_fieldsGenqlSelection + nodes?: match_map_demosGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface match_map_demos_aggregate_bool_exp {bool_and?: (match_map_demos_aggregate_bool_exp_bool_and | null),bool_or?: (match_map_demos_aggregate_bool_exp_bool_or | null),count?: (match_map_demos_aggregate_bool_exp_count | null)} + +export interface match_map_demos_aggregate_bool_exp_bool_and {arguments: match_map_demos_select_column_match_map_demos_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (match_map_demos_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface match_map_demos_aggregate_bool_exp_bool_or {arguments: match_map_demos_select_column_match_map_demos_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (match_map_demos_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface match_map_demos_aggregate_bool_exp_count {arguments?: (match_map_demos_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (match_map_demos_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "match_map_demos" */ +export interface match_map_demos_aggregate_fieldsGenqlSelection{ + avg?: match_map_demos_avg_fieldsGenqlSelection + count?: { __args: {columns?: (match_map_demos_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: match_map_demos_max_fieldsGenqlSelection + min?: match_map_demos_min_fieldsGenqlSelection + stddev?: match_map_demos_stddev_fieldsGenqlSelection + stddev_pop?: match_map_demos_stddev_pop_fieldsGenqlSelection + stddev_samp?: match_map_demos_stddev_samp_fieldsGenqlSelection + sum?: match_map_demos_sum_fieldsGenqlSelection + var_pop?: match_map_demos_var_pop_fieldsGenqlSelection + var_samp?: match_map_demos_var_samp_fieldsGenqlSelection + variance?: match_map_demos_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "match_map_demos" */ +export interface match_map_demos_aggregate_order_by {avg?: (match_map_demos_avg_order_by | null),count?: (order_by | null),max?: (match_map_demos_max_order_by | null),min?: (match_map_demos_min_order_by | null),stddev?: (match_map_demos_stddev_order_by | null),stddev_pop?: (match_map_demos_stddev_pop_order_by | null),stddev_samp?: (match_map_demos_stddev_samp_order_by | null),sum?: (match_map_demos_sum_order_by | null),var_pop?: (match_map_demos_var_pop_order_by | null),var_samp?: (match_map_demos_var_samp_order_by | null),variance?: (match_map_demos_variance_order_by | null)} + + +/** append existing jsonb value of filtered columns with new jsonb value */ +export interface match_map_demos_append_input {bombs?: (Scalars['jsonb'] | null),kills?: (Scalars['jsonb'] | null),players?: (Scalars['jsonb'] | null),round_ticks?: (Scalars['jsonb'] | null)} + + +/** input type for inserting array relation for remote table "match_map_demos" */ +export interface match_map_demos_arr_rel_insert_input {data: match_map_demos_insert_input[], +/** upsert condition */ +on_conflict?: (match_map_demos_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface match_map_demos_avg_fieldsGenqlSelection{ + duration_seconds?: boolean | number + parser_version?: boolean | number + playback_size?: boolean | number + playback_version?: boolean | number + size?: boolean | number + tick_rate?: boolean | number + total_ticks?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "match_map_demos" */ +export interface match_map_demos_avg_order_by {duration_seconds?: (order_by | null),parser_version?: (order_by | null),playback_size?: (order_by | null),playback_version?: (order_by | null),size?: (order_by | null),tick_rate?: (order_by | null),total_ticks?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "match_map_demos". All fields are combined with a logical 'AND'. */ +export interface match_map_demos_bool_exp {_and?: (match_map_demos_bool_exp[] | null),_not?: (match_map_demos_bool_exp | null),_or?: (match_map_demos_bool_exp[] | null),bombs?: (jsonb_comparison_exp | null),clip_render_jobs?: (clip_render_jobs_bool_exp | null),clip_render_jobs_aggregate?: (clip_render_jobs_aggregate_bool_exp | null),created_at?: (timestamptz_comparison_exp | null),cs2_build?: (String_comparison_exp | null),demo_sessions?: (match_demo_sessions_bool_exp | null),demo_sessions_aggregate?: (match_demo_sessions_aggregate_bool_exp | null),download_url?: (String_comparison_exp | null),duration_seconds?: (Float_comparison_exp | null),file?: (String_comparison_exp | null),geometry_validated?: (Boolean_comparison_exp | null),id?: (uuid_comparison_exp | null),kills?: (jsonb_comparison_exp | null),map_name?: (String_comparison_exp | null),match?: (matches_bool_exp | null),match_clips?: (match_clips_bool_exp | null),match_clips_aggregate?: (match_clips_aggregate_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_id?: (uuid_comparison_exp | null),metadata_parsed_at?: (timestamptz_comparison_exp | null),parser_version?: (Int_comparison_exp | null),playback_file?: (String_comparison_exp | null),playback_size?: (Int_comparison_exp | null),playback_url?: (String_comparison_exp | null),playback_version?: (Int_comparison_exp | null),players?: (jsonb_comparison_exp | null),round_ticks?: (jsonb_comparison_exp | null),size?: (Int_comparison_exp | null),tick_rate?: (Float_comparison_exp | null),total_ticks?: (Int_comparison_exp | null),workshop_id?: (String_comparison_exp | null)} + + +/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ +export interface match_map_demos_delete_at_path_input {bombs?: (Scalars['String'][] | null),kills?: (Scalars['String'][] | null),players?: (Scalars['String'][] | null),round_ticks?: (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 match_map_demos_delete_elem_input {bombs?: (Scalars['Int'] | null),kills?: (Scalars['Int'] | null),players?: (Scalars['Int'] | null),round_ticks?: (Scalars['Int'] | null)} + + +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +export interface match_map_demos_delete_key_input {bombs?: (Scalars['String'] | null),kills?: (Scalars['String'] | null),players?: (Scalars['String'] | null),round_ticks?: (Scalars['String'] | null)} + + +/** input type for incrementing numeric columns in table "match_map_demos" */ +export interface match_map_demos_inc_input {parser_version?: (Scalars['Int'] | null),playback_size?: (Scalars['Int'] | null),playback_version?: (Scalars['Int'] | null),size?: (Scalars['Int'] | null),tick_rate?: (Scalars['Float'] | null),total_ticks?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "match_map_demos" */ +export interface match_map_demos_insert_input {bombs?: (Scalars['jsonb'] | null),clip_render_jobs?: (clip_render_jobs_arr_rel_insert_input | null),created_at?: (Scalars['timestamptz'] | null),cs2_build?: (Scalars['String'] | null),demo_sessions?: (match_demo_sessions_arr_rel_insert_input | null),file?: (Scalars['String'] | null),geometry_validated?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),kills?: (Scalars['jsonb'] | null),map_name?: (Scalars['String'] | null),match?: (matches_obj_rel_insert_input | null),match_clips?: (match_clips_arr_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_map?: (match_maps_obj_rel_insert_input | null),match_map_id?: (Scalars['uuid'] | null),metadata_parsed_at?: (Scalars['timestamptz'] | null),parser_version?: (Scalars['Int'] | null),playback_file?: (Scalars['String'] | null),playback_size?: (Scalars['Int'] | null),playback_version?: (Scalars['Int'] | 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)} + + +/** aggregate max on columns */ +export interface match_map_demos_max_fieldsGenqlSelection{ + created_at?: boolean | number + cs2_build?: boolean | number + /** A computed field, executes function "demo_download_url" */ + download_url?: boolean | number + duration_seconds?: boolean | number + file?: boolean | number + id?: boolean | number + map_name?: boolean | number + match_id?: boolean | number + match_map_id?: boolean | number + metadata_parsed_at?: boolean | number + parser_version?: boolean | number + playback_file?: boolean | number + playback_size?: boolean | number + /** A computed field, executes function "demo_playback_url" */ + playback_url?: boolean | number + playback_version?: boolean | number + size?: boolean | number + tick_rate?: boolean | number + total_ticks?: boolean | number + workshop_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "match_map_demos" */ +export interface match_map_demos_max_order_by {created_at?: (order_by | null),cs2_build?: (order_by | null),duration_seconds?: (order_by | null),file?: (order_by | null),id?: (order_by | null),map_name?: (order_by | null),match_id?: (order_by | null),match_map_id?: (order_by | null),metadata_parsed_at?: (order_by | null),parser_version?: (order_by | null),playback_file?: (order_by | null),playback_size?: (order_by | null),playback_version?: (order_by | null),size?: (order_by | null),tick_rate?: (order_by | null),total_ticks?: (order_by | null),workshop_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface match_map_demos_min_fieldsGenqlSelection{ + created_at?: boolean | number + cs2_build?: boolean | number + /** A computed field, executes function "demo_download_url" */ + download_url?: boolean | number + duration_seconds?: boolean | number + file?: boolean | number + id?: boolean | number + map_name?: boolean | number + match_id?: boolean | number + match_map_id?: boolean | number + metadata_parsed_at?: boolean | number + parser_version?: boolean | number + playback_file?: boolean | number + playback_size?: boolean | number + /** A computed field, executes function "demo_playback_url" */ + playback_url?: boolean | number + playback_version?: boolean | number + size?: boolean | number + tick_rate?: boolean | number + total_ticks?: boolean | number + workshop_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "match_map_demos" */ +export interface match_map_demos_min_order_by {created_at?: (order_by | null),cs2_build?: (order_by | null),duration_seconds?: (order_by | null),file?: (order_by | null),id?: (order_by | null),map_name?: (order_by | null),match_id?: (order_by | null),match_map_id?: (order_by | null),metadata_parsed_at?: (order_by | null),parser_version?: (order_by | null),playback_file?: (order_by | null),playback_size?: (order_by | null),playback_version?: (order_by | null),size?: (order_by | null),tick_rate?: (order_by | null),total_ticks?: (order_by | null),workshop_id?: (order_by | null)} + + +/** response of any mutation on the table "match_map_demos" */ +export interface match_map_demos_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: match_map_demosGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "match_map_demos" */ +export interface match_map_demos_obj_rel_insert_input {data: match_map_demos_insert_input, +/** upsert condition */ +on_conflict?: (match_map_demos_on_conflict | null)} + + +/** on_conflict condition type for table "match_map_demos" */ +export interface match_map_demos_on_conflict {constraint: match_map_demos_constraint,update_columns?: match_map_demos_update_column[],where?: (match_map_demos_bool_exp | null)} + + +/** Ordering options when selecting data from "match_map_demos". */ +export interface match_map_demos_order_by {bombs?: (order_by | null),clip_render_jobs_aggregate?: (clip_render_jobs_aggregate_order_by | null),created_at?: (order_by | null),cs2_build?: (order_by | null),demo_sessions_aggregate?: (match_demo_sessions_aggregate_order_by | null),download_url?: (order_by | null),duration_seconds?: (order_by | null),file?: (order_by | null),geometry_validated?: (order_by | null),id?: (order_by | null),kills?: (order_by | null),map_name?: (order_by | null),match?: (matches_order_by | null),match_clips_aggregate?: (match_clips_aggregate_order_by | null),match_id?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_id?: (order_by | null),metadata_parsed_at?: (order_by | null),parser_version?: (order_by | null),playback_file?: (order_by | null),playback_size?: (order_by | null),playback_url?: (order_by | null),playback_version?: (order_by | null),players?: (order_by | null),round_ticks?: (order_by | null),size?: (order_by | null),tick_rate?: (order_by | null),total_ticks?: (order_by | null),workshop_id?: (order_by | null)} + + +/** primary key columns input for table: match_map_demos */ +export interface match_map_demos_pk_columns_input {id: Scalars['uuid']} + + +/** prepend existing jsonb value of filtered columns with new jsonb value */ +export interface match_map_demos_prepend_input {bombs?: (Scalars['jsonb'] | null),kills?: (Scalars['jsonb'] | null),players?: (Scalars['jsonb'] | null),round_ticks?: (Scalars['jsonb'] | null)} + + +/** input type for updating data in table "match_map_demos" */ +export interface match_map_demos_set_input {bombs?: (Scalars['jsonb'] | null),created_at?: (Scalars['timestamptz'] | null),cs2_build?: (Scalars['String'] | null),file?: (Scalars['String'] | null),geometry_validated?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),kills?: (Scalars['jsonb'] | null),map_name?: (Scalars['String'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),metadata_parsed_at?: (Scalars['timestamptz'] | null),parser_version?: (Scalars['Int'] | null),playback_file?: (Scalars['String'] | null),playback_size?: (Scalars['Int'] | null),playback_version?: (Scalars['Int'] | 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)} + + +/** aggregate stddev on columns */ +export interface match_map_demos_stddev_fieldsGenqlSelection{ + duration_seconds?: boolean | number + parser_version?: boolean | number + playback_size?: boolean | number + playback_version?: boolean | number + size?: boolean | number + tick_rate?: boolean | number + total_ticks?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "match_map_demos" */ +export interface match_map_demos_stddev_order_by {duration_seconds?: (order_by | null),parser_version?: (order_by | null),playback_size?: (order_by | null),playback_version?: (order_by | null),size?: (order_by | null),tick_rate?: (order_by | null),total_ticks?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface match_map_demos_stddev_pop_fieldsGenqlSelection{ + duration_seconds?: boolean | number + parser_version?: boolean | number + playback_size?: boolean | number + playback_version?: boolean | number + size?: boolean | number + tick_rate?: boolean | number + total_ticks?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "match_map_demos" */ +export interface match_map_demos_stddev_pop_order_by {duration_seconds?: (order_by | null),parser_version?: (order_by | null),playback_size?: (order_by | null),playback_version?: (order_by | null),size?: (order_by | null),tick_rate?: (order_by | null),total_ticks?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface match_map_demos_stddev_samp_fieldsGenqlSelection{ + duration_seconds?: boolean | number + parser_version?: boolean | number + playback_size?: boolean | number + playback_version?: boolean | number + size?: boolean | number + tick_rate?: boolean | number + total_ticks?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "match_map_demos" */ +export interface match_map_demos_stddev_samp_order_by {duration_seconds?: (order_by | null),parser_version?: (order_by | null),playback_size?: (order_by | null),playback_version?: (order_by | null),size?: (order_by | null),tick_rate?: (order_by | null),total_ticks?: (order_by | null)} + + +/** Streaming cursor of the table "match_map_demos" */ +export interface match_map_demos_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: match_map_demos_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface match_map_demos_stream_cursor_value_input {bombs?: (Scalars['jsonb'] | null),created_at?: (Scalars['timestamptz'] | null),cs2_build?: (Scalars['String'] | null),duration_seconds?: (Scalars['Float'] | null),file?: (Scalars['String'] | null),geometry_validated?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),kills?: (Scalars['jsonb'] | null),map_name?: (Scalars['String'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),metadata_parsed_at?: (Scalars['timestamptz'] | null),parser_version?: (Scalars['Int'] | null),playback_file?: (Scalars['String'] | null),playback_size?: (Scalars['Int'] | null),playback_version?: (Scalars['Int'] | 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)} + + +/** aggregate sum on columns */ +export interface match_map_demos_sum_fieldsGenqlSelection{ + duration_seconds?: boolean | number + parser_version?: boolean | number + playback_size?: boolean | number + playback_version?: boolean | number + size?: boolean | number + tick_rate?: boolean | number + total_ticks?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "match_map_demos" */ +export interface match_map_demos_sum_order_by {duration_seconds?: (order_by | null),parser_version?: (order_by | null),playback_size?: (order_by | null),playback_version?: (order_by | null),size?: (order_by | null),tick_rate?: (order_by | null),total_ticks?: (order_by | null)} + +export interface match_map_demos_updates { +/** append existing jsonb value of filtered columns with new jsonb value */ +_append?: (match_map_demos_append_input | null), +/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ +_delete_at_path?: (match_map_demos_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?: (match_map_demos_delete_elem_input | null), +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +_delete_key?: (match_map_demos_delete_key_input | null), +/** increments the numeric columns with given value of the filtered values */ +_inc?: (match_map_demos_inc_input | null), +/** prepend existing jsonb value of filtered columns with new jsonb value */ +_prepend?: (match_map_demos_prepend_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (match_map_demos_set_input | null), +/** filter the rows which have to be updated */ +where: match_map_demos_bool_exp} + + +/** aggregate var_pop on columns */ +export interface match_map_demos_var_pop_fieldsGenqlSelection{ + duration_seconds?: boolean | number + parser_version?: boolean | number + playback_size?: boolean | number + playback_version?: boolean | number + size?: boolean | number + tick_rate?: boolean | number + total_ticks?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "match_map_demos" */ +export interface match_map_demos_var_pop_order_by {duration_seconds?: (order_by | null),parser_version?: (order_by | null),playback_size?: (order_by | null),playback_version?: (order_by | null),size?: (order_by | null),tick_rate?: (order_by | null),total_ticks?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface match_map_demos_var_samp_fieldsGenqlSelection{ + duration_seconds?: boolean | number + parser_version?: boolean | number + playback_size?: boolean | number + playback_version?: boolean | number + size?: boolean | number + tick_rate?: boolean | number + total_ticks?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "match_map_demos" */ +export interface match_map_demos_var_samp_order_by {duration_seconds?: (order_by | null),parser_version?: (order_by | null),playback_size?: (order_by | null),playback_version?: (order_by | null),size?: (order_by | null),tick_rate?: (order_by | null),total_ticks?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface match_map_demos_variance_fieldsGenqlSelection{ + duration_seconds?: boolean | number + parser_version?: boolean | number + playback_size?: boolean | number + playback_version?: boolean | number + size?: boolean | number + tick_rate?: boolean | number + total_ticks?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "match_map_demos" */ +export interface match_map_demos_variance_order_by {duration_seconds?: (order_by | null),parser_version?: (order_by | null),playback_size?: (order_by | null),playback_version?: (order_by | null),size?: (order_by | null),tick_rate?: (order_by | null),total_ticks?: (order_by | null)} + + +/** columns and relationships of "match_map_rounds" */ +export interface match_map_roundsGenqlSelection{ + /** An array relationship */ + assists?: (player_assistsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_assists_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_assists_order_by[] | null), + /** filter the rows returned */ + where?: (player_assists_bool_exp | null)} }) + /** An aggregate relationship */ + assists_aggregate?: (player_assists_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_assists_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_assists_order_by[] | null), + /** filter the rows returned */ + where?: (player_assists_bool_exp | null)} }) + backup_file?: boolean | number + created_at?: boolean | number + deleted_at?: boolean | number + /** A computed field, executes function "has_backup_file" */ + has_backup_file?: boolean | number + id?: boolean | number + /** An array relationship */ + kills?: (player_killsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_kills_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_kills_order_by[] | null), + /** filter the rows returned */ + where?: (player_kills_bool_exp | null)} }) + /** An aggregate relationship */ + kills_aggregate?: (player_kills_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_kills_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_kills_order_by[] | null), + /** filter the rows returned */ + where?: (player_kills_bool_exp | null)} }) + lineup_1_money?: boolean | number + lineup_1_score?: boolean | number + lineup_1_side?: boolean | number + lineup_1_timeouts_available?: boolean | number + lineup_2_money?: boolean | number + lineup_2_score?: boolean | number + lineup_2_side?: boolean | number + lineup_2_timeouts_available?: boolean | number + /** An object relationship */ + match_map?: match_mapsGenqlSelection + match_map_id?: boolean | number + round?: boolean | number + time?: boolean | number + winning_reason?: boolean | number + winning_side?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "match_map_rounds" */ +export interface match_map_rounds_aggregateGenqlSelection{ + aggregate?: match_map_rounds_aggregate_fieldsGenqlSelection + nodes?: match_map_roundsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface match_map_rounds_aggregate_bool_exp {count?: (match_map_rounds_aggregate_bool_exp_count | null)} + +export interface match_map_rounds_aggregate_bool_exp_count {arguments?: (match_map_rounds_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (match_map_rounds_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "match_map_rounds" */ +export interface match_map_rounds_aggregate_fieldsGenqlSelection{ + avg?: match_map_rounds_avg_fieldsGenqlSelection + count?: { __args: {columns?: (match_map_rounds_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: match_map_rounds_max_fieldsGenqlSelection + min?: match_map_rounds_min_fieldsGenqlSelection + stddev?: match_map_rounds_stddev_fieldsGenqlSelection + stddev_pop?: match_map_rounds_stddev_pop_fieldsGenqlSelection + stddev_samp?: match_map_rounds_stddev_samp_fieldsGenqlSelection + sum?: match_map_rounds_sum_fieldsGenqlSelection + var_pop?: match_map_rounds_var_pop_fieldsGenqlSelection + var_samp?: match_map_rounds_var_samp_fieldsGenqlSelection + variance?: match_map_rounds_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "match_map_rounds" */ +export interface match_map_rounds_aggregate_order_by {avg?: (match_map_rounds_avg_order_by | null),count?: (order_by | null),max?: (match_map_rounds_max_order_by | null),min?: (match_map_rounds_min_order_by | null),stddev?: (match_map_rounds_stddev_order_by | null),stddev_pop?: (match_map_rounds_stddev_pop_order_by | null),stddev_samp?: (match_map_rounds_stddev_samp_order_by | null),sum?: (match_map_rounds_sum_order_by | null),var_pop?: (match_map_rounds_var_pop_order_by | null),var_samp?: (match_map_rounds_var_samp_order_by | null),variance?: (match_map_rounds_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "match_map_rounds" */ +export interface match_map_rounds_arr_rel_insert_input {data: match_map_rounds_insert_input[], +/** upsert condition */ +on_conflict?: (match_map_rounds_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface match_map_rounds_avg_fieldsGenqlSelection{ + lineup_1_money?: boolean | number + lineup_1_score?: boolean | number + lineup_1_timeouts_available?: boolean | number + lineup_2_money?: boolean | number + lineup_2_score?: boolean | number + lineup_2_timeouts_available?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "match_map_rounds" */ +export interface match_map_rounds_avg_order_by {lineup_1_money?: (order_by | null),lineup_1_score?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_money?: (order_by | null),lineup_2_score?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),round?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "match_map_rounds". All fields are combined with a logical 'AND'. */ +export interface match_map_rounds_bool_exp {_and?: (match_map_rounds_bool_exp[] | null),_not?: (match_map_rounds_bool_exp | null),_or?: (match_map_rounds_bool_exp[] | null),assists?: (player_assists_bool_exp | null),assists_aggregate?: (player_assists_aggregate_bool_exp | null),backup_file?: (String_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),deleted_at?: (timestamptz_comparison_exp | null),has_backup_file?: (Boolean_comparison_exp | null),id?: (uuid_comparison_exp | null),kills?: (player_kills_bool_exp | null),kills_aggregate?: (player_kills_aggregate_bool_exp | null),lineup_1_money?: (Int_comparison_exp | null),lineup_1_score?: (Int_comparison_exp | null),lineup_1_side?: (e_sides_enum_comparison_exp | null),lineup_1_timeouts_available?: (Int_comparison_exp | null),lineup_2_money?: (Int_comparison_exp | null),lineup_2_score?: (Int_comparison_exp | null),lineup_2_side?: (e_sides_enum_comparison_exp | null),lineup_2_timeouts_available?: (Int_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_id?: (uuid_comparison_exp | null),round?: (Int_comparison_exp | null),time?: (timestamptz_comparison_exp | null),winning_reason?: (e_winning_reasons_enum_comparison_exp | null),winning_side?: (String_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "match_map_rounds" */ +export interface match_map_rounds_inc_input {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)} + + +/** input type for inserting data into table "match_map_rounds" */ +export interface match_map_rounds_insert_input {assists?: (player_assists_arr_rel_insert_input | null),backup_file?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),deleted_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),kills?: (player_kills_arr_rel_insert_input | null),lineup_1_money?: (Scalars['Int'] | null),lineup_1_score?: (Scalars['Int'] | null),lineup_1_side?: (e_sides_enum | null),lineup_1_timeouts_available?: (Scalars['Int'] | null),lineup_2_money?: (Scalars['Int'] | null),lineup_2_score?: (Scalars['Int'] | null),lineup_2_side?: (e_sides_enum | null),lineup_2_timeouts_available?: (Scalars['Int'] | null),match_map?: (match_maps_obj_rel_insert_input | null),match_map_id?: (Scalars['uuid'] | null),round?: (Scalars['Int'] | null),time?: (Scalars['timestamptz'] | null),winning_reason?: (e_winning_reasons_enum | null),winning_side?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface match_map_rounds_max_fieldsGenqlSelection{ + backup_file?: boolean | number + created_at?: boolean | number + deleted_at?: boolean | number + id?: boolean | number + lineup_1_money?: boolean | number + lineup_1_score?: boolean | number + lineup_1_timeouts_available?: boolean | number + lineup_2_money?: boolean | number + lineup_2_score?: boolean | number + lineup_2_timeouts_available?: boolean | number + match_map_id?: boolean | number + round?: boolean | number + time?: boolean | number + winning_side?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "match_map_rounds" */ +export interface match_map_rounds_max_order_by {backup_file?: (order_by | null),created_at?: (order_by | null),deleted_at?: (order_by | null),id?: (order_by | null),lineup_1_money?: (order_by | null),lineup_1_score?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_money?: (order_by | null),lineup_2_score?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),match_map_id?: (order_by | null),round?: (order_by | null),time?: (order_by | null),winning_side?: (order_by | null)} + + +/** aggregate min on columns */ +export interface match_map_rounds_min_fieldsGenqlSelection{ + backup_file?: boolean | number + created_at?: boolean | number + deleted_at?: boolean | number + id?: boolean | number + lineup_1_money?: boolean | number + lineup_1_score?: boolean | number + lineup_1_timeouts_available?: boolean | number + lineup_2_money?: boolean | number + lineup_2_score?: boolean | number + lineup_2_timeouts_available?: boolean | number + match_map_id?: boolean | number + round?: boolean | number + time?: boolean | number + winning_side?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "match_map_rounds" */ +export interface match_map_rounds_min_order_by {backup_file?: (order_by | null),created_at?: (order_by | null),deleted_at?: (order_by | null),id?: (order_by | null),lineup_1_money?: (order_by | null),lineup_1_score?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_money?: (order_by | null),lineup_2_score?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),match_map_id?: (order_by | null),round?: (order_by | null),time?: (order_by | null),winning_side?: (order_by | null)} + + +/** response of any mutation on the table "match_map_rounds" */ +export interface match_map_rounds_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: match_map_roundsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "match_map_rounds" */ +export interface match_map_rounds_on_conflict {constraint: match_map_rounds_constraint,update_columns?: match_map_rounds_update_column[],where?: (match_map_rounds_bool_exp | null)} + + +/** Ordering options when selecting data from "match_map_rounds". */ +export interface match_map_rounds_order_by {assists_aggregate?: (player_assists_aggregate_order_by | null),backup_file?: (order_by | null),created_at?: (order_by | null),deleted_at?: (order_by | null),has_backup_file?: (order_by | null),id?: (order_by | null),kills_aggregate?: (player_kills_aggregate_order_by | null),lineup_1_money?: (order_by | null),lineup_1_score?: (order_by | null),lineup_1_side?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_money?: (order_by | null),lineup_2_score?: (order_by | null),lineup_2_side?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_id?: (order_by | null),round?: (order_by | null),time?: (order_by | null),winning_reason?: (order_by | null),winning_side?: (order_by | null)} + + +/** primary key columns input for table: match_map_rounds */ +export interface match_map_rounds_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "match_map_rounds" */ +export interface match_map_rounds_set_input {backup_file?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),deleted_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),lineup_1_money?: (Scalars['Int'] | null),lineup_1_score?: (Scalars['Int'] | null),lineup_1_side?: (e_sides_enum | null),lineup_1_timeouts_available?: (Scalars['Int'] | null),lineup_2_money?: (Scalars['Int'] | null),lineup_2_score?: (Scalars['Int'] | null),lineup_2_side?: (e_sides_enum | null),lineup_2_timeouts_available?: (Scalars['Int'] | null),match_map_id?: (Scalars['uuid'] | null),round?: (Scalars['Int'] | null),time?: (Scalars['timestamptz'] | null),winning_reason?: (e_winning_reasons_enum | null),winning_side?: (Scalars['String'] | null)} + + +/** aggregate stddev on columns */ +export interface match_map_rounds_stddev_fieldsGenqlSelection{ + lineup_1_money?: boolean | number + lineup_1_score?: boolean | number + lineup_1_timeouts_available?: boolean | number + lineup_2_money?: boolean | number + lineup_2_score?: boolean | number + lineup_2_timeouts_available?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "match_map_rounds" */ +export interface match_map_rounds_stddev_order_by {lineup_1_money?: (order_by | null),lineup_1_score?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_money?: (order_by | null),lineup_2_score?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),round?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface match_map_rounds_stddev_pop_fieldsGenqlSelection{ + lineup_1_money?: boolean | number + lineup_1_score?: boolean | number + lineup_1_timeouts_available?: boolean | number + lineup_2_money?: boolean | number + lineup_2_score?: boolean | number + lineup_2_timeouts_available?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "match_map_rounds" */ +export interface match_map_rounds_stddev_pop_order_by {lineup_1_money?: (order_by | null),lineup_1_score?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_money?: (order_by | null),lineup_2_score?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),round?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface match_map_rounds_stddev_samp_fieldsGenqlSelection{ + lineup_1_money?: boolean | number + lineup_1_score?: boolean | number + lineup_1_timeouts_available?: boolean | number + lineup_2_money?: boolean | number + lineup_2_score?: boolean | number + lineup_2_timeouts_available?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "match_map_rounds" */ +export interface match_map_rounds_stddev_samp_order_by {lineup_1_money?: (order_by | null),lineup_1_score?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_money?: (order_by | null),lineup_2_score?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),round?: (order_by | null)} + + +/** Streaming cursor of the table "match_map_rounds" */ +export interface match_map_rounds_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: match_map_rounds_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface match_map_rounds_stream_cursor_value_input {backup_file?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),deleted_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),lineup_1_money?: (Scalars['Int'] | null),lineup_1_score?: (Scalars['Int'] | null),lineup_1_side?: (e_sides_enum | null),lineup_1_timeouts_available?: (Scalars['Int'] | null),lineup_2_money?: (Scalars['Int'] | null),lineup_2_score?: (Scalars['Int'] | null),lineup_2_side?: (e_sides_enum | null),lineup_2_timeouts_available?: (Scalars['Int'] | null),match_map_id?: (Scalars['uuid'] | null),round?: (Scalars['Int'] | null),time?: (Scalars['timestamptz'] | null),winning_reason?: (e_winning_reasons_enum | null),winning_side?: (Scalars['String'] | null)} + + +/** aggregate sum on columns */ +export interface match_map_rounds_sum_fieldsGenqlSelection{ + lineup_1_money?: boolean | number + lineup_1_score?: boolean | number + lineup_1_timeouts_available?: boolean | number + lineup_2_money?: boolean | number + lineup_2_score?: boolean | number + lineup_2_timeouts_available?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "match_map_rounds" */ +export interface match_map_rounds_sum_order_by {lineup_1_money?: (order_by | null),lineup_1_score?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_money?: (order_by | null),lineup_2_score?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),round?: (order_by | null)} + +export interface match_map_rounds_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (match_map_rounds_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (match_map_rounds_set_input | null), +/** filter the rows which have to be updated */ +where: match_map_rounds_bool_exp} + + +/** aggregate var_pop on columns */ +export interface match_map_rounds_var_pop_fieldsGenqlSelection{ + lineup_1_money?: boolean | number + lineup_1_score?: boolean | number + lineup_1_timeouts_available?: boolean | number + lineup_2_money?: boolean | number + lineup_2_score?: boolean | number + lineup_2_timeouts_available?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "match_map_rounds" */ +export interface match_map_rounds_var_pop_order_by {lineup_1_money?: (order_by | null),lineup_1_score?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_money?: (order_by | null),lineup_2_score?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),round?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface match_map_rounds_var_samp_fieldsGenqlSelection{ + lineup_1_money?: boolean | number + lineup_1_score?: boolean | number + lineup_1_timeouts_available?: boolean | number + lineup_2_money?: boolean | number + lineup_2_score?: boolean | number + lineup_2_timeouts_available?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "match_map_rounds" */ +export interface match_map_rounds_var_samp_order_by {lineup_1_money?: (order_by | null),lineup_1_score?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_money?: (order_by | null),lineup_2_score?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),round?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface match_map_rounds_variance_fieldsGenqlSelection{ + lineup_1_money?: boolean | number + lineup_1_score?: boolean | number + lineup_1_timeouts_available?: boolean | number + lineup_2_money?: boolean | number + lineup_2_score?: boolean | number + lineup_2_timeouts_available?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "match_map_rounds" */ +export interface match_map_rounds_variance_order_by {lineup_1_money?: (order_by | null),lineup_1_score?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_money?: (order_by | null),lineup_2_score?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),round?: (order_by | null)} + + +/** columns and relationships of "match_map_veto_picks" */ +export interface match_map_veto_picksGenqlSelection{ + auto_picked?: boolean | number + created_at?: boolean | number + id?: boolean | number + /** An object relationship */ + map?: mapsGenqlSelection + map_id?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + match_id?: boolean | number + /** An object relationship */ + match_lineup?: match_lineupsGenqlSelection + match_lineup_id?: boolean | number + side?: boolean | number + type?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "match_map_veto_picks" */ +export interface match_map_veto_picks_aggregateGenqlSelection{ + aggregate?: match_map_veto_picks_aggregate_fieldsGenqlSelection + nodes?: match_map_veto_picksGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface match_map_veto_picks_aggregate_bool_exp {bool_and?: (match_map_veto_picks_aggregate_bool_exp_bool_and | null),bool_or?: (match_map_veto_picks_aggregate_bool_exp_bool_or | null),count?: (match_map_veto_picks_aggregate_bool_exp_count | null)} + +export interface match_map_veto_picks_aggregate_bool_exp_bool_and {arguments: match_map_veto_picks_select_column_match_map_veto_picks_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (match_map_veto_picks_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface match_map_veto_picks_aggregate_bool_exp_bool_or {arguments: match_map_veto_picks_select_column_match_map_veto_picks_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (match_map_veto_picks_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface match_map_veto_picks_aggregate_bool_exp_count {arguments?: (match_map_veto_picks_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (match_map_veto_picks_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "match_map_veto_picks" */ +export interface match_map_veto_picks_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (match_map_veto_picks_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: match_map_veto_picks_max_fieldsGenqlSelection + min?: match_map_veto_picks_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "match_map_veto_picks" */ +export interface match_map_veto_picks_aggregate_order_by {count?: (order_by | null),max?: (match_map_veto_picks_max_order_by | null),min?: (match_map_veto_picks_min_order_by | null)} + + +/** input type for inserting array relation for remote table "match_map_veto_picks" */ +export interface match_map_veto_picks_arr_rel_insert_input {data: match_map_veto_picks_insert_input[], +/** upsert condition */ +on_conflict?: (match_map_veto_picks_on_conflict | null)} + + +/** Boolean expression to filter rows from the table "match_map_veto_picks". All fields are combined with a logical 'AND'. */ +export interface match_map_veto_picks_bool_exp {_and?: (match_map_veto_picks_bool_exp[] | null),_not?: (match_map_veto_picks_bool_exp | null),_or?: (match_map_veto_picks_bool_exp[] | null),auto_picked?: (Boolean_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),map?: (maps_bool_exp | null),map_id?: (uuid_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_lineup?: (match_lineups_bool_exp | null),match_lineup_id?: (uuid_comparison_exp | null),side?: (String_comparison_exp | null),type?: (e_veto_pick_types_enum_comparison_exp | null)} + + +/** input type for inserting data into table "match_map_veto_picks" */ +export interface match_map_veto_picks_insert_input {auto_picked?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),map?: (maps_obj_rel_insert_input | null),map_id?: (Scalars['uuid'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_lineup?: (match_lineups_obj_rel_insert_input | null),match_lineup_id?: (Scalars['uuid'] | null),side?: (Scalars['String'] | null),type?: (e_veto_pick_types_enum | null)} + + +/** aggregate max on columns */ +export interface match_map_veto_picks_max_fieldsGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + map_id?: boolean | number + match_id?: boolean | number + match_lineup_id?: boolean | number + side?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "match_map_veto_picks" */ +export interface match_map_veto_picks_max_order_by {created_at?: (order_by | null),id?: (order_by | null),map_id?: (order_by | null),match_id?: (order_by | null),match_lineup_id?: (order_by | null),side?: (order_by | null)} + + +/** aggregate min on columns */ +export interface match_map_veto_picks_min_fieldsGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + map_id?: boolean | number + match_id?: boolean | number + match_lineup_id?: boolean | number + side?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "match_map_veto_picks" */ +export interface match_map_veto_picks_min_order_by {created_at?: (order_by | null),id?: (order_by | null),map_id?: (order_by | null),match_id?: (order_by | null),match_lineup_id?: (order_by | null),side?: (order_by | null)} + + +/** response of any mutation on the table "match_map_veto_picks" */ +export interface match_map_veto_picks_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: match_map_veto_picksGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "match_map_veto_picks" */ +export interface match_map_veto_picks_on_conflict {constraint: match_map_veto_picks_constraint,update_columns?: match_map_veto_picks_update_column[],where?: (match_map_veto_picks_bool_exp | null)} + + +/** Ordering options when selecting data from "match_map_veto_picks". */ +export interface match_map_veto_picks_order_by {auto_picked?: (order_by | null),created_at?: (order_by | null),id?: (order_by | null),map?: (maps_order_by | null),map_id?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_lineup?: (match_lineups_order_by | null),match_lineup_id?: (order_by | null),side?: (order_by | null),type?: (order_by | null)} + + +/** primary key columns input for table: match_map_veto_picks */ +export interface match_map_veto_picks_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "match_map_veto_picks" */ +export interface match_map_veto_picks_set_input {auto_picked?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),map_id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),match_lineup_id?: (Scalars['uuid'] | null),side?: (Scalars['String'] | null),type?: (e_veto_pick_types_enum | null)} + + +/** Streaming cursor of the table "match_map_veto_picks" */ +export interface match_map_veto_picks_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: match_map_veto_picks_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface match_map_veto_picks_stream_cursor_value_input {auto_picked?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),map_id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),match_lineup_id?: (Scalars['uuid'] | null),side?: (Scalars['String'] | null),type?: (e_veto_pick_types_enum | null)} + +export interface match_map_veto_picks_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (match_map_veto_picks_set_input | null), +/** filter the rows which have to be updated */ +where: match_map_veto_picks_bool_exp} + + +/** columns and relationships of "match_maps" */ +export interface match_mapsGenqlSelection{ + clips_count?: boolean | number + created_at?: boolean | number + demo_processing_started_at?: boolean | number + /** An array relationship */ + demos?: (match_map_demosGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_map_demos_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_demos_order_by[] | null), + /** filter the rows returned */ + where?: (match_map_demos_bool_exp | null)} }) + /** An aggregate relationship */ + demos_aggregate?: (match_map_demos_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_map_demos_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_demos_order_by[] | null), + /** filter the rows returned */ + where?: (match_map_demos_bool_exp | null)} }) + /** A computed field, executes function "match_map_demo_download_url" */ + demos_download_url?: boolean | number + /** A computed field, executes function "match_map_demo_total_size" */ + demos_total_size?: boolean | number + /** An object relationship */ + e_match_map_status?: e_match_map_statusGenqlSelection + ended_at?: boolean | number + /** An array relationship */ + flashes?: (player_flashesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_flashes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_flashes_order_by[] | null), + /** filter the rows returned */ + where?: (player_flashes_bool_exp | null)} }) + /** An aggregate relationship */ + flashes_aggregate?: (player_flashes_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_flashes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_flashes_order_by[] | null), + /** filter the rows returned */ + where?: (player_flashes_bool_exp | null)} }) + id?: boolean | number + /** A computed field, executes function "is_current_match_map" */ + is_current_map?: boolean | number + latest_clip_at?: boolean | number + /** A computed field, executes function "lineup_1_score" */ + lineup_1_score?: boolean | number + lineup_1_side?: boolean | number + lineup_1_timeouts_available?: boolean | number + /** A computed field, executes function "lineup_2_score" */ + lineup_2_score?: boolean | number + lineup_2_side?: boolean | number + lineup_2_timeouts_available?: boolean | number + /** An object relationship */ + map?: mapsGenqlSelection + map_id?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + /** 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)} }) + match_id?: boolean | number + /** An array relationship */ + 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 */ + 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)} }) + order?: boolean | number + /** An array relationship */ + player_assists?: (player_assistsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_assists_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_assists_order_by[] | null), + /** filter the rows returned */ + where?: (player_assists_bool_exp | null)} }) + /** An aggregate relationship */ + player_assists_aggregate?: (player_assists_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_assists_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_assists_order_by[] | null), + /** filter the rows returned */ + where?: (player_assists_bool_exp | null)} }) + /** An array relationship */ + player_damages?: (player_damagesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_damages_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_damages_order_by[] | null), + /** filter the rows returned */ + where?: (player_damages_bool_exp | null)} }) + /** An aggregate relationship */ + player_damages_aggregate?: (player_damages_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_damages_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_damages_order_by[] | null), + /** filter the rows returned */ + where?: (player_damages_bool_exp | null)} }) + /** An array relationship */ + player_kills?: (player_killsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_kills_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_kills_order_by[] | null), + /** filter the rows returned */ + where?: (player_kills_bool_exp | null)} }) + /** An aggregate relationship */ + player_kills_aggregate?: (player_kills_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_kills_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_kills_order_by[] | null), + /** filter the rows returned */ + where?: (player_kills_bool_exp | null)} }) + /** An array relationship */ + player_unused_utilities?: (player_unused_utilityGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_unused_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_unused_utility_order_by[] | null), + /** filter the rows returned */ + where?: (player_unused_utility_bool_exp | null)} }) + /** An aggregate relationship */ + player_unused_utilities_aggregate?: (player_unused_utility_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_unused_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_unused_utility_order_by[] | null), + /** filter the rows returned */ + where?: (player_unused_utility_bool_exp | null)} }) + public_clips_count?: boolean | number + public_latest_clip_at?: boolean | number + /** An array relationship */ + rounds?: (match_map_roundsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_map_rounds_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_rounds_order_by[] | null), + /** filter the rows returned */ + where?: (match_map_rounds_bool_exp | null)} }) + /** An aggregate relationship */ + rounds_aggregate?: (match_map_rounds_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_map_rounds_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_rounds_order_by[] | null), + /** filter the rows returned */ + where?: (match_map_rounds_bool_exp | null)} }) + started_at?: boolean | number + status?: boolean | number + /** An array relationship */ + utility?: (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 */ + utility_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)} }) + /** An array relationship */ + vetos?: (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 */ + vetos_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)} }) + winning_lineup_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "match_maps" */ +export interface match_maps_aggregateGenqlSelection{ + aggregate?: match_maps_aggregate_fieldsGenqlSelection + nodes?: match_mapsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface match_maps_aggregate_bool_exp {count?: (match_maps_aggregate_bool_exp_count | null)} + +export interface match_maps_aggregate_bool_exp_count {arguments?: (match_maps_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (match_maps_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "match_maps" */ +export interface match_maps_aggregate_fieldsGenqlSelection{ + avg?: match_maps_avg_fieldsGenqlSelection + count?: { __args: {columns?: (match_maps_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: match_maps_max_fieldsGenqlSelection + min?: match_maps_min_fieldsGenqlSelection + stddev?: match_maps_stddev_fieldsGenqlSelection + stddev_pop?: match_maps_stddev_pop_fieldsGenqlSelection + stddev_samp?: match_maps_stddev_samp_fieldsGenqlSelection + sum?: match_maps_sum_fieldsGenqlSelection + var_pop?: match_maps_var_pop_fieldsGenqlSelection + var_samp?: match_maps_var_samp_fieldsGenqlSelection + variance?: match_maps_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "match_maps" */ +export interface match_maps_aggregate_order_by {avg?: (match_maps_avg_order_by | null),count?: (order_by | null),max?: (match_maps_max_order_by | null),min?: (match_maps_min_order_by | null),stddev?: (match_maps_stddev_order_by | null),stddev_pop?: (match_maps_stddev_pop_order_by | null),stddev_samp?: (match_maps_stddev_samp_order_by | null),sum?: (match_maps_sum_order_by | null),var_pop?: (match_maps_var_pop_order_by | null),var_samp?: (match_maps_var_samp_order_by | null),variance?: (match_maps_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "match_maps" */ +export interface match_maps_arr_rel_insert_input {data: match_maps_insert_input[], +/** upsert condition */ +on_conflict?: (match_maps_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface match_maps_avg_fieldsGenqlSelection{ + clips_count?: boolean | number + /** A computed field, executes function "match_map_demo_total_size" */ + demos_total_size?: boolean | number + /** A computed field, executes function "lineup_1_score" */ + lineup_1_score?: boolean | number + lineup_1_timeouts_available?: boolean | number + /** A computed field, executes function "lineup_2_score" */ + lineup_2_score?: boolean | number + lineup_2_timeouts_available?: boolean | number + order?: boolean | number + public_clips_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "match_maps" */ +export interface match_maps_avg_order_by {clips_count?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),order?: (order_by | null),public_clips_count?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "match_maps". All fields are combined with a logical 'AND'. */ +export interface match_maps_bool_exp {_and?: (match_maps_bool_exp[] | null),_not?: (match_maps_bool_exp | null),_or?: (match_maps_bool_exp[] | null),clips_count?: (Int_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),demo_processing_started_at?: (timestamptz_comparison_exp | null),demos?: (match_map_demos_bool_exp | null),demos_aggregate?: (match_map_demos_aggregate_bool_exp | null),demos_download_url?: (String_comparison_exp | null),demos_total_size?: (Int_comparison_exp | null),e_match_map_status?: (e_match_map_status_bool_exp | null),ended_at?: (timestamptz_comparison_exp | null),flashes?: (player_flashes_bool_exp | null),flashes_aggregate?: (player_flashes_aggregate_bool_exp | null),id?: (uuid_comparison_exp | null),is_current_map?: (Boolean_comparison_exp | null),latest_clip_at?: (timestamptz_comparison_exp | null),lineup_1_score?: (Int_comparison_exp | null),lineup_1_side?: (e_sides_enum_comparison_exp | null),lineup_1_timeouts_available?: (Int_comparison_exp | null),lineup_2_score?: (Int_comparison_exp | null),lineup_2_side?: (e_sides_enum_comparison_exp | null),lineup_2_timeouts_available?: (Int_comparison_exp | null),map?: (maps_bool_exp | null),map_id?: (uuid_comparison_exp | null),match?: (matches_bool_exp | null),match_clips?: (match_clips_bool_exp | null),match_clips_aggregate?: (match_clips_aggregate_bool_exp | null),match_id?: (uuid_comparison_exp | null),objectives?: (player_objectives_bool_exp | null),objectives_aggregate?: (player_objectives_aggregate_bool_exp | null),order?: (Int_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_kills?: (player_kills_bool_exp | null),player_kills_aggregate?: (player_kills_aggregate_bool_exp | null),player_unused_utilities?: (player_unused_utility_bool_exp | null),player_unused_utilities_aggregate?: (player_unused_utility_aggregate_bool_exp | null),public_clips_count?: (Int_comparison_exp | null),public_latest_clip_at?: (timestamptz_comparison_exp | null),rounds?: (match_map_rounds_bool_exp | null),rounds_aggregate?: (match_map_rounds_aggregate_bool_exp | null),started_at?: (timestamptz_comparison_exp | null),status?: (e_match_map_status_enum_comparison_exp | null),utility?: (player_utility_bool_exp | null),utility_aggregate?: (player_utility_aggregate_bool_exp | null),vetos?: (match_map_veto_picks_bool_exp | null),vetos_aggregate?: (match_map_veto_picks_aggregate_bool_exp | null),winning_lineup_id?: (uuid_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "match_maps" */ +export interface match_maps_inc_input {clips_count?: (Scalars['Int'] | null),lineup_1_timeouts_available?: (Scalars['Int'] | null),lineup_2_timeouts_available?: (Scalars['Int'] | null),order?: (Scalars['Int'] | null),public_clips_count?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "match_maps" */ +export interface match_maps_insert_input {clips_count?: (Scalars['Int'] | null),created_at?: (Scalars['timestamptz'] | null),demo_processing_started_at?: (Scalars['timestamptz'] | null),demos?: (match_map_demos_arr_rel_insert_input | null),e_match_map_status?: (e_match_map_status_obj_rel_insert_input | null),ended_at?: (Scalars['timestamptz'] | null),flashes?: (player_flashes_arr_rel_insert_input | null),id?: (Scalars['uuid'] | null),latest_clip_at?: (Scalars['timestamptz'] | null),lineup_1_side?: (e_sides_enum | null),lineup_1_timeouts_available?: (Scalars['Int'] | null),lineup_2_side?: (e_sides_enum | null),lineup_2_timeouts_available?: (Scalars['Int'] | null),map?: (maps_obj_rel_insert_input | null),map_id?: (Scalars['uuid'] | null),match?: (matches_obj_rel_insert_input | null),match_clips?: (match_clips_arr_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),objectives?: (player_objectives_arr_rel_insert_input | null),order?: (Scalars['Int'] | null),player_assists?: (player_assists_arr_rel_insert_input | null),player_damages?: (player_damages_arr_rel_insert_input | null),player_kills?: (player_kills_arr_rel_insert_input | null),player_unused_utilities?: (player_unused_utility_arr_rel_insert_input | null),public_clips_count?: (Scalars['Int'] | null),public_latest_clip_at?: (Scalars['timestamptz'] | null),rounds?: (match_map_rounds_arr_rel_insert_input | null),started_at?: (Scalars['timestamptz'] | null),status?: (e_match_map_status_enum | null),utility?: (player_utility_arr_rel_insert_input | null),vetos?: (match_map_veto_picks_arr_rel_insert_input | null),winning_lineup_id?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface match_maps_max_fieldsGenqlSelection{ + clips_count?: boolean | number + created_at?: boolean | number + demo_processing_started_at?: boolean | number + /** A computed field, executes function "match_map_demo_download_url" */ + demos_download_url?: boolean | number + /** A computed field, executes function "match_map_demo_total_size" */ + demos_total_size?: boolean | number + ended_at?: boolean | number + id?: boolean | number + latest_clip_at?: boolean | number + /** A computed field, executes function "lineup_1_score" */ + lineup_1_score?: boolean | number + lineup_1_timeouts_available?: boolean | number + /** A computed field, executes function "lineup_2_score" */ + lineup_2_score?: boolean | number + lineup_2_timeouts_available?: boolean | number + map_id?: boolean | number + match_id?: boolean | number + order?: boolean | number + public_clips_count?: boolean | number + public_latest_clip_at?: boolean | number + started_at?: boolean | number + winning_lineup_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "match_maps" */ +export interface match_maps_max_order_by {clips_count?: (order_by | null),created_at?: (order_by | null),demo_processing_started_at?: (order_by | null),ended_at?: (order_by | null),id?: (order_by | null),latest_clip_at?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),map_id?: (order_by | null),match_id?: (order_by | null),order?: (order_by | null),public_clips_count?: (order_by | null),public_latest_clip_at?: (order_by | null),started_at?: (order_by | null),winning_lineup_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface match_maps_min_fieldsGenqlSelection{ + clips_count?: boolean | number + created_at?: boolean | number + demo_processing_started_at?: boolean | number + /** A computed field, executes function "match_map_demo_download_url" */ + demos_download_url?: boolean | number + /** A computed field, executes function "match_map_demo_total_size" */ + demos_total_size?: boolean | number + ended_at?: boolean | number + id?: boolean | number + latest_clip_at?: boolean | number + /** A computed field, executes function "lineup_1_score" */ + lineup_1_score?: boolean | number + lineup_1_timeouts_available?: boolean | number + /** A computed field, executes function "lineup_2_score" */ + lineup_2_score?: boolean | number + lineup_2_timeouts_available?: boolean | number + map_id?: boolean | number + match_id?: boolean | number + order?: boolean | number + public_clips_count?: boolean | number + public_latest_clip_at?: boolean | number + started_at?: boolean | number + winning_lineup_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "match_maps" */ +export interface match_maps_min_order_by {clips_count?: (order_by | null),created_at?: (order_by | null),demo_processing_started_at?: (order_by | null),ended_at?: (order_by | null),id?: (order_by | null),latest_clip_at?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),map_id?: (order_by | null),match_id?: (order_by | null),order?: (order_by | null),public_clips_count?: (order_by | null),public_latest_clip_at?: (order_by | null),started_at?: (order_by | null),winning_lineup_id?: (order_by | null)} + + +/** response of any mutation on the table "match_maps" */ +export interface match_maps_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: match_mapsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "match_maps" */ +export interface match_maps_obj_rel_insert_input {data: match_maps_insert_input, +/** upsert condition */ +on_conflict?: (match_maps_on_conflict | null)} + + +/** on_conflict condition type for table "match_maps" */ +export interface match_maps_on_conflict {constraint: match_maps_constraint,update_columns?: match_maps_update_column[],where?: (match_maps_bool_exp | null)} + + +/** Ordering options when selecting data from "match_maps". */ +export interface match_maps_order_by {clips_count?: (order_by | null),created_at?: (order_by | null),demo_processing_started_at?: (order_by | null),demos_aggregate?: (match_map_demos_aggregate_order_by | null),demos_download_url?: (order_by | null),demos_total_size?: (order_by | null),e_match_map_status?: (e_match_map_status_order_by | null),ended_at?: (order_by | null),flashes_aggregate?: (player_flashes_aggregate_order_by | null),id?: (order_by | null),is_current_map?: (order_by | null),latest_clip_at?: (order_by | null),lineup_1_score?: (order_by | null),lineup_1_side?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_score?: (order_by | null),lineup_2_side?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),map?: (maps_order_by | null),map_id?: (order_by | null),match?: (matches_order_by | null),match_clips_aggregate?: (match_clips_aggregate_order_by | null),match_id?: (order_by | null),objectives_aggregate?: (player_objectives_aggregate_order_by | null),order?: (order_by | null),player_assists_aggregate?: (player_assists_aggregate_order_by | null),player_damages_aggregate?: (player_damages_aggregate_order_by | null),player_kills_aggregate?: (player_kills_aggregate_order_by | null),player_unused_utilities_aggregate?: (player_unused_utility_aggregate_order_by | null),public_clips_count?: (order_by | null),public_latest_clip_at?: (order_by | null),rounds_aggregate?: (match_map_rounds_aggregate_order_by | null),started_at?: (order_by | null),status?: (order_by | null),utility_aggregate?: (player_utility_aggregate_order_by | null),vetos_aggregate?: (match_map_veto_picks_aggregate_order_by | null),winning_lineup_id?: (order_by | null)} + + +/** primary key columns input for table: match_maps */ +export interface match_maps_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "match_maps" */ +export interface match_maps_set_input {clips_count?: (Scalars['Int'] | null),created_at?: (Scalars['timestamptz'] | null),demo_processing_started_at?: (Scalars['timestamptz'] | null),ended_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),latest_clip_at?: (Scalars['timestamptz'] | null),lineup_1_side?: (e_sides_enum | null),lineup_1_timeouts_available?: (Scalars['Int'] | null),lineup_2_side?: (e_sides_enum | 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),status?: (e_match_map_status_enum | null),winning_lineup_id?: (Scalars['uuid'] | null)} + + +/** aggregate stddev on columns */ +export interface match_maps_stddev_fieldsGenqlSelection{ + clips_count?: boolean | number + /** A computed field, executes function "match_map_demo_total_size" */ + demos_total_size?: boolean | number + /** A computed field, executes function "lineup_1_score" */ + lineup_1_score?: boolean | number + lineup_1_timeouts_available?: boolean | number + /** A computed field, executes function "lineup_2_score" */ + lineup_2_score?: boolean | number + lineup_2_timeouts_available?: boolean | number + order?: boolean | number + public_clips_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "match_maps" */ +export interface match_maps_stddev_order_by {clips_count?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),order?: (order_by | null),public_clips_count?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface match_maps_stddev_pop_fieldsGenqlSelection{ + clips_count?: boolean | number + /** A computed field, executes function "match_map_demo_total_size" */ + demos_total_size?: boolean | number + /** A computed field, executes function "lineup_1_score" */ + lineup_1_score?: boolean | number + lineup_1_timeouts_available?: boolean | number + /** A computed field, executes function "lineup_2_score" */ + lineup_2_score?: boolean | number + lineup_2_timeouts_available?: boolean | number + order?: boolean | number + public_clips_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "match_maps" */ +export interface match_maps_stddev_pop_order_by {clips_count?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),order?: (order_by | null),public_clips_count?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface match_maps_stddev_samp_fieldsGenqlSelection{ + clips_count?: boolean | number + /** A computed field, executes function "match_map_demo_total_size" */ + demos_total_size?: boolean | number + /** A computed field, executes function "lineup_1_score" */ + lineup_1_score?: boolean | number + lineup_1_timeouts_available?: boolean | number + /** A computed field, executes function "lineup_2_score" */ + lineup_2_score?: boolean | number + lineup_2_timeouts_available?: boolean | number + order?: boolean | number + public_clips_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "match_maps" */ +export interface match_maps_stddev_samp_order_by {clips_count?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),order?: (order_by | null),public_clips_count?: (order_by | null)} + + +/** Streaming cursor of the table "match_maps" */ +export interface match_maps_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: match_maps_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface match_maps_stream_cursor_value_input {clips_count?: (Scalars['Int'] | null),created_at?: (Scalars['timestamptz'] | null),demo_processing_started_at?: (Scalars['timestamptz'] | null),ended_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),latest_clip_at?: (Scalars['timestamptz'] | null),lineup_1_side?: (e_sides_enum | null),lineup_1_timeouts_available?: (Scalars['Int'] | null),lineup_2_side?: (e_sides_enum | 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),status?: (e_match_map_status_enum | null),winning_lineup_id?: (Scalars['uuid'] | null)} + + +/** aggregate sum on columns */ +export interface match_maps_sum_fieldsGenqlSelection{ + clips_count?: boolean | number + /** A computed field, executes function "match_map_demo_total_size" */ + demos_total_size?: boolean | number + /** A computed field, executes function "lineup_1_score" */ + lineup_1_score?: boolean | number + lineup_1_timeouts_available?: boolean | number + /** A computed field, executes function "lineup_2_score" */ + lineup_2_score?: boolean | number + lineup_2_timeouts_available?: boolean | number + order?: boolean | number + public_clips_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "match_maps" */ +export interface match_maps_sum_order_by {clips_count?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),order?: (order_by | null),public_clips_count?: (order_by | null)} + +export interface match_maps_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (match_maps_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (match_maps_set_input | null), +/** filter the rows which have to be updated */ +where: match_maps_bool_exp} + + +/** aggregate var_pop on columns */ +export interface match_maps_var_pop_fieldsGenqlSelection{ + clips_count?: boolean | number + /** A computed field, executes function "match_map_demo_total_size" */ + demos_total_size?: boolean | number + /** A computed field, executes function "lineup_1_score" */ + lineup_1_score?: boolean | number + lineup_1_timeouts_available?: boolean | number + /** A computed field, executes function "lineup_2_score" */ + lineup_2_score?: boolean | number + lineup_2_timeouts_available?: boolean | number + order?: boolean | number + public_clips_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "match_maps" */ +export interface match_maps_var_pop_order_by {clips_count?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),order?: (order_by | null),public_clips_count?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface match_maps_var_samp_fieldsGenqlSelection{ + clips_count?: boolean | number + /** A computed field, executes function "match_map_demo_total_size" */ + demos_total_size?: boolean | number + /** A computed field, executes function "lineup_1_score" */ + lineup_1_score?: boolean | number + lineup_1_timeouts_available?: boolean | number + /** A computed field, executes function "lineup_2_score" */ + lineup_2_score?: boolean | number + lineup_2_timeouts_available?: boolean | number + order?: boolean | number + public_clips_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "match_maps" */ +export interface match_maps_var_samp_order_by {clips_count?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),order?: (order_by | null),public_clips_count?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface match_maps_variance_fieldsGenqlSelection{ + clips_count?: boolean | number + /** A computed field, executes function "match_map_demo_total_size" */ + demos_total_size?: boolean | number + /** A computed field, executes function "lineup_1_score" */ + lineup_1_score?: boolean | number + lineup_1_timeouts_available?: boolean | number + /** A computed field, executes function "lineup_2_score" */ + lineup_2_score?: boolean | number + lineup_2_timeouts_available?: boolean | number + order?: boolean | number + public_clips_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "match_maps" */ +export interface match_maps_variance_order_by {clips_count?: (order_by | null),lineup_1_timeouts_available?: (order_by | null),lineup_2_timeouts_available?: (order_by | null),order?: (order_by | null),public_clips_count?: (order_by | null)} + + +/** columns and relationships of "match_options" */ +export interface match_optionsGenqlSelection{ + auto_cancel_duration?: boolean | number + auto_cancellation?: boolean | number + best_of?: boolean | number + camera_allow_teammates?: boolean | number + camera_required?: boolean | number + 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 + id?: boolean | number + invite_code?: boolean | number + knife_round?: boolean | number + live_match_timeout?: boolean | number + /** An object relationship */ + map_pool?: map_poolsGenqlSelection + map_pool_id?: boolean | number + map_veto?: boolean | number + match_mode?: 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)} }) + mr?: boolean | number + number_of_substitutes?: boolean | number + overtime?: boolean | number + prefer_dedicated_server?: boolean | number + ready_setting?: boolean | number + region_veto?: boolean | number + regions?: boolean | number + round_restart_delay?: boolean | number + tech_timeout_setting?: boolean | number + timeout_setting?: boolean | number + /** An object relationship */ + tournament?: tournamentsGenqlSelection + /** An object relationship */ + tournament_bracket?: tournament_bracketsGenqlSelection + /** An object relationship */ + tournament_stage?: tournament_stagesGenqlSelection + tv_delay?: boolean | number + type?: boolean | number + veto_pick_timeout?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "match_options" */ +export interface match_options_aggregateGenqlSelection{ + aggregate?: match_options_aggregate_fieldsGenqlSelection + nodes?: match_optionsGenqlSelection + __typename?: boolean | number + __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{ + avg?: match_options_avg_fieldsGenqlSelection + count?: { __args: {columns?: (match_options_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: match_options_max_fieldsGenqlSelection + min?: match_options_min_fieldsGenqlSelection + stddev?: match_options_stddev_fieldsGenqlSelection + stddev_pop?: match_options_stddev_pop_fieldsGenqlSelection + stddev_samp?: match_options_stddev_samp_fieldsGenqlSelection + sum?: match_options_sum_fieldsGenqlSelection + var_pop?: match_options_var_pop_fieldsGenqlSelection + var_samp?: match_options_var_samp_fieldsGenqlSelection + variance?: match_options_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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 + best_of?: boolean | number + live_match_timeout?: boolean | number + mr?: boolean | number + number_of_substitutes?: boolean | number + round_restart_delay?: boolean | number + tv_delay?: boolean | number + veto_pick_timeout?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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),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" */ +export interface match_options_inc_input {auto_cancel_duration?: (Scalars['Int'] | null),best_of?: (Scalars['Int'] | null),live_match_timeout?: (Scalars['Int'] | null),mr?: (Scalars['Int'] | null),number_of_substitutes?: (Scalars['Int'] | null),round_restart_delay?: (Scalars['Int'] | null),tv_delay?: (Scalars['Int'] | null),veto_pick_timeout?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "match_options" */ +export interface match_options_insert_input {auto_cancel_duration?: (Scalars['Int'] | null),auto_cancellation?: (Scalars['Boolean'] | null),best_of?: (Scalars['Int'] | null),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 + map_pool_id?: boolean | number + mr?: boolean | number + number_of_substitutes?: boolean | number + regions?: boolean | number + round_restart_delay?: boolean | number + tv_delay?: boolean | number + veto_pick_timeout?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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 + map_pool_id?: boolean | number + mr?: boolean | number + number_of_substitutes?: boolean | number + regions?: boolean | number + round_restart_delay?: boolean | number + tv_delay?: boolean | number + veto_pick_timeout?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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 */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: match_optionsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "match_options" */ +export interface match_options_obj_rel_insert_input {data: match_options_insert_input, +/** upsert condition */ +on_conflict?: (match_options_on_conflict | null)} + + +/** on_conflict condition type for table "match_options" */ +export interface match_options_on_conflict {constraint: match_options_constraint,update_columns?: match_options_update_column[],where?: (match_options_bool_exp | null)} + + +/** 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),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 */ +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),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 */ +export interface match_options_stddev_fieldsGenqlSelection{ + auto_cancel_duration?: boolean | number + best_of?: boolean | number + live_match_timeout?: boolean | number + mr?: boolean | number + number_of_substitutes?: boolean | number + round_restart_delay?: boolean | number + tv_delay?: boolean | number + veto_pick_timeout?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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 + best_of?: boolean | number + live_match_timeout?: boolean | number + mr?: boolean | number + number_of_substitutes?: boolean | number + round_restart_delay?: boolean | number + tv_delay?: boolean | number + veto_pick_timeout?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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 + best_of?: boolean | number + live_match_timeout?: boolean | number + mr?: boolean | number + number_of_substitutes?: boolean | number + round_restart_delay?: boolean | number + tv_delay?: boolean | number + veto_pick_timeout?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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 */ +initial_value: match_options_stream_cursor_value_input, +/** cursor ordering */ +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),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 */ +export interface match_options_sum_fieldsGenqlSelection{ + auto_cancel_duration?: boolean | number + best_of?: boolean | number + live_match_timeout?: boolean | number + mr?: boolean | number + number_of_substitutes?: boolean | number + round_restart_delay?: boolean | number + tv_delay?: boolean | number + veto_pick_timeout?: boolean | number + __typename?: boolean | number + __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), +/** sets the columns of the filtered rows to the given values */ +_set?: (match_options_set_input | null), +/** filter the rows which have to be updated */ +where: match_options_bool_exp} + + +/** aggregate var_pop on columns */ +export interface match_options_var_pop_fieldsGenqlSelection{ + auto_cancel_duration?: boolean | number + best_of?: boolean | number + live_match_timeout?: boolean | number + mr?: boolean | number + number_of_substitutes?: boolean | number + round_restart_delay?: boolean | number + tv_delay?: boolean | number + veto_pick_timeout?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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 + best_of?: boolean | number + live_match_timeout?: boolean | number + mr?: boolean | number + number_of_substitutes?: boolean | number + round_restart_delay?: boolean | number + tv_delay?: boolean | number + veto_pick_timeout?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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 + best_of?: boolean | number + live_match_timeout?: boolean | number + mr?: boolean | number + number_of_substitutes?: boolean | number + round_restart_delay?: boolean | number + tv_delay?: boolean | number + veto_pick_timeout?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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 + created_at?: boolean | number + id?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + match_id?: boolean | number + /** An object relationship */ + match_lineup?: match_lineupsGenqlSelection + match_lineup_id?: boolean | number + region?: boolean | number + type?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "match_region_veto_picks" */ +export interface match_region_veto_picks_aggregateGenqlSelection{ + aggregate?: match_region_veto_picks_aggregate_fieldsGenqlSelection + nodes?: match_region_veto_picksGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface match_region_veto_picks_aggregate_bool_exp {bool_and?: (match_region_veto_picks_aggregate_bool_exp_bool_and | null),bool_or?: (match_region_veto_picks_aggregate_bool_exp_bool_or | null),count?: (match_region_veto_picks_aggregate_bool_exp_count | null)} + +export interface match_region_veto_picks_aggregate_bool_exp_bool_and {arguments: match_region_veto_picks_select_column_match_region_veto_picks_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (match_region_veto_picks_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface match_region_veto_picks_aggregate_bool_exp_bool_or {arguments: match_region_veto_picks_select_column_match_region_veto_picks_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (match_region_veto_picks_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface match_region_veto_picks_aggregate_bool_exp_count {arguments?: (match_region_veto_picks_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (match_region_veto_picks_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "match_region_veto_picks" */ +export interface match_region_veto_picks_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (match_region_veto_picks_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: match_region_veto_picks_max_fieldsGenqlSelection + min?: match_region_veto_picks_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "match_region_veto_picks" */ +export interface match_region_veto_picks_aggregate_order_by {count?: (order_by | null),max?: (match_region_veto_picks_max_order_by | null),min?: (match_region_veto_picks_min_order_by | null)} + + +/** input type for inserting array relation for remote table "match_region_veto_picks" */ +export interface match_region_veto_picks_arr_rel_insert_input {data: match_region_veto_picks_insert_input[], +/** upsert condition */ +on_conflict?: (match_region_veto_picks_on_conflict | null)} + + +/** Boolean expression to filter rows from the table "match_region_veto_picks". All fields are combined with a logical 'AND'. */ +export interface match_region_veto_picks_bool_exp {_and?: (match_region_veto_picks_bool_exp[] | null),_not?: (match_region_veto_picks_bool_exp | null),_or?: (match_region_veto_picks_bool_exp[] | null),auto_picked?: (Boolean_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_lineup?: (match_lineups_bool_exp | null),match_lineup_id?: (uuid_comparison_exp | null),region?: (String_comparison_exp | null),type?: (e_veto_pick_types_enum_comparison_exp | null)} + + +/** input type for inserting data into table "match_region_veto_picks" */ +export interface match_region_veto_picks_insert_input {auto_picked?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_lineup?: (match_lineups_obj_rel_insert_input | null),match_lineup_id?: (Scalars['uuid'] | null),region?: (Scalars['String'] | null),type?: (e_veto_pick_types_enum | null)} + + +/** aggregate max on columns */ +export interface match_region_veto_picks_max_fieldsGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + match_id?: boolean | number + match_lineup_id?: boolean | number + region?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "match_region_veto_picks" */ +export interface match_region_veto_picks_max_order_by {created_at?: (order_by | null),id?: (order_by | null),match_id?: (order_by | null),match_lineup_id?: (order_by | null),region?: (order_by | null)} + + +/** aggregate min on columns */ +export interface match_region_veto_picks_min_fieldsGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + match_id?: boolean | number + match_lineup_id?: boolean | number + region?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "match_region_veto_picks" */ +export interface match_region_veto_picks_min_order_by {created_at?: (order_by | null),id?: (order_by | null),match_id?: (order_by | null),match_lineup_id?: (order_by | null),region?: (order_by | null)} + + +/** response of any mutation on the table "match_region_veto_picks" */ +export interface match_region_veto_picks_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: match_region_veto_picksGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "match_region_veto_picks" */ +export interface match_region_veto_picks_on_conflict {constraint: match_region_veto_picks_constraint,update_columns?: match_region_veto_picks_update_column[],where?: (match_region_veto_picks_bool_exp | null)} + + +/** Ordering options when selecting data from "match_region_veto_picks". */ +export interface match_region_veto_picks_order_by {auto_picked?: (order_by | null),created_at?: (order_by | null),id?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_lineup?: (match_lineups_order_by | null),match_lineup_id?: (order_by | null),region?: (order_by | null),type?: (order_by | null)} + + +/** primary key columns input for table: match_region_veto_picks */ +export interface match_region_veto_picks_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "match_region_veto_picks" */ +export interface match_region_veto_picks_set_input {auto_picked?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),match_lineup_id?: (Scalars['uuid'] | null),region?: (Scalars['String'] | null),type?: (e_veto_pick_types_enum | null)} + + +/** Streaming cursor of the table "match_region_veto_picks" */ +export interface match_region_veto_picks_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: match_region_veto_picks_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface match_region_veto_picks_stream_cursor_value_input {auto_picked?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),match_lineup_id?: (Scalars['uuid'] | null),region?: (Scalars['String'] | null),type?: (e_veto_pick_types_enum | null)} + +export interface match_region_veto_picks_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (match_region_veto_picks_set_input | null), +/** filter the rows which have to be updated */ +where: match_region_veto_picks_bool_exp} + + +/** columns and relationships of "match_streams" */ +export interface match_streamsGenqlSelection{ + autodirector?: boolean | number + error_message?: boolean | number + /** An object relationship */ + game_server_node?: game_server_nodesGenqlSelection + game_server_node_id?: boolean | number + id?: boolean | number + is_game_streamer?: boolean | number + is_live?: boolean | number + k8s_service_name?: boolean | number + last_status_at?: boolean | number + link?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + match_id?: boolean | number + mode?: boolean | number + priority?: boolean | number + status?: boolean | number + status_history?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number + stream_url?: boolean | number + title?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "match_streams" */ +export interface match_streams_aggregateGenqlSelection{ + aggregate?: match_streams_aggregate_fieldsGenqlSelection + nodes?: match_streamsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface match_streams_aggregate_bool_exp {bool_and?: (match_streams_aggregate_bool_exp_bool_and | null),bool_or?: (match_streams_aggregate_bool_exp_bool_or | null),count?: (match_streams_aggregate_bool_exp_count | null)} + +export interface match_streams_aggregate_bool_exp_bool_and {arguments: match_streams_select_column_match_streams_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (match_streams_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface match_streams_aggregate_bool_exp_bool_or {arguments: match_streams_select_column_match_streams_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (match_streams_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface match_streams_aggregate_bool_exp_count {arguments?: (match_streams_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (match_streams_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "match_streams" */ +export interface match_streams_aggregate_fieldsGenqlSelection{ + avg?: match_streams_avg_fieldsGenqlSelection + count?: { __args: {columns?: (match_streams_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: match_streams_max_fieldsGenqlSelection + min?: match_streams_min_fieldsGenqlSelection + stddev?: match_streams_stddev_fieldsGenqlSelection + stddev_pop?: match_streams_stddev_pop_fieldsGenqlSelection + stddev_samp?: match_streams_stddev_samp_fieldsGenqlSelection + sum?: match_streams_sum_fieldsGenqlSelection + var_pop?: match_streams_var_pop_fieldsGenqlSelection + var_samp?: match_streams_var_samp_fieldsGenqlSelection + variance?: match_streams_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "match_streams" */ +export interface match_streams_aggregate_order_by {avg?: (match_streams_avg_order_by | null),count?: (order_by | null),max?: (match_streams_max_order_by | null),min?: (match_streams_min_order_by | null),stddev?: (match_streams_stddev_order_by | null),stddev_pop?: (match_streams_stddev_pop_order_by | null),stddev_samp?: (match_streams_stddev_samp_order_by | null),sum?: (match_streams_sum_order_by | null),var_pop?: (match_streams_var_pop_order_by | null),var_samp?: (match_streams_var_samp_order_by | null),variance?: (match_streams_variance_order_by | null)} + + +/** append existing jsonb value of filtered columns with new jsonb value */ +export interface match_streams_append_input {status_history?: (Scalars['jsonb'] | null)} + + +/** input type for inserting array relation for remote table "match_streams" */ +export interface match_streams_arr_rel_insert_input {data: match_streams_insert_input[], +/** upsert condition */ +on_conflict?: (match_streams_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface match_streams_avg_fieldsGenqlSelection{ + priority?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "match_streams" */ +export interface match_streams_avg_order_by {priority?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "match_streams". All fields are combined with a logical 'AND'. */ +export interface match_streams_bool_exp {_and?: (match_streams_bool_exp[] | null),_not?: (match_streams_bool_exp | null),_or?: (match_streams_bool_exp[] | null),autodirector?: (Boolean_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),is_game_streamer?: (Boolean_comparison_exp | null),is_live?: (Boolean_comparison_exp | null),k8s_service_name?: (String_comparison_exp | null),last_status_at?: (timestamptz_comparison_exp | null),link?: (String_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),mode?: (String_comparison_exp | null),priority?: (Int_comparison_exp | null),status?: (String_comparison_exp | null),status_history?: (jsonb_comparison_exp | null),stream_url?: (String_comparison_exp | null),title?: (String_comparison_exp | null)} + + +/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ +export interface match_streams_delete_at_path_input {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 match_streams_delete_elem_input {status_history?: (Scalars['Int'] | null)} + + +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +export interface match_streams_delete_key_input {status_history?: (Scalars['String'] | null)} + + +/** input type for incrementing numeric columns in table "match_streams" */ +export interface match_streams_inc_input {priority?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "match_streams" */ +export interface match_streams_insert_input {autodirector?: (Scalars['Boolean'] | 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),is_game_streamer?: (Scalars['Boolean'] | null),is_live?: (Scalars['Boolean'] | null),k8s_service_name?: (Scalars['String'] | null),last_status_at?: (Scalars['timestamptz'] | null),link?: (Scalars['String'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),mode?: (Scalars['String'] | null),priority?: (Scalars['Int'] | null),status?: (Scalars['String'] | null),status_history?: (Scalars['jsonb'] | null),stream_url?: (Scalars['String'] | null),title?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface match_streams_max_fieldsGenqlSelection{ + error_message?: boolean | number + game_server_node_id?: boolean | number + id?: boolean | number + k8s_service_name?: boolean | number + last_status_at?: boolean | number + link?: boolean | number + match_id?: boolean | number + mode?: boolean | number + priority?: boolean | number + status?: boolean | number + stream_url?: boolean | number + title?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "match_streams" */ +export interface match_streams_max_order_by {error_message?: (order_by | null),game_server_node_id?: (order_by | null),id?: (order_by | null),k8s_service_name?: (order_by | null),last_status_at?: (order_by | null),link?: (order_by | null),match_id?: (order_by | null),mode?: (order_by | null),priority?: (order_by | null),status?: (order_by | null),stream_url?: (order_by | null),title?: (order_by | null)} + + +/** aggregate min on columns */ +export interface match_streams_min_fieldsGenqlSelection{ + error_message?: boolean | number + game_server_node_id?: boolean | number + id?: boolean | number + k8s_service_name?: boolean | number + last_status_at?: boolean | number + link?: boolean | number + match_id?: boolean | number + mode?: boolean | number + priority?: boolean | number + status?: boolean | number + stream_url?: boolean | number + title?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "match_streams" */ +export interface match_streams_min_order_by {error_message?: (order_by | null),game_server_node_id?: (order_by | null),id?: (order_by | null),k8s_service_name?: (order_by | null),last_status_at?: (order_by | null),link?: (order_by | null),match_id?: (order_by | null),mode?: (order_by | null),priority?: (order_by | null),status?: (order_by | null),stream_url?: (order_by | null),title?: (order_by | null)} + + +/** response of any mutation on the table "match_streams" */ +export interface match_streams_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: match_streamsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "match_streams" */ +export interface match_streams_on_conflict {constraint: match_streams_constraint,update_columns?: match_streams_update_column[],where?: (match_streams_bool_exp | null)} + + +/** Ordering options when selecting data from "match_streams". */ +export interface match_streams_order_by {autodirector?: (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),is_game_streamer?: (order_by | null),is_live?: (order_by | null),k8s_service_name?: (order_by | null),last_status_at?: (order_by | null),link?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),mode?: (order_by | null),priority?: (order_by | null),status?: (order_by | null),status_history?: (order_by | null),stream_url?: (order_by | null),title?: (order_by | null)} + + +/** primary key columns input for table: match_streams */ +export interface match_streams_pk_columns_input {id: Scalars['uuid']} + + +/** prepend existing jsonb value of filtered columns with new jsonb value */ +export interface match_streams_prepend_input {status_history?: (Scalars['jsonb'] | null)} + + +/** input type for updating data in table "match_streams" */ +export interface match_streams_set_input {autodirector?: (Scalars['Boolean'] | null),error_message?: (Scalars['String'] | null),game_server_node_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_game_streamer?: (Scalars['Boolean'] | null),is_live?: (Scalars['Boolean'] | 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),status_history?: (Scalars['jsonb'] | null),stream_url?: (Scalars['String'] | null),title?: (Scalars['String'] | null)} + + +/** aggregate stddev on columns */ +export interface match_streams_stddev_fieldsGenqlSelection{ + priority?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "match_streams" */ +export interface match_streams_stddev_order_by {priority?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface match_streams_stddev_pop_fieldsGenqlSelection{ + priority?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "match_streams" */ +export interface match_streams_stddev_pop_order_by {priority?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface match_streams_stddev_samp_fieldsGenqlSelection{ + priority?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "match_streams" */ +export interface match_streams_stddev_samp_order_by {priority?: (order_by | null)} + + +/** Streaming cursor of the table "match_streams" */ +export interface match_streams_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: match_streams_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface match_streams_stream_cursor_value_input {autodirector?: (Scalars['Boolean'] | null),error_message?: (Scalars['String'] | null),game_server_node_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_game_streamer?: (Scalars['Boolean'] | null),is_live?: (Scalars['Boolean'] | 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),status_history?: (Scalars['jsonb'] | null),stream_url?: (Scalars['String'] | null),title?: (Scalars['String'] | null)} + + +/** aggregate sum on columns */ +export interface match_streams_sum_fieldsGenqlSelection{ + priority?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "match_streams" */ +export interface match_streams_sum_order_by {priority?: (order_by | null)} + +export interface match_streams_updates { +/** append existing jsonb value of filtered columns with new jsonb value */ +_append?: (match_streams_append_input | null), +/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ +_delete_at_path?: (match_streams_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?: (match_streams_delete_elem_input | null), +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +_delete_key?: (match_streams_delete_key_input | null), +/** increments the numeric columns with given value of the filtered values */ +_inc?: (match_streams_inc_input | null), +/** prepend existing jsonb value of filtered columns with new jsonb value */ +_prepend?: (match_streams_prepend_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (match_streams_set_input | null), +/** filter the rows which have to be updated */ +where: match_streams_bool_exp} + + +/** aggregate var_pop on columns */ +export interface match_streams_var_pop_fieldsGenqlSelection{ + priority?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "match_streams" */ +export interface match_streams_var_pop_order_by {priority?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface match_streams_var_samp_fieldsGenqlSelection{ + priority?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "match_streams" */ +export interface match_streams_var_samp_order_by {priority?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface match_streams_variance_fieldsGenqlSelection{ + priority?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "match_streams" */ +export interface match_streams_variance_order_by {priority?: (order_by | null)} + + +/** columns and relationships of "match_type_cfgs" */ +export interface match_type_cfgsGenqlSelection{ + cfg?: boolean | number + type?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "match_type_cfgs" */ +export interface match_type_cfgs_aggregateGenqlSelection{ + aggregate?: match_type_cfgs_aggregate_fieldsGenqlSelection + nodes?: match_type_cfgsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "match_type_cfgs" */ +export interface match_type_cfgs_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (match_type_cfgs_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: match_type_cfgs_max_fieldsGenqlSelection + min?: match_type_cfgs_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "match_type_cfgs". All fields are combined with a logical 'AND'. */ +export interface match_type_cfgs_bool_exp {_and?: (match_type_cfgs_bool_exp[] | null),_not?: (match_type_cfgs_bool_exp | null),_or?: (match_type_cfgs_bool_exp[] | null),cfg?: (String_comparison_exp | null),type?: (e_game_cfg_types_enum_comparison_exp | null)} + + +/** input type for inserting data into table "match_type_cfgs" */ +export interface match_type_cfgs_insert_input {cfg?: (Scalars['String'] | null),type?: (e_game_cfg_types_enum | null)} + + +/** aggregate max on columns */ +export interface match_type_cfgs_max_fieldsGenqlSelection{ + cfg?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface match_type_cfgs_min_fieldsGenqlSelection{ + cfg?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "match_type_cfgs" */ +export interface match_type_cfgs_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: match_type_cfgsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "match_type_cfgs" */ +export interface match_type_cfgs_on_conflict {constraint: match_type_cfgs_constraint,update_columns?: match_type_cfgs_update_column[],where?: (match_type_cfgs_bool_exp | null)} + + +/** Ordering options when selecting data from "match_type_cfgs". */ +export interface match_type_cfgs_order_by {cfg?: (order_by | null),type?: (order_by | null)} + + +/** primary key columns input for table: match_type_cfgs */ +export interface match_type_cfgs_pk_columns_input {type: e_game_cfg_types_enum} + + +/** input type for updating data in table "match_type_cfgs" */ +export interface match_type_cfgs_set_input {cfg?: (Scalars['String'] | null),type?: (e_game_cfg_types_enum | null)} + + +/** Streaming cursor of the table "match_type_cfgs" */ +export interface match_type_cfgs_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: match_type_cfgs_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface match_type_cfgs_stream_cursor_value_input {cfg?: (Scalars['String'] | null),type?: (e_game_cfg_types_enum | null)} + +export interface match_type_cfgs_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (match_type_cfgs_set_input | null), +/** filter the rows which have to be updated */ +where: match_type_cfgs_bool_exp} + + +/** columns and relationships of "matches" */ +export interface matchesGenqlSelection{ + /** A computed field, executes function "can_assign_server_to_match" */ + can_assign_server?: boolean | number + /** A computed field, executes function "can_cancel_match" */ + can_cancel?: boolean | number + /** A computed field, executes function "can_check_in" */ + can_check_in?: boolean | number + /** A computed field, executes function "can_reassign_winner" */ + can_reassign_winner?: boolean | number + /** A computed field, executes function "can_schedule_match" */ + can_schedule?: boolean | number + /** A computed field, executes function "can_start_match" */ + can_start?: boolean | number + /** A computed field, executes function "can_stream_live" */ + can_stream_live?: boolean | number + /** A computed field, executes function "can_stream_tv" */ + can_stream_tv?: boolean | number + cancels_at?: boolean | number + /** An array relationship */ + clutches?: (v_match_clutchesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_match_clutches_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_clutches_order_by[] | null), + /** filter the rows returned */ + where?: (v_match_clutches_bool_exp | null)} }) + /** An aggregate relationship */ + clutches_aggregate?: (v_match_clutches_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_match_clutches_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_clutches_order_by[] | null), + /** filter the rows returned */ + where?: (v_match_clutches_bool_exp | null)} }) + /** A computed field, executes function "get_match_connection_link" */ + 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 + /** An array relationship */ + demos?: (match_map_demosGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_map_demos_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_demos_order_by[] | null), + /** filter the rows returned */ + where?: (match_map_demos_bool_exp | null)} }) + /** An aggregate relationship */ + demos_aggregate?: (match_map_demos_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_map_demos_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_demos_order_by[] | null), + /** filter the rows returned */ + where?: (match_map_demos_bool_exp | null)} }) + /** An array relationship */ + draft_games?: (draft_gamesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_games_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_games_order_by[] | null), + /** filter the rows returned */ + where?: (draft_games_bool_exp | null)} }) + /** An aggregate relationship */ + draft_games_aggregate?: (draft_games_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_games_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_games_order_by[] | null), + /** filter the rows returned */ + where?: (draft_games_bool_exp | null)} }) + /** An object relationship */ + e_match_status?: e_match_statusGenqlSelection + /** An object relationship */ + e_region?: server_regionsGenqlSelection + effective_at?: boolean | number + /** An array relationship */ + elo_changes?: (v_player_eloGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_elo_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_elo_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_elo_bool_exp | null)} }) + /** An aggregate relationship */ + elo_changes_aggregate?: (v_player_elo_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_elo_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_elo_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_elo_bool_exp | null)} }) + ended_at?: boolean | number + external_id?: boolean | number + id?: boolean | number + /** A computed field, executes function "match_invite_code" */ + invite_code?: boolean | number + /** A computed field, executes function "is_captain" */ + is_captain?: boolean | number + /** A computed field, executes function "is_coach" */ + is_coach?: boolean | number + /** A computed field, executes function "is_friend_in_match_lineup" */ + is_friend_in_match_lineup?: boolean | number + /** A computed field, executes function "is_in_lineup" */ + is_in_lineup?: boolean | number + /** A computed field, executes function "is_match_server_available" */ + is_match_server_available?: boolean | number + /** A computed field, executes function "is_match_organizer" */ + is_organizer?: boolean | number + /** A computed field, executes function "is_server_online" */ + is_server_online?: boolean | number + /** A computed field, executes function "is_tournament_match" */ + is_tournament_match?: boolean | number + label?: boolean | number + /** An object relationship */ + lineup_1?: match_lineupsGenqlSelection + lineup_1_id?: boolean | number + /** An object relationship */ + lineup_2?: match_lineupsGenqlSelection + lineup_2_id?: boolean | number + /** A computed field, executes function "get_lineup_counts" */ + lineup_counts?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number + /** A computed field, executes function "get_map_veto_picking_lineup_id" */ + map_veto_picking_lineup_id?: boolean | number + /** An array relationship */ + map_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 */ + map_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)} }) + /** A computed field, executes function "get_map_veto_type" */ + map_veto_type?: 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)} }) + match_options_id?: boolean | number + /** A computed field, executes function "match_max_players_per_lineup" */ + max_players_per_lineup?: boolean | number + /** A computed field, executes function "match_min_players_per_lineup" */ + min_players_per_lineup?: boolean | number + /** An array relationship */ + opening_duels?: (v_match_player_opening_duelsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_match_player_opening_duels_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_player_opening_duels_order_by[] | null), + /** filter the rows returned */ + where?: (v_match_player_opening_duels_bool_exp | null)} }) + /** An aggregate relationship */ + opening_duels_aggregate?: (v_match_player_opening_duels_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_match_player_opening_duels_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_player_opening_duels_order_by[] | null), + /** filter the rows returned */ + where?: (v_match_player_opening_duels_bool_exp | null)} }) + /** An object relationship */ + options?: match_optionsGenqlSelection + /** An object relationship */ + organizer?: playersGenqlSelection + organizer_steam_id?: boolean | number + password?: boolean | number + /** An array relationship */ + player_assists?: (player_assistsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_assists_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_assists_order_by[] | null), + /** filter the rows returned */ + where?: (player_assists_bool_exp | null)} }) + /** An aggregate relationship */ + player_assists_aggregate?: (player_assists_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_assists_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_assists_order_by[] | null), + /** filter the rows returned */ + where?: (player_assists_bool_exp | null)} }) + /** An array relationship */ + player_damages?: (player_damagesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_damages_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_damages_order_by[] | null), + /** filter the rows returned */ + where?: (player_damages_bool_exp | null)} }) + /** An aggregate relationship */ + player_damages_aggregate?: (player_damages_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_damages_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_damages_order_by[] | null), + /** filter the rows returned */ + where?: (player_damages_bool_exp | null)} }) + /** An array relationship */ + player_flashes?: (player_flashesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_flashes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_flashes_order_by[] | null), + /** filter the rows returned */ + where?: (player_flashes_bool_exp | null)} }) + /** An aggregate relationship */ + player_flashes_aggregate?: (player_flashes_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_flashes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_flashes_order_by[] | null), + /** filter the rows returned */ + where?: (player_flashes_bool_exp | null)} }) + /** An array relationship */ + player_kills?: (player_killsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_kills_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_kills_order_by[] | null), + /** filter the rows returned */ + where?: (player_kills_bool_exp | null)} }) + /** An aggregate relationship */ + player_kills_aggregate?: (player_kills_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_kills_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_kills_order_by[] | null), + /** filter the rows returned */ + where?: (player_kills_bool_exp | null)} }) + /** 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)} }) + /** An array relationship */ + player_unused_utilities?: (player_unused_utilityGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_unused_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_unused_utility_order_by[] | null), + /** filter the rows returned */ + where?: (player_unused_utility_bool_exp | null)} }) + /** An aggregate relationship */ + player_unused_utilities_aggregate?: (player_unused_utility_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_unused_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_unused_utility_order_by[] | null), + /** filter the rows returned */ + where?: (player_unused_utility_bool_exp | null)} }) + /** An array relationship */ + player_utility?: (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_utility_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)} }) + region?: boolean | number + /** A computed field, executes function "get_region_veto_picking_lineup_id" */ + region_veto_picking_lineup_id?: boolean | number + /** An array relationship */ + region_veto_picks?: (match_region_veto_picksGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_region_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_region_veto_picks_order_by[] | null), + /** filter the rows returned */ + where?: (match_region_veto_picks_bool_exp | null)} }) + /** An aggregate relationship */ + region_veto_picks_aggregate?: (match_region_veto_picks_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_region_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_region_veto_picks_order_by[] | null), + /** filter the rows returned */ + where?: (match_region_veto_picks_bool_exp | null)} }) + /** A computed field, executes function "match_requested_organizer" */ + requested_organizer?: boolean | number + scheduled_at?: boolean | number + /** An object relationship */ + server?: serversGenqlSelection + server_error?: boolean | number + server_id?: boolean | number + /** A computed field, executes function "get_match_server_plugin_runtime" */ + server_plugin_runtime?: boolean | number + /** A computed field, executes function "get_match_server_region" */ + server_region?: boolean | number + /** A computed field, executes function "get_match_server_type" */ + server_type?: boolean | number + share_code?: boolean | number + source?: boolean | number + started_at?: boolean | number + status?: boolean | number + /** An array relationship */ + streams?: (match_streamsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_streams_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_streams_order_by[] | null), + /** filter the rows returned */ + where?: (match_streams_bool_exp | null)} }) + /** An aggregate relationship */ + streams_aggregate?: (match_streams_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_streams_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_streams_order_by[] | null), + /** filter the rows returned */ + where?: (match_streams_bool_exp | null)} }) + /** A computed field, executes function "get_match_teams" */ + teams?: (teamsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (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?: (teams_order_by[] | null), + /** filter the rows returned */ + where?: (teams_bool_exp | null)} }) + /** An array relationship */ + tournament_brackets?: (tournament_bracketsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_brackets_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_brackets_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_brackets_bool_exp | null)} }) + /** An aggregate relationship */ + tournament_brackets_aggregate?: (tournament_brackets_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_brackets_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_brackets_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_brackets_bool_exp | null)} }) + /** A computed field, executes function "get_match_tv_connection_string" */ + tv_connection_string?: boolean | number + veto_pick_expires_at?: boolean | number + /** An object relationship */ + winner?: match_lineupsGenqlSelection + winning_lineup_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "matches" */ +export interface matches_aggregateGenqlSelection{ + aggregate?: matches_aggregate_fieldsGenqlSelection + nodes?: matchesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +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} + + +/** aggregate fields of "matches" */ +export interface matches_aggregate_fieldsGenqlSelection{ + avg?: matches_avg_fieldsGenqlSelection + count?: { __args: {columns?: (matches_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: matches_max_fieldsGenqlSelection + min?: matches_min_fieldsGenqlSelection + stddev?: matches_stddev_fieldsGenqlSelection + stddev_pop?: matches_stddev_pop_fieldsGenqlSelection + stddev_samp?: matches_stddev_samp_fieldsGenqlSelection + sum?: matches_sum_fieldsGenqlSelection + var_pop?: matches_var_pop_fieldsGenqlSelection + var_samp?: matches_var_samp_fieldsGenqlSelection + variance?: matches_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "matches" */ +export interface matches_aggregate_order_by {avg?: (matches_avg_order_by | null),count?: (order_by | null),max?: (matches_max_order_by | null),min?: (matches_min_order_by | null),stddev?: (matches_stddev_order_by | null),stddev_pop?: (matches_stddev_pop_order_by | null),stddev_samp?: (matches_stddev_samp_order_by | null),sum?: (matches_sum_order_by | null),var_pop?: (matches_var_pop_order_by | null),var_samp?: (matches_var_samp_order_by | null),variance?: (matches_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "matches" */ +export interface matches_arr_rel_insert_input {data: matches_insert_input[], +/** upsert condition */ +on_conflict?: (matches_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface matches_avg_fieldsGenqlSelection{ + /** A computed field, executes function "match_max_players_per_lineup" */ + max_players_per_lineup?: boolean | number + /** A computed field, executes function "match_min_players_per_lineup" */ + min_players_per_lineup?: boolean | number + organizer_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "matches" */ +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),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" */ +export interface matches_inc_input {organizer_steam_id?: (Scalars['bigint'] | null)} + + +/** 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),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 */ +export interface matches_max_fieldsGenqlSelection{ + cancels_at?: boolean | number + /** A computed field, executes function "get_match_connection_link" */ + connection_link?: boolean | number + /** A computed field, executes function "get_match_connection_string" */ + connection_string?: boolean | number + created_at?: boolean | number + /** A computed field, executes function "get_current_match_map" */ + current_match_map_id?: boolean | number + effective_at?: boolean | number + ended_at?: boolean | number + external_id?: boolean | number + id?: boolean | number + /** A computed field, executes function "match_invite_code" */ + invite_code?: boolean | number + label?: boolean | number + lineup_1_id?: boolean | number + lineup_2_id?: boolean | number + /** A computed field, executes function "get_map_veto_picking_lineup_id" */ + map_veto_picking_lineup_id?: boolean | number + /** A computed field, executes function "get_map_veto_type" */ + map_veto_type?: boolean | number + match_options_id?: boolean | number + /** A computed field, executes function "match_max_players_per_lineup" */ + max_players_per_lineup?: boolean | number + /** A computed field, executes function "match_min_players_per_lineup" */ + min_players_per_lineup?: boolean | number + organizer_steam_id?: boolean | number + password?: boolean | number + region?: boolean | number + /** A computed field, executes function "get_region_veto_picking_lineup_id" */ + region_veto_picking_lineup_id?: boolean | number + scheduled_at?: boolean | number + server_error?: boolean | number + server_id?: boolean | number + /** A computed field, executes function "get_match_server_plugin_runtime" */ + server_plugin_runtime?: boolean | number + /** A computed field, executes function "get_match_server_region" */ + server_region?: boolean | number + /** A computed field, executes function "get_match_server_type" */ + server_type?: boolean | number + share_code?: boolean | number + source?: boolean | number + started_at?: boolean | number + /** A computed field, executes function "get_match_tv_connection_string" */ + tv_connection_string?: boolean | number + veto_pick_expires_at?: boolean | number + winning_lineup_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "matches" */ +export interface matches_max_order_by {cancels_at?: (order_by | null),created_at?: (order_by | null),effective_at?: (order_by | null),ended_at?: (order_by | null),external_id?: (order_by | null),id?: (order_by | null),label?: (order_by | null),lineup_1_id?: (order_by | null),lineup_2_id?: (order_by | null),match_options_id?: (order_by | null),organizer_steam_id?: (order_by | null),password?: (order_by | null),region?: (order_by | null),scheduled_at?: (order_by | null),server_error?: (order_by | null),server_id?: (order_by | null),share_code?: (order_by | null),source?: (order_by | null),started_at?: (order_by | null),veto_pick_expires_at?: (order_by | null),winning_lineup_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface matches_min_fieldsGenqlSelection{ + cancels_at?: boolean | number + /** A computed field, executes function "get_match_connection_link" */ + connection_link?: boolean | number + /** A computed field, executes function "get_match_connection_string" */ + connection_string?: boolean | number + created_at?: boolean | number + /** A computed field, executes function "get_current_match_map" */ + current_match_map_id?: boolean | number + effective_at?: boolean | number + ended_at?: boolean | number + external_id?: boolean | number + id?: boolean | number + /** A computed field, executes function "match_invite_code" */ + invite_code?: boolean | number + label?: boolean | number + lineup_1_id?: boolean | number + lineup_2_id?: boolean | number + /** A computed field, executes function "get_map_veto_picking_lineup_id" */ + map_veto_picking_lineup_id?: boolean | number + /** A computed field, executes function "get_map_veto_type" */ + map_veto_type?: boolean | number + match_options_id?: boolean | number + /** A computed field, executes function "match_max_players_per_lineup" */ + max_players_per_lineup?: boolean | number + /** A computed field, executes function "match_min_players_per_lineup" */ + min_players_per_lineup?: boolean | number + organizer_steam_id?: boolean | number + password?: boolean | number + region?: boolean | number + /** A computed field, executes function "get_region_veto_picking_lineup_id" */ + region_veto_picking_lineup_id?: boolean | number + scheduled_at?: boolean | number + server_error?: boolean | number + server_id?: boolean | number + /** A computed field, executes function "get_match_server_plugin_runtime" */ + server_plugin_runtime?: boolean | number + /** A computed field, executes function "get_match_server_region" */ + server_region?: boolean | number + /** A computed field, executes function "get_match_server_type" */ + server_type?: boolean | number + share_code?: boolean | number + source?: boolean | number + started_at?: boolean | number + /** A computed field, executes function "get_match_tv_connection_string" */ + tv_connection_string?: boolean | number + veto_pick_expires_at?: boolean | number + winning_lineup_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "matches" */ +export interface matches_min_order_by {cancels_at?: (order_by | null),created_at?: (order_by | null),effective_at?: (order_by | null),ended_at?: (order_by | null),external_id?: (order_by | null),id?: (order_by | null),label?: (order_by | null),lineup_1_id?: (order_by | null),lineup_2_id?: (order_by | null),match_options_id?: (order_by | null),organizer_steam_id?: (order_by | null),password?: (order_by | null),region?: (order_by | null),scheduled_at?: (order_by | null),server_error?: (order_by | null),server_id?: (order_by | null),share_code?: (order_by | null),source?: (order_by | null),started_at?: (order_by | null),veto_pick_expires_at?: (order_by | null),winning_lineup_id?: (order_by | null)} + + +/** response of any mutation on the table "matches" */ +export interface matches_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: matchesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "matches" */ +export interface matches_obj_rel_insert_input {data: matches_insert_input, +/** upsert condition */ +on_conflict?: (matches_on_conflict | null)} + + +/** on_conflict condition type for table "matches" */ +export interface matches_on_conflict {constraint: matches_constraint,update_columns?: matches_update_column[],where?: (matches_bool_exp | null)} + + +/** 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),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 */ +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),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 */ +export interface matches_stddev_fieldsGenqlSelection{ + /** A computed field, executes function "match_max_players_per_lineup" */ + max_players_per_lineup?: boolean | number + /** A computed field, executes function "match_min_players_per_lineup" */ + min_players_per_lineup?: boolean | number + organizer_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "matches" */ +export interface matches_stddev_order_by {organizer_steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface matches_stddev_pop_fieldsGenqlSelection{ + /** A computed field, executes function "match_max_players_per_lineup" */ + max_players_per_lineup?: boolean | number + /** A computed field, executes function "match_min_players_per_lineup" */ + min_players_per_lineup?: boolean | number + organizer_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "matches" */ +export interface matches_stddev_pop_order_by {organizer_steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface matches_stddev_samp_fieldsGenqlSelection{ + /** A computed field, executes function "match_max_players_per_lineup" */ + max_players_per_lineup?: boolean | number + /** A computed field, executes function "match_min_players_per_lineup" */ + min_players_per_lineup?: boolean | number + organizer_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "matches" */ +export interface matches_stddev_samp_order_by {organizer_steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "matches" */ +export interface matches_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: matches_stream_cursor_value_input, +/** cursor ordering */ +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),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 */ +export interface matches_sum_fieldsGenqlSelection{ + /** A computed field, executes function "match_max_players_per_lineup" */ + max_players_per_lineup?: boolean | number + /** A computed field, executes function "match_min_players_per_lineup" */ + min_players_per_lineup?: boolean | number + organizer_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "matches" */ +export interface matches_sum_order_by {organizer_steam_id?: (order_by | null)} + +export interface matches_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (matches_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (matches_set_input | null), +/** filter the rows which have to be updated */ +where: matches_bool_exp} + + +/** aggregate var_pop on columns */ +export interface matches_var_pop_fieldsGenqlSelection{ + /** A computed field, executes function "match_max_players_per_lineup" */ + max_players_per_lineup?: boolean | number + /** A computed field, executes function "match_min_players_per_lineup" */ + min_players_per_lineup?: boolean | number + organizer_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "matches" */ +export interface matches_var_pop_order_by {organizer_steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface matches_var_samp_fieldsGenqlSelection{ + /** A computed field, executes function "match_max_players_per_lineup" */ + max_players_per_lineup?: boolean | number + /** A computed field, executes function "match_min_players_per_lineup" */ + min_players_per_lineup?: boolean | number + organizer_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "matches" */ +export interface matches_var_samp_order_by {organizer_steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface matches_variance_fieldsGenqlSelection{ + /** A computed field, executes function "match_max_players_per_lineup" */ + max_players_per_lineup?: boolean | number + /** A computed field, executes function "match_min_players_per_lineup" */ + min_players_per_lineup?: boolean | number + organizer_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "matches" */ +export interface matches_variance_order_by {organizer_steam_id?: (order_by | null)} + + +/** columns and relationships of "migration_hashes.hashes" */ +export interface migration_hashes_hashesGenqlSelection{ + hash?: boolean | number + name?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "migration_hashes.hashes" */ +export interface migration_hashes_hashes_aggregateGenqlSelection{ + aggregate?: migration_hashes_hashes_aggregate_fieldsGenqlSelection + nodes?: migration_hashes_hashesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "migration_hashes.hashes" */ +export interface migration_hashes_hashes_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (migration_hashes_hashes_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: migration_hashes_hashes_max_fieldsGenqlSelection + min?: migration_hashes_hashes_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "migration_hashes.hashes". All fields are combined with a logical 'AND'. */ +export interface migration_hashes_hashes_bool_exp {_and?: (migration_hashes_hashes_bool_exp[] | null),_not?: (migration_hashes_hashes_bool_exp | null),_or?: (migration_hashes_hashes_bool_exp[] | null),hash?: (String_comparison_exp | null),name?: (String_comparison_exp | null)} + + +/** input type for inserting data into table "migration_hashes.hashes" */ +export interface migration_hashes_hashes_insert_input {hash?: (Scalars['String'] | null),name?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface migration_hashes_hashes_max_fieldsGenqlSelection{ + hash?: boolean | number + name?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface migration_hashes_hashes_min_fieldsGenqlSelection{ + hash?: boolean | number + name?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "migration_hashes.hashes" */ +export interface migration_hashes_hashes_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: migration_hashes_hashesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "migration_hashes.hashes" */ +export interface migration_hashes_hashes_on_conflict {constraint: migration_hashes_hashes_constraint,update_columns?: migration_hashes_hashes_update_column[],where?: (migration_hashes_hashes_bool_exp | null)} + + +/** Ordering options when selecting data from "migration_hashes.hashes". */ +export interface migration_hashes_hashes_order_by {hash?: (order_by | null),name?: (order_by | null)} + + +/** primary key columns input for table: migration_hashes.hashes */ +export interface migration_hashes_hashes_pk_columns_input {name: Scalars['String']} + + +/** input type for updating data in table "migration_hashes.hashes" */ +export interface migration_hashes_hashes_set_input {hash?: (Scalars['String'] | null),name?: (Scalars['String'] | null)} + + +/** Streaming cursor of the table "migration_hashes_hashes" */ +export interface migration_hashes_hashes_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: migration_hashes_hashes_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface migration_hashes_hashes_stream_cursor_value_input {hash?: (Scalars['String'] | null),name?: (Scalars['String'] | null)} + +export interface migration_hashes_hashes_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (migration_hashes_hashes_set_input | null), +/** filter the rows which have to be updated */ +where: migration_hashes_hashes_bool_exp} + + +/** mutation root */ +export interface mutation_rootGenqlSelection{ + PreviewTournamentMatchReset?: (PreviewTournamentMatchResetOutputGenqlSelection & { __args: {match_id: Scalars['uuid']} }) + 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 */ + addSteamPresenceBotAccount?: (SuccessOutputGenqlSelection & { __args: {bot_secret: Scalars['String'], friend_capacity?: (Scalars['Int'] | null), username: Scalars['String']} }) + approveNameChange?: (SuccessOutputGenqlSelection & { __args: {name: Scalars['String'], steam_id: Scalars['bigint']} }) + /** execute VOLATILE function "approve_league_season_movements" which returns "league_team_movements" */ + approve_league_season_movements?: (league_team_movementsGenqlSelection & { __args: { + /** input parameters for function "approve_league_season_movements" */ + args: approve_league_season_movements_args, + /** distinct select on columns */ + distinct_on?: (league_team_movements_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_team_movements_order_by[] | null), + /** filter the rows returned */ + where?: (league_team_movements_bool_exp | null)} }) + /** Assign the presence bot a user should add as a friend */ + assignSteamPresenceBot?: SteamPresenceBotAssignmentGenqlSelection + /** Dev-only — attach the demo player to a standing dev game-streamer pod (no Job boot) */ + attachDemo?: WatchDemoOutputGenqlSelection + /** Rebuild a season's ELO + stats from the matches inside its date range (admin only). Runs in the background; track via backfillSeasonEloStatus. */ + backfillSeasonElo?: (RecomputeEloStartedOutputGenqlSelection & { __args: {season_id: Scalars['String']} }) + /** Return the progress of the season ELO backfill run (admin only). */ + backfillSeasonEloStatus?: SeasonBackfillStatusOutputGenqlSelection + /** Recover launch seeds from recorded trajectories, one batch per call */ + backfillUtilityLaunchSeeds?: (UtilityLaunchSeedBackfillOutputGenqlSelection & { __args?: {limit?: (Scalars['Int'] | null)} }) + /** Launch a Vulkan shader pre-bake Job on a GPU node */ + bakeShaders?: (SuccessOutputGenqlSelection & { __args: {game_server_node_id: Scalars['uuid']} }) + /** callForOrganizer */ + callForOrganizer?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['String']} }) + /** Request cancellation of the in-progress season ELO backfill (admin only). Stops after the current match. */ + cancelBackfillSeasonElo?: SuccessOutputGenqlSelection + /** Cancel an in-progress or stuck Vulkan shader pre-bake Job on a GPU node */ + cancelBakeShaders?: (SuccessOutputGenqlSelection & { __args: {game_server_node_id: Scalars['uuid']} }) + /** Cancel an in-flight clip render and tear down the K8s job */ + cancelClipRender?: (SuccessOutputGenqlSelection & { __args: {job_id: Scalars['uuid']} }) + /** Cancel an entire match_map's render queue + tear down the pod. */ + cancelClipRenderBatch?: (SuccessOutputGenqlSelection & { __args: {match_map_id: Scalars['uuid']} }) + /** cancelMatch */ + cancelMatch?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid']} }) + /** Request cancellation of the in-progress ELO recompute (admin only). Stops after the current match. */ + cancelRecomputePlayerElo?: SuccessOutputGenqlSelection + /** Request cancellation of the in-progress player reindex (admin only). Stops after the current player. */ + cancelRefreshAllPlayers?: SuccessOutputGenqlSelection + /** Request cancellation of the in-progress reparse-all-demos run (admin only). Stops after the current demo finishes. */ + cancelReparseAllDemos?: SuccessOutputGenqlSelection + /** cancelScrimRequest */ + cancelScrimRequest?: (SuccessOutputGenqlSelection & { __args: {request_id: Scalars['uuid']} }) + /** Cancel an in-flight lineup preview render */ + cancelUtilityLineupRender?: (SuccessOutputGenqlSelection & { __args: {render_id: Scalars['uuid']} }) + changeUtilityPracticeMap?: (UtilityPracticeMapChangeOutputGenqlSelection & { __args: {lineup_id?: (Scalars['uuid'] | null), lineup_ids?: (Scalars['uuid'][] | null), map_name: Scalars['String'], scratch?: (UtilityScratchLineupInput | null), session_id: Scalars['uuid']} }) + /** checkIntoMatch */ + checkIntoMatch?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid']} }) + /** Confirm a check-in, enforcing the tournament's check_in_setting */ + checkIntoTournament?: (SuccessOutputGenqlSelection & { __args: {tournament_id: Scalars['uuid'], tournament_team_id?: (Scalars['uuid'] | null)} }) + /** Delete terminal-state clip_render_jobs rows for a single match_map batch. */ + clearClipRenderBatch?: (SuccessOutputGenqlSelection & { __args: {match_map_id: Scalars['uuid']} }) + /** Delete all terminal-state clip_render_jobs rows platform-wide. */ + clearFinishedClipRenders?: SuccessOutputGenqlSelection + /** Drop every finished row from the lineup preview queue */ + clearFinishedUtilityLineupRenders?: UtilityRenderClearOutputGenqlSelection + clearPendingMatchImport?: (PendingMatchImportActionOutputGenqlSelection & { __args: {valve_match_id: Scalars['String']} }) + /** execute VOLATILE function "clone_league_season" which returns "league_seasons" */ + clone_league_season?: (league_seasonsGenqlSelection & { __args: { + /** input parameters for function "clone_league_season" */ + args: clone_league_season_args, + /** distinct select on columns */ + distinct_on?: (league_seasons_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_seasons_order_by[] | null), + /** filter the rows returned */ + where?: (league_seasons_bool_exp | null)} }) + /** Organizer proceeds without the teams that missed check-in */ + continueTournamentCheckIn?: (SuccessOutputGenqlSelection & { __args: {tournament_id: Scalars['uuid']} }) + /** counterScrimRequest */ + counterScrimRequest?: (SuccessOutputGenqlSelection & { __args: {proposed_scheduled_at: Scalars['timestamptz'], request_id: Scalars['uuid']} }) + createApiKey?: (ApiKeyResponseGenqlSelection & { __args: {label: Scalars['String']} }) + /** Build a multi-segment ClipSpec from a player+preset and dispatch render */ + createClipFromPreset?: (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)} }) + /** Spawn a clip-render pod that produces an mp4 from a demo and uploads it */ + createClipRender?: (CreateClipRenderOutputGenqlSelection & { __args: {spec: ClipSpecInput} }) + createClips?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid']} }) + /** createDraftGame */ + createDraftGame?: (CreateDraftGameOutputGenqlSelection & { __args: {settings: Scalars['jsonb']} }) + /** createScheduledMatch */ + createScheduledMatch?: (CreateScheduledMatchOutputGenqlSelection & { __args: {lineup_1: ScheduledLineupInput, lineup_2: ScheduledLineupInput, options: Scalars['jsonb'], scheduled_at: Scalars['String']} }) + /** Create directory on game server */ + createServerDirectory?: (SuccessOutputGenqlSelection & { __args: {dir_path: Scalars['String'], node_id: Scalars['String'], server_id?: (Scalars['String'] | null)} }) + /** Organizer mints an expiring, use capped invite link for a tournament */ + createTournamentInviteCode?: (TournamentInviteCodeOutputGenqlSelection & { __args: {expires_in_minutes?: (Scalars['Int'] | null), max_uses?: (Scalars['Int'] | null), tournament_id: Scalars['uuid']} }) + /** Delete a catalog award */ + deleteAward?: (SuccessOutputGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** Delete a saved clip and its underlying S3 object */ + deleteClip?: (SuccessOutputGenqlSelection & { __args: {clip_id: Scalars['uuid']} }) + deleteMatch?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['String']} }) + /** Delete a news post. Caller role is verified against public.post_news_role. */ + deleteNewsPost?: (SuccessOutputGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** Delete orphaned S3 objects found by the last scan (admin only). Each key is re-verified against the database before removal. */ + deleteOrphanedDemos?: (DeleteOrphansOutputGenqlSelection & { __args?: {keys?: (Scalars['String'][] | null)} }) + /** Delete file or directory on game server */ + deleteServerItem?: (SuccessOutputGenqlSelection & { __args: {node_id: Scalars['String'], path: Scalars['String'], server_id?: (Scalars['String'] | null)} }) + /** Delete a tournament and clean up demo files */ + deleteTournament?: (SuccessOutputGenqlSelection & { __args: {tournament_id: Scalars['uuid']} }) + /** Delete a render and its preview clip */ + deleteUtilityLineupRender?: (SuccessOutputGenqlSelection & { __args: {render_id: Scalars['uuid']} }) + /** Delete a utility playbook */ + deleteUtilityPlaybook?: (SuccessOutputGenqlSelection & { __args: {playbook_id: Scalars['uuid']} }) + /** delete data from the table: "_map_pool" */ + delete__map_pool?: (_map_pool_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: _map_pool_bool_exp} }) + /** delete single row from the table: "_map_pool" */ + delete__map_pool_by_pk?: (_map_poolGenqlSelection & { __args: {map_id: Scalars['uuid'], map_pool_id: Scalars['uuid']} }) + /** delete data from the table: "abandoned_matches" */ + delete_abandoned_matches?: (abandoned_matches_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: abandoned_matches_bool_exp} }) + /** delete single row from the table: "abandoned_matches" */ + delete_abandoned_matches_by_pk?: (abandoned_matchesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "api_keys" */ + delete_api_keys?: (api_keys_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: api_keys_bool_exp} }) + /** delete single row from the table: "api_keys" */ + delete_api_keys_by_pk?: (api_keysGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "award_recipients" */ + delete_award_recipients?: (award_recipients_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: award_recipients_bool_exp} }) + /** delete single row from the table: "award_recipients" */ + delete_award_recipients_by_pk?: (award_recipientsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "awards" */ + delete_awards?: (awards_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: awards_bool_exp} }) + /** delete single row from the table: "awards" */ + delete_awards_by_pk?: (awardsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "chat_read_state" */ + delete_chat_read_state?: (chat_read_state_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: chat_read_state_bool_exp} }) + /** delete single row from the table: "chat_read_state" */ + delete_chat_read_state_by_pk?: (chat_read_stateGenqlSelection & { __args: {steam_id: Scalars['bigint'], thread: Scalars['String']} }) + /** delete data from the table: "clip_render_jobs" */ + delete_clip_render_jobs?: (clip_render_jobs_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: clip_render_jobs_bool_exp} }) + /** delete single row from the table: "clip_render_jobs" */ + delete_clip_render_jobs_by_pk?: (clip_render_jobsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "custom_pages" */ + delete_custom_pages?: (custom_pages_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: custom_pages_bool_exp} }) + /** delete single row from the table: "custom_pages" */ + delete_custom_pages_by_pk?: (custom_pagesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "db_backups" */ + delete_db_backups?: (db_backups_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: db_backups_bool_exp} }) + /** delete single row from the table: "db_backups" */ + delete_db_backups_by_pk?: (db_backupsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "direct_conversations" */ + delete_direct_conversations?: (direct_conversations_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: direct_conversations_bool_exp} }) + /** delete single row from the table: "direct_conversations" */ + delete_direct_conversations_by_pk?: (direct_conversationsGenqlSelection & { __args: {room_id: Scalars['String'], steam_id: Scalars['bigint']} }) + /** delete data from the table: "direct_messages" */ + delete_direct_messages?: (direct_messages_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: direct_messages_bool_exp} }) + /** delete single row from the table: "direct_messages" */ + delete_direct_messages_by_pk?: (direct_messagesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "draft_game_picks" */ + delete_draft_game_picks?: (draft_game_picks_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: draft_game_picks_bool_exp} }) + /** delete single row from the table: "draft_game_picks" */ + delete_draft_game_picks_by_pk?: (draft_game_picksGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "draft_game_players" */ + delete_draft_game_players?: (draft_game_players_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: draft_game_players_bool_exp} }) + /** delete single row from the table: "draft_game_players" */ + delete_draft_game_players_by_pk?: (draft_game_playersGenqlSelection & { __args: {draft_game_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) + /** delete data from the table: "draft_games" */ + delete_draft_games?: (draft_games_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: draft_games_bool_exp} }) + /** delete single row from the table: "draft_games" */ + delete_draft_games_by_pk?: (draft_gamesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "e_award_sources" */ + delete_e_award_sources?: (e_award_sources_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_award_sources_bool_exp} }) + /** delete single row from the table: "e_award_sources" */ + delete_e_award_sources_by_pk?: (e_award_sourcesGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_award_tiers" */ + delete_e_award_tiers?: (e_award_tiers_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_award_tiers_bool_exp} }) + /** delete single row from the table: "e_award_tiers" */ + delete_e_award_tiers_by_pk?: (e_award_tiersGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_check_in_settings" */ + delete_e_check_in_settings?: (e_check_in_settings_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_check_in_settings_bool_exp} }) + /** delete single row from the table: "e_check_in_settings" */ + delete_e_check_in_settings_by_pk?: (e_check_in_settingsGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_draft_game_captain_selection" */ + delete_e_draft_game_captain_selection?: (e_draft_game_captain_selection_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_draft_game_captain_selection_bool_exp} }) + /** delete single row from the table: "e_draft_game_captain_selection" */ + delete_e_draft_game_captain_selection_by_pk?: (e_draft_game_captain_selectionGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_draft_game_draft_order" */ + delete_e_draft_game_draft_order?: (e_draft_game_draft_order_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_draft_game_draft_order_bool_exp} }) + /** delete single row from the table: "e_draft_game_draft_order" */ + delete_e_draft_game_draft_order_by_pk?: (e_draft_game_draft_orderGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_draft_game_mode" */ + delete_e_draft_game_mode?: (e_draft_game_mode_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_draft_game_mode_bool_exp} }) + /** delete single row from the table: "e_draft_game_mode" */ + delete_e_draft_game_mode_by_pk?: (e_draft_game_modeGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_draft_game_player_status" */ + delete_e_draft_game_player_status?: (e_draft_game_player_status_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_draft_game_player_status_bool_exp} }) + /** delete single row from the table: "e_draft_game_player_status" */ + delete_e_draft_game_player_status_by_pk?: (e_draft_game_player_statusGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_draft_game_status" */ + delete_e_draft_game_status?: (e_draft_game_status_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_draft_game_status_bool_exp} }) + /** delete single row from the table: "e_draft_game_status" */ + delete_e_draft_game_status_by_pk?: (e_draft_game_statusGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_event_media_access" */ + delete_e_event_media_access?: (e_event_media_access_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_event_media_access_bool_exp} }) + /** delete single row from the table: "e_event_media_access" */ + delete_e_event_media_access_by_pk?: (e_event_media_accessGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_event_visibility" */ + delete_e_event_visibility?: (e_event_visibility_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_event_visibility_bool_exp} }) + /** delete single row from the table: "e_event_visibility" */ + delete_e_event_visibility_by_pk?: (e_event_visibilityGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_friend_status" */ + delete_e_friend_status?: (e_friend_status_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_friend_status_bool_exp} }) + /** delete single row from the table: "e_friend_status" */ + delete_e_friend_status_by_pk?: (e_friend_statusGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_game_cfg_types" */ + delete_e_game_cfg_types?: (e_game_cfg_types_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + 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 */ + where: e_game_server_node_statuses_bool_exp} }) + /** delete single row from the table: "e_game_server_node_statuses" */ + delete_e_game_server_node_statuses_by_pk?: (e_game_server_node_statusesGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_league_movement_types" */ + delete_e_league_movement_types?: (e_league_movement_types_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_league_movement_types_bool_exp} }) + /** delete single row from the table: "e_league_movement_types" */ + delete_e_league_movement_types_by_pk?: (e_league_movement_typesGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_league_proposal_statuses" */ + delete_e_league_proposal_statuses?: (e_league_proposal_statuses_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_league_proposal_statuses_bool_exp} }) + /** delete single row from the table: "e_league_proposal_statuses" */ + delete_e_league_proposal_statuses_by_pk?: (e_league_proposal_statusesGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_league_registration_statuses" */ + delete_e_league_registration_statuses?: (e_league_registration_statuses_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_league_registration_statuses_bool_exp} }) + /** delete single row from the table: "e_league_registration_statuses" */ + delete_e_league_registration_statuses_by_pk?: (e_league_registration_statusesGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_league_season_statuses" */ + delete_e_league_season_statuses?: (e_league_season_statuses_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_league_season_statuses_bool_exp} }) + /** delete single row from the table: "e_league_season_statuses" */ + delete_e_league_season_statuses_by_pk?: (e_league_season_statusesGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_lobby_access" */ + delete_e_lobby_access?: (e_lobby_access_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_lobby_access_bool_exp} }) + /** delete single row from the table: "e_lobby_access" */ + delete_e_lobby_access_by_pk?: (e_lobby_accessGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_lobby_player_status" */ + delete_e_lobby_player_status?: (e_lobby_player_status_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_lobby_player_status_bool_exp} }) + /** delete single row from the table: "e_lobby_player_status" */ + delete_e_lobby_player_status_by_pk?: (e_lobby_player_statusGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_map_pool_types" */ + delete_e_map_pool_types?: (e_map_pool_types_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_map_pool_types_bool_exp} }) + /** delete single row from the table: "e_map_pool_types" */ + delete_e_map_pool_types_by_pk?: (e_map_pool_typesGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_match_clip_visibility" */ + delete_e_match_clip_visibility?: (e_match_clip_visibility_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_match_clip_visibility_bool_exp} }) + /** delete single row from the table: "e_match_clip_visibility" */ + delete_e_match_clip_visibility_by_pk?: (e_match_clip_visibilityGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_match_map_status" */ + delete_e_match_map_status?: (e_match_map_status_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_match_map_status_bool_exp} }) + /** delete single row from the table: "e_match_map_status" */ + delete_e_match_map_status_by_pk?: (e_match_map_statusGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_match_mode" */ + delete_e_match_mode?: (e_match_mode_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_match_mode_bool_exp} }) + /** delete single row from the table: "e_match_mode" */ + delete_e_match_mode_by_pk?: (e_match_modeGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_match_party_sources" */ + delete_e_match_party_sources?: (e_match_party_sources_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_match_party_sources_bool_exp} }) + /** delete single row from the table: "e_match_party_sources" */ + delete_e_match_party_sources_by_pk?: (e_match_party_sourcesGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_match_status" */ + delete_e_match_status?: (e_match_status_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_match_status_bool_exp} }) + /** delete single row from the table: "e_match_status" */ + delete_e_match_status_by_pk?: (e_match_statusGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_match_types" */ + delete_e_match_types?: (e_match_types_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_match_types_bool_exp} }) + /** delete single row from the table: "e_match_types" */ + delete_e_match_types_by_pk?: (e_match_typesGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_notification_types" */ + delete_e_notification_types?: (e_notification_types_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_notification_types_bool_exp} }) + /** delete single row from the table: "e_notification_types" */ + delete_e_notification_types_by_pk?: (e_notification_typesGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_objective_types" */ + delete_e_objective_types?: (e_objective_types_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_objective_types_bool_exp} }) + /** delete single row from the table: "e_objective_types" */ + delete_e_objective_types_by_pk?: (e_objective_typesGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_player_roles" */ + delete_e_player_roles?: (e_player_roles_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_player_roles_bool_exp} }) + /** delete single row from the table: "e_player_roles" */ + delete_e_player_roles_by_pk?: (e_player_rolesGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_plugin_runtimes" */ + delete_e_plugin_runtimes?: (e_plugin_runtimes_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_plugin_runtimes_bool_exp} }) + /** delete single row from the table: "e_plugin_runtimes" */ + delete_e_plugin_runtimes_by_pk?: (e_plugin_runtimesGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_ready_settings" */ + delete_e_ready_settings?: (e_ready_settings_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_ready_settings_bool_exp} }) + /** delete single row from the table: "e_ready_settings" */ + delete_e_ready_settings_by_pk?: (e_ready_settingsGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_sanction_scopes" */ + delete_e_sanction_scopes?: (e_sanction_scopes_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_sanction_scopes_bool_exp} }) + /** delete single row from the table: "e_sanction_scopes" */ + delete_e_sanction_scopes_by_pk?: (e_sanction_scopesGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_sanction_sources" */ + delete_e_sanction_sources?: (e_sanction_sources_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_sanction_sources_bool_exp} }) + /** delete single row from the table: "e_sanction_sources" */ + delete_e_sanction_sources_by_pk?: (e_sanction_sourcesGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_sanction_types" */ + delete_e_sanction_types?: (e_sanction_types_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_sanction_types_bool_exp} }) + /** delete single row from the table: "e_sanction_types" */ + delete_e_sanction_types_by_pk?: (e_sanction_typesGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_scrim_request_statuses" */ + delete_e_scrim_request_statuses?: (e_scrim_request_statuses_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_scrim_request_statuses_bool_exp} }) + /** delete single row from the table: "e_scrim_request_statuses" */ + delete_e_scrim_request_statuses_by_pk?: (e_scrim_request_statusesGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_server_types" */ + delete_e_server_types?: (e_server_types_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_server_types_bool_exp} }) + /** delete single row from the table: "e_server_types" */ + delete_e_server_types_by_pk?: (e_server_typesGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_sides" */ + delete_e_sides?: (e_sides_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_sides_bool_exp} }) + /** delete single row from the table: "e_sides" */ + delete_e_sides_by_pk?: (e_sidesGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_system_alert_types" */ + delete_e_system_alert_types?: (e_system_alert_types_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_system_alert_types_bool_exp} }) + /** delete single row from the table: "e_system_alert_types" */ + delete_e_system_alert_types_by_pk?: (e_system_alert_typesGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_team_roles" */ + delete_e_team_roles?: (e_team_roles_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_team_roles_bool_exp} }) + /** delete single row from the table: "e_team_roles" */ + delete_e_team_roles_by_pk?: (e_team_rolesGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_team_roster_statuses" */ + delete_e_team_roster_statuses?: (e_team_roster_statuses_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_team_roster_statuses_bool_exp} }) + /** delete single row from the table: "e_team_roster_statuses" */ + delete_e_team_roster_statuses_by_pk?: (e_team_roster_statusesGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_timeout_settings" */ + delete_e_timeout_settings?: (e_timeout_settings_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_timeout_settings_bool_exp} }) + /** delete single row from the table: "e_timeout_settings" */ + delete_e_timeout_settings_by_pk?: (e_timeout_settingsGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_tournament_categories" */ + delete_e_tournament_categories?: (e_tournament_categories_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_tournament_categories_bool_exp} }) + /** delete single row from the table: "e_tournament_categories" */ + delete_e_tournament_categories_by_pk?: (e_tournament_categoriesGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_tournament_free_agent_statuses" */ + delete_e_tournament_free_agent_statuses?: (e_tournament_free_agent_statuses_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_tournament_free_agent_statuses_bool_exp} }) + /** delete single row from the table: "e_tournament_free_agent_statuses" */ + delete_e_tournament_free_agent_statuses_by_pk?: (e_tournament_free_agent_statusesGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_tournament_registration_types" */ + delete_e_tournament_registration_types?: (e_tournament_registration_types_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_tournament_registration_types_bool_exp} }) + /** delete single row from the table: "e_tournament_registration_types" */ + delete_e_tournament_registration_types_by_pk?: (e_tournament_registration_typesGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_tournament_stage_types" */ + delete_e_tournament_stage_types?: (e_tournament_stage_types_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_tournament_stage_types_bool_exp} }) + /** delete single row from the table: "e_tournament_stage_types" */ + delete_e_tournament_stage_types_by_pk?: (e_tournament_stage_typesGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_tournament_status" */ + delete_e_tournament_status?: (e_tournament_status_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_tournament_status_bool_exp} }) + /** delete single row from the table: "e_tournament_status" */ + delete_e_tournament_status_by_pk?: (e_tournament_statusGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_utility_practice_access" */ + delete_e_utility_practice_access?: (e_utility_practice_access_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_utility_practice_access_bool_exp} }) + /** delete single row from the table: "e_utility_practice_access" */ + delete_e_utility_practice_access_by_pk?: (e_utility_practice_accessGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_utility_practice_statuses" */ + delete_e_utility_practice_statuses?: (e_utility_practice_statuses_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_utility_practice_statuses_bool_exp} }) + /** delete single row from the table: "e_utility_practice_statuses" */ + delete_e_utility_practice_statuses_by_pk?: (e_utility_practice_statusesGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_utility_sources" */ + delete_e_utility_sources?: (e_utility_sources_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_utility_sources_bool_exp} }) + /** delete single row from the table: "e_utility_sources" */ + delete_e_utility_sources_by_pk?: (e_utility_sourcesGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_utility_techniques" */ + delete_e_utility_techniques?: (e_utility_techniques_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_utility_techniques_bool_exp} }) + /** delete single row from the table: "e_utility_techniques" */ + delete_e_utility_techniques_by_pk?: (e_utility_techniquesGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_utility_throw_strengths" */ + delete_e_utility_throw_strengths?: (e_utility_throw_strengths_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_utility_throw_strengths_bool_exp} }) + /** delete single row from the table: "e_utility_throw_strengths" */ + delete_e_utility_throw_strengths_by_pk?: (e_utility_throw_strengthsGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_utility_types" */ + delete_e_utility_types?: (e_utility_types_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_utility_types_bool_exp} }) + /** delete single row from the table: "e_utility_types" */ + delete_e_utility_types_by_pk?: (e_utility_typesGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_utility_visibility" */ + delete_e_utility_visibility?: (e_utility_visibility_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_utility_visibility_bool_exp} }) + /** delete single row from the table: "e_utility_visibility" */ + delete_e_utility_visibility_by_pk?: (e_utility_visibilityGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_veto_pick_types" */ + delete_e_veto_pick_types?: (e_veto_pick_types_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_veto_pick_types_bool_exp} }) + /** delete single row from the table: "e_veto_pick_types" */ + delete_e_veto_pick_types_by_pk?: (e_veto_pick_typesGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_winning_reasons" */ + delete_e_winning_reasons?: (e_winning_reasons_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_winning_reasons_bool_exp} }) + /** delete single row from the table: "e_winning_reasons" */ + delete_e_winning_reasons_by_pk?: (e_winning_reasonsGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "event_match_links" */ + delete_event_match_links?: (event_match_links_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: event_match_links_bool_exp} }) + /** delete single row from the table: "event_match_links" */ + delete_event_match_links_by_pk?: (event_match_linksGenqlSelection & { __args: {event_id: Scalars['uuid'], match_id: Scalars['uuid']} }) + /** delete data from the table: "event_media" */ + delete_event_media?: (event_media_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: event_media_bool_exp} }) + /** delete single row from the table: "event_media" */ + delete_event_media_by_pk?: (event_mediaGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "event_media_players" */ + delete_event_media_players?: (event_media_players_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: event_media_players_bool_exp} }) + /** delete single row from the table: "event_media_players" */ + delete_event_media_players_by_pk?: (event_media_playersGenqlSelection & { __args: {media_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) + /** delete data from the table: "event_organizers" */ + delete_event_organizers?: (event_organizers_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: event_organizers_bool_exp} }) + /** delete single row from the table: "event_organizers" */ + delete_event_organizers_by_pk?: (event_organizersGenqlSelection & { __args: {event_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) + /** delete data from the table: "event_players" */ + delete_event_players?: (event_players_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: event_players_bool_exp} }) + /** delete single row from the table: "event_players" */ + delete_event_players_by_pk?: (event_playersGenqlSelection & { __args: {event_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) + /** delete data from the table: "event_teams" */ + delete_event_teams?: (event_teams_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: event_teams_bool_exp} }) + /** delete single row from the table: "event_teams" */ + delete_event_teams_by_pk?: (event_teamsGenqlSelection & { __args: {event_id: Scalars['uuid'], team_id: Scalars['uuid']} }) + /** delete data from the table: "event_tournaments" */ + delete_event_tournaments?: (event_tournaments_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: event_tournaments_bool_exp} }) + /** delete single row from the table: "event_tournaments" */ + delete_event_tournaments_by_pk?: (event_tournamentsGenqlSelection & { __args: {event_id: Scalars['uuid'], tournament_id: Scalars['uuid']} }) + /** delete data from the table: "events" */ + delete_events?: (events_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: events_bool_exp} }) + /** delete single row from the table: "events" */ + delete_events_by_pk?: (eventsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "friends" */ + delete_friends?: (friends_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + 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 */ + where: game_server_nodes_bool_exp} }) + /** delete single row from the table: "game_server_nodes" */ + delete_game_server_nodes_by_pk?: (game_server_nodesGenqlSelection & { __args: {id: Scalars['String']} }) + /** delete data from the table: "game_versions" */ + delete_game_versions?: (game_versions_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: game_versions_bool_exp} }) + /** delete single row from the table: "game_versions" */ + delete_game_versions_by_pk?: (game_versionsGenqlSelection & { __args: {build_id: Scalars['Int']} }) + /** delete data from the table: "gamedata_signature_validations" */ + delete_gamedata_signature_validations?: (gamedata_signature_validations_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: gamedata_signature_validations_bool_exp} }) + /** delete single row from the table: "gamedata_signature_validations" */ + delete_gamedata_signature_validations_by_pk?: (gamedata_signature_validationsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "leaderboard_entries" */ + delete_leaderboard_entries?: (leaderboard_entries_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: leaderboard_entries_bool_exp} }) + /** delete data from the table: "league_divisions" */ + delete_league_divisions?: (league_divisions_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: league_divisions_bool_exp} }) + /** delete single row from the table: "league_divisions" */ + delete_league_divisions_by_pk?: (league_divisionsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "league_match_weeks" */ + delete_league_match_weeks?: (league_match_weeks_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: league_match_weeks_bool_exp} }) + /** delete single row from the table: "league_match_weeks" */ + delete_league_match_weeks_by_pk?: (league_match_weeksGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "league_relegation_playoffs" */ + delete_league_relegation_playoffs?: (league_relegation_playoffs_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: league_relegation_playoffs_bool_exp} }) + /** delete single row from the table: "league_relegation_playoffs" */ + delete_league_relegation_playoffs_by_pk?: (league_relegation_playoffsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "league_scheduling_proposals" */ + delete_league_scheduling_proposals?: (league_scheduling_proposals_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: league_scheduling_proposals_bool_exp} }) + /** delete single row from the table: "league_scheduling_proposals" */ + delete_league_scheduling_proposals_by_pk?: (league_scheduling_proposalsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "league_season_divisions" */ + delete_league_season_divisions?: (league_season_divisions_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: league_season_divisions_bool_exp} }) + /** delete single row from the table: "league_season_divisions" */ + delete_league_season_divisions_by_pk?: (league_season_divisionsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "league_seasons" */ + delete_league_seasons?: (league_seasons_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: league_seasons_bool_exp} }) + /** delete single row from the table: "league_seasons" */ + delete_league_seasons_by_pk?: (league_seasonsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "league_team_movements" */ + delete_league_team_movements?: (league_team_movements_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: league_team_movements_bool_exp} }) + /** delete single row from the table: "league_team_movements" */ + delete_league_team_movements_by_pk?: (league_team_movementsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "league_team_rosters" */ + delete_league_team_rosters?: (league_team_rosters_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: league_team_rosters_bool_exp} }) + /** delete single row from the table: "league_team_rosters" */ + delete_league_team_rosters_by_pk?: (league_team_rostersGenqlSelection & { __args: {league_team_season_id: Scalars['uuid'], player_steam_id: Scalars['bigint']} }) + /** delete data from the table: "league_team_seasons" */ + delete_league_team_seasons?: (league_team_seasons_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: league_team_seasons_bool_exp} }) + /** delete single row from the table: "league_team_seasons" */ + delete_league_team_seasons_by_pk?: (league_team_seasonsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "league_teams" */ + delete_league_teams?: (league_teams_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: league_teams_bool_exp} }) + /** delete single row from the table: "league_teams" */ + delete_league_teams_by_pk?: (league_teamsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "lobbies" */ + delete_lobbies?: (lobbies_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: lobbies_bool_exp} }) + /** delete single row from the table: "lobbies" */ + delete_lobbies_by_pk?: (lobbiesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "lobby_players" */ + delete_lobby_players?: (lobby_players_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: lobby_players_bool_exp} }) + /** delete single row from the table: "lobby_players" */ + delete_lobby_players_by_pk?: (lobby_playersGenqlSelection & { __args: {lobby_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) + /** delete data from the table: "map_callouts" */ + delete_map_callouts?: (map_callouts_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: map_callouts_bool_exp} }) + /** delete single row from the table: "map_callouts" */ + delete_map_callouts_by_pk?: (map_calloutsGenqlSelection & { __args: {map_name: Scalars['String'], name: Scalars['String']} }) + /** delete data from the table: "map_pools" */ + delete_map_pools?: (map_pools_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: map_pools_bool_exp} }) + /** delete single row from the table: "map_pools" */ + delete_map_pools_by_pk?: (map_poolsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "maps" */ + delete_maps?: (maps_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: maps_bool_exp} }) + /** delete single row from the table: "maps" */ + delete_maps_by_pk?: (mapsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "match_clips" */ + delete_match_clips?: (match_clips_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: match_clips_bool_exp} }) + /** delete single row from the table: "match_clips" */ + delete_match_clips_by_pk?: (match_clipsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "match_demo_sessions" */ + delete_match_demo_sessions?: (match_demo_sessions_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: match_demo_sessions_bool_exp} }) + /** delete single row from the table: "match_demo_sessions" */ + delete_match_demo_sessions_by_pk?: (match_demo_sessionsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "match_lineup_players" */ + delete_match_lineup_players?: (match_lineup_players_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: match_lineup_players_bool_exp} }) + /** delete single row from the table: "match_lineup_players" */ + delete_match_lineup_players_by_pk?: (match_lineup_playersGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "match_lineups" */ + delete_match_lineups?: (match_lineups_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: match_lineups_bool_exp} }) + /** delete single row from the table: "match_lineups" */ + delete_match_lineups_by_pk?: (match_lineupsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "match_map_demos" */ + delete_match_map_demos?: (match_map_demos_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: match_map_demos_bool_exp} }) + /** delete single row from the table: "match_map_demos" */ + delete_match_map_demos_by_pk?: (match_map_demosGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "match_map_rounds" */ + delete_match_map_rounds?: (match_map_rounds_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: match_map_rounds_bool_exp} }) + /** delete single row from the table: "match_map_rounds" */ + delete_match_map_rounds_by_pk?: (match_map_roundsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "match_map_veto_picks" */ + delete_match_map_veto_picks?: (match_map_veto_picks_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: match_map_veto_picks_bool_exp} }) + /** delete single row from the table: "match_map_veto_picks" */ + delete_match_map_veto_picks_by_pk?: (match_map_veto_picksGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "match_maps" */ + delete_match_maps?: (match_maps_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: match_maps_bool_exp} }) + /** delete single row from the table: "match_maps" */ + delete_match_maps_by_pk?: (match_mapsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "match_options" */ + delete_match_options?: (match_options_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: match_options_bool_exp} }) + /** delete single row from the table: "match_options" */ + delete_match_options_by_pk?: (match_optionsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "match_region_veto_picks" */ + delete_match_region_veto_picks?: (match_region_veto_picks_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: match_region_veto_picks_bool_exp} }) + /** delete single row from the table: "match_region_veto_picks" */ + delete_match_region_veto_picks_by_pk?: (match_region_veto_picksGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "match_streams" */ + delete_match_streams?: (match_streams_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: match_streams_bool_exp} }) + /** delete single row from the table: "match_streams" */ + delete_match_streams_by_pk?: (match_streamsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "match_type_cfgs" */ + delete_match_type_cfgs?: (match_type_cfgs_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: match_type_cfgs_bool_exp} }) + /** delete single row from the table: "match_type_cfgs" */ + delete_match_type_cfgs_by_pk?: (match_type_cfgsGenqlSelection & { __args: {type: e_game_cfg_types_enum} }) + /** delete data from the table: "matches" */ + delete_matches?: (matches_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: matches_bool_exp} }) + /** delete single row from the table: "matches" */ + delete_matches_by_pk?: (matchesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "migration_hashes.hashes" */ + delete_migration_hashes_hashes?: (migration_hashes_hashes_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: migration_hashes_hashes_bool_exp} }) + /** delete single row from the table: "migration_hashes.hashes" */ + delete_migration_hashes_hashes_by_pk?: (migration_hashes_hashesGenqlSelection & { __args: {name: Scalars['String']} }) + /** delete data from the table: "v_my_friends" */ + delete_my_friends?: (my_friends_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: my_friends_bool_exp} }) + /** delete data from the table: "news_articles" */ + delete_news_articles?: (news_articles_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: news_articles_bool_exp} }) + /** delete single row from the table: "news_articles" */ + delete_news_articles_by_pk?: (news_articlesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "notification_preferences" */ + delete_notification_preferences?: (notification_preferences_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: notification_preferences_bool_exp} }) + /** delete single row from the table: "notification_preferences" */ + delete_notification_preferences_by_pk?: (notification_preferencesGenqlSelection & { __args: {channel: Scalars['String'], key: Scalars['String'], steam_id: Scalars['bigint']} }) + /** delete data from the table: "notifications" */ + delete_notifications?: (notifications_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: notifications_bool_exp} }) + /** delete single row from the table: "notifications" */ + delete_notifications_by_pk?: (notificationsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "pending_match_import_players" */ + delete_pending_match_import_players?: (pending_match_import_players_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: pending_match_import_players_bool_exp} }) + /** delete single row from the table: "pending_match_import_players" */ + delete_pending_match_import_players_by_pk?: (pending_match_import_playersGenqlSelection & { __args: {steam_id: Scalars['bigint'], valve_match_id: Scalars['numeric']} }) + /** delete data from the table: "pending_match_imports" */ + delete_pending_match_imports?: (pending_match_imports_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: pending_match_imports_bool_exp} }) + /** delete single row from the table: "pending_match_imports" */ + delete_pending_match_imports_by_pk?: (pending_match_importsGenqlSelection & { __args: {valve_match_id: Scalars['numeric']} }) + /** delete data from the table: "player_aim_stats_demo" */ + delete_player_aim_stats_demo?: (player_aim_stats_demo_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: player_aim_stats_demo_bool_exp} }) + /** delete single row from the table: "player_aim_stats_demo" */ + delete_player_aim_stats_demo_by_pk?: (player_aim_stats_demoGenqlSelection & { __args: {attacker_steam_id: Scalars['bigint'], match_map_id: Scalars['uuid']} }) + /** delete data from the table: "player_aim_weapon_stats" */ + delete_player_aim_weapon_stats?: (player_aim_weapon_stats_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: player_aim_weapon_stats_bool_exp} }) + /** delete single row from the table: "player_aim_weapon_stats" */ + delete_player_aim_weapon_stats_by_pk?: (player_aim_weapon_statsGenqlSelection & { __args: {match_map_id: Scalars['uuid'], steam_id: Scalars['bigint'], weapon_class: Scalars['String']} }) + /** delete data from the table: "player_assists" */ + delete_player_assists?: (player_assists_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: player_assists_bool_exp} }) + /** delete single row from the table: "player_assists" */ + delete_player_assists_by_pk?: (player_assistsGenqlSelection & { __args: {attacked_steam_id: Scalars['bigint'], attacker_steam_id: Scalars['bigint'], match_map_id: Scalars['uuid'], time: Scalars['timestamptz']} }) + /** delete data from the table: "player_damages" */ + delete_player_damages?: (player_damages_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: player_damages_bool_exp} }) + /** delete single row from the table: "player_damages" */ + delete_player_damages_by_pk?: (player_damagesGenqlSelection & { __args: {id: Scalars['uuid'], match_map_id: Scalars['uuid'], time: Scalars['timestamptz']} }) + /** delete data from the table: "player_elo" */ + delete_player_elo?: (player_elo_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: player_elo_bool_exp} }) + /** delete single row from the table: "player_elo" */ + delete_player_elo_by_pk?: (player_eloGenqlSelection & { __args: {match_id: Scalars['uuid'], steam_id: Scalars['bigint'], type: e_match_types_enum} }) + /** delete data from the table: "player_faceit_rank_history" */ + delete_player_faceit_rank_history?: (player_faceit_rank_history_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: player_faceit_rank_history_bool_exp} }) + /** delete single row from the table: "player_faceit_rank_history" */ + delete_player_faceit_rank_history_by_pk?: (player_faceit_rank_historyGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "player_flashes" */ + delete_player_flashes?: (player_flashes_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: player_flashes_bool_exp} }) + /** delete single row from the table: "player_flashes" */ + delete_player_flashes_by_pk?: (player_flashesGenqlSelection & { __args: {attacked_steam_id: Scalars['bigint'], attacker_steam_id: Scalars['bigint'], match_map_id: Scalars['uuid'], time: Scalars['timestamptz']} }) + /** delete data from the table: "player_kills" */ + delete_player_kills?: (player_kills_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: player_kills_bool_exp} }) + /** delete single row from the table: "player_kills" */ + delete_player_kills_by_pk?: (player_killsGenqlSelection & { __args: {attacked_steam_id: Scalars['bigint'], attacker_steam_id: Scalars['bigint'], match_map_id: Scalars['uuid'], time: Scalars['timestamptz']} }) + /** delete data from the table: "player_kills_by_weapon" */ + delete_player_kills_by_weapon?: (player_kills_by_weapon_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: player_kills_by_weapon_bool_exp} }) + /** delete single row from the table: "player_kills_by_weapon" */ + delete_player_kills_by_weapon_by_pk?: (player_kills_by_weaponGenqlSelection & { __args: {player_steam_id: Scalars['bigint'], with: Scalars['String']} }) + /** delete data from the table: "player_leaderboard_rank" */ + delete_player_leaderboard_rank?: (player_leaderboard_rank_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: player_leaderboard_rank_bool_exp} }) + /** delete data from the table: "player_match_map_stats" */ + delete_player_match_map_stats?: (player_match_map_stats_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: player_match_map_stats_bool_exp} }) + /** delete single row from the table: "player_match_map_stats" */ + delete_player_match_map_stats_by_pk?: (player_match_map_statsGenqlSelection & { __args: {match_map_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) + /** delete data from the table: "player_objectives" */ + delete_player_objectives?: (player_objectives_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: player_objectives_bool_exp} }) + /** delete single row from the table: "player_objectives" */ + delete_player_objectives_by_pk?: (player_objectivesGenqlSelection & { __args: {match_map_id: Scalars['uuid'], player_steam_id: Scalars['bigint'], time: Scalars['timestamptz']} }) + /** delete data from the table: "player_premier_rank_history" */ + delete_player_premier_rank_history?: (player_premier_rank_history_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: player_premier_rank_history_bool_exp} }) + /** delete single row from the table: "player_premier_rank_history" */ + delete_player_premier_rank_history_by_pk?: (player_premier_rank_historyGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "player_sanctions" */ + delete_player_sanctions?: (player_sanctions_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: player_sanctions_bool_exp} }) + /** delete single row from the table: "player_sanctions" */ + delete_player_sanctions_by_pk?: (player_sanctionsGenqlSelection & { __args: {created_at: Scalars['timestamptz'], id: Scalars['uuid']} }) + /** delete data from the table: "player_season_stats" */ + delete_player_season_stats?: (player_season_stats_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: player_season_stats_bool_exp} }) + /** delete single row from the table: "player_season_stats" */ + delete_player_season_stats_by_pk?: (player_season_statsGenqlSelection & { __args: {player_steam_id: Scalars['bigint'], season_id: Scalars['uuid']} }) + /** delete data from the table: "player_stats" */ + delete_player_stats?: (player_stats_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: player_stats_bool_exp} }) + /** delete single row from the table: "player_stats" */ + delete_player_stats_by_pk?: (player_statsGenqlSelection & { __args: {player_steam_id: Scalars['bigint']} }) + /** delete data from the table: "player_steam_bot_friend" */ + delete_player_steam_bot_friend?: (player_steam_bot_friend_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: player_steam_bot_friend_bool_exp} }) + /** delete single row from the table: "player_steam_bot_friend" */ + delete_player_steam_bot_friend_by_pk?: (player_steam_bot_friendGenqlSelection & { __args: {steam_id: Scalars['bigint']} }) + /** delete data from the table: "player_steam_match_auth" */ + delete_player_steam_match_auth?: (player_steam_match_auth_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: player_steam_match_auth_bool_exp} }) + /** delete single row from the table: "player_steam_match_auth" */ + delete_player_steam_match_auth_by_pk?: (player_steam_match_authGenqlSelection & { __args: {steam_id: Scalars['bigint']} }) + /** delete data from the table: "player_unused_utility" */ + delete_player_unused_utility?: (player_unused_utility_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: player_unused_utility_bool_exp} }) + /** delete single row from the table: "player_unused_utility" */ + delete_player_unused_utility_by_pk?: (player_unused_utilityGenqlSelection & { __args: {match_map_id: Scalars['uuid'], player_steam_id: Scalars['bigint']} }) + /** delete data from the table: "player_utility" */ + delete_player_utility?: (player_utility_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: player_utility_bool_exp} }) + /** delete single row from the table: "player_utility" */ + delete_player_utility_by_pk?: (player_utilityGenqlSelection & { __args: {attacker_steam_id: Scalars['bigint'], match_map_id: Scalars['uuid'], time: Scalars['timestamptz']} }) + /** delete data from the table: "players" */ + delete_players?: (players_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: players_bool_exp} }) + /** delete single row from the table: "players" */ + delete_players_by_pk?: (playersGenqlSelection & { __args: {steam_id: Scalars['bigint']} }) + /** delete data from the table: "plugin_versions" */ + delete_plugin_versions?: (plugin_versions_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: plugin_versions_bool_exp} }) + /** delete single row from the table: "plugin_versions" */ + delete_plugin_versions_by_pk?: (plugin_versionsGenqlSelection & { __args: {runtime: e_plugin_runtimes_enum, version: Scalars['String']} }) + /** delete data from the table: "push_subscriptions" */ + delete_push_subscriptions?: (push_subscriptions_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: push_subscriptions_bool_exp} }) + /** delete single row from the table: "push_subscriptions" */ + delete_push_subscriptions_by_pk?: (push_subscriptionsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "v_role_permissions" */ + delete_role_permissions?: (role_permissions_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: role_permissions_bool_exp} }) + /** delete data from the table: "seasons" */ + delete_seasons?: (seasons_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: seasons_bool_exp} }) + /** delete single row from the table: "seasons" */ + delete_seasons_by_pk?: (seasonsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "server_regions" */ + delete_server_regions?: (server_regions_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: server_regions_bool_exp} }) + /** delete single row from the table: "server_regions" */ + delete_server_regions_by_pk?: (server_regionsGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "servers" */ + delete_servers?: (servers_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: servers_bool_exp} }) + /** delete single row from the table: "servers" */ + delete_servers_by_pk?: (serversGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "settings" */ + delete_settings?: (settings_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: settings_bool_exp} }) + /** delete single row from the table: "settings" */ + delete_settings_by_pk?: (settingsGenqlSelection & { __args: {name: Scalars['String']} }) + /** delete data from the table: "steam_account_claims" */ + delete_steam_account_claims?: (steam_account_claims_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: steam_account_claims_bool_exp} }) + /** delete single row from the table: "steam_account_claims" */ + delete_steam_account_claims_by_pk?: (steam_account_claimsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "steam_accounts" */ + delete_steam_accounts?: (steam_accounts_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: steam_accounts_bool_exp} }) + /** delete single row from the table: "steam_accounts" */ + delete_steam_accounts_by_pk?: (steam_accountsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "system_alerts" */ + delete_system_alerts?: (system_alerts_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: system_alerts_bool_exp} }) + /** delete single row from the table: "system_alerts" */ + delete_system_alerts_by_pk?: (system_alertsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "team_invites" */ + delete_team_invites?: (team_invites_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: team_invites_bool_exp} }) + /** delete single row from the table: "team_invites" */ + delete_team_invites_by_pk?: (team_invitesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "team_roster" */ + delete_team_roster?: (team_roster_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: team_roster_bool_exp} }) + /** delete single row from the table: "team_roster" */ + delete_team_roster_by_pk?: (team_rosterGenqlSelection & { __args: {player_steam_id: Scalars['bigint'], team_id: Scalars['uuid']} }) + /** delete data from the table: "team_scrim_alerts" */ + delete_team_scrim_alerts?: (team_scrim_alerts_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: team_scrim_alerts_bool_exp} }) + /** delete single row from the table: "team_scrim_alerts" */ + delete_team_scrim_alerts_by_pk?: (team_scrim_alertsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "team_scrim_availability" */ + delete_team_scrim_availability?: (team_scrim_availability_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: team_scrim_availability_bool_exp} }) + /** delete single row from the table: "team_scrim_availability" */ + delete_team_scrim_availability_by_pk?: (team_scrim_availabilityGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "team_scrim_request_proposals" */ + delete_team_scrim_request_proposals?: (team_scrim_request_proposals_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: team_scrim_request_proposals_bool_exp} }) + /** delete single row from the table: "team_scrim_request_proposals" */ + delete_team_scrim_request_proposals_by_pk?: (team_scrim_request_proposalsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "team_scrim_requests" */ + delete_team_scrim_requests?: (team_scrim_requests_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: team_scrim_requests_bool_exp} }) + /** delete single row from the table: "team_scrim_requests" */ + delete_team_scrim_requests_by_pk?: (team_scrim_requestsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "team_scrim_settings" */ + delete_team_scrim_settings?: (team_scrim_settings_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: team_scrim_settings_bool_exp} }) + /** delete single row from the table: "team_scrim_settings" */ + delete_team_scrim_settings_by_pk?: (team_scrim_settingsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "team_suggestions" */ + delete_team_suggestions?: (team_suggestions_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: team_suggestions_bool_exp} }) + /** delete single row from the table: "team_suggestions" */ + delete_team_suggestions_by_pk?: (team_suggestionsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "teams" */ + delete_teams?: (teams_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: teams_bool_exp} }) + /** delete single row from the table: "teams" */ + delete_teams_by_pk?: (teamsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "tournament_awards" */ + delete_tournament_awards?: (tournament_awards_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: tournament_awards_bool_exp} }) + /** delete single row from the table: "tournament_awards" */ + delete_tournament_awards_by_pk?: (tournament_awardsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "tournament_brackets" */ + delete_tournament_brackets?: (tournament_brackets_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: tournament_brackets_bool_exp} }) + /** delete single row from the table: "tournament_brackets" */ + delete_tournament_brackets_by_pk?: (tournament_bracketsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "tournament_categories" */ + delete_tournament_categories?: (tournament_categories_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: tournament_categories_bool_exp} }) + /** delete single row from the table: "tournament_categories" */ + delete_tournament_categories_by_pk?: (tournament_categoriesGenqlSelection & { __args: {category: e_tournament_categories_enum, tournament_id: Scalars['uuid']} }) + /** delete data from the table: "tournament_free_agents" */ + delete_tournament_free_agents?: (tournament_free_agents_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: tournament_free_agents_bool_exp} }) + /** delete single row from the table: "tournament_free_agents" */ + delete_tournament_free_agents_by_pk?: (tournament_free_agentsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "tournament_invite_code_uses" */ + delete_tournament_invite_code_uses?: (tournament_invite_code_uses_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: tournament_invite_code_uses_bool_exp} }) + /** delete single row from the table: "tournament_invite_code_uses" */ + delete_tournament_invite_code_uses_by_pk?: (tournament_invite_code_usesGenqlSelection & { __args: {invite_code_id: Scalars['uuid'], player_steam_id: Scalars['bigint']} }) + /** delete data from the table: "tournament_invite_codes" */ + delete_tournament_invite_codes?: (tournament_invite_codes_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: tournament_invite_codes_bool_exp} }) + /** delete single row from the table: "tournament_invite_codes" */ + delete_tournament_invite_codes_by_pk?: (tournament_invite_codesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "tournament_invites" */ + delete_tournament_invites?: (tournament_invites_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: tournament_invites_bool_exp} }) + /** delete single row from the table: "tournament_invites" */ + delete_tournament_invites_by_pk?: (tournament_invitesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "tournament_leaderboard_entries" */ + delete_tournament_leaderboard_entries?: (tournament_leaderboard_entries_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: tournament_leaderboard_entries_bool_exp} }) + /** delete data from the table: "tournament_no_shows" */ + delete_tournament_no_shows?: (tournament_no_shows_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: tournament_no_shows_bool_exp} }) + /** delete single row from the table: "tournament_no_shows" */ + delete_tournament_no_shows_by_pk?: (tournament_no_showsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "tournament_organizer_teams" */ + delete_tournament_organizer_teams?: (tournament_organizer_teams_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: tournament_organizer_teams_bool_exp} }) + /** delete single row from the table: "tournament_organizer_teams" */ + delete_tournament_organizer_teams_by_pk?: (tournament_organizer_teamsGenqlSelection & { __args: {team_id: Scalars['uuid'], tournament_id: Scalars['uuid']} }) + /** delete data from the table: "tournament_organizers" */ + delete_tournament_organizers?: (tournament_organizers_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: tournament_organizers_bool_exp} }) + /** delete single row from the table: "tournament_organizers" */ + delete_tournament_organizers_by_pk?: (tournament_organizersGenqlSelection & { __args: {steam_id: Scalars['bigint'], tournament_id: Scalars['uuid']} }) + /** delete data from the table: "tournament_prizes" */ + delete_tournament_prizes?: (tournament_prizes_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: tournament_prizes_bool_exp} }) + /** delete single row from the table: "tournament_prizes" */ + delete_tournament_prizes_by_pk?: (tournament_prizesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "tournament_registration_unlocks" */ + delete_tournament_registration_unlocks?: (tournament_registration_unlocks_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: tournament_registration_unlocks_bool_exp} }) + /** delete data from the table: "tournament_stage_windows" */ + delete_tournament_stage_windows?: (tournament_stage_windows_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: tournament_stage_windows_bool_exp} }) + /** delete single row from the table: "tournament_stage_windows" */ + delete_tournament_stage_windows_by_pk?: (tournament_stage_windowsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "tournament_stages" */ + delete_tournament_stages?: (tournament_stages_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: tournament_stages_bool_exp} }) + /** delete single row from the table: "tournament_stages" */ + delete_tournament_stages_by_pk?: (tournament_stagesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "tournament_team_invites" */ + delete_tournament_team_invites?: (tournament_team_invites_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: tournament_team_invites_bool_exp} }) + /** delete single row from the table: "tournament_team_invites" */ + delete_tournament_team_invites_by_pk?: (tournament_team_invitesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "tournament_team_roster" */ + delete_tournament_team_roster?: (tournament_team_roster_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: tournament_team_roster_bool_exp} }) + /** delete single row from the table: "tournament_team_roster" */ + delete_tournament_team_roster_by_pk?: (tournament_team_rosterGenqlSelection & { __args: {player_steam_id: Scalars['bigint'], tournament_id: Scalars['uuid']} }) + /** delete data from the table: "tournament_teams" */ + delete_tournament_teams?: (tournament_teams_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: tournament_teams_bool_exp} }) + /** delete single row from the table: "tournament_teams" */ + delete_tournament_teams_by_pk?: (tournament_teamsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "tournaments" */ + delete_tournaments?: (tournaments_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: tournaments_bool_exp} }) + /** delete single row from the table: "tournaments" */ + delete_tournaments_by_pk?: (tournamentsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "utility_collection_items" */ + delete_utility_collection_items?: (utility_collection_items_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: utility_collection_items_bool_exp} }) + /** delete single row from the table: "utility_collection_items" */ + delete_utility_collection_items_by_pk?: (utility_collection_itemsGenqlSelection & { __args: {collection_id: Scalars['uuid'], utility_lineup_id: Scalars['uuid']} }) + /** delete data from the table: "utility_collections" */ + delete_utility_collections?: (utility_collections_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: utility_collections_bool_exp} }) + /** delete single row from the table: "utility_collections" */ + delete_utility_collections_by_pk?: (utility_collectionsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "utility_demo_mines" */ + delete_utility_demo_mines?: (utility_demo_mines_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: utility_demo_mines_bool_exp} }) + /** delete single row from the table: "utility_demo_mines" */ + delete_utility_demo_mines_by_pk?: (utility_demo_minesGenqlSelection & { __args: {match_map_demo_id: Scalars['uuid']} }) + /** delete data from the table: "utility_demo_throws" */ + delete_utility_demo_throws?: (utility_demo_throws_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: utility_demo_throws_bool_exp} }) + /** delete single row from the table: "utility_demo_throws" */ + delete_utility_demo_throws_by_pk?: (utility_demo_throwsGenqlSelection & { __args: {grenade_id: Scalars['Int'], match_map_demo_id: Scalars['uuid']} }) + /** delete data from the table: "utility_drift_results" */ + delete_utility_drift_results?: (utility_drift_results_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: utility_drift_results_bool_exp} }) + /** delete single row from the table: "utility_drift_results" */ + delete_utility_drift_results_by_pk?: (utility_drift_resultsGenqlSelection & { __args: {utility_drift_scan_id: Scalars['uuid'], utility_lineup_id: Scalars['uuid']} }) + /** delete data from the table: "utility_drift_scans" */ + delete_utility_drift_scans?: (utility_drift_scans_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: utility_drift_scans_bool_exp} }) + /** delete single row from the table: "utility_drift_scans" */ + delete_utility_drift_scans_by_pk?: (utility_drift_scansGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "utility_lineup_favorites" */ + delete_utility_lineup_favorites?: (utility_lineup_favorites_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: utility_lineup_favorites_bool_exp} }) + /** delete single row from the table: "utility_lineup_favorites" */ + delete_utility_lineup_favorites_by_pk?: (utility_lineup_favoritesGenqlSelection & { __args: {steam_id: Scalars['bigint'], utility_lineup_id: Scalars['uuid']} }) + /** delete data from the table: "utility_lineup_progress" */ + delete_utility_lineup_progress?: (utility_lineup_progress_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: utility_lineup_progress_bool_exp} }) + /** delete single row from the table: "utility_lineup_progress" */ + delete_utility_lineup_progress_by_pk?: (utility_lineup_progressGenqlSelection & { __args: {steam_id: Scalars['bigint'], utility_lineup_id: Scalars['uuid']} }) + /** delete data from the table: "utility_lineup_renders" */ + delete_utility_lineup_renders?: (utility_lineup_renders_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: utility_lineup_renders_bool_exp} }) + /** delete single row from the table: "utility_lineup_renders" */ + delete_utility_lineup_renders_by_pk?: (utility_lineup_rendersGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "utility_lineup_repairs" */ + delete_utility_lineup_repairs?: (utility_lineup_repairs_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: utility_lineup_repairs_bool_exp} }) + /** delete single row from the table: "utility_lineup_repairs" */ + delete_utility_lineup_repairs_by_pk?: (utility_lineup_repairsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "utility_lineup_votes" */ + delete_utility_lineup_votes?: (utility_lineup_votes_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: utility_lineup_votes_bool_exp} }) + /** delete single row from the table: "utility_lineup_votes" */ + delete_utility_lineup_votes_by_pk?: (utility_lineup_votesGenqlSelection & { __args: {steam_id: Scalars['bigint'], utility_lineup_id: Scalars['uuid']} }) + /** delete data from the table: "utility_lineups" */ + delete_utility_lineups?: (utility_lineups_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: utility_lineups_bool_exp} }) + /** delete single row from the table: "utility_lineups" */ + delete_utility_lineups_by_pk?: (utility_lineupsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "utility_meta_lineups" */ + delete_utility_meta_lineups?: (utility_meta_lineups_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: utility_meta_lineups_bool_exp} }) + /** delete single row from the table: "utility_meta_lineups" */ + delete_utility_meta_lineups_by_pk?: (utility_meta_lineupsGenqlSelection & { __args: {lineup_bucket: Scalars['String']} }) + /** delete data from the table: "utility_playbook_steps" */ + delete_utility_playbook_steps?: (utility_playbook_steps_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: utility_playbook_steps_bool_exp} }) + /** delete single row from the table: "utility_playbook_steps" */ + delete_utility_playbook_steps_by_pk?: (utility_playbook_stepsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "utility_playbooks" */ + delete_utility_playbooks?: (utility_playbooks_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: utility_playbooks_bool_exp} }) + /** delete single row from the table: "utility_playbooks" */ + delete_utility_playbooks_by_pk?: (utility_playbooksGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "utility_practice_invites" */ + delete_utility_practice_invites?: (utility_practice_invites_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: utility_practice_invites_bool_exp} }) + /** delete single row from the table: "utility_practice_invites" */ + delete_utility_practice_invites_by_pk?: (utility_practice_invitesGenqlSelection & { __args: {steam_id: Scalars['bigint'], utility_practice_session_id: Scalars['uuid']} }) + /** delete data from the table: "utility_practice_sessions" */ + delete_utility_practice_sessions?: (utility_practice_sessions_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: utility_practice_sessions_bool_exp} }) + /** delete single row from the table: "utility_practice_sessions" */ + delete_utility_practice_sessions_by_pk?: (utility_practice_sessionsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "v_match_captains" */ + delete_v_match_captains?: (v_match_captains_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: v_match_captains_bool_exp} }) + /** delete data from the table: "v_match_map_backup_rounds" */ + delete_v_match_map_backup_rounds?: (v_match_map_backup_rounds_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: v_match_map_backup_rounds_bool_exp} }) + /** delete data from the table: "v_player_match_map_hltv" */ + delete_v_player_match_map_hltv?: (v_player_match_map_hltv_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: v_player_match_map_hltv_bool_exp} }) + /** delete data from the table: "v_pool_maps" */ + delete_v_pool_maps?: (v_pool_maps_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: v_pool_maps_bool_exp} }) + /** delete data from the table: "v_team_stage_results" */ + delete_v_team_stage_results?: (v_team_stage_results_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: v_team_stage_results_bool_exp} }) + /** delete single row from the table: "v_team_stage_results" */ + delete_v_team_stage_results_by_pk?: (v_team_stage_resultsGenqlSelection & { __args: {tournament_stage_id: Scalars['uuid'], tournament_team_id: Scalars['uuid']} }) + denyInvite?: (SuccessOutputGenqlSelection & { __args: {invite_id: Scalars['uuid'], type: Scalars['String']} }) + denyNameChange?: (SuccessOutputGenqlSelection & { __args: {name: Scalars['String'], steam_id: Scalars['bigint']} }) + /** Organizer regenerates the free agent teams and re-seeds */ + draftTournamentTeams?: (TournamentDraftOutputGenqlSelection & { __args: {tournament_id: Scalars['uuid']} }) + /** Organizer pushes the check-in deadline out and reopens registration */ + extendTournamentCheckIn?: (SuccessOutputGenqlSelection & { __args: {minutes: Scalars['Int'], tournament_id: Scalars['uuid']} }) + forfeitMatch?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid'], winning_lineup_id: Scalars['uuid']} }) + /** Copy a lineup you can see into your own library */ + forkUtilityLineup?: (UtilityLineupOutputGenqlSelection & { __args: {collection_id?: (Scalars['uuid'] | null), name?: (Scalars['String'] | null), utility_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)} }) + /** Seed the utility library from an operator-supplied payload */ + importUtilityLineups?: (UtilityImportOutputGenqlSelection & { __args: {dry_run?: (Scalars['Boolean'] | null), payload: Scalars['jsonb']} }) + /** insert data into the table: "_map_pool" */ + insert__map_pool?: (_map_pool_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: _map_pool_insert_input[], + /** upsert condition */ + on_conflict?: (_map_pool_on_conflict | null)} }) + /** insert a single row into the table: "_map_pool" */ + insert__map_pool_one?: (_map_poolGenqlSelection & { __args: { + /** the row to be inserted */ + object: _map_pool_insert_input, + /** upsert condition */ + on_conflict?: (_map_pool_on_conflict | null)} }) + /** insert data into the table: "abandoned_matches" */ + insert_abandoned_matches?: (abandoned_matches_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: abandoned_matches_insert_input[], + /** upsert condition */ + on_conflict?: (abandoned_matches_on_conflict | null)} }) + /** insert a single row into the table: "abandoned_matches" */ + insert_abandoned_matches_one?: (abandoned_matchesGenqlSelection & { __args: { + /** the row to be inserted */ + object: abandoned_matches_insert_input, + /** upsert condition */ + on_conflict?: (abandoned_matches_on_conflict | null)} }) + /** insert data into the table: "api_keys" */ + insert_api_keys?: (api_keys_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: api_keys_insert_input[], + /** upsert condition */ + on_conflict?: (api_keys_on_conflict | null)} }) + /** insert a single row into the table: "api_keys" */ + insert_api_keys_one?: (api_keysGenqlSelection & { __args: { + /** the row to be inserted */ + object: api_keys_insert_input, + /** upsert condition */ + on_conflict?: (api_keys_on_conflict | null)} }) + /** insert data into the table: "award_recipients" */ + insert_award_recipients?: (award_recipients_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: award_recipients_insert_input[], + /** upsert condition */ + on_conflict?: (award_recipients_on_conflict | null)} }) + /** insert a single row into the table: "award_recipients" */ + insert_award_recipients_one?: (award_recipientsGenqlSelection & { __args: { + /** the row to be inserted */ + object: award_recipients_insert_input, + /** upsert condition */ + on_conflict?: (award_recipients_on_conflict | null)} }) + /** insert data into the table: "awards" */ + insert_awards?: (awards_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: awards_insert_input[], + /** upsert condition */ + on_conflict?: (awards_on_conflict | null)} }) + /** insert a single row into the table: "awards" */ + insert_awards_one?: (awardsGenqlSelection & { __args: { + /** the row to be inserted */ + object: awards_insert_input, + /** upsert condition */ + on_conflict?: (awards_on_conflict | null)} }) + /** insert data into the table: "chat_read_state" */ + insert_chat_read_state?: (chat_read_state_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: chat_read_state_insert_input[], + /** upsert condition */ + on_conflict?: (chat_read_state_on_conflict | null)} }) + /** insert a single row into the table: "chat_read_state" */ + insert_chat_read_state_one?: (chat_read_stateGenqlSelection & { __args: { + /** the row to be inserted */ + object: chat_read_state_insert_input, + /** upsert condition */ + on_conflict?: (chat_read_state_on_conflict | null)} }) + /** insert data into the table: "clip_render_jobs" */ + insert_clip_render_jobs?: (clip_render_jobs_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: clip_render_jobs_insert_input[], + /** upsert condition */ + on_conflict?: (clip_render_jobs_on_conflict | null)} }) + /** insert a single row into the table: "clip_render_jobs" */ + insert_clip_render_jobs_one?: (clip_render_jobsGenqlSelection & { __args: { + /** the row to be inserted */ + object: clip_render_jobs_insert_input, + /** upsert condition */ + on_conflict?: (clip_render_jobs_on_conflict | null)} }) + /** insert data into the table: "custom_pages" */ + insert_custom_pages?: (custom_pages_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: custom_pages_insert_input[], + /** upsert condition */ + on_conflict?: (custom_pages_on_conflict | null)} }) + /** insert a single row into the table: "custom_pages" */ + insert_custom_pages_one?: (custom_pagesGenqlSelection & { __args: { + /** the row to be inserted */ + object: custom_pages_insert_input, + /** upsert condition */ + on_conflict?: (custom_pages_on_conflict | null)} }) + /** insert data into the table: "db_backups" */ + insert_db_backups?: (db_backups_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: db_backups_insert_input[], + /** upsert condition */ + on_conflict?: (db_backups_on_conflict | null)} }) + /** insert a single row into the table: "db_backups" */ + insert_db_backups_one?: (db_backupsGenqlSelection & { __args: { + /** the row to be inserted */ + object: db_backups_insert_input, + /** upsert condition */ + on_conflict?: (db_backups_on_conflict | null)} }) + /** insert data into the table: "direct_conversations" */ + insert_direct_conversations?: (direct_conversations_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: direct_conversations_insert_input[], + /** upsert condition */ + on_conflict?: (direct_conversations_on_conflict | null)} }) + /** insert a single row into the table: "direct_conversations" */ + insert_direct_conversations_one?: (direct_conversationsGenqlSelection & { __args: { + /** the row to be inserted */ + object: direct_conversations_insert_input, + /** upsert condition */ + on_conflict?: (direct_conversations_on_conflict | null)} }) + /** insert data into the table: "direct_messages" */ + insert_direct_messages?: (direct_messages_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: direct_messages_insert_input[], + /** upsert condition */ + on_conflict?: (direct_messages_on_conflict | null)} }) + /** insert a single row into the table: "direct_messages" */ + insert_direct_messages_one?: (direct_messagesGenqlSelection & { __args: { + /** the row to be inserted */ + object: direct_messages_insert_input, + /** upsert condition */ + on_conflict?: (direct_messages_on_conflict | null)} }) + /** insert data into the table: "draft_game_picks" */ + insert_draft_game_picks?: (draft_game_picks_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: draft_game_picks_insert_input[], + /** upsert condition */ + on_conflict?: (draft_game_picks_on_conflict | null)} }) + /** insert a single row into the table: "draft_game_picks" */ + insert_draft_game_picks_one?: (draft_game_picksGenqlSelection & { __args: { + /** the row to be inserted */ + object: draft_game_picks_insert_input, + /** upsert condition */ + on_conflict?: (draft_game_picks_on_conflict | null)} }) + /** insert data into the table: "draft_game_players" */ + insert_draft_game_players?: (draft_game_players_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: draft_game_players_insert_input[], + /** upsert condition */ + on_conflict?: (draft_game_players_on_conflict | null)} }) + /** insert a single row into the table: "draft_game_players" */ + insert_draft_game_players_one?: (draft_game_playersGenqlSelection & { __args: { + /** the row to be inserted */ + object: draft_game_players_insert_input, + /** upsert condition */ + on_conflict?: (draft_game_players_on_conflict | null)} }) + /** insert data into the table: "draft_games" */ + insert_draft_games?: (draft_games_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: draft_games_insert_input[], + /** upsert condition */ + on_conflict?: (draft_games_on_conflict | null)} }) + /** insert a single row into the table: "draft_games" */ + insert_draft_games_one?: (draft_gamesGenqlSelection & { __args: { + /** the row to be inserted */ + object: draft_games_insert_input, + /** upsert condition */ + on_conflict?: (draft_games_on_conflict | null)} }) + /** insert data into the table: "e_award_sources" */ + insert_e_award_sources?: (e_award_sources_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_award_sources_insert_input[], + /** upsert condition */ + on_conflict?: (e_award_sources_on_conflict | null)} }) + /** insert a single row into the table: "e_award_sources" */ + insert_e_award_sources_one?: (e_award_sourcesGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_award_sources_insert_input, + /** upsert condition */ + on_conflict?: (e_award_sources_on_conflict | null)} }) + /** insert data into the table: "e_award_tiers" */ + insert_e_award_tiers?: (e_award_tiers_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_award_tiers_insert_input[], + /** upsert condition */ + on_conflict?: (e_award_tiers_on_conflict | null)} }) + /** insert a single row into the table: "e_award_tiers" */ + insert_e_award_tiers_one?: (e_award_tiersGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_award_tiers_insert_input, + /** upsert condition */ + on_conflict?: (e_award_tiers_on_conflict | null)} }) + /** insert data into the table: "e_check_in_settings" */ + insert_e_check_in_settings?: (e_check_in_settings_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_check_in_settings_insert_input[], + /** upsert condition */ + on_conflict?: (e_check_in_settings_on_conflict | null)} }) + /** insert a single row into the table: "e_check_in_settings" */ + insert_e_check_in_settings_one?: (e_check_in_settingsGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_check_in_settings_insert_input, + /** upsert condition */ + on_conflict?: (e_check_in_settings_on_conflict | null)} }) + /** insert data into the table: "e_draft_game_captain_selection" */ + insert_e_draft_game_captain_selection?: (e_draft_game_captain_selection_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_draft_game_captain_selection_insert_input[], + /** upsert condition */ + on_conflict?: (e_draft_game_captain_selection_on_conflict | null)} }) + /** insert a single row into the table: "e_draft_game_captain_selection" */ + insert_e_draft_game_captain_selection_one?: (e_draft_game_captain_selectionGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_draft_game_captain_selection_insert_input, + /** upsert condition */ + on_conflict?: (e_draft_game_captain_selection_on_conflict | null)} }) + /** insert data into the table: "e_draft_game_draft_order" */ + insert_e_draft_game_draft_order?: (e_draft_game_draft_order_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_draft_game_draft_order_insert_input[], + /** upsert condition */ + on_conflict?: (e_draft_game_draft_order_on_conflict | null)} }) + /** insert a single row into the table: "e_draft_game_draft_order" */ + insert_e_draft_game_draft_order_one?: (e_draft_game_draft_orderGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_draft_game_draft_order_insert_input, + /** upsert condition */ + on_conflict?: (e_draft_game_draft_order_on_conflict | null)} }) + /** insert data into the table: "e_draft_game_mode" */ + insert_e_draft_game_mode?: (e_draft_game_mode_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_draft_game_mode_insert_input[], + /** upsert condition */ + on_conflict?: (e_draft_game_mode_on_conflict | null)} }) + /** insert a single row into the table: "e_draft_game_mode" */ + insert_e_draft_game_mode_one?: (e_draft_game_modeGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_draft_game_mode_insert_input, + /** upsert condition */ + on_conflict?: (e_draft_game_mode_on_conflict | null)} }) + /** insert data into the table: "e_draft_game_player_status" */ + insert_e_draft_game_player_status?: (e_draft_game_player_status_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_draft_game_player_status_insert_input[], + /** upsert condition */ + on_conflict?: (e_draft_game_player_status_on_conflict | null)} }) + /** insert a single row into the table: "e_draft_game_player_status" */ + insert_e_draft_game_player_status_one?: (e_draft_game_player_statusGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_draft_game_player_status_insert_input, + /** upsert condition */ + on_conflict?: (e_draft_game_player_status_on_conflict | null)} }) + /** insert data into the table: "e_draft_game_status" */ + insert_e_draft_game_status?: (e_draft_game_status_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_draft_game_status_insert_input[], + /** upsert condition */ + on_conflict?: (e_draft_game_status_on_conflict | null)} }) + /** insert a single row into the table: "e_draft_game_status" */ + insert_e_draft_game_status_one?: (e_draft_game_statusGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_draft_game_status_insert_input, + /** upsert condition */ + on_conflict?: (e_draft_game_status_on_conflict | null)} }) + /** insert data into the table: "e_event_media_access" */ + insert_e_event_media_access?: (e_event_media_access_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_event_media_access_insert_input[], + /** upsert condition */ + on_conflict?: (e_event_media_access_on_conflict | null)} }) + /** insert a single row into the table: "e_event_media_access" */ + insert_e_event_media_access_one?: (e_event_media_accessGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_event_media_access_insert_input, + /** upsert condition */ + on_conflict?: (e_event_media_access_on_conflict | null)} }) + /** insert data into the table: "e_event_visibility" */ + insert_e_event_visibility?: (e_event_visibility_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_event_visibility_insert_input[], + /** upsert condition */ + on_conflict?: (e_event_visibility_on_conflict | null)} }) + /** insert a single row into the table: "e_event_visibility" */ + insert_e_event_visibility_one?: (e_event_visibilityGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_event_visibility_insert_input, + /** upsert condition */ + on_conflict?: (e_event_visibility_on_conflict | null)} }) + /** insert data into the table: "e_friend_status" */ + insert_e_friend_status?: (e_friend_status_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_friend_status_insert_input[], + /** upsert condition */ + on_conflict?: (e_friend_status_on_conflict | null)} }) + /** insert a single row into the table: "e_friend_status" */ + insert_e_friend_status_one?: (e_friend_statusGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_friend_status_insert_input, + /** upsert condition */ + on_conflict?: (e_friend_status_on_conflict | null)} }) + /** insert data into the table: "e_game_cfg_types" */ + insert_e_game_cfg_types?: (e_game_cfg_types_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_game_cfg_types_insert_input[], + /** upsert condition */ + on_conflict?: (e_game_cfg_types_on_conflict | null)} }) + /** insert a single row into the table: "e_game_cfg_types" */ + insert_e_game_cfg_types_one?: (e_game_cfg_typesGenqlSelection & { __args: { + /** the row to be inserted */ + 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 */ + objects: e_game_server_node_statuses_insert_input[], + /** upsert condition */ + on_conflict?: (e_game_server_node_statuses_on_conflict | null)} }) + /** insert a single row into the table: "e_game_server_node_statuses" */ + insert_e_game_server_node_statuses_one?: (e_game_server_node_statusesGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_game_server_node_statuses_insert_input, + /** upsert condition */ + on_conflict?: (e_game_server_node_statuses_on_conflict | null)} }) + /** insert data into the table: "e_league_movement_types" */ + insert_e_league_movement_types?: (e_league_movement_types_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_league_movement_types_insert_input[], + /** upsert condition */ + on_conflict?: (e_league_movement_types_on_conflict | null)} }) + /** insert a single row into the table: "e_league_movement_types" */ + insert_e_league_movement_types_one?: (e_league_movement_typesGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_league_movement_types_insert_input, + /** upsert condition */ + on_conflict?: (e_league_movement_types_on_conflict | null)} }) + /** insert data into the table: "e_league_proposal_statuses" */ + insert_e_league_proposal_statuses?: (e_league_proposal_statuses_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_league_proposal_statuses_insert_input[], + /** upsert condition */ + on_conflict?: (e_league_proposal_statuses_on_conflict | null)} }) + /** insert a single row into the table: "e_league_proposal_statuses" */ + insert_e_league_proposal_statuses_one?: (e_league_proposal_statusesGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_league_proposal_statuses_insert_input, + /** upsert condition */ + on_conflict?: (e_league_proposal_statuses_on_conflict | null)} }) + /** insert data into the table: "e_league_registration_statuses" */ + insert_e_league_registration_statuses?: (e_league_registration_statuses_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_league_registration_statuses_insert_input[], + /** upsert condition */ + on_conflict?: (e_league_registration_statuses_on_conflict | null)} }) + /** insert a single row into the table: "e_league_registration_statuses" */ + insert_e_league_registration_statuses_one?: (e_league_registration_statusesGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_league_registration_statuses_insert_input, + /** upsert condition */ + on_conflict?: (e_league_registration_statuses_on_conflict | null)} }) + /** insert data into the table: "e_league_season_statuses" */ + insert_e_league_season_statuses?: (e_league_season_statuses_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_league_season_statuses_insert_input[], + /** upsert condition */ + on_conflict?: (e_league_season_statuses_on_conflict | null)} }) + /** insert a single row into the table: "e_league_season_statuses" */ + insert_e_league_season_statuses_one?: (e_league_season_statusesGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_league_season_statuses_insert_input, + /** upsert condition */ + on_conflict?: (e_league_season_statuses_on_conflict | null)} }) + /** insert data into the table: "e_lobby_access" */ + insert_e_lobby_access?: (e_lobby_access_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_lobby_access_insert_input[], + /** upsert condition */ + on_conflict?: (e_lobby_access_on_conflict | null)} }) + /** insert a single row into the table: "e_lobby_access" */ + insert_e_lobby_access_one?: (e_lobby_accessGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_lobby_access_insert_input, + /** upsert condition */ + on_conflict?: (e_lobby_access_on_conflict | null)} }) + /** insert data into the table: "e_lobby_player_status" */ + insert_e_lobby_player_status?: (e_lobby_player_status_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_lobby_player_status_insert_input[], + /** upsert condition */ + on_conflict?: (e_lobby_player_status_on_conflict | null)} }) + /** insert a single row into the table: "e_lobby_player_status" */ + insert_e_lobby_player_status_one?: (e_lobby_player_statusGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_lobby_player_status_insert_input, + /** upsert condition */ + on_conflict?: (e_lobby_player_status_on_conflict | null)} }) + /** insert data into the table: "e_map_pool_types" */ + insert_e_map_pool_types?: (e_map_pool_types_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_map_pool_types_insert_input[], + /** upsert condition */ + on_conflict?: (e_map_pool_types_on_conflict | null)} }) + /** insert a single row into the table: "e_map_pool_types" */ + insert_e_map_pool_types_one?: (e_map_pool_typesGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_map_pool_types_insert_input, + /** upsert condition */ + on_conflict?: (e_map_pool_types_on_conflict | null)} }) + /** insert data into the table: "e_match_clip_visibility" */ + insert_e_match_clip_visibility?: (e_match_clip_visibility_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_match_clip_visibility_insert_input[], + /** upsert condition */ + on_conflict?: (e_match_clip_visibility_on_conflict | null)} }) + /** insert a single row into the table: "e_match_clip_visibility" */ + insert_e_match_clip_visibility_one?: (e_match_clip_visibilityGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_match_clip_visibility_insert_input, + /** upsert condition */ + on_conflict?: (e_match_clip_visibility_on_conflict | null)} }) + /** insert data into the table: "e_match_map_status" */ + insert_e_match_map_status?: (e_match_map_status_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_match_map_status_insert_input[], + /** upsert condition */ + on_conflict?: (e_match_map_status_on_conflict | null)} }) + /** insert a single row into the table: "e_match_map_status" */ + insert_e_match_map_status_one?: (e_match_map_statusGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_match_map_status_insert_input, + /** upsert condition */ + on_conflict?: (e_match_map_status_on_conflict | null)} }) + /** insert data into the table: "e_match_mode" */ + insert_e_match_mode?: (e_match_mode_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_match_mode_insert_input[], + /** upsert condition */ + on_conflict?: (e_match_mode_on_conflict | null)} }) + /** insert a single row into the table: "e_match_mode" */ + insert_e_match_mode_one?: (e_match_modeGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_match_mode_insert_input, + /** upsert condition */ + on_conflict?: (e_match_mode_on_conflict | null)} }) + /** insert data into the table: "e_match_party_sources" */ + insert_e_match_party_sources?: (e_match_party_sources_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_match_party_sources_insert_input[], + /** upsert condition */ + on_conflict?: (e_match_party_sources_on_conflict | null)} }) + /** insert a single row into the table: "e_match_party_sources" */ + insert_e_match_party_sources_one?: (e_match_party_sourcesGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_match_party_sources_insert_input, + /** upsert condition */ + on_conflict?: (e_match_party_sources_on_conflict | null)} }) + /** insert data into the table: "e_match_status" */ + insert_e_match_status?: (e_match_status_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_match_status_insert_input[], + /** upsert condition */ + on_conflict?: (e_match_status_on_conflict | null)} }) + /** insert a single row into the table: "e_match_status" */ + insert_e_match_status_one?: (e_match_statusGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_match_status_insert_input, + /** upsert condition */ + on_conflict?: (e_match_status_on_conflict | null)} }) + /** insert data into the table: "e_match_types" */ + insert_e_match_types?: (e_match_types_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_match_types_insert_input[], + /** upsert condition */ + on_conflict?: (e_match_types_on_conflict | null)} }) + /** insert a single row into the table: "e_match_types" */ + insert_e_match_types_one?: (e_match_typesGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_match_types_insert_input, + /** upsert condition */ + on_conflict?: (e_match_types_on_conflict | null)} }) + /** insert data into the table: "e_notification_types" */ + insert_e_notification_types?: (e_notification_types_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_notification_types_insert_input[], + /** upsert condition */ + on_conflict?: (e_notification_types_on_conflict | null)} }) + /** insert a single row into the table: "e_notification_types" */ + insert_e_notification_types_one?: (e_notification_typesGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_notification_types_insert_input, + /** upsert condition */ + on_conflict?: (e_notification_types_on_conflict | null)} }) + /** insert data into the table: "e_objective_types" */ + insert_e_objective_types?: (e_objective_types_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_objective_types_insert_input[], + /** upsert condition */ + on_conflict?: (e_objective_types_on_conflict | null)} }) + /** insert a single row into the table: "e_objective_types" */ + insert_e_objective_types_one?: (e_objective_typesGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_objective_types_insert_input, + /** upsert condition */ + on_conflict?: (e_objective_types_on_conflict | null)} }) + /** insert data into the table: "e_player_roles" */ + insert_e_player_roles?: (e_player_roles_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_player_roles_insert_input[], + /** upsert condition */ + on_conflict?: (e_player_roles_on_conflict | null)} }) + /** insert a single row into the table: "e_player_roles" */ + insert_e_player_roles_one?: (e_player_rolesGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_player_roles_insert_input, + /** upsert condition */ + on_conflict?: (e_player_roles_on_conflict | null)} }) + /** insert data into the table: "e_plugin_runtimes" */ + insert_e_plugin_runtimes?: (e_plugin_runtimes_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_plugin_runtimes_insert_input[], + /** upsert condition */ + on_conflict?: (e_plugin_runtimes_on_conflict | null)} }) + /** insert a single row into the table: "e_plugin_runtimes" */ + insert_e_plugin_runtimes_one?: (e_plugin_runtimesGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_plugin_runtimes_insert_input, + /** upsert condition */ + on_conflict?: (e_plugin_runtimes_on_conflict | null)} }) + /** insert data into the table: "e_ready_settings" */ + insert_e_ready_settings?: (e_ready_settings_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_ready_settings_insert_input[], + /** upsert condition */ + on_conflict?: (e_ready_settings_on_conflict | null)} }) + /** insert a single row into the table: "e_ready_settings" */ + insert_e_ready_settings_one?: (e_ready_settingsGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_ready_settings_insert_input, + /** upsert condition */ + on_conflict?: (e_ready_settings_on_conflict | null)} }) + /** insert data into the table: "e_sanction_scopes" */ + insert_e_sanction_scopes?: (e_sanction_scopes_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_sanction_scopes_insert_input[], + /** upsert condition */ + on_conflict?: (e_sanction_scopes_on_conflict | null)} }) + /** insert a single row into the table: "e_sanction_scopes" */ + insert_e_sanction_scopes_one?: (e_sanction_scopesGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_sanction_scopes_insert_input, + /** upsert condition */ + on_conflict?: (e_sanction_scopes_on_conflict | null)} }) + /** insert data into the table: "e_sanction_sources" */ + insert_e_sanction_sources?: (e_sanction_sources_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_sanction_sources_insert_input[], + /** upsert condition */ + on_conflict?: (e_sanction_sources_on_conflict | null)} }) + /** insert a single row into the table: "e_sanction_sources" */ + insert_e_sanction_sources_one?: (e_sanction_sourcesGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_sanction_sources_insert_input, + /** upsert condition */ + on_conflict?: (e_sanction_sources_on_conflict | null)} }) + /** insert data into the table: "e_sanction_types" */ + insert_e_sanction_types?: (e_sanction_types_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_sanction_types_insert_input[], + /** upsert condition */ + on_conflict?: (e_sanction_types_on_conflict | null)} }) + /** insert a single row into the table: "e_sanction_types" */ + insert_e_sanction_types_one?: (e_sanction_typesGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_sanction_types_insert_input, + /** upsert condition */ + on_conflict?: (e_sanction_types_on_conflict | null)} }) + /** insert data into the table: "e_scrim_request_statuses" */ + insert_e_scrim_request_statuses?: (e_scrim_request_statuses_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_scrim_request_statuses_insert_input[], + /** upsert condition */ + on_conflict?: (e_scrim_request_statuses_on_conflict | null)} }) + /** insert a single row into the table: "e_scrim_request_statuses" */ + insert_e_scrim_request_statuses_one?: (e_scrim_request_statusesGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_scrim_request_statuses_insert_input, + /** upsert condition */ + on_conflict?: (e_scrim_request_statuses_on_conflict | null)} }) + /** insert data into the table: "e_server_types" */ + insert_e_server_types?: (e_server_types_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_server_types_insert_input[], + /** upsert condition */ + on_conflict?: (e_server_types_on_conflict | null)} }) + /** insert a single row into the table: "e_server_types" */ + insert_e_server_types_one?: (e_server_typesGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_server_types_insert_input, + /** upsert condition */ + on_conflict?: (e_server_types_on_conflict | null)} }) + /** insert data into the table: "e_sides" */ + insert_e_sides?: (e_sides_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_sides_insert_input[], + /** upsert condition */ + on_conflict?: (e_sides_on_conflict | null)} }) + /** insert a single row into the table: "e_sides" */ + insert_e_sides_one?: (e_sidesGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_sides_insert_input, + /** upsert condition */ + on_conflict?: (e_sides_on_conflict | null)} }) + /** insert data into the table: "e_system_alert_types" */ + insert_e_system_alert_types?: (e_system_alert_types_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_system_alert_types_insert_input[], + /** upsert condition */ + on_conflict?: (e_system_alert_types_on_conflict | null)} }) + /** insert a single row into the table: "e_system_alert_types" */ + insert_e_system_alert_types_one?: (e_system_alert_typesGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_system_alert_types_insert_input, + /** upsert condition */ + on_conflict?: (e_system_alert_types_on_conflict | null)} }) + /** insert data into the table: "e_team_roles" */ + insert_e_team_roles?: (e_team_roles_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_team_roles_insert_input[], + /** upsert condition */ + on_conflict?: (e_team_roles_on_conflict | null)} }) + /** insert a single row into the table: "e_team_roles" */ + insert_e_team_roles_one?: (e_team_rolesGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_team_roles_insert_input, + /** upsert condition */ + on_conflict?: (e_team_roles_on_conflict | null)} }) + /** insert data into the table: "e_team_roster_statuses" */ + insert_e_team_roster_statuses?: (e_team_roster_statuses_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_team_roster_statuses_insert_input[], + /** upsert condition */ + on_conflict?: (e_team_roster_statuses_on_conflict | null)} }) + /** insert a single row into the table: "e_team_roster_statuses" */ + insert_e_team_roster_statuses_one?: (e_team_roster_statusesGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_team_roster_statuses_insert_input, + /** upsert condition */ + on_conflict?: (e_team_roster_statuses_on_conflict | null)} }) + /** insert data into the table: "e_timeout_settings" */ + insert_e_timeout_settings?: (e_timeout_settings_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_timeout_settings_insert_input[], + /** upsert condition */ + on_conflict?: (e_timeout_settings_on_conflict | null)} }) + /** insert a single row into the table: "e_timeout_settings" */ + insert_e_timeout_settings_one?: (e_timeout_settingsGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_timeout_settings_insert_input, + /** upsert condition */ + on_conflict?: (e_timeout_settings_on_conflict | null)} }) + /** insert data into the table: "e_tournament_categories" */ + insert_e_tournament_categories?: (e_tournament_categories_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_tournament_categories_insert_input[], + /** upsert condition */ + on_conflict?: (e_tournament_categories_on_conflict | null)} }) + /** insert a single row into the table: "e_tournament_categories" */ + insert_e_tournament_categories_one?: (e_tournament_categoriesGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_tournament_categories_insert_input, + /** upsert condition */ + on_conflict?: (e_tournament_categories_on_conflict | null)} }) + /** insert data into the table: "e_tournament_free_agent_statuses" */ + insert_e_tournament_free_agent_statuses?: (e_tournament_free_agent_statuses_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_tournament_free_agent_statuses_insert_input[], + /** upsert condition */ + on_conflict?: (e_tournament_free_agent_statuses_on_conflict | null)} }) + /** insert a single row into the table: "e_tournament_free_agent_statuses" */ + insert_e_tournament_free_agent_statuses_one?: (e_tournament_free_agent_statusesGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_tournament_free_agent_statuses_insert_input, + /** upsert condition */ + on_conflict?: (e_tournament_free_agent_statuses_on_conflict | null)} }) + /** insert data into the table: "e_tournament_registration_types" */ + insert_e_tournament_registration_types?: (e_tournament_registration_types_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_tournament_registration_types_insert_input[], + /** upsert condition */ + on_conflict?: (e_tournament_registration_types_on_conflict | null)} }) + /** insert a single row into the table: "e_tournament_registration_types" */ + insert_e_tournament_registration_types_one?: (e_tournament_registration_typesGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_tournament_registration_types_insert_input, + /** upsert condition */ + on_conflict?: (e_tournament_registration_types_on_conflict | null)} }) + /** insert data into the table: "e_tournament_stage_types" */ + insert_e_tournament_stage_types?: (e_tournament_stage_types_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_tournament_stage_types_insert_input[], + /** upsert condition */ + on_conflict?: (e_tournament_stage_types_on_conflict | null)} }) + /** insert a single row into the table: "e_tournament_stage_types" */ + insert_e_tournament_stage_types_one?: (e_tournament_stage_typesGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_tournament_stage_types_insert_input, + /** upsert condition */ + on_conflict?: (e_tournament_stage_types_on_conflict | null)} }) + /** insert data into the table: "e_tournament_status" */ + insert_e_tournament_status?: (e_tournament_status_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_tournament_status_insert_input[], + /** upsert condition */ + on_conflict?: (e_tournament_status_on_conflict | null)} }) + /** insert a single row into the table: "e_tournament_status" */ + insert_e_tournament_status_one?: (e_tournament_statusGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_tournament_status_insert_input, + /** upsert condition */ + on_conflict?: (e_tournament_status_on_conflict | null)} }) + /** insert data into the table: "e_utility_practice_access" */ + insert_e_utility_practice_access?: (e_utility_practice_access_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_utility_practice_access_insert_input[], + /** upsert condition */ + on_conflict?: (e_utility_practice_access_on_conflict | null)} }) + /** insert a single row into the table: "e_utility_practice_access" */ + insert_e_utility_practice_access_one?: (e_utility_practice_accessGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_utility_practice_access_insert_input, + /** upsert condition */ + on_conflict?: (e_utility_practice_access_on_conflict | null)} }) + /** insert data into the table: "e_utility_practice_statuses" */ + insert_e_utility_practice_statuses?: (e_utility_practice_statuses_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_utility_practice_statuses_insert_input[], + /** upsert condition */ + on_conflict?: (e_utility_practice_statuses_on_conflict | null)} }) + /** insert a single row into the table: "e_utility_practice_statuses" */ + insert_e_utility_practice_statuses_one?: (e_utility_practice_statusesGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_utility_practice_statuses_insert_input, + /** upsert condition */ + on_conflict?: (e_utility_practice_statuses_on_conflict | null)} }) + /** insert data into the table: "e_utility_sources" */ + insert_e_utility_sources?: (e_utility_sources_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_utility_sources_insert_input[], + /** upsert condition */ + on_conflict?: (e_utility_sources_on_conflict | null)} }) + /** insert a single row into the table: "e_utility_sources" */ + insert_e_utility_sources_one?: (e_utility_sourcesGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_utility_sources_insert_input, + /** upsert condition */ + on_conflict?: (e_utility_sources_on_conflict | null)} }) + /** insert data into the table: "e_utility_techniques" */ + insert_e_utility_techniques?: (e_utility_techniques_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_utility_techniques_insert_input[], + /** upsert condition */ + on_conflict?: (e_utility_techniques_on_conflict | null)} }) + /** insert a single row into the table: "e_utility_techniques" */ + insert_e_utility_techniques_one?: (e_utility_techniquesGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_utility_techniques_insert_input, + /** upsert condition */ + on_conflict?: (e_utility_techniques_on_conflict | null)} }) + /** insert data into the table: "e_utility_throw_strengths" */ + insert_e_utility_throw_strengths?: (e_utility_throw_strengths_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_utility_throw_strengths_insert_input[], + /** upsert condition */ + on_conflict?: (e_utility_throw_strengths_on_conflict | null)} }) + /** insert a single row into the table: "e_utility_throw_strengths" */ + insert_e_utility_throw_strengths_one?: (e_utility_throw_strengthsGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_utility_throw_strengths_insert_input, + /** upsert condition */ + on_conflict?: (e_utility_throw_strengths_on_conflict | null)} }) + /** insert data into the table: "e_utility_types" */ + insert_e_utility_types?: (e_utility_types_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_utility_types_insert_input[], + /** upsert condition */ + on_conflict?: (e_utility_types_on_conflict | null)} }) + /** insert a single row into the table: "e_utility_types" */ + insert_e_utility_types_one?: (e_utility_typesGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_utility_types_insert_input, + /** upsert condition */ + on_conflict?: (e_utility_types_on_conflict | null)} }) + /** insert data into the table: "e_utility_visibility" */ + insert_e_utility_visibility?: (e_utility_visibility_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_utility_visibility_insert_input[], + /** upsert condition */ + on_conflict?: (e_utility_visibility_on_conflict | null)} }) + /** insert a single row into the table: "e_utility_visibility" */ + insert_e_utility_visibility_one?: (e_utility_visibilityGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_utility_visibility_insert_input, + /** upsert condition */ + on_conflict?: (e_utility_visibility_on_conflict | null)} }) + /** insert data into the table: "e_veto_pick_types" */ + insert_e_veto_pick_types?: (e_veto_pick_types_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_veto_pick_types_insert_input[], + /** upsert condition */ + on_conflict?: (e_veto_pick_types_on_conflict | null)} }) + /** insert a single row into the table: "e_veto_pick_types" */ + insert_e_veto_pick_types_one?: (e_veto_pick_typesGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_veto_pick_types_insert_input, + /** upsert condition */ + on_conflict?: (e_veto_pick_types_on_conflict | null)} }) + /** insert data into the table: "e_winning_reasons" */ + insert_e_winning_reasons?: (e_winning_reasons_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_winning_reasons_insert_input[], + /** upsert condition */ + on_conflict?: (e_winning_reasons_on_conflict | null)} }) + /** insert a single row into the table: "e_winning_reasons" */ + insert_e_winning_reasons_one?: (e_winning_reasonsGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_winning_reasons_insert_input, + /** upsert condition */ + on_conflict?: (e_winning_reasons_on_conflict | null)} }) + /** insert data into the table: "event_match_links" */ + insert_event_match_links?: (event_match_links_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: event_match_links_insert_input[], + /** upsert condition */ + on_conflict?: (event_match_links_on_conflict | null)} }) + /** insert a single row into the table: "event_match_links" */ + insert_event_match_links_one?: (event_match_linksGenqlSelection & { __args: { + /** the row to be inserted */ + object: event_match_links_insert_input, + /** upsert condition */ + on_conflict?: (event_match_links_on_conflict | null)} }) + /** insert data into the table: "event_media" */ + insert_event_media?: (event_media_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: event_media_insert_input[], + /** upsert condition */ + on_conflict?: (event_media_on_conflict | null)} }) + /** insert a single row into the table: "event_media" */ + insert_event_media_one?: (event_mediaGenqlSelection & { __args: { + /** the row to be inserted */ + object: event_media_insert_input, + /** upsert condition */ + on_conflict?: (event_media_on_conflict | null)} }) + /** insert data into the table: "event_media_players" */ + insert_event_media_players?: (event_media_players_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: event_media_players_insert_input[], + /** upsert condition */ + on_conflict?: (event_media_players_on_conflict | null)} }) + /** insert a single row into the table: "event_media_players" */ + insert_event_media_players_one?: (event_media_playersGenqlSelection & { __args: { + /** the row to be inserted */ + object: event_media_players_insert_input, + /** upsert condition */ + on_conflict?: (event_media_players_on_conflict | null)} }) + /** insert data into the table: "event_organizers" */ + insert_event_organizers?: (event_organizers_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: event_organizers_insert_input[], + /** upsert condition */ + on_conflict?: (event_organizers_on_conflict | null)} }) + /** insert a single row into the table: "event_organizers" */ + insert_event_organizers_one?: (event_organizersGenqlSelection & { __args: { + /** the row to be inserted */ + object: event_organizers_insert_input, + /** upsert condition */ + on_conflict?: (event_organizers_on_conflict | null)} }) + /** insert data into the table: "event_players" */ + insert_event_players?: (event_players_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: event_players_insert_input[], + /** upsert condition */ + on_conflict?: (event_players_on_conflict | null)} }) + /** insert a single row into the table: "event_players" */ + insert_event_players_one?: (event_playersGenqlSelection & { __args: { + /** the row to be inserted */ + object: event_players_insert_input, + /** upsert condition */ + on_conflict?: (event_players_on_conflict | null)} }) + /** insert data into the table: "event_teams" */ + insert_event_teams?: (event_teams_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: event_teams_insert_input[], + /** upsert condition */ + on_conflict?: (event_teams_on_conflict | null)} }) + /** insert a single row into the table: "event_teams" */ + insert_event_teams_one?: (event_teamsGenqlSelection & { __args: { + /** the row to be inserted */ + object: event_teams_insert_input, + /** upsert condition */ + on_conflict?: (event_teams_on_conflict | null)} }) + /** insert data into the table: "event_tournaments" */ + insert_event_tournaments?: (event_tournaments_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: event_tournaments_insert_input[], + /** upsert condition */ + on_conflict?: (event_tournaments_on_conflict | null)} }) + /** insert a single row into the table: "event_tournaments" */ + insert_event_tournaments_one?: (event_tournamentsGenqlSelection & { __args: { + /** the row to be inserted */ + object: event_tournaments_insert_input, + /** upsert condition */ + on_conflict?: (event_tournaments_on_conflict | null)} }) + /** insert data into the table: "events" */ + insert_events?: (events_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: events_insert_input[], + /** upsert condition */ + on_conflict?: (events_on_conflict | null)} }) + /** insert a single row into the table: "events" */ + insert_events_one?: (eventsGenqlSelection & { __args: { + /** the row to be inserted */ + object: events_insert_input, + /** upsert condition */ + on_conflict?: (events_on_conflict | null)} }) + /** insert data into the table: "friends" */ + insert_friends?: (friends_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: friends_insert_input[], + /** upsert condition */ + on_conflict?: (friends_on_conflict | null)} }) + /** insert a single row into the table: "friends" */ + insert_friends_one?: (friendsGenqlSelection & { __args: { + /** the row to be inserted */ + 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 */ + objects: game_server_nodes_insert_input[], + /** upsert condition */ + on_conflict?: (game_server_nodes_on_conflict | null)} }) + /** insert a single row into the table: "game_server_nodes" */ + insert_game_server_nodes_one?: (game_server_nodesGenqlSelection & { __args: { + /** the row to be inserted */ + object: game_server_nodes_insert_input, + /** upsert condition */ + on_conflict?: (game_server_nodes_on_conflict | null)} }) + /** insert data into the table: "game_versions" */ + insert_game_versions?: (game_versions_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: game_versions_insert_input[], + /** upsert condition */ + on_conflict?: (game_versions_on_conflict | null)} }) + /** insert a single row into the table: "game_versions" */ + insert_game_versions_one?: (game_versionsGenqlSelection & { __args: { + /** the row to be inserted */ + object: game_versions_insert_input, + /** upsert condition */ + on_conflict?: (game_versions_on_conflict | null)} }) + /** insert data into the table: "gamedata_signature_validations" */ + insert_gamedata_signature_validations?: (gamedata_signature_validations_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: gamedata_signature_validations_insert_input[], + /** upsert condition */ + on_conflict?: (gamedata_signature_validations_on_conflict | null)} }) + /** insert a single row into the table: "gamedata_signature_validations" */ + insert_gamedata_signature_validations_one?: (gamedata_signature_validationsGenqlSelection & { __args: { + /** the row to be inserted */ + object: gamedata_signature_validations_insert_input, + /** upsert condition */ + on_conflict?: (gamedata_signature_validations_on_conflict | null)} }) + /** insert data into the table: "leaderboard_entries" */ + insert_leaderboard_entries?: (leaderboard_entries_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: leaderboard_entries_insert_input[]} }) + /** insert a single row into the table: "leaderboard_entries" */ + insert_leaderboard_entries_one?: (leaderboard_entriesGenqlSelection & { __args: { + /** the row to be inserted */ + object: leaderboard_entries_insert_input} }) + /** insert data into the table: "league_divisions" */ + insert_league_divisions?: (league_divisions_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: league_divisions_insert_input[], + /** upsert condition */ + on_conflict?: (league_divisions_on_conflict | null)} }) + /** insert a single row into the table: "league_divisions" */ + insert_league_divisions_one?: (league_divisionsGenqlSelection & { __args: { + /** the row to be inserted */ + object: league_divisions_insert_input, + /** upsert condition */ + on_conflict?: (league_divisions_on_conflict | null)} }) + /** insert data into the table: "league_match_weeks" */ + insert_league_match_weeks?: (league_match_weeks_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: league_match_weeks_insert_input[], + /** upsert condition */ + on_conflict?: (league_match_weeks_on_conflict | null)} }) + /** insert a single row into the table: "league_match_weeks" */ + insert_league_match_weeks_one?: (league_match_weeksGenqlSelection & { __args: { + /** the row to be inserted */ + object: league_match_weeks_insert_input, + /** upsert condition */ + on_conflict?: (league_match_weeks_on_conflict | null)} }) + /** insert data into the table: "league_relegation_playoffs" */ + insert_league_relegation_playoffs?: (league_relegation_playoffs_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: league_relegation_playoffs_insert_input[], + /** upsert condition */ + on_conflict?: (league_relegation_playoffs_on_conflict | null)} }) + /** insert a single row into the table: "league_relegation_playoffs" */ + insert_league_relegation_playoffs_one?: (league_relegation_playoffsGenqlSelection & { __args: { + /** the row to be inserted */ + object: league_relegation_playoffs_insert_input, + /** upsert condition */ + on_conflict?: (league_relegation_playoffs_on_conflict | null)} }) + /** insert data into the table: "league_scheduling_proposals" */ + insert_league_scheduling_proposals?: (league_scheduling_proposals_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: league_scheduling_proposals_insert_input[], + /** upsert condition */ + on_conflict?: (league_scheduling_proposals_on_conflict | null)} }) + /** insert a single row into the table: "league_scheduling_proposals" */ + insert_league_scheduling_proposals_one?: (league_scheduling_proposalsGenqlSelection & { __args: { + /** the row to be inserted */ + object: league_scheduling_proposals_insert_input, + /** upsert condition */ + on_conflict?: (league_scheduling_proposals_on_conflict | null)} }) + /** insert data into the table: "league_season_divisions" */ + insert_league_season_divisions?: (league_season_divisions_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: league_season_divisions_insert_input[], + /** upsert condition */ + on_conflict?: (league_season_divisions_on_conflict | null)} }) + /** insert a single row into the table: "league_season_divisions" */ + insert_league_season_divisions_one?: (league_season_divisionsGenqlSelection & { __args: { + /** the row to be inserted */ + object: league_season_divisions_insert_input, + /** upsert condition */ + on_conflict?: (league_season_divisions_on_conflict | null)} }) + /** insert data into the table: "league_seasons" */ + insert_league_seasons?: (league_seasons_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: league_seasons_insert_input[], + /** upsert condition */ + on_conflict?: (league_seasons_on_conflict | null)} }) + /** insert a single row into the table: "league_seasons" */ + insert_league_seasons_one?: (league_seasonsGenqlSelection & { __args: { + /** the row to be inserted */ + object: league_seasons_insert_input, + /** upsert condition */ + on_conflict?: (league_seasons_on_conflict | null)} }) + /** insert data into the table: "league_team_movements" */ + insert_league_team_movements?: (league_team_movements_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: league_team_movements_insert_input[], + /** upsert condition */ + on_conflict?: (league_team_movements_on_conflict | null)} }) + /** insert a single row into the table: "league_team_movements" */ + insert_league_team_movements_one?: (league_team_movementsGenqlSelection & { __args: { + /** the row to be inserted */ + object: league_team_movements_insert_input, + /** upsert condition */ + on_conflict?: (league_team_movements_on_conflict | null)} }) + /** insert data into the table: "league_team_rosters" */ + insert_league_team_rosters?: (league_team_rosters_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: league_team_rosters_insert_input[], + /** upsert condition */ + on_conflict?: (league_team_rosters_on_conflict | null)} }) + /** insert a single row into the table: "league_team_rosters" */ + insert_league_team_rosters_one?: (league_team_rostersGenqlSelection & { __args: { + /** the row to be inserted */ + object: league_team_rosters_insert_input, + /** upsert condition */ + on_conflict?: (league_team_rosters_on_conflict | null)} }) + /** insert data into the table: "league_team_seasons" */ + insert_league_team_seasons?: (league_team_seasons_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: league_team_seasons_insert_input[], + /** upsert condition */ + on_conflict?: (league_team_seasons_on_conflict | null)} }) + /** insert a single row into the table: "league_team_seasons" */ + insert_league_team_seasons_one?: (league_team_seasonsGenqlSelection & { __args: { + /** the row to be inserted */ + object: league_team_seasons_insert_input, + /** upsert condition */ + on_conflict?: (league_team_seasons_on_conflict | null)} }) + /** insert data into the table: "league_teams" */ + insert_league_teams?: (league_teams_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: league_teams_insert_input[], + /** upsert condition */ + on_conflict?: (league_teams_on_conflict | null)} }) + /** insert a single row into the table: "league_teams" */ + insert_league_teams_one?: (league_teamsGenqlSelection & { __args: { + /** the row to be inserted */ + object: league_teams_insert_input, + /** upsert condition */ + on_conflict?: (league_teams_on_conflict | null)} }) + /** insert data into the table: "lobbies" */ + insert_lobbies?: (lobbies_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: lobbies_insert_input[], + /** upsert condition */ + on_conflict?: (lobbies_on_conflict | null)} }) + /** insert a single row into the table: "lobbies" */ + insert_lobbies_one?: (lobbiesGenqlSelection & { __args: { + /** the row to be inserted */ + object: lobbies_insert_input, + /** upsert condition */ + on_conflict?: (lobbies_on_conflict | null)} }) + /** insert data into the table: "lobby_players" */ + insert_lobby_players?: (lobby_players_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: lobby_players_insert_input[], + /** upsert condition */ + on_conflict?: (lobby_players_on_conflict | null)} }) + /** insert a single row into the table: "lobby_players" */ + insert_lobby_players_one?: (lobby_playersGenqlSelection & { __args: { + /** the row to be inserted */ + object: lobby_players_insert_input, + /** upsert condition */ + on_conflict?: (lobby_players_on_conflict | null)} }) + /** insert data into the table: "map_callouts" */ + insert_map_callouts?: (map_callouts_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: map_callouts_insert_input[], + /** upsert condition */ + on_conflict?: (map_callouts_on_conflict | null)} }) + /** insert a single row into the table: "map_callouts" */ + insert_map_callouts_one?: (map_calloutsGenqlSelection & { __args: { + /** the row to be inserted */ + object: map_callouts_insert_input, + /** upsert condition */ + on_conflict?: (map_callouts_on_conflict | null)} }) + /** insert data into the table: "map_pools" */ + insert_map_pools?: (map_pools_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: map_pools_insert_input[], + /** upsert condition */ + on_conflict?: (map_pools_on_conflict | null)} }) + /** insert a single row into the table: "map_pools" */ + insert_map_pools_one?: (map_poolsGenqlSelection & { __args: { + /** the row to be inserted */ + object: map_pools_insert_input, + /** upsert condition */ + on_conflict?: (map_pools_on_conflict | null)} }) + /** insert data into the table: "maps" */ + insert_maps?: (maps_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: maps_insert_input[], + /** upsert condition */ + on_conflict?: (maps_on_conflict | null)} }) + /** insert a single row into the table: "maps" */ + insert_maps_one?: (mapsGenqlSelection & { __args: { + /** the row to be inserted */ + object: maps_insert_input, + /** upsert condition */ + on_conflict?: (maps_on_conflict | null)} }) + /** insert data into the table: "match_clips" */ + insert_match_clips?: (match_clips_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: match_clips_insert_input[], + /** upsert condition */ + on_conflict?: (match_clips_on_conflict | null)} }) + /** insert a single row into the table: "match_clips" */ + insert_match_clips_one?: (match_clipsGenqlSelection & { __args: { + /** the row to be inserted */ + object: match_clips_insert_input, + /** upsert condition */ + on_conflict?: (match_clips_on_conflict | null)} }) + /** insert data into the table: "match_demo_sessions" */ + insert_match_demo_sessions?: (match_demo_sessions_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: match_demo_sessions_insert_input[], + /** upsert condition */ + on_conflict?: (match_demo_sessions_on_conflict | null)} }) + /** insert a single row into the table: "match_demo_sessions" */ + insert_match_demo_sessions_one?: (match_demo_sessionsGenqlSelection & { __args: { + /** the row to be inserted */ + object: match_demo_sessions_insert_input, + /** upsert condition */ + on_conflict?: (match_demo_sessions_on_conflict | null)} }) + /** insert data into the table: "match_lineup_players" */ + insert_match_lineup_players?: (match_lineup_players_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: match_lineup_players_insert_input[], + /** upsert condition */ + on_conflict?: (match_lineup_players_on_conflict | null)} }) + /** insert a single row into the table: "match_lineup_players" */ + insert_match_lineup_players_one?: (match_lineup_playersGenqlSelection & { __args: { + /** the row to be inserted */ + object: match_lineup_players_insert_input, + /** upsert condition */ + on_conflict?: (match_lineup_players_on_conflict | null)} }) + /** insert data into the table: "match_lineups" */ + insert_match_lineups?: (match_lineups_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: match_lineups_insert_input[], + /** upsert condition */ + on_conflict?: (match_lineups_on_conflict | null)} }) + /** insert a single row into the table: "match_lineups" */ + insert_match_lineups_one?: (match_lineupsGenqlSelection & { __args: { + /** the row to be inserted */ + object: match_lineups_insert_input, + /** upsert condition */ + on_conflict?: (match_lineups_on_conflict | null)} }) + /** insert data into the table: "match_map_demos" */ + insert_match_map_demos?: (match_map_demos_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: match_map_demos_insert_input[], + /** upsert condition */ + on_conflict?: (match_map_demos_on_conflict | null)} }) + /** insert a single row into the table: "match_map_demos" */ + insert_match_map_demos_one?: (match_map_demosGenqlSelection & { __args: { + /** the row to be inserted */ + object: match_map_demos_insert_input, + /** upsert condition */ + on_conflict?: (match_map_demos_on_conflict | null)} }) + /** insert data into the table: "match_map_rounds" */ + insert_match_map_rounds?: (match_map_rounds_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: match_map_rounds_insert_input[], + /** upsert condition */ + on_conflict?: (match_map_rounds_on_conflict | null)} }) + /** insert a single row into the table: "match_map_rounds" */ + insert_match_map_rounds_one?: (match_map_roundsGenqlSelection & { __args: { + /** the row to be inserted */ + object: match_map_rounds_insert_input, + /** upsert condition */ + on_conflict?: (match_map_rounds_on_conflict | null)} }) + /** insert data into the table: "match_map_veto_picks" */ + insert_match_map_veto_picks?: (match_map_veto_picks_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: match_map_veto_picks_insert_input[], + /** upsert condition */ + on_conflict?: (match_map_veto_picks_on_conflict | null)} }) + /** insert a single row into the table: "match_map_veto_picks" */ + insert_match_map_veto_picks_one?: (match_map_veto_picksGenqlSelection & { __args: { + /** the row to be inserted */ + object: match_map_veto_picks_insert_input, + /** upsert condition */ + on_conflict?: (match_map_veto_picks_on_conflict | null)} }) + /** insert data into the table: "match_maps" */ + insert_match_maps?: (match_maps_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: match_maps_insert_input[], + /** upsert condition */ + on_conflict?: (match_maps_on_conflict | null)} }) + /** insert a single row into the table: "match_maps" */ + insert_match_maps_one?: (match_mapsGenqlSelection & { __args: { + /** the row to be inserted */ + object: match_maps_insert_input, + /** upsert condition */ + on_conflict?: (match_maps_on_conflict | null)} }) + /** insert data into the table: "match_options" */ + insert_match_options?: (match_options_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: match_options_insert_input[], + /** upsert condition */ + on_conflict?: (match_options_on_conflict | null)} }) + /** insert a single row into the table: "match_options" */ + insert_match_options_one?: (match_optionsGenqlSelection & { __args: { + /** the row to be inserted */ + object: match_options_insert_input, + /** upsert condition */ + on_conflict?: (match_options_on_conflict | null)} }) + /** insert data into the table: "match_region_veto_picks" */ + insert_match_region_veto_picks?: (match_region_veto_picks_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: match_region_veto_picks_insert_input[], + /** upsert condition */ + on_conflict?: (match_region_veto_picks_on_conflict | null)} }) + /** insert a single row into the table: "match_region_veto_picks" */ + insert_match_region_veto_picks_one?: (match_region_veto_picksGenqlSelection & { __args: { + /** the row to be inserted */ + object: match_region_veto_picks_insert_input, + /** upsert condition */ + on_conflict?: (match_region_veto_picks_on_conflict | null)} }) + /** insert data into the table: "match_streams" */ + insert_match_streams?: (match_streams_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: match_streams_insert_input[], + /** upsert condition */ + on_conflict?: (match_streams_on_conflict | null)} }) + /** insert a single row into the table: "match_streams" */ + insert_match_streams_one?: (match_streamsGenqlSelection & { __args: { + /** the row to be inserted */ + object: match_streams_insert_input, + /** upsert condition */ + on_conflict?: (match_streams_on_conflict | null)} }) + /** insert data into the table: "match_type_cfgs" */ + insert_match_type_cfgs?: (match_type_cfgs_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: match_type_cfgs_insert_input[], + /** upsert condition */ + on_conflict?: (match_type_cfgs_on_conflict | null)} }) + /** insert a single row into the table: "match_type_cfgs" */ + insert_match_type_cfgs_one?: (match_type_cfgsGenqlSelection & { __args: { + /** the row to be inserted */ + object: match_type_cfgs_insert_input, + /** upsert condition */ + on_conflict?: (match_type_cfgs_on_conflict | null)} }) + /** insert data into the table: "matches" */ + insert_matches?: (matches_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: matches_insert_input[], + /** upsert condition */ + on_conflict?: (matches_on_conflict | null)} }) + /** insert a single row into the table: "matches" */ + insert_matches_one?: (matchesGenqlSelection & { __args: { + /** the row to be inserted */ + object: matches_insert_input, + /** upsert condition */ + on_conflict?: (matches_on_conflict | null)} }) + /** insert data into the table: "migration_hashes.hashes" */ + insert_migration_hashes_hashes?: (migration_hashes_hashes_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: migration_hashes_hashes_insert_input[], + /** upsert condition */ + on_conflict?: (migration_hashes_hashes_on_conflict | null)} }) + /** insert a single row into the table: "migration_hashes.hashes" */ + insert_migration_hashes_hashes_one?: (migration_hashes_hashesGenqlSelection & { __args: { + /** the row to be inserted */ + object: migration_hashes_hashes_insert_input, + /** upsert condition */ + on_conflict?: (migration_hashes_hashes_on_conflict | null)} }) + /** insert data into the table: "v_my_friends" */ + insert_my_friends?: (my_friends_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: my_friends_insert_input[]} }) + /** insert a single row into the table: "v_my_friends" */ + insert_my_friends_one?: (my_friendsGenqlSelection & { __args: { + /** the row to be inserted */ + object: my_friends_insert_input} }) + /** insert data into the table: "news_articles" */ + insert_news_articles?: (news_articles_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: news_articles_insert_input[], + /** upsert condition */ + on_conflict?: (news_articles_on_conflict | null)} }) + /** insert a single row into the table: "news_articles" */ + insert_news_articles_one?: (news_articlesGenqlSelection & { __args: { + /** the row to be inserted */ + object: news_articles_insert_input, + /** upsert condition */ + on_conflict?: (news_articles_on_conflict | null)} }) + /** insert data into the table: "notification_preferences" */ + insert_notification_preferences?: (notification_preferences_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: notification_preferences_insert_input[], + /** upsert condition */ + on_conflict?: (notification_preferences_on_conflict | null)} }) + /** insert a single row into the table: "notification_preferences" */ + insert_notification_preferences_one?: (notification_preferencesGenqlSelection & { __args: { + /** the row to be inserted */ + object: notification_preferences_insert_input, + /** upsert condition */ + on_conflict?: (notification_preferences_on_conflict | null)} }) + /** insert data into the table: "notifications" */ + insert_notifications?: (notifications_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: notifications_insert_input[], + /** upsert condition */ + on_conflict?: (notifications_on_conflict | null)} }) + /** insert a single row into the table: "notifications" */ + insert_notifications_one?: (notificationsGenqlSelection & { __args: { + /** the row to be inserted */ + object: notifications_insert_input, + /** upsert condition */ + on_conflict?: (notifications_on_conflict | null)} }) + /** insert data into the table: "pending_match_import_players" */ + insert_pending_match_import_players?: (pending_match_import_players_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: pending_match_import_players_insert_input[], + /** upsert condition */ + on_conflict?: (pending_match_import_players_on_conflict | null)} }) + /** insert a single row into the table: "pending_match_import_players" */ + insert_pending_match_import_players_one?: (pending_match_import_playersGenqlSelection & { __args: { + /** the row to be inserted */ + object: pending_match_import_players_insert_input, + /** upsert condition */ + on_conflict?: (pending_match_import_players_on_conflict | null)} }) + /** insert data into the table: "pending_match_imports" */ + insert_pending_match_imports?: (pending_match_imports_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: pending_match_imports_insert_input[], + /** upsert condition */ + on_conflict?: (pending_match_imports_on_conflict | null)} }) + /** insert a single row into the table: "pending_match_imports" */ + insert_pending_match_imports_one?: (pending_match_importsGenqlSelection & { __args: { + /** the row to be inserted */ + object: pending_match_imports_insert_input, + /** upsert condition */ + on_conflict?: (pending_match_imports_on_conflict | null)} }) + /** insert data into the table: "player_aim_stats_demo" */ + insert_player_aim_stats_demo?: (player_aim_stats_demo_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: player_aim_stats_demo_insert_input[], + /** upsert condition */ + on_conflict?: (player_aim_stats_demo_on_conflict | null)} }) + /** insert a single row into the table: "player_aim_stats_demo" */ + insert_player_aim_stats_demo_one?: (player_aim_stats_demoGenqlSelection & { __args: { + /** the row to be inserted */ + object: player_aim_stats_demo_insert_input, + /** upsert condition */ + on_conflict?: (player_aim_stats_demo_on_conflict | null)} }) + /** insert data into the table: "player_aim_weapon_stats" */ + insert_player_aim_weapon_stats?: (player_aim_weapon_stats_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: player_aim_weapon_stats_insert_input[], + /** upsert condition */ + on_conflict?: (player_aim_weapon_stats_on_conflict | null)} }) + /** insert a single row into the table: "player_aim_weapon_stats" */ + insert_player_aim_weapon_stats_one?: (player_aim_weapon_statsGenqlSelection & { __args: { + /** the row to be inserted */ + object: player_aim_weapon_stats_insert_input, + /** upsert condition */ + on_conflict?: (player_aim_weapon_stats_on_conflict | null)} }) + /** insert data into the table: "player_assists" */ + insert_player_assists?: (player_assists_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: player_assists_insert_input[], + /** upsert condition */ + on_conflict?: (player_assists_on_conflict | null)} }) + /** insert a single row into the table: "player_assists" */ + insert_player_assists_one?: (player_assistsGenqlSelection & { __args: { + /** the row to be inserted */ + object: player_assists_insert_input, + /** upsert condition */ + on_conflict?: (player_assists_on_conflict | null)} }) + /** insert data into the table: "player_damages" */ + insert_player_damages?: (player_damages_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: player_damages_insert_input[], + /** upsert condition */ + on_conflict?: (player_damages_on_conflict | null)} }) + /** insert a single row into the table: "player_damages" */ + insert_player_damages_one?: (player_damagesGenqlSelection & { __args: { + /** the row to be inserted */ + object: player_damages_insert_input, + /** upsert condition */ + on_conflict?: (player_damages_on_conflict | null)} }) + /** insert data into the table: "player_elo" */ + insert_player_elo?: (player_elo_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: player_elo_insert_input[], + /** upsert condition */ + on_conflict?: (player_elo_on_conflict | null)} }) + /** insert a single row into the table: "player_elo" */ + insert_player_elo_one?: (player_eloGenqlSelection & { __args: { + /** the row to be inserted */ + object: player_elo_insert_input, + /** upsert condition */ + on_conflict?: (player_elo_on_conflict | null)} }) + /** insert data into the table: "player_faceit_rank_history" */ + insert_player_faceit_rank_history?: (player_faceit_rank_history_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: player_faceit_rank_history_insert_input[], + /** upsert condition */ + on_conflict?: (player_faceit_rank_history_on_conflict | null)} }) + /** insert a single row into the table: "player_faceit_rank_history" */ + insert_player_faceit_rank_history_one?: (player_faceit_rank_historyGenqlSelection & { __args: { + /** the row to be inserted */ + object: player_faceit_rank_history_insert_input, + /** upsert condition */ + on_conflict?: (player_faceit_rank_history_on_conflict | null)} }) + /** insert data into the table: "player_flashes" */ + insert_player_flashes?: (player_flashes_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: player_flashes_insert_input[], + /** upsert condition */ + on_conflict?: (player_flashes_on_conflict | null)} }) + /** insert a single row into the table: "player_flashes" */ + insert_player_flashes_one?: (player_flashesGenqlSelection & { __args: { + /** the row to be inserted */ + object: player_flashes_insert_input, + /** upsert condition */ + on_conflict?: (player_flashes_on_conflict | null)} }) + /** insert data into the table: "player_kills" */ + insert_player_kills?: (player_kills_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: player_kills_insert_input[], + /** upsert condition */ + on_conflict?: (player_kills_on_conflict | null)} }) + /** insert data into the table: "player_kills_by_weapon" */ + insert_player_kills_by_weapon?: (player_kills_by_weapon_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: player_kills_by_weapon_insert_input[], + /** upsert condition */ + on_conflict?: (player_kills_by_weapon_on_conflict | null)} }) + /** insert a single row into the table: "player_kills_by_weapon" */ + insert_player_kills_by_weapon_one?: (player_kills_by_weaponGenqlSelection & { __args: { + /** the row to be inserted */ + object: player_kills_by_weapon_insert_input, + /** upsert condition */ + on_conflict?: (player_kills_by_weapon_on_conflict | null)} }) + /** insert a single row into the table: "player_kills" */ + insert_player_kills_one?: (player_killsGenqlSelection & { __args: { + /** the row to be inserted */ + object: player_kills_insert_input, + /** upsert condition */ + on_conflict?: (player_kills_on_conflict | null)} }) + /** insert data into the table: "player_leaderboard_rank" */ + insert_player_leaderboard_rank?: (player_leaderboard_rank_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: player_leaderboard_rank_insert_input[]} }) + /** insert a single row into the table: "player_leaderboard_rank" */ + insert_player_leaderboard_rank_one?: (player_leaderboard_rankGenqlSelection & { __args: { + /** the row to be inserted */ + object: player_leaderboard_rank_insert_input} }) + /** insert data into the table: "player_match_map_stats" */ + insert_player_match_map_stats?: (player_match_map_stats_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: player_match_map_stats_insert_input[], + /** upsert condition */ + on_conflict?: (player_match_map_stats_on_conflict | null)} }) + /** insert a single row into the table: "player_match_map_stats" */ + insert_player_match_map_stats_one?: (player_match_map_statsGenqlSelection & { __args: { + /** the row to be inserted */ + object: player_match_map_stats_insert_input, + /** upsert condition */ + on_conflict?: (player_match_map_stats_on_conflict | null)} }) + /** insert data into the table: "player_objectives" */ + insert_player_objectives?: (player_objectives_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: player_objectives_insert_input[], + /** upsert condition */ + on_conflict?: (player_objectives_on_conflict | null)} }) + /** insert a single row into the table: "player_objectives" */ + insert_player_objectives_one?: (player_objectivesGenqlSelection & { __args: { + /** the row to be inserted */ + object: player_objectives_insert_input, + /** upsert condition */ + on_conflict?: (player_objectives_on_conflict | null)} }) + /** insert data into the table: "player_premier_rank_history" */ + insert_player_premier_rank_history?: (player_premier_rank_history_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: player_premier_rank_history_insert_input[], + /** upsert condition */ + on_conflict?: (player_premier_rank_history_on_conflict | null)} }) + /** insert a single row into the table: "player_premier_rank_history" */ + insert_player_premier_rank_history_one?: (player_premier_rank_historyGenqlSelection & { __args: { + /** the row to be inserted */ + object: player_premier_rank_history_insert_input, + /** upsert condition */ + on_conflict?: (player_premier_rank_history_on_conflict | null)} }) + /** insert data into the table: "player_sanctions" */ + insert_player_sanctions?: (player_sanctions_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: player_sanctions_insert_input[], + /** upsert condition */ + on_conflict?: (player_sanctions_on_conflict | null)} }) + /** insert a single row into the table: "player_sanctions" */ + insert_player_sanctions_one?: (player_sanctionsGenqlSelection & { __args: { + /** the row to be inserted */ + object: player_sanctions_insert_input, + /** upsert condition */ + on_conflict?: (player_sanctions_on_conflict | null)} }) + /** insert data into the table: "player_season_stats" */ + insert_player_season_stats?: (player_season_stats_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: player_season_stats_insert_input[], + /** upsert condition */ + on_conflict?: (player_season_stats_on_conflict | null)} }) + /** insert a single row into the table: "player_season_stats" */ + insert_player_season_stats_one?: (player_season_statsGenqlSelection & { __args: { + /** the row to be inserted */ + object: player_season_stats_insert_input, + /** upsert condition */ + on_conflict?: (player_season_stats_on_conflict | null)} }) + /** insert data into the table: "player_stats" */ + insert_player_stats?: (player_stats_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: player_stats_insert_input[], + /** upsert condition */ + on_conflict?: (player_stats_on_conflict | null)} }) + /** insert a single row into the table: "player_stats" */ + insert_player_stats_one?: (player_statsGenqlSelection & { __args: { + /** the row to be inserted */ + object: player_stats_insert_input, + /** upsert condition */ + on_conflict?: (player_stats_on_conflict | null)} }) + /** insert data into the table: "player_steam_bot_friend" */ + insert_player_steam_bot_friend?: (player_steam_bot_friend_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: player_steam_bot_friend_insert_input[], + /** upsert condition */ + on_conflict?: (player_steam_bot_friend_on_conflict | null)} }) + /** insert a single row into the table: "player_steam_bot_friend" */ + insert_player_steam_bot_friend_one?: (player_steam_bot_friendGenqlSelection & { __args: { + /** the row to be inserted */ + object: player_steam_bot_friend_insert_input, + /** upsert condition */ + on_conflict?: (player_steam_bot_friend_on_conflict | null)} }) + /** insert data into the table: "player_steam_match_auth" */ + insert_player_steam_match_auth?: (player_steam_match_auth_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: player_steam_match_auth_insert_input[], + /** upsert condition */ + on_conflict?: (player_steam_match_auth_on_conflict | null)} }) + /** insert a single row into the table: "player_steam_match_auth" */ + insert_player_steam_match_auth_one?: (player_steam_match_authGenqlSelection & { __args: { + /** the row to be inserted */ + object: player_steam_match_auth_insert_input, + /** upsert condition */ + on_conflict?: (player_steam_match_auth_on_conflict | null)} }) + /** insert data into the table: "player_unused_utility" */ + insert_player_unused_utility?: (player_unused_utility_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: player_unused_utility_insert_input[], + /** upsert condition */ + on_conflict?: (player_unused_utility_on_conflict | null)} }) + /** insert a single row into the table: "player_unused_utility" */ + insert_player_unused_utility_one?: (player_unused_utilityGenqlSelection & { __args: { + /** the row to be inserted */ + object: player_unused_utility_insert_input, + /** upsert condition */ + on_conflict?: (player_unused_utility_on_conflict | null)} }) + /** insert data into the table: "player_utility" */ + insert_player_utility?: (player_utility_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: player_utility_insert_input[], + /** upsert condition */ + on_conflict?: (player_utility_on_conflict | null)} }) + /** insert a single row into the table: "player_utility" */ + insert_player_utility_one?: (player_utilityGenqlSelection & { __args: { + /** the row to be inserted */ + object: player_utility_insert_input, + /** upsert condition */ + on_conflict?: (player_utility_on_conflict | null)} }) + /** insert data into the table: "players" */ + insert_players?: (players_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: players_insert_input[], + /** upsert condition */ + on_conflict?: (players_on_conflict | null)} }) + /** insert a single row into the table: "players" */ + insert_players_one?: (playersGenqlSelection & { __args: { + /** the row to be inserted */ + object: players_insert_input, + /** upsert condition */ + on_conflict?: (players_on_conflict | null)} }) + /** insert data into the table: "plugin_versions" */ + insert_plugin_versions?: (plugin_versions_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: plugin_versions_insert_input[], + /** upsert condition */ + on_conflict?: (plugin_versions_on_conflict | null)} }) + /** insert a single row into the table: "plugin_versions" */ + insert_plugin_versions_one?: (plugin_versionsGenqlSelection & { __args: { + /** the row to be inserted */ + object: plugin_versions_insert_input, + /** upsert condition */ + on_conflict?: (plugin_versions_on_conflict | null)} }) + /** insert data into the table: "push_subscriptions" */ + insert_push_subscriptions?: (push_subscriptions_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: push_subscriptions_insert_input[], + /** upsert condition */ + on_conflict?: (push_subscriptions_on_conflict | null)} }) + /** insert a single row into the table: "push_subscriptions" */ + insert_push_subscriptions_one?: (push_subscriptionsGenqlSelection & { __args: { + /** the row to be inserted */ + object: push_subscriptions_insert_input, + /** upsert condition */ + on_conflict?: (push_subscriptions_on_conflict | null)} }) + /** insert data into the table: "v_role_permissions" */ + insert_role_permissions?: (role_permissions_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: role_permissions_insert_input[]} }) + /** insert a single row into the table: "v_role_permissions" */ + insert_role_permissions_one?: (role_permissionsGenqlSelection & { __args: { + /** the row to be inserted */ + object: role_permissions_insert_input} }) + /** insert data into the table: "seasons" */ + insert_seasons?: (seasons_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: seasons_insert_input[], + /** upsert condition */ + on_conflict?: (seasons_on_conflict | null)} }) + /** insert a single row into the table: "seasons" */ + insert_seasons_one?: (seasonsGenqlSelection & { __args: { + /** the row to be inserted */ + object: seasons_insert_input, + /** upsert condition */ + on_conflict?: (seasons_on_conflict | null)} }) + /** insert data into the table: "server_regions" */ + insert_server_regions?: (server_regions_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: server_regions_insert_input[], + /** upsert condition */ + on_conflict?: (server_regions_on_conflict | null)} }) + /** insert a single row into the table: "server_regions" */ + insert_server_regions_one?: (server_regionsGenqlSelection & { __args: { + /** the row to be inserted */ + object: server_regions_insert_input, + /** upsert condition */ + on_conflict?: (server_regions_on_conflict | null)} }) + /** insert data into the table: "servers" */ + insert_servers?: (servers_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: servers_insert_input[], + /** upsert condition */ + on_conflict?: (servers_on_conflict | null)} }) + /** insert a single row into the table: "servers" */ + insert_servers_one?: (serversGenqlSelection & { __args: { + /** the row to be inserted */ + object: servers_insert_input, + /** upsert condition */ + on_conflict?: (servers_on_conflict | null)} }) + /** insert data into the table: "settings" */ + insert_settings?: (settings_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: settings_insert_input[], + /** upsert condition */ + on_conflict?: (settings_on_conflict | null)} }) + /** insert a single row into the table: "settings" */ + insert_settings_one?: (settingsGenqlSelection & { __args: { + /** the row to be inserted */ + object: settings_insert_input, + /** upsert condition */ + on_conflict?: (settings_on_conflict | null)} }) + /** insert data into the table: "steam_account_claims" */ + insert_steam_account_claims?: (steam_account_claims_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: steam_account_claims_insert_input[], + /** upsert condition */ + on_conflict?: (steam_account_claims_on_conflict | null)} }) + /** insert a single row into the table: "steam_account_claims" */ + insert_steam_account_claims_one?: (steam_account_claimsGenqlSelection & { __args: { + /** the row to be inserted */ + object: steam_account_claims_insert_input, + /** upsert condition */ + on_conflict?: (steam_account_claims_on_conflict | null)} }) + /** insert data into the table: "steam_accounts" */ + insert_steam_accounts?: (steam_accounts_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: steam_accounts_insert_input[], + /** upsert condition */ + on_conflict?: (steam_accounts_on_conflict | null)} }) + /** insert a single row into the table: "steam_accounts" */ + insert_steam_accounts_one?: (steam_accountsGenqlSelection & { __args: { + /** the row to be inserted */ + object: steam_accounts_insert_input, + /** upsert condition */ + on_conflict?: (steam_accounts_on_conflict | null)} }) + /** insert data into the table: "system_alerts" */ + insert_system_alerts?: (system_alerts_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: system_alerts_insert_input[], + /** upsert condition */ + on_conflict?: (system_alerts_on_conflict | null)} }) + /** insert a single row into the table: "system_alerts" */ + insert_system_alerts_one?: (system_alertsGenqlSelection & { __args: { + /** the row to be inserted */ + object: system_alerts_insert_input, + /** upsert condition */ + on_conflict?: (system_alerts_on_conflict | null)} }) + /** insert data into the table: "team_invites" */ + insert_team_invites?: (team_invites_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: team_invites_insert_input[], + /** upsert condition */ + on_conflict?: (team_invites_on_conflict | null)} }) + /** insert a single row into the table: "team_invites" */ + insert_team_invites_one?: (team_invitesGenqlSelection & { __args: { + /** the row to be inserted */ + object: team_invites_insert_input, + /** upsert condition */ + on_conflict?: (team_invites_on_conflict | null)} }) + /** insert data into the table: "team_roster" */ + insert_team_roster?: (team_roster_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: team_roster_insert_input[], + /** upsert condition */ + on_conflict?: (team_roster_on_conflict | null)} }) + /** insert a single row into the table: "team_roster" */ + insert_team_roster_one?: (team_rosterGenqlSelection & { __args: { + /** the row to be inserted */ + object: team_roster_insert_input, + /** upsert condition */ + on_conflict?: (team_roster_on_conflict | null)} }) + /** insert data into the table: "team_scrim_alerts" */ + insert_team_scrim_alerts?: (team_scrim_alerts_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: team_scrim_alerts_insert_input[], + /** upsert condition */ + on_conflict?: (team_scrim_alerts_on_conflict | null)} }) + /** insert a single row into the table: "team_scrim_alerts" */ + insert_team_scrim_alerts_one?: (team_scrim_alertsGenqlSelection & { __args: { + /** the row to be inserted */ + object: team_scrim_alerts_insert_input, + /** upsert condition */ + on_conflict?: (team_scrim_alerts_on_conflict | null)} }) + /** insert data into the table: "team_scrim_availability" */ + insert_team_scrim_availability?: (team_scrim_availability_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: team_scrim_availability_insert_input[], + /** upsert condition */ + on_conflict?: (team_scrim_availability_on_conflict | null)} }) + /** insert a single row into the table: "team_scrim_availability" */ + insert_team_scrim_availability_one?: (team_scrim_availabilityGenqlSelection & { __args: { + /** the row to be inserted */ + object: team_scrim_availability_insert_input, + /** upsert condition */ + on_conflict?: (team_scrim_availability_on_conflict | null)} }) + /** insert data into the table: "team_scrim_request_proposals" */ + insert_team_scrim_request_proposals?: (team_scrim_request_proposals_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: team_scrim_request_proposals_insert_input[], + /** upsert condition */ + on_conflict?: (team_scrim_request_proposals_on_conflict | null)} }) + /** insert a single row into the table: "team_scrim_request_proposals" */ + insert_team_scrim_request_proposals_one?: (team_scrim_request_proposalsGenqlSelection & { __args: { + /** the row to be inserted */ + object: team_scrim_request_proposals_insert_input, + /** upsert condition */ + on_conflict?: (team_scrim_request_proposals_on_conflict | null)} }) + /** insert data into the table: "team_scrim_requests" */ + insert_team_scrim_requests?: (team_scrim_requests_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: team_scrim_requests_insert_input[], + /** upsert condition */ + on_conflict?: (team_scrim_requests_on_conflict | null)} }) + /** insert a single row into the table: "team_scrim_requests" */ + insert_team_scrim_requests_one?: (team_scrim_requestsGenqlSelection & { __args: { + /** the row to be inserted */ + object: team_scrim_requests_insert_input, + /** upsert condition */ + on_conflict?: (team_scrim_requests_on_conflict | null)} }) + /** insert data into the table: "team_scrim_settings" */ + insert_team_scrim_settings?: (team_scrim_settings_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: team_scrim_settings_insert_input[], + /** upsert condition */ + on_conflict?: (team_scrim_settings_on_conflict | null)} }) + /** insert a single row into the table: "team_scrim_settings" */ + insert_team_scrim_settings_one?: (team_scrim_settingsGenqlSelection & { __args: { + /** the row to be inserted */ + object: team_scrim_settings_insert_input, + /** upsert condition */ + on_conflict?: (team_scrim_settings_on_conflict | null)} }) + /** insert data into the table: "team_suggestions" */ + insert_team_suggestions?: (team_suggestions_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: team_suggestions_insert_input[], + /** upsert condition */ + on_conflict?: (team_suggestions_on_conflict | null)} }) + /** insert a single row into the table: "team_suggestions" */ + insert_team_suggestions_one?: (team_suggestionsGenqlSelection & { __args: { + /** the row to be inserted */ + object: team_suggestions_insert_input, + /** upsert condition */ + on_conflict?: (team_suggestions_on_conflict | null)} }) + /** insert data into the table: "teams" */ + insert_teams?: (teams_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: teams_insert_input[], + /** upsert condition */ + on_conflict?: (teams_on_conflict | null)} }) + /** insert a single row into the table: "teams" */ + insert_teams_one?: (teamsGenqlSelection & { __args: { + /** the row to be inserted */ + object: teams_insert_input, + /** upsert condition */ + on_conflict?: (teams_on_conflict | null)} }) + /** insert data into the table: "tournament_awards" */ + insert_tournament_awards?: (tournament_awards_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: tournament_awards_insert_input[], + /** upsert condition */ + on_conflict?: (tournament_awards_on_conflict | null)} }) + /** insert a single row into the table: "tournament_awards" */ + insert_tournament_awards_one?: (tournament_awardsGenqlSelection & { __args: { + /** the row to be inserted */ + object: tournament_awards_insert_input, + /** upsert condition */ + on_conflict?: (tournament_awards_on_conflict | null)} }) + /** insert data into the table: "tournament_brackets" */ + insert_tournament_brackets?: (tournament_brackets_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: tournament_brackets_insert_input[], + /** upsert condition */ + on_conflict?: (tournament_brackets_on_conflict | null)} }) + /** insert a single row into the table: "tournament_brackets" */ + insert_tournament_brackets_one?: (tournament_bracketsGenqlSelection & { __args: { + /** the row to be inserted */ + object: tournament_brackets_insert_input, + /** upsert condition */ + on_conflict?: (tournament_brackets_on_conflict | null)} }) + /** insert data into the table: "tournament_categories" */ + insert_tournament_categories?: (tournament_categories_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: tournament_categories_insert_input[], + /** upsert condition */ + on_conflict?: (tournament_categories_on_conflict | null)} }) + /** insert a single row into the table: "tournament_categories" */ + insert_tournament_categories_one?: (tournament_categoriesGenqlSelection & { __args: { + /** the row to be inserted */ + object: tournament_categories_insert_input, + /** upsert condition */ + on_conflict?: (tournament_categories_on_conflict | null)} }) + /** insert data into the table: "tournament_free_agents" */ + insert_tournament_free_agents?: (tournament_free_agents_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: tournament_free_agents_insert_input[], + /** upsert condition */ + on_conflict?: (tournament_free_agents_on_conflict | null)} }) + /** insert a single row into the table: "tournament_free_agents" */ + insert_tournament_free_agents_one?: (tournament_free_agentsGenqlSelection & { __args: { + /** the row to be inserted */ + object: tournament_free_agents_insert_input, + /** upsert condition */ + on_conflict?: (tournament_free_agents_on_conflict | null)} }) + /** insert data into the table: "tournament_invite_code_uses" */ + insert_tournament_invite_code_uses?: (tournament_invite_code_uses_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: tournament_invite_code_uses_insert_input[], + /** upsert condition */ + on_conflict?: (tournament_invite_code_uses_on_conflict | null)} }) + /** insert a single row into the table: "tournament_invite_code_uses" */ + insert_tournament_invite_code_uses_one?: (tournament_invite_code_usesGenqlSelection & { __args: { + /** the row to be inserted */ + object: tournament_invite_code_uses_insert_input, + /** upsert condition */ + on_conflict?: (tournament_invite_code_uses_on_conflict | null)} }) + /** insert data into the table: "tournament_invite_codes" */ + insert_tournament_invite_codes?: (tournament_invite_codes_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: tournament_invite_codes_insert_input[], + /** upsert condition */ + on_conflict?: (tournament_invite_codes_on_conflict | null)} }) + /** insert a single row into the table: "tournament_invite_codes" */ + insert_tournament_invite_codes_one?: (tournament_invite_codesGenqlSelection & { __args: { + /** the row to be inserted */ + object: tournament_invite_codes_insert_input, + /** upsert condition */ + on_conflict?: (tournament_invite_codes_on_conflict | null)} }) + /** insert data into the table: "tournament_invites" */ + insert_tournament_invites?: (tournament_invites_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: tournament_invites_insert_input[], + /** upsert condition */ + on_conflict?: (tournament_invites_on_conflict | null)} }) + /** insert a single row into the table: "tournament_invites" */ + insert_tournament_invites_one?: (tournament_invitesGenqlSelection & { __args: { + /** the row to be inserted */ + object: tournament_invites_insert_input, + /** upsert condition */ + on_conflict?: (tournament_invites_on_conflict | null)} }) + /** insert data into the table: "tournament_leaderboard_entries" */ + insert_tournament_leaderboard_entries?: (tournament_leaderboard_entries_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: tournament_leaderboard_entries_insert_input[]} }) + /** insert a single row into the table: "tournament_leaderboard_entries" */ + insert_tournament_leaderboard_entries_one?: (tournament_leaderboard_entriesGenqlSelection & { __args: { + /** the row to be inserted */ + object: tournament_leaderboard_entries_insert_input} }) + /** insert data into the table: "tournament_no_shows" */ + insert_tournament_no_shows?: (tournament_no_shows_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: tournament_no_shows_insert_input[], + /** upsert condition */ + on_conflict?: (tournament_no_shows_on_conflict | null)} }) + /** insert a single row into the table: "tournament_no_shows" */ + insert_tournament_no_shows_one?: (tournament_no_showsGenqlSelection & { __args: { + /** the row to be inserted */ + object: tournament_no_shows_insert_input, + /** upsert condition */ + on_conflict?: (tournament_no_shows_on_conflict | null)} }) + /** insert data into the table: "tournament_organizer_teams" */ + insert_tournament_organizer_teams?: (tournament_organizer_teams_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: tournament_organizer_teams_insert_input[], + /** upsert condition */ + on_conflict?: (tournament_organizer_teams_on_conflict | null)} }) + /** insert a single row into the table: "tournament_organizer_teams" */ + insert_tournament_organizer_teams_one?: (tournament_organizer_teamsGenqlSelection & { __args: { + /** the row to be inserted */ + object: tournament_organizer_teams_insert_input, + /** upsert condition */ + on_conflict?: (tournament_organizer_teams_on_conflict | null)} }) + /** insert data into the table: "tournament_organizers" */ + insert_tournament_organizers?: (tournament_organizers_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: tournament_organizers_insert_input[], + /** upsert condition */ + on_conflict?: (tournament_organizers_on_conflict | null)} }) + /** insert a single row into the table: "tournament_organizers" */ + insert_tournament_organizers_one?: (tournament_organizersGenqlSelection & { __args: { + /** the row to be inserted */ + object: tournament_organizers_insert_input, + /** upsert condition */ + on_conflict?: (tournament_organizers_on_conflict | null)} }) + /** insert data into the table: "tournament_prizes" */ + insert_tournament_prizes?: (tournament_prizes_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: tournament_prizes_insert_input[], + /** upsert condition */ + on_conflict?: (tournament_prizes_on_conflict | null)} }) + /** insert a single row into the table: "tournament_prizes" */ + insert_tournament_prizes_one?: (tournament_prizesGenqlSelection & { __args: { + /** the row to be inserted */ + object: tournament_prizes_insert_input, + /** upsert condition */ + on_conflict?: (tournament_prizes_on_conflict | null)} }) + /** insert data into the table: "tournament_registration_unlocks" */ + insert_tournament_registration_unlocks?: (tournament_registration_unlocks_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: tournament_registration_unlocks_insert_input[], + /** upsert condition */ + on_conflict?: (tournament_registration_unlocks_on_conflict | null)} }) + /** insert a single row into the table: "tournament_registration_unlocks" */ + insert_tournament_registration_unlocks_one?: (tournament_registration_unlocksGenqlSelection & { __args: { + /** the row to be inserted */ + object: tournament_registration_unlocks_insert_input, + /** upsert condition */ + on_conflict?: (tournament_registration_unlocks_on_conflict | null)} }) + /** insert data into the table: "tournament_stage_windows" */ + insert_tournament_stage_windows?: (tournament_stage_windows_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: tournament_stage_windows_insert_input[], + /** upsert condition */ + on_conflict?: (tournament_stage_windows_on_conflict | null)} }) + /** insert a single row into the table: "tournament_stage_windows" */ + insert_tournament_stage_windows_one?: (tournament_stage_windowsGenqlSelection & { __args: { + /** the row to be inserted */ + object: tournament_stage_windows_insert_input, + /** upsert condition */ + on_conflict?: (tournament_stage_windows_on_conflict | null)} }) + /** insert data into the table: "tournament_stages" */ + insert_tournament_stages?: (tournament_stages_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: tournament_stages_insert_input[], + /** upsert condition */ + on_conflict?: (tournament_stages_on_conflict | null)} }) + /** insert a single row into the table: "tournament_stages" */ + insert_tournament_stages_one?: (tournament_stagesGenqlSelection & { __args: { + /** the row to be inserted */ + object: tournament_stages_insert_input, + /** upsert condition */ + on_conflict?: (tournament_stages_on_conflict | null)} }) + /** insert data into the table: "tournament_team_invites" */ + insert_tournament_team_invites?: (tournament_team_invites_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: tournament_team_invites_insert_input[], + /** upsert condition */ + on_conflict?: (tournament_team_invites_on_conflict | null)} }) + /** insert a single row into the table: "tournament_team_invites" */ + insert_tournament_team_invites_one?: (tournament_team_invitesGenqlSelection & { __args: { + /** the row to be inserted */ + object: tournament_team_invites_insert_input, + /** upsert condition */ + on_conflict?: (tournament_team_invites_on_conflict | null)} }) + /** insert data into the table: "tournament_team_roster" */ + insert_tournament_team_roster?: (tournament_team_roster_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: tournament_team_roster_insert_input[], + /** upsert condition */ + on_conflict?: (tournament_team_roster_on_conflict | null)} }) + /** insert a single row into the table: "tournament_team_roster" */ + insert_tournament_team_roster_one?: (tournament_team_rosterGenqlSelection & { __args: { + /** the row to be inserted */ + object: tournament_team_roster_insert_input, + /** upsert condition */ + on_conflict?: (tournament_team_roster_on_conflict | null)} }) + /** insert data into the table: "tournament_teams" */ + insert_tournament_teams?: (tournament_teams_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: tournament_teams_insert_input[], + /** upsert condition */ + on_conflict?: (tournament_teams_on_conflict | null)} }) + /** insert a single row into the table: "tournament_teams" */ + insert_tournament_teams_one?: (tournament_teamsGenqlSelection & { __args: { + /** the row to be inserted */ + object: tournament_teams_insert_input, + /** upsert condition */ + on_conflict?: (tournament_teams_on_conflict | null)} }) + /** insert data into the table: "tournaments" */ + insert_tournaments?: (tournaments_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: tournaments_insert_input[], + /** upsert condition */ + on_conflict?: (tournaments_on_conflict | null)} }) + /** insert a single row into the table: "tournaments" */ + insert_tournaments_one?: (tournamentsGenqlSelection & { __args: { + /** the row to be inserted */ + object: tournaments_insert_input, + /** upsert condition */ + on_conflict?: (tournaments_on_conflict | null)} }) + /** insert data into the table: "utility_collection_items" */ + insert_utility_collection_items?: (utility_collection_items_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: utility_collection_items_insert_input[], + /** upsert condition */ + on_conflict?: (utility_collection_items_on_conflict | null)} }) + /** insert a single row into the table: "utility_collection_items" */ + insert_utility_collection_items_one?: (utility_collection_itemsGenqlSelection & { __args: { + /** the row to be inserted */ + object: utility_collection_items_insert_input, + /** upsert condition */ + on_conflict?: (utility_collection_items_on_conflict | null)} }) + /** insert data into the table: "utility_collections" */ + insert_utility_collections?: (utility_collections_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: utility_collections_insert_input[], + /** upsert condition */ + on_conflict?: (utility_collections_on_conflict | null)} }) + /** insert a single row into the table: "utility_collections" */ + insert_utility_collections_one?: (utility_collectionsGenqlSelection & { __args: { + /** the row to be inserted */ + object: utility_collections_insert_input, + /** upsert condition */ + on_conflict?: (utility_collections_on_conflict | null)} }) + /** insert data into the table: "utility_demo_mines" */ + insert_utility_demo_mines?: (utility_demo_mines_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: utility_demo_mines_insert_input[], + /** upsert condition */ + on_conflict?: (utility_demo_mines_on_conflict | null)} }) + /** insert a single row into the table: "utility_demo_mines" */ + insert_utility_demo_mines_one?: (utility_demo_minesGenqlSelection & { __args: { + /** the row to be inserted */ + object: utility_demo_mines_insert_input, + /** upsert condition */ + on_conflict?: (utility_demo_mines_on_conflict | null)} }) + /** insert data into the table: "utility_demo_throws" */ + insert_utility_demo_throws?: (utility_demo_throws_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: utility_demo_throws_insert_input[], + /** upsert condition */ + on_conflict?: (utility_demo_throws_on_conflict | null)} }) + /** insert a single row into the table: "utility_demo_throws" */ + insert_utility_demo_throws_one?: (utility_demo_throwsGenqlSelection & { __args: { + /** the row to be inserted */ + object: utility_demo_throws_insert_input, + /** upsert condition */ + on_conflict?: (utility_demo_throws_on_conflict | null)} }) + /** insert data into the table: "utility_drift_results" */ + insert_utility_drift_results?: (utility_drift_results_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: utility_drift_results_insert_input[], + /** upsert condition */ + on_conflict?: (utility_drift_results_on_conflict | null)} }) + /** insert a single row into the table: "utility_drift_results" */ + insert_utility_drift_results_one?: (utility_drift_resultsGenqlSelection & { __args: { + /** the row to be inserted */ + object: utility_drift_results_insert_input, + /** upsert condition */ + on_conflict?: (utility_drift_results_on_conflict | null)} }) + /** insert data into the table: "utility_drift_scans" */ + insert_utility_drift_scans?: (utility_drift_scans_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: utility_drift_scans_insert_input[], + /** upsert condition */ + on_conflict?: (utility_drift_scans_on_conflict | null)} }) + /** insert a single row into the table: "utility_drift_scans" */ + insert_utility_drift_scans_one?: (utility_drift_scansGenqlSelection & { __args: { + /** the row to be inserted */ + object: utility_drift_scans_insert_input, + /** upsert condition */ + on_conflict?: (utility_drift_scans_on_conflict | null)} }) + /** insert data into the table: "utility_lineup_favorites" */ + insert_utility_lineup_favorites?: (utility_lineup_favorites_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: utility_lineup_favorites_insert_input[], + /** upsert condition */ + on_conflict?: (utility_lineup_favorites_on_conflict | null)} }) + /** insert a single row into the table: "utility_lineup_favorites" */ + insert_utility_lineup_favorites_one?: (utility_lineup_favoritesGenqlSelection & { __args: { + /** the row to be inserted */ + object: utility_lineup_favorites_insert_input, + /** upsert condition */ + on_conflict?: (utility_lineup_favorites_on_conflict | null)} }) + /** insert data into the table: "utility_lineup_progress" */ + insert_utility_lineup_progress?: (utility_lineup_progress_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: utility_lineup_progress_insert_input[], + /** upsert condition */ + on_conflict?: (utility_lineup_progress_on_conflict | null)} }) + /** insert a single row into the table: "utility_lineup_progress" */ + insert_utility_lineup_progress_one?: (utility_lineup_progressGenqlSelection & { __args: { + /** the row to be inserted */ + object: utility_lineup_progress_insert_input, + /** upsert condition */ + on_conflict?: (utility_lineup_progress_on_conflict | null)} }) + /** insert data into the table: "utility_lineup_renders" */ + insert_utility_lineup_renders?: (utility_lineup_renders_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: utility_lineup_renders_insert_input[], + /** upsert condition */ + on_conflict?: (utility_lineup_renders_on_conflict | null)} }) + /** insert a single row into the table: "utility_lineup_renders" */ + insert_utility_lineup_renders_one?: (utility_lineup_rendersGenqlSelection & { __args: { + /** the row to be inserted */ + object: utility_lineup_renders_insert_input, + /** upsert condition */ + on_conflict?: (utility_lineup_renders_on_conflict | null)} }) + /** insert data into the table: "utility_lineup_repairs" */ + insert_utility_lineup_repairs?: (utility_lineup_repairs_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: utility_lineup_repairs_insert_input[], + /** upsert condition */ + on_conflict?: (utility_lineup_repairs_on_conflict | null)} }) + /** insert a single row into the table: "utility_lineup_repairs" */ + insert_utility_lineup_repairs_one?: (utility_lineup_repairsGenqlSelection & { __args: { + /** the row to be inserted */ + object: utility_lineup_repairs_insert_input, + /** upsert condition */ + on_conflict?: (utility_lineup_repairs_on_conflict | null)} }) + /** insert data into the table: "utility_lineup_votes" */ + insert_utility_lineup_votes?: (utility_lineup_votes_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: utility_lineup_votes_insert_input[], + /** upsert condition */ + on_conflict?: (utility_lineup_votes_on_conflict | null)} }) + /** insert a single row into the table: "utility_lineup_votes" */ + insert_utility_lineup_votes_one?: (utility_lineup_votesGenqlSelection & { __args: { + /** the row to be inserted */ + object: utility_lineup_votes_insert_input, + /** upsert condition */ + on_conflict?: (utility_lineup_votes_on_conflict | null)} }) + /** insert data into the table: "utility_lineups" */ + insert_utility_lineups?: (utility_lineups_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: utility_lineups_insert_input[], + /** upsert condition */ + on_conflict?: (utility_lineups_on_conflict | null)} }) + /** insert a single row into the table: "utility_lineups" */ + insert_utility_lineups_one?: (utility_lineupsGenqlSelection & { __args: { + /** the row to be inserted */ + object: utility_lineups_insert_input, + /** upsert condition */ + on_conflict?: (utility_lineups_on_conflict | null)} }) + /** insert data into the table: "utility_meta_lineups" */ + insert_utility_meta_lineups?: (utility_meta_lineups_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: utility_meta_lineups_insert_input[], + /** upsert condition */ + on_conflict?: (utility_meta_lineups_on_conflict | null)} }) + /** insert a single row into the table: "utility_meta_lineups" */ + insert_utility_meta_lineups_one?: (utility_meta_lineupsGenqlSelection & { __args: { + /** the row to be inserted */ + object: utility_meta_lineups_insert_input, + /** upsert condition */ + on_conflict?: (utility_meta_lineups_on_conflict | null)} }) + /** insert data into the table: "utility_playbook_steps" */ + insert_utility_playbook_steps?: (utility_playbook_steps_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: utility_playbook_steps_insert_input[], + /** upsert condition */ + on_conflict?: (utility_playbook_steps_on_conflict | null)} }) + /** insert a single row into the table: "utility_playbook_steps" */ + insert_utility_playbook_steps_one?: (utility_playbook_stepsGenqlSelection & { __args: { + /** the row to be inserted */ + object: utility_playbook_steps_insert_input, + /** upsert condition */ + on_conflict?: (utility_playbook_steps_on_conflict | null)} }) + /** insert data into the table: "utility_playbooks" */ + insert_utility_playbooks?: (utility_playbooks_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: utility_playbooks_insert_input[], + /** upsert condition */ + on_conflict?: (utility_playbooks_on_conflict | null)} }) + /** insert a single row into the table: "utility_playbooks" */ + insert_utility_playbooks_one?: (utility_playbooksGenqlSelection & { __args: { + /** the row to be inserted */ + object: utility_playbooks_insert_input, + /** upsert condition */ + on_conflict?: (utility_playbooks_on_conflict | null)} }) + /** insert data into the table: "utility_practice_invites" */ + insert_utility_practice_invites?: (utility_practice_invites_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: utility_practice_invites_insert_input[], + /** upsert condition */ + on_conflict?: (utility_practice_invites_on_conflict | null)} }) + /** insert a single row into the table: "utility_practice_invites" */ + insert_utility_practice_invites_one?: (utility_practice_invitesGenqlSelection & { __args: { + /** the row to be inserted */ + object: utility_practice_invites_insert_input, + /** upsert condition */ + on_conflict?: (utility_practice_invites_on_conflict | null)} }) + /** insert data into the table: "utility_practice_sessions" */ + insert_utility_practice_sessions?: (utility_practice_sessions_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: utility_practice_sessions_insert_input[], + /** upsert condition */ + on_conflict?: (utility_practice_sessions_on_conflict | null)} }) + /** insert a single row into the table: "utility_practice_sessions" */ + insert_utility_practice_sessions_one?: (utility_practice_sessionsGenqlSelection & { __args: { + /** the row to be inserted */ + object: utility_practice_sessions_insert_input, + /** upsert condition */ + on_conflict?: (utility_practice_sessions_on_conflict | null)} }) + /** insert data into the table: "v_match_captains" */ + insert_v_match_captains?: (v_match_captains_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: v_match_captains_insert_input[]} }) + /** insert a single row into the table: "v_match_captains" */ + insert_v_match_captains_one?: (v_match_captainsGenqlSelection & { __args: { + /** the row to be inserted */ + object: v_match_captains_insert_input} }) + /** insert data into the table: "v_match_map_backup_rounds" */ + insert_v_match_map_backup_rounds?: (v_match_map_backup_rounds_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: v_match_map_backup_rounds_insert_input[]} }) + /** insert a single row into the table: "v_match_map_backup_rounds" */ + insert_v_match_map_backup_rounds_one?: (v_match_map_backup_roundsGenqlSelection & { __args: { + /** the row to be inserted */ + object: v_match_map_backup_rounds_insert_input} }) + /** insert data into the table: "v_player_match_map_hltv" */ + insert_v_player_match_map_hltv?: (v_player_match_map_hltv_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: v_player_match_map_hltv_insert_input[]} }) + /** insert a single row into the table: "v_player_match_map_hltv" */ + insert_v_player_match_map_hltv_one?: (v_player_match_map_hltvGenqlSelection & { __args: { + /** the row to be inserted */ + object: v_player_match_map_hltv_insert_input} }) + /** insert data into the table: "v_pool_maps" */ + insert_v_pool_maps?: (v_pool_maps_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: v_pool_maps_insert_input[]} }) + /** insert a single row into the table: "v_pool_maps" */ + insert_v_pool_maps_one?: (v_pool_mapsGenqlSelection & { __args: { + /** the row to be inserted */ + object: v_pool_maps_insert_input} }) + /** insert data into the table: "v_team_stage_results" */ + insert_v_team_stage_results?: (v_team_stage_results_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: v_team_stage_results_insert_input[], + /** upsert condition */ + on_conflict?: (v_team_stage_results_on_conflict | null)} }) + /** insert a single row into the table: "v_team_stage_results" */ + insert_v_team_stage_results_one?: (v_team_stage_resultsGenqlSelection & { __args: { + /** the row to be inserted */ + 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)} }) + /** Invite players to a utility practice session */ + inviteToUtilityPractice?: (SuccessOutputGenqlSelection & { __args: {session_id: Scalars['uuid'], steam_ids: Scalars['String'][]} }) + /** joinDraftGame */ + joinDraftGame?: (SuccessOutputGenqlSelection & { __args: {draftGameId: Scalars['uuid'], inviteCode?: (Scalars['String'] | null)} }) + /** joinDraftGameAsParty */ + joinDraftGameAsParty?: (SuccessOutputGenqlSelection & { __args: {draftGameId: Scalars['uuid'], inviteCode?: (Scalars['String'] | null)} }) + /** Register for a tournament that drafts teams, alone or with your lobby */ + joinTournamentAsFreeAgent?: (SuccessOutputGenqlSelection & { __args: {tournament_id: Scalars['uuid'], with_party?: (Scalars['Boolean'] | null)} }) + /** Join a utility practice session */ + joinUtilityPractice?: (UtilityPracticeSessionOutputGenqlSelection & { __args?: {invite_code?: (Scalars['String'] | null), session_id?: (Scalars['uuid'] | null)} }) + kickServerPlayer?: (KickResultGenqlSelection & { __args: {reason?: (Scalars['String'] | null), serverId: Scalars['String'], steam_id: Scalars['String']} }) + /** execute VOLATILE function "league_award_forfeit" which returns "matches" */ + league_award_forfeit?: (matchesGenqlSelection & { __args: { + /** input parameters for function "league_award_forfeit" */ + args: league_award_forfeit_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)} }) + leaveLineup?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['String']} }) + /** Withdraw from a tournament's free agent pool */ + leaveTournamentAsFreeAgent?: (SuccessOutputGenqlSelection & { __args: {tournament_id: Scalars['uuid']} }) + /** Leave a utility practice session */ + leaveUtilityPractice?: (SuccessOutputGenqlSelection & { __args: {session_id: Scalars['uuid']} }) + linkSteamMatchHistory?: (SteamMatchHistoryLinkOutputGenqlSelection & { __args: {auth_code: Scalars['String'], share_code: Scalars['String']} }) + /** Load dev fixture data (dev only) */ + loadFixtures?: SuccessOutputGenqlSelection + /** Load a utility playbook into a running practice session */ + loadUtilityPlaybookIntoSession?: (SuccessOutputGenqlSelection & { __args: {playbook_id?: (Scalars['uuid'] | null), session_id: Scalars['uuid']} }) + /** logout */ + logout?: SuccessOutputGenqlSelection + /** Move file or directory on game server */ + moveServerItem?: (SuccessOutputGenqlSelection & { __args: {dest_path: Scalars['String'], node_id: Scalars['String'], server_id?: (Scalars['String'] | null), source_path: Scalars['String']} }) + /** Return the latest S3 orphan-scan report (admin only). */ + orphanedDemosScanResult?: OrphanScanResultOutputGenqlSelection + /** Flag in-flight clip_render_jobs paused; pod halts after current highlight. */ + pauseClipRenderBatch?: (SuccessOutputGenqlSelection & { __args: {match_map_id: Scalars['uuid']} }) + 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']} }) + /** Delete every lineup that came from one origin source */ + purgeUtilityLineupSource?: (UtilityPurgeOutputGenqlSelection & { __args: {dry_run?: (Scalars['Boolean'] | null), origin_source: Scalars['String']} }) + /** 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']} }) + /** Organizer re-admits a team that missed check-in, then re-seeds */ + readmitTournamentTeam?: (SuccessOutputGenqlSelection & { __args: {tournament_id: Scalars['uuid'], tournament_team_id: Scalars['uuid']} }) + rebootMatchServer?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid']} }) + /** execute VOLATILE function "recalculate_tournament_awards" which returns "award_recipients" */ + recalculate_tournament_awards?: (award_recipientsGenqlSelection & { __args: { + /** input parameters for function "recalculate_tournament_awards" */ + args: recalculate_tournament_awards_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)} }) + /** Wipe and rebuild all player ELO from finished matches in chronological order (admin only). Runs in the background; track via recomputePlayerEloStatus. */ + 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']} }) + /** Spend a tournament invite link for an unlock on an invite only tournament */ + redeemTournamentInviteCode?: (SuccessOutputGenqlSelection & { __args: {code: Scalars['String'], tournament_id: Scalars['uuid']} }) + /** Reindex every player into the Typesense search index (admin only). Runs in the background; track via refreshAllPlayersStatus. */ + refreshAllPlayers?: ReindexStartedOutputGenqlSelection + /** Return the progress of the player reindex run (admin only). */ + refreshAllPlayersStatus?: ReindexStatusOutputGenqlSelection + refreshFaceitRank?: (SuccessOutputGenqlSelection & { __args: {steam_id: Scalars['String']} }) + refreshLiveHud?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid']} }) + registerName?: (SuccessOutputGenqlSelection & { __args: {name: Scalars['String']} }) + /** Re-mine one batch of demos after a miner change */ + remineUtilityMeta?: UtilityRemineOutputGenqlSelection + /** Remove dev fixture data (dev only) */ + removeFixtures?: SuccessOutputGenqlSelection + /** Remove a friends-role presence bot account */ + removeSteamPresenceBotAccount?: (SuccessOutputGenqlSelection & { __args: {account_id: Scalars['String']} }) + /** execute VOLATILE function "remove_league_team_from_season" which returns "league_team_seasons" */ + remove_league_team_from_season?: (league_team_seasonsGenqlSelection & { __args: { + /** input parameters for function "remove_league_team_from_season" */ + args: remove_league_team_from_season_args, + /** distinct select on columns */ + distinct_on?: (league_team_seasons_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_team_seasons_order_by[] | null), + /** filter the rows returned */ + where?: (league_team_seasons_bool_exp | null)} }) + /** Rename file or directory on game server */ + renameServerItem?: (SuccessOutputGenqlSelection & { __args: {new_path: Scalars['String'], node_id: Scalars['String'], old_path: Scalars['String'], server_id?: (Scalars['String'] | null)} }) + /** Re-film a public lineup's preview clip */ + renderUtilityLineupPreview?: (UtilityRenderQueueOutputGenqlSelection & { __args: {utility_lineup_id: Scalars['uuid']} }) + /** execute VOLATILE function "reorder_league_divisions" which returns "league_divisions" */ + reorder_league_divisions?: (league_divisionsGenqlSelection & { __args: { + /** input parameters for function "reorder_league_divisions" */ + args: reorder_league_divisions_args, + /** distinct select on columns */ + distinct_on?: (league_divisions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_divisions_order_by[] | null), + /** filter the rows returned */ + where?: (league_divisions_bool_exp | null)} }) + /** Re-solve a lineup a drift scan says the map moved */ + repairUtilityLineup?: (UtilitySolveOutputGenqlSelection & { __args: {session_id: Scalars['uuid'], utility_lineup_id: Scalars['uuid']} }) + /** Re-parse every demo in the system (admin only). Runs one demo at a time in the background; this can take a very long time. Track via reparseAllDemosStatus. */ + reparseAllDemos?: ReparseAllStartedOutputGenqlSelection + /** Return the progress of the reparse-all-demos run (admin only). */ + reparseAllDemosStatus?: ReparseAllStatusOutputGenqlSelection + /** Re-parse demo metadata for a match map (admin only) */ + reparseDemo?: (SuccessOutputGenqlSelection & { __args: {match_map_id: Scalars['uuid']} }) + /** Re-parse all demos across every map for a match (admin only). Fires in the background and returns immediately. */ + reparseMatchDemos?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid']} }) + requestNameChange?: (SuccessOutputGenqlSelection & { __args: {name: Scalars['String'], steam_id: Scalars['bigint']} }) + /** Reset a terminal-state clip_render_jobs row back to queued and re-enqueue the batch worker (admin only). */ + requeueClipRender?: (SuccessOutputGenqlSelection & { __args: {job_id: Scalars['uuid']} }) + /** respondDraftInvite */ + respondDraftInvite?: (SuccessOutputGenqlSelection & { __args: {accept: Scalars['Boolean'], draftGameId: Scalars['uuid']} }) + /** respondToScrimRequest */ + respondToScrimRequest?: (SuccessOutputGenqlSelection & { __args: {accept: Scalars['Boolean'], request_id: Scalars['uuid']} }) + restartService?: (SuccessOutputGenqlSelection & { __args: {service: Scalars['String']} }) + /** execute VOLATILE function "restart_league_season" which returns "league_seasons" */ + restart_league_season?: (league_seasonsGenqlSelection & { __args: { + /** input parameters for function "restart_league_season" */ + args: restart_league_season_args, + /** distinct select on columns */ + distinct_on?: (league_seasons_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_seasons_order_by[] | null), + /** filter the rows returned */ + where?: (league_seasons_bool_exp | null)} }) + /** Clear paused flag and re-enqueue remaining queued clip_render_jobs. */ + resumeClipRenderBatch?: (SuccessOutputGenqlSelection & { __args: {match_map_id: Scalars['uuid']} }) + /** Delete terminal clip_render_jobs rows for a match_map (all or only failed/cancelled) and re-create them from their saved specs. */ + retryClipRenderBatch?: (SuccessOutputGenqlSelection & { __args: {match_map_id: Scalars['uuid'], only_failed?: (Scalars['Boolean'] | null)} }) + retryPendingMatchImport?: (PendingMatchImportActionOutputGenqlSelection & { __args: {valve_match_id: Scalars['String']} }) + /** Revoke a hand-granted award */ + revokeAward?: (SuccessOutputGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** Organizer kills a tournament invite link without losing who already used it */ + revokeTournamentInviteCode?: (SuccessOutputGenqlSelection & { __args: {invite_code_id: Scalars['uuid']} }) + sanctionServerPlayer?: (SanctionResultGenqlSelection & { __args: {duration?: (Scalars['Float'] | null), reason?: (Scalars['String'] | null), serverId?: (Scalars['String'] | null), steam_id: Scalars['String'], type: Scalars['String']} }) + /** Create or update a catalog award */ + saveAward?: (AwardGenqlSelection & { __args: {allow_multiple?: (Scalars['Boolean'] | null), description?: (Scalars['String'] | null), event_id?: (Scalars['uuid'] | null), id?: (Scalars['uuid'] | null), league_season_id?: (Scalars['uuid'] | null), name: Scalars['String'], season_id?: (Scalars['uuid'] | null), silhouette?: (Scalars['Int'] | null), tier: Scalars['String'], tournament_id?: (Scalars['uuid'] | null)} }) + /** Create or update a first-party news post. Caller role is verified against public.post_news_role. */ + saveNewsPost?: (NewsPostGenqlSelection & { __args: {content_markdown: Scalars['String'], cover_image_url?: (Scalars['String'] | null), id?: (Scalars['uuid'] | null), teaser?: (Scalars['String'] | null), title: Scalars['String']} }) + /** Mine a lineup out of a parsed demo */ + saveUtilityLineupFromDemo?: (UtilityLineupOutputGenqlSelection & { __args: {collection_id?: (Scalars['uuid'] | null), description?: (Scalars['String'] | null), grenade_id: Scalars['Int'], match_id: Scalars['uuid'], match_map_id: Scalars['uuid'], name: Scalars['String'], tags?: (Scalars['String'][] | null), team_id?: (Scalars['uuid'] | null), visibility?: (Scalars['String'] | null)} }) + /** Save a lineup recorded in a practice session */ + saveUtilityLineupFromPractice?: (UtilityLineupOutputGenqlSelection & { __args: {collection_id?: (Scalars['uuid'] | null), description?: (Scalars['String'] | null), name: Scalars['String'], session_id: Scalars['uuid'], tags?: (Scalars['String'][] | null), team_id?: (Scalars['uuid'] | null), utility_lineup_id: Scalars['uuid'], visibility?: (Scalars['String'] | null)} }) + /** Create or update a utility playbook and its steps */ + saveUtilityPlaybook?: (UtilityPlaybookOutputGenqlSelection & { __args: {description?: (Scalars['String'] | null), map_name: Scalars['String'], name: Scalars['String'], playbook_id?: (Scalars['uuid'] | null), side: Scalars['String'], steps?: (UtilityPlaybookStepInput[] | null), team_id?: (Scalars['uuid'] | null), visibility?: (Scalars['String'] | null)} }) + /** Scan S3 for objects not referenced in the database (admin only). Runs in the background; results land in the logs and orphanedDemosScanResult. */ + scanOrphanedDemos?: ScanStartedOutputGenqlSelection + /** Scan all players who have been on a lineup for Steam VAC/game bans */ + scanSteamBans?: SuccessOutputGenqlSelection + /** scheduleMatch */ + scheduleMatch?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid'], time?: (Scalars['timestamptz'] | null)} }) + /** sendScrimRequest */ + sendScrimRequest?: (SuccessOutputGenqlSelection & { __args: {best_of?: (Scalars['Int'] | null), from_team_id: Scalars['uuid'], proposed_scheduled_at: Scalars['timestamptz'], region?: (Scalars['String'] | null), to_team_id: Scalars['uuid']} }) + sendUtilityDrillToServer?: (UtilityDrillLoadOutputGenqlSelection & { __args: {lineup_ids: Scalars['String'][]} }) + sendUtilityLineupToServer?: (UtilityLoadOutputGenqlSelection & { __args: {lineup_id: Scalars['uuid']} }) + sendUtilityScratchToServer?: (UtilityLoadOutputGenqlSelection & { __args: {lineup: UtilityScratchLineupInput} }) + setGameNodeSchedulingState?: (SuccessOutputGenqlSelection & { __args: {enabled: Scalars['Boolean'], game_server_node_id: Scalars['String']} }) + /** Track new releases of a game plugin, or pin it where it is */ + setGamePluginAutoUpdate?: (SuccessOutputGenqlSelection & { __args: {enabled: Scalars['Boolean'], slug: Scalars['String']} }) + setHudMode?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid'], mode: Scalars['String']} }) + /** setMapWinner */ + setMapWinner?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid'], match_map_id: Scalars['uuid'], winning_lineup_id: Scalars['uuid']} }) + /** setMatchWinner */ + setMatchWinner?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid'], winning_lineup_id: Scalars['uuid']} }) + /** Publish or unpublish a news post. Caller role is verified against public.post_news_role. */ + setNewsPostStatus?: (NewsPostGenqlSelection & { __args: {id: Scalars['uuid'], status: Scalars['String']} }) + /** Map a tournament placement to an award */ + setTournamentAward?: (TournamentAwardGenqlSelection & { __args: {award_id?: (Scalars['uuid'] | null), custom_name?: (Scalars['String'] | null), placement: Scalars['Int'], silhouette?: (Scalars['Int'] | null), tournament_id: Scalars['uuid']} }) + setUtilityPracticeAccess?: (SuccessOutputGenqlSelection & { __args: {access: Scalars['String'], session_id: Scalars['uuid']} }) + setupGameServer?: SetupGameServeOutputGenqlSelection + skipShaders?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid']} }) + /** Ask a practice server to solve a throw onto a point */ + solveUtilityLineup?: (UtilitySolveOutputGenqlSelection & { __args: {from_x?: (Scalars['Float'] | null), from_y?: (Scalars['Float'] | null), from_z?: (Scalars['Float'] | null), name?: (Scalars['String'] | null), session_id: Scalars['uuid'], target_x: Scalars['Float'], target_y: Scalars['Float'], target_z: Scalars['Float'], tolerance?: (Scalars['Float'] | null), utility_type?: (Scalars['String'] | null)} }) + specAutodirector?: (SuccessOutputGenqlSelection & { __args: {enabled: Scalars['Boolean'], match_id: Scalars['uuid']} }) + specClick?: (SuccessOutputGenqlSelection & { __args: {button: Scalars['String'], match_id: Scalars['uuid']} }) + specHud?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid'], visible: Scalars['Boolean']} }) + specHudSides?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid']} }) + specJump?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid']} }) + specPlayer?: (SuccessOutputGenqlSelection & { __args: {accountid: Scalars['Int'], match_id: Scalars['uuid']} }) + specScoreboard?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid'], show: Scalars['Boolean']} }) + specSlot?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid'], slot: Scalars['Int']} }) + specXray?: (SuccessOutputGenqlSelection & { __args: {enabled: Scalars['Boolean'], match_id: Scalars['uuid']} }) + startLive?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid'], mode: Scalars['String']} }) + /** startMatch */ + startMatch?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid'], server_id?: (Scalars['uuid'] | null)} }) + /** Re-fly a map's lineups against two collision meshes */ + startUtilityDriftScan?: (UtilityDriftScanOutputGenqlSelection & { __args: {from_revision?: (Scalars['String'] | null), map_name: Scalars['String'], to_revision?: (Scalars['String'] | null)} }) + /** Start a utility practice session */ + startUtilityPractice?: (UtilityPracticeSessionOutputGenqlSelection & { __args: {access?: (Scalars['String'] | null), collection_id?: (Scalars['uuid'] | null), is_open?: (Scalars['Boolean'] | null), map_name: Scalars['String'], region?: (Scalars['String'] | null), server_id?: (Scalars['uuid'] | null), team_id?: (Scalars['uuid'] | null)} }) + stopGpuSession?: (SuccessOutputGenqlSelection & { __args: {game_server_node_id: Scalars['uuid']} }) + stopLive?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid']} }) + /** Stop a utility practice session */ + stopUtilityPractice?: (SuccessOutputGenqlSelection & { __args: {session_id: Scalars['uuid']} }) + stopWatchDemo?: (SuccessOutputGenqlSelection & { __args: {match_map_id: Scalars['uuid']} }) + /** Submit a Steam Guard code for a presence bot account */ + submitSteamPresenceSteamGuard?: (SuccessOutputGenqlSelection & { __args: {account_id: Scalars['String'], code: Scalars['String']} }) + 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 published map callouts for every enabled map */ + syncMapCallouts?: MapCalloutSyncOutputGenqlSelection + /** 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']} }) + /** Owner-only patch for clip title / visibility / target_steam_id. */ + updateClip?: (SuccessOutputGenqlSelection & { __args: {clip_id: Scalars['uuid'], target_steam_id?: (Scalars['String'] | null), title?: (Scalars['String'] | null), visibility?: (Scalars['String'] | null)} }) + updateCs?: (SuccessOutputGenqlSelection & { __args?: {game?: (Scalars['String'] | null), game_server_node_id?: (Scalars['uuid'] | null)} }) + /** updateDraftGame */ + updateDraftGame?: (SuccessOutputGenqlSelection & { __args: {draftGameId: Scalars['uuid'], settings: Scalars['jsonb']} }) + updateServices?: SuccessOutputGenqlSelection + /** update data of the table: "_map_pool" */ + update__map_pool?: (_map_pool_mutation_responseGenqlSelection & { __args: { + /** 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} }) + /** update single row of the table: "_map_pool" */ + update__map_pool_by_pk?: (_map_poolGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (_map_pool_set_input | null), pk_columns: _map_pool_pk_columns_input} }) + /** update multiples rows of table: "_map_pool" */ + update__map_pool_many?: (_map_pool_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: _map_pool_updates[]} }) + /** update data of the table: "abandoned_matches" */ + update_abandoned_matches?: (abandoned_matches_mutation_responseGenqlSelection & { __args: { + /** 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} }) + /** update single row of the table: "abandoned_matches" */ + update_abandoned_matches_by_pk?: (abandoned_matchesGenqlSelection & { __args: { + /** 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), pk_columns: abandoned_matches_pk_columns_input} }) + /** update multiples rows of table: "abandoned_matches" */ + update_abandoned_matches_many?: (abandoned_matches_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: abandoned_matches_updates[]} }) + /** update data of the table: "api_keys" */ + update_api_keys?: (api_keys_mutation_responseGenqlSelection & { __args: { + /** 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} }) + /** update single row of the table: "api_keys" */ + update_api_keys_by_pk?: (api_keysGenqlSelection & { __args: { + /** 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), pk_columns: api_keys_pk_columns_input} }) + /** update multiples rows of table: "api_keys" */ + update_api_keys_many?: (api_keys_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: api_keys_updates[]} }) + /** update data of the table: "award_recipients" */ + update_award_recipients?: (award_recipients_mutation_responseGenqlSelection & { __args: { + /** 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} }) + /** update single row of the table: "award_recipients" */ + update_award_recipients_by_pk?: (award_recipientsGenqlSelection & { __args: { + /** 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), pk_columns: award_recipients_pk_columns_input} }) + /** update multiples rows of table: "award_recipients" */ + update_award_recipients_many?: (award_recipients_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: award_recipients_updates[]} }) + /** update data of the table: "awards" */ + update_awards?: (awards_mutation_responseGenqlSelection & { __args: { + /** 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} }) + /** update single row of the table: "awards" */ + update_awards_by_pk?: (awardsGenqlSelection & { __args: { + /** 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), pk_columns: awards_pk_columns_input} }) + /** update multiples rows of table: "awards" */ + update_awards_many?: (awards_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: awards_updates[]} }) + /** update data of the table: "chat_read_state" */ + update_chat_read_state?: (chat_read_state_mutation_responseGenqlSelection & { __args: { + /** 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} }) + /** update single row of the table: "chat_read_state" */ + update_chat_read_state_by_pk?: (chat_read_stateGenqlSelection & { __args: { + /** 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), pk_columns: chat_read_state_pk_columns_input} }) + /** update multiples rows of table: "chat_read_state" */ + update_chat_read_state_many?: (chat_read_state_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: chat_read_state_updates[]} }) + /** update data of the table: "clip_render_jobs" */ + update_clip_render_jobs?: (clip_render_jobs_mutation_responseGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (clip_render_jobs_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (clip_render_jobs_delete_at_path_input | null), + /** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */ + _delete_elem?: (clip_render_jobs_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (clip_render_jobs_delete_key_input | null), + /** increments the numeric columns with given value of the filtered values */ + _inc?: (clip_render_jobs_inc_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (clip_render_jobs_prepend_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (clip_render_jobs_set_input | null), + /** filter the rows which have to be updated */ + where: clip_render_jobs_bool_exp} }) + /** update single row of the table: "clip_render_jobs" */ + update_clip_render_jobs_by_pk?: (clip_render_jobsGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (clip_render_jobs_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (clip_render_jobs_delete_at_path_input | null), + /** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */ + _delete_elem?: (clip_render_jobs_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (clip_render_jobs_delete_key_input | null), + /** increments the numeric columns with given value of the filtered values */ + _inc?: (clip_render_jobs_inc_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (clip_render_jobs_prepend_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (clip_render_jobs_set_input | null), pk_columns: clip_render_jobs_pk_columns_input} }) + /** update multiples rows of table: "clip_render_jobs" */ + update_clip_render_jobs_many?: (clip_render_jobs_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: clip_render_jobs_updates[]} }) + /** update data of the table: "custom_pages" */ + update_custom_pages?: (custom_pages_mutation_responseGenqlSelection & { __args: { + /** 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?: (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?: (custom_pages_set_input | null), + /** filter the rows which have to be updated */ + where: custom_pages_bool_exp} }) + /** update single row of the table: "custom_pages" */ + update_custom_pages_by_pk?: (custom_pagesGenqlSelection & { __args: { + /** 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?: (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?: (custom_pages_set_input | null), pk_columns: custom_pages_pk_columns_input} }) + /** update multiples rows of table: "custom_pages" */ + update_custom_pages_many?: (custom_pages_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: custom_pages_updates[]} }) + /** update data of the table: "db_backups" */ + update_db_backups?: (db_backups_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _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} }) + /** update single row of the table: "db_backups" */ + update_db_backups_by_pk?: (db_backupsGenqlSelection & { __args: { + /** 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), pk_columns: db_backups_pk_columns_input} }) + /** update multiples rows of table: "db_backups" */ + update_db_backups_many?: (db_backups_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: db_backups_updates[]} }) + /** update data of the table: "direct_conversations" */ + update_direct_conversations?: (direct_conversations_mutation_responseGenqlSelection & { __args: { + /** 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} }) + /** update single row of the table: "direct_conversations" */ + update_direct_conversations_by_pk?: (direct_conversationsGenqlSelection & { __args: { + /** 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), pk_columns: direct_conversations_pk_columns_input} }) + /** update multiples rows of table: "direct_conversations" */ + update_direct_conversations_many?: (direct_conversations_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: direct_conversations_updates[]} }) + /** update data of the table: "direct_messages" */ + update_direct_messages?: (direct_messages_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (direct_messages_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (direct_messages_set_input | null), + /** filter the rows which have to be updated */ + where: direct_messages_bool_exp} }) + /** update single row of the table: "direct_messages" */ + update_direct_messages_by_pk?: (direct_messagesGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (direct_messages_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (direct_messages_set_input | null), pk_columns: direct_messages_pk_columns_input} }) + /** update multiples rows of table: "direct_messages" */ + update_direct_messages_many?: (direct_messages_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: direct_messages_updates[]} }) + /** update data of the table: "draft_game_picks" */ + update_draft_game_picks?: (draft_game_picks_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (draft_game_picks_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (draft_game_picks_set_input | null), + /** filter the rows which have to be updated */ + where: draft_game_picks_bool_exp} }) + /** update single row of the table: "draft_game_picks" */ + update_draft_game_picks_by_pk?: (draft_game_picksGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (draft_game_picks_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (draft_game_picks_set_input | null), pk_columns: draft_game_picks_pk_columns_input} }) + /** update multiples rows of table: "draft_game_picks" */ + update_draft_game_picks_many?: (draft_game_picks_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: draft_game_picks_updates[]} }) + /** update data of the table: "draft_game_players" */ + update_draft_game_players?: (draft_game_players_mutation_responseGenqlSelection & { __args: { + /** 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} }) + /** update single row of the table: "draft_game_players" */ + update_draft_game_players_by_pk?: (draft_game_playersGenqlSelection & { __args: { + /** 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), pk_columns: draft_game_players_pk_columns_input} }) + /** update multiples rows of table: "draft_game_players" */ + update_draft_game_players_many?: (draft_game_players_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: draft_game_players_updates[]} }) + /** update data of the table: "draft_games" */ + update_draft_games?: (draft_games_mutation_responseGenqlSelection & { __args: { + /** 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} }) + /** update single row of the table: "draft_games" */ + update_draft_games_by_pk?: (draft_gamesGenqlSelection & { __args: { + /** 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), pk_columns: draft_games_pk_columns_input} }) + /** update multiples rows of table: "draft_games" */ + update_draft_games_many?: (draft_games_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: draft_games_updates[]} }) + /** update data of the table: "e_award_sources" */ + update_e_award_sources?: (e_award_sources_mutation_responseGenqlSelection & { __args: { + /** 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} }) + /** update single row of the table: "e_award_sources" */ + update_e_award_sources_by_pk?: (e_award_sourcesGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_award_sources_set_input | null), pk_columns: e_award_sources_pk_columns_input} }) + /** update multiples rows of table: "e_award_sources" */ + update_e_award_sources_many?: (e_award_sources_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_award_sources_updates[]} }) + /** update data of the table: "e_award_tiers" */ + update_e_award_tiers?: (e_award_tiers_mutation_responseGenqlSelection & { __args: { + /** 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} }) + /** update single row of the table: "e_award_tiers" */ + update_e_award_tiers_by_pk?: (e_award_tiersGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_award_tiers_set_input | null), pk_columns: e_award_tiers_pk_columns_input} }) + /** update multiples rows of table: "e_award_tiers" */ + update_e_award_tiers_many?: (e_award_tiers_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_award_tiers_updates[]} }) + /** update data of the table: "e_check_in_settings" */ + update_e_check_in_settings?: (e_check_in_settings_mutation_responseGenqlSelection & { __args: { + /** 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} }) + /** update single row of the table: "e_check_in_settings" */ + update_e_check_in_settings_by_pk?: (e_check_in_settingsGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_check_in_settings_set_input | null), pk_columns: e_check_in_settings_pk_columns_input} }) + /** update multiples rows of table: "e_check_in_settings" */ + update_e_check_in_settings_many?: (e_check_in_settings_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_check_in_settings_updates[]} }) + /** update data of the table: "e_draft_game_captain_selection" */ + update_e_draft_game_captain_selection?: (e_draft_game_captain_selection_mutation_responseGenqlSelection & { __args: { + /** 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} }) + /** update single row of the table: "e_draft_game_captain_selection" */ + update_e_draft_game_captain_selection_by_pk?: (e_draft_game_captain_selectionGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_draft_game_captain_selection_set_input | null), pk_columns: e_draft_game_captain_selection_pk_columns_input} }) + /** update multiples rows of table: "e_draft_game_captain_selection" */ + update_e_draft_game_captain_selection_many?: (e_draft_game_captain_selection_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_draft_game_captain_selection_updates[]} }) + /** update data of the table: "e_draft_game_draft_order" */ + update_e_draft_game_draft_order?: (e_draft_game_draft_order_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_draft_game_draft_order_set_input | null), + /** filter the rows which have to be updated */ + where: e_draft_game_draft_order_bool_exp} }) + /** update single row of the table: "e_draft_game_draft_order" */ + update_e_draft_game_draft_order_by_pk?: (e_draft_game_draft_orderGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_draft_game_draft_order_set_input | null), pk_columns: e_draft_game_draft_order_pk_columns_input} }) + /** update multiples rows of table: "e_draft_game_draft_order" */ + update_e_draft_game_draft_order_many?: (e_draft_game_draft_order_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_draft_game_draft_order_updates[]} }) + /** update data of the table: "e_draft_game_mode" */ + update_e_draft_game_mode?: (e_draft_game_mode_mutation_responseGenqlSelection & { __args: { + /** 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} }) + /** update single row of the table: "e_draft_game_mode" */ + update_e_draft_game_mode_by_pk?: (e_draft_game_modeGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_draft_game_mode_set_input | null), pk_columns: e_draft_game_mode_pk_columns_input} }) + /** update multiples rows of table: "e_draft_game_mode" */ + update_e_draft_game_mode_many?: (e_draft_game_mode_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_draft_game_mode_updates[]} }) + /** update data of the table: "e_draft_game_player_status" */ + update_e_draft_game_player_status?: (e_draft_game_player_status_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_draft_game_player_status_set_input | null), + /** filter the rows which have to be updated */ + where: e_draft_game_player_status_bool_exp} }) + /** update single row of the table: "e_draft_game_player_status" */ + update_e_draft_game_player_status_by_pk?: (e_draft_game_player_statusGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_draft_game_player_status_set_input | null), pk_columns: e_draft_game_player_status_pk_columns_input} }) + /** update multiples rows of table: "e_draft_game_player_status" */ + update_e_draft_game_player_status_many?: (e_draft_game_player_status_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_draft_game_player_status_updates[]} }) + /** update data of the table: "e_draft_game_status" */ + update_e_draft_game_status?: (e_draft_game_status_mutation_responseGenqlSelection & { __args: { + /** 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} }) + /** update single row of the table: "e_draft_game_status" */ + update_e_draft_game_status_by_pk?: (e_draft_game_statusGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_draft_game_status_set_input | null), pk_columns: e_draft_game_status_pk_columns_input} }) + /** update multiples rows of table: "e_draft_game_status" */ + update_e_draft_game_status_many?: (e_draft_game_status_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_draft_game_status_updates[]} }) + /** update data of the table: "e_event_media_access" */ + update_e_event_media_access?: (e_event_media_access_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_event_media_access_set_input | null), + /** filter the rows which have to be updated */ + where: e_event_media_access_bool_exp} }) + /** update single row of the table: "e_event_media_access" */ + update_e_event_media_access_by_pk?: (e_event_media_accessGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_event_media_access_set_input | null), pk_columns: e_event_media_access_pk_columns_input} }) + /** update multiples rows of table: "e_event_media_access" */ + update_e_event_media_access_many?: (e_event_media_access_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_event_media_access_updates[]} }) + /** update data of the table: "e_event_visibility" */ + update_e_event_visibility?: (e_event_visibility_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_event_visibility_set_input | null), + /** filter the rows which have to be updated */ + where: e_event_visibility_bool_exp} }) + /** update single row of the table: "e_event_visibility" */ + update_e_event_visibility_by_pk?: (e_event_visibilityGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_event_visibility_set_input | null), pk_columns: e_event_visibility_pk_columns_input} }) + /** update multiples rows of table: "e_event_visibility" */ + update_e_event_visibility_many?: (e_event_visibility_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_event_visibility_updates[]} }) + /** update data of the table: "e_friend_status" */ + update_e_friend_status?: (e_friend_status_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_friend_status_set_input | null), + /** filter the rows which have to be updated */ + where: e_friend_status_bool_exp} }) + /** update single row of the table: "e_friend_status" */ + update_e_friend_status_by_pk?: (e_friend_statusGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_friend_status_set_input | null), pk_columns: e_friend_status_pk_columns_input} }) + /** update multiples rows of table: "e_friend_status" */ + update_e_friend_status_many?: (e_friend_status_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_friend_status_updates[]} }) + /** update data of the table: "e_game_cfg_types" */ + update_e_game_cfg_types?: (e_game_cfg_types_mutation_responseGenqlSelection & { __args: { + /** 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} }) + /** update single row of the table: "e_game_cfg_types" */ + update_e_game_cfg_types_by_pk?: (e_game_cfg_typesGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_game_cfg_types_set_input | null), pk_columns: e_game_cfg_types_pk_columns_input} }) + /** update multiples rows of table: "e_game_cfg_types" */ + 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 */ + _set?: (e_game_server_node_statuses_set_input | null), + /** filter the rows which have to be updated */ + where: e_game_server_node_statuses_bool_exp} }) + /** update single row of the table: "e_game_server_node_statuses" */ + update_e_game_server_node_statuses_by_pk?: (e_game_server_node_statusesGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_game_server_node_statuses_set_input | null), pk_columns: e_game_server_node_statuses_pk_columns_input} }) + /** update multiples rows of table: "e_game_server_node_statuses" */ + update_e_game_server_node_statuses_many?: (e_game_server_node_statuses_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_game_server_node_statuses_updates[]} }) + /** update data of the table: "e_league_movement_types" */ + update_e_league_movement_types?: (e_league_movement_types_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_league_movement_types_set_input | null), + /** filter the rows which have to be updated */ + where: e_league_movement_types_bool_exp} }) + /** update single row of the table: "e_league_movement_types" */ + update_e_league_movement_types_by_pk?: (e_league_movement_typesGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_league_movement_types_set_input | null), pk_columns: e_league_movement_types_pk_columns_input} }) + /** update multiples rows of table: "e_league_movement_types" */ + update_e_league_movement_types_many?: (e_league_movement_types_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_league_movement_types_updates[]} }) + /** update data of the table: "e_league_proposal_statuses" */ + update_e_league_proposal_statuses?: (e_league_proposal_statuses_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_league_proposal_statuses_set_input | null), + /** filter the rows which have to be updated */ + where: e_league_proposal_statuses_bool_exp} }) + /** update single row of the table: "e_league_proposal_statuses" */ + update_e_league_proposal_statuses_by_pk?: (e_league_proposal_statusesGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_league_proposal_statuses_set_input | null), pk_columns: e_league_proposal_statuses_pk_columns_input} }) + /** update multiples rows of table: "e_league_proposal_statuses" */ + update_e_league_proposal_statuses_many?: (e_league_proposal_statuses_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_league_proposal_statuses_updates[]} }) + /** update data of the table: "e_league_registration_statuses" */ + update_e_league_registration_statuses?: (e_league_registration_statuses_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_league_registration_statuses_set_input | null), + /** filter the rows which have to be updated */ + where: e_league_registration_statuses_bool_exp} }) + /** update single row of the table: "e_league_registration_statuses" */ + update_e_league_registration_statuses_by_pk?: (e_league_registration_statusesGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_league_registration_statuses_set_input | null), pk_columns: e_league_registration_statuses_pk_columns_input} }) + /** update multiples rows of table: "e_league_registration_statuses" */ + update_e_league_registration_statuses_many?: (e_league_registration_statuses_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_league_registration_statuses_updates[]} }) + /** update data of the table: "e_league_season_statuses" */ + update_e_league_season_statuses?: (e_league_season_statuses_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_league_season_statuses_set_input | null), + /** filter the rows which have to be updated */ + where: e_league_season_statuses_bool_exp} }) + /** update single row of the table: "e_league_season_statuses" */ + update_e_league_season_statuses_by_pk?: (e_league_season_statusesGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_league_season_statuses_set_input | null), pk_columns: e_league_season_statuses_pk_columns_input} }) + /** update multiples rows of table: "e_league_season_statuses" */ + update_e_league_season_statuses_many?: (e_league_season_statuses_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_league_season_statuses_updates[]} }) + /** update data of the table: "e_lobby_access" */ + update_e_lobby_access?: (e_lobby_access_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_lobby_access_set_input | null), + /** filter the rows which have to be updated */ + where: e_lobby_access_bool_exp} }) + /** update single row of the table: "e_lobby_access" */ + update_e_lobby_access_by_pk?: (e_lobby_accessGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_lobby_access_set_input | null), pk_columns: e_lobby_access_pk_columns_input} }) + /** update multiples rows of table: "e_lobby_access" */ + update_e_lobby_access_many?: (e_lobby_access_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_lobby_access_updates[]} }) + /** update data of the table: "e_lobby_player_status" */ + update_e_lobby_player_status?: (e_lobby_player_status_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_lobby_player_status_set_input | null), + /** filter the rows which have to be updated */ + where: e_lobby_player_status_bool_exp} }) + /** update single row of the table: "e_lobby_player_status" */ + update_e_lobby_player_status_by_pk?: (e_lobby_player_statusGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_lobby_player_status_set_input | null), pk_columns: e_lobby_player_status_pk_columns_input} }) + /** update multiples rows of table: "e_lobby_player_status" */ + update_e_lobby_player_status_many?: (e_lobby_player_status_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_lobby_player_status_updates[]} }) + /** update data of the table: "e_map_pool_types" */ + update_e_map_pool_types?: (e_map_pool_types_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_map_pool_types_set_input | null), + /** filter the rows which have to be updated */ + where: e_map_pool_types_bool_exp} }) + /** update single row of the table: "e_map_pool_types" */ + update_e_map_pool_types_by_pk?: (e_map_pool_typesGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_map_pool_types_set_input | null), pk_columns: e_map_pool_types_pk_columns_input} }) + /** update multiples rows of table: "e_map_pool_types" */ + update_e_map_pool_types_many?: (e_map_pool_types_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_map_pool_types_updates[]} }) + /** update data of the table: "e_match_clip_visibility" */ + update_e_match_clip_visibility?: (e_match_clip_visibility_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_match_clip_visibility_set_input | null), + /** filter the rows which have to be updated */ + where: e_match_clip_visibility_bool_exp} }) + /** update single row of the table: "e_match_clip_visibility" */ + update_e_match_clip_visibility_by_pk?: (e_match_clip_visibilityGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_match_clip_visibility_set_input | null), pk_columns: e_match_clip_visibility_pk_columns_input} }) + /** update multiples rows of table: "e_match_clip_visibility" */ + update_e_match_clip_visibility_many?: (e_match_clip_visibility_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_match_clip_visibility_updates[]} }) + /** update data of the table: "e_match_map_status" */ + update_e_match_map_status?: (e_match_map_status_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_match_map_status_set_input | null), + /** filter the rows which have to be updated */ + where: e_match_map_status_bool_exp} }) + /** update single row of the table: "e_match_map_status" */ + update_e_match_map_status_by_pk?: (e_match_map_statusGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_match_map_status_set_input | null), pk_columns: e_match_map_status_pk_columns_input} }) + /** update multiples rows of table: "e_match_map_status" */ + update_e_match_map_status_many?: (e_match_map_status_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_match_map_status_updates[]} }) + /** update data of the table: "e_match_mode" */ + update_e_match_mode?: (e_match_mode_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_match_mode_set_input | null), + /** filter the rows which have to be updated */ + where: e_match_mode_bool_exp} }) + /** update single row of the table: "e_match_mode" */ + update_e_match_mode_by_pk?: (e_match_modeGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_match_mode_set_input | null), pk_columns: e_match_mode_pk_columns_input} }) + /** update multiples rows of table: "e_match_mode" */ + update_e_match_mode_many?: (e_match_mode_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_match_mode_updates[]} }) + /** update data of the table: "e_match_party_sources" */ + update_e_match_party_sources?: (e_match_party_sources_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_match_party_sources_set_input | null), + /** filter the rows which have to be updated */ + where: e_match_party_sources_bool_exp} }) + /** update single row of the table: "e_match_party_sources" */ + update_e_match_party_sources_by_pk?: (e_match_party_sourcesGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_match_party_sources_set_input | null), pk_columns: e_match_party_sources_pk_columns_input} }) + /** update multiples rows of table: "e_match_party_sources" */ + update_e_match_party_sources_many?: (e_match_party_sources_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_match_party_sources_updates[]} }) + /** update data of the table: "e_match_status" */ + update_e_match_status?: (e_match_status_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_match_status_set_input | null), + /** filter the rows which have to be updated */ + where: e_match_status_bool_exp} }) + /** update single row of the table: "e_match_status" */ + update_e_match_status_by_pk?: (e_match_statusGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_match_status_set_input | null), pk_columns: e_match_status_pk_columns_input} }) + /** update multiples rows of table: "e_match_status" */ + update_e_match_status_many?: (e_match_status_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_match_status_updates[]} }) + /** update data of the table: "e_match_types" */ + update_e_match_types?: (e_match_types_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_match_types_set_input | null), + /** filter the rows which have to be updated */ + where: e_match_types_bool_exp} }) + /** update single row of the table: "e_match_types" */ + update_e_match_types_by_pk?: (e_match_typesGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_match_types_set_input | null), pk_columns: e_match_types_pk_columns_input} }) + /** update multiples rows of table: "e_match_types" */ + update_e_match_types_many?: (e_match_types_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_match_types_updates[]} }) + /** update data of the table: "e_notification_types" */ + update_e_notification_types?: (e_notification_types_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_notification_types_set_input | null), + /** filter the rows which have to be updated */ + where: e_notification_types_bool_exp} }) + /** update single row of the table: "e_notification_types" */ + update_e_notification_types_by_pk?: (e_notification_typesGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_notification_types_set_input | null), pk_columns: e_notification_types_pk_columns_input} }) + /** update multiples rows of table: "e_notification_types" */ + update_e_notification_types_many?: (e_notification_types_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_notification_types_updates[]} }) + /** update data of the table: "e_objective_types" */ + update_e_objective_types?: (e_objective_types_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_objective_types_set_input | null), + /** filter the rows which have to be updated */ + where: e_objective_types_bool_exp} }) + /** update single row of the table: "e_objective_types" */ + update_e_objective_types_by_pk?: (e_objective_typesGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_objective_types_set_input | null), pk_columns: e_objective_types_pk_columns_input} }) + /** update multiples rows of table: "e_objective_types" */ + update_e_objective_types_many?: (e_objective_types_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_objective_types_updates[]} }) + /** update data of the table: "e_player_roles" */ + update_e_player_roles?: (e_player_roles_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_player_roles_set_input | null), + /** filter the rows which have to be updated */ + where: e_player_roles_bool_exp} }) + /** update single row of the table: "e_player_roles" */ + update_e_player_roles_by_pk?: (e_player_rolesGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_player_roles_set_input | null), pk_columns: e_player_roles_pk_columns_input} }) + /** update multiples rows of table: "e_player_roles" */ + update_e_player_roles_many?: (e_player_roles_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_player_roles_updates[]} }) + /** update data of the table: "e_plugin_runtimes" */ + update_e_plugin_runtimes?: (e_plugin_runtimes_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_plugin_runtimes_set_input | null), + /** filter the rows which have to be updated */ + where: e_plugin_runtimes_bool_exp} }) + /** update single row of the table: "e_plugin_runtimes" */ + update_e_plugin_runtimes_by_pk?: (e_plugin_runtimesGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_plugin_runtimes_set_input | null), pk_columns: e_plugin_runtimes_pk_columns_input} }) + /** update multiples rows of table: "e_plugin_runtimes" */ + update_e_plugin_runtimes_many?: (e_plugin_runtimes_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_plugin_runtimes_updates[]} }) + /** update data of the table: "e_ready_settings" */ + update_e_ready_settings?: (e_ready_settings_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_ready_settings_set_input | null), + /** filter the rows which have to be updated */ + where: e_ready_settings_bool_exp} }) + /** update single row of the table: "e_ready_settings" */ + update_e_ready_settings_by_pk?: (e_ready_settingsGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_ready_settings_set_input | null), pk_columns: e_ready_settings_pk_columns_input} }) + /** update multiples rows of table: "e_ready_settings" */ + update_e_ready_settings_many?: (e_ready_settings_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_ready_settings_updates[]} }) + /** update data of the table: "e_sanction_scopes" */ + update_e_sanction_scopes?: (e_sanction_scopes_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_sanction_scopes_set_input | null), + /** filter the rows which have to be updated */ + where: e_sanction_scopes_bool_exp} }) + /** update single row of the table: "e_sanction_scopes" */ + update_e_sanction_scopes_by_pk?: (e_sanction_scopesGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_sanction_scopes_set_input | null), pk_columns: e_sanction_scopes_pk_columns_input} }) + /** update multiples rows of table: "e_sanction_scopes" */ + update_e_sanction_scopes_many?: (e_sanction_scopes_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_sanction_scopes_updates[]} }) + /** update data of the table: "e_sanction_sources" */ + update_e_sanction_sources?: (e_sanction_sources_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (e_sanction_sources_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (e_sanction_sources_set_input | null), + /** filter the rows which have to be updated */ + where: e_sanction_sources_bool_exp} }) + /** update single row of the table: "e_sanction_sources" */ + update_e_sanction_sources_by_pk?: (e_sanction_sourcesGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (e_sanction_sources_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (e_sanction_sources_set_input | null), pk_columns: e_sanction_sources_pk_columns_input} }) + /** update multiples rows of table: "e_sanction_sources" */ + update_e_sanction_sources_many?: (e_sanction_sources_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_sanction_sources_updates[]} }) + /** update data of the table: "e_sanction_types" */ + update_e_sanction_types?: (e_sanction_types_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_sanction_types_set_input | null), + /** filter the rows which have to be updated */ + where: e_sanction_types_bool_exp} }) + /** update single row of the table: "e_sanction_types" */ + update_e_sanction_types_by_pk?: (e_sanction_typesGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_sanction_types_set_input | null), pk_columns: e_sanction_types_pk_columns_input} }) + /** update multiples rows of table: "e_sanction_types" */ + update_e_sanction_types_many?: (e_sanction_types_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_sanction_types_updates[]} }) + /** update data of the table: "e_scrim_request_statuses" */ + update_e_scrim_request_statuses?: (e_scrim_request_statuses_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_scrim_request_statuses_set_input | null), + /** filter the rows which have to be updated */ + where: e_scrim_request_statuses_bool_exp} }) + /** update single row of the table: "e_scrim_request_statuses" */ + update_e_scrim_request_statuses_by_pk?: (e_scrim_request_statusesGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_scrim_request_statuses_set_input | null), pk_columns: e_scrim_request_statuses_pk_columns_input} }) + /** update multiples rows of table: "e_scrim_request_statuses" */ + update_e_scrim_request_statuses_many?: (e_scrim_request_statuses_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_scrim_request_statuses_updates[]} }) + /** update data of the table: "e_server_types" */ + update_e_server_types?: (e_server_types_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_server_types_set_input | null), + /** filter the rows which have to be updated */ + where: e_server_types_bool_exp} }) + /** update single row of the table: "e_server_types" */ + update_e_server_types_by_pk?: (e_server_typesGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_server_types_set_input | null), pk_columns: e_server_types_pk_columns_input} }) + /** update multiples rows of table: "e_server_types" */ + update_e_server_types_many?: (e_server_types_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_server_types_updates[]} }) + /** update data of the table: "e_sides" */ + update_e_sides?: (e_sides_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_sides_set_input | null), + /** filter the rows which have to be updated */ + where: e_sides_bool_exp} }) + /** update single row of the table: "e_sides" */ + update_e_sides_by_pk?: (e_sidesGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_sides_set_input | null), pk_columns: e_sides_pk_columns_input} }) + /** update multiples rows of table: "e_sides" */ + update_e_sides_many?: (e_sides_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_sides_updates[]} }) + /** update data of the table: "e_system_alert_types" */ + update_e_system_alert_types?: (e_system_alert_types_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_system_alert_types_set_input | null), + /** filter the rows which have to be updated */ + where: e_system_alert_types_bool_exp} }) + /** update single row of the table: "e_system_alert_types" */ + update_e_system_alert_types_by_pk?: (e_system_alert_typesGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_system_alert_types_set_input | null), pk_columns: e_system_alert_types_pk_columns_input} }) + /** update multiples rows of table: "e_system_alert_types" */ + update_e_system_alert_types_many?: (e_system_alert_types_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_system_alert_types_updates[]} }) + /** update data of the table: "e_team_roles" */ + update_e_team_roles?: (e_team_roles_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_team_roles_set_input | null), + /** filter the rows which have to be updated */ + where: e_team_roles_bool_exp} }) + /** update single row of the table: "e_team_roles" */ + update_e_team_roles_by_pk?: (e_team_rolesGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_team_roles_set_input | null), pk_columns: e_team_roles_pk_columns_input} }) + /** update multiples rows of table: "e_team_roles" */ + update_e_team_roles_many?: (e_team_roles_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_team_roles_updates[]} }) + /** update data of the table: "e_team_roster_statuses" */ + update_e_team_roster_statuses?: (e_team_roster_statuses_mutation_responseGenqlSelection & { __args: { + /** 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} }) + /** update single row of the table: "e_team_roster_statuses" */ + update_e_team_roster_statuses_by_pk?: (e_team_roster_statusesGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_team_roster_statuses_set_input | null), pk_columns: e_team_roster_statuses_pk_columns_input} }) + /** update multiples rows of table: "e_team_roster_statuses" */ + update_e_team_roster_statuses_many?: (e_team_roster_statuses_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_team_roster_statuses_updates[]} }) + /** update data of the table: "e_timeout_settings" */ + update_e_timeout_settings?: (e_timeout_settings_mutation_responseGenqlSelection & { __args: { + /** 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} }) + /** update single row of the table: "e_timeout_settings" */ + update_e_timeout_settings_by_pk?: (e_timeout_settingsGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_timeout_settings_set_input | null), pk_columns: e_timeout_settings_pk_columns_input} }) + /** update multiples rows of table: "e_timeout_settings" */ + update_e_timeout_settings_many?: (e_timeout_settings_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_timeout_settings_updates[]} }) + /** update data of the table: "e_tournament_categories" */ + update_e_tournament_categories?: (e_tournament_categories_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_tournament_categories_set_input | null), + /** filter the rows which have to be updated */ + where: e_tournament_categories_bool_exp} }) + /** update single row of the table: "e_tournament_categories" */ + update_e_tournament_categories_by_pk?: (e_tournament_categoriesGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_tournament_categories_set_input | null), pk_columns: e_tournament_categories_pk_columns_input} }) + /** update multiples rows of table: "e_tournament_categories" */ + update_e_tournament_categories_many?: (e_tournament_categories_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_tournament_categories_updates[]} }) + /** update data of the table: "e_tournament_free_agent_statuses" */ + update_e_tournament_free_agent_statuses?: (e_tournament_free_agent_statuses_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_tournament_free_agent_statuses_set_input | null), + /** filter the rows which have to be updated */ + where: e_tournament_free_agent_statuses_bool_exp} }) + /** update single row of the table: "e_tournament_free_agent_statuses" */ + update_e_tournament_free_agent_statuses_by_pk?: (e_tournament_free_agent_statusesGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_tournament_free_agent_statuses_set_input | null), pk_columns: e_tournament_free_agent_statuses_pk_columns_input} }) + /** update multiples rows of table: "e_tournament_free_agent_statuses" */ + update_e_tournament_free_agent_statuses_many?: (e_tournament_free_agent_statuses_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_tournament_free_agent_statuses_updates[]} }) + /** update data of the table: "e_tournament_registration_types" */ + update_e_tournament_registration_types?: (e_tournament_registration_types_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_tournament_registration_types_set_input | null), + /** filter the rows which have to be updated */ + where: e_tournament_registration_types_bool_exp} }) + /** update single row of the table: "e_tournament_registration_types" */ + update_e_tournament_registration_types_by_pk?: (e_tournament_registration_typesGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_tournament_registration_types_set_input | null), pk_columns: e_tournament_registration_types_pk_columns_input} }) + /** update multiples rows of table: "e_tournament_registration_types" */ + update_e_tournament_registration_types_many?: (e_tournament_registration_types_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_tournament_registration_types_updates[]} }) + /** update data of the table: "e_tournament_stage_types" */ + update_e_tournament_stage_types?: (e_tournament_stage_types_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_tournament_stage_types_set_input | null), + /** filter the rows which have to be updated */ + where: e_tournament_stage_types_bool_exp} }) + /** update single row of the table: "e_tournament_stage_types" */ + update_e_tournament_stage_types_by_pk?: (e_tournament_stage_typesGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_tournament_stage_types_set_input | null), pk_columns: e_tournament_stage_types_pk_columns_input} }) + /** update multiples rows of table: "e_tournament_stage_types" */ + update_e_tournament_stage_types_many?: (e_tournament_stage_types_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_tournament_stage_types_updates[]} }) + /** update data of the table: "e_tournament_status" */ + update_e_tournament_status?: (e_tournament_status_mutation_responseGenqlSelection & { __args: { + /** 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} }) + /** update single row of the table: "e_tournament_status" */ + update_e_tournament_status_by_pk?: (e_tournament_statusGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_tournament_status_set_input | null), pk_columns: e_tournament_status_pk_columns_input} }) + /** update multiples rows of table: "e_tournament_status" */ + update_e_tournament_status_many?: (e_tournament_status_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_tournament_status_updates[]} }) + /** update data of the table: "e_utility_practice_access" */ + update_e_utility_practice_access?: (e_utility_practice_access_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_utility_practice_access_set_input | null), + /** filter the rows which have to be updated */ + where: e_utility_practice_access_bool_exp} }) + /** update single row of the table: "e_utility_practice_access" */ + update_e_utility_practice_access_by_pk?: (e_utility_practice_accessGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_utility_practice_access_set_input | null), pk_columns: e_utility_practice_access_pk_columns_input} }) + /** update multiples rows of table: "e_utility_practice_access" */ + update_e_utility_practice_access_many?: (e_utility_practice_access_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_utility_practice_access_updates[]} }) + /** update data of the table: "e_utility_practice_statuses" */ + update_e_utility_practice_statuses?: (e_utility_practice_statuses_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_utility_practice_statuses_set_input | null), + /** filter the rows which have to be updated */ + where: e_utility_practice_statuses_bool_exp} }) + /** update single row of the table: "e_utility_practice_statuses" */ + update_e_utility_practice_statuses_by_pk?: (e_utility_practice_statusesGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_utility_practice_statuses_set_input | null), pk_columns: e_utility_practice_statuses_pk_columns_input} }) + /** update multiples rows of table: "e_utility_practice_statuses" */ + update_e_utility_practice_statuses_many?: (e_utility_practice_statuses_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_utility_practice_statuses_updates[]} }) + /** update data of the table: "e_utility_sources" */ + update_e_utility_sources?: (e_utility_sources_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_utility_sources_set_input | null), + /** filter the rows which have to be updated */ + where: e_utility_sources_bool_exp} }) + /** update single row of the table: "e_utility_sources" */ + update_e_utility_sources_by_pk?: (e_utility_sourcesGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_utility_sources_set_input | null), pk_columns: e_utility_sources_pk_columns_input} }) + /** update multiples rows of table: "e_utility_sources" */ + update_e_utility_sources_many?: (e_utility_sources_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_utility_sources_updates[]} }) + /** update data of the table: "e_utility_techniques" */ + update_e_utility_techniques?: (e_utility_techniques_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_utility_techniques_set_input | null), + /** filter the rows which have to be updated */ + where: e_utility_techniques_bool_exp} }) + /** update single row of the table: "e_utility_techniques" */ + update_e_utility_techniques_by_pk?: (e_utility_techniquesGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_utility_techniques_set_input | null), pk_columns: e_utility_techniques_pk_columns_input} }) + /** update multiples rows of table: "e_utility_techniques" */ + update_e_utility_techniques_many?: (e_utility_techniques_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_utility_techniques_updates[]} }) + /** update data of the table: "e_utility_throw_strengths" */ + update_e_utility_throw_strengths?: (e_utility_throw_strengths_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_utility_throw_strengths_set_input | null), + /** filter the rows which have to be updated */ + where: e_utility_throw_strengths_bool_exp} }) + /** update single row of the table: "e_utility_throw_strengths" */ + update_e_utility_throw_strengths_by_pk?: (e_utility_throw_strengthsGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_utility_throw_strengths_set_input | null), pk_columns: e_utility_throw_strengths_pk_columns_input} }) + /** update multiples rows of table: "e_utility_throw_strengths" */ + update_e_utility_throw_strengths_many?: (e_utility_throw_strengths_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_utility_throw_strengths_updates[]} }) + /** update data of the table: "e_utility_types" */ + update_e_utility_types?: (e_utility_types_mutation_responseGenqlSelection & { __args: { + /** 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} }) + /** update single row of the table: "e_utility_types" */ + update_e_utility_types_by_pk?: (e_utility_typesGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_utility_types_set_input | null), pk_columns: e_utility_types_pk_columns_input} }) + /** update multiples rows of table: "e_utility_types" */ + update_e_utility_types_many?: (e_utility_types_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_utility_types_updates[]} }) + /** update data of the table: "e_utility_visibility" */ + update_e_utility_visibility?: (e_utility_visibility_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_utility_visibility_set_input | null), + /** filter the rows which have to be updated */ + where: e_utility_visibility_bool_exp} }) + /** update single row of the table: "e_utility_visibility" */ + update_e_utility_visibility_by_pk?: (e_utility_visibilityGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_utility_visibility_set_input | null), pk_columns: e_utility_visibility_pk_columns_input} }) + /** update multiples rows of table: "e_utility_visibility" */ + update_e_utility_visibility_many?: (e_utility_visibility_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_utility_visibility_updates[]} }) + /** update data of the table: "e_veto_pick_types" */ + update_e_veto_pick_types?: (e_veto_pick_types_mutation_responseGenqlSelection & { __args: { + /** 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} }) + /** update single row of the table: "e_veto_pick_types" */ + update_e_veto_pick_types_by_pk?: (e_veto_pick_typesGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_veto_pick_types_set_input | null), pk_columns: e_veto_pick_types_pk_columns_input} }) + /** update multiples rows of table: "e_veto_pick_types" */ + update_e_veto_pick_types_many?: (e_veto_pick_types_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_veto_pick_types_updates[]} }) + /** update data of the table: "e_winning_reasons" */ + update_e_winning_reasons?: (e_winning_reasons_mutation_responseGenqlSelection & { __args: { + /** 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} }) + /** update single row of the table: "e_winning_reasons" */ + update_e_winning_reasons_by_pk?: (e_winning_reasonsGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_winning_reasons_set_input | null), pk_columns: e_winning_reasons_pk_columns_input} }) + /** update multiples rows of table: "e_winning_reasons" */ + update_e_winning_reasons_many?: (e_winning_reasons_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_winning_reasons_updates[]} }) + /** update data of the table: "event_match_links" */ + update_event_match_links?: (event_match_links_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (event_match_links_set_input | null), + /** filter the rows which have to be updated */ + where: event_match_links_bool_exp} }) + /** update single row of the table: "event_match_links" */ + update_event_match_links_by_pk?: (event_match_linksGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (event_match_links_set_input | null), pk_columns: event_match_links_pk_columns_input} }) + /** update multiples rows of table: "event_match_links" */ + update_event_match_links_many?: (event_match_links_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: event_match_links_updates[]} }) + /** update data of the table: "event_media" */ + update_event_media?: (event_media_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (event_media_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (event_media_set_input | null), + /** filter the rows which have to be updated */ + where: event_media_bool_exp} }) + /** update single row of the table: "event_media" */ + update_event_media_by_pk?: (event_mediaGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (event_media_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (event_media_set_input | null), pk_columns: event_media_pk_columns_input} }) + /** update multiples rows of table: "event_media" */ + update_event_media_many?: (event_media_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: event_media_updates[]} }) + /** update data of the table: "event_media_players" */ + update_event_media_players?: (event_media_players_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (event_media_players_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (event_media_players_set_input | null), + /** filter the rows which have to be updated */ + where: event_media_players_bool_exp} }) + /** update single row of the table: "event_media_players" */ + update_event_media_players_by_pk?: (event_media_playersGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (event_media_players_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (event_media_players_set_input | null), pk_columns: event_media_players_pk_columns_input} }) + /** update multiples rows of table: "event_media_players" */ + update_event_media_players_many?: (event_media_players_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: event_media_players_updates[]} }) + /** update data of the table: "event_organizers" */ + update_event_organizers?: (event_organizers_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (event_organizers_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (event_organizers_set_input | null), + /** filter the rows which have to be updated */ + where: event_organizers_bool_exp} }) + /** update single row of the table: "event_organizers" */ + update_event_organizers_by_pk?: (event_organizersGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (event_organizers_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (event_organizers_set_input | null), pk_columns: event_organizers_pk_columns_input} }) + /** update multiples rows of table: "event_organizers" */ + update_event_organizers_many?: (event_organizers_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: event_organizers_updates[]} }) + /** update data of the table: "event_players" */ + update_event_players?: (event_players_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (event_players_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (event_players_set_input | null), + /** filter the rows which have to be updated */ + where: event_players_bool_exp} }) + /** update single row of the table: "event_players" */ + update_event_players_by_pk?: (event_playersGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (event_players_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (event_players_set_input | null), pk_columns: event_players_pk_columns_input} }) + /** update multiples rows of table: "event_players" */ + update_event_players_many?: (event_players_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: event_players_updates[]} }) + /** update data of the table: "event_teams" */ + update_event_teams?: (event_teams_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (event_teams_set_input | null), + /** filter the rows which have to be updated */ + where: event_teams_bool_exp} }) + /** update single row of the table: "event_teams" */ + update_event_teams_by_pk?: (event_teamsGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (event_teams_set_input | null), pk_columns: event_teams_pk_columns_input} }) + /** update multiples rows of table: "event_teams" */ + update_event_teams_many?: (event_teams_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: event_teams_updates[]} }) + /** update data of the table: "event_tournaments" */ + update_event_tournaments?: (event_tournaments_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (event_tournaments_set_input | null), + /** filter the rows which have to be updated */ + where: event_tournaments_bool_exp} }) + /** update single row of the table: "event_tournaments" */ + update_event_tournaments_by_pk?: (event_tournamentsGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (event_tournaments_set_input | null), pk_columns: event_tournaments_pk_columns_input} }) + /** update multiples rows of table: "event_tournaments" */ + update_event_tournaments_many?: (event_tournaments_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: event_tournaments_updates[]} }) + /** update data of the table: "events" */ + update_events?: (events_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (events_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (events_set_input | null), + /** filter the rows which have to be updated */ + where: events_bool_exp} }) + /** update single row of the table: "events" */ + update_events_by_pk?: (eventsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (events_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (events_set_input | null), pk_columns: events_pk_columns_input} }) + /** update multiples rows of table: "events" */ + update_events_many?: (events_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: events_updates[]} }) + /** update data of the table: "friends" */ + update_friends?: (friends_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (friends_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (friends_set_input | null), + /** filter the rows which have to be updated */ + where: friends_bool_exp} }) + /** update single row of the table: "friends" */ + update_friends_by_pk?: (friendsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (friends_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (friends_set_input | null), pk_columns: friends_pk_columns_input} }) + /** update multiples rows of table: "friends" */ + update_friends_many?: (friends_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: friends_updates[]} }) + /** update data of the table: "game_mode_plugins" */ + update_game_mode_plugins?: (game_mode_plugins_mutation_responseGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (game_mode_plugins_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (game_mode_plugins_delete_at_path_input | null), + /** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */ + _delete_elem?: (game_mode_plugins_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (game_mode_plugins_delete_key_input | null), + /** increments the numeric columns with given value of the filtered values */ + _inc?: (game_mode_plugins_inc_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (game_mode_plugins_prepend_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (game_mode_plugins_set_input | null), + /** filter the rows which have to be updated */ + where: game_mode_plugins_bool_exp} }) + /** update single row of the table: "game_mode_plugins" */ + update_game_mode_plugins_by_pk?: (game_mode_pluginsGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (game_mode_plugins_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (game_mode_plugins_delete_at_path_input | null), + /** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */ + _delete_elem?: (game_mode_plugins_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (game_mode_plugins_delete_key_input | null), + /** increments the numeric columns with given value of the filtered values */ + _inc?: (game_mode_plugins_inc_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (game_mode_plugins_prepend_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (game_mode_plugins_set_input | null), pk_columns: game_mode_plugins_pk_columns_input} }) + /** update multiples rows of table: "game_mode_plugins" */ + update_game_mode_plugins_many?: (game_mode_plugins_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: game_mode_plugins_updates[]} }) + /** update data of the table: "game_modes" */ + update_game_modes?: (game_modes_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (game_modes_set_input | null), + /** filter the rows which have to be updated */ + where: game_modes_bool_exp} }) + /** update single row of the table: "game_modes" */ + update_game_modes_by_pk?: (game_modesGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (game_modes_set_input | null), pk_columns: game_modes_pk_columns_input} }) + /** update multiples rows of table: "game_modes" */ + update_game_modes_many?: (game_modes_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: game_modes_updates[]} }) + /** update data of the table: "game_plugin_installs" */ + update_game_plugin_installs?: (game_plugin_installs_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (game_plugin_installs_set_input | null), + /** filter the rows which have to be updated */ + where: game_plugin_installs_bool_exp} }) + /** update single row of the table: "game_plugin_installs" */ + update_game_plugin_installs_by_pk?: (game_plugin_installsGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (game_plugin_installs_set_input | null), pk_columns: game_plugin_installs_pk_columns_input} }) + /** update multiples rows of table: "game_plugin_installs" */ + update_game_plugin_installs_many?: (game_plugin_installs_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: game_plugin_installs_updates[]} }) + /** update data of the table: "game_plugin_versions" */ + update_game_plugin_versions?: (game_plugin_versions_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (game_plugin_versions_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (game_plugin_versions_set_input | null), + /** filter the rows which have to be updated */ + where: game_plugin_versions_bool_exp} }) + /** update single row of the table: "game_plugin_versions" */ + update_game_plugin_versions_by_pk?: (game_plugin_versionsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (game_plugin_versions_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (game_plugin_versions_set_input | null), pk_columns: game_plugin_versions_pk_columns_input} }) + /** update multiples rows of table: "game_plugin_versions" */ + update_game_plugin_versions_many?: (game_plugin_versions_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: game_plugin_versions_updates[]} }) + /** update data of the table: "game_plugins" */ + update_game_plugins?: (game_plugins_mutation_responseGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (game_plugins_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (game_plugins_delete_at_path_input | null), + /** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */ + _delete_elem?: (game_plugins_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (game_plugins_delete_key_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (game_plugins_prepend_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (game_plugins_set_input | null), + /** filter the rows which have to be updated */ + where: game_plugins_bool_exp} }) + /** update single row of the table: "game_plugins" */ + update_game_plugins_by_pk?: (game_pluginsGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (game_plugins_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (game_plugins_delete_at_path_input | null), + /** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */ + _delete_elem?: (game_plugins_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (game_plugins_delete_key_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (game_plugins_prepend_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (game_plugins_set_input | null), pk_columns: game_plugins_pk_columns_input} }) + /** update multiples rows of table: "game_plugins" */ + update_game_plugins_many?: (game_plugins_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: game_plugins_updates[]} }) + /** update data of the table: "game_server_node_plugins" */ + update_game_server_node_plugins?: (game_server_node_plugins_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (game_server_node_plugins_set_input | null), + /** filter the rows which have to be updated */ + where: game_server_node_plugins_bool_exp} }) + /** update single row of the table: "game_server_node_plugins" */ + update_game_server_node_plugins_by_pk?: (game_server_node_pluginsGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (game_server_node_plugins_set_input | null), pk_columns: game_server_node_plugins_pk_columns_input} }) + /** update multiples rows of table: "game_server_node_plugins" */ + update_game_server_node_plugins_many?: (game_server_node_plugins_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: game_server_node_plugins_updates[]} }) + /** update data of the table: "game_server_nodes" */ + update_game_server_nodes?: (game_server_nodes_mutation_responseGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (game_server_nodes_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (game_server_nodes_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_server_nodes_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (game_server_nodes_delete_key_input | null), + /** increments the numeric columns with given value of the filtered values */ + _inc?: (game_server_nodes_inc_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (game_server_nodes_prepend_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (game_server_nodes_set_input | null), + /** filter the rows which have to be updated */ + where: game_server_nodes_bool_exp} }) + /** update single row of the table: "game_server_nodes" */ + update_game_server_nodes_by_pk?: (game_server_nodesGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (game_server_nodes_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (game_server_nodes_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_server_nodes_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (game_server_nodes_delete_key_input | null), + /** increments the numeric columns with given value of the filtered values */ + _inc?: (game_server_nodes_inc_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (game_server_nodes_prepend_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (game_server_nodes_set_input | null), pk_columns: game_server_nodes_pk_columns_input} }) + /** update multiples rows of table: "game_server_nodes" */ + update_game_server_nodes_many?: (game_server_nodes_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: game_server_nodes_updates[]} }) + /** update data of the table: "game_versions" */ + update_game_versions?: (game_versions_mutation_responseGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (game_versions_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (game_versions_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_versions_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (game_versions_delete_key_input | null), + /** increments the numeric columns with given value of the filtered values */ + _inc?: (game_versions_inc_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (game_versions_prepend_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (game_versions_set_input | null), + /** filter the rows which have to be updated */ + where: game_versions_bool_exp} }) + /** update single row of the table: "game_versions" */ + update_game_versions_by_pk?: (game_versionsGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (game_versions_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (game_versions_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_versions_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (game_versions_delete_key_input | null), + /** increments the numeric columns with given value of the filtered values */ + _inc?: (game_versions_inc_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (game_versions_prepend_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (game_versions_set_input | null), pk_columns: game_versions_pk_columns_input} }) + /** update multiples rows of table: "game_versions" */ + update_game_versions_many?: (game_versions_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: game_versions_updates[]} }) + /** update data of the table: "gamedata_signature_validations" */ + update_gamedata_signature_validations?: (gamedata_signature_validations_mutation_responseGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (gamedata_signature_validations_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (gamedata_signature_validations_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?: (gamedata_signature_validations_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (gamedata_signature_validations_delete_key_input | null), + /** increments the numeric columns with given value of the filtered values */ + _inc?: (gamedata_signature_validations_inc_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (gamedata_signature_validations_prepend_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (gamedata_signature_validations_set_input | null), + /** filter the rows which have to be updated */ + where: gamedata_signature_validations_bool_exp} }) + /** update single row of the table: "gamedata_signature_validations" */ + update_gamedata_signature_validations_by_pk?: (gamedata_signature_validationsGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (gamedata_signature_validations_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (gamedata_signature_validations_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?: (gamedata_signature_validations_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (gamedata_signature_validations_delete_key_input | null), + /** increments the numeric columns with given value of the filtered values */ + _inc?: (gamedata_signature_validations_inc_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (gamedata_signature_validations_prepend_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (gamedata_signature_validations_set_input | null), pk_columns: gamedata_signature_validations_pk_columns_input} }) + /** update multiples rows of table: "gamedata_signature_validations" */ + update_gamedata_signature_validations_many?: (gamedata_signature_validations_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: gamedata_signature_validations_updates[]} }) + /** update data of the table: "leaderboard_entries" */ + update_leaderboard_entries?: (leaderboard_entries_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (leaderboard_entries_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (leaderboard_entries_set_input | null), + /** filter the rows which have to be updated */ + where: leaderboard_entries_bool_exp} }) + /** update multiples rows of table: "leaderboard_entries" */ + update_leaderboard_entries_many?: (leaderboard_entries_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: leaderboard_entries_updates[]} }) + /** update data of the table: "league_divisions" */ + update_league_divisions?: (league_divisions_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (league_divisions_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (league_divisions_set_input | null), + /** filter the rows which have to be updated */ + where: league_divisions_bool_exp} }) + /** update single row of the table: "league_divisions" */ + update_league_divisions_by_pk?: (league_divisionsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (league_divisions_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (league_divisions_set_input | null), pk_columns: league_divisions_pk_columns_input} }) + /** update multiples rows of table: "league_divisions" */ + update_league_divisions_many?: (league_divisions_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: league_divisions_updates[]} }) + /** update data of the table: "league_match_weeks" */ + update_league_match_weeks?: (league_match_weeks_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (league_match_weeks_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (league_match_weeks_set_input | null), + /** filter the rows which have to be updated */ + where: league_match_weeks_bool_exp} }) + /** update single row of the table: "league_match_weeks" */ + update_league_match_weeks_by_pk?: (league_match_weeksGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (league_match_weeks_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (league_match_weeks_set_input | null), pk_columns: league_match_weeks_pk_columns_input} }) + /** update multiples rows of table: "league_match_weeks" */ + update_league_match_weeks_many?: (league_match_weeks_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: league_match_weeks_updates[]} }) + /** update data of the table: "league_relegation_playoffs" */ + update_league_relegation_playoffs?: (league_relegation_playoffs_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (league_relegation_playoffs_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (league_relegation_playoffs_set_input | null), + /** filter the rows which have to be updated */ + where: league_relegation_playoffs_bool_exp} }) + /** update single row of the table: "league_relegation_playoffs" */ + update_league_relegation_playoffs_by_pk?: (league_relegation_playoffsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (league_relegation_playoffs_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (league_relegation_playoffs_set_input | null), pk_columns: league_relegation_playoffs_pk_columns_input} }) + /** update multiples rows of table: "league_relegation_playoffs" */ + update_league_relegation_playoffs_many?: (league_relegation_playoffs_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: league_relegation_playoffs_updates[]} }) + /** update data of the table: "league_scheduling_proposals" */ + update_league_scheduling_proposals?: (league_scheduling_proposals_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (league_scheduling_proposals_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (league_scheduling_proposals_set_input | null), + /** filter the rows which have to be updated */ + where: league_scheduling_proposals_bool_exp} }) + /** update single row of the table: "league_scheduling_proposals" */ + update_league_scheduling_proposals_by_pk?: (league_scheduling_proposalsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (league_scheduling_proposals_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (league_scheduling_proposals_set_input | null), pk_columns: league_scheduling_proposals_pk_columns_input} }) + /** update multiples rows of table: "league_scheduling_proposals" */ + update_league_scheduling_proposals_many?: (league_scheduling_proposals_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: league_scheduling_proposals_updates[]} }) + /** update data of the table: "league_season_divisions" */ + update_league_season_divisions?: (league_season_divisions_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (league_season_divisions_set_input | null), + /** filter the rows which have to be updated */ + where: league_season_divisions_bool_exp} }) + /** update single row of the table: "league_season_divisions" */ + update_league_season_divisions_by_pk?: (league_season_divisionsGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (league_season_divisions_set_input | null), pk_columns: league_season_divisions_pk_columns_input} }) + /** update multiples rows of table: "league_season_divisions" */ + update_league_season_divisions_many?: (league_season_divisions_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: league_season_divisions_updates[]} }) + /** update data of the table: "league_seasons" */ + update_league_seasons?: (league_seasons_mutation_responseGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (league_seasons_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (league_seasons_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?: (league_seasons_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (league_seasons_delete_key_input | null), + /** increments the numeric columns with given value of the filtered values */ + _inc?: (league_seasons_inc_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (league_seasons_prepend_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (league_seasons_set_input | null), + /** filter the rows which have to be updated */ + where: league_seasons_bool_exp} }) + /** update single row of the table: "league_seasons" */ + update_league_seasons_by_pk?: (league_seasonsGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (league_seasons_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (league_seasons_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?: (league_seasons_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (league_seasons_delete_key_input | null), + /** increments the numeric columns with given value of the filtered values */ + _inc?: (league_seasons_inc_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (league_seasons_prepend_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (league_seasons_set_input | null), pk_columns: league_seasons_pk_columns_input} }) + /** update multiples rows of table: "league_seasons" */ + update_league_seasons_many?: (league_seasons_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: league_seasons_updates[]} }) + /** update data of the table: "league_team_movements" */ + update_league_team_movements?: (league_team_movements_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (league_team_movements_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (league_team_movements_set_input | null), + /** filter the rows which have to be updated */ + where: league_team_movements_bool_exp} }) + /** update single row of the table: "league_team_movements" */ + update_league_team_movements_by_pk?: (league_team_movementsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (league_team_movements_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (league_team_movements_set_input | null), pk_columns: league_team_movements_pk_columns_input} }) + /** update multiples rows of table: "league_team_movements" */ + update_league_team_movements_many?: (league_team_movements_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: league_team_movements_updates[]} }) + /** update data of the table: "league_team_rosters" */ + update_league_team_rosters?: (league_team_rosters_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (league_team_rosters_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (league_team_rosters_set_input | null), + /** filter the rows which have to be updated */ + where: league_team_rosters_bool_exp} }) + /** update single row of the table: "league_team_rosters" */ + update_league_team_rosters_by_pk?: (league_team_rostersGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (league_team_rosters_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (league_team_rosters_set_input | null), pk_columns: league_team_rosters_pk_columns_input} }) + /** update multiples rows of table: "league_team_rosters" */ + update_league_team_rosters_many?: (league_team_rosters_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: league_team_rosters_updates[]} }) + /** update data of the table: "league_team_seasons" */ + update_league_team_seasons?: (league_team_seasons_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (league_team_seasons_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (league_team_seasons_set_input | null), + /** filter the rows which have to be updated */ + where: league_team_seasons_bool_exp} }) + /** update single row of the table: "league_team_seasons" */ + update_league_team_seasons_by_pk?: (league_team_seasonsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (league_team_seasons_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (league_team_seasons_set_input | null), pk_columns: league_team_seasons_pk_columns_input} }) + /** update multiples rows of table: "league_team_seasons" */ + update_league_team_seasons_many?: (league_team_seasons_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: league_team_seasons_updates[]} }) + /** update data of the table: "league_teams" */ + update_league_teams?: (league_teams_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (league_teams_set_input | null), + /** filter the rows which have to be updated */ + where: league_teams_bool_exp} }) + /** update single row of the table: "league_teams" */ + update_league_teams_by_pk?: (league_teamsGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (league_teams_set_input | null), pk_columns: league_teams_pk_columns_input} }) + /** update multiples rows of table: "league_teams" */ + update_league_teams_many?: (league_teams_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: league_teams_updates[]} }) + /** update data of the table: "lobbies" */ + update_lobbies?: (lobbies_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (lobbies_set_input | null), + /** filter the rows which have to be updated */ + where: lobbies_bool_exp} }) + /** update single row of the table: "lobbies" */ + update_lobbies_by_pk?: (lobbiesGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (lobbies_set_input | null), pk_columns: lobbies_pk_columns_input} }) + /** update multiples rows of table: "lobbies" */ + update_lobbies_many?: (lobbies_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: lobbies_updates[]} }) + /** update data of the table: "lobby_players" */ + update_lobby_players?: (lobby_players_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (lobby_players_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (lobby_players_set_input | null), + /** filter the rows which have to be updated */ + where: lobby_players_bool_exp} }) + /** update single row of the table: "lobby_players" */ + update_lobby_players_by_pk?: (lobby_playersGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (lobby_players_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (lobby_players_set_input | null), pk_columns: lobby_players_pk_columns_input} }) + /** update multiples rows of table: "lobby_players" */ + update_lobby_players_many?: (lobby_players_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: lobby_players_updates[]} }) + /** update data of the table: "map_callouts" */ + update_map_callouts?: (map_callouts_mutation_responseGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (map_callouts_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (map_callouts_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?: (map_callouts_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (map_callouts_delete_key_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (map_callouts_prepend_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (map_callouts_set_input | null), + /** filter the rows which have to be updated */ + where: map_callouts_bool_exp} }) + /** update single row of the table: "map_callouts" */ + update_map_callouts_by_pk?: (map_calloutsGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (map_callouts_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (map_callouts_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?: (map_callouts_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (map_callouts_delete_key_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (map_callouts_prepend_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (map_callouts_set_input | null), pk_columns: map_callouts_pk_columns_input} }) + /** update multiples rows of table: "map_callouts" */ + update_map_callouts_many?: (map_callouts_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: map_callouts_updates[]} }) + /** update data of the table: "map_pools" */ + update_map_pools?: (map_pools_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (map_pools_set_input | null), + /** filter the rows which have to be updated */ + where: map_pools_bool_exp} }) + /** update single row of the table: "map_pools" */ + update_map_pools_by_pk?: (map_poolsGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (map_pools_set_input | null), pk_columns: map_pools_pk_columns_input} }) + /** update multiples rows of table: "map_pools" */ + update_map_pools_many?: (map_pools_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: map_pools_updates[]} }) + /** update data of the table: "maps" */ + update_maps?: (maps_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (maps_set_input | null), + /** filter the rows which have to be updated */ + where: maps_bool_exp} }) + /** update single row of the table: "maps" */ + update_maps_by_pk?: (mapsGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (maps_set_input | null), pk_columns: maps_pk_columns_input} }) + /** update multiples rows of table: "maps" */ + update_maps_many?: (maps_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: maps_updates[]} }) + /** update data of the table: "match_clips" */ + update_match_clips?: (match_clips_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (match_clips_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (match_clips_set_input | null), + /** filter the rows which have to be updated */ + where: match_clips_bool_exp} }) + /** update single row of the table: "match_clips" */ + update_match_clips_by_pk?: (match_clipsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (match_clips_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (match_clips_set_input | null), pk_columns: match_clips_pk_columns_input} }) + /** update multiples rows of table: "match_clips" */ + update_match_clips_many?: (match_clips_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: match_clips_updates[]} }) + /** update data of the table: "match_demo_sessions" */ + update_match_demo_sessions?: (match_demo_sessions_mutation_responseGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (match_demo_sessions_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (match_demo_sessions_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?: (match_demo_sessions_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (match_demo_sessions_delete_key_input | null), + /** increments the numeric columns with given value of the filtered values */ + _inc?: (match_demo_sessions_inc_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (match_demo_sessions_prepend_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (match_demo_sessions_set_input | null), + /** filter the rows which have to be updated */ + where: match_demo_sessions_bool_exp} }) + /** update single row of the table: "match_demo_sessions" */ + update_match_demo_sessions_by_pk?: (match_demo_sessionsGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (match_demo_sessions_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (match_demo_sessions_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?: (match_demo_sessions_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (match_demo_sessions_delete_key_input | null), + /** increments the numeric columns with given value of the filtered values */ + _inc?: (match_demo_sessions_inc_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (match_demo_sessions_prepend_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (match_demo_sessions_set_input | null), pk_columns: match_demo_sessions_pk_columns_input} }) + /** update multiples rows of table: "match_demo_sessions" */ + update_match_demo_sessions_many?: (match_demo_sessions_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: match_demo_sessions_updates[]} }) + /** update data of the table: "match_lineup_players" */ + update_match_lineup_players?: (match_lineup_players_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (match_lineup_players_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (match_lineup_players_set_input | null), + /** filter the rows which have to be updated */ + where: match_lineup_players_bool_exp} }) + /** update single row of the table: "match_lineup_players" */ + update_match_lineup_players_by_pk?: (match_lineup_playersGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (match_lineup_players_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (match_lineup_players_set_input | null), pk_columns: match_lineup_players_pk_columns_input} }) + /** update multiples rows of table: "match_lineup_players" */ + update_match_lineup_players_many?: (match_lineup_players_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: match_lineup_players_updates[]} }) + /** update data of the table: "match_lineups" */ + update_match_lineups?: (match_lineups_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (match_lineups_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (match_lineups_set_input | null), + /** filter the rows which have to be updated */ + where: match_lineups_bool_exp} }) + /** update single row of the table: "match_lineups" */ + update_match_lineups_by_pk?: (match_lineupsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (match_lineups_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (match_lineups_set_input | null), pk_columns: match_lineups_pk_columns_input} }) + /** update multiples rows of table: "match_lineups" */ + update_match_lineups_many?: (match_lineups_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: match_lineups_updates[]} }) + /** update data of the table: "match_map_demos" */ + update_match_map_demos?: (match_map_demos_mutation_responseGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (match_map_demos_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (match_map_demos_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?: (match_map_demos_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (match_map_demos_delete_key_input | null), + /** increments the numeric columns with given value of the filtered values */ + _inc?: (match_map_demos_inc_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (match_map_demos_prepend_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (match_map_demos_set_input | null), + /** filter the rows which have to be updated */ + where: match_map_demos_bool_exp} }) + /** update single row of the table: "match_map_demos" */ + update_match_map_demos_by_pk?: (match_map_demosGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (match_map_demos_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (match_map_demos_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?: (match_map_demos_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (match_map_demos_delete_key_input | null), + /** increments the numeric columns with given value of the filtered values */ + _inc?: (match_map_demos_inc_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (match_map_demos_prepend_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (match_map_demos_set_input | null), pk_columns: match_map_demos_pk_columns_input} }) + /** update multiples rows of table: "match_map_demos" */ + update_match_map_demos_many?: (match_map_demos_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: match_map_demos_updates[]} }) + /** update data of the table: "match_map_rounds" */ + update_match_map_rounds?: (match_map_rounds_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (match_map_rounds_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (match_map_rounds_set_input | null), + /** filter the rows which have to be updated */ + where: match_map_rounds_bool_exp} }) + /** update single row of the table: "match_map_rounds" */ + update_match_map_rounds_by_pk?: (match_map_roundsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (match_map_rounds_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (match_map_rounds_set_input | null), pk_columns: match_map_rounds_pk_columns_input} }) + /** update multiples rows of table: "match_map_rounds" */ + update_match_map_rounds_many?: (match_map_rounds_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: match_map_rounds_updates[]} }) + /** update data of the table: "match_map_veto_picks" */ + update_match_map_veto_picks?: (match_map_veto_picks_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (match_map_veto_picks_set_input | null), + /** filter the rows which have to be updated */ + where: match_map_veto_picks_bool_exp} }) + /** update single row of the table: "match_map_veto_picks" */ + update_match_map_veto_picks_by_pk?: (match_map_veto_picksGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (match_map_veto_picks_set_input | null), pk_columns: match_map_veto_picks_pk_columns_input} }) + /** update multiples rows of table: "match_map_veto_picks" */ + update_match_map_veto_picks_many?: (match_map_veto_picks_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: match_map_veto_picks_updates[]} }) + /** update data of the table: "match_maps" */ + update_match_maps?: (match_maps_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (match_maps_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (match_maps_set_input | null), + /** filter the rows which have to be updated */ + where: match_maps_bool_exp} }) + /** update single row of the table: "match_maps" */ + update_match_maps_by_pk?: (match_mapsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (match_maps_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (match_maps_set_input | null), pk_columns: match_maps_pk_columns_input} }) + /** update multiples rows of table: "match_maps" */ + update_match_maps_many?: (match_maps_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: match_maps_updates[]} }) + /** update data of the table: "match_options" */ + update_match_options?: (match_options_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (match_options_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (match_options_set_input | null), + /** filter the rows which have to be updated */ + where: match_options_bool_exp} }) + /** update single row of the table: "match_options" */ + update_match_options_by_pk?: (match_optionsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (match_options_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (match_options_set_input | null), pk_columns: match_options_pk_columns_input} }) + /** update multiples rows of table: "match_options" */ + update_match_options_many?: (match_options_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: match_options_updates[]} }) + /** update data of the table: "match_region_veto_picks" */ + update_match_region_veto_picks?: (match_region_veto_picks_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (match_region_veto_picks_set_input | null), + /** filter the rows which have to be updated */ + where: match_region_veto_picks_bool_exp} }) + /** update single row of the table: "match_region_veto_picks" */ + update_match_region_veto_picks_by_pk?: (match_region_veto_picksGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (match_region_veto_picks_set_input | null), pk_columns: match_region_veto_picks_pk_columns_input} }) + /** update multiples rows of table: "match_region_veto_picks" */ + update_match_region_veto_picks_many?: (match_region_veto_picks_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: match_region_veto_picks_updates[]} }) + /** update data of the table: "match_streams" */ + update_match_streams?: (match_streams_mutation_responseGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (match_streams_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (match_streams_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?: (match_streams_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (match_streams_delete_key_input | null), + /** increments the numeric columns with given value of the filtered values */ + _inc?: (match_streams_inc_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (match_streams_prepend_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (match_streams_set_input | null), + /** filter the rows which have to be updated */ + where: match_streams_bool_exp} }) + /** update single row of the table: "match_streams" */ + update_match_streams_by_pk?: (match_streamsGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (match_streams_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (match_streams_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?: (match_streams_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (match_streams_delete_key_input | null), + /** increments the numeric columns with given value of the filtered values */ + _inc?: (match_streams_inc_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (match_streams_prepend_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (match_streams_set_input | null), pk_columns: match_streams_pk_columns_input} }) + /** update multiples rows of table: "match_streams" */ + update_match_streams_many?: (match_streams_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: match_streams_updates[]} }) + /** update data of the table: "match_type_cfgs" */ + update_match_type_cfgs?: (match_type_cfgs_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (match_type_cfgs_set_input | null), + /** filter the rows which have to be updated */ + where: match_type_cfgs_bool_exp} }) + /** update single row of the table: "match_type_cfgs" */ + update_match_type_cfgs_by_pk?: (match_type_cfgsGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (match_type_cfgs_set_input | null), pk_columns: match_type_cfgs_pk_columns_input} }) + /** update multiples rows of table: "match_type_cfgs" */ + update_match_type_cfgs_many?: (match_type_cfgs_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: match_type_cfgs_updates[]} }) + /** update data of the table: "matches" */ + update_matches?: (matches_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (matches_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (matches_set_input | null), + /** filter the rows which have to be updated */ + where: matches_bool_exp} }) + /** update single row of the table: "matches" */ + update_matches_by_pk?: (matchesGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (matches_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (matches_set_input | null), pk_columns: matches_pk_columns_input} }) + /** update multiples rows of table: "matches" */ + update_matches_many?: (matches_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: matches_updates[]} }) + /** update data of the table: "migration_hashes.hashes" */ + update_migration_hashes_hashes?: (migration_hashes_hashes_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (migration_hashes_hashes_set_input | null), + /** filter the rows which have to be updated */ + where: migration_hashes_hashes_bool_exp} }) + /** update single row of the table: "migration_hashes.hashes" */ + update_migration_hashes_hashes_by_pk?: (migration_hashes_hashesGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (migration_hashes_hashes_set_input | null), pk_columns: migration_hashes_hashes_pk_columns_input} }) + /** update multiples rows of table: "migration_hashes.hashes" */ + update_migration_hashes_hashes_many?: (migration_hashes_hashes_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: migration_hashes_hashes_updates[]} }) + /** update data of the table: "v_my_friends" */ + update_my_friends?: (my_friends_mutation_responseGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (my_friends_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (my_friends_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?: (my_friends_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (my_friends_delete_key_input | null), + /** increments the numeric columns with given value of the filtered values */ + _inc?: (my_friends_inc_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (my_friends_prepend_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (my_friends_set_input | null), + /** filter the rows which have to be updated */ + where: my_friends_bool_exp} }) + /** update multiples rows of table: "v_my_friends" */ + update_my_friends_many?: (my_friends_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: my_friends_updates[]} }) + /** update data of the table: "news_articles" */ + update_news_articles?: (news_articles_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (news_articles_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (news_articles_set_input | null), + /** filter the rows which have to be updated */ + where: news_articles_bool_exp} }) + /** update single row of the table: "news_articles" */ + update_news_articles_by_pk?: (news_articlesGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (news_articles_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (news_articles_set_input | null), pk_columns: news_articles_pk_columns_input} }) + /** update multiples rows of table: "news_articles" */ + update_news_articles_many?: (news_articles_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: news_articles_updates[]} }) + /** update data of the table: "notification_preferences" */ + update_notification_preferences?: (notification_preferences_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (notification_preferences_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (notification_preferences_set_input | null), + /** filter the rows which have to be updated */ + where: notification_preferences_bool_exp} }) + /** update single row of the table: "notification_preferences" */ + update_notification_preferences_by_pk?: (notification_preferencesGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (notification_preferences_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (notification_preferences_set_input | null), pk_columns: notification_preferences_pk_columns_input} }) + /** update multiples rows of table: "notification_preferences" */ + update_notification_preferences_many?: (notification_preferences_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: notification_preferences_updates[]} }) + /** update data of the table: "notifications" */ + update_notifications?: (notifications_mutation_responseGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (notifications_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (notifications_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?: (notifications_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (notifications_delete_key_input | null), + /** increments the numeric columns with given value of the filtered values */ + _inc?: (notifications_inc_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (notifications_prepend_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (notifications_set_input | null), + /** filter the rows which have to be updated */ + where: notifications_bool_exp} }) + /** update single row of the table: "notifications" */ + update_notifications_by_pk?: (notificationsGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (notifications_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (notifications_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?: (notifications_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (notifications_delete_key_input | null), + /** increments the numeric columns with given value of the filtered values */ + _inc?: (notifications_inc_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (notifications_prepend_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (notifications_set_input | null), pk_columns: notifications_pk_columns_input} }) + /** update multiples rows of table: "notifications" */ + update_notifications_many?: (notifications_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: notifications_updates[]} }) + /** update data of the table: "pending_match_import_players" */ + update_pending_match_import_players?: (pending_match_import_players_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (pending_match_import_players_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (pending_match_import_players_set_input | null), + /** filter the rows which have to be updated */ + where: pending_match_import_players_bool_exp} }) + /** update single row of the table: "pending_match_import_players" */ + update_pending_match_import_players_by_pk?: (pending_match_import_playersGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (pending_match_import_players_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (pending_match_import_players_set_input | null), pk_columns: pending_match_import_players_pk_columns_input} }) + /** update multiples rows of table: "pending_match_import_players" */ + update_pending_match_import_players_many?: (pending_match_import_players_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: pending_match_import_players_updates[]} }) + /** update data of the table: "pending_match_imports" */ + update_pending_match_imports?: (pending_match_imports_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (pending_match_imports_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (pending_match_imports_set_input | null), + /** filter the rows which have to be updated */ + where: pending_match_imports_bool_exp} }) + /** update single row of the table: "pending_match_imports" */ + update_pending_match_imports_by_pk?: (pending_match_importsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (pending_match_imports_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (pending_match_imports_set_input | null), pk_columns: pending_match_imports_pk_columns_input} }) + /** update multiples rows of table: "pending_match_imports" */ + update_pending_match_imports_many?: (pending_match_imports_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: pending_match_imports_updates[]} }) + /** update data of the table: "player_aim_stats_demo" */ + update_player_aim_stats_demo?: (player_aim_stats_demo_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (player_aim_stats_demo_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (player_aim_stats_demo_set_input | null), + /** filter the rows which have to be updated */ + where: player_aim_stats_demo_bool_exp} }) + /** update single row of the table: "player_aim_stats_demo" */ + update_player_aim_stats_demo_by_pk?: (player_aim_stats_demoGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (player_aim_stats_demo_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (player_aim_stats_demo_set_input | null), pk_columns: player_aim_stats_demo_pk_columns_input} }) + /** update multiples rows of table: "player_aim_stats_demo" */ + update_player_aim_stats_demo_many?: (player_aim_stats_demo_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: player_aim_stats_demo_updates[]} }) + /** update data of the table: "player_aim_weapon_stats" */ + update_player_aim_weapon_stats?: (player_aim_weapon_stats_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (player_aim_weapon_stats_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (player_aim_weapon_stats_set_input | null), + /** filter the rows which have to be updated */ + where: player_aim_weapon_stats_bool_exp} }) + /** update single row of the table: "player_aim_weapon_stats" */ + update_player_aim_weapon_stats_by_pk?: (player_aim_weapon_statsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (player_aim_weapon_stats_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (player_aim_weapon_stats_set_input | null), pk_columns: player_aim_weapon_stats_pk_columns_input} }) + /** update multiples rows of table: "player_aim_weapon_stats" */ + update_player_aim_weapon_stats_many?: (player_aim_weapon_stats_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: player_aim_weapon_stats_updates[]} }) + /** update data of the table: "player_assists" */ + update_player_assists?: (player_assists_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (player_assists_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (player_assists_set_input | null), + /** filter the rows which have to be updated */ + where: player_assists_bool_exp} }) + /** update single row of the table: "player_assists" */ + update_player_assists_by_pk?: (player_assistsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (player_assists_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (player_assists_set_input | null), pk_columns: player_assists_pk_columns_input} }) + /** update multiples rows of table: "player_assists" */ + update_player_assists_many?: (player_assists_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: player_assists_updates[]} }) + /** update data of the table: "player_damages" */ + update_player_damages?: (player_damages_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (player_damages_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (player_damages_set_input | null), + /** filter the rows which have to be updated */ + where: player_damages_bool_exp} }) + /** update single row of the table: "player_damages" */ + update_player_damages_by_pk?: (player_damagesGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (player_damages_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (player_damages_set_input | null), pk_columns: player_damages_pk_columns_input} }) + /** update multiples rows of table: "player_damages" */ + update_player_damages_many?: (player_damages_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: player_damages_updates[]} }) + /** update data of the table: "player_elo" */ + update_player_elo?: (player_elo_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (player_elo_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (player_elo_set_input | null), + /** filter the rows which have to be updated */ + where: player_elo_bool_exp} }) + /** update single row of the table: "player_elo" */ + update_player_elo_by_pk?: (player_eloGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (player_elo_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (player_elo_set_input | null), pk_columns: player_elo_pk_columns_input} }) + /** update multiples rows of table: "player_elo" */ + update_player_elo_many?: (player_elo_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: player_elo_updates[]} }) + /** update data of the table: "player_faceit_rank_history" */ + update_player_faceit_rank_history?: (player_faceit_rank_history_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (player_faceit_rank_history_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (player_faceit_rank_history_set_input | null), + /** filter the rows which have to be updated */ + where: player_faceit_rank_history_bool_exp} }) + /** update single row of the table: "player_faceit_rank_history" */ + update_player_faceit_rank_history_by_pk?: (player_faceit_rank_historyGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (player_faceit_rank_history_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (player_faceit_rank_history_set_input | null), pk_columns: player_faceit_rank_history_pk_columns_input} }) + /** update multiples rows of table: "player_faceit_rank_history" */ + update_player_faceit_rank_history_many?: (player_faceit_rank_history_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: player_faceit_rank_history_updates[]} }) + /** update data of the table: "player_flashes" */ + update_player_flashes?: (player_flashes_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (player_flashes_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (player_flashes_set_input | null), + /** filter the rows which have to be updated */ + where: player_flashes_bool_exp} }) + /** update single row of the table: "player_flashes" */ + update_player_flashes_by_pk?: (player_flashesGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (player_flashes_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (player_flashes_set_input | null), pk_columns: player_flashes_pk_columns_input} }) + /** update multiples rows of table: "player_flashes" */ + update_player_flashes_many?: (player_flashes_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: player_flashes_updates[]} }) + /** update data of the table: "player_kills" */ + update_player_kills?: (player_kills_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (player_kills_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (player_kills_set_input | null), + /** filter the rows which have to be updated */ + where: player_kills_bool_exp} }) + /** update single row of the table: "player_kills" */ + update_player_kills_by_pk?: (player_killsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (player_kills_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (player_kills_set_input | null), pk_columns: player_kills_pk_columns_input} }) + /** update data of the table: "player_kills_by_weapon" */ + update_player_kills_by_weapon?: (player_kills_by_weapon_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (player_kills_by_weapon_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (player_kills_by_weapon_set_input | null), + /** filter the rows which have to be updated */ + where: player_kills_by_weapon_bool_exp} }) + /** update single row of the table: "player_kills_by_weapon" */ + update_player_kills_by_weapon_by_pk?: (player_kills_by_weaponGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (player_kills_by_weapon_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (player_kills_by_weapon_set_input | null), pk_columns: player_kills_by_weapon_pk_columns_input} }) + /** update multiples rows of table: "player_kills_by_weapon" */ + update_player_kills_by_weapon_many?: (player_kills_by_weapon_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: player_kills_by_weapon_updates[]} }) + /** update multiples rows of table: "player_kills" */ + update_player_kills_many?: (player_kills_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: player_kills_updates[]} }) + /** update data of the table: "player_leaderboard_rank" */ + update_player_leaderboard_rank?: (player_leaderboard_rank_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (player_leaderboard_rank_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (player_leaderboard_rank_set_input | null), + /** filter the rows which have to be updated */ + where: player_leaderboard_rank_bool_exp} }) + /** update multiples rows of table: "player_leaderboard_rank" */ + update_player_leaderboard_rank_many?: (player_leaderboard_rank_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: player_leaderboard_rank_updates[]} }) + /** update data of the table: "player_match_map_stats" */ + update_player_match_map_stats?: (player_match_map_stats_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (player_match_map_stats_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (player_match_map_stats_set_input | null), + /** filter the rows which have to be updated */ + where: player_match_map_stats_bool_exp} }) + /** update single row of the table: "player_match_map_stats" */ + update_player_match_map_stats_by_pk?: (player_match_map_statsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (player_match_map_stats_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (player_match_map_stats_set_input | null), pk_columns: player_match_map_stats_pk_columns_input} }) + /** update multiples rows of table: "player_match_map_stats" */ + update_player_match_map_stats_many?: (player_match_map_stats_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: player_match_map_stats_updates[]} }) + /** update data of the table: "player_objectives" */ + update_player_objectives?: (player_objectives_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (player_objectives_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (player_objectives_set_input | null), + /** filter the rows which have to be updated */ + where: player_objectives_bool_exp} }) + /** update single row of the table: "player_objectives" */ + update_player_objectives_by_pk?: (player_objectivesGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (player_objectives_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (player_objectives_set_input | null), pk_columns: player_objectives_pk_columns_input} }) + /** update multiples rows of table: "player_objectives" */ + update_player_objectives_many?: (player_objectives_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: player_objectives_updates[]} }) + /** update data of the table: "player_premier_rank_history" */ + update_player_premier_rank_history?: (player_premier_rank_history_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (player_premier_rank_history_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (player_premier_rank_history_set_input | null), + /** filter the rows which have to be updated */ + where: player_premier_rank_history_bool_exp} }) + /** update single row of the table: "player_premier_rank_history" */ + update_player_premier_rank_history_by_pk?: (player_premier_rank_historyGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (player_premier_rank_history_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (player_premier_rank_history_set_input | null), pk_columns: player_premier_rank_history_pk_columns_input} }) + /** update multiples rows of table: "player_premier_rank_history" */ + update_player_premier_rank_history_many?: (player_premier_rank_history_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: player_premier_rank_history_updates[]} }) + /** update data of the table: "player_sanctions" */ + update_player_sanctions?: (player_sanctions_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (player_sanctions_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (player_sanctions_set_input | null), + /** filter the rows which have to be updated */ + where: player_sanctions_bool_exp} }) + /** update single row of the table: "player_sanctions" */ + update_player_sanctions_by_pk?: (player_sanctionsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (player_sanctions_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (player_sanctions_set_input | null), pk_columns: player_sanctions_pk_columns_input} }) + /** update multiples rows of table: "player_sanctions" */ + update_player_sanctions_many?: (player_sanctions_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: player_sanctions_updates[]} }) + /** update data of the table: "player_season_stats" */ + update_player_season_stats?: (player_season_stats_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (player_season_stats_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (player_season_stats_set_input | null), + /** filter the rows which have to be updated */ + where: player_season_stats_bool_exp} }) + /** update single row of the table: "player_season_stats" */ + update_player_season_stats_by_pk?: (player_season_statsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (player_season_stats_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (player_season_stats_set_input | null), pk_columns: player_season_stats_pk_columns_input} }) + /** update multiples rows of table: "player_season_stats" */ + update_player_season_stats_many?: (player_season_stats_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: player_season_stats_updates[]} }) + /** update data of the table: "player_stats" */ + update_player_stats?: (player_stats_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (player_stats_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (player_stats_set_input | null), + /** filter the rows which have to be updated */ + where: player_stats_bool_exp} }) + /** update single row of the table: "player_stats" */ + update_player_stats_by_pk?: (player_statsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (player_stats_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (player_stats_set_input | null), pk_columns: player_stats_pk_columns_input} }) + /** update multiples rows of table: "player_stats" */ + update_player_stats_many?: (player_stats_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: player_stats_updates[]} }) + /** update data of the table: "player_steam_bot_friend" */ + update_player_steam_bot_friend?: (player_steam_bot_friend_mutation_responseGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (player_steam_bot_friend_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (player_steam_bot_friend_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?: (player_steam_bot_friend_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (player_steam_bot_friend_delete_key_input | null), + /** increments the numeric columns with given value of the filtered values */ + _inc?: (player_steam_bot_friend_inc_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (player_steam_bot_friend_prepend_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (player_steam_bot_friend_set_input | null), + /** filter the rows which have to be updated */ + where: player_steam_bot_friend_bool_exp} }) + /** update single row of the table: "player_steam_bot_friend" */ + update_player_steam_bot_friend_by_pk?: (player_steam_bot_friendGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (player_steam_bot_friend_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (player_steam_bot_friend_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?: (player_steam_bot_friend_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (player_steam_bot_friend_delete_key_input | null), + /** increments the numeric columns with given value of the filtered values */ + _inc?: (player_steam_bot_friend_inc_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (player_steam_bot_friend_prepend_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (player_steam_bot_friend_set_input | null), pk_columns: player_steam_bot_friend_pk_columns_input} }) + /** update multiples rows of table: "player_steam_bot_friend" */ + update_player_steam_bot_friend_many?: (player_steam_bot_friend_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: player_steam_bot_friend_updates[]} }) + /** update data of the table: "player_steam_match_auth" */ + update_player_steam_match_auth?: (player_steam_match_auth_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (player_steam_match_auth_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (player_steam_match_auth_set_input | null), + /** filter the rows which have to be updated */ + where: player_steam_match_auth_bool_exp} }) + /** update single row of the table: "player_steam_match_auth" */ + update_player_steam_match_auth_by_pk?: (player_steam_match_authGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (player_steam_match_auth_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (player_steam_match_auth_set_input | null), pk_columns: player_steam_match_auth_pk_columns_input} }) + /** update multiples rows of table: "player_steam_match_auth" */ + update_player_steam_match_auth_many?: (player_steam_match_auth_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: player_steam_match_auth_updates[]} }) + /** update data of the table: "player_unused_utility" */ + update_player_unused_utility?: (player_unused_utility_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (player_unused_utility_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (player_unused_utility_set_input | null), + /** filter the rows which have to be updated */ + where: player_unused_utility_bool_exp} }) + /** update single row of the table: "player_unused_utility" */ + update_player_unused_utility_by_pk?: (player_unused_utilityGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (player_unused_utility_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (player_unused_utility_set_input | null), pk_columns: player_unused_utility_pk_columns_input} }) + /** update multiples rows of table: "player_unused_utility" */ + update_player_unused_utility_many?: (player_unused_utility_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: player_unused_utility_updates[]} }) + /** update data of the table: "player_utility" */ + update_player_utility?: (player_utility_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (player_utility_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (player_utility_set_input | null), + /** filter the rows which have to be updated */ + where: player_utility_bool_exp} }) + /** update single row of the table: "player_utility" */ + update_player_utility_by_pk?: (player_utilityGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (player_utility_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (player_utility_set_input | null), pk_columns: player_utility_pk_columns_input} }) + /** update multiples rows of table: "player_utility" */ + update_player_utility_many?: (player_utility_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: player_utility_updates[]} }) + /** update data of the table: "players" */ + update_players?: (players_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (players_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (players_set_input | null), + /** filter the rows which have to be updated */ + where: players_bool_exp} }) + /** update single row of the table: "players" */ + update_players_by_pk?: (playersGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (players_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (players_set_input | null), pk_columns: players_pk_columns_input} }) + /** update multiples rows of table: "players" */ + update_players_many?: (players_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: players_updates[]} }) + /** update data of the table: "plugin_versions" */ + update_plugin_versions?: (plugin_versions_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (plugin_versions_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (plugin_versions_set_input | null), + /** filter the rows which have to be updated */ + where: plugin_versions_bool_exp} }) + /** update single row of the table: "plugin_versions" */ + update_plugin_versions_by_pk?: (plugin_versionsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (plugin_versions_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (plugin_versions_set_input | null), pk_columns: plugin_versions_pk_columns_input} }) + /** update multiples rows of table: "plugin_versions" */ + update_plugin_versions_many?: (plugin_versions_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: plugin_versions_updates[]} }) + /** update data of the table: "push_subscriptions" */ + update_push_subscriptions?: (push_subscriptions_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (push_subscriptions_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (push_subscriptions_set_input | null), + /** filter the rows which have to be updated */ + where: push_subscriptions_bool_exp} }) + /** update single row of the table: "push_subscriptions" */ + update_push_subscriptions_by_pk?: (push_subscriptionsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (push_subscriptions_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (push_subscriptions_set_input | null), pk_columns: push_subscriptions_pk_columns_input} }) + /** update multiples rows of table: "push_subscriptions" */ + update_push_subscriptions_many?: (push_subscriptions_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: push_subscriptions_updates[]} }) + /** update data of the table: "v_role_permissions" */ + update_role_permissions?: (role_permissions_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (role_permissions_set_input | null), + /** filter the rows which have to be updated */ + where: role_permissions_bool_exp} }) + /** update multiples rows of table: "v_role_permissions" */ + update_role_permissions_many?: (role_permissions_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: role_permissions_updates[]} }) + /** update data of the table: "seasons" */ + update_seasons?: (seasons_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (seasons_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (seasons_set_input | null), + /** filter the rows which have to be updated */ + where: seasons_bool_exp} }) + /** update single row of the table: "seasons" */ + update_seasons_by_pk?: (seasonsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (seasons_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (seasons_set_input | null), pk_columns: seasons_pk_columns_input} }) + /** update multiples rows of table: "seasons" */ + update_seasons_many?: (seasons_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: seasons_updates[]} }) + /** update data of the table: "server_regions" */ + update_server_regions?: (server_regions_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (server_regions_set_input | null), + /** filter the rows which have to be updated */ + where: server_regions_bool_exp} }) + /** update single row of the table: "server_regions" */ + update_server_regions_by_pk?: (server_regionsGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (server_regions_set_input | null), pk_columns: server_regions_pk_columns_input} }) + /** update multiples rows of table: "server_regions" */ + update_server_regions_many?: (server_regions_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + 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" */ + update_servers_many?: (servers_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: servers_updates[]} }) + /** update data of the table: "settings" */ + update_settings?: (settings_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (settings_set_input | null), + /** filter the rows which have to be updated */ + where: settings_bool_exp} }) + /** update single row of the table: "settings" */ + update_settings_by_pk?: (settingsGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (settings_set_input | null), pk_columns: settings_pk_columns_input} }) + /** update multiples rows of table: "settings" */ + update_settings_many?: (settings_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: settings_updates[]} }) + /** update data of the table: "steam_account_claims" */ + update_steam_account_claims?: (steam_account_claims_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (steam_account_claims_set_input | null), + /** filter the rows which have to be updated */ + where: steam_account_claims_bool_exp} }) + /** update single row of the table: "steam_account_claims" */ + update_steam_account_claims_by_pk?: (steam_account_claimsGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (steam_account_claims_set_input | null), pk_columns: steam_account_claims_pk_columns_input} }) + /** update multiples rows of table: "steam_account_claims" */ + update_steam_account_claims_many?: (steam_account_claims_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: steam_account_claims_updates[]} }) + /** update data of the table: "steam_accounts" */ + update_steam_accounts?: (steam_accounts_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (steam_accounts_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (steam_accounts_set_input | null), + /** filter the rows which have to be updated */ + where: steam_accounts_bool_exp} }) + /** update single row of the table: "steam_accounts" */ + update_steam_accounts_by_pk?: (steam_accountsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (steam_accounts_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (steam_accounts_set_input | null), pk_columns: steam_accounts_pk_columns_input} }) + /** update multiples rows of table: "steam_accounts" */ + update_steam_accounts_many?: (steam_accounts_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: steam_accounts_updates[]} }) + /** update data of the table: "system_alerts" */ + update_system_alerts?: (system_alerts_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (system_alerts_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (system_alerts_set_input | null), + /** filter the rows which have to be updated */ + where: system_alerts_bool_exp} }) + /** update single row of the table: "system_alerts" */ + update_system_alerts_by_pk?: (system_alertsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (system_alerts_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (system_alerts_set_input | null), pk_columns: system_alerts_pk_columns_input} }) + /** update multiples rows of table: "system_alerts" */ + update_system_alerts_many?: (system_alerts_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: system_alerts_updates[]} }) + /** update data of the table: "team_invites" */ + update_team_invites?: (team_invites_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (team_invites_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (team_invites_set_input | null), + /** filter the rows which have to be updated */ + where: team_invites_bool_exp} }) + /** update single row of the table: "team_invites" */ + update_team_invites_by_pk?: (team_invitesGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (team_invites_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (team_invites_set_input | null), pk_columns: team_invites_pk_columns_input} }) + /** update multiples rows of table: "team_invites" */ + update_team_invites_many?: (team_invites_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: team_invites_updates[]} }) + /** update data of the table: "team_roster" */ + update_team_roster?: (team_roster_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (team_roster_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (team_roster_set_input | null), + /** filter the rows which have to be updated */ + where: team_roster_bool_exp} }) + /** update single row of the table: "team_roster" */ + update_team_roster_by_pk?: (team_rosterGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (team_roster_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (team_roster_set_input | null), pk_columns: team_roster_pk_columns_input} }) + /** update multiples rows of table: "team_roster" */ + update_team_roster_many?: (team_roster_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: team_roster_updates[]} }) + /** update data of the table: "team_scrim_alerts" */ + update_team_scrim_alerts?: (team_scrim_alerts_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (team_scrim_alerts_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (team_scrim_alerts_set_input | null), + /** filter the rows which have to be updated */ + where: team_scrim_alerts_bool_exp} }) + /** update single row of the table: "team_scrim_alerts" */ + update_team_scrim_alerts_by_pk?: (team_scrim_alertsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (team_scrim_alerts_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (team_scrim_alerts_set_input | null), pk_columns: team_scrim_alerts_pk_columns_input} }) + /** update multiples rows of table: "team_scrim_alerts" */ + update_team_scrim_alerts_many?: (team_scrim_alerts_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: team_scrim_alerts_updates[]} }) + /** update data of the table: "team_scrim_availability" */ + update_team_scrim_availability?: (team_scrim_availability_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (team_scrim_availability_set_input | null), + /** filter the rows which have to be updated */ + where: team_scrim_availability_bool_exp} }) + /** update single row of the table: "team_scrim_availability" */ + update_team_scrim_availability_by_pk?: (team_scrim_availabilityGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (team_scrim_availability_set_input | null), pk_columns: team_scrim_availability_pk_columns_input} }) + /** update multiples rows of table: "team_scrim_availability" */ + update_team_scrim_availability_many?: (team_scrim_availability_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: team_scrim_availability_updates[]} }) + /** update data of the table: "team_scrim_request_proposals" */ + update_team_scrim_request_proposals?: (team_scrim_request_proposals_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (team_scrim_request_proposals_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (team_scrim_request_proposals_set_input | null), + /** filter the rows which have to be updated */ + where: team_scrim_request_proposals_bool_exp} }) + /** update single row of the table: "team_scrim_request_proposals" */ + update_team_scrim_request_proposals_by_pk?: (team_scrim_request_proposalsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (team_scrim_request_proposals_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (team_scrim_request_proposals_set_input | null), pk_columns: team_scrim_request_proposals_pk_columns_input} }) + /** update multiples rows of table: "team_scrim_request_proposals" */ + update_team_scrim_request_proposals_many?: (team_scrim_request_proposals_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: team_scrim_request_proposals_updates[]} }) + /** update data of the table: "team_scrim_requests" */ + update_team_scrim_requests?: (team_scrim_requests_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (team_scrim_requests_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (team_scrim_requests_set_input | null), + /** filter the rows which have to be updated */ + where: team_scrim_requests_bool_exp} }) + /** update single row of the table: "team_scrim_requests" */ + update_team_scrim_requests_by_pk?: (team_scrim_requestsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (team_scrim_requests_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (team_scrim_requests_set_input | null), pk_columns: team_scrim_requests_pk_columns_input} }) + /** update multiples rows of table: "team_scrim_requests" */ + update_team_scrim_requests_many?: (team_scrim_requests_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: team_scrim_requests_updates[]} }) + /** update data of the table: "team_scrim_settings" */ + update_team_scrim_settings?: (team_scrim_settings_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (team_scrim_settings_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (team_scrim_settings_set_input | null), + /** filter the rows which have to be updated */ + where: team_scrim_settings_bool_exp} }) + /** update single row of the table: "team_scrim_settings" */ + update_team_scrim_settings_by_pk?: (team_scrim_settingsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (team_scrim_settings_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (team_scrim_settings_set_input | null), pk_columns: team_scrim_settings_pk_columns_input} }) + /** update multiples rows of table: "team_scrim_settings" */ + update_team_scrim_settings_many?: (team_scrim_settings_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: team_scrim_settings_updates[]} }) + /** update data of the table: "team_suggestions" */ + update_team_suggestions?: (team_suggestions_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (team_suggestions_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (team_suggestions_set_input | null), + /** filter the rows which have to be updated */ + where: team_suggestions_bool_exp} }) + /** update single row of the table: "team_suggestions" */ + update_team_suggestions_by_pk?: (team_suggestionsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (team_suggestions_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (team_suggestions_set_input | null), pk_columns: team_suggestions_pk_columns_input} }) + /** update multiples rows of table: "team_suggestions" */ + update_team_suggestions_many?: (team_suggestions_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: team_suggestions_updates[]} }) + /** update data of the table: "teams" */ + update_teams?: (teams_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (teams_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (teams_set_input | null), + /** filter the rows which have to be updated */ + where: teams_bool_exp} }) + /** update single row of the table: "teams" */ + update_teams_by_pk?: (teamsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (teams_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (teams_set_input | null), pk_columns: teams_pk_columns_input} }) + /** update multiples rows of table: "teams" */ + update_teams_many?: (teams_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: teams_updates[]} }) + /** update data of the table: "tournament_awards" */ + update_tournament_awards?: (tournament_awards_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (tournament_awards_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (tournament_awards_set_input | null), + /** filter the rows which have to be updated */ + where: tournament_awards_bool_exp} }) + /** update single row of the table: "tournament_awards" */ + update_tournament_awards_by_pk?: (tournament_awardsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (tournament_awards_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (tournament_awards_set_input | null), pk_columns: tournament_awards_pk_columns_input} }) + /** update multiples rows of table: "tournament_awards" */ + update_tournament_awards_many?: (tournament_awards_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: tournament_awards_updates[]} }) + /** update data of the table: "tournament_brackets" */ + update_tournament_brackets?: (tournament_brackets_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (tournament_brackets_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (tournament_brackets_set_input | null), + /** filter the rows which have to be updated */ + where: tournament_brackets_bool_exp} }) + /** update single row of the table: "tournament_brackets" */ + update_tournament_brackets_by_pk?: (tournament_bracketsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (tournament_brackets_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (tournament_brackets_set_input | null), pk_columns: tournament_brackets_pk_columns_input} }) + /** update multiples rows of table: "tournament_brackets" */ + update_tournament_brackets_many?: (tournament_brackets_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: tournament_brackets_updates[]} }) + /** update data of the table: "tournament_categories" */ + update_tournament_categories?: (tournament_categories_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (tournament_categories_set_input | null), + /** filter the rows which have to be updated */ + where: tournament_categories_bool_exp} }) + /** update single row of the table: "tournament_categories" */ + update_tournament_categories_by_pk?: (tournament_categoriesGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (tournament_categories_set_input | null), pk_columns: tournament_categories_pk_columns_input} }) + /** update multiples rows of table: "tournament_categories" */ + update_tournament_categories_many?: (tournament_categories_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: tournament_categories_updates[]} }) + /** update data of the table: "tournament_free_agents" */ + update_tournament_free_agents?: (tournament_free_agents_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (tournament_free_agents_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (tournament_free_agents_set_input | null), + /** filter the rows which have to be updated */ + where: tournament_free_agents_bool_exp} }) + /** update single row of the table: "tournament_free_agents" */ + update_tournament_free_agents_by_pk?: (tournament_free_agentsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (tournament_free_agents_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (tournament_free_agents_set_input | null), pk_columns: tournament_free_agents_pk_columns_input} }) + /** update multiples rows of table: "tournament_free_agents" */ + update_tournament_free_agents_many?: (tournament_free_agents_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: tournament_free_agents_updates[]} }) + /** update data of the table: "tournament_invite_code_uses" */ + update_tournament_invite_code_uses?: (tournament_invite_code_uses_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (tournament_invite_code_uses_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (tournament_invite_code_uses_set_input | null), + /** filter the rows which have to be updated */ + where: tournament_invite_code_uses_bool_exp} }) + /** update single row of the table: "tournament_invite_code_uses" */ + update_tournament_invite_code_uses_by_pk?: (tournament_invite_code_usesGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (tournament_invite_code_uses_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (tournament_invite_code_uses_set_input | null), pk_columns: tournament_invite_code_uses_pk_columns_input} }) + /** update multiples rows of table: "tournament_invite_code_uses" */ + update_tournament_invite_code_uses_many?: (tournament_invite_code_uses_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: tournament_invite_code_uses_updates[]} }) + /** update data of the table: "tournament_invite_codes" */ + update_tournament_invite_codes?: (tournament_invite_codes_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (tournament_invite_codes_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (tournament_invite_codes_set_input | null), + /** filter the rows which have to be updated */ + where: tournament_invite_codes_bool_exp} }) + /** update single row of the table: "tournament_invite_codes" */ + update_tournament_invite_codes_by_pk?: (tournament_invite_codesGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (tournament_invite_codes_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (tournament_invite_codes_set_input | null), pk_columns: tournament_invite_codes_pk_columns_input} }) + /** update multiples rows of table: "tournament_invite_codes" */ + update_tournament_invite_codes_many?: (tournament_invite_codes_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: tournament_invite_codes_updates[]} }) + /** update data of the table: "tournament_invites" */ + update_tournament_invites?: (tournament_invites_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (tournament_invites_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (tournament_invites_set_input | null), + /** filter the rows which have to be updated */ + where: tournament_invites_bool_exp} }) + /** update single row of the table: "tournament_invites" */ + update_tournament_invites_by_pk?: (tournament_invitesGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (tournament_invites_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (tournament_invites_set_input | null), pk_columns: tournament_invites_pk_columns_input} }) + /** update multiples rows of table: "tournament_invites" */ + update_tournament_invites_many?: (tournament_invites_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: tournament_invites_updates[]} }) + /** update data of the table: "tournament_leaderboard_entries" */ + update_tournament_leaderboard_entries?: (tournament_leaderboard_entries_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (tournament_leaderboard_entries_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (tournament_leaderboard_entries_set_input | null), + /** filter the rows which have to be updated */ + where: tournament_leaderboard_entries_bool_exp} }) + /** update multiples rows of table: "tournament_leaderboard_entries" */ + update_tournament_leaderboard_entries_many?: (tournament_leaderboard_entries_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: tournament_leaderboard_entries_updates[]} }) + /** update data of the table: "tournament_no_shows" */ + update_tournament_no_shows?: (tournament_no_shows_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (tournament_no_shows_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (tournament_no_shows_set_input | null), + /** filter the rows which have to be updated */ + where: tournament_no_shows_bool_exp} }) + /** update single row of the table: "tournament_no_shows" */ + update_tournament_no_shows_by_pk?: (tournament_no_showsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (tournament_no_shows_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (tournament_no_shows_set_input | null), pk_columns: tournament_no_shows_pk_columns_input} }) + /** update multiples rows of table: "tournament_no_shows" */ + update_tournament_no_shows_many?: (tournament_no_shows_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: tournament_no_shows_updates[]} }) + /** update data of the table: "tournament_organizer_teams" */ + update_tournament_organizer_teams?: (tournament_organizer_teams_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (tournament_organizer_teams_set_input | null), + /** filter the rows which have to be updated */ + where: tournament_organizer_teams_bool_exp} }) + /** update single row of the table: "tournament_organizer_teams" */ + update_tournament_organizer_teams_by_pk?: (tournament_organizer_teamsGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (tournament_organizer_teams_set_input | null), pk_columns: tournament_organizer_teams_pk_columns_input} }) + /** update multiples rows of table: "tournament_organizer_teams" */ + update_tournament_organizer_teams_many?: (tournament_organizer_teams_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: tournament_organizer_teams_updates[]} }) + /** update data of the table: "tournament_organizers" */ + update_tournament_organizers?: (tournament_organizers_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (tournament_organizers_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (tournament_organizers_set_input | null), + /** filter the rows which have to be updated */ + where: tournament_organizers_bool_exp} }) + /** update single row of the table: "tournament_organizers" */ + update_tournament_organizers_by_pk?: (tournament_organizersGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (tournament_organizers_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (tournament_organizers_set_input | null), pk_columns: tournament_organizers_pk_columns_input} }) + /** update multiples rows of table: "tournament_organizers" */ + update_tournament_organizers_many?: (tournament_organizers_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: tournament_organizers_updates[]} }) + /** update data of the table: "tournament_prizes" */ + update_tournament_prizes?: (tournament_prizes_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (tournament_prizes_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (tournament_prizes_set_input | null), + /** filter the rows which have to be updated */ + where: tournament_prizes_bool_exp} }) + /** update single row of the table: "tournament_prizes" */ + update_tournament_prizes_by_pk?: (tournament_prizesGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (tournament_prizes_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (tournament_prizes_set_input | null), pk_columns: tournament_prizes_pk_columns_input} }) + /** update multiples rows of table: "tournament_prizes" */ + update_tournament_prizes_many?: (tournament_prizes_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: tournament_prizes_updates[]} }) + /** update data of the table: "tournament_registration_unlocks" */ + update_tournament_registration_unlocks?: (tournament_registration_unlocks_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (tournament_registration_unlocks_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (tournament_registration_unlocks_set_input | null), + /** filter the rows which have to be updated */ + where: tournament_registration_unlocks_bool_exp} }) + /** update multiples rows of table: "tournament_registration_unlocks" */ + update_tournament_registration_unlocks_many?: (tournament_registration_unlocks_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: tournament_registration_unlocks_updates[]} }) + /** update data of the table: "tournament_stage_windows" */ + update_tournament_stage_windows?: (tournament_stage_windows_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (tournament_stage_windows_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (tournament_stage_windows_set_input | null), + /** filter the rows which have to be updated */ + where: tournament_stage_windows_bool_exp} }) + /** update single row of the table: "tournament_stage_windows" */ + update_tournament_stage_windows_by_pk?: (tournament_stage_windowsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (tournament_stage_windows_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (tournament_stage_windows_set_input | null), pk_columns: tournament_stage_windows_pk_columns_input} }) + /** update multiples rows of table: "tournament_stage_windows" */ + update_tournament_stage_windows_many?: (tournament_stage_windows_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: tournament_stage_windows_updates[]} }) + /** update data of the table: "tournament_stages" */ + update_tournament_stages?: (tournament_stages_mutation_responseGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (tournament_stages_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (tournament_stages_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?: (tournament_stages_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (tournament_stages_delete_key_input | null), + /** increments the numeric columns with given value of the filtered values */ + _inc?: (tournament_stages_inc_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (tournament_stages_prepend_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (tournament_stages_set_input | null), + /** filter the rows which have to be updated */ + where: tournament_stages_bool_exp} }) + /** update single row of the table: "tournament_stages" */ + update_tournament_stages_by_pk?: (tournament_stagesGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (tournament_stages_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (tournament_stages_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?: (tournament_stages_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (tournament_stages_delete_key_input | null), + /** increments the numeric columns with given value of the filtered values */ + _inc?: (tournament_stages_inc_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (tournament_stages_prepend_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (tournament_stages_set_input | null), pk_columns: tournament_stages_pk_columns_input} }) + /** update multiples rows of table: "tournament_stages" */ + update_tournament_stages_many?: (tournament_stages_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: tournament_stages_updates[]} }) + /** update data of the table: "tournament_team_invites" */ + update_tournament_team_invites?: (tournament_team_invites_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (tournament_team_invites_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (tournament_team_invites_set_input | null), + /** filter the rows which have to be updated */ + where: tournament_team_invites_bool_exp} }) + /** update single row of the table: "tournament_team_invites" */ + update_tournament_team_invites_by_pk?: (tournament_team_invitesGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (tournament_team_invites_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (tournament_team_invites_set_input | null), pk_columns: tournament_team_invites_pk_columns_input} }) + /** update multiples rows of table: "tournament_team_invites" */ + update_tournament_team_invites_many?: (tournament_team_invites_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: tournament_team_invites_updates[]} }) + /** update data of the table: "tournament_team_roster" */ + update_tournament_team_roster?: (tournament_team_roster_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (tournament_team_roster_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (tournament_team_roster_set_input | null), + /** filter the rows which have to be updated */ + where: tournament_team_roster_bool_exp} }) + /** update single row of the table: "tournament_team_roster" */ + update_tournament_team_roster_by_pk?: (tournament_team_rosterGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (tournament_team_roster_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (tournament_team_roster_set_input | null), pk_columns: tournament_team_roster_pk_columns_input} }) + /** update multiples rows of table: "tournament_team_roster" */ + update_tournament_team_roster_many?: (tournament_team_roster_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: tournament_team_roster_updates[]} }) + /** update data of the table: "tournament_teams" */ + update_tournament_teams?: (tournament_teams_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (tournament_teams_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (tournament_teams_set_input | null), + /** filter the rows which have to be updated */ + where: tournament_teams_bool_exp} }) + /** update single row of the table: "tournament_teams" */ + update_tournament_teams_by_pk?: (tournament_teamsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (tournament_teams_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (tournament_teams_set_input | null), pk_columns: tournament_teams_pk_columns_input} }) + /** update multiples rows of table: "tournament_teams" */ + update_tournament_teams_many?: (tournament_teams_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: tournament_teams_updates[]} }) + /** update data of the table: "tournaments" */ + update_tournaments?: (tournaments_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (tournaments_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (tournaments_set_input | null), + /** filter the rows which have to be updated */ + where: tournaments_bool_exp} }) + /** update single row of the table: "tournaments" */ + update_tournaments_by_pk?: (tournamentsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (tournaments_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (tournaments_set_input | null), pk_columns: tournaments_pk_columns_input} }) + /** update multiples rows of table: "tournaments" */ + update_tournaments_many?: (tournaments_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: tournaments_updates[]} }) + /** update data of the table: "utility_collection_items" */ + update_utility_collection_items?: (utility_collection_items_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (utility_collection_items_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (utility_collection_items_set_input | null), + /** filter the rows which have to be updated */ + where: utility_collection_items_bool_exp} }) + /** update single row of the table: "utility_collection_items" */ + update_utility_collection_items_by_pk?: (utility_collection_itemsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (utility_collection_items_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (utility_collection_items_set_input | null), pk_columns: utility_collection_items_pk_columns_input} }) + /** update multiples rows of table: "utility_collection_items" */ + update_utility_collection_items_many?: (utility_collection_items_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: utility_collection_items_updates[]} }) + /** update data of the table: "utility_collections" */ + update_utility_collections?: (utility_collections_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (utility_collections_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (utility_collections_set_input | null), + /** filter the rows which have to be updated */ + where: utility_collections_bool_exp} }) + /** update single row of the table: "utility_collections" */ + update_utility_collections_by_pk?: (utility_collectionsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (utility_collections_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (utility_collections_set_input | null), pk_columns: utility_collections_pk_columns_input} }) + /** update multiples rows of table: "utility_collections" */ + update_utility_collections_many?: (utility_collections_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: utility_collections_updates[]} }) + /** update data of the table: "utility_demo_mines" */ + update_utility_demo_mines?: (utility_demo_mines_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (utility_demo_mines_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (utility_demo_mines_set_input | null), + /** filter the rows which have to be updated */ + where: utility_demo_mines_bool_exp} }) + /** update single row of the table: "utility_demo_mines" */ + update_utility_demo_mines_by_pk?: (utility_demo_minesGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (utility_demo_mines_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (utility_demo_mines_set_input | null), pk_columns: utility_demo_mines_pk_columns_input} }) + /** update multiples rows of table: "utility_demo_mines" */ + update_utility_demo_mines_many?: (utility_demo_mines_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: utility_demo_mines_updates[]} }) + /** update data of the table: "utility_demo_throws" */ + update_utility_demo_throws?: (utility_demo_throws_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (utility_demo_throws_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (utility_demo_throws_set_input | null), + /** filter the rows which have to be updated */ + where: utility_demo_throws_bool_exp} }) + /** update single row of the table: "utility_demo_throws" */ + update_utility_demo_throws_by_pk?: (utility_demo_throwsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (utility_demo_throws_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (utility_demo_throws_set_input | null), pk_columns: utility_demo_throws_pk_columns_input} }) + /** update multiples rows of table: "utility_demo_throws" */ + update_utility_demo_throws_many?: (utility_demo_throws_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: utility_demo_throws_updates[]} }) + /** update data of the table: "utility_drift_results" */ + update_utility_drift_results?: (utility_drift_results_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (utility_drift_results_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (utility_drift_results_set_input | null), + /** filter the rows which have to be updated */ + where: utility_drift_results_bool_exp} }) + /** update single row of the table: "utility_drift_results" */ + update_utility_drift_results_by_pk?: (utility_drift_resultsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (utility_drift_results_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (utility_drift_results_set_input | null), pk_columns: utility_drift_results_pk_columns_input} }) + /** update multiples rows of table: "utility_drift_results" */ + update_utility_drift_results_many?: (utility_drift_results_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: utility_drift_results_updates[]} }) + /** update data of the table: "utility_drift_scans" */ + update_utility_drift_scans?: (utility_drift_scans_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (utility_drift_scans_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (utility_drift_scans_set_input | null), + /** filter the rows which have to be updated */ + where: utility_drift_scans_bool_exp} }) + /** update single row of the table: "utility_drift_scans" */ + update_utility_drift_scans_by_pk?: (utility_drift_scansGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (utility_drift_scans_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (utility_drift_scans_set_input | null), pk_columns: utility_drift_scans_pk_columns_input} }) + /** update multiples rows of table: "utility_drift_scans" */ + update_utility_drift_scans_many?: (utility_drift_scans_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: utility_drift_scans_updates[]} }) + /** update data of the table: "utility_lineup_favorites" */ + update_utility_lineup_favorites?: (utility_lineup_favorites_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (utility_lineup_favorites_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (utility_lineup_favorites_set_input | null), + /** filter the rows which have to be updated */ + where: utility_lineup_favorites_bool_exp} }) + /** update single row of the table: "utility_lineup_favorites" */ + update_utility_lineup_favorites_by_pk?: (utility_lineup_favoritesGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (utility_lineup_favorites_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (utility_lineup_favorites_set_input | null), pk_columns: utility_lineup_favorites_pk_columns_input} }) + /** update multiples rows of table: "utility_lineup_favorites" */ + update_utility_lineup_favorites_many?: (utility_lineup_favorites_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: utility_lineup_favorites_updates[]} }) + /** update data of the table: "utility_lineup_progress" */ + update_utility_lineup_progress?: (utility_lineup_progress_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (utility_lineup_progress_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (utility_lineup_progress_set_input | null), + /** filter the rows which have to be updated */ + where: utility_lineup_progress_bool_exp} }) + /** update single row of the table: "utility_lineup_progress" */ + update_utility_lineup_progress_by_pk?: (utility_lineup_progressGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (utility_lineup_progress_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (utility_lineup_progress_set_input | null), pk_columns: utility_lineup_progress_pk_columns_input} }) + /** update multiples rows of table: "utility_lineup_progress" */ + update_utility_lineup_progress_many?: (utility_lineup_progress_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: utility_lineup_progress_updates[]} }) + /** update data of the table: "utility_lineup_renders" */ + update_utility_lineup_renders?: (utility_lineup_renders_mutation_responseGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (utility_lineup_renders_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (utility_lineup_renders_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?: (utility_lineup_renders_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (utility_lineup_renders_delete_key_input | null), + /** increments the numeric columns with given value of the filtered values */ + _inc?: (utility_lineup_renders_inc_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (utility_lineup_renders_prepend_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (utility_lineup_renders_set_input | null), + /** filter the rows which have to be updated */ + where: utility_lineup_renders_bool_exp} }) + /** update single row of the table: "utility_lineup_renders" */ + update_utility_lineup_renders_by_pk?: (utility_lineup_rendersGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (utility_lineup_renders_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (utility_lineup_renders_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?: (utility_lineup_renders_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (utility_lineup_renders_delete_key_input | null), + /** increments the numeric columns with given value of the filtered values */ + _inc?: (utility_lineup_renders_inc_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (utility_lineup_renders_prepend_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (utility_lineup_renders_set_input | null), pk_columns: utility_lineup_renders_pk_columns_input} }) + /** update multiples rows of table: "utility_lineup_renders" */ + update_utility_lineup_renders_many?: (utility_lineup_renders_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: utility_lineup_renders_updates[]} }) + /** update data of the table: "utility_lineup_repairs" */ + update_utility_lineup_repairs?: (utility_lineup_repairs_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (utility_lineup_repairs_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (utility_lineup_repairs_set_input | null), + /** filter the rows which have to be updated */ + where: utility_lineup_repairs_bool_exp} }) + /** update single row of the table: "utility_lineup_repairs" */ + update_utility_lineup_repairs_by_pk?: (utility_lineup_repairsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (utility_lineup_repairs_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (utility_lineup_repairs_set_input | null), pk_columns: utility_lineup_repairs_pk_columns_input} }) + /** update multiples rows of table: "utility_lineup_repairs" */ + update_utility_lineup_repairs_many?: (utility_lineup_repairs_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: utility_lineup_repairs_updates[]} }) + /** update data of the table: "utility_lineup_votes" */ + update_utility_lineup_votes?: (utility_lineup_votes_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (utility_lineup_votes_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (utility_lineup_votes_set_input | null), + /** filter the rows which have to be updated */ + where: utility_lineup_votes_bool_exp} }) + /** update single row of the table: "utility_lineup_votes" */ + update_utility_lineup_votes_by_pk?: (utility_lineup_votesGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (utility_lineup_votes_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (utility_lineup_votes_set_input | null), pk_columns: utility_lineup_votes_pk_columns_input} }) + /** update multiples rows of table: "utility_lineup_votes" */ + update_utility_lineup_votes_many?: (utility_lineup_votes_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: utility_lineup_votes_updates[]} }) + /** update data of the table: "utility_lineups" */ + update_utility_lineups?: (utility_lineups_mutation_responseGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (utility_lineups_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (utility_lineups_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?: (utility_lineups_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (utility_lineups_delete_key_input | null), + /** increments the numeric columns with given value of the filtered values */ + _inc?: (utility_lineups_inc_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (utility_lineups_prepend_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (utility_lineups_set_input | null), + /** filter the rows which have to be updated */ + where: utility_lineups_bool_exp} }) + /** update single row of the table: "utility_lineups" */ + update_utility_lineups_by_pk?: (utility_lineupsGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (utility_lineups_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (utility_lineups_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?: (utility_lineups_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (utility_lineups_delete_key_input | null), + /** increments the numeric columns with given value of the filtered values */ + _inc?: (utility_lineups_inc_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (utility_lineups_prepend_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (utility_lineups_set_input | null), pk_columns: utility_lineups_pk_columns_input} }) + /** update multiples rows of table: "utility_lineups" */ + update_utility_lineups_many?: (utility_lineups_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: utility_lineups_updates[]} }) + /** update data of the table: "utility_meta_lineups" */ + update_utility_meta_lineups?: (utility_meta_lineups_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (utility_meta_lineups_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (utility_meta_lineups_set_input | null), + /** filter the rows which have to be updated */ + where: utility_meta_lineups_bool_exp} }) + /** update single row of the table: "utility_meta_lineups" */ + update_utility_meta_lineups_by_pk?: (utility_meta_lineupsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (utility_meta_lineups_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (utility_meta_lineups_set_input | null), pk_columns: utility_meta_lineups_pk_columns_input} }) + /** update multiples rows of table: "utility_meta_lineups" */ + update_utility_meta_lineups_many?: (utility_meta_lineups_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: utility_meta_lineups_updates[]} }) + /** update data of the table: "utility_playbook_steps" */ + update_utility_playbook_steps?: (utility_playbook_steps_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (utility_playbook_steps_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (utility_playbook_steps_set_input | null), + /** filter the rows which have to be updated */ + where: utility_playbook_steps_bool_exp} }) + /** update single row of the table: "utility_playbook_steps" */ + update_utility_playbook_steps_by_pk?: (utility_playbook_stepsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (utility_playbook_steps_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (utility_playbook_steps_set_input | null), pk_columns: utility_playbook_steps_pk_columns_input} }) + /** update multiples rows of table: "utility_playbook_steps" */ + update_utility_playbook_steps_many?: (utility_playbook_steps_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: utility_playbook_steps_updates[]} }) + /** update data of the table: "utility_playbooks" */ + update_utility_playbooks?: (utility_playbooks_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (utility_playbooks_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (utility_playbooks_set_input | null), + /** filter the rows which have to be updated */ + where: utility_playbooks_bool_exp} }) + /** update single row of the table: "utility_playbooks" */ + update_utility_playbooks_by_pk?: (utility_playbooksGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (utility_playbooks_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (utility_playbooks_set_input | null), pk_columns: utility_playbooks_pk_columns_input} }) + /** update multiples rows of table: "utility_playbooks" */ + update_utility_playbooks_many?: (utility_playbooks_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: utility_playbooks_updates[]} }) + /** update data of the table: "utility_practice_invites" */ + update_utility_practice_invites?: (utility_practice_invites_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (utility_practice_invites_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (utility_practice_invites_set_input | null), + /** filter the rows which have to be updated */ + where: utility_practice_invites_bool_exp} }) + /** update single row of the table: "utility_practice_invites" */ + update_utility_practice_invites_by_pk?: (utility_practice_invitesGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (utility_practice_invites_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (utility_practice_invites_set_input | null), pk_columns: utility_practice_invites_pk_columns_input} }) + /** update multiples rows of table: "utility_practice_invites" */ + update_utility_practice_invites_many?: (utility_practice_invites_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: utility_practice_invites_updates[]} }) + /** update data of the table: "utility_practice_sessions" */ + update_utility_practice_sessions?: (utility_practice_sessions_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (utility_practice_sessions_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (utility_practice_sessions_set_input | null), + /** filter the rows which have to be updated */ + where: utility_practice_sessions_bool_exp} }) + /** update single row of the table: "utility_practice_sessions" */ + update_utility_practice_sessions_by_pk?: (utility_practice_sessionsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (utility_practice_sessions_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (utility_practice_sessions_set_input | null), pk_columns: utility_practice_sessions_pk_columns_input} }) + /** update multiples rows of table: "utility_practice_sessions" */ + update_utility_practice_sessions_many?: (utility_practice_sessions_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: utility_practice_sessions_updates[]} }) + /** update data of the table: "v_match_captains" */ + update_v_match_captains?: (v_match_captains_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (v_match_captains_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (v_match_captains_set_input | null), + /** filter the rows which have to be updated */ + where: v_match_captains_bool_exp} }) + /** update multiples rows of table: "v_match_captains" */ + update_v_match_captains_many?: (v_match_captains_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: v_match_captains_updates[]} }) + /** update data of the table: "v_match_map_backup_rounds" */ + update_v_match_map_backup_rounds?: (v_match_map_backup_rounds_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (v_match_map_backup_rounds_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (v_match_map_backup_rounds_set_input | null), + /** filter the rows which have to be updated */ + where: v_match_map_backup_rounds_bool_exp} }) + /** update multiples rows of table: "v_match_map_backup_rounds" */ + update_v_match_map_backup_rounds_many?: (v_match_map_backup_rounds_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: v_match_map_backup_rounds_updates[]} }) + /** update data of the table: "v_player_match_map_hltv" */ + update_v_player_match_map_hltv?: (v_player_match_map_hltv_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (v_player_match_map_hltv_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (v_player_match_map_hltv_set_input | null), + /** filter the rows which have to be updated */ + where: v_player_match_map_hltv_bool_exp} }) + /** update multiples rows of table: "v_player_match_map_hltv" */ + update_v_player_match_map_hltv_many?: (v_player_match_map_hltv_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: v_player_match_map_hltv_updates[]} }) + /** update data of the table: "v_pool_maps" */ + update_v_pool_maps?: (v_pool_maps_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (v_pool_maps_set_input | null), + /** filter the rows which have to be updated */ + where: v_pool_maps_bool_exp} }) + /** update multiples rows of table: "v_pool_maps" */ + update_v_pool_maps_many?: (v_pool_maps_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: v_pool_maps_updates[]} }) + /** update data of the table: "v_team_stage_results" */ + update_v_team_stage_results?: (v_team_stage_results_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (v_team_stage_results_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (v_team_stage_results_set_input | null), + /** filter the rows which have to be updated */ + where: v_team_stage_results_bool_exp} }) + /** update single row of the table: "v_team_stage_results" */ + update_v_team_stage_results_by_pk?: (v_team_stage_resultsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (v_team_stage_results_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (v_team_stage_results_set_input | null), pk_columns: v_team_stage_results_pk_columns_input} }) + /** update multiples rows of table: "v_team_stage_results" */ + update_v_team_stage_results_many?: (v_team_stage_results_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: v_team_stage_results_updates[]} }) + /** Validate CS2 gamedata signatures/offsets on a node (5stack.gg test instance only) */ + validateGamedata?: (SuccessOutputGenqlSelection & { __args: {game_server_node_id: Scalars['uuid']} }) + /** Spawn a per-user game-streamer pod to play back a finished match's demo */ + watchDemo?: (WatchDemoOutputGenqlSelection & { __args: {match_map_demo_id?: (Scalars['uuid'] | null), match_map_id: Scalars['uuid']} }) + /** Write content to file on game server */ + writeServerFile?: (SuccessOutputGenqlSelection & { __args: {content: Scalars['String'], file_path: Scalars['String'], node_id: Scalars['String'], server_id?: (Scalars['String'] | null)} }) + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "v_my_friends" */ +export interface my_friendsGenqlSelection{ + avatar_url?: boolean | number + country?: boolean | number + created_at?: boolean | number + custom_avatar_url?: boolean | number + days_since_last_ban?: boolean | number + discord_id?: boolean | number + elo?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number + faceit_elo?: boolean | number + faceit_nickname?: boolean | number + faceit_player_id?: boolean | number + faceit_skill_level?: boolean | number + faceit_updated_at?: boolean | number + faceit_url?: boolean | number + friend_steam_id?: boolean | number + game_ban_count?: boolean | number + invited_by_steam_id?: boolean | number + language?: boolean | number + last_presence_state?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number + last_read_news_at?: boolean | number + last_sign_in_at?: boolean | number + name?: boolean | number + name_registered?: boolean | number + notification_timezone?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + premier_rank?: boolean | number + premier_rank_updated_at?: boolean | number + presence_updated_at?: boolean | number + profile_url?: boolean | number + quiet_hours_end?: boolean | number + quiet_hours_start?: boolean | number + role?: boolean | number + roster_image_url?: boolean | number + show_match_ready_modal?: boolean | number + status?: boolean | number + steam_bans_checked_at?: boolean | number + steam_id?: boolean | number + vac_ban_count?: boolean | number + vac_banned?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "v_my_friends" */ +export interface my_friends_aggregateGenqlSelection{ + aggregate?: my_friends_aggregate_fieldsGenqlSelection + nodes?: my_friendsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface my_friends_aggregate_bool_exp {bool_and?: (my_friends_aggregate_bool_exp_bool_and | null),bool_or?: (my_friends_aggregate_bool_exp_bool_or | null),count?: (my_friends_aggregate_bool_exp_count | null)} + +export interface my_friends_aggregate_bool_exp_bool_and {arguments: my_friends_select_column_my_friends_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (my_friends_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface my_friends_aggregate_bool_exp_bool_or {arguments: my_friends_select_column_my_friends_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (my_friends_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface my_friends_aggregate_bool_exp_count {arguments?: (my_friends_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (my_friends_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "v_my_friends" */ +export interface my_friends_aggregate_fieldsGenqlSelection{ + avg?: my_friends_avg_fieldsGenqlSelection + count?: { __args: {columns?: (my_friends_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: my_friends_max_fieldsGenqlSelection + min?: my_friends_min_fieldsGenqlSelection + stddev?: my_friends_stddev_fieldsGenqlSelection + stddev_pop?: my_friends_stddev_pop_fieldsGenqlSelection + stddev_samp?: my_friends_stddev_samp_fieldsGenqlSelection + sum?: my_friends_sum_fieldsGenqlSelection + var_pop?: my_friends_var_pop_fieldsGenqlSelection + var_samp?: my_friends_var_samp_fieldsGenqlSelection + variance?: my_friends_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "v_my_friends" */ +export interface my_friends_aggregate_order_by {avg?: (my_friends_avg_order_by | null),count?: (order_by | null),max?: (my_friends_max_order_by | null),min?: (my_friends_min_order_by | null),stddev?: (my_friends_stddev_order_by | null),stddev_pop?: (my_friends_stddev_pop_order_by | null),stddev_samp?: (my_friends_stddev_samp_order_by | null),sum?: (my_friends_sum_order_by | null),var_pop?: (my_friends_var_pop_order_by | null),var_samp?: (my_friends_var_samp_order_by | null),variance?: (my_friends_variance_order_by | null)} + + +/** append existing jsonb value of filtered columns with new jsonb value */ +export interface my_friends_append_input {elo?: (Scalars['jsonb'] | null),last_presence_state?: (Scalars['jsonb'] | null)} + + +/** input type for inserting array relation for remote table "v_my_friends" */ +export interface my_friends_arr_rel_insert_input {data: my_friends_insert_input[]} + + +/** aggregate avg on columns */ +export interface my_friends_avg_fieldsGenqlSelection{ + days_since_last_ban?: boolean | number + faceit_elo?: boolean | number + faceit_skill_level?: boolean | number + friend_steam_id?: boolean | number + game_ban_count?: boolean | number + invited_by_steam_id?: boolean | number + premier_rank?: boolean | number + steam_id?: boolean | number + vac_ban_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "v_my_friends" */ +export interface my_friends_avg_order_by {days_since_last_ban?: (order_by | null),faceit_elo?: (order_by | null),faceit_skill_level?: (order_by | null),friend_steam_id?: (order_by | null),game_ban_count?: (order_by | null),invited_by_steam_id?: (order_by | null),premier_rank?: (order_by | null),steam_id?: (order_by | null),vac_ban_count?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "v_my_friends". All fields are combined with a logical 'AND'. */ +export interface my_friends_bool_exp {_and?: (my_friends_bool_exp[] | null),_not?: (my_friends_bool_exp | null),_or?: (my_friends_bool_exp[] | null),avatar_url?: (String_comparison_exp | null),country?: (String_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),custom_avatar_url?: (String_comparison_exp | null),days_since_last_ban?: (Int_comparison_exp | null),discord_id?: (String_comparison_exp | null),elo?: (jsonb_comparison_exp | null),faceit_elo?: (Int_comparison_exp | null),faceit_nickname?: (String_comparison_exp | null),faceit_player_id?: (String_comparison_exp | null),faceit_skill_level?: (Int_comparison_exp | null),faceit_updated_at?: (timestamptz_comparison_exp | null),faceit_url?: (String_comparison_exp | null),friend_steam_id?: (bigint_comparison_exp | null),game_ban_count?: (Int_comparison_exp | null),invited_by_steam_id?: (bigint_comparison_exp | null),language?: (String_comparison_exp | null),last_presence_state?: (jsonb_comparison_exp | null),last_read_news_at?: (timestamptz_comparison_exp | null),last_sign_in_at?: (timestamptz_comparison_exp | null),name?: (String_comparison_exp | null),name_registered?: (Boolean_comparison_exp | null),notification_timezone?: (String_comparison_exp | null),player?: (players_bool_exp | null),premier_rank?: (Int_comparison_exp | null),premier_rank_updated_at?: (timestamptz_comparison_exp | null),presence_updated_at?: (timestamptz_comparison_exp | null),profile_url?: (String_comparison_exp | null),quiet_hours_end?: (time_comparison_exp | null),quiet_hours_start?: (time_comparison_exp | null),role?: (String_comparison_exp | null),roster_image_url?: (String_comparison_exp | null),show_match_ready_modal?: (Boolean_comparison_exp | null),status?: (String_comparison_exp | null),steam_bans_checked_at?: (timestamptz_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),vac_ban_count?: (Int_comparison_exp | null),vac_banned?: (Boolean_comparison_exp | null)} + + +/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ +export interface my_friends_delete_at_path_input {elo?: (Scalars['String'][] | null),last_presence_state?: (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 my_friends_delete_elem_input {elo?: (Scalars['Int'] | null),last_presence_state?: (Scalars['Int'] | null)} + + +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +export interface my_friends_delete_key_input {elo?: (Scalars['String'] | null),last_presence_state?: (Scalars['String'] | null)} + + +/** input type for incrementing numeric columns in table "v_my_friends" */ +export interface my_friends_inc_input {days_since_last_ban?: (Scalars['Int'] | null),faceit_elo?: (Scalars['Int'] | null),faceit_skill_level?: (Scalars['Int'] | null),friend_steam_id?: (Scalars['bigint'] | null),game_ban_count?: (Scalars['Int'] | null),invited_by_steam_id?: (Scalars['bigint'] | null),premier_rank?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null),vac_ban_count?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "v_my_friends" */ +export interface my_friends_insert_input {avatar_url?: (Scalars['String'] | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),custom_avatar_url?: (Scalars['String'] | null),days_since_last_ban?: (Scalars['Int'] | null),discord_id?: (Scalars['String'] | null),elo?: (Scalars['jsonb'] | null),faceit_elo?: (Scalars['Int'] | null),faceit_nickname?: (Scalars['String'] | null),faceit_player_id?: (Scalars['String'] | null),faceit_skill_level?: (Scalars['Int'] | null),faceit_updated_at?: (Scalars['timestamptz'] | null),faceit_url?: (Scalars['String'] | null),friend_steam_id?: (Scalars['bigint'] | null),game_ban_count?: (Scalars['Int'] | null),invited_by_steam_id?: (Scalars['bigint'] | null),language?: (Scalars['String'] | null),last_presence_state?: (Scalars['jsonb'] | null),last_read_news_at?: (Scalars['timestamptz'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),notification_timezone?: (Scalars['String'] | null),player?: (players_obj_rel_insert_input | null),premier_rank?: (Scalars['Int'] | null),premier_rank_updated_at?: (Scalars['timestamptz'] | null),presence_updated_at?: (Scalars['timestamptz'] | null),profile_url?: (Scalars['String'] | null),quiet_hours_end?: (Scalars['time'] | null),quiet_hours_start?: (Scalars['time'] | null),role?: (Scalars['String'] | null),roster_image_url?: (Scalars['String'] | null),show_match_ready_modal?: (Scalars['Boolean'] | null),status?: (Scalars['String'] | null),steam_bans_checked_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),vac_ban_count?: (Scalars['Int'] | null),vac_banned?: (Scalars['Boolean'] | null)} + + +/** aggregate max on columns */ +export interface my_friends_max_fieldsGenqlSelection{ + avatar_url?: boolean | number + country?: boolean | number + created_at?: boolean | number + custom_avatar_url?: boolean | number + days_since_last_ban?: boolean | number + discord_id?: boolean | number + faceit_elo?: boolean | number + faceit_nickname?: boolean | number + faceit_player_id?: boolean | number + faceit_skill_level?: boolean | number + faceit_updated_at?: boolean | number + faceit_url?: boolean | number + friend_steam_id?: boolean | number + game_ban_count?: boolean | number + invited_by_steam_id?: boolean | number + language?: boolean | number + last_read_news_at?: boolean | number + last_sign_in_at?: boolean | number + name?: boolean | number + notification_timezone?: boolean | number + premier_rank?: boolean | number + premier_rank_updated_at?: boolean | number + presence_updated_at?: boolean | number + profile_url?: boolean | number + role?: boolean | number + roster_image_url?: boolean | number + status?: boolean | number + steam_bans_checked_at?: boolean | number + steam_id?: boolean | number + vac_ban_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "v_my_friends" */ +export interface my_friends_max_order_by {avatar_url?: (order_by | null),country?: (order_by | null),created_at?: (order_by | null),custom_avatar_url?: (order_by | null),days_since_last_ban?: (order_by | null),discord_id?: (order_by | null),faceit_elo?: (order_by | null),faceit_nickname?: (order_by | null),faceit_player_id?: (order_by | null),faceit_skill_level?: (order_by | null),faceit_updated_at?: (order_by | null),faceit_url?: (order_by | null),friend_steam_id?: (order_by | null),game_ban_count?: (order_by | null),invited_by_steam_id?: (order_by | null),language?: (order_by | null),last_read_news_at?: (order_by | null),last_sign_in_at?: (order_by | null),name?: (order_by | null),notification_timezone?: (order_by | null),premier_rank?: (order_by | null),premier_rank_updated_at?: (order_by | null),presence_updated_at?: (order_by | null),profile_url?: (order_by | null),role?: (order_by | null),roster_image_url?: (order_by | null),status?: (order_by | null),steam_bans_checked_at?: (order_by | null),steam_id?: (order_by | null),vac_ban_count?: (order_by | null)} + + +/** aggregate min on columns */ +export interface my_friends_min_fieldsGenqlSelection{ + avatar_url?: boolean | number + country?: boolean | number + created_at?: boolean | number + custom_avatar_url?: boolean | number + days_since_last_ban?: boolean | number + discord_id?: boolean | number + faceit_elo?: boolean | number + faceit_nickname?: boolean | number + faceit_player_id?: boolean | number + faceit_skill_level?: boolean | number + faceit_updated_at?: boolean | number + faceit_url?: boolean | number + friend_steam_id?: boolean | number + game_ban_count?: boolean | number + invited_by_steam_id?: boolean | number + language?: boolean | number + last_read_news_at?: boolean | number + last_sign_in_at?: boolean | number + name?: boolean | number + notification_timezone?: boolean | number + premier_rank?: boolean | number + premier_rank_updated_at?: boolean | number + presence_updated_at?: boolean | number + profile_url?: boolean | number + role?: boolean | number + roster_image_url?: boolean | number + status?: boolean | number + steam_bans_checked_at?: boolean | number + steam_id?: boolean | number + vac_ban_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "v_my_friends" */ +export interface my_friends_min_order_by {avatar_url?: (order_by | null),country?: (order_by | null),created_at?: (order_by | null),custom_avatar_url?: (order_by | null),days_since_last_ban?: (order_by | null),discord_id?: (order_by | null),faceit_elo?: (order_by | null),faceit_nickname?: (order_by | null),faceit_player_id?: (order_by | null),faceit_skill_level?: (order_by | null),faceit_updated_at?: (order_by | null),faceit_url?: (order_by | null),friend_steam_id?: (order_by | null),game_ban_count?: (order_by | null),invited_by_steam_id?: (order_by | null),language?: (order_by | null),last_read_news_at?: (order_by | null),last_sign_in_at?: (order_by | null),name?: (order_by | null),notification_timezone?: (order_by | null),premier_rank?: (order_by | null),premier_rank_updated_at?: (order_by | null),presence_updated_at?: (order_by | null),profile_url?: (order_by | null),role?: (order_by | null),roster_image_url?: (order_by | null),status?: (order_by | null),steam_bans_checked_at?: (order_by | null),steam_id?: (order_by | null),vac_ban_count?: (order_by | null)} + + +/** response of any mutation on the table "v_my_friends" */ +export interface my_friends_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: my_friendsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Ordering options when selecting data from "v_my_friends". */ +export interface my_friends_order_by {avatar_url?: (order_by | null),country?: (order_by | null),created_at?: (order_by | null),custom_avatar_url?: (order_by | null),days_since_last_ban?: (order_by | null),discord_id?: (order_by | null),elo?: (order_by | null),faceit_elo?: (order_by | null),faceit_nickname?: (order_by | null),faceit_player_id?: (order_by | null),faceit_skill_level?: (order_by | null),faceit_updated_at?: (order_by | null),faceit_url?: (order_by | null),friend_steam_id?: (order_by | null),game_ban_count?: (order_by | null),invited_by_steam_id?: (order_by | null),language?: (order_by | null),last_presence_state?: (order_by | null),last_read_news_at?: (order_by | null),last_sign_in_at?: (order_by | null),name?: (order_by | null),name_registered?: (order_by | null),notification_timezone?: (order_by | null),player?: (players_order_by | null),premier_rank?: (order_by | null),premier_rank_updated_at?: (order_by | null),presence_updated_at?: (order_by | null),profile_url?: (order_by | null),quiet_hours_end?: (order_by | null),quiet_hours_start?: (order_by | null),role?: (order_by | null),roster_image_url?: (order_by | null),show_match_ready_modal?: (order_by | null),status?: (order_by | null),steam_bans_checked_at?: (order_by | null),steam_id?: (order_by | null),vac_ban_count?: (order_by | null),vac_banned?: (order_by | null)} + + +/** prepend existing jsonb value of filtered columns with new jsonb value */ +export interface my_friends_prepend_input {elo?: (Scalars['jsonb'] | null),last_presence_state?: (Scalars['jsonb'] | null)} + + +/** input type for updating data in table "v_my_friends" */ +export interface my_friends_set_input {avatar_url?: (Scalars['String'] | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),custom_avatar_url?: (Scalars['String'] | null),days_since_last_ban?: (Scalars['Int'] | null),discord_id?: (Scalars['String'] | null),elo?: (Scalars['jsonb'] | null),faceit_elo?: (Scalars['Int'] | null),faceit_nickname?: (Scalars['String'] | null),faceit_player_id?: (Scalars['String'] | null),faceit_skill_level?: (Scalars['Int'] | null),faceit_updated_at?: (Scalars['timestamptz'] | null),faceit_url?: (Scalars['String'] | null),friend_steam_id?: (Scalars['bigint'] | null),game_ban_count?: (Scalars['Int'] | null),invited_by_steam_id?: (Scalars['bigint'] | null),language?: (Scalars['String'] | null),last_presence_state?: (Scalars['jsonb'] | null),last_read_news_at?: (Scalars['timestamptz'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),notification_timezone?: (Scalars['String'] | null),premier_rank?: (Scalars['Int'] | null),premier_rank_updated_at?: (Scalars['timestamptz'] | null),presence_updated_at?: (Scalars['timestamptz'] | null),profile_url?: (Scalars['String'] | null),quiet_hours_end?: (Scalars['time'] | null),quiet_hours_start?: (Scalars['time'] | null),role?: (Scalars['String'] | null),roster_image_url?: (Scalars['String'] | null),show_match_ready_modal?: (Scalars['Boolean'] | null),status?: (Scalars['String'] | null),steam_bans_checked_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),vac_ban_count?: (Scalars['Int'] | null),vac_banned?: (Scalars['Boolean'] | null)} + + +/** aggregate stddev on columns */ +export interface my_friends_stddev_fieldsGenqlSelection{ + days_since_last_ban?: boolean | number + faceit_elo?: boolean | number + faceit_skill_level?: boolean | number + friend_steam_id?: boolean | number + game_ban_count?: boolean | number + invited_by_steam_id?: boolean | number + premier_rank?: boolean | number + steam_id?: boolean | number + vac_ban_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "v_my_friends" */ +export interface my_friends_stddev_order_by {days_since_last_ban?: (order_by | null),faceit_elo?: (order_by | null),faceit_skill_level?: (order_by | null),friend_steam_id?: (order_by | null),game_ban_count?: (order_by | null),invited_by_steam_id?: (order_by | null),premier_rank?: (order_by | null),steam_id?: (order_by | null),vac_ban_count?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface my_friends_stddev_pop_fieldsGenqlSelection{ + days_since_last_ban?: boolean | number + faceit_elo?: boolean | number + faceit_skill_level?: boolean | number + friend_steam_id?: boolean | number + game_ban_count?: boolean | number + invited_by_steam_id?: boolean | number + premier_rank?: boolean | number + steam_id?: boolean | number + vac_ban_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "v_my_friends" */ +export interface my_friends_stddev_pop_order_by {days_since_last_ban?: (order_by | null),faceit_elo?: (order_by | null),faceit_skill_level?: (order_by | null),friend_steam_id?: (order_by | null),game_ban_count?: (order_by | null),invited_by_steam_id?: (order_by | null),premier_rank?: (order_by | null),steam_id?: (order_by | null),vac_ban_count?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface my_friends_stddev_samp_fieldsGenqlSelection{ + days_since_last_ban?: boolean | number + faceit_elo?: boolean | number + faceit_skill_level?: boolean | number + friend_steam_id?: boolean | number + game_ban_count?: boolean | number + invited_by_steam_id?: boolean | number + premier_rank?: boolean | number + steam_id?: boolean | number + vac_ban_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "v_my_friends" */ +export interface my_friends_stddev_samp_order_by {days_since_last_ban?: (order_by | null),faceit_elo?: (order_by | null),faceit_skill_level?: (order_by | null),friend_steam_id?: (order_by | null),game_ban_count?: (order_by | null),invited_by_steam_id?: (order_by | null),premier_rank?: (order_by | null),steam_id?: (order_by | null),vac_ban_count?: (order_by | null)} + + +/** Streaming cursor of the table "my_friends" */ +export interface my_friends_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: my_friends_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface my_friends_stream_cursor_value_input {avatar_url?: (Scalars['String'] | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),custom_avatar_url?: (Scalars['String'] | null),days_since_last_ban?: (Scalars['Int'] | null),discord_id?: (Scalars['String'] | null),elo?: (Scalars['jsonb'] | null),faceit_elo?: (Scalars['Int'] | null),faceit_nickname?: (Scalars['String'] | null),faceit_player_id?: (Scalars['String'] | null),faceit_skill_level?: (Scalars['Int'] | null),faceit_updated_at?: (Scalars['timestamptz'] | null),faceit_url?: (Scalars['String'] | null),friend_steam_id?: (Scalars['bigint'] | null),game_ban_count?: (Scalars['Int'] | null),invited_by_steam_id?: (Scalars['bigint'] | null),language?: (Scalars['String'] | null),last_presence_state?: (Scalars['jsonb'] | null),last_read_news_at?: (Scalars['timestamptz'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),notification_timezone?: (Scalars['String'] | null),premier_rank?: (Scalars['Int'] | null),premier_rank_updated_at?: (Scalars['timestamptz'] | null),presence_updated_at?: (Scalars['timestamptz'] | null),profile_url?: (Scalars['String'] | null),quiet_hours_end?: (Scalars['time'] | null),quiet_hours_start?: (Scalars['time'] | null),role?: (Scalars['String'] | null),roster_image_url?: (Scalars['String'] | null),show_match_ready_modal?: (Scalars['Boolean'] | null),status?: (Scalars['String'] | null),steam_bans_checked_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),vac_ban_count?: (Scalars['Int'] | null),vac_banned?: (Scalars['Boolean'] | null)} + + +/** aggregate sum on columns */ +export interface my_friends_sum_fieldsGenqlSelection{ + days_since_last_ban?: boolean | number + faceit_elo?: boolean | number + faceit_skill_level?: boolean | number + friend_steam_id?: boolean | number + game_ban_count?: boolean | number + invited_by_steam_id?: boolean | number + premier_rank?: boolean | number + steam_id?: boolean | number + vac_ban_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "v_my_friends" */ +export interface my_friends_sum_order_by {days_since_last_ban?: (order_by | null),faceit_elo?: (order_by | null),faceit_skill_level?: (order_by | null),friend_steam_id?: (order_by | null),game_ban_count?: (order_by | null),invited_by_steam_id?: (order_by | null),premier_rank?: (order_by | null),steam_id?: (order_by | null),vac_ban_count?: (order_by | null)} + +export interface my_friends_updates { +/** append existing jsonb value of filtered columns with new jsonb value */ +_append?: (my_friends_append_input | null), +/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ +_delete_at_path?: (my_friends_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?: (my_friends_delete_elem_input | null), +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +_delete_key?: (my_friends_delete_key_input | null), +/** increments the numeric columns with given value of the filtered values */ +_inc?: (my_friends_inc_input | null), +/** prepend existing jsonb value of filtered columns with new jsonb value */ +_prepend?: (my_friends_prepend_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (my_friends_set_input | null), +/** filter the rows which have to be updated */ +where: my_friends_bool_exp} + + +/** aggregate var_pop on columns */ +export interface my_friends_var_pop_fieldsGenqlSelection{ + days_since_last_ban?: boolean | number + faceit_elo?: boolean | number + faceit_skill_level?: boolean | number + friend_steam_id?: boolean | number + game_ban_count?: boolean | number + invited_by_steam_id?: boolean | number + premier_rank?: boolean | number + steam_id?: boolean | number + vac_ban_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "v_my_friends" */ +export interface my_friends_var_pop_order_by {days_since_last_ban?: (order_by | null),faceit_elo?: (order_by | null),faceit_skill_level?: (order_by | null),friend_steam_id?: (order_by | null),game_ban_count?: (order_by | null),invited_by_steam_id?: (order_by | null),premier_rank?: (order_by | null),steam_id?: (order_by | null),vac_ban_count?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface my_friends_var_samp_fieldsGenqlSelection{ + days_since_last_ban?: boolean | number + faceit_elo?: boolean | number + faceit_skill_level?: boolean | number + friend_steam_id?: boolean | number + game_ban_count?: boolean | number + invited_by_steam_id?: boolean | number + premier_rank?: boolean | number + steam_id?: boolean | number + vac_ban_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "v_my_friends" */ +export interface my_friends_var_samp_order_by {days_since_last_ban?: (order_by | null),faceit_elo?: (order_by | null),faceit_skill_level?: (order_by | null),friend_steam_id?: (order_by | null),game_ban_count?: (order_by | null),invited_by_steam_id?: (order_by | null),premier_rank?: (order_by | null),steam_id?: (order_by | null),vac_ban_count?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface my_friends_variance_fieldsGenqlSelection{ + days_since_last_ban?: boolean | number + faceit_elo?: boolean | number + faceit_skill_level?: boolean | number + friend_steam_id?: boolean | number + game_ban_count?: boolean | number + invited_by_steam_id?: boolean | number + premier_rank?: boolean | number + steam_id?: boolean | number + vac_ban_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "v_my_friends" */ +export interface my_friends_variance_order_by {days_since_last_ban?: (order_by | null),faceit_elo?: (order_by | null),faceit_skill_level?: (order_by | null),friend_steam_id?: (order_by | null),game_ban_count?: (order_by | null),invited_by_steam_id?: (order_by | null),premier_rank?: (order_by | null),steam_id?: (order_by | null),vac_ban_count?: (order_by | null)} + + +/** columns and relationships of "news_articles" */ +export interface news_articlesGenqlSelection{ + /** An object relationship */ + author?: playersGenqlSelection + 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 +} + + +/** aggregated selection of "news_articles" */ +export interface news_articles_aggregateGenqlSelection{ + aggregate?: news_articles_aggregate_fieldsGenqlSelection + nodes?: news_articlesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "news_articles" */ +export interface news_articles_aggregate_fieldsGenqlSelection{ + avg?: news_articles_avg_fieldsGenqlSelection + count?: { __args: {columns?: (news_articles_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: news_articles_max_fieldsGenqlSelection + min?: news_articles_min_fieldsGenqlSelection + stddev?: news_articles_stddev_fieldsGenqlSelection + stddev_pop?: news_articles_stddev_pop_fieldsGenqlSelection + stddev_samp?: news_articles_stddev_samp_fieldsGenqlSelection + sum?: news_articles_sum_fieldsGenqlSelection + var_pop?: news_articles_var_pop_fieldsGenqlSelection + var_samp?: news_articles_var_samp_fieldsGenqlSelection + variance?: news_articles_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface news_articles_avg_fieldsGenqlSelection{ + author_steam_id?: boolean | number + view_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "news_articles". All fields are combined with a logical 'AND'. */ +export interface news_articles_bool_exp {_and?: (news_articles_bool_exp[] | null),_not?: (news_articles_bool_exp | null),_or?: (news_articles_bool_exp[] | null),author?: (players_bool_exp | null),author_steam_id?: (bigint_comparison_exp | null),content_markdown?: (String_comparison_exp | null),cover_image_url?: (String_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),published_at?: (timestamptz_comparison_exp | null),slug?: (String_comparison_exp | null),status?: (String_comparison_exp | null),teaser?: (String_comparison_exp | null),title?: (String_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null),view_count?: (bigint_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "news_articles" */ +export interface news_articles_inc_input {author_steam_id?: (Scalars['bigint'] | null),view_count?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "news_articles" */ +export interface news_articles_insert_input {author?: (players_obj_rel_insert_input | null),author_steam_id?: (Scalars['bigint'] | null),content_markdown?: (Scalars['String'] | null),cover_image_url?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),published_at?: (Scalars['timestamptz'] | null),slug?: (Scalars['String'] | null),status?: (Scalars['String'] | null),teaser?: (Scalars['String'] | null),title?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null),view_count?: (Scalars['bigint'] | null)} + + +/** aggregate max on columns */ +export interface news_articles_max_fieldsGenqlSelection{ + author_steam_id?: boolean | number + content_markdown?: boolean | number + cover_image_url?: boolean | number + created_at?: boolean | number + id?: boolean | number + published_at?: boolean | number + slug?: boolean | number + status?: boolean | number + teaser?: boolean | number + title?: boolean | number + updated_at?: boolean | number + view_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface news_articles_min_fieldsGenqlSelection{ + 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 +} + + +/** response of any mutation on the table "news_articles" */ +export interface news_articles_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: news_articlesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "news_articles" */ +export interface news_articles_on_conflict {constraint: news_articles_constraint,update_columns?: news_articles_update_column[],where?: (news_articles_bool_exp | null)} + + +/** Ordering options when selecting data from "news_articles". */ +export interface news_articles_order_by {author?: (players_order_by | null),author_steam_id?: (order_by | null),content_markdown?: (order_by | null),cover_image_url?: (order_by | null),created_at?: (order_by | null),id?: (order_by | null),published_at?: (order_by | null),slug?: (order_by | null),status?: (order_by | null),teaser?: (order_by | null),title?: (order_by | null),updated_at?: (order_by | null),view_count?: (order_by | null)} + + +/** primary key columns input for table: news_articles */ +export interface news_articles_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "news_articles" */ +export interface news_articles_set_input {author_steam_id?: (Scalars['bigint'] | null),content_markdown?: (Scalars['String'] | null),cover_image_url?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),published_at?: (Scalars['timestamptz'] | null),slug?: (Scalars['String'] | null),status?: (Scalars['String'] | null),teaser?: (Scalars['String'] | null),title?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null),view_count?: (Scalars['bigint'] | null)} + + +/** aggregate stddev on columns */ +export interface news_articles_stddev_fieldsGenqlSelection{ + author_steam_id?: boolean | number + view_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface news_articles_stddev_pop_fieldsGenqlSelection{ + author_steam_id?: boolean | number + view_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface news_articles_stddev_samp_fieldsGenqlSelection{ + author_steam_id?: boolean | number + view_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "news_articles" */ +export interface news_articles_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: news_articles_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface news_articles_stream_cursor_value_input {author_steam_id?: (Scalars['bigint'] | null),content_markdown?: (Scalars['String'] | null),cover_image_url?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),published_at?: (Scalars['timestamptz'] | null),slug?: (Scalars['String'] | null),status?: (Scalars['String'] | null),teaser?: (Scalars['String'] | null),title?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null),view_count?: (Scalars['bigint'] | null)} + + +/** aggregate sum on columns */ +export interface news_articles_sum_fieldsGenqlSelection{ + author_steam_id?: boolean | number + view_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface news_articles_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (news_articles_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (news_articles_set_input | null), +/** filter the rows which have to be updated */ +where: news_articles_bool_exp} + + +/** aggregate var_pop on columns */ +export interface news_articles_var_pop_fieldsGenqlSelection{ + author_steam_id?: boolean | number + view_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface news_articles_var_samp_fieldsGenqlSelection{ + author_steam_id?: boolean | number + view_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface news_articles_variance_fieldsGenqlSelection{ + author_steam_id?: boolean | number + view_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "notification_preferences" */ +export interface notification_preferencesGenqlSelection{ + channel?: boolean | number + enabled?: boolean | number + key?: boolean | number + steam_id?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "notification_preferences" */ +export interface notification_preferences_aggregateGenqlSelection{ + aggregate?: notification_preferences_aggregate_fieldsGenqlSelection + nodes?: notification_preferencesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "notification_preferences" */ +export interface notification_preferences_aggregate_fieldsGenqlSelection{ + avg?: notification_preferences_avg_fieldsGenqlSelection + count?: { __args: {columns?: (notification_preferences_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: notification_preferences_max_fieldsGenqlSelection + min?: notification_preferences_min_fieldsGenqlSelection + stddev?: notification_preferences_stddev_fieldsGenqlSelection + stddev_pop?: notification_preferences_stddev_pop_fieldsGenqlSelection + stddev_samp?: notification_preferences_stddev_samp_fieldsGenqlSelection + sum?: notification_preferences_sum_fieldsGenqlSelection + var_pop?: notification_preferences_var_pop_fieldsGenqlSelection + var_samp?: notification_preferences_var_samp_fieldsGenqlSelection + variance?: notification_preferences_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface notification_preferences_avg_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "notification_preferences". All fields are combined with a logical 'AND'. */ +export interface notification_preferences_bool_exp {_and?: (notification_preferences_bool_exp[] | null),_not?: (notification_preferences_bool_exp | null),_or?: (notification_preferences_bool_exp[] | null),channel?: (String_comparison_exp | null),enabled?: (Boolean_comparison_exp | null),key?: (String_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "notification_preferences" */ +export interface notification_preferences_inc_input {steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "notification_preferences" */ +export interface notification_preferences_insert_input {channel?: (Scalars['String'] | null),enabled?: (Scalars['Boolean'] | null),key?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate max on columns */ +export interface notification_preferences_max_fieldsGenqlSelection{ + channel?: boolean | number + key?: boolean | number + steam_id?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface notification_preferences_min_fieldsGenqlSelection{ + channel?: boolean | number + key?: boolean | number + steam_id?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "notification_preferences" */ +export interface notification_preferences_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: notification_preferencesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "notification_preferences" */ +export interface notification_preferences_on_conflict {constraint: notification_preferences_constraint,update_columns?: notification_preferences_update_column[],where?: (notification_preferences_bool_exp | null)} + + +/** Ordering options when selecting data from "notification_preferences". */ +export interface notification_preferences_order_by {channel?: (order_by | null),enabled?: (order_by | null),key?: (order_by | null),steam_id?: (order_by | null),updated_at?: (order_by | null)} + + +/** primary key columns input for table: notification_preferences */ +export interface notification_preferences_pk_columns_input {channel: Scalars['String'],key: Scalars['String'],steam_id: Scalars['bigint']} + + +/** input type for updating data in table "notification_preferences" */ +export interface notification_preferences_set_input {channel?: (Scalars['String'] | null),enabled?: (Scalars['Boolean'] | null),key?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate stddev on columns */ +export interface notification_preferences_stddev_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface notification_preferences_stddev_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface notification_preferences_stddev_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "notification_preferences" */ +export interface notification_preferences_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: notification_preferences_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface notification_preferences_stream_cursor_value_input {channel?: (Scalars['String'] | null),enabled?: (Scalars['Boolean'] | null),key?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate sum on columns */ +export interface notification_preferences_sum_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface notification_preferences_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (notification_preferences_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (notification_preferences_set_input | null), +/** filter the rows which have to be updated */ +where: notification_preferences_bool_exp} + + +/** aggregate var_pop on columns */ +export interface notification_preferences_var_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface notification_preferences_var_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface notification_preferences_variance_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "notifications" */ +export interface notificationsGenqlSelection{ + actions?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number + created_at?: boolean | number + data?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number + deletable?: boolean | number + deleted_at?: boolean | number + entity_id?: boolean | number + id?: boolean | number + in_app?: boolean | number + is_read?: boolean | number + message?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + role?: boolean | number + steam_id?: boolean | number + title?: boolean | number + type?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "notifications" */ +export interface notifications_aggregateGenqlSelection{ + aggregate?: notifications_aggregate_fieldsGenqlSelection + nodes?: notificationsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface notifications_aggregate_bool_exp {bool_and?: (notifications_aggregate_bool_exp_bool_and | null),bool_or?: (notifications_aggregate_bool_exp_bool_or | null),count?: (notifications_aggregate_bool_exp_count | null)} + +export interface notifications_aggregate_bool_exp_bool_and {arguments: notifications_select_column_notifications_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (notifications_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface notifications_aggregate_bool_exp_bool_or {arguments: notifications_select_column_notifications_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (notifications_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface notifications_aggregate_bool_exp_count {arguments?: (notifications_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (notifications_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "notifications" */ +export interface notifications_aggregate_fieldsGenqlSelection{ + avg?: notifications_avg_fieldsGenqlSelection + count?: { __args: {columns?: (notifications_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: notifications_max_fieldsGenqlSelection + min?: notifications_min_fieldsGenqlSelection + stddev?: notifications_stddev_fieldsGenqlSelection + stddev_pop?: notifications_stddev_pop_fieldsGenqlSelection + stddev_samp?: notifications_stddev_samp_fieldsGenqlSelection + sum?: notifications_sum_fieldsGenqlSelection + var_pop?: notifications_var_pop_fieldsGenqlSelection + var_samp?: notifications_var_samp_fieldsGenqlSelection + variance?: notifications_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "notifications" */ +export interface notifications_aggregate_order_by {avg?: (notifications_avg_order_by | null),count?: (order_by | null),max?: (notifications_max_order_by | null),min?: (notifications_min_order_by | null),stddev?: (notifications_stddev_order_by | null),stddev_pop?: (notifications_stddev_pop_order_by | null),stddev_samp?: (notifications_stddev_samp_order_by | null),sum?: (notifications_sum_order_by | null),var_pop?: (notifications_var_pop_order_by | null),var_samp?: (notifications_var_samp_order_by | null),variance?: (notifications_variance_order_by | null)} + + +/** append existing jsonb value of filtered columns with new jsonb value */ +export interface notifications_append_input {actions?: (Scalars['jsonb'] | null),data?: (Scalars['jsonb'] | null)} + + +/** input type for inserting array relation for remote table "notifications" */ +export interface notifications_arr_rel_insert_input {data: notifications_insert_input[], +/** upsert condition */ +on_conflict?: (notifications_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface notifications_avg_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "notifications" */ +export interface notifications_avg_order_by {steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "notifications". All fields are combined with a logical 'AND'. */ +export interface notifications_bool_exp {_and?: (notifications_bool_exp[] | null),_not?: (notifications_bool_exp | null),_or?: (notifications_bool_exp[] | null),actions?: (jsonb_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),data?: (jsonb_comparison_exp | null),deletable?: (Boolean_comparison_exp | null),deleted_at?: (timestamptz_comparison_exp | null),entity_id?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),in_app?: (Boolean_comparison_exp | null),is_read?: (Boolean_comparison_exp | null),message?: (String_comparison_exp | null),player?: (players_bool_exp | null),role?: (e_player_roles_enum_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),title?: (String_comparison_exp | null),type?: (e_notification_types_enum_comparison_exp | null)} + + +/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ +export interface notifications_delete_at_path_input {actions?: (Scalars['String'][] | null),data?: (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 notifications_delete_elem_input {actions?: (Scalars['Int'] | null),data?: (Scalars['Int'] | null)} + + +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +export interface notifications_delete_key_input {actions?: (Scalars['String'] | null),data?: (Scalars['String'] | null)} + + +/** input type for incrementing numeric columns in table "notifications" */ +export interface notifications_inc_input {steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "notifications" */ +export interface notifications_insert_input {actions?: (Scalars['jsonb'] | null),created_at?: (Scalars['timestamptz'] | null),data?: (Scalars['jsonb'] | null),deletable?: (Scalars['Boolean'] | null),deleted_at?: (Scalars['timestamptz'] | null),entity_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),in_app?: (Scalars['Boolean'] | null),is_read?: (Scalars['Boolean'] | null),message?: (Scalars['String'] | null),player?: (players_obj_rel_insert_input | null),role?: (e_player_roles_enum | null),steam_id?: (Scalars['bigint'] | null),title?: (Scalars['String'] | null),type?: (e_notification_types_enum | null)} + + +/** aggregate max on columns */ +export interface notifications_max_fieldsGenqlSelection{ + created_at?: boolean | number + deleted_at?: boolean | number + entity_id?: boolean | number + id?: boolean | number + message?: boolean | number + steam_id?: boolean | number + title?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "notifications" */ +export interface notifications_max_order_by {created_at?: (order_by | null),deleted_at?: (order_by | null),entity_id?: (order_by | null),id?: (order_by | null),message?: (order_by | null),steam_id?: (order_by | null),title?: (order_by | null)} + + +/** aggregate min on columns */ +export interface notifications_min_fieldsGenqlSelection{ + created_at?: boolean | number + deleted_at?: boolean | number + entity_id?: boolean | number + id?: boolean | number + message?: boolean | number + steam_id?: boolean | number + title?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "notifications" */ +export interface notifications_min_order_by {created_at?: (order_by | null),deleted_at?: (order_by | null),entity_id?: (order_by | null),id?: (order_by | null),message?: (order_by | null),steam_id?: (order_by | null),title?: (order_by | null)} + + +/** response of any mutation on the table "notifications" */ +export interface notifications_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: notificationsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "notifications" */ +export interface notifications_on_conflict {constraint: notifications_constraint,update_columns?: notifications_update_column[],where?: (notifications_bool_exp | null)} + + +/** Ordering options when selecting data from "notifications". */ +export interface notifications_order_by {actions?: (order_by | null),created_at?: (order_by | null),data?: (order_by | null),deletable?: (order_by | null),deleted_at?: (order_by | null),entity_id?: (order_by | null),id?: (order_by | null),in_app?: (order_by | null),is_read?: (order_by | null),message?: (order_by | null),player?: (players_order_by | null),role?: (order_by | null),steam_id?: (order_by | null),title?: (order_by | null),type?: (order_by | null)} + + +/** primary key columns input for table: notifications */ +export interface notifications_pk_columns_input {id: Scalars['uuid']} + + +/** prepend existing jsonb value of filtered columns with new jsonb value */ +export interface notifications_prepend_input {actions?: (Scalars['jsonb'] | null),data?: (Scalars['jsonb'] | null)} + + +/** input type for updating data in table "notifications" */ +export interface notifications_set_input {actions?: (Scalars['jsonb'] | null),created_at?: (Scalars['timestamptz'] | null),data?: (Scalars['jsonb'] | null),deletable?: (Scalars['Boolean'] | null),deleted_at?: (Scalars['timestamptz'] | null),entity_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),in_app?: (Scalars['Boolean'] | null),is_read?: (Scalars['Boolean'] | null),message?: (Scalars['String'] | null),role?: (e_player_roles_enum | null),steam_id?: (Scalars['bigint'] | null),title?: (Scalars['String'] | null),type?: (e_notification_types_enum | null)} + + +/** aggregate stddev on columns */ +export interface notifications_stddev_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "notifications" */ +export interface notifications_stddev_order_by {steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface notifications_stddev_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "notifications" */ +export interface notifications_stddev_pop_order_by {steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface notifications_stddev_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "notifications" */ +export interface notifications_stddev_samp_order_by {steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "notifications" */ +export interface notifications_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: notifications_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface notifications_stream_cursor_value_input {actions?: (Scalars['jsonb'] | null),created_at?: (Scalars['timestamptz'] | null),data?: (Scalars['jsonb'] | null),deletable?: (Scalars['Boolean'] | null),deleted_at?: (Scalars['timestamptz'] | null),entity_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),in_app?: (Scalars['Boolean'] | null),is_read?: (Scalars['Boolean'] | null),message?: (Scalars['String'] | null),role?: (e_player_roles_enum | null),steam_id?: (Scalars['bigint'] | null),title?: (Scalars['String'] | null),type?: (e_notification_types_enum | null)} + + +/** aggregate sum on columns */ +export interface notifications_sum_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "notifications" */ +export interface notifications_sum_order_by {steam_id?: (order_by | null)} + +export interface notifications_updates { +/** append existing jsonb value of filtered columns with new jsonb value */ +_append?: (notifications_append_input | null), +/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ +_delete_at_path?: (notifications_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?: (notifications_delete_elem_input | null), +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +_delete_key?: (notifications_delete_key_input | null), +/** increments the numeric columns with given value of the filtered values */ +_inc?: (notifications_inc_input | null), +/** prepend existing jsonb value of filtered columns with new jsonb value */ +_prepend?: (notifications_prepend_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (notifications_set_input | null), +/** filter the rows which have to be updated */ +where: notifications_bool_exp} + + +/** aggregate var_pop on columns */ +export interface notifications_var_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "notifications" */ +export interface notifications_var_pop_order_by {steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface notifications_var_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "notifications" */ +export interface notifications_var_samp_order_by {steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface notifications_variance_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "notifications" */ +export interface notifications_variance_order_by {steam_id?: (order_by | null)} + + +/** Boolean expression to compare columns of type "numeric". All fields are combined with logical 'AND'. */ +export interface numeric_comparison_exp {_eq?: (Scalars['numeric'] | null),_gt?: (Scalars['numeric'] | null),_gte?: (Scalars['numeric'] | null),_in?: (Scalars['numeric'][] | null),_is_null?: (Scalars['Boolean'] | null),_lt?: (Scalars['numeric'] | null),_lte?: (Scalars['numeric'] | null),_neq?: (Scalars['numeric'] | null),_nin?: (Scalars['numeric'][] | null)} + + +/** columns and relationships of "pending_match_import_players" */ +export interface pending_match_import_playersGenqlSelection{ + created_at?: boolean | number + /** An object relationship */ + pending_match_import?: pending_match_importsGenqlSelection + /** An object relationship */ + player?: playersGenqlSelection + steam_id?: boolean | number + valve_match_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "pending_match_import_players" */ +export interface pending_match_import_players_aggregateGenqlSelection{ + aggregate?: pending_match_import_players_aggregate_fieldsGenqlSelection + nodes?: pending_match_import_playersGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface pending_match_import_players_aggregate_bool_exp {count?: (pending_match_import_players_aggregate_bool_exp_count | null)} + +export interface pending_match_import_players_aggregate_bool_exp_count {arguments?: (pending_match_import_players_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (pending_match_import_players_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "pending_match_import_players" */ +export interface pending_match_import_players_aggregate_fieldsGenqlSelection{ + avg?: pending_match_import_players_avg_fieldsGenqlSelection + count?: { __args: {columns?: (pending_match_import_players_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: pending_match_import_players_max_fieldsGenqlSelection + min?: pending_match_import_players_min_fieldsGenqlSelection + stddev?: pending_match_import_players_stddev_fieldsGenqlSelection + stddev_pop?: pending_match_import_players_stddev_pop_fieldsGenqlSelection + stddev_samp?: pending_match_import_players_stddev_samp_fieldsGenqlSelection + sum?: pending_match_import_players_sum_fieldsGenqlSelection + var_pop?: pending_match_import_players_var_pop_fieldsGenqlSelection + var_samp?: pending_match_import_players_var_samp_fieldsGenqlSelection + variance?: pending_match_import_players_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "pending_match_import_players" */ +export interface pending_match_import_players_aggregate_order_by {avg?: (pending_match_import_players_avg_order_by | null),count?: (order_by | null),max?: (pending_match_import_players_max_order_by | null),min?: (pending_match_import_players_min_order_by | null),stddev?: (pending_match_import_players_stddev_order_by | null),stddev_pop?: (pending_match_import_players_stddev_pop_order_by | null),stddev_samp?: (pending_match_import_players_stddev_samp_order_by | null),sum?: (pending_match_import_players_sum_order_by | null),var_pop?: (pending_match_import_players_var_pop_order_by | null),var_samp?: (pending_match_import_players_var_samp_order_by | null),variance?: (pending_match_import_players_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "pending_match_import_players" */ +export interface pending_match_import_players_arr_rel_insert_input {data: pending_match_import_players_insert_input[], +/** upsert condition */ +on_conflict?: (pending_match_import_players_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface pending_match_import_players_avg_fieldsGenqlSelection{ + steam_id?: boolean | number + valve_match_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "pending_match_import_players" */ +export interface pending_match_import_players_avg_order_by {steam_id?: (order_by | null),valve_match_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "pending_match_import_players". All fields are combined with a logical 'AND'. */ +export interface pending_match_import_players_bool_exp {_and?: (pending_match_import_players_bool_exp[] | null),_not?: (pending_match_import_players_bool_exp | null),_or?: (pending_match_import_players_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),pending_match_import?: (pending_match_imports_bool_exp | null),player?: (players_bool_exp | null),steam_id?: (bigint_comparison_exp | null),valve_match_id?: (numeric_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "pending_match_import_players" */ +export interface pending_match_import_players_inc_input {steam_id?: (Scalars['bigint'] | null),valve_match_id?: (Scalars['numeric'] | null)} + + +/** input type for inserting data into table "pending_match_import_players" */ +export interface pending_match_import_players_insert_input {created_at?: (Scalars['timestamptz'] | null),pending_match_import?: (pending_match_imports_obj_rel_insert_input | null),player?: (players_obj_rel_insert_input | null),steam_id?: (Scalars['bigint'] | null),valve_match_id?: (Scalars['numeric'] | null)} + + +/** aggregate max on columns */ +export interface pending_match_import_players_max_fieldsGenqlSelection{ + created_at?: boolean | number + steam_id?: boolean | number + valve_match_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "pending_match_import_players" */ +export interface pending_match_import_players_max_order_by {created_at?: (order_by | null),steam_id?: (order_by | null),valve_match_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface pending_match_import_players_min_fieldsGenqlSelection{ + created_at?: boolean | number + steam_id?: boolean | number + valve_match_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "pending_match_import_players" */ +export interface pending_match_import_players_min_order_by {created_at?: (order_by | null),steam_id?: (order_by | null),valve_match_id?: (order_by | null)} + + +/** response of any mutation on the table "pending_match_import_players" */ +export interface pending_match_import_players_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: pending_match_import_playersGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "pending_match_import_players" */ +export interface pending_match_import_players_on_conflict {constraint: pending_match_import_players_constraint,update_columns?: pending_match_import_players_update_column[],where?: (pending_match_import_players_bool_exp | null)} + + +/** Ordering options when selecting data from "pending_match_import_players". */ +export interface pending_match_import_players_order_by {created_at?: (order_by | null),pending_match_import?: (pending_match_imports_order_by | null),player?: (players_order_by | null),steam_id?: (order_by | null),valve_match_id?: (order_by | null)} + + +/** primary key columns input for table: pending_match_import_players */ +export interface pending_match_import_players_pk_columns_input {steam_id: Scalars['bigint'],valve_match_id: Scalars['numeric']} + + +/** input type for updating data in table "pending_match_import_players" */ +export interface pending_match_import_players_set_input {created_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),valve_match_id?: (Scalars['numeric'] | null)} + + +/** aggregate stddev on columns */ +export interface pending_match_import_players_stddev_fieldsGenqlSelection{ + steam_id?: boolean | number + valve_match_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "pending_match_import_players" */ +export interface pending_match_import_players_stddev_order_by {steam_id?: (order_by | null),valve_match_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface pending_match_import_players_stddev_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + valve_match_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "pending_match_import_players" */ +export interface pending_match_import_players_stddev_pop_order_by {steam_id?: (order_by | null),valve_match_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface pending_match_import_players_stddev_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + valve_match_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "pending_match_import_players" */ +export interface pending_match_import_players_stddev_samp_order_by {steam_id?: (order_by | null),valve_match_id?: (order_by | null)} + + +/** Streaming cursor of the table "pending_match_import_players" */ +export interface pending_match_import_players_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: pending_match_import_players_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface pending_match_import_players_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),valve_match_id?: (Scalars['numeric'] | null)} + + +/** aggregate sum on columns */ +export interface pending_match_import_players_sum_fieldsGenqlSelection{ + steam_id?: boolean | number + valve_match_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "pending_match_import_players" */ +export interface pending_match_import_players_sum_order_by {steam_id?: (order_by | null),valve_match_id?: (order_by | null)} + +export interface pending_match_import_players_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (pending_match_import_players_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (pending_match_import_players_set_input | null), +/** filter the rows which have to be updated */ +where: pending_match_import_players_bool_exp} + + +/** aggregate var_pop on columns */ +export interface pending_match_import_players_var_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + valve_match_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "pending_match_import_players" */ +export interface pending_match_import_players_var_pop_order_by {steam_id?: (order_by | null),valve_match_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface pending_match_import_players_var_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + valve_match_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "pending_match_import_players" */ +export interface pending_match_import_players_var_samp_order_by {steam_id?: (order_by | null),valve_match_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface pending_match_import_players_variance_fieldsGenqlSelection{ + steam_id?: boolean | number + valve_match_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "pending_match_import_players" */ +export interface pending_match_import_players_variance_order_by {steam_id?: (order_by | null),valve_match_id?: (order_by | null)} + + +/** columns and relationships of "pending_match_imports" */ +export interface pending_match_importsGenqlSelection{ + created_at?: boolean | number + demo_url?: boolean | number + error?: boolean | number + map_name?: boolean | number + match_start_time?: boolean | number + /** An array relationship */ + players?: (pending_match_import_playersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (pending_match_import_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?: (pending_match_import_players_order_by[] | null), + /** filter the rows returned */ + where?: (pending_match_import_players_bool_exp | null)} }) + /** An aggregate relationship */ + players_aggregate?: (pending_match_import_players_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (pending_match_import_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?: (pending_match_import_players_order_by[] | null), + /** filter the rows returned */ + where?: (pending_match_import_players_bool_exp | null)} }) + share_code?: boolean | number + status?: boolean | number + updated_at?: boolean | number + valve_match_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "pending_match_imports" */ +export interface pending_match_imports_aggregateGenqlSelection{ + aggregate?: pending_match_imports_aggregate_fieldsGenqlSelection + nodes?: pending_match_importsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "pending_match_imports" */ +export interface pending_match_imports_aggregate_fieldsGenqlSelection{ + avg?: pending_match_imports_avg_fieldsGenqlSelection + count?: { __args: {columns?: (pending_match_imports_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: pending_match_imports_max_fieldsGenqlSelection + min?: pending_match_imports_min_fieldsGenqlSelection + stddev?: pending_match_imports_stddev_fieldsGenqlSelection + stddev_pop?: pending_match_imports_stddev_pop_fieldsGenqlSelection + stddev_samp?: pending_match_imports_stddev_samp_fieldsGenqlSelection + sum?: pending_match_imports_sum_fieldsGenqlSelection + var_pop?: pending_match_imports_var_pop_fieldsGenqlSelection + var_samp?: pending_match_imports_var_samp_fieldsGenqlSelection + variance?: pending_match_imports_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface pending_match_imports_avg_fieldsGenqlSelection{ + valve_match_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "pending_match_imports". All fields are combined with a logical 'AND'. */ +export interface pending_match_imports_bool_exp {_and?: (pending_match_imports_bool_exp[] | null),_not?: (pending_match_imports_bool_exp | null),_or?: (pending_match_imports_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),demo_url?: (String_comparison_exp | null),error?: (String_comparison_exp | null),map_name?: (String_comparison_exp | null),match_start_time?: (timestamptz_comparison_exp | null),players?: (pending_match_import_players_bool_exp | null),players_aggregate?: (pending_match_import_players_aggregate_bool_exp | null),share_code?: (String_comparison_exp | null),status?: (String_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null),valve_match_id?: (numeric_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "pending_match_imports" */ +export interface pending_match_imports_inc_input {valve_match_id?: (Scalars['numeric'] | null)} + + +/** input type for inserting data into table "pending_match_imports" */ +export interface pending_match_imports_insert_input {created_at?: (Scalars['timestamptz'] | null),demo_url?: (Scalars['String'] | null),error?: (Scalars['String'] | null),map_name?: (Scalars['String'] | null),match_start_time?: (Scalars['timestamptz'] | null),players?: (pending_match_import_players_arr_rel_insert_input | null),share_code?: (Scalars['String'] | null),status?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null),valve_match_id?: (Scalars['numeric'] | null)} + + +/** aggregate max on columns */ +export interface pending_match_imports_max_fieldsGenqlSelection{ + created_at?: boolean | number + demo_url?: boolean | number + error?: boolean | number + map_name?: boolean | number + match_start_time?: boolean | number + share_code?: boolean | number + status?: boolean | number + updated_at?: boolean | number + valve_match_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface pending_match_imports_min_fieldsGenqlSelection{ + created_at?: boolean | number + demo_url?: boolean | number + error?: boolean | number + map_name?: boolean | number + match_start_time?: boolean | number + share_code?: boolean | number + status?: boolean | number + updated_at?: boolean | number + valve_match_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "pending_match_imports" */ +export interface pending_match_imports_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: pending_match_importsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "pending_match_imports" */ +export interface pending_match_imports_obj_rel_insert_input {data: pending_match_imports_insert_input, +/** upsert condition */ +on_conflict?: (pending_match_imports_on_conflict | null)} + + +/** on_conflict condition type for table "pending_match_imports" */ +export interface pending_match_imports_on_conflict {constraint: pending_match_imports_constraint,update_columns?: pending_match_imports_update_column[],where?: (pending_match_imports_bool_exp | null)} + + +/** Ordering options when selecting data from "pending_match_imports". */ +export interface pending_match_imports_order_by {created_at?: (order_by | null),demo_url?: (order_by | null),error?: (order_by | null),map_name?: (order_by | null),match_start_time?: (order_by | null),players_aggregate?: (pending_match_import_players_aggregate_order_by | null),share_code?: (order_by | null),status?: (order_by | null),updated_at?: (order_by | null),valve_match_id?: (order_by | null)} + + +/** primary key columns input for table: pending_match_imports */ +export interface pending_match_imports_pk_columns_input {valve_match_id: Scalars['numeric']} + + +/** input type for updating data in table "pending_match_imports" */ +export interface pending_match_imports_set_input {created_at?: (Scalars['timestamptz'] | null),demo_url?: (Scalars['String'] | null),error?: (Scalars['String'] | null),map_name?: (Scalars['String'] | null),match_start_time?: (Scalars['timestamptz'] | null),share_code?: (Scalars['String'] | null),status?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null),valve_match_id?: (Scalars['numeric'] | null)} + + +/** aggregate stddev on columns */ +export interface pending_match_imports_stddev_fieldsGenqlSelection{ + valve_match_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface pending_match_imports_stddev_pop_fieldsGenqlSelection{ + valve_match_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface pending_match_imports_stddev_samp_fieldsGenqlSelection{ + valve_match_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "pending_match_imports" */ +export interface pending_match_imports_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: pending_match_imports_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface pending_match_imports_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),demo_url?: (Scalars['String'] | null),error?: (Scalars['String'] | null),map_name?: (Scalars['String'] | null),match_start_time?: (Scalars['timestamptz'] | null),share_code?: (Scalars['String'] | null),status?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null),valve_match_id?: (Scalars['numeric'] | null)} + + +/** aggregate sum on columns */ +export interface pending_match_imports_sum_fieldsGenqlSelection{ + valve_match_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface pending_match_imports_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (pending_match_imports_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (pending_match_imports_set_input | null), +/** filter the rows which have to be updated */ +where: pending_match_imports_bool_exp} + + +/** aggregate var_pop on columns */ +export interface pending_match_imports_var_pop_fieldsGenqlSelection{ + valve_match_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface pending_match_imports_var_samp_fieldsGenqlSelection{ + valve_match_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface pending_match_imports_variance_fieldsGenqlSelection{ + valve_match_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "player_aim_stats_demo" */ +export interface player_aim_stats_demoGenqlSelection{ + /** An object relationship */ + attacker?: playersGenqlSelection + attacker_steam_id?: boolean | number + counter_strafe_eligible_shots?: boolean | number + counter_strafed_shots?: boolean | number + crosshair_angle_count?: boolean | number + crosshair_angle_sum_deg?: boolean | number + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + headshot_hits?: boolean | number + hits?: boolean | number + hits_at_spotted?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + match_id?: boolean | number + /** An object relationship */ + match_map?: match_mapsGenqlSelection + match_map_id?: boolean | number + non_awp_hits?: boolean | number + on_target_frames?: boolean | number + shots_at_spotted?: boolean | number + spray_hits?: boolean | number + spray_shots?: boolean | number + time_to_damage_count?: boolean | number + time_to_damage_sum_s?: boolean | number + total_engagement_frames?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "player_aim_stats_demo" */ +export interface player_aim_stats_demo_aggregateGenqlSelection{ + aggregate?: player_aim_stats_demo_aggregate_fieldsGenqlSelection + nodes?: player_aim_stats_demoGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "player_aim_stats_demo" */ +export interface player_aim_stats_demo_aggregate_fieldsGenqlSelection{ + avg?: player_aim_stats_demo_avg_fieldsGenqlSelection + count?: { __args: {columns?: (player_aim_stats_demo_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: player_aim_stats_demo_max_fieldsGenqlSelection + min?: player_aim_stats_demo_min_fieldsGenqlSelection + stddev?: player_aim_stats_demo_stddev_fieldsGenqlSelection + stddev_pop?: player_aim_stats_demo_stddev_pop_fieldsGenqlSelection + stddev_samp?: player_aim_stats_demo_stddev_samp_fieldsGenqlSelection + sum?: player_aim_stats_demo_sum_fieldsGenqlSelection + var_pop?: player_aim_stats_demo_var_pop_fieldsGenqlSelection + var_samp?: player_aim_stats_demo_var_samp_fieldsGenqlSelection + variance?: player_aim_stats_demo_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface player_aim_stats_demo_avg_fieldsGenqlSelection{ + attacker_steam_id?: boolean | number + counter_strafe_eligible_shots?: boolean | number + counter_strafed_shots?: boolean | number + crosshair_angle_count?: boolean | number + crosshair_angle_sum_deg?: boolean | number + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + headshot_hits?: boolean | number + hits?: boolean | number + hits_at_spotted?: boolean | number + non_awp_hits?: boolean | number + on_target_frames?: boolean | number + shots_at_spotted?: boolean | number + spray_hits?: boolean | number + spray_shots?: boolean | number + time_to_damage_count?: boolean | number + time_to_damage_sum_s?: boolean | number + total_engagement_frames?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "player_aim_stats_demo". All fields are combined with a logical 'AND'. */ +export interface player_aim_stats_demo_bool_exp {_and?: (player_aim_stats_demo_bool_exp[] | null),_not?: (player_aim_stats_demo_bool_exp | null),_or?: (player_aim_stats_demo_bool_exp[] | null),attacker?: (players_bool_exp | null),attacker_steam_id?: (bigint_comparison_exp | null),counter_strafe_eligible_shots?: (Int_comparison_exp | null),counter_strafed_shots?: (Int_comparison_exp | null),crosshair_angle_count?: (Int_comparison_exp | null),crosshair_angle_sum_deg?: (numeric_comparison_exp | null),first_bullet_hits?: (Int_comparison_exp | null),first_bullet_shots?: (Int_comparison_exp | null),headshot_hits?: (Int_comparison_exp | null),hits?: (Int_comparison_exp | null),hits_at_spotted?: (Int_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_id?: (uuid_comparison_exp | null),non_awp_hits?: (Int_comparison_exp | null),on_target_frames?: (Int_comparison_exp | null),shots_at_spotted?: (Int_comparison_exp | null),spray_hits?: (Int_comparison_exp | null),spray_shots?: (Int_comparison_exp | null),time_to_damage_count?: (Int_comparison_exp | null),time_to_damage_sum_s?: (numeric_comparison_exp | null),total_engagement_frames?: (Int_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "player_aim_stats_demo" */ +export interface player_aim_stats_demo_inc_input {attacker_steam_id?: (Scalars['bigint'] | null),counter_strafe_eligible_shots?: (Scalars['Int'] | null),counter_strafed_shots?: (Scalars['Int'] | null),crosshair_angle_count?: (Scalars['Int'] | null),crosshair_angle_sum_deg?: (Scalars['numeric'] | null),first_bullet_hits?: (Scalars['Int'] | null),first_bullet_shots?: (Scalars['Int'] | null),headshot_hits?: (Scalars['Int'] | null),hits?: (Scalars['Int'] | null),hits_at_spotted?: (Scalars['Int'] | null),non_awp_hits?: (Scalars['Int'] | null),on_target_frames?: (Scalars['Int'] | null),shots_at_spotted?: (Scalars['Int'] | null),spray_hits?: (Scalars['Int'] | null),spray_shots?: (Scalars['Int'] | null),time_to_damage_count?: (Scalars['Int'] | null),time_to_damage_sum_s?: (Scalars['numeric'] | null),total_engagement_frames?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "player_aim_stats_demo" */ +export interface player_aim_stats_demo_insert_input {attacker?: (players_obj_rel_insert_input | null),attacker_steam_id?: (Scalars['bigint'] | null),counter_strafe_eligible_shots?: (Scalars['Int'] | null),counter_strafed_shots?: (Scalars['Int'] | null),crosshair_angle_count?: (Scalars['Int'] | null),crosshair_angle_sum_deg?: (Scalars['numeric'] | null),first_bullet_hits?: (Scalars['Int'] | null),first_bullet_shots?: (Scalars['Int'] | null),headshot_hits?: (Scalars['Int'] | null),hits?: (Scalars['Int'] | null),hits_at_spotted?: (Scalars['Int'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_map?: (match_maps_obj_rel_insert_input | null),match_map_id?: (Scalars['uuid'] | null),non_awp_hits?: (Scalars['Int'] | null),on_target_frames?: (Scalars['Int'] | null),shots_at_spotted?: (Scalars['Int'] | null),spray_hits?: (Scalars['Int'] | null),spray_shots?: (Scalars['Int'] | null),time_to_damage_count?: (Scalars['Int'] | null),time_to_damage_sum_s?: (Scalars['numeric'] | null),total_engagement_frames?: (Scalars['Int'] | null)} + + +/** aggregate max on columns */ +export interface player_aim_stats_demo_max_fieldsGenqlSelection{ + attacker_steam_id?: boolean | number + counter_strafe_eligible_shots?: boolean | number + counter_strafed_shots?: boolean | number + crosshair_angle_count?: boolean | number + crosshair_angle_sum_deg?: boolean | number + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + headshot_hits?: boolean | number + hits?: boolean | number + hits_at_spotted?: boolean | number + match_id?: boolean | number + match_map_id?: boolean | number + non_awp_hits?: boolean | number + on_target_frames?: boolean | number + shots_at_spotted?: boolean | number + spray_hits?: boolean | number + spray_shots?: boolean | number + time_to_damage_count?: boolean | number + time_to_damage_sum_s?: boolean | number + total_engagement_frames?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface player_aim_stats_demo_min_fieldsGenqlSelection{ + attacker_steam_id?: boolean | number + counter_strafe_eligible_shots?: boolean | number + counter_strafed_shots?: boolean | number + crosshair_angle_count?: boolean | number + crosshair_angle_sum_deg?: boolean | number + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + headshot_hits?: boolean | number + hits?: boolean | number + hits_at_spotted?: boolean | number + match_id?: boolean | number + match_map_id?: boolean | number + non_awp_hits?: boolean | number + on_target_frames?: boolean | number + shots_at_spotted?: boolean | number + spray_hits?: boolean | number + spray_shots?: boolean | number + time_to_damage_count?: boolean | number + time_to_damage_sum_s?: boolean | number + total_engagement_frames?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "player_aim_stats_demo" */ +export interface player_aim_stats_demo_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: player_aim_stats_demoGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "player_aim_stats_demo" */ +export interface player_aim_stats_demo_on_conflict {constraint: player_aim_stats_demo_constraint,update_columns?: player_aim_stats_demo_update_column[],where?: (player_aim_stats_demo_bool_exp | null)} + + +/** Ordering options when selecting data from "player_aim_stats_demo". */ +export interface player_aim_stats_demo_order_by {attacker?: (players_order_by | null),attacker_steam_id?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),crosshair_angle_count?: (order_by | null),crosshair_angle_sum_deg?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_id?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),shots_at_spotted?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),time_to_damage_count?: (order_by | null),time_to_damage_sum_s?: (order_by | null),total_engagement_frames?: (order_by | null)} + + +/** primary key columns input for table: player_aim_stats_demo */ +export interface player_aim_stats_demo_pk_columns_input {attacker_steam_id: Scalars['bigint'],match_map_id: Scalars['uuid']} + + +/** input type for updating data in table "player_aim_stats_demo" */ +export interface player_aim_stats_demo_set_input {attacker_steam_id?: (Scalars['bigint'] | null),counter_strafe_eligible_shots?: (Scalars['Int'] | null),counter_strafed_shots?: (Scalars['Int'] | null),crosshair_angle_count?: (Scalars['Int'] | null),crosshair_angle_sum_deg?: (Scalars['numeric'] | null),first_bullet_hits?: (Scalars['Int'] | null),first_bullet_shots?: (Scalars['Int'] | null),headshot_hits?: (Scalars['Int'] | null),hits?: (Scalars['Int'] | null),hits_at_spotted?: (Scalars['Int'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),non_awp_hits?: (Scalars['Int'] | null),on_target_frames?: (Scalars['Int'] | null),shots_at_spotted?: (Scalars['Int'] | null),spray_hits?: (Scalars['Int'] | null),spray_shots?: (Scalars['Int'] | null),time_to_damage_count?: (Scalars['Int'] | null),time_to_damage_sum_s?: (Scalars['numeric'] | null),total_engagement_frames?: (Scalars['Int'] | null)} + + +/** aggregate stddev on columns */ +export interface player_aim_stats_demo_stddev_fieldsGenqlSelection{ + attacker_steam_id?: boolean | number + counter_strafe_eligible_shots?: boolean | number + counter_strafed_shots?: boolean | number + crosshair_angle_count?: boolean | number + crosshair_angle_sum_deg?: boolean | number + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + headshot_hits?: boolean | number + hits?: boolean | number + hits_at_spotted?: boolean | number + non_awp_hits?: boolean | number + on_target_frames?: boolean | number + shots_at_spotted?: boolean | number + spray_hits?: boolean | number + spray_shots?: boolean | number + time_to_damage_count?: boolean | number + time_to_damage_sum_s?: boolean | number + total_engagement_frames?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface player_aim_stats_demo_stddev_pop_fieldsGenqlSelection{ + attacker_steam_id?: boolean | number + counter_strafe_eligible_shots?: boolean | number + counter_strafed_shots?: boolean | number + crosshair_angle_count?: boolean | number + crosshair_angle_sum_deg?: boolean | number + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + headshot_hits?: boolean | number + hits?: boolean | number + hits_at_spotted?: boolean | number + non_awp_hits?: boolean | number + on_target_frames?: boolean | number + shots_at_spotted?: boolean | number + spray_hits?: boolean | number + spray_shots?: boolean | number + time_to_damage_count?: boolean | number + time_to_damage_sum_s?: boolean | number + total_engagement_frames?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface player_aim_stats_demo_stddev_samp_fieldsGenqlSelection{ + attacker_steam_id?: boolean | number + counter_strafe_eligible_shots?: boolean | number + counter_strafed_shots?: boolean | number + crosshair_angle_count?: boolean | number + crosshair_angle_sum_deg?: boolean | number + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + headshot_hits?: boolean | number + hits?: boolean | number + hits_at_spotted?: boolean | number + non_awp_hits?: boolean | number + on_target_frames?: boolean | number + shots_at_spotted?: boolean | number + spray_hits?: boolean | number + spray_shots?: boolean | number + time_to_damage_count?: boolean | number + time_to_damage_sum_s?: boolean | number + total_engagement_frames?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "player_aim_stats_demo" */ +export interface player_aim_stats_demo_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: player_aim_stats_demo_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface player_aim_stats_demo_stream_cursor_value_input {attacker_steam_id?: (Scalars['bigint'] | null),counter_strafe_eligible_shots?: (Scalars['Int'] | null),counter_strafed_shots?: (Scalars['Int'] | null),crosshair_angle_count?: (Scalars['Int'] | null),crosshair_angle_sum_deg?: (Scalars['numeric'] | null),first_bullet_hits?: (Scalars['Int'] | null),first_bullet_shots?: (Scalars['Int'] | null),headshot_hits?: (Scalars['Int'] | null),hits?: (Scalars['Int'] | null),hits_at_spotted?: (Scalars['Int'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),non_awp_hits?: (Scalars['Int'] | null),on_target_frames?: (Scalars['Int'] | null),shots_at_spotted?: (Scalars['Int'] | null),spray_hits?: (Scalars['Int'] | null),spray_shots?: (Scalars['Int'] | null),time_to_damage_count?: (Scalars['Int'] | null),time_to_damage_sum_s?: (Scalars['numeric'] | null),total_engagement_frames?: (Scalars['Int'] | null)} + + +/** aggregate sum on columns */ +export interface player_aim_stats_demo_sum_fieldsGenqlSelection{ + attacker_steam_id?: boolean | number + counter_strafe_eligible_shots?: boolean | number + counter_strafed_shots?: boolean | number + crosshair_angle_count?: boolean | number + crosshair_angle_sum_deg?: boolean | number + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + headshot_hits?: boolean | number + hits?: boolean | number + hits_at_spotted?: boolean | number + non_awp_hits?: boolean | number + on_target_frames?: boolean | number + shots_at_spotted?: boolean | number + spray_hits?: boolean | number + spray_shots?: boolean | number + time_to_damage_count?: boolean | number + time_to_damage_sum_s?: boolean | number + total_engagement_frames?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface player_aim_stats_demo_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (player_aim_stats_demo_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (player_aim_stats_demo_set_input | null), +/** filter the rows which have to be updated */ +where: player_aim_stats_demo_bool_exp} + + +/** aggregate var_pop on columns */ +export interface player_aim_stats_demo_var_pop_fieldsGenqlSelection{ + attacker_steam_id?: boolean | number + counter_strafe_eligible_shots?: boolean | number + counter_strafed_shots?: boolean | number + crosshair_angle_count?: boolean | number + crosshair_angle_sum_deg?: boolean | number + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + headshot_hits?: boolean | number + hits?: boolean | number + hits_at_spotted?: boolean | number + non_awp_hits?: boolean | number + on_target_frames?: boolean | number + shots_at_spotted?: boolean | number + spray_hits?: boolean | number + spray_shots?: boolean | number + time_to_damage_count?: boolean | number + time_to_damage_sum_s?: boolean | number + total_engagement_frames?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface player_aim_stats_demo_var_samp_fieldsGenqlSelection{ + attacker_steam_id?: boolean | number + counter_strafe_eligible_shots?: boolean | number + counter_strafed_shots?: boolean | number + crosshair_angle_count?: boolean | number + crosshair_angle_sum_deg?: boolean | number + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + headshot_hits?: boolean | number + hits?: boolean | number + hits_at_spotted?: boolean | number + non_awp_hits?: boolean | number + on_target_frames?: boolean | number + shots_at_spotted?: boolean | number + spray_hits?: boolean | number + spray_shots?: boolean | number + time_to_damage_count?: boolean | number + time_to_damage_sum_s?: boolean | number + total_engagement_frames?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface player_aim_stats_demo_variance_fieldsGenqlSelection{ + attacker_steam_id?: boolean | number + counter_strafe_eligible_shots?: boolean | number + counter_strafed_shots?: boolean | number + crosshair_angle_count?: boolean | number + crosshair_angle_sum_deg?: boolean | number + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + headshot_hits?: boolean | number + hits?: boolean | number + hits_at_spotted?: boolean | number + non_awp_hits?: boolean | number + on_target_frames?: boolean | number + shots_at_spotted?: boolean | number + spray_hits?: boolean | number + spray_shots?: boolean | number + time_to_damage_count?: boolean | number + time_to_damage_sum_s?: boolean | number + total_engagement_frames?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "player_aim_weapon_stats" */ +export interface player_aim_weapon_statsGenqlSelection{ + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + hits?: boolean | number + hits_spotted?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + match_id?: boolean | number + /** An object relationship */ + match_map?: match_mapsGenqlSelection + match_map_id?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + shots?: boolean | number + shots_spotted?: boolean | number + steam_id?: boolean | number + weapon_class?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "player_aim_weapon_stats" */ +export interface player_aim_weapon_stats_aggregateGenqlSelection{ + aggregate?: player_aim_weapon_stats_aggregate_fieldsGenqlSelection + nodes?: player_aim_weapon_statsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface player_aim_weapon_stats_aggregate_bool_exp {count?: (player_aim_weapon_stats_aggregate_bool_exp_count | null)} + +export interface player_aim_weapon_stats_aggregate_bool_exp_count {arguments?: (player_aim_weapon_stats_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (player_aim_weapon_stats_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "player_aim_weapon_stats" */ +export interface player_aim_weapon_stats_aggregate_fieldsGenqlSelection{ + avg?: player_aim_weapon_stats_avg_fieldsGenqlSelection + count?: { __args: {columns?: (player_aim_weapon_stats_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: player_aim_weapon_stats_max_fieldsGenqlSelection + min?: player_aim_weapon_stats_min_fieldsGenqlSelection + stddev?: player_aim_weapon_stats_stddev_fieldsGenqlSelection + stddev_pop?: player_aim_weapon_stats_stddev_pop_fieldsGenqlSelection + stddev_samp?: player_aim_weapon_stats_stddev_samp_fieldsGenqlSelection + sum?: player_aim_weapon_stats_sum_fieldsGenqlSelection + var_pop?: player_aim_weapon_stats_var_pop_fieldsGenqlSelection + var_samp?: player_aim_weapon_stats_var_samp_fieldsGenqlSelection + variance?: player_aim_weapon_stats_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "player_aim_weapon_stats" */ +export interface player_aim_weapon_stats_aggregate_order_by {avg?: (player_aim_weapon_stats_avg_order_by | null),count?: (order_by | null),max?: (player_aim_weapon_stats_max_order_by | null),min?: (player_aim_weapon_stats_min_order_by | null),stddev?: (player_aim_weapon_stats_stddev_order_by | null),stddev_pop?: (player_aim_weapon_stats_stddev_pop_order_by | null),stddev_samp?: (player_aim_weapon_stats_stddev_samp_order_by | null),sum?: (player_aim_weapon_stats_sum_order_by | null),var_pop?: (player_aim_weapon_stats_var_pop_order_by | null),var_samp?: (player_aim_weapon_stats_var_samp_order_by | null),variance?: (player_aim_weapon_stats_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "player_aim_weapon_stats" */ +export interface player_aim_weapon_stats_arr_rel_insert_input {data: player_aim_weapon_stats_insert_input[], +/** upsert condition */ +on_conflict?: (player_aim_weapon_stats_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface player_aim_weapon_stats_avg_fieldsGenqlSelection{ + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + hits?: boolean | number + hits_spotted?: boolean | number + shots?: boolean | number + shots_spotted?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "player_aim_weapon_stats" */ +export interface player_aim_weapon_stats_avg_order_by {first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),hits?: (order_by | null),hits_spotted?: (order_by | null),shots?: (order_by | null),shots_spotted?: (order_by | null),steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "player_aim_weapon_stats". All fields are combined with a logical 'AND'. */ +export interface player_aim_weapon_stats_bool_exp {_and?: (player_aim_weapon_stats_bool_exp[] | null),_not?: (player_aim_weapon_stats_bool_exp | null),_or?: (player_aim_weapon_stats_bool_exp[] | null),first_bullet_hits?: (Int_comparison_exp | null),first_bullet_shots?: (Int_comparison_exp | null),hits?: (Int_comparison_exp | null),hits_spotted?: (Int_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_id?: (uuid_comparison_exp | null),player?: (players_bool_exp | null),shots?: (Int_comparison_exp | null),shots_spotted?: (Int_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),weapon_class?: (String_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "player_aim_weapon_stats" */ +export interface player_aim_weapon_stats_inc_input {first_bullet_hits?: (Scalars['Int'] | null),first_bullet_shots?: (Scalars['Int'] | null),hits?: (Scalars['Int'] | null),hits_spotted?: (Scalars['Int'] | null),shots?: (Scalars['Int'] | null),shots_spotted?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "player_aim_weapon_stats" */ +export interface player_aim_weapon_stats_insert_input {first_bullet_hits?: (Scalars['Int'] | null),first_bullet_shots?: (Scalars['Int'] | null),hits?: (Scalars['Int'] | null),hits_spotted?: (Scalars['Int'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_map?: (match_maps_obj_rel_insert_input | null),match_map_id?: (Scalars['uuid'] | null),player?: (players_obj_rel_insert_input | null),shots?: (Scalars['Int'] | null),shots_spotted?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null),weapon_class?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface player_aim_weapon_stats_max_fieldsGenqlSelection{ + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + hits?: boolean | number + hits_spotted?: boolean | number + match_id?: boolean | number + match_map_id?: boolean | number + shots?: boolean | number + shots_spotted?: boolean | number + steam_id?: boolean | number + weapon_class?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "player_aim_weapon_stats" */ +export interface player_aim_weapon_stats_max_order_by {first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),hits?: (order_by | null),hits_spotted?: (order_by | null),match_id?: (order_by | null),match_map_id?: (order_by | null),shots?: (order_by | null),shots_spotted?: (order_by | null),steam_id?: (order_by | null),weapon_class?: (order_by | null)} + + +/** aggregate min on columns */ +export interface player_aim_weapon_stats_min_fieldsGenqlSelection{ + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + hits?: boolean | number + hits_spotted?: boolean | number + match_id?: boolean | number + match_map_id?: boolean | number + shots?: boolean | number + shots_spotted?: boolean | number + steam_id?: boolean | number + weapon_class?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "player_aim_weapon_stats" */ +export interface player_aim_weapon_stats_min_order_by {first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),hits?: (order_by | null),hits_spotted?: (order_by | null),match_id?: (order_by | null),match_map_id?: (order_by | null),shots?: (order_by | null),shots_spotted?: (order_by | null),steam_id?: (order_by | null),weapon_class?: (order_by | null)} + + +/** response of any mutation on the table "player_aim_weapon_stats" */ +export interface player_aim_weapon_stats_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: player_aim_weapon_statsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "player_aim_weapon_stats" */ +export interface player_aim_weapon_stats_on_conflict {constraint: player_aim_weapon_stats_constraint,update_columns?: player_aim_weapon_stats_update_column[],where?: (player_aim_weapon_stats_bool_exp | null)} + + +/** Ordering options when selecting data from "player_aim_weapon_stats". */ +export interface player_aim_weapon_stats_order_by {first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),hits?: (order_by | null),hits_spotted?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_id?: (order_by | null),player?: (players_order_by | null),shots?: (order_by | null),shots_spotted?: (order_by | null),steam_id?: (order_by | null),weapon_class?: (order_by | null)} + + +/** primary key columns input for table: player_aim_weapon_stats */ +export interface player_aim_weapon_stats_pk_columns_input {match_map_id: Scalars['uuid'],steam_id: Scalars['bigint'],weapon_class: Scalars['String']} + + +/** input type for updating data in table "player_aim_weapon_stats" */ +export interface player_aim_weapon_stats_set_input {first_bullet_hits?: (Scalars['Int'] | null),first_bullet_shots?: (Scalars['Int'] | null),hits?: (Scalars['Int'] | null),hits_spotted?: (Scalars['Int'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),shots?: (Scalars['Int'] | null),shots_spotted?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null),weapon_class?: (Scalars['String'] | null)} + + +/** aggregate stddev on columns */ +export interface player_aim_weapon_stats_stddev_fieldsGenqlSelection{ + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + hits?: boolean | number + hits_spotted?: boolean | number + shots?: boolean | number + shots_spotted?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "player_aim_weapon_stats" */ +export interface player_aim_weapon_stats_stddev_order_by {first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),hits?: (order_by | null),hits_spotted?: (order_by | null),shots?: (order_by | null),shots_spotted?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface player_aim_weapon_stats_stddev_pop_fieldsGenqlSelection{ + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + hits?: boolean | number + hits_spotted?: boolean | number + shots?: boolean | number + shots_spotted?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "player_aim_weapon_stats" */ +export interface player_aim_weapon_stats_stddev_pop_order_by {first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),hits?: (order_by | null),hits_spotted?: (order_by | null),shots?: (order_by | null),shots_spotted?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface player_aim_weapon_stats_stddev_samp_fieldsGenqlSelection{ + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + hits?: boolean | number + hits_spotted?: boolean | number + shots?: boolean | number + shots_spotted?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "player_aim_weapon_stats" */ +export interface player_aim_weapon_stats_stddev_samp_order_by {first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),hits?: (order_by | null),hits_spotted?: (order_by | null),shots?: (order_by | null),shots_spotted?: (order_by | null),steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "player_aim_weapon_stats" */ +export interface player_aim_weapon_stats_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: player_aim_weapon_stats_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface player_aim_weapon_stats_stream_cursor_value_input {first_bullet_hits?: (Scalars['Int'] | null),first_bullet_shots?: (Scalars['Int'] | null),hits?: (Scalars['Int'] | null),hits_spotted?: (Scalars['Int'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),shots?: (Scalars['Int'] | null),shots_spotted?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null),weapon_class?: (Scalars['String'] | null)} + + +/** aggregate sum on columns */ +export interface player_aim_weapon_stats_sum_fieldsGenqlSelection{ + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + hits?: boolean | number + hits_spotted?: boolean | number + shots?: boolean | number + shots_spotted?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "player_aim_weapon_stats" */ +export interface player_aim_weapon_stats_sum_order_by {first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),hits?: (order_by | null),hits_spotted?: (order_by | null),shots?: (order_by | null),shots_spotted?: (order_by | null),steam_id?: (order_by | null)} + +export interface player_aim_weapon_stats_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (player_aim_weapon_stats_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (player_aim_weapon_stats_set_input | null), +/** filter the rows which have to be updated */ +where: player_aim_weapon_stats_bool_exp} + + +/** aggregate var_pop on columns */ +export interface player_aim_weapon_stats_var_pop_fieldsGenqlSelection{ + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + hits?: boolean | number + hits_spotted?: boolean | number + shots?: boolean | number + shots_spotted?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "player_aim_weapon_stats" */ +export interface player_aim_weapon_stats_var_pop_order_by {first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),hits?: (order_by | null),hits_spotted?: (order_by | null),shots?: (order_by | null),shots_spotted?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface player_aim_weapon_stats_var_samp_fieldsGenqlSelection{ + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + hits?: boolean | number + hits_spotted?: boolean | number + shots?: boolean | number + shots_spotted?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "player_aim_weapon_stats" */ +export interface player_aim_weapon_stats_var_samp_order_by {first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),hits?: (order_by | null),hits_spotted?: (order_by | null),shots?: (order_by | null),shots_spotted?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface player_aim_weapon_stats_variance_fieldsGenqlSelection{ + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + hits?: boolean | number + hits_spotted?: boolean | number + shots?: boolean | number + shots_spotted?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "player_aim_weapon_stats" */ +export interface player_aim_weapon_stats_variance_order_by {first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),hits?: (order_by | null),hits_spotted?: (order_by | null),shots?: (order_by | null),shots_spotted?: (order_by | null),steam_id?: (order_by | null)} + + +/** columns and relationships of "player_assists" */ +export interface player_assistsGenqlSelection{ + /** An object relationship */ + attacked_player?: playersGenqlSelection + attacked_steam_id?: boolean | number + attacked_team?: boolean | number + attacker_steam_id?: boolean | number + attacker_team?: boolean | number + deleted_at?: boolean | number + flash?: boolean | number + /** A computed field, executes function "is_team_assist" */ + is_team_assist?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + match_id?: boolean | number + /** An object relationship */ + match_map?: match_mapsGenqlSelection + match_map_id?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + round?: boolean | number + time?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "player_assists" */ +export interface player_assists_aggregateGenqlSelection{ + aggregate?: player_assists_aggregate_fieldsGenqlSelection + nodes?: player_assistsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface player_assists_aggregate_bool_exp {bool_and?: (player_assists_aggregate_bool_exp_bool_and | null),bool_or?: (player_assists_aggregate_bool_exp_bool_or | null),count?: (player_assists_aggregate_bool_exp_count | null)} + +export interface player_assists_aggregate_bool_exp_bool_and {arguments: player_assists_select_column_player_assists_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (player_assists_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface player_assists_aggregate_bool_exp_bool_or {arguments: player_assists_select_column_player_assists_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (player_assists_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface player_assists_aggregate_bool_exp_count {arguments?: (player_assists_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (player_assists_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "player_assists" */ +export interface player_assists_aggregate_fieldsGenqlSelection{ + avg?: player_assists_avg_fieldsGenqlSelection + count?: { __args: {columns?: (player_assists_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: player_assists_max_fieldsGenqlSelection + min?: player_assists_min_fieldsGenqlSelection + stddev?: player_assists_stddev_fieldsGenqlSelection + stddev_pop?: player_assists_stddev_pop_fieldsGenqlSelection + stddev_samp?: player_assists_stddev_samp_fieldsGenqlSelection + sum?: player_assists_sum_fieldsGenqlSelection + var_pop?: player_assists_var_pop_fieldsGenqlSelection + var_samp?: player_assists_var_samp_fieldsGenqlSelection + variance?: player_assists_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "player_assists" */ +export interface player_assists_aggregate_order_by {avg?: (player_assists_avg_order_by | null),count?: (order_by | null),max?: (player_assists_max_order_by | null),min?: (player_assists_min_order_by | null),stddev?: (player_assists_stddev_order_by | null),stddev_pop?: (player_assists_stddev_pop_order_by | null),stddev_samp?: (player_assists_stddev_samp_order_by | null),sum?: (player_assists_sum_order_by | null),var_pop?: (player_assists_var_pop_order_by | null),var_samp?: (player_assists_var_samp_order_by | null),variance?: (player_assists_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "player_assists" */ +export interface player_assists_arr_rel_insert_input {data: player_assists_insert_input[], +/** upsert condition */ +on_conflict?: (player_assists_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface player_assists_avg_fieldsGenqlSelection{ + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "player_assists" */ +export interface player_assists_avg_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),round?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "player_assists". All fields are combined with a logical 'AND'. */ +export interface player_assists_bool_exp {_and?: (player_assists_bool_exp[] | null),_not?: (player_assists_bool_exp | null),_or?: (player_assists_bool_exp[] | null),attacked_player?: (players_bool_exp | null),attacked_steam_id?: (bigint_comparison_exp | null),attacked_team?: (String_comparison_exp | null),attacker_steam_id?: (bigint_comparison_exp | null),attacker_team?: (String_comparison_exp | null),deleted_at?: (timestamptz_comparison_exp | null),flash?: (Boolean_comparison_exp | null),is_team_assist?: (Boolean_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_id?: (uuid_comparison_exp | null),player?: (players_bool_exp | null),round?: (Int_comparison_exp | null),time?: (timestamptz_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "player_assists" */ +export interface player_assists_inc_input {attacked_steam_id?: (Scalars['bigint'] | null),attacker_steam_id?: (Scalars['bigint'] | null),round?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "player_assists" */ +export interface player_assists_insert_input {attacked_player?: (players_obj_rel_insert_input | null),attacked_steam_id?: (Scalars['bigint'] | null),attacked_team?: (Scalars['String'] | null),attacker_steam_id?: (Scalars['bigint'] | null),attacker_team?: (Scalars['String'] | null),deleted_at?: (Scalars['timestamptz'] | null),flash?: (Scalars['Boolean'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_map?: (match_maps_obj_rel_insert_input | null),match_map_id?: (Scalars['uuid'] | null),player?: (players_obj_rel_insert_input | null),round?: (Scalars['Int'] | null),time?: (Scalars['timestamptz'] | null)} + + +/** aggregate max on columns */ +export interface player_assists_max_fieldsGenqlSelection{ + attacked_steam_id?: boolean | number + attacked_team?: boolean | number + attacker_steam_id?: boolean | number + attacker_team?: boolean | number + deleted_at?: boolean | number + match_id?: boolean | number + match_map_id?: boolean | number + round?: boolean | number + time?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "player_assists" */ +export interface player_assists_max_order_by {attacked_steam_id?: (order_by | null),attacked_team?: (order_by | null),attacker_steam_id?: (order_by | null),attacker_team?: (order_by | null),deleted_at?: (order_by | null),match_id?: (order_by | null),match_map_id?: (order_by | null),round?: (order_by | null),time?: (order_by | null)} + + +/** aggregate min on columns */ +export interface player_assists_min_fieldsGenqlSelection{ + attacked_steam_id?: boolean | number + attacked_team?: boolean | number + attacker_steam_id?: boolean | number + attacker_team?: boolean | number + deleted_at?: boolean | number + match_id?: boolean | number + match_map_id?: boolean | number + round?: boolean | number + time?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "player_assists" */ +export interface player_assists_min_order_by {attacked_steam_id?: (order_by | null),attacked_team?: (order_by | null),attacker_steam_id?: (order_by | null),attacker_team?: (order_by | null),deleted_at?: (order_by | null),match_id?: (order_by | null),match_map_id?: (order_by | null),round?: (order_by | null),time?: (order_by | null)} + + +/** response of any mutation on the table "player_assists" */ +export interface player_assists_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: player_assistsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "player_assists" */ +export interface player_assists_on_conflict {constraint: player_assists_constraint,update_columns?: player_assists_update_column[],where?: (player_assists_bool_exp | null)} + + +/** Ordering options when selecting data from "player_assists". */ +export interface player_assists_order_by {attacked_player?: (players_order_by | null),attacked_steam_id?: (order_by | null),attacked_team?: (order_by | null),attacker_steam_id?: (order_by | null),attacker_team?: (order_by | null),deleted_at?: (order_by | null),flash?: (order_by | null),is_team_assist?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_id?: (order_by | null),player?: (players_order_by | null),round?: (order_by | null),time?: (order_by | null)} + + +/** primary key columns input for table: player_assists */ +export interface player_assists_pk_columns_input {attacked_steam_id: Scalars['bigint'],attacker_steam_id: Scalars['bigint'],match_map_id: Scalars['uuid'],time: Scalars['timestamptz']} + + +/** input type for updating data in table "player_assists" */ +export interface player_assists_set_input {attacked_steam_id?: (Scalars['bigint'] | null),attacked_team?: (Scalars['String'] | null),attacker_steam_id?: (Scalars['bigint'] | null),attacker_team?: (Scalars['String'] | null),deleted_at?: (Scalars['timestamptz'] | null),flash?: (Scalars['Boolean'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),round?: (Scalars['Int'] | null),time?: (Scalars['timestamptz'] | null)} + + +/** aggregate stddev on columns */ +export interface player_assists_stddev_fieldsGenqlSelection{ + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "player_assists" */ +export interface player_assists_stddev_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),round?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface player_assists_stddev_pop_fieldsGenqlSelection{ + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "player_assists" */ +export interface player_assists_stddev_pop_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),round?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface player_assists_stddev_samp_fieldsGenqlSelection{ + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "player_assists" */ +export interface player_assists_stddev_samp_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),round?: (order_by | null)} + + +/** Streaming cursor of the table "player_assists" */ +export interface player_assists_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: player_assists_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface player_assists_stream_cursor_value_input {attacked_steam_id?: (Scalars['bigint'] | null),attacked_team?: (Scalars['String'] | null),attacker_steam_id?: (Scalars['bigint'] | null),attacker_team?: (Scalars['String'] | null),deleted_at?: (Scalars['timestamptz'] | null),flash?: (Scalars['Boolean'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),round?: (Scalars['Int'] | null),time?: (Scalars['timestamptz'] | null)} + + +/** aggregate sum on columns */ +export interface player_assists_sum_fieldsGenqlSelection{ + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "player_assists" */ +export interface player_assists_sum_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),round?: (order_by | null)} + +export interface player_assists_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (player_assists_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (player_assists_set_input | null), +/** filter the rows which have to be updated */ +where: player_assists_bool_exp} + + +/** aggregate var_pop on columns */ +export interface player_assists_var_pop_fieldsGenqlSelection{ + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "player_assists" */ +export interface player_assists_var_pop_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),round?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface player_assists_var_samp_fieldsGenqlSelection{ + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "player_assists" */ +export interface player_assists_var_samp_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),round?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface player_assists_variance_fieldsGenqlSelection{ + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "player_assists" */ +export interface player_assists_variance_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),round?: (order_by | null)} + + +/** columns and relationships of "player_career_stats_v" */ +export interface player_career_stats_vGenqlSelection{ + accuracy?: boolean | number + accuracy_spotted?: boolean | number + counter_strafe_pct?: boolean | number + crosshair_deg?: boolean | number + enemy_blind_pr?: boolean | number + flash_assists_pr?: boolean | number + hs_pct?: boolean | number + kast_pct?: boolean | number + maps?: boolean | number + premier_rank?: boolean | number + rounds?: boolean | number + steam_id?: boolean | number + survival_pct?: boolean | number + time_to_damage_s?: boolean | number + traded_death_pct?: boolean | number + util_efficiency?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "player_career_stats_v" */ +export interface player_career_stats_v_aggregateGenqlSelection{ + aggregate?: player_career_stats_v_aggregate_fieldsGenqlSelection + nodes?: player_career_stats_vGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "player_career_stats_v" */ +export interface player_career_stats_v_aggregate_fieldsGenqlSelection{ + avg?: player_career_stats_v_avg_fieldsGenqlSelection + count?: { __args: {columns?: (player_career_stats_v_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: player_career_stats_v_max_fieldsGenqlSelection + min?: player_career_stats_v_min_fieldsGenqlSelection + stddev?: player_career_stats_v_stddev_fieldsGenqlSelection + stddev_pop?: player_career_stats_v_stddev_pop_fieldsGenqlSelection + stddev_samp?: player_career_stats_v_stddev_samp_fieldsGenqlSelection + sum?: player_career_stats_v_sum_fieldsGenqlSelection + var_pop?: player_career_stats_v_var_pop_fieldsGenqlSelection + var_samp?: player_career_stats_v_var_samp_fieldsGenqlSelection + variance?: player_career_stats_v_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface player_career_stats_v_avg_fieldsGenqlSelection{ + accuracy?: boolean | number + accuracy_spotted?: boolean | number + counter_strafe_pct?: boolean | number + crosshair_deg?: boolean | number + enemy_blind_pr?: boolean | number + flash_assists_pr?: boolean | number + hs_pct?: boolean | number + kast_pct?: boolean | number + maps?: boolean | number + premier_rank?: boolean | number + rounds?: boolean | number + steam_id?: boolean | number + survival_pct?: boolean | number + time_to_damage_s?: boolean | number + traded_death_pct?: boolean | number + util_efficiency?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "player_career_stats_v". All fields are combined with a logical 'AND'. */ +export interface player_career_stats_v_bool_exp {_and?: (player_career_stats_v_bool_exp[] | null),_not?: (player_career_stats_v_bool_exp | null),_or?: (player_career_stats_v_bool_exp[] | null),accuracy?: (numeric_comparison_exp | null),accuracy_spotted?: (numeric_comparison_exp | null),counter_strafe_pct?: (numeric_comparison_exp | null),crosshair_deg?: (numeric_comparison_exp | null),enemy_blind_pr?: (numeric_comparison_exp | null),flash_assists_pr?: (numeric_comparison_exp | null),hs_pct?: (numeric_comparison_exp | null),kast_pct?: (numeric_comparison_exp | null),maps?: (Int_comparison_exp | null),premier_rank?: (Int_comparison_exp | null),rounds?: (Int_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),survival_pct?: (numeric_comparison_exp | null),time_to_damage_s?: (numeric_comparison_exp | null),traded_death_pct?: (numeric_comparison_exp | null),util_efficiency?: (numeric_comparison_exp | null)} + + +/** aggregate max on columns */ +export interface player_career_stats_v_max_fieldsGenqlSelection{ + accuracy?: boolean | number + accuracy_spotted?: boolean | number + counter_strafe_pct?: boolean | number + crosshair_deg?: boolean | number + enemy_blind_pr?: boolean | number + flash_assists_pr?: boolean | number + hs_pct?: boolean | number + kast_pct?: boolean | number + maps?: boolean | number + premier_rank?: boolean | number + rounds?: boolean | number + steam_id?: boolean | number + survival_pct?: boolean | number + time_to_damage_s?: boolean | number + traded_death_pct?: boolean | number + util_efficiency?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface player_career_stats_v_min_fieldsGenqlSelection{ + accuracy?: boolean | number + accuracy_spotted?: boolean | number + counter_strafe_pct?: boolean | number + crosshair_deg?: boolean | number + enemy_blind_pr?: boolean | number + flash_assists_pr?: boolean | number + hs_pct?: boolean | number + kast_pct?: boolean | number + maps?: boolean | number + premier_rank?: boolean | number + rounds?: boolean | number + steam_id?: boolean | number + survival_pct?: boolean | number + time_to_damage_s?: boolean | number + traded_death_pct?: boolean | number + util_efficiency?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Ordering options when selecting data from "player_career_stats_v". */ +export interface player_career_stats_v_order_by {accuracy?: (order_by | null),accuracy_spotted?: (order_by | null),counter_strafe_pct?: (order_by | null),crosshair_deg?: (order_by | null),enemy_blind_pr?: (order_by | null),flash_assists_pr?: (order_by | null),hs_pct?: (order_by | null),kast_pct?: (order_by | null),maps?: (order_by | null),premier_rank?: (order_by | null),rounds?: (order_by | null),steam_id?: (order_by | null),survival_pct?: (order_by | null),time_to_damage_s?: (order_by | null),traded_death_pct?: (order_by | null),util_efficiency?: (order_by | null)} + + +/** aggregate stddev on columns */ +export interface player_career_stats_v_stddev_fieldsGenqlSelection{ + accuracy?: boolean | number + accuracy_spotted?: boolean | number + counter_strafe_pct?: boolean | number + crosshair_deg?: boolean | number + enemy_blind_pr?: boolean | number + flash_assists_pr?: boolean | number + hs_pct?: boolean | number + kast_pct?: boolean | number + maps?: boolean | number + premier_rank?: boolean | number + rounds?: boolean | number + steam_id?: boolean | number + survival_pct?: boolean | number + time_to_damage_s?: boolean | number + traded_death_pct?: boolean | number + util_efficiency?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface player_career_stats_v_stddev_pop_fieldsGenqlSelection{ + accuracy?: boolean | number + accuracy_spotted?: boolean | number + counter_strafe_pct?: boolean | number + crosshair_deg?: boolean | number + enemy_blind_pr?: boolean | number + flash_assists_pr?: boolean | number + hs_pct?: boolean | number + kast_pct?: boolean | number + maps?: boolean | number + premier_rank?: boolean | number + rounds?: boolean | number + steam_id?: boolean | number + survival_pct?: boolean | number + time_to_damage_s?: boolean | number + traded_death_pct?: boolean | number + util_efficiency?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface player_career_stats_v_stddev_samp_fieldsGenqlSelection{ + accuracy?: boolean | number + accuracy_spotted?: boolean | number + counter_strafe_pct?: boolean | number + crosshair_deg?: boolean | number + enemy_blind_pr?: boolean | number + flash_assists_pr?: boolean | number + hs_pct?: boolean | number + kast_pct?: boolean | number + maps?: boolean | number + premier_rank?: boolean | number + rounds?: boolean | number + steam_id?: boolean | number + survival_pct?: boolean | number + time_to_damage_s?: boolean | number + traded_death_pct?: boolean | number + util_efficiency?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "player_career_stats_v" */ +export interface player_career_stats_v_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: player_career_stats_v_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface player_career_stats_v_stream_cursor_value_input {accuracy?: (Scalars['numeric'] | null),accuracy_spotted?: (Scalars['numeric'] | null),counter_strafe_pct?: (Scalars['numeric'] | null),crosshair_deg?: (Scalars['numeric'] | null),enemy_blind_pr?: (Scalars['numeric'] | null),flash_assists_pr?: (Scalars['numeric'] | null),hs_pct?: (Scalars['numeric'] | null),kast_pct?: (Scalars['numeric'] | null),maps?: (Scalars['Int'] | null),premier_rank?: (Scalars['Int'] | null),rounds?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null),survival_pct?: (Scalars['numeric'] | null),time_to_damage_s?: (Scalars['numeric'] | null),traded_death_pct?: (Scalars['numeric'] | null),util_efficiency?: (Scalars['numeric'] | null)} + + +/** aggregate sum on columns */ +export interface player_career_stats_v_sum_fieldsGenqlSelection{ + accuracy?: boolean | number + accuracy_spotted?: boolean | number + counter_strafe_pct?: boolean | number + crosshair_deg?: boolean | number + enemy_blind_pr?: boolean | number + flash_assists_pr?: boolean | number + hs_pct?: boolean | number + kast_pct?: boolean | number + maps?: boolean | number + premier_rank?: boolean | number + rounds?: boolean | number + steam_id?: boolean | number + survival_pct?: boolean | number + time_to_damage_s?: boolean | number + traded_death_pct?: boolean | number + util_efficiency?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_pop on columns */ +export interface player_career_stats_v_var_pop_fieldsGenqlSelection{ + accuracy?: boolean | number + accuracy_spotted?: boolean | number + counter_strafe_pct?: boolean | number + crosshair_deg?: boolean | number + enemy_blind_pr?: boolean | number + flash_assists_pr?: boolean | number + hs_pct?: boolean | number + kast_pct?: boolean | number + maps?: boolean | number + premier_rank?: boolean | number + rounds?: boolean | number + steam_id?: boolean | number + survival_pct?: boolean | number + time_to_damage_s?: boolean | number + traded_death_pct?: boolean | number + util_efficiency?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface player_career_stats_v_var_samp_fieldsGenqlSelection{ + accuracy?: boolean | number + accuracy_spotted?: boolean | number + counter_strafe_pct?: boolean | number + crosshair_deg?: boolean | number + enemy_blind_pr?: boolean | number + flash_assists_pr?: boolean | number + hs_pct?: boolean | number + kast_pct?: boolean | number + maps?: boolean | number + premier_rank?: boolean | number + rounds?: boolean | number + steam_id?: boolean | number + survival_pct?: boolean | number + time_to_damage_s?: boolean | number + traded_death_pct?: boolean | number + util_efficiency?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface player_career_stats_v_variance_fieldsGenqlSelection{ + accuracy?: boolean | number + accuracy_spotted?: boolean | number + counter_strafe_pct?: boolean | number + crosshair_deg?: boolean | number + enemy_blind_pr?: boolean | number + flash_assists_pr?: boolean | number + hs_pct?: boolean | number + kast_pct?: boolean | number + maps?: boolean | number + premier_rank?: boolean | number + rounds?: boolean | number + steam_id?: boolean | number + survival_pct?: boolean | number + time_to_damage_s?: boolean | number + traded_death_pct?: boolean | number + util_efficiency?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "player_damages" */ +export interface player_damagesGenqlSelection{ + armor?: boolean | number + attacked_location?: boolean | number + attacked_location_coordinates?: boolean | number + /** An object relationship */ + attacked_player?: playersGenqlSelection + attacked_steam_id?: boolean | number + attacked_team?: boolean | number + attacker_location?: boolean | number + attacker_location_coordinates?: boolean | number + attacker_steam_id?: boolean | number + attacker_team?: boolean | number + damage?: boolean | number + damage_armor?: boolean | number + deleted_at?: boolean | number + health?: boolean | number + hitgroup?: boolean | number + id?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + match_id?: boolean | number + /** An object relationship */ + match_map?: match_mapsGenqlSelection + match_map_id?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + round?: boolean | number + /** A computed field, executes function "is_team_damage" */ + team_damage?: boolean | number + time?: boolean | number + with?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "player_damages" */ +export interface player_damages_aggregateGenqlSelection{ + aggregate?: player_damages_aggregate_fieldsGenqlSelection + nodes?: player_damagesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface player_damages_aggregate_bool_exp {count?: (player_damages_aggregate_bool_exp_count | null)} + +export interface player_damages_aggregate_bool_exp_count {arguments?: (player_damages_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (player_damages_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "player_damages" */ +export interface player_damages_aggregate_fieldsGenqlSelection{ + avg?: player_damages_avg_fieldsGenqlSelection + count?: { __args: {columns?: (player_damages_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: player_damages_max_fieldsGenqlSelection + min?: player_damages_min_fieldsGenqlSelection + stddev?: player_damages_stddev_fieldsGenqlSelection + stddev_pop?: player_damages_stddev_pop_fieldsGenqlSelection + stddev_samp?: player_damages_stddev_samp_fieldsGenqlSelection + sum?: player_damages_sum_fieldsGenqlSelection + var_pop?: player_damages_var_pop_fieldsGenqlSelection + var_samp?: player_damages_var_samp_fieldsGenqlSelection + variance?: player_damages_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "player_damages" */ +export interface player_damages_aggregate_order_by {avg?: (player_damages_avg_order_by | null),count?: (order_by | null),max?: (player_damages_max_order_by | null),min?: (player_damages_min_order_by | null),stddev?: (player_damages_stddev_order_by | null),stddev_pop?: (player_damages_stddev_pop_order_by | null),stddev_samp?: (player_damages_stddev_samp_order_by | null),sum?: (player_damages_sum_order_by | null),var_pop?: (player_damages_var_pop_order_by | null),var_samp?: (player_damages_var_samp_order_by | null),variance?: (player_damages_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "player_damages" */ +export interface player_damages_arr_rel_insert_input {data: player_damages_insert_input[], +/** upsert condition */ +on_conflict?: (player_damages_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface player_damages_avg_fieldsGenqlSelection{ + armor?: boolean | number + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + damage?: boolean | number + damage_armor?: boolean | number + health?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "player_damages" */ +export interface player_damages_avg_order_by {armor?: (order_by | null),attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),damage?: (order_by | null),damage_armor?: (order_by | null),health?: (order_by | null),round?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "player_damages". All fields are combined with a logical 'AND'. */ +export interface player_damages_bool_exp {_and?: (player_damages_bool_exp[] | null),_not?: (player_damages_bool_exp | null),_or?: (player_damages_bool_exp[] | null),armor?: (Int_comparison_exp | null),attacked_location?: (String_comparison_exp | null),attacked_location_coordinates?: (String_comparison_exp | null),attacked_player?: (players_bool_exp | null),attacked_steam_id?: (bigint_comparison_exp | null),attacked_team?: (String_comparison_exp | null),attacker_location?: (String_comparison_exp | null),attacker_location_coordinates?: (String_comparison_exp | null),attacker_steam_id?: (bigint_comparison_exp | null),attacker_team?: (String_comparison_exp | null),damage?: (Int_comparison_exp | null),damage_armor?: (Int_comparison_exp | null),deleted_at?: (timestamptz_comparison_exp | null),health?: (Int_comparison_exp | null),hitgroup?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_id?: (uuid_comparison_exp | null),player?: (players_bool_exp | null),round?: (numeric_comparison_exp | null),team_damage?: (Boolean_comparison_exp | null),time?: (timestamptz_comparison_exp | null),with?: (String_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "player_damages" */ +export interface player_damages_inc_input {armor?: (Scalars['Int'] | null),attacked_steam_id?: (Scalars['bigint'] | null),attacker_steam_id?: (Scalars['bigint'] | null),damage?: (Scalars['Int'] | null),damage_armor?: (Scalars['Int'] | null),health?: (Scalars['Int'] | null),round?: (Scalars['numeric'] | null)} + + +/** input type for inserting data into table "player_damages" */ +export interface player_damages_insert_input {armor?: (Scalars['Int'] | null),attacked_location?: (Scalars['String'] | null),attacked_location_coordinates?: (Scalars['String'] | null),attacked_player?: (players_obj_rel_insert_input | null),attacked_steam_id?: (Scalars['bigint'] | null),attacked_team?: (Scalars['String'] | null),attacker_location?: (Scalars['String'] | null),attacker_location_coordinates?: (Scalars['String'] | null),attacker_steam_id?: (Scalars['bigint'] | null),attacker_team?: (Scalars['String'] | null),damage?: (Scalars['Int'] | null),damage_armor?: (Scalars['Int'] | null),deleted_at?: (Scalars['timestamptz'] | null),health?: (Scalars['Int'] | null),hitgroup?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_map?: (match_maps_obj_rel_insert_input | null),match_map_id?: (Scalars['uuid'] | null),player?: (players_obj_rel_insert_input | null),round?: (Scalars['numeric'] | null),time?: (Scalars['timestamptz'] | null),with?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface player_damages_max_fieldsGenqlSelection{ + armor?: boolean | number + attacked_location?: boolean | number + attacked_location_coordinates?: boolean | number + attacked_steam_id?: boolean | number + attacked_team?: boolean | number + attacker_location?: boolean | number + attacker_location_coordinates?: boolean | number + attacker_steam_id?: boolean | number + attacker_team?: boolean | number + damage?: boolean | number + damage_armor?: boolean | number + deleted_at?: boolean | number + health?: boolean | number + hitgroup?: boolean | number + id?: boolean | number + match_id?: boolean | number + match_map_id?: boolean | number + round?: boolean | number + time?: boolean | number + with?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "player_damages" */ +export interface player_damages_max_order_by {armor?: (order_by | null),attacked_location?: (order_by | null),attacked_location_coordinates?: (order_by | null),attacked_steam_id?: (order_by | null),attacked_team?: (order_by | null),attacker_location?: (order_by | null),attacker_location_coordinates?: (order_by | null),attacker_steam_id?: (order_by | null),attacker_team?: (order_by | null),damage?: (order_by | null),damage_armor?: (order_by | null),deleted_at?: (order_by | null),health?: (order_by | null),hitgroup?: (order_by | null),id?: (order_by | null),match_id?: (order_by | null),match_map_id?: (order_by | null),round?: (order_by | null),time?: (order_by | null),with?: (order_by | null)} + + +/** aggregate min on columns */ +export interface player_damages_min_fieldsGenqlSelection{ + armor?: boolean | number + attacked_location?: boolean | number + attacked_location_coordinates?: boolean | number + attacked_steam_id?: boolean | number + attacked_team?: boolean | number + attacker_location?: boolean | number + attacker_location_coordinates?: boolean | number + attacker_steam_id?: boolean | number + attacker_team?: boolean | number + damage?: boolean | number + damage_armor?: boolean | number + deleted_at?: boolean | number + health?: boolean | number + hitgroup?: boolean | number + id?: boolean | number + match_id?: boolean | number + match_map_id?: boolean | number + round?: boolean | number + time?: boolean | number + with?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "player_damages" */ +export interface player_damages_min_order_by {armor?: (order_by | null),attacked_location?: (order_by | null),attacked_location_coordinates?: (order_by | null),attacked_steam_id?: (order_by | null),attacked_team?: (order_by | null),attacker_location?: (order_by | null),attacker_location_coordinates?: (order_by | null),attacker_steam_id?: (order_by | null),attacker_team?: (order_by | null),damage?: (order_by | null),damage_armor?: (order_by | null),deleted_at?: (order_by | null),health?: (order_by | null),hitgroup?: (order_by | null),id?: (order_by | null),match_id?: (order_by | null),match_map_id?: (order_by | null),round?: (order_by | null),time?: (order_by | null),with?: (order_by | null)} + + +/** response of any mutation on the table "player_damages" */ +export interface player_damages_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: player_damagesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "player_damages" */ +export interface player_damages_on_conflict {constraint: player_damages_constraint,update_columns?: player_damages_update_column[],where?: (player_damages_bool_exp | null)} + + +/** Ordering options when selecting data from "player_damages". */ +export interface player_damages_order_by {armor?: (order_by | null),attacked_location?: (order_by | null),attacked_location_coordinates?: (order_by | null),attacked_player?: (players_order_by | null),attacked_steam_id?: (order_by | null),attacked_team?: (order_by | null),attacker_location?: (order_by | null),attacker_location_coordinates?: (order_by | null),attacker_steam_id?: (order_by | null),attacker_team?: (order_by | null),damage?: (order_by | null),damage_armor?: (order_by | null),deleted_at?: (order_by | null),health?: (order_by | null),hitgroup?: (order_by | null),id?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_id?: (order_by | null),player?: (players_order_by | null),round?: (order_by | null),team_damage?: (order_by | null),time?: (order_by | null),with?: (order_by | null)} + + +/** primary key columns input for table: player_damages */ +export interface player_damages_pk_columns_input {id: Scalars['uuid'],match_map_id: Scalars['uuid'],time: Scalars['timestamptz']} + + +/** input type for updating data in table "player_damages" */ +export interface player_damages_set_input {armor?: (Scalars['Int'] | null),attacked_location?: (Scalars['String'] | null),attacked_location_coordinates?: (Scalars['String'] | null),attacked_steam_id?: (Scalars['bigint'] | null),attacked_team?: (Scalars['String'] | null),attacker_location?: (Scalars['String'] | null),attacker_location_coordinates?: (Scalars['String'] | null),attacker_steam_id?: (Scalars['bigint'] | null),attacker_team?: (Scalars['String'] | null),damage?: (Scalars['Int'] | null),damage_armor?: (Scalars['Int'] | null),deleted_at?: (Scalars['timestamptz'] | null),health?: (Scalars['Int'] | null),hitgroup?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),round?: (Scalars['numeric'] | null),time?: (Scalars['timestamptz'] | null),with?: (Scalars['String'] | null)} + + +/** aggregate stddev on columns */ +export interface player_damages_stddev_fieldsGenqlSelection{ + armor?: boolean | number + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + damage?: boolean | number + damage_armor?: boolean | number + health?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "player_damages" */ +export interface player_damages_stddev_order_by {armor?: (order_by | null),attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),damage?: (order_by | null),damage_armor?: (order_by | null),health?: (order_by | null),round?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface player_damages_stddev_pop_fieldsGenqlSelection{ + armor?: boolean | number + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + damage?: boolean | number + damage_armor?: boolean | number + health?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "player_damages" */ +export interface player_damages_stddev_pop_order_by {armor?: (order_by | null),attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),damage?: (order_by | null),damage_armor?: (order_by | null),health?: (order_by | null),round?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface player_damages_stddev_samp_fieldsGenqlSelection{ + armor?: boolean | number + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + damage?: boolean | number + damage_armor?: boolean | number + health?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "player_damages" */ +export interface player_damages_stddev_samp_order_by {armor?: (order_by | null),attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),damage?: (order_by | null),damage_armor?: (order_by | null),health?: (order_by | null),round?: (order_by | null)} + + +/** Streaming cursor of the table "player_damages" */ +export interface player_damages_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: player_damages_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface player_damages_stream_cursor_value_input {armor?: (Scalars['Int'] | null),attacked_location?: (Scalars['String'] | null),attacked_location_coordinates?: (Scalars['String'] | null),attacked_steam_id?: (Scalars['bigint'] | null),attacked_team?: (Scalars['String'] | null),attacker_location?: (Scalars['String'] | null),attacker_location_coordinates?: (Scalars['String'] | null),attacker_steam_id?: (Scalars['bigint'] | null),attacker_team?: (Scalars['String'] | null),damage?: (Scalars['Int'] | null),damage_armor?: (Scalars['Int'] | null),deleted_at?: (Scalars['timestamptz'] | null),health?: (Scalars['Int'] | null),hitgroup?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),round?: (Scalars['numeric'] | null),time?: (Scalars['timestamptz'] | null),with?: (Scalars['String'] | null)} + + +/** aggregate sum on columns */ +export interface player_damages_sum_fieldsGenqlSelection{ + armor?: boolean | number + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + damage?: boolean | number + damage_armor?: boolean | number + health?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "player_damages" */ +export interface player_damages_sum_order_by {armor?: (order_by | null),attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),damage?: (order_by | null),damage_armor?: (order_by | null),health?: (order_by | null),round?: (order_by | null)} + +export interface player_damages_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (player_damages_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (player_damages_set_input | null), +/** filter the rows which have to be updated */ +where: player_damages_bool_exp} + + +/** aggregate var_pop on columns */ +export interface player_damages_var_pop_fieldsGenqlSelection{ + armor?: boolean | number + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + damage?: boolean | number + damage_armor?: boolean | number + health?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "player_damages" */ +export interface player_damages_var_pop_order_by {armor?: (order_by | null),attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),damage?: (order_by | null),damage_armor?: (order_by | null),health?: (order_by | null),round?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface player_damages_var_samp_fieldsGenqlSelection{ + armor?: boolean | number + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + damage?: boolean | number + damage_armor?: boolean | number + health?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "player_damages" */ +export interface player_damages_var_samp_order_by {armor?: (order_by | null),attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),damage?: (order_by | null),damage_armor?: (order_by | null),health?: (order_by | null),round?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface player_damages_variance_fieldsGenqlSelection{ + armor?: boolean | number + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + damage?: boolean | number + damage_armor?: boolean | number + health?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "player_damages" */ +export interface player_damages_variance_order_by {armor?: (order_by | null),attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),damage?: (order_by | null),damage_armor?: (order_by | null),health?: (order_by | null),round?: (order_by | null)} + + +/** columns and relationships of "player_elo" */ +export interface player_eloGenqlSelection{ + actual_score?: boolean | number + assists?: boolean | number + change?: boolean | number + created_at?: boolean | number + current?: boolean | number + damage?: boolean | number + damage_percent?: boolean | number + deaths?: boolean | number + expected_score?: boolean | number + impact?: boolean | number + k_factor?: boolean | number + kda?: boolean | number + kills?: boolean | number + map_losses?: boolean | number + map_wins?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + match_id?: boolean | number + opponent_team_elo_avg?: boolean | number + performance_multiplier?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + player_team_elo_avg?: boolean | number + rating_for_expected?: boolean | number + /** An object relationship */ + season?: seasonsGenqlSelection + season_id?: boolean | number + series_multiplier?: boolean | number + steam_id?: boolean | number + team_avg_kda?: boolean | number + type?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "player_elo" */ +export interface player_elo_aggregateGenqlSelection{ + aggregate?: player_elo_aggregate_fieldsGenqlSelection + nodes?: player_eloGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "player_elo" */ +export interface player_elo_aggregate_fieldsGenqlSelection{ + avg?: player_elo_avg_fieldsGenqlSelection + count?: { __args: {columns?: (player_elo_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: player_elo_max_fieldsGenqlSelection + min?: player_elo_min_fieldsGenqlSelection + stddev?: player_elo_stddev_fieldsGenqlSelection + stddev_pop?: player_elo_stddev_pop_fieldsGenqlSelection + stddev_samp?: player_elo_stddev_samp_fieldsGenqlSelection + sum?: player_elo_sum_fieldsGenqlSelection + var_pop?: player_elo_var_pop_fieldsGenqlSelection + var_samp?: player_elo_var_samp_fieldsGenqlSelection + variance?: player_elo_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface player_elo_avg_fieldsGenqlSelection{ + actual_score?: boolean | number + assists?: boolean | number + change?: boolean | number + current?: boolean | number + damage?: boolean | number + damage_percent?: boolean | number + deaths?: boolean | number + expected_score?: boolean | number + impact?: boolean | number + k_factor?: boolean | number + kda?: boolean | number + kills?: boolean | number + map_losses?: boolean | number + map_wins?: boolean | number + opponent_team_elo_avg?: boolean | number + performance_multiplier?: boolean | number + player_team_elo_avg?: boolean | number + rating_for_expected?: boolean | number + series_multiplier?: boolean | number + steam_id?: boolean | number + team_avg_kda?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "player_elo". All fields are combined with a logical 'AND'. */ +export interface player_elo_bool_exp {_and?: (player_elo_bool_exp[] | null),_not?: (player_elo_bool_exp | null),_or?: (player_elo_bool_exp[] | null),actual_score?: (float8_comparison_exp | null),assists?: (Int_comparison_exp | null),change?: (numeric_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),current?: (numeric_comparison_exp | null),damage?: (Int_comparison_exp | null),damage_percent?: (float8_comparison_exp | null),deaths?: (Int_comparison_exp | null),expected_score?: (float8_comparison_exp | null),impact?: (numeric_comparison_exp | null),k_factor?: (Int_comparison_exp | null),kda?: (float8_comparison_exp | null),kills?: (Int_comparison_exp | null),map_losses?: (Int_comparison_exp | null),map_wins?: (Int_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),opponent_team_elo_avg?: (float8_comparison_exp | null),performance_multiplier?: (float8_comparison_exp | null),player?: (players_bool_exp | null),player_team_elo_avg?: (float8_comparison_exp | null),rating_for_expected?: (float8_comparison_exp | null),season?: (seasons_bool_exp | null),season_id?: (uuid_comparison_exp | null),series_multiplier?: (Int_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),team_avg_kda?: (float8_comparison_exp | null),type?: (e_match_types_enum_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "player_elo" */ +export interface player_elo_inc_input {actual_score?: (Scalars['float8'] | null),assists?: (Scalars['Int'] | null),change?: (Scalars['numeric'] | null),current?: (Scalars['numeric'] | null),damage?: (Scalars['Int'] | null),damage_percent?: (Scalars['float8'] | null),deaths?: (Scalars['Int'] | null),expected_score?: (Scalars['float8'] | null),impact?: (Scalars['numeric'] | 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_team_elo_avg?: (Scalars['float8'] | null),rating_for_expected?: (Scalars['float8'] | null),series_multiplier?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null),team_avg_kda?: (Scalars['float8'] | null)} + + +/** input type for inserting data into table "player_elo" */ +export interface player_elo_insert_input {actual_score?: (Scalars['float8'] | null),assists?: (Scalars['Int'] | null),change?: (Scalars['numeric'] | null),created_at?: (Scalars['timestamptz'] | null),current?: (Scalars['numeric'] | null),damage?: (Scalars['Int'] | null),damage_percent?: (Scalars['float8'] | null),deaths?: (Scalars['Int'] | null),expected_score?: (Scalars['float8'] | null),impact?: (Scalars['numeric'] | null),k_factor?: (Scalars['Int'] | null),kda?: (Scalars['float8'] | null),kills?: (Scalars['Int'] | null),map_losses?: (Scalars['Int'] | null),map_wins?: (Scalars['Int'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),opponent_team_elo_avg?: (Scalars['float8'] | null),performance_multiplier?: (Scalars['float8'] | null),player?: (players_obj_rel_insert_input | null),player_team_elo_avg?: (Scalars['float8'] | null),rating_for_expected?: (Scalars['float8'] | null),season?: (seasons_obj_rel_insert_input | null),season_id?: (Scalars['uuid'] | null),series_multiplier?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null),team_avg_kda?: (Scalars['float8'] | null),type?: (e_match_types_enum | null)} + + +/** aggregate max on columns */ +export interface player_elo_max_fieldsGenqlSelection{ + actual_score?: boolean | number + assists?: boolean | number + change?: boolean | number + created_at?: boolean | number + current?: boolean | number + damage?: boolean | number + damage_percent?: boolean | number + deaths?: boolean | number + expected_score?: boolean | number + impact?: boolean | number + k_factor?: boolean | number + kda?: boolean | number + kills?: boolean | number + map_losses?: boolean | number + map_wins?: boolean | number + match_id?: boolean | number + opponent_team_elo_avg?: boolean | number + performance_multiplier?: boolean | number + player_team_elo_avg?: boolean | number + rating_for_expected?: boolean | number + season_id?: boolean | number + series_multiplier?: boolean | number + steam_id?: boolean | number + team_avg_kda?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface player_elo_min_fieldsGenqlSelection{ + actual_score?: boolean | number + assists?: boolean | number + change?: boolean | number + created_at?: boolean | number + current?: boolean | number + damage?: boolean | number + damage_percent?: boolean | number + deaths?: boolean | number + expected_score?: boolean | number + impact?: boolean | number + k_factor?: boolean | number + kda?: boolean | number + kills?: boolean | number + map_losses?: boolean | number + map_wins?: boolean | number + match_id?: boolean | number + opponent_team_elo_avg?: boolean | number + performance_multiplier?: boolean | number + player_team_elo_avg?: boolean | number + rating_for_expected?: boolean | number + season_id?: boolean | number + series_multiplier?: boolean | number + steam_id?: boolean | number + team_avg_kda?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "player_elo" */ +export interface player_elo_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: player_eloGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "player_elo" */ +export interface player_elo_on_conflict {constraint: player_elo_constraint,update_columns?: player_elo_update_column[],where?: (player_elo_bool_exp | null)} + + +/** Ordering options when selecting data from "player_elo". */ +export interface player_elo_order_by {actual_score?: (order_by | null),assists?: (order_by | null),change?: (order_by | null),created_at?: (order_by | null),current?: (order_by | null),damage?: (order_by | null),damage_percent?: (order_by | null),deaths?: (order_by | null),expected_score?: (order_by | null),impact?: (order_by | null),k_factor?: (order_by | null),kda?: (order_by | null),kills?: (order_by | null),map_losses?: (order_by | null),map_wins?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),opponent_team_elo_avg?: (order_by | null),performance_multiplier?: (order_by | null),player?: (players_order_by | null),player_team_elo_avg?: (order_by | null),rating_for_expected?: (order_by | null),season?: (seasons_order_by | null),season_id?: (order_by | null),series_multiplier?: (order_by | null),steam_id?: (order_by | null),team_avg_kda?: (order_by | null),type?: (order_by | null)} + + +/** primary key columns input for table: player_elo */ +export interface player_elo_pk_columns_input {match_id: Scalars['uuid'],steam_id: Scalars['bigint'],type: e_match_types_enum} + + +/** input type for updating data in table "player_elo" */ +export interface player_elo_set_input {actual_score?: (Scalars['float8'] | null),assists?: (Scalars['Int'] | null),change?: (Scalars['numeric'] | null),created_at?: (Scalars['timestamptz'] | null),current?: (Scalars['numeric'] | null),damage?: (Scalars['Int'] | null),damage_percent?: (Scalars['float8'] | null),deaths?: (Scalars['Int'] | null),expected_score?: (Scalars['float8'] | null),impact?: (Scalars['numeric'] | null),k_factor?: (Scalars['Int'] | null),kda?: (Scalars['float8'] | null),kills?: (Scalars['Int'] | null),map_losses?: (Scalars['Int'] | null),map_wins?: (Scalars['Int'] | null),match_id?: (Scalars['uuid'] | null),opponent_team_elo_avg?: (Scalars['float8'] | null),performance_multiplier?: (Scalars['float8'] | null),player_team_elo_avg?: (Scalars['float8'] | null),rating_for_expected?: (Scalars['float8'] | null),season_id?: (Scalars['uuid'] | null),series_multiplier?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null),team_avg_kda?: (Scalars['float8'] | null),type?: (e_match_types_enum | null)} + + +/** aggregate stddev on columns */ +export interface player_elo_stddev_fieldsGenqlSelection{ + actual_score?: boolean | number + assists?: boolean | number + change?: boolean | number + current?: boolean | number + damage?: boolean | number + damage_percent?: boolean | number + deaths?: boolean | number + expected_score?: boolean | number + impact?: boolean | number + k_factor?: boolean | number + kda?: boolean | number + kills?: boolean | number + map_losses?: boolean | number + map_wins?: boolean | number + opponent_team_elo_avg?: boolean | number + performance_multiplier?: boolean | number + player_team_elo_avg?: boolean | number + rating_for_expected?: boolean | number + series_multiplier?: boolean | number + steam_id?: boolean | number + team_avg_kda?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface player_elo_stddev_pop_fieldsGenqlSelection{ + actual_score?: boolean | number + assists?: boolean | number + change?: boolean | number + current?: boolean | number + damage?: boolean | number + damage_percent?: boolean | number + deaths?: boolean | number + expected_score?: boolean | number + impact?: boolean | number + k_factor?: boolean | number + kda?: boolean | number + kills?: boolean | number + map_losses?: boolean | number + map_wins?: boolean | number + opponent_team_elo_avg?: boolean | number + performance_multiplier?: boolean | number + player_team_elo_avg?: boolean | number + rating_for_expected?: boolean | number + series_multiplier?: boolean | number + steam_id?: boolean | number + team_avg_kda?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface player_elo_stddev_samp_fieldsGenqlSelection{ + actual_score?: boolean | number + assists?: boolean | number + change?: boolean | number + current?: boolean | number + damage?: boolean | number + damage_percent?: boolean | number + deaths?: boolean | number + expected_score?: boolean | number + impact?: boolean | number + k_factor?: boolean | number + kda?: boolean | number + kills?: boolean | number + map_losses?: boolean | number + map_wins?: boolean | number + opponent_team_elo_avg?: boolean | number + performance_multiplier?: boolean | number + player_team_elo_avg?: boolean | number + rating_for_expected?: boolean | number + series_multiplier?: boolean | number + steam_id?: boolean | number + team_avg_kda?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "player_elo" */ +export interface player_elo_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: player_elo_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface player_elo_stream_cursor_value_input {actual_score?: (Scalars['float8'] | null),assists?: (Scalars['Int'] | null),change?: (Scalars['numeric'] | null),created_at?: (Scalars['timestamptz'] | null),current?: (Scalars['numeric'] | null),damage?: (Scalars['Int'] | null),damage_percent?: (Scalars['float8'] | null),deaths?: (Scalars['Int'] | null),expected_score?: (Scalars['float8'] | null),impact?: (Scalars['numeric'] | null),k_factor?: (Scalars['Int'] | null),kda?: (Scalars['float8'] | null),kills?: (Scalars['Int'] | null),map_losses?: (Scalars['Int'] | null),map_wins?: (Scalars['Int'] | null),match_id?: (Scalars['uuid'] | null),opponent_team_elo_avg?: (Scalars['float8'] | null),performance_multiplier?: (Scalars['float8'] | null),player_team_elo_avg?: (Scalars['float8'] | null),rating_for_expected?: (Scalars['float8'] | null),season_id?: (Scalars['uuid'] | null),series_multiplier?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null),team_avg_kda?: (Scalars['float8'] | null),type?: (e_match_types_enum | null)} + + +/** aggregate sum on columns */ +export interface player_elo_sum_fieldsGenqlSelection{ + actual_score?: boolean | number + assists?: boolean | number + change?: boolean | number + current?: boolean | number + damage?: boolean | number + damage_percent?: boolean | number + deaths?: boolean | number + expected_score?: boolean | number + impact?: boolean | number + k_factor?: boolean | number + kda?: boolean | number + kills?: boolean | number + map_losses?: boolean | number + map_wins?: boolean | number + opponent_team_elo_avg?: boolean | number + performance_multiplier?: boolean | number + player_team_elo_avg?: boolean | number + rating_for_expected?: boolean | number + series_multiplier?: boolean | number + steam_id?: boolean | number + team_avg_kda?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface player_elo_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (player_elo_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (player_elo_set_input | null), +/** filter the rows which have to be updated */ +where: player_elo_bool_exp} + + +/** aggregate var_pop on columns */ +export interface player_elo_var_pop_fieldsGenqlSelection{ + actual_score?: boolean | number + assists?: boolean | number + change?: boolean | number + current?: boolean | number + damage?: boolean | number + damage_percent?: boolean | number + deaths?: boolean | number + expected_score?: boolean | number + impact?: boolean | number + k_factor?: boolean | number + kda?: boolean | number + kills?: boolean | number + map_losses?: boolean | number + map_wins?: boolean | number + opponent_team_elo_avg?: boolean | number + performance_multiplier?: boolean | number + player_team_elo_avg?: boolean | number + rating_for_expected?: boolean | number + series_multiplier?: boolean | number + steam_id?: boolean | number + team_avg_kda?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface player_elo_var_samp_fieldsGenqlSelection{ + actual_score?: boolean | number + assists?: boolean | number + change?: boolean | number + current?: boolean | number + damage?: boolean | number + damage_percent?: boolean | number + deaths?: boolean | number + expected_score?: boolean | number + impact?: boolean | number + k_factor?: boolean | number + kda?: boolean | number + kills?: boolean | number + map_losses?: boolean | number + map_wins?: boolean | number + opponent_team_elo_avg?: boolean | number + performance_multiplier?: boolean | number + player_team_elo_avg?: boolean | number + rating_for_expected?: boolean | number + series_multiplier?: boolean | number + steam_id?: boolean | number + team_avg_kda?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface player_elo_variance_fieldsGenqlSelection{ + actual_score?: boolean | number + assists?: boolean | number + change?: boolean | number + current?: boolean | number + damage?: boolean | number + damage_percent?: boolean | number + deaths?: boolean | number + expected_score?: boolean | number + impact?: boolean | number + k_factor?: boolean | number + kda?: boolean | number + kills?: boolean | number + map_losses?: boolean | number + map_wins?: boolean | number + opponent_team_elo_avg?: boolean | number + performance_multiplier?: boolean | number + player_team_elo_avg?: boolean | number + rating_for_expected?: boolean | number + series_multiplier?: boolean | number + steam_id?: boolean | number + team_avg_kda?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "player_faceit_rank_history" */ +export interface player_faceit_rank_historyGenqlSelection{ + elo?: boolean | number + id?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + match_id?: boolean | number + observed_at?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + previous_rank?: boolean | number + skill_level?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "player_faceit_rank_history" */ +export interface player_faceit_rank_history_aggregateGenqlSelection{ + aggregate?: player_faceit_rank_history_aggregate_fieldsGenqlSelection + nodes?: player_faceit_rank_historyGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface player_faceit_rank_history_aggregate_bool_exp {count?: (player_faceit_rank_history_aggregate_bool_exp_count | null)} + +export interface player_faceit_rank_history_aggregate_bool_exp_count {arguments?: (player_faceit_rank_history_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (player_faceit_rank_history_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "player_faceit_rank_history" */ +export interface player_faceit_rank_history_aggregate_fieldsGenqlSelection{ + avg?: player_faceit_rank_history_avg_fieldsGenqlSelection + count?: { __args: {columns?: (player_faceit_rank_history_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: player_faceit_rank_history_max_fieldsGenqlSelection + min?: player_faceit_rank_history_min_fieldsGenqlSelection + stddev?: player_faceit_rank_history_stddev_fieldsGenqlSelection + stddev_pop?: player_faceit_rank_history_stddev_pop_fieldsGenqlSelection + stddev_samp?: player_faceit_rank_history_stddev_samp_fieldsGenqlSelection + sum?: player_faceit_rank_history_sum_fieldsGenqlSelection + var_pop?: player_faceit_rank_history_var_pop_fieldsGenqlSelection + var_samp?: player_faceit_rank_history_var_samp_fieldsGenqlSelection + variance?: player_faceit_rank_history_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "player_faceit_rank_history" */ +export interface player_faceit_rank_history_aggregate_order_by {avg?: (player_faceit_rank_history_avg_order_by | null),count?: (order_by | null),max?: (player_faceit_rank_history_max_order_by | null),min?: (player_faceit_rank_history_min_order_by | null),stddev?: (player_faceit_rank_history_stddev_order_by | null),stddev_pop?: (player_faceit_rank_history_stddev_pop_order_by | null),stddev_samp?: (player_faceit_rank_history_stddev_samp_order_by | null),sum?: (player_faceit_rank_history_sum_order_by | null),var_pop?: (player_faceit_rank_history_var_pop_order_by | null),var_samp?: (player_faceit_rank_history_var_samp_order_by | null),variance?: (player_faceit_rank_history_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "player_faceit_rank_history" */ +export interface player_faceit_rank_history_arr_rel_insert_input {data: player_faceit_rank_history_insert_input[], +/** upsert condition */ +on_conflict?: (player_faceit_rank_history_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface player_faceit_rank_history_avg_fieldsGenqlSelection{ + elo?: boolean | number + previous_rank?: boolean | number + skill_level?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "player_faceit_rank_history" */ +export interface player_faceit_rank_history_avg_order_by {elo?: (order_by | null),previous_rank?: (order_by | null),skill_level?: (order_by | null),steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "player_faceit_rank_history". All fields are combined with a logical 'AND'. */ +export interface player_faceit_rank_history_bool_exp {_and?: (player_faceit_rank_history_bool_exp[] | null),_not?: (player_faceit_rank_history_bool_exp | null),_or?: (player_faceit_rank_history_bool_exp[] | null),elo?: (Int_comparison_exp | null),id?: (uuid_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),observed_at?: (timestamptz_comparison_exp | null),player?: (players_bool_exp | null),previous_rank?: (Int_comparison_exp | null),skill_level?: (Int_comparison_exp | null),steam_id?: (bigint_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "player_faceit_rank_history" */ +export interface player_faceit_rank_history_inc_input {elo?: (Scalars['Int'] | null),previous_rank?: (Scalars['Int'] | null),skill_level?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "player_faceit_rank_history" */ +export interface player_faceit_rank_history_insert_input {elo?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),observed_at?: (Scalars['timestamptz'] | null),player?: (players_obj_rel_insert_input | null),previous_rank?: (Scalars['Int'] | null),skill_level?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate max on columns */ +export interface player_faceit_rank_history_max_fieldsGenqlSelection{ + elo?: boolean | number + id?: boolean | number + match_id?: boolean | number + observed_at?: boolean | number + previous_rank?: boolean | number + skill_level?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "player_faceit_rank_history" */ +export interface player_faceit_rank_history_max_order_by {elo?: (order_by | null),id?: (order_by | null),match_id?: (order_by | null),observed_at?: (order_by | null),previous_rank?: (order_by | null),skill_level?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface player_faceit_rank_history_min_fieldsGenqlSelection{ + elo?: boolean | number + id?: boolean | number + match_id?: boolean | number + observed_at?: boolean | number + previous_rank?: boolean | number + skill_level?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "player_faceit_rank_history" */ +export interface player_faceit_rank_history_min_order_by {elo?: (order_by | null),id?: (order_by | null),match_id?: (order_by | null),observed_at?: (order_by | null),previous_rank?: (order_by | null),skill_level?: (order_by | null),steam_id?: (order_by | null)} + + +/** response of any mutation on the table "player_faceit_rank_history" */ +export interface player_faceit_rank_history_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: player_faceit_rank_historyGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "player_faceit_rank_history" */ +export interface player_faceit_rank_history_on_conflict {constraint: player_faceit_rank_history_constraint,update_columns?: player_faceit_rank_history_update_column[],where?: (player_faceit_rank_history_bool_exp | null)} + + +/** Ordering options when selecting data from "player_faceit_rank_history". */ +export interface player_faceit_rank_history_order_by {elo?: (order_by | null),id?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),observed_at?: (order_by | null),player?: (players_order_by | null),previous_rank?: (order_by | null),skill_level?: (order_by | null),steam_id?: (order_by | null)} + + +/** primary key columns input for table: player_faceit_rank_history */ +export interface player_faceit_rank_history_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "player_faceit_rank_history" */ +export interface player_faceit_rank_history_set_input {elo?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),observed_at?: (Scalars['timestamptz'] | null),previous_rank?: (Scalars['Int'] | null),skill_level?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate stddev on columns */ +export interface player_faceit_rank_history_stddev_fieldsGenqlSelection{ + elo?: boolean | number + previous_rank?: boolean | number + skill_level?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "player_faceit_rank_history" */ +export interface player_faceit_rank_history_stddev_order_by {elo?: (order_by | null),previous_rank?: (order_by | null),skill_level?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface player_faceit_rank_history_stddev_pop_fieldsGenqlSelection{ + elo?: boolean | number + previous_rank?: boolean | number + skill_level?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "player_faceit_rank_history" */ +export interface player_faceit_rank_history_stddev_pop_order_by {elo?: (order_by | null),previous_rank?: (order_by | null),skill_level?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface player_faceit_rank_history_stddev_samp_fieldsGenqlSelection{ + elo?: boolean | number + previous_rank?: boolean | number + skill_level?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "player_faceit_rank_history" */ +export interface player_faceit_rank_history_stddev_samp_order_by {elo?: (order_by | null),previous_rank?: (order_by | null),skill_level?: (order_by | null),steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "player_faceit_rank_history" */ +export interface player_faceit_rank_history_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: player_faceit_rank_history_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface player_faceit_rank_history_stream_cursor_value_input {elo?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),observed_at?: (Scalars['timestamptz'] | null),previous_rank?: (Scalars['Int'] | null),skill_level?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate sum on columns */ +export interface player_faceit_rank_history_sum_fieldsGenqlSelection{ + elo?: boolean | number + previous_rank?: boolean | number + skill_level?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "player_faceit_rank_history" */ +export interface player_faceit_rank_history_sum_order_by {elo?: (order_by | null),previous_rank?: (order_by | null),skill_level?: (order_by | null),steam_id?: (order_by | null)} + +export interface player_faceit_rank_history_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (player_faceit_rank_history_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (player_faceit_rank_history_set_input | null), +/** filter the rows which have to be updated */ +where: player_faceit_rank_history_bool_exp} + + +/** aggregate var_pop on columns */ +export interface player_faceit_rank_history_var_pop_fieldsGenqlSelection{ + elo?: boolean | number + previous_rank?: boolean | number + skill_level?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "player_faceit_rank_history" */ +export interface player_faceit_rank_history_var_pop_order_by {elo?: (order_by | null),previous_rank?: (order_by | null),skill_level?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface player_faceit_rank_history_var_samp_fieldsGenqlSelection{ + elo?: boolean | number + previous_rank?: boolean | number + skill_level?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "player_faceit_rank_history" */ +export interface player_faceit_rank_history_var_samp_order_by {elo?: (order_by | null),previous_rank?: (order_by | null),skill_level?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface player_faceit_rank_history_variance_fieldsGenqlSelection{ + elo?: boolean | number + previous_rank?: boolean | number + skill_level?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "player_faceit_rank_history" */ +export interface player_faceit_rank_history_variance_order_by {elo?: (order_by | null),previous_rank?: (order_by | null),skill_level?: (order_by | null),steam_id?: (order_by | null)} + + +/** columns and relationships of "player_flashes" */ +export interface player_flashesGenqlSelection{ + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + /** An object relationship */ + blinded?: playersGenqlSelection + deleted_at?: boolean | number + duration?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + match_id?: boolean | number + /** An object relationship */ + match_map?: match_mapsGenqlSelection + match_map_id?: boolean | number + round?: boolean | number + team_flash?: boolean | number + /** An object relationship */ + thrown_by?: playersGenqlSelection + time?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "player_flashes" */ +export interface player_flashes_aggregateGenqlSelection{ + aggregate?: player_flashes_aggregate_fieldsGenqlSelection + nodes?: player_flashesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface player_flashes_aggregate_bool_exp {bool_and?: (player_flashes_aggregate_bool_exp_bool_and | null),bool_or?: (player_flashes_aggregate_bool_exp_bool_or | null),count?: (player_flashes_aggregate_bool_exp_count | null)} + +export interface player_flashes_aggregate_bool_exp_bool_and {arguments: player_flashes_select_column_player_flashes_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (player_flashes_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface player_flashes_aggregate_bool_exp_bool_or {arguments: player_flashes_select_column_player_flashes_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (player_flashes_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface player_flashes_aggregate_bool_exp_count {arguments?: (player_flashes_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (player_flashes_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "player_flashes" */ +export interface player_flashes_aggregate_fieldsGenqlSelection{ + avg?: player_flashes_avg_fieldsGenqlSelection + count?: { __args: {columns?: (player_flashes_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: player_flashes_max_fieldsGenqlSelection + min?: player_flashes_min_fieldsGenqlSelection + stddev?: player_flashes_stddev_fieldsGenqlSelection + stddev_pop?: player_flashes_stddev_pop_fieldsGenqlSelection + stddev_samp?: player_flashes_stddev_samp_fieldsGenqlSelection + sum?: player_flashes_sum_fieldsGenqlSelection + var_pop?: player_flashes_var_pop_fieldsGenqlSelection + var_samp?: player_flashes_var_samp_fieldsGenqlSelection + variance?: player_flashes_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "player_flashes" */ +export interface player_flashes_aggregate_order_by {avg?: (player_flashes_avg_order_by | null),count?: (order_by | null),max?: (player_flashes_max_order_by | null),min?: (player_flashes_min_order_by | null),stddev?: (player_flashes_stddev_order_by | null),stddev_pop?: (player_flashes_stddev_pop_order_by | null),stddev_samp?: (player_flashes_stddev_samp_order_by | null),sum?: (player_flashes_sum_order_by | null),var_pop?: (player_flashes_var_pop_order_by | null),var_samp?: (player_flashes_var_samp_order_by | null),variance?: (player_flashes_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "player_flashes" */ +export interface player_flashes_arr_rel_insert_input {data: player_flashes_insert_input[], +/** upsert condition */ +on_conflict?: (player_flashes_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface player_flashes_avg_fieldsGenqlSelection{ + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + duration?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "player_flashes" */ +export interface player_flashes_avg_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),duration?: (order_by | null),round?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "player_flashes". All fields are combined with a logical 'AND'. */ +export interface player_flashes_bool_exp {_and?: (player_flashes_bool_exp[] | null),_not?: (player_flashes_bool_exp | null),_or?: (player_flashes_bool_exp[] | null),attacked_steam_id?: (bigint_comparison_exp | null),attacker_steam_id?: (bigint_comparison_exp | null),blinded?: (players_bool_exp | null),deleted_at?: (timestamptz_comparison_exp | null),duration?: (numeric_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_id?: (uuid_comparison_exp | null),round?: (Int_comparison_exp | null),team_flash?: (Boolean_comparison_exp | null),thrown_by?: (players_bool_exp | null),time?: (timestamptz_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "player_flashes" */ +export interface player_flashes_inc_input {attacked_steam_id?: (Scalars['bigint'] | null),attacker_steam_id?: (Scalars['bigint'] | null),duration?: (Scalars['numeric'] | null),round?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "player_flashes" */ +export interface player_flashes_insert_input {attacked_steam_id?: (Scalars['bigint'] | null),attacker_steam_id?: (Scalars['bigint'] | null),blinded?: (players_obj_rel_insert_input | null),deleted_at?: (Scalars['timestamptz'] | null),duration?: (Scalars['numeric'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_map?: (match_maps_obj_rel_insert_input | null),match_map_id?: (Scalars['uuid'] | null),round?: (Scalars['Int'] | null),team_flash?: (Scalars['Boolean'] | null),thrown_by?: (players_obj_rel_insert_input | null),time?: (Scalars['timestamptz'] | null)} + + +/** aggregate max on columns */ +export interface player_flashes_max_fieldsGenqlSelection{ + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + deleted_at?: boolean | number + duration?: boolean | number + match_id?: boolean | number + match_map_id?: boolean | number + round?: boolean | number + time?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "player_flashes" */ +export interface player_flashes_max_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),deleted_at?: (order_by | null),duration?: (order_by | null),match_id?: (order_by | null),match_map_id?: (order_by | null),round?: (order_by | null),time?: (order_by | null)} + + +/** aggregate min on columns */ +export interface player_flashes_min_fieldsGenqlSelection{ + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + deleted_at?: boolean | number + duration?: boolean | number + match_id?: boolean | number + match_map_id?: boolean | number + round?: boolean | number + time?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "player_flashes" */ +export interface player_flashes_min_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),deleted_at?: (order_by | null),duration?: (order_by | null),match_id?: (order_by | null),match_map_id?: (order_by | null),round?: (order_by | null),time?: (order_by | null)} + + +/** response of any mutation on the table "player_flashes" */ +export interface player_flashes_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: player_flashesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "player_flashes" */ +export interface player_flashes_on_conflict {constraint: player_flashes_constraint,update_columns?: player_flashes_update_column[],where?: (player_flashes_bool_exp | null)} + + +/** Ordering options when selecting data from "player_flashes". */ +export interface player_flashes_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),blinded?: (players_order_by | null),deleted_at?: (order_by | null),duration?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_id?: (order_by | null),round?: (order_by | null),team_flash?: (order_by | null),thrown_by?: (players_order_by | null),time?: (order_by | null)} + + +/** primary key columns input for table: player_flashes */ +export interface player_flashes_pk_columns_input {attacked_steam_id: Scalars['bigint'],attacker_steam_id: Scalars['bigint'],match_map_id: Scalars['uuid'],time: Scalars['timestamptz']} + + +/** input type for updating data in table "player_flashes" */ +export interface player_flashes_set_input {attacked_steam_id?: (Scalars['bigint'] | null),attacker_steam_id?: (Scalars['bigint'] | null),deleted_at?: (Scalars['timestamptz'] | null),duration?: (Scalars['numeric'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),round?: (Scalars['Int'] | null),team_flash?: (Scalars['Boolean'] | null),time?: (Scalars['timestamptz'] | null)} + + +/** aggregate stddev on columns */ +export interface player_flashes_stddev_fieldsGenqlSelection{ + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + duration?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "player_flashes" */ +export interface player_flashes_stddev_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),duration?: (order_by | null),round?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface player_flashes_stddev_pop_fieldsGenqlSelection{ + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + duration?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "player_flashes" */ +export interface player_flashes_stddev_pop_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),duration?: (order_by | null),round?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface player_flashes_stddev_samp_fieldsGenqlSelection{ + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + duration?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "player_flashes" */ +export interface player_flashes_stddev_samp_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),duration?: (order_by | null),round?: (order_by | null)} + + +/** Streaming cursor of the table "player_flashes" */ +export interface player_flashes_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: player_flashes_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface player_flashes_stream_cursor_value_input {attacked_steam_id?: (Scalars['bigint'] | null),attacker_steam_id?: (Scalars['bigint'] | null),deleted_at?: (Scalars['timestamptz'] | null),duration?: (Scalars['numeric'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),round?: (Scalars['Int'] | null),team_flash?: (Scalars['Boolean'] | null),time?: (Scalars['timestamptz'] | null)} + + +/** aggregate sum on columns */ +export interface player_flashes_sum_fieldsGenqlSelection{ + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + duration?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "player_flashes" */ +export interface player_flashes_sum_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),duration?: (order_by | null),round?: (order_by | null)} + +export interface player_flashes_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (player_flashes_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (player_flashes_set_input | null), +/** filter the rows which have to be updated */ +where: player_flashes_bool_exp} + + +/** aggregate var_pop on columns */ +export interface player_flashes_var_pop_fieldsGenqlSelection{ + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + duration?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "player_flashes" */ +export interface player_flashes_var_pop_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),duration?: (order_by | null),round?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface player_flashes_var_samp_fieldsGenqlSelection{ + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + duration?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "player_flashes" */ +export interface player_flashes_var_samp_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),duration?: (order_by | null),round?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface player_flashes_variance_fieldsGenqlSelection{ + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + duration?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "player_flashes" */ +export interface player_flashes_variance_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),duration?: (order_by | null),round?: (order_by | null)} + + +/** columns and relationships of "player_kills" */ +export interface player_killsGenqlSelection{ + assisted?: boolean | number + attacked_location?: boolean | number + attacked_location_coordinates?: boolean | number + /** An object relationship */ + attacked_player?: playersGenqlSelection + attacked_steam_id?: boolean | number + attacked_team?: boolean | number + attacker_location?: boolean | number + attacker_location_coordinates?: boolean | number + attacker_steam_id?: boolean | number + attacker_team?: boolean | number + blinded?: boolean | number + deleted_at?: boolean | number + headshot?: boolean | number + hitgroup?: boolean | number + in_air?: boolean | number + /** A computed field, executes function "is_suicide" */ + is_suicide?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + match_id?: boolean | number + /** An object relationship */ + match_map?: match_mapsGenqlSelection + match_map_id?: boolean | number + no_scope?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + round?: boolean | number + /** A computed field, executes function "is_team_kill" */ + team_kill?: boolean | number + thru_smoke?: boolean | number + thru_wall?: boolean | number + time?: boolean | number + with?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "player_kills" */ +export interface player_kills_aggregateGenqlSelection{ + aggregate?: player_kills_aggregate_fieldsGenqlSelection + nodes?: player_killsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface player_kills_aggregate_bool_exp {bool_and?: (player_kills_aggregate_bool_exp_bool_and | null),bool_or?: (player_kills_aggregate_bool_exp_bool_or | null),count?: (player_kills_aggregate_bool_exp_count | null)} + +export interface player_kills_aggregate_bool_exp_bool_and {arguments: player_kills_select_column_player_kills_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (player_kills_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface player_kills_aggregate_bool_exp_bool_or {arguments: player_kills_select_column_player_kills_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (player_kills_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface player_kills_aggregate_bool_exp_count {arguments?: (player_kills_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (player_kills_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "player_kills" */ +export interface player_kills_aggregate_fieldsGenqlSelection{ + avg?: player_kills_avg_fieldsGenqlSelection + count?: { __args: {columns?: (player_kills_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: player_kills_max_fieldsGenqlSelection + min?: player_kills_min_fieldsGenqlSelection + stddev?: player_kills_stddev_fieldsGenqlSelection + stddev_pop?: player_kills_stddev_pop_fieldsGenqlSelection + stddev_samp?: player_kills_stddev_samp_fieldsGenqlSelection + sum?: player_kills_sum_fieldsGenqlSelection + var_pop?: player_kills_var_pop_fieldsGenqlSelection + var_samp?: player_kills_var_samp_fieldsGenqlSelection + variance?: player_kills_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "player_kills" */ +export interface player_kills_aggregate_order_by {avg?: (player_kills_avg_order_by | null),count?: (order_by | null),max?: (player_kills_max_order_by | null),min?: (player_kills_min_order_by | null),stddev?: (player_kills_stddev_order_by | null),stddev_pop?: (player_kills_stddev_pop_order_by | null),stddev_samp?: (player_kills_stddev_samp_order_by | null),sum?: (player_kills_sum_order_by | null),var_pop?: (player_kills_var_pop_order_by | null),var_samp?: (player_kills_var_samp_order_by | null),variance?: (player_kills_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "player_kills" */ +export interface player_kills_arr_rel_insert_input {data: player_kills_insert_input[], +/** upsert condition */ +on_conflict?: (player_kills_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface player_kills_avg_fieldsGenqlSelection{ + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "player_kills" */ +export interface player_kills_avg_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),round?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "player_kills". All fields are combined with a logical 'AND'. */ +export interface player_kills_bool_exp {_and?: (player_kills_bool_exp[] | null),_not?: (player_kills_bool_exp | null),_or?: (player_kills_bool_exp[] | null),assisted?: (Boolean_comparison_exp | null),attacked_location?: (String_comparison_exp | null),attacked_location_coordinates?: (String_comparison_exp | null),attacked_player?: (players_bool_exp | null),attacked_steam_id?: (bigint_comparison_exp | null),attacked_team?: (String_comparison_exp | null),attacker_location?: (String_comparison_exp | null),attacker_location_coordinates?: (String_comparison_exp | null),attacker_steam_id?: (bigint_comparison_exp | null),attacker_team?: (String_comparison_exp | null),blinded?: (Boolean_comparison_exp | null),deleted_at?: (timestamptz_comparison_exp | null),headshot?: (Boolean_comparison_exp | null),hitgroup?: (String_comparison_exp | null),in_air?: (Boolean_comparison_exp | null),is_suicide?: (Boolean_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_id?: (uuid_comparison_exp | null),no_scope?: (Boolean_comparison_exp | null),player?: (players_bool_exp | null),round?: (Int_comparison_exp | null),team_kill?: (Boolean_comparison_exp | null),thru_smoke?: (Boolean_comparison_exp | null),thru_wall?: (Boolean_comparison_exp | null),time?: (timestamptz_comparison_exp | null),with?: (String_comparison_exp | null)} + + +/** columns and relationships of "player_kills_by_weapon" */ +export interface player_kills_by_weaponGenqlSelection{ + kill_count?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + player_steam_id?: boolean | number + with?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "player_kills_by_weapon" */ +export interface player_kills_by_weapon_aggregateGenqlSelection{ + aggregate?: player_kills_by_weapon_aggregate_fieldsGenqlSelection + nodes?: player_kills_by_weaponGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface player_kills_by_weapon_aggregate_bool_exp {count?: (player_kills_by_weapon_aggregate_bool_exp_count | null)} + +export interface player_kills_by_weapon_aggregate_bool_exp_count {arguments?: (player_kills_by_weapon_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (player_kills_by_weapon_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "player_kills_by_weapon" */ +export interface player_kills_by_weapon_aggregate_fieldsGenqlSelection{ + avg?: player_kills_by_weapon_avg_fieldsGenqlSelection + count?: { __args: {columns?: (player_kills_by_weapon_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: player_kills_by_weapon_max_fieldsGenqlSelection + min?: player_kills_by_weapon_min_fieldsGenqlSelection + stddev?: player_kills_by_weapon_stddev_fieldsGenqlSelection + stddev_pop?: player_kills_by_weapon_stddev_pop_fieldsGenqlSelection + stddev_samp?: player_kills_by_weapon_stddev_samp_fieldsGenqlSelection + sum?: player_kills_by_weapon_sum_fieldsGenqlSelection + var_pop?: player_kills_by_weapon_var_pop_fieldsGenqlSelection + var_samp?: player_kills_by_weapon_var_samp_fieldsGenqlSelection + variance?: player_kills_by_weapon_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "player_kills_by_weapon" */ +export interface player_kills_by_weapon_aggregate_order_by {avg?: (player_kills_by_weapon_avg_order_by | null),count?: (order_by | null),max?: (player_kills_by_weapon_max_order_by | null),min?: (player_kills_by_weapon_min_order_by | null),stddev?: (player_kills_by_weapon_stddev_order_by | null),stddev_pop?: (player_kills_by_weapon_stddev_pop_order_by | null),stddev_samp?: (player_kills_by_weapon_stddev_samp_order_by | null),sum?: (player_kills_by_weapon_sum_order_by | null),var_pop?: (player_kills_by_weapon_var_pop_order_by | null),var_samp?: (player_kills_by_weapon_var_samp_order_by | null),variance?: (player_kills_by_weapon_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "player_kills_by_weapon" */ +export interface player_kills_by_weapon_arr_rel_insert_input {data: player_kills_by_weapon_insert_input[], +/** upsert condition */ +on_conflict?: (player_kills_by_weapon_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface player_kills_by_weapon_avg_fieldsGenqlSelection{ + kill_count?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "player_kills_by_weapon" */ +export interface player_kills_by_weapon_avg_order_by {kill_count?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "player_kills_by_weapon". All fields are combined with a logical 'AND'. */ +export interface player_kills_by_weapon_bool_exp {_and?: (player_kills_by_weapon_bool_exp[] | null),_not?: (player_kills_by_weapon_bool_exp | null),_or?: (player_kills_by_weapon_bool_exp[] | null),kill_count?: (bigint_comparison_exp | null),player?: (players_bool_exp | null),player_steam_id?: (bigint_comparison_exp | null),with?: (String_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "player_kills_by_weapon" */ +export interface player_kills_by_weapon_inc_input {kill_count?: (Scalars['bigint'] | null),player_steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "player_kills_by_weapon" */ +export interface player_kills_by_weapon_insert_input {kill_count?: (Scalars['bigint'] | null),player?: (players_obj_rel_insert_input | null),player_steam_id?: (Scalars['bigint'] | null),with?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface player_kills_by_weapon_max_fieldsGenqlSelection{ + kill_count?: boolean | number + player_steam_id?: boolean | number + with?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "player_kills_by_weapon" */ +export interface player_kills_by_weapon_max_order_by {kill_count?: (order_by | null),player_steam_id?: (order_by | null),with?: (order_by | null)} + + +/** aggregate min on columns */ +export interface player_kills_by_weapon_min_fieldsGenqlSelection{ + kill_count?: boolean | number + player_steam_id?: boolean | number + with?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "player_kills_by_weapon" */ +export interface player_kills_by_weapon_min_order_by {kill_count?: (order_by | null),player_steam_id?: (order_by | null),with?: (order_by | null)} + + +/** response of any mutation on the table "player_kills_by_weapon" */ +export interface player_kills_by_weapon_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: player_kills_by_weaponGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "player_kills_by_weapon" */ +export interface player_kills_by_weapon_on_conflict {constraint: player_kills_by_weapon_constraint,update_columns?: player_kills_by_weapon_update_column[],where?: (player_kills_by_weapon_bool_exp | null)} + + +/** Ordering options when selecting data from "player_kills_by_weapon". */ +export interface player_kills_by_weapon_order_by {kill_count?: (order_by | null),player?: (players_order_by | null),player_steam_id?: (order_by | null),with?: (order_by | null)} + + +/** primary key columns input for table: player_kills_by_weapon */ +export interface player_kills_by_weapon_pk_columns_input {player_steam_id: Scalars['bigint'],with: Scalars['String']} + + +/** input type for updating data in table "player_kills_by_weapon" */ +export interface player_kills_by_weapon_set_input {kill_count?: (Scalars['bigint'] | null),player_steam_id?: (Scalars['bigint'] | null),with?: (Scalars['String'] | null)} + + +/** aggregate stddev on columns */ +export interface player_kills_by_weapon_stddev_fieldsGenqlSelection{ + kill_count?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "player_kills_by_weapon" */ +export interface player_kills_by_weapon_stddev_order_by {kill_count?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface player_kills_by_weapon_stddev_pop_fieldsGenqlSelection{ + kill_count?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "player_kills_by_weapon" */ +export interface player_kills_by_weapon_stddev_pop_order_by {kill_count?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface player_kills_by_weapon_stddev_samp_fieldsGenqlSelection{ + kill_count?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "player_kills_by_weapon" */ +export interface player_kills_by_weapon_stddev_samp_order_by {kill_count?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "player_kills_by_weapon" */ +export interface player_kills_by_weapon_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: player_kills_by_weapon_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface player_kills_by_weapon_stream_cursor_value_input {kill_count?: (Scalars['bigint'] | null),player_steam_id?: (Scalars['bigint'] | null),with?: (Scalars['String'] | null)} + + +/** aggregate sum on columns */ +export interface player_kills_by_weapon_sum_fieldsGenqlSelection{ + kill_count?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "player_kills_by_weapon" */ +export interface player_kills_by_weapon_sum_order_by {kill_count?: (order_by | null),player_steam_id?: (order_by | null)} + +export interface player_kills_by_weapon_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (player_kills_by_weapon_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (player_kills_by_weapon_set_input | null), +/** filter the rows which have to be updated */ +where: player_kills_by_weapon_bool_exp} + + +/** aggregate var_pop on columns */ +export interface player_kills_by_weapon_var_pop_fieldsGenqlSelection{ + kill_count?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "player_kills_by_weapon" */ +export interface player_kills_by_weapon_var_pop_order_by {kill_count?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface player_kills_by_weapon_var_samp_fieldsGenqlSelection{ + kill_count?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "player_kills_by_weapon" */ +export interface player_kills_by_weapon_var_samp_order_by {kill_count?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface player_kills_by_weapon_variance_fieldsGenqlSelection{ + kill_count?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "player_kills_by_weapon" */ +export interface player_kills_by_weapon_variance_order_by {kill_count?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** input type for incrementing numeric columns in table "player_kills" */ +export interface player_kills_inc_input {attacked_steam_id?: (Scalars['bigint'] | null),attacker_steam_id?: (Scalars['bigint'] | null),round?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "player_kills" */ +export interface player_kills_insert_input {assisted?: (Scalars['Boolean'] | null),attacked_location?: (Scalars['String'] | null),attacked_location_coordinates?: (Scalars['String'] | null),attacked_player?: (players_obj_rel_insert_input | null),attacked_steam_id?: (Scalars['bigint'] | null),attacked_team?: (Scalars['String'] | null),attacker_location?: (Scalars['String'] | null),attacker_location_coordinates?: (Scalars['String'] | null),attacker_steam_id?: (Scalars['bigint'] | null),attacker_team?: (Scalars['String'] | null),blinded?: (Scalars['Boolean'] | null),deleted_at?: (Scalars['timestamptz'] | null),headshot?: (Scalars['Boolean'] | null),hitgroup?: (Scalars['String'] | null),in_air?: (Scalars['Boolean'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_map?: (match_maps_obj_rel_insert_input | null),match_map_id?: (Scalars['uuid'] | null),no_scope?: (Scalars['Boolean'] | null),player?: (players_obj_rel_insert_input | null),round?: (Scalars['Int'] | null),thru_smoke?: (Scalars['Boolean'] | null),thru_wall?: (Scalars['Boolean'] | null),time?: (Scalars['timestamptz'] | null),with?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface player_kills_max_fieldsGenqlSelection{ + attacked_location?: boolean | number + attacked_location_coordinates?: boolean | number + attacked_steam_id?: boolean | number + attacked_team?: boolean | number + attacker_location?: boolean | number + attacker_location_coordinates?: boolean | number + attacker_steam_id?: boolean | number + attacker_team?: boolean | number + deleted_at?: boolean | number + hitgroup?: boolean | number + match_id?: boolean | number + match_map_id?: boolean | number + round?: boolean | number + time?: boolean | number + with?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "player_kills" */ +export interface player_kills_max_order_by {attacked_location?: (order_by | null),attacked_location_coordinates?: (order_by | null),attacked_steam_id?: (order_by | null),attacked_team?: (order_by | null),attacker_location?: (order_by | null),attacker_location_coordinates?: (order_by | null),attacker_steam_id?: (order_by | null),attacker_team?: (order_by | null),deleted_at?: (order_by | null),hitgroup?: (order_by | null),match_id?: (order_by | null),match_map_id?: (order_by | null),round?: (order_by | null),time?: (order_by | null),with?: (order_by | null)} + + +/** aggregate min on columns */ +export interface player_kills_min_fieldsGenqlSelection{ + attacked_location?: boolean | number + attacked_location_coordinates?: boolean | number + attacked_steam_id?: boolean | number + attacked_team?: boolean | number + attacker_location?: boolean | number + attacker_location_coordinates?: boolean | number + attacker_steam_id?: boolean | number + attacker_team?: boolean | number + deleted_at?: boolean | number + hitgroup?: boolean | number + match_id?: boolean | number + match_map_id?: boolean | number + round?: boolean | number + time?: boolean | number + with?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "player_kills" */ +export interface player_kills_min_order_by {attacked_location?: (order_by | null),attacked_location_coordinates?: (order_by | null),attacked_steam_id?: (order_by | null),attacked_team?: (order_by | null),attacker_location?: (order_by | null),attacker_location_coordinates?: (order_by | null),attacker_steam_id?: (order_by | null),attacker_team?: (order_by | null),deleted_at?: (order_by | null),hitgroup?: (order_by | null),match_id?: (order_by | null),match_map_id?: (order_by | null),round?: (order_by | null),time?: (order_by | null),with?: (order_by | null)} + + +/** response of any mutation on the table "player_kills" */ +export interface player_kills_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: player_killsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "player_kills" */ +export interface player_kills_on_conflict {constraint: player_kills_constraint,update_columns?: player_kills_update_column[],where?: (player_kills_bool_exp | null)} + + +/** Ordering options when selecting data from "player_kills". */ +export interface player_kills_order_by {assisted?: (order_by | null),attacked_location?: (order_by | null),attacked_location_coordinates?: (order_by | null),attacked_player?: (players_order_by | null),attacked_steam_id?: (order_by | null),attacked_team?: (order_by | null),attacker_location?: (order_by | null),attacker_location_coordinates?: (order_by | null),attacker_steam_id?: (order_by | null),attacker_team?: (order_by | null),blinded?: (order_by | null),deleted_at?: (order_by | null),headshot?: (order_by | null),hitgroup?: (order_by | null),in_air?: (order_by | null),is_suicide?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_id?: (order_by | null),no_scope?: (order_by | null),player?: (players_order_by | null),round?: (order_by | null),team_kill?: (order_by | null),thru_smoke?: (order_by | null),thru_wall?: (order_by | null),time?: (order_by | null),with?: (order_by | null)} + + +/** primary key columns input for table: player_kills */ +export interface player_kills_pk_columns_input {attacked_steam_id: Scalars['bigint'],attacker_steam_id: Scalars['bigint'],match_map_id: Scalars['uuid'],time: Scalars['timestamptz']} + + +/** input type for updating data in table "player_kills" */ +export interface player_kills_set_input {assisted?: (Scalars['Boolean'] | null),attacked_location?: (Scalars['String'] | null),attacked_location_coordinates?: (Scalars['String'] | null),attacked_steam_id?: (Scalars['bigint'] | null),attacked_team?: (Scalars['String'] | null),attacker_location?: (Scalars['String'] | null),attacker_location_coordinates?: (Scalars['String'] | null),attacker_steam_id?: (Scalars['bigint'] | null),attacker_team?: (Scalars['String'] | null),blinded?: (Scalars['Boolean'] | null),deleted_at?: (Scalars['timestamptz'] | null),headshot?: (Scalars['Boolean'] | null),hitgroup?: (Scalars['String'] | null),in_air?: (Scalars['Boolean'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),no_scope?: (Scalars['Boolean'] | null),round?: (Scalars['Int'] | null),thru_smoke?: (Scalars['Boolean'] | null),thru_wall?: (Scalars['Boolean'] | null),time?: (Scalars['timestamptz'] | null),with?: (Scalars['String'] | null)} + + +/** aggregate stddev on columns */ +export interface player_kills_stddev_fieldsGenqlSelection{ + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "player_kills" */ +export interface player_kills_stddev_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),round?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface player_kills_stddev_pop_fieldsGenqlSelection{ + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "player_kills" */ +export interface player_kills_stddev_pop_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),round?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface player_kills_stddev_samp_fieldsGenqlSelection{ + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "player_kills" */ +export interface player_kills_stddev_samp_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),round?: (order_by | null)} + + +/** Streaming cursor of the table "player_kills" */ +export interface player_kills_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: player_kills_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface player_kills_stream_cursor_value_input {assisted?: (Scalars['Boolean'] | null),attacked_location?: (Scalars['String'] | null),attacked_location_coordinates?: (Scalars['String'] | null),attacked_steam_id?: (Scalars['bigint'] | null),attacked_team?: (Scalars['String'] | null),attacker_location?: (Scalars['String'] | null),attacker_location_coordinates?: (Scalars['String'] | null),attacker_steam_id?: (Scalars['bigint'] | null),attacker_team?: (Scalars['String'] | null),blinded?: (Scalars['Boolean'] | null),deleted_at?: (Scalars['timestamptz'] | null),headshot?: (Scalars['Boolean'] | null),hitgroup?: (Scalars['String'] | null),in_air?: (Scalars['Boolean'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),no_scope?: (Scalars['Boolean'] | null),round?: (Scalars['Int'] | null),thru_smoke?: (Scalars['Boolean'] | null),thru_wall?: (Scalars['Boolean'] | null),time?: (Scalars['timestamptz'] | null),with?: (Scalars['String'] | null)} + + +/** aggregate sum on columns */ +export interface player_kills_sum_fieldsGenqlSelection{ + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "player_kills" */ +export interface player_kills_sum_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),round?: (order_by | null)} + +export interface player_kills_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (player_kills_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (player_kills_set_input | null), +/** filter the rows which have to be updated */ +where: player_kills_bool_exp} + + +/** aggregate var_pop on columns */ +export interface player_kills_var_pop_fieldsGenqlSelection{ + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "player_kills" */ +export interface player_kills_var_pop_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),round?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface player_kills_var_samp_fieldsGenqlSelection{ + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "player_kills" */ +export interface player_kills_var_samp_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),round?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface player_kills_variance_fieldsGenqlSelection{ + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "player_kills" */ +export interface player_kills_variance_order_by {attacked_steam_id?: (order_by | null),attacker_steam_id?: (order_by | null),round?: (order_by | null)} + + +/** columns and relationships of "player_leaderboard_rank" */ +export interface player_leaderboard_rankGenqlSelection{ + player_steam_id?: boolean | number + rank?: boolean | number + total?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface player_leaderboard_rank_aggregateGenqlSelection{ + aggregate?: player_leaderboard_rank_aggregate_fieldsGenqlSelection + nodes?: player_leaderboard_rankGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "player_leaderboard_rank" */ +export interface player_leaderboard_rank_aggregate_fieldsGenqlSelection{ + avg?: player_leaderboard_rank_avg_fieldsGenqlSelection + count?: { __args: {columns?: (player_leaderboard_rank_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: player_leaderboard_rank_max_fieldsGenqlSelection + min?: player_leaderboard_rank_min_fieldsGenqlSelection + stddev?: player_leaderboard_rank_stddev_fieldsGenqlSelection + stddev_pop?: player_leaderboard_rank_stddev_pop_fieldsGenqlSelection + stddev_samp?: player_leaderboard_rank_stddev_samp_fieldsGenqlSelection + sum?: player_leaderboard_rank_sum_fieldsGenqlSelection + var_pop?: player_leaderboard_rank_var_pop_fieldsGenqlSelection + var_samp?: player_leaderboard_rank_var_samp_fieldsGenqlSelection + variance?: player_leaderboard_rank_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface player_leaderboard_rank_avg_fieldsGenqlSelection{ + rank?: boolean | number + total?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "player_leaderboard_rank". All fields are combined with a logical 'AND'. */ +export interface player_leaderboard_rank_bool_exp {_and?: (player_leaderboard_rank_bool_exp[] | null),_not?: (player_leaderboard_rank_bool_exp | null),_or?: (player_leaderboard_rank_bool_exp[] | null),player_steam_id?: (String_comparison_exp | null),rank?: (Int_comparison_exp | null),total?: (Int_comparison_exp | null),value?: (float8_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "player_leaderboard_rank" */ +export interface player_leaderboard_rank_inc_input {rank?: (Scalars['Int'] | null),total?: (Scalars['Int'] | null),value?: (Scalars['float8'] | null)} + + +/** input type for inserting data into table "player_leaderboard_rank" */ +export interface player_leaderboard_rank_insert_input {player_steam_id?: (Scalars['String'] | null),rank?: (Scalars['Int'] | null),total?: (Scalars['Int'] | null),value?: (Scalars['float8'] | null)} + + +/** aggregate max on columns */ +export interface player_leaderboard_rank_max_fieldsGenqlSelection{ + player_steam_id?: boolean | number + rank?: boolean | number + total?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface player_leaderboard_rank_min_fieldsGenqlSelection{ + player_steam_id?: boolean | number + rank?: boolean | number + total?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "player_leaderboard_rank" */ +export interface player_leaderboard_rank_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: player_leaderboard_rankGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Ordering options when selecting data from "player_leaderboard_rank". */ +export interface player_leaderboard_rank_order_by {player_steam_id?: (order_by | null),rank?: (order_by | null),total?: (order_by | null),value?: (order_by | null)} + + +/** input type for updating data in table "player_leaderboard_rank" */ +export interface player_leaderboard_rank_set_input {player_steam_id?: (Scalars['String'] | null),rank?: (Scalars['Int'] | null),total?: (Scalars['Int'] | null),value?: (Scalars['float8'] | null)} + + +/** aggregate stddev on columns */ +export interface player_leaderboard_rank_stddev_fieldsGenqlSelection{ + rank?: boolean | number + total?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface player_leaderboard_rank_stddev_pop_fieldsGenqlSelection{ + rank?: boolean | number + total?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface player_leaderboard_rank_stddev_samp_fieldsGenqlSelection{ + rank?: boolean | number + total?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "player_leaderboard_rank" */ +export interface player_leaderboard_rank_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: player_leaderboard_rank_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface player_leaderboard_rank_stream_cursor_value_input {player_steam_id?: (Scalars['String'] | null),rank?: (Scalars['Int'] | null),total?: (Scalars['Int'] | null),value?: (Scalars['float8'] | null)} + + +/** aggregate sum on columns */ +export interface player_leaderboard_rank_sum_fieldsGenqlSelection{ + rank?: boolean | number + total?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface player_leaderboard_rank_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (player_leaderboard_rank_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (player_leaderboard_rank_set_input | null), +/** filter the rows which have to be updated */ +where: player_leaderboard_rank_bool_exp} + + +/** aggregate var_pop on columns */ +export interface player_leaderboard_rank_var_pop_fieldsGenqlSelection{ + rank?: boolean | number + total?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface player_leaderboard_rank_var_samp_fieldsGenqlSelection{ + rank?: boolean | number + total?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface player_leaderboard_rank_variance_fieldsGenqlSelection{ + rank?: boolean | number + total?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "player_match_map_stats" */ +export interface player_match_map_statsGenqlSelection{ + assists?: boolean | number + assists_ct?: boolean | number + assists_t?: boolean | number + counter_strafe_eligible_shots?: boolean | number + counter_strafed_shots?: boolean | number + crosshair_angle_count?: boolean | number + crosshair_angle_sum_deg?: boolean | number + damage?: boolean | number + damage_ct?: boolean | number + damage_t?: boolean | number + deaths?: boolean | number + deaths_ct?: boolean | number + deaths_t?: boolean | number + decoy_throws?: boolean | number + enemies_flashed?: boolean | number + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + five_kill_rounds?: boolean | number + flash_assists?: boolean | number + flash_duration_count?: boolean | number + flash_duration_sum?: boolean | number + flashes_thrown?: boolean | number + four_kill_rounds?: boolean | number + he_damage?: boolean | number + he_team_damage?: boolean | number + he_throws?: boolean | number + headshot_hits?: boolean | number + hits?: boolean | number + hits_at_spotted?: boolean | number + hs_kills?: boolean | number + hs_kills_ct?: boolean | number + hs_kills_t?: boolean | number + kast_rounds?: boolean | number + kast_total_rounds?: boolean | number + kills?: boolean | number + kills_ct?: boolean | number + kills_t?: boolean | number + knife_kills?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + match_id?: boolean | number + /** An object relationship */ + match_map?: match_mapsGenqlSelection + match_map_id?: boolean | number + molotov_damage?: boolean | number + molotov_throws?: boolean | number + non_awp_hits?: boolean | number + on_target_frames?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + rounds_ct?: boolean | number + rounds_played?: boolean | number + rounds_t?: boolean | number + shots_at_spotted?: boolean | number + shots_fired?: boolean | number + smoke_throws?: boolean | number + spotted_count?: boolean | number + spotted_with_damage_count?: boolean | number + spray_hits?: boolean | number + spray_shots?: boolean | number + steam_id?: boolean | number + team_damage?: boolean | number + team_flashed?: boolean | number + three_kill_rounds?: boolean | number + time_to_damage_count?: boolean | number + time_to_damage_sum_s?: boolean | number + total_engagement_frames?: boolean | number + trade_kill_attempts?: boolean | number + trade_kill_opportunities?: boolean | number + trade_kill_successes?: boolean | number + traded_death_attempts?: boolean | number + traded_death_opportunities?: boolean | number + traded_death_successes?: boolean | number + two_kill_rounds?: boolean | number + unused_utility_value?: boolean | number + updated_at?: boolean | number + util_on_death_count?: boolean | number + util_on_death_sum?: boolean | number + wasted_magazine_shots?: boolean | number + zeus_kills?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "player_match_map_stats" */ +export interface player_match_map_stats_aggregateGenqlSelection{ + aggregate?: player_match_map_stats_aggregate_fieldsGenqlSelection + nodes?: player_match_map_statsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface player_match_map_stats_aggregate_bool_exp {count?: (player_match_map_stats_aggregate_bool_exp_count | null)} + +export interface player_match_map_stats_aggregate_bool_exp_count {arguments?: (player_match_map_stats_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (player_match_map_stats_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "player_match_map_stats" */ +export interface player_match_map_stats_aggregate_fieldsGenqlSelection{ + avg?: player_match_map_stats_avg_fieldsGenqlSelection + count?: { __args: {columns?: (player_match_map_stats_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: player_match_map_stats_max_fieldsGenqlSelection + min?: player_match_map_stats_min_fieldsGenqlSelection + stddev?: player_match_map_stats_stddev_fieldsGenqlSelection + stddev_pop?: player_match_map_stats_stddev_pop_fieldsGenqlSelection + stddev_samp?: player_match_map_stats_stddev_samp_fieldsGenqlSelection + sum?: player_match_map_stats_sum_fieldsGenqlSelection + var_pop?: player_match_map_stats_var_pop_fieldsGenqlSelection + var_samp?: player_match_map_stats_var_samp_fieldsGenqlSelection + variance?: player_match_map_stats_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "player_match_map_stats" */ +export interface player_match_map_stats_aggregate_order_by {avg?: (player_match_map_stats_avg_order_by | null),count?: (order_by | null),max?: (player_match_map_stats_max_order_by | null),min?: (player_match_map_stats_min_order_by | null),stddev?: (player_match_map_stats_stddev_order_by | null),stddev_pop?: (player_match_map_stats_stddev_pop_order_by | null),stddev_samp?: (player_match_map_stats_stddev_samp_order_by | null),sum?: (player_match_map_stats_sum_order_by | null),var_pop?: (player_match_map_stats_var_pop_order_by | null),var_samp?: (player_match_map_stats_var_samp_order_by | null),variance?: (player_match_map_stats_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "player_match_map_stats" */ +export interface player_match_map_stats_arr_rel_insert_input {data: player_match_map_stats_insert_input[], +/** upsert condition */ +on_conflict?: (player_match_map_stats_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface player_match_map_stats_avg_fieldsGenqlSelection{ + assists?: boolean | number + assists_ct?: boolean | number + assists_t?: boolean | number + counter_strafe_eligible_shots?: boolean | number + counter_strafed_shots?: boolean | number + crosshair_angle_count?: boolean | number + crosshair_angle_sum_deg?: boolean | number + damage?: boolean | number + damage_ct?: boolean | number + damage_t?: boolean | number + deaths?: boolean | number + deaths_ct?: boolean | number + deaths_t?: boolean | number + decoy_throws?: boolean | number + enemies_flashed?: boolean | number + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + five_kill_rounds?: boolean | number + flash_assists?: boolean | number + flash_duration_count?: boolean | number + flash_duration_sum?: boolean | number + flashes_thrown?: boolean | number + four_kill_rounds?: boolean | number + he_damage?: boolean | number + he_team_damage?: boolean | number + he_throws?: boolean | number + headshot_hits?: boolean | number + hits?: boolean | number + hits_at_spotted?: boolean | number + hs_kills?: boolean | number + hs_kills_ct?: boolean | number + hs_kills_t?: boolean | number + kast_rounds?: boolean | number + kast_total_rounds?: boolean | number + kills?: boolean | number + kills_ct?: boolean | number + kills_t?: boolean | number + knife_kills?: boolean | number + molotov_damage?: boolean | number + molotov_throws?: boolean | number + non_awp_hits?: boolean | number + on_target_frames?: boolean | number + rounds_ct?: boolean | number + rounds_played?: boolean | number + rounds_t?: boolean | number + shots_at_spotted?: boolean | number + shots_fired?: boolean | number + smoke_throws?: boolean | number + spotted_count?: boolean | number + spotted_with_damage_count?: boolean | number + spray_hits?: boolean | number + spray_shots?: boolean | number + steam_id?: boolean | number + team_damage?: boolean | number + team_flashed?: boolean | number + three_kill_rounds?: boolean | number + time_to_damage_count?: boolean | number + time_to_damage_sum_s?: boolean | number + total_engagement_frames?: boolean | number + trade_kill_attempts?: boolean | number + trade_kill_opportunities?: boolean | number + trade_kill_successes?: boolean | number + traded_death_attempts?: boolean | number + traded_death_opportunities?: boolean | number + traded_death_successes?: boolean | number + two_kill_rounds?: boolean | number + unused_utility_value?: boolean | number + util_on_death_count?: boolean | number + util_on_death_sum?: boolean | number + wasted_magazine_shots?: boolean | number + zeus_kills?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "player_match_map_stats" */ +export interface player_match_map_stats_avg_order_by {assists?: (order_by | null),assists_ct?: (order_by | null),assists_t?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),crosshair_angle_count?: (order_by | null),crosshair_angle_sum_deg?: (order_by | null),damage?: (order_by | null),damage_ct?: (order_by | null),damage_t?: (order_by | null),deaths?: (order_by | null),deaths_ct?: (order_by | null),deaths_t?: (order_by | null),decoy_throws?: (order_by | null),enemies_flashed?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),five_kill_rounds?: (order_by | null),flash_assists?: (order_by | null),flash_duration_count?: (order_by | null),flash_duration_sum?: (order_by | null),flashes_thrown?: (order_by | null),four_kill_rounds?: (order_by | null),he_damage?: (order_by | null),he_team_damage?: (order_by | null),he_throws?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),hs_kills?: (order_by | null),hs_kills_ct?: (order_by | null),hs_kills_t?: (order_by | null),kast_rounds?: (order_by | null),kast_total_rounds?: (order_by | null),kills?: (order_by | null),kills_ct?: (order_by | null),kills_t?: (order_by | null),knife_kills?: (order_by | null),molotov_damage?: (order_by | null),molotov_throws?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),rounds_ct?: (order_by | null),rounds_played?: (order_by | null),rounds_t?: (order_by | null),shots_at_spotted?: (order_by | null),shots_fired?: (order_by | null),smoke_throws?: (order_by | null),spotted_count?: (order_by | null),spotted_with_damage_count?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),steam_id?: (order_by | null),team_damage?: (order_by | null),team_flashed?: (order_by | null),three_kill_rounds?: (order_by | null),time_to_damage_count?: (order_by | null),time_to_damage_sum_s?: (order_by | null),total_engagement_frames?: (order_by | null),trade_kill_attempts?: (order_by | null),trade_kill_opportunities?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_attempts?: (order_by | null),traded_death_opportunities?: (order_by | null),traded_death_successes?: (order_by | null),two_kill_rounds?: (order_by | null),unused_utility_value?: (order_by | null),util_on_death_count?: (order_by | null),util_on_death_sum?: (order_by | null),wasted_magazine_shots?: (order_by | null),zeus_kills?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "player_match_map_stats". All fields are combined with a logical 'AND'. */ +export interface player_match_map_stats_bool_exp {_and?: (player_match_map_stats_bool_exp[] | null),_not?: (player_match_map_stats_bool_exp | null),_or?: (player_match_map_stats_bool_exp[] | null),assists?: (Int_comparison_exp | null),assists_ct?: (Int_comparison_exp | null),assists_t?: (Int_comparison_exp | null),counter_strafe_eligible_shots?: (Int_comparison_exp | null),counter_strafed_shots?: (Int_comparison_exp | null),crosshair_angle_count?: (Int_comparison_exp | null),crosshair_angle_sum_deg?: (numeric_comparison_exp | null),damage?: (Int_comparison_exp | null),damage_ct?: (Int_comparison_exp | null),damage_t?: (Int_comparison_exp | null),deaths?: (Int_comparison_exp | null),deaths_ct?: (Int_comparison_exp | null),deaths_t?: (Int_comparison_exp | null),decoy_throws?: (Int_comparison_exp | null),enemies_flashed?: (Int_comparison_exp | null),first_bullet_hits?: (Int_comparison_exp | null),first_bullet_shots?: (Int_comparison_exp | null),five_kill_rounds?: (Int_comparison_exp | null),flash_assists?: (Int_comparison_exp | null),flash_duration_count?: (Int_comparison_exp | null),flash_duration_sum?: (numeric_comparison_exp | null),flashes_thrown?: (Int_comparison_exp | null),four_kill_rounds?: (Int_comparison_exp | null),he_damage?: (Int_comparison_exp | null),he_team_damage?: (Int_comparison_exp | null),he_throws?: (Int_comparison_exp | null),headshot_hits?: (Int_comparison_exp | null),hits?: (Int_comparison_exp | null),hits_at_spotted?: (Int_comparison_exp | null),hs_kills?: (Int_comparison_exp | null),hs_kills_ct?: (Int_comparison_exp | null),hs_kills_t?: (Int_comparison_exp | null),kast_rounds?: (Int_comparison_exp | null),kast_total_rounds?: (Int_comparison_exp | null),kills?: (Int_comparison_exp | null),kills_ct?: (Int_comparison_exp | null),kills_t?: (Int_comparison_exp | null),knife_kills?: (Int_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_id?: (uuid_comparison_exp | null),molotov_damage?: (Int_comparison_exp | null),molotov_throws?: (Int_comparison_exp | null),non_awp_hits?: (Int_comparison_exp | null),on_target_frames?: (Int_comparison_exp | null),player?: (players_bool_exp | null),rounds_ct?: (Int_comparison_exp | null),rounds_played?: (Int_comparison_exp | null),rounds_t?: (Int_comparison_exp | null),shots_at_spotted?: (Int_comparison_exp | null),shots_fired?: (Int_comparison_exp | null),smoke_throws?: (Int_comparison_exp | null),spotted_count?: (Int_comparison_exp | null),spotted_with_damage_count?: (Int_comparison_exp | null),spray_hits?: (Int_comparison_exp | null),spray_shots?: (Int_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),team_damage?: (Int_comparison_exp | null),team_flashed?: (Int_comparison_exp | null),three_kill_rounds?: (Int_comparison_exp | null),time_to_damage_count?: (Int_comparison_exp | null),time_to_damage_sum_s?: (numeric_comparison_exp | null),total_engagement_frames?: (Int_comparison_exp | null),trade_kill_attempts?: (Int_comparison_exp | null),trade_kill_opportunities?: (Int_comparison_exp | null),trade_kill_successes?: (Int_comparison_exp | null),traded_death_attempts?: (Int_comparison_exp | null),traded_death_opportunities?: (Int_comparison_exp | null),traded_death_successes?: (Int_comparison_exp | null),two_kill_rounds?: (Int_comparison_exp | null),unused_utility_value?: (Int_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null),util_on_death_count?: (Int_comparison_exp | null),util_on_death_sum?: (Int_comparison_exp | null),wasted_magazine_shots?: (Int_comparison_exp | null),zeus_kills?: (Int_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "player_match_map_stats" */ +export interface player_match_map_stats_inc_input {assists?: (Scalars['Int'] | null),assists_ct?: (Scalars['Int'] | null),assists_t?: (Scalars['Int'] | null),counter_strafe_eligible_shots?: (Scalars['Int'] | null),counter_strafed_shots?: (Scalars['Int'] | null),crosshair_angle_count?: (Scalars['Int'] | null),crosshair_angle_sum_deg?: (Scalars['numeric'] | null),damage?: (Scalars['Int'] | null),damage_ct?: (Scalars['Int'] | null),damage_t?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),deaths_ct?: (Scalars['Int'] | null),deaths_t?: (Scalars['Int'] | null),decoy_throws?: (Scalars['Int'] | null),enemies_flashed?: (Scalars['Int'] | null),first_bullet_hits?: (Scalars['Int'] | null),first_bullet_shots?: (Scalars['Int'] | null),five_kill_rounds?: (Scalars['Int'] | null),flash_assists?: (Scalars['Int'] | null),flash_duration_count?: (Scalars['Int'] | null),flash_duration_sum?: (Scalars['numeric'] | null),flashes_thrown?: (Scalars['Int'] | null),four_kill_rounds?: (Scalars['Int'] | null),he_damage?: (Scalars['Int'] | null),he_team_damage?: (Scalars['Int'] | null),he_throws?: (Scalars['Int'] | null),headshot_hits?: (Scalars['Int'] | null),hits?: (Scalars['Int'] | null),hits_at_spotted?: (Scalars['Int'] | null),hs_kills?: (Scalars['Int'] | null),hs_kills_ct?: (Scalars['Int'] | null),hs_kills_t?: (Scalars['Int'] | null),kast_rounds?: (Scalars['Int'] | null),kast_total_rounds?: (Scalars['Int'] | null),kills?: (Scalars['Int'] | null),kills_ct?: (Scalars['Int'] | null),kills_t?: (Scalars['Int'] | null),knife_kills?: (Scalars['Int'] | null),molotov_damage?: (Scalars['Int'] | null),molotov_throws?: (Scalars['Int'] | null),non_awp_hits?: (Scalars['Int'] | null),on_target_frames?: (Scalars['Int'] | null),rounds_ct?: (Scalars['Int'] | null),rounds_played?: (Scalars['Int'] | null),rounds_t?: (Scalars['Int'] | null),shots_at_spotted?: (Scalars['Int'] | null),shots_fired?: (Scalars['Int'] | null),smoke_throws?: (Scalars['Int'] | null),spotted_count?: (Scalars['Int'] | null),spotted_with_damage_count?: (Scalars['Int'] | null),spray_hits?: (Scalars['Int'] | null),spray_shots?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null),team_damage?: (Scalars['Int'] | null),team_flashed?: (Scalars['Int'] | null),three_kill_rounds?: (Scalars['Int'] | null),time_to_damage_count?: (Scalars['Int'] | null),time_to_damage_sum_s?: (Scalars['numeric'] | null),total_engagement_frames?: (Scalars['Int'] | null),trade_kill_attempts?: (Scalars['Int'] | null),trade_kill_opportunities?: (Scalars['Int'] | null),trade_kill_successes?: (Scalars['Int'] | null),traded_death_attempts?: (Scalars['Int'] | null),traded_death_opportunities?: (Scalars['Int'] | null),traded_death_successes?: (Scalars['Int'] | null),two_kill_rounds?: (Scalars['Int'] | null),unused_utility_value?: (Scalars['Int'] | null),util_on_death_count?: (Scalars['Int'] | null),util_on_death_sum?: (Scalars['Int'] | null),wasted_magazine_shots?: (Scalars['Int'] | null),zeus_kills?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "player_match_map_stats" */ +export interface player_match_map_stats_insert_input {assists?: (Scalars['Int'] | null),assists_ct?: (Scalars['Int'] | null),assists_t?: (Scalars['Int'] | null),counter_strafe_eligible_shots?: (Scalars['Int'] | null),counter_strafed_shots?: (Scalars['Int'] | null),crosshair_angle_count?: (Scalars['Int'] | null),crosshair_angle_sum_deg?: (Scalars['numeric'] | null),damage?: (Scalars['Int'] | null),damage_ct?: (Scalars['Int'] | null),damage_t?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),deaths_ct?: (Scalars['Int'] | null),deaths_t?: (Scalars['Int'] | null),decoy_throws?: (Scalars['Int'] | null),enemies_flashed?: (Scalars['Int'] | null),first_bullet_hits?: (Scalars['Int'] | null),first_bullet_shots?: (Scalars['Int'] | null),five_kill_rounds?: (Scalars['Int'] | null),flash_assists?: (Scalars['Int'] | null),flash_duration_count?: (Scalars['Int'] | null),flash_duration_sum?: (Scalars['numeric'] | null),flashes_thrown?: (Scalars['Int'] | null),four_kill_rounds?: (Scalars['Int'] | null),he_damage?: (Scalars['Int'] | null),he_team_damage?: (Scalars['Int'] | null),he_throws?: (Scalars['Int'] | null),headshot_hits?: (Scalars['Int'] | null),hits?: (Scalars['Int'] | null),hits_at_spotted?: (Scalars['Int'] | null),hs_kills?: (Scalars['Int'] | null),hs_kills_ct?: (Scalars['Int'] | null),hs_kills_t?: (Scalars['Int'] | null),kast_rounds?: (Scalars['Int'] | null),kast_total_rounds?: (Scalars['Int'] | null),kills?: (Scalars['Int'] | null),kills_ct?: (Scalars['Int'] | null),kills_t?: (Scalars['Int'] | null),knife_kills?: (Scalars['Int'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_map?: (match_maps_obj_rel_insert_input | null),match_map_id?: (Scalars['uuid'] | null),molotov_damage?: (Scalars['Int'] | null),molotov_throws?: (Scalars['Int'] | null),non_awp_hits?: (Scalars['Int'] | null),on_target_frames?: (Scalars['Int'] | null),player?: (players_obj_rel_insert_input | null),rounds_ct?: (Scalars['Int'] | null),rounds_played?: (Scalars['Int'] | null),rounds_t?: (Scalars['Int'] | null),shots_at_spotted?: (Scalars['Int'] | null),shots_fired?: (Scalars['Int'] | null),smoke_throws?: (Scalars['Int'] | null),spotted_count?: (Scalars['Int'] | null),spotted_with_damage_count?: (Scalars['Int'] | null),spray_hits?: (Scalars['Int'] | null),spray_shots?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null),team_damage?: (Scalars['Int'] | null),team_flashed?: (Scalars['Int'] | null),three_kill_rounds?: (Scalars['Int'] | null),time_to_damage_count?: (Scalars['Int'] | null),time_to_damage_sum_s?: (Scalars['numeric'] | null),total_engagement_frames?: (Scalars['Int'] | null),trade_kill_attempts?: (Scalars['Int'] | null),trade_kill_opportunities?: (Scalars['Int'] | null),trade_kill_successes?: (Scalars['Int'] | null),traded_death_attempts?: (Scalars['Int'] | null),traded_death_opportunities?: (Scalars['Int'] | null),traded_death_successes?: (Scalars['Int'] | null),two_kill_rounds?: (Scalars['Int'] | null),unused_utility_value?: (Scalars['Int'] | null),updated_at?: (Scalars['timestamptz'] | null),util_on_death_count?: (Scalars['Int'] | null),util_on_death_sum?: (Scalars['Int'] | null),wasted_magazine_shots?: (Scalars['Int'] | null),zeus_kills?: (Scalars['Int'] | null)} + + +/** aggregate max on columns */ +export interface player_match_map_stats_max_fieldsGenqlSelection{ + assists?: boolean | number + assists_ct?: boolean | number + assists_t?: boolean | number + counter_strafe_eligible_shots?: boolean | number + counter_strafed_shots?: boolean | number + crosshair_angle_count?: boolean | number + crosshair_angle_sum_deg?: boolean | number + damage?: boolean | number + damage_ct?: boolean | number + damage_t?: boolean | number + deaths?: boolean | number + deaths_ct?: boolean | number + deaths_t?: boolean | number + decoy_throws?: boolean | number + enemies_flashed?: boolean | number + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + five_kill_rounds?: boolean | number + flash_assists?: boolean | number + flash_duration_count?: boolean | number + flash_duration_sum?: boolean | number + flashes_thrown?: boolean | number + four_kill_rounds?: boolean | number + he_damage?: boolean | number + he_team_damage?: boolean | number + he_throws?: boolean | number + headshot_hits?: boolean | number + hits?: boolean | number + hits_at_spotted?: boolean | number + hs_kills?: boolean | number + hs_kills_ct?: boolean | number + hs_kills_t?: boolean | number + kast_rounds?: boolean | number + kast_total_rounds?: boolean | number + kills?: boolean | number + kills_ct?: boolean | number + kills_t?: boolean | number + knife_kills?: boolean | number + match_id?: boolean | number + match_map_id?: boolean | number + molotov_damage?: boolean | number + molotov_throws?: boolean | number + non_awp_hits?: boolean | number + on_target_frames?: boolean | number + rounds_ct?: boolean | number + rounds_played?: boolean | number + rounds_t?: boolean | number + shots_at_spotted?: boolean | number + shots_fired?: boolean | number + smoke_throws?: boolean | number + spotted_count?: boolean | number + spotted_with_damage_count?: boolean | number + spray_hits?: boolean | number + spray_shots?: boolean | number + steam_id?: boolean | number + team_damage?: boolean | number + team_flashed?: boolean | number + three_kill_rounds?: boolean | number + time_to_damage_count?: boolean | number + time_to_damage_sum_s?: boolean | number + total_engagement_frames?: boolean | number + trade_kill_attempts?: boolean | number + trade_kill_opportunities?: boolean | number + trade_kill_successes?: boolean | number + traded_death_attempts?: boolean | number + traded_death_opportunities?: boolean | number + traded_death_successes?: boolean | number + two_kill_rounds?: boolean | number + unused_utility_value?: boolean | number + updated_at?: boolean | number + util_on_death_count?: boolean | number + util_on_death_sum?: boolean | number + wasted_magazine_shots?: boolean | number + zeus_kills?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "player_match_map_stats" */ +export interface player_match_map_stats_max_order_by {assists?: (order_by | null),assists_ct?: (order_by | null),assists_t?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),crosshair_angle_count?: (order_by | null),crosshair_angle_sum_deg?: (order_by | null),damage?: (order_by | null),damage_ct?: (order_by | null),damage_t?: (order_by | null),deaths?: (order_by | null),deaths_ct?: (order_by | null),deaths_t?: (order_by | null),decoy_throws?: (order_by | null),enemies_flashed?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),five_kill_rounds?: (order_by | null),flash_assists?: (order_by | null),flash_duration_count?: (order_by | null),flash_duration_sum?: (order_by | null),flashes_thrown?: (order_by | null),four_kill_rounds?: (order_by | null),he_damage?: (order_by | null),he_team_damage?: (order_by | null),he_throws?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),hs_kills?: (order_by | null),hs_kills_ct?: (order_by | null),hs_kills_t?: (order_by | null),kast_rounds?: (order_by | null),kast_total_rounds?: (order_by | null),kills?: (order_by | null),kills_ct?: (order_by | null),kills_t?: (order_by | null),knife_kills?: (order_by | null),match_id?: (order_by | null),match_map_id?: (order_by | null),molotov_damage?: (order_by | null),molotov_throws?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),rounds_ct?: (order_by | null),rounds_played?: (order_by | null),rounds_t?: (order_by | null),shots_at_spotted?: (order_by | null),shots_fired?: (order_by | null),smoke_throws?: (order_by | null),spotted_count?: (order_by | null),spotted_with_damage_count?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),steam_id?: (order_by | null),team_damage?: (order_by | null),team_flashed?: (order_by | null),three_kill_rounds?: (order_by | null),time_to_damage_count?: (order_by | null),time_to_damage_sum_s?: (order_by | null),total_engagement_frames?: (order_by | null),trade_kill_attempts?: (order_by | null),trade_kill_opportunities?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_attempts?: (order_by | null),traded_death_opportunities?: (order_by | null),traded_death_successes?: (order_by | null),two_kill_rounds?: (order_by | null),unused_utility_value?: (order_by | null),updated_at?: (order_by | null),util_on_death_count?: (order_by | null),util_on_death_sum?: (order_by | null),wasted_magazine_shots?: (order_by | null),zeus_kills?: (order_by | null)} + + +/** aggregate min on columns */ +export interface player_match_map_stats_min_fieldsGenqlSelection{ + assists?: boolean | number + assists_ct?: boolean | number + assists_t?: boolean | number + counter_strafe_eligible_shots?: boolean | number + counter_strafed_shots?: boolean | number + crosshair_angle_count?: boolean | number + crosshair_angle_sum_deg?: boolean | number + damage?: boolean | number + damage_ct?: boolean | number + damage_t?: boolean | number + deaths?: boolean | number + deaths_ct?: boolean | number + deaths_t?: boolean | number + decoy_throws?: boolean | number + enemies_flashed?: boolean | number + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + five_kill_rounds?: boolean | number + flash_assists?: boolean | number + flash_duration_count?: boolean | number + flash_duration_sum?: boolean | number + flashes_thrown?: boolean | number + four_kill_rounds?: boolean | number + he_damage?: boolean | number + he_team_damage?: boolean | number + he_throws?: boolean | number + headshot_hits?: boolean | number + hits?: boolean | number + hits_at_spotted?: boolean | number + hs_kills?: boolean | number + hs_kills_ct?: boolean | number + hs_kills_t?: boolean | number + kast_rounds?: boolean | number + kast_total_rounds?: boolean | number + kills?: boolean | number + kills_ct?: boolean | number + kills_t?: boolean | number + knife_kills?: boolean | number + match_id?: boolean | number + match_map_id?: boolean | number + molotov_damage?: boolean | number + molotov_throws?: boolean | number + non_awp_hits?: boolean | number + on_target_frames?: boolean | number + rounds_ct?: boolean | number + rounds_played?: boolean | number + rounds_t?: boolean | number + shots_at_spotted?: boolean | number + shots_fired?: boolean | number + smoke_throws?: boolean | number + spotted_count?: boolean | number + spotted_with_damage_count?: boolean | number + spray_hits?: boolean | number + spray_shots?: boolean | number + steam_id?: boolean | number + team_damage?: boolean | number + team_flashed?: boolean | number + three_kill_rounds?: boolean | number + time_to_damage_count?: boolean | number + time_to_damage_sum_s?: boolean | number + total_engagement_frames?: boolean | number + trade_kill_attempts?: boolean | number + trade_kill_opportunities?: boolean | number + trade_kill_successes?: boolean | number + traded_death_attempts?: boolean | number + traded_death_opportunities?: boolean | number + traded_death_successes?: boolean | number + two_kill_rounds?: boolean | number + unused_utility_value?: boolean | number + updated_at?: boolean | number + util_on_death_count?: boolean | number + util_on_death_sum?: boolean | number + wasted_magazine_shots?: boolean | number + zeus_kills?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "player_match_map_stats" */ +export interface player_match_map_stats_min_order_by {assists?: (order_by | null),assists_ct?: (order_by | null),assists_t?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),crosshair_angle_count?: (order_by | null),crosshair_angle_sum_deg?: (order_by | null),damage?: (order_by | null),damage_ct?: (order_by | null),damage_t?: (order_by | null),deaths?: (order_by | null),deaths_ct?: (order_by | null),deaths_t?: (order_by | null),decoy_throws?: (order_by | null),enemies_flashed?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),five_kill_rounds?: (order_by | null),flash_assists?: (order_by | null),flash_duration_count?: (order_by | null),flash_duration_sum?: (order_by | null),flashes_thrown?: (order_by | null),four_kill_rounds?: (order_by | null),he_damage?: (order_by | null),he_team_damage?: (order_by | null),he_throws?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),hs_kills?: (order_by | null),hs_kills_ct?: (order_by | null),hs_kills_t?: (order_by | null),kast_rounds?: (order_by | null),kast_total_rounds?: (order_by | null),kills?: (order_by | null),kills_ct?: (order_by | null),kills_t?: (order_by | null),knife_kills?: (order_by | null),match_id?: (order_by | null),match_map_id?: (order_by | null),molotov_damage?: (order_by | null),molotov_throws?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),rounds_ct?: (order_by | null),rounds_played?: (order_by | null),rounds_t?: (order_by | null),shots_at_spotted?: (order_by | null),shots_fired?: (order_by | null),smoke_throws?: (order_by | null),spotted_count?: (order_by | null),spotted_with_damage_count?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),steam_id?: (order_by | null),team_damage?: (order_by | null),team_flashed?: (order_by | null),three_kill_rounds?: (order_by | null),time_to_damage_count?: (order_by | null),time_to_damage_sum_s?: (order_by | null),total_engagement_frames?: (order_by | null),trade_kill_attempts?: (order_by | null),trade_kill_opportunities?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_attempts?: (order_by | null),traded_death_opportunities?: (order_by | null),traded_death_successes?: (order_by | null),two_kill_rounds?: (order_by | null),unused_utility_value?: (order_by | null),updated_at?: (order_by | null),util_on_death_count?: (order_by | null),util_on_death_sum?: (order_by | null),wasted_magazine_shots?: (order_by | null),zeus_kills?: (order_by | null)} + + +/** response of any mutation on the table "player_match_map_stats" */ +export interface player_match_map_stats_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: player_match_map_statsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "player_match_map_stats" */ +export interface player_match_map_stats_on_conflict {constraint: player_match_map_stats_constraint,update_columns?: player_match_map_stats_update_column[],where?: (player_match_map_stats_bool_exp | null)} + + +/** Ordering options when selecting data from "player_match_map_stats". */ +export interface player_match_map_stats_order_by {assists?: (order_by | null),assists_ct?: (order_by | null),assists_t?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),crosshair_angle_count?: (order_by | null),crosshair_angle_sum_deg?: (order_by | null),damage?: (order_by | null),damage_ct?: (order_by | null),damage_t?: (order_by | null),deaths?: (order_by | null),deaths_ct?: (order_by | null),deaths_t?: (order_by | null),decoy_throws?: (order_by | null),enemies_flashed?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),five_kill_rounds?: (order_by | null),flash_assists?: (order_by | null),flash_duration_count?: (order_by | null),flash_duration_sum?: (order_by | null),flashes_thrown?: (order_by | null),four_kill_rounds?: (order_by | null),he_damage?: (order_by | null),he_team_damage?: (order_by | null),he_throws?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),hs_kills?: (order_by | null),hs_kills_ct?: (order_by | null),hs_kills_t?: (order_by | null),kast_rounds?: (order_by | null),kast_total_rounds?: (order_by | null),kills?: (order_by | null),kills_ct?: (order_by | null),kills_t?: (order_by | null),knife_kills?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_id?: (order_by | null),molotov_damage?: (order_by | null),molotov_throws?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),player?: (players_order_by | null),rounds_ct?: (order_by | null),rounds_played?: (order_by | null),rounds_t?: (order_by | null),shots_at_spotted?: (order_by | null),shots_fired?: (order_by | null),smoke_throws?: (order_by | null),spotted_count?: (order_by | null),spotted_with_damage_count?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),steam_id?: (order_by | null),team_damage?: (order_by | null),team_flashed?: (order_by | null),three_kill_rounds?: (order_by | null),time_to_damage_count?: (order_by | null),time_to_damage_sum_s?: (order_by | null),total_engagement_frames?: (order_by | null),trade_kill_attempts?: (order_by | null),trade_kill_opportunities?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_attempts?: (order_by | null),traded_death_opportunities?: (order_by | null),traded_death_successes?: (order_by | null),two_kill_rounds?: (order_by | null),unused_utility_value?: (order_by | null),updated_at?: (order_by | null),util_on_death_count?: (order_by | null),util_on_death_sum?: (order_by | null),wasted_magazine_shots?: (order_by | null),zeus_kills?: (order_by | null)} + + +/** primary key columns input for table: player_match_map_stats */ +export interface player_match_map_stats_pk_columns_input {match_map_id: Scalars['uuid'],steam_id: Scalars['bigint']} + + +/** input type for updating data in table "player_match_map_stats" */ +export interface player_match_map_stats_set_input {assists?: (Scalars['Int'] | null),assists_ct?: (Scalars['Int'] | null),assists_t?: (Scalars['Int'] | null),counter_strafe_eligible_shots?: (Scalars['Int'] | null),counter_strafed_shots?: (Scalars['Int'] | null),crosshair_angle_count?: (Scalars['Int'] | null),crosshair_angle_sum_deg?: (Scalars['numeric'] | null),damage?: (Scalars['Int'] | null),damage_ct?: (Scalars['Int'] | null),damage_t?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),deaths_ct?: (Scalars['Int'] | null),deaths_t?: (Scalars['Int'] | null),decoy_throws?: (Scalars['Int'] | null),enemies_flashed?: (Scalars['Int'] | null),first_bullet_hits?: (Scalars['Int'] | null),first_bullet_shots?: (Scalars['Int'] | null),five_kill_rounds?: (Scalars['Int'] | null),flash_assists?: (Scalars['Int'] | null),flash_duration_count?: (Scalars['Int'] | null),flash_duration_sum?: (Scalars['numeric'] | null),flashes_thrown?: (Scalars['Int'] | null),four_kill_rounds?: (Scalars['Int'] | null),he_damage?: (Scalars['Int'] | null),he_team_damage?: (Scalars['Int'] | null),he_throws?: (Scalars['Int'] | null),headshot_hits?: (Scalars['Int'] | null),hits?: (Scalars['Int'] | null),hits_at_spotted?: (Scalars['Int'] | null),hs_kills?: (Scalars['Int'] | null),hs_kills_ct?: (Scalars['Int'] | null),hs_kills_t?: (Scalars['Int'] | null),kast_rounds?: (Scalars['Int'] | null),kast_total_rounds?: (Scalars['Int'] | null),kills?: (Scalars['Int'] | null),kills_ct?: (Scalars['Int'] | null),kills_t?: (Scalars['Int'] | null),knife_kills?: (Scalars['Int'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),molotov_damage?: (Scalars['Int'] | null),molotov_throws?: (Scalars['Int'] | null),non_awp_hits?: (Scalars['Int'] | null),on_target_frames?: (Scalars['Int'] | null),rounds_ct?: (Scalars['Int'] | null),rounds_played?: (Scalars['Int'] | null),rounds_t?: (Scalars['Int'] | null),shots_at_spotted?: (Scalars['Int'] | null),shots_fired?: (Scalars['Int'] | null),smoke_throws?: (Scalars['Int'] | null),spotted_count?: (Scalars['Int'] | null),spotted_with_damage_count?: (Scalars['Int'] | null),spray_hits?: (Scalars['Int'] | null),spray_shots?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null),team_damage?: (Scalars['Int'] | null),team_flashed?: (Scalars['Int'] | null),three_kill_rounds?: (Scalars['Int'] | null),time_to_damage_count?: (Scalars['Int'] | null),time_to_damage_sum_s?: (Scalars['numeric'] | null),total_engagement_frames?: (Scalars['Int'] | null),trade_kill_attempts?: (Scalars['Int'] | null),trade_kill_opportunities?: (Scalars['Int'] | null),trade_kill_successes?: (Scalars['Int'] | null),traded_death_attempts?: (Scalars['Int'] | null),traded_death_opportunities?: (Scalars['Int'] | null),traded_death_successes?: (Scalars['Int'] | null),two_kill_rounds?: (Scalars['Int'] | null),unused_utility_value?: (Scalars['Int'] | null),updated_at?: (Scalars['timestamptz'] | null),util_on_death_count?: (Scalars['Int'] | null),util_on_death_sum?: (Scalars['Int'] | null),wasted_magazine_shots?: (Scalars['Int'] | null),zeus_kills?: (Scalars['Int'] | null)} + + +/** aggregate stddev on columns */ +export interface player_match_map_stats_stddev_fieldsGenqlSelection{ + assists?: boolean | number + assists_ct?: boolean | number + assists_t?: boolean | number + counter_strafe_eligible_shots?: boolean | number + counter_strafed_shots?: boolean | number + crosshair_angle_count?: boolean | number + crosshair_angle_sum_deg?: boolean | number + damage?: boolean | number + damage_ct?: boolean | number + damage_t?: boolean | number + deaths?: boolean | number + deaths_ct?: boolean | number + deaths_t?: boolean | number + decoy_throws?: boolean | number + enemies_flashed?: boolean | number + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + five_kill_rounds?: boolean | number + flash_assists?: boolean | number + flash_duration_count?: boolean | number + flash_duration_sum?: boolean | number + flashes_thrown?: boolean | number + four_kill_rounds?: boolean | number + he_damage?: boolean | number + he_team_damage?: boolean | number + he_throws?: boolean | number + headshot_hits?: boolean | number + hits?: boolean | number + hits_at_spotted?: boolean | number + hs_kills?: boolean | number + hs_kills_ct?: boolean | number + hs_kills_t?: boolean | number + kast_rounds?: boolean | number + kast_total_rounds?: boolean | number + kills?: boolean | number + kills_ct?: boolean | number + kills_t?: boolean | number + knife_kills?: boolean | number + molotov_damage?: boolean | number + molotov_throws?: boolean | number + non_awp_hits?: boolean | number + on_target_frames?: boolean | number + rounds_ct?: boolean | number + rounds_played?: boolean | number + rounds_t?: boolean | number + shots_at_spotted?: boolean | number + shots_fired?: boolean | number + smoke_throws?: boolean | number + spotted_count?: boolean | number + spotted_with_damage_count?: boolean | number + spray_hits?: boolean | number + spray_shots?: boolean | number + steam_id?: boolean | number + team_damage?: boolean | number + team_flashed?: boolean | number + three_kill_rounds?: boolean | number + time_to_damage_count?: boolean | number + time_to_damage_sum_s?: boolean | number + total_engagement_frames?: boolean | number + trade_kill_attempts?: boolean | number + trade_kill_opportunities?: boolean | number + trade_kill_successes?: boolean | number + traded_death_attempts?: boolean | number + traded_death_opportunities?: boolean | number + traded_death_successes?: boolean | number + two_kill_rounds?: boolean | number + unused_utility_value?: boolean | number + util_on_death_count?: boolean | number + util_on_death_sum?: boolean | number + wasted_magazine_shots?: boolean | number + zeus_kills?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "player_match_map_stats" */ +export interface player_match_map_stats_stddev_order_by {assists?: (order_by | null),assists_ct?: (order_by | null),assists_t?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),crosshair_angle_count?: (order_by | null),crosshair_angle_sum_deg?: (order_by | null),damage?: (order_by | null),damage_ct?: (order_by | null),damage_t?: (order_by | null),deaths?: (order_by | null),deaths_ct?: (order_by | null),deaths_t?: (order_by | null),decoy_throws?: (order_by | null),enemies_flashed?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),five_kill_rounds?: (order_by | null),flash_assists?: (order_by | null),flash_duration_count?: (order_by | null),flash_duration_sum?: (order_by | null),flashes_thrown?: (order_by | null),four_kill_rounds?: (order_by | null),he_damage?: (order_by | null),he_team_damage?: (order_by | null),he_throws?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),hs_kills?: (order_by | null),hs_kills_ct?: (order_by | null),hs_kills_t?: (order_by | null),kast_rounds?: (order_by | null),kast_total_rounds?: (order_by | null),kills?: (order_by | null),kills_ct?: (order_by | null),kills_t?: (order_by | null),knife_kills?: (order_by | null),molotov_damage?: (order_by | null),molotov_throws?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),rounds_ct?: (order_by | null),rounds_played?: (order_by | null),rounds_t?: (order_by | null),shots_at_spotted?: (order_by | null),shots_fired?: (order_by | null),smoke_throws?: (order_by | null),spotted_count?: (order_by | null),spotted_with_damage_count?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),steam_id?: (order_by | null),team_damage?: (order_by | null),team_flashed?: (order_by | null),three_kill_rounds?: (order_by | null),time_to_damage_count?: (order_by | null),time_to_damage_sum_s?: (order_by | null),total_engagement_frames?: (order_by | null),trade_kill_attempts?: (order_by | null),trade_kill_opportunities?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_attempts?: (order_by | null),traded_death_opportunities?: (order_by | null),traded_death_successes?: (order_by | null),two_kill_rounds?: (order_by | null),unused_utility_value?: (order_by | null),util_on_death_count?: (order_by | null),util_on_death_sum?: (order_by | null),wasted_magazine_shots?: (order_by | null),zeus_kills?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface player_match_map_stats_stddev_pop_fieldsGenqlSelection{ + assists?: boolean | number + assists_ct?: boolean | number + assists_t?: boolean | number + counter_strafe_eligible_shots?: boolean | number + counter_strafed_shots?: boolean | number + crosshair_angle_count?: boolean | number + crosshair_angle_sum_deg?: boolean | number + damage?: boolean | number + damage_ct?: boolean | number + damage_t?: boolean | number + deaths?: boolean | number + deaths_ct?: boolean | number + deaths_t?: boolean | number + decoy_throws?: boolean | number + enemies_flashed?: boolean | number + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + five_kill_rounds?: boolean | number + flash_assists?: boolean | number + flash_duration_count?: boolean | number + flash_duration_sum?: boolean | number + flashes_thrown?: boolean | number + four_kill_rounds?: boolean | number + he_damage?: boolean | number + he_team_damage?: boolean | number + he_throws?: boolean | number + headshot_hits?: boolean | number + hits?: boolean | number + hits_at_spotted?: boolean | number + hs_kills?: boolean | number + hs_kills_ct?: boolean | number + hs_kills_t?: boolean | number + kast_rounds?: boolean | number + kast_total_rounds?: boolean | number + kills?: boolean | number + kills_ct?: boolean | number + kills_t?: boolean | number + knife_kills?: boolean | number + molotov_damage?: boolean | number + molotov_throws?: boolean | number + non_awp_hits?: boolean | number + on_target_frames?: boolean | number + rounds_ct?: boolean | number + rounds_played?: boolean | number + rounds_t?: boolean | number + shots_at_spotted?: boolean | number + shots_fired?: boolean | number + smoke_throws?: boolean | number + spotted_count?: boolean | number + spotted_with_damage_count?: boolean | number + spray_hits?: boolean | number + spray_shots?: boolean | number + steam_id?: boolean | number + team_damage?: boolean | number + team_flashed?: boolean | number + three_kill_rounds?: boolean | number + time_to_damage_count?: boolean | number + time_to_damage_sum_s?: boolean | number + total_engagement_frames?: boolean | number + trade_kill_attempts?: boolean | number + trade_kill_opportunities?: boolean | number + trade_kill_successes?: boolean | number + traded_death_attempts?: boolean | number + traded_death_opportunities?: boolean | number + traded_death_successes?: boolean | number + two_kill_rounds?: boolean | number + unused_utility_value?: boolean | number + util_on_death_count?: boolean | number + util_on_death_sum?: boolean | number + wasted_magazine_shots?: boolean | number + zeus_kills?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "player_match_map_stats" */ +export interface player_match_map_stats_stddev_pop_order_by {assists?: (order_by | null),assists_ct?: (order_by | null),assists_t?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),crosshair_angle_count?: (order_by | null),crosshair_angle_sum_deg?: (order_by | null),damage?: (order_by | null),damage_ct?: (order_by | null),damage_t?: (order_by | null),deaths?: (order_by | null),deaths_ct?: (order_by | null),deaths_t?: (order_by | null),decoy_throws?: (order_by | null),enemies_flashed?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),five_kill_rounds?: (order_by | null),flash_assists?: (order_by | null),flash_duration_count?: (order_by | null),flash_duration_sum?: (order_by | null),flashes_thrown?: (order_by | null),four_kill_rounds?: (order_by | null),he_damage?: (order_by | null),he_team_damage?: (order_by | null),he_throws?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),hs_kills?: (order_by | null),hs_kills_ct?: (order_by | null),hs_kills_t?: (order_by | null),kast_rounds?: (order_by | null),kast_total_rounds?: (order_by | null),kills?: (order_by | null),kills_ct?: (order_by | null),kills_t?: (order_by | null),knife_kills?: (order_by | null),molotov_damage?: (order_by | null),molotov_throws?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),rounds_ct?: (order_by | null),rounds_played?: (order_by | null),rounds_t?: (order_by | null),shots_at_spotted?: (order_by | null),shots_fired?: (order_by | null),smoke_throws?: (order_by | null),spotted_count?: (order_by | null),spotted_with_damage_count?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),steam_id?: (order_by | null),team_damage?: (order_by | null),team_flashed?: (order_by | null),three_kill_rounds?: (order_by | null),time_to_damage_count?: (order_by | null),time_to_damage_sum_s?: (order_by | null),total_engagement_frames?: (order_by | null),trade_kill_attempts?: (order_by | null),trade_kill_opportunities?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_attempts?: (order_by | null),traded_death_opportunities?: (order_by | null),traded_death_successes?: (order_by | null),two_kill_rounds?: (order_by | null),unused_utility_value?: (order_by | null),util_on_death_count?: (order_by | null),util_on_death_sum?: (order_by | null),wasted_magazine_shots?: (order_by | null),zeus_kills?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface player_match_map_stats_stddev_samp_fieldsGenqlSelection{ + assists?: boolean | number + assists_ct?: boolean | number + assists_t?: boolean | number + counter_strafe_eligible_shots?: boolean | number + counter_strafed_shots?: boolean | number + crosshair_angle_count?: boolean | number + crosshair_angle_sum_deg?: boolean | number + damage?: boolean | number + damage_ct?: boolean | number + damage_t?: boolean | number + deaths?: boolean | number + deaths_ct?: boolean | number + deaths_t?: boolean | number + decoy_throws?: boolean | number + enemies_flashed?: boolean | number + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + five_kill_rounds?: boolean | number + flash_assists?: boolean | number + flash_duration_count?: boolean | number + flash_duration_sum?: boolean | number + flashes_thrown?: boolean | number + four_kill_rounds?: boolean | number + he_damage?: boolean | number + he_team_damage?: boolean | number + he_throws?: boolean | number + headshot_hits?: boolean | number + hits?: boolean | number + hits_at_spotted?: boolean | number + hs_kills?: boolean | number + hs_kills_ct?: boolean | number + hs_kills_t?: boolean | number + kast_rounds?: boolean | number + kast_total_rounds?: boolean | number + kills?: boolean | number + kills_ct?: boolean | number + kills_t?: boolean | number + knife_kills?: boolean | number + molotov_damage?: boolean | number + molotov_throws?: boolean | number + non_awp_hits?: boolean | number + on_target_frames?: boolean | number + rounds_ct?: boolean | number + rounds_played?: boolean | number + rounds_t?: boolean | number + shots_at_spotted?: boolean | number + shots_fired?: boolean | number + smoke_throws?: boolean | number + spotted_count?: boolean | number + spotted_with_damage_count?: boolean | number + spray_hits?: boolean | number + spray_shots?: boolean | number + steam_id?: boolean | number + team_damage?: boolean | number + team_flashed?: boolean | number + three_kill_rounds?: boolean | number + time_to_damage_count?: boolean | number + time_to_damage_sum_s?: boolean | number + total_engagement_frames?: boolean | number + trade_kill_attempts?: boolean | number + trade_kill_opportunities?: boolean | number + trade_kill_successes?: boolean | number + traded_death_attempts?: boolean | number + traded_death_opportunities?: boolean | number + traded_death_successes?: boolean | number + two_kill_rounds?: boolean | number + unused_utility_value?: boolean | number + util_on_death_count?: boolean | number + util_on_death_sum?: boolean | number + wasted_magazine_shots?: boolean | number + zeus_kills?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "player_match_map_stats" */ +export interface player_match_map_stats_stddev_samp_order_by {assists?: (order_by | null),assists_ct?: (order_by | null),assists_t?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),crosshair_angle_count?: (order_by | null),crosshair_angle_sum_deg?: (order_by | null),damage?: (order_by | null),damage_ct?: (order_by | null),damage_t?: (order_by | null),deaths?: (order_by | null),deaths_ct?: (order_by | null),deaths_t?: (order_by | null),decoy_throws?: (order_by | null),enemies_flashed?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),five_kill_rounds?: (order_by | null),flash_assists?: (order_by | null),flash_duration_count?: (order_by | null),flash_duration_sum?: (order_by | null),flashes_thrown?: (order_by | null),four_kill_rounds?: (order_by | null),he_damage?: (order_by | null),he_team_damage?: (order_by | null),he_throws?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),hs_kills?: (order_by | null),hs_kills_ct?: (order_by | null),hs_kills_t?: (order_by | null),kast_rounds?: (order_by | null),kast_total_rounds?: (order_by | null),kills?: (order_by | null),kills_ct?: (order_by | null),kills_t?: (order_by | null),knife_kills?: (order_by | null),molotov_damage?: (order_by | null),molotov_throws?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),rounds_ct?: (order_by | null),rounds_played?: (order_by | null),rounds_t?: (order_by | null),shots_at_spotted?: (order_by | null),shots_fired?: (order_by | null),smoke_throws?: (order_by | null),spotted_count?: (order_by | null),spotted_with_damage_count?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),steam_id?: (order_by | null),team_damage?: (order_by | null),team_flashed?: (order_by | null),three_kill_rounds?: (order_by | null),time_to_damage_count?: (order_by | null),time_to_damage_sum_s?: (order_by | null),total_engagement_frames?: (order_by | null),trade_kill_attempts?: (order_by | null),trade_kill_opportunities?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_attempts?: (order_by | null),traded_death_opportunities?: (order_by | null),traded_death_successes?: (order_by | null),two_kill_rounds?: (order_by | null),unused_utility_value?: (order_by | null),util_on_death_count?: (order_by | null),util_on_death_sum?: (order_by | null),wasted_magazine_shots?: (order_by | null),zeus_kills?: (order_by | null)} + + +/** Streaming cursor of the table "player_match_map_stats" */ +export interface player_match_map_stats_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: player_match_map_stats_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface player_match_map_stats_stream_cursor_value_input {assists?: (Scalars['Int'] | null),assists_ct?: (Scalars['Int'] | null),assists_t?: (Scalars['Int'] | null),counter_strafe_eligible_shots?: (Scalars['Int'] | null),counter_strafed_shots?: (Scalars['Int'] | null),crosshair_angle_count?: (Scalars['Int'] | null),crosshair_angle_sum_deg?: (Scalars['numeric'] | null),damage?: (Scalars['Int'] | null),damage_ct?: (Scalars['Int'] | null),damage_t?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),deaths_ct?: (Scalars['Int'] | null),deaths_t?: (Scalars['Int'] | null),decoy_throws?: (Scalars['Int'] | null),enemies_flashed?: (Scalars['Int'] | null),first_bullet_hits?: (Scalars['Int'] | null),first_bullet_shots?: (Scalars['Int'] | null),five_kill_rounds?: (Scalars['Int'] | null),flash_assists?: (Scalars['Int'] | null),flash_duration_count?: (Scalars['Int'] | null),flash_duration_sum?: (Scalars['numeric'] | null),flashes_thrown?: (Scalars['Int'] | null),four_kill_rounds?: (Scalars['Int'] | null),he_damage?: (Scalars['Int'] | null),he_team_damage?: (Scalars['Int'] | null),he_throws?: (Scalars['Int'] | null),headshot_hits?: (Scalars['Int'] | null),hits?: (Scalars['Int'] | null),hits_at_spotted?: (Scalars['Int'] | null),hs_kills?: (Scalars['Int'] | null),hs_kills_ct?: (Scalars['Int'] | null),hs_kills_t?: (Scalars['Int'] | null),kast_rounds?: (Scalars['Int'] | null),kast_total_rounds?: (Scalars['Int'] | null),kills?: (Scalars['Int'] | null),kills_ct?: (Scalars['Int'] | null),kills_t?: (Scalars['Int'] | null),knife_kills?: (Scalars['Int'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),molotov_damage?: (Scalars['Int'] | null),molotov_throws?: (Scalars['Int'] | null),non_awp_hits?: (Scalars['Int'] | null),on_target_frames?: (Scalars['Int'] | null),rounds_ct?: (Scalars['Int'] | null),rounds_played?: (Scalars['Int'] | null),rounds_t?: (Scalars['Int'] | null),shots_at_spotted?: (Scalars['Int'] | null),shots_fired?: (Scalars['Int'] | null),smoke_throws?: (Scalars['Int'] | null),spotted_count?: (Scalars['Int'] | null),spotted_with_damage_count?: (Scalars['Int'] | null),spray_hits?: (Scalars['Int'] | null),spray_shots?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null),team_damage?: (Scalars['Int'] | null),team_flashed?: (Scalars['Int'] | null),three_kill_rounds?: (Scalars['Int'] | null),time_to_damage_count?: (Scalars['Int'] | null),time_to_damage_sum_s?: (Scalars['numeric'] | null),total_engagement_frames?: (Scalars['Int'] | null),trade_kill_attempts?: (Scalars['Int'] | null),trade_kill_opportunities?: (Scalars['Int'] | null),trade_kill_successes?: (Scalars['Int'] | null),traded_death_attempts?: (Scalars['Int'] | null),traded_death_opportunities?: (Scalars['Int'] | null),traded_death_successes?: (Scalars['Int'] | null),two_kill_rounds?: (Scalars['Int'] | null),unused_utility_value?: (Scalars['Int'] | null),updated_at?: (Scalars['timestamptz'] | null),util_on_death_count?: (Scalars['Int'] | null),util_on_death_sum?: (Scalars['Int'] | null),wasted_magazine_shots?: (Scalars['Int'] | null),zeus_kills?: (Scalars['Int'] | null)} + + +/** aggregate sum on columns */ +export interface player_match_map_stats_sum_fieldsGenqlSelection{ + assists?: boolean | number + assists_ct?: boolean | number + assists_t?: boolean | number + counter_strafe_eligible_shots?: boolean | number + counter_strafed_shots?: boolean | number + crosshair_angle_count?: boolean | number + crosshair_angle_sum_deg?: boolean | number + damage?: boolean | number + damage_ct?: boolean | number + damage_t?: boolean | number + deaths?: boolean | number + deaths_ct?: boolean | number + deaths_t?: boolean | number + decoy_throws?: boolean | number + enemies_flashed?: boolean | number + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + five_kill_rounds?: boolean | number + flash_assists?: boolean | number + flash_duration_count?: boolean | number + flash_duration_sum?: boolean | number + flashes_thrown?: boolean | number + four_kill_rounds?: boolean | number + he_damage?: boolean | number + he_team_damage?: boolean | number + he_throws?: boolean | number + headshot_hits?: boolean | number + hits?: boolean | number + hits_at_spotted?: boolean | number + hs_kills?: boolean | number + hs_kills_ct?: boolean | number + hs_kills_t?: boolean | number + kast_rounds?: boolean | number + kast_total_rounds?: boolean | number + kills?: boolean | number + kills_ct?: boolean | number + kills_t?: boolean | number + knife_kills?: boolean | number + molotov_damage?: boolean | number + molotov_throws?: boolean | number + non_awp_hits?: boolean | number + on_target_frames?: boolean | number + rounds_ct?: boolean | number + rounds_played?: boolean | number + rounds_t?: boolean | number + shots_at_spotted?: boolean | number + shots_fired?: boolean | number + smoke_throws?: boolean | number + spotted_count?: boolean | number + spotted_with_damage_count?: boolean | number + spray_hits?: boolean | number + spray_shots?: boolean | number + steam_id?: boolean | number + team_damage?: boolean | number + team_flashed?: boolean | number + three_kill_rounds?: boolean | number + time_to_damage_count?: boolean | number + time_to_damage_sum_s?: boolean | number + total_engagement_frames?: boolean | number + trade_kill_attempts?: boolean | number + trade_kill_opportunities?: boolean | number + trade_kill_successes?: boolean | number + traded_death_attempts?: boolean | number + traded_death_opportunities?: boolean | number + traded_death_successes?: boolean | number + two_kill_rounds?: boolean | number + unused_utility_value?: boolean | number + util_on_death_count?: boolean | number + util_on_death_sum?: boolean | number + wasted_magazine_shots?: boolean | number + zeus_kills?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "player_match_map_stats" */ +export interface player_match_map_stats_sum_order_by {assists?: (order_by | null),assists_ct?: (order_by | null),assists_t?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),crosshair_angle_count?: (order_by | null),crosshair_angle_sum_deg?: (order_by | null),damage?: (order_by | null),damage_ct?: (order_by | null),damage_t?: (order_by | null),deaths?: (order_by | null),deaths_ct?: (order_by | null),deaths_t?: (order_by | null),decoy_throws?: (order_by | null),enemies_flashed?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),five_kill_rounds?: (order_by | null),flash_assists?: (order_by | null),flash_duration_count?: (order_by | null),flash_duration_sum?: (order_by | null),flashes_thrown?: (order_by | null),four_kill_rounds?: (order_by | null),he_damage?: (order_by | null),he_team_damage?: (order_by | null),he_throws?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),hs_kills?: (order_by | null),hs_kills_ct?: (order_by | null),hs_kills_t?: (order_by | null),kast_rounds?: (order_by | null),kast_total_rounds?: (order_by | null),kills?: (order_by | null),kills_ct?: (order_by | null),kills_t?: (order_by | null),knife_kills?: (order_by | null),molotov_damage?: (order_by | null),molotov_throws?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),rounds_ct?: (order_by | null),rounds_played?: (order_by | null),rounds_t?: (order_by | null),shots_at_spotted?: (order_by | null),shots_fired?: (order_by | null),smoke_throws?: (order_by | null),spotted_count?: (order_by | null),spotted_with_damage_count?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),steam_id?: (order_by | null),team_damage?: (order_by | null),team_flashed?: (order_by | null),three_kill_rounds?: (order_by | null),time_to_damage_count?: (order_by | null),time_to_damage_sum_s?: (order_by | null),total_engagement_frames?: (order_by | null),trade_kill_attempts?: (order_by | null),trade_kill_opportunities?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_attempts?: (order_by | null),traded_death_opportunities?: (order_by | null),traded_death_successes?: (order_by | null),two_kill_rounds?: (order_by | null),unused_utility_value?: (order_by | null),util_on_death_count?: (order_by | null),util_on_death_sum?: (order_by | null),wasted_magazine_shots?: (order_by | null),zeus_kills?: (order_by | null)} + +export interface player_match_map_stats_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (player_match_map_stats_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (player_match_map_stats_set_input | null), +/** filter the rows which have to be updated */ +where: player_match_map_stats_bool_exp} + + +/** aggregate var_pop on columns */ +export interface player_match_map_stats_var_pop_fieldsGenqlSelection{ + assists?: boolean | number + assists_ct?: boolean | number + assists_t?: boolean | number + counter_strafe_eligible_shots?: boolean | number + counter_strafed_shots?: boolean | number + crosshair_angle_count?: boolean | number + crosshair_angle_sum_deg?: boolean | number + damage?: boolean | number + damage_ct?: boolean | number + damage_t?: boolean | number + deaths?: boolean | number + deaths_ct?: boolean | number + deaths_t?: boolean | number + decoy_throws?: boolean | number + enemies_flashed?: boolean | number + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + five_kill_rounds?: boolean | number + flash_assists?: boolean | number + flash_duration_count?: boolean | number + flash_duration_sum?: boolean | number + flashes_thrown?: boolean | number + four_kill_rounds?: boolean | number + he_damage?: boolean | number + he_team_damage?: boolean | number + he_throws?: boolean | number + headshot_hits?: boolean | number + hits?: boolean | number + hits_at_spotted?: boolean | number + hs_kills?: boolean | number + hs_kills_ct?: boolean | number + hs_kills_t?: boolean | number + kast_rounds?: boolean | number + kast_total_rounds?: boolean | number + kills?: boolean | number + kills_ct?: boolean | number + kills_t?: boolean | number + knife_kills?: boolean | number + molotov_damage?: boolean | number + molotov_throws?: boolean | number + non_awp_hits?: boolean | number + on_target_frames?: boolean | number + rounds_ct?: boolean | number + rounds_played?: boolean | number + rounds_t?: boolean | number + shots_at_spotted?: boolean | number + shots_fired?: boolean | number + smoke_throws?: boolean | number + spotted_count?: boolean | number + spotted_with_damage_count?: boolean | number + spray_hits?: boolean | number + spray_shots?: boolean | number + steam_id?: boolean | number + team_damage?: boolean | number + team_flashed?: boolean | number + three_kill_rounds?: boolean | number + time_to_damage_count?: boolean | number + time_to_damage_sum_s?: boolean | number + total_engagement_frames?: boolean | number + trade_kill_attempts?: boolean | number + trade_kill_opportunities?: boolean | number + trade_kill_successes?: boolean | number + traded_death_attempts?: boolean | number + traded_death_opportunities?: boolean | number + traded_death_successes?: boolean | number + two_kill_rounds?: boolean | number + unused_utility_value?: boolean | number + util_on_death_count?: boolean | number + util_on_death_sum?: boolean | number + wasted_magazine_shots?: boolean | number + zeus_kills?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "player_match_map_stats" */ +export interface player_match_map_stats_var_pop_order_by {assists?: (order_by | null),assists_ct?: (order_by | null),assists_t?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),crosshair_angle_count?: (order_by | null),crosshair_angle_sum_deg?: (order_by | null),damage?: (order_by | null),damage_ct?: (order_by | null),damage_t?: (order_by | null),deaths?: (order_by | null),deaths_ct?: (order_by | null),deaths_t?: (order_by | null),decoy_throws?: (order_by | null),enemies_flashed?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),five_kill_rounds?: (order_by | null),flash_assists?: (order_by | null),flash_duration_count?: (order_by | null),flash_duration_sum?: (order_by | null),flashes_thrown?: (order_by | null),four_kill_rounds?: (order_by | null),he_damage?: (order_by | null),he_team_damage?: (order_by | null),he_throws?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),hs_kills?: (order_by | null),hs_kills_ct?: (order_by | null),hs_kills_t?: (order_by | null),kast_rounds?: (order_by | null),kast_total_rounds?: (order_by | null),kills?: (order_by | null),kills_ct?: (order_by | null),kills_t?: (order_by | null),knife_kills?: (order_by | null),molotov_damage?: (order_by | null),molotov_throws?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),rounds_ct?: (order_by | null),rounds_played?: (order_by | null),rounds_t?: (order_by | null),shots_at_spotted?: (order_by | null),shots_fired?: (order_by | null),smoke_throws?: (order_by | null),spotted_count?: (order_by | null),spotted_with_damage_count?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),steam_id?: (order_by | null),team_damage?: (order_by | null),team_flashed?: (order_by | null),three_kill_rounds?: (order_by | null),time_to_damage_count?: (order_by | null),time_to_damage_sum_s?: (order_by | null),total_engagement_frames?: (order_by | null),trade_kill_attempts?: (order_by | null),trade_kill_opportunities?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_attempts?: (order_by | null),traded_death_opportunities?: (order_by | null),traded_death_successes?: (order_by | null),two_kill_rounds?: (order_by | null),unused_utility_value?: (order_by | null),util_on_death_count?: (order_by | null),util_on_death_sum?: (order_by | null),wasted_magazine_shots?: (order_by | null),zeus_kills?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface player_match_map_stats_var_samp_fieldsGenqlSelection{ + assists?: boolean | number + assists_ct?: boolean | number + assists_t?: boolean | number + counter_strafe_eligible_shots?: boolean | number + counter_strafed_shots?: boolean | number + crosshair_angle_count?: boolean | number + crosshair_angle_sum_deg?: boolean | number + damage?: boolean | number + damage_ct?: boolean | number + damage_t?: boolean | number + deaths?: boolean | number + deaths_ct?: boolean | number + deaths_t?: boolean | number + decoy_throws?: boolean | number + enemies_flashed?: boolean | number + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + five_kill_rounds?: boolean | number + flash_assists?: boolean | number + flash_duration_count?: boolean | number + flash_duration_sum?: boolean | number + flashes_thrown?: boolean | number + four_kill_rounds?: boolean | number + he_damage?: boolean | number + he_team_damage?: boolean | number + he_throws?: boolean | number + headshot_hits?: boolean | number + hits?: boolean | number + hits_at_spotted?: boolean | number + hs_kills?: boolean | number + hs_kills_ct?: boolean | number + hs_kills_t?: boolean | number + kast_rounds?: boolean | number + kast_total_rounds?: boolean | number + kills?: boolean | number + kills_ct?: boolean | number + kills_t?: boolean | number + knife_kills?: boolean | number + molotov_damage?: boolean | number + molotov_throws?: boolean | number + non_awp_hits?: boolean | number + on_target_frames?: boolean | number + rounds_ct?: boolean | number + rounds_played?: boolean | number + rounds_t?: boolean | number + shots_at_spotted?: boolean | number + shots_fired?: boolean | number + smoke_throws?: boolean | number + spotted_count?: boolean | number + spotted_with_damage_count?: boolean | number + spray_hits?: boolean | number + spray_shots?: boolean | number + steam_id?: boolean | number + team_damage?: boolean | number + team_flashed?: boolean | number + three_kill_rounds?: boolean | number + time_to_damage_count?: boolean | number + time_to_damage_sum_s?: boolean | number + total_engagement_frames?: boolean | number + trade_kill_attempts?: boolean | number + trade_kill_opportunities?: boolean | number + trade_kill_successes?: boolean | number + traded_death_attempts?: boolean | number + traded_death_opportunities?: boolean | number + traded_death_successes?: boolean | number + two_kill_rounds?: boolean | number + unused_utility_value?: boolean | number + util_on_death_count?: boolean | number + util_on_death_sum?: boolean | number + wasted_magazine_shots?: boolean | number + zeus_kills?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "player_match_map_stats" */ +export interface player_match_map_stats_var_samp_order_by {assists?: (order_by | null),assists_ct?: (order_by | null),assists_t?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),crosshair_angle_count?: (order_by | null),crosshair_angle_sum_deg?: (order_by | null),damage?: (order_by | null),damage_ct?: (order_by | null),damage_t?: (order_by | null),deaths?: (order_by | null),deaths_ct?: (order_by | null),deaths_t?: (order_by | null),decoy_throws?: (order_by | null),enemies_flashed?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),five_kill_rounds?: (order_by | null),flash_assists?: (order_by | null),flash_duration_count?: (order_by | null),flash_duration_sum?: (order_by | null),flashes_thrown?: (order_by | null),four_kill_rounds?: (order_by | null),he_damage?: (order_by | null),he_team_damage?: (order_by | null),he_throws?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),hs_kills?: (order_by | null),hs_kills_ct?: (order_by | null),hs_kills_t?: (order_by | null),kast_rounds?: (order_by | null),kast_total_rounds?: (order_by | null),kills?: (order_by | null),kills_ct?: (order_by | null),kills_t?: (order_by | null),knife_kills?: (order_by | null),molotov_damage?: (order_by | null),molotov_throws?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),rounds_ct?: (order_by | null),rounds_played?: (order_by | null),rounds_t?: (order_by | null),shots_at_spotted?: (order_by | null),shots_fired?: (order_by | null),smoke_throws?: (order_by | null),spotted_count?: (order_by | null),spotted_with_damage_count?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),steam_id?: (order_by | null),team_damage?: (order_by | null),team_flashed?: (order_by | null),three_kill_rounds?: (order_by | null),time_to_damage_count?: (order_by | null),time_to_damage_sum_s?: (order_by | null),total_engagement_frames?: (order_by | null),trade_kill_attempts?: (order_by | null),trade_kill_opportunities?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_attempts?: (order_by | null),traded_death_opportunities?: (order_by | null),traded_death_successes?: (order_by | null),two_kill_rounds?: (order_by | null),unused_utility_value?: (order_by | null),util_on_death_count?: (order_by | null),util_on_death_sum?: (order_by | null),wasted_magazine_shots?: (order_by | null),zeus_kills?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface player_match_map_stats_variance_fieldsGenqlSelection{ + assists?: boolean | number + assists_ct?: boolean | number + assists_t?: boolean | number + counter_strafe_eligible_shots?: boolean | number + counter_strafed_shots?: boolean | number + crosshair_angle_count?: boolean | number + crosshair_angle_sum_deg?: boolean | number + damage?: boolean | number + damage_ct?: boolean | number + damage_t?: boolean | number + deaths?: boolean | number + deaths_ct?: boolean | number + deaths_t?: boolean | number + decoy_throws?: boolean | number + enemies_flashed?: boolean | number + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + five_kill_rounds?: boolean | number + flash_assists?: boolean | number + flash_duration_count?: boolean | number + flash_duration_sum?: boolean | number + flashes_thrown?: boolean | number + four_kill_rounds?: boolean | number + he_damage?: boolean | number + he_team_damage?: boolean | number + he_throws?: boolean | number + headshot_hits?: boolean | number + hits?: boolean | number + hits_at_spotted?: boolean | number + hs_kills?: boolean | number + hs_kills_ct?: boolean | number + hs_kills_t?: boolean | number + kast_rounds?: boolean | number + kast_total_rounds?: boolean | number + kills?: boolean | number + kills_ct?: boolean | number + kills_t?: boolean | number + knife_kills?: boolean | number + molotov_damage?: boolean | number + molotov_throws?: boolean | number + non_awp_hits?: boolean | number + on_target_frames?: boolean | number + rounds_ct?: boolean | number + rounds_played?: boolean | number + rounds_t?: boolean | number + shots_at_spotted?: boolean | number + shots_fired?: boolean | number + smoke_throws?: boolean | number + spotted_count?: boolean | number + spotted_with_damage_count?: boolean | number + spray_hits?: boolean | number + spray_shots?: boolean | number + steam_id?: boolean | number + team_damage?: boolean | number + team_flashed?: boolean | number + three_kill_rounds?: boolean | number + time_to_damage_count?: boolean | number + time_to_damage_sum_s?: boolean | number + total_engagement_frames?: boolean | number + trade_kill_attempts?: boolean | number + trade_kill_opportunities?: boolean | number + trade_kill_successes?: boolean | number + traded_death_attempts?: boolean | number + traded_death_opportunities?: boolean | number + traded_death_successes?: boolean | number + two_kill_rounds?: boolean | number + unused_utility_value?: boolean | number + util_on_death_count?: boolean | number + util_on_death_sum?: boolean | number + wasted_magazine_shots?: boolean | number + zeus_kills?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "player_match_map_stats" */ +export interface player_match_map_stats_variance_order_by {assists?: (order_by | null),assists_ct?: (order_by | null),assists_t?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),crosshair_angle_count?: (order_by | null),crosshair_angle_sum_deg?: (order_by | null),damage?: (order_by | null),damage_ct?: (order_by | null),damage_t?: (order_by | null),deaths?: (order_by | null),deaths_ct?: (order_by | null),deaths_t?: (order_by | null),decoy_throws?: (order_by | null),enemies_flashed?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),five_kill_rounds?: (order_by | null),flash_assists?: (order_by | null),flash_duration_count?: (order_by | null),flash_duration_sum?: (order_by | null),flashes_thrown?: (order_by | null),four_kill_rounds?: (order_by | null),he_damage?: (order_by | null),he_team_damage?: (order_by | null),he_throws?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),hs_kills?: (order_by | null),hs_kills_ct?: (order_by | null),hs_kills_t?: (order_by | null),kast_rounds?: (order_by | null),kast_total_rounds?: (order_by | null),kills?: (order_by | null),kills_ct?: (order_by | null),kills_t?: (order_by | null),knife_kills?: (order_by | null),molotov_damage?: (order_by | null),molotov_throws?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),rounds_ct?: (order_by | null),rounds_played?: (order_by | null),rounds_t?: (order_by | null),shots_at_spotted?: (order_by | null),shots_fired?: (order_by | null),smoke_throws?: (order_by | null),spotted_count?: (order_by | null),spotted_with_damage_count?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),steam_id?: (order_by | null),team_damage?: (order_by | null),team_flashed?: (order_by | null),three_kill_rounds?: (order_by | null),time_to_damage_count?: (order_by | null),time_to_damage_sum_s?: (order_by | null),total_engagement_frames?: (order_by | null),trade_kill_attempts?: (order_by | null),trade_kill_opportunities?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_attempts?: (order_by | null),traded_death_opportunities?: (order_by | null),traded_death_successes?: (order_by | null),two_kill_rounds?: (order_by | null),unused_utility_value?: (order_by | null),util_on_death_count?: (order_by | null),util_on_death_sum?: (order_by | null),wasted_magazine_shots?: (order_by | null),zeus_kills?: (order_by | null)} + + +/** columns and relationships of "player_match_performance_v" */ +export interface player_match_performance_vGenqlSelection{ + accuracy?: boolean | number + accuracy_spotted?: boolean | number + aim_rating?: boolean | number + counter_strafe_pct?: boolean | number + enemy_blind_pr?: boolean | number + flash_assists_pr?: boolean | number + hs_pct?: boolean | number + kast_pct?: boolean | number + match_id?: boolean | number + overall_rating?: boolean | number + played_at?: boolean | number + positioning_rating?: boolean | number + rounds?: boolean | number + source?: boolean | number + steam_id?: boolean | number + survival_pct?: boolean | number + traded_death_pct?: boolean | number + util_efficiency?: boolean | number + utility_rating?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "player_match_performance_v" */ +export interface player_match_performance_v_aggregateGenqlSelection{ + aggregate?: player_match_performance_v_aggregate_fieldsGenqlSelection + nodes?: player_match_performance_vGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "player_match_performance_v" */ +export interface player_match_performance_v_aggregate_fieldsGenqlSelection{ + avg?: player_match_performance_v_avg_fieldsGenqlSelection + count?: { __args: {columns?: (player_match_performance_v_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: player_match_performance_v_max_fieldsGenqlSelection + min?: player_match_performance_v_min_fieldsGenqlSelection + stddev?: player_match_performance_v_stddev_fieldsGenqlSelection + stddev_pop?: player_match_performance_v_stddev_pop_fieldsGenqlSelection + stddev_samp?: player_match_performance_v_stddev_samp_fieldsGenqlSelection + sum?: player_match_performance_v_sum_fieldsGenqlSelection + var_pop?: player_match_performance_v_var_pop_fieldsGenqlSelection + var_samp?: player_match_performance_v_var_samp_fieldsGenqlSelection + variance?: player_match_performance_v_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface player_match_performance_v_avg_fieldsGenqlSelection{ + accuracy?: boolean | number + accuracy_spotted?: boolean | number + aim_rating?: boolean | number + counter_strafe_pct?: boolean | number + enemy_blind_pr?: boolean | number + flash_assists_pr?: boolean | number + hs_pct?: boolean | number + kast_pct?: boolean | number + overall_rating?: boolean | number + positioning_rating?: boolean | number + rounds?: boolean | number + steam_id?: boolean | number + survival_pct?: boolean | number + traded_death_pct?: boolean | number + util_efficiency?: boolean | number + utility_rating?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "player_match_performance_v". All fields are combined with a logical 'AND'. */ +export interface player_match_performance_v_bool_exp {_and?: (player_match_performance_v_bool_exp[] | null),_not?: (player_match_performance_v_bool_exp | null),_or?: (player_match_performance_v_bool_exp[] | null),accuracy?: (numeric_comparison_exp | null),accuracy_spotted?: (numeric_comparison_exp | null),aim_rating?: (float8_comparison_exp | null),counter_strafe_pct?: (numeric_comparison_exp | null),enemy_blind_pr?: (numeric_comparison_exp | null),flash_assists_pr?: (numeric_comparison_exp | null),hs_pct?: (numeric_comparison_exp | null),kast_pct?: (numeric_comparison_exp | null),match_id?: (uuid_comparison_exp | null),overall_rating?: (float8_comparison_exp | null),played_at?: (timestamptz_comparison_exp | null),positioning_rating?: (float8_comparison_exp | null),rounds?: (Int_comparison_exp | null),source?: (String_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),survival_pct?: (numeric_comparison_exp | null),traded_death_pct?: (numeric_comparison_exp | null),util_efficiency?: (numeric_comparison_exp | null),utility_rating?: (float8_comparison_exp | null)} + + +/** aggregate max on columns */ +export interface player_match_performance_v_max_fieldsGenqlSelection{ + accuracy?: boolean | number + accuracy_spotted?: boolean | number + aim_rating?: boolean | number + counter_strafe_pct?: boolean | number + enemy_blind_pr?: boolean | number + flash_assists_pr?: boolean | number + hs_pct?: boolean | number + kast_pct?: boolean | number + match_id?: boolean | number + overall_rating?: boolean | number + played_at?: boolean | number + positioning_rating?: boolean | number + rounds?: boolean | number + source?: boolean | number + steam_id?: boolean | number + survival_pct?: boolean | number + traded_death_pct?: boolean | number + util_efficiency?: boolean | number + utility_rating?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface player_match_performance_v_min_fieldsGenqlSelection{ + accuracy?: boolean | number + accuracy_spotted?: boolean | number + aim_rating?: boolean | number + counter_strafe_pct?: boolean | number + enemy_blind_pr?: boolean | number + flash_assists_pr?: boolean | number + hs_pct?: boolean | number + kast_pct?: boolean | number + match_id?: boolean | number + overall_rating?: boolean | number + played_at?: boolean | number + positioning_rating?: boolean | number + rounds?: boolean | number + source?: boolean | number + steam_id?: boolean | number + survival_pct?: boolean | number + traded_death_pct?: boolean | number + util_efficiency?: boolean | number + utility_rating?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Ordering options when selecting data from "player_match_performance_v". */ +export interface player_match_performance_v_order_by {accuracy?: (order_by | null),accuracy_spotted?: (order_by | null),aim_rating?: (order_by | null),counter_strafe_pct?: (order_by | null),enemy_blind_pr?: (order_by | null),flash_assists_pr?: (order_by | null),hs_pct?: (order_by | null),kast_pct?: (order_by | null),match_id?: (order_by | null),overall_rating?: (order_by | null),played_at?: (order_by | null),positioning_rating?: (order_by | null),rounds?: (order_by | null),source?: (order_by | null),steam_id?: (order_by | null),survival_pct?: (order_by | null),traded_death_pct?: (order_by | null),util_efficiency?: (order_by | null),utility_rating?: (order_by | null)} + + +/** aggregate stddev on columns */ +export interface player_match_performance_v_stddev_fieldsGenqlSelection{ + accuracy?: boolean | number + accuracy_spotted?: boolean | number + aim_rating?: boolean | number + counter_strafe_pct?: boolean | number + enemy_blind_pr?: boolean | number + flash_assists_pr?: boolean | number + hs_pct?: boolean | number + kast_pct?: boolean | number + overall_rating?: boolean | number + positioning_rating?: boolean | number + rounds?: boolean | number + steam_id?: boolean | number + survival_pct?: boolean | number + traded_death_pct?: boolean | number + util_efficiency?: boolean | number + utility_rating?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface player_match_performance_v_stddev_pop_fieldsGenqlSelection{ + accuracy?: boolean | number + accuracy_spotted?: boolean | number + aim_rating?: boolean | number + counter_strafe_pct?: boolean | number + enemy_blind_pr?: boolean | number + flash_assists_pr?: boolean | number + hs_pct?: boolean | number + kast_pct?: boolean | number + overall_rating?: boolean | number + positioning_rating?: boolean | number + rounds?: boolean | number + steam_id?: boolean | number + survival_pct?: boolean | number + traded_death_pct?: boolean | number + util_efficiency?: boolean | number + utility_rating?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface player_match_performance_v_stddev_samp_fieldsGenqlSelection{ + accuracy?: boolean | number + accuracy_spotted?: boolean | number + aim_rating?: boolean | number + counter_strafe_pct?: boolean | number + enemy_blind_pr?: boolean | number + flash_assists_pr?: boolean | number + hs_pct?: boolean | number + kast_pct?: boolean | number + overall_rating?: boolean | number + positioning_rating?: boolean | number + rounds?: boolean | number + steam_id?: boolean | number + survival_pct?: boolean | number + traded_death_pct?: boolean | number + util_efficiency?: boolean | number + utility_rating?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "player_match_performance_v" */ +export interface player_match_performance_v_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: player_match_performance_v_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface player_match_performance_v_stream_cursor_value_input {accuracy?: (Scalars['numeric'] | null),accuracy_spotted?: (Scalars['numeric'] | null),aim_rating?: (Scalars['float8'] | null),counter_strafe_pct?: (Scalars['numeric'] | null),enemy_blind_pr?: (Scalars['numeric'] | null),flash_assists_pr?: (Scalars['numeric'] | null),hs_pct?: (Scalars['numeric'] | null),kast_pct?: (Scalars['numeric'] | null),match_id?: (Scalars['uuid'] | null),overall_rating?: (Scalars['float8'] | null),played_at?: (Scalars['timestamptz'] | null),positioning_rating?: (Scalars['float8'] | null),rounds?: (Scalars['Int'] | null),source?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null),survival_pct?: (Scalars['numeric'] | null),traded_death_pct?: (Scalars['numeric'] | null),util_efficiency?: (Scalars['numeric'] | null),utility_rating?: (Scalars['float8'] | null)} + + +/** aggregate sum on columns */ +export interface player_match_performance_v_sum_fieldsGenqlSelection{ + accuracy?: boolean | number + accuracy_spotted?: boolean | number + aim_rating?: boolean | number + counter_strafe_pct?: boolean | number + enemy_blind_pr?: boolean | number + flash_assists_pr?: boolean | number + hs_pct?: boolean | number + kast_pct?: boolean | number + overall_rating?: boolean | number + positioning_rating?: boolean | number + rounds?: boolean | number + steam_id?: boolean | number + survival_pct?: boolean | number + traded_death_pct?: boolean | number + util_efficiency?: boolean | number + utility_rating?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_pop on columns */ +export interface player_match_performance_v_var_pop_fieldsGenqlSelection{ + accuracy?: boolean | number + accuracy_spotted?: boolean | number + aim_rating?: boolean | number + counter_strafe_pct?: boolean | number + enemy_blind_pr?: boolean | number + flash_assists_pr?: boolean | number + hs_pct?: boolean | number + kast_pct?: boolean | number + overall_rating?: boolean | number + positioning_rating?: boolean | number + rounds?: boolean | number + steam_id?: boolean | number + survival_pct?: boolean | number + traded_death_pct?: boolean | number + util_efficiency?: boolean | number + utility_rating?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface player_match_performance_v_var_samp_fieldsGenqlSelection{ + accuracy?: boolean | number + accuracy_spotted?: boolean | number + aim_rating?: boolean | number + counter_strafe_pct?: boolean | number + enemy_blind_pr?: boolean | number + flash_assists_pr?: boolean | number + hs_pct?: boolean | number + kast_pct?: boolean | number + overall_rating?: boolean | number + positioning_rating?: boolean | number + rounds?: boolean | number + steam_id?: boolean | number + survival_pct?: boolean | number + traded_death_pct?: boolean | number + util_efficiency?: boolean | number + utility_rating?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface player_match_performance_v_variance_fieldsGenqlSelection{ + accuracy?: boolean | number + accuracy_spotted?: boolean | number + aim_rating?: boolean | number + counter_strafe_pct?: boolean | number + enemy_blind_pr?: boolean | number + flash_assists_pr?: boolean | number + hs_pct?: boolean | number + kast_pct?: boolean | number + overall_rating?: boolean | number + positioning_rating?: boolean | number + rounds?: boolean | number + steam_id?: boolean | number + survival_pct?: boolean | number + traded_death_pct?: boolean | number + util_efficiency?: boolean | number + utility_rating?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "player_match_stats_v" */ +export interface player_match_stats_vGenqlSelection{ + assists?: boolean | number + assists_ct?: boolean | number + assists_t?: boolean | number + avg_crosshair_angle_deg?: boolean | number + avg_flash_duration?: boolean | number + avg_time_to_damage_s?: boolean | number + counter_strafe_eligible_shots?: boolean | number + counter_strafed_shots?: boolean | number + damage?: boolean | number + damage_ct?: boolean | number + damage_t?: boolean | number + deaths?: boolean | number + deaths_ct?: boolean | number + deaths_t?: boolean | number + decoy_throws?: boolean | number + enemies_flashed?: boolean | number + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + five_kill_rounds?: boolean | number + flash_assists?: boolean | number + flashes_thrown?: boolean | number + four_kill_rounds?: boolean | number + he_damage?: boolean | number + he_team_damage?: boolean | number + he_throws?: boolean | number + headshot_hits?: boolean | number + hits?: boolean | number + hits_at_spotted?: boolean | number + hs_kills?: boolean | number + hs_kills_ct?: boolean | number + hs_kills_t?: boolean | number + kills?: boolean | number + kills_ct?: boolean | number + kills_t?: boolean | number + knife_kills?: boolean | number + match_id?: boolean | number + molotov_damage?: boolean | number + molotov_throws?: boolean | number + non_awp_hits?: boolean | number + on_target_frames?: boolean | number + rounds_ct?: boolean | number + rounds_played?: boolean | number + rounds_t?: boolean | number + shots_at_spotted?: boolean | number + shots_fired?: boolean | number + smoke_throws?: boolean | number + spotted_count?: boolean | number + spotted_with_damage_count?: boolean | number + spray_hits?: boolean | number + spray_shots?: boolean | number + steam_id?: boolean | number + team_damage?: boolean | number + team_flashed?: boolean | number + three_kill_rounds?: boolean | number + total_engagement_frames?: boolean | number + trade_kill_attempts?: boolean | number + trade_kill_opportunities?: boolean | number + trade_kill_successes?: boolean | number + traded_death_attempts?: boolean | number + traded_death_opportunities?: boolean | number + traded_death_successes?: boolean | number + two_kill_rounds?: boolean | number + unused_utility_value?: boolean | number + utility_on_death?: boolean | number + wasted_magazine_shots?: boolean | number + zeus_kills?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "player_match_stats_v" */ +export interface player_match_stats_v_aggregateGenqlSelection{ + aggregate?: player_match_stats_v_aggregate_fieldsGenqlSelection + nodes?: player_match_stats_vGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface player_match_stats_v_aggregate_bool_exp {count?: (player_match_stats_v_aggregate_bool_exp_count | null)} + +export interface player_match_stats_v_aggregate_bool_exp_count {arguments?: (player_match_stats_v_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (player_match_stats_v_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "player_match_stats_v" */ +export interface player_match_stats_v_aggregate_fieldsGenqlSelection{ + avg?: player_match_stats_v_avg_fieldsGenqlSelection + count?: { __args: {columns?: (player_match_stats_v_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: player_match_stats_v_max_fieldsGenqlSelection + min?: player_match_stats_v_min_fieldsGenqlSelection + stddev?: player_match_stats_v_stddev_fieldsGenqlSelection + stddev_pop?: player_match_stats_v_stddev_pop_fieldsGenqlSelection + stddev_samp?: player_match_stats_v_stddev_samp_fieldsGenqlSelection + sum?: player_match_stats_v_sum_fieldsGenqlSelection + var_pop?: player_match_stats_v_var_pop_fieldsGenqlSelection + var_samp?: player_match_stats_v_var_samp_fieldsGenqlSelection + variance?: player_match_stats_v_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "player_match_stats_v" */ +export interface player_match_stats_v_aggregate_order_by {avg?: (player_match_stats_v_avg_order_by | null),count?: (order_by | null),max?: (player_match_stats_v_max_order_by | null),min?: (player_match_stats_v_min_order_by | null),stddev?: (player_match_stats_v_stddev_order_by | null),stddev_pop?: (player_match_stats_v_stddev_pop_order_by | null),stddev_samp?: (player_match_stats_v_stddev_samp_order_by | null),sum?: (player_match_stats_v_sum_order_by | null),var_pop?: (player_match_stats_v_var_pop_order_by | null),var_samp?: (player_match_stats_v_var_samp_order_by | null),variance?: (player_match_stats_v_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "player_match_stats_v" */ +export interface player_match_stats_v_arr_rel_insert_input {data: player_match_stats_v_insert_input[]} + + +/** aggregate avg on columns */ +export interface player_match_stats_v_avg_fieldsGenqlSelection{ + assists?: boolean | number + assists_ct?: boolean | number + assists_t?: boolean | number + avg_crosshair_angle_deg?: boolean | number + avg_flash_duration?: boolean | number + avg_time_to_damage_s?: boolean | number + counter_strafe_eligible_shots?: boolean | number + counter_strafed_shots?: boolean | number + damage?: boolean | number + damage_ct?: boolean | number + damage_t?: boolean | number + deaths?: boolean | number + deaths_ct?: boolean | number + deaths_t?: boolean | number + decoy_throws?: boolean | number + enemies_flashed?: boolean | number + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + five_kill_rounds?: boolean | number + flash_assists?: boolean | number + flashes_thrown?: boolean | number + four_kill_rounds?: boolean | number + he_damage?: boolean | number + he_team_damage?: boolean | number + he_throws?: boolean | number + headshot_hits?: boolean | number + hits?: boolean | number + hits_at_spotted?: boolean | number + hs_kills?: boolean | number + hs_kills_ct?: boolean | number + hs_kills_t?: boolean | number + kills?: boolean | number + kills_ct?: boolean | number + kills_t?: boolean | number + knife_kills?: boolean | number + molotov_damage?: boolean | number + molotov_throws?: boolean | number + non_awp_hits?: boolean | number + on_target_frames?: boolean | number + rounds_ct?: boolean | number + rounds_played?: boolean | number + rounds_t?: boolean | number + shots_at_spotted?: boolean | number + shots_fired?: boolean | number + smoke_throws?: boolean | number + spotted_count?: boolean | number + spotted_with_damage_count?: boolean | number + spray_hits?: boolean | number + spray_shots?: boolean | number + steam_id?: boolean | number + team_damage?: boolean | number + team_flashed?: boolean | number + three_kill_rounds?: boolean | number + total_engagement_frames?: boolean | number + trade_kill_attempts?: boolean | number + trade_kill_opportunities?: boolean | number + trade_kill_successes?: boolean | number + traded_death_attempts?: boolean | number + traded_death_opportunities?: boolean | number + traded_death_successes?: boolean | number + two_kill_rounds?: boolean | number + unused_utility_value?: boolean | number + utility_on_death?: boolean | number + wasted_magazine_shots?: boolean | number + zeus_kills?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "player_match_stats_v" */ +export interface player_match_stats_v_avg_order_by {assists?: (order_by | null),assists_ct?: (order_by | null),assists_t?: (order_by | null),avg_crosshair_angle_deg?: (order_by | null),avg_flash_duration?: (order_by | null),avg_time_to_damage_s?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),damage?: (order_by | null),damage_ct?: (order_by | null),damage_t?: (order_by | null),deaths?: (order_by | null),deaths_ct?: (order_by | null),deaths_t?: (order_by | null),decoy_throws?: (order_by | null),enemies_flashed?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),five_kill_rounds?: (order_by | null),flash_assists?: (order_by | null),flashes_thrown?: (order_by | null),four_kill_rounds?: (order_by | null),he_damage?: (order_by | null),he_team_damage?: (order_by | null),he_throws?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),hs_kills?: (order_by | null),hs_kills_ct?: (order_by | null),hs_kills_t?: (order_by | null),kills?: (order_by | null),kills_ct?: (order_by | null),kills_t?: (order_by | null),knife_kills?: (order_by | null),molotov_damage?: (order_by | null),molotov_throws?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),rounds_ct?: (order_by | null),rounds_played?: (order_by | null),rounds_t?: (order_by | null),shots_at_spotted?: (order_by | null),shots_fired?: (order_by | null),smoke_throws?: (order_by | null),spotted_count?: (order_by | null),spotted_with_damage_count?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),steam_id?: (order_by | null),team_damage?: (order_by | null),team_flashed?: (order_by | null),three_kill_rounds?: (order_by | null),total_engagement_frames?: (order_by | null),trade_kill_attempts?: (order_by | null),trade_kill_opportunities?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_attempts?: (order_by | null),traded_death_opportunities?: (order_by | null),traded_death_successes?: (order_by | null),two_kill_rounds?: (order_by | null),unused_utility_value?: (order_by | null),utility_on_death?: (order_by | null),wasted_magazine_shots?: (order_by | null),zeus_kills?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "player_match_stats_v". All fields are combined with a logical 'AND'. */ +export interface player_match_stats_v_bool_exp {_and?: (player_match_stats_v_bool_exp[] | null),_not?: (player_match_stats_v_bool_exp | null),_or?: (player_match_stats_v_bool_exp[] | null),assists?: (Int_comparison_exp | null),assists_ct?: (Int_comparison_exp | null),assists_t?: (Int_comparison_exp | null),avg_crosshair_angle_deg?: (numeric_comparison_exp | null),avg_flash_duration?: (numeric_comparison_exp | null),avg_time_to_damage_s?: (numeric_comparison_exp | null),counter_strafe_eligible_shots?: (Int_comparison_exp | null),counter_strafed_shots?: (Int_comparison_exp | null),damage?: (Int_comparison_exp | null),damage_ct?: (Int_comparison_exp | null),damage_t?: (Int_comparison_exp | null),deaths?: (Int_comparison_exp | null),deaths_ct?: (Int_comparison_exp | null),deaths_t?: (Int_comparison_exp | null),decoy_throws?: (Int_comparison_exp | null),enemies_flashed?: (Int_comparison_exp | null),first_bullet_hits?: (Int_comparison_exp | null),first_bullet_shots?: (Int_comparison_exp | null),five_kill_rounds?: (Int_comparison_exp | null),flash_assists?: (Int_comparison_exp | null),flashes_thrown?: (Int_comparison_exp | null),four_kill_rounds?: (Int_comparison_exp | null),he_damage?: (Int_comparison_exp | null),he_team_damage?: (Int_comparison_exp | null),he_throws?: (Int_comparison_exp | null),headshot_hits?: (Int_comparison_exp | null),hits?: (Int_comparison_exp | null),hits_at_spotted?: (Int_comparison_exp | null),hs_kills?: (Int_comparison_exp | null),hs_kills_ct?: (Int_comparison_exp | null),hs_kills_t?: (Int_comparison_exp | null),kills?: (Int_comparison_exp | null),kills_ct?: (Int_comparison_exp | null),kills_t?: (Int_comparison_exp | null),knife_kills?: (Int_comparison_exp | null),match_id?: (uuid_comparison_exp | null),molotov_damage?: (Int_comparison_exp | null),molotov_throws?: (Int_comparison_exp | null),non_awp_hits?: (Int_comparison_exp | null),on_target_frames?: (Int_comparison_exp | null),rounds_ct?: (Int_comparison_exp | null),rounds_played?: (Int_comparison_exp | null),rounds_t?: (Int_comparison_exp | null),shots_at_spotted?: (Int_comparison_exp | null),shots_fired?: (Int_comparison_exp | null),smoke_throws?: (Int_comparison_exp | null),spotted_count?: (Int_comparison_exp | null),spotted_with_damage_count?: (Int_comparison_exp | null),spray_hits?: (Int_comparison_exp | null),spray_shots?: (Int_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),team_damage?: (Int_comparison_exp | null),team_flashed?: (Int_comparison_exp | null),three_kill_rounds?: (Int_comparison_exp | null),total_engagement_frames?: (Int_comparison_exp | null),trade_kill_attempts?: (Int_comparison_exp | null),trade_kill_opportunities?: (Int_comparison_exp | null),trade_kill_successes?: (Int_comparison_exp | null),traded_death_attempts?: (Int_comparison_exp | null),traded_death_opportunities?: (Int_comparison_exp | null),traded_death_successes?: (Int_comparison_exp | null),two_kill_rounds?: (Int_comparison_exp | null),unused_utility_value?: (Int_comparison_exp | null),utility_on_death?: (numeric_comparison_exp | null),wasted_magazine_shots?: (Int_comparison_exp | null),zeus_kills?: (Int_comparison_exp | null)} + + +/** input type for inserting data into table "player_match_stats_v" */ +export interface player_match_stats_v_insert_input {assists?: (Scalars['Int'] | null),assists_ct?: (Scalars['Int'] | null),assists_t?: (Scalars['Int'] | null),avg_crosshair_angle_deg?: (Scalars['numeric'] | null),avg_flash_duration?: (Scalars['numeric'] | null),avg_time_to_damage_s?: (Scalars['numeric'] | null),counter_strafe_eligible_shots?: (Scalars['Int'] | null),counter_strafed_shots?: (Scalars['Int'] | null),damage?: (Scalars['Int'] | null),damage_ct?: (Scalars['Int'] | null),damage_t?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),deaths_ct?: (Scalars['Int'] | null),deaths_t?: (Scalars['Int'] | null),decoy_throws?: (Scalars['Int'] | null),enemies_flashed?: (Scalars['Int'] | null),first_bullet_hits?: (Scalars['Int'] | null),first_bullet_shots?: (Scalars['Int'] | null),five_kill_rounds?: (Scalars['Int'] | null),flash_assists?: (Scalars['Int'] | null),flashes_thrown?: (Scalars['Int'] | null),four_kill_rounds?: (Scalars['Int'] | null),he_damage?: (Scalars['Int'] | null),he_team_damage?: (Scalars['Int'] | null),he_throws?: (Scalars['Int'] | null),headshot_hits?: (Scalars['Int'] | null),hits?: (Scalars['Int'] | null),hits_at_spotted?: (Scalars['Int'] | null),hs_kills?: (Scalars['Int'] | null),hs_kills_ct?: (Scalars['Int'] | null),hs_kills_t?: (Scalars['Int'] | null),kills?: (Scalars['Int'] | null),kills_ct?: (Scalars['Int'] | null),kills_t?: (Scalars['Int'] | null),knife_kills?: (Scalars['Int'] | null),match_id?: (Scalars['uuid'] | null),molotov_damage?: (Scalars['Int'] | null),molotov_throws?: (Scalars['Int'] | null),non_awp_hits?: (Scalars['Int'] | null),on_target_frames?: (Scalars['Int'] | null),rounds_ct?: (Scalars['Int'] | null),rounds_played?: (Scalars['Int'] | null),rounds_t?: (Scalars['Int'] | null),shots_at_spotted?: (Scalars['Int'] | null),shots_fired?: (Scalars['Int'] | null),smoke_throws?: (Scalars['Int'] | null),spotted_count?: (Scalars['Int'] | null),spotted_with_damage_count?: (Scalars['Int'] | null),spray_hits?: (Scalars['Int'] | null),spray_shots?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null),team_damage?: (Scalars['Int'] | null),team_flashed?: (Scalars['Int'] | null),three_kill_rounds?: (Scalars['Int'] | null),total_engagement_frames?: (Scalars['Int'] | null),trade_kill_attempts?: (Scalars['Int'] | null),trade_kill_opportunities?: (Scalars['Int'] | null),trade_kill_successes?: (Scalars['Int'] | null),traded_death_attempts?: (Scalars['Int'] | null),traded_death_opportunities?: (Scalars['Int'] | null),traded_death_successes?: (Scalars['Int'] | null),two_kill_rounds?: (Scalars['Int'] | null),unused_utility_value?: (Scalars['Int'] | null),utility_on_death?: (Scalars['numeric'] | null),wasted_magazine_shots?: (Scalars['Int'] | null),zeus_kills?: (Scalars['Int'] | null)} + + +/** aggregate max on columns */ +export interface player_match_stats_v_max_fieldsGenqlSelection{ + assists?: boolean | number + assists_ct?: boolean | number + assists_t?: boolean | number + avg_crosshair_angle_deg?: boolean | number + avg_flash_duration?: boolean | number + avg_time_to_damage_s?: boolean | number + counter_strafe_eligible_shots?: boolean | number + counter_strafed_shots?: boolean | number + damage?: boolean | number + damage_ct?: boolean | number + damage_t?: boolean | number + deaths?: boolean | number + deaths_ct?: boolean | number + deaths_t?: boolean | number + decoy_throws?: boolean | number + enemies_flashed?: boolean | number + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + five_kill_rounds?: boolean | number + flash_assists?: boolean | number + flashes_thrown?: boolean | number + four_kill_rounds?: boolean | number + he_damage?: boolean | number + he_team_damage?: boolean | number + he_throws?: boolean | number + headshot_hits?: boolean | number + hits?: boolean | number + hits_at_spotted?: boolean | number + hs_kills?: boolean | number + hs_kills_ct?: boolean | number + hs_kills_t?: boolean | number + kills?: boolean | number + kills_ct?: boolean | number + kills_t?: boolean | number + knife_kills?: boolean | number + match_id?: boolean | number + molotov_damage?: boolean | number + molotov_throws?: boolean | number + non_awp_hits?: boolean | number + on_target_frames?: boolean | number + rounds_ct?: boolean | number + rounds_played?: boolean | number + rounds_t?: boolean | number + shots_at_spotted?: boolean | number + shots_fired?: boolean | number + smoke_throws?: boolean | number + spotted_count?: boolean | number + spotted_with_damage_count?: boolean | number + spray_hits?: boolean | number + spray_shots?: boolean | number + steam_id?: boolean | number + team_damage?: boolean | number + team_flashed?: boolean | number + three_kill_rounds?: boolean | number + total_engagement_frames?: boolean | number + trade_kill_attempts?: boolean | number + trade_kill_opportunities?: boolean | number + trade_kill_successes?: boolean | number + traded_death_attempts?: boolean | number + traded_death_opportunities?: boolean | number + traded_death_successes?: boolean | number + two_kill_rounds?: boolean | number + unused_utility_value?: boolean | number + utility_on_death?: boolean | number + wasted_magazine_shots?: boolean | number + zeus_kills?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "player_match_stats_v" */ +export interface player_match_stats_v_max_order_by {assists?: (order_by | null),assists_ct?: (order_by | null),assists_t?: (order_by | null),avg_crosshair_angle_deg?: (order_by | null),avg_flash_duration?: (order_by | null),avg_time_to_damage_s?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),damage?: (order_by | null),damage_ct?: (order_by | null),damage_t?: (order_by | null),deaths?: (order_by | null),deaths_ct?: (order_by | null),deaths_t?: (order_by | null),decoy_throws?: (order_by | null),enemies_flashed?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),five_kill_rounds?: (order_by | null),flash_assists?: (order_by | null),flashes_thrown?: (order_by | null),four_kill_rounds?: (order_by | null),he_damage?: (order_by | null),he_team_damage?: (order_by | null),he_throws?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),hs_kills?: (order_by | null),hs_kills_ct?: (order_by | null),hs_kills_t?: (order_by | null),kills?: (order_by | null),kills_ct?: (order_by | null),kills_t?: (order_by | null),knife_kills?: (order_by | null),match_id?: (order_by | null),molotov_damage?: (order_by | null),molotov_throws?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),rounds_ct?: (order_by | null),rounds_played?: (order_by | null),rounds_t?: (order_by | null),shots_at_spotted?: (order_by | null),shots_fired?: (order_by | null),smoke_throws?: (order_by | null),spotted_count?: (order_by | null),spotted_with_damage_count?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),steam_id?: (order_by | null),team_damage?: (order_by | null),team_flashed?: (order_by | null),three_kill_rounds?: (order_by | null),total_engagement_frames?: (order_by | null),trade_kill_attempts?: (order_by | null),trade_kill_opportunities?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_attempts?: (order_by | null),traded_death_opportunities?: (order_by | null),traded_death_successes?: (order_by | null),two_kill_rounds?: (order_by | null),unused_utility_value?: (order_by | null),utility_on_death?: (order_by | null),wasted_magazine_shots?: (order_by | null),zeus_kills?: (order_by | null)} + + +/** aggregate min on columns */ +export interface player_match_stats_v_min_fieldsGenqlSelection{ + assists?: boolean | number + assists_ct?: boolean | number + assists_t?: boolean | number + avg_crosshair_angle_deg?: boolean | number + avg_flash_duration?: boolean | number + avg_time_to_damage_s?: boolean | number + counter_strafe_eligible_shots?: boolean | number + counter_strafed_shots?: boolean | number + damage?: boolean | number + damage_ct?: boolean | number + damage_t?: boolean | number + deaths?: boolean | number + deaths_ct?: boolean | number + deaths_t?: boolean | number + decoy_throws?: boolean | number + enemies_flashed?: boolean | number + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + five_kill_rounds?: boolean | number + flash_assists?: boolean | number + flashes_thrown?: boolean | number + four_kill_rounds?: boolean | number + he_damage?: boolean | number + he_team_damage?: boolean | number + he_throws?: boolean | number + headshot_hits?: boolean | number + hits?: boolean | number + hits_at_spotted?: boolean | number + hs_kills?: boolean | number + hs_kills_ct?: boolean | number + hs_kills_t?: boolean | number + kills?: boolean | number + kills_ct?: boolean | number + kills_t?: boolean | number + knife_kills?: boolean | number + match_id?: boolean | number + molotov_damage?: boolean | number + molotov_throws?: boolean | number + non_awp_hits?: boolean | number + on_target_frames?: boolean | number + rounds_ct?: boolean | number + rounds_played?: boolean | number + rounds_t?: boolean | number + shots_at_spotted?: boolean | number + shots_fired?: boolean | number + smoke_throws?: boolean | number + spotted_count?: boolean | number + spotted_with_damage_count?: boolean | number + spray_hits?: boolean | number + spray_shots?: boolean | number + steam_id?: boolean | number + team_damage?: boolean | number + team_flashed?: boolean | number + three_kill_rounds?: boolean | number + total_engagement_frames?: boolean | number + trade_kill_attempts?: boolean | number + trade_kill_opportunities?: boolean | number + trade_kill_successes?: boolean | number + traded_death_attempts?: boolean | number + traded_death_opportunities?: boolean | number + traded_death_successes?: boolean | number + two_kill_rounds?: boolean | number + unused_utility_value?: boolean | number + utility_on_death?: boolean | number + wasted_magazine_shots?: boolean | number + zeus_kills?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "player_match_stats_v" */ +export interface player_match_stats_v_min_order_by {assists?: (order_by | null),assists_ct?: (order_by | null),assists_t?: (order_by | null),avg_crosshair_angle_deg?: (order_by | null),avg_flash_duration?: (order_by | null),avg_time_to_damage_s?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),damage?: (order_by | null),damage_ct?: (order_by | null),damage_t?: (order_by | null),deaths?: (order_by | null),deaths_ct?: (order_by | null),deaths_t?: (order_by | null),decoy_throws?: (order_by | null),enemies_flashed?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),five_kill_rounds?: (order_by | null),flash_assists?: (order_by | null),flashes_thrown?: (order_by | null),four_kill_rounds?: (order_by | null),he_damage?: (order_by | null),he_team_damage?: (order_by | null),he_throws?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),hs_kills?: (order_by | null),hs_kills_ct?: (order_by | null),hs_kills_t?: (order_by | null),kills?: (order_by | null),kills_ct?: (order_by | null),kills_t?: (order_by | null),knife_kills?: (order_by | null),match_id?: (order_by | null),molotov_damage?: (order_by | null),molotov_throws?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),rounds_ct?: (order_by | null),rounds_played?: (order_by | null),rounds_t?: (order_by | null),shots_at_spotted?: (order_by | null),shots_fired?: (order_by | null),smoke_throws?: (order_by | null),spotted_count?: (order_by | null),spotted_with_damage_count?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),steam_id?: (order_by | null),team_damage?: (order_by | null),team_flashed?: (order_by | null),three_kill_rounds?: (order_by | null),total_engagement_frames?: (order_by | null),trade_kill_attempts?: (order_by | null),trade_kill_opportunities?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_attempts?: (order_by | null),traded_death_opportunities?: (order_by | null),traded_death_successes?: (order_by | null),two_kill_rounds?: (order_by | null),unused_utility_value?: (order_by | null),utility_on_death?: (order_by | null),wasted_magazine_shots?: (order_by | null),zeus_kills?: (order_by | null)} + + +/** Ordering options when selecting data from "player_match_stats_v". */ +export interface player_match_stats_v_order_by {assists?: (order_by | null),assists_ct?: (order_by | null),assists_t?: (order_by | null),avg_crosshair_angle_deg?: (order_by | null),avg_flash_duration?: (order_by | null),avg_time_to_damage_s?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),damage?: (order_by | null),damage_ct?: (order_by | null),damage_t?: (order_by | null),deaths?: (order_by | null),deaths_ct?: (order_by | null),deaths_t?: (order_by | null),decoy_throws?: (order_by | null),enemies_flashed?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),five_kill_rounds?: (order_by | null),flash_assists?: (order_by | null),flashes_thrown?: (order_by | null),four_kill_rounds?: (order_by | null),he_damage?: (order_by | null),he_team_damage?: (order_by | null),he_throws?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),hs_kills?: (order_by | null),hs_kills_ct?: (order_by | null),hs_kills_t?: (order_by | null),kills?: (order_by | null),kills_ct?: (order_by | null),kills_t?: (order_by | null),knife_kills?: (order_by | null),match_id?: (order_by | null),molotov_damage?: (order_by | null),molotov_throws?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),rounds_ct?: (order_by | null),rounds_played?: (order_by | null),rounds_t?: (order_by | null),shots_at_spotted?: (order_by | null),shots_fired?: (order_by | null),smoke_throws?: (order_by | null),spotted_count?: (order_by | null),spotted_with_damage_count?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),steam_id?: (order_by | null),team_damage?: (order_by | null),team_flashed?: (order_by | null),three_kill_rounds?: (order_by | null),total_engagement_frames?: (order_by | null),trade_kill_attempts?: (order_by | null),trade_kill_opportunities?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_attempts?: (order_by | null),traded_death_opportunities?: (order_by | null),traded_death_successes?: (order_by | null),two_kill_rounds?: (order_by | null),unused_utility_value?: (order_by | null),utility_on_death?: (order_by | null),wasted_magazine_shots?: (order_by | null),zeus_kills?: (order_by | null)} + + +/** aggregate stddev on columns */ +export interface player_match_stats_v_stddev_fieldsGenqlSelection{ + assists?: boolean | number + assists_ct?: boolean | number + assists_t?: boolean | number + avg_crosshair_angle_deg?: boolean | number + avg_flash_duration?: boolean | number + avg_time_to_damage_s?: boolean | number + counter_strafe_eligible_shots?: boolean | number + counter_strafed_shots?: boolean | number + damage?: boolean | number + damage_ct?: boolean | number + damage_t?: boolean | number + deaths?: boolean | number + deaths_ct?: boolean | number + deaths_t?: boolean | number + decoy_throws?: boolean | number + enemies_flashed?: boolean | number + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + five_kill_rounds?: boolean | number + flash_assists?: boolean | number + flashes_thrown?: boolean | number + four_kill_rounds?: boolean | number + he_damage?: boolean | number + he_team_damage?: boolean | number + he_throws?: boolean | number + headshot_hits?: boolean | number + hits?: boolean | number + hits_at_spotted?: boolean | number + hs_kills?: boolean | number + hs_kills_ct?: boolean | number + hs_kills_t?: boolean | number + kills?: boolean | number + kills_ct?: boolean | number + kills_t?: boolean | number + knife_kills?: boolean | number + molotov_damage?: boolean | number + molotov_throws?: boolean | number + non_awp_hits?: boolean | number + on_target_frames?: boolean | number + rounds_ct?: boolean | number + rounds_played?: boolean | number + rounds_t?: boolean | number + shots_at_spotted?: boolean | number + shots_fired?: boolean | number + smoke_throws?: boolean | number + spotted_count?: boolean | number + spotted_with_damage_count?: boolean | number + spray_hits?: boolean | number + spray_shots?: boolean | number + steam_id?: boolean | number + team_damage?: boolean | number + team_flashed?: boolean | number + three_kill_rounds?: boolean | number + total_engagement_frames?: boolean | number + trade_kill_attempts?: boolean | number + trade_kill_opportunities?: boolean | number + trade_kill_successes?: boolean | number + traded_death_attempts?: boolean | number + traded_death_opportunities?: boolean | number + traded_death_successes?: boolean | number + two_kill_rounds?: boolean | number + unused_utility_value?: boolean | number + utility_on_death?: boolean | number + wasted_magazine_shots?: boolean | number + zeus_kills?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "player_match_stats_v" */ +export interface player_match_stats_v_stddev_order_by {assists?: (order_by | null),assists_ct?: (order_by | null),assists_t?: (order_by | null),avg_crosshair_angle_deg?: (order_by | null),avg_flash_duration?: (order_by | null),avg_time_to_damage_s?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),damage?: (order_by | null),damage_ct?: (order_by | null),damage_t?: (order_by | null),deaths?: (order_by | null),deaths_ct?: (order_by | null),deaths_t?: (order_by | null),decoy_throws?: (order_by | null),enemies_flashed?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),five_kill_rounds?: (order_by | null),flash_assists?: (order_by | null),flashes_thrown?: (order_by | null),four_kill_rounds?: (order_by | null),he_damage?: (order_by | null),he_team_damage?: (order_by | null),he_throws?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),hs_kills?: (order_by | null),hs_kills_ct?: (order_by | null),hs_kills_t?: (order_by | null),kills?: (order_by | null),kills_ct?: (order_by | null),kills_t?: (order_by | null),knife_kills?: (order_by | null),molotov_damage?: (order_by | null),molotov_throws?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),rounds_ct?: (order_by | null),rounds_played?: (order_by | null),rounds_t?: (order_by | null),shots_at_spotted?: (order_by | null),shots_fired?: (order_by | null),smoke_throws?: (order_by | null),spotted_count?: (order_by | null),spotted_with_damage_count?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),steam_id?: (order_by | null),team_damage?: (order_by | null),team_flashed?: (order_by | null),three_kill_rounds?: (order_by | null),total_engagement_frames?: (order_by | null),trade_kill_attempts?: (order_by | null),trade_kill_opportunities?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_attempts?: (order_by | null),traded_death_opportunities?: (order_by | null),traded_death_successes?: (order_by | null),two_kill_rounds?: (order_by | null),unused_utility_value?: (order_by | null),utility_on_death?: (order_by | null),wasted_magazine_shots?: (order_by | null),zeus_kills?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface player_match_stats_v_stddev_pop_fieldsGenqlSelection{ + assists?: boolean | number + assists_ct?: boolean | number + assists_t?: boolean | number + avg_crosshair_angle_deg?: boolean | number + avg_flash_duration?: boolean | number + avg_time_to_damage_s?: boolean | number + counter_strafe_eligible_shots?: boolean | number + counter_strafed_shots?: boolean | number + damage?: boolean | number + damage_ct?: boolean | number + damage_t?: boolean | number + deaths?: boolean | number + deaths_ct?: boolean | number + deaths_t?: boolean | number + decoy_throws?: boolean | number + enemies_flashed?: boolean | number + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + five_kill_rounds?: boolean | number + flash_assists?: boolean | number + flashes_thrown?: boolean | number + four_kill_rounds?: boolean | number + he_damage?: boolean | number + he_team_damage?: boolean | number + he_throws?: boolean | number + headshot_hits?: boolean | number + hits?: boolean | number + hits_at_spotted?: boolean | number + hs_kills?: boolean | number + hs_kills_ct?: boolean | number + hs_kills_t?: boolean | number + kills?: boolean | number + kills_ct?: boolean | number + kills_t?: boolean | number + knife_kills?: boolean | number + molotov_damage?: boolean | number + molotov_throws?: boolean | number + non_awp_hits?: boolean | number + on_target_frames?: boolean | number + rounds_ct?: boolean | number + rounds_played?: boolean | number + rounds_t?: boolean | number + shots_at_spotted?: boolean | number + shots_fired?: boolean | number + smoke_throws?: boolean | number + spotted_count?: boolean | number + spotted_with_damage_count?: boolean | number + spray_hits?: boolean | number + spray_shots?: boolean | number + steam_id?: boolean | number + team_damage?: boolean | number + team_flashed?: boolean | number + three_kill_rounds?: boolean | number + total_engagement_frames?: boolean | number + trade_kill_attempts?: boolean | number + trade_kill_opportunities?: boolean | number + trade_kill_successes?: boolean | number + traded_death_attempts?: boolean | number + traded_death_opportunities?: boolean | number + traded_death_successes?: boolean | number + two_kill_rounds?: boolean | number + unused_utility_value?: boolean | number + utility_on_death?: boolean | number + wasted_magazine_shots?: boolean | number + zeus_kills?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "player_match_stats_v" */ +export interface player_match_stats_v_stddev_pop_order_by {assists?: (order_by | null),assists_ct?: (order_by | null),assists_t?: (order_by | null),avg_crosshair_angle_deg?: (order_by | null),avg_flash_duration?: (order_by | null),avg_time_to_damage_s?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),damage?: (order_by | null),damage_ct?: (order_by | null),damage_t?: (order_by | null),deaths?: (order_by | null),deaths_ct?: (order_by | null),deaths_t?: (order_by | null),decoy_throws?: (order_by | null),enemies_flashed?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),five_kill_rounds?: (order_by | null),flash_assists?: (order_by | null),flashes_thrown?: (order_by | null),four_kill_rounds?: (order_by | null),he_damage?: (order_by | null),he_team_damage?: (order_by | null),he_throws?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),hs_kills?: (order_by | null),hs_kills_ct?: (order_by | null),hs_kills_t?: (order_by | null),kills?: (order_by | null),kills_ct?: (order_by | null),kills_t?: (order_by | null),knife_kills?: (order_by | null),molotov_damage?: (order_by | null),molotov_throws?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),rounds_ct?: (order_by | null),rounds_played?: (order_by | null),rounds_t?: (order_by | null),shots_at_spotted?: (order_by | null),shots_fired?: (order_by | null),smoke_throws?: (order_by | null),spotted_count?: (order_by | null),spotted_with_damage_count?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),steam_id?: (order_by | null),team_damage?: (order_by | null),team_flashed?: (order_by | null),three_kill_rounds?: (order_by | null),total_engagement_frames?: (order_by | null),trade_kill_attempts?: (order_by | null),trade_kill_opportunities?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_attempts?: (order_by | null),traded_death_opportunities?: (order_by | null),traded_death_successes?: (order_by | null),two_kill_rounds?: (order_by | null),unused_utility_value?: (order_by | null),utility_on_death?: (order_by | null),wasted_magazine_shots?: (order_by | null),zeus_kills?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface player_match_stats_v_stddev_samp_fieldsGenqlSelection{ + assists?: boolean | number + assists_ct?: boolean | number + assists_t?: boolean | number + avg_crosshair_angle_deg?: boolean | number + avg_flash_duration?: boolean | number + avg_time_to_damage_s?: boolean | number + counter_strafe_eligible_shots?: boolean | number + counter_strafed_shots?: boolean | number + damage?: boolean | number + damage_ct?: boolean | number + damage_t?: boolean | number + deaths?: boolean | number + deaths_ct?: boolean | number + deaths_t?: boolean | number + decoy_throws?: boolean | number + enemies_flashed?: boolean | number + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + five_kill_rounds?: boolean | number + flash_assists?: boolean | number + flashes_thrown?: boolean | number + four_kill_rounds?: boolean | number + he_damage?: boolean | number + he_team_damage?: boolean | number + he_throws?: boolean | number + headshot_hits?: boolean | number + hits?: boolean | number + hits_at_spotted?: boolean | number + hs_kills?: boolean | number + hs_kills_ct?: boolean | number + hs_kills_t?: boolean | number + kills?: boolean | number + kills_ct?: boolean | number + kills_t?: boolean | number + knife_kills?: boolean | number + molotov_damage?: boolean | number + molotov_throws?: boolean | number + non_awp_hits?: boolean | number + on_target_frames?: boolean | number + rounds_ct?: boolean | number + rounds_played?: boolean | number + rounds_t?: boolean | number + shots_at_spotted?: boolean | number + shots_fired?: boolean | number + smoke_throws?: boolean | number + spotted_count?: boolean | number + spotted_with_damage_count?: boolean | number + spray_hits?: boolean | number + spray_shots?: boolean | number + steam_id?: boolean | number + team_damage?: boolean | number + team_flashed?: boolean | number + three_kill_rounds?: boolean | number + total_engagement_frames?: boolean | number + trade_kill_attempts?: boolean | number + trade_kill_opportunities?: boolean | number + trade_kill_successes?: boolean | number + traded_death_attempts?: boolean | number + traded_death_opportunities?: boolean | number + traded_death_successes?: boolean | number + two_kill_rounds?: boolean | number + unused_utility_value?: boolean | number + utility_on_death?: boolean | number + wasted_magazine_shots?: boolean | number + zeus_kills?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "player_match_stats_v" */ +export interface player_match_stats_v_stddev_samp_order_by {assists?: (order_by | null),assists_ct?: (order_by | null),assists_t?: (order_by | null),avg_crosshair_angle_deg?: (order_by | null),avg_flash_duration?: (order_by | null),avg_time_to_damage_s?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),damage?: (order_by | null),damage_ct?: (order_by | null),damage_t?: (order_by | null),deaths?: (order_by | null),deaths_ct?: (order_by | null),deaths_t?: (order_by | null),decoy_throws?: (order_by | null),enemies_flashed?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),five_kill_rounds?: (order_by | null),flash_assists?: (order_by | null),flashes_thrown?: (order_by | null),four_kill_rounds?: (order_by | null),he_damage?: (order_by | null),he_team_damage?: (order_by | null),he_throws?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),hs_kills?: (order_by | null),hs_kills_ct?: (order_by | null),hs_kills_t?: (order_by | null),kills?: (order_by | null),kills_ct?: (order_by | null),kills_t?: (order_by | null),knife_kills?: (order_by | null),molotov_damage?: (order_by | null),molotov_throws?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),rounds_ct?: (order_by | null),rounds_played?: (order_by | null),rounds_t?: (order_by | null),shots_at_spotted?: (order_by | null),shots_fired?: (order_by | null),smoke_throws?: (order_by | null),spotted_count?: (order_by | null),spotted_with_damage_count?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),steam_id?: (order_by | null),team_damage?: (order_by | null),team_flashed?: (order_by | null),three_kill_rounds?: (order_by | null),total_engagement_frames?: (order_by | null),trade_kill_attempts?: (order_by | null),trade_kill_opportunities?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_attempts?: (order_by | null),traded_death_opportunities?: (order_by | null),traded_death_successes?: (order_by | null),two_kill_rounds?: (order_by | null),unused_utility_value?: (order_by | null),utility_on_death?: (order_by | null),wasted_magazine_shots?: (order_by | null),zeus_kills?: (order_by | null)} + + +/** Streaming cursor of the table "player_match_stats_v" */ +export interface player_match_stats_v_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: player_match_stats_v_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface player_match_stats_v_stream_cursor_value_input {assists?: (Scalars['Int'] | null),assists_ct?: (Scalars['Int'] | null),assists_t?: (Scalars['Int'] | null),avg_crosshair_angle_deg?: (Scalars['numeric'] | null),avg_flash_duration?: (Scalars['numeric'] | null),avg_time_to_damage_s?: (Scalars['numeric'] | null),counter_strafe_eligible_shots?: (Scalars['Int'] | null),counter_strafed_shots?: (Scalars['Int'] | null),damage?: (Scalars['Int'] | null),damage_ct?: (Scalars['Int'] | null),damage_t?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),deaths_ct?: (Scalars['Int'] | null),deaths_t?: (Scalars['Int'] | null),decoy_throws?: (Scalars['Int'] | null),enemies_flashed?: (Scalars['Int'] | null),first_bullet_hits?: (Scalars['Int'] | null),first_bullet_shots?: (Scalars['Int'] | null),five_kill_rounds?: (Scalars['Int'] | null),flash_assists?: (Scalars['Int'] | null),flashes_thrown?: (Scalars['Int'] | null),four_kill_rounds?: (Scalars['Int'] | null),he_damage?: (Scalars['Int'] | null),he_team_damage?: (Scalars['Int'] | null),he_throws?: (Scalars['Int'] | null),headshot_hits?: (Scalars['Int'] | null),hits?: (Scalars['Int'] | null),hits_at_spotted?: (Scalars['Int'] | null),hs_kills?: (Scalars['Int'] | null),hs_kills_ct?: (Scalars['Int'] | null),hs_kills_t?: (Scalars['Int'] | null),kills?: (Scalars['Int'] | null),kills_ct?: (Scalars['Int'] | null),kills_t?: (Scalars['Int'] | null),knife_kills?: (Scalars['Int'] | null),match_id?: (Scalars['uuid'] | null),molotov_damage?: (Scalars['Int'] | null),molotov_throws?: (Scalars['Int'] | null),non_awp_hits?: (Scalars['Int'] | null),on_target_frames?: (Scalars['Int'] | null),rounds_ct?: (Scalars['Int'] | null),rounds_played?: (Scalars['Int'] | null),rounds_t?: (Scalars['Int'] | null),shots_at_spotted?: (Scalars['Int'] | null),shots_fired?: (Scalars['Int'] | null),smoke_throws?: (Scalars['Int'] | null),spotted_count?: (Scalars['Int'] | null),spotted_with_damage_count?: (Scalars['Int'] | null),spray_hits?: (Scalars['Int'] | null),spray_shots?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null),team_damage?: (Scalars['Int'] | null),team_flashed?: (Scalars['Int'] | null),three_kill_rounds?: (Scalars['Int'] | null),total_engagement_frames?: (Scalars['Int'] | null),trade_kill_attempts?: (Scalars['Int'] | null),trade_kill_opportunities?: (Scalars['Int'] | null),trade_kill_successes?: (Scalars['Int'] | null),traded_death_attempts?: (Scalars['Int'] | null),traded_death_opportunities?: (Scalars['Int'] | null),traded_death_successes?: (Scalars['Int'] | null),two_kill_rounds?: (Scalars['Int'] | null),unused_utility_value?: (Scalars['Int'] | null),utility_on_death?: (Scalars['numeric'] | null),wasted_magazine_shots?: (Scalars['Int'] | null),zeus_kills?: (Scalars['Int'] | null)} + + +/** aggregate sum on columns */ +export interface player_match_stats_v_sum_fieldsGenqlSelection{ + assists?: boolean | number + assists_ct?: boolean | number + assists_t?: boolean | number + avg_crosshair_angle_deg?: boolean | number + avg_flash_duration?: boolean | number + avg_time_to_damage_s?: boolean | number + counter_strafe_eligible_shots?: boolean | number + counter_strafed_shots?: boolean | number + damage?: boolean | number + damage_ct?: boolean | number + damage_t?: boolean | number + deaths?: boolean | number + deaths_ct?: boolean | number + deaths_t?: boolean | number + decoy_throws?: boolean | number + enemies_flashed?: boolean | number + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + five_kill_rounds?: boolean | number + flash_assists?: boolean | number + flashes_thrown?: boolean | number + four_kill_rounds?: boolean | number + he_damage?: boolean | number + he_team_damage?: boolean | number + he_throws?: boolean | number + headshot_hits?: boolean | number + hits?: boolean | number + hits_at_spotted?: boolean | number + hs_kills?: boolean | number + hs_kills_ct?: boolean | number + hs_kills_t?: boolean | number + kills?: boolean | number + kills_ct?: boolean | number + kills_t?: boolean | number + knife_kills?: boolean | number + molotov_damage?: boolean | number + molotov_throws?: boolean | number + non_awp_hits?: boolean | number + on_target_frames?: boolean | number + rounds_ct?: boolean | number + rounds_played?: boolean | number + rounds_t?: boolean | number + shots_at_spotted?: boolean | number + shots_fired?: boolean | number + smoke_throws?: boolean | number + spotted_count?: boolean | number + spotted_with_damage_count?: boolean | number + spray_hits?: boolean | number + spray_shots?: boolean | number + steam_id?: boolean | number + team_damage?: boolean | number + team_flashed?: boolean | number + three_kill_rounds?: boolean | number + total_engagement_frames?: boolean | number + trade_kill_attempts?: boolean | number + trade_kill_opportunities?: boolean | number + trade_kill_successes?: boolean | number + traded_death_attempts?: boolean | number + traded_death_opportunities?: boolean | number + traded_death_successes?: boolean | number + two_kill_rounds?: boolean | number + unused_utility_value?: boolean | number + utility_on_death?: boolean | number + wasted_magazine_shots?: boolean | number + zeus_kills?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "player_match_stats_v" */ +export interface player_match_stats_v_sum_order_by {assists?: (order_by | null),assists_ct?: (order_by | null),assists_t?: (order_by | null),avg_crosshair_angle_deg?: (order_by | null),avg_flash_duration?: (order_by | null),avg_time_to_damage_s?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),damage?: (order_by | null),damage_ct?: (order_by | null),damage_t?: (order_by | null),deaths?: (order_by | null),deaths_ct?: (order_by | null),deaths_t?: (order_by | null),decoy_throws?: (order_by | null),enemies_flashed?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),five_kill_rounds?: (order_by | null),flash_assists?: (order_by | null),flashes_thrown?: (order_by | null),four_kill_rounds?: (order_by | null),he_damage?: (order_by | null),he_team_damage?: (order_by | null),he_throws?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),hs_kills?: (order_by | null),hs_kills_ct?: (order_by | null),hs_kills_t?: (order_by | null),kills?: (order_by | null),kills_ct?: (order_by | null),kills_t?: (order_by | null),knife_kills?: (order_by | null),molotov_damage?: (order_by | null),molotov_throws?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),rounds_ct?: (order_by | null),rounds_played?: (order_by | null),rounds_t?: (order_by | null),shots_at_spotted?: (order_by | null),shots_fired?: (order_by | null),smoke_throws?: (order_by | null),spotted_count?: (order_by | null),spotted_with_damage_count?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),steam_id?: (order_by | null),team_damage?: (order_by | null),team_flashed?: (order_by | null),three_kill_rounds?: (order_by | null),total_engagement_frames?: (order_by | null),trade_kill_attempts?: (order_by | null),trade_kill_opportunities?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_attempts?: (order_by | null),traded_death_opportunities?: (order_by | null),traded_death_successes?: (order_by | null),two_kill_rounds?: (order_by | null),unused_utility_value?: (order_by | null),utility_on_death?: (order_by | null),wasted_magazine_shots?: (order_by | null),zeus_kills?: (order_by | null)} + + +/** aggregate var_pop on columns */ +export interface player_match_stats_v_var_pop_fieldsGenqlSelection{ + assists?: boolean | number + assists_ct?: boolean | number + assists_t?: boolean | number + avg_crosshair_angle_deg?: boolean | number + avg_flash_duration?: boolean | number + avg_time_to_damage_s?: boolean | number + counter_strafe_eligible_shots?: boolean | number + counter_strafed_shots?: boolean | number + damage?: boolean | number + damage_ct?: boolean | number + damage_t?: boolean | number + deaths?: boolean | number + deaths_ct?: boolean | number + deaths_t?: boolean | number + decoy_throws?: boolean | number + enemies_flashed?: boolean | number + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + five_kill_rounds?: boolean | number + flash_assists?: boolean | number + flashes_thrown?: boolean | number + four_kill_rounds?: boolean | number + he_damage?: boolean | number + he_team_damage?: boolean | number + he_throws?: boolean | number + headshot_hits?: boolean | number + hits?: boolean | number + hits_at_spotted?: boolean | number + hs_kills?: boolean | number + hs_kills_ct?: boolean | number + hs_kills_t?: boolean | number + kills?: boolean | number + kills_ct?: boolean | number + kills_t?: boolean | number + knife_kills?: boolean | number + molotov_damage?: boolean | number + molotov_throws?: boolean | number + non_awp_hits?: boolean | number + on_target_frames?: boolean | number + rounds_ct?: boolean | number + rounds_played?: boolean | number + rounds_t?: boolean | number + shots_at_spotted?: boolean | number + shots_fired?: boolean | number + smoke_throws?: boolean | number + spotted_count?: boolean | number + spotted_with_damage_count?: boolean | number + spray_hits?: boolean | number + spray_shots?: boolean | number + steam_id?: boolean | number + team_damage?: boolean | number + team_flashed?: boolean | number + three_kill_rounds?: boolean | number + total_engagement_frames?: boolean | number + trade_kill_attempts?: boolean | number + trade_kill_opportunities?: boolean | number + trade_kill_successes?: boolean | number + traded_death_attempts?: boolean | number + traded_death_opportunities?: boolean | number + traded_death_successes?: boolean | number + two_kill_rounds?: boolean | number + unused_utility_value?: boolean | number + utility_on_death?: boolean | number + wasted_magazine_shots?: boolean | number + zeus_kills?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "player_match_stats_v" */ +export interface player_match_stats_v_var_pop_order_by {assists?: (order_by | null),assists_ct?: (order_by | null),assists_t?: (order_by | null),avg_crosshair_angle_deg?: (order_by | null),avg_flash_duration?: (order_by | null),avg_time_to_damage_s?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),damage?: (order_by | null),damage_ct?: (order_by | null),damage_t?: (order_by | null),deaths?: (order_by | null),deaths_ct?: (order_by | null),deaths_t?: (order_by | null),decoy_throws?: (order_by | null),enemies_flashed?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),five_kill_rounds?: (order_by | null),flash_assists?: (order_by | null),flashes_thrown?: (order_by | null),four_kill_rounds?: (order_by | null),he_damage?: (order_by | null),he_team_damage?: (order_by | null),he_throws?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),hs_kills?: (order_by | null),hs_kills_ct?: (order_by | null),hs_kills_t?: (order_by | null),kills?: (order_by | null),kills_ct?: (order_by | null),kills_t?: (order_by | null),knife_kills?: (order_by | null),molotov_damage?: (order_by | null),molotov_throws?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),rounds_ct?: (order_by | null),rounds_played?: (order_by | null),rounds_t?: (order_by | null),shots_at_spotted?: (order_by | null),shots_fired?: (order_by | null),smoke_throws?: (order_by | null),spotted_count?: (order_by | null),spotted_with_damage_count?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),steam_id?: (order_by | null),team_damage?: (order_by | null),team_flashed?: (order_by | null),three_kill_rounds?: (order_by | null),total_engagement_frames?: (order_by | null),trade_kill_attempts?: (order_by | null),trade_kill_opportunities?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_attempts?: (order_by | null),traded_death_opportunities?: (order_by | null),traded_death_successes?: (order_by | null),two_kill_rounds?: (order_by | null),unused_utility_value?: (order_by | null),utility_on_death?: (order_by | null),wasted_magazine_shots?: (order_by | null),zeus_kills?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface player_match_stats_v_var_samp_fieldsGenqlSelection{ + assists?: boolean | number + assists_ct?: boolean | number + assists_t?: boolean | number + avg_crosshair_angle_deg?: boolean | number + avg_flash_duration?: boolean | number + avg_time_to_damage_s?: boolean | number + counter_strafe_eligible_shots?: boolean | number + counter_strafed_shots?: boolean | number + damage?: boolean | number + damage_ct?: boolean | number + damage_t?: boolean | number + deaths?: boolean | number + deaths_ct?: boolean | number + deaths_t?: boolean | number + decoy_throws?: boolean | number + enemies_flashed?: boolean | number + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + five_kill_rounds?: boolean | number + flash_assists?: boolean | number + flashes_thrown?: boolean | number + four_kill_rounds?: boolean | number + he_damage?: boolean | number + he_team_damage?: boolean | number + he_throws?: boolean | number + headshot_hits?: boolean | number + hits?: boolean | number + hits_at_spotted?: boolean | number + hs_kills?: boolean | number + hs_kills_ct?: boolean | number + hs_kills_t?: boolean | number + kills?: boolean | number + kills_ct?: boolean | number + kills_t?: boolean | number + knife_kills?: boolean | number + molotov_damage?: boolean | number + molotov_throws?: boolean | number + non_awp_hits?: boolean | number + on_target_frames?: boolean | number + rounds_ct?: boolean | number + rounds_played?: boolean | number + rounds_t?: boolean | number + shots_at_spotted?: boolean | number + shots_fired?: boolean | number + smoke_throws?: boolean | number + spotted_count?: boolean | number + spotted_with_damage_count?: boolean | number + spray_hits?: boolean | number + spray_shots?: boolean | number + steam_id?: boolean | number + team_damage?: boolean | number + team_flashed?: boolean | number + three_kill_rounds?: boolean | number + total_engagement_frames?: boolean | number + trade_kill_attempts?: boolean | number + trade_kill_opportunities?: boolean | number + trade_kill_successes?: boolean | number + traded_death_attempts?: boolean | number + traded_death_opportunities?: boolean | number + traded_death_successes?: boolean | number + two_kill_rounds?: boolean | number + unused_utility_value?: boolean | number + utility_on_death?: boolean | number + wasted_magazine_shots?: boolean | number + zeus_kills?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "player_match_stats_v" */ +export interface player_match_stats_v_var_samp_order_by {assists?: (order_by | null),assists_ct?: (order_by | null),assists_t?: (order_by | null),avg_crosshair_angle_deg?: (order_by | null),avg_flash_duration?: (order_by | null),avg_time_to_damage_s?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),damage?: (order_by | null),damage_ct?: (order_by | null),damage_t?: (order_by | null),deaths?: (order_by | null),deaths_ct?: (order_by | null),deaths_t?: (order_by | null),decoy_throws?: (order_by | null),enemies_flashed?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),five_kill_rounds?: (order_by | null),flash_assists?: (order_by | null),flashes_thrown?: (order_by | null),four_kill_rounds?: (order_by | null),he_damage?: (order_by | null),he_team_damage?: (order_by | null),he_throws?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),hs_kills?: (order_by | null),hs_kills_ct?: (order_by | null),hs_kills_t?: (order_by | null),kills?: (order_by | null),kills_ct?: (order_by | null),kills_t?: (order_by | null),knife_kills?: (order_by | null),molotov_damage?: (order_by | null),molotov_throws?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),rounds_ct?: (order_by | null),rounds_played?: (order_by | null),rounds_t?: (order_by | null),shots_at_spotted?: (order_by | null),shots_fired?: (order_by | null),smoke_throws?: (order_by | null),spotted_count?: (order_by | null),spotted_with_damage_count?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),steam_id?: (order_by | null),team_damage?: (order_by | null),team_flashed?: (order_by | null),three_kill_rounds?: (order_by | null),total_engagement_frames?: (order_by | null),trade_kill_attempts?: (order_by | null),trade_kill_opportunities?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_attempts?: (order_by | null),traded_death_opportunities?: (order_by | null),traded_death_successes?: (order_by | null),two_kill_rounds?: (order_by | null),unused_utility_value?: (order_by | null),utility_on_death?: (order_by | null),wasted_magazine_shots?: (order_by | null),zeus_kills?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface player_match_stats_v_variance_fieldsGenqlSelection{ + assists?: boolean | number + assists_ct?: boolean | number + assists_t?: boolean | number + avg_crosshair_angle_deg?: boolean | number + avg_flash_duration?: boolean | number + avg_time_to_damage_s?: boolean | number + counter_strafe_eligible_shots?: boolean | number + counter_strafed_shots?: boolean | number + damage?: boolean | number + damage_ct?: boolean | number + damage_t?: boolean | number + deaths?: boolean | number + deaths_ct?: boolean | number + deaths_t?: boolean | number + decoy_throws?: boolean | number + enemies_flashed?: boolean | number + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + five_kill_rounds?: boolean | number + flash_assists?: boolean | number + flashes_thrown?: boolean | number + four_kill_rounds?: boolean | number + he_damage?: boolean | number + he_team_damage?: boolean | number + he_throws?: boolean | number + headshot_hits?: boolean | number + hits?: boolean | number + hits_at_spotted?: boolean | number + hs_kills?: boolean | number + hs_kills_ct?: boolean | number + hs_kills_t?: boolean | number + kills?: boolean | number + kills_ct?: boolean | number + kills_t?: boolean | number + knife_kills?: boolean | number + molotov_damage?: boolean | number + molotov_throws?: boolean | number + non_awp_hits?: boolean | number + on_target_frames?: boolean | number + rounds_ct?: boolean | number + rounds_played?: boolean | number + rounds_t?: boolean | number + shots_at_spotted?: boolean | number + shots_fired?: boolean | number + smoke_throws?: boolean | number + spotted_count?: boolean | number + spotted_with_damage_count?: boolean | number + spray_hits?: boolean | number + spray_shots?: boolean | number + steam_id?: boolean | number + team_damage?: boolean | number + team_flashed?: boolean | number + three_kill_rounds?: boolean | number + total_engagement_frames?: boolean | number + trade_kill_attempts?: boolean | number + trade_kill_opportunities?: boolean | number + trade_kill_successes?: boolean | number + traded_death_attempts?: boolean | number + traded_death_opportunities?: boolean | number + traded_death_successes?: boolean | number + two_kill_rounds?: boolean | number + unused_utility_value?: boolean | number + utility_on_death?: boolean | number + wasted_magazine_shots?: boolean | number + zeus_kills?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "player_match_stats_v" */ +export interface player_match_stats_v_variance_order_by {assists?: (order_by | null),assists_ct?: (order_by | null),assists_t?: (order_by | null),avg_crosshair_angle_deg?: (order_by | null),avg_flash_duration?: (order_by | null),avg_time_to_damage_s?: (order_by | null),counter_strafe_eligible_shots?: (order_by | null),counter_strafed_shots?: (order_by | null),damage?: (order_by | null),damage_ct?: (order_by | null),damage_t?: (order_by | null),deaths?: (order_by | null),deaths_ct?: (order_by | null),deaths_t?: (order_by | null),decoy_throws?: (order_by | null),enemies_flashed?: (order_by | null),first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),five_kill_rounds?: (order_by | null),flash_assists?: (order_by | null),flashes_thrown?: (order_by | null),four_kill_rounds?: (order_by | null),he_damage?: (order_by | null),he_team_damage?: (order_by | null),he_throws?: (order_by | null),headshot_hits?: (order_by | null),hits?: (order_by | null),hits_at_spotted?: (order_by | null),hs_kills?: (order_by | null),hs_kills_ct?: (order_by | null),hs_kills_t?: (order_by | null),kills?: (order_by | null),kills_ct?: (order_by | null),kills_t?: (order_by | null),knife_kills?: (order_by | null),molotov_damage?: (order_by | null),molotov_throws?: (order_by | null),non_awp_hits?: (order_by | null),on_target_frames?: (order_by | null),rounds_ct?: (order_by | null),rounds_played?: (order_by | null),rounds_t?: (order_by | null),shots_at_spotted?: (order_by | null),shots_fired?: (order_by | null),smoke_throws?: (order_by | null),spotted_count?: (order_by | null),spotted_with_damage_count?: (order_by | null),spray_hits?: (order_by | null),spray_shots?: (order_by | null),steam_id?: (order_by | null),team_damage?: (order_by | null),team_flashed?: (order_by | null),three_kill_rounds?: (order_by | null),total_engagement_frames?: (order_by | null),trade_kill_attempts?: (order_by | null),trade_kill_opportunities?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_attempts?: (order_by | null),traded_death_opportunities?: (order_by | null),traded_death_successes?: (order_by | null),two_kill_rounds?: (order_by | null),unused_utility_value?: (order_by | null),utility_on_death?: (order_by | null),wasted_magazine_shots?: (order_by | null),zeus_kills?: (order_by | null)} + + +/** columns and relationships of "player_objectives" */ +export interface player_objectivesGenqlSelection{ + deleted_at?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + match_id?: boolean | number + /** An object relationship */ + match_map?: match_mapsGenqlSelection + match_map_id?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + player_steam_id?: boolean | number + round?: boolean | number + time?: boolean | number + type?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "player_objectives" */ +export interface player_objectives_aggregateGenqlSelection{ + aggregate?: player_objectives_aggregate_fieldsGenqlSelection + nodes?: player_objectivesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface player_objectives_aggregate_bool_exp {count?: (player_objectives_aggregate_bool_exp_count | null)} + +export interface player_objectives_aggregate_bool_exp_count {arguments?: (player_objectives_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (player_objectives_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "player_objectives" */ +export interface player_objectives_aggregate_fieldsGenqlSelection{ + avg?: player_objectives_avg_fieldsGenqlSelection + count?: { __args: {columns?: (player_objectives_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: player_objectives_max_fieldsGenqlSelection + min?: player_objectives_min_fieldsGenqlSelection + stddev?: player_objectives_stddev_fieldsGenqlSelection + stddev_pop?: player_objectives_stddev_pop_fieldsGenqlSelection + stddev_samp?: player_objectives_stddev_samp_fieldsGenqlSelection + sum?: player_objectives_sum_fieldsGenqlSelection + var_pop?: player_objectives_var_pop_fieldsGenqlSelection + var_samp?: player_objectives_var_samp_fieldsGenqlSelection + variance?: player_objectives_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "player_objectives" */ +export interface player_objectives_aggregate_order_by {avg?: (player_objectives_avg_order_by | null),count?: (order_by | null),max?: (player_objectives_max_order_by | null),min?: (player_objectives_min_order_by | null),stddev?: (player_objectives_stddev_order_by | null),stddev_pop?: (player_objectives_stddev_pop_order_by | null),stddev_samp?: (player_objectives_stddev_samp_order_by | null),sum?: (player_objectives_sum_order_by | null),var_pop?: (player_objectives_var_pop_order_by | null),var_samp?: (player_objectives_var_samp_order_by | null),variance?: (player_objectives_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "player_objectives" */ +export interface player_objectives_arr_rel_insert_input {data: player_objectives_insert_input[], +/** upsert condition */ +on_conflict?: (player_objectives_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface player_objectives_avg_fieldsGenqlSelection{ + player_steam_id?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "player_objectives" */ +export interface player_objectives_avg_order_by {player_steam_id?: (order_by | null),round?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "player_objectives". All fields are combined with a logical 'AND'. */ +export interface player_objectives_bool_exp {_and?: (player_objectives_bool_exp[] | null),_not?: (player_objectives_bool_exp | null),_or?: (player_objectives_bool_exp[] | null),deleted_at?: (timestamptz_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_id?: (uuid_comparison_exp | null),player?: (players_bool_exp | null),player_steam_id?: (bigint_comparison_exp | null),round?: (Int_comparison_exp | null),time?: (timestamptz_comparison_exp | null),type?: (e_objective_types_enum_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "player_objectives" */ +export interface player_objectives_inc_input {player_steam_id?: (Scalars['bigint'] | null),round?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "player_objectives" */ +export interface player_objectives_insert_input {deleted_at?: (Scalars['timestamptz'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_map?: (match_maps_obj_rel_insert_input | null),match_map_id?: (Scalars['uuid'] | null),player?: (players_obj_rel_insert_input | null),player_steam_id?: (Scalars['bigint'] | null),round?: (Scalars['Int'] | null),time?: (Scalars['timestamptz'] | null),type?: (e_objective_types_enum | null)} + + +/** aggregate max on columns */ +export interface player_objectives_max_fieldsGenqlSelection{ + deleted_at?: boolean | number + match_id?: boolean | number + match_map_id?: boolean | number + player_steam_id?: boolean | number + round?: boolean | number + time?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "player_objectives" */ +export interface player_objectives_max_order_by {deleted_at?: (order_by | null),match_id?: (order_by | null),match_map_id?: (order_by | null),player_steam_id?: (order_by | null),round?: (order_by | null),time?: (order_by | null)} + + +/** aggregate min on columns */ +export interface player_objectives_min_fieldsGenqlSelection{ + deleted_at?: boolean | number + match_id?: boolean | number + match_map_id?: boolean | number + player_steam_id?: boolean | number + round?: boolean | number + time?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "player_objectives" */ +export interface player_objectives_min_order_by {deleted_at?: (order_by | null),match_id?: (order_by | null),match_map_id?: (order_by | null),player_steam_id?: (order_by | null),round?: (order_by | null),time?: (order_by | null)} + + +/** response of any mutation on the table "player_objectives" */ +export interface player_objectives_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: player_objectivesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "player_objectives" */ +export interface player_objectives_on_conflict {constraint: player_objectives_constraint,update_columns?: player_objectives_update_column[],where?: (player_objectives_bool_exp | null)} + + +/** Ordering options when selecting data from "player_objectives". */ +export interface player_objectives_order_by {deleted_at?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_id?: (order_by | null),player?: (players_order_by | null),player_steam_id?: (order_by | null),round?: (order_by | null),time?: (order_by | null),type?: (order_by | null)} + + +/** primary key columns input for table: player_objectives */ +export interface player_objectives_pk_columns_input {match_map_id: Scalars['uuid'],player_steam_id: Scalars['bigint'],time: Scalars['timestamptz']} + + +/** input type for updating data in table "player_objectives" */ +export interface player_objectives_set_input {deleted_at?: (Scalars['timestamptz'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),player_steam_id?: (Scalars['bigint'] | null),round?: (Scalars['Int'] | null),time?: (Scalars['timestamptz'] | null),type?: (e_objective_types_enum | null)} + + +/** aggregate stddev on columns */ +export interface player_objectives_stddev_fieldsGenqlSelection{ + player_steam_id?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "player_objectives" */ +export interface player_objectives_stddev_order_by {player_steam_id?: (order_by | null),round?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface player_objectives_stddev_pop_fieldsGenqlSelection{ + player_steam_id?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "player_objectives" */ +export interface player_objectives_stddev_pop_order_by {player_steam_id?: (order_by | null),round?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface player_objectives_stddev_samp_fieldsGenqlSelection{ + player_steam_id?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "player_objectives" */ +export interface player_objectives_stddev_samp_order_by {player_steam_id?: (order_by | null),round?: (order_by | null)} + + +/** Streaming cursor of the table "player_objectives" */ +export interface player_objectives_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: player_objectives_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface player_objectives_stream_cursor_value_input {deleted_at?: (Scalars['timestamptz'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),player_steam_id?: (Scalars['bigint'] | null),round?: (Scalars['Int'] | null),time?: (Scalars['timestamptz'] | null),type?: (e_objective_types_enum | null)} + + +/** aggregate sum on columns */ +export interface player_objectives_sum_fieldsGenqlSelection{ + player_steam_id?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "player_objectives" */ +export interface player_objectives_sum_order_by {player_steam_id?: (order_by | null),round?: (order_by | null)} + +export interface player_objectives_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (player_objectives_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (player_objectives_set_input | null), +/** filter the rows which have to be updated */ +where: player_objectives_bool_exp} + + +/** aggregate var_pop on columns */ +export interface player_objectives_var_pop_fieldsGenqlSelection{ + player_steam_id?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "player_objectives" */ +export interface player_objectives_var_pop_order_by {player_steam_id?: (order_by | null),round?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface player_objectives_var_samp_fieldsGenqlSelection{ + player_steam_id?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "player_objectives" */ +export interface player_objectives_var_samp_order_by {player_steam_id?: (order_by | null),round?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface player_objectives_variance_fieldsGenqlSelection{ + player_steam_id?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "player_objectives" */ +export interface player_objectives_variance_order_by {player_steam_id?: (order_by | null),round?: (order_by | null)} + + +/** columns and relationships of "player_performance_v" */ +export interface player_performance_vGenqlSelection{ + accuracy_score?: boolean | number + aim_goal?: boolean | number + aim_rating?: boolean | number + band?: boolean | number + band_sample?: boolean | number + blind_score?: boolean | number + counter_strafe_score?: boolean | number + crosshair_score?: boolean | number + flash_assists_score?: boolean | number + hs_score?: boolean | number + kast_score?: boolean | number + maps?: boolean | number + positioning_goal?: boolean | number + positioning_rating?: boolean | number + premier_rank?: boolean | number + rounds?: boolean | number + spotted_score?: boolean | number + steam_id?: boolean | number + survival_score?: boolean | number + traded_score?: boolean | number + ttd_score?: boolean | number + util_eff_score?: boolean | number + utility_goal?: boolean | number + utility_rating?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "player_performance_v" */ +export interface player_performance_v_aggregateGenqlSelection{ + aggregate?: player_performance_v_aggregate_fieldsGenqlSelection + nodes?: player_performance_vGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "player_performance_v" */ +export interface player_performance_v_aggregate_fieldsGenqlSelection{ + avg?: player_performance_v_avg_fieldsGenqlSelection + count?: { __args: {columns?: (player_performance_v_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: player_performance_v_max_fieldsGenqlSelection + min?: player_performance_v_min_fieldsGenqlSelection + stddev?: player_performance_v_stddev_fieldsGenqlSelection + stddev_pop?: player_performance_v_stddev_pop_fieldsGenqlSelection + stddev_samp?: player_performance_v_stddev_samp_fieldsGenqlSelection + sum?: player_performance_v_sum_fieldsGenqlSelection + var_pop?: player_performance_v_var_pop_fieldsGenqlSelection + var_samp?: player_performance_v_var_samp_fieldsGenqlSelection + variance?: player_performance_v_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface player_performance_v_avg_fieldsGenqlSelection{ + accuracy_score?: boolean | number + aim_goal?: boolean | number + aim_rating?: boolean | number + band?: boolean | number + band_sample?: boolean | number + blind_score?: boolean | number + counter_strafe_score?: boolean | number + crosshair_score?: boolean | number + flash_assists_score?: boolean | number + hs_score?: boolean | number + kast_score?: boolean | number + maps?: boolean | number + positioning_goal?: boolean | number + positioning_rating?: boolean | number + premier_rank?: boolean | number + rounds?: boolean | number + spotted_score?: boolean | number + steam_id?: boolean | number + survival_score?: boolean | number + traded_score?: boolean | number + ttd_score?: boolean | number + util_eff_score?: boolean | number + utility_goal?: boolean | number + utility_rating?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "player_performance_v". All fields are combined with a logical 'AND'. */ +export interface player_performance_v_bool_exp {_and?: (player_performance_v_bool_exp[] | null),_not?: (player_performance_v_bool_exp | null),_or?: (player_performance_v_bool_exp[] | null),accuracy_score?: (float8_comparison_exp | null),aim_goal?: (float8_comparison_exp | null),aim_rating?: (float8_comparison_exp | null),band?: (Int_comparison_exp | null),band_sample?: (bigint_comparison_exp | null),blind_score?: (float8_comparison_exp | null),counter_strafe_score?: (float8_comparison_exp | null),crosshair_score?: (float8_comparison_exp | null),flash_assists_score?: (float8_comparison_exp | null),hs_score?: (float8_comparison_exp | null),kast_score?: (float8_comparison_exp | null),maps?: (Int_comparison_exp | null),positioning_goal?: (float8_comparison_exp | null),positioning_rating?: (float8_comparison_exp | null),premier_rank?: (Int_comparison_exp | null),rounds?: (Int_comparison_exp | null),spotted_score?: (float8_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),survival_score?: (float8_comparison_exp | null),traded_score?: (float8_comparison_exp | null),ttd_score?: (float8_comparison_exp | null),util_eff_score?: (float8_comparison_exp | null),utility_goal?: (float8_comparison_exp | null),utility_rating?: (float8_comparison_exp | null)} + + +/** aggregate max on columns */ +export interface player_performance_v_max_fieldsGenqlSelection{ + accuracy_score?: boolean | number + aim_goal?: boolean | number + aim_rating?: boolean | number + band?: boolean | number + band_sample?: boolean | number + blind_score?: boolean | number + counter_strafe_score?: boolean | number + crosshair_score?: boolean | number + flash_assists_score?: boolean | number + hs_score?: boolean | number + kast_score?: boolean | number + maps?: boolean | number + positioning_goal?: boolean | number + positioning_rating?: boolean | number + premier_rank?: boolean | number + rounds?: boolean | number + spotted_score?: boolean | number + steam_id?: boolean | number + survival_score?: boolean | number + traded_score?: boolean | number + ttd_score?: boolean | number + util_eff_score?: boolean | number + utility_goal?: boolean | number + utility_rating?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface player_performance_v_min_fieldsGenqlSelection{ + accuracy_score?: boolean | number + aim_goal?: boolean | number + aim_rating?: boolean | number + band?: boolean | number + band_sample?: boolean | number + blind_score?: boolean | number + counter_strafe_score?: boolean | number + crosshair_score?: boolean | number + flash_assists_score?: boolean | number + hs_score?: boolean | number + kast_score?: boolean | number + maps?: boolean | number + positioning_goal?: boolean | number + positioning_rating?: boolean | number + premier_rank?: boolean | number + rounds?: boolean | number + spotted_score?: boolean | number + steam_id?: boolean | number + survival_score?: boolean | number + traded_score?: boolean | number + ttd_score?: boolean | number + util_eff_score?: boolean | number + utility_goal?: boolean | number + utility_rating?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Ordering options when selecting data from "player_performance_v". */ +export interface player_performance_v_order_by {accuracy_score?: (order_by | null),aim_goal?: (order_by | null),aim_rating?: (order_by | null),band?: (order_by | null),band_sample?: (order_by | null),blind_score?: (order_by | null),counter_strafe_score?: (order_by | null),crosshair_score?: (order_by | null),flash_assists_score?: (order_by | null),hs_score?: (order_by | null),kast_score?: (order_by | null),maps?: (order_by | null),positioning_goal?: (order_by | null),positioning_rating?: (order_by | null),premier_rank?: (order_by | null),rounds?: (order_by | null),spotted_score?: (order_by | null),steam_id?: (order_by | null),survival_score?: (order_by | null),traded_score?: (order_by | null),ttd_score?: (order_by | null),util_eff_score?: (order_by | null),utility_goal?: (order_by | null),utility_rating?: (order_by | null)} + + +/** aggregate stddev on columns */ +export interface player_performance_v_stddev_fieldsGenqlSelection{ + accuracy_score?: boolean | number + aim_goal?: boolean | number + aim_rating?: boolean | number + band?: boolean | number + band_sample?: boolean | number + blind_score?: boolean | number + counter_strafe_score?: boolean | number + crosshair_score?: boolean | number + flash_assists_score?: boolean | number + hs_score?: boolean | number + kast_score?: boolean | number + maps?: boolean | number + positioning_goal?: boolean | number + positioning_rating?: boolean | number + premier_rank?: boolean | number + rounds?: boolean | number + spotted_score?: boolean | number + steam_id?: boolean | number + survival_score?: boolean | number + traded_score?: boolean | number + ttd_score?: boolean | number + util_eff_score?: boolean | number + utility_goal?: boolean | number + utility_rating?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface player_performance_v_stddev_pop_fieldsGenqlSelection{ + accuracy_score?: boolean | number + aim_goal?: boolean | number + aim_rating?: boolean | number + band?: boolean | number + band_sample?: boolean | number + blind_score?: boolean | number + counter_strafe_score?: boolean | number + crosshair_score?: boolean | number + flash_assists_score?: boolean | number + hs_score?: boolean | number + kast_score?: boolean | number + maps?: boolean | number + positioning_goal?: boolean | number + positioning_rating?: boolean | number + premier_rank?: boolean | number + rounds?: boolean | number + spotted_score?: boolean | number + steam_id?: boolean | number + survival_score?: boolean | number + traded_score?: boolean | number + ttd_score?: boolean | number + util_eff_score?: boolean | number + utility_goal?: boolean | number + utility_rating?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface player_performance_v_stddev_samp_fieldsGenqlSelection{ + accuracy_score?: boolean | number + aim_goal?: boolean | number + aim_rating?: boolean | number + band?: boolean | number + band_sample?: boolean | number + blind_score?: boolean | number + counter_strafe_score?: boolean | number + crosshair_score?: boolean | number + flash_assists_score?: boolean | number + hs_score?: boolean | number + kast_score?: boolean | number + maps?: boolean | number + positioning_goal?: boolean | number + positioning_rating?: boolean | number + premier_rank?: boolean | number + rounds?: boolean | number + spotted_score?: boolean | number + steam_id?: boolean | number + survival_score?: boolean | number + traded_score?: boolean | number + ttd_score?: boolean | number + util_eff_score?: boolean | number + utility_goal?: boolean | number + utility_rating?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "player_performance_v" */ +export interface player_performance_v_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: player_performance_v_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface player_performance_v_stream_cursor_value_input {accuracy_score?: (Scalars['float8'] | null),aim_goal?: (Scalars['float8'] | null),aim_rating?: (Scalars['float8'] | null),band?: (Scalars['Int'] | null),band_sample?: (Scalars['bigint'] | null),blind_score?: (Scalars['float8'] | null),counter_strafe_score?: (Scalars['float8'] | null),crosshair_score?: (Scalars['float8'] | null),flash_assists_score?: (Scalars['float8'] | null),hs_score?: (Scalars['float8'] | null),kast_score?: (Scalars['float8'] | null),maps?: (Scalars['Int'] | null),positioning_goal?: (Scalars['float8'] | null),positioning_rating?: (Scalars['float8'] | null),premier_rank?: (Scalars['Int'] | null),rounds?: (Scalars['Int'] | null),spotted_score?: (Scalars['float8'] | null),steam_id?: (Scalars['bigint'] | null),survival_score?: (Scalars['float8'] | null),traded_score?: (Scalars['float8'] | null),ttd_score?: (Scalars['float8'] | null),util_eff_score?: (Scalars['float8'] | null),utility_goal?: (Scalars['float8'] | null),utility_rating?: (Scalars['float8'] | null)} + + +/** aggregate sum on columns */ +export interface player_performance_v_sum_fieldsGenqlSelection{ + accuracy_score?: boolean | number + aim_goal?: boolean | number + aim_rating?: boolean | number + band?: boolean | number + band_sample?: boolean | number + blind_score?: boolean | number + counter_strafe_score?: boolean | number + crosshair_score?: boolean | number + flash_assists_score?: boolean | number + hs_score?: boolean | number + kast_score?: boolean | number + maps?: boolean | number + positioning_goal?: boolean | number + positioning_rating?: boolean | number + premier_rank?: boolean | number + rounds?: boolean | number + spotted_score?: boolean | number + steam_id?: boolean | number + survival_score?: boolean | number + traded_score?: boolean | number + ttd_score?: boolean | number + util_eff_score?: boolean | number + utility_goal?: boolean | number + utility_rating?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_pop on columns */ +export interface player_performance_v_var_pop_fieldsGenqlSelection{ + accuracy_score?: boolean | number + aim_goal?: boolean | number + aim_rating?: boolean | number + band?: boolean | number + band_sample?: boolean | number + blind_score?: boolean | number + counter_strafe_score?: boolean | number + crosshair_score?: boolean | number + flash_assists_score?: boolean | number + hs_score?: boolean | number + kast_score?: boolean | number + maps?: boolean | number + positioning_goal?: boolean | number + positioning_rating?: boolean | number + premier_rank?: boolean | number + rounds?: boolean | number + spotted_score?: boolean | number + steam_id?: boolean | number + survival_score?: boolean | number + traded_score?: boolean | number + ttd_score?: boolean | number + util_eff_score?: boolean | number + utility_goal?: boolean | number + utility_rating?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface player_performance_v_var_samp_fieldsGenqlSelection{ + accuracy_score?: boolean | number + aim_goal?: boolean | number + aim_rating?: boolean | number + band?: boolean | number + band_sample?: boolean | number + blind_score?: boolean | number + counter_strafe_score?: boolean | number + crosshair_score?: boolean | number + flash_assists_score?: boolean | number + hs_score?: boolean | number + kast_score?: boolean | number + maps?: boolean | number + positioning_goal?: boolean | number + positioning_rating?: boolean | number + premier_rank?: boolean | number + rounds?: boolean | number + spotted_score?: boolean | number + steam_id?: boolean | number + survival_score?: boolean | number + traded_score?: boolean | number + ttd_score?: boolean | number + util_eff_score?: boolean | number + utility_goal?: boolean | number + utility_rating?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface player_performance_v_variance_fieldsGenqlSelection{ + accuracy_score?: boolean | number + aim_goal?: boolean | number + aim_rating?: boolean | number + band?: boolean | number + band_sample?: boolean | number + blind_score?: boolean | number + counter_strafe_score?: boolean | number + crosshair_score?: boolean | number + flash_assists_score?: boolean | number + hs_score?: boolean | number + kast_score?: boolean | number + maps?: boolean | number + positioning_goal?: boolean | number + positioning_rating?: boolean | number + premier_rank?: boolean | number + rounds?: boolean | number + spotted_score?: boolean | number + steam_id?: boolean | number + survival_score?: boolean | number + traded_score?: boolean | number + ttd_score?: boolean | number + util_eff_score?: boolean | number + utility_goal?: boolean | number + utility_rating?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "player_premier_rank_history" */ +export interface player_premier_rank_historyGenqlSelection{ + id?: boolean | number + /** An object relationship */ + map?: mapsGenqlSelection + map_id?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + match_id?: boolean | number + observed_at?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + previous_rank?: boolean | number + rank?: boolean | number + rank_type?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "player_premier_rank_history" */ +export interface player_premier_rank_history_aggregateGenqlSelection{ + aggregate?: player_premier_rank_history_aggregate_fieldsGenqlSelection + nodes?: player_premier_rank_historyGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface player_premier_rank_history_aggregate_bool_exp {count?: (player_premier_rank_history_aggregate_bool_exp_count | null)} + +export interface player_premier_rank_history_aggregate_bool_exp_count {arguments?: (player_premier_rank_history_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (player_premier_rank_history_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "player_premier_rank_history" */ +export interface player_premier_rank_history_aggregate_fieldsGenqlSelection{ + avg?: player_premier_rank_history_avg_fieldsGenqlSelection + count?: { __args: {columns?: (player_premier_rank_history_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: player_premier_rank_history_max_fieldsGenqlSelection + min?: player_premier_rank_history_min_fieldsGenqlSelection + stddev?: player_premier_rank_history_stddev_fieldsGenqlSelection + stddev_pop?: player_premier_rank_history_stddev_pop_fieldsGenqlSelection + stddev_samp?: player_premier_rank_history_stddev_samp_fieldsGenqlSelection + sum?: player_premier_rank_history_sum_fieldsGenqlSelection + var_pop?: player_premier_rank_history_var_pop_fieldsGenqlSelection + var_samp?: player_premier_rank_history_var_samp_fieldsGenqlSelection + variance?: player_premier_rank_history_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "player_premier_rank_history" */ +export interface player_premier_rank_history_aggregate_order_by {avg?: (player_premier_rank_history_avg_order_by | null),count?: (order_by | null),max?: (player_premier_rank_history_max_order_by | null),min?: (player_premier_rank_history_min_order_by | null),stddev?: (player_premier_rank_history_stddev_order_by | null),stddev_pop?: (player_premier_rank_history_stddev_pop_order_by | null),stddev_samp?: (player_premier_rank_history_stddev_samp_order_by | null),sum?: (player_premier_rank_history_sum_order_by | null),var_pop?: (player_premier_rank_history_var_pop_order_by | null),var_samp?: (player_premier_rank_history_var_samp_order_by | null),variance?: (player_premier_rank_history_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "player_premier_rank_history" */ +export interface player_premier_rank_history_arr_rel_insert_input {data: player_premier_rank_history_insert_input[], +/** upsert condition */ +on_conflict?: (player_premier_rank_history_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface player_premier_rank_history_avg_fieldsGenqlSelection{ + previous_rank?: boolean | number + rank?: boolean | number + rank_type?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "player_premier_rank_history" */ +export interface player_premier_rank_history_avg_order_by {previous_rank?: (order_by | null),rank?: (order_by | null),rank_type?: (order_by | null),steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "player_premier_rank_history". All fields are combined with a logical 'AND'. */ +export interface player_premier_rank_history_bool_exp {_and?: (player_premier_rank_history_bool_exp[] | null),_not?: (player_premier_rank_history_bool_exp | null),_or?: (player_premier_rank_history_bool_exp[] | null),id?: (uuid_comparison_exp | null),map?: (maps_bool_exp | null),map_id?: (uuid_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),observed_at?: (timestamptz_comparison_exp | null),player?: (players_bool_exp | null),previous_rank?: (Int_comparison_exp | null),rank?: (Int_comparison_exp | null),rank_type?: (Int_comparison_exp | null),steam_id?: (bigint_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "player_premier_rank_history" */ +export interface player_premier_rank_history_inc_input {previous_rank?: (Scalars['Int'] | null),rank?: (Scalars['Int'] | null),rank_type?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "player_premier_rank_history" */ +export interface player_premier_rank_history_insert_input {id?: (Scalars['uuid'] | null),map?: (maps_obj_rel_insert_input | null),map_id?: (Scalars['uuid'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),observed_at?: (Scalars['timestamptz'] | null),player?: (players_obj_rel_insert_input | null),previous_rank?: (Scalars['Int'] | null),rank?: (Scalars['Int'] | null),rank_type?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate max on columns */ +export interface player_premier_rank_history_max_fieldsGenqlSelection{ + id?: boolean | number + map_id?: boolean | number + match_id?: boolean | number + observed_at?: boolean | number + previous_rank?: boolean | number + rank?: boolean | number + rank_type?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "player_premier_rank_history" */ +export interface player_premier_rank_history_max_order_by {id?: (order_by | null),map_id?: (order_by | null),match_id?: (order_by | null),observed_at?: (order_by | null),previous_rank?: (order_by | null),rank?: (order_by | null),rank_type?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface player_premier_rank_history_min_fieldsGenqlSelection{ + id?: boolean | number + map_id?: boolean | number + match_id?: boolean | number + observed_at?: boolean | number + previous_rank?: boolean | number + rank?: boolean | number + rank_type?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "player_premier_rank_history" */ +export interface player_premier_rank_history_min_order_by {id?: (order_by | null),map_id?: (order_by | null),match_id?: (order_by | null),observed_at?: (order_by | null),previous_rank?: (order_by | null),rank?: (order_by | null),rank_type?: (order_by | null),steam_id?: (order_by | null)} + + +/** response of any mutation on the table "player_premier_rank_history" */ +export interface player_premier_rank_history_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: player_premier_rank_historyGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "player_premier_rank_history" */ +export interface player_premier_rank_history_on_conflict {constraint: player_premier_rank_history_constraint,update_columns?: player_premier_rank_history_update_column[],where?: (player_premier_rank_history_bool_exp | null)} + + +/** Ordering options when selecting data from "player_premier_rank_history". */ +export interface player_premier_rank_history_order_by {id?: (order_by | null),map?: (maps_order_by | null),map_id?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),observed_at?: (order_by | null),player?: (players_order_by | null),previous_rank?: (order_by | null),rank?: (order_by | null),rank_type?: (order_by | null),steam_id?: (order_by | null)} + + +/** primary key columns input for table: player_premier_rank_history */ +export interface player_premier_rank_history_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "player_premier_rank_history" */ +export interface player_premier_rank_history_set_input {id?: (Scalars['uuid'] | null),map_id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),observed_at?: (Scalars['timestamptz'] | null),previous_rank?: (Scalars['Int'] | null),rank?: (Scalars['Int'] | null),rank_type?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate stddev on columns */ +export interface player_premier_rank_history_stddev_fieldsGenqlSelection{ + previous_rank?: boolean | number + rank?: boolean | number + rank_type?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "player_premier_rank_history" */ +export interface player_premier_rank_history_stddev_order_by {previous_rank?: (order_by | null),rank?: (order_by | null),rank_type?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface player_premier_rank_history_stddev_pop_fieldsGenqlSelection{ + previous_rank?: boolean | number + rank?: boolean | number + rank_type?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "player_premier_rank_history" */ +export interface player_premier_rank_history_stddev_pop_order_by {previous_rank?: (order_by | null),rank?: (order_by | null),rank_type?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface player_premier_rank_history_stddev_samp_fieldsGenqlSelection{ + previous_rank?: boolean | number + rank?: boolean | number + rank_type?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "player_premier_rank_history" */ +export interface player_premier_rank_history_stddev_samp_order_by {previous_rank?: (order_by | null),rank?: (order_by | null),rank_type?: (order_by | null),steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "player_premier_rank_history" */ +export interface player_premier_rank_history_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: player_premier_rank_history_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface player_premier_rank_history_stream_cursor_value_input {id?: (Scalars['uuid'] | null),map_id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),observed_at?: (Scalars['timestamptz'] | null),previous_rank?: (Scalars['Int'] | null),rank?: (Scalars['Int'] | null),rank_type?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate sum on columns */ +export interface player_premier_rank_history_sum_fieldsGenqlSelection{ + previous_rank?: boolean | number + rank?: boolean | number + rank_type?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "player_premier_rank_history" */ +export interface player_premier_rank_history_sum_order_by {previous_rank?: (order_by | null),rank?: (order_by | null),rank_type?: (order_by | null),steam_id?: (order_by | null)} + +export interface player_premier_rank_history_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (player_premier_rank_history_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (player_premier_rank_history_set_input | null), +/** filter the rows which have to be updated */ +where: player_premier_rank_history_bool_exp} + + +/** aggregate var_pop on columns */ +export interface player_premier_rank_history_var_pop_fieldsGenqlSelection{ + previous_rank?: boolean | number + rank?: boolean | number + rank_type?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "player_premier_rank_history" */ +export interface player_premier_rank_history_var_pop_order_by {previous_rank?: (order_by | null),rank?: (order_by | null),rank_type?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface player_premier_rank_history_var_samp_fieldsGenqlSelection{ + previous_rank?: boolean | number + rank?: boolean | number + rank_type?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "player_premier_rank_history" */ +export interface player_premier_rank_history_var_samp_order_by {previous_rank?: (order_by | null),rank?: (order_by | null),rank_type?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface player_premier_rank_history_variance_fieldsGenqlSelection{ + previous_rank?: boolean | number + rank?: boolean | number + rank_type?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "player_premier_rank_history" */ +export interface player_premier_rank_history_variance_order_by {previous_rank?: (order_by | null),rank?: (order_by | null),rank_type?: (order_by | null),steam_id?: (order_by | null)} + + +/** columns and relationships of "player_sanctions" */ +export interface player_sanctionsGenqlSelection{ + created_at?: boolean | number + deleted_at?: boolean | number + /** An object relationship */ + e_sanction_type?: e_sanction_typesGenqlSelection + id?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + player_steam_id?: boolean | number + reason?: boolean | number + remove_sanction_date?: boolean | number + /** An object relationship */ + sanctioned_by?: playersGenqlSelection + sanctioned_by_steam_id?: boolean | number + type?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "player_sanctions" */ +export interface player_sanctions_aggregateGenqlSelection{ + aggregate?: player_sanctions_aggregate_fieldsGenqlSelection + nodes?: player_sanctionsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface player_sanctions_aggregate_bool_exp {count?: (player_sanctions_aggregate_bool_exp_count | null)} + +export interface player_sanctions_aggregate_bool_exp_count {arguments?: (player_sanctions_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (player_sanctions_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "player_sanctions" */ +export interface player_sanctions_aggregate_fieldsGenqlSelection{ + avg?: player_sanctions_avg_fieldsGenqlSelection + count?: { __args: {columns?: (player_sanctions_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: player_sanctions_max_fieldsGenqlSelection + min?: player_sanctions_min_fieldsGenqlSelection + stddev?: player_sanctions_stddev_fieldsGenqlSelection + stddev_pop?: player_sanctions_stddev_pop_fieldsGenqlSelection + stddev_samp?: player_sanctions_stddev_samp_fieldsGenqlSelection + sum?: player_sanctions_sum_fieldsGenqlSelection + var_pop?: player_sanctions_var_pop_fieldsGenqlSelection + var_samp?: player_sanctions_var_samp_fieldsGenqlSelection + variance?: player_sanctions_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "player_sanctions" */ +export interface player_sanctions_aggregate_order_by {avg?: (player_sanctions_avg_order_by | null),count?: (order_by | null),max?: (player_sanctions_max_order_by | null),min?: (player_sanctions_min_order_by | null),stddev?: (player_sanctions_stddev_order_by | null),stddev_pop?: (player_sanctions_stddev_pop_order_by | null),stddev_samp?: (player_sanctions_stddev_samp_order_by | null),sum?: (player_sanctions_sum_order_by | null),var_pop?: (player_sanctions_var_pop_order_by | null),var_samp?: (player_sanctions_var_samp_order_by | null),variance?: (player_sanctions_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "player_sanctions" */ +export interface player_sanctions_arr_rel_insert_input {data: player_sanctions_insert_input[], +/** upsert condition */ +on_conflict?: (player_sanctions_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface player_sanctions_avg_fieldsGenqlSelection{ + player_steam_id?: boolean | number + sanctioned_by_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "player_sanctions" */ +export interface player_sanctions_avg_order_by {player_steam_id?: (order_by | null),sanctioned_by_steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "player_sanctions". All fields are combined with a logical 'AND'. */ +export interface player_sanctions_bool_exp {_and?: (player_sanctions_bool_exp[] | null),_not?: (player_sanctions_bool_exp | null),_or?: (player_sanctions_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),deleted_at?: (timestamptz_comparison_exp | null),e_sanction_type?: (e_sanction_types_bool_exp | null),id?: (uuid_comparison_exp | null),player?: (players_bool_exp | null),player_steam_id?: (bigint_comparison_exp | null),reason?: (String_comparison_exp | null),remove_sanction_date?: (timestamptz_comparison_exp | null),sanctioned_by?: (players_bool_exp | null),sanctioned_by_steam_id?: (bigint_comparison_exp | null),type?: (e_sanction_types_enum_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "player_sanctions" */ +export interface player_sanctions_inc_input {player_steam_id?: (Scalars['bigint'] | null),sanctioned_by_steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "player_sanctions" */ +export interface player_sanctions_insert_input {created_at?: (Scalars['timestamptz'] | null),deleted_at?: (Scalars['timestamptz'] | null),e_sanction_type?: (e_sanction_types_obj_rel_insert_input | null),id?: (Scalars['uuid'] | null),player?: (players_obj_rel_insert_input | null),player_steam_id?: (Scalars['bigint'] | null),reason?: (Scalars['String'] | null),remove_sanction_date?: (Scalars['timestamptz'] | null),sanctioned_by?: (players_obj_rel_insert_input | null),sanctioned_by_steam_id?: (Scalars['bigint'] | null),type?: (e_sanction_types_enum | null)} + + +/** aggregate max on columns */ +export interface player_sanctions_max_fieldsGenqlSelection{ + created_at?: boolean | number + deleted_at?: boolean | number + id?: boolean | number + player_steam_id?: boolean | number + reason?: boolean | number + remove_sanction_date?: boolean | number + sanctioned_by_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "player_sanctions" */ +export interface player_sanctions_max_order_by {created_at?: (order_by | null),deleted_at?: (order_by | null),id?: (order_by | null),player_steam_id?: (order_by | null),reason?: (order_by | null),remove_sanction_date?: (order_by | null),sanctioned_by_steam_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface player_sanctions_min_fieldsGenqlSelection{ + created_at?: boolean | number + deleted_at?: boolean | number + id?: boolean | number + player_steam_id?: boolean | number + reason?: boolean | number + remove_sanction_date?: boolean | number + sanctioned_by_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "player_sanctions" */ +export interface player_sanctions_min_order_by {created_at?: (order_by | null),deleted_at?: (order_by | null),id?: (order_by | null),player_steam_id?: (order_by | null),reason?: (order_by | null),remove_sanction_date?: (order_by | null),sanctioned_by_steam_id?: (order_by | null)} + + +/** response of any mutation on the table "player_sanctions" */ +export interface player_sanctions_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: player_sanctionsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "player_sanctions" */ +export interface player_sanctions_on_conflict {constraint: player_sanctions_constraint,update_columns?: player_sanctions_update_column[],where?: (player_sanctions_bool_exp | null)} + + +/** Ordering options when selecting data from "player_sanctions". */ +export interface player_sanctions_order_by {created_at?: (order_by | null),deleted_at?: (order_by | null),e_sanction_type?: (e_sanction_types_order_by | null),id?: (order_by | null),player?: (players_order_by | null),player_steam_id?: (order_by | null),reason?: (order_by | null),remove_sanction_date?: (order_by | null),sanctioned_by?: (players_order_by | null),sanctioned_by_steam_id?: (order_by | null),type?: (order_by | null)} + + +/** primary key columns input for table: player_sanctions */ +export interface player_sanctions_pk_columns_input {created_at: Scalars['timestamptz'],id: Scalars['uuid']} + + +/** input type for updating data in table "player_sanctions" */ +export interface player_sanctions_set_input {created_at?: (Scalars['timestamptz'] | null),deleted_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),player_steam_id?: (Scalars['bigint'] | null),reason?: (Scalars['String'] | null),remove_sanction_date?: (Scalars['timestamptz'] | null),sanctioned_by_steam_id?: (Scalars['bigint'] | null),type?: (e_sanction_types_enum | null)} + + +/** aggregate stddev on columns */ +export interface player_sanctions_stddev_fieldsGenqlSelection{ + player_steam_id?: boolean | number + sanctioned_by_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "player_sanctions" */ +export interface player_sanctions_stddev_order_by {player_steam_id?: (order_by | null),sanctioned_by_steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface player_sanctions_stddev_pop_fieldsGenqlSelection{ + player_steam_id?: boolean | number + sanctioned_by_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "player_sanctions" */ +export interface player_sanctions_stddev_pop_order_by {player_steam_id?: (order_by | null),sanctioned_by_steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface player_sanctions_stddev_samp_fieldsGenqlSelection{ + player_steam_id?: boolean | number + sanctioned_by_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "player_sanctions" */ +export interface player_sanctions_stddev_samp_order_by {player_steam_id?: (order_by | null),sanctioned_by_steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "player_sanctions" */ +export interface player_sanctions_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: player_sanctions_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface player_sanctions_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),deleted_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),player_steam_id?: (Scalars['bigint'] | null),reason?: (Scalars['String'] | null),remove_sanction_date?: (Scalars['timestamptz'] | null),sanctioned_by_steam_id?: (Scalars['bigint'] | null),type?: (e_sanction_types_enum | null)} + + +/** aggregate sum on columns */ +export interface player_sanctions_sum_fieldsGenqlSelection{ + player_steam_id?: boolean | number + sanctioned_by_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "player_sanctions" */ +export interface player_sanctions_sum_order_by {player_steam_id?: (order_by | null),sanctioned_by_steam_id?: (order_by | null)} + +export interface player_sanctions_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (player_sanctions_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (player_sanctions_set_input | null), +/** filter the rows which have to be updated */ +where: player_sanctions_bool_exp} + + +/** aggregate var_pop on columns */ +export interface player_sanctions_var_pop_fieldsGenqlSelection{ + player_steam_id?: boolean | number + sanctioned_by_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "player_sanctions" */ +export interface player_sanctions_var_pop_order_by {player_steam_id?: (order_by | null),sanctioned_by_steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface player_sanctions_var_samp_fieldsGenqlSelection{ + player_steam_id?: boolean | number + sanctioned_by_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "player_sanctions" */ +export interface player_sanctions_var_samp_order_by {player_steam_id?: (order_by | null),sanctioned_by_steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface player_sanctions_variance_fieldsGenqlSelection{ + player_steam_id?: boolean | number + sanctioned_by_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "player_sanctions" */ +export interface player_sanctions_variance_order_by {player_steam_id?: (order_by | null),sanctioned_by_steam_id?: (order_by | null)} + + +/** columns and relationships of "player_season_stats" */ +export interface player_season_statsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kills?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + player_steam_id?: boolean | number + /** An object relationship */ + season?: seasonsGenqlSelection + season_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "player_season_stats" */ +export interface player_season_stats_aggregateGenqlSelection{ + aggregate?: player_season_stats_aggregate_fieldsGenqlSelection + nodes?: player_season_statsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface player_season_stats_aggregate_bool_exp {avg?: (player_season_stats_aggregate_bool_exp_avg | null),corr?: (player_season_stats_aggregate_bool_exp_corr | null),count?: (player_season_stats_aggregate_bool_exp_count | null),covar_samp?: (player_season_stats_aggregate_bool_exp_covar_samp | null),max?: (player_season_stats_aggregate_bool_exp_max | null),min?: (player_season_stats_aggregate_bool_exp_min | null),stddev_samp?: (player_season_stats_aggregate_bool_exp_stddev_samp | null),sum?: (player_season_stats_aggregate_bool_exp_sum | null),var_samp?: (player_season_stats_aggregate_bool_exp_var_samp | null)} + +export interface player_season_stats_aggregate_bool_exp_avg {arguments: player_season_stats_select_column_player_season_stats_aggregate_bool_exp_avg_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (player_season_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface player_season_stats_aggregate_bool_exp_corr {arguments: player_season_stats_aggregate_bool_exp_corr_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (player_season_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface player_season_stats_aggregate_bool_exp_corr_arguments {X: player_season_stats_select_column_player_season_stats_aggregate_bool_exp_corr_arguments_columns,Y: player_season_stats_select_column_player_season_stats_aggregate_bool_exp_corr_arguments_columns} + +export interface player_season_stats_aggregate_bool_exp_count {arguments?: (player_season_stats_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (player_season_stats_bool_exp | null),predicate: Int_comparison_exp} + +export interface player_season_stats_aggregate_bool_exp_covar_samp {arguments: player_season_stats_aggregate_bool_exp_covar_samp_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (player_season_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface player_season_stats_aggregate_bool_exp_covar_samp_arguments {X: player_season_stats_select_column_player_season_stats_aggregate_bool_exp_covar_samp_arguments_columns,Y: player_season_stats_select_column_player_season_stats_aggregate_bool_exp_covar_samp_arguments_columns} + +export interface player_season_stats_aggregate_bool_exp_max {arguments: player_season_stats_select_column_player_season_stats_aggregate_bool_exp_max_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (player_season_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface player_season_stats_aggregate_bool_exp_min {arguments: player_season_stats_select_column_player_season_stats_aggregate_bool_exp_min_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (player_season_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface player_season_stats_aggregate_bool_exp_stddev_samp {arguments: player_season_stats_select_column_player_season_stats_aggregate_bool_exp_stddev_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (player_season_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface player_season_stats_aggregate_bool_exp_sum {arguments: player_season_stats_select_column_player_season_stats_aggregate_bool_exp_sum_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (player_season_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface player_season_stats_aggregate_bool_exp_var_samp {arguments: player_season_stats_select_column_player_season_stats_aggregate_bool_exp_var_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (player_season_stats_bool_exp | null),predicate: float8_comparison_exp} + + +/** aggregate fields of "player_season_stats" */ +export interface player_season_stats_aggregate_fieldsGenqlSelection{ + avg?: player_season_stats_avg_fieldsGenqlSelection + count?: { __args: {columns?: (player_season_stats_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: player_season_stats_max_fieldsGenqlSelection + min?: player_season_stats_min_fieldsGenqlSelection + stddev?: player_season_stats_stddev_fieldsGenqlSelection + stddev_pop?: player_season_stats_stddev_pop_fieldsGenqlSelection + stddev_samp?: player_season_stats_stddev_samp_fieldsGenqlSelection + sum?: player_season_stats_sum_fieldsGenqlSelection + var_pop?: player_season_stats_var_pop_fieldsGenqlSelection + var_samp?: player_season_stats_var_samp_fieldsGenqlSelection + variance?: player_season_stats_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "player_season_stats" */ +export interface player_season_stats_aggregate_order_by {avg?: (player_season_stats_avg_order_by | null),count?: (order_by | null),max?: (player_season_stats_max_order_by | null),min?: (player_season_stats_min_order_by | null),stddev?: (player_season_stats_stddev_order_by | null),stddev_pop?: (player_season_stats_stddev_pop_order_by | null),stddev_samp?: (player_season_stats_stddev_samp_order_by | null),sum?: (player_season_stats_sum_order_by | null),var_pop?: (player_season_stats_var_pop_order_by | null),var_samp?: (player_season_stats_var_samp_order_by | null),variance?: (player_season_stats_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "player_season_stats" */ +export interface player_season_stats_arr_rel_insert_input {data: player_season_stats_insert_input[], +/** upsert condition */ +on_conflict?: (player_season_stats_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface player_season_stats_avg_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kills?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "player_season_stats" */ +export interface player_season_stats_avg_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kills?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "player_season_stats". All fields are combined with a logical 'AND'. */ +export interface player_season_stats_bool_exp {_and?: (player_season_stats_bool_exp[] | null),_not?: (player_season_stats_bool_exp | null),_or?: (player_season_stats_bool_exp[] | null),assists?: (bigint_comparison_exp | null),deaths?: (bigint_comparison_exp | null),headshot_percentage?: (float8_comparison_exp | null),headshots?: (bigint_comparison_exp | null),kills?: (bigint_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)} + + +/** input type for incrementing numeric columns in table "player_season_stats" */ +export interface player_season_stats_inc_input {assists?: (Scalars['bigint'] | null),deaths?: (Scalars['bigint'] | null),headshot_percentage?: (Scalars['float8'] | null),headshots?: (Scalars['bigint'] | null),kills?: (Scalars['bigint'] | null),player_steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "player_season_stats" */ +export interface player_season_stats_insert_input {assists?: (Scalars['bigint'] | null),deaths?: (Scalars['bigint'] | null),headshot_percentage?: (Scalars['float8'] | null),headshots?: (Scalars['bigint'] | null),kills?: (Scalars['bigint'] | 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)} + + +/** aggregate max on columns */ +export interface player_season_stats_max_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kills?: boolean | number + player_steam_id?: boolean | number + season_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "player_season_stats" */ +export interface player_season_stats_max_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kills?: (order_by | null),player_steam_id?: (order_by | null),season_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface player_season_stats_min_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kills?: boolean | number + player_steam_id?: boolean | number + season_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "player_season_stats" */ +export interface player_season_stats_min_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kills?: (order_by | null),player_steam_id?: (order_by | null),season_id?: (order_by | null)} + + +/** response of any mutation on the table "player_season_stats" */ +export interface player_season_stats_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: player_season_statsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "player_season_stats" */ +export interface player_season_stats_on_conflict {constraint: player_season_stats_constraint,update_columns?: player_season_stats_update_column[],where?: (player_season_stats_bool_exp | null)} + + +/** Ordering options when selecting data from "player_season_stats". */ +export interface player_season_stats_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kills?: (order_by | null),player?: (players_order_by | null),player_steam_id?: (order_by | null),season?: (seasons_order_by | null),season_id?: (order_by | null)} + + +/** primary key columns input for table: player_season_stats */ +export interface player_season_stats_pk_columns_input {player_steam_id: Scalars['bigint'],season_id: Scalars['uuid']} + + +/** input type for updating data in table "player_season_stats" */ +export interface player_season_stats_set_input {assists?: (Scalars['bigint'] | null),deaths?: (Scalars['bigint'] | null),headshot_percentage?: (Scalars['float8'] | null),headshots?: (Scalars['bigint'] | null),kills?: (Scalars['bigint'] | null),player_steam_id?: (Scalars['bigint'] | null),season_id?: (Scalars['uuid'] | null)} + + +/** aggregate stddev on columns */ +export interface player_season_stats_stddev_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kills?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "player_season_stats" */ +export interface player_season_stats_stddev_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kills?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface player_season_stats_stddev_pop_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kills?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "player_season_stats" */ +export interface player_season_stats_stddev_pop_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kills?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface player_season_stats_stddev_samp_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kills?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "player_season_stats" */ +export interface player_season_stats_stddev_samp_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kills?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "player_season_stats" */ +export interface player_season_stats_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: player_season_stats_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface player_season_stats_stream_cursor_value_input {assists?: (Scalars['bigint'] | null),deaths?: (Scalars['bigint'] | null),headshot_percentage?: (Scalars['float8'] | null),headshots?: (Scalars['bigint'] | null),kills?: (Scalars['bigint'] | null),player_steam_id?: (Scalars['bigint'] | null),season_id?: (Scalars['uuid'] | null)} + + +/** aggregate sum on columns */ +export interface player_season_stats_sum_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kills?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "player_season_stats" */ +export interface player_season_stats_sum_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kills?: (order_by | null),player_steam_id?: (order_by | null)} + +export interface player_season_stats_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (player_season_stats_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (player_season_stats_set_input | null), +/** filter the rows which have to be updated */ +where: player_season_stats_bool_exp} + + +/** aggregate var_pop on columns */ +export interface player_season_stats_var_pop_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kills?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "player_season_stats" */ +export interface player_season_stats_var_pop_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kills?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface player_season_stats_var_samp_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kills?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "player_season_stats" */ +export interface player_season_stats_var_samp_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kills?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface player_season_stats_variance_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kills?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "player_season_stats" */ +export interface player_season_stats_variance_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kills?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** columns and relationships of "player_stats" */ +export interface player_statsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kills?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "player_stats" */ +export interface player_stats_aggregateGenqlSelection{ + aggregate?: player_stats_aggregate_fieldsGenqlSelection + nodes?: player_statsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "player_stats" */ +export interface player_stats_aggregate_fieldsGenqlSelection{ + avg?: player_stats_avg_fieldsGenqlSelection + count?: { __args: {columns?: (player_stats_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: player_stats_max_fieldsGenqlSelection + min?: player_stats_min_fieldsGenqlSelection + stddev?: player_stats_stddev_fieldsGenqlSelection + stddev_pop?: player_stats_stddev_pop_fieldsGenqlSelection + stddev_samp?: player_stats_stddev_samp_fieldsGenqlSelection + sum?: player_stats_sum_fieldsGenqlSelection + var_pop?: player_stats_var_pop_fieldsGenqlSelection + var_samp?: player_stats_var_samp_fieldsGenqlSelection + variance?: player_stats_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface player_stats_avg_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kills?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "player_stats". All fields are combined with a logical 'AND'. */ +export interface player_stats_bool_exp {_and?: (player_stats_bool_exp[] | null),_not?: (player_stats_bool_exp | null),_or?: (player_stats_bool_exp[] | null),assists?: (bigint_comparison_exp | null),deaths?: (bigint_comparison_exp | null),headshot_percentage?: (float8_comparison_exp | null),headshots?: (bigint_comparison_exp | null),kills?: (bigint_comparison_exp | null),player?: (players_bool_exp | null),player_steam_id?: (bigint_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "player_stats" */ +export interface player_stats_inc_input {assists?: (Scalars['bigint'] | null),deaths?: (Scalars['bigint'] | null),headshot_percentage?: (Scalars['float8'] | null),headshots?: (Scalars['bigint'] | null),kills?: (Scalars['bigint'] | null),player_steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "player_stats" */ +export interface player_stats_insert_input {assists?: (Scalars['bigint'] | null),deaths?: (Scalars['bigint'] | null),headshot_percentage?: (Scalars['float8'] | null),headshots?: (Scalars['bigint'] | null),kills?: (Scalars['bigint'] | null),player?: (players_obj_rel_insert_input | null),player_steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate max on columns */ +export interface player_stats_max_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kills?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface player_stats_min_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kills?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "player_stats" */ +export interface player_stats_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: player_statsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "player_stats" */ +export interface player_stats_obj_rel_insert_input {data: player_stats_insert_input, +/** upsert condition */ +on_conflict?: (player_stats_on_conflict | null)} + + +/** on_conflict condition type for table "player_stats" */ +export interface player_stats_on_conflict {constraint: player_stats_constraint,update_columns?: player_stats_update_column[],where?: (player_stats_bool_exp | null)} + + +/** Ordering options when selecting data from "player_stats". */ +export interface player_stats_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kills?: (order_by | null),player?: (players_order_by | null),player_steam_id?: (order_by | null)} + + +/** primary key columns input for table: player_stats */ +export interface player_stats_pk_columns_input {player_steam_id: Scalars['bigint']} + + +/** input type for updating data in table "player_stats" */ +export interface player_stats_set_input {assists?: (Scalars['bigint'] | null),deaths?: (Scalars['bigint'] | null),headshot_percentage?: (Scalars['float8'] | null),headshots?: (Scalars['bigint'] | null),kills?: (Scalars['bigint'] | null),player_steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate stddev on columns */ +export interface player_stats_stddev_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kills?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface player_stats_stddev_pop_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kills?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface player_stats_stddev_samp_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kills?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "player_stats" */ +export interface player_stats_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: player_stats_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface player_stats_stream_cursor_value_input {assists?: (Scalars['bigint'] | null),deaths?: (Scalars['bigint'] | null),headshot_percentage?: (Scalars['float8'] | null),headshots?: (Scalars['bigint'] | null),kills?: (Scalars['bigint'] | null),player_steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate sum on columns */ +export interface player_stats_sum_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kills?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface player_stats_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (player_stats_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (player_stats_set_input | null), +/** filter the rows which have to be updated */ +where: player_stats_bool_exp} + + +/** aggregate var_pop on columns */ +export interface player_stats_var_pop_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kills?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface player_stats_var_samp_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kills?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface player_stats_variance_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kills?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "player_steam_bot_friend" */ +export interface player_steam_bot_friendGenqlSelection{ + bot_steam_account_id?: boolean | number + bot_steamid64?: boolean | number + created_at?: boolean | number + friended_at?: boolean | number + last_presence_state?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number + /** An object relationship */ + player?: playersGenqlSelection + status?: boolean | number + steam_id?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "player_steam_bot_friend" */ +export interface player_steam_bot_friend_aggregateGenqlSelection{ + aggregate?: player_steam_bot_friend_aggregate_fieldsGenqlSelection + nodes?: player_steam_bot_friendGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "player_steam_bot_friend" */ +export interface player_steam_bot_friend_aggregate_fieldsGenqlSelection{ + avg?: player_steam_bot_friend_avg_fieldsGenqlSelection + count?: { __args: {columns?: (player_steam_bot_friend_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: player_steam_bot_friend_max_fieldsGenqlSelection + min?: player_steam_bot_friend_min_fieldsGenqlSelection + stddev?: player_steam_bot_friend_stddev_fieldsGenqlSelection + stddev_pop?: player_steam_bot_friend_stddev_pop_fieldsGenqlSelection + stddev_samp?: player_steam_bot_friend_stddev_samp_fieldsGenqlSelection + sum?: player_steam_bot_friend_sum_fieldsGenqlSelection + var_pop?: player_steam_bot_friend_var_pop_fieldsGenqlSelection + var_samp?: player_steam_bot_friend_var_samp_fieldsGenqlSelection + variance?: player_steam_bot_friend_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** append existing jsonb value of filtered columns with new jsonb value */ +export interface player_steam_bot_friend_append_input {last_presence_state?: (Scalars['jsonb'] | null)} + + +/** aggregate avg on columns */ +export interface player_steam_bot_friend_avg_fieldsGenqlSelection{ + bot_steamid64?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "player_steam_bot_friend". All fields are combined with a logical 'AND'. */ +export interface player_steam_bot_friend_bool_exp {_and?: (player_steam_bot_friend_bool_exp[] | null),_not?: (player_steam_bot_friend_bool_exp | null),_or?: (player_steam_bot_friend_bool_exp[] | null),bot_steam_account_id?: (uuid_comparison_exp | null),bot_steamid64?: (bigint_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),friended_at?: (timestamptz_comparison_exp | null),last_presence_state?: (jsonb_comparison_exp | null),player?: (players_bool_exp | null),status?: (String_comparison_exp | null),steam_id?: (bigint_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 player_steam_bot_friend_delete_at_path_input {last_presence_state?: (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 player_steam_bot_friend_delete_elem_input {last_presence_state?: (Scalars['Int'] | null)} + + +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +export interface player_steam_bot_friend_delete_key_input {last_presence_state?: (Scalars['String'] | null)} + + +/** input type for incrementing numeric columns in table "player_steam_bot_friend" */ +export interface player_steam_bot_friend_inc_input {bot_steamid64?: (Scalars['bigint'] | null),steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "player_steam_bot_friend" */ +export interface player_steam_bot_friend_insert_input {bot_steam_account_id?: (Scalars['uuid'] | null),bot_steamid64?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),friended_at?: (Scalars['timestamptz'] | null),last_presence_state?: (Scalars['jsonb'] | null),player?: (players_obj_rel_insert_input | null),status?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate max on columns */ +export interface player_steam_bot_friend_max_fieldsGenqlSelection{ + bot_steam_account_id?: boolean | number + bot_steamid64?: boolean | number + created_at?: boolean | number + friended_at?: boolean | number + status?: boolean | number + steam_id?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface player_steam_bot_friend_min_fieldsGenqlSelection{ + bot_steam_account_id?: boolean | number + bot_steamid64?: boolean | number + created_at?: boolean | number + friended_at?: boolean | number + status?: boolean | number + steam_id?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "player_steam_bot_friend" */ +export interface player_steam_bot_friend_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: player_steam_bot_friendGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "player_steam_bot_friend" */ +export interface player_steam_bot_friend_on_conflict {constraint: player_steam_bot_friend_constraint,update_columns?: player_steam_bot_friend_update_column[],where?: (player_steam_bot_friend_bool_exp | null)} + + +/** Ordering options when selecting data from "player_steam_bot_friend". */ +export interface player_steam_bot_friend_order_by {bot_steam_account_id?: (order_by | null),bot_steamid64?: (order_by | null),created_at?: (order_by | null),friended_at?: (order_by | null),last_presence_state?: (order_by | null),player?: (players_order_by | null),status?: (order_by | null),steam_id?: (order_by | null),updated_at?: (order_by | null)} + + +/** primary key columns input for table: player_steam_bot_friend */ +export interface player_steam_bot_friend_pk_columns_input {steam_id: Scalars['bigint']} + + +/** prepend existing jsonb value of filtered columns with new jsonb value */ +export interface player_steam_bot_friend_prepend_input {last_presence_state?: (Scalars['jsonb'] | null)} + + +/** input type for updating data in table "player_steam_bot_friend" */ +export interface player_steam_bot_friend_set_input {bot_steam_account_id?: (Scalars['uuid'] | null),bot_steamid64?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),friended_at?: (Scalars['timestamptz'] | null),last_presence_state?: (Scalars['jsonb'] | null),status?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate stddev on columns */ +export interface player_steam_bot_friend_stddev_fieldsGenqlSelection{ + bot_steamid64?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface player_steam_bot_friend_stddev_pop_fieldsGenqlSelection{ + bot_steamid64?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface player_steam_bot_friend_stddev_samp_fieldsGenqlSelection{ + bot_steamid64?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "player_steam_bot_friend" */ +export interface player_steam_bot_friend_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: player_steam_bot_friend_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface player_steam_bot_friend_stream_cursor_value_input {bot_steam_account_id?: (Scalars['uuid'] | null),bot_steamid64?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),friended_at?: (Scalars['timestamptz'] | null),last_presence_state?: (Scalars['jsonb'] | null),status?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate sum on columns */ +export interface player_steam_bot_friend_sum_fieldsGenqlSelection{ + bot_steamid64?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface player_steam_bot_friend_updates { +/** append existing jsonb value of filtered columns with new jsonb value */ +_append?: (player_steam_bot_friend_append_input | null), +/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ +_delete_at_path?: (player_steam_bot_friend_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?: (player_steam_bot_friend_delete_elem_input | null), +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +_delete_key?: (player_steam_bot_friend_delete_key_input | null), +/** increments the numeric columns with given value of the filtered values */ +_inc?: (player_steam_bot_friend_inc_input | null), +/** prepend existing jsonb value of filtered columns with new jsonb value */ +_prepend?: (player_steam_bot_friend_prepend_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (player_steam_bot_friend_set_input | null), +/** filter the rows which have to be updated */ +where: player_steam_bot_friend_bool_exp} + + +/** aggregate var_pop on columns */ +export interface player_steam_bot_friend_var_pop_fieldsGenqlSelection{ + bot_steamid64?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface player_steam_bot_friend_var_samp_fieldsGenqlSelection{ + bot_steamid64?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface player_steam_bot_friend_variance_fieldsGenqlSelection{ + bot_steamid64?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "player_steam_match_auth" */ +export interface player_steam_match_authGenqlSelection{ + auth_code?: boolean | number + created_at?: boolean | number + last_error?: boolean | number + last_known_share_code?: boolean | number + last_polled_at?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + steam_id?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "player_steam_match_auth" */ +export interface player_steam_match_auth_aggregateGenqlSelection{ + aggregate?: player_steam_match_auth_aggregate_fieldsGenqlSelection + nodes?: player_steam_match_authGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "player_steam_match_auth" */ +export interface player_steam_match_auth_aggregate_fieldsGenqlSelection{ + avg?: player_steam_match_auth_avg_fieldsGenqlSelection + count?: { __args: {columns?: (player_steam_match_auth_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: player_steam_match_auth_max_fieldsGenqlSelection + min?: player_steam_match_auth_min_fieldsGenqlSelection + stddev?: player_steam_match_auth_stddev_fieldsGenqlSelection + stddev_pop?: player_steam_match_auth_stddev_pop_fieldsGenqlSelection + stddev_samp?: player_steam_match_auth_stddev_samp_fieldsGenqlSelection + sum?: player_steam_match_auth_sum_fieldsGenqlSelection + var_pop?: player_steam_match_auth_var_pop_fieldsGenqlSelection + var_samp?: player_steam_match_auth_var_samp_fieldsGenqlSelection + variance?: player_steam_match_auth_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface player_steam_match_auth_avg_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "player_steam_match_auth". All fields are combined with a logical 'AND'. */ +export interface player_steam_match_auth_bool_exp {_and?: (player_steam_match_auth_bool_exp[] | null),_not?: (player_steam_match_auth_bool_exp | null),_or?: (player_steam_match_auth_bool_exp[] | null),auth_code?: (String_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),last_error?: (String_comparison_exp | null),last_known_share_code?: (String_comparison_exp | null),last_polled_at?: (timestamptz_comparison_exp | null),player?: (players_bool_exp | null),steam_id?: (bigint_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "player_steam_match_auth" */ +export interface player_steam_match_auth_inc_input {steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "player_steam_match_auth" */ +export interface player_steam_match_auth_insert_input {auth_code?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),last_error?: (Scalars['String'] | null),last_known_share_code?: (Scalars['String'] | null),last_polled_at?: (Scalars['timestamptz'] | null),player?: (players_obj_rel_insert_input | null),steam_id?: (Scalars['bigint'] | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate max on columns */ +export interface player_steam_match_auth_max_fieldsGenqlSelection{ + auth_code?: boolean | number + created_at?: boolean | number + last_error?: boolean | number + last_known_share_code?: boolean | number + last_polled_at?: boolean | number + steam_id?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface player_steam_match_auth_min_fieldsGenqlSelection{ + auth_code?: boolean | number + created_at?: boolean | number + last_error?: boolean | number + last_known_share_code?: boolean | number + last_polled_at?: boolean | number + steam_id?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "player_steam_match_auth" */ +export interface player_steam_match_auth_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: player_steam_match_authGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "player_steam_match_auth" */ +export interface player_steam_match_auth_on_conflict {constraint: player_steam_match_auth_constraint,update_columns?: player_steam_match_auth_update_column[],where?: (player_steam_match_auth_bool_exp | null)} + + +/** Ordering options when selecting data from "player_steam_match_auth". */ +export interface player_steam_match_auth_order_by {auth_code?: (order_by | null),created_at?: (order_by | null),last_error?: (order_by | null),last_known_share_code?: (order_by | null),last_polled_at?: (order_by | null),player?: (players_order_by | null),steam_id?: (order_by | null),updated_at?: (order_by | null)} + + +/** primary key columns input for table: player_steam_match_auth */ +export interface player_steam_match_auth_pk_columns_input {steam_id: Scalars['bigint']} + + +/** input type for updating data in table "player_steam_match_auth" */ +export interface player_steam_match_auth_set_input {auth_code?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),last_error?: (Scalars['String'] | null),last_known_share_code?: (Scalars['String'] | null),last_polled_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate stddev on columns */ +export interface player_steam_match_auth_stddev_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface player_steam_match_auth_stddev_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface player_steam_match_auth_stddev_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "player_steam_match_auth" */ +export interface player_steam_match_auth_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: player_steam_match_auth_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface player_steam_match_auth_stream_cursor_value_input {auth_code?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),last_error?: (Scalars['String'] | null),last_known_share_code?: (Scalars['String'] | null),last_polled_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate sum on columns */ +export interface player_steam_match_auth_sum_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface player_steam_match_auth_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (player_steam_match_auth_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (player_steam_match_auth_set_input | null), +/** filter the rows which have to be updated */ +where: player_steam_match_auth_bool_exp} + + +/** aggregate var_pop on columns */ +export interface player_steam_match_auth_var_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface player_steam_match_auth_var_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface player_steam_match_auth_variance_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "player_unused_utility" */ +export interface player_unused_utilityGenqlSelection{ + deleted_at?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + match_id?: boolean | number + /** An object relationship */ + match_map?: match_mapsGenqlSelection + match_map_id?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + player_steam_id?: boolean | number + round?: boolean | number + unused?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "player_unused_utility" */ +export interface player_unused_utility_aggregateGenqlSelection{ + aggregate?: player_unused_utility_aggregate_fieldsGenqlSelection + nodes?: player_unused_utilityGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface player_unused_utility_aggregate_bool_exp {count?: (player_unused_utility_aggregate_bool_exp_count | null)} + +export interface player_unused_utility_aggregate_bool_exp_count {arguments?: (player_unused_utility_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (player_unused_utility_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "player_unused_utility" */ +export interface player_unused_utility_aggregate_fieldsGenqlSelection{ + avg?: player_unused_utility_avg_fieldsGenqlSelection + count?: { __args: {columns?: (player_unused_utility_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: player_unused_utility_max_fieldsGenqlSelection + min?: player_unused_utility_min_fieldsGenqlSelection + stddev?: player_unused_utility_stddev_fieldsGenqlSelection + stddev_pop?: player_unused_utility_stddev_pop_fieldsGenqlSelection + stddev_samp?: player_unused_utility_stddev_samp_fieldsGenqlSelection + sum?: player_unused_utility_sum_fieldsGenqlSelection + var_pop?: player_unused_utility_var_pop_fieldsGenqlSelection + var_samp?: player_unused_utility_var_samp_fieldsGenqlSelection + variance?: player_unused_utility_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "player_unused_utility" */ +export interface player_unused_utility_aggregate_order_by {avg?: (player_unused_utility_avg_order_by | null),count?: (order_by | null),max?: (player_unused_utility_max_order_by | null),min?: (player_unused_utility_min_order_by | null),stddev?: (player_unused_utility_stddev_order_by | null),stddev_pop?: (player_unused_utility_stddev_pop_order_by | null),stddev_samp?: (player_unused_utility_stddev_samp_order_by | null),sum?: (player_unused_utility_sum_order_by | null),var_pop?: (player_unused_utility_var_pop_order_by | null),var_samp?: (player_unused_utility_var_samp_order_by | null),variance?: (player_unused_utility_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "player_unused_utility" */ +export interface player_unused_utility_arr_rel_insert_input {data: player_unused_utility_insert_input[], +/** upsert condition */ +on_conflict?: (player_unused_utility_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface player_unused_utility_avg_fieldsGenqlSelection{ + player_steam_id?: boolean | number + round?: boolean | number + unused?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "player_unused_utility" */ +export interface player_unused_utility_avg_order_by {player_steam_id?: (order_by | null),round?: (order_by | null),unused?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "player_unused_utility". All fields are combined with a logical 'AND'. */ +export interface player_unused_utility_bool_exp {_and?: (player_unused_utility_bool_exp[] | null),_not?: (player_unused_utility_bool_exp | null),_or?: (player_unused_utility_bool_exp[] | null),deleted_at?: (timestamptz_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_id?: (uuid_comparison_exp | null),player?: (players_bool_exp | null),player_steam_id?: (bigint_comparison_exp | null),round?: (Int_comparison_exp | null),unused?: (Int_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "player_unused_utility" */ +export interface player_unused_utility_inc_input {player_steam_id?: (Scalars['bigint'] | null),round?: (Scalars['Int'] | null),unused?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "player_unused_utility" */ +export interface player_unused_utility_insert_input {deleted_at?: (Scalars['timestamptz'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_map?: (match_maps_obj_rel_insert_input | null),match_map_id?: (Scalars['uuid'] | null),player?: (players_obj_rel_insert_input | null),player_steam_id?: (Scalars['bigint'] | null),round?: (Scalars['Int'] | null),unused?: (Scalars['Int'] | null)} + + +/** aggregate max on columns */ +export interface player_unused_utility_max_fieldsGenqlSelection{ + deleted_at?: boolean | number + match_id?: boolean | number + match_map_id?: boolean | number + player_steam_id?: boolean | number + round?: boolean | number + unused?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "player_unused_utility" */ +export interface player_unused_utility_max_order_by {deleted_at?: (order_by | null),match_id?: (order_by | null),match_map_id?: (order_by | null),player_steam_id?: (order_by | null),round?: (order_by | null),unused?: (order_by | null)} + + +/** aggregate min on columns */ +export interface player_unused_utility_min_fieldsGenqlSelection{ + deleted_at?: boolean | number + match_id?: boolean | number + match_map_id?: boolean | number + player_steam_id?: boolean | number + round?: boolean | number + unused?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "player_unused_utility" */ +export interface player_unused_utility_min_order_by {deleted_at?: (order_by | null),match_id?: (order_by | null),match_map_id?: (order_by | null),player_steam_id?: (order_by | null),round?: (order_by | null),unused?: (order_by | null)} + + +/** response of any mutation on the table "player_unused_utility" */ +export interface player_unused_utility_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: player_unused_utilityGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "player_unused_utility" */ +export interface player_unused_utility_on_conflict {constraint: player_unused_utility_constraint,update_columns?: player_unused_utility_update_column[],where?: (player_unused_utility_bool_exp | null)} + + +/** Ordering options when selecting data from "player_unused_utility". */ +export interface player_unused_utility_order_by {deleted_at?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_id?: (order_by | null),player?: (players_order_by | null),player_steam_id?: (order_by | null),round?: (order_by | null),unused?: (order_by | null)} + + +/** primary key columns input for table: player_unused_utility */ +export interface player_unused_utility_pk_columns_input {match_map_id: Scalars['uuid'],player_steam_id: Scalars['bigint']} + + +/** input type for updating data in table "player_unused_utility" */ +export interface player_unused_utility_set_input {deleted_at?: (Scalars['timestamptz'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),player_steam_id?: (Scalars['bigint'] | null),round?: (Scalars['Int'] | null),unused?: (Scalars['Int'] | null)} + + +/** aggregate stddev on columns */ +export interface player_unused_utility_stddev_fieldsGenqlSelection{ + player_steam_id?: boolean | number + round?: boolean | number + unused?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "player_unused_utility" */ +export interface player_unused_utility_stddev_order_by {player_steam_id?: (order_by | null),round?: (order_by | null),unused?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface player_unused_utility_stddev_pop_fieldsGenqlSelection{ + player_steam_id?: boolean | number + round?: boolean | number + unused?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "player_unused_utility" */ +export interface player_unused_utility_stddev_pop_order_by {player_steam_id?: (order_by | null),round?: (order_by | null),unused?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface player_unused_utility_stddev_samp_fieldsGenqlSelection{ + player_steam_id?: boolean | number + round?: boolean | number + unused?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "player_unused_utility" */ +export interface player_unused_utility_stddev_samp_order_by {player_steam_id?: (order_by | null),round?: (order_by | null),unused?: (order_by | null)} + + +/** Streaming cursor of the table "player_unused_utility" */ +export interface player_unused_utility_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: player_unused_utility_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface player_unused_utility_stream_cursor_value_input {deleted_at?: (Scalars['timestamptz'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),player_steam_id?: (Scalars['bigint'] | null),round?: (Scalars['Int'] | null),unused?: (Scalars['Int'] | null)} + + +/** aggregate sum on columns */ +export interface player_unused_utility_sum_fieldsGenqlSelection{ + player_steam_id?: boolean | number + round?: boolean | number + unused?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "player_unused_utility" */ +export interface player_unused_utility_sum_order_by {player_steam_id?: (order_by | null),round?: (order_by | null),unused?: (order_by | null)} + +export interface player_unused_utility_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (player_unused_utility_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (player_unused_utility_set_input | null), +/** filter the rows which have to be updated */ +where: player_unused_utility_bool_exp} + + +/** aggregate var_pop on columns */ +export interface player_unused_utility_var_pop_fieldsGenqlSelection{ + player_steam_id?: boolean | number + round?: boolean | number + unused?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "player_unused_utility" */ +export interface player_unused_utility_var_pop_order_by {player_steam_id?: (order_by | null),round?: (order_by | null),unused?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface player_unused_utility_var_samp_fieldsGenqlSelection{ + player_steam_id?: boolean | number + round?: boolean | number + unused?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "player_unused_utility" */ +export interface player_unused_utility_var_samp_order_by {player_steam_id?: (order_by | null),round?: (order_by | null),unused?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface player_unused_utility_variance_fieldsGenqlSelection{ + player_steam_id?: boolean | number + round?: boolean | number + unused?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "player_unused_utility" */ +export interface player_unused_utility_variance_order_by {player_steam_id?: (order_by | null),round?: (order_by | null),unused?: (order_by | null)} + + +/** columns and relationships of "player_utility" */ +export interface player_utilityGenqlSelection{ + attacker_location_coordinates?: boolean | number + attacker_steam_id?: boolean | number + deleted_at?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + match_id?: boolean | number + /** An object relationship */ + match_map?: match_mapsGenqlSelection + match_map_id?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + round?: boolean | number + time?: boolean | number + type?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "player_utility" */ +export interface player_utility_aggregateGenqlSelection{ + aggregate?: player_utility_aggregate_fieldsGenqlSelection + nodes?: player_utilityGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface player_utility_aggregate_bool_exp {count?: (player_utility_aggregate_bool_exp_count | null)} + +export interface player_utility_aggregate_bool_exp_count {arguments?: (player_utility_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (player_utility_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "player_utility" */ +export interface player_utility_aggregate_fieldsGenqlSelection{ + avg?: player_utility_avg_fieldsGenqlSelection + count?: { __args: {columns?: (player_utility_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: player_utility_max_fieldsGenqlSelection + min?: player_utility_min_fieldsGenqlSelection + stddev?: player_utility_stddev_fieldsGenqlSelection + stddev_pop?: player_utility_stddev_pop_fieldsGenqlSelection + stddev_samp?: player_utility_stddev_samp_fieldsGenqlSelection + sum?: player_utility_sum_fieldsGenqlSelection + var_pop?: player_utility_var_pop_fieldsGenqlSelection + var_samp?: player_utility_var_samp_fieldsGenqlSelection + variance?: player_utility_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "player_utility" */ +export interface player_utility_aggregate_order_by {avg?: (player_utility_avg_order_by | null),count?: (order_by | null),max?: (player_utility_max_order_by | null),min?: (player_utility_min_order_by | null),stddev?: (player_utility_stddev_order_by | null),stddev_pop?: (player_utility_stddev_pop_order_by | null),stddev_samp?: (player_utility_stddev_samp_order_by | null),sum?: (player_utility_sum_order_by | null),var_pop?: (player_utility_var_pop_order_by | null),var_samp?: (player_utility_var_samp_order_by | null),variance?: (player_utility_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "player_utility" */ +export interface player_utility_arr_rel_insert_input {data: player_utility_insert_input[], +/** upsert condition */ +on_conflict?: (player_utility_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface player_utility_avg_fieldsGenqlSelection{ + attacker_steam_id?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "player_utility" */ +export interface player_utility_avg_order_by {attacker_steam_id?: (order_by | null),round?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "player_utility". All fields are combined with a logical 'AND'. */ +export interface player_utility_bool_exp {_and?: (player_utility_bool_exp[] | null),_not?: (player_utility_bool_exp | null),_or?: (player_utility_bool_exp[] | null),attacker_location_coordinates?: (String_comparison_exp | null),attacker_steam_id?: (bigint_comparison_exp | null),deleted_at?: (timestamptz_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_id?: (uuid_comparison_exp | null),player?: (players_bool_exp | null),round?: (Int_comparison_exp | null),time?: (timestamptz_comparison_exp | null),type?: (e_utility_types_enum_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "player_utility" */ +export interface player_utility_inc_input {attacker_steam_id?: (Scalars['bigint'] | null),round?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "player_utility" */ +export interface player_utility_insert_input {attacker_location_coordinates?: (Scalars['String'] | null),attacker_steam_id?: (Scalars['bigint'] | null),deleted_at?: (Scalars['timestamptz'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_map?: (match_maps_obj_rel_insert_input | null),match_map_id?: (Scalars['uuid'] | null),player?: (players_obj_rel_insert_input | null),round?: (Scalars['Int'] | null),time?: (Scalars['timestamptz'] | null),type?: (e_utility_types_enum | null)} + + +/** aggregate max on columns */ +export interface player_utility_max_fieldsGenqlSelection{ + attacker_location_coordinates?: boolean | number + attacker_steam_id?: boolean | number + deleted_at?: boolean | number + match_id?: boolean | number + match_map_id?: boolean | number + round?: boolean | number + time?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "player_utility" */ +export interface player_utility_max_order_by {attacker_location_coordinates?: (order_by | null),attacker_steam_id?: (order_by | null),deleted_at?: (order_by | null),match_id?: (order_by | null),match_map_id?: (order_by | null),round?: (order_by | null),time?: (order_by | null)} + + +/** aggregate min on columns */ +export interface player_utility_min_fieldsGenqlSelection{ + attacker_location_coordinates?: boolean | number + attacker_steam_id?: boolean | number + deleted_at?: boolean | number + match_id?: boolean | number + match_map_id?: boolean | number + round?: boolean | number + time?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "player_utility" */ +export interface player_utility_min_order_by {attacker_location_coordinates?: (order_by | null),attacker_steam_id?: (order_by | null),deleted_at?: (order_by | null),match_id?: (order_by | null),match_map_id?: (order_by | null),round?: (order_by | null),time?: (order_by | null)} + + +/** response of any mutation on the table "player_utility" */ +export interface player_utility_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: player_utilityGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "player_utility" */ +export interface player_utility_on_conflict {constraint: player_utility_constraint,update_columns?: player_utility_update_column[],where?: (player_utility_bool_exp | null)} + + +/** Ordering options when selecting data from "player_utility". */ +export interface player_utility_order_by {attacker_location_coordinates?: (order_by | null),attacker_steam_id?: (order_by | null),deleted_at?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_id?: (order_by | null),player?: (players_order_by | null),round?: (order_by | null),time?: (order_by | null),type?: (order_by | null)} + + +/** primary key columns input for table: player_utility */ +export interface player_utility_pk_columns_input {attacker_steam_id: Scalars['bigint'],match_map_id: Scalars['uuid'],time: Scalars['timestamptz']} + + +/** input type for updating data in table "player_utility" */ +export interface player_utility_set_input {attacker_location_coordinates?: (Scalars['String'] | null),attacker_steam_id?: (Scalars['bigint'] | null),deleted_at?: (Scalars['timestamptz'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),round?: (Scalars['Int'] | null),time?: (Scalars['timestamptz'] | null),type?: (e_utility_types_enum | null)} + + +/** aggregate stddev on columns */ +export interface player_utility_stddev_fieldsGenqlSelection{ + attacker_steam_id?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "player_utility" */ +export interface player_utility_stddev_order_by {attacker_steam_id?: (order_by | null),round?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface player_utility_stddev_pop_fieldsGenqlSelection{ + attacker_steam_id?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "player_utility" */ +export interface player_utility_stddev_pop_order_by {attacker_steam_id?: (order_by | null),round?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface player_utility_stddev_samp_fieldsGenqlSelection{ + attacker_steam_id?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "player_utility" */ +export interface player_utility_stddev_samp_order_by {attacker_steam_id?: (order_by | null),round?: (order_by | null)} + + +/** Streaming cursor of the table "player_utility" */ +export interface player_utility_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: player_utility_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface player_utility_stream_cursor_value_input {attacker_location_coordinates?: (Scalars['String'] | null),attacker_steam_id?: (Scalars['bigint'] | null),deleted_at?: (Scalars['timestamptz'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),round?: (Scalars['Int'] | null),time?: (Scalars['timestamptz'] | null),type?: (e_utility_types_enum | null)} + + +/** aggregate sum on columns */ +export interface player_utility_sum_fieldsGenqlSelection{ + attacker_steam_id?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "player_utility" */ +export interface player_utility_sum_order_by {attacker_steam_id?: (order_by | null),round?: (order_by | null)} + +export interface player_utility_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (player_utility_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (player_utility_set_input | null), +/** filter the rows which have to be updated */ +where: player_utility_bool_exp} + + +/** aggregate var_pop on columns */ +export interface player_utility_var_pop_fieldsGenqlSelection{ + attacker_steam_id?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "player_utility" */ +export interface player_utility_var_pop_order_by {attacker_steam_id?: (order_by | null),round?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface player_utility_var_samp_fieldsGenqlSelection{ + attacker_steam_id?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "player_utility" */ +export interface player_utility_var_samp_order_by {attacker_steam_id?: (order_by | null),round?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface player_utility_variance_fieldsGenqlSelection{ + attacker_steam_id?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "player_utility" */ +export interface player_utility_variance_order_by {attacker_steam_id?: (order_by | null),round?: (order_by | null)} + + +/** columns and relationships of "player_weapon_stats_v" */ +export interface player_weapon_stats_vGenqlSelection{ + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + hits?: boolean | number + hits_spotted?: boolean | number + match_id?: boolean | number + shots?: boolean | number + shots_spotted?: boolean | number + steam_id?: boolean | number + weapon_class?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "player_weapon_stats_v" */ +export interface player_weapon_stats_v_aggregateGenqlSelection{ + aggregate?: player_weapon_stats_v_aggregate_fieldsGenqlSelection + nodes?: player_weapon_stats_vGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface player_weapon_stats_v_aggregate_bool_exp {count?: (player_weapon_stats_v_aggregate_bool_exp_count | null)} + +export interface player_weapon_stats_v_aggregate_bool_exp_count {arguments?: (player_weapon_stats_v_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (player_weapon_stats_v_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "player_weapon_stats_v" */ +export interface player_weapon_stats_v_aggregate_fieldsGenqlSelection{ + avg?: player_weapon_stats_v_avg_fieldsGenqlSelection + count?: { __args: {columns?: (player_weapon_stats_v_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: player_weapon_stats_v_max_fieldsGenqlSelection + min?: player_weapon_stats_v_min_fieldsGenqlSelection + stddev?: player_weapon_stats_v_stddev_fieldsGenqlSelection + stddev_pop?: player_weapon_stats_v_stddev_pop_fieldsGenqlSelection + stddev_samp?: player_weapon_stats_v_stddev_samp_fieldsGenqlSelection + sum?: player_weapon_stats_v_sum_fieldsGenqlSelection + var_pop?: player_weapon_stats_v_var_pop_fieldsGenqlSelection + var_samp?: player_weapon_stats_v_var_samp_fieldsGenqlSelection + variance?: player_weapon_stats_v_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "player_weapon_stats_v" */ +export interface player_weapon_stats_v_aggregate_order_by {avg?: (player_weapon_stats_v_avg_order_by | null),count?: (order_by | null),max?: (player_weapon_stats_v_max_order_by | null),min?: (player_weapon_stats_v_min_order_by | null),stddev?: (player_weapon_stats_v_stddev_order_by | null),stddev_pop?: (player_weapon_stats_v_stddev_pop_order_by | null),stddev_samp?: (player_weapon_stats_v_stddev_samp_order_by | null),sum?: (player_weapon_stats_v_sum_order_by | null),var_pop?: (player_weapon_stats_v_var_pop_order_by | null),var_samp?: (player_weapon_stats_v_var_samp_order_by | null),variance?: (player_weapon_stats_v_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "player_weapon_stats_v" */ +export interface player_weapon_stats_v_arr_rel_insert_input {data: player_weapon_stats_v_insert_input[]} + + +/** aggregate avg on columns */ +export interface player_weapon_stats_v_avg_fieldsGenqlSelection{ + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + hits?: boolean | number + hits_spotted?: boolean | number + shots?: boolean | number + shots_spotted?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "player_weapon_stats_v" */ +export interface player_weapon_stats_v_avg_order_by {first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),hits?: (order_by | null),hits_spotted?: (order_by | null),shots?: (order_by | null),shots_spotted?: (order_by | null),steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "player_weapon_stats_v". All fields are combined with a logical 'AND'. */ +export interface player_weapon_stats_v_bool_exp {_and?: (player_weapon_stats_v_bool_exp[] | null),_not?: (player_weapon_stats_v_bool_exp | null),_or?: (player_weapon_stats_v_bool_exp[] | null),first_bullet_hits?: (Int_comparison_exp | null),first_bullet_shots?: (Int_comparison_exp | null),hits?: (Int_comparison_exp | null),hits_spotted?: (Int_comparison_exp | null),match_id?: (uuid_comparison_exp | null),shots?: (Int_comparison_exp | null),shots_spotted?: (Int_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),weapon_class?: (String_comparison_exp | null)} + + +/** input type for inserting data into table "player_weapon_stats_v" */ +export interface player_weapon_stats_v_insert_input {first_bullet_hits?: (Scalars['Int'] | null),first_bullet_shots?: (Scalars['Int'] | null),hits?: (Scalars['Int'] | null),hits_spotted?: (Scalars['Int'] | null),match_id?: (Scalars['uuid'] | null),shots?: (Scalars['Int'] | null),shots_spotted?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null),weapon_class?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface player_weapon_stats_v_max_fieldsGenqlSelection{ + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + hits?: boolean | number + hits_spotted?: boolean | number + match_id?: boolean | number + shots?: boolean | number + shots_spotted?: boolean | number + steam_id?: boolean | number + weapon_class?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "player_weapon_stats_v" */ +export interface player_weapon_stats_v_max_order_by {first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),hits?: (order_by | null),hits_spotted?: (order_by | null),match_id?: (order_by | null),shots?: (order_by | null),shots_spotted?: (order_by | null),steam_id?: (order_by | null),weapon_class?: (order_by | null)} + + +/** aggregate min on columns */ +export interface player_weapon_stats_v_min_fieldsGenqlSelection{ + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + hits?: boolean | number + hits_spotted?: boolean | number + match_id?: boolean | number + shots?: boolean | number + shots_spotted?: boolean | number + steam_id?: boolean | number + weapon_class?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "player_weapon_stats_v" */ +export interface player_weapon_stats_v_min_order_by {first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),hits?: (order_by | null),hits_spotted?: (order_by | null),match_id?: (order_by | null),shots?: (order_by | null),shots_spotted?: (order_by | null),steam_id?: (order_by | null),weapon_class?: (order_by | null)} + + +/** Ordering options when selecting data from "player_weapon_stats_v". */ +export interface player_weapon_stats_v_order_by {first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),hits?: (order_by | null),hits_spotted?: (order_by | null),match_id?: (order_by | null),shots?: (order_by | null),shots_spotted?: (order_by | null),steam_id?: (order_by | null),weapon_class?: (order_by | null)} + + +/** aggregate stddev on columns */ +export interface player_weapon_stats_v_stddev_fieldsGenqlSelection{ + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + hits?: boolean | number + hits_spotted?: boolean | number + shots?: boolean | number + shots_spotted?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "player_weapon_stats_v" */ +export interface player_weapon_stats_v_stddev_order_by {first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),hits?: (order_by | null),hits_spotted?: (order_by | null),shots?: (order_by | null),shots_spotted?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface player_weapon_stats_v_stddev_pop_fieldsGenqlSelection{ + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + hits?: boolean | number + hits_spotted?: boolean | number + shots?: boolean | number + shots_spotted?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "player_weapon_stats_v" */ +export interface player_weapon_stats_v_stddev_pop_order_by {first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),hits?: (order_by | null),hits_spotted?: (order_by | null),shots?: (order_by | null),shots_spotted?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface player_weapon_stats_v_stddev_samp_fieldsGenqlSelection{ + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + hits?: boolean | number + hits_spotted?: boolean | number + shots?: boolean | number + shots_spotted?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "player_weapon_stats_v" */ +export interface player_weapon_stats_v_stddev_samp_order_by {first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),hits?: (order_by | null),hits_spotted?: (order_by | null),shots?: (order_by | null),shots_spotted?: (order_by | null),steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "player_weapon_stats_v" */ +export interface player_weapon_stats_v_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: player_weapon_stats_v_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface player_weapon_stats_v_stream_cursor_value_input {first_bullet_hits?: (Scalars['Int'] | null),first_bullet_shots?: (Scalars['Int'] | null),hits?: (Scalars['Int'] | null),hits_spotted?: (Scalars['Int'] | null),match_id?: (Scalars['uuid'] | null),shots?: (Scalars['Int'] | null),shots_spotted?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null),weapon_class?: (Scalars['String'] | null)} + + +/** aggregate sum on columns */ +export interface player_weapon_stats_v_sum_fieldsGenqlSelection{ + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + hits?: boolean | number + hits_spotted?: boolean | number + shots?: boolean | number + shots_spotted?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "player_weapon_stats_v" */ +export interface player_weapon_stats_v_sum_order_by {first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),hits?: (order_by | null),hits_spotted?: (order_by | null),shots?: (order_by | null),shots_spotted?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate var_pop on columns */ +export interface player_weapon_stats_v_var_pop_fieldsGenqlSelection{ + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + hits?: boolean | number + hits_spotted?: boolean | number + shots?: boolean | number + shots_spotted?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "player_weapon_stats_v" */ +export interface player_weapon_stats_v_var_pop_order_by {first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),hits?: (order_by | null),hits_spotted?: (order_by | null),shots?: (order_by | null),shots_spotted?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface player_weapon_stats_v_var_samp_fieldsGenqlSelection{ + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + hits?: boolean | number + hits_spotted?: boolean | number + shots?: boolean | number + shots_spotted?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "player_weapon_stats_v" */ +export interface player_weapon_stats_v_var_samp_order_by {first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),hits?: (order_by | null),hits_spotted?: (order_by | null),shots?: (order_by | null),shots_spotted?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface player_weapon_stats_v_variance_fieldsGenqlSelection{ + first_bullet_hits?: boolean | number + first_bullet_shots?: boolean | number + hits?: boolean | number + hits_spotted?: boolean | number + shots?: boolean | number + shots_spotted?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "player_weapon_stats_v" */ +export interface player_weapon_stats_v_variance_order_by {first_bullet_hits?: (order_by | null),first_bullet_shots?: (order_by | null),hits?: (order_by | null),hits_spotted?: (order_by | null),shots?: (order_by | null),shots_spotted?: (order_by | null),steam_id?: (order_by | null)} + + +/** columns and relationships of "players" */ +export interface playersGenqlSelection{ + /** An array relationship */ + abandoned_matches?: (abandoned_matchesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (abandoned_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?: (abandoned_matches_order_by[] | null), + /** filter the rows returned */ + where?: (abandoned_matches_bool_exp | null)} }) + /** An aggregate relationship */ + abandoned_matches_aggregate?: (abandoned_matches_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (abandoned_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?: (abandoned_matches_order_by[] | null), + /** filter the rows returned */ + where?: (abandoned_matches_bool_exp | null)} }) + /** An array relationship */ + aim_weapon_stats?: (player_aim_weapon_statsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_aim_weapon_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?: (player_aim_weapon_stats_order_by[] | null), + /** filter the rows returned */ + where?: (player_aim_weapon_stats_bool_exp | null)} }) + /** An aggregate relationship */ + aim_weapon_stats_aggregate?: (player_aim_weapon_stats_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_aim_weapon_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?: (player_aim_weapon_stats_order_by[] | null), + /** filter the rows returned */ + where?: (player_aim_weapon_stats_bool_exp | null)} }) + /** An array relationship */ + assists?: (player_assistsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_assists_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_assists_order_by[] | null), + /** filter the rows returned */ + where?: (player_assists_bool_exp | null)} }) + /** An aggregate relationship */ + assists_aggregate?: (player_assists_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_assists_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_assists_order_by[] | null), + /** filter the rows returned */ + where?: (player_assists_bool_exp | null)} }) + /** An array relationship */ + assited_by_players?: (player_assistsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_assists_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_assists_order_by[] | null), + /** filter the rows returned */ + where?: (player_assists_bool_exp | null)} }) + /** An aggregate relationship */ + assited_by_players_aggregate?: (player_assists_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_assists_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_assists_order_by[] | null), + /** filter the rows returned */ + where?: (player_assists_bool_exp | null)} }) + avatar_url?: boolean | number + /** 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)} }) + /** A computed field, executes function "banned_until" */ + banned_until?: boolean | number + /** An array relationship */ + coach_lineups?: (match_lineupsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_lineups_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_lineups_order_by[] | null), + /** filter the rows returned */ + where?: (match_lineups_bool_exp | null)} }) + /** An aggregate relationship */ + coach_lineups_aggregate?: (match_lineups_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_lineups_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_lineups_order_by[] | null), + /** filter the rows returned */ + where?: (match_lineups_bool_exp | null)} }) + country?: boolean | number + created_at?: boolean | number + /** A computed field, executes function "get_player_current_lobby_id" */ + current_lobby_id?: boolean | number + custom_avatar_url?: boolean | number + /** An array relationship */ + damage_dealt?: (player_damagesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_damages_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_damages_order_by[] | null), + /** filter the rows returned */ + where?: (player_damages_bool_exp | null)} }) + /** An aggregate relationship */ + damage_dealt_aggregate?: (player_damages_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_damages_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_damages_order_by[] | null), + /** filter the rows returned */ + where?: (player_damages_bool_exp | null)} }) + /** An array relationship */ + damage_taken?: (player_damagesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_damages_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_damages_order_by[] | null), + /** filter the rows returned */ + where?: (player_damages_bool_exp | null)} }) + /** An aggregate relationship */ + damage_taken_aggregate?: (player_damages_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_damages_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_damages_order_by[] | null), + /** filter the rows returned */ + where?: (player_damages_bool_exp | null)} }) + days_since_last_ban?: boolean | number + /** An array relationship */ + deaths?: (player_killsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_kills_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_kills_order_by[] | null), + /** filter the rows returned */ + where?: (player_kills_bool_exp | null)} }) + /** An aggregate relationship */ + deaths_aggregate?: (player_kills_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_kills_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_kills_order_by[] | null), + /** filter the rows returned */ + where?: (player_kills_bool_exp | null)} }) + discord_id?: boolean | number + /** An array relationship */ + draft_game_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 */ + draft_game_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)} }) + /** A computed field, executes function "get_player_elo" */ + elo?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number + /** An array relationship */ + elo_history?: (v_player_eloGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_elo_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_elo_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_elo_bool_exp | null)} }) + /** An aggregate relationship */ + elo_history_aggregate?: (v_player_elo_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_elo_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_elo_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_elo_bool_exp | null)} }) + faceit_elo?: boolean | number + faceit_nickname?: boolean | number + faceit_player_id?: boolean | number + /** An array relationship */ + faceit_rank_history?: (player_faceit_rank_historyGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_faceit_rank_history_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_faceit_rank_history_order_by[] | null), + /** filter the rows returned */ + where?: (player_faceit_rank_history_bool_exp | null)} }) + /** An aggregate relationship */ + faceit_rank_history_aggregate?: (player_faceit_rank_history_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_faceit_rank_history_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_faceit_rank_history_order_by[] | null), + /** filter the rows returned */ + where?: (player_faceit_rank_history_bool_exp | null)} }) + faceit_skill_level?: boolean | number + faceit_updated_at?: boolean | number + faceit_url?: boolean | number + /** An array relationship */ + flashed_by_players?: (player_flashesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_flashes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_flashes_order_by[] | null), + /** filter the rows returned */ + where?: (player_flashes_bool_exp | null)} }) + /** An aggregate relationship */ + flashed_by_players_aggregate?: (player_flashes_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_flashes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_flashes_order_by[] | null), + /** filter the rows returned */ + where?: (player_flashes_bool_exp | null)} }) + /** An array relationship */ + flashed_players?: (player_flashesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_flashes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_flashes_order_by[] | null), + /** filter the rows returned */ + where?: (player_flashes_bool_exp | null)} }) + /** An aggregate relationship */ + flashed_players_aggregate?: (player_flashes_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_flashes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_flashes_order_by[] | null), + /** filter the rows returned */ + where?: (player_flashes_bool_exp | null)} }) + /** An array relationship */ + friends?: (my_friendsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (my_friends_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (my_friends_order_by[] | null), + /** filter the rows returned */ + where?: (my_friends_bool_exp | null)} }) + /** An aggregate relationship */ + friends_aggregate?: (my_friends_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (my_friends_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (my_friends_order_by[] | null), + /** filter the rows returned */ + where?: (my_friends_bool_exp | null)} }) + game_ban_count?: boolean | number + /** An array relationship */ + invited_players?: (team_invitesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (team_invites_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_invites_order_by[] | null), + /** filter the rows returned */ + where?: (team_invites_bool_exp | null)} }) + /** An aggregate relationship */ + invited_players_aggregate?: (team_invites_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (team_invites_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_invites_order_by[] | null), + /** filter the rows returned */ + where?: (team_invites_bool_exp | null)} }) + /** A computed field, executes function "is_admin_sanctioned" */ + is_admin_sanctioned?: boolean | number + /** A computed field, executes function "is_banned" */ + is_banned?: boolean | number + /** A computed field, executes function "is_gagged" */ + is_gagged?: boolean | number + /** A computed field, executes function "is_in_another_match" */ + is_in_another_match?: boolean | number + /** A computed field, executes function "is_in_draft" */ + is_in_draft?: boolean | number + /** A computed field, executes function "is_in_lobby" */ + is_in_lobby?: boolean | number + /** A computed field, executes function "is_muted" */ + is_muted?: boolean | number + /** A computed field, executes function "is_registered" */ + is_registered?: boolean | number + /** An array relationship */ + kills?: (player_killsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_kills_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_kills_order_by[] | null), + /** filter the rows returned */ + where?: (player_kills_bool_exp | null)} }) + /** An aggregate relationship */ + kills_aggregate?: (player_kills_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_kills_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_kills_order_by[] | null), + /** filter the rows returned */ + where?: (player_kills_bool_exp | null)} }) + /** An array relationship */ + kills_by_weapons?: (player_kills_by_weaponGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_kills_by_weapon_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_kills_by_weapon_order_by[] | null), + /** filter the rows returned */ + where?: (player_kills_by_weapon_bool_exp | null)} }) + /** An aggregate relationship */ + kills_by_weapons_aggregate?: (player_kills_by_weapon_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_kills_by_weapon_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_kills_by_weapon_order_by[] | null), + /** filter the rows returned */ + where?: (player_kills_by_weapon_bool_exp | null)} }) + language?: boolean | number + last_read_news_at?: boolean | number + last_sign_in_at?: boolean | number + /** An array relationship */ + lobby_players?: (lobby_playersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (lobby_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?: (lobby_players_order_by[] | null), + /** filter the rows returned */ + where?: (lobby_players_bool_exp | null)} }) + /** An aggregate relationship */ + lobby_players_aggregate?: (lobby_players_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (lobby_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?: (lobby_players_order_by[] | null), + /** filter the rows returned */ + where?: (lobby_players_bool_exp | null)} }) + /** A computed field, executes function "get_total_player_losses" */ + losses?: boolean | number + /** A computed field, executes function "get_total_player_losses_competitive" */ + losses_competitive?: boolean | number + /** A computed field, executes function "get_total_player_losses_duel" */ + losses_duel?: boolean | number + /** A computed field, executes function "get_total_player_losses_wingman" */ + losses_wingman?: boolean | number + /** An array relationship */ + match_map_hltv?: (v_player_match_map_hltvGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_match_map_hltv_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_match_map_hltv_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_match_map_hltv_bool_exp | null)} }) + /** An aggregate relationship */ + match_map_hltv_aggregate?: (v_player_match_map_hltv_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_match_map_hltv_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_match_map_hltv_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_match_map_hltv_bool_exp | null)} }) + /** An array relationship */ + match_map_stats?: (player_match_map_statsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_match_map_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?: (player_match_map_stats_order_by[] | null), + /** filter the rows returned */ + where?: (player_match_map_stats_bool_exp | null)} }) + /** An aggregate relationship */ + match_map_stats_aggregate?: (player_match_map_stats_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_match_map_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?: (player_match_map_stats_order_by[] | null), + /** filter the rows returned */ + where?: (player_match_map_stats_bool_exp | null)} }) + /** An array relationship */ + match_stats?: (player_match_stats_vGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_match_stats_v_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_stats_v_order_by[] | null), + /** filter the rows returned */ + where?: (player_match_stats_v_bool_exp | null)} }) + /** An aggregate relationship */ + match_stats_aggregate?: (player_match_stats_v_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_match_stats_v_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_stats_v_order_by[] | null), + /** filter the rows returned */ + where?: (player_match_stats_v_bool_exp | null)} }) + /** A computed field, executes function "get_player_matches" */ + 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)} }) + /** A computed field, executes function "get_player_matchmaking_cooldown" */ + matchmaking_cooldown?: boolean | number + /** An array relationship */ + multi_kills?: (v_player_multi_killsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_multi_kills_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_multi_kills_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_multi_kills_bool_exp | null)} }) + /** An aggregate relationship */ + multi_kills_aggregate?: (v_player_multi_kills_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_multi_kills_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_multi_kills_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_multi_kills_bool_exp | null)} }) + name?: boolean | number + name_registered?: boolean | number + notification_timezone?: boolean | number + /** An array relationship */ + notifications?: (notificationsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (notifications_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (notifications_order_by[] | null), + /** filter the rows returned */ + where?: (notifications_bool_exp | null)} }) + /** An aggregate relationship */ + notifications_aggregate?: (notifications_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (notifications_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (notifications_order_by[] | null), + /** filter the rows returned */ + where?: (notifications_bool_exp | null)} }) + /** An array relationship */ + 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 */ + 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)} }) + /** An array relationship */ + owned_teams?: (teamsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (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?: (teams_order_by[] | null), + /** filter the rows returned */ + where?: (teams_bool_exp | null)} }) + /** An aggregate relationship */ + owned_teams_aggregate?: (teams_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (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?: (teams_order_by[] | null), + /** filter the rows returned */ + where?: (teams_bool_exp | null)} }) + /** A computed field, executes function "get_player_peak_elo" */ + peak_elo?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number + /** An array relationship */ + pending_match_imports?: (pending_match_import_playersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (pending_match_import_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?: (pending_match_import_players_order_by[] | null), + /** filter the rows returned */ + where?: (pending_match_import_players_bool_exp | null)} }) + /** An aggregate relationship */ + pending_match_imports_aggregate?: (pending_match_import_players_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (pending_match_import_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?: (pending_match_import_players_order_by[] | null), + /** filter the rows returned */ + where?: (pending_match_import_players_bool_exp | null)} }) + /** An array relationship */ + player_lineup?: (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 */ + player_lineup_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)} }) + /** An array relationship */ + player_unused_utilities?: (player_unused_utilityGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_unused_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_unused_utility_order_by[] | null), + /** filter the rows returned */ + where?: (player_unused_utility_bool_exp | null)} }) + /** An aggregate relationship */ + player_unused_utilities_aggregate?: (player_unused_utility_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_unused_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_unused_utility_order_by[] | null), + /** filter the rows returned */ + where?: (player_unused_utility_bool_exp | null)} }) + premier_rank?: boolean | number + /** An array relationship */ + premier_rank_history?: (player_premier_rank_historyGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_premier_rank_history_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_premier_rank_history_order_by[] | null), + /** filter the rows returned */ + where?: (player_premier_rank_history_bool_exp | null)} }) + /** An aggregate relationship */ + premier_rank_history_aggregate?: (player_premier_rank_history_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_premier_rank_history_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_premier_rank_history_order_by[] | null), + /** filter the rows returned */ + where?: (player_premier_rank_history_bool_exp | null)} }) + premier_rank_updated_at?: boolean | number + profile_url?: boolean | number + quiet_hours_end?: boolean | number + quiet_hours_start?: boolean | number + role?: boolean | number + roster_image_url?: boolean | number + /** An array relationship */ + sanctions?: (player_sanctionsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_sanctions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_sanctions_order_by[] | null), + /** filter the rows returned */ + where?: (player_sanctions_bool_exp | null)} }) + /** An aggregate relationship */ + sanctions_aggregate?: (player_sanctions_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_sanctions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_sanctions_order_by[] | null), + /** filter the rows returned */ + where?: (player_sanctions_bool_exp | null)} }) + /** An array relationship */ + season_stats?: (player_season_statsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_season_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?: (player_season_stats_order_by[] | null), + /** filter the rows returned */ + where?: (player_season_stats_bool_exp | null)} }) + /** An aggregate relationship */ + season_stats_aggregate?: (player_season_stats_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_season_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?: (player_season_stats_order_by[] | null), + /** filter the rows returned */ + where?: (player_season_stats_bool_exp | null)} }) + show_match_ready_modal?: boolean | number + /** An object relationship */ + stats?: player_statsGenqlSelection + steam_bans_checked_at?: boolean | number + steam_id?: boolean | number + /** An array relationship */ + team_invites?: (team_invitesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (team_invites_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_invites_order_by[] | null), + /** filter the rows returned */ + where?: (team_invites_bool_exp | null)} }) + /** An aggregate relationship */ + team_invites_aggregate?: (team_invites_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (team_invites_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_invites_order_by[] | null), + /** filter the rows returned */ + where?: (team_invites_bool_exp | null)} }) + /** An array relationship */ + team_members?: (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_members_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)} }) + /** A computed field, executes function "get_player_teams" */ + teams?: (teamsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (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?: (teams_order_by[] | null), + /** filter the rows returned */ + where?: (teams_bool_exp | null)} }) + /** A computed field, executes function "get_total_player_matches" */ + total_matches?: boolean | number + /** A computed field, executes function "get_player_tournament_cooldown" */ + tournament_cooldown?: boolean | number + /** An array relationship */ + tournament_organizers?: (tournament_organizersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_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?: (tournament_organizers_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_organizers_bool_exp | null)} }) + /** An aggregate relationship */ + tournament_organizers_aggregate?: (tournament_organizers_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_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?: (tournament_organizers_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_organizers_bool_exp | null)} }) + /** An array relationship */ + tournament_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_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)} }) + /** 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)} }) + /** An array relationship */ + utility_thrown?: (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 */ + utility_thrown_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)} }) + vac_ban_count?: boolean | number + vac_banned?: boolean | number + /** An array relationship */ + weapon_stats?: (player_weapon_stats_vGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_weapon_stats_v_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_weapon_stats_v_order_by[] | null), + /** filter the rows returned */ + where?: (player_weapon_stats_v_bool_exp | null)} }) + /** An aggregate relationship */ + weapon_stats_aggregate?: (player_weapon_stats_v_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_weapon_stats_v_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_weapon_stats_v_order_by[] | null), + /** filter the rows returned */ + where?: (player_weapon_stats_v_bool_exp | null)} }) + /** A computed field, executes function "get_total_player_wins" */ + wins?: boolean | number + /** A computed field, executes function "get_total_player_wins_competitive" */ + wins_competitive?: boolean | number + /** A computed field, executes function "get_total_player_wins_duel" */ + wins_duel?: boolean | number + /** A computed field, executes function "get_total_player_wins_wingman" */ + wins_wingman?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "players" */ +export interface players_aggregateGenqlSelection{ + aggregate?: players_aggregate_fieldsGenqlSelection + nodes?: playersGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "players" */ +export interface players_aggregate_fieldsGenqlSelection{ + avg?: players_avg_fieldsGenqlSelection + count?: { __args: {columns?: (players_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: players_max_fieldsGenqlSelection + min?: players_min_fieldsGenqlSelection + stddev?: players_stddev_fieldsGenqlSelection + stddev_pop?: players_stddev_pop_fieldsGenqlSelection + stddev_samp?: players_stddev_samp_fieldsGenqlSelection + sum?: players_sum_fieldsGenqlSelection + var_pop?: players_var_pop_fieldsGenqlSelection + var_samp?: players_var_samp_fieldsGenqlSelection + variance?: players_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface players_avg_fieldsGenqlSelection{ + days_since_last_ban?: boolean | number + faceit_elo?: boolean | number + faceit_skill_level?: boolean | number + game_ban_count?: boolean | number + /** A computed field, executes function "get_total_player_losses" */ + losses?: boolean | number + /** A computed field, executes function "get_total_player_losses_competitive" */ + losses_competitive?: boolean | number + /** A computed field, executes function "get_total_player_losses_duel" */ + losses_duel?: boolean | number + /** A computed field, executes function "get_total_player_losses_wingman" */ + losses_wingman?: boolean | number + premier_rank?: boolean | number + steam_id?: boolean | number + /** A computed field, executes function "get_total_player_matches" */ + total_matches?: boolean | number + vac_ban_count?: boolean | number + /** A computed field, executes function "get_total_player_wins" */ + wins?: boolean | number + /** A computed field, executes function "get_total_player_wins_competitive" */ + wins_competitive?: boolean | number + /** A computed field, executes function "get_total_player_wins_duel" */ + wins_duel?: boolean | number + /** A computed field, executes function "get_total_player_wins_wingman" */ + wins_wingman?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "players". All fields are combined with a logical 'AND'. */ +export interface players_bool_exp {_and?: (players_bool_exp[] | null),_not?: (players_bool_exp | null),_or?: (players_bool_exp[] | null),abandoned_matches?: (abandoned_matches_bool_exp | null),abandoned_matches_aggregate?: (abandoned_matches_aggregate_bool_exp | null),aim_weapon_stats?: (player_aim_weapon_stats_bool_exp | null),aim_weapon_stats_aggregate?: (player_aim_weapon_stats_aggregate_bool_exp | null),assists?: (player_assists_bool_exp | null),assists_aggregate?: (player_assists_aggregate_bool_exp | null),assited_by_players?: (player_assists_bool_exp | null),assited_by_players_aggregate?: (player_assists_aggregate_bool_exp | null),avatar_url?: (String_comparison_exp | null),awards?: (award_recipients_bool_exp | null),awards_aggregate?: (award_recipients_aggregate_bool_exp | null),banned_until?: (timestamptz_comparison_exp | null),coach_lineups?: (match_lineups_bool_exp | null),coach_lineups_aggregate?: (match_lineups_aggregate_bool_exp | null),country?: (String_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),current_lobby_id?: (uuid_comparison_exp | null),custom_avatar_url?: (String_comparison_exp | null),damage_dealt?: (player_damages_bool_exp | null),damage_dealt_aggregate?: (player_damages_aggregate_bool_exp | null),damage_taken?: (player_damages_bool_exp | null),damage_taken_aggregate?: (player_damages_aggregate_bool_exp | null),days_since_last_ban?: (Int_comparison_exp | null),deaths?: (player_kills_bool_exp | null),deaths_aggregate?: (player_kills_aggregate_bool_exp | null),discord_id?: (String_comparison_exp | null),draft_game_players?: (draft_game_players_bool_exp | null),draft_game_players_aggregate?: (draft_game_players_aggregate_bool_exp | null),elo?: (jsonb_comparison_exp | null),elo_history?: (v_player_elo_bool_exp | null),elo_history_aggregate?: (v_player_elo_aggregate_bool_exp | null),faceit_elo?: (Int_comparison_exp | null),faceit_nickname?: (String_comparison_exp | null),faceit_player_id?: (String_comparison_exp | null),faceit_rank_history?: (player_faceit_rank_history_bool_exp | null),faceit_rank_history_aggregate?: (player_faceit_rank_history_aggregate_bool_exp | null),faceit_skill_level?: (Int_comparison_exp | null),faceit_updated_at?: (timestamptz_comparison_exp | null),faceit_url?: (String_comparison_exp | null),flashed_by_players?: (player_flashes_bool_exp | null),flashed_by_players_aggregate?: (player_flashes_aggregate_bool_exp | null),flashed_players?: (player_flashes_bool_exp | null),flashed_players_aggregate?: (player_flashes_aggregate_bool_exp | null),friends?: (my_friends_bool_exp | null),friends_aggregate?: (my_friends_aggregate_bool_exp | null),game_ban_count?: (Int_comparison_exp | null),invited_players?: (team_invites_bool_exp | null),invited_players_aggregate?: (team_invites_aggregate_bool_exp | null),is_admin_sanctioned?: (Boolean_comparison_exp | null),is_banned?: (Boolean_comparison_exp | null),is_gagged?: (Boolean_comparison_exp | null),is_in_another_match?: (Boolean_comparison_exp | null),is_in_draft?: (Boolean_comparison_exp | null),is_in_lobby?: (Boolean_comparison_exp | null),is_muted?: (Boolean_comparison_exp | null),is_registered?: (Boolean_comparison_exp | null),kills?: (player_kills_bool_exp | null),kills_aggregate?: (player_kills_aggregate_bool_exp | null),kills_by_weapons?: (player_kills_by_weapon_bool_exp | null),kills_by_weapons_aggregate?: (player_kills_by_weapon_aggregate_bool_exp | null),language?: (String_comparison_exp | null),last_read_news_at?: (timestamptz_comparison_exp | null),last_sign_in_at?: (timestamptz_comparison_exp | null),lobby_players?: (lobby_players_bool_exp | null),lobby_players_aggregate?: (lobby_players_aggregate_bool_exp | null),losses?: (Int_comparison_exp | null),losses_competitive?: (Int_comparison_exp | null),losses_duel?: (Int_comparison_exp | null),losses_wingman?: (Int_comparison_exp | null),match_map_hltv?: (v_player_match_map_hltv_bool_exp | null),match_map_hltv_aggregate?: (v_player_match_map_hltv_aggregate_bool_exp | null),match_map_stats?: (player_match_map_stats_bool_exp | null),match_map_stats_aggregate?: (player_match_map_stats_aggregate_bool_exp | null),match_stats?: (player_match_stats_v_bool_exp | null),match_stats_aggregate?: (player_match_stats_v_aggregate_bool_exp | null),matches?: (matches_bool_exp | null),matchmaking_cooldown?: (timestamptz_comparison_exp | null),multi_kills?: (v_player_multi_kills_bool_exp | null),multi_kills_aggregate?: (v_player_multi_kills_aggregate_bool_exp | null),name?: (String_comparison_exp | null),name_registered?: (Boolean_comparison_exp | null),notification_timezone?: (String_comparison_exp | null),notifications?: (notifications_bool_exp | null),notifications_aggregate?: (notifications_aggregate_bool_exp | null),objectives?: (player_objectives_bool_exp | null),objectives_aggregate?: (player_objectives_aggregate_bool_exp | null),owned_teams?: (teams_bool_exp | null),owned_teams_aggregate?: (teams_aggregate_bool_exp | null),peak_elo?: (jsonb_comparison_exp | null),pending_match_imports?: (pending_match_import_players_bool_exp | null),pending_match_imports_aggregate?: (pending_match_import_players_aggregate_bool_exp | null),player_lineup?: (match_lineup_players_bool_exp | null),player_lineup_aggregate?: (match_lineup_players_aggregate_bool_exp | null),player_unused_utilities?: (player_unused_utility_bool_exp | null),player_unused_utilities_aggregate?: (player_unused_utility_aggregate_bool_exp | null),premier_rank?: (Int_comparison_exp | null),premier_rank_history?: (player_premier_rank_history_bool_exp | null),premier_rank_history_aggregate?: (player_premier_rank_history_aggregate_bool_exp | null),premier_rank_updated_at?: (timestamptz_comparison_exp | null),profile_url?: (String_comparison_exp | null),quiet_hours_end?: (time_comparison_exp | null),quiet_hours_start?: (time_comparison_exp | null),role?: (e_player_roles_enum_comparison_exp | null),roster_image_url?: (String_comparison_exp | null),sanctions?: (player_sanctions_bool_exp | null),sanctions_aggregate?: (player_sanctions_aggregate_bool_exp | null),season_stats?: (player_season_stats_bool_exp | null),season_stats_aggregate?: (player_season_stats_aggregate_bool_exp | null),show_match_ready_modal?: (Boolean_comparison_exp | null),stats?: (player_stats_bool_exp | null),steam_bans_checked_at?: (timestamptz_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),team_invites?: (team_invites_bool_exp | null),team_invites_aggregate?: (team_invites_aggregate_bool_exp | null),team_members?: (team_roster_bool_exp | null),team_members_aggregate?: (team_roster_aggregate_bool_exp | null),teams?: (teams_bool_exp | null),total_matches?: (Int_comparison_exp | null),tournament_cooldown?: (timestamptz_comparison_exp | null),tournament_organizers?: (tournament_organizers_bool_exp | null),tournament_organizers_aggregate?: (tournament_organizers_aggregate_bool_exp | null),tournament_rosters?: (tournament_team_roster_bool_exp | null),tournament_rosters_aggregate?: (tournament_team_roster_aggregate_bool_exp | null),tournaments?: (tournaments_bool_exp | null),tournaments_aggregate?: (tournaments_aggregate_bool_exp | null),utility_thrown?: (player_utility_bool_exp | null),utility_thrown_aggregate?: (player_utility_aggregate_bool_exp | null),vac_ban_count?: (Int_comparison_exp | null),vac_banned?: (Boolean_comparison_exp | null),weapon_stats?: (player_weapon_stats_v_bool_exp | null),weapon_stats_aggregate?: (player_weapon_stats_v_aggregate_bool_exp | null),wins?: (Int_comparison_exp | null),wins_competitive?: (Int_comparison_exp | null),wins_duel?: (Int_comparison_exp | null),wins_wingman?: (Int_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "players" */ +export interface players_inc_input {days_since_last_ban?: (Scalars['Int'] | null),faceit_elo?: (Scalars['Int'] | null),faceit_skill_level?: (Scalars['Int'] | null),game_ban_count?: (Scalars['Int'] | null),premier_rank?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null),vac_ban_count?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "players" */ +export interface players_insert_input {abandoned_matches?: (abandoned_matches_arr_rel_insert_input | null),aim_weapon_stats?: (player_aim_weapon_stats_arr_rel_insert_input | null),assists?: (player_assists_arr_rel_insert_input | null),assited_by_players?: (player_assists_arr_rel_insert_input | null),avatar_url?: (Scalars['String'] | null),awards?: (award_recipients_arr_rel_insert_input | null),coach_lineups?: (match_lineups_arr_rel_insert_input | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),custom_avatar_url?: (Scalars['String'] | null),damage_dealt?: (player_damages_arr_rel_insert_input | null),damage_taken?: (player_damages_arr_rel_insert_input | null),days_since_last_ban?: (Scalars['Int'] | null),deaths?: (player_kills_arr_rel_insert_input | null),discord_id?: (Scalars['String'] | null),draft_game_players?: (draft_game_players_arr_rel_insert_input | null),elo_history?: (v_player_elo_arr_rel_insert_input | null),faceit_elo?: (Scalars['Int'] | null),faceit_nickname?: (Scalars['String'] | null),faceit_player_id?: (Scalars['String'] | null),faceit_rank_history?: (player_faceit_rank_history_arr_rel_insert_input | null),faceit_skill_level?: (Scalars['Int'] | null),faceit_updated_at?: (Scalars['timestamptz'] | null),faceit_url?: (Scalars['String'] | null),flashed_by_players?: (player_flashes_arr_rel_insert_input | null),flashed_players?: (player_flashes_arr_rel_insert_input | null),friends?: (my_friends_arr_rel_insert_input | null),game_ban_count?: (Scalars['Int'] | null),invited_players?: (team_invites_arr_rel_insert_input | null),kills?: (player_kills_arr_rel_insert_input | null),kills_by_weapons?: (player_kills_by_weapon_arr_rel_insert_input | null),language?: (Scalars['String'] | null),last_read_news_at?: (Scalars['timestamptz'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),lobby_players?: (lobby_players_arr_rel_insert_input | null),match_map_hltv?: (v_player_match_map_hltv_arr_rel_insert_input | null),match_map_stats?: (player_match_map_stats_arr_rel_insert_input | null),match_stats?: (player_match_stats_v_arr_rel_insert_input | null),multi_kills?: (v_player_multi_kills_arr_rel_insert_input | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),notification_timezone?: (Scalars['String'] | null),notifications?: (notifications_arr_rel_insert_input | null),objectives?: (player_objectives_arr_rel_insert_input | null),owned_teams?: (teams_arr_rel_insert_input | null),pending_match_imports?: (pending_match_import_players_arr_rel_insert_input | null),player_lineup?: (match_lineup_players_arr_rel_insert_input | null),player_unused_utilities?: (player_unused_utility_arr_rel_insert_input | null),premier_rank?: (Scalars['Int'] | null),premier_rank_history?: (player_premier_rank_history_arr_rel_insert_input | null),premier_rank_updated_at?: (Scalars['timestamptz'] | null),profile_url?: (Scalars['String'] | null),quiet_hours_end?: (Scalars['time'] | null),quiet_hours_start?: (Scalars['time'] | null),role?: (e_player_roles_enum | null),roster_image_url?: (Scalars['String'] | null),sanctions?: (player_sanctions_arr_rel_insert_input | null),season_stats?: (player_season_stats_arr_rel_insert_input | null),show_match_ready_modal?: (Scalars['Boolean'] | null),stats?: (player_stats_obj_rel_insert_input | null),steam_bans_checked_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),team_invites?: (team_invites_arr_rel_insert_input | null),team_members?: (team_roster_arr_rel_insert_input | null),tournament_organizers?: (tournament_organizers_arr_rel_insert_input | null),tournament_rosters?: (tournament_team_roster_arr_rel_insert_input | null),tournaments?: (tournaments_arr_rel_insert_input | null),utility_thrown?: (player_utility_arr_rel_insert_input | null),vac_ban_count?: (Scalars['Int'] | null),vac_banned?: (Scalars['Boolean'] | null),weapon_stats?: (player_weapon_stats_v_arr_rel_insert_input | null)} + + +/** aggregate max on columns */ +export interface players_max_fieldsGenqlSelection{ + avatar_url?: boolean | number + /** A computed field, executes function "banned_until" */ + banned_until?: boolean | number + country?: boolean | number + created_at?: boolean | number + /** A computed field, executes function "get_player_current_lobby_id" */ + current_lobby_id?: boolean | number + custom_avatar_url?: boolean | number + days_since_last_ban?: boolean | number + discord_id?: boolean | number + faceit_elo?: boolean | number + faceit_nickname?: boolean | number + faceit_player_id?: boolean | number + faceit_skill_level?: boolean | number + faceit_updated_at?: boolean | number + faceit_url?: boolean | number + game_ban_count?: boolean | number + language?: boolean | number + last_read_news_at?: boolean | number + last_sign_in_at?: boolean | number + /** A computed field, executes function "get_total_player_losses" */ + losses?: boolean | number + /** A computed field, executes function "get_total_player_losses_competitive" */ + losses_competitive?: boolean | number + /** A computed field, executes function "get_total_player_losses_duel" */ + losses_duel?: boolean | number + /** A computed field, executes function "get_total_player_losses_wingman" */ + losses_wingman?: boolean | number + /** A computed field, executes function "get_player_matchmaking_cooldown" */ + matchmaking_cooldown?: boolean | number + name?: boolean | number + notification_timezone?: boolean | number + premier_rank?: boolean | number + premier_rank_updated_at?: boolean | number + profile_url?: boolean | number + roster_image_url?: boolean | number + steam_bans_checked_at?: boolean | number + steam_id?: boolean | number + /** A computed field, executes function "get_total_player_matches" */ + total_matches?: boolean | number + /** A computed field, executes function "get_player_tournament_cooldown" */ + tournament_cooldown?: boolean | number + vac_ban_count?: boolean | number + /** A computed field, executes function "get_total_player_wins" */ + wins?: boolean | number + /** A computed field, executes function "get_total_player_wins_competitive" */ + wins_competitive?: boolean | number + /** A computed field, executes function "get_total_player_wins_duel" */ + wins_duel?: boolean | number + /** A computed field, executes function "get_total_player_wins_wingman" */ + wins_wingman?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface players_min_fieldsGenqlSelection{ + avatar_url?: boolean | number + /** A computed field, executes function "banned_until" */ + banned_until?: boolean | number + country?: boolean | number + created_at?: boolean | number + /** A computed field, executes function "get_player_current_lobby_id" */ + current_lobby_id?: boolean | number + custom_avatar_url?: boolean | number + days_since_last_ban?: boolean | number + discord_id?: boolean | number + faceit_elo?: boolean | number + faceit_nickname?: boolean | number + faceit_player_id?: boolean | number + faceit_skill_level?: boolean | number + faceit_updated_at?: boolean | number + faceit_url?: boolean | number + game_ban_count?: boolean | number + language?: boolean | number + last_read_news_at?: boolean | number + last_sign_in_at?: boolean | number + /** A computed field, executes function "get_total_player_losses" */ + losses?: boolean | number + /** A computed field, executes function "get_total_player_losses_competitive" */ + losses_competitive?: boolean | number + /** A computed field, executes function "get_total_player_losses_duel" */ + losses_duel?: boolean | number + /** A computed field, executes function "get_total_player_losses_wingman" */ + losses_wingman?: boolean | number + /** A computed field, executes function "get_player_matchmaking_cooldown" */ + matchmaking_cooldown?: boolean | number + name?: boolean | number + notification_timezone?: boolean | number + premier_rank?: boolean | number + premier_rank_updated_at?: boolean | number + profile_url?: boolean | number + roster_image_url?: boolean | number + steam_bans_checked_at?: boolean | number + steam_id?: boolean | number + /** A computed field, executes function "get_total_player_matches" */ + total_matches?: boolean | number + /** A computed field, executes function "get_player_tournament_cooldown" */ + tournament_cooldown?: boolean | number + vac_ban_count?: boolean | number + /** A computed field, executes function "get_total_player_wins" */ + wins?: boolean | number + /** A computed field, executes function "get_total_player_wins_competitive" */ + wins_competitive?: boolean | number + /** A computed field, executes function "get_total_player_wins_duel" */ + wins_duel?: boolean | number + /** A computed field, executes function "get_total_player_wins_wingman" */ + wins_wingman?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "players" */ +export interface players_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: playersGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "players" */ +export interface players_obj_rel_insert_input {data: players_insert_input, +/** upsert condition */ +on_conflict?: (players_on_conflict | null)} + + +/** on_conflict condition type for table "players" */ +export interface players_on_conflict {constraint: players_constraint,update_columns?: players_update_column[],where?: (players_bool_exp | null)} + + +/** Ordering options when selecting data from "players". */ +export interface players_order_by {abandoned_matches_aggregate?: (abandoned_matches_aggregate_order_by | null),aim_weapon_stats_aggregate?: (player_aim_weapon_stats_aggregate_order_by | null),assists_aggregate?: (player_assists_aggregate_order_by | null),assited_by_players_aggregate?: (player_assists_aggregate_order_by | null),avatar_url?: (order_by | null),awards_aggregate?: (award_recipients_aggregate_order_by | null),banned_until?: (order_by | null),coach_lineups_aggregate?: (match_lineups_aggregate_order_by | null),country?: (order_by | null),created_at?: (order_by | null),current_lobby_id?: (order_by | null),custom_avatar_url?: (order_by | null),damage_dealt_aggregate?: (player_damages_aggregate_order_by | null),damage_taken_aggregate?: (player_damages_aggregate_order_by | null),days_since_last_ban?: (order_by | null),deaths_aggregate?: (player_kills_aggregate_order_by | null),discord_id?: (order_by | null),draft_game_players_aggregate?: (draft_game_players_aggregate_order_by | null),elo?: (order_by | null),elo_history_aggregate?: (v_player_elo_aggregate_order_by | null),faceit_elo?: (order_by | null),faceit_nickname?: (order_by | null),faceit_player_id?: (order_by | null),faceit_rank_history_aggregate?: (player_faceit_rank_history_aggregate_order_by | null),faceit_skill_level?: (order_by | null),faceit_updated_at?: (order_by | null),faceit_url?: (order_by | null),flashed_by_players_aggregate?: (player_flashes_aggregate_order_by | null),flashed_players_aggregate?: (player_flashes_aggregate_order_by | null),friends_aggregate?: (my_friends_aggregate_order_by | null),game_ban_count?: (order_by | null),invited_players_aggregate?: (team_invites_aggregate_order_by | null),is_admin_sanctioned?: (order_by | null),is_banned?: (order_by | null),is_gagged?: (order_by | null),is_in_another_match?: (order_by | null),is_in_draft?: (order_by | null),is_in_lobby?: (order_by | null),is_muted?: (order_by | null),is_registered?: (order_by | null),kills_aggregate?: (player_kills_aggregate_order_by | null),kills_by_weapons_aggregate?: (player_kills_by_weapon_aggregate_order_by | null),language?: (order_by | null),last_read_news_at?: (order_by | null),last_sign_in_at?: (order_by | null),lobby_players_aggregate?: (lobby_players_aggregate_order_by | null),losses?: (order_by | null),losses_competitive?: (order_by | null),losses_duel?: (order_by | null),losses_wingman?: (order_by | null),match_map_hltv_aggregate?: (v_player_match_map_hltv_aggregate_order_by | null),match_map_stats_aggregate?: (player_match_map_stats_aggregate_order_by | null),match_stats_aggregate?: (player_match_stats_v_aggregate_order_by | null),matches_aggregate?: (matches_aggregate_order_by | null),matchmaking_cooldown?: (order_by | null),multi_kills_aggregate?: (v_player_multi_kills_aggregate_order_by | null),name?: (order_by | null),name_registered?: (order_by | null),notification_timezone?: (order_by | null),notifications_aggregate?: (notifications_aggregate_order_by | null),objectives_aggregate?: (player_objectives_aggregate_order_by | null),owned_teams_aggregate?: (teams_aggregate_order_by | null),peak_elo?: (order_by | null),pending_match_imports_aggregate?: (pending_match_import_players_aggregate_order_by | null),player_lineup_aggregate?: (match_lineup_players_aggregate_order_by | null),player_unused_utilities_aggregate?: (player_unused_utility_aggregate_order_by | null),premier_rank?: (order_by | null),premier_rank_history_aggregate?: (player_premier_rank_history_aggregate_order_by | null),premier_rank_updated_at?: (order_by | null),profile_url?: (order_by | null),quiet_hours_end?: (order_by | null),quiet_hours_start?: (order_by | null),role?: (order_by | null),roster_image_url?: (order_by | null),sanctions_aggregate?: (player_sanctions_aggregate_order_by | null),season_stats_aggregate?: (player_season_stats_aggregate_order_by | null),show_match_ready_modal?: (order_by | null),stats?: (player_stats_order_by | null),steam_bans_checked_at?: (order_by | null),steam_id?: (order_by | null),team_invites_aggregate?: (team_invites_aggregate_order_by | null),team_members_aggregate?: (team_roster_aggregate_order_by | null),teams_aggregate?: (teams_aggregate_order_by | null),total_matches?: (order_by | null),tournament_cooldown?: (order_by | null),tournament_organizers_aggregate?: (tournament_organizers_aggregate_order_by | null),tournament_rosters_aggregate?: (tournament_team_roster_aggregate_order_by | null),tournaments_aggregate?: (tournaments_aggregate_order_by | null),utility_thrown_aggregate?: (player_utility_aggregate_order_by | null),vac_ban_count?: (order_by | null),vac_banned?: (order_by | null),weapon_stats_aggregate?: (player_weapon_stats_v_aggregate_order_by | null),wins?: (order_by | null),wins_competitive?: (order_by | null),wins_duel?: (order_by | null),wins_wingman?: (order_by | null)} + + +/** primary key columns input for table: players */ +export interface players_pk_columns_input {steam_id: Scalars['bigint']} + + +/** input type for updating data in table "players" */ +export interface players_set_input {avatar_url?: (Scalars['String'] | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),custom_avatar_url?: (Scalars['String'] | null),days_since_last_ban?: (Scalars['Int'] | null),discord_id?: (Scalars['String'] | null),faceit_elo?: (Scalars['Int'] | null),faceit_nickname?: (Scalars['String'] | null),faceit_player_id?: (Scalars['String'] | null),faceit_skill_level?: (Scalars['Int'] | null),faceit_updated_at?: (Scalars['timestamptz'] | null),faceit_url?: (Scalars['String'] | null),game_ban_count?: (Scalars['Int'] | null),language?: (Scalars['String'] | null),last_read_news_at?: (Scalars['timestamptz'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),notification_timezone?: (Scalars['String'] | null),premier_rank?: (Scalars['Int'] | null),premier_rank_updated_at?: (Scalars['timestamptz'] | null),profile_url?: (Scalars['String'] | null),quiet_hours_end?: (Scalars['time'] | null),quiet_hours_start?: (Scalars['time'] | null),role?: (e_player_roles_enum | null),roster_image_url?: (Scalars['String'] | null),show_match_ready_modal?: (Scalars['Boolean'] | null),steam_bans_checked_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),vac_ban_count?: (Scalars['Int'] | null),vac_banned?: (Scalars['Boolean'] | null)} + + +/** aggregate stddev on columns */ +export interface players_stddev_fieldsGenqlSelection{ + days_since_last_ban?: boolean | number + faceit_elo?: boolean | number + faceit_skill_level?: boolean | number + game_ban_count?: boolean | number + /** A computed field, executes function "get_total_player_losses" */ + losses?: boolean | number + /** A computed field, executes function "get_total_player_losses_competitive" */ + losses_competitive?: boolean | number + /** A computed field, executes function "get_total_player_losses_duel" */ + losses_duel?: boolean | number + /** A computed field, executes function "get_total_player_losses_wingman" */ + losses_wingman?: boolean | number + premier_rank?: boolean | number + steam_id?: boolean | number + /** A computed field, executes function "get_total_player_matches" */ + total_matches?: boolean | number + vac_ban_count?: boolean | number + /** A computed field, executes function "get_total_player_wins" */ + wins?: boolean | number + /** A computed field, executes function "get_total_player_wins_competitive" */ + wins_competitive?: boolean | number + /** A computed field, executes function "get_total_player_wins_duel" */ + wins_duel?: boolean | number + /** A computed field, executes function "get_total_player_wins_wingman" */ + wins_wingman?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface players_stddev_pop_fieldsGenqlSelection{ + days_since_last_ban?: boolean | number + faceit_elo?: boolean | number + faceit_skill_level?: boolean | number + game_ban_count?: boolean | number + /** A computed field, executes function "get_total_player_losses" */ + losses?: boolean | number + /** A computed field, executes function "get_total_player_losses_competitive" */ + losses_competitive?: boolean | number + /** A computed field, executes function "get_total_player_losses_duel" */ + losses_duel?: boolean | number + /** A computed field, executes function "get_total_player_losses_wingman" */ + losses_wingman?: boolean | number + premier_rank?: boolean | number + steam_id?: boolean | number + /** A computed field, executes function "get_total_player_matches" */ + total_matches?: boolean | number + vac_ban_count?: boolean | number + /** A computed field, executes function "get_total_player_wins" */ + wins?: boolean | number + /** A computed field, executes function "get_total_player_wins_competitive" */ + wins_competitive?: boolean | number + /** A computed field, executes function "get_total_player_wins_duel" */ + wins_duel?: boolean | number + /** A computed field, executes function "get_total_player_wins_wingman" */ + wins_wingman?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface players_stddev_samp_fieldsGenqlSelection{ + days_since_last_ban?: boolean | number + faceit_elo?: boolean | number + faceit_skill_level?: boolean | number + game_ban_count?: boolean | number + /** A computed field, executes function "get_total_player_losses" */ + losses?: boolean | number + /** A computed field, executes function "get_total_player_losses_competitive" */ + losses_competitive?: boolean | number + /** A computed field, executes function "get_total_player_losses_duel" */ + losses_duel?: boolean | number + /** A computed field, executes function "get_total_player_losses_wingman" */ + losses_wingman?: boolean | number + premier_rank?: boolean | number + steam_id?: boolean | number + /** A computed field, executes function "get_total_player_matches" */ + total_matches?: boolean | number + vac_ban_count?: boolean | number + /** A computed field, executes function "get_total_player_wins" */ + wins?: boolean | number + /** A computed field, executes function "get_total_player_wins_competitive" */ + wins_competitive?: boolean | number + /** A computed field, executes function "get_total_player_wins_duel" */ + wins_duel?: boolean | number + /** A computed field, executes function "get_total_player_wins_wingman" */ + wins_wingman?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "players" */ +export interface players_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: players_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface players_stream_cursor_value_input {avatar_url?: (Scalars['String'] | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),custom_avatar_url?: (Scalars['String'] | null),days_since_last_ban?: (Scalars['Int'] | null),discord_id?: (Scalars['String'] | null),faceit_elo?: (Scalars['Int'] | null),faceit_nickname?: (Scalars['String'] | null),faceit_player_id?: (Scalars['String'] | null),faceit_skill_level?: (Scalars['Int'] | null),faceit_updated_at?: (Scalars['timestamptz'] | null),faceit_url?: (Scalars['String'] | null),game_ban_count?: (Scalars['Int'] | null),language?: (Scalars['String'] | null),last_read_news_at?: (Scalars['timestamptz'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),notification_timezone?: (Scalars['String'] | null),premier_rank?: (Scalars['Int'] | null),premier_rank_updated_at?: (Scalars['timestamptz'] | null),profile_url?: (Scalars['String'] | null),quiet_hours_end?: (Scalars['time'] | null),quiet_hours_start?: (Scalars['time'] | null),role?: (e_player_roles_enum | null),roster_image_url?: (Scalars['String'] | null),show_match_ready_modal?: (Scalars['Boolean'] | null),steam_bans_checked_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),vac_ban_count?: (Scalars['Int'] | null),vac_banned?: (Scalars['Boolean'] | null)} + + +/** aggregate sum on columns */ +export interface players_sum_fieldsGenqlSelection{ + days_since_last_ban?: boolean | number + faceit_elo?: boolean | number + faceit_skill_level?: boolean | number + game_ban_count?: boolean | number + /** A computed field, executes function "get_total_player_losses" */ + losses?: boolean | number + /** A computed field, executes function "get_total_player_losses_competitive" */ + losses_competitive?: boolean | number + /** A computed field, executes function "get_total_player_losses_duel" */ + losses_duel?: boolean | number + /** A computed field, executes function "get_total_player_losses_wingman" */ + losses_wingman?: boolean | number + premier_rank?: boolean | number + steam_id?: boolean | number + /** A computed field, executes function "get_total_player_matches" */ + total_matches?: boolean | number + vac_ban_count?: boolean | number + /** A computed field, executes function "get_total_player_wins" */ + wins?: boolean | number + /** A computed field, executes function "get_total_player_wins_competitive" */ + wins_competitive?: boolean | number + /** A computed field, executes function "get_total_player_wins_duel" */ + wins_duel?: boolean | number + /** A computed field, executes function "get_total_player_wins_wingman" */ + wins_wingman?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface players_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (players_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (players_set_input | null), +/** filter the rows which have to be updated */ +where: players_bool_exp} + + +/** aggregate var_pop on columns */ +export interface players_var_pop_fieldsGenqlSelection{ + days_since_last_ban?: boolean | number + faceit_elo?: boolean | number + faceit_skill_level?: boolean | number + game_ban_count?: boolean | number + /** A computed field, executes function "get_total_player_losses" */ + losses?: boolean | number + /** A computed field, executes function "get_total_player_losses_competitive" */ + losses_competitive?: boolean | number + /** A computed field, executes function "get_total_player_losses_duel" */ + losses_duel?: boolean | number + /** A computed field, executes function "get_total_player_losses_wingman" */ + losses_wingman?: boolean | number + premier_rank?: boolean | number + steam_id?: boolean | number + /** A computed field, executes function "get_total_player_matches" */ + total_matches?: boolean | number + vac_ban_count?: boolean | number + /** A computed field, executes function "get_total_player_wins" */ + wins?: boolean | number + /** A computed field, executes function "get_total_player_wins_competitive" */ + wins_competitive?: boolean | number + /** A computed field, executes function "get_total_player_wins_duel" */ + wins_duel?: boolean | number + /** A computed field, executes function "get_total_player_wins_wingman" */ + wins_wingman?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface players_var_samp_fieldsGenqlSelection{ + days_since_last_ban?: boolean | number + faceit_elo?: boolean | number + faceit_skill_level?: boolean | number + game_ban_count?: boolean | number + /** A computed field, executes function "get_total_player_losses" */ + losses?: boolean | number + /** A computed field, executes function "get_total_player_losses_competitive" */ + losses_competitive?: boolean | number + /** A computed field, executes function "get_total_player_losses_duel" */ + losses_duel?: boolean | number + /** A computed field, executes function "get_total_player_losses_wingman" */ + losses_wingman?: boolean | number + premier_rank?: boolean | number + steam_id?: boolean | number + /** A computed field, executes function "get_total_player_matches" */ + total_matches?: boolean | number + vac_ban_count?: boolean | number + /** A computed field, executes function "get_total_player_wins" */ + wins?: boolean | number + /** A computed field, executes function "get_total_player_wins_competitive" */ + wins_competitive?: boolean | number + /** A computed field, executes function "get_total_player_wins_duel" */ + wins_duel?: boolean | number + /** A computed field, executes function "get_total_player_wins_wingman" */ + wins_wingman?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface players_variance_fieldsGenqlSelection{ + days_since_last_ban?: boolean | number + faceit_elo?: boolean | number + faceit_skill_level?: boolean | number + game_ban_count?: boolean | number + /** A computed field, executes function "get_total_player_losses" */ + losses?: boolean | number + /** A computed field, executes function "get_total_player_losses_competitive" */ + losses_competitive?: boolean | number + /** A computed field, executes function "get_total_player_losses_duel" */ + losses_duel?: boolean | number + /** A computed field, executes function "get_total_player_losses_wingman" */ + losses_wingman?: boolean | number + premier_rank?: boolean | number + steam_id?: boolean | number + /** A computed field, executes function "get_total_player_matches" */ + total_matches?: boolean | number + vac_ban_count?: boolean | number + /** A computed field, executes function "get_total_player_wins" */ + wins?: boolean | number + /** A computed field, executes function "get_total_player_wins_competitive" */ + wins_competitive?: boolean | number + /** A computed field, executes function "get_total_player_wins_duel" */ + wins_duel?: boolean | number + /** A computed field, executes function "get_total_player_wins_wingman" */ + wins_wingman?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "plugin_versions" */ +export interface plugin_versionsGenqlSelection{ + min_game_build_id?: boolean | number + published_at?: boolean | number + runtime?: boolean | number + version?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "plugin_versions" */ +export interface plugin_versions_aggregateGenqlSelection{ + aggregate?: plugin_versions_aggregate_fieldsGenqlSelection + nodes?: plugin_versionsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "plugin_versions" */ +export interface plugin_versions_aggregate_fieldsGenqlSelection{ + avg?: plugin_versions_avg_fieldsGenqlSelection + count?: { __args: {columns?: (plugin_versions_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: plugin_versions_max_fieldsGenqlSelection + min?: plugin_versions_min_fieldsGenqlSelection + stddev?: plugin_versions_stddev_fieldsGenqlSelection + stddev_pop?: plugin_versions_stddev_pop_fieldsGenqlSelection + stddev_samp?: plugin_versions_stddev_samp_fieldsGenqlSelection + sum?: plugin_versions_sum_fieldsGenqlSelection + var_pop?: plugin_versions_var_pop_fieldsGenqlSelection + var_samp?: plugin_versions_var_samp_fieldsGenqlSelection + variance?: plugin_versions_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface plugin_versions_avg_fieldsGenqlSelection{ + min_game_build_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "plugin_versions". All fields are combined with a logical 'AND'. */ +export interface plugin_versions_bool_exp {_and?: (plugin_versions_bool_exp[] | null),_not?: (plugin_versions_bool_exp | null),_or?: (plugin_versions_bool_exp[] | null),min_game_build_id?: (Int_comparison_exp | null),published_at?: (timestamptz_comparison_exp | null),runtime?: (e_plugin_runtimes_enum_comparison_exp | null),version?: (String_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "plugin_versions" */ +export interface plugin_versions_inc_input {min_game_build_id?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "plugin_versions" */ +export interface plugin_versions_insert_input {min_game_build_id?: (Scalars['Int'] | null),published_at?: (Scalars['timestamptz'] | null),runtime?: (e_plugin_runtimes_enum | null),version?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface plugin_versions_max_fieldsGenqlSelection{ + min_game_build_id?: boolean | number + published_at?: boolean | number + version?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface plugin_versions_min_fieldsGenqlSelection{ + min_game_build_id?: boolean | number + published_at?: boolean | number + version?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "plugin_versions" */ +export interface plugin_versions_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: plugin_versionsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "plugin_versions" */ +export interface plugin_versions_on_conflict {constraint: plugin_versions_constraint,update_columns?: plugin_versions_update_column[],where?: (plugin_versions_bool_exp | null)} + + +/** Ordering options when selecting data from "plugin_versions". */ +export interface plugin_versions_order_by {min_game_build_id?: (order_by | null),published_at?: (order_by | null),runtime?: (order_by | null),version?: (order_by | null)} + + +/** primary key columns input for table: plugin_versions */ +export interface plugin_versions_pk_columns_input {runtime: e_plugin_runtimes_enum,version: Scalars['String']} + + +/** input type for updating data in table "plugin_versions" */ +export interface plugin_versions_set_input {min_game_build_id?: (Scalars['Int'] | null),published_at?: (Scalars['timestamptz'] | null),runtime?: (e_plugin_runtimes_enum | null),version?: (Scalars['String'] | null)} + + +/** aggregate stddev on columns */ +export interface plugin_versions_stddev_fieldsGenqlSelection{ + min_game_build_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface plugin_versions_stddev_pop_fieldsGenqlSelection{ + min_game_build_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface plugin_versions_stddev_samp_fieldsGenqlSelection{ + min_game_build_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "plugin_versions" */ +export interface plugin_versions_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: 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 plugin_versions_stream_cursor_value_input {min_game_build_id?: (Scalars['Int'] | null),published_at?: (Scalars['timestamptz'] | null),runtime?: (e_plugin_runtimes_enum | null),version?: (Scalars['String'] | null)} + + +/** aggregate sum on columns */ +export interface plugin_versions_sum_fieldsGenqlSelection{ + min_game_build_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface plugin_versions_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (plugin_versions_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (plugin_versions_set_input | null), +/** filter the rows which have to be updated */ +where: plugin_versions_bool_exp} + + +/** aggregate var_pop on columns */ +export interface plugin_versions_var_pop_fieldsGenqlSelection{ + min_game_build_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface plugin_versions_var_samp_fieldsGenqlSelection{ + min_game_build_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface plugin_versions_variance_fieldsGenqlSelection{ + min_game_build_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "push_subscriptions" */ +export interface push_subscriptionsGenqlSelection{ + auth?: boolean | number + created_at?: boolean | number + endpoint?: boolean | number + id?: boolean | number + last_used_at?: boolean | number + p256dh?: boolean | number + steam_id?: boolean | number + user_agent?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "push_subscriptions" */ +export interface push_subscriptions_aggregateGenqlSelection{ + aggregate?: push_subscriptions_aggregate_fieldsGenqlSelection + nodes?: push_subscriptionsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "push_subscriptions" */ +export interface push_subscriptions_aggregate_fieldsGenqlSelection{ + avg?: push_subscriptions_avg_fieldsGenqlSelection + count?: { __args: {columns?: (push_subscriptions_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: push_subscriptions_max_fieldsGenqlSelection + min?: push_subscriptions_min_fieldsGenqlSelection + stddev?: push_subscriptions_stddev_fieldsGenqlSelection + stddev_pop?: push_subscriptions_stddev_pop_fieldsGenqlSelection + stddev_samp?: push_subscriptions_stddev_samp_fieldsGenqlSelection + sum?: push_subscriptions_sum_fieldsGenqlSelection + var_pop?: push_subscriptions_var_pop_fieldsGenqlSelection + var_samp?: push_subscriptions_var_samp_fieldsGenqlSelection + variance?: push_subscriptions_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface push_subscriptions_avg_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "push_subscriptions". All fields are combined with a logical 'AND'. */ +export interface push_subscriptions_bool_exp {_and?: (push_subscriptions_bool_exp[] | null),_not?: (push_subscriptions_bool_exp | null),_or?: (push_subscriptions_bool_exp[] | null),auth?: (String_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),endpoint?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),last_used_at?: (timestamptz_comparison_exp | null),p256dh?: (String_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),user_agent?: (String_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "push_subscriptions" */ +export interface push_subscriptions_inc_input {steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "push_subscriptions" */ +export interface push_subscriptions_insert_input {auth?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),endpoint?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),last_used_at?: (Scalars['timestamptz'] | null),p256dh?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null),user_agent?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface push_subscriptions_max_fieldsGenqlSelection{ + auth?: boolean | number + created_at?: boolean | number + endpoint?: boolean | number + id?: boolean | number + last_used_at?: boolean | number + p256dh?: boolean | number + steam_id?: boolean | number + user_agent?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface push_subscriptions_min_fieldsGenqlSelection{ + auth?: boolean | number + created_at?: boolean | number + endpoint?: boolean | number + id?: boolean | number + last_used_at?: boolean | number + p256dh?: boolean | number + steam_id?: boolean | number + user_agent?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "push_subscriptions" */ +export interface push_subscriptions_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: push_subscriptionsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "push_subscriptions" */ +export interface push_subscriptions_on_conflict {constraint: push_subscriptions_constraint,update_columns?: push_subscriptions_update_column[],where?: (push_subscriptions_bool_exp | null)} + + +/** Ordering options when selecting data from "push_subscriptions". */ +export interface push_subscriptions_order_by {auth?: (order_by | null),created_at?: (order_by | null),endpoint?: (order_by | null),id?: (order_by | null),last_used_at?: (order_by | null),p256dh?: (order_by | null),steam_id?: (order_by | null),user_agent?: (order_by | null)} + + +/** primary key columns input for table: push_subscriptions */ +export interface push_subscriptions_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "push_subscriptions" */ +export interface push_subscriptions_set_input {auth?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),endpoint?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),last_used_at?: (Scalars['timestamptz'] | null),p256dh?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null),user_agent?: (Scalars['String'] | null)} + + +/** aggregate stddev on columns */ +export interface push_subscriptions_stddev_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface push_subscriptions_stddev_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface push_subscriptions_stddev_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "push_subscriptions" */ +export interface push_subscriptions_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: push_subscriptions_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface push_subscriptions_stream_cursor_value_input {auth?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),endpoint?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),last_used_at?: (Scalars['timestamptz'] | null),p256dh?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null),user_agent?: (Scalars['String'] | null)} + + +/** aggregate sum on columns */ +export interface push_subscriptions_sum_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface push_subscriptions_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (push_subscriptions_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (push_subscriptions_set_input | null), +/** filter the rows which have to be updated */ +where: push_subscriptions_bool_exp} + + +/** aggregate var_pop on columns */ +export interface push_subscriptions_var_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface push_subscriptions_var_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface push_subscriptions_variance_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface query_rootGenqlSelection{ + /** fetch data from the table: "_map_pool" */ + _map_pool?: (_map_poolGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (_map_pool_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (_map_pool_order_by[] | null), + /** filter the rows returned */ + where?: (_map_pool_bool_exp | null)} }) + /** fetch aggregated fields from the table: "_map_pool" */ + _map_pool_aggregate?: (_map_pool_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (_map_pool_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (_map_pool_order_by[] | null), + /** filter the rows returned */ + where?: (_map_pool_bool_exp | null)} }) + /** fetch data from the table: "_map_pool" using primary key columns */ + _map_pool_by_pk?: (_map_poolGenqlSelection & { __args: {map_id: Scalars['uuid'], map_pool_id: Scalars['uuid']} }) + /** An array relationship */ + abandoned_matches?: (abandoned_matchesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (abandoned_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?: (abandoned_matches_order_by[] | null), + /** filter the rows returned */ + where?: (abandoned_matches_bool_exp | null)} }) + /** An aggregate relationship */ + abandoned_matches_aggregate?: (abandoned_matches_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (abandoned_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?: (abandoned_matches_order_by[] | null), + /** filter the rows returned */ + where?: (abandoned_matches_bool_exp | null)} }) + /** fetch data from the table: "abandoned_matches" using primary key columns */ + abandoned_matches_by_pk?: (abandoned_matchesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** Ask which sightlines a playbook's smokes leave open */ + analyseUtilityPlaybookCoverage?: (UtilityPlaybookCoverageOutputGenqlSelection & { __args: {pairs: UtilitySightlinePairInput[], playbook_id: Scalars['uuid']} }) + /** fetch data from the table: "api_keys" */ + api_keys?: (api_keysGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (api_keys_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (api_keys_order_by[] | null), + /** filter the rows returned */ + where?: (api_keys_bool_exp | null)} }) + /** fetch aggregated fields from the table: "api_keys" */ + api_keys_aggregate?: (api_keys_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (api_keys_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (api_keys_order_by[] | null), + /** filter the rows returned */ + where?: (api_keys_bool_exp | null)} }) + /** fetch data from the table: "api_keys" using primary key columns */ + api_keys_by_pk?: (api_keysGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "award_recipients" */ + award_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)} }) + /** fetch aggregated fields from the table: "award_recipients" */ + award_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)} }) + /** fetch data from the table: "award_recipients" using primary key columns */ + award_recipients_by_pk?: (award_recipientsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "awards" */ + awards?: (awardsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (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?: (awards_order_by[] | null), + /** filter the rows returned */ + where?: (awards_bool_exp | null)} }) + /** fetch aggregated fields from the table: "awards" */ + awards_aggregate?: (awards_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (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?: (awards_order_by[] | null), + /** filter the rows returned */ + where?: (awards_bool_exp | null)} }) + /** fetch data from the table: "awards" using primary key columns */ + awards_by_pk?: (awardsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "chat_read_state" */ + chat_read_state?: (chat_read_stateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (chat_read_state_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (chat_read_state_order_by[] | null), + /** filter the rows returned */ + where?: (chat_read_state_bool_exp | null)} }) + /** fetch aggregated fields from the table: "chat_read_state" */ + chat_read_state_aggregate?: (chat_read_state_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (chat_read_state_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (chat_read_state_order_by[] | null), + /** filter the rows returned */ + where?: (chat_read_state_bool_exp | null)} }) + /** fetch data from the table: "chat_read_state" using primary key columns */ + chat_read_state_by_pk?: (chat_read_stateGenqlSelection & { __args: {steam_id: Scalars['bigint'], thread: Scalars['String']} }) + /** Ask whether a lineup's smoke makes an angle one-way */ + checkUtilityOneWay?: (UtilityOneWayOutputGenqlSelection & { __args: {lineup_id: Scalars['uuid'], pairs: UtilitySightlinePairInput[]} }) + /** Ask whether a lineup's smoke blocks a set of sightlines */ + checkUtilitySightlines?: (UtilitySightlineOutputGenqlSelection & { __args: {lineup_id: Scalars['uuid'], pairs: UtilitySightlinePairInput[], threshold?: (Scalars['Float'] | null)} }) + /** An array relationship */ + clip_render_jobs?: (clip_render_jobsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (clip_render_jobs_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (clip_render_jobs_order_by[] | null), + /** filter the rows returned */ + where?: (clip_render_jobs_bool_exp | null)} }) + /** An aggregate relationship */ + clip_render_jobs_aggregate?: (clip_render_jobs_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (clip_render_jobs_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (clip_render_jobs_order_by[] | null), + /** filter the rows returned */ + where?: (clip_render_jobs_bool_exp | null)} }) + /** fetch data from the table: "clip_render_jobs" using primary key columns */ + clip_render_jobs_by_pk?: (clip_render_jobsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "custom_pages" */ + custom_pages?: (custom_pagesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (custom_pages_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (custom_pages_order_by[] | null), + /** filter the rows returned */ + where?: (custom_pages_bool_exp | null)} }) + /** fetch aggregated fields from the table: "custom_pages" */ + custom_pages_aggregate?: (custom_pages_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (custom_pages_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (custom_pages_order_by[] | null), + /** filter the rows returned */ + where?: (custom_pages_bool_exp | null)} }) + /** fetch data from the table: "custom_pages" using primary key columns */ + custom_pages_by_pk?: (custom_pagesGenqlSelection & { __args: {id: Scalars['uuid']} }) + dbStats?: DbStatsGenqlSelection + /** fetch data from the table: "db_backups" */ + db_backups?: (db_backupsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (db_backups_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (db_backups_order_by[] | null), + /** filter the rows returned */ + where?: (db_backups_bool_exp | null)} }) + /** fetch aggregated fields from the table: "db_backups" */ + db_backups_aggregate?: (db_backups_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (db_backups_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (db_backups_order_by[] | null), + /** filter the rows returned */ + where?: (db_backups_bool_exp | null)} }) + /** fetch data from the table: "db_backups" using primary key columns */ + db_backups_by_pk?: (db_backupsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "direct_conversations" */ + direct_conversations?: (direct_conversationsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (direct_conversations_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (direct_conversations_order_by[] | null), + /** filter the rows returned */ + where?: (direct_conversations_bool_exp | null)} }) + /** fetch aggregated fields from the table: "direct_conversations" */ + direct_conversations_aggregate?: (direct_conversations_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (direct_conversations_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (direct_conversations_order_by[] | null), + /** filter the rows returned */ + where?: (direct_conversations_bool_exp | null)} }) + /** fetch data from the table: "direct_conversations" using primary key columns */ + direct_conversations_by_pk?: (direct_conversationsGenqlSelection & { __args: {room_id: Scalars['String'], steam_id: Scalars['bigint']} }) + /** fetch data from the table: "direct_messages" */ + direct_messages?: (direct_messagesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (direct_messages_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (direct_messages_order_by[] | null), + /** filter the rows returned */ + where?: (direct_messages_bool_exp | null)} }) + /** fetch aggregated fields from the table: "direct_messages" */ + direct_messages_aggregate?: (direct_messages_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (direct_messages_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (direct_messages_order_by[] | null), + /** filter the rows returned */ + where?: (direct_messages_bool_exp | null)} }) + /** fetch data from the table: "direct_messages" using primary key columns */ + direct_messages_by_pk?: (direct_messagesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "draft_game_picks" */ + draft_game_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)} }) + /** fetch aggregated fields from the table: "draft_game_picks" */ + draft_game_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)} }) + /** fetch data from the table: "draft_game_picks" using primary key columns */ + draft_game_picks_by_pk?: (draft_game_picksGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** An array relationship */ + draft_game_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 */ + draft_game_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)} }) + /** fetch data from the table: "draft_game_players" using primary key columns */ + draft_game_players_by_pk?: (draft_game_playersGenqlSelection & { __args: {draft_game_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) + /** An array relationship */ + draft_games?: (draft_gamesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_games_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_games_order_by[] | null), + /** filter the rows returned */ + where?: (draft_games_bool_exp | null)} }) + /** An aggregate relationship */ + draft_games_aggregate?: (draft_games_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_games_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_games_order_by[] | null), + /** filter the rows returned */ + where?: (draft_games_bool_exp | null)} }) + /** fetch data from the table: "draft_games" using primary key columns */ + draft_games_by_pk?: (draft_gamesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "e_award_sources" */ + e_award_sources?: (e_award_sourcesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_award_sources_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_award_sources_order_by[] | null), + /** filter the rows returned */ + where?: (e_award_sources_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_award_sources" */ + e_award_sources_aggregate?: (e_award_sources_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_award_sources_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_award_sources_order_by[] | null), + /** filter the rows returned */ + where?: (e_award_sources_bool_exp | null)} }) + /** fetch data from the table: "e_award_sources" using primary key columns */ + e_award_sources_by_pk?: (e_award_sourcesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_award_tiers" */ + e_award_tiers?: (e_award_tiersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_award_tiers_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_award_tiers_order_by[] | null), + /** filter the rows returned */ + where?: (e_award_tiers_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_award_tiers" */ + e_award_tiers_aggregate?: (e_award_tiers_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_award_tiers_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_award_tiers_order_by[] | null), + /** filter the rows returned */ + where?: (e_award_tiers_bool_exp | null)} }) + /** fetch data from the table: "e_award_tiers" using primary key columns */ + e_award_tiers_by_pk?: (e_award_tiersGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_check_in_settings" */ + e_check_in_settings?: (e_check_in_settingsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_check_in_settings_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_check_in_settings_order_by[] | null), + /** filter the rows returned */ + where?: (e_check_in_settings_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_check_in_settings" */ + e_check_in_settings_aggregate?: (e_check_in_settings_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_check_in_settings_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_check_in_settings_order_by[] | null), + /** filter the rows returned */ + where?: (e_check_in_settings_bool_exp | null)} }) + /** fetch data from the table: "e_check_in_settings" using primary key columns */ + e_check_in_settings_by_pk?: (e_check_in_settingsGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_draft_game_captain_selection" */ + e_draft_game_captain_selection?: (e_draft_game_captain_selectionGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_captain_selection_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_draft_game_captain_selection_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_captain_selection_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_draft_game_captain_selection" */ + e_draft_game_captain_selection_aggregate?: (e_draft_game_captain_selection_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_captain_selection_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_draft_game_captain_selection_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_captain_selection_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_captain_selection" using primary key columns */ + e_draft_game_captain_selection_by_pk?: (e_draft_game_captain_selectionGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_draft_game_draft_order" */ + e_draft_game_draft_order?: (e_draft_game_draft_orderGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_draft_order_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_draft_game_draft_order_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_draft_order_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_draft_game_draft_order" */ + e_draft_game_draft_order_aggregate?: (e_draft_game_draft_order_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_draft_order_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_draft_game_draft_order_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_draft_order_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_draft_order" using primary key columns */ + e_draft_game_draft_order_by_pk?: (e_draft_game_draft_orderGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_draft_game_mode" */ + e_draft_game_mode?: (e_draft_game_modeGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_mode_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_draft_game_mode_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_mode_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_draft_game_mode" */ + e_draft_game_mode_aggregate?: (e_draft_game_mode_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_mode_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_draft_game_mode_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_mode_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_mode" using primary key columns */ + e_draft_game_mode_by_pk?: (e_draft_game_modeGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_draft_game_player_status" */ + e_draft_game_player_status?: (e_draft_game_player_statusGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_player_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_draft_game_player_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_player_status_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_draft_game_player_status" */ + e_draft_game_player_status_aggregate?: (e_draft_game_player_status_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_player_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_draft_game_player_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_player_status_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_player_status" using primary key columns */ + e_draft_game_player_status_by_pk?: (e_draft_game_player_statusGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_draft_game_status" */ + e_draft_game_status?: (e_draft_game_statusGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_draft_game_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_status_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_draft_game_status" */ + e_draft_game_status_aggregate?: (e_draft_game_status_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_draft_game_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_status_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_status" using primary key columns */ + e_draft_game_status_by_pk?: (e_draft_game_statusGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_event_media_access" */ + e_event_media_access?: (e_event_media_accessGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_event_media_access_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_event_media_access_order_by[] | null), + /** filter the rows returned */ + where?: (e_event_media_access_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_event_media_access" */ + e_event_media_access_aggregate?: (e_event_media_access_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_event_media_access_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_event_media_access_order_by[] | null), + /** filter the rows returned */ + where?: (e_event_media_access_bool_exp | null)} }) + /** fetch data from the table: "e_event_media_access" using primary key columns */ + e_event_media_access_by_pk?: (e_event_media_accessGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_event_visibility" */ + e_event_visibility?: (e_event_visibilityGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_event_visibility_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_event_visibility_order_by[] | null), + /** filter the rows returned */ + where?: (e_event_visibility_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_event_visibility" */ + e_event_visibility_aggregate?: (e_event_visibility_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_event_visibility_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_event_visibility_order_by[] | null), + /** filter the rows returned */ + where?: (e_event_visibility_bool_exp | null)} }) + /** fetch data from the table: "e_event_visibility" using primary key columns */ + e_event_visibility_by_pk?: (e_event_visibilityGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_friend_status" */ + e_friend_status?: (e_friend_statusGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_friend_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_friend_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_friend_status_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_friend_status" */ + e_friend_status_aggregate?: (e_friend_status_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_friend_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_friend_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_friend_status_bool_exp | null)} }) + /** fetch data from the table: "e_friend_status" using primary key columns */ + e_friend_status_by_pk?: (e_friend_statusGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_game_cfg_types" */ + e_game_cfg_types?: (e_game_cfg_typesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_game_cfg_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_cfg_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_game_cfg_types_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_game_cfg_types" */ + e_game_cfg_types_aggregate?: (e_game_cfg_types_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_game_cfg_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_cfg_types_order_by[] | null), + /** filter the rows returned */ + 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 */ + distinct_on?: (e_game_server_node_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_server_node_statuses_order_by[] | null), + /** filter the rows returned */ + where?: (e_game_server_node_statuses_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_game_server_node_statuses" */ + e_game_server_node_statuses_aggregate?: (e_game_server_node_statuses_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_game_server_node_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_server_node_statuses_order_by[] | null), + /** filter the rows returned */ + where?: (e_game_server_node_statuses_bool_exp | null)} }) + /** fetch data from the table: "e_game_server_node_statuses" using primary key columns */ + e_game_server_node_statuses_by_pk?: (e_game_server_node_statusesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_league_movement_types" */ + e_league_movement_types?: (e_league_movement_typesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_league_movement_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_league_movement_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_league_movement_types_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_league_movement_types" */ + e_league_movement_types_aggregate?: (e_league_movement_types_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_league_movement_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_league_movement_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_league_movement_types_bool_exp | null)} }) + /** fetch data from the table: "e_league_movement_types" using primary key columns */ + e_league_movement_types_by_pk?: (e_league_movement_typesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_league_proposal_statuses" */ + e_league_proposal_statuses?: (e_league_proposal_statusesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_league_proposal_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_league_proposal_statuses_order_by[] | null), + /** filter the rows returned */ + where?: (e_league_proposal_statuses_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_league_proposal_statuses" */ + e_league_proposal_statuses_aggregate?: (e_league_proposal_statuses_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_league_proposal_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_league_proposal_statuses_order_by[] | null), + /** filter the rows returned */ + where?: (e_league_proposal_statuses_bool_exp | null)} }) + /** fetch data from the table: "e_league_proposal_statuses" using primary key columns */ + e_league_proposal_statuses_by_pk?: (e_league_proposal_statusesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_league_registration_statuses" */ + e_league_registration_statuses?: (e_league_registration_statusesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_league_registration_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_league_registration_statuses_order_by[] | null), + /** filter the rows returned */ + where?: (e_league_registration_statuses_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_league_registration_statuses" */ + e_league_registration_statuses_aggregate?: (e_league_registration_statuses_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_league_registration_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_league_registration_statuses_order_by[] | null), + /** filter the rows returned */ + where?: (e_league_registration_statuses_bool_exp | null)} }) + /** fetch data from the table: "e_league_registration_statuses" using primary key columns */ + e_league_registration_statuses_by_pk?: (e_league_registration_statusesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_league_season_statuses" */ + e_league_season_statuses?: (e_league_season_statusesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_league_season_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_league_season_statuses_order_by[] | null), + /** filter the rows returned */ + where?: (e_league_season_statuses_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_league_season_statuses" */ + e_league_season_statuses_aggregate?: (e_league_season_statuses_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_league_season_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_league_season_statuses_order_by[] | null), + /** filter the rows returned */ + where?: (e_league_season_statuses_bool_exp | null)} }) + /** fetch data from the table: "e_league_season_statuses" using primary key columns */ + e_league_season_statuses_by_pk?: (e_league_season_statusesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_lobby_access" */ + e_lobby_access?: (e_lobby_accessGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_lobby_access_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_lobby_access_order_by[] | null), + /** filter the rows returned */ + where?: (e_lobby_access_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_lobby_access" */ + e_lobby_access_aggregate?: (e_lobby_access_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_lobby_access_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_lobby_access_order_by[] | null), + /** filter the rows returned */ + where?: (e_lobby_access_bool_exp | null)} }) + /** fetch data from the table: "e_lobby_access" using primary key columns */ + e_lobby_access_by_pk?: (e_lobby_accessGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_lobby_player_status" */ + e_lobby_player_status?: (e_lobby_player_statusGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_lobby_player_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_lobby_player_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_lobby_player_status_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_lobby_player_status" */ + e_lobby_player_status_aggregate?: (e_lobby_player_status_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_lobby_player_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_lobby_player_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_lobby_player_status_bool_exp | null)} }) + /** fetch data from the table: "e_lobby_player_status" using primary key columns */ + e_lobby_player_status_by_pk?: (e_lobby_player_statusGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_map_pool_types" */ + e_map_pool_types?: (e_map_pool_typesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_map_pool_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_map_pool_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_map_pool_types_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_map_pool_types" */ + e_map_pool_types_aggregate?: (e_map_pool_types_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_map_pool_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_map_pool_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_map_pool_types_bool_exp | null)} }) + /** fetch data from the table: "e_map_pool_types" using primary key columns */ + e_map_pool_types_by_pk?: (e_map_pool_typesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_match_clip_visibility" */ + e_match_clip_visibility?: (e_match_clip_visibilityGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_match_clip_visibility_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_match_clip_visibility_order_by[] | null), + /** filter the rows returned */ + where?: (e_match_clip_visibility_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_match_clip_visibility" */ + e_match_clip_visibility_aggregate?: (e_match_clip_visibility_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_match_clip_visibility_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_match_clip_visibility_order_by[] | null), + /** filter the rows returned */ + where?: (e_match_clip_visibility_bool_exp | null)} }) + /** fetch data from the table: "e_match_clip_visibility" using primary key columns */ + e_match_clip_visibility_by_pk?: (e_match_clip_visibilityGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_match_map_status" */ + e_match_map_status?: (e_match_map_statusGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_match_map_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_map_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_match_map_status_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_match_map_status" */ + e_match_map_status_aggregate?: (e_match_map_status_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_match_map_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_map_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_match_map_status_bool_exp | null)} }) + /** fetch data from the table: "e_match_map_status" using primary key columns */ + e_match_map_status_by_pk?: (e_match_map_statusGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_match_mode" */ + e_match_mode?: (e_match_modeGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_match_mode_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_mode_order_by[] | null), + /** filter the rows returned */ + where?: (e_match_mode_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_match_mode" */ + e_match_mode_aggregate?: (e_match_mode_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_match_mode_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_mode_order_by[] | null), + /** filter the rows returned */ + where?: (e_match_mode_bool_exp | null)} }) + /** fetch data from the table: "e_match_mode" using primary key columns */ + e_match_mode_by_pk?: (e_match_modeGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_match_party_sources" */ + e_match_party_sources?: (e_match_party_sourcesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_match_party_sources_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_party_sources_order_by[] | null), + /** filter the rows returned */ + where?: (e_match_party_sources_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_match_party_sources" */ + e_match_party_sources_aggregate?: (e_match_party_sources_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_match_party_sources_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_party_sources_order_by[] | null), + /** filter the rows returned */ + where?: (e_match_party_sources_bool_exp | null)} }) + /** fetch data from the table: "e_match_party_sources" using primary key columns */ + e_match_party_sources_by_pk?: (e_match_party_sourcesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_match_status" */ + e_match_status?: (e_match_statusGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_match_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_match_status_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_match_status" */ + e_match_status_aggregate?: (e_match_status_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_match_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_match_status_bool_exp | null)} }) + /** fetch data from the table: "e_match_status" using primary key columns */ + e_match_status_by_pk?: (e_match_statusGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_match_types" */ + e_match_types?: (e_match_typesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_match_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_match_types_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_match_types" */ + e_match_types_aggregate?: (e_match_types_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_match_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_match_types_bool_exp | null)} }) + /** fetch data from the table: "e_match_types" using primary key columns */ + e_match_types_by_pk?: (e_match_typesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_notification_types" */ + e_notification_types?: (e_notification_typesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_notification_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_notification_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_notification_types_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_notification_types" */ + e_notification_types_aggregate?: (e_notification_types_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_notification_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_notification_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_notification_types_bool_exp | null)} }) + /** fetch data from the table: "e_notification_types" using primary key columns */ + e_notification_types_by_pk?: (e_notification_typesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_objective_types" */ + e_objective_types?: (e_objective_typesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_objective_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_objective_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_objective_types_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_objective_types" */ + e_objective_types_aggregate?: (e_objective_types_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_objective_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_objective_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_objective_types_bool_exp | null)} }) + /** fetch data from the table: "e_objective_types" using primary key columns */ + e_objective_types_by_pk?: (e_objective_typesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_player_roles" */ + e_player_roles?: (e_player_rolesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_player_roles_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_roles_order_by[] | null), + /** filter the rows returned */ + where?: (e_player_roles_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_player_roles" */ + e_player_roles_aggregate?: (e_player_roles_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_player_roles_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_roles_order_by[] | null), + /** filter the rows returned */ + where?: (e_player_roles_bool_exp | null)} }) + /** fetch data from the table: "e_player_roles" using primary key columns */ + e_player_roles_by_pk?: (e_player_rolesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_plugin_runtimes" */ + e_plugin_runtimes?: (e_plugin_runtimesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_plugin_runtimes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_plugin_runtimes_order_by[] | null), + /** filter the rows returned */ + where?: (e_plugin_runtimes_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_plugin_runtimes" */ + e_plugin_runtimes_aggregate?: (e_plugin_runtimes_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_plugin_runtimes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_plugin_runtimes_order_by[] | null), + /** filter the rows returned */ + where?: (e_plugin_runtimes_bool_exp | null)} }) + /** fetch data from the table: "e_plugin_runtimes" using primary key columns */ + e_plugin_runtimes_by_pk?: (e_plugin_runtimesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_ready_settings" */ + e_ready_settings?: (e_ready_settingsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_ready_settings_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_ready_settings_order_by[] | null), + /** filter the rows returned */ + where?: (e_ready_settings_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_ready_settings" */ + e_ready_settings_aggregate?: (e_ready_settings_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_ready_settings_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_ready_settings_order_by[] | null), + /** filter the rows returned */ + where?: (e_ready_settings_bool_exp | null)} }) + /** fetch data from the table: "e_ready_settings" using primary key columns */ + e_ready_settings_by_pk?: (e_ready_settingsGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_sanction_scopes" */ + e_sanction_scopes?: (e_sanction_scopesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_sanction_scopes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_sanction_scopes_order_by[] | null), + /** filter the rows returned */ + where?: (e_sanction_scopes_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_sanction_scopes" */ + e_sanction_scopes_aggregate?: (e_sanction_scopes_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_sanction_scopes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_sanction_scopes_order_by[] | null), + /** filter the rows returned */ + where?: (e_sanction_scopes_bool_exp | null)} }) + /** fetch data from the table: "e_sanction_scopes" using primary key columns */ + e_sanction_scopes_by_pk?: (e_sanction_scopesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_sanction_sources" */ + e_sanction_sources?: (e_sanction_sourcesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_sanction_sources_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_sanction_sources_order_by[] | null), + /** filter the rows returned */ + where?: (e_sanction_sources_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_sanction_sources" */ + e_sanction_sources_aggregate?: (e_sanction_sources_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_sanction_sources_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_sanction_sources_order_by[] | null), + /** filter the rows returned */ + where?: (e_sanction_sources_bool_exp | null)} }) + /** fetch data from the table: "e_sanction_sources" using primary key columns */ + e_sanction_sources_by_pk?: (e_sanction_sourcesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_sanction_types" */ + e_sanction_types?: (e_sanction_typesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_sanction_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_sanction_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_sanction_types_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_sanction_types" */ + e_sanction_types_aggregate?: (e_sanction_types_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_sanction_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_sanction_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_sanction_types_bool_exp | null)} }) + /** fetch data from the table: "e_sanction_types" using primary key columns */ + e_sanction_types_by_pk?: (e_sanction_typesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_scrim_request_statuses" */ + e_scrim_request_statuses?: (e_scrim_request_statusesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_scrim_request_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_scrim_request_statuses_order_by[] | null), + /** filter the rows returned */ + where?: (e_scrim_request_statuses_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_scrim_request_statuses" */ + e_scrim_request_statuses_aggregate?: (e_scrim_request_statuses_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_scrim_request_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_scrim_request_statuses_order_by[] | null), + /** filter the rows returned */ + where?: (e_scrim_request_statuses_bool_exp | null)} }) + /** fetch data from the table: "e_scrim_request_statuses" using primary key columns */ + e_scrim_request_statuses_by_pk?: (e_scrim_request_statusesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_server_types" */ + e_server_types?: (e_server_typesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_server_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_server_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_server_types_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_server_types" */ + e_server_types_aggregate?: (e_server_types_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_server_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_server_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_server_types_bool_exp | null)} }) + /** fetch data from the table: "e_server_types" using primary key columns */ + e_server_types_by_pk?: (e_server_typesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_sides" */ + e_sides?: (e_sidesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_sides_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_sides_order_by[] | null), + /** filter the rows returned */ + where?: (e_sides_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_sides" */ + e_sides_aggregate?: (e_sides_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_sides_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_sides_order_by[] | null), + /** filter the rows returned */ + where?: (e_sides_bool_exp | null)} }) + /** fetch data from the table: "e_sides" using primary key columns */ + e_sides_by_pk?: (e_sidesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_system_alert_types" */ + e_system_alert_types?: (e_system_alert_typesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_system_alert_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_system_alert_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_system_alert_types_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_system_alert_types" */ + e_system_alert_types_aggregate?: (e_system_alert_types_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_system_alert_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_system_alert_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_system_alert_types_bool_exp | null)} }) + /** fetch data from the table: "e_system_alert_types" using primary key columns */ + e_system_alert_types_by_pk?: (e_system_alert_typesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_team_roles" */ + e_team_roles?: (e_team_rolesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_team_roles_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_team_roles_order_by[] | null), + /** filter the rows returned */ + where?: (e_team_roles_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_team_roles" */ + e_team_roles_aggregate?: (e_team_roles_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_team_roles_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_team_roles_order_by[] | null), + /** filter the rows returned */ + where?: (e_team_roles_bool_exp | null)} }) + /** fetch data from the table: "e_team_roles" using primary key columns */ + e_team_roles_by_pk?: (e_team_rolesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_team_roster_statuses" */ + e_team_roster_statuses?: (e_team_roster_statusesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_team_roster_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_team_roster_statuses_order_by[] | null), + /** filter the rows returned */ + where?: (e_team_roster_statuses_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_team_roster_statuses" */ + e_team_roster_statuses_aggregate?: (e_team_roster_statuses_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_team_roster_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_team_roster_statuses_order_by[] | null), + /** filter the rows returned */ + where?: (e_team_roster_statuses_bool_exp | null)} }) + /** fetch data from the table: "e_team_roster_statuses" using primary key columns */ + e_team_roster_statuses_by_pk?: (e_team_roster_statusesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_timeout_settings" */ + e_timeout_settings?: (e_timeout_settingsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_timeout_settings_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_timeout_settings_order_by[] | null), + /** filter the rows returned */ + where?: (e_timeout_settings_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_timeout_settings" */ + e_timeout_settings_aggregate?: (e_timeout_settings_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_timeout_settings_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_timeout_settings_order_by[] | null), + /** filter the rows returned */ + where?: (e_timeout_settings_bool_exp | null)} }) + /** fetch data from the table: "e_timeout_settings" using primary key columns */ + e_timeout_settings_by_pk?: (e_timeout_settingsGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_tournament_categories" */ + e_tournament_categories?: (e_tournament_categoriesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_tournament_categories_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_tournament_categories_order_by[] | null), + /** filter the rows returned */ + where?: (e_tournament_categories_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_tournament_categories" */ + e_tournament_categories_aggregate?: (e_tournament_categories_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_tournament_categories_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_tournament_categories_order_by[] | null), + /** filter the rows returned */ + where?: (e_tournament_categories_bool_exp | null)} }) + /** fetch data from the table: "e_tournament_categories" using primary key columns */ + e_tournament_categories_by_pk?: (e_tournament_categoriesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_tournament_free_agent_statuses" */ + e_tournament_free_agent_statuses?: (e_tournament_free_agent_statusesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_tournament_free_agent_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_tournament_free_agent_statuses_order_by[] | null), + /** filter the rows returned */ + where?: (e_tournament_free_agent_statuses_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_tournament_free_agent_statuses" */ + e_tournament_free_agent_statuses_aggregate?: (e_tournament_free_agent_statuses_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_tournament_free_agent_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_tournament_free_agent_statuses_order_by[] | null), + /** filter the rows returned */ + where?: (e_tournament_free_agent_statuses_bool_exp | null)} }) + /** fetch data from the table: "e_tournament_free_agent_statuses" using primary key columns */ + e_tournament_free_agent_statuses_by_pk?: (e_tournament_free_agent_statusesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_tournament_registration_types" */ + e_tournament_registration_types?: (e_tournament_registration_typesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_tournament_registration_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_tournament_registration_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_tournament_registration_types_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_tournament_registration_types" */ + e_tournament_registration_types_aggregate?: (e_tournament_registration_types_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_tournament_registration_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_tournament_registration_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_tournament_registration_types_bool_exp | null)} }) + /** fetch data from the table: "e_tournament_registration_types" using primary key columns */ + e_tournament_registration_types_by_pk?: (e_tournament_registration_typesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_tournament_stage_types" */ + e_tournament_stage_types?: (e_tournament_stage_typesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_tournament_stage_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_tournament_stage_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_tournament_stage_types_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_tournament_stage_types" */ + e_tournament_stage_types_aggregate?: (e_tournament_stage_types_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_tournament_stage_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_tournament_stage_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_tournament_stage_types_bool_exp | null)} }) + /** fetch data from the table: "e_tournament_stage_types" using primary key columns */ + e_tournament_stage_types_by_pk?: (e_tournament_stage_typesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_tournament_status" */ + e_tournament_status?: (e_tournament_statusGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_tournament_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_tournament_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_tournament_status_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_tournament_status" */ + e_tournament_status_aggregate?: (e_tournament_status_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_tournament_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_tournament_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_tournament_status_bool_exp | null)} }) + /** fetch data from the table: "e_tournament_status" using primary key columns */ + e_tournament_status_by_pk?: (e_tournament_statusGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_utility_practice_access" */ + e_utility_practice_access?: (e_utility_practice_accessGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_utility_practice_access_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_utility_practice_access_order_by[] | null), + /** filter the rows returned */ + where?: (e_utility_practice_access_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_utility_practice_access" */ + e_utility_practice_access_aggregate?: (e_utility_practice_access_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_utility_practice_access_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_utility_practice_access_order_by[] | null), + /** filter the rows returned */ + where?: (e_utility_practice_access_bool_exp | null)} }) + /** fetch data from the table: "e_utility_practice_access" using primary key columns */ + e_utility_practice_access_by_pk?: (e_utility_practice_accessGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_utility_practice_statuses" */ + e_utility_practice_statuses?: (e_utility_practice_statusesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_utility_practice_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_utility_practice_statuses_order_by[] | null), + /** filter the rows returned */ + where?: (e_utility_practice_statuses_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_utility_practice_statuses" */ + e_utility_practice_statuses_aggregate?: (e_utility_practice_statuses_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_utility_practice_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_utility_practice_statuses_order_by[] | null), + /** filter the rows returned */ + where?: (e_utility_practice_statuses_bool_exp | null)} }) + /** fetch data from the table: "e_utility_practice_statuses" using primary key columns */ + e_utility_practice_statuses_by_pk?: (e_utility_practice_statusesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_utility_sources" */ + e_utility_sources?: (e_utility_sourcesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_utility_sources_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_utility_sources_order_by[] | null), + /** filter the rows returned */ + where?: (e_utility_sources_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_utility_sources" */ + e_utility_sources_aggregate?: (e_utility_sources_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_utility_sources_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_utility_sources_order_by[] | null), + /** filter the rows returned */ + where?: (e_utility_sources_bool_exp | null)} }) + /** fetch data from the table: "e_utility_sources" using primary key columns */ + e_utility_sources_by_pk?: (e_utility_sourcesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_utility_techniques" */ + e_utility_techniques?: (e_utility_techniquesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_utility_techniques_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_utility_techniques_order_by[] | null), + /** filter the rows returned */ + where?: (e_utility_techniques_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_utility_techniques" */ + e_utility_techniques_aggregate?: (e_utility_techniques_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_utility_techniques_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_utility_techniques_order_by[] | null), + /** filter the rows returned */ + where?: (e_utility_techniques_bool_exp | null)} }) + /** fetch data from the table: "e_utility_techniques" using primary key columns */ + e_utility_techniques_by_pk?: (e_utility_techniquesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_utility_throw_strengths" */ + e_utility_throw_strengths?: (e_utility_throw_strengthsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_utility_throw_strengths_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_utility_throw_strengths_order_by[] | null), + /** filter the rows returned */ + where?: (e_utility_throw_strengths_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_utility_throw_strengths" */ + e_utility_throw_strengths_aggregate?: (e_utility_throw_strengths_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_utility_throw_strengths_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_utility_throw_strengths_order_by[] | null), + /** filter the rows returned */ + where?: (e_utility_throw_strengths_bool_exp | null)} }) + /** fetch data from the table: "e_utility_throw_strengths" using primary key columns */ + e_utility_throw_strengths_by_pk?: (e_utility_throw_strengthsGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_utility_types" */ + e_utility_types?: (e_utility_typesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_utility_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_utility_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_utility_types_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_utility_types" */ + e_utility_types_aggregate?: (e_utility_types_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_utility_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_utility_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_utility_types_bool_exp | null)} }) + /** fetch data from the table: "e_utility_types" using primary key columns */ + e_utility_types_by_pk?: (e_utility_typesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_utility_visibility" */ + e_utility_visibility?: (e_utility_visibilityGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_utility_visibility_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_utility_visibility_order_by[] | null), + /** filter the rows returned */ + where?: (e_utility_visibility_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_utility_visibility" */ + e_utility_visibility_aggregate?: (e_utility_visibility_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_utility_visibility_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_utility_visibility_order_by[] | null), + /** filter the rows returned */ + where?: (e_utility_visibility_bool_exp | null)} }) + /** fetch data from the table: "e_utility_visibility" using primary key columns */ + e_utility_visibility_by_pk?: (e_utility_visibilityGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_veto_pick_types" */ + e_veto_pick_types?: (e_veto_pick_typesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_veto_pick_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_veto_pick_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_veto_pick_types_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_veto_pick_types" */ + e_veto_pick_types_aggregate?: (e_veto_pick_types_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_veto_pick_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_veto_pick_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_veto_pick_types_bool_exp | null)} }) + /** fetch data from the table: "e_veto_pick_types" using primary key columns */ + e_veto_pick_types_by_pk?: (e_veto_pick_typesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_winning_reasons" */ + e_winning_reasons?: (e_winning_reasonsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_winning_reasons_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_winning_reasons_order_by[] | null), + /** filter the rows returned */ + where?: (e_winning_reasons_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_winning_reasons" */ + e_winning_reasons_aggregate?: (e_winning_reasons_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_winning_reasons_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_winning_reasons_order_by[] | null), + /** filter the rows returned */ + where?: (e_winning_reasons_bool_exp | null)} }) + /** fetch data from the table: "e_winning_reasons" using primary key columns */ + e_winning_reasons_by_pk?: (e_winning_reasonsGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "event_match_links" */ + event_match_links?: (event_match_linksGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_match_links_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (event_match_links_order_by[] | null), + /** filter the rows returned */ + where?: (event_match_links_bool_exp | null)} }) + /** fetch aggregated fields from the table: "event_match_links" */ + event_match_links_aggregate?: (event_match_links_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_match_links_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (event_match_links_order_by[] | null), + /** filter the rows returned */ + where?: (event_match_links_bool_exp | null)} }) + /** fetch data from the table: "event_match_links" using primary key columns */ + event_match_links_by_pk?: (event_match_linksGenqlSelection & { __args: {event_id: Scalars['uuid'], match_id: Scalars['uuid']} }) + /** fetch data from the table: "event_media" */ + event_media?: (event_mediaGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_media_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (event_media_order_by[] | null), + /** filter the rows returned */ + where?: (event_media_bool_exp | null)} }) + /** fetch aggregated fields from the table: "event_media" */ + event_media_aggregate?: (event_media_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_media_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (event_media_order_by[] | null), + /** filter the rows returned */ + where?: (event_media_bool_exp | null)} }) + /** fetch data from the table: "event_media" using primary key columns */ + event_media_by_pk?: (event_mediaGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "event_media_players" */ + event_media_players?: (event_media_playersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_media_players_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (event_media_players_order_by[] | null), + /** filter the rows returned */ + where?: (event_media_players_bool_exp | null)} }) + /** fetch aggregated fields from the table: "event_media_players" */ + event_media_players_aggregate?: (event_media_players_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_media_players_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (event_media_players_order_by[] | null), + /** filter the rows returned */ + where?: (event_media_players_bool_exp | null)} }) + /** fetch data from the table: "event_media_players" using primary key columns */ + event_media_players_by_pk?: (event_media_playersGenqlSelection & { __args: {media_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) + /** fetch data from the table: "event_organizers" */ + event_organizers?: (event_organizersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_organizers_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (event_organizers_order_by[] | null), + /** filter the rows returned */ + where?: (event_organizers_bool_exp | null)} }) + /** fetch aggregated fields from the table: "event_organizers" */ + event_organizers_aggregate?: (event_organizers_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_organizers_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (event_organizers_order_by[] | null), + /** filter the rows returned */ + where?: (event_organizers_bool_exp | null)} }) + /** fetch data from the table: "event_organizers" using primary key columns */ + event_organizers_by_pk?: (event_organizersGenqlSelection & { __args: {event_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) + /** fetch data from the table: "event_players" */ + event_players?: (event_playersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_players_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (event_players_order_by[] | null), + /** filter the rows returned */ + where?: (event_players_bool_exp | null)} }) + /** fetch aggregated fields from the table: "event_players" */ + event_players_aggregate?: (event_players_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_players_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (event_players_order_by[] | null), + /** filter the rows returned */ + where?: (event_players_bool_exp | null)} }) + /** fetch data from the table: "event_players" using primary key columns */ + event_players_by_pk?: (event_playersGenqlSelection & { __args: {event_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) + /** fetch data from the table: "event_teams" */ + event_teams?: (event_teamsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_teams_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (event_teams_order_by[] | null), + /** filter the rows returned */ + where?: (event_teams_bool_exp | null)} }) + /** fetch aggregated fields from the table: "event_teams" */ + event_teams_aggregate?: (event_teams_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_teams_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (event_teams_order_by[] | null), + /** filter the rows returned */ + where?: (event_teams_bool_exp | null)} }) + /** fetch data from the table: "event_teams" using primary key columns */ + event_teams_by_pk?: (event_teamsGenqlSelection & { __args: {event_id: Scalars['uuid'], team_id: Scalars['uuid']} }) + /** fetch data from the table: "event_tournaments" */ + event_tournaments?: (event_tournamentsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_tournaments_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (event_tournaments_order_by[] | null), + /** filter the rows returned */ + where?: (event_tournaments_bool_exp | null)} }) + /** fetch aggregated fields from the table: "event_tournaments" */ + event_tournaments_aggregate?: (event_tournaments_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_tournaments_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (event_tournaments_order_by[] | null), + /** filter the rows returned */ + where?: (event_tournaments_bool_exp | null)} }) + /** fetch data from the table: "event_tournaments" using primary key columns */ + event_tournaments_by_pk?: (event_tournamentsGenqlSelection & { __args: {event_id: Scalars['uuid'], tournament_id: Scalars['uuid']} }) + /** fetch data from the table: "events" */ + events?: (eventsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (events_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (events_order_by[] | null), + /** filter the rows returned */ + where?: (events_bool_exp | null)} }) + /** fetch aggregated fields from the table: "events" */ + events_aggregate?: (events_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (events_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (events_order_by[] | null), + /** filter the rows returned */ + where?: (events_bool_exp | null)} }) + /** fetch data from the table: "events" using primary key columns */ + events_by_pk?: (eventsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** Find the saved smokes that close a given sightline */ + findUtilityLineupsBlocking?: (UtilityBlockingOutputGenqlSelection & { __args: {from_x: Scalars['Float'], from_y: Scalars['Float'], from_z: Scalars['Float'], limit?: (Scalars['Int'] | null), map_name: Scalars['String'], side?: (Scalars['String'] | null), to_x: Scalars['Float'], to_y: Scalars['Float'], to_z: Scalars['Float']} }) + /** fetch data from the table: "friends" */ + friends?: (friendsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (friends_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (friends_order_by[] | null), + /** filter the rows returned */ + where?: (friends_bool_exp | null)} }) + /** fetch aggregated fields from the table: "friends" */ + friends_aggregate?: (friends_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (friends_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (friends_order_by[] | null), + /** filter the rows returned */ + 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 */ + distinct_on?: (game_server_nodes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_nodes_order_by[] | null), + /** filter the rows returned */ + where?: (game_server_nodes_bool_exp | null)} }) + /** An aggregate relationship */ + game_server_nodes_aggregate?: (game_server_nodes_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (game_server_nodes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_nodes_order_by[] | null), + /** filter the rows returned */ + where?: (game_server_nodes_bool_exp | null)} }) + /** fetch data from the table: "game_server_nodes" using primary key columns */ + game_server_nodes_by_pk?: (game_server_nodesGenqlSelection & { __args: {id: Scalars['String']} }) + /** fetch data from the table: "game_versions" */ + game_versions?: (game_versionsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (game_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_versions_order_by[] | null), + /** filter the rows returned */ + where?: (game_versions_bool_exp | null)} }) + /** fetch aggregated fields from the table: "game_versions" */ + game_versions_aggregate?: (game_versions_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (game_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_versions_order_by[] | null), + /** filter the rows returned */ + where?: (game_versions_bool_exp | null)} }) + /** fetch data from the table: "game_versions" using primary key columns */ + game_versions_by_pk?: (game_versionsGenqlSelection & { __args: {build_id: Scalars['Int']} }) + /** fetch data from the table: "gamedata_signature_validations" */ + gamedata_signature_validations?: (gamedata_signature_validationsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (gamedata_signature_validations_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (gamedata_signature_validations_order_by[] | null), + /** filter the rows returned */ + where?: (gamedata_signature_validations_bool_exp | null)} }) + /** fetch aggregated fields from the table: "gamedata_signature_validations" */ + gamedata_signature_validations_aggregate?: (gamedata_signature_validations_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (gamedata_signature_validations_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (gamedata_signature_validations_order_by[] | null), + /** filter the rows returned */ + where?: (gamedata_signature_validations_bool_exp | null)} }) + /** fetch data from the table: "gamedata_signature_validations" using primary key columns */ + gamedata_signature_validations_by_pk?: (gamedata_signature_validationsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** Get list of active connections */ + getActiveConnections?: ActiveConnectionGenqlSelection + /** Get currently executing queries */ + getActiveQueries?: ActiveQueryGenqlSelection + /** Get connection statistics */ + getConnectionStats?: ConnectionStatsGenqlSelection + /** Get current database locks */ + getCurrentLocks?: LockInfoGenqlSelection + /** Get database-wide statistics */ + getDatabaseStats?: DatabaseStatsGenqlSelection + getDedicatedServerInfo?: DedicatedSeverInfoGenqlSelection + getDedicatedServerPlayers?: (ServerPlayerGenqlSelection & { __args: {serverId: Scalars['String']} }) + /** Which highlight presets have content for a player on a map's demo */ + getHighlightPresetAvailability?: (HighlightPresetAvailabilityGenqlSelection & { __args: {match_map_id: Scalars['uuid'], target_steam_id: Scalars['String']} }) + /** Get index I/O statistics */ + getIndexIOStats?: (IndexIOStatGenqlSelection & { __args?: {schemas?: (Scalars['String'][] | null)} }) + /** Get index usage statistics */ + getIndexStats?: (IndexStatGenqlSelection & { __args?: {schemas?: (Scalars['String'][] | null)} }) + getNodeStats?: (NodeStatsGenqlSelection & { __args: {node: Scalars['String']} }) + /** Get detailed query analysis with EXPLAIN plan */ + getQueryDetail?: (QueryDetailGenqlSelection & { __args: {queryid: Scalars['String']} }) + /** Get enhanced query performance statistics */ + getQueryStats?: QueryStatGenqlSelection + /** Get available database schemas */ + getSchemas?: boolean | number + getServiceStats?: PodStatsGenqlSelection + /** Get database storage statistics and reclaimable space */ + getStorageStats?: (StorageStatsGenqlSelection & { __args?: {schemas?: (Scalars['String'][] | null)} }) + /** Get table I/O statistics */ + getTableIOStats?: (TableIOStatGenqlSelection & { __args?: {schemas?: (Scalars['String'][] | null)} }) + /** Get table access statistics */ + getTableStats?: (TableStatGenqlSelection & { __args?: {schemas?: (Scalars['String'][] | null)} }) + /** Get TimescaleDB statistics */ + getTimescaleStats?: TimescaleStatsGenqlSelection + /** execute function "get_event_leaderboard" which returns "leaderboard_entries" */ + get_event_leaderboard?: (leaderboard_entriesGenqlSelection & { __args: { + /** input parameters for function "get_event_leaderboard" */ + args: get_event_leaderboard_args, + /** distinct select on columns */ + distinct_on?: (leaderboard_entries_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (leaderboard_entries_order_by[] | null), + /** filter the rows returned */ + where?: (leaderboard_entries_bool_exp | null)} }) + /** execute function "get_event_leaderboard" and query aggregates on result of table type "leaderboard_entries" */ + get_event_leaderboard_aggregate?: (leaderboard_entries_aggregateGenqlSelection & { __args: { + /** input parameters for function "get_event_leaderboard_aggregate" */ + args: get_event_leaderboard_args, + /** distinct select on columns */ + distinct_on?: (leaderboard_entries_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (leaderboard_entries_order_by[] | null), + /** filter the rows returned */ + where?: (leaderboard_entries_bool_exp | null)} }) + /** execute function "get_leaderboard" which returns "leaderboard_entries" */ + get_leaderboard?: (leaderboard_entriesGenqlSelection & { __args: { + /** input parameters for function "get_leaderboard" */ + args: get_leaderboard_args, + /** distinct select on columns */ + distinct_on?: (leaderboard_entries_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (leaderboard_entries_order_by[] | null), + /** filter the rows returned */ + where?: (leaderboard_entries_bool_exp | null)} }) + /** execute function "get_leaderboard" and query aggregates on result of table type "leaderboard_entries" */ + get_leaderboard_aggregate?: (leaderboard_entries_aggregateGenqlSelection & { __args: { + /** input parameters for function "get_leaderboard_aggregate" */ + args: get_leaderboard_args, + /** distinct select on columns */ + distinct_on?: (leaderboard_entries_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (leaderboard_entries_order_by[] | null), + /** filter the rows returned */ + where?: (leaderboard_entries_bool_exp | null)} }) + /** execute function "get_league_season_leaderboard" which returns "leaderboard_entries" */ + get_league_season_leaderboard?: (leaderboard_entriesGenqlSelection & { __args: { + /** input parameters for function "get_league_season_leaderboard" */ + args: get_league_season_leaderboard_args, + /** distinct select on columns */ + distinct_on?: (leaderboard_entries_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (leaderboard_entries_order_by[] | null), + /** filter the rows returned */ + where?: (leaderboard_entries_bool_exp | null)} }) + /** execute function "get_league_season_leaderboard" and query aggregates on result of table type "leaderboard_entries" */ + get_league_season_leaderboard_aggregate?: (leaderboard_entries_aggregateGenqlSelection & { __args: { + /** input parameters for function "get_league_season_leaderboard_aggregate" */ + args: get_league_season_leaderboard_args, + /** distinct select on columns */ + distinct_on?: (leaderboard_entries_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (leaderboard_entries_order_by[] | null), + /** filter the rows returned */ + where?: (leaderboard_entries_bool_exp | null)} }) + /** execute function "get_player_leaderboard_rank" which returns "player_leaderboard_rank" */ + get_player_leaderboard_rank?: (player_leaderboard_rankGenqlSelection & { __args: { + /** input parameters for function "get_player_leaderboard_rank" */ + args: get_player_leaderboard_rank_args, + /** distinct select on columns */ + distinct_on?: (player_leaderboard_rank_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_leaderboard_rank_order_by[] | null), + /** filter the rows returned */ + where?: (player_leaderboard_rank_bool_exp | null)} }) + /** execute function "get_player_leaderboard_rank" and query aggregates on result of table type "player_leaderboard_rank" */ + get_player_leaderboard_rank_aggregate?: (player_leaderboard_rank_aggregateGenqlSelection & { __args: { + /** input parameters for function "get_player_leaderboard_rank_aggregate" */ + args: get_player_leaderboard_rank_args, + /** distinct select on columns */ + distinct_on?: (player_leaderboard_rank_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_leaderboard_rank_order_by[] | null), + /** filter the rows returned */ + where?: (player_leaderboard_rank_bool_exp | null)} }) + /** execute function "get_tournament_leaderboard" which returns "tournament_leaderboard_entries" */ + get_tournament_leaderboard?: (tournament_leaderboard_entriesGenqlSelection & { __args: { + /** input parameters for function "get_tournament_leaderboard" */ + args: get_tournament_leaderboard_args, + /** distinct select on columns */ + distinct_on?: (tournament_leaderboard_entries_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_leaderboard_entries_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_leaderboard_entries_bool_exp | null)} }) + /** execute function "get_tournament_leaderboard" and query aggregates on result of table type "tournament_leaderboard_entries" */ + get_tournament_leaderboard_aggregate?: (tournament_leaderboard_entries_aggregateGenqlSelection & { __args: { + /** input parameters for function "get_tournament_leaderboard_aggregate" */ + args: get_tournament_leaderboard_args, + /** distinct select on columns */ + distinct_on?: (tournament_leaderboard_entries_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_leaderboard_entries_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_leaderboard_entries_bool_exp | null)} }) + /** fetch data from the table: "leaderboard_entries" */ + leaderboard_entries?: (leaderboard_entriesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (leaderboard_entries_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (leaderboard_entries_order_by[] | null), + /** filter the rows returned */ + where?: (leaderboard_entries_bool_exp | null)} }) + /** fetch aggregated fields from the table: "leaderboard_entries" */ + leaderboard_entries_aggregate?: (leaderboard_entries_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (leaderboard_entries_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (leaderboard_entries_order_by[] | null), + /** filter the rows returned */ + where?: (leaderboard_entries_bool_exp | null)} }) + /** fetch data from the table: "league_divisions" */ + league_divisions?: (league_divisionsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_divisions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_divisions_order_by[] | null), + /** filter the rows returned */ + where?: (league_divisions_bool_exp | null)} }) + /** fetch aggregated fields from the table: "league_divisions" */ + league_divisions_aggregate?: (league_divisions_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_divisions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_divisions_order_by[] | null), + /** filter the rows returned */ + where?: (league_divisions_bool_exp | null)} }) + /** fetch data from the table: "league_divisions" using primary key columns */ + league_divisions_by_pk?: (league_divisionsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "league_match_weeks" */ + league_match_weeks?: (league_match_weeksGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_match_weeks_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_match_weeks_order_by[] | null), + /** filter the rows returned */ + where?: (league_match_weeks_bool_exp | null)} }) + /** fetch aggregated fields from the table: "league_match_weeks" */ + league_match_weeks_aggregate?: (league_match_weeks_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_match_weeks_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_match_weeks_order_by[] | null), + /** filter the rows returned */ + where?: (league_match_weeks_bool_exp | null)} }) + /** fetch data from the table: "league_match_weeks" using primary key columns */ + league_match_weeks_by_pk?: (league_match_weeksGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "league_relegation_playoffs" */ + league_relegation_playoffs?: (league_relegation_playoffsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_relegation_playoffs_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_relegation_playoffs_order_by[] | null), + /** filter the rows returned */ + where?: (league_relegation_playoffs_bool_exp | null)} }) + /** fetch aggregated fields from the table: "league_relegation_playoffs" */ + league_relegation_playoffs_aggregate?: (league_relegation_playoffs_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_relegation_playoffs_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_relegation_playoffs_order_by[] | null), + /** filter the rows returned */ + where?: (league_relegation_playoffs_bool_exp | null)} }) + /** fetch data from the table: "league_relegation_playoffs" using primary key columns */ + league_relegation_playoffs_by_pk?: (league_relegation_playoffsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "league_scheduling_proposals" */ + league_scheduling_proposals?: (league_scheduling_proposalsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_scheduling_proposals_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_scheduling_proposals_order_by[] | null), + /** filter the rows returned */ + where?: (league_scheduling_proposals_bool_exp | null)} }) + /** fetch aggregated fields from the table: "league_scheduling_proposals" */ + league_scheduling_proposals_aggregate?: (league_scheduling_proposals_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_scheduling_proposals_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_scheduling_proposals_order_by[] | null), + /** filter the rows returned */ + where?: (league_scheduling_proposals_bool_exp | null)} }) + /** fetch data from the table: "league_scheduling_proposals" using primary key columns */ + league_scheduling_proposals_by_pk?: (league_scheduling_proposalsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "league_season_divisions" */ + league_season_divisions?: (league_season_divisionsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_season_divisions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_season_divisions_order_by[] | null), + /** filter the rows returned */ + where?: (league_season_divisions_bool_exp | null)} }) + /** fetch aggregated fields from the table: "league_season_divisions" */ + league_season_divisions_aggregate?: (league_season_divisions_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_season_divisions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_season_divisions_order_by[] | null), + /** filter the rows returned */ + where?: (league_season_divisions_bool_exp | null)} }) + /** fetch data from the table: "league_season_divisions" using primary key columns */ + league_season_divisions_by_pk?: (league_season_divisionsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "league_seasons" */ + league_seasons?: (league_seasonsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_seasons_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_seasons_order_by[] | null), + /** filter the rows returned */ + where?: (league_seasons_bool_exp | null)} }) + /** fetch aggregated fields from the table: "league_seasons" */ + league_seasons_aggregate?: (league_seasons_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_seasons_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_seasons_order_by[] | null), + /** filter the rows returned */ + where?: (league_seasons_bool_exp | null)} }) + /** fetch data from the table: "league_seasons" using primary key columns */ + league_seasons_by_pk?: (league_seasonsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "league_team_movements" */ + league_team_movements?: (league_team_movementsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_team_movements_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_team_movements_order_by[] | null), + /** filter the rows returned */ + where?: (league_team_movements_bool_exp | null)} }) + /** fetch aggregated fields from the table: "league_team_movements" */ + league_team_movements_aggregate?: (league_team_movements_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_team_movements_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_team_movements_order_by[] | null), + /** filter the rows returned */ + where?: (league_team_movements_bool_exp | null)} }) + /** fetch data from the table: "league_team_movements" using primary key columns */ + league_team_movements_by_pk?: (league_team_movementsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "league_team_rosters" */ + league_team_rosters?: (league_team_rostersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_team_rosters_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_team_rosters_order_by[] | null), + /** filter the rows returned */ + where?: (league_team_rosters_bool_exp | null)} }) + /** fetch aggregated fields from the table: "league_team_rosters" */ + league_team_rosters_aggregate?: (league_team_rosters_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_team_rosters_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_team_rosters_order_by[] | null), + /** filter the rows returned */ + where?: (league_team_rosters_bool_exp | null)} }) + /** fetch data from the table: "league_team_rosters" using primary key columns */ + league_team_rosters_by_pk?: (league_team_rostersGenqlSelection & { __args: {league_team_season_id: Scalars['uuid'], player_steam_id: Scalars['bigint']} }) + /** fetch data from the table: "league_team_seasons" */ + league_team_seasons?: (league_team_seasonsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_team_seasons_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_team_seasons_order_by[] | null), + /** filter the rows returned */ + where?: (league_team_seasons_bool_exp | null)} }) + /** fetch aggregated fields from the table: "league_team_seasons" */ + league_team_seasons_aggregate?: (league_team_seasons_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_team_seasons_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_team_seasons_order_by[] | null), + /** filter the rows returned */ + where?: (league_team_seasons_bool_exp | null)} }) + /** fetch data from the table: "league_team_seasons" using primary key columns */ + league_team_seasons_by_pk?: (league_team_seasonsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "league_teams" */ + league_teams?: (league_teamsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_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?: (league_teams_order_by[] | null), + /** filter the rows returned */ + where?: (league_teams_bool_exp | null)} }) + /** fetch aggregated fields from the table: "league_teams" */ + league_teams_aggregate?: (league_teams_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_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?: (league_teams_order_by[] | null), + /** filter the rows returned */ + where?: (league_teams_bool_exp | null)} }) + /** fetch data from the table: "league_teams" using primary key columns */ + league_teams_by_pk?: (league_teamsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** List files in game server directory */ + listServerFiles?: (FileListResponseGenqlSelection & { __args: {node_id: Scalars['String'], path?: (Scalars['String'] | null), server_id?: (Scalars['String'] | null)} }) + /** fetch data from the table: "lobbies" */ + lobbies?: (lobbiesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (lobbies_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (lobbies_order_by[] | null), + /** filter the rows returned */ + where?: (lobbies_bool_exp | null)} }) + /** fetch aggregated fields from the table: "lobbies" */ + lobbies_aggregate?: (lobbies_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (lobbies_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (lobbies_order_by[] | null), + /** filter the rows returned */ + where?: (lobbies_bool_exp | null)} }) + /** fetch data from the table: "lobbies" using primary key columns */ + lobbies_by_pk?: (lobbiesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** An array relationship */ + lobby_players?: (lobby_playersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (lobby_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?: (lobby_players_order_by[] | null), + /** filter the rows returned */ + where?: (lobby_players_bool_exp | null)} }) + /** An aggregate relationship */ + lobby_players_aggregate?: (lobby_players_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (lobby_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?: (lobby_players_order_by[] | null), + /** filter the rows returned */ + where?: (lobby_players_bool_exp | null)} }) + /** fetch data from the table: "lobby_players" using primary key columns */ + lobby_players_by_pk?: (lobby_playersGenqlSelection & { __args: {lobby_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) + /** fetch data from the table: "map_callouts" */ + map_callouts?: (map_calloutsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (map_callouts_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (map_callouts_order_by[] | null), + /** filter the rows returned */ + where?: (map_callouts_bool_exp | null)} }) + /** fetch aggregated fields from the table: "map_callouts" */ + map_callouts_aggregate?: (map_callouts_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (map_callouts_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (map_callouts_order_by[] | null), + /** filter the rows returned */ + where?: (map_callouts_bool_exp | null)} }) + /** fetch data from the table: "map_callouts" using primary key columns */ + map_callouts_by_pk?: (map_calloutsGenqlSelection & { __args: {map_name: Scalars['String'], name: Scalars['String']} }) + /** fetch data from the table: "map_pools" */ + map_pools?: (map_poolsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (map_pools_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (map_pools_order_by[] | null), + /** filter the rows returned */ + where?: (map_pools_bool_exp | null)} }) + /** fetch aggregated fields from the table: "map_pools" */ + map_pools_aggregate?: (map_pools_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (map_pools_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (map_pools_order_by[] | null), + /** filter the rows returned */ + where?: (map_pools_bool_exp | null)} }) + /** fetch data from the table: "map_pools" using primary key columns */ + map_pools_by_pk?: (map_poolsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** 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)} }) + /** fetch data from the table: "maps" using primary key columns */ + maps_by_pk?: (mapsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** 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)} }) + /** fetch data from the table: "match_clips" using primary key columns */ + match_clips_by_pk?: (match_clipsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "match_demo_sessions" */ + match_demo_sessions?: (match_demo_sessionsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_demo_sessions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_demo_sessions_order_by[] | null), + /** filter the rows returned */ + where?: (match_demo_sessions_bool_exp | null)} }) + /** fetch aggregated fields from the table: "match_demo_sessions" */ + match_demo_sessions_aggregate?: (match_demo_sessions_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_demo_sessions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_demo_sessions_order_by[] | null), + /** filter the rows returned */ + where?: (match_demo_sessions_bool_exp | null)} }) + /** fetch data from the table: "match_demo_sessions" using primary key columns */ + match_demo_sessions_by_pk?: (match_demo_sessionsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** 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)} }) + /** fetch data from the table: "match_lineup_players" using primary key columns */ + match_lineup_players_by_pk?: (match_lineup_playersGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** An array relationship */ + match_lineups?: (match_lineupsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_lineups_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_lineups_order_by[] | null), + /** filter the rows returned */ + where?: (match_lineups_bool_exp | null)} }) + /** An aggregate relationship */ + match_lineups_aggregate?: (match_lineups_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_lineups_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_lineups_order_by[] | null), + /** filter the rows returned */ + where?: (match_lineups_bool_exp | null)} }) + /** fetch data from the table: "match_lineups" using primary key columns */ + match_lineups_by_pk?: (match_lineupsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "match_map_demos" */ + match_map_demos?: (match_map_demosGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_map_demos_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_demos_order_by[] | null), + /** filter the rows returned */ + where?: (match_map_demos_bool_exp | null)} }) + /** fetch aggregated fields from the table: "match_map_demos" */ + match_map_demos_aggregate?: (match_map_demos_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_map_demos_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_demos_order_by[] | null), + /** filter the rows returned */ + where?: (match_map_demos_bool_exp | null)} }) + /** fetch data from the table: "match_map_demos" using primary key columns */ + match_map_demos_by_pk?: (match_map_demosGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "match_map_rounds" */ + match_map_rounds?: (match_map_roundsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_map_rounds_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_rounds_order_by[] | null), + /** filter the rows returned */ + where?: (match_map_rounds_bool_exp | null)} }) + /** fetch aggregated fields from the table: "match_map_rounds" */ + match_map_rounds_aggregate?: (match_map_rounds_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_map_rounds_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_rounds_order_by[] | null), + /** filter the rows returned */ + where?: (match_map_rounds_bool_exp | null)} }) + /** fetch data from the table: "match_map_rounds" using primary key columns */ + match_map_rounds_by_pk?: (match_map_roundsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "match_map_veto_picks" */ + match_map_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)} }) + /** fetch aggregated fields from the table: "match_map_veto_picks" */ + match_map_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)} }) + /** fetch data from the table: "match_map_veto_picks" using primary key columns */ + match_map_veto_picks_by_pk?: (match_map_veto_picksGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** 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)} }) + /** fetch data from the table: "match_maps" using primary key columns */ + match_maps_by_pk?: (match_mapsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** 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)} }) + /** fetch data from the table: "match_options" using primary key columns */ + match_options_by_pk?: (match_optionsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "match_region_veto_picks" */ + match_region_veto_picks?: (match_region_veto_picksGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_region_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_region_veto_picks_order_by[] | null), + /** filter the rows returned */ + where?: (match_region_veto_picks_bool_exp | null)} }) + /** fetch aggregated fields from the table: "match_region_veto_picks" */ + match_region_veto_picks_aggregate?: (match_region_veto_picks_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_region_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_region_veto_picks_order_by[] | null), + /** filter the rows returned */ + where?: (match_region_veto_picks_bool_exp | null)} }) + /** fetch data from the table: "match_region_veto_picks" using primary key columns */ + match_region_veto_picks_by_pk?: (match_region_veto_picksGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "match_streams" */ + match_streams?: (match_streamsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_streams_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_streams_order_by[] | null), + /** filter the rows returned */ + where?: (match_streams_bool_exp | null)} }) + /** fetch aggregated fields from the table: "match_streams" */ + match_streams_aggregate?: (match_streams_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_streams_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_streams_order_by[] | null), + /** filter the rows returned */ + where?: (match_streams_bool_exp | null)} }) + /** fetch data from the table: "match_streams" using primary key columns */ + match_streams_by_pk?: (match_streamsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "match_type_cfgs" */ + match_type_cfgs?: (match_type_cfgsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_type_cfgs_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_type_cfgs_order_by[] | null), + /** filter the rows returned */ + where?: (match_type_cfgs_bool_exp | null)} }) + /** fetch aggregated fields from the table: "match_type_cfgs" */ + match_type_cfgs_aggregate?: (match_type_cfgs_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_type_cfgs_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_type_cfgs_order_by[] | null), + /** filter the rows returned */ + where?: (match_type_cfgs_bool_exp | null)} }) + /** fetch data from the table: "match_type_cfgs" using primary key columns */ + match_type_cfgs_by_pk?: (match_type_cfgsGenqlSelection & { __args: {type: e_game_cfg_types_enum} }) + /** 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)} }) + /** fetch data from the table: "matches" using primary key columns */ + matches_by_pk?: (matchesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** Gets Current User */ + me?: MeResponseGenqlSelection + /** fetch data from the table: "migration_hashes.hashes" */ + migration_hashes_hashes?: (migration_hashes_hashesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (migration_hashes_hashes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (migration_hashes_hashes_order_by[] | null), + /** filter the rows returned */ + where?: (migration_hashes_hashes_bool_exp | null)} }) + /** fetch aggregated fields from the table: "migration_hashes.hashes" */ + migration_hashes_hashes_aggregate?: (migration_hashes_hashes_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (migration_hashes_hashes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (migration_hashes_hashes_order_by[] | null), + /** filter the rows returned */ + where?: (migration_hashes_hashes_bool_exp | null)} }) + /** fetch data from the table: "migration_hashes.hashes" using primary key columns */ + migration_hashes_hashes_by_pk?: (migration_hashes_hashesGenqlSelection & { __args: {name: Scalars['String']} }) + /** fetch data from the table: "v_my_friends" */ + my_friends?: (my_friendsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (my_friends_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (my_friends_order_by[] | null), + /** filter the rows returned */ + where?: (my_friends_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_my_friends" */ + my_friends_aggregate?: (my_friends_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (my_friends_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (my_friends_order_by[] | null), + /** filter the rows returned */ + where?: (my_friends_bool_exp | null)} }) + /** Fetch a single news post including draft content for editing. Caller role is verified against public.post_news_role. */ + newsPostAdmin?: (NewsPostGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** List all news posts including drafts for the management area. Caller role is verified against public.post_news_role. */ + newsPostsAdmin?: NewsPostGenqlSelection + /** fetch data from the table: "news_articles" */ + news_articles?: (news_articlesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (news_articles_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (news_articles_order_by[] | null), + /** filter the rows returned */ + where?: (news_articles_bool_exp | null)} }) + /** fetch aggregated fields from the table: "news_articles" */ + news_articles_aggregate?: (news_articles_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (news_articles_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (news_articles_order_by[] | null), + /** filter the rows returned */ + where?: (news_articles_bool_exp | null)} }) + /** fetch data from the table: "news_articles" using primary key columns */ + news_articles_by_pk?: (news_articlesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "notification_preferences" */ + notification_preferences?: (notification_preferencesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (notification_preferences_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (notification_preferences_order_by[] | null), + /** filter the rows returned */ + where?: (notification_preferences_bool_exp | null)} }) + /** fetch aggregated fields from the table: "notification_preferences" */ + notification_preferences_aggregate?: (notification_preferences_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (notification_preferences_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (notification_preferences_order_by[] | null), + /** filter the rows returned */ + where?: (notification_preferences_bool_exp | null)} }) + /** fetch data from the table: "notification_preferences" using primary key columns */ + notification_preferences_by_pk?: (notification_preferencesGenqlSelection & { __args: {channel: Scalars['String'], key: Scalars['String'], steam_id: Scalars['bigint']} }) + /** An array relationship */ + notifications?: (notificationsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (notifications_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (notifications_order_by[] | null), + /** filter the rows returned */ + where?: (notifications_bool_exp | null)} }) + /** An aggregate relationship */ + notifications_aggregate?: (notifications_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (notifications_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (notifications_order_by[] | null), + /** filter the rows returned */ + where?: (notifications_bool_exp | null)} }) + /** fetch data from the table: "notifications" using primary key columns */ + notifications_by_pk?: (notificationsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "pending_match_import_players" */ + pending_match_import_players?: (pending_match_import_playersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (pending_match_import_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?: (pending_match_import_players_order_by[] | null), + /** filter the rows returned */ + where?: (pending_match_import_players_bool_exp | null)} }) + /** fetch aggregated fields from the table: "pending_match_import_players" */ + pending_match_import_players_aggregate?: (pending_match_import_players_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (pending_match_import_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?: (pending_match_import_players_order_by[] | null), + /** filter the rows returned */ + where?: (pending_match_import_players_bool_exp | null)} }) + /** fetch data from the table: "pending_match_import_players" using primary key columns */ + pending_match_import_players_by_pk?: (pending_match_import_playersGenqlSelection & { __args: {steam_id: Scalars['bigint'], valve_match_id: Scalars['numeric']} }) + /** fetch data from the table: "pending_match_imports" */ + pending_match_imports?: (pending_match_importsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (pending_match_imports_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (pending_match_imports_order_by[] | null), + /** filter the rows returned */ + where?: (pending_match_imports_bool_exp | null)} }) + /** fetch aggregated fields from the table: "pending_match_imports" */ + pending_match_imports_aggregate?: (pending_match_imports_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (pending_match_imports_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (pending_match_imports_order_by[] | null), + /** filter the rows returned */ + where?: (pending_match_imports_bool_exp | null)} }) + /** fetch data from the table: "pending_match_imports" using primary key columns */ + pending_match_imports_by_pk?: (pending_match_importsGenqlSelection & { __args: {valve_match_id: Scalars['numeric']} }) + /** fetch data from the table: "player_aim_stats_demo" */ + player_aim_stats_demo?: (player_aim_stats_demoGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_aim_stats_demo_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_aim_stats_demo_order_by[] | null), + /** filter the rows returned */ + where?: (player_aim_stats_demo_bool_exp | null)} }) + /** fetch aggregated fields from the table: "player_aim_stats_demo" */ + player_aim_stats_demo_aggregate?: (player_aim_stats_demo_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_aim_stats_demo_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_aim_stats_demo_order_by[] | null), + /** filter the rows returned */ + where?: (player_aim_stats_demo_bool_exp | null)} }) + /** fetch data from the table: "player_aim_stats_demo" using primary key columns */ + player_aim_stats_demo_by_pk?: (player_aim_stats_demoGenqlSelection & { __args: {attacker_steam_id: Scalars['bigint'], match_map_id: Scalars['uuid']} }) + /** fetch data from the table: "player_aim_weapon_stats" */ + player_aim_weapon_stats?: (player_aim_weapon_statsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_aim_weapon_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?: (player_aim_weapon_stats_order_by[] | null), + /** filter the rows returned */ + where?: (player_aim_weapon_stats_bool_exp | null)} }) + /** fetch aggregated fields from the table: "player_aim_weapon_stats" */ + player_aim_weapon_stats_aggregate?: (player_aim_weapon_stats_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_aim_weapon_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?: (player_aim_weapon_stats_order_by[] | null), + /** filter the rows returned */ + where?: (player_aim_weapon_stats_bool_exp | null)} }) + /** fetch data from the table: "player_aim_weapon_stats" using primary key columns */ + player_aim_weapon_stats_by_pk?: (player_aim_weapon_statsGenqlSelection & { __args: {match_map_id: Scalars['uuid'], steam_id: Scalars['bigint'], weapon_class: Scalars['String']} }) + /** An array relationship */ + player_assists?: (player_assistsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_assists_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_assists_order_by[] | null), + /** filter the rows returned */ + where?: (player_assists_bool_exp | null)} }) + /** An aggregate relationship */ + player_assists_aggregate?: (player_assists_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_assists_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_assists_order_by[] | null), + /** filter the rows returned */ + where?: (player_assists_bool_exp | null)} }) + /** fetch data from the table: "player_assists" using primary key columns */ + player_assists_by_pk?: (player_assistsGenqlSelection & { __args: {attacked_steam_id: Scalars['bigint'], attacker_steam_id: Scalars['bigint'], match_map_id: Scalars['uuid'], time: Scalars['timestamptz']} }) + /** fetch data from the table: "player_career_stats_v" */ + player_career_stats_v?: (player_career_stats_vGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_career_stats_v_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_career_stats_v_order_by[] | null), + /** filter the rows returned */ + where?: (player_career_stats_v_bool_exp | null)} }) + /** fetch aggregated fields from the table: "player_career_stats_v" */ + player_career_stats_v_aggregate?: (player_career_stats_v_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_career_stats_v_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_career_stats_v_order_by[] | null), + /** filter the rows returned */ + where?: (player_career_stats_v_bool_exp | null)} }) + /** An array relationship */ + player_damages?: (player_damagesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_damages_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_damages_order_by[] | null), + /** filter the rows returned */ + where?: (player_damages_bool_exp | null)} }) + /** An aggregate relationship */ + player_damages_aggregate?: (player_damages_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_damages_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_damages_order_by[] | null), + /** filter the rows returned */ + where?: (player_damages_bool_exp | null)} }) + /** fetch data from the table: "player_damages" using primary key columns */ + player_damages_by_pk?: (player_damagesGenqlSelection & { __args: {id: Scalars['uuid'], match_map_id: Scalars['uuid'], time: Scalars['timestamptz']} }) + /** fetch data from the table: "player_elo" */ + player_elo?: (player_eloGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_elo_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_elo_order_by[] | null), + /** filter the rows returned */ + where?: (player_elo_bool_exp | null)} }) + /** fetch aggregated fields from the table: "player_elo" */ + player_elo_aggregate?: (player_elo_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_elo_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_elo_order_by[] | null), + /** filter the rows returned */ + where?: (player_elo_bool_exp | null)} }) + /** fetch data from the table: "player_elo" using primary key columns */ + player_elo_by_pk?: (player_eloGenqlSelection & { __args: {match_id: Scalars['uuid'], steam_id: Scalars['bigint'], type: e_match_types_enum} }) + /** fetch data from the table: "player_faceit_rank_history" */ + player_faceit_rank_history?: (player_faceit_rank_historyGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_faceit_rank_history_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_faceit_rank_history_order_by[] | null), + /** filter the rows returned */ + where?: (player_faceit_rank_history_bool_exp | null)} }) + /** fetch aggregated fields from the table: "player_faceit_rank_history" */ + player_faceit_rank_history_aggregate?: (player_faceit_rank_history_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_faceit_rank_history_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_faceit_rank_history_order_by[] | null), + /** filter the rows returned */ + where?: (player_faceit_rank_history_bool_exp | null)} }) + /** fetch data from the table: "player_faceit_rank_history" using primary key columns */ + player_faceit_rank_history_by_pk?: (player_faceit_rank_historyGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** An array relationship */ + player_flashes?: (player_flashesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_flashes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_flashes_order_by[] | null), + /** filter the rows returned */ + where?: (player_flashes_bool_exp | null)} }) + /** An aggregate relationship */ + player_flashes_aggregate?: (player_flashes_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_flashes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_flashes_order_by[] | null), + /** filter the rows returned */ + where?: (player_flashes_bool_exp | null)} }) + /** fetch data from the table: "player_flashes" using primary key columns */ + player_flashes_by_pk?: (player_flashesGenqlSelection & { __args: {attacked_steam_id: Scalars['bigint'], attacker_steam_id: Scalars['bigint'], match_map_id: Scalars['uuid'], time: Scalars['timestamptz']} }) + /** An array relationship */ + player_kills?: (player_killsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_kills_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_kills_order_by[] | null), + /** filter the rows returned */ + where?: (player_kills_bool_exp | null)} }) + /** An aggregate relationship */ + player_kills_aggregate?: (player_kills_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_kills_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_kills_order_by[] | null), + /** filter the rows returned */ + where?: (player_kills_bool_exp | null)} }) + /** fetch data from the table: "player_kills" using primary key columns */ + player_kills_by_pk?: (player_killsGenqlSelection & { __args: {attacked_steam_id: Scalars['bigint'], attacker_steam_id: Scalars['bigint'], match_map_id: Scalars['uuid'], time: Scalars['timestamptz']} }) + /** fetch data from the table: "player_kills_by_weapon" */ + player_kills_by_weapon?: (player_kills_by_weaponGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_kills_by_weapon_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_kills_by_weapon_order_by[] | null), + /** filter the rows returned */ + where?: (player_kills_by_weapon_bool_exp | null)} }) + /** fetch aggregated fields from the table: "player_kills_by_weapon" */ + player_kills_by_weapon_aggregate?: (player_kills_by_weapon_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_kills_by_weapon_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_kills_by_weapon_order_by[] | null), + /** filter the rows returned */ + where?: (player_kills_by_weapon_bool_exp | null)} }) + /** fetch data from the table: "player_kills_by_weapon" using primary key columns */ + player_kills_by_weapon_by_pk?: (player_kills_by_weaponGenqlSelection & { __args: {player_steam_id: Scalars['bigint'], with: Scalars['String']} }) + /** fetch data from the table: "player_leaderboard_rank" */ + player_leaderboard_rank?: (player_leaderboard_rankGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_leaderboard_rank_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_leaderboard_rank_order_by[] | null), + /** filter the rows returned */ + where?: (player_leaderboard_rank_bool_exp | null)} }) + /** fetch aggregated fields from the table: "player_leaderboard_rank" */ + player_leaderboard_rank_aggregate?: (player_leaderboard_rank_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_leaderboard_rank_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_leaderboard_rank_order_by[] | null), + /** filter the rows returned */ + where?: (player_leaderboard_rank_bool_exp | null)} }) + /** fetch data from the table: "player_match_map_stats" */ + player_match_map_stats?: (player_match_map_statsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_match_map_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?: (player_match_map_stats_order_by[] | null), + /** filter the rows returned */ + where?: (player_match_map_stats_bool_exp | null)} }) + /** fetch aggregated fields from the table: "player_match_map_stats" */ + player_match_map_stats_aggregate?: (player_match_map_stats_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_match_map_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?: (player_match_map_stats_order_by[] | null), + /** filter the rows returned */ + where?: (player_match_map_stats_bool_exp | null)} }) + /** fetch data from the table: "player_match_map_stats" using primary key columns */ + player_match_map_stats_by_pk?: (player_match_map_statsGenqlSelection & { __args: {match_map_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) + /** fetch data from the table: "player_match_performance_v" */ + player_match_performance_v?: (player_match_performance_vGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_match_performance_v_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_performance_v_order_by[] | null), + /** filter the rows returned */ + where?: (player_match_performance_v_bool_exp | null)} }) + /** fetch aggregated fields from the table: "player_match_performance_v" */ + player_match_performance_v_aggregate?: (player_match_performance_v_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_match_performance_v_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_performance_v_order_by[] | null), + /** filter the rows returned */ + where?: (player_match_performance_v_bool_exp | null)} }) + /** fetch data from the table: "player_match_stats_v" */ + player_match_stats_v?: (player_match_stats_vGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_match_stats_v_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_stats_v_order_by[] | null), + /** filter the rows returned */ + where?: (player_match_stats_v_bool_exp | null)} }) + /** fetch aggregated fields from the table: "player_match_stats_v" */ + player_match_stats_v_aggregate?: (player_match_stats_v_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_match_stats_v_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_stats_v_order_by[] | null), + /** filter the rows returned */ + where?: (player_match_stats_v_bool_exp | null)} }) + /** 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)} }) + /** fetch data from the table: "player_objectives" using primary key columns */ + player_objectives_by_pk?: (player_objectivesGenqlSelection & { __args: {match_map_id: Scalars['uuid'], player_steam_id: Scalars['bigint'], time: Scalars['timestamptz']} }) + /** fetch data from the table: "player_performance_v" */ + player_performance_v?: (player_performance_vGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_performance_v_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_performance_v_order_by[] | null), + /** filter the rows returned */ + where?: (player_performance_v_bool_exp | null)} }) + /** fetch aggregated fields from the table: "player_performance_v" */ + player_performance_v_aggregate?: (player_performance_v_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_performance_v_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_performance_v_order_by[] | null), + /** filter the rows returned */ + where?: (player_performance_v_bool_exp | null)} }) + /** fetch data from the table: "player_premier_rank_history" */ + player_premier_rank_history?: (player_premier_rank_historyGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_premier_rank_history_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_premier_rank_history_order_by[] | null), + /** filter the rows returned */ + where?: (player_premier_rank_history_bool_exp | null)} }) + /** fetch aggregated fields from the table: "player_premier_rank_history" */ + player_premier_rank_history_aggregate?: (player_premier_rank_history_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_premier_rank_history_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_premier_rank_history_order_by[] | null), + /** filter the rows returned */ + where?: (player_premier_rank_history_bool_exp | null)} }) + /** fetch data from the table: "player_premier_rank_history" using primary key columns */ + player_premier_rank_history_by_pk?: (player_premier_rank_historyGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "player_sanctions" */ + player_sanctions?: (player_sanctionsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_sanctions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_sanctions_order_by[] | null), + /** filter the rows returned */ + where?: (player_sanctions_bool_exp | null)} }) + /** fetch aggregated fields from the table: "player_sanctions" */ + player_sanctions_aggregate?: (player_sanctions_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_sanctions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_sanctions_order_by[] | null), + /** filter the rows returned */ + where?: (player_sanctions_bool_exp | null)} }) + /** fetch data from the table: "player_sanctions" using primary key columns */ + player_sanctions_by_pk?: (player_sanctionsGenqlSelection & { __args: {created_at: Scalars['timestamptz'], id: Scalars['uuid']} }) + /** An array relationship */ + player_season_stats?: (player_season_statsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_season_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?: (player_season_stats_order_by[] | null), + /** filter the rows returned */ + where?: (player_season_stats_bool_exp | null)} }) + /** An aggregate relationship */ + player_season_stats_aggregate?: (player_season_stats_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_season_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?: (player_season_stats_order_by[] | null), + /** filter the rows returned */ + where?: (player_season_stats_bool_exp | null)} }) + /** fetch data from the table: "player_season_stats" using primary key columns */ + player_season_stats_by_pk?: (player_season_statsGenqlSelection & { __args: {player_steam_id: Scalars['bigint'], season_id: Scalars['uuid']} }) + /** fetch data from the table: "player_stats" */ + player_stats?: (player_statsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (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?: (player_stats_order_by[] | null), + /** filter the rows returned */ + where?: (player_stats_bool_exp | null)} }) + /** fetch aggregated fields from the table: "player_stats" */ + player_stats_aggregate?: (player_stats_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (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?: (player_stats_order_by[] | null), + /** filter the rows returned */ + where?: (player_stats_bool_exp | null)} }) + /** fetch data from the table: "player_stats" using primary key columns */ + player_stats_by_pk?: (player_statsGenqlSelection & { __args: {player_steam_id: Scalars['bigint']} }) + /** fetch data from the table: "player_steam_bot_friend" */ + player_steam_bot_friend?: (player_steam_bot_friendGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_steam_bot_friend_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_steam_bot_friend_order_by[] | null), + /** filter the rows returned */ + where?: (player_steam_bot_friend_bool_exp | null)} }) + /** fetch aggregated fields from the table: "player_steam_bot_friend" */ + player_steam_bot_friend_aggregate?: (player_steam_bot_friend_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_steam_bot_friend_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_steam_bot_friend_order_by[] | null), + /** filter the rows returned */ + where?: (player_steam_bot_friend_bool_exp | null)} }) + /** fetch data from the table: "player_steam_bot_friend" using primary key columns */ + player_steam_bot_friend_by_pk?: (player_steam_bot_friendGenqlSelection & { __args: {steam_id: Scalars['bigint']} }) + /** fetch data from the table: "player_steam_match_auth" */ + player_steam_match_auth?: (player_steam_match_authGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_steam_match_auth_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_steam_match_auth_order_by[] | null), + /** filter the rows returned */ + where?: (player_steam_match_auth_bool_exp | null)} }) + /** fetch aggregated fields from the table: "player_steam_match_auth" */ + player_steam_match_auth_aggregate?: (player_steam_match_auth_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_steam_match_auth_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_steam_match_auth_order_by[] | null), + /** filter the rows returned */ + where?: (player_steam_match_auth_bool_exp | null)} }) + /** fetch data from the table: "player_steam_match_auth" using primary key columns */ + player_steam_match_auth_by_pk?: (player_steam_match_authGenqlSelection & { __args: {steam_id: Scalars['bigint']} }) + /** fetch data from the table: "player_unused_utility" */ + player_unused_utility?: (player_unused_utilityGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_unused_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_unused_utility_order_by[] | null), + /** filter the rows returned */ + where?: (player_unused_utility_bool_exp | null)} }) + /** fetch aggregated fields from the table: "player_unused_utility" */ + player_unused_utility_aggregate?: (player_unused_utility_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_unused_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_unused_utility_order_by[] | null), + /** filter the rows returned */ + where?: (player_unused_utility_bool_exp | null)} }) + /** fetch data from the table: "player_unused_utility" using primary key columns */ + player_unused_utility_by_pk?: (player_unused_utilityGenqlSelection & { __args: {match_map_id: Scalars['uuid'], player_steam_id: Scalars['bigint']} }) + /** An array relationship */ + player_utility?: (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_utility_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)} }) + /** fetch data from the table: "player_utility" using primary key columns */ + player_utility_by_pk?: (player_utilityGenqlSelection & { __args: {attacker_steam_id: Scalars['bigint'], match_map_id: Scalars['uuid'], time: Scalars['timestamptz']} }) + /** fetch data from the table: "player_weapon_stats_v" */ + player_weapon_stats_v?: (player_weapon_stats_vGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_weapon_stats_v_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_weapon_stats_v_order_by[] | null), + /** filter the rows returned */ + where?: (player_weapon_stats_v_bool_exp | null)} }) + /** fetch aggregated fields from the table: "player_weapon_stats_v" */ + player_weapon_stats_v_aggregate?: (player_weapon_stats_v_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_weapon_stats_v_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_weapon_stats_v_order_by[] | null), + /** filter the rows returned */ + where?: (player_weapon_stats_v_bool_exp | null)} }) + /** fetch data from the table: "players" */ + players?: (playersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (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?: (players_order_by[] | null), + /** filter the rows returned */ + where?: (players_bool_exp | null)} }) + /** fetch aggregated fields from the table: "players" */ + players_aggregate?: (players_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (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?: (players_order_by[] | null), + /** filter the rows returned */ + where?: (players_bool_exp | null)} }) + /** fetch data from the table: "players" using primary key columns */ + players_by_pk?: (playersGenqlSelection & { __args: {steam_id: Scalars['bigint']} }) + /** fetch data from the table: "plugin_versions" */ + plugin_versions?: (plugin_versionsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (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?: (plugin_versions_order_by[] | null), + /** filter the rows returned */ + where?: (plugin_versions_bool_exp | null)} }) + /** fetch aggregated fields from the table: "plugin_versions" */ + plugin_versions_aggregate?: (plugin_versions_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (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?: (plugin_versions_order_by[] | null), + /** filter the rows returned */ + where?: (plugin_versions_bool_exp | null)} }) + /** fetch data from the table: "plugin_versions" using primary key columns */ + plugin_versions_by_pk?: (plugin_versionsGenqlSelection & { __args: {runtime: e_plugin_runtimes_enum, version: Scalars['String']} }) + /** fetch data from the table: "push_subscriptions" */ + push_subscriptions?: (push_subscriptionsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (push_subscriptions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (push_subscriptions_order_by[] | null), + /** filter the rows returned */ + where?: (push_subscriptions_bool_exp | null)} }) + /** fetch aggregated fields from the table: "push_subscriptions" */ + push_subscriptions_aggregate?: (push_subscriptions_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (push_subscriptions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (push_subscriptions_order_by[] | null), + /** filter the rows returned */ + where?: (push_subscriptions_bool_exp | null)} }) + /** fetch data from the table: "push_subscriptions" using primary key columns */ + push_subscriptions_by_pk?: (push_subscriptionsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** Read file content from game server */ + readServerFile?: (FileContentResponseGenqlSelection & { __args: {file_path: Scalars['String'], node_id: Scalars['String'], server_id?: (Scalars['String'] | null)} }) + /** fetch data from the table: "v_role_permissions" */ + role_permissions?: (role_permissionsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (role_permissions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (role_permissions_order_by[] | null), + /** filter the rows returned */ + where?: (role_permissions_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_role_permissions" */ + role_permissions_aggregate?: (role_permissions_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (role_permissions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (role_permissions_order_by[] | null), + /** filter the rows returned */ + where?: (role_permissions_bool_exp | null)} }) + /** fetch data from the table: "seasons" */ + seasons?: (seasonsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (seasons_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (seasons_order_by[] | null), + /** filter the rows returned */ + where?: (seasons_bool_exp | null)} }) + /** fetch aggregated fields from the table: "seasons" */ + seasons_aggregate?: (seasons_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (seasons_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (seasons_order_by[] | null), + /** filter the rows returned */ + where?: (seasons_bool_exp | null)} }) + /** fetch data from the table: "seasons" using primary key columns */ + seasons_by_pk?: (seasonsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "server_regions" */ + server_regions?: (server_regionsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (server_regions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (server_regions_order_by[] | null), + /** filter the rows returned */ + where?: (server_regions_bool_exp | null)} }) + /** fetch aggregated fields from the table: "server_regions" */ + server_regions_aggregate?: (server_regions_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (server_regions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (server_regions_order_by[] | null), + /** filter the rows returned */ + where?: (server_regions_bool_exp | null)} }) + /** fetch data from the table: "server_regions" using primary key columns */ + server_regions_by_pk?: (server_regionsGenqlSelection & { __args: {value: Scalars['String']} }) + /** An array relationship */ + servers?: (serversGenqlSelection & { __args?: { + /** distinct select on columns */ + 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?: (servers_order_by[] | null), + /** filter the rows returned */ + where?: (servers_bool_exp | null)} }) + /** An aggregate relationship */ + servers_aggregate?: (servers_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + 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?: (servers_order_by[] | null), + /** filter the rows returned */ + where?: (servers_bool_exp | null)} }) + /** fetch data from the table: "servers" using primary key columns */ + servers_by_pk?: (serversGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "settings" */ + settings?: (settingsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (settings_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (settings_order_by[] | null), + /** filter the rows returned */ + where?: (settings_bool_exp | null)} }) + /** fetch aggregated fields from the table: "settings" */ + settings_aggregate?: (settings_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (settings_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (settings_order_by[] | null), + /** filter the rows returned */ + where?: (settings_bool_exp | null)} }) + /** fetch data from the table: "settings" using primary key columns */ + settings_by_pk?: (settingsGenqlSelection & { __args: {name: Scalars['String']} }) + /** Steam presence bot admin dashboard status */ + steamPresenceAdminStatus?: SteamPresenceAdminStatusOutputGenqlSelection + /** fetch data from the table: "steam_account_claims" */ + steam_account_claims?: (steam_account_claimsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (steam_account_claims_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (steam_account_claims_order_by[] | null), + /** filter the rows returned */ + where?: (steam_account_claims_bool_exp | null)} }) + /** fetch aggregated fields from the table: "steam_account_claims" */ + steam_account_claims_aggregate?: (steam_account_claims_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (steam_account_claims_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (steam_account_claims_order_by[] | null), + /** filter the rows returned */ + where?: (steam_account_claims_bool_exp | null)} }) + /** fetch data from the table: "steam_account_claims" using primary key columns */ + steam_account_claims_by_pk?: (steam_account_claimsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "steam_accounts" */ + steam_accounts?: (steam_accountsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (steam_accounts_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (steam_accounts_order_by[] | null), + /** filter the rows returned */ + where?: (steam_accounts_bool_exp | null)} }) + /** fetch aggregated fields from the table: "steam_accounts" */ + steam_accounts_aggregate?: (steam_accounts_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (steam_accounts_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (steam_accounts_order_by[] | null), + /** filter the rows returned */ + where?: (steam_accounts_bool_exp | null)} }) + /** fetch data from the table: "steam_accounts" using primary key columns */ + steam_accounts_by_pk?: (steam_accountsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "system_alerts" */ + system_alerts?: (system_alertsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (system_alerts_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (system_alerts_order_by[] | null), + /** filter the rows returned */ + where?: (system_alerts_bool_exp | null)} }) + /** fetch aggregated fields from the table: "system_alerts" */ + system_alerts_aggregate?: (system_alerts_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (system_alerts_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (system_alerts_order_by[] | null), + /** filter the rows returned */ + where?: (system_alerts_bool_exp | null)} }) + /** fetch data from the table: "system_alerts" using primary key columns */ + system_alerts_by_pk?: (system_alertsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** teamCalendarUrl */ + teamCalendarUrl?: (TeamCalendarOutputGenqlSelection & { __args: {team_id: Scalars['uuid']} }) + /** An array relationship */ + team_invites?: (team_invitesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (team_invites_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_invites_order_by[] | null), + /** filter the rows returned */ + where?: (team_invites_bool_exp | null)} }) + /** An aggregate relationship */ + team_invites_aggregate?: (team_invites_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (team_invites_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_invites_order_by[] | null), + /** filter the rows returned */ + where?: (team_invites_bool_exp | null)} }) + /** fetch data from the table: "team_invites" using primary key columns */ + team_invites_by_pk?: (team_invitesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "team_roster" */ + team_roster?: (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)} }) + /** fetch aggregated fields from the table: "team_roster" */ + team_roster_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)} }) + /** fetch data from the table: "team_roster" using primary key columns */ + team_roster_by_pk?: (team_rosterGenqlSelection & { __args: {player_steam_id: Scalars['bigint'], team_id: Scalars['uuid']} }) + /** fetch data from the table: "team_scrim_alerts" */ + team_scrim_alerts?: (team_scrim_alertsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (team_scrim_alerts_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_alerts_order_by[] | null), + /** filter the rows returned */ + where?: (team_scrim_alerts_bool_exp | null)} }) + /** fetch aggregated fields from the table: "team_scrim_alerts" */ + team_scrim_alerts_aggregate?: (team_scrim_alerts_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (team_scrim_alerts_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_alerts_order_by[] | null), + /** filter the rows returned */ + where?: (team_scrim_alerts_bool_exp | null)} }) + /** fetch data from the table: "team_scrim_alerts" using primary key columns */ + team_scrim_alerts_by_pk?: (team_scrim_alertsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "team_scrim_availability" */ + team_scrim_availability?: (team_scrim_availabilityGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (team_scrim_availability_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_availability_order_by[] | null), + /** filter the rows returned */ + where?: (team_scrim_availability_bool_exp | null)} }) + /** fetch aggregated fields from the table: "team_scrim_availability" */ + team_scrim_availability_aggregate?: (team_scrim_availability_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (team_scrim_availability_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_availability_order_by[] | null), + /** filter the rows returned */ + where?: (team_scrim_availability_bool_exp | null)} }) + /** fetch data from the table: "team_scrim_availability" using primary key columns */ + team_scrim_availability_by_pk?: (team_scrim_availabilityGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "team_scrim_request_proposals" */ + team_scrim_request_proposals?: (team_scrim_request_proposalsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (team_scrim_request_proposals_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_request_proposals_order_by[] | null), + /** filter the rows returned */ + where?: (team_scrim_request_proposals_bool_exp | null)} }) + /** fetch aggregated fields from the table: "team_scrim_request_proposals" */ + team_scrim_request_proposals_aggregate?: (team_scrim_request_proposals_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (team_scrim_request_proposals_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_request_proposals_order_by[] | null), + /** filter the rows returned */ + where?: (team_scrim_request_proposals_bool_exp | null)} }) + /** fetch data from the table: "team_scrim_request_proposals" using primary key columns */ + team_scrim_request_proposals_by_pk?: (team_scrim_request_proposalsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "team_scrim_requests" */ + team_scrim_requests?: (team_scrim_requestsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (team_scrim_requests_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (team_scrim_requests_order_by[] | null), + /** filter the rows returned */ + where?: (team_scrim_requests_bool_exp | null)} }) + /** fetch aggregated fields from the table: "team_scrim_requests" */ + team_scrim_requests_aggregate?: (team_scrim_requests_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (team_scrim_requests_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (team_scrim_requests_order_by[] | null), + /** filter the rows returned */ + where?: (team_scrim_requests_bool_exp | null)} }) + /** fetch data from the table: "team_scrim_requests" using primary key columns */ + team_scrim_requests_by_pk?: (team_scrim_requestsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "team_scrim_settings" */ + team_scrim_settings?: (team_scrim_settingsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (team_scrim_settings_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_settings_order_by[] | null), + /** filter the rows returned */ + where?: (team_scrim_settings_bool_exp | null)} }) + /** fetch aggregated fields from the table: "team_scrim_settings" */ + team_scrim_settings_aggregate?: (team_scrim_settings_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (team_scrim_settings_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_settings_order_by[] | null), + /** filter the rows returned */ + where?: (team_scrim_settings_bool_exp | null)} }) + /** fetch data from the table: "team_scrim_settings" using primary key columns */ + team_scrim_settings_by_pk?: (team_scrim_settingsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "team_suggestions" */ + team_suggestions?: (team_suggestionsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (team_suggestions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_suggestions_order_by[] | null), + /** filter the rows returned */ + where?: (team_suggestions_bool_exp | null)} }) + /** fetch aggregated fields from the table: "team_suggestions" */ + team_suggestions_aggregate?: (team_suggestions_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (team_suggestions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_suggestions_order_by[] | null), + /** filter the rows returned */ + where?: (team_suggestions_bool_exp | null)} }) + /** fetch data from the table: "team_suggestions" using primary key columns */ + team_suggestions_by_pk?: (team_suggestionsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "teams" */ + teams?: (teamsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (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?: (teams_order_by[] | null), + /** filter the rows returned */ + where?: (teams_bool_exp | null)} }) + /** fetch aggregated fields from the table: "teams" */ + teams_aggregate?: (teams_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (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?: (teams_order_by[] | null), + /** filter the rows returned */ + where?: (teams_bool_exp | null)} }) + /** fetch data from the table: "teams" using primary key columns */ + teams_by_pk?: (teamsGenqlSelection & { __args: {id: Scalars['uuid']} }) + telemetryStats?: (TelemetryStatsGenqlSelection & { __args?: {includeSelf?: (Scalars['Boolean'] | null)} }) + /** fetch data from the table: "tournament_awards" */ + tournament_awards?: (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)} }) + /** fetch aggregated fields from the table: "tournament_awards" */ + tournament_awards_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)} }) + /** fetch data from the table: "tournament_awards" using primary key columns */ + tournament_awards_by_pk?: (tournament_awardsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** An array relationship */ + tournament_brackets?: (tournament_bracketsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_brackets_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_brackets_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_brackets_bool_exp | null)} }) + /** An aggregate relationship */ + tournament_brackets_aggregate?: (tournament_brackets_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_brackets_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_brackets_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_brackets_bool_exp | null)} }) + /** fetch data from the table: "tournament_brackets" using primary key columns */ + tournament_brackets_by_pk?: (tournament_bracketsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** An array relationship */ + tournament_categories?: (tournament_categoriesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_categories_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_categories_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_categories_bool_exp | null)} }) + /** An aggregate relationship */ + tournament_categories_aggregate?: (tournament_categories_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_categories_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_categories_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_categories_bool_exp | null)} }) + /** fetch data from the table: "tournament_categories" using primary key columns */ + tournament_categories_by_pk?: (tournament_categoriesGenqlSelection & { __args: {category: e_tournament_categories_enum, tournament_id: Scalars['uuid']} }) + /** An array relationship */ + tournament_free_agents?: (tournament_free_agentsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_free_agents_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_free_agents_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_free_agents_bool_exp | null)} }) + /** An aggregate relationship */ + tournament_free_agents_aggregate?: (tournament_free_agents_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_free_agents_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_free_agents_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_free_agents_bool_exp | null)} }) + /** fetch data from the table: "tournament_free_agents" using primary key columns */ + tournament_free_agents_by_pk?: (tournament_free_agentsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "tournament_invite_code_uses" */ + tournament_invite_code_uses?: (tournament_invite_code_usesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_invite_code_uses_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_invite_code_uses_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_invite_code_uses_bool_exp | null)} }) + /** fetch aggregated fields from the table: "tournament_invite_code_uses" */ + tournament_invite_code_uses_aggregate?: (tournament_invite_code_uses_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_invite_code_uses_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_invite_code_uses_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_invite_code_uses_bool_exp | null)} }) + /** fetch data from the table: "tournament_invite_code_uses" using primary key columns */ + tournament_invite_code_uses_by_pk?: (tournament_invite_code_usesGenqlSelection & { __args: {invite_code_id: Scalars['uuid'], player_steam_id: Scalars['bigint']} }) + /** fetch data from the table: "tournament_invite_codes" */ + tournament_invite_codes?: (tournament_invite_codesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_invite_codes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_invite_codes_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_invite_codes_bool_exp | null)} }) + /** fetch aggregated fields from the table: "tournament_invite_codes" */ + tournament_invite_codes_aggregate?: (tournament_invite_codes_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_invite_codes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_invite_codes_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_invite_codes_bool_exp | null)} }) + /** fetch data from the table: "tournament_invite_codes" using primary key columns */ + tournament_invite_codes_by_pk?: (tournament_invite_codesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "tournament_invites" */ + tournament_invites?: (tournament_invitesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_invites_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_invites_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_invites_bool_exp | null)} }) + /** fetch aggregated fields from the table: "tournament_invites" */ + tournament_invites_aggregate?: (tournament_invites_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_invites_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_invites_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_invites_bool_exp | null)} }) + /** fetch data from the table: "tournament_invites" using primary key columns */ + tournament_invites_by_pk?: (tournament_invitesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "tournament_leaderboard_entries" */ + tournament_leaderboard_entries?: (tournament_leaderboard_entriesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_leaderboard_entries_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_leaderboard_entries_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_leaderboard_entries_bool_exp | null)} }) + /** fetch aggregated fields from the table: "tournament_leaderboard_entries" */ + tournament_leaderboard_entries_aggregate?: (tournament_leaderboard_entries_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_leaderboard_entries_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_leaderboard_entries_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_leaderboard_entries_bool_exp | null)} }) + /** fetch data from the table: "tournament_no_shows" */ + tournament_no_shows?: (tournament_no_showsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_no_shows_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_no_shows_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_no_shows_bool_exp | null)} }) + /** fetch aggregated fields from the table: "tournament_no_shows" */ + tournament_no_shows_aggregate?: (tournament_no_shows_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_no_shows_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_no_shows_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_no_shows_bool_exp | null)} }) + /** fetch data from the table: "tournament_no_shows" using primary key columns */ + tournament_no_shows_by_pk?: (tournament_no_showsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "tournament_organizer_teams" */ + tournament_organizer_teams?: (tournament_organizer_teamsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_organizer_teams_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_organizer_teams_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_organizer_teams_bool_exp | null)} }) + /** fetch aggregated fields from the table: "tournament_organizer_teams" */ + tournament_organizer_teams_aggregate?: (tournament_organizer_teams_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_organizer_teams_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_organizer_teams_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_organizer_teams_bool_exp | null)} }) + /** fetch data from the table: "tournament_organizer_teams" using primary key columns */ + tournament_organizer_teams_by_pk?: (tournament_organizer_teamsGenqlSelection & { __args: {team_id: Scalars['uuid'], tournament_id: Scalars['uuid']} }) + /** An array relationship */ + tournament_organizers?: (tournament_organizersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_organizers_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_organizers_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_organizers_bool_exp | null)} }) + /** An aggregate relationship */ + tournament_organizers_aggregate?: (tournament_organizers_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_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?: (tournament_organizers_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_organizers_bool_exp | null)} }) + /** fetch data from the table: "tournament_organizers" using primary key columns */ + tournament_organizers_by_pk?: (tournament_organizersGenqlSelection & { __args: {steam_id: Scalars['bigint'], tournament_id: Scalars['uuid']} }) + /** fetch data from the table: "tournament_prizes" */ + tournament_prizes?: (tournament_prizesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_prizes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_prizes_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_prizes_bool_exp | null)} }) + /** fetch aggregated fields from the table: "tournament_prizes" */ + tournament_prizes_aggregate?: (tournament_prizes_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_prizes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_prizes_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_prizes_bool_exp | null)} }) + /** fetch data from the table: "tournament_prizes" using primary key columns */ + tournament_prizes_by_pk?: (tournament_prizesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "tournament_registration_unlocks" */ + tournament_registration_unlocks?: (tournament_registration_unlocksGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_registration_unlocks_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_registration_unlocks_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_registration_unlocks_bool_exp | null)} }) + /** fetch aggregated fields from the table: "tournament_registration_unlocks" */ + tournament_registration_unlocks_aggregate?: (tournament_registration_unlocks_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_registration_unlocks_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_registration_unlocks_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_registration_unlocks_bool_exp | null)} }) + /** fetch data from the table: "tournament_stage_windows" */ + tournament_stage_windows?: (tournament_stage_windowsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_stage_windows_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_stage_windows_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_stage_windows_bool_exp | null)} }) + /** fetch aggregated fields from the table: "tournament_stage_windows" */ + tournament_stage_windows_aggregate?: (tournament_stage_windows_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_stage_windows_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_stage_windows_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_stage_windows_bool_exp | null)} }) + /** fetch data from the table: "tournament_stage_windows" using primary key columns */ + tournament_stage_windows_by_pk?: (tournament_stage_windowsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** 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)} }) + /** fetch data from the table: "tournament_stages" using primary key columns */ + tournament_stages_by_pk?: (tournament_stagesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "tournament_team_invites" */ + tournament_team_invites?: (tournament_team_invitesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_team_invites_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_invites_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_team_invites_bool_exp | null)} }) + /** fetch aggregated fields from the table: "tournament_team_invites" */ + tournament_team_invites_aggregate?: (tournament_team_invites_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_team_invites_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_invites_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_team_invites_bool_exp | null)} }) + /** fetch data from the table: "tournament_team_invites" using primary key columns */ + tournament_team_invites_by_pk?: (tournament_team_invitesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "tournament_team_roster" */ + tournament_team_roster?: (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)} }) + /** fetch aggregated fields from the table: "tournament_team_roster" */ + tournament_team_roster_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)} }) + /** fetch data from the table: "tournament_team_roster" using primary key columns */ + tournament_team_roster_by_pk?: (tournament_team_rosterGenqlSelection & { __args: {player_steam_id: Scalars['bigint'], tournament_id: Scalars['uuid']} }) + /** An array relationship */ + tournament_teams?: (tournament_teamsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_teams_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_teams_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_teams_bool_exp | null)} }) + /** An aggregate relationship */ + tournament_teams_aggregate?: (tournament_teams_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_teams_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_teams_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_teams_bool_exp | null)} }) + /** fetch data from the table: "tournament_teams" using primary key columns */ + tournament_teams_by_pk?: (tournament_teamsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** 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)} }) + /** fetch data from the table: "tournaments" using primary key columns */ + tournaments_by_pk?: (tournamentsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** Which way everybody misses one lineup, from their practice throws */ + utilityLineupMissPattern?: (UtilityMissPatternOutputGenqlSelection & { __args: {utility_lineup_id: Scalars['uuid']} }) + /** Report a player's mined utility throws for a match */ + utilityMatchUtilityReport?: (UtilityUtilityReportOutputGenqlSelection & { __args: {match_id: Scalars['uuid'], steam_id?: (Scalars['String'] | null)} }) + /** Rank what to practise next on a map from the mined meta */ + utilityPracticePlan?: (UtilityPracticePlanOutputGenqlSelection & { __args: {limit?: (Scalars['Int'] | null), map_name: Scalars['String'], order?: (Scalars['String'] | null), side?: (Scalars['String'] | null)} }) + /** Dedicated practice servers free to book right now */ + utilityPracticeServers?: UtilityPracticeServersOutputGenqlSelection + utilityPracticeWhereAmI?: UtilityPracticeWhereOutputGenqlSelection + /** Read the practice server solver's calibration gate */ + utilitySolverCalibration?: (UtilityCalibrationOutputGenqlSelection & { __args: {session_id: Scalars['uuid']} }) + /** Aggregate a team's mined utility throws against its saved lineups */ + utilityTeamUtilityReport?: (UtilityTeamUtilityOutputGenqlSelection & { __args: {limit?: (Scalars['Int'] | null), map_name?: (Scalars['String'] | null), team_id: Scalars['uuid']} }) + /** fetch data from the table: "utility_collection_items" */ + utility_collection_items?: (utility_collection_itemsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_collection_items_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_collection_items_order_by[] | null), + /** filter the rows returned */ + where?: (utility_collection_items_bool_exp | null)} }) + /** fetch aggregated fields from the table: "utility_collection_items" */ + utility_collection_items_aggregate?: (utility_collection_items_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_collection_items_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_collection_items_order_by[] | null), + /** filter the rows returned */ + where?: (utility_collection_items_bool_exp | null)} }) + /** fetch data from the table: "utility_collection_items" using primary key columns */ + utility_collection_items_by_pk?: (utility_collection_itemsGenqlSelection & { __args: {collection_id: Scalars['uuid'], utility_lineup_id: Scalars['uuid']} }) + /** fetch data from the table: "utility_collections" */ + utility_collections?: (utility_collectionsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_collections_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_collections_order_by[] | null), + /** filter the rows returned */ + where?: (utility_collections_bool_exp | null)} }) + /** fetch aggregated fields from the table: "utility_collections" */ + utility_collections_aggregate?: (utility_collections_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_collections_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_collections_order_by[] | null), + /** filter the rows returned */ + where?: (utility_collections_bool_exp | null)} }) + /** fetch data from the table: "utility_collections" using primary key columns */ + utility_collections_by_pk?: (utility_collectionsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "utility_demo_mines" */ + utility_demo_mines?: (utility_demo_minesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_demo_mines_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_demo_mines_order_by[] | null), + /** filter the rows returned */ + where?: (utility_demo_mines_bool_exp | null)} }) + /** fetch aggregated fields from the table: "utility_demo_mines" */ + utility_demo_mines_aggregate?: (utility_demo_mines_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_demo_mines_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_demo_mines_order_by[] | null), + /** filter the rows returned */ + where?: (utility_demo_mines_bool_exp | null)} }) + /** fetch data from the table: "utility_demo_mines" using primary key columns */ + utility_demo_mines_by_pk?: (utility_demo_minesGenqlSelection & { __args: {match_map_demo_id: Scalars['uuid']} }) + /** fetch data from the table: "utility_demo_throws" */ + utility_demo_throws?: (utility_demo_throwsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_demo_throws_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_demo_throws_order_by[] | null), + /** filter the rows returned */ + where?: (utility_demo_throws_bool_exp | null)} }) + /** fetch aggregated fields from the table: "utility_demo_throws" */ + utility_demo_throws_aggregate?: (utility_demo_throws_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_demo_throws_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_demo_throws_order_by[] | null), + /** filter the rows returned */ + where?: (utility_demo_throws_bool_exp | null)} }) + /** fetch data from the table: "utility_demo_throws" using primary key columns */ + utility_demo_throws_by_pk?: (utility_demo_throwsGenqlSelection & { __args: {grenade_id: Scalars['Int'], match_map_demo_id: Scalars['uuid']} }) + /** fetch data from the table: "utility_drift_results" */ + utility_drift_results?: (utility_drift_resultsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_drift_results_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_drift_results_order_by[] | null), + /** filter the rows returned */ + where?: (utility_drift_results_bool_exp | null)} }) + /** fetch aggregated fields from the table: "utility_drift_results" */ + utility_drift_results_aggregate?: (utility_drift_results_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_drift_results_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_drift_results_order_by[] | null), + /** filter the rows returned */ + where?: (utility_drift_results_bool_exp | null)} }) + /** fetch data from the table: "utility_drift_results" using primary key columns */ + utility_drift_results_by_pk?: (utility_drift_resultsGenqlSelection & { __args: {utility_drift_scan_id: Scalars['uuid'], utility_lineup_id: Scalars['uuid']} }) + /** fetch data from the table: "utility_drift_scans" */ + utility_drift_scans?: (utility_drift_scansGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_drift_scans_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_drift_scans_order_by[] | null), + /** filter the rows returned */ + where?: (utility_drift_scans_bool_exp | null)} }) + /** fetch aggregated fields from the table: "utility_drift_scans" */ + utility_drift_scans_aggregate?: (utility_drift_scans_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_drift_scans_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_drift_scans_order_by[] | null), + /** filter the rows returned */ + where?: (utility_drift_scans_bool_exp | null)} }) + /** fetch data from the table: "utility_drift_scans" using primary key columns */ + utility_drift_scans_by_pk?: (utility_drift_scansGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "utility_lineup_favorites" */ + utility_lineup_favorites?: (utility_lineup_favoritesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_lineup_favorites_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_lineup_favorites_order_by[] | null), + /** filter the rows returned */ + where?: (utility_lineup_favorites_bool_exp | null)} }) + /** fetch aggregated fields from the table: "utility_lineup_favorites" */ + utility_lineup_favorites_aggregate?: (utility_lineup_favorites_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_lineup_favorites_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_lineup_favorites_order_by[] | null), + /** filter the rows returned */ + where?: (utility_lineup_favorites_bool_exp | null)} }) + /** fetch data from the table: "utility_lineup_favorites" using primary key columns */ + utility_lineup_favorites_by_pk?: (utility_lineup_favoritesGenqlSelection & { __args: {steam_id: Scalars['bigint'], utility_lineup_id: Scalars['uuid']} }) + /** fetch data from the table: "utility_lineup_progress" */ + utility_lineup_progress?: (utility_lineup_progressGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_lineup_progress_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_lineup_progress_order_by[] | null), + /** filter the rows returned */ + where?: (utility_lineup_progress_bool_exp | null)} }) + /** fetch aggregated fields from the table: "utility_lineup_progress" */ + utility_lineup_progress_aggregate?: (utility_lineup_progress_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_lineup_progress_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_lineup_progress_order_by[] | null), + /** filter the rows returned */ + where?: (utility_lineup_progress_bool_exp | null)} }) + /** fetch data from the table: "utility_lineup_progress" using primary key columns */ + utility_lineup_progress_by_pk?: (utility_lineup_progressGenqlSelection & { __args: {steam_id: Scalars['bigint'], utility_lineup_id: Scalars['uuid']} }) + /** fetch data from the table: "utility_lineup_renders" */ + utility_lineup_renders?: (utility_lineup_rendersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_lineup_renders_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_lineup_renders_order_by[] | null), + /** filter the rows returned */ + where?: (utility_lineup_renders_bool_exp | null)} }) + /** fetch aggregated fields from the table: "utility_lineup_renders" */ + utility_lineup_renders_aggregate?: (utility_lineup_renders_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_lineup_renders_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_lineup_renders_order_by[] | null), + /** filter the rows returned */ + where?: (utility_lineup_renders_bool_exp | null)} }) + /** fetch data from the table: "utility_lineup_renders" using primary key columns */ + utility_lineup_renders_by_pk?: (utility_lineup_rendersGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "utility_lineup_repairs" */ + utility_lineup_repairs?: (utility_lineup_repairsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_lineup_repairs_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_lineup_repairs_order_by[] | null), + /** filter the rows returned */ + where?: (utility_lineup_repairs_bool_exp | null)} }) + /** fetch aggregated fields from the table: "utility_lineup_repairs" */ + utility_lineup_repairs_aggregate?: (utility_lineup_repairs_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_lineup_repairs_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_lineup_repairs_order_by[] | null), + /** filter the rows returned */ + where?: (utility_lineup_repairs_bool_exp | null)} }) + /** fetch data from the table: "utility_lineup_repairs" using primary key columns */ + utility_lineup_repairs_by_pk?: (utility_lineup_repairsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "utility_lineup_votes" */ + utility_lineup_votes?: (utility_lineup_votesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_lineup_votes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_lineup_votes_order_by[] | null), + /** filter the rows returned */ + where?: (utility_lineup_votes_bool_exp | null)} }) + /** fetch aggregated fields from the table: "utility_lineup_votes" */ + utility_lineup_votes_aggregate?: (utility_lineup_votes_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_lineup_votes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_lineup_votes_order_by[] | null), + /** filter the rows returned */ + where?: (utility_lineup_votes_bool_exp | null)} }) + /** fetch data from the table: "utility_lineup_votes" using primary key columns */ + utility_lineup_votes_by_pk?: (utility_lineup_votesGenqlSelection & { __args: {steam_id: Scalars['bigint'], utility_lineup_id: Scalars['uuid']} }) + /** An array relationship */ + utility_lineups?: (utility_lineupsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_lineups_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_lineups_order_by[] | null), + /** filter the rows returned */ + where?: (utility_lineups_bool_exp | null)} }) + /** An aggregate relationship */ + utility_lineups_aggregate?: (utility_lineups_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_lineups_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_lineups_order_by[] | null), + /** filter the rows returned */ + where?: (utility_lineups_bool_exp | null)} }) + /** fetch data from the table: "utility_lineups" using primary key columns */ + utility_lineups_by_pk?: (utility_lineupsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "utility_meta_lineups" */ + utility_meta_lineups?: (utility_meta_lineupsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_meta_lineups_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_meta_lineups_order_by[] | null), + /** filter the rows returned */ + where?: (utility_meta_lineups_bool_exp | null)} }) + /** fetch aggregated fields from the table: "utility_meta_lineups" */ + utility_meta_lineups_aggregate?: (utility_meta_lineups_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_meta_lineups_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_meta_lineups_order_by[] | null), + /** filter the rows returned */ + where?: (utility_meta_lineups_bool_exp | null)} }) + /** fetch data from the table: "utility_meta_lineups" using primary key columns */ + utility_meta_lineups_by_pk?: (utility_meta_lineupsGenqlSelection & { __args: {lineup_bucket: Scalars['String']} }) + /** fetch data from the table: "utility_playbook_steps" */ + utility_playbook_steps?: (utility_playbook_stepsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_playbook_steps_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_playbook_steps_order_by[] | null), + /** filter the rows returned */ + where?: (utility_playbook_steps_bool_exp | null)} }) + /** fetch aggregated fields from the table: "utility_playbook_steps" */ + utility_playbook_steps_aggregate?: (utility_playbook_steps_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_playbook_steps_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_playbook_steps_order_by[] | null), + /** filter the rows returned */ + where?: (utility_playbook_steps_bool_exp | null)} }) + /** fetch data from the table: "utility_playbook_steps" using primary key columns */ + utility_playbook_steps_by_pk?: (utility_playbook_stepsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "utility_playbooks" */ + utility_playbooks?: (utility_playbooksGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_playbooks_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_playbooks_order_by[] | null), + /** filter the rows returned */ + where?: (utility_playbooks_bool_exp | null)} }) + /** fetch aggregated fields from the table: "utility_playbooks" */ + utility_playbooks_aggregate?: (utility_playbooks_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_playbooks_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_playbooks_order_by[] | null), + /** filter the rows returned */ + where?: (utility_playbooks_bool_exp | null)} }) + /** fetch data from the table: "utility_playbooks" using primary key columns */ + utility_playbooks_by_pk?: (utility_playbooksGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "utility_practice_invites" */ + utility_practice_invites?: (utility_practice_invitesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_practice_invites_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_practice_invites_order_by[] | null), + /** filter the rows returned */ + where?: (utility_practice_invites_bool_exp | null)} }) + /** fetch aggregated fields from the table: "utility_practice_invites" */ + utility_practice_invites_aggregate?: (utility_practice_invites_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_practice_invites_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_practice_invites_order_by[] | null), + /** filter the rows returned */ + where?: (utility_practice_invites_bool_exp | null)} }) + /** fetch data from the table: "utility_practice_invites" using primary key columns */ + utility_practice_invites_by_pk?: (utility_practice_invitesGenqlSelection & { __args: {steam_id: Scalars['bigint'], utility_practice_session_id: Scalars['uuid']} }) + /** An array relationship */ + utility_practice_sessions?: (utility_practice_sessionsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_practice_sessions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_practice_sessions_order_by[] | null), + /** filter the rows returned */ + where?: (utility_practice_sessions_bool_exp | null)} }) + /** An aggregate relationship */ + utility_practice_sessions_aggregate?: (utility_practice_sessions_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_practice_sessions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_practice_sessions_order_by[] | null), + /** filter the rows returned */ + where?: (utility_practice_sessions_bool_exp | null)} }) + /** fetch data from the table: "utility_practice_sessions" using primary key columns */ + utility_practice_sessions_by_pk?: (utility_practice_sessionsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "v_event_player_stats" */ + v_event_player_stats?: (v_event_player_statsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_event_player_stats_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (v_event_player_stats_order_by[] | null), + /** filter the rows returned */ + where?: (v_event_player_stats_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_event_player_stats" */ + v_event_player_stats_aggregate?: (v_event_player_stats_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_event_player_stats_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (v_event_player_stats_order_by[] | null), + /** filter the rows returned */ + where?: (v_event_player_stats_bool_exp | null)} }) + /** fetch data from the table: "v_gpu_pool_status" */ + v_gpu_pool_status?: (v_gpu_pool_statusGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_gpu_pool_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_gpu_pool_status_order_by[] | null), + /** filter the rows returned */ + where?: (v_gpu_pool_status_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_gpu_pool_status" */ + v_gpu_pool_status_aggregate?: (v_gpu_pool_status_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_gpu_pool_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_gpu_pool_status_order_by[] | null), + /** filter the rows returned */ + where?: (v_gpu_pool_status_bool_exp | null)} }) + /** fetch data from the table: "v_league_division_standings" */ + v_league_division_standings?: (v_league_division_standingsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_league_division_standings_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_league_division_standings_order_by[] | null), + /** filter the rows returned */ + where?: (v_league_division_standings_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_league_division_standings" */ + v_league_division_standings_aggregate?: (v_league_division_standings_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_league_division_standings_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_league_division_standings_order_by[] | null), + /** filter the rows returned */ + where?: (v_league_division_standings_bool_exp | null)} }) + /** fetch data from the table: "v_league_season_player_stats" */ + v_league_season_player_stats?: (v_league_season_player_statsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_league_season_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_league_season_player_stats_order_by[] | null), + /** filter the rows returned */ + where?: (v_league_season_player_stats_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_league_season_player_stats" */ + v_league_season_player_stats_aggregate?: (v_league_season_player_stats_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_league_season_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_league_season_player_stats_order_by[] | null), + /** filter the rows returned */ + where?: (v_league_season_player_stats_bool_exp | null)} }) + /** fetch data from the table: "v_match_captains" */ + v_match_captains?: (v_match_captainsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_match_captains_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_captains_order_by[] | null), + /** filter the rows returned */ + where?: (v_match_captains_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_match_captains" */ + v_match_captains_aggregate?: (v_match_captains_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_match_captains_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_captains_order_by[] | null), + /** filter the rows returned */ + where?: (v_match_captains_bool_exp | null)} }) + /** fetch data from the table: "v_match_clutches" */ + v_match_clutches?: (v_match_clutchesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_match_clutches_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_clutches_order_by[] | null), + /** filter the rows returned */ + where?: (v_match_clutches_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_match_clutches" */ + v_match_clutches_aggregate?: (v_match_clutches_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_match_clutches_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_clutches_order_by[] | null), + /** filter the rows returned */ + where?: (v_match_clutches_bool_exp | null)} }) + /** fetch data from the table: "v_match_kill_pairs" */ + v_match_kill_pairs?: (v_match_kill_pairsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_match_kill_pairs_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_kill_pairs_order_by[] | null), + /** filter the rows returned */ + where?: (v_match_kill_pairs_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_match_kill_pairs" */ + v_match_kill_pairs_aggregate?: (v_match_kill_pairs_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_match_kill_pairs_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_kill_pairs_order_by[] | null), + /** filter the rows returned */ + where?: (v_match_kill_pairs_bool_exp | null)} }) + /** fetch data from the table: "v_match_lineup_buy_types" */ + v_match_lineup_buy_types?: (v_match_lineup_buy_typesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_match_lineup_buy_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_lineup_buy_types_order_by[] | null), + /** filter the rows returned */ + where?: (v_match_lineup_buy_types_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_match_lineup_buy_types" */ + v_match_lineup_buy_types_aggregate?: (v_match_lineup_buy_types_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_match_lineup_buy_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_lineup_buy_types_order_by[] | null), + /** filter the rows returned */ + where?: (v_match_lineup_buy_types_bool_exp | null)} }) + /** fetch data from the table: "v_match_lineup_map_stats" */ + v_match_lineup_map_stats?: (v_match_lineup_map_statsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_match_lineup_map_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_match_lineup_map_stats_order_by[] | null), + /** filter the rows returned */ + where?: (v_match_lineup_map_stats_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_match_lineup_map_stats" */ + v_match_lineup_map_stats_aggregate?: (v_match_lineup_map_stats_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_match_lineup_map_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_match_lineup_map_stats_order_by[] | null), + /** filter the rows returned */ + where?: (v_match_lineup_map_stats_bool_exp | null)} }) + /** fetch data from the table: "v_match_map_backup_rounds" */ + v_match_map_backup_rounds?: (v_match_map_backup_roundsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_match_map_backup_rounds_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_map_backup_rounds_order_by[] | null), + /** filter the rows returned */ + where?: (v_match_map_backup_rounds_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_match_map_backup_rounds" */ + v_match_map_backup_rounds_aggregate?: (v_match_map_backup_rounds_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_match_map_backup_rounds_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_map_backup_rounds_order_by[] | null), + /** filter the rows returned */ + where?: (v_match_map_backup_rounds_bool_exp | null)} }) + /** fetch data from the table: "v_match_player_buy_types" */ + v_match_player_buy_types?: (v_match_player_buy_typesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_match_player_buy_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_player_buy_types_order_by[] | null), + /** filter the rows returned */ + where?: (v_match_player_buy_types_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_match_player_buy_types" */ + v_match_player_buy_types_aggregate?: (v_match_player_buy_types_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_match_player_buy_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_player_buy_types_order_by[] | null), + /** filter the rows returned */ + where?: (v_match_player_buy_types_bool_exp | null)} }) + /** fetch data from the table: "v_match_player_opening_duels" */ + v_match_player_opening_duels?: (v_match_player_opening_duelsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_match_player_opening_duels_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_player_opening_duels_order_by[] | null), + /** filter the rows returned */ + where?: (v_match_player_opening_duels_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_match_player_opening_duels" */ + v_match_player_opening_duels_aggregate?: (v_match_player_opening_duels_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_match_player_opening_duels_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_player_opening_duels_order_by[] | null), + /** filter the rows returned */ + where?: (v_match_player_opening_duels_bool_exp | null)} }) + /** fetch data from the table: "v_player_arch_nemesis" */ + v_player_arch_nemesis?: (v_player_arch_nemesisGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_arch_nemesis_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_arch_nemesis_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_arch_nemesis_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_player_arch_nemesis" */ + v_player_arch_nemesis_aggregate?: (v_player_arch_nemesis_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_arch_nemesis_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_arch_nemesis_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_arch_nemesis_bool_exp | null)} }) + /** fetch data from the table: "v_player_damage" */ + v_player_damage?: (v_player_damageGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_damage_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_damage_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_damage_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_player_damage" */ + v_player_damage_aggregate?: (v_player_damage_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_damage_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_damage_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_damage_bool_exp | null)} }) + /** fetch data from the table: "v_player_elo" */ + v_player_elo?: (v_player_eloGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_elo_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_elo_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_elo_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_player_elo" */ + v_player_elo_aggregate?: (v_player_elo_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_elo_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_elo_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_elo_bool_exp | null)} }) + /** fetch data from the table: "v_player_map_losses" */ + v_player_map_losses?: (v_player_map_lossesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_map_losses_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_map_losses_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_map_losses_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_player_map_losses" */ + v_player_map_losses_aggregate?: (v_player_map_losses_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_map_losses_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_map_losses_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_map_losses_bool_exp | null)} }) + /** fetch data from the table: "v_player_map_wins" */ + v_player_map_wins?: (v_player_map_winsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_map_wins_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_map_wins_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_map_wins_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_player_map_wins" */ + v_player_map_wins_aggregate?: (v_player_map_wins_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_map_wins_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_map_wins_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_map_wins_bool_exp | null)} }) + /** fetch data from the table: "v_player_match_head_to_head" */ + v_player_match_head_to_head?: (v_player_match_head_to_headGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_match_head_to_head_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_match_head_to_head_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_match_head_to_head_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_player_match_head_to_head" */ + v_player_match_head_to_head_aggregate?: (v_player_match_head_to_head_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_match_head_to_head_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_match_head_to_head_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_match_head_to_head_bool_exp | null)} }) + /** fetch data from the table: "v_player_match_map_hltv" */ + v_player_match_map_hltv?: (v_player_match_map_hltvGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_match_map_hltv_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_match_map_hltv_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_match_map_hltv_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_player_match_map_hltv" */ + v_player_match_map_hltv_aggregate?: (v_player_match_map_hltv_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_match_map_hltv_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_match_map_hltv_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_match_map_hltv_bool_exp | null)} }) + /** fetch data from the table: "v_player_match_map_roles" */ + v_player_match_map_roles?: (v_player_match_map_rolesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_match_map_roles_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_match_map_roles_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_match_map_roles_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_player_match_map_roles" */ + v_player_match_map_roles_aggregate?: (v_player_match_map_roles_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_match_map_roles_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_match_map_roles_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_match_map_roles_bool_exp | null)} }) + /** fetch data from the table: "v_player_match_performance" */ + v_player_match_performance?: (v_player_match_performanceGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_match_performance_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_match_performance_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_match_performance_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_player_match_performance" */ + v_player_match_performance_aggregate?: (v_player_match_performance_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_match_performance_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_match_performance_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_match_performance_bool_exp | null)} }) + /** fetch data from the table: "v_player_match_rating" */ + v_player_match_rating?: (v_player_match_ratingGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_match_rating_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_match_rating_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_match_rating_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_player_match_rating" */ + v_player_match_rating_aggregate?: (v_player_match_rating_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_match_rating_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_match_rating_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_match_rating_bool_exp | null)} }) + /** fetch data from the table: "v_player_multi_kills" */ + v_player_multi_kills?: (v_player_multi_killsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_multi_kills_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_multi_kills_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_multi_kills_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_player_multi_kills" */ + v_player_multi_kills_aggregate?: (v_player_multi_kills_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_multi_kills_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_multi_kills_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_multi_kills_bool_exp | null)} }) + /** fetch data from the table: "v_player_queue_partners" */ + v_player_queue_partners?: (v_player_queue_partnersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_queue_partners_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_queue_partners_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_queue_partners_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_player_queue_partners" */ + v_player_queue_partners_aggregate?: (v_player_queue_partners_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_queue_partners_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_queue_partners_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_queue_partners_bool_exp | null)} }) + /** fetch data from the table: "v_player_weapon_damage" */ + v_player_weapon_damage?: (v_player_weapon_damageGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_weapon_damage_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_weapon_damage_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_weapon_damage_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_player_weapon_damage" */ + v_player_weapon_damage_aggregate?: (v_player_weapon_damage_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_weapon_damage_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_weapon_damage_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_weapon_damage_bool_exp | null)} }) + /** fetch data from the table: "v_player_weapon_kills" */ + v_player_weapon_kills?: (v_player_weapon_killsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_weapon_kills_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_weapon_kills_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_weapon_kills_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_player_weapon_kills" */ + v_player_weapon_kills_aggregate?: (v_player_weapon_kills_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_weapon_kills_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_weapon_kills_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_weapon_kills_bool_exp | null)} }) + /** fetch data from the table: "v_pool_maps" */ + v_pool_maps?: (v_pool_mapsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_pool_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?: (v_pool_maps_order_by[] | null), + /** filter the rows returned */ + where?: (v_pool_maps_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_pool_maps" */ + v_pool_maps_aggregate?: (v_pool_maps_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_pool_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?: (v_pool_maps_order_by[] | null), + /** filter the rows returned */ + where?: (v_pool_maps_bool_exp | null)} }) + /** fetch data from the table: "v_steam_account_pool_status" */ + v_steam_account_pool_status?: (v_steam_account_pool_statusGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_steam_account_pool_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_steam_account_pool_status_order_by[] | null), + /** filter the rows returned */ + where?: (v_steam_account_pool_status_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_steam_account_pool_status" */ + v_steam_account_pool_status_aggregate?: (v_steam_account_pool_status_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_steam_account_pool_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_steam_account_pool_status_order_by[] | null), + /** filter the rows returned */ + where?: (v_steam_account_pool_status_bool_exp | null)} }) + /** fetch data from the table: "v_team_ranks" */ + v_team_ranks?: (v_team_ranksGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_team_ranks_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_team_ranks_order_by[] | null), + /** filter the rows returned */ + where?: (v_team_ranks_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_team_ranks" */ + v_team_ranks_aggregate?: (v_team_ranks_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_team_ranks_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_team_ranks_order_by[] | null), + /** filter the rows returned */ + where?: (v_team_ranks_bool_exp | null)} }) + /** fetch data from the table: "v_team_reputation" */ + v_team_reputation?: (v_team_reputationGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_team_reputation_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_team_reputation_order_by[] | null), + /** filter the rows returned */ + where?: (v_team_reputation_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_team_reputation" */ + v_team_reputation_aggregate?: (v_team_reputation_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_team_reputation_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_team_reputation_order_by[] | null), + /** filter the rows returned */ + where?: (v_team_reputation_bool_exp | null)} }) + /** fetch data from the table: "v_team_stage_results" */ + v_team_stage_results?: (v_team_stage_resultsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_team_stage_results_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_team_stage_results_order_by[] | null), + /** filter the rows returned */ + where?: (v_team_stage_results_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_team_stage_results" */ + v_team_stage_results_aggregate?: (v_team_stage_results_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_team_stage_results_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_team_stage_results_order_by[] | null), + /** filter the rows returned */ + where?: (v_team_stage_results_bool_exp | null)} }) + /** fetch data from the table: "v_team_stage_results" using primary key columns */ + v_team_stage_results_by_pk?: (v_team_stage_resultsGenqlSelection & { __args: {tournament_stage_id: Scalars['uuid'], tournament_team_id: Scalars['uuid']} }) + /** fetch data from the table: "v_team_tournament_results" */ + v_team_tournament_results?: (v_team_tournament_resultsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_team_tournament_results_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_team_tournament_results_order_by[] | null), + /** filter the rows returned */ + where?: (v_team_tournament_results_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_team_tournament_results" */ + v_team_tournament_results_aggregate?: (v_team_tournament_results_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_team_tournament_results_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_team_tournament_results_order_by[] | null), + /** filter the rows returned */ + where?: (v_team_tournament_results_bool_exp | null)} }) + /** fetch data from the table: "v_tournament_player_stats" */ + v_tournament_player_stats?: (v_tournament_player_statsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_tournament_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_tournament_player_stats_order_by[] | null), + /** filter the rows returned */ + where?: (v_tournament_player_stats_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_tournament_player_stats" */ + v_tournament_player_stats_aggregate?: (v_tournament_player_stats_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_tournament_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_tournament_player_stats_order_by[] | null), + /** filter the rows returned */ + where?: (v_tournament_player_stats_bool_exp | null)} }) + /** Web push setup status for the application settings page; never returns the private key */ + webPushStatus?: WebPushStatusOutputGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface recalculate_tournament_awards_args {_tournament_id?: (Scalars['uuid'] | null)} + +export interface remove_league_team_from_season_args {_league_team_season_id?: (Scalars['uuid'] | null)} + +export interface reorder_league_divisions_args {_division_ids?: (Scalars['_uuid'] | null)} + +export interface restart_league_season_args {_league_season_id?: (Scalars['uuid'] | null)} + + +/** columns and relationships of "v_role_permissions" */ +export interface role_permissionsGenqlSelection{ + can_create_events?: boolean | number + can_create_matches?: boolean | number + can_create_tournaments?: boolean | number + role?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "v_role_permissions" */ +export interface role_permissions_aggregateGenqlSelection{ + aggregate?: role_permissions_aggregate_fieldsGenqlSelection + nodes?: role_permissionsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "v_role_permissions" */ +export interface role_permissions_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (role_permissions_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: role_permissions_max_fieldsGenqlSelection + min?: role_permissions_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "v_role_permissions". All fields are combined with a logical 'AND'. */ +export interface role_permissions_bool_exp {_and?: (role_permissions_bool_exp[] | null),_not?: (role_permissions_bool_exp | null),_or?: (role_permissions_bool_exp[] | null),can_create_events?: (Boolean_comparison_exp | null),can_create_matches?: (Boolean_comparison_exp | null),can_create_tournaments?: (Boolean_comparison_exp | null),role?: (String_comparison_exp | null)} + + +/** input type for inserting data into table "v_role_permissions" */ +export interface role_permissions_insert_input {can_create_events?: (Scalars['Boolean'] | null),can_create_matches?: (Scalars['Boolean'] | null),can_create_tournaments?: (Scalars['Boolean'] | null),role?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface role_permissions_max_fieldsGenqlSelection{ + role?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface role_permissions_min_fieldsGenqlSelection{ + role?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "v_role_permissions" */ +export interface role_permissions_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: role_permissionsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Ordering options when selecting data from "v_role_permissions". */ +export interface role_permissions_order_by {can_create_events?: (order_by | null),can_create_matches?: (order_by | null),can_create_tournaments?: (order_by | null),role?: (order_by | null)} + + +/** input type for updating data in table "v_role_permissions" */ +export interface role_permissions_set_input {can_create_events?: (Scalars['Boolean'] | null),can_create_matches?: (Scalars['Boolean'] | null),can_create_tournaments?: (Scalars['Boolean'] | null),role?: (Scalars['String'] | null)} + + +/** Streaming cursor of the table "role_permissions" */ +export interface role_permissions_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: role_permissions_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface role_permissions_stream_cursor_value_input {can_create_events?: (Scalars['Boolean'] | null),can_create_matches?: (Scalars['Boolean'] | null),can_create_tournaments?: (Scalars['Boolean'] | null),role?: (Scalars['String'] | null)} + +export interface role_permissions_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (role_permissions_set_input | null), +/** filter the rows which have to be updated */ +where: role_permissions_bool_exp} + + +/** columns and relationships of "seasons" */ +export interface seasonsGenqlSelection{ + /** 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)} }) + created_at?: boolean | number + description?: boolean | number + ends_at?: boolean | number + id?: boolean | number + needs_rebuild?: boolean | number + number?: boolean | number + /** An array relationship */ + player_season_stats?: (player_season_statsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_season_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?: (player_season_stats_order_by[] | null), + /** filter the rows returned */ + where?: (player_season_stats_bool_exp | null)} }) + /** An aggregate relationship */ + player_season_stats_aggregate?: (player_season_stats_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_season_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?: (player_season_stats_order_by[] | null), + /** filter the rows returned */ + where?: (player_season_stats_bool_exp | null)} }) + starts_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "seasons" */ +export interface seasons_aggregateGenqlSelection{ + aggregate?: seasons_aggregate_fieldsGenqlSelection + nodes?: seasonsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "seasons" */ +export interface seasons_aggregate_fieldsGenqlSelection{ + avg?: seasons_avg_fieldsGenqlSelection + count?: { __args: {columns?: (seasons_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: seasons_max_fieldsGenqlSelection + min?: seasons_min_fieldsGenqlSelection + stddev?: seasons_stddev_fieldsGenqlSelection + stddev_pop?: seasons_stddev_pop_fieldsGenqlSelection + stddev_samp?: seasons_stddev_samp_fieldsGenqlSelection + sum?: seasons_sum_fieldsGenqlSelection + var_pop?: seasons_var_pop_fieldsGenqlSelection + var_samp?: seasons_var_samp_fieldsGenqlSelection + variance?: seasons_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface seasons_avg_fieldsGenqlSelection{ + number?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "seasons". All fields are combined with a logical 'AND'. */ +export interface seasons_bool_exp {_and?: (seasons_bool_exp[] | null),_not?: (seasons_bool_exp | null),_or?: (seasons_bool_exp[] | null),awards?: (award_recipients_bool_exp | null),awards_aggregate?: (award_recipients_aggregate_bool_exp | null),created_at?: (timestamptz_comparison_exp | null),description?: (String_comparison_exp | null),ends_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),needs_rebuild?: (Boolean_comparison_exp | null),number?: (Int_comparison_exp | null),player_season_stats?: (player_season_stats_bool_exp | null),player_season_stats_aggregate?: (player_season_stats_aggregate_bool_exp | null),starts_at?: (timestamptz_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "seasons" */ +export interface seasons_inc_input {number?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "seasons" */ +export interface seasons_insert_input {awards?: (award_recipients_arr_rel_insert_input | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),ends_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),needs_rebuild?: (Scalars['Boolean'] | null),number?: (Scalars['Int'] | null),player_season_stats?: (player_season_stats_arr_rel_insert_input | null),starts_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate max on columns */ +export interface seasons_max_fieldsGenqlSelection{ + created_at?: boolean | number + description?: boolean | number + ends_at?: boolean | number + id?: boolean | number + number?: boolean | number + starts_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface seasons_min_fieldsGenqlSelection{ + created_at?: boolean | number + description?: boolean | number + ends_at?: boolean | number + id?: boolean | number + number?: boolean | number + starts_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "seasons" */ +export interface seasons_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: seasonsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "seasons" */ +export interface seasons_obj_rel_insert_input {data: seasons_insert_input, +/** upsert condition */ +on_conflict?: (seasons_on_conflict | null)} + + +/** on_conflict condition type for table "seasons" */ +export interface seasons_on_conflict {constraint: seasons_constraint,update_columns?: seasons_update_column[],where?: (seasons_bool_exp | null)} + + +/** Ordering options when selecting data from "seasons". */ +export interface seasons_order_by {awards_aggregate?: (award_recipients_aggregate_order_by | null),created_at?: (order_by | null),description?: (order_by | null),ends_at?: (order_by | null),id?: (order_by | null),needs_rebuild?: (order_by | null),number?: (order_by | null),player_season_stats_aggregate?: (player_season_stats_aggregate_order_by | null),starts_at?: (order_by | null)} + + +/** primary key columns input for table: seasons */ +export interface seasons_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "seasons" */ +export interface seasons_set_input {created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),ends_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),needs_rebuild?: (Scalars['Boolean'] | null),number?: (Scalars['Int'] | null),starts_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate stddev on columns */ +export interface seasons_stddev_fieldsGenqlSelection{ + number?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface seasons_stddev_pop_fieldsGenqlSelection{ + number?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface seasons_stddev_samp_fieldsGenqlSelection{ + number?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "seasons" */ +export interface seasons_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: seasons_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface seasons_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),ends_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),needs_rebuild?: (Scalars['Boolean'] | null),number?: (Scalars['Int'] | null),starts_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate sum on columns */ +export interface seasons_sum_fieldsGenqlSelection{ + number?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface seasons_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (seasons_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (seasons_set_input | null), +/** filter the rows which have to be updated */ +where: seasons_bool_exp} + + +/** aggregate var_pop on columns */ +export interface seasons_var_pop_fieldsGenqlSelection{ + number?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface seasons_var_samp_fieldsGenqlSelection{ + number?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface seasons_variance_fieldsGenqlSelection{ + number?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "server_regions" */ +export interface server_regionsGenqlSelection{ + /** A computed field, executes function "available_region_server_count" */ + available_server_count?: boolean | number + description?: boolean | number + /** An array relationship */ + game_server_nodes?: (game_server_nodesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (game_server_nodes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_nodes_order_by[] | null), + /** filter the rows returned */ + where?: (game_server_nodes_bool_exp | null)} }) + /** An aggregate relationship */ + game_server_nodes_aggregate?: (game_server_nodes_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (game_server_nodes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_nodes_order_by[] | null), + /** filter the rows returned */ + where?: (game_server_nodes_bool_exp | null)} }) + /** A computed field, executes function "region_has_node" */ + has_node?: boolean | number + is_lan?: boolean | number + /** A computed field, executes function "region_status" */ + status?: boolean | number + steam_relay?: boolean | number + /** A computed field, executes function "total_region_server_count" */ + total_server_count?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "server_regions" */ +export interface server_regions_aggregateGenqlSelection{ + aggregate?: server_regions_aggregate_fieldsGenqlSelection + nodes?: server_regionsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "server_regions" */ +export interface server_regions_aggregate_fieldsGenqlSelection{ + avg?: server_regions_avg_fieldsGenqlSelection + count?: { __args: {columns?: (server_regions_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: server_regions_max_fieldsGenqlSelection + min?: server_regions_min_fieldsGenqlSelection + stddev?: server_regions_stddev_fieldsGenqlSelection + stddev_pop?: server_regions_stddev_pop_fieldsGenqlSelection + stddev_samp?: server_regions_stddev_samp_fieldsGenqlSelection + sum?: server_regions_sum_fieldsGenqlSelection + var_pop?: server_regions_var_pop_fieldsGenqlSelection + var_samp?: server_regions_var_samp_fieldsGenqlSelection + variance?: server_regions_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface server_regions_avg_fieldsGenqlSelection{ + /** A computed field, executes function "available_region_server_count" */ + available_server_count?: boolean | number + /** A computed field, executes function "total_region_server_count" */ + total_server_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "server_regions". All fields are combined with a logical 'AND'. */ +export interface server_regions_bool_exp {_and?: (server_regions_bool_exp[] | null),_not?: (server_regions_bool_exp | null),_or?: (server_regions_bool_exp[] | null),available_server_count?: (Int_comparison_exp | null),description?: (String_comparison_exp | null),game_server_nodes?: (game_server_nodes_bool_exp | null),game_server_nodes_aggregate?: (game_server_nodes_aggregate_bool_exp | null),has_node?: (Boolean_comparison_exp | null),is_lan?: (Boolean_comparison_exp | null),status?: (String_comparison_exp | null),steam_relay?: (Boolean_comparison_exp | null),total_server_count?: (Int_comparison_exp | null),value?: (String_comparison_exp | null)} + + +/** input type for inserting data into table "server_regions" */ +export interface server_regions_insert_input {description?: (Scalars['String'] | null),game_server_nodes?: (game_server_nodes_arr_rel_insert_input | null),is_lan?: (Scalars['Boolean'] | null),steam_relay?: (Scalars['Boolean'] | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface server_regions_max_fieldsGenqlSelection{ + /** A computed field, executes function "available_region_server_count" */ + available_server_count?: boolean | number + description?: boolean | number + /** A computed field, executes function "region_status" */ + status?: boolean | number + /** A computed field, executes function "total_region_server_count" */ + total_server_count?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface server_regions_min_fieldsGenqlSelection{ + /** A computed field, executes function "available_region_server_count" */ + available_server_count?: boolean | number + description?: boolean | number + /** A computed field, executes function "region_status" */ + status?: boolean | number + /** A computed field, executes function "total_region_server_count" */ + total_server_count?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "server_regions" */ +export interface server_regions_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: server_regionsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "server_regions" */ +export interface server_regions_obj_rel_insert_input {data: server_regions_insert_input, +/** upsert condition */ +on_conflict?: (server_regions_on_conflict | null)} + + +/** on_conflict condition type for table "server_regions" */ +export interface server_regions_on_conflict {constraint: server_regions_constraint,update_columns?: server_regions_update_column[],where?: (server_regions_bool_exp | null)} + + +/** Ordering options when selecting data from "server_regions". */ +export interface server_regions_order_by {available_server_count?: (order_by | null),description?: (order_by | null),game_server_nodes_aggregate?: (game_server_nodes_aggregate_order_by | null),has_node?: (order_by | null),is_lan?: (order_by | null),status?: (order_by | null),steam_relay?: (order_by | null),total_server_count?: (order_by | null),value?: (order_by | null)} + + +/** primary key columns input for table: server_regions */ +export interface server_regions_pk_columns_input {value: Scalars['String']} + + +/** input type for updating data in table "server_regions" */ +export interface server_regions_set_input {description?: (Scalars['String'] | null),is_lan?: (Scalars['Boolean'] | null),steam_relay?: (Scalars['Boolean'] | null),value?: (Scalars['String'] | null)} + + +/** aggregate stddev on columns */ +export interface server_regions_stddev_fieldsGenqlSelection{ + /** A computed field, executes function "available_region_server_count" */ + available_server_count?: boolean | number + /** A computed field, executes function "total_region_server_count" */ + total_server_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface server_regions_stddev_pop_fieldsGenqlSelection{ + /** A computed field, executes function "available_region_server_count" */ + available_server_count?: boolean | number + /** A computed field, executes function "total_region_server_count" */ + total_server_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface server_regions_stddev_samp_fieldsGenqlSelection{ + /** A computed field, executes function "available_region_server_count" */ + available_server_count?: boolean | number + /** A computed field, executes function "total_region_server_count" */ + total_server_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "server_regions" */ +export interface server_regions_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: server_regions_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface server_regions_stream_cursor_value_input {description?: (Scalars['String'] | null),is_lan?: (Scalars['Boolean'] | null),steam_relay?: (Scalars['Boolean'] | null),value?: (Scalars['String'] | null)} + + +/** aggregate sum on columns */ +export interface server_regions_sum_fieldsGenqlSelection{ + /** A computed field, executes function "available_region_server_count" */ + available_server_count?: boolean | number + /** A computed field, executes function "total_region_server_count" */ + total_server_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface server_regions_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (server_regions_set_input | null), +/** filter the rows which have to be updated */ +where: server_regions_bool_exp} + + +/** aggregate var_pop on columns */ +export interface server_regions_var_pop_fieldsGenqlSelection{ + /** A computed field, executes function "available_region_server_count" */ + available_server_count?: boolean | number + /** A computed field, executes function "total_region_server_count" */ + total_server_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface server_regions_var_samp_fieldsGenqlSelection{ + /** A computed field, executes function "available_region_server_count" */ + available_server_count?: boolean | number + /** A computed field, executes function "total_region_server_count" */ + total_server_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface server_regions_variance_fieldsGenqlSelection{ + /** A computed field, executes function "available_region_server_count" */ + available_server_count?: boolean | number + /** A computed field, executes function "total_region_server_count" */ + total_server_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "servers" */ +export interface serversGenqlSelection{ + api_password?: boolean | number + boot_status?: boolean | number + boot_status_detail?: boolean | number + connect_password?: boolean | number + connected?: boolean | number + /** A computed field, executes function "get_server_connection_link" */ + connection_link?: boolean | number + /** A computed field, executes function "get_server_connection_string" */ + connection_string?: boolean | number + /** An object relationship */ + current_match?: matchesGenqlSelection + 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 */ + 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)} }) + max_players?: boolean | number + 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 + region?: boolean | number + reserved_by_match_id?: boolean | number + /** An object relationship */ + server_region?: server_regionsGenqlSelection + steam_relay?: boolean | number + tv_port?: boolean | number + type?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "servers" */ +export interface servers_aggregateGenqlSelection{ + aggregate?: servers_aggregate_fieldsGenqlSelection + nodes?: serversGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface servers_aggregate_bool_exp {bool_and?: (servers_aggregate_bool_exp_bool_and | null),bool_or?: (servers_aggregate_bool_exp_bool_or | null),count?: (servers_aggregate_bool_exp_count | null)} + +export interface servers_aggregate_bool_exp_bool_and {arguments: servers_select_column_servers_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (servers_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface servers_aggregate_bool_exp_bool_or {arguments: servers_select_column_servers_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (servers_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface servers_aggregate_bool_exp_count {arguments?: (servers_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (servers_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "servers" */ +export interface servers_aggregate_fieldsGenqlSelection{ + avg?: servers_avg_fieldsGenqlSelection + count?: { __args: {columns?: (servers_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: servers_max_fieldsGenqlSelection + min?: servers_min_fieldsGenqlSelection + stddev?: servers_stddev_fieldsGenqlSelection + stddev_pop?: servers_stddev_pop_fieldsGenqlSelection + stddev_samp?: servers_stddev_samp_fieldsGenqlSelection + sum?: servers_sum_fieldsGenqlSelection + var_pop?: servers_var_pop_fieldsGenqlSelection + var_samp?: servers_var_samp_fieldsGenqlSelection + variance?: servers_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "servers" */ +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 */ +on_conflict?: (servers_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface servers_avg_fieldsGenqlSelection{ + max_players?: boolean | number + port?: boolean | number + tv_port?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "servers" */ +export interface servers_avg_order_by {max_players?: (order_by | null),port?: (order_by | null),tv_port?: (order_by | null)} + + +/** 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_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" */ +export interface servers_inc_input {max_players?: (Scalars['Int'] | null),port?: (Scalars['Int'] | null),tv_port?: (Scalars['Int'] | null)} + + +/** 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_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 */ +export interface servers_max_fieldsGenqlSelection{ + api_password?: boolean | number + boot_status?: boolean | number + boot_status_detail?: boolean | number + connect_password?: boolean | number + /** A computed field, executes function "get_server_connection_link" */ + connection_link?: boolean | number + /** 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 + label?: boolean | number + 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 + steam_relay?: boolean | number + tv_port?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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_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 */ +export interface servers_min_fieldsGenqlSelection{ + api_password?: boolean | number + boot_status?: boolean | number + boot_status_detail?: boolean | number + connect_password?: boolean | number + /** A computed field, executes function "get_server_connection_link" */ + connection_link?: boolean | number + /** 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 + label?: boolean | number + 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 + steam_relay?: boolean | number + tv_port?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** 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_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" */ +export interface servers_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: serversGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "servers" */ +export interface servers_obj_rel_insert_input {data: servers_insert_input, +/** upsert condition */ +on_conflict?: (servers_on_conflict | null)} + + +/** on_conflict condition type for table "servers" */ +export interface servers_on_conflict {constraint: servers_constraint,update_columns?: servers_update_column[],where?: (servers_bool_exp | null)} + + +/** 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_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_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 */ +export interface servers_stddev_fieldsGenqlSelection{ + max_players?: boolean | number + port?: boolean | number + tv_port?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "servers" */ +export interface servers_stddev_order_by {max_players?: (order_by | null),port?: (order_by | null),tv_port?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface servers_stddev_pop_fieldsGenqlSelection{ + max_players?: boolean | number + port?: boolean | number + tv_port?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "servers" */ +export interface servers_stddev_pop_order_by {max_players?: (order_by | null),port?: (order_by | null),tv_port?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface servers_stddev_samp_fieldsGenqlSelection{ + max_players?: boolean | number + port?: boolean | number + tv_port?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "servers" */ +export interface servers_stddev_samp_order_by {max_players?: (order_by | null),port?: (order_by | null),tv_port?: (order_by | null)} + + +/** Streaming cursor of the table "servers" */ +export interface servers_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: servers_stream_cursor_value_input, +/** cursor ordering */ +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_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 */ +export interface servers_sum_fieldsGenqlSelection{ + max_players?: boolean | number + port?: boolean | number + tv_port?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "servers" */ +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 */ +where: servers_bool_exp} + + +/** aggregate var_pop on columns */ +export interface servers_var_pop_fieldsGenqlSelection{ + max_players?: boolean | number + port?: boolean | number + tv_port?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "servers" */ +export interface servers_var_pop_order_by {max_players?: (order_by | null),port?: (order_by | null),tv_port?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface servers_var_samp_fieldsGenqlSelection{ + max_players?: boolean | number + port?: boolean | number + tv_port?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "servers" */ +export interface servers_var_samp_order_by {max_players?: (order_by | null),port?: (order_by | null),tv_port?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface servers_variance_fieldsGenqlSelection{ + max_players?: boolean | number + port?: boolean | number + tv_port?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "servers" */ +export interface servers_variance_order_by {max_players?: (order_by | null),port?: (order_by | null),tv_port?: (order_by | null)} + + +/** columns and relationships of "settings" */ +export interface settingsGenqlSelection{ + name?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "settings" */ +export interface settings_aggregateGenqlSelection{ + aggregate?: settings_aggregate_fieldsGenqlSelection + nodes?: settingsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "settings" */ +export interface settings_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (settings_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: settings_max_fieldsGenqlSelection + min?: settings_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "settings". All fields are combined with a logical 'AND'. */ +export interface settings_bool_exp {_and?: (settings_bool_exp[] | null),_not?: (settings_bool_exp | null),_or?: (settings_bool_exp[] | null),name?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} + + +/** input type for inserting data into table "settings" */ +export interface settings_insert_input {name?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface settings_max_fieldsGenqlSelection{ + name?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface settings_min_fieldsGenqlSelection{ + name?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "settings" */ +export interface settings_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: settingsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "settings" */ +export interface settings_on_conflict {constraint: settings_constraint,update_columns?: settings_update_column[],where?: (settings_bool_exp | null)} + + +/** Ordering options when selecting data from "settings". */ +export interface settings_order_by {name?: (order_by | null),value?: (order_by | null)} + + +/** primary key columns input for table: settings */ +export interface settings_pk_columns_input {name: Scalars['String']} + + +/** input type for updating data in table "settings" */ +export interface settings_set_input {name?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** Streaming cursor of the table "settings" */ +export interface settings_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: settings_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface settings_stream_cursor_value_input {name?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface settings_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (settings_set_input | null), +/** filter the rows which have to be updated */ +where: settings_bool_exp} + + +/** Boolean expression to compare columns of type "smallint". All fields are combined with logical 'AND'. */ +export interface smallint_comparison_exp {_eq?: (Scalars['smallint'] | null),_gt?: (Scalars['smallint'] | null),_gte?: (Scalars['smallint'] | null),_in?: (Scalars['smallint'][] | null),_is_null?: (Scalars['Boolean'] | null),_lt?: (Scalars['smallint'] | null),_lte?: (Scalars['smallint'] | null),_neq?: (Scalars['smallint'] | null),_nin?: (Scalars['smallint'][] | null)} + + +/** columns and relationships of "steam_account_claims" */ +export interface steam_account_claimsGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + k8s_job_name?: boolean | number + /** An object relationship */ + node?: game_server_nodesGenqlSelection + node_id?: boolean | number + purpose?: boolean | number + /** An object relationship */ + steam_account?: steam_accountsGenqlSelection + steam_account_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "steam_account_claims" */ +export interface steam_account_claims_aggregateGenqlSelection{ + aggregate?: steam_account_claims_aggregate_fieldsGenqlSelection + nodes?: steam_account_claimsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface steam_account_claims_aggregate_bool_exp {count?: (steam_account_claims_aggregate_bool_exp_count | null)} + +export interface steam_account_claims_aggregate_bool_exp_count {arguments?: (steam_account_claims_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (steam_account_claims_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "steam_account_claims" */ +export interface steam_account_claims_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (steam_account_claims_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: steam_account_claims_max_fieldsGenqlSelection + min?: steam_account_claims_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "steam_account_claims" */ +export interface steam_account_claims_aggregate_order_by {count?: (order_by | null),max?: (steam_account_claims_max_order_by | null),min?: (steam_account_claims_min_order_by | null)} + + +/** input type for inserting array relation for remote table "steam_account_claims" */ +export interface steam_account_claims_arr_rel_insert_input {data: steam_account_claims_insert_input[], +/** upsert condition */ +on_conflict?: (steam_account_claims_on_conflict | null)} + + +/** Boolean expression to filter rows from the table "steam_account_claims". All fields are combined with a logical 'AND'. */ +export interface steam_account_claims_bool_exp {_and?: (steam_account_claims_bool_exp[] | null),_not?: (steam_account_claims_bool_exp | null),_or?: (steam_account_claims_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),k8s_job_name?: (String_comparison_exp | null),node?: (game_server_nodes_bool_exp | null),node_id?: (String_comparison_exp | null),purpose?: (String_comparison_exp | null),steam_account?: (steam_accounts_bool_exp | null),steam_account_id?: (uuid_comparison_exp | null)} + + +/** input type for inserting data into table "steam_account_claims" */ +export interface steam_account_claims_insert_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),k8s_job_name?: (Scalars['String'] | null),node?: (game_server_nodes_obj_rel_insert_input | null),node_id?: (Scalars['String'] | null),purpose?: (Scalars['String'] | null),steam_account?: (steam_accounts_obj_rel_insert_input | null),steam_account_id?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface steam_account_claims_max_fieldsGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + k8s_job_name?: boolean | number + node_id?: boolean | number + purpose?: boolean | number + steam_account_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "steam_account_claims" */ +export interface steam_account_claims_max_order_by {created_at?: (order_by | null),id?: (order_by | null),k8s_job_name?: (order_by | null),node_id?: (order_by | null),purpose?: (order_by | null),steam_account_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface steam_account_claims_min_fieldsGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + k8s_job_name?: boolean | number + node_id?: boolean | number + purpose?: boolean | number + steam_account_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "steam_account_claims" */ +export interface steam_account_claims_min_order_by {created_at?: (order_by | null),id?: (order_by | null),k8s_job_name?: (order_by | null),node_id?: (order_by | null),purpose?: (order_by | null),steam_account_id?: (order_by | null)} + + +/** response of any mutation on the table "steam_account_claims" */ +export interface steam_account_claims_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: steam_account_claimsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "steam_account_claims" */ +export interface steam_account_claims_on_conflict {constraint: steam_account_claims_constraint,update_columns?: steam_account_claims_update_column[],where?: (steam_account_claims_bool_exp | null)} + + +/** Ordering options when selecting data from "steam_account_claims". */ +export interface steam_account_claims_order_by {created_at?: (order_by | null),id?: (order_by | null),k8s_job_name?: (order_by | null),node?: (game_server_nodes_order_by | null),node_id?: (order_by | null),purpose?: (order_by | null),steam_account?: (steam_accounts_order_by | null),steam_account_id?: (order_by | null)} + + +/** primary key columns input for table: steam_account_claims */ +export interface steam_account_claims_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "steam_account_claims" */ +export interface steam_account_claims_set_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),k8s_job_name?: (Scalars['String'] | null),node_id?: (Scalars['String'] | null),purpose?: (Scalars['String'] | null),steam_account_id?: (Scalars['uuid'] | null)} + + +/** Streaming cursor of the table "steam_account_claims" */ +export interface steam_account_claims_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: steam_account_claims_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface steam_account_claims_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),k8s_job_name?: (Scalars['String'] | null),node_id?: (Scalars['String'] | null),purpose?: (Scalars['String'] | null),steam_account_id?: (Scalars['uuid'] | null)} + +export interface steam_account_claims_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (steam_account_claims_set_input | null), +/** filter the rows which have to be updated */ +where: steam_account_claims_bool_exp} + + +/** columns and relationships of "steam_accounts" */ +export interface steam_accountsGenqlSelection{ + /** An array relationship */ + claims?: (steam_account_claimsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (steam_account_claims_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (steam_account_claims_order_by[] | null), + /** filter the rows returned */ + where?: (steam_account_claims_bool_exp | null)} }) + /** An aggregate relationship */ + claims_aggregate?: (steam_account_claims_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (steam_account_claims_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (steam_account_claims_order_by[] | null), + /** filter the rows returned */ + where?: (steam_account_claims_bool_exp | null)} }) + created_at?: boolean | number + friend_capacity?: boolean | number + id?: boolean | number + /** An object relationship */ + last_node?: game_server_nodesGenqlSelection + last_node_id?: boolean | number + password?: boolean | number + role?: boolean | number + steam_level?: boolean | number + steamid64?: boolean | number + updated_at?: boolean | number + username?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "steam_accounts" */ +export interface steam_accounts_aggregateGenqlSelection{ + aggregate?: steam_accounts_aggregate_fieldsGenqlSelection + nodes?: steam_accountsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "steam_accounts" */ +export interface steam_accounts_aggregate_fieldsGenqlSelection{ + avg?: steam_accounts_avg_fieldsGenqlSelection + count?: { __args: {columns?: (steam_accounts_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: steam_accounts_max_fieldsGenqlSelection + min?: steam_accounts_min_fieldsGenqlSelection + stddev?: steam_accounts_stddev_fieldsGenqlSelection + stddev_pop?: steam_accounts_stddev_pop_fieldsGenqlSelection + stddev_samp?: steam_accounts_stddev_samp_fieldsGenqlSelection + sum?: steam_accounts_sum_fieldsGenqlSelection + var_pop?: steam_accounts_var_pop_fieldsGenqlSelection + var_samp?: steam_accounts_var_samp_fieldsGenqlSelection + variance?: steam_accounts_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface steam_accounts_avg_fieldsGenqlSelection{ + friend_capacity?: boolean | number + steam_level?: boolean | number + steamid64?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "steam_accounts". All fields are combined with a logical 'AND'. */ +export interface steam_accounts_bool_exp {_and?: (steam_accounts_bool_exp[] | null),_not?: (steam_accounts_bool_exp | null),_or?: (steam_accounts_bool_exp[] | null),claims?: (steam_account_claims_bool_exp | null),claims_aggregate?: (steam_account_claims_aggregate_bool_exp | null),created_at?: (timestamptz_comparison_exp | null),friend_capacity?: (Int_comparison_exp | null),id?: (uuid_comparison_exp | null),last_node?: (game_server_nodes_bool_exp | null),last_node_id?: (String_comparison_exp | null),password?: (String_comparison_exp | null),role?: (String_comparison_exp | null),steam_level?: (Int_comparison_exp | null),steamid64?: (bigint_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null),username?: (String_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "steam_accounts" */ +export interface steam_accounts_inc_input {friend_capacity?: (Scalars['Int'] | null),steam_level?: (Scalars['Int'] | null),steamid64?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "steam_accounts" */ +export interface steam_accounts_insert_input {claims?: (steam_account_claims_arr_rel_insert_input | null),created_at?: (Scalars['timestamptz'] | null),friend_capacity?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),last_node?: (game_server_nodes_obj_rel_insert_input | null),last_node_id?: (Scalars['String'] | null),password?: (Scalars['String'] | null),role?: (Scalars['String'] | null),steam_level?: (Scalars['Int'] | null),steamid64?: (Scalars['bigint'] | null),updated_at?: (Scalars['timestamptz'] | null),username?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface steam_accounts_max_fieldsGenqlSelection{ + created_at?: boolean | number + friend_capacity?: boolean | number + id?: boolean | number + last_node_id?: boolean | number + password?: boolean | number + role?: boolean | number + steam_level?: boolean | number + steamid64?: boolean | number + updated_at?: boolean | number + username?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface steam_accounts_min_fieldsGenqlSelection{ + created_at?: boolean | number + friend_capacity?: boolean | number + id?: boolean | number + last_node_id?: boolean | number + password?: boolean | number + role?: boolean | number + steam_level?: boolean | number + steamid64?: boolean | number + updated_at?: boolean | number + username?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "steam_accounts" */ +export interface steam_accounts_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: steam_accountsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "steam_accounts" */ +export interface steam_accounts_obj_rel_insert_input {data: steam_accounts_insert_input, +/** upsert condition */ +on_conflict?: (steam_accounts_on_conflict | null)} + + +/** on_conflict condition type for table "steam_accounts" */ +export interface steam_accounts_on_conflict {constraint: steam_accounts_constraint,update_columns?: steam_accounts_update_column[],where?: (steam_accounts_bool_exp | null)} + + +/** Ordering options when selecting data from "steam_accounts". */ +export interface steam_accounts_order_by {claims_aggregate?: (steam_account_claims_aggregate_order_by | null),created_at?: (order_by | null),friend_capacity?: (order_by | null),id?: (order_by | null),last_node?: (game_server_nodes_order_by | null),last_node_id?: (order_by | null),password?: (order_by | null),role?: (order_by | null),steam_level?: (order_by | null),steamid64?: (order_by | null),updated_at?: (order_by | null),username?: (order_by | null)} + + +/** primary key columns input for table: steam_accounts */ +export interface steam_accounts_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "steam_accounts" */ +export interface steam_accounts_set_input {created_at?: (Scalars['timestamptz'] | null),friend_capacity?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),last_node_id?: (Scalars['String'] | null),password?: (Scalars['String'] | null),role?: (Scalars['String'] | null),steam_level?: (Scalars['Int'] | null),steamid64?: (Scalars['bigint'] | null),updated_at?: (Scalars['timestamptz'] | null),username?: (Scalars['String'] | null)} + + +/** aggregate stddev on columns */ +export interface steam_accounts_stddev_fieldsGenqlSelection{ + friend_capacity?: boolean | number + steam_level?: boolean | number + steamid64?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface steam_accounts_stddev_pop_fieldsGenqlSelection{ + friend_capacity?: boolean | number + steam_level?: boolean | number + steamid64?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface steam_accounts_stddev_samp_fieldsGenqlSelection{ + friend_capacity?: boolean | number + steam_level?: boolean | number + steamid64?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "steam_accounts" */ +export interface steam_accounts_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: steam_accounts_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface steam_accounts_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),friend_capacity?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),last_node_id?: (Scalars['String'] | null),password?: (Scalars['String'] | null),role?: (Scalars['String'] | null),steam_level?: (Scalars['Int'] | null),steamid64?: (Scalars['bigint'] | null),updated_at?: (Scalars['timestamptz'] | null),username?: (Scalars['String'] | null)} + + +/** aggregate sum on columns */ +export interface steam_accounts_sum_fieldsGenqlSelection{ + friend_capacity?: boolean | number + steam_level?: boolean | number + steamid64?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface steam_accounts_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (steam_accounts_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (steam_accounts_set_input | null), +/** filter the rows which have to be updated */ +where: steam_accounts_bool_exp} + + +/** aggregate var_pop on columns */ +export interface steam_accounts_var_pop_fieldsGenqlSelection{ + friend_capacity?: boolean | number + steam_level?: boolean | number + steamid64?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface steam_accounts_var_samp_fieldsGenqlSelection{ + friend_capacity?: boolean | number + steam_level?: boolean | number + steamid64?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface steam_accounts_variance_fieldsGenqlSelection{ + friend_capacity?: boolean | number + steam_level?: boolean | number + steamid64?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface subscription_rootGenqlSelection{ + /** fetch data from the table: "_map_pool" */ + _map_pool?: (_map_poolGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (_map_pool_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (_map_pool_order_by[] | null), + /** filter the rows returned */ + where?: (_map_pool_bool_exp | null)} }) + /** fetch aggregated fields from the table: "_map_pool" */ + _map_pool_aggregate?: (_map_pool_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (_map_pool_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (_map_pool_order_by[] | null), + /** filter the rows returned */ + where?: (_map_pool_bool_exp | null)} }) + /** fetch data from the table: "_map_pool" using primary key columns */ + _map_pool_by_pk?: (_map_poolGenqlSelection & { __args: {map_id: Scalars['uuid'], map_pool_id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "_map_pool" */ + _map_pool_stream?: (_map_poolGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (_map_pool_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (_map_pool_bool_exp | null)} }) + /** An array relationship */ + abandoned_matches?: (abandoned_matchesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (abandoned_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?: (abandoned_matches_order_by[] | null), + /** filter the rows returned */ + where?: (abandoned_matches_bool_exp | null)} }) + /** An aggregate relationship */ + abandoned_matches_aggregate?: (abandoned_matches_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (abandoned_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?: (abandoned_matches_order_by[] | null), + /** filter the rows returned */ + where?: (abandoned_matches_bool_exp | null)} }) + /** fetch data from the table: "abandoned_matches" using primary key columns */ + abandoned_matches_by_pk?: (abandoned_matchesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "abandoned_matches" */ + abandoned_matches_stream?: (abandoned_matchesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (abandoned_matches_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (abandoned_matches_bool_exp | null)} }) + /** fetch data from the table: "api_keys" */ + api_keys?: (api_keysGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (api_keys_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (api_keys_order_by[] | null), + /** filter the rows returned */ + where?: (api_keys_bool_exp | null)} }) + /** fetch aggregated fields from the table: "api_keys" */ + api_keys_aggregate?: (api_keys_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (api_keys_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (api_keys_order_by[] | null), + /** filter the rows returned */ + where?: (api_keys_bool_exp | null)} }) + /** fetch data from the table: "api_keys" using primary key columns */ + api_keys_by_pk?: (api_keysGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "api_keys" */ + api_keys_stream?: (api_keysGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (api_keys_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (api_keys_bool_exp | null)} }) + /** fetch data from the table: "award_recipients" */ + award_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)} }) + /** fetch aggregated fields from the table: "award_recipients" */ + award_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)} }) + /** fetch data from the table: "award_recipients" using primary key columns */ + award_recipients_by_pk?: (award_recipientsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "award_recipients" */ + award_recipients_stream?: (award_recipientsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (award_recipients_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (award_recipients_bool_exp | null)} }) + /** fetch data from the table: "awards" */ + awards?: (awardsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (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?: (awards_order_by[] | null), + /** filter the rows returned */ + where?: (awards_bool_exp | null)} }) + /** fetch aggregated fields from the table: "awards" */ + awards_aggregate?: (awards_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (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?: (awards_order_by[] | null), + /** filter the rows returned */ + where?: (awards_bool_exp | null)} }) + /** fetch data from the table: "awards" using primary key columns */ + awards_by_pk?: (awardsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "awards" */ + awards_stream?: (awardsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (awards_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (awards_bool_exp | null)} }) + /** fetch data from the table: "chat_read_state" */ + chat_read_state?: (chat_read_stateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (chat_read_state_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (chat_read_state_order_by[] | null), + /** filter the rows returned */ + where?: (chat_read_state_bool_exp | null)} }) + /** fetch aggregated fields from the table: "chat_read_state" */ + chat_read_state_aggregate?: (chat_read_state_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (chat_read_state_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (chat_read_state_order_by[] | null), + /** filter the rows returned */ + where?: (chat_read_state_bool_exp | null)} }) + /** fetch data from the table: "chat_read_state" using primary key columns */ + chat_read_state_by_pk?: (chat_read_stateGenqlSelection & { __args: {steam_id: Scalars['bigint'], thread: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "chat_read_state" */ + chat_read_state_stream?: (chat_read_stateGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (chat_read_state_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (chat_read_state_bool_exp | null)} }) + /** An array relationship */ + clip_render_jobs?: (clip_render_jobsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (clip_render_jobs_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (clip_render_jobs_order_by[] | null), + /** filter the rows returned */ + where?: (clip_render_jobs_bool_exp | null)} }) + /** An aggregate relationship */ + clip_render_jobs_aggregate?: (clip_render_jobs_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (clip_render_jobs_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (clip_render_jobs_order_by[] | null), + /** filter the rows returned */ + where?: (clip_render_jobs_bool_exp | null)} }) + /** fetch data from the table: "clip_render_jobs" using primary key columns */ + clip_render_jobs_by_pk?: (clip_render_jobsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "clip_render_jobs" */ + clip_render_jobs_stream?: (clip_render_jobsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (clip_render_jobs_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (clip_render_jobs_bool_exp | null)} }) + /** fetch data from the table: "custom_pages" */ + custom_pages?: (custom_pagesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (custom_pages_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (custom_pages_order_by[] | null), + /** filter the rows returned */ + where?: (custom_pages_bool_exp | null)} }) + /** fetch aggregated fields from the table: "custom_pages" */ + custom_pages_aggregate?: (custom_pages_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (custom_pages_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (custom_pages_order_by[] | null), + /** filter the rows returned */ + where?: (custom_pages_bool_exp | null)} }) + /** fetch data from the table: "custom_pages" using primary key columns */ + custom_pages_by_pk?: (custom_pagesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "custom_pages" */ + custom_pages_stream?: (custom_pagesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (custom_pages_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (custom_pages_bool_exp | null)} }) + /** fetch data from the table: "db_backups" */ + db_backups?: (db_backupsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (db_backups_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (db_backups_order_by[] | null), + /** filter the rows returned */ + where?: (db_backups_bool_exp | null)} }) + /** fetch aggregated fields from the table: "db_backups" */ + db_backups_aggregate?: (db_backups_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (db_backups_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (db_backups_order_by[] | null), + /** filter the rows returned */ + where?: (db_backups_bool_exp | null)} }) + /** fetch data from the table: "db_backups" using primary key columns */ + db_backups_by_pk?: (db_backupsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "db_backups" */ + db_backups_stream?: (db_backupsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (db_backups_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (db_backups_bool_exp | null)} }) + /** fetch data from the table: "direct_conversations" */ + direct_conversations?: (direct_conversationsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (direct_conversations_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (direct_conversations_order_by[] | null), + /** filter the rows returned */ + where?: (direct_conversations_bool_exp | null)} }) + /** fetch aggregated fields from the table: "direct_conversations" */ + direct_conversations_aggregate?: (direct_conversations_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (direct_conversations_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (direct_conversations_order_by[] | null), + /** filter the rows returned */ + where?: (direct_conversations_bool_exp | null)} }) + /** fetch data from the table: "direct_conversations" using primary key columns */ + direct_conversations_by_pk?: (direct_conversationsGenqlSelection & { __args: {room_id: Scalars['String'], steam_id: Scalars['bigint']} }) + /** fetch data from the table in a streaming manner: "direct_conversations" */ + direct_conversations_stream?: (direct_conversationsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (direct_conversations_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (direct_conversations_bool_exp | null)} }) + /** fetch data from the table: "direct_messages" */ + direct_messages?: (direct_messagesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (direct_messages_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (direct_messages_order_by[] | null), + /** filter the rows returned */ + where?: (direct_messages_bool_exp | null)} }) + /** fetch aggregated fields from the table: "direct_messages" */ + direct_messages_aggregate?: (direct_messages_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (direct_messages_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (direct_messages_order_by[] | null), + /** filter the rows returned */ + where?: (direct_messages_bool_exp | null)} }) + /** fetch data from the table: "direct_messages" using primary key columns */ + direct_messages_by_pk?: (direct_messagesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "direct_messages" */ + direct_messages_stream?: (direct_messagesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (direct_messages_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (direct_messages_bool_exp | null)} }) + /** fetch data from the table: "draft_game_picks" */ + draft_game_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)} }) + /** fetch aggregated fields from the table: "draft_game_picks" */ + draft_game_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)} }) + /** fetch data from the table: "draft_game_picks" using primary key columns */ + draft_game_picks_by_pk?: (draft_game_picksGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "draft_game_picks" */ + draft_game_picks_stream?: (draft_game_picksGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (draft_game_picks_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (draft_game_picks_bool_exp | null)} }) + /** An array relationship */ + draft_game_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 */ + draft_game_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)} }) + /** fetch data from the table: "draft_game_players" using primary key columns */ + draft_game_players_by_pk?: (draft_game_playersGenqlSelection & { __args: {draft_game_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) + /** fetch data from the table in a streaming manner: "draft_game_players" */ + draft_game_players_stream?: (draft_game_playersGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (draft_game_players_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (draft_game_players_bool_exp | null)} }) + /** An array relationship */ + draft_games?: (draft_gamesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_games_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_games_order_by[] | null), + /** filter the rows returned */ + where?: (draft_games_bool_exp | null)} }) + /** An aggregate relationship */ + draft_games_aggregate?: (draft_games_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_games_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_games_order_by[] | null), + /** filter the rows returned */ + where?: (draft_games_bool_exp | null)} }) + /** fetch data from the table: "draft_games" using primary key columns */ + draft_games_by_pk?: (draft_gamesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "draft_games" */ + draft_games_stream?: (draft_gamesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (draft_games_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (draft_games_bool_exp | null)} }) + /** fetch data from the table: "e_award_sources" */ + e_award_sources?: (e_award_sourcesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_award_sources_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_award_sources_order_by[] | null), + /** filter the rows returned */ + where?: (e_award_sources_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_award_sources" */ + e_award_sources_aggregate?: (e_award_sources_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_award_sources_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_award_sources_order_by[] | null), + /** filter the rows returned */ + where?: (e_award_sources_bool_exp | null)} }) + /** fetch data from the table: "e_award_sources" using primary key columns */ + e_award_sources_by_pk?: (e_award_sourcesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_award_sources" */ + e_award_sources_stream?: (e_award_sourcesGenqlSelection & { __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_award_sources_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_award_sources_bool_exp | null)} }) + /** fetch data from the table: "e_award_tiers" */ + e_award_tiers?: (e_award_tiersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_award_tiers_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_award_tiers_order_by[] | null), + /** filter the rows returned */ + where?: (e_award_tiers_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_award_tiers" */ + e_award_tiers_aggregate?: (e_award_tiers_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_award_tiers_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_award_tiers_order_by[] | null), + /** filter the rows returned */ + where?: (e_award_tiers_bool_exp | null)} }) + /** fetch data from the table: "e_award_tiers" using primary key columns */ + e_award_tiers_by_pk?: (e_award_tiersGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_award_tiers" */ + e_award_tiers_stream?: (e_award_tiersGenqlSelection & { __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_award_tiers_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_award_tiers_bool_exp | null)} }) + /** fetch data from the table: "e_check_in_settings" */ + e_check_in_settings?: (e_check_in_settingsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_check_in_settings_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_check_in_settings_order_by[] | null), + /** filter the rows returned */ + where?: (e_check_in_settings_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_check_in_settings" */ + e_check_in_settings_aggregate?: (e_check_in_settings_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_check_in_settings_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_check_in_settings_order_by[] | null), + /** filter the rows returned */ + where?: (e_check_in_settings_bool_exp | null)} }) + /** fetch data from the table: "e_check_in_settings" using primary key columns */ + e_check_in_settings_by_pk?: (e_check_in_settingsGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_check_in_settings" */ + e_check_in_settings_stream?: (e_check_in_settingsGenqlSelection & { __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_check_in_settings_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_check_in_settings_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_captain_selection" */ + e_draft_game_captain_selection?: (e_draft_game_captain_selectionGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_captain_selection_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_draft_game_captain_selection_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_captain_selection_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_draft_game_captain_selection" */ + e_draft_game_captain_selection_aggregate?: (e_draft_game_captain_selection_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_captain_selection_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_draft_game_captain_selection_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_captain_selection_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_captain_selection" using primary key columns */ + e_draft_game_captain_selection_by_pk?: (e_draft_game_captain_selectionGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_draft_game_captain_selection" */ + e_draft_game_captain_selection_stream?: (e_draft_game_captain_selectionGenqlSelection & { __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_draft_game_captain_selection_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_draft_game_captain_selection_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_draft_order" */ + e_draft_game_draft_order?: (e_draft_game_draft_orderGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_draft_order_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_draft_game_draft_order_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_draft_order_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_draft_game_draft_order" */ + e_draft_game_draft_order_aggregate?: (e_draft_game_draft_order_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_draft_order_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_draft_game_draft_order_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_draft_order_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_draft_order" using primary key columns */ + e_draft_game_draft_order_by_pk?: (e_draft_game_draft_orderGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_draft_game_draft_order" */ + e_draft_game_draft_order_stream?: (e_draft_game_draft_orderGenqlSelection & { __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_draft_game_draft_order_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_draft_game_draft_order_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_mode" */ + e_draft_game_mode?: (e_draft_game_modeGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_mode_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_draft_game_mode_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_mode_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_draft_game_mode" */ + e_draft_game_mode_aggregate?: (e_draft_game_mode_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_mode_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_draft_game_mode_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_mode_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_mode" using primary key columns */ + e_draft_game_mode_by_pk?: (e_draft_game_modeGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_draft_game_mode" */ + e_draft_game_mode_stream?: (e_draft_game_modeGenqlSelection & { __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_draft_game_mode_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_draft_game_mode_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_player_status" */ + e_draft_game_player_status?: (e_draft_game_player_statusGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_player_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_draft_game_player_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_player_status_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_draft_game_player_status" */ + e_draft_game_player_status_aggregate?: (e_draft_game_player_status_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_player_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_draft_game_player_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_player_status_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_player_status" using primary key columns */ + e_draft_game_player_status_by_pk?: (e_draft_game_player_statusGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_draft_game_player_status" */ + e_draft_game_player_status_stream?: (e_draft_game_player_statusGenqlSelection & { __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_draft_game_player_status_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_draft_game_player_status_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_status" */ + e_draft_game_status?: (e_draft_game_statusGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_draft_game_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_status_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_draft_game_status" */ + e_draft_game_status_aggregate?: (e_draft_game_status_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_draft_game_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_status_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_status" using primary key columns */ + e_draft_game_status_by_pk?: (e_draft_game_statusGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_draft_game_status" */ + e_draft_game_status_stream?: (e_draft_game_statusGenqlSelection & { __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_draft_game_status_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_draft_game_status_bool_exp | null)} }) + /** fetch data from the table: "e_event_media_access" */ + e_event_media_access?: (e_event_media_accessGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_event_media_access_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_event_media_access_order_by[] | null), + /** filter the rows returned */ + where?: (e_event_media_access_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_event_media_access" */ + e_event_media_access_aggregate?: (e_event_media_access_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_event_media_access_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_event_media_access_order_by[] | null), + /** filter the rows returned */ + where?: (e_event_media_access_bool_exp | null)} }) + /** fetch data from the table: "e_event_media_access" using primary key columns */ + e_event_media_access_by_pk?: (e_event_media_accessGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_event_media_access" */ + e_event_media_access_stream?: (e_event_media_accessGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (e_event_media_access_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_event_media_access_bool_exp | null)} }) + /** fetch data from the table: "e_event_visibility" */ + e_event_visibility?: (e_event_visibilityGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_event_visibility_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_event_visibility_order_by[] | null), + /** filter the rows returned */ + where?: (e_event_visibility_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_event_visibility" */ + e_event_visibility_aggregate?: (e_event_visibility_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_event_visibility_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_event_visibility_order_by[] | null), + /** filter the rows returned */ + where?: (e_event_visibility_bool_exp | null)} }) + /** fetch data from the table: "e_event_visibility" using primary key columns */ + e_event_visibility_by_pk?: (e_event_visibilityGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_event_visibility" */ + e_event_visibility_stream?: (e_event_visibilityGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (e_event_visibility_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_event_visibility_bool_exp | null)} }) + /** fetch data from the table: "e_friend_status" */ + e_friend_status?: (e_friend_statusGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_friend_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_friend_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_friend_status_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_friend_status" */ + e_friend_status_aggregate?: (e_friend_status_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_friend_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_friend_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_friend_status_bool_exp | null)} }) + /** fetch data from the table: "e_friend_status" using primary key columns */ + e_friend_status_by_pk?: (e_friend_statusGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_friend_status" */ + e_friend_status_stream?: (e_friend_statusGenqlSelection & { __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_friend_status_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_friend_status_bool_exp | null)} }) + /** fetch data from the table: "e_game_cfg_types" */ + e_game_cfg_types?: (e_game_cfg_typesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_game_cfg_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_cfg_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_game_cfg_types_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_game_cfg_types" */ + e_game_cfg_types_aggregate?: (e_game_cfg_types_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_game_cfg_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_cfg_types_order_by[] | null), + /** filter the rows returned */ + 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 in a streaming manner: "e_game_cfg_types" */ + e_game_cfg_types_stream?: (e_game_cfg_typesGenqlSelection & { __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_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 */ + distinct_on?: (e_game_server_node_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_server_node_statuses_order_by[] | null), + /** filter the rows returned */ + where?: (e_game_server_node_statuses_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_game_server_node_statuses" */ + e_game_server_node_statuses_aggregate?: (e_game_server_node_statuses_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_game_server_node_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_server_node_statuses_order_by[] | null), + /** filter the rows returned */ + where?: (e_game_server_node_statuses_bool_exp | null)} }) + /** fetch data from the table: "e_game_server_node_statuses" using primary key columns */ + e_game_server_node_statuses_by_pk?: (e_game_server_node_statusesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_game_server_node_statuses" */ + e_game_server_node_statuses_stream?: (e_game_server_node_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_server_node_statuses_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_game_server_node_statuses_bool_exp | null)} }) + /** fetch data from the table: "e_league_movement_types" */ + e_league_movement_types?: (e_league_movement_typesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_league_movement_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_league_movement_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_league_movement_types_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_league_movement_types" */ + e_league_movement_types_aggregate?: (e_league_movement_types_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_league_movement_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_league_movement_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_league_movement_types_bool_exp | null)} }) + /** fetch data from the table: "e_league_movement_types" using primary key columns */ + e_league_movement_types_by_pk?: (e_league_movement_typesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_league_movement_types" */ + e_league_movement_types_stream?: (e_league_movement_typesGenqlSelection & { __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_league_movement_types_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_league_movement_types_bool_exp | null)} }) + /** fetch data from the table: "e_league_proposal_statuses" */ + e_league_proposal_statuses?: (e_league_proposal_statusesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_league_proposal_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_league_proposal_statuses_order_by[] | null), + /** filter the rows returned */ + where?: (e_league_proposal_statuses_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_league_proposal_statuses" */ + e_league_proposal_statuses_aggregate?: (e_league_proposal_statuses_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_league_proposal_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_league_proposal_statuses_order_by[] | null), + /** filter the rows returned */ + where?: (e_league_proposal_statuses_bool_exp | null)} }) + /** fetch data from the table: "e_league_proposal_statuses" using primary key columns */ + e_league_proposal_statuses_by_pk?: (e_league_proposal_statusesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_league_proposal_statuses" */ + e_league_proposal_statuses_stream?: (e_league_proposal_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_league_proposal_statuses_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_league_proposal_statuses_bool_exp | null)} }) + /** fetch data from the table: "e_league_registration_statuses" */ + e_league_registration_statuses?: (e_league_registration_statusesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_league_registration_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_league_registration_statuses_order_by[] | null), + /** filter the rows returned */ + where?: (e_league_registration_statuses_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_league_registration_statuses" */ + e_league_registration_statuses_aggregate?: (e_league_registration_statuses_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_league_registration_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_league_registration_statuses_order_by[] | null), + /** filter the rows returned */ + where?: (e_league_registration_statuses_bool_exp | null)} }) + /** fetch data from the table: "e_league_registration_statuses" using primary key columns */ + e_league_registration_statuses_by_pk?: (e_league_registration_statusesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_league_registration_statuses" */ + e_league_registration_statuses_stream?: (e_league_registration_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_league_registration_statuses_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_league_registration_statuses_bool_exp | null)} }) + /** fetch data from the table: "e_league_season_statuses" */ + e_league_season_statuses?: (e_league_season_statusesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_league_season_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_league_season_statuses_order_by[] | null), + /** filter the rows returned */ + where?: (e_league_season_statuses_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_league_season_statuses" */ + e_league_season_statuses_aggregate?: (e_league_season_statuses_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_league_season_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_league_season_statuses_order_by[] | null), + /** filter the rows returned */ + where?: (e_league_season_statuses_bool_exp | null)} }) + /** fetch data from the table: "e_league_season_statuses" using primary key columns */ + e_league_season_statuses_by_pk?: (e_league_season_statusesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_league_season_statuses" */ + e_league_season_statuses_stream?: (e_league_season_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_league_season_statuses_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_league_season_statuses_bool_exp | null)} }) + /** fetch data from the table: "e_lobby_access" */ + e_lobby_access?: (e_lobby_accessGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_lobby_access_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_lobby_access_order_by[] | null), + /** filter the rows returned */ + where?: (e_lobby_access_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_lobby_access" */ + e_lobby_access_aggregate?: (e_lobby_access_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_lobby_access_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_lobby_access_order_by[] | null), + /** filter the rows returned */ + where?: (e_lobby_access_bool_exp | null)} }) + /** fetch data from the table: "e_lobby_access" using primary key columns */ + e_lobby_access_by_pk?: (e_lobby_accessGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_lobby_access" */ + e_lobby_access_stream?: (e_lobby_accessGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (e_lobby_access_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_lobby_access_bool_exp | null)} }) + /** fetch data from the table: "e_lobby_player_status" */ + e_lobby_player_status?: (e_lobby_player_statusGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_lobby_player_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_lobby_player_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_lobby_player_status_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_lobby_player_status" */ + e_lobby_player_status_aggregate?: (e_lobby_player_status_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_lobby_player_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_lobby_player_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_lobby_player_status_bool_exp | null)} }) + /** fetch data from the table: "e_lobby_player_status" using primary key columns */ + e_lobby_player_status_by_pk?: (e_lobby_player_statusGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_lobby_player_status" */ + e_lobby_player_status_stream?: (e_lobby_player_statusGenqlSelection & { __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_lobby_player_status_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_lobby_player_status_bool_exp | null)} }) + /** fetch data from the table: "e_map_pool_types" */ + e_map_pool_types?: (e_map_pool_typesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_map_pool_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_map_pool_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_map_pool_types_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_map_pool_types" */ + e_map_pool_types_aggregate?: (e_map_pool_types_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_map_pool_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_map_pool_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_map_pool_types_bool_exp | null)} }) + /** fetch data from the table: "e_map_pool_types" using primary key columns */ + e_map_pool_types_by_pk?: (e_map_pool_typesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_map_pool_types" */ + e_map_pool_types_stream?: (e_map_pool_typesGenqlSelection & { __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_map_pool_types_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_map_pool_types_bool_exp | null)} }) + /** fetch data from the table: "e_match_clip_visibility" */ + e_match_clip_visibility?: (e_match_clip_visibilityGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_match_clip_visibility_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_match_clip_visibility_order_by[] | null), + /** filter the rows returned */ + where?: (e_match_clip_visibility_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_match_clip_visibility" */ + e_match_clip_visibility_aggregate?: (e_match_clip_visibility_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_match_clip_visibility_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_match_clip_visibility_order_by[] | null), + /** filter the rows returned */ + where?: (e_match_clip_visibility_bool_exp | null)} }) + /** fetch data from the table: "e_match_clip_visibility" using primary key columns */ + e_match_clip_visibility_by_pk?: (e_match_clip_visibilityGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_match_clip_visibility" */ + e_match_clip_visibility_stream?: (e_match_clip_visibilityGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (e_match_clip_visibility_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_match_clip_visibility_bool_exp | null)} }) + /** fetch data from the table: "e_match_map_status" */ + e_match_map_status?: (e_match_map_statusGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_match_map_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_map_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_match_map_status_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_match_map_status" */ + e_match_map_status_aggregate?: (e_match_map_status_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_match_map_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_map_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_match_map_status_bool_exp | null)} }) + /** fetch data from the table: "e_match_map_status" using primary key columns */ + e_match_map_status_by_pk?: (e_match_map_statusGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_match_map_status" */ + e_match_map_status_stream?: (e_match_map_statusGenqlSelection & { __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_match_map_status_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_match_map_status_bool_exp | null)} }) + /** fetch data from the table: "e_match_mode" */ + e_match_mode?: (e_match_modeGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_match_mode_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_mode_order_by[] | null), + /** filter the rows returned */ + where?: (e_match_mode_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_match_mode" */ + e_match_mode_aggregate?: (e_match_mode_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_match_mode_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_mode_order_by[] | null), + /** filter the rows returned */ + where?: (e_match_mode_bool_exp | null)} }) + /** fetch data from the table: "e_match_mode" using primary key columns */ + e_match_mode_by_pk?: (e_match_modeGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_match_mode" */ + e_match_mode_stream?: (e_match_modeGenqlSelection & { __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_match_mode_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_match_mode_bool_exp | null)} }) + /** fetch data from the table: "e_match_party_sources" */ + e_match_party_sources?: (e_match_party_sourcesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_match_party_sources_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_party_sources_order_by[] | null), + /** filter the rows returned */ + where?: (e_match_party_sources_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_match_party_sources" */ + e_match_party_sources_aggregate?: (e_match_party_sources_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_match_party_sources_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_party_sources_order_by[] | null), + /** filter the rows returned */ + where?: (e_match_party_sources_bool_exp | null)} }) + /** fetch data from the table: "e_match_party_sources" using primary key columns */ + e_match_party_sources_by_pk?: (e_match_party_sourcesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_match_party_sources" */ + e_match_party_sources_stream?: (e_match_party_sourcesGenqlSelection & { __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_match_party_sources_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_match_party_sources_bool_exp | null)} }) + /** fetch data from the table: "e_match_status" */ + e_match_status?: (e_match_statusGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_match_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_match_status_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_match_status" */ + e_match_status_aggregate?: (e_match_status_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_match_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_match_status_bool_exp | null)} }) + /** fetch data from the table: "e_match_status" using primary key columns */ + e_match_status_by_pk?: (e_match_statusGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_match_status" */ + e_match_status_stream?: (e_match_statusGenqlSelection & { __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_match_status_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_match_status_bool_exp | null)} }) + /** fetch data from the table: "e_match_types" */ + e_match_types?: (e_match_typesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_match_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_match_types_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_match_types" */ + e_match_types_aggregate?: (e_match_types_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_match_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_match_types_bool_exp | null)} }) + /** fetch data from the table: "e_match_types" using primary key columns */ + e_match_types_by_pk?: (e_match_typesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_match_types" */ + e_match_types_stream?: (e_match_typesGenqlSelection & { __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_match_types_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_match_types_bool_exp | null)} }) + /** fetch data from the table: "e_notification_types" */ + e_notification_types?: (e_notification_typesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_notification_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_notification_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_notification_types_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_notification_types" */ + e_notification_types_aggregate?: (e_notification_types_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_notification_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_notification_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_notification_types_bool_exp | null)} }) + /** fetch data from the table: "e_notification_types" using primary key columns */ + e_notification_types_by_pk?: (e_notification_typesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_notification_types" */ + e_notification_types_stream?: (e_notification_typesGenqlSelection & { __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_notification_types_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_notification_types_bool_exp | null)} }) + /** fetch data from the table: "e_objective_types" */ + e_objective_types?: (e_objective_typesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_objective_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_objective_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_objective_types_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_objective_types" */ + e_objective_types_aggregate?: (e_objective_types_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_objective_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_objective_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_objective_types_bool_exp | null)} }) + /** fetch data from the table: "e_objective_types" using primary key columns */ + e_objective_types_by_pk?: (e_objective_typesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_objective_types" */ + e_objective_types_stream?: (e_objective_typesGenqlSelection & { __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_objective_types_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_objective_types_bool_exp | null)} }) + /** fetch data from the table: "e_player_roles" */ + e_player_roles?: (e_player_rolesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_player_roles_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_roles_order_by[] | null), + /** filter the rows returned */ + where?: (e_player_roles_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_player_roles" */ + e_player_roles_aggregate?: (e_player_roles_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_player_roles_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_roles_order_by[] | null), + /** filter the rows returned */ + where?: (e_player_roles_bool_exp | null)} }) + /** fetch data from the table: "e_player_roles" using primary key columns */ + e_player_roles_by_pk?: (e_player_rolesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_player_roles" */ + e_player_roles_stream?: (e_player_rolesGenqlSelection & { __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_player_roles_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_player_roles_bool_exp | null)} }) + /** fetch data from the table: "e_plugin_runtimes" */ + e_plugin_runtimes?: (e_plugin_runtimesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_plugin_runtimes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_plugin_runtimes_order_by[] | null), + /** filter the rows returned */ + where?: (e_plugin_runtimes_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_plugin_runtimes" */ + e_plugin_runtimes_aggregate?: (e_plugin_runtimes_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_plugin_runtimes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_plugin_runtimes_order_by[] | null), + /** filter the rows returned */ + where?: (e_plugin_runtimes_bool_exp | null)} }) + /** fetch data from the table: "e_plugin_runtimes" using primary key columns */ + e_plugin_runtimes_by_pk?: (e_plugin_runtimesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_plugin_runtimes" */ + e_plugin_runtimes_stream?: (e_plugin_runtimesGenqlSelection & { __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_plugin_runtimes_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_plugin_runtimes_bool_exp | null)} }) + /** fetch data from the table: "e_ready_settings" */ + e_ready_settings?: (e_ready_settingsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_ready_settings_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_ready_settings_order_by[] | null), + /** filter the rows returned */ + where?: (e_ready_settings_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_ready_settings" */ + e_ready_settings_aggregate?: (e_ready_settings_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_ready_settings_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_ready_settings_order_by[] | null), + /** filter the rows returned */ + where?: (e_ready_settings_bool_exp | null)} }) + /** fetch data from the table: "e_ready_settings" using primary key columns */ + e_ready_settings_by_pk?: (e_ready_settingsGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_ready_settings" */ + e_ready_settings_stream?: (e_ready_settingsGenqlSelection & { __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_ready_settings_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_ready_settings_bool_exp | null)} }) + /** fetch data from the table: "e_sanction_scopes" */ + e_sanction_scopes?: (e_sanction_scopesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_sanction_scopes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_sanction_scopes_order_by[] | null), + /** filter the rows returned */ + where?: (e_sanction_scopes_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_sanction_scopes" */ + e_sanction_scopes_aggregate?: (e_sanction_scopes_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_sanction_scopes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_sanction_scopes_order_by[] | null), + /** filter the rows returned */ + where?: (e_sanction_scopes_bool_exp | null)} }) + /** fetch data from the table: "e_sanction_scopes" using primary key columns */ + e_sanction_scopes_by_pk?: (e_sanction_scopesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_sanction_scopes" */ + e_sanction_scopes_stream?: (e_sanction_scopesGenqlSelection & { __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_sanction_scopes_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_sanction_scopes_bool_exp | null)} }) + /** fetch data from the table: "e_sanction_sources" */ + e_sanction_sources?: (e_sanction_sourcesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_sanction_sources_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_sanction_sources_order_by[] | null), + /** filter the rows returned */ + where?: (e_sanction_sources_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_sanction_sources" */ + e_sanction_sources_aggregate?: (e_sanction_sources_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_sanction_sources_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_sanction_sources_order_by[] | null), + /** filter the rows returned */ + where?: (e_sanction_sources_bool_exp | null)} }) + /** fetch data from the table: "e_sanction_sources" using primary key columns */ + e_sanction_sources_by_pk?: (e_sanction_sourcesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_sanction_sources" */ + e_sanction_sources_stream?: (e_sanction_sourcesGenqlSelection & { __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_sanction_sources_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_sanction_sources_bool_exp | null)} }) + /** fetch data from the table: "e_sanction_types" */ + e_sanction_types?: (e_sanction_typesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_sanction_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_sanction_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_sanction_types_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_sanction_types" */ + e_sanction_types_aggregate?: (e_sanction_types_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_sanction_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_sanction_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_sanction_types_bool_exp | null)} }) + /** fetch data from the table: "e_sanction_types" using primary key columns */ + e_sanction_types_by_pk?: (e_sanction_typesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_sanction_types" */ + e_sanction_types_stream?: (e_sanction_typesGenqlSelection & { __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_sanction_types_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_sanction_types_bool_exp | null)} }) + /** fetch data from the table: "e_scrim_request_statuses" */ + e_scrim_request_statuses?: (e_scrim_request_statusesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_scrim_request_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_scrim_request_statuses_order_by[] | null), + /** filter the rows returned */ + where?: (e_scrim_request_statuses_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_scrim_request_statuses" */ + e_scrim_request_statuses_aggregate?: (e_scrim_request_statuses_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_scrim_request_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_scrim_request_statuses_order_by[] | null), + /** filter the rows returned */ + where?: (e_scrim_request_statuses_bool_exp | null)} }) + /** fetch data from the table: "e_scrim_request_statuses" using primary key columns */ + e_scrim_request_statuses_by_pk?: (e_scrim_request_statusesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_scrim_request_statuses" */ + e_scrim_request_statuses_stream?: (e_scrim_request_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_scrim_request_statuses_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_scrim_request_statuses_bool_exp | null)} }) + /** fetch data from the table: "e_server_types" */ + e_server_types?: (e_server_typesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_server_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_server_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_server_types_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_server_types" */ + e_server_types_aggregate?: (e_server_types_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_server_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_server_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_server_types_bool_exp | null)} }) + /** fetch data from the table: "e_server_types" using primary key columns */ + e_server_types_by_pk?: (e_server_typesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_server_types" */ + e_server_types_stream?: (e_server_typesGenqlSelection & { __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_server_types_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_server_types_bool_exp | null)} }) + /** fetch data from the table: "e_sides" */ + e_sides?: (e_sidesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_sides_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_sides_order_by[] | null), + /** filter the rows returned */ + where?: (e_sides_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_sides" */ + e_sides_aggregate?: (e_sides_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_sides_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_sides_order_by[] | null), + /** filter the rows returned */ + where?: (e_sides_bool_exp | null)} }) + /** fetch data from the table: "e_sides" using primary key columns */ + e_sides_by_pk?: (e_sidesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_sides" */ + e_sides_stream?: (e_sidesGenqlSelection & { __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_sides_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_sides_bool_exp | null)} }) + /** fetch data from the table: "e_system_alert_types" */ + e_system_alert_types?: (e_system_alert_typesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_system_alert_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_system_alert_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_system_alert_types_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_system_alert_types" */ + e_system_alert_types_aggregate?: (e_system_alert_types_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_system_alert_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_system_alert_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_system_alert_types_bool_exp | null)} }) + /** fetch data from the table: "e_system_alert_types" using primary key columns */ + e_system_alert_types_by_pk?: (e_system_alert_typesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_system_alert_types" */ + e_system_alert_types_stream?: (e_system_alert_typesGenqlSelection & { __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_system_alert_types_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_system_alert_types_bool_exp | null)} }) + /** fetch data from the table: "e_team_roles" */ + e_team_roles?: (e_team_rolesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_team_roles_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_team_roles_order_by[] | null), + /** filter the rows returned */ + where?: (e_team_roles_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_team_roles" */ + e_team_roles_aggregate?: (e_team_roles_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_team_roles_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_team_roles_order_by[] | null), + /** filter the rows returned */ + where?: (e_team_roles_bool_exp | null)} }) + /** fetch data from the table: "e_team_roles" using primary key columns */ + e_team_roles_by_pk?: (e_team_rolesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_team_roles" */ + e_team_roles_stream?: (e_team_rolesGenqlSelection & { __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_team_roles_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_team_roles_bool_exp | null)} }) + /** fetch data from the table: "e_team_roster_statuses" */ + e_team_roster_statuses?: (e_team_roster_statusesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_team_roster_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_team_roster_statuses_order_by[] | null), + /** filter the rows returned */ + where?: (e_team_roster_statuses_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_team_roster_statuses" */ + e_team_roster_statuses_aggregate?: (e_team_roster_statuses_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_team_roster_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_team_roster_statuses_order_by[] | null), + /** filter the rows returned */ + where?: (e_team_roster_statuses_bool_exp | null)} }) + /** fetch data from the table: "e_team_roster_statuses" using primary key columns */ + e_team_roster_statuses_by_pk?: (e_team_roster_statusesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_team_roster_statuses" */ + e_team_roster_statuses_stream?: (e_team_roster_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_team_roster_statuses_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_team_roster_statuses_bool_exp | null)} }) + /** fetch data from the table: "e_timeout_settings" */ + e_timeout_settings?: (e_timeout_settingsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_timeout_settings_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_timeout_settings_order_by[] | null), + /** filter the rows returned */ + where?: (e_timeout_settings_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_timeout_settings" */ + e_timeout_settings_aggregate?: (e_timeout_settings_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_timeout_settings_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_timeout_settings_order_by[] | null), + /** filter the rows returned */ + where?: (e_timeout_settings_bool_exp | null)} }) + /** fetch data from the table: "e_timeout_settings" using primary key columns */ + e_timeout_settings_by_pk?: (e_timeout_settingsGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_timeout_settings" */ + e_timeout_settings_stream?: (e_timeout_settingsGenqlSelection & { __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_timeout_settings_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_timeout_settings_bool_exp | null)} }) + /** fetch data from the table: "e_tournament_categories" */ + e_tournament_categories?: (e_tournament_categoriesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_tournament_categories_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_tournament_categories_order_by[] | null), + /** filter the rows returned */ + where?: (e_tournament_categories_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_tournament_categories" */ + e_tournament_categories_aggregate?: (e_tournament_categories_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_tournament_categories_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_tournament_categories_order_by[] | null), + /** filter the rows returned */ + where?: (e_tournament_categories_bool_exp | null)} }) + /** fetch data from the table: "e_tournament_categories" using primary key columns */ + e_tournament_categories_by_pk?: (e_tournament_categoriesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_tournament_categories" */ + e_tournament_categories_stream?: (e_tournament_categoriesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (e_tournament_categories_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_tournament_categories_bool_exp | null)} }) + /** fetch data from the table: "e_tournament_free_agent_statuses" */ + e_tournament_free_agent_statuses?: (e_tournament_free_agent_statusesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_tournament_free_agent_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_tournament_free_agent_statuses_order_by[] | null), + /** filter the rows returned */ + where?: (e_tournament_free_agent_statuses_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_tournament_free_agent_statuses" */ + e_tournament_free_agent_statuses_aggregate?: (e_tournament_free_agent_statuses_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_tournament_free_agent_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_tournament_free_agent_statuses_order_by[] | null), + /** filter the rows returned */ + where?: (e_tournament_free_agent_statuses_bool_exp | null)} }) + /** fetch data from the table: "e_tournament_free_agent_statuses" using primary key columns */ + e_tournament_free_agent_statuses_by_pk?: (e_tournament_free_agent_statusesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_tournament_free_agent_statuses" */ + e_tournament_free_agent_statuses_stream?: (e_tournament_free_agent_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_tournament_free_agent_statuses_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_tournament_free_agent_statuses_bool_exp | null)} }) + /** fetch data from the table: "e_tournament_registration_types" */ + e_tournament_registration_types?: (e_tournament_registration_typesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_tournament_registration_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_tournament_registration_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_tournament_registration_types_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_tournament_registration_types" */ + e_tournament_registration_types_aggregate?: (e_tournament_registration_types_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_tournament_registration_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_tournament_registration_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_tournament_registration_types_bool_exp | null)} }) + /** fetch data from the table: "e_tournament_registration_types" using primary key columns */ + e_tournament_registration_types_by_pk?: (e_tournament_registration_typesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_tournament_registration_types" */ + e_tournament_registration_types_stream?: (e_tournament_registration_typesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (e_tournament_registration_types_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_tournament_registration_types_bool_exp | null)} }) + /** fetch data from the table: "e_tournament_stage_types" */ + e_tournament_stage_types?: (e_tournament_stage_typesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_tournament_stage_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_tournament_stage_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_tournament_stage_types_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_tournament_stage_types" */ + e_tournament_stage_types_aggregate?: (e_tournament_stage_types_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_tournament_stage_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_tournament_stage_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_tournament_stage_types_bool_exp | null)} }) + /** fetch data from the table: "e_tournament_stage_types" using primary key columns */ + e_tournament_stage_types_by_pk?: (e_tournament_stage_typesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_tournament_stage_types" */ + e_tournament_stage_types_stream?: (e_tournament_stage_typesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (e_tournament_stage_types_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_tournament_stage_types_bool_exp | null)} }) + /** fetch data from the table: "e_tournament_status" */ + e_tournament_status?: (e_tournament_statusGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_tournament_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_tournament_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_tournament_status_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_tournament_status" */ + e_tournament_status_aggregate?: (e_tournament_status_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_tournament_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_tournament_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_tournament_status_bool_exp | null)} }) + /** fetch data from the table: "e_tournament_status" using primary key columns */ + e_tournament_status_by_pk?: (e_tournament_statusGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_tournament_status" */ + e_tournament_status_stream?: (e_tournament_statusGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (e_tournament_status_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_tournament_status_bool_exp | null)} }) + /** fetch data from the table: "e_utility_practice_access" */ + e_utility_practice_access?: (e_utility_practice_accessGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_utility_practice_access_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_utility_practice_access_order_by[] | null), + /** filter the rows returned */ + where?: (e_utility_practice_access_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_utility_practice_access" */ + e_utility_practice_access_aggregate?: (e_utility_practice_access_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_utility_practice_access_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_utility_practice_access_order_by[] | null), + /** filter the rows returned */ + where?: (e_utility_practice_access_bool_exp | null)} }) + /** fetch data from the table: "e_utility_practice_access" using primary key columns */ + e_utility_practice_access_by_pk?: (e_utility_practice_accessGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_utility_practice_access" */ + e_utility_practice_access_stream?: (e_utility_practice_accessGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (e_utility_practice_access_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_utility_practice_access_bool_exp | null)} }) + /** fetch data from the table: "e_utility_practice_statuses" */ + e_utility_practice_statuses?: (e_utility_practice_statusesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_utility_practice_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_utility_practice_statuses_order_by[] | null), + /** filter the rows returned */ + where?: (e_utility_practice_statuses_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_utility_practice_statuses" */ + e_utility_practice_statuses_aggregate?: (e_utility_practice_statuses_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_utility_practice_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_utility_practice_statuses_order_by[] | null), + /** filter the rows returned */ + where?: (e_utility_practice_statuses_bool_exp | null)} }) + /** fetch data from the table: "e_utility_practice_statuses" using primary key columns */ + e_utility_practice_statuses_by_pk?: (e_utility_practice_statusesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_utility_practice_statuses" */ + e_utility_practice_statuses_stream?: (e_utility_practice_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_utility_practice_statuses_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_utility_practice_statuses_bool_exp | null)} }) + /** fetch data from the table: "e_utility_sources" */ + e_utility_sources?: (e_utility_sourcesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_utility_sources_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_utility_sources_order_by[] | null), + /** filter the rows returned */ + where?: (e_utility_sources_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_utility_sources" */ + e_utility_sources_aggregate?: (e_utility_sources_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_utility_sources_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_utility_sources_order_by[] | null), + /** filter the rows returned */ + where?: (e_utility_sources_bool_exp | null)} }) + /** fetch data from the table: "e_utility_sources" using primary key columns */ + e_utility_sources_by_pk?: (e_utility_sourcesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_utility_sources" */ + e_utility_sources_stream?: (e_utility_sourcesGenqlSelection & { __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_utility_sources_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_utility_sources_bool_exp | null)} }) + /** fetch data from the table: "e_utility_techniques" */ + e_utility_techniques?: (e_utility_techniquesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_utility_techniques_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_utility_techniques_order_by[] | null), + /** filter the rows returned */ + where?: (e_utility_techniques_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_utility_techniques" */ + e_utility_techniques_aggregate?: (e_utility_techniques_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_utility_techniques_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_utility_techniques_order_by[] | null), + /** filter the rows returned */ + where?: (e_utility_techniques_bool_exp | null)} }) + /** fetch data from the table: "e_utility_techniques" using primary key columns */ + e_utility_techniques_by_pk?: (e_utility_techniquesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_utility_techniques" */ + e_utility_techniques_stream?: (e_utility_techniquesGenqlSelection & { __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_utility_techniques_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_utility_techniques_bool_exp | null)} }) + /** fetch data from the table: "e_utility_throw_strengths" */ + e_utility_throw_strengths?: (e_utility_throw_strengthsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_utility_throw_strengths_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_utility_throw_strengths_order_by[] | null), + /** filter the rows returned */ + where?: (e_utility_throw_strengths_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_utility_throw_strengths" */ + e_utility_throw_strengths_aggregate?: (e_utility_throw_strengths_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_utility_throw_strengths_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_utility_throw_strengths_order_by[] | null), + /** filter the rows returned */ + where?: (e_utility_throw_strengths_bool_exp | null)} }) + /** fetch data from the table: "e_utility_throw_strengths" using primary key columns */ + e_utility_throw_strengths_by_pk?: (e_utility_throw_strengthsGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_utility_throw_strengths" */ + e_utility_throw_strengths_stream?: (e_utility_throw_strengthsGenqlSelection & { __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_utility_throw_strengths_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_utility_throw_strengths_bool_exp | null)} }) + /** fetch data from the table: "e_utility_types" */ + e_utility_types?: (e_utility_typesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_utility_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_utility_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_utility_types_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_utility_types" */ + e_utility_types_aggregate?: (e_utility_types_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_utility_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_utility_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_utility_types_bool_exp | null)} }) + /** fetch data from the table: "e_utility_types" using primary key columns */ + e_utility_types_by_pk?: (e_utility_typesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_utility_types" */ + e_utility_types_stream?: (e_utility_typesGenqlSelection & { __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_utility_types_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_utility_types_bool_exp | null)} }) + /** fetch data from the table: "e_utility_visibility" */ + e_utility_visibility?: (e_utility_visibilityGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_utility_visibility_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_utility_visibility_order_by[] | null), + /** filter the rows returned */ + where?: (e_utility_visibility_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_utility_visibility" */ + e_utility_visibility_aggregate?: (e_utility_visibility_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_utility_visibility_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_utility_visibility_order_by[] | null), + /** filter the rows returned */ + where?: (e_utility_visibility_bool_exp | null)} }) + /** fetch data from the table: "e_utility_visibility" using primary key columns */ + e_utility_visibility_by_pk?: (e_utility_visibilityGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_utility_visibility" */ + e_utility_visibility_stream?: (e_utility_visibilityGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (e_utility_visibility_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_utility_visibility_bool_exp | null)} }) + /** fetch data from the table: "e_veto_pick_types" */ + e_veto_pick_types?: (e_veto_pick_typesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_veto_pick_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_veto_pick_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_veto_pick_types_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_veto_pick_types" */ + e_veto_pick_types_aggregate?: (e_veto_pick_types_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_veto_pick_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_veto_pick_types_order_by[] | null), + /** filter the rows returned */ + where?: (e_veto_pick_types_bool_exp | null)} }) + /** fetch data from the table: "e_veto_pick_types" using primary key columns */ + e_veto_pick_types_by_pk?: (e_veto_pick_typesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_veto_pick_types" */ + e_veto_pick_types_stream?: (e_veto_pick_typesGenqlSelection & { __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_veto_pick_types_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_veto_pick_types_bool_exp | null)} }) + /** fetch data from the table: "e_winning_reasons" */ + e_winning_reasons?: (e_winning_reasonsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_winning_reasons_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_winning_reasons_order_by[] | null), + /** filter the rows returned */ + where?: (e_winning_reasons_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_winning_reasons" */ + e_winning_reasons_aggregate?: (e_winning_reasons_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_winning_reasons_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_winning_reasons_order_by[] | null), + /** filter the rows returned */ + where?: (e_winning_reasons_bool_exp | null)} }) + /** fetch data from the table: "e_winning_reasons" using primary key columns */ + e_winning_reasons_by_pk?: (e_winning_reasonsGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_winning_reasons" */ + e_winning_reasons_stream?: (e_winning_reasonsGenqlSelection & { __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_winning_reasons_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_winning_reasons_bool_exp | null)} }) + /** fetch data from the table: "event_match_links" */ + event_match_links?: (event_match_linksGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_match_links_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (event_match_links_order_by[] | null), + /** filter the rows returned */ + where?: (event_match_links_bool_exp | null)} }) + /** fetch aggregated fields from the table: "event_match_links" */ + event_match_links_aggregate?: (event_match_links_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_match_links_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (event_match_links_order_by[] | null), + /** filter the rows returned */ + where?: (event_match_links_bool_exp | null)} }) + /** fetch data from the table: "event_match_links" using primary key columns */ + event_match_links_by_pk?: (event_match_linksGenqlSelection & { __args: {event_id: Scalars['uuid'], match_id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "event_match_links" */ + event_match_links_stream?: (event_match_linksGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (event_match_links_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (event_match_links_bool_exp | null)} }) + /** fetch data from the table: "event_media" */ + event_media?: (event_mediaGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_media_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (event_media_order_by[] | null), + /** filter the rows returned */ + where?: (event_media_bool_exp | null)} }) + /** fetch aggregated fields from the table: "event_media" */ + event_media_aggregate?: (event_media_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_media_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (event_media_order_by[] | null), + /** filter the rows returned */ + where?: (event_media_bool_exp | null)} }) + /** fetch data from the table: "event_media" using primary key columns */ + event_media_by_pk?: (event_mediaGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "event_media_players" */ + event_media_players?: (event_media_playersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_media_players_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (event_media_players_order_by[] | null), + /** filter the rows returned */ + where?: (event_media_players_bool_exp | null)} }) + /** fetch aggregated fields from the table: "event_media_players" */ + event_media_players_aggregate?: (event_media_players_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_media_players_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (event_media_players_order_by[] | null), + /** filter the rows returned */ + where?: (event_media_players_bool_exp | null)} }) + /** fetch data from the table: "event_media_players" using primary key columns */ + event_media_players_by_pk?: (event_media_playersGenqlSelection & { __args: {media_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) + /** fetch data from the table in a streaming manner: "event_media_players" */ + event_media_players_stream?: (event_media_playersGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (event_media_players_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (event_media_players_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "event_media" */ + event_media_stream?: (event_mediaGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (event_media_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (event_media_bool_exp | null)} }) + /** fetch data from the table: "event_organizers" */ + event_organizers?: (event_organizersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_organizers_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (event_organizers_order_by[] | null), + /** filter the rows returned */ + where?: (event_organizers_bool_exp | null)} }) + /** fetch aggregated fields from the table: "event_organizers" */ + event_organizers_aggregate?: (event_organizers_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_organizers_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (event_organizers_order_by[] | null), + /** filter the rows returned */ + where?: (event_organizers_bool_exp | null)} }) + /** fetch data from the table: "event_organizers" using primary key columns */ + event_organizers_by_pk?: (event_organizersGenqlSelection & { __args: {event_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) + /** fetch data from the table in a streaming manner: "event_organizers" */ + event_organizers_stream?: (event_organizersGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (event_organizers_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (event_organizers_bool_exp | null)} }) + /** fetch data from the table: "event_players" */ + event_players?: (event_playersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_players_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (event_players_order_by[] | null), + /** filter the rows returned */ + where?: (event_players_bool_exp | null)} }) + /** fetch aggregated fields from the table: "event_players" */ + event_players_aggregate?: (event_players_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_players_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (event_players_order_by[] | null), + /** filter the rows returned */ + where?: (event_players_bool_exp | null)} }) + /** fetch data from the table: "event_players" using primary key columns */ + event_players_by_pk?: (event_playersGenqlSelection & { __args: {event_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) + /** fetch data from the table in a streaming manner: "event_players" */ + event_players_stream?: (event_playersGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (event_players_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (event_players_bool_exp | null)} }) + /** fetch data from the table: "event_teams" */ + event_teams?: (event_teamsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_teams_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (event_teams_order_by[] | null), + /** filter the rows returned */ + where?: (event_teams_bool_exp | null)} }) + /** fetch aggregated fields from the table: "event_teams" */ + event_teams_aggregate?: (event_teams_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_teams_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (event_teams_order_by[] | null), + /** filter the rows returned */ + where?: (event_teams_bool_exp | null)} }) + /** fetch data from the table: "event_teams" using primary key columns */ + event_teams_by_pk?: (event_teamsGenqlSelection & { __args: {event_id: Scalars['uuid'], team_id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "event_teams" */ + event_teams_stream?: (event_teamsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (event_teams_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (event_teams_bool_exp | null)} }) + /** fetch data from the table: "event_tournaments" */ + event_tournaments?: (event_tournamentsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_tournaments_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (event_tournaments_order_by[] | null), + /** filter the rows returned */ + where?: (event_tournaments_bool_exp | null)} }) + /** fetch aggregated fields from the table: "event_tournaments" */ + event_tournaments_aggregate?: (event_tournaments_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_tournaments_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (event_tournaments_order_by[] | null), + /** filter the rows returned */ + where?: (event_tournaments_bool_exp | null)} }) + /** fetch data from the table: "event_tournaments" using primary key columns */ + event_tournaments_by_pk?: (event_tournamentsGenqlSelection & { __args: {event_id: Scalars['uuid'], tournament_id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "event_tournaments" */ + event_tournaments_stream?: (event_tournamentsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (event_tournaments_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (event_tournaments_bool_exp | null)} }) + /** fetch data from the table: "events" */ + events?: (eventsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (events_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (events_order_by[] | null), + /** filter the rows returned */ + where?: (events_bool_exp | null)} }) + /** fetch aggregated fields from the table: "events" */ + events_aggregate?: (events_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (events_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (events_order_by[] | null), + /** filter the rows returned */ + where?: (events_bool_exp | null)} }) + /** fetch data from the table: "events" using primary key columns */ + events_by_pk?: (eventsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "events" */ + events_stream?: (eventsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (events_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (events_bool_exp | null)} }) + /** fetch data from the table: "friends" */ + friends?: (friendsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (friends_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (friends_order_by[] | null), + /** filter the rows returned */ + where?: (friends_bool_exp | null)} }) + /** fetch aggregated fields from the table: "friends" */ + friends_aggregate?: (friends_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (friends_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (friends_order_by[] | null), + /** filter the rows returned */ + 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 in a streaming manner: "friends" */ + friends_stream?: (friendsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + 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 */ + distinct_on?: (game_server_nodes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_nodes_order_by[] | null), + /** filter the rows returned */ + where?: (game_server_nodes_bool_exp | null)} }) + /** An aggregate relationship */ + game_server_nodes_aggregate?: (game_server_nodes_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (game_server_nodes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_nodes_order_by[] | null), + /** filter the rows returned */ + where?: (game_server_nodes_bool_exp | null)} }) + /** fetch data from the table: "game_server_nodes" using primary key columns */ + game_server_nodes_by_pk?: (game_server_nodesGenqlSelection & { __args: {id: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "game_server_nodes" */ + game_server_nodes_stream?: (game_server_nodesGenqlSelection & { __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_nodes_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (game_server_nodes_bool_exp | null)} }) + /** fetch data from the table: "game_versions" */ + game_versions?: (game_versionsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (game_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_versions_order_by[] | null), + /** filter the rows returned */ + where?: (game_versions_bool_exp | null)} }) + /** fetch aggregated fields from the table: "game_versions" */ + game_versions_aggregate?: (game_versions_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (game_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_versions_order_by[] | null), + /** filter the rows returned */ + where?: (game_versions_bool_exp | null)} }) + /** fetch data from the table: "game_versions" using primary key columns */ + game_versions_by_pk?: (game_versionsGenqlSelection & { __args: {build_id: Scalars['Int']} }) + /** fetch data from the table in a streaming manner: "game_versions" */ + game_versions_stream?: (game_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_versions_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (game_versions_bool_exp | null)} }) + /** fetch data from the table: "gamedata_signature_validations" */ + gamedata_signature_validations?: (gamedata_signature_validationsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (gamedata_signature_validations_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (gamedata_signature_validations_order_by[] | null), + /** filter the rows returned */ + where?: (gamedata_signature_validations_bool_exp | null)} }) + /** fetch aggregated fields from the table: "gamedata_signature_validations" */ + gamedata_signature_validations_aggregate?: (gamedata_signature_validations_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (gamedata_signature_validations_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (gamedata_signature_validations_order_by[] | null), + /** filter the rows returned */ + where?: (gamedata_signature_validations_bool_exp | null)} }) + /** fetch data from the table: "gamedata_signature_validations" using primary key columns */ + gamedata_signature_validations_by_pk?: (gamedata_signature_validationsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "gamedata_signature_validations" */ + gamedata_signature_validations_stream?: (gamedata_signature_validationsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (gamedata_signature_validations_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (gamedata_signature_validations_bool_exp | null)} }) + /** execute function "get_event_leaderboard" which returns "leaderboard_entries" */ + get_event_leaderboard?: (leaderboard_entriesGenqlSelection & { __args: { + /** input parameters for function "get_event_leaderboard" */ + args: get_event_leaderboard_args, + /** distinct select on columns */ + distinct_on?: (leaderboard_entries_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (leaderboard_entries_order_by[] | null), + /** filter the rows returned */ + where?: (leaderboard_entries_bool_exp | null)} }) + /** execute function "get_event_leaderboard" and query aggregates on result of table type "leaderboard_entries" */ + get_event_leaderboard_aggregate?: (leaderboard_entries_aggregateGenqlSelection & { __args: { + /** input parameters for function "get_event_leaderboard_aggregate" */ + args: get_event_leaderboard_args, + /** distinct select on columns */ + distinct_on?: (leaderboard_entries_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (leaderboard_entries_order_by[] | null), + /** filter the rows returned */ + where?: (leaderboard_entries_bool_exp | null)} }) + /** execute function "get_leaderboard" which returns "leaderboard_entries" */ + get_leaderboard?: (leaderboard_entriesGenqlSelection & { __args: { + /** input parameters for function "get_leaderboard" */ + args: get_leaderboard_args, + /** distinct select on columns */ + distinct_on?: (leaderboard_entries_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (leaderboard_entries_order_by[] | null), + /** filter the rows returned */ + where?: (leaderboard_entries_bool_exp | null)} }) + /** execute function "get_leaderboard" and query aggregates on result of table type "leaderboard_entries" */ + get_leaderboard_aggregate?: (leaderboard_entries_aggregateGenqlSelection & { __args: { + /** input parameters for function "get_leaderboard_aggregate" */ + args: get_leaderboard_args, + /** distinct select on columns */ + distinct_on?: (leaderboard_entries_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (leaderboard_entries_order_by[] | null), + /** filter the rows returned */ + where?: (leaderboard_entries_bool_exp | null)} }) + /** execute function "get_league_season_leaderboard" which returns "leaderboard_entries" */ + get_league_season_leaderboard?: (leaderboard_entriesGenqlSelection & { __args: { + /** input parameters for function "get_league_season_leaderboard" */ + args: get_league_season_leaderboard_args, + /** distinct select on columns */ + distinct_on?: (leaderboard_entries_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (leaderboard_entries_order_by[] | null), + /** filter the rows returned */ + where?: (leaderboard_entries_bool_exp | null)} }) + /** execute function "get_league_season_leaderboard" and query aggregates on result of table type "leaderboard_entries" */ + get_league_season_leaderboard_aggregate?: (leaderboard_entries_aggregateGenqlSelection & { __args: { + /** input parameters for function "get_league_season_leaderboard_aggregate" */ + args: get_league_season_leaderboard_args, + /** distinct select on columns */ + distinct_on?: (leaderboard_entries_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (leaderboard_entries_order_by[] | null), + /** filter the rows returned */ + where?: (leaderboard_entries_bool_exp | null)} }) + /** execute function "get_player_leaderboard_rank" which returns "player_leaderboard_rank" */ + get_player_leaderboard_rank?: (player_leaderboard_rankGenqlSelection & { __args: { + /** input parameters for function "get_player_leaderboard_rank" */ + args: get_player_leaderboard_rank_args, + /** distinct select on columns */ + distinct_on?: (player_leaderboard_rank_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_leaderboard_rank_order_by[] | null), + /** filter the rows returned */ + where?: (player_leaderboard_rank_bool_exp | null)} }) + /** execute function "get_player_leaderboard_rank" and query aggregates on result of table type "player_leaderboard_rank" */ + get_player_leaderboard_rank_aggregate?: (player_leaderboard_rank_aggregateGenqlSelection & { __args: { + /** input parameters for function "get_player_leaderboard_rank_aggregate" */ + args: get_player_leaderboard_rank_args, + /** distinct select on columns */ + distinct_on?: (player_leaderboard_rank_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_leaderboard_rank_order_by[] | null), + /** filter the rows returned */ + where?: (player_leaderboard_rank_bool_exp | null)} }) + /** execute function "get_tournament_leaderboard" which returns "tournament_leaderboard_entries" */ + get_tournament_leaderboard?: (tournament_leaderboard_entriesGenqlSelection & { __args: { + /** input parameters for function "get_tournament_leaderboard" */ + args: get_tournament_leaderboard_args, + /** distinct select on columns */ + distinct_on?: (tournament_leaderboard_entries_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_leaderboard_entries_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_leaderboard_entries_bool_exp | null)} }) + /** execute function "get_tournament_leaderboard" and query aggregates on result of table type "tournament_leaderboard_entries" */ + get_tournament_leaderboard_aggregate?: (tournament_leaderboard_entries_aggregateGenqlSelection & { __args: { + /** input parameters for function "get_tournament_leaderboard_aggregate" */ + args: get_tournament_leaderboard_args, + /** distinct select on columns */ + distinct_on?: (tournament_leaderboard_entries_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_leaderboard_entries_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_leaderboard_entries_bool_exp | null)} }) + /** fetch data from the table: "leaderboard_entries" */ + leaderboard_entries?: (leaderboard_entriesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (leaderboard_entries_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (leaderboard_entries_order_by[] | null), + /** filter the rows returned */ + where?: (leaderboard_entries_bool_exp | null)} }) + /** fetch aggregated fields from the table: "leaderboard_entries" */ + leaderboard_entries_aggregate?: (leaderboard_entries_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (leaderboard_entries_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (leaderboard_entries_order_by[] | null), + /** filter the rows returned */ + where?: (leaderboard_entries_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "leaderboard_entries" */ + leaderboard_entries_stream?: (leaderboard_entriesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (leaderboard_entries_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (leaderboard_entries_bool_exp | null)} }) + /** fetch data from the table: "league_divisions" */ + league_divisions?: (league_divisionsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_divisions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_divisions_order_by[] | null), + /** filter the rows returned */ + where?: (league_divisions_bool_exp | null)} }) + /** fetch aggregated fields from the table: "league_divisions" */ + league_divisions_aggregate?: (league_divisions_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_divisions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_divisions_order_by[] | null), + /** filter the rows returned */ + where?: (league_divisions_bool_exp | null)} }) + /** fetch data from the table: "league_divisions" using primary key columns */ + league_divisions_by_pk?: (league_divisionsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "league_divisions" */ + league_divisions_stream?: (league_divisionsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (league_divisions_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (league_divisions_bool_exp | null)} }) + /** fetch data from the table: "league_match_weeks" */ + league_match_weeks?: (league_match_weeksGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_match_weeks_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_match_weeks_order_by[] | null), + /** filter the rows returned */ + where?: (league_match_weeks_bool_exp | null)} }) + /** fetch aggregated fields from the table: "league_match_weeks" */ + league_match_weeks_aggregate?: (league_match_weeks_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_match_weeks_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_match_weeks_order_by[] | null), + /** filter the rows returned */ + where?: (league_match_weeks_bool_exp | null)} }) + /** fetch data from the table: "league_match_weeks" using primary key columns */ + league_match_weeks_by_pk?: (league_match_weeksGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "league_match_weeks" */ + league_match_weeks_stream?: (league_match_weeksGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (league_match_weeks_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (league_match_weeks_bool_exp | null)} }) + /** fetch data from the table: "league_relegation_playoffs" */ + league_relegation_playoffs?: (league_relegation_playoffsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_relegation_playoffs_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_relegation_playoffs_order_by[] | null), + /** filter the rows returned */ + where?: (league_relegation_playoffs_bool_exp | null)} }) + /** fetch aggregated fields from the table: "league_relegation_playoffs" */ + league_relegation_playoffs_aggregate?: (league_relegation_playoffs_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_relegation_playoffs_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_relegation_playoffs_order_by[] | null), + /** filter the rows returned */ + where?: (league_relegation_playoffs_bool_exp | null)} }) + /** fetch data from the table: "league_relegation_playoffs" using primary key columns */ + league_relegation_playoffs_by_pk?: (league_relegation_playoffsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "league_relegation_playoffs" */ + league_relegation_playoffs_stream?: (league_relegation_playoffsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (league_relegation_playoffs_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (league_relegation_playoffs_bool_exp | null)} }) + /** fetch data from the table: "league_scheduling_proposals" */ + league_scheduling_proposals?: (league_scheduling_proposalsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_scheduling_proposals_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_scheduling_proposals_order_by[] | null), + /** filter the rows returned */ + where?: (league_scheduling_proposals_bool_exp | null)} }) + /** fetch aggregated fields from the table: "league_scheduling_proposals" */ + league_scheduling_proposals_aggregate?: (league_scheduling_proposals_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_scheduling_proposals_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_scheduling_proposals_order_by[] | null), + /** filter the rows returned */ + where?: (league_scheduling_proposals_bool_exp | null)} }) + /** fetch data from the table: "league_scheduling_proposals" using primary key columns */ + league_scheduling_proposals_by_pk?: (league_scheduling_proposalsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "league_scheduling_proposals" */ + league_scheduling_proposals_stream?: (league_scheduling_proposalsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (league_scheduling_proposals_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (league_scheduling_proposals_bool_exp | null)} }) + /** fetch data from the table: "league_season_divisions" */ + league_season_divisions?: (league_season_divisionsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_season_divisions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_season_divisions_order_by[] | null), + /** filter the rows returned */ + where?: (league_season_divisions_bool_exp | null)} }) + /** fetch aggregated fields from the table: "league_season_divisions" */ + league_season_divisions_aggregate?: (league_season_divisions_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_season_divisions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_season_divisions_order_by[] | null), + /** filter the rows returned */ + where?: (league_season_divisions_bool_exp | null)} }) + /** fetch data from the table: "league_season_divisions" using primary key columns */ + league_season_divisions_by_pk?: (league_season_divisionsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "league_season_divisions" */ + league_season_divisions_stream?: (league_season_divisionsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (league_season_divisions_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (league_season_divisions_bool_exp | null)} }) + /** fetch data from the table: "league_seasons" */ + league_seasons?: (league_seasonsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_seasons_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_seasons_order_by[] | null), + /** filter the rows returned */ + where?: (league_seasons_bool_exp | null)} }) + /** fetch aggregated fields from the table: "league_seasons" */ + league_seasons_aggregate?: (league_seasons_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_seasons_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_seasons_order_by[] | null), + /** filter the rows returned */ + where?: (league_seasons_bool_exp | null)} }) + /** fetch data from the table: "league_seasons" using primary key columns */ + league_seasons_by_pk?: (league_seasonsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "league_seasons" */ + league_seasons_stream?: (league_seasonsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (league_seasons_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (league_seasons_bool_exp | null)} }) + /** fetch data from the table: "league_team_movements" */ + league_team_movements?: (league_team_movementsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_team_movements_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_team_movements_order_by[] | null), + /** filter the rows returned */ + where?: (league_team_movements_bool_exp | null)} }) + /** fetch aggregated fields from the table: "league_team_movements" */ + league_team_movements_aggregate?: (league_team_movements_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_team_movements_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_team_movements_order_by[] | null), + /** filter the rows returned */ + where?: (league_team_movements_bool_exp | null)} }) + /** fetch data from the table: "league_team_movements" using primary key columns */ + league_team_movements_by_pk?: (league_team_movementsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "league_team_movements" */ + league_team_movements_stream?: (league_team_movementsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (league_team_movements_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (league_team_movements_bool_exp | null)} }) + /** fetch data from the table: "league_team_rosters" */ + league_team_rosters?: (league_team_rostersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_team_rosters_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_team_rosters_order_by[] | null), + /** filter the rows returned */ + where?: (league_team_rosters_bool_exp | null)} }) + /** fetch aggregated fields from the table: "league_team_rosters" */ + league_team_rosters_aggregate?: (league_team_rosters_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_team_rosters_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_team_rosters_order_by[] | null), + /** filter the rows returned */ + where?: (league_team_rosters_bool_exp | null)} }) + /** fetch data from the table: "league_team_rosters" using primary key columns */ + league_team_rosters_by_pk?: (league_team_rostersGenqlSelection & { __args: {league_team_season_id: Scalars['uuid'], player_steam_id: Scalars['bigint']} }) + /** fetch data from the table in a streaming manner: "league_team_rosters" */ + league_team_rosters_stream?: (league_team_rostersGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (league_team_rosters_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (league_team_rosters_bool_exp | null)} }) + /** fetch data from the table: "league_team_seasons" */ + league_team_seasons?: (league_team_seasonsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_team_seasons_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_team_seasons_order_by[] | null), + /** filter the rows returned */ + where?: (league_team_seasons_bool_exp | null)} }) + /** fetch aggregated fields from the table: "league_team_seasons" */ + league_team_seasons_aggregate?: (league_team_seasons_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_team_seasons_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_team_seasons_order_by[] | null), + /** filter the rows returned */ + where?: (league_team_seasons_bool_exp | null)} }) + /** fetch data from the table: "league_team_seasons" using primary key columns */ + league_team_seasons_by_pk?: (league_team_seasonsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "league_team_seasons" */ + league_team_seasons_stream?: (league_team_seasonsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (league_team_seasons_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (league_team_seasons_bool_exp | null)} }) + /** fetch data from the table: "league_teams" */ + league_teams?: (league_teamsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_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?: (league_teams_order_by[] | null), + /** filter the rows returned */ + where?: (league_teams_bool_exp | null)} }) + /** fetch aggregated fields from the table: "league_teams" */ + league_teams_aggregate?: (league_teams_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_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?: (league_teams_order_by[] | null), + /** filter the rows returned */ + where?: (league_teams_bool_exp | null)} }) + /** fetch data from the table: "league_teams" using primary key columns */ + league_teams_by_pk?: (league_teamsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "league_teams" */ + league_teams_stream?: (league_teamsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (league_teams_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (league_teams_bool_exp | null)} }) + /** fetch data from the table: "lobbies" */ + lobbies?: (lobbiesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (lobbies_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (lobbies_order_by[] | null), + /** filter the rows returned */ + where?: (lobbies_bool_exp | null)} }) + /** fetch aggregated fields from the table: "lobbies" */ + lobbies_aggregate?: (lobbies_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (lobbies_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (lobbies_order_by[] | null), + /** filter the rows returned */ + where?: (lobbies_bool_exp | null)} }) + /** fetch data from the table: "lobbies" using primary key columns */ + lobbies_by_pk?: (lobbiesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "lobbies" */ + lobbies_stream?: (lobbiesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (lobbies_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (lobbies_bool_exp | null)} }) + /** An array relationship */ + lobby_players?: (lobby_playersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (lobby_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?: (lobby_players_order_by[] | null), + /** filter the rows returned */ + where?: (lobby_players_bool_exp | null)} }) + /** An aggregate relationship */ + lobby_players_aggregate?: (lobby_players_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (lobby_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?: (lobby_players_order_by[] | null), + /** filter the rows returned */ + where?: (lobby_players_bool_exp | null)} }) + /** fetch data from the table: "lobby_players" using primary key columns */ + lobby_players_by_pk?: (lobby_playersGenqlSelection & { __args: {lobby_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) + /** fetch data from the table in a streaming manner: "lobby_players" */ + lobby_players_stream?: (lobby_playersGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (lobby_players_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (lobby_players_bool_exp | null)} }) + /** fetch data from the table: "map_callouts" */ + map_callouts?: (map_calloutsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (map_callouts_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (map_callouts_order_by[] | null), + /** filter the rows returned */ + where?: (map_callouts_bool_exp | null)} }) + /** fetch aggregated fields from the table: "map_callouts" */ + map_callouts_aggregate?: (map_callouts_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (map_callouts_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (map_callouts_order_by[] | null), + /** filter the rows returned */ + where?: (map_callouts_bool_exp | null)} }) + /** fetch data from the table: "map_callouts" using primary key columns */ + map_callouts_by_pk?: (map_calloutsGenqlSelection & { __args: {map_name: Scalars['String'], name: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "map_callouts" */ + map_callouts_stream?: (map_calloutsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (map_callouts_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (map_callouts_bool_exp | null)} }) + /** fetch data from the table: "map_pools" */ + map_pools?: (map_poolsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (map_pools_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (map_pools_order_by[] | null), + /** filter the rows returned */ + where?: (map_pools_bool_exp | null)} }) + /** fetch aggregated fields from the table: "map_pools" */ + map_pools_aggregate?: (map_pools_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (map_pools_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (map_pools_order_by[] | null), + /** filter the rows returned */ + where?: (map_pools_bool_exp | null)} }) + /** fetch data from the table: "map_pools" using primary key columns */ + map_pools_by_pk?: (map_poolsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "map_pools" */ + map_pools_stream?: (map_poolsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (map_pools_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (map_pools_bool_exp | null)} }) + /** 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)} }) + /** fetch data from the table: "maps" using primary key columns */ + maps_by_pk?: (mapsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "maps" */ + maps_stream?: (mapsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (maps_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (maps_bool_exp | null)} }) + /** 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)} }) + /** fetch data from the table: "match_clips" using primary key columns */ + match_clips_by_pk?: (match_clipsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "match_clips" */ + match_clips_stream?: (match_clipsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (match_clips_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (match_clips_bool_exp | null)} }) + /** fetch data from the table: "match_demo_sessions" */ + match_demo_sessions?: (match_demo_sessionsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_demo_sessions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_demo_sessions_order_by[] | null), + /** filter the rows returned */ + where?: (match_demo_sessions_bool_exp | null)} }) + /** fetch aggregated fields from the table: "match_demo_sessions" */ + match_demo_sessions_aggregate?: (match_demo_sessions_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_demo_sessions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_demo_sessions_order_by[] | null), + /** filter the rows returned */ + where?: (match_demo_sessions_bool_exp | null)} }) + /** fetch data from the table: "match_demo_sessions" using primary key columns */ + match_demo_sessions_by_pk?: (match_demo_sessionsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "match_demo_sessions" */ + match_demo_sessions_stream?: (match_demo_sessionsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (match_demo_sessions_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (match_demo_sessions_bool_exp | null)} }) + /** 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)} }) + /** fetch data from the table: "match_lineup_players" using primary key columns */ + match_lineup_players_by_pk?: (match_lineup_playersGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "match_lineup_players" */ + match_lineup_players_stream?: (match_lineup_playersGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (match_lineup_players_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (match_lineup_players_bool_exp | null)} }) + /** An array relationship */ + match_lineups?: (match_lineupsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_lineups_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_lineups_order_by[] | null), + /** filter the rows returned */ + where?: (match_lineups_bool_exp | null)} }) + /** An aggregate relationship */ + match_lineups_aggregate?: (match_lineups_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_lineups_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_lineups_order_by[] | null), + /** filter the rows returned */ + where?: (match_lineups_bool_exp | null)} }) + /** fetch data from the table: "match_lineups" using primary key columns */ + match_lineups_by_pk?: (match_lineupsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "match_lineups" */ + match_lineups_stream?: (match_lineupsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (match_lineups_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (match_lineups_bool_exp | null)} }) + /** fetch data from the table: "match_map_demos" */ + match_map_demos?: (match_map_demosGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_map_demos_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_demos_order_by[] | null), + /** filter the rows returned */ + where?: (match_map_demos_bool_exp | null)} }) + /** fetch aggregated fields from the table: "match_map_demos" */ + match_map_demos_aggregate?: (match_map_demos_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_map_demos_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_demos_order_by[] | null), + /** filter the rows returned */ + where?: (match_map_demos_bool_exp | null)} }) + /** fetch data from the table: "match_map_demos" using primary key columns */ + match_map_demos_by_pk?: (match_map_demosGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "match_map_demos" */ + match_map_demos_stream?: (match_map_demosGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (match_map_demos_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (match_map_demos_bool_exp | null)} }) + /** fetch data from the table: "match_map_rounds" */ + match_map_rounds?: (match_map_roundsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_map_rounds_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_rounds_order_by[] | null), + /** filter the rows returned */ + where?: (match_map_rounds_bool_exp | null)} }) + /** fetch aggregated fields from the table: "match_map_rounds" */ + match_map_rounds_aggregate?: (match_map_rounds_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_map_rounds_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_rounds_order_by[] | null), + /** filter the rows returned */ + where?: (match_map_rounds_bool_exp | null)} }) + /** fetch data from the table: "match_map_rounds" using primary key columns */ + match_map_rounds_by_pk?: (match_map_roundsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "match_map_rounds" */ + match_map_rounds_stream?: (match_map_roundsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (match_map_rounds_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (match_map_rounds_bool_exp | null)} }) + /** fetch data from the table: "match_map_veto_picks" */ + match_map_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)} }) + /** fetch aggregated fields from the table: "match_map_veto_picks" */ + match_map_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)} }) + /** fetch data from the table: "match_map_veto_picks" using primary key columns */ + match_map_veto_picks_by_pk?: (match_map_veto_picksGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "match_map_veto_picks" */ + match_map_veto_picks_stream?: (match_map_veto_picksGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (match_map_veto_picks_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (match_map_veto_picks_bool_exp | null)} }) + /** 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)} }) + /** 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 in a streaming manner: "match_maps" */ + match_maps_stream?: (match_mapsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (match_maps_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (match_maps_bool_exp | null)} }) + /** 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)} }) + /** fetch data from the table: "match_options" using primary key columns */ + match_options_by_pk?: (match_optionsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "match_options" */ + match_options_stream?: (match_optionsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (match_options_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (match_options_bool_exp | null)} }) + /** fetch data from the table: "match_region_veto_picks" */ + match_region_veto_picks?: (match_region_veto_picksGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_region_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_region_veto_picks_order_by[] | null), + /** filter the rows returned */ + where?: (match_region_veto_picks_bool_exp | null)} }) + /** fetch aggregated fields from the table: "match_region_veto_picks" */ + match_region_veto_picks_aggregate?: (match_region_veto_picks_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_region_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_region_veto_picks_order_by[] | null), + /** filter the rows returned */ + where?: (match_region_veto_picks_bool_exp | null)} }) + /** fetch data from the table: "match_region_veto_picks" using primary key columns */ + match_region_veto_picks_by_pk?: (match_region_veto_picksGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "match_region_veto_picks" */ + match_region_veto_picks_stream?: (match_region_veto_picksGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (match_region_veto_picks_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (match_region_veto_picks_bool_exp | null)} }) + /** fetch data from the table: "match_streams" */ + match_streams?: (match_streamsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_streams_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_streams_order_by[] | null), + /** filter the rows returned */ + where?: (match_streams_bool_exp | null)} }) + /** fetch aggregated fields from the table: "match_streams" */ + match_streams_aggregate?: (match_streams_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_streams_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_streams_order_by[] | null), + /** filter the rows returned */ + where?: (match_streams_bool_exp | null)} }) + /** fetch data from the table: "match_streams" using primary key columns */ + match_streams_by_pk?: (match_streamsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "match_streams" */ + match_streams_stream?: (match_streamsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (match_streams_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (match_streams_bool_exp | null)} }) + /** fetch data from the table: "match_type_cfgs" */ + match_type_cfgs?: (match_type_cfgsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_type_cfgs_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_type_cfgs_order_by[] | null), + /** filter the rows returned */ + where?: (match_type_cfgs_bool_exp | null)} }) + /** fetch aggregated fields from the table: "match_type_cfgs" */ + match_type_cfgs_aggregate?: (match_type_cfgs_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_type_cfgs_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_type_cfgs_order_by[] | null), + /** filter the rows returned */ + where?: (match_type_cfgs_bool_exp | null)} }) + /** fetch data from the table: "match_type_cfgs" using primary key columns */ + match_type_cfgs_by_pk?: (match_type_cfgsGenqlSelection & { __args: {type: e_game_cfg_types_enum} }) + /** fetch data from the table in a streaming manner: "match_type_cfgs" */ + match_type_cfgs_stream?: (match_type_cfgsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (match_type_cfgs_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (match_type_cfgs_bool_exp | null)} }) + /** 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)} }) + /** fetch data from the table: "matches" using primary key columns */ + matches_by_pk?: (matchesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "matches" */ + matches_stream?: (matchesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (matches_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (matches_bool_exp | null)} }) + /** fetch data from the table: "migration_hashes.hashes" */ + migration_hashes_hashes?: (migration_hashes_hashesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (migration_hashes_hashes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (migration_hashes_hashes_order_by[] | null), + /** filter the rows returned */ + where?: (migration_hashes_hashes_bool_exp | null)} }) + /** fetch aggregated fields from the table: "migration_hashes.hashes" */ + migration_hashes_hashes_aggregate?: (migration_hashes_hashes_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (migration_hashes_hashes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (migration_hashes_hashes_order_by[] | null), + /** filter the rows returned */ + where?: (migration_hashes_hashes_bool_exp | null)} }) + /** fetch data from the table: "migration_hashes.hashes" using primary key columns */ + migration_hashes_hashes_by_pk?: (migration_hashes_hashesGenqlSelection & { __args: {name: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "migration_hashes.hashes" */ + migration_hashes_hashes_stream?: (migration_hashes_hashesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (migration_hashes_hashes_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (migration_hashes_hashes_bool_exp | null)} }) + /** fetch data from the table: "v_my_friends" */ + my_friends?: (my_friendsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (my_friends_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (my_friends_order_by[] | null), + /** filter the rows returned */ + where?: (my_friends_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_my_friends" */ + my_friends_aggregate?: (my_friends_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (my_friends_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (my_friends_order_by[] | null), + /** filter the rows returned */ + where?: (my_friends_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "v_my_friends" */ + my_friends_stream?: (my_friendsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (my_friends_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (my_friends_bool_exp | null)} }) + /** fetch data from the table: "news_articles" */ + news_articles?: (news_articlesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (news_articles_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (news_articles_order_by[] | null), + /** filter the rows returned */ + where?: (news_articles_bool_exp | null)} }) + /** fetch aggregated fields from the table: "news_articles" */ + news_articles_aggregate?: (news_articles_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (news_articles_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (news_articles_order_by[] | null), + /** filter the rows returned */ + where?: (news_articles_bool_exp | null)} }) + /** fetch data from the table: "news_articles" using primary key columns */ + news_articles_by_pk?: (news_articlesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "news_articles" */ + news_articles_stream?: (news_articlesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (news_articles_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (news_articles_bool_exp | null)} }) + /** fetch data from the table: "notification_preferences" */ + notification_preferences?: (notification_preferencesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (notification_preferences_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (notification_preferences_order_by[] | null), + /** filter the rows returned */ + where?: (notification_preferences_bool_exp | null)} }) + /** fetch aggregated fields from the table: "notification_preferences" */ + notification_preferences_aggregate?: (notification_preferences_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (notification_preferences_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (notification_preferences_order_by[] | null), + /** filter the rows returned */ + where?: (notification_preferences_bool_exp | null)} }) + /** fetch data from the table: "notification_preferences" using primary key columns */ + notification_preferences_by_pk?: (notification_preferencesGenqlSelection & { __args: {channel: Scalars['String'], key: Scalars['String'], steam_id: Scalars['bigint']} }) + /** fetch data from the table in a streaming manner: "notification_preferences" */ + notification_preferences_stream?: (notification_preferencesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (notification_preferences_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (notification_preferences_bool_exp | null)} }) + /** An array relationship */ + notifications?: (notificationsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (notifications_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (notifications_order_by[] | null), + /** filter the rows returned */ + where?: (notifications_bool_exp | null)} }) + /** An aggregate relationship */ + notifications_aggregate?: (notifications_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (notifications_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (notifications_order_by[] | null), + /** filter the rows returned */ + where?: (notifications_bool_exp | null)} }) + /** fetch data from the table: "notifications" using primary key columns */ + notifications_by_pk?: (notificationsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "notifications" */ + notifications_stream?: (notificationsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (notifications_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (notifications_bool_exp | null)} }) + /** fetch data from the table: "pending_match_import_players" */ + pending_match_import_players?: (pending_match_import_playersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (pending_match_import_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?: (pending_match_import_players_order_by[] | null), + /** filter the rows returned */ + where?: (pending_match_import_players_bool_exp | null)} }) + /** fetch aggregated fields from the table: "pending_match_import_players" */ + pending_match_import_players_aggregate?: (pending_match_import_players_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (pending_match_import_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?: (pending_match_import_players_order_by[] | null), + /** filter the rows returned */ + where?: (pending_match_import_players_bool_exp | null)} }) + /** fetch data from the table: "pending_match_import_players" using primary key columns */ + pending_match_import_players_by_pk?: (pending_match_import_playersGenqlSelection & { __args: {steam_id: Scalars['bigint'], valve_match_id: Scalars['numeric']} }) + /** fetch data from the table in a streaming manner: "pending_match_import_players" */ + pending_match_import_players_stream?: (pending_match_import_playersGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (pending_match_import_players_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (pending_match_import_players_bool_exp | null)} }) + /** fetch data from the table: "pending_match_imports" */ + pending_match_imports?: (pending_match_importsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (pending_match_imports_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (pending_match_imports_order_by[] | null), + /** filter the rows returned */ + where?: (pending_match_imports_bool_exp | null)} }) + /** fetch aggregated fields from the table: "pending_match_imports" */ + pending_match_imports_aggregate?: (pending_match_imports_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (pending_match_imports_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (pending_match_imports_order_by[] | null), + /** filter the rows returned */ + where?: (pending_match_imports_bool_exp | null)} }) + /** fetch data from the table: "pending_match_imports" using primary key columns */ + pending_match_imports_by_pk?: (pending_match_importsGenqlSelection & { __args: {valve_match_id: Scalars['numeric']} }) + /** fetch data from the table in a streaming manner: "pending_match_imports" */ + pending_match_imports_stream?: (pending_match_importsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (pending_match_imports_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (pending_match_imports_bool_exp | null)} }) + /** fetch data from the table: "player_aim_stats_demo" */ + player_aim_stats_demo?: (player_aim_stats_demoGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_aim_stats_demo_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_aim_stats_demo_order_by[] | null), + /** filter the rows returned */ + where?: (player_aim_stats_demo_bool_exp | null)} }) + /** fetch aggregated fields from the table: "player_aim_stats_demo" */ + player_aim_stats_demo_aggregate?: (player_aim_stats_demo_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_aim_stats_demo_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_aim_stats_demo_order_by[] | null), + /** filter the rows returned */ + where?: (player_aim_stats_demo_bool_exp | null)} }) + /** fetch data from the table: "player_aim_stats_demo" using primary key columns */ + player_aim_stats_demo_by_pk?: (player_aim_stats_demoGenqlSelection & { __args: {attacker_steam_id: Scalars['bigint'], match_map_id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "player_aim_stats_demo" */ + player_aim_stats_demo_stream?: (player_aim_stats_demoGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (player_aim_stats_demo_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (player_aim_stats_demo_bool_exp | null)} }) + /** fetch data from the table: "player_aim_weapon_stats" */ + player_aim_weapon_stats?: (player_aim_weapon_statsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_aim_weapon_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?: (player_aim_weapon_stats_order_by[] | null), + /** filter the rows returned */ + where?: (player_aim_weapon_stats_bool_exp | null)} }) + /** fetch aggregated fields from the table: "player_aim_weapon_stats" */ + player_aim_weapon_stats_aggregate?: (player_aim_weapon_stats_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_aim_weapon_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?: (player_aim_weapon_stats_order_by[] | null), + /** filter the rows returned */ + where?: (player_aim_weapon_stats_bool_exp | null)} }) + /** fetch data from the table: "player_aim_weapon_stats" using primary key columns */ + player_aim_weapon_stats_by_pk?: (player_aim_weapon_statsGenqlSelection & { __args: {match_map_id: Scalars['uuid'], steam_id: Scalars['bigint'], weapon_class: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "player_aim_weapon_stats" */ + player_aim_weapon_stats_stream?: (player_aim_weapon_statsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (player_aim_weapon_stats_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (player_aim_weapon_stats_bool_exp | null)} }) + /** An array relationship */ + player_assists?: (player_assistsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_assists_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_assists_order_by[] | null), + /** filter the rows returned */ + where?: (player_assists_bool_exp | null)} }) + /** An aggregate relationship */ + player_assists_aggregate?: (player_assists_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_assists_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_assists_order_by[] | null), + /** filter the rows returned */ + where?: (player_assists_bool_exp | null)} }) + /** fetch data from the table: "player_assists" using primary key columns */ + player_assists_by_pk?: (player_assistsGenqlSelection & { __args: {attacked_steam_id: Scalars['bigint'], attacker_steam_id: Scalars['bigint'], match_map_id: Scalars['uuid'], time: Scalars['timestamptz']} }) + /** fetch data from the table in a streaming manner: "player_assists" */ + player_assists_stream?: (player_assistsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (player_assists_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (player_assists_bool_exp | null)} }) + /** fetch data from the table: "player_career_stats_v" */ + player_career_stats_v?: (player_career_stats_vGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_career_stats_v_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_career_stats_v_order_by[] | null), + /** filter the rows returned */ + where?: (player_career_stats_v_bool_exp | null)} }) + /** fetch aggregated fields from the table: "player_career_stats_v" */ + player_career_stats_v_aggregate?: (player_career_stats_v_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_career_stats_v_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_career_stats_v_order_by[] | null), + /** filter the rows returned */ + where?: (player_career_stats_v_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "player_career_stats_v" */ + player_career_stats_v_stream?: (player_career_stats_vGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (player_career_stats_v_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (player_career_stats_v_bool_exp | null)} }) + /** An array relationship */ + player_damages?: (player_damagesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_damages_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_damages_order_by[] | null), + /** filter the rows returned */ + where?: (player_damages_bool_exp | null)} }) + /** An aggregate relationship */ + player_damages_aggregate?: (player_damages_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_damages_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_damages_order_by[] | null), + /** filter the rows returned */ + where?: (player_damages_bool_exp | null)} }) + /** fetch data from the table: "player_damages" using primary key columns */ + player_damages_by_pk?: (player_damagesGenqlSelection & { __args: {id: Scalars['uuid'], match_map_id: Scalars['uuid'], time: Scalars['timestamptz']} }) + /** fetch data from the table in a streaming manner: "player_damages" */ + player_damages_stream?: (player_damagesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (player_damages_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (player_damages_bool_exp | null)} }) + /** fetch data from the table: "player_elo" */ + player_elo?: (player_eloGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_elo_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_elo_order_by[] | null), + /** filter the rows returned */ + where?: (player_elo_bool_exp | null)} }) + /** fetch aggregated fields from the table: "player_elo" */ + player_elo_aggregate?: (player_elo_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_elo_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_elo_order_by[] | null), + /** filter the rows returned */ + where?: (player_elo_bool_exp | null)} }) + /** fetch data from the table: "player_elo" using primary key columns */ + player_elo_by_pk?: (player_eloGenqlSelection & { __args: {match_id: Scalars['uuid'], steam_id: Scalars['bigint'], type: e_match_types_enum} }) + /** fetch data from the table in a streaming manner: "player_elo" */ + player_elo_stream?: (player_eloGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (player_elo_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (player_elo_bool_exp | null)} }) + /** fetch data from the table: "player_faceit_rank_history" */ + player_faceit_rank_history?: (player_faceit_rank_historyGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_faceit_rank_history_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_faceit_rank_history_order_by[] | null), + /** filter the rows returned */ + where?: (player_faceit_rank_history_bool_exp | null)} }) + /** fetch aggregated fields from the table: "player_faceit_rank_history" */ + player_faceit_rank_history_aggregate?: (player_faceit_rank_history_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_faceit_rank_history_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_faceit_rank_history_order_by[] | null), + /** filter the rows returned */ + where?: (player_faceit_rank_history_bool_exp | null)} }) + /** fetch data from the table: "player_faceit_rank_history" using primary key columns */ + player_faceit_rank_history_by_pk?: (player_faceit_rank_historyGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "player_faceit_rank_history" */ + player_faceit_rank_history_stream?: (player_faceit_rank_historyGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (player_faceit_rank_history_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (player_faceit_rank_history_bool_exp | null)} }) + /** An array relationship */ + player_flashes?: (player_flashesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_flashes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_flashes_order_by[] | null), + /** filter the rows returned */ + where?: (player_flashes_bool_exp | null)} }) + /** An aggregate relationship */ + player_flashes_aggregate?: (player_flashes_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_flashes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_flashes_order_by[] | null), + /** filter the rows returned */ + where?: (player_flashes_bool_exp | null)} }) + /** fetch data from the table: "player_flashes" using primary key columns */ + player_flashes_by_pk?: (player_flashesGenqlSelection & { __args: {attacked_steam_id: Scalars['bigint'], attacker_steam_id: Scalars['bigint'], match_map_id: Scalars['uuid'], time: Scalars['timestamptz']} }) + /** fetch data from the table in a streaming manner: "player_flashes" */ + player_flashes_stream?: (player_flashesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (player_flashes_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (player_flashes_bool_exp | null)} }) + /** An array relationship */ + player_kills?: (player_killsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_kills_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_kills_order_by[] | null), + /** filter the rows returned */ + where?: (player_kills_bool_exp | null)} }) + /** An aggregate relationship */ + player_kills_aggregate?: (player_kills_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_kills_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_kills_order_by[] | null), + /** filter the rows returned */ + where?: (player_kills_bool_exp | null)} }) + /** fetch data from the table: "player_kills" using primary key columns */ + player_kills_by_pk?: (player_killsGenqlSelection & { __args: {attacked_steam_id: Scalars['bigint'], attacker_steam_id: Scalars['bigint'], match_map_id: Scalars['uuid'], time: Scalars['timestamptz']} }) + /** fetch data from the table: "player_kills_by_weapon" */ + player_kills_by_weapon?: (player_kills_by_weaponGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_kills_by_weapon_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_kills_by_weapon_order_by[] | null), + /** filter the rows returned */ + where?: (player_kills_by_weapon_bool_exp | null)} }) + /** fetch aggregated fields from the table: "player_kills_by_weapon" */ + player_kills_by_weapon_aggregate?: (player_kills_by_weapon_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_kills_by_weapon_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_kills_by_weapon_order_by[] | null), + /** filter the rows returned */ + where?: (player_kills_by_weapon_bool_exp | null)} }) + /** fetch data from the table: "player_kills_by_weapon" using primary key columns */ + player_kills_by_weapon_by_pk?: (player_kills_by_weaponGenqlSelection & { __args: {player_steam_id: Scalars['bigint'], with: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "player_kills_by_weapon" */ + player_kills_by_weapon_stream?: (player_kills_by_weaponGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (player_kills_by_weapon_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (player_kills_by_weapon_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "player_kills" */ + player_kills_stream?: (player_killsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (player_kills_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (player_kills_bool_exp | null)} }) + /** fetch data from the table: "player_leaderboard_rank" */ + player_leaderboard_rank?: (player_leaderboard_rankGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_leaderboard_rank_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_leaderboard_rank_order_by[] | null), + /** filter the rows returned */ + where?: (player_leaderboard_rank_bool_exp | null)} }) + /** fetch aggregated fields from the table: "player_leaderboard_rank" */ + player_leaderboard_rank_aggregate?: (player_leaderboard_rank_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_leaderboard_rank_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_leaderboard_rank_order_by[] | null), + /** filter the rows returned */ + where?: (player_leaderboard_rank_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "player_leaderboard_rank" */ + player_leaderboard_rank_stream?: (player_leaderboard_rankGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (player_leaderboard_rank_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (player_leaderboard_rank_bool_exp | null)} }) + /** fetch data from the table: "player_match_map_stats" */ + player_match_map_stats?: (player_match_map_statsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_match_map_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?: (player_match_map_stats_order_by[] | null), + /** filter the rows returned */ + where?: (player_match_map_stats_bool_exp | null)} }) + /** fetch aggregated fields from the table: "player_match_map_stats" */ + player_match_map_stats_aggregate?: (player_match_map_stats_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_match_map_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?: (player_match_map_stats_order_by[] | null), + /** filter the rows returned */ + where?: (player_match_map_stats_bool_exp | null)} }) + /** fetch data from the table: "player_match_map_stats" using primary key columns */ + player_match_map_stats_by_pk?: (player_match_map_statsGenqlSelection & { __args: {match_map_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) + /** fetch data from the table in a streaming manner: "player_match_map_stats" */ + player_match_map_stats_stream?: (player_match_map_statsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (player_match_map_stats_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (player_match_map_stats_bool_exp | null)} }) + /** fetch data from the table: "player_match_performance_v" */ + player_match_performance_v?: (player_match_performance_vGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_match_performance_v_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_performance_v_order_by[] | null), + /** filter the rows returned */ + where?: (player_match_performance_v_bool_exp | null)} }) + /** fetch aggregated fields from the table: "player_match_performance_v" */ + player_match_performance_v_aggregate?: (player_match_performance_v_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_match_performance_v_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_performance_v_order_by[] | null), + /** filter the rows returned */ + where?: (player_match_performance_v_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "player_match_performance_v" */ + player_match_performance_v_stream?: (player_match_performance_vGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (player_match_performance_v_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (player_match_performance_v_bool_exp | null)} }) + /** fetch data from the table: "player_match_stats_v" */ + player_match_stats_v?: (player_match_stats_vGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_match_stats_v_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_stats_v_order_by[] | null), + /** filter the rows returned */ + where?: (player_match_stats_v_bool_exp | null)} }) + /** fetch aggregated fields from the table: "player_match_stats_v" */ + player_match_stats_v_aggregate?: (player_match_stats_v_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_match_stats_v_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_stats_v_order_by[] | null), + /** filter the rows returned */ + where?: (player_match_stats_v_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "player_match_stats_v" */ + player_match_stats_v_stream?: (player_match_stats_vGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (player_match_stats_v_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (player_match_stats_v_bool_exp | null)} }) + /** 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)} }) + /** fetch data from the table: "player_objectives" using primary key columns */ + player_objectives_by_pk?: (player_objectivesGenqlSelection & { __args: {match_map_id: Scalars['uuid'], player_steam_id: Scalars['bigint'], time: Scalars['timestamptz']} }) + /** fetch data from the table in a streaming manner: "player_objectives" */ + player_objectives_stream?: (player_objectivesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (player_objectives_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (player_objectives_bool_exp | null)} }) + /** fetch data from the table: "player_performance_v" */ + player_performance_v?: (player_performance_vGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_performance_v_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_performance_v_order_by[] | null), + /** filter the rows returned */ + where?: (player_performance_v_bool_exp | null)} }) + /** fetch aggregated fields from the table: "player_performance_v" */ + player_performance_v_aggregate?: (player_performance_v_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_performance_v_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_performance_v_order_by[] | null), + /** filter the rows returned */ + where?: (player_performance_v_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "player_performance_v" */ + player_performance_v_stream?: (player_performance_vGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (player_performance_v_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (player_performance_v_bool_exp | null)} }) + /** fetch data from the table: "player_premier_rank_history" */ + player_premier_rank_history?: (player_premier_rank_historyGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_premier_rank_history_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_premier_rank_history_order_by[] | null), + /** filter the rows returned */ + where?: (player_premier_rank_history_bool_exp | null)} }) + /** fetch aggregated fields from the table: "player_premier_rank_history" */ + player_premier_rank_history_aggregate?: (player_premier_rank_history_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_premier_rank_history_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_premier_rank_history_order_by[] | null), + /** filter the rows returned */ + where?: (player_premier_rank_history_bool_exp | null)} }) + /** fetch data from the table: "player_premier_rank_history" using primary key columns */ + player_premier_rank_history_by_pk?: (player_premier_rank_historyGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "player_premier_rank_history" */ + player_premier_rank_history_stream?: (player_premier_rank_historyGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (player_premier_rank_history_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (player_premier_rank_history_bool_exp | null)} }) + /** fetch data from the table: "player_sanctions" */ + player_sanctions?: (player_sanctionsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_sanctions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_sanctions_order_by[] | null), + /** filter the rows returned */ + where?: (player_sanctions_bool_exp | null)} }) + /** fetch aggregated fields from the table: "player_sanctions" */ + player_sanctions_aggregate?: (player_sanctions_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_sanctions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_sanctions_order_by[] | null), + /** filter the rows returned */ + where?: (player_sanctions_bool_exp | null)} }) + /** fetch data from the table: "player_sanctions" using primary key columns */ + player_sanctions_by_pk?: (player_sanctionsGenqlSelection & { __args: {created_at: Scalars['timestamptz'], id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "player_sanctions" */ + player_sanctions_stream?: (player_sanctionsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (player_sanctions_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (player_sanctions_bool_exp | null)} }) + /** An array relationship */ + player_season_stats?: (player_season_statsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_season_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?: (player_season_stats_order_by[] | null), + /** filter the rows returned */ + where?: (player_season_stats_bool_exp | null)} }) + /** An aggregate relationship */ + player_season_stats_aggregate?: (player_season_stats_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_season_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?: (player_season_stats_order_by[] | null), + /** filter the rows returned */ + where?: (player_season_stats_bool_exp | null)} }) + /** fetch data from the table: "player_season_stats" using primary key columns */ + player_season_stats_by_pk?: (player_season_statsGenqlSelection & { __args: {player_steam_id: Scalars['bigint'], season_id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "player_season_stats" */ + player_season_stats_stream?: (player_season_statsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (player_season_stats_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (player_season_stats_bool_exp | null)} }) + /** fetch data from the table: "player_stats" */ + player_stats?: (player_statsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (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?: (player_stats_order_by[] | null), + /** filter the rows returned */ + where?: (player_stats_bool_exp | null)} }) + /** fetch aggregated fields from the table: "player_stats" */ + player_stats_aggregate?: (player_stats_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (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?: (player_stats_order_by[] | null), + /** filter the rows returned */ + where?: (player_stats_bool_exp | null)} }) + /** fetch data from the table: "player_stats" using primary key columns */ + player_stats_by_pk?: (player_statsGenqlSelection & { __args: {player_steam_id: Scalars['bigint']} }) + /** fetch data from the table in a streaming manner: "player_stats" */ + player_stats_stream?: (player_statsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (player_stats_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (player_stats_bool_exp | null)} }) + /** fetch data from the table: "player_steam_bot_friend" */ + player_steam_bot_friend?: (player_steam_bot_friendGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_steam_bot_friend_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_steam_bot_friend_order_by[] | null), + /** filter the rows returned */ + where?: (player_steam_bot_friend_bool_exp | null)} }) + /** fetch aggregated fields from the table: "player_steam_bot_friend" */ + player_steam_bot_friend_aggregate?: (player_steam_bot_friend_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_steam_bot_friend_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_steam_bot_friend_order_by[] | null), + /** filter the rows returned */ + where?: (player_steam_bot_friend_bool_exp | null)} }) + /** fetch data from the table: "player_steam_bot_friend" using primary key columns */ + player_steam_bot_friend_by_pk?: (player_steam_bot_friendGenqlSelection & { __args: {steam_id: Scalars['bigint']} }) + /** fetch data from the table in a streaming manner: "player_steam_bot_friend" */ + player_steam_bot_friend_stream?: (player_steam_bot_friendGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (player_steam_bot_friend_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (player_steam_bot_friend_bool_exp | null)} }) + /** fetch data from the table: "player_steam_match_auth" */ + player_steam_match_auth?: (player_steam_match_authGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_steam_match_auth_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_steam_match_auth_order_by[] | null), + /** filter the rows returned */ + where?: (player_steam_match_auth_bool_exp | null)} }) + /** fetch aggregated fields from the table: "player_steam_match_auth" */ + player_steam_match_auth_aggregate?: (player_steam_match_auth_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_steam_match_auth_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_steam_match_auth_order_by[] | null), + /** filter the rows returned */ + where?: (player_steam_match_auth_bool_exp | null)} }) + /** fetch data from the table: "player_steam_match_auth" using primary key columns */ + player_steam_match_auth_by_pk?: (player_steam_match_authGenqlSelection & { __args: {steam_id: Scalars['bigint']} }) + /** fetch data from the table in a streaming manner: "player_steam_match_auth" */ + player_steam_match_auth_stream?: (player_steam_match_authGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (player_steam_match_auth_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (player_steam_match_auth_bool_exp | null)} }) + /** fetch data from the table: "player_unused_utility" */ + player_unused_utility?: (player_unused_utilityGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_unused_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_unused_utility_order_by[] | null), + /** filter the rows returned */ + where?: (player_unused_utility_bool_exp | null)} }) + /** fetch aggregated fields from the table: "player_unused_utility" */ + player_unused_utility_aggregate?: (player_unused_utility_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_unused_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_unused_utility_order_by[] | null), + /** filter the rows returned */ + where?: (player_unused_utility_bool_exp | null)} }) + /** fetch data from the table: "player_unused_utility" using primary key columns */ + player_unused_utility_by_pk?: (player_unused_utilityGenqlSelection & { __args: {match_map_id: Scalars['uuid'], player_steam_id: Scalars['bigint']} }) + /** fetch data from the table in a streaming manner: "player_unused_utility" */ + player_unused_utility_stream?: (player_unused_utilityGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (player_unused_utility_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (player_unused_utility_bool_exp | null)} }) + /** An array relationship */ + player_utility?: (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_utility_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)} }) + /** fetch data from the table: "player_utility" using primary key columns */ + player_utility_by_pk?: (player_utilityGenqlSelection & { __args: {attacker_steam_id: Scalars['bigint'], match_map_id: Scalars['uuid'], time: Scalars['timestamptz']} }) + /** fetch data from the table in a streaming manner: "player_utility" */ + player_utility_stream?: (player_utilityGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (player_utility_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (player_utility_bool_exp | null)} }) + /** fetch data from the table: "player_weapon_stats_v" */ + player_weapon_stats_v?: (player_weapon_stats_vGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_weapon_stats_v_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_weapon_stats_v_order_by[] | null), + /** filter the rows returned */ + where?: (player_weapon_stats_v_bool_exp | null)} }) + /** fetch aggregated fields from the table: "player_weapon_stats_v" */ + player_weapon_stats_v_aggregate?: (player_weapon_stats_v_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_weapon_stats_v_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_weapon_stats_v_order_by[] | null), + /** filter the rows returned */ + where?: (player_weapon_stats_v_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "player_weapon_stats_v" */ + player_weapon_stats_v_stream?: (player_weapon_stats_vGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (player_weapon_stats_v_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (player_weapon_stats_v_bool_exp | null)} }) + /** fetch data from the table: "players" */ + players?: (playersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (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?: (players_order_by[] | null), + /** filter the rows returned */ + where?: (players_bool_exp | null)} }) + /** fetch aggregated fields from the table: "players" */ + players_aggregate?: (players_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (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?: (players_order_by[] | null), + /** filter the rows returned */ + where?: (players_bool_exp | null)} }) + /** fetch data from the table: "players" using primary key columns */ + players_by_pk?: (playersGenqlSelection & { __args: {steam_id: Scalars['bigint']} }) + /** fetch data from the table in a streaming manner: "players" */ + players_stream?: (playersGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (players_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (players_bool_exp | null)} }) + /** fetch data from the table: "plugin_versions" */ + plugin_versions?: (plugin_versionsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (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?: (plugin_versions_order_by[] | null), + /** filter the rows returned */ + where?: (plugin_versions_bool_exp | null)} }) + /** fetch aggregated fields from the table: "plugin_versions" */ + plugin_versions_aggregate?: (plugin_versions_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (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?: (plugin_versions_order_by[] | null), + /** filter the rows returned */ + where?: (plugin_versions_bool_exp | null)} }) + /** fetch data from the table: "plugin_versions" using primary key columns */ + plugin_versions_by_pk?: (plugin_versionsGenqlSelection & { __args: {runtime: e_plugin_runtimes_enum, version: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "plugin_versions" */ + plugin_versions_stream?: (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: (plugin_versions_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (plugin_versions_bool_exp | null)} }) + /** fetch data from the table: "push_subscriptions" */ + push_subscriptions?: (push_subscriptionsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (push_subscriptions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (push_subscriptions_order_by[] | null), + /** filter the rows returned */ + where?: (push_subscriptions_bool_exp | null)} }) + /** fetch aggregated fields from the table: "push_subscriptions" */ + push_subscriptions_aggregate?: (push_subscriptions_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (push_subscriptions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (push_subscriptions_order_by[] | null), + /** filter the rows returned */ + where?: (push_subscriptions_bool_exp | null)} }) + /** fetch data from the table: "push_subscriptions" using primary key columns */ + push_subscriptions_by_pk?: (push_subscriptionsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "push_subscriptions" */ + push_subscriptions_stream?: (push_subscriptionsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (push_subscriptions_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (push_subscriptions_bool_exp | null)} }) + /** fetch data from the table: "v_role_permissions" */ + role_permissions?: (role_permissionsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (role_permissions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (role_permissions_order_by[] | null), + /** filter the rows returned */ + where?: (role_permissions_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_role_permissions" */ + role_permissions_aggregate?: (role_permissions_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (role_permissions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (role_permissions_order_by[] | null), + /** filter the rows returned */ + where?: (role_permissions_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "v_role_permissions" */ + role_permissions_stream?: (role_permissionsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (role_permissions_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (role_permissions_bool_exp | null)} }) + /** fetch data from the table: "seasons" */ + seasons?: (seasonsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (seasons_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (seasons_order_by[] | null), + /** filter the rows returned */ + where?: (seasons_bool_exp | null)} }) + /** fetch aggregated fields from the table: "seasons" */ + seasons_aggregate?: (seasons_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (seasons_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (seasons_order_by[] | null), + /** filter the rows returned */ + where?: (seasons_bool_exp | null)} }) + /** fetch data from the table: "seasons" using primary key columns */ + seasons_by_pk?: (seasonsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "seasons" */ + seasons_stream?: (seasonsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (seasons_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (seasons_bool_exp | null)} }) + /** fetch data from the table: "server_regions" */ + server_regions?: (server_regionsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (server_regions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (server_regions_order_by[] | null), + /** filter the rows returned */ + where?: (server_regions_bool_exp | null)} }) + /** fetch aggregated fields from the table: "server_regions" */ + server_regions_aggregate?: (server_regions_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (server_regions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (server_regions_order_by[] | null), + /** filter the rows returned */ + where?: (server_regions_bool_exp | null)} }) + /** fetch data from the table: "server_regions" using primary key columns */ + server_regions_by_pk?: (server_regionsGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "server_regions" */ + server_regions_stream?: (server_regionsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (server_regions_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (server_regions_bool_exp | null)} }) + /** An array relationship */ + servers?: (serversGenqlSelection & { __args?: { + /** distinct select on columns */ + 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?: (servers_order_by[] | null), + /** filter the rows returned */ + where?: (servers_bool_exp | null)} }) + /** An aggregate relationship */ + servers_aggregate?: (servers_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + 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?: (servers_order_by[] | null), + /** filter the rows returned */ + where?: (servers_bool_exp | null)} }) + /** fetch data from the table: "servers" using primary key columns */ + servers_by_pk?: (serversGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "servers" */ + servers_stream?: (serversGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (servers_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (servers_bool_exp | null)} }) + /** fetch data from the table: "settings" */ + settings?: (settingsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (settings_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (settings_order_by[] | null), + /** filter the rows returned */ + where?: (settings_bool_exp | null)} }) + /** fetch aggregated fields from the table: "settings" */ + settings_aggregate?: (settings_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (settings_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (settings_order_by[] | null), + /** filter the rows returned */ + where?: (settings_bool_exp | null)} }) + /** fetch data from the table: "settings" using primary key columns */ + settings_by_pk?: (settingsGenqlSelection & { __args: {name: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "settings" */ + settings_stream?: (settingsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (settings_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (settings_bool_exp | null)} }) + /** fetch data from the table: "steam_account_claims" */ + steam_account_claims?: (steam_account_claimsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (steam_account_claims_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (steam_account_claims_order_by[] | null), + /** filter the rows returned */ + where?: (steam_account_claims_bool_exp | null)} }) + /** fetch aggregated fields from the table: "steam_account_claims" */ + steam_account_claims_aggregate?: (steam_account_claims_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (steam_account_claims_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (steam_account_claims_order_by[] | null), + /** filter the rows returned */ + where?: (steam_account_claims_bool_exp | null)} }) + /** fetch data from the table: "steam_account_claims" using primary key columns */ + steam_account_claims_by_pk?: (steam_account_claimsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "steam_account_claims" */ + steam_account_claims_stream?: (steam_account_claimsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (steam_account_claims_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (steam_account_claims_bool_exp | null)} }) + /** fetch data from the table: "steam_accounts" */ + steam_accounts?: (steam_accountsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (steam_accounts_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (steam_accounts_order_by[] | null), + /** filter the rows returned */ + where?: (steam_accounts_bool_exp | null)} }) + /** fetch aggregated fields from the table: "steam_accounts" */ + steam_accounts_aggregate?: (steam_accounts_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (steam_accounts_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (steam_accounts_order_by[] | null), + /** filter the rows returned */ + where?: (steam_accounts_bool_exp | null)} }) + /** fetch data from the table: "steam_accounts" using primary key columns */ + steam_accounts_by_pk?: (steam_accountsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "steam_accounts" */ + steam_accounts_stream?: (steam_accountsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (steam_accounts_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (steam_accounts_bool_exp | null)} }) + /** fetch data from the table: "system_alerts" */ + system_alerts?: (system_alertsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (system_alerts_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (system_alerts_order_by[] | null), + /** filter the rows returned */ + where?: (system_alerts_bool_exp | null)} }) + /** fetch aggregated fields from the table: "system_alerts" */ + system_alerts_aggregate?: (system_alerts_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (system_alerts_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (system_alerts_order_by[] | null), + /** filter the rows returned */ + where?: (system_alerts_bool_exp | null)} }) + /** fetch data from the table: "system_alerts" using primary key columns */ + system_alerts_by_pk?: (system_alertsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "system_alerts" */ + system_alerts_stream?: (system_alertsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (system_alerts_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (system_alerts_bool_exp | null)} }) + /** An array relationship */ + team_invites?: (team_invitesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (team_invites_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_invites_order_by[] | null), + /** filter the rows returned */ + where?: (team_invites_bool_exp | null)} }) + /** An aggregate relationship */ + team_invites_aggregate?: (team_invites_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (team_invites_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_invites_order_by[] | null), + /** filter the rows returned */ + where?: (team_invites_bool_exp | null)} }) + /** fetch data from the table: "team_invites" using primary key columns */ + team_invites_by_pk?: (team_invitesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "team_invites" */ + team_invites_stream?: (team_invitesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (team_invites_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (team_invites_bool_exp | null)} }) + /** fetch data from the table: "team_roster" */ + team_roster?: (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)} }) + /** fetch aggregated fields from the table: "team_roster" */ + team_roster_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)} }) + /** fetch data from the table: "team_roster" using primary key columns */ + team_roster_by_pk?: (team_rosterGenqlSelection & { __args: {player_steam_id: Scalars['bigint'], team_id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "team_roster" */ + team_roster_stream?: (team_rosterGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (team_roster_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (team_roster_bool_exp | null)} }) + /** fetch data from the table: "team_scrim_alerts" */ + team_scrim_alerts?: (team_scrim_alertsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (team_scrim_alerts_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_alerts_order_by[] | null), + /** filter the rows returned */ + where?: (team_scrim_alerts_bool_exp | null)} }) + /** fetch aggregated fields from the table: "team_scrim_alerts" */ + team_scrim_alerts_aggregate?: (team_scrim_alerts_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (team_scrim_alerts_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_alerts_order_by[] | null), + /** filter the rows returned */ + where?: (team_scrim_alerts_bool_exp | null)} }) + /** fetch data from the table: "team_scrim_alerts" using primary key columns */ + team_scrim_alerts_by_pk?: (team_scrim_alertsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "team_scrim_alerts" */ + team_scrim_alerts_stream?: (team_scrim_alertsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (team_scrim_alerts_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (team_scrim_alerts_bool_exp | null)} }) + /** fetch data from the table: "team_scrim_availability" */ + team_scrim_availability?: (team_scrim_availabilityGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (team_scrim_availability_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_availability_order_by[] | null), + /** filter the rows returned */ + where?: (team_scrim_availability_bool_exp | null)} }) + /** fetch aggregated fields from the table: "team_scrim_availability" */ + team_scrim_availability_aggregate?: (team_scrim_availability_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (team_scrim_availability_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_availability_order_by[] | null), + /** filter the rows returned */ + where?: (team_scrim_availability_bool_exp | null)} }) + /** fetch data from the table: "team_scrim_availability" using primary key columns */ + team_scrim_availability_by_pk?: (team_scrim_availabilityGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "team_scrim_availability" */ + team_scrim_availability_stream?: (team_scrim_availabilityGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (team_scrim_availability_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (team_scrim_availability_bool_exp | null)} }) + /** fetch data from the table: "team_scrim_request_proposals" */ + team_scrim_request_proposals?: (team_scrim_request_proposalsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (team_scrim_request_proposals_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_request_proposals_order_by[] | null), + /** filter the rows returned */ + where?: (team_scrim_request_proposals_bool_exp | null)} }) + /** fetch aggregated fields from the table: "team_scrim_request_proposals" */ + team_scrim_request_proposals_aggregate?: (team_scrim_request_proposals_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (team_scrim_request_proposals_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_request_proposals_order_by[] | null), + /** filter the rows returned */ + where?: (team_scrim_request_proposals_bool_exp | null)} }) + /** fetch data from the table: "team_scrim_request_proposals" using primary key columns */ + team_scrim_request_proposals_by_pk?: (team_scrim_request_proposalsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "team_scrim_request_proposals" */ + team_scrim_request_proposals_stream?: (team_scrim_request_proposalsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (team_scrim_request_proposals_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (team_scrim_request_proposals_bool_exp | null)} }) + /** fetch data from the table: "team_scrim_requests" */ + team_scrim_requests?: (team_scrim_requestsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (team_scrim_requests_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (team_scrim_requests_order_by[] | null), + /** filter the rows returned */ + where?: (team_scrim_requests_bool_exp | null)} }) + /** fetch aggregated fields from the table: "team_scrim_requests" */ + team_scrim_requests_aggregate?: (team_scrim_requests_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (team_scrim_requests_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (team_scrim_requests_order_by[] | null), + /** filter the rows returned */ + where?: (team_scrim_requests_bool_exp | null)} }) + /** fetch data from the table: "team_scrim_requests" using primary key columns */ + team_scrim_requests_by_pk?: (team_scrim_requestsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "team_scrim_requests" */ + team_scrim_requests_stream?: (team_scrim_requestsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (team_scrim_requests_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (team_scrim_requests_bool_exp | null)} }) + /** fetch data from the table: "team_scrim_settings" */ + team_scrim_settings?: (team_scrim_settingsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (team_scrim_settings_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_settings_order_by[] | null), + /** filter the rows returned */ + where?: (team_scrim_settings_bool_exp | null)} }) + /** fetch aggregated fields from the table: "team_scrim_settings" */ + team_scrim_settings_aggregate?: (team_scrim_settings_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (team_scrim_settings_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_settings_order_by[] | null), + /** filter the rows returned */ + where?: (team_scrim_settings_bool_exp | null)} }) + /** fetch data from the table: "team_scrim_settings" using primary key columns */ + team_scrim_settings_by_pk?: (team_scrim_settingsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "team_scrim_settings" */ + team_scrim_settings_stream?: (team_scrim_settingsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (team_scrim_settings_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (team_scrim_settings_bool_exp | null)} }) + /** fetch data from the table: "team_suggestions" */ + team_suggestions?: (team_suggestionsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (team_suggestions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_suggestions_order_by[] | null), + /** filter the rows returned */ + where?: (team_suggestions_bool_exp | null)} }) + /** fetch aggregated fields from the table: "team_suggestions" */ + team_suggestions_aggregate?: (team_suggestions_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (team_suggestions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_suggestions_order_by[] | null), + /** filter the rows returned */ + where?: (team_suggestions_bool_exp | null)} }) + /** fetch data from the table: "team_suggestions" using primary key columns */ + team_suggestions_by_pk?: (team_suggestionsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "team_suggestions" */ + team_suggestions_stream?: (team_suggestionsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (team_suggestions_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (team_suggestions_bool_exp | null)} }) + /** fetch data from the table: "teams" */ + teams?: (teamsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (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?: (teams_order_by[] | null), + /** filter the rows returned */ + where?: (teams_bool_exp | null)} }) + /** fetch aggregated fields from the table: "teams" */ + teams_aggregate?: (teams_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (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?: (teams_order_by[] | null), + /** filter the rows returned */ + where?: (teams_bool_exp | null)} }) + /** fetch data from the table: "teams" using primary key columns */ + teams_by_pk?: (teamsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "teams" */ + teams_stream?: (teamsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (teams_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (teams_bool_exp | null)} }) + /** fetch data from the table: "tournament_awards" */ + tournament_awards?: (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)} }) + /** fetch aggregated fields from the table: "tournament_awards" */ + tournament_awards_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)} }) + /** fetch data from the table: "tournament_awards" using primary key columns */ + tournament_awards_by_pk?: (tournament_awardsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "tournament_awards" */ + tournament_awards_stream?: (tournament_awardsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (tournament_awards_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (tournament_awards_bool_exp | null)} }) + /** An array relationship */ + tournament_brackets?: (tournament_bracketsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_brackets_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_brackets_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_brackets_bool_exp | null)} }) + /** An aggregate relationship */ + tournament_brackets_aggregate?: (tournament_brackets_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_brackets_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_brackets_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_brackets_bool_exp | null)} }) + /** fetch data from the table: "tournament_brackets" using primary key columns */ + tournament_brackets_by_pk?: (tournament_bracketsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "tournament_brackets" */ + tournament_brackets_stream?: (tournament_bracketsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (tournament_brackets_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (tournament_brackets_bool_exp | null)} }) + /** An array relationship */ + tournament_categories?: (tournament_categoriesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_categories_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_categories_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_categories_bool_exp | null)} }) + /** An aggregate relationship */ + tournament_categories_aggregate?: (tournament_categories_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_categories_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_categories_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_categories_bool_exp | null)} }) + /** fetch data from the table: "tournament_categories" using primary key columns */ + tournament_categories_by_pk?: (tournament_categoriesGenqlSelection & { __args: {category: e_tournament_categories_enum, tournament_id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "tournament_categories" */ + tournament_categories_stream?: (tournament_categoriesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (tournament_categories_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (tournament_categories_bool_exp | null)} }) + /** An array relationship */ + tournament_free_agents?: (tournament_free_agentsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_free_agents_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_free_agents_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_free_agents_bool_exp | null)} }) + /** An aggregate relationship */ + tournament_free_agents_aggregate?: (tournament_free_agents_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_free_agents_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_free_agents_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_free_agents_bool_exp | null)} }) + /** fetch data from the table: "tournament_free_agents" using primary key columns */ + tournament_free_agents_by_pk?: (tournament_free_agentsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "tournament_free_agents" */ + tournament_free_agents_stream?: (tournament_free_agentsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (tournament_free_agents_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (tournament_free_agents_bool_exp | null)} }) + /** fetch data from the table: "tournament_invite_code_uses" */ + tournament_invite_code_uses?: (tournament_invite_code_usesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_invite_code_uses_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_invite_code_uses_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_invite_code_uses_bool_exp | null)} }) + /** fetch aggregated fields from the table: "tournament_invite_code_uses" */ + tournament_invite_code_uses_aggregate?: (tournament_invite_code_uses_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_invite_code_uses_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_invite_code_uses_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_invite_code_uses_bool_exp | null)} }) + /** fetch data from the table: "tournament_invite_code_uses" using primary key columns */ + tournament_invite_code_uses_by_pk?: (tournament_invite_code_usesGenqlSelection & { __args: {invite_code_id: Scalars['uuid'], player_steam_id: Scalars['bigint']} }) + /** fetch data from the table in a streaming manner: "tournament_invite_code_uses" */ + tournament_invite_code_uses_stream?: (tournament_invite_code_usesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (tournament_invite_code_uses_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (tournament_invite_code_uses_bool_exp | null)} }) + /** fetch data from the table: "tournament_invite_codes" */ + tournament_invite_codes?: (tournament_invite_codesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_invite_codes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_invite_codes_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_invite_codes_bool_exp | null)} }) + /** fetch aggregated fields from the table: "tournament_invite_codes" */ + tournament_invite_codes_aggregate?: (tournament_invite_codes_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_invite_codes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_invite_codes_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_invite_codes_bool_exp | null)} }) + /** fetch data from the table: "tournament_invite_codes" using primary key columns */ + tournament_invite_codes_by_pk?: (tournament_invite_codesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "tournament_invite_codes" */ + tournament_invite_codes_stream?: (tournament_invite_codesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (tournament_invite_codes_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (tournament_invite_codes_bool_exp | null)} }) + /** fetch data from the table: "tournament_invites" */ + tournament_invites?: (tournament_invitesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_invites_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_invites_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_invites_bool_exp | null)} }) + /** fetch aggregated fields from the table: "tournament_invites" */ + tournament_invites_aggregate?: (tournament_invites_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_invites_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_invites_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_invites_bool_exp | null)} }) + /** fetch data from the table: "tournament_invites" using primary key columns */ + tournament_invites_by_pk?: (tournament_invitesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "tournament_invites" */ + tournament_invites_stream?: (tournament_invitesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (tournament_invites_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (tournament_invites_bool_exp | null)} }) + /** fetch data from the table: "tournament_leaderboard_entries" */ + tournament_leaderboard_entries?: (tournament_leaderboard_entriesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_leaderboard_entries_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_leaderboard_entries_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_leaderboard_entries_bool_exp | null)} }) + /** fetch aggregated fields from the table: "tournament_leaderboard_entries" */ + tournament_leaderboard_entries_aggregate?: (tournament_leaderboard_entries_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_leaderboard_entries_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_leaderboard_entries_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_leaderboard_entries_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "tournament_leaderboard_entries" */ + tournament_leaderboard_entries_stream?: (tournament_leaderboard_entriesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (tournament_leaderboard_entries_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (tournament_leaderboard_entries_bool_exp | null)} }) + /** fetch data from the table: "tournament_no_shows" */ + tournament_no_shows?: (tournament_no_showsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_no_shows_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_no_shows_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_no_shows_bool_exp | null)} }) + /** fetch aggregated fields from the table: "tournament_no_shows" */ + tournament_no_shows_aggregate?: (tournament_no_shows_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_no_shows_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_no_shows_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_no_shows_bool_exp | null)} }) + /** fetch data from the table: "tournament_no_shows" using primary key columns */ + tournament_no_shows_by_pk?: (tournament_no_showsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "tournament_no_shows" */ + tournament_no_shows_stream?: (tournament_no_showsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (tournament_no_shows_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (tournament_no_shows_bool_exp | null)} }) + /** fetch data from the table: "tournament_organizer_teams" */ + tournament_organizer_teams?: (tournament_organizer_teamsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_organizer_teams_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_organizer_teams_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_organizer_teams_bool_exp | null)} }) + /** fetch aggregated fields from the table: "tournament_organizer_teams" */ + tournament_organizer_teams_aggregate?: (tournament_organizer_teams_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_organizer_teams_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_organizer_teams_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_organizer_teams_bool_exp | null)} }) + /** fetch data from the table: "tournament_organizer_teams" using primary key columns */ + tournament_organizer_teams_by_pk?: (tournament_organizer_teamsGenqlSelection & { __args: {team_id: Scalars['uuid'], tournament_id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "tournament_organizer_teams" */ + tournament_organizer_teams_stream?: (tournament_organizer_teamsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (tournament_organizer_teams_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (tournament_organizer_teams_bool_exp | null)} }) + /** An array relationship */ + tournament_organizers?: (tournament_organizersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_organizers_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_organizers_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_organizers_bool_exp | null)} }) + /** An aggregate relationship */ + tournament_organizers_aggregate?: (tournament_organizers_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_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?: (tournament_organizers_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_organizers_bool_exp | null)} }) + /** fetch data from the table: "tournament_organizers" using primary key columns */ + tournament_organizers_by_pk?: (tournament_organizersGenqlSelection & { __args: {steam_id: Scalars['bigint'], tournament_id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "tournament_organizers" */ + tournament_organizers_stream?: (tournament_organizersGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (tournament_organizers_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (tournament_organizers_bool_exp | null)} }) + /** fetch data from the table: "tournament_prizes" */ + tournament_prizes?: (tournament_prizesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_prizes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_prizes_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_prizes_bool_exp | null)} }) + /** fetch aggregated fields from the table: "tournament_prizes" */ + tournament_prizes_aggregate?: (tournament_prizes_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_prizes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_prizes_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_prizes_bool_exp | null)} }) + /** fetch data from the table: "tournament_prizes" using primary key columns */ + tournament_prizes_by_pk?: (tournament_prizesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "tournament_prizes" */ + tournament_prizes_stream?: (tournament_prizesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (tournament_prizes_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (tournament_prizes_bool_exp | null)} }) + /** fetch data from the table: "tournament_registration_unlocks" */ + tournament_registration_unlocks?: (tournament_registration_unlocksGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_registration_unlocks_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_registration_unlocks_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_registration_unlocks_bool_exp | null)} }) + /** fetch aggregated fields from the table: "tournament_registration_unlocks" */ + tournament_registration_unlocks_aggregate?: (tournament_registration_unlocks_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_registration_unlocks_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_registration_unlocks_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_registration_unlocks_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "tournament_registration_unlocks" */ + tournament_registration_unlocks_stream?: (tournament_registration_unlocksGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (tournament_registration_unlocks_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (tournament_registration_unlocks_bool_exp | null)} }) + /** fetch data from the table: "tournament_stage_windows" */ + tournament_stage_windows?: (tournament_stage_windowsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_stage_windows_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_stage_windows_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_stage_windows_bool_exp | null)} }) + /** fetch aggregated fields from the table: "tournament_stage_windows" */ + tournament_stage_windows_aggregate?: (tournament_stage_windows_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_stage_windows_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_stage_windows_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_stage_windows_bool_exp | null)} }) + /** fetch data from the table: "tournament_stage_windows" using primary key columns */ + tournament_stage_windows_by_pk?: (tournament_stage_windowsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "tournament_stage_windows" */ + tournament_stage_windows_stream?: (tournament_stage_windowsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (tournament_stage_windows_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (tournament_stage_windows_bool_exp | null)} }) + /** 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)} }) + /** fetch data from the table: "tournament_stages" using primary key columns */ + tournament_stages_by_pk?: (tournament_stagesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "tournament_stages" */ + tournament_stages_stream?: (tournament_stagesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (tournament_stages_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (tournament_stages_bool_exp | null)} }) + /** fetch data from the table: "tournament_team_invites" */ + tournament_team_invites?: (tournament_team_invitesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_team_invites_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_invites_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_team_invites_bool_exp | null)} }) + /** fetch aggregated fields from the table: "tournament_team_invites" */ + tournament_team_invites_aggregate?: (tournament_team_invites_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_team_invites_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_invites_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_team_invites_bool_exp | null)} }) + /** fetch data from the table: "tournament_team_invites" using primary key columns */ + tournament_team_invites_by_pk?: (tournament_team_invitesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "tournament_team_invites" */ + tournament_team_invites_stream?: (tournament_team_invitesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (tournament_team_invites_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (tournament_team_invites_bool_exp | null)} }) + /** fetch data from the table: "tournament_team_roster" */ + tournament_team_roster?: (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)} }) + /** fetch aggregated fields from the table: "tournament_team_roster" */ + tournament_team_roster_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)} }) + /** fetch data from the table: "tournament_team_roster" using primary key columns */ + tournament_team_roster_by_pk?: (tournament_team_rosterGenqlSelection & { __args: {player_steam_id: Scalars['bigint'], tournament_id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "tournament_team_roster" */ + tournament_team_roster_stream?: (tournament_team_rosterGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (tournament_team_roster_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (tournament_team_roster_bool_exp | null)} }) + /** An array relationship */ + tournament_teams?: (tournament_teamsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_teams_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_teams_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_teams_bool_exp | null)} }) + /** An aggregate relationship */ + tournament_teams_aggregate?: (tournament_teams_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_teams_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_teams_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_teams_bool_exp | null)} }) + /** fetch data from the table: "tournament_teams" using primary key columns */ + tournament_teams_by_pk?: (tournament_teamsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "tournament_teams" */ + tournament_teams_stream?: (tournament_teamsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (tournament_teams_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (tournament_teams_bool_exp | null)} }) + /** 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)} }) + /** fetch data from the table: "tournaments" using primary key columns */ + tournaments_by_pk?: (tournamentsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "tournaments" */ + tournaments_stream?: (tournamentsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (tournaments_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (tournaments_bool_exp | null)} }) + /** fetch data from the table: "utility_collection_items" */ + utility_collection_items?: (utility_collection_itemsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_collection_items_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_collection_items_order_by[] | null), + /** filter the rows returned */ + where?: (utility_collection_items_bool_exp | null)} }) + /** fetch aggregated fields from the table: "utility_collection_items" */ + utility_collection_items_aggregate?: (utility_collection_items_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_collection_items_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_collection_items_order_by[] | null), + /** filter the rows returned */ + where?: (utility_collection_items_bool_exp | null)} }) + /** fetch data from the table: "utility_collection_items" using primary key columns */ + utility_collection_items_by_pk?: (utility_collection_itemsGenqlSelection & { __args: {collection_id: Scalars['uuid'], utility_lineup_id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "utility_collection_items" */ + utility_collection_items_stream?: (utility_collection_itemsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (utility_collection_items_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (utility_collection_items_bool_exp | null)} }) + /** fetch data from the table: "utility_collections" */ + utility_collections?: (utility_collectionsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_collections_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_collections_order_by[] | null), + /** filter the rows returned */ + where?: (utility_collections_bool_exp | null)} }) + /** fetch aggregated fields from the table: "utility_collections" */ + utility_collections_aggregate?: (utility_collections_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_collections_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_collections_order_by[] | null), + /** filter the rows returned */ + where?: (utility_collections_bool_exp | null)} }) + /** fetch data from the table: "utility_collections" using primary key columns */ + utility_collections_by_pk?: (utility_collectionsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "utility_collections" */ + utility_collections_stream?: (utility_collectionsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (utility_collections_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (utility_collections_bool_exp | null)} }) + /** fetch data from the table: "utility_demo_mines" */ + utility_demo_mines?: (utility_demo_minesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_demo_mines_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_demo_mines_order_by[] | null), + /** filter the rows returned */ + where?: (utility_demo_mines_bool_exp | null)} }) + /** fetch aggregated fields from the table: "utility_demo_mines" */ + utility_demo_mines_aggregate?: (utility_demo_mines_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_demo_mines_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_demo_mines_order_by[] | null), + /** filter the rows returned */ + where?: (utility_demo_mines_bool_exp | null)} }) + /** fetch data from the table: "utility_demo_mines" using primary key columns */ + utility_demo_mines_by_pk?: (utility_demo_minesGenqlSelection & { __args: {match_map_demo_id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "utility_demo_mines" */ + utility_demo_mines_stream?: (utility_demo_minesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (utility_demo_mines_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (utility_demo_mines_bool_exp | null)} }) + /** fetch data from the table: "utility_demo_throws" */ + utility_demo_throws?: (utility_demo_throwsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_demo_throws_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_demo_throws_order_by[] | null), + /** filter the rows returned */ + where?: (utility_demo_throws_bool_exp | null)} }) + /** fetch aggregated fields from the table: "utility_demo_throws" */ + utility_demo_throws_aggregate?: (utility_demo_throws_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_demo_throws_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_demo_throws_order_by[] | null), + /** filter the rows returned */ + where?: (utility_demo_throws_bool_exp | null)} }) + /** fetch data from the table: "utility_demo_throws" using primary key columns */ + utility_demo_throws_by_pk?: (utility_demo_throwsGenqlSelection & { __args: {grenade_id: Scalars['Int'], match_map_demo_id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "utility_demo_throws" */ + utility_demo_throws_stream?: (utility_demo_throwsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (utility_demo_throws_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (utility_demo_throws_bool_exp | null)} }) + /** fetch data from the table: "utility_drift_results" */ + utility_drift_results?: (utility_drift_resultsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_drift_results_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_drift_results_order_by[] | null), + /** filter the rows returned */ + where?: (utility_drift_results_bool_exp | null)} }) + /** fetch aggregated fields from the table: "utility_drift_results" */ + utility_drift_results_aggregate?: (utility_drift_results_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_drift_results_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_drift_results_order_by[] | null), + /** filter the rows returned */ + where?: (utility_drift_results_bool_exp | null)} }) + /** fetch data from the table: "utility_drift_results" using primary key columns */ + utility_drift_results_by_pk?: (utility_drift_resultsGenqlSelection & { __args: {utility_drift_scan_id: Scalars['uuid'], utility_lineup_id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "utility_drift_results" */ + utility_drift_results_stream?: (utility_drift_resultsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (utility_drift_results_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (utility_drift_results_bool_exp | null)} }) + /** fetch data from the table: "utility_drift_scans" */ + utility_drift_scans?: (utility_drift_scansGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_drift_scans_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_drift_scans_order_by[] | null), + /** filter the rows returned */ + where?: (utility_drift_scans_bool_exp | null)} }) + /** fetch aggregated fields from the table: "utility_drift_scans" */ + utility_drift_scans_aggregate?: (utility_drift_scans_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_drift_scans_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_drift_scans_order_by[] | null), + /** filter the rows returned */ + where?: (utility_drift_scans_bool_exp | null)} }) + /** fetch data from the table: "utility_drift_scans" using primary key columns */ + utility_drift_scans_by_pk?: (utility_drift_scansGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "utility_drift_scans" */ + utility_drift_scans_stream?: (utility_drift_scansGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (utility_drift_scans_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (utility_drift_scans_bool_exp | null)} }) + /** fetch data from the table: "utility_lineup_favorites" */ + utility_lineup_favorites?: (utility_lineup_favoritesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_lineup_favorites_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_lineup_favorites_order_by[] | null), + /** filter the rows returned */ + where?: (utility_lineup_favorites_bool_exp | null)} }) + /** fetch aggregated fields from the table: "utility_lineup_favorites" */ + utility_lineup_favorites_aggregate?: (utility_lineup_favorites_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_lineup_favorites_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_lineup_favorites_order_by[] | null), + /** filter the rows returned */ + where?: (utility_lineup_favorites_bool_exp | null)} }) + /** fetch data from the table: "utility_lineup_favorites" using primary key columns */ + utility_lineup_favorites_by_pk?: (utility_lineup_favoritesGenqlSelection & { __args: {steam_id: Scalars['bigint'], utility_lineup_id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "utility_lineup_favorites" */ + utility_lineup_favorites_stream?: (utility_lineup_favoritesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (utility_lineup_favorites_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (utility_lineup_favorites_bool_exp | null)} }) + /** fetch data from the table: "utility_lineup_progress" */ + utility_lineup_progress?: (utility_lineup_progressGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_lineup_progress_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_lineup_progress_order_by[] | null), + /** filter the rows returned */ + where?: (utility_lineup_progress_bool_exp | null)} }) + /** fetch aggregated fields from the table: "utility_lineup_progress" */ + utility_lineup_progress_aggregate?: (utility_lineup_progress_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_lineup_progress_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_lineup_progress_order_by[] | null), + /** filter the rows returned */ + where?: (utility_lineup_progress_bool_exp | null)} }) + /** fetch data from the table: "utility_lineup_progress" using primary key columns */ + utility_lineup_progress_by_pk?: (utility_lineup_progressGenqlSelection & { __args: {steam_id: Scalars['bigint'], utility_lineup_id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "utility_lineup_progress" */ + utility_lineup_progress_stream?: (utility_lineup_progressGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (utility_lineup_progress_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (utility_lineup_progress_bool_exp | null)} }) + /** fetch data from the table: "utility_lineup_renders" */ + utility_lineup_renders?: (utility_lineup_rendersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_lineup_renders_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_lineup_renders_order_by[] | null), + /** filter the rows returned */ + where?: (utility_lineup_renders_bool_exp | null)} }) + /** fetch aggregated fields from the table: "utility_lineup_renders" */ + utility_lineup_renders_aggregate?: (utility_lineup_renders_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_lineup_renders_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_lineup_renders_order_by[] | null), + /** filter the rows returned */ + where?: (utility_lineup_renders_bool_exp | null)} }) + /** fetch data from the table: "utility_lineup_renders" using primary key columns */ + utility_lineup_renders_by_pk?: (utility_lineup_rendersGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "utility_lineup_renders" */ + utility_lineup_renders_stream?: (utility_lineup_rendersGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (utility_lineup_renders_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (utility_lineup_renders_bool_exp | null)} }) + /** fetch data from the table: "utility_lineup_repairs" */ + utility_lineup_repairs?: (utility_lineup_repairsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_lineup_repairs_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_lineup_repairs_order_by[] | null), + /** filter the rows returned */ + where?: (utility_lineup_repairs_bool_exp | null)} }) + /** fetch aggregated fields from the table: "utility_lineup_repairs" */ + utility_lineup_repairs_aggregate?: (utility_lineup_repairs_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_lineup_repairs_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_lineup_repairs_order_by[] | null), + /** filter the rows returned */ + where?: (utility_lineup_repairs_bool_exp | null)} }) + /** fetch data from the table: "utility_lineup_repairs" using primary key columns */ + utility_lineup_repairs_by_pk?: (utility_lineup_repairsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "utility_lineup_repairs" */ + utility_lineup_repairs_stream?: (utility_lineup_repairsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (utility_lineup_repairs_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (utility_lineup_repairs_bool_exp | null)} }) + /** fetch data from the table: "utility_lineup_votes" */ + utility_lineup_votes?: (utility_lineup_votesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_lineup_votes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_lineup_votes_order_by[] | null), + /** filter the rows returned */ + where?: (utility_lineup_votes_bool_exp | null)} }) + /** fetch aggregated fields from the table: "utility_lineup_votes" */ + utility_lineup_votes_aggregate?: (utility_lineup_votes_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_lineup_votes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_lineup_votes_order_by[] | null), + /** filter the rows returned */ + where?: (utility_lineup_votes_bool_exp | null)} }) + /** fetch data from the table: "utility_lineup_votes" using primary key columns */ + utility_lineup_votes_by_pk?: (utility_lineup_votesGenqlSelection & { __args: {steam_id: Scalars['bigint'], utility_lineup_id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "utility_lineup_votes" */ + utility_lineup_votes_stream?: (utility_lineup_votesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (utility_lineup_votes_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (utility_lineup_votes_bool_exp | null)} }) + /** An array relationship */ + utility_lineups?: (utility_lineupsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_lineups_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_lineups_order_by[] | null), + /** filter the rows returned */ + where?: (utility_lineups_bool_exp | null)} }) + /** An aggregate relationship */ + utility_lineups_aggregate?: (utility_lineups_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_lineups_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_lineups_order_by[] | null), + /** filter the rows returned */ + where?: (utility_lineups_bool_exp | null)} }) + /** fetch data from the table: "utility_lineups" using primary key columns */ + utility_lineups_by_pk?: (utility_lineupsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "utility_lineups" */ + utility_lineups_stream?: (utility_lineupsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (utility_lineups_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (utility_lineups_bool_exp | null)} }) + /** fetch data from the table: "utility_meta_lineups" */ + utility_meta_lineups?: (utility_meta_lineupsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_meta_lineups_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_meta_lineups_order_by[] | null), + /** filter the rows returned */ + where?: (utility_meta_lineups_bool_exp | null)} }) + /** fetch aggregated fields from the table: "utility_meta_lineups" */ + utility_meta_lineups_aggregate?: (utility_meta_lineups_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_meta_lineups_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_meta_lineups_order_by[] | null), + /** filter the rows returned */ + where?: (utility_meta_lineups_bool_exp | null)} }) + /** fetch data from the table: "utility_meta_lineups" using primary key columns */ + utility_meta_lineups_by_pk?: (utility_meta_lineupsGenqlSelection & { __args: {lineup_bucket: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "utility_meta_lineups" */ + utility_meta_lineups_stream?: (utility_meta_lineupsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (utility_meta_lineups_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (utility_meta_lineups_bool_exp | null)} }) + /** fetch data from the table: "utility_playbook_steps" */ + utility_playbook_steps?: (utility_playbook_stepsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_playbook_steps_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_playbook_steps_order_by[] | null), + /** filter the rows returned */ + where?: (utility_playbook_steps_bool_exp | null)} }) + /** fetch aggregated fields from the table: "utility_playbook_steps" */ + utility_playbook_steps_aggregate?: (utility_playbook_steps_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_playbook_steps_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_playbook_steps_order_by[] | null), + /** filter the rows returned */ + where?: (utility_playbook_steps_bool_exp | null)} }) + /** fetch data from the table: "utility_playbook_steps" using primary key columns */ + utility_playbook_steps_by_pk?: (utility_playbook_stepsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "utility_playbook_steps" */ + utility_playbook_steps_stream?: (utility_playbook_stepsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (utility_playbook_steps_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (utility_playbook_steps_bool_exp | null)} }) + /** fetch data from the table: "utility_playbooks" */ + utility_playbooks?: (utility_playbooksGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_playbooks_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_playbooks_order_by[] | null), + /** filter the rows returned */ + where?: (utility_playbooks_bool_exp | null)} }) + /** fetch aggregated fields from the table: "utility_playbooks" */ + utility_playbooks_aggregate?: (utility_playbooks_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_playbooks_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_playbooks_order_by[] | null), + /** filter the rows returned */ + where?: (utility_playbooks_bool_exp | null)} }) + /** fetch data from the table: "utility_playbooks" using primary key columns */ + utility_playbooks_by_pk?: (utility_playbooksGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "utility_playbooks" */ + utility_playbooks_stream?: (utility_playbooksGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (utility_playbooks_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (utility_playbooks_bool_exp | null)} }) + /** fetch data from the table: "utility_practice_invites" */ + utility_practice_invites?: (utility_practice_invitesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_practice_invites_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_practice_invites_order_by[] | null), + /** filter the rows returned */ + where?: (utility_practice_invites_bool_exp | null)} }) + /** fetch aggregated fields from the table: "utility_practice_invites" */ + utility_practice_invites_aggregate?: (utility_practice_invites_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_practice_invites_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_practice_invites_order_by[] | null), + /** filter the rows returned */ + where?: (utility_practice_invites_bool_exp | null)} }) + /** fetch data from the table: "utility_practice_invites" using primary key columns */ + utility_practice_invites_by_pk?: (utility_practice_invitesGenqlSelection & { __args: {steam_id: Scalars['bigint'], utility_practice_session_id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "utility_practice_invites" */ + utility_practice_invites_stream?: (utility_practice_invitesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (utility_practice_invites_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (utility_practice_invites_bool_exp | null)} }) + /** An array relationship */ + utility_practice_sessions?: (utility_practice_sessionsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_practice_sessions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_practice_sessions_order_by[] | null), + /** filter the rows returned */ + where?: (utility_practice_sessions_bool_exp | null)} }) + /** An aggregate relationship */ + utility_practice_sessions_aggregate?: (utility_practice_sessions_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_practice_sessions_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_practice_sessions_order_by[] | null), + /** filter the rows returned */ + where?: (utility_practice_sessions_bool_exp | null)} }) + /** fetch data from the table: "utility_practice_sessions" using primary key columns */ + utility_practice_sessions_by_pk?: (utility_practice_sessionsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "utility_practice_sessions" */ + utility_practice_sessions_stream?: (utility_practice_sessionsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (utility_practice_sessions_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (utility_practice_sessions_bool_exp | null)} }) + /** fetch data from the table: "v_event_player_stats" */ + v_event_player_stats?: (v_event_player_statsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_event_player_stats_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (v_event_player_stats_order_by[] | null), + /** filter the rows returned */ + where?: (v_event_player_stats_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_event_player_stats" */ + v_event_player_stats_aggregate?: (v_event_player_stats_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_event_player_stats_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (v_event_player_stats_order_by[] | null), + /** filter the rows returned */ + where?: (v_event_player_stats_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "v_event_player_stats" */ + v_event_player_stats_stream?: (v_event_player_statsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (v_event_player_stats_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (v_event_player_stats_bool_exp | null)} }) + /** fetch data from the table: "v_gpu_pool_status" */ + v_gpu_pool_status?: (v_gpu_pool_statusGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_gpu_pool_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_gpu_pool_status_order_by[] | null), + /** filter the rows returned */ + where?: (v_gpu_pool_status_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_gpu_pool_status" */ + v_gpu_pool_status_aggregate?: (v_gpu_pool_status_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_gpu_pool_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_gpu_pool_status_order_by[] | null), + /** filter the rows returned */ + where?: (v_gpu_pool_status_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "v_gpu_pool_status" */ + v_gpu_pool_status_stream?: (v_gpu_pool_statusGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (v_gpu_pool_status_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (v_gpu_pool_status_bool_exp | null)} }) + /** fetch data from the table: "v_league_division_standings" */ + v_league_division_standings?: (v_league_division_standingsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_league_division_standings_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_league_division_standings_order_by[] | null), + /** filter the rows returned */ + where?: (v_league_division_standings_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_league_division_standings" */ + v_league_division_standings_aggregate?: (v_league_division_standings_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_league_division_standings_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_league_division_standings_order_by[] | null), + /** filter the rows returned */ + where?: (v_league_division_standings_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "v_league_division_standings" */ + v_league_division_standings_stream?: (v_league_division_standingsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (v_league_division_standings_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (v_league_division_standings_bool_exp | null)} }) + /** fetch data from the table: "v_league_season_player_stats" */ + v_league_season_player_stats?: (v_league_season_player_statsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_league_season_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_league_season_player_stats_order_by[] | null), + /** filter the rows returned */ + where?: (v_league_season_player_stats_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_league_season_player_stats" */ + v_league_season_player_stats_aggregate?: (v_league_season_player_stats_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_league_season_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_league_season_player_stats_order_by[] | null), + /** filter the rows returned */ + where?: (v_league_season_player_stats_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "v_league_season_player_stats" */ + v_league_season_player_stats_stream?: (v_league_season_player_statsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (v_league_season_player_stats_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (v_league_season_player_stats_bool_exp | null)} }) + /** fetch data from the table: "v_match_captains" */ + v_match_captains?: (v_match_captainsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_match_captains_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_captains_order_by[] | null), + /** filter the rows returned */ + where?: (v_match_captains_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_match_captains" */ + v_match_captains_aggregate?: (v_match_captains_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_match_captains_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_captains_order_by[] | null), + /** filter the rows returned */ + where?: (v_match_captains_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "v_match_captains" */ + v_match_captains_stream?: (v_match_captainsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (v_match_captains_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (v_match_captains_bool_exp | null)} }) + /** fetch data from the table: "v_match_clutches" */ + v_match_clutches?: (v_match_clutchesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_match_clutches_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_clutches_order_by[] | null), + /** filter the rows returned */ + where?: (v_match_clutches_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_match_clutches" */ + v_match_clutches_aggregate?: (v_match_clutches_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_match_clutches_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_clutches_order_by[] | null), + /** filter the rows returned */ + where?: (v_match_clutches_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "v_match_clutches" */ + v_match_clutches_stream?: (v_match_clutchesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (v_match_clutches_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (v_match_clutches_bool_exp | null)} }) + /** fetch data from the table: "v_match_kill_pairs" */ + v_match_kill_pairs?: (v_match_kill_pairsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_match_kill_pairs_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_kill_pairs_order_by[] | null), + /** filter the rows returned */ + where?: (v_match_kill_pairs_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_match_kill_pairs" */ + v_match_kill_pairs_aggregate?: (v_match_kill_pairs_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_match_kill_pairs_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_kill_pairs_order_by[] | null), + /** filter the rows returned */ + where?: (v_match_kill_pairs_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "v_match_kill_pairs" */ + v_match_kill_pairs_stream?: (v_match_kill_pairsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (v_match_kill_pairs_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (v_match_kill_pairs_bool_exp | null)} }) + /** fetch data from the table: "v_match_lineup_buy_types" */ + v_match_lineup_buy_types?: (v_match_lineup_buy_typesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_match_lineup_buy_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_lineup_buy_types_order_by[] | null), + /** filter the rows returned */ + where?: (v_match_lineup_buy_types_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_match_lineup_buy_types" */ + v_match_lineup_buy_types_aggregate?: (v_match_lineup_buy_types_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_match_lineup_buy_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_lineup_buy_types_order_by[] | null), + /** filter the rows returned */ + where?: (v_match_lineup_buy_types_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "v_match_lineup_buy_types" */ + v_match_lineup_buy_types_stream?: (v_match_lineup_buy_typesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (v_match_lineup_buy_types_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (v_match_lineup_buy_types_bool_exp | null)} }) + /** fetch data from the table: "v_match_lineup_map_stats" */ + v_match_lineup_map_stats?: (v_match_lineup_map_statsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_match_lineup_map_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_match_lineup_map_stats_order_by[] | null), + /** filter the rows returned */ + where?: (v_match_lineup_map_stats_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_match_lineup_map_stats" */ + v_match_lineup_map_stats_aggregate?: (v_match_lineup_map_stats_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_match_lineup_map_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_match_lineup_map_stats_order_by[] | null), + /** filter the rows returned */ + where?: (v_match_lineup_map_stats_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "v_match_lineup_map_stats" */ + v_match_lineup_map_stats_stream?: (v_match_lineup_map_statsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (v_match_lineup_map_stats_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (v_match_lineup_map_stats_bool_exp | null)} }) + /** fetch data from the table: "v_match_map_backup_rounds" */ + v_match_map_backup_rounds?: (v_match_map_backup_roundsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_match_map_backup_rounds_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_map_backup_rounds_order_by[] | null), + /** filter the rows returned */ + where?: (v_match_map_backup_rounds_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_match_map_backup_rounds" */ + v_match_map_backup_rounds_aggregate?: (v_match_map_backup_rounds_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_match_map_backup_rounds_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_map_backup_rounds_order_by[] | null), + /** filter the rows returned */ + where?: (v_match_map_backup_rounds_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "v_match_map_backup_rounds" */ + v_match_map_backup_rounds_stream?: (v_match_map_backup_roundsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (v_match_map_backup_rounds_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (v_match_map_backup_rounds_bool_exp | null)} }) + /** fetch data from the table: "v_match_player_buy_types" */ + v_match_player_buy_types?: (v_match_player_buy_typesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_match_player_buy_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_player_buy_types_order_by[] | null), + /** filter the rows returned */ + where?: (v_match_player_buy_types_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_match_player_buy_types" */ + v_match_player_buy_types_aggregate?: (v_match_player_buy_types_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_match_player_buy_types_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_player_buy_types_order_by[] | null), + /** filter the rows returned */ + where?: (v_match_player_buy_types_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "v_match_player_buy_types" */ + v_match_player_buy_types_stream?: (v_match_player_buy_typesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (v_match_player_buy_types_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (v_match_player_buy_types_bool_exp | null)} }) + /** fetch data from the table: "v_match_player_opening_duels" */ + v_match_player_opening_duels?: (v_match_player_opening_duelsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_match_player_opening_duels_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_player_opening_duels_order_by[] | null), + /** filter the rows returned */ + where?: (v_match_player_opening_duels_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_match_player_opening_duels" */ + v_match_player_opening_duels_aggregate?: (v_match_player_opening_duels_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_match_player_opening_duels_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_match_player_opening_duels_order_by[] | null), + /** filter the rows returned */ + where?: (v_match_player_opening_duels_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "v_match_player_opening_duels" */ + v_match_player_opening_duels_stream?: (v_match_player_opening_duelsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (v_match_player_opening_duels_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (v_match_player_opening_duels_bool_exp | null)} }) + /** fetch data from the table: "v_player_arch_nemesis" */ + v_player_arch_nemesis?: (v_player_arch_nemesisGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_arch_nemesis_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_arch_nemesis_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_arch_nemesis_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_player_arch_nemesis" */ + v_player_arch_nemesis_aggregate?: (v_player_arch_nemesis_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_arch_nemesis_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_arch_nemesis_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_arch_nemesis_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "v_player_arch_nemesis" */ + v_player_arch_nemesis_stream?: (v_player_arch_nemesisGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (v_player_arch_nemesis_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (v_player_arch_nemesis_bool_exp | null)} }) + /** fetch data from the table: "v_player_damage" */ + v_player_damage?: (v_player_damageGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_damage_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_damage_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_damage_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_player_damage" */ + v_player_damage_aggregate?: (v_player_damage_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_damage_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_damage_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_damage_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "v_player_damage" */ + v_player_damage_stream?: (v_player_damageGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (v_player_damage_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (v_player_damage_bool_exp | null)} }) + /** fetch data from the table: "v_player_elo" */ + v_player_elo?: (v_player_eloGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_elo_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_elo_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_elo_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_player_elo" */ + v_player_elo_aggregate?: (v_player_elo_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_elo_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_elo_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_elo_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "v_player_elo" */ + v_player_elo_stream?: (v_player_eloGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (v_player_elo_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (v_player_elo_bool_exp | null)} }) + /** fetch data from the table: "v_player_map_losses" */ + v_player_map_losses?: (v_player_map_lossesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_map_losses_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_map_losses_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_map_losses_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_player_map_losses" */ + v_player_map_losses_aggregate?: (v_player_map_losses_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_map_losses_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_map_losses_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_map_losses_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "v_player_map_losses" */ + v_player_map_losses_stream?: (v_player_map_lossesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (v_player_map_losses_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (v_player_map_losses_bool_exp | null)} }) + /** fetch data from the table: "v_player_map_wins" */ + v_player_map_wins?: (v_player_map_winsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_map_wins_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_map_wins_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_map_wins_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_player_map_wins" */ + v_player_map_wins_aggregate?: (v_player_map_wins_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_map_wins_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_map_wins_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_map_wins_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "v_player_map_wins" */ + v_player_map_wins_stream?: (v_player_map_winsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (v_player_map_wins_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (v_player_map_wins_bool_exp | null)} }) + /** fetch data from the table: "v_player_match_head_to_head" */ + v_player_match_head_to_head?: (v_player_match_head_to_headGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_match_head_to_head_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_match_head_to_head_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_match_head_to_head_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_player_match_head_to_head" */ + v_player_match_head_to_head_aggregate?: (v_player_match_head_to_head_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_match_head_to_head_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_match_head_to_head_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_match_head_to_head_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "v_player_match_head_to_head" */ + v_player_match_head_to_head_stream?: (v_player_match_head_to_headGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (v_player_match_head_to_head_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (v_player_match_head_to_head_bool_exp | null)} }) + /** fetch data from the table: "v_player_match_map_hltv" */ + v_player_match_map_hltv?: (v_player_match_map_hltvGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_match_map_hltv_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_match_map_hltv_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_match_map_hltv_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_player_match_map_hltv" */ + v_player_match_map_hltv_aggregate?: (v_player_match_map_hltv_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_match_map_hltv_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_match_map_hltv_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_match_map_hltv_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "v_player_match_map_hltv" */ + v_player_match_map_hltv_stream?: (v_player_match_map_hltvGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (v_player_match_map_hltv_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (v_player_match_map_hltv_bool_exp | null)} }) + /** fetch data from the table: "v_player_match_map_roles" */ + v_player_match_map_roles?: (v_player_match_map_rolesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_match_map_roles_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_match_map_roles_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_match_map_roles_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_player_match_map_roles" */ + v_player_match_map_roles_aggregate?: (v_player_match_map_roles_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_match_map_roles_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_match_map_roles_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_match_map_roles_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "v_player_match_map_roles" */ + v_player_match_map_roles_stream?: (v_player_match_map_rolesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (v_player_match_map_roles_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (v_player_match_map_roles_bool_exp | null)} }) + /** fetch data from the table: "v_player_match_performance" */ + v_player_match_performance?: (v_player_match_performanceGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_match_performance_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_match_performance_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_match_performance_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_player_match_performance" */ + v_player_match_performance_aggregate?: (v_player_match_performance_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_match_performance_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_match_performance_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_match_performance_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "v_player_match_performance" */ + v_player_match_performance_stream?: (v_player_match_performanceGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (v_player_match_performance_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (v_player_match_performance_bool_exp | null)} }) + /** fetch data from the table: "v_player_match_rating" */ + v_player_match_rating?: (v_player_match_ratingGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_match_rating_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_match_rating_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_match_rating_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_player_match_rating" */ + v_player_match_rating_aggregate?: (v_player_match_rating_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_match_rating_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_match_rating_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_match_rating_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "v_player_match_rating" */ + v_player_match_rating_stream?: (v_player_match_ratingGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (v_player_match_rating_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (v_player_match_rating_bool_exp | null)} }) + /** fetch data from the table: "v_player_multi_kills" */ + v_player_multi_kills?: (v_player_multi_killsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_multi_kills_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_multi_kills_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_multi_kills_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_player_multi_kills" */ + v_player_multi_kills_aggregate?: (v_player_multi_kills_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_multi_kills_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_multi_kills_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_multi_kills_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "v_player_multi_kills" */ + v_player_multi_kills_stream?: (v_player_multi_killsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (v_player_multi_kills_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (v_player_multi_kills_bool_exp | null)} }) + /** fetch data from the table: "v_player_queue_partners" */ + v_player_queue_partners?: (v_player_queue_partnersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_queue_partners_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_queue_partners_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_queue_partners_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_player_queue_partners" */ + v_player_queue_partners_aggregate?: (v_player_queue_partners_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_queue_partners_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_queue_partners_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_queue_partners_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "v_player_queue_partners" */ + v_player_queue_partners_stream?: (v_player_queue_partnersGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (v_player_queue_partners_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (v_player_queue_partners_bool_exp | null)} }) + /** fetch data from the table: "v_player_weapon_damage" */ + v_player_weapon_damage?: (v_player_weapon_damageGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_weapon_damage_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_weapon_damage_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_weapon_damage_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_player_weapon_damage" */ + v_player_weapon_damage_aggregate?: (v_player_weapon_damage_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_weapon_damage_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_weapon_damage_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_weapon_damage_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "v_player_weapon_damage" */ + v_player_weapon_damage_stream?: (v_player_weapon_damageGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (v_player_weapon_damage_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (v_player_weapon_damage_bool_exp | null)} }) + /** fetch data from the table: "v_player_weapon_kills" */ + v_player_weapon_kills?: (v_player_weapon_killsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_weapon_kills_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_weapon_kills_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_weapon_kills_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_player_weapon_kills" */ + v_player_weapon_kills_aggregate?: (v_player_weapon_kills_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_player_weapon_kills_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_player_weapon_kills_order_by[] | null), + /** filter the rows returned */ + where?: (v_player_weapon_kills_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "v_player_weapon_kills" */ + v_player_weapon_kills_stream?: (v_player_weapon_killsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (v_player_weapon_kills_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (v_player_weapon_kills_bool_exp | null)} }) + /** fetch data from the table: "v_pool_maps" */ + v_pool_maps?: (v_pool_mapsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_pool_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?: (v_pool_maps_order_by[] | null), + /** filter the rows returned */ + where?: (v_pool_maps_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_pool_maps" */ + v_pool_maps_aggregate?: (v_pool_maps_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_pool_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?: (v_pool_maps_order_by[] | null), + /** filter the rows returned */ + where?: (v_pool_maps_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "v_pool_maps" */ + v_pool_maps_stream?: (v_pool_mapsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (v_pool_maps_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (v_pool_maps_bool_exp | null)} }) + /** fetch data from the table: "v_steam_account_pool_status" */ + v_steam_account_pool_status?: (v_steam_account_pool_statusGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_steam_account_pool_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_steam_account_pool_status_order_by[] | null), + /** filter the rows returned */ + where?: (v_steam_account_pool_status_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_steam_account_pool_status" */ + v_steam_account_pool_status_aggregate?: (v_steam_account_pool_status_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_steam_account_pool_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_steam_account_pool_status_order_by[] | null), + /** filter the rows returned */ + where?: (v_steam_account_pool_status_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "v_steam_account_pool_status" */ + v_steam_account_pool_status_stream?: (v_steam_account_pool_statusGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (v_steam_account_pool_status_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (v_steam_account_pool_status_bool_exp | null)} }) + /** fetch data from the table: "v_team_ranks" */ + v_team_ranks?: (v_team_ranksGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_team_ranks_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_team_ranks_order_by[] | null), + /** filter the rows returned */ + where?: (v_team_ranks_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_team_ranks" */ + v_team_ranks_aggregate?: (v_team_ranks_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_team_ranks_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_team_ranks_order_by[] | null), + /** filter the rows returned */ + where?: (v_team_ranks_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "v_team_ranks" */ + v_team_ranks_stream?: (v_team_ranksGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (v_team_ranks_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (v_team_ranks_bool_exp | null)} }) + /** fetch data from the table: "v_team_reputation" */ + v_team_reputation?: (v_team_reputationGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_team_reputation_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_team_reputation_order_by[] | null), + /** filter the rows returned */ + where?: (v_team_reputation_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_team_reputation" */ + v_team_reputation_aggregate?: (v_team_reputation_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_team_reputation_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_team_reputation_order_by[] | null), + /** filter the rows returned */ + where?: (v_team_reputation_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "v_team_reputation" */ + v_team_reputation_stream?: (v_team_reputationGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (v_team_reputation_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (v_team_reputation_bool_exp | null)} }) + /** fetch data from the table: "v_team_stage_results" */ + v_team_stage_results?: (v_team_stage_resultsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_team_stage_results_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_team_stage_results_order_by[] | null), + /** filter the rows returned */ + where?: (v_team_stage_results_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_team_stage_results" */ + v_team_stage_results_aggregate?: (v_team_stage_results_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_team_stage_results_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_team_stage_results_order_by[] | null), + /** filter the rows returned */ + where?: (v_team_stage_results_bool_exp | null)} }) + /** fetch data from the table: "v_team_stage_results" using primary key columns */ + v_team_stage_results_by_pk?: (v_team_stage_resultsGenqlSelection & { __args: {tournament_stage_id: Scalars['uuid'], tournament_team_id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "v_team_stage_results" */ + v_team_stage_results_stream?: (v_team_stage_resultsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (v_team_stage_results_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (v_team_stage_results_bool_exp | null)} }) + /** fetch data from the table: "v_team_tournament_results" */ + v_team_tournament_results?: (v_team_tournament_resultsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_team_tournament_results_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_team_tournament_results_order_by[] | null), + /** filter the rows returned */ + where?: (v_team_tournament_results_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_team_tournament_results" */ + v_team_tournament_results_aggregate?: (v_team_tournament_results_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_team_tournament_results_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_team_tournament_results_order_by[] | null), + /** filter the rows returned */ + where?: (v_team_tournament_results_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "v_team_tournament_results" */ + v_team_tournament_results_stream?: (v_team_tournament_resultsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (v_team_tournament_results_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (v_team_tournament_results_bool_exp | null)} }) + /** fetch data from the table: "v_tournament_player_stats" */ + v_tournament_player_stats?: (v_tournament_player_statsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_tournament_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_tournament_player_stats_order_by[] | null), + /** filter the rows returned */ + where?: (v_tournament_player_stats_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_tournament_player_stats" */ + v_tournament_player_stats_aggregate?: (v_tournament_player_stats_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_tournament_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_tournament_player_stats_order_by[] | null), + /** filter the rows returned */ + where?: (v_tournament_player_stats_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "v_tournament_player_stats" */ + v_tournament_player_stats_stream?: (v_tournament_player_statsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (v_tournament_player_stats_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (v_tournament_player_stats_bool_exp | null)} }) + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "system_alerts" */ +export interface system_alertsGenqlSelection{ + created_at?: boolean | number + created_by?: boolean | number + dismissible?: boolean | number + expires_at?: boolean | number + id?: boolean | number + is_active?: boolean | number + message?: boolean | number + title?: boolean | number + type?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "system_alerts" */ +export interface system_alerts_aggregateGenqlSelection{ + aggregate?: system_alerts_aggregate_fieldsGenqlSelection + nodes?: system_alertsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "system_alerts" */ +export interface system_alerts_aggregate_fieldsGenqlSelection{ + avg?: system_alerts_avg_fieldsGenqlSelection + count?: { __args: {columns?: (system_alerts_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: system_alerts_max_fieldsGenqlSelection + min?: system_alerts_min_fieldsGenqlSelection + stddev?: system_alerts_stddev_fieldsGenqlSelection + stddev_pop?: system_alerts_stddev_pop_fieldsGenqlSelection + stddev_samp?: system_alerts_stddev_samp_fieldsGenqlSelection + sum?: system_alerts_sum_fieldsGenqlSelection + var_pop?: system_alerts_var_pop_fieldsGenqlSelection + var_samp?: system_alerts_var_samp_fieldsGenqlSelection + variance?: system_alerts_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface system_alerts_avg_fieldsGenqlSelection{ + created_by?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "system_alerts". All fields are combined with a logical 'AND'. */ +export interface system_alerts_bool_exp {_and?: (system_alerts_bool_exp[] | null),_not?: (system_alerts_bool_exp | null),_or?: (system_alerts_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),created_by?: (bigint_comparison_exp | null),dismissible?: (Boolean_comparison_exp | null),expires_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),is_active?: (Boolean_comparison_exp | null),message?: (String_comparison_exp | null),title?: (String_comparison_exp | null),type?: (e_system_alert_types_enum_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "system_alerts" */ +export interface system_alerts_inc_input {created_by?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "system_alerts" */ +export interface system_alerts_insert_input {created_at?: (Scalars['timestamptz'] | null),created_by?: (Scalars['bigint'] | null),dismissible?: (Scalars['Boolean'] | null),expires_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),is_active?: (Scalars['Boolean'] | null),message?: (Scalars['String'] | null),title?: (Scalars['String'] | null),type?: (e_system_alert_types_enum | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate max on columns */ +export interface system_alerts_max_fieldsGenqlSelection{ + created_at?: boolean | number + created_by?: boolean | number + expires_at?: boolean | number + id?: boolean | number + message?: boolean | number + title?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface system_alerts_min_fieldsGenqlSelection{ + created_at?: boolean | number + created_by?: boolean | number + expires_at?: boolean | number + id?: boolean | number + message?: boolean | number + title?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "system_alerts" */ +export interface system_alerts_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: system_alertsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "system_alerts" */ +export interface system_alerts_on_conflict {constraint: system_alerts_constraint,update_columns?: system_alerts_update_column[],where?: (system_alerts_bool_exp | null)} + + +/** Ordering options when selecting data from "system_alerts". */ +export interface system_alerts_order_by {created_at?: (order_by | null),created_by?: (order_by | null),dismissible?: (order_by | null),expires_at?: (order_by | null),id?: (order_by | null),is_active?: (order_by | null),message?: (order_by | null),title?: (order_by | null),type?: (order_by | null),updated_at?: (order_by | null)} + + +/** primary key columns input for table: system_alerts */ +export interface system_alerts_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "system_alerts" */ +export interface system_alerts_set_input {created_at?: (Scalars['timestamptz'] | null),created_by?: (Scalars['bigint'] | null),dismissible?: (Scalars['Boolean'] | null),expires_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),is_active?: (Scalars['Boolean'] | null),message?: (Scalars['String'] | null),title?: (Scalars['String'] | null),type?: (e_system_alert_types_enum | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate stddev on columns */ +export interface system_alerts_stddev_fieldsGenqlSelection{ + created_by?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface system_alerts_stddev_pop_fieldsGenqlSelection{ + created_by?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface system_alerts_stddev_samp_fieldsGenqlSelection{ + created_by?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "system_alerts" */ +export interface system_alerts_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: system_alerts_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface system_alerts_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),created_by?: (Scalars['bigint'] | null),dismissible?: (Scalars['Boolean'] | null),expires_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),is_active?: (Scalars['Boolean'] | null),message?: (Scalars['String'] | null),title?: (Scalars['String'] | null),type?: (e_system_alert_types_enum | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate sum on columns */ +export interface system_alerts_sum_fieldsGenqlSelection{ + created_by?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface system_alerts_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (system_alerts_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (system_alerts_set_input | null), +/** filter the rows which have to be updated */ +where: system_alerts_bool_exp} + + +/** aggregate var_pop on columns */ +export interface system_alerts_var_pop_fieldsGenqlSelection{ + created_by?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface system_alerts_var_samp_fieldsGenqlSelection{ + created_by?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface system_alerts_variance_fieldsGenqlSelection{ + created_by?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "team_invites" */ +export interface team_invitesGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + /** An object relationship */ + invited_by?: playersGenqlSelection + invited_by_player_steam_id?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + steam_id?: boolean | number + /** An object relationship */ + team?: teamsGenqlSelection + team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "team_invites" */ +export interface team_invites_aggregateGenqlSelection{ + aggregate?: team_invites_aggregate_fieldsGenqlSelection + nodes?: team_invitesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface team_invites_aggregate_bool_exp {count?: (team_invites_aggregate_bool_exp_count | null)} + +export interface team_invites_aggregate_bool_exp_count {arguments?: (team_invites_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (team_invites_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "team_invites" */ +export interface team_invites_aggregate_fieldsGenqlSelection{ + avg?: team_invites_avg_fieldsGenqlSelection + count?: { __args: {columns?: (team_invites_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: team_invites_max_fieldsGenqlSelection + min?: team_invites_min_fieldsGenqlSelection + stddev?: team_invites_stddev_fieldsGenqlSelection + stddev_pop?: team_invites_stddev_pop_fieldsGenqlSelection + stddev_samp?: team_invites_stddev_samp_fieldsGenqlSelection + sum?: team_invites_sum_fieldsGenqlSelection + var_pop?: team_invites_var_pop_fieldsGenqlSelection + var_samp?: team_invites_var_samp_fieldsGenqlSelection + variance?: team_invites_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "team_invites" */ +export interface team_invites_aggregate_order_by {avg?: (team_invites_avg_order_by | null),count?: (order_by | null),max?: (team_invites_max_order_by | null),min?: (team_invites_min_order_by | null),stddev?: (team_invites_stddev_order_by | null),stddev_pop?: (team_invites_stddev_pop_order_by | null),stddev_samp?: (team_invites_stddev_samp_order_by | null),sum?: (team_invites_sum_order_by | null),var_pop?: (team_invites_var_pop_order_by | null),var_samp?: (team_invites_var_samp_order_by | null),variance?: (team_invites_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "team_invites" */ +export interface team_invites_arr_rel_insert_input {data: team_invites_insert_input[], +/** upsert condition */ +on_conflict?: (team_invites_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface team_invites_avg_fieldsGenqlSelection{ + invited_by_player_steam_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "team_invites" */ +export interface team_invites_avg_order_by {invited_by_player_steam_id?: (order_by | null),steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "team_invites". All fields are combined with a logical 'AND'. */ +export interface team_invites_bool_exp {_and?: (team_invites_bool_exp[] | null),_not?: (team_invites_bool_exp | null),_or?: (team_invites_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),invited_by?: (players_bool_exp | null),invited_by_player_steam_id?: (bigint_comparison_exp | null),player?: (players_bool_exp | null),steam_id?: (bigint_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "team_invites" */ +export interface team_invites_inc_input {invited_by_player_steam_id?: (Scalars['bigint'] | null),steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "team_invites" */ +export interface team_invites_insert_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),invited_by?: (players_obj_rel_insert_input | null),invited_by_player_steam_id?: (Scalars['bigint'] | null),player?: (players_obj_rel_insert_input | null),steam_id?: (Scalars['bigint'] | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface team_invites_max_fieldsGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + invited_by_player_steam_id?: boolean | number + steam_id?: boolean | number + team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "team_invites" */ +export interface team_invites_max_order_by {created_at?: (order_by | null),id?: (order_by | null),invited_by_player_steam_id?: (order_by | null),steam_id?: (order_by | null),team_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface team_invites_min_fieldsGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + invited_by_player_steam_id?: boolean | number + steam_id?: boolean | number + team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "team_invites" */ +export interface team_invites_min_order_by {created_at?: (order_by | null),id?: (order_by | null),invited_by_player_steam_id?: (order_by | null),steam_id?: (order_by | null),team_id?: (order_by | null)} + + +/** response of any mutation on the table "team_invites" */ +export interface team_invites_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: team_invitesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "team_invites" */ +export interface team_invites_on_conflict {constraint: team_invites_constraint,update_columns?: team_invites_update_column[],where?: (team_invites_bool_exp | null)} + + +/** Ordering options when selecting data from "team_invites". */ +export interface team_invites_order_by {created_at?: (order_by | null),id?: (order_by | null),invited_by?: (players_order_by | null),invited_by_player_steam_id?: (order_by | null),player?: (players_order_by | null),steam_id?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null)} + + +/** primary key columns input for table: team_invites */ +export interface team_invites_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "team_invites" */ +export interface team_invites_set_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),invited_by_player_steam_id?: (Scalars['bigint'] | null),steam_id?: (Scalars['bigint'] | null),team_id?: (Scalars['uuid'] | null)} + + +/** aggregate stddev on columns */ +export interface team_invites_stddev_fieldsGenqlSelection{ + invited_by_player_steam_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "team_invites" */ +export interface team_invites_stddev_order_by {invited_by_player_steam_id?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface team_invites_stddev_pop_fieldsGenqlSelection{ + invited_by_player_steam_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "team_invites" */ +export interface team_invites_stddev_pop_order_by {invited_by_player_steam_id?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface team_invites_stddev_samp_fieldsGenqlSelection{ + invited_by_player_steam_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "team_invites" */ +export interface team_invites_stddev_samp_order_by {invited_by_player_steam_id?: (order_by | null),steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "team_invites" */ +export interface team_invites_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: team_invites_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface team_invites_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),invited_by_player_steam_id?: (Scalars['bigint'] | null),steam_id?: (Scalars['bigint'] | null),team_id?: (Scalars['uuid'] | null)} + + +/** aggregate sum on columns */ +export interface team_invites_sum_fieldsGenqlSelection{ + invited_by_player_steam_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "team_invites" */ +export interface team_invites_sum_order_by {invited_by_player_steam_id?: (order_by | null),steam_id?: (order_by | null)} + +export interface team_invites_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (team_invites_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (team_invites_set_input | null), +/** filter the rows which have to be updated */ +where: team_invites_bool_exp} + + +/** aggregate var_pop on columns */ +export interface team_invites_var_pop_fieldsGenqlSelection{ + invited_by_player_steam_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "team_invites" */ +export interface team_invites_var_pop_order_by {invited_by_player_steam_id?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface team_invites_var_samp_fieldsGenqlSelection{ + invited_by_player_steam_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "team_invites" */ +export interface team_invites_var_samp_order_by {invited_by_player_steam_id?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface team_invites_variance_fieldsGenqlSelection{ + invited_by_player_steam_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "team_invites" */ +export interface team_invites_variance_order_by {invited_by_player_steam_id?: (order_by | null),steam_id?: (order_by | null)} + + +/** columns and relationships of "team_roster" */ +export interface team_rosterGenqlSelection{ + coach?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + player_steam_id?: boolean | number + role?: boolean | number + roster_image_url?: boolean | number + status?: boolean | number + /** An object relationship */ + team?: teamsGenqlSelection + team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "team_roster" */ +export interface team_roster_aggregateGenqlSelection{ + aggregate?: team_roster_aggregate_fieldsGenqlSelection + nodes?: team_rosterGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface team_roster_aggregate_bool_exp {bool_and?: (team_roster_aggregate_bool_exp_bool_and | null),bool_or?: (team_roster_aggregate_bool_exp_bool_or | null),count?: (team_roster_aggregate_bool_exp_count | null)} + +export interface team_roster_aggregate_bool_exp_bool_and {arguments: team_roster_select_column_team_roster_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (team_roster_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface team_roster_aggregate_bool_exp_bool_or {arguments: team_roster_select_column_team_roster_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (team_roster_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface team_roster_aggregate_bool_exp_count {arguments?: (team_roster_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (team_roster_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "team_roster" */ +export interface team_roster_aggregate_fieldsGenqlSelection{ + avg?: team_roster_avg_fieldsGenqlSelection + count?: { __args: {columns?: (team_roster_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: team_roster_max_fieldsGenqlSelection + min?: team_roster_min_fieldsGenqlSelection + stddev?: team_roster_stddev_fieldsGenqlSelection + stddev_pop?: team_roster_stddev_pop_fieldsGenqlSelection + stddev_samp?: team_roster_stddev_samp_fieldsGenqlSelection + sum?: team_roster_sum_fieldsGenqlSelection + var_pop?: team_roster_var_pop_fieldsGenqlSelection + var_samp?: team_roster_var_samp_fieldsGenqlSelection + variance?: team_roster_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "team_roster" */ +export interface team_roster_aggregate_order_by {avg?: (team_roster_avg_order_by | null),count?: (order_by | null),max?: (team_roster_max_order_by | null),min?: (team_roster_min_order_by | null),stddev?: (team_roster_stddev_order_by | null),stddev_pop?: (team_roster_stddev_pop_order_by | null),stddev_samp?: (team_roster_stddev_samp_order_by | null),sum?: (team_roster_sum_order_by | null),var_pop?: (team_roster_var_pop_order_by | null),var_samp?: (team_roster_var_samp_order_by | null),variance?: (team_roster_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "team_roster" */ +export interface team_roster_arr_rel_insert_input {data: team_roster_insert_input[], +/** upsert condition */ +on_conflict?: (team_roster_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface team_roster_avg_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "team_roster" */ +export interface team_roster_avg_order_by {player_steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "team_roster". All fields are combined with a logical 'AND'. */ +export interface team_roster_bool_exp {_and?: (team_roster_bool_exp[] | null),_not?: (team_roster_bool_exp | null),_or?: (team_roster_bool_exp[] | null),coach?: (Boolean_comparison_exp | null),player?: (players_bool_exp | null),player_steam_id?: (bigint_comparison_exp | null),role?: (e_team_roles_enum_comparison_exp | null),roster_image_url?: (String_comparison_exp | null),status?: (e_team_roster_statuses_enum_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "team_roster" */ +export interface team_roster_inc_input {player_steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "team_roster" */ +export interface team_roster_insert_input {coach?: (Scalars['Boolean'] | null),player?: (players_obj_rel_insert_input | null),player_steam_id?: (Scalars['bigint'] | null),role?: (e_team_roles_enum | null),roster_image_url?: (Scalars['String'] | null),status?: (e_team_roster_statuses_enum | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface team_roster_max_fieldsGenqlSelection{ + player_steam_id?: boolean | number + roster_image_url?: boolean | number + team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "team_roster" */ +export interface team_roster_max_order_by {player_steam_id?: (order_by | null),roster_image_url?: (order_by | null),team_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface team_roster_min_fieldsGenqlSelection{ + player_steam_id?: boolean | number + roster_image_url?: boolean | number + team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "team_roster" */ +export interface team_roster_min_order_by {player_steam_id?: (order_by | null),roster_image_url?: (order_by | null),team_id?: (order_by | null)} + + +/** response of any mutation on the table "team_roster" */ +export interface team_roster_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: team_rosterGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "team_roster" */ +export interface team_roster_on_conflict {constraint: team_roster_constraint,update_columns?: team_roster_update_column[],where?: (team_roster_bool_exp | null)} + + +/** Ordering options when selecting data from "team_roster". */ +export interface team_roster_order_by {coach?: (order_by | null),player?: (players_order_by | null),player_steam_id?: (order_by | null),role?: (order_by | null),roster_image_url?: (order_by | null),status?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null)} + + +/** primary key columns input for table: team_roster */ +export interface team_roster_pk_columns_input {player_steam_id: Scalars['bigint'],team_id: Scalars['uuid']} + + +/** input type for updating data in table "team_roster" */ +export interface team_roster_set_input {coach?: (Scalars['Boolean'] | null),player_steam_id?: (Scalars['bigint'] | null),role?: (e_team_roles_enum | null),roster_image_url?: (Scalars['String'] | null),status?: (e_team_roster_statuses_enum | null),team_id?: (Scalars['uuid'] | null)} + + +/** aggregate stddev on columns */ +export interface team_roster_stddev_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "team_roster" */ +export interface team_roster_stddev_order_by {player_steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface team_roster_stddev_pop_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "team_roster" */ +export interface team_roster_stddev_pop_order_by {player_steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface team_roster_stddev_samp_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "team_roster" */ +export interface team_roster_stddev_samp_order_by {player_steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "team_roster" */ +export interface team_roster_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: team_roster_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface team_roster_stream_cursor_value_input {coach?: (Scalars['Boolean'] | null),player_steam_id?: (Scalars['bigint'] | null),role?: (e_team_roles_enum | null),roster_image_url?: (Scalars['String'] | null),status?: (e_team_roster_statuses_enum | null),team_id?: (Scalars['uuid'] | null)} + + +/** aggregate sum on columns */ +export interface team_roster_sum_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "team_roster" */ +export interface team_roster_sum_order_by {player_steam_id?: (order_by | null)} + +export interface team_roster_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (team_roster_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (team_roster_set_input | null), +/** filter the rows which have to be updated */ +where: team_roster_bool_exp} + + +/** aggregate var_pop on columns */ +export interface team_roster_var_pop_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "team_roster" */ +export interface team_roster_var_pop_order_by {player_steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface team_roster_var_samp_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "team_roster" */ +export interface team_roster_var_samp_order_by {player_steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface team_roster_variance_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "team_roster" */ +export interface team_roster_variance_order_by {player_steam_id?: (order_by | null)} + + +/** columns and relationships of "team_scrim_alerts" */ +export interface team_scrim_alertsGenqlSelection{ + created_at?: boolean | number + elo_max?: boolean | number + elo_min?: boolean | number + enabled?: boolean | number + id?: boolean | number + last_notified_at?: boolean | number + regions?: boolean | number + /** An object relationship */ + team?: teamsGenqlSelection + team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "team_scrim_alerts" */ +export interface team_scrim_alerts_aggregateGenqlSelection{ + aggregate?: team_scrim_alerts_aggregate_fieldsGenqlSelection + nodes?: team_scrim_alertsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "team_scrim_alerts" */ +export interface team_scrim_alerts_aggregate_fieldsGenqlSelection{ + avg?: team_scrim_alerts_avg_fieldsGenqlSelection + count?: { __args: {columns?: (team_scrim_alerts_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: team_scrim_alerts_max_fieldsGenqlSelection + min?: team_scrim_alerts_min_fieldsGenqlSelection + stddev?: team_scrim_alerts_stddev_fieldsGenqlSelection + stddev_pop?: team_scrim_alerts_stddev_pop_fieldsGenqlSelection + stddev_samp?: team_scrim_alerts_stddev_samp_fieldsGenqlSelection + sum?: team_scrim_alerts_sum_fieldsGenqlSelection + var_pop?: team_scrim_alerts_var_pop_fieldsGenqlSelection + var_samp?: team_scrim_alerts_var_samp_fieldsGenqlSelection + variance?: team_scrim_alerts_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface team_scrim_alerts_avg_fieldsGenqlSelection{ + elo_max?: boolean | number + elo_min?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "team_scrim_alerts". All fields are combined with a logical 'AND'. */ +export interface team_scrim_alerts_bool_exp {_and?: (team_scrim_alerts_bool_exp[] | null),_not?: (team_scrim_alerts_bool_exp | null),_or?: (team_scrim_alerts_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),elo_max?: (Int_comparison_exp | null),elo_min?: (Int_comparison_exp | null),enabled?: (Boolean_comparison_exp | null),id?: (uuid_comparison_exp | null),last_notified_at?: (timestamptz_comparison_exp | null),regions?: (String_array_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "team_scrim_alerts" */ +export interface team_scrim_alerts_inc_input {elo_max?: (Scalars['Int'] | null),elo_min?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "team_scrim_alerts" */ +export interface team_scrim_alerts_insert_input {created_at?: (Scalars['timestamptz'] | null),elo_max?: (Scalars['Int'] | null),elo_min?: (Scalars['Int'] | null),enabled?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),last_notified_at?: (Scalars['timestamptz'] | null),regions?: (Scalars['String'][] | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface team_scrim_alerts_max_fieldsGenqlSelection{ + created_at?: boolean | number + elo_max?: boolean | number + elo_min?: boolean | number + id?: boolean | number + last_notified_at?: boolean | number + regions?: boolean | number + team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface team_scrim_alerts_min_fieldsGenqlSelection{ + created_at?: boolean | number + elo_max?: boolean | number + elo_min?: boolean | number + id?: boolean | number + last_notified_at?: boolean | number + regions?: boolean | number + team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "team_scrim_alerts" */ +export interface team_scrim_alerts_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: team_scrim_alertsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "team_scrim_alerts" */ +export interface team_scrim_alerts_on_conflict {constraint: team_scrim_alerts_constraint,update_columns?: team_scrim_alerts_update_column[],where?: (team_scrim_alerts_bool_exp | null)} + + +/** Ordering options when selecting data from "team_scrim_alerts". */ +export interface team_scrim_alerts_order_by {created_at?: (order_by | null),elo_max?: (order_by | null),elo_min?: (order_by | null),enabled?: (order_by | null),id?: (order_by | null),last_notified_at?: (order_by | null),regions?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null)} + + +/** primary key columns input for table: team_scrim_alerts */ +export interface team_scrim_alerts_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "team_scrim_alerts" */ +export interface team_scrim_alerts_set_input {created_at?: (Scalars['timestamptz'] | null),elo_max?: (Scalars['Int'] | null),elo_min?: (Scalars['Int'] | null),enabled?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),last_notified_at?: (Scalars['timestamptz'] | null),regions?: (Scalars['String'][] | null),team_id?: (Scalars['uuid'] | null)} + + +/** aggregate stddev on columns */ +export interface team_scrim_alerts_stddev_fieldsGenqlSelection{ + elo_max?: boolean | number + elo_min?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface team_scrim_alerts_stddev_pop_fieldsGenqlSelection{ + elo_max?: boolean | number + elo_min?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface team_scrim_alerts_stddev_samp_fieldsGenqlSelection{ + elo_max?: boolean | number + elo_min?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "team_scrim_alerts" */ +export interface team_scrim_alerts_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: team_scrim_alerts_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface team_scrim_alerts_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),elo_max?: (Scalars['Int'] | null),elo_min?: (Scalars['Int'] | null),enabled?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),last_notified_at?: (Scalars['timestamptz'] | null),regions?: (Scalars['String'][] | null),team_id?: (Scalars['uuid'] | null)} + + +/** aggregate sum on columns */ +export interface team_scrim_alerts_sum_fieldsGenqlSelection{ + elo_max?: boolean | number + elo_min?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface team_scrim_alerts_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (team_scrim_alerts_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (team_scrim_alerts_set_input | null), +/** filter the rows which have to be updated */ +where: team_scrim_alerts_bool_exp} + + +/** aggregate var_pop on columns */ +export interface team_scrim_alerts_var_pop_fieldsGenqlSelection{ + elo_max?: boolean | number + elo_min?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface team_scrim_alerts_var_samp_fieldsGenqlSelection{ + elo_max?: boolean | number + elo_min?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface team_scrim_alerts_variance_fieldsGenqlSelection{ + elo_max?: boolean | number + elo_min?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "team_scrim_availability" */ +export interface team_scrim_availabilityGenqlSelection{ + created_at?: boolean | number + ends_at?: boolean | number + id?: boolean | number + recurring_weekly?: boolean | number + starts_at?: boolean | number + /** An object relationship */ + team?: teamsGenqlSelection + team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "team_scrim_availability" */ +export interface team_scrim_availability_aggregateGenqlSelection{ + aggregate?: team_scrim_availability_aggregate_fieldsGenqlSelection + nodes?: team_scrim_availabilityGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface team_scrim_availability_aggregate_bool_exp {bool_and?: (team_scrim_availability_aggregate_bool_exp_bool_and | null),bool_or?: (team_scrim_availability_aggregate_bool_exp_bool_or | null),count?: (team_scrim_availability_aggregate_bool_exp_count | null)} + +export interface team_scrim_availability_aggregate_bool_exp_bool_and {arguments: team_scrim_availability_select_column_team_scrim_availability_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (team_scrim_availability_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface team_scrim_availability_aggregate_bool_exp_bool_or {arguments: team_scrim_availability_select_column_team_scrim_availability_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (team_scrim_availability_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface team_scrim_availability_aggregate_bool_exp_count {arguments?: (team_scrim_availability_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (team_scrim_availability_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "team_scrim_availability" */ +export interface team_scrim_availability_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (team_scrim_availability_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: team_scrim_availability_max_fieldsGenqlSelection + min?: team_scrim_availability_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "team_scrim_availability" */ +export interface team_scrim_availability_aggregate_order_by {count?: (order_by | null),max?: (team_scrim_availability_max_order_by | null),min?: (team_scrim_availability_min_order_by | null)} + + +/** input type for inserting array relation for remote table "team_scrim_availability" */ +export interface team_scrim_availability_arr_rel_insert_input {data: team_scrim_availability_insert_input[], +/** upsert condition */ +on_conflict?: (team_scrim_availability_on_conflict | null)} + + +/** Boolean expression to filter rows from the table "team_scrim_availability". All fields are combined with a logical 'AND'. */ +export interface team_scrim_availability_bool_exp {_and?: (team_scrim_availability_bool_exp[] | null),_not?: (team_scrim_availability_bool_exp | null),_or?: (team_scrim_availability_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),ends_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),recurring_weekly?: (Boolean_comparison_exp | null),starts_at?: (timestamptz_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null)} + + +/** input type for inserting data into table "team_scrim_availability" */ +export interface team_scrim_availability_insert_input {created_at?: (Scalars['timestamptz'] | null),ends_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),recurring_weekly?: (Scalars['Boolean'] | null),starts_at?: (Scalars['timestamptz'] | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface team_scrim_availability_max_fieldsGenqlSelection{ + created_at?: boolean | number + ends_at?: boolean | number + id?: boolean | number + starts_at?: boolean | number + team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "team_scrim_availability" */ +export interface team_scrim_availability_max_order_by {created_at?: (order_by | null),ends_at?: (order_by | null),id?: (order_by | null),starts_at?: (order_by | null),team_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface team_scrim_availability_min_fieldsGenqlSelection{ + created_at?: boolean | number + ends_at?: boolean | number + id?: boolean | number + starts_at?: boolean | number + team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "team_scrim_availability" */ +export interface team_scrim_availability_min_order_by {created_at?: (order_by | null),ends_at?: (order_by | null),id?: (order_by | null),starts_at?: (order_by | null),team_id?: (order_by | null)} + + +/** response of any mutation on the table "team_scrim_availability" */ +export interface team_scrim_availability_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: team_scrim_availabilityGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "team_scrim_availability" */ +export interface team_scrim_availability_on_conflict {constraint: team_scrim_availability_constraint,update_columns?: team_scrim_availability_update_column[],where?: (team_scrim_availability_bool_exp | null)} + + +/** Ordering options when selecting data from "team_scrim_availability". */ +export interface team_scrim_availability_order_by {created_at?: (order_by | null),ends_at?: (order_by | null),id?: (order_by | null),recurring_weekly?: (order_by | null),starts_at?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null)} + + +/** primary key columns input for table: team_scrim_availability */ +export interface team_scrim_availability_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "team_scrim_availability" */ +export interface team_scrim_availability_set_input {created_at?: (Scalars['timestamptz'] | null),ends_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),recurring_weekly?: (Scalars['Boolean'] | null),starts_at?: (Scalars['timestamptz'] | null),team_id?: (Scalars['uuid'] | null)} + + +/** Streaming cursor of the table "team_scrim_availability" */ +export interface team_scrim_availability_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: team_scrim_availability_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface team_scrim_availability_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),ends_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),recurring_weekly?: (Scalars['Boolean'] | null),starts_at?: (Scalars['timestamptz'] | null),team_id?: (Scalars['uuid'] | null)} + +export interface team_scrim_availability_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (team_scrim_availability_set_input | null), +/** filter the rows which have to be updated */ +where: team_scrim_availability_bool_exp} + + +/** columns and relationships of "team_scrim_request_proposals" */ +export interface team_scrim_request_proposalsGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + /** An object relationship */ + proposed_by?: playersGenqlSelection + proposed_by_steam_id?: boolean | number + /** An object relationship */ + proposed_by_team?: teamsGenqlSelection + proposed_by_team_id?: boolean | number + proposed_scheduled_at?: boolean | number + /** An object relationship */ + request?: team_scrim_requestsGenqlSelection + request_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "team_scrim_request_proposals" */ +export interface team_scrim_request_proposals_aggregateGenqlSelection{ + aggregate?: team_scrim_request_proposals_aggregate_fieldsGenqlSelection + nodes?: team_scrim_request_proposalsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface team_scrim_request_proposals_aggregate_bool_exp {count?: (team_scrim_request_proposals_aggregate_bool_exp_count | null)} + +export interface team_scrim_request_proposals_aggregate_bool_exp_count {arguments?: (team_scrim_request_proposals_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (team_scrim_request_proposals_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "team_scrim_request_proposals" */ +export interface team_scrim_request_proposals_aggregate_fieldsGenqlSelection{ + avg?: team_scrim_request_proposals_avg_fieldsGenqlSelection + count?: { __args: {columns?: (team_scrim_request_proposals_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: team_scrim_request_proposals_max_fieldsGenqlSelection + min?: team_scrim_request_proposals_min_fieldsGenqlSelection + stddev?: team_scrim_request_proposals_stddev_fieldsGenqlSelection + stddev_pop?: team_scrim_request_proposals_stddev_pop_fieldsGenqlSelection + stddev_samp?: team_scrim_request_proposals_stddev_samp_fieldsGenqlSelection + sum?: team_scrim_request_proposals_sum_fieldsGenqlSelection + var_pop?: team_scrim_request_proposals_var_pop_fieldsGenqlSelection + var_samp?: team_scrim_request_proposals_var_samp_fieldsGenqlSelection + variance?: team_scrim_request_proposals_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "team_scrim_request_proposals" */ +export interface team_scrim_request_proposals_aggregate_order_by {avg?: (team_scrim_request_proposals_avg_order_by | null),count?: (order_by | null),max?: (team_scrim_request_proposals_max_order_by | null),min?: (team_scrim_request_proposals_min_order_by | null),stddev?: (team_scrim_request_proposals_stddev_order_by | null),stddev_pop?: (team_scrim_request_proposals_stddev_pop_order_by | null),stddev_samp?: (team_scrim_request_proposals_stddev_samp_order_by | null),sum?: (team_scrim_request_proposals_sum_order_by | null),var_pop?: (team_scrim_request_proposals_var_pop_order_by | null),var_samp?: (team_scrim_request_proposals_var_samp_order_by | null),variance?: (team_scrim_request_proposals_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "team_scrim_request_proposals" */ +export interface team_scrim_request_proposals_arr_rel_insert_input {data: team_scrim_request_proposals_insert_input[], +/** upsert condition */ +on_conflict?: (team_scrim_request_proposals_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface team_scrim_request_proposals_avg_fieldsGenqlSelection{ + proposed_by_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "team_scrim_request_proposals" */ +export interface team_scrim_request_proposals_avg_order_by {proposed_by_steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "team_scrim_request_proposals". All fields are combined with a logical 'AND'. */ +export interface team_scrim_request_proposals_bool_exp {_and?: (team_scrim_request_proposals_bool_exp[] | null),_not?: (team_scrim_request_proposals_bool_exp | null),_or?: (team_scrim_request_proposals_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),proposed_by?: (players_bool_exp | null),proposed_by_steam_id?: (bigint_comparison_exp | null),proposed_by_team?: (teams_bool_exp | null),proposed_by_team_id?: (uuid_comparison_exp | null),proposed_scheduled_at?: (timestamptz_comparison_exp | null),request?: (team_scrim_requests_bool_exp | null),request_id?: (uuid_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "team_scrim_request_proposals" */ +export interface team_scrim_request_proposals_inc_input {proposed_by_steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "team_scrim_request_proposals" */ +export interface team_scrim_request_proposals_insert_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),proposed_by?: (players_obj_rel_insert_input | null),proposed_by_steam_id?: (Scalars['bigint'] | null),proposed_by_team?: (teams_obj_rel_insert_input | null),proposed_by_team_id?: (Scalars['uuid'] | null),proposed_scheduled_at?: (Scalars['timestamptz'] | null),request?: (team_scrim_requests_obj_rel_insert_input | null),request_id?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface team_scrim_request_proposals_max_fieldsGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + proposed_by_steam_id?: boolean | number + proposed_by_team_id?: boolean | number + proposed_scheduled_at?: boolean | number + request_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "team_scrim_request_proposals" */ +export interface team_scrim_request_proposals_max_order_by {created_at?: (order_by | null),id?: (order_by | null),proposed_by_steam_id?: (order_by | null),proposed_by_team_id?: (order_by | null),proposed_scheduled_at?: (order_by | null),request_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface team_scrim_request_proposals_min_fieldsGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + proposed_by_steam_id?: boolean | number + proposed_by_team_id?: boolean | number + proposed_scheduled_at?: boolean | number + request_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "team_scrim_request_proposals" */ +export interface team_scrim_request_proposals_min_order_by {created_at?: (order_by | null),id?: (order_by | null),proposed_by_steam_id?: (order_by | null),proposed_by_team_id?: (order_by | null),proposed_scheduled_at?: (order_by | null),request_id?: (order_by | null)} + + +/** response of any mutation on the table "team_scrim_request_proposals" */ +export interface team_scrim_request_proposals_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: team_scrim_request_proposalsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "team_scrim_request_proposals" */ +export interface team_scrim_request_proposals_on_conflict {constraint: team_scrim_request_proposals_constraint,update_columns?: team_scrim_request_proposals_update_column[],where?: (team_scrim_request_proposals_bool_exp | null)} + + +/** Ordering options when selecting data from "team_scrim_request_proposals". */ +export interface team_scrim_request_proposals_order_by {created_at?: (order_by | null),id?: (order_by | null),proposed_by?: (players_order_by | null),proposed_by_steam_id?: (order_by | null),proposed_by_team?: (teams_order_by | null),proposed_by_team_id?: (order_by | null),proposed_scheduled_at?: (order_by | null),request?: (team_scrim_requests_order_by | null),request_id?: (order_by | null)} + + +/** primary key columns input for table: team_scrim_request_proposals */ +export interface team_scrim_request_proposals_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "team_scrim_request_proposals" */ +export interface team_scrim_request_proposals_set_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),proposed_by_steam_id?: (Scalars['bigint'] | null),proposed_by_team_id?: (Scalars['uuid'] | null),proposed_scheduled_at?: (Scalars['timestamptz'] | null),request_id?: (Scalars['uuid'] | null)} + + +/** aggregate stddev on columns */ +export interface team_scrim_request_proposals_stddev_fieldsGenqlSelection{ + proposed_by_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "team_scrim_request_proposals" */ +export interface team_scrim_request_proposals_stddev_order_by {proposed_by_steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface team_scrim_request_proposals_stddev_pop_fieldsGenqlSelection{ + proposed_by_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "team_scrim_request_proposals" */ +export interface team_scrim_request_proposals_stddev_pop_order_by {proposed_by_steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface team_scrim_request_proposals_stddev_samp_fieldsGenqlSelection{ + proposed_by_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "team_scrim_request_proposals" */ +export interface team_scrim_request_proposals_stddev_samp_order_by {proposed_by_steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "team_scrim_request_proposals" */ +export interface team_scrim_request_proposals_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: team_scrim_request_proposals_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface team_scrim_request_proposals_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),proposed_by_steam_id?: (Scalars['bigint'] | null),proposed_by_team_id?: (Scalars['uuid'] | null),proposed_scheduled_at?: (Scalars['timestamptz'] | null),request_id?: (Scalars['uuid'] | null)} + + +/** aggregate sum on columns */ +export interface team_scrim_request_proposals_sum_fieldsGenqlSelection{ + proposed_by_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "team_scrim_request_proposals" */ +export interface team_scrim_request_proposals_sum_order_by {proposed_by_steam_id?: (order_by | null)} + +export interface team_scrim_request_proposals_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (team_scrim_request_proposals_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (team_scrim_request_proposals_set_input | null), +/** filter the rows which have to be updated */ +where: team_scrim_request_proposals_bool_exp} + + +/** aggregate var_pop on columns */ +export interface team_scrim_request_proposals_var_pop_fieldsGenqlSelection{ + proposed_by_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "team_scrim_request_proposals" */ +export interface team_scrim_request_proposals_var_pop_order_by {proposed_by_steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface team_scrim_request_proposals_var_samp_fieldsGenqlSelection{ + proposed_by_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "team_scrim_request_proposals" */ +export interface team_scrim_request_proposals_var_samp_order_by {proposed_by_steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface team_scrim_request_proposals_variance_fieldsGenqlSelection{ + proposed_by_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "team_scrim_request_proposals" */ +export interface team_scrim_request_proposals_variance_order_by {proposed_by_steam_id?: (order_by | null)} + + +/** columns and relationships of "team_scrim_requests" */ +export interface team_scrim_requestsGenqlSelection{ + auto_generated?: boolean | number + /** An object relationship */ + awaiting_team?: teamsGenqlSelection + awaiting_team_id?: boolean | number + canceled_by_team_id?: boolean | number + canceled_late?: boolean | number + created_at?: boolean | number + expires_at?: boolean | number + /** An object relationship */ + from_team?: teamsGenqlSelection + from_team_checked_in?: boolean | number + from_team_id?: boolean | number + id?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + match_id?: boolean | number + /** An object relationship */ + match_options?: match_optionsGenqlSelection + match_options_id?: boolean | number + /** Terminal match status captured by tbd_match_cancel_scrim before the match row is deleted, so v_team_reputation survives canceled-match GC. */ + match_outcome?: boolean | number + /** An array relationship */ + proposals?: (team_scrim_request_proposalsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (team_scrim_request_proposals_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_request_proposals_order_by[] | null), + /** filter the rows returned */ + where?: (team_scrim_request_proposals_bool_exp | null)} }) + /** An aggregate relationship */ + proposals_aggregate?: (team_scrim_request_proposals_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (team_scrim_request_proposals_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_request_proposals_order_by[] | null), + /** filter the rows returned */ + where?: (team_scrim_request_proposals_bool_exp | null)} }) + proposed_scheduled_at?: boolean | number + region?: boolean | number + /** An object relationship */ + requested_by?: playersGenqlSelection + requested_by_steam_id?: boolean | number + responded_at?: boolean | number + status?: boolean | number + /** An object relationship */ + to_team?: teamsGenqlSelection + to_team_checked_in?: boolean | number + to_team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "team_scrim_requests" */ +export interface team_scrim_requests_aggregateGenqlSelection{ + aggregate?: team_scrim_requests_aggregate_fieldsGenqlSelection + nodes?: team_scrim_requestsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface team_scrim_requests_aggregate_bool_exp {bool_and?: (team_scrim_requests_aggregate_bool_exp_bool_and | null),bool_or?: (team_scrim_requests_aggregate_bool_exp_bool_or | null),count?: (team_scrim_requests_aggregate_bool_exp_count | null)} + +export interface team_scrim_requests_aggregate_bool_exp_bool_and {arguments: team_scrim_requests_select_column_team_scrim_requests_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (team_scrim_requests_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface team_scrim_requests_aggregate_bool_exp_bool_or {arguments: team_scrim_requests_select_column_team_scrim_requests_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (team_scrim_requests_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface team_scrim_requests_aggregate_bool_exp_count {arguments?: (team_scrim_requests_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (team_scrim_requests_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "team_scrim_requests" */ +export interface team_scrim_requests_aggregate_fieldsGenqlSelection{ + avg?: team_scrim_requests_avg_fieldsGenqlSelection + count?: { __args: {columns?: (team_scrim_requests_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: team_scrim_requests_max_fieldsGenqlSelection + min?: team_scrim_requests_min_fieldsGenqlSelection + stddev?: team_scrim_requests_stddev_fieldsGenqlSelection + stddev_pop?: team_scrim_requests_stddev_pop_fieldsGenqlSelection + stddev_samp?: team_scrim_requests_stddev_samp_fieldsGenqlSelection + sum?: team_scrim_requests_sum_fieldsGenqlSelection + var_pop?: team_scrim_requests_var_pop_fieldsGenqlSelection + var_samp?: team_scrim_requests_var_samp_fieldsGenqlSelection + variance?: team_scrim_requests_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "team_scrim_requests" */ +export interface team_scrim_requests_aggregate_order_by {avg?: (team_scrim_requests_avg_order_by | null),count?: (order_by | null),max?: (team_scrim_requests_max_order_by | null),min?: (team_scrim_requests_min_order_by | null),stddev?: (team_scrim_requests_stddev_order_by | null),stddev_pop?: (team_scrim_requests_stddev_pop_order_by | null),stddev_samp?: (team_scrim_requests_stddev_samp_order_by | null),sum?: (team_scrim_requests_sum_order_by | null),var_pop?: (team_scrim_requests_var_pop_order_by | null),var_samp?: (team_scrim_requests_var_samp_order_by | null),variance?: (team_scrim_requests_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "team_scrim_requests" */ +export interface team_scrim_requests_arr_rel_insert_input {data: team_scrim_requests_insert_input[], +/** upsert condition */ +on_conflict?: (team_scrim_requests_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface team_scrim_requests_avg_fieldsGenqlSelection{ + requested_by_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "team_scrim_requests" */ +export interface team_scrim_requests_avg_order_by {requested_by_steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "team_scrim_requests". All fields are combined with a logical 'AND'. */ +export interface team_scrim_requests_bool_exp {_and?: (team_scrim_requests_bool_exp[] | null),_not?: (team_scrim_requests_bool_exp | null),_or?: (team_scrim_requests_bool_exp[] | null),auto_generated?: (Boolean_comparison_exp | null),awaiting_team?: (teams_bool_exp | null),awaiting_team_id?: (uuid_comparison_exp | null),canceled_by_team_id?: (uuid_comparison_exp | null),canceled_late?: (Boolean_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),expires_at?: (timestamptz_comparison_exp | null),from_team?: (teams_bool_exp | null),from_team_checked_in?: (Boolean_comparison_exp | null),from_team_id?: (uuid_comparison_exp | null),id?: (uuid_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_options?: (match_options_bool_exp | null),match_options_id?: (uuid_comparison_exp | null),match_outcome?: (String_comparison_exp | null),proposals?: (team_scrim_request_proposals_bool_exp | null),proposals_aggregate?: (team_scrim_request_proposals_aggregate_bool_exp | null),proposed_scheduled_at?: (timestamptz_comparison_exp | null),region?: (String_comparison_exp | null),requested_by?: (players_bool_exp | null),requested_by_steam_id?: (bigint_comparison_exp | null),responded_at?: (timestamptz_comparison_exp | null),status?: (e_scrim_request_statuses_enum_comparison_exp | null),to_team?: (teams_bool_exp | null),to_team_checked_in?: (Boolean_comparison_exp | null),to_team_id?: (uuid_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "team_scrim_requests" */ +export interface team_scrim_requests_inc_input {requested_by_steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "team_scrim_requests" */ +export interface team_scrim_requests_insert_input {auto_generated?: (Scalars['Boolean'] | null),awaiting_team?: (teams_obj_rel_insert_input | null),awaiting_team_id?: (Scalars['uuid'] | null),canceled_by_team_id?: (Scalars['uuid'] | null),canceled_late?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),expires_at?: (Scalars['timestamptz'] | null),from_team?: (teams_obj_rel_insert_input | null),from_team_checked_in?: (Scalars['Boolean'] | null),from_team_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_options?: (match_options_obj_rel_insert_input | null),match_options_id?: (Scalars['uuid'] | null), +/** Terminal match status captured by tbd_match_cancel_scrim before the match row is deleted, so v_team_reputation survives canceled-match GC. */ +match_outcome?: (Scalars['String'] | null),proposals?: (team_scrim_request_proposals_arr_rel_insert_input | null),proposed_scheduled_at?: (Scalars['timestamptz'] | null),region?: (Scalars['String'] | null),requested_by?: (players_obj_rel_insert_input | null),requested_by_steam_id?: (Scalars['bigint'] | null),responded_at?: (Scalars['timestamptz'] | null),status?: (e_scrim_request_statuses_enum | null),to_team?: (teams_obj_rel_insert_input | null),to_team_checked_in?: (Scalars['Boolean'] | null),to_team_id?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface team_scrim_requests_max_fieldsGenqlSelection{ + awaiting_team_id?: boolean | number + canceled_by_team_id?: boolean | number + created_at?: boolean | number + expires_at?: boolean | number + from_team_id?: boolean | number + id?: boolean | number + match_id?: boolean | number + match_options_id?: boolean | number + /** Terminal match status captured by tbd_match_cancel_scrim before the match row is deleted, so v_team_reputation survives canceled-match GC. */ + match_outcome?: boolean | number + proposed_scheduled_at?: boolean | number + region?: boolean | number + requested_by_steam_id?: boolean | number + responded_at?: boolean | number + to_team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "team_scrim_requests" */ +export interface team_scrim_requests_max_order_by {awaiting_team_id?: (order_by | null),canceled_by_team_id?: (order_by | null),created_at?: (order_by | null),expires_at?: (order_by | null),from_team_id?: (order_by | null),id?: (order_by | null),match_id?: (order_by | null),match_options_id?: (order_by | null), +/** Terminal match status captured by tbd_match_cancel_scrim before the match row is deleted, so v_team_reputation survives canceled-match GC. */ +match_outcome?: (order_by | null),proposed_scheduled_at?: (order_by | null),region?: (order_by | null),requested_by_steam_id?: (order_by | null),responded_at?: (order_by | null),to_team_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface team_scrim_requests_min_fieldsGenqlSelection{ + awaiting_team_id?: boolean | number + canceled_by_team_id?: boolean | number + created_at?: boolean | number + expires_at?: boolean | number + from_team_id?: boolean | number + id?: boolean | number + match_id?: boolean | number + match_options_id?: boolean | number + /** Terminal match status captured by tbd_match_cancel_scrim before the match row is deleted, so v_team_reputation survives canceled-match GC. */ + match_outcome?: boolean | number + proposed_scheduled_at?: boolean | number + region?: boolean | number + requested_by_steam_id?: boolean | number + responded_at?: boolean | number + to_team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "team_scrim_requests" */ +export interface team_scrim_requests_min_order_by {awaiting_team_id?: (order_by | null),canceled_by_team_id?: (order_by | null),created_at?: (order_by | null),expires_at?: (order_by | null),from_team_id?: (order_by | null),id?: (order_by | null),match_id?: (order_by | null),match_options_id?: (order_by | null), +/** Terminal match status captured by tbd_match_cancel_scrim before the match row is deleted, so v_team_reputation survives canceled-match GC. */ +match_outcome?: (order_by | null),proposed_scheduled_at?: (order_by | null),region?: (order_by | null),requested_by_steam_id?: (order_by | null),responded_at?: (order_by | null),to_team_id?: (order_by | null)} + + +/** response of any mutation on the table "team_scrim_requests" */ +export interface team_scrim_requests_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: team_scrim_requestsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "team_scrim_requests" */ +export interface team_scrim_requests_obj_rel_insert_input {data: team_scrim_requests_insert_input, +/** upsert condition */ +on_conflict?: (team_scrim_requests_on_conflict | null)} + + +/** on_conflict condition type for table "team_scrim_requests" */ +export interface team_scrim_requests_on_conflict {constraint: team_scrim_requests_constraint,update_columns?: team_scrim_requests_update_column[],where?: (team_scrim_requests_bool_exp | null)} + + +/** Ordering options when selecting data from "team_scrim_requests". */ +export interface team_scrim_requests_order_by {auto_generated?: (order_by | null),awaiting_team?: (teams_order_by | null),awaiting_team_id?: (order_by | null),canceled_by_team_id?: (order_by | null),canceled_late?: (order_by | null),created_at?: (order_by | null),expires_at?: (order_by | null),from_team?: (teams_order_by | null),from_team_checked_in?: (order_by | null),from_team_id?: (order_by | null),id?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_options?: (match_options_order_by | null),match_options_id?: (order_by | null),match_outcome?: (order_by | null),proposals_aggregate?: (team_scrim_request_proposals_aggregate_order_by | null),proposed_scheduled_at?: (order_by | null),region?: (order_by | null),requested_by?: (players_order_by | null),requested_by_steam_id?: (order_by | null),responded_at?: (order_by | null),status?: (order_by | null),to_team?: (teams_order_by | null),to_team_checked_in?: (order_by | null),to_team_id?: (order_by | null)} + + +/** primary key columns input for table: team_scrim_requests */ +export interface team_scrim_requests_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "team_scrim_requests" */ +export interface team_scrim_requests_set_input {auto_generated?: (Scalars['Boolean'] | null),awaiting_team_id?: (Scalars['uuid'] | null),canceled_by_team_id?: (Scalars['uuid'] | null),canceled_late?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),expires_at?: (Scalars['timestamptz'] | null),from_team_checked_in?: (Scalars['Boolean'] | null),from_team_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null), +/** Terminal match status captured by tbd_match_cancel_scrim before the match row is deleted, so v_team_reputation survives canceled-match GC. */ +match_outcome?: (Scalars['String'] | null),proposed_scheduled_at?: (Scalars['timestamptz'] | null),region?: (Scalars['String'] | null),requested_by_steam_id?: (Scalars['bigint'] | null),responded_at?: (Scalars['timestamptz'] | null),status?: (e_scrim_request_statuses_enum | null),to_team_checked_in?: (Scalars['Boolean'] | null),to_team_id?: (Scalars['uuid'] | null)} + + +/** aggregate stddev on columns */ +export interface team_scrim_requests_stddev_fieldsGenqlSelection{ + requested_by_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "team_scrim_requests" */ +export interface team_scrim_requests_stddev_order_by {requested_by_steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface team_scrim_requests_stddev_pop_fieldsGenqlSelection{ + requested_by_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "team_scrim_requests" */ +export interface team_scrim_requests_stddev_pop_order_by {requested_by_steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface team_scrim_requests_stddev_samp_fieldsGenqlSelection{ + requested_by_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "team_scrim_requests" */ +export interface team_scrim_requests_stddev_samp_order_by {requested_by_steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "team_scrim_requests" */ +export interface team_scrim_requests_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: team_scrim_requests_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface team_scrim_requests_stream_cursor_value_input {auto_generated?: (Scalars['Boolean'] | null),awaiting_team_id?: (Scalars['uuid'] | null),canceled_by_team_id?: (Scalars['uuid'] | null),canceled_late?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),expires_at?: (Scalars['timestamptz'] | null),from_team_checked_in?: (Scalars['Boolean'] | null),from_team_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null), +/** Terminal match status captured by tbd_match_cancel_scrim before the match row is deleted, so v_team_reputation survives canceled-match GC. */ +match_outcome?: (Scalars['String'] | null),proposed_scheduled_at?: (Scalars['timestamptz'] | null),region?: (Scalars['String'] | null),requested_by_steam_id?: (Scalars['bigint'] | null),responded_at?: (Scalars['timestamptz'] | null),status?: (e_scrim_request_statuses_enum | null),to_team_checked_in?: (Scalars['Boolean'] | null),to_team_id?: (Scalars['uuid'] | null)} + + +/** aggregate sum on columns */ +export interface team_scrim_requests_sum_fieldsGenqlSelection{ + requested_by_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "team_scrim_requests" */ +export interface team_scrim_requests_sum_order_by {requested_by_steam_id?: (order_by | null)} + +export interface team_scrim_requests_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (team_scrim_requests_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (team_scrim_requests_set_input | null), +/** filter the rows which have to be updated */ +where: team_scrim_requests_bool_exp} + + +/** aggregate var_pop on columns */ +export interface team_scrim_requests_var_pop_fieldsGenqlSelection{ + requested_by_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "team_scrim_requests" */ +export interface team_scrim_requests_var_pop_order_by {requested_by_steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface team_scrim_requests_var_samp_fieldsGenqlSelection{ + requested_by_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "team_scrim_requests" */ +export interface team_scrim_requests_var_samp_order_by {requested_by_steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface team_scrim_requests_variance_fieldsGenqlSelection{ + requested_by_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "team_scrim_requests" */ +export interface team_scrim_requests_variance_order_by {requested_by_steam_id?: (order_by | null)} + + +/** columns and relationships of "team_scrim_settings" */ +export interface team_scrim_settingsGenqlSelection{ + allow_outside_availability?: boolean | number + created_at?: boolean | number + elo_max?: boolean | number + elo_min?: boolean | number + enabled?: boolean | number + id?: boolean | number + map_ids?: boolean | number + notes?: boolean | number + regions?: boolean | number + /** An object relationship */ + team?: teamsGenqlSelection + team_id?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "team_scrim_settings" */ +export interface team_scrim_settings_aggregateGenqlSelection{ + aggregate?: team_scrim_settings_aggregate_fieldsGenqlSelection + nodes?: team_scrim_settingsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "team_scrim_settings" */ +export interface team_scrim_settings_aggregate_fieldsGenqlSelection{ + avg?: team_scrim_settings_avg_fieldsGenqlSelection + count?: { __args: {columns?: (team_scrim_settings_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: team_scrim_settings_max_fieldsGenqlSelection + min?: team_scrim_settings_min_fieldsGenqlSelection + stddev?: team_scrim_settings_stddev_fieldsGenqlSelection + stddev_pop?: team_scrim_settings_stddev_pop_fieldsGenqlSelection + stddev_samp?: team_scrim_settings_stddev_samp_fieldsGenqlSelection + sum?: team_scrim_settings_sum_fieldsGenqlSelection + var_pop?: team_scrim_settings_var_pop_fieldsGenqlSelection + var_samp?: team_scrim_settings_var_samp_fieldsGenqlSelection + variance?: team_scrim_settings_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface team_scrim_settings_avg_fieldsGenqlSelection{ + elo_max?: boolean | number + elo_min?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "team_scrim_settings". All fields are combined with a logical 'AND'. */ +export interface team_scrim_settings_bool_exp {_and?: (team_scrim_settings_bool_exp[] | null),_not?: (team_scrim_settings_bool_exp | null),_or?: (team_scrim_settings_bool_exp[] | null),allow_outside_availability?: (Boolean_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),elo_max?: (Int_comparison_exp | null),elo_min?: (Int_comparison_exp | null),enabled?: (Boolean_comparison_exp | null),id?: (uuid_comparison_exp | null),map_ids?: (uuid_array_comparison_exp | null),notes?: (String_comparison_exp | null),regions?: (String_array_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "team_scrim_settings" */ +export interface team_scrim_settings_inc_input {elo_max?: (Scalars['Int'] | null),elo_min?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "team_scrim_settings" */ +export interface team_scrim_settings_insert_input {allow_outside_availability?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),elo_max?: (Scalars['Int'] | null),elo_min?: (Scalars['Int'] | null),enabled?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),map_ids?: (Scalars['uuid'][] | null),notes?: (Scalars['String'] | null),regions?: (Scalars['String'][] | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate max on columns */ +export interface team_scrim_settings_max_fieldsGenqlSelection{ + created_at?: boolean | number + elo_max?: boolean | number + elo_min?: boolean | number + id?: boolean | number + map_ids?: boolean | number + notes?: boolean | number + regions?: boolean | number + team_id?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface team_scrim_settings_min_fieldsGenqlSelection{ + created_at?: boolean | number + elo_max?: boolean | number + elo_min?: boolean | number + id?: boolean | number + map_ids?: boolean | number + notes?: boolean | number + regions?: boolean | number + team_id?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "team_scrim_settings" */ +export interface team_scrim_settings_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: team_scrim_settingsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "team_scrim_settings" */ +export interface team_scrim_settings_obj_rel_insert_input {data: team_scrim_settings_insert_input, +/** upsert condition */ +on_conflict?: (team_scrim_settings_on_conflict | null)} + + +/** on_conflict condition type for table "team_scrim_settings" */ +export interface team_scrim_settings_on_conflict {constraint: team_scrim_settings_constraint,update_columns?: team_scrim_settings_update_column[],where?: (team_scrim_settings_bool_exp | null)} + + +/** Ordering options when selecting data from "team_scrim_settings". */ +export interface team_scrim_settings_order_by {allow_outside_availability?: (order_by | null),created_at?: (order_by | null),elo_max?: (order_by | null),elo_min?: (order_by | null),enabled?: (order_by | null),id?: (order_by | null),map_ids?: (order_by | null),notes?: (order_by | null),regions?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null),updated_at?: (order_by | null)} + + +/** primary key columns input for table: team_scrim_settings */ +export interface team_scrim_settings_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "team_scrim_settings" */ +export interface team_scrim_settings_set_input {allow_outside_availability?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),elo_max?: (Scalars['Int'] | null),elo_min?: (Scalars['Int'] | null),enabled?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),map_ids?: (Scalars['uuid'][] | null),notes?: (Scalars['String'] | null),regions?: (Scalars['String'][] | null),team_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate stddev on columns */ +export interface team_scrim_settings_stddev_fieldsGenqlSelection{ + elo_max?: boolean | number + elo_min?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface team_scrim_settings_stddev_pop_fieldsGenqlSelection{ + elo_max?: boolean | number + elo_min?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface team_scrim_settings_stddev_samp_fieldsGenqlSelection{ + elo_max?: boolean | number + elo_min?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "team_scrim_settings" */ +export interface team_scrim_settings_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: team_scrim_settings_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface team_scrim_settings_stream_cursor_value_input {allow_outside_availability?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),elo_max?: (Scalars['Int'] | null),elo_min?: (Scalars['Int'] | null),enabled?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),map_ids?: (Scalars['uuid'][] | null),notes?: (Scalars['String'] | null),regions?: (Scalars['String'][] | null),team_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate sum on columns */ +export interface team_scrim_settings_sum_fieldsGenqlSelection{ + elo_max?: boolean | number + elo_min?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface team_scrim_settings_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (team_scrim_settings_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (team_scrim_settings_set_input | null), +/** filter the rows which have to be updated */ +where: team_scrim_settings_bool_exp} + + +/** aggregate var_pop on columns */ +export interface team_scrim_settings_var_pop_fieldsGenqlSelection{ + elo_max?: boolean | number + elo_min?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface team_scrim_settings_var_samp_fieldsGenqlSelection{ + elo_max?: boolean | number + elo_min?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface team_scrim_settings_variance_fieldsGenqlSelection{ + elo_max?: boolean | number + elo_min?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "team_suggestions" */ +export interface team_suggestionsGenqlSelection{ + created_at?: boolean | number + group_hash?: boolean | number + id?: boolean | number + last_notified_at?: boolean | number + member_steam_ids?: boolean | number + status?: boolean | number + together_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "team_suggestions" */ +export interface team_suggestions_aggregateGenqlSelection{ + aggregate?: team_suggestions_aggregate_fieldsGenqlSelection + nodes?: team_suggestionsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "team_suggestions" */ +export interface team_suggestions_aggregate_fieldsGenqlSelection{ + avg?: team_suggestions_avg_fieldsGenqlSelection + count?: { __args: {columns?: (team_suggestions_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: team_suggestions_max_fieldsGenqlSelection + min?: team_suggestions_min_fieldsGenqlSelection + stddev?: team_suggestions_stddev_fieldsGenqlSelection + stddev_pop?: team_suggestions_stddev_pop_fieldsGenqlSelection + stddev_samp?: team_suggestions_stddev_samp_fieldsGenqlSelection + sum?: team_suggestions_sum_fieldsGenqlSelection + var_pop?: team_suggestions_var_pop_fieldsGenqlSelection + var_samp?: team_suggestions_var_samp_fieldsGenqlSelection + variance?: team_suggestions_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface team_suggestions_avg_fieldsGenqlSelection{ + together_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "team_suggestions". All fields are combined with a logical 'AND'. */ +export interface team_suggestions_bool_exp {_and?: (team_suggestions_bool_exp[] | null),_not?: (team_suggestions_bool_exp | null),_or?: (team_suggestions_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),group_hash?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),last_notified_at?: (timestamptz_comparison_exp | null),member_steam_ids?: (bigint_array_comparison_exp | null),status?: (String_comparison_exp | null),together_count?: (Int_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "team_suggestions" */ +export interface team_suggestions_inc_input {together_count?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "team_suggestions" */ +export interface team_suggestions_insert_input {created_at?: (Scalars['timestamptz'] | null),group_hash?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),last_notified_at?: (Scalars['timestamptz'] | null),member_steam_ids?: (Scalars['bigint'][] | null),status?: (Scalars['String'] | null),together_count?: (Scalars['Int'] | null)} + + +/** aggregate max on columns */ +export interface team_suggestions_max_fieldsGenqlSelection{ + created_at?: boolean | number + group_hash?: boolean | number + id?: boolean | number + last_notified_at?: boolean | number + member_steam_ids?: boolean | number + status?: boolean | number + together_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface team_suggestions_min_fieldsGenqlSelection{ + created_at?: boolean | number + group_hash?: boolean | number + id?: boolean | number + last_notified_at?: boolean | number + member_steam_ids?: boolean | number + status?: boolean | number + together_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "team_suggestions" */ +export interface team_suggestions_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: team_suggestionsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "team_suggestions" */ +export interface team_suggestions_on_conflict {constraint: team_suggestions_constraint,update_columns?: team_suggestions_update_column[],where?: (team_suggestions_bool_exp | null)} + + +/** Ordering options when selecting data from "team_suggestions". */ +export interface team_suggestions_order_by {created_at?: (order_by | null),group_hash?: (order_by | null),id?: (order_by | null),last_notified_at?: (order_by | null),member_steam_ids?: (order_by | null),status?: (order_by | null),together_count?: (order_by | null)} + + +/** primary key columns input for table: team_suggestions */ +export interface team_suggestions_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "team_suggestions" */ +export interface team_suggestions_set_input {created_at?: (Scalars['timestamptz'] | null),group_hash?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),last_notified_at?: (Scalars['timestamptz'] | null),member_steam_ids?: (Scalars['bigint'][] | null),status?: (Scalars['String'] | null),together_count?: (Scalars['Int'] | null)} + + +/** aggregate stddev on columns */ +export interface team_suggestions_stddev_fieldsGenqlSelection{ + together_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface team_suggestions_stddev_pop_fieldsGenqlSelection{ + together_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface team_suggestions_stddev_samp_fieldsGenqlSelection{ + together_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "team_suggestions" */ +export interface team_suggestions_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: team_suggestions_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface team_suggestions_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),group_hash?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),last_notified_at?: (Scalars['timestamptz'] | null),member_steam_ids?: (Scalars['bigint'][] | null),status?: (Scalars['String'] | null),together_count?: (Scalars['Int'] | null)} + + +/** aggregate sum on columns */ +export interface team_suggestions_sum_fieldsGenqlSelection{ + together_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface team_suggestions_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (team_suggestions_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (team_suggestions_set_input | null), +/** filter the rows which have to be updated */ +where: team_suggestions_bool_exp} + + +/** aggregate var_pop on columns */ +export interface team_suggestions_var_pop_fieldsGenqlSelection{ + together_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface team_suggestions_var_samp_fieldsGenqlSelection{ + together_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface team_suggestions_variance_fieldsGenqlSelection{ + together_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "teams" */ +export interface teamsGenqlSelection{ + avatar_url?: boolean | number + /** 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)} }) + /** A computed field, executes function "can_change_team_role" */ + can_change_role?: boolean | number + /** A computed field, executes function "can_invite_to_team" */ + can_invite?: boolean | number + /** A computed field, executes function "can_manage_team_scrims" */ + can_manage_scrims?: boolean | number + /** A computed field, executes function "can_remove_from_team" */ + can_remove?: boolean | number + /** An object relationship */ + captain?: playersGenqlSelection + captain_steam_id?: boolean | number + id?: boolean | number + /** An array relationship */ + invites?: (team_invitesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (team_invites_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_invites_order_by[] | null), + /** filter the rows returned */ + where?: (team_invites_bool_exp | null)} }) + /** An aggregate relationship */ + invites_aggregate?: (team_invites_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (team_invites_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_invites_order_by[] | null), + /** filter the rows returned */ + where?: (team_invites_bool_exp | null)} }) + is_organization?: boolean | number + /** An array relationship */ + match_lineups?: (match_lineupsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_lineups_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_lineups_order_by[] | null), + /** filter the rows returned */ + where?: (match_lineups_bool_exp | null)} }) + /** An aggregate relationship */ + match_lineups_aggregate?: (match_lineups_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_lineups_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_lineups_order_by[] | null), + /** filter the rows returned */ + where?: (match_lineups_bool_exp | null)} }) + /** A computed field, executes function "get_team_matches" */ + 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)} }) + name?: boolean | number + /** An object relationship */ + owner?: playersGenqlSelection + owner_steam_id?: boolean | number + /** An object relationship */ + ranks?: v_team_ranksGenqlSelection + /** An object relationship */ + reputation?: v_team_reputationGenqlSelection + /** A computed field, executes function "team_role" */ + role?: boolean | number + /** An array relationship */ + roster?: (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 */ + roster_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 */ + scrim_availability?: (team_scrim_availabilityGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (team_scrim_availability_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_availability_order_by[] | null), + /** filter the rows returned */ + where?: (team_scrim_availability_bool_exp | null)} }) + /** An aggregate relationship */ + scrim_availability_aggregate?: (team_scrim_availability_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (team_scrim_availability_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_availability_order_by[] | null), + /** filter the rows returned */ + where?: (team_scrim_availability_bool_exp | null)} }) + /** An object relationship */ + scrim_settings?: team_scrim_settingsGenqlSelection + short_name?: boolean | number + /** An array relationship */ + tournament_teams?: (tournament_teamsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_teams_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_teams_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_teams_bool_exp | null)} }) + /** An aggregate relationship */ + tournament_teams_aggregate?: (tournament_teams_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_teams_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_teams_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_teams_bool_exp | null)} }) + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "teams" */ +export interface teams_aggregateGenqlSelection{ + aggregate?: teams_aggregate_fieldsGenqlSelection + nodes?: teamsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface teams_aggregate_bool_exp {bool_and?: (teams_aggregate_bool_exp_bool_and | null),bool_or?: (teams_aggregate_bool_exp_bool_or | null),count?: (teams_aggregate_bool_exp_count | null)} + +export interface teams_aggregate_bool_exp_bool_and {arguments: teams_select_column_teams_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (teams_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface teams_aggregate_bool_exp_bool_or {arguments: teams_select_column_teams_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (teams_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface teams_aggregate_bool_exp_count {arguments?: (teams_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (teams_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "teams" */ +export interface teams_aggregate_fieldsGenqlSelection{ + avg?: teams_avg_fieldsGenqlSelection + count?: { __args: {columns?: (teams_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: teams_max_fieldsGenqlSelection + min?: teams_min_fieldsGenqlSelection + stddev?: teams_stddev_fieldsGenqlSelection + stddev_pop?: teams_stddev_pop_fieldsGenqlSelection + stddev_samp?: teams_stddev_samp_fieldsGenqlSelection + sum?: teams_sum_fieldsGenqlSelection + var_pop?: teams_var_pop_fieldsGenqlSelection + var_samp?: teams_var_samp_fieldsGenqlSelection + variance?: teams_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "teams" */ +export interface teams_aggregate_order_by {avg?: (teams_avg_order_by | null),count?: (order_by | null),max?: (teams_max_order_by | null),min?: (teams_min_order_by | null),stddev?: (teams_stddev_order_by | null),stddev_pop?: (teams_stddev_pop_order_by | null),stddev_samp?: (teams_stddev_samp_order_by | null),sum?: (teams_sum_order_by | null),var_pop?: (teams_var_pop_order_by | null),var_samp?: (teams_var_samp_order_by | null),variance?: (teams_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "teams" */ +export interface teams_arr_rel_insert_input {data: teams_insert_input[], +/** upsert condition */ +on_conflict?: (teams_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface teams_avg_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + owner_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "teams" */ +export interface teams_avg_order_by {captain_steam_id?: (order_by | null),owner_steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "teams". All fields are combined with a logical 'AND'. */ +export interface teams_bool_exp {_and?: (teams_bool_exp[] | null),_not?: (teams_bool_exp | null),_or?: (teams_bool_exp[] | null),avatar_url?: (String_comparison_exp | null),awards?: (award_recipients_bool_exp | null),awards_aggregate?: (award_recipients_aggregate_bool_exp | null),can_change_role?: (Boolean_comparison_exp | null),can_invite?: (Boolean_comparison_exp | null),can_manage_scrims?: (Boolean_comparison_exp | null),can_remove?: (Boolean_comparison_exp | null),captain?: (players_bool_exp | null),captain_steam_id?: (bigint_comparison_exp | null),id?: (uuid_comparison_exp | null),invites?: (team_invites_bool_exp | null),invites_aggregate?: (team_invites_aggregate_bool_exp | null),is_organization?: (Boolean_comparison_exp | null),match_lineups?: (match_lineups_bool_exp | null),match_lineups_aggregate?: (match_lineups_aggregate_bool_exp | null),matches?: (matches_bool_exp | null),name?: (String_comparison_exp | null),owner?: (players_bool_exp | null),owner_steam_id?: (bigint_comparison_exp | null),ranks?: (v_team_ranks_bool_exp | null),reputation?: (v_team_reputation_bool_exp | null),role?: (String_comparison_exp | null),roster?: (team_roster_bool_exp | null),roster_aggregate?: (team_roster_aggregate_bool_exp | null),scrim_availability?: (team_scrim_availability_bool_exp | null),scrim_availability_aggregate?: (team_scrim_availability_aggregate_bool_exp | null),scrim_settings?: (team_scrim_settings_bool_exp | null),short_name?: (String_comparison_exp | null),tournament_teams?: (tournament_teams_bool_exp | null),tournament_teams_aggregate?: (tournament_teams_aggregate_bool_exp | null)} + + +/** input type for incrementing numeric columns in table "teams" */ +export interface teams_inc_input {captain_steam_id?: (Scalars['bigint'] | null),owner_steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "teams" */ +export interface teams_insert_input {avatar_url?: (Scalars['String'] | null),awards?: (award_recipients_arr_rel_insert_input | null),captain?: (players_obj_rel_insert_input | null),captain_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),invites?: (team_invites_arr_rel_insert_input | null),is_organization?: (Scalars['Boolean'] | null),match_lineups?: (match_lineups_arr_rel_insert_input | null),name?: (Scalars['String'] | null),owner?: (players_obj_rel_insert_input | null),owner_steam_id?: (Scalars['bigint'] | null),ranks?: (v_team_ranks_obj_rel_insert_input | null),reputation?: (v_team_reputation_obj_rel_insert_input | null),roster?: (team_roster_arr_rel_insert_input | null),scrim_availability?: (team_scrim_availability_arr_rel_insert_input | null),scrim_settings?: (team_scrim_settings_obj_rel_insert_input | null),short_name?: (Scalars['String'] | null),tournament_teams?: (tournament_teams_arr_rel_insert_input | null)} + + +/** aggregate max on columns */ +export interface teams_max_fieldsGenqlSelection{ + avatar_url?: boolean | number + captain_steam_id?: boolean | number + id?: boolean | number + name?: boolean | number + owner_steam_id?: boolean | number + /** A computed field, executes function "team_role" */ + role?: boolean | number + short_name?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "teams" */ +export interface teams_max_order_by {avatar_url?: (order_by | null),captain_steam_id?: (order_by | null),id?: (order_by | null),name?: (order_by | null),owner_steam_id?: (order_by | null),short_name?: (order_by | null)} + + +/** aggregate min on columns */ +export interface teams_min_fieldsGenqlSelection{ + avatar_url?: boolean | number + captain_steam_id?: boolean | number + id?: boolean | number + name?: boolean | number + owner_steam_id?: boolean | number + /** A computed field, executes function "team_role" */ + role?: boolean | number + short_name?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "teams" */ +export interface teams_min_order_by {avatar_url?: (order_by | null),captain_steam_id?: (order_by | null),id?: (order_by | null),name?: (order_by | null),owner_steam_id?: (order_by | null),short_name?: (order_by | null)} + + +/** response of any mutation on the table "teams" */ +export interface teams_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: teamsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "teams" */ +export interface teams_obj_rel_insert_input {data: teams_insert_input, +/** upsert condition */ +on_conflict?: (teams_on_conflict | null)} + + +/** on_conflict condition type for table "teams" */ +export interface teams_on_conflict {constraint: teams_constraint,update_columns?: teams_update_column[],where?: (teams_bool_exp | null)} + + +/** Ordering options when selecting data from "teams". */ +export interface teams_order_by {avatar_url?: (order_by | null),awards_aggregate?: (award_recipients_aggregate_order_by | null),can_change_role?: (order_by | null),can_invite?: (order_by | null),can_manage_scrims?: (order_by | null),can_remove?: (order_by | null),captain?: (players_order_by | null),captain_steam_id?: (order_by | null),id?: (order_by | null),invites_aggregate?: (team_invites_aggregate_order_by | null),is_organization?: (order_by | null),match_lineups_aggregate?: (match_lineups_aggregate_order_by | null),matches_aggregate?: (matches_aggregate_order_by | null),name?: (order_by | null),owner?: (players_order_by | null),owner_steam_id?: (order_by | null),ranks?: (v_team_ranks_order_by | null),reputation?: (v_team_reputation_order_by | null),role?: (order_by | null),roster_aggregate?: (team_roster_aggregate_order_by | null),scrim_availability_aggregate?: (team_scrim_availability_aggregate_order_by | null),scrim_settings?: (team_scrim_settings_order_by | null),short_name?: (order_by | null),tournament_teams_aggregate?: (tournament_teams_aggregate_order_by | null)} + + +/** primary key columns input for table: teams */ +export interface teams_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "teams" */ +export interface teams_set_input {avatar_url?: (Scalars['String'] | null),captain_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),is_organization?: (Scalars['Boolean'] | null),name?: (Scalars['String'] | null),owner_steam_id?: (Scalars['bigint'] | null),short_name?: (Scalars['String'] | null)} + + +/** aggregate stddev on columns */ +export interface teams_stddev_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + owner_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "teams" */ +export interface teams_stddev_order_by {captain_steam_id?: (order_by | null),owner_steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface teams_stddev_pop_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + owner_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "teams" */ +export interface teams_stddev_pop_order_by {captain_steam_id?: (order_by | null),owner_steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface teams_stddev_samp_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + owner_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "teams" */ +export interface teams_stddev_samp_order_by {captain_steam_id?: (order_by | null),owner_steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "teams" */ +export interface teams_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: teams_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface teams_stream_cursor_value_input {avatar_url?: (Scalars['String'] | null),captain_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),is_organization?: (Scalars['Boolean'] | null),name?: (Scalars['String'] | null),owner_steam_id?: (Scalars['bigint'] | null),short_name?: (Scalars['String'] | null)} + + +/** aggregate sum on columns */ +export interface teams_sum_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + owner_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "teams" */ +export interface teams_sum_order_by {captain_steam_id?: (order_by | null),owner_steam_id?: (order_by | null)} + +export interface teams_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (teams_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (teams_set_input | null), +/** filter the rows which have to be updated */ +where: teams_bool_exp} + + +/** aggregate var_pop on columns */ +export interface teams_var_pop_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + owner_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "teams" */ +export interface teams_var_pop_order_by {captain_steam_id?: (order_by | null),owner_steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface teams_var_samp_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + owner_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "teams" */ +export interface teams_var_samp_order_by {captain_steam_id?: (order_by | null),owner_steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface teams_variance_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + owner_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "teams" */ +export interface teams_variance_order_by {captain_steam_id?: (order_by | null),owner_steam_id?: (order_by | null)} + + +/** Boolean expression to compare columns of type "time". All fields are combined with logical 'AND'. */ +export interface time_comparison_exp {_eq?: (Scalars['time'] | null),_gt?: (Scalars['time'] | null),_gte?: (Scalars['time'] | null),_in?: (Scalars['time'][] | null),_is_null?: (Scalars['Boolean'] | null),_lt?: (Scalars['time'] | null),_lte?: (Scalars['time'] | null),_neq?: (Scalars['time'] | null),_nin?: (Scalars['time'][] | null)} + + +/** Boolean expression to compare columns of type "timestamptz". All fields are combined with logical 'AND'. */ +export interface timestamptz_comparison_exp {_eq?: (Scalars['timestamptz'] | null),_gt?: (Scalars['timestamptz'] | null),_gte?: (Scalars['timestamptz'] | null),_in?: (Scalars['timestamptz'][] | null),_is_null?: (Scalars['Boolean'] | null),_lt?: (Scalars['timestamptz'] | null),_lte?: (Scalars['timestamptz'] | null),_neq?: (Scalars['timestamptz'] | null),_nin?: (Scalars['timestamptz'][] | null)} + + +/** columns and relationships of "tournament_awards" */ +export interface tournament_awardsGenqlSelection{ + /** An object relationship */ + award?: awardsGenqlSelection + award_id?: boolean | number + created_at?: boolean | number + custom_name?: boolean | number + id?: boolean | number + image_url?: boolean | number + placement?: boolean | number + silhouette?: boolean | number + /** An object relationship */ + tournament?: tournamentsGenqlSelection + tournament_id?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "tournament_awards" */ +export interface tournament_awards_aggregateGenqlSelection{ + aggregate?: tournament_awards_aggregate_fieldsGenqlSelection + nodes?: tournament_awardsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface tournament_awards_aggregate_bool_exp {count?: (tournament_awards_aggregate_bool_exp_count | null)} + +export interface tournament_awards_aggregate_bool_exp_count {arguments?: (tournament_awards_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (tournament_awards_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "tournament_awards" */ +export interface tournament_awards_aggregate_fieldsGenqlSelection{ + avg?: tournament_awards_avg_fieldsGenqlSelection + count?: { __args: {columns?: (tournament_awards_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: tournament_awards_max_fieldsGenqlSelection + min?: tournament_awards_min_fieldsGenqlSelection + stddev?: tournament_awards_stddev_fieldsGenqlSelection + stddev_pop?: tournament_awards_stddev_pop_fieldsGenqlSelection + stddev_samp?: tournament_awards_stddev_samp_fieldsGenqlSelection + sum?: tournament_awards_sum_fieldsGenqlSelection + var_pop?: tournament_awards_var_pop_fieldsGenqlSelection + var_samp?: tournament_awards_var_samp_fieldsGenqlSelection + variance?: tournament_awards_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "tournament_awards" */ +export interface tournament_awards_aggregate_order_by {avg?: (tournament_awards_avg_order_by | null),count?: (order_by | null),max?: (tournament_awards_max_order_by | null),min?: (tournament_awards_min_order_by | null),stddev?: (tournament_awards_stddev_order_by | null),stddev_pop?: (tournament_awards_stddev_pop_order_by | null),stddev_samp?: (tournament_awards_stddev_samp_order_by | null),sum?: (tournament_awards_sum_order_by | null),var_pop?: (tournament_awards_var_pop_order_by | null),var_samp?: (tournament_awards_var_samp_order_by | null),variance?: (tournament_awards_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "tournament_awards" */ +export interface tournament_awards_arr_rel_insert_input {data: tournament_awards_insert_input[], +/** upsert condition */ +on_conflict?: (tournament_awards_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface tournament_awards_avg_fieldsGenqlSelection{ + placement?: boolean | number + silhouette?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "tournament_awards" */ +export interface tournament_awards_avg_order_by {placement?: (order_by | null),silhouette?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "tournament_awards". All fields are combined with a logical 'AND'. */ +export interface tournament_awards_bool_exp {_and?: (tournament_awards_bool_exp[] | null),_not?: (tournament_awards_bool_exp | null),_or?: (tournament_awards_bool_exp[] | null),award?: (awards_bool_exp | null),award_id?: (uuid_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),custom_name?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),image_url?: (String_comparison_exp | null),placement?: (Int_comparison_exp | null),silhouette?: (Int_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "tournament_awards" */ +export interface tournament_awards_inc_input {placement?: (Scalars['Int'] | null),silhouette?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "tournament_awards" */ +export interface tournament_awards_insert_input {award?: (awards_obj_rel_insert_input | null),award_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),custom_name?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),image_url?: (Scalars['String'] | null),placement?: (Scalars['Int'] | null),silhouette?: (Scalars['Int'] | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate max on columns */ +export interface tournament_awards_max_fieldsGenqlSelection{ + award_id?: boolean | number + created_at?: boolean | number + custom_name?: boolean | number + id?: boolean | number + image_url?: boolean | number + placement?: boolean | number + silhouette?: boolean | number + tournament_id?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "tournament_awards" */ +export interface tournament_awards_max_order_by {award_id?: (order_by | null),created_at?: (order_by | null),custom_name?: (order_by | null),id?: (order_by | null),image_url?: (order_by | null),placement?: (order_by | null),silhouette?: (order_by | null),tournament_id?: (order_by | null),updated_at?: (order_by | null)} + + +/** aggregate min on columns */ +export interface tournament_awards_min_fieldsGenqlSelection{ + award_id?: boolean | number + created_at?: boolean | number + custom_name?: boolean | number + id?: boolean | number + image_url?: boolean | number + placement?: boolean | number + silhouette?: boolean | number + tournament_id?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "tournament_awards" */ +export interface tournament_awards_min_order_by {award_id?: (order_by | null),created_at?: (order_by | null),custom_name?: (order_by | null),id?: (order_by | null),image_url?: (order_by | null),placement?: (order_by | null),silhouette?: (order_by | null),tournament_id?: (order_by | null),updated_at?: (order_by | null)} + + +/** response of any mutation on the table "tournament_awards" */ +export interface tournament_awards_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: tournament_awardsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "tournament_awards" */ +export interface tournament_awards_obj_rel_insert_input {data: tournament_awards_insert_input, +/** upsert condition */ +on_conflict?: (tournament_awards_on_conflict | null)} + + +/** on_conflict condition type for table "tournament_awards" */ +export interface tournament_awards_on_conflict {constraint: tournament_awards_constraint,update_columns?: tournament_awards_update_column[],where?: (tournament_awards_bool_exp | null)} + + +/** Ordering options when selecting data from "tournament_awards". */ +export interface tournament_awards_order_by {award?: (awards_order_by | null),award_id?: (order_by | null),created_at?: (order_by | null),custom_name?: (order_by | null),id?: (order_by | null),image_url?: (order_by | null),placement?: (order_by | null),silhouette?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null),updated_at?: (order_by | null)} + + +/** primary key columns input for table: tournament_awards */ +export interface tournament_awards_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "tournament_awards" */ +export interface tournament_awards_set_input {award_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),custom_name?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),image_url?: (Scalars['String'] | null),placement?: (Scalars['Int'] | null),silhouette?: (Scalars['Int'] | null),tournament_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate stddev on columns */ +export interface tournament_awards_stddev_fieldsGenqlSelection{ + placement?: boolean | number + silhouette?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "tournament_awards" */ +export interface tournament_awards_stddev_order_by {placement?: (order_by | null),silhouette?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface tournament_awards_stddev_pop_fieldsGenqlSelection{ + placement?: boolean | number + silhouette?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "tournament_awards" */ +export interface tournament_awards_stddev_pop_order_by {placement?: (order_by | null),silhouette?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface tournament_awards_stddev_samp_fieldsGenqlSelection{ + placement?: boolean | number + silhouette?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "tournament_awards" */ +export interface tournament_awards_stddev_samp_order_by {placement?: (order_by | null),silhouette?: (order_by | null)} + + +/** Streaming cursor of the table "tournament_awards" */ +export interface tournament_awards_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: tournament_awards_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface tournament_awards_stream_cursor_value_input {award_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),custom_name?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),image_url?: (Scalars['String'] | null),placement?: (Scalars['Int'] | null),silhouette?: (Scalars['Int'] | null),tournament_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate sum on columns */ +export interface tournament_awards_sum_fieldsGenqlSelection{ + placement?: boolean | number + silhouette?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "tournament_awards" */ +export interface tournament_awards_sum_order_by {placement?: (order_by | null),silhouette?: (order_by | null)} + +export interface tournament_awards_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (tournament_awards_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (tournament_awards_set_input | null), +/** filter the rows which have to be updated */ +where: tournament_awards_bool_exp} + + +/** aggregate var_pop on columns */ +export interface tournament_awards_var_pop_fieldsGenqlSelection{ + placement?: boolean | number + silhouette?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "tournament_awards" */ +export interface tournament_awards_var_pop_order_by {placement?: (order_by | null),silhouette?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface tournament_awards_var_samp_fieldsGenqlSelection{ + placement?: boolean | number + silhouette?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "tournament_awards" */ +export interface tournament_awards_var_samp_order_by {placement?: (order_by | null),silhouette?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface tournament_awards_variance_fieldsGenqlSelection{ + placement?: boolean | number + silhouette?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "tournament_awards" */ +export interface tournament_awards_variance_order_by {placement?: (order_by | null),silhouette?: (order_by | null)} + + +/** columns and relationships of "tournament_brackets" */ +export interface tournament_bracketsGenqlSelection{ + bye?: boolean | number + created_at?: boolean | number + /** A computed field, executes function "get_feeding_brackets" */ + feeding_brackets?: (tournament_bracketsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_brackets_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_brackets_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_brackets_bool_exp | null)} }) + finished?: boolean | number + group?: boolean | number + id?: boolean | number + /** An object relationship */ + loser_bracket?: tournament_bracketsGenqlSelection + loser_parent_bracket_id?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + match_id?: boolean | number + match_number?: boolean | number + match_options_id?: boolean | number + /** An object relationship */ + options?: match_optionsGenqlSelection + /** An object relationship */ + parent_bracket?: tournament_bracketsGenqlSelection + parent_bracket_id?: boolean | number + path?: boolean | number + round?: boolean | number + scheduled_at?: boolean | number + scheduled_eta?: boolean | number + /** An array relationship */ + scheduling_proposals?: (league_scheduling_proposalsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_scheduling_proposals_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_scheduling_proposals_order_by[] | null), + /** filter the rows returned */ + where?: (league_scheduling_proposals_bool_exp | null)} }) + /** An aggregate relationship */ + scheduling_proposals_aggregate?: (league_scheduling_proposals_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (league_scheduling_proposals_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (league_scheduling_proposals_order_by[] | null), + /** filter the rows returned */ + where?: (league_scheduling_proposals_bool_exp | null)} }) + /** An object relationship */ + stage?: tournament_stagesGenqlSelection + /** An object relationship */ + team_1?: tournament_teamsGenqlSelection + team_1_seed?: boolean | number + /** An object relationship */ + team_2?: tournament_teamsGenqlSelection + team_2_seed?: boolean | number + tournament_stage_id?: boolean | number + tournament_team_id_1?: boolean | number + tournament_team_id_2?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "tournament_brackets" */ +export interface tournament_brackets_aggregateGenqlSelection{ + aggregate?: tournament_brackets_aggregate_fieldsGenqlSelection + nodes?: tournament_bracketsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface tournament_brackets_aggregate_bool_exp {bool_and?: (tournament_brackets_aggregate_bool_exp_bool_and | null),bool_or?: (tournament_brackets_aggregate_bool_exp_bool_or | null),count?: (tournament_brackets_aggregate_bool_exp_count | null)} + +export interface tournament_brackets_aggregate_bool_exp_bool_and {arguments: tournament_brackets_select_column_tournament_brackets_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (tournament_brackets_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface tournament_brackets_aggregate_bool_exp_bool_or {arguments: tournament_brackets_select_column_tournament_brackets_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (tournament_brackets_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface tournament_brackets_aggregate_bool_exp_count {arguments?: (tournament_brackets_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (tournament_brackets_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "tournament_brackets" */ +export interface tournament_brackets_aggregate_fieldsGenqlSelection{ + avg?: tournament_brackets_avg_fieldsGenqlSelection + count?: { __args: {columns?: (tournament_brackets_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: tournament_brackets_max_fieldsGenqlSelection + min?: tournament_brackets_min_fieldsGenqlSelection + stddev?: tournament_brackets_stddev_fieldsGenqlSelection + stddev_pop?: tournament_brackets_stddev_pop_fieldsGenqlSelection + stddev_samp?: tournament_brackets_stddev_samp_fieldsGenqlSelection + sum?: tournament_brackets_sum_fieldsGenqlSelection + var_pop?: tournament_brackets_var_pop_fieldsGenqlSelection + var_samp?: tournament_brackets_var_samp_fieldsGenqlSelection + variance?: tournament_brackets_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "tournament_brackets" */ +export interface tournament_brackets_aggregate_order_by {avg?: (tournament_brackets_avg_order_by | null),count?: (order_by | null),max?: (tournament_brackets_max_order_by | null),min?: (tournament_brackets_min_order_by | null),stddev?: (tournament_brackets_stddev_order_by | null),stddev_pop?: (tournament_brackets_stddev_pop_order_by | null),stddev_samp?: (tournament_brackets_stddev_samp_order_by | null),sum?: (tournament_brackets_sum_order_by | null),var_pop?: (tournament_brackets_var_pop_order_by | null),var_samp?: (tournament_brackets_var_samp_order_by | null),variance?: (tournament_brackets_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "tournament_brackets" */ +export interface tournament_brackets_arr_rel_insert_input {data: tournament_brackets_insert_input[], +/** upsert condition */ +on_conflict?: (tournament_brackets_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface tournament_brackets_avg_fieldsGenqlSelection{ + group?: boolean | number + match_number?: boolean | number + round?: boolean | number + team_1_seed?: boolean | number + team_2_seed?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "tournament_brackets" */ +export interface tournament_brackets_avg_order_by {group?: (order_by | null),match_number?: (order_by | null),round?: (order_by | null),team_1_seed?: (order_by | null),team_2_seed?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "tournament_brackets". All fields are combined with a logical 'AND'. */ +export interface tournament_brackets_bool_exp {_and?: (tournament_brackets_bool_exp[] | null),_not?: (tournament_brackets_bool_exp | null),_or?: (tournament_brackets_bool_exp[] | null),bye?: (Boolean_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),feeding_brackets?: (tournament_brackets_bool_exp | null),finished?: (Boolean_comparison_exp | null),group?: (numeric_comparison_exp | null),id?: (uuid_comparison_exp | null),loser_bracket?: (tournament_brackets_bool_exp | null),loser_parent_bracket_id?: (uuid_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_number?: (Int_comparison_exp | null),match_options_id?: (uuid_comparison_exp | null),options?: (match_options_bool_exp | null),parent_bracket?: (tournament_brackets_bool_exp | null),parent_bracket_id?: (uuid_comparison_exp | null),path?: (String_comparison_exp | null),round?: (Int_comparison_exp | null),scheduled_at?: (timestamptz_comparison_exp | null),scheduled_eta?: (timestamptz_comparison_exp | null),scheduling_proposals?: (league_scheduling_proposals_bool_exp | null),scheduling_proposals_aggregate?: (league_scheduling_proposals_aggregate_bool_exp | null),stage?: (tournament_stages_bool_exp | null),team_1?: (tournament_teams_bool_exp | null),team_1_seed?: (Int_comparison_exp | null),team_2?: (tournament_teams_bool_exp | null),team_2_seed?: (Int_comparison_exp | null),tournament_stage_id?: (uuid_comparison_exp | null),tournament_team_id_1?: (uuid_comparison_exp | null),tournament_team_id_2?: (uuid_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "tournament_brackets" */ +export interface tournament_brackets_inc_input {group?: (Scalars['numeric'] | null),match_number?: (Scalars['Int'] | null),round?: (Scalars['Int'] | null),team_1_seed?: (Scalars['Int'] | null),team_2_seed?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "tournament_brackets" */ +export interface tournament_brackets_insert_input {bye?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),finished?: (Scalars['Boolean'] | null),group?: (Scalars['numeric'] | null),id?: (Scalars['uuid'] | null),loser_bracket?: (tournament_brackets_obj_rel_insert_input | null),loser_parent_bracket_id?: (Scalars['uuid'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_number?: (Scalars['Int'] | null),match_options_id?: (Scalars['uuid'] | null),options?: (match_options_obj_rel_insert_input | null),parent_bracket?: (tournament_brackets_obj_rel_insert_input | null),parent_bracket_id?: (Scalars['uuid'] | null),path?: (Scalars['String'] | null),round?: (Scalars['Int'] | null),scheduled_at?: (Scalars['timestamptz'] | null),scheduled_eta?: (Scalars['timestamptz'] | null),scheduling_proposals?: (league_scheduling_proposals_arr_rel_insert_input | null),stage?: (tournament_stages_obj_rel_insert_input | null),team_1?: (tournament_teams_obj_rel_insert_input | null),team_1_seed?: (Scalars['Int'] | null),team_2?: (tournament_teams_obj_rel_insert_input | null),team_2_seed?: (Scalars['Int'] | null),tournament_stage_id?: (Scalars['uuid'] | null),tournament_team_id_1?: (Scalars['uuid'] | null),tournament_team_id_2?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface tournament_brackets_max_fieldsGenqlSelection{ + created_at?: boolean | number + group?: boolean | number + id?: boolean | number + loser_parent_bracket_id?: boolean | number + match_id?: boolean | number + match_number?: boolean | number + match_options_id?: boolean | number + parent_bracket_id?: boolean | number + path?: boolean | number + round?: boolean | number + scheduled_at?: boolean | number + scheduled_eta?: boolean | number + team_1_seed?: boolean | number + team_2_seed?: boolean | number + tournament_stage_id?: boolean | number + tournament_team_id_1?: boolean | number + tournament_team_id_2?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "tournament_brackets" */ +export interface tournament_brackets_max_order_by {created_at?: (order_by | null),group?: (order_by | null),id?: (order_by | null),loser_parent_bracket_id?: (order_by | null),match_id?: (order_by | null),match_number?: (order_by | null),match_options_id?: (order_by | null),parent_bracket_id?: (order_by | null),path?: (order_by | null),round?: (order_by | null),scheduled_at?: (order_by | null),scheduled_eta?: (order_by | null),team_1_seed?: (order_by | null),team_2_seed?: (order_by | null),tournament_stage_id?: (order_by | null),tournament_team_id_1?: (order_by | null),tournament_team_id_2?: (order_by | null)} + + +/** aggregate min on columns */ +export interface tournament_brackets_min_fieldsGenqlSelection{ + created_at?: boolean | number + group?: boolean | number + id?: boolean | number + loser_parent_bracket_id?: boolean | number + match_id?: boolean | number + match_number?: boolean | number + match_options_id?: boolean | number + parent_bracket_id?: boolean | number + path?: boolean | number + round?: boolean | number + scheduled_at?: boolean | number + scheduled_eta?: boolean | number + team_1_seed?: boolean | number + team_2_seed?: boolean | number + tournament_stage_id?: boolean | number + tournament_team_id_1?: boolean | number + tournament_team_id_2?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "tournament_brackets" */ +export interface tournament_brackets_min_order_by {created_at?: (order_by | null),group?: (order_by | null),id?: (order_by | null),loser_parent_bracket_id?: (order_by | null),match_id?: (order_by | null),match_number?: (order_by | null),match_options_id?: (order_by | null),parent_bracket_id?: (order_by | null),path?: (order_by | null),round?: (order_by | null),scheduled_at?: (order_by | null),scheduled_eta?: (order_by | null),team_1_seed?: (order_by | null),team_2_seed?: (order_by | null),tournament_stage_id?: (order_by | null),tournament_team_id_1?: (order_by | null),tournament_team_id_2?: (order_by | null)} + + +/** response of any mutation on the table "tournament_brackets" */ +export interface tournament_brackets_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: tournament_bracketsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "tournament_brackets" */ +export interface tournament_brackets_obj_rel_insert_input {data: tournament_brackets_insert_input, +/** upsert condition */ +on_conflict?: (tournament_brackets_on_conflict | null)} + + +/** on_conflict condition type for table "tournament_brackets" */ +export interface tournament_brackets_on_conflict {constraint: tournament_brackets_constraint,update_columns?: tournament_brackets_update_column[],where?: (tournament_brackets_bool_exp | null)} + + +/** Ordering options when selecting data from "tournament_brackets". */ +export interface tournament_brackets_order_by {bye?: (order_by | null),created_at?: (order_by | null),feeding_brackets_aggregate?: (tournament_brackets_aggregate_order_by | null),finished?: (order_by | null),group?: (order_by | null),id?: (order_by | null),loser_bracket?: (tournament_brackets_order_by | null),loser_parent_bracket_id?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_number?: (order_by | null),match_options_id?: (order_by | null),options?: (match_options_order_by | null),parent_bracket?: (tournament_brackets_order_by | null),parent_bracket_id?: (order_by | null),path?: (order_by | null),round?: (order_by | null),scheduled_at?: (order_by | null),scheduled_eta?: (order_by | null),scheduling_proposals_aggregate?: (league_scheduling_proposals_aggregate_order_by | null),stage?: (tournament_stages_order_by | null),team_1?: (tournament_teams_order_by | null),team_1_seed?: (order_by | null),team_2?: (tournament_teams_order_by | null),team_2_seed?: (order_by | null),tournament_stage_id?: (order_by | null),tournament_team_id_1?: (order_by | null),tournament_team_id_2?: (order_by | null)} + + +/** primary key columns input for table: tournament_brackets */ +export interface tournament_brackets_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "tournament_brackets" */ +export interface tournament_brackets_set_input {bye?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),finished?: (Scalars['Boolean'] | null),group?: (Scalars['numeric'] | null),id?: (Scalars['uuid'] | null),loser_parent_bracket_id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),match_number?: (Scalars['Int'] | null),match_options_id?: (Scalars['uuid'] | null),parent_bracket_id?: (Scalars['uuid'] | null),path?: (Scalars['String'] | null),round?: (Scalars['Int'] | null),scheduled_at?: (Scalars['timestamptz'] | null),scheduled_eta?: (Scalars['timestamptz'] | null),team_1_seed?: (Scalars['Int'] | null),team_2_seed?: (Scalars['Int'] | null),tournament_stage_id?: (Scalars['uuid'] | null),tournament_team_id_1?: (Scalars['uuid'] | null),tournament_team_id_2?: (Scalars['uuid'] | null)} + + +/** aggregate stddev on columns */ +export interface tournament_brackets_stddev_fieldsGenqlSelection{ + group?: boolean | number + match_number?: boolean | number + round?: boolean | number + team_1_seed?: boolean | number + team_2_seed?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "tournament_brackets" */ +export interface tournament_brackets_stddev_order_by {group?: (order_by | null),match_number?: (order_by | null),round?: (order_by | null),team_1_seed?: (order_by | null),team_2_seed?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface tournament_brackets_stddev_pop_fieldsGenqlSelection{ + group?: boolean | number + match_number?: boolean | number + round?: boolean | number + team_1_seed?: boolean | number + team_2_seed?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "tournament_brackets" */ +export interface tournament_brackets_stddev_pop_order_by {group?: (order_by | null),match_number?: (order_by | null),round?: (order_by | null),team_1_seed?: (order_by | null),team_2_seed?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface tournament_brackets_stddev_samp_fieldsGenqlSelection{ + group?: boolean | number + match_number?: boolean | number + round?: boolean | number + team_1_seed?: boolean | number + team_2_seed?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "tournament_brackets" */ +export interface tournament_brackets_stddev_samp_order_by {group?: (order_by | null),match_number?: (order_by | null),round?: (order_by | null),team_1_seed?: (order_by | null),team_2_seed?: (order_by | null)} + + +/** Streaming cursor of the table "tournament_brackets" */ +export interface tournament_brackets_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: tournament_brackets_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface tournament_brackets_stream_cursor_value_input {bye?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),finished?: (Scalars['Boolean'] | null),group?: (Scalars['numeric'] | null),id?: (Scalars['uuid'] | null),loser_parent_bracket_id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),match_number?: (Scalars['Int'] | null),match_options_id?: (Scalars['uuid'] | null),parent_bracket_id?: (Scalars['uuid'] | null),path?: (Scalars['String'] | null),round?: (Scalars['Int'] | null),scheduled_at?: (Scalars['timestamptz'] | null),scheduled_eta?: (Scalars['timestamptz'] | null),team_1_seed?: (Scalars['Int'] | null),team_2_seed?: (Scalars['Int'] | null),tournament_stage_id?: (Scalars['uuid'] | null),tournament_team_id_1?: (Scalars['uuid'] | null),tournament_team_id_2?: (Scalars['uuid'] | null)} + + +/** aggregate sum on columns */ +export interface tournament_brackets_sum_fieldsGenqlSelection{ + group?: boolean | number + match_number?: boolean | number + round?: boolean | number + team_1_seed?: boolean | number + team_2_seed?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "tournament_brackets" */ +export interface tournament_brackets_sum_order_by {group?: (order_by | null),match_number?: (order_by | null),round?: (order_by | null),team_1_seed?: (order_by | null),team_2_seed?: (order_by | null)} + +export interface tournament_brackets_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (tournament_brackets_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (tournament_brackets_set_input | null), +/** filter the rows which have to be updated */ +where: tournament_brackets_bool_exp} + + +/** aggregate var_pop on columns */ +export interface tournament_brackets_var_pop_fieldsGenqlSelection{ + group?: boolean | number + match_number?: boolean | number + round?: boolean | number + team_1_seed?: boolean | number + team_2_seed?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "tournament_brackets" */ +export interface tournament_brackets_var_pop_order_by {group?: (order_by | null),match_number?: (order_by | null),round?: (order_by | null),team_1_seed?: (order_by | null),team_2_seed?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface tournament_brackets_var_samp_fieldsGenqlSelection{ + group?: boolean | number + match_number?: boolean | number + round?: boolean | number + team_1_seed?: boolean | number + team_2_seed?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "tournament_brackets" */ +export interface tournament_brackets_var_samp_order_by {group?: (order_by | null),match_number?: (order_by | null),round?: (order_by | null),team_1_seed?: (order_by | null),team_2_seed?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface tournament_brackets_variance_fieldsGenqlSelection{ + group?: boolean | number + match_number?: boolean | number + round?: boolean | number + team_1_seed?: boolean | number + team_2_seed?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "tournament_brackets" */ +export interface tournament_brackets_variance_order_by {group?: (order_by | null),match_number?: (order_by | null),round?: (order_by | null),team_1_seed?: (order_by | null),team_2_seed?: (order_by | null)} + + +/** columns and relationships of "tournament_categories" */ +export interface tournament_categoriesGenqlSelection{ + category?: boolean | number + /** An object relationship */ + e_tournament_category?: e_tournament_categoriesGenqlSelection + /** An object relationship */ + tournament?: tournamentsGenqlSelection + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "tournament_categories" */ +export interface tournament_categories_aggregateGenqlSelection{ + aggregate?: tournament_categories_aggregate_fieldsGenqlSelection + nodes?: tournament_categoriesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface tournament_categories_aggregate_bool_exp {count?: (tournament_categories_aggregate_bool_exp_count | null)} + +export interface tournament_categories_aggregate_bool_exp_count {arguments?: (tournament_categories_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (tournament_categories_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "tournament_categories" */ +export interface tournament_categories_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (tournament_categories_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: tournament_categories_max_fieldsGenqlSelection + min?: tournament_categories_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "tournament_categories" */ +export interface tournament_categories_aggregate_order_by {count?: (order_by | null),max?: (tournament_categories_max_order_by | null),min?: (tournament_categories_min_order_by | null)} + + +/** input type for inserting array relation for remote table "tournament_categories" */ +export interface tournament_categories_arr_rel_insert_input {data: tournament_categories_insert_input[], +/** upsert condition */ +on_conflict?: (tournament_categories_on_conflict | null)} + + +/** Boolean expression to filter rows from the table "tournament_categories". All fields are combined with a logical 'AND'. */ +export interface tournament_categories_bool_exp {_and?: (tournament_categories_bool_exp[] | null),_not?: (tournament_categories_bool_exp | null),_or?: (tournament_categories_bool_exp[] | null),category?: (e_tournament_categories_enum_comparison_exp | null),e_tournament_category?: (e_tournament_categories_bool_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null)} + + +/** input type for inserting data into table "tournament_categories" */ +export interface tournament_categories_insert_input {category?: (e_tournament_categories_enum | null),e_tournament_category?: (e_tournament_categories_obj_rel_insert_input | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface tournament_categories_max_fieldsGenqlSelection{ + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "tournament_categories" */ +export interface tournament_categories_max_order_by {tournament_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface tournament_categories_min_fieldsGenqlSelection{ + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "tournament_categories" */ +export interface tournament_categories_min_order_by {tournament_id?: (order_by | null)} + + +/** response of any mutation on the table "tournament_categories" */ +export interface tournament_categories_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: tournament_categoriesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "tournament_categories" */ +export interface tournament_categories_on_conflict {constraint: tournament_categories_constraint,update_columns?: tournament_categories_update_column[],where?: (tournament_categories_bool_exp | null)} + + +/** Ordering options when selecting data from "tournament_categories". */ +export interface tournament_categories_order_by {category?: (order_by | null),e_tournament_category?: (e_tournament_categories_order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null)} + + +/** primary key columns input for table: tournament_categories */ +export interface tournament_categories_pk_columns_input {category: e_tournament_categories_enum,tournament_id: Scalars['uuid']} + + +/** input type for updating data in table "tournament_categories" */ +export interface tournament_categories_set_input {category?: (e_tournament_categories_enum | null),tournament_id?: (Scalars['uuid'] | null)} + + +/** Streaming cursor of the table "tournament_categories" */ +export interface tournament_categories_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: tournament_categories_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface tournament_categories_stream_cursor_value_input {category?: (e_tournament_categories_enum | null),tournament_id?: (Scalars['uuid'] | null)} + +export interface tournament_categories_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (tournament_categories_set_input | null), +/** filter the rows which have to be updated */ +where: tournament_categories_bool_exp} + + +/** columns and relationships of "tournament_free_agents" */ +export interface tournament_free_agentsGenqlSelection{ + checked_in_at?: boolean | number + /** Registration priority: decides who makes the cut */ + created_at?: boolean | number + /** An object relationship */ + e_tournament_free_agent_status?: e_tournament_free_agent_statusesGenqlSelection + id?: boolean | number + party_id?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + player_steam_id?: boolean | number + status?: boolean | number + /** An object relationship */ + tournament?: tournamentsGenqlSelection + tournament_id?: boolean | number + /** An object relationship */ + tournament_team?: tournament_teamsGenqlSelection + tournament_team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "tournament_free_agents" */ +export interface tournament_free_agents_aggregateGenqlSelection{ + aggregate?: tournament_free_agents_aggregate_fieldsGenqlSelection + nodes?: tournament_free_agentsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface tournament_free_agents_aggregate_bool_exp {count?: (tournament_free_agents_aggregate_bool_exp_count | null)} + +export interface tournament_free_agents_aggregate_bool_exp_count {arguments?: (tournament_free_agents_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (tournament_free_agents_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "tournament_free_agents" */ +export interface tournament_free_agents_aggregate_fieldsGenqlSelection{ + avg?: tournament_free_agents_avg_fieldsGenqlSelection + count?: { __args: {columns?: (tournament_free_agents_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: tournament_free_agents_max_fieldsGenqlSelection + min?: tournament_free_agents_min_fieldsGenqlSelection + stddev?: tournament_free_agents_stddev_fieldsGenqlSelection + stddev_pop?: tournament_free_agents_stddev_pop_fieldsGenqlSelection + stddev_samp?: tournament_free_agents_stddev_samp_fieldsGenqlSelection + sum?: tournament_free_agents_sum_fieldsGenqlSelection + var_pop?: tournament_free_agents_var_pop_fieldsGenqlSelection + var_samp?: tournament_free_agents_var_samp_fieldsGenqlSelection + variance?: tournament_free_agents_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "tournament_free_agents" */ +export interface tournament_free_agents_aggregate_order_by {avg?: (tournament_free_agents_avg_order_by | null),count?: (order_by | null),max?: (tournament_free_agents_max_order_by | null),min?: (tournament_free_agents_min_order_by | null),stddev?: (tournament_free_agents_stddev_order_by | null),stddev_pop?: (tournament_free_agents_stddev_pop_order_by | null),stddev_samp?: (tournament_free_agents_stddev_samp_order_by | null),sum?: (tournament_free_agents_sum_order_by | null),var_pop?: (tournament_free_agents_var_pop_order_by | null),var_samp?: (tournament_free_agents_var_samp_order_by | null),variance?: (tournament_free_agents_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "tournament_free_agents" */ +export interface tournament_free_agents_arr_rel_insert_input {data: tournament_free_agents_insert_input[], +/** upsert condition */ +on_conflict?: (tournament_free_agents_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface tournament_free_agents_avg_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "tournament_free_agents" */ +export interface tournament_free_agents_avg_order_by {player_steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "tournament_free_agents". All fields are combined with a logical 'AND'. */ +export interface tournament_free_agents_bool_exp {_and?: (tournament_free_agents_bool_exp[] | null),_not?: (tournament_free_agents_bool_exp | null),_or?: (tournament_free_agents_bool_exp[] | null),checked_in_at?: (timestamptz_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),e_tournament_free_agent_status?: (e_tournament_free_agent_statuses_bool_exp | null),id?: (uuid_comparison_exp | null),party_id?: (uuid_comparison_exp | null),player?: (players_bool_exp | null),player_steam_id?: (bigint_comparison_exp | null),status?: (e_tournament_free_agent_statuses_enum_comparison_exp | null),tournament?: (tournaments_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 "tournament_free_agents" */ +export interface tournament_free_agents_inc_input {player_steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "tournament_free_agents" */ +export interface tournament_free_agents_insert_input {checked_in_at?: (Scalars['timestamptz'] | null), +/** Registration priority: decides who makes the cut */ +created_at?: (Scalars['timestamptz'] | null),e_tournament_free_agent_status?: (e_tournament_free_agent_statuses_obj_rel_insert_input | null),id?: (Scalars['uuid'] | null),party_id?: (Scalars['uuid'] | null),player?: (players_obj_rel_insert_input | null),player_steam_id?: (Scalars['bigint'] | null),status?: (e_tournament_free_agent_statuses_enum | null),tournament?: (tournaments_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 tournament_free_agents_max_fieldsGenqlSelection{ + checked_in_at?: boolean | number + /** Registration priority: decides who makes the cut */ + created_at?: boolean | number + id?: boolean | number + party_id?: boolean | number + player_steam_id?: boolean | number + tournament_id?: boolean | number + tournament_team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "tournament_free_agents" */ +export interface tournament_free_agents_max_order_by {checked_in_at?: (order_by | null), +/** Registration priority: decides who makes the cut */ +created_at?: (order_by | null),id?: (order_by | null),party_id?: (order_by | null),player_steam_id?: (order_by | null),tournament_id?: (order_by | null),tournament_team_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface tournament_free_agents_min_fieldsGenqlSelection{ + checked_in_at?: boolean | number + /** Registration priority: decides who makes the cut */ + created_at?: boolean | number + id?: boolean | number + party_id?: boolean | number + player_steam_id?: boolean | number + tournament_id?: boolean | number + tournament_team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "tournament_free_agents" */ +export interface tournament_free_agents_min_order_by {checked_in_at?: (order_by | null), +/** Registration priority: decides who makes the cut */ +created_at?: (order_by | null),id?: (order_by | null),party_id?: (order_by | null),player_steam_id?: (order_by | null),tournament_id?: (order_by | null),tournament_team_id?: (order_by | null)} + + +/** response of any mutation on the table "tournament_free_agents" */ +export interface tournament_free_agents_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: tournament_free_agentsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "tournament_free_agents" */ +export interface tournament_free_agents_on_conflict {constraint: tournament_free_agents_constraint,update_columns?: tournament_free_agents_update_column[],where?: (tournament_free_agents_bool_exp | null)} + + +/** Ordering options when selecting data from "tournament_free_agents". */ +export interface tournament_free_agents_order_by {checked_in_at?: (order_by | null),created_at?: (order_by | null),e_tournament_free_agent_status?: (e_tournament_free_agent_statuses_order_by | null),id?: (order_by | null),party_id?: (order_by | null),player?: (players_order_by | null),player_steam_id?: (order_by | null),status?: (order_by | null),tournament?: (tournaments_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: tournament_free_agents */ +export interface tournament_free_agents_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "tournament_free_agents" */ +export interface tournament_free_agents_set_input {checked_in_at?: (Scalars['timestamptz'] | null), +/** Registration priority: decides who makes the cut */ +created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),party_id?: (Scalars['uuid'] | null),player_steam_id?: (Scalars['bigint'] | null),status?: (e_tournament_free_agent_statuses_enum | null),tournament_id?: (Scalars['uuid'] | null),tournament_team_id?: (Scalars['uuid'] | null)} + + +/** aggregate stddev on columns */ +export interface tournament_free_agents_stddev_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "tournament_free_agents" */ +export interface tournament_free_agents_stddev_order_by {player_steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface tournament_free_agents_stddev_pop_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "tournament_free_agents" */ +export interface tournament_free_agents_stddev_pop_order_by {player_steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface tournament_free_agents_stddev_samp_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "tournament_free_agents" */ +export interface tournament_free_agents_stddev_samp_order_by {player_steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "tournament_free_agents" */ +export interface tournament_free_agents_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: tournament_free_agents_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface tournament_free_agents_stream_cursor_value_input {checked_in_at?: (Scalars['timestamptz'] | null), +/** Registration priority: decides who makes the cut */ +created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),party_id?: (Scalars['uuid'] | null),player_steam_id?: (Scalars['bigint'] | null),status?: (e_tournament_free_agent_statuses_enum | null),tournament_id?: (Scalars['uuid'] | null),tournament_team_id?: (Scalars['uuid'] | null)} + + +/** aggregate sum on columns */ +export interface tournament_free_agents_sum_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "tournament_free_agents" */ +export interface tournament_free_agents_sum_order_by {player_steam_id?: (order_by | null)} + +export interface tournament_free_agents_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (tournament_free_agents_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (tournament_free_agents_set_input | null), +/** filter the rows which have to be updated */ +where: tournament_free_agents_bool_exp} + + +/** aggregate var_pop on columns */ +export interface tournament_free_agents_var_pop_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "tournament_free_agents" */ +export interface tournament_free_agents_var_pop_order_by {player_steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface tournament_free_agents_var_samp_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "tournament_free_agents" */ +export interface tournament_free_agents_var_samp_order_by {player_steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface tournament_free_agents_variance_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "tournament_free_agents" */ +export interface tournament_free_agents_variance_order_by {player_steam_id?: (order_by | null)} + + +/** columns and relationships of "tournament_invite_code_uses" */ +export interface tournament_invite_code_usesGenqlSelection{ + /** An object relationship */ + invite_code?: tournament_invite_codesGenqlSelection + invite_code_id?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + player_steam_id?: boolean | number + /** An object relationship */ + team?: teamsGenqlSelection + team_id?: boolean | number + used_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "tournament_invite_code_uses" */ +export interface tournament_invite_code_uses_aggregateGenqlSelection{ + aggregate?: tournament_invite_code_uses_aggregate_fieldsGenqlSelection + nodes?: tournament_invite_code_usesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface tournament_invite_code_uses_aggregate_bool_exp {count?: (tournament_invite_code_uses_aggregate_bool_exp_count | null)} + +export interface tournament_invite_code_uses_aggregate_bool_exp_count {arguments?: (tournament_invite_code_uses_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (tournament_invite_code_uses_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "tournament_invite_code_uses" */ +export interface tournament_invite_code_uses_aggregate_fieldsGenqlSelection{ + avg?: tournament_invite_code_uses_avg_fieldsGenqlSelection + count?: { __args: {columns?: (tournament_invite_code_uses_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: tournament_invite_code_uses_max_fieldsGenqlSelection + min?: tournament_invite_code_uses_min_fieldsGenqlSelection + stddev?: tournament_invite_code_uses_stddev_fieldsGenqlSelection + stddev_pop?: tournament_invite_code_uses_stddev_pop_fieldsGenqlSelection + stddev_samp?: tournament_invite_code_uses_stddev_samp_fieldsGenqlSelection + sum?: tournament_invite_code_uses_sum_fieldsGenqlSelection + var_pop?: tournament_invite_code_uses_var_pop_fieldsGenqlSelection + var_samp?: tournament_invite_code_uses_var_samp_fieldsGenqlSelection + variance?: tournament_invite_code_uses_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "tournament_invite_code_uses" */ +export interface tournament_invite_code_uses_aggregate_order_by {avg?: (tournament_invite_code_uses_avg_order_by | null),count?: (order_by | null),max?: (tournament_invite_code_uses_max_order_by | null),min?: (tournament_invite_code_uses_min_order_by | null),stddev?: (tournament_invite_code_uses_stddev_order_by | null),stddev_pop?: (tournament_invite_code_uses_stddev_pop_order_by | null),stddev_samp?: (tournament_invite_code_uses_stddev_samp_order_by | null),sum?: (tournament_invite_code_uses_sum_order_by | null),var_pop?: (tournament_invite_code_uses_var_pop_order_by | null),var_samp?: (tournament_invite_code_uses_var_samp_order_by | null),variance?: (tournament_invite_code_uses_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "tournament_invite_code_uses" */ +export interface tournament_invite_code_uses_arr_rel_insert_input {data: tournament_invite_code_uses_insert_input[], +/** upsert condition */ +on_conflict?: (tournament_invite_code_uses_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface tournament_invite_code_uses_avg_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "tournament_invite_code_uses" */ +export interface tournament_invite_code_uses_avg_order_by {player_steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "tournament_invite_code_uses". All fields are combined with a logical 'AND'. */ +export interface tournament_invite_code_uses_bool_exp {_and?: (tournament_invite_code_uses_bool_exp[] | null),_not?: (tournament_invite_code_uses_bool_exp | null),_or?: (tournament_invite_code_uses_bool_exp[] | null),invite_code?: (tournament_invite_codes_bool_exp | null),invite_code_id?: (uuid_comparison_exp | null),player?: (players_bool_exp | null),player_steam_id?: (bigint_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null),used_at?: (timestamptz_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "tournament_invite_code_uses" */ +export interface tournament_invite_code_uses_inc_input {player_steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "tournament_invite_code_uses" */ +export interface tournament_invite_code_uses_insert_input {invite_code?: (tournament_invite_codes_obj_rel_insert_input | null),invite_code_id?: (Scalars['uuid'] | null),player?: (players_obj_rel_insert_input | null),player_steam_id?: (Scalars['bigint'] | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null),used_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate max on columns */ +export interface tournament_invite_code_uses_max_fieldsGenqlSelection{ + invite_code_id?: boolean | number + player_steam_id?: boolean | number + team_id?: boolean | number + used_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "tournament_invite_code_uses" */ +export interface tournament_invite_code_uses_max_order_by {invite_code_id?: (order_by | null),player_steam_id?: (order_by | null),team_id?: (order_by | null),used_at?: (order_by | null)} + + +/** aggregate min on columns */ +export interface tournament_invite_code_uses_min_fieldsGenqlSelection{ + invite_code_id?: boolean | number + player_steam_id?: boolean | number + team_id?: boolean | number + used_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "tournament_invite_code_uses" */ +export interface tournament_invite_code_uses_min_order_by {invite_code_id?: (order_by | null),player_steam_id?: (order_by | null),team_id?: (order_by | null),used_at?: (order_by | null)} + + +/** response of any mutation on the table "tournament_invite_code_uses" */ +export interface tournament_invite_code_uses_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: tournament_invite_code_usesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "tournament_invite_code_uses" */ +export interface tournament_invite_code_uses_on_conflict {constraint: tournament_invite_code_uses_constraint,update_columns?: tournament_invite_code_uses_update_column[],where?: (tournament_invite_code_uses_bool_exp | null)} + + +/** Ordering options when selecting data from "tournament_invite_code_uses". */ +export interface tournament_invite_code_uses_order_by {invite_code?: (tournament_invite_codes_order_by | null),invite_code_id?: (order_by | null),player?: (players_order_by | null),player_steam_id?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null),used_at?: (order_by | null)} + + +/** primary key columns input for table: tournament_invite_code_uses */ +export interface tournament_invite_code_uses_pk_columns_input {invite_code_id: Scalars['uuid'],player_steam_id: Scalars['bigint']} + + +/** input type for updating data in table "tournament_invite_code_uses" */ +export interface tournament_invite_code_uses_set_input {invite_code_id?: (Scalars['uuid'] | null),player_steam_id?: (Scalars['bigint'] | null),team_id?: (Scalars['uuid'] | null),used_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate stddev on columns */ +export interface tournament_invite_code_uses_stddev_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "tournament_invite_code_uses" */ +export interface tournament_invite_code_uses_stddev_order_by {player_steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface tournament_invite_code_uses_stddev_pop_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "tournament_invite_code_uses" */ +export interface tournament_invite_code_uses_stddev_pop_order_by {player_steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface tournament_invite_code_uses_stddev_samp_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "tournament_invite_code_uses" */ +export interface tournament_invite_code_uses_stddev_samp_order_by {player_steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "tournament_invite_code_uses" */ +export interface tournament_invite_code_uses_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: tournament_invite_code_uses_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface tournament_invite_code_uses_stream_cursor_value_input {invite_code_id?: (Scalars['uuid'] | null),player_steam_id?: (Scalars['bigint'] | null),team_id?: (Scalars['uuid'] | null),used_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate sum on columns */ +export interface tournament_invite_code_uses_sum_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "tournament_invite_code_uses" */ +export interface tournament_invite_code_uses_sum_order_by {player_steam_id?: (order_by | null)} + +export interface tournament_invite_code_uses_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (tournament_invite_code_uses_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (tournament_invite_code_uses_set_input | null), +/** filter the rows which have to be updated */ +where: tournament_invite_code_uses_bool_exp} + + +/** aggregate var_pop on columns */ +export interface tournament_invite_code_uses_var_pop_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "tournament_invite_code_uses" */ +export interface tournament_invite_code_uses_var_pop_order_by {player_steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface tournament_invite_code_uses_var_samp_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "tournament_invite_code_uses" */ +export interface tournament_invite_code_uses_var_samp_order_by {player_steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface tournament_invite_code_uses_variance_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "tournament_invite_code_uses" */ +export interface tournament_invite_code_uses_variance_order_by {player_steam_id?: (order_by | null)} + + +/** columns and relationships of "tournament_invite_codes" */ +export interface tournament_invite_codesGenqlSelection{ + code?: boolean | number + created_at?: boolean | number + /** An object relationship */ + created_by?: playersGenqlSelection + created_by_player_steam_id?: boolean | number + expires_at?: boolean | number + id?: boolean | number + max_uses?: boolean | number + revoked_at?: boolean | number + /** An object relationship */ + tournament?: tournamentsGenqlSelection + tournament_id?: boolean | number + /** An array relationship */ + used_by?: (tournament_invite_code_usesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_invite_code_uses_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_invite_code_uses_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_invite_code_uses_bool_exp | null)} }) + /** An aggregate relationship */ + used_by_aggregate?: (tournament_invite_code_uses_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_invite_code_uses_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_invite_code_uses_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_invite_code_uses_bool_exp | null)} }) + uses?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "tournament_invite_codes" */ +export interface tournament_invite_codes_aggregateGenqlSelection{ + aggregate?: tournament_invite_codes_aggregate_fieldsGenqlSelection + nodes?: tournament_invite_codesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "tournament_invite_codes" */ +export interface tournament_invite_codes_aggregate_fieldsGenqlSelection{ + avg?: tournament_invite_codes_avg_fieldsGenqlSelection + count?: { __args: {columns?: (tournament_invite_codes_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: tournament_invite_codes_max_fieldsGenqlSelection + min?: tournament_invite_codes_min_fieldsGenqlSelection + stddev?: tournament_invite_codes_stddev_fieldsGenqlSelection + stddev_pop?: tournament_invite_codes_stddev_pop_fieldsGenqlSelection + stddev_samp?: tournament_invite_codes_stddev_samp_fieldsGenqlSelection + sum?: tournament_invite_codes_sum_fieldsGenqlSelection + var_pop?: tournament_invite_codes_var_pop_fieldsGenqlSelection + var_samp?: tournament_invite_codes_var_samp_fieldsGenqlSelection + variance?: tournament_invite_codes_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface tournament_invite_codes_avg_fieldsGenqlSelection{ + created_by_player_steam_id?: boolean | number + max_uses?: boolean | number + uses?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "tournament_invite_codes". All fields are combined with a logical 'AND'. */ +export interface tournament_invite_codes_bool_exp {_and?: (tournament_invite_codes_bool_exp[] | null),_not?: (tournament_invite_codes_bool_exp | null),_or?: (tournament_invite_codes_bool_exp[] | null),code?: (String_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),created_by?: (players_bool_exp | null),created_by_player_steam_id?: (bigint_comparison_exp | null),expires_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),max_uses?: (Int_comparison_exp | null),revoked_at?: (timestamptz_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null),used_by?: (tournament_invite_code_uses_bool_exp | null),used_by_aggregate?: (tournament_invite_code_uses_aggregate_bool_exp | null),uses?: (Int_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "tournament_invite_codes" */ +export interface tournament_invite_codes_inc_input {created_by_player_steam_id?: (Scalars['bigint'] | null),max_uses?: (Scalars['Int'] | null),uses?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "tournament_invite_codes" */ +export interface tournament_invite_codes_insert_input {code?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),created_by?: (players_obj_rel_insert_input | null),created_by_player_steam_id?: (Scalars['bigint'] | null),expires_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),max_uses?: (Scalars['Int'] | null),revoked_at?: (Scalars['timestamptz'] | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null),used_by?: (tournament_invite_code_uses_arr_rel_insert_input | null),uses?: (Scalars['Int'] | null)} + + +/** aggregate max on columns */ +export interface tournament_invite_codes_max_fieldsGenqlSelection{ + code?: boolean | number + created_at?: boolean | number + created_by_player_steam_id?: boolean | number + expires_at?: boolean | number + id?: boolean | number + max_uses?: boolean | number + revoked_at?: boolean | number + tournament_id?: boolean | number + uses?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface tournament_invite_codes_min_fieldsGenqlSelection{ + code?: boolean | number + created_at?: boolean | number + created_by_player_steam_id?: boolean | number + expires_at?: boolean | number + id?: boolean | number + max_uses?: boolean | number + revoked_at?: boolean | number + tournament_id?: boolean | number + uses?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "tournament_invite_codes" */ +export interface tournament_invite_codes_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: tournament_invite_codesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "tournament_invite_codes" */ +export interface tournament_invite_codes_obj_rel_insert_input {data: tournament_invite_codes_insert_input, +/** upsert condition */ +on_conflict?: (tournament_invite_codes_on_conflict | null)} + + +/** on_conflict condition type for table "tournament_invite_codes" */ +export interface tournament_invite_codes_on_conflict {constraint: tournament_invite_codes_constraint,update_columns?: tournament_invite_codes_update_column[],where?: (tournament_invite_codes_bool_exp | null)} + + +/** Ordering options when selecting data from "tournament_invite_codes". */ +export interface tournament_invite_codes_order_by {code?: (order_by | null),created_at?: (order_by | null),created_by?: (players_order_by | null),created_by_player_steam_id?: (order_by | null),expires_at?: (order_by | null),id?: (order_by | null),max_uses?: (order_by | null),revoked_at?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null),used_by_aggregate?: (tournament_invite_code_uses_aggregate_order_by | null),uses?: (order_by | null)} + + +/** primary key columns input for table: tournament_invite_codes */ +export interface tournament_invite_codes_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "tournament_invite_codes" */ +export interface tournament_invite_codes_set_input {code?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),created_by_player_steam_id?: (Scalars['bigint'] | null),expires_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),max_uses?: (Scalars['Int'] | null),revoked_at?: (Scalars['timestamptz'] | null),tournament_id?: (Scalars['uuid'] | null),uses?: (Scalars['Int'] | null)} + + +/** aggregate stddev on columns */ +export interface tournament_invite_codes_stddev_fieldsGenqlSelection{ + created_by_player_steam_id?: boolean | number + max_uses?: boolean | number + uses?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface tournament_invite_codes_stddev_pop_fieldsGenqlSelection{ + created_by_player_steam_id?: boolean | number + max_uses?: boolean | number + uses?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface tournament_invite_codes_stddev_samp_fieldsGenqlSelection{ + created_by_player_steam_id?: boolean | number + max_uses?: boolean | number + uses?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "tournament_invite_codes" */ +export interface tournament_invite_codes_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: tournament_invite_codes_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface tournament_invite_codes_stream_cursor_value_input {code?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),created_by_player_steam_id?: (Scalars['bigint'] | null),expires_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),max_uses?: (Scalars['Int'] | null),revoked_at?: (Scalars['timestamptz'] | null),tournament_id?: (Scalars['uuid'] | null),uses?: (Scalars['Int'] | null)} + + +/** aggregate sum on columns */ +export interface tournament_invite_codes_sum_fieldsGenqlSelection{ + created_by_player_steam_id?: boolean | number + max_uses?: boolean | number + uses?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface tournament_invite_codes_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (tournament_invite_codes_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (tournament_invite_codes_set_input | null), +/** filter the rows which have to be updated */ +where: tournament_invite_codes_bool_exp} + + +/** aggregate var_pop on columns */ +export interface tournament_invite_codes_var_pop_fieldsGenqlSelection{ + created_by_player_steam_id?: boolean | number + max_uses?: boolean | number + uses?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface tournament_invite_codes_var_samp_fieldsGenqlSelection{ + created_by_player_steam_id?: boolean | number + max_uses?: boolean | number + uses?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface tournament_invite_codes_variance_fieldsGenqlSelection{ + created_by_player_steam_id?: boolean | number + max_uses?: boolean | number + uses?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "tournament_invites" */ +export interface tournament_invitesGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + /** An object relationship */ + invited_by?: playersGenqlSelection + invited_by_player_steam_id?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + steam_id?: boolean | number + /** An object relationship */ + team?: teamsGenqlSelection + team_id?: boolean | number + /** An object relationship */ + tournament?: tournamentsGenqlSelection + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "tournament_invites" */ +export interface tournament_invites_aggregateGenqlSelection{ + aggregate?: tournament_invites_aggregate_fieldsGenqlSelection + nodes?: tournament_invitesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "tournament_invites" */ +export interface tournament_invites_aggregate_fieldsGenqlSelection{ + avg?: tournament_invites_avg_fieldsGenqlSelection + count?: { __args: {columns?: (tournament_invites_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: tournament_invites_max_fieldsGenqlSelection + min?: tournament_invites_min_fieldsGenqlSelection + stddev?: tournament_invites_stddev_fieldsGenqlSelection + stddev_pop?: tournament_invites_stddev_pop_fieldsGenqlSelection + stddev_samp?: tournament_invites_stddev_samp_fieldsGenqlSelection + sum?: tournament_invites_sum_fieldsGenqlSelection + var_pop?: tournament_invites_var_pop_fieldsGenqlSelection + var_samp?: tournament_invites_var_samp_fieldsGenqlSelection + variance?: tournament_invites_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface tournament_invites_avg_fieldsGenqlSelection{ + invited_by_player_steam_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "tournament_invites". All fields are combined with a logical 'AND'. */ +export interface tournament_invites_bool_exp {_and?: (tournament_invites_bool_exp[] | null),_not?: (tournament_invites_bool_exp | null),_or?: (tournament_invites_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),invited_by?: (players_bool_exp | null),invited_by_player_steam_id?: (bigint_comparison_exp | null),player?: (players_bool_exp | null),steam_id?: (bigint_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "tournament_invites" */ +export interface tournament_invites_inc_input {invited_by_player_steam_id?: (Scalars['bigint'] | null),steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "tournament_invites" */ +export interface tournament_invites_insert_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),invited_by?: (players_obj_rel_insert_input | null),invited_by_player_steam_id?: (Scalars['bigint'] | null),player?: (players_obj_rel_insert_input | null),steam_id?: (Scalars['bigint'] | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface tournament_invites_max_fieldsGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + invited_by_player_steam_id?: boolean | number + steam_id?: boolean | number + team_id?: boolean | number + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface tournament_invites_min_fieldsGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + invited_by_player_steam_id?: boolean | number + steam_id?: boolean | number + team_id?: boolean | number + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "tournament_invites" */ +export interface tournament_invites_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: tournament_invitesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "tournament_invites" */ +export interface tournament_invites_on_conflict {constraint: tournament_invites_constraint,update_columns?: tournament_invites_update_column[],where?: (tournament_invites_bool_exp | null)} + + +/** Ordering options when selecting data from "tournament_invites". */ +export interface tournament_invites_order_by {created_at?: (order_by | null),id?: (order_by | null),invited_by?: (players_order_by | null),invited_by_player_steam_id?: (order_by | null),player?: (players_order_by | null),steam_id?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null)} + + +/** primary key columns input for table: tournament_invites */ +export interface tournament_invites_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "tournament_invites" */ +export interface tournament_invites_set_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),invited_by_player_steam_id?: (Scalars['bigint'] | null),steam_id?: (Scalars['bigint'] | null),team_id?: (Scalars['uuid'] | null),tournament_id?: (Scalars['uuid'] | null)} + + +/** aggregate stddev on columns */ +export interface tournament_invites_stddev_fieldsGenqlSelection{ + invited_by_player_steam_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface tournament_invites_stddev_pop_fieldsGenqlSelection{ + invited_by_player_steam_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface tournament_invites_stddev_samp_fieldsGenqlSelection{ + invited_by_player_steam_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "tournament_invites" */ +export interface tournament_invites_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: tournament_invites_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface tournament_invites_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),invited_by_player_steam_id?: (Scalars['bigint'] | null),steam_id?: (Scalars['bigint'] | null),team_id?: (Scalars['uuid'] | null),tournament_id?: (Scalars['uuid'] | null)} + + +/** aggregate sum on columns */ +export interface tournament_invites_sum_fieldsGenqlSelection{ + invited_by_player_steam_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface tournament_invites_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (tournament_invites_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (tournament_invites_set_input | null), +/** filter the rows which have to be updated */ +where: tournament_invites_bool_exp} + + +/** aggregate var_pop on columns */ +export interface tournament_invites_var_pop_fieldsGenqlSelection{ + invited_by_player_steam_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface tournament_invites_var_samp_fieldsGenqlSelection{ + invited_by_player_steam_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface tournament_invites_variance_fieldsGenqlSelection{ + invited_by_player_steam_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "tournament_leaderboard_entries" */ +export interface tournament_leaderboard_entriesGenqlSelection{ + adr?: boolean | number + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_avatar_url?: boolean | number + player_country?: boolean | number + player_custom_avatar_url?: boolean | number + player_name?: boolean | number + player_steam_id?: boolean | number + rating?: boolean | number + rounds_played?: boolean | number + team_name?: boolean | number + tournament_team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface tournament_leaderboard_entries_aggregateGenqlSelection{ + aggregate?: tournament_leaderboard_entries_aggregate_fieldsGenqlSelection + nodes?: tournament_leaderboard_entriesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "tournament_leaderboard_entries" */ +export interface tournament_leaderboard_entries_aggregate_fieldsGenqlSelection{ + avg?: tournament_leaderboard_entries_avg_fieldsGenqlSelection + count?: { __args: {columns?: (tournament_leaderboard_entries_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: tournament_leaderboard_entries_max_fieldsGenqlSelection + min?: tournament_leaderboard_entries_min_fieldsGenqlSelection + stddev?: tournament_leaderboard_entries_stddev_fieldsGenqlSelection + stddev_pop?: tournament_leaderboard_entries_stddev_pop_fieldsGenqlSelection + stddev_samp?: tournament_leaderboard_entries_stddev_samp_fieldsGenqlSelection + sum?: tournament_leaderboard_entries_sum_fieldsGenqlSelection + var_pop?: tournament_leaderboard_entries_var_pop_fieldsGenqlSelection + var_samp?: tournament_leaderboard_entries_var_samp_fieldsGenqlSelection + variance?: tournament_leaderboard_entries_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface tournament_leaderboard_entries_avg_fieldsGenqlSelection{ + adr?: boolean | number + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + rating?: boolean | number + rounds_played?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "tournament_leaderboard_entries". All fields are combined with a logical 'AND'. */ +export interface tournament_leaderboard_entries_bool_exp {_and?: (tournament_leaderboard_entries_bool_exp[] | null),_not?: (tournament_leaderboard_entries_bool_exp | null),_or?: (tournament_leaderboard_entries_bool_exp[] | null),adr?: (float8_comparison_exp | null),assists?: (Int_comparison_exp | null),deaths?: (Int_comparison_exp | null),headshot_percentage?: (float8_comparison_exp | null),kdr?: (float8_comparison_exp | null),kills?: (Int_comparison_exp | null),matches_played?: (Int_comparison_exp | null),player_avatar_url?: (String_comparison_exp | null),player_country?: (String_comparison_exp | null),player_custom_avatar_url?: (String_comparison_exp | null),player_name?: (String_comparison_exp | null),player_steam_id?: (String_comparison_exp | null),rating?: (float8_comparison_exp | null),rounds_played?: (Int_comparison_exp | null),team_name?: (String_comparison_exp | null),tournament_team_id?: (uuid_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "tournament_leaderboard_entries" */ +export interface tournament_leaderboard_entries_inc_input {adr?: (Scalars['float8'] | null),assists?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),headshot_percentage?: (Scalars['float8'] | null),kdr?: (Scalars['float8'] | null),kills?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),rating?: (Scalars['float8'] | null),rounds_played?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "tournament_leaderboard_entries" */ +export interface tournament_leaderboard_entries_insert_input {adr?: (Scalars['float8'] | null),assists?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),headshot_percentage?: (Scalars['float8'] | null),kdr?: (Scalars['float8'] | null),kills?: (Scalars['Int'] | null),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),rating?: (Scalars['float8'] | null),rounds_played?: (Scalars['Int'] | null),team_name?: (Scalars['String'] | null),tournament_team_id?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface tournament_leaderboard_entries_max_fieldsGenqlSelection{ + adr?: boolean | number + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_avatar_url?: boolean | number + player_country?: boolean | number + player_custom_avatar_url?: boolean | number + player_name?: boolean | number + player_steam_id?: boolean | number + rating?: boolean | number + rounds_played?: boolean | number + team_name?: boolean | number + tournament_team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface tournament_leaderboard_entries_min_fieldsGenqlSelection{ + adr?: boolean | number + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_avatar_url?: boolean | number + player_country?: boolean | number + player_custom_avatar_url?: boolean | number + player_name?: boolean | number + player_steam_id?: boolean | number + rating?: boolean | number + rounds_played?: boolean | number + team_name?: boolean | number + tournament_team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "tournament_leaderboard_entries" */ +export interface tournament_leaderboard_entries_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: tournament_leaderboard_entriesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Ordering options when selecting data from "tournament_leaderboard_entries". */ +export interface tournament_leaderboard_entries_order_by {adr?: (order_by | null),assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_avatar_url?: (order_by | null),player_country?: (order_by | null),player_custom_avatar_url?: (order_by | null),player_name?: (order_by | null),player_steam_id?: (order_by | null),rating?: (order_by | null),rounds_played?: (order_by | null),team_name?: (order_by | null),tournament_team_id?: (order_by | null)} + + +/** input type for updating data in table "tournament_leaderboard_entries" */ +export interface tournament_leaderboard_entries_set_input {adr?: (Scalars['float8'] | null),assists?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),headshot_percentage?: (Scalars['float8'] | null),kdr?: (Scalars['float8'] | null),kills?: (Scalars['Int'] | null),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),rating?: (Scalars['float8'] | null),rounds_played?: (Scalars['Int'] | null),team_name?: (Scalars['String'] | null),tournament_team_id?: (Scalars['uuid'] | null)} + + +/** aggregate stddev on columns */ +export interface tournament_leaderboard_entries_stddev_fieldsGenqlSelection{ + adr?: boolean | number + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + rating?: boolean | number + rounds_played?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface tournament_leaderboard_entries_stddev_pop_fieldsGenqlSelection{ + adr?: boolean | number + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + rating?: boolean | number + rounds_played?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface tournament_leaderboard_entries_stddev_samp_fieldsGenqlSelection{ + adr?: boolean | number + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + rating?: boolean | number + rounds_played?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "tournament_leaderboard_entries" */ +export interface tournament_leaderboard_entries_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: tournament_leaderboard_entries_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface tournament_leaderboard_entries_stream_cursor_value_input {adr?: (Scalars['float8'] | null),assists?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),headshot_percentage?: (Scalars['float8'] | null),kdr?: (Scalars['float8'] | null),kills?: (Scalars['Int'] | null),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),rating?: (Scalars['float8'] | null),rounds_played?: (Scalars['Int'] | null),team_name?: (Scalars['String'] | null),tournament_team_id?: (Scalars['uuid'] | null)} + + +/** aggregate sum on columns */ +export interface tournament_leaderboard_entries_sum_fieldsGenqlSelection{ + adr?: boolean | number + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + rating?: boolean | number + rounds_played?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface tournament_leaderboard_entries_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (tournament_leaderboard_entries_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (tournament_leaderboard_entries_set_input | null), +/** filter the rows which have to be updated */ +where: tournament_leaderboard_entries_bool_exp} + + +/** aggregate var_pop on columns */ +export interface tournament_leaderboard_entries_var_pop_fieldsGenqlSelection{ + adr?: boolean | number + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + rating?: boolean | number + rounds_played?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface tournament_leaderboard_entries_var_samp_fieldsGenqlSelection{ + adr?: boolean | number + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + rating?: boolean | number + rounds_played?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface tournament_leaderboard_entries_variance_fieldsGenqlSelection{ + adr?: boolean | number + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + rating?: boolean | number + rounds_played?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "tournament_no_shows" */ +export interface tournament_no_showsGenqlSelection{ + id?: boolean | number + occurred_at?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + player_steam_id?: boolean | number + /** An object relationship */ + tournament?: tournamentsGenqlSelection + tournament_id?: boolean | number + /** An object relationship */ + tournament_team?: tournament_teamsGenqlSelection + tournament_team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "tournament_no_shows" */ +export interface tournament_no_shows_aggregateGenqlSelection{ + aggregate?: tournament_no_shows_aggregate_fieldsGenqlSelection + nodes?: tournament_no_showsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "tournament_no_shows" */ +export interface tournament_no_shows_aggregate_fieldsGenqlSelection{ + avg?: tournament_no_shows_avg_fieldsGenqlSelection + count?: { __args: {columns?: (tournament_no_shows_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: tournament_no_shows_max_fieldsGenqlSelection + min?: tournament_no_shows_min_fieldsGenqlSelection + stddev?: tournament_no_shows_stddev_fieldsGenqlSelection + stddev_pop?: tournament_no_shows_stddev_pop_fieldsGenqlSelection + stddev_samp?: tournament_no_shows_stddev_samp_fieldsGenqlSelection + sum?: tournament_no_shows_sum_fieldsGenqlSelection + var_pop?: tournament_no_shows_var_pop_fieldsGenqlSelection + var_samp?: tournament_no_shows_var_samp_fieldsGenqlSelection + variance?: tournament_no_shows_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface tournament_no_shows_avg_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "tournament_no_shows". All fields are combined with a logical 'AND'. */ +export interface tournament_no_shows_bool_exp {_and?: (tournament_no_shows_bool_exp[] | null),_not?: (tournament_no_shows_bool_exp | null),_or?: (tournament_no_shows_bool_exp[] | null),id?: (uuid_comparison_exp | null),occurred_at?: (timestamptz_comparison_exp | null),player?: (players_bool_exp | null),player_steam_id?: (bigint_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null),tournament_team?: (tournament_teams_bool_exp | null),tournament_team_id?: (uuid_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "tournament_no_shows" */ +export interface tournament_no_shows_inc_input {player_steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "tournament_no_shows" */ +export interface tournament_no_shows_insert_input {id?: (Scalars['uuid'] | null),occurred_at?: (Scalars['timestamptz'] | null),player?: (players_obj_rel_insert_input | null),player_steam_id?: (Scalars['bigint'] | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null),tournament_team?: (tournament_teams_obj_rel_insert_input | null),tournament_team_id?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface tournament_no_shows_max_fieldsGenqlSelection{ + id?: boolean | number + occurred_at?: boolean | number + player_steam_id?: boolean | number + tournament_id?: boolean | number + tournament_team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface tournament_no_shows_min_fieldsGenqlSelection{ + id?: boolean | number + occurred_at?: boolean | number + player_steam_id?: boolean | number + tournament_id?: boolean | number + tournament_team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "tournament_no_shows" */ +export interface tournament_no_shows_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: tournament_no_showsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "tournament_no_shows" */ +export interface tournament_no_shows_on_conflict {constraint: tournament_no_shows_constraint,update_columns?: tournament_no_shows_update_column[],where?: (tournament_no_shows_bool_exp | null)} + + +/** Ordering options when selecting data from "tournament_no_shows". */ +export interface tournament_no_shows_order_by {id?: (order_by | null),occurred_at?: (order_by | null),player?: (players_order_by | null),player_steam_id?: (order_by | null),tournament?: (tournaments_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: tournament_no_shows */ +export interface tournament_no_shows_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "tournament_no_shows" */ +export interface tournament_no_shows_set_input {id?: (Scalars['uuid'] | null),occurred_at?: (Scalars['timestamptz'] | null),player_steam_id?: (Scalars['bigint'] | null),tournament_id?: (Scalars['uuid'] | null),tournament_team_id?: (Scalars['uuid'] | null)} + + +/** aggregate stddev on columns */ +export interface tournament_no_shows_stddev_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface tournament_no_shows_stddev_pop_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface tournament_no_shows_stddev_samp_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "tournament_no_shows" */ +export interface tournament_no_shows_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: tournament_no_shows_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface tournament_no_shows_stream_cursor_value_input {id?: (Scalars['uuid'] | null),occurred_at?: (Scalars['timestamptz'] | null),player_steam_id?: (Scalars['bigint'] | null),tournament_id?: (Scalars['uuid'] | null),tournament_team_id?: (Scalars['uuid'] | null)} + + +/** aggregate sum on columns */ +export interface tournament_no_shows_sum_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface tournament_no_shows_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (tournament_no_shows_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (tournament_no_shows_set_input | null), +/** filter the rows which have to be updated */ +where: tournament_no_shows_bool_exp} + + +/** aggregate var_pop on columns */ +export interface tournament_no_shows_var_pop_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface tournament_no_shows_var_samp_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface tournament_no_shows_variance_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "tournament_organizer_teams" */ +export interface tournament_organizer_teamsGenqlSelection{ + created_at?: boolean | number + /** An object relationship */ + team?: teamsGenqlSelection + team_id?: boolean | number + /** An object relationship */ + tournament?: tournamentsGenqlSelection + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "tournament_organizer_teams" */ +export interface tournament_organizer_teams_aggregateGenqlSelection{ + aggregate?: tournament_organizer_teams_aggregate_fieldsGenqlSelection + nodes?: tournament_organizer_teamsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface tournament_organizer_teams_aggregate_bool_exp {count?: (tournament_organizer_teams_aggregate_bool_exp_count | null)} + +export interface tournament_organizer_teams_aggregate_bool_exp_count {arguments?: (tournament_organizer_teams_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (tournament_organizer_teams_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "tournament_organizer_teams" */ +export interface tournament_organizer_teams_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (tournament_organizer_teams_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: tournament_organizer_teams_max_fieldsGenqlSelection + min?: tournament_organizer_teams_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "tournament_organizer_teams" */ +export interface tournament_organizer_teams_aggregate_order_by {count?: (order_by | null),max?: (tournament_organizer_teams_max_order_by | null),min?: (tournament_organizer_teams_min_order_by | null)} + + +/** input type for inserting array relation for remote table "tournament_organizer_teams" */ +export interface tournament_organizer_teams_arr_rel_insert_input {data: tournament_organizer_teams_insert_input[], +/** upsert condition */ +on_conflict?: (tournament_organizer_teams_on_conflict | null)} + + +/** Boolean expression to filter rows from the table "tournament_organizer_teams". All fields are combined with a logical 'AND'. */ +export interface tournament_organizer_teams_bool_exp {_and?: (tournament_organizer_teams_bool_exp[] | null),_not?: (tournament_organizer_teams_bool_exp | null),_or?: (tournament_organizer_teams_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null)} + + +/** input type for inserting data into table "tournament_organizer_teams" */ +export interface tournament_organizer_teams_insert_input {created_at?: (Scalars['timestamptz'] | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface tournament_organizer_teams_max_fieldsGenqlSelection{ + created_at?: boolean | number + team_id?: boolean | number + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "tournament_organizer_teams" */ +export interface tournament_organizer_teams_max_order_by {created_at?: (order_by | null),team_id?: (order_by | null),tournament_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface tournament_organizer_teams_min_fieldsGenqlSelection{ + created_at?: boolean | number + team_id?: boolean | number + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "tournament_organizer_teams" */ +export interface tournament_organizer_teams_min_order_by {created_at?: (order_by | null),team_id?: (order_by | null),tournament_id?: (order_by | null)} + + +/** response of any mutation on the table "tournament_organizer_teams" */ +export interface tournament_organizer_teams_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: tournament_organizer_teamsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "tournament_organizer_teams" */ +export interface tournament_organizer_teams_on_conflict {constraint: tournament_organizer_teams_constraint,update_columns?: tournament_organizer_teams_update_column[],where?: (tournament_organizer_teams_bool_exp | null)} + + +/** Ordering options when selecting data from "tournament_organizer_teams". */ +export interface tournament_organizer_teams_order_by {created_at?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null)} + + +/** primary key columns input for table: tournament_organizer_teams */ +export interface tournament_organizer_teams_pk_columns_input {team_id: Scalars['uuid'],tournament_id: Scalars['uuid']} + + +/** input type for updating data in table "tournament_organizer_teams" */ +export interface tournament_organizer_teams_set_input {created_at?: (Scalars['timestamptz'] | null),team_id?: (Scalars['uuid'] | null),tournament_id?: (Scalars['uuid'] | null)} + + +/** Streaming cursor of the table "tournament_organizer_teams" */ +export interface tournament_organizer_teams_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: tournament_organizer_teams_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface tournament_organizer_teams_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),team_id?: (Scalars['uuid'] | null),tournament_id?: (Scalars['uuid'] | null)} + +export interface tournament_organizer_teams_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (tournament_organizer_teams_set_input | null), +/** filter the rows which have to be updated */ +where: tournament_organizer_teams_bool_exp} + + +/** columns and relationships of "tournament_organizers" */ +export interface tournament_organizersGenqlSelection{ + /** An object relationship */ + organization_team?: teamsGenqlSelection + organization_team_id?: boolean | number + /** An object relationship */ + organizer?: playersGenqlSelection + steam_id?: boolean | number + /** An object relationship */ + tournament?: tournamentsGenqlSelection + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "tournament_organizers" */ +export interface tournament_organizers_aggregateGenqlSelection{ + aggregate?: tournament_organizers_aggregate_fieldsGenqlSelection + nodes?: tournament_organizersGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface tournament_organizers_aggregate_bool_exp {count?: (tournament_organizers_aggregate_bool_exp_count | null)} + +export interface tournament_organizers_aggregate_bool_exp_count {arguments?: (tournament_organizers_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (tournament_organizers_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "tournament_organizers" */ +export interface tournament_organizers_aggregate_fieldsGenqlSelection{ + avg?: tournament_organizers_avg_fieldsGenqlSelection + count?: { __args: {columns?: (tournament_organizers_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: tournament_organizers_max_fieldsGenqlSelection + min?: tournament_organizers_min_fieldsGenqlSelection + stddev?: tournament_organizers_stddev_fieldsGenqlSelection + stddev_pop?: tournament_organizers_stddev_pop_fieldsGenqlSelection + stddev_samp?: tournament_organizers_stddev_samp_fieldsGenqlSelection + sum?: tournament_organizers_sum_fieldsGenqlSelection + var_pop?: tournament_organizers_var_pop_fieldsGenqlSelection + var_samp?: tournament_organizers_var_samp_fieldsGenqlSelection + variance?: tournament_organizers_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "tournament_organizers" */ +export interface tournament_organizers_aggregate_order_by {avg?: (tournament_organizers_avg_order_by | null),count?: (order_by | null),max?: (tournament_organizers_max_order_by | null),min?: (tournament_organizers_min_order_by | null),stddev?: (tournament_organizers_stddev_order_by | null),stddev_pop?: (tournament_organizers_stddev_pop_order_by | null),stddev_samp?: (tournament_organizers_stddev_samp_order_by | null),sum?: (tournament_organizers_sum_order_by | null),var_pop?: (tournament_organizers_var_pop_order_by | null),var_samp?: (tournament_organizers_var_samp_order_by | null),variance?: (tournament_organizers_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "tournament_organizers" */ +export interface tournament_organizers_arr_rel_insert_input {data: tournament_organizers_insert_input[], +/** upsert condition */ +on_conflict?: (tournament_organizers_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface tournament_organizers_avg_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "tournament_organizers" */ +export interface tournament_organizers_avg_order_by {steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "tournament_organizers". All fields are combined with a logical 'AND'. */ +export interface tournament_organizers_bool_exp {_and?: (tournament_organizers_bool_exp[] | null),_not?: (tournament_organizers_bool_exp | null),_or?: (tournament_organizers_bool_exp[] | null),organization_team?: (teams_bool_exp | null),organization_team_id?: (uuid_comparison_exp | null),organizer?: (players_bool_exp | null),steam_id?: (bigint_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "tournament_organizers" */ +export interface tournament_organizers_inc_input {steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "tournament_organizers" */ +export interface tournament_organizers_insert_input {organization_team?: (teams_obj_rel_insert_input | null),organization_team_id?: (Scalars['uuid'] | null),organizer?: (players_obj_rel_insert_input | null),steam_id?: (Scalars['bigint'] | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface tournament_organizers_max_fieldsGenqlSelection{ + organization_team_id?: boolean | number + steam_id?: boolean | number + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "tournament_organizers" */ +export interface tournament_organizers_max_order_by {organization_team_id?: (order_by | null),steam_id?: (order_by | null),tournament_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface tournament_organizers_min_fieldsGenqlSelection{ + organization_team_id?: boolean | number + steam_id?: boolean | number + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "tournament_organizers" */ +export interface tournament_organizers_min_order_by {organization_team_id?: (order_by | null),steam_id?: (order_by | null),tournament_id?: (order_by | null)} + + +/** response of any mutation on the table "tournament_organizers" */ +export interface tournament_organizers_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: tournament_organizersGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "tournament_organizers" */ +export interface tournament_organizers_on_conflict {constraint: tournament_organizers_constraint,update_columns?: tournament_organizers_update_column[],where?: (tournament_organizers_bool_exp | null)} + + +/** Ordering options when selecting data from "tournament_organizers". */ +export interface tournament_organizers_order_by {organization_team?: (teams_order_by | null),organization_team_id?: (order_by | null),organizer?: (players_order_by | null),steam_id?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null)} + + +/** primary key columns input for table: tournament_organizers */ +export interface tournament_organizers_pk_columns_input {steam_id: Scalars['bigint'],tournament_id: Scalars['uuid']} + + +/** input type for updating data in table "tournament_organizers" */ +export interface tournament_organizers_set_input {organization_team_id?: (Scalars['uuid'] | null),steam_id?: (Scalars['bigint'] | null),tournament_id?: (Scalars['uuid'] | null)} + + +/** aggregate stddev on columns */ +export interface tournament_organizers_stddev_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "tournament_organizers" */ +export interface tournament_organizers_stddev_order_by {steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface tournament_organizers_stddev_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "tournament_organizers" */ +export interface tournament_organizers_stddev_pop_order_by {steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface tournament_organizers_stddev_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "tournament_organizers" */ +export interface tournament_organizers_stddev_samp_order_by {steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "tournament_organizers" */ +export interface tournament_organizers_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: tournament_organizers_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface tournament_organizers_stream_cursor_value_input {organization_team_id?: (Scalars['uuid'] | null),steam_id?: (Scalars['bigint'] | null),tournament_id?: (Scalars['uuid'] | null)} + + +/** aggregate sum on columns */ +export interface tournament_organizers_sum_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "tournament_organizers" */ +export interface tournament_organizers_sum_order_by {steam_id?: (order_by | null)} + +export interface tournament_organizers_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (tournament_organizers_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (tournament_organizers_set_input | null), +/** filter the rows which have to be updated */ +where: tournament_organizers_bool_exp} + + +/** aggregate var_pop on columns */ +export interface tournament_organizers_var_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "tournament_organizers" */ +export interface tournament_organizers_var_pop_order_by {steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface tournament_organizers_var_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "tournament_organizers" */ +export interface tournament_organizers_var_samp_order_by {steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface tournament_organizers_variance_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "tournament_organizers" */ +export interface tournament_organizers_variance_order_by {steam_id?: (order_by | null)} + + +/** columns and relationships of "tournament_prizes" */ +export interface tournament_prizesGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + order?: boolean | number + place?: boolean | number + prize?: boolean | number + /** An object relationship */ + tournament?: tournamentsGenqlSelection + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "tournament_prizes" */ +export interface tournament_prizes_aggregateGenqlSelection{ + aggregate?: tournament_prizes_aggregate_fieldsGenqlSelection + nodes?: tournament_prizesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface tournament_prizes_aggregate_bool_exp {count?: (tournament_prizes_aggregate_bool_exp_count | null)} + +export interface tournament_prizes_aggregate_bool_exp_count {arguments?: (tournament_prizes_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (tournament_prizes_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "tournament_prizes" */ +export interface tournament_prizes_aggregate_fieldsGenqlSelection{ + avg?: tournament_prizes_avg_fieldsGenqlSelection + count?: { __args: {columns?: (tournament_prizes_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: tournament_prizes_max_fieldsGenqlSelection + min?: tournament_prizes_min_fieldsGenqlSelection + stddev?: tournament_prizes_stddev_fieldsGenqlSelection + stddev_pop?: tournament_prizes_stddev_pop_fieldsGenqlSelection + stddev_samp?: tournament_prizes_stddev_samp_fieldsGenqlSelection + sum?: tournament_prizes_sum_fieldsGenqlSelection + var_pop?: tournament_prizes_var_pop_fieldsGenqlSelection + var_samp?: tournament_prizes_var_samp_fieldsGenqlSelection + variance?: tournament_prizes_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "tournament_prizes" */ +export interface tournament_prizes_aggregate_order_by {avg?: (tournament_prizes_avg_order_by | null),count?: (order_by | null),max?: (tournament_prizes_max_order_by | null),min?: (tournament_prizes_min_order_by | null),stddev?: (tournament_prizes_stddev_order_by | null),stddev_pop?: (tournament_prizes_stddev_pop_order_by | null),stddev_samp?: (tournament_prizes_stddev_samp_order_by | null),sum?: (tournament_prizes_sum_order_by | null),var_pop?: (tournament_prizes_var_pop_order_by | null),var_samp?: (tournament_prizes_var_samp_order_by | null),variance?: (tournament_prizes_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "tournament_prizes" */ +export interface tournament_prizes_arr_rel_insert_input {data: tournament_prizes_insert_input[], +/** upsert condition */ +on_conflict?: (tournament_prizes_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface tournament_prizes_avg_fieldsGenqlSelection{ + order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "tournament_prizes" */ +export interface tournament_prizes_avg_order_by {order?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "tournament_prizes". All fields are combined with a logical 'AND'. */ +export interface tournament_prizes_bool_exp {_and?: (tournament_prizes_bool_exp[] | null),_not?: (tournament_prizes_bool_exp | null),_or?: (tournament_prizes_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),order?: (Int_comparison_exp | null),place?: (String_comparison_exp | null),prize?: (String_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "tournament_prizes" */ +export interface tournament_prizes_inc_input {order?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "tournament_prizes" */ +export interface tournament_prizes_insert_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),order?: (Scalars['Int'] | null),place?: (Scalars['String'] | null),prize?: (Scalars['String'] | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface tournament_prizes_max_fieldsGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + order?: boolean | number + place?: boolean | number + prize?: boolean | number + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "tournament_prizes" */ +export interface tournament_prizes_max_order_by {created_at?: (order_by | null),id?: (order_by | null),order?: (order_by | null),place?: (order_by | null),prize?: (order_by | null),tournament_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface tournament_prizes_min_fieldsGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + order?: boolean | number + place?: boolean | number + prize?: boolean | number + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "tournament_prizes" */ +export interface tournament_prizes_min_order_by {created_at?: (order_by | null),id?: (order_by | null),order?: (order_by | null),place?: (order_by | null),prize?: (order_by | null),tournament_id?: (order_by | null)} + + +/** response of any mutation on the table "tournament_prizes" */ +export interface tournament_prizes_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: tournament_prizesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "tournament_prizes" */ +export interface tournament_prizes_on_conflict {constraint: tournament_prizes_constraint,update_columns?: tournament_prizes_update_column[],where?: (tournament_prizes_bool_exp | null)} + + +/** Ordering options when selecting data from "tournament_prizes". */ +export interface tournament_prizes_order_by {created_at?: (order_by | null),id?: (order_by | null),order?: (order_by | null),place?: (order_by | null),prize?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null)} + + +/** primary key columns input for table: tournament_prizes */ +export interface tournament_prizes_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "tournament_prizes" */ +export interface tournament_prizes_set_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),order?: (Scalars['Int'] | null),place?: (Scalars['String'] | null),prize?: (Scalars['String'] | null),tournament_id?: (Scalars['uuid'] | null)} + + +/** aggregate stddev on columns */ +export interface tournament_prizes_stddev_fieldsGenqlSelection{ + order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "tournament_prizes" */ +export interface tournament_prizes_stddev_order_by {order?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface tournament_prizes_stddev_pop_fieldsGenqlSelection{ + order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "tournament_prizes" */ +export interface tournament_prizes_stddev_pop_order_by {order?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface tournament_prizes_stddev_samp_fieldsGenqlSelection{ + order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "tournament_prizes" */ +export interface tournament_prizes_stddev_samp_order_by {order?: (order_by | null)} + + +/** Streaming cursor of the table "tournament_prizes" */ +export interface tournament_prizes_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: tournament_prizes_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface tournament_prizes_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),order?: (Scalars['Int'] | null),place?: (Scalars['String'] | null),prize?: (Scalars['String'] | null),tournament_id?: (Scalars['uuid'] | null)} + + +/** aggregate sum on columns */ +export interface tournament_prizes_sum_fieldsGenqlSelection{ + order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "tournament_prizes" */ +export interface tournament_prizes_sum_order_by {order?: (order_by | null)} + +export interface tournament_prizes_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (tournament_prizes_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (tournament_prizes_set_input | null), +/** filter the rows which have to be updated */ +where: tournament_prizes_bool_exp} + + +/** aggregate var_pop on columns */ +export interface tournament_prizes_var_pop_fieldsGenqlSelection{ + order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "tournament_prizes" */ +export interface tournament_prizes_var_pop_order_by {order?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface tournament_prizes_var_samp_fieldsGenqlSelection{ + order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "tournament_prizes" */ +export interface tournament_prizes_var_samp_order_by {order?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface tournament_prizes_variance_fieldsGenqlSelection{ + order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "tournament_prizes" */ +export interface tournament_prizes_variance_order_by {order?: (order_by | null)} + + +/** columns and relationships of "tournament_registration_unlocks" */ +export interface tournament_registration_unlocksGenqlSelection{ + created_at?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + player_steam_id?: boolean | number + /** An object relationship */ + team?: teamsGenqlSelection + team_id?: boolean | number + /** An object relationship */ + tournament?: tournamentsGenqlSelection + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "tournament_registration_unlocks" */ +export interface tournament_registration_unlocks_aggregateGenqlSelection{ + aggregate?: tournament_registration_unlocks_aggregate_fieldsGenqlSelection + nodes?: tournament_registration_unlocksGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "tournament_registration_unlocks" */ +export interface tournament_registration_unlocks_aggregate_fieldsGenqlSelection{ + avg?: tournament_registration_unlocks_avg_fieldsGenqlSelection + count?: { __args: {columns?: (tournament_registration_unlocks_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: tournament_registration_unlocks_max_fieldsGenqlSelection + min?: tournament_registration_unlocks_min_fieldsGenqlSelection + stddev?: tournament_registration_unlocks_stddev_fieldsGenqlSelection + stddev_pop?: tournament_registration_unlocks_stddev_pop_fieldsGenqlSelection + stddev_samp?: tournament_registration_unlocks_stddev_samp_fieldsGenqlSelection + sum?: tournament_registration_unlocks_sum_fieldsGenqlSelection + var_pop?: tournament_registration_unlocks_var_pop_fieldsGenqlSelection + var_samp?: tournament_registration_unlocks_var_samp_fieldsGenqlSelection + variance?: tournament_registration_unlocks_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface tournament_registration_unlocks_avg_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "tournament_registration_unlocks". All fields are combined with a logical 'AND'. */ +export interface tournament_registration_unlocks_bool_exp {_and?: (tournament_registration_unlocks_bool_exp[] | null),_not?: (tournament_registration_unlocks_bool_exp | null),_or?: (tournament_registration_unlocks_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),player?: (players_bool_exp | null),player_steam_id?: (bigint_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "tournament_registration_unlocks" */ +export interface tournament_registration_unlocks_inc_input {player_steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "tournament_registration_unlocks" */ +export interface tournament_registration_unlocks_insert_input {created_at?: (Scalars['timestamptz'] | null),player?: (players_obj_rel_insert_input | null),player_steam_id?: (Scalars['bigint'] | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface tournament_registration_unlocks_max_fieldsGenqlSelection{ + created_at?: boolean | number + player_steam_id?: boolean | number + team_id?: boolean | number + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface tournament_registration_unlocks_min_fieldsGenqlSelection{ + created_at?: boolean | number + player_steam_id?: boolean | number + team_id?: boolean | number + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "tournament_registration_unlocks" */ +export interface tournament_registration_unlocks_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: tournament_registration_unlocksGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "tournament_registration_unlocks" */ +export interface tournament_registration_unlocks_on_conflict {constraint: tournament_registration_unlocks_constraint,update_columns?: tournament_registration_unlocks_update_column[],where?: (tournament_registration_unlocks_bool_exp | null)} + + +/** Ordering options when selecting data from "tournament_registration_unlocks". */ +export interface tournament_registration_unlocks_order_by {created_at?: (order_by | null),player?: (players_order_by | null),player_steam_id?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null)} + + +/** input type for updating data in table "tournament_registration_unlocks" */ +export interface tournament_registration_unlocks_set_input {created_at?: (Scalars['timestamptz'] | null),player_steam_id?: (Scalars['bigint'] | null),team_id?: (Scalars['uuid'] | null),tournament_id?: (Scalars['uuid'] | null)} + + +/** aggregate stddev on columns */ +export interface tournament_registration_unlocks_stddev_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface tournament_registration_unlocks_stddev_pop_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface tournament_registration_unlocks_stddev_samp_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "tournament_registration_unlocks" */ +export interface tournament_registration_unlocks_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: tournament_registration_unlocks_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface tournament_registration_unlocks_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),player_steam_id?: (Scalars['bigint'] | null),team_id?: (Scalars['uuid'] | null),tournament_id?: (Scalars['uuid'] | null)} + + +/** aggregate sum on columns */ +export interface tournament_registration_unlocks_sum_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface tournament_registration_unlocks_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (tournament_registration_unlocks_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (tournament_registration_unlocks_set_input | null), +/** filter the rows which have to be updated */ +where: tournament_registration_unlocks_bool_exp} + + +/** aggregate var_pop on columns */ +export interface tournament_registration_unlocks_var_pop_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface tournament_registration_unlocks_var_samp_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface tournament_registration_unlocks_variance_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "tournament_stage_windows" */ +export interface tournament_stage_windowsGenqlSelection{ + closes_at?: boolean | number + created_at?: boolean | number + default_match_at?: boolean | number + id?: boolean | number + opens_at?: boolean | number + round?: boolean | number + /** An object relationship */ + stage?: tournament_stagesGenqlSelection + tournament_stage_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "tournament_stage_windows" */ +export interface tournament_stage_windows_aggregateGenqlSelection{ + aggregate?: tournament_stage_windows_aggregate_fieldsGenqlSelection + nodes?: tournament_stage_windowsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface tournament_stage_windows_aggregate_bool_exp {count?: (tournament_stage_windows_aggregate_bool_exp_count | null)} + +export interface tournament_stage_windows_aggregate_bool_exp_count {arguments?: (tournament_stage_windows_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (tournament_stage_windows_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "tournament_stage_windows" */ +export interface tournament_stage_windows_aggregate_fieldsGenqlSelection{ + avg?: tournament_stage_windows_avg_fieldsGenqlSelection + count?: { __args: {columns?: (tournament_stage_windows_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: tournament_stage_windows_max_fieldsGenqlSelection + min?: tournament_stage_windows_min_fieldsGenqlSelection + stddev?: tournament_stage_windows_stddev_fieldsGenqlSelection + stddev_pop?: tournament_stage_windows_stddev_pop_fieldsGenqlSelection + stddev_samp?: tournament_stage_windows_stddev_samp_fieldsGenqlSelection + sum?: tournament_stage_windows_sum_fieldsGenqlSelection + var_pop?: tournament_stage_windows_var_pop_fieldsGenqlSelection + var_samp?: tournament_stage_windows_var_samp_fieldsGenqlSelection + variance?: tournament_stage_windows_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "tournament_stage_windows" */ +export interface tournament_stage_windows_aggregate_order_by {avg?: (tournament_stage_windows_avg_order_by | null),count?: (order_by | null),max?: (tournament_stage_windows_max_order_by | null),min?: (tournament_stage_windows_min_order_by | null),stddev?: (tournament_stage_windows_stddev_order_by | null),stddev_pop?: (tournament_stage_windows_stddev_pop_order_by | null),stddev_samp?: (tournament_stage_windows_stddev_samp_order_by | null),sum?: (tournament_stage_windows_sum_order_by | null),var_pop?: (tournament_stage_windows_var_pop_order_by | null),var_samp?: (tournament_stage_windows_var_samp_order_by | null),variance?: (tournament_stage_windows_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "tournament_stage_windows" */ +export interface tournament_stage_windows_arr_rel_insert_input {data: tournament_stage_windows_insert_input[], +/** upsert condition */ +on_conflict?: (tournament_stage_windows_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface tournament_stage_windows_avg_fieldsGenqlSelection{ + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "tournament_stage_windows" */ +export interface tournament_stage_windows_avg_order_by {round?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "tournament_stage_windows". All fields are combined with a logical 'AND'. */ +export interface tournament_stage_windows_bool_exp {_and?: (tournament_stage_windows_bool_exp[] | null),_not?: (tournament_stage_windows_bool_exp | null),_or?: (tournament_stage_windows_bool_exp[] | null),closes_at?: (timestamptz_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),default_match_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),opens_at?: (timestamptz_comparison_exp | null),round?: (Int_comparison_exp | null),stage?: (tournament_stages_bool_exp | null),tournament_stage_id?: (uuid_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "tournament_stage_windows" */ +export interface tournament_stage_windows_inc_input {round?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "tournament_stage_windows" */ +export interface tournament_stage_windows_insert_input {closes_at?: (Scalars['timestamptz'] | null),created_at?: (Scalars['timestamptz'] | null),default_match_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),opens_at?: (Scalars['timestamptz'] | null),round?: (Scalars['Int'] | null),stage?: (tournament_stages_obj_rel_insert_input | null),tournament_stage_id?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface tournament_stage_windows_max_fieldsGenqlSelection{ + closes_at?: boolean | number + created_at?: boolean | number + default_match_at?: boolean | number + id?: boolean | number + opens_at?: boolean | number + round?: boolean | number + tournament_stage_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "tournament_stage_windows" */ +export interface tournament_stage_windows_max_order_by {closes_at?: (order_by | null),created_at?: (order_by | null),default_match_at?: (order_by | null),id?: (order_by | null),opens_at?: (order_by | null),round?: (order_by | null),tournament_stage_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface tournament_stage_windows_min_fieldsGenqlSelection{ + closes_at?: boolean | number + created_at?: boolean | number + default_match_at?: boolean | number + id?: boolean | number + opens_at?: boolean | number + round?: boolean | number + tournament_stage_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "tournament_stage_windows" */ +export interface tournament_stage_windows_min_order_by {closes_at?: (order_by | null),created_at?: (order_by | null),default_match_at?: (order_by | null),id?: (order_by | null),opens_at?: (order_by | null),round?: (order_by | null),tournament_stage_id?: (order_by | null)} + + +/** response of any mutation on the table "tournament_stage_windows" */ +export interface tournament_stage_windows_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: tournament_stage_windowsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "tournament_stage_windows" */ +export interface tournament_stage_windows_on_conflict {constraint: tournament_stage_windows_constraint,update_columns?: tournament_stage_windows_update_column[],where?: (tournament_stage_windows_bool_exp | null)} + + +/** Ordering options when selecting data from "tournament_stage_windows". */ +export interface tournament_stage_windows_order_by {closes_at?: (order_by | null),created_at?: (order_by | null),default_match_at?: (order_by | null),id?: (order_by | null),opens_at?: (order_by | null),round?: (order_by | null),stage?: (tournament_stages_order_by | null),tournament_stage_id?: (order_by | null)} + + +/** primary key columns input for table: tournament_stage_windows */ +export interface tournament_stage_windows_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "tournament_stage_windows" */ +export interface tournament_stage_windows_set_input {closes_at?: (Scalars['timestamptz'] | null),created_at?: (Scalars['timestamptz'] | null),default_match_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),opens_at?: (Scalars['timestamptz'] | null),round?: (Scalars['Int'] | null),tournament_stage_id?: (Scalars['uuid'] | null)} + + +/** aggregate stddev on columns */ +export interface tournament_stage_windows_stddev_fieldsGenqlSelection{ + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "tournament_stage_windows" */ +export interface tournament_stage_windows_stddev_order_by {round?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface tournament_stage_windows_stddev_pop_fieldsGenqlSelection{ + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "tournament_stage_windows" */ +export interface tournament_stage_windows_stddev_pop_order_by {round?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface tournament_stage_windows_stddev_samp_fieldsGenqlSelection{ + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "tournament_stage_windows" */ +export interface tournament_stage_windows_stddev_samp_order_by {round?: (order_by | null)} + + +/** Streaming cursor of the table "tournament_stage_windows" */ +export interface tournament_stage_windows_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: tournament_stage_windows_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface tournament_stage_windows_stream_cursor_value_input {closes_at?: (Scalars['timestamptz'] | null),created_at?: (Scalars['timestamptz'] | null),default_match_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),opens_at?: (Scalars['timestamptz'] | null),round?: (Scalars['Int'] | null),tournament_stage_id?: (Scalars['uuid'] | null)} + + +/** aggregate sum on columns */ +export interface tournament_stage_windows_sum_fieldsGenqlSelection{ + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "tournament_stage_windows" */ +export interface tournament_stage_windows_sum_order_by {round?: (order_by | null)} + +export interface tournament_stage_windows_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (tournament_stage_windows_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (tournament_stage_windows_set_input | null), +/** filter the rows which have to be updated */ +where: tournament_stage_windows_bool_exp} + + +/** aggregate var_pop on columns */ +export interface tournament_stage_windows_var_pop_fieldsGenqlSelection{ + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "tournament_stage_windows" */ +export interface tournament_stage_windows_var_pop_order_by {round?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface tournament_stage_windows_var_samp_fieldsGenqlSelection{ + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "tournament_stage_windows" */ +export interface tournament_stage_windows_var_samp_order_by {round?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface tournament_stage_windows_variance_fieldsGenqlSelection{ + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "tournament_stage_windows" */ +export interface tournament_stage_windows_variance_order_by {round?: (order_by | null)} + + +/** columns and relationships of "tournament_stages" */ +export interface tournament_stagesGenqlSelection{ + /** An array relationship */ + brackets?: (tournament_bracketsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_brackets_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_brackets_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_brackets_bool_exp | null)} }) + /** An aggregate relationship */ + brackets_aggregate?: (tournament_brackets_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_brackets_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_brackets_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_brackets_bool_exp | null)} }) + decider_best_of?: boolean | number + default_best_of?: boolean | number + /** An object relationship */ + e_tournament_stage_type?: e_tournament_stage_typesGenqlSelection + final_map_advantage?: boolean | number + groups?: boolean | number + id?: boolean | number + match_options_id?: boolean | number + max_rounds?: boolean | number + max_teams?: boolean | number + min_teams?: boolean | number + /** An object relationship */ + options?: match_optionsGenqlSelection + order?: boolean | number + /** An array relationship */ + results?: (v_team_stage_resultsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_team_stage_results_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_team_stage_results_order_by[] | null), + /** filter the rows returned */ + where?: (v_team_stage_results_bool_exp | null)} }) + /** An aggregate relationship */ + results_aggregate?: (v_team_stage_results_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_team_stage_results_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_team_stage_results_order_by[] | null), + /** filter the rows returned */ + where?: (v_team_stage_results_bool_exp | null)} }) + settings?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number + swiss_no_elimination?: boolean | number + third_place_match?: boolean | number + /** An object relationship */ + tournament?: tournamentsGenqlSelection + tournament_id?: boolean | number + type?: boolean | number + /** An array relationship */ + windows?: (tournament_stage_windowsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_stage_windows_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_stage_windows_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_stage_windows_bool_exp | null)} }) + /** An aggregate relationship */ + windows_aggregate?: (tournament_stage_windows_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_stage_windows_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_stage_windows_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_stage_windows_bool_exp | null)} }) + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "tournament_stages" */ +export interface tournament_stages_aggregateGenqlSelection{ + aggregate?: tournament_stages_aggregate_fieldsGenqlSelection + nodes?: tournament_stagesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface tournament_stages_aggregate_bool_exp {bool_and?: (tournament_stages_aggregate_bool_exp_bool_and | null),bool_or?: (tournament_stages_aggregate_bool_exp_bool_or | null),count?: (tournament_stages_aggregate_bool_exp_count | null)} + +export interface tournament_stages_aggregate_bool_exp_bool_and {arguments: tournament_stages_select_column_tournament_stages_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (tournament_stages_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface tournament_stages_aggregate_bool_exp_bool_or {arguments: tournament_stages_select_column_tournament_stages_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (tournament_stages_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface tournament_stages_aggregate_bool_exp_count {arguments?: (tournament_stages_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (tournament_stages_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "tournament_stages" */ +export interface tournament_stages_aggregate_fieldsGenqlSelection{ + avg?: tournament_stages_avg_fieldsGenqlSelection + count?: { __args: {columns?: (tournament_stages_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: tournament_stages_max_fieldsGenqlSelection + min?: tournament_stages_min_fieldsGenqlSelection + stddev?: tournament_stages_stddev_fieldsGenqlSelection + stddev_pop?: tournament_stages_stddev_pop_fieldsGenqlSelection + stddev_samp?: tournament_stages_stddev_samp_fieldsGenqlSelection + sum?: tournament_stages_sum_fieldsGenqlSelection + var_pop?: tournament_stages_var_pop_fieldsGenqlSelection + var_samp?: tournament_stages_var_samp_fieldsGenqlSelection + variance?: tournament_stages_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "tournament_stages" */ +export interface tournament_stages_aggregate_order_by {avg?: (tournament_stages_avg_order_by | null),count?: (order_by | null),max?: (tournament_stages_max_order_by | null),min?: (tournament_stages_min_order_by | null),stddev?: (tournament_stages_stddev_order_by | null),stddev_pop?: (tournament_stages_stddev_pop_order_by | null),stddev_samp?: (tournament_stages_stddev_samp_order_by | null),sum?: (tournament_stages_sum_order_by | null),var_pop?: (tournament_stages_var_pop_order_by | null),var_samp?: (tournament_stages_var_samp_order_by | null),variance?: (tournament_stages_variance_order_by | null)} + + +/** append existing jsonb value of filtered columns with new jsonb value */ +export interface tournament_stages_append_input {settings?: (Scalars['jsonb'] | null)} + + +/** input type for inserting array relation for remote table "tournament_stages" */ +export interface tournament_stages_arr_rel_insert_input {data: tournament_stages_insert_input[], +/** upsert condition */ +on_conflict?: (tournament_stages_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface tournament_stages_avg_fieldsGenqlSelection{ + decider_best_of?: boolean | number + default_best_of?: boolean | number + final_map_advantage?: boolean | number + groups?: boolean | number + max_rounds?: boolean | number + max_teams?: boolean | number + min_teams?: boolean | number + order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "tournament_stages" */ +export interface tournament_stages_avg_order_by {decider_best_of?: (order_by | null),default_best_of?: (order_by | null),final_map_advantage?: (order_by | null),groups?: (order_by | null),max_rounds?: (order_by | null),max_teams?: (order_by | null),min_teams?: (order_by | null),order?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "tournament_stages". All fields are combined with a logical 'AND'. */ +export interface tournament_stages_bool_exp {_and?: (tournament_stages_bool_exp[] | null),_not?: (tournament_stages_bool_exp | null),_or?: (tournament_stages_bool_exp[] | null),brackets?: (tournament_brackets_bool_exp | null),brackets_aggregate?: (tournament_brackets_aggregate_bool_exp | null),decider_best_of?: (Int_comparison_exp | null),default_best_of?: (Int_comparison_exp | null),e_tournament_stage_type?: (e_tournament_stage_types_bool_exp | null),final_map_advantage?: (Int_comparison_exp | null),groups?: (Int_comparison_exp | null),id?: (uuid_comparison_exp | null),match_options_id?: (uuid_comparison_exp | null),max_rounds?: (Int_comparison_exp | null),max_teams?: (Int_comparison_exp | null),min_teams?: (Int_comparison_exp | null),options?: (match_options_bool_exp | null),order?: (Int_comparison_exp | null),results?: (v_team_stage_results_bool_exp | null),results_aggregate?: (v_team_stage_results_aggregate_bool_exp | null),settings?: (jsonb_comparison_exp | null),swiss_no_elimination?: (Boolean_comparison_exp | null),third_place_match?: (Boolean_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null),type?: (e_tournament_stage_types_enum_comparison_exp | null),windows?: (tournament_stage_windows_bool_exp | null),windows_aggregate?: (tournament_stage_windows_aggregate_bool_exp | null)} + + +/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ +export interface tournament_stages_delete_at_path_input {settings?: (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 tournament_stages_delete_elem_input {settings?: (Scalars['Int'] | null)} + + +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +export interface tournament_stages_delete_key_input {settings?: (Scalars['String'] | null)} + + +/** input type for incrementing numeric columns in table "tournament_stages" */ +export interface tournament_stages_inc_input {decider_best_of?: (Scalars['Int'] | null),default_best_of?: (Scalars['Int'] | null),final_map_advantage?: (Scalars['Int'] | null),groups?: (Scalars['Int'] | null),max_rounds?: (Scalars['Int'] | null),max_teams?: (Scalars['Int'] | null),min_teams?: (Scalars['Int'] | null),order?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "tournament_stages" */ +export interface tournament_stages_insert_input {brackets?: (tournament_brackets_arr_rel_insert_input | null),decider_best_of?: (Scalars['Int'] | null),default_best_of?: (Scalars['Int'] | null),e_tournament_stage_type?: (e_tournament_stage_types_obj_rel_insert_input | null),final_map_advantage?: (Scalars['Int'] | null),groups?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),max_rounds?: (Scalars['Int'] | null),max_teams?: (Scalars['Int'] | null),min_teams?: (Scalars['Int'] | null),options?: (match_options_obj_rel_insert_input | null),order?: (Scalars['Int'] | null),results?: (v_team_stage_results_arr_rel_insert_input | null),settings?: (Scalars['jsonb'] | null),swiss_no_elimination?: (Scalars['Boolean'] | null),third_place_match?: (Scalars['Boolean'] | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null),type?: (e_tournament_stage_types_enum | null),windows?: (tournament_stage_windows_arr_rel_insert_input | null)} + + +/** aggregate max on columns */ +export interface tournament_stages_max_fieldsGenqlSelection{ + decider_best_of?: boolean | number + default_best_of?: boolean | number + final_map_advantage?: boolean | number + groups?: boolean | number + id?: boolean | number + match_options_id?: boolean | number + max_rounds?: boolean | number + max_teams?: boolean | number + min_teams?: boolean | number + order?: boolean | number + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "tournament_stages" */ +export interface tournament_stages_max_order_by {decider_best_of?: (order_by | null),default_best_of?: (order_by | null),final_map_advantage?: (order_by | null),groups?: (order_by | null),id?: (order_by | null),match_options_id?: (order_by | null),max_rounds?: (order_by | null),max_teams?: (order_by | null),min_teams?: (order_by | null),order?: (order_by | null),tournament_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface tournament_stages_min_fieldsGenqlSelection{ + decider_best_of?: boolean | number + default_best_of?: boolean | number + final_map_advantage?: boolean | number + groups?: boolean | number + id?: boolean | number + match_options_id?: boolean | number + max_rounds?: boolean | number + max_teams?: boolean | number + min_teams?: boolean | number + order?: boolean | number + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "tournament_stages" */ +export interface tournament_stages_min_order_by {decider_best_of?: (order_by | null),default_best_of?: (order_by | null),final_map_advantage?: (order_by | null),groups?: (order_by | null),id?: (order_by | null),match_options_id?: (order_by | null),max_rounds?: (order_by | null),max_teams?: (order_by | null),min_teams?: (order_by | null),order?: (order_by | null),tournament_id?: (order_by | null)} + + +/** response of any mutation on the table "tournament_stages" */ +export interface tournament_stages_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: tournament_stagesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "tournament_stages" */ +export interface tournament_stages_obj_rel_insert_input {data: tournament_stages_insert_input, +/** upsert condition */ +on_conflict?: (tournament_stages_on_conflict | null)} + + +/** on_conflict condition type for table "tournament_stages" */ +export interface tournament_stages_on_conflict {constraint: tournament_stages_constraint,update_columns?: tournament_stages_update_column[],where?: (tournament_stages_bool_exp | null)} + + +/** Ordering options when selecting data from "tournament_stages". */ +export interface tournament_stages_order_by {brackets_aggregate?: (tournament_brackets_aggregate_order_by | null),decider_best_of?: (order_by | null),default_best_of?: (order_by | null),e_tournament_stage_type?: (e_tournament_stage_types_order_by | null),final_map_advantage?: (order_by | null),groups?: (order_by | null),id?: (order_by | null),match_options_id?: (order_by | null),max_rounds?: (order_by | null),max_teams?: (order_by | null),min_teams?: (order_by | null),options?: (match_options_order_by | null),order?: (order_by | null),results_aggregate?: (v_team_stage_results_aggregate_order_by | null),settings?: (order_by | null),swiss_no_elimination?: (order_by | null),third_place_match?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null),type?: (order_by | null),windows_aggregate?: (tournament_stage_windows_aggregate_order_by | null)} + + +/** primary key columns input for table: tournament_stages */ +export interface tournament_stages_pk_columns_input {id: Scalars['uuid']} + + +/** prepend existing jsonb value of filtered columns with new jsonb value */ +export interface tournament_stages_prepend_input {settings?: (Scalars['jsonb'] | null)} + + +/** input type for updating data in table "tournament_stages" */ +export interface tournament_stages_set_input {decider_best_of?: (Scalars['Int'] | null),default_best_of?: (Scalars['Int'] | null),final_map_advantage?: (Scalars['Int'] | null),groups?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),max_rounds?: (Scalars['Int'] | null),max_teams?: (Scalars['Int'] | null),min_teams?: (Scalars['Int'] | null),order?: (Scalars['Int'] | null),settings?: (Scalars['jsonb'] | null),swiss_no_elimination?: (Scalars['Boolean'] | null),third_place_match?: (Scalars['Boolean'] | null),tournament_id?: (Scalars['uuid'] | null),type?: (e_tournament_stage_types_enum | null)} + + +/** aggregate stddev on columns */ +export interface tournament_stages_stddev_fieldsGenqlSelection{ + decider_best_of?: boolean | number + default_best_of?: boolean | number + final_map_advantage?: boolean | number + groups?: boolean | number + max_rounds?: boolean | number + max_teams?: boolean | number + min_teams?: boolean | number + order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "tournament_stages" */ +export interface tournament_stages_stddev_order_by {decider_best_of?: (order_by | null),default_best_of?: (order_by | null),final_map_advantage?: (order_by | null),groups?: (order_by | null),max_rounds?: (order_by | null),max_teams?: (order_by | null),min_teams?: (order_by | null),order?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface tournament_stages_stddev_pop_fieldsGenqlSelection{ + decider_best_of?: boolean | number + default_best_of?: boolean | number + final_map_advantage?: boolean | number + groups?: boolean | number + max_rounds?: boolean | number + max_teams?: boolean | number + min_teams?: boolean | number + order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "tournament_stages" */ +export interface tournament_stages_stddev_pop_order_by {decider_best_of?: (order_by | null),default_best_of?: (order_by | null),final_map_advantage?: (order_by | null),groups?: (order_by | null),max_rounds?: (order_by | null),max_teams?: (order_by | null),min_teams?: (order_by | null),order?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface tournament_stages_stddev_samp_fieldsGenqlSelection{ + decider_best_of?: boolean | number + default_best_of?: boolean | number + final_map_advantage?: boolean | number + groups?: boolean | number + max_rounds?: boolean | number + max_teams?: boolean | number + min_teams?: boolean | number + order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "tournament_stages" */ +export interface tournament_stages_stddev_samp_order_by {decider_best_of?: (order_by | null),default_best_of?: (order_by | null),final_map_advantage?: (order_by | null),groups?: (order_by | null),max_rounds?: (order_by | null),max_teams?: (order_by | null),min_teams?: (order_by | null),order?: (order_by | null)} + + +/** Streaming cursor of the table "tournament_stages" */ +export interface tournament_stages_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: tournament_stages_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface tournament_stages_stream_cursor_value_input {decider_best_of?: (Scalars['Int'] | null),default_best_of?: (Scalars['Int'] | null),final_map_advantage?: (Scalars['Int'] | null),groups?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),max_rounds?: (Scalars['Int'] | null),max_teams?: (Scalars['Int'] | null),min_teams?: (Scalars['Int'] | null),order?: (Scalars['Int'] | null),settings?: (Scalars['jsonb'] | null),swiss_no_elimination?: (Scalars['Boolean'] | null),third_place_match?: (Scalars['Boolean'] | null),tournament_id?: (Scalars['uuid'] | null),type?: (e_tournament_stage_types_enum | null)} + + +/** aggregate sum on columns */ +export interface tournament_stages_sum_fieldsGenqlSelection{ + decider_best_of?: boolean | number + default_best_of?: boolean | number + final_map_advantage?: boolean | number + groups?: boolean | number + max_rounds?: boolean | number + max_teams?: boolean | number + min_teams?: boolean | number + order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "tournament_stages" */ +export interface tournament_stages_sum_order_by {decider_best_of?: (order_by | null),default_best_of?: (order_by | null),final_map_advantage?: (order_by | null),groups?: (order_by | null),max_rounds?: (order_by | null),max_teams?: (order_by | null),min_teams?: (order_by | null),order?: (order_by | null)} + +export interface tournament_stages_updates { +/** append existing jsonb value of filtered columns with new jsonb value */ +_append?: (tournament_stages_append_input | null), +/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ +_delete_at_path?: (tournament_stages_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?: (tournament_stages_delete_elem_input | null), +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +_delete_key?: (tournament_stages_delete_key_input | null), +/** increments the numeric columns with given value of the filtered values */ +_inc?: (tournament_stages_inc_input | null), +/** prepend existing jsonb value of filtered columns with new jsonb value */ +_prepend?: (tournament_stages_prepend_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (tournament_stages_set_input | null), +/** filter the rows which have to be updated */ +where: tournament_stages_bool_exp} + + +/** aggregate var_pop on columns */ +export interface tournament_stages_var_pop_fieldsGenqlSelection{ + decider_best_of?: boolean | number + default_best_of?: boolean | number + final_map_advantage?: boolean | number + groups?: boolean | number + max_rounds?: boolean | number + max_teams?: boolean | number + min_teams?: boolean | number + order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "tournament_stages" */ +export interface tournament_stages_var_pop_order_by {decider_best_of?: (order_by | null),default_best_of?: (order_by | null),final_map_advantage?: (order_by | null),groups?: (order_by | null),max_rounds?: (order_by | null),max_teams?: (order_by | null),min_teams?: (order_by | null),order?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface tournament_stages_var_samp_fieldsGenqlSelection{ + decider_best_of?: boolean | number + default_best_of?: boolean | number + final_map_advantage?: boolean | number + groups?: boolean | number + max_rounds?: boolean | number + max_teams?: boolean | number + min_teams?: boolean | number + order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "tournament_stages" */ +export interface tournament_stages_var_samp_order_by {decider_best_of?: (order_by | null),default_best_of?: (order_by | null),final_map_advantage?: (order_by | null),groups?: (order_by | null),max_rounds?: (order_by | null),max_teams?: (order_by | null),min_teams?: (order_by | null),order?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface tournament_stages_variance_fieldsGenqlSelection{ + decider_best_of?: boolean | number + default_best_of?: boolean | number + final_map_advantage?: boolean | number + groups?: boolean | number + max_rounds?: boolean | number + max_teams?: boolean | number + min_teams?: boolean | number + order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "tournament_stages" */ +export interface tournament_stages_variance_order_by {decider_best_of?: (order_by | null),default_best_of?: (order_by | null),final_map_advantage?: (order_by | null),groups?: (order_by | null),max_rounds?: (order_by | null),max_teams?: (order_by | null),min_teams?: (order_by | null),order?: (order_by | null)} + + +/** columns and relationships of "tournament_team_invites" */ +export interface tournament_team_invitesGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + /** An object relationship */ + invited_by?: playersGenqlSelection + invited_by_player_steam_id?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + steam_id?: boolean | number + /** An object relationship */ + team?: tournament_teamsGenqlSelection + tournament_team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "tournament_team_invites" */ +export interface tournament_team_invites_aggregateGenqlSelection{ + aggregate?: tournament_team_invites_aggregate_fieldsGenqlSelection + nodes?: tournament_team_invitesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface tournament_team_invites_aggregate_bool_exp {count?: (tournament_team_invites_aggregate_bool_exp_count | null)} + +export interface tournament_team_invites_aggregate_bool_exp_count {arguments?: (tournament_team_invites_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (tournament_team_invites_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "tournament_team_invites" */ +export interface tournament_team_invites_aggregate_fieldsGenqlSelection{ + avg?: tournament_team_invites_avg_fieldsGenqlSelection + count?: { __args: {columns?: (tournament_team_invites_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: tournament_team_invites_max_fieldsGenqlSelection + min?: tournament_team_invites_min_fieldsGenqlSelection + stddev?: tournament_team_invites_stddev_fieldsGenqlSelection + stddev_pop?: tournament_team_invites_stddev_pop_fieldsGenqlSelection + stddev_samp?: tournament_team_invites_stddev_samp_fieldsGenqlSelection + sum?: tournament_team_invites_sum_fieldsGenqlSelection + var_pop?: tournament_team_invites_var_pop_fieldsGenqlSelection + var_samp?: tournament_team_invites_var_samp_fieldsGenqlSelection + variance?: tournament_team_invites_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "tournament_team_invites" */ +export interface tournament_team_invites_aggregate_order_by {avg?: (tournament_team_invites_avg_order_by | null),count?: (order_by | null),max?: (tournament_team_invites_max_order_by | null),min?: (tournament_team_invites_min_order_by | null),stddev?: (tournament_team_invites_stddev_order_by | null),stddev_pop?: (tournament_team_invites_stddev_pop_order_by | null),stddev_samp?: (tournament_team_invites_stddev_samp_order_by | null),sum?: (tournament_team_invites_sum_order_by | null),var_pop?: (tournament_team_invites_var_pop_order_by | null),var_samp?: (tournament_team_invites_var_samp_order_by | null),variance?: (tournament_team_invites_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "tournament_team_invites" */ +export interface tournament_team_invites_arr_rel_insert_input {data: tournament_team_invites_insert_input[], +/** upsert condition */ +on_conflict?: (tournament_team_invites_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface tournament_team_invites_avg_fieldsGenqlSelection{ + invited_by_player_steam_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "tournament_team_invites" */ +export interface tournament_team_invites_avg_order_by {invited_by_player_steam_id?: (order_by | null),steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "tournament_team_invites". All fields are combined with a logical 'AND'. */ +export interface tournament_team_invites_bool_exp {_and?: (tournament_team_invites_bool_exp[] | null),_not?: (tournament_team_invites_bool_exp | null),_or?: (tournament_team_invites_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),invited_by?: (players_bool_exp | null),invited_by_player_steam_id?: (bigint_comparison_exp | null),player?: (players_bool_exp | null),steam_id?: (bigint_comparison_exp | null),team?: (tournament_teams_bool_exp | null),tournament_team_id?: (uuid_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "tournament_team_invites" */ +export interface tournament_team_invites_inc_input {invited_by_player_steam_id?: (Scalars['bigint'] | null),steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "tournament_team_invites" */ +export interface tournament_team_invites_insert_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),invited_by?: (players_obj_rel_insert_input | null),invited_by_player_steam_id?: (Scalars['bigint'] | null),player?: (players_obj_rel_insert_input | null),steam_id?: (Scalars['bigint'] | null),team?: (tournament_teams_obj_rel_insert_input | null),tournament_team_id?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface tournament_team_invites_max_fieldsGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + invited_by_player_steam_id?: boolean | number + steam_id?: boolean | number + tournament_team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "tournament_team_invites" */ +export interface tournament_team_invites_max_order_by {created_at?: (order_by | null),id?: (order_by | null),invited_by_player_steam_id?: (order_by | null),steam_id?: (order_by | null),tournament_team_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface tournament_team_invites_min_fieldsGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + invited_by_player_steam_id?: boolean | number + steam_id?: boolean | number + tournament_team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "tournament_team_invites" */ +export interface tournament_team_invites_min_order_by {created_at?: (order_by | null),id?: (order_by | null),invited_by_player_steam_id?: (order_by | null),steam_id?: (order_by | null),tournament_team_id?: (order_by | null)} + + +/** response of any mutation on the table "tournament_team_invites" */ +export interface tournament_team_invites_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: tournament_team_invitesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "tournament_team_invites" */ +export interface tournament_team_invites_on_conflict {constraint: tournament_team_invites_constraint,update_columns?: tournament_team_invites_update_column[],where?: (tournament_team_invites_bool_exp | null)} + + +/** Ordering options when selecting data from "tournament_team_invites". */ +export interface tournament_team_invites_order_by {created_at?: (order_by | null),id?: (order_by | null),invited_by?: (players_order_by | null),invited_by_player_steam_id?: (order_by | null),player?: (players_order_by | null),steam_id?: (order_by | null),team?: (tournament_teams_order_by | null),tournament_team_id?: (order_by | null)} + + +/** primary key columns input for table: tournament_team_invites */ +export interface tournament_team_invites_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "tournament_team_invites" */ +export interface tournament_team_invites_set_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),invited_by_player_steam_id?: (Scalars['bigint'] | null),steam_id?: (Scalars['bigint'] | null),tournament_team_id?: (Scalars['uuid'] | null)} + + +/** aggregate stddev on columns */ +export interface tournament_team_invites_stddev_fieldsGenqlSelection{ + invited_by_player_steam_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "tournament_team_invites" */ +export interface tournament_team_invites_stddev_order_by {invited_by_player_steam_id?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface tournament_team_invites_stddev_pop_fieldsGenqlSelection{ + invited_by_player_steam_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "tournament_team_invites" */ +export interface tournament_team_invites_stddev_pop_order_by {invited_by_player_steam_id?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface tournament_team_invites_stddev_samp_fieldsGenqlSelection{ + invited_by_player_steam_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "tournament_team_invites" */ +export interface tournament_team_invites_stddev_samp_order_by {invited_by_player_steam_id?: (order_by | null),steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "tournament_team_invites" */ +export interface tournament_team_invites_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: tournament_team_invites_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface tournament_team_invites_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),invited_by_player_steam_id?: (Scalars['bigint'] | null),steam_id?: (Scalars['bigint'] | null),tournament_team_id?: (Scalars['uuid'] | null)} + + +/** aggregate sum on columns */ +export interface tournament_team_invites_sum_fieldsGenqlSelection{ + invited_by_player_steam_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "tournament_team_invites" */ +export interface tournament_team_invites_sum_order_by {invited_by_player_steam_id?: (order_by | null),steam_id?: (order_by | null)} + +export interface tournament_team_invites_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (tournament_team_invites_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (tournament_team_invites_set_input | null), +/** filter the rows which have to be updated */ +where: tournament_team_invites_bool_exp} + + +/** aggregate var_pop on columns */ +export interface tournament_team_invites_var_pop_fieldsGenqlSelection{ + invited_by_player_steam_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "tournament_team_invites" */ +export interface tournament_team_invites_var_pop_order_by {invited_by_player_steam_id?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface tournament_team_invites_var_samp_fieldsGenqlSelection{ + invited_by_player_steam_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "tournament_team_invites" */ +export interface tournament_team_invites_var_samp_order_by {invited_by_player_steam_id?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface tournament_team_invites_variance_fieldsGenqlSelection{ + invited_by_player_steam_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "tournament_team_invites" */ +export interface tournament_team_invites_variance_order_by {invited_by_player_steam_id?: (order_by | null),steam_id?: (order_by | null)} + + +/** columns and relationships of "tournament_team_roster" */ +export interface tournament_team_rosterGenqlSelection{ + checked_in_at?: boolean | number + /** An object relationship */ + e_team_role?: e_team_rolesGenqlSelection + /** An object relationship */ + player?: playersGenqlSelection + player_steam_id?: boolean | number + role?: boolean | number + /** A computed field, executes function "tournament_team_roster_target_eligible" */ + target_eligible?: boolean | number + /** An object relationship */ + tournament?: tournamentsGenqlSelection + tournament_id?: boolean | number + /** An object relationship */ + tournament_team?: tournament_teamsGenqlSelection + tournament_team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "tournament_team_roster" */ +export interface tournament_team_roster_aggregateGenqlSelection{ + aggregate?: tournament_team_roster_aggregate_fieldsGenqlSelection + nodes?: tournament_team_rosterGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface tournament_team_roster_aggregate_bool_exp {count?: (tournament_team_roster_aggregate_bool_exp_count | null)} + +export interface tournament_team_roster_aggregate_bool_exp_count {arguments?: (tournament_team_roster_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (tournament_team_roster_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "tournament_team_roster" */ +export interface tournament_team_roster_aggregate_fieldsGenqlSelection{ + avg?: tournament_team_roster_avg_fieldsGenqlSelection + count?: { __args: {columns?: (tournament_team_roster_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: tournament_team_roster_max_fieldsGenqlSelection + min?: tournament_team_roster_min_fieldsGenqlSelection + stddev?: tournament_team_roster_stddev_fieldsGenqlSelection + stddev_pop?: tournament_team_roster_stddev_pop_fieldsGenqlSelection + stddev_samp?: tournament_team_roster_stddev_samp_fieldsGenqlSelection + sum?: tournament_team_roster_sum_fieldsGenqlSelection + var_pop?: tournament_team_roster_var_pop_fieldsGenqlSelection + var_samp?: tournament_team_roster_var_samp_fieldsGenqlSelection + variance?: tournament_team_roster_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "tournament_team_roster" */ +export interface tournament_team_roster_aggregate_order_by {avg?: (tournament_team_roster_avg_order_by | null),count?: (order_by | null),max?: (tournament_team_roster_max_order_by | null),min?: (tournament_team_roster_min_order_by | null),stddev?: (tournament_team_roster_stddev_order_by | null),stddev_pop?: (tournament_team_roster_stddev_pop_order_by | null),stddev_samp?: (tournament_team_roster_stddev_samp_order_by | null),sum?: (tournament_team_roster_sum_order_by | null),var_pop?: (tournament_team_roster_var_pop_order_by | null),var_samp?: (tournament_team_roster_var_samp_order_by | null),variance?: (tournament_team_roster_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "tournament_team_roster" */ +export interface tournament_team_roster_arr_rel_insert_input {data: tournament_team_roster_insert_input[], +/** upsert condition */ +on_conflict?: (tournament_team_roster_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface tournament_team_roster_avg_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "tournament_team_roster" */ +export interface tournament_team_roster_avg_order_by {player_steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "tournament_team_roster". All fields are combined with a logical 'AND'. */ +export interface tournament_team_roster_bool_exp {_and?: (tournament_team_roster_bool_exp[] | null),_not?: (tournament_team_roster_bool_exp | null),_or?: (tournament_team_roster_bool_exp[] | null),checked_in_at?: (timestamptz_comparison_exp | null),e_team_role?: (e_team_roles_bool_exp | null),player?: (players_bool_exp | null),player_steam_id?: (bigint_comparison_exp | null),role?: (e_team_roles_enum_comparison_exp | null),target_eligible?: (Boolean_comparison_exp | null),tournament?: (tournaments_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 "tournament_team_roster" */ +export interface tournament_team_roster_inc_input {player_steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "tournament_team_roster" */ +export interface tournament_team_roster_insert_input {checked_in_at?: (Scalars['timestamptz'] | null),e_team_role?: (e_team_roles_obj_rel_insert_input | null),player?: (players_obj_rel_insert_input | null),player_steam_id?: (Scalars['bigint'] | null),role?: (e_team_roles_enum | null),tournament?: (tournaments_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 tournament_team_roster_max_fieldsGenqlSelection{ + checked_in_at?: boolean | number + player_steam_id?: boolean | number + tournament_id?: boolean | number + tournament_team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "tournament_team_roster" */ +export interface tournament_team_roster_max_order_by {checked_in_at?: (order_by | null),player_steam_id?: (order_by | null),tournament_id?: (order_by | null),tournament_team_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface tournament_team_roster_min_fieldsGenqlSelection{ + checked_in_at?: boolean | number + player_steam_id?: boolean | number + tournament_id?: boolean | number + tournament_team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "tournament_team_roster" */ +export interface tournament_team_roster_min_order_by {checked_in_at?: (order_by | null),player_steam_id?: (order_by | null),tournament_id?: (order_by | null),tournament_team_id?: (order_by | null)} + + +/** response of any mutation on the table "tournament_team_roster" */ +export interface tournament_team_roster_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: tournament_team_rosterGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "tournament_team_roster" */ +export interface tournament_team_roster_on_conflict {constraint: tournament_team_roster_constraint,update_columns?: tournament_team_roster_update_column[],where?: (tournament_team_roster_bool_exp | null)} + + +/** Ordering options when selecting data from "tournament_team_roster". */ +export interface tournament_team_roster_order_by {checked_in_at?: (order_by | null),e_team_role?: (e_team_roles_order_by | null),player?: (players_order_by | null),player_steam_id?: (order_by | null),role?: (order_by | null),target_eligible?: (order_by | null),tournament?: (tournaments_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: tournament_team_roster */ +export interface tournament_team_roster_pk_columns_input {player_steam_id: Scalars['bigint'],tournament_id: Scalars['uuid']} + + +/** input type for updating data in table "tournament_team_roster" */ +export interface tournament_team_roster_set_input {checked_in_at?: (Scalars['timestamptz'] | null),player_steam_id?: (Scalars['bigint'] | null),role?: (e_team_roles_enum | null),tournament_id?: (Scalars['uuid'] | null),tournament_team_id?: (Scalars['uuid'] | null)} + + +/** aggregate stddev on columns */ +export interface tournament_team_roster_stddev_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "tournament_team_roster" */ +export interface tournament_team_roster_stddev_order_by {player_steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface tournament_team_roster_stddev_pop_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "tournament_team_roster" */ +export interface tournament_team_roster_stddev_pop_order_by {player_steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface tournament_team_roster_stddev_samp_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "tournament_team_roster" */ +export interface tournament_team_roster_stddev_samp_order_by {player_steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "tournament_team_roster" */ +export interface tournament_team_roster_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: tournament_team_roster_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface tournament_team_roster_stream_cursor_value_input {checked_in_at?: (Scalars['timestamptz'] | null),player_steam_id?: (Scalars['bigint'] | null),role?: (e_team_roles_enum | null),tournament_id?: (Scalars['uuid'] | null),tournament_team_id?: (Scalars['uuid'] | null)} + + +/** aggregate sum on columns */ +export interface tournament_team_roster_sum_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "tournament_team_roster" */ +export interface tournament_team_roster_sum_order_by {player_steam_id?: (order_by | null)} + +export interface tournament_team_roster_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (tournament_team_roster_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (tournament_team_roster_set_input | null), +/** filter the rows which have to be updated */ +where: tournament_team_roster_bool_exp} + + +/** aggregate var_pop on columns */ +export interface tournament_team_roster_var_pop_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "tournament_team_roster" */ +export interface tournament_team_roster_var_pop_order_by {player_steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface tournament_team_roster_var_samp_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "tournament_team_roster" */ +export interface tournament_team_roster_var_samp_order_by {player_steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface tournament_team_roster_variance_fieldsGenqlSelection{ + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "tournament_team_roster" */ +export interface tournament_team_roster_variance_order_by {player_steam_id?: (order_by | null)} + + +/** columns and relationships of "tournament_teams" */ +export interface tournament_teamsGenqlSelection{ + /** A computed field, executes function "can_manage_tournament_team" */ + can_manage?: boolean | number + /** An object relationship */ + captain?: playersGenqlSelection + captain_steam_id?: boolean | number + /** A computed field, executes function "tournament_team_checked_in" */ + checked_in?: boolean | number + checked_in_at?: boolean | number + created_at?: boolean | number + /** An object relationship */ + creator?: playersGenqlSelection + eligible_at?: boolean | number + /** An array relationship */ + free_agents?: (tournament_free_agentsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_free_agents_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_free_agents_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_free_agents_bool_exp | null)} }) + /** An aggregate relationship */ + free_agents_aggregate?: (tournament_free_agents_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_free_agents_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_free_agents_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_free_agents_bool_exp | null)} }) + id?: boolean | number + /** An array relationship */ + invites?: (tournament_team_invitesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_team_invites_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_invites_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_team_invites_bool_exp | null)} }) + /** An aggregate relationship */ + invites_aggregate?: (tournament_team_invites_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_team_invites_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_invites_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_team_invites_bool_exp | null)} }) + /** Created by draft_tournament_free_agent_teams rather than registered */ + is_drafted?: boolean | number + name?: boolean | number + owner_steam_id?: boolean | number + /** An object relationship */ + results?: v_team_stage_resultsGenqlSelection + /** An array relationship */ + roster?: (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 */ + roster_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)} }) + seed?: boolean | number + short_name?: boolean | number + /** An object relationship */ + team?: teamsGenqlSelection + team_id?: boolean | number + /** An object relationship */ + tournament?: tournamentsGenqlSelection + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "tournament_teams" */ +export interface tournament_teams_aggregateGenqlSelection{ + aggregate?: tournament_teams_aggregate_fieldsGenqlSelection + nodes?: tournament_teamsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface tournament_teams_aggregate_bool_exp {bool_and?: (tournament_teams_aggregate_bool_exp_bool_and | null),bool_or?: (tournament_teams_aggregate_bool_exp_bool_or | null),count?: (tournament_teams_aggregate_bool_exp_count | null)} + +export interface tournament_teams_aggregate_bool_exp_bool_and {arguments: tournament_teams_select_column_tournament_teams_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (tournament_teams_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface tournament_teams_aggregate_bool_exp_bool_or {arguments: tournament_teams_select_column_tournament_teams_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (tournament_teams_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface tournament_teams_aggregate_bool_exp_count {arguments?: (tournament_teams_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (tournament_teams_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "tournament_teams" */ +export interface tournament_teams_aggregate_fieldsGenqlSelection{ + avg?: tournament_teams_avg_fieldsGenqlSelection + count?: { __args: {columns?: (tournament_teams_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: tournament_teams_max_fieldsGenqlSelection + min?: tournament_teams_min_fieldsGenqlSelection + stddev?: tournament_teams_stddev_fieldsGenqlSelection + stddev_pop?: tournament_teams_stddev_pop_fieldsGenqlSelection + stddev_samp?: tournament_teams_stddev_samp_fieldsGenqlSelection + sum?: tournament_teams_sum_fieldsGenqlSelection + var_pop?: tournament_teams_var_pop_fieldsGenqlSelection + var_samp?: tournament_teams_var_samp_fieldsGenqlSelection + variance?: tournament_teams_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "tournament_teams" */ +export interface tournament_teams_aggregate_order_by {avg?: (tournament_teams_avg_order_by | null),count?: (order_by | null),max?: (tournament_teams_max_order_by | null),min?: (tournament_teams_min_order_by | null),stddev?: (tournament_teams_stddev_order_by | null),stddev_pop?: (tournament_teams_stddev_pop_order_by | null),stddev_samp?: (tournament_teams_stddev_samp_order_by | null),sum?: (tournament_teams_sum_order_by | null),var_pop?: (tournament_teams_var_pop_order_by | null),var_samp?: (tournament_teams_var_samp_order_by | null),variance?: (tournament_teams_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "tournament_teams" */ +export interface tournament_teams_arr_rel_insert_input {data: tournament_teams_insert_input[], +/** upsert condition */ +on_conflict?: (tournament_teams_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface tournament_teams_avg_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + owner_steam_id?: boolean | number + seed?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "tournament_teams" */ +export interface tournament_teams_avg_order_by {captain_steam_id?: (order_by | null),owner_steam_id?: (order_by | null),seed?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "tournament_teams". All fields are combined with a logical 'AND'. */ +export interface tournament_teams_bool_exp {_and?: (tournament_teams_bool_exp[] | null),_not?: (tournament_teams_bool_exp | null),_or?: (tournament_teams_bool_exp[] | null),can_manage?: (Boolean_comparison_exp | null),captain?: (players_bool_exp | null),captain_steam_id?: (bigint_comparison_exp | null),checked_in?: (Boolean_comparison_exp | null),checked_in_at?: (timestamptz_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),creator?: (players_bool_exp | null),eligible_at?: (timestamptz_comparison_exp | null),free_agents?: (tournament_free_agents_bool_exp | null),free_agents_aggregate?: (tournament_free_agents_aggregate_bool_exp | null),id?: (uuid_comparison_exp | null),invites?: (tournament_team_invites_bool_exp | null),invites_aggregate?: (tournament_team_invites_aggregate_bool_exp | null),is_drafted?: (Boolean_comparison_exp | null),name?: (String_comparison_exp | null),owner_steam_id?: (bigint_comparison_exp | null),results?: (v_team_stage_results_bool_exp | null),roster?: (tournament_team_roster_bool_exp | null),roster_aggregate?: (tournament_team_roster_aggregate_bool_exp | null),seed?: (Int_comparison_exp | null),short_name?: (String_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "tournament_teams" */ +export interface tournament_teams_inc_input {captain_steam_id?: (Scalars['bigint'] | null),owner_steam_id?: (Scalars['bigint'] | null),seed?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "tournament_teams" */ +export interface tournament_teams_insert_input {captain?: (players_obj_rel_insert_input | null),captain_steam_id?: (Scalars['bigint'] | null),checked_in_at?: (Scalars['timestamptz'] | null),created_at?: (Scalars['timestamptz'] | null),creator?: (players_obj_rel_insert_input | null),eligible_at?: (Scalars['timestamptz'] | null),free_agents?: (tournament_free_agents_arr_rel_insert_input | null),id?: (Scalars['uuid'] | null),invites?: (tournament_team_invites_arr_rel_insert_input | null), +/** Created by draft_tournament_free_agent_teams rather than registered */ +is_drafted?: (Scalars['Boolean'] | null),name?: (Scalars['String'] | null),owner_steam_id?: (Scalars['bigint'] | null),results?: (v_team_stage_results_obj_rel_insert_input | null),roster?: (tournament_team_roster_arr_rel_insert_input | null),seed?: (Scalars['Int'] | null),short_name?: (Scalars['String'] | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface tournament_teams_max_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + checked_in_at?: boolean | number + created_at?: boolean | number + eligible_at?: boolean | number + id?: boolean | number + name?: boolean | number + owner_steam_id?: boolean | number + seed?: boolean | number + short_name?: boolean | number + team_id?: boolean | number + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "tournament_teams" */ +export interface tournament_teams_max_order_by {captain_steam_id?: (order_by | null),checked_in_at?: (order_by | null),created_at?: (order_by | null),eligible_at?: (order_by | null),id?: (order_by | null),name?: (order_by | null),owner_steam_id?: (order_by | null),seed?: (order_by | null),short_name?: (order_by | null),team_id?: (order_by | null),tournament_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface tournament_teams_min_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + checked_in_at?: boolean | number + created_at?: boolean | number + eligible_at?: boolean | number + id?: boolean | number + name?: boolean | number + owner_steam_id?: boolean | number + seed?: boolean | number + short_name?: boolean | number + team_id?: boolean | number + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "tournament_teams" */ +export interface tournament_teams_min_order_by {captain_steam_id?: (order_by | null),checked_in_at?: (order_by | null),created_at?: (order_by | null),eligible_at?: (order_by | null),id?: (order_by | null),name?: (order_by | null),owner_steam_id?: (order_by | null),seed?: (order_by | null),short_name?: (order_by | null),team_id?: (order_by | null),tournament_id?: (order_by | null)} + + +/** response of any mutation on the table "tournament_teams" */ +export interface tournament_teams_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: tournament_teamsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "tournament_teams" */ +export interface tournament_teams_obj_rel_insert_input {data: tournament_teams_insert_input, +/** upsert condition */ +on_conflict?: (tournament_teams_on_conflict | null)} + + +/** on_conflict condition type for table "tournament_teams" */ +export interface tournament_teams_on_conflict {constraint: tournament_teams_constraint,update_columns?: tournament_teams_update_column[],where?: (tournament_teams_bool_exp | null)} + + +/** Ordering options when selecting data from "tournament_teams". */ +export interface tournament_teams_order_by {can_manage?: (order_by | null),captain?: (players_order_by | null),captain_steam_id?: (order_by | null),checked_in?: (order_by | null),checked_in_at?: (order_by | null),created_at?: (order_by | null),creator?: (players_order_by | null),eligible_at?: (order_by | null),free_agents_aggregate?: (tournament_free_agents_aggregate_order_by | null),id?: (order_by | null),invites_aggregate?: (tournament_team_invites_aggregate_order_by | null),is_drafted?: (order_by | null),name?: (order_by | null),owner_steam_id?: (order_by | null),results?: (v_team_stage_results_order_by | null),roster_aggregate?: (tournament_team_roster_aggregate_order_by | null),seed?: (order_by | null),short_name?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null)} + + +/** primary key columns input for table: tournament_teams */ +export interface tournament_teams_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "tournament_teams" */ +export interface tournament_teams_set_input {captain_steam_id?: (Scalars['bigint'] | null),checked_in_at?: (Scalars['timestamptz'] | null),created_at?: (Scalars['timestamptz'] | null),eligible_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null), +/** Created by draft_tournament_free_agent_teams rather than registered */ +is_drafted?: (Scalars['Boolean'] | null),name?: (Scalars['String'] | null),owner_steam_id?: (Scalars['bigint'] | null),seed?: (Scalars['Int'] | null),short_name?: (Scalars['String'] | null),team_id?: (Scalars['uuid'] | null),tournament_id?: (Scalars['uuid'] | null)} + + +/** aggregate stddev on columns */ +export interface tournament_teams_stddev_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + owner_steam_id?: boolean | number + seed?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "tournament_teams" */ +export interface tournament_teams_stddev_order_by {captain_steam_id?: (order_by | null),owner_steam_id?: (order_by | null),seed?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface tournament_teams_stddev_pop_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + owner_steam_id?: boolean | number + seed?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "tournament_teams" */ +export interface tournament_teams_stddev_pop_order_by {captain_steam_id?: (order_by | null),owner_steam_id?: (order_by | null),seed?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface tournament_teams_stddev_samp_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + owner_steam_id?: boolean | number + seed?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "tournament_teams" */ +export interface tournament_teams_stddev_samp_order_by {captain_steam_id?: (order_by | null),owner_steam_id?: (order_by | null),seed?: (order_by | null)} + + +/** Streaming cursor of the table "tournament_teams" */ +export interface tournament_teams_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: tournament_teams_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface tournament_teams_stream_cursor_value_input {captain_steam_id?: (Scalars['bigint'] | null),checked_in_at?: (Scalars['timestamptz'] | null),created_at?: (Scalars['timestamptz'] | null),eligible_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null), +/** Created by draft_tournament_free_agent_teams rather than registered */ +is_drafted?: (Scalars['Boolean'] | null),name?: (Scalars['String'] | null),owner_steam_id?: (Scalars['bigint'] | null),seed?: (Scalars['Int'] | null),short_name?: (Scalars['String'] | null),team_id?: (Scalars['uuid'] | null),tournament_id?: (Scalars['uuid'] | null)} + + +/** aggregate sum on columns */ +export interface tournament_teams_sum_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + owner_steam_id?: boolean | number + seed?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "tournament_teams" */ +export interface tournament_teams_sum_order_by {captain_steam_id?: (order_by | null),owner_steam_id?: (order_by | null),seed?: (order_by | null)} + +export interface tournament_teams_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (tournament_teams_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (tournament_teams_set_input | null), +/** filter the rows which have to be updated */ +where: tournament_teams_bool_exp} + + +/** aggregate var_pop on columns */ +export interface tournament_teams_var_pop_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + owner_steam_id?: boolean | number + seed?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "tournament_teams" */ +export interface tournament_teams_var_pop_order_by {captain_steam_id?: (order_by | null),owner_steam_id?: (order_by | null),seed?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface tournament_teams_var_samp_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + owner_steam_id?: boolean | number + seed?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "tournament_teams" */ +export interface tournament_teams_var_samp_order_by {captain_steam_id?: (order_by | null),owner_steam_id?: (order_by | null),seed?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface tournament_teams_variance_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + owner_steam_id?: boolean | number + seed?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "tournament_teams" */ +export interface tournament_teams_variance_order_by {captain_steam_id?: (order_by | null),owner_steam_id?: (order_by | null),seed?: (order_by | null)} + + +/** columns and relationships of "tournaments" */ +export interface tournamentsGenqlSelection{ + /** An object relationship */ + admin?: playersGenqlSelection + auto_start?: boolean | number + /** An array relationship */ + award_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 */ + award_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)} }) + /** 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)} }) + awards_enabled?: boolean | number + banner?: boolean | number + /** A computed field, executes function "can_cancel_tournament" */ + can_cancel?: boolean | number + /** A computed field, executes function "can_close_tournament_registration" */ + can_close_registration?: boolean | number + /** A computed field, executes function "can_join_tournament" */ + can_join?: boolean | number + /** A computed field, executes function "can_open_tournament_registration" */ + can_open_registration?: boolean | number + /** A computed field, executes function "can_pause_tournament" */ + can_pause?: boolean | number + /** A computed field, executes function "can_resume_tournament" */ + can_resume?: boolean | number + /** A computed field, executes function "can_review_tournament_check_in" */ + can_review_check_in?: boolean | number + /** A computed field, executes function "can_setup_tournament" */ + can_setup?: boolean | number + /** A computed field, executes function "can_start_tournament" */ + can_start?: boolean | number + /** An array relationship */ + categories?: (tournament_categoriesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_categories_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_categories_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_categories_bool_exp | null)} }) + /** An aggregate relationship */ + categories_aggregate?: (tournament_categories_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_categories_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_categories_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_categories_bool_exp | null)} }) + /** The check_in_ends_at the close pass has already acted on */ + check_in_closed_for?: boolean | number + check_in_closes_before_minutes?: boolean | number + /** The check_in_ends_at the closing reminder was sent for */ + check_in_closing_notified_for?: boolean | number + /** When the check-in window closes; NULL until it opens */ + check_in_ends_at?: boolean | number + /** A computed field, executes function "tournament_check_in_open" */ + check_in_open?: boolean | number + check_in_opens_before_minutes?: boolean | number + check_in_required?: boolean | number + /** Who confirms a team: Captains, every rostered Player, or the organizer (Admin) */ + check_in_setting?: boolean | number + /** A computed field, executes function "tournament_check_in_started" */ + check_in_started?: boolean | number + created_at?: boolean | number + /** A computed field, executes function "tournament_current_stage" */ + current_stage?: boolean | number + description?: boolean | number + discord_guild_id?: boolean | number + discord_notifications_enabled?: boolean | number + discord_notify_Canceled?: boolean | number + discord_notify_Finished?: boolean | number + discord_notify_Forfeit?: boolean | number + discord_notify_Live?: boolean | number + discord_notify_MapPaused?: boolean | number + discord_notify_PickingPlayers?: boolean | number + discord_notify_Scheduled?: boolean | number + discord_notify_Surrendered?: boolean | number + discord_notify_Tie?: boolean | number + discord_notify_Veto?: boolean | number + discord_notify_WaitingForCheckIn?: boolean | number + discord_notify_WaitingForServer?: boolean | number + discord_role_id?: boolean | number + discord_voice_enabled?: boolean | number + discord_webhook?: boolean | number + /** An object relationship */ + e_tournament_status?: e_tournament_statusGenqlSelection + /** An array relationship */ + free_agents?: (tournament_free_agentsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_free_agents_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_free_agents_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_free_agents_bool_exp | null)} }) + /** An aggregate relationship */ + free_agents_aggregate?: (tournament_free_agents_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_free_agents_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_free_agents_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_free_agents_bool_exp | null)} }) + /** A computed field, executes function "tournament_has_min_teams" */ + has_min_teams?: boolean | number + homepage?: boolean | number + id?: boolean | number + invite_only?: boolean | number + is_league?: boolean | number + /** A computed field, executes function "is_tournament_organizer" */ + is_organizer?: boolean | number + /** A computed field, executes function "joined_tournament" */ + joined_tournament?: boolean | number + latitude?: boolean | number + /** An object relationship */ + league_season_division?: league_season_divisionsGenqlSelection + location?: boolean | number + logo?: boolean | number + longitude?: boolean | number + match_options_id?: boolean | number + max_elo?: boolean | number + /** A computed field, executes function "tournament_max_players_per_lineup" */ + max_players_per_lineup?: boolean | number + /** A computed field, executes function "meets_min_role" */ + meets_min_role?: boolean | number + min_elo?: boolean | number + /** A computed field, executes function "tournament_min_players_per_lineup" */ + min_players_per_lineup?: boolean | number + min_role?: boolean | number + /** A computed field, executes function "tournament_missed_check_in_count" */ + missed_check_in_count?: boolean | number + name?: boolean | number + /** An object relationship */ + options?: match_optionsGenqlSelection + organizer_steam_id?: boolean | number + /** An array relationship */ + organizer_teams?: (tournament_organizer_teamsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_organizer_teams_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_organizer_teams_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_organizer_teams_bool_exp | null)} }) + /** An aggregate relationship */ + organizer_teams_aggregate?: (tournament_organizer_teams_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_organizer_teams_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_organizer_teams_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_organizer_teams_bool_exp | null)} }) + /** An array relationship */ + organizers?: (tournament_organizersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_organizers_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_organizers_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_organizers_bool_exp | null)} }) + /** An aggregate relationship */ + organizers_aggregate?: (tournament_organizers_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_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?: (tournament_organizers_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_organizers_bool_exp | null)} }) + /** An array relationship */ + player_stats?: (v_tournament_player_statsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_tournament_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_tournament_player_stats_order_by[] | null), + /** filter the rows returned */ + where?: (v_tournament_player_stats_bool_exp | null)} }) + /** An aggregate relationship */ + player_stats_aggregate?: (v_tournament_player_stats_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_tournament_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_tournament_player_stats_order_by[] | null), + /** filter the rows returned */ + where?: (v_tournament_player_stats_bool_exp | null)} }) + /** An array relationship */ + prizes?: (tournament_prizesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_prizes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_prizes_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_prizes_bool_exp | null)} }) + /** An aggregate relationship */ + prizes_aggregate?: (tournament_prizes_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_prizes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_prizes_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_prizes_bool_exp | null)} }) + /** Preferred server regions for hosted matches */ + regions?: boolean | number + registration_type?: boolean | number + /** A computed field, executes function "tournament_registration_unlocked_for_session" */ + registration_unlocked?: boolean | number + /** An array relationship */ + results?: (v_team_tournament_resultsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_team_tournament_results_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_team_tournament_results_order_by[] | null), + /** filter the rows returned */ + where?: (v_team_tournament_results_bool_exp | null)} }) + /** An aggregate relationship */ + results_aggregate?: (v_team_tournament_results_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_team_tournament_results_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** 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_team_tournament_results_order_by[] | null), + /** filter the rows returned */ + where?: (v_team_tournament_results_bool_exp | null)} }) + /** An array relationship */ + 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 */ + 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)} }) + scheduling_mode?: boolean | number + /** An array relationship */ + 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 */ + 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)} }) + start?: boolean | number + status?: boolean | number + /** Whether teams may roster and field substitutes beyond the starting lineup */ + substitutes_enabled?: boolean | number + /** An array relationship */ + teams?: (tournament_teamsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_teams_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_teams_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_teams_bool_exp | null)} }) + /** An aggregate relationship */ + teams_aggregate?: (tournament_teams_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_teams_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_teams_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_teams_bool_exp | null)} }) + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "tournaments" */ +export interface tournaments_aggregateGenqlSelection{ + aggregate?: tournaments_aggregate_fieldsGenqlSelection + nodes?: tournamentsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface tournaments_aggregate_bool_exp {avg?: (tournaments_aggregate_bool_exp_avg | null),bool_and?: (tournaments_aggregate_bool_exp_bool_and | null),bool_or?: (tournaments_aggregate_bool_exp_bool_or | null),corr?: (tournaments_aggregate_bool_exp_corr | null),count?: (tournaments_aggregate_bool_exp_count | null),covar_samp?: (tournaments_aggregate_bool_exp_covar_samp | null),max?: (tournaments_aggregate_bool_exp_max | null),min?: (tournaments_aggregate_bool_exp_min | null),stddev_samp?: (tournaments_aggregate_bool_exp_stddev_samp | null),sum?: (tournaments_aggregate_bool_exp_sum | null),var_samp?: (tournaments_aggregate_bool_exp_var_samp | null)} + +export interface tournaments_aggregate_bool_exp_avg {arguments: tournaments_select_column_tournaments_aggregate_bool_exp_avg_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (tournaments_bool_exp | null),predicate: float8_comparison_exp} + +export interface tournaments_aggregate_bool_exp_bool_and {arguments: tournaments_select_column_tournaments_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (tournaments_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface tournaments_aggregate_bool_exp_bool_or {arguments: tournaments_select_column_tournaments_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (tournaments_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface tournaments_aggregate_bool_exp_corr {arguments: tournaments_aggregate_bool_exp_corr_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (tournaments_bool_exp | null),predicate: float8_comparison_exp} + +export interface tournaments_aggregate_bool_exp_corr_arguments {X: tournaments_select_column_tournaments_aggregate_bool_exp_corr_arguments_columns,Y: tournaments_select_column_tournaments_aggregate_bool_exp_corr_arguments_columns} + +export interface tournaments_aggregate_bool_exp_count {arguments?: (tournaments_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (tournaments_bool_exp | null),predicate: Int_comparison_exp} + +export interface tournaments_aggregate_bool_exp_covar_samp {arguments: tournaments_aggregate_bool_exp_covar_samp_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (tournaments_bool_exp | null),predicate: float8_comparison_exp} + +export interface tournaments_aggregate_bool_exp_covar_samp_arguments {X: tournaments_select_column_tournaments_aggregate_bool_exp_covar_samp_arguments_columns,Y: tournaments_select_column_tournaments_aggregate_bool_exp_covar_samp_arguments_columns} + +export interface tournaments_aggregate_bool_exp_max {arguments: tournaments_select_column_tournaments_aggregate_bool_exp_max_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (tournaments_bool_exp | null),predicate: float8_comparison_exp} + +export interface tournaments_aggregate_bool_exp_min {arguments: tournaments_select_column_tournaments_aggregate_bool_exp_min_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (tournaments_bool_exp | null),predicate: float8_comparison_exp} + +export interface tournaments_aggregate_bool_exp_stddev_samp {arguments: tournaments_select_column_tournaments_aggregate_bool_exp_stddev_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (tournaments_bool_exp | null),predicate: float8_comparison_exp} + +export interface tournaments_aggregate_bool_exp_sum {arguments: tournaments_select_column_tournaments_aggregate_bool_exp_sum_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (tournaments_bool_exp | null),predicate: float8_comparison_exp} + +export interface tournaments_aggregate_bool_exp_var_samp {arguments: tournaments_select_column_tournaments_aggregate_bool_exp_var_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (tournaments_bool_exp | null),predicate: float8_comparison_exp} + + +/** aggregate fields of "tournaments" */ +export interface tournaments_aggregate_fieldsGenqlSelection{ + avg?: tournaments_avg_fieldsGenqlSelection + count?: { __args: {columns?: (tournaments_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: tournaments_max_fieldsGenqlSelection + min?: tournaments_min_fieldsGenqlSelection + stddev?: tournaments_stddev_fieldsGenqlSelection + stddev_pop?: tournaments_stddev_pop_fieldsGenqlSelection + stddev_samp?: tournaments_stddev_samp_fieldsGenqlSelection + sum?: tournaments_sum_fieldsGenqlSelection + var_pop?: tournaments_var_pop_fieldsGenqlSelection + var_samp?: tournaments_var_samp_fieldsGenqlSelection + variance?: tournaments_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "tournaments" */ +export interface tournaments_aggregate_order_by {avg?: (tournaments_avg_order_by | null),count?: (order_by | null),max?: (tournaments_max_order_by | null),min?: (tournaments_min_order_by | null),stddev?: (tournaments_stddev_order_by | null),stddev_pop?: (tournaments_stddev_pop_order_by | null),stddev_samp?: (tournaments_stddev_samp_order_by | null),sum?: (tournaments_sum_order_by | null),var_pop?: (tournaments_var_pop_order_by | null),var_samp?: (tournaments_var_samp_order_by | null),variance?: (tournaments_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "tournaments" */ +export interface tournaments_arr_rel_insert_input {data: tournaments_insert_input[], +/** upsert condition */ +on_conflict?: (tournaments_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface tournaments_avg_fieldsGenqlSelection{ + check_in_closes_before_minutes?: boolean | number + check_in_opens_before_minutes?: boolean | number + /** A computed field, executes function "tournament_current_stage" */ + current_stage?: boolean | number + latitude?: boolean | number + longitude?: boolean | number + max_elo?: boolean | number + /** A computed field, executes function "tournament_max_players_per_lineup" */ + max_players_per_lineup?: boolean | number + min_elo?: boolean | number + /** A computed field, executes function "tournament_min_players_per_lineup" */ + min_players_per_lineup?: boolean | number + /** A computed field, executes function "tournament_missed_check_in_count" */ + missed_check_in_count?: boolean | number + organizer_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "tournaments" */ +export interface tournaments_avg_order_by {check_in_closes_before_minutes?: (order_by | null),check_in_opens_before_minutes?: (order_by | null),latitude?: (order_by | null),longitude?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null),organizer_steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "tournaments". All fields are combined with a logical 'AND'. */ +export interface tournaments_bool_exp {_and?: (tournaments_bool_exp[] | null),_not?: (tournaments_bool_exp | null),_or?: (tournaments_bool_exp[] | null),admin?: (players_bool_exp | null),auto_start?: (Boolean_comparison_exp | null),award_configs?: (tournament_awards_bool_exp | null),award_configs_aggregate?: (tournament_awards_aggregate_bool_exp | null),awards?: (award_recipients_bool_exp | null),awards_aggregate?: (award_recipients_aggregate_bool_exp | null),awards_enabled?: (Boolean_comparison_exp | null),banner?: (String_comparison_exp | null),can_cancel?: (Boolean_comparison_exp | null),can_close_registration?: (Boolean_comparison_exp | null),can_join?: (Boolean_comparison_exp | null),can_open_registration?: (Boolean_comparison_exp | null),can_pause?: (Boolean_comparison_exp | null),can_resume?: (Boolean_comparison_exp | null),can_review_check_in?: (Boolean_comparison_exp | null),can_setup?: (Boolean_comparison_exp | null),can_start?: (Boolean_comparison_exp | null),categories?: (tournament_categories_bool_exp | null),categories_aggregate?: (tournament_categories_aggregate_bool_exp | null),check_in_closed_for?: (timestamptz_comparison_exp | null),check_in_closes_before_minutes?: (Int_comparison_exp | null),check_in_closing_notified_for?: (timestamptz_comparison_exp | null),check_in_ends_at?: (timestamptz_comparison_exp | null),check_in_open?: (Boolean_comparison_exp | null),check_in_opens_before_minutes?: (Int_comparison_exp | null),check_in_required?: (Boolean_comparison_exp | null),check_in_setting?: (e_check_in_settings_enum_comparison_exp | null),check_in_started?: (Boolean_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),current_stage?: (Int_comparison_exp | null),description?: (String_comparison_exp | null),discord_guild_id?: (String_comparison_exp | null),discord_notifications_enabled?: (Boolean_comparison_exp | null),discord_notify_Canceled?: (Boolean_comparison_exp | null),discord_notify_Finished?: (Boolean_comparison_exp | null),discord_notify_Forfeit?: (Boolean_comparison_exp | null),discord_notify_Live?: (Boolean_comparison_exp | null),discord_notify_MapPaused?: (Boolean_comparison_exp | null),discord_notify_PickingPlayers?: (Boolean_comparison_exp | null),discord_notify_Scheduled?: (Boolean_comparison_exp | null),discord_notify_Surrendered?: (Boolean_comparison_exp | null),discord_notify_Tie?: (Boolean_comparison_exp | null),discord_notify_Veto?: (Boolean_comparison_exp | null),discord_notify_WaitingForCheckIn?: (Boolean_comparison_exp | null),discord_notify_WaitingForServer?: (Boolean_comparison_exp | null),discord_role_id?: (String_comparison_exp | null),discord_voice_enabled?: (Boolean_comparison_exp | null),discord_webhook?: (String_comparison_exp | null),e_tournament_status?: (e_tournament_status_bool_exp | null),free_agents?: (tournament_free_agents_bool_exp | null),free_agents_aggregate?: (tournament_free_agents_aggregate_bool_exp | null),has_min_teams?: (Boolean_comparison_exp | null),homepage?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),invite_only?: (Boolean_comparison_exp | null),is_league?: (Boolean_comparison_exp | null),is_organizer?: (Boolean_comparison_exp | null),joined_tournament?: (Boolean_comparison_exp | null),latitude?: (float8_comparison_exp | null),league_season_division?: (league_season_divisions_bool_exp | null),location?: (String_comparison_exp | null),logo?: (String_comparison_exp | null),longitude?: (float8_comparison_exp | null),match_options_id?: (uuid_comparison_exp | null),max_elo?: (Int_comparison_exp | null),max_players_per_lineup?: (Int_comparison_exp | null),meets_min_role?: (Boolean_comparison_exp | null),min_elo?: (Int_comparison_exp | null),min_players_per_lineup?: (Int_comparison_exp | null),min_role?: (e_player_roles_enum_comparison_exp | null),missed_check_in_count?: (Int_comparison_exp | null),name?: (String_comparison_exp | null),options?: (match_options_bool_exp | null),organizer_steam_id?: (bigint_comparison_exp | null),organizer_teams?: (tournament_organizer_teams_bool_exp | null),organizer_teams_aggregate?: (tournament_organizer_teams_aggregate_bool_exp | null),organizers?: (tournament_organizers_bool_exp | null),organizers_aggregate?: (tournament_organizers_aggregate_bool_exp | null),player_stats?: (v_tournament_player_stats_bool_exp | null),player_stats_aggregate?: (v_tournament_player_stats_aggregate_bool_exp | null),prizes?: (tournament_prizes_bool_exp | null),prizes_aggregate?: (tournament_prizes_aggregate_bool_exp | null),regions?: (String_array_comparison_exp | null),registration_type?: (e_tournament_registration_types_enum_comparison_exp | null),registration_unlocked?: (Boolean_comparison_exp | null),results?: (v_team_tournament_results_bool_exp | null),results_aggregate?: (v_team_tournament_results_aggregate_bool_exp | null),rosters?: (tournament_team_roster_bool_exp | null),rosters_aggregate?: (tournament_team_roster_aggregate_bool_exp | null),scheduling_mode?: (String_comparison_exp | null),stages?: (tournament_stages_bool_exp | null),stages_aggregate?: (tournament_stages_aggregate_bool_exp | null),start?: (timestamptz_comparison_exp | null),status?: (e_tournament_status_enum_comparison_exp | null),substitutes_enabled?: (Boolean_comparison_exp | null),teams?: (tournament_teams_bool_exp | null),teams_aggregate?: (tournament_teams_aggregate_bool_exp | null)} + + +/** input type for incrementing numeric columns in table "tournaments" */ +export interface tournaments_inc_input {check_in_closes_before_minutes?: (Scalars['Int'] | null),check_in_opens_before_minutes?: (Scalars['Int'] | null),latitude?: (Scalars['float8'] | null),longitude?: (Scalars['float8'] | null),max_elo?: (Scalars['Int'] | null),min_elo?: (Scalars['Int'] | null),organizer_steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "tournaments" */ +export interface tournaments_insert_input {admin?: (players_obj_rel_insert_input | null),auto_start?: (Scalars['Boolean'] | null),award_configs?: (tournament_awards_arr_rel_insert_input | null),awards?: (award_recipients_arr_rel_insert_input | null),awards_enabled?: (Scalars['Boolean'] | null),banner?: (Scalars['String'] | null),categories?: (tournament_categories_arr_rel_insert_input | null), +/** The check_in_ends_at the close pass has already acted on */ +check_in_closed_for?: (Scalars['timestamptz'] | null),check_in_closes_before_minutes?: (Scalars['Int'] | null), +/** The check_in_ends_at the closing reminder was sent for */ +check_in_closing_notified_for?: (Scalars['timestamptz'] | null), +/** When the check-in window closes; NULL until it opens */ +check_in_ends_at?: (Scalars['timestamptz'] | null),check_in_opens_before_minutes?: (Scalars['Int'] | null),check_in_required?: (Scalars['Boolean'] | null), +/** Who confirms a team: Captains, every rostered Player, or the organizer (Admin) */ +check_in_setting?: (e_check_in_settings_enum | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),discord_guild_id?: (Scalars['String'] | null),discord_notifications_enabled?: (Scalars['Boolean'] | null),discord_notify_Canceled?: (Scalars['Boolean'] | null),discord_notify_Finished?: (Scalars['Boolean'] | null),discord_notify_Forfeit?: (Scalars['Boolean'] | null),discord_notify_Live?: (Scalars['Boolean'] | null),discord_notify_MapPaused?: (Scalars['Boolean'] | null),discord_notify_PickingPlayers?: (Scalars['Boolean'] | null),discord_notify_Scheduled?: (Scalars['Boolean'] | null),discord_notify_Surrendered?: (Scalars['Boolean'] | null),discord_notify_Tie?: (Scalars['Boolean'] | null),discord_notify_Veto?: (Scalars['Boolean'] | null),discord_notify_WaitingForCheckIn?: (Scalars['Boolean'] | null),discord_notify_WaitingForServer?: (Scalars['Boolean'] | null),discord_role_id?: (Scalars['String'] | null),discord_voice_enabled?: (Scalars['Boolean'] | null),discord_webhook?: (Scalars['String'] | null),e_tournament_status?: (e_tournament_status_obj_rel_insert_input | null),free_agents?: (tournament_free_agents_arr_rel_insert_input | null),homepage?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),invite_only?: (Scalars['Boolean'] | null),is_league?: (Scalars['Boolean'] | null),latitude?: (Scalars['float8'] | null),league_season_division?: (league_season_divisions_obj_rel_insert_input | null),location?: (Scalars['String'] | null),logo?: (Scalars['String'] | null),longitude?: (Scalars['float8'] | null),match_options_id?: (Scalars['uuid'] | null),max_elo?: (Scalars['Int'] | null),min_elo?: (Scalars['Int'] | null),min_role?: (e_player_roles_enum | null),name?: (Scalars['String'] | null),options?: (match_options_obj_rel_insert_input | null),organizer_steam_id?: (Scalars['bigint'] | null),organizer_teams?: (tournament_organizer_teams_arr_rel_insert_input | null),organizers?: (tournament_organizers_arr_rel_insert_input | null),player_stats?: (v_tournament_player_stats_arr_rel_insert_input | null),prizes?: (tournament_prizes_arr_rel_insert_input | null), +/** Preferred server regions for hosted matches */ +regions?: (Scalars['String'][] | null),registration_type?: (e_tournament_registration_types_enum | null),results?: (v_team_tournament_results_arr_rel_insert_input | null),rosters?: (tournament_team_roster_arr_rel_insert_input | null),scheduling_mode?: (Scalars['String'] | null),stages?: (tournament_stages_arr_rel_insert_input | null),start?: (Scalars['timestamptz'] | null),status?: (e_tournament_status_enum | null), +/** Whether teams may roster and field substitutes beyond the starting lineup */ +substitutes_enabled?: (Scalars['Boolean'] | null),teams?: (tournament_teams_arr_rel_insert_input | null)} + + +/** aggregate max on columns */ +export interface tournaments_max_fieldsGenqlSelection{ + banner?: boolean | number + /** The check_in_ends_at the close pass has already acted on */ + check_in_closed_for?: boolean | number + check_in_closes_before_minutes?: boolean | number + /** The check_in_ends_at the closing reminder was sent for */ + check_in_closing_notified_for?: boolean | number + /** When the check-in window closes; NULL until it opens */ + check_in_ends_at?: boolean | number + check_in_opens_before_minutes?: boolean | number + created_at?: boolean | number + /** A computed field, executes function "tournament_current_stage" */ + current_stage?: boolean | number + description?: boolean | number + discord_guild_id?: boolean | number + discord_role_id?: boolean | number + discord_webhook?: boolean | number + homepage?: boolean | number + id?: boolean | number + latitude?: boolean | number + location?: boolean | number + logo?: boolean | number + longitude?: boolean | number + match_options_id?: boolean | number + max_elo?: boolean | number + /** A computed field, executes function "tournament_max_players_per_lineup" */ + max_players_per_lineup?: boolean | number + min_elo?: boolean | number + /** A computed field, executes function "tournament_min_players_per_lineup" */ + min_players_per_lineup?: boolean | number + /** A computed field, executes function "tournament_missed_check_in_count" */ + missed_check_in_count?: boolean | number + name?: boolean | number + organizer_steam_id?: boolean | number + /** Preferred server regions for hosted matches */ + regions?: boolean | number + scheduling_mode?: boolean | number + start?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "tournaments" */ +export interface tournaments_max_order_by {banner?: (order_by | null), +/** The check_in_ends_at the close pass has already acted on */ +check_in_closed_for?: (order_by | null),check_in_closes_before_minutes?: (order_by | null), +/** The check_in_ends_at the closing reminder was sent for */ +check_in_closing_notified_for?: (order_by | null), +/** When the check-in window closes; NULL until it opens */ +check_in_ends_at?: (order_by | null),check_in_opens_before_minutes?: (order_by | null),created_at?: (order_by | null),description?: (order_by | null),discord_guild_id?: (order_by | null),discord_role_id?: (order_by | null),discord_webhook?: (order_by | null),homepage?: (order_by | null),id?: (order_by | null),latitude?: (order_by | null),location?: (order_by | null),logo?: (order_by | null),longitude?: (order_by | null),match_options_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null),name?: (order_by | null),organizer_steam_id?: (order_by | null), +/** Preferred server regions for hosted matches */ +regions?: (order_by | null),scheduling_mode?: (order_by | null),start?: (order_by | null)} + + +/** aggregate min on columns */ +export interface tournaments_min_fieldsGenqlSelection{ + banner?: boolean | number + /** The check_in_ends_at the close pass has already acted on */ + check_in_closed_for?: boolean | number + check_in_closes_before_minutes?: boolean | number + /** The check_in_ends_at the closing reminder was sent for */ + check_in_closing_notified_for?: boolean | number + /** When the check-in window closes; NULL until it opens */ + check_in_ends_at?: boolean | number + check_in_opens_before_minutes?: boolean | number + created_at?: boolean | number + /** A computed field, executes function "tournament_current_stage" */ + current_stage?: boolean | number + description?: boolean | number + discord_guild_id?: boolean | number + discord_role_id?: boolean | number + discord_webhook?: boolean | number + homepage?: boolean | number + id?: boolean | number + latitude?: boolean | number + location?: boolean | number + logo?: boolean | number + longitude?: boolean | number + match_options_id?: boolean | number + max_elo?: boolean | number + /** A computed field, executes function "tournament_max_players_per_lineup" */ + max_players_per_lineup?: boolean | number + min_elo?: boolean | number + /** A computed field, executes function "tournament_min_players_per_lineup" */ + min_players_per_lineup?: boolean | number + /** A computed field, executes function "tournament_missed_check_in_count" */ + missed_check_in_count?: boolean | number + name?: boolean | number + organizer_steam_id?: boolean | number + /** Preferred server regions for hosted matches */ + regions?: boolean | number + scheduling_mode?: boolean | number + start?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "tournaments" */ +export interface tournaments_min_order_by {banner?: (order_by | null), +/** The check_in_ends_at the close pass has already acted on */ +check_in_closed_for?: (order_by | null),check_in_closes_before_minutes?: (order_by | null), +/** The check_in_ends_at the closing reminder was sent for */ +check_in_closing_notified_for?: (order_by | null), +/** When the check-in window closes; NULL until it opens */ +check_in_ends_at?: (order_by | null),check_in_opens_before_minutes?: (order_by | null),created_at?: (order_by | null),description?: (order_by | null),discord_guild_id?: (order_by | null),discord_role_id?: (order_by | null),discord_webhook?: (order_by | null),homepage?: (order_by | null),id?: (order_by | null),latitude?: (order_by | null),location?: (order_by | null),logo?: (order_by | null),longitude?: (order_by | null),match_options_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null),name?: (order_by | null),organizer_steam_id?: (order_by | null), +/** Preferred server regions for hosted matches */ +regions?: (order_by | null),scheduling_mode?: (order_by | null),start?: (order_by | null)} + + +/** response of any mutation on the table "tournaments" */ +export interface tournaments_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: tournamentsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "tournaments" */ +export interface tournaments_obj_rel_insert_input {data: tournaments_insert_input, +/** upsert condition */ +on_conflict?: (tournaments_on_conflict | null)} + + +/** on_conflict condition type for table "tournaments" */ +export interface tournaments_on_conflict {constraint: tournaments_constraint,update_columns?: tournaments_update_column[],where?: (tournaments_bool_exp | null)} + + +/** Ordering options when selecting data from "tournaments". */ +export interface tournaments_order_by {admin?: (players_order_by | null),auto_start?: (order_by | null),award_configs_aggregate?: (tournament_awards_aggregate_order_by | null),awards_aggregate?: (award_recipients_aggregate_order_by | null),awards_enabled?: (order_by | null),banner?: (order_by | null),can_cancel?: (order_by | null),can_close_registration?: (order_by | null),can_join?: (order_by | null),can_open_registration?: (order_by | null),can_pause?: (order_by | null),can_resume?: (order_by | null),can_review_check_in?: (order_by | null),can_setup?: (order_by | null),can_start?: (order_by | null),categories_aggregate?: (tournament_categories_aggregate_order_by | null),check_in_closed_for?: (order_by | null),check_in_closes_before_minutes?: (order_by | null),check_in_closing_notified_for?: (order_by | null),check_in_ends_at?: (order_by | null),check_in_open?: (order_by | null),check_in_opens_before_minutes?: (order_by | null),check_in_required?: (order_by | null),check_in_setting?: (order_by | null),check_in_started?: (order_by | null),created_at?: (order_by | null),current_stage?: (order_by | null),description?: (order_by | null),discord_guild_id?: (order_by | null),discord_notifications_enabled?: (order_by | null),discord_notify_Canceled?: (order_by | null),discord_notify_Finished?: (order_by | null),discord_notify_Forfeit?: (order_by | null),discord_notify_Live?: (order_by | null),discord_notify_MapPaused?: (order_by | null),discord_notify_PickingPlayers?: (order_by | null),discord_notify_Scheduled?: (order_by | null),discord_notify_Surrendered?: (order_by | null),discord_notify_Tie?: (order_by | null),discord_notify_Veto?: (order_by | null),discord_notify_WaitingForCheckIn?: (order_by | null),discord_notify_WaitingForServer?: (order_by | null),discord_role_id?: (order_by | null),discord_voice_enabled?: (order_by | null),discord_webhook?: (order_by | null),e_tournament_status?: (e_tournament_status_order_by | null),free_agents_aggregate?: (tournament_free_agents_aggregate_order_by | null),has_min_teams?: (order_by | null),homepage?: (order_by | null),id?: (order_by | null),invite_only?: (order_by | null),is_league?: (order_by | null),is_organizer?: (order_by | null),joined_tournament?: (order_by | null),latitude?: (order_by | null),league_season_division?: (league_season_divisions_order_by | null),location?: (order_by | null),logo?: (order_by | null),longitude?: (order_by | null),match_options_id?: (order_by | null),max_elo?: (order_by | null),max_players_per_lineup?: (order_by | null),meets_min_role?: (order_by | null),min_elo?: (order_by | null),min_players_per_lineup?: (order_by | null),min_role?: (order_by | null),missed_check_in_count?: (order_by | null),name?: (order_by | null),options?: (match_options_order_by | null),organizer_steam_id?: (order_by | null),organizer_teams_aggregate?: (tournament_organizer_teams_aggregate_order_by | null),organizers_aggregate?: (tournament_organizers_aggregate_order_by | null),player_stats_aggregate?: (v_tournament_player_stats_aggregate_order_by | null),prizes_aggregate?: (tournament_prizes_aggregate_order_by | null),regions?: (order_by | null),registration_type?: (order_by | null),registration_unlocked?: (order_by | null),results_aggregate?: (v_team_tournament_results_aggregate_order_by | null),rosters_aggregate?: (tournament_team_roster_aggregate_order_by | null),scheduling_mode?: (order_by | null),stages_aggregate?: (tournament_stages_aggregate_order_by | null),start?: (order_by | null),status?: (order_by | null),substitutes_enabled?: (order_by | null),teams_aggregate?: (tournament_teams_aggregate_order_by | null)} + + +/** primary key columns input for table: tournaments */ +export interface tournaments_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "tournaments" */ +export interface tournaments_set_input {auto_start?: (Scalars['Boolean'] | null),awards_enabled?: (Scalars['Boolean'] | null),banner?: (Scalars['String'] | null), +/** The check_in_ends_at the close pass has already acted on */ +check_in_closed_for?: (Scalars['timestamptz'] | null),check_in_closes_before_minutes?: (Scalars['Int'] | null), +/** The check_in_ends_at the closing reminder was sent for */ +check_in_closing_notified_for?: (Scalars['timestamptz'] | null), +/** When the check-in window closes; NULL until it opens */ +check_in_ends_at?: (Scalars['timestamptz'] | null),check_in_opens_before_minutes?: (Scalars['Int'] | null),check_in_required?: (Scalars['Boolean'] | null), +/** Who confirms a team: Captains, every rostered Player, or the organizer (Admin) */ +check_in_setting?: (e_check_in_settings_enum | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),discord_guild_id?: (Scalars['String'] | null),discord_notifications_enabled?: (Scalars['Boolean'] | null),discord_notify_Canceled?: (Scalars['Boolean'] | null),discord_notify_Finished?: (Scalars['Boolean'] | null),discord_notify_Forfeit?: (Scalars['Boolean'] | null),discord_notify_Live?: (Scalars['Boolean'] | null),discord_notify_MapPaused?: (Scalars['Boolean'] | null),discord_notify_PickingPlayers?: (Scalars['Boolean'] | null),discord_notify_Scheduled?: (Scalars['Boolean'] | null),discord_notify_Surrendered?: (Scalars['Boolean'] | null),discord_notify_Tie?: (Scalars['Boolean'] | null),discord_notify_Veto?: (Scalars['Boolean'] | null),discord_notify_WaitingForCheckIn?: (Scalars['Boolean'] | null),discord_notify_WaitingForServer?: (Scalars['Boolean'] | null),discord_role_id?: (Scalars['String'] | null),discord_voice_enabled?: (Scalars['Boolean'] | null),discord_webhook?: (Scalars['String'] | null),homepage?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),invite_only?: (Scalars['Boolean'] | null),is_league?: (Scalars['Boolean'] | null),latitude?: (Scalars['float8'] | null),location?: (Scalars['String'] | null),logo?: (Scalars['String'] | null),longitude?: (Scalars['float8'] | null),match_options_id?: (Scalars['uuid'] | null),max_elo?: (Scalars['Int'] | null),min_elo?: (Scalars['Int'] | null),min_role?: (e_player_roles_enum | null),name?: (Scalars['String'] | null),organizer_steam_id?: (Scalars['bigint'] | null), +/** Preferred server regions for hosted matches */ +regions?: (Scalars['String'][] | null),registration_type?: (e_tournament_registration_types_enum | null),scheduling_mode?: (Scalars['String'] | null),start?: (Scalars['timestamptz'] | null),status?: (e_tournament_status_enum | null), +/** Whether teams may roster and field substitutes beyond the starting lineup */ +substitutes_enabled?: (Scalars['Boolean'] | null)} + + +/** aggregate stddev on columns */ +export interface tournaments_stddev_fieldsGenqlSelection{ + check_in_closes_before_minutes?: boolean | number + check_in_opens_before_minutes?: boolean | number + /** A computed field, executes function "tournament_current_stage" */ + current_stage?: boolean | number + latitude?: boolean | number + longitude?: boolean | number + max_elo?: boolean | number + /** A computed field, executes function "tournament_max_players_per_lineup" */ + max_players_per_lineup?: boolean | number + min_elo?: boolean | number + /** A computed field, executes function "tournament_min_players_per_lineup" */ + min_players_per_lineup?: boolean | number + /** A computed field, executes function "tournament_missed_check_in_count" */ + missed_check_in_count?: boolean | number + organizer_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "tournaments" */ +export interface tournaments_stddev_order_by {check_in_closes_before_minutes?: (order_by | null),check_in_opens_before_minutes?: (order_by | null),latitude?: (order_by | null),longitude?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null),organizer_steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface tournaments_stddev_pop_fieldsGenqlSelection{ + check_in_closes_before_minutes?: boolean | number + check_in_opens_before_minutes?: boolean | number + /** A computed field, executes function "tournament_current_stage" */ + current_stage?: boolean | number + latitude?: boolean | number + longitude?: boolean | number + max_elo?: boolean | number + /** A computed field, executes function "tournament_max_players_per_lineup" */ + max_players_per_lineup?: boolean | number + min_elo?: boolean | number + /** A computed field, executes function "tournament_min_players_per_lineup" */ + min_players_per_lineup?: boolean | number + /** A computed field, executes function "tournament_missed_check_in_count" */ + missed_check_in_count?: boolean | number + organizer_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "tournaments" */ +export interface tournaments_stddev_pop_order_by {check_in_closes_before_minutes?: (order_by | null),check_in_opens_before_minutes?: (order_by | null),latitude?: (order_by | null),longitude?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null),organizer_steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface tournaments_stddev_samp_fieldsGenqlSelection{ + check_in_closes_before_minutes?: boolean | number + check_in_opens_before_minutes?: boolean | number + /** A computed field, executes function "tournament_current_stage" */ + current_stage?: boolean | number + latitude?: boolean | number + longitude?: boolean | number + max_elo?: boolean | number + /** A computed field, executes function "tournament_max_players_per_lineup" */ + max_players_per_lineup?: boolean | number + min_elo?: boolean | number + /** A computed field, executes function "tournament_min_players_per_lineup" */ + min_players_per_lineup?: boolean | number + /** A computed field, executes function "tournament_missed_check_in_count" */ + missed_check_in_count?: boolean | number + organizer_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "tournaments" */ +export interface tournaments_stddev_samp_order_by {check_in_closes_before_minutes?: (order_by | null),check_in_opens_before_minutes?: (order_by | null),latitude?: (order_by | null),longitude?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null),organizer_steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "tournaments" */ +export interface tournaments_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: tournaments_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface tournaments_stream_cursor_value_input {auto_start?: (Scalars['Boolean'] | null),awards_enabled?: (Scalars['Boolean'] | null),banner?: (Scalars['String'] | null), +/** The check_in_ends_at the close pass has already acted on */ +check_in_closed_for?: (Scalars['timestamptz'] | null),check_in_closes_before_minutes?: (Scalars['Int'] | null), +/** The check_in_ends_at the closing reminder was sent for */ +check_in_closing_notified_for?: (Scalars['timestamptz'] | null), +/** When the check-in window closes; NULL until it opens */ +check_in_ends_at?: (Scalars['timestamptz'] | null),check_in_opens_before_minutes?: (Scalars['Int'] | null),check_in_required?: (Scalars['Boolean'] | null), +/** Who confirms a team: Captains, every rostered Player, or the organizer (Admin) */ +check_in_setting?: (e_check_in_settings_enum | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),discord_guild_id?: (Scalars['String'] | null),discord_notifications_enabled?: (Scalars['Boolean'] | null),discord_notify_Canceled?: (Scalars['Boolean'] | null),discord_notify_Finished?: (Scalars['Boolean'] | null),discord_notify_Forfeit?: (Scalars['Boolean'] | null),discord_notify_Live?: (Scalars['Boolean'] | null),discord_notify_MapPaused?: (Scalars['Boolean'] | null),discord_notify_PickingPlayers?: (Scalars['Boolean'] | null),discord_notify_Scheduled?: (Scalars['Boolean'] | null),discord_notify_Surrendered?: (Scalars['Boolean'] | null),discord_notify_Tie?: (Scalars['Boolean'] | null),discord_notify_Veto?: (Scalars['Boolean'] | null),discord_notify_WaitingForCheckIn?: (Scalars['Boolean'] | null),discord_notify_WaitingForServer?: (Scalars['Boolean'] | null),discord_role_id?: (Scalars['String'] | null),discord_voice_enabled?: (Scalars['Boolean'] | null),discord_webhook?: (Scalars['String'] | null),homepage?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),invite_only?: (Scalars['Boolean'] | null),is_league?: (Scalars['Boolean'] | null),latitude?: (Scalars['float8'] | null),location?: (Scalars['String'] | null),logo?: (Scalars['String'] | null),longitude?: (Scalars['float8'] | null),match_options_id?: (Scalars['uuid'] | null),max_elo?: (Scalars['Int'] | null),min_elo?: (Scalars['Int'] | null),min_role?: (e_player_roles_enum | null),name?: (Scalars['String'] | null),organizer_steam_id?: (Scalars['bigint'] | null), +/** Preferred server regions for hosted matches */ +regions?: (Scalars['String'][] | null),registration_type?: (e_tournament_registration_types_enum | null),scheduling_mode?: (Scalars['String'] | null),start?: (Scalars['timestamptz'] | null),status?: (e_tournament_status_enum | null), +/** Whether teams may roster and field substitutes beyond the starting lineup */ +substitutes_enabled?: (Scalars['Boolean'] | null)} + + +/** aggregate sum on columns */ +export interface tournaments_sum_fieldsGenqlSelection{ + check_in_closes_before_minutes?: boolean | number + check_in_opens_before_minutes?: boolean | number + /** A computed field, executes function "tournament_current_stage" */ + current_stage?: boolean | number + latitude?: boolean | number + longitude?: boolean | number + max_elo?: boolean | number + /** A computed field, executes function "tournament_max_players_per_lineup" */ + max_players_per_lineup?: boolean | number + min_elo?: boolean | number + /** A computed field, executes function "tournament_min_players_per_lineup" */ + min_players_per_lineup?: boolean | number + /** A computed field, executes function "tournament_missed_check_in_count" */ + missed_check_in_count?: boolean | number + organizer_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "tournaments" */ +export interface tournaments_sum_order_by {check_in_closes_before_minutes?: (order_by | null),check_in_opens_before_minutes?: (order_by | null),latitude?: (order_by | null),longitude?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null),organizer_steam_id?: (order_by | null)} + +export interface tournaments_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (tournaments_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (tournaments_set_input | null), +/** filter the rows which have to be updated */ +where: tournaments_bool_exp} + + +/** aggregate var_pop on columns */ +export interface tournaments_var_pop_fieldsGenqlSelection{ + check_in_closes_before_minutes?: boolean | number + check_in_opens_before_minutes?: boolean | number + /** A computed field, executes function "tournament_current_stage" */ + current_stage?: boolean | number + latitude?: boolean | number + longitude?: boolean | number + max_elo?: boolean | number + /** A computed field, executes function "tournament_max_players_per_lineup" */ + max_players_per_lineup?: boolean | number + min_elo?: boolean | number + /** A computed field, executes function "tournament_min_players_per_lineup" */ + min_players_per_lineup?: boolean | number + /** A computed field, executes function "tournament_missed_check_in_count" */ + missed_check_in_count?: boolean | number + organizer_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "tournaments" */ +export interface tournaments_var_pop_order_by {check_in_closes_before_minutes?: (order_by | null),check_in_opens_before_minutes?: (order_by | null),latitude?: (order_by | null),longitude?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null),organizer_steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface tournaments_var_samp_fieldsGenqlSelection{ + check_in_closes_before_minutes?: boolean | number + check_in_opens_before_minutes?: boolean | number + /** A computed field, executes function "tournament_current_stage" */ + current_stage?: boolean | number + latitude?: boolean | number + longitude?: boolean | number + max_elo?: boolean | number + /** A computed field, executes function "tournament_max_players_per_lineup" */ + max_players_per_lineup?: boolean | number + min_elo?: boolean | number + /** A computed field, executes function "tournament_min_players_per_lineup" */ + min_players_per_lineup?: boolean | number + /** A computed field, executes function "tournament_missed_check_in_count" */ + missed_check_in_count?: boolean | number + organizer_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "tournaments" */ +export interface tournaments_var_samp_order_by {check_in_closes_before_minutes?: (order_by | null),check_in_opens_before_minutes?: (order_by | null),latitude?: (order_by | null),longitude?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null),organizer_steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface tournaments_variance_fieldsGenqlSelection{ + check_in_closes_before_minutes?: boolean | number + check_in_opens_before_minutes?: boolean | number + /** A computed field, executes function "tournament_current_stage" */ + current_stage?: boolean | number + latitude?: boolean | number + longitude?: boolean | number + max_elo?: boolean | number + /** A computed field, executes function "tournament_max_players_per_lineup" */ + max_players_per_lineup?: boolean | number + min_elo?: boolean | number + /** A computed field, executes function "tournament_min_players_per_lineup" */ + min_players_per_lineup?: boolean | number + /** A computed field, executes function "tournament_missed_check_in_count" */ + missed_check_in_count?: boolean | number + organizer_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "tournaments" */ +export interface tournaments_variance_order_by {check_in_closes_before_minutes?: (order_by | null),check_in_opens_before_minutes?: (order_by | null),latitude?: (order_by | null),longitude?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null),organizer_steam_id?: (order_by | null)} + + +/** columns and relationships of "utility_collection_items" */ +export interface utility_collection_itemsGenqlSelection{ + /** An object relationship */ + collection?: utility_collectionsGenqlSelection + collection_id?: boolean | number + created_at?: boolean | number + note?: boolean | number + position?: boolean | number + /** An object relationship */ + utility_lineup?: utility_lineupsGenqlSelection + utility_lineup_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "utility_collection_items" */ +export interface utility_collection_items_aggregateGenqlSelection{ + aggregate?: utility_collection_items_aggregate_fieldsGenqlSelection + nodes?: utility_collection_itemsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface utility_collection_items_aggregate_bool_exp {count?: (utility_collection_items_aggregate_bool_exp_count | null)} + +export interface utility_collection_items_aggregate_bool_exp_count {arguments?: (utility_collection_items_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (utility_collection_items_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "utility_collection_items" */ +export interface utility_collection_items_aggregate_fieldsGenqlSelection{ + avg?: utility_collection_items_avg_fieldsGenqlSelection + count?: { __args: {columns?: (utility_collection_items_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: utility_collection_items_max_fieldsGenqlSelection + min?: utility_collection_items_min_fieldsGenqlSelection + stddev?: utility_collection_items_stddev_fieldsGenqlSelection + stddev_pop?: utility_collection_items_stddev_pop_fieldsGenqlSelection + stddev_samp?: utility_collection_items_stddev_samp_fieldsGenqlSelection + sum?: utility_collection_items_sum_fieldsGenqlSelection + var_pop?: utility_collection_items_var_pop_fieldsGenqlSelection + var_samp?: utility_collection_items_var_samp_fieldsGenqlSelection + variance?: utility_collection_items_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "utility_collection_items" */ +export interface utility_collection_items_aggregate_order_by {avg?: (utility_collection_items_avg_order_by | null),count?: (order_by | null),max?: (utility_collection_items_max_order_by | null),min?: (utility_collection_items_min_order_by | null),stddev?: (utility_collection_items_stddev_order_by | null),stddev_pop?: (utility_collection_items_stddev_pop_order_by | null),stddev_samp?: (utility_collection_items_stddev_samp_order_by | null),sum?: (utility_collection_items_sum_order_by | null),var_pop?: (utility_collection_items_var_pop_order_by | null),var_samp?: (utility_collection_items_var_samp_order_by | null),variance?: (utility_collection_items_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "utility_collection_items" */ +export interface utility_collection_items_arr_rel_insert_input {data: utility_collection_items_insert_input[], +/** upsert condition */ +on_conflict?: (utility_collection_items_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface utility_collection_items_avg_fieldsGenqlSelection{ + position?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "utility_collection_items" */ +export interface utility_collection_items_avg_order_by {position?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "utility_collection_items". All fields are combined with a logical 'AND'. */ +export interface utility_collection_items_bool_exp {_and?: (utility_collection_items_bool_exp[] | null),_not?: (utility_collection_items_bool_exp | null),_or?: (utility_collection_items_bool_exp[] | null),collection?: (utility_collections_bool_exp | null),collection_id?: (uuid_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),note?: (String_comparison_exp | null),position?: (Int_comparison_exp | null),utility_lineup?: (utility_lineups_bool_exp | null),utility_lineup_id?: (uuid_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "utility_collection_items" */ +export interface utility_collection_items_inc_input {position?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "utility_collection_items" */ +export interface utility_collection_items_insert_input {collection?: (utility_collections_obj_rel_insert_input | null),collection_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),note?: (Scalars['String'] | null),position?: (Scalars['Int'] | null),utility_lineup?: (utility_lineups_obj_rel_insert_input | null),utility_lineup_id?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface utility_collection_items_max_fieldsGenqlSelection{ + collection_id?: boolean | number + created_at?: boolean | number + note?: boolean | number + position?: boolean | number + utility_lineup_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "utility_collection_items" */ +export interface utility_collection_items_max_order_by {collection_id?: (order_by | null),created_at?: (order_by | null),note?: (order_by | null),position?: (order_by | null),utility_lineup_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface utility_collection_items_min_fieldsGenqlSelection{ + collection_id?: boolean | number + created_at?: boolean | number + note?: boolean | number + position?: boolean | number + utility_lineup_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "utility_collection_items" */ +export interface utility_collection_items_min_order_by {collection_id?: (order_by | null),created_at?: (order_by | null),note?: (order_by | null),position?: (order_by | null),utility_lineup_id?: (order_by | null)} + + +/** response of any mutation on the table "utility_collection_items" */ +export interface utility_collection_items_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: utility_collection_itemsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "utility_collection_items" */ +export interface utility_collection_items_on_conflict {constraint: utility_collection_items_constraint,update_columns?: utility_collection_items_update_column[],where?: (utility_collection_items_bool_exp | null)} + + +/** Ordering options when selecting data from "utility_collection_items". */ +export interface utility_collection_items_order_by {collection?: (utility_collections_order_by | null),collection_id?: (order_by | null),created_at?: (order_by | null),note?: (order_by | null),position?: (order_by | null),utility_lineup?: (utility_lineups_order_by | null),utility_lineup_id?: (order_by | null)} + + +/** primary key columns input for table: utility_collection_items */ +export interface utility_collection_items_pk_columns_input {collection_id: Scalars['uuid'],utility_lineup_id: Scalars['uuid']} + + +/** input type for updating data in table "utility_collection_items" */ +export interface utility_collection_items_set_input {collection_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),note?: (Scalars['String'] | null),position?: (Scalars['Int'] | null),utility_lineup_id?: (Scalars['uuid'] | null)} + + +/** aggregate stddev on columns */ +export interface utility_collection_items_stddev_fieldsGenqlSelection{ + position?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "utility_collection_items" */ +export interface utility_collection_items_stddev_order_by {position?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface utility_collection_items_stddev_pop_fieldsGenqlSelection{ + position?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "utility_collection_items" */ +export interface utility_collection_items_stddev_pop_order_by {position?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface utility_collection_items_stddev_samp_fieldsGenqlSelection{ + position?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "utility_collection_items" */ +export interface utility_collection_items_stddev_samp_order_by {position?: (order_by | null)} + + +/** Streaming cursor of the table "utility_collection_items" */ +export interface utility_collection_items_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: utility_collection_items_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface utility_collection_items_stream_cursor_value_input {collection_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),note?: (Scalars['String'] | null),position?: (Scalars['Int'] | null),utility_lineup_id?: (Scalars['uuid'] | null)} + + +/** aggregate sum on columns */ +export interface utility_collection_items_sum_fieldsGenqlSelection{ + position?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "utility_collection_items" */ +export interface utility_collection_items_sum_order_by {position?: (order_by | null)} + +export interface utility_collection_items_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (utility_collection_items_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (utility_collection_items_set_input | null), +/** filter the rows which have to be updated */ +where: utility_collection_items_bool_exp} + + +/** aggregate var_pop on columns */ +export interface utility_collection_items_var_pop_fieldsGenqlSelection{ + position?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "utility_collection_items" */ +export interface utility_collection_items_var_pop_order_by {position?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface utility_collection_items_var_samp_fieldsGenqlSelection{ + position?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "utility_collection_items" */ +export interface utility_collection_items_var_samp_order_by {position?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface utility_collection_items_variance_fieldsGenqlSelection{ + position?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "utility_collection_items" */ +export interface utility_collection_items_variance_order_by {position?: (order_by | null)} + + +/** columns and relationships of "utility_collections" */ +export interface utility_collectionsGenqlSelection{ + /** A computed field, executes function "can_edit_utility_collection" */ + can_edit?: boolean | number + /** A computed field, executes function "can_view_utility_collection" */ + can_view?: boolean | number + created_at?: boolean | number + description?: boolean | number + id?: boolean | number + /** An array relationship */ + items?: (utility_collection_itemsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_collection_items_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_collection_items_order_by[] | null), + /** filter the rows returned */ + where?: (utility_collection_items_bool_exp | null)} }) + /** An aggregate relationship */ + items_aggregate?: (utility_collection_items_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_collection_items_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_collection_items_order_by[] | null), + /** filter the rows returned */ + where?: (utility_collection_items_bool_exp | null)} }) + map_name?: boolean | number + name?: boolean | number + /** An object relationship */ + owner?: playersGenqlSelection + owner_steam_id?: boolean | number + /** An object relationship */ + team?: teamsGenqlSelection + team_id?: boolean | number + updated_at?: boolean | number + visibility?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "utility_collections" */ +export interface utility_collections_aggregateGenqlSelection{ + aggregate?: utility_collections_aggregate_fieldsGenqlSelection + nodes?: utility_collectionsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "utility_collections" */ +export interface utility_collections_aggregate_fieldsGenqlSelection{ + avg?: utility_collections_avg_fieldsGenqlSelection + count?: { __args: {columns?: (utility_collections_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: utility_collections_max_fieldsGenqlSelection + min?: utility_collections_min_fieldsGenqlSelection + stddev?: utility_collections_stddev_fieldsGenqlSelection + stddev_pop?: utility_collections_stddev_pop_fieldsGenqlSelection + stddev_samp?: utility_collections_stddev_samp_fieldsGenqlSelection + sum?: utility_collections_sum_fieldsGenqlSelection + var_pop?: utility_collections_var_pop_fieldsGenqlSelection + var_samp?: utility_collections_var_samp_fieldsGenqlSelection + variance?: utility_collections_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface utility_collections_avg_fieldsGenqlSelection{ + owner_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "utility_collections". All fields are combined with a logical 'AND'. */ +export interface utility_collections_bool_exp {_and?: (utility_collections_bool_exp[] | null),_not?: (utility_collections_bool_exp | null),_or?: (utility_collections_bool_exp[] | null),can_edit?: (Boolean_comparison_exp | null),can_view?: (Boolean_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),description?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),items?: (utility_collection_items_bool_exp | null),items_aggregate?: (utility_collection_items_aggregate_bool_exp | null),map_name?: (String_comparison_exp | null),name?: (String_comparison_exp | null),owner?: (players_bool_exp | null),owner_steam_id?: (bigint_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null),visibility?: (e_utility_visibility_enum_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "utility_collections" */ +export interface utility_collections_inc_input {owner_steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "utility_collections" */ +export interface utility_collections_insert_input {created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),items?: (utility_collection_items_arr_rel_insert_input | null),map_name?: (Scalars['String'] | null),name?: (Scalars['String'] | null),owner?: (players_obj_rel_insert_input | null),owner_steam_id?: (Scalars['bigint'] | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null),visibility?: (e_utility_visibility_enum | null)} + + +/** aggregate max on columns */ +export interface utility_collections_max_fieldsGenqlSelection{ + created_at?: boolean | number + description?: boolean | number + id?: boolean | number + map_name?: boolean | number + name?: boolean | number + owner_steam_id?: boolean | number + team_id?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface utility_collections_min_fieldsGenqlSelection{ + created_at?: boolean | number + description?: boolean | number + id?: boolean | number + map_name?: boolean | number + name?: boolean | number + owner_steam_id?: boolean | number + team_id?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "utility_collections" */ +export interface utility_collections_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: utility_collectionsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "utility_collections" */ +export interface utility_collections_obj_rel_insert_input {data: utility_collections_insert_input, +/** upsert condition */ +on_conflict?: (utility_collections_on_conflict | null)} + + +/** on_conflict condition type for table "utility_collections" */ +export interface utility_collections_on_conflict {constraint: utility_collections_constraint,update_columns?: utility_collections_update_column[],where?: (utility_collections_bool_exp | null)} + + +/** Ordering options when selecting data from "utility_collections". */ +export interface utility_collections_order_by {can_edit?: (order_by | null),can_view?: (order_by | null),created_at?: (order_by | null),description?: (order_by | null),id?: (order_by | null),items_aggregate?: (utility_collection_items_aggregate_order_by | null),map_name?: (order_by | null),name?: (order_by | null),owner?: (players_order_by | null),owner_steam_id?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null),updated_at?: (order_by | null),visibility?: (order_by | null)} + + +/** primary key columns input for table: utility_collections */ +export interface utility_collections_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "utility_collections" */ +export interface utility_collections_set_input {created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),map_name?: (Scalars['String'] | null),name?: (Scalars['String'] | null),owner_steam_id?: (Scalars['bigint'] | null),team_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null),visibility?: (e_utility_visibility_enum | null)} + + +/** aggregate stddev on columns */ +export interface utility_collections_stddev_fieldsGenqlSelection{ + owner_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface utility_collections_stddev_pop_fieldsGenqlSelection{ + owner_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface utility_collections_stddev_samp_fieldsGenqlSelection{ + owner_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "utility_collections" */ +export interface utility_collections_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: utility_collections_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface utility_collections_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),map_name?: (Scalars['String'] | null),name?: (Scalars['String'] | null),owner_steam_id?: (Scalars['bigint'] | null),team_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null),visibility?: (e_utility_visibility_enum | null)} + + +/** aggregate sum on columns */ +export interface utility_collections_sum_fieldsGenqlSelection{ + owner_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface utility_collections_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (utility_collections_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (utility_collections_set_input | null), +/** filter the rows which have to be updated */ +where: utility_collections_bool_exp} + + +/** aggregate var_pop on columns */ +export interface utility_collections_var_pop_fieldsGenqlSelection{ + owner_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface utility_collections_var_samp_fieldsGenqlSelection{ + owner_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface utility_collections_variance_fieldsGenqlSelection{ + owner_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "utility_demo_mines" */ +export interface utility_demo_minesGenqlSelection{ + failed_reason?: boolean | number + match_map_demo_id?: boolean | number + mined_at?: boolean | number + throws?: boolean | number + version?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "utility_demo_mines" */ +export interface utility_demo_mines_aggregateGenqlSelection{ + aggregate?: utility_demo_mines_aggregate_fieldsGenqlSelection + nodes?: utility_demo_minesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "utility_demo_mines" */ +export interface utility_demo_mines_aggregate_fieldsGenqlSelection{ + avg?: utility_demo_mines_avg_fieldsGenqlSelection + count?: { __args: {columns?: (utility_demo_mines_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: utility_demo_mines_max_fieldsGenqlSelection + min?: utility_demo_mines_min_fieldsGenqlSelection + stddev?: utility_demo_mines_stddev_fieldsGenqlSelection + stddev_pop?: utility_demo_mines_stddev_pop_fieldsGenqlSelection + stddev_samp?: utility_demo_mines_stddev_samp_fieldsGenqlSelection + sum?: utility_demo_mines_sum_fieldsGenqlSelection + var_pop?: utility_demo_mines_var_pop_fieldsGenqlSelection + var_samp?: utility_demo_mines_var_samp_fieldsGenqlSelection + variance?: utility_demo_mines_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface utility_demo_mines_avg_fieldsGenqlSelection{ + throws?: boolean | number + version?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "utility_demo_mines". All fields are combined with a logical 'AND'. */ +export interface utility_demo_mines_bool_exp {_and?: (utility_demo_mines_bool_exp[] | null),_not?: (utility_demo_mines_bool_exp | null),_or?: (utility_demo_mines_bool_exp[] | null),failed_reason?: (String_comparison_exp | null),match_map_demo_id?: (uuid_comparison_exp | null),mined_at?: (timestamptz_comparison_exp | null),throws?: (Int_comparison_exp | null),version?: (Int_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "utility_demo_mines" */ +export interface utility_demo_mines_inc_input {throws?: (Scalars['Int'] | null),version?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "utility_demo_mines" */ +export interface utility_demo_mines_insert_input {failed_reason?: (Scalars['String'] | null),match_map_demo_id?: (Scalars['uuid'] | null),mined_at?: (Scalars['timestamptz'] | null),throws?: (Scalars['Int'] | null),version?: (Scalars['Int'] | null)} + + +/** aggregate max on columns */ +export interface utility_demo_mines_max_fieldsGenqlSelection{ + failed_reason?: boolean | number + match_map_demo_id?: boolean | number + mined_at?: boolean | number + throws?: boolean | number + version?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface utility_demo_mines_min_fieldsGenqlSelection{ + failed_reason?: boolean | number + match_map_demo_id?: boolean | number + mined_at?: boolean | number + throws?: boolean | number + version?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "utility_demo_mines" */ +export interface utility_demo_mines_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: utility_demo_minesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "utility_demo_mines" */ +export interface utility_demo_mines_on_conflict {constraint: utility_demo_mines_constraint,update_columns?: utility_demo_mines_update_column[],where?: (utility_demo_mines_bool_exp | null)} + + +/** Ordering options when selecting data from "utility_demo_mines". */ +export interface utility_demo_mines_order_by {failed_reason?: (order_by | null),match_map_demo_id?: (order_by | null),mined_at?: (order_by | null),throws?: (order_by | null),version?: (order_by | null)} + + +/** primary key columns input for table: utility_demo_mines */ +export interface utility_demo_mines_pk_columns_input {match_map_demo_id: Scalars['uuid']} + + +/** input type for updating data in table "utility_demo_mines" */ +export interface utility_demo_mines_set_input {failed_reason?: (Scalars['String'] | null),match_map_demo_id?: (Scalars['uuid'] | null),mined_at?: (Scalars['timestamptz'] | null),throws?: (Scalars['Int'] | null),version?: (Scalars['Int'] | null)} + + +/** aggregate stddev on columns */ +export interface utility_demo_mines_stddev_fieldsGenqlSelection{ + throws?: boolean | number + version?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface utility_demo_mines_stddev_pop_fieldsGenqlSelection{ + throws?: boolean | number + version?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface utility_demo_mines_stddev_samp_fieldsGenqlSelection{ + throws?: boolean | number + version?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "utility_demo_mines" */ +export interface utility_demo_mines_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: utility_demo_mines_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface utility_demo_mines_stream_cursor_value_input {failed_reason?: (Scalars['String'] | null),match_map_demo_id?: (Scalars['uuid'] | null),mined_at?: (Scalars['timestamptz'] | null),throws?: (Scalars['Int'] | null),version?: (Scalars['Int'] | null)} + + +/** aggregate sum on columns */ +export interface utility_demo_mines_sum_fieldsGenqlSelection{ + throws?: boolean | number + version?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface utility_demo_mines_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (utility_demo_mines_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (utility_demo_mines_set_input | null), +/** filter the rows which have to be updated */ +where: utility_demo_mines_bool_exp} + + +/** aggregate var_pop on columns */ +export interface utility_demo_mines_var_pop_fieldsGenqlSelection{ + throws?: boolean | number + version?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface utility_demo_mines_var_samp_fieldsGenqlSelection{ + throws?: boolean | number + version?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface utility_demo_mines_variance_fieldsGenqlSelection{ + throws?: boolean | number + version?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "utility_demo_throws" */ +export interface utility_demo_throwsGenqlSelection{ + created_at?: boolean | number + flight_time_ms?: boolean | number + grenade_id?: boolean | number + land_x?: boolean | number + land_y?: boolean | number + land_z?: boolean | number + lineup_bucket?: boolean | number + map_name?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + match_id?: boolean | number + /** An object relationship */ + match_map?: match_mapsGenqlSelection + match_map_demo_id?: boolean | number + match_map_id?: boolean | number + origin_x?: boolean | number + origin_y?: boolean | number + origin_z?: boolean | number + round?: boolean | number + side?: boolean | number + technique?: boolean | number + throw_strength?: boolean | number + thrower_steam_id?: boolean | number + thrown_at?: boolean | number + tick?: boolean | number + utility_type?: boolean | number + view_pitch?: boolean | number + view_yaw?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "utility_demo_throws" */ +export interface utility_demo_throws_aggregateGenqlSelection{ + aggregate?: utility_demo_throws_aggregate_fieldsGenqlSelection + nodes?: utility_demo_throwsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "utility_demo_throws" */ +export interface utility_demo_throws_aggregate_fieldsGenqlSelection{ + avg?: utility_demo_throws_avg_fieldsGenqlSelection + count?: { __args: {columns?: (utility_demo_throws_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: utility_demo_throws_max_fieldsGenqlSelection + min?: utility_demo_throws_min_fieldsGenqlSelection + stddev?: utility_demo_throws_stddev_fieldsGenqlSelection + stddev_pop?: utility_demo_throws_stddev_pop_fieldsGenqlSelection + stddev_samp?: utility_demo_throws_stddev_samp_fieldsGenqlSelection + sum?: utility_demo_throws_sum_fieldsGenqlSelection + var_pop?: utility_demo_throws_var_pop_fieldsGenqlSelection + var_samp?: utility_demo_throws_var_samp_fieldsGenqlSelection + variance?: utility_demo_throws_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface utility_demo_throws_avg_fieldsGenqlSelection{ + flight_time_ms?: boolean | number + grenade_id?: boolean | number + land_x?: boolean | number + land_y?: boolean | number + land_z?: boolean | number + origin_x?: boolean | number + origin_y?: boolean | number + origin_z?: boolean | number + round?: boolean | number + thrower_steam_id?: boolean | number + tick?: boolean | number + view_pitch?: boolean | number + view_yaw?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "utility_demo_throws". All fields are combined with a logical 'AND'. */ +export interface utility_demo_throws_bool_exp {_and?: (utility_demo_throws_bool_exp[] | null),_not?: (utility_demo_throws_bool_exp | null),_or?: (utility_demo_throws_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),flight_time_ms?: (Int_comparison_exp | null),grenade_id?: (Int_comparison_exp | null),land_x?: (float8_comparison_exp | null),land_y?: (float8_comparison_exp | null),land_z?: (float8_comparison_exp | null),lineup_bucket?: (String_comparison_exp | null),map_name?: (String_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_demo_id?: (uuid_comparison_exp | null),match_map_id?: (uuid_comparison_exp | null),origin_x?: (float8_comparison_exp | null),origin_y?: (float8_comparison_exp | null),origin_z?: (float8_comparison_exp | null),round?: (Int_comparison_exp | null),side?: (e_sides_enum_comparison_exp | null),technique?: (e_utility_techniques_enum_comparison_exp | null),throw_strength?: (e_utility_throw_strengths_enum_comparison_exp | null),thrower_steam_id?: (bigint_comparison_exp | null),thrown_at?: (timestamptz_comparison_exp | null),tick?: (Int_comparison_exp | null),utility_type?: (e_utility_types_enum_comparison_exp | null),view_pitch?: (float8_comparison_exp | null),view_yaw?: (float8_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "utility_demo_throws" */ +export interface utility_demo_throws_inc_input {flight_time_ms?: (Scalars['Int'] | null),grenade_id?: (Scalars['Int'] | null),land_x?: (Scalars['float8'] | null),land_y?: (Scalars['float8'] | null),land_z?: (Scalars['float8'] | null),origin_x?: (Scalars['float8'] | null),origin_y?: (Scalars['float8'] | null),origin_z?: (Scalars['float8'] | null),round?: (Scalars['Int'] | null),thrower_steam_id?: (Scalars['bigint'] | null),tick?: (Scalars['Int'] | null),view_pitch?: (Scalars['float8'] | null),view_yaw?: (Scalars['float8'] | null)} + + +/** input type for inserting data into table "utility_demo_throws" */ +export interface utility_demo_throws_insert_input {created_at?: (Scalars['timestamptz'] | null),flight_time_ms?: (Scalars['Int'] | null),grenade_id?: (Scalars['Int'] | null),land_x?: (Scalars['float8'] | null),land_y?: (Scalars['float8'] | null),land_z?: (Scalars['float8'] | null),map_name?: (Scalars['String'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_map?: (match_maps_obj_rel_insert_input | null),match_map_demo_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),origin_x?: (Scalars['float8'] | null),origin_y?: (Scalars['float8'] | null),origin_z?: (Scalars['float8'] | null),round?: (Scalars['Int'] | null),side?: (e_sides_enum | null),technique?: (e_utility_techniques_enum | null),throw_strength?: (e_utility_throw_strengths_enum | null),thrower_steam_id?: (Scalars['bigint'] | null),thrown_at?: (Scalars['timestamptz'] | null),tick?: (Scalars['Int'] | null),utility_type?: (e_utility_types_enum | null),view_pitch?: (Scalars['float8'] | null),view_yaw?: (Scalars['float8'] | null)} + + +/** aggregate max on columns */ +export interface utility_demo_throws_max_fieldsGenqlSelection{ + created_at?: boolean | number + flight_time_ms?: boolean | number + grenade_id?: boolean | number + land_x?: boolean | number + land_y?: boolean | number + land_z?: boolean | number + lineup_bucket?: boolean | number + map_name?: boolean | number + match_id?: boolean | number + match_map_demo_id?: boolean | number + match_map_id?: boolean | number + origin_x?: boolean | number + origin_y?: boolean | number + origin_z?: boolean | number + round?: boolean | number + thrower_steam_id?: boolean | number + thrown_at?: boolean | number + tick?: boolean | number + view_pitch?: boolean | number + view_yaw?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface utility_demo_throws_min_fieldsGenqlSelection{ + created_at?: boolean | number + flight_time_ms?: boolean | number + grenade_id?: boolean | number + land_x?: boolean | number + land_y?: boolean | number + land_z?: boolean | number + lineup_bucket?: boolean | number + map_name?: boolean | number + match_id?: boolean | number + match_map_demo_id?: boolean | number + match_map_id?: boolean | number + origin_x?: boolean | number + origin_y?: boolean | number + origin_z?: boolean | number + round?: boolean | number + thrower_steam_id?: boolean | number + thrown_at?: boolean | number + tick?: boolean | number + view_pitch?: boolean | number + view_yaw?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "utility_demo_throws" */ +export interface utility_demo_throws_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: utility_demo_throwsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "utility_demo_throws" */ +export interface utility_demo_throws_on_conflict {constraint: utility_demo_throws_constraint,update_columns?: utility_demo_throws_update_column[],where?: (utility_demo_throws_bool_exp | null)} + + +/** Ordering options when selecting data from "utility_demo_throws". */ +export interface utility_demo_throws_order_by {created_at?: (order_by | null),flight_time_ms?: (order_by | null),grenade_id?: (order_by | null),land_x?: (order_by | null),land_y?: (order_by | null),land_z?: (order_by | null),lineup_bucket?: (order_by | null),map_name?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_demo_id?: (order_by | null),match_map_id?: (order_by | null),origin_x?: (order_by | null),origin_y?: (order_by | null),origin_z?: (order_by | null),round?: (order_by | null),side?: (order_by | null),technique?: (order_by | null),throw_strength?: (order_by | null),thrower_steam_id?: (order_by | null),thrown_at?: (order_by | null),tick?: (order_by | null),utility_type?: (order_by | null),view_pitch?: (order_by | null),view_yaw?: (order_by | null)} + + +/** primary key columns input for table: utility_demo_throws */ +export interface utility_demo_throws_pk_columns_input {grenade_id: Scalars['Int'],match_map_demo_id: Scalars['uuid']} + + +/** input type for updating data in table "utility_demo_throws" */ +export interface utility_demo_throws_set_input {created_at?: (Scalars['timestamptz'] | null),flight_time_ms?: (Scalars['Int'] | null),grenade_id?: (Scalars['Int'] | null),land_x?: (Scalars['float8'] | null),land_y?: (Scalars['float8'] | null),land_z?: (Scalars['float8'] | null),map_name?: (Scalars['String'] | null),match_id?: (Scalars['uuid'] | null),match_map_demo_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),origin_x?: (Scalars['float8'] | null),origin_y?: (Scalars['float8'] | null),origin_z?: (Scalars['float8'] | null),round?: (Scalars['Int'] | null),side?: (e_sides_enum | null),technique?: (e_utility_techniques_enum | null),throw_strength?: (e_utility_throw_strengths_enum | null),thrower_steam_id?: (Scalars['bigint'] | null),thrown_at?: (Scalars['timestamptz'] | null),tick?: (Scalars['Int'] | null),utility_type?: (e_utility_types_enum | null),view_pitch?: (Scalars['float8'] | null),view_yaw?: (Scalars['float8'] | null)} + + +/** aggregate stddev on columns */ +export interface utility_demo_throws_stddev_fieldsGenqlSelection{ + flight_time_ms?: boolean | number + grenade_id?: boolean | number + land_x?: boolean | number + land_y?: boolean | number + land_z?: boolean | number + origin_x?: boolean | number + origin_y?: boolean | number + origin_z?: boolean | number + round?: boolean | number + thrower_steam_id?: boolean | number + tick?: boolean | number + view_pitch?: boolean | number + view_yaw?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface utility_demo_throws_stddev_pop_fieldsGenqlSelection{ + flight_time_ms?: boolean | number + grenade_id?: boolean | number + land_x?: boolean | number + land_y?: boolean | number + land_z?: boolean | number + origin_x?: boolean | number + origin_y?: boolean | number + origin_z?: boolean | number + round?: boolean | number + thrower_steam_id?: boolean | number + tick?: boolean | number + view_pitch?: boolean | number + view_yaw?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface utility_demo_throws_stddev_samp_fieldsGenqlSelection{ + flight_time_ms?: boolean | number + grenade_id?: boolean | number + land_x?: boolean | number + land_y?: boolean | number + land_z?: boolean | number + origin_x?: boolean | number + origin_y?: boolean | number + origin_z?: boolean | number + round?: boolean | number + thrower_steam_id?: boolean | number + tick?: boolean | number + view_pitch?: boolean | number + view_yaw?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "utility_demo_throws" */ +export interface utility_demo_throws_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: utility_demo_throws_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface utility_demo_throws_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),flight_time_ms?: (Scalars['Int'] | null),grenade_id?: (Scalars['Int'] | null),land_x?: (Scalars['float8'] | null),land_y?: (Scalars['float8'] | null),land_z?: (Scalars['float8'] | null),lineup_bucket?: (Scalars['String'] | null),map_name?: (Scalars['String'] | null),match_id?: (Scalars['uuid'] | null),match_map_demo_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),origin_x?: (Scalars['float8'] | null),origin_y?: (Scalars['float8'] | null),origin_z?: (Scalars['float8'] | null),round?: (Scalars['Int'] | null),side?: (e_sides_enum | null),technique?: (e_utility_techniques_enum | null),throw_strength?: (e_utility_throw_strengths_enum | null),thrower_steam_id?: (Scalars['bigint'] | null),thrown_at?: (Scalars['timestamptz'] | null),tick?: (Scalars['Int'] | null),utility_type?: (e_utility_types_enum | null),view_pitch?: (Scalars['float8'] | null),view_yaw?: (Scalars['float8'] | null)} + + +/** aggregate sum on columns */ +export interface utility_demo_throws_sum_fieldsGenqlSelection{ + flight_time_ms?: boolean | number + grenade_id?: boolean | number + land_x?: boolean | number + land_y?: boolean | number + land_z?: boolean | number + origin_x?: boolean | number + origin_y?: boolean | number + origin_z?: boolean | number + round?: boolean | number + thrower_steam_id?: boolean | number + tick?: boolean | number + view_pitch?: boolean | number + view_yaw?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface utility_demo_throws_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (utility_demo_throws_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (utility_demo_throws_set_input | null), +/** filter the rows which have to be updated */ +where: utility_demo_throws_bool_exp} + + +/** aggregate var_pop on columns */ +export interface utility_demo_throws_var_pop_fieldsGenqlSelection{ + flight_time_ms?: boolean | number + grenade_id?: boolean | number + land_x?: boolean | number + land_y?: boolean | number + land_z?: boolean | number + origin_x?: boolean | number + origin_y?: boolean | number + origin_z?: boolean | number + round?: boolean | number + thrower_steam_id?: boolean | number + tick?: boolean | number + view_pitch?: boolean | number + view_yaw?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface utility_demo_throws_var_samp_fieldsGenqlSelection{ + flight_time_ms?: boolean | number + grenade_id?: boolean | number + land_x?: boolean | number + land_y?: boolean | number + land_z?: boolean | number + origin_x?: boolean | number + origin_y?: boolean | number + origin_z?: boolean | number + round?: boolean | number + thrower_steam_id?: boolean | number + tick?: boolean | number + view_pitch?: boolean | number + view_yaw?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface utility_demo_throws_variance_fieldsGenqlSelection{ + flight_time_ms?: boolean | number + grenade_id?: boolean | number + land_x?: boolean | number + land_y?: boolean | number + land_z?: boolean | number + origin_x?: boolean | number + origin_y?: boolean | number + origin_z?: boolean | number + round?: boolean | number + thrower_steam_id?: boolean | number + tick?: boolean | number + view_pitch?: boolean | number + view_yaw?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "utility_drift_results" */ +export interface utility_drift_resultsGenqlSelection{ + created_at?: boolean | number + distance?: boolean | number + distance_xy?: boolean | number + distance_z?: boolean | number + reason?: boolean | number + /** An object relationship */ + scan?: utility_drift_scansGenqlSelection + severity?: boolean | number + utility_drift_scan_id?: boolean | number + /** An object relationship */ + utility_lineup?: utility_lineupsGenqlSelection + utility_lineup_id?: boolean | number + verdict?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "utility_drift_results" */ +export interface utility_drift_results_aggregateGenqlSelection{ + aggregate?: utility_drift_results_aggregate_fieldsGenqlSelection + nodes?: utility_drift_resultsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface utility_drift_results_aggregate_bool_exp {avg?: (utility_drift_results_aggregate_bool_exp_avg | null),corr?: (utility_drift_results_aggregate_bool_exp_corr | null),count?: (utility_drift_results_aggregate_bool_exp_count | null),covar_samp?: (utility_drift_results_aggregate_bool_exp_covar_samp | null),max?: (utility_drift_results_aggregate_bool_exp_max | null),min?: (utility_drift_results_aggregate_bool_exp_min | null),stddev_samp?: (utility_drift_results_aggregate_bool_exp_stddev_samp | null),sum?: (utility_drift_results_aggregate_bool_exp_sum | null),var_samp?: (utility_drift_results_aggregate_bool_exp_var_samp | null)} + +export interface utility_drift_results_aggregate_bool_exp_avg {arguments: utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_avg_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_drift_results_bool_exp | null),predicate: float8_comparison_exp} + +export interface utility_drift_results_aggregate_bool_exp_corr {arguments: utility_drift_results_aggregate_bool_exp_corr_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (utility_drift_results_bool_exp | null),predicate: float8_comparison_exp} + +export interface utility_drift_results_aggregate_bool_exp_corr_arguments {X: utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_corr_arguments_columns,Y: utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_corr_arguments_columns} + +export interface utility_drift_results_aggregate_bool_exp_count {arguments?: (utility_drift_results_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (utility_drift_results_bool_exp | null),predicate: Int_comparison_exp} + +export interface utility_drift_results_aggregate_bool_exp_covar_samp {arguments: utility_drift_results_aggregate_bool_exp_covar_samp_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (utility_drift_results_bool_exp | null),predicate: float8_comparison_exp} + +export interface utility_drift_results_aggregate_bool_exp_covar_samp_arguments {X: utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_covar_samp_arguments_columns,Y: utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_covar_samp_arguments_columns} + +export interface utility_drift_results_aggregate_bool_exp_max {arguments: utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_max_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_drift_results_bool_exp | null),predicate: float8_comparison_exp} + +export interface utility_drift_results_aggregate_bool_exp_min {arguments: utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_min_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_drift_results_bool_exp | null),predicate: float8_comparison_exp} + +export interface utility_drift_results_aggregate_bool_exp_stddev_samp {arguments: utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_stddev_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_drift_results_bool_exp | null),predicate: float8_comparison_exp} + +export interface utility_drift_results_aggregate_bool_exp_sum {arguments: utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_sum_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_drift_results_bool_exp | null),predicate: float8_comparison_exp} + +export interface utility_drift_results_aggregate_bool_exp_var_samp {arguments: utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_var_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_drift_results_bool_exp | null),predicate: float8_comparison_exp} + + +/** aggregate fields of "utility_drift_results" */ +export interface utility_drift_results_aggregate_fieldsGenqlSelection{ + avg?: utility_drift_results_avg_fieldsGenqlSelection + count?: { __args: {columns?: (utility_drift_results_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: utility_drift_results_max_fieldsGenqlSelection + min?: utility_drift_results_min_fieldsGenqlSelection + stddev?: utility_drift_results_stddev_fieldsGenqlSelection + stddev_pop?: utility_drift_results_stddev_pop_fieldsGenqlSelection + stddev_samp?: utility_drift_results_stddev_samp_fieldsGenqlSelection + sum?: utility_drift_results_sum_fieldsGenqlSelection + var_pop?: utility_drift_results_var_pop_fieldsGenqlSelection + var_samp?: utility_drift_results_var_samp_fieldsGenqlSelection + variance?: utility_drift_results_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "utility_drift_results" */ +export interface utility_drift_results_aggregate_order_by {avg?: (utility_drift_results_avg_order_by | null),count?: (order_by | null),max?: (utility_drift_results_max_order_by | null),min?: (utility_drift_results_min_order_by | null),stddev?: (utility_drift_results_stddev_order_by | null),stddev_pop?: (utility_drift_results_stddev_pop_order_by | null),stddev_samp?: (utility_drift_results_stddev_samp_order_by | null),sum?: (utility_drift_results_sum_order_by | null),var_pop?: (utility_drift_results_var_pop_order_by | null),var_samp?: (utility_drift_results_var_samp_order_by | null),variance?: (utility_drift_results_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "utility_drift_results" */ +export interface utility_drift_results_arr_rel_insert_input {data: utility_drift_results_insert_input[], +/** upsert condition */ +on_conflict?: (utility_drift_results_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface utility_drift_results_avg_fieldsGenqlSelection{ + distance?: boolean | number + distance_xy?: boolean | number + distance_z?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "utility_drift_results" */ +export interface utility_drift_results_avg_order_by {distance?: (order_by | null),distance_xy?: (order_by | null),distance_z?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "utility_drift_results". All fields are combined with a logical 'AND'. */ +export interface utility_drift_results_bool_exp {_and?: (utility_drift_results_bool_exp[] | null),_not?: (utility_drift_results_bool_exp | null),_or?: (utility_drift_results_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),distance?: (float8_comparison_exp | null),distance_xy?: (float8_comparison_exp | null),distance_z?: (float8_comparison_exp | null),reason?: (String_comparison_exp | null),scan?: (utility_drift_scans_bool_exp | null),severity?: (String_comparison_exp | null),utility_drift_scan_id?: (uuid_comparison_exp | null),utility_lineup?: (utility_lineups_bool_exp | null),utility_lineup_id?: (uuid_comparison_exp | null),verdict?: (String_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "utility_drift_results" */ +export interface utility_drift_results_inc_input {distance?: (Scalars['float8'] | null),distance_xy?: (Scalars['float8'] | null),distance_z?: (Scalars['float8'] | null)} + + +/** input type for inserting data into table "utility_drift_results" */ +export interface utility_drift_results_insert_input {created_at?: (Scalars['timestamptz'] | null),distance?: (Scalars['float8'] | null),distance_xy?: (Scalars['float8'] | null),distance_z?: (Scalars['float8'] | null),reason?: (Scalars['String'] | null),scan?: (utility_drift_scans_obj_rel_insert_input | null),severity?: (Scalars['String'] | null),utility_drift_scan_id?: (Scalars['uuid'] | null),utility_lineup?: (utility_lineups_obj_rel_insert_input | null),utility_lineup_id?: (Scalars['uuid'] | null),verdict?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface utility_drift_results_max_fieldsGenqlSelection{ + created_at?: boolean | number + distance?: boolean | number + distance_xy?: boolean | number + distance_z?: boolean | number + reason?: boolean | number + severity?: boolean | number + utility_drift_scan_id?: boolean | number + utility_lineup_id?: boolean | number + verdict?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "utility_drift_results" */ +export interface utility_drift_results_max_order_by {created_at?: (order_by | null),distance?: (order_by | null),distance_xy?: (order_by | null),distance_z?: (order_by | null),reason?: (order_by | null),severity?: (order_by | null),utility_drift_scan_id?: (order_by | null),utility_lineup_id?: (order_by | null),verdict?: (order_by | null)} + + +/** aggregate min on columns */ +export interface utility_drift_results_min_fieldsGenqlSelection{ + created_at?: boolean | number + distance?: boolean | number + distance_xy?: boolean | number + distance_z?: boolean | number + reason?: boolean | number + severity?: boolean | number + utility_drift_scan_id?: boolean | number + utility_lineup_id?: boolean | number + verdict?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "utility_drift_results" */ +export interface utility_drift_results_min_order_by {created_at?: (order_by | null),distance?: (order_by | null),distance_xy?: (order_by | null),distance_z?: (order_by | null),reason?: (order_by | null),severity?: (order_by | null),utility_drift_scan_id?: (order_by | null),utility_lineup_id?: (order_by | null),verdict?: (order_by | null)} + + +/** response of any mutation on the table "utility_drift_results" */ +export interface utility_drift_results_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: utility_drift_resultsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "utility_drift_results" */ +export interface utility_drift_results_on_conflict {constraint: utility_drift_results_constraint,update_columns?: utility_drift_results_update_column[],where?: (utility_drift_results_bool_exp | null)} + + +/** Ordering options when selecting data from "utility_drift_results". */ +export interface utility_drift_results_order_by {created_at?: (order_by | null),distance?: (order_by | null),distance_xy?: (order_by | null),distance_z?: (order_by | null),reason?: (order_by | null),scan?: (utility_drift_scans_order_by | null),severity?: (order_by | null),utility_drift_scan_id?: (order_by | null),utility_lineup?: (utility_lineups_order_by | null),utility_lineup_id?: (order_by | null),verdict?: (order_by | null)} + + +/** primary key columns input for table: utility_drift_results */ +export interface utility_drift_results_pk_columns_input {utility_drift_scan_id: Scalars['uuid'],utility_lineup_id: Scalars['uuid']} + + +/** input type for updating data in table "utility_drift_results" */ +export interface utility_drift_results_set_input {created_at?: (Scalars['timestamptz'] | null),distance?: (Scalars['float8'] | null),distance_xy?: (Scalars['float8'] | null),distance_z?: (Scalars['float8'] | null),reason?: (Scalars['String'] | null),severity?: (Scalars['String'] | null),utility_drift_scan_id?: (Scalars['uuid'] | null),utility_lineup_id?: (Scalars['uuid'] | null),verdict?: (Scalars['String'] | null)} + + +/** aggregate stddev on columns */ +export interface utility_drift_results_stddev_fieldsGenqlSelection{ + distance?: boolean | number + distance_xy?: boolean | number + distance_z?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "utility_drift_results" */ +export interface utility_drift_results_stddev_order_by {distance?: (order_by | null),distance_xy?: (order_by | null),distance_z?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface utility_drift_results_stddev_pop_fieldsGenqlSelection{ + distance?: boolean | number + distance_xy?: boolean | number + distance_z?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "utility_drift_results" */ +export interface utility_drift_results_stddev_pop_order_by {distance?: (order_by | null),distance_xy?: (order_by | null),distance_z?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface utility_drift_results_stddev_samp_fieldsGenqlSelection{ + distance?: boolean | number + distance_xy?: boolean | number + distance_z?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "utility_drift_results" */ +export interface utility_drift_results_stddev_samp_order_by {distance?: (order_by | null),distance_xy?: (order_by | null),distance_z?: (order_by | null)} + + +/** Streaming cursor of the table "utility_drift_results" */ +export interface utility_drift_results_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: utility_drift_results_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface utility_drift_results_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),distance?: (Scalars['float8'] | null),distance_xy?: (Scalars['float8'] | null),distance_z?: (Scalars['float8'] | null),reason?: (Scalars['String'] | null),severity?: (Scalars['String'] | null),utility_drift_scan_id?: (Scalars['uuid'] | null),utility_lineup_id?: (Scalars['uuid'] | null),verdict?: (Scalars['String'] | null)} + + +/** aggregate sum on columns */ +export interface utility_drift_results_sum_fieldsGenqlSelection{ + distance?: boolean | number + distance_xy?: boolean | number + distance_z?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "utility_drift_results" */ +export interface utility_drift_results_sum_order_by {distance?: (order_by | null),distance_xy?: (order_by | null),distance_z?: (order_by | null)} + +export interface utility_drift_results_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (utility_drift_results_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (utility_drift_results_set_input | null), +/** filter the rows which have to be updated */ +where: utility_drift_results_bool_exp} + + +/** aggregate var_pop on columns */ +export interface utility_drift_results_var_pop_fieldsGenqlSelection{ + distance?: boolean | number + distance_xy?: boolean | number + distance_z?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "utility_drift_results" */ +export interface utility_drift_results_var_pop_order_by {distance?: (order_by | null),distance_xy?: (order_by | null),distance_z?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface utility_drift_results_var_samp_fieldsGenqlSelection{ + distance?: boolean | number + distance_xy?: boolean | number + distance_z?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "utility_drift_results" */ +export interface utility_drift_results_var_samp_order_by {distance?: (order_by | null),distance_xy?: (order_by | null),distance_z?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface utility_drift_results_variance_fieldsGenqlSelection{ + distance?: boolean | number + distance_xy?: boolean | number + distance_z?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "utility_drift_results" */ +export interface utility_drift_results_variance_order_by {distance?: (order_by | null),distance_xy?: (order_by | null),distance_z?: (order_by | null)} + + +/** columns and relationships of "utility_drift_scans" */ +export interface utility_drift_scansGenqlSelection{ + broken?: boolean | number + created_at?: boolean | number + failure_reason?: boolean | number + finished_at?: boolean | number + from_revision?: boolean | number + id?: boolean | number + lineups?: boolean | number + map_name?: boolean | number + max_distance?: boolean | number + moved?: boolean | number + /** An object relationship */ + requested_by?: playersGenqlSelection + requested_by_steam_id?: boolean | number + /** An array relationship */ + results?: (utility_drift_resultsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_drift_results_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_drift_results_order_by[] | null), + /** filter the rows returned */ + where?: (utility_drift_results_bool_exp | null)} }) + /** An aggregate relationship */ + results_aggregate?: (utility_drift_results_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_drift_results_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_drift_results_order_by[] | null), + /** filter the rows returned */ + where?: (utility_drift_results_bool_exp | null)} }) + scanned?: boolean | number + started_at?: boolean | number + status?: boolean | number + to_revision?: boolean | number + unchanged?: boolean | number + unsimulatable?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "utility_drift_scans" */ +export interface utility_drift_scans_aggregateGenqlSelection{ + aggregate?: utility_drift_scans_aggregate_fieldsGenqlSelection + nodes?: utility_drift_scansGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "utility_drift_scans" */ +export interface utility_drift_scans_aggregate_fieldsGenqlSelection{ + avg?: utility_drift_scans_avg_fieldsGenqlSelection + count?: { __args: {columns?: (utility_drift_scans_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: utility_drift_scans_max_fieldsGenqlSelection + min?: utility_drift_scans_min_fieldsGenqlSelection + stddev?: utility_drift_scans_stddev_fieldsGenqlSelection + stddev_pop?: utility_drift_scans_stddev_pop_fieldsGenqlSelection + stddev_samp?: utility_drift_scans_stddev_samp_fieldsGenqlSelection + sum?: utility_drift_scans_sum_fieldsGenqlSelection + var_pop?: utility_drift_scans_var_pop_fieldsGenqlSelection + var_samp?: utility_drift_scans_var_samp_fieldsGenqlSelection + variance?: utility_drift_scans_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface utility_drift_scans_avg_fieldsGenqlSelection{ + broken?: boolean | number + lineups?: boolean | number + max_distance?: boolean | number + moved?: boolean | number + requested_by_steam_id?: boolean | number + scanned?: boolean | number + unchanged?: boolean | number + unsimulatable?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "utility_drift_scans". All fields are combined with a logical 'AND'. */ +export interface utility_drift_scans_bool_exp {_and?: (utility_drift_scans_bool_exp[] | null),_not?: (utility_drift_scans_bool_exp | null),_or?: (utility_drift_scans_bool_exp[] | null),broken?: (Int_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),failure_reason?: (String_comparison_exp | null),finished_at?: (timestamptz_comparison_exp | null),from_revision?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),lineups?: (Int_comparison_exp | null),map_name?: (String_comparison_exp | null),max_distance?: (float8_comparison_exp | null),moved?: (Int_comparison_exp | null),requested_by?: (players_bool_exp | null),requested_by_steam_id?: (bigint_comparison_exp | null),results?: (utility_drift_results_bool_exp | null),results_aggregate?: (utility_drift_results_aggregate_bool_exp | null),scanned?: (Int_comparison_exp | null),started_at?: (timestamptz_comparison_exp | null),status?: (String_comparison_exp | null),to_revision?: (String_comparison_exp | null),unchanged?: (Int_comparison_exp | null),unsimulatable?: (Int_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "utility_drift_scans" */ +export interface utility_drift_scans_inc_input {broken?: (Scalars['Int'] | null),lineups?: (Scalars['Int'] | null),max_distance?: (Scalars['float8'] | null),moved?: (Scalars['Int'] | null),requested_by_steam_id?: (Scalars['bigint'] | null),scanned?: (Scalars['Int'] | null),unchanged?: (Scalars['Int'] | null),unsimulatable?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "utility_drift_scans" */ +export interface utility_drift_scans_insert_input {broken?: (Scalars['Int'] | null),created_at?: (Scalars['timestamptz'] | null),failure_reason?: (Scalars['String'] | null),finished_at?: (Scalars['timestamptz'] | null),from_revision?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),lineups?: (Scalars['Int'] | null),map_name?: (Scalars['String'] | null),max_distance?: (Scalars['float8'] | null),moved?: (Scalars['Int'] | null),requested_by?: (players_obj_rel_insert_input | null),requested_by_steam_id?: (Scalars['bigint'] | null),results?: (utility_drift_results_arr_rel_insert_input | null),scanned?: (Scalars['Int'] | null),started_at?: (Scalars['timestamptz'] | null),status?: (Scalars['String'] | null),to_revision?: (Scalars['String'] | null),unchanged?: (Scalars['Int'] | null),unsimulatable?: (Scalars['Int'] | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate max on columns */ +export interface utility_drift_scans_max_fieldsGenqlSelection{ + broken?: boolean | number + created_at?: boolean | number + failure_reason?: boolean | number + finished_at?: boolean | number + from_revision?: boolean | number + id?: boolean | number + lineups?: boolean | number + map_name?: boolean | number + max_distance?: boolean | number + moved?: boolean | number + requested_by_steam_id?: boolean | number + scanned?: boolean | number + started_at?: boolean | number + status?: boolean | number + to_revision?: boolean | number + unchanged?: boolean | number + unsimulatable?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface utility_drift_scans_min_fieldsGenqlSelection{ + broken?: boolean | number + created_at?: boolean | number + failure_reason?: boolean | number + finished_at?: boolean | number + from_revision?: boolean | number + id?: boolean | number + lineups?: boolean | number + map_name?: boolean | number + max_distance?: boolean | number + moved?: boolean | number + requested_by_steam_id?: boolean | number + scanned?: boolean | number + started_at?: boolean | number + status?: boolean | number + to_revision?: boolean | number + unchanged?: boolean | number + unsimulatable?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "utility_drift_scans" */ +export interface utility_drift_scans_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: utility_drift_scansGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "utility_drift_scans" */ +export interface utility_drift_scans_obj_rel_insert_input {data: utility_drift_scans_insert_input, +/** upsert condition */ +on_conflict?: (utility_drift_scans_on_conflict | null)} + + +/** on_conflict condition type for table "utility_drift_scans" */ +export interface utility_drift_scans_on_conflict {constraint: utility_drift_scans_constraint,update_columns?: utility_drift_scans_update_column[],where?: (utility_drift_scans_bool_exp | null)} + + +/** Ordering options when selecting data from "utility_drift_scans". */ +export interface utility_drift_scans_order_by {broken?: (order_by | null),created_at?: (order_by | null),failure_reason?: (order_by | null),finished_at?: (order_by | null),from_revision?: (order_by | null),id?: (order_by | null),lineups?: (order_by | null),map_name?: (order_by | null),max_distance?: (order_by | null),moved?: (order_by | null),requested_by?: (players_order_by | null),requested_by_steam_id?: (order_by | null),results_aggregate?: (utility_drift_results_aggregate_order_by | null),scanned?: (order_by | null),started_at?: (order_by | null),status?: (order_by | null),to_revision?: (order_by | null),unchanged?: (order_by | null),unsimulatable?: (order_by | null),updated_at?: (order_by | null)} + + +/** primary key columns input for table: utility_drift_scans */ +export interface utility_drift_scans_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "utility_drift_scans" */ +export interface utility_drift_scans_set_input {broken?: (Scalars['Int'] | null),created_at?: (Scalars['timestamptz'] | null),failure_reason?: (Scalars['String'] | null),finished_at?: (Scalars['timestamptz'] | null),from_revision?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),lineups?: (Scalars['Int'] | null),map_name?: (Scalars['String'] | null),max_distance?: (Scalars['float8'] | null),moved?: (Scalars['Int'] | null),requested_by_steam_id?: (Scalars['bigint'] | null),scanned?: (Scalars['Int'] | null),started_at?: (Scalars['timestamptz'] | null),status?: (Scalars['String'] | null),to_revision?: (Scalars['String'] | null),unchanged?: (Scalars['Int'] | null),unsimulatable?: (Scalars['Int'] | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate stddev on columns */ +export interface utility_drift_scans_stddev_fieldsGenqlSelection{ + broken?: boolean | number + lineups?: boolean | number + max_distance?: boolean | number + moved?: boolean | number + requested_by_steam_id?: boolean | number + scanned?: boolean | number + unchanged?: boolean | number + unsimulatable?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface utility_drift_scans_stddev_pop_fieldsGenqlSelection{ + broken?: boolean | number + lineups?: boolean | number + max_distance?: boolean | number + moved?: boolean | number + requested_by_steam_id?: boolean | number + scanned?: boolean | number + unchanged?: boolean | number + unsimulatable?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface utility_drift_scans_stddev_samp_fieldsGenqlSelection{ + broken?: boolean | number + lineups?: boolean | number + max_distance?: boolean | number + moved?: boolean | number + requested_by_steam_id?: boolean | number + scanned?: boolean | number + unchanged?: boolean | number + unsimulatable?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "utility_drift_scans" */ +export interface utility_drift_scans_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: utility_drift_scans_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface utility_drift_scans_stream_cursor_value_input {broken?: (Scalars['Int'] | null),created_at?: (Scalars['timestamptz'] | null),failure_reason?: (Scalars['String'] | null),finished_at?: (Scalars['timestamptz'] | null),from_revision?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),lineups?: (Scalars['Int'] | null),map_name?: (Scalars['String'] | null),max_distance?: (Scalars['float8'] | null),moved?: (Scalars['Int'] | null),requested_by_steam_id?: (Scalars['bigint'] | null),scanned?: (Scalars['Int'] | null),started_at?: (Scalars['timestamptz'] | null),status?: (Scalars['String'] | null),to_revision?: (Scalars['String'] | null),unchanged?: (Scalars['Int'] | null),unsimulatable?: (Scalars['Int'] | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate sum on columns */ +export interface utility_drift_scans_sum_fieldsGenqlSelection{ + broken?: boolean | number + lineups?: boolean | number + max_distance?: boolean | number + moved?: boolean | number + requested_by_steam_id?: boolean | number + scanned?: boolean | number + unchanged?: boolean | number + unsimulatable?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface utility_drift_scans_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (utility_drift_scans_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (utility_drift_scans_set_input | null), +/** filter the rows which have to be updated */ +where: utility_drift_scans_bool_exp} + + +/** aggregate var_pop on columns */ +export interface utility_drift_scans_var_pop_fieldsGenqlSelection{ + broken?: boolean | number + lineups?: boolean | number + max_distance?: boolean | number + moved?: boolean | number + requested_by_steam_id?: boolean | number + scanned?: boolean | number + unchanged?: boolean | number + unsimulatable?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface utility_drift_scans_var_samp_fieldsGenqlSelection{ + broken?: boolean | number + lineups?: boolean | number + max_distance?: boolean | number + moved?: boolean | number + requested_by_steam_id?: boolean | number + scanned?: boolean | number + unchanged?: boolean | number + unsimulatable?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface utility_drift_scans_variance_fieldsGenqlSelection{ + broken?: boolean | number + lineups?: boolean | number + max_distance?: boolean | number + moved?: boolean | number + requested_by_steam_id?: boolean | number + scanned?: boolean | number + unchanged?: boolean | number + unsimulatable?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "utility_lineup_favorites" */ +export interface utility_lineup_favoritesGenqlSelection{ + created_at?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + steam_id?: boolean | number + /** An object relationship */ + utility_lineup?: utility_lineupsGenqlSelection + utility_lineup_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "utility_lineup_favorites" */ +export interface utility_lineup_favorites_aggregateGenqlSelection{ + aggregate?: utility_lineup_favorites_aggregate_fieldsGenqlSelection + nodes?: utility_lineup_favoritesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface utility_lineup_favorites_aggregate_bool_exp {count?: (utility_lineup_favorites_aggregate_bool_exp_count | null)} + +export interface utility_lineup_favorites_aggregate_bool_exp_count {arguments?: (utility_lineup_favorites_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_favorites_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "utility_lineup_favorites" */ +export interface utility_lineup_favorites_aggregate_fieldsGenqlSelection{ + avg?: utility_lineup_favorites_avg_fieldsGenqlSelection + count?: { __args: {columns?: (utility_lineup_favorites_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: utility_lineup_favorites_max_fieldsGenqlSelection + min?: utility_lineup_favorites_min_fieldsGenqlSelection + stddev?: utility_lineup_favorites_stddev_fieldsGenqlSelection + stddev_pop?: utility_lineup_favorites_stddev_pop_fieldsGenqlSelection + stddev_samp?: utility_lineup_favorites_stddev_samp_fieldsGenqlSelection + sum?: utility_lineup_favorites_sum_fieldsGenqlSelection + var_pop?: utility_lineup_favorites_var_pop_fieldsGenqlSelection + var_samp?: utility_lineup_favorites_var_samp_fieldsGenqlSelection + variance?: utility_lineup_favorites_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "utility_lineup_favorites" */ +export interface utility_lineup_favorites_aggregate_order_by {avg?: (utility_lineup_favorites_avg_order_by | null),count?: (order_by | null),max?: (utility_lineup_favorites_max_order_by | null),min?: (utility_lineup_favorites_min_order_by | null),stddev?: (utility_lineup_favorites_stddev_order_by | null),stddev_pop?: (utility_lineup_favorites_stddev_pop_order_by | null),stddev_samp?: (utility_lineup_favorites_stddev_samp_order_by | null),sum?: (utility_lineup_favorites_sum_order_by | null),var_pop?: (utility_lineup_favorites_var_pop_order_by | null),var_samp?: (utility_lineup_favorites_var_samp_order_by | null),variance?: (utility_lineup_favorites_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "utility_lineup_favorites" */ +export interface utility_lineup_favorites_arr_rel_insert_input {data: utility_lineup_favorites_insert_input[], +/** upsert condition */ +on_conflict?: (utility_lineup_favorites_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface utility_lineup_favorites_avg_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "utility_lineup_favorites" */ +export interface utility_lineup_favorites_avg_order_by {steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "utility_lineup_favorites". All fields are combined with a logical 'AND'. */ +export interface utility_lineup_favorites_bool_exp {_and?: (utility_lineup_favorites_bool_exp[] | null),_not?: (utility_lineup_favorites_bool_exp | null),_or?: (utility_lineup_favorites_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),player?: (players_bool_exp | null),steam_id?: (bigint_comparison_exp | null),utility_lineup?: (utility_lineups_bool_exp | null),utility_lineup_id?: (uuid_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "utility_lineup_favorites" */ +export interface utility_lineup_favorites_inc_input {steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "utility_lineup_favorites" */ +export interface utility_lineup_favorites_insert_input {created_at?: (Scalars['timestamptz'] | null),player?: (players_obj_rel_insert_input | null),steam_id?: (Scalars['bigint'] | null),utility_lineup?: (utility_lineups_obj_rel_insert_input | null),utility_lineup_id?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface utility_lineup_favorites_max_fieldsGenqlSelection{ + created_at?: boolean | number + steam_id?: boolean | number + utility_lineup_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "utility_lineup_favorites" */ +export interface utility_lineup_favorites_max_order_by {created_at?: (order_by | null),steam_id?: (order_by | null),utility_lineup_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface utility_lineup_favorites_min_fieldsGenqlSelection{ + created_at?: boolean | number + steam_id?: boolean | number + utility_lineup_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "utility_lineup_favorites" */ +export interface utility_lineup_favorites_min_order_by {created_at?: (order_by | null),steam_id?: (order_by | null),utility_lineup_id?: (order_by | null)} + + +/** response of any mutation on the table "utility_lineup_favorites" */ +export interface utility_lineup_favorites_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: utility_lineup_favoritesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "utility_lineup_favorites" */ +export interface utility_lineup_favorites_on_conflict {constraint: utility_lineup_favorites_constraint,update_columns?: utility_lineup_favorites_update_column[],where?: (utility_lineup_favorites_bool_exp | null)} + + +/** Ordering options when selecting data from "utility_lineup_favorites". */ +export interface utility_lineup_favorites_order_by {created_at?: (order_by | null),player?: (players_order_by | null),steam_id?: (order_by | null),utility_lineup?: (utility_lineups_order_by | null),utility_lineup_id?: (order_by | null)} + + +/** primary key columns input for table: utility_lineup_favorites */ +export interface utility_lineup_favorites_pk_columns_input {steam_id: Scalars['bigint'],utility_lineup_id: Scalars['uuid']} + + +/** input type for updating data in table "utility_lineup_favorites" */ +export interface utility_lineup_favorites_set_input {created_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),utility_lineup_id?: (Scalars['uuid'] | null)} + + +/** aggregate stddev on columns */ +export interface utility_lineup_favorites_stddev_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "utility_lineup_favorites" */ +export interface utility_lineup_favorites_stddev_order_by {steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface utility_lineup_favorites_stddev_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "utility_lineup_favorites" */ +export interface utility_lineup_favorites_stddev_pop_order_by {steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface utility_lineup_favorites_stddev_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "utility_lineup_favorites" */ +export interface utility_lineup_favorites_stddev_samp_order_by {steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "utility_lineup_favorites" */ +export interface utility_lineup_favorites_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: utility_lineup_favorites_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface utility_lineup_favorites_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),utility_lineup_id?: (Scalars['uuid'] | null)} + + +/** aggregate sum on columns */ +export interface utility_lineup_favorites_sum_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "utility_lineup_favorites" */ +export interface utility_lineup_favorites_sum_order_by {steam_id?: (order_by | null)} + +export interface utility_lineup_favorites_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (utility_lineup_favorites_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (utility_lineup_favorites_set_input | null), +/** filter the rows which have to be updated */ +where: utility_lineup_favorites_bool_exp} + + +/** aggregate var_pop on columns */ +export interface utility_lineup_favorites_var_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "utility_lineup_favorites" */ +export interface utility_lineup_favorites_var_pop_order_by {steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface utility_lineup_favorites_var_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "utility_lineup_favorites" */ +export interface utility_lineup_favorites_var_samp_order_by {steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface utility_lineup_favorites_variance_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "utility_lineup_favorites" */ +export interface utility_lineup_favorites_variance_order_by {steam_id?: (order_by | null)} + + +/** columns and relationships of "utility_lineup_progress" */ +export interface utility_lineup_progressGenqlSelection{ + attempts?: boolean | number + best_streak?: boolean | number + current_streak?: boolean | number + last_practiced_at?: boolean | number + mastered_at?: boolean | number + miss_along_sum?: boolean | number + miss_lateral_sum?: boolean | number + miss_samples?: boolean | number + miss_vertical_sum?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + steam_id?: boolean | number + successes?: boolean | number + /** An object relationship */ + utility_lineup?: utility_lineupsGenqlSelection + utility_lineup_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "utility_lineup_progress" */ +export interface utility_lineup_progress_aggregateGenqlSelection{ + aggregate?: utility_lineup_progress_aggregate_fieldsGenqlSelection + nodes?: utility_lineup_progressGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface utility_lineup_progress_aggregate_bool_exp {avg?: (utility_lineup_progress_aggregate_bool_exp_avg | null),corr?: (utility_lineup_progress_aggregate_bool_exp_corr | null),count?: (utility_lineup_progress_aggregate_bool_exp_count | null),covar_samp?: (utility_lineup_progress_aggregate_bool_exp_covar_samp | null),max?: (utility_lineup_progress_aggregate_bool_exp_max | null),min?: (utility_lineup_progress_aggregate_bool_exp_min | null),stddev_samp?: (utility_lineup_progress_aggregate_bool_exp_stddev_samp | null),sum?: (utility_lineup_progress_aggregate_bool_exp_sum | null),var_samp?: (utility_lineup_progress_aggregate_bool_exp_var_samp | null)} + +export interface utility_lineup_progress_aggregate_bool_exp_avg {arguments: utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_avg_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_progress_bool_exp | null),predicate: float8_comparison_exp} + +export interface utility_lineup_progress_aggregate_bool_exp_corr {arguments: utility_lineup_progress_aggregate_bool_exp_corr_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_progress_bool_exp | null),predicate: float8_comparison_exp} + +export interface utility_lineup_progress_aggregate_bool_exp_corr_arguments {X: utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_corr_arguments_columns,Y: utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_corr_arguments_columns} + +export interface utility_lineup_progress_aggregate_bool_exp_count {arguments?: (utility_lineup_progress_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_progress_bool_exp | null),predicate: Int_comparison_exp} + +export interface utility_lineup_progress_aggregate_bool_exp_covar_samp {arguments: utility_lineup_progress_aggregate_bool_exp_covar_samp_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_progress_bool_exp | null),predicate: float8_comparison_exp} + +export interface utility_lineup_progress_aggregate_bool_exp_covar_samp_arguments {X: utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_covar_samp_arguments_columns,Y: utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_covar_samp_arguments_columns} + +export interface utility_lineup_progress_aggregate_bool_exp_max {arguments: utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_max_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_progress_bool_exp | null),predicate: float8_comparison_exp} + +export interface utility_lineup_progress_aggregate_bool_exp_min {arguments: utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_min_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_progress_bool_exp | null),predicate: float8_comparison_exp} + +export interface utility_lineup_progress_aggregate_bool_exp_stddev_samp {arguments: utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_stddev_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_progress_bool_exp | null),predicate: float8_comparison_exp} + +export interface utility_lineup_progress_aggregate_bool_exp_sum {arguments: utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_sum_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_progress_bool_exp | null),predicate: float8_comparison_exp} + +export interface utility_lineup_progress_aggregate_bool_exp_var_samp {arguments: utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_var_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_progress_bool_exp | null),predicate: float8_comparison_exp} + + +/** aggregate fields of "utility_lineup_progress" */ +export interface utility_lineup_progress_aggregate_fieldsGenqlSelection{ + avg?: utility_lineup_progress_avg_fieldsGenqlSelection + count?: { __args: {columns?: (utility_lineup_progress_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: utility_lineup_progress_max_fieldsGenqlSelection + min?: utility_lineup_progress_min_fieldsGenqlSelection + stddev?: utility_lineup_progress_stddev_fieldsGenqlSelection + stddev_pop?: utility_lineup_progress_stddev_pop_fieldsGenqlSelection + stddev_samp?: utility_lineup_progress_stddev_samp_fieldsGenqlSelection + sum?: utility_lineup_progress_sum_fieldsGenqlSelection + var_pop?: utility_lineup_progress_var_pop_fieldsGenqlSelection + var_samp?: utility_lineup_progress_var_samp_fieldsGenqlSelection + variance?: utility_lineup_progress_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "utility_lineup_progress" */ +export interface utility_lineup_progress_aggregate_order_by {avg?: (utility_lineup_progress_avg_order_by | null),count?: (order_by | null),max?: (utility_lineup_progress_max_order_by | null),min?: (utility_lineup_progress_min_order_by | null),stddev?: (utility_lineup_progress_stddev_order_by | null),stddev_pop?: (utility_lineup_progress_stddev_pop_order_by | null),stddev_samp?: (utility_lineup_progress_stddev_samp_order_by | null),sum?: (utility_lineup_progress_sum_order_by | null),var_pop?: (utility_lineup_progress_var_pop_order_by | null),var_samp?: (utility_lineup_progress_var_samp_order_by | null),variance?: (utility_lineup_progress_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "utility_lineup_progress" */ +export interface utility_lineup_progress_arr_rel_insert_input {data: utility_lineup_progress_insert_input[], +/** upsert condition */ +on_conflict?: (utility_lineup_progress_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface utility_lineup_progress_avg_fieldsGenqlSelection{ + attempts?: boolean | number + best_streak?: boolean | number + current_streak?: boolean | number + miss_along_sum?: boolean | number + miss_lateral_sum?: boolean | number + miss_samples?: boolean | number + miss_vertical_sum?: boolean | number + steam_id?: boolean | number + successes?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "utility_lineup_progress" */ +export interface utility_lineup_progress_avg_order_by {attempts?: (order_by | null),best_streak?: (order_by | null),current_streak?: (order_by | null),miss_along_sum?: (order_by | null),miss_lateral_sum?: (order_by | null),miss_samples?: (order_by | null),miss_vertical_sum?: (order_by | null),steam_id?: (order_by | null),successes?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "utility_lineup_progress". All fields are combined with a logical 'AND'. */ +export interface utility_lineup_progress_bool_exp {_and?: (utility_lineup_progress_bool_exp[] | null),_not?: (utility_lineup_progress_bool_exp | null),_or?: (utility_lineup_progress_bool_exp[] | null),attempts?: (Int_comparison_exp | null),best_streak?: (Int_comparison_exp | null),current_streak?: (Int_comparison_exp | null),last_practiced_at?: (timestamptz_comparison_exp | null),mastered_at?: (timestamptz_comparison_exp | null),miss_along_sum?: (float8_comparison_exp | null),miss_lateral_sum?: (float8_comparison_exp | null),miss_samples?: (Int_comparison_exp | null),miss_vertical_sum?: (float8_comparison_exp | null),player?: (players_bool_exp | null),steam_id?: (bigint_comparison_exp | null),successes?: (Int_comparison_exp | null),utility_lineup?: (utility_lineups_bool_exp | null),utility_lineup_id?: (uuid_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "utility_lineup_progress" */ +export interface utility_lineup_progress_inc_input {attempts?: (Scalars['Int'] | null),best_streak?: (Scalars['Int'] | null),current_streak?: (Scalars['Int'] | null),miss_along_sum?: (Scalars['float8'] | null),miss_lateral_sum?: (Scalars['float8'] | null),miss_samples?: (Scalars['Int'] | null),miss_vertical_sum?: (Scalars['float8'] | null),steam_id?: (Scalars['bigint'] | null),successes?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "utility_lineup_progress" */ +export interface utility_lineup_progress_insert_input {attempts?: (Scalars['Int'] | null),best_streak?: (Scalars['Int'] | null),current_streak?: (Scalars['Int'] | null),last_practiced_at?: (Scalars['timestamptz'] | null),mastered_at?: (Scalars['timestamptz'] | null),miss_along_sum?: (Scalars['float8'] | null),miss_lateral_sum?: (Scalars['float8'] | null),miss_samples?: (Scalars['Int'] | null),miss_vertical_sum?: (Scalars['float8'] | null),player?: (players_obj_rel_insert_input | null),steam_id?: (Scalars['bigint'] | null),successes?: (Scalars['Int'] | null),utility_lineup?: (utility_lineups_obj_rel_insert_input | null),utility_lineup_id?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface utility_lineup_progress_max_fieldsGenqlSelection{ + attempts?: boolean | number + best_streak?: boolean | number + current_streak?: boolean | number + last_practiced_at?: boolean | number + mastered_at?: boolean | number + miss_along_sum?: boolean | number + miss_lateral_sum?: boolean | number + miss_samples?: boolean | number + miss_vertical_sum?: boolean | number + steam_id?: boolean | number + successes?: boolean | number + utility_lineup_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "utility_lineup_progress" */ +export interface utility_lineup_progress_max_order_by {attempts?: (order_by | null),best_streak?: (order_by | null),current_streak?: (order_by | null),last_practiced_at?: (order_by | null),mastered_at?: (order_by | null),miss_along_sum?: (order_by | null),miss_lateral_sum?: (order_by | null),miss_samples?: (order_by | null),miss_vertical_sum?: (order_by | null),steam_id?: (order_by | null),successes?: (order_by | null),utility_lineup_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface utility_lineup_progress_min_fieldsGenqlSelection{ + attempts?: boolean | number + best_streak?: boolean | number + current_streak?: boolean | number + last_practiced_at?: boolean | number + mastered_at?: boolean | number + miss_along_sum?: boolean | number + miss_lateral_sum?: boolean | number + miss_samples?: boolean | number + miss_vertical_sum?: boolean | number + steam_id?: boolean | number + successes?: boolean | number + utility_lineup_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "utility_lineup_progress" */ +export interface utility_lineup_progress_min_order_by {attempts?: (order_by | null),best_streak?: (order_by | null),current_streak?: (order_by | null),last_practiced_at?: (order_by | null),mastered_at?: (order_by | null),miss_along_sum?: (order_by | null),miss_lateral_sum?: (order_by | null),miss_samples?: (order_by | null),miss_vertical_sum?: (order_by | null),steam_id?: (order_by | null),successes?: (order_by | null),utility_lineup_id?: (order_by | null)} + + +/** response of any mutation on the table "utility_lineup_progress" */ +export interface utility_lineup_progress_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: utility_lineup_progressGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "utility_lineup_progress" */ +export interface utility_lineup_progress_on_conflict {constraint: utility_lineup_progress_constraint,update_columns?: utility_lineup_progress_update_column[],where?: (utility_lineup_progress_bool_exp | null)} + + +/** Ordering options when selecting data from "utility_lineup_progress". */ +export interface utility_lineup_progress_order_by {attempts?: (order_by | null),best_streak?: (order_by | null),current_streak?: (order_by | null),last_practiced_at?: (order_by | null),mastered_at?: (order_by | null),miss_along_sum?: (order_by | null),miss_lateral_sum?: (order_by | null),miss_samples?: (order_by | null),miss_vertical_sum?: (order_by | null),player?: (players_order_by | null),steam_id?: (order_by | null),successes?: (order_by | null),utility_lineup?: (utility_lineups_order_by | null),utility_lineup_id?: (order_by | null)} + + +/** primary key columns input for table: utility_lineup_progress */ +export interface utility_lineup_progress_pk_columns_input {steam_id: Scalars['bigint'],utility_lineup_id: Scalars['uuid']} + + +/** input type for updating data in table "utility_lineup_progress" */ +export interface utility_lineup_progress_set_input {attempts?: (Scalars['Int'] | null),best_streak?: (Scalars['Int'] | null),current_streak?: (Scalars['Int'] | null),last_practiced_at?: (Scalars['timestamptz'] | null),mastered_at?: (Scalars['timestamptz'] | null),miss_along_sum?: (Scalars['float8'] | null),miss_lateral_sum?: (Scalars['float8'] | null),miss_samples?: (Scalars['Int'] | null),miss_vertical_sum?: (Scalars['float8'] | null),steam_id?: (Scalars['bigint'] | null),successes?: (Scalars['Int'] | null),utility_lineup_id?: (Scalars['uuid'] | null)} + + +/** aggregate stddev on columns */ +export interface utility_lineup_progress_stddev_fieldsGenqlSelection{ + attempts?: boolean | number + best_streak?: boolean | number + current_streak?: boolean | number + miss_along_sum?: boolean | number + miss_lateral_sum?: boolean | number + miss_samples?: boolean | number + miss_vertical_sum?: boolean | number + steam_id?: boolean | number + successes?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "utility_lineup_progress" */ +export interface utility_lineup_progress_stddev_order_by {attempts?: (order_by | null),best_streak?: (order_by | null),current_streak?: (order_by | null),miss_along_sum?: (order_by | null),miss_lateral_sum?: (order_by | null),miss_samples?: (order_by | null),miss_vertical_sum?: (order_by | null),steam_id?: (order_by | null),successes?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface utility_lineup_progress_stddev_pop_fieldsGenqlSelection{ + attempts?: boolean | number + best_streak?: boolean | number + current_streak?: boolean | number + miss_along_sum?: boolean | number + miss_lateral_sum?: boolean | number + miss_samples?: boolean | number + miss_vertical_sum?: boolean | number + steam_id?: boolean | number + successes?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "utility_lineup_progress" */ +export interface utility_lineup_progress_stddev_pop_order_by {attempts?: (order_by | null),best_streak?: (order_by | null),current_streak?: (order_by | null),miss_along_sum?: (order_by | null),miss_lateral_sum?: (order_by | null),miss_samples?: (order_by | null),miss_vertical_sum?: (order_by | null),steam_id?: (order_by | null),successes?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface utility_lineup_progress_stddev_samp_fieldsGenqlSelection{ + attempts?: boolean | number + best_streak?: boolean | number + current_streak?: boolean | number + miss_along_sum?: boolean | number + miss_lateral_sum?: boolean | number + miss_samples?: boolean | number + miss_vertical_sum?: boolean | number + steam_id?: boolean | number + successes?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "utility_lineup_progress" */ +export interface utility_lineup_progress_stddev_samp_order_by {attempts?: (order_by | null),best_streak?: (order_by | null),current_streak?: (order_by | null),miss_along_sum?: (order_by | null),miss_lateral_sum?: (order_by | null),miss_samples?: (order_by | null),miss_vertical_sum?: (order_by | null),steam_id?: (order_by | null),successes?: (order_by | null)} + + +/** Streaming cursor of the table "utility_lineup_progress" */ +export interface utility_lineup_progress_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: utility_lineup_progress_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface utility_lineup_progress_stream_cursor_value_input {attempts?: (Scalars['Int'] | null),best_streak?: (Scalars['Int'] | null),current_streak?: (Scalars['Int'] | null),last_practiced_at?: (Scalars['timestamptz'] | null),mastered_at?: (Scalars['timestamptz'] | null),miss_along_sum?: (Scalars['float8'] | null),miss_lateral_sum?: (Scalars['float8'] | null),miss_samples?: (Scalars['Int'] | null),miss_vertical_sum?: (Scalars['float8'] | null),steam_id?: (Scalars['bigint'] | null),successes?: (Scalars['Int'] | null),utility_lineup_id?: (Scalars['uuid'] | null)} + + +/** aggregate sum on columns */ +export interface utility_lineup_progress_sum_fieldsGenqlSelection{ + attempts?: boolean | number + best_streak?: boolean | number + current_streak?: boolean | number + miss_along_sum?: boolean | number + miss_lateral_sum?: boolean | number + miss_samples?: boolean | number + miss_vertical_sum?: boolean | number + steam_id?: boolean | number + successes?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "utility_lineup_progress" */ +export interface utility_lineup_progress_sum_order_by {attempts?: (order_by | null),best_streak?: (order_by | null),current_streak?: (order_by | null),miss_along_sum?: (order_by | null),miss_lateral_sum?: (order_by | null),miss_samples?: (order_by | null),miss_vertical_sum?: (order_by | null),steam_id?: (order_by | null),successes?: (order_by | null)} + +export interface utility_lineup_progress_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (utility_lineup_progress_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (utility_lineup_progress_set_input | null), +/** filter the rows which have to be updated */ +where: utility_lineup_progress_bool_exp} + + +/** aggregate var_pop on columns */ +export interface utility_lineup_progress_var_pop_fieldsGenqlSelection{ + attempts?: boolean | number + best_streak?: boolean | number + current_streak?: boolean | number + miss_along_sum?: boolean | number + miss_lateral_sum?: boolean | number + miss_samples?: boolean | number + miss_vertical_sum?: boolean | number + steam_id?: boolean | number + successes?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "utility_lineup_progress" */ +export interface utility_lineup_progress_var_pop_order_by {attempts?: (order_by | null),best_streak?: (order_by | null),current_streak?: (order_by | null),miss_along_sum?: (order_by | null),miss_lateral_sum?: (order_by | null),miss_samples?: (order_by | null),miss_vertical_sum?: (order_by | null),steam_id?: (order_by | null),successes?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface utility_lineup_progress_var_samp_fieldsGenqlSelection{ + attempts?: boolean | number + best_streak?: boolean | number + current_streak?: boolean | number + miss_along_sum?: boolean | number + miss_lateral_sum?: boolean | number + miss_samples?: boolean | number + miss_vertical_sum?: boolean | number + steam_id?: boolean | number + successes?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "utility_lineup_progress" */ +export interface utility_lineup_progress_var_samp_order_by {attempts?: (order_by | null),best_streak?: (order_by | null),current_streak?: (order_by | null),miss_along_sum?: (order_by | null),miss_lateral_sum?: (order_by | null),miss_samples?: (order_by | null),miss_vertical_sum?: (order_by | null),steam_id?: (order_by | null),successes?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface utility_lineup_progress_variance_fieldsGenqlSelection{ + attempts?: boolean | number + best_streak?: boolean | number + current_streak?: boolean | number + miss_along_sum?: boolean | number + miss_lateral_sum?: boolean | number + miss_samples?: boolean | number + miss_vertical_sum?: boolean | number + steam_id?: boolean | number + successes?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "utility_lineup_progress" */ +export interface utility_lineup_progress_variance_order_by {attempts?: (order_by | null),best_streak?: (order_by | null),current_streak?: (order_by | null),miss_along_sum?: (order_by | null),miss_lateral_sum?: (order_by | null),miss_samples?: (order_by | null),miss_vertical_sum?: (order_by | null),steam_id?: (order_by | null),successes?: (order_by | null)} + + +/** columns and relationships of "utility_lineup_renders" */ +export interface utility_lineup_rendersGenqlSelection{ + created_at?: boolean | number + duration_ms?: 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 */ + lineup?: utility_lineupsGenqlSelection + map_name?: boolean | number + paused?: boolean | number + /** An object relationship */ + practice_session?: utility_practice_sessionsGenqlSelection + progress?: boolean | number + /** An object relationship */ + requested_by?: playersGenqlSelection + requested_by_steam_id?: boolean | number + session_token?: boolean | number + skip_reason?: 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 + utility_lineup_id?: boolean | number + utility_practice_session_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "utility_lineup_renders" */ +export interface utility_lineup_renders_aggregateGenqlSelection{ + aggregate?: utility_lineup_renders_aggregate_fieldsGenqlSelection + nodes?: utility_lineup_rendersGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface utility_lineup_renders_aggregate_bool_exp {bool_and?: (utility_lineup_renders_aggregate_bool_exp_bool_and | null),bool_or?: (utility_lineup_renders_aggregate_bool_exp_bool_or | null),count?: (utility_lineup_renders_aggregate_bool_exp_count | null)} + +export interface utility_lineup_renders_aggregate_bool_exp_bool_and {arguments: utility_lineup_renders_select_column_utility_lineup_renders_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_renders_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface utility_lineup_renders_aggregate_bool_exp_bool_or {arguments: utility_lineup_renders_select_column_utility_lineup_renders_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_renders_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface utility_lineup_renders_aggregate_bool_exp_count {arguments?: (utility_lineup_renders_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_renders_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "utility_lineup_renders" */ +export interface utility_lineup_renders_aggregate_fieldsGenqlSelection{ + avg?: utility_lineup_renders_avg_fieldsGenqlSelection + count?: { __args: {columns?: (utility_lineup_renders_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: utility_lineup_renders_max_fieldsGenqlSelection + min?: utility_lineup_renders_min_fieldsGenqlSelection + stddev?: utility_lineup_renders_stddev_fieldsGenqlSelection + stddev_pop?: utility_lineup_renders_stddev_pop_fieldsGenqlSelection + stddev_samp?: utility_lineup_renders_stddev_samp_fieldsGenqlSelection + sum?: utility_lineup_renders_sum_fieldsGenqlSelection + var_pop?: utility_lineup_renders_var_pop_fieldsGenqlSelection + var_samp?: utility_lineup_renders_var_samp_fieldsGenqlSelection + variance?: utility_lineup_renders_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "utility_lineup_renders" */ +export interface utility_lineup_renders_aggregate_order_by {avg?: (utility_lineup_renders_avg_order_by | null),count?: (order_by | null),max?: (utility_lineup_renders_max_order_by | null),min?: (utility_lineup_renders_min_order_by | null),stddev?: (utility_lineup_renders_stddev_order_by | null),stddev_pop?: (utility_lineup_renders_stddev_pop_order_by | null),stddev_samp?: (utility_lineup_renders_stddev_samp_order_by | null),sum?: (utility_lineup_renders_sum_order_by | null),var_pop?: (utility_lineup_renders_var_pop_order_by | null),var_samp?: (utility_lineup_renders_var_samp_order_by | null),variance?: (utility_lineup_renders_variance_order_by | null)} + + +/** append existing jsonb value of filtered columns with new jsonb value */ +export interface utility_lineup_renders_append_input {spec?: (Scalars['jsonb'] | null),status_history?: (Scalars['jsonb'] | null)} + + +/** input type for inserting array relation for remote table "utility_lineup_renders" */ +export interface utility_lineup_renders_arr_rel_insert_input {data: utility_lineup_renders_insert_input[], +/** upsert condition */ +on_conflict?: (utility_lineup_renders_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface utility_lineup_renders_avg_fieldsGenqlSelection{ + duration_ms?: boolean | number + progress?: boolean | number + requested_by_steam_id?: boolean | number + sort_index?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "utility_lineup_renders" */ +export interface utility_lineup_renders_avg_order_by {duration_ms?: (order_by | null),progress?: (order_by | null),requested_by_steam_id?: (order_by | null),sort_index?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "utility_lineup_renders". All fields are combined with a logical 'AND'. */ +export interface utility_lineup_renders_bool_exp {_and?: (utility_lineup_renders_bool_exp[] | null),_not?: (utility_lineup_renders_bool_exp | null),_or?: (utility_lineup_renders_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),duration_ms?: (Int_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),lineup?: (utility_lineups_bool_exp | null),map_name?: (String_comparison_exp | null),paused?: (Boolean_comparison_exp | null),practice_session?: (utility_practice_sessions_bool_exp | null),progress?: (numeric_comparison_exp | null),requested_by?: (players_bool_exp | null),requested_by_steam_id?: (bigint_comparison_exp | null),session_token?: (String_comparison_exp | null),skip_reason?: (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),utility_lineup_id?: (uuid_comparison_exp | null),utility_practice_session_id?: (uuid_comparison_exp | null)} + + +/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ +export interface utility_lineup_renders_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 utility_lineup_renders_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 utility_lineup_renders_delete_key_input {spec?: (Scalars['String'] | null),status_history?: (Scalars['String'] | null)} + + +/** input type for incrementing numeric columns in table "utility_lineup_renders" */ +export interface utility_lineup_renders_inc_input {duration_ms?: (Scalars['Int'] | null),progress?: (Scalars['numeric'] | null),requested_by_steam_id?: (Scalars['bigint'] | null),sort_index?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "utility_lineup_renders" */ +export interface utility_lineup_renders_insert_input {created_at?: (Scalars['timestamptz'] | null),duration_ms?: (Scalars['Int'] | 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),lineup?: (utility_lineups_obj_rel_insert_input | null),map_name?: (Scalars['String'] | null),paused?: (Scalars['Boolean'] | null),practice_session?: (utility_practice_sessions_obj_rel_insert_input | null),progress?: (Scalars['numeric'] | null),requested_by?: (players_obj_rel_insert_input | null),requested_by_steam_id?: (Scalars['bigint'] | null),session_token?: (Scalars['String'] | null),skip_reason?: (Scalars['String'] | null),sort_index?: (Scalars['Int'] | null),spec?: (Scalars['jsonb'] | null),status?: (Scalars['String'] | null),status_history?: (Scalars['jsonb'] | null),utility_lineup_id?: (Scalars['uuid'] | null),utility_practice_session_id?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface utility_lineup_renders_max_fieldsGenqlSelection{ + created_at?: boolean | number + duration_ms?: 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 + map_name?: boolean | number + progress?: boolean | number + requested_by_steam_id?: boolean | number + session_token?: boolean | number + skip_reason?: boolean | number + sort_index?: boolean | number + status?: boolean | number + utility_lineup_id?: boolean | number + utility_practice_session_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "utility_lineup_renders" */ +export interface utility_lineup_renders_max_order_by {created_at?: (order_by | null),duration_ms?: (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),map_name?: (order_by | null),progress?: (order_by | null),requested_by_steam_id?: (order_by | null),session_token?: (order_by | null),skip_reason?: (order_by | null),sort_index?: (order_by | null),status?: (order_by | null),utility_lineup_id?: (order_by | null),utility_practice_session_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface utility_lineup_renders_min_fieldsGenqlSelection{ + created_at?: boolean | number + duration_ms?: 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 + map_name?: boolean | number + progress?: boolean | number + requested_by_steam_id?: boolean | number + session_token?: boolean | number + skip_reason?: boolean | number + sort_index?: boolean | number + status?: boolean | number + utility_lineup_id?: boolean | number + utility_practice_session_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "utility_lineup_renders" */ +export interface utility_lineup_renders_min_order_by {created_at?: (order_by | null),duration_ms?: (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),map_name?: (order_by | null),progress?: (order_by | null),requested_by_steam_id?: (order_by | null),session_token?: (order_by | null),skip_reason?: (order_by | null),sort_index?: (order_by | null),status?: (order_by | null),utility_lineup_id?: (order_by | null),utility_practice_session_id?: (order_by | null)} + + +/** response of any mutation on the table "utility_lineup_renders" */ +export interface utility_lineup_renders_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: utility_lineup_rendersGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "utility_lineup_renders" */ +export interface utility_lineup_renders_on_conflict {constraint: utility_lineup_renders_constraint,update_columns?: utility_lineup_renders_update_column[],where?: (utility_lineup_renders_bool_exp | null)} + + +/** Ordering options when selecting data from "utility_lineup_renders". */ +export interface utility_lineup_renders_order_by {created_at?: (order_by | null),duration_ms?: (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),lineup?: (utility_lineups_order_by | null),map_name?: (order_by | null),paused?: (order_by | null),practice_session?: (utility_practice_sessions_order_by | null),progress?: (order_by | null),requested_by?: (players_order_by | null),requested_by_steam_id?: (order_by | null),session_token?: (order_by | null),skip_reason?: (order_by | null),sort_index?: (order_by | null),spec?: (order_by | null),status?: (order_by | null),status_history?: (order_by | null),utility_lineup_id?: (order_by | null),utility_practice_session_id?: (order_by | null)} + + +/** primary key columns input for table: utility_lineup_renders */ +export interface utility_lineup_renders_pk_columns_input {id: Scalars['uuid']} + + +/** prepend existing jsonb value of filtered columns with new jsonb value */ +export interface utility_lineup_renders_prepend_input {spec?: (Scalars['jsonb'] | null),status_history?: (Scalars['jsonb'] | null)} + + +/** input type for updating data in table "utility_lineup_renders" */ +export interface utility_lineup_renders_set_input {created_at?: (Scalars['timestamptz'] | null),duration_ms?: (Scalars['Int'] | 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),map_name?: (Scalars['String'] | null),paused?: (Scalars['Boolean'] | null),progress?: (Scalars['numeric'] | null),requested_by_steam_id?: (Scalars['bigint'] | null),session_token?: (Scalars['String'] | null),skip_reason?: (Scalars['String'] | null),sort_index?: (Scalars['Int'] | null),spec?: (Scalars['jsonb'] | null),status?: (Scalars['String'] | null),status_history?: (Scalars['jsonb'] | null),utility_lineup_id?: (Scalars['uuid'] | null),utility_practice_session_id?: (Scalars['uuid'] | null)} + + +/** aggregate stddev on columns */ +export interface utility_lineup_renders_stddev_fieldsGenqlSelection{ + duration_ms?: boolean | number + progress?: boolean | number + requested_by_steam_id?: boolean | number + sort_index?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "utility_lineup_renders" */ +export interface utility_lineup_renders_stddev_order_by {duration_ms?: (order_by | null),progress?: (order_by | null),requested_by_steam_id?: (order_by | null),sort_index?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface utility_lineup_renders_stddev_pop_fieldsGenqlSelection{ + duration_ms?: boolean | number + progress?: boolean | number + requested_by_steam_id?: boolean | number + sort_index?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "utility_lineup_renders" */ +export interface utility_lineup_renders_stddev_pop_order_by {duration_ms?: (order_by | null),progress?: (order_by | null),requested_by_steam_id?: (order_by | null),sort_index?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface utility_lineup_renders_stddev_samp_fieldsGenqlSelection{ + duration_ms?: boolean | number + progress?: boolean | number + requested_by_steam_id?: boolean | number + sort_index?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "utility_lineup_renders" */ +export interface utility_lineup_renders_stddev_samp_order_by {duration_ms?: (order_by | null),progress?: (order_by | null),requested_by_steam_id?: (order_by | null),sort_index?: (order_by | null)} + + +/** Streaming cursor of the table "utility_lineup_renders" */ +export interface utility_lineup_renders_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: utility_lineup_renders_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface utility_lineup_renders_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),duration_ms?: (Scalars['Int'] | 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),map_name?: (Scalars['String'] | null),paused?: (Scalars['Boolean'] | null),progress?: (Scalars['numeric'] | null),requested_by_steam_id?: (Scalars['bigint'] | null),session_token?: (Scalars['String'] | null),skip_reason?: (Scalars['String'] | null),sort_index?: (Scalars['Int'] | null),spec?: (Scalars['jsonb'] | null),status?: (Scalars['String'] | null),status_history?: (Scalars['jsonb'] | null),utility_lineup_id?: (Scalars['uuid'] | null),utility_practice_session_id?: (Scalars['uuid'] | null)} + + +/** aggregate sum on columns */ +export interface utility_lineup_renders_sum_fieldsGenqlSelection{ + duration_ms?: boolean | number + progress?: boolean | number + requested_by_steam_id?: boolean | number + sort_index?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "utility_lineup_renders" */ +export interface utility_lineup_renders_sum_order_by {duration_ms?: (order_by | null),progress?: (order_by | null),requested_by_steam_id?: (order_by | null),sort_index?: (order_by | null)} + +export interface utility_lineup_renders_updates { +/** append existing jsonb value of filtered columns with new jsonb value */ +_append?: (utility_lineup_renders_append_input | null), +/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ +_delete_at_path?: (utility_lineup_renders_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?: (utility_lineup_renders_delete_elem_input | null), +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +_delete_key?: (utility_lineup_renders_delete_key_input | null), +/** increments the numeric columns with given value of the filtered values */ +_inc?: (utility_lineup_renders_inc_input | null), +/** prepend existing jsonb value of filtered columns with new jsonb value */ +_prepend?: (utility_lineup_renders_prepend_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (utility_lineup_renders_set_input | null), +/** filter the rows which have to be updated */ +where: utility_lineup_renders_bool_exp} + + +/** aggregate var_pop on columns */ +export interface utility_lineup_renders_var_pop_fieldsGenqlSelection{ + duration_ms?: boolean | number + progress?: boolean | number + requested_by_steam_id?: boolean | number + sort_index?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "utility_lineup_renders" */ +export interface utility_lineup_renders_var_pop_order_by {duration_ms?: (order_by | null),progress?: (order_by | null),requested_by_steam_id?: (order_by | null),sort_index?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface utility_lineup_renders_var_samp_fieldsGenqlSelection{ + duration_ms?: boolean | number + progress?: boolean | number + requested_by_steam_id?: boolean | number + sort_index?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "utility_lineup_renders" */ +export interface utility_lineup_renders_var_samp_order_by {duration_ms?: (order_by | null),progress?: (order_by | null),requested_by_steam_id?: (order_by | null),sort_index?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface utility_lineup_renders_variance_fieldsGenqlSelection{ + duration_ms?: boolean | number + progress?: boolean | number + requested_by_steam_id?: boolean | number + sort_index?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "utility_lineup_renders" */ +export interface utility_lineup_renders_variance_order_by {duration_ms?: (order_by | null),progress?: (order_by | null),requested_by_steam_id?: (order_by | null),sort_index?: (order_by | null)} + + +/** columns and relationships of "utility_lineup_repairs" */ +export interface utility_lineup_repairsGenqlSelection{ + created_at?: boolean | number + drift_distance?: boolean | number + expires_at?: boolean | number + id?: boolean | number + repaired_at?: boolean | number + /** An object relationship */ + repaired_utility_lineup?: utility_lineupsGenqlSelection + repaired_utility_lineup_id?: boolean | number + /** An object relationship */ + requested_by?: playersGenqlSelection + requested_by_steam_id?: boolean | number + status?: boolean | number + /** An object relationship */ + utility_drift_scan?: utility_drift_scansGenqlSelection + utility_drift_scan_id?: boolean | number + /** An object relationship */ + utility_lineup?: utility_lineupsGenqlSelection + utility_lineup_id?: boolean | number + /** An object relationship */ + utility_practice_session?: utility_practice_sessionsGenqlSelection + utility_practice_session_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "utility_lineup_repairs" */ +export interface utility_lineup_repairs_aggregateGenqlSelection{ + aggregate?: utility_lineup_repairs_aggregate_fieldsGenqlSelection + nodes?: utility_lineup_repairsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface utility_lineup_repairs_aggregate_bool_exp {avg?: (utility_lineup_repairs_aggregate_bool_exp_avg | null),corr?: (utility_lineup_repairs_aggregate_bool_exp_corr | null),count?: (utility_lineup_repairs_aggregate_bool_exp_count | null),covar_samp?: (utility_lineup_repairs_aggregate_bool_exp_covar_samp | null),max?: (utility_lineup_repairs_aggregate_bool_exp_max | null),min?: (utility_lineup_repairs_aggregate_bool_exp_min | null),stddev_samp?: (utility_lineup_repairs_aggregate_bool_exp_stddev_samp | null),sum?: (utility_lineup_repairs_aggregate_bool_exp_sum | null),var_samp?: (utility_lineup_repairs_aggregate_bool_exp_var_samp | null)} + +export interface utility_lineup_repairs_aggregate_bool_exp_avg {arguments: utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_avg_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_repairs_bool_exp | null),predicate: float8_comparison_exp} + +export interface utility_lineup_repairs_aggregate_bool_exp_corr {arguments: utility_lineup_repairs_aggregate_bool_exp_corr_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_repairs_bool_exp | null),predicate: float8_comparison_exp} + +export interface utility_lineup_repairs_aggregate_bool_exp_corr_arguments {X: utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_corr_arguments_columns,Y: utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_corr_arguments_columns} + +export interface utility_lineup_repairs_aggregate_bool_exp_count {arguments?: (utility_lineup_repairs_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_repairs_bool_exp | null),predicate: Int_comparison_exp} + +export interface utility_lineup_repairs_aggregate_bool_exp_covar_samp {arguments: utility_lineup_repairs_aggregate_bool_exp_covar_samp_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_repairs_bool_exp | null),predicate: float8_comparison_exp} + +export interface utility_lineup_repairs_aggregate_bool_exp_covar_samp_arguments {X: utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_covar_samp_arguments_columns,Y: utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_covar_samp_arguments_columns} + +export interface utility_lineup_repairs_aggregate_bool_exp_max {arguments: utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_max_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_repairs_bool_exp | null),predicate: float8_comparison_exp} + +export interface utility_lineup_repairs_aggregate_bool_exp_min {arguments: utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_min_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_repairs_bool_exp | null),predicate: float8_comparison_exp} + +export interface utility_lineup_repairs_aggregate_bool_exp_stddev_samp {arguments: utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_stddev_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_repairs_bool_exp | null),predicate: float8_comparison_exp} + +export interface utility_lineup_repairs_aggregate_bool_exp_sum {arguments: utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_sum_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_repairs_bool_exp | null),predicate: float8_comparison_exp} + +export interface utility_lineup_repairs_aggregate_bool_exp_var_samp {arguments: utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_var_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_repairs_bool_exp | null),predicate: float8_comparison_exp} + + +/** aggregate fields of "utility_lineup_repairs" */ +export interface utility_lineup_repairs_aggregate_fieldsGenqlSelection{ + avg?: utility_lineup_repairs_avg_fieldsGenqlSelection + count?: { __args: {columns?: (utility_lineup_repairs_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: utility_lineup_repairs_max_fieldsGenqlSelection + min?: utility_lineup_repairs_min_fieldsGenqlSelection + stddev?: utility_lineup_repairs_stddev_fieldsGenqlSelection + stddev_pop?: utility_lineup_repairs_stddev_pop_fieldsGenqlSelection + stddev_samp?: utility_lineup_repairs_stddev_samp_fieldsGenqlSelection + sum?: utility_lineup_repairs_sum_fieldsGenqlSelection + var_pop?: utility_lineup_repairs_var_pop_fieldsGenqlSelection + var_samp?: utility_lineup_repairs_var_samp_fieldsGenqlSelection + variance?: utility_lineup_repairs_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "utility_lineup_repairs" */ +export interface utility_lineup_repairs_aggregate_order_by {avg?: (utility_lineup_repairs_avg_order_by | null),count?: (order_by | null),max?: (utility_lineup_repairs_max_order_by | null),min?: (utility_lineup_repairs_min_order_by | null),stddev?: (utility_lineup_repairs_stddev_order_by | null),stddev_pop?: (utility_lineup_repairs_stddev_pop_order_by | null),stddev_samp?: (utility_lineup_repairs_stddev_samp_order_by | null),sum?: (utility_lineup_repairs_sum_order_by | null),var_pop?: (utility_lineup_repairs_var_pop_order_by | null),var_samp?: (utility_lineup_repairs_var_samp_order_by | null),variance?: (utility_lineup_repairs_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "utility_lineup_repairs" */ +export interface utility_lineup_repairs_arr_rel_insert_input {data: utility_lineup_repairs_insert_input[], +/** upsert condition */ +on_conflict?: (utility_lineup_repairs_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface utility_lineup_repairs_avg_fieldsGenqlSelection{ + drift_distance?: boolean | number + requested_by_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "utility_lineup_repairs" */ +export interface utility_lineup_repairs_avg_order_by {drift_distance?: (order_by | null),requested_by_steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "utility_lineup_repairs". All fields are combined with a logical 'AND'. */ +export interface utility_lineup_repairs_bool_exp {_and?: (utility_lineup_repairs_bool_exp[] | null),_not?: (utility_lineup_repairs_bool_exp | null),_or?: (utility_lineup_repairs_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),drift_distance?: (float8_comparison_exp | null),expires_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),repaired_at?: (timestamptz_comparison_exp | null),repaired_utility_lineup?: (utility_lineups_bool_exp | null),repaired_utility_lineup_id?: (uuid_comparison_exp | null),requested_by?: (players_bool_exp | null),requested_by_steam_id?: (bigint_comparison_exp | null),status?: (String_comparison_exp | null),utility_drift_scan?: (utility_drift_scans_bool_exp | null),utility_drift_scan_id?: (uuid_comparison_exp | null),utility_lineup?: (utility_lineups_bool_exp | null),utility_lineup_id?: (uuid_comparison_exp | null),utility_practice_session?: (utility_practice_sessions_bool_exp | null),utility_practice_session_id?: (uuid_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "utility_lineup_repairs" */ +export interface utility_lineup_repairs_inc_input {drift_distance?: (Scalars['float8'] | null),requested_by_steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "utility_lineup_repairs" */ +export interface utility_lineup_repairs_insert_input {created_at?: (Scalars['timestamptz'] | null),drift_distance?: (Scalars['float8'] | null),expires_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),repaired_at?: (Scalars['timestamptz'] | null),repaired_utility_lineup?: (utility_lineups_obj_rel_insert_input | null),repaired_utility_lineup_id?: (Scalars['uuid'] | null),requested_by?: (players_obj_rel_insert_input | null),requested_by_steam_id?: (Scalars['bigint'] | null),status?: (Scalars['String'] | null),utility_drift_scan?: (utility_drift_scans_obj_rel_insert_input | null),utility_drift_scan_id?: (Scalars['uuid'] | null),utility_lineup?: (utility_lineups_obj_rel_insert_input | null),utility_lineup_id?: (Scalars['uuid'] | null),utility_practice_session?: (utility_practice_sessions_obj_rel_insert_input | null),utility_practice_session_id?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface utility_lineup_repairs_max_fieldsGenqlSelection{ + created_at?: boolean | number + drift_distance?: boolean | number + expires_at?: boolean | number + id?: boolean | number + repaired_at?: boolean | number + repaired_utility_lineup_id?: boolean | number + requested_by_steam_id?: boolean | number + status?: boolean | number + utility_drift_scan_id?: boolean | number + utility_lineup_id?: boolean | number + utility_practice_session_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "utility_lineup_repairs" */ +export interface utility_lineup_repairs_max_order_by {created_at?: (order_by | null),drift_distance?: (order_by | null),expires_at?: (order_by | null),id?: (order_by | null),repaired_at?: (order_by | null),repaired_utility_lineup_id?: (order_by | null),requested_by_steam_id?: (order_by | null),status?: (order_by | null),utility_drift_scan_id?: (order_by | null),utility_lineup_id?: (order_by | null),utility_practice_session_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface utility_lineup_repairs_min_fieldsGenqlSelection{ + created_at?: boolean | number + drift_distance?: boolean | number + expires_at?: boolean | number + id?: boolean | number + repaired_at?: boolean | number + repaired_utility_lineup_id?: boolean | number + requested_by_steam_id?: boolean | number + status?: boolean | number + utility_drift_scan_id?: boolean | number + utility_lineup_id?: boolean | number + utility_practice_session_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "utility_lineup_repairs" */ +export interface utility_lineup_repairs_min_order_by {created_at?: (order_by | null),drift_distance?: (order_by | null),expires_at?: (order_by | null),id?: (order_by | null),repaired_at?: (order_by | null),repaired_utility_lineup_id?: (order_by | null),requested_by_steam_id?: (order_by | null),status?: (order_by | null),utility_drift_scan_id?: (order_by | null),utility_lineup_id?: (order_by | null),utility_practice_session_id?: (order_by | null)} + + +/** response of any mutation on the table "utility_lineup_repairs" */ +export interface utility_lineup_repairs_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: utility_lineup_repairsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "utility_lineup_repairs" */ +export interface utility_lineup_repairs_on_conflict {constraint: utility_lineup_repairs_constraint,update_columns?: utility_lineup_repairs_update_column[],where?: (utility_lineup_repairs_bool_exp | null)} + + +/** Ordering options when selecting data from "utility_lineup_repairs". */ +export interface utility_lineup_repairs_order_by {created_at?: (order_by | null),drift_distance?: (order_by | null),expires_at?: (order_by | null),id?: (order_by | null),repaired_at?: (order_by | null),repaired_utility_lineup?: (utility_lineups_order_by | null),repaired_utility_lineup_id?: (order_by | null),requested_by?: (players_order_by | null),requested_by_steam_id?: (order_by | null),status?: (order_by | null),utility_drift_scan?: (utility_drift_scans_order_by | null),utility_drift_scan_id?: (order_by | null),utility_lineup?: (utility_lineups_order_by | null),utility_lineup_id?: (order_by | null),utility_practice_session?: (utility_practice_sessions_order_by | null),utility_practice_session_id?: (order_by | null)} + + +/** primary key columns input for table: utility_lineup_repairs */ +export interface utility_lineup_repairs_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "utility_lineup_repairs" */ +export interface utility_lineup_repairs_set_input {created_at?: (Scalars['timestamptz'] | null),drift_distance?: (Scalars['float8'] | null),expires_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),repaired_at?: (Scalars['timestamptz'] | null),repaired_utility_lineup_id?: (Scalars['uuid'] | null),requested_by_steam_id?: (Scalars['bigint'] | null),status?: (Scalars['String'] | null),utility_drift_scan_id?: (Scalars['uuid'] | null),utility_lineup_id?: (Scalars['uuid'] | null),utility_practice_session_id?: (Scalars['uuid'] | null)} + + +/** aggregate stddev on columns */ +export interface utility_lineup_repairs_stddev_fieldsGenqlSelection{ + drift_distance?: boolean | number + requested_by_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "utility_lineup_repairs" */ +export interface utility_lineup_repairs_stddev_order_by {drift_distance?: (order_by | null),requested_by_steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface utility_lineup_repairs_stddev_pop_fieldsGenqlSelection{ + drift_distance?: boolean | number + requested_by_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "utility_lineup_repairs" */ +export interface utility_lineup_repairs_stddev_pop_order_by {drift_distance?: (order_by | null),requested_by_steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface utility_lineup_repairs_stddev_samp_fieldsGenqlSelection{ + drift_distance?: boolean | number + requested_by_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "utility_lineup_repairs" */ +export interface utility_lineup_repairs_stddev_samp_order_by {drift_distance?: (order_by | null),requested_by_steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "utility_lineup_repairs" */ +export interface utility_lineup_repairs_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: utility_lineup_repairs_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface utility_lineup_repairs_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),drift_distance?: (Scalars['float8'] | null),expires_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),repaired_at?: (Scalars['timestamptz'] | null),repaired_utility_lineup_id?: (Scalars['uuid'] | null),requested_by_steam_id?: (Scalars['bigint'] | null),status?: (Scalars['String'] | null),utility_drift_scan_id?: (Scalars['uuid'] | null),utility_lineup_id?: (Scalars['uuid'] | null),utility_practice_session_id?: (Scalars['uuid'] | null)} + + +/** aggregate sum on columns */ +export interface utility_lineup_repairs_sum_fieldsGenqlSelection{ + drift_distance?: boolean | number + requested_by_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "utility_lineup_repairs" */ +export interface utility_lineup_repairs_sum_order_by {drift_distance?: (order_by | null),requested_by_steam_id?: (order_by | null)} + +export interface utility_lineup_repairs_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (utility_lineup_repairs_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (utility_lineup_repairs_set_input | null), +/** filter the rows which have to be updated */ +where: utility_lineup_repairs_bool_exp} + + +/** aggregate var_pop on columns */ +export interface utility_lineup_repairs_var_pop_fieldsGenqlSelection{ + drift_distance?: boolean | number + requested_by_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "utility_lineup_repairs" */ +export interface utility_lineup_repairs_var_pop_order_by {drift_distance?: (order_by | null),requested_by_steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface utility_lineup_repairs_var_samp_fieldsGenqlSelection{ + drift_distance?: boolean | number + requested_by_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "utility_lineup_repairs" */ +export interface utility_lineup_repairs_var_samp_order_by {drift_distance?: (order_by | null),requested_by_steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface utility_lineup_repairs_variance_fieldsGenqlSelection{ + drift_distance?: boolean | number + requested_by_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "utility_lineup_repairs" */ +export interface utility_lineup_repairs_variance_order_by {drift_distance?: (order_by | null),requested_by_steam_id?: (order_by | null)} + + +/** columns and relationships of "utility_lineup_votes" */ +export interface utility_lineup_votesGenqlSelection{ + created_at?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + steam_id?: boolean | number + /** An object relationship */ + utility_lineup?: utility_lineupsGenqlSelection + utility_lineup_id?: boolean | number + vote?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "utility_lineup_votes" */ +export interface utility_lineup_votes_aggregateGenqlSelection{ + aggregate?: utility_lineup_votes_aggregate_fieldsGenqlSelection + nodes?: utility_lineup_votesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface utility_lineup_votes_aggregate_bool_exp {count?: (utility_lineup_votes_aggregate_bool_exp_count | null)} + +export interface utility_lineup_votes_aggregate_bool_exp_count {arguments?: (utility_lineup_votes_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineup_votes_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "utility_lineup_votes" */ +export interface utility_lineup_votes_aggregate_fieldsGenqlSelection{ + avg?: utility_lineup_votes_avg_fieldsGenqlSelection + count?: { __args: {columns?: (utility_lineup_votes_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: utility_lineup_votes_max_fieldsGenqlSelection + min?: utility_lineup_votes_min_fieldsGenqlSelection + stddev?: utility_lineup_votes_stddev_fieldsGenqlSelection + stddev_pop?: utility_lineup_votes_stddev_pop_fieldsGenqlSelection + stddev_samp?: utility_lineup_votes_stddev_samp_fieldsGenqlSelection + sum?: utility_lineup_votes_sum_fieldsGenqlSelection + var_pop?: utility_lineup_votes_var_pop_fieldsGenqlSelection + var_samp?: utility_lineup_votes_var_samp_fieldsGenqlSelection + variance?: utility_lineup_votes_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "utility_lineup_votes" */ +export interface utility_lineup_votes_aggregate_order_by {avg?: (utility_lineup_votes_avg_order_by | null),count?: (order_by | null),max?: (utility_lineup_votes_max_order_by | null),min?: (utility_lineup_votes_min_order_by | null),stddev?: (utility_lineup_votes_stddev_order_by | null),stddev_pop?: (utility_lineup_votes_stddev_pop_order_by | null),stddev_samp?: (utility_lineup_votes_stddev_samp_order_by | null),sum?: (utility_lineup_votes_sum_order_by | null),var_pop?: (utility_lineup_votes_var_pop_order_by | null),var_samp?: (utility_lineup_votes_var_samp_order_by | null),variance?: (utility_lineup_votes_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "utility_lineup_votes" */ +export interface utility_lineup_votes_arr_rel_insert_input {data: utility_lineup_votes_insert_input[], +/** upsert condition */ +on_conflict?: (utility_lineup_votes_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface utility_lineup_votes_avg_fieldsGenqlSelection{ + steam_id?: boolean | number + vote?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "utility_lineup_votes" */ +export interface utility_lineup_votes_avg_order_by {steam_id?: (order_by | null),vote?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "utility_lineup_votes". All fields are combined with a logical 'AND'. */ +export interface utility_lineup_votes_bool_exp {_and?: (utility_lineup_votes_bool_exp[] | null),_not?: (utility_lineup_votes_bool_exp | null),_or?: (utility_lineup_votes_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),player?: (players_bool_exp | null),steam_id?: (bigint_comparison_exp | null),utility_lineup?: (utility_lineups_bool_exp | null),utility_lineup_id?: (uuid_comparison_exp | null),vote?: (smallint_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "utility_lineup_votes" */ +export interface utility_lineup_votes_inc_input {steam_id?: (Scalars['bigint'] | null),vote?: (Scalars['smallint'] | null)} + + +/** input type for inserting data into table "utility_lineup_votes" */ +export interface utility_lineup_votes_insert_input {created_at?: (Scalars['timestamptz'] | null),player?: (players_obj_rel_insert_input | null),steam_id?: (Scalars['bigint'] | null),utility_lineup?: (utility_lineups_obj_rel_insert_input | null),utility_lineup_id?: (Scalars['uuid'] | null),vote?: (Scalars['smallint'] | null)} + + +/** aggregate max on columns */ +export interface utility_lineup_votes_max_fieldsGenqlSelection{ + created_at?: boolean | number + steam_id?: boolean | number + utility_lineup_id?: boolean | number + vote?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "utility_lineup_votes" */ +export interface utility_lineup_votes_max_order_by {created_at?: (order_by | null),steam_id?: (order_by | null),utility_lineup_id?: (order_by | null),vote?: (order_by | null)} + + +/** aggregate min on columns */ +export interface utility_lineup_votes_min_fieldsGenqlSelection{ + created_at?: boolean | number + steam_id?: boolean | number + utility_lineup_id?: boolean | number + vote?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "utility_lineup_votes" */ +export interface utility_lineup_votes_min_order_by {created_at?: (order_by | null),steam_id?: (order_by | null),utility_lineup_id?: (order_by | null),vote?: (order_by | null)} + + +/** response of any mutation on the table "utility_lineup_votes" */ +export interface utility_lineup_votes_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: utility_lineup_votesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "utility_lineup_votes" */ +export interface utility_lineup_votes_on_conflict {constraint: utility_lineup_votes_constraint,update_columns?: utility_lineup_votes_update_column[],where?: (utility_lineup_votes_bool_exp | null)} + + +/** Ordering options when selecting data from "utility_lineup_votes". */ +export interface utility_lineup_votes_order_by {created_at?: (order_by | null),player?: (players_order_by | null),steam_id?: (order_by | null),utility_lineup?: (utility_lineups_order_by | null),utility_lineup_id?: (order_by | null),vote?: (order_by | null)} + + +/** primary key columns input for table: utility_lineup_votes */ +export interface utility_lineup_votes_pk_columns_input {steam_id: Scalars['bigint'],utility_lineup_id: Scalars['uuid']} + + +/** input type for updating data in table "utility_lineup_votes" */ +export interface utility_lineup_votes_set_input {created_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),utility_lineup_id?: (Scalars['uuid'] | null),vote?: (Scalars['smallint'] | null)} + + +/** aggregate stddev on columns */ +export interface utility_lineup_votes_stddev_fieldsGenqlSelection{ + steam_id?: boolean | number + vote?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "utility_lineup_votes" */ +export interface utility_lineup_votes_stddev_order_by {steam_id?: (order_by | null),vote?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface utility_lineup_votes_stddev_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + vote?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "utility_lineup_votes" */ +export interface utility_lineup_votes_stddev_pop_order_by {steam_id?: (order_by | null),vote?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface utility_lineup_votes_stddev_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + vote?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "utility_lineup_votes" */ +export interface utility_lineup_votes_stddev_samp_order_by {steam_id?: (order_by | null),vote?: (order_by | null)} + + +/** Streaming cursor of the table "utility_lineup_votes" */ +export interface utility_lineup_votes_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: utility_lineup_votes_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface utility_lineup_votes_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),utility_lineup_id?: (Scalars['uuid'] | null),vote?: (Scalars['smallint'] | null)} + + +/** aggregate sum on columns */ +export interface utility_lineup_votes_sum_fieldsGenqlSelection{ + steam_id?: boolean | number + vote?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "utility_lineup_votes" */ +export interface utility_lineup_votes_sum_order_by {steam_id?: (order_by | null),vote?: (order_by | null)} + +export interface utility_lineup_votes_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (utility_lineup_votes_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (utility_lineup_votes_set_input | null), +/** filter the rows which have to be updated */ +where: utility_lineup_votes_bool_exp} + + +/** aggregate var_pop on columns */ +export interface utility_lineup_votes_var_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + vote?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "utility_lineup_votes" */ +export interface utility_lineup_votes_var_pop_order_by {steam_id?: (order_by | null),vote?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface utility_lineup_votes_var_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + vote?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "utility_lineup_votes" */ +export interface utility_lineup_votes_var_samp_order_by {steam_id?: (order_by | null),vote?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface utility_lineup_votes_variance_fieldsGenqlSelection{ + steam_id?: boolean | number + vote?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "utility_lineup_votes" */ +export interface utility_lineup_votes_variance_order_by {steam_id?: (order_by | null),vote?: (order_by | null)} + + +/** columns and relationships of "utility_lineups" */ +export interface utility_lineupsGenqlSelection{ + aim_tolerance?: boolean | number + archived_at?: boolean | number + /** An object relationship */ + author?: playersGenqlSelection + author_steam_id?: boolean | number + /** A computed field, executes function "can_edit_utility_lineup" */ + can_edit?: boolean | number + /** A computed field, executes function "can_view_utility_lineup" */ + can_view?: boolean | number + /** An array relationship */ + collection_items?: (utility_collection_itemsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_collection_items_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_collection_items_order_by[] | null), + /** filter the rows returned */ + where?: (utility_collection_items_bool_exp | null)} }) + /** An aggregate relationship */ + collection_items_aggregate?: (utility_collection_items_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_collection_items_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_collection_items_order_by[] | null), + /** filter the rows returned */ + where?: (utility_collection_items_bool_exp | null)} }) + confidence?: boolean | number + created_at?: boolean | number + description?: boolean | number + /** A computed field, executes function "utility_lineup_difficulty" */ + difficulty?: boolean | number + downvotes?: boolean | number + external_id?: boolean | number + eye_z?: boolean | number + /** An array relationship */ + favorited_by?: (utility_lineup_favoritesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_lineup_favorites_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_lineup_favorites_order_by[] | null), + /** filter the rows returned */ + where?: (utility_lineup_favorites_bool_exp | null)} }) + /** An aggregate relationship */ + favorited_by_aggregate?: (utility_lineup_favorites_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_lineup_favorites_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_lineup_favorites_order_by[] | null), + /** filter the rows returned */ + where?: (utility_lineup_favorites_bool_exp | null)} }) + favorites?: boolean | number + flight_time_ms?: boolean | number + /** An object relationship */ + forked_from?: utility_lineupsGenqlSelection + forked_from_utility_lineup_id?: boolean | number + id?: boolean | number + initial_pos_x?: boolean | number + initial_pos_y?: boolean | number + initial_pos_z?: boolean | number + initial_vel_x?: boolean | number + initial_vel_y?: boolean | number + initial_vel_z?: boolean | number + /** A computed field, executes function "utility_lineup_is_favorited" */ + is_favorited?: boolean | number + jump_throw_bind?: boolean | number + land_x?: boolean | number + land_y?: boolean | number + land_z?: boolean | number + lineup_bucket?: boolean | number + map_name?: boolean | number + /** A computed field, executes function "utility_lineup_my_vote" */ + my_vote?: boolean | number + name?: boolean | number + origin_source?: boolean | number + origin_x?: boolean | number + origin_y?: boolean | number + origin_z?: boolean | number + practice_attempts?: boolean | number + practice_players?: boolean | number + practice_successes?: boolean | number + preview_duration_ms?: boolean | number + preview_file?: boolean | number + preview_rendered_at?: boolean | number + preview_thumbnail?: boolean | number + /** A computed field, executes function "utility_lineup_preview_thumbnail_url" */ + preview_thumbnail_url?: boolean | number + /** A computed field, executes function "utility_lineup_preview_url" */ + preview_url?: boolean | number + /** An array relationship */ + progress?: (utility_lineup_progressGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_lineup_progress_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_lineup_progress_order_by[] | null), + /** filter the rows returned */ + where?: (utility_lineup_progress_bool_exp | null)} }) + /** An aggregate relationship */ + progress_aggregate?: (utility_lineup_progress_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_lineup_progress_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_lineup_progress_order_by[] | null), + /** filter the rows returned */ + where?: (utility_lineup_progress_bool_exp | null)} }) + public_requested_at?: boolean | number + public_review_note?: boolean | number + public_reviewed_at?: boolean | number + public_reviewed_by?: boolean | number + /** An array relationship */ + renders?: (utility_lineup_rendersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_lineup_renders_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_lineup_renders_order_by[] | null), + /** filter the rows returned */ + where?: (utility_lineup_renders_bool_exp | null)} }) + /** An aggregate relationship */ + renders_aggregate?: (utility_lineup_renders_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_lineup_renders_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_lineup_renders_order_by[] | null), + /** filter the rows returned */ + where?: (utility_lineup_renders_bool_exp | null)} }) + /** An array relationship */ + repairs?: (utility_lineup_repairsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_lineup_repairs_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_lineup_repairs_order_by[] | null), + /** filter the rows returned */ + where?: (utility_lineup_repairs_bool_exp | null)} }) + /** An aggregate relationship */ + repairs_aggregate?: (utility_lineup_repairs_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_lineup_repairs_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_lineup_repairs_order_by[] | null), + /** filter the rows returned */ + where?: (utility_lineup_repairs_bool_exp | null)} }) + side?: boolean | number + source_grenade_id?: boolean | number + /** An object relationship */ + source_match?: matchesGenqlSelection + source_match_id?: boolean | number + /** An object relationship */ + source_match_map?: match_mapsGenqlSelection + source_match_map_id?: boolean | number + source_url?: boolean | number + tags?: boolean | number + /** An object relationship */ + team?: teamsGenqlSelection + team_id?: boolean | number + technique?: boolean | number + throw_strength?: boolean | number + trajectory_file?: boolean | number + trajectory_preview?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number + trajectory_size?: boolean | number + updated_at?: boolean | number + upvotes?: boolean | number + utility_type?: boolean | number + verified_at?: boolean | number + view_pitch?: boolean | number + view_pitch_delta?: boolean | number + view_yaw?: boolean | number + view_yaw_delta?: boolean | number + visibility?: boolean | number + /** An array relationship */ + votes?: (utility_lineup_votesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_lineup_votes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_lineup_votes_order_by[] | null), + /** filter the rows returned */ + where?: (utility_lineup_votes_bool_exp | null)} }) + /** An aggregate relationship */ + votes_aggregate?: (utility_lineup_votes_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_lineup_votes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_lineup_votes_order_by[] | null), + /** filter the rows returned */ + where?: (utility_lineup_votes_bool_exp | null)} }) + workshop_map_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "utility_lineups" */ +export interface utility_lineups_aggregateGenqlSelection{ + aggregate?: utility_lineups_aggregate_fieldsGenqlSelection + nodes?: utility_lineupsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface utility_lineups_aggregate_bool_exp {avg?: (utility_lineups_aggregate_bool_exp_avg | null),bool_and?: (utility_lineups_aggregate_bool_exp_bool_and | null),bool_or?: (utility_lineups_aggregate_bool_exp_bool_or | null),corr?: (utility_lineups_aggregate_bool_exp_corr | null),count?: (utility_lineups_aggregate_bool_exp_count | null),covar_samp?: (utility_lineups_aggregate_bool_exp_covar_samp | null),max?: (utility_lineups_aggregate_bool_exp_max | null),min?: (utility_lineups_aggregate_bool_exp_min | null),stddev_samp?: (utility_lineups_aggregate_bool_exp_stddev_samp | null),sum?: (utility_lineups_aggregate_bool_exp_sum | null),var_samp?: (utility_lineups_aggregate_bool_exp_var_samp | null)} + +export interface utility_lineups_aggregate_bool_exp_avg {arguments: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_avg_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineups_bool_exp | null),predicate: float8_comparison_exp} + +export interface utility_lineups_aggregate_bool_exp_bool_and {arguments: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineups_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface utility_lineups_aggregate_bool_exp_bool_or {arguments: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineups_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface utility_lineups_aggregate_bool_exp_corr {arguments: utility_lineups_aggregate_bool_exp_corr_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineups_bool_exp | null),predicate: float8_comparison_exp} + +export interface utility_lineups_aggregate_bool_exp_corr_arguments {X: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_corr_arguments_columns,Y: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_corr_arguments_columns} + +export interface utility_lineups_aggregate_bool_exp_count {arguments?: (utility_lineups_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineups_bool_exp | null),predicate: Int_comparison_exp} + +export interface utility_lineups_aggregate_bool_exp_covar_samp {arguments: utility_lineups_aggregate_bool_exp_covar_samp_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineups_bool_exp | null),predicate: float8_comparison_exp} + +export interface utility_lineups_aggregate_bool_exp_covar_samp_arguments {X: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_covar_samp_arguments_columns,Y: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_covar_samp_arguments_columns} + +export interface utility_lineups_aggregate_bool_exp_max {arguments: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_max_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineups_bool_exp | null),predicate: float8_comparison_exp} + +export interface utility_lineups_aggregate_bool_exp_min {arguments: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_min_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineups_bool_exp | null),predicate: float8_comparison_exp} + +export interface utility_lineups_aggregate_bool_exp_stddev_samp {arguments: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_stddev_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineups_bool_exp | null),predicate: float8_comparison_exp} + +export interface utility_lineups_aggregate_bool_exp_sum {arguments: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_sum_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineups_bool_exp | null),predicate: float8_comparison_exp} + +export interface utility_lineups_aggregate_bool_exp_var_samp {arguments: utility_lineups_select_column_utility_lineups_aggregate_bool_exp_var_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_lineups_bool_exp | null),predicate: float8_comparison_exp} + + +/** aggregate fields of "utility_lineups" */ +export interface utility_lineups_aggregate_fieldsGenqlSelection{ + avg?: utility_lineups_avg_fieldsGenqlSelection + count?: { __args: {columns?: (utility_lineups_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: utility_lineups_max_fieldsGenqlSelection + min?: utility_lineups_min_fieldsGenqlSelection + stddev?: utility_lineups_stddev_fieldsGenqlSelection + stddev_pop?: utility_lineups_stddev_pop_fieldsGenqlSelection + stddev_samp?: utility_lineups_stddev_samp_fieldsGenqlSelection + sum?: utility_lineups_sum_fieldsGenqlSelection + var_pop?: utility_lineups_var_pop_fieldsGenqlSelection + var_samp?: utility_lineups_var_samp_fieldsGenqlSelection + variance?: utility_lineups_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "utility_lineups" */ +export interface utility_lineups_aggregate_order_by {avg?: (utility_lineups_avg_order_by | null),count?: (order_by | null),max?: (utility_lineups_max_order_by | null),min?: (utility_lineups_min_order_by | null),stddev?: (utility_lineups_stddev_order_by | null),stddev_pop?: (utility_lineups_stddev_pop_order_by | null),stddev_samp?: (utility_lineups_stddev_samp_order_by | null),sum?: (utility_lineups_sum_order_by | null),var_pop?: (utility_lineups_var_pop_order_by | null),var_samp?: (utility_lineups_var_samp_order_by | null),variance?: (utility_lineups_variance_order_by | null)} + + +/** append existing jsonb value of filtered columns with new jsonb value */ +export interface utility_lineups_append_input {trajectory_preview?: (Scalars['jsonb'] | null)} + + +/** input type for inserting array relation for remote table "utility_lineups" */ +export interface utility_lineups_arr_rel_insert_input {data: utility_lineups_insert_input[], +/** upsert condition */ +on_conflict?: (utility_lineups_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface utility_lineups_avg_fieldsGenqlSelection{ + aim_tolerance?: boolean | number + author_steam_id?: boolean | number + downvotes?: boolean | number + eye_z?: boolean | number + favorites?: boolean | number + flight_time_ms?: boolean | number + initial_pos_x?: boolean | number + initial_pos_y?: boolean | number + initial_pos_z?: boolean | number + initial_vel_x?: boolean | number + initial_vel_y?: boolean | number + initial_vel_z?: boolean | number + land_x?: boolean | number + land_y?: boolean | number + land_z?: boolean | number + /** A computed field, executes function "utility_lineup_my_vote" */ + my_vote?: boolean | number + origin_x?: boolean | number + origin_y?: boolean | number + origin_z?: boolean | number + practice_attempts?: boolean | number + practice_players?: boolean | number + practice_successes?: boolean | number + preview_duration_ms?: boolean | number + public_reviewed_by?: boolean | number + source_grenade_id?: boolean | number + trajectory_size?: boolean | number + upvotes?: boolean | number + view_pitch?: boolean | number + view_pitch_delta?: boolean | number + view_yaw?: boolean | number + view_yaw_delta?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "utility_lineups" */ +export interface utility_lineups_avg_order_by {aim_tolerance?: (order_by | null),author_steam_id?: (order_by | null),downvotes?: (order_by | null),eye_z?: (order_by | null),favorites?: (order_by | null),flight_time_ms?: (order_by | null),initial_pos_x?: (order_by | null),initial_pos_y?: (order_by | null),initial_pos_z?: (order_by | null),initial_vel_x?: (order_by | null),initial_vel_y?: (order_by | null),initial_vel_z?: (order_by | null),land_x?: (order_by | null),land_y?: (order_by | null),land_z?: (order_by | null),origin_x?: (order_by | null),origin_y?: (order_by | null),origin_z?: (order_by | null),practice_attempts?: (order_by | null),practice_players?: (order_by | null),practice_successes?: (order_by | null),preview_duration_ms?: (order_by | null),public_reviewed_by?: (order_by | null),source_grenade_id?: (order_by | null),trajectory_size?: (order_by | null),upvotes?: (order_by | null),view_pitch?: (order_by | null),view_pitch_delta?: (order_by | null),view_yaw?: (order_by | null),view_yaw_delta?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "utility_lineups". All fields are combined with a logical 'AND'. */ +export interface utility_lineups_bool_exp {_and?: (utility_lineups_bool_exp[] | null),_not?: (utility_lineups_bool_exp | null),_or?: (utility_lineups_bool_exp[] | null),aim_tolerance?: (float8_comparison_exp | null),archived_at?: (timestamptz_comparison_exp | null),author?: (players_bool_exp | null),author_steam_id?: (bigint_comparison_exp | null),can_edit?: (Boolean_comparison_exp | null),can_view?: (Boolean_comparison_exp | null),collection_items?: (utility_collection_items_bool_exp | null),collection_items_aggregate?: (utility_collection_items_aggregate_bool_exp | null),confidence?: (String_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),description?: (String_comparison_exp | null),difficulty?: (String_comparison_exp | null),downvotes?: (Int_comparison_exp | null),external_id?: (String_comparison_exp | null),eye_z?: (float8_comparison_exp | null),favorited_by?: (utility_lineup_favorites_bool_exp | null),favorited_by_aggregate?: (utility_lineup_favorites_aggregate_bool_exp | null),favorites?: (Int_comparison_exp | null),flight_time_ms?: (Int_comparison_exp | null),forked_from?: (utility_lineups_bool_exp | null),forked_from_utility_lineup_id?: (uuid_comparison_exp | null),id?: (uuid_comparison_exp | null),initial_pos_x?: (float8_comparison_exp | null),initial_pos_y?: (float8_comparison_exp | null),initial_pos_z?: (float8_comparison_exp | null),initial_vel_x?: (float8_comparison_exp | null),initial_vel_y?: (float8_comparison_exp | null),initial_vel_z?: (float8_comparison_exp | null),is_favorited?: (Boolean_comparison_exp | null),jump_throw_bind?: (Boolean_comparison_exp | null),land_x?: (float8_comparison_exp | null),land_y?: (float8_comparison_exp | null),land_z?: (float8_comparison_exp | null),lineup_bucket?: (String_comparison_exp | null),map_name?: (String_comparison_exp | null),my_vote?: (smallint_comparison_exp | null),name?: (String_comparison_exp | null),origin_source?: (e_utility_sources_enum_comparison_exp | null),origin_x?: (float8_comparison_exp | null),origin_y?: (float8_comparison_exp | null),origin_z?: (float8_comparison_exp | null),practice_attempts?: (Int_comparison_exp | null),practice_players?: (Int_comparison_exp | null),practice_successes?: (Int_comparison_exp | null),preview_duration_ms?: (Int_comparison_exp | null),preview_file?: (String_comparison_exp | null),preview_rendered_at?: (timestamptz_comparison_exp | null),preview_thumbnail?: (String_comparison_exp | null),preview_thumbnail_url?: (String_comparison_exp | null),preview_url?: (String_comparison_exp | null),progress?: (utility_lineup_progress_bool_exp | null),progress_aggregate?: (utility_lineup_progress_aggregate_bool_exp | null),public_requested_at?: (timestamptz_comparison_exp | null),public_review_note?: (String_comparison_exp | null),public_reviewed_at?: (timestamptz_comparison_exp | null),public_reviewed_by?: (bigint_comparison_exp | null),renders?: (utility_lineup_renders_bool_exp | null),renders_aggregate?: (utility_lineup_renders_aggregate_bool_exp | null),repairs?: (utility_lineup_repairs_bool_exp | null),repairs_aggregate?: (utility_lineup_repairs_aggregate_bool_exp | null),side?: (e_sides_enum_comparison_exp | null),source_grenade_id?: (Int_comparison_exp | null),source_match?: (matches_bool_exp | null),source_match_id?: (uuid_comparison_exp | null),source_match_map?: (match_maps_bool_exp | null),source_match_map_id?: (uuid_comparison_exp | null),source_url?: (String_comparison_exp | null),tags?: (String_array_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null),technique?: (e_utility_techniques_enum_comparison_exp | null),throw_strength?: (e_utility_throw_strengths_enum_comparison_exp | null),trajectory_file?: (String_comparison_exp | null),trajectory_preview?: (jsonb_comparison_exp | null),trajectory_size?: (Int_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null),upvotes?: (Int_comparison_exp | null),utility_type?: (e_utility_types_enum_comparison_exp | null),verified_at?: (timestamptz_comparison_exp | null),view_pitch?: (float8_comparison_exp | null),view_pitch_delta?: (float8_comparison_exp | null),view_yaw?: (float8_comparison_exp | null),view_yaw_delta?: (float8_comparison_exp | null),visibility?: (e_utility_visibility_enum_comparison_exp | null),votes?: (utility_lineup_votes_bool_exp | null),votes_aggregate?: (utility_lineup_votes_aggregate_bool_exp | null),workshop_map_id?: (String_comparison_exp | null)} + + +/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ +export interface utility_lineups_delete_at_path_input {trajectory_preview?: (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 utility_lineups_delete_elem_input {trajectory_preview?: (Scalars['Int'] | null)} + + +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +export interface utility_lineups_delete_key_input {trajectory_preview?: (Scalars['String'] | null)} + + +/** input type for incrementing numeric columns in table "utility_lineups" */ +export interface utility_lineups_inc_input {aim_tolerance?: (Scalars['float8'] | null),author_steam_id?: (Scalars['bigint'] | null),downvotes?: (Scalars['Int'] | null),eye_z?: (Scalars['float8'] | null),favorites?: (Scalars['Int'] | null),flight_time_ms?: (Scalars['Int'] | null),initial_pos_x?: (Scalars['float8'] | null),initial_pos_y?: (Scalars['float8'] | null),initial_pos_z?: (Scalars['float8'] | null),initial_vel_x?: (Scalars['float8'] | null),initial_vel_y?: (Scalars['float8'] | null),initial_vel_z?: (Scalars['float8'] | null),land_x?: (Scalars['float8'] | null),land_y?: (Scalars['float8'] | null),land_z?: (Scalars['float8'] | null),origin_x?: (Scalars['float8'] | null),origin_y?: (Scalars['float8'] | null),origin_z?: (Scalars['float8'] | null),practice_attempts?: (Scalars['Int'] | null),practice_players?: (Scalars['Int'] | null),practice_successes?: (Scalars['Int'] | null),preview_duration_ms?: (Scalars['Int'] | null),public_reviewed_by?: (Scalars['bigint'] | null),source_grenade_id?: (Scalars['Int'] | null),trajectory_size?: (Scalars['Int'] | null),upvotes?: (Scalars['Int'] | null),view_pitch?: (Scalars['float8'] | null),view_pitch_delta?: (Scalars['float8'] | null),view_yaw?: (Scalars['float8'] | null),view_yaw_delta?: (Scalars['float8'] | null)} + + +/** input type for inserting data into table "utility_lineups" */ +export interface utility_lineups_insert_input {aim_tolerance?: (Scalars['float8'] | null),archived_at?: (Scalars['timestamptz'] | null),author?: (players_obj_rel_insert_input | null),author_steam_id?: (Scalars['bigint'] | null),collection_items?: (utility_collection_items_arr_rel_insert_input | null),confidence?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),downvotes?: (Scalars['Int'] | null),external_id?: (Scalars['String'] | null),eye_z?: (Scalars['float8'] | null),favorited_by?: (utility_lineup_favorites_arr_rel_insert_input | null),favorites?: (Scalars['Int'] | null),flight_time_ms?: (Scalars['Int'] | null),forked_from?: (utility_lineups_obj_rel_insert_input | null),forked_from_utility_lineup_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),initial_pos_x?: (Scalars['float8'] | null),initial_pos_y?: (Scalars['float8'] | null),initial_pos_z?: (Scalars['float8'] | null),initial_vel_x?: (Scalars['float8'] | null),initial_vel_y?: (Scalars['float8'] | null),initial_vel_z?: (Scalars['float8'] | null),jump_throw_bind?: (Scalars['Boolean'] | null),land_x?: (Scalars['float8'] | null),land_y?: (Scalars['float8'] | null),land_z?: (Scalars['float8'] | null),map_name?: (Scalars['String'] | null),name?: (Scalars['String'] | null),origin_source?: (e_utility_sources_enum | null),origin_x?: (Scalars['float8'] | null),origin_y?: (Scalars['float8'] | null),origin_z?: (Scalars['float8'] | null),practice_attempts?: (Scalars['Int'] | null),practice_players?: (Scalars['Int'] | null),practice_successes?: (Scalars['Int'] | null),preview_duration_ms?: (Scalars['Int'] | null),preview_file?: (Scalars['String'] | null),preview_rendered_at?: (Scalars['timestamptz'] | null),preview_thumbnail?: (Scalars['String'] | null),progress?: (utility_lineup_progress_arr_rel_insert_input | null),public_requested_at?: (Scalars['timestamptz'] | null),public_review_note?: (Scalars['String'] | null),public_reviewed_at?: (Scalars['timestamptz'] | null),public_reviewed_by?: (Scalars['bigint'] | null),renders?: (utility_lineup_renders_arr_rel_insert_input | null),repairs?: (utility_lineup_repairs_arr_rel_insert_input | null),side?: (e_sides_enum | null),source_grenade_id?: (Scalars['Int'] | null),source_match?: (matches_obj_rel_insert_input | null),source_match_id?: (Scalars['uuid'] | null),source_match_map?: (match_maps_obj_rel_insert_input | null),source_match_map_id?: (Scalars['uuid'] | null),source_url?: (Scalars['String'] | null),tags?: (Scalars['String'][] | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null),technique?: (e_utility_techniques_enum | null),throw_strength?: (e_utility_throw_strengths_enum | null),trajectory_file?: (Scalars['String'] | null),trajectory_preview?: (Scalars['jsonb'] | null),trajectory_size?: (Scalars['Int'] | null),updated_at?: (Scalars['timestamptz'] | null),upvotes?: (Scalars['Int'] | null),utility_type?: (e_utility_types_enum | null),verified_at?: (Scalars['timestamptz'] | null),view_pitch?: (Scalars['float8'] | null),view_pitch_delta?: (Scalars['float8'] | null),view_yaw?: (Scalars['float8'] | null),view_yaw_delta?: (Scalars['float8'] | null),visibility?: (e_utility_visibility_enum | null),votes?: (utility_lineup_votes_arr_rel_insert_input | null),workshop_map_id?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface utility_lineups_max_fieldsGenqlSelection{ + aim_tolerance?: boolean | number + archived_at?: boolean | number + author_steam_id?: boolean | number + confidence?: boolean | number + created_at?: boolean | number + description?: boolean | number + /** A computed field, executes function "utility_lineup_difficulty" */ + difficulty?: boolean | number + downvotes?: boolean | number + external_id?: boolean | number + eye_z?: boolean | number + favorites?: boolean | number + flight_time_ms?: boolean | number + forked_from_utility_lineup_id?: boolean | number + id?: boolean | number + initial_pos_x?: boolean | number + initial_pos_y?: boolean | number + initial_pos_z?: boolean | number + initial_vel_x?: boolean | number + initial_vel_y?: boolean | number + initial_vel_z?: boolean | number + land_x?: boolean | number + land_y?: boolean | number + land_z?: boolean | number + lineup_bucket?: boolean | number + map_name?: boolean | number + /** A computed field, executes function "utility_lineup_my_vote" */ + my_vote?: boolean | number + name?: boolean | number + origin_x?: boolean | number + origin_y?: boolean | number + origin_z?: boolean | number + practice_attempts?: boolean | number + practice_players?: boolean | number + practice_successes?: boolean | number + preview_duration_ms?: boolean | number + preview_file?: boolean | number + preview_rendered_at?: boolean | number + preview_thumbnail?: boolean | number + /** A computed field, executes function "utility_lineup_preview_thumbnail_url" */ + preview_thumbnail_url?: boolean | number + /** A computed field, executes function "utility_lineup_preview_url" */ + preview_url?: boolean | number + public_requested_at?: boolean | number + public_review_note?: boolean | number + public_reviewed_at?: boolean | number + public_reviewed_by?: boolean | number + source_grenade_id?: boolean | number + source_match_id?: boolean | number + source_match_map_id?: boolean | number + source_url?: boolean | number + tags?: boolean | number + team_id?: boolean | number + trajectory_file?: boolean | number + trajectory_size?: boolean | number + updated_at?: boolean | number + upvotes?: boolean | number + verified_at?: boolean | number + view_pitch?: boolean | number + view_pitch_delta?: boolean | number + view_yaw?: boolean | number + view_yaw_delta?: boolean | number + workshop_map_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "utility_lineups" */ +export interface utility_lineups_max_order_by {aim_tolerance?: (order_by | null),archived_at?: (order_by | null),author_steam_id?: (order_by | null),confidence?: (order_by | null),created_at?: (order_by | null),description?: (order_by | null),downvotes?: (order_by | null),external_id?: (order_by | null),eye_z?: (order_by | null),favorites?: (order_by | null),flight_time_ms?: (order_by | null),forked_from_utility_lineup_id?: (order_by | null),id?: (order_by | null),initial_pos_x?: (order_by | null),initial_pos_y?: (order_by | null),initial_pos_z?: (order_by | null),initial_vel_x?: (order_by | null),initial_vel_y?: (order_by | null),initial_vel_z?: (order_by | null),land_x?: (order_by | null),land_y?: (order_by | null),land_z?: (order_by | null),lineup_bucket?: (order_by | null),map_name?: (order_by | null),name?: (order_by | null),origin_x?: (order_by | null),origin_y?: (order_by | null),origin_z?: (order_by | null),practice_attempts?: (order_by | null),practice_players?: (order_by | null),practice_successes?: (order_by | null),preview_duration_ms?: (order_by | null),preview_file?: (order_by | null),preview_rendered_at?: (order_by | null),preview_thumbnail?: (order_by | null),public_requested_at?: (order_by | null),public_review_note?: (order_by | null),public_reviewed_at?: (order_by | null),public_reviewed_by?: (order_by | null),source_grenade_id?: (order_by | null),source_match_id?: (order_by | null),source_match_map_id?: (order_by | null),source_url?: (order_by | null),tags?: (order_by | null),team_id?: (order_by | null),trajectory_file?: (order_by | null),trajectory_size?: (order_by | null),updated_at?: (order_by | null),upvotes?: (order_by | null),verified_at?: (order_by | null),view_pitch?: (order_by | null),view_pitch_delta?: (order_by | null),view_yaw?: (order_by | null),view_yaw_delta?: (order_by | null),workshop_map_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface utility_lineups_min_fieldsGenqlSelection{ + aim_tolerance?: boolean | number + archived_at?: boolean | number + author_steam_id?: boolean | number + confidence?: boolean | number + created_at?: boolean | number + description?: boolean | number + /** A computed field, executes function "utility_lineup_difficulty" */ + difficulty?: boolean | number + downvotes?: boolean | number + external_id?: boolean | number + eye_z?: boolean | number + favorites?: boolean | number + flight_time_ms?: boolean | number + forked_from_utility_lineup_id?: boolean | number + id?: boolean | number + initial_pos_x?: boolean | number + initial_pos_y?: boolean | number + initial_pos_z?: boolean | number + initial_vel_x?: boolean | number + initial_vel_y?: boolean | number + initial_vel_z?: boolean | number + land_x?: boolean | number + land_y?: boolean | number + land_z?: boolean | number + lineup_bucket?: boolean | number + map_name?: boolean | number + /** A computed field, executes function "utility_lineup_my_vote" */ + my_vote?: boolean | number + name?: boolean | number + origin_x?: boolean | number + origin_y?: boolean | number + origin_z?: boolean | number + practice_attempts?: boolean | number + practice_players?: boolean | number + practice_successes?: boolean | number + preview_duration_ms?: boolean | number + preview_file?: boolean | number + preview_rendered_at?: boolean | number + preview_thumbnail?: boolean | number + /** A computed field, executes function "utility_lineup_preview_thumbnail_url" */ + preview_thumbnail_url?: boolean | number + /** A computed field, executes function "utility_lineup_preview_url" */ + preview_url?: boolean | number + public_requested_at?: boolean | number + public_review_note?: boolean | number + public_reviewed_at?: boolean | number + public_reviewed_by?: boolean | number + source_grenade_id?: boolean | number + source_match_id?: boolean | number + source_match_map_id?: boolean | number + source_url?: boolean | number + tags?: boolean | number + team_id?: boolean | number + trajectory_file?: boolean | number + trajectory_size?: boolean | number + updated_at?: boolean | number + upvotes?: boolean | number + verified_at?: boolean | number + view_pitch?: boolean | number + view_pitch_delta?: boolean | number + view_yaw?: boolean | number + view_yaw_delta?: boolean | number + workshop_map_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "utility_lineups" */ +export interface utility_lineups_min_order_by {aim_tolerance?: (order_by | null),archived_at?: (order_by | null),author_steam_id?: (order_by | null),confidence?: (order_by | null),created_at?: (order_by | null),description?: (order_by | null),downvotes?: (order_by | null),external_id?: (order_by | null),eye_z?: (order_by | null),favorites?: (order_by | null),flight_time_ms?: (order_by | null),forked_from_utility_lineup_id?: (order_by | null),id?: (order_by | null),initial_pos_x?: (order_by | null),initial_pos_y?: (order_by | null),initial_pos_z?: (order_by | null),initial_vel_x?: (order_by | null),initial_vel_y?: (order_by | null),initial_vel_z?: (order_by | null),land_x?: (order_by | null),land_y?: (order_by | null),land_z?: (order_by | null),lineup_bucket?: (order_by | null),map_name?: (order_by | null),name?: (order_by | null),origin_x?: (order_by | null),origin_y?: (order_by | null),origin_z?: (order_by | null),practice_attempts?: (order_by | null),practice_players?: (order_by | null),practice_successes?: (order_by | null),preview_duration_ms?: (order_by | null),preview_file?: (order_by | null),preview_rendered_at?: (order_by | null),preview_thumbnail?: (order_by | null),public_requested_at?: (order_by | null),public_review_note?: (order_by | null),public_reviewed_at?: (order_by | null),public_reviewed_by?: (order_by | null),source_grenade_id?: (order_by | null),source_match_id?: (order_by | null),source_match_map_id?: (order_by | null),source_url?: (order_by | null),tags?: (order_by | null),team_id?: (order_by | null),trajectory_file?: (order_by | null),trajectory_size?: (order_by | null),updated_at?: (order_by | null),upvotes?: (order_by | null),verified_at?: (order_by | null),view_pitch?: (order_by | null),view_pitch_delta?: (order_by | null),view_yaw?: (order_by | null),view_yaw_delta?: (order_by | null),workshop_map_id?: (order_by | null)} + + +/** response of any mutation on the table "utility_lineups" */ +export interface utility_lineups_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: utility_lineupsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "utility_lineups" */ +export interface utility_lineups_obj_rel_insert_input {data: utility_lineups_insert_input, +/** upsert condition */ +on_conflict?: (utility_lineups_on_conflict | null)} + + +/** on_conflict condition type for table "utility_lineups" */ +export interface utility_lineups_on_conflict {constraint: utility_lineups_constraint,update_columns?: utility_lineups_update_column[],where?: (utility_lineups_bool_exp | null)} + + +/** Ordering options when selecting data from "utility_lineups". */ +export interface utility_lineups_order_by {aim_tolerance?: (order_by | null),archived_at?: (order_by | null),author?: (players_order_by | null),author_steam_id?: (order_by | null),can_edit?: (order_by | null),can_view?: (order_by | null),collection_items_aggregate?: (utility_collection_items_aggregate_order_by | null),confidence?: (order_by | null),created_at?: (order_by | null),description?: (order_by | null),difficulty?: (order_by | null),downvotes?: (order_by | null),external_id?: (order_by | null),eye_z?: (order_by | null),favorited_by_aggregate?: (utility_lineup_favorites_aggregate_order_by | null),favorites?: (order_by | null),flight_time_ms?: (order_by | null),forked_from?: (utility_lineups_order_by | null),forked_from_utility_lineup_id?: (order_by | null),id?: (order_by | null),initial_pos_x?: (order_by | null),initial_pos_y?: (order_by | null),initial_pos_z?: (order_by | null),initial_vel_x?: (order_by | null),initial_vel_y?: (order_by | null),initial_vel_z?: (order_by | null),is_favorited?: (order_by | null),jump_throw_bind?: (order_by | null),land_x?: (order_by | null),land_y?: (order_by | null),land_z?: (order_by | null),lineup_bucket?: (order_by | null),map_name?: (order_by | null),my_vote?: (order_by | null),name?: (order_by | null),origin_source?: (order_by | null),origin_x?: (order_by | null),origin_y?: (order_by | null),origin_z?: (order_by | null),practice_attempts?: (order_by | null),practice_players?: (order_by | null),practice_successes?: (order_by | null),preview_duration_ms?: (order_by | null),preview_file?: (order_by | null),preview_rendered_at?: (order_by | null),preview_thumbnail?: (order_by | null),preview_thumbnail_url?: (order_by | null),preview_url?: (order_by | null),progress_aggregate?: (utility_lineup_progress_aggregate_order_by | null),public_requested_at?: (order_by | null),public_review_note?: (order_by | null),public_reviewed_at?: (order_by | null),public_reviewed_by?: (order_by | null),renders_aggregate?: (utility_lineup_renders_aggregate_order_by | null),repairs_aggregate?: (utility_lineup_repairs_aggregate_order_by | null),side?: (order_by | null),source_grenade_id?: (order_by | null),source_match?: (matches_order_by | null),source_match_id?: (order_by | null),source_match_map?: (match_maps_order_by | null),source_match_map_id?: (order_by | null),source_url?: (order_by | null),tags?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null),technique?: (order_by | null),throw_strength?: (order_by | null),trajectory_file?: (order_by | null),trajectory_preview?: (order_by | null),trajectory_size?: (order_by | null),updated_at?: (order_by | null),upvotes?: (order_by | null),utility_type?: (order_by | null),verified_at?: (order_by | null),view_pitch?: (order_by | null),view_pitch_delta?: (order_by | null),view_yaw?: (order_by | null),view_yaw_delta?: (order_by | null),visibility?: (order_by | null),votes_aggregate?: (utility_lineup_votes_aggregate_order_by | null),workshop_map_id?: (order_by | null)} + + +/** primary key columns input for table: utility_lineups */ +export interface utility_lineups_pk_columns_input {id: Scalars['uuid']} + + +/** prepend existing jsonb value of filtered columns with new jsonb value */ +export interface utility_lineups_prepend_input {trajectory_preview?: (Scalars['jsonb'] | null)} + + +/** input type for updating data in table "utility_lineups" */ +export interface utility_lineups_set_input {aim_tolerance?: (Scalars['float8'] | null),archived_at?: (Scalars['timestamptz'] | null),author_steam_id?: (Scalars['bigint'] | null),confidence?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),downvotes?: (Scalars['Int'] | null),external_id?: (Scalars['String'] | null),eye_z?: (Scalars['float8'] | null),favorites?: (Scalars['Int'] | null),flight_time_ms?: (Scalars['Int'] | null),forked_from_utility_lineup_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),initial_pos_x?: (Scalars['float8'] | null),initial_pos_y?: (Scalars['float8'] | null),initial_pos_z?: (Scalars['float8'] | null),initial_vel_x?: (Scalars['float8'] | null),initial_vel_y?: (Scalars['float8'] | null),initial_vel_z?: (Scalars['float8'] | null),jump_throw_bind?: (Scalars['Boolean'] | null),land_x?: (Scalars['float8'] | null),land_y?: (Scalars['float8'] | null),land_z?: (Scalars['float8'] | null),map_name?: (Scalars['String'] | null),name?: (Scalars['String'] | null),origin_source?: (e_utility_sources_enum | null),origin_x?: (Scalars['float8'] | null),origin_y?: (Scalars['float8'] | null),origin_z?: (Scalars['float8'] | null),practice_attempts?: (Scalars['Int'] | null),practice_players?: (Scalars['Int'] | null),practice_successes?: (Scalars['Int'] | null),preview_duration_ms?: (Scalars['Int'] | null),preview_file?: (Scalars['String'] | null),preview_rendered_at?: (Scalars['timestamptz'] | null),preview_thumbnail?: (Scalars['String'] | null),public_requested_at?: (Scalars['timestamptz'] | null),public_review_note?: (Scalars['String'] | null),public_reviewed_at?: (Scalars['timestamptz'] | null),public_reviewed_by?: (Scalars['bigint'] | null),side?: (e_sides_enum | null),source_grenade_id?: (Scalars['Int'] | null),source_match_id?: (Scalars['uuid'] | null),source_match_map_id?: (Scalars['uuid'] | null),source_url?: (Scalars['String'] | null),tags?: (Scalars['String'][] | null),team_id?: (Scalars['uuid'] | null),technique?: (e_utility_techniques_enum | null),throw_strength?: (e_utility_throw_strengths_enum | null),trajectory_file?: (Scalars['String'] | null),trajectory_preview?: (Scalars['jsonb'] | null),trajectory_size?: (Scalars['Int'] | null),updated_at?: (Scalars['timestamptz'] | null),upvotes?: (Scalars['Int'] | null),utility_type?: (e_utility_types_enum | null),verified_at?: (Scalars['timestamptz'] | null),view_pitch?: (Scalars['float8'] | null),view_pitch_delta?: (Scalars['float8'] | null),view_yaw?: (Scalars['float8'] | null),view_yaw_delta?: (Scalars['float8'] | null),visibility?: (e_utility_visibility_enum | null),workshop_map_id?: (Scalars['String'] | null)} + + +/** aggregate stddev on columns */ +export interface utility_lineups_stddev_fieldsGenqlSelection{ + aim_tolerance?: boolean | number + author_steam_id?: boolean | number + downvotes?: boolean | number + eye_z?: boolean | number + favorites?: boolean | number + flight_time_ms?: boolean | number + initial_pos_x?: boolean | number + initial_pos_y?: boolean | number + initial_pos_z?: boolean | number + initial_vel_x?: boolean | number + initial_vel_y?: boolean | number + initial_vel_z?: boolean | number + land_x?: boolean | number + land_y?: boolean | number + land_z?: boolean | number + /** A computed field, executes function "utility_lineup_my_vote" */ + my_vote?: boolean | number + origin_x?: boolean | number + origin_y?: boolean | number + origin_z?: boolean | number + practice_attempts?: boolean | number + practice_players?: boolean | number + practice_successes?: boolean | number + preview_duration_ms?: boolean | number + public_reviewed_by?: boolean | number + source_grenade_id?: boolean | number + trajectory_size?: boolean | number + upvotes?: boolean | number + view_pitch?: boolean | number + view_pitch_delta?: boolean | number + view_yaw?: boolean | number + view_yaw_delta?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "utility_lineups" */ +export interface utility_lineups_stddev_order_by {aim_tolerance?: (order_by | null),author_steam_id?: (order_by | null),downvotes?: (order_by | null),eye_z?: (order_by | null),favorites?: (order_by | null),flight_time_ms?: (order_by | null),initial_pos_x?: (order_by | null),initial_pos_y?: (order_by | null),initial_pos_z?: (order_by | null),initial_vel_x?: (order_by | null),initial_vel_y?: (order_by | null),initial_vel_z?: (order_by | null),land_x?: (order_by | null),land_y?: (order_by | null),land_z?: (order_by | null),origin_x?: (order_by | null),origin_y?: (order_by | null),origin_z?: (order_by | null),practice_attempts?: (order_by | null),practice_players?: (order_by | null),practice_successes?: (order_by | null),preview_duration_ms?: (order_by | null),public_reviewed_by?: (order_by | null),source_grenade_id?: (order_by | null),trajectory_size?: (order_by | null),upvotes?: (order_by | null),view_pitch?: (order_by | null),view_pitch_delta?: (order_by | null),view_yaw?: (order_by | null),view_yaw_delta?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface utility_lineups_stddev_pop_fieldsGenqlSelection{ + aim_tolerance?: boolean | number + author_steam_id?: boolean | number + downvotes?: boolean | number + eye_z?: boolean | number + favorites?: boolean | number + flight_time_ms?: boolean | number + initial_pos_x?: boolean | number + initial_pos_y?: boolean | number + initial_pos_z?: boolean | number + initial_vel_x?: boolean | number + initial_vel_y?: boolean | number + initial_vel_z?: boolean | number + land_x?: boolean | number + land_y?: boolean | number + land_z?: boolean | number + /** A computed field, executes function "utility_lineup_my_vote" */ + my_vote?: boolean | number + origin_x?: boolean | number + origin_y?: boolean | number + origin_z?: boolean | number + practice_attempts?: boolean | number + practice_players?: boolean | number + practice_successes?: boolean | number + preview_duration_ms?: boolean | number + public_reviewed_by?: boolean | number + source_grenade_id?: boolean | number + trajectory_size?: boolean | number + upvotes?: boolean | number + view_pitch?: boolean | number + view_pitch_delta?: boolean | number + view_yaw?: boolean | number + view_yaw_delta?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "utility_lineups" */ +export interface utility_lineups_stddev_pop_order_by {aim_tolerance?: (order_by | null),author_steam_id?: (order_by | null),downvotes?: (order_by | null),eye_z?: (order_by | null),favorites?: (order_by | null),flight_time_ms?: (order_by | null),initial_pos_x?: (order_by | null),initial_pos_y?: (order_by | null),initial_pos_z?: (order_by | null),initial_vel_x?: (order_by | null),initial_vel_y?: (order_by | null),initial_vel_z?: (order_by | null),land_x?: (order_by | null),land_y?: (order_by | null),land_z?: (order_by | null),origin_x?: (order_by | null),origin_y?: (order_by | null),origin_z?: (order_by | null),practice_attempts?: (order_by | null),practice_players?: (order_by | null),practice_successes?: (order_by | null),preview_duration_ms?: (order_by | null),public_reviewed_by?: (order_by | null),source_grenade_id?: (order_by | null),trajectory_size?: (order_by | null),upvotes?: (order_by | null),view_pitch?: (order_by | null),view_pitch_delta?: (order_by | null),view_yaw?: (order_by | null),view_yaw_delta?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface utility_lineups_stddev_samp_fieldsGenqlSelection{ + aim_tolerance?: boolean | number + author_steam_id?: boolean | number + downvotes?: boolean | number + eye_z?: boolean | number + favorites?: boolean | number + flight_time_ms?: boolean | number + initial_pos_x?: boolean | number + initial_pos_y?: boolean | number + initial_pos_z?: boolean | number + initial_vel_x?: boolean | number + initial_vel_y?: boolean | number + initial_vel_z?: boolean | number + land_x?: boolean | number + land_y?: boolean | number + land_z?: boolean | number + /** A computed field, executes function "utility_lineup_my_vote" */ + my_vote?: boolean | number + origin_x?: boolean | number + origin_y?: boolean | number + origin_z?: boolean | number + practice_attempts?: boolean | number + practice_players?: boolean | number + practice_successes?: boolean | number + preview_duration_ms?: boolean | number + public_reviewed_by?: boolean | number + source_grenade_id?: boolean | number + trajectory_size?: boolean | number + upvotes?: boolean | number + view_pitch?: boolean | number + view_pitch_delta?: boolean | number + view_yaw?: boolean | number + view_yaw_delta?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "utility_lineups" */ +export interface utility_lineups_stddev_samp_order_by {aim_tolerance?: (order_by | null),author_steam_id?: (order_by | null),downvotes?: (order_by | null),eye_z?: (order_by | null),favorites?: (order_by | null),flight_time_ms?: (order_by | null),initial_pos_x?: (order_by | null),initial_pos_y?: (order_by | null),initial_pos_z?: (order_by | null),initial_vel_x?: (order_by | null),initial_vel_y?: (order_by | null),initial_vel_z?: (order_by | null),land_x?: (order_by | null),land_y?: (order_by | null),land_z?: (order_by | null),origin_x?: (order_by | null),origin_y?: (order_by | null),origin_z?: (order_by | null),practice_attempts?: (order_by | null),practice_players?: (order_by | null),practice_successes?: (order_by | null),preview_duration_ms?: (order_by | null),public_reviewed_by?: (order_by | null),source_grenade_id?: (order_by | null),trajectory_size?: (order_by | null),upvotes?: (order_by | null),view_pitch?: (order_by | null),view_pitch_delta?: (order_by | null),view_yaw?: (order_by | null),view_yaw_delta?: (order_by | null)} + + +/** Streaming cursor of the table "utility_lineups" */ +export interface utility_lineups_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: utility_lineups_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface utility_lineups_stream_cursor_value_input {aim_tolerance?: (Scalars['float8'] | null),archived_at?: (Scalars['timestamptz'] | null),author_steam_id?: (Scalars['bigint'] | null),confidence?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),downvotes?: (Scalars['Int'] | null),external_id?: (Scalars['String'] | null),eye_z?: (Scalars['float8'] | null),favorites?: (Scalars['Int'] | null),flight_time_ms?: (Scalars['Int'] | null),forked_from_utility_lineup_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),initial_pos_x?: (Scalars['float8'] | null),initial_pos_y?: (Scalars['float8'] | null),initial_pos_z?: (Scalars['float8'] | null),initial_vel_x?: (Scalars['float8'] | null),initial_vel_y?: (Scalars['float8'] | null),initial_vel_z?: (Scalars['float8'] | null),jump_throw_bind?: (Scalars['Boolean'] | null),land_x?: (Scalars['float8'] | null),land_y?: (Scalars['float8'] | null),land_z?: (Scalars['float8'] | null),lineup_bucket?: (Scalars['String'] | null),map_name?: (Scalars['String'] | null),name?: (Scalars['String'] | null),origin_source?: (e_utility_sources_enum | null),origin_x?: (Scalars['float8'] | null),origin_y?: (Scalars['float8'] | null),origin_z?: (Scalars['float8'] | null),practice_attempts?: (Scalars['Int'] | null),practice_players?: (Scalars['Int'] | null),practice_successes?: (Scalars['Int'] | null),preview_duration_ms?: (Scalars['Int'] | null),preview_file?: (Scalars['String'] | null),preview_rendered_at?: (Scalars['timestamptz'] | null),preview_thumbnail?: (Scalars['String'] | null),public_requested_at?: (Scalars['timestamptz'] | null),public_review_note?: (Scalars['String'] | null),public_reviewed_at?: (Scalars['timestamptz'] | null),public_reviewed_by?: (Scalars['bigint'] | null),side?: (e_sides_enum | null),source_grenade_id?: (Scalars['Int'] | null),source_match_id?: (Scalars['uuid'] | null),source_match_map_id?: (Scalars['uuid'] | null),source_url?: (Scalars['String'] | null),tags?: (Scalars['String'][] | null),team_id?: (Scalars['uuid'] | null),technique?: (e_utility_techniques_enum | null),throw_strength?: (e_utility_throw_strengths_enum | null),trajectory_file?: (Scalars['String'] | null),trajectory_preview?: (Scalars['jsonb'] | null),trajectory_size?: (Scalars['Int'] | null),updated_at?: (Scalars['timestamptz'] | null),upvotes?: (Scalars['Int'] | null),utility_type?: (e_utility_types_enum | null),verified_at?: (Scalars['timestamptz'] | null),view_pitch?: (Scalars['float8'] | null),view_pitch_delta?: (Scalars['float8'] | null),view_yaw?: (Scalars['float8'] | null),view_yaw_delta?: (Scalars['float8'] | null),visibility?: (e_utility_visibility_enum | null),workshop_map_id?: (Scalars['String'] | null)} + + +/** aggregate sum on columns */ +export interface utility_lineups_sum_fieldsGenqlSelection{ + aim_tolerance?: boolean | number + author_steam_id?: boolean | number + downvotes?: boolean | number + eye_z?: boolean | number + favorites?: boolean | number + flight_time_ms?: boolean | number + initial_pos_x?: boolean | number + initial_pos_y?: boolean | number + initial_pos_z?: boolean | number + initial_vel_x?: boolean | number + initial_vel_y?: boolean | number + initial_vel_z?: boolean | number + land_x?: boolean | number + land_y?: boolean | number + land_z?: boolean | number + /** A computed field, executes function "utility_lineup_my_vote" */ + my_vote?: boolean | number + origin_x?: boolean | number + origin_y?: boolean | number + origin_z?: boolean | number + practice_attempts?: boolean | number + practice_players?: boolean | number + practice_successes?: boolean | number + preview_duration_ms?: boolean | number + public_reviewed_by?: boolean | number + source_grenade_id?: boolean | number + trajectory_size?: boolean | number + upvotes?: boolean | number + view_pitch?: boolean | number + view_pitch_delta?: boolean | number + view_yaw?: boolean | number + view_yaw_delta?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "utility_lineups" */ +export interface utility_lineups_sum_order_by {aim_tolerance?: (order_by | null),author_steam_id?: (order_by | null),downvotes?: (order_by | null),eye_z?: (order_by | null),favorites?: (order_by | null),flight_time_ms?: (order_by | null),initial_pos_x?: (order_by | null),initial_pos_y?: (order_by | null),initial_pos_z?: (order_by | null),initial_vel_x?: (order_by | null),initial_vel_y?: (order_by | null),initial_vel_z?: (order_by | null),land_x?: (order_by | null),land_y?: (order_by | null),land_z?: (order_by | null),origin_x?: (order_by | null),origin_y?: (order_by | null),origin_z?: (order_by | null),practice_attempts?: (order_by | null),practice_players?: (order_by | null),practice_successes?: (order_by | null),preview_duration_ms?: (order_by | null),public_reviewed_by?: (order_by | null),source_grenade_id?: (order_by | null),trajectory_size?: (order_by | null),upvotes?: (order_by | null),view_pitch?: (order_by | null),view_pitch_delta?: (order_by | null),view_yaw?: (order_by | null),view_yaw_delta?: (order_by | null)} + +export interface utility_lineups_updates { +/** append existing jsonb value of filtered columns with new jsonb value */ +_append?: (utility_lineups_append_input | null), +/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ +_delete_at_path?: (utility_lineups_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?: (utility_lineups_delete_elem_input | null), +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +_delete_key?: (utility_lineups_delete_key_input | null), +/** increments the numeric columns with given value of the filtered values */ +_inc?: (utility_lineups_inc_input | null), +/** prepend existing jsonb value of filtered columns with new jsonb value */ +_prepend?: (utility_lineups_prepend_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (utility_lineups_set_input | null), +/** filter the rows which have to be updated */ +where: utility_lineups_bool_exp} + + +/** aggregate var_pop on columns */ +export interface utility_lineups_var_pop_fieldsGenqlSelection{ + aim_tolerance?: boolean | number + author_steam_id?: boolean | number + downvotes?: boolean | number + eye_z?: boolean | number + favorites?: boolean | number + flight_time_ms?: boolean | number + initial_pos_x?: boolean | number + initial_pos_y?: boolean | number + initial_pos_z?: boolean | number + initial_vel_x?: boolean | number + initial_vel_y?: boolean | number + initial_vel_z?: boolean | number + land_x?: boolean | number + land_y?: boolean | number + land_z?: boolean | number + /** A computed field, executes function "utility_lineup_my_vote" */ + my_vote?: boolean | number + origin_x?: boolean | number + origin_y?: boolean | number + origin_z?: boolean | number + practice_attempts?: boolean | number + practice_players?: boolean | number + practice_successes?: boolean | number + preview_duration_ms?: boolean | number + public_reviewed_by?: boolean | number + source_grenade_id?: boolean | number + trajectory_size?: boolean | number + upvotes?: boolean | number + view_pitch?: boolean | number + view_pitch_delta?: boolean | number + view_yaw?: boolean | number + view_yaw_delta?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "utility_lineups" */ +export interface utility_lineups_var_pop_order_by {aim_tolerance?: (order_by | null),author_steam_id?: (order_by | null),downvotes?: (order_by | null),eye_z?: (order_by | null),favorites?: (order_by | null),flight_time_ms?: (order_by | null),initial_pos_x?: (order_by | null),initial_pos_y?: (order_by | null),initial_pos_z?: (order_by | null),initial_vel_x?: (order_by | null),initial_vel_y?: (order_by | null),initial_vel_z?: (order_by | null),land_x?: (order_by | null),land_y?: (order_by | null),land_z?: (order_by | null),origin_x?: (order_by | null),origin_y?: (order_by | null),origin_z?: (order_by | null),practice_attempts?: (order_by | null),practice_players?: (order_by | null),practice_successes?: (order_by | null),preview_duration_ms?: (order_by | null),public_reviewed_by?: (order_by | null),source_grenade_id?: (order_by | null),trajectory_size?: (order_by | null),upvotes?: (order_by | null),view_pitch?: (order_by | null),view_pitch_delta?: (order_by | null),view_yaw?: (order_by | null),view_yaw_delta?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface utility_lineups_var_samp_fieldsGenqlSelection{ + aim_tolerance?: boolean | number + author_steam_id?: boolean | number + downvotes?: boolean | number + eye_z?: boolean | number + favorites?: boolean | number + flight_time_ms?: boolean | number + initial_pos_x?: boolean | number + initial_pos_y?: boolean | number + initial_pos_z?: boolean | number + initial_vel_x?: boolean | number + initial_vel_y?: boolean | number + initial_vel_z?: boolean | number + land_x?: boolean | number + land_y?: boolean | number + land_z?: boolean | number + /** A computed field, executes function "utility_lineup_my_vote" */ + my_vote?: boolean | number + origin_x?: boolean | number + origin_y?: boolean | number + origin_z?: boolean | number + practice_attempts?: boolean | number + practice_players?: boolean | number + practice_successes?: boolean | number + preview_duration_ms?: boolean | number + public_reviewed_by?: boolean | number + source_grenade_id?: boolean | number + trajectory_size?: boolean | number + upvotes?: boolean | number + view_pitch?: boolean | number + view_pitch_delta?: boolean | number + view_yaw?: boolean | number + view_yaw_delta?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "utility_lineups" */ +export interface utility_lineups_var_samp_order_by {aim_tolerance?: (order_by | null),author_steam_id?: (order_by | null),downvotes?: (order_by | null),eye_z?: (order_by | null),favorites?: (order_by | null),flight_time_ms?: (order_by | null),initial_pos_x?: (order_by | null),initial_pos_y?: (order_by | null),initial_pos_z?: (order_by | null),initial_vel_x?: (order_by | null),initial_vel_y?: (order_by | null),initial_vel_z?: (order_by | null),land_x?: (order_by | null),land_y?: (order_by | null),land_z?: (order_by | null),origin_x?: (order_by | null),origin_y?: (order_by | null),origin_z?: (order_by | null),practice_attempts?: (order_by | null),practice_players?: (order_by | null),practice_successes?: (order_by | null),preview_duration_ms?: (order_by | null),public_reviewed_by?: (order_by | null),source_grenade_id?: (order_by | null),trajectory_size?: (order_by | null),upvotes?: (order_by | null),view_pitch?: (order_by | null),view_pitch_delta?: (order_by | null),view_yaw?: (order_by | null),view_yaw_delta?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface utility_lineups_variance_fieldsGenqlSelection{ + aim_tolerance?: boolean | number + author_steam_id?: boolean | number + downvotes?: boolean | number + eye_z?: boolean | number + favorites?: boolean | number + flight_time_ms?: boolean | number + initial_pos_x?: boolean | number + initial_pos_y?: boolean | number + initial_pos_z?: boolean | number + initial_vel_x?: boolean | number + initial_vel_y?: boolean | number + initial_vel_z?: boolean | number + land_x?: boolean | number + land_y?: boolean | number + land_z?: boolean | number + /** A computed field, executes function "utility_lineup_my_vote" */ + my_vote?: boolean | number + origin_x?: boolean | number + origin_y?: boolean | number + origin_z?: boolean | number + practice_attempts?: boolean | number + practice_players?: boolean | number + practice_successes?: boolean | number + preview_duration_ms?: boolean | number + public_reviewed_by?: boolean | number + source_grenade_id?: boolean | number + trajectory_size?: boolean | number + upvotes?: boolean | number + view_pitch?: boolean | number + view_pitch_delta?: boolean | number + view_yaw?: boolean | number + view_yaw_delta?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "utility_lineups" */ +export interface utility_lineups_variance_order_by {aim_tolerance?: (order_by | null),author_steam_id?: (order_by | null),downvotes?: (order_by | null),eye_z?: (order_by | null),favorites?: (order_by | null),flight_time_ms?: (order_by | null),initial_pos_x?: (order_by | null),initial_pos_y?: (order_by | null),initial_pos_z?: (order_by | null),initial_vel_x?: (order_by | null),initial_vel_y?: (order_by | null),initial_vel_z?: (order_by | null),land_x?: (order_by | null),land_y?: (order_by | null),land_z?: (order_by | null),origin_x?: (order_by | null),origin_y?: (order_by | null),origin_z?: (order_by | null),practice_attempts?: (order_by | null),practice_players?: (order_by | null),practice_successes?: (order_by | null),preview_duration_ms?: (order_by | null),public_reviewed_by?: (order_by | null),source_grenade_id?: (order_by | null),trajectory_size?: (order_by | null),upvotes?: (order_by | null),view_pitch?: (order_by | null),view_pitch_delta?: (order_by | null),view_yaw?: (order_by | null),view_yaw_delta?: (order_by | null)} + + +/** columns and relationships of "utility_meta_lineups" */ +export interface utility_meta_lineupsGenqlSelection{ + first_seen_at?: boolean | number + land_x?: boolean | number + land_y?: boolean | number + land_z?: boolean | number + last_seen_at?: boolean | number + lineup_bucket?: boolean | number + lineups?: boolean | number + map_name?: boolean | number + matches?: boolean | number + origin_x?: boolean | number + origin_y?: boolean | number + origin_z?: boolean | number + refreshed_at?: boolean | number + side?: boolean | number + technique?: boolean | number + throw_strength?: boolean | number + throwers?: boolean | number + throws?: boolean | number + utility_type?: boolean | number + view_pitch?: boolean | number + view_yaw?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "utility_meta_lineups" */ +export interface utility_meta_lineups_aggregateGenqlSelection{ + aggregate?: utility_meta_lineups_aggregate_fieldsGenqlSelection + nodes?: utility_meta_lineupsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "utility_meta_lineups" */ +export interface utility_meta_lineups_aggregate_fieldsGenqlSelection{ + avg?: utility_meta_lineups_avg_fieldsGenqlSelection + count?: { __args: {columns?: (utility_meta_lineups_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: utility_meta_lineups_max_fieldsGenqlSelection + min?: utility_meta_lineups_min_fieldsGenqlSelection + stddev?: utility_meta_lineups_stddev_fieldsGenqlSelection + stddev_pop?: utility_meta_lineups_stddev_pop_fieldsGenqlSelection + stddev_samp?: utility_meta_lineups_stddev_samp_fieldsGenqlSelection + sum?: utility_meta_lineups_sum_fieldsGenqlSelection + var_pop?: utility_meta_lineups_var_pop_fieldsGenqlSelection + var_samp?: utility_meta_lineups_var_samp_fieldsGenqlSelection + variance?: utility_meta_lineups_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface utility_meta_lineups_avg_fieldsGenqlSelection{ + land_x?: boolean | number + land_y?: boolean | number + land_z?: boolean | number + lineups?: boolean | number + matches?: boolean | number + origin_x?: boolean | number + origin_y?: boolean | number + origin_z?: boolean | number + throwers?: boolean | number + throws?: boolean | number + view_pitch?: boolean | number + view_yaw?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "utility_meta_lineups". All fields are combined with a logical 'AND'. */ +export interface utility_meta_lineups_bool_exp {_and?: (utility_meta_lineups_bool_exp[] | null),_not?: (utility_meta_lineups_bool_exp | null),_or?: (utility_meta_lineups_bool_exp[] | null),first_seen_at?: (timestamptz_comparison_exp | null),land_x?: (float8_comparison_exp | null),land_y?: (float8_comparison_exp | null),land_z?: (float8_comparison_exp | null),last_seen_at?: (timestamptz_comparison_exp | null),lineup_bucket?: (String_comparison_exp | null),lineups?: (Int_comparison_exp | null),map_name?: (String_comparison_exp | null),matches?: (Int_comparison_exp | null),origin_x?: (float8_comparison_exp | null),origin_y?: (float8_comparison_exp | null),origin_z?: (float8_comparison_exp | null),refreshed_at?: (timestamptz_comparison_exp | null),side?: (e_sides_enum_comparison_exp | null),technique?: (e_utility_techniques_enum_comparison_exp | null),throw_strength?: (String_comparison_exp | null),throwers?: (Int_comparison_exp | null),throws?: (Int_comparison_exp | null),utility_type?: (e_utility_types_enum_comparison_exp | null),view_pitch?: (float8_comparison_exp | null),view_yaw?: (float8_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "utility_meta_lineups" */ +export interface utility_meta_lineups_inc_input {land_x?: (Scalars['float8'] | null),land_y?: (Scalars['float8'] | null),land_z?: (Scalars['float8'] | null),lineups?: (Scalars['Int'] | null),matches?: (Scalars['Int'] | null),origin_x?: (Scalars['float8'] | null),origin_y?: (Scalars['float8'] | null),origin_z?: (Scalars['float8'] | null),throwers?: (Scalars['Int'] | null),throws?: (Scalars['Int'] | null),view_pitch?: (Scalars['float8'] | null),view_yaw?: (Scalars['float8'] | null)} + + +/** input type for inserting data into table "utility_meta_lineups" */ +export interface utility_meta_lineups_insert_input {first_seen_at?: (Scalars['timestamptz'] | null),land_x?: (Scalars['float8'] | null),land_y?: (Scalars['float8'] | null),land_z?: (Scalars['float8'] | null),last_seen_at?: (Scalars['timestamptz'] | null),lineup_bucket?: (Scalars['String'] | null),lineups?: (Scalars['Int'] | null),map_name?: (Scalars['String'] | null),matches?: (Scalars['Int'] | null),origin_x?: (Scalars['float8'] | null),origin_y?: (Scalars['float8'] | null),origin_z?: (Scalars['float8'] | null),refreshed_at?: (Scalars['timestamptz'] | null),side?: (e_sides_enum | null),technique?: (e_utility_techniques_enum | null),throw_strength?: (Scalars['String'] | null),throwers?: (Scalars['Int'] | null),throws?: (Scalars['Int'] | null),utility_type?: (e_utility_types_enum | null),view_pitch?: (Scalars['float8'] | null),view_yaw?: (Scalars['float8'] | null)} + + +/** aggregate max on columns */ +export interface utility_meta_lineups_max_fieldsGenqlSelection{ + first_seen_at?: boolean | number + land_x?: boolean | number + land_y?: boolean | number + land_z?: boolean | number + last_seen_at?: boolean | number + lineup_bucket?: boolean | number + lineups?: boolean | number + map_name?: boolean | number + matches?: boolean | number + origin_x?: boolean | number + origin_y?: boolean | number + origin_z?: boolean | number + refreshed_at?: boolean | number + throw_strength?: boolean | number + throwers?: boolean | number + throws?: boolean | number + view_pitch?: boolean | number + view_yaw?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface utility_meta_lineups_min_fieldsGenqlSelection{ + first_seen_at?: boolean | number + land_x?: boolean | number + land_y?: boolean | number + land_z?: boolean | number + last_seen_at?: boolean | number + lineup_bucket?: boolean | number + lineups?: boolean | number + map_name?: boolean | number + matches?: boolean | number + origin_x?: boolean | number + origin_y?: boolean | number + origin_z?: boolean | number + refreshed_at?: boolean | number + throw_strength?: boolean | number + throwers?: boolean | number + throws?: boolean | number + view_pitch?: boolean | number + view_yaw?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "utility_meta_lineups" */ +export interface utility_meta_lineups_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: utility_meta_lineupsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "utility_meta_lineups" */ +export interface utility_meta_lineups_on_conflict {constraint: utility_meta_lineups_constraint,update_columns?: utility_meta_lineups_update_column[],where?: (utility_meta_lineups_bool_exp | null)} + + +/** Ordering options when selecting data from "utility_meta_lineups". */ +export interface utility_meta_lineups_order_by {first_seen_at?: (order_by | null),land_x?: (order_by | null),land_y?: (order_by | null),land_z?: (order_by | null),last_seen_at?: (order_by | null),lineup_bucket?: (order_by | null),lineups?: (order_by | null),map_name?: (order_by | null),matches?: (order_by | null),origin_x?: (order_by | null),origin_y?: (order_by | null),origin_z?: (order_by | null),refreshed_at?: (order_by | null),side?: (order_by | null),technique?: (order_by | null),throw_strength?: (order_by | null),throwers?: (order_by | null),throws?: (order_by | null),utility_type?: (order_by | null),view_pitch?: (order_by | null),view_yaw?: (order_by | null)} + + +/** primary key columns input for table: utility_meta_lineups */ +export interface utility_meta_lineups_pk_columns_input {lineup_bucket: Scalars['String']} + + +/** input type for updating data in table "utility_meta_lineups" */ +export interface utility_meta_lineups_set_input {first_seen_at?: (Scalars['timestamptz'] | null),land_x?: (Scalars['float8'] | null),land_y?: (Scalars['float8'] | null),land_z?: (Scalars['float8'] | null),last_seen_at?: (Scalars['timestamptz'] | null),lineup_bucket?: (Scalars['String'] | null),lineups?: (Scalars['Int'] | null),map_name?: (Scalars['String'] | null),matches?: (Scalars['Int'] | null),origin_x?: (Scalars['float8'] | null),origin_y?: (Scalars['float8'] | null),origin_z?: (Scalars['float8'] | null),refreshed_at?: (Scalars['timestamptz'] | null),side?: (e_sides_enum | null),technique?: (e_utility_techniques_enum | null),throw_strength?: (Scalars['String'] | null),throwers?: (Scalars['Int'] | null),throws?: (Scalars['Int'] | null),utility_type?: (e_utility_types_enum | null),view_pitch?: (Scalars['float8'] | null),view_yaw?: (Scalars['float8'] | null)} + + +/** aggregate stddev on columns */ +export interface utility_meta_lineups_stddev_fieldsGenqlSelection{ + land_x?: boolean | number + land_y?: boolean | number + land_z?: boolean | number + lineups?: boolean | number + matches?: boolean | number + origin_x?: boolean | number + origin_y?: boolean | number + origin_z?: boolean | number + throwers?: boolean | number + throws?: boolean | number + view_pitch?: boolean | number + view_yaw?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface utility_meta_lineups_stddev_pop_fieldsGenqlSelection{ + land_x?: boolean | number + land_y?: boolean | number + land_z?: boolean | number + lineups?: boolean | number + matches?: boolean | number + origin_x?: boolean | number + origin_y?: boolean | number + origin_z?: boolean | number + throwers?: boolean | number + throws?: boolean | number + view_pitch?: boolean | number + view_yaw?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface utility_meta_lineups_stddev_samp_fieldsGenqlSelection{ + land_x?: boolean | number + land_y?: boolean | number + land_z?: boolean | number + lineups?: boolean | number + matches?: boolean | number + origin_x?: boolean | number + origin_y?: boolean | number + origin_z?: boolean | number + throwers?: boolean | number + throws?: boolean | number + view_pitch?: boolean | number + view_yaw?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "utility_meta_lineups" */ +export interface utility_meta_lineups_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: utility_meta_lineups_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface utility_meta_lineups_stream_cursor_value_input {first_seen_at?: (Scalars['timestamptz'] | null),land_x?: (Scalars['float8'] | null),land_y?: (Scalars['float8'] | null),land_z?: (Scalars['float8'] | null),last_seen_at?: (Scalars['timestamptz'] | null),lineup_bucket?: (Scalars['String'] | null),lineups?: (Scalars['Int'] | null),map_name?: (Scalars['String'] | null),matches?: (Scalars['Int'] | null),origin_x?: (Scalars['float8'] | null),origin_y?: (Scalars['float8'] | null),origin_z?: (Scalars['float8'] | null),refreshed_at?: (Scalars['timestamptz'] | null),side?: (e_sides_enum | null),technique?: (e_utility_techniques_enum | null),throw_strength?: (Scalars['String'] | null),throwers?: (Scalars['Int'] | null),throws?: (Scalars['Int'] | null),utility_type?: (e_utility_types_enum | null),view_pitch?: (Scalars['float8'] | null),view_yaw?: (Scalars['float8'] | null)} + + +/** aggregate sum on columns */ +export interface utility_meta_lineups_sum_fieldsGenqlSelection{ + land_x?: boolean | number + land_y?: boolean | number + land_z?: boolean | number + lineups?: boolean | number + matches?: boolean | number + origin_x?: boolean | number + origin_y?: boolean | number + origin_z?: boolean | number + throwers?: boolean | number + throws?: boolean | number + view_pitch?: boolean | number + view_yaw?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface utility_meta_lineups_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (utility_meta_lineups_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (utility_meta_lineups_set_input | null), +/** filter the rows which have to be updated */ +where: utility_meta_lineups_bool_exp} + + +/** aggregate var_pop on columns */ +export interface utility_meta_lineups_var_pop_fieldsGenqlSelection{ + land_x?: boolean | number + land_y?: boolean | number + land_z?: boolean | number + lineups?: boolean | number + matches?: boolean | number + origin_x?: boolean | number + origin_y?: boolean | number + origin_z?: boolean | number + throwers?: boolean | number + throws?: boolean | number + view_pitch?: boolean | number + view_yaw?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface utility_meta_lineups_var_samp_fieldsGenqlSelection{ + land_x?: boolean | number + land_y?: boolean | number + land_z?: boolean | number + lineups?: boolean | number + matches?: boolean | number + origin_x?: boolean | number + origin_y?: boolean | number + origin_z?: boolean | number + throwers?: boolean | number + throws?: boolean | number + view_pitch?: boolean | number + view_yaw?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface utility_meta_lineups_variance_fieldsGenqlSelection{ + land_x?: boolean | number + land_y?: boolean | number + land_z?: boolean | number + lineups?: boolean | number + matches?: boolean | number + origin_x?: boolean | number + origin_y?: boolean | number + origin_z?: boolean | number + throwers?: boolean | number + throws?: boolean | number + view_pitch?: boolean | number + view_yaw?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "utility_playbook_steps" */ +export interface utility_playbook_stepsGenqlSelection{ + /** An object relationship */ + assigned_player?: playersGenqlSelection + assigned_steam_id?: boolean | number + created_at?: boolean | number + id?: boolean | number + note?: boolean | number + offset_ms?: boolean | number + /** An object relationship */ + playbook?: utility_playbooksGenqlSelection + playbook_id?: boolean | number + step_order?: boolean | number + /** An object relationship */ + utility_lineup?: utility_lineupsGenqlSelection + utility_lineup_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "utility_playbook_steps" */ +export interface utility_playbook_steps_aggregateGenqlSelection{ + aggregate?: utility_playbook_steps_aggregate_fieldsGenqlSelection + nodes?: utility_playbook_stepsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface utility_playbook_steps_aggregate_bool_exp {count?: (utility_playbook_steps_aggregate_bool_exp_count | null)} + +export interface utility_playbook_steps_aggregate_bool_exp_count {arguments?: (utility_playbook_steps_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (utility_playbook_steps_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "utility_playbook_steps" */ +export interface utility_playbook_steps_aggregate_fieldsGenqlSelection{ + avg?: utility_playbook_steps_avg_fieldsGenqlSelection + count?: { __args: {columns?: (utility_playbook_steps_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: utility_playbook_steps_max_fieldsGenqlSelection + min?: utility_playbook_steps_min_fieldsGenqlSelection + stddev?: utility_playbook_steps_stddev_fieldsGenqlSelection + stddev_pop?: utility_playbook_steps_stddev_pop_fieldsGenqlSelection + stddev_samp?: utility_playbook_steps_stddev_samp_fieldsGenqlSelection + sum?: utility_playbook_steps_sum_fieldsGenqlSelection + var_pop?: utility_playbook_steps_var_pop_fieldsGenqlSelection + var_samp?: utility_playbook_steps_var_samp_fieldsGenqlSelection + variance?: utility_playbook_steps_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "utility_playbook_steps" */ +export interface utility_playbook_steps_aggregate_order_by {avg?: (utility_playbook_steps_avg_order_by | null),count?: (order_by | null),max?: (utility_playbook_steps_max_order_by | null),min?: (utility_playbook_steps_min_order_by | null),stddev?: (utility_playbook_steps_stddev_order_by | null),stddev_pop?: (utility_playbook_steps_stddev_pop_order_by | null),stddev_samp?: (utility_playbook_steps_stddev_samp_order_by | null),sum?: (utility_playbook_steps_sum_order_by | null),var_pop?: (utility_playbook_steps_var_pop_order_by | null),var_samp?: (utility_playbook_steps_var_samp_order_by | null),variance?: (utility_playbook_steps_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "utility_playbook_steps" */ +export interface utility_playbook_steps_arr_rel_insert_input {data: utility_playbook_steps_insert_input[], +/** upsert condition */ +on_conflict?: (utility_playbook_steps_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface utility_playbook_steps_avg_fieldsGenqlSelection{ + assigned_steam_id?: boolean | number + offset_ms?: boolean | number + step_order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "utility_playbook_steps" */ +export interface utility_playbook_steps_avg_order_by {assigned_steam_id?: (order_by | null),offset_ms?: (order_by | null),step_order?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "utility_playbook_steps". All fields are combined with a logical 'AND'. */ +export interface utility_playbook_steps_bool_exp {_and?: (utility_playbook_steps_bool_exp[] | null),_not?: (utility_playbook_steps_bool_exp | null),_or?: (utility_playbook_steps_bool_exp[] | null),assigned_player?: (players_bool_exp | null),assigned_steam_id?: (bigint_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),note?: (String_comparison_exp | null),offset_ms?: (Int_comparison_exp | null),playbook?: (utility_playbooks_bool_exp | null),playbook_id?: (uuid_comparison_exp | null),step_order?: (Int_comparison_exp | null),utility_lineup?: (utility_lineups_bool_exp | null),utility_lineup_id?: (uuid_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "utility_playbook_steps" */ +export interface utility_playbook_steps_inc_input {assigned_steam_id?: (Scalars['bigint'] | null),offset_ms?: (Scalars['Int'] | null),step_order?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "utility_playbook_steps" */ +export interface utility_playbook_steps_insert_input {assigned_player?: (players_obj_rel_insert_input | null),assigned_steam_id?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),note?: (Scalars['String'] | null),offset_ms?: (Scalars['Int'] | null),playbook?: (utility_playbooks_obj_rel_insert_input | null),playbook_id?: (Scalars['uuid'] | null),step_order?: (Scalars['Int'] | null),utility_lineup?: (utility_lineups_obj_rel_insert_input | null),utility_lineup_id?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface utility_playbook_steps_max_fieldsGenqlSelection{ + assigned_steam_id?: boolean | number + created_at?: boolean | number + id?: boolean | number + note?: boolean | number + offset_ms?: boolean | number + playbook_id?: boolean | number + step_order?: boolean | number + utility_lineup_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "utility_playbook_steps" */ +export interface utility_playbook_steps_max_order_by {assigned_steam_id?: (order_by | null),created_at?: (order_by | null),id?: (order_by | null),note?: (order_by | null),offset_ms?: (order_by | null),playbook_id?: (order_by | null),step_order?: (order_by | null),utility_lineup_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface utility_playbook_steps_min_fieldsGenqlSelection{ + assigned_steam_id?: boolean | number + created_at?: boolean | number + id?: boolean | number + note?: boolean | number + offset_ms?: boolean | number + playbook_id?: boolean | number + step_order?: boolean | number + utility_lineup_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "utility_playbook_steps" */ +export interface utility_playbook_steps_min_order_by {assigned_steam_id?: (order_by | null),created_at?: (order_by | null),id?: (order_by | null),note?: (order_by | null),offset_ms?: (order_by | null),playbook_id?: (order_by | null),step_order?: (order_by | null),utility_lineup_id?: (order_by | null)} + + +/** response of any mutation on the table "utility_playbook_steps" */ +export interface utility_playbook_steps_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: utility_playbook_stepsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "utility_playbook_steps" */ +export interface utility_playbook_steps_on_conflict {constraint: utility_playbook_steps_constraint,update_columns?: utility_playbook_steps_update_column[],where?: (utility_playbook_steps_bool_exp | null)} + + +/** Ordering options when selecting data from "utility_playbook_steps". */ +export interface utility_playbook_steps_order_by {assigned_player?: (players_order_by | null),assigned_steam_id?: (order_by | null),created_at?: (order_by | null),id?: (order_by | null),note?: (order_by | null),offset_ms?: (order_by | null),playbook?: (utility_playbooks_order_by | null),playbook_id?: (order_by | null),step_order?: (order_by | null),utility_lineup?: (utility_lineups_order_by | null),utility_lineup_id?: (order_by | null)} + + +/** primary key columns input for table: utility_playbook_steps */ +export interface utility_playbook_steps_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "utility_playbook_steps" */ +export interface utility_playbook_steps_set_input {assigned_steam_id?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),note?: (Scalars['String'] | null),offset_ms?: (Scalars['Int'] | null),playbook_id?: (Scalars['uuid'] | null),step_order?: (Scalars['Int'] | null),utility_lineup_id?: (Scalars['uuid'] | null)} + + +/** aggregate stddev on columns */ +export interface utility_playbook_steps_stddev_fieldsGenqlSelection{ + assigned_steam_id?: boolean | number + offset_ms?: boolean | number + step_order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "utility_playbook_steps" */ +export interface utility_playbook_steps_stddev_order_by {assigned_steam_id?: (order_by | null),offset_ms?: (order_by | null),step_order?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface utility_playbook_steps_stddev_pop_fieldsGenqlSelection{ + assigned_steam_id?: boolean | number + offset_ms?: boolean | number + step_order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "utility_playbook_steps" */ +export interface utility_playbook_steps_stddev_pop_order_by {assigned_steam_id?: (order_by | null),offset_ms?: (order_by | null),step_order?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface utility_playbook_steps_stddev_samp_fieldsGenqlSelection{ + assigned_steam_id?: boolean | number + offset_ms?: boolean | number + step_order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "utility_playbook_steps" */ +export interface utility_playbook_steps_stddev_samp_order_by {assigned_steam_id?: (order_by | null),offset_ms?: (order_by | null),step_order?: (order_by | null)} + + +/** Streaming cursor of the table "utility_playbook_steps" */ +export interface utility_playbook_steps_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: utility_playbook_steps_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface utility_playbook_steps_stream_cursor_value_input {assigned_steam_id?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),note?: (Scalars['String'] | null),offset_ms?: (Scalars['Int'] | null),playbook_id?: (Scalars['uuid'] | null),step_order?: (Scalars['Int'] | null),utility_lineup_id?: (Scalars['uuid'] | null)} + + +/** aggregate sum on columns */ +export interface utility_playbook_steps_sum_fieldsGenqlSelection{ + assigned_steam_id?: boolean | number + offset_ms?: boolean | number + step_order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "utility_playbook_steps" */ +export interface utility_playbook_steps_sum_order_by {assigned_steam_id?: (order_by | null),offset_ms?: (order_by | null),step_order?: (order_by | null)} + +export interface utility_playbook_steps_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (utility_playbook_steps_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (utility_playbook_steps_set_input | null), +/** filter the rows which have to be updated */ +where: utility_playbook_steps_bool_exp} + + +/** aggregate var_pop on columns */ +export interface utility_playbook_steps_var_pop_fieldsGenqlSelection{ + assigned_steam_id?: boolean | number + offset_ms?: boolean | number + step_order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "utility_playbook_steps" */ +export interface utility_playbook_steps_var_pop_order_by {assigned_steam_id?: (order_by | null),offset_ms?: (order_by | null),step_order?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface utility_playbook_steps_var_samp_fieldsGenqlSelection{ + assigned_steam_id?: boolean | number + offset_ms?: boolean | number + step_order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "utility_playbook_steps" */ +export interface utility_playbook_steps_var_samp_order_by {assigned_steam_id?: (order_by | null),offset_ms?: (order_by | null),step_order?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface utility_playbook_steps_variance_fieldsGenqlSelection{ + assigned_steam_id?: boolean | number + offset_ms?: boolean | number + step_order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "utility_playbook_steps" */ +export interface utility_playbook_steps_variance_order_by {assigned_steam_id?: (order_by | null),offset_ms?: (order_by | null),step_order?: (order_by | null)} + + +/** columns and relationships of "utility_playbooks" */ +export interface utility_playbooksGenqlSelection{ + /** A computed field, executes function "can_edit_utility_playbook" */ + can_edit?: boolean | number + /** A computed field, executes function "can_view_utility_playbook" */ + can_view?: boolean | number + created_at?: boolean | number + description?: boolean | number + id?: boolean | number + map_name?: boolean | number + name?: boolean | number + /** An object relationship */ + owner?: playersGenqlSelection + owner_steam_id?: boolean | number + side?: boolean | number + /** An array relationship */ + steps?: (utility_playbook_stepsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_playbook_steps_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_playbook_steps_order_by[] | null), + /** filter the rows returned */ + where?: (utility_playbook_steps_bool_exp | null)} }) + /** An aggregate relationship */ + steps_aggregate?: (utility_playbook_steps_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_playbook_steps_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_playbook_steps_order_by[] | null), + /** filter the rows returned */ + where?: (utility_playbook_steps_bool_exp | null)} }) + /** An object relationship */ + team?: teamsGenqlSelection + team_id?: boolean | number + updated_at?: boolean | number + visibility?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "utility_playbooks" */ +export interface utility_playbooks_aggregateGenqlSelection{ + aggregate?: utility_playbooks_aggregate_fieldsGenqlSelection + nodes?: utility_playbooksGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "utility_playbooks" */ +export interface utility_playbooks_aggregate_fieldsGenqlSelection{ + avg?: utility_playbooks_avg_fieldsGenqlSelection + count?: { __args: {columns?: (utility_playbooks_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: utility_playbooks_max_fieldsGenqlSelection + min?: utility_playbooks_min_fieldsGenqlSelection + stddev?: utility_playbooks_stddev_fieldsGenqlSelection + stddev_pop?: utility_playbooks_stddev_pop_fieldsGenqlSelection + stddev_samp?: utility_playbooks_stddev_samp_fieldsGenqlSelection + sum?: utility_playbooks_sum_fieldsGenqlSelection + var_pop?: utility_playbooks_var_pop_fieldsGenqlSelection + var_samp?: utility_playbooks_var_samp_fieldsGenqlSelection + variance?: utility_playbooks_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface utility_playbooks_avg_fieldsGenqlSelection{ + owner_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "utility_playbooks". All fields are combined with a logical 'AND'. */ +export interface utility_playbooks_bool_exp {_and?: (utility_playbooks_bool_exp[] | null),_not?: (utility_playbooks_bool_exp | null),_or?: (utility_playbooks_bool_exp[] | null),can_edit?: (Boolean_comparison_exp | null),can_view?: (Boolean_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),description?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),map_name?: (String_comparison_exp | null),name?: (String_comparison_exp | null),owner?: (players_bool_exp | null),owner_steam_id?: (bigint_comparison_exp | null),side?: (e_sides_enum_comparison_exp | null),steps?: (utility_playbook_steps_bool_exp | null),steps_aggregate?: (utility_playbook_steps_aggregate_bool_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null),visibility?: (e_utility_visibility_enum_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "utility_playbooks" */ +export interface utility_playbooks_inc_input {owner_steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "utility_playbooks" */ +export interface utility_playbooks_insert_input {created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),map_name?: (Scalars['String'] | null),name?: (Scalars['String'] | null),owner?: (players_obj_rel_insert_input | null),owner_steam_id?: (Scalars['bigint'] | null),side?: (e_sides_enum | null),steps?: (utility_playbook_steps_arr_rel_insert_input | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null),visibility?: (e_utility_visibility_enum | null)} + + +/** aggregate max on columns */ +export interface utility_playbooks_max_fieldsGenqlSelection{ + created_at?: boolean | number + description?: boolean | number + id?: boolean | number + map_name?: boolean | number + name?: boolean | number + owner_steam_id?: boolean | number + team_id?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface utility_playbooks_min_fieldsGenqlSelection{ + created_at?: boolean | number + description?: boolean | number + id?: boolean | number + map_name?: boolean | number + name?: boolean | number + owner_steam_id?: boolean | number + team_id?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "utility_playbooks" */ +export interface utility_playbooks_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: utility_playbooksGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "utility_playbooks" */ +export interface utility_playbooks_obj_rel_insert_input {data: utility_playbooks_insert_input, +/** upsert condition */ +on_conflict?: (utility_playbooks_on_conflict | null)} + + +/** on_conflict condition type for table "utility_playbooks" */ +export interface utility_playbooks_on_conflict {constraint: utility_playbooks_constraint,update_columns?: utility_playbooks_update_column[],where?: (utility_playbooks_bool_exp | null)} + + +/** Ordering options when selecting data from "utility_playbooks". */ +export interface utility_playbooks_order_by {can_edit?: (order_by | null),can_view?: (order_by | null),created_at?: (order_by | null),description?: (order_by | null),id?: (order_by | null),map_name?: (order_by | null),name?: (order_by | null),owner?: (players_order_by | null),owner_steam_id?: (order_by | null),side?: (order_by | null),steps_aggregate?: (utility_playbook_steps_aggregate_order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null),updated_at?: (order_by | null),visibility?: (order_by | null)} + + +/** primary key columns input for table: utility_playbooks */ +export interface utility_playbooks_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "utility_playbooks" */ +export interface utility_playbooks_set_input {created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),map_name?: (Scalars['String'] | null),name?: (Scalars['String'] | null),owner_steam_id?: (Scalars['bigint'] | null),side?: (e_sides_enum | null),team_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null),visibility?: (e_utility_visibility_enum | null)} + + +/** aggregate stddev on columns */ +export interface utility_playbooks_stddev_fieldsGenqlSelection{ + owner_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface utility_playbooks_stddev_pop_fieldsGenqlSelection{ + owner_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface utility_playbooks_stddev_samp_fieldsGenqlSelection{ + owner_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "utility_playbooks" */ +export interface utility_playbooks_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: utility_playbooks_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface utility_playbooks_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),map_name?: (Scalars['String'] | null),name?: (Scalars['String'] | null),owner_steam_id?: (Scalars['bigint'] | null),side?: (e_sides_enum | null),team_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null),visibility?: (e_utility_visibility_enum | null)} + + +/** aggregate sum on columns */ +export interface utility_playbooks_sum_fieldsGenqlSelection{ + owner_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface utility_playbooks_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (utility_playbooks_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (utility_playbooks_set_input | null), +/** filter the rows which have to be updated */ +where: utility_playbooks_bool_exp} + + +/** aggregate var_pop on columns */ +export interface utility_playbooks_var_pop_fieldsGenqlSelection{ + owner_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface utility_playbooks_var_samp_fieldsGenqlSelection{ + owner_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface utility_playbooks_variance_fieldsGenqlSelection{ + owner_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "utility_practice_invites" */ +export interface utility_practice_invitesGenqlSelection{ + created_at?: boolean | number + /** An object relationship */ + invited_by?: playersGenqlSelection + invited_by_steam_id?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + /** An object relationship */ + session?: utility_practice_sessionsGenqlSelection + steam_id?: boolean | number + utility_practice_session_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "utility_practice_invites" */ +export interface utility_practice_invites_aggregateGenqlSelection{ + aggregate?: utility_practice_invites_aggregate_fieldsGenqlSelection + nodes?: utility_practice_invitesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface utility_practice_invites_aggregate_bool_exp {count?: (utility_practice_invites_aggregate_bool_exp_count | null)} + +export interface utility_practice_invites_aggregate_bool_exp_count {arguments?: (utility_practice_invites_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (utility_practice_invites_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "utility_practice_invites" */ +export interface utility_practice_invites_aggregate_fieldsGenqlSelection{ + avg?: utility_practice_invites_avg_fieldsGenqlSelection + count?: { __args: {columns?: (utility_practice_invites_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: utility_practice_invites_max_fieldsGenqlSelection + min?: utility_practice_invites_min_fieldsGenqlSelection + stddev?: utility_practice_invites_stddev_fieldsGenqlSelection + stddev_pop?: utility_practice_invites_stddev_pop_fieldsGenqlSelection + stddev_samp?: utility_practice_invites_stddev_samp_fieldsGenqlSelection + sum?: utility_practice_invites_sum_fieldsGenqlSelection + var_pop?: utility_practice_invites_var_pop_fieldsGenqlSelection + var_samp?: utility_practice_invites_var_samp_fieldsGenqlSelection + variance?: utility_practice_invites_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "utility_practice_invites" */ +export interface utility_practice_invites_aggregate_order_by {avg?: (utility_practice_invites_avg_order_by | null),count?: (order_by | null),max?: (utility_practice_invites_max_order_by | null),min?: (utility_practice_invites_min_order_by | null),stddev?: (utility_practice_invites_stddev_order_by | null),stddev_pop?: (utility_practice_invites_stddev_pop_order_by | null),stddev_samp?: (utility_practice_invites_stddev_samp_order_by | null),sum?: (utility_practice_invites_sum_order_by | null),var_pop?: (utility_practice_invites_var_pop_order_by | null),var_samp?: (utility_practice_invites_var_samp_order_by | null),variance?: (utility_practice_invites_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "utility_practice_invites" */ +export interface utility_practice_invites_arr_rel_insert_input {data: utility_practice_invites_insert_input[], +/** upsert condition */ +on_conflict?: (utility_practice_invites_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface utility_practice_invites_avg_fieldsGenqlSelection{ + invited_by_steam_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "utility_practice_invites" */ +export interface utility_practice_invites_avg_order_by {invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "utility_practice_invites". All fields are combined with a logical 'AND'. */ +export interface utility_practice_invites_bool_exp {_and?: (utility_practice_invites_bool_exp[] | null),_not?: (utility_practice_invites_bool_exp | null),_or?: (utility_practice_invites_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),invited_by?: (players_bool_exp | null),invited_by_steam_id?: (bigint_comparison_exp | null),player?: (players_bool_exp | null),session?: (utility_practice_sessions_bool_exp | null),steam_id?: (bigint_comparison_exp | null),utility_practice_session_id?: (uuid_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "utility_practice_invites" */ +export interface utility_practice_invites_inc_input {invited_by_steam_id?: (Scalars['bigint'] | null),steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "utility_practice_invites" */ +export interface utility_practice_invites_insert_input {created_at?: (Scalars['timestamptz'] | null),invited_by?: (players_obj_rel_insert_input | null),invited_by_steam_id?: (Scalars['bigint'] | null),player?: (players_obj_rel_insert_input | null),session?: (utility_practice_sessions_obj_rel_insert_input | null),steam_id?: (Scalars['bigint'] | null),utility_practice_session_id?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface utility_practice_invites_max_fieldsGenqlSelection{ + created_at?: boolean | number + invited_by_steam_id?: boolean | number + steam_id?: boolean | number + utility_practice_session_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "utility_practice_invites" */ +export interface utility_practice_invites_max_order_by {created_at?: (order_by | null),invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null),utility_practice_session_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface utility_practice_invites_min_fieldsGenqlSelection{ + created_at?: boolean | number + invited_by_steam_id?: boolean | number + steam_id?: boolean | number + utility_practice_session_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "utility_practice_invites" */ +export interface utility_practice_invites_min_order_by {created_at?: (order_by | null),invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null),utility_practice_session_id?: (order_by | null)} + + +/** response of any mutation on the table "utility_practice_invites" */ +export interface utility_practice_invites_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: utility_practice_invitesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "utility_practice_invites" */ +export interface utility_practice_invites_on_conflict {constraint: utility_practice_invites_constraint,update_columns?: utility_practice_invites_update_column[],where?: (utility_practice_invites_bool_exp | null)} + + +/** Ordering options when selecting data from "utility_practice_invites". */ +export interface utility_practice_invites_order_by {created_at?: (order_by | null),invited_by?: (players_order_by | null),invited_by_steam_id?: (order_by | null),player?: (players_order_by | null),session?: (utility_practice_sessions_order_by | null),steam_id?: (order_by | null),utility_practice_session_id?: (order_by | null)} + + +/** primary key columns input for table: utility_practice_invites */ +export interface utility_practice_invites_pk_columns_input {steam_id: Scalars['bigint'],utility_practice_session_id: Scalars['uuid']} + + +/** input type for updating data in table "utility_practice_invites" */ +export interface utility_practice_invites_set_input {created_at?: (Scalars['timestamptz'] | null),invited_by_steam_id?: (Scalars['bigint'] | null),steam_id?: (Scalars['bigint'] | null),utility_practice_session_id?: (Scalars['uuid'] | null)} + + +/** aggregate stddev on columns */ +export interface utility_practice_invites_stddev_fieldsGenqlSelection{ + invited_by_steam_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "utility_practice_invites" */ +export interface utility_practice_invites_stddev_order_by {invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface utility_practice_invites_stddev_pop_fieldsGenqlSelection{ + invited_by_steam_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "utility_practice_invites" */ +export interface utility_practice_invites_stddev_pop_order_by {invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface utility_practice_invites_stddev_samp_fieldsGenqlSelection{ + invited_by_steam_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "utility_practice_invites" */ +export interface utility_practice_invites_stddev_samp_order_by {invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "utility_practice_invites" */ +export interface utility_practice_invites_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: utility_practice_invites_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface utility_practice_invites_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),invited_by_steam_id?: (Scalars['bigint'] | null),steam_id?: (Scalars['bigint'] | null),utility_practice_session_id?: (Scalars['uuid'] | null)} + + +/** aggregate sum on columns */ +export interface utility_practice_invites_sum_fieldsGenqlSelection{ + invited_by_steam_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "utility_practice_invites" */ +export interface utility_practice_invites_sum_order_by {invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null)} + +export interface utility_practice_invites_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (utility_practice_invites_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (utility_practice_invites_set_input | null), +/** filter the rows which have to be updated */ +where: utility_practice_invites_bool_exp} + + +/** aggregate var_pop on columns */ +export interface utility_practice_invites_var_pop_fieldsGenqlSelection{ + invited_by_steam_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "utility_practice_invites" */ +export interface utility_practice_invites_var_pop_order_by {invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface utility_practice_invites_var_samp_fieldsGenqlSelection{ + invited_by_steam_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "utility_practice_invites" */ +export interface utility_practice_invites_var_samp_order_by {invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface utility_practice_invites_variance_fieldsGenqlSelection{ + invited_by_steam_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "utility_practice_invites" */ +export interface utility_practice_invites_variance_order_by {invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null)} + + +/** columns and relationships of "utility_practice_sessions" */ +export interface utility_practice_sessionsGenqlSelection{ + access?: boolean | number + /** A computed field, executes function "can_manage_utility_practice_session" */ + can_manage?: boolean | number + /** A computed field, executes function "can_view_utility_practice_session" */ + can_view?: boolean | number + /** An object relationship */ + collection?: utility_collectionsGenqlSelection + collection_id?: boolean | number + /** A computed field, executes function "utility_practice_connection_link" */ + connection_link?: boolean | number + /** A computed field, executes function "utility_practice_connection_string" */ + connection_string?: boolean | number + created_at?: boolean | number + /** An object relationship */ + e_utility_practice_status?: e_utility_practice_statusesGenqlSelection + empty_since?: boolean | number + expires_at?: boolean | number + failure_reason?: boolean | number + first_joined_at?: boolean | number + /** An object relationship */ + host?: playersGenqlSelection + host_steam_id?: boolean | number + id?: boolean | number + invite_code?: boolean | number + /** An array relationship */ + invites?: (utility_practice_invitesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_practice_invites_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_practice_invites_order_by[] | null), + /** filter the rows returned */ + where?: (utility_practice_invites_bool_exp | null)} }) + /** An aggregate relationship */ + invites_aggregate?: (utility_practice_invites_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (utility_practice_invites_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (utility_practice_invites_order_by[] | null), + /** filter the rows returned */ + where?: (utility_practice_invites_bool_exp | null)} }) + /** A computed field, executes function "is_utility_practice_member" */ + is_member?: boolean | number + is_open?: boolean | number + is_render?: boolean | number + last_occupied_at?: boolean | number + map_changing_at?: boolean | number + map_name?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + match_id?: boolean | number + notify_when_ready?: boolean | number + /** An object relationship */ + playbook?: utility_playbooksGenqlSelection + playbook_id?: boolean | number + region?: boolean | number + status?: boolean | number + /** An object relationship */ + team?: teamsGenqlSelection + team_id?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "utility_practice_sessions" */ +export interface utility_practice_sessions_aggregateGenqlSelection{ + aggregate?: utility_practice_sessions_aggregate_fieldsGenqlSelection + nodes?: utility_practice_sessionsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface utility_practice_sessions_aggregate_bool_exp {bool_and?: (utility_practice_sessions_aggregate_bool_exp_bool_and | null),bool_or?: (utility_practice_sessions_aggregate_bool_exp_bool_or | null),count?: (utility_practice_sessions_aggregate_bool_exp_count | null)} + +export interface utility_practice_sessions_aggregate_bool_exp_bool_and {arguments: utility_practice_sessions_select_column_utility_practice_sessions_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_practice_sessions_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface utility_practice_sessions_aggregate_bool_exp_bool_or {arguments: utility_practice_sessions_select_column_utility_practice_sessions_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (utility_practice_sessions_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface utility_practice_sessions_aggregate_bool_exp_count {arguments?: (utility_practice_sessions_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (utility_practice_sessions_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "utility_practice_sessions" */ +export interface utility_practice_sessions_aggregate_fieldsGenqlSelection{ + avg?: utility_practice_sessions_avg_fieldsGenqlSelection + count?: { __args: {columns?: (utility_practice_sessions_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: utility_practice_sessions_max_fieldsGenqlSelection + min?: utility_practice_sessions_min_fieldsGenqlSelection + stddev?: utility_practice_sessions_stddev_fieldsGenqlSelection + stddev_pop?: utility_practice_sessions_stddev_pop_fieldsGenqlSelection + stddev_samp?: utility_practice_sessions_stddev_samp_fieldsGenqlSelection + sum?: utility_practice_sessions_sum_fieldsGenqlSelection + var_pop?: utility_practice_sessions_var_pop_fieldsGenqlSelection + var_samp?: utility_practice_sessions_var_samp_fieldsGenqlSelection + variance?: utility_practice_sessions_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "utility_practice_sessions" */ +export interface utility_practice_sessions_aggregate_order_by {avg?: (utility_practice_sessions_avg_order_by | null),count?: (order_by | null),max?: (utility_practice_sessions_max_order_by | null),min?: (utility_practice_sessions_min_order_by | null),stddev?: (utility_practice_sessions_stddev_order_by | null),stddev_pop?: (utility_practice_sessions_stddev_pop_order_by | null),stddev_samp?: (utility_practice_sessions_stddev_samp_order_by | null),sum?: (utility_practice_sessions_sum_order_by | null),var_pop?: (utility_practice_sessions_var_pop_order_by | null),var_samp?: (utility_practice_sessions_var_samp_order_by | null),variance?: (utility_practice_sessions_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "utility_practice_sessions" */ +export interface utility_practice_sessions_arr_rel_insert_input {data: utility_practice_sessions_insert_input[], +/** upsert condition */ +on_conflict?: (utility_practice_sessions_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface utility_practice_sessions_avg_fieldsGenqlSelection{ + host_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "utility_practice_sessions" */ +export interface utility_practice_sessions_avg_order_by {host_steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "utility_practice_sessions". All fields are combined with a logical 'AND'. */ +export interface utility_practice_sessions_bool_exp {_and?: (utility_practice_sessions_bool_exp[] | null),_not?: (utility_practice_sessions_bool_exp | null),_or?: (utility_practice_sessions_bool_exp[] | null),access?: (e_utility_practice_access_enum_comparison_exp | null),can_manage?: (Boolean_comparison_exp | null),can_view?: (Boolean_comparison_exp | null),collection?: (utility_collections_bool_exp | null),collection_id?: (uuid_comparison_exp | null),connection_link?: (String_comparison_exp | null),connection_string?: (String_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),e_utility_practice_status?: (e_utility_practice_statuses_bool_exp | null),empty_since?: (timestamptz_comparison_exp | null),expires_at?: (timestamptz_comparison_exp | null),failure_reason?: (String_comparison_exp | null),first_joined_at?: (timestamptz_comparison_exp | null),host?: (players_bool_exp | null),host_steam_id?: (bigint_comparison_exp | null),id?: (uuid_comparison_exp | null),invite_code?: (String_comparison_exp | null),invites?: (utility_practice_invites_bool_exp | null),invites_aggregate?: (utility_practice_invites_aggregate_bool_exp | null),is_member?: (Boolean_comparison_exp | null),is_open?: (Boolean_comparison_exp | null),is_render?: (Boolean_comparison_exp | null),last_occupied_at?: (timestamptz_comparison_exp | null),map_changing_at?: (timestamptz_comparison_exp | null),map_name?: (String_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),notify_when_ready?: (Boolean_comparison_exp | null),playbook?: (utility_playbooks_bool_exp | null),playbook_id?: (uuid_comparison_exp | null),region?: (String_comparison_exp | null),status?: (e_utility_practice_statuses_enum_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "utility_practice_sessions" */ +export interface utility_practice_sessions_inc_input {host_steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "utility_practice_sessions" */ +export interface utility_practice_sessions_insert_input {access?: (e_utility_practice_access_enum | null),collection?: (utility_collections_obj_rel_insert_input | null),collection_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),e_utility_practice_status?: (e_utility_practice_statuses_obj_rel_insert_input | null),empty_since?: (Scalars['timestamptz'] | null),expires_at?: (Scalars['timestamptz'] | null),failure_reason?: (Scalars['String'] | null),first_joined_at?: (Scalars['timestamptz'] | null),host?: (players_obj_rel_insert_input | null),host_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),invite_code?: (Scalars['String'] | null),invites?: (utility_practice_invites_arr_rel_insert_input | null),is_open?: (Scalars['Boolean'] | null),is_render?: (Scalars['Boolean'] | null),last_occupied_at?: (Scalars['timestamptz'] | null),map_changing_at?: (Scalars['timestamptz'] | null),map_name?: (Scalars['String'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),notify_when_ready?: (Scalars['Boolean'] | null),playbook?: (utility_playbooks_obj_rel_insert_input | null),playbook_id?: (Scalars['uuid'] | null),region?: (Scalars['String'] | null),status?: (e_utility_practice_statuses_enum | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate max on columns */ +export interface utility_practice_sessions_max_fieldsGenqlSelection{ + collection_id?: boolean | number + /** A computed field, executes function "utility_practice_connection_link" */ + connection_link?: boolean | number + /** A computed field, executes function "utility_practice_connection_string" */ + connection_string?: boolean | number + created_at?: boolean | number + empty_since?: boolean | number + expires_at?: boolean | number + failure_reason?: boolean | number + first_joined_at?: boolean | number + host_steam_id?: boolean | number + id?: boolean | number + invite_code?: boolean | number + last_occupied_at?: boolean | number + map_changing_at?: boolean | number + map_name?: boolean | number + match_id?: boolean | number + playbook_id?: boolean | number + region?: boolean | number + team_id?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "utility_practice_sessions" */ +export interface utility_practice_sessions_max_order_by {collection_id?: (order_by | null),created_at?: (order_by | null),empty_since?: (order_by | null),expires_at?: (order_by | null),failure_reason?: (order_by | null),first_joined_at?: (order_by | null),host_steam_id?: (order_by | null),id?: (order_by | null),invite_code?: (order_by | null),last_occupied_at?: (order_by | null),map_changing_at?: (order_by | null),map_name?: (order_by | null),match_id?: (order_by | null),playbook_id?: (order_by | null),region?: (order_by | null),team_id?: (order_by | null),updated_at?: (order_by | null)} + + +/** aggregate min on columns */ +export interface utility_practice_sessions_min_fieldsGenqlSelection{ + collection_id?: boolean | number + /** A computed field, executes function "utility_practice_connection_link" */ + connection_link?: boolean | number + /** A computed field, executes function "utility_practice_connection_string" */ + connection_string?: boolean | number + created_at?: boolean | number + empty_since?: boolean | number + expires_at?: boolean | number + failure_reason?: boolean | number + first_joined_at?: boolean | number + host_steam_id?: boolean | number + id?: boolean | number + invite_code?: boolean | number + last_occupied_at?: boolean | number + map_changing_at?: boolean | number + map_name?: boolean | number + match_id?: boolean | number + playbook_id?: boolean | number + region?: boolean | number + team_id?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "utility_practice_sessions" */ +export interface utility_practice_sessions_min_order_by {collection_id?: (order_by | null),created_at?: (order_by | null),empty_since?: (order_by | null),expires_at?: (order_by | null),failure_reason?: (order_by | null),first_joined_at?: (order_by | null),host_steam_id?: (order_by | null),id?: (order_by | null),invite_code?: (order_by | null),last_occupied_at?: (order_by | null),map_changing_at?: (order_by | null),map_name?: (order_by | null),match_id?: (order_by | null),playbook_id?: (order_by | null),region?: (order_by | null),team_id?: (order_by | null),updated_at?: (order_by | null)} + + +/** response of any mutation on the table "utility_practice_sessions" */ +export interface utility_practice_sessions_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: utility_practice_sessionsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "utility_practice_sessions" */ +export interface utility_practice_sessions_obj_rel_insert_input {data: utility_practice_sessions_insert_input, +/** upsert condition */ +on_conflict?: (utility_practice_sessions_on_conflict | null)} + + +/** on_conflict condition type for table "utility_practice_sessions" */ +export interface utility_practice_sessions_on_conflict {constraint: utility_practice_sessions_constraint,update_columns?: utility_practice_sessions_update_column[],where?: (utility_practice_sessions_bool_exp | null)} + + +/** Ordering options when selecting data from "utility_practice_sessions". */ +export interface utility_practice_sessions_order_by {access?: (order_by | null),can_manage?: (order_by | null),can_view?: (order_by | null),collection?: (utility_collections_order_by | null),collection_id?: (order_by | null),connection_link?: (order_by | null),connection_string?: (order_by | null),created_at?: (order_by | null),e_utility_practice_status?: (e_utility_practice_statuses_order_by | null),empty_since?: (order_by | null),expires_at?: (order_by | null),failure_reason?: (order_by | null),first_joined_at?: (order_by | null),host?: (players_order_by | null),host_steam_id?: (order_by | null),id?: (order_by | null),invite_code?: (order_by | null),invites_aggregate?: (utility_practice_invites_aggregate_order_by | null),is_member?: (order_by | null),is_open?: (order_by | null),is_render?: (order_by | null),last_occupied_at?: (order_by | null),map_changing_at?: (order_by | null),map_name?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),notify_when_ready?: (order_by | null),playbook?: (utility_playbooks_order_by | null),playbook_id?: (order_by | null),region?: (order_by | null),status?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null),updated_at?: (order_by | null)} + + +/** primary key columns input for table: utility_practice_sessions */ +export interface utility_practice_sessions_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "utility_practice_sessions" */ +export interface utility_practice_sessions_set_input {access?: (e_utility_practice_access_enum | null),collection_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),empty_since?: (Scalars['timestamptz'] | null),expires_at?: (Scalars['timestamptz'] | null),failure_reason?: (Scalars['String'] | null),first_joined_at?: (Scalars['timestamptz'] | null),host_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),invite_code?: (Scalars['String'] | null),is_open?: (Scalars['Boolean'] | null),is_render?: (Scalars['Boolean'] | null),last_occupied_at?: (Scalars['timestamptz'] | null),map_changing_at?: (Scalars['timestamptz'] | null),map_name?: (Scalars['String'] | null),match_id?: (Scalars['uuid'] | null),notify_when_ready?: (Scalars['Boolean'] | null),playbook_id?: (Scalars['uuid'] | null),region?: (Scalars['String'] | null),status?: (e_utility_practice_statuses_enum | null),team_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate stddev on columns */ +export interface utility_practice_sessions_stddev_fieldsGenqlSelection{ + host_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "utility_practice_sessions" */ +export interface utility_practice_sessions_stddev_order_by {host_steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface utility_practice_sessions_stddev_pop_fieldsGenqlSelection{ + host_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "utility_practice_sessions" */ +export interface utility_practice_sessions_stddev_pop_order_by {host_steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface utility_practice_sessions_stddev_samp_fieldsGenqlSelection{ + host_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "utility_practice_sessions" */ +export interface utility_practice_sessions_stddev_samp_order_by {host_steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "utility_practice_sessions" */ +export interface utility_practice_sessions_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: utility_practice_sessions_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface utility_practice_sessions_stream_cursor_value_input {access?: (e_utility_practice_access_enum | null),collection_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),empty_since?: (Scalars['timestamptz'] | null),expires_at?: (Scalars['timestamptz'] | null),failure_reason?: (Scalars['String'] | null),first_joined_at?: (Scalars['timestamptz'] | null),host_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),invite_code?: (Scalars['String'] | null),is_open?: (Scalars['Boolean'] | null),is_render?: (Scalars['Boolean'] | null),last_occupied_at?: (Scalars['timestamptz'] | null),map_changing_at?: (Scalars['timestamptz'] | null),map_name?: (Scalars['String'] | null),match_id?: (Scalars['uuid'] | null),notify_when_ready?: (Scalars['Boolean'] | null),playbook_id?: (Scalars['uuid'] | null),region?: (Scalars['String'] | null),status?: (e_utility_practice_statuses_enum | null),team_id?: (Scalars['uuid'] | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate sum on columns */ +export interface utility_practice_sessions_sum_fieldsGenqlSelection{ + host_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "utility_practice_sessions" */ +export interface utility_practice_sessions_sum_order_by {host_steam_id?: (order_by | null)} + +export interface utility_practice_sessions_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (utility_practice_sessions_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (utility_practice_sessions_set_input | null), +/** filter the rows which have to be updated */ +where: utility_practice_sessions_bool_exp} + + +/** aggregate var_pop on columns */ +export interface utility_practice_sessions_var_pop_fieldsGenqlSelection{ + host_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "utility_practice_sessions" */ +export interface utility_practice_sessions_var_pop_order_by {host_steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface utility_practice_sessions_var_samp_fieldsGenqlSelection{ + host_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "utility_practice_sessions" */ +export interface utility_practice_sessions_var_samp_order_by {host_steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface utility_practice_sessions_variance_fieldsGenqlSelection{ + host_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "utility_practice_sessions" */ +export interface utility_practice_sessions_variance_order_by {host_steam_id?: (order_by | null)} + + +/** Boolean expression to compare columns of type "uuid". All fields are combined with logical 'AND'. */ +export interface uuid_array_comparison_exp { +/** is the array contained in the given array value */ +_contained_in?: (Scalars['uuid'][] | null), +/** does the array contain the given value */ +_contains?: (Scalars['uuid'][] | null),_eq?: (Scalars['uuid'][] | null),_gt?: (Scalars['uuid'][] | null),_gte?: (Scalars['uuid'][] | null),_in?: (Scalars['uuid'][][] | null),_is_null?: (Scalars['Boolean'] | null),_lt?: (Scalars['uuid'][] | null),_lte?: (Scalars['uuid'][] | null),_neq?: (Scalars['uuid'][] | null),_nin?: (Scalars['uuid'][][] | null)} + + +/** Boolean expression to compare columns of type "uuid". All fields are combined with logical 'AND'. */ +export interface uuid_comparison_exp {_eq?: (Scalars['uuid'] | null),_gt?: (Scalars['uuid'] | null),_gte?: (Scalars['uuid'] | null),_in?: (Scalars['uuid'][] | null),_is_null?: (Scalars['Boolean'] | null),_lt?: (Scalars['uuid'] | null),_lte?: (Scalars['uuid'] | null),_neq?: (Scalars['uuid'] | null),_nin?: (Scalars['uuid'][] | null)} + + +/** columns and relationships of "v_event_player_stats" */ +export interface v_event_player_statsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + /** An object relationship */ + event?: eventsGenqlSelection + event_id?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "v_event_player_stats" */ +export interface v_event_player_stats_aggregateGenqlSelection{ + aggregate?: v_event_player_stats_aggregate_fieldsGenqlSelection + nodes?: v_event_player_statsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface v_event_player_stats_aggregate_bool_exp {avg?: (v_event_player_stats_aggregate_bool_exp_avg | null),corr?: (v_event_player_stats_aggregate_bool_exp_corr | null),count?: (v_event_player_stats_aggregate_bool_exp_count | null),covar_samp?: (v_event_player_stats_aggregate_bool_exp_covar_samp | null),max?: (v_event_player_stats_aggregate_bool_exp_max | null),min?: (v_event_player_stats_aggregate_bool_exp_min | null),stddev_samp?: (v_event_player_stats_aggregate_bool_exp_stddev_samp | null),sum?: (v_event_player_stats_aggregate_bool_exp_sum | null),var_samp?: (v_event_player_stats_aggregate_bool_exp_var_samp | null)} + +export interface v_event_player_stats_aggregate_bool_exp_avg {arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_avg_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_event_player_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_event_player_stats_aggregate_bool_exp_corr {arguments: v_event_player_stats_aggregate_bool_exp_corr_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (v_event_player_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_event_player_stats_aggregate_bool_exp_corr_arguments {X: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_corr_arguments_columns,Y: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_corr_arguments_columns} + +export interface v_event_player_stats_aggregate_bool_exp_count {arguments?: (v_event_player_stats_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (v_event_player_stats_bool_exp | null),predicate: Int_comparison_exp} + +export interface v_event_player_stats_aggregate_bool_exp_covar_samp {arguments: v_event_player_stats_aggregate_bool_exp_covar_samp_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (v_event_player_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_event_player_stats_aggregate_bool_exp_covar_samp_arguments {X: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_covar_samp_arguments_columns,Y: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_covar_samp_arguments_columns} + +export interface v_event_player_stats_aggregate_bool_exp_max {arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_max_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_event_player_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_event_player_stats_aggregate_bool_exp_min {arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_min_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_event_player_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_event_player_stats_aggregate_bool_exp_stddev_samp {arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_event_player_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_event_player_stats_aggregate_bool_exp_sum {arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_sum_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_event_player_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_event_player_stats_aggregate_bool_exp_var_samp {arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_var_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_event_player_stats_bool_exp | null),predicate: float8_comparison_exp} + + +/** aggregate fields of "v_event_player_stats" */ +export interface v_event_player_stats_aggregate_fieldsGenqlSelection{ + avg?: v_event_player_stats_avg_fieldsGenqlSelection + count?: { __args: {columns?: (v_event_player_stats_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: v_event_player_stats_max_fieldsGenqlSelection + min?: v_event_player_stats_min_fieldsGenqlSelection + stddev?: v_event_player_stats_stddev_fieldsGenqlSelection + stddev_pop?: v_event_player_stats_stddev_pop_fieldsGenqlSelection + stddev_samp?: v_event_player_stats_stddev_samp_fieldsGenqlSelection + sum?: v_event_player_stats_sum_fieldsGenqlSelection + var_pop?: v_event_player_stats_var_pop_fieldsGenqlSelection + var_samp?: v_event_player_stats_var_samp_fieldsGenqlSelection + variance?: v_event_player_stats_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "v_event_player_stats" */ +export interface v_event_player_stats_aggregate_order_by {avg?: (v_event_player_stats_avg_order_by | null),count?: (order_by | null),max?: (v_event_player_stats_max_order_by | null),min?: (v_event_player_stats_min_order_by | null),stddev?: (v_event_player_stats_stddev_order_by | null),stddev_pop?: (v_event_player_stats_stddev_pop_order_by | null),stddev_samp?: (v_event_player_stats_stddev_samp_order_by | null),sum?: (v_event_player_stats_sum_order_by | null),var_pop?: (v_event_player_stats_var_pop_order_by | null),var_samp?: (v_event_player_stats_var_samp_order_by | null),variance?: (v_event_player_stats_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "v_event_player_stats" */ +export interface v_event_player_stats_arr_rel_insert_input {data: v_event_player_stats_insert_input[]} + + +/** aggregate avg on columns */ +export interface v_event_player_stats_avg_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "v_event_player_stats" */ +export interface v_event_player_stats_avg_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "v_event_player_stats". All fields are combined with a logical 'AND'. */ +export interface v_event_player_stats_bool_exp {_and?: (v_event_player_stats_bool_exp[] | null),_not?: (v_event_player_stats_bool_exp | null),_or?: (v_event_player_stats_bool_exp[] | null),assists?: (Int_comparison_exp | null),deaths?: (Int_comparison_exp | null),event?: (events_bool_exp | null),event_id?: (uuid_comparison_exp | null),headshot_percentage?: (float8_comparison_exp | null),headshots?: (Int_comparison_exp | null),kdr?: (float8_comparison_exp | null),kills?: (Int_comparison_exp | null),matches_played?: (Int_comparison_exp | null),player?: (players_bool_exp | null),player_steam_id?: (bigint_comparison_exp | null)} + + +/** input type for inserting data into table "v_event_player_stats" */ +export interface v_event_player_stats_insert_input {assists?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),event?: (events_obj_rel_insert_input | null),event_id?: (Scalars['uuid'] | null),headshot_percentage?: (Scalars['float8'] | null),headshots?: (Scalars['Int'] | null),kdr?: (Scalars['float8'] | null),kills?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),player?: (players_obj_rel_insert_input | null),player_steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate max on columns */ +export interface v_event_player_stats_max_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + event_id?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "v_event_player_stats" */ +export interface v_event_player_stats_max_order_by {assists?: (order_by | null),deaths?: (order_by | null),event_id?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface v_event_player_stats_min_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + event_id?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "v_event_player_stats" */ +export interface v_event_player_stats_min_order_by {assists?: (order_by | null),deaths?: (order_by | null),event_id?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** Ordering options when selecting data from "v_event_player_stats". */ +export interface v_event_player_stats_order_by {assists?: (order_by | null),deaths?: (order_by | null),event?: (events_order_by | null),event_id?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player?: (players_order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate stddev on columns */ +export interface v_event_player_stats_stddev_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "v_event_player_stats" */ +export interface v_event_player_stats_stddev_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface v_event_player_stats_stddev_pop_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "v_event_player_stats" */ +export interface v_event_player_stats_stddev_pop_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface v_event_player_stats_stddev_samp_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "v_event_player_stats" */ +export interface v_event_player_stats_stddev_samp_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "v_event_player_stats" */ +export interface v_event_player_stats_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: v_event_player_stats_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface v_event_player_stats_stream_cursor_value_input {assists?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),event_id?: (Scalars['uuid'] | null),headshot_percentage?: (Scalars['float8'] | null),headshots?: (Scalars['Int'] | null),kdr?: (Scalars['float8'] | null),kills?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),player_steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate sum on columns */ +export interface v_event_player_stats_sum_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "v_event_player_stats" */ +export interface v_event_player_stats_sum_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate var_pop on columns */ +export interface v_event_player_stats_var_pop_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "v_event_player_stats" */ +export interface v_event_player_stats_var_pop_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface v_event_player_stats_var_samp_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "v_event_player_stats" */ +export interface v_event_player_stats_var_samp_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface v_event_player_stats_variance_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "v_event_player_stats" */ +export interface v_event_player_stats_variance_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** columns and relationships of "v_gpu_pool_status" */ +export interface v_gpu_pool_statusGenqlSelection{ + demo_free_gpu_nodes?: boolean | number + demo_in_progress?: boolean | number + demo_total_gpu_nodes?: boolean | number + free_gpu_nodes?: boolean | number + free_gpu_nodes_for_batch?: boolean | number + highlights_in_progress?: boolean | number + id?: boolean | number + live_in_progress?: boolean | number + registered_gpu_nodes?: boolean | number + rendering_total_gpu_nodes?: boolean | number + renders_paused_for_active_match?: boolean | number + streaming_free_gpu_nodes?: boolean | number + streaming_total_gpu_nodes?: boolean | number + total_gpu_nodes?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "v_gpu_pool_status" */ +export interface v_gpu_pool_status_aggregateGenqlSelection{ + aggregate?: v_gpu_pool_status_aggregate_fieldsGenqlSelection + nodes?: v_gpu_pool_statusGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "v_gpu_pool_status" */ +export interface v_gpu_pool_status_aggregate_fieldsGenqlSelection{ + avg?: v_gpu_pool_status_avg_fieldsGenqlSelection + count?: { __args: {columns?: (v_gpu_pool_status_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: v_gpu_pool_status_max_fieldsGenqlSelection + min?: v_gpu_pool_status_min_fieldsGenqlSelection + stddev?: v_gpu_pool_status_stddev_fieldsGenqlSelection + stddev_pop?: v_gpu_pool_status_stddev_pop_fieldsGenqlSelection + stddev_samp?: v_gpu_pool_status_stddev_samp_fieldsGenqlSelection + sum?: v_gpu_pool_status_sum_fieldsGenqlSelection + var_pop?: v_gpu_pool_status_var_pop_fieldsGenqlSelection + var_samp?: v_gpu_pool_status_var_samp_fieldsGenqlSelection + variance?: v_gpu_pool_status_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface v_gpu_pool_status_avg_fieldsGenqlSelection{ + demo_free_gpu_nodes?: boolean | number + demo_total_gpu_nodes?: boolean | number + free_gpu_nodes?: boolean | number + free_gpu_nodes_for_batch?: boolean | number + id?: boolean | number + registered_gpu_nodes?: boolean | number + rendering_total_gpu_nodes?: boolean | number + streaming_free_gpu_nodes?: boolean | number + streaming_total_gpu_nodes?: boolean | number + total_gpu_nodes?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "v_gpu_pool_status". All fields are combined with a logical 'AND'. */ +export interface v_gpu_pool_status_bool_exp {_and?: (v_gpu_pool_status_bool_exp[] | null),_not?: (v_gpu_pool_status_bool_exp | null),_or?: (v_gpu_pool_status_bool_exp[] | null),demo_free_gpu_nodes?: (Int_comparison_exp | null),demo_in_progress?: (Boolean_comparison_exp | null),demo_total_gpu_nodes?: (Int_comparison_exp | null),free_gpu_nodes?: (Int_comparison_exp | null),free_gpu_nodes_for_batch?: (Int_comparison_exp | null),highlights_in_progress?: (Boolean_comparison_exp | null),id?: (Int_comparison_exp | null),live_in_progress?: (Boolean_comparison_exp | null),registered_gpu_nodes?: (Int_comparison_exp | null),rendering_total_gpu_nodes?: (Int_comparison_exp | null),renders_paused_for_active_match?: (Boolean_comparison_exp | null),streaming_free_gpu_nodes?: (Int_comparison_exp | null),streaming_total_gpu_nodes?: (Int_comparison_exp | null),total_gpu_nodes?: (Int_comparison_exp | null)} + + +/** aggregate max on columns */ +export interface v_gpu_pool_status_max_fieldsGenqlSelection{ + demo_free_gpu_nodes?: boolean | number + demo_total_gpu_nodes?: boolean | number + free_gpu_nodes?: boolean | number + free_gpu_nodes_for_batch?: boolean | number + id?: boolean | number + registered_gpu_nodes?: boolean | number + rendering_total_gpu_nodes?: boolean | number + streaming_free_gpu_nodes?: boolean | number + streaming_total_gpu_nodes?: boolean | number + total_gpu_nodes?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface v_gpu_pool_status_min_fieldsGenqlSelection{ + demo_free_gpu_nodes?: boolean | number + demo_total_gpu_nodes?: boolean | number + free_gpu_nodes?: boolean | number + free_gpu_nodes_for_batch?: boolean | number + id?: boolean | number + registered_gpu_nodes?: boolean | number + rendering_total_gpu_nodes?: boolean | number + streaming_free_gpu_nodes?: boolean | number + streaming_total_gpu_nodes?: boolean | number + total_gpu_nodes?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Ordering options when selecting data from "v_gpu_pool_status". */ +export interface v_gpu_pool_status_order_by {demo_free_gpu_nodes?: (order_by | null),demo_in_progress?: (order_by | null),demo_total_gpu_nodes?: (order_by | null),free_gpu_nodes?: (order_by | null),free_gpu_nodes_for_batch?: (order_by | null),highlights_in_progress?: (order_by | null),id?: (order_by | null),live_in_progress?: (order_by | null),registered_gpu_nodes?: (order_by | null),rendering_total_gpu_nodes?: (order_by | null),renders_paused_for_active_match?: (order_by | null),streaming_free_gpu_nodes?: (order_by | null),streaming_total_gpu_nodes?: (order_by | null),total_gpu_nodes?: (order_by | null)} + + +/** aggregate stddev on columns */ +export interface v_gpu_pool_status_stddev_fieldsGenqlSelection{ + demo_free_gpu_nodes?: boolean | number + demo_total_gpu_nodes?: boolean | number + free_gpu_nodes?: boolean | number + free_gpu_nodes_for_batch?: boolean | number + id?: boolean | number + registered_gpu_nodes?: boolean | number + rendering_total_gpu_nodes?: boolean | number + streaming_free_gpu_nodes?: boolean | number + streaming_total_gpu_nodes?: boolean | number + total_gpu_nodes?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface v_gpu_pool_status_stddev_pop_fieldsGenqlSelection{ + demo_free_gpu_nodes?: boolean | number + demo_total_gpu_nodes?: boolean | number + free_gpu_nodes?: boolean | number + free_gpu_nodes_for_batch?: boolean | number + id?: boolean | number + registered_gpu_nodes?: boolean | number + rendering_total_gpu_nodes?: boolean | number + streaming_free_gpu_nodes?: boolean | number + streaming_total_gpu_nodes?: boolean | number + total_gpu_nodes?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface v_gpu_pool_status_stddev_samp_fieldsGenqlSelection{ + demo_free_gpu_nodes?: boolean | number + demo_total_gpu_nodes?: boolean | number + free_gpu_nodes?: boolean | number + free_gpu_nodes_for_batch?: boolean | number + id?: boolean | number + registered_gpu_nodes?: boolean | number + rendering_total_gpu_nodes?: boolean | number + streaming_free_gpu_nodes?: boolean | number + streaming_total_gpu_nodes?: boolean | number + total_gpu_nodes?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "v_gpu_pool_status" */ +export interface v_gpu_pool_status_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: v_gpu_pool_status_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface v_gpu_pool_status_stream_cursor_value_input {demo_free_gpu_nodes?: (Scalars['Int'] | null),demo_in_progress?: (Scalars['Boolean'] | null),demo_total_gpu_nodes?: (Scalars['Int'] | null),free_gpu_nodes?: (Scalars['Int'] | null),free_gpu_nodes_for_batch?: (Scalars['Int'] | null),highlights_in_progress?: (Scalars['Boolean'] | null),id?: (Scalars['Int'] | null),live_in_progress?: (Scalars['Boolean'] | null),registered_gpu_nodes?: (Scalars['Int'] | null),rendering_total_gpu_nodes?: (Scalars['Int'] | null),renders_paused_for_active_match?: (Scalars['Boolean'] | null),streaming_free_gpu_nodes?: (Scalars['Int'] | null),streaming_total_gpu_nodes?: (Scalars['Int'] | null),total_gpu_nodes?: (Scalars['Int'] | null)} + + +/** aggregate sum on columns */ +export interface v_gpu_pool_status_sum_fieldsGenqlSelection{ + demo_free_gpu_nodes?: boolean | number + demo_total_gpu_nodes?: boolean | number + free_gpu_nodes?: boolean | number + free_gpu_nodes_for_batch?: boolean | number + id?: boolean | number + registered_gpu_nodes?: boolean | number + rendering_total_gpu_nodes?: boolean | number + streaming_free_gpu_nodes?: boolean | number + streaming_total_gpu_nodes?: boolean | number + total_gpu_nodes?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_pop on columns */ +export interface v_gpu_pool_status_var_pop_fieldsGenqlSelection{ + demo_free_gpu_nodes?: boolean | number + demo_total_gpu_nodes?: boolean | number + free_gpu_nodes?: boolean | number + free_gpu_nodes_for_batch?: boolean | number + id?: boolean | number + registered_gpu_nodes?: boolean | number + rendering_total_gpu_nodes?: boolean | number + streaming_free_gpu_nodes?: boolean | number + streaming_total_gpu_nodes?: boolean | number + total_gpu_nodes?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface v_gpu_pool_status_var_samp_fieldsGenqlSelection{ + demo_free_gpu_nodes?: boolean | number + demo_total_gpu_nodes?: boolean | number + free_gpu_nodes?: boolean | number + free_gpu_nodes_for_batch?: boolean | number + id?: boolean | number + registered_gpu_nodes?: boolean | number + rendering_total_gpu_nodes?: boolean | number + streaming_free_gpu_nodes?: boolean | number + streaming_total_gpu_nodes?: boolean | number + total_gpu_nodes?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface v_gpu_pool_status_variance_fieldsGenqlSelection{ + demo_free_gpu_nodes?: boolean | number + demo_total_gpu_nodes?: boolean | number + free_gpu_nodes?: boolean | number + free_gpu_nodes_for_batch?: boolean | number + id?: boolean | number + registered_gpu_nodes?: boolean | number + rendering_total_gpu_nodes?: boolean | number + streaming_free_gpu_nodes?: boolean | number + streaming_total_gpu_nodes?: boolean | number + total_gpu_nodes?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "v_league_division_standings" */ +export interface v_league_division_standingsGenqlSelection{ + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + league_division_id?: boolean | number + league_season_division_id?: boolean | number + league_season_id?: boolean | number + /** An object relationship */ + league_team?: league_teamsGenqlSelection + league_team_id?: boolean | number + league_team_season_id?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + rank?: boolean | number + round_diff?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + /** An object relationship */ + season_division?: league_season_divisionsGenqlSelection + /** An object relationship */ + team_season?: league_team_seasonsGenqlSelection + tournament_team_id?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "v_league_division_standings" */ +export interface v_league_division_standings_aggregateGenqlSelection{ + aggregate?: v_league_division_standings_aggregate_fieldsGenqlSelection + nodes?: v_league_division_standingsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface v_league_division_standings_aggregate_bool_exp {count?: (v_league_division_standings_aggregate_bool_exp_count | null)} + +export interface v_league_division_standings_aggregate_bool_exp_count {arguments?: (v_league_division_standings_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (v_league_division_standings_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "v_league_division_standings" */ +export interface v_league_division_standings_aggregate_fieldsGenqlSelection{ + avg?: v_league_division_standings_avg_fieldsGenqlSelection + count?: { __args: {columns?: (v_league_division_standings_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: v_league_division_standings_max_fieldsGenqlSelection + min?: v_league_division_standings_min_fieldsGenqlSelection + stddev?: v_league_division_standings_stddev_fieldsGenqlSelection + stddev_pop?: v_league_division_standings_stddev_pop_fieldsGenqlSelection + stddev_samp?: v_league_division_standings_stddev_samp_fieldsGenqlSelection + sum?: v_league_division_standings_sum_fieldsGenqlSelection + var_pop?: v_league_division_standings_var_pop_fieldsGenqlSelection + var_samp?: v_league_division_standings_var_samp_fieldsGenqlSelection + variance?: v_league_division_standings_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "v_league_division_standings" */ +export interface v_league_division_standings_aggregate_order_by {avg?: (v_league_division_standings_avg_order_by | null),count?: (order_by | null),max?: (v_league_division_standings_max_order_by | null),min?: (v_league_division_standings_min_order_by | null),stddev?: (v_league_division_standings_stddev_order_by | null),stddev_pop?: (v_league_division_standings_stddev_pop_order_by | null),stddev_samp?: (v_league_division_standings_stddev_samp_order_by | null),sum?: (v_league_division_standings_sum_order_by | null),var_pop?: (v_league_division_standings_var_pop_order_by | null),var_samp?: (v_league_division_standings_var_samp_order_by | null),variance?: (v_league_division_standings_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "v_league_division_standings" */ +export interface v_league_division_standings_arr_rel_insert_input {data: v_league_division_standings_insert_input[]} + + +/** aggregate avg on columns */ +export interface v_league_division_standings_avg_fieldsGenqlSelection{ + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + rank?: boolean | number + round_diff?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "v_league_division_standings" */ +export interface v_league_division_standings_avg_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rank?: (order_by | null),round_diff?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),wins?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "v_league_division_standings". All fields are combined with a logical 'AND'. */ +export interface v_league_division_standings_bool_exp {_and?: (v_league_division_standings_bool_exp[] | null),_not?: (v_league_division_standings_bool_exp | null),_or?: (v_league_division_standings_bool_exp[] | null),head_to_head_match_wins?: (Int_comparison_exp | null),head_to_head_rounds_won?: (Int_comparison_exp | null),league_division_id?: (uuid_comparison_exp | null),league_season_division_id?: (uuid_comparison_exp | null),league_season_id?: (uuid_comparison_exp | null),league_team?: (league_teams_bool_exp | null),league_team_id?: (uuid_comparison_exp | null),league_team_season_id?: (uuid_comparison_exp | null),losses?: (Int_comparison_exp | null),maps_lost?: (Int_comparison_exp | null),maps_won?: (Int_comparison_exp | null),matches_played?: (Int_comparison_exp | null),matches_remaining?: (Int_comparison_exp | null),rank?: (Int_comparison_exp | null),round_diff?: (Int_comparison_exp | null),rounds_lost?: (Int_comparison_exp | null),rounds_won?: (Int_comparison_exp | null),season_division?: (league_season_divisions_bool_exp | null),team_season?: (league_team_seasons_bool_exp | null),tournament_team_id?: (uuid_comparison_exp | null),wins?: (Int_comparison_exp | null)} + + +/** input type for inserting data into table "v_league_division_standings" */ +export interface v_league_division_standings_insert_input {head_to_head_match_wins?: (Scalars['Int'] | null),head_to_head_rounds_won?: (Scalars['Int'] | null),league_division_id?: (Scalars['uuid'] | null),league_season_division_id?: (Scalars['uuid'] | null),league_season_id?: (Scalars['uuid'] | null),league_team?: (league_teams_obj_rel_insert_input | null),league_team_id?: (Scalars['uuid'] | null),league_team_season_id?: (Scalars['uuid'] | null),losses?: (Scalars['Int'] | null),maps_lost?: (Scalars['Int'] | null),maps_won?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),matches_remaining?: (Scalars['Int'] | null),rank?: (Scalars['Int'] | null),round_diff?: (Scalars['Int'] | null),rounds_lost?: (Scalars['Int'] | null),rounds_won?: (Scalars['Int'] | null),season_division?: (league_season_divisions_obj_rel_insert_input | null),team_season?: (league_team_seasons_obj_rel_insert_input | null),tournament_team_id?: (Scalars['uuid'] | null),wins?: (Scalars['Int'] | null)} + + +/** aggregate max on columns */ +export interface v_league_division_standings_max_fieldsGenqlSelection{ + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + league_division_id?: boolean | number + league_season_division_id?: boolean | number + league_season_id?: boolean | number + league_team_id?: boolean | number + league_team_season_id?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + rank?: boolean | number + round_diff?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + tournament_team_id?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "v_league_division_standings" */ +export interface v_league_division_standings_max_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),league_division_id?: (order_by | null),league_season_division_id?: (order_by | null),league_season_id?: (order_by | null),league_team_id?: (order_by | null),league_team_season_id?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rank?: (order_by | null),round_diff?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),tournament_team_id?: (order_by | null),wins?: (order_by | null)} + + +/** aggregate min on columns */ +export interface v_league_division_standings_min_fieldsGenqlSelection{ + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + league_division_id?: boolean | number + league_season_division_id?: boolean | number + league_season_id?: boolean | number + league_team_id?: boolean | number + league_team_season_id?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + rank?: boolean | number + round_diff?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + tournament_team_id?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "v_league_division_standings" */ +export interface v_league_division_standings_min_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),league_division_id?: (order_by | null),league_season_division_id?: (order_by | null),league_season_id?: (order_by | null),league_team_id?: (order_by | null),league_team_season_id?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rank?: (order_by | null),round_diff?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),tournament_team_id?: (order_by | null),wins?: (order_by | null)} + + +/** Ordering options when selecting data from "v_league_division_standings". */ +export interface v_league_division_standings_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),league_division_id?: (order_by | null),league_season_division_id?: (order_by | null),league_season_id?: (order_by | null),league_team?: (league_teams_order_by | null),league_team_id?: (order_by | null),league_team_season_id?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rank?: (order_by | null),round_diff?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),season_division?: (league_season_divisions_order_by | null),team_season?: (league_team_seasons_order_by | null),tournament_team_id?: (order_by | null),wins?: (order_by | null)} + + +/** aggregate stddev on columns */ +export interface v_league_division_standings_stddev_fieldsGenqlSelection{ + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + rank?: boolean | number + round_diff?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "v_league_division_standings" */ +export interface v_league_division_standings_stddev_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rank?: (order_by | null),round_diff?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),wins?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface v_league_division_standings_stddev_pop_fieldsGenqlSelection{ + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + rank?: boolean | number + round_diff?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "v_league_division_standings" */ +export interface v_league_division_standings_stddev_pop_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rank?: (order_by | null),round_diff?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),wins?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface v_league_division_standings_stddev_samp_fieldsGenqlSelection{ + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + rank?: boolean | number + round_diff?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "v_league_division_standings" */ +export interface v_league_division_standings_stddev_samp_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rank?: (order_by | null),round_diff?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),wins?: (order_by | null)} + + +/** Streaming cursor of the table "v_league_division_standings" */ +export interface v_league_division_standings_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: v_league_division_standings_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface v_league_division_standings_stream_cursor_value_input {head_to_head_match_wins?: (Scalars['Int'] | null),head_to_head_rounds_won?: (Scalars['Int'] | null),league_division_id?: (Scalars['uuid'] | null),league_season_division_id?: (Scalars['uuid'] | null),league_season_id?: (Scalars['uuid'] | null),league_team_id?: (Scalars['uuid'] | null),league_team_season_id?: (Scalars['uuid'] | null),losses?: (Scalars['Int'] | null),maps_lost?: (Scalars['Int'] | null),maps_won?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),matches_remaining?: (Scalars['Int'] | null),rank?: (Scalars['Int'] | null),round_diff?: (Scalars['Int'] | null),rounds_lost?: (Scalars['Int'] | null),rounds_won?: (Scalars['Int'] | null),tournament_team_id?: (Scalars['uuid'] | null),wins?: (Scalars['Int'] | null)} + + +/** aggregate sum on columns */ +export interface v_league_division_standings_sum_fieldsGenqlSelection{ + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + rank?: boolean | number + round_diff?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "v_league_division_standings" */ +export interface v_league_division_standings_sum_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rank?: (order_by | null),round_diff?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),wins?: (order_by | null)} + + +/** aggregate var_pop on columns */ +export interface v_league_division_standings_var_pop_fieldsGenqlSelection{ + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + rank?: boolean | number + round_diff?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "v_league_division_standings" */ +export interface v_league_division_standings_var_pop_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rank?: (order_by | null),round_diff?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),wins?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface v_league_division_standings_var_samp_fieldsGenqlSelection{ + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + rank?: boolean | number + round_diff?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "v_league_division_standings" */ +export interface v_league_division_standings_var_samp_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rank?: (order_by | null),round_diff?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),wins?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface v_league_division_standings_variance_fieldsGenqlSelection{ + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + rank?: boolean | number + round_diff?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "v_league_division_standings" */ +export interface v_league_division_standings_variance_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rank?: (order_by | null),round_diff?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),wins?: (order_by | null)} + + +/** columns and relationships of "v_league_season_player_stats" */ +export interface v_league_season_player_statsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + league_division_id?: boolean | number + league_season_division_id?: boolean | number + league_season_id?: boolean | number + /** An object relationship */ + league_team?: league_teamsGenqlSelection + league_team_id?: boolean | number + league_team_season_id?: boolean | number + matches_played?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "v_league_season_player_stats" */ +export interface v_league_season_player_stats_aggregateGenqlSelection{ + aggregate?: v_league_season_player_stats_aggregate_fieldsGenqlSelection + nodes?: v_league_season_player_statsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface v_league_season_player_stats_aggregate_bool_exp {avg?: (v_league_season_player_stats_aggregate_bool_exp_avg | null),corr?: (v_league_season_player_stats_aggregate_bool_exp_corr | null),count?: (v_league_season_player_stats_aggregate_bool_exp_count | null),covar_samp?: (v_league_season_player_stats_aggregate_bool_exp_covar_samp | null),max?: (v_league_season_player_stats_aggregate_bool_exp_max | null),min?: (v_league_season_player_stats_aggregate_bool_exp_min | null),stddev_samp?: (v_league_season_player_stats_aggregate_bool_exp_stddev_samp | null),sum?: (v_league_season_player_stats_aggregate_bool_exp_sum | null),var_samp?: (v_league_season_player_stats_aggregate_bool_exp_var_samp | null)} + +export interface v_league_season_player_stats_aggregate_bool_exp_avg {arguments: v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_avg_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_league_season_player_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_league_season_player_stats_aggregate_bool_exp_corr {arguments: v_league_season_player_stats_aggregate_bool_exp_corr_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (v_league_season_player_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_league_season_player_stats_aggregate_bool_exp_corr_arguments {X: v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_corr_arguments_columns,Y: v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_corr_arguments_columns} + +export interface v_league_season_player_stats_aggregate_bool_exp_count {arguments?: (v_league_season_player_stats_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (v_league_season_player_stats_bool_exp | null),predicate: Int_comparison_exp} + +export interface v_league_season_player_stats_aggregate_bool_exp_covar_samp {arguments: v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (v_league_season_player_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments {X: v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments_columns,Y: v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments_columns} + +export interface v_league_season_player_stats_aggregate_bool_exp_max {arguments: v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_max_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_league_season_player_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_league_season_player_stats_aggregate_bool_exp_min {arguments: v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_min_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_league_season_player_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_league_season_player_stats_aggregate_bool_exp_stddev_samp {arguments: v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_league_season_player_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_league_season_player_stats_aggregate_bool_exp_sum {arguments: v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_sum_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_league_season_player_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_league_season_player_stats_aggregate_bool_exp_var_samp {arguments: v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_var_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_league_season_player_stats_bool_exp | null),predicate: float8_comparison_exp} + + +/** aggregate fields of "v_league_season_player_stats" */ +export interface v_league_season_player_stats_aggregate_fieldsGenqlSelection{ + avg?: v_league_season_player_stats_avg_fieldsGenqlSelection + count?: { __args: {columns?: (v_league_season_player_stats_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: v_league_season_player_stats_max_fieldsGenqlSelection + min?: v_league_season_player_stats_min_fieldsGenqlSelection + stddev?: v_league_season_player_stats_stddev_fieldsGenqlSelection + stddev_pop?: v_league_season_player_stats_stddev_pop_fieldsGenqlSelection + stddev_samp?: v_league_season_player_stats_stddev_samp_fieldsGenqlSelection + sum?: v_league_season_player_stats_sum_fieldsGenqlSelection + var_pop?: v_league_season_player_stats_var_pop_fieldsGenqlSelection + var_samp?: v_league_season_player_stats_var_samp_fieldsGenqlSelection + variance?: v_league_season_player_stats_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "v_league_season_player_stats" */ +export interface v_league_season_player_stats_aggregate_order_by {avg?: (v_league_season_player_stats_avg_order_by | null),count?: (order_by | null),max?: (v_league_season_player_stats_max_order_by | null),min?: (v_league_season_player_stats_min_order_by | null),stddev?: (v_league_season_player_stats_stddev_order_by | null),stddev_pop?: (v_league_season_player_stats_stddev_pop_order_by | null),stddev_samp?: (v_league_season_player_stats_stddev_samp_order_by | null),sum?: (v_league_season_player_stats_sum_order_by | null),var_pop?: (v_league_season_player_stats_var_pop_order_by | null),var_samp?: (v_league_season_player_stats_var_samp_order_by | null),variance?: (v_league_season_player_stats_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "v_league_season_player_stats" */ +export interface v_league_season_player_stats_arr_rel_insert_input {data: v_league_season_player_stats_insert_input[]} + + +/** aggregate avg on columns */ +export interface v_league_season_player_stats_avg_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "v_league_season_player_stats" */ +export interface v_league_season_player_stats_avg_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "v_league_season_player_stats". All fields are combined with a logical 'AND'. */ +export interface v_league_season_player_stats_bool_exp {_and?: (v_league_season_player_stats_bool_exp[] | null),_not?: (v_league_season_player_stats_bool_exp | null),_or?: (v_league_season_player_stats_bool_exp[] | null),assists?: (Int_comparison_exp | null),deaths?: (Int_comparison_exp | null),headshot_percentage?: (float8_comparison_exp | null),headshots?: (Int_comparison_exp | null),kdr?: (float8_comparison_exp | null),kills?: (Int_comparison_exp | null),league_division_id?: (uuid_comparison_exp | null),league_season_division_id?: (uuid_comparison_exp | null),league_season_id?: (uuid_comparison_exp | null),league_team?: (league_teams_bool_exp | null),league_team_id?: (uuid_comparison_exp | null),league_team_season_id?: (uuid_comparison_exp | null),matches_played?: (Int_comparison_exp | null),player?: (players_bool_exp | null),player_steam_id?: (bigint_comparison_exp | null)} + + +/** input type for inserting data into table "v_league_season_player_stats" */ +export interface v_league_season_player_stats_insert_input {assists?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),headshot_percentage?: (Scalars['float8'] | null),headshots?: (Scalars['Int'] | null),kdr?: (Scalars['float8'] | null),kills?: (Scalars['Int'] | null),league_division_id?: (Scalars['uuid'] | null),league_season_division_id?: (Scalars['uuid'] | null),league_season_id?: (Scalars['uuid'] | null),league_team?: (league_teams_obj_rel_insert_input | null),league_team_id?: (Scalars['uuid'] | null),league_team_season_id?: (Scalars['uuid'] | null),matches_played?: (Scalars['Int'] | null),player?: (players_obj_rel_insert_input | null),player_steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate max on columns */ +export interface v_league_season_player_stats_max_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + league_division_id?: boolean | number + league_season_division_id?: boolean | number + league_season_id?: boolean | number + league_team_id?: boolean | number + league_team_season_id?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "v_league_season_player_stats" */ +export interface v_league_season_player_stats_max_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),league_division_id?: (order_by | null),league_season_division_id?: (order_by | null),league_season_id?: (order_by | null),league_team_id?: (order_by | null),league_team_season_id?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface v_league_season_player_stats_min_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + league_division_id?: boolean | number + league_season_division_id?: boolean | number + league_season_id?: boolean | number + league_team_id?: boolean | number + league_team_season_id?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "v_league_season_player_stats" */ +export interface v_league_season_player_stats_min_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),league_division_id?: (order_by | null),league_season_division_id?: (order_by | null),league_season_id?: (order_by | null),league_team_id?: (order_by | null),league_team_season_id?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** Ordering options when selecting data from "v_league_season_player_stats". */ +export interface v_league_season_player_stats_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),league_division_id?: (order_by | null),league_season_division_id?: (order_by | null),league_season_id?: (order_by | null),league_team?: (league_teams_order_by | null),league_team_id?: (order_by | null),league_team_season_id?: (order_by | null),matches_played?: (order_by | null),player?: (players_order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate stddev on columns */ +export interface v_league_season_player_stats_stddev_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "v_league_season_player_stats" */ +export interface v_league_season_player_stats_stddev_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface v_league_season_player_stats_stddev_pop_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "v_league_season_player_stats" */ +export interface v_league_season_player_stats_stddev_pop_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface v_league_season_player_stats_stddev_samp_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "v_league_season_player_stats" */ +export interface v_league_season_player_stats_stddev_samp_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "v_league_season_player_stats" */ +export interface v_league_season_player_stats_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: v_league_season_player_stats_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface v_league_season_player_stats_stream_cursor_value_input {assists?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),headshot_percentage?: (Scalars['float8'] | null),headshots?: (Scalars['Int'] | null),kdr?: (Scalars['float8'] | null),kills?: (Scalars['Int'] | null),league_division_id?: (Scalars['uuid'] | null),league_season_division_id?: (Scalars['uuid'] | null),league_season_id?: (Scalars['uuid'] | null),league_team_id?: (Scalars['uuid'] | null),league_team_season_id?: (Scalars['uuid'] | null),matches_played?: (Scalars['Int'] | null),player_steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate sum on columns */ +export interface v_league_season_player_stats_sum_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "v_league_season_player_stats" */ +export interface v_league_season_player_stats_sum_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate var_pop on columns */ +export interface v_league_season_player_stats_var_pop_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "v_league_season_player_stats" */ +export interface v_league_season_player_stats_var_pop_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface v_league_season_player_stats_var_samp_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "v_league_season_player_stats" */ +export interface v_league_season_player_stats_var_samp_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface v_league_season_player_stats_variance_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "v_league_season_player_stats" */ +export interface v_league_season_player_stats_variance_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** columns and relationships of "v_match_captains" */ +export interface v_match_captainsGenqlSelection{ + captain?: boolean | number + discord_id?: boolean | number + id?: boolean | number + /** An object relationship */ + lineup?: match_lineupsGenqlSelection + match_lineup_id?: boolean | number + placeholder_name?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "v_match_captains" */ +export interface v_match_captains_aggregateGenqlSelection{ + aggregate?: v_match_captains_aggregate_fieldsGenqlSelection + nodes?: v_match_captainsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "v_match_captains" */ +export interface v_match_captains_aggregate_fieldsGenqlSelection{ + avg?: v_match_captains_avg_fieldsGenqlSelection + count?: { __args: {columns?: (v_match_captains_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: v_match_captains_max_fieldsGenqlSelection + min?: v_match_captains_min_fieldsGenqlSelection + stddev?: v_match_captains_stddev_fieldsGenqlSelection + stddev_pop?: v_match_captains_stddev_pop_fieldsGenqlSelection + stddev_samp?: v_match_captains_stddev_samp_fieldsGenqlSelection + sum?: v_match_captains_sum_fieldsGenqlSelection + var_pop?: v_match_captains_var_pop_fieldsGenqlSelection + var_samp?: v_match_captains_var_samp_fieldsGenqlSelection + variance?: v_match_captains_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface v_match_captains_avg_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "v_match_captains". All fields are combined with a logical 'AND'. */ +export interface v_match_captains_bool_exp {_and?: (v_match_captains_bool_exp[] | null),_not?: (v_match_captains_bool_exp | null),_or?: (v_match_captains_bool_exp[] | null),captain?: (Boolean_comparison_exp | null),discord_id?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),lineup?: (match_lineups_bool_exp | null),match_lineup_id?: (uuid_comparison_exp | null),placeholder_name?: (String_comparison_exp | null),player?: (players_bool_exp | null),steam_id?: (bigint_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "v_match_captains" */ +export interface v_match_captains_inc_input {steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "v_match_captains" */ +export interface v_match_captains_insert_input {captain?: (Scalars['Boolean'] | null),discord_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),lineup?: (match_lineups_obj_rel_insert_input | null),match_lineup_id?: (Scalars['uuid'] | null),placeholder_name?: (Scalars['String'] | null),player?: (players_obj_rel_insert_input | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate max on columns */ +export interface v_match_captains_max_fieldsGenqlSelection{ + discord_id?: boolean | number + id?: boolean | number + match_lineup_id?: boolean | number + placeholder_name?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface v_match_captains_min_fieldsGenqlSelection{ + discord_id?: boolean | number + id?: boolean | number + match_lineup_id?: boolean | number + placeholder_name?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "v_match_captains" */ +export interface v_match_captains_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: v_match_captainsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "v_match_captains" */ +export interface v_match_captains_obj_rel_insert_input {data: v_match_captains_insert_input} + + +/** Ordering options when selecting data from "v_match_captains". */ +export interface v_match_captains_order_by {captain?: (order_by | null),discord_id?: (order_by | null),id?: (order_by | null),lineup?: (match_lineups_order_by | null),match_lineup_id?: (order_by | null),placeholder_name?: (order_by | null),player?: (players_order_by | null),steam_id?: (order_by | null)} + + +/** input type for updating data in table "v_match_captains" */ +export interface v_match_captains_set_input {captain?: (Scalars['Boolean'] | null),discord_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),match_lineup_id?: (Scalars['uuid'] | null),placeholder_name?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate stddev on columns */ +export interface v_match_captains_stddev_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface v_match_captains_stddev_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface v_match_captains_stddev_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "v_match_captains" */ +export interface v_match_captains_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: v_match_captains_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface v_match_captains_stream_cursor_value_input {captain?: (Scalars['Boolean'] | null),discord_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),match_lineup_id?: (Scalars['uuid'] | null),placeholder_name?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate sum on columns */ +export interface v_match_captains_sum_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface v_match_captains_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (v_match_captains_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (v_match_captains_set_input | null), +/** filter the rows which have to be updated */ +where: v_match_captains_bool_exp} + + +/** aggregate var_pop on columns */ +export interface v_match_captains_var_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface v_match_captains_var_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface v_match_captains_variance_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "v_match_clutches" */ +export interface v_match_clutchesGenqlSelection{ + against_count?: boolean | number + /** An object relationship */ + clutcher?: playersGenqlSelection + clutcher_steam_id?: boolean | number + kills_in_clutch?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + match_id?: boolean | number + /** An object relationship */ + match_lineup?: match_lineupsGenqlSelection + match_lineup_id?: boolean | number + /** An object relationship */ + match_map?: match_mapsGenqlSelection + match_map_id?: boolean | number + outcome?: boolean | number + round?: boolean | number + side?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "v_match_clutches" */ +export interface v_match_clutches_aggregateGenqlSelection{ + aggregate?: v_match_clutches_aggregate_fieldsGenqlSelection + nodes?: v_match_clutchesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface v_match_clutches_aggregate_bool_exp {count?: (v_match_clutches_aggregate_bool_exp_count | null)} + +export interface v_match_clutches_aggregate_bool_exp_count {arguments?: (v_match_clutches_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (v_match_clutches_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "v_match_clutches" */ +export interface v_match_clutches_aggregate_fieldsGenqlSelection{ + avg?: v_match_clutches_avg_fieldsGenqlSelection + count?: { __args: {columns?: (v_match_clutches_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: v_match_clutches_max_fieldsGenqlSelection + min?: v_match_clutches_min_fieldsGenqlSelection + stddev?: v_match_clutches_stddev_fieldsGenqlSelection + stddev_pop?: v_match_clutches_stddev_pop_fieldsGenqlSelection + stddev_samp?: v_match_clutches_stddev_samp_fieldsGenqlSelection + sum?: v_match_clutches_sum_fieldsGenqlSelection + var_pop?: v_match_clutches_var_pop_fieldsGenqlSelection + var_samp?: v_match_clutches_var_samp_fieldsGenqlSelection + variance?: v_match_clutches_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "v_match_clutches" */ +export interface v_match_clutches_aggregate_order_by {avg?: (v_match_clutches_avg_order_by | null),count?: (order_by | null),max?: (v_match_clutches_max_order_by | null),min?: (v_match_clutches_min_order_by | null),stddev?: (v_match_clutches_stddev_order_by | null),stddev_pop?: (v_match_clutches_stddev_pop_order_by | null),stddev_samp?: (v_match_clutches_stddev_samp_order_by | null),sum?: (v_match_clutches_sum_order_by | null),var_pop?: (v_match_clutches_var_pop_order_by | null),var_samp?: (v_match_clutches_var_samp_order_by | null),variance?: (v_match_clutches_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "v_match_clutches" */ +export interface v_match_clutches_arr_rel_insert_input {data: v_match_clutches_insert_input[]} + + +/** aggregate avg on columns */ +export interface v_match_clutches_avg_fieldsGenqlSelection{ + against_count?: boolean | number + clutcher_steam_id?: boolean | number + kills_in_clutch?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "v_match_clutches" */ +export interface v_match_clutches_avg_order_by {against_count?: (order_by | null),clutcher_steam_id?: (order_by | null),kills_in_clutch?: (order_by | null),round?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "v_match_clutches". All fields are combined with a logical 'AND'. */ +export interface v_match_clutches_bool_exp {_and?: (v_match_clutches_bool_exp[] | null),_not?: (v_match_clutches_bool_exp | null),_or?: (v_match_clutches_bool_exp[] | null),against_count?: (Int_comparison_exp | null),clutcher?: (players_bool_exp | null),clutcher_steam_id?: (bigint_comparison_exp | null),kills_in_clutch?: (Int_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_lineup?: (match_lineups_bool_exp | null),match_lineup_id?: (uuid_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_id?: (uuid_comparison_exp | null),outcome?: (String_comparison_exp | null),round?: (Int_comparison_exp | null),side?: (String_comparison_exp | null)} + + +/** input type for inserting data into table "v_match_clutches" */ +export interface v_match_clutches_insert_input {against_count?: (Scalars['Int'] | null),clutcher?: (players_obj_rel_insert_input | null),clutcher_steam_id?: (Scalars['bigint'] | null),kills_in_clutch?: (Scalars['Int'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_lineup?: (match_lineups_obj_rel_insert_input | null),match_lineup_id?: (Scalars['uuid'] | null),match_map?: (match_maps_obj_rel_insert_input | null),match_map_id?: (Scalars['uuid'] | null),outcome?: (Scalars['String'] | null),round?: (Scalars['Int'] | null),side?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface v_match_clutches_max_fieldsGenqlSelection{ + against_count?: boolean | number + clutcher_steam_id?: boolean | number + kills_in_clutch?: boolean | number + match_id?: boolean | number + match_lineup_id?: boolean | number + match_map_id?: boolean | number + outcome?: boolean | number + round?: boolean | number + side?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "v_match_clutches" */ +export interface v_match_clutches_max_order_by {against_count?: (order_by | null),clutcher_steam_id?: (order_by | null),kills_in_clutch?: (order_by | null),match_id?: (order_by | null),match_lineup_id?: (order_by | null),match_map_id?: (order_by | null),outcome?: (order_by | null),round?: (order_by | null),side?: (order_by | null)} + + +/** aggregate min on columns */ +export interface v_match_clutches_min_fieldsGenqlSelection{ + against_count?: boolean | number + clutcher_steam_id?: boolean | number + kills_in_clutch?: boolean | number + match_id?: boolean | number + match_lineup_id?: boolean | number + match_map_id?: boolean | number + outcome?: boolean | number + round?: boolean | number + side?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "v_match_clutches" */ +export interface v_match_clutches_min_order_by {against_count?: (order_by | null),clutcher_steam_id?: (order_by | null),kills_in_clutch?: (order_by | null),match_id?: (order_by | null),match_lineup_id?: (order_by | null),match_map_id?: (order_by | null),outcome?: (order_by | null),round?: (order_by | null),side?: (order_by | null)} + + +/** Ordering options when selecting data from "v_match_clutches". */ +export interface v_match_clutches_order_by {against_count?: (order_by | null),clutcher?: (players_order_by | null),clutcher_steam_id?: (order_by | null),kills_in_clutch?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_lineup?: (match_lineups_order_by | null),match_lineup_id?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_id?: (order_by | null),outcome?: (order_by | null),round?: (order_by | null),side?: (order_by | null)} + + +/** aggregate stddev on columns */ +export interface v_match_clutches_stddev_fieldsGenqlSelection{ + against_count?: boolean | number + clutcher_steam_id?: boolean | number + kills_in_clutch?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "v_match_clutches" */ +export interface v_match_clutches_stddev_order_by {against_count?: (order_by | null),clutcher_steam_id?: (order_by | null),kills_in_clutch?: (order_by | null),round?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface v_match_clutches_stddev_pop_fieldsGenqlSelection{ + against_count?: boolean | number + clutcher_steam_id?: boolean | number + kills_in_clutch?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "v_match_clutches" */ +export interface v_match_clutches_stddev_pop_order_by {against_count?: (order_by | null),clutcher_steam_id?: (order_by | null),kills_in_clutch?: (order_by | null),round?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface v_match_clutches_stddev_samp_fieldsGenqlSelection{ + against_count?: boolean | number + clutcher_steam_id?: boolean | number + kills_in_clutch?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "v_match_clutches" */ +export interface v_match_clutches_stddev_samp_order_by {against_count?: (order_by | null),clutcher_steam_id?: (order_by | null),kills_in_clutch?: (order_by | null),round?: (order_by | null)} + + +/** Streaming cursor of the table "v_match_clutches" */ +export interface v_match_clutches_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: v_match_clutches_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface v_match_clutches_stream_cursor_value_input {against_count?: (Scalars['Int'] | null),clutcher_steam_id?: (Scalars['bigint'] | null),kills_in_clutch?: (Scalars['Int'] | null),match_id?: (Scalars['uuid'] | null),match_lineup_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),outcome?: (Scalars['String'] | null),round?: (Scalars['Int'] | null),side?: (Scalars['String'] | null)} + + +/** aggregate sum on columns */ +export interface v_match_clutches_sum_fieldsGenqlSelection{ + against_count?: boolean | number + clutcher_steam_id?: boolean | number + kills_in_clutch?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "v_match_clutches" */ +export interface v_match_clutches_sum_order_by {against_count?: (order_by | null),clutcher_steam_id?: (order_by | null),kills_in_clutch?: (order_by | null),round?: (order_by | null)} + + +/** aggregate var_pop on columns */ +export interface v_match_clutches_var_pop_fieldsGenqlSelection{ + against_count?: boolean | number + clutcher_steam_id?: boolean | number + kills_in_clutch?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "v_match_clutches" */ +export interface v_match_clutches_var_pop_order_by {against_count?: (order_by | null),clutcher_steam_id?: (order_by | null),kills_in_clutch?: (order_by | null),round?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface v_match_clutches_var_samp_fieldsGenqlSelection{ + against_count?: boolean | number + clutcher_steam_id?: boolean | number + kills_in_clutch?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "v_match_clutches" */ +export interface v_match_clutches_var_samp_order_by {against_count?: (order_by | null),clutcher_steam_id?: (order_by | null),kills_in_clutch?: (order_by | null),round?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface v_match_clutches_variance_fieldsGenqlSelection{ + against_count?: boolean | number + clutcher_steam_id?: boolean | number + kills_in_clutch?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "v_match_clutches" */ +export interface v_match_clutches_variance_order_by {against_count?: (order_by | null),clutcher_steam_id?: (order_by | null),kills_in_clutch?: (order_by | null),round?: (order_by | null)} + + +/** columns and relationships of "v_match_kill_pairs" */ +export interface v_match_kill_pairsGenqlSelection{ + killer_side?: boolean | number + killer_steam_id?: boolean | number + kills?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + match_id?: boolean | number + /** An object relationship */ + match_map?: match_mapsGenqlSelection + match_map_id?: boolean | number + victim_side?: boolean | number + victim_steam_id?: boolean | number + weapon?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "v_match_kill_pairs" */ +export interface v_match_kill_pairs_aggregateGenqlSelection{ + aggregate?: v_match_kill_pairs_aggregate_fieldsGenqlSelection + nodes?: v_match_kill_pairsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "v_match_kill_pairs" */ +export interface v_match_kill_pairs_aggregate_fieldsGenqlSelection{ + avg?: v_match_kill_pairs_avg_fieldsGenqlSelection + count?: { __args: {columns?: (v_match_kill_pairs_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: v_match_kill_pairs_max_fieldsGenqlSelection + min?: v_match_kill_pairs_min_fieldsGenqlSelection + stddev?: v_match_kill_pairs_stddev_fieldsGenqlSelection + stddev_pop?: v_match_kill_pairs_stddev_pop_fieldsGenqlSelection + stddev_samp?: v_match_kill_pairs_stddev_samp_fieldsGenqlSelection + sum?: v_match_kill_pairs_sum_fieldsGenqlSelection + var_pop?: v_match_kill_pairs_var_pop_fieldsGenqlSelection + var_samp?: v_match_kill_pairs_var_samp_fieldsGenqlSelection + variance?: v_match_kill_pairs_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface v_match_kill_pairs_avg_fieldsGenqlSelection{ + killer_steam_id?: boolean | number + kills?: boolean | number + victim_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "v_match_kill_pairs". All fields are combined with a logical 'AND'. */ +export interface v_match_kill_pairs_bool_exp {_and?: (v_match_kill_pairs_bool_exp[] | null),_not?: (v_match_kill_pairs_bool_exp | null),_or?: (v_match_kill_pairs_bool_exp[] | null),killer_side?: (String_comparison_exp | null),killer_steam_id?: (bigint_comparison_exp | null),kills?: (Int_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_id?: (uuid_comparison_exp | null),victim_side?: (String_comparison_exp | null),victim_steam_id?: (bigint_comparison_exp | null),weapon?: (String_comparison_exp | null)} + + +/** aggregate max on columns */ +export interface v_match_kill_pairs_max_fieldsGenqlSelection{ + killer_side?: boolean | number + killer_steam_id?: boolean | number + kills?: boolean | number + match_id?: boolean | number + match_map_id?: boolean | number + victim_side?: boolean | number + victim_steam_id?: boolean | number + weapon?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface v_match_kill_pairs_min_fieldsGenqlSelection{ + killer_side?: boolean | number + killer_steam_id?: boolean | number + kills?: boolean | number + match_id?: boolean | number + match_map_id?: boolean | number + victim_side?: boolean | number + victim_steam_id?: boolean | number + weapon?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Ordering options when selecting data from "v_match_kill_pairs". */ +export interface v_match_kill_pairs_order_by {killer_side?: (order_by | null),killer_steam_id?: (order_by | null),kills?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_id?: (order_by | null),victim_side?: (order_by | null),victim_steam_id?: (order_by | null),weapon?: (order_by | null)} + + +/** aggregate stddev on columns */ +export interface v_match_kill_pairs_stddev_fieldsGenqlSelection{ + killer_steam_id?: boolean | number + kills?: boolean | number + victim_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface v_match_kill_pairs_stddev_pop_fieldsGenqlSelection{ + killer_steam_id?: boolean | number + kills?: boolean | number + victim_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface v_match_kill_pairs_stddev_samp_fieldsGenqlSelection{ + killer_steam_id?: boolean | number + kills?: boolean | number + victim_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "v_match_kill_pairs" */ +export interface v_match_kill_pairs_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: v_match_kill_pairs_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface v_match_kill_pairs_stream_cursor_value_input {killer_side?: (Scalars['String'] | null),killer_steam_id?: (Scalars['bigint'] | null),kills?: (Scalars['Int'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),victim_side?: (Scalars['String'] | null),victim_steam_id?: (Scalars['bigint'] | null),weapon?: (Scalars['String'] | null)} + + +/** aggregate sum on columns */ +export interface v_match_kill_pairs_sum_fieldsGenqlSelection{ + killer_steam_id?: boolean | number + kills?: boolean | number + victim_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_pop on columns */ +export interface v_match_kill_pairs_var_pop_fieldsGenqlSelection{ + killer_steam_id?: boolean | number + kills?: boolean | number + victim_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface v_match_kill_pairs_var_samp_fieldsGenqlSelection{ + killer_steam_id?: boolean | number + kills?: boolean | number + victim_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface v_match_kill_pairs_variance_fieldsGenqlSelection{ + killer_steam_id?: boolean | number + kills?: boolean | number + victim_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "v_match_lineup_buy_types" */ +export interface v_match_lineup_buy_typesGenqlSelection{ + /** An object relationship */ + match?: matchesGenqlSelection + match_id?: boolean | number + /** An object relationship */ + match_lineup?: match_lineupsGenqlSelection + match_lineup_id?: boolean | number + /** An object relationship */ + match_map?: match_mapsGenqlSelection + match_map_id?: boolean | number + matchup?: boolean | number + rounds?: boolean | number + side?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "v_match_lineup_buy_types" */ +export interface v_match_lineup_buy_types_aggregateGenqlSelection{ + aggregate?: v_match_lineup_buy_types_aggregate_fieldsGenqlSelection + nodes?: v_match_lineup_buy_typesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "v_match_lineup_buy_types" */ +export interface v_match_lineup_buy_types_aggregate_fieldsGenqlSelection{ + avg?: v_match_lineup_buy_types_avg_fieldsGenqlSelection + count?: { __args: {columns?: (v_match_lineup_buy_types_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: v_match_lineup_buy_types_max_fieldsGenqlSelection + min?: v_match_lineup_buy_types_min_fieldsGenqlSelection + stddev?: v_match_lineup_buy_types_stddev_fieldsGenqlSelection + stddev_pop?: v_match_lineup_buy_types_stddev_pop_fieldsGenqlSelection + stddev_samp?: v_match_lineup_buy_types_stddev_samp_fieldsGenqlSelection + sum?: v_match_lineup_buy_types_sum_fieldsGenqlSelection + var_pop?: v_match_lineup_buy_types_var_pop_fieldsGenqlSelection + var_samp?: v_match_lineup_buy_types_var_samp_fieldsGenqlSelection + variance?: v_match_lineup_buy_types_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface v_match_lineup_buy_types_avg_fieldsGenqlSelection{ + rounds?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "v_match_lineup_buy_types". All fields are combined with a logical 'AND'. */ +export interface v_match_lineup_buy_types_bool_exp {_and?: (v_match_lineup_buy_types_bool_exp[] | null),_not?: (v_match_lineup_buy_types_bool_exp | null),_or?: (v_match_lineup_buy_types_bool_exp[] | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_lineup?: (match_lineups_bool_exp | null),match_lineup_id?: (uuid_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_id?: (uuid_comparison_exp | null),matchup?: (String_comparison_exp | null),rounds?: (Int_comparison_exp | null),side?: (String_comparison_exp | null),wins?: (Int_comparison_exp | null)} + + +/** aggregate max on columns */ +export interface v_match_lineup_buy_types_max_fieldsGenqlSelection{ + match_id?: boolean | number + match_lineup_id?: boolean | number + match_map_id?: boolean | number + matchup?: boolean | number + rounds?: boolean | number + side?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface v_match_lineup_buy_types_min_fieldsGenqlSelection{ + match_id?: boolean | number + match_lineup_id?: boolean | number + match_map_id?: boolean | number + matchup?: boolean | number + rounds?: boolean | number + side?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Ordering options when selecting data from "v_match_lineup_buy_types". */ +export interface v_match_lineup_buy_types_order_by {match?: (matches_order_by | null),match_id?: (order_by | null),match_lineup?: (match_lineups_order_by | null),match_lineup_id?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_id?: (order_by | null),matchup?: (order_by | null),rounds?: (order_by | null),side?: (order_by | null),wins?: (order_by | null)} + + +/** aggregate stddev on columns */ +export interface v_match_lineup_buy_types_stddev_fieldsGenqlSelection{ + rounds?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface v_match_lineup_buy_types_stddev_pop_fieldsGenqlSelection{ + rounds?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface v_match_lineup_buy_types_stddev_samp_fieldsGenqlSelection{ + rounds?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "v_match_lineup_buy_types" */ +export interface v_match_lineup_buy_types_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: v_match_lineup_buy_types_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface v_match_lineup_buy_types_stream_cursor_value_input {match_id?: (Scalars['uuid'] | null),match_lineup_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),matchup?: (Scalars['String'] | null),rounds?: (Scalars['Int'] | null),side?: (Scalars['String'] | null),wins?: (Scalars['Int'] | null)} + + +/** aggregate sum on columns */ +export interface v_match_lineup_buy_types_sum_fieldsGenqlSelection{ + rounds?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_pop on columns */ +export interface v_match_lineup_buy_types_var_pop_fieldsGenqlSelection{ + rounds?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface v_match_lineup_buy_types_var_samp_fieldsGenqlSelection{ + rounds?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface v_match_lineup_buy_types_variance_fieldsGenqlSelection{ + rounds?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "v_match_lineup_map_stats" */ +export interface v_match_lineup_map_statsGenqlSelection{ + man_adv_rounds?: boolean | number + man_adv_wins?: boolean | number + man_dis_rounds?: boolean | number + man_dis_wins?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + match_id?: boolean | number + /** An object relationship */ + match_lineup?: match_lineupsGenqlSelection + match_lineup_id?: boolean | number + /** An object relationship */ + match_map?: match_mapsGenqlSelection + match_map_id?: boolean | number + opening_attempts?: boolean | number + opening_wins?: boolean | number + pistol_rounds?: boolean | number + pistol_wins?: boolean | number + round_wins?: boolean | number + rounds?: boolean | number + side?: boolean | number + won_buy_eco?: boolean | number + won_buy_force?: boolean | number + won_buy_full?: boolean | number + won_buy_pistol?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "v_match_lineup_map_stats" */ +export interface v_match_lineup_map_stats_aggregateGenqlSelection{ + aggregate?: v_match_lineup_map_stats_aggregate_fieldsGenqlSelection + nodes?: v_match_lineup_map_statsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "v_match_lineup_map_stats" */ +export interface v_match_lineup_map_stats_aggregate_fieldsGenqlSelection{ + avg?: v_match_lineup_map_stats_avg_fieldsGenqlSelection + count?: { __args: {columns?: (v_match_lineup_map_stats_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: v_match_lineup_map_stats_max_fieldsGenqlSelection + min?: v_match_lineup_map_stats_min_fieldsGenqlSelection + stddev?: v_match_lineup_map_stats_stddev_fieldsGenqlSelection + stddev_pop?: v_match_lineup_map_stats_stddev_pop_fieldsGenqlSelection + stddev_samp?: v_match_lineup_map_stats_stddev_samp_fieldsGenqlSelection + sum?: v_match_lineup_map_stats_sum_fieldsGenqlSelection + var_pop?: v_match_lineup_map_stats_var_pop_fieldsGenqlSelection + var_samp?: v_match_lineup_map_stats_var_samp_fieldsGenqlSelection + variance?: v_match_lineup_map_stats_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface v_match_lineup_map_stats_avg_fieldsGenqlSelection{ + man_adv_rounds?: boolean | number + man_adv_wins?: boolean | number + man_dis_rounds?: boolean | number + man_dis_wins?: boolean | number + opening_attempts?: boolean | number + opening_wins?: boolean | number + pistol_rounds?: boolean | number + pistol_wins?: boolean | number + round_wins?: boolean | number + rounds?: boolean | number + won_buy_eco?: boolean | number + won_buy_force?: boolean | number + won_buy_full?: boolean | number + won_buy_pistol?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "v_match_lineup_map_stats". All fields are combined with a logical 'AND'. */ +export interface v_match_lineup_map_stats_bool_exp {_and?: (v_match_lineup_map_stats_bool_exp[] | null),_not?: (v_match_lineup_map_stats_bool_exp | null),_or?: (v_match_lineup_map_stats_bool_exp[] | null),man_adv_rounds?: (Int_comparison_exp | null),man_adv_wins?: (Int_comparison_exp | null),man_dis_rounds?: (Int_comparison_exp | null),man_dis_wins?: (Int_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_lineup?: (match_lineups_bool_exp | null),match_lineup_id?: (uuid_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_id?: (uuid_comparison_exp | null),opening_attempts?: (Int_comparison_exp | null),opening_wins?: (Int_comparison_exp | null),pistol_rounds?: (Int_comparison_exp | null),pistol_wins?: (Int_comparison_exp | null),round_wins?: (Int_comparison_exp | null),rounds?: (Int_comparison_exp | null),side?: (String_comparison_exp | null),won_buy_eco?: (Int_comparison_exp | null),won_buy_force?: (Int_comparison_exp | null),won_buy_full?: (Int_comparison_exp | null),won_buy_pistol?: (Int_comparison_exp | null)} + + +/** aggregate max on columns */ +export interface v_match_lineup_map_stats_max_fieldsGenqlSelection{ + man_adv_rounds?: boolean | number + man_adv_wins?: boolean | number + man_dis_rounds?: boolean | number + man_dis_wins?: boolean | number + match_id?: boolean | number + match_lineup_id?: boolean | number + match_map_id?: boolean | number + opening_attempts?: boolean | number + opening_wins?: boolean | number + pistol_rounds?: boolean | number + pistol_wins?: boolean | number + round_wins?: boolean | number + rounds?: boolean | number + side?: boolean | number + won_buy_eco?: boolean | number + won_buy_force?: boolean | number + won_buy_full?: boolean | number + won_buy_pistol?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface v_match_lineup_map_stats_min_fieldsGenqlSelection{ + man_adv_rounds?: boolean | number + man_adv_wins?: boolean | number + man_dis_rounds?: boolean | number + man_dis_wins?: boolean | number + match_id?: boolean | number + match_lineup_id?: boolean | number + match_map_id?: boolean | number + opening_attempts?: boolean | number + opening_wins?: boolean | number + pistol_rounds?: boolean | number + pistol_wins?: boolean | number + round_wins?: boolean | number + rounds?: boolean | number + side?: boolean | number + won_buy_eco?: boolean | number + won_buy_force?: boolean | number + won_buy_full?: boolean | number + won_buy_pistol?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Ordering options when selecting data from "v_match_lineup_map_stats". */ +export interface v_match_lineup_map_stats_order_by {man_adv_rounds?: (order_by | null),man_adv_wins?: (order_by | null),man_dis_rounds?: (order_by | null),man_dis_wins?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_lineup?: (match_lineups_order_by | null),match_lineup_id?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_id?: (order_by | null),opening_attempts?: (order_by | null),opening_wins?: (order_by | null),pistol_rounds?: (order_by | null),pistol_wins?: (order_by | null),round_wins?: (order_by | null),rounds?: (order_by | null),side?: (order_by | null),won_buy_eco?: (order_by | null),won_buy_force?: (order_by | null),won_buy_full?: (order_by | null),won_buy_pistol?: (order_by | null)} + + +/** aggregate stddev on columns */ +export interface v_match_lineup_map_stats_stddev_fieldsGenqlSelection{ + man_adv_rounds?: boolean | number + man_adv_wins?: boolean | number + man_dis_rounds?: boolean | number + man_dis_wins?: boolean | number + opening_attempts?: boolean | number + opening_wins?: boolean | number + pistol_rounds?: boolean | number + pistol_wins?: boolean | number + round_wins?: boolean | number + rounds?: boolean | number + won_buy_eco?: boolean | number + won_buy_force?: boolean | number + won_buy_full?: boolean | number + won_buy_pistol?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface v_match_lineup_map_stats_stddev_pop_fieldsGenqlSelection{ + man_adv_rounds?: boolean | number + man_adv_wins?: boolean | number + man_dis_rounds?: boolean | number + man_dis_wins?: boolean | number + opening_attempts?: boolean | number + opening_wins?: boolean | number + pistol_rounds?: boolean | number + pistol_wins?: boolean | number + round_wins?: boolean | number + rounds?: boolean | number + won_buy_eco?: boolean | number + won_buy_force?: boolean | number + won_buy_full?: boolean | number + won_buy_pistol?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface v_match_lineup_map_stats_stddev_samp_fieldsGenqlSelection{ + man_adv_rounds?: boolean | number + man_adv_wins?: boolean | number + man_dis_rounds?: boolean | number + man_dis_wins?: boolean | number + opening_attempts?: boolean | number + opening_wins?: boolean | number + pistol_rounds?: boolean | number + pistol_wins?: boolean | number + round_wins?: boolean | number + rounds?: boolean | number + won_buy_eco?: boolean | number + won_buy_force?: boolean | number + won_buy_full?: boolean | number + won_buy_pistol?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "v_match_lineup_map_stats" */ +export interface v_match_lineup_map_stats_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: v_match_lineup_map_stats_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface v_match_lineup_map_stats_stream_cursor_value_input {man_adv_rounds?: (Scalars['Int'] | null),man_adv_wins?: (Scalars['Int'] | null),man_dis_rounds?: (Scalars['Int'] | null),man_dis_wins?: (Scalars['Int'] | null),match_id?: (Scalars['uuid'] | null),match_lineup_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),opening_attempts?: (Scalars['Int'] | null),opening_wins?: (Scalars['Int'] | null),pistol_rounds?: (Scalars['Int'] | null),pistol_wins?: (Scalars['Int'] | null),round_wins?: (Scalars['Int'] | null),rounds?: (Scalars['Int'] | null),side?: (Scalars['String'] | null),won_buy_eco?: (Scalars['Int'] | null),won_buy_force?: (Scalars['Int'] | null),won_buy_full?: (Scalars['Int'] | null),won_buy_pistol?: (Scalars['Int'] | null)} + + +/** aggregate sum on columns */ +export interface v_match_lineup_map_stats_sum_fieldsGenqlSelection{ + man_adv_rounds?: boolean | number + man_adv_wins?: boolean | number + man_dis_rounds?: boolean | number + man_dis_wins?: boolean | number + opening_attempts?: boolean | number + opening_wins?: boolean | number + pistol_rounds?: boolean | number + pistol_wins?: boolean | number + round_wins?: boolean | number + rounds?: boolean | number + won_buy_eco?: boolean | number + won_buy_force?: boolean | number + won_buy_full?: boolean | number + won_buy_pistol?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_pop on columns */ +export interface v_match_lineup_map_stats_var_pop_fieldsGenqlSelection{ + man_adv_rounds?: boolean | number + man_adv_wins?: boolean | number + man_dis_rounds?: boolean | number + man_dis_wins?: boolean | number + opening_attempts?: boolean | number + opening_wins?: boolean | number + pistol_rounds?: boolean | number + pistol_wins?: boolean | number + round_wins?: boolean | number + rounds?: boolean | number + won_buy_eco?: boolean | number + won_buy_force?: boolean | number + won_buy_full?: boolean | number + won_buy_pistol?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface v_match_lineup_map_stats_var_samp_fieldsGenqlSelection{ + man_adv_rounds?: boolean | number + man_adv_wins?: boolean | number + man_dis_rounds?: boolean | number + man_dis_wins?: boolean | number + opening_attempts?: boolean | number + opening_wins?: boolean | number + pistol_rounds?: boolean | number + pistol_wins?: boolean | number + round_wins?: boolean | number + rounds?: boolean | number + won_buy_eco?: boolean | number + won_buy_force?: boolean | number + won_buy_full?: boolean | number + won_buy_pistol?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface v_match_lineup_map_stats_variance_fieldsGenqlSelection{ + man_adv_rounds?: boolean | number + man_adv_wins?: boolean | number + man_dis_rounds?: boolean | number + man_dis_wins?: boolean | number + opening_attempts?: boolean | number + opening_wins?: boolean | number + pistol_rounds?: boolean | number + pistol_wins?: boolean | number + round_wins?: boolean | number + rounds?: boolean | number + won_buy_eco?: boolean | number + won_buy_force?: boolean | number + won_buy_full?: boolean | number + won_buy_pistol?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "v_match_map_backup_rounds" */ +export interface v_match_map_backup_roundsGenqlSelection{ + has_backup_file?: boolean | number + match_map_id?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "v_match_map_backup_rounds" */ +export interface v_match_map_backup_rounds_aggregateGenqlSelection{ + aggregate?: v_match_map_backup_rounds_aggregate_fieldsGenqlSelection + nodes?: v_match_map_backup_roundsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "v_match_map_backup_rounds" */ +export interface v_match_map_backup_rounds_aggregate_fieldsGenqlSelection{ + avg?: v_match_map_backup_rounds_avg_fieldsGenqlSelection + count?: { __args: {columns?: (v_match_map_backup_rounds_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: v_match_map_backup_rounds_max_fieldsGenqlSelection + min?: v_match_map_backup_rounds_min_fieldsGenqlSelection + stddev?: v_match_map_backup_rounds_stddev_fieldsGenqlSelection + stddev_pop?: v_match_map_backup_rounds_stddev_pop_fieldsGenqlSelection + stddev_samp?: v_match_map_backup_rounds_stddev_samp_fieldsGenqlSelection + sum?: v_match_map_backup_rounds_sum_fieldsGenqlSelection + var_pop?: v_match_map_backup_rounds_var_pop_fieldsGenqlSelection + var_samp?: v_match_map_backup_rounds_var_samp_fieldsGenqlSelection + variance?: v_match_map_backup_rounds_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface v_match_map_backup_rounds_avg_fieldsGenqlSelection{ + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "v_match_map_backup_rounds". All fields are combined with a logical 'AND'. */ +export interface v_match_map_backup_rounds_bool_exp {_and?: (v_match_map_backup_rounds_bool_exp[] | null),_not?: (v_match_map_backup_rounds_bool_exp | null),_or?: (v_match_map_backup_rounds_bool_exp[] | null),has_backup_file?: (Boolean_comparison_exp | null),match_map_id?: (uuid_comparison_exp | null),round?: (Int_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "v_match_map_backup_rounds" */ +export interface v_match_map_backup_rounds_inc_input {round?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "v_match_map_backup_rounds" */ +export interface v_match_map_backup_rounds_insert_input {has_backup_file?: (Scalars['Boolean'] | null),match_map_id?: (Scalars['uuid'] | null),round?: (Scalars['Int'] | null)} + + +/** aggregate max on columns */ +export interface v_match_map_backup_rounds_max_fieldsGenqlSelection{ + match_map_id?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface v_match_map_backup_rounds_min_fieldsGenqlSelection{ + match_map_id?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "v_match_map_backup_rounds" */ +export interface v_match_map_backup_rounds_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: v_match_map_backup_roundsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Ordering options when selecting data from "v_match_map_backup_rounds". */ +export interface v_match_map_backup_rounds_order_by {has_backup_file?: (order_by | null),match_map_id?: (order_by | null),round?: (order_by | null)} + + +/** input type for updating data in table "v_match_map_backup_rounds" */ +export interface v_match_map_backup_rounds_set_input {has_backup_file?: (Scalars['Boolean'] | null),match_map_id?: (Scalars['uuid'] | null),round?: (Scalars['Int'] | null)} + + +/** aggregate stddev on columns */ +export interface v_match_map_backup_rounds_stddev_fieldsGenqlSelection{ + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface v_match_map_backup_rounds_stddev_pop_fieldsGenqlSelection{ + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface v_match_map_backup_rounds_stddev_samp_fieldsGenqlSelection{ + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "v_match_map_backup_rounds" */ +export interface v_match_map_backup_rounds_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: v_match_map_backup_rounds_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface v_match_map_backup_rounds_stream_cursor_value_input {has_backup_file?: (Scalars['Boolean'] | null),match_map_id?: (Scalars['uuid'] | null),round?: (Scalars['Int'] | null)} + + +/** aggregate sum on columns */ +export interface v_match_map_backup_rounds_sum_fieldsGenqlSelection{ + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface v_match_map_backup_rounds_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (v_match_map_backup_rounds_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (v_match_map_backup_rounds_set_input | null), +/** filter the rows which have to be updated */ +where: v_match_map_backup_rounds_bool_exp} + + +/** aggregate var_pop on columns */ +export interface v_match_map_backup_rounds_var_pop_fieldsGenqlSelection{ + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface v_match_map_backup_rounds_var_samp_fieldsGenqlSelection{ + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface v_match_map_backup_rounds_variance_fieldsGenqlSelection{ + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "v_match_player_buy_types" */ +export interface v_match_player_buy_typesGenqlSelection{ + deaths?: boolean | number + kills?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + match_id?: boolean | number + /** An object relationship */ + match_lineup?: match_lineupsGenqlSelection + match_lineup_id?: boolean | number + /** An object relationship */ + match_map?: match_mapsGenqlSelection + match_map_id?: boolean | number + matchup?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + rounds?: boolean | number + side?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "v_match_player_buy_types" */ +export interface v_match_player_buy_types_aggregateGenqlSelection{ + aggregate?: v_match_player_buy_types_aggregate_fieldsGenqlSelection + nodes?: v_match_player_buy_typesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "v_match_player_buy_types" */ +export interface v_match_player_buy_types_aggregate_fieldsGenqlSelection{ + avg?: v_match_player_buy_types_avg_fieldsGenqlSelection + count?: { __args: {columns?: (v_match_player_buy_types_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: v_match_player_buy_types_max_fieldsGenqlSelection + min?: v_match_player_buy_types_min_fieldsGenqlSelection + stddev?: v_match_player_buy_types_stddev_fieldsGenqlSelection + stddev_pop?: v_match_player_buy_types_stddev_pop_fieldsGenqlSelection + stddev_samp?: v_match_player_buy_types_stddev_samp_fieldsGenqlSelection + sum?: v_match_player_buy_types_sum_fieldsGenqlSelection + var_pop?: v_match_player_buy_types_var_pop_fieldsGenqlSelection + var_samp?: v_match_player_buy_types_var_samp_fieldsGenqlSelection + variance?: v_match_player_buy_types_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface v_match_player_buy_types_avg_fieldsGenqlSelection{ + deaths?: boolean | number + kills?: boolean | number + rounds?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "v_match_player_buy_types". All fields are combined with a logical 'AND'. */ +export interface v_match_player_buy_types_bool_exp {_and?: (v_match_player_buy_types_bool_exp[] | null),_not?: (v_match_player_buy_types_bool_exp | null),_or?: (v_match_player_buy_types_bool_exp[] | null),deaths?: (Int_comparison_exp | null),kills?: (Int_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_lineup?: (match_lineups_bool_exp | null),match_lineup_id?: (uuid_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_id?: (uuid_comparison_exp | null),matchup?: (String_comparison_exp | null),player?: (players_bool_exp | null),rounds?: (Int_comparison_exp | null),side?: (String_comparison_exp | null),steam_id?: (bigint_comparison_exp | null)} + + +/** aggregate max on columns */ +export interface v_match_player_buy_types_max_fieldsGenqlSelection{ + deaths?: boolean | number + kills?: boolean | number + match_id?: boolean | number + match_lineup_id?: boolean | number + match_map_id?: boolean | number + matchup?: boolean | number + rounds?: boolean | number + side?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface v_match_player_buy_types_min_fieldsGenqlSelection{ + deaths?: boolean | number + kills?: boolean | number + match_id?: boolean | number + match_lineup_id?: boolean | number + match_map_id?: boolean | number + matchup?: boolean | number + rounds?: boolean | number + side?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Ordering options when selecting data from "v_match_player_buy_types". */ +export interface v_match_player_buy_types_order_by {deaths?: (order_by | null),kills?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_lineup?: (match_lineups_order_by | null),match_lineup_id?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_id?: (order_by | null),matchup?: (order_by | null),player?: (players_order_by | null),rounds?: (order_by | null),side?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate stddev on columns */ +export interface v_match_player_buy_types_stddev_fieldsGenqlSelection{ + deaths?: boolean | number + kills?: boolean | number + rounds?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface v_match_player_buy_types_stddev_pop_fieldsGenqlSelection{ + deaths?: boolean | number + kills?: boolean | number + rounds?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface v_match_player_buy_types_stddev_samp_fieldsGenqlSelection{ + deaths?: boolean | number + kills?: boolean | number + rounds?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "v_match_player_buy_types" */ +export interface v_match_player_buy_types_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: v_match_player_buy_types_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface v_match_player_buy_types_stream_cursor_value_input {deaths?: (Scalars['Int'] | null),kills?: (Scalars['Int'] | null),match_id?: (Scalars['uuid'] | null),match_lineup_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),matchup?: (Scalars['String'] | null),rounds?: (Scalars['Int'] | null),side?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate sum on columns */ +export interface v_match_player_buy_types_sum_fieldsGenqlSelection{ + deaths?: boolean | number + kills?: boolean | number + rounds?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_pop on columns */ +export interface v_match_player_buy_types_var_pop_fieldsGenqlSelection{ + deaths?: boolean | number + kills?: boolean | number + rounds?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface v_match_player_buy_types_var_samp_fieldsGenqlSelection{ + deaths?: boolean | number + kills?: boolean | number + rounds?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface v_match_player_buy_types_variance_fieldsGenqlSelection{ + deaths?: boolean | number + kills?: boolean | number + rounds?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "v_match_player_opening_duels" */ +export interface v_match_player_opening_duelsGenqlSelection{ + attempts?: boolean | number + deaths?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + match_id?: boolean | number + /** An object relationship */ + match_lineup?: match_lineupsGenqlSelection + match_lineup_id?: boolean | number + /** An object relationship */ + match_map?: match_mapsGenqlSelection + match_map_id?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + side?: boolean | number + steam_id?: boolean | number + traded_deaths?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "v_match_player_opening_duels" */ +export interface v_match_player_opening_duels_aggregateGenqlSelection{ + aggregate?: v_match_player_opening_duels_aggregate_fieldsGenqlSelection + nodes?: v_match_player_opening_duelsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface v_match_player_opening_duels_aggregate_bool_exp {count?: (v_match_player_opening_duels_aggregate_bool_exp_count | null)} + +export interface v_match_player_opening_duels_aggregate_bool_exp_count {arguments?: (v_match_player_opening_duels_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (v_match_player_opening_duels_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "v_match_player_opening_duels" */ +export interface v_match_player_opening_duels_aggregate_fieldsGenqlSelection{ + avg?: v_match_player_opening_duels_avg_fieldsGenqlSelection + count?: { __args: {columns?: (v_match_player_opening_duels_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: v_match_player_opening_duels_max_fieldsGenqlSelection + min?: v_match_player_opening_duels_min_fieldsGenqlSelection + stddev?: v_match_player_opening_duels_stddev_fieldsGenqlSelection + stddev_pop?: v_match_player_opening_duels_stddev_pop_fieldsGenqlSelection + stddev_samp?: v_match_player_opening_duels_stddev_samp_fieldsGenqlSelection + sum?: v_match_player_opening_duels_sum_fieldsGenqlSelection + var_pop?: v_match_player_opening_duels_var_pop_fieldsGenqlSelection + var_samp?: v_match_player_opening_duels_var_samp_fieldsGenqlSelection + variance?: v_match_player_opening_duels_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "v_match_player_opening_duels" */ +export interface v_match_player_opening_duels_aggregate_order_by {avg?: (v_match_player_opening_duels_avg_order_by | null),count?: (order_by | null),max?: (v_match_player_opening_duels_max_order_by | null),min?: (v_match_player_opening_duels_min_order_by | null),stddev?: (v_match_player_opening_duels_stddev_order_by | null),stddev_pop?: (v_match_player_opening_duels_stddev_pop_order_by | null),stddev_samp?: (v_match_player_opening_duels_stddev_samp_order_by | null),sum?: (v_match_player_opening_duels_sum_order_by | null),var_pop?: (v_match_player_opening_duels_var_pop_order_by | null),var_samp?: (v_match_player_opening_duels_var_samp_order_by | null),variance?: (v_match_player_opening_duels_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "v_match_player_opening_duels" */ +export interface v_match_player_opening_duels_arr_rel_insert_input {data: v_match_player_opening_duels_insert_input[]} + + +/** aggregate avg on columns */ +export interface v_match_player_opening_duels_avg_fieldsGenqlSelection{ + attempts?: boolean | number + deaths?: boolean | number + steam_id?: boolean | number + traded_deaths?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "v_match_player_opening_duels" */ +export interface v_match_player_opening_duels_avg_order_by {attempts?: (order_by | null),deaths?: (order_by | null),steam_id?: (order_by | null),traded_deaths?: (order_by | null),wins?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "v_match_player_opening_duels". All fields are combined with a logical 'AND'. */ +export interface v_match_player_opening_duels_bool_exp {_and?: (v_match_player_opening_duels_bool_exp[] | null),_not?: (v_match_player_opening_duels_bool_exp | null),_or?: (v_match_player_opening_duels_bool_exp[] | null),attempts?: (Int_comparison_exp | null),deaths?: (Int_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_lineup?: (match_lineups_bool_exp | null),match_lineup_id?: (uuid_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_id?: (uuid_comparison_exp | null),player?: (players_bool_exp | null),side?: (String_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),traded_deaths?: (Int_comparison_exp | null),wins?: (Int_comparison_exp | null)} + + +/** input type for inserting data into table "v_match_player_opening_duels" */ +export interface v_match_player_opening_duels_insert_input {attempts?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_lineup?: (match_lineups_obj_rel_insert_input | null),match_lineup_id?: (Scalars['uuid'] | null),match_map?: (match_maps_obj_rel_insert_input | null),match_map_id?: (Scalars['uuid'] | null),player?: (players_obj_rel_insert_input | null),side?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null),traded_deaths?: (Scalars['Int'] | null),wins?: (Scalars['Int'] | null)} + + +/** aggregate max on columns */ +export interface v_match_player_opening_duels_max_fieldsGenqlSelection{ + attempts?: boolean | number + deaths?: boolean | number + match_id?: boolean | number + match_lineup_id?: boolean | number + match_map_id?: boolean | number + side?: boolean | number + steam_id?: boolean | number + traded_deaths?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "v_match_player_opening_duels" */ +export interface v_match_player_opening_duels_max_order_by {attempts?: (order_by | null),deaths?: (order_by | null),match_id?: (order_by | null),match_lineup_id?: (order_by | null),match_map_id?: (order_by | null),side?: (order_by | null),steam_id?: (order_by | null),traded_deaths?: (order_by | null),wins?: (order_by | null)} + + +/** aggregate min on columns */ +export interface v_match_player_opening_duels_min_fieldsGenqlSelection{ + attempts?: boolean | number + deaths?: boolean | number + match_id?: boolean | number + match_lineup_id?: boolean | number + match_map_id?: boolean | number + side?: boolean | number + steam_id?: boolean | number + traded_deaths?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "v_match_player_opening_duels" */ +export interface v_match_player_opening_duels_min_order_by {attempts?: (order_by | null),deaths?: (order_by | null),match_id?: (order_by | null),match_lineup_id?: (order_by | null),match_map_id?: (order_by | null),side?: (order_by | null),steam_id?: (order_by | null),traded_deaths?: (order_by | null),wins?: (order_by | null)} + + +/** Ordering options when selecting data from "v_match_player_opening_duels". */ +export interface v_match_player_opening_duels_order_by {attempts?: (order_by | null),deaths?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_lineup?: (match_lineups_order_by | null),match_lineup_id?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_id?: (order_by | null),player?: (players_order_by | null),side?: (order_by | null),steam_id?: (order_by | null),traded_deaths?: (order_by | null),wins?: (order_by | null)} + + +/** aggregate stddev on columns */ +export interface v_match_player_opening_duels_stddev_fieldsGenqlSelection{ + attempts?: boolean | number + deaths?: boolean | number + steam_id?: boolean | number + traded_deaths?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "v_match_player_opening_duels" */ +export interface v_match_player_opening_duels_stddev_order_by {attempts?: (order_by | null),deaths?: (order_by | null),steam_id?: (order_by | null),traded_deaths?: (order_by | null),wins?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface v_match_player_opening_duels_stddev_pop_fieldsGenqlSelection{ + attempts?: boolean | number + deaths?: boolean | number + steam_id?: boolean | number + traded_deaths?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "v_match_player_opening_duels" */ +export interface v_match_player_opening_duels_stddev_pop_order_by {attempts?: (order_by | null),deaths?: (order_by | null),steam_id?: (order_by | null),traded_deaths?: (order_by | null),wins?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface v_match_player_opening_duels_stddev_samp_fieldsGenqlSelection{ + attempts?: boolean | number + deaths?: boolean | number + steam_id?: boolean | number + traded_deaths?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "v_match_player_opening_duels" */ +export interface v_match_player_opening_duels_stddev_samp_order_by {attempts?: (order_by | null),deaths?: (order_by | null),steam_id?: (order_by | null),traded_deaths?: (order_by | null),wins?: (order_by | null)} + + +/** Streaming cursor of the table "v_match_player_opening_duels" */ +export interface v_match_player_opening_duels_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: v_match_player_opening_duels_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface v_match_player_opening_duels_stream_cursor_value_input {attempts?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),match_id?: (Scalars['uuid'] | null),match_lineup_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),side?: (Scalars['String'] | null),steam_id?: (Scalars['bigint'] | null),traded_deaths?: (Scalars['Int'] | null),wins?: (Scalars['Int'] | null)} + + +/** aggregate sum on columns */ +export interface v_match_player_opening_duels_sum_fieldsGenqlSelection{ + attempts?: boolean | number + deaths?: boolean | number + steam_id?: boolean | number + traded_deaths?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "v_match_player_opening_duels" */ +export interface v_match_player_opening_duels_sum_order_by {attempts?: (order_by | null),deaths?: (order_by | null),steam_id?: (order_by | null),traded_deaths?: (order_by | null),wins?: (order_by | null)} + + +/** aggregate var_pop on columns */ +export interface v_match_player_opening_duels_var_pop_fieldsGenqlSelection{ + attempts?: boolean | number + deaths?: boolean | number + steam_id?: boolean | number + traded_deaths?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "v_match_player_opening_duels" */ +export interface v_match_player_opening_duels_var_pop_order_by {attempts?: (order_by | null),deaths?: (order_by | null),steam_id?: (order_by | null),traded_deaths?: (order_by | null),wins?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface v_match_player_opening_duels_var_samp_fieldsGenqlSelection{ + attempts?: boolean | number + deaths?: boolean | number + steam_id?: boolean | number + traded_deaths?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "v_match_player_opening_duels" */ +export interface v_match_player_opening_duels_var_samp_order_by {attempts?: (order_by | null),deaths?: (order_by | null),steam_id?: (order_by | null),traded_deaths?: (order_by | null),wins?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface v_match_player_opening_duels_variance_fieldsGenqlSelection{ + attempts?: boolean | number + deaths?: boolean | number + steam_id?: boolean | number + traded_deaths?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "v_match_player_opening_duels" */ +export interface v_match_player_opening_duels_variance_order_by {attempts?: (order_by | null),deaths?: (order_by | null),steam_id?: (order_by | null),traded_deaths?: (order_by | null),wins?: (order_by | null)} + + +/** columns and relationships of "v_player_arch_nemesis" */ +export interface v_player_arch_nemesisGenqlSelection{ + attacker_id?: boolean | number + kill_count?: boolean | number + /** An object relationship */ + nemsis?: playersGenqlSelection + /** An object relationship */ + player?: playersGenqlSelection + victim_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "v_player_arch_nemesis" */ +export interface v_player_arch_nemesis_aggregateGenqlSelection{ + aggregate?: v_player_arch_nemesis_aggregate_fieldsGenqlSelection + nodes?: v_player_arch_nemesisGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "v_player_arch_nemesis" */ +export interface v_player_arch_nemesis_aggregate_fieldsGenqlSelection{ + avg?: v_player_arch_nemesis_avg_fieldsGenqlSelection + count?: { __args: {columns?: (v_player_arch_nemesis_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: v_player_arch_nemesis_max_fieldsGenqlSelection + min?: v_player_arch_nemesis_min_fieldsGenqlSelection + stddev?: v_player_arch_nemesis_stddev_fieldsGenqlSelection + stddev_pop?: v_player_arch_nemesis_stddev_pop_fieldsGenqlSelection + stddev_samp?: v_player_arch_nemesis_stddev_samp_fieldsGenqlSelection + sum?: v_player_arch_nemesis_sum_fieldsGenqlSelection + var_pop?: v_player_arch_nemesis_var_pop_fieldsGenqlSelection + var_samp?: v_player_arch_nemesis_var_samp_fieldsGenqlSelection + variance?: v_player_arch_nemesis_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface v_player_arch_nemesis_avg_fieldsGenqlSelection{ + attacker_id?: boolean | number + kill_count?: boolean | number + victim_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "v_player_arch_nemesis". All fields are combined with a logical 'AND'. */ +export interface v_player_arch_nemesis_bool_exp {_and?: (v_player_arch_nemesis_bool_exp[] | null),_not?: (v_player_arch_nemesis_bool_exp | null),_or?: (v_player_arch_nemesis_bool_exp[] | null),attacker_id?: (bigint_comparison_exp | null),kill_count?: (bigint_comparison_exp | null),nemsis?: (players_bool_exp | null),player?: (players_bool_exp | null),victim_id?: (bigint_comparison_exp | null)} + + +/** aggregate max on columns */ +export interface v_player_arch_nemesis_max_fieldsGenqlSelection{ + attacker_id?: boolean | number + kill_count?: boolean | number + victim_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface v_player_arch_nemesis_min_fieldsGenqlSelection{ + attacker_id?: boolean | number + kill_count?: boolean | number + victim_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Ordering options when selecting data from "v_player_arch_nemesis". */ +export interface v_player_arch_nemesis_order_by {attacker_id?: (order_by | null),kill_count?: (order_by | null),nemsis?: (players_order_by | null),player?: (players_order_by | null),victim_id?: (order_by | null)} + + +/** aggregate stddev on columns */ +export interface v_player_arch_nemesis_stddev_fieldsGenqlSelection{ + attacker_id?: boolean | number + kill_count?: boolean | number + victim_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface v_player_arch_nemesis_stddev_pop_fieldsGenqlSelection{ + attacker_id?: boolean | number + kill_count?: boolean | number + victim_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface v_player_arch_nemesis_stddev_samp_fieldsGenqlSelection{ + attacker_id?: boolean | number + kill_count?: boolean | number + victim_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "v_player_arch_nemesis" */ +export interface v_player_arch_nemesis_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: v_player_arch_nemesis_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface v_player_arch_nemesis_stream_cursor_value_input {attacker_id?: (Scalars['bigint'] | null),kill_count?: (Scalars['bigint'] | null),victim_id?: (Scalars['bigint'] | null)} + + +/** aggregate sum on columns */ +export interface v_player_arch_nemesis_sum_fieldsGenqlSelection{ + attacker_id?: boolean | number + kill_count?: boolean | number + victim_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_pop on columns */ +export interface v_player_arch_nemesis_var_pop_fieldsGenqlSelection{ + attacker_id?: boolean | number + kill_count?: boolean | number + victim_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface v_player_arch_nemesis_var_samp_fieldsGenqlSelection{ + attacker_id?: boolean | number + kill_count?: boolean | number + victim_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface v_player_arch_nemesis_variance_fieldsGenqlSelection{ + attacker_id?: boolean | number + kill_count?: boolean | number + victim_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "v_player_damage" */ +export interface v_player_damageGenqlSelection{ + avg_damage_per_round?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + player_steam_id?: boolean | number + total_damage?: boolean | number + total_rounds?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "v_player_damage" */ +export interface v_player_damage_aggregateGenqlSelection{ + aggregate?: v_player_damage_aggregate_fieldsGenqlSelection + nodes?: v_player_damageGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "v_player_damage" */ +export interface v_player_damage_aggregate_fieldsGenqlSelection{ + avg?: v_player_damage_avg_fieldsGenqlSelection + count?: { __args: {columns?: (v_player_damage_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: v_player_damage_max_fieldsGenqlSelection + min?: v_player_damage_min_fieldsGenqlSelection + stddev?: v_player_damage_stddev_fieldsGenqlSelection + stddev_pop?: v_player_damage_stddev_pop_fieldsGenqlSelection + stddev_samp?: v_player_damage_stddev_samp_fieldsGenqlSelection + sum?: v_player_damage_sum_fieldsGenqlSelection + var_pop?: v_player_damage_var_pop_fieldsGenqlSelection + var_samp?: v_player_damage_var_samp_fieldsGenqlSelection + variance?: v_player_damage_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface v_player_damage_avg_fieldsGenqlSelection{ + avg_damage_per_round?: boolean | number + player_steam_id?: boolean | number + total_damage?: boolean | number + total_rounds?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "v_player_damage". All fields are combined with a logical 'AND'. */ +export interface v_player_damage_bool_exp {_and?: (v_player_damage_bool_exp[] | null),_not?: (v_player_damage_bool_exp | null),_or?: (v_player_damage_bool_exp[] | null),avg_damage_per_round?: (bigint_comparison_exp | null),player?: (players_bool_exp | null),player_steam_id?: (bigint_comparison_exp | null),total_damage?: (bigint_comparison_exp | null),total_rounds?: (bigint_comparison_exp | null)} + + +/** aggregate max on columns */ +export interface v_player_damage_max_fieldsGenqlSelection{ + avg_damage_per_round?: boolean | number + player_steam_id?: boolean | number + total_damage?: boolean | number + total_rounds?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface v_player_damage_min_fieldsGenqlSelection{ + avg_damage_per_round?: boolean | number + player_steam_id?: boolean | number + total_damage?: boolean | number + total_rounds?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Ordering options when selecting data from "v_player_damage". */ +export interface v_player_damage_order_by {avg_damage_per_round?: (order_by | null),player?: (players_order_by | null),player_steam_id?: (order_by | null),total_damage?: (order_by | null),total_rounds?: (order_by | null)} + + +/** aggregate stddev on columns */ +export interface v_player_damage_stddev_fieldsGenqlSelection{ + avg_damage_per_round?: boolean | number + player_steam_id?: boolean | number + total_damage?: boolean | number + total_rounds?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface v_player_damage_stddev_pop_fieldsGenqlSelection{ + avg_damage_per_round?: boolean | number + player_steam_id?: boolean | number + total_damage?: boolean | number + total_rounds?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface v_player_damage_stddev_samp_fieldsGenqlSelection{ + avg_damage_per_round?: boolean | number + player_steam_id?: boolean | number + total_damage?: boolean | number + total_rounds?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "v_player_damage" */ +export interface v_player_damage_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: v_player_damage_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface v_player_damage_stream_cursor_value_input {avg_damage_per_round?: (Scalars['bigint'] | null),player_steam_id?: (Scalars['bigint'] | null),total_damage?: (Scalars['bigint'] | null),total_rounds?: (Scalars['bigint'] | null)} + + +/** aggregate sum on columns */ +export interface v_player_damage_sum_fieldsGenqlSelection{ + avg_damage_per_round?: boolean | number + player_steam_id?: boolean | number + total_damage?: boolean | number + total_rounds?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_pop on columns */ +export interface v_player_damage_var_pop_fieldsGenqlSelection{ + avg_damage_per_round?: boolean | number + player_steam_id?: boolean | number + total_damage?: boolean | number + total_rounds?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface v_player_damage_var_samp_fieldsGenqlSelection{ + avg_damage_per_round?: boolean | number + player_steam_id?: boolean | number + total_damage?: boolean | number + total_rounds?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface v_player_damage_variance_fieldsGenqlSelection{ + avg_damage_per_round?: boolean | number + player_steam_id?: boolean | number + total_damage?: boolean | number + total_rounds?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "v_player_elo" */ +export interface v_player_eloGenqlSelection{ + actual_score?: boolean | number + assists?: boolean | number + current_elo?: boolean | number + damage?: boolean | number + damage_percent?: boolean | number + deaths?: boolean | number + elo_change?: boolean | number + expected_score?: boolean | number + impact?: boolean | number + k_factor?: boolean | number + kda?: boolean | number + kills?: boolean | number + map_losses?: boolean | number + map_wins?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + match_created_at?: boolean | number + match_id?: boolean | number + match_result?: boolean | number + opponent_team_elo_avg?: boolean | number + performance_multiplier?: boolean | number + player_name?: boolean | number + player_steam_id?: boolean | number + player_team_elo_avg?: boolean | number + rating_for_expected?: boolean | number + season_id?: boolean | number + series_multiplier?: boolean | number + team_avg_kda?: boolean | number + type?: boolean | number + updated_elo?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "v_player_elo" */ +export interface v_player_elo_aggregateGenqlSelection{ + aggregate?: v_player_elo_aggregate_fieldsGenqlSelection + nodes?: v_player_eloGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface v_player_elo_aggregate_bool_exp {avg?: (v_player_elo_aggregate_bool_exp_avg | null),corr?: (v_player_elo_aggregate_bool_exp_corr | null),count?: (v_player_elo_aggregate_bool_exp_count | null),covar_samp?: (v_player_elo_aggregate_bool_exp_covar_samp | null),max?: (v_player_elo_aggregate_bool_exp_max | null),min?: (v_player_elo_aggregate_bool_exp_min | null),stddev_samp?: (v_player_elo_aggregate_bool_exp_stddev_samp | null),sum?: (v_player_elo_aggregate_bool_exp_sum | null),var_samp?: (v_player_elo_aggregate_bool_exp_var_samp | null)} + +export interface v_player_elo_aggregate_bool_exp_avg {arguments: v_player_elo_select_column_v_player_elo_aggregate_bool_exp_avg_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_player_elo_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_player_elo_aggregate_bool_exp_corr {arguments: v_player_elo_aggregate_bool_exp_corr_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (v_player_elo_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_player_elo_aggregate_bool_exp_corr_arguments {X: v_player_elo_select_column_v_player_elo_aggregate_bool_exp_corr_arguments_columns,Y: v_player_elo_select_column_v_player_elo_aggregate_bool_exp_corr_arguments_columns} + +export interface v_player_elo_aggregate_bool_exp_count {arguments?: (v_player_elo_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (v_player_elo_bool_exp | null),predicate: Int_comparison_exp} + +export interface v_player_elo_aggregate_bool_exp_covar_samp {arguments: v_player_elo_aggregate_bool_exp_covar_samp_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (v_player_elo_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_player_elo_aggregate_bool_exp_covar_samp_arguments {X: v_player_elo_select_column_v_player_elo_aggregate_bool_exp_covar_samp_arguments_columns,Y: v_player_elo_select_column_v_player_elo_aggregate_bool_exp_covar_samp_arguments_columns} + +export interface v_player_elo_aggregate_bool_exp_max {arguments: v_player_elo_select_column_v_player_elo_aggregate_bool_exp_max_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_player_elo_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_player_elo_aggregate_bool_exp_min {arguments: v_player_elo_select_column_v_player_elo_aggregate_bool_exp_min_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_player_elo_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_player_elo_aggregate_bool_exp_stddev_samp {arguments: v_player_elo_select_column_v_player_elo_aggregate_bool_exp_stddev_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_player_elo_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_player_elo_aggregate_bool_exp_sum {arguments: v_player_elo_select_column_v_player_elo_aggregate_bool_exp_sum_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_player_elo_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_player_elo_aggregate_bool_exp_var_samp {arguments: v_player_elo_select_column_v_player_elo_aggregate_bool_exp_var_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_player_elo_bool_exp | null),predicate: float8_comparison_exp} + + +/** aggregate fields of "v_player_elo" */ +export interface v_player_elo_aggregate_fieldsGenqlSelection{ + avg?: v_player_elo_avg_fieldsGenqlSelection + count?: { __args: {columns?: (v_player_elo_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: v_player_elo_max_fieldsGenqlSelection + min?: v_player_elo_min_fieldsGenqlSelection + stddev?: v_player_elo_stddev_fieldsGenqlSelection + stddev_pop?: v_player_elo_stddev_pop_fieldsGenqlSelection + stddev_samp?: v_player_elo_stddev_samp_fieldsGenqlSelection + sum?: v_player_elo_sum_fieldsGenqlSelection + var_pop?: v_player_elo_var_pop_fieldsGenqlSelection + var_samp?: v_player_elo_var_samp_fieldsGenqlSelection + variance?: v_player_elo_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "v_player_elo" */ +export interface v_player_elo_aggregate_order_by {avg?: (v_player_elo_avg_order_by | null),count?: (order_by | null),max?: (v_player_elo_max_order_by | null),min?: (v_player_elo_min_order_by | null),stddev?: (v_player_elo_stddev_order_by | null),stddev_pop?: (v_player_elo_stddev_pop_order_by | null),stddev_samp?: (v_player_elo_stddev_samp_order_by | null),sum?: (v_player_elo_sum_order_by | null),var_pop?: (v_player_elo_var_pop_order_by | null),var_samp?: (v_player_elo_var_samp_order_by | null),variance?: (v_player_elo_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "v_player_elo" */ +export interface v_player_elo_arr_rel_insert_input {data: v_player_elo_insert_input[]} + + +/** aggregate avg on columns */ +export interface v_player_elo_avg_fieldsGenqlSelection{ + actual_score?: boolean | number + assists?: boolean | number + current_elo?: boolean | number + damage?: boolean | number + damage_percent?: boolean | number + deaths?: boolean | number + elo_change?: boolean | number + expected_score?: boolean | number + impact?: boolean | number + k_factor?: boolean | number + kda?: boolean | number + kills?: boolean | number + map_losses?: boolean | number + map_wins?: boolean | number + opponent_team_elo_avg?: boolean | number + performance_multiplier?: boolean | number + player_steam_id?: boolean | number + player_team_elo_avg?: boolean | number + rating_for_expected?: boolean | number + series_multiplier?: boolean | number + team_avg_kda?: boolean | number + updated_elo?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "v_player_elo" */ +export interface v_player_elo_avg_order_by {actual_score?: (order_by | null),assists?: (order_by | null),current_elo?: (order_by | null),damage?: (order_by | null),damage_percent?: (order_by | null),deaths?: (order_by | null),elo_change?: (order_by | null),expected_score?: (order_by | null),impact?: (order_by | null),k_factor?: (order_by | null),kda?: (order_by | null),kills?: (order_by | null),map_losses?: (order_by | null),map_wins?: (order_by | null),opponent_team_elo_avg?: (order_by | null),performance_multiplier?: (order_by | null),player_steam_id?: (order_by | null),player_team_elo_avg?: (order_by | null),rating_for_expected?: (order_by | null),series_multiplier?: (order_by | null),team_avg_kda?: (order_by | null),updated_elo?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "v_player_elo". All fields are combined with a logical 'AND'. */ +export interface v_player_elo_bool_exp {_and?: (v_player_elo_bool_exp[] | null),_not?: (v_player_elo_bool_exp | null),_or?: (v_player_elo_bool_exp[] | null),actual_score?: (float8_comparison_exp | null),assists?: (Int_comparison_exp | null),current_elo?: (Int_comparison_exp | null),damage?: (Int_comparison_exp | null),damage_percent?: (float8_comparison_exp | null),deaths?: (Int_comparison_exp | null),elo_change?: (Int_comparison_exp | null),expected_score?: (float8_comparison_exp | null),impact?: (float8_comparison_exp | null),k_factor?: (Int_comparison_exp | null),kda?: (float8_comparison_exp | null),kills?: (Int_comparison_exp | null),map_losses?: (Int_comparison_exp | null),map_wins?: (Int_comparison_exp | null),match?: (matches_bool_exp | null),match_created_at?: (timestamptz_comparison_exp | null),match_id?: (uuid_comparison_exp | null),match_result?: (String_comparison_exp | null),opponent_team_elo_avg?: (float8_comparison_exp | null),performance_multiplier?: (float8_comparison_exp | null),player_name?: (String_comparison_exp | null),player_steam_id?: (bigint_comparison_exp | null),player_team_elo_avg?: (float8_comparison_exp | null),rating_for_expected?: (float8_comparison_exp | null),season_id?: (uuid_comparison_exp | null),series_multiplier?: (Int_comparison_exp | null),team_avg_kda?: (float8_comparison_exp | null),type?: (String_comparison_exp | null),updated_elo?: (Int_comparison_exp | null)} + + +/** input type for inserting data into table "v_player_elo" */ +export interface v_player_elo_insert_input {actual_score?: (Scalars['float8'] | null),assists?: (Scalars['Int'] | null),current_elo?: (Scalars['Int'] | null),damage?: (Scalars['Int'] | null),damage_percent?: (Scalars['float8'] | null),deaths?: (Scalars['Int'] | null),elo_change?: (Scalars['Int'] | null),expected_score?: (Scalars['float8'] | null),impact?: (Scalars['float8'] | null),k_factor?: (Scalars['Int'] | null),kda?: (Scalars['float8'] | null),kills?: (Scalars['Int'] | null),map_losses?: (Scalars['Int'] | null),map_wins?: (Scalars['Int'] | null),match?: (matches_obj_rel_insert_input | null),match_created_at?: (Scalars['timestamptz'] | null),match_id?: (Scalars['uuid'] | null),match_result?: (Scalars['String'] | null),opponent_team_elo_avg?: (Scalars['float8'] | null),performance_multiplier?: (Scalars['float8'] | null),player_name?: (Scalars['String'] | null),player_steam_id?: (Scalars['bigint'] | null),player_team_elo_avg?: (Scalars['float8'] | null),rating_for_expected?: (Scalars['float8'] | null),season_id?: (Scalars['uuid'] | null),series_multiplier?: (Scalars['Int'] | null),team_avg_kda?: (Scalars['float8'] | null),type?: (Scalars['String'] | null),updated_elo?: (Scalars['Int'] | null)} + + +/** aggregate max on columns */ +export interface v_player_elo_max_fieldsGenqlSelection{ + actual_score?: boolean | number + assists?: boolean | number + current_elo?: boolean | number + damage?: boolean | number + damage_percent?: boolean | number + deaths?: boolean | number + elo_change?: boolean | number + expected_score?: boolean | number + impact?: boolean | number + k_factor?: boolean | number + kda?: boolean | number + kills?: boolean | number + map_losses?: boolean | number + map_wins?: boolean | number + match_created_at?: boolean | number + match_id?: boolean | number + match_result?: boolean | number + opponent_team_elo_avg?: boolean | number + performance_multiplier?: boolean | number + player_name?: boolean | number + player_steam_id?: boolean | number + player_team_elo_avg?: boolean | number + rating_for_expected?: boolean | number + season_id?: boolean | number + series_multiplier?: boolean | number + team_avg_kda?: boolean | number + type?: boolean | number + updated_elo?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "v_player_elo" */ +export interface v_player_elo_max_order_by {actual_score?: (order_by | null),assists?: (order_by | null),current_elo?: (order_by | null),damage?: (order_by | null),damage_percent?: (order_by | null),deaths?: (order_by | null),elo_change?: (order_by | null),expected_score?: (order_by | null),impact?: (order_by | null),k_factor?: (order_by | null),kda?: (order_by | null),kills?: (order_by | null),map_losses?: (order_by | null),map_wins?: (order_by | null),match_created_at?: (order_by | null),match_id?: (order_by | null),match_result?: (order_by | null),opponent_team_elo_avg?: (order_by | null),performance_multiplier?: (order_by | null),player_name?: (order_by | null),player_steam_id?: (order_by | null),player_team_elo_avg?: (order_by | null),rating_for_expected?: (order_by | null),season_id?: (order_by | null),series_multiplier?: (order_by | null),team_avg_kda?: (order_by | null),type?: (order_by | null),updated_elo?: (order_by | null)} + + +/** aggregate min on columns */ +export interface v_player_elo_min_fieldsGenqlSelection{ + actual_score?: boolean | number + assists?: boolean | number + current_elo?: boolean | number + damage?: boolean | number + damage_percent?: boolean | number + deaths?: boolean | number + elo_change?: boolean | number + expected_score?: boolean | number + impact?: boolean | number + k_factor?: boolean | number + kda?: boolean | number + kills?: boolean | number + map_losses?: boolean | number + map_wins?: boolean | number + match_created_at?: boolean | number + match_id?: boolean | number + match_result?: boolean | number + opponent_team_elo_avg?: boolean | number + performance_multiplier?: boolean | number + player_name?: boolean | number + player_steam_id?: boolean | number + player_team_elo_avg?: boolean | number + rating_for_expected?: boolean | number + season_id?: boolean | number + series_multiplier?: boolean | number + team_avg_kda?: boolean | number + type?: boolean | number + updated_elo?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "v_player_elo" */ +export interface v_player_elo_min_order_by {actual_score?: (order_by | null),assists?: (order_by | null),current_elo?: (order_by | null),damage?: (order_by | null),damage_percent?: (order_by | null),deaths?: (order_by | null),elo_change?: (order_by | null),expected_score?: (order_by | null),impact?: (order_by | null),k_factor?: (order_by | null),kda?: (order_by | null),kills?: (order_by | null),map_losses?: (order_by | null),map_wins?: (order_by | null),match_created_at?: (order_by | null),match_id?: (order_by | null),match_result?: (order_by | null),opponent_team_elo_avg?: (order_by | null),performance_multiplier?: (order_by | null),player_name?: (order_by | null),player_steam_id?: (order_by | null),player_team_elo_avg?: (order_by | null),rating_for_expected?: (order_by | null),season_id?: (order_by | null),series_multiplier?: (order_by | null),team_avg_kda?: (order_by | null),type?: (order_by | null),updated_elo?: (order_by | null)} + + +/** Ordering options when selecting data from "v_player_elo". */ +export interface v_player_elo_order_by {actual_score?: (order_by | null),assists?: (order_by | null),current_elo?: (order_by | null),damage?: (order_by | null),damage_percent?: (order_by | null),deaths?: (order_by | null),elo_change?: (order_by | null),expected_score?: (order_by | null),impact?: (order_by | null),k_factor?: (order_by | null),kda?: (order_by | null),kills?: (order_by | null),map_losses?: (order_by | null),map_wins?: (order_by | null),match?: (matches_order_by | null),match_created_at?: (order_by | null),match_id?: (order_by | null),match_result?: (order_by | null),opponent_team_elo_avg?: (order_by | null),performance_multiplier?: (order_by | null),player_name?: (order_by | null),player_steam_id?: (order_by | null),player_team_elo_avg?: (order_by | null),rating_for_expected?: (order_by | null),season_id?: (order_by | null),series_multiplier?: (order_by | null),team_avg_kda?: (order_by | null),type?: (order_by | null),updated_elo?: (order_by | null)} + + +/** aggregate stddev on columns */ +export interface v_player_elo_stddev_fieldsGenqlSelection{ + actual_score?: boolean | number + assists?: boolean | number + current_elo?: boolean | number + damage?: boolean | number + damage_percent?: boolean | number + deaths?: boolean | number + elo_change?: boolean | number + expected_score?: boolean | number + impact?: boolean | number + k_factor?: boolean | number + kda?: boolean | number + kills?: boolean | number + map_losses?: boolean | number + map_wins?: boolean | number + opponent_team_elo_avg?: boolean | number + performance_multiplier?: boolean | number + player_steam_id?: boolean | number + player_team_elo_avg?: boolean | number + rating_for_expected?: boolean | number + series_multiplier?: boolean | number + team_avg_kda?: boolean | number + updated_elo?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "v_player_elo" */ +export interface v_player_elo_stddev_order_by {actual_score?: (order_by | null),assists?: (order_by | null),current_elo?: (order_by | null),damage?: (order_by | null),damage_percent?: (order_by | null),deaths?: (order_by | null),elo_change?: (order_by | null),expected_score?: (order_by | null),impact?: (order_by | null),k_factor?: (order_by | null),kda?: (order_by | null),kills?: (order_by | null),map_losses?: (order_by | null),map_wins?: (order_by | null),opponent_team_elo_avg?: (order_by | null),performance_multiplier?: (order_by | null),player_steam_id?: (order_by | null),player_team_elo_avg?: (order_by | null),rating_for_expected?: (order_by | null),series_multiplier?: (order_by | null),team_avg_kda?: (order_by | null),updated_elo?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface v_player_elo_stddev_pop_fieldsGenqlSelection{ + actual_score?: boolean | number + assists?: boolean | number + current_elo?: boolean | number + damage?: boolean | number + damage_percent?: boolean | number + deaths?: boolean | number + elo_change?: boolean | number + expected_score?: boolean | number + impact?: boolean | number + k_factor?: boolean | number + kda?: boolean | number + kills?: boolean | number + map_losses?: boolean | number + map_wins?: boolean | number + opponent_team_elo_avg?: boolean | number + performance_multiplier?: boolean | number + player_steam_id?: boolean | number + player_team_elo_avg?: boolean | number + rating_for_expected?: boolean | number + series_multiplier?: boolean | number + team_avg_kda?: boolean | number + updated_elo?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "v_player_elo" */ +export interface v_player_elo_stddev_pop_order_by {actual_score?: (order_by | null),assists?: (order_by | null),current_elo?: (order_by | null),damage?: (order_by | null),damage_percent?: (order_by | null),deaths?: (order_by | null),elo_change?: (order_by | null),expected_score?: (order_by | null),impact?: (order_by | null),k_factor?: (order_by | null),kda?: (order_by | null),kills?: (order_by | null),map_losses?: (order_by | null),map_wins?: (order_by | null),opponent_team_elo_avg?: (order_by | null),performance_multiplier?: (order_by | null),player_steam_id?: (order_by | null),player_team_elo_avg?: (order_by | null),rating_for_expected?: (order_by | null),series_multiplier?: (order_by | null),team_avg_kda?: (order_by | null),updated_elo?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface v_player_elo_stddev_samp_fieldsGenqlSelection{ + actual_score?: boolean | number + assists?: boolean | number + current_elo?: boolean | number + damage?: boolean | number + damage_percent?: boolean | number + deaths?: boolean | number + elo_change?: boolean | number + expected_score?: boolean | number + impact?: boolean | number + k_factor?: boolean | number + kda?: boolean | number + kills?: boolean | number + map_losses?: boolean | number + map_wins?: boolean | number + opponent_team_elo_avg?: boolean | number + performance_multiplier?: boolean | number + player_steam_id?: boolean | number + player_team_elo_avg?: boolean | number + rating_for_expected?: boolean | number + series_multiplier?: boolean | number + team_avg_kda?: boolean | number + updated_elo?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "v_player_elo" */ +export interface v_player_elo_stddev_samp_order_by {actual_score?: (order_by | null),assists?: (order_by | null),current_elo?: (order_by | null),damage?: (order_by | null),damage_percent?: (order_by | null),deaths?: (order_by | null),elo_change?: (order_by | null),expected_score?: (order_by | null),impact?: (order_by | null),k_factor?: (order_by | null),kda?: (order_by | null),kills?: (order_by | null),map_losses?: (order_by | null),map_wins?: (order_by | null),opponent_team_elo_avg?: (order_by | null),performance_multiplier?: (order_by | null),player_steam_id?: (order_by | null),player_team_elo_avg?: (order_by | null),rating_for_expected?: (order_by | null),series_multiplier?: (order_by | null),team_avg_kda?: (order_by | null),updated_elo?: (order_by | null)} + + +/** Streaming cursor of the table "v_player_elo" */ +export interface v_player_elo_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: v_player_elo_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface v_player_elo_stream_cursor_value_input {actual_score?: (Scalars['float8'] | null),assists?: (Scalars['Int'] | null),current_elo?: (Scalars['Int'] | null),damage?: (Scalars['Int'] | null),damage_percent?: (Scalars['float8'] | null),deaths?: (Scalars['Int'] | null),elo_change?: (Scalars['Int'] | null),expected_score?: (Scalars['float8'] | null),impact?: (Scalars['float8'] | null),k_factor?: (Scalars['Int'] | null),kda?: (Scalars['float8'] | null),kills?: (Scalars['Int'] | null),map_losses?: (Scalars['Int'] | null),map_wins?: (Scalars['Int'] | null),match_created_at?: (Scalars['timestamptz'] | null),match_id?: (Scalars['uuid'] | null),match_result?: (Scalars['String'] | null),opponent_team_elo_avg?: (Scalars['float8'] | null),performance_multiplier?: (Scalars['float8'] | null),player_name?: (Scalars['String'] | null),player_steam_id?: (Scalars['bigint'] | null),player_team_elo_avg?: (Scalars['float8'] | null),rating_for_expected?: (Scalars['float8'] | null),season_id?: (Scalars['uuid'] | null),series_multiplier?: (Scalars['Int'] | null),team_avg_kda?: (Scalars['float8'] | null),type?: (Scalars['String'] | null),updated_elo?: (Scalars['Int'] | null)} + + +/** aggregate sum on columns */ +export interface v_player_elo_sum_fieldsGenqlSelection{ + actual_score?: boolean | number + assists?: boolean | number + current_elo?: boolean | number + damage?: boolean | number + damage_percent?: boolean | number + deaths?: boolean | number + elo_change?: boolean | number + expected_score?: boolean | number + impact?: boolean | number + k_factor?: boolean | number + kda?: boolean | number + kills?: boolean | number + map_losses?: boolean | number + map_wins?: boolean | number + opponent_team_elo_avg?: boolean | number + performance_multiplier?: boolean | number + player_steam_id?: boolean | number + player_team_elo_avg?: boolean | number + rating_for_expected?: boolean | number + series_multiplier?: boolean | number + team_avg_kda?: boolean | number + updated_elo?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "v_player_elo" */ +export interface v_player_elo_sum_order_by {actual_score?: (order_by | null),assists?: (order_by | null),current_elo?: (order_by | null),damage?: (order_by | null),damage_percent?: (order_by | null),deaths?: (order_by | null),elo_change?: (order_by | null),expected_score?: (order_by | null),impact?: (order_by | null),k_factor?: (order_by | null),kda?: (order_by | null),kills?: (order_by | null),map_losses?: (order_by | null),map_wins?: (order_by | null),opponent_team_elo_avg?: (order_by | null),performance_multiplier?: (order_by | null),player_steam_id?: (order_by | null),player_team_elo_avg?: (order_by | null),rating_for_expected?: (order_by | null),series_multiplier?: (order_by | null),team_avg_kda?: (order_by | null),updated_elo?: (order_by | null)} + + +/** aggregate var_pop on columns */ +export interface v_player_elo_var_pop_fieldsGenqlSelection{ + actual_score?: boolean | number + assists?: boolean | number + current_elo?: boolean | number + damage?: boolean | number + damage_percent?: boolean | number + deaths?: boolean | number + elo_change?: boolean | number + expected_score?: boolean | number + impact?: boolean | number + k_factor?: boolean | number + kda?: boolean | number + kills?: boolean | number + map_losses?: boolean | number + map_wins?: boolean | number + opponent_team_elo_avg?: boolean | number + performance_multiplier?: boolean | number + player_steam_id?: boolean | number + player_team_elo_avg?: boolean | number + rating_for_expected?: boolean | number + series_multiplier?: boolean | number + team_avg_kda?: boolean | number + updated_elo?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "v_player_elo" */ +export interface v_player_elo_var_pop_order_by {actual_score?: (order_by | null),assists?: (order_by | null),current_elo?: (order_by | null),damage?: (order_by | null),damage_percent?: (order_by | null),deaths?: (order_by | null),elo_change?: (order_by | null),expected_score?: (order_by | null),impact?: (order_by | null),k_factor?: (order_by | null),kda?: (order_by | null),kills?: (order_by | null),map_losses?: (order_by | null),map_wins?: (order_by | null),opponent_team_elo_avg?: (order_by | null),performance_multiplier?: (order_by | null),player_steam_id?: (order_by | null),player_team_elo_avg?: (order_by | null),rating_for_expected?: (order_by | null),series_multiplier?: (order_by | null),team_avg_kda?: (order_by | null),updated_elo?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface v_player_elo_var_samp_fieldsGenqlSelection{ + actual_score?: boolean | number + assists?: boolean | number + current_elo?: boolean | number + damage?: boolean | number + damage_percent?: boolean | number + deaths?: boolean | number + elo_change?: boolean | number + expected_score?: boolean | number + impact?: boolean | number + k_factor?: boolean | number + kda?: boolean | number + kills?: boolean | number + map_losses?: boolean | number + map_wins?: boolean | number + opponent_team_elo_avg?: boolean | number + performance_multiplier?: boolean | number + player_steam_id?: boolean | number + player_team_elo_avg?: boolean | number + rating_for_expected?: boolean | number + series_multiplier?: boolean | number + team_avg_kda?: boolean | number + updated_elo?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "v_player_elo" */ +export interface v_player_elo_var_samp_order_by {actual_score?: (order_by | null),assists?: (order_by | null),current_elo?: (order_by | null),damage?: (order_by | null),damage_percent?: (order_by | null),deaths?: (order_by | null),elo_change?: (order_by | null),expected_score?: (order_by | null),impact?: (order_by | null),k_factor?: (order_by | null),kda?: (order_by | null),kills?: (order_by | null),map_losses?: (order_by | null),map_wins?: (order_by | null),opponent_team_elo_avg?: (order_by | null),performance_multiplier?: (order_by | null),player_steam_id?: (order_by | null),player_team_elo_avg?: (order_by | null),rating_for_expected?: (order_by | null),series_multiplier?: (order_by | null),team_avg_kda?: (order_by | null),updated_elo?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface v_player_elo_variance_fieldsGenqlSelection{ + actual_score?: boolean | number + assists?: boolean | number + current_elo?: boolean | number + damage?: boolean | number + damage_percent?: boolean | number + deaths?: boolean | number + elo_change?: boolean | number + expected_score?: boolean | number + impact?: boolean | number + k_factor?: boolean | number + kda?: boolean | number + kills?: boolean | number + map_losses?: boolean | number + map_wins?: boolean | number + opponent_team_elo_avg?: boolean | number + performance_multiplier?: boolean | number + player_steam_id?: boolean | number + player_team_elo_avg?: boolean | number + rating_for_expected?: boolean | number + series_multiplier?: boolean | number + team_avg_kda?: boolean | number + updated_elo?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "v_player_elo" */ +export interface v_player_elo_variance_order_by {actual_score?: (order_by | null),assists?: (order_by | null),current_elo?: (order_by | null),damage?: (order_by | null),damage_percent?: (order_by | null),deaths?: (order_by | null),elo_change?: (order_by | null),expected_score?: (order_by | null),impact?: (order_by | null),k_factor?: (order_by | null),kda?: (order_by | null),kills?: (order_by | null),map_losses?: (order_by | null),map_wins?: (order_by | null),opponent_team_elo_avg?: (order_by | null),performance_multiplier?: (order_by | null),player_steam_id?: (order_by | null),player_team_elo_avg?: (order_by | null),rating_for_expected?: (order_by | null),series_multiplier?: (order_by | null),team_avg_kda?: (order_by | null),updated_elo?: (order_by | null)} + + +/** columns and relationships of "v_player_map_losses" */ +export interface v_player_map_lossesGenqlSelection{ + /** An object relationship */ + map?: mapsGenqlSelection + map_id?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + match_id?: boolean | number + started_at?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "v_player_map_losses" */ +export interface v_player_map_losses_aggregateGenqlSelection{ + aggregate?: v_player_map_losses_aggregate_fieldsGenqlSelection + nodes?: v_player_map_lossesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "v_player_map_losses" */ +export interface v_player_map_losses_aggregate_fieldsGenqlSelection{ + avg?: v_player_map_losses_avg_fieldsGenqlSelection + count?: { __args: {columns?: (v_player_map_losses_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: v_player_map_losses_max_fieldsGenqlSelection + min?: v_player_map_losses_min_fieldsGenqlSelection + stddev?: v_player_map_losses_stddev_fieldsGenqlSelection + stddev_pop?: v_player_map_losses_stddev_pop_fieldsGenqlSelection + stddev_samp?: v_player_map_losses_stddev_samp_fieldsGenqlSelection + sum?: v_player_map_losses_sum_fieldsGenqlSelection + var_pop?: v_player_map_losses_var_pop_fieldsGenqlSelection + var_samp?: v_player_map_losses_var_samp_fieldsGenqlSelection + variance?: v_player_map_losses_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface v_player_map_losses_avg_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "v_player_map_losses". All fields are combined with a logical 'AND'. */ +export interface v_player_map_losses_bool_exp {_and?: (v_player_map_losses_bool_exp[] | null),_not?: (v_player_map_losses_bool_exp | null),_or?: (v_player_map_losses_bool_exp[] | null),map?: (maps_bool_exp | null),map_id?: (uuid_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),started_at?: (timestamptz_comparison_exp | null),steam_id?: (bigint_comparison_exp | null)} + + +/** aggregate max on columns */ +export interface v_player_map_losses_max_fieldsGenqlSelection{ + map_id?: boolean | number + match_id?: boolean | number + started_at?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface v_player_map_losses_min_fieldsGenqlSelection{ + map_id?: boolean | number + match_id?: boolean | number + started_at?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Ordering options when selecting data from "v_player_map_losses". */ +export interface v_player_map_losses_order_by {map?: (maps_order_by | null),map_id?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),started_at?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate stddev on columns */ +export interface v_player_map_losses_stddev_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface v_player_map_losses_stddev_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface v_player_map_losses_stddev_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "v_player_map_losses" */ +export interface v_player_map_losses_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: v_player_map_losses_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface v_player_map_losses_stream_cursor_value_input {map_id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),started_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate sum on columns */ +export interface v_player_map_losses_sum_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_pop on columns */ +export interface v_player_map_losses_var_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface v_player_map_losses_var_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface v_player_map_losses_variance_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "v_player_map_wins" */ +export interface v_player_map_winsGenqlSelection{ + /** An object relationship */ + map?: mapsGenqlSelection + map_id?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + match_id?: boolean | number + started_at?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "v_player_map_wins" */ +export interface v_player_map_wins_aggregateGenqlSelection{ + aggregate?: v_player_map_wins_aggregate_fieldsGenqlSelection + nodes?: v_player_map_winsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "v_player_map_wins" */ +export interface v_player_map_wins_aggregate_fieldsGenqlSelection{ + avg?: v_player_map_wins_avg_fieldsGenqlSelection + count?: { __args: {columns?: (v_player_map_wins_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: v_player_map_wins_max_fieldsGenqlSelection + min?: v_player_map_wins_min_fieldsGenqlSelection + stddev?: v_player_map_wins_stddev_fieldsGenqlSelection + stddev_pop?: v_player_map_wins_stddev_pop_fieldsGenqlSelection + stddev_samp?: v_player_map_wins_stddev_samp_fieldsGenqlSelection + sum?: v_player_map_wins_sum_fieldsGenqlSelection + var_pop?: v_player_map_wins_var_pop_fieldsGenqlSelection + var_samp?: v_player_map_wins_var_samp_fieldsGenqlSelection + variance?: v_player_map_wins_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface v_player_map_wins_avg_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "v_player_map_wins". All fields are combined with a logical 'AND'. */ +export interface v_player_map_wins_bool_exp {_and?: (v_player_map_wins_bool_exp[] | null),_not?: (v_player_map_wins_bool_exp | null),_or?: (v_player_map_wins_bool_exp[] | null),map?: (maps_bool_exp | null),map_id?: (uuid_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),started_at?: (timestamptz_comparison_exp | null),steam_id?: (bigint_comparison_exp | null)} + + +/** aggregate max on columns */ +export interface v_player_map_wins_max_fieldsGenqlSelection{ + map_id?: boolean | number + match_id?: boolean | number + started_at?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface v_player_map_wins_min_fieldsGenqlSelection{ + map_id?: boolean | number + match_id?: boolean | number + started_at?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Ordering options when selecting data from "v_player_map_wins". */ +export interface v_player_map_wins_order_by {map?: (maps_order_by | null),map_id?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),started_at?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate stddev on columns */ +export interface v_player_map_wins_stddev_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface v_player_map_wins_stddev_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface v_player_map_wins_stddev_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "v_player_map_wins" */ +export interface v_player_map_wins_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: v_player_map_wins_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface v_player_map_wins_stream_cursor_value_input {map_id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),started_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate sum on columns */ +export interface v_player_map_wins_sum_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_pop on columns */ +export interface v_player_map_wins_var_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface v_player_map_wins_var_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface v_player_map_wins_variance_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "v_player_match_head_to_head" */ +export interface v_player_match_head_to_headGenqlSelection{ + /** An object relationship */ + attacked?: playersGenqlSelection + attacked_steam_id?: boolean | number + /** An object relationship */ + attacker?: playersGenqlSelection + attacker_steam_id?: boolean | number + damage_dealt?: boolean | number + flash_count?: boolean | number + headshot_kills?: boolean | number + hits?: boolean | number + kills?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + match_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "v_player_match_head_to_head" */ +export interface v_player_match_head_to_head_aggregateGenqlSelection{ + aggregate?: v_player_match_head_to_head_aggregate_fieldsGenqlSelection + nodes?: v_player_match_head_to_headGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "v_player_match_head_to_head" */ +export interface v_player_match_head_to_head_aggregate_fieldsGenqlSelection{ + avg?: v_player_match_head_to_head_avg_fieldsGenqlSelection + count?: { __args: {columns?: (v_player_match_head_to_head_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: v_player_match_head_to_head_max_fieldsGenqlSelection + min?: v_player_match_head_to_head_min_fieldsGenqlSelection + stddev?: v_player_match_head_to_head_stddev_fieldsGenqlSelection + stddev_pop?: v_player_match_head_to_head_stddev_pop_fieldsGenqlSelection + stddev_samp?: v_player_match_head_to_head_stddev_samp_fieldsGenqlSelection + sum?: v_player_match_head_to_head_sum_fieldsGenqlSelection + var_pop?: v_player_match_head_to_head_var_pop_fieldsGenqlSelection + var_samp?: v_player_match_head_to_head_var_samp_fieldsGenqlSelection + variance?: v_player_match_head_to_head_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface v_player_match_head_to_head_avg_fieldsGenqlSelection{ + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + damage_dealt?: boolean | number + flash_count?: boolean | number + headshot_kills?: boolean | number + hits?: boolean | number + kills?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "v_player_match_head_to_head". All fields are combined with a logical 'AND'. */ +export interface v_player_match_head_to_head_bool_exp {_and?: (v_player_match_head_to_head_bool_exp[] | null),_not?: (v_player_match_head_to_head_bool_exp | null),_or?: (v_player_match_head_to_head_bool_exp[] | null),attacked?: (players_bool_exp | null),attacked_steam_id?: (bigint_comparison_exp | null),attacker?: (players_bool_exp | null),attacker_steam_id?: (bigint_comparison_exp | null),damage_dealt?: (Int_comparison_exp | null),flash_count?: (bigint_comparison_exp | null),headshot_kills?: (bigint_comparison_exp | null),hits?: (bigint_comparison_exp | null),kills?: (bigint_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null)} + + +/** aggregate max on columns */ +export interface v_player_match_head_to_head_max_fieldsGenqlSelection{ + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + damage_dealt?: boolean | number + flash_count?: boolean | number + headshot_kills?: boolean | number + hits?: boolean | number + kills?: boolean | number + match_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface v_player_match_head_to_head_min_fieldsGenqlSelection{ + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + damage_dealt?: boolean | number + flash_count?: boolean | number + headshot_kills?: boolean | number + hits?: boolean | number + kills?: boolean | number + match_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Ordering options when selecting data from "v_player_match_head_to_head". */ +export interface v_player_match_head_to_head_order_by {attacked?: (players_order_by | null),attacked_steam_id?: (order_by | null),attacker?: (players_order_by | null),attacker_steam_id?: (order_by | null),damage_dealt?: (order_by | null),flash_count?: (order_by | null),headshot_kills?: (order_by | null),hits?: (order_by | null),kills?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null)} + + +/** aggregate stddev on columns */ +export interface v_player_match_head_to_head_stddev_fieldsGenqlSelection{ + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + damage_dealt?: boolean | number + flash_count?: boolean | number + headshot_kills?: boolean | number + hits?: boolean | number + kills?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface v_player_match_head_to_head_stddev_pop_fieldsGenqlSelection{ + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + damage_dealt?: boolean | number + flash_count?: boolean | number + headshot_kills?: boolean | number + hits?: boolean | number + kills?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface v_player_match_head_to_head_stddev_samp_fieldsGenqlSelection{ + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + damage_dealt?: boolean | number + flash_count?: boolean | number + headshot_kills?: boolean | number + hits?: boolean | number + kills?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "v_player_match_head_to_head" */ +export interface v_player_match_head_to_head_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: v_player_match_head_to_head_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface v_player_match_head_to_head_stream_cursor_value_input {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)} + + +/** aggregate sum on columns */ +export interface v_player_match_head_to_head_sum_fieldsGenqlSelection{ + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + damage_dealt?: boolean | number + flash_count?: boolean | number + headshot_kills?: boolean | number + hits?: boolean | number + kills?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_pop on columns */ +export interface v_player_match_head_to_head_var_pop_fieldsGenqlSelection{ + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + damage_dealt?: boolean | number + flash_count?: boolean | number + headshot_kills?: boolean | number + hits?: boolean | number + kills?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface v_player_match_head_to_head_var_samp_fieldsGenqlSelection{ + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + damage_dealt?: boolean | number + flash_count?: boolean | number + headshot_kills?: boolean | number + hits?: boolean | number + kills?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface v_player_match_head_to_head_variance_fieldsGenqlSelection{ + attacked_steam_id?: boolean | number + attacker_steam_id?: boolean | number + damage_dealt?: boolean | number + flash_count?: boolean | number + headshot_kills?: boolean | number + hits?: boolean | number + kills?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "v_player_match_map_hltv" */ +export interface v_player_match_map_hltvGenqlSelection{ + adr?: boolean | number + apr?: boolean | number + dpr?: boolean | number + hltv_rating?: boolean | number + kast_pct?: boolean | number + kpr?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + match_id?: boolean | number + /** An object relationship */ + match_map?: match_mapsGenqlSelection + match_map_id?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + rounds_played?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "v_player_match_map_hltv" */ +export interface v_player_match_map_hltv_aggregateGenqlSelection{ + aggregate?: v_player_match_map_hltv_aggregate_fieldsGenqlSelection + nodes?: v_player_match_map_hltvGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface v_player_match_map_hltv_aggregate_bool_exp {count?: (v_player_match_map_hltv_aggregate_bool_exp_count | null)} + +export interface v_player_match_map_hltv_aggregate_bool_exp_count {arguments?: (v_player_match_map_hltv_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (v_player_match_map_hltv_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "v_player_match_map_hltv" */ +export interface v_player_match_map_hltv_aggregate_fieldsGenqlSelection{ + avg?: v_player_match_map_hltv_avg_fieldsGenqlSelection + count?: { __args: {columns?: (v_player_match_map_hltv_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: v_player_match_map_hltv_max_fieldsGenqlSelection + min?: v_player_match_map_hltv_min_fieldsGenqlSelection + stddev?: v_player_match_map_hltv_stddev_fieldsGenqlSelection + stddev_pop?: v_player_match_map_hltv_stddev_pop_fieldsGenqlSelection + stddev_samp?: v_player_match_map_hltv_stddev_samp_fieldsGenqlSelection + sum?: v_player_match_map_hltv_sum_fieldsGenqlSelection + var_pop?: v_player_match_map_hltv_var_pop_fieldsGenqlSelection + var_samp?: v_player_match_map_hltv_var_samp_fieldsGenqlSelection + variance?: v_player_match_map_hltv_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "v_player_match_map_hltv" */ +export interface v_player_match_map_hltv_aggregate_order_by {avg?: (v_player_match_map_hltv_avg_order_by | null),count?: (order_by | null),max?: (v_player_match_map_hltv_max_order_by | null),min?: (v_player_match_map_hltv_min_order_by | null),stddev?: (v_player_match_map_hltv_stddev_order_by | null),stddev_pop?: (v_player_match_map_hltv_stddev_pop_order_by | null),stddev_samp?: (v_player_match_map_hltv_stddev_samp_order_by | null),sum?: (v_player_match_map_hltv_sum_order_by | null),var_pop?: (v_player_match_map_hltv_var_pop_order_by | null),var_samp?: (v_player_match_map_hltv_var_samp_order_by | null),variance?: (v_player_match_map_hltv_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "v_player_match_map_hltv" */ +export interface v_player_match_map_hltv_arr_rel_insert_input {data: v_player_match_map_hltv_insert_input[]} + + +/** aggregate avg on columns */ +export interface v_player_match_map_hltv_avg_fieldsGenqlSelection{ + adr?: boolean | number + apr?: boolean | number + dpr?: boolean | number + hltv_rating?: boolean | number + kast_pct?: boolean | number + kpr?: boolean | number + rounds_played?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "v_player_match_map_hltv" */ +export interface v_player_match_map_hltv_avg_order_by {adr?: (order_by | null),apr?: (order_by | null),dpr?: (order_by | null),hltv_rating?: (order_by | null),kast_pct?: (order_by | null),kpr?: (order_by | null),rounds_played?: (order_by | null),steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "v_player_match_map_hltv". All fields are combined with a logical 'AND'. */ +export interface v_player_match_map_hltv_bool_exp {_and?: (v_player_match_map_hltv_bool_exp[] | null),_not?: (v_player_match_map_hltv_bool_exp | null),_or?: (v_player_match_map_hltv_bool_exp[] | null),adr?: (numeric_comparison_exp | null),apr?: (numeric_comparison_exp | null),dpr?: (numeric_comparison_exp | null),hltv_rating?: (numeric_comparison_exp | null),kast_pct?: (numeric_comparison_exp | null),kpr?: (numeric_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_id?: (uuid_comparison_exp | null),player?: (players_bool_exp | null),rounds_played?: (Int_comparison_exp | null),steam_id?: (bigint_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "v_player_match_map_hltv" */ +export interface v_player_match_map_hltv_inc_input {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)} + + +/** input type for inserting data into table "v_player_match_map_hltv" */ +export interface v_player_match_map_hltv_insert_input {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?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_map?: (match_maps_obj_rel_insert_input | null),match_map_id?: (Scalars['uuid'] | null),player?: (players_obj_rel_insert_input | null),rounds_played?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate max on columns */ +export interface v_player_match_map_hltv_max_fieldsGenqlSelection{ + adr?: boolean | number + apr?: boolean | number + dpr?: boolean | number + hltv_rating?: boolean | number + kast_pct?: boolean | number + kpr?: boolean | number + match_id?: boolean | number + match_map_id?: boolean | number + rounds_played?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "v_player_match_map_hltv" */ +export interface v_player_match_map_hltv_max_order_by {adr?: (order_by | null),apr?: (order_by | null),dpr?: (order_by | null),hltv_rating?: (order_by | null),kast_pct?: (order_by | null),kpr?: (order_by | null),match_id?: (order_by | null),match_map_id?: (order_by | null),rounds_played?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface v_player_match_map_hltv_min_fieldsGenqlSelection{ + adr?: boolean | number + apr?: boolean | number + dpr?: boolean | number + hltv_rating?: boolean | number + kast_pct?: boolean | number + kpr?: boolean | number + match_id?: boolean | number + match_map_id?: boolean | number + rounds_played?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "v_player_match_map_hltv" */ +export interface v_player_match_map_hltv_min_order_by {adr?: (order_by | null),apr?: (order_by | null),dpr?: (order_by | null),hltv_rating?: (order_by | null),kast_pct?: (order_by | null),kpr?: (order_by | null),match_id?: (order_by | null),match_map_id?: (order_by | null),rounds_played?: (order_by | null),steam_id?: (order_by | null)} + + +/** response of any mutation on the table "v_player_match_map_hltv" */ +export interface v_player_match_map_hltv_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: v_player_match_map_hltvGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Ordering options when selecting data from "v_player_match_map_hltv". */ +export interface v_player_match_map_hltv_order_by {adr?: (order_by | null),apr?: (order_by | null),dpr?: (order_by | null),hltv_rating?: (order_by | null),kast_pct?: (order_by | null),kpr?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_id?: (order_by | null),player?: (players_order_by | null),rounds_played?: (order_by | null),steam_id?: (order_by | null)} + + +/** input type for updating data in table "v_player_match_map_hltv" */ +export interface v_player_match_map_hltv_set_input {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)} + + +/** aggregate stddev on columns */ +export interface v_player_match_map_hltv_stddev_fieldsGenqlSelection{ + adr?: boolean | number + apr?: boolean | number + dpr?: boolean | number + hltv_rating?: boolean | number + kast_pct?: boolean | number + kpr?: boolean | number + rounds_played?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "v_player_match_map_hltv" */ +export interface v_player_match_map_hltv_stddev_order_by {adr?: (order_by | null),apr?: (order_by | null),dpr?: (order_by | null),hltv_rating?: (order_by | null),kast_pct?: (order_by | null),kpr?: (order_by | null),rounds_played?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface v_player_match_map_hltv_stddev_pop_fieldsGenqlSelection{ + adr?: boolean | number + apr?: boolean | number + dpr?: boolean | number + hltv_rating?: boolean | number + kast_pct?: boolean | number + kpr?: boolean | number + rounds_played?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "v_player_match_map_hltv" */ +export interface v_player_match_map_hltv_stddev_pop_order_by {adr?: (order_by | null),apr?: (order_by | null),dpr?: (order_by | null),hltv_rating?: (order_by | null),kast_pct?: (order_by | null),kpr?: (order_by | null),rounds_played?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface v_player_match_map_hltv_stddev_samp_fieldsGenqlSelection{ + adr?: boolean | number + apr?: boolean | number + dpr?: boolean | number + hltv_rating?: boolean | number + kast_pct?: boolean | number + kpr?: boolean | number + rounds_played?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "v_player_match_map_hltv" */ +export interface v_player_match_map_hltv_stddev_samp_order_by {adr?: (order_by | null),apr?: (order_by | null),dpr?: (order_by | null),hltv_rating?: (order_by | null),kast_pct?: (order_by | null),kpr?: (order_by | null),rounds_played?: (order_by | null),steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "v_player_match_map_hltv" */ +export interface v_player_match_map_hltv_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: v_player_match_map_hltv_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface v_player_match_map_hltv_stream_cursor_value_input {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)} + + +/** aggregate sum on columns */ +export interface v_player_match_map_hltv_sum_fieldsGenqlSelection{ + adr?: boolean | number + apr?: boolean | number + dpr?: boolean | number + hltv_rating?: boolean | number + kast_pct?: boolean | number + kpr?: boolean | number + rounds_played?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "v_player_match_map_hltv" */ +export interface v_player_match_map_hltv_sum_order_by {adr?: (order_by | null),apr?: (order_by | null),dpr?: (order_by | null),hltv_rating?: (order_by | null),kast_pct?: (order_by | null),kpr?: (order_by | null),rounds_played?: (order_by | null),steam_id?: (order_by | null)} + +export interface v_player_match_map_hltv_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (v_player_match_map_hltv_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (v_player_match_map_hltv_set_input | null), +/** filter the rows which have to be updated */ +where: v_player_match_map_hltv_bool_exp} + + +/** aggregate var_pop on columns */ +export interface v_player_match_map_hltv_var_pop_fieldsGenqlSelection{ + adr?: boolean | number + apr?: boolean | number + dpr?: boolean | number + hltv_rating?: boolean | number + kast_pct?: boolean | number + kpr?: boolean | number + rounds_played?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "v_player_match_map_hltv" */ +export interface v_player_match_map_hltv_var_pop_order_by {adr?: (order_by | null),apr?: (order_by | null),dpr?: (order_by | null),hltv_rating?: (order_by | null),kast_pct?: (order_by | null),kpr?: (order_by | null),rounds_played?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface v_player_match_map_hltv_var_samp_fieldsGenqlSelection{ + adr?: boolean | number + apr?: boolean | number + dpr?: boolean | number + hltv_rating?: boolean | number + kast_pct?: boolean | number + kpr?: boolean | number + rounds_played?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "v_player_match_map_hltv" */ +export interface v_player_match_map_hltv_var_samp_order_by {adr?: (order_by | null),apr?: (order_by | null),dpr?: (order_by | null),hltv_rating?: (order_by | null),kast_pct?: (order_by | null),kpr?: (order_by | null),rounds_played?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface v_player_match_map_hltv_variance_fieldsGenqlSelection{ + adr?: boolean | number + apr?: boolean | number + dpr?: boolean | number + hltv_rating?: boolean | number + kast_pct?: boolean | number + kpr?: boolean | number + rounds_played?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "v_player_match_map_hltv" */ +export interface v_player_match_map_hltv_variance_order_by {adr?: (order_by | null),apr?: (order_by | null),dpr?: (order_by | null),hltv_rating?: (order_by | null),kast_pct?: (order_by | null),kpr?: (order_by | null),rounds_played?: (order_by | null),steam_id?: (order_by | null)} + + +/** columns and relationships of "v_player_match_map_roles" */ +export interface v_player_match_map_rolesGenqlSelection{ + adr?: boolean | number + awp_kills?: boolean | number + awp_share?: boolean | number + deaths?: boolean | number + dpr?: boolean | number + entry_rate?: boolean | number + flash_assists?: boolean | number + hltv_rating?: boolean | number + kast_pct?: boolean | number + kills?: boolean | number + kpr?: boolean | number + lineup_id?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + match_id?: boolean | number + /** An object relationship */ + match_map?: match_mapsGenqlSelection + match_map_id?: boolean | number + open_deaths?: boolean | number + open_kills?: boolean | number + opening_attempts?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + role?: boolean | number + rounds?: boolean | number + steam_id?: boolean | number + support_idx?: boolean | number + total_kills?: boolean | number + trade_kill_successes?: boolean | number + traded_death_successes?: boolean | number + util_damage?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "v_player_match_map_roles" */ +export interface v_player_match_map_roles_aggregateGenqlSelection{ + aggregate?: v_player_match_map_roles_aggregate_fieldsGenqlSelection + nodes?: v_player_match_map_rolesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "v_player_match_map_roles" */ +export interface v_player_match_map_roles_aggregate_fieldsGenqlSelection{ + avg?: v_player_match_map_roles_avg_fieldsGenqlSelection + count?: { __args: {columns?: (v_player_match_map_roles_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: v_player_match_map_roles_max_fieldsGenqlSelection + min?: v_player_match_map_roles_min_fieldsGenqlSelection + stddev?: v_player_match_map_roles_stddev_fieldsGenqlSelection + stddev_pop?: v_player_match_map_roles_stddev_pop_fieldsGenqlSelection + stddev_samp?: v_player_match_map_roles_stddev_samp_fieldsGenqlSelection + sum?: v_player_match_map_roles_sum_fieldsGenqlSelection + var_pop?: v_player_match_map_roles_var_pop_fieldsGenqlSelection + var_samp?: v_player_match_map_roles_var_samp_fieldsGenqlSelection + variance?: v_player_match_map_roles_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface v_player_match_map_roles_avg_fieldsGenqlSelection{ + adr?: boolean | number + awp_kills?: boolean | number + awp_share?: boolean | number + deaths?: boolean | number + dpr?: boolean | number + entry_rate?: boolean | number + flash_assists?: boolean | number + hltv_rating?: boolean | number + kast_pct?: boolean | number + kills?: boolean | number + kpr?: boolean | number + open_deaths?: boolean | number + open_kills?: boolean | number + opening_attempts?: boolean | number + rounds?: boolean | number + steam_id?: boolean | number + support_idx?: boolean | number + total_kills?: boolean | number + trade_kill_successes?: boolean | number + traded_death_successes?: boolean | number + util_damage?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "v_player_match_map_roles". All fields are combined with a logical 'AND'. */ +export interface v_player_match_map_roles_bool_exp {_and?: (v_player_match_map_roles_bool_exp[] | null),_not?: (v_player_match_map_roles_bool_exp | null),_or?: (v_player_match_map_roles_bool_exp[] | null),adr?: (numeric_comparison_exp | null),awp_kills?: (Int_comparison_exp | null),awp_share?: (numeric_comparison_exp | null),deaths?: (Int_comparison_exp | null),dpr?: (numeric_comparison_exp | null),entry_rate?: (numeric_comparison_exp | null),flash_assists?: (Int_comparison_exp | null),hltv_rating?: (numeric_comparison_exp | null),kast_pct?: (numeric_comparison_exp | null),kills?: (Int_comparison_exp | null),kpr?: (numeric_comparison_exp | null),lineup_id?: (uuid_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_id?: (uuid_comparison_exp | null),open_deaths?: (Int_comparison_exp | null),open_kills?: (Int_comparison_exp | null),opening_attempts?: (Int_comparison_exp | null),player?: (players_bool_exp | null),role?: (String_comparison_exp | null),rounds?: (Int_comparison_exp | null),steam_id?: (bigint_comparison_exp | null),support_idx?: (numeric_comparison_exp | null),total_kills?: (Int_comparison_exp | null),trade_kill_successes?: (Int_comparison_exp | null),traded_death_successes?: (Int_comparison_exp | null),util_damage?: (Int_comparison_exp | null)} + + +/** aggregate max on columns */ +export interface v_player_match_map_roles_max_fieldsGenqlSelection{ + adr?: boolean | number + awp_kills?: boolean | number + awp_share?: boolean | number + deaths?: boolean | number + dpr?: boolean | number + entry_rate?: boolean | number + flash_assists?: boolean | number + hltv_rating?: boolean | number + kast_pct?: boolean | number + kills?: boolean | number + kpr?: boolean | number + lineup_id?: boolean | number + match_id?: boolean | number + match_map_id?: boolean | number + open_deaths?: boolean | number + open_kills?: boolean | number + opening_attempts?: boolean | number + role?: boolean | number + rounds?: boolean | number + steam_id?: boolean | number + support_idx?: boolean | number + total_kills?: boolean | number + trade_kill_successes?: boolean | number + traded_death_successes?: boolean | number + util_damage?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface v_player_match_map_roles_min_fieldsGenqlSelection{ + adr?: boolean | number + awp_kills?: boolean | number + awp_share?: boolean | number + deaths?: boolean | number + dpr?: boolean | number + entry_rate?: boolean | number + flash_assists?: boolean | number + hltv_rating?: boolean | number + kast_pct?: boolean | number + kills?: boolean | number + kpr?: boolean | number + lineup_id?: boolean | number + match_id?: boolean | number + match_map_id?: boolean | number + open_deaths?: boolean | number + open_kills?: boolean | number + opening_attempts?: boolean | number + role?: boolean | number + rounds?: boolean | number + steam_id?: boolean | number + support_idx?: boolean | number + total_kills?: boolean | number + trade_kill_successes?: boolean | number + traded_death_successes?: boolean | number + util_damage?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Ordering options when selecting data from "v_player_match_map_roles". */ +export interface v_player_match_map_roles_order_by {adr?: (order_by | null),awp_kills?: (order_by | null),awp_share?: (order_by | null),deaths?: (order_by | null),dpr?: (order_by | null),entry_rate?: (order_by | null),flash_assists?: (order_by | null),hltv_rating?: (order_by | null),kast_pct?: (order_by | null),kills?: (order_by | null),kpr?: (order_by | null),lineup_id?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_id?: (order_by | null),open_deaths?: (order_by | null),open_kills?: (order_by | null),opening_attempts?: (order_by | null),player?: (players_order_by | null),role?: (order_by | null),rounds?: (order_by | null),steam_id?: (order_by | null),support_idx?: (order_by | null),total_kills?: (order_by | null),trade_kill_successes?: (order_by | null),traded_death_successes?: (order_by | null),util_damage?: (order_by | null)} + + +/** aggregate stddev on columns */ +export interface v_player_match_map_roles_stddev_fieldsGenqlSelection{ + adr?: boolean | number + awp_kills?: boolean | number + awp_share?: boolean | number + deaths?: boolean | number + dpr?: boolean | number + entry_rate?: boolean | number + flash_assists?: boolean | number + hltv_rating?: boolean | number + kast_pct?: boolean | number + kills?: boolean | number + kpr?: boolean | number + open_deaths?: boolean | number + open_kills?: boolean | number + opening_attempts?: boolean | number + rounds?: boolean | number + steam_id?: boolean | number + support_idx?: boolean | number + total_kills?: boolean | number + trade_kill_successes?: boolean | number + traded_death_successes?: boolean | number + util_damage?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface v_player_match_map_roles_stddev_pop_fieldsGenqlSelection{ + adr?: boolean | number + awp_kills?: boolean | number + awp_share?: boolean | number + deaths?: boolean | number + dpr?: boolean | number + entry_rate?: boolean | number + flash_assists?: boolean | number + hltv_rating?: boolean | number + kast_pct?: boolean | number + kills?: boolean | number + kpr?: boolean | number + open_deaths?: boolean | number + open_kills?: boolean | number + opening_attempts?: boolean | number + rounds?: boolean | number + steam_id?: boolean | number + support_idx?: boolean | number + total_kills?: boolean | number + trade_kill_successes?: boolean | number + traded_death_successes?: boolean | number + util_damage?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface v_player_match_map_roles_stddev_samp_fieldsGenqlSelection{ + adr?: boolean | number + awp_kills?: boolean | number + awp_share?: boolean | number + deaths?: boolean | number + dpr?: boolean | number + entry_rate?: boolean | number + flash_assists?: boolean | number + hltv_rating?: boolean | number + kast_pct?: boolean | number + kills?: boolean | number + kpr?: boolean | number + open_deaths?: boolean | number + open_kills?: boolean | number + opening_attempts?: boolean | number + rounds?: boolean | number + steam_id?: boolean | number + support_idx?: boolean | number + total_kills?: boolean | number + trade_kill_successes?: boolean | number + traded_death_successes?: boolean | number + util_damage?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "v_player_match_map_roles" */ +export interface v_player_match_map_roles_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: v_player_match_map_roles_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface v_player_match_map_roles_stream_cursor_value_input {adr?: (Scalars['numeric'] | null),awp_kills?: (Scalars['Int'] | null),awp_share?: (Scalars['numeric'] | null),deaths?: (Scalars['Int'] | null),dpr?: (Scalars['numeric'] | null),entry_rate?: (Scalars['numeric'] | null),flash_assists?: (Scalars['Int'] | null),hltv_rating?: (Scalars['numeric'] | null),kast_pct?: (Scalars['numeric'] | null),kills?: (Scalars['Int'] | null),kpr?: (Scalars['numeric'] | null),lineup_id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),open_deaths?: (Scalars['Int'] | null),open_kills?: (Scalars['Int'] | null),opening_attempts?: (Scalars['Int'] | null),role?: (Scalars['String'] | null),rounds?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null),support_idx?: (Scalars['numeric'] | null),total_kills?: (Scalars['Int'] | null),trade_kill_successes?: (Scalars['Int'] | null),traded_death_successes?: (Scalars['Int'] | null),util_damage?: (Scalars['Int'] | null)} + + +/** aggregate sum on columns */ +export interface v_player_match_map_roles_sum_fieldsGenqlSelection{ + adr?: boolean | number + awp_kills?: boolean | number + awp_share?: boolean | number + deaths?: boolean | number + dpr?: boolean | number + entry_rate?: boolean | number + flash_assists?: boolean | number + hltv_rating?: boolean | number + kast_pct?: boolean | number + kills?: boolean | number + kpr?: boolean | number + open_deaths?: boolean | number + open_kills?: boolean | number + opening_attempts?: boolean | number + rounds?: boolean | number + steam_id?: boolean | number + support_idx?: boolean | number + total_kills?: boolean | number + trade_kill_successes?: boolean | number + traded_death_successes?: boolean | number + util_damage?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_pop on columns */ +export interface v_player_match_map_roles_var_pop_fieldsGenqlSelection{ + adr?: boolean | number + awp_kills?: boolean | number + awp_share?: boolean | number + deaths?: boolean | number + dpr?: boolean | number + entry_rate?: boolean | number + flash_assists?: boolean | number + hltv_rating?: boolean | number + kast_pct?: boolean | number + kills?: boolean | number + kpr?: boolean | number + open_deaths?: boolean | number + open_kills?: boolean | number + opening_attempts?: boolean | number + rounds?: boolean | number + steam_id?: boolean | number + support_idx?: boolean | number + total_kills?: boolean | number + trade_kill_successes?: boolean | number + traded_death_successes?: boolean | number + util_damage?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface v_player_match_map_roles_var_samp_fieldsGenqlSelection{ + adr?: boolean | number + awp_kills?: boolean | number + awp_share?: boolean | number + deaths?: boolean | number + dpr?: boolean | number + entry_rate?: boolean | number + flash_assists?: boolean | number + hltv_rating?: boolean | number + kast_pct?: boolean | number + kills?: boolean | number + kpr?: boolean | number + open_deaths?: boolean | number + open_kills?: boolean | number + opening_attempts?: boolean | number + rounds?: boolean | number + steam_id?: boolean | number + support_idx?: boolean | number + total_kills?: boolean | number + trade_kill_successes?: boolean | number + traded_death_successes?: boolean | number + util_damage?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface v_player_match_map_roles_variance_fieldsGenqlSelection{ + adr?: boolean | number + awp_kills?: boolean | number + awp_share?: boolean | number + deaths?: boolean | number + dpr?: boolean | number + entry_rate?: boolean | number + flash_assists?: boolean | number + hltv_rating?: boolean | number + kast_pct?: boolean | number + kills?: boolean | number + kpr?: boolean | number + open_deaths?: boolean | number + open_kills?: boolean | number + opening_attempts?: boolean | number + rounds?: boolean | number + steam_id?: boolean | number + support_idx?: boolean | number + total_kills?: boolean | number + trade_kill_successes?: boolean | number + traded_death_successes?: boolean | number + util_damage?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "v_player_match_performance" */ +export interface v_player_match_performanceGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + kills?: boolean | number + /** An object relationship */ + map?: mapsGenqlSelection + map_id?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + match_created_at?: boolean | number + match_id?: boolean | number + match_result?: boolean | number + player_steam_id?: boolean | number + source?: boolean | number + type?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "v_player_match_performance" */ +export interface v_player_match_performance_aggregateGenqlSelection{ + aggregate?: v_player_match_performance_aggregate_fieldsGenqlSelection + nodes?: v_player_match_performanceGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "v_player_match_performance" */ +export interface v_player_match_performance_aggregate_fieldsGenqlSelection{ + avg?: v_player_match_performance_avg_fieldsGenqlSelection + count?: { __args: {columns?: (v_player_match_performance_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: v_player_match_performance_max_fieldsGenqlSelection + min?: v_player_match_performance_min_fieldsGenqlSelection + stddev?: v_player_match_performance_stddev_fieldsGenqlSelection + stddev_pop?: v_player_match_performance_stddev_pop_fieldsGenqlSelection + stddev_samp?: v_player_match_performance_stddev_samp_fieldsGenqlSelection + sum?: v_player_match_performance_sum_fieldsGenqlSelection + var_pop?: v_player_match_performance_var_pop_fieldsGenqlSelection + var_samp?: v_player_match_performance_var_samp_fieldsGenqlSelection + variance?: v_player_match_performance_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface v_player_match_performance_avg_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + kills?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "v_player_match_performance". All fields are combined with a logical 'AND'. */ +export interface v_player_match_performance_bool_exp {_and?: (v_player_match_performance_bool_exp[] | null),_not?: (v_player_match_performance_bool_exp | null),_or?: (v_player_match_performance_bool_exp[] | null),assists?: (Int_comparison_exp | null),deaths?: (Int_comparison_exp | null),kills?: (Int_comparison_exp | null),map?: (maps_bool_exp | null),map_id?: (uuid_comparison_exp | null),match?: (matches_bool_exp | null),match_created_at?: (timestamptz_comparison_exp | null),match_id?: (uuid_comparison_exp | null),match_result?: (String_comparison_exp | null),player_steam_id?: (bigint_comparison_exp | null),source?: (String_comparison_exp | null),type?: (String_comparison_exp | null)} + + +/** aggregate max on columns */ +export interface v_player_match_performance_max_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + kills?: boolean | number + map_id?: boolean | number + match_created_at?: boolean | number + match_id?: boolean | number + match_result?: boolean | number + player_steam_id?: boolean | number + source?: boolean | number + type?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface v_player_match_performance_min_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + kills?: boolean | number + map_id?: boolean | number + match_created_at?: boolean | number + match_id?: boolean | number + match_result?: boolean | number + player_steam_id?: boolean | number + source?: boolean | number + type?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Ordering options when selecting data from "v_player_match_performance". */ +export interface v_player_match_performance_order_by {assists?: (order_by | null),deaths?: (order_by | null),kills?: (order_by | null),map?: (maps_order_by | null),map_id?: (order_by | null),match?: (matches_order_by | null),match_created_at?: (order_by | null),match_id?: (order_by | null),match_result?: (order_by | null),player_steam_id?: (order_by | null),source?: (order_by | null),type?: (order_by | null)} + + +/** aggregate stddev on columns */ +export interface v_player_match_performance_stddev_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + kills?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface v_player_match_performance_stddev_pop_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + kills?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface v_player_match_performance_stddev_samp_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + kills?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "v_player_match_performance" */ +export interface v_player_match_performance_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: v_player_match_performance_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface v_player_match_performance_stream_cursor_value_input {assists?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),kills?: (Scalars['Int'] | null),map_id?: (Scalars['uuid'] | null),match_created_at?: (Scalars['timestamptz'] | null),match_id?: (Scalars['uuid'] | null),match_result?: (Scalars['String'] | null),player_steam_id?: (Scalars['bigint'] | null),source?: (Scalars['String'] | null),type?: (Scalars['String'] | null)} + + +/** aggregate sum on columns */ +export interface v_player_match_performance_sum_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + kills?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_pop on columns */ +export interface v_player_match_performance_var_pop_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + kills?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface v_player_match_performance_var_samp_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + kills?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface v_player_match_performance_variance_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + kills?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "v_player_match_rating" */ +export interface v_player_match_ratingGenqlSelection{ + adr?: boolean | number + dpr?: boolean | number + hltv_rating?: boolean | number + kast_pct?: boolean | number + kpr?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + match_id?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + rounds_played?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "v_player_match_rating" */ +export interface v_player_match_rating_aggregateGenqlSelection{ + aggregate?: v_player_match_rating_aggregate_fieldsGenqlSelection + nodes?: v_player_match_ratingGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "v_player_match_rating" */ +export interface v_player_match_rating_aggregate_fieldsGenqlSelection{ + avg?: v_player_match_rating_avg_fieldsGenqlSelection + count?: { __args: {columns?: (v_player_match_rating_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: v_player_match_rating_max_fieldsGenqlSelection + min?: v_player_match_rating_min_fieldsGenqlSelection + stddev?: v_player_match_rating_stddev_fieldsGenqlSelection + stddev_pop?: v_player_match_rating_stddev_pop_fieldsGenqlSelection + stddev_samp?: v_player_match_rating_stddev_samp_fieldsGenqlSelection + sum?: v_player_match_rating_sum_fieldsGenqlSelection + var_pop?: v_player_match_rating_var_pop_fieldsGenqlSelection + var_samp?: v_player_match_rating_var_samp_fieldsGenqlSelection + variance?: v_player_match_rating_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface v_player_match_rating_avg_fieldsGenqlSelection{ + adr?: boolean | number + dpr?: boolean | number + hltv_rating?: boolean | number + kast_pct?: boolean | number + kpr?: boolean | number + rounds_played?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "v_player_match_rating". All fields are combined with a logical 'AND'. */ +export interface v_player_match_rating_bool_exp {_and?: (v_player_match_rating_bool_exp[] | null),_not?: (v_player_match_rating_bool_exp | null),_or?: (v_player_match_rating_bool_exp[] | null),adr?: (numeric_comparison_exp | null),dpr?: (numeric_comparison_exp | null),hltv_rating?: (numeric_comparison_exp | null),kast_pct?: (numeric_comparison_exp | null),kpr?: (numeric_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),player?: (players_bool_exp | null),rounds_played?: (Int_comparison_exp | null),steam_id?: (bigint_comparison_exp | null)} + + +/** aggregate max on columns */ +export interface v_player_match_rating_max_fieldsGenqlSelection{ + adr?: boolean | number + dpr?: boolean | number + hltv_rating?: boolean | number + kast_pct?: boolean | number + kpr?: boolean | number + match_id?: boolean | number + rounds_played?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface v_player_match_rating_min_fieldsGenqlSelection{ + adr?: boolean | number + dpr?: boolean | number + hltv_rating?: boolean | number + kast_pct?: boolean | number + kpr?: boolean | number + match_id?: boolean | number + rounds_played?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Ordering options when selecting data from "v_player_match_rating". */ +export interface v_player_match_rating_order_by {adr?: (order_by | null),dpr?: (order_by | null),hltv_rating?: (order_by | null),kast_pct?: (order_by | null),kpr?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),player?: (players_order_by | null),rounds_played?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate stddev on columns */ +export interface v_player_match_rating_stddev_fieldsGenqlSelection{ + adr?: boolean | number + dpr?: boolean | number + hltv_rating?: boolean | number + kast_pct?: boolean | number + kpr?: boolean | number + rounds_played?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface v_player_match_rating_stddev_pop_fieldsGenqlSelection{ + adr?: boolean | number + dpr?: boolean | number + hltv_rating?: boolean | number + kast_pct?: boolean | number + kpr?: boolean | number + rounds_played?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface v_player_match_rating_stddev_samp_fieldsGenqlSelection{ + adr?: boolean | number + dpr?: boolean | number + hltv_rating?: boolean | number + kast_pct?: boolean | number + kpr?: boolean | number + rounds_played?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "v_player_match_rating" */ +export interface v_player_match_rating_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: v_player_match_rating_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface v_player_match_rating_stream_cursor_value_input {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)} + + +/** aggregate sum on columns */ +export interface v_player_match_rating_sum_fieldsGenqlSelection{ + adr?: boolean | number + dpr?: boolean | number + hltv_rating?: boolean | number + kast_pct?: boolean | number + kpr?: boolean | number + rounds_played?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_pop on columns */ +export interface v_player_match_rating_var_pop_fieldsGenqlSelection{ + adr?: boolean | number + dpr?: boolean | number + hltv_rating?: boolean | number + kast_pct?: boolean | number + kpr?: boolean | number + rounds_played?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface v_player_match_rating_var_samp_fieldsGenqlSelection{ + adr?: boolean | number + dpr?: boolean | number + hltv_rating?: boolean | number + kast_pct?: boolean | number + kpr?: boolean | number + rounds_played?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface v_player_match_rating_variance_fieldsGenqlSelection{ + adr?: boolean | number + dpr?: boolean | number + hltv_rating?: boolean | number + kast_pct?: boolean | number + kpr?: boolean | number + rounds_played?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "v_player_multi_kills" */ +export interface v_player_multi_killsGenqlSelection{ + attacker_steam_id?: boolean | number + kills?: boolean | number + match_id?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "v_player_multi_kills" */ +export interface v_player_multi_kills_aggregateGenqlSelection{ + aggregate?: v_player_multi_kills_aggregate_fieldsGenqlSelection + nodes?: v_player_multi_killsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface v_player_multi_kills_aggregate_bool_exp {count?: (v_player_multi_kills_aggregate_bool_exp_count | null)} + +export interface v_player_multi_kills_aggregate_bool_exp_count {arguments?: (v_player_multi_kills_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (v_player_multi_kills_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "v_player_multi_kills" */ +export interface v_player_multi_kills_aggregate_fieldsGenqlSelection{ + avg?: v_player_multi_kills_avg_fieldsGenqlSelection + count?: { __args: {columns?: (v_player_multi_kills_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: v_player_multi_kills_max_fieldsGenqlSelection + min?: v_player_multi_kills_min_fieldsGenqlSelection + stddev?: v_player_multi_kills_stddev_fieldsGenqlSelection + stddev_pop?: v_player_multi_kills_stddev_pop_fieldsGenqlSelection + stddev_samp?: v_player_multi_kills_stddev_samp_fieldsGenqlSelection + sum?: v_player_multi_kills_sum_fieldsGenqlSelection + var_pop?: v_player_multi_kills_var_pop_fieldsGenqlSelection + var_samp?: v_player_multi_kills_var_samp_fieldsGenqlSelection + variance?: v_player_multi_kills_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "v_player_multi_kills" */ +export interface v_player_multi_kills_aggregate_order_by {avg?: (v_player_multi_kills_avg_order_by | null),count?: (order_by | null),max?: (v_player_multi_kills_max_order_by | null),min?: (v_player_multi_kills_min_order_by | null),stddev?: (v_player_multi_kills_stddev_order_by | null),stddev_pop?: (v_player_multi_kills_stddev_pop_order_by | null),stddev_samp?: (v_player_multi_kills_stddev_samp_order_by | null),sum?: (v_player_multi_kills_sum_order_by | null),var_pop?: (v_player_multi_kills_var_pop_order_by | null),var_samp?: (v_player_multi_kills_var_samp_order_by | null),variance?: (v_player_multi_kills_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "v_player_multi_kills" */ +export interface v_player_multi_kills_arr_rel_insert_input {data: v_player_multi_kills_insert_input[]} + + +/** aggregate avg on columns */ +export interface v_player_multi_kills_avg_fieldsGenqlSelection{ + attacker_steam_id?: boolean | number + kills?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "v_player_multi_kills" */ +export interface v_player_multi_kills_avg_order_by {attacker_steam_id?: (order_by | null),kills?: (order_by | null),round?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "v_player_multi_kills". All fields are combined with a logical 'AND'. */ +export interface v_player_multi_kills_bool_exp {_and?: (v_player_multi_kills_bool_exp[] | null),_not?: (v_player_multi_kills_bool_exp | null),_or?: (v_player_multi_kills_bool_exp[] | null),attacker_steam_id?: (bigint_comparison_exp | null),kills?: (bigint_comparison_exp | null),match_id?: (uuid_comparison_exp | null),round?: (Int_comparison_exp | null)} + + +/** input type for inserting data into table "v_player_multi_kills" */ +export interface v_player_multi_kills_insert_input {attacker_steam_id?: (Scalars['bigint'] | null),kills?: (Scalars['bigint'] | null),match_id?: (Scalars['uuid'] | null),round?: (Scalars['Int'] | null)} + + +/** aggregate max on columns */ +export interface v_player_multi_kills_max_fieldsGenqlSelection{ + attacker_steam_id?: boolean | number + kills?: boolean | number + match_id?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "v_player_multi_kills" */ +export interface v_player_multi_kills_max_order_by {attacker_steam_id?: (order_by | null),kills?: (order_by | null),match_id?: (order_by | null),round?: (order_by | null)} + + +/** aggregate min on columns */ +export interface v_player_multi_kills_min_fieldsGenqlSelection{ + attacker_steam_id?: boolean | number + kills?: boolean | number + match_id?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "v_player_multi_kills" */ +export interface v_player_multi_kills_min_order_by {attacker_steam_id?: (order_by | null),kills?: (order_by | null),match_id?: (order_by | null),round?: (order_by | null)} + + +/** Ordering options when selecting data from "v_player_multi_kills". */ +export interface v_player_multi_kills_order_by {attacker_steam_id?: (order_by | null),kills?: (order_by | null),match_id?: (order_by | null),round?: (order_by | null)} + + +/** aggregate stddev on columns */ +export interface v_player_multi_kills_stddev_fieldsGenqlSelection{ + attacker_steam_id?: boolean | number + kills?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "v_player_multi_kills" */ +export interface v_player_multi_kills_stddev_order_by {attacker_steam_id?: (order_by | null),kills?: (order_by | null),round?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface v_player_multi_kills_stddev_pop_fieldsGenqlSelection{ + attacker_steam_id?: boolean | number + kills?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "v_player_multi_kills" */ +export interface v_player_multi_kills_stddev_pop_order_by {attacker_steam_id?: (order_by | null),kills?: (order_by | null),round?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface v_player_multi_kills_stddev_samp_fieldsGenqlSelection{ + attacker_steam_id?: boolean | number + kills?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "v_player_multi_kills" */ +export interface v_player_multi_kills_stddev_samp_order_by {attacker_steam_id?: (order_by | null),kills?: (order_by | null),round?: (order_by | null)} + + +/** Streaming cursor of the table "v_player_multi_kills" */ +export interface v_player_multi_kills_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: v_player_multi_kills_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface v_player_multi_kills_stream_cursor_value_input {attacker_steam_id?: (Scalars['bigint'] | null),kills?: (Scalars['bigint'] | null),match_id?: (Scalars['uuid'] | null),round?: (Scalars['Int'] | null)} + + +/** aggregate sum on columns */ +export interface v_player_multi_kills_sum_fieldsGenqlSelection{ + attacker_steam_id?: boolean | number + kills?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "v_player_multi_kills" */ +export interface v_player_multi_kills_sum_order_by {attacker_steam_id?: (order_by | null),kills?: (order_by | null),round?: (order_by | null)} + + +/** aggregate var_pop on columns */ +export interface v_player_multi_kills_var_pop_fieldsGenqlSelection{ + attacker_steam_id?: boolean | number + kills?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "v_player_multi_kills" */ +export interface v_player_multi_kills_var_pop_order_by {attacker_steam_id?: (order_by | null),kills?: (order_by | null),round?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface v_player_multi_kills_var_samp_fieldsGenqlSelection{ + attacker_steam_id?: boolean | number + kills?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "v_player_multi_kills" */ +export interface v_player_multi_kills_var_samp_order_by {attacker_steam_id?: (order_by | null),kills?: (order_by | null),round?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface v_player_multi_kills_variance_fieldsGenqlSelection{ + attacker_steam_id?: boolean | number + kills?: boolean | number + round?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "v_player_multi_kills" */ +export interface v_player_multi_kills_variance_order_by {attacker_steam_id?: (order_by | null),kills?: (order_by | null),round?: (order_by | null)} + + +/** columns and relationships of "v_player_queue_partners" */ +export interface v_player_queue_partnersGenqlSelection{ + first_played_at?: boolean | number + last_played_at?: boolean | number + matches_together?: boolean | number + /** An object relationship */ + partner?: playersGenqlSelection + partner_steam_id?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + steam_id?: boolean | number + wins_together?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "v_player_queue_partners" */ +export interface v_player_queue_partners_aggregateGenqlSelection{ + aggregate?: v_player_queue_partners_aggregate_fieldsGenqlSelection + nodes?: v_player_queue_partnersGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "v_player_queue_partners" */ +export interface v_player_queue_partners_aggregate_fieldsGenqlSelection{ + avg?: v_player_queue_partners_avg_fieldsGenqlSelection + count?: { __args: {columns?: (v_player_queue_partners_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: v_player_queue_partners_max_fieldsGenqlSelection + min?: v_player_queue_partners_min_fieldsGenqlSelection + stddev?: v_player_queue_partners_stddev_fieldsGenqlSelection + stddev_pop?: v_player_queue_partners_stddev_pop_fieldsGenqlSelection + stddev_samp?: v_player_queue_partners_stddev_samp_fieldsGenqlSelection + sum?: v_player_queue_partners_sum_fieldsGenqlSelection + var_pop?: v_player_queue_partners_var_pop_fieldsGenqlSelection + var_samp?: v_player_queue_partners_var_samp_fieldsGenqlSelection + variance?: v_player_queue_partners_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface v_player_queue_partners_avg_fieldsGenqlSelection{ + matches_together?: boolean | number + partner_steam_id?: boolean | number + steam_id?: boolean | number + wins_together?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "v_player_queue_partners". All fields are combined with a logical 'AND'. */ +export interface v_player_queue_partners_bool_exp {_and?: (v_player_queue_partners_bool_exp[] | null),_not?: (v_player_queue_partners_bool_exp | null),_or?: (v_player_queue_partners_bool_exp[] | null),first_played_at?: (timestamptz_comparison_exp | null),last_played_at?: (timestamptz_comparison_exp | null),matches_together?: (Int_comparison_exp | null),partner?: (players_bool_exp | null),partner_steam_id?: (bigint_comparison_exp | null),player?: (players_bool_exp | null),steam_id?: (bigint_comparison_exp | null),wins_together?: (Int_comparison_exp | null)} + + +/** aggregate max on columns */ +export interface v_player_queue_partners_max_fieldsGenqlSelection{ + first_played_at?: boolean | number + last_played_at?: boolean | number + matches_together?: boolean | number + partner_steam_id?: boolean | number + steam_id?: boolean | number + wins_together?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface v_player_queue_partners_min_fieldsGenqlSelection{ + first_played_at?: boolean | number + last_played_at?: boolean | number + matches_together?: boolean | number + partner_steam_id?: boolean | number + steam_id?: boolean | number + wins_together?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Ordering options when selecting data from "v_player_queue_partners". */ +export interface v_player_queue_partners_order_by {first_played_at?: (order_by | null),last_played_at?: (order_by | null),matches_together?: (order_by | null),partner?: (players_order_by | null),partner_steam_id?: (order_by | null),player?: (players_order_by | null),steam_id?: (order_by | null),wins_together?: (order_by | null)} + + +/** aggregate stddev on columns */ +export interface v_player_queue_partners_stddev_fieldsGenqlSelection{ + matches_together?: boolean | number + partner_steam_id?: boolean | number + steam_id?: boolean | number + wins_together?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface v_player_queue_partners_stddev_pop_fieldsGenqlSelection{ + matches_together?: boolean | number + partner_steam_id?: boolean | number + steam_id?: boolean | number + wins_together?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface v_player_queue_partners_stddev_samp_fieldsGenqlSelection{ + matches_together?: boolean | number + partner_steam_id?: boolean | number + steam_id?: boolean | number + wins_together?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "v_player_queue_partners" */ +export interface v_player_queue_partners_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: v_player_queue_partners_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface v_player_queue_partners_stream_cursor_value_input {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)} + + +/** aggregate sum on columns */ +export interface v_player_queue_partners_sum_fieldsGenqlSelection{ + matches_together?: boolean | number + partner_steam_id?: boolean | number + steam_id?: boolean | number + wins_together?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_pop on columns */ +export interface v_player_queue_partners_var_pop_fieldsGenqlSelection{ + matches_together?: boolean | number + partner_steam_id?: boolean | number + steam_id?: boolean | number + wins_together?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface v_player_queue_partners_var_samp_fieldsGenqlSelection{ + matches_together?: boolean | number + partner_steam_id?: boolean | number + steam_id?: boolean | number + wins_together?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface v_player_queue_partners_variance_fieldsGenqlSelection{ + matches_together?: boolean | number + partner_steam_id?: boolean | number + steam_id?: boolean | number + wins_together?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "v_player_weapon_damage" */ +export interface v_player_weapon_damageGenqlSelection{ + damage?: boolean | number + hits?: boolean | number + player_steam_id?: boolean | number + source?: boolean | number + type?: boolean | number + with?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "v_player_weapon_damage" */ +export interface v_player_weapon_damage_aggregateGenqlSelection{ + aggregate?: v_player_weapon_damage_aggregate_fieldsGenqlSelection + nodes?: v_player_weapon_damageGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "v_player_weapon_damage" */ +export interface v_player_weapon_damage_aggregate_fieldsGenqlSelection{ + avg?: v_player_weapon_damage_avg_fieldsGenqlSelection + count?: { __args: {columns?: (v_player_weapon_damage_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: v_player_weapon_damage_max_fieldsGenqlSelection + min?: v_player_weapon_damage_min_fieldsGenqlSelection + stddev?: v_player_weapon_damage_stddev_fieldsGenqlSelection + stddev_pop?: v_player_weapon_damage_stddev_pop_fieldsGenqlSelection + stddev_samp?: v_player_weapon_damage_stddev_samp_fieldsGenqlSelection + sum?: v_player_weapon_damage_sum_fieldsGenqlSelection + var_pop?: v_player_weapon_damage_var_pop_fieldsGenqlSelection + var_samp?: v_player_weapon_damage_var_samp_fieldsGenqlSelection + variance?: v_player_weapon_damage_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface v_player_weapon_damage_avg_fieldsGenqlSelection{ + damage?: boolean | number + hits?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "v_player_weapon_damage". All fields are combined with a logical 'AND'. */ +export interface v_player_weapon_damage_bool_exp {_and?: (v_player_weapon_damage_bool_exp[] | null),_not?: (v_player_weapon_damage_bool_exp | null),_or?: (v_player_weapon_damage_bool_exp[] | null),damage?: (bigint_comparison_exp | null),hits?: (bigint_comparison_exp | null),player_steam_id?: (bigint_comparison_exp | null),source?: (String_comparison_exp | null),type?: (String_comparison_exp | null),with?: (String_comparison_exp | null)} + + +/** aggregate max on columns */ +export interface v_player_weapon_damage_max_fieldsGenqlSelection{ + damage?: boolean | number + hits?: boolean | number + player_steam_id?: boolean | number + source?: boolean | number + type?: boolean | number + with?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface v_player_weapon_damage_min_fieldsGenqlSelection{ + damage?: boolean | number + hits?: boolean | number + player_steam_id?: boolean | number + source?: boolean | number + type?: boolean | number + with?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Ordering options when selecting data from "v_player_weapon_damage". */ +export interface v_player_weapon_damage_order_by {damage?: (order_by | null),hits?: (order_by | null),player_steam_id?: (order_by | null),source?: (order_by | null),type?: (order_by | null),with?: (order_by | null)} + + +/** aggregate stddev on columns */ +export interface v_player_weapon_damage_stddev_fieldsGenqlSelection{ + damage?: boolean | number + hits?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface v_player_weapon_damage_stddev_pop_fieldsGenqlSelection{ + damage?: boolean | number + hits?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface v_player_weapon_damage_stddev_samp_fieldsGenqlSelection{ + damage?: boolean | number + hits?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "v_player_weapon_damage" */ +export interface v_player_weapon_damage_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: v_player_weapon_damage_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface v_player_weapon_damage_stream_cursor_value_input {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)} + + +/** aggregate sum on columns */ +export interface v_player_weapon_damage_sum_fieldsGenqlSelection{ + damage?: boolean | number + hits?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_pop on columns */ +export interface v_player_weapon_damage_var_pop_fieldsGenqlSelection{ + damage?: boolean | number + hits?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface v_player_weapon_damage_var_samp_fieldsGenqlSelection{ + damage?: boolean | number + hits?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface v_player_weapon_damage_variance_fieldsGenqlSelection{ + damage?: boolean | number + hits?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "v_player_weapon_kills" */ +export interface v_player_weapon_killsGenqlSelection{ + kill_count?: boolean | number + player_steam_id?: boolean | number + rounds?: boolean | number + source?: boolean | number + type?: boolean | number + with?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "v_player_weapon_kills" */ +export interface v_player_weapon_kills_aggregateGenqlSelection{ + aggregate?: v_player_weapon_kills_aggregate_fieldsGenqlSelection + nodes?: v_player_weapon_killsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "v_player_weapon_kills" */ +export interface v_player_weapon_kills_aggregate_fieldsGenqlSelection{ + avg?: v_player_weapon_kills_avg_fieldsGenqlSelection + count?: { __args: {columns?: (v_player_weapon_kills_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: v_player_weapon_kills_max_fieldsGenqlSelection + min?: v_player_weapon_kills_min_fieldsGenqlSelection + stddev?: v_player_weapon_kills_stddev_fieldsGenqlSelection + stddev_pop?: v_player_weapon_kills_stddev_pop_fieldsGenqlSelection + stddev_samp?: v_player_weapon_kills_stddev_samp_fieldsGenqlSelection + sum?: v_player_weapon_kills_sum_fieldsGenqlSelection + var_pop?: v_player_weapon_kills_var_pop_fieldsGenqlSelection + var_samp?: v_player_weapon_kills_var_samp_fieldsGenqlSelection + variance?: v_player_weapon_kills_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface v_player_weapon_kills_avg_fieldsGenqlSelection{ + kill_count?: boolean | number + player_steam_id?: boolean | number + rounds?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "v_player_weapon_kills". All fields are combined with a logical 'AND'. */ +export interface v_player_weapon_kills_bool_exp {_and?: (v_player_weapon_kills_bool_exp[] | null),_not?: (v_player_weapon_kills_bool_exp | null),_or?: (v_player_weapon_kills_bool_exp[] | null),kill_count?: (bigint_comparison_exp | null),player_steam_id?: (bigint_comparison_exp | null),rounds?: (bigint_comparison_exp | null),source?: (String_comparison_exp | null),type?: (String_comparison_exp | null),with?: (String_comparison_exp | null)} + + +/** aggregate max on columns */ +export interface v_player_weapon_kills_max_fieldsGenqlSelection{ + kill_count?: boolean | number + player_steam_id?: boolean | number + rounds?: boolean | number + source?: boolean | number + type?: boolean | number + with?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface v_player_weapon_kills_min_fieldsGenqlSelection{ + kill_count?: boolean | number + player_steam_id?: boolean | number + rounds?: boolean | number + source?: boolean | number + type?: boolean | number + with?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Ordering options when selecting data from "v_player_weapon_kills". */ +export interface v_player_weapon_kills_order_by {kill_count?: (order_by | null),player_steam_id?: (order_by | null),rounds?: (order_by | null),source?: (order_by | null),type?: (order_by | null),with?: (order_by | null)} + + +/** aggregate stddev on columns */ +export interface v_player_weapon_kills_stddev_fieldsGenqlSelection{ + kill_count?: boolean | number + player_steam_id?: boolean | number + rounds?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface v_player_weapon_kills_stddev_pop_fieldsGenqlSelection{ + kill_count?: boolean | number + player_steam_id?: boolean | number + rounds?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface v_player_weapon_kills_stddev_samp_fieldsGenqlSelection{ + kill_count?: boolean | number + player_steam_id?: boolean | number + rounds?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "v_player_weapon_kills" */ +export interface v_player_weapon_kills_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: v_player_weapon_kills_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface v_player_weapon_kills_stream_cursor_value_input {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)} + + +/** aggregate sum on columns */ +export interface v_player_weapon_kills_sum_fieldsGenqlSelection{ + kill_count?: boolean | number + player_steam_id?: boolean | number + rounds?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_pop on columns */ +export interface v_player_weapon_kills_var_pop_fieldsGenqlSelection{ + kill_count?: boolean | number + player_steam_id?: boolean | number + rounds?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface v_player_weapon_kills_var_samp_fieldsGenqlSelection{ + kill_count?: boolean | number + player_steam_id?: boolean | number + rounds?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface v_player_weapon_kills_variance_fieldsGenqlSelection{ + kill_count?: boolean | number + player_steam_id?: boolean | number + rounds?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "v_pool_maps" */ +export interface v_pool_mapsGenqlSelection{ + active_pool?: boolean | number + id?: boolean | number + label?: boolean | number + /** An object relationship */ + map_pool?: map_poolsGenqlSelection + map_pool_id?: boolean | number + name?: boolean | number + patch?: boolean | number + poster?: boolean | number + type?: boolean | number + workshop_map_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "v_pool_maps" */ +export interface v_pool_maps_aggregateGenqlSelection{ + aggregate?: v_pool_maps_aggregate_fieldsGenqlSelection + nodes?: v_pool_mapsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface v_pool_maps_aggregate_bool_exp {bool_and?: (v_pool_maps_aggregate_bool_exp_bool_and | null),bool_or?: (v_pool_maps_aggregate_bool_exp_bool_or | null),count?: (v_pool_maps_aggregate_bool_exp_count | null)} + +export interface v_pool_maps_aggregate_bool_exp_bool_and {arguments: v_pool_maps_select_column_v_pool_maps_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_pool_maps_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface v_pool_maps_aggregate_bool_exp_bool_or {arguments: v_pool_maps_select_column_v_pool_maps_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_pool_maps_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface v_pool_maps_aggregate_bool_exp_count {arguments?: (v_pool_maps_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (v_pool_maps_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "v_pool_maps" */ +export interface v_pool_maps_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (v_pool_maps_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: v_pool_maps_max_fieldsGenqlSelection + min?: v_pool_maps_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "v_pool_maps" */ +export interface v_pool_maps_aggregate_order_by {count?: (order_by | null),max?: (v_pool_maps_max_order_by | null),min?: (v_pool_maps_min_order_by | null)} + + +/** input type for inserting array relation for remote table "v_pool_maps" */ +export interface v_pool_maps_arr_rel_insert_input {data: v_pool_maps_insert_input[]} + + +/** Boolean expression to filter rows from the table "v_pool_maps". All fields are combined with a logical 'AND'. */ +export interface v_pool_maps_bool_exp {_and?: (v_pool_maps_bool_exp[] | null),_not?: (v_pool_maps_bool_exp | null),_or?: (v_pool_maps_bool_exp[] | null),active_pool?: (Boolean_comparison_exp | null),id?: (uuid_comparison_exp | null),label?: (String_comparison_exp | null),map_pool?: (map_pools_bool_exp | null),map_pool_id?: (uuid_comparison_exp | null),name?: (String_comparison_exp | null),patch?: (String_comparison_exp | null),poster?: (String_comparison_exp | null),type?: (String_comparison_exp | null),workshop_map_id?: (String_comparison_exp | null)} + + +/** input type for inserting data into table "v_pool_maps" */ +export interface v_pool_maps_insert_input {active_pool?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),label?: (Scalars['String'] | null),map_pool?: (map_pools_obj_rel_insert_input | 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)} + + +/** aggregate max on columns */ +export interface v_pool_maps_max_fieldsGenqlSelection{ + id?: boolean | number + label?: boolean | number + map_pool_id?: boolean | number + name?: boolean | number + patch?: boolean | number + poster?: boolean | number + type?: boolean | number + workshop_map_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "v_pool_maps" */ +export interface v_pool_maps_max_order_by {id?: (order_by | null),label?: (order_by | null),map_pool_id?: (order_by | null),name?: (order_by | null),patch?: (order_by | null),poster?: (order_by | null),type?: (order_by | null),workshop_map_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface v_pool_maps_min_fieldsGenqlSelection{ + id?: boolean | number + label?: boolean | number + map_pool_id?: boolean | number + name?: boolean | number + patch?: boolean | number + poster?: boolean | number + type?: boolean | number + workshop_map_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "v_pool_maps" */ +export interface v_pool_maps_min_order_by {id?: (order_by | null),label?: (order_by | null),map_pool_id?: (order_by | null),name?: (order_by | null),patch?: (order_by | null),poster?: (order_by | null),type?: (order_by | null),workshop_map_id?: (order_by | null)} + + +/** response of any mutation on the table "v_pool_maps" */ +export interface v_pool_maps_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: v_pool_mapsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Ordering options when selecting data from "v_pool_maps". */ +export interface v_pool_maps_order_by {active_pool?: (order_by | null),id?: (order_by | null),label?: (order_by | null),map_pool?: (map_pools_order_by | null),map_pool_id?: (order_by | null),name?: (order_by | null),patch?: (order_by | null),poster?: (order_by | null),type?: (order_by | null),workshop_map_id?: (order_by | null)} + + +/** input type for updating data in table "v_pool_maps" */ +export interface v_pool_maps_set_input {active_pool?: (Scalars['Boolean'] | null),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)} + + +/** Streaming cursor of the table "v_pool_maps" */ +export interface v_pool_maps_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: v_pool_maps_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface v_pool_maps_stream_cursor_value_input {active_pool?: (Scalars['Boolean'] | null),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)} + +export interface v_pool_maps_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (v_pool_maps_set_input | null), +/** filter the rows which have to be updated */ +where: v_pool_maps_bool_exp} + + +/** columns and relationships of "v_steam_account_pool_status" */ +export interface v_steam_account_pool_statusGenqlSelection{ + busy_accounts?: boolean | number + free_accounts?: boolean | number + id?: boolean | number + total_accounts?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "v_steam_account_pool_status" */ +export interface v_steam_account_pool_status_aggregateGenqlSelection{ + aggregate?: v_steam_account_pool_status_aggregate_fieldsGenqlSelection + nodes?: v_steam_account_pool_statusGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "v_steam_account_pool_status" */ +export interface v_steam_account_pool_status_aggregate_fieldsGenqlSelection{ + avg?: v_steam_account_pool_status_avg_fieldsGenqlSelection + count?: { __args: {columns?: (v_steam_account_pool_status_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: v_steam_account_pool_status_max_fieldsGenqlSelection + min?: v_steam_account_pool_status_min_fieldsGenqlSelection + stddev?: v_steam_account_pool_status_stddev_fieldsGenqlSelection + stddev_pop?: v_steam_account_pool_status_stddev_pop_fieldsGenqlSelection + stddev_samp?: v_steam_account_pool_status_stddev_samp_fieldsGenqlSelection + sum?: v_steam_account_pool_status_sum_fieldsGenqlSelection + var_pop?: v_steam_account_pool_status_var_pop_fieldsGenqlSelection + var_samp?: v_steam_account_pool_status_var_samp_fieldsGenqlSelection + variance?: v_steam_account_pool_status_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface v_steam_account_pool_status_avg_fieldsGenqlSelection{ + busy_accounts?: boolean | number + free_accounts?: boolean | number + id?: boolean | number + total_accounts?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "v_steam_account_pool_status". All fields are combined with a logical 'AND'. */ +export interface v_steam_account_pool_status_bool_exp {_and?: (v_steam_account_pool_status_bool_exp[] | null),_not?: (v_steam_account_pool_status_bool_exp | null),_or?: (v_steam_account_pool_status_bool_exp[] | null),busy_accounts?: (Int_comparison_exp | null),free_accounts?: (Int_comparison_exp | null),id?: (Int_comparison_exp | null),total_accounts?: (Int_comparison_exp | null)} + + +/** aggregate max on columns */ +export interface v_steam_account_pool_status_max_fieldsGenqlSelection{ + busy_accounts?: boolean | number + free_accounts?: boolean | number + id?: boolean | number + total_accounts?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface v_steam_account_pool_status_min_fieldsGenqlSelection{ + busy_accounts?: boolean | number + free_accounts?: boolean | number + id?: boolean | number + total_accounts?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Ordering options when selecting data from "v_steam_account_pool_status". */ +export interface v_steam_account_pool_status_order_by {busy_accounts?: (order_by | null),free_accounts?: (order_by | null),id?: (order_by | null),total_accounts?: (order_by | null)} + + +/** aggregate stddev on columns */ +export interface v_steam_account_pool_status_stddev_fieldsGenqlSelection{ + busy_accounts?: boolean | number + free_accounts?: boolean | number + id?: boolean | number + total_accounts?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface v_steam_account_pool_status_stddev_pop_fieldsGenqlSelection{ + busy_accounts?: boolean | number + free_accounts?: boolean | number + id?: boolean | number + total_accounts?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface v_steam_account_pool_status_stddev_samp_fieldsGenqlSelection{ + busy_accounts?: boolean | number + free_accounts?: boolean | number + id?: boolean | number + total_accounts?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "v_steam_account_pool_status" */ +export interface v_steam_account_pool_status_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: v_steam_account_pool_status_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface v_steam_account_pool_status_stream_cursor_value_input {busy_accounts?: (Scalars['Int'] | null),free_accounts?: (Scalars['Int'] | null),id?: (Scalars['Int'] | null),total_accounts?: (Scalars['Int'] | null)} + + +/** aggregate sum on columns */ +export interface v_steam_account_pool_status_sum_fieldsGenqlSelection{ + busy_accounts?: boolean | number + free_accounts?: boolean | number + id?: boolean | number + total_accounts?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_pop on columns */ +export interface v_steam_account_pool_status_var_pop_fieldsGenqlSelection{ + busy_accounts?: boolean | number + free_accounts?: boolean | number + id?: boolean | number + total_accounts?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface v_steam_account_pool_status_var_samp_fieldsGenqlSelection{ + busy_accounts?: boolean | number + free_accounts?: boolean | number + id?: boolean | number + total_accounts?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface v_steam_account_pool_status_variance_fieldsGenqlSelection{ + busy_accounts?: boolean | number + free_accounts?: boolean | number + id?: boolean | number + total_accounts?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "v_team_ranks" */ +export interface v_team_ranksGenqlSelection{ + avg_duel_elo?: boolean | number + avg_elo?: boolean | number + avg_faceit_elo?: boolean | number + avg_faceit_level?: boolean | number + avg_premier?: boolean | number + avg_wingman_elo?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + roster_size?: boolean | number + /** An object relationship */ + team?: teamsGenqlSelection + team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "v_team_ranks" */ +export interface v_team_ranks_aggregateGenqlSelection{ + aggregate?: v_team_ranks_aggregate_fieldsGenqlSelection + nodes?: v_team_ranksGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "v_team_ranks" */ +export interface v_team_ranks_aggregate_fieldsGenqlSelection{ + avg?: v_team_ranks_avg_fieldsGenqlSelection + count?: { __args: {columns?: (v_team_ranks_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: v_team_ranks_max_fieldsGenqlSelection + min?: v_team_ranks_min_fieldsGenqlSelection + stddev?: v_team_ranks_stddev_fieldsGenqlSelection + stddev_pop?: v_team_ranks_stddev_pop_fieldsGenqlSelection + stddev_samp?: v_team_ranks_stddev_samp_fieldsGenqlSelection + sum?: v_team_ranks_sum_fieldsGenqlSelection + var_pop?: v_team_ranks_var_pop_fieldsGenqlSelection + var_samp?: v_team_ranks_var_samp_fieldsGenqlSelection + variance?: v_team_ranks_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface v_team_ranks_avg_fieldsGenqlSelection{ + avg_duel_elo?: boolean | number + avg_elo?: boolean | number + avg_faceit_elo?: boolean | number + avg_faceit_level?: boolean | number + avg_premier?: boolean | number + avg_wingman_elo?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + roster_size?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "v_team_ranks". All fields are combined with a logical 'AND'. */ +export interface v_team_ranks_bool_exp {_and?: (v_team_ranks_bool_exp[] | null),_not?: (v_team_ranks_bool_exp | null),_or?: (v_team_ranks_bool_exp[] | null),avg_duel_elo?: (Int_comparison_exp | null),avg_elo?: (Int_comparison_exp | null),avg_faceit_elo?: (Int_comparison_exp | null),avg_faceit_level?: (float8_comparison_exp | null),avg_premier?: (Int_comparison_exp | null),avg_wingman_elo?: (Int_comparison_exp | null),max_elo?: (Int_comparison_exp | null),min_elo?: (Int_comparison_exp | null),roster_size?: (bigint_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null)} + + +/** input type for inserting data into table "v_team_ranks" */ +export interface v_team_ranks_insert_input {avg_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?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface v_team_ranks_max_fieldsGenqlSelection{ + avg_duel_elo?: boolean | number + avg_elo?: boolean | number + avg_faceit_elo?: boolean | number + avg_faceit_level?: boolean | number + avg_premier?: boolean | number + avg_wingman_elo?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + roster_size?: boolean | number + team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface v_team_ranks_min_fieldsGenqlSelection{ + avg_duel_elo?: boolean | number + avg_elo?: boolean | number + avg_faceit_elo?: boolean | number + avg_faceit_level?: boolean | number + avg_premier?: boolean | number + avg_wingman_elo?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + roster_size?: boolean | number + team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "v_team_ranks" */ +export interface v_team_ranks_obj_rel_insert_input {data: v_team_ranks_insert_input} + + +/** Ordering options when selecting data from "v_team_ranks". */ +export interface v_team_ranks_order_by {avg_duel_elo?: (order_by | null),avg_elo?: (order_by | null),avg_faceit_elo?: (order_by | null),avg_faceit_level?: (order_by | null),avg_premier?: (order_by | null),avg_wingman_elo?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null),roster_size?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null)} + + +/** aggregate stddev on columns */ +export interface v_team_ranks_stddev_fieldsGenqlSelection{ + avg_duel_elo?: boolean | number + avg_elo?: boolean | number + avg_faceit_elo?: boolean | number + avg_faceit_level?: boolean | number + avg_premier?: boolean | number + avg_wingman_elo?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + roster_size?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface v_team_ranks_stddev_pop_fieldsGenqlSelection{ + avg_duel_elo?: boolean | number + avg_elo?: boolean | number + avg_faceit_elo?: boolean | number + avg_faceit_level?: boolean | number + avg_premier?: boolean | number + avg_wingman_elo?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + roster_size?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface v_team_ranks_stddev_samp_fieldsGenqlSelection{ + avg_duel_elo?: boolean | number + avg_elo?: boolean | number + avg_faceit_elo?: boolean | number + avg_faceit_level?: boolean | number + avg_premier?: boolean | number + avg_wingman_elo?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + roster_size?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "v_team_ranks" */ +export interface v_team_ranks_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: v_team_ranks_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface v_team_ranks_stream_cursor_value_input {avg_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)} + + +/** aggregate sum on columns */ +export interface v_team_ranks_sum_fieldsGenqlSelection{ + avg_duel_elo?: boolean | number + avg_elo?: boolean | number + avg_faceit_elo?: boolean | number + avg_faceit_level?: boolean | number + avg_premier?: boolean | number + avg_wingman_elo?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + roster_size?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_pop on columns */ +export interface v_team_ranks_var_pop_fieldsGenqlSelection{ + avg_duel_elo?: boolean | number + avg_elo?: boolean | number + avg_faceit_elo?: boolean | number + avg_faceit_level?: boolean | number + avg_premier?: boolean | number + avg_wingman_elo?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + roster_size?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface v_team_ranks_var_samp_fieldsGenqlSelection{ + avg_duel_elo?: boolean | number + avg_elo?: boolean | number + avg_faceit_elo?: boolean | number + avg_faceit_level?: boolean | number + avg_premier?: boolean | number + avg_wingman_elo?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + roster_size?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface v_team_ranks_variance_fieldsGenqlSelection{ + avg_duel_elo?: boolean | number + avg_elo?: boolean | number + avg_faceit_elo?: boolean | number + avg_faceit_level?: boolean | number + avg_premier?: boolean | number + avg_wingman_elo?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + roster_size?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "v_team_reputation" */ +export interface v_team_reputationGenqlSelection{ + late_cancels?: boolean | number + no_shows?: boolean | number + reliability_pct?: boolean | number + scrims_completed?: boolean | number + /** An object relationship */ + team?: teamsGenqlSelection + team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "v_team_reputation" */ +export interface v_team_reputation_aggregateGenqlSelection{ + aggregate?: v_team_reputation_aggregate_fieldsGenqlSelection + nodes?: v_team_reputationGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "v_team_reputation" */ +export interface v_team_reputation_aggregate_fieldsGenqlSelection{ + avg?: v_team_reputation_avg_fieldsGenqlSelection + count?: { __args: {columns?: (v_team_reputation_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: v_team_reputation_max_fieldsGenqlSelection + min?: v_team_reputation_min_fieldsGenqlSelection + stddev?: v_team_reputation_stddev_fieldsGenqlSelection + stddev_pop?: v_team_reputation_stddev_pop_fieldsGenqlSelection + stddev_samp?: v_team_reputation_stddev_samp_fieldsGenqlSelection + sum?: v_team_reputation_sum_fieldsGenqlSelection + var_pop?: v_team_reputation_var_pop_fieldsGenqlSelection + var_samp?: v_team_reputation_var_samp_fieldsGenqlSelection + variance?: v_team_reputation_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface v_team_reputation_avg_fieldsGenqlSelection{ + late_cancels?: boolean | number + no_shows?: boolean | number + reliability_pct?: boolean | number + scrims_completed?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "v_team_reputation". All fields are combined with a logical 'AND'. */ +export interface v_team_reputation_bool_exp {_and?: (v_team_reputation_bool_exp[] | null),_not?: (v_team_reputation_bool_exp | null),_or?: (v_team_reputation_bool_exp[] | null),late_cancels?: (bigint_comparison_exp | null),no_shows?: (bigint_comparison_exp | null),reliability_pct?: (numeric_comparison_exp | null),scrims_completed?: (bigint_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null)} + + +/** input type for inserting data into table "v_team_reputation" */ +export interface v_team_reputation_insert_input {late_cancels?: (Scalars['bigint'] | null),no_shows?: (Scalars['bigint'] | null),reliability_pct?: (Scalars['numeric'] | null),scrims_completed?: (Scalars['bigint'] | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface v_team_reputation_max_fieldsGenqlSelection{ + late_cancels?: boolean | number + no_shows?: boolean | number + reliability_pct?: boolean | number + scrims_completed?: boolean | number + team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface v_team_reputation_min_fieldsGenqlSelection{ + late_cancels?: boolean | number + no_shows?: boolean | number + reliability_pct?: boolean | number + scrims_completed?: boolean | number + team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "v_team_reputation" */ +export interface v_team_reputation_obj_rel_insert_input {data: v_team_reputation_insert_input} + + +/** Ordering options when selecting data from "v_team_reputation". */ +export interface v_team_reputation_order_by {late_cancels?: (order_by | null),no_shows?: (order_by | null),reliability_pct?: (order_by | null),scrims_completed?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null)} + + +/** aggregate stddev on columns */ +export interface v_team_reputation_stddev_fieldsGenqlSelection{ + late_cancels?: boolean | number + no_shows?: boolean | number + reliability_pct?: boolean | number + scrims_completed?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface v_team_reputation_stddev_pop_fieldsGenqlSelection{ + late_cancels?: boolean | number + no_shows?: boolean | number + reliability_pct?: boolean | number + scrims_completed?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface v_team_reputation_stddev_samp_fieldsGenqlSelection{ + late_cancels?: boolean | number + no_shows?: boolean | number + reliability_pct?: boolean | number + scrims_completed?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "v_team_reputation" */ +export interface v_team_reputation_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: v_team_reputation_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface v_team_reputation_stream_cursor_value_input {late_cancels?: (Scalars['bigint'] | null),no_shows?: (Scalars['bigint'] | null),reliability_pct?: (Scalars['numeric'] | null),scrims_completed?: (Scalars['bigint'] | null),team_id?: (Scalars['uuid'] | null)} + + +/** aggregate sum on columns */ +export interface v_team_reputation_sum_fieldsGenqlSelection{ + late_cancels?: boolean | number + no_shows?: boolean | number + reliability_pct?: boolean | number + scrims_completed?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_pop on columns */ +export interface v_team_reputation_var_pop_fieldsGenqlSelection{ + late_cancels?: boolean | number + no_shows?: boolean | number + reliability_pct?: boolean | number + scrims_completed?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface v_team_reputation_var_samp_fieldsGenqlSelection{ + late_cancels?: boolean | number + no_shows?: boolean | number + reliability_pct?: boolean | number + scrims_completed?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface v_team_reputation_variance_fieldsGenqlSelection{ + late_cancels?: boolean | number + no_shows?: boolean | number + reliability_pct?: boolean | number + scrims_completed?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "v_team_stage_results" */ +export interface v_team_stage_resultsGenqlSelection{ + group_number?: boolean | number + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + placement?: boolean | number + rank?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + /** An object relationship */ + stage?: tournament_stagesGenqlSelection + /** An object relationship */ + team?: tournament_teamsGenqlSelection + team_kdr?: boolean | number + total_deaths?: boolean | number + total_kills?: boolean | number + tournament_stage_id?: boolean | number + tournament_team_id?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "v_team_stage_results" */ +export interface v_team_stage_results_aggregateGenqlSelection{ + aggregate?: v_team_stage_results_aggregate_fieldsGenqlSelection + nodes?: v_team_stage_resultsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface v_team_stage_results_aggregate_bool_exp {avg?: (v_team_stage_results_aggregate_bool_exp_avg | null),corr?: (v_team_stage_results_aggregate_bool_exp_corr | null),count?: (v_team_stage_results_aggregate_bool_exp_count | null),covar_samp?: (v_team_stage_results_aggregate_bool_exp_covar_samp | null),max?: (v_team_stage_results_aggregate_bool_exp_max | null),min?: (v_team_stage_results_aggregate_bool_exp_min | null),stddev_samp?: (v_team_stage_results_aggregate_bool_exp_stddev_samp | null),sum?: (v_team_stage_results_aggregate_bool_exp_sum | null),var_samp?: (v_team_stage_results_aggregate_bool_exp_var_samp | null)} + +export interface v_team_stage_results_aggregate_bool_exp_avg {arguments: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_avg_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_stage_results_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_team_stage_results_aggregate_bool_exp_corr {arguments: v_team_stage_results_aggregate_bool_exp_corr_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_stage_results_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_team_stage_results_aggregate_bool_exp_corr_arguments {X: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_corr_arguments_columns,Y: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_corr_arguments_columns} + +export interface v_team_stage_results_aggregate_bool_exp_count {arguments?: (v_team_stage_results_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (v_team_stage_results_bool_exp | null),predicate: Int_comparison_exp} + +export interface v_team_stage_results_aggregate_bool_exp_covar_samp {arguments: v_team_stage_results_aggregate_bool_exp_covar_samp_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_stage_results_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_team_stage_results_aggregate_bool_exp_covar_samp_arguments {X: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_covar_samp_arguments_columns,Y: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_covar_samp_arguments_columns} + +export interface v_team_stage_results_aggregate_bool_exp_max {arguments: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_max_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_stage_results_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_team_stage_results_aggregate_bool_exp_min {arguments: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_min_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_stage_results_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_team_stage_results_aggregate_bool_exp_stddev_samp {arguments: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_stddev_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_stage_results_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_team_stage_results_aggregate_bool_exp_sum {arguments: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_sum_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_stage_results_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_team_stage_results_aggregate_bool_exp_var_samp {arguments: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_var_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_stage_results_bool_exp | null),predicate: float8_comparison_exp} + + +/** aggregate fields of "v_team_stage_results" */ +export interface v_team_stage_results_aggregate_fieldsGenqlSelection{ + avg?: v_team_stage_results_avg_fieldsGenqlSelection + count?: { __args: {columns?: (v_team_stage_results_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: v_team_stage_results_max_fieldsGenqlSelection + min?: v_team_stage_results_min_fieldsGenqlSelection + stddev?: v_team_stage_results_stddev_fieldsGenqlSelection + stddev_pop?: v_team_stage_results_stddev_pop_fieldsGenqlSelection + stddev_samp?: v_team_stage_results_stddev_samp_fieldsGenqlSelection + sum?: v_team_stage_results_sum_fieldsGenqlSelection + var_pop?: v_team_stage_results_var_pop_fieldsGenqlSelection + var_samp?: v_team_stage_results_var_samp_fieldsGenqlSelection + variance?: v_team_stage_results_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "v_team_stage_results" */ +export interface v_team_stage_results_aggregate_order_by {avg?: (v_team_stage_results_avg_order_by | null),count?: (order_by | null),max?: (v_team_stage_results_max_order_by | null),min?: (v_team_stage_results_min_order_by | null),stddev?: (v_team_stage_results_stddev_order_by | null),stddev_pop?: (v_team_stage_results_stddev_pop_order_by | null),stddev_samp?: (v_team_stage_results_stddev_samp_order_by | null),sum?: (v_team_stage_results_sum_order_by | null),var_pop?: (v_team_stage_results_var_pop_order_by | null),var_samp?: (v_team_stage_results_var_samp_order_by | null),variance?: (v_team_stage_results_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "v_team_stage_results" */ +export interface v_team_stage_results_arr_rel_insert_input {data: v_team_stage_results_insert_input[], +/** upsert condition */ +on_conflict?: (v_team_stage_results_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface v_team_stage_results_avg_fieldsGenqlSelection{ + group_number?: boolean | number + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + placement?: boolean | number + rank?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + team_kdr?: boolean | number + total_deaths?: boolean | number + total_kills?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "v_team_stage_results" */ +export interface v_team_stage_results_avg_order_by {group_number?: (order_by | null),head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),placement?: (order_by | null),rank?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "v_team_stage_results". All fields are combined with a logical 'AND'. */ +export interface v_team_stage_results_bool_exp {_and?: (v_team_stage_results_bool_exp[] | null),_not?: (v_team_stage_results_bool_exp | null),_or?: (v_team_stage_results_bool_exp[] | null),group_number?: (Int_comparison_exp | null),head_to_head_match_wins?: (Int_comparison_exp | null),head_to_head_rounds_won?: (Int_comparison_exp | null),losses?: (Int_comparison_exp | null),maps_lost?: (Int_comparison_exp | null),maps_won?: (Int_comparison_exp | null),matches_played?: (Int_comparison_exp | null),matches_remaining?: (Int_comparison_exp | null),placement?: (Int_comparison_exp | null),rank?: (Int_comparison_exp | null),rounds_lost?: (Int_comparison_exp | null),rounds_won?: (Int_comparison_exp | null),stage?: (tournament_stages_bool_exp | null),team?: (tournament_teams_bool_exp | null),team_kdr?: (float8_comparison_exp | null),total_deaths?: (Int_comparison_exp | null),total_kills?: (Int_comparison_exp | null),tournament_stage_id?: (uuid_comparison_exp | null),tournament_team_id?: (uuid_comparison_exp | null),wins?: (Int_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "v_team_stage_results" */ +export interface v_team_stage_results_inc_input {group_number?: (Scalars['Int'] | null),head_to_head_match_wins?: (Scalars['Int'] | null),head_to_head_rounds_won?: (Scalars['Int'] | null),losses?: (Scalars['Int'] | null),maps_lost?: (Scalars['Int'] | null),maps_won?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),matches_remaining?: (Scalars['Int'] | null),placement?: (Scalars['Int'] | null),rank?: (Scalars['Int'] | null),rounds_lost?: (Scalars['Int'] | null),rounds_won?: (Scalars['Int'] | null),team_kdr?: (Scalars['float8'] | null),total_deaths?: (Scalars['Int'] | null),total_kills?: (Scalars['Int'] | null),wins?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "v_team_stage_results" */ +export interface v_team_stage_results_insert_input {group_number?: (Scalars['Int'] | null),head_to_head_match_wins?: (Scalars['Int'] | null),head_to_head_rounds_won?: (Scalars['Int'] | null),losses?: (Scalars['Int'] | null),maps_lost?: (Scalars['Int'] | null),maps_won?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),matches_remaining?: (Scalars['Int'] | null),placement?: (Scalars['Int'] | null),rank?: (Scalars['Int'] | null),rounds_lost?: (Scalars['Int'] | null),rounds_won?: (Scalars['Int'] | null),stage?: (tournament_stages_obj_rel_insert_input | null),team?: (tournament_teams_obj_rel_insert_input | null),team_kdr?: (Scalars['float8'] | null),total_deaths?: (Scalars['Int'] | null),total_kills?: (Scalars['Int'] | null),tournament_stage_id?: (Scalars['uuid'] | null),tournament_team_id?: (Scalars['uuid'] | null),wins?: (Scalars['Int'] | null)} + + +/** aggregate max on columns */ +export interface v_team_stage_results_max_fieldsGenqlSelection{ + group_number?: boolean | number + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + placement?: boolean | number + rank?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + team_kdr?: boolean | number + total_deaths?: boolean | number + total_kills?: boolean | number + tournament_stage_id?: boolean | number + tournament_team_id?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "v_team_stage_results" */ +export interface v_team_stage_results_max_order_by {group_number?: (order_by | null),head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),placement?: (order_by | null),rank?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),tournament_stage_id?: (order_by | null),tournament_team_id?: (order_by | null),wins?: (order_by | null)} + + +/** aggregate min on columns */ +export interface v_team_stage_results_min_fieldsGenqlSelection{ + group_number?: boolean | number + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + placement?: boolean | number + rank?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + team_kdr?: boolean | number + total_deaths?: boolean | number + total_kills?: boolean | number + tournament_stage_id?: boolean | number + tournament_team_id?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "v_team_stage_results" */ +export interface v_team_stage_results_min_order_by {group_number?: (order_by | null),head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),placement?: (order_by | null),rank?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),tournament_stage_id?: (order_by | null),tournament_team_id?: (order_by | null),wins?: (order_by | null)} + + +/** response of any mutation on the table "v_team_stage_results" */ +export interface v_team_stage_results_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: v_team_stage_resultsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "v_team_stage_results" */ +export interface v_team_stage_results_obj_rel_insert_input {data: v_team_stage_results_insert_input, +/** upsert condition */ +on_conflict?: (v_team_stage_results_on_conflict | null)} + + +/** on_conflict condition type for table "v_team_stage_results" */ +export interface v_team_stage_results_on_conflict {constraint: v_team_stage_results_constraint,update_columns?: v_team_stage_results_update_column[],where?: (v_team_stage_results_bool_exp | null)} + + +/** Ordering options when selecting data from "v_team_stage_results". */ +export interface v_team_stage_results_order_by {group_number?: (order_by | null),head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),placement?: (order_by | null),rank?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),stage?: (tournament_stages_order_by | null),team?: (tournament_teams_order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),tournament_stage_id?: (order_by | null),tournament_team_id?: (order_by | null),wins?: (order_by | null)} + + +/** primary key columns input for table: v_team_stage_results */ +export interface v_team_stage_results_pk_columns_input {tournament_stage_id: Scalars['uuid'],tournament_team_id: Scalars['uuid']} + + +/** input type for updating data in table "v_team_stage_results" */ +export interface v_team_stage_results_set_input {group_number?: (Scalars['Int'] | null),head_to_head_match_wins?: (Scalars['Int'] | null),head_to_head_rounds_won?: (Scalars['Int'] | null),losses?: (Scalars['Int'] | null),maps_lost?: (Scalars['Int'] | null),maps_won?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),matches_remaining?: (Scalars['Int'] | null),placement?: (Scalars['Int'] | null),rank?: (Scalars['Int'] | null),rounds_lost?: (Scalars['Int'] | null),rounds_won?: (Scalars['Int'] | null),team_kdr?: (Scalars['float8'] | null),total_deaths?: (Scalars['Int'] | null),total_kills?: (Scalars['Int'] | null),tournament_stage_id?: (Scalars['uuid'] | null),tournament_team_id?: (Scalars['uuid'] | null),wins?: (Scalars['Int'] | null)} + + +/** aggregate stddev on columns */ +export interface v_team_stage_results_stddev_fieldsGenqlSelection{ + group_number?: boolean | number + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + placement?: boolean | number + rank?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + team_kdr?: boolean | number + total_deaths?: boolean | number + total_kills?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "v_team_stage_results" */ +export interface v_team_stage_results_stddev_order_by {group_number?: (order_by | null),head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),placement?: (order_by | null),rank?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface v_team_stage_results_stddev_pop_fieldsGenqlSelection{ + group_number?: boolean | number + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + placement?: boolean | number + rank?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + team_kdr?: boolean | number + total_deaths?: boolean | number + total_kills?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "v_team_stage_results" */ +export interface v_team_stage_results_stddev_pop_order_by {group_number?: (order_by | null),head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),placement?: (order_by | null),rank?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface v_team_stage_results_stddev_samp_fieldsGenqlSelection{ + group_number?: boolean | number + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + placement?: boolean | number + rank?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + team_kdr?: boolean | number + total_deaths?: boolean | number + total_kills?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "v_team_stage_results" */ +export interface v_team_stage_results_stddev_samp_order_by {group_number?: (order_by | null),head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),placement?: (order_by | null),rank?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} + + +/** Streaming cursor of the table "v_team_stage_results" */ +export interface v_team_stage_results_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: v_team_stage_results_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface v_team_stage_results_stream_cursor_value_input {group_number?: (Scalars['Int'] | null),head_to_head_match_wins?: (Scalars['Int'] | null),head_to_head_rounds_won?: (Scalars['Int'] | null),losses?: (Scalars['Int'] | null),maps_lost?: (Scalars['Int'] | null),maps_won?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),matches_remaining?: (Scalars['Int'] | null),placement?: (Scalars['Int'] | null),rank?: (Scalars['Int'] | null),rounds_lost?: (Scalars['Int'] | null),rounds_won?: (Scalars['Int'] | null),team_kdr?: (Scalars['float8'] | null),total_deaths?: (Scalars['Int'] | null),total_kills?: (Scalars['Int'] | null),tournament_stage_id?: (Scalars['uuid'] | null),tournament_team_id?: (Scalars['uuid'] | null),wins?: (Scalars['Int'] | null)} + + +/** aggregate sum on columns */ +export interface v_team_stage_results_sum_fieldsGenqlSelection{ + group_number?: boolean | number + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + placement?: boolean | number + rank?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + team_kdr?: boolean | number + total_deaths?: boolean | number + total_kills?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "v_team_stage_results" */ +export interface v_team_stage_results_sum_order_by {group_number?: (order_by | null),head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),placement?: (order_by | null),rank?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} + +export interface v_team_stage_results_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (v_team_stage_results_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (v_team_stage_results_set_input | null), +/** filter the rows which have to be updated */ +where: v_team_stage_results_bool_exp} + + +/** aggregate var_pop on columns */ +export interface v_team_stage_results_var_pop_fieldsGenqlSelection{ + group_number?: boolean | number + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + placement?: boolean | number + rank?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + team_kdr?: boolean | number + total_deaths?: boolean | number + total_kills?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "v_team_stage_results" */ +export interface v_team_stage_results_var_pop_order_by {group_number?: (order_by | null),head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),placement?: (order_by | null),rank?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface v_team_stage_results_var_samp_fieldsGenqlSelection{ + group_number?: boolean | number + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + placement?: boolean | number + rank?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + team_kdr?: boolean | number + total_deaths?: boolean | number + total_kills?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "v_team_stage_results" */ +export interface v_team_stage_results_var_samp_order_by {group_number?: (order_by | null),head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),placement?: (order_by | null),rank?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface v_team_stage_results_variance_fieldsGenqlSelection{ + group_number?: boolean | number + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + placement?: boolean | number + rank?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + team_kdr?: boolean | number + total_deaths?: boolean | number + total_kills?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "v_team_stage_results" */ +export interface v_team_stage_results_variance_order_by {group_number?: (order_by | null),head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),placement?: (order_by | null),rank?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} + + +/** columns and relationships of "v_team_tournament_results" */ +export interface v_team_tournament_resultsGenqlSelection{ + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + /** An object relationship */ + team?: tournament_teamsGenqlSelection + team_kdr?: boolean | number + total_deaths?: boolean | number + total_kills?: boolean | number + /** An object relationship */ + tournament?: tournamentsGenqlSelection + tournament_id?: boolean | number + tournament_team_id?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "v_team_tournament_results" */ +export interface v_team_tournament_results_aggregateGenqlSelection{ + aggregate?: v_team_tournament_results_aggregate_fieldsGenqlSelection + nodes?: v_team_tournament_resultsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface v_team_tournament_results_aggregate_bool_exp {avg?: (v_team_tournament_results_aggregate_bool_exp_avg | null),corr?: (v_team_tournament_results_aggregate_bool_exp_corr | null),count?: (v_team_tournament_results_aggregate_bool_exp_count | null),covar_samp?: (v_team_tournament_results_aggregate_bool_exp_covar_samp | null),max?: (v_team_tournament_results_aggregate_bool_exp_max | null),min?: (v_team_tournament_results_aggregate_bool_exp_min | null),stddev_samp?: (v_team_tournament_results_aggregate_bool_exp_stddev_samp | null),sum?: (v_team_tournament_results_aggregate_bool_exp_sum | null),var_samp?: (v_team_tournament_results_aggregate_bool_exp_var_samp | null)} + +export interface v_team_tournament_results_aggregate_bool_exp_avg {arguments: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_avg_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_tournament_results_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_team_tournament_results_aggregate_bool_exp_corr {arguments: v_team_tournament_results_aggregate_bool_exp_corr_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_tournament_results_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_team_tournament_results_aggregate_bool_exp_corr_arguments {X: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_corr_arguments_columns,Y: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_corr_arguments_columns} + +export interface v_team_tournament_results_aggregate_bool_exp_count {arguments?: (v_team_tournament_results_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (v_team_tournament_results_bool_exp | null),predicate: Int_comparison_exp} + +export interface v_team_tournament_results_aggregate_bool_exp_covar_samp {arguments: v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_tournament_results_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments {X: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments_columns,Y: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments_columns} + +export interface v_team_tournament_results_aggregate_bool_exp_max {arguments: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_max_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_tournament_results_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_team_tournament_results_aggregate_bool_exp_min {arguments: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_min_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_tournament_results_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_team_tournament_results_aggregate_bool_exp_stddev_samp {arguments: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_stddev_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_tournament_results_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_team_tournament_results_aggregate_bool_exp_sum {arguments: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_sum_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_tournament_results_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_team_tournament_results_aggregate_bool_exp_var_samp {arguments: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_var_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_tournament_results_bool_exp | null),predicate: float8_comparison_exp} + + +/** aggregate fields of "v_team_tournament_results" */ +export interface v_team_tournament_results_aggregate_fieldsGenqlSelection{ + avg?: v_team_tournament_results_avg_fieldsGenqlSelection + count?: { __args: {columns?: (v_team_tournament_results_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: v_team_tournament_results_max_fieldsGenqlSelection + min?: v_team_tournament_results_min_fieldsGenqlSelection + stddev?: v_team_tournament_results_stddev_fieldsGenqlSelection + stddev_pop?: v_team_tournament_results_stddev_pop_fieldsGenqlSelection + stddev_samp?: v_team_tournament_results_stddev_samp_fieldsGenqlSelection + sum?: v_team_tournament_results_sum_fieldsGenqlSelection + var_pop?: v_team_tournament_results_var_pop_fieldsGenqlSelection + var_samp?: v_team_tournament_results_var_samp_fieldsGenqlSelection + variance?: v_team_tournament_results_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "v_team_tournament_results" */ +export interface v_team_tournament_results_aggregate_order_by {avg?: (v_team_tournament_results_avg_order_by | null),count?: (order_by | null),max?: (v_team_tournament_results_max_order_by | null),min?: (v_team_tournament_results_min_order_by | null),stddev?: (v_team_tournament_results_stddev_order_by | null),stddev_pop?: (v_team_tournament_results_stddev_pop_order_by | null),stddev_samp?: (v_team_tournament_results_stddev_samp_order_by | null),sum?: (v_team_tournament_results_sum_order_by | null),var_pop?: (v_team_tournament_results_var_pop_order_by | null),var_samp?: (v_team_tournament_results_var_samp_order_by | null),variance?: (v_team_tournament_results_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "v_team_tournament_results" */ +export interface v_team_tournament_results_arr_rel_insert_input {data: v_team_tournament_results_insert_input[]} + + +/** aggregate avg on columns */ +export interface v_team_tournament_results_avg_fieldsGenqlSelection{ + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + team_kdr?: boolean | number + total_deaths?: boolean | number + total_kills?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "v_team_tournament_results" */ +export interface v_team_tournament_results_avg_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "v_team_tournament_results". All fields are combined with a logical 'AND'. */ +export interface v_team_tournament_results_bool_exp {_and?: (v_team_tournament_results_bool_exp[] | null),_not?: (v_team_tournament_results_bool_exp | null),_or?: (v_team_tournament_results_bool_exp[] | null),head_to_head_match_wins?: (Int_comparison_exp | null),head_to_head_rounds_won?: (Int_comparison_exp | null),losses?: (Int_comparison_exp | null),maps_lost?: (Int_comparison_exp | null),maps_won?: (Int_comparison_exp | null),matches_played?: (Int_comparison_exp | null),matches_remaining?: (Int_comparison_exp | null),rounds_lost?: (Int_comparison_exp | null),rounds_won?: (Int_comparison_exp | null),team?: (tournament_teams_bool_exp | null),team_kdr?: (float8_comparison_exp | null),total_deaths?: (Int_comparison_exp | null),total_kills?: (Int_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null),tournament_team_id?: (uuid_comparison_exp | null),wins?: (Int_comparison_exp | null)} + + +/** input type for inserting data into table "v_team_tournament_results" */ +export interface v_team_tournament_results_insert_input {head_to_head_match_wins?: (Scalars['Int'] | null),head_to_head_rounds_won?: (Scalars['Int'] | null),losses?: (Scalars['Int'] | null),maps_lost?: (Scalars['Int'] | null),maps_won?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),matches_remaining?: (Scalars['Int'] | null),rounds_lost?: (Scalars['Int'] | null),rounds_won?: (Scalars['Int'] | null),team?: (tournament_teams_obj_rel_insert_input | null),team_kdr?: (Scalars['float8'] | null),total_deaths?: (Scalars['Int'] | null),total_kills?: (Scalars['Int'] | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null),tournament_team_id?: (Scalars['uuid'] | null),wins?: (Scalars['Int'] | null)} + + +/** aggregate max on columns */ +export interface v_team_tournament_results_max_fieldsGenqlSelection{ + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + team_kdr?: boolean | number + total_deaths?: boolean | number + total_kills?: boolean | number + tournament_id?: boolean | number + tournament_team_id?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "v_team_tournament_results" */ +export interface v_team_tournament_results_max_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),tournament_id?: (order_by | null),tournament_team_id?: (order_by | null),wins?: (order_by | null)} + + +/** aggregate min on columns */ +export interface v_team_tournament_results_min_fieldsGenqlSelection{ + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + team_kdr?: boolean | number + total_deaths?: boolean | number + total_kills?: boolean | number + tournament_id?: boolean | number + tournament_team_id?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "v_team_tournament_results" */ +export interface v_team_tournament_results_min_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),tournament_id?: (order_by | null),tournament_team_id?: (order_by | null),wins?: (order_by | null)} + + +/** Ordering options when selecting data from "v_team_tournament_results". */ +export interface v_team_tournament_results_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team?: (tournament_teams_order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null),tournament_team_id?: (order_by | null),wins?: (order_by | null)} + + +/** aggregate stddev on columns */ +export interface v_team_tournament_results_stddev_fieldsGenqlSelection{ + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + team_kdr?: boolean | number + total_deaths?: boolean | number + total_kills?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "v_team_tournament_results" */ +export interface v_team_tournament_results_stddev_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface v_team_tournament_results_stddev_pop_fieldsGenqlSelection{ + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + team_kdr?: boolean | number + total_deaths?: boolean | number + total_kills?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "v_team_tournament_results" */ +export interface v_team_tournament_results_stddev_pop_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface v_team_tournament_results_stddev_samp_fieldsGenqlSelection{ + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + team_kdr?: boolean | number + total_deaths?: boolean | number + total_kills?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "v_team_tournament_results" */ +export interface v_team_tournament_results_stddev_samp_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} + + +/** Streaming cursor of the table "v_team_tournament_results" */ +export interface v_team_tournament_results_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: v_team_tournament_results_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface v_team_tournament_results_stream_cursor_value_input {head_to_head_match_wins?: (Scalars['Int'] | null),head_to_head_rounds_won?: (Scalars['Int'] | null),losses?: (Scalars['Int'] | null),maps_lost?: (Scalars['Int'] | null),maps_won?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),matches_remaining?: (Scalars['Int'] | null),rounds_lost?: (Scalars['Int'] | null),rounds_won?: (Scalars['Int'] | null),team_kdr?: (Scalars['float8'] | null),total_deaths?: (Scalars['Int'] | null),total_kills?: (Scalars['Int'] | null),tournament_id?: (Scalars['uuid'] | null),tournament_team_id?: (Scalars['uuid'] | null),wins?: (Scalars['Int'] | null)} + + +/** aggregate sum on columns */ +export interface v_team_tournament_results_sum_fieldsGenqlSelection{ + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + team_kdr?: boolean | number + total_deaths?: boolean | number + total_kills?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "v_team_tournament_results" */ +export interface v_team_tournament_results_sum_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} + + +/** aggregate var_pop on columns */ +export interface v_team_tournament_results_var_pop_fieldsGenqlSelection{ + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + team_kdr?: boolean | number + total_deaths?: boolean | number + total_kills?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "v_team_tournament_results" */ +export interface v_team_tournament_results_var_pop_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface v_team_tournament_results_var_samp_fieldsGenqlSelection{ + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + team_kdr?: boolean | number + total_deaths?: boolean | number + total_kills?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "v_team_tournament_results" */ +export interface v_team_tournament_results_var_samp_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface v_team_tournament_results_variance_fieldsGenqlSelection{ + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + team_kdr?: boolean | number + total_deaths?: boolean | number + total_kills?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "v_team_tournament_results" */ +export interface v_team_tournament_results_variance_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} + + +/** columns and relationships of "v_tournament_player_stats" */ +export interface v_tournament_player_statsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + player_steam_id?: boolean | number + /** An object relationship */ + tournament?: tournamentsGenqlSelection + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "v_tournament_player_stats" */ +export interface v_tournament_player_stats_aggregateGenqlSelection{ + aggregate?: v_tournament_player_stats_aggregate_fieldsGenqlSelection + nodes?: v_tournament_player_statsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface v_tournament_player_stats_aggregate_bool_exp {avg?: (v_tournament_player_stats_aggregate_bool_exp_avg | null),corr?: (v_tournament_player_stats_aggregate_bool_exp_corr | null),count?: (v_tournament_player_stats_aggregate_bool_exp_count | null),covar_samp?: (v_tournament_player_stats_aggregate_bool_exp_covar_samp | null),max?: (v_tournament_player_stats_aggregate_bool_exp_max | null),min?: (v_tournament_player_stats_aggregate_bool_exp_min | null),stddev_samp?: (v_tournament_player_stats_aggregate_bool_exp_stddev_samp | null),sum?: (v_tournament_player_stats_aggregate_bool_exp_sum | null),var_samp?: (v_tournament_player_stats_aggregate_bool_exp_var_samp | null)} + +export interface v_tournament_player_stats_aggregate_bool_exp_avg {arguments: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_avg_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_tournament_player_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_tournament_player_stats_aggregate_bool_exp_corr {arguments: v_tournament_player_stats_aggregate_bool_exp_corr_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (v_tournament_player_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_tournament_player_stats_aggregate_bool_exp_corr_arguments {X: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_corr_arguments_columns,Y: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_corr_arguments_columns} + +export interface v_tournament_player_stats_aggregate_bool_exp_count {arguments?: (v_tournament_player_stats_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (v_tournament_player_stats_bool_exp | null),predicate: Int_comparison_exp} + +export interface v_tournament_player_stats_aggregate_bool_exp_covar_samp {arguments: v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (v_tournament_player_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments {X: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments_columns,Y: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments_columns} + +export interface v_tournament_player_stats_aggregate_bool_exp_max {arguments: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_max_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_tournament_player_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_tournament_player_stats_aggregate_bool_exp_min {arguments: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_min_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_tournament_player_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_tournament_player_stats_aggregate_bool_exp_stddev_samp {arguments: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_tournament_player_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_tournament_player_stats_aggregate_bool_exp_sum {arguments: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_sum_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_tournament_player_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_tournament_player_stats_aggregate_bool_exp_var_samp {arguments: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_var_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_tournament_player_stats_bool_exp | null),predicate: float8_comparison_exp} + + +/** aggregate fields of "v_tournament_player_stats" */ +export interface v_tournament_player_stats_aggregate_fieldsGenqlSelection{ + avg?: v_tournament_player_stats_avg_fieldsGenqlSelection + count?: { __args: {columns?: (v_tournament_player_stats_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: v_tournament_player_stats_max_fieldsGenqlSelection + min?: v_tournament_player_stats_min_fieldsGenqlSelection + stddev?: v_tournament_player_stats_stddev_fieldsGenqlSelection + stddev_pop?: v_tournament_player_stats_stddev_pop_fieldsGenqlSelection + stddev_samp?: v_tournament_player_stats_stddev_samp_fieldsGenqlSelection + sum?: v_tournament_player_stats_sum_fieldsGenqlSelection + var_pop?: v_tournament_player_stats_var_pop_fieldsGenqlSelection + var_samp?: v_tournament_player_stats_var_samp_fieldsGenqlSelection + variance?: v_tournament_player_stats_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "v_tournament_player_stats" */ +export interface v_tournament_player_stats_aggregate_order_by {avg?: (v_tournament_player_stats_avg_order_by | null),count?: (order_by | null),max?: (v_tournament_player_stats_max_order_by | null),min?: (v_tournament_player_stats_min_order_by | null),stddev?: (v_tournament_player_stats_stddev_order_by | null),stddev_pop?: (v_tournament_player_stats_stddev_pop_order_by | null),stddev_samp?: (v_tournament_player_stats_stddev_samp_order_by | null),sum?: (v_tournament_player_stats_sum_order_by | null),var_pop?: (v_tournament_player_stats_var_pop_order_by | null),var_samp?: (v_tournament_player_stats_var_samp_order_by | null),variance?: (v_tournament_player_stats_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "v_tournament_player_stats" */ +export interface v_tournament_player_stats_arr_rel_insert_input {data: v_tournament_player_stats_insert_input[]} + + +/** aggregate avg on columns */ +export interface v_tournament_player_stats_avg_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "v_tournament_player_stats" */ +export interface v_tournament_player_stats_avg_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "v_tournament_player_stats". All fields are combined with a logical 'AND'. */ +export interface v_tournament_player_stats_bool_exp {_and?: (v_tournament_player_stats_bool_exp[] | null),_not?: (v_tournament_player_stats_bool_exp | null),_or?: (v_tournament_player_stats_bool_exp[] | null),assists?: (Int_comparison_exp | null),deaths?: (Int_comparison_exp | null),headshot_percentage?: (float8_comparison_exp | null),headshots?: (Int_comparison_exp | null),kdr?: (float8_comparison_exp | null),kills?: (Int_comparison_exp | null),matches_played?: (Int_comparison_exp | null),player?: (players_bool_exp | null),player_steam_id?: (bigint_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null)} + + +/** input type for inserting data into table "v_tournament_player_stats" */ +export interface v_tournament_player_stats_insert_input {assists?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),headshot_percentage?: (Scalars['float8'] | null),headshots?: (Scalars['Int'] | null),kdr?: (Scalars['float8'] | null),kills?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),player?: (players_obj_rel_insert_input | null),player_steam_id?: (Scalars['bigint'] | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface v_tournament_player_stats_max_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "v_tournament_player_stats" */ +export interface v_tournament_player_stats_max_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null),tournament_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface v_tournament_player_stats_min_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "v_tournament_player_stats" */ +export interface v_tournament_player_stats_min_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null),tournament_id?: (order_by | null)} + + +/** Ordering options when selecting data from "v_tournament_player_stats". */ +export interface v_tournament_player_stats_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player?: (players_order_by | null),player_steam_id?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null)} + + +/** aggregate stddev on columns */ +export interface v_tournament_player_stats_stddev_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "v_tournament_player_stats" */ +export interface v_tournament_player_stats_stddev_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface v_tournament_player_stats_stddev_pop_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "v_tournament_player_stats" */ +export interface v_tournament_player_stats_stddev_pop_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface v_tournament_player_stats_stddev_samp_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "v_tournament_player_stats" */ +export interface v_tournament_player_stats_stddev_samp_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "v_tournament_player_stats" */ +export interface v_tournament_player_stats_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: v_tournament_player_stats_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface v_tournament_player_stats_stream_cursor_value_input {assists?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),headshot_percentage?: (Scalars['float8'] | null),headshots?: (Scalars['Int'] | null),kdr?: (Scalars['float8'] | null),kills?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),player_steam_id?: (Scalars['bigint'] | null),tournament_id?: (Scalars['uuid'] | null)} + + +/** aggregate sum on columns */ +export interface v_tournament_player_stats_sum_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "v_tournament_player_stats" */ +export interface v_tournament_player_stats_sum_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate var_pop on columns */ +export interface v_tournament_player_stats_var_pop_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "v_tournament_player_stats" */ +export interface v_tournament_player_stats_var_pop_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface v_tournament_player_stats_var_samp_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "v_tournament_player_stats" */ +export interface v_tournament_player_stats_var_samp_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface v_tournament_player_stats_variance_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "v_tournament_player_stats" */ +export interface v_tournament_player_stats_variance_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + +export type QueryGenqlSelection = query_rootGenqlSelection +export type MutationGenqlSelection = mutation_rootGenqlSelection +export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + + + const ActiveConnection_possibleTypes: string[] = ['ActiveConnection'] + export const isActiveConnection = (obj?: { __typename?: any } | null): obj is ActiveConnection => { + if (!obj?.__typename) throw new Error('__typename is missing in "isActiveConnection"') + return ActiveConnection_possibleTypes.includes(obj.__typename) + } + + + + const ActiveQuery_possibleTypes: string[] = ['ActiveQuery'] + export const isActiveQuery = (obj?: { __typename?: any } | null): obj is ActiveQuery => { + if (!obj?.__typename) throw new Error('__typename is missing in "isActiveQuery"') + return ActiveQuery_possibleTypes.includes(obj.__typename) + } + + + + const 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"') + return ApiKeyResponse_possibleTypes.includes(obj.__typename) + } + + + + const Award_possibleTypes: string[] = ['Award'] + export const isAward = (obj?: { __typename?: any } | null): obj is Award => { + if (!obj?.__typename) throw new Error('__typename is missing in "isAward"') + return Award_possibleTypes.includes(obj.__typename) + } + + + + const AwardRecipient_possibleTypes: string[] = ['AwardRecipient'] + export const isAwardRecipient = (obj?: { __typename?: any } | null): obj is AwardRecipient => { + if (!obj?.__typename) throw new Error('__typename is missing in "isAwardRecipient"') + return AwardRecipient_possibleTypes.includes(obj.__typename) + } + + + + const ConnectionByState_possibleTypes: string[] = ['ConnectionByState'] + export const isConnectionByState = (obj?: { __typename?: any } | null): obj is ConnectionByState => { + if (!obj?.__typename) throw new Error('__typename is missing in "isConnectionByState"') + return ConnectionByState_possibleTypes.includes(obj.__typename) + } + + + + const ConnectionStats_possibleTypes: string[] = ['ConnectionStats'] + export const isConnectionStats = (obj?: { __typename?: any } | null): obj is ConnectionStats => { + if (!obj?.__typename) throw new Error('__typename is missing in "isConnectionStats"') + return ConnectionStats_possibleTypes.includes(obj.__typename) + } + + + + const CpuStat_possibleTypes: string[] = ['CpuStat'] + export const isCpuStat = (obj?: { __typename?: any } | null): obj is CpuStat => { + if (!obj?.__typename) throw new Error('__typename is missing in "isCpuStat"') + return CpuStat_possibleTypes.includes(obj.__typename) + } + + + + const CreateClipRenderOutput_possibleTypes: string[] = ['CreateClipRenderOutput'] + export const isCreateClipRenderOutput = (obj?: { __typename?: any } | null): obj is CreateClipRenderOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isCreateClipRenderOutput"') + return CreateClipRenderOutput_possibleTypes.includes(obj.__typename) + } + + + + const CreateDraftGameOutput_possibleTypes: string[] = ['CreateDraftGameOutput'] + export const isCreateDraftGameOutput = (obj?: { __typename?: any } | null): obj is CreateDraftGameOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isCreateDraftGameOutput"') + return CreateDraftGameOutput_possibleTypes.includes(obj.__typename) + } + + + + const CreateScheduledMatchOutput_possibleTypes: string[] = ['CreateScheduledMatchOutput'] + export const isCreateScheduledMatchOutput = (obj?: { __typename?: any } | null): obj is CreateScheduledMatchOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isCreateScheduledMatchOutput"') + return CreateScheduledMatchOutput_possibleTypes.includes(obj.__typename) + } + + + + const DatabaseStats_possibleTypes: string[] = ['DatabaseStats'] + export const isDatabaseStats = (obj?: { __typename?: any } | null): obj is DatabaseStats => { + if (!obj?.__typename) throw new Error('__typename is missing in "isDatabaseStats"') + return DatabaseStats_possibleTypes.includes(obj.__typename) + } + + + + const DbStats_possibleTypes: string[] = ['DbStats'] + export const isDbStats = (obj?: { __typename?: any } | null): obj is DbStats => { + if (!obj?.__typename) throw new Error('__typename is missing in "isDbStats"') + return DbStats_possibleTypes.includes(obj.__typename) + } + + + + const DedicatedSeverInfo_possibleTypes: string[] = ['DedicatedSeverInfo'] + export const isDedicatedSeverInfo = (obj?: { __typename?: any } | null): obj is DedicatedSeverInfo => { + if (!obj?.__typename) throw new Error('__typename is missing in "isDedicatedSeverInfo"') + return DedicatedSeverInfo_possibleTypes.includes(obj.__typename) + } + + + + const DeleteOrphansOutput_possibleTypes: string[] = ['DeleteOrphansOutput'] + export const isDeleteOrphansOutput = (obj?: { __typename?: any } | null): obj is DeleteOrphansOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isDeleteOrphansOutput"') + return DeleteOrphansOutput_possibleTypes.includes(obj.__typename) + } + + + + const DiskStat_possibleTypes: string[] = ['DiskStat'] + export const isDiskStat = (obj?: { __typename?: any } | null): obj is DiskStat => { + if (!obj?.__typename) throw new Error('__typename is missing in "isDiskStat"') + return DiskStat_possibleTypes.includes(obj.__typename) + } + + + + const DiskStats_possibleTypes: string[] = ['DiskStats'] + export const isDiskStats = (obj?: { __typename?: any } | null): obj is DiskStats => { + if (!obj?.__typename) throw new Error('__typename is missing in "isDiskStats"') + return DiskStats_possibleTypes.includes(obj.__typename) + } + + + + const DraftGamePreviewOutput_possibleTypes: string[] = ['DraftGamePreviewOutput'] + export const isDraftGamePreviewOutput = (obj?: { __typename?: any } | null): obj is DraftGamePreviewOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isDraftGamePreviewOutput"') + return DraftGamePreviewOutput_possibleTypes.includes(obj.__typename) + } + + + + const DraftGamePreviewPlayer_possibleTypes: string[] = ['DraftGamePreviewPlayer'] + export const isDraftGamePreviewPlayer = (obj?: { __typename?: any } | null): obj is DraftGamePreviewPlayer => { + if (!obj?.__typename) throw new Error('__typename is missing in "isDraftGamePreviewPlayer"') + return DraftGamePreviewPlayer_possibleTypes.includes(obj.__typename) + } + + + + const FaceitTestOutput_possibleTypes: string[] = ['FaceitTestOutput'] + export const isFaceitTestOutput = (obj?: { __typename?: any } | null): obj is FaceitTestOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isFaceitTestOutput"') + return FaceitTestOutput_possibleTypes.includes(obj.__typename) + } + + + + const FaceitTestResult_possibleTypes: string[] = ['FaceitTestResult'] + export const isFaceitTestResult = (obj?: { __typename?: any } | null): obj is FaceitTestResult => { + if (!obj?.__typename) throw new Error('__typename is missing in "isFaceitTestResult"') + return FaceitTestResult_possibleTypes.includes(obj.__typename) + } + + + + const FileContentResponse_possibleTypes: string[] = ['FileContentResponse'] + export const isFileContentResponse = (obj?: { __typename?: any } | null): obj is FileContentResponse => { + if (!obj?.__typename) throw new Error('__typename is missing in "isFileContentResponse"') + return FileContentResponse_possibleTypes.includes(obj.__typename) + } + + + + const FileItem_possibleTypes: string[] = ['FileItem'] + export const isFileItem = (obj?: { __typename?: any } | null): obj is FileItem => { + if (!obj?.__typename) throw new Error('__typename is missing in "isFileItem"') + return FileItem_possibleTypes.includes(obj.__typename) + } + + + + const FileListResponse_possibleTypes: string[] = ['FileListResponse'] + export const isFileListResponse = (obj?: { __typename?: any } | null): obj is FileListResponse => { + if (!obj?.__typename) throw new Error('__typename is missing in "isFileListResponse"') + return FileListResponse_possibleTypes.includes(obj.__typename) + } + + + + const GetTestUploadResponse_possibleTypes: string[] = ['GetTestUploadResponse'] + export const isGetTestUploadResponse = (obj?: { __typename?: any } | null): obj is GetTestUploadResponse => { + if (!obj?.__typename) throw new Error('__typename is missing in "isGetTestUploadResponse"') + return GetTestUploadResponse_possibleTypes.includes(obj.__typename) + } + + + + const GpuDeviceStat_possibleTypes: string[] = ['GpuDeviceStat'] + export const isGpuDeviceStat = (obj?: { __typename?: any } | null): obj is GpuDeviceStat => { + if (!obj?.__typename) throw new Error('__typename is missing in "isGpuDeviceStat"') + return GpuDeviceStat_possibleTypes.includes(obj.__typename) + } + + + + const GpuStats_possibleTypes: string[] = ['GpuStats'] + export const isGpuStats = (obj?: { __typename?: any } | null): obj is GpuStats => { + if (!obj?.__typename) throw new Error('__typename is missing in "isGpuStats"') + return GpuStats_possibleTypes.includes(obj.__typename) + } + + + + const HighlightPresetAvailability_possibleTypes: string[] = ['HighlightPresetAvailability'] + export const isHighlightPresetAvailability = (obj?: { __typename?: any } | null): obj is HighlightPresetAvailability => { + if (!obj?.__typename) throw new Error('__typename is missing in "isHighlightPresetAvailability"') + return HighlightPresetAvailability_possibleTypes.includes(obj.__typename) + } + + + + const HypertableInfo_possibleTypes: string[] = ['HypertableInfo'] + export const isHypertableInfo = (obj?: { __typename?: any } | null): obj is HypertableInfo => { + if (!obj?.__typename) throw new Error('__typename is missing in "isHypertableInfo"') + return HypertableInfo_possibleTypes.includes(obj.__typename) + } + + + + const IndexIOStat_possibleTypes: string[] = ['IndexIOStat'] + export const isIndexIOStat = (obj?: { __typename?: any } | null): obj is IndexIOStat => { + if (!obj?.__typename) throw new Error('__typename is missing in "isIndexIOStat"') + return IndexIOStat_possibleTypes.includes(obj.__typename) + } + + + + const IndexStat_possibleTypes: string[] = ['IndexStat'] + export const isIndexStat = (obj?: { __typename?: any } | null): obj is IndexStat => { + if (!obj?.__typename) throw new Error('__typename is missing in "isIndexStat"') + return IndexStat_possibleTypes.includes(obj.__typename) + } + + + + const KickResult_possibleTypes: string[] = ['KickResult'] + export const isKickResult = (obj?: { __typename?: any } | null): obj is KickResult => { + if (!obj?.__typename) throw new Error('__typename is missing in "isKickResult"') + return KickResult_possibleTypes.includes(obj.__typename) + } + + + + const LiveSpecGsi_possibleTypes: string[] = ['LiveSpecGsi'] + export const isLiveSpecGsi = (obj?: { __typename?: any } | null): obj is LiveSpecGsi => { + if (!obj?.__typename) throw new Error('__typename is missing in "isLiveSpecGsi"') + return LiveSpecGsi_possibleTypes.includes(obj.__typename) + } + + + + const LiveSpecSlot_possibleTypes: string[] = ['LiveSpecSlot'] + export const isLiveSpecSlot = (obj?: { __typename?: any } | null): obj is LiveSpecSlot => { + if (!obj?.__typename) throw new Error('__typename is missing in "isLiveSpecSlot"') + return LiveSpecSlot_possibleTypes.includes(obj.__typename) + } + + + + const LiveStreamSpecState_possibleTypes: string[] = ['LiveStreamSpecState'] + export const isLiveStreamSpecState = (obj?: { __typename?: any } | null): obj is LiveStreamSpecState => { + if (!obj?.__typename) throw new Error('__typename is missing in "isLiveStreamSpecState"') + return LiveStreamSpecState_possibleTypes.includes(obj.__typename) + } + + + + const LockInfo_possibleTypes: string[] = ['LockInfo'] + export const isLockInfo = (obj?: { __typename?: any } | null): obj is LockInfo => { + if (!obj?.__typename) throw new Error('__typename is missing in "isLockInfo"') + return LockInfo_possibleTypes.includes(obj.__typename) + } + + + + const MapCalloutSyncOutput_possibleTypes: string[] = ['MapCalloutSyncOutput'] + export const isMapCalloutSyncOutput = (obj?: { __typename?: any } | null): obj is MapCalloutSyncOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isMapCalloutSyncOutput"') + return MapCalloutSyncOutput_possibleTypes.includes(obj.__typename) + } + + + + const MeResponse_possibleTypes: string[] = ['MeResponse'] + export const isMeResponse = (obj?: { __typename?: any } | null): obj is MeResponse => { + if (!obj?.__typename) throw new Error('__typename is missing in "isMeResponse"') + return MeResponse_possibleTypes.includes(obj.__typename) + } + + + + const MemoryStat_possibleTypes: string[] = ['MemoryStat'] + export const isMemoryStat = (obj?: { __typename?: any } | null): obj is MemoryStat => { + if (!obj?.__typename) throw new Error('__typename is missing in "isMemoryStat"') + return MemoryStat_possibleTypes.includes(obj.__typename) + } + + + + const NetworkStats_possibleTypes: string[] = ['NetworkStats'] + export const isNetworkStats = (obj?: { __typename?: any } | null): obj is NetworkStats => { + if (!obj?.__typename) throw new Error('__typename is missing in "isNetworkStats"') + return NetworkStats_possibleTypes.includes(obj.__typename) + } + + + + const NewsPost_possibleTypes: string[] = ['NewsPost'] + export const isNewsPost = (obj?: { __typename?: any } | null): obj is NewsPost => { + if (!obj?.__typename) throw new Error('__typename is missing in "isNewsPost"') + return NewsPost_possibleTypes.includes(obj.__typename) + } + + + + const NicStat_possibleTypes: string[] = ['NicStat'] + export const isNicStat = (obj?: { __typename?: any } | null): obj is NicStat => { + if (!obj?.__typename) throw new Error('__typename is missing in "isNicStat"') + return NicStat_possibleTypes.includes(obj.__typename) + } + + + + const NodeStats_possibleTypes: string[] = ['NodeStats'] + export const isNodeStats = (obj?: { __typename?: any } | null): obj is NodeStats => { + if (!obj?.__typename) throw new Error('__typename is missing in "isNodeStats"') + return NodeStats_possibleTypes.includes(obj.__typename) + } + + + + const OrphanObject_possibleTypes: string[] = ['OrphanObject'] + export const isOrphanObject = (obj?: { __typename?: any } | null): obj is OrphanObject => { + if (!obj?.__typename) throw new Error('__typename is missing in "isOrphanObject"') + return OrphanObject_possibleTypes.includes(obj.__typename) + } + + + + const OrphanScanResultOutput_possibleTypes: string[] = ['OrphanScanResultOutput'] + export const isOrphanScanResultOutput = (obj?: { __typename?: any } | null): obj is OrphanScanResultOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isOrphanScanResultOutput"') + return OrphanScanResultOutput_possibleTypes.includes(obj.__typename) + } + + + + const PendingMatchImportActionOutput_possibleTypes: string[] = ['PendingMatchImportActionOutput'] + export const isPendingMatchImportActionOutput = (obj?: { __typename?: any } | null): obj is PendingMatchImportActionOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isPendingMatchImportActionOutput"') + return PendingMatchImportActionOutput_possibleTypes.includes(obj.__typename) + } + + + + const 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"') + return PodStats_possibleTypes.includes(obj.__typename) + } + + + + 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"') + return PreviewTournamentMatchResetOutput_possibleTypes.includes(obj.__typename) + } + + + + const QueryDetail_possibleTypes: string[] = ['QueryDetail'] + export const isQueryDetail = (obj?: { __typename?: any } | null): obj is QueryDetail => { + if (!obj?.__typename) throw new Error('__typename is missing in "isQueryDetail"') + return QueryDetail_possibleTypes.includes(obj.__typename) + } + + + + const QueryStat_possibleTypes: string[] = ['QueryStat'] + export const isQueryStat = (obj?: { __typename?: any } | null): obj is QueryStat => { + if (!obj?.__typename) throw new Error('__typename is missing in "isQueryStat"') + return QueryStat_possibleTypes.includes(obj.__typename) + } + + + + const RecomputeEloStartedOutput_possibleTypes: string[] = ['RecomputeEloStartedOutput'] + export const isRecomputeEloStartedOutput = (obj?: { __typename?: any } | null): obj is RecomputeEloStartedOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isRecomputeEloStartedOutput"') + return RecomputeEloStartedOutput_possibleTypes.includes(obj.__typename) + } + + + + const RecomputeEloStatusOutput_possibleTypes: string[] = ['RecomputeEloStatusOutput'] + export const isRecomputeEloStatusOutput = (obj?: { __typename?: any } | null): obj is RecomputeEloStatusOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isRecomputeEloStatusOutput"') + return RecomputeEloStatusOutput_possibleTypes.includes(obj.__typename) + } + + + + const 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"') + return ReindexStartedOutput_possibleTypes.includes(obj.__typename) + } + + + + const ReindexStatusOutput_possibleTypes: string[] = ['ReindexStatusOutput'] + export const isReindexStatusOutput = (obj?: { __typename?: any } | null): obj is ReindexStatusOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isReindexStatusOutput"') + return ReindexStatusOutput_possibleTypes.includes(obj.__typename) + } + + + + const ReparseAllStartedOutput_possibleTypes: string[] = ['ReparseAllStartedOutput'] + export const isReparseAllStartedOutput = (obj?: { __typename?: any } | null): obj is ReparseAllStartedOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isReparseAllStartedOutput"') + return ReparseAllStartedOutput_possibleTypes.includes(obj.__typename) + } + + + + const ReparseAllStatusOutput_possibleTypes: string[] = ['ReparseAllStatusOutput'] + export const isReparseAllStatusOutput = (obj?: { __typename?: any } | null): obj is ReparseAllStatusOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isReparseAllStatusOutput"') + return ReparseAllStatusOutput_possibleTypes.includes(obj.__typename) + } + + + + const SanctionResult_possibleTypes: string[] = ['SanctionResult'] + export const isSanctionResult = (obj?: { __typename?: any } | null): obj is SanctionResult => { + if (!obj?.__typename) throw new Error('__typename is missing in "isSanctionResult"') + return SanctionResult_possibleTypes.includes(obj.__typename) + } + + + + const ScanStartedOutput_possibleTypes: string[] = ['ScanStartedOutput'] + export const isScanStartedOutput = (obj?: { __typename?: any } | null): obj is ScanStartedOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isScanStartedOutput"') + return ScanStartedOutput_possibleTypes.includes(obj.__typename) + } + + + + const SeasonBackfillStatusOutput_possibleTypes: string[] = ['SeasonBackfillStatusOutput'] + export const isSeasonBackfillStatusOutput = (obj?: { __typename?: any } | null): obj is SeasonBackfillStatusOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isSeasonBackfillStatusOutput"') + return SeasonBackfillStatusOutput_possibleTypes.includes(obj.__typename) + } + + + + const ServerPlayer_possibleTypes: string[] = ['ServerPlayer'] + export const isServerPlayer = (obj?: { __typename?: any } | null): obj is ServerPlayer => { + if (!obj?.__typename) throw new Error('__typename is missing in "isServerPlayer"') + return ServerPlayer_possibleTypes.includes(obj.__typename) + } + + + + const SetupGameServeOutput_possibleTypes: string[] = ['SetupGameServeOutput'] + export const isSetupGameServeOutput = (obj?: { __typename?: any } | null): obj is SetupGameServeOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isSetupGameServeOutput"') + return SetupGameServeOutput_possibleTypes.includes(obj.__typename) + } + + + + const SteamMatchHistoryLinkOutput_possibleTypes: string[] = ['SteamMatchHistoryLinkOutput'] + export const isSteamMatchHistoryLinkOutput = (obj?: { __typename?: any } | null): obj is SteamMatchHistoryLinkOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isSteamMatchHistoryLinkOutput"') + return SteamMatchHistoryLinkOutput_possibleTypes.includes(obj.__typename) + } + + + + const SteamMatchHistoryPollOutput_possibleTypes: string[] = ['SteamMatchHistoryPollOutput'] + export const isSteamMatchHistoryPollOutput = (obj?: { __typename?: any } | null): obj is SteamMatchHistoryPollOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isSteamMatchHistoryPollOutput"') + return SteamMatchHistoryPollOutput_possibleTypes.includes(obj.__typename) + } + + + + const SteamPresenceAdminStatusOutput_possibleTypes: string[] = ['SteamPresenceAdminStatusOutput'] + export const isSteamPresenceAdminStatusOutput = (obj?: { __typename?: any } | null): obj is SteamPresenceAdminStatusOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isSteamPresenceAdminStatusOutput"') + return SteamPresenceAdminStatusOutput_possibleTypes.includes(obj.__typename) + } + + + + const SteamPresenceBot_possibleTypes: string[] = ['SteamPresenceBot'] + export const isSteamPresenceBot = (obj?: { __typename?: any } | null): obj is SteamPresenceBot => { + if (!obj?.__typename) throw new Error('__typename is missing in "isSteamPresenceBot"') + return SteamPresenceBot_possibleTypes.includes(obj.__typename) + } + + + + const SteamPresenceBotAssignment_possibleTypes: string[] = ['SteamPresenceBotAssignment'] + export const isSteamPresenceBotAssignment = (obj?: { __typename?: any } | null): obj is SteamPresenceBotAssignment => { + if (!obj?.__typename) throw new Error('__typename is missing in "isSteamPresenceBotAssignment"') + return SteamPresenceBotAssignment_possibleTypes.includes(obj.__typename) + } + + + + const SteamPresencePool_possibleTypes: string[] = ['SteamPresencePool'] + export const isSteamPresencePool = (obj?: { __typename?: any } | null): obj is SteamPresencePool => { + if (!obj?.__typename) throw new Error('__typename is missing in "isSteamPresencePool"') + return SteamPresencePool_possibleTypes.includes(obj.__typename) + } + + + + const StorageStats_possibleTypes: string[] = ['StorageStats'] + export const isStorageStats = (obj?: { __typename?: any } | null): obj is StorageStats => { + if (!obj?.__typename) throw new Error('__typename is missing in "isStorageStats"') + return StorageStats_possibleTypes.includes(obj.__typename) + } + + + + const StorageSummary_possibleTypes: string[] = ['StorageSummary'] + export const isStorageSummary = (obj?: { __typename?: any } | null): obj is StorageSummary => { + if (!obj?.__typename) throw new Error('__typename is missing in "isStorageSummary"') + return StorageSummary_possibleTypes.includes(obj.__typename) + } + + + + const SuccessOutput_possibleTypes: string[] = ['SuccessOutput'] + export const isSuccessOutput = (obj?: { __typename?: any } | null): obj is SuccessOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isSuccessOutput"') + return SuccessOutput_possibleTypes.includes(obj.__typename) + } + + + + const 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"') + return TableIOStat_possibleTypes.includes(obj.__typename) + } + + + + const TableSizeInfo_possibleTypes: string[] = ['TableSizeInfo'] + export const isTableSizeInfo = (obj?: { __typename?: any } | null): obj is TableSizeInfo => { + if (!obj?.__typename) throw new Error('__typename is missing in "isTableSizeInfo"') + return TableSizeInfo_possibleTypes.includes(obj.__typename) + } + + + + const TableStat_possibleTypes: string[] = ['TableStat'] + export const isTableStat = (obj?: { __typename?: any } | null): obj is TableStat => { + if (!obj?.__typename) throw new Error('__typename is missing in "isTableStat"') + return TableStat_possibleTypes.includes(obj.__typename) + } + + + + const TeamCalendarOutput_possibleTypes: string[] = ['TeamCalendarOutput'] + export const isTeamCalendarOutput = (obj?: { __typename?: any } | null): obj is TeamCalendarOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isTeamCalendarOutput"') + return TeamCalendarOutput_possibleTypes.includes(obj.__typename) + } + + + + const TelemetryActivityPoint_possibleTypes: string[] = ['TelemetryActivityPoint'] + export const isTelemetryActivityPoint = (obj?: { __typename?: any } | null): obj is TelemetryActivityPoint => { + if (!obj?.__typename) throw new Error('__typename is missing in "isTelemetryActivityPoint"') + return TelemetryActivityPoint_possibleTypes.includes(obj.__typename) + } + + + + const TelemetryCountryCount_possibleTypes: string[] = ['TelemetryCountryCount'] + export const isTelemetryCountryCount = (obj?: { __typename?: any } | null): obj is TelemetryCountryCount => { + if (!obj?.__typename) throw new Error('__typename is missing in "isTelemetryCountryCount"') + return TelemetryCountryCount_possibleTypes.includes(obj.__typename) + } + + + + const TelemetryFeatureAdoption_possibleTypes: string[] = ['TelemetryFeatureAdoption'] + export const isTelemetryFeatureAdoption = (obj?: { __typename?: any } | null): obj is TelemetryFeatureAdoption => { + if (!obj?.__typename) throw new Error('__typename is missing in "isTelemetryFeatureAdoption"') + return TelemetryFeatureAdoption_possibleTypes.includes(obj.__typename) + } + + + + const TelemetryFleetTotals_possibleTypes: string[] = ['TelemetryFleetTotals'] + export const isTelemetryFleetTotals = (obj?: { __typename?: any } | null): obj is TelemetryFleetTotals => { + if (!obj?.__typename) throw new Error('__typename is missing in "isTelemetryFleetTotals"') + return TelemetryFleetTotals_possibleTypes.includes(obj.__typename) + } + + + + const TelemetryGrowthPoint_possibleTypes: string[] = ['TelemetryGrowthPoint'] + export const isTelemetryGrowthPoint = (obj?: { __typename?: any } | null): obj is TelemetryGrowthPoint => { + if (!obj?.__typename) throw new Error('__typename is missing in "isTelemetryGrowthPoint"') + return TelemetryGrowthPoint_possibleTypes.includes(obj.__typename) + } + + + + const TelemetryInstallCounts_possibleTypes: string[] = ['TelemetryInstallCounts'] + export const isTelemetryInstallCounts = (obj?: { __typename?: any } | null): obj is TelemetryInstallCounts => { + if (!obj?.__typename) throw new Error('__typename is missing in "isTelemetryInstallCounts"') + return TelemetryInstallCounts_possibleTypes.includes(obj.__typename) + } + + + + const TelemetryMatchSourceCount_possibleTypes: string[] = ['TelemetryMatchSourceCount'] + export const isTelemetryMatchSourceCount = (obj?: { __typename?: any } | null): obj is TelemetryMatchSourceCount => { + if (!obj?.__typename) throw new Error('__typename is missing in "isTelemetryMatchSourceCount"') + return TelemetryMatchSourceCount_possibleTypes.includes(obj.__typename) + } + + + + const TelemetryMatchTypeCount_possibleTypes: string[] = ['TelemetryMatchTypeCount'] + export const isTelemetryMatchTypeCount = (obj?: { __typename?: any } | null): obj is TelemetryMatchTypeCount => { + if (!obj?.__typename) throw new Error('__typename is missing in "isTelemetryMatchTypeCount"') + return TelemetryMatchTypeCount_possibleTypes.includes(obj.__typename) + } + + + + const TelemetryRuntimeCount_possibleTypes: string[] = ['TelemetryRuntimeCount'] + export const isTelemetryRuntimeCount = (obj?: { __typename?: any } | null): obj is TelemetryRuntimeCount => { + if (!obj?.__typename) throw new Error('__typename is missing in "isTelemetryRuntimeCount"') + return TelemetryRuntimeCount_possibleTypes.includes(obj.__typename) + } + + + + const TelemetryStats_possibleTypes: string[] = ['TelemetryStats'] + export const isTelemetryStats = (obj?: { __typename?: any } | null): obj is TelemetryStats => { + if (!obj?.__typename) throw new Error('__typename is missing in "isTelemetryStats"') + return TelemetryStats_possibleTypes.includes(obj.__typename) + } + + + + const TelemetryUtilitySourceCount_possibleTypes: string[] = ['TelemetryUtilitySourceCount'] + export const isTelemetryUtilitySourceCount = (obj?: { __typename?: any } | null): obj is TelemetryUtilitySourceCount => { + if (!obj?.__typename) throw new Error('__typename is missing in "isTelemetryUtilitySourceCount"') + return TelemetryUtilitySourceCount_possibleTypes.includes(obj.__typename) + } + + + + const TelemetryUtilityTotals_possibleTypes: string[] = ['TelemetryUtilityTotals'] + export const isTelemetryUtilityTotals = (obj?: { __typename?: any } | null): obj is TelemetryUtilityTotals => { + if (!obj?.__typename) throw new Error('__typename is missing in "isTelemetryUtilityTotals"') + return TelemetryUtilityTotals_possibleTypes.includes(obj.__typename) + } + + + + const TelemetryUtilityTypeCount_possibleTypes: string[] = ['TelemetryUtilityTypeCount'] + export const isTelemetryUtilityTypeCount = (obj?: { __typename?: any } | null): obj is TelemetryUtilityTypeCount => { + if (!obj?.__typename) throw new Error('__typename is missing in "isTelemetryUtilityTypeCount"') + return TelemetryUtilityTypeCount_possibleTypes.includes(obj.__typename) + } + + + + const TelemetryVersionCount_possibleTypes: string[] = ['TelemetryVersionCount'] + export const isTelemetryVersionCount = (obj?: { __typename?: any } | null): obj is TelemetryVersionCount => { + if (!obj?.__typename) throw new Error('__typename is missing in "isTelemetryVersionCount"') + return TelemetryVersionCount_possibleTypes.includes(obj.__typename) + } + + + + const TestUploadResponse_possibleTypes: string[] = ['TestUploadResponse'] + export const isTestUploadResponse = (obj?: { __typename?: any } | null): obj is TestUploadResponse => { + if (!obj?.__typename) throw new Error('__typename is missing in "isTestUploadResponse"') + return TestUploadResponse_possibleTypes.includes(obj.__typename) + } + + + + const TimescaleJob_possibleTypes: string[] = ['TimescaleJob'] + export const isTimescaleJob = (obj?: { __typename?: any } | null): obj is TimescaleJob => { + if (!obj?.__typename) throw new Error('__typename is missing in "isTimescaleJob"') + return TimescaleJob_possibleTypes.includes(obj.__typename) + } + + + + const TimescaleStats_possibleTypes: string[] = ['TimescaleStats'] + export const isTimescaleStats = (obj?: { __typename?: any } | null): obj is TimescaleStats => { + if (!obj?.__typename) throw new Error('__typename is missing in "isTimescaleStats"') + return TimescaleStats_possibleTypes.includes(obj.__typename) + } + + + + const TournamentAward_possibleTypes: string[] = ['TournamentAward'] + export const isTournamentAward = (obj?: { __typename?: any } | null): obj is TournamentAward => { + if (!obj?.__typename) throw new Error('__typename is missing in "isTournamentAward"') + return TournamentAward_possibleTypes.includes(obj.__typename) + } + + + + const TournamentDraftOutput_possibleTypes: string[] = ['TournamentDraftOutput'] + export const isTournamentDraftOutput = (obj?: { __typename?: any } | null): obj is TournamentDraftOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isTournamentDraftOutput"') + return TournamentDraftOutput_possibleTypes.includes(obj.__typename) + } + + + + const TournamentInviteCodeOutput_possibleTypes: string[] = ['TournamentInviteCodeOutput'] + export const isTournamentInviteCodeOutput = (obj?: { __typename?: any } | null): obj is TournamentInviteCodeOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isTournamentInviteCodeOutput"') + return TournamentInviteCodeOutput_possibleTypes.includes(obj.__typename) + } + + + + const TournamentMatchResetImpact_possibleTypes: string[] = ['TournamentMatchResetImpact'] + export const isTournamentMatchResetImpact = (obj?: { __typename?: any } | null): obj is TournamentMatchResetImpact => { + if (!obj?.__typename) throw new Error('__typename is missing in "isTournamentMatchResetImpact"') + return TournamentMatchResetImpact_possibleTypes.includes(obj.__typename) + } + + + + const UtilityBlockingOutput_possibleTypes: string[] = ['UtilityBlockingOutput'] + export const isUtilityBlockingOutput = (obj?: { __typename?: any } | null): obj is UtilityBlockingOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityBlockingOutput"') + return UtilityBlockingOutput_possibleTypes.includes(obj.__typename) + } + + + + const UtilityBlockingResult_possibleTypes: string[] = ['UtilityBlockingResult'] + export const isUtilityBlockingResult = (obj?: { __typename?: any } | null): obj is UtilityBlockingResult => { + if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityBlockingResult"') + return UtilityBlockingResult_possibleTypes.includes(obj.__typename) + } + + + + const UtilityCalibrationOutput_possibleTypes: string[] = ['UtilityCalibrationOutput'] + export const isUtilityCalibrationOutput = (obj?: { __typename?: any } | null): obj is UtilityCalibrationOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityCalibrationOutput"') + return UtilityCalibrationOutput_possibleTypes.includes(obj.__typename) + } + + + + const UtilityDriftScanOutput_possibleTypes: string[] = ['UtilityDriftScanOutput'] + export const isUtilityDriftScanOutput = (obj?: { __typename?: any } | null): obj is UtilityDriftScanOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityDriftScanOutput"') + return UtilityDriftScanOutput_possibleTypes.includes(obj.__typename) + } + + + + const UtilityDrillLoadOutput_possibleTypes: string[] = ['UtilityDrillLoadOutput'] + export const isUtilityDrillLoadOutput = (obj?: { __typename?: any } | null): obj is UtilityDrillLoadOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityDrillLoadOutput"') + return UtilityDrillLoadOutput_possibleTypes.includes(obj.__typename) + } + + + + const UtilityImportError_possibleTypes: string[] = ['UtilityImportError'] + export const isUtilityImportError = (obj?: { __typename?: any } | null): obj is UtilityImportError => { + if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityImportError"') + return UtilityImportError_possibleTypes.includes(obj.__typename) + } + + + + const UtilityImportOutput_possibleTypes: string[] = ['UtilityImportOutput'] + export const isUtilityImportOutput = (obj?: { __typename?: any } | null): obj is UtilityImportOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityImportOutput"') + return UtilityImportOutput_possibleTypes.includes(obj.__typename) + } + + + + const UtilityLaunchSeedBackfillOutput_possibleTypes: string[] = ['UtilityLaunchSeedBackfillOutput'] + export const isUtilityLaunchSeedBackfillOutput = (obj?: { __typename?: any } | null): obj is UtilityLaunchSeedBackfillOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityLaunchSeedBackfillOutput"') + return UtilityLaunchSeedBackfillOutput_possibleTypes.includes(obj.__typename) + } + + + + const UtilityLineupOutput_possibleTypes: string[] = ['UtilityLineupOutput'] + export const isUtilityLineupOutput = (obj?: { __typename?: any } | null): obj is UtilityLineupOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityLineupOutput"') + return UtilityLineupOutput_possibleTypes.includes(obj.__typename) + } + + + + const UtilityLoadOutput_possibleTypes: string[] = ['UtilityLoadOutput'] + export const isUtilityLoadOutput = (obj?: { __typename?: any } | null): obj is UtilityLoadOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityLoadOutput"') + return UtilityLoadOutput_possibleTypes.includes(obj.__typename) + } + + + + const UtilityMissPatternOutput_possibleTypes: string[] = ['UtilityMissPatternOutput'] + export const isUtilityMissPatternOutput = (obj?: { __typename?: any } | null): obj is UtilityMissPatternOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityMissPatternOutput"') + return UtilityMissPatternOutput_possibleTypes.includes(obj.__typename) + } + + + + const UtilityOneWayOutput_possibleTypes: string[] = ['UtilityOneWayOutput'] + export const isUtilityOneWayOutput = (obj?: { __typename?: any } | null): obj is UtilityOneWayOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityOneWayOutput"') + return UtilityOneWayOutput_possibleTypes.includes(obj.__typename) + } + + + + const UtilityOneWayResult_possibleTypes: string[] = ['UtilityOneWayResult'] + export const isUtilityOneWayResult = (obj?: { __typename?: any } | null): obj is UtilityOneWayResult => { + if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityOneWayResult"') + return UtilityOneWayResult_possibleTypes.includes(obj.__typename) + } + + + + const UtilityPlaybookCoverageOutput_possibleTypes: string[] = ['UtilityPlaybookCoverageOutput'] + export const isUtilityPlaybookCoverageOutput = (obj?: { __typename?: any } | null): obj is UtilityPlaybookCoverageOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityPlaybookCoverageOutput"') + return UtilityPlaybookCoverageOutput_possibleTypes.includes(obj.__typename) + } + + + + const UtilityPlaybookCoverageResult_possibleTypes: string[] = ['UtilityPlaybookCoverageResult'] + export const isUtilityPlaybookCoverageResult = (obj?: { __typename?: any } | null): obj is UtilityPlaybookCoverageResult => { + if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityPlaybookCoverageResult"') + return UtilityPlaybookCoverageResult_possibleTypes.includes(obj.__typename) + } + + + + const UtilityPlaybookOutput_possibleTypes: string[] = ['UtilityPlaybookOutput'] + export const isUtilityPlaybookOutput = (obj?: { __typename?: any } | null): obj is UtilityPlaybookOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityPlaybookOutput"') + return UtilityPlaybookOutput_possibleTypes.includes(obj.__typename) + } + + + + const UtilityPracticeMapChangeOutput_possibleTypes: string[] = ['UtilityPracticeMapChangeOutput'] + export const isUtilityPracticeMapChangeOutput = (obj?: { __typename?: any } | null): obj is UtilityPracticeMapChangeOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityPracticeMapChangeOutput"') + return UtilityPracticeMapChangeOutput_possibleTypes.includes(obj.__typename) + } + + + + const UtilityPracticePlanEntry_possibleTypes: string[] = ['UtilityPracticePlanEntry'] + export const isUtilityPracticePlanEntry = (obj?: { __typename?: any } | null): obj is UtilityPracticePlanEntry => { + if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityPracticePlanEntry"') + return UtilityPracticePlanEntry_possibleTypes.includes(obj.__typename) + } + + + + const UtilityPracticePlanOutput_possibleTypes: string[] = ['UtilityPracticePlanOutput'] + export const isUtilityPracticePlanOutput = (obj?: { __typename?: any } | null): obj is UtilityPracticePlanOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityPracticePlanOutput"') + return UtilityPracticePlanOutput_possibleTypes.includes(obj.__typename) + } + + + + const UtilityPracticeServer_possibleTypes: string[] = ['UtilityPracticeServer'] + export const isUtilityPracticeServer = (obj?: { __typename?: any } | null): obj is UtilityPracticeServer => { + if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityPracticeServer"') + return UtilityPracticeServer_possibleTypes.includes(obj.__typename) + } + + + + const UtilityPracticeServersOutput_possibleTypes: string[] = ['UtilityPracticeServersOutput'] + export const isUtilityPracticeServersOutput = (obj?: { __typename?: any } | null): obj is UtilityPracticeServersOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityPracticeServersOutput"') + return UtilityPracticeServersOutput_possibleTypes.includes(obj.__typename) + } + + + + const UtilityPracticeSessionOutput_possibleTypes: string[] = ['UtilityPracticeSessionOutput'] + export const isUtilityPracticeSessionOutput = (obj?: { __typename?: any } | null): obj is UtilityPracticeSessionOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityPracticeSessionOutput"') + return UtilityPracticeSessionOutput_possibleTypes.includes(obj.__typename) + } + + + + const UtilityPracticeWhereOutput_possibleTypes: string[] = ['UtilityPracticeWhereOutput'] + export const isUtilityPracticeWhereOutput = (obj?: { __typename?: any } | null): obj is UtilityPracticeWhereOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityPracticeWhereOutput"') + return UtilityPracticeWhereOutput_possibleTypes.includes(obj.__typename) + } + + + + const UtilityPurgeOutput_possibleTypes: string[] = ['UtilityPurgeOutput'] + export const isUtilityPurgeOutput = (obj?: { __typename?: any } | null): obj is UtilityPurgeOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityPurgeOutput"') + return UtilityPurgeOutput_possibleTypes.includes(obj.__typename) + } + + + + const UtilityRemineOutput_possibleTypes: string[] = ['UtilityRemineOutput'] + export const isUtilityRemineOutput = (obj?: { __typename?: any } | null): obj is UtilityRemineOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityRemineOutput"') + return UtilityRemineOutput_possibleTypes.includes(obj.__typename) + } + + + + const UtilityRenderClearOutput_possibleTypes: string[] = ['UtilityRenderClearOutput'] + export const isUtilityRenderClearOutput = (obj?: { __typename?: any } | null): obj is UtilityRenderClearOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityRenderClearOutput"') + return UtilityRenderClearOutput_possibleTypes.includes(obj.__typename) + } + + + + const UtilityRenderQueueOutput_possibleTypes: string[] = ['UtilityRenderQueueOutput'] + export const isUtilityRenderQueueOutput = (obj?: { __typename?: any } | null): obj is UtilityRenderQueueOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityRenderQueueOutput"') + return UtilityRenderQueueOutput_possibleTypes.includes(obj.__typename) + } + + + + const UtilitySightlineOutput_possibleTypes: string[] = ['UtilitySightlineOutput'] + export const isUtilitySightlineOutput = (obj?: { __typename?: any } | null): obj is UtilitySightlineOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isUtilitySightlineOutput"') + return UtilitySightlineOutput_possibleTypes.includes(obj.__typename) + } + + + + const UtilitySightlineResult_possibleTypes: string[] = ['UtilitySightlineResult'] + export const isUtilitySightlineResult = (obj?: { __typename?: any } | null): obj is UtilitySightlineResult => { + if (!obj?.__typename) throw new Error('__typename is missing in "isUtilitySightlineResult"') + return UtilitySightlineResult_possibleTypes.includes(obj.__typename) + } + + + + const UtilitySolveOutput_possibleTypes: string[] = ['UtilitySolveOutput'] + export const isUtilitySolveOutput = (obj?: { __typename?: any } | null): obj is UtilitySolveOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isUtilitySolveOutput"') + return UtilitySolveOutput_possibleTypes.includes(obj.__typename) + } + + + + const UtilityTeamUtilityEntry_possibleTypes: string[] = ['UtilityTeamUtilityEntry'] + export const isUtilityTeamUtilityEntry = (obj?: { __typename?: any } | null): obj is UtilityTeamUtilityEntry => { + if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityTeamUtilityEntry"') + return UtilityTeamUtilityEntry_possibleTypes.includes(obj.__typename) + } + + + + const UtilityTeamUtilityOutput_possibleTypes: string[] = ['UtilityTeamUtilityOutput'] + export const isUtilityTeamUtilityOutput = (obj?: { __typename?: any } | null): obj is UtilityTeamUtilityOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityTeamUtilityOutput"') + return UtilityTeamUtilityOutput_possibleTypes.includes(obj.__typename) + } + + + + const UtilityUtilityReportOutput_possibleTypes: string[] = ['UtilityUtilityReportOutput'] + export const isUtilityUtilityReportOutput = (obj?: { __typename?: any } | null): obj is UtilityUtilityReportOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityUtilityReportOutput"') + return UtilityUtilityReportOutput_possibleTypes.includes(obj.__typename) + } + + + + const UtilityUtilityTypeReport_possibleTypes: string[] = ['UtilityUtilityTypeReport'] + export const isUtilityUtilityTypeReport = (obj?: { __typename?: any } | null): obj is UtilityUtilityTypeReport => { + if (!obj?.__typename) throw new Error('__typename is missing in "isUtilityUtilityTypeReport"') + return UtilityUtilityTypeReport_possibleTypes.includes(obj.__typename) + } + + + + const WatchDemoOutput_possibleTypes: string[] = ['WatchDemoOutput'] + export const isWatchDemoOutput = (obj?: { __typename?: any } | null): obj is WatchDemoOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isWatchDemoOutput"') + return WatchDemoOutput_possibleTypes.includes(obj.__typename) + } + + + + const WebPushPlatformCount_possibleTypes: string[] = ['WebPushPlatformCount'] + export const isWebPushPlatformCount = (obj?: { __typename?: any } | null): obj is WebPushPlatformCount => { + if (!obj?.__typename) throw new Error('__typename is missing in "isWebPushPlatformCount"') + return WebPushPlatformCount_possibleTypes.includes(obj.__typename) + } + + + + const WebPushStatusOutput_possibleTypes: string[] = ['WebPushStatusOutput'] + export const isWebPushStatusOutput = (obj?: { __typename?: any } | null): obj is WebPushStatusOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isWebPushStatusOutput"') + return WebPushStatusOutput_possibleTypes.includes(obj.__typename) + } + + + + const _map_pool_possibleTypes: string[] = ['_map_pool'] + export const is_map_pool = (obj?: { __typename?: any } | null): obj is _map_pool => { + if (!obj?.__typename) throw new Error('__typename is missing in "is_map_pool"') + return _map_pool_possibleTypes.includes(obj.__typename) + } + + + + const _map_pool_aggregate_possibleTypes: string[] = ['_map_pool_aggregate'] + export const is_map_pool_aggregate = (obj?: { __typename?: any } | null): obj is _map_pool_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "is_map_pool_aggregate"') + return _map_pool_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const _map_pool_aggregate_fields_possibleTypes: string[] = ['_map_pool_aggregate_fields'] + export const is_map_pool_aggregate_fields = (obj?: { __typename?: any } | null): obj is _map_pool_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "is_map_pool_aggregate_fields"') + return _map_pool_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const _map_pool_max_fields_possibleTypes: string[] = ['_map_pool_max_fields'] + export const is_map_pool_max_fields = (obj?: { __typename?: any } | null): obj is _map_pool_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "is_map_pool_max_fields"') + return _map_pool_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const _map_pool_min_fields_possibleTypes: string[] = ['_map_pool_min_fields'] + export const is_map_pool_min_fields = (obj?: { __typename?: any } | null): obj is _map_pool_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "is_map_pool_min_fields"') + return _map_pool_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const _map_pool_mutation_response_possibleTypes: string[] = ['_map_pool_mutation_response'] + export const is_map_pool_mutation_response = (obj?: { __typename?: any } | null): obj is _map_pool_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "is_map_pool_mutation_response"') + return _map_pool_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const abandoned_matches_possibleTypes: string[] = ['abandoned_matches'] + export const isabandoned_matches = (obj?: { __typename?: any } | null): obj is abandoned_matches => { + if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches"') + return abandoned_matches_possibleTypes.includes(obj.__typename) + } + + + + const abandoned_matches_aggregate_possibleTypes: string[] = ['abandoned_matches_aggregate'] + export const isabandoned_matches_aggregate = (obj?: { __typename?: any } | null): obj is abandoned_matches_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_aggregate"') + return abandoned_matches_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const abandoned_matches_aggregate_fields_possibleTypes: string[] = ['abandoned_matches_aggregate_fields'] + export const isabandoned_matches_aggregate_fields = (obj?: { __typename?: any } | null): obj is abandoned_matches_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_aggregate_fields"') + return abandoned_matches_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const abandoned_matches_avg_fields_possibleTypes: string[] = ['abandoned_matches_avg_fields'] + export const isabandoned_matches_avg_fields = (obj?: { __typename?: any } | null): obj is abandoned_matches_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_avg_fields"') + return abandoned_matches_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const abandoned_matches_max_fields_possibleTypes: string[] = ['abandoned_matches_max_fields'] + export const isabandoned_matches_max_fields = (obj?: { __typename?: any } | null): obj is abandoned_matches_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_max_fields"') + return abandoned_matches_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const abandoned_matches_min_fields_possibleTypes: string[] = ['abandoned_matches_min_fields'] + export const isabandoned_matches_min_fields = (obj?: { __typename?: any } | null): obj is abandoned_matches_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_min_fields"') + return abandoned_matches_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const abandoned_matches_mutation_response_possibleTypes: string[] = ['abandoned_matches_mutation_response'] + export const isabandoned_matches_mutation_response = (obj?: { __typename?: any } | null): obj is abandoned_matches_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_mutation_response"') + return abandoned_matches_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const abandoned_matches_stddev_fields_possibleTypes: string[] = ['abandoned_matches_stddev_fields'] + export const isabandoned_matches_stddev_fields = (obj?: { __typename?: any } | null): obj is abandoned_matches_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_stddev_fields"') + return abandoned_matches_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const abandoned_matches_stddev_pop_fields_possibleTypes: string[] = ['abandoned_matches_stddev_pop_fields'] + export const isabandoned_matches_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is abandoned_matches_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_stddev_pop_fields"') + return abandoned_matches_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const abandoned_matches_stddev_samp_fields_possibleTypes: string[] = ['abandoned_matches_stddev_samp_fields'] + export const isabandoned_matches_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is abandoned_matches_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_stddev_samp_fields"') + return abandoned_matches_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const abandoned_matches_sum_fields_possibleTypes: string[] = ['abandoned_matches_sum_fields'] + export const isabandoned_matches_sum_fields = (obj?: { __typename?: any } | null): obj is abandoned_matches_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_sum_fields"') + return abandoned_matches_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const abandoned_matches_var_pop_fields_possibleTypes: string[] = ['abandoned_matches_var_pop_fields'] + export const isabandoned_matches_var_pop_fields = (obj?: { __typename?: any } | null): obj is abandoned_matches_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_var_pop_fields"') + return abandoned_matches_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const abandoned_matches_var_samp_fields_possibleTypes: string[] = ['abandoned_matches_var_samp_fields'] + export const isabandoned_matches_var_samp_fields = (obj?: { __typename?: any } | null): obj is abandoned_matches_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_var_samp_fields"') + return abandoned_matches_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const abandoned_matches_variance_fields_possibleTypes: string[] = ['abandoned_matches_variance_fields'] + export const isabandoned_matches_variance_fields = (obj?: { __typename?: any } | null): obj is abandoned_matches_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_variance_fields"') + return abandoned_matches_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const api_keys_possibleTypes: string[] = ['api_keys'] + export const isapi_keys = (obj?: { __typename?: any } | null): obj is api_keys => { + if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys"') + return api_keys_possibleTypes.includes(obj.__typename) + } + + + + const api_keys_aggregate_possibleTypes: string[] = ['api_keys_aggregate'] + export const isapi_keys_aggregate = (obj?: { __typename?: any } | null): obj is api_keys_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_aggregate"') + return api_keys_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const api_keys_aggregate_fields_possibleTypes: string[] = ['api_keys_aggregate_fields'] + export const isapi_keys_aggregate_fields = (obj?: { __typename?: any } | null): obj is api_keys_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_aggregate_fields"') + return api_keys_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const api_keys_avg_fields_possibleTypes: string[] = ['api_keys_avg_fields'] + export const isapi_keys_avg_fields = (obj?: { __typename?: any } | null): obj is api_keys_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_avg_fields"') + return api_keys_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const api_keys_max_fields_possibleTypes: string[] = ['api_keys_max_fields'] + export const isapi_keys_max_fields = (obj?: { __typename?: any } | null): obj is api_keys_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_max_fields"') + return api_keys_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const api_keys_min_fields_possibleTypes: string[] = ['api_keys_min_fields'] + export const isapi_keys_min_fields = (obj?: { __typename?: any } | null): obj is api_keys_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_min_fields"') + return api_keys_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const api_keys_mutation_response_possibleTypes: string[] = ['api_keys_mutation_response'] + export const isapi_keys_mutation_response = (obj?: { __typename?: any } | null): obj is api_keys_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_mutation_response"') + return api_keys_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const api_keys_stddev_fields_possibleTypes: string[] = ['api_keys_stddev_fields'] + export const isapi_keys_stddev_fields = (obj?: { __typename?: any } | null): obj is api_keys_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_stddev_fields"') + return api_keys_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const api_keys_stddev_pop_fields_possibleTypes: string[] = ['api_keys_stddev_pop_fields'] + export const isapi_keys_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is api_keys_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_stddev_pop_fields"') + return api_keys_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const api_keys_stddev_samp_fields_possibleTypes: string[] = ['api_keys_stddev_samp_fields'] + export const isapi_keys_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is api_keys_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_stddev_samp_fields"') + return api_keys_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const api_keys_sum_fields_possibleTypes: string[] = ['api_keys_sum_fields'] + export const isapi_keys_sum_fields = (obj?: { __typename?: any } | null): obj is api_keys_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_sum_fields"') + return api_keys_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const api_keys_var_pop_fields_possibleTypes: string[] = ['api_keys_var_pop_fields'] + export const isapi_keys_var_pop_fields = (obj?: { __typename?: any } | null): obj is api_keys_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_var_pop_fields"') + return api_keys_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const api_keys_var_samp_fields_possibleTypes: string[] = ['api_keys_var_samp_fields'] + export const isapi_keys_var_samp_fields = (obj?: { __typename?: any } | null): obj is api_keys_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_var_samp_fields"') + return api_keys_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const api_keys_variance_fields_possibleTypes: string[] = ['api_keys_variance_fields'] + export const isapi_keys_variance_fields = (obj?: { __typename?: any } | null): obj is api_keys_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_variance_fields"') + return api_keys_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const award_recipients_possibleTypes: string[] = ['award_recipients'] + export const isaward_recipients = (obj?: { __typename?: any } | null): obj is award_recipients => { + if (!obj?.__typename) throw new Error('__typename is missing in "isaward_recipients"') + return award_recipients_possibleTypes.includes(obj.__typename) + } + + + + const award_recipients_aggregate_possibleTypes: string[] = ['award_recipients_aggregate'] + export const isaward_recipients_aggregate = (obj?: { __typename?: any } | null): obj is award_recipients_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isaward_recipients_aggregate"') + return award_recipients_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const award_recipients_aggregate_fields_possibleTypes: string[] = ['award_recipients_aggregate_fields'] + export const isaward_recipients_aggregate_fields = (obj?: { __typename?: any } | null): obj is award_recipients_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isaward_recipients_aggregate_fields"') + return award_recipients_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const award_recipients_avg_fields_possibleTypes: string[] = ['award_recipients_avg_fields'] + export const isaward_recipients_avg_fields = (obj?: { __typename?: any } | null): obj is award_recipients_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isaward_recipients_avg_fields"') + return award_recipients_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const award_recipients_max_fields_possibleTypes: string[] = ['award_recipients_max_fields'] + export const isaward_recipients_max_fields = (obj?: { __typename?: any } | null): obj is award_recipients_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isaward_recipients_max_fields"') + return award_recipients_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const award_recipients_min_fields_possibleTypes: string[] = ['award_recipients_min_fields'] + export const isaward_recipients_min_fields = (obj?: { __typename?: any } | null): obj is award_recipients_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isaward_recipients_min_fields"') + return award_recipients_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const award_recipients_mutation_response_possibleTypes: string[] = ['award_recipients_mutation_response'] + export const isaward_recipients_mutation_response = (obj?: { __typename?: any } | null): obj is award_recipients_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isaward_recipients_mutation_response"') + return award_recipients_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const award_recipients_stddev_fields_possibleTypes: string[] = ['award_recipients_stddev_fields'] + export const isaward_recipients_stddev_fields = (obj?: { __typename?: any } | null): obj is award_recipients_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isaward_recipients_stddev_fields"') + return award_recipients_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const award_recipients_stddev_pop_fields_possibleTypes: string[] = ['award_recipients_stddev_pop_fields'] + export const isaward_recipients_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is award_recipients_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isaward_recipients_stddev_pop_fields"') + return award_recipients_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const award_recipients_stddev_samp_fields_possibleTypes: string[] = ['award_recipients_stddev_samp_fields'] + export const isaward_recipients_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is award_recipients_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isaward_recipients_stddev_samp_fields"') + return award_recipients_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const award_recipients_sum_fields_possibleTypes: string[] = ['award_recipients_sum_fields'] + export const isaward_recipients_sum_fields = (obj?: { __typename?: any } | null): obj is award_recipients_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isaward_recipients_sum_fields"') + return award_recipients_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const award_recipients_var_pop_fields_possibleTypes: string[] = ['award_recipients_var_pop_fields'] + export const isaward_recipients_var_pop_fields = (obj?: { __typename?: any } | null): obj is award_recipients_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isaward_recipients_var_pop_fields"') + return award_recipients_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const award_recipients_var_samp_fields_possibleTypes: string[] = ['award_recipients_var_samp_fields'] + export const isaward_recipients_var_samp_fields = (obj?: { __typename?: any } | null): obj is award_recipients_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isaward_recipients_var_samp_fields"') + return award_recipients_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const award_recipients_variance_fields_possibleTypes: string[] = ['award_recipients_variance_fields'] + export const isaward_recipients_variance_fields = (obj?: { __typename?: any } | null): obj is award_recipients_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isaward_recipients_variance_fields"') + return award_recipients_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const awards_possibleTypes: string[] = ['awards'] + export const isawards = (obj?: { __typename?: any } | null): obj is awards => { + if (!obj?.__typename) throw new Error('__typename is missing in "isawards"') + return awards_possibleTypes.includes(obj.__typename) + } + + + + const awards_aggregate_possibleTypes: string[] = ['awards_aggregate'] + export const isawards_aggregate = (obj?: { __typename?: any } | null): obj is awards_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isawards_aggregate"') + return awards_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const awards_aggregate_fields_possibleTypes: string[] = ['awards_aggregate_fields'] + export const isawards_aggregate_fields = (obj?: { __typename?: any } | null): obj is awards_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isawards_aggregate_fields"') + return awards_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const awards_avg_fields_possibleTypes: string[] = ['awards_avg_fields'] + export const isawards_avg_fields = (obj?: { __typename?: any } | null): obj is awards_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isawards_avg_fields"') + return awards_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const awards_max_fields_possibleTypes: string[] = ['awards_max_fields'] + export const isawards_max_fields = (obj?: { __typename?: any } | null): obj is awards_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isawards_max_fields"') + return awards_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const awards_min_fields_possibleTypes: string[] = ['awards_min_fields'] + export const isawards_min_fields = (obj?: { __typename?: any } | null): obj is awards_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isawards_min_fields"') + return awards_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const awards_mutation_response_possibleTypes: string[] = ['awards_mutation_response'] + export const isawards_mutation_response = (obj?: { __typename?: any } | null): obj is awards_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isawards_mutation_response"') + return awards_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const awards_stddev_fields_possibleTypes: string[] = ['awards_stddev_fields'] + export const isawards_stddev_fields = (obj?: { __typename?: any } | null): obj is awards_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isawards_stddev_fields"') + return awards_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const awards_stddev_pop_fields_possibleTypes: string[] = ['awards_stddev_pop_fields'] + export const isawards_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is awards_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isawards_stddev_pop_fields"') + return awards_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const awards_stddev_samp_fields_possibleTypes: string[] = ['awards_stddev_samp_fields'] + export const isawards_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is awards_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isawards_stddev_samp_fields"') + return awards_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const awards_sum_fields_possibleTypes: string[] = ['awards_sum_fields'] + export const isawards_sum_fields = (obj?: { __typename?: any } | null): obj is awards_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isawards_sum_fields"') + return awards_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const awards_var_pop_fields_possibleTypes: string[] = ['awards_var_pop_fields'] + export const isawards_var_pop_fields = (obj?: { __typename?: any } | null): obj is awards_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isawards_var_pop_fields"') + return awards_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const awards_var_samp_fields_possibleTypes: string[] = ['awards_var_samp_fields'] + export const isawards_var_samp_fields = (obj?: { __typename?: any } | null): obj is awards_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isawards_var_samp_fields"') + return awards_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const awards_variance_fields_possibleTypes: string[] = ['awards_variance_fields'] + export const isawards_variance_fields = (obj?: { __typename?: any } | null): obj is awards_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isawards_variance_fields"') + return awards_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const chat_read_state_possibleTypes: string[] = ['chat_read_state'] + export const ischat_read_state = (obj?: { __typename?: any } | null): obj is chat_read_state => { + if (!obj?.__typename) throw new Error('__typename is missing in "ischat_read_state"') + return chat_read_state_possibleTypes.includes(obj.__typename) + } + + + + const chat_read_state_aggregate_possibleTypes: string[] = ['chat_read_state_aggregate'] + export const ischat_read_state_aggregate = (obj?: { __typename?: any } | null): obj is chat_read_state_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ischat_read_state_aggregate"') + return chat_read_state_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const chat_read_state_aggregate_fields_possibleTypes: string[] = ['chat_read_state_aggregate_fields'] + export const ischat_read_state_aggregate_fields = (obj?: { __typename?: any } | null): obj is chat_read_state_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ischat_read_state_aggregate_fields"') + return chat_read_state_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const chat_read_state_avg_fields_possibleTypes: string[] = ['chat_read_state_avg_fields'] + export const ischat_read_state_avg_fields = (obj?: { __typename?: any } | null): obj is chat_read_state_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ischat_read_state_avg_fields"') + return chat_read_state_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const chat_read_state_max_fields_possibleTypes: string[] = ['chat_read_state_max_fields'] + export const ischat_read_state_max_fields = (obj?: { __typename?: any } | null): obj is chat_read_state_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ischat_read_state_max_fields"') + return chat_read_state_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const chat_read_state_min_fields_possibleTypes: string[] = ['chat_read_state_min_fields'] + export const ischat_read_state_min_fields = (obj?: { __typename?: any } | null): obj is chat_read_state_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ischat_read_state_min_fields"') + return chat_read_state_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const chat_read_state_mutation_response_possibleTypes: string[] = ['chat_read_state_mutation_response'] + export const ischat_read_state_mutation_response = (obj?: { __typename?: any } | null): obj is chat_read_state_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ischat_read_state_mutation_response"') + return chat_read_state_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const chat_read_state_stddev_fields_possibleTypes: string[] = ['chat_read_state_stddev_fields'] + export const ischat_read_state_stddev_fields = (obj?: { __typename?: any } | null): obj is chat_read_state_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ischat_read_state_stddev_fields"') + return chat_read_state_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const chat_read_state_stddev_pop_fields_possibleTypes: string[] = ['chat_read_state_stddev_pop_fields'] + export const ischat_read_state_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is chat_read_state_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ischat_read_state_stddev_pop_fields"') + return chat_read_state_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const chat_read_state_stddev_samp_fields_possibleTypes: string[] = ['chat_read_state_stddev_samp_fields'] + export const ischat_read_state_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is chat_read_state_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ischat_read_state_stddev_samp_fields"') + return chat_read_state_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const chat_read_state_sum_fields_possibleTypes: string[] = ['chat_read_state_sum_fields'] + export const ischat_read_state_sum_fields = (obj?: { __typename?: any } | null): obj is chat_read_state_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ischat_read_state_sum_fields"') + return chat_read_state_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const chat_read_state_var_pop_fields_possibleTypes: string[] = ['chat_read_state_var_pop_fields'] + export const ischat_read_state_var_pop_fields = (obj?: { __typename?: any } | null): obj is chat_read_state_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ischat_read_state_var_pop_fields"') + return chat_read_state_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const chat_read_state_var_samp_fields_possibleTypes: string[] = ['chat_read_state_var_samp_fields'] + export const ischat_read_state_var_samp_fields = (obj?: { __typename?: any } | null): obj is chat_read_state_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ischat_read_state_var_samp_fields"') + return chat_read_state_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const chat_read_state_variance_fields_possibleTypes: string[] = ['chat_read_state_variance_fields'] + export const ischat_read_state_variance_fields = (obj?: { __typename?: any } | null): obj is chat_read_state_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ischat_read_state_variance_fields"') + return chat_read_state_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const clip_render_jobs_possibleTypes: string[] = ['clip_render_jobs'] + export const isclip_render_jobs = (obj?: { __typename?: any } | null): obj is clip_render_jobs => { + if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs"') + return clip_render_jobs_possibleTypes.includes(obj.__typename) + } + + + + const clip_render_jobs_aggregate_possibleTypes: string[] = ['clip_render_jobs_aggregate'] + export const isclip_render_jobs_aggregate = (obj?: { __typename?: any } | null): obj is clip_render_jobs_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_aggregate"') + return clip_render_jobs_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const clip_render_jobs_aggregate_fields_possibleTypes: string[] = ['clip_render_jobs_aggregate_fields'] + export const isclip_render_jobs_aggregate_fields = (obj?: { __typename?: any } | null): obj is clip_render_jobs_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_aggregate_fields"') + return clip_render_jobs_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const clip_render_jobs_avg_fields_possibleTypes: string[] = ['clip_render_jobs_avg_fields'] + export const isclip_render_jobs_avg_fields = (obj?: { __typename?: any } | null): obj is clip_render_jobs_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_avg_fields"') + return clip_render_jobs_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const clip_render_jobs_max_fields_possibleTypes: string[] = ['clip_render_jobs_max_fields'] + export const isclip_render_jobs_max_fields = (obj?: { __typename?: any } | null): obj is clip_render_jobs_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_max_fields"') + return clip_render_jobs_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const clip_render_jobs_min_fields_possibleTypes: string[] = ['clip_render_jobs_min_fields'] + export const isclip_render_jobs_min_fields = (obj?: { __typename?: any } | null): obj is clip_render_jobs_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_min_fields"') + return clip_render_jobs_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const clip_render_jobs_mutation_response_possibleTypes: string[] = ['clip_render_jobs_mutation_response'] + export const isclip_render_jobs_mutation_response = (obj?: { __typename?: any } | null): obj is clip_render_jobs_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_mutation_response"') + return clip_render_jobs_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const clip_render_jobs_stddev_fields_possibleTypes: string[] = ['clip_render_jobs_stddev_fields'] + export const isclip_render_jobs_stddev_fields = (obj?: { __typename?: any } | null): obj is clip_render_jobs_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_stddev_fields"') + return clip_render_jobs_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const clip_render_jobs_stddev_pop_fields_possibleTypes: string[] = ['clip_render_jobs_stddev_pop_fields'] + export const isclip_render_jobs_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is clip_render_jobs_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_stddev_pop_fields"') + return clip_render_jobs_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const clip_render_jobs_stddev_samp_fields_possibleTypes: string[] = ['clip_render_jobs_stddev_samp_fields'] + export const isclip_render_jobs_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is clip_render_jobs_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_stddev_samp_fields"') + return clip_render_jobs_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const clip_render_jobs_sum_fields_possibleTypes: string[] = ['clip_render_jobs_sum_fields'] + export const isclip_render_jobs_sum_fields = (obj?: { __typename?: any } | null): obj is clip_render_jobs_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_sum_fields"') + return clip_render_jobs_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const clip_render_jobs_var_pop_fields_possibleTypes: string[] = ['clip_render_jobs_var_pop_fields'] + export const isclip_render_jobs_var_pop_fields = (obj?: { __typename?: any } | null): obj is clip_render_jobs_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_var_pop_fields"') + return clip_render_jobs_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const clip_render_jobs_var_samp_fields_possibleTypes: string[] = ['clip_render_jobs_var_samp_fields'] + export const isclip_render_jobs_var_samp_fields = (obj?: { __typename?: any } | null): obj is clip_render_jobs_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_var_samp_fields"') + return clip_render_jobs_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const clip_render_jobs_variance_fields_possibleTypes: string[] = ['clip_render_jobs_variance_fields'] + export const isclip_render_jobs_variance_fields = (obj?: { __typename?: any } | null): obj is clip_render_jobs_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_variance_fields"') + return clip_render_jobs_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const custom_pages_possibleTypes: string[] = ['custom_pages'] + export const iscustom_pages = (obj?: { __typename?: any } | null): obj is custom_pages => { + if (!obj?.__typename) throw new Error('__typename is missing in "iscustom_pages"') + return custom_pages_possibleTypes.includes(obj.__typename) + } + + + + const custom_pages_aggregate_possibleTypes: string[] = ['custom_pages_aggregate'] + export const iscustom_pages_aggregate = (obj?: { __typename?: any } | null): obj is custom_pages_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "iscustom_pages_aggregate"') + return custom_pages_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const custom_pages_aggregate_fields_possibleTypes: string[] = ['custom_pages_aggregate_fields'] + export const iscustom_pages_aggregate_fields = (obj?: { __typename?: any } | null): obj is custom_pages_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "iscustom_pages_aggregate_fields"') + return custom_pages_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const custom_pages_avg_fields_possibleTypes: string[] = ['custom_pages_avg_fields'] + export const iscustom_pages_avg_fields = (obj?: { __typename?: any } | null): obj is custom_pages_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "iscustom_pages_avg_fields"') + return custom_pages_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const custom_pages_max_fields_possibleTypes: string[] = ['custom_pages_max_fields'] + export const iscustom_pages_max_fields = (obj?: { __typename?: any } | null): obj is custom_pages_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "iscustom_pages_max_fields"') + return custom_pages_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const custom_pages_min_fields_possibleTypes: string[] = ['custom_pages_min_fields'] + export const iscustom_pages_min_fields = (obj?: { __typename?: any } | null): obj is custom_pages_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "iscustom_pages_min_fields"') + return custom_pages_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const custom_pages_mutation_response_possibleTypes: string[] = ['custom_pages_mutation_response'] + export const iscustom_pages_mutation_response = (obj?: { __typename?: any } | null): obj is custom_pages_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "iscustom_pages_mutation_response"') + return custom_pages_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const custom_pages_stddev_fields_possibleTypes: string[] = ['custom_pages_stddev_fields'] + export const iscustom_pages_stddev_fields = (obj?: { __typename?: any } | null): obj is custom_pages_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "iscustom_pages_stddev_fields"') + return custom_pages_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const custom_pages_stddev_pop_fields_possibleTypes: string[] = ['custom_pages_stddev_pop_fields'] + export const iscustom_pages_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is custom_pages_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "iscustom_pages_stddev_pop_fields"') + return custom_pages_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const custom_pages_stddev_samp_fields_possibleTypes: string[] = ['custom_pages_stddev_samp_fields'] + export const iscustom_pages_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is custom_pages_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "iscustom_pages_stddev_samp_fields"') + return custom_pages_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const custom_pages_sum_fields_possibleTypes: string[] = ['custom_pages_sum_fields'] + export const iscustom_pages_sum_fields = (obj?: { __typename?: any } | null): obj is custom_pages_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "iscustom_pages_sum_fields"') + return custom_pages_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const custom_pages_var_pop_fields_possibleTypes: string[] = ['custom_pages_var_pop_fields'] + export const iscustom_pages_var_pop_fields = (obj?: { __typename?: any } | null): obj is custom_pages_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "iscustom_pages_var_pop_fields"') + return custom_pages_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const custom_pages_var_samp_fields_possibleTypes: string[] = ['custom_pages_var_samp_fields'] + export const iscustom_pages_var_samp_fields = (obj?: { __typename?: any } | null): obj is custom_pages_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "iscustom_pages_var_samp_fields"') + return custom_pages_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const custom_pages_variance_fields_possibleTypes: string[] = ['custom_pages_variance_fields'] + export const iscustom_pages_variance_fields = (obj?: { __typename?: any } | null): obj is custom_pages_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "iscustom_pages_variance_fields"') + return custom_pages_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const db_backups_possibleTypes: string[] = ['db_backups'] + export const isdb_backups = (obj?: { __typename?: any } | null): obj is db_backups => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups"') + return db_backups_possibleTypes.includes(obj.__typename) + } + + + + const db_backups_aggregate_possibleTypes: string[] = ['db_backups_aggregate'] + export const isdb_backups_aggregate = (obj?: { __typename?: any } | null): obj is db_backups_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_aggregate"') + return db_backups_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const db_backups_aggregate_fields_possibleTypes: string[] = ['db_backups_aggregate_fields'] + export const isdb_backups_aggregate_fields = (obj?: { __typename?: any } | null): obj is db_backups_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_aggregate_fields"') + return db_backups_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const db_backups_avg_fields_possibleTypes: string[] = ['db_backups_avg_fields'] + export const isdb_backups_avg_fields = (obj?: { __typename?: any } | null): obj is db_backups_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_avg_fields"') + return db_backups_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const db_backups_max_fields_possibleTypes: string[] = ['db_backups_max_fields'] + export const isdb_backups_max_fields = (obj?: { __typename?: any } | null): obj is db_backups_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_max_fields"') + return db_backups_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const db_backups_min_fields_possibleTypes: string[] = ['db_backups_min_fields'] + export const isdb_backups_min_fields = (obj?: { __typename?: any } | null): obj is db_backups_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_min_fields"') + return db_backups_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const db_backups_mutation_response_possibleTypes: string[] = ['db_backups_mutation_response'] + export const isdb_backups_mutation_response = (obj?: { __typename?: any } | null): obj is db_backups_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_mutation_response"') + return db_backups_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const db_backups_stddev_fields_possibleTypes: string[] = ['db_backups_stddev_fields'] + export const isdb_backups_stddev_fields = (obj?: { __typename?: any } | null): obj is db_backups_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_stddev_fields"') + return db_backups_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const db_backups_stddev_pop_fields_possibleTypes: string[] = ['db_backups_stddev_pop_fields'] + export const isdb_backups_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is db_backups_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_stddev_pop_fields"') + return db_backups_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const db_backups_stddev_samp_fields_possibleTypes: string[] = ['db_backups_stddev_samp_fields'] + export const isdb_backups_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is db_backups_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_stddev_samp_fields"') + return db_backups_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const db_backups_sum_fields_possibleTypes: string[] = ['db_backups_sum_fields'] + export const isdb_backups_sum_fields = (obj?: { __typename?: any } | null): obj is db_backups_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_sum_fields"') + return db_backups_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const db_backups_var_pop_fields_possibleTypes: string[] = ['db_backups_var_pop_fields'] + export const isdb_backups_var_pop_fields = (obj?: { __typename?: any } | null): obj is db_backups_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_var_pop_fields"') + return db_backups_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const db_backups_var_samp_fields_possibleTypes: string[] = ['db_backups_var_samp_fields'] + export const isdb_backups_var_samp_fields = (obj?: { __typename?: any } | null): obj is db_backups_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_var_samp_fields"') + return db_backups_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const db_backups_variance_fields_possibleTypes: string[] = ['db_backups_variance_fields'] + export const isdb_backups_variance_fields = (obj?: { __typename?: any } | null): obj is db_backups_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_variance_fields"') + return db_backups_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const direct_conversations_possibleTypes: string[] = ['direct_conversations'] + export const isdirect_conversations = (obj?: { __typename?: any } | null): obj is direct_conversations => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_conversations"') + return direct_conversations_possibleTypes.includes(obj.__typename) + } + + + + const direct_conversations_aggregate_possibleTypes: string[] = ['direct_conversations_aggregate'] + export const isdirect_conversations_aggregate = (obj?: { __typename?: any } | null): obj is direct_conversations_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_conversations_aggregate"') + return direct_conversations_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const direct_conversations_aggregate_fields_possibleTypes: string[] = ['direct_conversations_aggregate_fields'] + export const isdirect_conversations_aggregate_fields = (obj?: { __typename?: any } | null): obj is direct_conversations_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_conversations_aggregate_fields"') + return direct_conversations_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const direct_conversations_avg_fields_possibleTypes: string[] = ['direct_conversations_avg_fields'] + export const isdirect_conversations_avg_fields = (obj?: { __typename?: any } | null): obj is direct_conversations_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_conversations_avg_fields"') + return direct_conversations_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const direct_conversations_max_fields_possibleTypes: string[] = ['direct_conversations_max_fields'] + export const isdirect_conversations_max_fields = (obj?: { __typename?: any } | null): obj is direct_conversations_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_conversations_max_fields"') + return direct_conversations_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const direct_conversations_min_fields_possibleTypes: string[] = ['direct_conversations_min_fields'] + export const isdirect_conversations_min_fields = (obj?: { __typename?: any } | null): obj is direct_conversations_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_conversations_min_fields"') + return direct_conversations_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const direct_conversations_mutation_response_possibleTypes: string[] = ['direct_conversations_mutation_response'] + export const isdirect_conversations_mutation_response = (obj?: { __typename?: any } | null): obj is direct_conversations_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_conversations_mutation_response"') + return direct_conversations_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const direct_conversations_stddev_fields_possibleTypes: string[] = ['direct_conversations_stddev_fields'] + export const isdirect_conversations_stddev_fields = (obj?: { __typename?: any } | null): obj is direct_conversations_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_conversations_stddev_fields"') + return direct_conversations_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const direct_conversations_stddev_pop_fields_possibleTypes: string[] = ['direct_conversations_stddev_pop_fields'] + export const isdirect_conversations_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is direct_conversations_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_conversations_stddev_pop_fields"') + return direct_conversations_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const direct_conversations_stddev_samp_fields_possibleTypes: string[] = ['direct_conversations_stddev_samp_fields'] + export const isdirect_conversations_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is direct_conversations_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_conversations_stddev_samp_fields"') + return direct_conversations_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const direct_conversations_sum_fields_possibleTypes: string[] = ['direct_conversations_sum_fields'] + export const isdirect_conversations_sum_fields = (obj?: { __typename?: any } | null): obj is direct_conversations_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_conversations_sum_fields"') + return direct_conversations_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const direct_conversations_var_pop_fields_possibleTypes: string[] = ['direct_conversations_var_pop_fields'] + export const isdirect_conversations_var_pop_fields = (obj?: { __typename?: any } | null): obj is direct_conversations_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_conversations_var_pop_fields"') + return direct_conversations_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const direct_conversations_var_samp_fields_possibleTypes: string[] = ['direct_conversations_var_samp_fields'] + export const isdirect_conversations_var_samp_fields = (obj?: { __typename?: any } | null): obj is direct_conversations_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_conversations_var_samp_fields"') + return direct_conversations_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const direct_conversations_variance_fields_possibleTypes: string[] = ['direct_conversations_variance_fields'] + export const isdirect_conversations_variance_fields = (obj?: { __typename?: any } | null): obj is direct_conversations_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_conversations_variance_fields"') + return direct_conversations_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const direct_messages_possibleTypes: string[] = ['direct_messages'] + export const isdirect_messages = (obj?: { __typename?: any } | null): obj is direct_messages => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_messages"') + return direct_messages_possibleTypes.includes(obj.__typename) + } + + + + const direct_messages_aggregate_possibleTypes: string[] = ['direct_messages_aggregate'] + export const isdirect_messages_aggregate = (obj?: { __typename?: any } | null): obj is direct_messages_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_messages_aggregate"') + return direct_messages_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const direct_messages_aggregate_fields_possibleTypes: string[] = ['direct_messages_aggregate_fields'] + export const isdirect_messages_aggregate_fields = (obj?: { __typename?: any } | null): obj is direct_messages_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_messages_aggregate_fields"') + return direct_messages_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const direct_messages_avg_fields_possibleTypes: string[] = ['direct_messages_avg_fields'] + export const isdirect_messages_avg_fields = (obj?: { __typename?: any } | null): obj is direct_messages_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_messages_avg_fields"') + return direct_messages_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const direct_messages_max_fields_possibleTypes: string[] = ['direct_messages_max_fields'] + export const isdirect_messages_max_fields = (obj?: { __typename?: any } | null): obj is direct_messages_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_messages_max_fields"') + return direct_messages_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const direct_messages_min_fields_possibleTypes: string[] = ['direct_messages_min_fields'] + export const isdirect_messages_min_fields = (obj?: { __typename?: any } | null): obj is direct_messages_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_messages_min_fields"') + return direct_messages_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const direct_messages_mutation_response_possibleTypes: string[] = ['direct_messages_mutation_response'] + export const isdirect_messages_mutation_response = (obj?: { __typename?: any } | null): obj is direct_messages_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_messages_mutation_response"') + return direct_messages_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const direct_messages_stddev_fields_possibleTypes: string[] = ['direct_messages_stddev_fields'] + export const isdirect_messages_stddev_fields = (obj?: { __typename?: any } | null): obj is direct_messages_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_messages_stddev_fields"') + return direct_messages_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const direct_messages_stddev_pop_fields_possibleTypes: string[] = ['direct_messages_stddev_pop_fields'] + export const isdirect_messages_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is direct_messages_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_messages_stddev_pop_fields"') + return direct_messages_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const direct_messages_stddev_samp_fields_possibleTypes: string[] = ['direct_messages_stddev_samp_fields'] + export const isdirect_messages_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is direct_messages_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_messages_stddev_samp_fields"') + return direct_messages_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const direct_messages_sum_fields_possibleTypes: string[] = ['direct_messages_sum_fields'] + export const isdirect_messages_sum_fields = (obj?: { __typename?: any } | null): obj is direct_messages_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_messages_sum_fields"') + return direct_messages_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const direct_messages_var_pop_fields_possibleTypes: string[] = ['direct_messages_var_pop_fields'] + export const isdirect_messages_var_pop_fields = (obj?: { __typename?: any } | null): obj is direct_messages_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_messages_var_pop_fields"') + return direct_messages_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const direct_messages_var_samp_fields_possibleTypes: string[] = ['direct_messages_var_samp_fields'] + export const isdirect_messages_var_samp_fields = (obj?: { __typename?: any } | null): obj is direct_messages_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_messages_var_samp_fields"') + return direct_messages_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const direct_messages_variance_fields_possibleTypes: string[] = ['direct_messages_variance_fields'] + export const isdirect_messages_variance_fields = (obj?: { __typename?: any } | null): obj is direct_messages_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdirect_messages_variance_fields"') + return direct_messages_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_picks_possibleTypes: string[] = ['draft_game_picks'] + export const isdraft_game_picks = (obj?: { __typename?: any } | null): obj is draft_game_picks => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks"') + return draft_game_picks_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_picks_aggregate_possibleTypes: string[] = ['draft_game_picks_aggregate'] + export const isdraft_game_picks_aggregate = (obj?: { __typename?: any } | null): obj is draft_game_picks_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_aggregate"') + return draft_game_picks_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_picks_aggregate_fields_possibleTypes: string[] = ['draft_game_picks_aggregate_fields'] + export const isdraft_game_picks_aggregate_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_aggregate_fields"') + return draft_game_picks_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_picks_avg_fields_possibleTypes: string[] = ['draft_game_picks_avg_fields'] + export const isdraft_game_picks_avg_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_avg_fields"') + return draft_game_picks_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_picks_max_fields_possibleTypes: string[] = ['draft_game_picks_max_fields'] + export const isdraft_game_picks_max_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_max_fields"') + return draft_game_picks_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_picks_min_fields_possibleTypes: string[] = ['draft_game_picks_min_fields'] + export const isdraft_game_picks_min_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_min_fields"') + return draft_game_picks_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_picks_mutation_response_possibleTypes: string[] = ['draft_game_picks_mutation_response'] + export const isdraft_game_picks_mutation_response = (obj?: { __typename?: any } | null): obj is draft_game_picks_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_mutation_response"') + return draft_game_picks_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_picks_stddev_fields_possibleTypes: string[] = ['draft_game_picks_stddev_fields'] + export const isdraft_game_picks_stddev_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_stddev_fields"') + return draft_game_picks_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_picks_stddev_pop_fields_possibleTypes: string[] = ['draft_game_picks_stddev_pop_fields'] + export const isdraft_game_picks_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_stddev_pop_fields"') + return draft_game_picks_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_picks_stddev_samp_fields_possibleTypes: string[] = ['draft_game_picks_stddev_samp_fields'] + export const isdraft_game_picks_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_stddev_samp_fields"') + return draft_game_picks_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_picks_sum_fields_possibleTypes: string[] = ['draft_game_picks_sum_fields'] + export const isdraft_game_picks_sum_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_sum_fields"') + return draft_game_picks_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_picks_var_pop_fields_possibleTypes: string[] = ['draft_game_picks_var_pop_fields'] + export const isdraft_game_picks_var_pop_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_var_pop_fields"') + return draft_game_picks_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_picks_var_samp_fields_possibleTypes: string[] = ['draft_game_picks_var_samp_fields'] + export const isdraft_game_picks_var_samp_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_var_samp_fields"') + return draft_game_picks_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_picks_variance_fields_possibleTypes: string[] = ['draft_game_picks_variance_fields'] + export const isdraft_game_picks_variance_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_variance_fields"') + return draft_game_picks_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_players_possibleTypes: string[] = ['draft_game_players'] + export const isdraft_game_players = (obj?: { __typename?: any } | null): obj is draft_game_players => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players"') + return draft_game_players_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_players_aggregate_possibleTypes: string[] = ['draft_game_players_aggregate'] + export const isdraft_game_players_aggregate = (obj?: { __typename?: any } | null): obj is draft_game_players_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_aggregate"') + return draft_game_players_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_players_aggregate_fields_possibleTypes: string[] = ['draft_game_players_aggregate_fields'] + export const isdraft_game_players_aggregate_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_aggregate_fields"') + return draft_game_players_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_players_avg_fields_possibleTypes: string[] = ['draft_game_players_avg_fields'] + export const isdraft_game_players_avg_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_avg_fields"') + return draft_game_players_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_players_max_fields_possibleTypes: string[] = ['draft_game_players_max_fields'] + export const isdraft_game_players_max_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_max_fields"') + return draft_game_players_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_players_min_fields_possibleTypes: string[] = ['draft_game_players_min_fields'] + export const isdraft_game_players_min_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_min_fields"') + return draft_game_players_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_players_mutation_response_possibleTypes: string[] = ['draft_game_players_mutation_response'] + export const isdraft_game_players_mutation_response = (obj?: { __typename?: any } | null): obj is draft_game_players_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_mutation_response"') + return draft_game_players_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_players_stddev_fields_possibleTypes: string[] = ['draft_game_players_stddev_fields'] + export const isdraft_game_players_stddev_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_stddev_fields"') + return draft_game_players_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_players_stddev_pop_fields_possibleTypes: string[] = ['draft_game_players_stddev_pop_fields'] + export const isdraft_game_players_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_stddev_pop_fields"') + return draft_game_players_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_players_stddev_samp_fields_possibleTypes: string[] = ['draft_game_players_stddev_samp_fields'] + export const isdraft_game_players_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_stddev_samp_fields"') + return draft_game_players_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_players_sum_fields_possibleTypes: string[] = ['draft_game_players_sum_fields'] + export const isdraft_game_players_sum_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_sum_fields"') + return draft_game_players_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_players_var_pop_fields_possibleTypes: string[] = ['draft_game_players_var_pop_fields'] + export const isdraft_game_players_var_pop_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_var_pop_fields"') + return draft_game_players_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_players_var_samp_fields_possibleTypes: string[] = ['draft_game_players_var_samp_fields'] + export const isdraft_game_players_var_samp_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_var_samp_fields"') + return draft_game_players_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_players_variance_fields_possibleTypes: string[] = ['draft_game_players_variance_fields'] + export const isdraft_game_players_variance_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_variance_fields"') + return draft_game_players_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_games_possibleTypes: string[] = ['draft_games'] + export const isdraft_games = (obj?: { __typename?: any } | null): obj is draft_games => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games"') + return draft_games_possibleTypes.includes(obj.__typename) + } + + + + const draft_games_aggregate_possibleTypes: string[] = ['draft_games_aggregate'] + export const isdraft_games_aggregate = (obj?: { __typename?: any } | null): obj is draft_games_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_aggregate"') + return draft_games_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const draft_games_aggregate_fields_possibleTypes: string[] = ['draft_games_aggregate_fields'] + export const isdraft_games_aggregate_fields = (obj?: { __typename?: any } | null): obj is draft_games_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_aggregate_fields"') + return draft_games_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_games_avg_fields_possibleTypes: string[] = ['draft_games_avg_fields'] + export const isdraft_games_avg_fields = (obj?: { __typename?: any } | null): obj is draft_games_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_avg_fields"') + return draft_games_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_games_max_fields_possibleTypes: string[] = ['draft_games_max_fields'] + export const isdraft_games_max_fields = (obj?: { __typename?: any } | null): obj is draft_games_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_max_fields"') + return draft_games_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_games_min_fields_possibleTypes: string[] = ['draft_games_min_fields'] + export const isdraft_games_min_fields = (obj?: { __typename?: any } | null): obj is draft_games_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_min_fields"') + return draft_games_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_games_mutation_response_possibleTypes: string[] = ['draft_games_mutation_response'] + export const isdraft_games_mutation_response = (obj?: { __typename?: any } | null): obj is draft_games_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_mutation_response"') + return draft_games_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const draft_games_stddev_fields_possibleTypes: string[] = ['draft_games_stddev_fields'] + export const isdraft_games_stddev_fields = (obj?: { __typename?: any } | null): obj is draft_games_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_stddev_fields"') + return draft_games_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_games_stddev_pop_fields_possibleTypes: string[] = ['draft_games_stddev_pop_fields'] + export const isdraft_games_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is draft_games_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_stddev_pop_fields"') + return draft_games_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_games_stddev_samp_fields_possibleTypes: string[] = ['draft_games_stddev_samp_fields'] + export const isdraft_games_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is draft_games_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_stddev_samp_fields"') + return draft_games_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_games_sum_fields_possibleTypes: string[] = ['draft_games_sum_fields'] + export const isdraft_games_sum_fields = (obj?: { __typename?: any } | null): obj is draft_games_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_sum_fields"') + return draft_games_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_games_var_pop_fields_possibleTypes: string[] = ['draft_games_var_pop_fields'] + export const isdraft_games_var_pop_fields = (obj?: { __typename?: any } | null): obj is draft_games_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_var_pop_fields"') + return draft_games_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_games_var_samp_fields_possibleTypes: string[] = ['draft_games_var_samp_fields'] + export const isdraft_games_var_samp_fields = (obj?: { __typename?: any } | null): obj is draft_games_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_var_samp_fields"') + return draft_games_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_games_variance_fields_possibleTypes: string[] = ['draft_games_variance_fields'] + export const isdraft_games_variance_fields = (obj?: { __typename?: any } | null): obj is draft_games_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_variance_fields"') + return draft_games_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_award_sources_possibleTypes: string[] = ['e_award_sources'] + export const ise_award_sources = (obj?: { __typename?: any } | null): obj is e_award_sources => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_award_sources"') + return e_award_sources_possibleTypes.includes(obj.__typename) + } + + + + const e_award_sources_aggregate_possibleTypes: string[] = ['e_award_sources_aggregate'] + export const ise_award_sources_aggregate = (obj?: { __typename?: any } | null): obj is e_award_sources_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_award_sources_aggregate"') + return e_award_sources_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_award_sources_aggregate_fields_possibleTypes: string[] = ['e_award_sources_aggregate_fields'] + export const ise_award_sources_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_award_sources_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_award_sources_aggregate_fields"') + return e_award_sources_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_award_sources_max_fields_possibleTypes: string[] = ['e_award_sources_max_fields'] + export const ise_award_sources_max_fields = (obj?: { __typename?: any } | null): obj is e_award_sources_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_award_sources_max_fields"') + return e_award_sources_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_award_sources_min_fields_possibleTypes: string[] = ['e_award_sources_min_fields'] + export const ise_award_sources_min_fields = (obj?: { __typename?: any } | null): obj is e_award_sources_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_award_sources_min_fields"') + return e_award_sources_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_award_sources_mutation_response_possibleTypes: string[] = ['e_award_sources_mutation_response'] + export const ise_award_sources_mutation_response = (obj?: { __typename?: any } | null): obj is e_award_sources_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_award_sources_mutation_response"') + return e_award_sources_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_award_tiers_possibleTypes: string[] = ['e_award_tiers'] + export const ise_award_tiers = (obj?: { __typename?: any } | null): obj is e_award_tiers => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_award_tiers"') + return e_award_tiers_possibleTypes.includes(obj.__typename) + } + + + + const e_award_tiers_aggregate_possibleTypes: string[] = ['e_award_tiers_aggregate'] + export const ise_award_tiers_aggregate = (obj?: { __typename?: any } | null): obj is e_award_tiers_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_award_tiers_aggregate"') + return e_award_tiers_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_award_tiers_aggregate_fields_possibleTypes: string[] = ['e_award_tiers_aggregate_fields'] + export const ise_award_tiers_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_award_tiers_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_award_tiers_aggregate_fields"') + return e_award_tiers_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_award_tiers_max_fields_possibleTypes: string[] = ['e_award_tiers_max_fields'] + export const ise_award_tiers_max_fields = (obj?: { __typename?: any } | null): obj is e_award_tiers_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_award_tiers_max_fields"') + return e_award_tiers_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_award_tiers_min_fields_possibleTypes: string[] = ['e_award_tiers_min_fields'] + export const ise_award_tiers_min_fields = (obj?: { __typename?: any } | null): obj is e_award_tiers_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_award_tiers_min_fields"') + return e_award_tiers_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_award_tiers_mutation_response_possibleTypes: string[] = ['e_award_tiers_mutation_response'] + export const ise_award_tiers_mutation_response = (obj?: { __typename?: any } | null): obj is e_award_tiers_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_award_tiers_mutation_response"') + return e_award_tiers_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_check_in_settings_possibleTypes: string[] = ['e_check_in_settings'] + export const ise_check_in_settings = (obj?: { __typename?: any } | null): obj is e_check_in_settings => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_check_in_settings"') + return e_check_in_settings_possibleTypes.includes(obj.__typename) + } + + + + const e_check_in_settings_aggregate_possibleTypes: string[] = ['e_check_in_settings_aggregate'] + export const ise_check_in_settings_aggregate = (obj?: { __typename?: any } | null): obj is e_check_in_settings_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_check_in_settings_aggregate"') + return e_check_in_settings_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_check_in_settings_aggregate_fields_possibleTypes: string[] = ['e_check_in_settings_aggregate_fields'] + export const ise_check_in_settings_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_check_in_settings_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_check_in_settings_aggregate_fields"') + return e_check_in_settings_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_check_in_settings_max_fields_possibleTypes: string[] = ['e_check_in_settings_max_fields'] + export const ise_check_in_settings_max_fields = (obj?: { __typename?: any } | null): obj is e_check_in_settings_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_check_in_settings_max_fields"') + return e_check_in_settings_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_check_in_settings_min_fields_possibleTypes: string[] = ['e_check_in_settings_min_fields'] + export const ise_check_in_settings_min_fields = (obj?: { __typename?: any } | null): obj is e_check_in_settings_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_check_in_settings_min_fields"') + return e_check_in_settings_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_check_in_settings_mutation_response_possibleTypes: string[] = ['e_check_in_settings_mutation_response'] + export const ise_check_in_settings_mutation_response = (obj?: { __typename?: any } | null): obj is e_check_in_settings_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_check_in_settings_mutation_response"') + return e_check_in_settings_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_captain_selection_possibleTypes: string[] = ['e_draft_game_captain_selection'] + export const ise_draft_game_captain_selection = (obj?: { __typename?: any } | null): obj is e_draft_game_captain_selection => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_captain_selection"') + return e_draft_game_captain_selection_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_captain_selection_aggregate_possibleTypes: string[] = ['e_draft_game_captain_selection_aggregate'] + export const ise_draft_game_captain_selection_aggregate = (obj?: { __typename?: any } | null): obj is e_draft_game_captain_selection_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_captain_selection_aggregate"') + return e_draft_game_captain_selection_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_captain_selection_aggregate_fields_possibleTypes: string[] = ['e_draft_game_captain_selection_aggregate_fields'] + export const ise_draft_game_captain_selection_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_captain_selection_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_captain_selection_aggregate_fields"') + return e_draft_game_captain_selection_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_captain_selection_max_fields_possibleTypes: string[] = ['e_draft_game_captain_selection_max_fields'] + export const ise_draft_game_captain_selection_max_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_captain_selection_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_captain_selection_max_fields"') + return e_draft_game_captain_selection_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_captain_selection_min_fields_possibleTypes: string[] = ['e_draft_game_captain_selection_min_fields'] + export const ise_draft_game_captain_selection_min_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_captain_selection_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_captain_selection_min_fields"') + return e_draft_game_captain_selection_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_captain_selection_mutation_response_possibleTypes: string[] = ['e_draft_game_captain_selection_mutation_response'] + export const ise_draft_game_captain_selection_mutation_response = (obj?: { __typename?: any } | null): obj is e_draft_game_captain_selection_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_captain_selection_mutation_response"') + return e_draft_game_captain_selection_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_draft_order_possibleTypes: string[] = ['e_draft_game_draft_order'] + export const ise_draft_game_draft_order = (obj?: { __typename?: any } | null): obj is e_draft_game_draft_order => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_draft_order"') + return e_draft_game_draft_order_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_draft_order_aggregate_possibleTypes: string[] = ['e_draft_game_draft_order_aggregate'] + export const ise_draft_game_draft_order_aggregate = (obj?: { __typename?: any } | null): obj is e_draft_game_draft_order_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_draft_order_aggregate"') + return e_draft_game_draft_order_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_draft_order_aggregate_fields_possibleTypes: string[] = ['e_draft_game_draft_order_aggregate_fields'] + export const ise_draft_game_draft_order_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_draft_order_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_draft_order_aggregate_fields"') + return e_draft_game_draft_order_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_draft_order_max_fields_possibleTypes: string[] = ['e_draft_game_draft_order_max_fields'] + export const ise_draft_game_draft_order_max_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_draft_order_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_draft_order_max_fields"') + return e_draft_game_draft_order_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_draft_order_min_fields_possibleTypes: string[] = ['e_draft_game_draft_order_min_fields'] + export const ise_draft_game_draft_order_min_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_draft_order_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_draft_order_min_fields"') + return e_draft_game_draft_order_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_draft_order_mutation_response_possibleTypes: string[] = ['e_draft_game_draft_order_mutation_response'] + export const ise_draft_game_draft_order_mutation_response = (obj?: { __typename?: any } | null): obj is e_draft_game_draft_order_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_draft_order_mutation_response"') + return e_draft_game_draft_order_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_mode_possibleTypes: string[] = ['e_draft_game_mode'] + export const ise_draft_game_mode = (obj?: { __typename?: any } | null): obj is e_draft_game_mode => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_mode"') + return e_draft_game_mode_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_mode_aggregate_possibleTypes: string[] = ['e_draft_game_mode_aggregate'] + export const ise_draft_game_mode_aggregate = (obj?: { __typename?: any } | null): obj is e_draft_game_mode_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_mode_aggregate"') + return e_draft_game_mode_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_mode_aggregate_fields_possibleTypes: string[] = ['e_draft_game_mode_aggregate_fields'] + export const ise_draft_game_mode_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_mode_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_mode_aggregate_fields"') + return e_draft_game_mode_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_mode_max_fields_possibleTypes: string[] = ['e_draft_game_mode_max_fields'] + export const ise_draft_game_mode_max_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_mode_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_mode_max_fields"') + return e_draft_game_mode_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_mode_min_fields_possibleTypes: string[] = ['e_draft_game_mode_min_fields'] + export const ise_draft_game_mode_min_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_mode_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_mode_min_fields"') + return e_draft_game_mode_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_mode_mutation_response_possibleTypes: string[] = ['e_draft_game_mode_mutation_response'] + export const ise_draft_game_mode_mutation_response = (obj?: { __typename?: any } | null): obj is e_draft_game_mode_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_mode_mutation_response"') + return e_draft_game_mode_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_player_status_possibleTypes: string[] = ['e_draft_game_player_status'] + export const ise_draft_game_player_status = (obj?: { __typename?: any } | null): obj is e_draft_game_player_status => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_player_status"') + return e_draft_game_player_status_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_player_status_aggregate_possibleTypes: string[] = ['e_draft_game_player_status_aggregate'] + export const ise_draft_game_player_status_aggregate = (obj?: { __typename?: any } | null): obj is e_draft_game_player_status_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_player_status_aggregate"') + return e_draft_game_player_status_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_player_status_aggregate_fields_possibleTypes: string[] = ['e_draft_game_player_status_aggregate_fields'] + export const ise_draft_game_player_status_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_player_status_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_player_status_aggregate_fields"') + return e_draft_game_player_status_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_player_status_max_fields_possibleTypes: string[] = ['e_draft_game_player_status_max_fields'] + export const ise_draft_game_player_status_max_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_player_status_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_player_status_max_fields"') + return e_draft_game_player_status_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_player_status_min_fields_possibleTypes: string[] = ['e_draft_game_player_status_min_fields'] + export const ise_draft_game_player_status_min_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_player_status_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_player_status_min_fields"') + return e_draft_game_player_status_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_player_status_mutation_response_possibleTypes: string[] = ['e_draft_game_player_status_mutation_response'] + export const ise_draft_game_player_status_mutation_response = (obj?: { __typename?: any } | null): obj is e_draft_game_player_status_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_player_status_mutation_response"') + return e_draft_game_player_status_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_status_possibleTypes: string[] = ['e_draft_game_status'] + export const ise_draft_game_status = (obj?: { __typename?: any } | null): obj is e_draft_game_status => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_status"') + return e_draft_game_status_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_status_aggregate_possibleTypes: string[] = ['e_draft_game_status_aggregate'] + export const ise_draft_game_status_aggregate = (obj?: { __typename?: any } | null): obj is e_draft_game_status_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_status_aggregate"') + return e_draft_game_status_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_status_aggregate_fields_possibleTypes: string[] = ['e_draft_game_status_aggregate_fields'] + export const ise_draft_game_status_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_status_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_status_aggregate_fields"') + return e_draft_game_status_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_status_max_fields_possibleTypes: string[] = ['e_draft_game_status_max_fields'] + export const ise_draft_game_status_max_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_status_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_status_max_fields"') + return e_draft_game_status_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_status_min_fields_possibleTypes: string[] = ['e_draft_game_status_min_fields'] + export const ise_draft_game_status_min_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_status_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_status_min_fields"') + return e_draft_game_status_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_status_mutation_response_possibleTypes: string[] = ['e_draft_game_status_mutation_response'] + export const ise_draft_game_status_mutation_response = (obj?: { __typename?: any } | null): obj is e_draft_game_status_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_status_mutation_response"') + return e_draft_game_status_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_event_media_access_possibleTypes: string[] = ['e_event_media_access'] + export const ise_event_media_access = (obj?: { __typename?: any } | null): obj is e_event_media_access => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_media_access"') + return e_event_media_access_possibleTypes.includes(obj.__typename) + } + + + + const e_event_media_access_aggregate_possibleTypes: string[] = ['e_event_media_access_aggregate'] + export const ise_event_media_access_aggregate = (obj?: { __typename?: any } | null): obj is e_event_media_access_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_media_access_aggregate"') + return e_event_media_access_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_event_media_access_aggregate_fields_possibleTypes: string[] = ['e_event_media_access_aggregate_fields'] + export const ise_event_media_access_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_event_media_access_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_media_access_aggregate_fields"') + return e_event_media_access_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_event_media_access_max_fields_possibleTypes: string[] = ['e_event_media_access_max_fields'] + export const ise_event_media_access_max_fields = (obj?: { __typename?: any } | null): obj is e_event_media_access_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_media_access_max_fields"') + return e_event_media_access_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_event_media_access_min_fields_possibleTypes: string[] = ['e_event_media_access_min_fields'] + export const ise_event_media_access_min_fields = (obj?: { __typename?: any } | null): obj is e_event_media_access_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_media_access_min_fields"') + return e_event_media_access_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_event_media_access_mutation_response_possibleTypes: string[] = ['e_event_media_access_mutation_response'] + export const ise_event_media_access_mutation_response = (obj?: { __typename?: any } | null): obj is e_event_media_access_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_media_access_mutation_response"') + return e_event_media_access_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_event_visibility_possibleTypes: string[] = ['e_event_visibility'] + export const ise_event_visibility = (obj?: { __typename?: any } | null): obj is e_event_visibility => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_visibility"') + return e_event_visibility_possibleTypes.includes(obj.__typename) + } + + + + const e_event_visibility_aggregate_possibleTypes: string[] = ['e_event_visibility_aggregate'] + export const ise_event_visibility_aggregate = (obj?: { __typename?: any } | null): obj is e_event_visibility_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_visibility_aggregate"') + return e_event_visibility_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_event_visibility_aggregate_fields_possibleTypes: string[] = ['e_event_visibility_aggregate_fields'] + export const ise_event_visibility_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_event_visibility_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_visibility_aggregate_fields"') + return e_event_visibility_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_event_visibility_max_fields_possibleTypes: string[] = ['e_event_visibility_max_fields'] + export const ise_event_visibility_max_fields = (obj?: { __typename?: any } | null): obj is e_event_visibility_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_visibility_max_fields"') + return e_event_visibility_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_event_visibility_min_fields_possibleTypes: string[] = ['e_event_visibility_min_fields'] + export const ise_event_visibility_min_fields = (obj?: { __typename?: any } | null): obj is e_event_visibility_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_visibility_min_fields"') + return e_event_visibility_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_event_visibility_mutation_response_possibleTypes: string[] = ['e_event_visibility_mutation_response'] + export const ise_event_visibility_mutation_response = (obj?: { __typename?: any } | null): obj is e_event_visibility_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_visibility_mutation_response"') + return e_event_visibility_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_friend_status_possibleTypes: string[] = ['e_friend_status'] + export const ise_friend_status = (obj?: { __typename?: any } | null): obj is e_friend_status => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_friend_status"') + return e_friend_status_possibleTypes.includes(obj.__typename) + } + + + + const e_friend_status_aggregate_possibleTypes: string[] = ['e_friend_status_aggregate'] + export const ise_friend_status_aggregate = (obj?: { __typename?: any } | null): obj is e_friend_status_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_friend_status_aggregate"') + return e_friend_status_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_friend_status_aggregate_fields_possibleTypes: string[] = ['e_friend_status_aggregate_fields'] + export const ise_friend_status_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_friend_status_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_friend_status_aggregate_fields"') + return e_friend_status_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_friend_status_max_fields_possibleTypes: string[] = ['e_friend_status_max_fields'] + export const ise_friend_status_max_fields = (obj?: { __typename?: any } | null): obj is e_friend_status_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_friend_status_max_fields"') + return e_friend_status_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_friend_status_min_fields_possibleTypes: string[] = ['e_friend_status_min_fields'] + export const ise_friend_status_min_fields = (obj?: { __typename?: any } | null): obj is e_friend_status_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_friend_status_min_fields"') + return e_friend_status_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_friend_status_mutation_response_possibleTypes: string[] = ['e_friend_status_mutation_response'] + export const ise_friend_status_mutation_response = (obj?: { __typename?: any } | null): obj is e_friend_status_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_friend_status_mutation_response"') + return e_friend_status_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_game_cfg_types_possibleTypes: string[] = ['e_game_cfg_types'] + export const ise_game_cfg_types = (obj?: { __typename?: any } | null): obj is e_game_cfg_types => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_cfg_types"') + return e_game_cfg_types_possibleTypes.includes(obj.__typename) + } + + + + const e_game_cfg_types_aggregate_possibleTypes: string[] = ['e_game_cfg_types_aggregate'] + export const ise_game_cfg_types_aggregate = (obj?: { __typename?: any } | null): obj is e_game_cfg_types_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_cfg_types_aggregate"') + return e_game_cfg_types_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_game_cfg_types_aggregate_fields_possibleTypes: string[] = ['e_game_cfg_types_aggregate_fields'] + export const ise_game_cfg_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_game_cfg_types_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_cfg_types_aggregate_fields"') + return e_game_cfg_types_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_game_cfg_types_max_fields_possibleTypes: string[] = ['e_game_cfg_types_max_fields'] + export const ise_game_cfg_types_max_fields = (obj?: { __typename?: any } | null): obj is e_game_cfg_types_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_cfg_types_max_fields"') + return e_game_cfg_types_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_game_cfg_types_min_fields_possibleTypes: string[] = ['e_game_cfg_types_min_fields'] + export const ise_game_cfg_types_min_fields = (obj?: { __typename?: any } | null): obj is e_game_cfg_types_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_cfg_types_min_fields"') + return e_game_cfg_types_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_game_cfg_types_mutation_response_possibleTypes: string[] = ['e_game_cfg_types_mutation_response'] + export const ise_game_cfg_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_game_cfg_types_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_cfg_types_mutation_response"') + return e_game_cfg_types_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_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"') + return e_game_server_node_statuses_possibleTypes.includes(obj.__typename) + } + + + + const e_game_server_node_statuses_aggregate_possibleTypes: string[] = ['e_game_server_node_statuses_aggregate'] + export const ise_game_server_node_statuses_aggregate = (obj?: { __typename?: any } | null): obj is e_game_server_node_statuses_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_server_node_statuses_aggregate"') + return e_game_server_node_statuses_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_game_server_node_statuses_aggregate_fields_possibleTypes: string[] = ['e_game_server_node_statuses_aggregate_fields'] + export const ise_game_server_node_statuses_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_game_server_node_statuses_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_server_node_statuses_aggregate_fields"') + return e_game_server_node_statuses_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_game_server_node_statuses_max_fields_possibleTypes: string[] = ['e_game_server_node_statuses_max_fields'] + export const ise_game_server_node_statuses_max_fields = (obj?: { __typename?: any } | null): obj is e_game_server_node_statuses_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_server_node_statuses_max_fields"') + return e_game_server_node_statuses_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_game_server_node_statuses_min_fields_possibleTypes: string[] = ['e_game_server_node_statuses_min_fields'] + export const ise_game_server_node_statuses_min_fields = (obj?: { __typename?: any } | null): obj is e_game_server_node_statuses_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_server_node_statuses_min_fields"') + return e_game_server_node_statuses_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_game_server_node_statuses_mutation_response_possibleTypes: string[] = ['e_game_server_node_statuses_mutation_response'] + export const ise_game_server_node_statuses_mutation_response = (obj?: { __typename?: any } | null): obj is e_game_server_node_statuses_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_server_node_statuses_mutation_response"') + return e_game_server_node_statuses_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_league_movement_types_possibleTypes: string[] = ['e_league_movement_types'] + export const ise_league_movement_types = (obj?: { __typename?: any } | null): obj is e_league_movement_types => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_movement_types"') + return e_league_movement_types_possibleTypes.includes(obj.__typename) + } + + + + const e_league_movement_types_aggregate_possibleTypes: string[] = ['e_league_movement_types_aggregate'] + export const ise_league_movement_types_aggregate = (obj?: { __typename?: any } | null): obj is e_league_movement_types_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_movement_types_aggregate"') + return e_league_movement_types_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_league_movement_types_aggregate_fields_possibleTypes: string[] = ['e_league_movement_types_aggregate_fields'] + export const ise_league_movement_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_league_movement_types_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_movement_types_aggregate_fields"') + return e_league_movement_types_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_league_movement_types_max_fields_possibleTypes: string[] = ['e_league_movement_types_max_fields'] + export const ise_league_movement_types_max_fields = (obj?: { __typename?: any } | null): obj is e_league_movement_types_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_movement_types_max_fields"') + return e_league_movement_types_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_league_movement_types_min_fields_possibleTypes: string[] = ['e_league_movement_types_min_fields'] + export const ise_league_movement_types_min_fields = (obj?: { __typename?: any } | null): obj is e_league_movement_types_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_movement_types_min_fields"') + return e_league_movement_types_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_league_movement_types_mutation_response_possibleTypes: string[] = ['e_league_movement_types_mutation_response'] + export const ise_league_movement_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_league_movement_types_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_movement_types_mutation_response"') + return e_league_movement_types_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_league_proposal_statuses_possibleTypes: string[] = ['e_league_proposal_statuses'] + export const ise_league_proposal_statuses = (obj?: { __typename?: any } | null): obj is e_league_proposal_statuses => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_proposal_statuses"') + return e_league_proposal_statuses_possibleTypes.includes(obj.__typename) + } + + + + const e_league_proposal_statuses_aggregate_possibleTypes: string[] = ['e_league_proposal_statuses_aggregate'] + export const ise_league_proposal_statuses_aggregate = (obj?: { __typename?: any } | null): obj is e_league_proposal_statuses_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_proposal_statuses_aggregate"') + return e_league_proposal_statuses_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_league_proposal_statuses_aggregate_fields_possibleTypes: string[] = ['e_league_proposal_statuses_aggregate_fields'] + export const ise_league_proposal_statuses_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_league_proposal_statuses_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_proposal_statuses_aggregate_fields"') + return e_league_proposal_statuses_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_league_proposal_statuses_max_fields_possibleTypes: string[] = ['e_league_proposal_statuses_max_fields'] + export const ise_league_proposal_statuses_max_fields = (obj?: { __typename?: any } | null): obj is e_league_proposal_statuses_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_proposal_statuses_max_fields"') + return e_league_proposal_statuses_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_league_proposal_statuses_min_fields_possibleTypes: string[] = ['e_league_proposal_statuses_min_fields'] + export const ise_league_proposal_statuses_min_fields = (obj?: { __typename?: any } | null): obj is e_league_proposal_statuses_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_proposal_statuses_min_fields"') + return e_league_proposal_statuses_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_league_proposal_statuses_mutation_response_possibleTypes: string[] = ['e_league_proposal_statuses_mutation_response'] + export const ise_league_proposal_statuses_mutation_response = (obj?: { __typename?: any } | null): obj is e_league_proposal_statuses_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_proposal_statuses_mutation_response"') + return e_league_proposal_statuses_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_league_registration_statuses_possibleTypes: string[] = ['e_league_registration_statuses'] + export const ise_league_registration_statuses = (obj?: { __typename?: any } | null): obj is e_league_registration_statuses => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_registration_statuses"') + return e_league_registration_statuses_possibleTypes.includes(obj.__typename) + } + + + + const e_league_registration_statuses_aggregate_possibleTypes: string[] = ['e_league_registration_statuses_aggregate'] + export const ise_league_registration_statuses_aggregate = (obj?: { __typename?: any } | null): obj is e_league_registration_statuses_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_registration_statuses_aggregate"') + return e_league_registration_statuses_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_league_registration_statuses_aggregate_fields_possibleTypes: string[] = ['e_league_registration_statuses_aggregate_fields'] + export const ise_league_registration_statuses_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_league_registration_statuses_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_registration_statuses_aggregate_fields"') + return e_league_registration_statuses_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_league_registration_statuses_max_fields_possibleTypes: string[] = ['e_league_registration_statuses_max_fields'] + export const ise_league_registration_statuses_max_fields = (obj?: { __typename?: any } | null): obj is e_league_registration_statuses_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_registration_statuses_max_fields"') + return e_league_registration_statuses_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_league_registration_statuses_min_fields_possibleTypes: string[] = ['e_league_registration_statuses_min_fields'] + export const ise_league_registration_statuses_min_fields = (obj?: { __typename?: any } | null): obj is e_league_registration_statuses_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_registration_statuses_min_fields"') + return e_league_registration_statuses_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_league_registration_statuses_mutation_response_possibleTypes: string[] = ['e_league_registration_statuses_mutation_response'] + export const ise_league_registration_statuses_mutation_response = (obj?: { __typename?: any } | null): obj is e_league_registration_statuses_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_registration_statuses_mutation_response"') + return e_league_registration_statuses_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_league_season_statuses_possibleTypes: string[] = ['e_league_season_statuses'] + export const ise_league_season_statuses = (obj?: { __typename?: any } | null): obj is e_league_season_statuses => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_season_statuses"') + return e_league_season_statuses_possibleTypes.includes(obj.__typename) + } + + + + const e_league_season_statuses_aggregate_possibleTypes: string[] = ['e_league_season_statuses_aggregate'] + export const ise_league_season_statuses_aggregate = (obj?: { __typename?: any } | null): obj is e_league_season_statuses_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_season_statuses_aggregate"') + return e_league_season_statuses_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_league_season_statuses_aggregate_fields_possibleTypes: string[] = ['e_league_season_statuses_aggregate_fields'] + export const ise_league_season_statuses_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_league_season_statuses_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_season_statuses_aggregate_fields"') + return e_league_season_statuses_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_league_season_statuses_max_fields_possibleTypes: string[] = ['e_league_season_statuses_max_fields'] + export const ise_league_season_statuses_max_fields = (obj?: { __typename?: any } | null): obj is e_league_season_statuses_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_season_statuses_max_fields"') + return e_league_season_statuses_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_league_season_statuses_min_fields_possibleTypes: string[] = ['e_league_season_statuses_min_fields'] + export const ise_league_season_statuses_min_fields = (obj?: { __typename?: any } | null): obj is e_league_season_statuses_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_season_statuses_min_fields"') + return e_league_season_statuses_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_league_season_statuses_mutation_response_possibleTypes: string[] = ['e_league_season_statuses_mutation_response'] + export const ise_league_season_statuses_mutation_response = (obj?: { __typename?: any } | null): obj is e_league_season_statuses_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_season_statuses_mutation_response"') + return e_league_season_statuses_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_lobby_access_possibleTypes: string[] = ['e_lobby_access'] + export const ise_lobby_access = (obj?: { __typename?: any } | null): obj is e_lobby_access => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_access"') + return e_lobby_access_possibleTypes.includes(obj.__typename) + } + + + + const e_lobby_access_aggregate_possibleTypes: string[] = ['e_lobby_access_aggregate'] + export const ise_lobby_access_aggregate = (obj?: { __typename?: any } | null): obj is e_lobby_access_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_access_aggregate"') + return e_lobby_access_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_lobby_access_aggregate_fields_possibleTypes: string[] = ['e_lobby_access_aggregate_fields'] + export const ise_lobby_access_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_lobby_access_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_access_aggregate_fields"') + return e_lobby_access_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_lobby_access_max_fields_possibleTypes: string[] = ['e_lobby_access_max_fields'] + export const ise_lobby_access_max_fields = (obj?: { __typename?: any } | null): obj is e_lobby_access_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_access_max_fields"') + return e_lobby_access_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_lobby_access_min_fields_possibleTypes: string[] = ['e_lobby_access_min_fields'] + export const ise_lobby_access_min_fields = (obj?: { __typename?: any } | null): obj is e_lobby_access_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_access_min_fields"') + return e_lobby_access_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_lobby_access_mutation_response_possibleTypes: string[] = ['e_lobby_access_mutation_response'] + export const ise_lobby_access_mutation_response = (obj?: { __typename?: any } | null): obj is e_lobby_access_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_access_mutation_response"') + return e_lobby_access_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_lobby_player_status_possibleTypes: string[] = ['e_lobby_player_status'] + export const ise_lobby_player_status = (obj?: { __typename?: any } | null): obj is e_lobby_player_status => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_player_status"') + return e_lobby_player_status_possibleTypes.includes(obj.__typename) + } + + + + const e_lobby_player_status_aggregate_possibleTypes: string[] = ['e_lobby_player_status_aggregate'] + export const ise_lobby_player_status_aggregate = (obj?: { __typename?: any } | null): obj is e_lobby_player_status_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_player_status_aggregate"') + return e_lobby_player_status_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_lobby_player_status_aggregate_fields_possibleTypes: string[] = ['e_lobby_player_status_aggregate_fields'] + export const ise_lobby_player_status_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_lobby_player_status_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_player_status_aggregate_fields"') + return e_lobby_player_status_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_lobby_player_status_max_fields_possibleTypes: string[] = ['e_lobby_player_status_max_fields'] + export const ise_lobby_player_status_max_fields = (obj?: { __typename?: any } | null): obj is e_lobby_player_status_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_player_status_max_fields"') + return e_lobby_player_status_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_lobby_player_status_min_fields_possibleTypes: string[] = ['e_lobby_player_status_min_fields'] + export const ise_lobby_player_status_min_fields = (obj?: { __typename?: any } | null): obj is e_lobby_player_status_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_player_status_min_fields"') + return e_lobby_player_status_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_lobby_player_status_mutation_response_possibleTypes: string[] = ['e_lobby_player_status_mutation_response'] + export const ise_lobby_player_status_mutation_response = (obj?: { __typename?: any } | null): obj is e_lobby_player_status_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_player_status_mutation_response"') + return e_lobby_player_status_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_map_pool_types_possibleTypes: string[] = ['e_map_pool_types'] + export const ise_map_pool_types = (obj?: { __typename?: any } | null): obj is e_map_pool_types => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_map_pool_types"') + return e_map_pool_types_possibleTypes.includes(obj.__typename) + } + + + + const e_map_pool_types_aggregate_possibleTypes: string[] = ['e_map_pool_types_aggregate'] + export const ise_map_pool_types_aggregate = (obj?: { __typename?: any } | null): obj is e_map_pool_types_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_map_pool_types_aggregate"') + return e_map_pool_types_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_map_pool_types_aggregate_fields_possibleTypes: string[] = ['e_map_pool_types_aggregate_fields'] + export const ise_map_pool_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_map_pool_types_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_map_pool_types_aggregate_fields"') + return e_map_pool_types_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_map_pool_types_max_fields_possibleTypes: string[] = ['e_map_pool_types_max_fields'] + export const ise_map_pool_types_max_fields = (obj?: { __typename?: any } | null): obj is e_map_pool_types_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_map_pool_types_max_fields"') + return e_map_pool_types_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_map_pool_types_min_fields_possibleTypes: string[] = ['e_map_pool_types_min_fields'] + export const ise_map_pool_types_min_fields = (obj?: { __typename?: any } | null): obj is e_map_pool_types_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_map_pool_types_min_fields"') + return e_map_pool_types_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_map_pool_types_mutation_response_possibleTypes: string[] = ['e_map_pool_types_mutation_response'] + export const ise_map_pool_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_map_pool_types_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_map_pool_types_mutation_response"') + return e_map_pool_types_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_match_clip_visibility_possibleTypes: string[] = ['e_match_clip_visibility'] + export const ise_match_clip_visibility = (obj?: { __typename?: any } | null): obj is e_match_clip_visibility => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_clip_visibility"') + return e_match_clip_visibility_possibleTypes.includes(obj.__typename) + } + + + + const e_match_clip_visibility_aggregate_possibleTypes: string[] = ['e_match_clip_visibility_aggregate'] + export const ise_match_clip_visibility_aggregate = (obj?: { __typename?: any } | null): obj is e_match_clip_visibility_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_clip_visibility_aggregate"') + return e_match_clip_visibility_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_match_clip_visibility_aggregate_fields_possibleTypes: string[] = ['e_match_clip_visibility_aggregate_fields'] + export const ise_match_clip_visibility_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_match_clip_visibility_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_clip_visibility_aggregate_fields"') + return e_match_clip_visibility_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_match_clip_visibility_max_fields_possibleTypes: string[] = ['e_match_clip_visibility_max_fields'] + export const ise_match_clip_visibility_max_fields = (obj?: { __typename?: any } | null): obj is e_match_clip_visibility_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_clip_visibility_max_fields"') + return e_match_clip_visibility_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_match_clip_visibility_min_fields_possibleTypes: string[] = ['e_match_clip_visibility_min_fields'] + export const ise_match_clip_visibility_min_fields = (obj?: { __typename?: any } | null): obj is e_match_clip_visibility_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_clip_visibility_min_fields"') + return e_match_clip_visibility_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_match_clip_visibility_mutation_response_possibleTypes: string[] = ['e_match_clip_visibility_mutation_response'] + export const ise_match_clip_visibility_mutation_response = (obj?: { __typename?: any } | null): obj is e_match_clip_visibility_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_clip_visibility_mutation_response"') + return e_match_clip_visibility_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_match_map_status_possibleTypes: string[] = ['e_match_map_status'] + export const ise_match_map_status = (obj?: { __typename?: any } | null): obj is e_match_map_status => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_map_status"') + return e_match_map_status_possibleTypes.includes(obj.__typename) + } + + + + const e_match_map_status_aggregate_possibleTypes: string[] = ['e_match_map_status_aggregate'] + export const ise_match_map_status_aggregate = (obj?: { __typename?: any } | null): obj is e_match_map_status_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_map_status_aggregate"') + return e_match_map_status_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_match_map_status_aggregate_fields_possibleTypes: string[] = ['e_match_map_status_aggregate_fields'] + export const ise_match_map_status_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_match_map_status_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_map_status_aggregate_fields"') + return e_match_map_status_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_match_map_status_max_fields_possibleTypes: string[] = ['e_match_map_status_max_fields'] + export const ise_match_map_status_max_fields = (obj?: { __typename?: any } | null): obj is e_match_map_status_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_map_status_max_fields"') + return e_match_map_status_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_match_map_status_min_fields_possibleTypes: string[] = ['e_match_map_status_min_fields'] + export const ise_match_map_status_min_fields = (obj?: { __typename?: any } | null): obj is e_match_map_status_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_map_status_min_fields"') + return e_match_map_status_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_match_map_status_mutation_response_possibleTypes: string[] = ['e_match_map_status_mutation_response'] + export const ise_match_map_status_mutation_response = (obj?: { __typename?: any } | null): obj is e_match_map_status_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_map_status_mutation_response"') + return e_match_map_status_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_match_mode_possibleTypes: string[] = ['e_match_mode'] + export const ise_match_mode = (obj?: { __typename?: any } | null): obj is e_match_mode => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_mode"') + return e_match_mode_possibleTypes.includes(obj.__typename) + } + + + + const e_match_mode_aggregate_possibleTypes: string[] = ['e_match_mode_aggregate'] + export const ise_match_mode_aggregate = (obj?: { __typename?: any } | null): obj is e_match_mode_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_mode_aggregate"') + return e_match_mode_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_match_mode_aggregate_fields_possibleTypes: string[] = ['e_match_mode_aggregate_fields'] + export const ise_match_mode_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_match_mode_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_mode_aggregate_fields"') + return e_match_mode_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_match_mode_max_fields_possibleTypes: string[] = ['e_match_mode_max_fields'] + export const ise_match_mode_max_fields = (obj?: { __typename?: any } | null): obj is e_match_mode_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_mode_max_fields"') + return e_match_mode_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_match_mode_min_fields_possibleTypes: string[] = ['e_match_mode_min_fields'] + export const ise_match_mode_min_fields = (obj?: { __typename?: any } | null): obj is e_match_mode_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_mode_min_fields"') + return e_match_mode_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_match_mode_mutation_response_possibleTypes: string[] = ['e_match_mode_mutation_response'] + export const ise_match_mode_mutation_response = (obj?: { __typename?: any } | null): obj is e_match_mode_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_mode_mutation_response"') + return e_match_mode_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_match_party_sources_possibleTypes: string[] = ['e_match_party_sources'] + export const ise_match_party_sources = (obj?: { __typename?: any } | null): obj is e_match_party_sources => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_party_sources"') + return e_match_party_sources_possibleTypes.includes(obj.__typename) + } + + + + const e_match_party_sources_aggregate_possibleTypes: string[] = ['e_match_party_sources_aggregate'] + export const ise_match_party_sources_aggregate = (obj?: { __typename?: any } | null): obj is e_match_party_sources_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_party_sources_aggregate"') + return e_match_party_sources_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_match_party_sources_aggregate_fields_possibleTypes: string[] = ['e_match_party_sources_aggregate_fields'] + export const ise_match_party_sources_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_match_party_sources_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_party_sources_aggregate_fields"') + return e_match_party_sources_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_match_party_sources_max_fields_possibleTypes: string[] = ['e_match_party_sources_max_fields'] + export const ise_match_party_sources_max_fields = (obj?: { __typename?: any } | null): obj is e_match_party_sources_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_party_sources_max_fields"') + return e_match_party_sources_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_match_party_sources_min_fields_possibleTypes: string[] = ['e_match_party_sources_min_fields'] + export const ise_match_party_sources_min_fields = (obj?: { __typename?: any } | null): obj is e_match_party_sources_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_party_sources_min_fields"') + return e_match_party_sources_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_match_party_sources_mutation_response_possibleTypes: string[] = ['e_match_party_sources_mutation_response'] + export const ise_match_party_sources_mutation_response = (obj?: { __typename?: any } | null): obj is e_match_party_sources_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_party_sources_mutation_response"') + return e_match_party_sources_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_match_status_possibleTypes: string[] = ['e_match_status'] + export const ise_match_status = (obj?: { __typename?: any } | null): obj is e_match_status => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_status"') + return e_match_status_possibleTypes.includes(obj.__typename) + } + + + + const e_match_status_aggregate_possibleTypes: string[] = ['e_match_status_aggregate'] + export const ise_match_status_aggregate = (obj?: { __typename?: any } | null): obj is e_match_status_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_status_aggregate"') + return e_match_status_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_match_status_aggregate_fields_possibleTypes: string[] = ['e_match_status_aggregate_fields'] + export const ise_match_status_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_match_status_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_status_aggregate_fields"') + return e_match_status_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_match_status_max_fields_possibleTypes: string[] = ['e_match_status_max_fields'] + export const ise_match_status_max_fields = (obj?: { __typename?: any } | null): obj is e_match_status_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_status_max_fields"') + return e_match_status_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_match_status_min_fields_possibleTypes: string[] = ['e_match_status_min_fields'] + export const ise_match_status_min_fields = (obj?: { __typename?: any } | null): obj is e_match_status_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_status_min_fields"') + return e_match_status_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_match_status_mutation_response_possibleTypes: string[] = ['e_match_status_mutation_response'] + export const ise_match_status_mutation_response = (obj?: { __typename?: any } | null): obj is e_match_status_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_status_mutation_response"') + return e_match_status_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_match_types_possibleTypes: string[] = ['e_match_types'] + export const ise_match_types = (obj?: { __typename?: any } | null): obj is e_match_types => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_types"') + return e_match_types_possibleTypes.includes(obj.__typename) + } + + + + const e_match_types_aggregate_possibleTypes: string[] = ['e_match_types_aggregate'] + export const ise_match_types_aggregate = (obj?: { __typename?: any } | null): obj is e_match_types_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_types_aggregate"') + return e_match_types_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_match_types_aggregate_fields_possibleTypes: string[] = ['e_match_types_aggregate_fields'] + export const ise_match_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_match_types_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_types_aggregate_fields"') + return e_match_types_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_match_types_max_fields_possibleTypes: string[] = ['e_match_types_max_fields'] + export const ise_match_types_max_fields = (obj?: { __typename?: any } | null): obj is e_match_types_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_types_max_fields"') + return e_match_types_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_match_types_min_fields_possibleTypes: string[] = ['e_match_types_min_fields'] + export const ise_match_types_min_fields = (obj?: { __typename?: any } | null): obj is e_match_types_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_types_min_fields"') + return e_match_types_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_match_types_mutation_response_possibleTypes: string[] = ['e_match_types_mutation_response'] + export const ise_match_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_match_types_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_types_mutation_response"') + return e_match_types_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_notification_types_possibleTypes: string[] = ['e_notification_types'] + export const ise_notification_types = (obj?: { __typename?: any } | null): obj is e_notification_types => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_notification_types"') + return e_notification_types_possibleTypes.includes(obj.__typename) + } + + + + const e_notification_types_aggregate_possibleTypes: string[] = ['e_notification_types_aggregate'] + export const ise_notification_types_aggregate = (obj?: { __typename?: any } | null): obj is e_notification_types_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_notification_types_aggregate"') + return e_notification_types_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_notification_types_aggregate_fields_possibleTypes: string[] = ['e_notification_types_aggregate_fields'] + export const ise_notification_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_notification_types_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_notification_types_aggregate_fields"') + return e_notification_types_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_notification_types_max_fields_possibleTypes: string[] = ['e_notification_types_max_fields'] + export const ise_notification_types_max_fields = (obj?: { __typename?: any } | null): obj is e_notification_types_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_notification_types_max_fields"') + return e_notification_types_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_notification_types_min_fields_possibleTypes: string[] = ['e_notification_types_min_fields'] + export const ise_notification_types_min_fields = (obj?: { __typename?: any } | null): obj is e_notification_types_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_notification_types_min_fields"') + return e_notification_types_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_notification_types_mutation_response_possibleTypes: string[] = ['e_notification_types_mutation_response'] + export const ise_notification_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_notification_types_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_notification_types_mutation_response"') + return e_notification_types_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_objective_types_possibleTypes: string[] = ['e_objective_types'] + export const ise_objective_types = (obj?: { __typename?: any } | null): obj is e_objective_types => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_objective_types"') + return e_objective_types_possibleTypes.includes(obj.__typename) + } + + + + const e_objective_types_aggregate_possibleTypes: string[] = ['e_objective_types_aggregate'] + export const ise_objective_types_aggregate = (obj?: { __typename?: any } | null): obj is e_objective_types_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_objective_types_aggregate"') + return e_objective_types_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_objective_types_aggregate_fields_possibleTypes: string[] = ['e_objective_types_aggregate_fields'] + export const ise_objective_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_objective_types_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_objective_types_aggregate_fields"') + return e_objective_types_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_objective_types_max_fields_possibleTypes: string[] = ['e_objective_types_max_fields'] + export const ise_objective_types_max_fields = (obj?: { __typename?: any } | null): obj is e_objective_types_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_objective_types_max_fields"') + return e_objective_types_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_objective_types_min_fields_possibleTypes: string[] = ['e_objective_types_min_fields'] + export const ise_objective_types_min_fields = (obj?: { __typename?: any } | null): obj is e_objective_types_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_objective_types_min_fields"') + return e_objective_types_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_objective_types_mutation_response_possibleTypes: string[] = ['e_objective_types_mutation_response'] + export const ise_objective_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_objective_types_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_objective_types_mutation_response"') + return e_objective_types_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_player_roles_possibleTypes: string[] = ['e_player_roles'] + export const ise_player_roles = (obj?: { __typename?: any } | null): obj is e_player_roles => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_player_roles"') + return e_player_roles_possibleTypes.includes(obj.__typename) + } + + + + const e_player_roles_aggregate_possibleTypes: string[] = ['e_player_roles_aggregate'] + export const ise_player_roles_aggregate = (obj?: { __typename?: any } | null): obj is e_player_roles_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_player_roles_aggregate"') + return e_player_roles_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_player_roles_aggregate_fields_possibleTypes: string[] = ['e_player_roles_aggregate_fields'] + export const ise_player_roles_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_player_roles_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_player_roles_aggregate_fields"') + return e_player_roles_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_player_roles_max_fields_possibleTypes: string[] = ['e_player_roles_max_fields'] + export const ise_player_roles_max_fields = (obj?: { __typename?: any } | null): obj is e_player_roles_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_player_roles_max_fields"') + return e_player_roles_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_player_roles_min_fields_possibleTypes: string[] = ['e_player_roles_min_fields'] + export const ise_player_roles_min_fields = (obj?: { __typename?: any } | null): obj is e_player_roles_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_player_roles_min_fields"') + return e_player_roles_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_player_roles_mutation_response_possibleTypes: string[] = ['e_player_roles_mutation_response'] + export const ise_player_roles_mutation_response = (obj?: { __typename?: any } | null): obj is e_player_roles_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_player_roles_mutation_response"') + return e_player_roles_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_plugin_runtimes_possibleTypes: string[] = ['e_plugin_runtimes'] + export const ise_plugin_runtimes = (obj?: { __typename?: any } | null): obj is e_plugin_runtimes => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_plugin_runtimes"') + return e_plugin_runtimes_possibleTypes.includes(obj.__typename) + } + + + + const e_plugin_runtimes_aggregate_possibleTypes: string[] = ['e_plugin_runtimes_aggregate'] + export const ise_plugin_runtimes_aggregate = (obj?: { __typename?: any } | null): obj is e_plugin_runtimes_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_plugin_runtimes_aggregate"') + return e_plugin_runtimes_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_plugin_runtimes_aggregate_fields_possibleTypes: string[] = ['e_plugin_runtimes_aggregate_fields'] + export const ise_plugin_runtimes_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_plugin_runtimes_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_plugin_runtimes_aggregate_fields"') + return e_plugin_runtimes_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_plugin_runtimes_max_fields_possibleTypes: string[] = ['e_plugin_runtimes_max_fields'] + export const ise_plugin_runtimes_max_fields = (obj?: { __typename?: any } | null): obj is e_plugin_runtimes_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_plugin_runtimes_max_fields"') + return e_plugin_runtimes_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_plugin_runtimes_min_fields_possibleTypes: string[] = ['e_plugin_runtimes_min_fields'] + export const ise_plugin_runtimes_min_fields = (obj?: { __typename?: any } | null): obj is e_plugin_runtimes_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_plugin_runtimes_min_fields"') + return e_plugin_runtimes_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_plugin_runtimes_mutation_response_possibleTypes: string[] = ['e_plugin_runtimes_mutation_response'] + export const ise_plugin_runtimes_mutation_response = (obj?: { __typename?: any } | null): obj is e_plugin_runtimes_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_plugin_runtimes_mutation_response"') + return e_plugin_runtimes_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_ready_settings_possibleTypes: string[] = ['e_ready_settings'] + export const ise_ready_settings = (obj?: { __typename?: any } | null): obj is e_ready_settings => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_ready_settings"') + return e_ready_settings_possibleTypes.includes(obj.__typename) + } + + + + const e_ready_settings_aggregate_possibleTypes: string[] = ['e_ready_settings_aggregate'] + export const ise_ready_settings_aggregate = (obj?: { __typename?: any } | null): obj is e_ready_settings_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_ready_settings_aggregate"') + return e_ready_settings_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_ready_settings_aggregate_fields_possibleTypes: string[] = ['e_ready_settings_aggregate_fields'] + export const ise_ready_settings_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_ready_settings_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_ready_settings_aggregate_fields"') + return e_ready_settings_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_ready_settings_max_fields_possibleTypes: string[] = ['e_ready_settings_max_fields'] + export const ise_ready_settings_max_fields = (obj?: { __typename?: any } | null): obj is e_ready_settings_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_ready_settings_max_fields"') + return e_ready_settings_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_ready_settings_min_fields_possibleTypes: string[] = ['e_ready_settings_min_fields'] + export const ise_ready_settings_min_fields = (obj?: { __typename?: any } | null): obj is e_ready_settings_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_ready_settings_min_fields"') + return e_ready_settings_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_ready_settings_mutation_response_possibleTypes: string[] = ['e_ready_settings_mutation_response'] + export const ise_ready_settings_mutation_response = (obj?: { __typename?: any } | null): obj is e_ready_settings_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_ready_settings_mutation_response"') + return e_ready_settings_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_sanction_scopes_possibleTypes: string[] = ['e_sanction_scopes'] + export const ise_sanction_scopes = (obj?: { __typename?: any } | null): obj is e_sanction_scopes => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_scopes"') + return e_sanction_scopes_possibleTypes.includes(obj.__typename) + } + + + + const e_sanction_scopes_aggregate_possibleTypes: string[] = ['e_sanction_scopes_aggregate'] + export const ise_sanction_scopes_aggregate = (obj?: { __typename?: any } | null): obj is e_sanction_scopes_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_scopes_aggregate"') + return e_sanction_scopes_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_sanction_scopes_aggregate_fields_possibleTypes: string[] = ['e_sanction_scopes_aggregate_fields'] + export const ise_sanction_scopes_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_sanction_scopes_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_scopes_aggregate_fields"') + return e_sanction_scopes_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_sanction_scopes_max_fields_possibleTypes: string[] = ['e_sanction_scopes_max_fields'] + export const ise_sanction_scopes_max_fields = (obj?: { __typename?: any } | null): obj is e_sanction_scopes_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_scopes_max_fields"') + return e_sanction_scopes_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_sanction_scopes_min_fields_possibleTypes: string[] = ['e_sanction_scopes_min_fields'] + export const ise_sanction_scopes_min_fields = (obj?: { __typename?: any } | null): obj is e_sanction_scopes_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_scopes_min_fields"') + return e_sanction_scopes_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_sanction_scopes_mutation_response_possibleTypes: string[] = ['e_sanction_scopes_mutation_response'] + export const ise_sanction_scopes_mutation_response = (obj?: { __typename?: any } | null): obj is e_sanction_scopes_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_scopes_mutation_response"') + return e_sanction_scopes_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_sanction_sources_possibleTypes: string[] = ['e_sanction_sources'] + export const ise_sanction_sources = (obj?: { __typename?: any } | null): obj is e_sanction_sources => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_sources"') + return e_sanction_sources_possibleTypes.includes(obj.__typename) + } + + + + const e_sanction_sources_aggregate_possibleTypes: string[] = ['e_sanction_sources_aggregate'] + export const ise_sanction_sources_aggregate = (obj?: { __typename?: any } | null): obj is e_sanction_sources_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_sources_aggregate"') + return e_sanction_sources_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_sanction_sources_aggregate_fields_possibleTypes: string[] = ['e_sanction_sources_aggregate_fields'] + export const ise_sanction_sources_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_sanction_sources_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_sources_aggregate_fields"') + return e_sanction_sources_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_sanction_sources_avg_fields_possibleTypes: string[] = ['e_sanction_sources_avg_fields'] + export const ise_sanction_sources_avg_fields = (obj?: { __typename?: any } | null): obj is e_sanction_sources_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_sources_avg_fields"') + return e_sanction_sources_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_sanction_sources_max_fields_possibleTypes: string[] = ['e_sanction_sources_max_fields'] + export const ise_sanction_sources_max_fields = (obj?: { __typename?: any } | null): obj is e_sanction_sources_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_sources_max_fields"') + return e_sanction_sources_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_sanction_sources_min_fields_possibleTypes: string[] = ['e_sanction_sources_min_fields'] + export const ise_sanction_sources_min_fields = (obj?: { __typename?: any } | null): obj is e_sanction_sources_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_sources_min_fields"') + return e_sanction_sources_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_sanction_sources_mutation_response_possibleTypes: string[] = ['e_sanction_sources_mutation_response'] + export const ise_sanction_sources_mutation_response = (obj?: { __typename?: any } | null): obj is e_sanction_sources_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_sources_mutation_response"') + return e_sanction_sources_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_sanction_sources_stddev_fields_possibleTypes: string[] = ['e_sanction_sources_stddev_fields'] + export const ise_sanction_sources_stddev_fields = (obj?: { __typename?: any } | null): obj is e_sanction_sources_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_sources_stddev_fields"') + return e_sanction_sources_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_sanction_sources_stddev_pop_fields_possibleTypes: string[] = ['e_sanction_sources_stddev_pop_fields'] + export const ise_sanction_sources_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is e_sanction_sources_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_sources_stddev_pop_fields"') + return e_sanction_sources_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_sanction_sources_stddev_samp_fields_possibleTypes: string[] = ['e_sanction_sources_stddev_samp_fields'] + export const ise_sanction_sources_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is e_sanction_sources_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_sources_stddev_samp_fields"') + return e_sanction_sources_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_sanction_sources_sum_fields_possibleTypes: string[] = ['e_sanction_sources_sum_fields'] + export const ise_sanction_sources_sum_fields = (obj?: { __typename?: any } | null): obj is e_sanction_sources_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_sources_sum_fields"') + return e_sanction_sources_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_sanction_sources_var_pop_fields_possibleTypes: string[] = ['e_sanction_sources_var_pop_fields'] + export const ise_sanction_sources_var_pop_fields = (obj?: { __typename?: any } | null): obj is e_sanction_sources_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_sources_var_pop_fields"') + return e_sanction_sources_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_sanction_sources_var_samp_fields_possibleTypes: string[] = ['e_sanction_sources_var_samp_fields'] + export const ise_sanction_sources_var_samp_fields = (obj?: { __typename?: any } | null): obj is e_sanction_sources_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_sources_var_samp_fields"') + return e_sanction_sources_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_sanction_sources_variance_fields_possibleTypes: string[] = ['e_sanction_sources_variance_fields'] + export const ise_sanction_sources_variance_fields = (obj?: { __typename?: any } | null): obj is e_sanction_sources_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_sources_variance_fields"') + return e_sanction_sources_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_sanction_types_possibleTypes: string[] = ['e_sanction_types'] + export const ise_sanction_types = (obj?: { __typename?: any } | null): obj is e_sanction_types => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_types"') + return e_sanction_types_possibleTypes.includes(obj.__typename) + } + + + + const e_sanction_types_aggregate_possibleTypes: string[] = ['e_sanction_types_aggregate'] + export const ise_sanction_types_aggregate = (obj?: { __typename?: any } | null): obj is e_sanction_types_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_types_aggregate"') + return e_sanction_types_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_sanction_types_aggregate_fields_possibleTypes: string[] = ['e_sanction_types_aggregate_fields'] + export const ise_sanction_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_sanction_types_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_types_aggregate_fields"') + return e_sanction_types_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_sanction_types_max_fields_possibleTypes: string[] = ['e_sanction_types_max_fields'] + export const ise_sanction_types_max_fields = (obj?: { __typename?: any } | null): obj is e_sanction_types_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_types_max_fields"') + return e_sanction_types_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_sanction_types_min_fields_possibleTypes: string[] = ['e_sanction_types_min_fields'] + export const ise_sanction_types_min_fields = (obj?: { __typename?: any } | null): obj is e_sanction_types_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_types_min_fields"') + return e_sanction_types_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_sanction_types_mutation_response_possibleTypes: string[] = ['e_sanction_types_mutation_response'] + export const ise_sanction_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_sanction_types_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_types_mutation_response"') + return e_sanction_types_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_scrim_request_statuses_possibleTypes: string[] = ['e_scrim_request_statuses'] + export const ise_scrim_request_statuses = (obj?: { __typename?: any } | null): obj is e_scrim_request_statuses => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_scrim_request_statuses"') + return e_scrim_request_statuses_possibleTypes.includes(obj.__typename) + } + + + + const e_scrim_request_statuses_aggregate_possibleTypes: string[] = ['e_scrim_request_statuses_aggregate'] + export const ise_scrim_request_statuses_aggregate = (obj?: { __typename?: any } | null): obj is e_scrim_request_statuses_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_scrim_request_statuses_aggregate"') + return e_scrim_request_statuses_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_scrim_request_statuses_aggregate_fields_possibleTypes: string[] = ['e_scrim_request_statuses_aggregate_fields'] + export const ise_scrim_request_statuses_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_scrim_request_statuses_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_scrim_request_statuses_aggregate_fields"') + return e_scrim_request_statuses_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_scrim_request_statuses_max_fields_possibleTypes: string[] = ['e_scrim_request_statuses_max_fields'] + export const ise_scrim_request_statuses_max_fields = (obj?: { __typename?: any } | null): obj is e_scrim_request_statuses_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_scrim_request_statuses_max_fields"') + return e_scrim_request_statuses_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_scrim_request_statuses_min_fields_possibleTypes: string[] = ['e_scrim_request_statuses_min_fields'] + export const ise_scrim_request_statuses_min_fields = (obj?: { __typename?: any } | null): obj is e_scrim_request_statuses_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_scrim_request_statuses_min_fields"') + return e_scrim_request_statuses_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_scrim_request_statuses_mutation_response_possibleTypes: string[] = ['e_scrim_request_statuses_mutation_response'] + export const ise_scrim_request_statuses_mutation_response = (obj?: { __typename?: any } | null): obj is e_scrim_request_statuses_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_scrim_request_statuses_mutation_response"') + return e_scrim_request_statuses_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_server_types_possibleTypes: string[] = ['e_server_types'] + export const ise_server_types = (obj?: { __typename?: any } | null): obj is e_server_types => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_server_types"') + return e_server_types_possibleTypes.includes(obj.__typename) + } + + + + const e_server_types_aggregate_possibleTypes: string[] = ['e_server_types_aggregate'] + export const ise_server_types_aggregate = (obj?: { __typename?: any } | null): obj is e_server_types_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_server_types_aggregate"') + return e_server_types_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_server_types_aggregate_fields_possibleTypes: string[] = ['e_server_types_aggregate_fields'] + export const ise_server_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_server_types_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_server_types_aggregate_fields"') + return e_server_types_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_server_types_max_fields_possibleTypes: string[] = ['e_server_types_max_fields'] + export const ise_server_types_max_fields = (obj?: { __typename?: any } | null): obj is e_server_types_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_server_types_max_fields"') + return e_server_types_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_server_types_min_fields_possibleTypes: string[] = ['e_server_types_min_fields'] + export const ise_server_types_min_fields = (obj?: { __typename?: any } | null): obj is e_server_types_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_server_types_min_fields"') + return e_server_types_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_server_types_mutation_response_possibleTypes: string[] = ['e_server_types_mutation_response'] + export const ise_server_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_server_types_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_server_types_mutation_response"') + return e_server_types_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_sides_possibleTypes: string[] = ['e_sides'] + export const ise_sides = (obj?: { __typename?: any } | null): obj is e_sides => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_sides"') + return e_sides_possibleTypes.includes(obj.__typename) + } + + + + const e_sides_aggregate_possibleTypes: string[] = ['e_sides_aggregate'] + export const ise_sides_aggregate = (obj?: { __typename?: any } | null): obj is e_sides_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_sides_aggregate"') + return e_sides_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_sides_aggregate_fields_possibleTypes: string[] = ['e_sides_aggregate_fields'] + export const ise_sides_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_sides_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_sides_aggregate_fields"') + return e_sides_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_sides_max_fields_possibleTypes: string[] = ['e_sides_max_fields'] + export const ise_sides_max_fields = (obj?: { __typename?: any } | null): obj is e_sides_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_sides_max_fields"') + return e_sides_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_sides_min_fields_possibleTypes: string[] = ['e_sides_min_fields'] + export const ise_sides_min_fields = (obj?: { __typename?: any } | null): obj is e_sides_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_sides_min_fields"') + return e_sides_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_sides_mutation_response_possibleTypes: string[] = ['e_sides_mutation_response'] + export const ise_sides_mutation_response = (obj?: { __typename?: any } | null): obj is e_sides_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_sides_mutation_response"') + return e_sides_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_system_alert_types_possibleTypes: string[] = ['e_system_alert_types'] + export const ise_system_alert_types = (obj?: { __typename?: any } | null): obj is e_system_alert_types => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_system_alert_types"') + return e_system_alert_types_possibleTypes.includes(obj.__typename) + } + + + + const e_system_alert_types_aggregate_possibleTypes: string[] = ['e_system_alert_types_aggregate'] + export const ise_system_alert_types_aggregate = (obj?: { __typename?: any } | null): obj is e_system_alert_types_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_system_alert_types_aggregate"') + return e_system_alert_types_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_system_alert_types_aggregate_fields_possibleTypes: string[] = ['e_system_alert_types_aggregate_fields'] + export const ise_system_alert_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_system_alert_types_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_system_alert_types_aggregate_fields"') + return e_system_alert_types_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_system_alert_types_max_fields_possibleTypes: string[] = ['e_system_alert_types_max_fields'] + export const ise_system_alert_types_max_fields = (obj?: { __typename?: any } | null): obj is e_system_alert_types_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_system_alert_types_max_fields"') + return e_system_alert_types_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_system_alert_types_min_fields_possibleTypes: string[] = ['e_system_alert_types_min_fields'] + export const ise_system_alert_types_min_fields = (obj?: { __typename?: any } | null): obj is e_system_alert_types_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_system_alert_types_min_fields"') + return e_system_alert_types_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_system_alert_types_mutation_response_possibleTypes: string[] = ['e_system_alert_types_mutation_response'] + export const ise_system_alert_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_system_alert_types_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_system_alert_types_mutation_response"') + return e_system_alert_types_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_team_roles_possibleTypes: string[] = ['e_team_roles'] + export const ise_team_roles = (obj?: { __typename?: any } | null): obj is e_team_roles => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roles"') + return e_team_roles_possibleTypes.includes(obj.__typename) + } + + + + const e_team_roles_aggregate_possibleTypes: string[] = ['e_team_roles_aggregate'] + export const ise_team_roles_aggregate = (obj?: { __typename?: any } | null): obj is e_team_roles_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roles_aggregate"') + return e_team_roles_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_team_roles_aggregate_fields_possibleTypes: string[] = ['e_team_roles_aggregate_fields'] + export const ise_team_roles_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_team_roles_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roles_aggregate_fields"') + return e_team_roles_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_team_roles_max_fields_possibleTypes: string[] = ['e_team_roles_max_fields'] + export const ise_team_roles_max_fields = (obj?: { __typename?: any } | null): obj is e_team_roles_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roles_max_fields"') + return e_team_roles_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_team_roles_min_fields_possibleTypes: string[] = ['e_team_roles_min_fields'] + export const ise_team_roles_min_fields = (obj?: { __typename?: any } | null): obj is e_team_roles_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roles_min_fields"') + return e_team_roles_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_team_roles_mutation_response_possibleTypes: string[] = ['e_team_roles_mutation_response'] + export const ise_team_roles_mutation_response = (obj?: { __typename?: any } | null): obj is e_team_roles_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roles_mutation_response"') + return e_team_roles_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_team_roster_statuses_possibleTypes: string[] = ['e_team_roster_statuses'] + export const ise_team_roster_statuses = (obj?: { __typename?: any } | null): obj is e_team_roster_statuses => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roster_statuses"') + return e_team_roster_statuses_possibleTypes.includes(obj.__typename) + } + + + + const e_team_roster_statuses_aggregate_possibleTypes: string[] = ['e_team_roster_statuses_aggregate'] + export const ise_team_roster_statuses_aggregate = (obj?: { __typename?: any } | null): obj is e_team_roster_statuses_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roster_statuses_aggregate"') + return e_team_roster_statuses_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_team_roster_statuses_aggregate_fields_possibleTypes: string[] = ['e_team_roster_statuses_aggregate_fields'] + export const ise_team_roster_statuses_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_team_roster_statuses_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roster_statuses_aggregate_fields"') + return e_team_roster_statuses_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_team_roster_statuses_max_fields_possibleTypes: string[] = ['e_team_roster_statuses_max_fields'] + export const ise_team_roster_statuses_max_fields = (obj?: { __typename?: any } | null): obj is e_team_roster_statuses_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roster_statuses_max_fields"') + return e_team_roster_statuses_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_team_roster_statuses_min_fields_possibleTypes: string[] = ['e_team_roster_statuses_min_fields'] + export const ise_team_roster_statuses_min_fields = (obj?: { __typename?: any } | null): obj is e_team_roster_statuses_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roster_statuses_min_fields"') + return e_team_roster_statuses_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_team_roster_statuses_mutation_response_possibleTypes: string[] = ['e_team_roster_statuses_mutation_response'] + export const ise_team_roster_statuses_mutation_response = (obj?: { __typename?: any } | null): obj is e_team_roster_statuses_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roster_statuses_mutation_response"') + return e_team_roster_statuses_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_timeout_settings_possibleTypes: string[] = ['e_timeout_settings'] + export const ise_timeout_settings = (obj?: { __typename?: any } | null): obj is e_timeout_settings => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_timeout_settings"') + return e_timeout_settings_possibleTypes.includes(obj.__typename) + } + + + + const e_timeout_settings_aggregate_possibleTypes: string[] = ['e_timeout_settings_aggregate'] + export const ise_timeout_settings_aggregate = (obj?: { __typename?: any } | null): obj is e_timeout_settings_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_timeout_settings_aggregate"') + return e_timeout_settings_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_timeout_settings_aggregate_fields_possibleTypes: string[] = ['e_timeout_settings_aggregate_fields'] + export const ise_timeout_settings_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_timeout_settings_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_timeout_settings_aggregate_fields"') + return e_timeout_settings_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_timeout_settings_max_fields_possibleTypes: string[] = ['e_timeout_settings_max_fields'] + export const ise_timeout_settings_max_fields = (obj?: { __typename?: any } | null): obj is e_timeout_settings_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_timeout_settings_max_fields"') + return e_timeout_settings_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_timeout_settings_min_fields_possibleTypes: string[] = ['e_timeout_settings_min_fields'] + export const ise_timeout_settings_min_fields = (obj?: { __typename?: any } | null): obj is e_timeout_settings_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_timeout_settings_min_fields"') + return e_timeout_settings_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_timeout_settings_mutation_response_possibleTypes: string[] = ['e_timeout_settings_mutation_response'] + export const ise_timeout_settings_mutation_response = (obj?: { __typename?: any } | null): obj is e_timeout_settings_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_timeout_settings_mutation_response"') + return e_timeout_settings_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_tournament_categories_possibleTypes: string[] = ['e_tournament_categories'] + export const ise_tournament_categories = (obj?: { __typename?: any } | null): obj is e_tournament_categories => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_categories"') + return e_tournament_categories_possibleTypes.includes(obj.__typename) + } + + + + const e_tournament_categories_aggregate_possibleTypes: string[] = ['e_tournament_categories_aggregate'] + export const ise_tournament_categories_aggregate = (obj?: { __typename?: any } | null): obj is e_tournament_categories_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_categories_aggregate"') + return e_tournament_categories_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_tournament_categories_aggregate_fields_possibleTypes: string[] = ['e_tournament_categories_aggregate_fields'] + export const ise_tournament_categories_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_tournament_categories_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_categories_aggregate_fields"') + return e_tournament_categories_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_tournament_categories_max_fields_possibleTypes: string[] = ['e_tournament_categories_max_fields'] + export const ise_tournament_categories_max_fields = (obj?: { __typename?: any } | null): obj is e_tournament_categories_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_categories_max_fields"') + return e_tournament_categories_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_tournament_categories_min_fields_possibleTypes: string[] = ['e_tournament_categories_min_fields'] + export const ise_tournament_categories_min_fields = (obj?: { __typename?: any } | null): obj is e_tournament_categories_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_categories_min_fields"') + return e_tournament_categories_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_tournament_categories_mutation_response_possibleTypes: string[] = ['e_tournament_categories_mutation_response'] + export const ise_tournament_categories_mutation_response = (obj?: { __typename?: any } | null): obj is e_tournament_categories_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_categories_mutation_response"') + return e_tournament_categories_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_tournament_free_agent_statuses_possibleTypes: string[] = ['e_tournament_free_agent_statuses'] + export const ise_tournament_free_agent_statuses = (obj?: { __typename?: any } | null): obj is e_tournament_free_agent_statuses => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_free_agent_statuses"') + return e_tournament_free_agent_statuses_possibleTypes.includes(obj.__typename) + } + + + + const e_tournament_free_agent_statuses_aggregate_possibleTypes: string[] = ['e_tournament_free_agent_statuses_aggregate'] + export const ise_tournament_free_agent_statuses_aggregate = (obj?: { __typename?: any } | null): obj is e_tournament_free_agent_statuses_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_free_agent_statuses_aggregate"') + return e_tournament_free_agent_statuses_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_tournament_free_agent_statuses_aggregate_fields_possibleTypes: string[] = ['e_tournament_free_agent_statuses_aggregate_fields'] + export const ise_tournament_free_agent_statuses_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_tournament_free_agent_statuses_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_free_agent_statuses_aggregate_fields"') + return e_tournament_free_agent_statuses_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_tournament_free_agent_statuses_max_fields_possibleTypes: string[] = ['e_tournament_free_agent_statuses_max_fields'] + export const ise_tournament_free_agent_statuses_max_fields = (obj?: { __typename?: any } | null): obj is e_tournament_free_agent_statuses_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_free_agent_statuses_max_fields"') + return e_tournament_free_agent_statuses_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_tournament_free_agent_statuses_min_fields_possibleTypes: string[] = ['e_tournament_free_agent_statuses_min_fields'] + export const ise_tournament_free_agent_statuses_min_fields = (obj?: { __typename?: any } | null): obj is e_tournament_free_agent_statuses_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_free_agent_statuses_min_fields"') + return e_tournament_free_agent_statuses_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_tournament_free_agent_statuses_mutation_response_possibleTypes: string[] = ['e_tournament_free_agent_statuses_mutation_response'] + export const ise_tournament_free_agent_statuses_mutation_response = (obj?: { __typename?: any } | null): obj is e_tournament_free_agent_statuses_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_free_agent_statuses_mutation_response"') + return e_tournament_free_agent_statuses_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_tournament_registration_types_possibleTypes: string[] = ['e_tournament_registration_types'] + export const ise_tournament_registration_types = (obj?: { __typename?: any } | null): obj is e_tournament_registration_types => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_registration_types"') + return e_tournament_registration_types_possibleTypes.includes(obj.__typename) + } + + + + const e_tournament_registration_types_aggregate_possibleTypes: string[] = ['e_tournament_registration_types_aggregate'] + export const ise_tournament_registration_types_aggregate = (obj?: { __typename?: any } | null): obj is e_tournament_registration_types_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_registration_types_aggregate"') + return e_tournament_registration_types_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_tournament_registration_types_aggregate_fields_possibleTypes: string[] = ['e_tournament_registration_types_aggregate_fields'] + export const ise_tournament_registration_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_tournament_registration_types_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_registration_types_aggregate_fields"') + return e_tournament_registration_types_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_tournament_registration_types_max_fields_possibleTypes: string[] = ['e_tournament_registration_types_max_fields'] + export const ise_tournament_registration_types_max_fields = (obj?: { __typename?: any } | null): obj is e_tournament_registration_types_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_registration_types_max_fields"') + return e_tournament_registration_types_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_tournament_registration_types_min_fields_possibleTypes: string[] = ['e_tournament_registration_types_min_fields'] + export const ise_tournament_registration_types_min_fields = (obj?: { __typename?: any } | null): obj is e_tournament_registration_types_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_registration_types_min_fields"') + return e_tournament_registration_types_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_tournament_registration_types_mutation_response_possibleTypes: string[] = ['e_tournament_registration_types_mutation_response'] + export const ise_tournament_registration_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_tournament_registration_types_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_registration_types_mutation_response"') + return e_tournament_registration_types_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_tournament_stage_types_possibleTypes: string[] = ['e_tournament_stage_types'] + export const ise_tournament_stage_types = (obj?: { __typename?: any } | null): obj is e_tournament_stage_types => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_stage_types"') + return e_tournament_stage_types_possibleTypes.includes(obj.__typename) + } + + + + const e_tournament_stage_types_aggregate_possibleTypes: string[] = ['e_tournament_stage_types_aggregate'] + export const ise_tournament_stage_types_aggregate = (obj?: { __typename?: any } | null): obj is e_tournament_stage_types_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_stage_types_aggregate"') + return e_tournament_stage_types_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_tournament_stage_types_aggregate_fields_possibleTypes: string[] = ['e_tournament_stage_types_aggregate_fields'] + export const ise_tournament_stage_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_tournament_stage_types_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_stage_types_aggregate_fields"') + return e_tournament_stage_types_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_tournament_stage_types_max_fields_possibleTypes: string[] = ['e_tournament_stage_types_max_fields'] + export const ise_tournament_stage_types_max_fields = (obj?: { __typename?: any } | null): obj is e_tournament_stage_types_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_stage_types_max_fields"') + return e_tournament_stage_types_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_tournament_stage_types_min_fields_possibleTypes: string[] = ['e_tournament_stage_types_min_fields'] + export const ise_tournament_stage_types_min_fields = (obj?: { __typename?: any } | null): obj is e_tournament_stage_types_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_stage_types_min_fields"') + return e_tournament_stage_types_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_tournament_stage_types_mutation_response_possibleTypes: string[] = ['e_tournament_stage_types_mutation_response'] + export const ise_tournament_stage_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_tournament_stage_types_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_stage_types_mutation_response"') + return e_tournament_stage_types_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_tournament_status_possibleTypes: string[] = ['e_tournament_status'] + export const ise_tournament_status = (obj?: { __typename?: any } | null): obj is e_tournament_status => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_status"') + return e_tournament_status_possibleTypes.includes(obj.__typename) + } + + + + const e_tournament_status_aggregate_possibleTypes: string[] = ['e_tournament_status_aggregate'] + export const ise_tournament_status_aggregate = (obj?: { __typename?: any } | null): obj is e_tournament_status_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_status_aggregate"') + return e_tournament_status_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_tournament_status_aggregate_fields_possibleTypes: string[] = ['e_tournament_status_aggregate_fields'] + export const ise_tournament_status_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_tournament_status_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_status_aggregate_fields"') + return e_tournament_status_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_tournament_status_max_fields_possibleTypes: string[] = ['e_tournament_status_max_fields'] + export const ise_tournament_status_max_fields = (obj?: { __typename?: any } | null): obj is e_tournament_status_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_status_max_fields"') + return e_tournament_status_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_tournament_status_min_fields_possibleTypes: string[] = ['e_tournament_status_min_fields'] + export const ise_tournament_status_min_fields = (obj?: { __typename?: any } | null): obj is e_tournament_status_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_status_min_fields"') + return e_tournament_status_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_tournament_status_mutation_response_possibleTypes: string[] = ['e_tournament_status_mutation_response'] + export const ise_tournament_status_mutation_response = (obj?: { __typename?: any } | null): obj is e_tournament_status_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_status_mutation_response"') + return e_tournament_status_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_utility_practice_access_possibleTypes: string[] = ['e_utility_practice_access'] + export const ise_utility_practice_access = (obj?: { __typename?: any } | null): obj is e_utility_practice_access => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_practice_access"') + return e_utility_practice_access_possibleTypes.includes(obj.__typename) + } + + + + const e_utility_practice_access_aggregate_possibleTypes: string[] = ['e_utility_practice_access_aggregate'] + export const ise_utility_practice_access_aggregate = (obj?: { __typename?: any } | null): obj is e_utility_practice_access_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_practice_access_aggregate"') + return e_utility_practice_access_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_utility_practice_access_aggregate_fields_possibleTypes: string[] = ['e_utility_practice_access_aggregate_fields'] + export const ise_utility_practice_access_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_utility_practice_access_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_practice_access_aggregate_fields"') + return e_utility_practice_access_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_utility_practice_access_max_fields_possibleTypes: string[] = ['e_utility_practice_access_max_fields'] + export const ise_utility_practice_access_max_fields = (obj?: { __typename?: any } | null): obj is e_utility_practice_access_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_practice_access_max_fields"') + return e_utility_practice_access_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_utility_practice_access_min_fields_possibleTypes: string[] = ['e_utility_practice_access_min_fields'] + export const ise_utility_practice_access_min_fields = (obj?: { __typename?: any } | null): obj is e_utility_practice_access_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_practice_access_min_fields"') + return e_utility_practice_access_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_utility_practice_access_mutation_response_possibleTypes: string[] = ['e_utility_practice_access_mutation_response'] + export const ise_utility_practice_access_mutation_response = (obj?: { __typename?: any } | null): obj is e_utility_practice_access_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_practice_access_mutation_response"') + return e_utility_practice_access_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_utility_practice_statuses_possibleTypes: string[] = ['e_utility_practice_statuses'] + export const ise_utility_practice_statuses = (obj?: { __typename?: any } | null): obj is e_utility_practice_statuses => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_practice_statuses"') + return e_utility_practice_statuses_possibleTypes.includes(obj.__typename) + } + + + + const e_utility_practice_statuses_aggregate_possibleTypes: string[] = ['e_utility_practice_statuses_aggregate'] + export const ise_utility_practice_statuses_aggregate = (obj?: { __typename?: any } | null): obj is e_utility_practice_statuses_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_practice_statuses_aggregate"') + return e_utility_practice_statuses_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_utility_practice_statuses_aggregate_fields_possibleTypes: string[] = ['e_utility_practice_statuses_aggregate_fields'] + export const ise_utility_practice_statuses_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_utility_practice_statuses_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_practice_statuses_aggregate_fields"') + return e_utility_practice_statuses_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_utility_practice_statuses_max_fields_possibleTypes: string[] = ['e_utility_practice_statuses_max_fields'] + export const ise_utility_practice_statuses_max_fields = (obj?: { __typename?: any } | null): obj is e_utility_practice_statuses_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_practice_statuses_max_fields"') + return e_utility_practice_statuses_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_utility_practice_statuses_min_fields_possibleTypes: string[] = ['e_utility_practice_statuses_min_fields'] + export const ise_utility_practice_statuses_min_fields = (obj?: { __typename?: any } | null): obj is e_utility_practice_statuses_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_practice_statuses_min_fields"') + return e_utility_practice_statuses_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_utility_practice_statuses_mutation_response_possibleTypes: string[] = ['e_utility_practice_statuses_mutation_response'] + export const ise_utility_practice_statuses_mutation_response = (obj?: { __typename?: any } | null): obj is e_utility_practice_statuses_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_practice_statuses_mutation_response"') + return e_utility_practice_statuses_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_utility_sources_possibleTypes: string[] = ['e_utility_sources'] + export const ise_utility_sources = (obj?: { __typename?: any } | null): obj is e_utility_sources => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_sources"') + return e_utility_sources_possibleTypes.includes(obj.__typename) + } + + + + const e_utility_sources_aggregate_possibleTypes: string[] = ['e_utility_sources_aggregate'] + export const ise_utility_sources_aggregate = (obj?: { __typename?: any } | null): obj is e_utility_sources_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_sources_aggregate"') + return e_utility_sources_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_utility_sources_aggregate_fields_possibleTypes: string[] = ['e_utility_sources_aggregate_fields'] + export const ise_utility_sources_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_utility_sources_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_sources_aggregate_fields"') + return e_utility_sources_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_utility_sources_max_fields_possibleTypes: string[] = ['e_utility_sources_max_fields'] + export const ise_utility_sources_max_fields = (obj?: { __typename?: any } | null): obj is e_utility_sources_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_sources_max_fields"') + return e_utility_sources_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_utility_sources_min_fields_possibleTypes: string[] = ['e_utility_sources_min_fields'] + export const ise_utility_sources_min_fields = (obj?: { __typename?: any } | null): obj is e_utility_sources_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_sources_min_fields"') + return e_utility_sources_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_utility_sources_mutation_response_possibleTypes: string[] = ['e_utility_sources_mutation_response'] + export const ise_utility_sources_mutation_response = (obj?: { __typename?: any } | null): obj is e_utility_sources_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_sources_mutation_response"') + return e_utility_sources_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_utility_techniques_possibleTypes: string[] = ['e_utility_techniques'] + export const ise_utility_techniques = (obj?: { __typename?: any } | null): obj is e_utility_techniques => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_techniques"') + return e_utility_techniques_possibleTypes.includes(obj.__typename) + } + + + + const e_utility_techniques_aggregate_possibleTypes: string[] = ['e_utility_techniques_aggregate'] + export const ise_utility_techniques_aggregate = (obj?: { __typename?: any } | null): obj is e_utility_techniques_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_techniques_aggregate"') + return e_utility_techniques_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_utility_techniques_aggregate_fields_possibleTypes: string[] = ['e_utility_techniques_aggregate_fields'] + export const ise_utility_techniques_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_utility_techniques_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_techniques_aggregate_fields"') + return e_utility_techniques_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_utility_techniques_max_fields_possibleTypes: string[] = ['e_utility_techniques_max_fields'] + export const ise_utility_techniques_max_fields = (obj?: { __typename?: any } | null): obj is e_utility_techniques_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_techniques_max_fields"') + return e_utility_techniques_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_utility_techniques_min_fields_possibleTypes: string[] = ['e_utility_techniques_min_fields'] + export const ise_utility_techniques_min_fields = (obj?: { __typename?: any } | null): obj is e_utility_techniques_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_techniques_min_fields"') + return e_utility_techniques_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_utility_techniques_mutation_response_possibleTypes: string[] = ['e_utility_techniques_mutation_response'] + export const ise_utility_techniques_mutation_response = (obj?: { __typename?: any } | null): obj is e_utility_techniques_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_techniques_mutation_response"') + return e_utility_techniques_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_utility_throw_strengths_possibleTypes: string[] = ['e_utility_throw_strengths'] + export const ise_utility_throw_strengths = (obj?: { __typename?: any } | null): obj is e_utility_throw_strengths => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_throw_strengths"') + return e_utility_throw_strengths_possibleTypes.includes(obj.__typename) + } + + + + const e_utility_throw_strengths_aggregate_possibleTypes: string[] = ['e_utility_throw_strengths_aggregate'] + export const ise_utility_throw_strengths_aggregate = (obj?: { __typename?: any } | null): obj is e_utility_throw_strengths_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_throw_strengths_aggregate"') + return e_utility_throw_strengths_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_utility_throw_strengths_aggregate_fields_possibleTypes: string[] = ['e_utility_throw_strengths_aggregate_fields'] + export const ise_utility_throw_strengths_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_utility_throw_strengths_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_throw_strengths_aggregate_fields"') + return e_utility_throw_strengths_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_utility_throw_strengths_max_fields_possibleTypes: string[] = ['e_utility_throw_strengths_max_fields'] + export const ise_utility_throw_strengths_max_fields = (obj?: { __typename?: any } | null): obj is e_utility_throw_strengths_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_throw_strengths_max_fields"') + return e_utility_throw_strengths_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_utility_throw_strengths_min_fields_possibleTypes: string[] = ['e_utility_throw_strengths_min_fields'] + export const ise_utility_throw_strengths_min_fields = (obj?: { __typename?: any } | null): obj is e_utility_throw_strengths_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_throw_strengths_min_fields"') + return e_utility_throw_strengths_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_utility_throw_strengths_mutation_response_possibleTypes: string[] = ['e_utility_throw_strengths_mutation_response'] + export const ise_utility_throw_strengths_mutation_response = (obj?: { __typename?: any } | null): obj is e_utility_throw_strengths_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_throw_strengths_mutation_response"') + return e_utility_throw_strengths_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_utility_types_possibleTypes: string[] = ['e_utility_types'] + export const ise_utility_types = (obj?: { __typename?: any } | null): obj is e_utility_types => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_types"') + return e_utility_types_possibleTypes.includes(obj.__typename) + } + + + + const e_utility_types_aggregate_possibleTypes: string[] = ['e_utility_types_aggregate'] + export const ise_utility_types_aggregate = (obj?: { __typename?: any } | null): obj is e_utility_types_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_types_aggregate"') + return e_utility_types_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_utility_types_aggregate_fields_possibleTypes: string[] = ['e_utility_types_aggregate_fields'] + export const ise_utility_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_utility_types_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_types_aggregate_fields"') + return e_utility_types_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_utility_types_max_fields_possibleTypes: string[] = ['e_utility_types_max_fields'] + export const ise_utility_types_max_fields = (obj?: { __typename?: any } | null): obj is e_utility_types_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_types_max_fields"') + return e_utility_types_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_utility_types_min_fields_possibleTypes: string[] = ['e_utility_types_min_fields'] + export const ise_utility_types_min_fields = (obj?: { __typename?: any } | null): obj is e_utility_types_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_types_min_fields"') + return e_utility_types_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_utility_types_mutation_response_possibleTypes: string[] = ['e_utility_types_mutation_response'] + export const ise_utility_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_utility_types_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_types_mutation_response"') + return e_utility_types_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_utility_visibility_possibleTypes: string[] = ['e_utility_visibility'] + export const ise_utility_visibility = (obj?: { __typename?: any } | null): obj is e_utility_visibility => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_visibility"') + return e_utility_visibility_possibleTypes.includes(obj.__typename) + } + + + + const e_utility_visibility_aggregate_possibleTypes: string[] = ['e_utility_visibility_aggregate'] + export const ise_utility_visibility_aggregate = (obj?: { __typename?: any } | null): obj is e_utility_visibility_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_visibility_aggregate"') + return e_utility_visibility_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_utility_visibility_aggregate_fields_possibleTypes: string[] = ['e_utility_visibility_aggregate_fields'] + export const ise_utility_visibility_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_utility_visibility_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_visibility_aggregate_fields"') + return e_utility_visibility_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_utility_visibility_max_fields_possibleTypes: string[] = ['e_utility_visibility_max_fields'] + export const ise_utility_visibility_max_fields = (obj?: { __typename?: any } | null): obj is e_utility_visibility_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_visibility_max_fields"') + return e_utility_visibility_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_utility_visibility_min_fields_possibleTypes: string[] = ['e_utility_visibility_min_fields'] + export const ise_utility_visibility_min_fields = (obj?: { __typename?: any } | null): obj is e_utility_visibility_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_visibility_min_fields"') + return e_utility_visibility_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_utility_visibility_mutation_response_possibleTypes: string[] = ['e_utility_visibility_mutation_response'] + export const ise_utility_visibility_mutation_response = (obj?: { __typename?: any } | null): obj is e_utility_visibility_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_visibility_mutation_response"') + return e_utility_visibility_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_veto_pick_types_possibleTypes: string[] = ['e_veto_pick_types'] + export const ise_veto_pick_types = (obj?: { __typename?: any } | null): obj is e_veto_pick_types => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_veto_pick_types"') + return e_veto_pick_types_possibleTypes.includes(obj.__typename) + } + + + + const e_veto_pick_types_aggregate_possibleTypes: string[] = ['e_veto_pick_types_aggregate'] + export const ise_veto_pick_types_aggregate = (obj?: { __typename?: any } | null): obj is e_veto_pick_types_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_veto_pick_types_aggregate"') + return e_veto_pick_types_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_veto_pick_types_aggregate_fields_possibleTypes: string[] = ['e_veto_pick_types_aggregate_fields'] + export const ise_veto_pick_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_veto_pick_types_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_veto_pick_types_aggregate_fields"') + return e_veto_pick_types_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_veto_pick_types_max_fields_possibleTypes: string[] = ['e_veto_pick_types_max_fields'] + export const ise_veto_pick_types_max_fields = (obj?: { __typename?: any } | null): obj is e_veto_pick_types_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_veto_pick_types_max_fields"') + return e_veto_pick_types_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_veto_pick_types_min_fields_possibleTypes: string[] = ['e_veto_pick_types_min_fields'] + export const ise_veto_pick_types_min_fields = (obj?: { __typename?: any } | null): obj is e_veto_pick_types_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_veto_pick_types_min_fields"') + return e_veto_pick_types_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_veto_pick_types_mutation_response_possibleTypes: string[] = ['e_veto_pick_types_mutation_response'] + export const ise_veto_pick_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_veto_pick_types_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_veto_pick_types_mutation_response"') + return e_veto_pick_types_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_winning_reasons_possibleTypes: string[] = ['e_winning_reasons'] + export const ise_winning_reasons = (obj?: { __typename?: any } | null): obj is e_winning_reasons => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_winning_reasons"') + return e_winning_reasons_possibleTypes.includes(obj.__typename) + } + + + + const e_winning_reasons_aggregate_possibleTypes: string[] = ['e_winning_reasons_aggregate'] + export const ise_winning_reasons_aggregate = (obj?: { __typename?: any } | null): obj is e_winning_reasons_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_winning_reasons_aggregate"') + return e_winning_reasons_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_winning_reasons_aggregate_fields_possibleTypes: string[] = ['e_winning_reasons_aggregate_fields'] + export const ise_winning_reasons_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_winning_reasons_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_winning_reasons_aggregate_fields"') + return e_winning_reasons_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_winning_reasons_max_fields_possibleTypes: string[] = ['e_winning_reasons_max_fields'] + export const ise_winning_reasons_max_fields = (obj?: { __typename?: any } | null): obj is e_winning_reasons_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_winning_reasons_max_fields"') + return e_winning_reasons_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_winning_reasons_min_fields_possibleTypes: string[] = ['e_winning_reasons_min_fields'] + export const ise_winning_reasons_min_fields = (obj?: { __typename?: any } | null): obj is e_winning_reasons_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_winning_reasons_min_fields"') + return e_winning_reasons_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_winning_reasons_mutation_response_possibleTypes: string[] = ['e_winning_reasons_mutation_response'] + export const ise_winning_reasons_mutation_response = (obj?: { __typename?: any } | null): obj is e_winning_reasons_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_winning_reasons_mutation_response"') + return e_winning_reasons_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const event_match_links_possibleTypes: string[] = ['event_match_links'] + export const isevent_match_links = (obj?: { __typename?: any } | null): obj is event_match_links => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_match_links"') + return event_match_links_possibleTypes.includes(obj.__typename) + } + + + + const event_match_links_aggregate_possibleTypes: string[] = ['event_match_links_aggregate'] + export const isevent_match_links_aggregate = (obj?: { __typename?: any } | null): obj is event_match_links_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_match_links_aggregate"') + return event_match_links_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const event_match_links_aggregate_fields_possibleTypes: string[] = ['event_match_links_aggregate_fields'] + export const isevent_match_links_aggregate_fields = (obj?: { __typename?: any } | null): obj is event_match_links_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_match_links_aggregate_fields"') + return event_match_links_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_match_links_max_fields_possibleTypes: string[] = ['event_match_links_max_fields'] + export const isevent_match_links_max_fields = (obj?: { __typename?: any } | null): obj is event_match_links_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_match_links_max_fields"') + return event_match_links_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_match_links_min_fields_possibleTypes: string[] = ['event_match_links_min_fields'] + export const isevent_match_links_min_fields = (obj?: { __typename?: any } | null): obj is event_match_links_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_match_links_min_fields"') + return event_match_links_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_match_links_mutation_response_possibleTypes: string[] = ['event_match_links_mutation_response'] + export const isevent_match_links_mutation_response = (obj?: { __typename?: any } | null): obj is event_match_links_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_match_links_mutation_response"') + return event_match_links_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const event_media_possibleTypes: string[] = ['event_media'] + export const isevent_media = (obj?: { __typename?: any } | null): obj is event_media => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media"') + return event_media_possibleTypes.includes(obj.__typename) + } + + + + const event_media_aggregate_possibleTypes: string[] = ['event_media_aggregate'] + export const isevent_media_aggregate = (obj?: { __typename?: any } | null): obj is event_media_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_aggregate"') + return event_media_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const event_media_aggregate_fields_possibleTypes: string[] = ['event_media_aggregate_fields'] + export const isevent_media_aggregate_fields = (obj?: { __typename?: any } | null): obj is event_media_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_aggregate_fields"') + return event_media_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_media_avg_fields_possibleTypes: string[] = ['event_media_avg_fields'] + export const isevent_media_avg_fields = (obj?: { __typename?: any } | null): obj is event_media_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_avg_fields"') + return event_media_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_media_max_fields_possibleTypes: string[] = ['event_media_max_fields'] + export const isevent_media_max_fields = (obj?: { __typename?: any } | null): obj is event_media_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_max_fields"') + return event_media_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_media_min_fields_possibleTypes: string[] = ['event_media_min_fields'] + export const isevent_media_min_fields = (obj?: { __typename?: any } | null): obj is event_media_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_min_fields"') + return event_media_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_media_mutation_response_possibleTypes: string[] = ['event_media_mutation_response'] + export const isevent_media_mutation_response = (obj?: { __typename?: any } | null): obj is event_media_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_mutation_response"') + return event_media_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const event_media_players_possibleTypes: string[] = ['event_media_players'] + export const isevent_media_players = (obj?: { __typename?: any } | null): obj is event_media_players => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players"') + return event_media_players_possibleTypes.includes(obj.__typename) + } + + + + const event_media_players_aggregate_possibleTypes: string[] = ['event_media_players_aggregate'] + export const isevent_media_players_aggregate = (obj?: { __typename?: any } | null): obj is event_media_players_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_aggregate"') + return event_media_players_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const event_media_players_aggregate_fields_possibleTypes: string[] = ['event_media_players_aggregate_fields'] + export const isevent_media_players_aggregate_fields = (obj?: { __typename?: any } | null): obj is event_media_players_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_aggregate_fields"') + return event_media_players_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_media_players_avg_fields_possibleTypes: string[] = ['event_media_players_avg_fields'] + export const isevent_media_players_avg_fields = (obj?: { __typename?: any } | null): obj is event_media_players_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_avg_fields"') + return event_media_players_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_media_players_max_fields_possibleTypes: string[] = ['event_media_players_max_fields'] + export const isevent_media_players_max_fields = (obj?: { __typename?: any } | null): obj is event_media_players_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_max_fields"') + return event_media_players_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_media_players_min_fields_possibleTypes: string[] = ['event_media_players_min_fields'] + export const isevent_media_players_min_fields = (obj?: { __typename?: any } | null): obj is event_media_players_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_min_fields"') + return event_media_players_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_media_players_mutation_response_possibleTypes: string[] = ['event_media_players_mutation_response'] + export const isevent_media_players_mutation_response = (obj?: { __typename?: any } | null): obj is event_media_players_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_mutation_response"') + return event_media_players_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const event_media_players_stddev_fields_possibleTypes: string[] = ['event_media_players_stddev_fields'] + export const isevent_media_players_stddev_fields = (obj?: { __typename?: any } | null): obj is event_media_players_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_stddev_fields"') + return event_media_players_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_media_players_stddev_pop_fields_possibleTypes: string[] = ['event_media_players_stddev_pop_fields'] + export const isevent_media_players_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is event_media_players_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_stddev_pop_fields"') + return event_media_players_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_media_players_stddev_samp_fields_possibleTypes: string[] = ['event_media_players_stddev_samp_fields'] + export const isevent_media_players_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is event_media_players_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_stddev_samp_fields"') + return event_media_players_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_media_players_sum_fields_possibleTypes: string[] = ['event_media_players_sum_fields'] + export const isevent_media_players_sum_fields = (obj?: { __typename?: any } | null): obj is event_media_players_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_sum_fields"') + return event_media_players_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_media_players_var_pop_fields_possibleTypes: string[] = ['event_media_players_var_pop_fields'] + export const isevent_media_players_var_pop_fields = (obj?: { __typename?: any } | null): obj is event_media_players_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_var_pop_fields"') + return event_media_players_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_media_players_var_samp_fields_possibleTypes: string[] = ['event_media_players_var_samp_fields'] + export const isevent_media_players_var_samp_fields = (obj?: { __typename?: any } | null): obj is event_media_players_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_var_samp_fields"') + return event_media_players_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_media_players_variance_fields_possibleTypes: string[] = ['event_media_players_variance_fields'] + export const isevent_media_players_variance_fields = (obj?: { __typename?: any } | null): obj is event_media_players_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_variance_fields"') + return event_media_players_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_media_stddev_fields_possibleTypes: string[] = ['event_media_stddev_fields'] + export const isevent_media_stddev_fields = (obj?: { __typename?: any } | null): obj is event_media_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_stddev_fields"') + return event_media_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_media_stddev_pop_fields_possibleTypes: string[] = ['event_media_stddev_pop_fields'] + export const isevent_media_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is event_media_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_stddev_pop_fields"') + return event_media_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_media_stddev_samp_fields_possibleTypes: string[] = ['event_media_stddev_samp_fields'] + export const isevent_media_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is event_media_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_stddev_samp_fields"') + return event_media_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_media_sum_fields_possibleTypes: string[] = ['event_media_sum_fields'] + export const isevent_media_sum_fields = (obj?: { __typename?: any } | null): obj is event_media_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_sum_fields"') + return event_media_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_media_var_pop_fields_possibleTypes: string[] = ['event_media_var_pop_fields'] + export const isevent_media_var_pop_fields = (obj?: { __typename?: any } | null): obj is event_media_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_var_pop_fields"') + return event_media_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_media_var_samp_fields_possibleTypes: string[] = ['event_media_var_samp_fields'] + export const isevent_media_var_samp_fields = (obj?: { __typename?: any } | null): obj is event_media_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_var_samp_fields"') + return event_media_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_media_variance_fields_possibleTypes: string[] = ['event_media_variance_fields'] + export const isevent_media_variance_fields = (obj?: { __typename?: any } | null): obj is event_media_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_variance_fields"') + return event_media_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_organizers_possibleTypes: string[] = ['event_organizers'] + export const isevent_organizers = (obj?: { __typename?: any } | null): obj is event_organizers => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers"') + return event_organizers_possibleTypes.includes(obj.__typename) + } + + + + const event_organizers_aggregate_possibleTypes: string[] = ['event_organizers_aggregate'] + export const isevent_organizers_aggregate = (obj?: { __typename?: any } | null): obj is event_organizers_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_aggregate"') + return event_organizers_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const event_organizers_aggregate_fields_possibleTypes: string[] = ['event_organizers_aggregate_fields'] + export const isevent_organizers_aggregate_fields = (obj?: { __typename?: any } | null): obj is event_organizers_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_aggregate_fields"') + return event_organizers_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_organizers_avg_fields_possibleTypes: string[] = ['event_organizers_avg_fields'] + export const isevent_organizers_avg_fields = (obj?: { __typename?: any } | null): obj is event_organizers_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_avg_fields"') + return event_organizers_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_organizers_max_fields_possibleTypes: string[] = ['event_organizers_max_fields'] + export const isevent_organizers_max_fields = (obj?: { __typename?: any } | null): obj is event_organizers_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_max_fields"') + return event_organizers_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_organizers_min_fields_possibleTypes: string[] = ['event_organizers_min_fields'] + export const isevent_organizers_min_fields = (obj?: { __typename?: any } | null): obj is event_organizers_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_min_fields"') + return event_organizers_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_organizers_mutation_response_possibleTypes: string[] = ['event_organizers_mutation_response'] + export const isevent_organizers_mutation_response = (obj?: { __typename?: any } | null): obj is event_organizers_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_mutation_response"') + return event_organizers_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const event_organizers_stddev_fields_possibleTypes: string[] = ['event_organizers_stddev_fields'] + export const isevent_organizers_stddev_fields = (obj?: { __typename?: any } | null): obj is event_organizers_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_stddev_fields"') + return event_organizers_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_organizers_stddev_pop_fields_possibleTypes: string[] = ['event_organizers_stddev_pop_fields'] + export const isevent_organizers_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is event_organizers_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_stddev_pop_fields"') + return event_organizers_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_organizers_stddev_samp_fields_possibleTypes: string[] = ['event_organizers_stddev_samp_fields'] + export const isevent_organizers_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is event_organizers_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_stddev_samp_fields"') + return event_organizers_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_organizers_sum_fields_possibleTypes: string[] = ['event_organizers_sum_fields'] + export const isevent_organizers_sum_fields = (obj?: { __typename?: any } | null): obj is event_organizers_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_sum_fields"') + return event_organizers_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_organizers_var_pop_fields_possibleTypes: string[] = ['event_organizers_var_pop_fields'] + export const isevent_organizers_var_pop_fields = (obj?: { __typename?: any } | null): obj is event_organizers_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_var_pop_fields"') + return event_organizers_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_organizers_var_samp_fields_possibleTypes: string[] = ['event_organizers_var_samp_fields'] + export const isevent_organizers_var_samp_fields = (obj?: { __typename?: any } | null): obj is event_organizers_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_var_samp_fields"') + return event_organizers_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_organizers_variance_fields_possibleTypes: string[] = ['event_organizers_variance_fields'] + export const isevent_organizers_variance_fields = (obj?: { __typename?: any } | null): obj is event_organizers_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_variance_fields"') + return event_organizers_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_players_possibleTypes: string[] = ['event_players'] + export const isevent_players = (obj?: { __typename?: any } | null): obj is event_players => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players"') + return event_players_possibleTypes.includes(obj.__typename) + } + + + + const event_players_aggregate_possibleTypes: string[] = ['event_players_aggregate'] + export const isevent_players_aggregate = (obj?: { __typename?: any } | null): obj is event_players_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_aggregate"') + return event_players_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const event_players_aggregate_fields_possibleTypes: string[] = ['event_players_aggregate_fields'] + export const isevent_players_aggregate_fields = (obj?: { __typename?: any } | null): obj is event_players_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_aggregate_fields"') + return event_players_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_players_avg_fields_possibleTypes: string[] = ['event_players_avg_fields'] + export const isevent_players_avg_fields = (obj?: { __typename?: any } | null): obj is event_players_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_avg_fields"') + return event_players_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_players_max_fields_possibleTypes: string[] = ['event_players_max_fields'] + export const isevent_players_max_fields = (obj?: { __typename?: any } | null): obj is event_players_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_max_fields"') + return event_players_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_players_min_fields_possibleTypes: string[] = ['event_players_min_fields'] + export const isevent_players_min_fields = (obj?: { __typename?: any } | null): obj is event_players_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_min_fields"') + return event_players_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_players_mutation_response_possibleTypes: string[] = ['event_players_mutation_response'] + export const isevent_players_mutation_response = (obj?: { __typename?: any } | null): obj is event_players_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_mutation_response"') + return event_players_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const event_players_stddev_fields_possibleTypes: string[] = ['event_players_stddev_fields'] + export const isevent_players_stddev_fields = (obj?: { __typename?: any } | null): obj is event_players_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_stddev_fields"') + return event_players_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_players_stddev_pop_fields_possibleTypes: string[] = ['event_players_stddev_pop_fields'] + export const isevent_players_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is event_players_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_stddev_pop_fields"') + return event_players_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_players_stddev_samp_fields_possibleTypes: string[] = ['event_players_stddev_samp_fields'] + export const isevent_players_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is event_players_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_stddev_samp_fields"') + return event_players_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_players_sum_fields_possibleTypes: string[] = ['event_players_sum_fields'] + export const isevent_players_sum_fields = (obj?: { __typename?: any } | null): obj is event_players_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_sum_fields"') + return event_players_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_players_var_pop_fields_possibleTypes: string[] = ['event_players_var_pop_fields'] + export const isevent_players_var_pop_fields = (obj?: { __typename?: any } | null): obj is event_players_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_var_pop_fields"') + return event_players_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_players_var_samp_fields_possibleTypes: string[] = ['event_players_var_samp_fields'] + export const isevent_players_var_samp_fields = (obj?: { __typename?: any } | null): obj is event_players_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_var_samp_fields"') + return event_players_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_players_variance_fields_possibleTypes: string[] = ['event_players_variance_fields'] + export const isevent_players_variance_fields = (obj?: { __typename?: any } | null): obj is event_players_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_variance_fields"') + return event_players_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_teams_possibleTypes: string[] = ['event_teams'] + export const isevent_teams = (obj?: { __typename?: any } | null): obj is event_teams => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_teams"') + return event_teams_possibleTypes.includes(obj.__typename) + } + + + + const event_teams_aggregate_possibleTypes: string[] = ['event_teams_aggregate'] + export const isevent_teams_aggregate = (obj?: { __typename?: any } | null): obj is event_teams_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_teams_aggregate"') + return event_teams_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const event_teams_aggregate_fields_possibleTypes: string[] = ['event_teams_aggregate_fields'] + export const isevent_teams_aggregate_fields = (obj?: { __typename?: any } | null): obj is event_teams_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_teams_aggregate_fields"') + return event_teams_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_teams_max_fields_possibleTypes: string[] = ['event_teams_max_fields'] + export const isevent_teams_max_fields = (obj?: { __typename?: any } | null): obj is event_teams_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_teams_max_fields"') + return event_teams_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_teams_min_fields_possibleTypes: string[] = ['event_teams_min_fields'] + export const isevent_teams_min_fields = (obj?: { __typename?: any } | null): obj is event_teams_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_teams_min_fields"') + return event_teams_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_teams_mutation_response_possibleTypes: string[] = ['event_teams_mutation_response'] + export const isevent_teams_mutation_response = (obj?: { __typename?: any } | null): obj is event_teams_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_teams_mutation_response"') + return event_teams_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const event_tournaments_possibleTypes: string[] = ['event_tournaments'] + export const isevent_tournaments = (obj?: { __typename?: any } | null): obj is event_tournaments => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_tournaments"') + return event_tournaments_possibleTypes.includes(obj.__typename) + } + + + + const event_tournaments_aggregate_possibleTypes: string[] = ['event_tournaments_aggregate'] + export const isevent_tournaments_aggregate = (obj?: { __typename?: any } | null): obj is event_tournaments_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_tournaments_aggregate"') + return event_tournaments_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const event_tournaments_aggregate_fields_possibleTypes: string[] = ['event_tournaments_aggregate_fields'] + export const isevent_tournaments_aggregate_fields = (obj?: { __typename?: any } | null): obj is event_tournaments_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_tournaments_aggregate_fields"') + return event_tournaments_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_tournaments_max_fields_possibleTypes: string[] = ['event_tournaments_max_fields'] + export const isevent_tournaments_max_fields = (obj?: { __typename?: any } | null): obj is event_tournaments_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_tournaments_max_fields"') + return event_tournaments_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_tournaments_min_fields_possibleTypes: string[] = ['event_tournaments_min_fields'] + export const isevent_tournaments_min_fields = (obj?: { __typename?: any } | null): obj is event_tournaments_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_tournaments_min_fields"') + return event_tournaments_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_tournaments_mutation_response_possibleTypes: string[] = ['event_tournaments_mutation_response'] + export const isevent_tournaments_mutation_response = (obj?: { __typename?: any } | null): obj is event_tournaments_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_tournaments_mutation_response"') + return event_tournaments_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const events_possibleTypes: string[] = ['events'] + export const isevents = (obj?: { __typename?: any } | null): obj is events => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevents"') + return events_possibleTypes.includes(obj.__typename) + } + + + + const events_aggregate_possibleTypes: string[] = ['events_aggregate'] + export const isevents_aggregate = (obj?: { __typename?: any } | null): obj is events_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevents_aggregate"') + return events_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const events_aggregate_fields_possibleTypes: string[] = ['events_aggregate_fields'] + export const isevents_aggregate_fields = (obj?: { __typename?: any } | null): obj is events_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevents_aggregate_fields"') + return events_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const events_avg_fields_possibleTypes: string[] = ['events_avg_fields'] + export const isevents_avg_fields = (obj?: { __typename?: any } | null): obj is events_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevents_avg_fields"') + return events_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const events_max_fields_possibleTypes: string[] = ['events_max_fields'] + export const isevents_max_fields = (obj?: { __typename?: any } | null): obj is events_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevents_max_fields"') + return events_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const events_min_fields_possibleTypes: string[] = ['events_min_fields'] + export const isevents_min_fields = (obj?: { __typename?: any } | null): obj is events_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevents_min_fields"') + return events_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const events_mutation_response_possibleTypes: string[] = ['events_mutation_response'] + export const isevents_mutation_response = (obj?: { __typename?: any } | null): obj is events_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevents_mutation_response"') + return events_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const events_stddev_fields_possibleTypes: string[] = ['events_stddev_fields'] + export const isevents_stddev_fields = (obj?: { __typename?: any } | null): obj is events_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevents_stddev_fields"') + return events_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const events_stddev_pop_fields_possibleTypes: string[] = ['events_stddev_pop_fields'] + export const isevents_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is events_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevents_stddev_pop_fields"') + return events_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const events_stddev_samp_fields_possibleTypes: string[] = ['events_stddev_samp_fields'] + export const isevents_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is events_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevents_stddev_samp_fields"') + return events_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const events_sum_fields_possibleTypes: string[] = ['events_sum_fields'] + export const isevents_sum_fields = (obj?: { __typename?: any } | null): obj is events_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevents_sum_fields"') + return events_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const events_var_pop_fields_possibleTypes: string[] = ['events_var_pop_fields'] + export const isevents_var_pop_fields = (obj?: { __typename?: any } | null): obj is events_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevents_var_pop_fields"') + return events_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const events_var_samp_fields_possibleTypes: string[] = ['events_var_samp_fields'] + export const isevents_var_samp_fields = (obj?: { __typename?: any } | null): obj is events_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevents_var_samp_fields"') + return events_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const events_variance_fields_possibleTypes: string[] = ['events_variance_fields'] + export const isevents_variance_fields = (obj?: { __typename?: any } | null): obj is events_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevents_variance_fields"') + return events_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const friends_possibleTypes: string[] = ['friends'] + export const isfriends = (obj?: { __typename?: any } | null): obj is friends => { + if (!obj?.__typename) throw new Error('__typename is missing in "isfriends"') + return friends_possibleTypes.includes(obj.__typename) + } + + + + const friends_aggregate_possibleTypes: string[] = ['friends_aggregate'] + export const isfriends_aggregate = (obj?: { __typename?: any } | null): obj is friends_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isfriends_aggregate"') + return friends_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const friends_aggregate_fields_possibleTypes: string[] = ['friends_aggregate_fields'] + export const isfriends_aggregate_fields = (obj?: { __typename?: any } | null): obj is friends_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isfriends_aggregate_fields"') + return friends_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const friends_avg_fields_possibleTypes: string[] = ['friends_avg_fields'] + export const isfriends_avg_fields = (obj?: { __typename?: any } | null): obj is friends_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isfriends_avg_fields"') + return friends_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const friends_max_fields_possibleTypes: string[] = ['friends_max_fields'] + export const isfriends_max_fields = (obj?: { __typename?: any } | null): obj is friends_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isfriends_max_fields"') + return friends_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const friends_min_fields_possibleTypes: string[] = ['friends_min_fields'] + export const isfriends_min_fields = (obj?: { __typename?: any } | null): obj is friends_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isfriends_min_fields"') + return friends_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const friends_mutation_response_possibleTypes: string[] = ['friends_mutation_response'] + export const isfriends_mutation_response = (obj?: { __typename?: any } | null): obj is friends_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isfriends_mutation_response"') + return friends_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const friends_stddev_fields_possibleTypes: string[] = ['friends_stddev_fields'] + export const isfriends_stddev_fields = (obj?: { __typename?: any } | null): obj is friends_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isfriends_stddev_fields"') + return friends_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const friends_stddev_pop_fields_possibleTypes: string[] = ['friends_stddev_pop_fields'] + export const isfriends_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is friends_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isfriends_stddev_pop_fields"') + return friends_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const friends_stddev_samp_fields_possibleTypes: string[] = ['friends_stddev_samp_fields'] + export const isfriends_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is friends_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isfriends_stddev_samp_fields"') + return friends_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const friends_sum_fields_possibleTypes: string[] = ['friends_sum_fields'] + export const isfriends_sum_fields = (obj?: { __typename?: any } | null): obj is friends_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isfriends_sum_fields"') + return friends_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const friends_var_pop_fields_possibleTypes: string[] = ['friends_var_pop_fields'] + export const isfriends_var_pop_fields = (obj?: { __typename?: any } | null): obj is friends_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isfriends_var_pop_fields"') + return friends_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const friends_var_samp_fields_possibleTypes: string[] = ['friends_var_samp_fields'] + export const isfriends_var_samp_fields = (obj?: { __typename?: any } | null): obj is friends_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isfriends_var_samp_fields"') + return friends_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const friends_variance_fields_possibleTypes: string[] = ['friends_variance_fields'] + export const isfriends_variance_fields = (obj?: { __typename?: any } | null): obj is friends_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isfriends_variance_fields"') + return friends_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + 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"') + return game_server_nodes_possibleTypes.includes(obj.__typename) + } + + + + const game_server_nodes_aggregate_possibleTypes: string[] = ['game_server_nodes_aggregate'] + export const isgame_server_nodes_aggregate = (obj?: { __typename?: any } | null): obj is game_server_nodes_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_server_nodes_aggregate"') + return game_server_nodes_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const game_server_nodes_aggregate_fields_possibleTypes: string[] = ['game_server_nodes_aggregate_fields'] + export const isgame_server_nodes_aggregate_fields = (obj?: { __typename?: any } | null): obj is game_server_nodes_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_server_nodes_aggregate_fields"') + return game_server_nodes_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_server_nodes_avg_fields_possibleTypes: string[] = ['game_server_nodes_avg_fields'] + export const isgame_server_nodes_avg_fields = (obj?: { __typename?: any } | null): obj is game_server_nodes_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_server_nodes_avg_fields"') + return game_server_nodes_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_server_nodes_max_fields_possibleTypes: string[] = ['game_server_nodes_max_fields'] + export const isgame_server_nodes_max_fields = (obj?: { __typename?: any } | null): obj is game_server_nodes_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_server_nodes_max_fields"') + return game_server_nodes_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_server_nodes_min_fields_possibleTypes: string[] = ['game_server_nodes_min_fields'] + export const isgame_server_nodes_min_fields = (obj?: { __typename?: any } | null): obj is game_server_nodes_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_server_nodes_min_fields"') + return game_server_nodes_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_server_nodes_mutation_response_possibleTypes: string[] = ['game_server_nodes_mutation_response'] + export const isgame_server_nodes_mutation_response = (obj?: { __typename?: any } | null): obj is game_server_nodes_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_server_nodes_mutation_response"') + return game_server_nodes_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const game_server_nodes_stddev_fields_possibleTypes: string[] = ['game_server_nodes_stddev_fields'] + export const isgame_server_nodes_stddev_fields = (obj?: { __typename?: any } | null): obj is game_server_nodes_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_server_nodes_stddev_fields"') + return game_server_nodes_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_server_nodes_stddev_pop_fields_possibleTypes: string[] = ['game_server_nodes_stddev_pop_fields'] + export const isgame_server_nodes_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is game_server_nodes_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_server_nodes_stddev_pop_fields"') + return game_server_nodes_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_server_nodes_stddev_samp_fields_possibleTypes: string[] = ['game_server_nodes_stddev_samp_fields'] + export const isgame_server_nodes_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is game_server_nodes_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_server_nodes_stddev_samp_fields"') + return game_server_nodes_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_server_nodes_sum_fields_possibleTypes: string[] = ['game_server_nodes_sum_fields'] + export const isgame_server_nodes_sum_fields = (obj?: { __typename?: any } | null): obj is game_server_nodes_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_server_nodes_sum_fields"') + return game_server_nodes_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_server_nodes_var_pop_fields_possibleTypes: string[] = ['game_server_nodes_var_pop_fields'] + export const isgame_server_nodes_var_pop_fields = (obj?: { __typename?: any } | null): obj is game_server_nodes_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_server_nodes_var_pop_fields"') + return game_server_nodes_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_server_nodes_var_samp_fields_possibleTypes: string[] = ['game_server_nodes_var_samp_fields'] + export const isgame_server_nodes_var_samp_fields = (obj?: { __typename?: any } | null): obj is game_server_nodes_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_server_nodes_var_samp_fields"') + return game_server_nodes_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_server_nodes_variance_fields_possibleTypes: string[] = ['game_server_nodes_variance_fields'] + export const isgame_server_nodes_variance_fields = (obj?: { __typename?: any } | null): obj is game_server_nodes_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_server_nodes_variance_fields"') + return game_server_nodes_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_versions_possibleTypes: string[] = ['game_versions'] + export const isgame_versions = (obj?: { __typename?: any } | null): obj is game_versions => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_versions"') + return game_versions_possibleTypes.includes(obj.__typename) + } + + + + const game_versions_aggregate_possibleTypes: string[] = ['game_versions_aggregate'] + export const isgame_versions_aggregate = (obj?: { __typename?: any } | null): obj is game_versions_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_versions_aggregate"') + return game_versions_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const game_versions_aggregate_fields_possibleTypes: string[] = ['game_versions_aggregate_fields'] + export const isgame_versions_aggregate_fields = (obj?: { __typename?: any } | null): obj is game_versions_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_versions_aggregate_fields"') + return game_versions_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_versions_avg_fields_possibleTypes: string[] = ['game_versions_avg_fields'] + export const isgame_versions_avg_fields = (obj?: { __typename?: any } | null): obj is game_versions_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_versions_avg_fields"') + return game_versions_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_versions_max_fields_possibleTypes: string[] = ['game_versions_max_fields'] + export const isgame_versions_max_fields = (obj?: { __typename?: any } | null): obj is game_versions_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_versions_max_fields"') + return game_versions_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_versions_min_fields_possibleTypes: string[] = ['game_versions_min_fields'] + export const isgame_versions_min_fields = (obj?: { __typename?: any } | null): obj is game_versions_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_versions_min_fields"') + return game_versions_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_versions_mutation_response_possibleTypes: string[] = ['game_versions_mutation_response'] + export const isgame_versions_mutation_response = (obj?: { __typename?: any } | null): obj is game_versions_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_versions_mutation_response"') + return game_versions_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const game_versions_stddev_fields_possibleTypes: string[] = ['game_versions_stddev_fields'] + export const isgame_versions_stddev_fields = (obj?: { __typename?: any } | null): obj is game_versions_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_versions_stddev_fields"') + return game_versions_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_versions_stddev_pop_fields_possibleTypes: string[] = ['game_versions_stddev_pop_fields'] + export const isgame_versions_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is game_versions_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_versions_stddev_pop_fields"') + return game_versions_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_versions_stddev_samp_fields_possibleTypes: string[] = ['game_versions_stddev_samp_fields'] + export const isgame_versions_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is game_versions_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_versions_stddev_samp_fields"') + return game_versions_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_versions_sum_fields_possibleTypes: string[] = ['game_versions_sum_fields'] + export const isgame_versions_sum_fields = (obj?: { __typename?: any } | null): obj is game_versions_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_versions_sum_fields"') + return game_versions_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_versions_var_pop_fields_possibleTypes: string[] = ['game_versions_var_pop_fields'] + export const isgame_versions_var_pop_fields = (obj?: { __typename?: any } | null): obj is game_versions_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_versions_var_pop_fields"') + return game_versions_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_versions_var_samp_fields_possibleTypes: string[] = ['game_versions_var_samp_fields'] + export const isgame_versions_var_samp_fields = (obj?: { __typename?: any } | null): obj is game_versions_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_versions_var_samp_fields"') + return game_versions_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const game_versions_variance_fields_possibleTypes: string[] = ['game_versions_variance_fields'] + export const isgame_versions_variance_fields = (obj?: { __typename?: any } | null): obj is game_versions_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgame_versions_variance_fields"') + return game_versions_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const gamedata_signature_validations_possibleTypes: string[] = ['gamedata_signature_validations'] + export const isgamedata_signature_validations = (obj?: { __typename?: any } | null): obj is gamedata_signature_validations => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgamedata_signature_validations"') + return gamedata_signature_validations_possibleTypes.includes(obj.__typename) + } + + + + const gamedata_signature_validations_aggregate_possibleTypes: string[] = ['gamedata_signature_validations_aggregate'] + export const isgamedata_signature_validations_aggregate = (obj?: { __typename?: any } | null): obj is gamedata_signature_validations_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgamedata_signature_validations_aggregate"') + return gamedata_signature_validations_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const gamedata_signature_validations_aggregate_fields_possibleTypes: string[] = ['gamedata_signature_validations_aggregate_fields'] + export const isgamedata_signature_validations_aggregate_fields = (obj?: { __typename?: any } | null): obj is gamedata_signature_validations_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgamedata_signature_validations_aggregate_fields"') + return gamedata_signature_validations_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const gamedata_signature_validations_avg_fields_possibleTypes: string[] = ['gamedata_signature_validations_avg_fields'] + export const isgamedata_signature_validations_avg_fields = (obj?: { __typename?: any } | null): obj is gamedata_signature_validations_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgamedata_signature_validations_avg_fields"') + return gamedata_signature_validations_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const gamedata_signature_validations_max_fields_possibleTypes: string[] = ['gamedata_signature_validations_max_fields'] + export const isgamedata_signature_validations_max_fields = (obj?: { __typename?: any } | null): obj is gamedata_signature_validations_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgamedata_signature_validations_max_fields"') + return gamedata_signature_validations_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const gamedata_signature_validations_min_fields_possibleTypes: string[] = ['gamedata_signature_validations_min_fields'] + export const isgamedata_signature_validations_min_fields = (obj?: { __typename?: any } | null): obj is gamedata_signature_validations_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgamedata_signature_validations_min_fields"') + return gamedata_signature_validations_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const gamedata_signature_validations_mutation_response_possibleTypes: string[] = ['gamedata_signature_validations_mutation_response'] + export const isgamedata_signature_validations_mutation_response = (obj?: { __typename?: any } | null): obj is gamedata_signature_validations_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgamedata_signature_validations_mutation_response"') + return gamedata_signature_validations_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const gamedata_signature_validations_stddev_fields_possibleTypes: string[] = ['gamedata_signature_validations_stddev_fields'] + export const isgamedata_signature_validations_stddev_fields = (obj?: { __typename?: any } | null): obj is gamedata_signature_validations_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgamedata_signature_validations_stddev_fields"') + return gamedata_signature_validations_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const gamedata_signature_validations_stddev_pop_fields_possibleTypes: string[] = ['gamedata_signature_validations_stddev_pop_fields'] + export const isgamedata_signature_validations_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is gamedata_signature_validations_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgamedata_signature_validations_stddev_pop_fields"') + return gamedata_signature_validations_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const gamedata_signature_validations_stddev_samp_fields_possibleTypes: string[] = ['gamedata_signature_validations_stddev_samp_fields'] + export const isgamedata_signature_validations_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is gamedata_signature_validations_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgamedata_signature_validations_stddev_samp_fields"') + return gamedata_signature_validations_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const gamedata_signature_validations_sum_fields_possibleTypes: string[] = ['gamedata_signature_validations_sum_fields'] + export const isgamedata_signature_validations_sum_fields = (obj?: { __typename?: any } | null): obj is gamedata_signature_validations_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgamedata_signature_validations_sum_fields"') + return gamedata_signature_validations_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const gamedata_signature_validations_var_pop_fields_possibleTypes: string[] = ['gamedata_signature_validations_var_pop_fields'] + export const isgamedata_signature_validations_var_pop_fields = (obj?: { __typename?: any } | null): obj is gamedata_signature_validations_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgamedata_signature_validations_var_pop_fields"') + return gamedata_signature_validations_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const gamedata_signature_validations_var_samp_fields_possibleTypes: string[] = ['gamedata_signature_validations_var_samp_fields'] + export const isgamedata_signature_validations_var_samp_fields = (obj?: { __typename?: any } | null): obj is gamedata_signature_validations_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgamedata_signature_validations_var_samp_fields"') + return gamedata_signature_validations_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const gamedata_signature_validations_variance_fields_possibleTypes: string[] = ['gamedata_signature_validations_variance_fields'] + export const isgamedata_signature_validations_variance_fields = (obj?: { __typename?: any } | null): obj is gamedata_signature_validations_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isgamedata_signature_validations_variance_fields"') + return gamedata_signature_validations_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const leaderboard_entries_possibleTypes: string[] = ['leaderboard_entries'] + export const isleaderboard_entries = (obj?: { __typename?: any } | null): obj is leaderboard_entries => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleaderboard_entries"') + return leaderboard_entries_possibleTypes.includes(obj.__typename) + } + + + + const leaderboard_entries_aggregate_possibleTypes: string[] = ['leaderboard_entries_aggregate'] + export const isleaderboard_entries_aggregate = (obj?: { __typename?: any } | null): obj is leaderboard_entries_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleaderboard_entries_aggregate"') + return leaderboard_entries_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const leaderboard_entries_aggregate_fields_possibleTypes: string[] = ['leaderboard_entries_aggregate_fields'] + export const isleaderboard_entries_aggregate_fields = (obj?: { __typename?: any } | null): obj is leaderboard_entries_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleaderboard_entries_aggregate_fields"') + return leaderboard_entries_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const leaderboard_entries_avg_fields_possibleTypes: string[] = ['leaderboard_entries_avg_fields'] + export const isleaderboard_entries_avg_fields = (obj?: { __typename?: any } | null): obj is leaderboard_entries_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleaderboard_entries_avg_fields"') + return leaderboard_entries_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const leaderboard_entries_max_fields_possibleTypes: string[] = ['leaderboard_entries_max_fields'] + export const isleaderboard_entries_max_fields = (obj?: { __typename?: any } | null): obj is leaderboard_entries_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleaderboard_entries_max_fields"') + return leaderboard_entries_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const leaderboard_entries_min_fields_possibleTypes: string[] = ['leaderboard_entries_min_fields'] + export const isleaderboard_entries_min_fields = (obj?: { __typename?: any } | null): obj is leaderboard_entries_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleaderboard_entries_min_fields"') + return leaderboard_entries_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const leaderboard_entries_mutation_response_possibleTypes: string[] = ['leaderboard_entries_mutation_response'] + export const isleaderboard_entries_mutation_response = (obj?: { __typename?: any } | null): obj is leaderboard_entries_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleaderboard_entries_mutation_response"') + return leaderboard_entries_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const leaderboard_entries_stddev_fields_possibleTypes: string[] = ['leaderboard_entries_stddev_fields'] + export const isleaderboard_entries_stddev_fields = (obj?: { __typename?: any } | null): obj is leaderboard_entries_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleaderboard_entries_stddev_fields"') + return leaderboard_entries_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const leaderboard_entries_stddev_pop_fields_possibleTypes: string[] = ['leaderboard_entries_stddev_pop_fields'] + export const isleaderboard_entries_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is leaderboard_entries_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleaderboard_entries_stddev_pop_fields"') + return leaderboard_entries_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const leaderboard_entries_stddev_samp_fields_possibleTypes: string[] = ['leaderboard_entries_stddev_samp_fields'] + export const isleaderboard_entries_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is leaderboard_entries_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleaderboard_entries_stddev_samp_fields"') + return leaderboard_entries_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const leaderboard_entries_sum_fields_possibleTypes: string[] = ['leaderboard_entries_sum_fields'] + export const isleaderboard_entries_sum_fields = (obj?: { __typename?: any } | null): obj is leaderboard_entries_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleaderboard_entries_sum_fields"') + return leaderboard_entries_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const leaderboard_entries_var_pop_fields_possibleTypes: string[] = ['leaderboard_entries_var_pop_fields'] + export const isleaderboard_entries_var_pop_fields = (obj?: { __typename?: any } | null): obj is leaderboard_entries_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleaderboard_entries_var_pop_fields"') + return leaderboard_entries_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const leaderboard_entries_var_samp_fields_possibleTypes: string[] = ['leaderboard_entries_var_samp_fields'] + export const isleaderboard_entries_var_samp_fields = (obj?: { __typename?: any } | null): obj is leaderboard_entries_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleaderboard_entries_var_samp_fields"') + return leaderboard_entries_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const leaderboard_entries_variance_fields_possibleTypes: string[] = ['leaderboard_entries_variance_fields'] + export const isleaderboard_entries_variance_fields = (obj?: { __typename?: any } | null): obj is leaderboard_entries_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleaderboard_entries_variance_fields"') + return leaderboard_entries_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_divisions_possibleTypes: string[] = ['league_divisions'] + export const isleague_divisions = (obj?: { __typename?: any } | null): obj is league_divisions => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_divisions"') + return league_divisions_possibleTypes.includes(obj.__typename) + } + + + + const league_divisions_aggregate_possibleTypes: string[] = ['league_divisions_aggregate'] + export const isleague_divisions_aggregate = (obj?: { __typename?: any } | null): obj is league_divisions_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_divisions_aggregate"') + return league_divisions_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const league_divisions_aggregate_fields_possibleTypes: string[] = ['league_divisions_aggregate_fields'] + export const isleague_divisions_aggregate_fields = (obj?: { __typename?: any } | null): obj is league_divisions_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_divisions_aggregate_fields"') + return league_divisions_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_divisions_avg_fields_possibleTypes: string[] = ['league_divisions_avg_fields'] + export const isleague_divisions_avg_fields = (obj?: { __typename?: any } | null): obj is league_divisions_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_divisions_avg_fields"') + return league_divisions_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_divisions_max_fields_possibleTypes: string[] = ['league_divisions_max_fields'] + export const isleague_divisions_max_fields = (obj?: { __typename?: any } | null): obj is league_divisions_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_divisions_max_fields"') + return league_divisions_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_divisions_min_fields_possibleTypes: string[] = ['league_divisions_min_fields'] + export const isleague_divisions_min_fields = (obj?: { __typename?: any } | null): obj is league_divisions_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_divisions_min_fields"') + return league_divisions_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_divisions_mutation_response_possibleTypes: string[] = ['league_divisions_mutation_response'] + export const isleague_divisions_mutation_response = (obj?: { __typename?: any } | null): obj is league_divisions_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_divisions_mutation_response"') + return league_divisions_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const league_divisions_stddev_fields_possibleTypes: string[] = ['league_divisions_stddev_fields'] + export const isleague_divisions_stddev_fields = (obj?: { __typename?: any } | null): obj is league_divisions_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_divisions_stddev_fields"') + return league_divisions_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_divisions_stddev_pop_fields_possibleTypes: string[] = ['league_divisions_stddev_pop_fields'] + export const isleague_divisions_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is league_divisions_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_divisions_stddev_pop_fields"') + return league_divisions_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_divisions_stddev_samp_fields_possibleTypes: string[] = ['league_divisions_stddev_samp_fields'] + export const isleague_divisions_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is league_divisions_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_divisions_stddev_samp_fields"') + return league_divisions_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_divisions_sum_fields_possibleTypes: string[] = ['league_divisions_sum_fields'] + export const isleague_divisions_sum_fields = (obj?: { __typename?: any } | null): obj is league_divisions_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_divisions_sum_fields"') + return league_divisions_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_divisions_var_pop_fields_possibleTypes: string[] = ['league_divisions_var_pop_fields'] + export const isleague_divisions_var_pop_fields = (obj?: { __typename?: any } | null): obj is league_divisions_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_divisions_var_pop_fields"') + return league_divisions_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_divisions_var_samp_fields_possibleTypes: string[] = ['league_divisions_var_samp_fields'] + export const isleague_divisions_var_samp_fields = (obj?: { __typename?: any } | null): obj is league_divisions_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_divisions_var_samp_fields"') + return league_divisions_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_divisions_variance_fields_possibleTypes: string[] = ['league_divisions_variance_fields'] + export const isleague_divisions_variance_fields = (obj?: { __typename?: any } | null): obj is league_divisions_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_divisions_variance_fields"') + return league_divisions_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_match_weeks_possibleTypes: string[] = ['league_match_weeks'] + export const isleague_match_weeks = (obj?: { __typename?: any } | null): obj is league_match_weeks => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_match_weeks"') + return league_match_weeks_possibleTypes.includes(obj.__typename) + } + + + + const league_match_weeks_aggregate_possibleTypes: string[] = ['league_match_weeks_aggregate'] + export const isleague_match_weeks_aggregate = (obj?: { __typename?: any } | null): obj is league_match_weeks_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_match_weeks_aggregate"') + return league_match_weeks_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const league_match_weeks_aggregate_fields_possibleTypes: string[] = ['league_match_weeks_aggregate_fields'] + export const isleague_match_weeks_aggregate_fields = (obj?: { __typename?: any } | null): obj is league_match_weeks_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_match_weeks_aggregate_fields"') + return league_match_weeks_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_match_weeks_avg_fields_possibleTypes: string[] = ['league_match_weeks_avg_fields'] + export const isleague_match_weeks_avg_fields = (obj?: { __typename?: any } | null): obj is league_match_weeks_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_match_weeks_avg_fields"') + return league_match_weeks_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_match_weeks_max_fields_possibleTypes: string[] = ['league_match_weeks_max_fields'] + export const isleague_match_weeks_max_fields = (obj?: { __typename?: any } | null): obj is league_match_weeks_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_match_weeks_max_fields"') + return league_match_weeks_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_match_weeks_min_fields_possibleTypes: string[] = ['league_match_weeks_min_fields'] + export const isleague_match_weeks_min_fields = (obj?: { __typename?: any } | null): obj is league_match_weeks_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_match_weeks_min_fields"') + return league_match_weeks_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_match_weeks_mutation_response_possibleTypes: string[] = ['league_match_weeks_mutation_response'] + export const isleague_match_weeks_mutation_response = (obj?: { __typename?: any } | null): obj is league_match_weeks_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_match_weeks_mutation_response"') + return league_match_weeks_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const league_match_weeks_stddev_fields_possibleTypes: string[] = ['league_match_weeks_stddev_fields'] + export const isleague_match_weeks_stddev_fields = (obj?: { __typename?: any } | null): obj is league_match_weeks_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_match_weeks_stddev_fields"') + return league_match_weeks_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_match_weeks_stddev_pop_fields_possibleTypes: string[] = ['league_match_weeks_stddev_pop_fields'] + export const isleague_match_weeks_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is league_match_weeks_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_match_weeks_stddev_pop_fields"') + return league_match_weeks_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_match_weeks_stddev_samp_fields_possibleTypes: string[] = ['league_match_weeks_stddev_samp_fields'] + export const isleague_match_weeks_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is league_match_weeks_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_match_weeks_stddev_samp_fields"') + return league_match_weeks_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_match_weeks_sum_fields_possibleTypes: string[] = ['league_match_weeks_sum_fields'] + export const isleague_match_weeks_sum_fields = (obj?: { __typename?: any } | null): obj is league_match_weeks_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_match_weeks_sum_fields"') + return league_match_weeks_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_match_weeks_var_pop_fields_possibleTypes: string[] = ['league_match_weeks_var_pop_fields'] + export const isleague_match_weeks_var_pop_fields = (obj?: { __typename?: any } | null): obj is league_match_weeks_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_match_weeks_var_pop_fields"') + return league_match_weeks_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_match_weeks_var_samp_fields_possibleTypes: string[] = ['league_match_weeks_var_samp_fields'] + export const isleague_match_weeks_var_samp_fields = (obj?: { __typename?: any } | null): obj is league_match_weeks_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_match_weeks_var_samp_fields"') + return league_match_weeks_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_match_weeks_variance_fields_possibleTypes: string[] = ['league_match_weeks_variance_fields'] + export const isleague_match_weeks_variance_fields = (obj?: { __typename?: any } | null): obj is league_match_weeks_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_match_weeks_variance_fields"') + return league_match_weeks_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_relegation_playoffs_possibleTypes: string[] = ['league_relegation_playoffs'] + export const isleague_relegation_playoffs = (obj?: { __typename?: any } | null): obj is league_relegation_playoffs => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_relegation_playoffs"') + return league_relegation_playoffs_possibleTypes.includes(obj.__typename) + } + + + + const league_relegation_playoffs_aggregate_possibleTypes: string[] = ['league_relegation_playoffs_aggregate'] + export const isleague_relegation_playoffs_aggregate = (obj?: { __typename?: any } | null): obj is league_relegation_playoffs_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_relegation_playoffs_aggregate"') + return league_relegation_playoffs_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const league_relegation_playoffs_aggregate_fields_possibleTypes: string[] = ['league_relegation_playoffs_aggregate_fields'] + export const isleague_relegation_playoffs_aggregate_fields = (obj?: { __typename?: any } | null): obj is league_relegation_playoffs_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_relegation_playoffs_aggregate_fields"') + return league_relegation_playoffs_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_relegation_playoffs_avg_fields_possibleTypes: string[] = ['league_relegation_playoffs_avg_fields'] + export const isleague_relegation_playoffs_avg_fields = (obj?: { __typename?: any } | null): obj is league_relegation_playoffs_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_relegation_playoffs_avg_fields"') + return league_relegation_playoffs_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_relegation_playoffs_max_fields_possibleTypes: string[] = ['league_relegation_playoffs_max_fields'] + export const isleague_relegation_playoffs_max_fields = (obj?: { __typename?: any } | null): obj is league_relegation_playoffs_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_relegation_playoffs_max_fields"') + return league_relegation_playoffs_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_relegation_playoffs_min_fields_possibleTypes: string[] = ['league_relegation_playoffs_min_fields'] + export const isleague_relegation_playoffs_min_fields = (obj?: { __typename?: any } | null): obj is league_relegation_playoffs_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_relegation_playoffs_min_fields"') + return league_relegation_playoffs_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_relegation_playoffs_mutation_response_possibleTypes: string[] = ['league_relegation_playoffs_mutation_response'] + export const isleague_relegation_playoffs_mutation_response = (obj?: { __typename?: any } | null): obj is league_relegation_playoffs_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_relegation_playoffs_mutation_response"') + return league_relegation_playoffs_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const league_relegation_playoffs_stddev_fields_possibleTypes: string[] = ['league_relegation_playoffs_stddev_fields'] + export const isleague_relegation_playoffs_stddev_fields = (obj?: { __typename?: any } | null): obj is league_relegation_playoffs_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_relegation_playoffs_stddev_fields"') + return league_relegation_playoffs_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_relegation_playoffs_stddev_pop_fields_possibleTypes: string[] = ['league_relegation_playoffs_stddev_pop_fields'] + export const isleague_relegation_playoffs_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is league_relegation_playoffs_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_relegation_playoffs_stddev_pop_fields"') + return league_relegation_playoffs_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_relegation_playoffs_stddev_samp_fields_possibleTypes: string[] = ['league_relegation_playoffs_stddev_samp_fields'] + export const isleague_relegation_playoffs_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is league_relegation_playoffs_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_relegation_playoffs_stddev_samp_fields"') + return league_relegation_playoffs_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_relegation_playoffs_sum_fields_possibleTypes: string[] = ['league_relegation_playoffs_sum_fields'] + export const isleague_relegation_playoffs_sum_fields = (obj?: { __typename?: any } | null): obj is league_relegation_playoffs_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_relegation_playoffs_sum_fields"') + return league_relegation_playoffs_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_relegation_playoffs_var_pop_fields_possibleTypes: string[] = ['league_relegation_playoffs_var_pop_fields'] + export const isleague_relegation_playoffs_var_pop_fields = (obj?: { __typename?: any } | null): obj is league_relegation_playoffs_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_relegation_playoffs_var_pop_fields"') + return league_relegation_playoffs_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_relegation_playoffs_var_samp_fields_possibleTypes: string[] = ['league_relegation_playoffs_var_samp_fields'] + export const isleague_relegation_playoffs_var_samp_fields = (obj?: { __typename?: any } | null): obj is league_relegation_playoffs_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_relegation_playoffs_var_samp_fields"') + return league_relegation_playoffs_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_relegation_playoffs_variance_fields_possibleTypes: string[] = ['league_relegation_playoffs_variance_fields'] + export const isleague_relegation_playoffs_variance_fields = (obj?: { __typename?: any } | null): obj is league_relegation_playoffs_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_relegation_playoffs_variance_fields"') + return league_relegation_playoffs_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_scheduling_proposals_possibleTypes: string[] = ['league_scheduling_proposals'] + export const isleague_scheduling_proposals = (obj?: { __typename?: any } | null): obj is league_scheduling_proposals => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_scheduling_proposals"') + return league_scheduling_proposals_possibleTypes.includes(obj.__typename) + } + + + + const league_scheduling_proposals_aggregate_possibleTypes: string[] = ['league_scheduling_proposals_aggregate'] + export const isleague_scheduling_proposals_aggregate = (obj?: { __typename?: any } | null): obj is league_scheduling_proposals_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_scheduling_proposals_aggregate"') + return league_scheduling_proposals_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const league_scheduling_proposals_aggregate_fields_possibleTypes: string[] = ['league_scheduling_proposals_aggregate_fields'] + export const isleague_scheduling_proposals_aggregate_fields = (obj?: { __typename?: any } | null): obj is league_scheduling_proposals_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_scheduling_proposals_aggregate_fields"') + return league_scheduling_proposals_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_scheduling_proposals_avg_fields_possibleTypes: string[] = ['league_scheduling_proposals_avg_fields'] + export const isleague_scheduling_proposals_avg_fields = (obj?: { __typename?: any } | null): obj is league_scheduling_proposals_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_scheduling_proposals_avg_fields"') + return league_scheduling_proposals_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_scheduling_proposals_max_fields_possibleTypes: string[] = ['league_scheduling_proposals_max_fields'] + export const isleague_scheduling_proposals_max_fields = (obj?: { __typename?: any } | null): obj is league_scheduling_proposals_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_scheduling_proposals_max_fields"') + return league_scheduling_proposals_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_scheduling_proposals_min_fields_possibleTypes: string[] = ['league_scheduling_proposals_min_fields'] + export const isleague_scheduling_proposals_min_fields = (obj?: { __typename?: any } | null): obj is league_scheduling_proposals_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_scheduling_proposals_min_fields"') + return league_scheduling_proposals_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_scheduling_proposals_mutation_response_possibleTypes: string[] = ['league_scheduling_proposals_mutation_response'] + export const isleague_scheduling_proposals_mutation_response = (obj?: { __typename?: any } | null): obj is league_scheduling_proposals_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_scheduling_proposals_mutation_response"') + return league_scheduling_proposals_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const league_scheduling_proposals_stddev_fields_possibleTypes: string[] = ['league_scheduling_proposals_stddev_fields'] + export const isleague_scheduling_proposals_stddev_fields = (obj?: { __typename?: any } | null): obj is league_scheduling_proposals_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_scheduling_proposals_stddev_fields"') + return league_scheduling_proposals_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_scheduling_proposals_stddev_pop_fields_possibleTypes: string[] = ['league_scheduling_proposals_stddev_pop_fields'] + export const isleague_scheduling_proposals_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is league_scheduling_proposals_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_scheduling_proposals_stddev_pop_fields"') + return league_scheduling_proposals_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_scheduling_proposals_stddev_samp_fields_possibleTypes: string[] = ['league_scheduling_proposals_stddev_samp_fields'] + export const isleague_scheduling_proposals_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is league_scheduling_proposals_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_scheduling_proposals_stddev_samp_fields"') + return league_scheduling_proposals_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_scheduling_proposals_sum_fields_possibleTypes: string[] = ['league_scheduling_proposals_sum_fields'] + export const isleague_scheduling_proposals_sum_fields = (obj?: { __typename?: any } | null): obj is league_scheduling_proposals_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_scheduling_proposals_sum_fields"') + return league_scheduling_proposals_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_scheduling_proposals_var_pop_fields_possibleTypes: string[] = ['league_scheduling_proposals_var_pop_fields'] + export const isleague_scheduling_proposals_var_pop_fields = (obj?: { __typename?: any } | null): obj is league_scheduling_proposals_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_scheduling_proposals_var_pop_fields"') + return league_scheduling_proposals_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_scheduling_proposals_var_samp_fields_possibleTypes: string[] = ['league_scheduling_proposals_var_samp_fields'] + export const isleague_scheduling_proposals_var_samp_fields = (obj?: { __typename?: any } | null): obj is league_scheduling_proposals_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_scheduling_proposals_var_samp_fields"') + return league_scheduling_proposals_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_scheduling_proposals_variance_fields_possibleTypes: string[] = ['league_scheduling_proposals_variance_fields'] + export const isleague_scheduling_proposals_variance_fields = (obj?: { __typename?: any } | null): obj is league_scheduling_proposals_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_scheduling_proposals_variance_fields"') + return league_scheduling_proposals_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_season_divisions_possibleTypes: string[] = ['league_season_divisions'] + export const isleague_season_divisions = (obj?: { __typename?: any } | null): obj is league_season_divisions => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_season_divisions"') + return league_season_divisions_possibleTypes.includes(obj.__typename) + } + + + + const league_season_divisions_aggregate_possibleTypes: string[] = ['league_season_divisions_aggregate'] + export const isleague_season_divisions_aggregate = (obj?: { __typename?: any } | null): obj is league_season_divisions_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_season_divisions_aggregate"') + return league_season_divisions_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const league_season_divisions_aggregate_fields_possibleTypes: string[] = ['league_season_divisions_aggregate_fields'] + export const isleague_season_divisions_aggregate_fields = (obj?: { __typename?: any } | null): obj is league_season_divisions_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_season_divisions_aggregate_fields"') + return league_season_divisions_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_season_divisions_max_fields_possibleTypes: string[] = ['league_season_divisions_max_fields'] + export const isleague_season_divisions_max_fields = (obj?: { __typename?: any } | null): obj is league_season_divisions_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_season_divisions_max_fields"') + return league_season_divisions_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_season_divisions_min_fields_possibleTypes: string[] = ['league_season_divisions_min_fields'] + export const isleague_season_divisions_min_fields = (obj?: { __typename?: any } | null): obj is league_season_divisions_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_season_divisions_min_fields"') + return league_season_divisions_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_season_divisions_mutation_response_possibleTypes: string[] = ['league_season_divisions_mutation_response'] + export const isleague_season_divisions_mutation_response = (obj?: { __typename?: any } | null): obj is league_season_divisions_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_season_divisions_mutation_response"') + return league_season_divisions_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const league_seasons_possibleTypes: string[] = ['league_seasons'] + export const isleague_seasons = (obj?: { __typename?: any } | null): obj is league_seasons => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_seasons"') + return league_seasons_possibleTypes.includes(obj.__typename) + } + + + + const league_seasons_aggregate_possibleTypes: string[] = ['league_seasons_aggregate'] + export const isleague_seasons_aggregate = (obj?: { __typename?: any } | null): obj is league_seasons_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_seasons_aggregate"') + return league_seasons_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const league_seasons_aggregate_fields_possibleTypes: string[] = ['league_seasons_aggregate_fields'] + export const isleague_seasons_aggregate_fields = (obj?: { __typename?: any } | null): obj is league_seasons_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_seasons_aggregate_fields"') + return league_seasons_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_seasons_avg_fields_possibleTypes: string[] = ['league_seasons_avg_fields'] + export const isleague_seasons_avg_fields = (obj?: { __typename?: any } | null): obj is league_seasons_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_seasons_avg_fields"') + return league_seasons_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_seasons_max_fields_possibleTypes: string[] = ['league_seasons_max_fields'] + export const isleague_seasons_max_fields = (obj?: { __typename?: any } | null): obj is league_seasons_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_seasons_max_fields"') + return league_seasons_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_seasons_min_fields_possibleTypes: string[] = ['league_seasons_min_fields'] + export const isleague_seasons_min_fields = (obj?: { __typename?: any } | null): obj is league_seasons_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_seasons_min_fields"') + return league_seasons_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_seasons_mutation_response_possibleTypes: string[] = ['league_seasons_mutation_response'] + export const isleague_seasons_mutation_response = (obj?: { __typename?: any } | null): obj is league_seasons_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_seasons_mutation_response"') + return league_seasons_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const league_seasons_stddev_fields_possibleTypes: string[] = ['league_seasons_stddev_fields'] + export const isleague_seasons_stddev_fields = (obj?: { __typename?: any } | null): obj is league_seasons_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_seasons_stddev_fields"') + return league_seasons_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_seasons_stddev_pop_fields_possibleTypes: string[] = ['league_seasons_stddev_pop_fields'] + export const isleague_seasons_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is league_seasons_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_seasons_stddev_pop_fields"') + return league_seasons_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_seasons_stddev_samp_fields_possibleTypes: string[] = ['league_seasons_stddev_samp_fields'] + export const isleague_seasons_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is league_seasons_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_seasons_stddev_samp_fields"') + return league_seasons_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_seasons_sum_fields_possibleTypes: string[] = ['league_seasons_sum_fields'] + export const isleague_seasons_sum_fields = (obj?: { __typename?: any } | null): obj is league_seasons_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_seasons_sum_fields"') + return league_seasons_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_seasons_var_pop_fields_possibleTypes: string[] = ['league_seasons_var_pop_fields'] + export const isleague_seasons_var_pop_fields = (obj?: { __typename?: any } | null): obj is league_seasons_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_seasons_var_pop_fields"') + return league_seasons_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_seasons_var_samp_fields_possibleTypes: string[] = ['league_seasons_var_samp_fields'] + export const isleague_seasons_var_samp_fields = (obj?: { __typename?: any } | null): obj is league_seasons_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_seasons_var_samp_fields"') + return league_seasons_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_seasons_variance_fields_possibleTypes: string[] = ['league_seasons_variance_fields'] + export const isleague_seasons_variance_fields = (obj?: { __typename?: any } | null): obj is league_seasons_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_seasons_variance_fields"') + return league_seasons_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_team_movements_possibleTypes: string[] = ['league_team_movements'] + export const isleague_team_movements = (obj?: { __typename?: any } | null): obj is league_team_movements => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_movements"') + return league_team_movements_possibleTypes.includes(obj.__typename) + } + + + + const league_team_movements_aggregate_possibleTypes: string[] = ['league_team_movements_aggregate'] + export const isleague_team_movements_aggregate = (obj?: { __typename?: any } | null): obj is league_team_movements_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_movements_aggregate"') + return league_team_movements_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const league_team_movements_aggregate_fields_possibleTypes: string[] = ['league_team_movements_aggregate_fields'] + export const isleague_team_movements_aggregate_fields = (obj?: { __typename?: any } | null): obj is league_team_movements_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_movements_aggregate_fields"') + return league_team_movements_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_team_movements_avg_fields_possibleTypes: string[] = ['league_team_movements_avg_fields'] + export const isleague_team_movements_avg_fields = (obj?: { __typename?: any } | null): obj is league_team_movements_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_movements_avg_fields"') + return league_team_movements_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_team_movements_max_fields_possibleTypes: string[] = ['league_team_movements_max_fields'] + export const isleague_team_movements_max_fields = (obj?: { __typename?: any } | null): obj is league_team_movements_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_movements_max_fields"') + return league_team_movements_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_team_movements_min_fields_possibleTypes: string[] = ['league_team_movements_min_fields'] + export const isleague_team_movements_min_fields = (obj?: { __typename?: any } | null): obj is league_team_movements_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_movements_min_fields"') + return league_team_movements_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_team_movements_mutation_response_possibleTypes: string[] = ['league_team_movements_mutation_response'] + export const isleague_team_movements_mutation_response = (obj?: { __typename?: any } | null): obj is league_team_movements_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_movements_mutation_response"') + return league_team_movements_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const league_team_movements_stddev_fields_possibleTypes: string[] = ['league_team_movements_stddev_fields'] + export const isleague_team_movements_stddev_fields = (obj?: { __typename?: any } | null): obj is league_team_movements_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_movements_stddev_fields"') + return league_team_movements_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_team_movements_stddev_pop_fields_possibleTypes: string[] = ['league_team_movements_stddev_pop_fields'] + export const isleague_team_movements_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is league_team_movements_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_movements_stddev_pop_fields"') + return league_team_movements_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_team_movements_stddev_samp_fields_possibleTypes: string[] = ['league_team_movements_stddev_samp_fields'] + export const isleague_team_movements_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is league_team_movements_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_movements_stddev_samp_fields"') + return league_team_movements_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_team_movements_sum_fields_possibleTypes: string[] = ['league_team_movements_sum_fields'] + export const isleague_team_movements_sum_fields = (obj?: { __typename?: any } | null): obj is league_team_movements_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_movements_sum_fields"') + return league_team_movements_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_team_movements_var_pop_fields_possibleTypes: string[] = ['league_team_movements_var_pop_fields'] + export const isleague_team_movements_var_pop_fields = (obj?: { __typename?: any } | null): obj is league_team_movements_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_movements_var_pop_fields"') + return league_team_movements_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_team_movements_var_samp_fields_possibleTypes: string[] = ['league_team_movements_var_samp_fields'] + export const isleague_team_movements_var_samp_fields = (obj?: { __typename?: any } | null): obj is league_team_movements_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_movements_var_samp_fields"') + return league_team_movements_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_team_movements_variance_fields_possibleTypes: string[] = ['league_team_movements_variance_fields'] + export const isleague_team_movements_variance_fields = (obj?: { __typename?: any } | null): obj is league_team_movements_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_movements_variance_fields"') + return league_team_movements_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_team_rosters_possibleTypes: string[] = ['league_team_rosters'] + export const isleague_team_rosters = (obj?: { __typename?: any } | null): obj is league_team_rosters => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_rosters"') + return league_team_rosters_possibleTypes.includes(obj.__typename) + } + + + + const league_team_rosters_aggregate_possibleTypes: string[] = ['league_team_rosters_aggregate'] + export const isleague_team_rosters_aggregate = (obj?: { __typename?: any } | null): obj is league_team_rosters_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_rosters_aggregate"') + return league_team_rosters_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const league_team_rosters_aggregate_fields_possibleTypes: string[] = ['league_team_rosters_aggregate_fields'] + export const isleague_team_rosters_aggregate_fields = (obj?: { __typename?: any } | null): obj is league_team_rosters_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_rosters_aggregate_fields"') + return league_team_rosters_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_team_rosters_avg_fields_possibleTypes: string[] = ['league_team_rosters_avg_fields'] + export const isleague_team_rosters_avg_fields = (obj?: { __typename?: any } | null): obj is league_team_rosters_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_rosters_avg_fields"') + return league_team_rosters_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_team_rosters_max_fields_possibleTypes: string[] = ['league_team_rosters_max_fields'] + export const isleague_team_rosters_max_fields = (obj?: { __typename?: any } | null): obj is league_team_rosters_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_rosters_max_fields"') + return league_team_rosters_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_team_rosters_min_fields_possibleTypes: string[] = ['league_team_rosters_min_fields'] + export const isleague_team_rosters_min_fields = (obj?: { __typename?: any } | null): obj is league_team_rosters_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_rosters_min_fields"') + return league_team_rosters_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_team_rosters_mutation_response_possibleTypes: string[] = ['league_team_rosters_mutation_response'] + export const isleague_team_rosters_mutation_response = (obj?: { __typename?: any } | null): obj is league_team_rosters_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_rosters_mutation_response"') + return league_team_rosters_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const league_team_rosters_stddev_fields_possibleTypes: string[] = ['league_team_rosters_stddev_fields'] + export const isleague_team_rosters_stddev_fields = (obj?: { __typename?: any } | null): obj is league_team_rosters_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_rosters_stddev_fields"') + return league_team_rosters_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_team_rosters_stddev_pop_fields_possibleTypes: string[] = ['league_team_rosters_stddev_pop_fields'] + export const isleague_team_rosters_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is league_team_rosters_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_rosters_stddev_pop_fields"') + return league_team_rosters_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_team_rosters_stddev_samp_fields_possibleTypes: string[] = ['league_team_rosters_stddev_samp_fields'] + export const isleague_team_rosters_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is league_team_rosters_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_rosters_stddev_samp_fields"') + return league_team_rosters_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_team_rosters_sum_fields_possibleTypes: string[] = ['league_team_rosters_sum_fields'] + export const isleague_team_rosters_sum_fields = (obj?: { __typename?: any } | null): obj is league_team_rosters_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_rosters_sum_fields"') + return league_team_rosters_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_team_rosters_var_pop_fields_possibleTypes: string[] = ['league_team_rosters_var_pop_fields'] + export const isleague_team_rosters_var_pop_fields = (obj?: { __typename?: any } | null): obj is league_team_rosters_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_rosters_var_pop_fields"') + return league_team_rosters_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_team_rosters_var_samp_fields_possibleTypes: string[] = ['league_team_rosters_var_samp_fields'] + export const isleague_team_rosters_var_samp_fields = (obj?: { __typename?: any } | null): obj is league_team_rosters_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_rosters_var_samp_fields"') + return league_team_rosters_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_team_rosters_variance_fields_possibleTypes: string[] = ['league_team_rosters_variance_fields'] + export const isleague_team_rosters_variance_fields = (obj?: { __typename?: any } | null): obj is league_team_rosters_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_rosters_variance_fields"') + return league_team_rosters_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_team_seasons_possibleTypes: string[] = ['league_team_seasons'] + export const isleague_team_seasons = (obj?: { __typename?: any } | null): obj is league_team_seasons => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_seasons"') + return league_team_seasons_possibleTypes.includes(obj.__typename) + } + + + + const league_team_seasons_aggregate_possibleTypes: string[] = ['league_team_seasons_aggregate'] + export const isleague_team_seasons_aggregate = (obj?: { __typename?: any } | null): obj is league_team_seasons_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_seasons_aggregate"') + return league_team_seasons_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const league_team_seasons_aggregate_fields_possibleTypes: string[] = ['league_team_seasons_aggregate_fields'] + export const isleague_team_seasons_aggregate_fields = (obj?: { __typename?: any } | null): obj is league_team_seasons_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_seasons_aggregate_fields"') + return league_team_seasons_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_team_seasons_avg_fields_possibleTypes: string[] = ['league_team_seasons_avg_fields'] + export const isleague_team_seasons_avg_fields = (obj?: { __typename?: any } | null): obj is league_team_seasons_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_seasons_avg_fields"') + return league_team_seasons_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_team_seasons_max_fields_possibleTypes: string[] = ['league_team_seasons_max_fields'] + export const isleague_team_seasons_max_fields = (obj?: { __typename?: any } | null): obj is league_team_seasons_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_seasons_max_fields"') + return league_team_seasons_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_team_seasons_min_fields_possibleTypes: string[] = ['league_team_seasons_min_fields'] + export const isleague_team_seasons_min_fields = (obj?: { __typename?: any } | null): obj is league_team_seasons_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_seasons_min_fields"') + return league_team_seasons_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_team_seasons_mutation_response_possibleTypes: string[] = ['league_team_seasons_mutation_response'] + export const isleague_team_seasons_mutation_response = (obj?: { __typename?: any } | null): obj is league_team_seasons_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_seasons_mutation_response"') + return league_team_seasons_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const league_team_seasons_stddev_fields_possibleTypes: string[] = ['league_team_seasons_stddev_fields'] + export const isleague_team_seasons_stddev_fields = (obj?: { __typename?: any } | null): obj is league_team_seasons_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_seasons_stddev_fields"') + return league_team_seasons_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_team_seasons_stddev_pop_fields_possibleTypes: string[] = ['league_team_seasons_stddev_pop_fields'] + export const isleague_team_seasons_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is league_team_seasons_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_seasons_stddev_pop_fields"') + return league_team_seasons_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_team_seasons_stddev_samp_fields_possibleTypes: string[] = ['league_team_seasons_stddev_samp_fields'] + export const isleague_team_seasons_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is league_team_seasons_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_seasons_stddev_samp_fields"') + return league_team_seasons_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_team_seasons_sum_fields_possibleTypes: string[] = ['league_team_seasons_sum_fields'] + export const isleague_team_seasons_sum_fields = (obj?: { __typename?: any } | null): obj is league_team_seasons_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_seasons_sum_fields"') + return league_team_seasons_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_team_seasons_var_pop_fields_possibleTypes: string[] = ['league_team_seasons_var_pop_fields'] + export const isleague_team_seasons_var_pop_fields = (obj?: { __typename?: any } | null): obj is league_team_seasons_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_seasons_var_pop_fields"') + return league_team_seasons_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_team_seasons_var_samp_fields_possibleTypes: string[] = ['league_team_seasons_var_samp_fields'] + export const isleague_team_seasons_var_samp_fields = (obj?: { __typename?: any } | null): obj is league_team_seasons_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_seasons_var_samp_fields"') + return league_team_seasons_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_team_seasons_variance_fields_possibleTypes: string[] = ['league_team_seasons_variance_fields'] + export const isleague_team_seasons_variance_fields = (obj?: { __typename?: any } | null): obj is league_team_seasons_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_team_seasons_variance_fields"') + return league_team_seasons_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_teams_possibleTypes: string[] = ['league_teams'] + export const isleague_teams = (obj?: { __typename?: any } | null): obj is league_teams => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_teams"') + return league_teams_possibleTypes.includes(obj.__typename) + } + + + + const league_teams_aggregate_possibleTypes: string[] = ['league_teams_aggregate'] + export const isleague_teams_aggregate = (obj?: { __typename?: any } | null): obj is league_teams_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_teams_aggregate"') + return league_teams_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const league_teams_aggregate_fields_possibleTypes: string[] = ['league_teams_aggregate_fields'] + export const isleague_teams_aggregate_fields = (obj?: { __typename?: any } | null): obj is league_teams_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_teams_aggregate_fields"') + return league_teams_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_teams_max_fields_possibleTypes: string[] = ['league_teams_max_fields'] + export const isleague_teams_max_fields = (obj?: { __typename?: any } | null): obj is league_teams_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_teams_max_fields"') + return league_teams_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_teams_min_fields_possibleTypes: string[] = ['league_teams_min_fields'] + export const isleague_teams_min_fields = (obj?: { __typename?: any } | null): obj is league_teams_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_teams_min_fields"') + return league_teams_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const league_teams_mutation_response_possibleTypes: string[] = ['league_teams_mutation_response'] + export const isleague_teams_mutation_response = (obj?: { __typename?: any } | null): obj is league_teams_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isleague_teams_mutation_response"') + return league_teams_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const lobbies_possibleTypes: string[] = ['lobbies'] + export const islobbies = (obj?: { __typename?: any } | null): obj is lobbies => { + if (!obj?.__typename) throw new Error('__typename is missing in "islobbies"') + return lobbies_possibleTypes.includes(obj.__typename) + } + + + + const lobbies_aggregate_possibleTypes: string[] = ['lobbies_aggregate'] + export const islobbies_aggregate = (obj?: { __typename?: any } | null): obj is lobbies_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "islobbies_aggregate"') + return lobbies_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const lobbies_aggregate_fields_possibleTypes: string[] = ['lobbies_aggregate_fields'] + export const islobbies_aggregate_fields = (obj?: { __typename?: any } | null): obj is lobbies_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "islobbies_aggregate_fields"') + return lobbies_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const lobbies_max_fields_possibleTypes: string[] = ['lobbies_max_fields'] + export const islobbies_max_fields = (obj?: { __typename?: any } | null): obj is lobbies_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "islobbies_max_fields"') + return lobbies_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const lobbies_min_fields_possibleTypes: string[] = ['lobbies_min_fields'] + export const islobbies_min_fields = (obj?: { __typename?: any } | null): obj is lobbies_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "islobbies_min_fields"') + return lobbies_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const lobbies_mutation_response_possibleTypes: string[] = ['lobbies_mutation_response'] + export const islobbies_mutation_response = (obj?: { __typename?: any } | null): obj is lobbies_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "islobbies_mutation_response"') + return lobbies_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const lobby_players_possibleTypes: string[] = ['lobby_players'] + export const islobby_players = (obj?: { __typename?: any } | null): obj is lobby_players => { + if (!obj?.__typename) throw new Error('__typename is missing in "islobby_players"') + return lobby_players_possibleTypes.includes(obj.__typename) + } + + + + const lobby_players_aggregate_possibleTypes: string[] = ['lobby_players_aggregate'] + export const islobby_players_aggregate = (obj?: { __typename?: any } | null): obj is lobby_players_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "islobby_players_aggregate"') + return lobby_players_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const lobby_players_aggregate_fields_possibleTypes: string[] = ['lobby_players_aggregate_fields'] + export const islobby_players_aggregate_fields = (obj?: { __typename?: any } | null): obj is lobby_players_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "islobby_players_aggregate_fields"') + return lobby_players_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const lobby_players_avg_fields_possibleTypes: string[] = ['lobby_players_avg_fields'] + export const islobby_players_avg_fields = (obj?: { __typename?: any } | null): obj is lobby_players_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "islobby_players_avg_fields"') + return lobby_players_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const lobby_players_max_fields_possibleTypes: string[] = ['lobby_players_max_fields'] + export const islobby_players_max_fields = (obj?: { __typename?: any } | null): obj is lobby_players_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "islobby_players_max_fields"') + return lobby_players_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const lobby_players_min_fields_possibleTypes: string[] = ['lobby_players_min_fields'] + export const islobby_players_min_fields = (obj?: { __typename?: any } | null): obj is lobby_players_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "islobby_players_min_fields"') + return lobby_players_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const lobby_players_mutation_response_possibleTypes: string[] = ['lobby_players_mutation_response'] + export const islobby_players_mutation_response = (obj?: { __typename?: any } | null): obj is lobby_players_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "islobby_players_mutation_response"') + return lobby_players_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const lobby_players_stddev_fields_possibleTypes: string[] = ['lobby_players_stddev_fields'] + export const islobby_players_stddev_fields = (obj?: { __typename?: any } | null): obj is lobby_players_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "islobby_players_stddev_fields"') + return lobby_players_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const lobby_players_stddev_pop_fields_possibleTypes: string[] = ['lobby_players_stddev_pop_fields'] + export const islobby_players_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is lobby_players_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "islobby_players_stddev_pop_fields"') + return lobby_players_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const lobby_players_stddev_samp_fields_possibleTypes: string[] = ['lobby_players_stddev_samp_fields'] + export const islobby_players_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is lobby_players_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "islobby_players_stddev_samp_fields"') + return lobby_players_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const lobby_players_sum_fields_possibleTypes: string[] = ['lobby_players_sum_fields'] + export const islobby_players_sum_fields = (obj?: { __typename?: any } | null): obj is lobby_players_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "islobby_players_sum_fields"') + return lobby_players_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const lobby_players_var_pop_fields_possibleTypes: string[] = ['lobby_players_var_pop_fields'] + export const islobby_players_var_pop_fields = (obj?: { __typename?: any } | null): obj is lobby_players_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "islobby_players_var_pop_fields"') + return lobby_players_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const lobby_players_var_samp_fields_possibleTypes: string[] = ['lobby_players_var_samp_fields'] + export const islobby_players_var_samp_fields = (obj?: { __typename?: any } | null): obj is lobby_players_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "islobby_players_var_samp_fields"') + return lobby_players_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const lobby_players_variance_fields_possibleTypes: string[] = ['lobby_players_variance_fields'] + export const islobby_players_variance_fields = (obj?: { __typename?: any } | null): obj is lobby_players_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "islobby_players_variance_fields"') + return lobby_players_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const map_callouts_possibleTypes: string[] = ['map_callouts'] + export const ismap_callouts = (obj?: { __typename?: any } | null): obj is map_callouts => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismap_callouts"') + return map_callouts_possibleTypes.includes(obj.__typename) + } + + + + const map_callouts_aggregate_possibleTypes: string[] = ['map_callouts_aggregate'] + export const ismap_callouts_aggregate = (obj?: { __typename?: any } | null): obj is map_callouts_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismap_callouts_aggregate"') + return map_callouts_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const map_callouts_aggregate_fields_possibleTypes: string[] = ['map_callouts_aggregate_fields'] + export const ismap_callouts_aggregate_fields = (obj?: { __typename?: any } | null): obj is map_callouts_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismap_callouts_aggregate_fields"') + return map_callouts_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const map_callouts_max_fields_possibleTypes: string[] = ['map_callouts_max_fields'] + export const ismap_callouts_max_fields = (obj?: { __typename?: any } | null): obj is map_callouts_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismap_callouts_max_fields"') + return map_callouts_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const map_callouts_min_fields_possibleTypes: string[] = ['map_callouts_min_fields'] + export const ismap_callouts_min_fields = (obj?: { __typename?: any } | null): obj is map_callouts_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismap_callouts_min_fields"') + return map_callouts_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const map_callouts_mutation_response_possibleTypes: string[] = ['map_callouts_mutation_response'] + export const ismap_callouts_mutation_response = (obj?: { __typename?: any } | null): obj is map_callouts_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismap_callouts_mutation_response"') + return map_callouts_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const map_pools_possibleTypes: string[] = ['map_pools'] + export const ismap_pools = (obj?: { __typename?: any } | null): obj is map_pools => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismap_pools"') + return map_pools_possibleTypes.includes(obj.__typename) + } + + + + const map_pools_aggregate_possibleTypes: string[] = ['map_pools_aggregate'] + export const ismap_pools_aggregate = (obj?: { __typename?: any } | null): obj is map_pools_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismap_pools_aggregate"') + return map_pools_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const map_pools_aggregate_fields_possibleTypes: string[] = ['map_pools_aggregate_fields'] + export const ismap_pools_aggregate_fields = (obj?: { __typename?: any } | null): obj is map_pools_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismap_pools_aggregate_fields"') + return map_pools_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const map_pools_max_fields_possibleTypes: string[] = ['map_pools_max_fields'] + export const ismap_pools_max_fields = (obj?: { __typename?: any } | null): obj is map_pools_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismap_pools_max_fields"') + return map_pools_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const map_pools_min_fields_possibleTypes: string[] = ['map_pools_min_fields'] + export const ismap_pools_min_fields = (obj?: { __typename?: any } | null): obj is map_pools_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismap_pools_min_fields"') + return map_pools_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const map_pools_mutation_response_possibleTypes: string[] = ['map_pools_mutation_response'] + export const ismap_pools_mutation_response = (obj?: { __typename?: any } | null): obj is map_pools_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismap_pools_mutation_response"') + return map_pools_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const maps_possibleTypes: string[] = ['maps'] + export const ismaps = (obj?: { __typename?: any } | null): obj is maps => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismaps"') + return maps_possibleTypes.includes(obj.__typename) + } + + + + const maps_aggregate_possibleTypes: string[] = ['maps_aggregate'] + export const ismaps_aggregate = (obj?: { __typename?: any } | null): obj is maps_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismaps_aggregate"') + return maps_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const maps_aggregate_fields_possibleTypes: string[] = ['maps_aggregate_fields'] + export const ismaps_aggregate_fields = (obj?: { __typename?: any } | null): obj is maps_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismaps_aggregate_fields"') + return maps_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const maps_max_fields_possibleTypes: string[] = ['maps_max_fields'] + export const ismaps_max_fields = (obj?: { __typename?: any } | null): obj is maps_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismaps_max_fields"') + return maps_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const maps_min_fields_possibleTypes: string[] = ['maps_min_fields'] + export const ismaps_min_fields = (obj?: { __typename?: any } | null): obj is maps_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismaps_min_fields"') + return maps_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const maps_mutation_response_possibleTypes: string[] = ['maps_mutation_response'] + export const ismaps_mutation_response = (obj?: { __typename?: any } | null): obj is maps_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismaps_mutation_response"') + return maps_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const match_clips_possibleTypes: string[] = ['match_clips'] + export const ismatch_clips = (obj?: { __typename?: any } | null): obj is match_clips => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_clips"') + return match_clips_possibleTypes.includes(obj.__typename) + } + + + + const match_clips_aggregate_possibleTypes: string[] = ['match_clips_aggregate'] + export const ismatch_clips_aggregate = (obj?: { __typename?: any } | null): obj is match_clips_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_clips_aggregate"') + return match_clips_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const match_clips_aggregate_fields_possibleTypes: string[] = ['match_clips_aggregate_fields'] + export const ismatch_clips_aggregate_fields = (obj?: { __typename?: any } | null): obj is match_clips_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_clips_aggregate_fields"') + return match_clips_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_clips_avg_fields_possibleTypes: string[] = ['match_clips_avg_fields'] + export const ismatch_clips_avg_fields = (obj?: { __typename?: any } | null): obj is match_clips_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_clips_avg_fields"') + return match_clips_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_clips_max_fields_possibleTypes: string[] = ['match_clips_max_fields'] + export const ismatch_clips_max_fields = (obj?: { __typename?: any } | null): obj is match_clips_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_clips_max_fields"') + return match_clips_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_clips_min_fields_possibleTypes: string[] = ['match_clips_min_fields'] + export const ismatch_clips_min_fields = (obj?: { __typename?: any } | null): obj is match_clips_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_clips_min_fields"') + return match_clips_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_clips_mutation_response_possibleTypes: string[] = ['match_clips_mutation_response'] + export const ismatch_clips_mutation_response = (obj?: { __typename?: any } | null): obj is match_clips_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_clips_mutation_response"') + return match_clips_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const match_clips_stddev_fields_possibleTypes: string[] = ['match_clips_stddev_fields'] + export const ismatch_clips_stddev_fields = (obj?: { __typename?: any } | null): obj is match_clips_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_clips_stddev_fields"') + return match_clips_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_clips_stddev_pop_fields_possibleTypes: string[] = ['match_clips_stddev_pop_fields'] + export const ismatch_clips_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is match_clips_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_clips_stddev_pop_fields"') + return match_clips_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_clips_stddev_samp_fields_possibleTypes: string[] = ['match_clips_stddev_samp_fields'] + export const ismatch_clips_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is match_clips_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_clips_stddev_samp_fields"') + return match_clips_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_clips_sum_fields_possibleTypes: string[] = ['match_clips_sum_fields'] + export const ismatch_clips_sum_fields = (obj?: { __typename?: any } | null): obj is match_clips_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_clips_sum_fields"') + return match_clips_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_clips_var_pop_fields_possibleTypes: string[] = ['match_clips_var_pop_fields'] + export const ismatch_clips_var_pop_fields = (obj?: { __typename?: any } | null): obj is match_clips_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_clips_var_pop_fields"') + return match_clips_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_clips_var_samp_fields_possibleTypes: string[] = ['match_clips_var_samp_fields'] + export const ismatch_clips_var_samp_fields = (obj?: { __typename?: any } | null): obj is match_clips_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_clips_var_samp_fields"') + return match_clips_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_clips_variance_fields_possibleTypes: string[] = ['match_clips_variance_fields'] + export const ismatch_clips_variance_fields = (obj?: { __typename?: any } | null): obj is match_clips_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_clips_variance_fields"') + return match_clips_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_demo_sessions_possibleTypes: string[] = ['match_demo_sessions'] + export const ismatch_demo_sessions = (obj?: { __typename?: any } | null): obj is match_demo_sessions => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_demo_sessions"') + return match_demo_sessions_possibleTypes.includes(obj.__typename) + } + + + + const match_demo_sessions_aggregate_possibleTypes: string[] = ['match_demo_sessions_aggregate'] + export const ismatch_demo_sessions_aggregate = (obj?: { __typename?: any } | null): obj is match_demo_sessions_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_demo_sessions_aggregate"') + return match_demo_sessions_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const match_demo_sessions_aggregate_fields_possibleTypes: string[] = ['match_demo_sessions_aggregate_fields'] + export const ismatch_demo_sessions_aggregate_fields = (obj?: { __typename?: any } | null): obj is match_demo_sessions_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_demo_sessions_aggregate_fields"') + return match_demo_sessions_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_demo_sessions_avg_fields_possibleTypes: string[] = ['match_demo_sessions_avg_fields'] + export const ismatch_demo_sessions_avg_fields = (obj?: { __typename?: any } | null): obj is match_demo_sessions_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_demo_sessions_avg_fields"') + return match_demo_sessions_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_demo_sessions_max_fields_possibleTypes: string[] = ['match_demo_sessions_max_fields'] + export const ismatch_demo_sessions_max_fields = (obj?: { __typename?: any } | null): obj is match_demo_sessions_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_demo_sessions_max_fields"') + return match_demo_sessions_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_demo_sessions_min_fields_possibleTypes: string[] = ['match_demo_sessions_min_fields'] + export const ismatch_demo_sessions_min_fields = (obj?: { __typename?: any } | null): obj is match_demo_sessions_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_demo_sessions_min_fields"') + return match_demo_sessions_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_demo_sessions_mutation_response_possibleTypes: string[] = ['match_demo_sessions_mutation_response'] + export const ismatch_demo_sessions_mutation_response = (obj?: { __typename?: any } | null): obj is match_demo_sessions_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_demo_sessions_mutation_response"') + return match_demo_sessions_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const match_demo_sessions_stddev_fields_possibleTypes: string[] = ['match_demo_sessions_stddev_fields'] + export const ismatch_demo_sessions_stddev_fields = (obj?: { __typename?: any } | null): obj is match_demo_sessions_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_demo_sessions_stddev_fields"') + return match_demo_sessions_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_demo_sessions_stddev_pop_fields_possibleTypes: string[] = ['match_demo_sessions_stddev_pop_fields'] + export const ismatch_demo_sessions_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is match_demo_sessions_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_demo_sessions_stddev_pop_fields"') + return match_demo_sessions_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_demo_sessions_stddev_samp_fields_possibleTypes: string[] = ['match_demo_sessions_stddev_samp_fields'] + export const ismatch_demo_sessions_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is match_demo_sessions_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_demo_sessions_stddev_samp_fields"') + return match_demo_sessions_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_demo_sessions_sum_fields_possibleTypes: string[] = ['match_demo_sessions_sum_fields'] + export const ismatch_demo_sessions_sum_fields = (obj?: { __typename?: any } | null): obj is match_demo_sessions_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_demo_sessions_sum_fields"') + return match_demo_sessions_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_demo_sessions_var_pop_fields_possibleTypes: string[] = ['match_demo_sessions_var_pop_fields'] + export const ismatch_demo_sessions_var_pop_fields = (obj?: { __typename?: any } | null): obj is match_demo_sessions_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_demo_sessions_var_pop_fields"') + return match_demo_sessions_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_demo_sessions_var_samp_fields_possibleTypes: string[] = ['match_demo_sessions_var_samp_fields'] + export const ismatch_demo_sessions_var_samp_fields = (obj?: { __typename?: any } | null): obj is match_demo_sessions_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_demo_sessions_var_samp_fields"') + return match_demo_sessions_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_demo_sessions_variance_fields_possibleTypes: string[] = ['match_demo_sessions_variance_fields'] + export const ismatch_demo_sessions_variance_fields = (obj?: { __typename?: any } | null): obj is match_demo_sessions_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_demo_sessions_variance_fields"') + return match_demo_sessions_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_lineup_players_possibleTypes: string[] = ['match_lineup_players'] + export const ismatch_lineup_players = (obj?: { __typename?: any } | null): obj is match_lineup_players => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineup_players"') + return match_lineup_players_possibleTypes.includes(obj.__typename) + } + + + + const match_lineup_players_aggregate_possibleTypes: string[] = ['match_lineup_players_aggregate'] + export const ismatch_lineup_players_aggregate = (obj?: { __typename?: any } | null): obj is match_lineup_players_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineup_players_aggregate"') + return match_lineup_players_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const match_lineup_players_aggregate_fields_possibleTypes: string[] = ['match_lineup_players_aggregate_fields'] + export const ismatch_lineup_players_aggregate_fields = (obj?: { __typename?: any } | null): obj is match_lineup_players_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineup_players_aggregate_fields"') + return match_lineup_players_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_lineup_players_avg_fields_possibleTypes: string[] = ['match_lineup_players_avg_fields'] + export const ismatch_lineup_players_avg_fields = (obj?: { __typename?: any } | null): obj is match_lineup_players_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineup_players_avg_fields"') + return match_lineup_players_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_lineup_players_max_fields_possibleTypes: string[] = ['match_lineup_players_max_fields'] + export const ismatch_lineup_players_max_fields = (obj?: { __typename?: any } | null): obj is match_lineup_players_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineup_players_max_fields"') + return match_lineup_players_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_lineup_players_min_fields_possibleTypes: string[] = ['match_lineup_players_min_fields'] + export const ismatch_lineup_players_min_fields = (obj?: { __typename?: any } | null): obj is match_lineup_players_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineup_players_min_fields"') + return match_lineup_players_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_lineup_players_mutation_response_possibleTypes: string[] = ['match_lineup_players_mutation_response'] + export const ismatch_lineup_players_mutation_response = (obj?: { __typename?: any } | null): obj is match_lineup_players_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineup_players_mutation_response"') + return match_lineup_players_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const match_lineup_players_stddev_fields_possibleTypes: string[] = ['match_lineup_players_stddev_fields'] + export const ismatch_lineup_players_stddev_fields = (obj?: { __typename?: any } | null): obj is match_lineup_players_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineup_players_stddev_fields"') + return match_lineup_players_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_lineup_players_stddev_pop_fields_possibleTypes: string[] = ['match_lineup_players_stddev_pop_fields'] + export const ismatch_lineup_players_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is match_lineup_players_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineup_players_stddev_pop_fields"') + return match_lineup_players_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_lineup_players_stddev_samp_fields_possibleTypes: string[] = ['match_lineup_players_stddev_samp_fields'] + export const ismatch_lineup_players_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is match_lineup_players_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineup_players_stddev_samp_fields"') + return match_lineup_players_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_lineup_players_sum_fields_possibleTypes: string[] = ['match_lineup_players_sum_fields'] + export const ismatch_lineup_players_sum_fields = (obj?: { __typename?: any } | null): obj is match_lineup_players_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineup_players_sum_fields"') + return match_lineup_players_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_lineup_players_var_pop_fields_possibleTypes: string[] = ['match_lineup_players_var_pop_fields'] + export const ismatch_lineup_players_var_pop_fields = (obj?: { __typename?: any } | null): obj is match_lineup_players_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineup_players_var_pop_fields"') + return match_lineup_players_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_lineup_players_var_samp_fields_possibleTypes: string[] = ['match_lineup_players_var_samp_fields'] + export const ismatch_lineup_players_var_samp_fields = (obj?: { __typename?: any } | null): obj is match_lineup_players_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineup_players_var_samp_fields"') + return match_lineup_players_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_lineup_players_variance_fields_possibleTypes: string[] = ['match_lineup_players_variance_fields'] + export const ismatch_lineup_players_variance_fields = (obj?: { __typename?: any } | null): obj is match_lineup_players_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineup_players_variance_fields"') + return match_lineup_players_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_lineups_possibleTypes: string[] = ['match_lineups'] + export const ismatch_lineups = (obj?: { __typename?: any } | null): obj is match_lineups => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineups"') + return match_lineups_possibleTypes.includes(obj.__typename) + } + + + + const match_lineups_aggregate_possibleTypes: string[] = ['match_lineups_aggregate'] + export const ismatch_lineups_aggregate = (obj?: { __typename?: any } | null): obj is match_lineups_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineups_aggregate"') + return match_lineups_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const match_lineups_aggregate_fields_possibleTypes: string[] = ['match_lineups_aggregate_fields'] + export const ismatch_lineups_aggregate_fields = (obj?: { __typename?: any } | null): obj is match_lineups_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineups_aggregate_fields"') + return match_lineups_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_lineups_avg_fields_possibleTypes: string[] = ['match_lineups_avg_fields'] + export const ismatch_lineups_avg_fields = (obj?: { __typename?: any } | null): obj is match_lineups_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineups_avg_fields"') + return match_lineups_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_lineups_max_fields_possibleTypes: string[] = ['match_lineups_max_fields'] + export const ismatch_lineups_max_fields = (obj?: { __typename?: any } | null): obj is match_lineups_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineups_max_fields"') + return match_lineups_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_lineups_min_fields_possibleTypes: string[] = ['match_lineups_min_fields'] + export const ismatch_lineups_min_fields = (obj?: { __typename?: any } | null): obj is match_lineups_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineups_min_fields"') + return match_lineups_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_lineups_mutation_response_possibleTypes: string[] = ['match_lineups_mutation_response'] + export const ismatch_lineups_mutation_response = (obj?: { __typename?: any } | null): obj is match_lineups_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineups_mutation_response"') + return match_lineups_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const match_lineups_stddev_fields_possibleTypes: string[] = ['match_lineups_stddev_fields'] + export const ismatch_lineups_stddev_fields = (obj?: { __typename?: any } | null): obj is match_lineups_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineups_stddev_fields"') + return match_lineups_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_lineups_stddev_pop_fields_possibleTypes: string[] = ['match_lineups_stddev_pop_fields'] + export const ismatch_lineups_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is match_lineups_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineups_stddev_pop_fields"') + return match_lineups_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_lineups_stddev_samp_fields_possibleTypes: string[] = ['match_lineups_stddev_samp_fields'] + export const ismatch_lineups_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is match_lineups_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineups_stddev_samp_fields"') + return match_lineups_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_lineups_sum_fields_possibleTypes: string[] = ['match_lineups_sum_fields'] + export const ismatch_lineups_sum_fields = (obj?: { __typename?: any } | null): obj is match_lineups_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineups_sum_fields"') + return match_lineups_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_lineups_var_pop_fields_possibleTypes: string[] = ['match_lineups_var_pop_fields'] + export const ismatch_lineups_var_pop_fields = (obj?: { __typename?: any } | null): obj is match_lineups_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineups_var_pop_fields"') + return match_lineups_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_lineups_var_samp_fields_possibleTypes: string[] = ['match_lineups_var_samp_fields'] + export const ismatch_lineups_var_samp_fields = (obj?: { __typename?: any } | null): obj is match_lineups_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineups_var_samp_fields"') + return match_lineups_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_lineups_variance_fields_possibleTypes: string[] = ['match_lineups_variance_fields'] + export const ismatch_lineups_variance_fields = (obj?: { __typename?: any } | null): obj is match_lineups_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_lineups_variance_fields"') + return match_lineups_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_map_demos_possibleTypes: string[] = ['match_map_demos'] + export const ismatch_map_demos = (obj?: { __typename?: any } | null): obj is match_map_demos => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_demos"') + return match_map_demos_possibleTypes.includes(obj.__typename) + } + + + + const match_map_demos_aggregate_possibleTypes: string[] = ['match_map_demos_aggregate'] + export const ismatch_map_demos_aggregate = (obj?: { __typename?: any } | null): obj is match_map_demos_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_demos_aggregate"') + return match_map_demos_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const match_map_demos_aggregate_fields_possibleTypes: string[] = ['match_map_demos_aggregate_fields'] + export const ismatch_map_demos_aggregate_fields = (obj?: { __typename?: any } | null): obj is match_map_demos_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_demos_aggregate_fields"') + return match_map_demos_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_map_demos_avg_fields_possibleTypes: string[] = ['match_map_demos_avg_fields'] + export const ismatch_map_demos_avg_fields = (obj?: { __typename?: any } | null): obj is match_map_demos_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_demos_avg_fields"') + return match_map_demos_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_map_demos_max_fields_possibleTypes: string[] = ['match_map_demos_max_fields'] + export const ismatch_map_demos_max_fields = (obj?: { __typename?: any } | null): obj is match_map_demos_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_demos_max_fields"') + return match_map_demos_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_map_demos_min_fields_possibleTypes: string[] = ['match_map_demos_min_fields'] + export const ismatch_map_demos_min_fields = (obj?: { __typename?: any } | null): obj is match_map_demos_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_demos_min_fields"') + return match_map_demos_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_map_demos_mutation_response_possibleTypes: string[] = ['match_map_demos_mutation_response'] + export const ismatch_map_demos_mutation_response = (obj?: { __typename?: any } | null): obj is match_map_demos_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_demos_mutation_response"') + return match_map_demos_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const match_map_demos_stddev_fields_possibleTypes: string[] = ['match_map_demos_stddev_fields'] + export const ismatch_map_demos_stddev_fields = (obj?: { __typename?: any } | null): obj is match_map_demos_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_demos_stddev_fields"') + return match_map_demos_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_map_demos_stddev_pop_fields_possibleTypes: string[] = ['match_map_demos_stddev_pop_fields'] + export const ismatch_map_demos_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is match_map_demos_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_demos_stddev_pop_fields"') + return match_map_demos_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_map_demos_stddev_samp_fields_possibleTypes: string[] = ['match_map_demos_stddev_samp_fields'] + export const ismatch_map_demos_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is match_map_demos_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_demos_stddev_samp_fields"') + return match_map_demos_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_map_demos_sum_fields_possibleTypes: string[] = ['match_map_demos_sum_fields'] + export const ismatch_map_demos_sum_fields = (obj?: { __typename?: any } | null): obj is match_map_demos_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_demos_sum_fields"') + return match_map_demos_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_map_demos_var_pop_fields_possibleTypes: string[] = ['match_map_demos_var_pop_fields'] + export const ismatch_map_demos_var_pop_fields = (obj?: { __typename?: any } | null): obj is match_map_demos_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_demos_var_pop_fields"') + return match_map_demos_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_map_demos_var_samp_fields_possibleTypes: string[] = ['match_map_demos_var_samp_fields'] + export const ismatch_map_demos_var_samp_fields = (obj?: { __typename?: any } | null): obj is match_map_demos_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_demos_var_samp_fields"') + return match_map_demos_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_map_demos_variance_fields_possibleTypes: string[] = ['match_map_demos_variance_fields'] + export const ismatch_map_demos_variance_fields = (obj?: { __typename?: any } | null): obj is match_map_demos_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_demos_variance_fields"') + return match_map_demos_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_map_rounds_possibleTypes: string[] = ['match_map_rounds'] + export const ismatch_map_rounds = (obj?: { __typename?: any } | null): obj is match_map_rounds => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_rounds"') + return match_map_rounds_possibleTypes.includes(obj.__typename) + } + + + + const match_map_rounds_aggregate_possibleTypes: string[] = ['match_map_rounds_aggregate'] + export const ismatch_map_rounds_aggregate = (obj?: { __typename?: any } | null): obj is match_map_rounds_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_rounds_aggregate"') + return match_map_rounds_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const match_map_rounds_aggregate_fields_possibleTypes: string[] = ['match_map_rounds_aggregate_fields'] + export const ismatch_map_rounds_aggregate_fields = (obj?: { __typename?: any } | null): obj is match_map_rounds_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_rounds_aggregate_fields"') + return match_map_rounds_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_map_rounds_avg_fields_possibleTypes: string[] = ['match_map_rounds_avg_fields'] + export const ismatch_map_rounds_avg_fields = (obj?: { __typename?: any } | null): obj is match_map_rounds_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_rounds_avg_fields"') + return match_map_rounds_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_map_rounds_max_fields_possibleTypes: string[] = ['match_map_rounds_max_fields'] + export const ismatch_map_rounds_max_fields = (obj?: { __typename?: any } | null): obj is match_map_rounds_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_rounds_max_fields"') + return match_map_rounds_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_map_rounds_min_fields_possibleTypes: string[] = ['match_map_rounds_min_fields'] + export const ismatch_map_rounds_min_fields = (obj?: { __typename?: any } | null): obj is match_map_rounds_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_rounds_min_fields"') + return match_map_rounds_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_map_rounds_mutation_response_possibleTypes: string[] = ['match_map_rounds_mutation_response'] + export const ismatch_map_rounds_mutation_response = (obj?: { __typename?: any } | null): obj is match_map_rounds_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_rounds_mutation_response"') + return match_map_rounds_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const match_map_rounds_stddev_fields_possibleTypes: string[] = ['match_map_rounds_stddev_fields'] + export const ismatch_map_rounds_stddev_fields = (obj?: { __typename?: any } | null): obj is match_map_rounds_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_rounds_stddev_fields"') + return match_map_rounds_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_map_rounds_stddev_pop_fields_possibleTypes: string[] = ['match_map_rounds_stddev_pop_fields'] + export const ismatch_map_rounds_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is match_map_rounds_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_rounds_stddev_pop_fields"') + return match_map_rounds_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_map_rounds_stddev_samp_fields_possibleTypes: string[] = ['match_map_rounds_stddev_samp_fields'] + export const ismatch_map_rounds_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is match_map_rounds_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_rounds_stddev_samp_fields"') + return match_map_rounds_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_map_rounds_sum_fields_possibleTypes: string[] = ['match_map_rounds_sum_fields'] + export const ismatch_map_rounds_sum_fields = (obj?: { __typename?: any } | null): obj is match_map_rounds_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_rounds_sum_fields"') + return match_map_rounds_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_map_rounds_var_pop_fields_possibleTypes: string[] = ['match_map_rounds_var_pop_fields'] + export const ismatch_map_rounds_var_pop_fields = (obj?: { __typename?: any } | null): obj is match_map_rounds_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_rounds_var_pop_fields"') + return match_map_rounds_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_map_rounds_var_samp_fields_possibleTypes: string[] = ['match_map_rounds_var_samp_fields'] + export const ismatch_map_rounds_var_samp_fields = (obj?: { __typename?: any } | null): obj is match_map_rounds_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_rounds_var_samp_fields"') + return match_map_rounds_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_map_rounds_variance_fields_possibleTypes: string[] = ['match_map_rounds_variance_fields'] + export const ismatch_map_rounds_variance_fields = (obj?: { __typename?: any } | null): obj is match_map_rounds_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_rounds_variance_fields"') + return match_map_rounds_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_map_veto_picks_possibleTypes: string[] = ['match_map_veto_picks'] + export const ismatch_map_veto_picks = (obj?: { __typename?: any } | null): obj is match_map_veto_picks => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_veto_picks"') + return match_map_veto_picks_possibleTypes.includes(obj.__typename) + } + + + + const match_map_veto_picks_aggregate_possibleTypes: string[] = ['match_map_veto_picks_aggregate'] + export const ismatch_map_veto_picks_aggregate = (obj?: { __typename?: any } | null): obj is match_map_veto_picks_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_veto_picks_aggregate"') + return match_map_veto_picks_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const match_map_veto_picks_aggregate_fields_possibleTypes: string[] = ['match_map_veto_picks_aggregate_fields'] + export const ismatch_map_veto_picks_aggregate_fields = (obj?: { __typename?: any } | null): obj is match_map_veto_picks_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_veto_picks_aggregate_fields"') + return match_map_veto_picks_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_map_veto_picks_max_fields_possibleTypes: string[] = ['match_map_veto_picks_max_fields'] + export const ismatch_map_veto_picks_max_fields = (obj?: { __typename?: any } | null): obj is match_map_veto_picks_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_veto_picks_max_fields"') + return match_map_veto_picks_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_map_veto_picks_min_fields_possibleTypes: string[] = ['match_map_veto_picks_min_fields'] + export const ismatch_map_veto_picks_min_fields = (obj?: { __typename?: any } | null): obj is match_map_veto_picks_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_veto_picks_min_fields"') + return match_map_veto_picks_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_map_veto_picks_mutation_response_possibleTypes: string[] = ['match_map_veto_picks_mutation_response'] + export const ismatch_map_veto_picks_mutation_response = (obj?: { __typename?: any } | null): obj is match_map_veto_picks_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_map_veto_picks_mutation_response"') + return match_map_veto_picks_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const match_maps_possibleTypes: string[] = ['match_maps'] + export const ismatch_maps = (obj?: { __typename?: any } | null): obj is match_maps => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_maps"') + return match_maps_possibleTypes.includes(obj.__typename) + } + + + + const match_maps_aggregate_possibleTypes: string[] = ['match_maps_aggregate'] + export const ismatch_maps_aggregate = (obj?: { __typename?: any } | null): obj is match_maps_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_maps_aggregate"') + return match_maps_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const match_maps_aggregate_fields_possibleTypes: string[] = ['match_maps_aggregate_fields'] + export const ismatch_maps_aggregate_fields = (obj?: { __typename?: any } | null): obj is match_maps_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_maps_aggregate_fields"') + return match_maps_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_maps_avg_fields_possibleTypes: string[] = ['match_maps_avg_fields'] + export const ismatch_maps_avg_fields = (obj?: { __typename?: any } | null): obj is match_maps_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_maps_avg_fields"') + return match_maps_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_maps_max_fields_possibleTypes: string[] = ['match_maps_max_fields'] + export const ismatch_maps_max_fields = (obj?: { __typename?: any } | null): obj is match_maps_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_maps_max_fields"') + return match_maps_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_maps_min_fields_possibleTypes: string[] = ['match_maps_min_fields'] + export const ismatch_maps_min_fields = (obj?: { __typename?: any } | null): obj is match_maps_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_maps_min_fields"') + return match_maps_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_maps_mutation_response_possibleTypes: string[] = ['match_maps_mutation_response'] + export const ismatch_maps_mutation_response = (obj?: { __typename?: any } | null): obj is match_maps_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_maps_mutation_response"') + return match_maps_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const match_maps_stddev_fields_possibleTypes: string[] = ['match_maps_stddev_fields'] + export const ismatch_maps_stddev_fields = (obj?: { __typename?: any } | null): obj is match_maps_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_maps_stddev_fields"') + return match_maps_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_maps_stddev_pop_fields_possibleTypes: string[] = ['match_maps_stddev_pop_fields'] + export const ismatch_maps_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is match_maps_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_maps_stddev_pop_fields"') + return match_maps_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_maps_stddev_samp_fields_possibleTypes: string[] = ['match_maps_stddev_samp_fields'] + export const ismatch_maps_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is match_maps_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_maps_stddev_samp_fields"') + return match_maps_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_maps_sum_fields_possibleTypes: string[] = ['match_maps_sum_fields'] + export const ismatch_maps_sum_fields = (obj?: { __typename?: any } | null): obj is match_maps_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_maps_sum_fields"') + return match_maps_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_maps_var_pop_fields_possibleTypes: string[] = ['match_maps_var_pop_fields'] + export const ismatch_maps_var_pop_fields = (obj?: { __typename?: any } | null): obj is match_maps_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_maps_var_pop_fields"') + return match_maps_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_maps_var_samp_fields_possibleTypes: string[] = ['match_maps_var_samp_fields'] + export const ismatch_maps_var_samp_fields = (obj?: { __typename?: any } | null): obj is match_maps_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_maps_var_samp_fields"') + return match_maps_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_maps_variance_fields_possibleTypes: string[] = ['match_maps_variance_fields'] + export const ismatch_maps_variance_fields = (obj?: { __typename?: any } | null): obj is match_maps_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_maps_variance_fields"') + return match_maps_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_options_possibleTypes: string[] = ['match_options'] + export const ismatch_options = (obj?: { __typename?: any } | null): obj is match_options => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_options"') + return match_options_possibleTypes.includes(obj.__typename) + } + + + + const match_options_aggregate_possibleTypes: string[] = ['match_options_aggregate'] + export const ismatch_options_aggregate = (obj?: { __typename?: any } | null): obj is match_options_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_options_aggregate"') + return match_options_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const match_options_aggregate_fields_possibleTypes: string[] = ['match_options_aggregate_fields'] + export const ismatch_options_aggregate_fields = (obj?: { __typename?: any } | null): obj is match_options_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_options_aggregate_fields"') + return match_options_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_options_avg_fields_possibleTypes: string[] = ['match_options_avg_fields'] + export const ismatch_options_avg_fields = (obj?: { __typename?: any } | null): obj is match_options_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_options_avg_fields"') + return match_options_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_options_max_fields_possibleTypes: string[] = ['match_options_max_fields'] + export const ismatch_options_max_fields = (obj?: { __typename?: any } | null): obj is match_options_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_options_max_fields"') + return match_options_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_options_min_fields_possibleTypes: string[] = ['match_options_min_fields'] + export const ismatch_options_min_fields = (obj?: { __typename?: any } | null): obj is match_options_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_options_min_fields"') + return match_options_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_options_mutation_response_possibleTypes: string[] = ['match_options_mutation_response'] + export const ismatch_options_mutation_response = (obj?: { __typename?: any } | null): obj is match_options_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_options_mutation_response"') + return match_options_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const match_options_stddev_fields_possibleTypes: string[] = ['match_options_stddev_fields'] + export const ismatch_options_stddev_fields = (obj?: { __typename?: any } | null): obj is match_options_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_options_stddev_fields"') + return match_options_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_options_stddev_pop_fields_possibleTypes: string[] = ['match_options_stddev_pop_fields'] + export const ismatch_options_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is match_options_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_options_stddev_pop_fields"') + return match_options_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_options_stddev_samp_fields_possibleTypes: string[] = ['match_options_stddev_samp_fields'] + export const ismatch_options_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is match_options_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_options_stddev_samp_fields"') + return match_options_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_options_sum_fields_possibleTypes: string[] = ['match_options_sum_fields'] + export const ismatch_options_sum_fields = (obj?: { __typename?: any } | null): obj is match_options_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_options_sum_fields"') + return match_options_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_options_var_pop_fields_possibleTypes: string[] = ['match_options_var_pop_fields'] + export const ismatch_options_var_pop_fields = (obj?: { __typename?: any } | null): obj is match_options_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_options_var_pop_fields"') + return match_options_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_options_var_samp_fields_possibleTypes: string[] = ['match_options_var_samp_fields'] + export const ismatch_options_var_samp_fields = (obj?: { __typename?: any } | null): obj is match_options_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_options_var_samp_fields"') + return match_options_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_options_variance_fields_possibleTypes: string[] = ['match_options_variance_fields'] + export const ismatch_options_variance_fields = (obj?: { __typename?: any } | null): obj is match_options_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_options_variance_fields"') + return match_options_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_region_veto_picks_possibleTypes: string[] = ['match_region_veto_picks'] + export const ismatch_region_veto_picks = (obj?: { __typename?: any } | null): obj is match_region_veto_picks => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_region_veto_picks"') + return match_region_veto_picks_possibleTypes.includes(obj.__typename) + } + + + + const match_region_veto_picks_aggregate_possibleTypes: string[] = ['match_region_veto_picks_aggregate'] + export const ismatch_region_veto_picks_aggregate = (obj?: { __typename?: any } | null): obj is match_region_veto_picks_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_region_veto_picks_aggregate"') + return match_region_veto_picks_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const match_region_veto_picks_aggregate_fields_possibleTypes: string[] = ['match_region_veto_picks_aggregate_fields'] + export const ismatch_region_veto_picks_aggregate_fields = (obj?: { __typename?: any } | null): obj is match_region_veto_picks_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_region_veto_picks_aggregate_fields"') + return match_region_veto_picks_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_region_veto_picks_max_fields_possibleTypes: string[] = ['match_region_veto_picks_max_fields'] + export const ismatch_region_veto_picks_max_fields = (obj?: { __typename?: any } | null): obj is match_region_veto_picks_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_region_veto_picks_max_fields"') + return match_region_veto_picks_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_region_veto_picks_min_fields_possibleTypes: string[] = ['match_region_veto_picks_min_fields'] + export const ismatch_region_veto_picks_min_fields = (obj?: { __typename?: any } | null): obj is match_region_veto_picks_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_region_veto_picks_min_fields"') + return match_region_veto_picks_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_region_veto_picks_mutation_response_possibleTypes: string[] = ['match_region_veto_picks_mutation_response'] + export const ismatch_region_veto_picks_mutation_response = (obj?: { __typename?: any } | null): obj is match_region_veto_picks_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_region_veto_picks_mutation_response"') + return match_region_veto_picks_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const match_streams_possibleTypes: string[] = ['match_streams'] + export const ismatch_streams = (obj?: { __typename?: any } | null): obj is match_streams => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_streams"') + return match_streams_possibleTypes.includes(obj.__typename) + } + + + + const match_streams_aggregate_possibleTypes: string[] = ['match_streams_aggregate'] + export const ismatch_streams_aggregate = (obj?: { __typename?: any } | null): obj is match_streams_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_streams_aggregate"') + return match_streams_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const match_streams_aggregate_fields_possibleTypes: string[] = ['match_streams_aggregate_fields'] + export const ismatch_streams_aggregate_fields = (obj?: { __typename?: any } | null): obj is match_streams_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_streams_aggregate_fields"') + return match_streams_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_streams_avg_fields_possibleTypes: string[] = ['match_streams_avg_fields'] + export const ismatch_streams_avg_fields = (obj?: { __typename?: any } | null): obj is match_streams_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_streams_avg_fields"') + return match_streams_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_streams_max_fields_possibleTypes: string[] = ['match_streams_max_fields'] + export const ismatch_streams_max_fields = (obj?: { __typename?: any } | null): obj is match_streams_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_streams_max_fields"') + return match_streams_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_streams_min_fields_possibleTypes: string[] = ['match_streams_min_fields'] + export const ismatch_streams_min_fields = (obj?: { __typename?: any } | null): obj is match_streams_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_streams_min_fields"') + return match_streams_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_streams_mutation_response_possibleTypes: string[] = ['match_streams_mutation_response'] + export const ismatch_streams_mutation_response = (obj?: { __typename?: any } | null): obj is match_streams_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_streams_mutation_response"') + return match_streams_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const match_streams_stddev_fields_possibleTypes: string[] = ['match_streams_stddev_fields'] + export const ismatch_streams_stddev_fields = (obj?: { __typename?: any } | null): obj is match_streams_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_streams_stddev_fields"') + return match_streams_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_streams_stddev_pop_fields_possibleTypes: string[] = ['match_streams_stddev_pop_fields'] + export const ismatch_streams_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is match_streams_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_streams_stddev_pop_fields"') + return match_streams_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_streams_stddev_samp_fields_possibleTypes: string[] = ['match_streams_stddev_samp_fields'] + export const ismatch_streams_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is match_streams_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_streams_stddev_samp_fields"') + return match_streams_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_streams_sum_fields_possibleTypes: string[] = ['match_streams_sum_fields'] + export const ismatch_streams_sum_fields = (obj?: { __typename?: any } | null): obj is match_streams_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_streams_sum_fields"') + return match_streams_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_streams_var_pop_fields_possibleTypes: string[] = ['match_streams_var_pop_fields'] + export const ismatch_streams_var_pop_fields = (obj?: { __typename?: any } | null): obj is match_streams_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_streams_var_pop_fields"') + return match_streams_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_streams_var_samp_fields_possibleTypes: string[] = ['match_streams_var_samp_fields'] + export const ismatch_streams_var_samp_fields = (obj?: { __typename?: any } | null): obj is match_streams_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_streams_var_samp_fields"') + return match_streams_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_streams_variance_fields_possibleTypes: string[] = ['match_streams_variance_fields'] + export const ismatch_streams_variance_fields = (obj?: { __typename?: any } | null): obj is match_streams_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_streams_variance_fields"') + return match_streams_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_type_cfgs_possibleTypes: string[] = ['match_type_cfgs'] + export const ismatch_type_cfgs = (obj?: { __typename?: any } | null): obj is match_type_cfgs => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_type_cfgs"') + return match_type_cfgs_possibleTypes.includes(obj.__typename) + } + + + + const match_type_cfgs_aggregate_possibleTypes: string[] = ['match_type_cfgs_aggregate'] + export const ismatch_type_cfgs_aggregate = (obj?: { __typename?: any } | null): obj is match_type_cfgs_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_type_cfgs_aggregate"') + return match_type_cfgs_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const match_type_cfgs_aggregate_fields_possibleTypes: string[] = ['match_type_cfgs_aggregate_fields'] + export const ismatch_type_cfgs_aggregate_fields = (obj?: { __typename?: any } | null): obj is match_type_cfgs_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_type_cfgs_aggregate_fields"') + return match_type_cfgs_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_type_cfgs_max_fields_possibleTypes: string[] = ['match_type_cfgs_max_fields'] + export const ismatch_type_cfgs_max_fields = (obj?: { __typename?: any } | null): obj is match_type_cfgs_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_type_cfgs_max_fields"') + return match_type_cfgs_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_type_cfgs_min_fields_possibleTypes: string[] = ['match_type_cfgs_min_fields'] + export const ismatch_type_cfgs_min_fields = (obj?: { __typename?: any } | null): obj is match_type_cfgs_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_type_cfgs_min_fields"') + return match_type_cfgs_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const match_type_cfgs_mutation_response_possibleTypes: string[] = ['match_type_cfgs_mutation_response'] + export const ismatch_type_cfgs_mutation_response = (obj?: { __typename?: any } | null): obj is match_type_cfgs_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatch_type_cfgs_mutation_response"') + return match_type_cfgs_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const matches_possibleTypes: string[] = ['matches'] + export const ismatches = (obj?: { __typename?: any } | null): obj is matches => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatches"') + return matches_possibleTypes.includes(obj.__typename) + } + + + + const matches_aggregate_possibleTypes: string[] = ['matches_aggregate'] + export const ismatches_aggregate = (obj?: { __typename?: any } | null): obj is matches_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatches_aggregate"') + return matches_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const matches_aggregate_fields_possibleTypes: string[] = ['matches_aggregate_fields'] + export const ismatches_aggregate_fields = (obj?: { __typename?: any } | null): obj is matches_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatches_aggregate_fields"') + return matches_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const matches_avg_fields_possibleTypes: string[] = ['matches_avg_fields'] + export const ismatches_avg_fields = (obj?: { __typename?: any } | null): obj is matches_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatches_avg_fields"') + return matches_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const matches_max_fields_possibleTypes: string[] = ['matches_max_fields'] + export const ismatches_max_fields = (obj?: { __typename?: any } | null): obj is matches_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatches_max_fields"') + return matches_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const matches_min_fields_possibleTypes: string[] = ['matches_min_fields'] + export const ismatches_min_fields = (obj?: { __typename?: any } | null): obj is matches_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatches_min_fields"') + return matches_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const matches_mutation_response_possibleTypes: string[] = ['matches_mutation_response'] + export const ismatches_mutation_response = (obj?: { __typename?: any } | null): obj is matches_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatches_mutation_response"') + return matches_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const matches_stddev_fields_possibleTypes: string[] = ['matches_stddev_fields'] + export const ismatches_stddev_fields = (obj?: { __typename?: any } | null): obj is matches_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatches_stddev_fields"') + return matches_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const matches_stddev_pop_fields_possibleTypes: string[] = ['matches_stddev_pop_fields'] + export const ismatches_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is matches_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatches_stddev_pop_fields"') + return matches_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const matches_stddev_samp_fields_possibleTypes: string[] = ['matches_stddev_samp_fields'] + export const ismatches_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is matches_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatches_stddev_samp_fields"') + return matches_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const matches_sum_fields_possibleTypes: string[] = ['matches_sum_fields'] + export const ismatches_sum_fields = (obj?: { __typename?: any } | null): obj is matches_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatches_sum_fields"') + return matches_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const matches_var_pop_fields_possibleTypes: string[] = ['matches_var_pop_fields'] + export const ismatches_var_pop_fields = (obj?: { __typename?: any } | null): obj is matches_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatches_var_pop_fields"') + return matches_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const matches_var_samp_fields_possibleTypes: string[] = ['matches_var_samp_fields'] + export const ismatches_var_samp_fields = (obj?: { __typename?: any } | null): obj is matches_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatches_var_samp_fields"') + return matches_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const matches_variance_fields_possibleTypes: string[] = ['matches_variance_fields'] + export const ismatches_variance_fields = (obj?: { __typename?: any } | null): obj is matches_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismatches_variance_fields"') + return matches_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const migration_hashes_hashes_possibleTypes: string[] = ['migration_hashes_hashes'] + export const ismigration_hashes_hashes = (obj?: { __typename?: any } | null): obj is migration_hashes_hashes => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismigration_hashes_hashes"') + return migration_hashes_hashes_possibleTypes.includes(obj.__typename) + } + + + + const migration_hashes_hashes_aggregate_possibleTypes: string[] = ['migration_hashes_hashes_aggregate'] + export const ismigration_hashes_hashes_aggregate = (obj?: { __typename?: any } | null): obj is migration_hashes_hashes_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismigration_hashes_hashes_aggregate"') + return migration_hashes_hashes_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const migration_hashes_hashes_aggregate_fields_possibleTypes: string[] = ['migration_hashes_hashes_aggregate_fields'] + export const ismigration_hashes_hashes_aggregate_fields = (obj?: { __typename?: any } | null): obj is migration_hashes_hashes_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismigration_hashes_hashes_aggregate_fields"') + return migration_hashes_hashes_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const migration_hashes_hashes_max_fields_possibleTypes: string[] = ['migration_hashes_hashes_max_fields'] + export const ismigration_hashes_hashes_max_fields = (obj?: { __typename?: any } | null): obj is migration_hashes_hashes_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismigration_hashes_hashes_max_fields"') + return migration_hashes_hashes_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const migration_hashes_hashes_min_fields_possibleTypes: string[] = ['migration_hashes_hashes_min_fields'] + export const ismigration_hashes_hashes_min_fields = (obj?: { __typename?: any } | null): obj is migration_hashes_hashes_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismigration_hashes_hashes_min_fields"') + return migration_hashes_hashes_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const migration_hashes_hashes_mutation_response_possibleTypes: string[] = ['migration_hashes_hashes_mutation_response'] + export const ismigration_hashes_hashes_mutation_response = (obj?: { __typename?: any } | null): obj is migration_hashes_hashes_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismigration_hashes_hashes_mutation_response"') + return migration_hashes_hashes_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const mutation_root_possibleTypes: string[] = ['mutation_root'] + export const ismutation_root = (obj?: { __typename?: any } | null): obj is mutation_root => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismutation_root"') + return mutation_root_possibleTypes.includes(obj.__typename) + } + + + + const my_friends_possibleTypes: string[] = ['my_friends'] + export const ismy_friends = (obj?: { __typename?: any } | null): obj is my_friends => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismy_friends"') + return my_friends_possibleTypes.includes(obj.__typename) + } + + + + const my_friends_aggregate_possibleTypes: string[] = ['my_friends_aggregate'] + export const ismy_friends_aggregate = (obj?: { __typename?: any } | null): obj is my_friends_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismy_friends_aggregate"') + return my_friends_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const my_friends_aggregate_fields_possibleTypes: string[] = ['my_friends_aggregate_fields'] + export const ismy_friends_aggregate_fields = (obj?: { __typename?: any } | null): obj is my_friends_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismy_friends_aggregate_fields"') + return my_friends_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const my_friends_avg_fields_possibleTypes: string[] = ['my_friends_avg_fields'] + export const ismy_friends_avg_fields = (obj?: { __typename?: any } | null): obj is my_friends_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismy_friends_avg_fields"') + return my_friends_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const my_friends_max_fields_possibleTypes: string[] = ['my_friends_max_fields'] + export const ismy_friends_max_fields = (obj?: { __typename?: any } | null): obj is my_friends_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismy_friends_max_fields"') + return my_friends_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const my_friends_min_fields_possibleTypes: string[] = ['my_friends_min_fields'] + export const ismy_friends_min_fields = (obj?: { __typename?: any } | null): obj is my_friends_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismy_friends_min_fields"') + return my_friends_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const my_friends_mutation_response_possibleTypes: string[] = ['my_friends_mutation_response'] + export const ismy_friends_mutation_response = (obj?: { __typename?: any } | null): obj is my_friends_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismy_friends_mutation_response"') + return my_friends_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const my_friends_stddev_fields_possibleTypes: string[] = ['my_friends_stddev_fields'] + export const ismy_friends_stddev_fields = (obj?: { __typename?: any } | null): obj is my_friends_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismy_friends_stddev_fields"') + return my_friends_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const my_friends_stddev_pop_fields_possibleTypes: string[] = ['my_friends_stddev_pop_fields'] + export const ismy_friends_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is my_friends_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismy_friends_stddev_pop_fields"') + return my_friends_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const my_friends_stddev_samp_fields_possibleTypes: string[] = ['my_friends_stddev_samp_fields'] + export const ismy_friends_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is my_friends_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismy_friends_stddev_samp_fields"') + return my_friends_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const my_friends_sum_fields_possibleTypes: string[] = ['my_friends_sum_fields'] + export const ismy_friends_sum_fields = (obj?: { __typename?: any } | null): obj is my_friends_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismy_friends_sum_fields"') + return my_friends_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const my_friends_var_pop_fields_possibleTypes: string[] = ['my_friends_var_pop_fields'] + export const ismy_friends_var_pop_fields = (obj?: { __typename?: any } | null): obj is my_friends_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismy_friends_var_pop_fields"') + return my_friends_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const my_friends_var_samp_fields_possibleTypes: string[] = ['my_friends_var_samp_fields'] + export const ismy_friends_var_samp_fields = (obj?: { __typename?: any } | null): obj is my_friends_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismy_friends_var_samp_fields"') + return my_friends_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const my_friends_variance_fields_possibleTypes: string[] = ['my_friends_variance_fields'] + export const ismy_friends_variance_fields = (obj?: { __typename?: any } | null): obj is my_friends_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismy_friends_variance_fields"') + return my_friends_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const news_articles_possibleTypes: string[] = ['news_articles'] + export const isnews_articles = (obj?: { __typename?: any } | null): obj is news_articles => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles"') + return news_articles_possibleTypes.includes(obj.__typename) + } + + + + const news_articles_aggregate_possibleTypes: string[] = ['news_articles_aggregate'] + export const isnews_articles_aggregate = (obj?: { __typename?: any } | null): obj is news_articles_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_aggregate"') + return news_articles_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const news_articles_aggregate_fields_possibleTypes: string[] = ['news_articles_aggregate_fields'] + export const isnews_articles_aggregate_fields = (obj?: { __typename?: any } | null): obj is news_articles_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_aggregate_fields"') + return news_articles_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const news_articles_avg_fields_possibleTypes: string[] = ['news_articles_avg_fields'] + export const isnews_articles_avg_fields = (obj?: { __typename?: any } | null): obj is news_articles_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_avg_fields"') + return news_articles_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const news_articles_max_fields_possibleTypes: string[] = ['news_articles_max_fields'] + export const isnews_articles_max_fields = (obj?: { __typename?: any } | null): obj is news_articles_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_max_fields"') + return news_articles_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const news_articles_min_fields_possibleTypes: string[] = ['news_articles_min_fields'] + export const isnews_articles_min_fields = (obj?: { __typename?: any } | null): obj is news_articles_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_min_fields"') + return news_articles_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const news_articles_mutation_response_possibleTypes: string[] = ['news_articles_mutation_response'] + export const isnews_articles_mutation_response = (obj?: { __typename?: any } | null): obj is news_articles_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_mutation_response"') + return news_articles_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const news_articles_stddev_fields_possibleTypes: string[] = ['news_articles_stddev_fields'] + export const isnews_articles_stddev_fields = (obj?: { __typename?: any } | null): obj is news_articles_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_stddev_fields"') + return news_articles_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const news_articles_stddev_pop_fields_possibleTypes: string[] = ['news_articles_stddev_pop_fields'] + export const isnews_articles_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is news_articles_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_stddev_pop_fields"') + return news_articles_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const news_articles_stddev_samp_fields_possibleTypes: string[] = ['news_articles_stddev_samp_fields'] + export const isnews_articles_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is news_articles_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_stddev_samp_fields"') + return news_articles_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const news_articles_sum_fields_possibleTypes: string[] = ['news_articles_sum_fields'] + export const isnews_articles_sum_fields = (obj?: { __typename?: any } | null): obj is news_articles_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_sum_fields"') + return news_articles_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const news_articles_var_pop_fields_possibleTypes: string[] = ['news_articles_var_pop_fields'] + export const isnews_articles_var_pop_fields = (obj?: { __typename?: any } | null): obj is news_articles_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_var_pop_fields"') + return news_articles_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const news_articles_var_samp_fields_possibleTypes: string[] = ['news_articles_var_samp_fields'] + export const isnews_articles_var_samp_fields = (obj?: { __typename?: any } | null): obj is news_articles_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_var_samp_fields"') + return news_articles_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const news_articles_variance_fields_possibleTypes: string[] = ['news_articles_variance_fields'] + export const isnews_articles_variance_fields = (obj?: { __typename?: any } | null): obj is news_articles_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_variance_fields"') + return news_articles_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const notification_preferences_possibleTypes: string[] = ['notification_preferences'] + export const isnotification_preferences = (obj?: { __typename?: any } | null): obj is notification_preferences => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnotification_preferences"') + return notification_preferences_possibleTypes.includes(obj.__typename) + } + + + + const notification_preferences_aggregate_possibleTypes: string[] = ['notification_preferences_aggregate'] + export const isnotification_preferences_aggregate = (obj?: { __typename?: any } | null): obj is notification_preferences_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnotification_preferences_aggregate"') + return notification_preferences_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const notification_preferences_aggregate_fields_possibleTypes: string[] = ['notification_preferences_aggregate_fields'] + export const isnotification_preferences_aggregate_fields = (obj?: { __typename?: any } | null): obj is notification_preferences_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnotification_preferences_aggregate_fields"') + return notification_preferences_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const notification_preferences_avg_fields_possibleTypes: string[] = ['notification_preferences_avg_fields'] + export const isnotification_preferences_avg_fields = (obj?: { __typename?: any } | null): obj is notification_preferences_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnotification_preferences_avg_fields"') + return notification_preferences_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const notification_preferences_max_fields_possibleTypes: string[] = ['notification_preferences_max_fields'] + export const isnotification_preferences_max_fields = (obj?: { __typename?: any } | null): obj is notification_preferences_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnotification_preferences_max_fields"') + return notification_preferences_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const notification_preferences_min_fields_possibleTypes: string[] = ['notification_preferences_min_fields'] + export const isnotification_preferences_min_fields = (obj?: { __typename?: any } | null): obj is notification_preferences_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnotification_preferences_min_fields"') + return notification_preferences_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const notification_preferences_mutation_response_possibleTypes: string[] = ['notification_preferences_mutation_response'] + export const isnotification_preferences_mutation_response = (obj?: { __typename?: any } | null): obj is notification_preferences_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnotification_preferences_mutation_response"') + return notification_preferences_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const notification_preferences_stddev_fields_possibleTypes: string[] = ['notification_preferences_stddev_fields'] + export const isnotification_preferences_stddev_fields = (obj?: { __typename?: any } | null): obj is notification_preferences_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnotification_preferences_stddev_fields"') + return notification_preferences_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const notification_preferences_stddev_pop_fields_possibleTypes: string[] = ['notification_preferences_stddev_pop_fields'] + export const isnotification_preferences_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is notification_preferences_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnotification_preferences_stddev_pop_fields"') + return notification_preferences_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const notification_preferences_stddev_samp_fields_possibleTypes: string[] = ['notification_preferences_stddev_samp_fields'] + export const isnotification_preferences_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is notification_preferences_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnotification_preferences_stddev_samp_fields"') + return notification_preferences_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const notification_preferences_sum_fields_possibleTypes: string[] = ['notification_preferences_sum_fields'] + export const isnotification_preferences_sum_fields = (obj?: { __typename?: any } | null): obj is notification_preferences_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnotification_preferences_sum_fields"') + return notification_preferences_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const notification_preferences_var_pop_fields_possibleTypes: string[] = ['notification_preferences_var_pop_fields'] + export const isnotification_preferences_var_pop_fields = (obj?: { __typename?: any } | null): obj is notification_preferences_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnotification_preferences_var_pop_fields"') + return notification_preferences_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const notification_preferences_var_samp_fields_possibleTypes: string[] = ['notification_preferences_var_samp_fields'] + export const isnotification_preferences_var_samp_fields = (obj?: { __typename?: any } | null): obj is notification_preferences_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnotification_preferences_var_samp_fields"') + return notification_preferences_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const notification_preferences_variance_fields_possibleTypes: string[] = ['notification_preferences_variance_fields'] + export const isnotification_preferences_variance_fields = (obj?: { __typename?: any } | null): obj is notification_preferences_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnotification_preferences_variance_fields"') + return notification_preferences_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const notifications_possibleTypes: string[] = ['notifications'] + export const isnotifications = (obj?: { __typename?: any } | null): obj is notifications => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnotifications"') + return notifications_possibleTypes.includes(obj.__typename) + } + + + + const notifications_aggregate_possibleTypes: string[] = ['notifications_aggregate'] + export const isnotifications_aggregate = (obj?: { __typename?: any } | null): obj is notifications_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnotifications_aggregate"') + return notifications_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const notifications_aggregate_fields_possibleTypes: string[] = ['notifications_aggregate_fields'] + export const isnotifications_aggregate_fields = (obj?: { __typename?: any } | null): obj is notifications_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnotifications_aggregate_fields"') + return notifications_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const notifications_avg_fields_possibleTypes: string[] = ['notifications_avg_fields'] + export const isnotifications_avg_fields = (obj?: { __typename?: any } | null): obj is notifications_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnotifications_avg_fields"') + return notifications_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const notifications_max_fields_possibleTypes: string[] = ['notifications_max_fields'] + export const isnotifications_max_fields = (obj?: { __typename?: any } | null): obj is notifications_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnotifications_max_fields"') + return notifications_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const notifications_min_fields_possibleTypes: string[] = ['notifications_min_fields'] + export const isnotifications_min_fields = (obj?: { __typename?: any } | null): obj is notifications_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnotifications_min_fields"') + return notifications_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const notifications_mutation_response_possibleTypes: string[] = ['notifications_mutation_response'] + export const isnotifications_mutation_response = (obj?: { __typename?: any } | null): obj is notifications_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnotifications_mutation_response"') + return notifications_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const notifications_stddev_fields_possibleTypes: string[] = ['notifications_stddev_fields'] + export const isnotifications_stddev_fields = (obj?: { __typename?: any } | null): obj is notifications_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnotifications_stddev_fields"') + return notifications_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const notifications_stddev_pop_fields_possibleTypes: string[] = ['notifications_stddev_pop_fields'] + export const isnotifications_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is notifications_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnotifications_stddev_pop_fields"') + return notifications_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const notifications_stddev_samp_fields_possibleTypes: string[] = ['notifications_stddev_samp_fields'] + export const isnotifications_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is notifications_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnotifications_stddev_samp_fields"') + return notifications_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const notifications_sum_fields_possibleTypes: string[] = ['notifications_sum_fields'] + export const isnotifications_sum_fields = (obj?: { __typename?: any } | null): obj is notifications_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnotifications_sum_fields"') + return notifications_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const notifications_var_pop_fields_possibleTypes: string[] = ['notifications_var_pop_fields'] + export const isnotifications_var_pop_fields = (obj?: { __typename?: any } | null): obj is notifications_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnotifications_var_pop_fields"') + return notifications_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const notifications_var_samp_fields_possibleTypes: string[] = ['notifications_var_samp_fields'] + export const isnotifications_var_samp_fields = (obj?: { __typename?: any } | null): obj is notifications_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnotifications_var_samp_fields"') + return notifications_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const notifications_variance_fields_possibleTypes: string[] = ['notifications_variance_fields'] + export const isnotifications_variance_fields = (obj?: { __typename?: any } | null): obj is notifications_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnotifications_variance_fields"') + return notifications_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const pending_match_import_players_possibleTypes: string[] = ['pending_match_import_players'] + export const ispending_match_import_players = (obj?: { __typename?: any } | null): obj is pending_match_import_players => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_import_players"') + return pending_match_import_players_possibleTypes.includes(obj.__typename) + } + + + + const pending_match_import_players_aggregate_possibleTypes: string[] = ['pending_match_import_players_aggregate'] + export const ispending_match_import_players_aggregate = (obj?: { __typename?: any } | null): obj is pending_match_import_players_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_import_players_aggregate"') + return pending_match_import_players_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const pending_match_import_players_aggregate_fields_possibleTypes: string[] = ['pending_match_import_players_aggregate_fields'] + export const ispending_match_import_players_aggregate_fields = (obj?: { __typename?: any } | null): obj is pending_match_import_players_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_import_players_aggregate_fields"') + return pending_match_import_players_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const pending_match_import_players_avg_fields_possibleTypes: string[] = ['pending_match_import_players_avg_fields'] + export const ispending_match_import_players_avg_fields = (obj?: { __typename?: any } | null): obj is pending_match_import_players_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_import_players_avg_fields"') + return pending_match_import_players_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const pending_match_import_players_max_fields_possibleTypes: string[] = ['pending_match_import_players_max_fields'] + export const ispending_match_import_players_max_fields = (obj?: { __typename?: any } | null): obj is pending_match_import_players_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_import_players_max_fields"') + return pending_match_import_players_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const pending_match_import_players_min_fields_possibleTypes: string[] = ['pending_match_import_players_min_fields'] + export const ispending_match_import_players_min_fields = (obj?: { __typename?: any } | null): obj is pending_match_import_players_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_import_players_min_fields"') + return pending_match_import_players_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const pending_match_import_players_mutation_response_possibleTypes: string[] = ['pending_match_import_players_mutation_response'] + export const ispending_match_import_players_mutation_response = (obj?: { __typename?: any } | null): obj is pending_match_import_players_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_import_players_mutation_response"') + return pending_match_import_players_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const pending_match_import_players_stddev_fields_possibleTypes: string[] = ['pending_match_import_players_stddev_fields'] + export const ispending_match_import_players_stddev_fields = (obj?: { __typename?: any } | null): obj is pending_match_import_players_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_import_players_stddev_fields"') + return pending_match_import_players_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const pending_match_import_players_stddev_pop_fields_possibleTypes: string[] = ['pending_match_import_players_stddev_pop_fields'] + export const ispending_match_import_players_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is pending_match_import_players_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_import_players_stddev_pop_fields"') + return pending_match_import_players_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const pending_match_import_players_stddev_samp_fields_possibleTypes: string[] = ['pending_match_import_players_stddev_samp_fields'] + export const ispending_match_import_players_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is pending_match_import_players_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_import_players_stddev_samp_fields"') + return pending_match_import_players_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const pending_match_import_players_sum_fields_possibleTypes: string[] = ['pending_match_import_players_sum_fields'] + export const ispending_match_import_players_sum_fields = (obj?: { __typename?: any } | null): obj is pending_match_import_players_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_import_players_sum_fields"') + return pending_match_import_players_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const pending_match_import_players_var_pop_fields_possibleTypes: string[] = ['pending_match_import_players_var_pop_fields'] + export const ispending_match_import_players_var_pop_fields = (obj?: { __typename?: any } | null): obj is pending_match_import_players_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_import_players_var_pop_fields"') + return pending_match_import_players_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const pending_match_import_players_var_samp_fields_possibleTypes: string[] = ['pending_match_import_players_var_samp_fields'] + export const ispending_match_import_players_var_samp_fields = (obj?: { __typename?: any } | null): obj is pending_match_import_players_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_import_players_var_samp_fields"') + return pending_match_import_players_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const pending_match_import_players_variance_fields_possibleTypes: string[] = ['pending_match_import_players_variance_fields'] + export const ispending_match_import_players_variance_fields = (obj?: { __typename?: any } | null): obj is pending_match_import_players_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_import_players_variance_fields"') + return pending_match_import_players_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const pending_match_imports_possibleTypes: string[] = ['pending_match_imports'] + export const ispending_match_imports = (obj?: { __typename?: any } | null): obj is pending_match_imports => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_imports"') + return pending_match_imports_possibleTypes.includes(obj.__typename) + } + + + + const pending_match_imports_aggregate_possibleTypes: string[] = ['pending_match_imports_aggregate'] + export const ispending_match_imports_aggregate = (obj?: { __typename?: any } | null): obj is pending_match_imports_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_imports_aggregate"') + return pending_match_imports_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const pending_match_imports_aggregate_fields_possibleTypes: string[] = ['pending_match_imports_aggregate_fields'] + export const ispending_match_imports_aggregate_fields = (obj?: { __typename?: any } | null): obj is pending_match_imports_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_imports_aggregate_fields"') + return pending_match_imports_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const pending_match_imports_avg_fields_possibleTypes: string[] = ['pending_match_imports_avg_fields'] + export const ispending_match_imports_avg_fields = (obj?: { __typename?: any } | null): obj is pending_match_imports_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_imports_avg_fields"') + return pending_match_imports_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const pending_match_imports_max_fields_possibleTypes: string[] = ['pending_match_imports_max_fields'] + export const ispending_match_imports_max_fields = (obj?: { __typename?: any } | null): obj is pending_match_imports_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_imports_max_fields"') + return pending_match_imports_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const pending_match_imports_min_fields_possibleTypes: string[] = ['pending_match_imports_min_fields'] + export const ispending_match_imports_min_fields = (obj?: { __typename?: any } | null): obj is pending_match_imports_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_imports_min_fields"') + return pending_match_imports_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const pending_match_imports_mutation_response_possibleTypes: string[] = ['pending_match_imports_mutation_response'] + export const ispending_match_imports_mutation_response = (obj?: { __typename?: any } | null): obj is pending_match_imports_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_imports_mutation_response"') + return pending_match_imports_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const pending_match_imports_stddev_fields_possibleTypes: string[] = ['pending_match_imports_stddev_fields'] + export const ispending_match_imports_stddev_fields = (obj?: { __typename?: any } | null): obj is pending_match_imports_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_imports_stddev_fields"') + return pending_match_imports_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const pending_match_imports_stddev_pop_fields_possibleTypes: string[] = ['pending_match_imports_stddev_pop_fields'] + export const ispending_match_imports_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is pending_match_imports_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_imports_stddev_pop_fields"') + return pending_match_imports_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const pending_match_imports_stddev_samp_fields_possibleTypes: string[] = ['pending_match_imports_stddev_samp_fields'] + export const ispending_match_imports_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is pending_match_imports_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_imports_stddev_samp_fields"') + return pending_match_imports_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const pending_match_imports_sum_fields_possibleTypes: string[] = ['pending_match_imports_sum_fields'] + export const ispending_match_imports_sum_fields = (obj?: { __typename?: any } | null): obj is pending_match_imports_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_imports_sum_fields"') + return pending_match_imports_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const pending_match_imports_var_pop_fields_possibleTypes: string[] = ['pending_match_imports_var_pop_fields'] + export const ispending_match_imports_var_pop_fields = (obj?: { __typename?: any } | null): obj is pending_match_imports_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_imports_var_pop_fields"') + return pending_match_imports_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const pending_match_imports_var_samp_fields_possibleTypes: string[] = ['pending_match_imports_var_samp_fields'] + export const ispending_match_imports_var_samp_fields = (obj?: { __typename?: any } | null): obj is pending_match_imports_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_imports_var_samp_fields"') + return pending_match_imports_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const pending_match_imports_variance_fields_possibleTypes: string[] = ['pending_match_imports_variance_fields'] + export const ispending_match_imports_variance_fields = (obj?: { __typename?: any } | null): obj is pending_match_imports_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispending_match_imports_variance_fields"') + return pending_match_imports_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_aim_stats_demo_possibleTypes: string[] = ['player_aim_stats_demo'] + export const isplayer_aim_stats_demo = (obj?: { __typename?: any } | null): obj is player_aim_stats_demo => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_stats_demo"') + return player_aim_stats_demo_possibleTypes.includes(obj.__typename) + } + + + + const player_aim_stats_demo_aggregate_possibleTypes: string[] = ['player_aim_stats_demo_aggregate'] + export const isplayer_aim_stats_demo_aggregate = (obj?: { __typename?: any } | null): obj is player_aim_stats_demo_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_stats_demo_aggregate"') + return player_aim_stats_demo_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const player_aim_stats_demo_aggregate_fields_possibleTypes: string[] = ['player_aim_stats_demo_aggregate_fields'] + export const isplayer_aim_stats_demo_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_aim_stats_demo_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_stats_demo_aggregate_fields"') + return player_aim_stats_demo_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_aim_stats_demo_avg_fields_possibleTypes: string[] = ['player_aim_stats_demo_avg_fields'] + export const isplayer_aim_stats_demo_avg_fields = (obj?: { __typename?: any } | null): obj is player_aim_stats_demo_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_stats_demo_avg_fields"') + return player_aim_stats_demo_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_aim_stats_demo_max_fields_possibleTypes: string[] = ['player_aim_stats_demo_max_fields'] + export const isplayer_aim_stats_demo_max_fields = (obj?: { __typename?: any } | null): obj is player_aim_stats_demo_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_stats_demo_max_fields"') + return player_aim_stats_demo_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_aim_stats_demo_min_fields_possibleTypes: string[] = ['player_aim_stats_demo_min_fields'] + export const isplayer_aim_stats_demo_min_fields = (obj?: { __typename?: any } | null): obj is player_aim_stats_demo_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_stats_demo_min_fields"') + return player_aim_stats_demo_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_aim_stats_demo_mutation_response_possibleTypes: string[] = ['player_aim_stats_demo_mutation_response'] + export const isplayer_aim_stats_demo_mutation_response = (obj?: { __typename?: any } | null): obj is player_aim_stats_demo_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_stats_demo_mutation_response"') + return player_aim_stats_demo_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const player_aim_stats_demo_stddev_fields_possibleTypes: string[] = ['player_aim_stats_demo_stddev_fields'] + export const isplayer_aim_stats_demo_stddev_fields = (obj?: { __typename?: any } | null): obj is player_aim_stats_demo_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_stats_demo_stddev_fields"') + return player_aim_stats_demo_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_aim_stats_demo_stddev_pop_fields_possibleTypes: string[] = ['player_aim_stats_demo_stddev_pop_fields'] + export const isplayer_aim_stats_demo_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_aim_stats_demo_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_stats_demo_stddev_pop_fields"') + return player_aim_stats_demo_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_aim_stats_demo_stddev_samp_fields_possibleTypes: string[] = ['player_aim_stats_demo_stddev_samp_fields'] + export const isplayer_aim_stats_demo_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_aim_stats_demo_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_stats_demo_stddev_samp_fields"') + return player_aim_stats_demo_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_aim_stats_demo_sum_fields_possibleTypes: string[] = ['player_aim_stats_demo_sum_fields'] + export const isplayer_aim_stats_demo_sum_fields = (obj?: { __typename?: any } | null): obj is player_aim_stats_demo_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_stats_demo_sum_fields"') + return player_aim_stats_demo_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_aim_stats_demo_var_pop_fields_possibleTypes: string[] = ['player_aim_stats_demo_var_pop_fields'] + export const isplayer_aim_stats_demo_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_aim_stats_demo_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_stats_demo_var_pop_fields"') + return player_aim_stats_demo_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_aim_stats_demo_var_samp_fields_possibleTypes: string[] = ['player_aim_stats_demo_var_samp_fields'] + export const isplayer_aim_stats_demo_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_aim_stats_demo_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_stats_demo_var_samp_fields"') + return player_aim_stats_demo_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_aim_stats_demo_variance_fields_possibleTypes: string[] = ['player_aim_stats_demo_variance_fields'] + export const isplayer_aim_stats_demo_variance_fields = (obj?: { __typename?: any } | null): obj is player_aim_stats_demo_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_stats_demo_variance_fields"') + return player_aim_stats_demo_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_aim_weapon_stats_possibleTypes: string[] = ['player_aim_weapon_stats'] + export const isplayer_aim_weapon_stats = (obj?: { __typename?: any } | null): obj is player_aim_weapon_stats => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_weapon_stats"') + return player_aim_weapon_stats_possibleTypes.includes(obj.__typename) + } + + + + const player_aim_weapon_stats_aggregate_possibleTypes: string[] = ['player_aim_weapon_stats_aggregate'] + export const isplayer_aim_weapon_stats_aggregate = (obj?: { __typename?: any } | null): obj is player_aim_weapon_stats_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_weapon_stats_aggregate"') + return player_aim_weapon_stats_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const player_aim_weapon_stats_aggregate_fields_possibleTypes: string[] = ['player_aim_weapon_stats_aggregate_fields'] + export const isplayer_aim_weapon_stats_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_aim_weapon_stats_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_weapon_stats_aggregate_fields"') + return player_aim_weapon_stats_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_aim_weapon_stats_avg_fields_possibleTypes: string[] = ['player_aim_weapon_stats_avg_fields'] + export const isplayer_aim_weapon_stats_avg_fields = (obj?: { __typename?: any } | null): obj is player_aim_weapon_stats_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_weapon_stats_avg_fields"') + return player_aim_weapon_stats_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_aim_weapon_stats_max_fields_possibleTypes: string[] = ['player_aim_weapon_stats_max_fields'] + export const isplayer_aim_weapon_stats_max_fields = (obj?: { __typename?: any } | null): obj is player_aim_weapon_stats_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_weapon_stats_max_fields"') + return player_aim_weapon_stats_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_aim_weapon_stats_min_fields_possibleTypes: string[] = ['player_aim_weapon_stats_min_fields'] + export const isplayer_aim_weapon_stats_min_fields = (obj?: { __typename?: any } | null): obj is player_aim_weapon_stats_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_weapon_stats_min_fields"') + return player_aim_weapon_stats_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_aim_weapon_stats_mutation_response_possibleTypes: string[] = ['player_aim_weapon_stats_mutation_response'] + export const isplayer_aim_weapon_stats_mutation_response = (obj?: { __typename?: any } | null): obj is player_aim_weapon_stats_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_weapon_stats_mutation_response"') + return player_aim_weapon_stats_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const player_aim_weapon_stats_stddev_fields_possibleTypes: string[] = ['player_aim_weapon_stats_stddev_fields'] + export const isplayer_aim_weapon_stats_stddev_fields = (obj?: { __typename?: any } | null): obj is player_aim_weapon_stats_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_weapon_stats_stddev_fields"') + return player_aim_weapon_stats_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_aim_weapon_stats_stddev_pop_fields_possibleTypes: string[] = ['player_aim_weapon_stats_stddev_pop_fields'] + export const isplayer_aim_weapon_stats_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_aim_weapon_stats_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_weapon_stats_stddev_pop_fields"') + return player_aim_weapon_stats_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_aim_weapon_stats_stddev_samp_fields_possibleTypes: string[] = ['player_aim_weapon_stats_stddev_samp_fields'] + export const isplayer_aim_weapon_stats_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_aim_weapon_stats_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_weapon_stats_stddev_samp_fields"') + return player_aim_weapon_stats_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_aim_weapon_stats_sum_fields_possibleTypes: string[] = ['player_aim_weapon_stats_sum_fields'] + export const isplayer_aim_weapon_stats_sum_fields = (obj?: { __typename?: any } | null): obj is player_aim_weapon_stats_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_weapon_stats_sum_fields"') + return player_aim_weapon_stats_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_aim_weapon_stats_var_pop_fields_possibleTypes: string[] = ['player_aim_weapon_stats_var_pop_fields'] + export const isplayer_aim_weapon_stats_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_aim_weapon_stats_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_weapon_stats_var_pop_fields"') + return player_aim_weapon_stats_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_aim_weapon_stats_var_samp_fields_possibleTypes: string[] = ['player_aim_weapon_stats_var_samp_fields'] + export const isplayer_aim_weapon_stats_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_aim_weapon_stats_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_weapon_stats_var_samp_fields"') + return player_aim_weapon_stats_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_aim_weapon_stats_variance_fields_possibleTypes: string[] = ['player_aim_weapon_stats_variance_fields'] + export const isplayer_aim_weapon_stats_variance_fields = (obj?: { __typename?: any } | null): obj is player_aim_weapon_stats_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_aim_weapon_stats_variance_fields"') + return player_aim_weapon_stats_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_assists_possibleTypes: string[] = ['player_assists'] + export const isplayer_assists = (obj?: { __typename?: any } | null): obj is player_assists => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_assists"') + return player_assists_possibleTypes.includes(obj.__typename) + } + + + + const player_assists_aggregate_possibleTypes: string[] = ['player_assists_aggregate'] + export const isplayer_assists_aggregate = (obj?: { __typename?: any } | null): obj is player_assists_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_assists_aggregate"') + return player_assists_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const player_assists_aggregate_fields_possibleTypes: string[] = ['player_assists_aggregate_fields'] + export const isplayer_assists_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_assists_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_assists_aggregate_fields"') + return player_assists_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_assists_avg_fields_possibleTypes: string[] = ['player_assists_avg_fields'] + export const isplayer_assists_avg_fields = (obj?: { __typename?: any } | null): obj is player_assists_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_assists_avg_fields"') + return player_assists_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_assists_max_fields_possibleTypes: string[] = ['player_assists_max_fields'] + export const isplayer_assists_max_fields = (obj?: { __typename?: any } | null): obj is player_assists_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_assists_max_fields"') + return player_assists_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_assists_min_fields_possibleTypes: string[] = ['player_assists_min_fields'] + export const isplayer_assists_min_fields = (obj?: { __typename?: any } | null): obj is player_assists_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_assists_min_fields"') + return player_assists_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_assists_mutation_response_possibleTypes: string[] = ['player_assists_mutation_response'] + export const isplayer_assists_mutation_response = (obj?: { __typename?: any } | null): obj is player_assists_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_assists_mutation_response"') + return player_assists_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const player_assists_stddev_fields_possibleTypes: string[] = ['player_assists_stddev_fields'] + export const isplayer_assists_stddev_fields = (obj?: { __typename?: any } | null): obj is player_assists_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_assists_stddev_fields"') + return player_assists_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_assists_stddev_pop_fields_possibleTypes: string[] = ['player_assists_stddev_pop_fields'] + export const isplayer_assists_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_assists_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_assists_stddev_pop_fields"') + return player_assists_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_assists_stddev_samp_fields_possibleTypes: string[] = ['player_assists_stddev_samp_fields'] + export const isplayer_assists_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_assists_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_assists_stddev_samp_fields"') + return player_assists_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_assists_sum_fields_possibleTypes: string[] = ['player_assists_sum_fields'] + export const isplayer_assists_sum_fields = (obj?: { __typename?: any } | null): obj is player_assists_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_assists_sum_fields"') + return player_assists_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_assists_var_pop_fields_possibleTypes: string[] = ['player_assists_var_pop_fields'] + export const isplayer_assists_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_assists_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_assists_var_pop_fields"') + return player_assists_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_assists_var_samp_fields_possibleTypes: string[] = ['player_assists_var_samp_fields'] + export const isplayer_assists_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_assists_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_assists_var_samp_fields"') + return player_assists_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_assists_variance_fields_possibleTypes: string[] = ['player_assists_variance_fields'] + export const isplayer_assists_variance_fields = (obj?: { __typename?: any } | null): obj is player_assists_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_assists_variance_fields"') + return player_assists_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_career_stats_v_possibleTypes: string[] = ['player_career_stats_v'] + export const isplayer_career_stats_v = (obj?: { __typename?: any } | null): obj is player_career_stats_v => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_career_stats_v"') + return player_career_stats_v_possibleTypes.includes(obj.__typename) + } + + + + const player_career_stats_v_aggregate_possibleTypes: string[] = ['player_career_stats_v_aggregate'] + export const isplayer_career_stats_v_aggregate = (obj?: { __typename?: any } | null): obj is player_career_stats_v_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_career_stats_v_aggregate"') + return player_career_stats_v_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const player_career_stats_v_aggregate_fields_possibleTypes: string[] = ['player_career_stats_v_aggregate_fields'] + export const isplayer_career_stats_v_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_career_stats_v_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_career_stats_v_aggregate_fields"') + return player_career_stats_v_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_career_stats_v_avg_fields_possibleTypes: string[] = ['player_career_stats_v_avg_fields'] + export const isplayer_career_stats_v_avg_fields = (obj?: { __typename?: any } | null): obj is player_career_stats_v_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_career_stats_v_avg_fields"') + return player_career_stats_v_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_career_stats_v_max_fields_possibleTypes: string[] = ['player_career_stats_v_max_fields'] + export const isplayer_career_stats_v_max_fields = (obj?: { __typename?: any } | null): obj is player_career_stats_v_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_career_stats_v_max_fields"') + return player_career_stats_v_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_career_stats_v_min_fields_possibleTypes: string[] = ['player_career_stats_v_min_fields'] + export const isplayer_career_stats_v_min_fields = (obj?: { __typename?: any } | null): obj is player_career_stats_v_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_career_stats_v_min_fields"') + return player_career_stats_v_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_career_stats_v_stddev_fields_possibleTypes: string[] = ['player_career_stats_v_stddev_fields'] + export const isplayer_career_stats_v_stddev_fields = (obj?: { __typename?: any } | null): obj is player_career_stats_v_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_career_stats_v_stddev_fields"') + return player_career_stats_v_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_career_stats_v_stddev_pop_fields_possibleTypes: string[] = ['player_career_stats_v_stddev_pop_fields'] + export const isplayer_career_stats_v_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_career_stats_v_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_career_stats_v_stddev_pop_fields"') + return player_career_stats_v_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_career_stats_v_stddev_samp_fields_possibleTypes: string[] = ['player_career_stats_v_stddev_samp_fields'] + export const isplayer_career_stats_v_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_career_stats_v_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_career_stats_v_stddev_samp_fields"') + return player_career_stats_v_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_career_stats_v_sum_fields_possibleTypes: string[] = ['player_career_stats_v_sum_fields'] + export const isplayer_career_stats_v_sum_fields = (obj?: { __typename?: any } | null): obj is player_career_stats_v_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_career_stats_v_sum_fields"') + return player_career_stats_v_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_career_stats_v_var_pop_fields_possibleTypes: string[] = ['player_career_stats_v_var_pop_fields'] + export const isplayer_career_stats_v_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_career_stats_v_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_career_stats_v_var_pop_fields"') + return player_career_stats_v_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_career_stats_v_var_samp_fields_possibleTypes: string[] = ['player_career_stats_v_var_samp_fields'] + export const isplayer_career_stats_v_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_career_stats_v_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_career_stats_v_var_samp_fields"') + return player_career_stats_v_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_career_stats_v_variance_fields_possibleTypes: string[] = ['player_career_stats_v_variance_fields'] + export const isplayer_career_stats_v_variance_fields = (obj?: { __typename?: any } | null): obj is player_career_stats_v_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_career_stats_v_variance_fields"') + return player_career_stats_v_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_damages_possibleTypes: string[] = ['player_damages'] + export const isplayer_damages = (obj?: { __typename?: any } | null): obj is player_damages => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_damages"') + return player_damages_possibleTypes.includes(obj.__typename) + } + + + + const player_damages_aggregate_possibleTypes: string[] = ['player_damages_aggregate'] + export const isplayer_damages_aggregate = (obj?: { __typename?: any } | null): obj is player_damages_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_damages_aggregate"') + return player_damages_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const player_damages_aggregate_fields_possibleTypes: string[] = ['player_damages_aggregate_fields'] + export const isplayer_damages_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_damages_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_damages_aggregate_fields"') + return player_damages_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_damages_avg_fields_possibleTypes: string[] = ['player_damages_avg_fields'] + export const isplayer_damages_avg_fields = (obj?: { __typename?: any } | null): obj is player_damages_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_damages_avg_fields"') + return player_damages_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_damages_max_fields_possibleTypes: string[] = ['player_damages_max_fields'] + export const isplayer_damages_max_fields = (obj?: { __typename?: any } | null): obj is player_damages_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_damages_max_fields"') + return player_damages_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_damages_min_fields_possibleTypes: string[] = ['player_damages_min_fields'] + export const isplayer_damages_min_fields = (obj?: { __typename?: any } | null): obj is player_damages_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_damages_min_fields"') + return player_damages_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_damages_mutation_response_possibleTypes: string[] = ['player_damages_mutation_response'] + export const isplayer_damages_mutation_response = (obj?: { __typename?: any } | null): obj is player_damages_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_damages_mutation_response"') + return player_damages_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const player_damages_stddev_fields_possibleTypes: string[] = ['player_damages_stddev_fields'] + export const isplayer_damages_stddev_fields = (obj?: { __typename?: any } | null): obj is player_damages_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_damages_stddev_fields"') + return player_damages_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_damages_stddev_pop_fields_possibleTypes: string[] = ['player_damages_stddev_pop_fields'] + export const isplayer_damages_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_damages_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_damages_stddev_pop_fields"') + return player_damages_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_damages_stddev_samp_fields_possibleTypes: string[] = ['player_damages_stddev_samp_fields'] + export const isplayer_damages_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_damages_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_damages_stddev_samp_fields"') + return player_damages_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_damages_sum_fields_possibleTypes: string[] = ['player_damages_sum_fields'] + export const isplayer_damages_sum_fields = (obj?: { __typename?: any } | null): obj is player_damages_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_damages_sum_fields"') + return player_damages_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_damages_var_pop_fields_possibleTypes: string[] = ['player_damages_var_pop_fields'] + export const isplayer_damages_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_damages_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_damages_var_pop_fields"') + return player_damages_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_damages_var_samp_fields_possibleTypes: string[] = ['player_damages_var_samp_fields'] + export const isplayer_damages_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_damages_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_damages_var_samp_fields"') + return player_damages_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_damages_variance_fields_possibleTypes: string[] = ['player_damages_variance_fields'] + export const isplayer_damages_variance_fields = (obj?: { __typename?: any } | null): obj is player_damages_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_damages_variance_fields"') + return player_damages_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_elo_possibleTypes: string[] = ['player_elo'] + export const isplayer_elo = (obj?: { __typename?: any } | null): obj is player_elo => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_elo"') + return player_elo_possibleTypes.includes(obj.__typename) + } + + + + const player_elo_aggregate_possibleTypes: string[] = ['player_elo_aggregate'] + export const isplayer_elo_aggregate = (obj?: { __typename?: any } | null): obj is player_elo_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_elo_aggregate"') + return player_elo_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const player_elo_aggregate_fields_possibleTypes: string[] = ['player_elo_aggregate_fields'] + export const isplayer_elo_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_elo_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_elo_aggregate_fields"') + return player_elo_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_elo_avg_fields_possibleTypes: string[] = ['player_elo_avg_fields'] + export const isplayer_elo_avg_fields = (obj?: { __typename?: any } | null): obj is player_elo_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_elo_avg_fields"') + return player_elo_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_elo_max_fields_possibleTypes: string[] = ['player_elo_max_fields'] + export const isplayer_elo_max_fields = (obj?: { __typename?: any } | null): obj is player_elo_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_elo_max_fields"') + return player_elo_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_elo_min_fields_possibleTypes: string[] = ['player_elo_min_fields'] + export const isplayer_elo_min_fields = (obj?: { __typename?: any } | null): obj is player_elo_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_elo_min_fields"') + return player_elo_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_elo_mutation_response_possibleTypes: string[] = ['player_elo_mutation_response'] + export const isplayer_elo_mutation_response = (obj?: { __typename?: any } | null): obj is player_elo_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_elo_mutation_response"') + return player_elo_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const player_elo_stddev_fields_possibleTypes: string[] = ['player_elo_stddev_fields'] + export const isplayer_elo_stddev_fields = (obj?: { __typename?: any } | null): obj is player_elo_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_elo_stddev_fields"') + return player_elo_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_elo_stddev_pop_fields_possibleTypes: string[] = ['player_elo_stddev_pop_fields'] + export const isplayer_elo_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_elo_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_elo_stddev_pop_fields"') + return player_elo_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_elo_stddev_samp_fields_possibleTypes: string[] = ['player_elo_stddev_samp_fields'] + export const isplayer_elo_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_elo_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_elo_stddev_samp_fields"') + return player_elo_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_elo_sum_fields_possibleTypes: string[] = ['player_elo_sum_fields'] + export const isplayer_elo_sum_fields = (obj?: { __typename?: any } | null): obj is player_elo_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_elo_sum_fields"') + return player_elo_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_elo_var_pop_fields_possibleTypes: string[] = ['player_elo_var_pop_fields'] + export const isplayer_elo_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_elo_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_elo_var_pop_fields"') + return player_elo_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_elo_var_samp_fields_possibleTypes: string[] = ['player_elo_var_samp_fields'] + export const isplayer_elo_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_elo_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_elo_var_samp_fields"') + return player_elo_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_elo_variance_fields_possibleTypes: string[] = ['player_elo_variance_fields'] + export const isplayer_elo_variance_fields = (obj?: { __typename?: any } | null): obj is player_elo_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_elo_variance_fields"') + return player_elo_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_faceit_rank_history_possibleTypes: string[] = ['player_faceit_rank_history'] + export const isplayer_faceit_rank_history = (obj?: { __typename?: any } | null): obj is player_faceit_rank_history => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_faceit_rank_history"') + return player_faceit_rank_history_possibleTypes.includes(obj.__typename) + } + + + + const player_faceit_rank_history_aggregate_possibleTypes: string[] = ['player_faceit_rank_history_aggregate'] + export const isplayer_faceit_rank_history_aggregate = (obj?: { __typename?: any } | null): obj is player_faceit_rank_history_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_faceit_rank_history_aggregate"') + return player_faceit_rank_history_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const player_faceit_rank_history_aggregate_fields_possibleTypes: string[] = ['player_faceit_rank_history_aggregate_fields'] + export const isplayer_faceit_rank_history_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_faceit_rank_history_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_faceit_rank_history_aggregate_fields"') + return player_faceit_rank_history_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_faceit_rank_history_avg_fields_possibleTypes: string[] = ['player_faceit_rank_history_avg_fields'] + export const isplayer_faceit_rank_history_avg_fields = (obj?: { __typename?: any } | null): obj is player_faceit_rank_history_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_faceit_rank_history_avg_fields"') + return player_faceit_rank_history_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_faceit_rank_history_max_fields_possibleTypes: string[] = ['player_faceit_rank_history_max_fields'] + export const isplayer_faceit_rank_history_max_fields = (obj?: { __typename?: any } | null): obj is player_faceit_rank_history_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_faceit_rank_history_max_fields"') + return player_faceit_rank_history_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_faceit_rank_history_min_fields_possibleTypes: string[] = ['player_faceit_rank_history_min_fields'] + export const isplayer_faceit_rank_history_min_fields = (obj?: { __typename?: any } | null): obj is player_faceit_rank_history_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_faceit_rank_history_min_fields"') + return player_faceit_rank_history_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_faceit_rank_history_mutation_response_possibleTypes: string[] = ['player_faceit_rank_history_mutation_response'] + export const isplayer_faceit_rank_history_mutation_response = (obj?: { __typename?: any } | null): obj is player_faceit_rank_history_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_faceit_rank_history_mutation_response"') + return player_faceit_rank_history_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const player_faceit_rank_history_stddev_fields_possibleTypes: string[] = ['player_faceit_rank_history_stddev_fields'] + export const isplayer_faceit_rank_history_stddev_fields = (obj?: { __typename?: any } | null): obj is player_faceit_rank_history_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_faceit_rank_history_stddev_fields"') + return player_faceit_rank_history_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_faceit_rank_history_stddev_pop_fields_possibleTypes: string[] = ['player_faceit_rank_history_stddev_pop_fields'] + export const isplayer_faceit_rank_history_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_faceit_rank_history_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_faceit_rank_history_stddev_pop_fields"') + return player_faceit_rank_history_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_faceit_rank_history_stddev_samp_fields_possibleTypes: string[] = ['player_faceit_rank_history_stddev_samp_fields'] + export const isplayer_faceit_rank_history_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_faceit_rank_history_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_faceit_rank_history_stddev_samp_fields"') + return player_faceit_rank_history_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_faceit_rank_history_sum_fields_possibleTypes: string[] = ['player_faceit_rank_history_sum_fields'] + export const isplayer_faceit_rank_history_sum_fields = (obj?: { __typename?: any } | null): obj is player_faceit_rank_history_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_faceit_rank_history_sum_fields"') + return player_faceit_rank_history_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_faceit_rank_history_var_pop_fields_possibleTypes: string[] = ['player_faceit_rank_history_var_pop_fields'] + export const isplayer_faceit_rank_history_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_faceit_rank_history_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_faceit_rank_history_var_pop_fields"') + return player_faceit_rank_history_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_faceit_rank_history_var_samp_fields_possibleTypes: string[] = ['player_faceit_rank_history_var_samp_fields'] + export const isplayer_faceit_rank_history_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_faceit_rank_history_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_faceit_rank_history_var_samp_fields"') + return player_faceit_rank_history_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_faceit_rank_history_variance_fields_possibleTypes: string[] = ['player_faceit_rank_history_variance_fields'] + export const isplayer_faceit_rank_history_variance_fields = (obj?: { __typename?: any } | null): obj is player_faceit_rank_history_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_faceit_rank_history_variance_fields"') + return player_faceit_rank_history_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_flashes_possibleTypes: string[] = ['player_flashes'] + export const isplayer_flashes = (obj?: { __typename?: any } | null): obj is player_flashes => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_flashes"') + return player_flashes_possibleTypes.includes(obj.__typename) + } + + + + const player_flashes_aggregate_possibleTypes: string[] = ['player_flashes_aggregate'] + export const isplayer_flashes_aggregate = (obj?: { __typename?: any } | null): obj is player_flashes_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_flashes_aggregate"') + return player_flashes_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const player_flashes_aggregate_fields_possibleTypes: string[] = ['player_flashes_aggregate_fields'] + export const isplayer_flashes_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_flashes_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_flashes_aggregate_fields"') + return player_flashes_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_flashes_avg_fields_possibleTypes: string[] = ['player_flashes_avg_fields'] + export const isplayer_flashes_avg_fields = (obj?: { __typename?: any } | null): obj is player_flashes_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_flashes_avg_fields"') + return player_flashes_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_flashes_max_fields_possibleTypes: string[] = ['player_flashes_max_fields'] + export const isplayer_flashes_max_fields = (obj?: { __typename?: any } | null): obj is player_flashes_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_flashes_max_fields"') + return player_flashes_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_flashes_min_fields_possibleTypes: string[] = ['player_flashes_min_fields'] + export const isplayer_flashes_min_fields = (obj?: { __typename?: any } | null): obj is player_flashes_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_flashes_min_fields"') + return player_flashes_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_flashes_mutation_response_possibleTypes: string[] = ['player_flashes_mutation_response'] + export const isplayer_flashes_mutation_response = (obj?: { __typename?: any } | null): obj is player_flashes_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_flashes_mutation_response"') + return player_flashes_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const player_flashes_stddev_fields_possibleTypes: string[] = ['player_flashes_stddev_fields'] + export const isplayer_flashes_stddev_fields = (obj?: { __typename?: any } | null): obj is player_flashes_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_flashes_stddev_fields"') + return player_flashes_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_flashes_stddev_pop_fields_possibleTypes: string[] = ['player_flashes_stddev_pop_fields'] + export const isplayer_flashes_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_flashes_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_flashes_stddev_pop_fields"') + return player_flashes_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_flashes_stddev_samp_fields_possibleTypes: string[] = ['player_flashes_stddev_samp_fields'] + export const isplayer_flashes_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_flashes_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_flashes_stddev_samp_fields"') + return player_flashes_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_flashes_sum_fields_possibleTypes: string[] = ['player_flashes_sum_fields'] + export const isplayer_flashes_sum_fields = (obj?: { __typename?: any } | null): obj is player_flashes_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_flashes_sum_fields"') + return player_flashes_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_flashes_var_pop_fields_possibleTypes: string[] = ['player_flashes_var_pop_fields'] + export const isplayer_flashes_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_flashes_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_flashes_var_pop_fields"') + return player_flashes_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_flashes_var_samp_fields_possibleTypes: string[] = ['player_flashes_var_samp_fields'] + export const isplayer_flashes_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_flashes_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_flashes_var_samp_fields"') + return player_flashes_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_flashes_variance_fields_possibleTypes: string[] = ['player_flashes_variance_fields'] + export const isplayer_flashes_variance_fields = (obj?: { __typename?: any } | null): obj is player_flashes_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_flashes_variance_fields"') + return player_flashes_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_kills_possibleTypes: string[] = ['player_kills'] + export const isplayer_kills = (obj?: { __typename?: any } | null): obj is player_kills => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills"') + return player_kills_possibleTypes.includes(obj.__typename) + } + + + + const player_kills_aggregate_possibleTypes: string[] = ['player_kills_aggregate'] + export const isplayer_kills_aggregate = (obj?: { __typename?: any } | null): obj is player_kills_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_aggregate"') + return player_kills_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const player_kills_aggregate_fields_possibleTypes: string[] = ['player_kills_aggregate_fields'] + export const isplayer_kills_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_kills_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_aggregate_fields"') + return player_kills_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_kills_avg_fields_possibleTypes: string[] = ['player_kills_avg_fields'] + export const isplayer_kills_avg_fields = (obj?: { __typename?: any } | null): obj is player_kills_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_avg_fields"') + return player_kills_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_kills_by_weapon_possibleTypes: string[] = ['player_kills_by_weapon'] + export const isplayer_kills_by_weapon = (obj?: { __typename?: any } | null): obj is player_kills_by_weapon => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_by_weapon"') + return player_kills_by_weapon_possibleTypes.includes(obj.__typename) + } + + + + const player_kills_by_weapon_aggregate_possibleTypes: string[] = ['player_kills_by_weapon_aggregate'] + export const isplayer_kills_by_weapon_aggregate = (obj?: { __typename?: any } | null): obj is player_kills_by_weapon_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_by_weapon_aggregate"') + return player_kills_by_weapon_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const player_kills_by_weapon_aggregate_fields_possibleTypes: string[] = ['player_kills_by_weapon_aggregate_fields'] + export const isplayer_kills_by_weapon_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_kills_by_weapon_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_by_weapon_aggregate_fields"') + return player_kills_by_weapon_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_kills_by_weapon_avg_fields_possibleTypes: string[] = ['player_kills_by_weapon_avg_fields'] + export const isplayer_kills_by_weapon_avg_fields = (obj?: { __typename?: any } | null): obj is player_kills_by_weapon_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_by_weapon_avg_fields"') + return player_kills_by_weapon_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_kills_by_weapon_max_fields_possibleTypes: string[] = ['player_kills_by_weapon_max_fields'] + export const isplayer_kills_by_weapon_max_fields = (obj?: { __typename?: any } | null): obj is player_kills_by_weapon_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_by_weapon_max_fields"') + return player_kills_by_weapon_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_kills_by_weapon_min_fields_possibleTypes: string[] = ['player_kills_by_weapon_min_fields'] + export const isplayer_kills_by_weapon_min_fields = (obj?: { __typename?: any } | null): obj is player_kills_by_weapon_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_by_weapon_min_fields"') + return player_kills_by_weapon_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_kills_by_weapon_mutation_response_possibleTypes: string[] = ['player_kills_by_weapon_mutation_response'] + export const isplayer_kills_by_weapon_mutation_response = (obj?: { __typename?: any } | null): obj is player_kills_by_weapon_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_by_weapon_mutation_response"') + return player_kills_by_weapon_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const player_kills_by_weapon_stddev_fields_possibleTypes: string[] = ['player_kills_by_weapon_stddev_fields'] + export const isplayer_kills_by_weapon_stddev_fields = (obj?: { __typename?: any } | null): obj is player_kills_by_weapon_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_by_weapon_stddev_fields"') + return player_kills_by_weapon_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_kills_by_weapon_stddev_pop_fields_possibleTypes: string[] = ['player_kills_by_weapon_stddev_pop_fields'] + export const isplayer_kills_by_weapon_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_kills_by_weapon_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_by_weapon_stddev_pop_fields"') + return player_kills_by_weapon_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_kills_by_weapon_stddev_samp_fields_possibleTypes: string[] = ['player_kills_by_weapon_stddev_samp_fields'] + export const isplayer_kills_by_weapon_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_kills_by_weapon_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_by_weapon_stddev_samp_fields"') + return player_kills_by_weapon_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_kills_by_weapon_sum_fields_possibleTypes: string[] = ['player_kills_by_weapon_sum_fields'] + export const isplayer_kills_by_weapon_sum_fields = (obj?: { __typename?: any } | null): obj is player_kills_by_weapon_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_by_weapon_sum_fields"') + return player_kills_by_weapon_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_kills_by_weapon_var_pop_fields_possibleTypes: string[] = ['player_kills_by_weapon_var_pop_fields'] + export const isplayer_kills_by_weapon_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_kills_by_weapon_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_by_weapon_var_pop_fields"') + return player_kills_by_weapon_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_kills_by_weapon_var_samp_fields_possibleTypes: string[] = ['player_kills_by_weapon_var_samp_fields'] + export const isplayer_kills_by_weapon_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_kills_by_weapon_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_by_weapon_var_samp_fields"') + return player_kills_by_weapon_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_kills_by_weapon_variance_fields_possibleTypes: string[] = ['player_kills_by_weapon_variance_fields'] + export const isplayer_kills_by_weapon_variance_fields = (obj?: { __typename?: any } | null): obj is player_kills_by_weapon_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_by_weapon_variance_fields"') + return player_kills_by_weapon_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_kills_max_fields_possibleTypes: string[] = ['player_kills_max_fields'] + export const isplayer_kills_max_fields = (obj?: { __typename?: any } | null): obj is player_kills_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_max_fields"') + return player_kills_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_kills_min_fields_possibleTypes: string[] = ['player_kills_min_fields'] + export const isplayer_kills_min_fields = (obj?: { __typename?: any } | null): obj is player_kills_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_min_fields"') + return player_kills_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_kills_mutation_response_possibleTypes: string[] = ['player_kills_mutation_response'] + export const isplayer_kills_mutation_response = (obj?: { __typename?: any } | null): obj is player_kills_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_mutation_response"') + return player_kills_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const player_kills_stddev_fields_possibleTypes: string[] = ['player_kills_stddev_fields'] + export const isplayer_kills_stddev_fields = (obj?: { __typename?: any } | null): obj is player_kills_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_stddev_fields"') + return player_kills_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_kills_stddev_pop_fields_possibleTypes: string[] = ['player_kills_stddev_pop_fields'] + export const isplayer_kills_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_kills_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_stddev_pop_fields"') + return player_kills_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_kills_stddev_samp_fields_possibleTypes: string[] = ['player_kills_stddev_samp_fields'] + export const isplayer_kills_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_kills_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_stddev_samp_fields"') + return player_kills_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_kills_sum_fields_possibleTypes: string[] = ['player_kills_sum_fields'] + export const isplayer_kills_sum_fields = (obj?: { __typename?: any } | null): obj is player_kills_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_sum_fields"') + return player_kills_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_kills_var_pop_fields_possibleTypes: string[] = ['player_kills_var_pop_fields'] + export const isplayer_kills_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_kills_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_var_pop_fields"') + return player_kills_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_kills_var_samp_fields_possibleTypes: string[] = ['player_kills_var_samp_fields'] + export const isplayer_kills_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_kills_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_var_samp_fields"') + return player_kills_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_kills_variance_fields_possibleTypes: string[] = ['player_kills_variance_fields'] + export const isplayer_kills_variance_fields = (obj?: { __typename?: any } | null): obj is player_kills_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_kills_variance_fields"') + return player_kills_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_leaderboard_rank_possibleTypes: string[] = ['player_leaderboard_rank'] + export const isplayer_leaderboard_rank = (obj?: { __typename?: any } | null): obj is player_leaderboard_rank => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_leaderboard_rank"') + return player_leaderboard_rank_possibleTypes.includes(obj.__typename) + } + + + + const player_leaderboard_rank_aggregate_possibleTypes: string[] = ['player_leaderboard_rank_aggregate'] + export const isplayer_leaderboard_rank_aggregate = (obj?: { __typename?: any } | null): obj is player_leaderboard_rank_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_leaderboard_rank_aggregate"') + return player_leaderboard_rank_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const player_leaderboard_rank_aggregate_fields_possibleTypes: string[] = ['player_leaderboard_rank_aggregate_fields'] + export const isplayer_leaderboard_rank_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_leaderboard_rank_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_leaderboard_rank_aggregate_fields"') + return player_leaderboard_rank_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_leaderboard_rank_avg_fields_possibleTypes: string[] = ['player_leaderboard_rank_avg_fields'] + export const isplayer_leaderboard_rank_avg_fields = (obj?: { __typename?: any } | null): obj is player_leaderboard_rank_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_leaderboard_rank_avg_fields"') + return player_leaderboard_rank_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_leaderboard_rank_max_fields_possibleTypes: string[] = ['player_leaderboard_rank_max_fields'] + export const isplayer_leaderboard_rank_max_fields = (obj?: { __typename?: any } | null): obj is player_leaderboard_rank_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_leaderboard_rank_max_fields"') + return player_leaderboard_rank_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_leaderboard_rank_min_fields_possibleTypes: string[] = ['player_leaderboard_rank_min_fields'] + export const isplayer_leaderboard_rank_min_fields = (obj?: { __typename?: any } | null): obj is player_leaderboard_rank_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_leaderboard_rank_min_fields"') + return player_leaderboard_rank_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_leaderboard_rank_mutation_response_possibleTypes: string[] = ['player_leaderboard_rank_mutation_response'] + export const isplayer_leaderboard_rank_mutation_response = (obj?: { __typename?: any } | null): obj is player_leaderboard_rank_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_leaderboard_rank_mutation_response"') + return player_leaderboard_rank_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const player_leaderboard_rank_stddev_fields_possibleTypes: string[] = ['player_leaderboard_rank_stddev_fields'] + export const isplayer_leaderboard_rank_stddev_fields = (obj?: { __typename?: any } | null): obj is player_leaderboard_rank_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_leaderboard_rank_stddev_fields"') + return player_leaderboard_rank_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_leaderboard_rank_stddev_pop_fields_possibleTypes: string[] = ['player_leaderboard_rank_stddev_pop_fields'] + export const isplayer_leaderboard_rank_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_leaderboard_rank_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_leaderboard_rank_stddev_pop_fields"') + return player_leaderboard_rank_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_leaderboard_rank_stddev_samp_fields_possibleTypes: string[] = ['player_leaderboard_rank_stddev_samp_fields'] + export const isplayer_leaderboard_rank_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_leaderboard_rank_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_leaderboard_rank_stddev_samp_fields"') + return player_leaderboard_rank_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_leaderboard_rank_sum_fields_possibleTypes: string[] = ['player_leaderboard_rank_sum_fields'] + export const isplayer_leaderboard_rank_sum_fields = (obj?: { __typename?: any } | null): obj is player_leaderboard_rank_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_leaderboard_rank_sum_fields"') + return player_leaderboard_rank_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_leaderboard_rank_var_pop_fields_possibleTypes: string[] = ['player_leaderboard_rank_var_pop_fields'] + export const isplayer_leaderboard_rank_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_leaderboard_rank_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_leaderboard_rank_var_pop_fields"') + return player_leaderboard_rank_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_leaderboard_rank_var_samp_fields_possibleTypes: string[] = ['player_leaderboard_rank_var_samp_fields'] + export const isplayer_leaderboard_rank_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_leaderboard_rank_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_leaderboard_rank_var_samp_fields"') + return player_leaderboard_rank_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_leaderboard_rank_variance_fields_possibleTypes: string[] = ['player_leaderboard_rank_variance_fields'] + export const isplayer_leaderboard_rank_variance_fields = (obj?: { __typename?: any } | null): obj is player_leaderboard_rank_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_leaderboard_rank_variance_fields"') + return player_leaderboard_rank_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_match_map_stats_possibleTypes: string[] = ['player_match_map_stats'] + export const isplayer_match_map_stats = (obj?: { __typename?: any } | null): obj is player_match_map_stats => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_map_stats"') + return player_match_map_stats_possibleTypes.includes(obj.__typename) + } + + + + const player_match_map_stats_aggregate_possibleTypes: string[] = ['player_match_map_stats_aggregate'] + export const isplayer_match_map_stats_aggregate = (obj?: { __typename?: any } | null): obj is player_match_map_stats_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_map_stats_aggregate"') + return player_match_map_stats_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const player_match_map_stats_aggregate_fields_possibleTypes: string[] = ['player_match_map_stats_aggregate_fields'] + export const isplayer_match_map_stats_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_match_map_stats_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_map_stats_aggregate_fields"') + return player_match_map_stats_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_match_map_stats_avg_fields_possibleTypes: string[] = ['player_match_map_stats_avg_fields'] + export const isplayer_match_map_stats_avg_fields = (obj?: { __typename?: any } | null): obj is player_match_map_stats_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_map_stats_avg_fields"') + return player_match_map_stats_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_match_map_stats_max_fields_possibleTypes: string[] = ['player_match_map_stats_max_fields'] + export const isplayer_match_map_stats_max_fields = (obj?: { __typename?: any } | null): obj is player_match_map_stats_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_map_stats_max_fields"') + return player_match_map_stats_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_match_map_stats_min_fields_possibleTypes: string[] = ['player_match_map_stats_min_fields'] + export const isplayer_match_map_stats_min_fields = (obj?: { __typename?: any } | null): obj is player_match_map_stats_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_map_stats_min_fields"') + return player_match_map_stats_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_match_map_stats_mutation_response_possibleTypes: string[] = ['player_match_map_stats_mutation_response'] + export const isplayer_match_map_stats_mutation_response = (obj?: { __typename?: any } | null): obj is player_match_map_stats_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_map_stats_mutation_response"') + return player_match_map_stats_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const player_match_map_stats_stddev_fields_possibleTypes: string[] = ['player_match_map_stats_stddev_fields'] + export const isplayer_match_map_stats_stddev_fields = (obj?: { __typename?: any } | null): obj is player_match_map_stats_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_map_stats_stddev_fields"') + return player_match_map_stats_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_match_map_stats_stddev_pop_fields_possibleTypes: string[] = ['player_match_map_stats_stddev_pop_fields'] + export const isplayer_match_map_stats_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_match_map_stats_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_map_stats_stddev_pop_fields"') + return player_match_map_stats_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_match_map_stats_stddev_samp_fields_possibleTypes: string[] = ['player_match_map_stats_stddev_samp_fields'] + export const isplayer_match_map_stats_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_match_map_stats_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_map_stats_stddev_samp_fields"') + return player_match_map_stats_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_match_map_stats_sum_fields_possibleTypes: string[] = ['player_match_map_stats_sum_fields'] + export const isplayer_match_map_stats_sum_fields = (obj?: { __typename?: any } | null): obj is player_match_map_stats_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_map_stats_sum_fields"') + return player_match_map_stats_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_match_map_stats_var_pop_fields_possibleTypes: string[] = ['player_match_map_stats_var_pop_fields'] + export const isplayer_match_map_stats_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_match_map_stats_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_map_stats_var_pop_fields"') + return player_match_map_stats_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_match_map_stats_var_samp_fields_possibleTypes: string[] = ['player_match_map_stats_var_samp_fields'] + export const isplayer_match_map_stats_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_match_map_stats_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_map_stats_var_samp_fields"') + return player_match_map_stats_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_match_map_stats_variance_fields_possibleTypes: string[] = ['player_match_map_stats_variance_fields'] + export const isplayer_match_map_stats_variance_fields = (obj?: { __typename?: any } | null): obj is player_match_map_stats_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_map_stats_variance_fields"') + return player_match_map_stats_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_match_performance_v_possibleTypes: string[] = ['player_match_performance_v'] + export const isplayer_match_performance_v = (obj?: { __typename?: any } | null): obj is player_match_performance_v => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_performance_v"') + return player_match_performance_v_possibleTypes.includes(obj.__typename) + } + + + + const player_match_performance_v_aggregate_possibleTypes: string[] = ['player_match_performance_v_aggregate'] + export const isplayer_match_performance_v_aggregate = (obj?: { __typename?: any } | null): obj is player_match_performance_v_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_performance_v_aggregate"') + return player_match_performance_v_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const player_match_performance_v_aggregate_fields_possibleTypes: string[] = ['player_match_performance_v_aggregate_fields'] + export const isplayer_match_performance_v_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_match_performance_v_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_performance_v_aggregate_fields"') + return player_match_performance_v_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_match_performance_v_avg_fields_possibleTypes: string[] = ['player_match_performance_v_avg_fields'] + export const isplayer_match_performance_v_avg_fields = (obj?: { __typename?: any } | null): obj is player_match_performance_v_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_performance_v_avg_fields"') + return player_match_performance_v_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_match_performance_v_max_fields_possibleTypes: string[] = ['player_match_performance_v_max_fields'] + export const isplayer_match_performance_v_max_fields = (obj?: { __typename?: any } | null): obj is player_match_performance_v_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_performance_v_max_fields"') + return player_match_performance_v_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_match_performance_v_min_fields_possibleTypes: string[] = ['player_match_performance_v_min_fields'] + export const isplayer_match_performance_v_min_fields = (obj?: { __typename?: any } | null): obj is player_match_performance_v_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_performance_v_min_fields"') + return player_match_performance_v_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_match_performance_v_stddev_fields_possibleTypes: string[] = ['player_match_performance_v_stddev_fields'] + export const isplayer_match_performance_v_stddev_fields = (obj?: { __typename?: any } | null): obj is player_match_performance_v_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_performance_v_stddev_fields"') + return player_match_performance_v_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_match_performance_v_stddev_pop_fields_possibleTypes: string[] = ['player_match_performance_v_stddev_pop_fields'] + export const isplayer_match_performance_v_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_match_performance_v_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_performance_v_stddev_pop_fields"') + return player_match_performance_v_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_match_performance_v_stddev_samp_fields_possibleTypes: string[] = ['player_match_performance_v_stddev_samp_fields'] + export const isplayer_match_performance_v_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_match_performance_v_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_performance_v_stddev_samp_fields"') + return player_match_performance_v_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_match_performance_v_sum_fields_possibleTypes: string[] = ['player_match_performance_v_sum_fields'] + export const isplayer_match_performance_v_sum_fields = (obj?: { __typename?: any } | null): obj is player_match_performance_v_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_performance_v_sum_fields"') + return player_match_performance_v_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_match_performance_v_var_pop_fields_possibleTypes: string[] = ['player_match_performance_v_var_pop_fields'] + export const isplayer_match_performance_v_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_match_performance_v_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_performance_v_var_pop_fields"') + return player_match_performance_v_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_match_performance_v_var_samp_fields_possibleTypes: string[] = ['player_match_performance_v_var_samp_fields'] + export const isplayer_match_performance_v_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_match_performance_v_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_performance_v_var_samp_fields"') + return player_match_performance_v_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_match_performance_v_variance_fields_possibleTypes: string[] = ['player_match_performance_v_variance_fields'] + export const isplayer_match_performance_v_variance_fields = (obj?: { __typename?: any } | null): obj is player_match_performance_v_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_performance_v_variance_fields"') + return player_match_performance_v_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_match_stats_v_possibleTypes: string[] = ['player_match_stats_v'] + export const isplayer_match_stats_v = (obj?: { __typename?: any } | null): obj is player_match_stats_v => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_stats_v"') + return player_match_stats_v_possibleTypes.includes(obj.__typename) + } + + + + const player_match_stats_v_aggregate_possibleTypes: string[] = ['player_match_stats_v_aggregate'] + export const isplayer_match_stats_v_aggregate = (obj?: { __typename?: any } | null): obj is player_match_stats_v_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_stats_v_aggregate"') + return player_match_stats_v_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const player_match_stats_v_aggregate_fields_possibleTypes: string[] = ['player_match_stats_v_aggregate_fields'] + export const isplayer_match_stats_v_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_match_stats_v_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_stats_v_aggregate_fields"') + return player_match_stats_v_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_match_stats_v_avg_fields_possibleTypes: string[] = ['player_match_stats_v_avg_fields'] + export const isplayer_match_stats_v_avg_fields = (obj?: { __typename?: any } | null): obj is player_match_stats_v_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_stats_v_avg_fields"') + return player_match_stats_v_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_match_stats_v_max_fields_possibleTypes: string[] = ['player_match_stats_v_max_fields'] + export const isplayer_match_stats_v_max_fields = (obj?: { __typename?: any } | null): obj is player_match_stats_v_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_stats_v_max_fields"') + return player_match_stats_v_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_match_stats_v_min_fields_possibleTypes: string[] = ['player_match_stats_v_min_fields'] + export const isplayer_match_stats_v_min_fields = (obj?: { __typename?: any } | null): obj is player_match_stats_v_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_stats_v_min_fields"') + return player_match_stats_v_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_match_stats_v_stddev_fields_possibleTypes: string[] = ['player_match_stats_v_stddev_fields'] + export const isplayer_match_stats_v_stddev_fields = (obj?: { __typename?: any } | null): obj is player_match_stats_v_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_stats_v_stddev_fields"') + return player_match_stats_v_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_match_stats_v_stddev_pop_fields_possibleTypes: string[] = ['player_match_stats_v_stddev_pop_fields'] + export const isplayer_match_stats_v_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_match_stats_v_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_stats_v_stddev_pop_fields"') + return player_match_stats_v_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_match_stats_v_stddev_samp_fields_possibleTypes: string[] = ['player_match_stats_v_stddev_samp_fields'] + export const isplayer_match_stats_v_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_match_stats_v_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_stats_v_stddev_samp_fields"') + return player_match_stats_v_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_match_stats_v_sum_fields_possibleTypes: string[] = ['player_match_stats_v_sum_fields'] + export const isplayer_match_stats_v_sum_fields = (obj?: { __typename?: any } | null): obj is player_match_stats_v_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_stats_v_sum_fields"') + return player_match_stats_v_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_match_stats_v_var_pop_fields_possibleTypes: string[] = ['player_match_stats_v_var_pop_fields'] + export const isplayer_match_stats_v_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_match_stats_v_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_stats_v_var_pop_fields"') + return player_match_stats_v_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_match_stats_v_var_samp_fields_possibleTypes: string[] = ['player_match_stats_v_var_samp_fields'] + export const isplayer_match_stats_v_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_match_stats_v_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_stats_v_var_samp_fields"') + return player_match_stats_v_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_match_stats_v_variance_fields_possibleTypes: string[] = ['player_match_stats_v_variance_fields'] + export const isplayer_match_stats_v_variance_fields = (obj?: { __typename?: any } | null): obj is player_match_stats_v_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_match_stats_v_variance_fields"') + return player_match_stats_v_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_objectives_possibleTypes: string[] = ['player_objectives'] + export const isplayer_objectives = (obj?: { __typename?: any } | null): obj is player_objectives => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_objectives"') + return player_objectives_possibleTypes.includes(obj.__typename) + } + + + + const player_objectives_aggregate_possibleTypes: string[] = ['player_objectives_aggregate'] + export const isplayer_objectives_aggregate = (obj?: { __typename?: any } | null): obj is player_objectives_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_objectives_aggregate"') + return player_objectives_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const player_objectives_aggregate_fields_possibleTypes: string[] = ['player_objectives_aggregate_fields'] + export const isplayer_objectives_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_objectives_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_objectives_aggregate_fields"') + return player_objectives_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_objectives_avg_fields_possibleTypes: string[] = ['player_objectives_avg_fields'] + export const isplayer_objectives_avg_fields = (obj?: { __typename?: any } | null): obj is player_objectives_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_objectives_avg_fields"') + return player_objectives_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_objectives_max_fields_possibleTypes: string[] = ['player_objectives_max_fields'] + export const isplayer_objectives_max_fields = (obj?: { __typename?: any } | null): obj is player_objectives_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_objectives_max_fields"') + return player_objectives_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_objectives_min_fields_possibleTypes: string[] = ['player_objectives_min_fields'] + export const isplayer_objectives_min_fields = (obj?: { __typename?: any } | null): obj is player_objectives_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_objectives_min_fields"') + return player_objectives_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_objectives_mutation_response_possibleTypes: string[] = ['player_objectives_mutation_response'] + export const isplayer_objectives_mutation_response = (obj?: { __typename?: any } | null): obj is player_objectives_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_objectives_mutation_response"') + return player_objectives_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const player_objectives_stddev_fields_possibleTypes: string[] = ['player_objectives_stddev_fields'] + export const isplayer_objectives_stddev_fields = (obj?: { __typename?: any } | null): obj is player_objectives_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_objectives_stddev_fields"') + return player_objectives_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_objectives_stddev_pop_fields_possibleTypes: string[] = ['player_objectives_stddev_pop_fields'] + export const isplayer_objectives_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_objectives_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_objectives_stddev_pop_fields"') + return player_objectives_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_objectives_stddev_samp_fields_possibleTypes: string[] = ['player_objectives_stddev_samp_fields'] + export const isplayer_objectives_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_objectives_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_objectives_stddev_samp_fields"') + return player_objectives_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_objectives_sum_fields_possibleTypes: string[] = ['player_objectives_sum_fields'] + export const isplayer_objectives_sum_fields = (obj?: { __typename?: any } | null): obj is player_objectives_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_objectives_sum_fields"') + return player_objectives_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_objectives_var_pop_fields_possibleTypes: string[] = ['player_objectives_var_pop_fields'] + export const isplayer_objectives_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_objectives_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_objectives_var_pop_fields"') + return player_objectives_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_objectives_var_samp_fields_possibleTypes: string[] = ['player_objectives_var_samp_fields'] + export const isplayer_objectives_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_objectives_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_objectives_var_samp_fields"') + return player_objectives_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_objectives_variance_fields_possibleTypes: string[] = ['player_objectives_variance_fields'] + export const isplayer_objectives_variance_fields = (obj?: { __typename?: any } | null): obj is player_objectives_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_objectives_variance_fields"') + return player_objectives_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_performance_v_possibleTypes: string[] = ['player_performance_v'] + export const isplayer_performance_v = (obj?: { __typename?: any } | null): obj is player_performance_v => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_performance_v"') + return player_performance_v_possibleTypes.includes(obj.__typename) + } + + + + const player_performance_v_aggregate_possibleTypes: string[] = ['player_performance_v_aggregate'] + export const isplayer_performance_v_aggregate = (obj?: { __typename?: any } | null): obj is player_performance_v_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_performance_v_aggregate"') + return player_performance_v_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const player_performance_v_aggregate_fields_possibleTypes: string[] = ['player_performance_v_aggregate_fields'] + export const isplayer_performance_v_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_performance_v_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_performance_v_aggregate_fields"') + return player_performance_v_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_performance_v_avg_fields_possibleTypes: string[] = ['player_performance_v_avg_fields'] + export const isplayer_performance_v_avg_fields = (obj?: { __typename?: any } | null): obj is player_performance_v_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_performance_v_avg_fields"') + return player_performance_v_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_performance_v_max_fields_possibleTypes: string[] = ['player_performance_v_max_fields'] + export const isplayer_performance_v_max_fields = (obj?: { __typename?: any } | null): obj is player_performance_v_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_performance_v_max_fields"') + return player_performance_v_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_performance_v_min_fields_possibleTypes: string[] = ['player_performance_v_min_fields'] + export const isplayer_performance_v_min_fields = (obj?: { __typename?: any } | null): obj is player_performance_v_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_performance_v_min_fields"') + return player_performance_v_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_performance_v_stddev_fields_possibleTypes: string[] = ['player_performance_v_stddev_fields'] + export const isplayer_performance_v_stddev_fields = (obj?: { __typename?: any } | null): obj is player_performance_v_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_performance_v_stddev_fields"') + return player_performance_v_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_performance_v_stddev_pop_fields_possibleTypes: string[] = ['player_performance_v_stddev_pop_fields'] + export const isplayer_performance_v_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_performance_v_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_performance_v_stddev_pop_fields"') + return player_performance_v_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_performance_v_stddev_samp_fields_possibleTypes: string[] = ['player_performance_v_stddev_samp_fields'] + export const isplayer_performance_v_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_performance_v_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_performance_v_stddev_samp_fields"') + return player_performance_v_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_performance_v_sum_fields_possibleTypes: string[] = ['player_performance_v_sum_fields'] + export const isplayer_performance_v_sum_fields = (obj?: { __typename?: any } | null): obj is player_performance_v_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_performance_v_sum_fields"') + return player_performance_v_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_performance_v_var_pop_fields_possibleTypes: string[] = ['player_performance_v_var_pop_fields'] + export const isplayer_performance_v_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_performance_v_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_performance_v_var_pop_fields"') + return player_performance_v_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_performance_v_var_samp_fields_possibleTypes: string[] = ['player_performance_v_var_samp_fields'] + export const isplayer_performance_v_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_performance_v_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_performance_v_var_samp_fields"') + return player_performance_v_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_performance_v_variance_fields_possibleTypes: string[] = ['player_performance_v_variance_fields'] + export const isplayer_performance_v_variance_fields = (obj?: { __typename?: any } | null): obj is player_performance_v_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_performance_v_variance_fields"') + return player_performance_v_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_premier_rank_history_possibleTypes: string[] = ['player_premier_rank_history'] + export const isplayer_premier_rank_history = (obj?: { __typename?: any } | null): obj is player_premier_rank_history => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_premier_rank_history"') + return player_premier_rank_history_possibleTypes.includes(obj.__typename) + } + + + + const player_premier_rank_history_aggregate_possibleTypes: string[] = ['player_premier_rank_history_aggregate'] + export const isplayer_premier_rank_history_aggregate = (obj?: { __typename?: any } | null): obj is player_premier_rank_history_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_premier_rank_history_aggregate"') + return player_premier_rank_history_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const player_premier_rank_history_aggregate_fields_possibleTypes: string[] = ['player_premier_rank_history_aggregate_fields'] + export const isplayer_premier_rank_history_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_premier_rank_history_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_premier_rank_history_aggregate_fields"') + return player_premier_rank_history_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_premier_rank_history_avg_fields_possibleTypes: string[] = ['player_premier_rank_history_avg_fields'] + export const isplayer_premier_rank_history_avg_fields = (obj?: { __typename?: any } | null): obj is player_premier_rank_history_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_premier_rank_history_avg_fields"') + return player_premier_rank_history_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_premier_rank_history_max_fields_possibleTypes: string[] = ['player_premier_rank_history_max_fields'] + export const isplayer_premier_rank_history_max_fields = (obj?: { __typename?: any } | null): obj is player_premier_rank_history_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_premier_rank_history_max_fields"') + return player_premier_rank_history_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_premier_rank_history_min_fields_possibleTypes: string[] = ['player_premier_rank_history_min_fields'] + export const isplayer_premier_rank_history_min_fields = (obj?: { __typename?: any } | null): obj is player_premier_rank_history_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_premier_rank_history_min_fields"') + return player_premier_rank_history_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_premier_rank_history_mutation_response_possibleTypes: string[] = ['player_premier_rank_history_mutation_response'] + export const isplayer_premier_rank_history_mutation_response = (obj?: { __typename?: any } | null): obj is player_premier_rank_history_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_premier_rank_history_mutation_response"') + return player_premier_rank_history_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const player_premier_rank_history_stddev_fields_possibleTypes: string[] = ['player_premier_rank_history_stddev_fields'] + export const isplayer_premier_rank_history_stddev_fields = (obj?: { __typename?: any } | null): obj is player_premier_rank_history_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_premier_rank_history_stddev_fields"') + return player_premier_rank_history_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_premier_rank_history_stddev_pop_fields_possibleTypes: string[] = ['player_premier_rank_history_stddev_pop_fields'] + export const isplayer_premier_rank_history_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_premier_rank_history_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_premier_rank_history_stddev_pop_fields"') + return player_premier_rank_history_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_premier_rank_history_stddev_samp_fields_possibleTypes: string[] = ['player_premier_rank_history_stddev_samp_fields'] + export const isplayer_premier_rank_history_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_premier_rank_history_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_premier_rank_history_stddev_samp_fields"') + return player_premier_rank_history_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_premier_rank_history_sum_fields_possibleTypes: string[] = ['player_premier_rank_history_sum_fields'] + export const isplayer_premier_rank_history_sum_fields = (obj?: { __typename?: any } | null): obj is player_premier_rank_history_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_premier_rank_history_sum_fields"') + return player_premier_rank_history_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_premier_rank_history_var_pop_fields_possibleTypes: string[] = ['player_premier_rank_history_var_pop_fields'] + export const isplayer_premier_rank_history_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_premier_rank_history_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_premier_rank_history_var_pop_fields"') + return player_premier_rank_history_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_premier_rank_history_var_samp_fields_possibleTypes: string[] = ['player_premier_rank_history_var_samp_fields'] + export const isplayer_premier_rank_history_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_premier_rank_history_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_premier_rank_history_var_samp_fields"') + return player_premier_rank_history_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_premier_rank_history_variance_fields_possibleTypes: string[] = ['player_premier_rank_history_variance_fields'] + export const isplayer_premier_rank_history_variance_fields = (obj?: { __typename?: any } | null): obj is player_premier_rank_history_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_premier_rank_history_variance_fields"') + return player_premier_rank_history_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_sanctions_possibleTypes: string[] = ['player_sanctions'] + export const isplayer_sanctions = (obj?: { __typename?: any } | null): obj is player_sanctions => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_sanctions"') + return player_sanctions_possibleTypes.includes(obj.__typename) + } + + + + const player_sanctions_aggregate_possibleTypes: string[] = ['player_sanctions_aggregate'] + export const isplayer_sanctions_aggregate = (obj?: { __typename?: any } | null): obj is player_sanctions_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_sanctions_aggregate"') + return player_sanctions_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const player_sanctions_aggregate_fields_possibleTypes: string[] = ['player_sanctions_aggregate_fields'] + export const isplayer_sanctions_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_sanctions_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_sanctions_aggregate_fields"') + return player_sanctions_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_sanctions_avg_fields_possibleTypes: string[] = ['player_sanctions_avg_fields'] + export const isplayer_sanctions_avg_fields = (obj?: { __typename?: any } | null): obj is player_sanctions_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_sanctions_avg_fields"') + return player_sanctions_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_sanctions_max_fields_possibleTypes: string[] = ['player_sanctions_max_fields'] + export const isplayer_sanctions_max_fields = (obj?: { __typename?: any } | null): obj is player_sanctions_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_sanctions_max_fields"') + return player_sanctions_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_sanctions_min_fields_possibleTypes: string[] = ['player_sanctions_min_fields'] + export const isplayer_sanctions_min_fields = (obj?: { __typename?: any } | null): obj is player_sanctions_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_sanctions_min_fields"') + return player_sanctions_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_sanctions_mutation_response_possibleTypes: string[] = ['player_sanctions_mutation_response'] + export const isplayer_sanctions_mutation_response = (obj?: { __typename?: any } | null): obj is player_sanctions_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_sanctions_mutation_response"') + return player_sanctions_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const player_sanctions_stddev_fields_possibleTypes: string[] = ['player_sanctions_stddev_fields'] + export const isplayer_sanctions_stddev_fields = (obj?: { __typename?: any } | null): obj is player_sanctions_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_sanctions_stddev_fields"') + return player_sanctions_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_sanctions_stddev_pop_fields_possibleTypes: string[] = ['player_sanctions_stddev_pop_fields'] + export const isplayer_sanctions_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_sanctions_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_sanctions_stddev_pop_fields"') + return player_sanctions_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_sanctions_stddev_samp_fields_possibleTypes: string[] = ['player_sanctions_stddev_samp_fields'] + export const isplayer_sanctions_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_sanctions_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_sanctions_stddev_samp_fields"') + return player_sanctions_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_sanctions_sum_fields_possibleTypes: string[] = ['player_sanctions_sum_fields'] + export const isplayer_sanctions_sum_fields = (obj?: { __typename?: any } | null): obj is player_sanctions_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_sanctions_sum_fields"') + return player_sanctions_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_sanctions_var_pop_fields_possibleTypes: string[] = ['player_sanctions_var_pop_fields'] + export const isplayer_sanctions_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_sanctions_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_sanctions_var_pop_fields"') + return player_sanctions_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_sanctions_var_samp_fields_possibleTypes: string[] = ['player_sanctions_var_samp_fields'] + export const isplayer_sanctions_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_sanctions_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_sanctions_var_samp_fields"') + return player_sanctions_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_sanctions_variance_fields_possibleTypes: string[] = ['player_sanctions_variance_fields'] + export const isplayer_sanctions_variance_fields = (obj?: { __typename?: any } | null): obj is player_sanctions_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_sanctions_variance_fields"') + return player_sanctions_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_season_stats_possibleTypes: string[] = ['player_season_stats'] + export const isplayer_season_stats = (obj?: { __typename?: any } | null): obj is player_season_stats => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_season_stats"') + return player_season_stats_possibleTypes.includes(obj.__typename) + } + + + + const player_season_stats_aggregate_possibleTypes: string[] = ['player_season_stats_aggregate'] + export const isplayer_season_stats_aggregate = (obj?: { __typename?: any } | null): obj is player_season_stats_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_season_stats_aggregate"') + return player_season_stats_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const player_season_stats_aggregate_fields_possibleTypes: string[] = ['player_season_stats_aggregate_fields'] + export const isplayer_season_stats_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_season_stats_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_season_stats_aggregate_fields"') + return player_season_stats_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_season_stats_avg_fields_possibleTypes: string[] = ['player_season_stats_avg_fields'] + export const isplayer_season_stats_avg_fields = (obj?: { __typename?: any } | null): obj is player_season_stats_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_season_stats_avg_fields"') + return player_season_stats_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_season_stats_max_fields_possibleTypes: string[] = ['player_season_stats_max_fields'] + export const isplayer_season_stats_max_fields = (obj?: { __typename?: any } | null): obj is player_season_stats_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_season_stats_max_fields"') + return player_season_stats_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_season_stats_min_fields_possibleTypes: string[] = ['player_season_stats_min_fields'] + export const isplayer_season_stats_min_fields = (obj?: { __typename?: any } | null): obj is player_season_stats_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_season_stats_min_fields"') + return player_season_stats_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_season_stats_mutation_response_possibleTypes: string[] = ['player_season_stats_mutation_response'] + export const isplayer_season_stats_mutation_response = (obj?: { __typename?: any } | null): obj is player_season_stats_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_season_stats_mutation_response"') + return player_season_stats_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const player_season_stats_stddev_fields_possibleTypes: string[] = ['player_season_stats_stddev_fields'] + export const isplayer_season_stats_stddev_fields = (obj?: { __typename?: any } | null): obj is player_season_stats_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_season_stats_stddev_fields"') + return player_season_stats_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_season_stats_stddev_pop_fields_possibleTypes: string[] = ['player_season_stats_stddev_pop_fields'] + export const isplayer_season_stats_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_season_stats_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_season_stats_stddev_pop_fields"') + return player_season_stats_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_season_stats_stddev_samp_fields_possibleTypes: string[] = ['player_season_stats_stddev_samp_fields'] + export const isplayer_season_stats_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_season_stats_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_season_stats_stddev_samp_fields"') + return player_season_stats_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_season_stats_sum_fields_possibleTypes: string[] = ['player_season_stats_sum_fields'] + export const isplayer_season_stats_sum_fields = (obj?: { __typename?: any } | null): obj is player_season_stats_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_season_stats_sum_fields"') + return player_season_stats_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_season_stats_var_pop_fields_possibleTypes: string[] = ['player_season_stats_var_pop_fields'] + export const isplayer_season_stats_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_season_stats_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_season_stats_var_pop_fields"') + return player_season_stats_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_season_stats_var_samp_fields_possibleTypes: string[] = ['player_season_stats_var_samp_fields'] + export const isplayer_season_stats_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_season_stats_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_season_stats_var_samp_fields"') + return player_season_stats_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_season_stats_variance_fields_possibleTypes: string[] = ['player_season_stats_variance_fields'] + export const isplayer_season_stats_variance_fields = (obj?: { __typename?: any } | null): obj is player_season_stats_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_season_stats_variance_fields"') + return player_season_stats_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_stats_possibleTypes: string[] = ['player_stats'] + export const isplayer_stats = (obj?: { __typename?: any } | null): obj is player_stats => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_stats"') + return player_stats_possibleTypes.includes(obj.__typename) + } + + + + const player_stats_aggregate_possibleTypes: string[] = ['player_stats_aggregate'] + export const isplayer_stats_aggregate = (obj?: { __typename?: any } | null): obj is player_stats_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_stats_aggregate"') + return player_stats_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const player_stats_aggregate_fields_possibleTypes: string[] = ['player_stats_aggregate_fields'] + export const isplayer_stats_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_stats_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_stats_aggregate_fields"') + return player_stats_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_stats_avg_fields_possibleTypes: string[] = ['player_stats_avg_fields'] + export const isplayer_stats_avg_fields = (obj?: { __typename?: any } | null): obj is player_stats_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_stats_avg_fields"') + return player_stats_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_stats_max_fields_possibleTypes: string[] = ['player_stats_max_fields'] + export const isplayer_stats_max_fields = (obj?: { __typename?: any } | null): obj is player_stats_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_stats_max_fields"') + return player_stats_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_stats_min_fields_possibleTypes: string[] = ['player_stats_min_fields'] + export const isplayer_stats_min_fields = (obj?: { __typename?: any } | null): obj is player_stats_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_stats_min_fields"') + return player_stats_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_stats_mutation_response_possibleTypes: string[] = ['player_stats_mutation_response'] + export const isplayer_stats_mutation_response = (obj?: { __typename?: any } | null): obj is player_stats_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_stats_mutation_response"') + return player_stats_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const player_stats_stddev_fields_possibleTypes: string[] = ['player_stats_stddev_fields'] + export const isplayer_stats_stddev_fields = (obj?: { __typename?: any } | null): obj is player_stats_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_stats_stddev_fields"') + return player_stats_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_stats_stddev_pop_fields_possibleTypes: string[] = ['player_stats_stddev_pop_fields'] + export const isplayer_stats_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_stats_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_stats_stddev_pop_fields"') + return player_stats_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_stats_stddev_samp_fields_possibleTypes: string[] = ['player_stats_stddev_samp_fields'] + export const isplayer_stats_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_stats_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_stats_stddev_samp_fields"') + return player_stats_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_stats_sum_fields_possibleTypes: string[] = ['player_stats_sum_fields'] + export const isplayer_stats_sum_fields = (obj?: { __typename?: any } | null): obj is player_stats_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_stats_sum_fields"') + return player_stats_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_stats_var_pop_fields_possibleTypes: string[] = ['player_stats_var_pop_fields'] + export const isplayer_stats_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_stats_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_stats_var_pop_fields"') + return player_stats_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_stats_var_samp_fields_possibleTypes: string[] = ['player_stats_var_samp_fields'] + export const isplayer_stats_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_stats_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_stats_var_samp_fields"') + return player_stats_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_stats_variance_fields_possibleTypes: string[] = ['player_stats_variance_fields'] + export const isplayer_stats_variance_fields = (obj?: { __typename?: any } | null): obj is player_stats_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_stats_variance_fields"') + return player_stats_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_steam_bot_friend_possibleTypes: string[] = ['player_steam_bot_friend'] + export const isplayer_steam_bot_friend = (obj?: { __typename?: any } | null): obj is player_steam_bot_friend => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_bot_friend"') + return player_steam_bot_friend_possibleTypes.includes(obj.__typename) + } + + + + const player_steam_bot_friend_aggregate_possibleTypes: string[] = ['player_steam_bot_friend_aggregate'] + export const isplayer_steam_bot_friend_aggregate = (obj?: { __typename?: any } | null): obj is player_steam_bot_friend_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_bot_friend_aggregate"') + return player_steam_bot_friend_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const player_steam_bot_friend_aggregate_fields_possibleTypes: string[] = ['player_steam_bot_friend_aggregate_fields'] + export const isplayer_steam_bot_friend_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_steam_bot_friend_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_bot_friend_aggregate_fields"') + return player_steam_bot_friend_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_steam_bot_friend_avg_fields_possibleTypes: string[] = ['player_steam_bot_friend_avg_fields'] + export const isplayer_steam_bot_friend_avg_fields = (obj?: { __typename?: any } | null): obj is player_steam_bot_friend_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_bot_friend_avg_fields"') + return player_steam_bot_friend_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_steam_bot_friend_max_fields_possibleTypes: string[] = ['player_steam_bot_friend_max_fields'] + export const isplayer_steam_bot_friend_max_fields = (obj?: { __typename?: any } | null): obj is player_steam_bot_friend_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_bot_friend_max_fields"') + return player_steam_bot_friend_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_steam_bot_friend_min_fields_possibleTypes: string[] = ['player_steam_bot_friend_min_fields'] + export const isplayer_steam_bot_friend_min_fields = (obj?: { __typename?: any } | null): obj is player_steam_bot_friend_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_bot_friend_min_fields"') + return player_steam_bot_friend_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_steam_bot_friend_mutation_response_possibleTypes: string[] = ['player_steam_bot_friend_mutation_response'] + export const isplayer_steam_bot_friend_mutation_response = (obj?: { __typename?: any } | null): obj is player_steam_bot_friend_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_bot_friend_mutation_response"') + return player_steam_bot_friend_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const player_steam_bot_friend_stddev_fields_possibleTypes: string[] = ['player_steam_bot_friend_stddev_fields'] + export const isplayer_steam_bot_friend_stddev_fields = (obj?: { __typename?: any } | null): obj is player_steam_bot_friend_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_bot_friend_stddev_fields"') + return player_steam_bot_friend_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_steam_bot_friend_stddev_pop_fields_possibleTypes: string[] = ['player_steam_bot_friend_stddev_pop_fields'] + export const isplayer_steam_bot_friend_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_steam_bot_friend_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_bot_friend_stddev_pop_fields"') + return player_steam_bot_friend_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_steam_bot_friend_stddev_samp_fields_possibleTypes: string[] = ['player_steam_bot_friend_stddev_samp_fields'] + export const isplayer_steam_bot_friend_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_steam_bot_friend_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_bot_friend_stddev_samp_fields"') + return player_steam_bot_friend_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_steam_bot_friend_sum_fields_possibleTypes: string[] = ['player_steam_bot_friend_sum_fields'] + export const isplayer_steam_bot_friend_sum_fields = (obj?: { __typename?: any } | null): obj is player_steam_bot_friend_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_bot_friend_sum_fields"') + return player_steam_bot_friend_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_steam_bot_friend_var_pop_fields_possibleTypes: string[] = ['player_steam_bot_friend_var_pop_fields'] + export const isplayer_steam_bot_friend_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_steam_bot_friend_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_bot_friend_var_pop_fields"') + return player_steam_bot_friend_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_steam_bot_friend_var_samp_fields_possibleTypes: string[] = ['player_steam_bot_friend_var_samp_fields'] + export const isplayer_steam_bot_friend_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_steam_bot_friend_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_bot_friend_var_samp_fields"') + return player_steam_bot_friend_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_steam_bot_friend_variance_fields_possibleTypes: string[] = ['player_steam_bot_friend_variance_fields'] + export const isplayer_steam_bot_friend_variance_fields = (obj?: { __typename?: any } | null): obj is player_steam_bot_friend_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_bot_friend_variance_fields"') + return player_steam_bot_friend_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_steam_match_auth_possibleTypes: string[] = ['player_steam_match_auth'] + export const isplayer_steam_match_auth = (obj?: { __typename?: any } | null): obj is player_steam_match_auth => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_match_auth"') + return player_steam_match_auth_possibleTypes.includes(obj.__typename) + } + + + + const player_steam_match_auth_aggregate_possibleTypes: string[] = ['player_steam_match_auth_aggregate'] + export const isplayer_steam_match_auth_aggregate = (obj?: { __typename?: any } | null): obj is player_steam_match_auth_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_match_auth_aggregate"') + return player_steam_match_auth_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const player_steam_match_auth_aggregate_fields_possibleTypes: string[] = ['player_steam_match_auth_aggregate_fields'] + export const isplayer_steam_match_auth_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_steam_match_auth_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_match_auth_aggregate_fields"') + return player_steam_match_auth_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_steam_match_auth_avg_fields_possibleTypes: string[] = ['player_steam_match_auth_avg_fields'] + export const isplayer_steam_match_auth_avg_fields = (obj?: { __typename?: any } | null): obj is player_steam_match_auth_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_match_auth_avg_fields"') + return player_steam_match_auth_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_steam_match_auth_max_fields_possibleTypes: string[] = ['player_steam_match_auth_max_fields'] + export const isplayer_steam_match_auth_max_fields = (obj?: { __typename?: any } | null): obj is player_steam_match_auth_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_match_auth_max_fields"') + return player_steam_match_auth_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_steam_match_auth_min_fields_possibleTypes: string[] = ['player_steam_match_auth_min_fields'] + export const isplayer_steam_match_auth_min_fields = (obj?: { __typename?: any } | null): obj is player_steam_match_auth_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_match_auth_min_fields"') + return player_steam_match_auth_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_steam_match_auth_mutation_response_possibleTypes: string[] = ['player_steam_match_auth_mutation_response'] + export const isplayer_steam_match_auth_mutation_response = (obj?: { __typename?: any } | null): obj is player_steam_match_auth_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_match_auth_mutation_response"') + return player_steam_match_auth_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const player_steam_match_auth_stddev_fields_possibleTypes: string[] = ['player_steam_match_auth_stddev_fields'] + export const isplayer_steam_match_auth_stddev_fields = (obj?: { __typename?: any } | null): obj is player_steam_match_auth_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_match_auth_stddev_fields"') + return player_steam_match_auth_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_steam_match_auth_stddev_pop_fields_possibleTypes: string[] = ['player_steam_match_auth_stddev_pop_fields'] + export const isplayer_steam_match_auth_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_steam_match_auth_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_match_auth_stddev_pop_fields"') + return player_steam_match_auth_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_steam_match_auth_stddev_samp_fields_possibleTypes: string[] = ['player_steam_match_auth_stddev_samp_fields'] + export const isplayer_steam_match_auth_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_steam_match_auth_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_match_auth_stddev_samp_fields"') + return player_steam_match_auth_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_steam_match_auth_sum_fields_possibleTypes: string[] = ['player_steam_match_auth_sum_fields'] + export const isplayer_steam_match_auth_sum_fields = (obj?: { __typename?: any } | null): obj is player_steam_match_auth_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_match_auth_sum_fields"') + return player_steam_match_auth_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_steam_match_auth_var_pop_fields_possibleTypes: string[] = ['player_steam_match_auth_var_pop_fields'] + export const isplayer_steam_match_auth_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_steam_match_auth_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_match_auth_var_pop_fields"') + return player_steam_match_auth_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_steam_match_auth_var_samp_fields_possibleTypes: string[] = ['player_steam_match_auth_var_samp_fields'] + export const isplayer_steam_match_auth_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_steam_match_auth_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_match_auth_var_samp_fields"') + return player_steam_match_auth_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_steam_match_auth_variance_fields_possibleTypes: string[] = ['player_steam_match_auth_variance_fields'] + export const isplayer_steam_match_auth_variance_fields = (obj?: { __typename?: any } | null): obj is player_steam_match_auth_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_steam_match_auth_variance_fields"') + return player_steam_match_auth_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_unused_utility_possibleTypes: string[] = ['player_unused_utility'] + export const isplayer_unused_utility = (obj?: { __typename?: any } | null): obj is player_unused_utility => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_unused_utility"') + return player_unused_utility_possibleTypes.includes(obj.__typename) + } + + + + const player_unused_utility_aggregate_possibleTypes: string[] = ['player_unused_utility_aggregate'] + export const isplayer_unused_utility_aggregate = (obj?: { __typename?: any } | null): obj is player_unused_utility_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_unused_utility_aggregate"') + return player_unused_utility_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const player_unused_utility_aggregate_fields_possibleTypes: string[] = ['player_unused_utility_aggregate_fields'] + export const isplayer_unused_utility_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_unused_utility_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_unused_utility_aggregate_fields"') + return player_unused_utility_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_unused_utility_avg_fields_possibleTypes: string[] = ['player_unused_utility_avg_fields'] + export const isplayer_unused_utility_avg_fields = (obj?: { __typename?: any } | null): obj is player_unused_utility_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_unused_utility_avg_fields"') + return player_unused_utility_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_unused_utility_max_fields_possibleTypes: string[] = ['player_unused_utility_max_fields'] + export const isplayer_unused_utility_max_fields = (obj?: { __typename?: any } | null): obj is player_unused_utility_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_unused_utility_max_fields"') + return player_unused_utility_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_unused_utility_min_fields_possibleTypes: string[] = ['player_unused_utility_min_fields'] + export const isplayer_unused_utility_min_fields = (obj?: { __typename?: any } | null): obj is player_unused_utility_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_unused_utility_min_fields"') + return player_unused_utility_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_unused_utility_mutation_response_possibleTypes: string[] = ['player_unused_utility_mutation_response'] + export const isplayer_unused_utility_mutation_response = (obj?: { __typename?: any } | null): obj is player_unused_utility_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_unused_utility_mutation_response"') + return player_unused_utility_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const player_unused_utility_stddev_fields_possibleTypes: string[] = ['player_unused_utility_stddev_fields'] + export const isplayer_unused_utility_stddev_fields = (obj?: { __typename?: any } | null): obj is player_unused_utility_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_unused_utility_stddev_fields"') + return player_unused_utility_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_unused_utility_stddev_pop_fields_possibleTypes: string[] = ['player_unused_utility_stddev_pop_fields'] + export const isplayer_unused_utility_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_unused_utility_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_unused_utility_stddev_pop_fields"') + return player_unused_utility_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_unused_utility_stddev_samp_fields_possibleTypes: string[] = ['player_unused_utility_stddev_samp_fields'] + export const isplayer_unused_utility_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_unused_utility_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_unused_utility_stddev_samp_fields"') + return player_unused_utility_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_unused_utility_sum_fields_possibleTypes: string[] = ['player_unused_utility_sum_fields'] + export const isplayer_unused_utility_sum_fields = (obj?: { __typename?: any } | null): obj is player_unused_utility_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_unused_utility_sum_fields"') + return player_unused_utility_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_unused_utility_var_pop_fields_possibleTypes: string[] = ['player_unused_utility_var_pop_fields'] + export const isplayer_unused_utility_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_unused_utility_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_unused_utility_var_pop_fields"') + return player_unused_utility_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_unused_utility_var_samp_fields_possibleTypes: string[] = ['player_unused_utility_var_samp_fields'] + export const isplayer_unused_utility_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_unused_utility_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_unused_utility_var_samp_fields"') + return player_unused_utility_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_unused_utility_variance_fields_possibleTypes: string[] = ['player_unused_utility_variance_fields'] + export const isplayer_unused_utility_variance_fields = (obj?: { __typename?: any } | null): obj is player_unused_utility_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_unused_utility_variance_fields"') + return player_unused_utility_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_utility_possibleTypes: string[] = ['player_utility'] + export const isplayer_utility = (obj?: { __typename?: any } | null): obj is player_utility => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_utility"') + return player_utility_possibleTypes.includes(obj.__typename) + } + + + + const player_utility_aggregate_possibleTypes: string[] = ['player_utility_aggregate'] + export const isplayer_utility_aggregate = (obj?: { __typename?: any } | null): obj is player_utility_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_utility_aggregate"') + return player_utility_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const player_utility_aggregate_fields_possibleTypes: string[] = ['player_utility_aggregate_fields'] + export const isplayer_utility_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_utility_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_utility_aggregate_fields"') + return player_utility_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_utility_avg_fields_possibleTypes: string[] = ['player_utility_avg_fields'] + export const isplayer_utility_avg_fields = (obj?: { __typename?: any } | null): obj is player_utility_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_utility_avg_fields"') + return player_utility_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_utility_max_fields_possibleTypes: string[] = ['player_utility_max_fields'] + export const isplayer_utility_max_fields = (obj?: { __typename?: any } | null): obj is player_utility_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_utility_max_fields"') + return player_utility_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_utility_min_fields_possibleTypes: string[] = ['player_utility_min_fields'] + export const isplayer_utility_min_fields = (obj?: { __typename?: any } | null): obj is player_utility_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_utility_min_fields"') + return player_utility_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_utility_mutation_response_possibleTypes: string[] = ['player_utility_mutation_response'] + export const isplayer_utility_mutation_response = (obj?: { __typename?: any } | null): obj is player_utility_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_utility_mutation_response"') + return player_utility_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const player_utility_stddev_fields_possibleTypes: string[] = ['player_utility_stddev_fields'] + export const isplayer_utility_stddev_fields = (obj?: { __typename?: any } | null): obj is player_utility_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_utility_stddev_fields"') + return player_utility_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_utility_stddev_pop_fields_possibleTypes: string[] = ['player_utility_stddev_pop_fields'] + export const isplayer_utility_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_utility_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_utility_stddev_pop_fields"') + return player_utility_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_utility_stddev_samp_fields_possibleTypes: string[] = ['player_utility_stddev_samp_fields'] + export const isplayer_utility_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_utility_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_utility_stddev_samp_fields"') + return player_utility_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_utility_sum_fields_possibleTypes: string[] = ['player_utility_sum_fields'] + export const isplayer_utility_sum_fields = (obj?: { __typename?: any } | null): obj is player_utility_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_utility_sum_fields"') + return player_utility_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_utility_var_pop_fields_possibleTypes: string[] = ['player_utility_var_pop_fields'] + export const isplayer_utility_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_utility_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_utility_var_pop_fields"') + return player_utility_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_utility_var_samp_fields_possibleTypes: string[] = ['player_utility_var_samp_fields'] + export const isplayer_utility_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_utility_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_utility_var_samp_fields"') + return player_utility_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_utility_variance_fields_possibleTypes: string[] = ['player_utility_variance_fields'] + export const isplayer_utility_variance_fields = (obj?: { __typename?: any } | null): obj is player_utility_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_utility_variance_fields"') + return player_utility_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_weapon_stats_v_possibleTypes: string[] = ['player_weapon_stats_v'] + export const isplayer_weapon_stats_v = (obj?: { __typename?: any } | null): obj is player_weapon_stats_v => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_weapon_stats_v"') + return player_weapon_stats_v_possibleTypes.includes(obj.__typename) + } + + + + const player_weapon_stats_v_aggregate_possibleTypes: string[] = ['player_weapon_stats_v_aggregate'] + export const isplayer_weapon_stats_v_aggregate = (obj?: { __typename?: any } | null): obj is player_weapon_stats_v_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_weapon_stats_v_aggregate"') + return player_weapon_stats_v_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const player_weapon_stats_v_aggregate_fields_possibleTypes: string[] = ['player_weapon_stats_v_aggregate_fields'] + export const isplayer_weapon_stats_v_aggregate_fields = (obj?: { __typename?: any } | null): obj is player_weapon_stats_v_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_weapon_stats_v_aggregate_fields"') + return player_weapon_stats_v_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_weapon_stats_v_avg_fields_possibleTypes: string[] = ['player_weapon_stats_v_avg_fields'] + export const isplayer_weapon_stats_v_avg_fields = (obj?: { __typename?: any } | null): obj is player_weapon_stats_v_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_weapon_stats_v_avg_fields"') + return player_weapon_stats_v_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_weapon_stats_v_max_fields_possibleTypes: string[] = ['player_weapon_stats_v_max_fields'] + export const isplayer_weapon_stats_v_max_fields = (obj?: { __typename?: any } | null): obj is player_weapon_stats_v_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_weapon_stats_v_max_fields"') + return player_weapon_stats_v_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_weapon_stats_v_min_fields_possibleTypes: string[] = ['player_weapon_stats_v_min_fields'] + export const isplayer_weapon_stats_v_min_fields = (obj?: { __typename?: any } | null): obj is player_weapon_stats_v_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_weapon_stats_v_min_fields"') + return player_weapon_stats_v_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_weapon_stats_v_stddev_fields_possibleTypes: string[] = ['player_weapon_stats_v_stddev_fields'] + export const isplayer_weapon_stats_v_stddev_fields = (obj?: { __typename?: any } | null): obj is player_weapon_stats_v_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_weapon_stats_v_stddev_fields"') + return player_weapon_stats_v_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_weapon_stats_v_stddev_pop_fields_possibleTypes: string[] = ['player_weapon_stats_v_stddev_pop_fields'] + export const isplayer_weapon_stats_v_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is player_weapon_stats_v_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_weapon_stats_v_stddev_pop_fields"') + return player_weapon_stats_v_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_weapon_stats_v_stddev_samp_fields_possibleTypes: string[] = ['player_weapon_stats_v_stddev_samp_fields'] + export const isplayer_weapon_stats_v_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is player_weapon_stats_v_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_weapon_stats_v_stddev_samp_fields"') + return player_weapon_stats_v_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_weapon_stats_v_sum_fields_possibleTypes: string[] = ['player_weapon_stats_v_sum_fields'] + export const isplayer_weapon_stats_v_sum_fields = (obj?: { __typename?: any } | null): obj is player_weapon_stats_v_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_weapon_stats_v_sum_fields"') + return player_weapon_stats_v_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_weapon_stats_v_var_pop_fields_possibleTypes: string[] = ['player_weapon_stats_v_var_pop_fields'] + export const isplayer_weapon_stats_v_var_pop_fields = (obj?: { __typename?: any } | null): obj is player_weapon_stats_v_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_weapon_stats_v_var_pop_fields"') + return player_weapon_stats_v_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_weapon_stats_v_var_samp_fields_possibleTypes: string[] = ['player_weapon_stats_v_var_samp_fields'] + export const isplayer_weapon_stats_v_var_samp_fields = (obj?: { __typename?: any } | null): obj is player_weapon_stats_v_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_weapon_stats_v_var_samp_fields"') + return player_weapon_stats_v_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const player_weapon_stats_v_variance_fields_possibleTypes: string[] = ['player_weapon_stats_v_variance_fields'] + export const isplayer_weapon_stats_v_variance_fields = (obj?: { __typename?: any } | null): obj is player_weapon_stats_v_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayer_weapon_stats_v_variance_fields"') + return player_weapon_stats_v_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const players_possibleTypes: string[] = ['players'] + export const isplayers = (obj?: { __typename?: any } | null): obj is players => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayers"') + return players_possibleTypes.includes(obj.__typename) + } + + + + const players_aggregate_possibleTypes: string[] = ['players_aggregate'] + export const isplayers_aggregate = (obj?: { __typename?: any } | null): obj is players_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayers_aggregate"') + return players_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const players_aggregate_fields_possibleTypes: string[] = ['players_aggregate_fields'] + export const isplayers_aggregate_fields = (obj?: { __typename?: any } | null): obj is players_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayers_aggregate_fields"') + return players_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const players_avg_fields_possibleTypes: string[] = ['players_avg_fields'] + export const isplayers_avg_fields = (obj?: { __typename?: any } | null): obj is players_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayers_avg_fields"') + return players_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const players_max_fields_possibleTypes: string[] = ['players_max_fields'] + export const isplayers_max_fields = (obj?: { __typename?: any } | null): obj is players_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayers_max_fields"') + return players_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const players_min_fields_possibleTypes: string[] = ['players_min_fields'] + export const isplayers_min_fields = (obj?: { __typename?: any } | null): obj is players_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayers_min_fields"') + return players_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const players_mutation_response_possibleTypes: string[] = ['players_mutation_response'] + export const isplayers_mutation_response = (obj?: { __typename?: any } | null): obj is players_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayers_mutation_response"') + return players_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const players_stddev_fields_possibleTypes: string[] = ['players_stddev_fields'] + export const isplayers_stddev_fields = (obj?: { __typename?: any } | null): obj is players_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayers_stddev_fields"') + return players_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const players_stddev_pop_fields_possibleTypes: string[] = ['players_stddev_pop_fields'] + export const isplayers_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is players_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayers_stddev_pop_fields"') + return players_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const players_stddev_samp_fields_possibleTypes: string[] = ['players_stddev_samp_fields'] + export const isplayers_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is players_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayers_stddev_samp_fields"') + return players_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const players_sum_fields_possibleTypes: string[] = ['players_sum_fields'] + export const isplayers_sum_fields = (obj?: { __typename?: any } | null): obj is players_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayers_sum_fields"') + return players_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const players_var_pop_fields_possibleTypes: string[] = ['players_var_pop_fields'] + export const isplayers_var_pop_fields = (obj?: { __typename?: any } | null): obj is players_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayers_var_pop_fields"') + return players_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const players_var_samp_fields_possibleTypes: string[] = ['players_var_samp_fields'] + export const isplayers_var_samp_fields = (obj?: { __typename?: any } | null): obj is players_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayers_var_samp_fields"') + return players_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const players_variance_fields_possibleTypes: string[] = ['players_variance_fields'] + export const isplayers_variance_fields = (obj?: { __typename?: any } | null): obj is players_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplayers_variance_fields"') + return players_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const plugin_versions_possibleTypes: string[] = ['plugin_versions'] + export const isplugin_versions = (obj?: { __typename?: any } | null): obj is plugin_versions => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplugin_versions"') + return plugin_versions_possibleTypes.includes(obj.__typename) + } + + + + const plugin_versions_aggregate_possibleTypes: string[] = ['plugin_versions_aggregate'] + export const isplugin_versions_aggregate = (obj?: { __typename?: any } | null): obj is plugin_versions_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplugin_versions_aggregate"') + return plugin_versions_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const plugin_versions_aggregate_fields_possibleTypes: string[] = ['plugin_versions_aggregate_fields'] + export const isplugin_versions_aggregate_fields = (obj?: { __typename?: any } | null): obj is plugin_versions_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplugin_versions_aggregate_fields"') + return plugin_versions_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const plugin_versions_avg_fields_possibleTypes: string[] = ['plugin_versions_avg_fields'] + export const isplugin_versions_avg_fields = (obj?: { __typename?: any } | null): obj is plugin_versions_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplugin_versions_avg_fields"') + return plugin_versions_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const plugin_versions_max_fields_possibleTypes: string[] = ['plugin_versions_max_fields'] + export const isplugin_versions_max_fields = (obj?: { __typename?: any } | null): obj is plugin_versions_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplugin_versions_max_fields"') + return plugin_versions_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const plugin_versions_min_fields_possibleTypes: string[] = ['plugin_versions_min_fields'] + export const isplugin_versions_min_fields = (obj?: { __typename?: any } | null): obj is plugin_versions_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplugin_versions_min_fields"') + return plugin_versions_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const plugin_versions_mutation_response_possibleTypes: string[] = ['plugin_versions_mutation_response'] + export const isplugin_versions_mutation_response = (obj?: { __typename?: any } | null): obj is plugin_versions_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplugin_versions_mutation_response"') + return plugin_versions_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const plugin_versions_stddev_fields_possibleTypes: string[] = ['plugin_versions_stddev_fields'] + export const isplugin_versions_stddev_fields = (obj?: { __typename?: any } | null): obj is plugin_versions_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplugin_versions_stddev_fields"') + return plugin_versions_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const plugin_versions_stddev_pop_fields_possibleTypes: string[] = ['plugin_versions_stddev_pop_fields'] + export const isplugin_versions_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is plugin_versions_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplugin_versions_stddev_pop_fields"') + return plugin_versions_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const plugin_versions_stddev_samp_fields_possibleTypes: string[] = ['plugin_versions_stddev_samp_fields'] + export const isplugin_versions_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is plugin_versions_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplugin_versions_stddev_samp_fields"') + return plugin_versions_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const plugin_versions_sum_fields_possibleTypes: string[] = ['plugin_versions_sum_fields'] + export const isplugin_versions_sum_fields = (obj?: { __typename?: any } | null): obj is plugin_versions_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplugin_versions_sum_fields"') + return plugin_versions_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const plugin_versions_var_pop_fields_possibleTypes: string[] = ['plugin_versions_var_pop_fields'] + export const isplugin_versions_var_pop_fields = (obj?: { __typename?: any } | null): obj is plugin_versions_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplugin_versions_var_pop_fields"') + return plugin_versions_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const plugin_versions_var_samp_fields_possibleTypes: string[] = ['plugin_versions_var_samp_fields'] + export const isplugin_versions_var_samp_fields = (obj?: { __typename?: any } | null): obj is plugin_versions_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplugin_versions_var_samp_fields"') + return plugin_versions_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const plugin_versions_variance_fields_possibleTypes: string[] = ['plugin_versions_variance_fields'] + export const isplugin_versions_variance_fields = (obj?: { __typename?: any } | null): obj is plugin_versions_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isplugin_versions_variance_fields"') + return plugin_versions_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const push_subscriptions_possibleTypes: string[] = ['push_subscriptions'] + export const ispush_subscriptions = (obj?: { __typename?: any } | null): obj is push_subscriptions => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispush_subscriptions"') + return push_subscriptions_possibleTypes.includes(obj.__typename) + } + + + + const push_subscriptions_aggregate_possibleTypes: string[] = ['push_subscriptions_aggregate'] + export const ispush_subscriptions_aggregate = (obj?: { __typename?: any } | null): obj is push_subscriptions_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispush_subscriptions_aggregate"') + return push_subscriptions_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const push_subscriptions_aggregate_fields_possibleTypes: string[] = ['push_subscriptions_aggregate_fields'] + export const ispush_subscriptions_aggregate_fields = (obj?: { __typename?: any } | null): obj is push_subscriptions_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispush_subscriptions_aggregate_fields"') + return push_subscriptions_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const push_subscriptions_avg_fields_possibleTypes: string[] = ['push_subscriptions_avg_fields'] + export const ispush_subscriptions_avg_fields = (obj?: { __typename?: any } | null): obj is push_subscriptions_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispush_subscriptions_avg_fields"') + return push_subscriptions_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const push_subscriptions_max_fields_possibleTypes: string[] = ['push_subscriptions_max_fields'] + export const ispush_subscriptions_max_fields = (obj?: { __typename?: any } | null): obj is push_subscriptions_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispush_subscriptions_max_fields"') + return push_subscriptions_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const push_subscriptions_min_fields_possibleTypes: string[] = ['push_subscriptions_min_fields'] + export const ispush_subscriptions_min_fields = (obj?: { __typename?: any } | null): obj is push_subscriptions_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispush_subscriptions_min_fields"') + return push_subscriptions_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const push_subscriptions_mutation_response_possibleTypes: string[] = ['push_subscriptions_mutation_response'] + export const ispush_subscriptions_mutation_response = (obj?: { __typename?: any } | null): obj is push_subscriptions_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispush_subscriptions_mutation_response"') + return push_subscriptions_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const push_subscriptions_stddev_fields_possibleTypes: string[] = ['push_subscriptions_stddev_fields'] + export const ispush_subscriptions_stddev_fields = (obj?: { __typename?: any } | null): obj is push_subscriptions_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispush_subscriptions_stddev_fields"') + return push_subscriptions_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const push_subscriptions_stddev_pop_fields_possibleTypes: string[] = ['push_subscriptions_stddev_pop_fields'] + export const ispush_subscriptions_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is push_subscriptions_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispush_subscriptions_stddev_pop_fields"') + return push_subscriptions_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const push_subscriptions_stddev_samp_fields_possibleTypes: string[] = ['push_subscriptions_stddev_samp_fields'] + export const ispush_subscriptions_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is push_subscriptions_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispush_subscriptions_stddev_samp_fields"') + return push_subscriptions_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const push_subscriptions_sum_fields_possibleTypes: string[] = ['push_subscriptions_sum_fields'] + export const ispush_subscriptions_sum_fields = (obj?: { __typename?: any } | null): obj is push_subscriptions_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispush_subscriptions_sum_fields"') + return push_subscriptions_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const push_subscriptions_var_pop_fields_possibleTypes: string[] = ['push_subscriptions_var_pop_fields'] + export const ispush_subscriptions_var_pop_fields = (obj?: { __typename?: any } | null): obj is push_subscriptions_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispush_subscriptions_var_pop_fields"') + return push_subscriptions_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const push_subscriptions_var_samp_fields_possibleTypes: string[] = ['push_subscriptions_var_samp_fields'] + export const ispush_subscriptions_var_samp_fields = (obj?: { __typename?: any } | null): obj is push_subscriptions_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispush_subscriptions_var_samp_fields"') + return push_subscriptions_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const push_subscriptions_variance_fields_possibleTypes: string[] = ['push_subscriptions_variance_fields'] + export const ispush_subscriptions_variance_fields = (obj?: { __typename?: any } | null): obj is push_subscriptions_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ispush_subscriptions_variance_fields"') + return push_subscriptions_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const query_root_possibleTypes: string[] = ['query_root'] + export const isquery_root = (obj?: { __typename?: any } | null): obj is query_root => { + if (!obj?.__typename) throw new Error('__typename is missing in "isquery_root"') + return query_root_possibleTypes.includes(obj.__typename) + } + + + + const role_permissions_possibleTypes: string[] = ['role_permissions'] + export const isrole_permissions = (obj?: { __typename?: any } | null): obj is role_permissions => { + if (!obj?.__typename) throw new Error('__typename is missing in "isrole_permissions"') + return role_permissions_possibleTypes.includes(obj.__typename) + } + + + + const role_permissions_aggregate_possibleTypes: string[] = ['role_permissions_aggregate'] + export const isrole_permissions_aggregate = (obj?: { __typename?: any } | null): obj is role_permissions_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isrole_permissions_aggregate"') + return role_permissions_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const role_permissions_aggregate_fields_possibleTypes: string[] = ['role_permissions_aggregate_fields'] + export const isrole_permissions_aggregate_fields = (obj?: { __typename?: any } | null): obj is role_permissions_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isrole_permissions_aggregate_fields"') + return role_permissions_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const role_permissions_max_fields_possibleTypes: string[] = ['role_permissions_max_fields'] + export const isrole_permissions_max_fields = (obj?: { __typename?: any } | null): obj is role_permissions_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isrole_permissions_max_fields"') + return role_permissions_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const role_permissions_min_fields_possibleTypes: string[] = ['role_permissions_min_fields'] + export const isrole_permissions_min_fields = (obj?: { __typename?: any } | null): obj is role_permissions_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isrole_permissions_min_fields"') + return role_permissions_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const role_permissions_mutation_response_possibleTypes: string[] = ['role_permissions_mutation_response'] + export const isrole_permissions_mutation_response = (obj?: { __typename?: any } | null): obj is role_permissions_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isrole_permissions_mutation_response"') + return role_permissions_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const seasons_possibleTypes: string[] = ['seasons'] + export const isseasons = (obj?: { __typename?: any } | null): obj is seasons => { + if (!obj?.__typename) throw new Error('__typename is missing in "isseasons"') + return seasons_possibleTypes.includes(obj.__typename) + } + + + + const seasons_aggregate_possibleTypes: string[] = ['seasons_aggregate'] + export const isseasons_aggregate = (obj?: { __typename?: any } | null): obj is seasons_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isseasons_aggregate"') + return seasons_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const seasons_aggregate_fields_possibleTypes: string[] = ['seasons_aggregate_fields'] + export const isseasons_aggregate_fields = (obj?: { __typename?: any } | null): obj is seasons_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isseasons_aggregate_fields"') + return seasons_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const seasons_avg_fields_possibleTypes: string[] = ['seasons_avg_fields'] + export const isseasons_avg_fields = (obj?: { __typename?: any } | null): obj is seasons_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isseasons_avg_fields"') + return seasons_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const seasons_max_fields_possibleTypes: string[] = ['seasons_max_fields'] + export const isseasons_max_fields = (obj?: { __typename?: any } | null): obj is seasons_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isseasons_max_fields"') + return seasons_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const seasons_min_fields_possibleTypes: string[] = ['seasons_min_fields'] + export const isseasons_min_fields = (obj?: { __typename?: any } | null): obj is seasons_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isseasons_min_fields"') + return seasons_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const seasons_mutation_response_possibleTypes: string[] = ['seasons_mutation_response'] + export const isseasons_mutation_response = (obj?: { __typename?: any } | null): obj is seasons_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isseasons_mutation_response"') + return seasons_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const seasons_stddev_fields_possibleTypes: string[] = ['seasons_stddev_fields'] + export const isseasons_stddev_fields = (obj?: { __typename?: any } | null): obj is seasons_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isseasons_stddev_fields"') + return seasons_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const seasons_stddev_pop_fields_possibleTypes: string[] = ['seasons_stddev_pop_fields'] + export const isseasons_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is seasons_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isseasons_stddev_pop_fields"') + return seasons_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const seasons_stddev_samp_fields_possibleTypes: string[] = ['seasons_stddev_samp_fields'] + export const isseasons_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is seasons_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isseasons_stddev_samp_fields"') + return seasons_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const seasons_sum_fields_possibleTypes: string[] = ['seasons_sum_fields'] + export const isseasons_sum_fields = (obj?: { __typename?: any } | null): obj is seasons_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isseasons_sum_fields"') + return seasons_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const seasons_var_pop_fields_possibleTypes: string[] = ['seasons_var_pop_fields'] + export const isseasons_var_pop_fields = (obj?: { __typename?: any } | null): obj is seasons_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isseasons_var_pop_fields"') + return seasons_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const seasons_var_samp_fields_possibleTypes: string[] = ['seasons_var_samp_fields'] + export const isseasons_var_samp_fields = (obj?: { __typename?: any } | null): obj is seasons_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isseasons_var_samp_fields"') + return seasons_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const seasons_variance_fields_possibleTypes: string[] = ['seasons_variance_fields'] + export const isseasons_variance_fields = (obj?: { __typename?: any } | null): obj is seasons_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isseasons_variance_fields"') + return seasons_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const server_regions_possibleTypes: string[] = ['server_regions'] + export const isserver_regions = (obj?: { __typename?: any } | null): obj is server_regions => { + if (!obj?.__typename) throw new Error('__typename is missing in "isserver_regions"') + return server_regions_possibleTypes.includes(obj.__typename) + } + + + + const server_regions_aggregate_possibleTypes: string[] = ['server_regions_aggregate'] + export const isserver_regions_aggregate = (obj?: { __typename?: any } | null): obj is server_regions_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isserver_regions_aggregate"') + return server_regions_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const server_regions_aggregate_fields_possibleTypes: string[] = ['server_regions_aggregate_fields'] + export const isserver_regions_aggregate_fields = (obj?: { __typename?: any } | null): obj is server_regions_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isserver_regions_aggregate_fields"') + return server_regions_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const server_regions_avg_fields_possibleTypes: string[] = ['server_regions_avg_fields'] + export const isserver_regions_avg_fields = (obj?: { __typename?: any } | null): obj is server_regions_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isserver_regions_avg_fields"') + return server_regions_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const server_regions_max_fields_possibleTypes: string[] = ['server_regions_max_fields'] + export const isserver_regions_max_fields = (obj?: { __typename?: any } | null): obj is server_regions_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isserver_regions_max_fields"') + return server_regions_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const server_regions_min_fields_possibleTypes: string[] = ['server_regions_min_fields'] + export const isserver_regions_min_fields = (obj?: { __typename?: any } | null): obj is server_regions_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isserver_regions_min_fields"') + return server_regions_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const server_regions_mutation_response_possibleTypes: string[] = ['server_regions_mutation_response'] + export const isserver_regions_mutation_response = (obj?: { __typename?: any } | null): obj is server_regions_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isserver_regions_mutation_response"') + return server_regions_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const server_regions_stddev_fields_possibleTypes: string[] = ['server_regions_stddev_fields'] + export const isserver_regions_stddev_fields = (obj?: { __typename?: any } | null): obj is server_regions_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isserver_regions_stddev_fields"') + return server_regions_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const server_regions_stddev_pop_fields_possibleTypes: string[] = ['server_regions_stddev_pop_fields'] + export const isserver_regions_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is server_regions_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isserver_regions_stddev_pop_fields"') + return server_regions_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const server_regions_stddev_samp_fields_possibleTypes: string[] = ['server_regions_stddev_samp_fields'] + export const isserver_regions_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is server_regions_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isserver_regions_stddev_samp_fields"') + return server_regions_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const server_regions_sum_fields_possibleTypes: string[] = ['server_regions_sum_fields'] + export const isserver_regions_sum_fields = (obj?: { __typename?: any } | null): obj is server_regions_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isserver_regions_sum_fields"') + return server_regions_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const server_regions_var_pop_fields_possibleTypes: string[] = ['server_regions_var_pop_fields'] + export const isserver_regions_var_pop_fields = (obj?: { __typename?: any } | null): obj is server_regions_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isserver_regions_var_pop_fields"') + return server_regions_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const server_regions_var_samp_fields_possibleTypes: string[] = ['server_regions_var_samp_fields'] + export const isserver_regions_var_samp_fields = (obj?: { __typename?: any } | null): obj is server_regions_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isserver_regions_var_samp_fields"') + return server_regions_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const server_regions_variance_fields_possibleTypes: string[] = ['server_regions_variance_fields'] + export const isserver_regions_variance_fields = (obj?: { __typename?: any } | null): obj is server_regions_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isserver_regions_variance_fields"') + return server_regions_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const servers_possibleTypes: string[] = ['servers'] + export const isservers = (obj?: { __typename?: any } | null): obj is servers => { + if (!obj?.__typename) throw new Error('__typename is missing in "isservers"') + return servers_possibleTypes.includes(obj.__typename) + } + + + + const servers_aggregate_possibleTypes: string[] = ['servers_aggregate'] + export const isservers_aggregate = (obj?: { __typename?: any } | null): obj is servers_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isservers_aggregate"') + return servers_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const servers_aggregate_fields_possibleTypes: string[] = ['servers_aggregate_fields'] + export const isservers_aggregate_fields = (obj?: { __typename?: any } | null): obj is servers_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isservers_aggregate_fields"') + return servers_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const servers_avg_fields_possibleTypes: string[] = ['servers_avg_fields'] + export const isservers_avg_fields = (obj?: { __typename?: any } | null): obj is servers_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isservers_avg_fields"') + return servers_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const servers_max_fields_possibleTypes: string[] = ['servers_max_fields'] + export const isservers_max_fields = (obj?: { __typename?: any } | null): obj is servers_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isservers_max_fields"') + return servers_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const servers_min_fields_possibleTypes: string[] = ['servers_min_fields'] + export const isservers_min_fields = (obj?: { __typename?: any } | null): obj is servers_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isservers_min_fields"') + return servers_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const servers_mutation_response_possibleTypes: string[] = ['servers_mutation_response'] + export const isservers_mutation_response = (obj?: { __typename?: any } | null): obj is servers_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isservers_mutation_response"') + return servers_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const servers_stddev_fields_possibleTypes: string[] = ['servers_stddev_fields'] + export const isservers_stddev_fields = (obj?: { __typename?: any } | null): obj is servers_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isservers_stddev_fields"') + return servers_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const servers_stddev_pop_fields_possibleTypes: string[] = ['servers_stddev_pop_fields'] + export const isservers_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is servers_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isservers_stddev_pop_fields"') + return servers_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const servers_stddev_samp_fields_possibleTypes: string[] = ['servers_stddev_samp_fields'] + export const isservers_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is servers_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isservers_stddev_samp_fields"') + return servers_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const servers_sum_fields_possibleTypes: string[] = ['servers_sum_fields'] + export const isservers_sum_fields = (obj?: { __typename?: any } | null): obj is servers_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isservers_sum_fields"') + return servers_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const servers_var_pop_fields_possibleTypes: string[] = ['servers_var_pop_fields'] + export const isservers_var_pop_fields = (obj?: { __typename?: any } | null): obj is servers_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isservers_var_pop_fields"') + return servers_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const servers_var_samp_fields_possibleTypes: string[] = ['servers_var_samp_fields'] + export const isservers_var_samp_fields = (obj?: { __typename?: any } | null): obj is servers_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isservers_var_samp_fields"') + return servers_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const servers_variance_fields_possibleTypes: string[] = ['servers_variance_fields'] + export const isservers_variance_fields = (obj?: { __typename?: any } | null): obj is servers_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isservers_variance_fields"') + return servers_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const settings_possibleTypes: string[] = ['settings'] + export const issettings = (obj?: { __typename?: any } | null): obj is settings => { + if (!obj?.__typename) throw new Error('__typename is missing in "issettings"') + return settings_possibleTypes.includes(obj.__typename) + } + + + + const settings_aggregate_possibleTypes: string[] = ['settings_aggregate'] + export const issettings_aggregate = (obj?: { __typename?: any } | null): obj is settings_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "issettings_aggregate"') + return settings_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const settings_aggregate_fields_possibleTypes: string[] = ['settings_aggregate_fields'] + export const issettings_aggregate_fields = (obj?: { __typename?: any } | null): obj is settings_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "issettings_aggregate_fields"') + return settings_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const settings_max_fields_possibleTypes: string[] = ['settings_max_fields'] + export const issettings_max_fields = (obj?: { __typename?: any } | null): obj is settings_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "issettings_max_fields"') + return settings_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const settings_min_fields_possibleTypes: string[] = ['settings_min_fields'] + export const issettings_min_fields = (obj?: { __typename?: any } | null): obj is settings_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "issettings_min_fields"') + return settings_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const settings_mutation_response_possibleTypes: string[] = ['settings_mutation_response'] + export const issettings_mutation_response = (obj?: { __typename?: any } | null): obj is settings_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "issettings_mutation_response"') + return settings_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const steam_account_claims_possibleTypes: string[] = ['steam_account_claims'] + export const issteam_account_claims = (obj?: { __typename?: any } | null): obj is steam_account_claims => { + if (!obj?.__typename) throw new Error('__typename is missing in "issteam_account_claims"') + return steam_account_claims_possibleTypes.includes(obj.__typename) + } + + + + const steam_account_claims_aggregate_possibleTypes: string[] = ['steam_account_claims_aggregate'] + export const issteam_account_claims_aggregate = (obj?: { __typename?: any } | null): obj is steam_account_claims_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "issteam_account_claims_aggregate"') + return steam_account_claims_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const steam_account_claims_aggregate_fields_possibleTypes: string[] = ['steam_account_claims_aggregate_fields'] + export const issteam_account_claims_aggregate_fields = (obj?: { __typename?: any } | null): obj is steam_account_claims_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "issteam_account_claims_aggregate_fields"') + return steam_account_claims_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const steam_account_claims_max_fields_possibleTypes: string[] = ['steam_account_claims_max_fields'] + export const issteam_account_claims_max_fields = (obj?: { __typename?: any } | null): obj is steam_account_claims_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "issteam_account_claims_max_fields"') + return steam_account_claims_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const steam_account_claims_min_fields_possibleTypes: string[] = ['steam_account_claims_min_fields'] + export const issteam_account_claims_min_fields = (obj?: { __typename?: any } | null): obj is steam_account_claims_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "issteam_account_claims_min_fields"') + return steam_account_claims_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const steam_account_claims_mutation_response_possibleTypes: string[] = ['steam_account_claims_mutation_response'] + export const issteam_account_claims_mutation_response = (obj?: { __typename?: any } | null): obj is steam_account_claims_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "issteam_account_claims_mutation_response"') + return steam_account_claims_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const steam_accounts_possibleTypes: string[] = ['steam_accounts'] + export const issteam_accounts = (obj?: { __typename?: any } | null): obj is steam_accounts => { + if (!obj?.__typename) throw new Error('__typename is missing in "issteam_accounts"') + return steam_accounts_possibleTypes.includes(obj.__typename) + } + + + + const steam_accounts_aggregate_possibleTypes: string[] = ['steam_accounts_aggregate'] + export const issteam_accounts_aggregate = (obj?: { __typename?: any } | null): obj is steam_accounts_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "issteam_accounts_aggregate"') + return steam_accounts_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const steam_accounts_aggregate_fields_possibleTypes: string[] = ['steam_accounts_aggregate_fields'] + export const issteam_accounts_aggregate_fields = (obj?: { __typename?: any } | null): obj is steam_accounts_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "issteam_accounts_aggregate_fields"') + return steam_accounts_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const steam_accounts_avg_fields_possibleTypes: string[] = ['steam_accounts_avg_fields'] + export const issteam_accounts_avg_fields = (obj?: { __typename?: any } | null): obj is steam_accounts_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "issteam_accounts_avg_fields"') + return steam_accounts_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const steam_accounts_max_fields_possibleTypes: string[] = ['steam_accounts_max_fields'] + export const issteam_accounts_max_fields = (obj?: { __typename?: any } | null): obj is steam_accounts_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "issteam_accounts_max_fields"') + return steam_accounts_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const steam_accounts_min_fields_possibleTypes: string[] = ['steam_accounts_min_fields'] + export const issteam_accounts_min_fields = (obj?: { __typename?: any } | null): obj is steam_accounts_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "issteam_accounts_min_fields"') + return steam_accounts_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const steam_accounts_mutation_response_possibleTypes: string[] = ['steam_accounts_mutation_response'] + export const issteam_accounts_mutation_response = (obj?: { __typename?: any } | null): obj is steam_accounts_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "issteam_accounts_mutation_response"') + return steam_accounts_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const steam_accounts_stddev_fields_possibleTypes: string[] = ['steam_accounts_stddev_fields'] + export const issteam_accounts_stddev_fields = (obj?: { __typename?: any } | null): obj is steam_accounts_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "issteam_accounts_stddev_fields"') + return steam_accounts_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const steam_accounts_stddev_pop_fields_possibleTypes: string[] = ['steam_accounts_stddev_pop_fields'] + export const issteam_accounts_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is steam_accounts_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "issteam_accounts_stddev_pop_fields"') + return steam_accounts_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const steam_accounts_stddev_samp_fields_possibleTypes: string[] = ['steam_accounts_stddev_samp_fields'] + export const issteam_accounts_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is steam_accounts_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "issteam_accounts_stddev_samp_fields"') + return steam_accounts_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const steam_accounts_sum_fields_possibleTypes: string[] = ['steam_accounts_sum_fields'] + export const issteam_accounts_sum_fields = (obj?: { __typename?: any } | null): obj is steam_accounts_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "issteam_accounts_sum_fields"') + return steam_accounts_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const steam_accounts_var_pop_fields_possibleTypes: string[] = ['steam_accounts_var_pop_fields'] + export const issteam_accounts_var_pop_fields = (obj?: { __typename?: any } | null): obj is steam_accounts_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "issteam_accounts_var_pop_fields"') + return steam_accounts_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const steam_accounts_var_samp_fields_possibleTypes: string[] = ['steam_accounts_var_samp_fields'] + export const issteam_accounts_var_samp_fields = (obj?: { __typename?: any } | null): obj is steam_accounts_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "issteam_accounts_var_samp_fields"') + return steam_accounts_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const steam_accounts_variance_fields_possibleTypes: string[] = ['steam_accounts_variance_fields'] + export const issteam_accounts_variance_fields = (obj?: { __typename?: any } | null): obj is steam_accounts_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "issteam_accounts_variance_fields"') + return steam_accounts_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const subscription_root_possibleTypes: string[] = ['subscription_root'] + export const issubscription_root = (obj?: { __typename?: any } | null): obj is subscription_root => { + if (!obj?.__typename) throw new Error('__typename is missing in "issubscription_root"') + return subscription_root_possibleTypes.includes(obj.__typename) + } + + + + const system_alerts_possibleTypes: string[] = ['system_alerts'] + export const issystem_alerts = (obj?: { __typename?: any } | null): obj is system_alerts => { + if (!obj?.__typename) throw new Error('__typename is missing in "issystem_alerts"') + return system_alerts_possibleTypes.includes(obj.__typename) + } + + + + const system_alerts_aggregate_possibleTypes: string[] = ['system_alerts_aggregate'] + export const issystem_alerts_aggregate = (obj?: { __typename?: any } | null): obj is system_alerts_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "issystem_alerts_aggregate"') + return system_alerts_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const system_alerts_aggregate_fields_possibleTypes: string[] = ['system_alerts_aggregate_fields'] + export const issystem_alerts_aggregate_fields = (obj?: { __typename?: any } | null): obj is system_alerts_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "issystem_alerts_aggregate_fields"') + return system_alerts_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const system_alerts_avg_fields_possibleTypes: string[] = ['system_alerts_avg_fields'] + export const issystem_alerts_avg_fields = (obj?: { __typename?: any } | null): obj is system_alerts_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "issystem_alerts_avg_fields"') + return system_alerts_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const system_alerts_max_fields_possibleTypes: string[] = ['system_alerts_max_fields'] + export const issystem_alerts_max_fields = (obj?: { __typename?: any } | null): obj is system_alerts_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "issystem_alerts_max_fields"') + return system_alerts_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const system_alerts_min_fields_possibleTypes: string[] = ['system_alerts_min_fields'] + export const issystem_alerts_min_fields = (obj?: { __typename?: any } | null): obj is system_alerts_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "issystem_alerts_min_fields"') + return system_alerts_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const system_alerts_mutation_response_possibleTypes: string[] = ['system_alerts_mutation_response'] + export const issystem_alerts_mutation_response = (obj?: { __typename?: any } | null): obj is system_alerts_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "issystem_alerts_mutation_response"') + return system_alerts_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const system_alerts_stddev_fields_possibleTypes: string[] = ['system_alerts_stddev_fields'] + export const issystem_alerts_stddev_fields = (obj?: { __typename?: any } | null): obj is system_alerts_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "issystem_alerts_stddev_fields"') + return system_alerts_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const system_alerts_stddev_pop_fields_possibleTypes: string[] = ['system_alerts_stddev_pop_fields'] + export const issystem_alerts_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is system_alerts_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "issystem_alerts_stddev_pop_fields"') + return system_alerts_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const system_alerts_stddev_samp_fields_possibleTypes: string[] = ['system_alerts_stddev_samp_fields'] + export const issystem_alerts_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is system_alerts_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "issystem_alerts_stddev_samp_fields"') + return system_alerts_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const system_alerts_sum_fields_possibleTypes: string[] = ['system_alerts_sum_fields'] + export const issystem_alerts_sum_fields = (obj?: { __typename?: any } | null): obj is system_alerts_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "issystem_alerts_sum_fields"') + return system_alerts_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const system_alerts_var_pop_fields_possibleTypes: string[] = ['system_alerts_var_pop_fields'] + export const issystem_alerts_var_pop_fields = (obj?: { __typename?: any } | null): obj is system_alerts_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "issystem_alerts_var_pop_fields"') + return system_alerts_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const system_alerts_var_samp_fields_possibleTypes: string[] = ['system_alerts_var_samp_fields'] + export const issystem_alerts_var_samp_fields = (obj?: { __typename?: any } | null): obj is system_alerts_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "issystem_alerts_var_samp_fields"') + return system_alerts_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const system_alerts_variance_fields_possibleTypes: string[] = ['system_alerts_variance_fields'] + export const issystem_alerts_variance_fields = (obj?: { __typename?: any } | null): obj is system_alerts_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "issystem_alerts_variance_fields"') + return system_alerts_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_invites_possibleTypes: string[] = ['team_invites'] + export const isteam_invites = (obj?: { __typename?: any } | null): obj is team_invites => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_invites"') + return team_invites_possibleTypes.includes(obj.__typename) + } + + + + const team_invites_aggregate_possibleTypes: string[] = ['team_invites_aggregate'] + export const isteam_invites_aggregate = (obj?: { __typename?: any } | null): obj is team_invites_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_invites_aggregate"') + return team_invites_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const team_invites_aggregate_fields_possibleTypes: string[] = ['team_invites_aggregate_fields'] + export const isteam_invites_aggregate_fields = (obj?: { __typename?: any } | null): obj is team_invites_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_invites_aggregate_fields"') + return team_invites_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_invites_avg_fields_possibleTypes: string[] = ['team_invites_avg_fields'] + export const isteam_invites_avg_fields = (obj?: { __typename?: any } | null): obj is team_invites_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_invites_avg_fields"') + return team_invites_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_invites_max_fields_possibleTypes: string[] = ['team_invites_max_fields'] + export const isteam_invites_max_fields = (obj?: { __typename?: any } | null): obj is team_invites_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_invites_max_fields"') + return team_invites_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_invites_min_fields_possibleTypes: string[] = ['team_invites_min_fields'] + export const isteam_invites_min_fields = (obj?: { __typename?: any } | null): obj is team_invites_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_invites_min_fields"') + return team_invites_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_invites_mutation_response_possibleTypes: string[] = ['team_invites_mutation_response'] + export const isteam_invites_mutation_response = (obj?: { __typename?: any } | null): obj is team_invites_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_invites_mutation_response"') + return team_invites_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const team_invites_stddev_fields_possibleTypes: string[] = ['team_invites_stddev_fields'] + export const isteam_invites_stddev_fields = (obj?: { __typename?: any } | null): obj is team_invites_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_invites_stddev_fields"') + return team_invites_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_invites_stddev_pop_fields_possibleTypes: string[] = ['team_invites_stddev_pop_fields'] + export const isteam_invites_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is team_invites_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_invites_stddev_pop_fields"') + return team_invites_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_invites_stddev_samp_fields_possibleTypes: string[] = ['team_invites_stddev_samp_fields'] + export const isteam_invites_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is team_invites_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_invites_stddev_samp_fields"') + return team_invites_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_invites_sum_fields_possibleTypes: string[] = ['team_invites_sum_fields'] + export const isteam_invites_sum_fields = (obj?: { __typename?: any } | null): obj is team_invites_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_invites_sum_fields"') + return team_invites_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_invites_var_pop_fields_possibleTypes: string[] = ['team_invites_var_pop_fields'] + export const isteam_invites_var_pop_fields = (obj?: { __typename?: any } | null): obj is team_invites_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_invites_var_pop_fields"') + return team_invites_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_invites_var_samp_fields_possibleTypes: string[] = ['team_invites_var_samp_fields'] + export const isteam_invites_var_samp_fields = (obj?: { __typename?: any } | null): obj is team_invites_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_invites_var_samp_fields"') + return team_invites_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_invites_variance_fields_possibleTypes: string[] = ['team_invites_variance_fields'] + export const isteam_invites_variance_fields = (obj?: { __typename?: any } | null): obj is team_invites_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_invites_variance_fields"') + return team_invites_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_roster_possibleTypes: string[] = ['team_roster'] + export const isteam_roster = (obj?: { __typename?: any } | null): obj is team_roster => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_roster"') + return team_roster_possibleTypes.includes(obj.__typename) + } + + + + const team_roster_aggregate_possibleTypes: string[] = ['team_roster_aggregate'] + export const isteam_roster_aggregate = (obj?: { __typename?: any } | null): obj is team_roster_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_roster_aggregate"') + return team_roster_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const team_roster_aggregate_fields_possibleTypes: string[] = ['team_roster_aggregate_fields'] + export const isteam_roster_aggregate_fields = (obj?: { __typename?: any } | null): obj is team_roster_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_roster_aggregate_fields"') + return team_roster_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_roster_avg_fields_possibleTypes: string[] = ['team_roster_avg_fields'] + export const isteam_roster_avg_fields = (obj?: { __typename?: any } | null): obj is team_roster_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_roster_avg_fields"') + return team_roster_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_roster_max_fields_possibleTypes: string[] = ['team_roster_max_fields'] + export const isteam_roster_max_fields = (obj?: { __typename?: any } | null): obj is team_roster_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_roster_max_fields"') + return team_roster_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_roster_min_fields_possibleTypes: string[] = ['team_roster_min_fields'] + export const isteam_roster_min_fields = (obj?: { __typename?: any } | null): obj is team_roster_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_roster_min_fields"') + return team_roster_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_roster_mutation_response_possibleTypes: string[] = ['team_roster_mutation_response'] + export const isteam_roster_mutation_response = (obj?: { __typename?: any } | null): obj is team_roster_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_roster_mutation_response"') + return team_roster_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const team_roster_stddev_fields_possibleTypes: string[] = ['team_roster_stddev_fields'] + export const isteam_roster_stddev_fields = (obj?: { __typename?: any } | null): obj is team_roster_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_roster_stddev_fields"') + return team_roster_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_roster_stddev_pop_fields_possibleTypes: string[] = ['team_roster_stddev_pop_fields'] + export const isteam_roster_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is team_roster_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_roster_stddev_pop_fields"') + return team_roster_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_roster_stddev_samp_fields_possibleTypes: string[] = ['team_roster_stddev_samp_fields'] + export const isteam_roster_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is team_roster_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_roster_stddev_samp_fields"') + return team_roster_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_roster_sum_fields_possibleTypes: string[] = ['team_roster_sum_fields'] + export const isteam_roster_sum_fields = (obj?: { __typename?: any } | null): obj is team_roster_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_roster_sum_fields"') + return team_roster_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_roster_var_pop_fields_possibleTypes: string[] = ['team_roster_var_pop_fields'] + export const isteam_roster_var_pop_fields = (obj?: { __typename?: any } | null): obj is team_roster_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_roster_var_pop_fields"') + return team_roster_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_roster_var_samp_fields_possibleTypes: string[] = ['team_roster_var_samp_fields'] + export const isteam_roster_var_samp_fields = (obj?: { __typename?: any } | null): obj is team_roster_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_roster_var_samp_fields"') + return team_roster_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_roster_variance_fields_possibleTypes: string[] = ['team_roster_variance_fields'] + export const isteam_roster_variance_fields = (obj?: { __typename?: any } | null): obj is team_roster_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_roster_variance_fields"') + return team_roster_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_alerts_possibleTypes: string[] = ['team_scrim_alerts'] + export const isteam_scrim_alerts = (obj?: { __typename?: any } | null): obj is team_scrim_alerts => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_alerts"') + return team_scrim_alerts_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_alerts_aggregate_possibleTypes: string[] = ['team_scrim_alerts_aggregate'] + export const isteam_scrim_alerts_aggregate = (obj?: { __typename?: any } | null): obj is team_scrim_alerts_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_alerts_aggregate"') + return team_scrim_alerts_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_alerts_aggregate_fields_possibleTypes: string[] = ['team_scrim_alerts_aggregate_fields'] + export const isteam_scrim_alerts_aggregate_fields = (obj?: { __typename?: any } | null): obj is team_scrim_alerts_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_alerts_aggregate_fields"') + return team_scrim_alerts_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_alerts_avg_fields_possibleTypes: string[] = ['team_scrim_alerts_avg_fields'] + export const isteam_scrim_alerts_avg_fields = (obj?: { __typename?: any } | null): obj is team_scrim_alerts_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_alerts_avg_fields"') + return team_scrim_alerts_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_alerts_max_fields_possibleTypes: string[] = ['team_scrim_alerts_max_fields'] + export const isteam_scrim_alerts_max_fields = (obj?: { __typename?: any } | null): obj is team_scrim_alerts_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_alerts_max_fields"') + return team_scrim_alerts_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_alerts_min_fields_possibleTypes: string[] = ['team_scrim_alerts_min_fields'] + export const isteam_scrim_alerts_min_fields = (obj?: { __typename?: any } | null): obj is team_scrim_alerts_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_alerts_min_fields"') + return team_scrim_alerts_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_alerts_mutation_response_possibleTypes: string[] = ['team_scrim_alerts_mutation_response'] + export const isteam_scrim_alerts_mutation_response = (obj?: { __typename?: any } | null): obj is team_scrim_alerts_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_alerts_mutation_response"') + return team_scrim_alerts_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_alerts_stddev_fields_possibleTypes: string[] = ['team_scrim_alerts_stddev_fields'] + export const isteam_scrim_alerts_stddev_fields = (obj?: { __typename?: any } | null): obj is team_scrim_alerts_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_alerts_stddev_fields"') + return team_scrim_alerts_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_alerts_stddev_pop_fields_possibleTypes: string[] = ['team_scrim_alerts_stddev_pop_fields'] + export const isteam_scrim_alerts_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is team_scrim_alerts_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_alerts_stddev_pop_fields"') + return team_scrim_alerts_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_alerts_stddev_samp_fields_possibleTypes: string[] = ['team_scrim_alerts_stddev_samp_fields'] + export const isteam_scrim_alerts_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is team_scrim_alerts_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_alerts_stddev_samp_fields"') + return team_scrim_alerts_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_alerts_sum_fields_possibleTypes: string[] = ['team_scrim_alerts_sum_fields'] + export const isteam_scrim_alerts_sum_fields = (obj?: { __typename?: any } | null): obj is team_scrim_alerts_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_alerts_sum_fields"') + return team_scrim_alerts_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_alerts_var_pop_fields_possibleTypes: string[] = ['team_scrim_alerts_var_pop_fields'] + export const isteam_scrim_alerts_var_pop_fields = (obj?: { __typename?: any } | null): obj is team_scrim_alerts_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_alerts_var_pop_fields"') + return team_scrim_alerts_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_alerts_var_samp_fields_possibleTypes: string[] = ['team_scrim_alerts_var_samp_fields'] + export const isteam_scrim_alerts_var_samp_fields = (obj?: { __typename?: any } | null): obj is team_scrim_alerts_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_alerts_var_samp_fields"') + return team_scrim_alerts_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_alerts_variance_fields_possibleTypes: string[] = ['team_scrim_alerts_variance_fields'] + export const isteam_scrim_alerts_variance_fields = (obj?: { __typename?: any } | null): obj is team_scrim_alerts_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_alerts_variance_fields"') + return team_scrim_alerts_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_availability_possibleTypes: string[] = ['team_scrim_availability'] + export const isteam_scrim_availability = (obj?: { __typename?: any } | null): obj is team_scrim_availability => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_availability"') + return team_scrim_availability_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_availability_aggregate_possibleTypes: string[] = ['team_scrim_availability_aggregate'] + export const isteam_scrim_availability_aggregate = (obj?: { __typename?: any } | null): obj is team_scrim_availability_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_availability_aggregate"') + return team_scrim_availability_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_availability_aggregate_fields_possibleTypes: string[] = ['team_scrim_availability_aggregate_fields'] + export const isteam_scrim_availability_aggregate_fields = (obj?: { __typename?: any } | null): obj is team_scrim_availability_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_availability_aggregate_fields"') + return team_scrim_availability_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_availability_max_fields_possibleTypes: string[] = ['team_scrim_availability_max_fields'] + export const isteam_scrim_availability_max_fields = (obj?: { __typename?: any } | null): obj is team_scrim_availability_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_availability_max_fields"') + return team_scrim_availability_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_availability_min_fields_possibleTypes: string[] = ['team_scrim_availability_min_fields'] + export const isteam_scrim_availability_min_fields = (obj?: { __typename?: any } | null): obj is team_scrim_availability_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_availability_min_fields"') + return team_scrim_availability_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_availability_mutation_response_possibleTypes: string[] = ['team_scrim_availability_mutation_response'] + export const isteam_scrim_availability_mutation_response = (obj?: { __typename?: any } | null): obj is team_scrim_availability_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_availability_mutation_response"') + return team_scrim_availability_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_request_proposals_possibleTypes: string[] = ['team_scrim_request_proposals'] + export const isteam_scrim_request_proposals = (obj?: { __typename?: any } | null): obj is team_scrim_request_proposals => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_request_proposals"') + return team_scrim_request_proposals_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_request_proposals_aggregate_possibleTypes: string[] = ['team_scrim_request_proposals_aggregate'] + export const isteam_scrim_request_proposals_aggregate = (obj?: { __typename?: any } | null): obj is team_scrim_request_proposals_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_request_proposals_aggregate"') + return team_scrim_request_proposals_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_request_proposals_aggregate_fields_possibleTypes: string[] = ['team_scrim_request_proposals_aggregate_fields'] + export const isteam_scrim_request_proposals_aggregate_fields = (obj?: { __typename?: any } | null): obj is team_scrim_request_proposals_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_request_proposals_aggregate_fields"') + return team_scrim_request_proposals_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_request_proposals_avg_fields_possibleTypes: string[] = ['team_scrim_request_proposals_avg_fields'] + export const isteam_scrim_request_proposals_avg_fields = (obj?: { __typename?: any } | null): obj is team_scrim_request_proposals_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_request_proposals_avg_fields"') + return team_scrim_request_proposals_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_request_proposals_max_fields_possibleTypes: string[] = ['team_scrim_request_proposals_max_fields'] + export const isteam_scrim_request_proposals_max_fields = (obj?: { __typename?: any } | null): obj is team_scrim_request_proposals_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_request_proposals_max_fields"') + return team_scrim_request_proposals_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_request_proposals_min_fields_possibleTypes: string[] = ['team_scrim_request_proposals_min_fields'] + export const isteam_scrim_request_proposals_min_fields = (obj?: { __typename?: any } | null): obj is team_scrim_request_proposals_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_request_proposals_min_fields"') + return team_scrim_request_proposals_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_request_proposals_mutation_response_possibleTypes: string[] = ['team_scrim_request_proposals_mutation_response'] + export const isteam_scrim_request_proposals_mutation_response = (obj?: { __typename?: any } | null): obj is team_scrim_request_proposals_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_request_proposals_mutation_response"') + return team_scrim_request_proposals_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_request_proposals_stddev_fields_possibleTypes: string[] = ['team_scrim_request_proposals_stddev_fields'] + export const isteam_scrim_request_proposals_stddev_fields = (obj?: { __typename?: any } | null): obj is team_scrim_request_proposals_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_request_proposals_stddev_fields"') + return team_scrim_request_proposals_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_request_proposals_stddev_pop_fields_possibleTypes: string[] = ['team_scrim_request_proposals_stddev_pop_fields'] + export const isteam_scrim_request_proposals_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is team_scrim_request_proposals_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_request_proposals_stddev_pop_fields"') + return team_scrim_request_proposals_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_request_proposals_stddev_samp_fields_possibleTypes: string[] = ['team_scrim_request_proposals_stddev_samp_fields'] + export const isteam_scrim_request_proposals_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is team_scrim_request_proposals_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_request_proposals_stddev_samp_fields"') + return team_scrim_request_proposals_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_request_proposals_sum_fields_possibleTypes: string[] = ['team_scrim_request_proposals_sum_fields'] + export const isteam_scrim_request_proposals_sum_fields = (obj?: { __typename?: any } | null): obj is team_scrim_request_proposals_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_request_proposals_sum_fields"') + return team_scrim_request_proposals_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_request_proposals_var_pop_fields_possibleTypes: string[] = ['team_scrim_request_proposals_var_pop_fields'] + export const isteam_scrim_request_proposals_var_pop_fields = (obj?: { __typename?: any } | null): obj is team_scrim_request_proposals_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_request_proposals_var_pop_fields"') + return team_scrim_request_proposals_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_request_proposals_var_samp_fields_possibleTypes: string[] = ['team_scrim_request_proposals_var_samp_fields'] + export const isteam_scrim_request_proposals_var_samp_fields = (obj?: { __typename?: any } | null): obj is team_scrim_request_proposals_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_request_proposals_var_samp_fields"') + return team_scrim_request_proposals_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_request_proposals_variance_fields_possibleTypes: string[] = ['team_scrim_request_proposals_variance_fields'] + export const isteam_scrim_request_proposals_variance_fields = (obj?: { __typename?: any } | null): obj is team_scrim_request_proposals_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_request_proposals_variance_fields"') + return team_scrim_request_proposals_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_requests_possibleTypes: string[] = ['team_scrim_requests'] + export const isteam_scrim_requests = (obj?: { __typename?: any } | null): obj is team_scrim_requests => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_requests"') + return team_scrim_requests_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_requests_aggregate_possibleTypes: string[] = ['team_scrim_requests_aggregate'] + export const isteam_scrim_requests_aggregate = (obj?: { __typename?: any } | null): obj is team_scrim_requests_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_requests_aggregate"') + return team_scrim_requests_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_requests_aggregate_fields_possibleTypes: string[] = ['team_scrim_requests_aggregate_fields'] + export const isteam_scrim_requests_aggregate_fields = (obj?: { __typename?: any } | null): obj is team_scrim_requests_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_requests_aggregate_fields"') + return team_scrim_requests_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_requests_avg_fields_possibleTypes: string[] = ['team_scrim_requests_avg_fields'] + export const isteam_scrim_requests_avg_fields = (obj?: { __typename?: any } | null): obj is team_scrim_requests_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_requests_avg_fields"') + return team_scrim_requests_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_requests_max_fields_possibleTypes: string[] = ['team_scrim_requests_max_fields'] + export const isteam_scrim_requests_max_fields = (obj?: { __typename?: any } | null): obj is team_scrim_requests_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_requests_max_fields"') + return team_scrim_requests_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_requests_min_fields_possibleTypes: string[] = ['team_scrim_requests_min_fields'] + export const isteam_scrim_requests_min_fields = (obj?: { __typename?: any } | null): obj is team_scrim_requests_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_requests_min_fields"') + return team_scrim_requests_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_requests_mutation_response_possibleTypes: string[] = ['team_scrim_requests_mutation_response'] + export const isteam_scrim_requests_mutation_response = (obj?: { __typename?: any } | null): obj is team_scrim_requests_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_requests_mutation_response"') + return team_scrim_requests_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_requests_stddev_fields_possibleTypes: string[] = ['team_scrim_requests_stddev_fields'] + export const isteam_scrim_requests_stddev_fields = (obj?: { __typename?: any } | null): obj is team_scrim_requests_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_requests_stddev_fields"') + return team_scrim_requests_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_requests_stddev_pop_fields_possibleTypes: string[] = ['team_scrim_requests_stddev_pop_fields'] + export const isteam_scrim_requests_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is team_scrim_requests_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_requests_stddev_pop_fields"') + return team_scrim_requests_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_requests_stddev_samp_fields_possibleTypes: string[] = ['team_scrim_requests_stddev_samp_fields'] + export const isteam_scrim_requests_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is team_scrim_requests_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_requests_stddev_samp_fields"') + return team_scrim_requests_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_requests_sum_fields_possibleTypes: string[] = ['team_scrim_requests_sum_fields'] + export const isteam_scrim_requests_sum_fields = (obj?: { __typename?: any } | null): obj is team_scrim_requests_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_requests_sum_fields"') + return team_scrim_requests_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_requests_var_pop_fields_possibleTypes: string[] = ['team_scrim_requests_var_pop_fields'] + export const isteam_scrim_requests_var_pop_fields = (obj?: { __typename?: any } | null): obj is team_scrim_requests_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_requests_var_pop_fields"') + return team_scrim_requests_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_requests_var_samp_fields_possibleTypes: string[] = ['team_scrim_requests_var_samp_fields'] + export const isteam_scrim_requests_var_samp_fields = (obj?: { __typename?: any } | null): obj is team_scrim_requests_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_requests_var_samp_fields"') + return team_scrim_requests_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_requests_variance_fields_possibleTypes: string[] = ['team_scrim_requests_variance_fields'] + export const isteam_scrim_requests_variance_fields = (obj?: { __typename?: any } | null): obj is team_scrim_requests_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_requests_variance_fields"') + return team_scrim_requests_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_settings_possibleTypes: string[] = ['team_scrim_settings'] + export const isteam_scrim_settings = (obj?: { __typename?: any } | null): obj is team_scrim_settings => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_settings"') + return team_scrim_settings_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_settings_aggregate_possibleTypes: string[] = ['team_scrim_settings_aggregate'] + export const isteam_scrim_settings_aggregate = (obj?: { __typename?: any } | null): obj is team_scrim_settings_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_settings_aggregate"') + return team_scrim_settings_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_settings_aggregate_fields_possibleTypes: string[] = ['team_scrim_settings_aggregate_fields'] + export const isteam_scrim_settings_aggregate_fields = (obj?: { __typename?: any } | null): obj is team_scrim_settings_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_settings_aggregate_fields"') + return team_scrim_settings_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_settings_avg_fields_possibleTypes: string[] = ['team_scrim_settings_avg_fields'] + export const isteam_scrim_settings_avg_fields = (obj?: { __typename?: any } | null): obj is team_scrim_settings_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_settings_avg_fields"') + return team_scrim_settings_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_settings_max_fields_possibleTypes: string[] = ['team_scrim_settings_max_fields'] + export const isteam_scrim_settings_max_fields = (obj?: { __typename?: any } | null): obj is team_scrim_settings_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_settings_max_fields"') + return team_scrim_settings_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_settings_min_fields_possibleTypes: string[] = ['team_scrim_settings_min_fields'] + export const isteam_scrim_settings_min_fields = (obj?: { __typename?: any } | null): obj is team_scrim_settings_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_settings_min_fields"') + return team_scrim_settings_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_settings_mutation_response_possibleTypes: string[] = ['team_scrim_settings_mutation_response'] + export const isteam_scrim_settings_mutation_response = (obj?: { __typename?: any } | null): obj is team_scrim_settings_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_settings_mutation_response"') + return team_scrim_settings_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_settings_stddev_fields_possibleTypes: string[] = ['team_scrim_settings_stddev_fields'] + export const isteam_scrim_settings_stddev_fields = (obj?: { __typename?: any } | null): obj is team_scrim_settings_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_settings_stddev_fields"') + return team_scrim_settings_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_settings_stddev_pop_fields_possibleTypes: string[] = ['team_scrim_settings_stddev_pop_fields'] + export const isteam_scrim_settings_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is team_scrim_settings_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_settings_stddev_pop_fields"') + return team_scrim_settings_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_settings_stddev_samp_fields_possibleTypes: string[] = ['team_scrim_settings_stddev_samp_fields'] + export const isteam_scrim_settings_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is team_scrim_settings_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_settings_stddev_samp_fields"') + return team_scrim_settings_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_settings_sum_fields_possibleTypes: string[] = ['team_scrim_settings_sum_fields'] + export const isteam_scrim_settings_sum_fields = (obj?: { __typename?: any } | null): obj is team_scrim_settings_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_settings_sum_fields"') + return team_scrim_settings_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_settings_var_pop_fields_possibleTypes: string[] = ['team_scrim_settings_var_pop_fields'] + export const isteam_scrim_settings_var_pop_fields = (obj?: { __typename?: any } | null): obj is team_scrim_settings_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_settings_var_pop_fields"') + return team_scrim_settings_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_settings_var_samp_fields_possibleTypes: string[] = ['team_scrim_settings_var_samp_fields'] + export const isteam_scrim_settings_var_samp_fields = (obj?: { __typename?: any } | null): obj is team_scrim_settings_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_settings_var_samp_fields"') + return team_scrim_settings_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_scrim_settings_variance_fields_possibleTypes: string[] = ['team_scrim_settings_variance_fields'] + export const isteam_scrim_settings_variance_fields = (obj?: { __typename?: any } | null): obj is team_scrim_settings_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_scrim_settings_variance_fields"') + return team_scrim_settings_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_suggestions_possibleTypes: string[] = ['team_suggestions'] + export const isteam_suggestions = (obj?: { __typename?: any } | null): obj is team_suggestions => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_suggestions"') + return team_suggestions_possibleTypes.includes(obj.__typename) + } + + + + const team_suggestions_aggregate_possibleTypes: string[] = ['team_suggestions_aggregate'] + export const isteam_suggestions_aggregate = (obj?: { __typename?: any } | null): obj is team_suggestions_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_suggestions_aggregate"') + return team_suggestions_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const team_suggestions_aggregate_fields_possibleTypes: string[] = ['team_suggestions_aggregate_fields'] + export const isteam_suggestions_aggregate_fields = (obj?: { __typename?: any } | null): obj is team_suggestions_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_suggestions_aggregate_fields"') + return team_suggestions_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_suggestions_avg_fields_possibleTypes: string[] = ['team_suggestions_avg_fields'] + export const isteam_suggestions_avg_fields = (obj?: { __typename?: any } | null): obj is team_suggestions_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_suggestions_avg_fields"') + return team_suggestions_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_suggestions_max_fields_possibleTypes: string[] = ['team_suggestions_max_fields'] + export const isteam_suggestions_max_fields = (obj?: { __typename?: any } | null): obj is team_suggestions_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_suggestions_max_fields"') + return team_suggestions_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_suggestions_min_fields_possibleTypes: string[] = ['team_suggestions_min_fields'] + export const isteam_suggestions_min_fields = (obj?: { __typename?: any } | null): obj is team_suggestions_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_suggestions_min_fields"') + return team_suggestions_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_suggestions_mutation_response_possibleTypes: string[] = ['team_suggestions_mutation_response'] + export const isteam_suggestions_mutation_response = (obj?: { __typename?: any } | null): obj is team_suggestions_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_suggestions_mutation_response"') + return team_suggestions_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const team_suggestions_stddev_fields_possibleTypes: string[] = ['team_suggestions_stddev_fields'] + export const isteam_suggestions_stddev_fields = (obj?: { __typename?: any } | null): obj is team_suggestions_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_suggestions_stddev_fields"') + return team_suggestions_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_suggestions_stddev_pop_fields_possibleTypes: string[] = ['team_suggestions_stddev_pop_fields'] + export const isteam_suggestions_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is team_suggestions_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_suggestions_stddev_pop_fields"') + return team_suggestions_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_suggestions_stddev_samp_fields_possibleTypes: string[] = ['team_suggestions_stddev_samp_fields'] + export const isteam_suggestions_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is team_suggestions_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_suggestions_stddev_samp_fields"') + return team_suggestions_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_suggestions_sum_fields_possibleTypes: string[] = ['team_suggestions_sum_fields'] + export const isteam_suggestions_sum_fields = (obj?: { __typename?: any } | null): obj is team_suggestions_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_suggestions_sum_fields"') + return team_suggestions_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_suggestions_var_pop_fields_possibleTypes: string[] = ['team_suggestions_var_pop_fields'] + export const isteam_suggestions_var_pop_fields = (obj?: { __typename?: any } | null): obj is team_suggestions_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_suggestions_var_pop_fields"') + return team_suggestions_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_suggestions_var_samp_fields_possibleTypes: string[] = ['team_suggestions_var_samp_fields'] + export const isteam_suggestions_var_samp_fields = (obj?: { __typename?: any } | null): obj is team_suggestions_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_suggestions_var_samp_fields"') + return team_suggestions_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const team_suggestions_variance_fields_possibleTypes: string[] = ['team_suggestions_variance_fields'] + export const isteam_suggestions_variance_fields = (obj?: { __typename?: any } | null): obj is team_suggestions_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteam_suggestions_variance_fields"') + return team_suggestions_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const teams_possibleTypes: string[] = ['teams'] + export const isteams = (obj?: { __typename?: any } | null): obj is teams => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteams"') + return teams_possibleTypes.includes(obj.__typename) + } + + + + const teams_aggregate_possibleTypes: string[] = ['teams_aggregate'] + export const isteams_aggregate = (obj?: { __typename?: any } | null): obj is teams_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteams_aggregate"') + return teams_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const teams_aggregate_fields_possibleTypes: string[] = ['teams_aggregate_fields'] + export const isteams_aggregate_fields = (obj?: { __typename?: any } | null): obj is teams_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteams_aggregate_fields"') + return teams_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const teams_avg_fields_possibleTypes: string[] = ['teams_avg_fields'] + export const isteams_avg_fields = (obj?: { __typename?: any } | null): obj is teams_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteams_avg_fields"') + return teams_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const teams_max_fields_possibleTypes: string[] = ['teams_max_fields'] + export const isteams_max_fields = (obj?: { __typename?: any } | null): obj is teams_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteams_max_fields"') + return teams_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const teams_min_fields_possibleTypes: string[] = ['teams_min_fields'] + export const isteams_min_fields = (obj?: { __typename?: any } | null): obj is teams_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteams_min_fields"') + return teams_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const teams_mutation_response_possibleTypes: string[] = ['teams_mutation_response'] + export const isteams_mutation_response = (obj?: { __typename?: any } | null): obj is teams_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteams_mutation_response"') + return teams_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const teams_stddev_fields_possibleTypes: string[] = ['teams_stddev_fields'] + export const isteams_stddev_fields = (obj?: { __typename?: any } | null): obj is teams_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteams_stddev_fields"') + return teams_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const teams_stddev_pop_fields_possibleTypes: string[] = ['teams_stddev_pop_fields'] + export const isteams_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is teams_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteams_stddev_pop_fields"') + return teams_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const teams_stddev_samp_fields_possibleTypes: string[] = ['teams_stddev_samp_fields'] + export const isteams_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is teams_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteams_stddev_samp_fields"') + return teams_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const teams_sum_fields_possibleTypes: string[] = ['teams_sum_fields'] + export const isteams_sum_fields = (obj?: { __typename?: any } | null): obj is teams_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteams_sum_fields"') + return teams_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const teams_var_pop_fields_possibleTypes: string[] = ['teams_var_pop_fields'] + export const isteams_var_pop_fields = (obj?: { __typename?: any } | null): obj is teams_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteams_var_pop_fields"') + return teams_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const teams_var_samp_fields_possibleTypes: string[] = ['teams_var_samp_fields'] + export const isteams_var_samp_fields = (obj?: { __typename?: any } | null): obj is teams_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteams_var_samp_fields"') + return teams_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const teams_variance_fields_possibleTypes: string[] = ['teams_variance_fields'] + export const isteams_variance_fields = (obj?: { __typename?: any } | null): obj is teams_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isteams_variance_fields"') + return teams_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_awards_possibleTypes: string[] = ['tournament_awards'] + export const istournament_awards = (obj?: { __typename?: any } | null): obj is tournament_awards => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_awards"') + return tournament_awards_possibleTypes.includes(obj.__typename) + } + + + + const tournament_awards_aggregate_possibleTypes: string[] = ['tournament_awards_aggregate'] + export const istournament_awards_aggregate = (obj?: { __typename?: any } | null): obj is tournament_awards_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_awards_aggregate"') + return tournament_awards_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const tournament_awards_aggregate_fields_possibleTypes: string[] = ['tournament_awards_aggregate_fields'] + export const istournament_awards_aggregate_fields = (obj?: { __typename?: any } | null): obj is tournament_awards_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_awards_aggregate_fields"') + return tournament_awards_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_awards_avg_fields_possibleTypes: string[] = ['tournament_awards_avg_fields'] + export const istournament_awards_avg_fields = (obj?: { __typename?: any } | null): obj is tournament_awards_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_awards_avg_fields"') + return tournament_awards_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_awards_max_fields_possibleTypes: string[] = ['tournament_awards_max_fields'] + export const istournament_awards_max_fields = (obj?: { __typename?: any } | null): obj is tournament_awards_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_awards_max_fields"') + return tournament_awards_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_awards_min_fields_possibleTypes: string[] = ['tournament_awards_min_fields'] + export const istournament_awards_min_fields = (obj?: { __typename?: any } | null): obj is tournament_awards_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_awards_min_fields"') + return tournament_awards_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_awards_mutation_response_possibleTypes: string[] = ['tournament_awards_mutation_response'] + export const istournament_awards_mutation_response = (obj?: { __typename?: any } | null): obj is tournament_awards_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_awards_mutation_response"') + return tournament_awards_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const tournament_awards_stddev_fields_possibleTypes: string[] = ['tournament_awards_stddev_fields'] + export const istournament_awards_stddev_fields = (obj?: { __typename?: any } | null): obj is tournament_awards_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_awards_stddev_fields"') + return tournament_awards_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_awards_stddev_pop_fields_possibleTypes: string[] = ['tournament_awards_stddev_pop_fields'] + export const istournament_awards_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_awards_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_awards_stddev_pop_fields"') + return tournament_awards_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_awards_stddev_samp_fields_possibleTypes: string[] = ['tournament_awards_stddev_samp_fields'] + export const istournament_awards_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_awards_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_awards_stddev_samp_fields"') + return tournament_awards_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_awards_sum_fields_possibleTypes: string[] = ['tournament_awards_sum_fields'] + export const istournament_awards_sum_fields = (obj?: { __typename?: any } | null): obj is tournament_awards_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_awards_sum_fields"') + return tournament_awards_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_awards_var_pop_fields_possibleTypes: string[] = ['tournament_awards_var_pop_fields'] + export const istournament_awards_var_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_awards_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_awards_var_pop_fields"') + return tournament_awards_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_awards_var_samp_fields_possibleTypes: string[] = ['tournament_awards_var_samp_fields'] + export const istournament_awards_var_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_awards_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_awards_var_samp_fields"') + return tournament_awards_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_awards_variance_fields_possibleTypes: string[] = ['tournament_awards_variance_fields'] + export const istournament_awards_variance_fields = (obj?: { __typename?: any } | null): obj is tournament_awards_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_awards_variance_fields"') + return tournament_awards_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_brackets_possibleTypes: string[] = ['tournament_brackets'] + export const istournament_brackets = (obj?: { __typename?: any } | null): obj is tournament_brackets => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_brackets"') + return tournament_brackets_possibleTypes.includes(obj.__typename) + } + + + + const tournament_brackets_aggregate_possibleTypes: string[] = ['tournament_brackets_aggregate'] + export const istournament_brackets_aggregate = (obj?: { __typename?: any } | null): obj is tournament_brackets_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_brackets_aggregate"') + return tournament_brackets_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const tournament_brackets_aggregate_fields_possibleTypes: string[] = ['tournament_brackets_aggregate_fields'] + export const istournament_brackets_aggregate_fields = (obj?: { __typename?: any } | null): obj is tournament_brackets_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_brackets_aggregate_fields"') + return tournament_brackets_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_brackets_avg_fields_possibleTypes: string[] = ['tournament_brackets_avg_fields'] + export const istournament_brackets_avg_fields = (obj?: { __typename?: any } | null): obj is tournament_brackets_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_brackets_avg_fields"') + return tournament_brackets_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_brackets_max_fields_possibleTypes: string[] = ['tournament_brackets_max_fields'] + export const istournament_brackets_max_fields = (obj?: { __typename?: any } | null): obj is tournament_brackets_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_brackets_max_fields"') + return tournament_brackets_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_brackets_min_fields_possibleTypes: string[] = ['tournament_brackets_min_fields'] + export const istournament_brackets_min_fields = (obj?: { __typename?: any } | null): obj is tournament_brackets_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_brackets_min_fields"') + return tournament_brackets_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_brackets_mutation_response_possibleTypes: string[] = ['tournament_brackets_mutation_response'] + export const istournament_brackets_mutation_response = (obj?: { __typename?: any } | null): obj is tournament_brackets_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_brackets_mutation_response"') + return tournament_brackets_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const tournament_brackets_stddev_fields_possibleTypes: string[] = ['tournament_brackets_stddev_fields'] + export const istournament_brackets_stddev_fields = (obj?: { __typename?: any } | null): obj is tournament_brackets_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_brackets_stddev_fields"') + return tournament_brackets_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_brackets_stddev_pop_fields_possibleTypes: string[] = ['tournament_brackets_stddev_pop_fields'] + export const istournament_brackets_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_brackets_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_brackets_stddev_pop_fields"') + return tournament_brackets_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_brackets_stddev_samp_fields_possibleTypes: string[] = ['tournament_brackets_stddev_samp_fields'] + export const istournament_brackets_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_brackets_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_brackets_stddev_samp_fields"') + return tournament_brackets_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_brackets_sum_fields_possibleTypes: string[] = ['tournament_brackets_sum_fields'] + export const istournament_brackets_sum_fields = (obj?: { __typename?: any } | null): obj is tournament_brackets_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_brackets_sum_fields"') + return tournament_brackets_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_brackets_var_pop_fields_possibleTypes: string[] = ['tournament_brackets_var_pop_fields'] + export const istournament_brackets_var_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_brackets_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_brackets_var_pop_fields"') + return tournament_brackets_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_brackets_var_samp_fields_possibleTypes: string[] = ['tournament_brackets_var_samp_fields'] + export const istournament_brackets_var_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_brackets_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_brackets_var_samp_fields"') + return tournament_brackets_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_brackets_variance_fields_possibleTypes: string[] = ['tournament_brackets_variance_fields'] + export const istournament_brackets_variance_fields = (obj?: { __typename?: any } | null): obj is tournament_brackets_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_brackets_variance_fields"') + return tournament_brackets_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_categories_possibleTypes: string[] = ['tournament_categories'] + export const istournament_categories = (obj?: { __typename?: any } | null): obj is tournament_categories => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_categories"') + return tournament_categories_possibleTypes.includes(obj.__typename) + } + + + + const tournament_categories_aggregate_possibleTypes: string[] = ['tournament_categories_aggregate'] + export const istournament_categories_aggregate = (obj?: { __typename?: any } | null): obj is tournament_categories_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_categories_aggregate"') + return tournament_categories_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const tournament_categories_aggregate_fields_possibleTypes: string[] = ['tournament_categories_aggregate_fields'] + export const istournament_categories_aggregate_fields = (obj?: { __typename?: any } | null): obj is tournament_categories_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_categories_aggregate_fields"') + return tournament_categories_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_categories_max_fields_possibleTypes: string[] = ['tournament_categories_max_fields'] + export const istournament_categories_max_fields = (obj?: { __typename?: any } | null): obj is tournament_categories_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_categories_max_fields"') + return tournament_categories_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_categories_min_fields_possibleTypes: string[] = ['tournament_categories_min_fields'] + export const istournament_categories_min_fields = (obj?: { __typename?: any } | null): obj is tournament_categories_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_categories_min_fields"') + return tournament_categories_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_categories_mutation_response_possibleTypes: string[] = ['tournament_categories_mutation_response'] + export const istournament_categories_mutation_response = (obj?: { __typename?: any } | null): obj is tournament_categories_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_categories_mutation_response"') + return tournament_categories_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const tournament_free_agents_possibleTypes: string[] = ['tournament_free_agents'] + export const istournament_free_agents = (obj?: { __typename?: any } | null): obj is tournament_free_agents => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_free_agents"') + return tournament_free_agents_possibleTypes.includes(obj.__typename) + } + + + + const tournament_free_agents_aggregate_possibleTypes: string[] = ['tournament_free_agents_aggregate'] + export const istournament_free_agents_aggregate = (obj?: { __typename?: any } | null): obj is tournament_free_agents_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_free_agents_aggregate"') + return tournament_free_agents_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const tournament_free_agents_aggregate_fields_possibleTypes: string[] = ['tournament_free_agents_aggregate_fields'] + export const istournament_free_agents_aggregate_fields = (obj?: { __typename?: any } | null): obj is tournament_free_agents_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_free_agents_aggregate_fields"') + return tournament_free_agents_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_free_agents_avg_fields_possibleTypes: string[] = ['tournament_free_agents_avg_fields'] + export const istournament_free_agents_avg_fields = (obj?: { __typename?: any } | null): obj is tournament_free_agents_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_free_agents_avg_fields"') + return tournament_free_agents_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_free_agents_max_fields_possibleTypes: string[] = ['tournament_free_agents_max_fields'] + export const istournament_free_agents_max_fields = (obj?: { __typename?: any } | null): obj is tournament_free_agents_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_free_agents_max_fields"') + return tournament_free_agents_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_free_agents_min_fields_possibleTypes: string[] = ['tournament_free_agents_min_fields'] + export const istournament_free_agents_min_fields = (obj?: { __typename?: any } | null): obj is tournament_free_agents_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_free_agents_min_fields"') + return tournament_free_agents_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_free_agents_mutation_response_possibleTypes: string[] = ['tournament_free_agents_mutation_response'] + export const istournament_free_agents_mutation_response = (obj?: { __typename?: any } | null): obj is tournament_free_agents_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_free_agents_mutation_response"') + return tournament_free_agents_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const tournament_free_agents_stddev_fields_possibleTypes: string[] = ['tournament_free_agents_stddev_fields'] + export const istournament_free_agents_stddev_fields = (obj?: { __typename?: any } | null): obj is tournament_free_agents_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_free_agents_stddev_fields"') + return tournament_free_agents_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_free_agents_stddev_pop_fields_possibleTypes: string[] = ['tournament_free_agents_stddev_pop_fields'] + export const istournament_free_agents_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_free_agents_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_free_agents_stddev_pop_fields"') + return tournament_free_agents_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_free_agents_stddev_samp_fields_possibleTypes: string[] = ['tournament_free_agents_stddev_samp_fields'] + export const istournament_free_agents_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_free_agents_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_free_agents_stddev_samp_fields"') + return tournament_free_agents_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_free_agents_sum_fields_possibleTypes: string[] = ['tournament_free_agents_sum_fields'] + export const istournament_free_agents_sum_fields = (obj?: { __typename?: any } | null): obj is tournament_free_agents_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_free_agents_sum_fields"') + return tournament_free_agents_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_free_agents_var_pop_fields_possibleTypes: string[] = ['tournament_free_agents_var_pop_fields'] + export const istournament_free_agents_var_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_free_agents_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_free_agents_var_pop_fields"') + return tournament_free_agents_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_free_agents_var_samp_fields_possibleTypes: string[] = ['tournament_free_agents_var_samp_fields'] + export const istournament_free_agents_var_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_free_agents_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_free_agents_var_samp_fields"') + return tournament_free_agents_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_free_agents_variance_fields_possibleTypes: string[] = ['tournament_free_agents_variance_fields'] + export const istournament_free_agents_variance_fields = (obj?: { __typename?: any } | null): obj is tournament_free_agents_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_free_agents_variance_fields"') + return tournament_free_agents_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_invite_code_uses_possibleTypes: string[] = ['tournament_invite_code_uses'] + export const istournament_invite_code_uses = (obj?: { __typename?: any } | null): obj is tournament_invite_code_uses => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_code_uses"') + return tournament_invite_code_uses_possibleTypes.includes(obj.__typename) + } + + + + const tournament_invite_code_uses_aggregate_possibleTypes: string[] = ['tournament_invite_code_uses_aggregate'] + export const istournament_invite_code_uses_aggregate = (obj?: { __typename?: any } | null): obj is tournament_invite_code_uses_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_code_uses_aggregate"') + return tournament_invite_code_uses_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const tournament_invite_code_uses_aggregate_fields_possibleTypes: string[] = ['tournament_invite_code_uses_aggregate_fields'] + export const istournament_invite_code_uses_aggregate_fields = (obj?: { __typename?: any } | null): obj is tournament_invite_code_uses_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_code_uses_aggregate_fields"') + return tournament_invite_code_uses_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_invite_code_uses_avg_fields_possibleTypes: string[] = ['tournament_invite_code_uses_avg_fields'] + export const istournament_invite_code_uses_avg_fields = (obj?: { __typename?: any } | null): obj is tournament_invite_code_uses_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_code_uses_avg_fields"') + return tournament_invite_code_uses_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_invite_code_uses_max_fields_possibleTypes: string[] = ['tournament_invite_code_uses_max_fields'] + export const istournament_invite_code_uses_max_fields = (obj?: { __typename?: any } | null): obj is tournament_invite_code_uses_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_code_uses_max_fields"') + return tournament_invite_code_uses_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_invite_code_uses_min_fields_possibleTypes: string[] = ['tournament_invite_code_uses_min_fields'] + export const istournament_invite_code_uses_min_fields = (obj?: { __typename?: any } | null): obj is tournament_invite_code_uses_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_code_uses_min_fields"') + return tournament_invite_code_uses_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_invite_code_uses_mutation_response_possibleTypes: string[] = ['tournament_invite_code_uses_mutation_response'] + export const istournament_invite_code_uses_mutation_response = (obj?: { __typename?: any } | null): obj is tournament_invite_code_uses_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_code_uses_mutation_response"') + return tournament_invite_code_uses_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const tournament_invite_code_uses_stddev_fields_possibleTypes: string[] = ['tournament_invite_code_uses_stddev_fields'] + export const istournament_invite_code_uses_stddev_fields = (obj?: { __typename?: any } | null): obj is tournament_invite_code_uses_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_code_uses_stddev_fields"') + return tournament_invite_code_uses_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_invite_code_uses_stddev_pop_fields_possibleTypes: string[] = ['tournament_invite_code_uses_stddev_pop_fields'] + export const istournament_invite_code_uses_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_invite_code_uses_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_code_uses_stddev_pop_fields"') + return tournament_invite_code_uses_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_invite_code_uses_stddev_samp_fields_possibleTypes: string[] = ['tournament_invite_code_uses_stddev_samp_fields'] + export const istournament_invite_code_uses_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_invite_code_uses_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_code_uses_stddev_samp_fields"') + return tournament_invite_code_uses_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_invite_code_uses_sum_fields_possibleTypes: string[] = ['tournament_invite_code_uses_sum_fields'] + export const istournament_invite_code_uses_sum_fields = (obj?: { __typename?: any } | null): obj is tournament_invite_code_uses_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_code_uses_sum_fields"') + return tournament_invite_code_uses_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_invite_code_uses_var_pop_fields_possibleTypes: string[] = ['tournament_invite_code_uses_var_pop_fields'] + export const istournament_invite_code_uses_var_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_invite_code_uses_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_code_uses_var_pop_fields"') + return tournament_invite_code_uses_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_invite_code_uses_var_samp_fields_possibleTypes: string[] = ['tournament_invite_code_uses_var_samp_fields'] + export const istournament_invite_code_uses_var_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_invite_code_uses_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_code_uses_var_samp_fields"') + return tournament_invite_code_uses_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_invite_code_uses_variance_fields_possibleTypes: string[] = ['tournament_invite_code_uses_variance_fields'] + export const istournament_invite_code_uses_variance_fields = (obj?: { __typename?: any } | null): obj is tournament_invite_code_uses_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_code_uses_variance_fields"') + return tournament_invite_code_uses_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_invite_codes_possibleTypes: string[] = ['tournament_invite_codes'] + export const istournament_invite_codes = (obj?: { __typename?: any } | null): obj is tournament_invite_codes => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_codes"') + return tournament_invite_codes_possibleTypes.includes(obj.__typename) + } + + + + const tournament_invite_codes_aggregate_possibleTypes: string[] = ['tournament_invite_codes_aggregate'] + export const istournament_invite_codes_aggregate = (obj?: { __typename?: any } | null): obj is tournament_invite_codes_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_codes_aggregate"') + return tournament_invite_codes_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const tournament_invite_codes_aggregate_fields_possibleTypes: string[] = ['tournament_invite_codes_aggregate_fields'] + export const istournament_invite_codes_aggregate_fields = (obj?: { __typename?: any } | null): obj is tournament_invite_codes_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_codes_aggregate_fields"') + return tournament_invite_codes_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_invite_codes_avg_fields_possibleTypes: string[] = ['tournament_invite_codes_avg_fields'] + export const istournament_invite_codes_avg_fields = (obj?: { __typename?: any } | null): obj is tournament_invite_codes_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_codes_avg_fields"') + return tournament_invite_codes_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_invite_codes_max_fields_possibleTypes: string[] = ['tournament_invite_codes_max_fields'] + export const istournament_invite_codes_max_fields = (obj?: { __typename?: any } | null): obj is tournament_invite_codes_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_codes_max_fields"') + return tournament_invite_codes_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_invite_codes_min_fields_possibleTypes: string[] = ['tournament_invite_codes_min_fields'] + export const istournament_invite_codes_min_fields = (obj?: { __typename?: any } | null): obj is tournament_invite_codes_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_codes_min_fields"') + return tournament_invite_codes_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_invite_codes_mutation_response_possibleTypes: string[] = ['tournament_invite_codes_mutation_response'] + export const istournament_invite_codes_mutation_response = (obj?: { __typename?: any } | null): obj is tournament_invite_codes_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_codes_mutation_response"') + return tournament_invite_codes_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const tournament_invite_codes_stddev_fields_possibleTypes: string[] = ['tournament_invite_codes_stddev_fields'] + export const istournament_invite_codes_stddev_fields = (obj?: { __typename?: any } | null): obj is tournament_invite_codes_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_codes_stddev_fields"') + return tournament_invite_codes_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_invite_codes_stddev_pop_fields_possibleTypes: string[] = ['tournament_invite_codes_stddev_pop_fields'] + export const istournament_invite_codes_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_invite_codes_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_codes_stddev_pop_fields"') + return tournament_invite_codes_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_invite_codes_stddev_samp_fields_possibleTypes: string[] = ['tournament_invite_codes_stddev_samp_fields'] + export const istournament_invite_codes_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_invite_codes_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_codes_stddev_samp_fields"') + return tournament_invite_codes_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_invite_codes_sum_fields_possibleTypes: string[] = ['tournament_invite_codes_sum_fields'] + export const istournament_invite_codes_sum_fields = (obj?: { __typename?: any } | null): obj is tournament_invite_codes_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_codes_sum_fields"') + return tournament_invite_codes_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_invite_codes_var_pop_fields_possibleTypes: string[] = ['tournament_invite_codes_var_pop_fields'] + export const istournament_invite_codes_var_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_invite_codes_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_codes_var_pop_fields"') + return tournament_invite_codes_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_invite_codes_var_samp_fields_possibleTypes: string[] = ['tournament_invite_codes_var_samp_fields'] + export const istournament_invite_codes_var_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_invite_codes_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_codes_var_samp_fields"') + return tournament_invite_codes_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_invite_codes_variance_fields_possibleTypes: string[] = ['tournament_invite_codes_variance_fields'] + export const istournament_invite_codes_variance_fields = (obj?: { __typename?: any } | null): obj is tournament_invite_codes_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invite_codes_variance_fields"') + return tournament_invite_codes_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_invites_possibleTypes: string[] = ['tournament_invites'] + export const istournament_invites = (obj?: { __typename?: any } | null): obj is tournament_invites => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invites"') + return tournament_invites_possibleTypes.includes(obj.__typename) + } + + + + const tournament_invites_aggregate_possibleTypes: string[] = ['tournament_invites_aggregate'] + export const istournament_invites_aggregate = (obj?: { __typename?: any } | null): obj is tournament_invites_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invites_aggregate"') + return tournament_invites_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const tournament_invites_aggregate_fields_possibleTypes: string[] = ['tournament_invites_aggregate_fields'] + export const istournament_invites_aggregate_fields = (obj?: { __typename?: any } | null): obj is tournament_invites_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invites_aggregate_fields"') + return tournament_invites_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_invites_avg_fields_possibleTypes: string[] = ['tournament_invites_avg_fields'] + export const istournament_invites_avg_fields = (obj?: { __typename?: any } | null): obj is tournament_invites_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invites_avg_fields"') + return tournament_invites_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_invites_max_fields_possibleTypes: string[] = ['tournament_invites_max_fields'] + export const istournament_invites_max_fields = (obj?: { __typename?: any } | null): obj is tournament_invites_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invites_max_fields"') + return tournament_invites_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_invites_min_fields_possibleTypes: string[] = ['tournament_invites_min_fields'] + export const istournament_invites_min_fields = (obj?: { __typename?: any } | null): obj is tournament_invites_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invites_min_fields"') + return tournament_invites_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_invites_mutation_response_possibleTypes: string[] = ['tournament_invites_mutation_response'] + export const istournament_invites_mutation_response = (obj?: { __typename?: any } | null): obj is tournament_invites_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invites_mutation_response"') + return tournament_invites_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const tournament_invites_stddev_fields_possibleTypes: string[] = ['tournament_invites_stddev_fields'] + export const istournament_invites_stddev_fields = (obj?: { __typename?: any } | null): obj is tournament_invites_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invites_stddev_fields"') + return tournament_invites_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_invites_stddev_pop_fields_possibleTypes: string[] = ['tournament_invites_stddev_pop_fields'] + export const istournament_invites_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_invites_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invites_stddev_pop_fields"') + return tournament_invites_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_invites_stddev_samp_fields_possibleTypes: string[] = ['tournament_invites_stddev_samp_fields'] + export const istournament_invites_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_invites_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invites_stddev_samp_fields"') + return tournament_invites_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_invites_sum_fields_possibleTypes: string[] = ['tournament_invites_sum_fields'] + export const istournament_invites_sum_fields = (obj?: { __typename?: any } | null): obj is tournament_invites_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invites_sum_fields"') + return tournament_invites_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_invites_var_pop_fields_possibleTypes: string[] = ['tournament_invites_var_pop_fields'] + export const istournament_invites_var_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_invites_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invites_var_pop_fields"') + return tournament_invites_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_invites_var_samp_fields_possibleTypes: string[] = ['tournament_invites_var_samp_fields'] + export const istournament_invites_var_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_invites_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invites_var_samp_fields"') + return tournament_invites_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_invites_variance_fields_possibleTypes: string[] = ['tournament_invites_variance_fields'] + export const istournament_invites_variance_fields = (obj?: { __typename?: any } | null): obj is tournament_invites_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_invites_variance_fields"') + return tournament_invites_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_leaderboard_entries_possibleTypes: string[] = ['tournament_leaderboard_entries'] + export const istournament_leaderboard_entries = (obj?: { __typename?: any } | null): obj is tournament_leaderboard_entries => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_leaderboard_entries"') + return tournament_leaderboard_entries_possibleTypes.includes(obj.__typename) + } + + + + const tournament_leaderboard_entries_aggregate_possibleTypes: string[] = ['tournament_leaderboard_entries_aggregate'] + export const istournament_leaderboard_entries_aggregate = (obj?: { __typename?: any } | null): obj is tournament_leaderboard_entries_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_leaderboard_entries_aggregate"') + return tournament_leaderboard_entries_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const tournament_leaderboard_entries_aggregate_fields_possibleTypes: string[] = ['tournament_leaderboard_entries_aggregate_fields'] + export const istournament_leaderboard_entries_aggregate_fields = (obj?: { __typename?: any } | null): obj is tournament_leaderboard_entries_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_leaderboard_entries_aggregate_fields"') + return tournament_leaderboard_entries_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_leaderboard_entries_avg_fields_possibleTypes: string[] = ['tournament_leaderboard_entries_avg_fields'] + export const istournament_leaderboard_entries_avg_fields = (obj?: { __typename?: any } | null): obj is tournament_leaderboard_entries_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_leaderboard_entries_avg_fields"') + return tournament_leaderboard_entries_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_leaderboard_entries_max_fields_possibleTypes: string[] = ['tournament_leaderboard_entries_max_fields'] + export const istournament_leaderboard_entries_max_fields = (obj?: { __typename?: any } | null): obj is tournament_leaderboard_entries_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_leaderboard_entries_max_fields"') + return tournament_leaderboard_entries_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_leaderboard_entries_min_fields_possibleTypes: string[] = ['tournament_leaderboard_entries_min_fields'] + export const istournament_leaderboard_entries_min_fields = (obj?: { __typename?: any } | null): obj is tournament_leaderboard_entries_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_leaderboard_entries_min_fields"') + return tournament_leaderboard_entries_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_leaderboard_entries_mutation_response_possibleTypes: string[] = ['tournament_leaderboard_entries_mutation_response'] + export const istournament_leaderboard_entries_mutation_response = (obj?: { __typename?: any } | null): obj is tournament_leaderboard_entries_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_leaderboard_entries_mutation_response"') + return tournament_leaderboard_entries_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const tournament_leaderboard_entries_stddev_fields_possibleTypes: string[] = ['tournament_leaderboard_entries_stddev_fields'] + export const istournament_leaderboard_entries_stddev_fields = (obj?: { __typename?: any } | null): obj is tournament_leaderboard_entries_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_leaderboard_entries_stddev_fields"') + return tournament_leaderboard_entries_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_leaderboard_entries_stddev_pop_fields_possibleTypes: string[] = ['tournament_leaderboard_entries_stddev_pop_fields'] + export const istournament_leaderboard_entries_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_leaderboard_entries_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_leaderboard_entries_stddev_pop_fields"') + return tournament_leaderboard_entries_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_leaderboard_entries_stddev_samp_fields_possibleTypes: string[] = ['tournament_leaderboard_entries_stddev_samp_fields'] + export const istournament_leaderboard_entries_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_leaderboard_entries_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_leaderboard_entries_stddev_samp_fields"') + return tournament_leaderboard_entries_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_leaderboard_entries_sum_fields_possibleTypes: string[] = ['tournament_leaderboard_entries_sum_fields'] + export const istournament_leaderboard_entries_sum_fields = (obj?: { __typename?: any } | null): obj is tournament_leaderboard_entries_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_leaderboard_entries_sum_fields"') + return tournament_leaderboard_entries_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_leaderboard_entries_var_pop_fields_possibleTypes: string[] = ['tournament_leaderboard_entries_var_pop_fields'] + export const istournament_leaderboard_entries_var_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_leaderboard_entries_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_leaderboard_entries_var_pop_fields"') + return tournament_leaderboard_entries_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_leaderboard_entries_var_samp_fields_possibleTypes: string[] = ['tournament_leaderboard_entries_var_samp_fields'] + export const istournament_leaderboard_entries_var_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_leaderboard_entries_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_leaderboard_entries_var_samp_fields"') + return tournament_leaderboard_entries_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_leaderboard_entries_variance_fields_possibleTypes: string[] = ['tournament_leaderboard_entries_variance_fields'] + export const istournament_leaderboard_entries_variance_fields = (obj?: { __typename?: any } | null): obj is tournament_leaderboard_entries_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_leaderboard_entries_variance_fields"') + return tournament_leaderboard_entries_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_no_shows_possibleTypes: string[] = ['tournament_no_shows'] + export const istournament_no_shows = (obj?: { __typename?: any } | null): obj is tournament_no_shows => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_no_shows"') + return tournament_no_shows_possibleTypes.includes(obj.__typename) + } + + + + const tournament_no_shows_aggregate_possibleTypes: string[] = ['tournament_no_shows_aggregate'] + export const istournament_no_shows_aggregate = (obj?: { __typename?: any } | null): obj is tournament_no_shows_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_no_shows_aggregate"') + return tournament_no_shows_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const tournament_no_shows_aggregate_fields_possibleTypes: string[] = ['tournament_no_shows_aggregate_fields'] + export const istournament_no_shows_aggregate_fields = (obj?: { __typename?: any } | null): obj is tournament_no_shows_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_no_shows_aggregate_fields"') + return tournament_no_shows_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_no_shows_avg_fields_possibleTypes: string[] = ['tournament_no_shows_avg_fields'] + export const istournament_no_shows_avg_fields = (obj?: { __typename?: any } | null): obj is tournament_no_shows_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_no_shows_avg_fields"') + return tournament_no_shows_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_no_shows_max_fields_possibleTypes: string[] = ['tournament_no_shows_max_fields'] + export const istournament_no_shows_max_fields = (obj?: { __typename?: any } | null): obj is tournament_no_shows_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_no_shows_max_fields"') + return tournament_no_shows_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_no_shows_min_fields_possibleTypes: string[] = ['tournament_no_shows_min_fields'] + export const istournament_no_shows_min_fields = (obj?: { __typename?: any } | null): obj is tournament_no_shows_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_no_shows_min_fields"') + return tournament_no_shows_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_no_shows_mutation_response_possibleTypes: string[] = ['tournament_no_shows_mutation_response'] + export const istournament_no_shows_mutation_response = (obj?: { __typename?: any } | null): obj is tournament_no_shows_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_no_shows_mutation_response"') + return tournament_no_shows_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const tournament_no_shows_stddev_fields_possibleTypes: string[] = ['tournament_no_shows_stddev_fields'] + export const istournament_no_shows_stddev_fields = (obj?: { __typename?: any } | null): obj is tournament_no_shows_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_no_shows_stddev_fields"') + return tournament_no_shows_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_no_shows_stddev_pop_fields_possibleTypes: string[] = ['tournament_no_shows_stddev_pop_fields'] + export const istournament_no_shows_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_no_shows_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_no_shows_stddev_pop_fields"') + return tournament_no_shows_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_no_shows_stddev_samp_fields_possibleTypes: string[] = ['tournament_no_shows_stddev_samp_fields'] + export const istournament_no_shows_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_no_shows_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_no_shows_stddev_samp_fields"') + return tournament_no_shows_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_no_shows_sum_fields_possibleTypes: string[] = ['tournament_no_shows_sum_fields'] + export const istournament_no_shows_sum_fields = (obj?: { __typename?: any } | null): obj is tournament_no_shows_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_no_shows_sum_fields"') + return tournament_no_shows_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_no_shows_var_pop_fields_possibleTypes: string[] = ['tournament_no_shows_var_pop_fields'] + export const istournament_no_shows_var_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_no_shows_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_no_shows_var_pop_fields"') + return tournament_no_shows_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_no_shows_var_samp_fields_possibleTypes: string[] = ['tournament_no_shows_var_samp_fields'] + export const istournament_no_shows_var_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_no_shows_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_no_shows_var_samp_fields"') + return tournament_no_shows_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_no_shows_variance_fields_possibleTypes: string[] = ['tournament_no_shows_variance_fields'] + export const istournament_no_shows_variance_fields = (obj?: { __typename?: any } | null): obj is tournament_no_shows_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_no_shows_variance_fields"') + return tournament_no_shows_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_organizer_teams_possibleTypes: string[] = ['tournament_organizer_teams'] + export const istournament_organizer_teams = (obj?: { __typename?: any } | null): obj is tournament_organizer_teams => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizer_teams"') + return tournament_organizer_teams_possibleTypes.includes(obj.__typename) + } + + + + const tournament_organizer_teams_aggregate_possibleTypes: string[] = ['tournament_organizer_teams_aggregate'] + export const istournament_organizer_teams_aggregate = (obj?: { __typename?: any } | null): obj is tournament_organizer_teams_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizer_teams_aggregate"') + return tournament_organizer_teams_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const tournament_organizer_teams_aggregate_fields_possibleTypes: string[] = ['tournament_organizer_teams_aggregate_fields'] + export const istournament_organizer_teams_aggregate_fields = (obj?: { __typename?: any } | null): obj is tournament_organizer_teams_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizer_teams_aggregate_fields"') + return tournament_organizer_teams_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_organizer_teams_max_fields_possibleTypes: string[] = ['tournament_organizer_teams_max_fields'] + export const istournament_organizer_teams_max_fields = (obj?: { __typename?: any } | null): obj is tournament_organizer_teams_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizer_teams_max_fields"') + return tournament_organizer_teams_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_organizer_teams_min_fields_possibleTypes: string[] = ['tournament_organizer_teams_min_fields'] + export const istournament_organizer_teams_min_fields = (obj?: { __typename?: any } | null): obj is tournament_organizer_teams_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizer_teams_min_fields"') + return tournament_organizer_teams_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_organizer_teams_mutation_response_possibleTypes: string[] = ['tournament_organizer_teams_mutation_response'] + export const istournament_organizer_teams_mutation_response = (obj?: { __typename?: any } | null): obj is tournament_organizer_teams_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizer_teams_mutation_response"') + return tournament_organizer_teams_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const tournament_organizers_possibleTypes: string[] = ['tournament_organizers'] + export const istournament_organizers = (obj?: { __typename?: any } | null): obj is tournament_organizers => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizers"') + return tournament_organizers_possibleTypes.includes(obj.__typename) + } + + + + const tournament_organizers_aggregate_possibleTypes: string[] = ['tournament_organizers_aggregate'] + export const istournament_organizers_aggregate = (obj?: { __typename?: any } | null): obj is tournament_organizers_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizers_aggregate"') + return tournament_organizers_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const tournament_organizers_aggregate_fields_possibleTypes: string[] = ['tournament_organizers_aggregate_fields'] + export const istournament_organizers_aggregate_fields = (obj?: { __typename?: any } | null): obj is tournament_organizers_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizers_aggregate_fields"') + return tournament_organizers_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_organizers_avg_fields_possibleTypes: string[] = ['tournament_organizers_avg_fields'] + export const istournament_organizers_avg_fields = (obj?: { __typename?: any } | null): obj is tournament_organizers_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizers_avg_fields"') + return tournament_organizers_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_organizers_max_fields_possibleTypes: string[] = ['tournament_organizers_max_fields'] + export const istournament_organizers_max_fields = (obj?: { __typename?: any } | null): obj is tournament_organizers_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizers_max_fields"') + return tournament_organizers_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_organizers_min_fields_possibleTypes: string[] = ['tournament_organizers_min_fields'] + export const istournament_organizers_min_fields = (obj?: { __typename?: any } | null): obj is tournament_organizers_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizers_min_fields"') + return tournament_organizers_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_organizers_mutation_response_possibleTypes: string[] = ['tournament_organizers_mutation_response'] + export const istournament_organizers_mutation_response = (obj?: { __typename?: any } | null): obj is tournament_organizers_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizers_mutation_response"') + return tournament_organizers_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const tournament_organizers_stddev_fields_possibleTypes: string[] = ['tournament_organizers_stddev_fields'] + export const istournament_organizers_stddev_fields = (obj?: { __typename?: any } | null): obj is tournament_organizers_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizers_stddev_fields"') + return tournament_organizers_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_organizers_stddev_pop_fields_possibleTypes: string[] = ['tournament_organizers_stddev_pop_fields'] + export const istournament_organizers_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_organizers_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizers_stddev_pop_fields"') + return tournament_organizers_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_organizers_stddev_samp_fields_possibleTypes: string[] = ['tournament_organizers_stddev_samp_fields'] + export const istournament_organizers_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_organizers_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizers_stddev_samp_fields"') + return tournament_organizers_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_organizers_sum_fields_possibleTypes: string[] = ['tournament_organizers_sum_fields'] + export const istournament_organizers_sum_fields = (obj?: { __typename?: any } | null): obj is tournament_organizers_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizers_sum_fields"') + return tournament_organizers_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_organizers_var_pop_fields_possibleTypes: string[] = ['tournament_organizers_var_pop_fields'] + export const istournament_organizers_var_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_organizers_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizers_var_pop_fields"') + return tournament_organizers_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_organizers_var_samp_fields_possibleTypes: string[] = ['tournament_organizers_var_samp_fields'] + export const istournament_organizers_var_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_organizers_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizers_var_samp_fields"') + return tournament_organizers_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_organizers_variance_fields_possibleTypes: string[] = ['tournament_organizers_variance_fields'] + export const istournament_organizers_variance_fields = (obj?: { __typename?: any } | null): obj is tournament_organizers_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizers_variance_fields"') + return tournament_organizers_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_prizes_possibleTypes: string[] = ['tournament_prizes'] + export const istournament_prizes = (obj?: { __typename?: any } | null): obj is tournament_prizes => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_prizes"') + return tournament_prizes_possibleTypes.includes(obj.__typename) + } + + + + const tournament_prizes_aggregate_possibleTypes: string[] = ['tournament_prizes_aggregate'] + export const istournament_prizes_aggregate = (obj?: { __typename?: any } | null): obj is tournament_prizes_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_prizes_aggregate"') + return tournament_prizes_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const tournament_prizes_aggregate_fields_possibleTypes: string[] = ['tournament_prizes_aggregate_fields'] + export const istournament_prizes_aggregate_fields = (obj?: { __typename?: any } | null): obj is tournament_prizes_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_prizes_aggregate_fields"') + return tournament_prizes_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_prizes_avg_fields_possibleTypes: string[] = ['tournament_prizes_avg_fields'] + export const istournament_prizes_avg_fields = (obj?: { __typename?: any } | null): obj is tournament_prizes_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_prizes_avg_fields"') + return tournament_prizes_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_prizes_max_fields_possibleTypes: string[] = ['tournament_prizes_max_fields'] + export const istournament_prizes_max_fields = (obj?: { __typename?: any } | null): obj is tournament_prizes_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_prizes_max_fields"') + return tournament_prizes_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_prizes_min_fields_possibleTypes: string[] = ['tournament_prizes_min_fields'] + export const istournament_prizes_min_fields = (obj?: { __typename?: any } | null): obj is tournament_prizes_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_prizes_min_fields"') + return tournament_prizes_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_prizes_mutation_response_possibleTypes: string[] = ['tournament_prizes_mutation_response'] + export const istournament_prizes_mutation_response = (obj?: { __typename?: any } | null): obj is tournament_prizes_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_prizes_mutation_response"') + return tournament_prizes_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const tournament_prizes_stddev_fields_possibleTypes: string[] = ['tournament_prizes_stddev_fields'] + export const istournament_prizes_stddev_fields = (obj?: { __typename?: any } | null): obj is tournament_prizes_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_prizes_stddev_fields"') + return tournament_prizes_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_prizes_stddev_pop_fields_possibleTypes: string[] = ['tournament_prizes_stddev_pop_fields'] + export const istournament_prizes_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_prizes_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_prizes_stddev_pop_fields"') + return tournament_prizes_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_prizes_stddev_samp_fields_possibleTypes: string[] = ['tournament_prizes_stddev_samp_fields'] + export const istournament_prizes_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_prizes_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_prizes_stddev_samp_fields"') + return tournament_prizes_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_prizes_sum_fields_possibleTypes: string[] = ['tournament_prizes_sum_fields'] + export const istournament_prizes_sum_fields = (obj?: { __typename?: any } | null): obj is tournament_prizes_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_prizes_sum_fields"') + return tournament_prizes_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_prizes_var_pop_fields_possibleTypes: string[] = ['tournament_prizes_var_pop_fields'] + export const istournament_prizes_var_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_prizes_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_prizes_var_pop_fields"') + return tournament_prizes_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_prizes_var_samp_fields_possibleTypes: string[] = ['tournament_prizes_var_samp_fields'] + export const istournament_prizes_var_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_prizes_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_prizes_var_samp_fields"') + return tournament_prizes_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_prizes_variance_fields_possibleTypes: string[] = ['tournament_prizes_variance_fields'] + export const istournament_prizes_variance_fields = (obj?: { __typename?: any } | null): obj is tournament_prizes_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_prizes_variance_fields"') + return tournament_prizes_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_registration_unlocks_possibleTypes: string[] = ['tournament_registration_unlocks'] + export const istournament_registration_unlocks = (obj?: { __typename?: any } | null): obj is tournament_registration_unlocks => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_registration_unlocks"') + return tournament_registration_unlocks_possibleTypes.includes(obj.__typename) + } + + + + const tournament_registration_unlocks_aggregate_possibleTypes: string[] = ['tournament_registration_unlocks_aggregate'] + export const istournament_registration_unlocks_aggregate = (obj?: { __typename?: any } | null): obj is tournament_registration_unlocks_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_registration_unlocks_aggregate"') + return tournament_registration_unlocks_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const tournament_registration_unlocks_aggregate_fields_possibleTypes: string[] = ['tournament_registration_unlocks_aggregate_fields'] + export const istournament_registration_unlocks_aggregate_fields = (obj?: { __typename?: any } | null): obj is tournament_registration_unlocks_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_registration_unlocks_aggregate_fields"') + return tournament_registration_unlocks_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_registration_unlocks_avg_fields_possibleTypes: string[] = ['tournament_registration_unlocks_avg_fields'] + export const istournament_registration_unlocks_avg_fields = (obj?: { __typename?: any } | null): obj is tournament_registration_unlocks_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_registration_unlocks_avg_fields"') + return tournament_registration_unlocks_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_registration_unlocks_max_fields_possibleTypes: string[] = ['tournament_registration_unlocks_max_fields'] + export const istournament_registration_unlocks_max_fields = (obj?: { __typename?: any } | null): obj is tournament_registration_unlocks_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_registration_unlocks_max_fields"') + return tournament_registration_unlocks_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_registration_unlocks_min_fields_possibleTypes: string[] = ['tournament_registration_unlocks_min_fields'] + export const istournament_registration_unlocks_min_fields = (obj?: { __typename?: any } | null): obj is tournament_registration_unlocks_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_registration_unlocks_min_fields"') + return tournament_registration_unlocks_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_registration_unlocks_mutation_response_possibleTypes: string[] = ['tournament_registration_unlocks_mutation_response'] + export const istournament_registration_unlocks_mutation_response = (obj?: { __typename?: any } | null): obj is tournament_registration_unlocks_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_registration_unlocks_mutation_response"') + return tournament_registration_unlocks_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const tournament_registration_unlocks_stddev_fields_possibleTypes: string[] = ['tournament_registration_unlocks_stddev_fields'] + export const istournament_registration_unlocks_stddev_fields = (obj?: { __typename?: any } | null): obj is tournament_registration_unlocks_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_registration_unlocks_stddev_fields"') + return tournament_registration_unlocks_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_registration_unlocks_stddev_pop_fields_possibleTypes: string[] = ['tournament_registration_unlocks_stddev_pop_fields'] + export const istournament_registration_unlocks_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_registration_unlocks_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_registration_unlocks_stddev_pop_fields"') + return tournament_registration_unlocks_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_registration_unlocks_stddev_samp_fields_possibleTypes: string[] = ['tournament_registration_unlocks_stddev_samp_fields'] + export const istournament_registration_unlocks_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_registration_unlocks_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_registration_unlocks_stddev_samp_fields"') + return tournament_registration_unlocks_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_registration_unlocks_sum_fields_possibleTypes: string[] = ['tournament_registration_unlocks_sum_fields'] + export const istournament_registration_unlocks_sum_fields = (obj?: { __typename?: any } | null): obj is tournament_registration_unlocks_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_registration_unlocks_sum_fields"') + return tournament_registration_unlocks_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_registration_unlocks_var_pop_fields_possibleTypes: string[] = ['tournament_registration_unlocks_var_pop_fields'] + export const istournament_registration_unlocks_var_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_registration_unlocks_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_registration_unlocks_var_pop_fields"') + return tournament_registration_unlocks_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_registration_unlocks_var_samp_fields_possibleTypes: string[] = ['tournament_registration_unlocks_var_samp_fields'] + export const istournament_registration_unlocks_var_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_registration_unlocks_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_registration_unlocks_var_samp_fields"') + return tournament_registration_unlocks_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_registration_unlocks_variance_fields_possibleTypes: string[] = ['tournament_registration_unlocks_variance_fields'] + export const istournament_registration_unlocks_variance_fields = (obj?: { __typename?: any } | null): obj is tournament_registration_unlocks_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_registration_unlocks_variance_fields"') + return tournament_registration_unlocks_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_stage_windows_possibleTypes: string[] = ['tournament_stage_windows'] + export const istournament_stage_windows = (obj?: { __typename?: any } | null): obj is tournament_stage_windows => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stage_windows"') + return tournament_stage_windows_possibleTypes.includes(obj.__typename) + } + + + + const tournament_stage_windows_aggregate_possibleTypes: string[] = ['tournament_stage_windows_aggregate'] + export const istournament_stage_windows_aggregate = (obj?: { __typename?: any } | null): obj is tournament_stage_windows_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stage_windows_aggregate"') + return tournament_stage_windows_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const tournament_stage_windows_aggregate_fields_possibleTypes: string[] = ['tournament_stage_windows_aggregate_fields'] + export const istournament_stage_windows_aggregate_fields = (obj?: { __typename?: any } | null): obj is tournament_stage_windows_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stage_windows_aggregate_fields"') + return tournament_stage_windows_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_stage_windows_avg_fields_possibleTypes: string[] = ['tournament_stage_windows_avg_fields'] + export const istournament_stage_windows_avg_fields = (obj?: { __typename?: any } | null): obj is tournament_stage_windows_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stage_windows_avg_fields"') + return tournament_stage_windows_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_stage_windows_max_fields_possibleTypes: string[] = ['tournament_stage_windows_max_fields'] + export const istournament_stage_windows_max_fields = (obj?: { __typename?: any } | null): obj is tournament_stage_windows_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stage_windows_max_fields"') + return tournament_stage_windows_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_stage_windows_min_fields_possibleTypes: string[] = ['tournament_stage_windows_min_fields'] + export const istournament_stage_windows_min_fields = (obj?: { __typename?: any } | null): obj is tournament_stage_windows_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stage_windows_min_fields"') + return tournament_stage_windows_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_stage_windows_mutation_response_possibleTypes: string[] = ['tournament_stage_windows_mutation_response'] + export const istournament_stage_windows_mutation_response = (obj?: { __typename?: any } | null): obj is tournament_stage_windows_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stage_windows_mutation_response"') + return tournament_stage_windows_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const tournament_stage_windows_stddev_fields_possibleTypes: string[] = ['tournament_stage_windows_stddev_fields'] + export const istournament_stage_windows_stddev_fields = (obj?: { __typename?: any } | null): obj is tournament_stage_windows_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stage_windows_stddev_fields"') + return tournament_stage_windows_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_stage_windows_stddev_pop_fields_possibleTypes: string[] = ['tournament_stage_windows_stddev_pop_fields'] + export const istournament_stage_windows_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_stage_windows_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stage_windows_stddev_pop_fields"') + return tournament_stage_windows_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_stage_windows_stddev_samp_fields_possibleTypes: string[] = ['tournament_stage_windows_stddev_samp_fields'] + export const istournament_stage_windows_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_stage_windows_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stage_windows_stddev_samp_fields"') + return tournament_stage_windows_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_stage_windows_sum_fields_possibleTypes: string[] = ['tournament_stage_windows_sum_fields'] + export const istournament_stage_windows_sum_fields = (obj?: { __typename?: any } | null): obj is tournament_stage_windows_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stage_windows_sum_fields"') + return tournament_stage_windows_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_stage_windows_var_pop_fields_possibleTypes: string[] = ['tournament_stage_windows_var_pop_fields'] + export const istournament_stage_windows_var_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_stage_windows_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stage_windows_var_pop_fields"') + return tournament_stage_windows_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_stage_windows_var_samp_fields_possibleTypes: string[] = ['tournament_stage_windows_var_samp_fields'] + export const istournament_stage_windows_var_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_stage_windows_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stage_windows_var_samp_fields"') + return tournament_stage_windows_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_stage_windows_variance_fields_possibleTypes: string[] = ['tournament_stage_windows_variance_fields'] + export const istournament_stage_windows_variance_fields = (obj?: { __typename?: any } | null): obj is tournament_stage_windows_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stage_windows_variance_fields"') + return tournament_stage_windows_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_stages_possibleTypes: string[] = ['tournament_stages'] + export const istournament_stages = (obj?: { __typename?: any } | null): obj is tournament_stages => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stages"') + return tournament_stages_possibleTypes.includes(obj.__typename) + } + + + + const tournament_stages_aggregate_possibleTypes: string[] = ['tournament_stages_aggregate'] + export const istournament_stages_aggregate = (obj?: { __typename?: any } | null): obj is tournament_stages_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stages_aggregate"') + return tournament_stages_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const tournament_stages_aggregate_fields_possibleTypes: string[] = ['tournament_stages_aggregate_fields'] + export const istournament_stages_aggregate_fields = (obj?: { __typename?: any } | null): obj is tournament_stages_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stages_aggregate_fields"') + return tournament_stages_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_stages_avg_fields_possibleTypes: string[] = ['tournament_stages_avg_fields'] + export const istournament_stages_avg_fields = (obj?: { __typename?: any } | null): obj is tournament_stages_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stages_avg_fields"') + return tournament_stages_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_stages_max_fields_possibleTypes: string[] = ['tournament_stages_max_fields'] + export const istournament_stages_max_fields = (obj?: { __typename?: any } | null): obj is tournament_stages_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stages_max_fields"') + return tournament_stages_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_stages_min_fields_possibleTypes: string[] = ['tournament_stages_min_fields'] + export const istournament_stages_min_fields = (obj?: { __typename?: any } | null): obj is tournament_stages_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stages_min_fields"') + return tournament_stages_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_stages_mutation_response_possibleTypes: string[] = ['tournament_stages_mutation_response'] + export const istournament_stages_mutation_response = (obj?: { __typename?: any } | null): obj is tournament_stages_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stages_mutation_response"') + return tournament_stages_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const tournament_stages_stddev_fields_possibleTypes: string[] = ['tournament_stages_stddev_fields'] + export const istournament_stages_stddev_fields = (obj?: { __typename?: any } | null): obj is tournament_stages_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stages_stddev_fields"') + return tournament_stages_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_stages_stddev_pop_fields_possibleTypes: string[] = ['tournament_stages_stddev_pop_fields'] + export const istournament_stages_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_stages_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stages_stddev_pop_fields"') + return tournament_stages_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_stages_stddev_samp_fields_possibleTypes: string[] = ['tournament_stages_stddev_samp_fields'] + export const istournament_stages_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_stages_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stages_stddev_samp_fields"') + return tournament_stages_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_stages_sum_fields_possibleTypes: string[] = ['tournament_stages_sum_fields'] + export const istournament_stages_sum_fields = (obj?: { __typename?: any } | null): obj is tournament_stages_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stages_sum_fields"') + return tournament_stages_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_stages_var_pop_fields_possibleTypes: string[] = ['tournament_stages_var_pop_fields'] + export const istournament_stages_var_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_stages_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stages_var_pop_fields"') + return tournament_stages_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_stages_var_samp_fields_possibleTypes: string[] = ['tournament_stages_var_samp_fields'] + export const istournament_stages_var_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_stages_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stages_var_samp_fields"') + return tournament_stages_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_stages_variance_fields_possibleTypes: string[] = ['tournament_stages_variance_fields'] + export const istournament_stages_variance_fields = (obj?: { __typename?: any } | null): obj is tournament_stages_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stages_variance_fields"') + return tournament_stages_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_team_invites_possibleTypes: string[] = ['tournament_team_invites'] + export const istournament_team_invites = (obj?: { __typename?: any } | null): obj is tournament_team_invites => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_invites"') + return tournament_team_invites_possibleTypes.includes(obj.__typename) + } + + + + const tournament_team_invites_aggregate_possibleTypes: string[] = ['tournament_team_invites_aggregate'] + export const istournament_team_invites_aggregate = (obj?: { __typename?: any } | null): obj is tournament_team_invites_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_invites_aggregate"') + return tournament_team_invites_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const tournament_team_invites_aggregate_fields_possibleTypes: string[] = ['tournament_team_invites_aggregate_fields'] + export const istournament_team_invites_aggregate_fields = (obj?: { __typename?: any } | null): obj is tournament_team_invites_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_invites_aggregate_fields"') + return tournament_team_invites_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_team_invites_avg_fields_possibleTypes: string[] = ['tournament_team_invites_avg_fields'] + export const istournament_team_invites_avg_fields = (obj?: { __typename?: any } | null): obj is tournament_team_invites_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_invites_avg_fields"') + return tournament_team_invites_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_team_invites_max_fields_possibleTypes: string[] = ['tournament_team_invites_max_fields'] + export const istournament_team_invites_max_fields = (obj?: { __typename?: any } | null): obj is tournament_team_invites_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_invites_max_fields"') + return tournament_team_invites_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_team_invites_min_fields_possibleTypes: string[] = ['tournament_team_invites_min_fields'] + export const istournament_team_invites_min_fields = (obj?: { __typename?: any } | null): obj is tournament_team_invites_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_invites_min_fields"') + return tournament_team_invites_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_team_invites_mutation_response_possibleTypes: string[] = ['tournament_team_invites_mutation_response'] + export const istournament_team_invites_mutation_response = (obj?: { __typename?: any } | null): obj is tournament_team_invites_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_invites_mutation_response"') + return tournament_team_invites_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const tournament_team_invites_stddev_fields_possibleTypes: string[] = ['tournament_team_invites_stddev_fields'] + export const istournament_team_invites_stddev_fields = (obj?: { __typename?: any } | null): obj is tournament_team_invites_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_invites_stddev_fields"') + return tournament_team_invites_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_team_invites_stddev_pop_fields_possibleTypes: string[] = ['tournament_team_invites_stddev_pop_fields'] + export const istournament_team_invites_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_team_invites_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_invites_stddev_pop_fields"') + return tournament_team_invites_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_team_invites_stddev_samp_fields_possibleTypes: string[] = ['tournament_team_invites_stddev_samp_fields'] + export const istournament_team_invites_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_team_invites_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_invites_stddev_samp_fields"') + return tournament_team_invites_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_team_invites_sum_fields_possibleTypes: string[] = ['tournament_team_invites_sum_fields'] + export const istournament_team_invites_sum_fields = (obj?: { __typename?: any } | null): obj is tournament_team_invites_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_invites_sum_fields"') + return tournament_team_invites_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_team_invites_var_pop_fields_possibleTypes: string[] = ['tournament_team_invites_var_pop_fields'] + export const istournament_team_invites_var_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_team_invites_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_invites_var_pop_fields"') + return tournament_team_invites_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_team_invites_var_samp_fields_possibleTypes: string[] = ['tournament_team_invites_var_samp_fields'] + export const istournament_team_invites_var_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_team_invites_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_invites_var_samp_fields"') + return tournament_team_invites_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_team_invites_variance_fields_possibleTypes: string[] = ['tournament_team_invites_variance_fields'] + export const istournament_team_invites_variance_fields = (obj?: { __typename?: any } | null): obj is tournament_team_invites_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_invites_variance_fields"') + return tournament_team_invites_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_team_roster_possibleTypes: string[] = ['tournament_team_roster'] + export const istournament_team_roster = (obj?: { __typename?: any } | null): obj is tournament_team_roster => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_roster"') + return tournament_team_roster_possibleTypes.includes(obj.__typename) + } + + + + const tournament_team_roster_aggregate_possibleTypes: string[] = ['tournament_team_roster_aggregate'] + export const istournament_team_roster_aggregate = (obj?: { __typename?: any } | null): obj is tournament_team_roster_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_roster_aggregate"') + return tournament_team_roster_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const tournament_team_roster_aggregate_fields_possibleTypes: string[] = ['tournament_team_roster_aggregate_fields'] + export const istournament_team_roster_aggregate_fields = (obj?: { __typename?: any } | null): obj is tournament_team_roster_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_roster_aggregate_fields"') + return tournament_team_roster_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_team_roster_avg_fields_possibleTypes: string[] = ['tournament_team_roster_avg_fields'] + export const istournament_team_roster_avg_fields = (obj?: { __typename?: any } | null): obj is tournament_team_roster_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_roster_avg_fields"') + return tournament_team_roster_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_team_roster_max_fields_possibleTypes: string[] = ['tournament_team_roster_max_fields'] + export const istournament_team_roster_max_fields = (obj?: { __typename?: any } | null): obj is tournament_team_roster_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_roster_max_fields"') + return tournament_team_roster_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_team_roster_min_fields_possibleTypes: string[] = ['tournament_team_roster_min_fields'] + export const istournament_team_roster_min_fields = (obj?: { __typename?: any } | null): obj is tournament_team_roster_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_roster_min_fields"') + return tournament_team_roster_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_team_roster_mutation_response_possibleTypes: string[] = ['tournament_team_roster_mutation_response'] + export const istournament_team_roster_mutation_response = (obj?: { __typename?: any } | null): obj is tournament_team_roster_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_roster_mutation_response"') + return tournament_team_roster_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const tournament_team_roster_stddev_fields_possibleTypes: string[] = ['tournament_team_roster_stddev_fields'] + export const istournament_team_roster_stddev_fields = (obj?: { __typename?: any } | null): obj is tournament_team_roster_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_roster_stddev_fields"') + return tournament_team_roster_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_team_roster_stddev_pop_fields_possibleTypes: string[] = ['tournament_team_roster_stddev_pop_fields'] + export const istournament_team_roster_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_team_roster_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_roster_stddev_pop_fields"') + return tournament_team_roster_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_team_roster_stddev_samp_fields_possibleTypes: string[] = ['tournament_team_roster_stddev_samp_fields'] + export const istournament_team_roster_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_team_roster_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_roster_stddev_samp_fields"') + return tournament_team_roster_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_team_roster_sum_fields_possibleTypes: string[] = ['tournament_team_roster_sum_fields'] + export const istournament_team_roster_sum_fields = (obj?: { __typename?: any } | null): obj is tournament_team_roster_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_roster_sum_fields"') + return tournament_team_roster_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_team_roster_var_pop_fields_possibleTypes: string[] = ['tournament_team_roster_var_pop_fields'] + export const istournament_team_roster_var_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_team_roster_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_roster_var_pop_fields"') + return tournament_team_roster_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_team_roster_var_samp_fields_possibleTypes: string[] = ['tournament_team_roster_var_samp_fields'] + export const istournament_team_roster_var_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_team_roster_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_roster_var_samp_fields"') + return tournament_team_roster_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_team_roster_variance_fields_possibleTypes: string[] = ['tournament_team_roster_variance_fields'] + export const istournament_team_roster_variance_fields = (obj?: { __typename?: any } | null): obj is tournament_team_roster_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_team_roster_variance_fields"') + return tournament_team_roster_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_teams_possibleTypes: string[] = ['tournament_teams'] + export const istournament_teams = (obj?: { __typename?: any } | null): obj is tournament_teams => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_teams"') + return tournament_teams_possibleTypes.includes(obj.__typename) + } + + + + const tournament_teams_aggregate_possibleTypes: string[] = ['tournament_teams_aggregate'] + export const istournament_teams_aggregate = (obj?: { __typename?: any } | null): obj is tournament_teams_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_teams_aggregate"') + return tournament_teams_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const tournament_teams_aggregate_fields_possibleTypes: string[] = ['tournament_teams_aggregate_fields'] + export const istournament_teams_aggregate_fields = (obj?: { __typename?: any } | null): obj is tournament_teams_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_teams_aggregate_fields"') + return tournament_teams_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_teams_avg_fields_possibleTypes: string[] = ['tournament_teams_avg_fields'] + export const istournament_teams_avg_fields = (obj?: { __typename?: any } | null): obj is tournament_teams_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_teams_avg_fields"') + return tournament_teams_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_teams_max_fields_possibleTypes: string[] = ['tournament_teams_max_fields'] + export const istournament_teams_max_fields = (obj?: { __typename?: any } | null): obj is tournament_teams_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_teams_max_fields"') + return tournament_teams_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_teams_min_fields_possibleTypes: string[] = ['tournament_teams_min_fields'] + export const istournament_teams_min_fields = (obj?: { __typename?: any } | null): obj is tournament_teams_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_teams_min_fields"') + return tournament_teams_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_teams_mutation_response_possibleTypes: string[] = ['tournament_teams_mutation_response'] + export const istournament_teams_mutation_response = (obj?: { __typename?: any } | null): obj is tournament_teams_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_teams_mutation_response"') + return tournament_teams_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const tournament_teams_stddev_fields_possibleTypes: string[] = ['tournament_teams_stddev_fields'] + export const istournament_teams_stddev_fields = (obj?: { __typename?: any } | null): obj is tournament_teams_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_teams_stddev_fields"') + return tournament_teams_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_teams_stddev_pop_fields_possibleTypes: string[] = ['tournament_teams_stddev_pop_fields'] + export const istournament_teams_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_teams_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_teams_stddev_pop_fields"') + return tournament_teams_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_teams_stddev_samp_fields_possibleTypes: string[] = ['tournament_teams_stddev_samp_fields'] + export const istournament_teams_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_teams_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_teams_stddev_samp_fields"') + return tournament_teams_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_teams_sum_fields_possibleTypes: string[] = ['tournament_teams_sum_fields'] + export const istournament_teams_sum_fields = (obj?: { __typename?: any } | null): obj is tournament_teams_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_teams_sum_fields"') + return tournament_teams_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_teams_var_pop_fields_possibleTypes: string[] = ['tournament_teams_var_pop_fields'] + export const istournament_teams_var_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_teams_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_teams_var_pop_fields"') + return tournament_teams_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_teams_var_samp_fields_possibleTypes: string[] = ['tournament_teams_var_samp_fields'] + export const istournament_teams_var_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_teams_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_teams_var_samp_fields"') + return tournament_teams_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_teams_variance_fields_possibleTypes: string[] = ['tournament_teams_variance_fields'] + export const istournament_teams_variance_fields = (obj?: { __typename?: any } | null): obj is tournament_teams_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_teams_variance_fields"') + return tournament_teams_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournaments_possibleTypes: string[] = ['tournaments'] + export const istournaments = (obj?: { __typename?: any } | null): obj is tournaments => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournaments"') + return tournaments_possibleTypes.includes(obj.__typename) + } + + + + const tournaments_aggregate_possibleTypes: string[] = ['tournaments_aggregate'] + export const istournaments_aggregate = (obj?: { __typename?: any } | null): obj is tournaments_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournaments_aggregate"') + return tournaments_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const tournaments_aggregate_fields_possibleTypes: string[] = ['tournaments_aggregate_fields'] + export const istournaments_aggregate_fields = (obj?: { __typename?: any } | null): obj is tournaments_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournaments_aggregate_fields"') + return tournaments_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournaments_avg_fields_possibleTypes: string[] = ['tournaments_avg_fields'] + export const istournaments_avg_fields = (obj?: { __typename?: any } | null): obj is tournaments_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournaments_avg_fields"') + return tournaments_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournaments_max_fields_possibleTypes: string[] = ['tournaments_max_fields'] + export const istournaments_max_fields = (obj?: { __typename?: any } | null): obj is tournaments_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournaments_max_fields"') + return tournaments_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournaments_min_fields_possibleTypes: string[] = ['tournaments_min_fields'] + export const istournaments_min_fields = (obj?: { __typename?: any } | null): obj is tournaments_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournaments_min_fields"') + return tournaments_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournaments_mutation_response_possibleTypes: string[] = ['tournaments_mutation_response'] + export const istournaments_mutation_response = (obj?: { __typename?: any } | null): obj is tournaments_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournaments_mutation_response"') + return tournaments_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const tournaments_stddev_fields_possibleTypes: string[] = ['tournaments_stddev_fields'] + export const istournaments_stddev_fields = (obj?: { __typename?: any } | null): obj is tournaments_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournaments_stddev_fields"') + return tournaments_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournaments_stddev_pop_fields_possibleTypes: string[] = ['tournaments_stddev_pop_fields'] + export const istournaments_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is tournaments_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournaments_stddev_pop_fields"') + return tournaments_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournaments_stddev_samp_fields_possibleTypes: string[] = ['tournaments_stddev_samp_fields'] + export const istournaments_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is tournaments_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournaments_stddev_samp_fields"') + return tournaments_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournaments_sum_fields_possibleTypes: string[] = ['tournaments_sum_fields'] + export const istournaments_sum_fields = (obj?: { __typename?: any } | null): obj is tournaments_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournaments_sum_fields"') + return tournaments_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournaments_var_pop_fields_possibleTypes: string[] = ['tournaments_var_pop_fields'] + export const istournaments_var_pop_fields = (obj?: { __typename?: any } | null): obj is tournaments_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournaments_var_pop_fields"') + return tournaments_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournaments_var_samp_fields_possibleTypes: string[] = ['tournaments_var_samp_fields'] + export const istournaments_var_samp_fields = (obj?: { __typename?: any } | null): obj is tournaments_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournaments_var_samp_fields"') + return tournaments_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournaments_variance_fields_possibleTypes: string[] = ['tournaments_variance_fields'] + export const istournaments_variance_fields = (obj?: { __typename?: any } | null): obj is tournaments_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournaments_variance_fields"') + return tournaments_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_collection_items_possibleTypes: string[] = ['utility_collection_items'] + export const isutility_collection_items = (obj?: { __typename?: any } | null): obj is utility_collection_items => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collection_items"') + return utility_collection_items_possibleTypes.includes(obj.__typename) + } + + + + const utility_collection_items_aggregate_possibleTypes: string[] = ['utility_collection_items_aggregate'] + export const isutility_collection_items_aggregate = (obj?: { __typename?: any } | null): obj is utility_collection_items_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collection_items_aggregate"') + return utility_collection_items_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const utility_collection_items_aggregate_fields_possibleTypes: string[] = ['utility_collection_items_aggregate_fields'] + export const isutility_collection_items_aggregate_fields = (obj?: { __typename?: any } | null): obj is utility_collection_items_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collection_items_aggregate_fields"') + return utility_collection_items_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_collection_items_avg_fields_possibleTypes: string[] = ['utility_collection_items_avg_fields'] + export const isutility_collection_items_avg_fields = (obj?: { __typename?: any } | null): obj is utility_collection_items_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collection_items_avg_fields"') + return utility_collection_items_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_collection_items_max_fields_possibleTypes: string[] = ['utility_collection_items_max_fields'] + export const isutility_collection_items_max_fields = (obj?: { __typename?: any } | null): obj is utility_collection_items_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collection_items_max_fields"') + return utility_collection_items_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_collection_items_min_fields_possibleTypes: string[] = ['utility_collection_items_min_fields'] + export const isutility_collection_items_min_fields = (obj?: { __typename?: any } | null): obj is utility_collection_items_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collection_items_min_fields"') + return utility_collection_items_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_collection_items_mutation_response_possibleTypes: string[] = ['utility_collection_items_mutation_response'] + export const isutility_collection_items_mutation_response = (obj?: { __typename?: any } | null): obj is utility_collection_items_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collection_items_mutation_response"') + return utility_collection_items_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const utility_collection_items_stddev_fields_possibleTypes: string[] = ['utility_collection_items_stddev_fields'] + export const isutility_collection_items_stddev_fields = (obj?: { __typename?: any } | null): obj is utility_collection_items_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collection_items_stddev_fields"') + return utility_collection_items_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_collection_items_stddev_pop_fields_possibleTypes: string[] = ['utility_collection_items_stddev_pop_fields'] + export const isutility_collection_items_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is utility_collection_items_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collection_items_stddev_pop_fields"') + return utility_collection_items_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_collection_items_stddev_samp_fields_possibleTypes: string[] = ['utility_collection_items_stddev_samp_fields'] + export const isutility_collection_items_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is utility_collection_items_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collection_items_stddev_samp_fields"') + return utility_collection_items_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_collection_items_sum_fields_possibleTypes: string[] = ['utility_collection_items_sum_fields'] + export const isutility_collection_items_sum_fields = (obj?: { __typename?: any } | null): obj is utility_collection_items_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collection_items_sum_fields"') + return utility_collection_items_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_collection_items_var_pop_fields_possibleTypes: string[] = ['utility_collection_items_var_pop_fields'] + export const isutility_collection_items_var_pop_fields = (obj?: { __typename?: any } | null): obj is utility_collection_items_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collection_items_var_pop_fields"') + return utility_collection_items_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_collection_items_var_samp_fields_possibleTypes: string[] = ['utility_collection_items_var_samp_fields'] + export const isutility_collection_items_var_samp_fields = (obj?: { __typename?: any } | null): obj is utility_collection_items_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collection_items_var_samp_fields"') + return utility_collection_items_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_collection_items_variance_fields_possibleTypes: string[] = ['utility_collection_items_variance_fields'] + export const isutility_collection_items_variance_fields = (obj?: { __typename?: any } | null): obj is utility_collection_items_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collection_items_variance_fields"') + return utility_collection_items_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_collections_possibleTypes: string[] = ['utility_collections'] + export const isutility_collections = (obj?: { __typename?: any } | null): obj is utility_collections => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collections"') + return utility_collections_possibleTypes.includes(obj.__typename) + } + + + + const utility_collections_aggregate_possibleTypes: string[] = ['utility_collections_aggregate'] + export const isutility_collections_aggregate = (obj?: { __typename?: any } | null): obj is utility_collections_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collections_aggregate"') + return utility_collections_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const utility_collections_aggregate_fields_possibleTypes: string[] = ['utility_collections_aggregate_fields'] + export const isutility_collections_aggregate_fields = (obj?: { __typename?: any } | null): obj is utility_collections_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collections_aggregate_fields"') + return utility_collections_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_collections_avg_fields_possibleTypes: string[] = ['utility_collections_avg_fields'] + export const isutility_collections_avg_fields = (obj?: { __typename?: any } | null): obj is utility_collections_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collections_avg_fields"') + return utility_collections_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_collections_max_fields_possibleTypes: string[] = ['utility_collections_max_fields'] + export const isutility_collections_max_fields = (obj?: { __typename?: any } | null): obj is utility_collections_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collections_max_fields"') + return utility_collections_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_collections_min_fields_possibleTypes: string[] = ['utility_collections_min_fields'] + export const isutility_collections_min_fields = (obj?: { __typename?: any } | null): obj is utility_collections_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collections_min_fields"') + return utility_collections_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_collections_mutation_response_possibleTypes: string[] = ['utility_collections_mutation_response'] + export const isutility_collections_mutation_response = (obj?: { __typename?: any } | null): obj is utility_collections_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collections_mutation_response"') + return utility_collections_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const utility_collections_stddev_fields_possibleTypes: string[] = ['utility_collections_stddev_fields'] + export const isutility_collections_stddev_fields = (obj?: { __typename?: any } | null): obj is utility_collections_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collections_stddev_fields"') + return utility_collections_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_collections_stddev_pop_fields_possibleTypes: string[] = ['utility_collections_stddev_pop_fields'] + export const isutility_collections_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is utility_collections_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collections_stddev_pop_fields"') + return utility_collections_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_collections_stddev_samp_fields_possibleTypes: string[] = ['utility_collections_stddev_samp_fields'] + export const isutility_collections_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is utility_collections_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collections_stddev_samp_fields"') + return utility_collections_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_collections_sum_fields_possibleTypes: string[] = ['utility_collections_sum_fields'] + export const isutility_collections_sum_fields = (obj?: { __typename?: any } | null): obj is utility_collections_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collections_sum_fields"') + return utility_collections_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_collections_var_pop_fields_possibleTypes: string[] = ['utility_collections_var_pop_fields'] + export const isutility_collections_var_pop_fields = (obj?: { __typename?: any } | null): obj is utility_collections_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collections_var_pop_fields"') + return utility_collections_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_collections_var_samp_fields_possibleTypes: string[] = ['utility_collections_var_samp_fields'] + export const isutility_collections_var_samp_fields = (obj?: { __typename?: any } | null): obj is utility_collections_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collections_var_samp_fields"') + return utility_collections_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_collections_variance_fields_possibleTypes: string[] = ['utility_collections_variance_fields'] + export const isutility_collections_variance_fields = (obj?: { __typename?: any } | null): obj is utility_collections_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_collections_variance_fields"') + return utility_collections_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_demo_mines_possibleTypes: string[] = ['utility_demo_mines'] + export const isutility_demo_mines = (obj?: { __typename?: any } | null): obj is utility_demo_mines => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_mines"') + return utility_demo_mines_possibleTypes.includes(obj.__typename) + } + + + + const utility_demo_mines_aggregate_possibleTypes: string[] = ['utility_demo_mines_aggregate'] + export const isutility_demo_mines_aggregate = (obj?: { __typename?: any } | null): obj is utility_demo_mines_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_mines_aggregate"') + return utility_demo_mines_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const utility_demo_mines_aggregate_fields_possibleTypes: string[] = ['utility_demo_mines_aggregate_fields'] + export const isutility_demo_mines_aggregate_fields = (obj?: { __typename?: any } | null): obj is utility_demo_mines_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_mines_aggregate_fields"') + return utility_demo_mines_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_demo_mines_avg_fields_possibleTypes: string[] = ['utility_demo_mines_avg_fields'] + export const isutility_demo_mines_avg_fields = (obj?: { __typename?: any } | null): obj is utility_demo_mines_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_mines_avg_fields"') + return utility_demo_mines_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_demo_mines_max_fields_possibleTypes: string[] = ['utility_demo_mines_max_fields'] + export const isutility_demo_mines_max_fields = (obj?: { __typename?: any } | null): obj is utility_demo_mines_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_mines_max_fields"') + return utility_demo_mines_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_demo_mines_min_fields_possibleTypes: string[] = ['utility_demo_mines_min_fields'] + export const isutility_demo_mines_min_fields = (obj?: { __typename?: any } | null): obj is utility_demo_mines_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_mines_min_fields"') + return utility_demo_mines_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_demo_mines_mutation_response_possibleTypes: string[] = ['utility_demo_mines_mutation_response'] + export const isutility_demo_mines_mutation_response = (obj?: { __typename?: any } | null): obj is utility_demo_mines_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_mines_mutation_response"') + return utility_demo_mines_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const utility_demo_mines_stddev_fields_possibleTypes: string[] = ['utility_demo_mines_stddev_fields'] + export const isutility_demo_mines_stddev_fields = (obj?: { __typename?: any } | null): obj is utility_demo_mines_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_mines_stddev_fields"') + return utility_demo_mines_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_demo_mines_stddev_pop_fields_possibleTypes: string[] = ['utility_demo_mines_stddev_pop_fields'] + export const isutility_demo_mines_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is utility_demo_mines_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_mines_stddev_pop_fields"') + return utility_demo_mines_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_demo_mines_stddev_samp_fields_possibleTypes: string[] = ['utility_demo_mines_stddev_samp_fields'] + export const isutility_demo_mines_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is utility_demo_mines_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_mines_stddev_samp_fields"') + return utility_demo_mines_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_demo_mines_sum_fields_possibleTypes: string[] = ['utility_demo_mines_sum_fields'] + export const isutility_demo_mines_sum_fields = (obj?: { __typename?: any } | null): obj is utility_demo_mines_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_mines_sum_fields"') + return utility_demo_mines_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_demo_mines_var_pop_fields_possibleTypes: string[] = ['utility_demo_mines_var_pop_fields'] + export const isutility_demo_mines_var_pop_fields = (obj?: { __typename?: any } | null): obj is utility_demo_mines_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_mines_var_pop_fields"') + return utility_demo_mines_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_demo_mines_var_samp_fields_possibleTypes: string[] = ['utility_demo_mines_var_samp_fields'] + export const isutility_demo_mines_var_samp_fields = (obj?: { __typename?: any } | null): obj is utility_demo_mines_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_mines_var_samp_fields"') + return utility_demo_mines_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_demo_mines_variance_fields_possibleTypes: string[] = ['utility_demo_mines_variance_fields'] + export const isutility_demo_mines_variance_fields = (obj?: { __typename?: any } | null): obj is utility_demo_mines_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_mines_variance_fields"') + return utility_demo_mines_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_demo_throws_possibleTypes: string[] = ['utility_demo_throws'] + export const isutility_demo_throws = (obj?: { __typename?: any } | null): obj is utility_demo_throws => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_throws"') + return utility_demo_throws_possibleTypes.includes(obj.__typename) + } + + + + const utility_demo_throws_aggregate_possibleTypes: string[] = ['utility_demo_throws_aggregate'] + export const isutility_demo_throws_aggregate = (obj?: { __typename?: any } | null): obj is utility_demo_throws_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_throws_aggregate"') + return utility_demo_throws_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const utility_demo_throws_aggregate_fields_possibleTypes: string[] = ['utility_demo_throws_aggregate_fields'] + export const isutility_demo_throws_aggregate_fields = (obj?: { __typename?: any } | null): obj is utility_demo_throws_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_throws_aggregate_fields"') + return utility_demo_throws_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_demo_throws_avg_fields_possibleTypes: string[] = ['utility_demo_throws_avg_fields'] + export const isutility_demo_throws_avg_fields = (obj?: { __typename?: any } | null): obj is utility_demo_throws_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_throws_avg_fields"') + return utility_demo_throws_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_demo_throws_max_fields_possibleTypes: string[] = ['utility_demo_throws_max_fields'] + export const isutility_demo_throws_max_fields = (obj?: { __typename?: any } | null): obj is utility_demo_throws_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_throws_max_fields"') + return utility_demo_throws_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_demo_throws_min_fields_possibleTypes: string[] = ['utility_demo_throws_min_fields'] + export const isutility_demo_throws_min_fields = (obj?: { __typename?: any } | null): obj is utility_demo_throws_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_throws_min_fields"') + return utility_demo_throws_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_demo_throws_mutation_response_possibleTypes: string[] = ['utility_demo_throws_mutation_response'] + export const isutility_demo_throws_mutation_response = (obj?: { __typename?: any } | null): obj is utility_demo_throws_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_throws_mutation_response"') + return utility_demo_throws_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const utility_demo_throws_stddev_fields_possibleTypes: string[] = ['utility_demo_throws_stddev_fields'] + export const isutility_demo_throws_stddev_fields = (obj?: { __typename?: any } | null): obj is utility_demo_throws_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_throws_stddev_fields"') + return utility_demo_throws_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_demo_throws_stddev_pop_fields_possibleTypes: string[] = ['utility_demo_throws_stddev_pop_fields'] + export const isutility_demo_throws_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is utility_demo_throws_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_throws_stddev_pop_fields"') + return utility_demo_throws_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_demo_throws_stddev_samp_fields_possibleTypes: string[] = ['utility_demo_throws_stddev_samp_fields'] + export const isutility_demo_throws_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is utility_demo_throws_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_throws_stddev_samp_fields"') + return utility_demo_throws_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_demo_throws_sum_fields_possibleTypes: string[] = ['utility_demo_throws_sum_fields'] + export const isutility_demo_throws_sum_fields = (obj?: { __typename?: any } | null): obj is utility_demo_throws_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_throws_sum_fields"') + return utility_demo_throws_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_demo_throws_var_pop_fields_possibleTypes: string[] = ['utility_demo_throws_var_pop_fields'] + export const isutility_demo_throws_var_pop_fields = (obj?: { __typename?: any } | null): obj is utility_demo_throws_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_throws_var_pop_fields"') + return utility_demo_throws_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_demo_throws_var_samp_fields_possibleTypes: string[] = ['utility_demo_throws_var_samp_fields'] + export const isutility_demo_throws_var_samp_fields = (obj?: { __typename?: any } | null): obj is utility_demo_throws_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_throws_var_samp_fields"') + return utility_demo_throws_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_demo_throws_variance_fields_possibleTypes: string[] = ['utility_demo_throws_variance_fields'] + export const isutility_demo_throws_variance_fields = (obj?: { __typename?: any } | null): obj is utility_demo_throws_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_demo_throws_variance_fields"') + return utility_demo_throws_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_drift_results_possibleTypes: string[] = ['utility_drift_results'] + export const isutility_drift_results = (obj?: { __typename?: any } | null): obj is utility_drift_results => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_results"') + return utility_drift_results_possibleTypes.includes(obj.__typename) + } + + + + const utility_drift_results_aggregate_possibleTypes: string[] = ['utility_drift_results_aggregate'] + export const isutility_drift_results_aggregate = (obj?: { __typename?: any } | null): obj is utility_drift_results_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_results_aggregate"') + return utility_drift_results_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const utility_drift_results_aggregate_fields_possibleTypes: string[] = ['utility_drift_results_aggregate_fields'] + export const isutility_drift_results_aggregate_fields = (obj?: { __typename?: any } | null): obj is utility_drift_results_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_results_aggregate_fields"') + return utility_drift_results_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_drift_results_avg_fields_possibleTypes: string[] = ['utility_drift_results_avg_fields'] + export const isutility_drift_results_avg_fields = (obj?: { __typename?: any } | null): obj is utility_drift_results_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_results_avg_fields"') + return utility_drift_results_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_drift_results_max_fields_possibleTypes: string[] = ['utility_drift_results_max_fields'] + export const isutility_drift_results_max_fields = (obj?: { __typename?: any } | null): obj is utility_drift_results_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_results_max_fields"') + return utility_drift_results_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_drift_results_min_fields_possibleTypes: string[] = ['utility_drift_results_min_fields'] + export const isutility_drift_results_min_fields = (obj?: { __typename?: any } | null): obj is utility_drift_results_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_results_min_fields"') + return utility_drift_results_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_drift_results_mutation_response_possibleTypes: string[] = ['utility_drift_results_mutation_response'] + export const isutility_drift_results_mutation_response = (obj?: { __typename?: any } | null): obj is utility_drift_results_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_results_mutation_response"') + return utility_drift_results_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const utility_drift_results_stddev_fields_possibleTypes: string[] = ['utility_drift_results_stddev_fields'] + export const isutility_drift_results_stddev_fields = (obj?: { __typename?: any } | null): obj is utility_drift_results_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_results_stddev_fields"') + return utility_drift_results_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_drift_results_stddev_pop_fields_possibleTypes: string[] = ['utility_drift_results_stddev_pop_fields'] + export const isutility_drift_results_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is utility_drift_results_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_results_stddev_pop_fields"') + return utility_drift_results_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_drift_results_stddev_samp_fields_possibleTypes: string[] = ['utility_drift_results_stddev_samp_fields'] + export const isutility_drift_results_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is utility_drift_results_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_results_stddev_samp_fields"') + return utility_drift_results_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_drift_results_sum_fields_possibleTypes: string[] = ['utility_drift_results_sum_fields'] + export const isutility_drift_results_sum_fields = (obj?: { __typename?: any } | null): obj is utility_drift_results_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_results_sum_fields"') + return utility_drift_results_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_drift_results_var_pop_fields_possibleTypes: string[] = ['utility_drift_results_var_pop_fields'] + export const isutility_drift_results_var_pop_fields = (obj?: { __typename?: any } | null): obj is utility_drift_results_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_results_var_pop_fields"') + return utility_drift_results_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_drift_results_var_samp_fields_possibleTypes: string[] = ['utility_drift_results_var_samp_fields'] + export const isutility_drift_results_var_samp_fields = (obj?: { __typename?: any } | null): obj is utility_drift_results_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_results_var_samp_fields"') + return utility_drift_results_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_drift_results_variance_fields_possibleTypes: string[] = ['utility_drift_results_variance_fields'] + export const isutility_drift_results_variance_fields = (obj?: { __typename?: any } | null): obj is utility_drift_results_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_results_variance_fields"') + return utility_drift_results_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_drift_scans_possibleTypes: string[] = ['utility_drift_scans'] + export const isutility_drift_scans = (obj?: { __typename?: any } | null): obj is utility_drift_scans => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_scans"') + return utility_drift_scans_possibleTypes.includes(obj.__typename) + } + + + + const utility_drift_scans_aggregate_possibleTypes: string[] = ['utility_drift_scans_aggregate'] + export const isutility_drift_scans_aggregate = (obj?: { __typename?: any } | null): obj is utility_drift_scans_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_scans_aggregate"') + return utility_drift_scans_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const utility_drift_scans_aggregate_fields_possibleTypes: string[] = ['utility_drift_scans_aggregate_fields'] + export const isutility_drift_scans_aggregate_fields = (obj?: { __typename?: any } | null): obj is utility_drift_scans_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_scans_aggregate_fields"') + return utility_drift_scans_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_drift_scans_avg_fields_possibleTypes: string[] = ['utility_drift_scans_avg_fields'] + export const isutility_drift_scans_avg_fields = (obj?: { __typename?: any } | null): obj is utility_drift_scans_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_scans_avg_fields"') + return utility_drift_scans_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_drift_scans_max_fields_possibleTypes: string[] = ['utility_drift_scans_max_fields'] + export const isutility_drift_scans_max_fields = (obj?: { __typename?: any } | null): obj is utility_drift_scans_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_scans_max_fields"') + return utility_drift_scans_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_drift_scans_min_fields_possibleTypes: string[] = ['utility_drift_scans_min_fields'] + export const isutility_drift_scans_min_fields = (obj?: { __typename?: any } | null): obj is utility_drift_scans_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_scans_min_fields"') + return utility_drift_scans_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_drift_scans_mutation_response_possibleTypes: string[] = ['utility_drift_scans_mutation_response'] + export const isutility_drift_scans_mutation_response = (obj?: { __typename?: any } | null): obj is utility_drift_scans_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_scans_mutation_response"') + return utility_drift_scans_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const utility_drift_scans_stddev_fields_possibleTypes: string[] = ['utility_drift_scans_stddev_fields'] + export const isutility_drift_scans_stddev_fields = (obj?: { __typename?: any } | null): obj is utility_drift_scans_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_scans_stddev_fields"') + return utility_drift_scans_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_drift_scans_stddev_pop_fields_possibleTypes: string[] = ['utility_drift_scans_stddev_pop_fields'] + export const isutility_drift_scans_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is utility_drift_scans_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_scans_stddev_pop_fields"') + return utility_drift_scans_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_drift_scans_stddev_samp_fields_possibleTypes: string[] = ['utility_drift_scans_stddev_samp_fields'] + export const isutility_drift_scans_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is utility_drift_scans_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_scans_stddev_samp_fields"') + return utility_drift_scans_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_drift_scans_sum_fields_possibleTypes: string[] = ['utility_drift_scans_sum_fields'] + export const isutility_drift_scans_sum_fields = (obj?: { __typename?: any } | null): obj is utility_drift_scans_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_scans_sum_fields"') + return utility_drift_scans_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_drift_scans_var_pop_fields_possibleTypes: string[] = ['utility_drift_scans_var_pop_fields'] + export const isutility_drift_scans_var_pop_fields = (obj?: { __typename?: any } | null): obj is utility_drift_scans_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_scans_var_pop_fields"') + return utility_drift_scans_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_drift_scans_var_samp_fields_possibleTypes: string[] = ['utility_drift_scans_var_samp_fields'] + export const isutility_drift_scans_var_samp_fields = (obj?: { __typename?: any } | null): obj is utility_drift_scans_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_scans_var_samp_fields"') + return utility_drift_scans_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_drift_scans_variance_fields_possibleTypes: string[] = ['utility_drift_scans_variance_fields'] + export const isutility_drift_scans_variance_fields = (obj?: { __typename?: any } | null): obj is utility_drift_scans_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_drift_scans_variance_fields"') + return utility_drift_scans_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_favorites_possibleTypes: string[] = ['utility_lineup_favorites'] + export const isutility_lineup_favorites = (obj?: { __typename?: any } | null): obj is utility_lineup_favorites => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_favorites"') + return utility_lineup_favorites_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_favorites_aggregate_possibleTypes: string[] = ['utility_lineup_favorites_aggregate'] + export const isutility_lineup_favorites_aggregate = (obj?: { __typename?: any } | null): obj is utility_lineup_favorites_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_favorites_aggregate"') + return utility_lineup_favorites_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_favorites_aggregate_fields_possibleTypes: string[] = ['utility_lineup_favorites_aggregate_fields'] + export const isutility_lineup_favorites_aggregate_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_favorites_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_favorites_aggregate_fields"') + return utility_lineup_favorites_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_favorites_avg_fields_possibleTypes: string[] = ['utility_lineup_favorites_avg_fields'] + export const isutility_lineup_favorites_avg_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_favorites_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_favorites_avg_fields"') + return utility_lineup_favorites_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_favorites_max_fields_possibleTypes: string[] = ['utility_lineup_favorites_max_fields'] + export const isutility_lineup_favorites_max_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_favorites_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_favorites_max_fields"') + return utility_lineup_favorites_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_favorites_min_fields_possibleTypes: string[] = ['utility_lineup_favorites_min_fields'] + export const isutility_lineup_favorites_min_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_favorites_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_favorites_min_fields"') + return utility_lineup_favorites_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_favorites_mutation_response_possibleTypes: string[] = ['utility_lineup_favorites_mutation_response'] + export const isutility_lineup_favorites_mutation_response = (obj?: { __typename?: any } | null): obj is utility_lineup_favorites_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_favorites_mutation_response"') + return utility_lineup_favorites_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_favorites_stddev_fields_possibleTypes: string[] = ['utility_lineup_favorites_stddev_fields'] + export const isutility_lineup_favorites_stddev_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_favorites_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_favorites_stddev_fields"') + return utility_lineup_favorites_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_favorites_stddev_pop_fields_possibleTypes: string[] = ['utility_lineup_favorites_stddev_pop_fields'] + export const isutility_lineup_favorites_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_favorites_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_favorites_stddev_pop_fields"') + return utility_lineup_favorites_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_favorites_stddev_samp_fields_possibleTypes: string[] = ['utility_lineup_favorites_stddev_samp_fields'] + export const isutility_lineup_favorites_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_favorites_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_favorites_stddev_samp_fields"') + return utility_lineup_favorites_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_favorites_sum_fields_possibleTypes: string[] = ['utility_lineup_favorites_sum_fields'] + export const isutility_lineup_favorites_sum_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_favorites_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_favorites_sum_fields"') + return utility_lineup_favorites_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_favorites_var_pop_fields_possibleTypes: string[] = ['utility_lineup_favorites_var_pop_fields'] + export const isutility_lineup_favorites_var_pop_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_favorites_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_favorites_var_pop_fields"') + return utility_lineup_favorites_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_favorites_var_samp_fields_possibleTypes: string[] = ['utility_lineup_favorites_var_samp_fields'] + export const isutility_lineup_favorites_var_samp_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_favorites_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_favorites_var_samp_fields"') + return utility_lineup_favorites_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_favorites_variance_fields_possibleTypes: string[] = ['utility_lineup_favorites_variance_fields'] + export const isutility_lineup_favorites_variance_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_favorites_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_favorites_variance_fields"') + return utility_lineup_favorites_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_progress_possibleTypes: string[] = ['utility_lineup_progress'] + export const isutility_lineup_progress = (obj?: { __typename?: any } | null): obj is utility_lineup_progress => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_progress"') + return utility_lineup_progress_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_progress_aggregate_possibleTypes: string[] = ['utility_lineup_progress_aggregate'] + export const isutility_lineup_progress_aggregate = (obj?: { __typename?: any } | null): obj is utility_lineup_progress_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_progress_aggregate"') + return utility_lineup_progress_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_progress_aggregate_fields_possibleTypes: string[] = ['utility_lineup_progress_aggregate_fields'] + export const isutility_lineup_progress_aggregate_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_progress_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_progress_aggregate_fields"') + return utility_lineup_progress_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_progress_avg_fields_possibleTypes: string[] = ['utility_lineup_progress_avg_fields'] + export const isutility_lineup_progress_avg_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_progress_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_progress_avg_fields"') + return utility_lineup_progress_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_progress_max_fields_possibleTypes: string[] = ['utility_lineup_progress_max_fields'] + export const isutility_lineup_progress_max_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_progress_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_progress_max_fields"') + return utility_lineup_progress_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_progress_min_fields_possibleTypes: string[] = ['utility_lineup_progress_min_fields'] + export const isutility_lineup_progress_min_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_progress_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_progress_min_fields"') + return utility_lineup_progress_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_progress_mutation_response_possibleTypes: string[] = ['utility_lineup_progress_mutation_response'] + export const isutility_lineup_progress_mutation_response = (obj?: { __typename?: any } | null): obj is utility_lineup_progress_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_progress_mutation_response"') + return utility_lineup_progress_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_progress_stddev_fields_possibleTypes: string[] = ['utility_lineup_progress_stddev_fields'] + export const isutility_lineup_progress_stddev_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_progress_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_progress_stddev_fields"') + return utility_lineup_progress_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_progress_stddev_pop_fields_possibleTypes: string[] = ['utility_lineup_progress_stddev_pop_fields'] + export const isutility_lineup_progress_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_progress_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_progress_stddev_pop_fields"') + return utility_lineup_progress_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_progress_stddev_samp_fields_possibleTypes: string[] = ['utility_lineup_progress_stddev_samp_fields'] + export const isutility_lineup_progress_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_progress_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_progress_stddev_samp_fields"') + return utility_lineup_progress_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_progress_sum_fields_possibleTypes: string[] = ['utility_lineup_progress_sum_fields'] + export const isutility_lineup_progress_sum_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_progress_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_progress_sum_fields"') + return utility_lineup_progress_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_progress_var_pop_fields_possibleTypes: string[] = ['utility_lineup_progress_var_pop_fields'] + export const isutility_lineup_progress_var_pop_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_progress_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_progress_var_pop_fields"') + return utility_lineup_progress_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_progress_var_samp_fields_possibleTypes: string[] = ['utility_lineup_progress_var_samp_fields'] + export const isutility_lineup_progress_var_samp_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_progress_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_progress_var_samp_fields"') + return utility_lineup_progress_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_progress_variance_fields_possibleTypes: string[] = ['utility_lineup_progress_variance_fields'] + export const isutility_lineup_progress_variance_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_progress_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_progress_variance_fields"') + return utility_lineup_progress_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_renders_possibleTypes: string[] = ['utility_lineup_renders'] + export const isutility_lineup_renders = (obj?: { __typename?: any } | null): obj is utility_lineup_renders => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_renders"') + return utility_lineup_renders_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_renders_aggregate_possibleTypes: string[] = ['utility_lineup_renders_aggregate'] + export const isutility_lineup_renders_aggregate = (obj?: { __typename?: any } | null): obj is utility_lineup_renders_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_renders_aggregate"') + return utility_lineup_renders_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_renders_aggregate_fields_possibleTypes: string[] = ['utility_lineup_renders_aggregate_fields'] + export const isutility_lineup_renders_aggregate_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_renders_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_renders_aggregate_fields"') + return utility_lineup_renders_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_renders_avg_fields_possibleTypes: string[] = ['utility_lineup_renders_avg_fields'] + export const isutility_lineup_renders_avg_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_renders_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_renders_avg_fields"') + return utility_lineup_renders_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_renders_max_fields_possibleTypes: string[] = ['utility_lineup_renders_max_fields'] + export const isutility_lineup_renders_max_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_renders_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_renders_max_fields"') + return utility_lineup_renders_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_renders_min_fields_possibleTypes: string[] = ['utility_lineup_renders_min_fields'] + export const isutility_lineup_renders_min_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_renders_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_renders_min_fields"') + return utility_lineup_renders_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_renders_mutation_response_possibleTypes: string[] = ['utility_lineup_renders_mutation_response'] + export const isutility_lineup_renders_mutation_response = (obj?: { __typename?: any } | null): obj is utility_lineup_renders_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_renders_mutation_response"') + return utility_lineup_renders_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_renders_stddev_fields_possibleTypes: string[] = ['utility_lineup_renders_stddev_fields'] + export const isutility_lineup_renders_stddev_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_renders_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_renders_stddev_fields"') + return utility_lineup_renders_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_renders_stddev_pop_fields_possibleTypes: string[] = ['utility_lineup_renders_stddev_pop_fields'] + export const isutility_lineup_renders_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_renders_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_renders_stddev_pop_fields"') + return utility_lineup_renders_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_renders_stddev_samp_fields_possibleTypes: string[] = ['utility_lineup_renders_stddev_samp_fields'] + export const isutility_lineup_renders_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_renders_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_renders_stddev_samp_fields"') + return utility_lineup_renders_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_renders_sum_fields_possibleTypes: string[] = ['utility_lineup_renders_sum_fields'] + export const isutility_lineup_renders_sum_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_renders_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_renders_sum_fields"') + return utility_lineup_renders_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_renders_var_pop_fields_possibleTypes: string[] = ['utility_lineup_renders_var_pop_fields'] + export const isutility_lineup_renders_var_pop_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_renders_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_renders_var_pop_fields"') + return utility_lineup_renders_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_renders_var_samp_fields_possibleTypes: string[] = ['utility_lineup_renders_var_samp_fields'] + export const isutility_lineup_renders_var_samp_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_renders_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_renders_var_samp_fields"') + return utility_lineup_renders_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_renders_variance_fields_possibleTypes: string[] = ['utility_lineup_renders_variance_fields'] + export const isutility_lineup_renders_variance_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_renders_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_renders_variance_fields"') + return utility_lineup_renders_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_repairs_possibleTypes: string[] = ['utility_lineup_repairs'] + export const isutility_lineup_repairs = (obj?: { __typename?: any } | null): obj is utility_lineup_repairs => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_repairs"') + return utility_lineup_repairs_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_repairs_aggregate_possibleTypes: string[] = ['utility_lineup_repairs_aggregate'] + export const isutility_lineup_repairs_aggregate = (obj?: { __typename?: any } | null): obj is utility_lineup_repairs_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_repairs_aggregate"') + return utility_lineup_repairs_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_repairs_aggregate_fields_possibleTypes: string[] = ['utility_lineup_repairs_aggregate_fields'] + export const isutility_lineup_repairs_aggregate_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_repairs_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_repairs_aggregate_fields"') + return utility_lineup_repairs_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_repairs_avg_fields_possibleTypes: string[] = ['utility_lineup_repairs_avg_fields'] + export const isutility_lineup_repairs_avg_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_repairs_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_repairs_avg_fields"') + return utility_lineup_repairs_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_repairs_max_fields_possibleTypes: string[] = ['utility_lineup_repairs_max_fields'] + export const isutility_lineup_repairs_max_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_repairs_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_repairs_max_fields"') + return utility_lineup_repairs_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_repairs_min_fields_possibleTypes: string[] = ['utility_lineup_repairs_min_fields'] + export const isutility_lineup_repairs_min_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_repairs_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_repairs_min_fields"') + return utility_lineup_repairs_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_repairs_mutation_response_possibleTypes: string[] = ['utility_lineup_repairs_mutation_response'] + export const isutility_lineup_repairs_mutation_response = (obj?: { __typename?: any } | null): obj is utility_lineup_repairs_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_repairs_mutation_response"') + return utility_lineup_repairs_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_repairs_stddev_fields_possibleTypes: string[] = ['utility_lineup_repairs_stddev_fields'] + export const isutility_lineup_repairs_stddev_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_repairs_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_repairs_stddev_fields"') + return utility_lineup_repairs_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_repairs_stddev_pop_fields_possibleTypes: string[] = ['utility_lineup_repairs_stddev_pop_fields'] + export const isutility_lineup_repairs_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_repairs_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_repairs_stddev_pop_fields"') + return utility_lineup_repairs_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_repairs_stddev_samp_fields_possibleTypes: string[] = ['utility_lineup_repairs_stddev_samp_fields'] + export const isutility_lineup_repairs_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_repairs_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_repairs_stddev_samp_fields"') + return utility_lineup_repairs_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_repairs_sum_fields_possibleTypes: string[] = ['utility_lineup_repairs_sum_fields'] + export const isutility_lineup_repairs_sum_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_repairs_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_repairs_sum_fields"') + return utility_lineup_repairs_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_repairs_var_pop_fields_possibleTypes: string[] = ['utility_lineup_repairs_var_pop_fields'] + export const isutility_lineup_repairs_var_pop_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_repairs_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_repairs_var_pop_fields"') + return utility_lineup_repairs_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_repairs_var_samp_fields_possibleTypes: string[] = ['utility_lineup_repairs_var_samp_fields'] + export const isutility_lineup_repairs_var_samp_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_repairs_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_repairs_var_samp_fields"') + return utility_lineup_repairs_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_repairs_variance_fields_possibleTypes: string[] = ['utility_lineup_repairs_variance_fields'] + export const isutility_lineup_repairs_variance_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_repairs_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_repairs_variance_fields"') + return utility_lineup_repairs_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_votes_possibleTypes: string[] = ['utility_lineup_votes'] + export const isutility_lineup_votes = (obj?: { __typename?: any } | null): obj is utility_lineup_votes => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_votes"') + return utility_lineup_votes_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_votes_aggregate_possibleTypes: string[] = ['utility_lineup_votes_aggregate'] + export const isutility_lineup_votes_aggregate = (obj?: { __typename?: any } | null): obj is utility_lineup_votes_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_votes_aggregate"') + return utility_lineup_votes_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_votes_aggregate_fields_possibleTypes: string[] = ['utility_lineup_votes_aggregate_fields'] + export const isutility_lineup_votes_aggregate_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_votes_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_votes_aggregate_fields"') + return utility_lineup_votes_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_votes_avg_fields_possibleTypes: string[] = ['utility_lineup_votes_avg_fields'] + export const isutility_lineup_votes_avg_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_votes_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_votes_avg_fields"') + return utility_lineup_votes_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_votes_max_fields_possibleTypes: string[] = ['utility_lineup_votes_max_fields'] + export const isutility_lineup_votes_max_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_votes_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_votes_max_fields"') + return utility_lineup_votes_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_votes_min_fields_possibleTypes: string[] = ['utility_lineup_votes_min_fields'] + export const isutility_lineup_votes_min_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_votes_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_votes_min_fields"') + return utility_lineup_votes_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_votes_mutation_response_possibleTypes: string[] = ['utility_lineup_votes_mutation_response'] + export const isutility_lineup_votes_mutation_response = (obj?: { __typename?: any } | null): obj is utility_lineup_votes_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_votes_mutation_response"') + return utility_lineup_votes_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_votes_stddev_fields_possibleTypes: string[] = ['utility_lineup_votes_stddev_fields'] + export const isutility_lineup_votes_stddev_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_votes_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_votes_stddev_fields"') + return utility_lineup_votes_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_votes_stddev_pop_fields_possibleTypes: string[] = ['utility_lineup_votes_stddev_pop_fields'] + export const isutility_lineup_votes_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_votes_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_votes_stddev_pop_fields"') + return utility_lineup_votes_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_votes_stddev_samp_fields_possibleTypes: string[] = ['utility_lineup_votes_stddev_samp_fields'] + export const isutility_lineup_votes_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_votes_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_votes_stddev_samp_fields"') + return utility_lineup_votes_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_votes_sum_fields_possibleTypes: string[] = ['utility_lineup_votes_sum_fields'] + export const isutility_lineup_votes_sum_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_votes_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_votes_sum_fields"') + return utility_lineup_votes_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_votes_var_pop_fields_possibleTypes: string[] = ['utility_lineup_votes_var_pop_fields'] + export const isutility_lineup_votes_var_pop_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_votes_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_votes_var_pop_fields"') + return utility_lineup_votes_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_votes_var_samp_fields_possibleTypes: string[] = ['utility_lineup_votes_var_samp_fields'] + export const isutility_lineup_votes_var_samp_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_votes_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_votes_var_samp_fields"') + return utility_lineup_votes_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineup_votes_variance_fields_possibleTypes: string[] = ['utility_lineup_votes_variance_fields'] + export const isutility_lineup_votes_variance_fields = (obj?: { __typename?: any } | null): obj is utility_lineup_votes_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineup_votes_variance_fields"') + return utility_lineup_votes_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineups_possibleTypes: string[] = ['utility_lineups'] + export const isutility_lineups = (obj?: { __typename?: any } | null): obj is utility_lineups => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineups"') + return utility_lineups_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineups_aggregate_possibleTypes: string[] = ['utility_lineups_aggregate'] + export const isutility_lineups_aggregate = (obj?: { __typename?: any } | null): obj is utility_lineups_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineups_aggregate"') + return utility_lineups_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineups_aggregate_fields_possibleTypes: string[] = ['utility_lineups_aggregate_fields'] + export const isutility_lineups_aggregate_fields = (obj?: { __typename?: any } | null): obj is utility_lineups_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineups_aggregate_fields"') + return utility_lineups_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineups_avg_fields_possibleTypes: string[] = ['utility_lineups_avg_fields'] + export const isutility_lineups_avg_fields = (obj?: { __typename?: any } | null): obj is utility_lineups_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineups_avg_fields"') + return utility_lineups_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineups_max_fields_possibleTypes: string[] = ['utility_lineups_max_fields'] + export const isutility_lineups_max_fields = (obj?: { __typename?: any } | null): obj is utility_lineups_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineups_max_fields"') + return utility_lineups_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineups_min_fields_possibleTypes: string[] = ['utility_lineups_min_fields'] + export const isutility_lineups_min_fields = (obj?: { __typename?: any } | null): obj is utility_lineups_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineups_min_fields"') + return utility_lineups_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineups_mutation_response_possibleTypes: string[] = ['utility_lineups_mutation_response'] + export const isutility_lineups_mutation_response = (obj?: { __typename?: any } | null): obj is utility_lineups_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineups_mutation_response"') + return utility_lineups_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineups_stddev_fields_possibleTypes: string[] = ['utility_lineups_stddev_fields'] + export const isutility_lineups_stddev_fields = (obj?: { __typename?: any } | null): obj is utility_lineups_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineups_stddev_fields"') + return utility_lineups_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineups_stddev_pop_fields_possibleTypes: string[] = ['utility_lineups_stddev_pop_fields'] + export const isutility_lineups_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is utility_lineups_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineups_stddev_pop_fields"') + return utility_lineups_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineups_stddev_samp_fields_possibleTypes: string[] = ['utility_lineups_stddev_samp_fields'] + export const isutility_lineups_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is utility_lineups_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineups_stddev_samp_fields"') + return utility_lineups_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineups_sum_fields_possibleTypes: string[] = ['utility_lineups_sum_fields'] + export const isutility_lineups_sum_fields = (obj?: { __typename?: any } | null): obj is utility_lineups_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineups_sum_fields"') + return utility_lineups_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineups_var_pop_fields_possibleTypes: string[] = ['utility_lineups_var_pop_fields'] + export const isutility_lineups_var_pop_fields = (obj?: { __typename?: any } | null): obj is utility_lineups_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineups_var_pop_fields"') + return utility_lineups_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineups_var_samp_fields_possibleTypes: string[] = ['utility_lineups_var_samp_fields'] + export const isutility_lineups_var_samp_fields = (obj?: { __typename?: any } | null): obj is utility_lineups_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineups_var_samp_fields"') + return utility_lineups_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_lineups_variance_fields_possibleTypes: string[] = ['utility_lineups_variance_fields'] + export const isutility_lineups_variance_fields = (obj?: { __typename?: any } | null): obj is utility_lineups_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_lineups_variance_fields"') + return utility_lineups_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_meta_lineups_possibleTypes: string[] = ['utility_meta_lineups'] + export const isutility_meta_lineups = (obj?: { __typename?: any } | null): obj is utility_meta_lineups => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_meta_lineups"') + return utility_meta_lineups_possibleTypes.includes(obj.__typename) + } + + + + const utility_meta_lineups_aggregate_possibleTypes: string[] = ['utility_meta_lineups_aggregate'] + export const isutility_meta_lineups_aggregate = (obj?: { __typename?: any } | null): obj is utility_meta_lineups_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_meta_lineups_aggregate"') + return utility_meta_lineups_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const utility_meta_lineups_aggregate_fields_possibleTypes: string[] = ['utility_meta_lineups_aggregate_fields'] + export const isutility_meta_lineups_aggregate_fields = (obj?: { __typename?: any } | null): obj is utility_meta_lineups_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_meta_lineups_aggregate_fields"') + return utility_meta_lineups_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_meta_lineups_avg_fields_possibleTypes: string[] = ['utility_meta_lineups_avg_fields'] + export const isutility_meta_lineups_avg_fields = (obj?: { __typename?: any } | null): obj is utility_meta_lineups_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_meta_lineups_avg_fields"') + return utility_meta_lineups_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_meta_lineups_max_fields_possibleTypes: string[] = ['utility_meta_lineups_max_fields'] + export const isutility_meta_lineups_max_fields = (obj?: { __typename?: any } | null): obj is utility_meta_lineups_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_meta_lineups_max_fields"') + return utility_meta_lineups_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_meta_lineups_min_fields_possibleTypes: string[] = ['utility_meta_lineups_min_fields'] + export const isutility_meta_lineups_min_fields = (obj?: { __typename?: any } | null): obj is utility_meta_lineups_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_meta_lineups_min_fields"') + return utility_meta_lineups_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_meta_lineups_mutation_response_possibleTypes: string[] = ['utility_meta_lineups_mutation_response'] + export const isutility_meta_lineups_mutation_response = (obj?: { __typename?: any } | null): obj is utility_meta_lineups_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_meta_lineups_mutation_response"') + return utility_meta_lineups_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const utility_meta_lineups_stddev_fields_possibleTypes: string[] = ['utility_meta_lineups_stddev_fields'] + export const isutility_meta_lineups_stddev_fields = (obj?: { __typename?: any } | null): obj is utility_meta_lineups_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_meta_lineups_stddev_fields"') + return utility_meta_lineups_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_meta_lineups_stddev_pop_fields_possibleTypes: string[] = ['utility_meta_lineups_stddev_pop_fields'] + export const isutility_meta_lineups_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is utility_meta_lineups_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_meta_lineups_stddev_pop_fields"') + return utility_meta_lineups_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_meta_lineups_stddev_samp_fields_possibleTypes: string[] = ['utility_meta_lineups_stddev_samp_fields'] + export const isutility_meta_lineups_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is utility_meta_lineups_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_meta_lineups_stddev_samp_fields"') + return utility_meta_lineups_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_meta_lineups_sum_fields_possibleTypes: string[] = ['utility_meta_lineups_sum_fields'] + export const isutility_meta_lineups_sum_fields = (obj?: { __typename?: any } | null): obj is utility_meta_lineups_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_meta_lineups_sum_fields"') + return utility_meta_lineups_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_meta_lineups_var_pop_fields_possibleTypes: string[] = ['utility_meta_lineups_var_pop_fields'] + export const isutility_meta_lineups_var_pop_fields = (obj?: { __typename?: any } | null): obj is utility_meta_lineups_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_meta_lineups_var_pop_fields"') + return utility_meta_lineups_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_meta_lineups_var_samp_fields_possibleTypes: string[] = ['utility_meta_lineups_var_samp_fields'] + export const isutility_meta_lineups_var_samp_fields = (obj?: { __typename?: any } | null): obj is utility_meta_lineups_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_meta_lineups_var_samp_fields"') + return utility_meta_lineups_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_meta_lineups_variance_fields_possibleTypes: string[] = ['utility_meta_lineups_variance_fields'] + export const isutility_meta_lineups_variance_fields = (obj?: { __typename?: any } | null): obj is utility_meta_lineups_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_meta_lineups_variance_fields"') + return utility_meta_lineups_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_playbook_steps_possibleTypes: string[] = ['utility_playbook_steps'] + export const isutility_playbook_steps = (obj?: { __typename?: any } | null): obj is utility_playbook_steps => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbook_steps"') + return utility_playbook_steps_possibleTypes.includes(obj.__typename) + } + + + + const utility_playbook_steps_aggregate_possibleTypes: string[] = ['utility_playbook_steps_aggregate'] + export const isutility_playbook_steps_aggregate = (obj?: { __typename?: any } | null): obj is utility_playbook_steps_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbook_steps_aggregate"') + return utility_playbook_steps_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const utility_playbook_steps_aggregate_fields_possibleTypes: string[] = ['utility_playbook_steps_aggregate_fields'] + export const isutility_playbook_steps_aggregate_fields = (obj?: { __typename?: any } | null): obj is utility_playbook_steps_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbook_steps_aggregate_fields"') + return utility_playbook_steps_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_playbook_steps_avg_fields_possibleTypes: string[] = ['utility_playbook_steps_avg_fields'] + export const isutility_playbook_steps_avg_fields = (obj?: { __typename?: any } | null): obj is utility_playbook_steps_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbook_steps_avg_fields"') + return utility_playbook_steps_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_playbook_steps_max_fields_possibleTypes: string[] = ['utility_playbook_steps_max_fields'] + export const isutility_playbook_steps_max_fields = (obj?: { __typename?: any } | null): obj is utility_playbook_steps_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbook_steps_max_fields"') + return utility_playbook_steps_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_playbook_steps_min_fields_possibleTypes: string[] = ['utility_playbook_steps_min_fields'] + export const isutility_playbook_steps_min_fields = (obj?: { __typename?: any } | null): obj is utility_playbook_steps_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbook_steps_min_fields"') + return utility_playbook_steps_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_playbook_steps_mutation_response_possibleTypes: string[] = ['utility_playbook_steps_mutation_response'] + export const isutility_playbook_steps_mutation_response = (obj?: { __typename?: any } | null): obj is utility_playbook_steps_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbook_steps_mutation_response"') + return utility_playbook_steps_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const utility_playbook_steps_stddev_fields_possibleTypes: string[] = ['utility_playbook_steps_stddev_fields'] + export const isutility_playbook_steps_stddev_fields = (obj?: { __typename?: any } | null): obj is utility_playbook_steps_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbook_steps_stddev_fields"') + return utility_playbook_steps_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_playbook_steps_stddev_pop_fields_possibleTypes: string[] = ['utility_playbook_steps_stddev_pop_fields'] + export const isutility_playbook_steps_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is utility_playbook_steps_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbook_steps_stddev_pop_fields"') + return utility_playbook_steps_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_playbook_steps_stddev_samp_fields_possibleTypes: string[] = ['utility_playbook_steps_stddev_samp_fields'] + export const isutility_playbook_steps_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is utility_playbook_steps_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbook_steps_stddev_samp_fields"') + return utility_playbook_steps_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_playbook_steps_sum_fields_possibleTypes: string[] = ['utility_playbook_steps_sum_fields'] + export const isutility_playbook_steps_sum_fields = (obj?: { __typename?: any } | null): obj is utility_playbook_steps_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbook_steps_sum_fields"') + return utility_playbook_steps_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_playbook_steps_var_pop_fields_possibleTypes: string[] = ['utility_playbook_steps_var_pop_fields'] + export const isutility_playbook_steps_var_pop_fields = (obj?: { __typename?: any } | null): obj is utility_playbook_steps_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbook_steps_var_pop_fields"') + return utility_playbook_steps_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_playbook_steps_var_samp_fields_possibleTypes: string[] = ['utility_playbook_steps_var_samp_fields'] + export const isutility_playbook_steps_var_samp_fields = (obj?: { __typename?: any } | null): obj is utility_playbook_steps_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbook_steps_var_samp_fields"') + return utility_playbook_steps_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_playbook_steps_variance_fields_possibleTypes: string[] = ['utility_playbook_steps_variance_fields'] + export const isutility_playbook_steps_variance_fields = (obj?: { __typename?: any } | null): obj is utility_playbook_steps_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbook_steps_variance_fields"') + return utility_playbook_steps_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_playbooks_possibleTypes: string[] = ['utility_playbooks'] + export const isutility_playbooks = (obj?: { __typename?: any } | null): obj is utility_playbooks => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbooks"') + return utility_playbooks_possibleTypes.includes(obj.__typename) + } + + + + const utility_playbooks_aggregate_possibleTypes: string[] = ['utility_playbooks_aggregate'] + export const isutility_playbooks_aggregate = (obj?: { __typename?: any } | null): obj is utility_playbooks_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbooks_aggregate"') + return utility_playbooks_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const utility_playbooks_aggregate_fields_possibleTypes: string[] = ['utility_playbooks_aggregate_fields'] + export const isutility_playbooks_aggregate_fields = (obj?: { __typename?: any } | null): obj is utility_playbooks_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbooks_aggregate_fields"') + return utility_playbooks_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_playbooks_avg_fields_possibleTypes: string[] = ['utility_playbooks_avg_fields'] + export const isutility_playbooks_avg_fields = (obj?: { __typename?: any } | null): obj is utility_playbooks_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbooks_avg_fields"') + return utility_playbooks_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_playbooks_max_fields_possibleTypes: string[] = ['utility_playbooks_max_fields'] + export const isutility_playbooks_max_fields = (obj?: { __typename?: any } | null): obj is utility_playbooks_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbooks_max_fields"') + return utility_playbooks_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_playbooks_min_fields_possibleTypes: string[] = ['utility_playbooks_min_fields'] + export const isutility_playbooks_min_fields = (obj?: { __typename?: any } | null): obj is utility_playbooks_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbooks_min_fields"') + return utility_playbooks_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_playbooks_mutation_response_possibleTypes: string[] = ['utility_playbooks_mutation_response'] + export const isutility_playbooks_mutation_response = (obj?: { __typename?: any } | null): obj is utility_playbooks_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbooks_mutation_response"') + return utility_playbooks_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const utility_playbooks_stddev_fields_possibleTypes: string[] = ['utility_playbooks_stddev_fields'] + export const isutility_playbooks_stddev_fields = (obj?: { __typename?: any } | null): obj is utility_playbooks_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbooks_stddev_fields"') + return utility_playbooks_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_playbooks_stddev_pop_fields_possibleTypes: string[] = ['utility_playbooks_stddev_pop_fields'] + export const isutility_playbooks_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is utility_playbooks_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbooks_stddev_pop_fields"') + return utility_playbooks_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_playbooks_stddev_samp_fields_possibleTypes: string[] = ['utility_playbooks_stddev_samp_fields'] + export const isutility_playbooks_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is utility_playbooks_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbooks_stddev_samp_fields"') + return utility_playbooks_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_playbooks_sum_fields_possibleTypes: string[] = ['utility_playbooks_sum_fields'] + export const isutility_playbooks_sum_fields = (obj?: { __typename?: any } | null): obj is utility_playbooks_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbooks_sum_fields"') + return utility_playbooks_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_playbooks_var_pop_fields_possibleTypes: string[] = ['utility_playbooks_var_pop_fields'] + export const isutility_playbooks_var_pop_fields = (obj?: { __typename?: any } | null): obj is utility_playbooks_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbooks_var_pop_fields"') + return utility_playbooks_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_playbooks_var_samp_fields_possibleTypes: string[] = ['utility_playbooks_var_samp_fields'] + export const isutility_playbooks_var_samp_fields = (obj?: { __typename?: any } | null): obj is utility_playbooks_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbooks_var_samp_fields"') + return utility_playbooks_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_playbooks_variance_fields_possibleTypes: string[] = ['utility_playbooks_variance_fields'] + export const isutility_playbooks_variance_fields = (obj?: { __typename?: any } | null): obj is utility_playbooks_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_playbooks_variance_fields"') + return utility_playbooks_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_practice_invites_possibleTypes: string[] = ['utility_practice_invites'] + export const isutility_practice_invites = (obj?: { __typename?: any } | null): obj is utility_practice_invites => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_invites"') + return utility_practice_invites_possibleTypes.includes(obj.__typename) + } + + + + const utility_practice_invites_aggregate_possibleTypes: string[] = ['utility_practice_invites_aggregate'] + export const isutility_practice_invites_aggregate = (obj?: { __typename?: any } | null): obj is utility_practice_invites_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_invites_aggregate"') + return utility_practice_invites_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const utility_practice_invites_aggregate_fields_possibleTypes: string[] = ['utility_practice_invites_aggregate_fields'] + export const isutility_practice_invites_aggregate_fields = (obj?: { __typename?: any } | null): obj is utility_practice_invites_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_invites_aggregate_fields"') + return utility_practice_invites_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_practice_invites_avg_fields_possibleTypes: string[] = ['utility_practice_invites_avg_fields'] + export const isutility_practice_invites_avg_fields = (obj?: { __typename?: any } | null): obj is utility_practice_invites_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_invites_avg_fields"') + return utility_practice_invites_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_practice_invites_max_fields_possibleTypes: string[] = ['utility_practice_invites_max_fields'] + export const isutility_practice_invites_max_fields = (obj?: { __typename?: any } | null): obj is utility_practice_invites_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_invites_max_fields"') + return utility_practice_invites_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_practice_invites_min_fields_possibleTypes: string[] = ['utility_practice_invites_min_fields'] + export const isutility_practice_invites_min_fields = (obj?: { __typename?: any } | null): obj is utility_practice_invites_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_invites_min_fields"') + return utility_practice_invites_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_practice_invites_mutation_response_possibleTypes: string[] = ['utility_practice_invites_mutation_response'] + export const isutility_practice_invites_mutation_response = (obj?: { __typename?: any } | null): obj is utility_practice_invites_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_invites_mutation_response"') + return utility_practice_invites_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const utility_practice_invites_stddev_fields_possibleTypes: string[] = ['utility_practice_invites_stddev_fields'] + export const isutility_practice_invites_stddev_fields = (obj?: { __typename?: any } | null): obj is utility_practice_invites_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_invites_stddev_fields"') + return utility_practice_invites_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_practice_invites_stddev_pop_fields_possibleTypes: string[] = ['utility_practice_invites_stddev_pop_fields'] + export const isutility_practice_invites_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is utility_practice_invites_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_invites_stddev_pop_fields"') + return utility_practice_invites_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_practice_invites_stddev_samp_fields_possibleTypes: string[] = ['utility_practice_invites_stddev_samp_fields'] + export const isutility_practice_invites_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is utility_practice_invites_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_invites_stddev_samp_fields"') + return utility_practice_invites_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_practice_invites_sum_fields_possibleTypes: string[] = ['utility_practice_invites_sum_fields'] + export const isutility_practice_invites_sum_fields = (obj?: { __typename?: any } | null): obj is utility_practice_invites_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_invites_sum_fields"') + return utility_practice_invites_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_practice_invites_var_pop_fields_possibleTypes: string[] = ['utility_practice_invites_var_pop_fields'] + export const isutility_practice_invites_var_pop_fields = (obj?: { __typename?: any } | null): obj is utility_practice_invites_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_invites_var_pop_fields"') + return utility_practice_invites_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_practice_invites_var_samp_fields_possibleTypes: string[] = ['utility_practice_invites_var_samp_fields'] + export const isutility_practice_invites_var_samp_fields = (obj?: { __typename?: any } | null): obj is utility_practice_invites_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_invites_var_samp_fields"') + return utility_practice_invites_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_practice_invites_variance_fields_possibleTypes: string[] = ['utility_practice_invites_variance_fields'] + export const isutility_practice_invites_variance_fields = (obj?: { __typename?: any } | null): obj is utility_practice_invites_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_invites_variance_fields"') + return utility_practice_invites_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_practice_sessions_possibleTypes: string[] = ['utility_practice_sessions'] + export const isutility_practice_sessions = (obj?: { __typename?: any } | null): obj is utility_practice_sessions => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_sessions"') + return utility_practice_sessions_possibleTypes.includes(obj.__typename) + } + + + + const utility_practice_sessions_aggregate_possibleTypes: string[] = ['utility_practice_sessions_aggregate'] + export const isutility_practice_sessions_aggregate = (obj?: { __typename?: any } | null): obj is utility_practice_sessions_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_sessions_aggregate"') + return utility_practice_sessions_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const utility_practice_sessions_aggregate_fields_possibleTypes: string[] = ['utility_practice_sessions_aggregate_fields'] + export const isutility_practice_sessions_aggregate_fields = (obj?: { __typename?: any } | null): obj is utility_practice_sessions_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_sessions_aggregate_fields"') + return utility_practice_sessions_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_practice_sessions_avg_fields_possibleTypes: string[] = ['utility_practice_sessions_avg_fields'] + export const isutility_practice_sessions_avg_fields = (obj?: { __typename?: any } | null): obj is utility_practice_sessions_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_sessions_avg_fields"') + return utility_practice_sessions_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_practice_sessions_max_fields_possibleTypes: string[] = ['utility_practice_sessions_max_fields'] + export const isutility_practice_sessions_max_fields = (obj?: { __typename?: any } | null): obj is utility_practice_sessions_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_sessions_max_fields"') + return utility_practice_sessions_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_practice_sessions_min_fields_possibleTypes: string[] = ['utility_practice_sessions_min_fields'] + export const isutility_practice_sessions_min_fields = (obj?: { __typename?: any } | null): obj is utility_practice_sessions_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_sessions_min_fields"') + return utility_practice_sessions_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_practice_sessions_mutation_response_possibleTypes: string[] = ['utility_practice_sessions_mutation_response'] + export const isutility_practice_sessions_mutation_response = (obj?: { __typename?: any } | null): obj is utility_practice_sessions_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_sessions_mutation_response"') + return utility_practice_sessions_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const utility_practice_sessions_stddev_fields_possibleTypes: string[] = ['utility_practice_sessions_stddev_fields'] + export const isutility_practice_sessions_stddev_fields = (obj?: { __typename?: any } | null): obj is utility_practice_sessions_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_sessions_stddev_fields"') + return utility_practice_sessions_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_practice_sessions_stddev_pop_fields_possibleTypes: string[] = ['utility_practice_sessions_stddev_pop_fields'] + export const isutility_practice_sessions_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is utility_practice_sessions_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_sessions_stddev_pop_fields"') + return utility_practice_sessions_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_practice_sessions_stddev_samp_fields_possibleTypes: string[] = ['utility_practice_sessions_stddev_samp_fields'] + export const isutility_practice_sessions_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is utility_practice_sessions_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_sessions_stddev_samp_fields"') + return utility_practice_sessions_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_practice_sessions_sum_fields_possibleTypes: string[] = ['utility_practice_sessions_sum_fields'] + export const isutility_practice_sessions_sum_fields = (obj?: { __typename?: any } | null): obj is utility_practice_sessions_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_sessions_sum_fields"') + return utility_practice_sessions_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_practice_sessions_var_pop_fields_possibleTypes: string[] = ['utility_practice_sessions_var_pop_fields'] + export const isutility_practice_sessions_var_pop_fields = (obj?: { __typename?: any } | null): obj is utility_practice_sessions_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_sessions_var_pop_fields"') + return utility_practice_sessions_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_practice_sessions_var_samp_fields_possibleTypes: string[] = ['utility_practice_sessions_var_samp_fields'] + export const isutility_practice_sessions_var_samp_fields = (obj?: { __typename?: any } | null): obj is utility_practice_sessions_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_sessions_var_samp_fields"') + return utility_practice_sessions_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const utility_practice_sessions_variance_fields_possibleTypes: string[] = ['utility_practice_sessions_variance_fields'] + export const isutility_practice_sessions_variance_fields = (obj?: { __typename?: any } | null): obj is utility_practice_sessions_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isutility_practice_sessions_variance_fields"') + return utility_practice_sessions_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_event_player_stats_possibleTypes: string[] = ['v_event_player_stats'] + export const isv_event_player_stats = (obj?: { __typename?: any } | null): obj is v_event_player_stats => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats"') + return v_event_player_stats_possibleTypes.includes(obj.__typename) + } + + + + const v_event_player_stats_aggregate_possibleTypes: string[] = ['v_event_player_stats_aggregate'] + export const isv_event_player_stats_aggregate = (obj?: { __typename?: any } | null): obj is v_event_player_stats_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_aggregate"') + return v_event_player_stats_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const v_event_player_stats_aggregate_fields_possibleTypes: string[] = ['v_event_player_stats_aggregate_fields'] + export const isv_event_player_stats_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_event_player_stats_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_aggregate_fields"') + return v_event_player_stats_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_event_player_stats_avg_fields_possibleTypes: string[] = ['v_event_player_stats_avg_fields'] + export const isv_event_player_stats_avg_fields = (obj?: { __typename?: any } | null): obj is v_event_player_stats_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_avg_fields"') + return v_event_player_stats_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_event_player_stats_max_fields_possibleTypes: string[] = ['v_event_player_stats_max_fields'] + export const isv_event_player_stats_max_fields = (obj?: { __typename?: any } | null): obj is v_event_player_stats_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_max_fields"') + return v_event_player_stats_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_event_player_stats_min_fields_possibleTypes: string[] = ['v_event_player_stats_min_fields'] + export const isv_event_player_stats_min_fields = (obj?: { __typename?: any } | null): obj is v_event_player_stats_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_min_fields"') + return v_event_player_stats_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_event_player_stats_stddev_fields_possibleTypes: string[] = ['v_event_player_stats_stddev_fields'] + export const isv_event_player_stats_stddev_fields = (obj?: { __typename?: any } | null): obj is v_event_player_stats_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_stddev_fields"') + return v_event_player_stats_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_event_player_stats_stddev_pop_fields_possibleTypes: string[] = ['v_event_player_stats_stddev_pop_fields'] + export const isv_event_player_stats_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_event_player_stats_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_stddev_pop_fields"') + return v_event_player_stats_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_event_player_stats_stddev_samp_fields_possibleTypes: string[] = ['v_event_player_stats_stddev_samp_fields'] + export const isv_event_player_stats_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_event_player_stats_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_stddev_samp_fields"') + return v_event_player_stats_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_event_player_stats_sum_fields_possibleTypes: string[] = ['v_event_player_stats_sum_fields'] + export const isv_event_player_stats_sum_fields = (obj?: { __typename?: any } | null): obj is v_event_player_stats_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_sum_fields"') + return v_event_player_stats_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_event_player_stats_var_pop_fields_possibleTypes: string[] = ['v_event_player_stats_var_pop_fields'] + export const isv_event_player_stats_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_event_player_stats_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_var_pop_fields"') + return v_event_player_stats_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_event_player_stats_var_samp_fields_possibleTypes: string[] = ['v_event_player_stats_var_samp_fields'] + export const isv_event_player_stats_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_event_player_stats_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_var_samp_fields"') + return v_event_player_stats_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_event_player_stats_variance_fields_possibleTypes: string[] = ['v_event_player_stats_variance_fields'] + export const isv_event_player_stats_variance_fields = (obj?: { __typename?: any } | null): obj is v_event_player_stats_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_variance_fields"') + return v_event_player_stats_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_gpu_pool_status_possibleTypes: string[] = ['v_gpu_pool_status'] + export const isv_gpu_pool_status = (obj?: { __typename?: any } | null): obj is v_gpu_pool_status => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_gpu_pool_status"') + return v_gpu_pool_status_possibleTypes.includes(obj.__typename) + } + + + + const v_gpu_pool_status_aggregate_possibleTypes: string[] = ['v_gpu_pool_status_aggregate'] + export const isv_gpu_pool_status_aggregate = (obj?: { __typename?: any } | null): obj is v_gpu_pool_status_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_gpu_pool_status_aggregate"') + return v_gpu_pool_status_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const v_gpu_pool_status_aggregate_fields_possibleTypes: string[] = ['v_gpu_pool_status_aggregate_fields'] + export const isv_gpu_pool_status_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_gpu_pool_status_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_gpu_pool_status_aggregate_fields"') + return v_gpu_pool_status_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_gpu_pool_status_avg_fields_possibleTypes: string[] = ['v_gpu_pool_status_avg_fields'] + export const isv_gpu_pool_status_avg_fields = (obj?: { __typename?: any } | null): obj is v_gpu_pool_status_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_gpu_pool_status_avg_fields"') + return v_gpu_pool_status_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_gpu_pool_status_max_fields_possibleTypes: string[] = ['v_gpu_pool_status_max_fields'] + export const isv_gpu_pool_status_max_fields = (obj?: { __typename?: any } | null): obj is v_gpu_pool_status_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_gpu_pool_status_max_fields"') + return v_gpu_pool_status_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_gpu_pool_status_min_fields_possibleTypes: string[] = ['v_gpu_pool_status_min_fields'] + export const isv_gpu_pool_status_min_fields = (obj?: { __typename?: any } | null): obj is v_gpu_pool_status_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_gpu_pool_status_min_fields"') + return v_gpu_pool_status_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_gpu_pool_status_stddev_fields_possibleTypes: string[] = ['v_gpu_pool_status_stddev_fields'] + export const isv_gpu_pool_status_stddev_fields = (obj?: { __typename?: any } | null): obj is v_gpu_pool_status_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_gpu_pool_status_stddev_fields"') + return v_gpu_pool_status_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_gpu_pool_status_stddev_pop_fields_possibleTypes: string[] = ['v_gpu_pool_status_stddev_pop_fields'] + export const isv_gpu_pool_status_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_gpu_pool_status_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_gpu_pool_status_stddev_pop_fields"') + return v_gpu_pool_status_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_gpu_pool_status_stddev_samp_fields_possibleTypes: string[] = ['v_gpu_pool_status_stddev_samp_fields'] + export const isv_gpu_pool_status_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_gpu_pool_status_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_gpu_pool_status_stddev_samp_fields"') + return v_gpu_pool_status_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_gpu_pool_status_sum_fields_possibleTypes: string[] = ['v_gpu_pool_status_sum_fields'] + export const isv_gpu_pool_status_sum_fields = (obj?: { __typename?: any } | null): obj is v_gpu_pool_status_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_gpu_pool_status_sum_fields"') + return v_gpu_pool_status_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_gpu_pool_status_var_pop_fields_possibleTypes: string[] = ['v_gpu_pool_status_var_pop_fields'] + export const isv_gpu_pool_status_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_gpu_pool_status_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_gpu_pool_status_var_pop_fields"') + return v_gpu_pool_status_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_gpu_pool_status_var_samp_fields_possibleTypes: string[] = ['v_gpu_pool_status_var_samp_fields'] + export const isv_gpu_pool_status_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_gpu_pool_status_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_gpu_pool_status_var_samp_fields"') + return v_gpu_pool_status_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_gpu_pool_status_variance_fields_possibleTypes: string[] = ['v_gpu_pool_status_variance_fields'] + export const isv_gpu_pool_status_variance_fields = (obj?: { __typename?: any } | null): obj is v_gpu_pool_status_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_gpu_pool_status_variance_fields"') + return v_gpu_pool_status_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_league_division_standings_possibleTypes: string[] = ['v_league_division_standings'] + export const isv_league_division_standings = (obj?: { __typename?: any } | null): obj is v_league_division_standings => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_division_standings"') + return v_league_division_standings_possibleTypes.includes(obj.__typename) + } + + + + const v_league_division_standings_aggregate_possibleTypes: string[] = ['v_league_division_standings_aggregate'] + export const isv_league_division_standings_aggregate = (obj?: { __typename?: any } | null): obj is v_league_division_standings_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_division_standings_aggregate"') + return v_league_division_standings_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const v_league_division_standings_aggregate_fields_possibleTypes: string[] = ['v_league_division_standings_aggregate_fields'] + export const isv_league_division_standings_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_league_division_standings_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_division_standings_aggregate_fields"') + return v_league_division_standings_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_league_division_standings_avg_fields_possibleTypes: string[] = ['v_league_division_standings_avg_fields'] + export const isv_league_division_standings_avg_fields = (obj?: { __typename?: any } | null): obj is v_league_division_standings_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_division_standings_avg_fields"') + return v_league_division_standings_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_league_division_standings_max_fields_possibleTypes: string[] = ['v_league_division_standings_max_fields'] + export const isv_league_division_standings_max_fields = (obj?: { __typename?: any } | null): obj is v_league_division_standings_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_division_standings_max_fields"') + return v_league_division_standings_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_league_division_standings_min_fields_possibleTypes: string[] = ['v_league_division_standings_min_fields'] + export const isv_league_division_standings_min_fields = (obj?: { __typename?: any } | null): obj is v_league_division_standings_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_division_standings_min_fields"') + return v_league_division_standings_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_league_division_standings_stddev_fields_possibleTypes: string[] = ['v_league_division_standings_stddev_fields'] + export const isv_league_division_standings_stddev_fields = (obj?: { __typename?: any } | null): obj is v_league_division_standings_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_division_standings_stddev_fields"') + return v_league_division_standings_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_league_division_standings_stddev_pop_fields_possibleTypes: string[] = ['v_league_division_standings_stddev_pop_fields'] + export const isv_league_division_standings_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_league_division_standings_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_division_standings_stddev_pop_fields"') + return v_league_division_standings_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_league_division_standings_stddev_samp_fields_possibleTypes: string[] = ['v_league_division_standings_stddev_samp_fields'] + export const isv_league_division_standings_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_league_division_standings_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_division_standings_stddev_samp_fields"') + return v_league_division_standings_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_league_division_standings_sum_fields_possibleTypes: string[] = ['v_league_division_standings_sum_fields'] + export const isv_league_division_standings_sum_fields = (obj?: { __typename?: any } | null): obj is v_league_division_standings_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_division_standings_sum_fields"') + return v_league_division_standings_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_league_division_standings_var_pop_fields_possibleTypes: string[] = ['v_league_division_standings_var_pop_fields'] + export const isv_league_division_standings_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_league_division_standings_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_division_standings_var_pop_fields"') + return v_league_division_standings_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_league_division_standings_var_samp_fields_possibleTypes: string[] = ['v_league_division_standings_var_samp_fields'] + export const isv_league_division_standings_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_league_division_standings_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_division_standings_var_samp_fields"') + return v_league_division_standings_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_league_division_standings_variance_fields_possibleTypes: string[] = ['v_league_division_standings_variance_fields'] + export const isv_league_division_standings_variance_fields = (obj?: { __typename?: any } | null): obj is v_league_division_standings_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_division_standings_variance_fields"') + return v_league_division_standings_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_league_season_player_stats_possibleTypes: string[] = ['v_league_season_player_stats'] + export const isv_league_season_player_stats = (obj?: { __typename?: any } | null): obj is v_league_season_player_stats => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_season_player_stats"') + return v_league_season_player_stats_possibleTypes.includes(obj.__typename) + } + + + + const v_league_season_player_stats_aggregate_possibleTypes: string[] = ['v_league_season_player_stats_aggregate'] + export const isv_league_season_player_stats_aggregate = (obj?: { __typename?: any } | null): obj is v_league_season_player_stats_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_season_player_stats_aggregate"') + return v_league_season_player_stats_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const v_league_season_player_stats_aggregate_fields_possibleTypes: string[] = ['v_league_season_player_stats_aggregate_fields'] + export const isv_league_season_player_stats_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_league_season_player_stats_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_season_player_stats_aggregate_fields"') + return v_league_season_player_stats_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_league_season_player_stats_avg_fields_possibleTypes: string[] = ['v_league_season_player_stats_avg_fields'] + export const isv_league_season_player_stats_avg_fields = (obj?: { __typename?: any } | null): obj is v_league_season_player_stats_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_season_player_stats_avg_fields"') + return v_league_season_player_stats_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_league_season_player_stats_max_fields_possibleTypes: string[] = ['v_league_season_player_stats_max_fields'] + export const isv_league_season_player_stats_max_fields = (obj?: { __typename?: any } | null): obj is v_league_season_player_stats_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_season_player_stats_max_fields"') + return v_league_season_player_stats_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_league_season_player_stats_min_fields_possibleTypes: string[] = ['v_league_season_player_stats_min_fields'] + export const isv_league_season_player_stats_min_fields = (obj?: { __typename?: any } | null): obj is v_league_season_player_stats_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_season_player_stats_min_fields"') + return v_league_season_player_stats_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_league_season_player_stats_stddev_fields_possibleTypes: string[] = ['v_league_season_player_stats_stddev_fields'] + export const isv_league_season_player_stats_stddev_fields = (obj?: { __typename?: any } | null): obj is v_league_season_player_stats_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_season_player_stats_stddev_fields"') + return v_league_season_player_stats_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_league_season_player_stats_stddev_pop_fields_possibleTypes: string[] = ['v_league_season_player_stats_stddev_pop_fields'] + export const isv_league_season_player_stats_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_league_season_player_stats_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_season_player_stats_stddev_pop_fields"') + return v_league_season_player_stats_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_league_season_player_stats_stddev_samp_fields_possibleTypes: string[] = ['v_league_season_player_stats_stddev_samp_fields'] + export const isv_league_season_player_stats_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_league_season_player_stats_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_season_player_stats_stddev_samp_fields"') + return v_league_season_player_stats_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_league_season_player_stats_sum_fields_possibleTypes: string[] = ['v_league_season_player_stats_sum_fields'] + export const isv_league_season_player_stats_sum_fields = (obj?: { __typename?: any } | null): obj is v_league_season_player_stats_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_season_player_stats_sum_fields"') + return v_league_season_player_stats_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_league_season_player_stats_var_pop_fields_possibleTypes: string[] = ['v_league_season_player_stats_var_pop_fields'] + export const isv_league_season_player_stats_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_league_season_player_stats_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_season_player_stats_var_pop_fields"') + return v_league_season_player_stats_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_league_season_player_stats_var_samp_fields_possibleTypes: string[] = ['v_league_season_player_stats_var_samp_fields'] + export const isv_league_season_player_stats_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_league_season_player_stats_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_season_player_stats_var_samp_fields"') + return v_league_season_player_stats_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_league_season_player_stats_variance_fields_possibleTypes: string[] = ['v_league_season_player_stats_variance_fields'] + export const isv_league_season_player_stats_variance_fields = (obj?: { __typename?: any } | null): obj is v_league_season_player_stats_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_league_season_player_stats_variance_fields"') + return v_league_season_player_stats_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_captains_possibleTypes: string[] = ['v_match_captains'] + export const isv_match_captains = (obj?: { __typename?: any } | null): obj is v_match_captains => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_captains"') + return v_match_captains_possibleTypes.includes(obj.__typename) + } + + + + const v_match_captains_aggregate_possibleTypes: string[] = ['v_match_captains_aggregate'] + export const isv_match_captains_aggregate = (obj?: { __typename?: any } | null): obj is v_match_captains_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_captains_aggregate"') + return v_match_captains_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const v_match_captains_aggregate_fields_possibleTypes: string[] = ['v_match_captains_aggregate_fields'] + export const isv_match_captains_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_match_captains_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_captains_aggregate_fields"') + return v_match_captains_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_captains_avg_fields_possibleTypes: string[] = ['v_match_captains_avg_fields'] + export const isv_match_captains_avg_fields = (obj?: { __typename?: any } | null): obj is v_match_captains_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_captains_avg_fields"') + return v_match_captains_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_captains_max_fields_possibleTypes: string[] = ['v_match_captains_max_fields'] + export const isv_match_captains_max_fields = (obj?: { __typename?: any } | null): obj is v_match_captains_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_captains_max_fields"') + return v_match_captains_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_captains_min_fields_possibleTypes: string[] = ['v_match_captains_min_fields'] + export const isv_match_captains_min_fields = (obj?: { __typename?: any } | null): obj is v_match_captains_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_captains_min_fields"') + return v_match_captains_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_captains_mutation_response_possibleTypes: string[] = ['v_match_captains_mutation_response'] + export const isv_match_captains_mutation_response = (obj?: { __typename?: any } | null): obj is v_match_captains_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_captains_mutation_response"') + return v_match_captains_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const v_match_captains_stddev_fields_possibleTypes: string[] = ['v_match_captains_stddev_fields'] + export const isv_match_captains_stddev_fields = (obj?: { __typename?: any } | null): obj is v_match_captains_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_captains_stddev_fields"') + return v_match_captains_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_captains_stddev_pop_fields_possibleTypes: string[] = ['v_match_captains_stddev_pop_fields'] + export const isv_match_captains_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_match_captains_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_captains_stddev_pop_fields"') + return v_match_captains_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_captains_stddev_samp_fields_possibleTypes: string[] = ['v_match_captains_stddev_samp_fields'] + export const isv_match_captains_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_match_captains_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_captains_stddev_samp_fields"') + return v_match_captains_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_captains_sum_fields_possibleTypes: string[] = ['v_match_captains_sum_fields'] + export const isv_match_captains_sum_fields = (obj?: { __typename?: any } | null): obj is v_match_captains_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_captains_sum_fields"') + return v_match_captains_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_captains_var_pop_fields_possibleTypes: string[] = ['v_match_captains_var_pop_fields'] + export const isv_match_captains_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_match_captains_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_captains_var_pop_fields"') + return v_match_captains_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_captains_var_samp_fields_possibleTypes: string[] = ['v_match_captains_var_samp_fields'] + export const isv_match_captains_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_match_captains_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_captains_var_samp_fields"') + return v_match_captains_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_captains_variance_fields_possibleTypes: string[] = ['v_match_captains_variance_fields'] + export const isv_match_captains_variance_fields = (obj?: { __typename?: any } | null): obj is v_match_captains_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_captains_variance_fields"') + return v_match_captains_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_clutches_possibleTypes: string[] = ['v_match_clutches'] + export const isv_match_clutches = (obj?: { __typename?: any } | null): obj is v_match_clutches => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_clutches"') + return v_match_clutches_possibleTypes.includes(obj.__typename) + } + + + + const v_match_clutches_aggregate_possibleTypes: string[] = ['v_match_clutches_aggregate'] + export const isv_match_clutches_aggregate = (obj?: { __typename?: any } | null): obj is v_match_clutches_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_clutches_aggregate"') + return v_match_clutches_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const v_match_clutches_aggregate_fields_possibleTypes: string[] = ['v_match_clutches_aggregate_fields'] + export const isv_match_clutches_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_match_clutches_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_clutches_aggregate_fields"') + return v_match_clutches_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_clutches_avg_fields_possibleTypes: string[] = ['v_match_clutches_avg_fields'] + export const isv_match_clutches_avg_fields = (obj?: { __typename?: any } | null): obj is v_match_clutches_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_clutches_avg_fields"') + return v_match_clutches_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_clutches_max_fields_possibleTypes: string[] = ['v_match_clutches_max_fields'] + export const isv_match_clutches_max_fields = (obj?: { __typename?: any } | null): obj is v_match_clutches_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_clutches_max_fields"') + return v_match_clutches_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_clutches_min_fields_possibleTypes: string[] = ['v_match_clutches_min_fields'] + export const isv_match_clutches_min_fields = (obj?: { __typename?: any } | null): obj is v_match_clutches_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_clutches_min_fields"') + return v_match_clutches_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_clutches_stddev_fields_possibleTypes: string[] = ['v_match_clutches_stddev_fields'] + export const isv_match_clutches_stddev_fields = (obj?: { __typename?: any } | null): obj is v_match_clutches_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_clutches_stddev_fields"') + return v_match_clutches_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_clutches_stddev_pop_fields_possibleTypes: string[] = ['v_match_clutches_stddev_pop_fields'] + export const isv_match_clutches_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_match_clutches_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_clutches_stddev_pop_fields"') + return v_match_clutches_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_clutches_stddev_samp_fields_possibleTypes: string[] = ['v_match_clutches_stddev_samp_fields'] + export const isv_match_clutches_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_match_clutches_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_clutches_stddev_samp_fields"') + return v_match_clutches_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_clutches_sum_fields_possibleTypes: string[] = ['v_match_clutches_sum_fields'] + export const isv_match_clutches_sum_fields = (obj?: { __typename?: any } | null): obj is v_match_clutches_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_clutches_sum_fields"') + return v_match_clutches_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_clutches_var_pop_fields_possibleTypes: string[] = ['v_match_clutches_var_pop_fields'] + export const isv_match_clutches_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_match_clutches_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_clutches_var_pop_fields"') + return v_match_clutches_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_clutches_var_samp_fields_possibleTypes: string[] = ['v_match_clutches_var_samp_fields'] + export const isv_match_clutches_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_match_clutches_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_clutches_var_samp_fields"') + return v_match_clutches_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_clutches_variance_fields_possibleTypes: string[] = ['v_match_clutches_variance_fields'] + export const isv_match_clutches_variance_fields = (obj?: { __typename?: any } | null): obj is v_match_clutches_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_clutches_variance_fields"') + return v_match_clutches_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_kill_pairs_possibleTypes: string[] = ['v_match_kill_pairs'] + export const isv_match_kill_pairs = (obj?: { __typename?: any } | null): obj is v_match_kill_pairs => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_kill_pairs"') + return v_match_kill_pairs_possibleTypes.includes(obj.__typename) + } + + + + const v_match_kill_pairs_aggregate_possibleTypes: string[] = ['v_match_kill_pairs_aggregate'] + export const isv_match_kill_pairs_aggregate = (obj?: { __typename?: any } | null): obj is v_match_kill_pairs_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_kill_pairs_aggregate"') + return v_match_kill_pairs_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const v_match_kill_pairs_aggregate_fields_possibleTypes: string[] = ['v_match_kill_pairs_aggregate_fields'] + export const isv_match_kill_pairs_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_match_kill_pairs_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_kill_pairs_aggregate_fields"') + return v_match_kill_pairs_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_kill_pairs_avg_fields_possibleTypes: string[] = ['v_match_kill_pairs_avg_fields'] + export const isv_match_kill_pairs_avg_fields = (obj?: { __typename?: any } | null): obj is v_match_kill_pairs_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_kill_pairs_avg_fields"') + return v_match_kill_pairs_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_kill_pairs_max_fields_possibleTypes: string[] = ['v_match_kill_pairs_max_fields'] + export const isv_match_kill_pairs_max_fields = (obj?: { __typename?: any } | null): obj is v_match_kill_pairs_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_kill_pairs_max_fields"') + return v_match_kill_pairs_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_kill_pairs_min_fields_possibleTypes: string[] = ['v_match_kill_pairs_min_fields'] + export const isv_match_kill_pairs_min_fields = (obj?: { __typename?: any } | null): obj is v_match_kill_pairs_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_kill_pairs_min_fields"') + return v_match_kill_pairs_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_kill_pairs_stddev_fields_possibleTypes: string[] = ['v_match_kill_pairs_stddev_fields'] + export const isv_match_kill_pairs_stddev_fields = (obj?: { __typename?: any } | null): obj is v_match_kill_pairs_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_kill_pairs_stddev_fields"') + return v_match_kill_pairs_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_kill_pairs_stddev_pop_fields_possibleTypes: string[] = ['v_match_kill_pairs_stddev_pop_fields'] + export const isv_match_kill_pairs_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_match_kill_pairs_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_kill_pairs_stddev_pop_fields"') + return v_match_kill_pairs_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_kill_pairs_stddev_samp_fields_possibleTypes: string[] = ['v_match_kill_pairs_stddev_samp_fields'] + export const isv_match_kill_pairs_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_match_kill_pairs_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_kill_pairs_stddev_samp_fields"') + return v_match_kill_pairs_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_kill_pairs_sum_fields_possibleTypes: string[] = ['v_match_kill_pairs_sum_fields'] + export const isv_match_kill_pairs_sum_fields = (obj?: { __typename?: any } | null): obj is v_match_kill_pairs_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_kill_pairs_sum_fields"') + return v_match_kill_pairs_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_kill_pairs_var_pop_fields_possibleTypes: string[] = ['v_match_kill_pairs_var_pop_fields'] + export const isv_match_kill_pairs_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_match_kill_pairs_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_kill_pairs_var_pop_fields"') + return v_match_kill_pairs_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_kill_pairs_var_samp_fields_possibleTypes: string[] = ['v_match_kill_pairs_var_samp_fields'] + export const isv_match_kill_pairs_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_match_kill_pairs_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_kill_pairs_var_samp_fields"') + return v_match_kill_pairs_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_kill_pairs_variance_fields_possibleTypes: string[] = ['v_match_kill_pairs_variance_fields'] + export const isv_match_kill_pairs_variance_fields = (obj?: { __typename?: any } | null): obj is v_match_kill_pairs_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_kill_pairs_variance_fields"') + return v_match_kill_pairs_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_lineup_buy_types_possibleTypes: string[] = ['v_match_lineup_buy_types'] + export const isv_match_lineup_buy_types = (obj?: { __typename?: any } | null): obj is v_match_lineup_buy_types => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_buy_types"') + return v_match_lineup_buy_types_possibleTypes.includes(obj.__typename) + } + + + + const v_match_lineup_buy_types_aggregate_possibleTypes: string[] = ['v_match_lineup_buy_types_aggregate'] + export const isv_match_lineup_buy_types_aggregate = (obj?: { __typename?: any } | null): obj is v_match_lineup_buy_types_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_buy_types_aggregate"') + return v_match_lineup_buy_types_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const v_match_lineup_buy_types_aggregate_fields_possibleTypes: string[] = ['v_match_lineup_buy_types_aggregate_fields'] + export const isv_match_lineup_buy_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_match_lineup_buy_types_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_buy_types_aggregate_fields"') + return v_match_lineup_buy_types_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_lineup_buy_types_avg_fields_possibleTypes: string[] = ['v_match_lineup_buy_types_avg_fields'] + export const isv_match_lineup_buy_types_avg_fields = (obj?: { __typename?: any } | null): obj is v_match_lineup_buy_types_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_buy_types_avg_fields"') + return v_match_lineup_buy_types_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_lineup_buy_types_max_fields_possibleTypes: string[] = ['v_match_lineup_buy_types_max_fields'] + export const isv_match_lineup_buy_types_max_fields = (obj?: { __typename?: any } | null): obj is v_match_lineup_buy_types_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_buy_types_max_fields"') + return v_match_lineup_buy_types_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_lineup_buy_types_min_fields_possibleTypes: string[] = ['v_match_lineup_buy_types_min_fields'] + export const isv_match_lineup_buy_types_min_fields = (obj?: { __typename?: any } | null): obj is v_match_lineup_buy_types_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_buy_types_min_fields"') + return v_match_lineup_buy_types_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_lineup_buy_types_stddev_fields_possibleTypes: string[] = ['v_match_lineup_buy_types_stddev_fields'] + export const isv_match_lineup_buy_types_stddev_fields = (obj?: { __typename?: any } | null): obj is v_match_lineup_buy_types_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_buy_types_stddev_fields"') + return v_match_lineup_buy_types_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_lineup_buy_types_stddev_pop_fields_possibleTypes: string[] = ['v_match_lineup_buy_types_stddev_pop_fields'] + export const isv_match_lineup_buy_types_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_match_lineup_buy_types_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_buy_types_stddev_pop_fields"') + return v_match_lineup_buy_types_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_lineup_buy_types_stddev_samp_fields_possibleTypes: string[] = ['v_match_lineup_buy_types_stddev_samp_fields'] + export const isv_match_lineup_buy_types_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_match_lineup_buy_types_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_buy_types_stddev_samp_fields"') + return v_match_lineup_buy_types_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_lineup_buy_types_sum_fields_possibleTypes: string[] = ['v_match_lineup_buy_types_sum_fields'] + export const isv_match_lineup_buy_types_sum_fields = (obj?: { __typename?: any } | null): obj is v_match_lineup_buy_types_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_buy_types_sum_fields"') + return v_match_lineup_buy_types_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_lineup_buy_types_var_pop_fields_possibleTypes: string[] = ['v_match_lineup_buy_types_var_pop_fields'] + export const isv_match_lineup_buy_types_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_match_lineup_buy_types_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_buy_types_var_pop_fields"') + return v_match_lineup_buy_types_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_lineup_buy_types_var_samp_fields_possibleTypes: string[] = ['v_match_lineup_buy_types_var_samp_fields'] + export const isv_match_lineup_buy_types_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_match_lineup_buy_types_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_buy_types_var_samp_fields"') + return v_match_lineup_buy_types_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_lineup_buy_types_variance_fields_possibleTypes: string[] = ['v_match_lineup_buy_types_variance_fields'] + export const isv_match_lineup_buy_types_variance_fields = (obj?: { __typename?: any } | null): obj is v_match_lineup_buy_types_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_buy_types_variance_fields"') + return v_match_lineup_buy_types_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_lineup_map_stats_possibleTypes: string[] = ['v_match_lineup_map_stats'] + export const isv_match_lineup_map_stats = (obj?: { __typename?: any } | null): obj is v_match_lineup_map_stats => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_map_stats"') + return v_match_lineup_map_stats_possibleTypes.includes(obj.__typename) + } + + + + const v_match_lineup_map_stats_aggregate_possibleTypes: string[] = ['v_match_lineup_map_stats_aggregate'] + export const isv_match_lineup_map_stats_aggregate = (obj?: { __typename?: any } | null): obj is v_match_lineup_map_stats_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_map_stats_aggregate"') + return v_match_lineup_map_stats_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const v_match_lineup_map_stats_aggregate_fields_possibleTypes: string[] = ['v_match_lineup_map_stats_aggregate_fields'] + export const isv_match_lineup_map_stats_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_match_lineup_map_stats_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_map_stats_aggregate_fields"') + return v_match_lineup_map_stats_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_lineup_map_stats_avg_fields_possibleTypes: string[] = ['v_match_lineup_map_stats_avg_fields'] + export const isv_match_lineup_map_stats_avg_fields = (obj?: { __typename?: any } | null): obj is v_match_lineup_map_stats_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_map_stats_avg_fields"') + return v_match_lineup_map_stats_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_lineup_map_stats_max_fields_possibleTypes: string[] = ['v_match_lineup_map_stats_max_fields'] + export const isv_match_lineup_map_stats_max_fields = (obj?: { __typename?: any } | null): obj is v_match_lineup_map_stats_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_map_stats_max_fields"') + return v_match_lineup_map_stats_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_lineup_map_stats_min_fields_possibleTypes: string[] = ['v_match_lineup_map_stats_min_fields'] + export const isv_match_lineup_map_stats_min_fields = (obj?: { __typename?: any } | null): obj is v_match_lineup_map_stats_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_map_stats_min_fields"') + return v_match_lineup_map_stats_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_lineup_map_stats_stddev_fields_possibleTypes: string[] = ['v_match_lineup_map_stats_stddev_fields'] + export const isv_match_lineup_map_stats_stddev_fields = (obj?: { __typename?: any } | null): obj is v_match_lineup_map_stats_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_map_stats_stddev_fields"') + return v_match_lineup_map_stats_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_lineup_map_stats_stddev_pop_fields_possibleTypes: string[] = ['v_match_lineup_map_stats_stddev_pop_fields'] + export const isv_match_lineup_map_stats_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_match_lineup_map_stats_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_map_stats_stddev_pop_fields"') + return v_match_lineup_map_stats_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_lineup_map_stats_stddev_samp_fields_possibleTypes: string[] = ['v_match_lineup_map_stats_stddev_samp_fields'] + export const isv_match_lineup_map_stats_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_match_lineup_map_stats_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_map_stats_stddev_samp_fields"') + return v_match_lineup_map_stats_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_lineup_map_stats_sum_fields_possibleTypes: string[] = ['v_match_lineup_map_stats_sum_fields'] + export const isv_match_lineup_map_stats_sum_fields = (obj?: { __typename?: any } | null): obj is v_match_lineup_map_stats_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_map_stats_sum_fields"') + return v_match_lineup_map_stats_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_lineup_map_stats_var_pop_fields_possibleTypes: string[] = ['v_match_lineup_map_stats_var_pop_fields'] + export const isv_match_lineup_map_stats_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_match_lineup_map_stats_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_map_stats_var_pop_fields"') + return v_match_lineup_map_stats_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_lineup_map_stats_var_samp_fields_possibleTypes: string[] = ['v_match_lineup_map_stats_var_samp_fields'] + export const isv_match_lineup_map_stats_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_match_lineup_map_stats_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_map_stats_var_samp_fields"') + return v_match_lineup_map_stats_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_lineup_map_stats_variance_fields_possibleTypes: string[] = ['v_match_lineup_map_stats_variance_fields'] + export const isv_match_lineup_map_stats_variance_fields = (obj?: { __typename?: any } | null): obj is v_match_lineup_map_stats_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_lineup_map_stats_variance_fields"') + return v_match_lineup_map_stats_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_map_backup_rounds_possibleTypes: string[] = ['v_match_map_backup_rounds'] + export const isv_match_map_backup_rounds = (obj?: { __typename?: any } | null): obj is v_match_map_backup_rounds => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_map_backup_rounds"') + return v_match_map_backup_rounds_possibleTypes.includes(obj.__typename) + } + + + + const v_match_map_backup_rounds_aggregate_possibleTypes: string[] = ['v_match_map_backup_rounds_aggregate'] + export const isv_match_map_backup_rounds_aggregate = (obj?: { __typename?: any } | null): obj is v_match_map_backup_rounds_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_map_backup_rounds_aggregate"') + return v_match_map_backup_rounds_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const v_match_map_backup_rounds_aggregate_fields_possibleTypes: string[] = ['v_match_map_backup_rounds_aggregate_fields'] + export const isv_match_map_backup_rounds_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_match_map_backup_rounds_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_map_backup_rounds_aggregate_fields"') + return v_match_map_backup_rounds_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_map_backup_rounds_avg_fields_possibleTypes: string[] = ['v_match_map_backup_rounds_avg_fields'] + export const isv_match_map_backup_rounds_avg_fields = (obj?: { __typename?: any } | null): obj is v_match_map_backup_rounds_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_map_backup_rounds_avg_fields"') + return v_match_map_backup_rounds_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_map_backup_rounds_max_fields_possibleTypes: string[] = ['v_match_map_backup_rounds_max_fields'] + export const isv_match_map_backup_rounds_max_fields = (obj?: { __typename?: any } | null): obj is v_match_map_backup_rounds_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_map_backup_rounds_max_fields"') + return v_match_map_backup_rounds_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_map_backup_rounds_min_fields_possibleTypes: string[] = ['v_match_map_backup_rounds_min_fields'] + export const isv_match_map_backup_rounds_min_fields = (obj?: { __typename?: any } | null): obj is v_match_map_backup_rounds_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_map_backup_rounds_min_fields"') + return v_match_map_backup_rounds_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_map_backup_rounds_mutation_response_possibleTypes: string[] = ['v_match_map_backup_rounds_mutation_response'] + export const isv_match_map_backup_rounds_mutation_response = (obj?: { __typename?: any } | null): obj is v_match_map_backup_rounds_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_map_backup_rounds_mutation_response"') + return v_match_map_backup_rounds_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const v_match_map_backup_rounds_stddev_fields_possibleTypes: string[] = ['v_match_map_backup_rounds_stddev_fields'] + export const isv_match_map_backup_rounds_stddev_fields = (obj?: { __typename?: any } | null): obj is v_match_map_backup_rounds_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_map_backup_rounds_stddev_fields"') + return v_match_map_backup_rounds_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_map_backup_rounds_stddev_pop_fields_possibleTypes: string[] = ['v_match_map_backup_rounds_stddev_pop_fields'] + export const isv_match_map_backup_rounds_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_match_map_backup_rounds_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_map_backup_rounds_stddev_pop_fields"') + return v_match_map_backup_rounds_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_map_backup_rounds_stddev_samp_fields_possibleTypes: string[] = ['v_match_map_backup_rounds_stddev_samp_fields'] + export const isv_match_map_backup_rounds_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_match_map_backup_rounds_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_map_backup_rounds_stddev_samp_fields"') + return v_match_map_backup_rounds_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_map_backup_rounds_sum_fields_possibleTypes: string[] = ['v_match_map_backup_rounds_sum_fields'] + export const isv_match_map_backup_rounds_sum_fields = (obj?: { __typename?: any } | null): obj is v_match_map_backup_rounds_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_map_backup_rounds_sum_fields"') + return v_match_map_backup_rounds_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_map_backup_rounds_var_pop_fields_possibleTypes: string[] = ['v_match_map_backup_rounds_var_pop_fields'] + export const isv_match_map_backup_rounds_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_match_map_backup_rounds_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_map_backup_rounds_var_pop_fields"') + return v_match_map_backup_rounds_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_map_backup_rounds_var_samp_fields_possibleTypes: string[] = ['v_match_map_backup_rounds_var_samp_fields'] + export const isv_match_map_backup_rounds_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_match_map_backup_rounds_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_map_backup_rounds_var_samp_fields"') + return v_match_map_backup_rounds_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_map_backup_rounds_variance_fields_possibleTypes: string[] = ['v_match_map_backup_rounds_variance_fields'] + export const isv_match_map_backup_rounds_variance_fields = (obj?: { __typename?: any } | null): obj is v_match_map_backup_rounds_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_map_backup_rounds_variance_fields"') + return v_match_map_backup_rounds_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_player_buy_types_possibleTypes: string[] = ['v_match_player_buy_types'] + export const isv_match_player_buy_types = (obj?: { __typename?: any } | null): obj is v_match_player_buy_types => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_buy_types"') + return v_match_player_buy_types_possibleTypes.includes(obj.__typename) + } + + + + const v_match_player_buy_types_aggregate_possibleTypes: string[] = ['v_match_player_buy_types_aggregate'] + export const isv_match_player_buy_types_aggregate = (obj?: { __typename?: any } | null): obj is v_match_player_buy_types_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_buy_types_aggregate"') + return v_match_player_buy_types_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const v_match_player_buy_types_aggregate_fields_possibleTypes: string[] = ['v_match_player_buy_types_aggregate_fields'] + export const isv_match_player_buy_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_match_player_buy_types_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_buy_types_aggregate_fields"') + return v_match_player_buy_types_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_player_buy_types_avg_fields_possibleTypes: string[] = ['v_match_player_buy_types_avg_fields'] + export const isv_match_player_buy_types_avg_fields = (obj?: { __typename?: any } | null): obj is v_match_player_buy_types_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_buy_types_avg_fields"') + return v_match_player_buy_types_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_player_buy_types_max_fields_possibleTypes: string[] = ['v_match_player_buy_types_max_fields'] + export const isv_match_player_buy_types_max_fields = (obj?: { __typename?: any } | null): obj is v_match_player_buy_types_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_buy_types_max_fields"') + return v_match_player_buy_types_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_player_buy_types_min_fields_possibleTypes: string[] = ['v_match_player_buy_types_min_fields'] + export const isv_match_player_buy_types_min_fields = (obj?: { __typename?: any } | null): obj is v_match_player_buy_types_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_buy_types_min_fields"') + return v_match_player_buy_types_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_player_buy_types_stddev_fields_possibleTypes: string[] = ['v_match_player_buy_types_stddev_fields'] + export const isv_match_player_buy_types_stddev_fields = (obj?: { __typename?: any } | null): obj is v_match_player_buy_types_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_buy_types_stddev_fields"') + return v_match_player_buy_types_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_player_buy_types_stddev_pop_fields_possibleTypes: string[] = ['v_match_player_buy_types_stddev_pop_fields'] + export const isv_match_player_buy_types_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_match_player_buy_types_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_buy_types_stddev_pop_fields"') + return v_match_player_buy_types_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_player_buy_types_stddev_samp_fields_possibleTypes: string[] = ['v_match_player_buy_types_stddev_samp_fields'] + export const isv_match_player_buy_types_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_match_player_buy_types_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_buy_types_stddev_samp_fields"') + return v_match_player_buy_types_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_player_buy_types_sum_fields_possibleTypes: string[] = ['v_match_player_buy_types_sum_fields'] + export const isv_match_player_buy_types_sum_fields = (obj?: { __typename?: any } | null): obj is v_match_player_buy_types_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_buy_types_sum_fields"') + return v_match_player_buy_types_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_player_buy_types_var_pop_fields_possibleTypes: string[] = ['v_match_player_buy_types_var_pop_fields'] + export const isv_match_player_buy_types_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_match_player_buy_types_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_buy_types_var_pop_fields"') + return v_match_player_buy_types_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_player_buy_types_var_samp_fields_possibleTypes: string[] = ['v_match_player_buy_types_var_samp_fields'] + export const isv_match_player_buy_types_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_match_player_buy_types_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_buy_types_var_samp_fields"') + return v_match_player_buy_types_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_player_buy_types_variance_fields_possibleTypes: string[] = ['v_match_player_buy_types_variance_fields'] + export const isv_match_player_buy_types_variance_fields = (obj?: { __typename?: any } | null): obj is v_match_player_buy_types_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_buy_types_variance_fields"') + return v_match_player_buy_types_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_player_opening_duels_possibleTypes: string[] = ['v_match_player_opening_duels'] + export const isv_match_player_opening_duels = (obj?: { __typename?: any } | null): obj is v_match_player_opening_duels => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_opening_duels"') + return v_match_player_opening_duels_possibleTypes.includes(obj.__typename) + } + + + + const v_match_player_opening_duels_aggregate_possibleTypes: string[] = ['v_match_player_opening_duels_aggregate'] + export const isv_match_player_opening_duels_aggregate = (obj?: { __typename?: any } | null): obj is v_match_player_opening_duels_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_opening_duels_aggregate"') + return v_match_player_opening_duels_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const v_match_player_opening_duels_aggregate_fields_possibleTypes: string[] = ['v_match_player_opening_duels_aggregate_fields'] + export const isv_match_player_opening_duels_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_match_player_opening_duels_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_opening_duels_aggregate_fields"') + return v_match_player_opening_duels_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_player_opening_duels_avg_fields_possibleTypes: string[] = ['v_match_player_opening_duels_avg_fields'] + export const isv_match_player_opening_duels_avg_fields = (obj?: { __typename?: any } | null): obj is v_match_player_opening_duels_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_opening_duels_avg_fields"') + return v_match_player_opening_duels_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_player_opening_duels_max_fields_possibleTypes: string[] = ['v_match_player_opening_duels_max_fields'] + export const isv_match_player_opening_duels_max_fields = (obj?: { __typename?: any } | null): obj is v_match_player_opening_duels_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_opening_duels_max_fields"') + return v_match_player_opening_duels_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_player_opening_duels_min_fields_possibleTypes: string[] = ['v_match_player_opening_duels_min_fields'] + export const isv_match_player_opening_duels_min_fields = (obj?: { __typename?: any } | null): obj is v_match_player_opening_duels_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_opening_duels_min_fields"') + return v_match_player_opening_duels_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_player_opening_duels_stddev_fields_possibleTypes: string[] = ['v_match_player_opening_duels_stddev_fields'] + export const isv_match_player_opening_duels_stddev_fields = (obj?: { __typename?: any } | null): obj is v_match_player_opening_duels_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_opening_duels_stddev_fields"') + return v_match_player_opening_duels_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_player_opening_duels_stddev_pop_fields_possibleTypes: string[] = ['v_match_player_opening_duels_stddev_pop_fields'] + export const isv_match_player_opening_duels_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_match_player_opening_duels_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_opening_duels_stddev_pop_fields"') + return v_match_player_opening_duels_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_player_opening_duels_stddev_samp_fields_possibleTypes: string[] = ['v_match_player_opening_duels_stddev_samp_fields'] + export const isv_match_player_opening_duels_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_match_player_opening_duels_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_opening_duels_stddev_samp_fields"') + return v_match_player_opening_duels_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_player_opening_duels_sum_fields_possibleTypes: string[] = ['v_match_player_opening_duels_sum_fields'] + export const isv_match_player_opening_duels_sum_fields = (obj?: { __typename?: any } | null): obj is v_match_player_opening_duels_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_opening_duels_sum_fields"') + return v_match_player_opening_duels_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_player_opening_duels_var_pop_fields_possibleTypes: string[] = ['v_match_player_opening_duels_var_pop_fields'] + export const isv_match_player_opening_duels_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_match_player_opening_duels_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_opening_duels_var_pop_fields"') + return v_match_player_opening_duels_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_player_opening_duels_var_samp_fields_possibleTypes: string[] = ['v_match_player_opening_duels_var_samp_fields'] + export const isv_match_player_opening_duels_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_match_player_opening_duels_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_opening_duels_var_samp_fields"') + return v_match_player_opening_duels_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_match_player_opening_duels_variance_fields_possibleTypes: string[] = ['v_match_player_opening_duels_variance_fields'] + export const isv_match_player_opening_duels_variance_fields = (obj?: { __typename?: any } | null): obj is v_match_player_opening_duels_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_match_player_opening_duels_variance_fields"') + return v_match_player_opening_duels_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_arch_nemesis_possibleTypes: string[] = ['v_player_arch_nemesis'] + export const isv_player_arch_nemesis = (obj?: { __typename?: any } | null): obj is v_player_arch_nemesis => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_arch_nemesis"') + return v_player_arch_nemesis_possibleTypes.includes(obj.__typename) + } + + + + const v_player_arch_nemesis_aggregate_possibleTypes: string[] = ['v_player_arch_nemesis_aggregate'] + export const isv_player_arch_nemesis_aggregate = (obj?: { __typename?: any } | null): obj is v_player_arch_nemesis_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_arch_nemesis_aggregate"') + return v_player_arch_nemesis_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const v_player_arch_nemesis_aggregate_fields_possibleTypes: string[] = ['v_player_arch_nemesis_aggregate_fields'] + export const isv_player_arch_nemesis_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_player_arch_nemesis_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_arch_nemesis_aggregate_fields"') + return v_player_arch_nemesis_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_arch_nemesis_avg_fields_possibleTypes: string[] = ['v_player_arch_nemesis_avg_fields'] + export const isv_player_arch_nemesis_avg_fields = (obj?: { __typename?: any } | null): obj is v_player_arch_nemesis_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_arch_nemesis_avg_fields"') + return v_player_arch_nemesis_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_arch_nemesis_max_fields_possibleTypes: string[] = ['v_player_arch_nemesis_max_fields'] + export const isv_player_arch_nemesis_max_fields = (obj?: { __typename?: any } | null): obj is v_player_arch_nemesis_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_arch_nemesis_max_fields"') + return v_player_arch_nemesis_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_arch_nemesis_min_fields_possibleTypes: string[] = ['v_player_arch_nemesis_min_fields'] + export const isv_player_arch_nemesis_min_fields = (obj?: { __typename?: any } | null): obj is v_player_arch_nemesis_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_arch_nemesis_min_fields"') + return v_player_arch_nemesis_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_arch_nemesis_stddev_fields_possibleTypes: string[] = ['v_player_arch_nemesis_stddev_fields'] + export const isv_player_arch_nemesis_stddev_fields = (obj?: { __typename?: any } | null): obj is v_player_arch_nemesis_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_arch_nemesis_stddev_fields"') + return v_player_arch_nemesis_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_arch_nemesis_stddev_pop_fields_possibleTypes: string[] = ['v_player_arch_nemesis_stddev_pop_fields'] + export const isv_player_arch_nemesis_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_arch_nemesis_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_arch_nemesis_stddev_pop_fields"') + return v_player_arch_nemesis_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_arch_nemesis_stddev_samp_fields_possibleTypes: string[] = ['v_player_arch_nemesis_stddev_samp_fields'] + export const isv_player_arch_nemesis_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_arch_nemesis_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_arch_nemesis_stddev_samp_fields"') + return v_player_arch_nemesis_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_arch_nemesis_sum_fields_possibleTypes: string[] = ['v_player_arch_nemesis_sum_fields'] + export const isv_player_arch_nemesis_sum_fields = (obj?: { __typename?: any } | null): obj is v_player_arch_nemesis_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_arch_nemesis_sum_fields"') + return v_player_arch_nemesis_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_arch_nemesis_var_pop_fields_possibleTypes: string[] = ['v_player_arch_nemesis_var_pop_fields'] + export const isv_player_arch_nemesis_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_arch_nemesis_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_arch_nemesis_var_pop_fields"') + return v_player_arch_nemesis_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_arch_nemesis_var_samp_fields_possibleTypes: string[] = ['v_player_arch_nemesis_var_samp_fields'] + export const isv_player_arch_nemesis_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_arch_nemesis_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_arch_nemesis_var_samp_fields"') + return v_player_arch_nemesis_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_arch_nemesis_variance_fields_possibleTypes: string[] = ['v_player_arch_nemesis_variance_fields'] + export const isv_player_arch_nemesis_variance_fields = (obj?: { __typename?: any } | null): obj is v_player_arch_nemesis_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_arch_nemesis_variance_fields"') + return v_player_arch_nemesis_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_damage_possibleTypes: string[] = ['v_player_damage'] + export const isv_player_damage = (obj?: { __typename?: any } | null): obj is v_player_damage => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_damage"') + return v_player_damage_possibleTypes.includes(obj.__typename) + } + + + + const v_player_damage_aggregate_possibleTypes: string[] = ['v_player_damage_aggregate'] + export const isv_player_damage_aggregate = (obj?: { __typename?: any } | null): obj is v_player_damage_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_damage_aggregate"') + return v_player_damage_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const v_player_damage_aggregate_fields_possibleTypes: string[] = ['v_player_damage_aggregate_fields'] + export const isv_player_damage_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_player_damage_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_damage_aggregate_fields"') + return v_player_damage_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_damage_avg_fields_possibleTypes: string[] = ['v_player_damage_avg_fields'] + export const isv_player_damage_avg_fields = (obj?: { __typename?: any } | null): obj is v_player_damage_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_damage_avg_fields"') + return v_player_damage_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_damage_max_fields_possibleTypes: string[] = ['v_player_damage_max_fields'] + export const isv_player_damage_max_fields = (obj?: { __typename?: any } | null): obj is v_player_damage_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_damage_max_fields"') + return v_player_damage_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_damage_min_fields_possibleTypes: string[] = ['v_player_damage_min_fields'] + export const isv_player_damage_min_fields = (obj?: { __typename?: any } | null): obj is v_player_damage_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_damage_min_fields"') + return v_player_damage_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_damage_stddev_fields_possibleTypes: string[] = ['v_player_damage_stddev_fields'] + export const isv_player_damage_stddev_fields = (obj?: { __typename?: any } | null): obj is v_player_damage_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_damage_stddev_fields"') + return v_player_damage_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_damage_stddev_pop_fields_possibleTypes: string[] = ['v_player_damage_stddev_pop_fields'] + export const isv_player_damage_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_damage_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_damage_stddev_pop_fields"') + return v_player_damage_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_damage_stddev_samp_fields_possibleTypes: string[] = ['v_player_damage_stddev_samp_fields'] + export const isv_player_damage_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_damage_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_damage_stddev_samp_fields"') + return v_player_damage_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_damage_sum_fields_possibleTypes: string[] = ['v_player_damage_sum_fields'] + export const isv_player_damage_sum_fields = (obj?: { __typename?: any } | null): obj is v_player_damage_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_damage_sum_fields"') + return v_player_damage_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_damage_var_pop_fields_possibleTypes: string[] = ['v_player_damage_var_pop_fields'] + export const isv_player_damage_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_damage_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_damage_var_pop_fields"') + return v_player_damage_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_damage_var_samp_fields_possibleTypes: string[] = ['v_player_damage_var_samp_fields'] + export const isv_player_damage_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_damage_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_damage_var_samp_fields"') + return v_player_damage_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_damage_variance_fields_possibleTypes: string[] = ['v_player_damage_variance_fields'] + export const isv_player_damage_variance_fields = (obj?: { __typename?: any } | null): obj is v_player_damage_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_damage_variance_fields"') + return v_player_damage_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_elo_possibleTypes: string[] = ['v_player_elo'] + export const isv_player_elo = (obj?: { __typename?: any } | null): obj is v_player_elo => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_elo"') + return v_player_elo_possibleTypes.includes(obj.__typename) + } + + + + const v_player_elo_aggregate_possibleTypes: string[] = ['v_player_elo_aggregate'] + export const isv_player_elo_aggregate = (obj?: { __typename?: any } | null): obj is v_player_elo_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_elo_aggregate"') + return v_player_elo_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const v_player_elo_aggregate_fields_possibleTypes: string[] = ['v_player_elo_aggregate_fields'] + export const isv_player_elo_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_player_elo_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_elo_aggregate_fields"') + return v_player_elo_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_elo_avg_fields_possibleTypes: string[] = ['v_player_elo_avg_fields'] + export const isv_player_elo_avg_fields = (obj?: { __typename?: any } | null): obj is v_player_elo_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_elo_avg_fields"') + return v_player_elo_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_elo_max_fields_possibleTypes: string[] = ['v_player_elo_max_fields'] + export const isv_player_elo_max_fields = (obj?: { __typename?: any } | null): obj is v_player_elo_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_elo_max_fields"') + return v_player_elo_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_elo_min_fields_possibleTypes: string[] = ['v_player_elo_min_fields'] + export const isv_player_elo_min_fields = (obj?: { __typename?: any } | null): obj is v_player_elo_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_elo_min_fields"') + return v_player_elo_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_elo_stddev_fields_possibleTypes: string[] = ['v_player_elo_stddev_fields'] + export const isv_player_elo_stddev_fields = (obj?: { __typename?: any } | null): obj is v_player_elo_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_elo_stddev_fields"') + return v_player_elo_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_elo_stddev_pop_fields_possibleTypes: string[] = ['v_player_elo_stddev_pop_fields'] + export const isv_player_elo_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_elo_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_elo_stddev_pop_fields"') + return v_player_elo_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_elo_stddev_samp_fields_possibleTypes: string[] = ['v_player_elo_stddev_samp_fields'] + export const isv_player_elo_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_elo_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_elo_stddev_samp_fields"') + return v_player_elo_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_elo_sum_fields_possibleTypes: string[] = ['v_player_elo_sum_fields'] + export const isv_player_elo_sum_fields = (obj?: { __typename?: any } | null): obj is v_player_elo_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_elo_sum_fields"') + return v_player_elo_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_elo_var_pop_fields_possibleTypes: string[] = ['v_player_elo_var_pop_fields'] + export const isv_player_elo_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_elo_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_elo_var_pop_fields"') + return v_player_elo_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_elo_var_samp_fields_possibleTypes: string[] = ['v_player_elo_var_samp_fields'] + export const isv_player_elo_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_elo_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_elo_var_samp_fields"') + return v_player_elo_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_elo_variance_fields_possibleTypes: string[] = ['v_player_elo_variance_fields'] + export const isv_player_elo_variance_fields = (obj?: { __typename?: any } | null): obj is v_player_elo_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_elo_variance_fields"') + return v_player_elo_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_map_losses_possibleTypes: string[] = ['v_player_map_losses'] + export const isv_player_map_losses = (obj?: { __typename?: any } | null): obj is v_player_map_losses => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_losses"') + return v_player_map_losses_possibleTypes.includes(obj.__typename) + } + + + + const v_player_map_losses_aggregate_possibleTypes: string[] = ['v_player_map_losses_aggregate'] + export const isv_player_map_losses_aggregate = (obj?: { __typename?: any } | null): obj is v_player_map_losses_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_losses_aggregate"') + return v_player_map_losses_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const v_player_map_losses_aggregate_fields_possibleTypes: string[] = ['v_player_map_losses_aggregate_fields'] + export const isv_player_map_losses_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_player_map_losses_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_losses_aggregate_fields"') + return v_player_map_losses_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_map_losses_avg_fields_possibleTypes: string[] = ['v_player_map_losses_avg_fields'] + export const isv_player_map_losses_avg_fields = (obj?: { __typename?: any } | null): obj is v_player_map_losses_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_losses_avg_fields"') + return v_player_map_losses_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_map_losses_max_fields_possibleTypes: string[] = ['v_player_map_losses_max_fields'] + export const isv_player_map_losses_max_fields = (obj?: { __typename?: any } | null): obj is v_player_map_losses_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_losses_max_fields"') + return v_player_map_losses_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_map_losses_min_fields_possibleTypes: string[] = ['v_player_map_losses_min_fields'] + export const isv_player_map_losses_min_fields = (obj?: { __typename?: any } | null): obj is v_player_map_losses_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_losses_min_fields"') + return v_player_map_losses_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_map_losses_stddev_fields_possibleTypes: string[] = ['v_player_map_losses_stddev_fields'] + export const isv_player_map_losses_stddev_fields = (obj?: { __typename?: any } | null): obj is v_player_map_losses_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_losses_stddev_fields"') + return v_player_map_losses_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_map_losses_stddev_pop_fields_possibleTypes: string[] = ['v_player_map_losses_stddev_pop_fields'] + export const isv_player_map_losses_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_map_losses_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_losses_stddev_pop_fields"') + return v_player_map_losses_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_map_losses_stddev_samp_fields_possibleTypes: string[] = ['v_player_map_losses_stddev_samp_fields'] + export const isv_player_map_losses_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_map_losses_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_losses_stddev_samp_fields"') + return v_player_map_losses_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_map_losses_sum_fields_possibleTypes: string[] = ['v_player_map_losses_sum_fields'] + export const isv_player_map_losses_sum_fields = (obj?: { __typename?: any } | null): obj is v_player_map_losses_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_losses_sum_fields"') + return v_player_map_losses_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_map_losses_var_pop_fields_possibleTypes: string[] = ['v_player_map_losses_var_pop_fields'] + export const isv_player_map_losses_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_map_losses_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_losses_var_pop_fields"') + return v_player_map_losses_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_map_losses_var_samp_fields_possibleTypes: string[] = ['v_player_map_losses_var_samp_fields'] + export const isv_player_map_losses_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_map_losses_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_losses_var_samp_fields"') + return v_player_map_losses_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_map_losses_variance_fields_possibleTypes: string[] = ['v_player_map_losses_variance_fields'] + export const isv_player_map_losses_variance_fields = (obj?: { __typename?: any } | null): obj is v_player_map_losses_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_losses_variance_fields"') + return v_player_map_losses_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_map_wins_possibleTypes: string[] = ['v_player_map_wins'] + export const isv_player_map_wins = (obj?: { __typename?: any } | null): obj is v_player_map_wins => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_wins"') + return v_player_map_wins_possibleTypes.includes(obj.__typename) + } + + + + const v_player_map_wins_aggregate_possibleTypes: string[] = ['v_player_map_wins_aggregate'] + export const isv_player_map_wins_aggregate = (obj?: { __typename?: any } | null): obj is v_player_map_wins_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_wins_aggregate"') + return v_player_map_wins_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const v_player_map_wins_aggregate_fields_possibleTypes: string[] = ['v_player_map_wins_aggregate_fields'] + export const isv_player_map_wins_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_player_map_wins_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_wins_aggregate_fields"') + return v_player_map_wins_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_map_wins_avg_fields_possibleTypes: string[] = ['v_player_map_wins_avg_fields'] + export const isv_player_map_wins_avg_fields = (obj?: { __typename?: any } | null): obj is v_player_map_wins_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_wins_avg_fields"') + return v_player_map_wins_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_map_wins_max_fields_possibleTypes: string[] = ['v_player_map_wins_max_fields'] + export const isv_player_map_wins_max_fields = (obj?: { __typename?: any } | null): obj is v_player_map_wins_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_wins_max_fields"') + return v_player_map_wins_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_map_wins_min_fields_possibleTypes: string[] = ['v_player_map_wins_min_fields'] + export const isv_player_map_wins_min_fields = (obj?: { __typename?: any } | null): obj is v_player_map_wins_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_wins_min_fields"') + return v_player_map_wins_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_map_wins_stddev_fields_possibleTypes: string[] = ['v_player_map_wins_stddev_fields'] + export const isv_player_map_wins_stddev_fields = (obj?: { __typename?: any } | null): obj is v_player_map_wins_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_wins_stddev_fields"') + return v_player_map_wins_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_map_wins_stddev_pop_fields_possibleTypes: string[] = ['v_player_map_wins_stddev_pop_fields'] + export const isv_player_map_wins_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_map_wins_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_wins_stddev_pop_fields"') + return v_player_map_wins_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_map_wins_stddev_samp_fields_possibleTypes: string[] = ['v_player_map_wins_stddev_samp_fields'] + export const isv_player_map_wins_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_map_wins_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_wins_stddev_samp_fields"') + return v_player_map_wins_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_map_wins_sum_fields_possibleTypes: string[] = ['v_player_map_wins_sum_fields'] + export const isv_player_map_wins_sum_fields = (obj?: { __typename?: any } | null): obj is v_player_map_wins_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_wins_sum_fields"') + return v_player_map_wins_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_map_wins_var_pop_fields_possibleTypes: string[] = ['v_player_map_wins_var_pop_fields'] + export const isv_player_map_wins_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_map_wins_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_wins_var_pop_fields"') + return v_player_map_wins_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_map_wins_var_samp_fields_possibleTypes: string[] = ['v_player_map_wins_var_samp_fields'] + export const isv_player_map_wins_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_map_wins_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_wins_var_samp_fields"') + return v_player_map_wins_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_map_wins_variance_fields_possibleTypes: string[] = ['v_player_map_wins_variance_fields'] + export const isv_player_map_wins_variance_fields = (obj?: { __typename?: any } | null): obj is v_player_map_wins_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_map_wins_variance_fields"') + return v_player_map_wins_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_head_to_head_possibleTypes: string[] = ['v_player_match_head_to_head'] + export const isv_player_match_head_to_head = (obj?: { __typename?: any } | null): obj is v_player_match_head_to_head => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_head_to_head"') + return v_player_match_head_to_head_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_head_to_head_aggregate_possibleTypes: string[] = ['v_player_match_head_to_head_aggregate'] + export const isv_player_match_head_to_head_aggregate = (obj?: { __typename?: any } | null): obj is v_player_match_head_to_head_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_head_to_head_aggregate"') + return v_player_match_head_to_head_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_head_to_head_aggregate_fields_possibleTypes: string[] = ['v_player_match_head_to_head_aggregate_fields'] + export const isv_player_match_head_to_head_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_player_match_head_to_head_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_head_to_head_aggregate_fields"') + return v_player_match_head_to_head_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_head_to_head_avg_fields_possibleTypes: string[] = ['v_player_match_head_to_head_avg_fields'] + export const isv_player_match_head_to_head_avg_fields = (obj?: { __typename?: any } | null): obj is v_player_match_head_to_head_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_head_to_head_avg_fields"') + return v_player_match_head_to_head_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_head_to_head_max_fields_possibleTypes: string[] = ['v_player_match_head_to_head_max_fields'] + export const isv_player_match_head_to_head_max_fields = (obj?: { __typename?: any } | null): obj is v_player_match_head_to_head_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_head_to_head_max_fields"') + return v_player_match_head_to_head_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_head_to_head_min_fields_possibleTypes: string[] = ['v_player_match_head_to_head_min_fields'] + export const isv_player_match_head_to_head_min_fields = (obj?: { __typename?: any } | null): obj is v_player_match_head_to_head_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_head_to_head_min_fields"') + return v_player_match_head_to_head_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_head_to_head_stddev_fields_possibleTypes: string[] = ['v_player_match_head_to_head_stddev_fields'] + export const isv_player_match_head_to_head_stddev_fields = (obj?: { __typename?: any } | null): obj is v_player_match_head_to_head_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_head_to_head_stddev_fields"') + return v_player_match_head_to_head_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_head_to_head_stddev_pop_fields_possibleTypes: string[] = ['v_player_match_head_to_head_stddev_pop_fields'] + export const isv_player_match_head_to_head_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_match_head_to_head_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_head_to_head_stddev_pop_fields"') + return v_player_match_head_to_head_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_head_to_head_stddev_samp_fields_possibleTypes: string[] = ['v_player_match_head_to_head_stddev_samp_fields'] + export const isv_player_match_head_to_head_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_match_head_to_head_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_head_to_head_stddev_samp_fields"') + return v_player_match_head_to_head_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_head_to_head_sum_fields_possibleTypes: string[] = ['v_player_match_head_to_head_sum_fields'] + export const isv_player_match_head_to_head_sum_fields = (obj?: { __typename?: any } | null): obj is v_player_match_head_to_head_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_head_to_head_sum_fields"') + return v_player_match_head_to_head_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_head_to_head_var_pop_fields_possibleTypes: string[] = ['v_player_match_head_to_head_var_pop_fields'] + export const isv_player_match_head_to_head_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_match_head_to_head_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_head_to_head_var_pop_fields"') + return v_player_match_head_to_head_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_head_to_head_var_samp_fields_possibleTypes: string[] = ['v_player_match_head_to_head_var_samp_fields'] + export const isv_player_match_head_to_head_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_match_head_to_head_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_head_to_head_var_samp_fields"') + return v_player_match_head_to_head_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_head_to_head_variance_fields_possibleTypes: string[] = ['v_player_match_head_to_head_variance_fields'] + export const isv_player_match_head_to_head_variance_fields = (obj?: { __typename?: any } | null): obj is v_player_match_head_to_head_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_head_to_head_variance_fields"') + return v_player_match_head_to_head_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_map_hltv_possibleTypes: string[] = ['v_player_match_map_hltv'] + export const isv_player_match_map_hltv = (obj?: { __typename?: any } | null): obj is v_player_match_map_hltv => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_hltv"') + return v_player_match_map_hltv_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_map_hltv_aggregate_possibleTypes: string[] = ['v_player_match_map_hltv_aggregate'] + export const isv_player_match_map_hltv_aggregate = (obj?: { __typename?: any } | null): obj is v_player_match_map_hltv_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_hltv_aggregate"') + return v_player_match_map_hltv_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_map_hltv_aggregate_fields_possibleTypes: string[] = ['v_player_match_map_hltv_aggregate_fields'] + export const isv_player_match_map_hltv_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_player_match_map_hltv_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_hltv_aggregate_fields"') + return v_player_match_map_hltv_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_map_hltv_avg_fields_possibleTypes: string[] = ['v_player_match_map_hltv_avg_fields'] + export const isv_player_match_map_hltv_avg_fields = (obj?: { __typename?: any } | null): obj is v_player_match_map_hltv_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_hltv_avg_fields"') + return v_player_match_map_hltv_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_map_hltv_max_fields_possibleTypes: string[] = ['v_player_match_map_hltv_max_fields'] + export const isv_player_match_map_hltv_max_fields = (obj?: { __typename?: any } | null): obj is v_player_match_map_hltv_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_hltv_max_fields"') + return v_player_match_map_hltv_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_map_hltv_min_fields_possibleTypes: string[] = ['v_player_match_map_hltv_min_fields'] + export const isv_player_match_map_hltv_min_fields = (obj?: { __typename?: any } | null): obj is v_player_match_map_hltv_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_hltv_min_fields"') + return v_player_match_map_hltv_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_map_hltv_mutation_response_possibleTypes: string[] = ['v_player_match_map_hltv_mutation_response'] + export const isv_player_match_map_hltv_mutation_response = (obj?: { __typename?: any } | null): obj is v_player_match_map_hltv_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_hltv_mutation_response"') + return v_player_match_map_hltv_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_map_hltv_stddev_fields_possibleTypes: string[] = ['v_player_match_map_hltv_stddev_fields'] + export const isv_player_match_map_hltv_stddev_fields = (obj?: { __typename?: any } | null): obj is v_player_match_map_hltv_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_hltv_stddev_fields"') + return v_player_match_map_hltv_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_map_hltv_stddev_pop_fields_possibleTypes: string[] = ['v_player_match_map_hltv_stddev_pop_fields'] + export const isv_player_match_map_hltv_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_match_map_hltv_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_hltv_stddev_pop_fields"') + return v_player_match_map_hltv_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_map_hltv_stddev_samp_fields_possibleTypes: string[] = ['v_player_match_map_hltv_stddev_samp_fields'] + export const isv_player_match_map_hltv_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_match_map_hltv_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_hltv_stddev_samp_fields"') + return v_player_match_map_hltv_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_map_hltv_sum_fields_possibleTypes: string[] = ['v_player_match_map_hltv_sum_fields'] + export const isv_player_match_map_hltv_sum_fields = (obj?: { __typename?: any } | null): obj is v_player_match_map_hltv_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_hltv_sum_fields"') + return v_player_match_map_hltv_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_map_hltv_var_pop_fields_possibleTypes: string[] = ['v_player_match_map_hltv_var_pop_fields'] + export const isv_player_match_map_hltv_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_match_map_hltv_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_hltv_var_pop_fields"') + return v_player_match_map_hltv_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_map_hltv_var_samp_fields_possibleTypes: string[] = ['v_player_match_map_hltv_var_samp_fields'] + export const isv_player_match_map_hltv_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_match_map_hltv_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_hltv_var_samp_fields"') + return v_player_match_map_hltv_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_map_hltv_variance_fields_possibleTypes: string[] = ['v_player_match_map_hltv_variance_fields'] + export const isv_player_match_map_hltv_variance_fields = (obj?: { __typename?: any } | null): obj is v_player_match_map_hltv_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_hltv_variance_fields"') + return v_player_match_map_hltv_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_map_roles_possibleTypes: string[] = ['v_player_match_map_roles'] + export const isv_player_match_map_roles = (obj?: { __typename?: any } | null): obj is v_player_match_map_roles => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_roles"') + return v_player_match_map_roles_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_map_roles_aggregate_possibleTypes: string[] = ['v_player_match_map_roles_aggregate'] + export const isv_player_match_map_roles_aggregate = (obj?: { __typename?: any } | null): obj is v_player_match_map_roles_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_roles_aggregate"') + return v_player_match_map_roles_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_map_roles_aggregate_fields_possibleTypes: string[] = ['v_player_match_map_roles_aggregate_fields'] + export const isv_player_match_map_roles_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_player_match_map_roles_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_roles_aggregate_fields"') + return v_player_match_map_roles_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_map_roles_avg_fields_possibleTypes: string[] = ['v_player_match_map_roles_avg_fields'] + export const isv_player_match_map_roles_avg_fields = (obj?: { __typename?: any } | null): obj is v_player_match_map_roles_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_roles_avg_fields"') + return v_player_match_map_roles_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_map_roles_max_fields_possibleTypes: string[] = ['v_player_match_map_roles_max_fields'] + export const isv_player_match_map_roles_max_fields = (obj?: { __typename?: any } | null): obj is v_player_match_map_roles_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_roles_max_fields"') + return v_player_match_map_roles_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_map_roles_min_fields_possibleTypes: string[] = ['v_player_match_map_roles_min_fields'] + export const isv_player_match_map_roles_min_fields = (obj?: { __typename?: any } | null): obj is v_player_match_map_roles_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_roles_min_fields"') + return v_player_match_map_roles_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_map_roles_stddev_fields_possibleTypes: string[] = ['v_player_match_map_roles_stddev_fields'] + export const isv_player_match_map_roles_stddev_fields = (obj?: { __typename?: any } | null): obj is v_player_match_map_roles_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_roles_stddev_fields"') + return v_player_match_map_roles_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_map_roles_stddev_pop_fields_possibleTypes: string[] = ['v_player_match_map_roles_stddev_pop_fields'] + export const isv_player_match_map_roles_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_match_map_roles_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_roles_stddev_pop_fields"') + return v_player_match_map_roles_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_map_roles_stddev_samp_fields_possibleTypes: string[] = ['v_player_match_map_roles_stddev_samp_fields'] + export const isv_player_match_map_roles_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_match_map_roles_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_roles_stddev_samp_fields"') + return v_player_match_map_roles_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_map_roles_sum_fields_possibleTypes: string[] = ['v_player_match_map_roles_sum_fields'] + export const isv_player_match_map_roles_sum_fields = (obj?: { __typename?: any } | null): obj is v_player_match_map_roles_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_roles_sum_fields"') + return v_player_match_map_roles_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_map_roles_var_pop_fields_possibleTypes: string[] = ['v_player_match_map_roles_var_pop_fields'] + export const isv_player_match_map_roles_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_match_map_roles_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_roles_var_pop_fields"') + return v_player_match_map_roles_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_map_roles_var_samp_fields_possibleTypes: string[] = ['v_player_match_map_roles_var_samp_fields'] + export const isv_player_match_map_roles_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_match_map_roles_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_roles_var_samp_fields"') + return v_player_match_map_roles_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_map_roles_variance_fields_possibleTypes: string[] = ['v_player_match_map_roles_variance_fields'] + export const isv_player_match_map_roles_variance_fields = (obj?: { __typename?: any } | null): obj is v_player_match_map_roles_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_map_roles_variance_fields"') + return v_player_match_map_roles_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_performance_possibleTypes: string[] = ['v_player_match_performance'] + export const isv_player_match_performance = (obj?: { __typename?: any } | null): obj is v_player_match_performance => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_performance"') + return v_player_match_performance_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_performance_aggregate_possibleTypes: string[] = ['v_player_match_performance_aggregate'] + export const isv_player_match_performance_aggregate = (obj?: { __typename?: any } | null): obj is v_player_match_performance_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_performance_aggregate"') + return v_player_match_performance_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_performance_aggregate_fields_possibleTypes: string[] = ['v_player_match_performance_aggregate_fields'] + export const isv_player_match_performance_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_player_match_performance_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_performance_aggregate_fields"') + return v_player_match_performance_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_performance_avg_fields_possibleTypes: string[] = ['v_player_match_performance_avg_fields'] + export const isv_player_match_performance_avg_fields = (obj?: { __typename?: any } | null): obj is v_player_match_performance_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_performance_avg_fields"') + return v_player_match_performance_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_performance_max_fields_possibleTypes: string[] = ['v_player_match_performance_max_fields'] + export const isv_player_match_performance_max_fields = (obj?: { __typename?: any } | null): obj is v_player_match_performance_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_performance_max_fields"') + return v_player_match_performance_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_performance_min_fields_possibleTypes: string[] = ['v_player_match_performance_min_fields'] + export const isv_player_match_performance_min_fields = (obj?: { __typename?: any } | null): obj is v_player_match_performance_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_performance_min_fields"') + return v_player_match_performance_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_performance_stddev_fields_possibleTypes: string[] = ['v_player_match_performance_stddev_fields'] + export const isv_player_match_performance_stddev_fields = (obj?: { __typename?: any } | null): obj is v_player_match_performance_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_performance_stddev_fields"') + return v_player_match_performance_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_performance_stddev_pop_fields_possibleTypes: string[] = ['v_player_match_performance_stddev_pop_fields'] + export const isv_player_match_performance_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_match_performance_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_performance_stddev_pop_fields"') + return v_player_match_performance_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_performance_stddev_samp_fields_possibleTypes: string[] = ['v_player_match_performance_stddev_samp_fields'] + export const isv_player_match_performance_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_match_performance_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_performance_stddev_samp_fields"') + return v_player_match_performance_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_performance_sum_fields_possibleTypes: string[] = ['v_player_match_performance_sum_fields'] + export const isv_player_match_performance_sum_fields = (obj?: { __typename?: any } | null): obj is v_player_match_performance_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_performance_sum_fields"') + return v_player_match_performance_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_performance_var_pop_fields_possibleTypes: string[] = ['v_player_match_performance_var_pop_fields'] + export const isv_player_match_performance_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_match_performance_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_performance_var_pop_fields"') + return v_player_match_performance_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_performance_var_samp_fields_possibleTypes: string[] = ['v_player_match_performance_var_samp_fields'] + export const isv_player_match_performance_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_match_performance_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_performance_var_samp_fields"') + return v_player_match_performance_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_performance_variance_fields_possibleTypes: string[] = ['v_player_match_performance_variance_fields'] + export const isv_player_match_performance_variance_fields = (obj?: { __typename?: any } | null): obj is v_player_match_performance_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_performance_variance_fields"') + return v_player_match_performance_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_rating_possibleTypes: string[] = ['v_player_match_rating'] + export const isv_player_match_rating = (obj?: { __typename?: any } | null): obj is v_player_match_rating => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_rating"') + return v_player_match_rating_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_rating_aggregate_possibleTypes: string[] = ['v_player_match_rating_aggregate'] + export const isv_player_match_rating_aggregate = (obj?: { __typename?: any } | null): obj is v_player_match_rating_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_rating_aggregate"') + return v_player_match_rating_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_rating_aggregate_fields_possibleTypes: string[] = ['v_player_match_rating_aggregate_fields'] + export const isv_player_match_rating_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_player_match_rating_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_rating_aggregate_fields"') + return v_player_match_rating_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_rating_avg_fields_possibleTypes: string[] = ['v_player_match_rating_avg_fields'] + export const isv_player_match_rating_avg_fields = (obj?: { __typename?: any } | null): obj is v_player_match_rating_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_rating_avg_fields"') + return v_player_match_rating_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_rating_max_fields_possibleTypes: string[] = ['v_player_match_rating_max_fields'] + export const isv_player_match_rating_max_fields = (obj?: { __typename?: any } | null): obj is v_player_match_rating_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_rating_max_fields"') + return v_player_match_rating_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_rating_min_fields_possibleTypes: string[] = ['v_player_match_rating_min_fields'] + export const isv_player_match_rating_min_fields = (obj?: { __typename?: any } | null): obj is v_player_match_rating_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_rating_min_fields"') + return v_player_match_rating_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_rating_stddev_fields_possibleTypes: string[] = ['v_player_match_rating_stddev_fields'] + export const isv_player_match_rating_stddev_fields = (obj?: { __typename?: any } | null): obj is v_player_match_rating_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_rating_stddev_fields"') + return v_player_match_rating_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_rating_stddev_pop_fields_possibleTypes: string[] = ['v_player_match_rating_stddev_pop_fields'] + export const isv_player_match_rating_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_match_rating_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_rating_stddev_pop_fields"') + return v_player_match_rating_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_rating_stddev_samp_fields_possibleTypes: string[] = ['v_player_match_rating_stddev_samp_fields'] + export const isv_player_match_rating_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_match_rating_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_rating_stddev_samp_fields"') + return v_player_match_rating_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_rating_sum_fields_possibleTypes: string[] = ['v_player_match_rating_sum_fields'] + export const isv_player_match_rating_sum_fields = (obj?: { __typename?: any } | null): obj is v_player_match_rating_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_rating_sum_fields"') + return v_player_match_rating_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_rating_var_pop_fields_possibleTypes: string[] = ['v_player_match_rating_var_pop_fields'] + export const isv_player_match_rating_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_match_rating_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_rating_var_pop_fields"') + return v_player_match_rating_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_rating_var_samp_fields_possibleTypes: string[] = ['v_player_match_rating_var_samp_fields'] + export const isv_player_match_rating_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_match_rating_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_rating_var_samp_fields"') + return v_player_match_rating_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_match_rating_variance_fields_possibleTypes: string[] = ['v_player_match_rating_variance_fields'] + export const isv_player_match_rating_variance_fields = (obj?: { __typename?: any } | null): obj is v_player_match_rating_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_match_rating_variance_fields"') + return v_player_match_rating_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_multi_kills_possibleTypes: string[] = ['v_player_multi_kills'] + export const isv_player_multi_kills = (obj?: { __typename?: any } | null): obj is v_player_multi_kills => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_multi_kills"') + return v_player_multi_kills_possibleTypes.includes(obj.__typename) + } + + + + const v_player_multi_kills_aggregate_possibleTypes: string[] = ['v_player_multi_kills_aggregate'] + export const isv_player_multi_kills_aggregate = (obj?: { __typename?: any } | null): obj is v_player_multi_kills_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_multi_kills_aggregate"') + return v_player_multi_kills_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const v_player_multi_kills_aggregate_fields_possibleTypes: string[] = ['v_player_multi_kills_aggregate_fields'] + export const isv_player_multi_kills_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_player_multi_kills_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_multi_kills_aggregate_fields"') + return v_player_multi_kills_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_multi_kills_avg_fields_possibleTypes: string[] = ['v_player_multi_kills_avg_fields'] + export const isv_player_multi_kills_avg_fields = (obj?: { __typename?: any } | null): obj is v_player_multi_kills_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_multi_kills_avg_fields"') + return v_player_multi_kills_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_multi_kills_max_fields_possibleTypes: string[] = ['v_player_multi_kills_max_fields'] + export const isv_player_multi_kills_max_fields = (obj?: { __typename?: any } | null): obj is v_player_multi_kills_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_multi_kills_max_fields"') + return v_player_multi_kills_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_multi_kills_min_fields_possibleTypes: string[] = ['v_player_multi_kills_min_fields'] + export const isv_player_multi_kills_min_fields = (obj?: { __typename?: any } | null): obj is v_player_multi_kills_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_multi_kills_min_fields"') + return v_player_multi_kills_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_multi_kills_stddev_fields_possibleTypes: string[] = ['v_player_multi_kills_stddev_fields'] + export const isv_player_multi_kills_stddev_fields = (obj?: { __typename?: any } | null): obj is v_player_multi_kills_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_multi_kills_stddev_fields"') + return v_player_multi_kills_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_multi_kills_stddev_pop_fields_possibleTypes: string[] = ['v_player_multi_kills_stddev_pop_fields'] + export const isv_player_multi_kills_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_multi_kills_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_multi_kills_stddev_pop_fields"') + return v_player_multi_kills_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_multi_kills_stddev_samp_fields_possibleTypes: string[] = ['v_player_multi_kills_stddev_samp_fields'] + export const isv_player_multi_kills_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_multi_kills_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_multi_kills_stddev_samp_fields"') + return v_player_multi_kills_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_multi_kills_sum_fields_possibleTypes: string[] = ['v_player_multi_kills_sum_fields'] + export const isv_player_multi_kills_sum_fields = (obj?: { __typename?: any } | null): obj is v_player_multi_kills_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_multi_kills_sum_fields"') + return v_player_multi_kills_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_multi_kills_var_pop_fields_possibleTypes: string[] = ['v_player_multi_kills_var_pop_fields'] + export const isv_player_multi_kills_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_multi_kills_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_multi_kills_var_pop_fields"') + return v_player_multi_kills_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_multi_kills_var_samp_fields_possibleTypes: string[] = ['v_player_multi_kills_var_samp_fields'] + export const isv_player_multi_kills_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_multi_kills_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_multi_kills_var_samp_fields"') + return v_player_multi_kills_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_multi_kills_variance_fields_possibleTypes: string[] = ['v_player_multi_kills_variance_fields'] + export const isv_player_multi_kills_variance_fields = (obj?: { __typename?: any } | null): obj is v_player_multi_kills_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_multi_kills_variance_fields"') + return v_player_multi_kills_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_queue_partners_possibleTypes: string[] = ['v_player_queue_partners'] + export const isv_player_queue_partners = (obj?: { __typename?: any } | null): obj is v_player_queue_partners => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_queue_partners"') + return v_player_queue_partners_possibleTypes.includes(obj.__typename) + } + + + + const v_player_queue_partners_aggregate_possibleTypes: string[] = ['v_player_queue_partners_aggregate'] + export const isv_player_queue_partners_aggregate = (obj?: { __typename?: any } | null): obj is v_player_queue_partners_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_queue_partners_aggregate"') + return v_player_queue_partners_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const v_player_queue_partners_aggregate_fields_possibleTypes: string[] = ['v_player_queue_partners_aggregate_fields'] + export const isv_player_queue_partners_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_player_queue_partners_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_queue_partners_aggregate_fields"') + return v_player_queue_partners_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_queue_partners_avg_fields_possibleTypes: string[] = ['v_player_queue_partners_avg_fields'] + export const isv_player_queue_partners_avg_fields = (obj?: { __typename?: any } | null): obj is v_player_queue_partners_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_queue_partners_avg_fields"') + return v_player_queue_partners_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_queue_partners_max_fields_possibleTypes: string[] = ['v_player_queue_partners_max_fields'] + export const isv_player_queue_partners_max_fields = (obj?: { __typename?: any } | null): obj is v_player_queue_partners_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_queue_partners_max_fields"') + return v_player_queue_partners_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_queue_partners_min_fields_possibleTypes: string[] = ['v_player_queue_partners_min_fields'] + export const isv_player_queue_partners_min_fields = (obj?: { __typename?: any } | null): obj is v_player_queue_partners_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_queue_partners_min_fields"') + return v_player_queue_partners_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_queue_partners_stddev_fields_possibleTypes: string[] = ['v_player_queue_partners_stddev_fields'] + export const isv_player_queue_partners_stddev_fields = (obj?: { __typename?: any } | null): obj is v_player_queue_partners_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_queue_partners_stddev_fields"') + return v_player_queue_partners_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_queue_partners_stddev_pop_fields_possibleTypes: string[] = ['v_player_queue_partners_stddev_pop_fields'] + export const isv_player_queue_partners_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_queue_partners_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_queue_partners_stddev_pop_fields"') + return v_player_queue_partners_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_queue_partners_stddev_samp_fields_possibleTypes: string[] = ['v_player_queue_partners_stddev_samp_fields'] + export const isv_player_queue_partners_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_queue_partners_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_queue_partners_stddev_samp_fields"') + return v_player_queue_partners_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_queue_partners_sum_fields_possibleTypes: string[] = ['v_player_queue_partners_sum_fields'] + export const isv_player_queue_partners_sum_fields = (obj?: { __typename?: any } | null): obj is v_player_queue_partners_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_queue_partners_sum_fields"') + return v_player_queue_partners_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_queue_partners_var_pop_fields_possibleTypes: string[] = ['v_player_queue_partners_var_pop_fields'] + export const isv_player_queue_partners_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_queue_partners_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_queue_partners_var_pop_fields"') + return v_player_queue_partners_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_queue_partners_var_samp_fields_possibleTypes: string[] = ['v_player_queue_partners_var_samp_fields'] + export const isv_player_queue_partners_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_queue_partners_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_queue_partners_var_samp_fields"') + return v_player_queue_partners_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_queue_partners_variance_fields_possibleTypes: string[] = ['v_player_queue_partners_variance_fields'] + export const isv_player_queue_partners_variance_fields = (obj?: { __typename?: any } | null): obj is v_player_queue_partners_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_queue_partners_variance_fields"') + return v_player_queue_partners_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_weapon_damage_possibleTypes: string[] = ['v_player_weapon_damage'] + export const isv_player_weapon_damage = (obj?: { __typename?: any } | null): obj is v_player_weapon_damage => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_damage"') + return v_player_weapon_damage_possibleTypes.includes(obj.__typename) + } + + + + const v_player_weapon_damage_aggregate_possibleTypes: string[] = ['v_player_weapon_damage_aggregate'] + export const isv_player_weapon_damage_aggregate = (obj?: { __typename?: any } | null): obj is v_player_weapon_damage_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_damage_aggregate"') + return v_player_weapon_damage_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const v_player_weapon_damage_aggregate_fields_possibleTypes: string[] = ['v_player_weapon_damage_aggregate_fields'] + export const isv_player_weapon_damage_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_player_weapon_damage_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_damage_aggregate_fields"') + return v_player_weapon_damage_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_weapon_damage_avg_fields_possibleTypes: string[] = ['v_player_weapon_damage_avg_fields'] + export const isv_player_weapon_damage_avg_fields = (obj?: { __typename?: any } | null): obj is v_player_weapon_damage_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_damage_avg_fields"') + return v_player_weapon_damage_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_weapon_damage_max_fields_possibleTypes: string[] = ['v_player_weapon_damage_max_fields'] + export const isv_player_weapon_damage_max_fields = (obj?: { __typename?: any } | null): obj is v_player_weapon_damage_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_damage_max_fields"') + return v_player_weapon_damage_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_weapon_damage_min_fields_possibleTypes: string[] = ['v_player_weapon_damage_min_fields'] + export const isv_player_weapon_damage_min_fields = (obj?: { __typename?: any } | null): obj is v_player_weapon_damage_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_damage_min_fields"') + return v_player_weapon_damage_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_weapon_damage_stddev_fields_possibleTypes: string[] = ['v_player_weapon_damage_stddev_fields'] + export const isv_player_weapon_damage_stddev_fields = (obj?: { __typename?: any } | null): obj is v_player_weapon_damage_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_damage_stddev_fields"') + return v_player_weapon_damage_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_weapon_damage_stddev_pop_fields_possibleTypes: string[] = ['v_player_weapon_damage_stddev_pop_fields'] + export const isv_player_weapon_damage_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_weapon_damage_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_damage_stddev_pop_fields"') + return v_player_weapon_damage_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_weapon_damage_stddev_samp_fields_possibleTypes: string[] = ['v_player_weapon_damage_stddev_samp_fields'] + export const isv_player_weapon_damage_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_weapon_damage_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_damage_stddev_samp_fields"') + return v_player_weapon_damage_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_weapon_damage_sum_fields_possibleTypes: string[] = ['v_player_weapon_damage_sum_fields'] + export const isv_player_weapon_damage_sum_fields = (obj?: { __typename?: any } | null): obj is v_player_weapon_damage_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_damage_sum_fields"') + return v_player_weapon_damage_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_weapon_damage_var_pop_fields_possibleTypes: string[] = ['v_player_weapon_damage_var_pop_fields'] + export const isv_player_weapon_damage_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_weapon_damage_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_damage_var_pop_fields"') + return v_player_weapon_damage_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_weapon_damage_var_samp_fields_possibleTypes: string[] = ['v_player_weapon_damage_var_samp_fields'] + export const isv_player_weapon_damage_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_weapon_damage_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_damage_var_samp_fields"') + return v_player_weapon_damage_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_weapon_damage_variance_fields_possibleTypes: string[] = ['v_player_weapon_damage_variance_fields'] + export const isv_player_weapon_damage_variance_fields = (obj?: { __typename?: any } | null): obj is v_player_weapon_damage_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_damage_variance_fields"') + return v_player_weapon_damage_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_weapon_kills_possibleTypes: string[] = ['v_player_weapon_kills'] + export const isv_player_weapon_kills = (obj?: { __typename?: any } | null): obj is v_player_weapon_kills => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_kills"') + return v_player_weapon_kills_possibleTypes.includes(obj.__typename) + } + + + + const v_player_weapon_kills_aggregate_possibleTypes: string[] = ['v_player_weapon_kills_aggregate'] + export const isv_player_weapon_kills_aggregate = (obj?: { __typename?: any } | null): obj is v_player_weapon_kills_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_kills_aggregate"') + return v_player_weapon_kills_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const v_player_weapon_kills_aggregate_fields_possibleTypes: string[] = ['v_player_weapon_kills_aggregate_fields'] + export const isv_player_weapon_kills_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_player_weapon_kills_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_kills_aggregate_fields"') + return v_player_weapon_kills_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_weapon_kills_avg_fields_possibleTypes: string[] = ['v_player_weapon_kills_avg_fields'] + export const isv_player_weapon_kills_avg_fields = (obj?: { __typename?: any } | null): obj is v_player_weapon_kills_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_kills_avg_fields"') + return v_player_weapon_kills_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_weapon_kills_max_fields_possibleTypes: string[] = ['v_player_weapon_kills_max_fields'] + export const isv_player_weapon_kills_max_fields = (obj?: { __typename?: any } | null): obj is v_player_weapon_kills_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_kills_max_fields"') + return v_player_weapon_kills_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_weapon_kills_min_fields_possibleTypes: string[] = ['v_player_weapon_kills_min_fields'] + export const isv_player_weapon_kills_min_fields = (obj?: { __typename?: any } | null): obj is v_player_weapon_kills_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_kills_min_fields"') + return v_player_weapon_kills_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_weapon_kills_stddev_fields_possibleTypes: string[] = ['v_player_weapon_kills_stddev_fields'] + export const isv_player_weapon_kills_stddev_fields = (obj?: { __typename?: any } | null): obj is v_player_weapon_kills_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_kills_stddev_fields"') + return v_player_weapon_kills_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_weapon_kills_stddev_pop_fields_possibleTypes: string[] = ['v_player_weapon_kills_stddev_pop_fields'] + export const isv_player_weapon_kills_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_weapon_kills_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_kills_stddev_pop_fields"') + return v_player_weapon_kills_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_weapon_kills_stddev_samp_fields_possibleTypes: string[] = ['v_player_weapon_kills_stddev_samp_fields'] + export const isv_player_weapon_kills_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_weapon_kills_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_kills_stddev_samp_fields"') + return v_player_weapon_kills_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_weapon_kills_sum_fields_possibleTypes: string[] = ['v_player_weapon_kills_sum_fields'] + export const isv_player_weapon_kills_sum_fields = (obj?: { __typename?: any } | null): obj is v_player_weapon_kills_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_kills_sum_fields"') + return v_player_weapon_kills_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_weapon_kills_var_pop_fields_possibleTypes: string[] = ['v_player_weapon_kills_var_pop_fields'] + export const isv_player_weapon_kills_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_player_weapon_kills_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_kills_var_pop_fields"') + return v_player_weapon_kills_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_weapon_kills_var_samp_fields_possibleTypes: string[] = ['v_player_weapon_kills_var_samp_fields'] + export const isv_player_weapon_kills_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_player_weapon_kills_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_kills_var_samp_fields"') + return v_player_weapon_kills_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_player_weapon_kills_variance_fields_possibleTypes: string[] = ['v_player_weapon_kills_variance_fields'] + export const isv_player_weapon_kills_variance_fields = (obj?: { __typename?: any } | null): obj is v_player_weapon_kills_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_player_weapon_kills_variance_fields"') + return v_player_weapon_kills_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_pool_maps_possibleTypes: string[] = ['v_pool_maps'] + export const isv_pool_maps = (obj?: { __typename?: any } | null): obj is v_pool_maps => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_pool_maps"') + return v_pool_maps_possibleTypes.includes(obj.__typename) + } + + + + const v_pool_maps_aggregate_possibleTypes: string[] = ['v_pool_maps_aggregate'] + export const isv_pool_maps_aggregate = (obj?: { __typename?: any } | null): obj is v_pool_maps_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_pool_maps_aggregate"') + return v_pool_maps_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const v_pool_maps_aggregate_fields_possibleTypes: string[] = ['v_pool_maps_aggregate_fields'] + export const isv_pool_maps_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_pool_maps_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_pool_maps_aggregate_fields"') + return v_pool_maps_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_pool_maps_max_fields_possibleTypes: string[] = ['v_pool_maps_max_fields'] + export const isv_pool_maps_max_fields = (obj?: { __typename?: any } | null): obj is v_pool_maps_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_pool_maps_max_fields"') + return v_pool_maps_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_pool_maps_min_fields_possibleTypes: string[] = ['v_pool_maps_min_fields'] + export const isv_pool_maps_min_fields = (obj?: { __typename?: any } | null): obj is v_pool_maps_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_pool_maps_min_fields"') + return v_pool_maps_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_pool_maps_mutation_response_possibleTypes: string[] = ['v_pool_maps_mutation_response'] + export const isv_pool_maps_mutation_response = (obj?: { __typename?: any } | null): obj is v_pool_maps_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_pool_maps_mutation_response"') + return v_pool_maps_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const v_steam_account_pool_status_possibleTypes: string[] = ['v_steam_account_pool_status'] + export const isv_steam_account_pool_status = (obj?: { __typename?: any } | null): obj is v_steam_account_pool_status => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_steam_account_pool_status"') + return v_steam_account_pool_status_possibleTypes.includes(obj.__typename) + } + + + + const v_steam_account_pool_status_aggregate_possibleTypes: string[] = ['v_steam_account_pool_status_aggregate'] + export const isv_steam_account_pool_status_aggregate = (obj?: { __typename?: any } | null): obj is v_steam_account_pool_status_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_steam_account_pool_status_aggregate"') + return v_steam_account_pool_status_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const v_steam_account_pool_status_aggregate_fields_possibleTypes: string[] = ['v_steam_account_pool_status_aggregate_fields'] + export const isv_steam_account_pool_status_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_steam_account_pool_status_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_steam_account_pool_status_aggregate_fields"') + return v_steam_account_pool_status_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_steam_account_pool_status_avg_fields_possibleTypes: string[] = ['v_steam_account_pool_status_avg_fields'] + export const isv_steam_account_pool_status_avg_fields = (obj?: { __typename?: any } | null): obj is v_steam_account_pool_status_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_steam_account_pool_status_avg_fields"') + return v_steam_account_pool_status_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_steam_account_pool_status_max_fields_possibleTypes: string[] = ['v_steam_account_pool_status_max_fields'] + export const isv_steam_account_pool_status_max_fields = (obj?: { __typename?: any } | null): obj is v_steam_account_pool_status_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_steam_account_pool_status_max_fields"') + return v_steam_account_pool_status_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_steam_account_pool_status_min_fields_possibleTypes: string[] = ['v_steam_account_pool_status_min_fields'] + export const isv_steam_account_pool_status_min_fields = (obj?: { __typename?: any } | null): obj is v_steam_account_pool_status_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_steam_account_pool_status_min_fields"') + return v_steam_account_pool_status_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_steam_account_pool_status_stddev_fields_possibleTypes: string[] = ['v_steam_account_pool_status_stddev_fields'] + export const isv_steam_account_pool_status_stddev_fields = (obj?: { __typename?: any } | null): obj is v_steam_account_pool_status_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_steam_account_pool_status_stddev_fields"') + return v_steam_account_pool_status_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_steam_account_pool_status_stddev_pop_fields_possibleTypes: string[] = ['v_steam_account_pool_status_stddev_pop_fields'] + export const isv_steam_account_pool_status_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_steam_account_pool_status_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_steam_account_pool_status_stddev_pop_fields"') + return v_steam_account_pool_status_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_steam_account_pool_status_stddev_samp_fields_possibleTypes: string[] = ['v_steam_account_pool_status_stddev_samp_fields'] + export const isv_steam_account_pool_status_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_steam_account_pool_status_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_steam_account_pool_status_stddev_samp_fields"') + return v_steam_account_pool_status_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_steam_account_pool_status_sum_fields_possibleTypes: string[] = ['v_steam_account_pool_status_sum_fields'] + export const isv_steam_account_pool_status_sum_fields = (obj?: { __typename?: any } | null): obj is v_steam_account_pool_status_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_steam_account_pool_status_sum_fields"') + return v_steam_account_pool_status_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_steam_account_pool_status_var_pop_fields_possibleTypes: string[] = ['v_steam_account_pool_status_var_pop_fields'] + export const isv_steam_account_pool_status_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_steam_account_pool_status_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_steam_account_pool_status_var_pop_fields"') + return v_steam_account_pool_status_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_steam_account_pool_status_var_samp_fields_possibleTypes: string[] = ['v_steam_account_pool_status_var_samp_fields'] + export const isv_steam_account_pool_status_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_steam_account_pool_status_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_steam_account_pool_status_var_samp_fields"') + return v_steam_account_pool_status_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_steam_account_pool_status_variance_fields_possibleTypes: string[] = ['v_steam_account_pool_status_variance_fields'] + export const isv_steam_account_pool_status_variance_fields = (obj?: { __typename?: any } | null): obj is v_steam_account_pool_status_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_steam_account_pool_status_variance_fields"') + return v_steam_account_pool_status_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_team_ranks_possibleTypes: string[] = ['v_team_ranks'] + export const isv_team_ranks = (obj?: { __typename?: any } | null): obj is v_team_ranks => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_ranks"') + return v_team_ranks_possibleTypes.includes(obj.__typename) + } + + + + const v_team_ranks_aggregate_possibleTypes: string[] = ['v_team_ranks_aggregate'] + export const isv_team_ranks_aggregate = (obj?: { __typename?: any } | null): obj is v_team_ranks_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_ranks_aggregate"') + return v_team_ranks_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const v_team_ranks_aggregate_fields_possibleTypes: string[] = ['v_team_ranks_aggregate_fields'] + export const isv_team_ranks_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_team_ranks_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_ranks_aggregate_fields"') + return v_team_ranks_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_team_ranks_avg_fields_possibleTypes: string[] = ['v_team_ranks_avg_fields'] + export const isv_team_ranks_avg_fields = (obj?: { __typename?: any } | null): obj is v_team_ranks_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_ranks_avg_fields"') + return v_team_ranks_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_team_ranks_max_fields_possibleTypes: string[] = ['v_team_ranks_max_fields'] + export const isv_team_ranks_max_fields = (obj?: { __typename?: any } | null): obj is v_team_ranks_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_ranks_max_fields"') + return v_team_ranks_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_team_ranks_min_fields_possibleTypes: string[] = ['v_team_ranks_min_fields'] + export const isv_team_ranks_min_fields = (obj?: { __typename?: any } | null): obj is v_team_ranks_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_ranks_min_fields"') + return v_team_ranks_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_team_ranks_stddev_fields_possibleTypes: string[] = ['v_team_ranks_stddev_fields'] + export const isv_team_ranks_stddev_fields = (obj?: { __typename?: any } | null): obj is v_team_ranks_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_ranks_stddev_fields"') + return v_team_ranks_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_team_ranks_stddev_pop_fields_possibleTypes: string[] = ['v_team_ranks_stddev_pop_fields'] + export const isv_team_ranks_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_team_ranks_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_ranks_stddev_pop_fields"') + return v_team_ranks_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_team_ranks_stddev_samp_fields_possibleTypes: string[] = ['v_team_ranks_stddev_samp_fields'] + export const isv_team_ranks_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_team_ranks_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_ranks_stddev_samp_fields"') + return v_team_ranks_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_team_ranks_sum_fields_possibleTypes: string[] = ['v_team_ranks_sum_fields'] + export const isv_team_ranks_sum_fields = (obj?: { __typename?: any } | null): obj is v_team_ranks_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_ranks_sum_fields"') + return v_team_ranks_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_team_ranks_var_pop_fields_possibleTypes: string[] = ['v_team_ranks_var_pop_fields'] + export const isv_team_ranks_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_team_ranks_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_ranks_var_pop_fields"') + return v_team_ranks_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_team_ranks_var_samp_fields_possibleTypes: string[] = ['v_team_ranks_var_samp_fields'] + export const isv_team_ranks_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_team_ranks_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_ranks_var_samp_fields"') + return v_team_ranks_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_team_ranks_variance_fields_possibleTypes: string[] = ['v_team_ranks_variance_fields'] + export const isv_team_ranks_variance_fields = (obj?: { __typename?: any } | null): obj is v_team_ranks_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_ranks_variance_fields"') + return v_team_ranks_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_team_reputation_possibleTypes: string[] = ['v_team_reputation'] + export const isv_team_reputation = (obj?: { __typename?: any } | null): obj is v_team_reputation => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_reputation"') + return v_team_reputation_possibleTypes.includes(obj.__typename) + } + + + + const v_team_reputation_aggregate_possibleTypes: string[] = ['v_team_reputation_aggregate'] + export const isv_team_reputation_aggregate = (obj?: { __typename?: any } | null): obj is v_team_reputation_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_reputation_aggregate"') + return v_team_reputation_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const v_team_reputation_aggregate_fields_possibleTypes: string[] = ['v_team_reputation_aggregate_fields'] + export const isv_team_reputation_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_team_reputation_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_reputation_aggregate_fields"') + return v_team_reputation_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_team_reputation_avg_fields_possibleTypes: string[] = ['v_team_reputation_avg_fields'] + export const isv_team_reputation_avg_fields = (obj?: { __typename?: any } | null): obj is v_team_reputation_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_reputation_avg_fields"') + return v_team_reputation_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_team_reputation_max_fields_possibleTypes: string[] = ['v_team_reputation_max_fields'] + export const isv_team_reputation_max_fields = (obj?: { __typename?: any } | null): obj is v_team_reputation_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_reputation_max_fields"') + return v_team_reputation_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_team_reputation_min_fields_possibleTypes: string[] = ['v_team_reputation_min_fields'] + export const isv_team_reputation_min_fields = (obj?: { __typename?: any } | null): obj is v_team_reputation_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_reputation_min_fields"') + return v_team_reputation_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_team_reputation_stddev_fields_possibleTypes: string[] = ['v_team_reputation_stddev_fields'] + export const isv_team_reputation_stddev_fields = (obj?: { __typename?: any } | null): obj is v_team_reputation_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_reputation_stddev_fields"') + return v_team_reputation_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_team_reputation_stddev_pop_fields_possibleTypes: string[] = ['v_team_reputation_stddev_pop_fields'] + export const isv_team_reputation_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_team_reputation_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_reputation_stddev_pop_fields"') + return v_team_reputation_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_team_reputation_stddev_samp_fields_possibleTypes: string[] = ['v_team_reputation_stddev_samp_fields'] + export const isv_team_reputation_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_team_reputation_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_reputation_stddev_samp_fields"') + return v_team_reputation_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_team_reputation_sum_fields_possibleTypes: string[] = ['v_team_reputation_sum_fields'] + export const isv_team_reputation_sum_fields = (obj?: { __typename?: any } | null): obj is v_team_reputation_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_reputation_sum_fields"') + return v_team_reputation_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_team_reputation_var_pop_fields_possibleTypes: string[] = ['v_team_reputation_var_pop_fields'] + export const isv_team_reputation_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_team_reputation_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_reputation_var_pop_fields"') + return v_team_reputation_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_team_reputation_var_samp_fields_possibleTypes: string[] = ['v_team_reputation_var_samp_fields'] + export const isv_team_reputation_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_team_reputation_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_reputation_var_samp_fields"') + return v_team_reputation_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_team_reputation_variance_fields_possibleTypes: string[] = ['v_team_reputation_variance_fields'] + export const isv_team_reputation_variance_fields = (obj?: { __typename?: any } | null): obj is v_team_reputation_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_reputation_variance_fields"') + return v_team_reputation_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_team_stage_results_possibleTypes: string[] = ['v_team_stage_results'] + export const isv_team_stage_results = (obj?: { __typename?: any } | null): obj is v_team_stage_results => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_stage_results"') + return v_team_stage_results_possibleTypes.includes(obj.__typename) + } + + + + const v_team_stage_results_aggregate_possibleTypes: string[] = ['v_team_stage_results_aggregate'] + export const isv_team_stage_results_aggregate = (obj?: { __typename?: any } | null): obj is v_team_stage_results_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_stage_results_aggregate"') + return v_team_stage_results_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const v_team_stage_results_aggregate_fields_possibleTypes: string[] = ['v_team_stage_results_aggregate_fields'] + export const isv_team_stage_results_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_team_stage_results_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_stage_results_aggregate_fields"') + return v_team_stage_results_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_team_stage_results_avg_fields_possibleTypes: string[] = ['v_team_stage_results_avg_fields'] + export const isv_team_stage_results_avg_fields = (obj?: { __typename?: any } | null): obj is v_team_stage_results_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_stage_results_avg_fields"') + return v_team_stage_results_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_team_stage_results_max_fields_possibleTypes: string[] = ['v_team_stage_results_max_fields'] + export const isv_team_stage_results_max_fields = (obj?: { __typename?: any } | null): obj is v_team_stage_results_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_stage_results_max_fields"') + return v_team_stage_results_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_team_stage_results_min_fields_possibleTypes: string[] = ['v_team_stage_results_min_fields'] + export const isv_team_stage_results_min_fields = (obj?: { __typename?: any } | null): obj is v_team_stage_results_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_stage_results_min_fields"') + return v_team_stage_results_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_team_stage_results_mutation_response_possibleTypes: string[] = ['v_team_stage_results_mutation_response'] + export const isv_team_stage_results_mutation_response = (obj?: { __typename?: any } | null): obj is v_team_stage_results_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_stage_results_mutation_response"') + return v_team_stage_results_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const v_team_stage_results_stddev_fields_possibleTypes: string[] = ['v_team_stage_results_stddev_fields'] + export const isv_team_stage_results_stddev_fields = (obj?: { __typename?: any } | null): obj is v_team_stage_results_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_stage_results_stddev_fields"') + return v_team_stage_results_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_team_stage_results_stddev_pop_fields_possibleTypes: string[] = ['v_team_stage_results_stddev_pop_fields'] + export const isv_team_stage_results_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_team_stage_results_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_stage_results_stddev_pop_fields"') + return v_team_stage_results_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_team_stage_results_stddev_samp_fields_possibleTypes: string[] = ['v_team_stage_results_stddev_samp_fields'] + export const isv_team_stage_results_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_team_stage_results_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_stage_results_stddev_samp_fields"') + return v_team_stage_results_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_team_stage_results_sum_fields_possibleTypes: string[] = ['v_team_stage_results_sum_fields'] + export const isv_team_stage_results_sum_fields = (obj?: { __typename?: any } | null): obj is v_team_stage_results_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_stage_results_sum_fields"') + return v_team_stage_results_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_team_stage_results_var_pop_fields_possibleTypes: string[] = ['v_team_stage_results_var_pop_fields'] + export const isv_team_stage_results_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_team_stage_results_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_stage_results_var_pop_fields"') + return v_team_stage_results_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_team_stage_results_var_samp_fields_possibleTypes: string[] = ['v_team_stage_results_var_samp_fields'] + export const isv_team_stage_results_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_team_stage_results_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_stage_results_var_samp_fields"') + return v_team_stage_results_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_team_stage_results_variance_fields_possibleTypes: string[] = ['v_team_stage_results_variance_fields'] + export const isv_team_stage_results_variance_fields = (obj?: { __typename?: any } | null): obj is v_team_stage_results_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_stage_results_variance_fields"') + return v_team_stage_results_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_team_tournament_results_possibleTypes: string[] = ['v_team_tournament_results'] + export const isv_team_tournament_results = (obj?: { __typename?: any } | null): obj is v_team_tournament_results => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_tournament_results"') + return v_team_tournament_results_possibleTypes.includes(obj.__typename) + } + + + + const v_team_tournament_results_aggregate_possibleTypes: string[] = ['v_team_tournament_results_aggregate'] + export const isv_team_tournament_results_aggregate = (obj?: { __typename?: any } | null): obj is v_team_tournament_results_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_tournament_results_aggregate"') + return v_team_tournament_results_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const v_team_tournament_results_aggregate_fields_possibleTypes: string[] = ['v_team_tournament_results_aggregate_fields'] + export const isv_team_tournament_results_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_team_tournament_results_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_tournament_results_aggregate_fields"') + return v_team_tournament_results_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_team_tournament_results_avg_fields_possibleTypes: string[] = ['v_team_tournament_results_avg_fields'] + export const isv_team_tournament_results_avg_fields = (obj?: { __typename?: any } | null): obj is v_team_tournament_results_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_tournament_results_avg_fields"') + return v_team_tournament_results_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_team_tournament_results_max_fields_possibleTypes: string[] = ['v_team_tournament_results_max_fields'] + export const isv_team_tournament_results_max_fields = (obj?: { __typename?: any } | null): obj is v_team_tournament_results_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_tournament_results_max_fields"') + return v_team_tournament_results_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_team_tournament_results_min_fields_possibleTypes: string[] = ['v_team_tournament_results_min_fields'] + export const isv_team_tournament_results_min_fields = (obj?: { __typename?: any } | null): obj is v_team_tournament_results_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_tournament_results_min_fields"') + return v_team_tournament_results_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_team_tournament_results_stddev_fields_possibleTypes: string[] = ['v_team_tournament_results_stddev_fields'] + export const isv_team_tournament_results_stddev_fields = (obj?: { __typename?: any } | null): obj is v_team_tournament_results_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_tournament_results_stddev_fields"') + return v_team_tournament_results_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_team_tournament_results_stddev_pop_fields_possibleTypes: string[] = ['v_team_tournament_results_stddev_pop_fields'] + export const isv_team_tournament_results_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_team_tournament_results_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_tournament_results_stddev_pop_fields"') + return v_team_tournament_results_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_team_tournament_results_stddev_samp_fields_possibleTypes: string[] = ['v_team_tournament_results_stddev_samp_fields'] + export const isv_team_tournament_results_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_team_tournament_results_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_tournament_results_stddev_samp_fields"') + return v_team_tournament_results_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_team_tournament_results_sum_fields_possibleTypes: string[] = ['v_team_tournament_results_sum_fields'] + export const isv_team_tournament_results_sum_fields = (obj?: { __typename?: any } | null): obj is v_team_tournament_results_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_tournament_results_sum_fields"') + return v_team_tournament_results_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_team_tournament_results_var_pop_fields_possibleTypes: string[] = ['v_team_tournament_results_var_pop_fields'] + export const isv_team_tournament_results_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_team_tournament_results_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_tournament_results_var_pop_fields"') + return v_team_tournament_results_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_team_tournament_results_var_samp_fields_possibleTypes: string[] = ['v_team_tournament_results_var_samp_fields'] + export const isv_team_tournament_results_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_team_tournament_results_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_tournament_results_var_samp_fields"') + return v_team_tournament_results_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_team_tournament_results_variance_fields_possibleTypes: string[] = ['v_team_tournament_results_variance_fields'] + export const isv_team_tournament_results_variance_fields = (obj?: { __typename?: any } | null): obj is v_team_tournament_results_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_team_tournament_results_variance_fields"') + return v_team_tournament_results_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_tournament_player_stats_possibleTypes: string[] = ['v_tournament_player_stats'] + export const isv_tournament_player_stats = (obj?: { __typename?: any } | null): obj is v_tournament_player_stats => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_tournament_player_stats"') + return v_tournament_player_stats_possibleTypes.includes(obj.__typename) + } + + + + const v_tournament_player_stats_aggregate_possibleTypes: string[] = ['v_tournament_player_stats_aggregate'] + export const isv_tournament_player_stats_aggregate = (obj?: { __typename?: any } | null): obj is v_tournament_player_stats_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_tournament_player_stats_aggregate"') + return v_tournament_player_stats_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const v_tournament_player_stats_aggregate_fields_possibleTypes: string[] = ['v_tournament_player_stats_aggregate_fields'] + export const isv_tournament_player_stats_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_tournament_player_stats_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_tournament_player_stats_aggregate_fields"') + return v_tournament_player_stats_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_tournament_player_stats_avg_fields_possibleTypes: string[] = ['v_tournament_player_stats_avg_fields'] + export const isv_tournament_player_stats_avg_fields = (obj?: { __typename?: any } | null): obj is v_tournament_player_stats_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_tournament_player_stats_avg_fields"') + return v_tournament_player_stats_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_tournament_player_stats_max_fields_possibleTypes: string[] = ['v_tournament_player_stats_max_fields'] + export const isv_tournament_player_stats_max_fields = (obj?: { __typename?: any } | null): obj is v_tournament_player_stats_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_tournament_player_stats_max_fields"') + return v_tournament_player_stats_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_tournament_player_stats_min_fields_possibleTypes: string[] = ['v_tournament_player_stats_min_fields'] + export const isv_tournament_player_stats_min_fields = (obj?: { __typename?: any } | null): obj is v_tournament_player_stats_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_tournament_player_stats_min_fields"') + return v_tournament_player_stats_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_tournament_player_stats_stddev_fields_possibleTypes: string[] = ['v_tournament_player_stats_stddev_fields'] + export const isv_tournament_player_stats_stddev_fields = (obj?: { __typename?: any } | null): obj is v_tournament_player_stats_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_tournament_player_stats_stddev_fields"') + return v_tournament_player_stats_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_tournament_player_stats_stddev_pop_fields_possibleTypes: string[] = ['v_tournament_player_stats_stddev_pop_fields'] + export const isv_tournament_player_stats_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_tournament_player_stats_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_tournament_player_stats_stddev_pop_fields"') + return v_tournament_player_stats_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_tournament_player_stats_stddev_samp_fields_possibleTypes: string[] = ['v_tournament_player_stats_stddev_samp_fields'] + export const isv_tournament_player_stats_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_tournament_player_stats_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_tournament_player_stats_stddev_samp_fields"') + return v_tournament_player_stats_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_tournament_player_stats_sum_fields_possibleTypes: string[] = ['v_tournament_player_stats_sum_fields'] + export const isv_tournament_player_stats_sum_fields = (obj?: { __typename?: any } | null): obj is v_tournament_player_stats_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_tournament_player_stats_sum_fields"') + return v_tournament_player_stats_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_tournament_player_stats_var_pop_fields_possibleTypes: string[] = ['v_tournament_player_stats_var_pop_fields'] + export const isv_tournament_player_stats_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_tournament_player_stats_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_tournament_player_stats_var_pop_fields"') + return v_tournament_player_stats_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_tournament_player_stats_var_samp_fields_possibleTypes: string[] = ['v_tournament_player_stats_var_samp_fields'] + export const isv_tournament_player_stats_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_tournament_player_stats_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_tournament_player_stats_var_samp_fields"') + return v_tournament_player_stats_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_tournament_player_stats_variance_fields_possibleTypes: string[] = ['v_tournament_player_stats_variance_fields'] + export const isv_tournament_player_stats_variance_fields = (obj?: { __typename?: any } | null): obj is v_tournament_player_stats_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_tournament_player_stats_variance_fields"') + return v_tournament_player_stats_variance_fields_possibleTypes.includes(obj.__typename) + } + + +export const enum_mapPoolConstraint = { + map_pool_pkey: 'map_pool_pkey' as const +} + +export const enum_mapPoolSelectColumn = { + map_id: 'map_id' as const, + map_pool_id: 'map_pool_id' as const +} + +export const enum_mapPoolUpdateColumn = { + map_id: 'map_id' as const, + map_pool_id: 'map_pool_id' as const +} + +export const enumAbandonedMatchesConstraint = { + abandoned_matches_pkey: 'abandoned_matches_pkey' as const, + abandoned_matches_steam_id_match_id_key: 'abandoned_matches_steam_id_match_id_key' as const +} + +export const enumAbandonedMatchesSelectColumn = { + abandoned_at: 'abandoned_at' as const, + id: 'id' as const, + match_id: 'match_id' as const, + steam_id: 'steam_id' as const +} + +export const enumAbandonedMatchesUpdateColumn = { + abandoned_at: 'abandoned_at' as const, + id: 'id' as const, + match_id: 'match_id' as const, + steam_id: 'steam_id' as const +} + +export const enumApiKeysConstraint = { + api_keys_pkey: 'api_keys_pkey' as const +} + +export const enumApiKeysSelectColumn = { + created_at: 'created_at' as const, + id: 'id' as const, + label: 'label' as const, + last_used_at: 'last_used_at' as const, + steam_id: 'steam_id' as const +} + +export const enumApiKeysUpdateColumn = { + created_at: 'created_at' as const, + id: 'id' as const, + label: 'label' as const, + last_used_at: 'last_used_at' as const, + steam_id: 'steam_id' as const +} + +export const enumAwardRecipientsConstraint = { + award_recipients_one_mvp_per_tournament: 'award_recipients_one_mvp_per_tournament' as const, + award_recipients_pkey: 'award_recipients_pkey' as const, + award_recipients_player_recipient_key: 'award_recipients_player_recipient_key' as const, + award_recipients_season_player_key: 'award_recipients_season_player_key' as const, + award_recipients_team_recipient_key: 'award_recipients_team_recipient_key' as const +} + +export const enumAwardRecipientsSelectColumn = { + award_id: 'award_id' as const, + awarded_by_steam_id: 'awarded_by_steam_id' as const, + created_at: 'created_at' as const, + event_id: 'event_id' as const, + id: 'id' as const, + league_season_id: 'league_season_id' as const, + note: 'note' as const, + placement: 'placement' as const, + placement_tier: 'placement_tier' as const, + player_steam_id: 'player_steam_id' as const, + season_id: 'season_id' as const, + source: 'source' as const, + team_id: 'team_id' as const, + tournament_id: 'tournament_id' as const, + tournament_team_id: 'tournament_team_id' as const +} + +export const enumAwardRecipientsUpdateColumn = { + award_id: 'award_id' as const, + awarded_by_steam_id: 'awarded_by_steam_id' as const, + created_at: 'created_at' as const, + event_id: 'event_id' as const, + id: 'id' as const, + league_season_id: 'league_season_id' as const, + note: 'note' as const, + placement: 'placement' as const, + player_steam_id: 'player_steam_id' as const, + season_id: 'season_id' as const, + source: 'source' as const, + team_id: 'team_id' as const, + tournament_id: 'tournament_id' as const, + tournament_team_id: 'tournament_team_id' as const +} + +export const enumAwardsConstraint = { + awards_pkey: 'awards_pkey' as const, + awards_system_key_key: 'awards_system_key_key' as const +} + +export const enumAwardsSelectColumn = { + allow_multiple: 'allow_multiple' as const, + created_at: 'created_at' as const, + created_by_steam_id: 'created_by_steam_id' as const, + description: 'description' as const, + event_id: 'event_id' as const, + id: 'id' as const, + image_url: 'image_url' as const, + league_season_id: 'league_season_id' as const, + name: 'name' as const, + season_id: 'season_id' as const, + silhouette: 'silhouette' as const, + system_key: 'system_key' as const, + tier: 'tier' as const, + tournament_id: 'tournament_id' as const, + updated_at: 'updated_at' as const +} + +export const enumAwardsUpdateColumn = { + allow_multiple: 'allow_multiple' as const, + created_at: 'created_at' as const, + created_by_steam_id: 'created_by_steam_id' as const, + description: 'description' as const, + event_id: 'event_id' as const, + id: 'id' as const, + image_url: 'image_url' as const, + league_season_id: 'league_season_id' as const, + name: 'name' as const, + season_id: 'season_id' as const, + silhouette: 'silhouette' as const, + system_key: 'system_key' as const, + tier: 'tier' as const, + tournament_id: 'tournament_id' as const, + updated_at: 'updated_at' as const +} + +export const enumChatReadStateConstraint = { + chat_read_state_pkey: 'chat_read_state_pkey' as const +} + +export const enumChatReadStateSelectColumn = { + last_read_at: 'last_read_at' as const, + steam_id: 'steam_id' as const, + thread: 'thread' as const +} + +export const enumChatReadStateUpdateColumn = { + last_read_at: 'last_read_at' as const, + steam_id: 'steam_id' as const, + thread: 'thread' as const +} + +export const enumClipRenderJobsConstraint = { + clip_render_jobs_pkey: 'clip_render_jobs_pkey' as const +} + +export const enumClipRenderJobsSelectColumn = { + clip_id: 'clip_id' as const, + created_at: 'created_at' as const, + error_message: 'error_message' as const, + game_server_node_id: 'game_server_node_id' as const, + id: 'id' as const, + k8s_job_name: 'k8s_job_name' as const, + last_status_at: 'last_status_at' as const, + match_map_demo_id: 'match_map_demo_id' as const, + match_map_id: 'match_map_id' as const, + paused: 'paused' as const, + progress: 'progress' as const, + session_token: 'session_token' as const, + sort_index: 'sort_index' as const, + spec: 'spec' as const, + status: 'status' as const, + status_history: 'status_history' as const, + user_steam_id: 'user_steam_id' as const +} + +export const enumClipRenderJobsSelectColumnClipRenderJobsAggregateBoolExpBoolAndArgumentsColumns = { + paused: 'paused' as const +} + +export const enumClipRenderJobsSelectColumnClipRenderJobsAggregateBoolExpBoolOrArgumentsColumns = { + paused: 'paused' as const +} + +export const enumClipRenderJobsUpdateColumn = { + clip_id: 'clip_id' as const, + created_at: 'created_at' as const, + error_message: 'error_message' as const, + game_server_node_id: 'game_server_node_id' as const, + id: 'id' as const, + k8s_job_name: 'k8s_job_name' as const, + last_status_at: 'last_status_at' as const, + match_map_demo_id: 'match_map_demo_id' as const, + match_map_id: 'match_map_id' as const, + paused: 'paused' as const, + progress: 'progress' as const, + session_token: 'session_token' as const, + sort_index: 'sort_index' as const, + spec: 'spec' as const, + status: 'status' as const, + status_history: 'status_history' as const, + user_steam_id: 'user_steam_id' as const +} + +export const enumCursorOrdering = { + ASC: 'ASC' as const, + DESC: 'DESC' as const +} + +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 +} + +export const enumCustomPagesSelectColumn = { + created_at: 'created_at' as const, + deployments: 'deployments' as const, + enabled: 'enabled' as const, + exposed_module: 'exposed_module' as const, + icon: 'icon' as const, + id: 'id' as const, + is_default: 'is_default' as const, + 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, + required_role: 'required_role' as const, + slug: 'slug' as const, + title: 'title' as const, + updated_at: 'updated_at' as const +} + +export const enumCustomPagesUpdateColumn = { + created_at: 'created_at' as const, + deployments: 'deployments' as const, + enabled: 'enabled' as const, + exposed_module: 'exposed_module' as const, + icon: 'icon' as const, + id: 'id' as const, + is_default: 'is_default' as const, + 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, + required_role: 'required_role' as const, + slug: 'slug' as const, + title: 'title' as const, + updated_at: 'updated_at' as const +} + +export const enumDbBackupsConstraint = { + db_backups_pkey: 'db_backups_pkey' as const +} + +export const enumDbBackupsSelectColumn = { + created_at: 'created_at' as const, + id: 'id' as const, + name: 'name' as const, + size: 'size' as const +} + +export const enumDbBackupsUpdateColumn = { + created_at: 'created_at' as const, + id: 'id' as const, + name: 'name' as const, + size: 'size' as const +} + +export const enumDirectConversationsConstraint = { + direct_conversations_pkey: 'direct_conversations_pkey' as const +} + +export const enumDirectConversationsSelectColumn = { + is_open: 'is_open' as const, + last_message_at: 'last_message_at' as const, + position: 'position' as const, + room_id: 'room_id' as const, + steam_id: 'steam_id' as const +} + +export const enumDirectConversationsUpdateColumn = { + is_open: 'is_open' as const, + last_message_at: 'last_message_at' as const, + position: 'position' as const, + room_id: 'room_id' as const, + steam_id: 'steam_id' as const +} + +export const enumDirectMessagesConstraint = { + direct_messages_pkey: 'direct_messages_pkey' as const +} + +export const enumDirectMessagesSelectColumn = { + created_at: 'created_at' as const, + from_steam_id: 'from_steam_id' as const, + id: 'id' as const, + message: 'message' as const, + room_id: 'room_id' as const, + seq: 'seq' as const +} + +export const enumDirectMessagesUpdateColumn = { + created_at: 'created_at' as const, + from_steam_id: 'from_steam_id' as const, + id: 'id' as const, + message: 'message' as const, + room_id: 'room_id' as const, + seq: 'seq' as const +} + +export const enumDraftGamePicksConstraint = { + draft_game_picks_pkey: 'draft_game_picks_pkey' as const +} + +export const enumDraftGamePicksSelectColumn = { + auto_picked: 'auto_picked' as const, + captain_steam_id: 'captain_steam_id' as const, + created_at: 'created_at' as const, + draft_game_id: 'draft_game_id' as const, + id: 'id' as const, + lineup: 'lineup' as const, + picked_steam_id: 'picked_steam_id' as const +} + +export const enumDraftGamePicksSelectColumnDraftGamePicksAggregateBoolExpBoolAndArgumentsColumns = { + auto_picked: 'auto_picked' as const +} + +export const enumDraftGamePicksSelectColumnDraftGamePicksAggregateBoolExpBoolOrArgumentsColumns = { + auto_picked: 'auto_picked' as const +} + +export const enumDraftGamePicksUpdateColumn = { + auto_picked: 'auto_picked' as const, + captain_steam_id: 'captain_steam_id' as const, + created_at: 'created_at' as const, + draft_game_id: 'draft_game_id' as const, + id: 'id' as const, + lineup: 'lineup' as const, + picked_steam_id: 'picked_steam_id' as const +} + +export const enumDraftGamePlayersConstraint = { + draft_game_players_pkey: 'draft_game_players_pkey' as const +} + +export const enumDraftGamePlayersSelectColumn = { + draft_game_id: 'draft_game_id' as const, + elo_snapshot: 'elo_snapshot' as const, + is_captain: 'is_captain' as const, + joined_at: 'joined_at' as const, + lineup: 'lineup' as const, + pick_order: 'pick_order' as const, + status: 'status' as const, + steam_id: 'steam_id' as const +} + +export const enumDraftGamePlayersSelectColumnDraftGamePlayersAggregateBoolExpBoolAndArgumentsColumns = { + is_captain: 'is_captain' as const +} + +export const enumDraftGamePlayersSelectColumnDraftGamePlayersAggregateBoolExpBoolOrArgumentsColumns = { + is_captain: 'is_captain' as const +} + +export const enumDraftGamePlayersUpdateColumn = { + draft_game_id: 'draft_game_id' as const, + elo_snapshot: 'elo_snapshot' as const, + is_captain: 'is_captain' as const, + joined_at: 'joined_at' as const, + lineup: 'lineup' as const, + pick_order: 'pick_order' as const, + status: 'status' as const, + steam_id: 'steam_id' as const +} + +export const enumDraftGamesConstraint = { + draft_games_pkey: 'draft_games_pkey' as const +} + +export const enumDraftGamesSelectColumn = { + access: 'access' as const, + capacity: 'capacity' as const, + captain_selection: 'captain_selection' as const, + created_at: 'created_at' as const, + current_pick_lineup: 'current_pick_lineup' as const, + draft_order: 'draft_order' as const, + expires_at: 'expires_at' as const, + host_steam_id: 'host_steam_id' as const, + id: 'id' as const, + inner_squad: 'inner_squad' as const, + invite_code: 'invite_code' as const, + map_pool_id: 'map_pool_id' as const, + match_id: 'match_id' as const, + match_options_id: 'match_options_id' as const, + max_elo: 'max_elo' as const, + min_elo: 'min_elo' as const, + mode: 'mode' as const, + pick_deadline: 'pick_deadline' as const, + regions: 'regions' as const, + require_approval: 'require_approval' as const, + scheduled_at: 'scheduled_at' as const, + status: 'status' as const, + team_1_id: 'team_1_id' as const, + team_2_id: 'team_2_id' as const, + type: 'type' as const, + updated_at: 'updated_at' as const +} + +export const enumDraftGamesSelectColumnDraftGamesAggregateBoolExpBoolAndArgumentsColumns = { + inner_squad: 'inner_squad' as const, + require_approval: 'require_approval' as const +} + +export const enumDraftGamesSelectColumnDraftGamesAggregateBoolExpBoolOrArgumentsColumns = { + inner_squad: 'inner_squad' as const, + require_approval: 'require_approval' as const +} + +export const enumDraftGamesUpdateColumn = { + access: 'access' as const, + capacity: 'capacity' as const, + captain_selection: 'captain_selection' as const, + created_at: 'created_at' as const, + current_pick_lineup: 'current_pick_lineup' as const, + draft_order: 'draft_order' as const, + expires_at: 'expires_at' as const, + host_steam_id: 'host_steam_id' as const, + id: 'id' as const, + inner_squad: 'inner_squad' as const, + invite_code: 'invite_code' as const, + map_pool_id: 'map_pool_id' as const, + match_id: 'match_id' as const, + match_options_id: 'match_options_id' as const, + max_elo: 'max_elo' as const, + min_elo: 'min_elo' as const, + mode: 'mode' as const, + pick_deadline: 'pick_deadline' as const, + regions: 'regions' as const, + require_approval: 'require_approval' as const, + scheduled_at: 'scheduled_at' as const, + status: 'status' as const, + team_1_id: 'team_1_id' as const, + team_2_id: 'team_2_id' as const, + type: 'type' as const, + updated_at: 'updated_at' as const +} + +export const enumEAwardSourcesConstraint = { + e_award_sources_pkey: 'e_award_sources_pkey' as const +} + +export const enumEAwardSourcesEnum = { + manual: 'manual' as const, + season: 'season' as const, + tournament: 'tournament' as const +} + +export const enumEAwardSourcesSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEAwardSourcesUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEAwardTiersConstraint = { + e_award_tiers_pkey: 'e_award_tiers_pkey' as const +} + +export const enumEAwardTiersEnum = { + bronze: 'bronze' as const, + gold: 'gold' as const, + mvp: 'mvp' as const, + silver: 'silver' as const, + special: 'special' as const +} + +export const enumEAwardTiersSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEAwardTiersUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumECheckInSettingsConstraint = { + e_check_in_settings_pkey: 'e_check_in_settings_pkey' as const +} + +export const enumECheckInSettingsEnum = { + Admin: 'Admin' as const, + Captains: 'Captains' as const, + Players: 'Players' as const +} + +export const enumECheckInSettingsSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumECheckInSettingsUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEDraftGameCaptainSelectionConstraint = { + e_draft_game_captain_selection_pkey: 'e_draft_game_captain_selection_pkey' as const +} + +export const enumEDraftGameCaptainSelectionEnum = { + HostAndNext: 'HostAndNext' as const, + Manual: 'Manual' as const, + RandomTwo: 'RandomTwo' as const, + TopEloTwo: 'TopEloTwo' as const +} + +export const enumEDraftGameCaptainSelectionSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEDraftGameCaptainSelectionUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEDraftGameDraftOrderConstraint = { + e_draft_game_draft_order_pkey: 'e_draft_game_draft_order_pkey' as const +} + +export const enumEDraftGameDraftOrderEnum = { + Alternating: 'Alternating' as const, + FrontLoaded: 'FrontLoaded' as const, + Snake: 'Snake' as const +} + +export const enumEDraftGameDraftOrderSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEDraftGameDraftOrderUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEDraftGameModeConstraint = { + e_draft_game_mode_pkey: 'e_draft_game_mode_pkey' as const +} + +export const enumEDraftGameModeEnum = { + Captains: 'Captains' as const, + Host: 'Host' as const, + Pug: 'Pug' as const, + Teams: 'Teams' as const +} + +export const enumEDraftGameModeSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEDraftGameModeUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEDraftGamePlayerStatusConstraint = { + e_draft_game_player_status_pkey: 'e_draft_game_player_status_pkey' as const +} + +export const enumEDraftGamePlayerStatusEnum = { + Accepted: 'Accepted' as const, + Invited: 'Invited' as const, + Requested: 'Requested' as const, + Waitlist: 'Waitlist' as const +} + +export const enumEDraftGamePlayerStatusSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEDraftGamePlayerStatusUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEDraftGameStatusConstraint = { + e_draft_game_status_pkey: 'e_draft_game_status_pkey' as const +} + +export const enumEDraftGameStatusEnum = { + Canceled: 'Canceled' as const, + Completed: 'Completed' as const, + CreatingMatch: 'CreatingMatch' as const, + Drafting: 'Drafting' as const, + Filled: 'Filled' as const, + Open: 'Open' as const, + SelectingCaptains: 'SelectingCaptains' as const +} + +export const enumEDraftGameStatusSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEDraftGameStatusUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEEventMediaAccessConstraint = { + e_event_media_access_pkey: 'e_event_media_access_pkey' as const +} + +export const enumEEventMediaAccessEnum = { + Involved: 'Involved' as const, + Organizers: 'Organizers' as const +} + +export const enumEEventMediaAccessSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEEventMediaAccessUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEEventVisibilityConstraint = { + e_event_visibility_pkey: 'e_event_visibility_pkey' as const +} + +export const enumEEventVisibilityEnum = { + Friends: 'Friends' as const, + Private: 'Private' as const, + Public: 'Public' as const +} + +export const enumEEventVisibilitySelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEEventVisibilityUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEFriendStatusConstraint = { + e_friend_status_pkey: 'e_friend_status_pkey' as const +} + +export const enumEFriendStatusEnum = { + Accepted: 'Accepted' as const, + Pending: 'Pending' as const +} + +export const enumEFriendStatusSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEFriendStatusUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEGameCfgTypesConstraint = { + e_game_cfg_types_pkey: 'e_game_cfg_types_pkey' as const +} + +export const enumEGameCfgTypesEnum = { + Base: 'Base' as const, + Competitive: 'Competitive' as const, + Duel: 'Duel' as const, + Global: 'Global' as const, + Lan: 'Lan' as const, + Live: 'Live' as const, + Wingman: 'Wingman' as const +} + +export const enumEGameCfgTypesSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEGameCfgTypesUpdateColumn = { + description: 'description' as const, + 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 +} + +export const enumEGameServerNodeStatusesEnum = { + NotAcceptingNewMatches: 'NotAcceptingNewMatches' as const, + Offline: 'Offline' as const, + Online: 'Online' as const, + Setup: 'Setup' as const +} + +export const enumEGameServerNodeStatusesSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEGameServerNodeStatusesUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumELeagueMovementTypesConstraint = { + e_league_movement_types_pkey: 'e_league_movement_types_pkey' as const +} + +export const enumELeagueMovementTypesEnum = { + DirectPromote: 'DirectPromote' as const, + DirectRelegate: 'DirectRelegate' as const, + Hold: 'Hold' as const, + Promote: 'Promote' as const, + Relegate: 'Relegate' as const, + RelegationDown: 'RelegationDown' as const, + RelegationUp: 'RelegationUp' as const, + Remove: 'Remove' as const, + Stay: 'Stay' as const +} + +export const enumELeagueMovementTypesSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumELeagueMovementTypesUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumELeagueProposalStatusesConstraint = { + e_league_proposal_statuses_pkey: 'e_league_proposal_statuses_pkey' as const +} + +export const enumELeagueProposalStatusesEnum = { + Accepted: 'Accepted' as const, + Countered: 'Countered' as const, + Declined: 'Declined' as const, + Expired: 'Expired' as const, + Pending: 'Pending' as const, + Superseded: 'Superseded' as const +} + +export const enumELeagueProposalStatusesSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumELeagueProposalStatusesUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumELeagueRegistrationStatusesConstraint = { + e_league_registration_statuses_pkey: 'e_league_registration_statuses_pkey' as const +} + +export const enumELeagueRegistrationStatusesEnum = { + Approved: 'Approved' as const, + Declined: 'Declined' as const, + Pending: 'Pending' as const, + Waitlisted: 'Waitlisted' as const, + Withdrawn: 'Withdrawn' as const +} + +export const enumELeagueRegistrationStatusesSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumELeagueRegistrationStatusesUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumELeagueSeasonStatusesConstraint = { + e_league_season_statuses_pkey: 'e_league_season_statuses_pkey' as const +} + +export const enumELeagueSeasonStatusesEnum = { + Canceled: 'Canceled' as const, + Finished: 'Finished' as const, + Live: 'Live' as const, + Playoffs: 'Playoffs' as const, + RegistrationClosed: 'RegistrationClosed' as const, + RegistrationOpen: 'RegistrationOpen' as const, + Setup: 'Setup' as const +} + +export const enumELeagueSeasonStatusesSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumELeagueSeasonStatusesUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumELobbyAccessConstraint = { + e_lobby_access_pkey: 'e_lobby_access_pkey' as const +} + +export const enumELobbyAccessEnum = { + Friends: 'Friends' as const, + Invite: 'Invite' as const, + Open: 'Open' as const, + Private: 'Private' as const +} + +export const enumELobbyAccessSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumELobbyAccessUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumELobbyPlayerStatusConstraint = { + e_lobby_player_status_pkey: 'e_lobby_player_status_pkey' as const +} + +export const enumELobbyPlayerStatusEnum = { + Accepted: 'Accepted' as const, + Invited: 'Invited' as const +} + +export const enumELobbyPlayerStatusSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumELobbyPlayerStatusUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEMapPoolTypesConstraint = { + e_map_pool_types_pkey: 'e_map_pool_types_pkey' as const +} + +export const enumEMapPoolTypesEnum = { + Competitive: 'Competitive' as const, + Custom: 'Custom' as const, + Duel: 'Duel' as const, + Wingman: 'Wingman' as const +} + +export const enumEMapPoolTypesSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEMapPoolTypesUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEMatchClipVisibilityConstraint = { + e_match_clip_visibility_pkey: 'e_match_clip_visibility_pkey' as const +} + +export const enumEMatchClipVisibilityEnum = { + match: 'match' as const, + private: 'private' as const, + public: 'public' as const +} + +export const enumEMatchClipVisibilitySelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEMatchClipVisibilityUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEMatchMapStatusConstraint = { + match_map_status_pkey: 'match_map_status_pkey' as const +} + +export const enumEMatchMapStatusEnum = { + Canceled: 'Canceled' as const, + Finished: 'Finished' as const, + Knife: 'Knife' as const, + Live: 'Live' as const, + Overtime: 'Overtime' as const, + Paused: 'Paused' as const, + Scheduled: 'Scheduled' as const, + Surrendered: 'Surrendered' as const, + UploadingDemo: 'UploadingDemo' as const, + WaitingForTV: 'WaitingForTV' as const, + Warmup: 'Warmup' as const +} + +export const enumEMatchMapStatusSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEMatchMapStatusUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEMatchModeConstraint = { + e_match_mode_pkey: 'e_match_mode_pkey' as const +} + +export const enumEMatchModeEnum = { + admin: 'admin' as const, + auto: 'auto' as const +} + +export const enumEMatchModeSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEMatchModeUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEMatchPartySourcesConstraint = { + e_match_party_sources_pkey: 'e_match_party_sources_pkey' as const +} + +export const enumEMatchPartySourcesEnum = { + faceit: 'faceit' as const, + lobby: 'lobby' as const, + valve: 'valve' as const +} + +export const enumEMatchPartySourcesSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEMatchPartySourcesUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEMatchStatusConstraint = { + e_match_status_pkey: 'e_match_status_pkey' as const +} + +export const enumEMatchStatusEnum = { + Canceled: 'Canceled' as const, + Finished: 'Finished' as const, + Forfeit: 'Forfeit' as const, + Live: 'Live' as const, + PickingPlayers: 'PickingPlayers' as const, + Scheduled: 'Scheduled' as const, + Surrendered: 'Surrendered' as const, + Tie: 'Tie' as const, + Veto: 'Veto' as const, + WaitingForCheckIn: 'WaitingForCheckIn' as const, + WaitingForServer: 'WaitingForServer' as const +} + +export const enumEMatchStatusSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEMatchStatusUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEMatchTypesConstraint = { + e_match_types_pkey: 'e_match_types_pkey' as const +} + +export const enumEMatchTypesEnum = { + Competitive: 'Competitive' as const, + Duel: 'Duel' as const, + Faceit: 'Faceit' as const, + Premier: 'Premier' as const, + Wingman: 'Wingman' as const +} + +export const enumEMatchTypesSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEMatchTypesUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumENotificationTypesConstraint = { + e_notification_types_pkey: 'e_notification_types_pkey' as const +} + +export const enumENotificationTypesEnum = { + AwardGranted: 'AwardGranted' as const, + ChatMessage: 'ChatMessage' as const, + ClipReady: 'ClipReady' as const, + DedicatedServerRconStatus: 'DedicatedServerRconStatus' as const, + DedicatedServerStatus: 'DedicatedServerStatus' as const, + DraftInvite: 'DraftInvite' as const, + EloRecompute: 'EloRecompute' as const, + EventReminder: 'EventReminder' as const, + FormTeamSuggestion: 'FormTeamSuggestion' as const, + GameNodeStatus: 'GameNodeStatus' as const, + GameUpdate: 'GameUpdate' as const, + LeagueMatchUnscheduled: 'LeagueMatchUnscheduled' as const, + LeagueProposalAccepted: 'LeagueProposalAccepted' as const, + LeagueProposalDeclined: 'LeagueProposalDeclined' as const, + LeagueProposalReceived: 'LeagueProposalReceived' as const, + LeagueRegistrationDecision: 'LeagueRegistrationDecision' as const, + LeagueRosterUndersized: 'LeagueRosterUndersized' as const, + MatchAbandoned: 'MatchAbandoned' as const, + MatchChatMessage: 'MatchChatMessage' as const, + MatchImported: 'MatchImported' as const, + MatchStatsReady: 'MatchStatsReady' as const, + MatchStatusChange: 'MatchStatusChange' as const, + MatchSupport: 'MatchSupport' as const, + NadeDriftScanFinished: 'NadeDriftScanFinished' as const, + NadePracticeInvite: 'NadePracticeInvite' as const, + NadePracticeReady: 'NadePracticeReady' as const, + NameChangeApproved: 'NameChangeApproved' as const, + NameChangeDenied: 'NameChangeDenied' as const, + NameChangeRequest: 'NameChangeRequest' as const, + NewsPublished: 'NewsPublished' as const, + PlayerReindex: 'PlayerReindex' as const, + PlayerSanctioned: 'PlayerSanctioned' as const, + ScrimAlertMatch: 'ScrimAlertMatch' as const, + ScrimMatchCanceled: 'ScrimMatchCanceled' as const, + ScrimMatchScheduled: 'ScrimMatchScheduled' as const, + ScrimRequestAccepted: 'ScrimRequestAccepted' as const, + ScrimRequestCountered: 'ScrimRequestCountered' as const, + ScrimRequestDeclined: 'ScrimRequestDeclined' as const, + ScrimRequestExpired: 'ScrimRequestExpired' as const, + ScrimRequestReceived: 'ScrimRequestReceived' as const, + ScrimTimeChanged: 'ScrimTimeChanged' as const, + SeasonEnded: 'SeasonEnded' as const, + StorageScan: 'StorageScan' as const, + TeamInvite: 'TeamInvite' as const, + TournamentCheckInClosing: 'TournamentCheckInClosing' as const, + TournamentCheckInMissed: 'TournamentCheckInMissed' as const, + TournamentCheckInOpen: 'TournamentCheckInOpen' as const, + TournamentCreated: 'TournamentCreated' as const, + TournamentInvite: 'TournamentInvite' as const, + TournamentPartySignup: 'TournamentPartySignup' as const, + TournamentReminder: 'TournamentReminder' as const, + TournamentTeamInvite: 'TournamentTeamInvite' as const, + UtilityDriftScanFinished: 'UtilityDriftScanFinished' as const, + UtilityPracticeInvite: 'UtilityPracticeInvite' as const, + UtilityPracticeReady: 'UtilityPracticeReady' as const +} + +export const enumENotificationTypesSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumENotificationTypesUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEObjectiveTypesConstraint = { + e_objective__pkey: 'e_objective__pkey' as const +} + +export const enumEObjectiveTypesEnum = { + Defused: 'Defused' as const, + Exploded: 'Exploded' as const, + Planted: 'Planted' as const +} + +export const enumEObjectiveTypesSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEObjectiveTypesUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEPlayerRolesConstraint = { + e_player_roles_pkey: 'e_player_roles_pkey' as const +} + +export const enumEPlayerRolesEnum = { + administrator: 'administrator' as const, + match_organizer: 'match_organizer' as const, + moderator: 'moderator' as const, + streamer: 'streamer' as const, + tournament_organizer: 'tournament_organizer' as const, + user: 'user' as const, + verified_user: 'verified_user' as const +} + +export const enumEPlayerRolesSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEPlayerRolesUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEPluginRuntimesConstraint = { + e_plugin_runtimes_pkey: 'e_plugin_runtimes_pkey' as const +} + +export const enumEPluginRuntimesEnum = { + counterstrikesharp: 'counterstrikesharp' as const, + swiftlys2: 'swiftlys2' as const +} + +export const enumEPluginRuntimesSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEPluginRuntimesUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEReadySettingsConstraint = { + e_ready_settings_pkey: 'e_ready_settings_pkey' as const +} + +export const enumEReadySettingsEnum = { + Admin: 'Admin' as const, + Captains: 'Captains' as const, + Coach: 'Coach' as const, + Players: 'Players' as const +} + +export const enumEReadySettingsSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEReadySettingsUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumESanctionScopesConstraint = { + e_sanction_scopes_pkey: 'e_sanction_scopes_pkey' as const +} + +export const enumESanctionScopesSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumESanctionScopesUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumESanctionSourcesConstraint = { + e_sanction_sources_pkey: 'e_sanction_sources_pkey' as const +} + +export const enumESanctionSourcesSelectColumn = { + default_durations: 'default_durations' as const, + default_enabled: 'default_enabled' as const, + default_scope: 'default_scope' as const, + default_threshold: 'default_threshold' as const, + default_window_days: 'default_window_days' as const, + description: 'description' as const, + value: 'value' as const, + writes_platform_ban: 'writes_platform_ban' as const +} + +export const enumESanctionSourcesUpdateColumn = { + default_durations: 'default_durations' as const, + default_enabled: 'default_enabled' as const, + default_scope: 'default_scope' as const, + default_threshold: 'default_threshold' as const, + default_window_days: 'default_window_days' as const, + description: 'description' as const, + value: 'value' as const, + writes_platform_ban: 'writes_platform_ban' as const +} + +export const enumESanctionTypesConstraint = { + e_sanction_types_pkey: 'e_sanction_types_pkey' as const +} + +export const enumESanctionTypesEnum = { + ban: 'ban' as const, + gag: 'gag' as const, + mute: 'mute' as const, + silence: 'silence' as const +} + +export const enumESanctionTypesSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumESanctionTypesUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEScrimRequestStatusesConstraint = { + e_scrim_request_statuses_pkey: 'e_scrim_request_statuses_pkey' as const +} + +export const enumEScrimRequestStatusesEnum = { + Accepted: 'Accepted' as const, + Cancelled: 'Cancelled' as const, + Countered: 'Countered' as const, + Declined: 'Declined' as const, + Expired: 'Expired' as const, + Matched: 'Matched' as const, + Pending: 'Pending' as const +} + +export const enumEScrimRequestStatusesSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEScrimRequestStatusesUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEServerTypesConstraint = { + e_server_types_pkey: 'e_server_types_pkey' as const +} + +export const enumEServerTypesEnum = { + ArmsRace: 'ArmsRace' as const, + Casual: 'Casual' as const, + Competitive: 'Competitive' as const, + Custom: 'Custom' as const, + Deathmatch: 'Deathmatch' as const, + Practice: 'Practice' as const, + Ranked: 'Ranked' as const, + Retake: 'Retake' as const, + Wingman: 'Wingman' as const +} + +export const enumEServerTypesSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEServerTypesUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumESidesConstraint = { + e_teams_pkey: 'e_teams_pkey' as const +} + +export const enumESidesEnum = { + CT: 'CT' as const, + None: 'None' as const, + Spectator: 'Spectator' as const, + TERRORIST: 'TERRORIST' as const +} + +export const enumESidesSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumESidesUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumESystemAlertTypesConstraint = { + e_system_alert_types_pkey: 'e_system_alert_types_pkey' as const +} + +export const enumESystemAlertTypesEnum = { + critical: 'critical' as const, + info: 'info' as const, + warning: 'warning' as const +} + +export const enumESystemAlertTypesSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumESystemAlertTypesUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumETeamRolesConstraint = { + e_team_roles_pkey: 'e_team_roles_pkey' as const +} + +export const enumETeamRolesEnum = { + Admin: 'Admin' as const, + Invite: 'Invite' as const, + Member: 'Member' as const +} + +export const enumETeamRolesSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumETeamRolesUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumETeamRosterStatusesConstraint = { + e_team_roster_statuses_pkey: 'e_team_roster_statuses_pkey' as const +} + +export const enumETeamRosterStatusesEnum = { + Benched: 'Benched' as const, + Starter: 'Starter' as const, + Substitute: 'Substitute' as const +} + +export const enumETeamRosterStatusesSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumETeamRosterStatusesUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumETimeoutSettingsConstraint = { + e_timeout_settings_pkey: 'e_timeout_settings_pkey' as const +} + +export const enumETimeoutSettingsEnum = { + Admin: 'Admin' as const, + Coach: 'Coach' as const, + CoachAndCaptains: 'CoachAndCaptains' as const, + CoachAndPlayers: 'CoachAndPlayers' as const +} + +export const enumETimeoutSettingsSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumETimeoutSettingsUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumETournamentCategoriesConstraint = { + e_tournament_categories_pkey: 'e_tournament_categories_pkey' as const +} + +export const enumETournamentCategoriesEnum = { + LAN: 'LAN' as const, + League: 'League' as const, + LocationEvent: 'LocationEvent' as const, + OnlineEvent: 'OnlineEvent' as const +} + +export const enumETournamentCategoriesSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumETournamentCategoriesUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumETournamentFreeAgentStatusesConstraint = { + e_tournament_free_agent_statuses_pkey: 'e_tournament_free_agent_statuses_pkey' as const +} + +export const enumETournamentFreeAgentStatusesEnum = { + drafted: 'drafted' as const, + registered: 'registered' as const, + waitlisted: 'waitlisted' as const, + withdrawn: 'withdrawn' as const +} + +export const enumETournamentFreeAgentStatusesSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumETournamentFreeAgentStatusesUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumETournamentRegistrationTypesConstraint = { + e_tournament_registration_types_pkey: 'e_tournament_registration_types_pkey' as const +} + +export const enumETournamentRegistrationTypesEnum = { + both: 'both' as const, + free_agents: 'free_agents' as const, + teams: 'teams' as const +} + +export const enumETournamentRegistrationTypesSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumETournamentRegistrationTypesUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumETournamentStageTypesConstraint = { + e_tournament_stage_types_pkey: 'e_tournament_stage_types_pkey' as const +} + +export const enumETournamentStageTypesEnum = { + DoubleElimination: 'DoubleElimination' as const, + RoundRobin: 'RoundRobin' as const, + SingleElimination: 'SingleElimination' as const, + Swiss: 'Swiss' as const +} + +export const enumETournamentStageTypesSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumETournamentStageTypesUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumETournamentStatusConstraint = { + e_tournament_status_pkey: 'e_tournament_status_pkey' as const +} + +export const enumETournamentStatusEnum = { + Cancelled: 'Cancelled' as const, + CancelledMinTeams: 'CancelledMinTeams' as const, + CheckInReview: 'CheckInReview' as const, + Finished: 'Finished' as const, + Live: 'Live' as const, + Paused: 'Paused' as const, + RegistrationClosed: 'RegistrationClosed' as const, + RegistrationOpen: 'RegistrationOpen' as const, + Setup: 'Setup' as const +} + +export const enumETournamentStatusSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumETournamentStatusUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEUtilityPracticeAccessConstraint = { + e_utility_practice_access_pkey: 'e_utility_practice_access_pkey' as const +} + +export const enumEUtilityPracticeAccessEnum = { + Friends: 'Friends' as const, + Invite: 'Invite' as const, + Open: 'Open' as const, + Private: 'Private' as const +} + +export const enumEUtilityPracticeAccessSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEUtilityPracticeAccessUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEUtilityPracticeStatusesConstraint = { + e_utility_practice_statuses_pkey: 'e_utility_practice_statuses_pkey' as const +} + +export const enumEUtilityPracticeStatusesEnum = { + Ended: 'Ended' as const, + Failed: 'Failed' as const, + Ready: 'Ready' as const, + Starting: 'Starting' as const +} + +export const enumEUtilityPracticeStatusesSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEUtilityPracticeStatusesUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEUtilitySourcesConstraint = { + e_utility_sources_pkey: 'e_utility_sources_pkey' as const +} + +export const enumEUtilitySourcesEnum = { + demo: 'demo' as const, + editor: 'editor' as const, + fork: 'fork' as const, + import: 'import' as const, + plugin: 'plugin' as const +} + +export const enumEUtilitySourcesSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEUtilitySourcesUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEUtilityTechniquesConstraint = { + e_utility_techniques_pkey: 'e_utility_techniques_pkey' as const +} + +export const enumEUtilityTechniquesEnum = { + Crouch: 'Crouch' as const, + CrouchJump: 'CrouchJump' as const, + Jump: 'Jump' as const, + RunJump: 'RunJump' as const, + Running: 'Running' as const, + Stationary: 'Stationary' as const, + WalkJump: 'WalkJump' as const, + Walking: 'Walking' as const +} + +export const enumEUtilityTechniquesSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEUtilityTechniquesUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEUtilityThrowStrengthsConstraint = { + e_utility_throw_strengths_pkey: 'e_utility_throw_strengths_pkey' as const +} + +export const enumEUtilityThrowStrengthsEnum = { + Drop: 'Drop' as const, + Full: 'Full' as const, + Half: 'Half' as const +} + +export const enumEUtilityThrowStrengthsSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEUtilityThrowStrengthsUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEUtilityTypesConstraint = { + e_utility_types_pkey: 'e_utility_types_pkey' as const +} + +export const enumEUtilityTypesEnum = { + Decoy: 'Decoy' as const, + Flash: 'Flash' as const, + HighExplosive: 'HighExplosive' as const, + Molotov: 'Molotov' as const, + Smoke: 'Smoke' as const +} + +export const enumEUtilityTypesSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEUtilityTypesUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEUtilityVisibilityConstraint = { + e_utility_visibility_pkey: 'e_utility_visibility_pkey' as const +} + +export const enumEUtilityVisibilityEnum = { + Private: 'Private' as const, + Public: 'Public' as const, + Team: 'Team' as const +} + +export const enumEUtilityVisibilitySelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEUtilityVisibilityUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEVetoPickTypesConstraint = { + e_veto_pick_type_pkey: 'e_veto_pick_type_pkey' as const +} + +export const enumEVetoPickTypesEnum = { + Ban: 'Ban' as const, + Decider: 'Decider' as const, + Pick: 'Pick' as const, + Side: 'Side' as const +} + +export const enumEVetoPickTypesSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEVetoPickTypesUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEWinningReasonsConstraint = { + e_winning_reasons_pkey: 'e_winning_reasons_pkey' as const +} + +export const enumEWinningReasonsEnum = { + BombDefused: 'BombDefused' as const, + BombExploded: 'BombExploded' as const, + CTsWin: 'CTsWin' as const, + TerroristsWin: 'TerroristsWin' as const, + TimeRanOut: 'TimeRanOut' as const, + Unknown: 'Unknown' as const +} + +export const enumEWinningReasonsSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEWinningReasonsUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEventMatchLinksConstraint = { + event_match_links_pkey: 'event_match_links_pkey' as const +} + +export const enumEventMatchLinksSelectColumn = { + created_at: 'created_at' as const, + event_id: 'event_id' as const, + match_id: 'match_id' as const +} + +export const enumEventMatchLinksUpdateColumn = { + created_at: 'created_at' as const, + event_id: 'event_id' as const, + match_id: 'match_id' as const +} + +export const enumEventMediaConstraint = { + event_media_event_id_filename_key: 'event_media_event_id_filename_key' as const, + event_media_pkey: 'event_media_pkey' as const +} + +export const enumEventMediaPlayersConstraint = { + event_media_players_pkey: 'event_media_players_pkey' as const +} + +export const enumEventMediaPlayersSelectColumn = { + created_at: 'created_at' as const, + media_id: 'media_id' as const, + steam_id: 'steam_id' as const +} + +export const enumEventMediaPlayersUpdateColumn = { + created_at: 'created_at' as const, + media_id: 'media_id' as const, + steam_id: 'steam_id' as const +} + +export const enumEventMediaSelectColumn = { + created_at: 'created_at' as const, + event_id: 'event_id' as const, + external_url: 'external_url' as const, + filename: 'filename' as const, + id: 'id' as const, + mime_type: 'mime_type' as const, + size: 'size' as const, + thumbnail_filename: 'thumbnail_filename' as const, + title: 'title' as const, + uploader_steam_id: 'uploader_steam_id' as const +} + +export const enumEventMediaUpdateColumn = { + created_at: 'created_at' as const, + event_id: 'event_id' as const, + external_url: 'external_url' as const, + filename: 'filename' as const, + id: 'id' as const, + mime_type: 'mime_type' as const, + size: 'size' as const, + thumbnail_filename: 'thumbnail_filename' as const, + title: 'title' as const, + uploader_steam_id: 'uploader_steam_id' as const +} + +export const enumEventOrganizersConstraint = { + event_organizers_pkey: 'event_organizers_pkey' as const +} + +export const enumEventOrganizersSelectColumn = { + created_at: 'created_at' as const, + event_id: 'event_id' as const, + steam_id: 'steam_id' as const +} + +export const enumEventOrganizersUpdateColumn = { + created_at: 'created_at' as const, + event_id: 'event_id' as const, + steam_id: 'steam_id' as const +} + +export const enumEventPlayersConstraint = { + event_players_pkey: 'event_players_pkey' as const +} + +export const enumEventPlayersSelectColumn = { + created_at: 'created_at' as const, + event_id: 'event_id' as const, + steam_id: 'steam_id' as const +} + +export const enumEventPlayersUpdateColumn = { + created_at: 'created_at' as const, + event_id: 'event_id' as const, + steam_id: 'steam_id' as const +} + +export const enumEventTeamsConstraint = { + event_teams_pkey: 'event_teams_pkey' as const +} + +export const enumEventTeamsSelectColumn = { + created_at: 'created_at' as const, + event_id: 'event_id' as const, + team_id: 'team_id' as const +} + +export const enumEventTeamsUpdateColumn = { + created_at: 'created_at' as const, + event_id: 'event_id' as const, + team_id: 'team_id' as const +} + +export const enumEventTournamentsConstraint = { + event_tournaments_pkey: 'event_tournaments_pkey' as const +} + +export const enumEventTournamentsSelectColumn = { + created_at: 'created_at' as const, + event_id: 'event_id' as const, + tournament_id: 'tournament_id' as const +} + +export const enumEventTournamentsUpdateColumn = { + created_at: 'created_at' as const, + event_id: 'event_id' as const, + tournament_id: 'tournament_id' as const +} + +export const enumEventsConstraint = { + events_pkey: 'events_pkey' as const +} + +export const enumEventsSelectColumn = { + banner_media_id: 'banner_media_id' as const, + created_at: 'created_at' as const, + description: 'description' as const, + ends_at: 'ends_at' as const, + hide_creator_organizer: 'hide_creator_organizer' as const, + id: 'id' as const, + media_access: 'media_access' as const, + name: 'name' as const, + organizer_steam_id: 'organizer_steam_id' as const, + starts_at: 'starts_at' as const, + visibility: 'visibility' as const +} + +export const enumEventsUpdateColumn = { + banner_media_id: 'banner_media_id' as const, + created_at: 'created_at' as const, + description: 'description' as const, + ends_at: 'ends_at' as const, + hide_creator_organizer: 'hide_creator_organizer' as const, + id: 'id' as const, + media_access: 'media_access' as const, + name: 'name' as const, + organizer_steam_id: 'organizer_steam_id' as const, + starts_at: 'starts_at' as const, + visibility: 'visibility' as const +} + +export const enumFriendsConstraint = { + friends_pkey: 'friends_pkey' as const, + friends_player_steam_id_other_player_steam_id_key: 'friends_player_steam_id_other_player_steam_id_key' as const +} + +export const enumFriendsSelectColumn = { + other_player_steam_id: 'other_player_steam_id' as const, + player_steam_id: 'player_steam_id' as const, + status: 'status' as const +} + +export const enumFriendsUpdateColumn = { + other_player_steam_id: 'other_player_steam_id' as const, + player_steam_id: 'player_steam_id' as const, + status: 'status' as const +} + +export const enumGameModePluginsConstraint = { + game_mode_plugins_pkey: 'game_mode_plugins_pkey' as const +} + +export const enumGameModePluginsSelectColumn = { + config: 'config' as const, + game_mode_id: 'game_mode_id' as const, + load_order: 'load_order' as const, + plugin_slug: 'plugin_slug' as const, + required: 'required' as const +} + +export const enumGameModePluginsSelectColumnGameModePluginsAggregateBoolExpBoolAndArgumentsColumns = { + required: 'required' as const +} + +export const enumGameModePluginsSelectColumnGameModePluginsAggregateBoolExpBoolOrArgumentsColumns = { + required: 'required' as const +} + +export const enumGameModePluginsUpdateColumn = { + config: 'config' as const, + game_mode_id: 'game_mode_id' as const, + load_order: 'load_order' as const, + plugin_slug: 'plugin_slug' as const, + required: 'required' as const +} + +export const enumGameModesConstraint = { + game_modes_pkey: 'game_modes_pkey' as const, + game_modes_slug_key: 'game_modes_slug_key' as const +} + +export const enumGameModesSelectColumn = { + archived_at: 'archived_at' as const, + cfg: 'cfg' as const, + competitive_safe: 'competitive_safe' as const, + created_at: 'created_at' as const, + description: 'description' as const, + enabled: 'enabled' as const, + extra_game_params: 'extra_game_params' as const, + icon: 'icon' as const, + id: 'id' as const, + name: 'name' as const, + slug: 'slug' as const, + updated_at: 'updated_at' as const +} + +export const enumGameModesUpdateColumn = { + archived_at: 'archived_at' as const, + cfg: 'cfg' as const, + competitive_safe: 'competitive_safe' as const, + created_at: 'created_at' as const, + description: 'description' as const, + enabled: 'enabled' as const, + extra_game_params: 'extra_game_params' as const, + icon: 'icon' as const, + id: 'id' as const, + name: 'name' as const, + slug: 'slug' as const, + updated_at: 'updated_at' as const +} + +export const enumGamePluginInstallsConstraint = { + game_plugin_installs_pkey: 'game_plugin_installs_pkey' as const +} + +export const enumGamePluginInstallsSelectColumn = { + cfg: 'cfg' as const, + channel: 'channel' as const, + created_at: 'created_at' as const, + disable_server_guidelines: 'disable_server_guidelines' as const, + enabled: 'enabled' as const, + load_custom: 'load_custom' as const, + load_ranked: 'load_ranked' as const, + load_tournaments: 'load_tournaments' as const, + plugin_slug: 'plugin_slug' as const, + updated_at: 'updated_at' as const, + version: 'version' as const +} + +export const enumGamePluginInstallsUpdateColumn = { + cfg: 'cfg' as const, + channel: 'channel' as const, + created_at: 'created_at' as const, + disable_server_guidelines: 'disable_server_guidelines' as const, + enabled: 'enabled' as const, + load_custom: 'load_custom' as const, + load_ranked: 'load_ranked' as const, + load_tournaments: 'load_tournaments' as const, + plugin_slug: 'plugin_slug' as const, + updated_at: 'updated_at' as const, + version: 'version' as const +} + +export const enumGamePluginVersionsConstraint = { + game_plugin_versions_pkey: 'game_plugin_versions_pkey' as const +} + +export const enumGamePluginVersionsSelectColumn = { + install_path: 'install_path' as const, + layout: 'layout' as const, + plugin_slug: 'plugin_slug' as const, + prerelease: 'prerelease' as const, + published_at: 'published_at' as const, + runtime: 'runtime' as const, + sha256: 'sha256' as const, + size: 'size' as const, + url: 'url' as const, + version: 'version' as const +} + +export const enumGamePluginVersionsSelectColumnGamePluginVersionsAggregateBoolExpBoolAndArgumentsColumns = { + prerelease: 'prerelease' as const +} + +export const enumGamePluginVersionsSelectColumnGamePluginVersionsAggregateBoolExpBoolOrArgumentsColumns = { + prerelease: 'prerelease' as const +} + +export const enumGamePluginVersionsUpdateColumn = { + install_path: 'install_path' as const, + layout: 'layout' as const, + plugin_slug: 'plugin_slug' as const, + prerelease: 'prerelease' as const, + published_at: 'published_at' as const, + runtime: 'runtime' as const, + sha256: 'sha256' as const, + size: 'size' as const, + url: 'url' as const, + version: 'version' as const +} + +export const enumGamePluginsConstraint = { + game_plugins_pkey: 'game_plugins_pkey' as const +} + +export const enumGamePluginsSelectColumn = { + author: 'author' as const, + config_path: 'config_path' as const, + config_schema: 'config_schema' as const, + cvars: 'cvars' as const, + description: 'description' as const, + homepage: 'homepage' as const, + hot_swappable: 'hot_swappable' as const, + kind: 'kind' as const, + name: 'name' as const, + pairs_with: 'pairs_with' as const, + panel: 'panel' as const, + requires_server_guidelines_disabled: 'requires_server_guidelines_disabled' as const, + requires_service: 'requires_service' as const, + slug: 'slug' as const, + source: 'source' as const, + synced_at: 'synced_at' as const, + tags: 'tags' as const, + verified: 'verified' as const, + wiring: 'wiring' as const +} + +export const enumGamePluginsUpdateColumn = { + author: 'author' as const, + config_path: 'config_path' as const, + config_schema: 'config_schema' as const, + cvars: 'cvars' as const, + description: 'description' as const, + homepage: 'homepage' as const, + hot_swappable: 'hot_swappable' as const, + kind: 'kind' as const, + name: 'name' as const, + pairs_with: 'pairs_with' as const, + panel: 'panel' as const, + requires_server_guidelines_disabled: 'requires_server_guidelines_disabled' as const, + requires_service: 'requires_service' as const, + slug: 'slug' as const, + source: 'source' as const, + synced_at: 'synced_at' as const, + tags: 'tags' as const, + verified: 'verified' as const, + wiring: 'wiring' as const +} + +export const enumGameServerNodePluginsConstraint = { + game_server_node_plugins_node_plugin_key: 'game_server_node_plugins_node_plugin_key' as const, + game_server_node_plugins_pkey: 'game_server_node_plugins_pkey' as const +} + +export const enumGameServerNodePluginsSelectColumn = { + channel: 'channel' as const, + created_at: 'created_at' as const, + detected: 'detected' as const, + detected_version: 'detected_version' as const, + game_server_node_id: 'game_server_node_id' as const, + id: 'id' as const, + installed_at: 'installed_at' as const, + last_error: 'last_error' as const, + path: 'path' as const, + plugin_slug: 'plugin_slug' as const, + previous_version: 'previous_version' 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, + path: 'path' as const, + plugin_slug: 'plugin_slug' as const, + previous_version: 'previous_version' 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 +} + +export const enumGameServerNodesSelectColumn = { + build_id: 'build_id' as const, + cpu_cores_per_socket: 'cpu_cores_per_socket' as const, + cpu_frequency_info: 'cpu_frequency_info' as const, + cpu_governor_info: 'cpu_governor_info' as const, + cpu_sockets: 'cpu_sockets' as const, + cpu_threads_per_core: 'cpu_threads_per_core' as const, + cpu_warnings: 'cpu_warnings' as const, + cs2_launch_options: 'cs2_launch_options' as const, + cs2_video_settings: 'cs2_video_settings' as const, + csgo_build_id: 'csgo_build_id' as const, + demo_network_limiter: 'demo_network_limiter' as const, + disk_available_gb: 'disk_available_gb' as const, + disk_used_percent: 'disk_used_percent' as const, + enabled: 'enabled' as const, + enabled_for_match_making: 'enabled_for_match_making' as const, + end_port_range: 'end_port_range' as const, + gpu: 'gpu' as const, + gpu_demos_enabled: 'gpu_demos_enabled' as const, + gpu_info: 'gpu_info' as const, + gpu_rendering_enabled: 'gpu_rendering_enabled' as const, + gpu_streaming_enabled: 'gpu_streaming_enabled' as const, + id: 'id' as const, + label: 'label' as const, + lan_ip: 'lan_ip' as const, + node_ip: 'node_ip' as const, + offline_at: 'offline_at' as const, + 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, + shader_bake_progress_stage: 'shader_bake_progress_stage' as const, + shader_bake_status: 'shader_bake_status' as const, + shader_bake_status_history: 'shader_bake_status_history' as const, + start_port_range: 'start_port_range' as const, + status: 'status' as const, + supports_cpu_pinning: 'supports_cpu_pinning' as const, + supports_low_latency: 'supports_low_latency' as const, + token: 'token' as const, + update_status: 'update_status' as const +} + +export const enumGameServerNodesSelectColumnGameServerNodesAggregateBoolExpBoolAndArgumentsColumns = { + enabled: 'enabled' as const, + enabled_for_match_making: 'enabled_for_match_making' as const, + gpu: 'gpu' as const, + gpu_demos_enabled: 'gpu_demos_enabled' as const, + gpu_rendering_enabled: 'gpu_rendering_enabled' as const, + gpu_streaming_enabled: 'gpu_streaming_enabled' as const, + supports_cpu_pinning: 'supports_cpu_pinning' as const, + supports_low_latency: 'supports_low_latency' as const +} + +export const enumGameServerNodesSelectColumnGameServerNodesAggregateBoolExpBoolOrArgumentsColumns = { + enabled: 'enabled' as const, + enabled_for_match_making: 'enabled_for_match_making' as const, + gpu: 'gpu' as const, + gpu_demos_enabled: 'gpu_demos_enabled' as const, + gpu_rendering_enabled: 'gpu_rendering_enabled' as const, + gpu_streaming_enabled: 'gpu_streaming_enabled' as const, + supports_cpu_pinning: 'supports_cpu_pinning' as const, + supports_low_latency: 'supports_low_latency' as const +} + +export const enumGameServerNodesUpdateColumn = { + build_id: 'build_id' as const, + cpu_cores_per_socket: 'cpu_cores_per_socket' as const, + cpu_frequency_info: 'cpu_frequency_info' as const, + cpu_governor_info: 'cpu_governor_info' as const, + cpu_sockets: 'cpu_sockets' as const, + cpu_threads_per_core: 'cpu_threads_per_core' as const, + cpu_warnings: 'cpu_warnings' as const, + cs2_launch_options: 'cs2_launch_options' as const, + cs2_video_settings: 'cs2_video_settings' as const, + csgo_build_id: 'csgo_build_id' as const, + demo_network_limiter: 'demo_network_limiter' as const, + disk_available_gb: 'disk_available_gb' as const, + disk_used_percent: 'disk_used_percent' as const, + enabled: 'enabled' as const, + enabled_for_match_making: 'enabled_for_match_making' as const, + end_port_range: 'end_port_range' as const, + gpu: 'gpu' as const, + gpu_demos_enabled: 'gpu_demos_enabled' as const, + gpu_info: 'gpu_info' as const, + gpu_rendering_enabled: 'gpu_rendering_enabled' as const, + gpu_streaming_enabled: 'gpu_streaming_enabled' as const, + id: 'id' as const, + label: 'label' as const, + lan_ip: 'lan_ip' as const, + node_ip: 'node_ip' as const, + offline_at: 'offline_at' as const, + 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, + shader_bake_progress_stage: 'shader_bake_progress_stage' as const, + shader_bake_status: 'shader_bake_status' as const, + shader_bake_status_history: 'shader_bake_status_history' as const, + start_port_range: 'start_port_range' as const, + status: 'status' as const, + supports_cpu_pinning: 'supports_cpu_pinning' as const, + supports_low_latency: 'supports_low_latency' as const, + token: 'token' as const, + update_status: 'update_status' as const +} + +export const enumGameVersionsConstraint = { + game_versions_pkey: 'game_versions_pkey' as const, + idx_game_versions_current: 'idx_game_versions_current' as const +} + +export const enumGameVersionsSelectColumn = { + build_id: 'build_id' as const, + current: 'current' as const, + cvars: 'cvars' as const, + description: 'description' as const, + downloads: 'downloads' as const, + updated_at: 'updated_at' as const, + version: 'version' as const +} + +export const enumGameVersionsUpdateColumn = { + build_id: 'build_id' as const, + current: 'current' as const, + cvars: 'cvars' as const, + description: 'description' as const, + downloads: 'downloads' as const, + updated_at: 'updated_at' as const, + version: 'version' as const +} + +export const enumGamedataSignatureValidationsConstraint = { + gamedata_signature_validations_build_branch_idx: 'gamedata_signature_validations_build_branch_idx' as const, + gamedata_signature_validations_pkey: 'gamedata_signature_validations_pkey' as const +} + +export const enumGamedataSignatureValidationsSelectColumn = { + branch: 'branch' as const, + build_id: 'build_id' as const, + id: 'id' as const, + results: 'results' as const, + status: 'status' as const, + validated_at: 'validated_at' as const +} + +export const enumGamedataSignatureValidationsUpdateColumn = { + branch: 'branch' as const, + build_id: 'build_id' as const, + id: 'id' as const, + results: 'results' as const, + status: 'status' as const, + validated_at: 'validated_at' as const +} + +export const enumLeaderboardEntriesSelectColumn = { + matches_played: 'matches_played' as const, + player_avatar_url: 'player_avatar_url' as const, + player_country: 'player_country' as const, + player_custom_avatar_url: 'player_custom_avatar_url' as const, + player_name: 'player_name' as const, + player_steam_id: 'player_steam_id' as const, + secondary_value: 'secondary_value' as const, + tertiary_value: 'tertiary_value' as const, + value: 'value' as const +} + +export const enumLeagueDivisionsConstraint = { + league_divisions_name_key: 'league_divisions_name_key' as const, + league_divisions_pkey: 'league_divisions_pkey' as const, + league_divisions_tier_key: 'league_divisions_tier_key' as const +} + +export const enumLeagueDivisionsSelectColumn = { + created_at: 'created_at' as const, + id: 'id' as const, + name: 'name' as const, + tier: 'tier' as const +} + +export const enumLeagueDivisionsUpdateColumn = { + created_at: 'created_at' as const, + id: 'id' as const, + name: 'name' as const, + tier: 'tier' as const +} + +export const enumLeagueMatchWeeksConstraint = { + league_match_weeks_league_season_id_week_number_key: 'league_match_weeks_league_season_id_week_number_key' as const, + league_match_weeks_pkey: 'league_match_weeks_pkey' as const +} + +export const enumLeagueMatchWeeksSelectColumn = { + closes_at: 'closes_at' as const, + created_at: 'created_at' as const, + default_match_at: 'default_match_at' as const, + id: 'id' as const, + league_season_id: 'league_season_id' as const, + opens_at: 'opens_at' as const, + week_number: 'week_number' as const +} + +export const enumLeagueMatchWeeksUpdateColumn = { + closes_at: 'closes_at' as const, + created_at: 'created_at' as const, + default_match_at: 'default_match_at' as const, + id: 'id' as const, + league_season_id: 'league_season_id' as const, + opens_at: 'opens_at' as const, + week_number: 'week_number' as const +} + +export const enumLeagueRelegationPlayoffsConstraint = { + league_relegation_playoffs_league_season_id_higher_division_key: 'league_relegation_playoffs_league_season_id_higher_division_key' as const, + league_relegation_playoffs_pkey: 'league_relegation_playoffs_pkey' as const +} + +export const enumLeagueRelegationPlayoffsSelectColumn = { + created_at: 'created_at' as const, + higher_division_id: 'higher_division_id' as const, + higher_slots: 'higher_slots' as const, + id: 'id' as const, + league_season_id: 'league_season_id' as const, + lower_division_id: 'lower_division_id' as const, + resolved_at: 'resolved_at' as const, + tournament_id: 'tournament_id' as const +} + +export const enumLeagueRelegationPlayoffsUpdateColumn = { + created_at: 'created_at' as const, + higher_division_id: 'higher_division_id' as const, + higher_slots: 'higher_slots' as const, + id: 'id' as const, + league_season_id: 'league_season_id' as const, + lower_division_id: 'lower_division_id' as const, + resolved_at: 'resolved_at' as const, + tournament_id: 'tournament_id' as const +} + +export const enumLeagueSchedulingProposalsConstraint = { + league_scheduling_proposals_pkey: 'league_scheduling_proposals_pkey' as const +} + +export const enumLeagueSchedulingProposalsSelectColumn = { + created_at: 'created_at' as const, + id: 'id' as const, + message: 'message' as const, + proposed_by_league_team_season_id: 'proposed_by_league_team_season_id' as const, + proposed_by_steam_id: 'proposed_by_steam_id' as const, + proposed_time: 'proposed_time' as const, + responded_by_steam_id: 'responded_by_steam_id' as const, + status: 'status' as const, + tournament_bracket_id: 'tournament_bracket_id' as const +} + +export const enumLeagueSchedulingProposalsUpdateColumn = { + created_at: 'created_at' as const, + id: 'id' as const, + message: 'message' as const, + proposed_by_league_team_season_id: 'proposed_by_league_team_season_id' as const, + proposed_by_steam_id: 'proposed_by_steam_id' as const, + proposed_time: 'proposed_time' as const, + responded_by_steam_id: 'responded_by_steam_id' as const, + status: 'status' as const, + tournament_bracket_id: 'tournament_bracket_id' as const +} + +export const enumLeagueSeasonDivisionsConstraint = { + league_season_divisions_league_season_id_league_division_id_key: 'league_season_divisions_league_season_id_league_division_id_key' as const, + league_season_divisions_pkey: 'league_season_divisions_pkey' as const, + league_season_divisions_tournament_id_key: 'league_season_divisions_tournament_id_key' as const +} + +export const enumLeagueSeasonDivisionsSelectColumn = { + created_at: 'created_at' as const, + id: 'id' as const, + league_division_id: 'league_division_id' as const, + league_season_id: 'league_season_id' as const, + tournament_id: 'tournament_id' as const +} + +export const enumLeagueSeasonDivisionsUpdateColumn = { + created_at: 'created_at' as const, + id: 'id' as const, + league_division_id: 'league_division_id' as const, + league_season_id: 'league_season_id' as const, + tournament_id: 'tournament_id' as const +} + +export const enumLeagueSeasonsConstraint = { + league_seasons_name_key: 'league_seasons_name_key' as const, + league_seasons_pkey: 'league_seasons_pkey' as const, + league_seasons_season_number_key: 'league_seasons_season_number_key' as const +} + +export const enumLeagueSeasonsSelectColumn = { + auto_regular_season_format: 'auto_regular_season_format' as const, + created_at: 'created_at' as const, + created_by_steam_id: 'created_by_steam_id' as const, + default_best_of: 'default_best_of' as const, + direct_promote_count: 'direct_promote_count' as const, + direct_relegate_count: 'direct_relegate_count' as const, + games_per_week: 'games_per_week' as const, + id: 'id' as const, + match_options_id: 'match_options_id' as const, + match_weeks_count: 'match_weeks_count' as const, + max_roster_size: 'max_roster_size' as const, + min_roster_size: 'min_roster_size' as const, + name: 'name' as const, + playoff_best_of: 'playoff_best_of' as const, + playoff_round_best_of: 'playoff_round_best_of' as const, + playoff_seats: 'playoff_seats' as const, + playoff_stage_type: 'playoff_stage_type' as const, + playoff_third_place_match: 'playoff_third_place_match' as const, + promote_count: 'promote_count' as const, + regular_season_stage_type: 'regular_season_stage_type' as const, + relegate_count: 'relegate_count' as const, + relegation_down_count: 'relegation_down_count' as const, + relegation_up_count: 'relegation_up_count' as const, + roster_lock_at: 'roster_lock_at' as const, + season_number: 'season_number' as const, + signup_closes_at: 'signup_closes_at' as const, + signup_opens_at: 'signup_opens_at' as const, + starts_at: 'starts_at' as const, + status: 'status' as const, + week_best_of: 'week_best_of' as const +} + +export const enumLeagueSeasonsUpdateColumn = { + auto_regular_season_format: 'auto_regular_season_format' as const, + created_at: 'created_at' as const, + created_by_steam_id: 'created_by_steam_id' as const, + default_best_of: 'default_best_of' as const, + direct_promote_count: 'direct_promote_count' as const, + direct_relegate_count: 'direct_relegate_count' as const, + games_per_week: 'games_per_week' as const, + id: 'id' as const, + match_options_id: 'match_options_id' as const, + match_weeks_count: 'match_weeks_count' as const, + max_roster_size: 'max_roster_size' as const, + min_roster_size: 'min_roster_size' as const, + name: 'name' as const, + playoff_best_of: 'playoff_best_of' as const, + playoff_round_best_of: 'playoff_round_best_of' as const, + playoff_seats: 'playoff_seats' as const, + playoff_stage_type: 'playoff_stage_type' as const, + playoff_third_place_match: 'playoff_third_place_match' as const, + promote_count: 'promote_count' as const, + regular_season_stage_type: 'regular_season_stage_type' as const, + relegate_count: 'relegate_count' as const, + relegation_down_count: 'relegation_down_count' as const, + relegation_up_count: 'relegation_up_count' as const, + roster_lock_at: 'roster_lock_at' as const, + season_number: 'season_number' as const, + signup_closes_at: 'signup_closes_at' as const, + signup_opens_at: 'signup_opens_at' as const, + starts_at: 'starts_at' as const, + status: 'status' as const, + week_best_of: 'week_best_of' as const +} + +export const enumLeagueTeamMovementsConstraint = { + league_team_movements_league_season_id_league_team_id_key: 'league_team_movements_league_season_id_league_team_id_key' as const, + league_team_movements_pkey: 'league_team_movements_pkey' as const +} + +export const enumLeagueTeamMovementsSelectColumn = { + approved_at: 'approved_at' as const, + approved_by_steam_id: 'approved_by_steam_id' as const, + computed_to_division_id: 'computed_to_division_id' as const, + created_at: 'created_at' as const, + final_rank: 'final_rank' as const, + final_to_division_id: 'final_to_division_id' as const, + from_division_id: 'from_division_id' as const, + id: 'id' as const, + league_season_id: 'league_season_id' as const, + league_team_id: 'league_team_id' as const, + type: 'type' as const +} + +export const enumLeagueTeamMovementsUpdateColumn = { + approved_at: 'approved_at' as const, + approved_by_steam_id: 'approved_by_steam_id' as const, + computed_to_division_id: 'computed_to_division_id' as const, + created_at: 'created_at' as const, + final_rank: 'final_rank' as const, + final_to_division_id: 'final_to_division_id' as const, + from_division_id: 'from_division_id' as const, + id: 'id' as const, + league_season_id: 'league_season_id' as const, + league_team_id: 'league_team_id' as const, + type: 'type' as const +} + +export const enumLeagueTeamRostersConstraint = { + league_team_rosters_pkey: 'league_team_rosters_pkey' as const +} + +export const enumLeagueTeamRostersSelectColumn = { + added_at: 'added_at' as const, + league_team_season_id: 'league_team_season_id' as const, + player_steam_id: 'player_steam_id' as const, + removed_at: 'removed_at' as const, + removed_reason: 'removed_reason' as const, + status: 'status' as const +} + +export const enumLeagueTeamRostersUpdateColumn = { + added_at: 'added_at' as const, + league_team_season_id: 'league_team_season_id' as const, + player_steam_id: 'player_steam_id' as const, + removed_at: 'removed_at' as const, + removed_reason: 'removed_reason' as const, + status: 'status' as const +} + +export const enumLeagueTeamSeasonsConstraint = { + league_team_seasons_league_season_id_league_team_id_key: 'league_team_seasons_league_season_id_league_team_id_key' as const, + league_team_seasons_pkey: 'league_team_seasons_pkey' as const +} + +export const enumLeagueTeamSeasonsSelectColumn = { + assigned_division_id: 'assigned_division_id' as const, + captain_steam_id: 'captain_steam_id' as const, + created_at: 'created_at' as const, + decline_reason: 'decline_reason' as const, + id: 'id' as const, + league_season_id: 'league_season_id' as const, + league_team_id: 'league_team_id' as const, + registered_by_steam_id: 'registered_by_steam_id' as const, + requested_division_id: 'requested_division_id' as const, + seed: 'seed' as const, + status: 'status' as const, + tournament_team_id: 'tournament_team_id' as const +} + +export const enumLeagueTeamSeasonsUpdateColumn = { + assigned_division_id: 'assigned_division_id' as const, + captain_steam_id: 'captain_steam_id' as const, + created_at: 'created_at' as const, + decline_reason: 'decline_reason' as const, + id: 'id' as const, + league_season_id: 'league_season_id' as const, + league_team_id: 'league_team_id' as const, + registered_by_steam_id: 'registered_by_steam_id' as const, + requested_division_id: 'requested_division_id' as const, + seed: 'seed' as const, + status: 'status' as const, + tournament_team_id: 'tournament_team_id' as const +} + +export const enumLeagueTeamsConstraint = { + league_teams_pkey: 'league_teams_pkey' as const, + league_teams_team_id_key: 'league_teams_team_id_key' as const +} + +export const enumLeagueTeamsSelectColumn = { + created_at: 'created_at' as const, + id: 'id' as const, + team_id: 'team_id' as const +} + +export const enumLeagueTeamsUpdateColumn = { + created_at: 'created_at' as const, + id: 'id' as const, + team_id: 'team_id' as const +} + +export const enumLobbiesConstraint = { + lobbies_pkey: 'lobbies_pkey' as const +} + +export const enumLobbiesSelectColumn = { + access: 'access' as const, + created_at: 'created_at' as const, + id: 'id' as const +} + +export const enumLobbiesUpdateColumn = { + access: 'access' as const, + created_at: 'created_at' as const, + id: 'id' as const +} + +export const enumLobbyPlayersConstraint = { + lobby_players_pkey: 'lobby_players_pkey' as const +} + +export const enumLobbyPlayersSelectColumn = { + captain: 'captain' as const, + invited_by_steam_id: 'invited_by_steam_id' as const, + lobby_id: 'lobby_id' as const, + status: 'status' as const, + steam_id: 'steam_id' as const +} + +export const enumLobbyPlayersSelectColumnLobbyPlayersAggregateBoolExpBoolAndArgumentsColumns = { + captain: 'captain' as const +} + +export const enumLobbyPlayersSelectColumnLobbyPlayersAggregateBoolExpBoolOrArgumentsColumns = { + captain: 'captain' as const +} + +export const enumLobbyPlayersUpdateColumn = { + captain: 'captain' as const, + invited_by_steam_id: 'invited_by_steam_id' as const, + lobby_id: 'lobby_id' as const, + status: 'status' as const, + steam_id: 'steam_id' as const +} + +export const enumMapCalloutsConstraint = { + map_callouts_pkey: 'map_callouts_pkey' as const +} + +export const enumMapCalloutsSelectColumn = { + boxes: 'boxes' as const, + map_name: 'map_name' as const, + name: 'name' as const, + source: 'source' as const, + updated_at: 'updated_at' as const +} + +export const enumMapCalloutsUpdateColumn = { + boxes: 'boxes' as const, + map_name: 'map_name' as const, + name: 'name' as const, + source: 'source' as const, + updated_at: 'updated_at' as const +} + +export const enumMapPoolsConstraint = { + map_pools_pkey: 'map_pools_pkey' as const +} + +export const enumMapPoolsSelectColumn = { + enabled: 'enabled' as const, + id: 'id' as const, + seed: 'seed' as const, + type: 'type' as const +} + +export const enumMapPoolsUpdateColumn = { + enabled: 'enabled' as const, + id: 'id' as const, + seed: 'seed' as const, + type: 'type' as const +} + +export const enumMapsConstraint = { + maps_name_type_key: 'maps_name_type_key' as const, + maps_pkey: 'maps_pkey' as const +} + +export const enumMapsSelectColumn = { + active_pool: 'active_pool' as const, + deleted_at: 'deleted_at' as const, + enabled: 'enabled' as const, + id: 'id' as const, + label: 'label' as const, + name: 'name' as const, + patch: 'patch' as const, + poster: 'poster' as const, + type: 'type' as const, + workshop_map_id: 'workshop_map_id' as const +} + +export const enumMapsSelectColumnMapsAggregateBoolExpBoolAndArgumentsColumns = { + active_pool: 'active_pool' as const, + enabled: 'enabled' as const +} + +export const enumMapsSelectColumnMapsAggregateBoolExpBoolOrArgumentsColumns = { + active_pool: 'active_pool' as const, + enabled: 'enabled' as const +} + +export const enumMapsUpdateColumn = { + active_pool: 'active_pool' as const, + deleted_at: 'deleted_at' as const, + enabled: 'enabled' as const, + id: 'id' as const, + label: 'label' as const, + name: 'name' as const, + patch: 'patch' as const, + poster: 'poster' as const, + type: 'type' as const, + workshop_map_id: 'workshop_map_id' as const +} + +export const enumMatchClipsConstraint = { + match_clips_pkey: 'match_clips_pkey' as const +} + +export const enumMatchClipsSelectColumn = { + created_at: 'created_at' as const, + duration_ms: 'duration_ms' as const, + file: 'file' as const, + id: 'id' as const, + kills_count: 'kills_count' as const, + match_map_demo_id: 'match_map_demo_id' as const, + match_map_id: 'match_map_id' as const, + round: 'round' as const, + size: 'size' as const, + target_steam_id: 'target_steam_id' as const, + thumbnail_url: 'thumbnail_url' as const, + title: 'title' as const, + user_steam_id: 'user_steam_id' as const, + views_count: 'views_count' as const, + visibility: 'visibility' as const +} + +export const enumMatchClipsUpdateColumn = { + created_at: 'created_at' as const, + duration_ms: 'duration_ms' as const, + file: 'file' as const, + id: 'id' as const, + kills_count: 'kills_count' as const, + match_map_demo_id: 'match_map_demo_id' as const, + match_map_id: 'match_map_id' as const, + round: 'round' as const, + size: 'size' as const, + target_steam_id: 'target_steam_id' as const, + thumbnail_url: 'thumbnail_url' as const, + title: 'title' as const, + user_steam_id: 'user_steam_id' as const, + views_count: 'views_count' as const, + visibility: 'visibility' as const +} + +export const enumMatchDemoSessionsConstraint = { + match_demo_sessions_per_user_per_map_uniq: 'match_demo_sessions_per_user_per_map_uniq' as const, + match_demo_sessions_pkey: 'match_demo_sessions_pkey' as const +} + +export const enumMatchDemoSessionsSelectColumn = { + created_at: 'created_at' as const, + error_message: 'error_message' as const, + game_server_node_id: 'game_server_node_id' as const, + id: 'id' as const, + k8s_job_name: 'k8s_job_name' as const, + last_activity_at: 'last_activity_at' as const, + last_status_at: 'last_status_at' as const, + match_id: 'match_id' as const, + match_map_demo_id: 'match_map_demo_id' as const, + match_map_id: 'match_map_id' as const, + status: 'status' as const, + status_history: 'status_history' as const, + stream_url: 'stream_url' as const, + watcher_steam_id: 'watcher_steam_id' as const +} + +export const enumMatchDemoSessionsUpdateColumn = { + created_at: 'created_at' as const, + error_message: 'error_message' as const, + game_server_node_id: 'game_server_node_id' as const, + id: 'id' as const, + k8s_job_name: 'k8s_job_name' as const, + last_activity_at: 'last_activity_at' as const, + last_status_at: 'last_status_at' as const, + match_id: 'match_id' as const, + match_map_demo_id: 'match_map_demo_id' as const, + match_map_id: 'match_map_id' as const, + status: 'status' as const, + status_history: 'status_history' as const, + stream_url: 'stream_url' as const, + watcher_steam_id: 'watcher_steam_id' as const +} + +export const enumMatchLineupPlayersConstraint = { + match_lineup_players_match_lineup_id_placeholder_name_key: 'match_lineup_players_match_lineup_id_placeholder_name_key' as const, + match_lineup_players_match_lineup_id_steam_id_key: 'match_lineup_players_match_lineup_id_steam_id_key' as const, + match_members_pkey: 'match_members_pkey' as const +} + +export const enumMatchLineupPlayersSelectColumn = { + captain: 'captain' as const, + checked_in: 'checked_in' as const, + discord_id: 'discord_id' as const, + id: 'id' as const, + is_connected: 'is_connected' as const, + match_lineup_id: 'match_lineup_id' as const, + party_id: 'party_id' as const, + party_source: 'party_source' as const, + placeholder_name: 'placeholder_name' as const, + steam_id: 'steam_id' as const +} + +export const enumMatchLineupPlayersSelectColumnMatchLineupPlayersAggregateBoolExpBoolAndArgumentsColumns = { + captain: 'captain' as const, + checked_in: 'checked_in' as const, + is_connected: 'is_connected' as const +} + +export const enumMatchLineupPlayersSelectColumnMatchLineupPlayersAggregateBoolExpBoolOrArgumentsColumns = { + captain: 'captain' as const, + checked_in: 'checked_in' as const, + is_connected: 'is_connected' as const +} + +export const enumMatchLineupPlayersUpdateColumn = { + captain: 'captain' as const, + checked_in: 'checked_in' as const, + discord_id: 'discord_id' as const, + id: 'id' as const, + is_connected: 'is_connected' as const, + match_lineup_id: 'match_lineup_id' as const, + party_id: 'party_id' as const, + party_source: 'party_source' as const, + placeholder_name: 'placeholder_name' as const, + steam_id: 'steam_id' as const +} + +export const enumMatchLineupsConstraint = { + match_teams_pkey: 'match_teams_pkey' as const +} + +export const enumMatchLineupsSelectColumn = { + coach_steam_id: 'coach_steam_id' as const, + id: 'id' as const, + match_id: 'match_id' as const, + team_id: 'team_id' as const, + team_name: 'team_name' as const +} + +export const enumMatchLineupsUpdateColumn = { + coach_steam_id: 'coach_steam_id' as const, + id: 'id' as const, + match_id: 'match_id' as const, + team_id: 'team_id' as const, + team_name: 'team_name' as const +} + +export const enumMatchMapDemosConstraint = { + match_demos_pkey: 'match_demos_pkey' as const, + match_map_demos_match_map_id_file_key: 'match_map_demos_match_map_id_file_key' as const +} + +export const enumMatchMapDemosSelectColumn = { + bombs: 'bombs' as const, + created_at: 'created_at' as const, + cs2_build: 'cs2_build' as const, + duration_seconds: 'duration_seconds' as const, + file: 'file' as const, + geometry_validated: 'geometry_validated' as const, + id: 'id' as const, + kills: 'kills' as const, + map_name: 'map_name' as const, + match_id: 'match_id' as const, + match_map_id: 'match_map_id' as const, + metadata_parsed_at: 'metadata_parsed_at' as const, + parser_version: 'parser_version' as const, + playback_file: 'playback_file' as const, + playback_size: 'playback_size' as const, + playback_version: 'playback_version' as const, + players: 'players' as const, + round_ticks: 'round_ticks' as const, + size: 'size' as const, + tick_rate: 'tick_rate' as const, + total_ticks: 'total_ticks' as const, + workshop_id: 'workshop_id' as const +} + +export const enumMatchMapDemosSelectColumnMatchMapDemosAggregateBoolExpBoolAndArgumentsColumns = { + geometry_validated: 'geometry_validated' as const +} + +export const enumMatchMapDemosSelectColumnMatchMapDemosAggregateBoolExpBoolOrArgumentsColumns = { + geometry_validated: 'geometry_validated' as const +} + +export const enumMatchMapDemosUpdateColumn = { + bombs: 'bombs' as const, + created_at: 'created_at' as const, + cs2_build: 'cs2_build' as const, + file: 'file' as const, + geometry_validated: 'geometry_validated' as const, + id: 'id' as const, + kills: 'kills' as const, + map_name: 'map_name' as const, + match_id: 'match_id' as const, + match_map_id: 'match_map_id' as const, + metadata_parsed_at: 'metadata_parsed_at' as const, + parser_version: 'parser_version' as const, + playback_file: 'playback_file' as const, + playback_size: 'playback_size' as const, + playback_version: 'playback_version' as const, + players: 'players' as const, + round_ticks: 'round_ticks' as const, + size: 'size' as const, + tick_rate: 'tick_rate' as const, + total_ticks: 'total_ticks' as const, + workshop_id: 'workshop_id' as const +} + +export const enumMatchMapRoundsConstraint = { + match_rounds__id_key: 'match_rounds__id_key' as const, + match_rounds_match_id_round_key: 'match_rounds_match_id_round_key' as const, + match_rounds_pkey: 'match_rounds_pkey' as const +} + +export const enumMatchMapRoundsSelectColumn = { + backup_file: 'backup_file' as const, + created_at: 'created_at' as const, + deleted_at: 'deleted_at' as const, + id: 'id' as const, + lineup_1_money: 'lineup_1_money' as const, + lineup_1_score: 'lineup_1_score' as const, + lineup_1_side: 'lineup_1_side' as const, + lineup_1_timeouts_available: 'lineup_1_timeouts_available' as const, + lineup_2_money: 'lineup_2_money' as const, + lineup_2_score: 'lineup_2_score' as const, + lineup_2_side: 'lineup_2_side' as const, + lineup_2_timeouts_available: 'lineup_2_timeouts_available' as const, + match_map_id: 'match_map_id' as const, + round: 'round' as const, + time: 'time' as const, + winning_reason: 'winning_reason' as const, + winning_side: 'winning_side' as const +} + +export const enumMatchMapRoundsUpdateColumn = { + backup_file: 'backup_file' as const, + created_at: 'created_at' as const, + deleted_at: 'deleted_at' as const, + id: 'id' as const, + lineup_1_money: 'lineup_1_money' as const, + lineup_1_score: 'lineup_1_score' as const, + lineup_1_side: 'lineup_1_side' as const, + lineup_1_timeouts_available: 'lineup_1_timeouts_available' as const, + lineup_2_money: 'lineup_2_money' as const, + lineup_2_score: 'lineup_2_score' as const, + lineup_2_side: 'lineup_2_side' as const, + lineup_2_timeouts_available: 'lineup_2_timeouts_available' as const, + match_map_id: 'match_map_id' as const, + round: 'round' as const, + time: 'time' as const, + winning_reason: 'winning_reason' as const, + winning_side: 'winning_side' as const +} + +export const enumMatchMapVetoPicksConstraint = { + match_map_veto_picks_map_id_match_id_type_key: 'match_map_veto_picks_map_id_match_id_type_key' as const, + match_map_veto_picks_pkey: 'match_map_veto_picks_pkey' as const +} + +export const enumMatchMapVetoPicksSelectColumn = { + auto_picked: 'auto_picked' as const, + created_at: 'created_at' as const, + id: 'id' as const, + map_id: 'map_id' as const, + match_id: 'match_id' as const, + match_lineup_id: 'match_lineup_id' as const, + side: 'side' as const, + type: 'type' as const +} + +export const enumMatchMapVetoPicksSelectColumnMatchMapVetoPicksAggregateBoolExpBoolAndArgumentsColumns = { + auto_picked: 'auto_picked' as const +} + +export const enumMatchMapVetoPicksSelectColumnMatchMapVetoPicksAggregateBoolExpBoolOrArgumentsColumns = { + auto_picked: 'auto_picked' as const +} + +export const enumMatchMapVetoPicksUpdateColumn = { + auto_picked: 'auto_picked' as const, + created_at: 'created_at' as const, + id: 'id' as const, + map_id: 'map_id' as const, + match_id: 'match_id' as const, + match_lineup_id: 'match_lineup_id' as const, + side: 'side' as const, + type: 'type' as const +} + +export const enumMatchMapsConstraint = { + match_maps_match_id_order_key: 'match_maps_match_id_order_key' as const, + match_maps_pkey: 'match_maps_pkey' as const +} + +export const enumMatchMapsSelectColumn = { + clips_count: 'clips_count' as const, + created_at: 'created_at' as const, + demo_processing_started_at: 'demo_processing_started_at' as const, + ended_at: 'ended_at' as const, + id: 'id' as const, + latest_clip_at: 'latest_clip_at' as const, + lineup_1_side: 'lineup_1_side' as const, + lineup_1_timeouts_available: 'lineup_1_timeouts_available' as const, + lineup_2_side: 'lineup_2_side' as const, + lineup_2_timeouts_available: 'lineup_2_timeouts_available' as const, + map_id: 'map_id' as const, + match_id: 'match_id' as const, + order: 'order' as const, + public_clips_count: 'public_clips_count' as const, + public_latest_clip_at: 'public_latest_clip_at' as const, + started_at: 'started_at' as const, + status: 'status' as const, + winning_lineup_id: 'winning_lineup_id' as const +} + +export const enumMatchMapsUpdateColumn = { + clips_count: 'clips_count' as const, + created_at: 'created_at' as const, + demo_processing_started_at: 'demo_processing_started_at' as const, + ended_at: 'ended_at' as const, + id: 'id' as const, + latest_clip_at: 'latest_clip_at' as const, + lineup_1_side: 'lineup_1_side' as const, + lineup_1_timeouts_available: 'lineup_1_timeouts_available' as const, + lineup_2_side: 'lineup_2_side' as const, + lineup_2_timeouts_available: 'lineup_2_timeouts_available' as const, + map_id: 'map_id' as const, + match_id: 'match_id' as const, + order: 'order' as const, + public_clips_count: 'public_clips_count' as const, + public_latest_clip_at: 'public_latest_clip_at' as const, + started_at: 'started_at' as const, + status: 'status' as const, + winning_lineup_id: 'winning_lineup_id' as const +} + +export const enumMatchOptionsConstraint = { + match_options_pkey: 'match_options_pkey' as const +} + +export const enumMatchOptionsSelectColumn = { + auto_cancel_duration: 'auto_cancel_duration' as const, + auto_cancellation: 'auto_cancellation' as const, + best_of: 'best_of' as const, + camera_allow_teammates: 'camera_allow_teammates' as const, + camera_required: 'camera_required' as const, + 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, + knife_round: 'knife_round' as const, + live_match_timeout: 'live_match_timeout' as const, + map_pool_id: 'map_pool_id' as const, + map_veto: 'map_veto' as const, + match_mode: 'match_mode' as const, + mr: 'mr' as const, + number_of_substitutes: 'number_of_substitutes' as const, + overtime: 'overtime' as const, + prefer_dedicated_server: 'prefer_dedicated_server' as const, + ready_setting: 'ready_setting' as const, + region_veto: 'region_veto' as const, + regions: 'regions' as const, + round_restart_delay: 'round_restart_delay' as const, + tech_timeout_setting: 'tech_timeout_setting' as const, + timeout_setting: 'timeout_setting' as const, + tv_delay: 'tv_delay' as const, + type: 'type' as const, + 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, + best_of: 'best_of' as const, + camera_allow_teammates: 'camera_allow_teammates' as const, + camera_required: 'camera_required' as const, + 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, + knife_round: 'knife_round' as const, + live_match_timeout: 'live_match_timeout' as const, + map_pool_id: 'map_pool_id' as const, + map_veto: 'map_veto' as const, + match_mode: 'match_mode' as const, + mr: 'mr' as const, + number_of_substitutes: 'number_of_substitutes' as const, + overtime: 'overtime' as const, + prefer_dedicated_server: 'prefer_dedicated_server' as const, + ready_setting: 'ready_setting' as const, + region_veto: 'region_veto' as const, + regions: 'regions' as const, + round_restart_delay: 'round_restart_delay' as const, + tech_timeout_setting: 'tech_timeout_setting' as const, + timeout_setting: 'timeout_setting' as const, + tv_delay: 'tv_delay' as const, + type: 'type' as const, + veto_pick_timeout: 'veto_pick_timeout' as const +} + +export const enumMatchRegionVetoPicksConstraint = { + match_region_veto_picks_match_id_region_key: 'match_region_veto_picks_match_id_region_key' as const, + match_region_veto_picks_pkey: 'match_region_veto_picks_pkey' as const +} + +export const enumMatchRegionVetoPicksSelectColumn = { + auto_picked: 'auto_picked' as const, + created_at: 'created_at' as const, + id: 'id' as const, + match_id: 'match_id' as const, + match_lineup_id: 'match_lineup_id' as const, + region: 'region' as const, + type: 'type' as const +} + +export const enumMatchRegionVetoPicksSelectColumnMatchRegionVetoPicksAggregateBoolExpBoolAndArgumentsColumns = { + auto_picked: 'auto_picked' as const +} + +export const enumMatchRegionVetoPicksSelectColumnMatchRegionVetoPicksAggregateBoolExpBoolOrArgumentsColumns = { + auto_picked: 'auto_picked' as const +} + +export const enumMatchRegionVetoPicksUpdateColumn = { + auto_picked: 'auto_picked' as const, + created_at: 'created_at' as const, + id: 'id' as const, + match_id: 'match_id' as const, + match_lineup_id: 'match_lineup_id' as const, + region: 'region' as const, + type: 'type' as const +} + +export const enumMatchStreamsConstraint = { + match_streams_pkey: 'match_streams_pkey' as const +} + +export const enumMatchStreamsSelectColumn = { + autodirector: 'autodirector' as const, + error_message: 'error_message' as const, + game_server_node_id: 'game_server_node_id' as const, + id: 'id' as const, + is_game_streamer: 'is_game_streamer' as const, + is_live: 'is_live' as const, + k8s_service_name: 'k8s_service_name' as const, + last_status_at: 'last_status_at' as const, + link: 'link' as const, + match_id: 'match_id' as const, + mode: 'mode' as const, + priority: 'priority' as const, + status: 'status' as const, + status_history: 'status_history' as const, + stream_url: 'stream_url' as const, + title: 'title' as const +} + +export const enumMatchStreamsSelectColumnMatchStreamsAggregateBoolExpBoolAndArgumentsColumns = { + autodirector: 'autodirector' as const, + is_game_streamer: 'is_game_streamer' as const, + is_live: 'is_live' as const +} + +export const enumMatchStreamsSelectColumnMatchStreamsAggregateBoolExpBoolOrArgumentsColumns = { + autodirector: 'autodirector' as const, + is_game_streamer: 'is_game_streamer' as const, + is_live: 'is_live' as const +} + +export const enumMatchStreamsUpdateColumn = { + autodirector: 'autodirector' as const, + error_message: 'error_message' as const, + game_server_node_id: 'game_server_node_id' as const, + id: 'id' as const, + is_game_streamer: 'is_game_streamer' as const, + is_live: 'is_live' as const, + k8s_service_name: 'k8s_service_name' as const, + last_status_at: 'last_status_at' as const, + link: 'link' as const, + match_id: 'match_id' as const, + mode: 'mode' as const, + priority: 'priority' as const, + status: 'status' as const, + status_history: 'status_history' as const, + stream_url: 'stream_url' as const, + title: 'title' as const +} + +export const enumMatchTypeCfgsConstraint = { + match_type_cfgs_pkey: 'match_type_cfgs_pkey' as const +} + +export const enumMatchTypeCfgsSelectColumn = { + cfg: 'cfg' as const, + type: 'type' as const +} + +export const enumMatchTypeCfgsUpdateColumn = { + cfg: 'cfg' as const, + type: 'type' as const +} + +export const enumMatchesConstraint = { + matches_lineup_1_id_key: 'matches_lineup_1_id_key' as const, + matches_lineup_1_id_lineup_2_id_key: 'matches_lineup_1_id_lineup_2_id_key' as const, + matches_lineup_2_id_key: 'matches_lineup_2_id_key' as const, + matches_pkey: 'matches_pkey' as const, + uq_matches_source_external_id: 'uq_matches_source_external_id' as const +} + +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, + external_id: 'external_id' as const, + id: 'id' as const, + label: 'label' as const, + lineup_1_id: 'lineup_1_id' as const, + lineup_2_id: 'lineup_2_id' as const, + match_options_id: 'match_options_id' as const, + organizer_steam_id: 'organizer_steam_id' as const, + password: 'password' as const, + region: 'region' as const, + scheduled_at: 'scheduled_at' as const, + server_error: 'server_error' as const, + server_id: 'server_id' as const, + share_code: 'share_code' as const, + source: 'source' as const, + started_at: 'started_at' as const, + status: 'status' as const, + veto_pick_expires_at: 'veto_pick_expires_at' as const, + 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, + id: 'id' as const, + label: 'label' as const, + lineup_1_id: 'lineup_1_id' as const, + lineup_2_id: 'lineup_2_id' as const, + match_options_id: 'match_options_id' as const, + organizer_steam_id: 'organizer_steam_id' as const, + password: 'password' as const, + region: 'region' as const, + scheduled_at: 'scheduled_at' as const, + server_error: 'server_error' as const, + server_id: 'server_id' as const, + share_code: 'share_code' as const, + source: 'source' as const, + started_at: 'started_at' as const, + status: 'status' as const, + veto_pick_expires_at: 'veto_pick_expires_at' as const, + winning_lineup_id: 'winning_lineup_id' as const +} + +export const enumMigrationHashesHashesConstraint = { + hashes_pkey: 'hashes_pkey' as const +} + +export const enumMigrationHashesHashesSelectColumn = { + hash: 'hash' as const, + name: 'name' as const +} + +export const enumMigrationHashesHashesUpdateColumn = { + hash: 'hash' as const, + name: 'name' as const +} + +export const enumMyFriendsSelectColumn = { + avatar_url: 'avatar_url' as const, + country: 'country' as const, + created_at: 'created_at' as const, + custom_avatar_url: 'custom_avatar_url' as const, + days_since_last_ban: 'days_since_last_ban' as const, + discord_id: 'discord_id' as const, + elo: 'elo' as const, + faceit_elo: 'faceit_elo' as const, + faceit_nickname: 'faceit_nickname' as const, + faceit_player_id: 'faceit_player_id' as const, + faceit_skill_level: 'faceit_skill_level' as const, + faceit_updated_at: 'faceit_updated_at' as const, + faceit_url: 'faceit_url' as const, + friend_steam_id: 'friend_steam_id' as const, + game_ban_count: 'game_ban_count' as const, + invited_by_steam_id: 'invited_by_steam_id' as const, + language: 'language' as const, + last_presence_state: 'last_presence_state' as const, + last_read_news_at: 'last_read_news_at' as const, + last_sign_in_at: 'last_sign_in_at' as const, + name: 'name' as const, + name_registered: 'name_registered' as const, + notification_timezone: 'notification_timezone' as const, + premier_rank: 'premier_rank' as const, + premier_rank_updated_at: 'premier_rank_updated_at' as const, + presence_updated_at: 'presence_updated_at' as const, + profile_url: 'profile_url' as const, + quiet_hours_end: 'quiet_hours_end' as const, + quiet_hours_start: 'quiet_hours_start' as const, + role: 'role' as const, + roster_image_url: 'roster_image_url' as const, + show_match_ready_modal: 'show_match_ready_modal' as const, + status: 'status' as const, + steam_bans_checked_at: 'steam_bans_checked_at' as const, + steam_id: 'steam_id' as const, + vac_ban_count: 'vac_ban_count' as const, + vac_banned: 'vac_banned' as const +} + +export const enumMyFriendsSelectColumnMyFriendsAggregateBoolExpBoolAndArgumentsColumns = { + name_registered: 'name_registered' as const, + show_match_ready_modal: 'show_match_ready_modal' as const, + vac_banned: 'vac_banned' as const +} + +export const enumMyFriendsSelectColumnMyFriendsAggregateBoolExpBoolOrArgumentsColumns = { + name_registered: 'name_registered' as const, + show_match_ready_modal: 'show_match_ready_modal' as const, + vac_banned: 'vac_banned' as const +} + +export const enumNewsArticlesConstraint = { + news_articles_pkey: 'news_articles_pkey' as const, + news_articles_slug_key: 'news_articles_slug_key' as const +} + +export const enumNewsArticlesSelectColumn = { + author_steam_id: 'author_steam_id' as const, + content_markdown: 'content_markdown' as const, + cover_image_url: 'cover_image_url' as const, + created_at: 'created_at' as const, + id: 'id' as const, + published_at: 'published_at' as const, + slug: 'slug' as const, + status: 'status' as const, + teaser: 'teaser' as const, + title: 'title' as const, + updated_at: 'updated_at' as const, + view_count: 'view_count' as const +} + +export const enumNewsArticlesUpdateColumn = { + author_steam_id: 'author_steam_id' as const, + content_markdown: 'content_markdown' as const, + cover_image_url: 'cover_image_url' as const, + created_at: 'created_at' as const, + id: 'id' as const, + published_at: 'published_at' as const, + slug: 'slug' as const, + status: 'status' as const, + teaser: 'teaser' as const, + title: 'title' as const, + updated_at: 'updated_at' as const, + view_count: 'view_count' as const +} + +export const enumNotificationPreferencesConstraint = { + notification_preferences_pkey: 'notification_preferences_pkey' as const +} + +export const enumNotificationPreferencesSelectColumn = { + channel: 'channel' as const, + enabled: 'enabled' as const, + key: 'key' as const, + steam_id: 'steam_id' as const, + updated_at: 'updated_at' as const +} + +export const enumNotificationPreferencesUpdateColumn = { + channel: 'channel' as const, + enabled: 'enabled' as const, + key: 'key' as const, + steam_id: 'steam_id' as const, + updated_at: 'updated_at' as const +} + +export const enumNotificationsConstraint = { + notifications_pkey: 'notifications_pkey' as const +} + +export const enumNotificationsSelectColumn = { + actions: 'actions' as const, + created_at: 'created_at' as const, + data: 'data' as const, + deletable: 'deletable' as const, + deleted_at: 'deleted_at' as const, + entity_id: 'entity_id' as const, + id: 'id' as const, + in_app: 'in_app' as const, + is_read: 'is_read' as const, + message: 'message' as const, + role: 'role' as const, + steam_id: 'steam_id' as const, + title: 'title' as const, + type: 'type' as const +} + +export const enumNotificationsSelectColumnNotificationsAggregateBoolExpBoolAndArgumentsColumns = { + deletable: 'deletable' as const, + in_app: 'in_app' as const, + is_read: 'is_read' as const +} + +export const enumNotificationsSelectColumnNotificationsAggregateBoolExpBoolOrArgumentsColumns = { + deletable: 'deletable' as const, + in_app: 'in_app' as const, + is_read: 'is_read' as const +} + +export const enumNotificationsUpdateColumn = { + actions: 'actions' as const, + created_at: 'created_at' as const, + data: 'data' as const, + deletable: 'deletable' as const, + deleted_at: 'deleted_at' as const, + entity_id: 'entity_id' as const, + id: 'id' as const, + in_app: 'in_app' as const, + is_read: 'is_read' as const, + message: 'message' as const, + role: 'role' as const, + steam_id: 'steam_id' as const, + title: 'title' as const, + type: 'type' as const +} + +export const enumOrderBy = { + asc: 'asc' as const, + asc_nulls_first: 'asc_nulls_first' as const, + asc_nulls_last: 'asc_nulls_last' as const, + desc: 'desc' as const, + desc_nulls_first: 'desc_nulls_first' as const, + desc_nulls_last: 'desc_nulls_last' as const +} + +export const enumPendingMatchImportPlayersConstraint = { + pending_match_import_players_pkey: 'pending_match_import_players_pkey' as const +} + +export const enumPendingMatchImportPlayersSelectColumn = { + created_at: 'created_at' as const, + steam_id: 'steam_id' as const, + valve_match_id: 'valve_match_id' as const +} + +export const enumPendingMatchImportPlayersUpdateColumn = { + created_at: 'created_at' as const, + steam_id: 'steam_id' as const, + valve_match_id: 'valve_match_id' as const +} + +export const enumPendingMatchImportsConstraint = { + pending_match_imports_pkey: 'pending_match_imports_pkey' as const +} + +export const enumPendingMatchImportsSelectColumn = { + created_at: 'created_at' as const, + demo_url: 'demo_url' as const, + error: 'error' as const, + map_name: 'map_name' as const, + match_start_time: 'match_start_time' as const, + share_code: 'share_code' as const, + status: 'status' as const, + updated_at: 'updated_at' as const, + valve_match_id: 'valve_match_id' as const +} + +export const enumPendingMatchImportsUpdateColumn = { + created_at: 'created_at' as const, + demo_url: 'demo_url' as const, + error: 'error' as const, + map_name: 'map_name' as const, + match_start_time: 'match_start_time' as const, + share_code: 'share_code' as const, + status: 'status' as const, + updated_at: 'updated_at' as const, + valve_match_id: 'valve_match_id' as const +} + +export const enumPlayerAimStatsDemoConstraint = { + player_aim_stats_demo_pkey: 'player_aim_stats_demo_pkey' as const +} + +export const enumPlayerAimStatsDemoSelectColumn = { + attacker_steam_id: 'attacker_steam_id' as const, + counter_strafe_eligible_shots: 'counter_strafe_eligible_shots' as const, + counter_strafed_shots: 'counter_strafed_shots' as const, + crosshair_angle_count: 'crosshair_angle_count' as const, + crosshair_angle_sum_deg: 'crosshair_angle_sum_deg' as const, + first_bullet_hits: 'first_bullet_hits' as const, + first_bullet_shots: 'first_bullet_shots' as const, + headshot_hits: 'headshot_hits' as const, + hits: 'hits' as const, + hits_at_spotted: 'hits_at_spotted' as const, + match_id: 'match_id' as const, + match_map_id: 'match_map_id' as const, + non_awp_hits: 'non_awp_hits' as const, + on_target_frames: 'on_target_frames' as const, + shots_at_spotted: 'shots_at_spotted' as const, + spray_hits: 'spray_hits' as const, + spray_shots: 'spray_shots' as const, + time_to_damage_count: 'time_to_damage_count' as const, + time_to_damage_sum_s: 'time_to_damage_sum_s' as const, + total_engagement_frames: 'total_engagement_frames' as const +} + +export const enumPlayerAimStatsDemoUpdateColumn = { + attacker_steam_id: 'attacker_steam_id' as const, + counter_strafe_eligible_shots: 'counter_strafe_eligible_shots' as const, + counter_strafed_shots: 'counter_strafed_shots' as const, + crosshair_angle_count: 'crosshair_angle_count' as const, + crosshair_angle_sum_deg: 'crosshair_angle_sum_deg' as const, + first_bullet_hits: 'first_bullet_hits' as const, + first_bullet_shots: 'first_bullet_shots' as const, + headshot_hits: 'headshot_hits' as const, + hits: 'hits' as const, + hits_at_spotted: 'hits_at_spotted' as const, + match_id: 'match_id' as const, + match_map_id: 'match_map_id' as const, + non_awp_hits: 'non_awp_hits' as const, + on_target_frames: 'on_target_frames' as const, + shots_at_spotted: 'shots_at_spotted' as const, + spray_hits: 'spray_hits' as const, + spray_shots: 'spray_shots' as const, + time_to_damage_count: 'time_to_damage_count' as const, + time_to_damage_sum_s: 'time_to_damage_sum_s' as const, + total_engagement_frames: 'total_engagement_frames' as const +} + +export const enumPlayerAimWeaponStatsConstraint = { + player_aim_weapon_stats_pkey: 'player_aim_weapon_stats_pkey' as const +} + +export const enumPlayerAimWeaponStatsSelectColumn = { + first_bullet_hits: 'first_bullet_hits' as const, + first_bullet_shots: 'first_bullet_shots' as const, + hits: 'hits' as const, + hits_spotted: 'hits_spotted' as const, + match_id: 'match_id' as const, + match_map_id: 'match_map_id' as const, + shots: 'shots' as const, + shots_spotted: 'shots_spotted' as const, + steam_id: 'steam_id' as const, + weapon_class: 'weapon_class' as const +} + +export const enumPlayerAimWeaponStatsUpdateColumn = { + first_bullet_hits: 'first_bullet_hits' as const, + first_bullet_shots: 'first_bullet_shots' as const, + hits: 'hits' as const, + hits_spotted: 'hits_spotted' as const, + match_id: 'match_id' as const, + match_map_id: 'match_map_id' as const, + shots: 'shots' as const, + shots_spotted: 'shots_spotted' as const, + steam_id: 'steam_id' as const, + weapon_class: 'weapon_class' as const +} + +export const enumPlayerAssistsConstraint = { + player_assists_pkey: 'player_assists_pkey' as const +} + +export const enumPlayerAssistsSelectColumn = { + attacked_steam_id: 'attacked_steam_id' as const, + attacked_team: 'attacked_team' as const, + attacker_steam_id: 'attacker_steam_id' as const, + attacker_team: 'attacker_team' as const, + deleted_at: 'deleted_at' as const, + flash: 'flash' as const, + match_id: 'match_id' as const, + match_map_id: 'match_map_id' as const, + round: 'round' as const, + time: 'time' as const +} + +export const enumPlayerAssistsSelectColumnPlayerAssistsAggregateBoolExpBoolAndArgumentsColumns = { + flash: 'flash' as const +} + +export const enumPlayerAssistsSelectColumnPlayerAssistsAggregateBoolExpBoolOrArgumentsColumns = { + flash: 'flash' as const +} + +export const enumPlayerAssistsUpdateColumn = { + attacked_steam_id: 'attacked_steam_id' as const, + attacked_team: 'attacked_team' as const, + attacker_steam_id: 'attacker_steam_id' as const, + attacker_team: 'attacker_team' as const, + deleted_at: 'deleted_at' as const, + flash: 'flash' as const, + match_id: 'match_id' as const, + match_map_id: 'match_map_id' as const, + round: 'round' as const, + time: 'time' as const +} + +export const enumPlayerCareerStatsVSelectColumn = { + accuracy: 'accuracy' as const, + accuracy_spotted: 'accuracy_spotted' as const, + counter_strafe_pct: 'counter_strafe_pct' as const, + crosshair_deg: 'crosshair_deg' as const, + enemy_blind_pr: 'enemy_blind_pr' as const, + flash_assists_pr: 'flash_assists_pr' as const, + hs_pct: 'hs_pct' as const, + kast_pct: 'kast_pct' as const, + maps: 'maps' as const, + premier_rank: 'premier_rank' as const, + rounds: 'rounds' as const, + steam_id: 'steam_id' as const, + survival_pct: 'survival_pct' as const, + time_to_damage_s: 'time_to_damage_s' as const, + traded_death_pct: 'traded_death_pct' as const, + util_efficiency: 'util_efficiency' as const +} + +export const enumPlayerDamagesConstraint = { + player_damages_pkey: 'player_damages_pkey' as const +} + +export const enumPlayerDamagesSelectColumn = { + armor: 'armor' as const, + attacked_location: 'attacked_location' as const, + attacked_location_coordinates: 'attacked_location_coordinates' as const, + attacked_steam_id: 'attacked_steam_id' as const, + attacked_team: 'attacked_team' as const, + attacker_location: 'attacker_location' as const, + attacker_location_coordinates: 'attacker_location_coordinates' as const, + attacker_steam_id: 'attacker_steam_id' as const, + attacker_team: 'attacker_team' as const, + damage: 'damage' as const, + damage_armor: 'damage_armor' as const, + deleted_at: 'deleted_at' as const, + health: 'health' as const, + hitgroup: 'hitgroup' as const, + id: 'id' as const, + match_id: 'match_id' as const, + match_map_id: 'match_map_id' as const, + round: 'round' as const, + time: 'time' as const, + with: 'with' as const +} + +export const enumPlayerDamagesUpdateColumn = { + armor: 'armor' as const, + attacked_location: 'attacked_location' as const, + attacked_location_coordinates: 'attacked_location_coordinates' as const, + attacked_steam_id: 'attacked_steam_id' as const, + attacked_team: 'attacked_team' as const, + attacker_location: 'attacker_location' as const, + attacker_location_coordinates: 'attacker_location_coordinates' as const, + attacker_steam_id: 'attacker_steam_id' as const, + attacker_team: 'attacker_team' as const, + damage: 'damage' as const, + damage_armor: 'damage_armor' as const, + deleted_at: 'deleted_at' as const, + health: 'health' as const, + hitgroup: 'hitgroup' as const, + id: 'id' as const, + match_id: 'match_id' as const, + match_map_id: 'match_map_id' as const, + round: 'round' as const, + time: 'time' as const, + with: 'with' as const +} + +export const enumPlayerEloConstraint = { + player_elo_pkey: 'player_elo_pkey' as const +} + +export const enumPlayerEloSelectColumn = { + actual_score: 'actual_score' as const, + assists: 'assists' as const, + change: 'change' as const, + created_at: 'created_at' as const, + current: 'current' as const, + damage: 'damage' as const, + damage_percent: 'damage_percent' as const, + deaths: 'deaths' as const, + expected_score: 'expected_score' as const, + impact: 'impact' as const, + k_factor: 'k_factor' as const, + kda: 'kda' as const, + kills: 'kills' as const, + map_losses: 'map_losses' as const, + map_wins: 'map_wins' as const, + match_id: 'match_id' as const, + opponent_team_elo_avg: 'opponent_team_elo_avg' as const, + performance_multiplier: 'performance_multiplier' as const, + player_team_elo_avg: 'player_team_elo_avg' as const, + rating_for_expected: 'rating_for_expected' as const, + season_id: 'season_id' as const, + series_multiplier: 'series_multiplier' as const, + steam_id: 'steam_id' as const, + team_avg_kda: 'team_avg_kda' as const, + type: 'type' as const +} + +export const enumPlayerEloUpdateColumn = { + actual_score: 'actual_score' as const, + assists: 'assists' as const, + change: 'change' as const, + created_at: 'created_at' as const, + current: 'current' as const, + damage: 'damage' as const, + damage_percent: 'damage_percent' as const, + deaths: 'deaths' as const, + expected_score: 'expected_score' as const, + impact: 'impact' as const, + k_factor: 'k_factor' as const, + kda: 'kda' as const, + kills: 'kills' as const, + map_losses: 'map_losses' as const, + map_wins: 'map_wins' as const, + match_id: 'match_id' as const, + opponent_team_elo_avg: 'opponent_team_elo_avg' as const, + performance_multiplier: 'performance_multiplier' as const, + player_team_elo_avg: 'player_team_elo_avg' as const, + rating_for_expected: 'rating_for_expected' as const, + season_id: 'season_id' as const, + series_multiplier: 'series_multiplier' as const, + steam_id: 'steam_id' as const, + team_avg_kda: 'team_avg_kda' as const, + type: 'type' as const +} + +export const enumPlayerFaceitRankHistoryConstraint = { + player_faceit_rank_history_pkey: 'player_faceit_rank_history_pkey' as const, + uq_player_faceit_rank_history_steam_match: 'uq_player_faceit_rank_history_steam_match' as const +} + +export const enumPlayerFaceitRankHistorySelectColumn = { + elo: 'elo' as const, + id: 'id' as const, + match_id: 'match_id' as const, + observed_at: 'observed_at' as const, + previous_rank: 'previous_rank' as const, + skill_level: 'skill_level' as const, + steam_id: 'steam_id' as const +} + +export const enumPlayerFaceitRankHistoryUpdateColumn = { + elo: 'elo' as const, + id: 'id' as const, + match_id: 'match_id' as const, + observed_at: 'observed_at' as const, + previous_rank: 'previous_rank' as const, + skill_level: 'skill_level' as const, + steam_id: 'steam_id' as const +} + +export const enumPlayerFlashesConstraint = { + player_flashes_pkey: 'player_flashes_pkey' as const +} + +export const enumPlayerFlashesSelectColumn = { + attacked_steam_id: 'attacked_steam_id' as const, + attacker_steam_id: 'attacker_steam_id' as const, + deleted_at: 'deleted_at' as const, + duration: 'duration' as const, + match_id: 'match_id' as const, + match_map_id: 'match_map_id' as const, + round: 'round' as const, + team_flash: 'team_flash' as const, + time: 'time' as const +} + +export const enumPlayerFlashesSelectColumnPlayerFlashesAggregateBoolExpBoolAndArgumentsColumns = { + team_flash: 'team_flash' as const +} + +export const enumPlayerFlashesSelectColumnPlayerFlashesAggregateBoolExpBoolOrArgumentsColumns = { + team_flash: 'team_flash' as const +} + +export const enumPlayerFlashesUpdateColumn = { + attacked_steam_id: 'attacked_steam_id' as const, + attacker_steam_id: 'attacker_steam_id' as const, + deleted_at: 'deleted_at' as const, + duration: 'duration' as const, + match_id: 'match_id' as const, + match_map_id: 'match_map_id' as const, + round: 'round' as const, + team_flash: 'team_flash' as const, + time: 'time' as const +} + +export const enumPlayerKillsByWeaponConstraint = { + player_kills_by_weapon_pkey: 'player_kills_by_weapon_pkey' as const +} + +export const enumPlayerKillsByWeaponSelectColumn = { + kill_count: 'kill_count' as const, + player_steam_id: 'player_steam_id' as const, + with: 'with' as const +} + +export const enumPlayerKillsByWeaponUpdateColumn = { + kill_count: 'kill_count' as const, + player_steam_id: 'player_steam_id' as const, + with: 'with' as const +} + +export const enumPlayerKillsConstraint = { + player_kills_pkey: 'player_kills_pkey' as const +} + +export const enumPlayerKillsSelectColumn = { + assisted: 'assisted' as const, + attacked_location: 'attacked_location' as const, + attacked_location_coordinates: 'attacked_location_coordinates' as const, + attacked_steam_id: 'attacked_steam_id' as const, + attacked_team: 'attacked_team' as const, + attacker_location: 'attacker_location' as const, + attacker_location_coordinates: 'attacker_location_coordinates' as const, + attacker_steam_id: 'attacker_steam_id' as const, + attacker_team: 'attacker_team' as const, + blinded: 'blinded' as const, + deleted_at: 'deleted_at' as const, + headshot: 'headshot' as const, + hitgroup: 'hitgroup' as const, + in_air: 'in_air' as const, + match_id: 'match_id' as const, + match_map_id: 'match_map_id' as const, + no_scope: 'no_scope' as const, + round: 'round' as const, + thru_smoke: 'thru_smoke' as const, + thru_wall: 'thru_wall' as const, + time: 'time' as const, + with: 'with' as const +} + +export const enumPlayerKillsSelectColumnPlayerKillsAggregateBoolExpBoolAndArgumentsColumns = { + assisted: 'assisted' as const, + blinded: 'blinded' as const, + headshot: 'headshot' as const, + in_air: 'in_air' as const, + no_scope: 'no_scope' as const, + thru_smoke: 'thru_smoke' as const, + thru_wall: 'thru_wall' as const +} + +export const enumPlayerKillsSelectColumnPlayerKillsAggregateBoolExpBoolOrArgumentsColumns = { + assisted: 'assisted' as const, + blinded: 'blinded' as const, + headshot: 'headshot' as const, + in_air: 'in_air' as const, + no_scope: 'no_scope' as const, + thru_smoke: 'thru_smoke' as const, + thru_wall: 'thru_wall' as const +} + +export const enumPlayerKillsUpdateColumn = { + assisted: 'assisted' as const, + attacked_location: 'attacked_location' as const, + attacked_location_coordinates: 'attacked_location_coordinates' as const, + attacked_steam_id: 'attacked_steam_id' as const, + attacked_team: 'attacked_team' as const, + attacker_location: 'attacker_location' as const, + attacker_location_coordinates: 'attacker_location_coordinates' as const, + attacker_steam_id: 'attacker_steam_id' as const, + attacker_team: 'attacker_team' as const, + blinded: 'blinded' as const, + deleted_at: 'deleted_at' as const, + headshot: 'headshot' as const, + hitgroup: 'hitgroup' as const, + in_air: 'in_air' as const, + match_id: 'match_id' as const, + match_map_id: 'match_map_id' as const, + no_scope: 'no_scope' as const, + round: 'round' as const, + thru_smoke: 'thru_smoke' as const, + thru_wall: 'thru_wall' as const, + time: 'time' as const, + with: 'with' as const +} + +export const enumPlayerLeaderboardRankSelectColumn = { + player_steam_id: 'player_steam_id' as const, + rank: 'rank' as const, + total: 'total' as const, + value: 'value' as const +} + +export const enumPlayerMatchMapStatsConstraint = { + player_match_map_stats_pkey: 'player_match_map_stats_pkey' as const +} + +export const enumPlayerMatchMapStatsSelectColumn = { + assists: 'assists' as const, + assists_ct: 'assists_ct' as const, + assists_t: 'assists_t' as const, + counter_strafe_eligible_shots: 'counter_strafe_eligible_shots' as const, + counter_strafed_shots: 'counter_strafed_shots' as const, + crosshair_angle_count: 'crosshair_angle_count' as const, + crosshair_angle_sum_deg: 'crosshair_angle_sum_deg' as const, + damage: 'damage' as const, + damage_ct: 'damage_ct' as const, + damage_t: 'damage_t' as const, + deaths: 'deaths' as const, + deaths_ct: 'deaths_ct' as const, + deaths_t: 'deaths_t' as const, + decoy_throws: 'decoy_throws' as const, + enemies_flashed: 'enemies_flashed' as const, + first_bullet_hits: 'first_bullet_hits' as const, + first_bullet_shots: 'first_bullet_shots' as const, + five_kill_rounds: 'five_kill_rounds' as const, + flash_assists: 'flash_assists' as const, + flash_duration_count: 'flash_duration_count' as const, + flash_duration_sum: 'flash_duration_sum' as const, + flashes_thrown: 'flashes_thrown' as const, + four_kill_rounds: 'four_kill_rounds' as const, + he_damage: 'he_damage' as const, + he_team_damage: 'he_team_damage' as const, + he_throws: 'he_throws' as const, + headshot_hits: 'headshot_hits' as const, + hits: 'hits' as const, + hits_at_spotted: 'hits_at_spotted' as const, + hs_kills: 'hs_kills' as const, + hs_kills_ct: 'hs_kills_ct' as const, + hs_kills_t: 'hs_kills_t' as const, + kast_rounds: 'kast_rounds' as const, + kast_total_rounds: 'kast_total_rounds' as const, + kills: 'kills' as const, + kills_ct: 'kills_ct' as const, + kills_t: 'kills_t' as const, + knife_kills: 'knife_kills' as const, + match_id: 'match_id' as const, + match_map_id: 'match_map_id' as const, + molotov_damage: 'molotov_damage' as const, + molotov_throws: 'molotov_throws' as const, + non_awp_hits: 'non_awp_hits' as const, + on_target_frames: 'on_target_frames' as const, + rounds_ct: 'rounds_ct' as const, + rounds_played: 'rounds_played' as const, + rounds_t: 'rounds_t' as const, + shots_at_spotted: 'shots_at_spotted' as const, + shots_fired: 'shots_fired' as const, + smoke_throws: 'smoke_throws' as const, + spotted_count: 'spotted_count' as const, + spotted_with_damage_count: 'spotted_with_damage_count' as const, + spray_hits: 'spray_hits' as const, + spray_shots: 'spray_shots' as const, + steam_id: 'steam_id' as const, + team_damage: 'team_damage' as const, + team_flashed: 'team_flashed' as const, + three_kill_rounds: 'three_kill_rounds' as const, + time_to_damage_count: 'time_to_damage_count' as const, + time_to_damage_sum_s: 'time_to_damage_sum_s' as const, + total_engagement_frames: 'total_engagement_frames' as const, + trade_kill_attempts: 'trade_kill_attempts' as const, + trade_kill_opportunities: 'trade_kill_opportunities' as const, + trade_kill_successes: 'trade_kill_successes' as const, + traded_death_attempts: 'traded_death_attempts' as const, + traded_death_opportunities: 'traded_death_opportunities' as const, + traded_death_successes: 'traded_death_successes' as const, + two_kill_rounds: 'two_kill_rounds' as const, + unused_utility_value: 'unused_utility_value' as const, + updated_at: 'updated_at' as const, + util_on_death_count: 'util_on_death_count' as const, + util_on_death_sum: 'util_on_death_sum' as const, + wasted_magazine_shots: 'wasted_magazine_shots' as const, + zeus_kills: 'zeus_kills' as const +} + +export const enumPlayerMatchMapStatsUpdateColumn = { + assists: 'assists' as const, + assists_ct: 'assists_ct' as const, + assists_t: 'assists_t' as const, + counter_strafe_eligible_shots: 'counter_strafe_eligible_shots' as const, + counter_strafed_shots: 'counter_strafed_shots' as const, + crosshair_angle_count: 'crosshair_angle_count' as const, + crosshair_angle_sum_deg: 'crosshair_angle_sum_deg' as const, + damage: 'damage' as const, + damage_ct: 'damage_ct' as const, + damage_t: 'damage_t' as const, + deaths: 'deaths' as const, + deaths_ct: 'deaths_ct' as const, + deaths_t: 'deaths_t' as const, + decoy_throws: 'decoy_throws' as const, + enemies_flashed: 'enemies_flashed' as const, + first_bullet_hits: 'first_bullet_hits' as const, + first_bullet_shots: 'first_bullet_shots' as const, + five_kill_rounds: 'five_kill_rounds' as const, + flash_assists: 'flash_assists' as const, + flash_duration_count: 'flash_duration_count' as const, + flash_duration_sum: 'flash_duration_sum' as const, + flashes_thrown: 'flashes_thrown' as const, + four_kill_rounds: 'four_kill_rounds' as const, + he_damage: 'he_damage' as const, + he_team_damage: 'he_team_damage' as const, + he_throws: 'he_throws' as const, + headshot_hits: 'headshot_hits' as const, + hits: 'hits' as const, + hits_at_spotted: 'hits_at_spotted' as const, + hs_kills: 'hs_kills' as const, + hs_kills_ct: 'hs_kills_ct' as const, + hs_kills_t: 'hs_kills_t' as const, + kast_rounds: 'kast_rounds' as const, + kast_total_rounds: 'kast_total_rounds' as const, + kills: 'kills' as const, + kills_ct: 'kills_ct' as const, + kills_t: 'kills_t' as const, + knife_kills: 'knife_kills' as const, + match_id: 'match_id' as const, + match_map_id: 'match_map_id' as const, + molotov_damage: 'molotov_damage' as const, + molotov_throws: 'molotov_throws' as const, + non_awp_hits: 'non_awp_hits' as const, + on_target_frames: 'on_target_frames' as const, + rounds_ct: 'rounds_ct' as const, + rounds_played: 'rounds_played' as const, + rounds_t: 'rounds_t' as const, + shots_at_spotted: 'shots_at_spotted' as const, + shots_fired: 'shots_fired' as const, + smoke_throws: 'smoke_throws' as const, + spotted_count: 'spotted_count' as const, + spotted_with_damage_count: 'spotted_with_damage_count' as const, + spray_hits: 'spray_hits' as const, + spray_shots: 'spray_shots' as const, + steam_id: 'steam_id' as const, + team_damage: 'team_damage' as const, + team_flashed: 'team_flashed' as const, + three_kill_rounds: 'three_kill_rounds' as const, + time_to_damage_count: 'time_to_damage_count' as const, + time_to_damage_sum_s: 'time_to_damage_sum_s' as const, + total_engagement_frames: 'total_engagement_frames' as const, + trade_kill_attempts: 'trade_kill_attempts' as const, + trade_kill_opportunities: 'trade_kill_opportunities' as const, + trade_kill_successes: 'trade_kill_successes' as const, + traded_death_attempts: 'traded_death_attempts' as const, + traded_death_opportunities: 'traded_death_opportunities' as const, + traded_death_successes: 'traded_death_successes' as const, + two_kill_rounds: 'two_kill_rounds' as const, + unused_utility_value: 'unused_utility_value' as const, + updated_at: 'updated_at' as const, + util_on_death_count: 'util_on_death_count' as const, + util_on_death_sum: 'util_on_death_sum' as const, + wasted_magazine_shots: 'wasted_magazine_shots' as const, + zeus_kills: 'zeus_kills' as const +} + +export const enumPlayerMatchPerformanceVSelectColumn = { + accuracy: 'accuracy' as const, + accuracy_spotted: 'accuracy_spotted' as const, + aim_rating: 'aim_rating' as const, + counter_strafe_pct: 'counter_strafe_pct' as const, + enemy_blind_pr: 'enemy_blind_pr' as const, + flash_assists_pr: 'flash_assists_pr' as const, + hs_pct: 'hs_pct' as const, + kast_pct: 'kast_pct' as const, + match_id: 'match_id' as const, + overall_rating: 'overall_rating' as const, + played_at: 'played_at' as const, + positioning_rating: 'positioning_rating' as const, + rounds: 'rounds' as const, + source: 'source' as const, + steam_id: 'steam_id' as const, + survival_pct: 'survival_pct' as const, + traded_death_pct: 'traded_death_pct' as const, + util_efficiency: 'util_efficiency' as const, + utility_rating: 'utility_rating' as const +} + +export const enumPlayerMatchStatsVSelectColumn = { + assists: 'assists' as const, + assists_ct: 'assists_ct' as const, + assists_t: 'assists_t' as const, + avg_crosshair_angle_deg: 'avg_crosshair_angle_deg' as const, + avg_flash_duration: 'avg_flash_duration' as const, + avg_time_to_damage_s: 'avg_time_to_damage_s' as const, + counter_strafe_eligible_shots: 'counter_strafe_eligible_shots' as const, + counter_strafed_shots: 'counter_strafed_shots' as const, + damage: 'damage' as const, + damage_ct: 'damage_ct' as const, + damage_t: 'damage_t' as const, + deaths: 'deaths' as const, + deaths_ct: 'deaths_ct' as const, + deaths_t: 'deaths_t' as const, + decoy_throws: 'decoy_throws' as const, + enemies_flashed: 'enemies_flashed' as const, + first_bullet_hits: 'first_bullet_hits' as const, + first_bullet_shots: 'first_bullet_shots' as const, + five_kill_rounds: 'five_kill_rounds' as const, + flash_assists: 'flash_assists' as const, + flashes_thrown: 'flashes_thrown' as const, + four_kill_rounds: 'four_kill_rounds' as const, + he_damage: 'he_damage' as const, + he_team_damage: 'he_team_damage' as const, + he_throws: 'he_throws' as const, + headshot_hits: 'headshot_hits' as const, + hits: 'hits' as const, + hits_at_spotted: 'hits_at_spotted' as const, + hs_kills: 'hs_kills' as const, + hs_kills_ct: 'hs_kills_ct' as const, + hs_kills_t: 'hs_kills_t' as const, + kills: 'kills' as const, + kills_ct: 'kills_ct' as const, + kills_t: 'kills_t' as const, + knife_kills: 'knife_kills' as const, + match_id: 'match_id' as const, + molotov_damage: 'molotov_damage' as const, + molotov_throws: 'molotov_throws' as const, + non_awp_hits: 'non_awp_hits' as const, + on_target_frames: 'on_target_frames' as const, + rounds_ct: 'rounds_ct' as const, + rounds_played: 'rounds_played' as const, + rounds_t: 'rounds_t' as const, + shots_at_spotted: 'shots_at_spotted' as const, + shots_fired: 'shots_fired' as const, + smoke_throws: 'smoke_throws' as const, + spotted_count: 'spotted_count' as const, + spotted_with_damage_count: 'spotted_with_damage_count' as const, + spray_hits: 'spray_hits' as const, + spray_shots: 'spray_shots' as const, + steam_id: 'steam_id' as const, + team_damage: 'team_damage' as const, + team_flashed: 'team_flashed' as const, + three_kill_rounds: 'three_kill_rounds' as const, + total_engagement_frames: 'total_engagement_frames' as const, + trade_kill_attempts: 'trade_kill_attempts' as const, + trade_kill_opportunities: 'trade_kill_opportunities' as const, + trade_kill_successes: 'trade_kill_successes' as const, + traded_death_attempts: 'traded_death_attempts' as const, + traded_death_opportunities: 'traded_death_opportunities' as const, + traded_death_successes: 'traded_death_successes' as const, + two_kill_rounds: 'two_kill_rounds' as const, + unused_utility_value: 'unused_utility_value' as const, + utility_on_death: 'utility_on_death' as const, + wasted_magazine_shots: 'wasted_magazine_shots' as const, + zeus_kills: 'zeus_kills' as const +} + +export const enumPlayerObjectivesConstraint = { + player_objectives_pkey: 'player_objectives_pkey' as const +} + +export const enumPlayerObjectivesSelectColumn = { + deleted_at: 'deleted_at' as const, + match_id: 'match_id' as const, + match_map_id: 'match_map_id' as const, + player_steam_id: 'player_steam_id' as const, + round: 'round' as const, + time: 'time' as const, + type: 'type' as const +} + +export const enumPlayerObjectivesUpdateColumn = { + deleted_at: 'deleted_at' as const, + match_id: 'match_id' as const, + match_map_id: 'match_map_id' as const, + player_steam_id: 'player_steam_id' as const, + round: 'round' as const, + time: 'time' as const, + type: 'type' as const +} + +export const enumPlayerPerformanceVSelectColumn = { + accuracy_score: 'accuracy_score' as const, + aim_goal: 'aim_goal' as const, + aim_rating: 'aim_rating' as const, + band: 'band' as const, + band_sample: 'band_sample' as const, + blind_score: 'blind_score' as const, + counter_strafe_score: 'counter_strafe_score' as const, + crosshair_score: 'crosshair_score' as const, + flash_assists_score: 'flash_assists_score' as const, + hs_score: 'hs_score' as const, + kast_score: 'kast_score' as const, + maps: 'maps' as const, + positioning_goal: 'positioning_goal' as const, + positioning_rating: 'positioning_rating' as const, + premier_rank: 'premier_rank' as const, + rounds: 'rounds' as const, + spotted_score: 'spotted_score' as const, + steam_id: 'steam_id' as const, + survival_score: 'survival_score' as const, + traded_score: 'traded_score' as const, + ttd_score: 'ttd_score' as const, + util_eff_score: 'util_eff_score' as const, + utility_goal: 'utility_goal' as const, + utility_rating: 'utility_rating' as const +} + +export const enumPlayerPremierRankHistoryConstraint = { + player_premier_rank_history_pkey: 'player_premier_rank_history_pkey' as const, + uq_player_premier_rank_history_steam_match_type: 'uq_player_premier_rank_history_steam_match_type' as const +} + +export const enumPlayerPremierRankHistorySelectColumn = { + id: 'id' as const, + map_id: 'map_id' as const, + match_id: 'match_id' as const, + observed_at: 'observed_at' as const, + previous_rank: 'previous_rank' as const, + rank: 'rank' as const, + rank_type: 'rank_type' as const, + steam_id: 'steam_id' as const +} + +export const enumPlayerPremierRankHistoryUpdateColumn = { + id: 'id' as const, + map_id: 'map_id' as const, + match_id: 'match_id' as const, + observed_at: 'observed_at' as const, + previous_rank: 'previous_rank' as const, + rank: 'rank' as const, + rank_type: 'rank_type' as const, + steam_id: 'steam_id' as const +} + +export const enumPlayerSanctionsConstraint = { + player_sanctions_pkey: 'player_sanctions_pkey' as const +} + +export const enumPlayerSanctionsSelectColumn = { + created_at: 'created_at' as const, + deleted_at: 'deleted_at' as const, + id: 'id' as const, + player_steam_id: 'player_steam_id' as const, + reason: 'reason' as const, + remove_sanction_date: 'remove_sanction_date' as const, + sanctioned_by_steam_id: 'sanctioned_by_steam_id' as const, + type: 'type' as const +} + +export const enumPlayerSanctionsUpdateColumn = { + created_at: 'created_at' as const, + deleted_at: 'deleted_at' as const, + id: 'id' as const, + player_steam_id: 'player_steam_id' as const, + reason: 'reason' as const, + remove_sanction_date: 'remove_sanction_date' as const, + sanctioned_by_steam_id: 'sanctioned_by_steam_id' as const, + type: 'type' as const +} + +export const enumPlayerSeasonStatsConstraint = { + player_season_stats_pkey: 'player_season_stats_pkey' as const +} + +export const enumPlayerSeasonStatsSelectColumn = { + assists: 'assists' as const, + deaths: 'deaths' as const, + headshot_percentage: 'headshot_percentage' as const, + headshots: 'headshots' as const, + kills: 'kills' as const, + player_steam_id: 'player_steam_id' as const, + season_id: 'season_id' as const +} + +export const enumPlayerSeasonStatsSelectColumnPlayerSeasonStatsAggregateBoolExpAvgArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const +} + +export const enumPlayerSeasonStatsSelectColumnPlayerSeasonStatsAggregateBoolExpCorrArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const +} + +export const enumPlayerSeasonStatsSelectColumnPlayerSeasonStatsAggregateBoolExpCovarSampArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const +} + +export const enumPlayerSeasonStatsSelectColumnPlayerSeasonStatsAggregateBoolExpMaxArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const +} + +export const enumPlayerSeasonStatsSelectColumnPlayerSeasonStatsAggregateBoolExpMinArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const +} + +export const enumPlayerSeasonStatsSelectColumnPlayerSeasonStatsAggregateBoolExpStddevSampArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const +} + +export const enumPlayerSeasonStatsSelectColumnPlayerSeasonStatsAggregateBoolExpSumArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const +} + +export const enumPlayerSeasonStatsSelectColumnPlayerSeasonStatsAggregateBoolExpVarSampArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const +} + +export const enumPlayerSeasonStatsUpdateColumn = { + assists: 'assists' as const, + deaths: 'deaths' as const, + headshot_percentage: 'headshot_percentage' as const, + headshots: 'headshots' as const, + kills: 'kills' as const, + player_steam_id: 'player_steam_id' as const, + season_id: 'season_id' as const +} + +export const enumPlayerStatsConstraint = { + player_stats_pkey: 'player_stats_pkey' as const +} + +export const enumPlayerStatsSelectColumn = { + assists: 'assists' as const, + deaths: 'deaths' as const, + headshot_percentage: 'headshot_percentage' as const, + headshots: 'headshots' as const, + kills: 'kills' as const, + player_steam_id: 'player_steam_id' as const +} + +export const enumPlayerStatsUpdateColumn = { + assists: 'assists' as const, + deaths: 'deaths' as const, + headshot_percentage: 'headshot_percentage' as const, + headshots: 'headshots' as const, + kills: 'kills' as const, + player_steam_id: 'player_steam_id' as const +} + +export const enumPlayerSteamBotFriendConstraint = { + player_steam_bot_friend_pkey: 'player_steam_bot_friend_pkey' as const +} + +export const enumPlayerSteamBotFriendSelectColumn = { + bot_steam_account_id: 'bot_steam_account_id' as const, + bot_steamid64: 'bot_steamid64' as const, + created_at: 'created_at' as const, + friended_at: 'friended_at' as const, + last_presence_state: 'last_presence_state' as const, + status: 'status' as const, + steam_id: 'steam_id' as const, + updated_at: 'updated_at' as const +} + +export const enumPlayerSteamBotFriendUpdateColumn = { + bot_steam_account_id: 'bot_steam_account_id' as const, + bot_steamid64: 'bot_steamid64' as const, + created_at: 'created_at' as const, + friended_at: 'friended_at' as const, + last_presence_state: 'last_presence_state' as const, + status: 'status' as const, + steam_id: 'steam_id' as const, + updated_at: 'updated_at' as const +} + +export const enumPlayerSteamMatchAuthConstraint = { + player_steam_match_auth_pkey: 'player_steam_match_auth_pkey' as const +} + +export const enumPlayerSteamMatchAuthSelectColumn = { + auth_code: 'auth_code' as const, + created_at: 'created_at' as const, + last_error: 'last_error' as const, + last_known_share_code: 'last_known_share_code' as const, + last_polled_at: 'last_polled_at' as const, + steam_id: 'steam_id' as const, + updated_at: 'updated_at' as const +} + +export const enumPlayerSteamMatchAuthUpdateColumn = { + auth_code: 'auth_code' as const, + created_at: 'created_at' as const, + last_error: 'last_error' as const, + last_known_share_code: 'last_known_share_code' as const, + last_polled_at: 'last_polled_at' as const, + steam_id: 'steam_id' as const, + updated_at: 'updated_at' as const +} + +export const enumPlayerUnusedUtilityConstraint = { + player_unused_utility_pkey: 'player_unused_utility_pkey' as const +} + +export const enumPlayerUnusedUtilitySelectColumn = { + deleted_at: 'deleted_at' as const, + match_id: 'match_id' as const, + match_map_id: 'match_map_id' as const, + player_steam_id: 'player_steam_id' as const, + round: 'round' as const, + unused: 'unused' as const +} + +export const enumPlayerUnusedUtilityUpdateColumn = { + deleted_at: 'deleted_at' as const, + match_id: 'match_id' as const, + match_map_id: 'match_map_id' as const, + player_steam_id: 'player_steam_id' as const, + round: 'round' as const, + unused: 'unused' as const +} + +export const enumPlayerUtilityConstraint = { + player_utility_pkey: 'player_utility_pkey' as const +} + +export const enumPlayerUtilitySelectColumn = { + attacker_location_coordinates: 'attacker_location_coordinates' as const, + attacker_steam_id: 'attacker_steam_id' as const, + deleted_at: 'deleted_at' as const, + match_id: 'match_id' as const, + match_map_id: 'match_map_id' as const, + round: 'round' as const, + time: 'time' as const, + type: 'type' as const +} + +export const enumPlayerUtilityUpdateColumn = { + attacker_location_coordinates: 'attacker_location_coordinates' as const, + attacker_steam_id: 'attacker_steam_id' as const, + deleted_at: 'deleted_at' as const, + match_id: 'match_id' as const, + match_map_id: 'match_map_id' as const, + round: 'round' as const, + time: 'time' as const, + type: 'type' as const +} + +export const enumPlayerWeaponStatsVSelectColumn = { + first_bullet_hits: 'first_bullet_hits' as const, + first_bullet_shots: 'first_bullet_shots' as const, + hits: 'hits' as const, + hits_spotted: 'hits_spotted' as const, + match_id: 'match_id' as const, + shots: 'shots' as const, + shots_spotted: 'shots_spotted' as const, + steam_id: 'steam_id' as const, + weapon_class: 'weapon_class' as const +} + +export const enumPlayersConstraint = { + players_discord_id_key: 'players_discord_id_key' as const, + players_pkey: 'players_pkey' as const, + players_steam_id_key: 'players_steam_id_key' as const +} + +export const enumPlayersSelectColumn = { + avatar_url: 'avatar_url' as const, + country: 'country' as const, + created_at: 'created_at' as const, + custom_avatar_url: 'custom_avatar_url' as const, + days_since_last_ban: 'days_since_last_ban' as const, + discord_id: 'discord_id' as const, + faceit_elo: 'faceit_elo' as const, + faceit_nickname: 'faceit_nickname' as const, + faceit_player_id: 'faceit_player_id' as const, + faceit_skill_level: 'faceit_skill_level' as const, + faceit_updated_at: 'faceit_updated_at' as const, + faceit_url: 'faceit_url' as const, + game_ban_count: 'game_ban_count' as const, + language: 'language' as const, + last_read_news_at: 'last_read_news_at' as const, + last_sign_in_at: 'last_sign_in_at' as const, + name: 'name' as const, + name_registered: 'name_registered' as const, + notification_timezone: 'notification_timezone' as const, + premier_rank: 'premier_rank' as const, + premier_rank_updated_at: 'premier_rank_updated_at' as const, + profile_url: 'profile_url' as const, + quiet_hours_end: 'quiet_hours_end' as const, + quiet_hours_start: 'quiet_hours_start' as const, + role: 'role' as const, + roster_image_url: 'roster_image_url' as const, + show_match_ready_modal: 'show_match_ready_modal' as const, + steam_bans_checked_at: 'steam_bans_checked_at' as const, + steam_id: 'steam_id' as const, + vac_ban_count: 'vac_ban_count' as const, + vac_banned: 'vac_banned' as const +} + +export const enumPlayersUpdateColumn = { + avatar_url: 'avatar_url' as const, + country: 'country' as const, + created_at: 'created_at' as const, + custom_avatar_url: 'custom_avatar_url' as const, + days_since_last_ban: 'days_since_last_ban' as const, + discord_id: 'discord_id' as const, + faceit_elo: 'faceit_elo' as const, + faceit_nickname: 'faceit_nickname' as const, + faceit_player_id: 'faceit_player_id' as const, + faceit_skill_level: 'faceit_skill_level' as const, + faceit_updated_at: 'faceit_updated_at' as const, + faceit_url: 'faceit_url' as const, + game_ban_count: 'game_ban_count' as const, + language: 'language' as const, + last_read_news_at: 'last_read_news_at' as const, + last_sign_in_at: 'last_sign_in_at' as const, + name: 'name' as const, + name_registered: 'name_registered' as const, + notification_timezone: 'notification_timezone' as const, + premier_rank: 'premier_rank' as const, + premier_rank_updated_at: 'premier_rank_updated_at' as const, + profile_url: 'profile_url' as const, + quiet_hours_end: 'quiet_hours_end' as const, + quiet_hours_start: 'quiet_hours_start' as const, + role: 'role' as const, + roster_image_url: 'roster_image_url' as const, + show_match_ready_modal: 'show_match_ready_modal' as const, + steam_bans_checked_at: 'steam_bans_checked_at' as const, + steam_id: 'steam_id' as const, + vac_ban_count: 'vac_ban_count' as const, + vac_banned: 'vac_banned' as const +} + +export const enumPluginVersionsConstraint = { + plugin_versions_pkey: 'plugin_versions_pkey' as const +} + +export const enumPluginVersionsSelectColumn = { + min_game_build_id: 'min_game_build_id' as const, + published_at: 'published_at' as const, + runtime: 'runtime' as const, + version: 'version' as const +} + +export const enumPluginVersionsUpdateColumn = { + min_game_build_id: 'min_game_build_id' as const, + published_at: 'published_at' as const, + runtime: 'runtime' as const, + version: 'version' as const +} + +export const enumPushSubscriptionsConstraint = { + push_subscriptions_endpoint_key: 'push_subscriptions_endpoint_key' as const, + push_subscriptions_pkey: 'push_subscriptions_pkey' as const +} + +export const enumPushSubscriptionsSelectColumn = { + auth: 'auth' as const, + created_at: 'created_at' as const, + endpoint: 'endpoint' as const, + id: 'id' as const, + last_used_at: 'last_used_at' as const, + p256dh: 'p256dh' as const, + steam_id: 'steam_id' as const, + user_agent: 'user_agent' as const +} + +export const enumPushSubscriptionsUpdateColumn = { + auth: 'auth' as const, + created_at: 'created_at' as const, + endpoint: 'endpoint' as const, + id: 'id' as const, + last_used_at: 'last_used_at' as const, + p256dh: 'p256dh' as const, + steam_id: 'steam_id' as const, + user_agent: 'user_agent' as const +} + +export const enumRolePermissionsSelectColumn = { + can_create_events: 'can_create_events' as const, + can_create_matches: 'can_create_matches' as const, + can_create_tournaments: 'can_create_tournaments' as const, + role: 'role' as const +} + +export const enumSeasonsConstraint = { + seasons_pkey: 'seasons_pkey' as const +} + +export const enumSeasonsSelectColumn = { + created_at: 'created_at' as const, + description: 'description' as const, + ends_at: 'ends_at' as const, + id: 'id' as const, + needs_rebuild: 'needs_rebuild' as const, + number: 'number' as const, + starts_at: 'starts_at' as const +} + +export const enumSeasonsUpdateColumn = { + created_at: 'created_at' as const, + description: 'description' as const, + ends_at: 'ends_at' as const, + id: 'id' as const, + needs_rebuild: 'needs_rebuild' as const, + number: 'number' as const, + starts_at: 'starts_at' as const +} + +export const enumServerRegionsConstraint = { + e_server_regions_pkey: 'e_server_regions_pkey' as const +} + +export const enumServerRegionsSelectColumn = { + description: 'description' as const, + is_lan: 'is_lan' as const, + steam_relay: 'steam_relay' as const, + value: 'value' as const +} + +export const enumServerRegionsUpdateColumn = { + description: 'description' as const, + is_lan: 'is_lan' as const, + steam_relay: 'steam_relay' as const, + value: 'value' as const +} + +export const enumServersConstraint = { + servers_pkey: 'servers_pkey' as const, + servers_reserved_by_match_id_key: 'servers_reserved_by_match_id_key' as const +} + +export const enumServersSelectColumn = { + api_password: 'api_password' as const, + boot_status: 'boot_status' as const, + boot_status_detail: 'boot_status_detail' as const, + connect_password: 'connect_password' as const, + 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, + region: 'region' as const, + reserved_by_match_id: 'reserved_by_match_id' as const, + steam_relay: 'steam_relay' as const, + tv_port: 'tv_port' as const, + type: 'type' as const, + updated_at: 'updated_at' as const +} + +export const enumServersSelectColumnServersAggregateBoolExpBoolAndArgumentsColumns = { + connected: 'connected' as const, + enabled: 'enabled' as const, + is_dedicated: 'is_dedicated' as const, + rcon_status: 'rcon_status' as const +} + +export const enumServersSelectColumnServersAggregateBoolExpBoolOrArgumentsColumns = { + connected: 'connected' as const, + enabled: 'enabled' as const, + is_dedicated: 'is_dedicated' as const, + rcon_status: 'rcon_status' as const +} + +export const enumServersUpdateColumn = { + api_password: 'api_password' as const, + boot_status: 'boot_status' as const, + boot_status_detail: 'boot_status_detail' as const, + connect_password: 'connect_password' as const, + 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, + region: 'region' as const, + reserved_by_match_id: 'reserved_by_match_id' as const, + steam_relay: 'steam_relay' as const, + tv_port: 'tv_port' as const, + type: 'type' as const, + updated_at: 'updated_at' as const +} + +export const enumSettingsConstraint = { + settings_pkey: 'settings_pkey' as const +} + +export const enumSettingsSelectColumn = { + name: 'name' as const, + value: 'value' as const +} + +export const enumSettingsUpdateColumn = { + name: 'name' as const, + value: 'value' as const +} + +export const enumSteamAccountClaimsConstraint = { + steam_account_claims_k8s_job_name_key: 'steam_account_claims_k8s_job_name_key' as const, + steam_account_claims_pkey: 'steam_account_claims_pkey' as const +} + +export const enumSteamAccountClaimsSelectColumn = { + created_at: 'created_at' as const, + id: 'id' as const, + k8s_job_name: 'k8s_job_name' as const, + node_id: 'node_id' as const, + purpose: 'purpose' as const, + steam_account_id: 'steam_account_id' as const +} + +export const enumSteamAccountClaimsUpdateColumn = { + created_at: 'created_at' as const, + id: 'id' as const, + k8s_job_name: 'k8s_job_name' as const, + node_id: 'node_id' as const, + purpose: 'purpose' as const, + steam_account_id: 'steam_account_id' as const +} + +export const enumSteamAccountsConstraint = { + steam_accounts_pkey: 'steam_accounts_pkey' as const, + steam_accounts_username_key: 'steam_accounts_username_key' as const +} + +export const enumSteamAccountsSelectColumn = { + created_at: 'created_at' as const, + friend_capacity: 'friend_capacity' as const, + id: 'id' as const, + last_node_id: 'last_node_id' as const, + password: 'password' as const, + role: 'role' as const, + steam_level: 'steam_level' as const, + steamid64: 'steamid64' as const, + updated_at: 'updated_at' as const, + username: 'username' as const +} + +export const enumSteamAccountsUpdateColumn = { + created_at: 'created_at' as const, + friend_capacity: 'friend_capacity' as const, + id: 'id' as const, + last_node_id: 'last_node_id' as const, + password: 'password' as const, + role: 'role' as const, + steam_level: 'steam_level' as const, + steamid64: 'steamid64' as const, + updated_at: 'updated_at' as const, + username: 'username' as const +} + +export const enumSystemAlertsConstraint = { + system_alerts_pkey: 'system_alerts_pkey' as const +} + +export const enumSystemAlertsSelectColumn = { + created_at: 'created_at' as const, + created_by: 'created_by' as const, + dismissible: 'dismissible' as const, + expires_at: 'expires_at' as const, + id: 'id' as const, + is_active: 'is_active' as const, + message: 'message' as const, + title: 'title' as const, + type: 'type' as const, + updated_at: 'updated_at' as const +} + +export const enumSystemAlertsUpdateColumn = { + created_at: 'created_at' as const, + created_by: 'created_by' as const, + dismissible: 'dismissible' as const, + expires_at: 'expires_at' as const, + id: 'id' as const, + is_active: 'is_active' as const, + message: 'message' as const, + title: 'title' as const, + type: 'type' as const, + updated_at: 'updated_at' as const +} + +export const enumTeamInvitesConstraint = { + team_invites_pkey: 'team_invites_pkey' as const, + team_invites_team_id_steam_id_key: 'team_invites_team_id_steam_id_key' as const +} + +export const enumTeamInvitesSelectColumn = { + created_at: 'created_at' as const, + id: 'id' as const, + invited_by_player_steam_id: 'invited_by_player_steam_id' as const, + steam_id: 'steam_id' as const, + team_id: 'team_id' as const +} + +export const enumTeamInvitesUpdateColumn = { + created_at: 'created_at' as const, + id: 'id' as const, + invited_by_player_steam_id: 'invited_by_player_steam_id' as const, + steam_id: 'steam_id' as const, + team_id: 'team_id' as const +} + +export const enumTeamRosterConstraint = { + team_members_pkey: 'team_members_pkey' as const +} + +export const enumTeamRosterSelectColumn = { + coach: 'coach' as const, + player_steam_id: 'player_steam_id' as const, + role: 'role' as const, + roster_image_url: 'roster_image_url' as const, + status: 'status' as const, + team_id: 'team_id' as const +} + +export const enumTeamRosterSelectColumnTeamRosterAggregateBoolExpBoolAndArgumentsColumns = { + coach: 'coach' as const +} + +export const enumTeamRosterSelectColumnTeamRosterAggregateBoolExpBoolOrArgumentsColumns = { + coach: 'coach' as const +} + +export const enumTeamRosterUpdateColumn = { + coach: 'coach' as const, + player_steam_id: 'player_steam_id' as const, + role: 'role' as const, + roster_image_url: 'roster_image_url' as const, + status: 'status' as const, + team_id: 'team_id' as const +} + +export const enumTeamScrimAlertsConstraint = { + team_scrim_alerts_pkey: 'team_scrim_alerts_pkey' as const +} + +export const enumTeamScrimAlertsSelectColumn = { + created_at: 'created_at' as const, + elo_max: 'elo_max' as const, + elo_min: 'elo_min' as const, + enabled: 'enabled' as const, + id: 'id' as const, + last_notified_at: 'last_notified_at' as const, + regions: 'regions' as const, + team_id: 'team_id' as const +} + +export const enumTeamScrimAlertsUpdateColumn = { + created_at: 'created_at' as const, + elo_max: 'elo_max' as const, + elo_min: 'elo_min' as const, + enabled: 'enabled' as const, + id: 'id' as const, + last_notified_at: 'last_notified_at' as const, + regions: 'regions' as const, + team_id: 'team_id' as const +} + +export const enumTeamScrimAvailabilityConstraint = { + team_scrim_availability_pkey: 'team_scrim_availability_pkey' as const +} + +export const enumTeamScrimAvailabilitySelectColumn = { + created_at: 'created_at' as const, + ends_at: 'ends_at' as const, + id: 'id' as const, + recurring_weekly: 'recurring_weekly' as const, + starts_at: 'starts_at' as const, + team_id: 'team_id' as const +} + +export const enumTeamScrimAvailabilitySelectColumnTeamScrimAvailabilityAggregateBoolExpBoolAndArgumentsColumns = { + recurring_weekly: 'recurring_weekly' as const +} + +export const enumTeamScrimAvailabilitySelectColumnTeamScrimAvailabilityAggregateBoolExpBoolOrArgumentsColumns = { + recurring_weekly: 'recurring_weekly' as const +} + +export const enumTeamScrimAvailabilityUpdateColumn = { + created_at: 'created_at' as const, + ends_at: 'ends_at' as const, + id: 'id' as const, + recurring_weekly: 'recurring_weekly' as const, + starts_at: 'starts_at' as const, + team_id: 'team_id' as const +} + +export const enumTeamScrimRequestProposalsConstraint = { + team_scrim_request_proposals_pkey: 'team_scrim_request_proposals_pkey' as const +} + +export const enumTeamScrimRequestProposalsSelectColumn = { + created_at: 'created_at' as const, + id: 'id' as const, + proposed_by_steam_id: 'proposed_by_steam_id' as const, + proposed_by_team_id: 'proposed_by_team_id' as const, + proposed_scheduled_at: 'proposed_scheduled_at' as const, + request_id: 'request_id' as const +} + +export const enumTeamScrimRequestProposalsUpdateColumn = { + created_at: 'created_at' as const, + id: 'id' as const, + proposed_by_steam_id: 'proposed_by_steam_id' as const, + proposed_by_team_id: 'proposed_by_team_id' as const, + proposed_scheduled_at: 'proposed_scheduled_at' as const, + request_id: 'request_id' as const +} + +export const enumTeamScrimRequestsConstraint = { + team_scrim_requests_pkey: 'team_scrim_requests_pkey' as const, + uq_scrim_req_open: 'uq_scrim_req_open' as const +} + +export const enumTeamScrimRequestsSelectColumn = { + auto_generated: 'auto_generated' as const, + awaiting_team_id: 'awaiting_team_id' as const, + canceled_by_team_id: 'canceled_by_team_id' as const, + canceled_late: 'canceled_late' as const, + created_at: 'created_at' as const, + expires_at: 'expires_at' as const, + from_team_checked_in: 'from_team_checked_in' as const, + from_team_id: 'from_team_id' as const, + id: 'id' as const, + match_id: 'match_id' as const, + match_options_id: 'match_options_id' as const, + match_outcome: 'match_outcome' as const, + proposed_scheduled_at: 'proposed_scheduled_at' as const, + region: 'region' as const, + requested_by_steam_id: 'requested_by_steam_id' as const, + responded_at: 'responded_at' as const, + status: 'status' as const, + to_team_checked_in: 'to_team_checked_in' as const, + to_team_id: 'to_team_id' as const +} + +export const enumTeamScrimRequestsSelectColumnTeamScrimRequestsAggregateBoolExpBoolAndArgumentsColumns = { + auto_generated: 'auto_generated' as const, + canceled_late: 'canceled_late' as const, + from_team_checked_in: 'from_team_checked_in' as const, + to_team_checked_in: 'to_team_checked_in' as const +} + +export const enumTeamScrimRequestsSelectColumnTeamScrimRequestsAggregateBoolExpBoolOrArgumentsColumns = { + auto_generated: 'auto_generated' as const, + canceled_late: 'canceled_late' as const, + from_team_checked_in: 'from_team_checked_in' as const, + to_team_checked_in: 'to_team_checked_in' as const +} + +export const enumTeamScrimRequestsUpdateColumn = { + auto_generated: 'auto_generated' as const, + awaiting_team_id: 'awaiting_team_id' as const, + canceled_by_team_id: 'canceled_by_team_id' as const, + canceled_late: 'canceled_late' as const, + created_at: 'created_at' as const, + expires_at: 'expires_at' as const, + from_team_checked_in: 'from_team_checked_in' as const, + from_team_id: 'from_team_id' as const, + id: 'id' as const, + match_id: 'match_id' as const, + match_options_id: 'match_options_id' as const, + match_outcome: 'match_outcome' as const, + proposed_scheduled_at: 'proposed_scheduled_at' as const, + region: 'region' as const, + requested_by_steam_id: 'requested_by_steam_id' as const, + responded_at: 'responded_at' as const, + status: 'status' as const, + to_team_checked_in: 'to_team_checked_in' as const, + to_team_id: 'to_team_id' as const +} + +export const enumTeamScrimSettingsConstraint = { + team_scrim_settings_pkey: 'team_scrim_settings_pkey' as const, + team_scrim_settings_team_id_key: 'team_scrim_settings_team_id_key' as const +} + +export const enumTeamScrimSettingsSelectColumn = { + allow_outside_availability: 'allow_outside_availability' as const, + created_at: 'created_at' as const, + elo_max: 'elo_max' as const, + elo_min: 'elo_min' as const, + enabled: 'enabled' as const, + id: 'id' as const, + map_ids: 'map_ids' as const, + notes: 'notes' as const, + regions: 'regions' as const, + team_id: 'team_id' as const, + updated_at: 'updated_at' as const +} + +export const enumTeamScrimSettingsUpdateColumn = { + allow_outside_availability: 'allow_outside_availability' as const, + created_at: 'created_at' as const, + elo_max: 'elo_max' as const, + elo_min: 'elo_min' as const, + enabled: 'enabled' as const, + id: 'id' as const, + map_ids: 'map_ids' as const, + notes: 'notes' as const, + regions: 'regions' as const, + team_id: 'team_id' as const, + updated_at: 'updated_at' as const +} + +export const enumTeamSuggestionsConstraint = { + team_suggestions_group_hash_key: 'team_suggestions_group_hash_key' as const, + team_suggestions_pkey: 'team_suggestions_pkey' as const +} + +export const enumTeamSuggestionsSelectColumn = { + created_at: 'created_at' as const, + group_hash: 'group_hash' as const, + id: 'id' as const, + last_notified_at: 'last_notified_at' as const, + member_steam_ids: 'member_steam_ids' as const, + status: 'status' as const, + together_count: 'together_count' as const +} + +export const enumTeamSuggestionsUpdateColumn = { + created_at: 'created_at' as const, + group_hash: 'group_hash' as const, + id: 'id' as const, + last_notified_at: 'last_notified_at' as const, + member_steam_ids: 'member_steam_ids' as const, + status: 'status' as const, + together_count: 'together_count' as const +} + +export const enumTeamsConstraint = { + teams_name_key: 'teams_name_key' as const, + teams_pkey: 'teams_pkey' as const +} + +export const enumTeamsSelectColumn = { + avatar_url: 'avatar_url' as const, + captain_steam_id: 'captain_steam_id' as const, + id: 'id' as const, + is_organization: 'is_organization' as const, + name: 'name' as const, + owner_steam_id: 'owner_steam_id' as const, + short_name: 'short_name' as const +} + +export const enumTeamsSelectColumnTeamsAggregateBoolExpBoolAndArgumentsColumns = { + is_organization: 'is_organization' as const +} + +export const enumTeamsSelectColumnTeamsAggregateBoolExpBoolOrArgumentsColumns = { + is_organization: 'is_organization' as const +} + +export const enumTeamsUpdateColumn = { + avatar_url: 'avatar_url' as const, + captain_steam_id: 'captain_steam_id' as const, + id: 'id' as const, + is_organization: 'is_organization' as const, + name: 'name' as const, + owner_steam_id: 'owner_steam_id' as const, + short_name: 'short_name' as const +} + +export const enumTournamentAwardsConstraint = { + tournament_awards_pkey: 'tournament_awards_pkey' as const, + tournament_awards_tournament_id_placement_key: 'tournament_awards_tournament_id_placement_key' as const +} + +export const enumTournamentAwardsSelectColumn = { + award_id: 'award_id' as const, + created_at: 'created_at' as const, + custom_name: 'custom_name' as const, + id: 'id' as const, + image_url: 'image_url' as const, + placement: 'placement' as const, + silhouette: 'silhouette' as const, + tournament_id: 'tournament_id' as const, + updated_at: 'updated_at' as const +} + +export const enumTournamentAwardsUpdateColumn = { + award_id: 'award_id' as const, + created_at: 'created_at' as const, + custom_name: 'custom_name' as const, + id: 'id' as const, + image_url: 'image_url' as const, + placement: 'placement' as const, + silhouette: 'silhouette' as const, + tournament_id: 'tournament_id' as const, + updated_at: 'updated_at' as const +} + +export const enumTournamentBracketsConstraint = { + touarnment_brackets_pkey: 'touarnment_brackets_pkey' as const, + tournament_brackets_id_tournament_team_id_1_tournament_team_id_: 'tournament_brackets_id_tournament_team_id_1_tournament_team_id_' as const +} + +export const enumTournamentBracketsSelectColumn = { + bye: 'bye' as const, + created_at: 'created_at' as const, + finished: 'finished' as const, + group: 'group' as const, + id: 'id' as const, + loser_parent_bracket_id: 'loser_parent_bracket_id' as const, + match_id: 'match_id' as const, + match_number: 'match_number' as const, + match_options_id: 'match_options_id' as const, + parent_bracket_id: 'parent_bracket_id' as const, + path: 'path' as const, + round: 'round' as const, + scheduled_at: 'scheduled_at' as const, + scheduled_eta: 'scheduled_eta' as const, + team_1_seed: 'team_1_seed' as const, + team_2_seed: 'team_2_seed' as const, + tournament_stage_id: 'tournament_stage_id' as const, + tournament_team_id_1: 'tournament_team_id_1' as const, + tournament_team_id_2: 'tournament_team_id_2' as const +} + +export const enumTournamentBracketsSelectColumnTournamentBracketsAggregateBoolExpBoolAndArgumentsColumns = { + bye: 'bye' as const, + finished: 'finished' as const +} + +export const enumTournamentBracketsSelectColumnTournamentBracketsAggregateBoolExpBoolOrArgumentsColumns = { + bye: 'bye' as const, + finished: 'finished' as const +} + +export const enumTournamentBracketsUpdateColumn = { + bye: 'bye' as const, + created_at: 'created_at' as const, + finished: 'finished' as const, + group: 'group' as const, + id: 'id' as const, + loser_parent_bracket_id: 'loser_parent_bracket_id' as const, + match_id: 'match_id' as const, + match_number: 'match_number' as const, + match_options_id: 'match_options_id' as const, + parent_bracket_id: 'parent_bracket_id' as const, + path: 'path' as const, + round: 'round' as const, + scheduled_at: 'scheduled_at' as const, + scheduled_eta: 'scheduled_eta' as const, + team_1_seed: 'team_1_seed' as const, + team_2_seed: 'team_2_seed' as const, + tournament_stage_id: 'tournament_stage_id' as const, + tournament_team_id_1: 'tournament_team_id_1' as const, + tournament_team_id_2: 'tournament_team_id_2' as const +} + +export const enumTournamentCategoriesConstraint = { + tournament_categories_pkey: 'tournament_categories_pkey' as const +} + +export const enumTournamentCategoriesSelectColumn = { + category: 'category' as const, + tournament_id: 'tournament_id' as const +} + +export const enumTournamentCategoriesUpdateColumn = { + category: 'category' as const, + tournament_id: 'tournament_id' as const +} + +export const enumTournamentFreeAgentsConstraint = { + tournament_free_agents_pkey: 'tournament_free_agents_pkey' as const, + tournament_free_agents_tournament_id_player_steam_id_key: 'tournament_free_agents_tournament_id_player_steam_id_key' as const +} + +export const enumTournamentFreeAgentsSelectColumn = { + checked_in_at: 'checked_in_at' as const, + created_at: 'created_at' as const, + id: 'id' as const, + party_id: 'party_id' as const, + player_steam_id: 'player_steam_id' as const, + status: 'status' as const, + tournament_id: 'tournament_id' as const, + tournament_team_id: 'tournament_team_id' as const +} + +export const enumTournamentFreeAgentsUpdateColumn = { + checked_in_at: 'checked_in_at' as const, + created_at: 'created_at' as const, + id: 'id' as const, + party_id: 'party_id' as const, + player_steam_id: 'player_steam_id' as const, + status: 'status' as const, + tournament_id: 'tournament_id' as const, + tournament_team_id: 'tournament_team_id' as const +} + +export const enumTournamentInviteCodeUsesConstraint = { + tournament_invite_code_uses_pkey: 'tournament_invite_code_uses_pkey' as const +} + +export const enumTournamentInviteCodeUsesSelectColumn = { + invite_code_id: 'invite_code_id' as const, + player_steam_id: 'player_steam_id' as const, + team_id: 'team_id' as const, + used_at: 'used_at' as const +} + +export const enumTournamentInviteCodeUsesUpdateColumn = { + invite_code_id: 'invite_code_id' as const, + player_steam_id: 'player_steam_id' as const, + team_id: 'team_id' as const, + used_at: 'used_at' as const +} + +export const enumTournamentInviteCodesConstraint = { + tournament_invite_codes_code_key: 'tournament_invite_codes_code_key' as const, + tournament_invite_codes_pkey: 'tournament_invite_codes_pkey' as const +} + +export const enumTournamentInviteCodesSelectColumn = { + code: 'code' as const, + created_at: 'created_at' as const, + created_by_player_steam_id: 'created_by_player_steam_id' as const, + expires_at: 'expires_at' as const, + id: 'id' as const, + max_uses: 'max_uses' as const, + revoked_at: 'revoked_at' as const, + tournament_id: 'tournament_id' as const, + uses: 'uses' as const +} + +export const enumTournamentInviteCodesUpdateColumn = { + code: 'code' as const, + created_at: 'created_at' as const, + created_by_player_steam_id: 'created_by_player_steam_id' as const, + expires_at: 'expires_at' as const, + id: 'id' as const, + max_uses: 'max_uses' as const, + revoked_at: 'revoked_at' as const, + tournament_id: 'tournament_id' as const, + uses: 'uses' as const +} + +export const enumTournamentInvitesConstraint = { + idx_tournament_invites_player_unique: 'idx_tournament_invites_player_unique' as const, + idx_tournament_invites_team_unique: 'idx_tournament_invites_team_unique' as const, + tournament_invites_pkey: 'tournament_invites_pkey' as const +} + +export const enumTournamentInvitesSelectColumn = { + created_at: 'created_at' as const, + id: 'id' as const, + invited_by_player_steam_id: 'invited_by_player_steam_id' as const, + steam_id: 'steam_id' as const, + team_id: 'team_id' as const, + tournament_id: 'tournament_id' as const +} + +export const enumTournamentInvitesUpdateColumn = { + created_at: 'created_at' as const, + id: 'id' as const, + invited_by_player_steam_id: 'invited_by_player_steam_id' as const, + steam_id: 'steam_id' as const, + team_id: 'team_id' as const, + tournament_id: 'tournament_id' as const +} + +export const enumTournamentLeaderboardEntriesSelectColumn = { + adr: 'adr' as const, + assists: 'assists' as const, + deaths: 'deaths' as const, + headshot_percentage: 'headshot_percentage' as const, + kdr: 'kdr' as const, + kills: 'kills' as const, + matches_played: 'matches_played' as const, + player_avatar_url: 'player_avatar_url' as const, + player_country: 'player_country' as const, + player_custom_avatar_url: 'player_custom_avatar_url' as const, + player_name: 'player_name' as const, + player_steam_id: 'player_steam_id' as const, + rating: 'rating' as const, + rounds_played: 'rounds_played' as const, + team_name: 'team_name' as const, + tournament_team_id: 'tournament_team_id' as const +} + +export const enumTournamentNoShowsConstraint = { + tournament_no_shows_pkey: 'tournament_no_shows_pkey' as const, + tournament_no_shows_tournament_player_key: 'tournament_no_shows_tournament_player_key' as const +} + +export const enumTournamentNoShowsSelectColumn = { + id: 'id' as const, + occurred_at: 'occurred_at' as const, + player_steam_id: 'player_steam_id' as const, + tournament_id: 'tournament_id' as const, + tournament_team_id: 'tournament_team_id' as const +} + +export const enumTournamentNoShowsUpdateColumn = { + id: 'id' as const, + occurred_at: 'occurred_at' as const, + player_steam_id: 'player_steam_id' as const, + tournament_id: 'tournament_id' as const, + tournament_team_id: 'tournament_team_id' as const +} + +export const enumTournamentOrganizerTeamsConstraint = { + tournament_organizer_teams_pkey: 'tournament_organizer_teams_pkey' as const +} + +export const enumTournamentOrganizerTeamsSelectColumn = { + created_at: 'created_at' as const, + team_id: 'team_id' as const, + tournament_id: 'tournament_id' as const +} + +export const enumTournamentOrganizerTeamsUpdateColumn = { + created_at: 'created_at' as const, + team_id: 'team_id' as const, + tournament_id: 'tournament_id' as const +} + +export const enumTournamentOrganizersConstraint = { + tournament_organizers_pkey: 'tournament_organizers_pkey' as const +} + +export const enumTournamentOrganizersSelectColumn = { + organization_team_id: 'organization_team_id' as const, + steam_id: 'steam_id' as const, + tournament_id: 'tournament_id' as const +} + +export const enumTournamentOrganizersUpdateColumn = { + organization_team_id: 'organization_team_id' as const, + steam_id: 'steam_id' as const, + tournament_id: 'tournament_id' as const +} + +export const enumTournamentPrizesConstraint = { + tournament_prizes_pkey: 'tournament_prizes_pkey' as const +} + +export const enumTournamentPrizesSelectColumn = { + created_at: 'created_at' as const, + id: 'id' as const, + order: 'order' as const, + place: 'place' as const, + prize: 'prize' as const, + tournament_id: 'tournament_id' as const +} + +export const enumTournamentPrizesUpdateColumn = { + created_at: 'created_at' as const, + id: 'id' as const, + order: 'order' as const, + place: 'place' as const, + prize: 'prize' as const, + tournament_id: 'tournament_id' as const +} + +export const enumTournamentRegistrationUnlocksConstraint = { + idx_tournament_registration_unlocks_player: 'idx_tournament_registration_unlocks_player' as const, + idx_tournament_registration_unlocks_team: 'idx_tournament_registration_unlocks_team' as const +} + +export const enumTournamentRegistrationUnlocksSelectColumn = { + created_at: 'created_at' as const, + player_steam_id: 'player_steam_id' as const, + team_id: 'team_id' as const, + tournament_id: 'tournament_id' as const +} + +export const enumTournamentRegistrationUnlocksUpdateColumn = { + created_at: 'created_at' as const, + player_steam_id: 'player_steam_id' as const, + team_id: 'team_id' as const, + tournament_id: 'tournament_id' as const +} + +export const enumTournamentStageWindowsConstraint = { + tournament_stage_windows_pkey: 'tournament_stage_windows_pkey' as const, + tournament_stage_windows_tournament_stage_id_round_key: 'tournament_stage_windows_tournament_stage_id_round_key' as const +} + +export const enumTournamentStageWindowsSelectColumn = { + closes_at: 'closes_at' as const, + created_at: 'created_at' as const, + default_match_at: 'default_match_at' as const, + id: 'id' as const, + opens_at: 'opens_at' as const, + round: 'round' as const, + tournament_stage_id: 'tournament_stage_id' as const +} + +export const enumTournamentStageWindowsUpdateColumn = { + closes_at: 'closes_at' as const, + created_at: 'created_at' as const, + default_match_at: 'default_match_at' as const, + id: 'id' as const, + opens_at: 'opens_at' as const, + round: 'round' as const, + tournament_stage_id: 'tournament_stage_id' as const +} + +export const enumTournamentStagesConstraint = { + tournament_stages_pkey: 'tournament_stages_pkey' as const +} + +export const enumTournamentStagesSelectColumn = { + decider_best_of: 'decider_best_of' as const, + default_best_of: 'default_best_of' as const, + final_map_advantage: 'final_map_advantage' as const, + groups: 'groups' as const, + id: 'id' as const, + match_options_id: 'match_options_id' as const, + max_rounds: 'max_rounds' as const, + max_teams: 'max_teams' as const, + min_teams: 'min_teams' as const, + order: 'order' as const, + settings: 'settings' as const, + swiss_no_elimination: 'swiss_no_elimination' as const, + third_place_match: 'third_place_match' as const, + tournament_id: 'tournament_id' as const, + type: 'type' as const +} + +export const enumTournamentStagesSelectColumnTournamentStagesAggregateBoolExpBoolAndArgumentsColumns = { + swiss_no_elimination: 'swiss_no_elimination' as const, + third_place_match: 'third_place_match' as const +} + +export const enumTournamentStagesSelectColumnTournamentStagesAggregateBoolExpBoolOrArgumentsColumns = { + swiss_no_elimination: 'swiss_no_elimination' as const, + third_place_match: 'third_place_match' as const +} + +export const enumTournamentStagesUpdateColumn = { + decider_best_of: 'decider_best_of' as const, + default_best_of: 'default_best_of' as const, + final_map_advantage: 'final_map_advantage' as const, + groups: 'groups' as const, + id: 'id' as const, + match_options_id: 'match_options_id' as const, + max_rounds: 'max_rounds' as const, + max_teams: 'max_teams' as const, + min_teams: 'min_teams' as const, + order: 'order' as const, + settings: 'settings' as const, + swiss_no_elimination: 'swiss_no_elimination' as const, + third_place_match: 'third_place_match' as const, + tournament_id: 'tournament_id' as const, + type: 'type' as const +} + +export const enumTournamentTeamInvitesConstraint = { + tournament_team_invites_pkey: 'tournament_team_invites_pkey' as const, + tournament_team_invites_steam_id_tournament_team_id_key: 'tournament_team_invites_steam_id_tournament_team_id_key' as const +} + +export const enumTournamentTeamInvitesSelectColumn = { + created_at: 'created_at' as const, + id: 'id' as const, + invited_by_player_steam_id: 'invited_by_player_steam_id' as const, + steam_id: 'steam_id' as const, + tournament_team_id: 'tournament_team_id' as const +} + +export const enumTournamentTeamInvitesUpdateColumn = { + created_at: 'created_at' as const, + id: 'id' as const, + invited_by_player_steam_id: 'invited_by_player_steam_id' as const, + steam_id: 'steam_id' as const, + tournament_team_id: 'tournament_team_id' as const +} + +export const enumTournamentTeamRosterConstraint = { + tournament_roster_pkey: 'tournament_roster_pkey' as const, + tournament_roster_player_steam_id_tournament_id_key: 'tournament_roster_player_steam_id_tournament_id_key' as const +} + +export const enumTournamentTeamRosterSelectColumn = { + checked_in_at: 'checked_in_at' as const, + player_steam_id: 'player_steam_id' as const, + role: 'role' as const, + tournament_id: 'tournament_id' as const, + tournament_team_id: 'tournament_team_id' as const +} + +export const enumTournamentTeamRosterUpdateColumn = { + checked_in_at: 'checked_in_at' as const, + player_steam_id: 'player_steam_id' as const, + role: 'role' as const, + tournament_id: 'tournament_id' as const, + tournament_team_id: 'tournament_team_id' as const +} + +export const enumTournamentTeamsConstraint = { + tournament_teams_pkey: 'tournament_teams_pkey' as const, + tournament_teams_tournament_id_name_key: 'tournament_teams_tournament_id_name_key' as const, + tournament_teams_tournament_id_seed_key: 'tournament_teams_tournament_id_seed_key' as const, + tournament_teams_tournament_id_team_id_key: 'tournament_teams_tournament_id_team_id_key' as const +} + +export const enumTournamentTeamsSelectColumn = { + captain_steam_id: 'captain_steam_id' as const, + checked_in_at: 'checked_in_at' as const, + created_at: 'created_at' as const, + eligible_at: 'eligible_at' as const, + id: 'id' as const, + is_drafted: 'is_drafted' as const, + name: 'name' as const, + owner_steam_id: 'owner_steam_id' as const, + seed: 'seed' as const, + short_name: 'short_name' as const, + team_id: 'team_id' as const, + tournament_id: 'tournament_id' as const +} + +export const enumTournamentTeamsSelectColumnTournamentTeamsAggregateBoolExpBoolAndArgumentsColumns = { + is_drafted: 'is_drafted' as const +} + +export const enumTournamentTeamsSelectColumnTournamentTeamsAggregateBoolExpBoolOrArgumentsColumns = { + is_drafted: 'is_drafted' as const +} + +export const enumTournamentTeamsUpdateColumn = { + captain_steam_id: 'captain_steam_id' as const, + checked_in_at: 'checked_in_at' as const, + created_at: 'created_at' as const, + eligible_at: 'eligible_at' as const, + id: 'id' as const, + is_drafted: 'is_drafted' as const, + name: 'name' as const, + owner_steam_id: 'owner_steam_id' as const, + seed: 'seed' as const, + short_name: 'short_name' as const, + team_id: 'team_id' as const, + tournament_id: 'tournament_id' as const +} + +export const enumTournamentsConstraint = { + tournaments_match_options_id_key: 'tournaments_match_options_id_key' as const, + tournaments_pkey: 'tournaments_pkey' as const +} + +export const enumTournamentsSelectColumn = { + auto_start: 'auto_start' as const, + awards_enabled: 'awards_enabled' as const, + banner: 'banner' as const, + check_in_closed_for: 'check_in_closed_for' as const, + check_in_closes_before_minutes: 'check_in_closes_before_minutes' as const, + check_in_closing_notified_for: 'check_in_closing_notified_for' as const, + check_in_ends_at: 'check_in_ends_at' as const, + check_in_opens_before_minutes: 'check_in_opens_before_minutes' as const, + check_in_required: 'check_in_required' as const, + check_in_setting: 'check_in_setting' as const, + created_at: 'created_at' as const, + description: 'description' as const, + discord_guild_id: 'discord_guild_id' as const, + discord_notifications_enabled: 'discord_notifications_enabled' as const, + discord_notify_Canceled: 'discord_notify_Canceled' as const, + discord_notify_Finished: 'discord_notify_Finished' as const, + discord_notify_Forfeit: 'discord_notify_Forfeit' as const, + discord_notify_Live: 'discord_notify_Live' as const, + discord_notify_MapPaused: 'discord_notify_MapPaused' as const, + discord_notify_PickingPlayers: 'discord_notify_PickingPlayers' as const, + discord_notify_Scheduled: 'discord_notify_Scheduled' as const, + discord_notify_Surrendered: 'discord_notify_Surrendered' as const, + discord_notify_Tie: 'discord_notify_Tie' as const, + discord_notify_Veto: 'discord_notify_Veto' as const, + discord_notify_WaitingForCheckIn: 'discord_notify_WaitingForCheckIn' as const, + discord_notify_WaitingForServer: 'discord_notify_WaitingForServer' as const, + discord_role_id: 'discord_role_id' as const, + discord_voice_enabled: 'discord_voice_enabled' as const, + discord_webhook: 'discord_webhook' as const, + homepage: 'homepage' as const, + id: 'id' as const, + invite_only: 'invite_only' as const, + is_league: 'is_league' as const, + latitude: 'latitude' as const, + location: 'location' as const, + logo: 'logo' as const, + longitude: 'longitude' as const, + match_options_id: 'match_options_id' as const, + max_elo: 'max_elo' as const, + min_elo: 'min_elo' as const, + min_role: 'min_role' as const, + name: 'name' as const, + organizer_steam_id: 'organizer_steam_id' as const, + regions: 'regions' as const, + registration_type: 'registration_type' as const, + scheduling_mode: 'scheduling_mode' as const, + start: 'start' as const, + status: 'status' as const, + substitutes_enabled: 'substitutes_enabled' as const +} + +export const enumTournamentsSelectColumnTournamentsAggregateBoolExpAvgArgumentsColumns = { + latitude: 'latitude' as const, + longitude: 'longitude' as const +} + +export const enumTournamentsSelectColumnTournamentsAggregateBoolExpBoolAndArgumentsColumns = { + auto_start: 'auto_start' as const, + awards_enabled: 'awards_enabled' as const, + check_in_required: 'check_in_required' as const, + discord_notifications_enabled: 'discord_notifications_enabled' as const, + discord_notify_Canceled: 'discord_notify_Canceled' as const, + discord_notify_Finished: 'discord_notify_Finished' as const, + discord_notify_Forfeit: 'discord_notify_Forfeit' as const, + discord_notify_Live: 'discord_notify_Live' as const, + discord_notify_MapPaused: 'discord_notify_MapPaused' as const, + discord_notify_PickingPlayers: 'discord_notify_PickingPlayers' as const, + discord_notify_Scheduled: 'discord_notify_Scheduled' as const, + discord_notify_Surrendered: 'discord_notify_Surrendered' as const, + discord_notify_Tie: 'discord_notify_Tie' as const, + discord_notify_Veto: 'discord_notify_Veto' as const, + discord_notify_WaitingForCheckIn: 'discord_notify_WaitingForCheckIn' as const, + discord_notify_WaitingForServer: 'discord_notify_WaitingForServer' as const, + discord_voice_enabled: 'discord_voice_enabled' as const, + invite_only: 'invite_only' as const, + is_league: 'is_league' as const, + substitutes_enabled: 'substitutes_enabled' as const +} + +export const enumTournamentsSelectColumnTournamentsAggregateBoolExpBoolOrArgumentsColumns = { + auto_start: 'auto_start' as const, + awards_enabled: 'awards_enabled' as const, + check_in_required: 'check_in_required' as const, + discord_notifications_enabled: 'discord_notifications_enabled' as const, + discord_notify_Canceled: 'discord_notify_Canceled' as const, + discord_notify_Finished: 'discord_notify_Finished' as const, + discord_notify_Forfeit: 'discord_notify_Forfeit' as const, + discord_notify_Live: 'discord_notify_Live' as const, + discord_notify_MapPaused: 'discord_notify_MapPaused' as const, + discord_notify_PickingPlayers: 'discord_notify_PickingPlayers' as const, + discord_notify_Scheduled: 'discord_notify_Scheduled' as const, + discord_notify_Surrendered: 'discord_notify_Surrendered' as const, + discord_notify_Tie: 'discord_notify_Tie' as const, + discord_notify_Veto: 'discord_notify_Veto' as const, + discord_notify_WaitingForCheckIn: 'discord_notify_WaitingForCheckIn' as const, + discord_notify_WaitingForServer: 'discord_notify_WaitingForServer' as const, + discord_voice_enabled: 'discord_voice_enabled' as const, + invite_only: 'invite_only' as const, + is_league: 'is_league' as const, + substitutes_enabled: 'substitutes_enabled' as const +} + +export const enumTournamentsSelectColumnTournamentsAggregateBoolExpCorrArgumentsColumns = { + latitude: 'latitude' as const, + longitude: 'longitude' as const +} + +export const enumTournamentsSelectColumnTournamentsAggregateBoolExpCovarSampArgumentsColumns = { + latitude: 'latitude' as const, + longitude: 'longitude' as const +} + +export const enumTournamentsSelectColumnTournamentsAggregateBoolExpMaxArgumentsColumns = { + latitude: 'latitude' as const, + longitude: 'longitude' as const +} + +export const enumTournamentsSelectColumnTournamentsAggregateBoolExpMinArgumentsColumns = { + latitude: 'latitude' as const, + longitude: 'longitude' as const +} + +export const enumTournamentsSelectColumnTournamentsAggregateBoolExpStddevSampArgumentsColumns = { + latitude: 'latitude' as const, + longitude: 'longitude' as const +} + +export const enumTournamentsSelectColumnTournamentsAggregateBoolExpSumArgumentsColumns = { + latitude: 'latitude' as const, + longitude: 'longitude' as const +} + +export const enumTournamentsSelectColumnTournamentsAggregateBoolExpVarSampArgumentsColumns = { + latitude: 'latitude' as const, + longitude: 'longitude' as const +} + +export const enumTournamentsUpdateColumn = { + auto_start: 'auto_start' as const, + awards_enabled: 'awards_enabled' as const, + banner: 'banner' as const, + check_in_closed_for: 'check_in_closed_for' as const, + check_in_closes_before_minutes: 'check_in_closes_before_minutes' as const, + check_in_closing_notified_for: 'check_in_closing_notified_for' as const, + check_in_ends_at: 'check_in_ends_at' as const, + check_in_opens_before_minutes: 'check_in_opens_before_minutes' as const, + check_in_required: 'check_in_required' as const, + check_in_setting: 'check_in_setting' as const, + created_at: 'created_at' as const, + description: 'description' as const, + discord_guild_id: 'discord_guild_id' as const, + discord_notifications_enabled: 'discord_notifications_enabled' as const, + discord_notify_Canceled: 'discord_notify_Canceled' as const, + discord_notify_Finished: 'discord_notify_Finished' as const, + discord_notify_Forfeit: 'discord_notify_Forfeit' as const, + discord_notify_Live: 'discord_notify_Live' as const, + discord_notify_MapPaused: 'discord_notify_MapPaused' as const, + discord_notify_PickingPlayers: 'discord_notify_PickingPlayers' as const, + discord_notify_Scheduled: 'discord_notify_Scheduled' as const, + discord_notify_Surrendered: 'discord_notify_Surrendered' as const, + discord_notify_Tie: 'discord_notify_Tie' as const, + discord_notify_Veto: 'discord_notify_Veto' as const, + discord_notify_WaitingForCheckIn: 'discord_notify_WaitingForCheckIn' as const, + discord_notify_WaitingForServer: 'discord_notify_WaitingForServer' as const, + discord_role_id: 'discord_role_id' as const, + discord_voice_enabled: 'discord_voice_enabled' as const, + discord_webhook: 'discord_webhook' as const, + homepage: 'homepage' as const, + id: 'id' as const, + invite_only: 'invite_only' as const, + is_league: 'is_league' as const, + latitude: 'latitude' as const, + location: 'location' as const, + logo: 'logo' as const, + longitude: 'longitude' as const, + match_options_id: 'match_options_id' as const, + max_elo: 'max_elo' as const, + min_elo: 'min_elo' as const, + min_role: 'min_role' as const, + name: 'name' as const, + organizer_steam_id: 'organizer_steam_id' as const, + regions: 'regions' as const, + registration_type: 'registration_type' as const, + scheduling_mode: 'scheduling_mode' as const, + start: 'start' as const, + status: 'status' as const, + substitutes_enabled: 'substitutes_enabled' as const +} + +export const enumUtilityCollectionItemsConstraint = { + utility_collection_items_pkey: 'utility_collection_items_pkey' as const +} + +export const enumUtilityCollectionItemsSelectColumn = { + collection_id: 'collection_id' as const, + created_at: 'created_at' as const, + note: 'note' as const, + position: 'position' as const, + utility_lineup_id: 'utility_lineup_id' as const +} + +export const enumUtilityCollectionItemsUpdateColumn = { + collection_id: 'collection_id' as const, + created_at: 'created_at' as const, + note: 'note' as const, + position: 'position' as const, + utility_lineup_id: 'utility_lineup_id' as const +} + +export const enumUtilityCollectionsConstraint = { + utility_collections_pkey: 'utility_collections_pkey' as const +} + +export const enumUtilityCollectionsSelectColumn = { + created_at: 'created_at' as const, + description: 'description' as const, + id: 'id' as const, + map_name: 'map_name' as const, + name: 'name' as const, + owner_steam_id: 'owner_steam_id' as const, + team_id: 'team_id' as const, + updated_at: 'updated_at' as const, + visibility: 'visibility' as const +} + +export const enumUtilityCollectionsUpdateColumn = { + created_at: 'created_at' as const, + description: 'description' as const, + id: 'id' as const, + map_name: 'map_name' as const, + name: 'name' as const, + owner_steam_id: 'owner_steam_id' as const, + team_id: 'team_id' as const, + updated_at: 'updated_at' as const, + visibility: 'visibility' as const +} + +export const enumUtilityDemoMinesConstraint = { + utility_demo_mines_pkey: 'utility_demo_mines_pkey' as const +} + +export const enumUtilityDemoMinesSelectColumn = { + failed_reason: 'failed_reason' as const, + match_map_demo_id: 'match_map_demo_id' as const, + mined_at: 'mined_at' as const, + throws: 'throws' as const, + version: 'version' as const +} + +export const enumUtilityDemoMinesUpdateColumn = { + failed_reason: 'failed_reason' as const, + match_map_demo_id: 'match_map_demo_id' as const, + mined_at: 'mined_at' as const, + throws: 'throws' as const, + version: 'version' as const +} + +export const enumUtilityDemoThrowsConstraint = { + utility_demo_throws_pkey: 'utility_demo_throws_pkey' as const +} + +export const enumUtilityDemoThrowsSelectColumn = { + created_at: 'created_at' as const, + flight_time_ms: 'flight_time_ms' as const, + grenade_id: 'grenade_id' as const, + land_x: 'land_x' as const, + land_y: 'land_y' as const, + land_z: 'land_z' as const, + lineup_bucket: 'lineup_bucket' as const, + map_name: 'map_name' as const, + match_id: 'match_id' as const, + match_map_demo_id: 'match_map_demo_id' as const, + match_map_id: 'match_map_id' as const, + origin_x: 'origin_x' as const, + origin_y: 'origin_y' as const, + origin_z: 'origin_z' as const, + round: 'round' as const, + side: 'side' as const, + technique: 'technique' as const, + throw_strength: 'throw_strength' as const, + thrower_steam_id: 'thrower_steam_id' as const, + thrown_at: 'thrown_at' as const, + tick: 'tick' as const, + utility_type: 'utility_type' as const, + view_pitch: 'view_pitch' as const, + view_yaw: 'view_yaw' as const +} + +export const enumUtilityDemoThrowsUpdateColumn = { + created_at: 'created_at' as const, + flight_time_ms: 'flight_time_ms' as const, + grenade_id: 'grenade_id' as const, + land_x: 'land_x' as const, + land_y: 'land_y' as const, + land_z: 'land_z' as const, + map_name: 'map_name' as const, + match_id: 'match_id' as const, + match_map_demo_id: 'match_map_demo_id' as const, + match_map_id: 'match_map_id' as const, + origin_x: 'origin_x' as const, + origin_y: 'origin_y' as const, + origin_z: 'origin_z' as const, + round: 'round' as const, + side: 'side' as const, + technique: 'technique' as const, + throw_strength: 'throw_strength' as const, + thrower_steam_id: 'thrower_steam_id' as const, + thrown_at: 'thrown_at' as const, + tick: 'tick' as const, + utility_type: 'utility_type' as const, + view_pitch: 'view_pitch' as const, + view_yaw: 'view_yaw' as const +} + +export const enumUtilityDriftResultsConstraint = { + utility_drift_results_pkey: 'utility_drift_results_pkey' as const +} + +export const enumUtilityDriftResultsSelectColumn = { + created_at: 'created_at' as const, + distance: 'distance' as const, + distance_xy: 'distance_xy' as const, + distance_z: 'distance_z' as const, + reason: 'reason' as const, + severity: 'severity' as const, + utility_drift_scan_id: 'utility_drift_scan_id' as const, + utility_lineup_id: 'utility_lineup_id' as const, + verdict: 'verdict' as const +} + +export const enumUtilityDriftResultsSelectColumnUtilityDriftResultsAggregateBoolExpAvgArgumentsColumns = { + distance: 'distance' as const, + distance_xy: 'distance_xy' as const, + distance_z: 'distance_z' as const +} + +export const enumUtilityDriftResultsSelectColumnUtilityDriftResultsAggregateBoolExpCorrArgumentsColumns = { + distance: 'distance' as const, + distance_xy: 'distance_xy' as const, + distance_z: 'distance_z' as const +} + +export const enumUtilityDriftResultsSelectColumnUtilityDriftResultsAggregateBoolExpCovarSampArgumentsColumns = { + distance: 'distance' as const, + distance_xy: 'distance_xy' as const, + distance_z: 'distance_z' as const +} + +export const enumUtilityDriftResultsSelectColumnUtilityDriftResultsAggregateBoolExpMaxArgumentsColumns = { + distance: 'distance' as const, + distance_xy: 'distance_xy' as const, + distance_z: 'distance_z' as const +} + +export const enumUtilityDriftResultsSelectColumnUtilityDriftResultsAggregateBoolExpMinArgumentsColumns = { + distance: 'distance' as const, + distance_xy: 'distance_xy' as const, + distance_z: 'distance_z' as const +} + +export const enumUtilityDriftResultsSelectColumnUtilityDriftResultsAggregateBoolExpStddevSampArgumentsColumns = { + distance: 'distance' as const, + distance_xy: 'distance_xy' as const, + distance_z: 'distance_z' as const +} + +export const enumUtilityDriftResultsSelectColumnUtilityDriftResultsAggregateBoolExpSumArgumentsColumns = { + distance: 'distance' as const, + distance_xy: 'distance_xy' as const, + distance_z: 'distance_z' as const +} + +export const enumUtilityDriftResultsSelectColumnUtilityDriftResultsAggregateBoolExpVarSampArgumentsColumns = { + distance: 'distance' as const, + distance_xy: 'distance_xy' as const, + distance_z: 'distance_z' as const +} + +export const enumUtilityDriftResultsUpdateColumn = { + created_at: 'created_at' as const, + distance: 'distance' as const, + distance_xy: 'distance_xy' as const, + distance_z: 'distance_z' as const, + reason: 'reason' as const, + severity: 'severity' as const, + utility_drift_scan_id: 'utility_drift_scan_id' as const, + utility_lineup_id: 'utility_lineup_id' as const, + verdict: 'verdict' as const +} + +export const enumUtilityDriftScansConstraint = { + utility_drift_scans_pkey: 'utility_drift_scans_pkey' as const +} + +export const enumUtilityDriftScansSelectColumn = { + broken: 'broken' as const, + created_at: 'created_at' as const, + failure_reason: 'failure_reason' as const, + finished_at: 'finished_at' as const, + from_revision: 'from_revision' as const, + id: 'id' as const, + lineups: 'lineups' as const, + map_name: 'map_name' as const, + max_distance: 'max_distance' as const, + moved: 'moved' as const, + requested_by_steam_id: 'requested_by_steam_id' as const, + scanned: 'scanned' as const, + started_at: 'started_at' as const, + status: 'status' as const, + to_revision: 'to_revision' as const, + unchanged: 'unchanged' as const, + unsimulatable: 'unsimulatable' as const, + updated_at: 'updated_at' as const +} + +export const enumUtilityDriftScansUpdateColumn = { + broken: 'broken' as const, + created_at: 'created_at' as const, + failure_reason: 'failure_reason' as const, + finished_at: 'finished_at' as const, + from_revision: 'from_revision' as const, + id: 'id' as const, + lineups: 'lineups' as const, + map_name: 'map_name' as const, + max_distance: 'max_distance' as const, + moved: 'moved' as const, + requested_by_steam_id: 'requested_by_steam_id' as const, + scanned: 'scanned' as const, + started_at: 'started_at' as const, + status: 'status' as const, + to_revision: 'to_revision' as const, + unchanged: 'unchanged' as const, + unsimulatable: 'unsimulatable' as const, + updated_at: 'updated_at' as const +} + +export const enumUtilityLineupFavoritesConstraint = { + utility_lineup_favorites_pkey: 'utility_lineup_favorites_pkey' as const +} + +export const enumUtilityLineupFavoritesSelectColumn = { + created_at: 'created_at' as const, + steam_id: 'steam_id' as const, + utility_lineup_id: 'utility_lineup_id' as const +} + +export const enumUtilityLineupFavoritesUpdateColumn = { + created_at: 'created_at' as const, + steam_id: 'steam_id' as const, + utility_lineup_id: 'utility_lineup_id' as const +} + +export const enumUtilityLineupProgressConstraint = { + utility_lineup_progress_pkey: 'utility_lineup_progress_pkey' as const +} + +export const enumUtilityLineupProgressSelectColumn = { + attempts: 'attempts' as const, + best_streak: 'best_streak' as const, + current_streak: 'current_streak' as const, + last_practiced_at: 'last_practiced_at' as const, + mastered_at: 'mastered_at' as const, + miss_along_sum: 'miss_along_sum' as const, + miss_lateral_sum: 'miss_lateral_sum' as const, + miss_samples: 'miss_samples' as const, + miss_vertical_sum: 'miss_vertical_sum' as const, + steam_id: 'steam_id' as const, + successes: 'successes' as const, + utility_lineup_id: 'utility_lineup_id' as const +} + +export const enumUtilityLineupProgressSelectColumnUtilityLineupProgressAggregateBoolExpAvgArgumentsColumns = { + miss_along_sum: 'miss_along_sum' as const, + miss_lateral_sum: 'miss_lateral_sum' as const, + miss_vertical_sum: 'miss_vertical_sum' as const +} + +export const enumUtilityLineupProgressSelectColumnUtilityLineupProgressAggregateBoolExpCorrArgumentsColumns = { + miss_along_sum: 'miss_along_sum' as const, + miss_lateral_sum: 'miss_lateral_sum' as const, + miss_vertical_sum: 'miss_vertical_sum' as const +} + +export const enumUtilityLineupProgressSelectColumnUtilityLineupProgressAggregateBoolExpCovarSampArgumentsColumns = { + miss_along_sum: 'miss_along_sum' as const, + miss_lateral_sum: 'miss_lateral_sum' as const, + miss_vertical_sum: 'miss_vertical_sum' as const +} + +export const enumUtilityLineupProgressSelectColumnUtilityLineupProgressAggregateBoolExpMaxArgumentsColumns = { + miss_along_sum: 'miss_along_sum' as const, + miss_lateral_sum: 'miss_lateral_sum' as const, + miss_vertical_sum: 'miss_vertical_sum' as const +} + +export const enumUtilityLineupProgressSelectColumnUtilityLineupProgressAggregateBoolExpMinArgumentsColumns = { + miss_along_sum: 'miss_along_sum' as const, + miss_lateral_sum: 'miss_lateral_sum' as const, + miss_vertical_sum: 'miss_vertical_sum' as const +} + +export const enumUtilityLineupProgressSelectColumnUtilityLineupProgressAggregateBoolExpStddevSampArgumentsColumns = { + miss_along_sum: 'miss_along_sum' as const, + miss_lateral_sum: 'miss_lateral_sum' as const, + miss_vertical_sum: 'miss_vertical_sum' as const +} + +export const enumUtilityLineupProgressSelectColumnUtilityLineupProgressAggregateBoolExpSumArgumentsColumns = { + miss_along_sum: 'miss_along_sum' as const, + miss_lateral_sum: 'miss_lateral_sum' as const, + miss_vertical_sum: 'miss_vertical_sum' as const +} + +export const enumUtilityLineupProgressSelectColumnUtilityLineupProgressAggregateBoolExpVarSampArgumentsColumns = { + miss_along_sum: 'miss_along_sum' as const, + miss_lateral_sum: 'miss_lateral_sum' as const, + miss_vertical_sum: 'miss_vertical_sum' as const +} + +export const enumUtilityLineupProgressUpdateColumn = { + attempts: 'attempts' as const, + best_streak: 'best_streak' as const, + current_streak: 'current_streak' as const, + last_practiced_at: 'last_practiced_at' as const, + mastered_at: 'mastered_at' as const, + miss_along_sum: 'miss_along_sum' as const, + miss_lateral_sum: 'miss_lateral_sum' as const, + miss_samples: 'miss_samples' as const, + miss_vertical_sum: 'miss_vertical_sum' as const, + steam_id: 'steam_id' as const, + successes: 'successes' as const, + utility_lineup_id: 'utility_lineup_id' as const +} + +export const enumUtilityLineupRendersConstraint = { + utility_lineup_renders_one_in_flight_idx: 'utility_lineup_renders_one_in_flight_idx' as const, + utility_lineup_renders_pkey: 'utility_lineup_renders_pkey' as const +} + +export const enumUtilityLineupRendersSelectColumn = { + created_at: 'created_at' as const, + duration_ms: 'duration_ms' as const, + error_message: 'error_message' as const, + game_server_node_id: 'game_server_node_id' as const, + id: 'id' as const, + k8s_job_name: 'k8s_job_name' as const, + last_status_at: 'last_status_at' as const, + map_name: 'map_name' as const, + paused: 'paused' as const, + progress: 'progress' as const, + requested_by_steam_id: 'requested_by_steam_id' as const, + session_token: 'session_token' as const, + skip_reason: 'skip_reason' as const, + sort_index: 'sort_index' as const, + spec: 'spec' as const, + status: 'status' as const, + status_history: 'status_history' as const, + utility_lineup_id: 'utility_lineup_id' as const, + utility_practice_session_id: 'utility_practice_session_id' as const +} + +export const enumUtilityLineupRendersSelectColumnUtilityLineupRendersAggregateBoolExpBoolAndArgumentsColumns = { + paused: 'paused' as const +} + +export const enumUtilityLineupRendersSelectColumnUtilityLineupRendersAggregateBoolExpBoolOrArgumentsColumns = { + paused: 'paused' as const +} + +export const enumUtilityLineupRendersUpdateColumn = { + created_at: 'created_at' as const, + duration_ms: 'duration_ms' as const, + error_message: 'error_message' as const, + game_server_node_id: 'game_server_node_id' as const, + id: 'id' as const, + k8s_job_name: 'k8s_job_name' as const, + last_status_at: 'last_status_at' as const, + map_name: 'map_name' as const, + paused: 'paused' as const, + progress: 'progress' as const, + requested_by_steam_id: 'requested_by_steam_id' as const, + session_token: 'session_token' as const, + skip_reason: 'skip_reason' as const, + sort_index: 'sort_index' as const, + spec: 'spec' as const, + status: 'status' as const, + status_history: 'status_history' as const, + utility_lineup_id: 'utility_lineup_id' as const, + utility_practice_session_id: 'utility_practice_session_id' as const +} + +export const enumUtilityLineupRepairsConstraint = { + utility_lineup_repairs_open_idx: 'utility_lineup_repairs_open_idx' as const, + utility_lineup_repairs_pkey: 'utility_lineup_repairs_pkey' as const +} + +export const enumUtilityLineupRepairsSelectColumn = { + created_at: 'created_at' as const, + drift_distance: 'drift_distance' as const, + expires_at: 'expires_at' as const, + id: 'id' as const, + repaired_at: 'repaired_at' as const, + repaired_utility_lineup_id: 'repaired_utility_lineup_id' as const, + requested_by_steam_id: 'requested_by_steam_id' as const, + status: 'status' as const, + utility_drift_scan_id: 'utility_drift_scan_id' as const, + utility_lineup_id: 'utility_lineup_id' as const, + utility_practice_session_id: 'utility_practice_session_id' as const +} + +export const enumUtilityLineupRepairsSelectColumnUtilityLineupRepairsAggregateBoolExpAvgArgumentsColumns = { + drift_distance: 'drift_distance' as const +} + +export const enumUtilityLineupRepairsSelectColumnUtilityLineupRepairsAggregateBoolExpCorrArgumentsColumns = { + drift_distance: 'drift_distance' as const +} + +export const enumUtilityLineupRepairsSelectColumnUtilityLineupRepairsAggregateBoolExpCovarSampArgumentsColumns = { + drift_distance: 'drift_distance' as const +} + +export const enumUtilityLineupRepairsSelectColumnUtilityLineupRepairsAggregateBoolExpMaxArgumentsColumns = { + drift_distance: 'drift_distance' as const +} + +export const enumUtilityLineupRepairsSelectColumnUtilityLineupRepairsAggregateBoolExpMinArgumentsColumns = { + drift_distance: 'drift_distance' as const +} + +export const enumUtilityLineupRepairsSelectColumnUtilityLineupRepairsAggregateBoolExpStddevSampArgumentsColumns = { + drift_distance: 'drift_distance' as const +} + +export const enumUtilityLineupRepairsSelectColumnUtilityLineupRepairsAggregateBoolExpSumArgumentsColumns = { + drift_distance: 'drift_distance' as const +} + +export const enumUtilityLineupRepairsSelectColumnUtilityLineupRepairsAggregateBoolExpVarSampArgumentsColumns = { + drift_distance: 'drift_distance' as const +} + +export const enumUtilityLineupRepairsUpdateColumn = { + created_at: 'created_at' as const, + drift_distance: 'drift_distance' as const, + expires_at: 'expires_at' as const, + id: 'id' as const, + repaired_at: 'repaired_at' as const, + repaired_utility_lineup_id: 'repaired_utility_lineup_id' as const, + requested_by_steam_id: 'requested_by_steam_id' as const, + status: 'status' as const, + utility_drift_scan_id: 'utility_drift_scan_id' as const, + utility_lineup_id: 'utility_lineup_id' as const, + utility_practice_session_id: 'utility_practice_session_id' as const +} + +export const enumUtilityLineupVotesConstraint = { + utility_lineup_votes_pkey: 'utility_lineup_votes_pkey' as const +} + +export const enumUtilityLineupVotesSelectColumn = { + created_at: 'created_at' as const, + steam_id: 'steam_id' as const, + utility_lineup_id: 'utility_lineup_id' as const, + vote: 'vote' as const +} + +export const enumUtilityLineupVotesUpdateColumn = { + created_at: 'created_at' as const, + steam_id: 'steam_id' as const, + utility_lineup_id: 'utility_lineup_id' as const, + vote: 'vote' as const +} + +export const enumUtilityLineupsConstraint = { + utility_lineups_external_idx: 'utility_lineups_external_idx' as const, + utility_lineups_pkey: 'utility_lineups_pkey' as const +} + +export const enumUtilityLineupsSelectColumn = { + aim_tolerance: 'aim_tolerance' as const, + archived_at: 'archived_at' as const, + author_steam_id: 'author_steam_id' as const, + confidence: 'confidence' as const, + created_at: 'created_at' as const, + description: 'description' as const, + downvotes: 'downvotes' as const, + external_id: 'external_id' as const, + eye_z: 'eye_z' as const, + favorites: 'favorites' as const, + flight_time_ms: 'flight_time_ms' as const, + forked_from_utility_lineup_id: 'forked_from_utility_lineup_id' as const, + id: 'id' as const, + initial_pos_x: 'initial_pos_x' as const, + initial_pos_y: 'initial_pos_y' as const, + initial_pos_z: 'initial_pos_z' as const, + initial_vel_x: 'initial_vel_x' as const, + initial_vel_y: 'initial_vel_y' as const, + initial_vel_z: 'initial_vel_z' as const, + jump_throw_bind: 'jump_throw_bind' as const, + land_x: 'land_x' as const, + land_y: 'land_y' as const, + land_z: 'land_z' as const, + lineup_bucket: 'lineup_bucket' as const, + map_name: 'map_name' as const, + name: 'name' as const, + origin_source: 'origin_source' as const, + origin_x: 'origin_x' as const, + origin_y: 'origin_y' as const, + origin_z: 'origin_z' as const, + practice_attempts: 'practice_attempts' as const, + practice_players: 'practice_players' as const, + practice_successes: 'practice_successes' as const, + preview_duration_ms: 'preview_duration_ms' as const, + preview_file: 'preview_file' as const, + preview_rendered_at: 'preview_rendered_at' as const, + preview_thumbnail: 'preview_thumbnail' as const, + public_requested_at: 'public_requested_at' as const, + public_review_note: 'public_review_note' as const, + public_reviewed_at: 'public_reviewed_at' as const, + public_reviewed_by: 'public_reviewed_by' as const, + side: 'side' as const, + source_grenade_id: 'source_grenade_id' as const, + source_match_id: 'source_match_id' as const, + source_match_map_id: 'source_match_map_id' as const, + source_url: 'source_url' as const, + tags: 'tags' as const, + team_id: 'team_id' as const, + technique: 'technique' as const, + throw_strength: 'throw_strength' as const, + trajectory_file: 'trajectory_file' as const, + trajectory_preview: 'trajectory_preview' as const, + trajectory_size: 'trajectory_size' as const, + updated_at: 'updated_at' as const, + upvotes: 'upvotes' as const, + utility_type: 'utility_type' as const, + verified_at: 'verified_at' as const, + view_pitch: 'view_pitch' as const, + view_pitch_delta: 'view_pitch_delta' as const, + view_yaw: 'view_yaw' as const, + view_yaw_delta: 'view_yaw_delta' as const, + visibility: 'visibility' as const, + workshop_map_id: 'workshop_map_id' as const +} + +export const enumUtilityLineupsSelectColumnUtilityLineupsAggregateBoolExpAvgArgumentsColumns = { + aim_tolerance: 'aim_tolerance' as const, + eye_z: 'eye_z' as const, + initial_pos_x: 'initial_pos_x' as const, + initial_pos_y: 'initial_pos_y' as const, + initial_pos_z: 'initial_pos_z' as const, + initial_vel_x: 'initial_vel_x' as const, + initial_vel_y: 'initial_vel_y' as const, + initial_vel_z: 'initial_vel_z' as const, + land_x: 'land_x' as const, + land_y: 'land_y' as const, + land_z: 'land_z' as const, + origin_x: 'origin_x' as const, + origin_y: 'origin_y' as const, + origin_z: 'origin_z' as const, + view_pitch: 'view_pitch' as const, + view_pitch_delta: 'view_pitch_delta' as const, + view_yaw: 'view_yaw' as const, + view_yaw_delta: 'view_yaw_delta' as const +} + +export const enumUtilityLineupsSelectColumnUtilityLineupsAggregateBoolExpBoolAndArgumentsColumns = { + jump_throw_bind: 'jump_throw_bind' as const +} + +export const enumUtilityLineupsSelectColumnUtilityLineupsAggregateBoolExpBoolOrArgumentsColumns = { + jump_throw_bind: 'jump_throw_bind' as const +} + +export const enumUtilityLineupsSelectColumnUtilityLineupsAggregateBoolExpCorrArgumentsColumns = { + aim_tolerance: 'aim_tolerance' as const, + eye_z: 'eye_z' as const, + initial_pos_x: 'initial_pos_x' as const, + initial_pos_y: 'initial_pos_y' as const, + initial_pos_z: 'initial_pos_z' as const, + initial_vel_x: 'initial_vel_x' as const, + initial_vel_y: 'initial_vel_y' as const, + initial_vel_z: 'initial_vel_z' as const, + land_x: 'land_x' as const, + land_y: 'land_y' as const, + land_z: 'land_z' as const, + origin_x: 'origin_x' as const, + origin_y: 'origin_y' as const, + origin_z: 'origin_z' as const, + view_pitch: 'view_pitch' as const, + view_pitch_delta: 'view_pitch_delta' as const, + view_yaw: 'view_yaw' as const, + view_yaw_delta: 'view_yaw_delta' as const +} + +export const enumUtilityLineupsSelectColumnUtilityLineupsAggregateBoolExpCovarSampArgumentsColumns = { + aim_tolerance: 'aim_tolerance' as const, + eye_z: 'eye_z' as const, + initial_pos_x: 'initial_pos_x' as const, + initial_pos_y: 'initial_pos_y' as const, + initial_pos_z: 'initial_pos_z' as const, + initial_vel_x: 'initial_vel_x' as const, + initial_vel_y: 'initial_vel_y' as const, + initial_vel_z: 'initial_vel_z' as const, + land_x: 'land_x' as const, + land_y: 'land_y' as const, + land_z: 'land_z' as const, + origin_x: 'origin_x' as const, + origin_y: 'origin_y' as const, + origin_z: 'origin_z' as const, + view_pitch: 'view_pitch' as const, + view_pitch_delta: 'view_pitch_delta' as const, + view_yaw: 'view_yaw' as const, + view_yaw_delta: 'view_yaw_delta' as const +} + +export const enumUtilityLineupsSelectColumnUtilityLineupsAggregateBoolExpMaxArgumentsColumns = { + aim_tolerance: 'aim_tolerance' as const, + eye_z: 'eye_z' as const, + initial_pos_x: 'initial_pos_x' as const, + initial_pos_y: 'initial_pos_y' as const, + initial_pos_z: 'initial_pos_z' as const, + initial_vel_x: 'initial_vel_x' as const, + initial_vel_y: 'initial_vel_y' as const, + initial_vel_z: 'initial_vel_z' as const, + land_x: 'land_x' as const, + land_y: 'land_y' as const, + land_z: 'land_z' as const, + origin_x: 'origin_x' as const, + origin_y: 'origin_y' as const, + origin_z: 'origin_z' as const, + view_pitch: 'view_pitch' as const, + view_pitch_delta: 'view_pitch_delta' as const, + view_yaw: 'view_yaw' as const, + view_yaw_delta: 'view_yaw_delta' as const +} + +export const enumUtilityLineupsSelectColumnUtilityLineupsAggregateBoolExpMinArgumentsColumns = { + aim_tolerance: 'aim_tolerance' as const, + eye_z: 'eye_z' as const, + initial_pos_x: 'initial_pos_x' as const, + initial_pos_y: 'initial_pos_y' as const, + initial_pos_z: 'initial_pos_z' as const, + initial_vel_x: 'initial_vel_x' as const, + initial_vel_y: 'initial_vel_y' as const, + initial_vel_z: 'initial_vel_z' as const, + land_x: 'land_x' as const, + land_y: 'land_y' as const, + land_z: 'land_z' as const, + origin_x: 'origin_x' as const, + origin_y: 'origin_y' as const, + origin_z: 'origin_z' as const, + view_pitch: 'view_pitch' as const, + view_pitch_delta: 'view_pitch_delta' as const, + view_yaw: 'view_yaw' as const, + view_yaw_delta: 'view_yaw_delta' as const +} + +export const enumUtilityLineupsSelectColumnUtilityLineupsAggregateBoolExpStddevSampArgumentsColumns = { + aim_tolerance: 'aim_tolerance' as const, + eye_z: 'eye_z' as const, + initial_pos_x: 'initial_pos_x' as const, + initial_pos_y: 'initial_pos_y' as const, + initial_pos_z: 'initial_pos_z' as const, + initial_vel_x: 'initial_vel_x' as const, + initial_vel_y: 'initial_vel_y' as const, + initial_vel_z: 'initial_vel_z' as const, + land_x: 'land_x' as const, + land_y: 'land_y' as const, + land_z: 'land_z' as const, + origin_x: 'origin_x' as const, + origin_y: 'origin_y' as const, + origin_z: 'origin_z' as const, + view_pitch: 'view_pitch' as const, + view_pitch_delta: 'view_pitch_delta' as const, + view_yaw: 'view_yaw' as const, + view_yaw_delta: 'view_yaw_delta' as const +} + +export const enumUtilityLineupsSelectColumnUtilityLineupsAggregateBoolExpSumArgumentsColumns = { + aim_tolerance: 'aim_tolerance' as const, + eye_z: 'eye_z' as const, + initial_pos_x: 'initial_pos_x' as const, + initial_pos_y: 'initial_pos_y' as const, + initial_pos_z: 'initial_pos_z' as const, + initial_vel_x: 'initial_vel_x' as const, + initial_vel_y: 'initial_vel_y' as const, + initial_vel_z: 'initial_vel_z' as const, + land_x: 'land_x' as const, + land_y: 'land_y' as const, + land_z: 'land_z' as const, + origin_x: 'origin_x' as const, + origin_y: 'origin_y' as const, + origin_z: 'origin_z' as const, + view_pitch: 'view_pitch' as const, + view_pitch_delta: 'view_pitch_delta' as const, + view_yaw: 'view_yaw' as const, + view_yaw_delta: 'view_yaw_delta' as const +} + +export const enumUtilityLineupsSelectColumnUtilityLineupsAggregateBoolExpVarSampArgumentsColumns = { + aim_tolerance: 'aim_tolerance' as const, + eye_z: 'eye_z' as const, + initial_pos_x: 'initial_pos_x' as const, + initial_pos_y: 'initial_pos_y' as const, + initial_pos_z: 'initial_pos_z' as const, + initial_vel_x: 'initial_vel_x' as const, + initial_vel_y: 'initial_vel_y' as const, + initial_vel_z: 'initial_vel_z' as const, + land_x: 'land_x' as const, + land_y: 'land_y' as const, + land_z: 'land_z' as const, + origin_x: 'origin_x' as const, + origin_y: 'origin_y' as const, + origin_z: 'origin_z' as const, + view_pitch: 'view_pitch' as const, + view_pitch_delta: 'view_pitch_delta' as const, + view_yaw: 'view_yaw' as const, + view_yaw_delta: 'view_yaw_delta' as const +} + +export const enumUtilityLineupsUpdateColumn = { + aim_tolerance: 'aim_tolerance' as const, + archived_at: 'archived_at' as const, + author_steam_id: 'author_steam_id' as const, + confidence: 'confidence' as const, + created_at: 'created_at' as const, + description: 'description' as const, + downvotes: 'downvotes' as const, + external_id: 'external_id' as const, + eye_z: 'eye_z' as const, + favorites: 'favorites' as const, + flight_time_ms: 'flight_time_ms' as const, + forked_from_utility_lineup_id: 'forked_from_utility_lineup_id' as const, + id: 'id' as const, + initial_pos_x: 'initial_pos_x' as const, + initial_pos_y: 'initial_pos_y' as const, + initial_pos_z: 'initial_pos_z' as const, + initial_vel_x: 'initial_vel_x' as const, + initial_vel_y: 'initial_vel_y' as const, + initial_vel_z: 'initial_vel_z' as const, + jump_throw_bind: 'jump_throw_bind' as const, + land_x: 'land_x' as const, + land_y: 'land_y' as const, + land_z: 'land_z' as const, + map_name: 'map_name' as const, + name: 'name' as const, + origin_source: 'origin_source' as const, + origin_x: 'origin_x' as const, + origin_y: 'origin_y' as const, + origin_z: 'origin_z' as const, + practice_attempts: 'practice_attempts' as const, + practice_players: 'practice_players' as const, + practice_successes: 'practice_successes' as const, + preview_duration_ms: 'preview_duration_ms' as const, + preview_file: 'preview_file' as const, + preview_rendered_at: 'preview_rendered_at' as const, + preview_thumbnail: 'preview_thumbnail' as const, + public_requested_at: 'public_requested_at' as const, + public_review_note: 'public_review_note' as const, + public_reviewed_at: 'public_reviewed_at' as const, + public_reviewed_by: 'public_reviewed_by' as const, + side: 'side' as const, + source_grenade_id: 'source_grenade_id' as const, + source_match_id: 'source_match_id' as const, + source_match_map_id: 'source_match_map_id' as const, + source_url: 'source_url' as const, + tags: 'tags' as const, + team_id: 'team_id' as const, + technique: 'technique' as const, + throw_strength: 'throw_strength' as const, + trajectory_file: 'trajectory_file' as const, + trajectory_preview: 'trajectory_preview' as const, + trajectory_size: 'trajectory_size' as const, + updated_at: 'updated_at' as const, + upvotes: 'upvotes' as const, + utility_type: 'utility_type' as const, + verified_at: 'verified_at' as const, + view_pitch: 'view_pitch' as const, + view_pitch_delta: 'view_pitch_delta' as const, + view_yaw: 'view_yaw' as const, + view_yaw_delta: 'view_yaw_delta' as const, + visibility: 'visibility' as const, + workshop_map_id: 'workshop_map_id' as const +} + +export const enumUtilityMetaLineupsConstraint = { + utility_meta_lineups_pkey: 'utility_meta_lineups_pkey' as const +} + +export const enumUtilityMetaLineupsSelectColumn = { + first_seen_at: 'first_seen_at' as const, + land_x: 'land_x' as const, + land_y: 'land_y' as const, + land_z: 'land_z' as const, + last_seen_at: 'last_seen_at' as const, + lineup_bucket: 'lineup_bucket' as const, + lineups: 'lineups' as const, + map_name: 'map_name' as const, + matches: 'matches' as const, + origin_x: 'origin_x' as const, + origin_y: 'origin_y' as const, + origin_z: 'origin_z' as const, + refreshed_at: 'refreshed_at' as const, + side: 'side' as const, + technique: 'technique' as const, + throw_strength: 'throw_strength' as const, + throwers: 'throwers' as const, + throws: 'throws' as const, + utility_type: 'utility_type' as const, + view_pitch: 'view_pitch' as const, + view_yaw: 'view_yaw' as const +} + +export const enumUtilityMetaLineupsUpdateColumn = { + first_seen_at: 'first_seen_at' as const, + land_x: 'land_x' as const, + land_y: 'land_y' as const, + land_z: 'land_z' as const, + last_seen_at: 'last_seen_at' as const, + lineup_bucket: 'lineup_bucket' as const, + lineups: 'lineups' as const, + map_name: 'map_name' as const, + matches: 'matches' as const, + origin_x: 'origin_x' as const, + origin_y: 'origin_y' as const, + origin_z: 'origin_z' as const, + refreshed_at: 'refreshed_at' as const, + side: 'side' as const, + technique: 'technique' as const, + throw_strength: 'throw_strength' as const, + throwers: 'throwers' as const, + throws: 'throws' as const, + utility_type: 'utility_type' as const, + view_pitch: 'view_pitch' as const, + view_yaw: 'view_yaw' as const +} + +export const enumUtilityPlaybookStepsConstraint = { + utility_playbook_steps_order_key: 'utility_playbook_steps_order_key' as const, + utility_playbook_steps_pkey: 'utility_playbook_steps_pkey' as const +} + +export const enumUtilityPlaybookStepsSelectColumn = { + assigned_steam_id: 'assigned_steam_id' as const, + created_at: 'created_at' as const, + id: 'id' as const, + note: 'note' as const, + offset_ms: 'offset_ms' as const, + playbook_id: 'playbook_id' as const, + step_order: 'step_order' as const, + utility_lineup_id: 'utility_lineup_id' as const +} + +export const enumUtilityPlaybookStepsUpdateColumn = { + assigned_steam_id: 'assigned_steam_id' as const, + created_at: 'created_at' as const, + id: 'id' as const, + note: 'note' as const, + offset_ms: 'offset_ms' as const, + playbook_id: 'playbook_id' as const, + step_order: 'step_order' as const, + utility_lineup_id: 'utility_lineup_id' as const +} + +export const enumUtilityPlaybooksConstraint = { + utility_playbooks_pkey: 'utility_playbooks_pkey' as const +} + +export const enumUtilityPlaybooksSelectColumn = { + created_at: 'created_at' as const, + description: 'description' as const, + id: 'id' as const, + map_name: 'map_name' as const, + name: 'name' as const, + owner_steam_id: 'owner_steam_id' as const, + side: 'side' as const, + team_id: 'team_id' as const, + updated_at: 'updated_at' as const, + visibility: 'visibility' as const +} + +export const enumUtilityPlaybooksUpdateColumn = { + created_at: 'created_at' as const, + description: 'description' as const, + id: 'id' as const, + map_name: 'map_name' as const, + name: 'name' as const, + owner_steam_id: 'owner_steam_id' as const, + side: 'side' as const, + team_id: 'team_id' as const, + updated_at: 'updated_at' as const, + visibility: 'visibility' as const +} + +export const enumUtilityPracticeInvitesConstraint = { + utility_practice_invites_pkey: 'utility_practice_invites_pkey' as const +} + +export const enumUtilityPracticeInvitesSelectColumn = { + created_at: 'created_at' as const, + invited_by_steam_id: 'invited_by_steam_id' as const, + steam_id: 'steam_id' as const, + utility_practice_session_id: 'utility_practice_session_id' as const +} + +export const enumUtilityPracticeInvitesUpdateColumn = { + created_at: 'created_at' as const, + invited_by_steam_id: 'invited_by_steam_id' as const, + steam_id: 'steam_id' as const, + utility_practice_session_id: 'utility_practice_session_id' as const +} + +export const enumUtilityPracticeSessionsConstraint = { + utility_practice_sessions_invite_code_idx: 'utility_practice_sessions_invite_code_idx' as const, + utility_practice_sessions_match_key: 'utility_practice_sessions_match_key' as const, + utility_practice_sessions_one_live_per_host_idx: 'utility_practice_sessions_one_live_per_host_idx' as const, + utility_practice_sessions_pkey: 'utility_practice_sessions_pkey' as const +} + +export const enumUtilityPracticeSessionsSelectColumn = { + access: 'access' as const, + collection_id: 'collection_id' as const, + created_at: 'created_at' as const, + empty_since: 'empty_since' as const, + expires_at: 'expires_at' as const, + failure_reason: 'failure_reason' as const, + first_joined_at: 'first_joined_at' as const, + host_steam_id: 'host_steam_id' as const, + id: 'id' as const, + invite_code: 'invite_code' as const, + is_open: 'is_open' as const, + is_render: 'is_render' as const, + last_occupied_at: 'last_occupied_at' as const, + map_changing_at: 'map_changing_at' as const, + map_name: 'map_name' as const, + match_id: 'match_id' as const, + notify_when_ready: 'notify_when_ready' as const, + playbook_id: 'playbook_id' as const, + region: 'region' as const, + status: 'status' as const, + team_id: 'team_id' as const, + updated_at: 'updated_at' as const +} + +export const enumUtilityPracticeSessionsSelectColumnUtilityPracticeSessionsAggregateBoolExpBoolAndArgumentsColumns = { + is_open: 'is_open' as const, + is_render: 'is_render' as const, + notify_when_ready: 'notify_when_ready' as const +} + +export const enumUtilityPracticeSessionsSelectColumnUtilityPracticeSessionsAggregateBoolExpBoolOrArgumentsColumns = { + is_open: 'is_open' as const, + is_render: 'is_render' as const, + notify_when_ready: 'notify_when_ready' as const +} + +export const enumUtilityPracticeSessionsUpdateColumn = { + access: 'access' as const, + collection_id: 'collection_id' as const, + created_at: 'created_at' as const, + empty_since: 'empty_since' as const, + expires_at: 'expires_at' as const, + failure_reason: 'failure_reason' as const, + first_joined_at: 'first_joined_at' as const, + host_steam_id: 'host_steam_id' as const, + id: 'id' as const, + invite_code: 'invite_code' as const, + is_open: 'is_open' as const, + is_render: 'is_render' as const, + last_occupied_at: 'last_occupied_at' as const, + map_changing_at: 'map_changing_at' as const, + map_name: 'map_name' as const, + match_id: 'match_id' as const, + notify_when_ready: 'notify_when_ready' as const, + playbook_id: 'playbook_id' as const, + region: 'region' as const, + status: 'status' as const, + team_id: 'team_id' as const, + updated_at: 'updated_at' as const +} + +export const enumVEventPlayerStatsSelectColumn = { + assists: 'assists' as const, + deaths: 'deaths' as const, + event_id: 'event_id' as const, + headshot_percentage: 'headshot_percentage' as const, + headshots: 'headshots' as const, + kdr: 'kdr' as const, + kills: 'kills' as const, + matches_played: 'matches_played' as const, + player_steam_id: 'player_steam_id' as const +} + +export const enumVEventPlayerStatsSelectColumnVEventPlayerStatsAggregateBoolExpAvgArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const, + kdr: 'kdr' as const +} + +export const enumVEventPlayerStatsSelectColumnVEventPlayerStatsAggregateBoolExpCorrArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const, + kdr: 'kdr' as const +} + +export const enumVEventPlayerStatsSelectColumnVEventPlayerStatsAggregateBoolExpCovarSampArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const, + kdr: 'kdr' as const +} + +export const enumVEventPlayerStatsSelectColumnVEventPlayerStatsAggregateBoolExpMaxArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const, + kdr: 'kdr' as const +} + +export const enumVEventPlayerStatsSelectColumnVEventPlayerStatsAggregateBoolExpMinArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const, + kdr: 'kdr' as const +} + +export const enumVEventPlayerStatsSelectColumnVEventPlayerStatsAggregateBoolExpStddevSampArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const, + kdr: 'kdr' as const +} + +export const enumVEventPlayerStatsSelectColumnVEventPlayerStatsAggregateBoolExpSumArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const, + kdr: 'kdr' as const +} + +export const enumVEventPlayerStatsSelectColumnVEventPlayerStatsAggregateBoolExpVarSampArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const, + kdr: 'kdr' as const +} + +export const enumVGpuPoolStatusSelectColumn = { + demo_free_gpu_nodes: 'demo_free_gpu_nodes' as const, + demo_in_progress: 'demo_in_progress' as const, + demo_total_gpu_nodes: 'demo_total_gpu_nodes' as const, + free_gpu_nodes: 'free_gpu_nodes' as const, + free_gpu_nodes_for_batch: 'free_gpu_nodes_for_batch' as const, + highlights_in_progress: 'highlights_in_progress' as const, + id: 'id' as const, + live_in_progress: 'live_in_progress' as const, + registered_gpu_nodes: 'registered_gpu_nodes' as const, + rendering_total_gpu_nodes: 'rendering_total_gpu_nodes' as const, + renders_paused_for_active_match: 'renders_paused_for_active_match' as const, + streaming_free_gpu_nodes: 'streaming_free_gpu_nodes' as const, + streaming_total_gpu_nodes: 'streaming_total_gpu_nodes' as const, + total_gpu_nodes: 'total_gpu_nodes' as const +} + +export const enumVLeagueDivisionStandingsSelectColumn = { + head_to_head_match_wins: 'head_to_head_match_wins' as const, + head_to_head_rounds_won: 'head_to_head_rounds_won' as const, + league_division_id: 'league_division_id' as const, + league_season_division_id: 'league_season_division_id' as const, + league_season_id: 'league_season_id' as const, + league_team_id: 'league_team_id' as const, + league_team_season_id: 'league_team_season_id' as const, + losses: 'losses' as const, + maps_lost: 'maps_lost' as const, + maps_won: 'maps_won' as const, + matches_played: 'matches_played' as const, + matches_remaining: 'matches_remaining' as const, + rank: 'rank' as const, + round_diff: 'round_diff' as const, + rounds_lost: 'rounds_lost' as const, + rounds_won: 'rounds_won' as const, + tournament_team_id: 'tournament_team_id' as const, + wins: 'wins' as const +} + +export const enumVLeagueSeasonPlayerStatsSelectColumn = { + assists: 'assists' as const, + deaths: 'deaths' as const, + headshot_percentage: 'headshot_percentage' as const, + headshots: 'headshots' as const, + kdr: 'kdr' as const, + kills: 'kills' as const, + league_division_id: 'league_division_id' as const, + league_season_division_id: 'league_season_division_id' as const, + league_season_id: 'league_season_id' as const, + league_team_id: 'league_team_id' as const, + league_team_season_id: 'league_team_season_id' as const, + matches_played: 'matches_played' as const, + player_steam_id: 'player_steam_id' as const +} + +export const enumVLeagueSeasonPlayerStatsSelectColumnVLeagueSeasonPlayerStatsAggregateBoolExpAvgArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const, + kdr: 'kdr' as const +} + +export const enumVLeagueSeasonPlayerStatsSelectColumnVLeagueSeasonPlayerStatsAggregateBoolExpCorrArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const, + kdr: 'kdr' as const +} + +export const enumVLeagueSeasonPlayerStatsSelectColumnVLeagueSeasonPlayerStatsAggregateBoolExpCovarSampArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const, + kdr: 'kdr' as const +} + +export const enumVLeagueSeasonPlayerStatsSelectColumnVLeagueSeasonPlayerStatsAggregateBoolExpMaxArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const, + kdr: 'kdr' as const +} + +export const enumVLeagueSeasonPlayerStatsSelectColumnVLeagueSeasonPlayerStatsAggregateBoolExpMinArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const, + kdr: 'kdr' as const +} + +export const enumVLeagueSeasonPlayerStatsSelectColumnVLeagueSeasonPlayerStatsAggregateBoolExpStddevSampArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const, + kdr: 'kdr' as const +} + +export const enumVLeagueSeasonPlayerStatsSelectColumnVLeagueSeasonPlayerStatsAggregateBoolExpSumArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const, + kdr: 'kdr' as const +} + +export const enumVLeagueSeasonPlayerStatsSelectColumnVLeagueSeasonPlayerStatsAggregateBoolExpVarSampArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const, + kdr: 'kdr' as const +} + +export const enumVMatchCaptainsSelectColumn = { + captain: 'captain' as const, + discord_id: 'discord_id' as const, + id: 'id' as const, + match_lineup_id: 'match_lineup_id' as const, + placeholder_name: 'placeholder_name' as const, + steam_id: 'steam_id' as const +} + +export const enumVMatchClutchesSelectColumn = { + against_count: 'against_count' as const, + clutcher_steam_id: 'clutcher_steam_id' as const, + kills_in_clutch: 'kills_in_clutch' as const, + match_id: 'match_id' as const, + match_lineup_id: 'match_lineup_id' as const, + match_map_id: 'match_map_id' as const, + outcome: 'outcome' as const, + round: 'round' as const, + side: 'side' as const +} + +export const enumVMatchKillPairsSelectColumn = { + killer_side: 'killer_side' as const, + killer_steam_id: 'killer_steam_id' as const, + kills: 'kills' as const, + match_id: 'match_id' as const, + match_map_id: 'match_map_id' as const, + victim_side: 'victim_side' as const, + victim_steam_id: 'victim_steam_id' as const, + weapon: 'weapon' as const +} + +export const enumVMatchLineupBuyTypesSelectColumn = { + match_id: 'match_id' as const, + match_lineup_id: 'match_lineup_id' as const, + match_map_id: 'match_map_id' as const, + matchup: 'matchup' as const, + rounds: 'rounds' as const, + side: 'side' as const, + wins: 'wins' as const +} + +export const enumVMatchLineupMapStatsSelectColumn = { + man_adv_rounds: 'man_adv_rounds' as const, + man_adv_wins: 'man_adv_wins' as const, + man_dis_rounds: 'man_dis_rounds' as const, + man_dis_wins: 'man_dis_wins' as const, + match_id: 'match_id' as const, + match_lineup_id: 'match_lineup_id' as const, + match_map_id: 'match_map_id' as const, + opening_attempts: 'opening_attempts' as const, + opening_wins: 'opening_wins' as const, + pistol_rounds: 'pistol_rounds' as const, + pistol_wins: 'pistol_wins' as const, + round_wins: 'round_wins' as const, + rounds: 'rounds' as const, + side: 'side' as const, + won_buy_eco: 'won_buy_eco' as const, + won_buy_force: 'won_buy_force' as const, + won_buy_full: 'won_buy_full' as const, + won_buy_pistol: 'won_buy_pistol' as const +} + +export const enumVMatchMapBackupRoundsSelectColumn = { + has_backup_file: 'has_backup_file' as const, + match_map_id: 'match_map_id' as const, + round: 'round' as const +} + +export const enumVMatchPlayerBuyTypesSelectColumn = { + deaths: 'deaths' as const, + kills: 'kills' as const, + match_id: 'match_id' as const, + match_lineup_id: 'match_lineup_id' as const, + match_map_id: 'match_map_id' as const, + matchup: 'matchup' as const, + rounds: 'rounds' as const, + side: 'side' as const, + steam_id: 'steam_id' as const +} + +export const enumVMatchPlayerOpeningDuelsSelectColumn = { + attempts: 'attempts' as const, + deaths: 'deaths' as const, + match_id: 'match_id' as const, + match_lineup_id: 'match_lineup_id' as const, + match_map_id: 'match_map_id' as const, + side: 'side' as const, + steam_id: 'steam_id' as const, + traded_deaths: 'traded_deaths' as const, + wins: 'wins' as const +} + +export const enumVPlayerArchNemesisSelectColumn = { + attacker_id: 'attacker_id' as const, + kill_count: 'kill_count' as const, + victim_id: 'victim_id' as const +} + +export const enumVPlayerDamageSelectColumn = { + avg_damage_per_round: 'avg_damage_per_round' as const, + player_steam_id: 'player_steam_id' as const, + total_damage: 'total_damage' as const, + total_rounds: 'total_rounds' as const +} + +export const enumVPlayerEloSelectColumn = { + actual_score: 'actual_score' as const, + assists: 'assists' as const, + current_elo: 'current_elo' as const, + damage: 'damage' as const, + damage_percent: 'damage_percent' as const, + deaths: 'deaths' as const, + elo_change: 'elo_change' as const, + expected_score: 'expected_score' as const, + impact: 'impact' as const, + k_factor: 'k_factor' as const, + kda: 'kda' as const, + kills: 'kills' as const, + map_losses: 'map_losses' as const, + map_wins: 'map_wins' as const, + match_created_at: 'match_created_at' as const, + match_id: 'match_id' as const, + match_result: 'match_result' as const, + opponent_team_elo_avg: 'opponent_team_elo_avg' as const, + performance_multiplier: 'performance_multiplier' as const, + player_name: 'player_name' as const, + player_steam_id: 'player_steam_id' as const, + player_team_elo_avg: 'player_team_elo_avg' as const, + rating_for_expected: 'rating_for_expected' as const, + season_id: 'season_id' as const, + series_multiplier: 'series_multiplier' as const, + team_avg_kda: 'team_avg_kda' as const, + type: 'type' as const, + updated_elo: 'updated_elo' as const +} + +export const enumVPlayerEloSelectColumnVPlayerEloAggregateBoolExpAvgArgumentsColumns = { + actual_score: 'actual_score' as const, + damage_percent: 'damage_percent' as const, + expected_score: 'expected_score' as const, + impact: 'impact' as const, + kda: 'kda' as const, + opponent_team_elo_avg: 'opponent_team_elo_avg' as const, + performance_multiplier: 'performance_multiplier' as const, + player_team_elo_avg: 'player_team_elo_avg' as const, + rating_for_expected: 'rating_for_expected' as const, + team_avg_kda: 'team_avg_kda' as const +} + +export const enumVPlayerEloSelectColumnVPlayerEloAggregateBoolExpCorrArgumentsColumns = { + actual_score: 'actual_score' as const, + damage_percent: 'damage_percent' as const, + expected_score: 'expected_score' as const, + impact: 'impact' as const, + kda: 'kda' as const, + opponent_team_elo_avg: 'opponent_team_elo_avg' as const, + performance_multiplier: 'performance_multiplier' as const, + player_team_elo_avg: 'player_team_elo_avg' as const, + rating_for_expected: 'rating_for_expected' as const, + team_avg_kda: 'team_avg_kda' as const +} + +export const enumVPlayerEloSelectColumnVPlayerEloAggregateBoolExpCovarSampArgumentsColumns = { + actual_score: 'actual_score' as const, + damage_percent: 'damage_percent' as const, + expected_score: 'expected_score' as const, + impact: 'impact' as const, + kda: 'kda' as const, + opponent_team_elo_avg: 'opponent_team_elo_avg' as const, + performance_multiplier: 'performance_multiplier' as const, + player_team_elo_avg: 'player_team_elo_avg' as const, + rating_for_expected: 'rating_for_expected' as const, + team_avg_kda: 'team_avg_kda' as const +} + +export const enumVPlayerEloSelectColumnVPlayerEloAggregateBoolExpMaxArgumentsColumns = { + actual_score: 'actual_score' as const, + damage_percent: 'damage_percent' as const, + expected_score: 'expected_score' as const, + impact: 'impact' as const, + kda: 'kda' as const, + opponent_team_elo_avg: 'opponent_team_elo_avg' as const, + performance_multiplier: 'performance_multiplier' as const, + player_team_elo_avg: 'player_team_elo_avg' as const, + rating_for_expected: 'rating_for_expected' as const, + team_avg_kda: 'team_avg_kda' as const +} + +export const enumVPlayerEloSelectColumnVPlayerEloAggregateBoolExpMinArgumentsColumns = { + actual_score: 'actual_score' as const, + damage_percent: 'damage_percent' as const, + expected_score: 'expected_score' as const, + impact: 'impact' as const, + kda: 'kda' as const, + opponent_team_elo_avg: 'opponent_team_elo_avg' as const, + performance_multiplier: 'performance_multiplier' as const, + player_team_elo_avg: 'player_team_elo_avg' as const, + rating_for_expected: 'rating_for_expected' as const, + team_avg_kda: 'team_avg_kda' as const +} + +export const enumVPlayerEloSelectColumnVPlayerEloAggregateBoolExpStddevSampArgumentsColumns = { + actual_score: 'actual_score' as const, + damage_percent: 'damage_percent' as const, + expected_score: 'expected_score' as const, + impact: 'impact' as const, + kda: 'kda' as const, + opponent_team_elo_avg: 'opponent_team_elo_avg' as const, + performance_multiplier: 'performance_multiplier' as const, + player_team_elo_avg: 'player_team_elo_avg' as const, + rating_for_expected: 'rating_for_expected' as const, + team_avg_kda: 'team_avg_kda' as const +} + +export const enumVPlayerEloSelectColumnVPlayerEloAggregateBoolExpSumArgumentsColumns = { + actual_score: 'actual_score' as const, + damage_percent: 'damage_percent' as const, + expected_score: 'expected_score' as const, + impact: 'impact' as const, + kda: 'kda' as const, + opponent_team_elo_avg: 'opponent_team_elo_avg' as const, + performance_multiplier: 'performance_multiplier' as const, + player_team_elo_avg: 'player_team_elo_avg' as const, + rating_for_expected: 'rating_for_expected' as const, + team_avg_kda: 'team_avg_kda' as const +} + +export const enumVPlayerEloSelectColumnVPlayerEloAggregateBoolExpVarSampArgumentsColumns = { + actual_score: 'actual_score' as const, + damage_percent: 'damage_percent' as const, + expected_score: 'expected_score' as const, + impact: 'impact' as const, + kda: 'kda' as const, + opponent_team_elo_avg: 'opponent_team_elo_avg' as const, + performance_multiplier: 'performance_multiplier' as const, + player_team_elo_avg: 'player_team_elo_avg' as const, + rating_for_expected: 'rating_for_expected' as const, + team_avg_kda: 'team_avg_kda' as const +} + +export const enumVPlayerMapLossesSelectColumn = { + map_id: 'map_id' as const, + match_id: 'match_id' as const, + started_at: 'started_at' as const, + steam_id: 'steam_id' as const +} + +export const enumVPlayerMapWinsSelectColumn = { + map_id: 'map_id' as const, + match_id: 'match_id' as const, + started_at: 'started_at' as const, + steam_id: 'steam_id' as const +} + +export const enumVPlayerMatchHeadToHeadSelectColumn = { + attacked_steam_id: 'attacked_steam_id' as const, + attacker_steam_id: 'attacker_steam_id' as const, + damage_dealt: 'damage_dealt' as const, + flash_count: 'flash_count' as const, + headshot_kills: 'headshot_kills' as const, + hits: 'hits' as const, + kills: 'kills' as const, + match_id: 'match_id' as const +} + +export const enumVPlayerMatchMapHltvSelectColumn = { + adr: 'adr' as const, + apr: 'apr' as const, + dpr: 'dpr' as const, + hltv_rating: 'hltv_rating' as const, + kast_pct: 'kast_pct' as const, + kpr: 'kpr' as const, + match_id: 'match_id' as const, + match_map_id: 'match_map_id' as const, + rounds_played: 'rounds_played' as const, + steam_id: 'steam_id' as const +} + +export const enumVPlayerMatchMapRolesSelectColumn = { + adr: 'adr' as const, + awp_kills: 'awp_kills' as const, + awp_share: 'awp_share' as const, + deaths: 'deaths' as const, + dpr: 'dpr' as const, + entry_rate: 'entry_rate' as const, + flash_assists: 'flash_assists' as const, + hltv_rating: 'hltv_rating' as const, + kast_pct: 'kast_pct' as const, + kills: 'kills' as const, + kpr: 'kpr' as const, + lineup_id: 'lineup_id' as const, + match_id: 'match_id' as const, + match_map_id: 'match_map_id' as const, + open_deaths: 'open_deaths' as const, + open_kills: 'open_kills' as const, + opening_attempts: 'opening_attempts' as const, + role: 'role' as const, + rounds: 'rounds' as const, + steam_id: 'steam_id' as const, + support_idx: 'support_idx' as const, + total_kills: 'total_kills' as const, + trade_kill_successes: 'trade_kill_successes' as const, + traded_death_successes: 'traded_death_successes' as const, + util_damage: 'util_damage' as const +} + +export const enumVPlayerMatchPerformanceSelectColumn = { + assists: 'assists' as const, + deaths: 'deaths' as const, + kills: 'kills' as const, + map_id: 'map_id' as const, + match_created_at: 'match_created_at' as const, + match_id: 'match_id' as const, + match_result: 'match_result' as const, + player_steam_id: 'player_steam_id' as const, + source: 'source' as const, + type: 'type' as const +} + +export const enumVPlayerMatchRatingSelectColumn = { + adr: 'adr' as const, + dpr: 'dpr' as const, + hltv_rating: 'hltv_rating' as const, + kast_pct: 'kast_pct' as const, + kpr: 'kpr' as const, + match_id: 'match_id' as const, + rounds_played: 'rounds_played' as const, + steam_id: 'steam_id' as const +} + +export const enumVPlayerMultiKillsSelectColumn = { + attacker_steam_id: 'attacker_steam_id' as const, + kills: 'kills' as const, + match_id: 'match_id' as const, + round: 'round' as const +} + +export const enumVPlayerQueuePartnersSelectColumn = { + first_played_at: 'first_played_at' as const, + last_played_at: 'last_played_at' as const, + matches_together: 'matches_together' as const, + partner_steam_id: 'partner_steam_id' as const, + steam_id: 'steam_id' as const, + wins_together: 'wins_together' as const +} + +export const enumVPlayerWeaponDamageSelectColumn = { + damage: 'damage' as const, + hits: 'hits' as const, + player_steam_id: 'player_steam_id' as const, + source: 'source' as const, + type: 'type' as const, + with: 'with' as const +} + +export const enumVPlayerWeaponKillsSelectColumn = { + kill_count: 'kill_count' as const, + player_steam_id: 'player_steam_id' as const, + rounds: 'rounds' as const, + source: 'source' as const, + type: 'type' as const, + with: 'with' as const +} + +export const enumVPoolMapsSelectColumn = { + active_pool: 'active_pool' as const, + id: 'id' as const, + label: 'label' as const, + map_pool_id: 'map_pool_id' as const, + name: 'name' as const, + patch: 'patch' as const, + poster: 'poster' as const, + type: 'type' as const, + workshop_map_id: 'workshop_map_id' as const +} + +export const enumVPoolMapsSelectColumnVPoolMapsAggregateBoolExpBoolAndArgumentsColumns = { + active_pool: 'active_pool' as const +} + +export const enumVPoolMapsSelectColumnVPoolMapsAggregateBoolExpBoolOrArgumentsColumns = { + active_pool: 'active_pool' as const +} + +export const enumVSteamAccountPoolStatusSelectColumn = { + busy_accounts: 'busy_accounts' as const, + free_accounts: 'free_accounts' as const, + id: 'id' as const, + total_accounts: 'total_accounts' as const +} + +export const enumVTeamRanksSelectColumn = { + avg_duel_elo: 'avg_duel_elo' as const, + avg_elo: 'avg_elo' as const, + avg_faceit_elo: 'avg_faceit_elo' as const, + avg_faceit_level: 'avg_faceit_level' as const, + avg_premier: 'avg_premier' as const, + avg_wingman_elo: 'avg_wingman_elo' as const, + max_elo: 'max_elo' as const, + min_elo: 'min_elo' as const, + roster_size: 'roster_size' as const, + team_id: 'team_id' as const +} + +export const enumVTeamReputationSelectColumn = { + late_cancels: 'late_cancels' as const, + no_shows: 'no_shows' as const, + reliability_pct: 'reliability_pct' as const, + scrims_completed: 'scrims_completed' as const, + team_id: 'team_id' as const +} + +export const enumVTeamStageResultsConstraint = { + v_team_stage_results_pkey: 'v_team_stage_results_pkey' as const +} + +export const enumVTeamStageResultsSelectColumn = { + group_number: 'group_number' as const, + head_to_head_match_wins: 'head_to_head_match_wins' as const, + head_to_head_rounds_won: 'head_to_head_rounds_won' as const, + losses: 'losses' as const, + maps_lost: 'maps_lost' as const, + maps_won: 'maps_won' as const, + matches_played: 'matches_played' as const, + matches_remaining: 'matches_remaining' as const, + placement: 'placement' as const, + rank: 'rank' as const, + rounds_lost: 'rounds_lost' as const, + rounds_won: 'rounds_won' as const, + team_kdr: 'team_kdr' as const, + total_deaths: 'total_deaths' as const, + total_kills: 'total_kills' as const, + tournament_stage_id: 'tournament_stage_id' as const, + tournament_team_id: 'tournament_team_id' as const, + wins: 'wins' as const +} + +export const enumVTeamStageResultsSelectColumnVTeamStageResultsAggregateBoolExpAvgArgumentsColumns = { + team_kdr: 'team_kdr' as const +} + +export const enumVTeamStageResultsSelectColumnVTeamStageResultsAggregateBoolExpCorrArgumentsColumns = { + team_kdr: 'team_kdr' as const +} + +export const enumVTeamStageResultsSelectColumnVTeamStageResultsAggregateBoolExpCovarSampArgumentsColumns = { + team_kdr: 'team_kdr' as const +} + +export const enumVTeamStageResultsSelectColumnVTeamStageResultsAggregateBoolExpMaxArgumentsColumns = { + team_kdr: 'team_kdr' as const +} + +export const enumVTeamStageResultsSelectColumnVTeamStageResultsAggregateBoolExpMinArgumentsColumns = { + team_kdr: 'team_kdr' as const +} + +export const enumVTeamStageResultsSelectColumnVTeamStageResultsAggregateBoolExpStddevSampArgumentsColumns = { + team_kdr: 'team_kdr' as const +} + +export const enumVTeamStageResultsSelectColumnVTeamStageResultsAggregateBoolExpSumArgumentsColumns = { + team_kdr: 'team_kdr' as const +} + +export const enumVTeamStageResultsSelectColumnVTeamStageResultsAggregateBoolExpVarSampArgumentsColumns = { + team_kdr: 'team_kdr' as const +} + +export const enumVTeamStageResultsUpdateColumn = { + group_number: 'group_number' as const, + head_to_head_match_wins: 'head_to_head_match_wins' as const, + head_to_head_rounds_won: 'head_to_head_rounds_won' as const, + losses: 'losses' as const, + maps_lost: 'maps_lost' as const, + maps_won: 'maps_won' as const, + matches_played: 'matches_played' as const, + matches_remaining: 'matches_remaining' as const, + placement: 'placement' as const, + rank: 'rank' as const, + rounds_lost: 'rounds_lost' as const, + rounds_won: 'rounds_won' as const, + team_kdr: 'team_kdr' as const, + total_deaths: 'total_deaths' as const, + total_kills: 'total_kills' as const, + tournament_stage_id: 'tournament_stage_id' as const, + tournament_team_id: 'tournament_team_id' as const, + wins: 'wins' as const +} + +export const enumVTeamTournamentResultsSelectColumn = { + head_to_head_match_wins: 'head_to_head_match_wins' as const, + head_to_head_rounds_won: 'head_to_head_rounds_won' as const, + losses: 'losses' as const, + maps_lost: 'maps_lost' as const, + maps_won: 'maps_won' as const, + matches_played: 'matches_played' as const, + matches_remaining: 'matches_remaining' as const, + rounds_lost: 'rounds_lost' as const, + rounds_won: 'rounds_won' as const, + team_kdr: 'team_kdr' as const, + total_deaths: 'total_deaths' as const, + total_kills: 'total_kills' as const, + tournament_id: 'tournament_id' as const, + tournament_team_id: 'tournament_team_id' as const, + wins: 'wins' as const +} + +export const enumVTeamTournamentResultsSelectColumnVTeamTournamentResultsAggregateBoolExpAvgArgumentsColumns = { + team_kdr: 'team_kdr' as const +} + +export const enumVTeamTournamentResultsSelectColumnVTeamTournamentResultsAggregateBoolExpCorrArgumentsColumns = { + team_kdr: 'team_kdr' as const +} + +export const enumVTeamTournamentResultsSelectColumnVTeamTournamentResultsAggregateBoolExpCovarSampArgumentsColumns = { + team_kdr: 'team_kdr' as const +} + +export const enumVTeamTournamentResultsSelectColumnVTeamTournamentResultsAggregateBoolExpMaxArgumentsColumns = { + team_kdr: 'team_kdr' as const +} + +export const enumVTeamTournamentResultsSelectColumnVTeamTournamentResultsAggregateBoolExpMinArgumentsColumns = { + team_kdr: 'team_kdr' as const +} + +export const enumVTeamTournamentResultsSelectColumnVTeamTournamentResultsAggregateBoolExpStddevSampArgumentsColumns = { + team_kdr: 'team_kdr' as const +} + +export const enumVTeamTournamentResultsSelectColumnVTeamTournamentResultsAggregateBoolExpSumArgumentsColumns = { + team_kdr: 'team_kdr' as const +} + +export const enumVTeamTournamentResultsSelectColumnVTeamTournamentResultsAggregateBoolExpVarSampArgumentsColumns = { + team_kdr: 'team_kdr' as const +} + +export const enumVTournamentPlayerStatsSelectColumn = { + assists: 'assists' as const, + deaths: 'deaths' as const, + headshot_percentage: 'headshot_percentage' as const, + headshots: 'headshots' as const, + kdr: 'kdr' as const, + kills: 'kills' as const, + matches_played: 'matches_played' as const, + player_steam_id: 'player_steam_id' as const, + tournament_id: 'tournament_id' as const +} + +export const enumVTournamentPlayerStatsSelectColumnVTournamentPlayerStatsAggregateBoolExpAvgArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const, + kdr: 'kdr' as const +} + +export const enumVTournamentPlayerStatsSelectColumnVTournamentPlayerStatsAggregateBoolExpCorrArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const, + kdr: 'kdr' as const +} + +export const enumVTournamentPlayerStatsSelectColumnVTournamentPlayerStatsAggregateBoolExpCovarSampArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const, + kdr: 'kdr' as const +} + +export const enumVTournamentPlayerStatsSelectColumnVTournamentPlayerStatsAggregateBoolExpMaxArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const, + kdr: 'kdr' as const +} + +export const enumVTournamentPlayerStatsSelectColumnVTournamentPlayerStatsAggregateBoolExpMinArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const, + kdr: 'kdr' as const +} + +export const enumVTournamentPlayerStatsSelectColumnVTournamentPlayerStatsAggregateBoolExpStddevSampArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const, + kdr: 'kdr' as const +} + +export const enumVTournamentPlayerStatsSelectColumnVTournamentPlayerStatsAggregateBoolExpSumArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const, + kdr: 'kdr' as const +} + +export const enumVTournamentPlayerStatsSelectColumnVTournamentPlayerStatsAggregateBoolExpVarSampArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const, + kdr: 'kdr' as const +} diff --git a/generated/types.ts b/generated/types.ts new file mode 100644 index 00000000..4465d6e8 --- /dev/null +++ b/generated/types.ts @@ -0,0 +1,221543 @@ +export default { + "scalars": [ + 6, + 32, + 41, + 85, + 159, + 167, + 171, + 173, + 184, + 195, + 207, + 220, + 229, + 237, + 253, + 264, + 276, + 289, + 299, + 307, + 312, + 315, + 322, + 331, + 339, + 357, + 372, + 373, + 374, + 386, + 395, + 402, + 415, + 423, + 433, + 442, + 450, + 460, + 469, + 477, + 487, + 496, + 504, + 521, + 532, + 533, + 534, + 546, + 566, + 577, + 578, + 579, + 591, + 611, + 623, + 624, + 625, + 637, + 649, + 650, + 659, + 663, + 669, + 670, + 679, + 683, + 689, + 690, + 699, + 703, + 709, + 710, + 720, + 724, + 730, + 731, + 741, + 745, + 751, + 752, + 762, + 766, + 772, + 773, + 783, + 787, + 793, + 794, + 804, + 808, + 814, + 815, + 824, + 828, + 834, + 835, + 844, + 848, + 854, + 855, + 865, + 869, + 875, + 876, + 885, + 889, + 895, + 896, + 905, + 909, + 915, + 916, + 925, + 929, + 935, + 936, + 945, + 949, + 955, + 956, + 966, + 970, + 976, + 977, + 987, + 991, + 997, + 998, + 1008, + 1012, + 1018, + 1019, + 1029, + 1033, + 1039, + 1040, + 1050, + 1054, + 1060, + 1061, + 1071, + 1075, + 1081, + 1082, + 1091, + 1095, + 1101, + 1102, + 1112, + 1116, + 1122, + 1123, + 1132, + 1136, + 1142, + 1143, + 1153, + 1157, + 1163, + 1164, + 1173, + 1177, + 1183, + 1184, + 1193, + 1197, + 1203, + 1204, + 1214, + 1218, + 1224, + 1225, + 1235, + 1239, + 1245, + 1246, + 1255, + 1259, + 1265, + 1266, + 1275, + 1279, + 1285, + 1286, + 1295, + 1299, + 1305, + 1306, + 1315, + 1319, + 1325, + 1326, + 1335, + 1339, + 1345, + 1354, + 1358, + 1365, + 1374, + 1382, + 1391, + 1392, + 1402, + 1406, + 1412, + 1413, + 1422, + 1426, + 1432, + 1433, + 1442, + 1446, + 1452, + 1453, + 1462, + 1466, + 1472, + 1473, + 1482, + 1486, + 1492, + 1493, + 1503, + 1507, + 1513, + 1514, + 1523, + 1527, + 1533, + 1534, + 1543, + 1547, + 1553, + 1554, + 1564, + 1568, + 1574, + 1575, + 1585, + 1589, + 1595, + 1596, + 1605, + 1609, + 1615, + 1616, + 1626, + 1630, + 1636, + 1637, + 1647, + 1651, + 1657, + 1658, + 1667, + 1671, + 1677, + 1678, + 1688, + 1692, + 1698, + 1699, + 1708, + 1712, + 1718, + 1719, + 1728, + 1732, + 1738, + 1739, + 1748, + 1752, + 1758, + 1759, + 1768, + 1772, + 1778, + 1779, + 1788, + 1792, + 1798, + 1799, + 1808, + 1812, + 1818, + 1819, + 1828, + 1832, + 1838, + 1846, + 1850, + 1862, + 1884, + 1895, + 1907, + 1915, + 1927, + 1945, + 1956, + 1968, + 1986, + 1997, + 2009, + 2025, + 2035, + 2039, + 2049, + 2059, + 2063, + 2070, + 2080, + 2088, + 2093, + 2100, + 2109, + 2117, + 2135, + 2150, + 2151, + 2152, + 2164, + 2176, + 2185, + 2189, + 2195, + 2203, + 2207, + 2221, + 2232, + 2233, + 2234, + 2246, + 2260, + 2273, + 2281, + 2296, + 2306, + 2307, + 2308, + 2312, + 2327, + 2343, + 2344, + 2345, + 2357, + 2371, + 2385, + 2393, + 2404, + 2417, + 2425, + 2435, + 2437, + 2439, + 2453, + 2471, + 2481, + 2489, + 2504, + 2515, + 2527, + 2545, + 2556, + 2568, + 2586, + 2597, + 2609, + 2625, + 2636, + 2640, + 2648, + 2662, + 2670, + 2685, + 2696, + 2708, + 2726, + 2737, + 2749, + 2767, + 2779, + 2791, + 2803, + 2812, + 2816, + 2822, + 2831, + 2835, + 2849, + 2860, + 2861, + 2862, + 2874, + 2887, + 2899, + 2903, + 2909, + 2918, + 2922, + 2934, + 2945, + 2946, + 2947, + 2951, + 2963, + 2975, + 2987, + 3006, + 3021, + 3033, + 3053, + 3064, + 3065, + 3066, + 3078, + 3096, + 3108, + 3120, + 3141, + 3157, + 3158, + 3159, + 3171, + 3189, + 3200, + 3212, + 3230, + 3240, + 3241, + 3242, + 3246, + 3258, + 3270, + 3282, + 3302, + 3314, + 3315, + 3316, + 3328, + 3346, + 3356, + 3357, + 3358, + 3362, + 3377, + 3392, + 3393, + 3394, + 3406, + 3418, + 3426, + 3430, + 3444, + 3456, + 3457, + 3458, + 3470, + 3482, + 3490, + 3494, + 3521, + 3522, + 3523, + 3547, + 3556, + 3564, + 3574, + 3583, + 3591, + 3609, + 3624, + 3625, + 3626, + 3638, + 3646, + 3648, + 3659, + 3670, + 3682, + 3695, + 3705, + 3713, + 3723, + 3732, + 3740, + 3755, + 3766, + 3778, + 3798, + 3809, + 3810, + 3811, + 3823, + 3839, + 3859, + 3870, + 3882, + 3895, + 3904, + 3912, + 3927, + 3938, + 3950, + 3970, + 3981, + 3982, + 3983, + 3995, + 4025, + 4036, + 4048, + 4056, + 4067, + 4068, + 4069, + 4081, + 4100, + 4122, + 4133, + 4145, + 4161, + 4187, + 4214, + 4225, + 4237, + 4253, + 4273, + 4284, + 4296, + 4314, + 4325, + 4337, + 4365, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4396, + 4409, + 4419, + 4427, + 4438, + 4451, + 4459, + 4469, + 4478, + 4486, + 4501, + 4512, + 4524, + 4542, + 4553, + 4565, + 4589, + 4611, + 4621, + 4629, + 4639, + 4648, + 4656, + 4666, + 4675, + 4683, + 4701, + 4711, + 4721, + 4729, + 4739, + 4748, + 4756, + 4774, + 4790, + 4791, + 4792, + 4804, + 4816, + 4824, + 4828, + 4830, + 4840, + 4850, + 4854, + 4861, + 4871, + 4879, + 4889, + 4898, + 4906, + 4921, + 4932, + 4944, + 4964, + 4975, + 4976, + 4977, + 4989, + 5002, + 5011, + 5019, + 5034, + 5044, + 5045, + 5046, + 5050, + 5062, + 5073, + 5085, + 5105, + 5117, + 5118, + 5119, + 5131, + 5144, + 5154, + 5162, + 5172, + 5181, + 5189, + 5206, + 5218, + 5219, + 5220, + 5232, + 5240, + 5242, + 5243, + 5255, + 5267, + 5279, + 5299, + 5311, + 5312, + 5313, + 5325, + 5341, + 5351, + 5355, + 5367, + 5378, + 5390, + 5408, + 5419, + 5431, + 5444, + 5454, + 5462, + 5472, + 5481, + 5489, + 5505, + 5522, + 5531, + 5539, + 5552, + 5562, + 5566, + 5578, + 5589, + 5601, + 5619, + 5630, + 5642, + 5655, + 5663, + 5671, + 5686, + 5697, + 5709, + 5730, + 5746, + 5747, + 5748, + 5760, + 5778, + 5789, + 5801, + 5819, + 5830, + 5842, + 5862, + 5874, + 5875, + 5876, + 5888, + 5918, + 5930, + 5931, + 5932, + 5933, + 5934, + 5935, + 5936, + 5937, + 5938, + 5939, + 5940, + 5952, + 5970, + 5981, + 5993, + 6006, + 6016, + 6024, + 6034, + 6043, + 6051, + 6061, + 6070, + 6078, + 6103, + 6114, + 6115, + 6116, + 6117, + 6118, + 6119, + 6120, + 6121, + 6122, + 6134, + 6147, + 6157, + 6165, + 6180, + 6191, + 6203, + 6231, + 6242, + 6243, + 6244, + 6245, + 6246, + 6247, + 6248, + 6249, + 6250, + 6262, + 6283, + 6298, + 6299, + 6300, + 6312, + 6340, + 6351, + 6352, + 6353, + 6354, + 6355, + 6356, + 6357, + 6358, + 6359, + 6371, + 6389, + 6400, + 6412, + 6443, + 6459, + 6460, + 6461, + 6462, + 6463, + 6464, + 6465, + 6466, + 6467, + 6468, + 6469, + 6481, + 6494, + 6503, + 6511, + 6526, + 6537, + 6549, + 6562, + 6572, + 6580, + 6595, + 6606, + 6618, + 6638, + 6650, + 6651, + 6652, + 6664, + 6672, + 6701, + 6702, + 6703, + 6704, + 6705, + 6706, + 6707, + 6708, + 6709, + 6734, + 6760, + 6803, + 6804, + 6805, + 6806, + 6807, + 6808, + 6809, + 6810, + 6811, + 6840, + 6868, + 6893, + 6911, + 6929, + 6950, + 6970, + 6996, + 7021, + 7039, + 7075, + 7076, + 7077, + 7078, + 7079, + 7080, + 7081, + 7082, + 7083, + 7108, + 7126, + 7144, + 7172, + 7199, + 7217, + 7235, + 7261, + 7286, + 7304, + 7322, + 7349, + 7350, + 7351, + 7364, + 7384, + 7404, + 7434, + 7446, + 7447, + 7448, + 7449, + 7450, + 7451, + 7452, + 7453, + 7454, + 7466, + 7500, + 7501, + 7502, + 7503, + 7504, + 7505, + 7506, + 7507, + 7508, + 7551, + 7552, + 7553, + 7554, + 7555, + 7556, + 7557, + 7558, + 7559 + ], + "types": { + "ActiveConnection": { + "application_name": [ + 85 + ], + "client_addr": [ + 85 + ], + "pid": [ + 41 + ], + "query": [ + 85 + ], + "query_start": [ + 5242 + ], + "state": [ + 85 + ], + "usename": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "ActiveQuery": { + "application_name": [ + 85 + ], + "client_addr": [ + 85 + ], + "duration_seconds": [ + 32 + ], + "pid": [ + 41 + ], + "query": [ + 85 + ], + "query_start": [ + 5242 + ], + "state": [ + 85 + ], + "usename": [ + 85 + ], + "wait_event": [ + 85 + ], + "wait_event_type": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "AddCustomGamePluginOutput": { + "name": [ + 85 + ], + "runtime": [ + 85 + ], + "slug": [ + 85 + ], + "version": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "ApiKeyResponse": { + "key": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "Award": { + "allow_multiple": [ + 6 + ], + "created_at": [ + 85 + ], + "created_by_steam_id": [ + 85 + ], + "description": [ + 85 + ], + "event_id": [ + 6672 + ], + "id": [ + 6672 + ], + "image_url": [ + 85 + ], + "league_season_id": [ + 6672 + ], + "name": [ + 85 + ], + "season_id": [ + 6672 + ], + "silhouette": [ + 41 + ], + "system_key": [ + 85 + ], + "tier": [ + 85 + ], + "tournament_id": [ + 6672 + ], + "updated_at": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "AwardRecipient": { + "award_id": [ + 6672 + ], + "awarded_by_steam_id": [ + 85 + ], + "created_at": [ + 85 + ], + "id": [ + 6672 + ], + "note": [ + 85 + ], + "placement": [ + 41 + ], + "player_steam_id": [ + 85 + ], + "source": [ + 85 + ], + "team_id": [ + 6672 + ], + "tournament_id": [ + 6672 + ], + "tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "Boolean": {}, + "Boolean_comparison_exp": { + "_eq": [ + 6 + ], + "_gt": [ + 6 + ], + "_gte": [ + 6 + ], + "_in": [ + 6 + ], + "_is_null": [ + 6 + ], + "_lt": [ + 6 + ], + "_lte": [ + 6 + ], + "_neq": [ + 6 + ], + "_nin": [ + 6 + ], + "__typename": [ + 85 + ] + }, + "ClipAudioInput": { + "duck_game_audio": [ + 6 + ], + "fade_in_ms": [ + 41 + ], + "fade_out_ms": [ + 41 + ], + "track_url": [ + 85 + ], + "volume": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "ClipOutputInput": { + "format": [ + 85 + ], + "fps": [ + 41 + ], + "resolution": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "ClipOverlayInput": { + "end_ms": [ + 41 + ], + "payload": [ + 2439 + ], + "start_ms": [ + 41 + ], + "type": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "ClipSegmentInput": { + "end_tick": [ + 41 + ], + "pov_steam_id": [ + 85 + ], + "start_tick": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "ClipSpecInput": { + "audio": [ + 8 + ], + "destination": [ + 85 + ], + "match_map_id": [ + 6672 + ], + "output": [ + 9 + ], + "overlays": [ + 10 + ], + "segments": [ + 11 + ], + "title": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "ConnectionByState": { + "count": [ + 41 + ], + "state": [ + 85 + ], + "wait_event_type": [ + 85 + ], + "waiting_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "ConnectionStats": { + "active": [ + 41 + ], + "by_state": [ + 13 + ], + "idle": [ + 41 + ], + "idle_in_transaction": [ + 41 + ], + "total": [ + 41 + ], + "waiting": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "CpuStat": { + "time": [ + 5242 + ], + "total": [ + 312 + ], + "used": [ + 312 + ], + "window": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "CreateClipRenderOutput": { + "job_id": [ + 6672 + ], + "success": [ + 6 + ], + "__typename": [ + 85 + ] + }, + "CreateDraftGameOutput": { + "draftGameId": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "CreateScheduledMatchOutput": { + "matchId": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "DatabaseStats": { + "blks_hit": [ + 41 + ], + "blks_read": [ + 41 + ], + "cache_hit_ratio": [ + 32 + ], + "conflicts": [ + 41 + ], + "datname": [ + 85 + ], + "deadlocks": [ + 41 + ], + "numbackends": [ + 41 + ], + "tup_deleted": [ + 41 + ], + "tup_fetched": [ + 41 + ], + "tup_inserted": [ + 41 + ], + "tup_returned": [ + 41 + ], + "tup_updated": [ + 41 + ], + "xact_commit": [ + 41 + ], + "xact_rollback": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "DbStats": { + "calls": [ + 41 + ], + "local_blks_hit": [ + 41 + ], + "local_blks_read": [ + 41 + ], + "max_exec_time": [ + 32 + ], + "mean_exec_time": [ + 32 + ], + "min_exec_time": [ + 32 + ], + "query": [ + 85 + ], + "queryid": [ + 85 + ], + "shared_blks_hit": [ + 41 + ], + "shared_blks_read": [ + 41 + ], + "total_exec_time": [ + 32 + ], + "total_rows": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "DedicatedSeverInfo": { + "id": [ + 85 + ], + "lastPing": [ + 85 + ], + "map": [ + 85 + ], + "players": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "DeleteOrphansOutput": { + "bytes_freed": [ + 32 + ], + "deleted": [ + 41 + ], + "remaining_orphans": [ + 41 + ], + "success": [ + 6 + ], + "__typename": [ + 85 + ] + }, + "DiskStat": { + "available": [ + 85 + ], + "filesystem": [ + 85 + ], + "mountpoint": [ + 85 + ], + "size": [ + 85 + ], + "used": [ + 85 + ], + "usedPercent": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "DiskStats": { + "disks": [ + 23 + ], + "time": [ + 5242 + ], + "__typename": [ + 85 + ] + }, + "DraftGamePreviewOutput": { + "accepted_count": [ + 41 + ], + "access": [ + 85 + ], + "capacity": [ + 41 + ], + "host_avatar_url": [ + 85 + ], + "host_name": [ + 85 + ], + "host_steam_id": [ + 85 + ], + "id": [ + 6672 + ], + "mode": [ + 85 + ], + "players": [ + 26 + ], + "require_approval": [ + 6 + ], + "status": [ + 85 + ], + "type": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "DraftGamePreviewPlayer": { + "avatar_url": [ + 85 + ], + "name": [ + 85 + ], + "status": [ + 85 + ], + "steam_id": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "FaceitTestOutput": { + "dataApi": [ + 28 + ], + "downloadApi": [ + 28 + ], + "__typename": [ + 85 + ] + }, + "FaceitTestResult": { + "detail": [ + 85 + ], + "ok": [ + 6 + ], + "__typename": [ + 85 + ] + }, + "FileContentResponse": { + "content": [ + 85 + ], + "path": [ + 85 + ], + "size": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "FileItem": { + "isDirectory": [ + 6 + ], + "modified": [ + 5242 + ], + "name": [ + 85 + ], + "path": [ + 85 + ], + "size": [ + 312 + ], + "type": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "FileListResponse": { + "currentPath": [ + 85 + ], + "items": [ + 30 + ], + "__typename": [ + 85 + ] + }, + "Float": {}, + "Float_comparison_exp": { + "_eq": [ + 32 + ], + "_gt": [ + 32 + ], + "_gte": [ + 32 + ], + "_in": [ + 32 + ], + "_is_null": [ + 6 + ], + "_lt": [ + 32 + ], + "_lte": [ + 32 + ], + "_neq": [ + 32 + ], + "_nin": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "GetTestUploadResponse": { + "error": [ + 85 + ], + "link": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "GpuDeviceStat": { + "index": [ + 41 + ], + "memory_mb": [ + 41 + ], + "memory_used_mb": [ + 41 + ], + "name": [ + 85 + ], + "power_w": [ + 41 + ], + "temperature_c": [ + 41 + ], + "utilization_percent": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "GpuStats": { + "devices": [ + 35 + ], + "time": [ + 5242 + ], + "__typename": [ + 85 + ] + }, + "HighlightPresetAvailability": { + "best_round": [ + 6 + ], + "has_demo": [ + 6 + ], + "knife": [ + 6 + ], + "multikills": [ + 6 + ], + "recap": [ + 6 + ], + "__typename": [ + 85 + ] + }, + "HypertableInfo": { + "compression_enabled": [ + 6 + ], + "hypertable_name": [ + 85 + ], + "num_chunks": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "IndexIOStat": { + "idx_blks_hit": [ + 41 + ], + "idx_blks_read": [ + 41 + ], + "indexname": [ + 85 + ], + "schemaname": [ + 85 + ], + "tablename": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "IndexStat": { + "idx_scan": [ + 41 + ], + "idx_tup_fetch": [ + 41 + ], + "idx_tup_read": [ + 41 + ], + "index_size": [ + 41 + ], + "indexname": [ + 85 + ], + "schemaname": [ + 85 + ], + "table_size": [ + 41 + ], + "tablename": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "Int": {}, + "Int_comparison_exp": { + "_eq": [ + 41 + ], + "_gt": [ + 41 + ], + "_gte": [ + 41 + ], + "_in": [ + 41 + ], + "_is_null": [ + 6 + ], + "_lt": [ + 41 + ], + "_lte": [ + 41 + ], + "_neq": [ + 41 + ], + "_nin": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "KickResult": { + "kicked": [ + 6 + ], + "message": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "LiveSpecGsi": { + "map_name": [ + 85 + ], + "map_phase": [ + 85 + ], + "round_number": [ + 41 + ], + "round_phase": [ + 85 + ], + "spec_slots": [ + 45 + ], + "spectated_steam_id": [ + 85 + ], + "team_ct_name": [ + 85 + ], + "team_ct_score": [ + 41 + ], + "team_t_name": [ + 85 + ], + "team_t_score": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "LiveSpecSlot": { + "alive": [ + 6 + ], + "health": [ + 41 + ], + "name": [ + 85 + ], + "slot": [ + 41 + ], + "steam_id": [ + 85 + ], + "team": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "LiveStreamSpecState": { + "gsi": [ + 44 + ], + "__typename": [ + 85 + ] + }, + "LockInfo": { + "granted": [ + 6 + ], + "locktype": [ + 85 + ], + "mode": [ + 85 + ], + "pid": [ + 41 + ], + "query": [ + 85 + ], + "relation": [ + 85 + ], + "usename": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "MapCalloutSyncOutput": { + "callouts": [ + 41 + ], + "maps": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "MeResponse": { + "avatar_url": [ + 85 + ], + "country": [ + 85 + ], + "discord_id": [ + 85 + ], + "language": [ + 85 + ], + "name": [ + 85 + ], + "player": [ + 4606 + ], + "profile_url": [ + 85 + ], + "role": [ + 85 + ], + "steam_id": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "MemoryStat": { + "time": [ + 5242 + ], + "total": [ + 312 + ], + "used": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "NetworkStats": { + "nics": [ + 53 + ], + "time": [ + 5242 + ], + "__typename": [ + 85 + ] + }, + "NewsPost": { + "author_steam_id": [ + 85 + ], + "content_markdown": [ + 85 + ], + "cover_image_url": [ + 85 + ], + "created_at": [ + 85 + ], + "id": [ + 6672 + ], + "published_at": [ + 85 + ], + "slug": [ + 85 + ], + "status": [ + 85 + ], + "teaser": [ + 85 + ], + "title": [ + 85 + ], + "updated_at": [ + 85 + ], + "view_count": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "NicStat": { + "name": [ + 85 + ], + "rx": [ + 312 + ], + "tx": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "NodeStats": { + "cpu": [ + 15 + ], + "disks": [ + 24 + ], + "gpu": [ + 36 + ], + "memory": [ + 50 + ], + "network": [ + 51 + ], + "node": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "OrphanObject": { + "key": [ + 85 + ], + "size": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "OrphanScanResultOutput": { + "bucket": [ + 85 + ], + "clip_bytes": [ + 32 + ], + "clip_objects": [ + 41 + ], + "demo_bytes": [ + 32 + ], + "demo_objects": [ + 41 + ], + "found": [ + 6 + ], + "orphan_bytes": [ + 32 + ], + "orphan_objects": [ + 41 + ], + "orphans": [ + 55 + ], + "other_bytes": [ + 32 + ], + "other_objects": [ + 41 + ], + "scanned_at": [ + 85 + ], + "scanning": [ + 6 + ], + "total_bytes": [ + 32 + ], + "total_objects": [ + 41 + ], + "tracked_bytes": [ + 32 + ], + "tracked_objects": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "PendingMatchImportActionOutput": { + "error": [ + 85 + ], + "success": [ + 6 + ], + "__typename": [ + 85 + ] + }, + "PluginReadmeOutput": { + "content": [ + 85 + ], + "format": [ + 85 + ], + "repo": [ + 85 + ], + "url": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "PodStats": { + "cpu": [ + 15 + ], + "memory": [ + 50 + ], + "name": [ + 85 + ], + "node": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "PreviewGameModeOutput": { + "cfg": [ + 85 + ], + "enabledPlugins": [ + 85 + ], + "extraGameParams": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "PreviewTournamentMatchResetOutput": { + "impacts": [ + 114 + ], + "__typename": [ + 85 + ] + }, + "QueryDetail": { + "explain_plan": [ + 85 + ], + "query": [ + 85 + ], + "queryid": [ + 85 + ], + "stats": [ + 63 + ], + "__typename": [ + 85 + ] + }, + "QueryStat": { + "cache_hit_ratio": [ + 32 + ], + "calls": [ + 41 + ], + "local_blks_hit": [ + 41 + ], + "local_blks_read": [ + 41 + ], + "max_exec_time": [ + 32 + ], + "mean_exec_time": [ + 32 + ], + "min_exec_time": [ + 32 + ], + "query": [ + 85 + ], + "queryid": [ + 85 + ], + "shared_blks_hit": [ + 41 + ], + "shared_blks_read": [ + 41 + ], + "stddev_exec_time": [ + 32 + ], + "temp_blks_written": [ + 41 + ], + "total_exec_time": [ + 32 + ], + "total_rows": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "RecomputeEloStartedOutput": { + "running": [ + 6 + ], + "success": [ + 6 + ], + "__typename": [ + 85 + ] + }, + "RecomputeEloStatusOutput": { + "canceled": [ + 6 + ], + "completed": [ + 41 + ], + "current_match_id": [ + 85 + ], + "failed": [ + 41 + ], + "finished_at": [ + 85 + ], + "running": [ + 6 + ], + "started_at": [ + 85 + ], + "total": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "ReconcileNodePluginsOutput": { + "detected": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "ReindexStartedOutput": { + "running": [ + 6 + ], + "success": [ + 6 + ], + "__typename": [ + 85 + ] + }, + "ReindexStatusOutput": { + "canceled": [ + 6 + ], + "completed": [ + 41 + ], + "current_steam_id": [ + 85 + ], + "failed": [ + 41 + ], + "finished_at": [ + 85 + ], + "running": [ + 6 + ], + "started_at": [ + 85 + ], + "total": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "ReparseAllStartedOutput": { + "running": [ + 6 + ], + "success": [ + 6 + ], + "__typename": [ + 85 + ] + }, + "ReparseAllStatusOutput": { + "canceled": [ + 6 + ], + "completed": [ + 41 + ], + "current_demo_id": [ + 85 + ], + "failed": [ + 41 + ], + "finished_at": [ + 85 + ], + "running": [ + 6 + ], + "started_at": [ + 85 + ], + "total": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "SanctionResult": { + "enforced": [ + 6 + ], + "id": [ + 85 + ], + "message": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "ScanStartedOutput": { + "scanning": [ + 6 + ], + "success": [ + 6 + ], + "__typename": [ + 85 + ] + }, + "ScheduledLineupInput": { + "steam_ids": [ + 85 + ], + "team_id": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "SeasonBackfillStatusOutput": { + "canceled": [ + 6 + ], + "completed": [ + 41 + ], + "current_match_id": [ + 85 + ], + "failed": [ + 41 + ], + "finished_at": [ + 85 + ], + "running": [ + 6 + ], + "season_id": [ + 85 + ], + "started_at": [ + 85 + ], + "total": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "ServerPlayer": { + "name": [ + 85 + ], + "steam_id": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "SetupGameServeOutput": { + "gameServerId": [ + 85 + ], + "link": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "SteamMatchHistoryLinkOutput": { + "error": [ + 85 + ], + "success": [ + 6 + ], + "__typename": [ + 85 + ] + }, + "SteamMatchHistoryPollOutput": { + "collected": [ + 41 + ], + "error": [ + 85 + ], + "success": [ + 6 + ], + "__typename": [ + 85 + ] + }, + "SteamPresenceAdminStatusOutput": { + "bots": [ + 80 + ], + "enabled": [ + 6 + ], + "pool": [ + 82 + ], + "__typename": [ + 85 + ] + }, + "SteamPresenceBot": { + "assigned": [ + 41 + ], + "capacity": [ + 41 + ], + "guardLastWrong": [ + 6 + ], + "guardType": [ + 85 + ], + "id": [ + 85 + ], + "needs2fa": [ + 6 + ], + "online": [ + 6 + ], + "steamId": [ + 85 + ], + "steamLevel": [ + 41 + ], + "username": [ + 85 + ], + "watching": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "SteamPresenceBotAssignment": { + "addUrl": [ + 85 + ], + "enabled": [ + 6 + ], + "status": [ + 85 + ], + "steamId": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "SteamPresencePool": { + "bots": [ + 41 + ], + "capacity": [ + 41 + ], + "online": [ + 41 + ], + "pending": [ + 41 + ], + "watching": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "StorageStats": { + "summary": [ + 84 + ], + "tables": [ + 91 + ], + "__typename": [ + 85 + ] + }, + "StorageSummary": { + "estimated_reclaimable_space": [ + 32 + ], + "total_database_size": [ + 32 + ], + "total_indexes_size": [ + 32 + ], + "total_table_size": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "String": {}, + "String_array_comparison_exp": { + "_contained_in": [ + 85 + ], + "_contains": [ + 85 + ], + "_eq": [ + 85 + ], + "_gt": [ + 85 + ], + "_gte": [ + 85 + ], + "_in": [ + 85 + ], + "_is_null": [ + 6 + ], + "_lt": [ + 85 + ], + "_lte": [ + 85 + ], + "_neq": [ + 85 + ], + "_nin": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "String_comparison_exp": { + "_eq": [ + 85 + ], + "_gt": [ + 85 + ], + "_gte": [ + 85 + ], + "_ilike": [ + 85 + ], + "_in": [ + 85 + ], + "_iregex": [ + 85 + ], + "_is_null": [ + 6 + ], + "_like": [ + 85 + ], + "_lt": [ + 85 + ], + "_lte": [ + 85 + ], + "_neq": [ + 85 + ], + "_nilike": [ + 85 + ], + "_nin": [ + 85 + ], + "_niregex": [ + 85 + ], + "_nlike": [ + 85 + ], + "_nregex": [ + 85 + ], + "_nsimilar": [ + 85 + ], + "_regex": [ + 85 + ], + "_similar": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "SuccessOutput": { + "success": [ + 6 + ], + "__typename": [ + 85 + ] + }, + "SyncPluginRegistryOutput": { + "plugins": [ + 41 + ], + "versions": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "TableIOStat": { + "cache_hit_ratio": [ + 32 + ], + "heap_blks_hit": [ + 41 + ], + "heap_blks_read": [ + 41 + ], + "idx_blks_hit": [ + 41 + ], + "idx_blks_read": [ + 41 + ], + "relname": [ + 85 + ], + "schemaname": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "TableSizeInfo": { + "estimated_dead_tuple_bytes": [ + 32 + ], + "indexes_size": [ + 32 + ], + "n_dead_tup": [ + 41 + ], + "n_live_tup": [ + 41 + ], + "schemaname": [ + 85 + ], + "table_size": [ + 32 + ], + "tablename": [ + 85 + ], + "total_size": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "TableStat": { + "idx_scan": [ + 41 + ], + "idx_tup_fetch": [ + 41 + ], + "last_analyze": [ + 5242 + ], + "last_autoanalyze": [ + 5242 + ], + "last_autovacuum": [ + 5242 + ], + "last_vacuum": [ + 5242 + ], + "n_dead_tup": [ + 41 + ], + "n_live_tup": [ + 41 + ], + "n_tup_del": [ + 41 + ], + "n_tup_hot_upd": [ + 41 + ], + "n_tup_ins": [ + 41 + ], + "n_tup_upd": [ + 41 + ], + "relname": [ + 85 + ], + "schemaname": [ + 85 + ], + "seq_scan": [ + 41 + ], + "seq_tup_read": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "TeamCalendarOutput": { + "url": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "TelemetryActivityPoint": { + "day": [ + 85 + ], + "installs": [ + 41 + ], + "matches": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "TelemetryCountryCount": { + "country": [ + 85 + ], + "installs": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "TelemetryFeatureAdoption": { + "counted": [ + 41 + ], + "enabled": [ + 41 + ], + "flagged": [ + 41 + ], + "installsUsing": [ + 41 + ], + "key": [ + 85 + ], + "kind": [ + 85 + ], + "reporting": [ + 41 + ], + "total": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "TelemetryFleetTotals": { + "appearancesReported": [ + 41 + ], + "competitionReported": [ + 41 + ], + "dedicatedServers": [ + 41 + ], + "eventTeams": [ + 41 + ], + "events": [ + 41 + ], + "gameModes": [ + 41 + ], + "gameModesEnabled": [ + 41 + ], + "gameModesUnranked": [ + 41 + ], + "gameServerNodes": [ + 41 + ], + "gameServerNodesEnabled": [ + 41 + ], + "gameServerNodesOnline": [ + 41 + ], + "gpuNodes": [ + 41 + ], + "leagueRegistrations": [ + 41 + ], + "leagueSeasons": [ + 41 + ], + "leagueSeasonsFinished": [ + 41 + ], + "leagueTeams": [ + 41 + ], + "mapsPlayed": [ + 41 + ], + "matches": [ + 41 + ], + "matchesAbandoned": [ + 41 + ], + "matchesCreated": [ + 41 + ], + "matchesFinished": [ + 41 + ], + "matchesImported": [ + 41 + ], + "matchesImportedMonth": [ + 41 + ], + "matchesImportedYear": [ + 41 + ], + "matchesLeague": [ + 41 + ], + "matchesLive": [ + 41 + ], + "matchesMonth": [ + 41 + ], + "matchesScrim": [ + 41 + ], + "matchesTournament": [ + 41 + ], + "matchesWeek": [ + 41 + ], + "matchesYear": [ + 41 + ], + "outcomesReported": [ + 41 + ], + "panels": [ + 41 + ], + "playerAppearances": [ + 41 + ], + "playersActive30d": [ + 41 + ], + "playersActive7d": [ + 41 + ], + "playersKnown": [ + 41 + ], + "playersPlayed": [ + 41 + ], + "playersRegistered": [ + 41 + ], + "pluginsBySlug": [ + 2439 + ], + "pluginsManual": [ + 41 + ], + "pluginsReported": [ + 41 + ], + "pluginsRequested": [ + 41 + ], + "publicServers": [ + 41 + ], + "regions": [ + 41 + ], + "scrimRequests": [ + 41 + ], + "servers": [ + 41 + ], + "serversEnabled": [ + 41 + ], + "teams": [ + 41 + ], + "tournamentTeams": [ + 41 + ], + "tournaments": [ + 41 + ], + "tournamentsFinished": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "TelemetryGrowthPoint": { + "installs": [ + 41 + ], + "month": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "TelemetryInstallCounts": { + "active24h": [ + 41 + ], + "active30d": [ + 41 + ], + "active7d": [ + 41 + ], + "new30d": [ + 41 + ], + "retained180d": [ + 41 + ], + "total": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "TelemetryMatchSourceCount": { + "matches": [ + 41 + ], + "source": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "TelemetryMatchTypeCount": { + "matches": [ + 41 + ], + "type": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "TelemetryRuntimeCount": { + "installs": [ + 41 + ], + "runtime": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "TelemetryStats": { + "activity": [ + 94 + ], + "countries": [ + 95 + ], + "features": [ + 96 + ], + "growth": [ + 98 + ], + "installs": [ + 99 + ], + "matchSources": [ + 100 + ], + "matchTypes": [ + 101 + ], + "online": [ + 41 + ], + "runtimes": [ + 102 + ], + "totals": [ + 97 + ], + "utility": [ + 105 + ], + "utilitySources": [ + 104 + ], + "utilityTypes": [ + 106 + ], + "versions": [ + 107 + ], + "__typename": [ + 85 + ] + }, + "TelemetryUtilitySourceCount": { + "lineups": [ + 41 + ], + "source": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "TelemetryUtilityTotals": { + "archived": [ + 41 + ], + "attempts": [ + 41 + ], + "authors": [ + 41 + ], + "collections": [ + 41 + ], + "demoThrows": [ + 41 + ], + "demosMined": [ + 41 + ], + "driftFlagged": [ + 41 + ], + "driftScans": [ + 41 + ], + "favorites": [ + 41 + ], + "hosts": [ + 41 + ], + "lineups": [ + 41 + ], + "maps": [ + 41 + ], + "mastered": [ + 41 + ], + "metaLineups": [ + 41 + ], + "month": [ + 41 + ], + "pendingReview": [ + 41 + ], + "playbookSteps": [ + 41 + ], + "playbooks": [ + 41 + ], + "practicing": [ + 41 + ], + "previews": [ + 41 + ], + "private": [ + 41 + ], + "public": [ + 41 + ], + "repairs": [ + 41 + ], + "reported": [ + 41 + ], + "sessions": [ + 41 + ], + "sessionsFailed": [ + 41 + ], + "sessionsMonth": [ + 41 + ], + "sessionsWeek": [ + 41 + ], + "successes": [ + 41 + ], + "team": [ + 41 + ], + "verified": [ + 41 + ], + "votes": [ + 41 + ], + "week": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "TelemetryUtilityTypeCount": { + "lineups": [ + 41 + ], + "type": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "TelemetryVersionCount": { + "installs": [ + 41 + ], + "rank": [ + 41 + ], + "since": [ + 85 + ], + "version": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "TestUploadResponse": { + "error": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "TimescaleJob": { + "hypertable_name": [ + 85 + ], + "job_id": [ + 41 + ], + "job_type": [ + 85 + ], + "last_run_status": [ + 85 + ], + "next_start": [ + 5242 + ], + "__typename": [ + 85 + ] + }, + "TimescaleStats": { + "chunks_count": [ + 41 + ], + "hypertables": [ + 38 + ], + "jobs": [ + 109 + ], + "__typename": [ + 85 + ] + }, + "TournamentAward": { + "award_id": [ + 6672 + ], + "custom_name": [ + 85 + ], + "id": [ + 6672 + ], + "image_url": [ + 85 + ], + "placement": [ + 41 + ], + "silhouette": [ + 41 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "TournamentDraftOutput": { + "teams_created": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "TournamentInviteCodeOutput": { + "code": [ + 85 + ], + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "TournamentMatchResetImpact": { + "bracket_id": [ + 6672 + ], + "depth": [ + 41 + ], + "is_source": [ + 6 + ], + "match_id": [ + 6672 + ], + "match_number": [ + 41 + ], + "match_status": [ + 85 + ], + "path": [ + 85 + ], + "round": [ + 41 + ], + "stage_type": [ + 85 + ], + "will_delete_match": [ + 6 + ], + "__typename": [ + 85 + ] + }, + "UtilityBlockingOutput": { + "degraded": [ + 6 + ], + "message": [ + 85 + ], + "results": [ + 116 + ], + "__typename": [ + 85 + ] + }, + "UtilityBlockingResult": { + "blocked": [ + 6 + ], + "depth": [ + 32 + ], + "transmittance": [ + 32 + ], + "utility_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "UtilityCalibrationOutput": { + "detail": [ + 85 + ], + "ready": [ + 6 + ], + "status": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "UtilityDriftScanOutput": { + "lineups": [ + 41 + ], + "scan_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "UtilityDrillLoadOutput": { + "map_name": [ + 85 + ], + "queued": [ + 41 + ], + "reason": [ + 85 + ], + "sent": [ + 6 + ], + "__typename": [ + 85 + ] + }, + "UtilityImportError": { + "external_id": [ + 85 + ], + "index": [ + 41 + ], + "reason": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "UtilityImportOutput": { + "dry_run": [ + 6 + ], + "errors": [ + 120 + ], + "failed": [ + 41 + ], + "imported": [ + 41 + ], + "total": [ + 41 + ], + "updated": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "UtilityLaunchSeedBackfillOutput": { + "done": [ + 6 + ], + "scanned": [ + 41 + ], + "seeded": [ + 41 + ], + "skipped": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "UtilityLineupOutput": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "UtilityLoadOutput": { + "map_name": [ + 85 + ], + "reason": [ + 85 + ], + "sent": [ + 6 + ], + "__typename": [ + 85 + ] + }, + "UtilityMissPatternOutput": { + "analysed": [ + 6 + ], + "bias": [ + 85 + ], + "mean_along": [ + 32 + ], + "mean_lateral": [ + 32 + ], + "mean_vertical": [ + 32 + ], + "message": [ + 85 + ], + "players": [ + 41 + ], + "samples": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "UtilityOneWayOutput": { + "degraded": [ + 6 + ], + "message": [ + 85 + ], + "results": [ + 127 + ], + "__typename": [ + 85 + ] + }, + "UtilityOneWayResult": { + "cause": [ + 85 + ], + "confidence": [ + 85 + ], + "contested": [ + 6 + ], + "favors": [ + 85 + ], + "index": [ + 41 + ], + "one_way": [ + 6 + ], + "__typename": [ + 85 + ] + }, + "UtilityPlaybookCoverageOutput": { + "degraded": [ + 6 + ], + "message": [ + 85 + ], + "results": [ + 129 + ], + "__typename": [ + 85 + ] + }, + "UtilityPlaybookCoverageResult": { + "by_step": [ + 41 + ], + "covered": [ + 6 + ], + "depth": [ + 32 + ], + "index": [ + 41 + ], + "transmittance": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "UtilityPlaybookOutput": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "UtilityPlaybookStepInput": { + "assigned_steam_id": [ + 85 + ], + "note": [ + 85 + ], + "offset_ms": [ + 41 + ], + "utility_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "UtilityPracticeMapChangeOutput": { + "map_name": [ + 85 + ], + "queued": [ + 6 + ], + "success": [ + 6 + ], + "__typename": [ + 85 + ] + }, + "UtilityPracticePlanEntry": { + "attempts": [ + 41 + ], + "difficulty": [ + 85 + ], + "global_attempts": [ + 41 + ], + "global_landing_rate": [ + 32 + ], + "global_players": [ + 41 + ], + "mastered": [ + 6 + ], + "meta_throwers": [ + 41 + ], + "priority": [ + 32 + ], + "reason": [ + 85 + ], + "successes": [ + 41 + ], + "utility_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "UtilityPracticePlanOutput": { + "analysed": [ + 6 + ], + "entries": [ + 133 + ], + "message": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "UtilityPracticeServer": { + "held_by": [ + 85 + ], + "id": [ + 6672 + ], + "in_use": [ + 6 + ], + "label": [ + 85 + ], + "region": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "UtilityPracticeServersOutput": { + "servers": [ + 135 + ], + "__typename": [ + 85 + ] + }, + "UtilityPracticeSessionOutput": { + "id": [ + 6672 + ], + "invite_code": [ + 85 + ], + "match_id": [ + 6672 + ], + "status": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "UtilityPracticeWhereOutput": { + "map_name": [ + 85 + ], + "on_server": [ + 6 + ], + "session_id": [ + 6672 + ], + "switching": [ + 6 + ], + "__typename": [ + 85 + ] + }, + "UtilityPurgeOutput": { + "dry_run": [ + 6 + ], + "lineups": [ + 41 + ], + "origin_source": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "UtilityRemineOutput": { + "demos": [ + 41 + ], + "done": [ + 6 + ], + "throws": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "UtilityRenderClearOutput": { + "cleared": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "UtilityRenderQueueOutput": { + "reason": [ + 85 + ], + "render_id": [ + 6672 + ], + "status": [ + 85 + ], + "success": [ + 6 + ], + "__typename": [ + 85 + ] + }, + "UtilityScratchLineupInput": { + "client_id": [ + 85 + ], + "eye_z": [ + 32 + ], + "land_x": [ + 32 + ], + "land_y": [ + 32 + ], + "land_z": [ + 32 + ], + "map_name": [ + 85 + ], + "name": [ + 85 + ], + "origin_x": [ + 32 + ], + "origin_y": [ + 32 + ], + "origin_z": [ + 32 + ], + "side": [ + 85 + ], + "technique": [ + 85 + ], + "throw_strength": [ + 85 + ], + "utility_type": [ + 85 + ], + "view_pitch": [ + 32 + ], + "view_yaw": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "UtilitySightlineOutput": { + "degraded": [ + 6 + ], + "message": [ + 85 + ], + "results": [ + 146 + ], + "threshold": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "UtilitySightlinePairInput": { + "from_x": [ + 32 + ], + "from_y": [ + 32 + ], + "from_z": [ + 32 + ], + "to_x": [ + 32 + ], + "to_y": [ + 32 + ], + "to_z": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "UtilitySightlineResult": { + "blocked": [ + 6 + ], + "blocked_by": [ + 85 + ], + "depth": [ + 32 + ], + "index": [ + 41 + ], + "transmittance": [ + 32 + ], + "world_blocked": [ + 6 + ], + "__typename": [ + 85 + ] + }, + "UtilitySolveOutput": { + "accepted": [ + 6 + ], + "message": [ + 85 + ], + "status": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "UtilityTeamUtilityEntry": { + "landed": [ + 41 + ], + "players": [ + 41 + ], + "thrown": [ + 41 + ], + "utility_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "UtilityTeamUtilityOutput": { + "analysed": [ + 6 + ], + "entries": [ + 148 + ], + "message": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "UtilityUtilityReportOutput": { + "analysed": [ + 6 + ], + "by_type": [ + 151 + ], + "landed": [ + 41 + ], + "matched_lineups": [ + 41 + ], + "matched_meta": [ + 41 + ], + "message": [ + 85 + ], + "radius": [ + 32 + ], + "steam_id": [ + 85 + ], + "throws": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "UtilityUtilityTypeReport": { + "landed": [ + 41 + ], + "matched_lineups": [ + 41 + ], + "matched_meta": [ + 41 + ], + "throws": [ + 41 + ], + "utility_type": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "WatchDemoOutput": { + "match_map_id": [ + 85 + ], + "session_id": [ + 85 + ], + "stream_url": [ + 85 + ], + "success": [ + 6 + ], + "__typename": [ + 85 + ] + }, + "WebPushPlatformCount": { + "devices": [ + 41 + ], + "platform": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "WebPushStatusOutput": { + "active_7d": [ + 41 + ], + "configured": [ + 6 + ], + "last_delivered_at": [ + 5243 + ], + "managed_by_environment": [ + 6 + ], + "never_delivered": [ + 41 + ], + "new_7d": [ + 41 + ], + "platforms": [ + 153 + ], + "players": [ + 41 + ], + "subscriptions": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "_map_pool": { + "map_id": [ + 6672 + ], + "map_pool_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "_map_pool_aggregate": { + "aggregate": [ + 157 + ], + "nodes": [ + 155 + ], + "__typename": [ + 85 + ] + }, + "_map_pool_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 167, + "[_map_pool_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 161 + ], + "min": [ + 162 + ], + "__typename": [ + 85 + ] + }, + "_map_pool_bool_exp": { + "_and": [ + 158 + ], + "_not": [ + 158 + ], + "_or": [ + 158 + ], + "map_id": [ + 6674 + ], + "map_pool_id": [ + 6674 + ], + "__typename": [ + 85 + ] + }, + "_map_pool_constraint": {}, + "_map_pool_insert_input": { + "map_id": [ + 6672 + ], + "map_pool_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "_map_pool_max_fields": { + "map_id": [ + 6672 + ], + "map_pool_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "_map_pool_min_fields": { + "map_id": [ + 6672 + ], + "map_pool_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "_map_pool_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 155 + ], + "__typename": [ + 85 + ] + }, + "_map_pool_on_conflict": { + "constraint": [ + 159 + ], + "update_columns": [ + 171 + ], + "where": [ + 158 + ], + "__typename": [ + 85 + ] + }, + "_map_pool_order_by": { + "map_id": [ + 3648 + ], + "map_pool_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "_map_pool_pk_columns_input": { + "map_id": [ + 6672 + ], + "map_pool_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "_map_pool_select_column": {}, + "_map_pool_set_input": { + "map_id": [ + 6672 + ], + "map_pool_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "_map_pool_stream_cursor_input": { + "initial_value": [ + 170 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "_map_pool_stream_cursor_value_input": { + "map_id": [ + 6672 + ], + "map_pool_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "_map_pool_update_column": {}, + "_map_pool_updates": { + "_set": [ + 168 + ], + "where": [ + 158 + ], + "__typename": [ + 85 + ] + }, + "_uuid": {}, + "abandoned_matches": { + "abandoned_at": [ + 5243 + ], + "id": [ + 6672 + ], + "match": [ + 3432 + ], + "match_id": [ + 6672 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "abandoned_matches_aggregate": { + "aggregate": [ + 178 + ], + "nodes": [ + 174 + ], + "__typename": [ + 85 + ] + }, + "abandoned_matches_aggregate_bool_exp": { + "count": [ + 177 + ], + "__typename": [ + 85 + ] + }, + "abandoned_matches_aggregate_bool_exp_count": { + "arguments": [ + 195 + ], + "distinct": [ + 6 + ], + "filter": [ + 183 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "abandoned_matches_aggregate_fields": { + "avg": [ + 181 + ], + "count": [ + 41, + { + "columns": [ + 195, + "[abandoned_matches_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 187 + ], + "min": [ + 189 + ], + "stddev": [ + 197 + ], + "stddev_pop": [ + 199 + ], + "stddev_samp": [ + 201 + ], + "sum": [ + 205 + ], + "var_pop": [ + 209 + ], + "var_samp": [ + 211 + ], + "variance": [ + 213 + ], + "__typename": [ + 85 + ] + }, + "abandoned_matches_aggregate_order_by": { + "avg": [ + 182 + ], + "count": [ + 3648 + ], + "max": [ + 188 + ], + "min": [ + 190 + ], + "stddev": [ + 198 + ], + "stddev_pop": [ + 200 + ], + "stddev_samp": [ + 202 + ], + "sum": [ + 206 + ], + "var_pop": [ + 210 + ], + "var_samp": [ + 212 + ], + "variance": [ + 214 + ], + "__typename": [ + 85 + ] + }, + "abandoned_matches_arr_rel_insert_input": { + "data": [ + 186 + ], + "on_conflict": [ + 192 + ], + "__typename": [ + 85 + ] + }, + "abandoned_matches_avg_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "abandoned_matches_avg_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "abandoned_matches_bool_exp": { + "_and": [ + 183 + ], + "_not": [ + 183 + ], + "_or": [ + 183 + ], + "abandoned_at": [ + 5244 + ], + "id": [ + 6674 + ], + "match": [ + 3443 + ], + "match_id": [ + 6674 + ], + "steam_id": [ + 314 + ], + "__typename": [ + 85 + ] + }, + "abandoned_matches_constraint": {}, + "abandoned_matches_inc_input": { + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "abandoned_matches_insert_input": { + "abandoned_at": [ + 5243 + ], + "id": [ + 6672 + ], + "match": [ + 3452 + ], + "match_id": [ + 6672 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "abandoned_matches_max_fields": { + "abandoned_at": [ + 5243 + ], + "id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "abandoned_matches_max_order_by": { + "abandoned_at": [ + 3648 + ], + "id": [ + 3648 + ], + "match_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "abandoned_matches_min_fields": { + "abandoned_at": [ + 5243 + ], + "id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "abandoned_matches_min_order_by": { + "abandoned_at": [ + 3648 + ], + "id": [ + 3648 + ], + "match_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "abandoned_matches_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 174 + ], + "__typename": [ + 85 + ] + }, + "abandoned_matches_on_conflict": { + "constraint": [ + 184 + ], + "update_columns": [ + 207 + ], + "where": [ + 183 + ], + "__typename": [ + 85 + ] + }, + "abandoned_matches_order_by": { + "abandoned_at": [ + 3648 + ], + "id": [ + 3648 + ], + "match": [ + 3454 + ], + "match_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "abandoned_matches_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "abandoned_matches_select_column": {}, + "abandoned_matches_set_input": { + "abandoned_at": [ + 5243 + ], + "id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "abandoned_matches_stddev_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "abandoned_matches_stddev_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "abandoned_matches_stddev_pop_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "abandoned_matches_stddev_pop_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "abandoned_matches_stddev_samp_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "abandoned_matches_stddev_samp_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "abandoned_matches_stream_cursor_input": { + "initial_value": [ + 204 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "abandoned_matches_stream_cursor_value_input": { + "abandoned_at": [ + 5243 + ], + "id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "abandoned_matches_sum_fields": { + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "abandoned_matches_sum_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "abandoned_matches_update_column": {}, + "abandoned_matches_updates": { + "_inc": [ + 185 + ], + "_set": [ + 196 + ], + "where": [ + 183 + ], + "__typename": [ + 85 + ] + }, + "abandoned_matches_var_pop_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "abandoned_matches_var_pop_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "abandoned_matches_var_samp_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "abandoned_matches_var_samp_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "abandoned_matches_variance_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "abandoned_matches_variance_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "api_keys": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "label": [ + 85 + ], + "last_used_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "api_keys_aggregate": { + "aggregate": [ + 217 + ], + "nodes": [ + 215 + ], + "__typename": [ + 85 + ] + }, + "api_keys_aggregate_fields": { + "avg": [ + 218 + ], + "count": [ + 41, + { + "columns": [ + 229, + "[api_keys_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 223 + ], + "min": [ + 224 + ], + "stddev": [ + 231 + ], + "stddev_pop": [ + 232 + ], + "stddev_samp": [ + 233 + ], + "sum": [ + 236 + ], + "var_pop": [ + 239 + ], + "var_samp": [ + 240 + ], + "variance": [ + 241 + ], + "__typename": [ + 85 + ] + }, + "api_keys_avg_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "api_keys_bool_exp": { + "_and": [ + 219 + ], + "_not": [ + 219 + ], + "_or": [ + 219 + ], + "created_at": [ + 5244 + ], + "id": [ + 6674 + ], + "label": [ + 87 + ], + "last_used_at": [ + 5244 + ], + "steam_id": [ + 314 + ], + "__typename": [ + 85 + ] + }, + "api_keys_constraint": {}, + "api_keys_inc_input": { + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "api_keys_insert_input": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "label": [ + 85 + ], + "last_used_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "api_keys_max_fields": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "label": [ + 85 + ], + "last_used_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "api_keys_min_fields": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "label": [ + 85 + ], + "last_used_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "api_keys_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 215 + ], + "__typename": [ + 85 + ] + }, + "api_keys_on_conflict": { + "constraint": [ + 220 + ], + "update_columns": [ + 237 + ], + "where": [ + 219 + ], + "__typename": [ + 85 + ] + }, + "api_keys_order_by": { + "created_at": [ + 3648 + ], + "id": [ + 3648 + ], + "label": [ + 3648 + ], + "last_used_at": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "api_keys_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "api_keys_select_column": {}, + "api_keys_set_input": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "label": [ + 85 + ], + "last_used_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "api_keys_stddev_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "api_keys_stddev_pop_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "api_keys_stddev_samp_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "api_keys_stream_cursor_input": { + "initial_value": [ + 235 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "api_keys_stream_cursor_value_input": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "label": [ + 85 + ], + "last_used_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "api_keys_sum_fields": { + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "api_keys_update_column": {}, + "api_keys_updates": { + "_inc": [ + 221 + ], + "_set": [ + 230 + ], + "where": [ + 219 + ], + "__typename": [ + 85 + ] + }, + "api_keys_var_pop_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "api_keys_var_samp_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "api_keys_variance_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "approve_league_season_movements_args": { + "_league_season_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "award_recipients": { + "award": [ + 284 + ], + "award_id": [ + 6672 + ], + "awarded_by": [ + 4606 + ], + "awarded_by_steam_id": [ + 312 + ], + "created_at": [ + 5243 + ], + "event": [ + 2065 + ], + "event_id": [ + 6672 + ], + "id": [ + 6672 + ], + "league_season": [ + 2642 + ], + "league_season_id": [ + 6672 + ], + "note": [ + 85 + ], + "placement": [ + 41 + ], + "placement_tier": [ + 85 + ], + "player": [ + 4606 + ], + "player_steam_id": [ + 312 + ], + "season": [ + 4706 + ], + "season_id": [ + 6672 + ], + "source": [ + 650 + ], + "team": [ + 5194 + ], + "team_id": [ + 6672 + ], + "tournament": [ + 5896 + ], + "tournament_award": [ + 5245 + ], + "tournament_id": [ + 6672 + ], + "tournament_team": [ + 5850 + ], + "tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "award_recipients_aggregate": { + "aggregate": [ + 247 + ], + "nodes": [ + 243 + ], + "__typename": [ + 85 + ] + }, + "award_recipients_aggregate_bool_exp": { + "count": [ + 246 + ], + "__typename": [ + 85 + ] + }, + "award_recipients_aggregate_bool_exp_count": { + "arguments": [ + 264 + ], + "distinct": [ + 6 + ], + "filter": [ + 252 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "award_recipients_aggregate_fields": { + "avg": [ + 250 + ], + "count": [ + 41, + { + "columns": [ + 264, + "[award_recipients_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 256 + ], + "min": [ + 258 + ], + "stddev": [ + 266 + ], + "stddev_pop": [ + 268 + ], + "stddev_samp": [ + 270 + ], + "sum": [ + 274 + ], + "var_pop": [ + 278 + ], + "var_samp": [ + 280 + ], + "variance": [ + 282 + ], + "__typename": [ + 85 + ] + }, + "award_recipients_aggregate_order_by": { + "avg": [ + 251 + ], + "count": [ + 3648 + ], + "max": [ + 257 + ], + "min": [ + 259 + ], + "stddev": [ + 267 + ], + "stddev_pop": [ + 269 + ], + "stddev_samp": [ + 271 + ], + "sum": [ + 275 + ], + "var_pop": [ + 279 + ], + "var_samp": [ + 281 + ], + "variance": [ + 283 + ], + "__typename": [ + 85 + ] + }, + "award_recipients_arr_rel_insert_input": { + "data": [ + 255 + ], + "on_conflict": [ + 261 + ], + "__typename": [ + 85 + ] + }, + "award_recipients_avg_fields": { + "awarded_by_steam_id": [ + 32 + ], + "placement": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "award_recipients_avg_order_by": { + "awarded_by_steam_id": [ + 3648 + ], + "placement": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "award_recipients_bool_exp": { + "_and": [ + 252 + ], + "_not": [ + 252 + ], + "_or": [ + 252 + ], + "award": [ + 288 + ], + "award_id": [ + 6674 + ], + "awarded_by": [ + 4610 + ], + "awarded_by_steam_id": [ + 314 + ], + "created_at": [ + 5244 + ], + "event": [ + 2069 + ], + "event_id": [ + 6674 + ], + "id": [ + 6674 + ], + "league_season": [ + 2647 + ], + "league_season_id": [ + 6674 + ], + "note": [ + 87 + ], + "placement": [ + 42 + ], + "placement_tier": [ + 87 + ], + "player": [ + 4610 + ], + "player_steam_id": [ + 314 + ], + "season": [ + 4710 + ], + "season_id": [ + 6674 + ], + "source": [ + 651 + ], + "team": [ + 5205 + ], + "team_id": [ + 6674 + ], + "tournament": [ + 5917 + ], + "tournament_award": [ + 5254 + ], + "tournament_id": [ + 6674 + ], + "tournament_team": [ + 5861 + ], + "tournament_team_id": [ + 6674 + ], + "__typename": [ + 85 + ] + }, + "award_recipients_constraint": {}, + "award_recipients_inc_input": { + "awarded_by_steam_id": [ + 312 + ], + "placement": [ + 41 + ], + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "award_recipients_insert_input": { + "award": [ + 295 + ], + "award_id": [ + 6672 + ], + "awarded_by": [ + 4617 + ], + "awarded_by_steam_id": [ + 312 + ], + "created_at": [ + 5243 + ], + "event": [ + 2076 + ], + "event_id": [ + 6672 + ], + "id": [ + 6672 + ], + "league_season": [ + 2657 + ], + "league_season_id": [ + 6672 + ], + "note": [ + 85 + ], + "placement": [ + 41 + ], + "player": [ + 4617 + ], + "player_steam_id": [ + 312 + ], + "season": [ + 4717 + ], + "season_id": [ + 6672 + ], + "source": [ + 650 + ], + "team": [ + 5214 + ], + "team_id": [ + 6672 + ], + "tournament": [ + 5926 + ], + "tournament_award": [ + 5263 + ], + "tournament_id": [ + 6672 + ], + "tournament_team": [ + 5870 + ], + "tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "award_recipients_max_fields": { + "award_id": [ + 6672 + ], + "awarded_by_steam_id": [ + 312 + ], + "created_at": [ + 5243 + ], + "event_id": [ + 6672 + ], + "id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "note": [ + 85 + ], + "placement": [ + 41 + ], + "placement_tier": [ + 85 + ], + "player_steam_id": [ + 312 + ], + "season_id": [ + 6672 + ], + "team_id": [ + 6672 + ], + "tournament_id": [ + 6672 + ], + "tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "award_recipients_max_order_by": { + "award_id": [ + 3648 + ], + "awarded_by_steam_id": [ + 3648 + ], + "created_at": [ + 3648 + ], + "event_id": [ + 3648 + ], + "id": [ + 3648 + ], + "league_season_id": [ + 3648 + ], + "note": [ + 3648 + ], + "placement": [ + 3648 + ], + "placement_tier": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "season_id": [ + 3648 + ], + "team_id": [ + 3648 + ], + "tournament_id": [ + 3648 + ], + "tournament_team_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "award_recipients_min_fields": { + "award_id": [ + 6672 + ], + "awarded_by_steam_id": [ + 312 + ], + "created_at": [ + 5243 + ], + "event_id": [ + 6672 + ], + "id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "note": [ + 85 + ], + "placement": [ + 41 + ], + "placement_tier": [ + 85 + ], + "player_steam_id": [ + 312 + ], + "season_id": [ + 6672 + ], + "team_id": [ + 6672 + ], + "tournament_id": [ + 6672 + ], + "tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "award_recipients_min_order_by": { + "award_id": [ + 3648 + ], + "awarded_by_steam_id": [ + 3648 + ], + "created_at": [ + 3648 + ], + "event_id": [ + 3648 + ], + "id": [ + 3648 + ], + "league_season_id": [ + 3648 + ], + "note": [ + 3648 + ], + "placement": [ + 3648 + ], + "placement_tier": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "season_id": [ + 3648 + ], + "team_id": [ + 3648 + ], + "tournament_id": [ + 3648 + ], + "tournament_team_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "award_recipients_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 243 + ], + "__typename": [ + 85 + ] + }, + "award_recipients_on_conflict": { + "constraint": [ + 253 + ], + "update_columns": [ + 276 + ], + "where": [ + 252 + ], + "__typename": [ + 85 + ] + }, + "award_recipients_order_by": { + "award": [ + 297 + ], + "award_id": [ + 3648 + ], + "awarded_by": [ + 4619 + ], + "awarded_by_steam_id": [ + 3648 + ], + "created_at": [ + 3648 + ], + "event": [ + 2078 + ], + "event_id": [ + 3648 + ], + "id": [ + 3648 + ], + "league_season": [ + 2659 + ], + "league_season_id": [ + 3648 + ], + "note": [ + 3648 + ], + "placement": [ + 3648 + ], + "placement_tier": [ + 3648 + ], + "player": [ + 4619 + ], + "player_steam_id": [ + 3648 + ], + "season": [ + 4719 + ], + "season_id": [ + 3648 + ], + "source": [ + 3648 + ], + "team": [ + 5216 + ], + "team_id": [ + 3648 + ], + "tournament": [ + 5928 + ], + "tournament_award": [ + 5265 + ], + "tournament_id": [ + 3648 + ], + "tournament_team": [ + 5872 + ], + "tournament_team_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "award_recipients_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "award_recipients_select_column": {}, + "award_recipients_set_input": { + "award_id": [ + 6672 + ], + "awarded_by_steam_id": [ + 312 + ], + "created_at": [ + 5243 + ], + "event_id": [ + 6672 + ], + "id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "note": [ + 85 + ], + "placement": [ + 41 + ], + "player_steam_id": [ + 312 + ], + "season_id": [ + 6672 + ], + "source": [ + 650 + ], + "team_id": [ + 6672 + ], + "tournament_id": [ + 6672 + ], + "tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "award_recipients_stddev_fields": { + "awarded_by_steam_id": [ + 32 + ], + "placement": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "award_recipients_stddev_order_by": { + "awarded_by_steam_id": [ + 3648 + ], + "placement": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "award_recipients_stddev_pop_fields": { + "awarded_by_steam_id": [ + 32 + ], + "placement": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "award_recipients_stddev_pop_order_by": { + "awarded_by_steam_id": [ + 3648 + ], + "placement": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "award_recipients_stddev_samp_fields": { + "awarded_by_steam_id": [ + 32 + ], + "placement": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "award_recipients_stddev_samp_order_by": { + "awarded_by_steam_id": [ + 3648 + ], + "placement": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "award_recipients_stream_cursor_input": { + "initial_value": [ + 273 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "award_recipients_stream_cursor_value_input": { + "award_id": [ + 6672 + ], + "awarded_by_steam_id": [ + 312 + ], + "created_at": [ + 5243 + ], + "event_id": [ + 6672 + ], + "id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "note": [ + 85 + ], + "placement": [ + 41 + ], + "placement_tier": [ + 85 + ], + "player_steam_id": [ + 312 + ], + "season_id": [ + 6672 + ], + "source": [ + 650 + ], + "team_id": [ + 6672 + ], + "tournament_id": [ + 6672 + ], + "tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "award_recipients_sum_fields": { + "awarded_by_steam_id": [ + 312 + ], + "placement": [ + 41 + ], + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "award_recipients_sum_order_by": { + "awarded_by_steam_id": [ + 3648 + ], + "placement": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "award_recipients_update_column": {}, + "award_recipients_updates": { + "_inc": [ + 254 + ], + "_set": [ + 265 + ], + "where": [ + 252 + ], + "__typename": [ + 85 + ] + }, + "award_recipients_var_pop_fields": { + "awarded_by_steam_id": [ + 32 + ], + "placement": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "award_recipients_var_pop_order_by": { + "awarded_by_steam_id": [ + 3648 + ], + "placement": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "award_recipients_var_samp_fields": { + "awarded_by_steam_id": [ + 32 + ], + "placement": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "award_recipients_var_samp_order_by": { + "awarded_by_steam_id": [ + 3648 + ], + "placement": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "award_recipients_variance_fields": { + "awarded_by_steam_id": [ + 32 + ], + "placement": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "award_recipients_variance_order_by": { + "awarded_by_steam_id": [ + 3648 + ], + "placement": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "awards": { + "allow_multiple": [ + 6 + ], + "created_at": [ + 5243 + ], + "created_by": [ + 4606 + ], + "created_by_steam_id": [ + 312 + ], + "description": [ + 85 + ], + "event": [ + 2065 + ], + "event_id": [ + 6672 + ], + "id": [ + 6672 + ], + "image_url": [ + 85 + ], + "league_season": [ + 2642 + ], + "league_season_id": [ + 6672 + ], + "name": [ + 85 + ], + "recipients": [ + 243, + { + "distinct_on": [ + 264, + "[award_recipients_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 262, + "[award_recipients_order_by!]" + ], + "where": [ + 252 + ] + } + ], + "recipients_aggregate": [ + 244, + { + "distinct_on": [ + 264, + "[award_recipients_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 262, + "[award_recipients_order_by!]" + ], + "where": [ + 252 + ] + } + ], + "season": [ + 4706 + ], + "season_id": [ + 6672 + ], + "silhouette": [ + 41 + ], + "system_key": [ + 85 + ], + "tier": [ + 670 + ], + "tournament": [ + 5896 + ], + "tournament_configs": [ + 5245, + { + "distinct_on": [ + 5267, + "[tournament_awards_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5265, + "[tournament_awards_order_by!]" + ], + "where": [ + 5254 + ] + } + ], + "tournament_configs_aggregate": [ + 5246, + { + "distinct_on": [ + 5267, + "[tournament_awards_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5265, + "[tournament_awards_order_by!]" + ], + "where": [ + 5254 + ] + } + ], + "tournament_id": [ + 6672 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "awards_aggregate": { + "aggregate": [ + 286 + ], + "nodes": [ + 284 + ], + "__typename": [ + 85 + ] + }, + "awards_aggregate_fields": { + "avg": [ + 287 + ], + "count": [ + 41, + { + "columns": [ + 299, + "[awards_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 292 + ], + "min": [ + 293 + ], + "stddev": [ + 301 + ], + "stddev_pop": [ + 302 + ], + "stddev_samp": [ + 303 + ], + "sum": [ + 306 + ], + "var_pop": [ + 309 + ], + "var_samp": [ + 310 + ], + "variance": [ + 311 + ], + "__typename": [ + 85 + ] + }, + "awards_avg_fields": { + "created_by_steam_id": [ + 32 + ], + "silhouette": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "awards_bool_exp": { + "_and": [ + 288 + ], + "_not": [ + 288 + ], + "_or": [ + 288 + ], + "allow_multiple": [ + 7 + ], + "created_at": [ + 5244 + ], + "created_by": [ + 4610 + ], + "created_by_steam_id": [ + 314 + ], + "description": [ + 87 + ], + "event": [ + 2069 + ], + "event_id": [ + 6674 + ], + "id": [ + 6674 + ], + "image_url": [ + 87 + ], + "league_season": [ + 2647 + ], + "league_season_id": [ + 6674 + ], + "name": [ + 87 + ], + "recipients": [ + 252 + ], + "recipients_aggregate": [ + 245 + ], + "season": [ + 4710 + ], + "season_id": [ + 6674 + ], + "silhouette": [ + 42 + ], + "system_key": [ + 87 + ], + "tier": [ + 671 + ], + "tournament": [ + 5917 + ], + "tournament_configs": [ + 5254 + ], + "tournament_configs_aggregate": [ + 5247 + ], + "tournament_id": [ + 6674 + ], + "updated_at": [ + 5244 + ], + "__typename": [ + 85 + ] + }, + "awards_constraint": {}, + "awards_inc_input": { + "created_by_steam_id": [ + 312 + ], + "silhouette": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "awards_insert_input": { + "allow_multiple": [ + 6 + ], + "created_at": [ + 5243 + ], + "created_by": [ + 4617 + ], + "created_by_steam_id": [ + 312 + ], + "description": [ + 85 + ], + "event": [ + 2076 + ], + "event_id": [ + 6672 + ], + "id": [ + 6672 + ], + "image_url": [ + 85 + ], + "league_season": [ + 2657 + ], + "league_season_id": [ + 6672 + ], + "name": [ + 85 + ], + "recipients": [ + 249 + ], + "season": [ + 4717 + ], + "season_id": [ + 6672 + ], + "silhouette": [ + 41 + ], + "system_key": [ + 85 + ], + "tier": [ + 670 + ], + "tournament": [ + 5926 + ], + "tournament_configs": [ + 5251 + ], + "tournament_id": [ + 6672 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "awards_max_fields": { + "created_at": [ + 5243 + ], + "created_by_steam_id": [ + 312 + ], + "description": [ + 85 + ], + "event_id": [ + 6672 + ], + "id": [ + 6672 + ], + "image_url": [ + 85 + ], + "league_season_id": [ + 6672 + ], + "name": [ + 85 + ], + "season_id": [ + 6672 + ], + "silhouette": [ + 41 + ], + "system_key": [ + 85 + ], + "tournament_id": [ + 6672 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "awards_min_fields": { + "created_at": [ + 5243 + ], + "created_by_steam_id": [ + 312 + ], + "description": [ + 85 + ], + "event_id": [ + 6672 + ], + "id": [ + 6672 + ], + "image_url": [ + 85 + ], + "league_season_id": [ + 6672 + ], + "name": [ + 85 + ], + "season_id": [ + 6672 + ], + "silhouette": [ + 41 + ], + "system_key": [ + 85 + ], + "tournament_id": [ + 6672 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "awards_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 284 + ], + "__typename": [ + 85 + ] + }, + "awards_obj_rel_insert_input": { + "data": [ + 291 + ], + "on_conflict": [ + 296 + ], + "__typename": [ + 85 + ] + }, + "awards_on_conflict": { + "constraint": [ + 289 + ], + "update_columns": [ + 307 + ], + "where": [ + 288 + ], + "__typename": [ + 85 + ] + }, + "awards_order_by": { + "allow_multiple": [ + 3648 + ], + "created_at": [ + 3648 + ], + "created_by": [ + 4619 + ], + "created_by_steam_id": [ + 3648 + ], + "description": [ + 3648 + ], + "event": [ + 2078 + ], + "event_id": [ + 3648 + ], + "id": [ + 3648 + ], + "image_url": [ + 3648 + ], + "league_season": [ + 2659 + ], + "league_season_id": [ + 3648 + ], + "name": [ + 3648 + ], + "recipients_aggregate": [ + 248 + ], + "season": [ + 4719 + ], + "season_id": [ + 3648 + ], + "silhouette": [ + 3648 + ], + "system_key": [ + 3648 + ], + "tier": [ + 3648 + ], + "tournament": [ + 5928 + ], + "tournament_configs_aggregate": [ + 5250 + ], + "tournament_id": [ + 3648 + ], + "updated_at": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "awards_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "awards_select_column": {}, + "awards_set_input": { + "allow_multiple": [ + 6 + ], + "created_at": [ + 5243 + ], + "created_by_steam_id": [ + 312 + ], + "description": [ + 85 + ], + "event_id": [ + 6672 + ], + "id": [ + 6672 + ], + "image_url": [ + 85 + ], + "league_season_id": [ + 6672 + ], + "name": [ + 85 + ], + "season_id": [ + 6672 + ], + "silhouette": [ + 41 + ], + "system_key": [ + 85 + ], + "tier": [ + 670 + ], + "tournament_id": [ + 6672 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "awards_stddev_fields": { + "created_by_steam_id": [ + 32 + ], + "silhouette": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "awards_stddev_pop_fields": { + "created_by_steam_id": [ + 32 + ], + "silhouette": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "awards_stddev_samp_fields": { + "created_by_steam_id": [ + 32 + ], + "silhouette": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "awards_stream_cursor_input": { + "initial_value": [ + 305 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "awards_stream_cursor_value_input": { + "allow_multiple": [ + 6 + ], + "created_at": [ + 5243 + ], + "created_by_steam_id": [ + 312 + ], + "description": [ + 85 + ], + "event_id": [ + 6672 + ], + "id": [ + 6672 + ], + "image_url": [ + 85 + ], + "league_season_id": [ + 6672 + ], + "name": [ + 85 + ], + "season_id": [ + 6672 + ], + "silhouette": [ + 41 + ], + "system_key": [ + 85 + ], + "tier": [ + 670 + ], + "tournament_id": [ + 6672 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "awards_sum_fields": { + "created_by_steam_id": [ + 312 + ], + "silhouette": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "awards_update_column": {}, + "awards_updates": { + "_inc": [ + 290 + ], + "_set": [ + 300 + ], + "where": [ + 288 + ], + "__typename": [ + 85 + ] + }, + "awards_var_pop_fields": { + "created_by_steam_id": [ + 32 + ], + "silhouette": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "awards_var_samp_fields": { + "created_by_steam_id": [ + 32 + ], + "silhouette": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "awards_variance_fields": { + "created_by_steam_id": [ + 32 + ], + "silhouette": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "bigint": {}, + "bigint_array_comparison_exp": { + "_contained_in": [ + 312 + ], + "_contains": [ + 312 + ], + "_eq": [ + 312 + ], + "_gt": [ + 312 + ], + "_gte": [ + 312 + ], + "_in": [ + 312 + ], + "_is_null": [ + 6 + ], + "_lt": [ + 312 + ], + "_lte": [ + 312 + ], + "_neq": [ + 312 + ], + "_nin": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "bigint_comparison_exp": { + "_eq": [ + 312 + ], + "_gt": [ + 312 + ], + "_gte": [ + 312 + ], + "_in": [ + 312 + ], + "_is_null": [ + 6 + ], + "_lt": [ + 312 + ], + "_lte": [ + 312 + ], + "_neq": [ + 312 + ], + "_nin": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "bytea": {}, + "bytea_comparison_exp": { + "_eq": [ + 315 + ], + "_gt": [ + 315 + ], + "_gte": [ + 315 + ], + "_in": [ + 315 + ], + "_is_null": [ + 6 + ], + "_lt": [ + 315 + ], + "_lte": [ + 315 + ], + "_neq": [ + 315 + ], + "_nin": [ + 315 + ], + "__typename": [ + 85 + ] + }, + "chat_read_state": { + "last_read_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "thread": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "chat_read_state_aggregate": { + "aggregate": [ + 319 + ], + "nodes": [ + 317 + ], + "__typename": [ + 85 + ] + }, + "chat_read_state_aggregate_fields": { + "avg": [ + 320 + ], + "count": [ + 41, + { + "columns": [ + 331, + "[chat_read_state_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 325 + ], + "min": [ + 326 + ], + "stddev": [ + 333 + ], + "stddev_pop": [ + 334 + ], + "stddev_samp": [ + 335 + ], + "sum": [ + 338 + ], + "var_pop": [ + 341 + ], + "var_samp": [ + 342 + ], + "variance": [ + 343 + ], + "__typename": [ + 85 + ] + }, + "chat_read_state_avg_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "chat_read_state_bool_exp": { + "_and": [ + 321 + ], + "_not": [ + 321 + ], + "_or": [ + 321 + ], + "last_read_at": [ + 5244 + ], + "steam_id": [ + 314 + ], + "thread": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "chat_read_state_constraint": {}, + "chat_read_state_inc_input": { + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "chat_read_state_insert_input": { + "last_read_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "thread": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "chat_read_state_max_fields": { + "last_read_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "thread": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "chat_read_state_min_fields": { + "last_read_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "thread": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "chat_read_state_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 317 + ], + "__typename": [ + 85 + ] + }, + "chat_read_state_on_conflict": { + "constraint": [ + 322 + ], + "update_columns": [ + 339 + ], + "where": [ + 321 + ], + "__typename": [ + 85 + ] + }, + "chat_read_state_order_by": { + "last_read_at": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "thread": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "chat_read_state_pk_columns_input": { + "steam_id": [ + 312 + ], + "thread": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "chat_read_state_select_column": {}, + "chat_read_state_set_input": { + "last_read_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "thread": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "chat_read_state_stddev_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "chat_read_state_stddev_pop_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "chat_read_state_stddev_samp_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "chat_read_state_stream_cursor_input": { + "initial_value": [ + 337 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "chat_read_state_stream_cursor_value_input": { + "last_read_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "thread": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "chat_read_state_sum_fields": { + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "chat_read_state_update_column": {}, + "chat_read_state_updates": { + "_inc": [ + 323 + ], + "_set": [ + 332 + ], + "where": [ + 321 + ], + "__typename": [ + 85 + ] + }, + "chat_read_state_var_pop_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "chat_read_state_var_samp_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "chat_read_state_variance_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs": { + "clip": [ + 2953 + ], + "clip_id": [ + 6672 + ], + "created_at": [ + 5243 + ], + "error_message": [ + 85 + ], + "game_server_node": [ + 2314 + ], + "game_server_node_id": [ + 85 + ], + "id": [ + 6672 + ], + "k8s_job_name": [ + 85 + ], + "last_status_at": [ + 5243 + ], + "match_map": [ + 3248 + ], + "match_map_demo": [ + 3128 + ], + "match_map_demo_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "paused": [ + 6 + ], + "progress": [ + 3646 + ], + "session_token": [ + 85 + ], + "sort_index": [ + 41 + ], + "spec": [ + 2439, + { + "path": [ + 85 + ] + } + ], + "status": [ + 85 + ], + "status_history": [ + 2439, + { + "path": [ + 85 + ] + } + ], + "user": [ + 4606 + ], + "user_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs_aggregate": { + "aggregate": [ + 350 + ], + "nodes": [ + 344 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs_aggregate_bool_exp": { + "bool_and": [ + 347 + ], + "bool_or": [ + 348 + ], + "count": [ + 349 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs_aggregate_bool_exp_bool_and": { + "arguments": [ + 373 + ], + "distinct": [ + 6 + ], + "filter": [ + 356 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs_aggregate_bool_exp_bool_or": { + "arguments": [ + 374 + ], + "distinct": [ + 6 + ], + "filter": [ + 356 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs_aggregate_bool_exp_count": { + "arguments": [ + 372 + ], + "distinct": [ + 6 + ], + "filter": [ + 356 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs_aggregate_fields": { + "avg": [ + 354 + ], + "count": [ + 41, + { + "columns": [ + 372, + "[clip_render_jobs_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 363 + ], + "min": [ + 365 + ], + "stddev": [ + 376 + ], + "stddev_pop": [ + 378 + ], + "stddev_samp": [ + 380 + ], + "sum": [ + 384 + ], + "var_pop": [ + 388 + ], + "var_samp": [ + 390 + ], + "variance": [ + 392 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs_aggregate_order_by": { + "avg": [ + 355 + ], + "count": [ + 3648 + ], + "max": [ + 364 + ], + "min": [ + 366 + ], + "stddev": [ + 377 + ], + "stddev_pop": [ + 379 + ], + "stddev_samp": [ + 381 + ], + "sum": [ + 385 + ], + "var_pop": [ + 389 + ], + "var_samp": [ + 391 + ], + "variance": [ + 393 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs_append_input": { + "spec": [ + 2439 + ], + "status_history": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs_arr_rel_insert_input": { + "data": [ + 362 + ], + "on_conflict": [ + 368 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs_avg_fields": { + "progress": [ + 32 + ], + "sort_index": [ + 32 + ], + "user_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs_avg_order_by": { + "progress": [ + 3648 + ], + "sort_index": [ + 3648 + ], + "user_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs_bool_exp": { + "_and": [ + 356 + ], + "_not": [ + 356 + ], + "_or": [ + 356 + ], + "clip": [ + 2962 + ], + "clip_id": [ + 6674 + ], + "created_at": [ + 5244 + ], + "error_message": [ + 87 + ], + "game_server_node": [ + 2326 + ], + "game_server_node_id": [ + 87 + ], + "id": [ + 6674 + ], + "k8s_job_name": [ + 87 + ], + "last_status_at": [ + 5244 + ], + "match_map": [ + 3257 + ], + "match_map_demo": [ + 3140 + ], + "match_map_demo_id": [ + 6674 + ], + "match_map_id": [ + 6674 + ], + "paused": [ + 7 + ], + "progress": [ + 3647 + ], + "session_token": [ + 87 + ], + "sort_index": [ + 42 + ], + "spec": [ + 2441 + ], + "status": [ + 87 + ], + "status_history": [ + 2441 + ], + "user": [ + 4610 + ], + "user_steam_id": [ + 314 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs_constraint": {}, + "clip_render_jobs_delete_at_path_input": { + "spec": [ + 85 + ], + "status_history": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs_delete_elem_input": { + "spec": [ + 41 + ], + "status_history": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs_delete_key_input": { + "spec": [ + 85 + ], + "status_history": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs_inc_input": { + "progress": [ + 3646 + ], + "sort_index": [ + 41 + ], + "user_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs_insert_input": { + "clip": [ + 2971 + ], + "clip_id": [ + 6672 + ], + "created_at": [ + 5243 + ], + "error_message": [ + 85 + ], + "game_server_node": [ + 2338 + ], + "game_server_node_id": [ + 85 + ], + "id": [ + 6672 + ], + "k8s_job_name": [ + 85 + ], + "last_status_at": [ + 5243 + ], + "match_map": [ + 3266 + ], + "match_map_demo": [ + 3152 + ], + "match_map_demo_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "paused": [ + 6 + ], + "progress": [ + 3646 + ], + "session_token": [ + 85 + ], + "sort_index": [ + 41 + ], + "spec": [ + 2439 + ], + "status": [ + 85 + ], + "status_history": [ + 2439 + ], + "user": [ + 4617 + ], + "user_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs_max_fields": { + "clip_id": [ + 6672 + ], + "created_at": [ + 5243 + ], + "error_message": [ + 85 + ], + "game_server_node_id": [ + 85 + ], + "id": [ + 6672 + ], + "k8s_job_name": [ + 85 + ], + "last_status_at": [ + 5243 + ], + "match_map_demo_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "progress": [ + 3646 + ], + "session_token": [ + 85 + ], + "sort_index": [ + 41 + ], + "status": [ + 85 + ], + "user_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs_max_order_by": { + "clip_id": [ + 3648 + ], + "created_at": [ + 3648 + ], + "error_message": [ + 3648 + ], + "game_server_node_id": [ + 3648 + ], + "id": [ + 3648 + ], + "k8s_job_name": [ + 3648 + ], + "last_status_at": [ + 3648 + ], + "match_map_demo_id": [ + 3648 + ], + "match_map_id": [ + 3648 + ], + "progress": [ + 3648 + ], + "session_token": [ + 3648 + ], + "sort_index": [ + 3648 + ], + "status": [ + 3648 + ], + "user_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs_min_fields": { + "clip_id": [ + 6672 + ], + "created_at": [ + 5243 + ], + "error_message": [ + 85 + ], + "game_server_node_id": [ + 85 + ], + "id": [ + 6672 + ], + "k8s_job_name": [ + 85 + ], + "last_status_at": [ + 5243 + ], + "match_map_demo_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "progress": [ + 3646 + ], + "session_token": [ + 85 + ], + "sort_index": [ + 41 + ], + "status": [ + 85 + ], + "user_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs_min_order_by": { + "clip_id": [ + 3648 + ], + "created_at": [ + 3648 + ], + "error_message": [ + 3648 + ], + "game_server_node_id": [ + 3648 + ], + "id": [ + 3648 + ], + "k8s_job_name": [ + 3648 + ], + "last_status_at": [ + 3648 + ], + "match_map_demo_id": [ + 3648 + ], + "match_map_id": [ + 3648 + ], + "progress": [ + 3648 + ], + "session_token": [ + 3648 + ], + "sort_index": [ + 3648 + ], + "status": [ + 3648 + ], + "user_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 344 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs_on_conflict": { + "constraint": [ + 357 + ], + "update_columns": [ + 386 + ], + "where": [ + 356 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs_order_by": { + "clip": [ + 2973 + ], + "clip_id": [ + 3648 + ], + "created_at": [ + 3648 + ], + "error_message": [ + 3648 + ], + "game_server_node": [ + 2340 + ], + "game_server_node_id": [ + 3648 + ], + "id": [ + 3648 + ], + "k8s_job_name": [ + 3648 + ], + "last_status_at": [ + 3648 + ], + "match_map": [ + 3268 + ], + "match_map_demo": [ + 3154 + ], + "match_map_demo_id": [ + 3648 + ], + "match_map_id": [ + 3648 + ], + "paused": [ + 3648 + ], + "progress": [ + 3648 + ], + "session_token": [ + 3648 + ], + "sort_index": [ + 3648 + ], + "spec": [ + 3648 + ], + "status": [ + 3648 + ], + "status_history": [ + 3648 + ], + "user": [ + 4619 + ], + "user_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs_prepend_input": { + "spec": [ + 2439 + ], + "status_history": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs_select_column": {}, + "clip_render_jobs_select_column_clip_render_jobs_aggregate_bool_exp_bool_and_arguments_columns": {}, + "clip_render_jobs_select_column_clip_render_jobs_aggregate_bool_exp_bool_or_arguments_columns": {}, + "clip_render_jobs_set_input": { + "clip_id": [ + 6672 + ], + "created_at": [ + 5243 + ], + "error_message": [ + 85 + ], + "game_server_node_id": [ + 85 + ], + "id": [ + 6672 + ], + "k8s_job_name": [ + 85 + ], + "last_status_at": [ + 5243 + ], + "match_map_demo_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "paused": [ + 6 + ], + "progress": [ + 3646 + ], + "session_token": [ + 85 + ], + "sort_index": [ + 41 + ], + "spec": [ + 2439 + ], + "status": [ + 85 + ], + "status_history": [ + 2439 + ], + "user_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs_stddev_fields": { + "progress": [ + 32 + ], + "sort_index": [ + 32 + ], + "user_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs_stddev_order_by": { + "progress": [ + 3648 + ], + "sort_index": [ + 3648 + ], + "user_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs_stddev_pop_fields": { + "progress": [ + 32 + ], + "sort_index": [ + 32 + ], + "user_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs_stddev_pop_order_by": { + "progress": [ + 3648 + ], + "sort_index": [ + 3648 + ], + "user_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs_stddev_samp_fields": { + "progress": [ + 32 + ], + "sort_index": [ + 32 + ], + "user_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs_stddev_samp_order_by": { + "progress": [ + 3648 + ], + "sort_index": [ + 3648 + ], + "user_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs_stream_cursor_input": { + "initial_value": [ + 383 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs_stream_cursor_value_input": { + "clip_id": [ + 6672 + ], + "created_at": [ + 5243 + ], + "error_message": [ + 85 + ], + "game_server_node_id": [ + 85 + ], + "id": [ + 6672 + ], + "k8s_job_name": [ + 85 + ], + "last_status_at": [ + 5243 + ], + "match_map_demo_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "paused": [ + 6 + ], + "progress": [ + 3646 + ], + "session_token": [ + 85 + ], + "sort_index": [ + 41 + ], + "spec": [ + 2439 + ], + "status": [ + 85 + ], + "status_history": [ + 2439 + ], + "user_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs_sum_fields": { + "progress": [ + 3646 + ], + "sort_index": [ + 41 + ], + "user_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs_sum_order_by": { + "progress": [ + 3648 + ], + "sort_index": [ + 3648 + ], + "user_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs_update_column": {}, + "clip_render_jobs_updates": { + "_append": [ + 352 + ], + "_delete_at_path": [ + 358 + ], + "_delete_elem": [ + 359 + ], + "_delete_key": [ + 360 + ], + "_inc": [ + 361 + ], + "_prepend": [ + 371 + ], + "_set": [ + 375 + ], + "where": [ + 356 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs_var_pop_fields": { + "progress": [ + 32 + ], + "sort_index": [ + 32 + ], + "user_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs_var_pop_order_by": { + "progress": [ + 3648 + ], + "sort_index": [ + 3648 + ], + "user_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs_var_samp_fields": { + "progress": [ + 32 + ], + "sort_index": [ + 32 + ], + "user_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs_var_samp_order_by": { + "progress": [ + 3648 + ], + "sort_index": [ + 3648 + ], + "user_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs_variance_fields": { + "progress": [ + 32 + ], + "sort_index": [ + 32 + ], + "user_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "clip_render_jobs_variance_order_by": { + "progress": [ + 3648 + ], + "sort_index": [ + 3648 + ], + "user_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "clone_league_season_args": { + "_league_season_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "cursor_ordering": {}, + "custom_pages": { + "created_at": [ + 5243 + ], + "deployments": [ + 2439, + { + "path": [ + 85 + ] + } + ], + "enabled": [ + 6 + ], + "exposed_module": [ + 85 + ], + "icon": [ + 85 + ], + "id": [ + 6672 + ], + "is_default": [ + 6 + ], + "manifest_url": [ + 85 + ], + "nav_group": [ + 85 + ], + "nav_order": [ + 41 + ], + "plugin_slug": [ + 85 + ], + "profile_tab_label": [ + 85 + ], + "remote_entry_url": [ + 85 + ], + "remote_scope": [ + 85 + ], + "required_role": [ + 1286 + ], + "slug": [ + 85 + ], + "title": [ + 85 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "custom_pages_aggregate": { + "aggregate": [ + 398 + ], + "nodes": [ + 396 + ], + "__typename": [ + 85 + ] + }, + "custom_pages_aggregate_fields": { + "avg": [ + 400 + ], + "count": [ + 41, + { + "columns": [ + 415, + "[custom_pages_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 408 + ], + "min": [ + 409 + ], + "stddev": [ + 417 + ], + "stddev_pop": [ + 418 + ], + "stddev_samp": [ + 419 + ], + "sum": [ + 422 + ], + "var_pop": [ + 425 + ], + "var_samp": [ + 426 + ], + "variance": [ + 427 + ], + "__typename": [ + 85 + ] + }, + "custom_pages_append_input": { + "deployments": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "custom_pages_avg_fields": { + "nav_order": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "custom_pages_bool_exp": { + "_and": [ + 401 + ], + "_not": [ + 401 + ], + "_or": [ + 401 + ], + "created_at": [ + 5244 + ], + "deployments": [ + 2441 + ], + "enabled": [ + 7 + ], + "exposed_module": [ + 87 + ], + "icon": [ + 87 + ], + "id": [ + 6674 + ], + "is_default": [ + 7 + ], + "manifest_url": [ + 87 + ], + "nav_group": [ + 87 + ], + "nav_order": [ + 42 + ], + "plugin_slug": [ + 87 + ], + "profile_tab_label": [ + 87 + ], + "remote_entry_url": [ + 87 + ], + "remote_scope": [ + 87 + ], + "required_role": [ + 1287 + ], + "slug": [ + 87 + ], + "title": [ + 87 + ], + "updated_at": [ + 5244 + ], + "__typename": [ + 85 + ] + }, + "custom_pages_constraint": {}, + "custom_pages_delete_at_path_input": { + "deployments": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "custom_pages_delete_elem_input": { + "deployments": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "custom_pages_delete_key_input": { + "deployments": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "custom_pages_inc_input": { + "nav_order": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "custom_pages_insert_input": { + "created_at": [ + 5243 + ], + "deployments": [ + 2439 + ], + "enabled": [ + 6 + ], + "exposed_module": [ + 85 + ], + "icon": [ + 85 + ], + "id": [ + 6672 + ], + "is_default": [ + 6 + ], + "manifest_url": [ + 85 + ], + "nav_group": [ + 85 + ], + "nav_order": [ + 41 + ], + "plugin_slug": [ + 85 + ], + "profile_tab_label": [ + 85 + ], + "remote_entry_url": [ + 85 + ], + "remote_scope": [ + 85 + ], + "required_role": [ + 1286 + ], + "slug": [ + 85 + ], + "title": [ + 85 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "custom_pages_max_fields": { + "created_at": [ + 5243 + ], + "exposed_module": [ + 85 + ], + "icon": [ + 85 + ], + "id": [ + 6672 + ], + "manifest_url": [ + 85 + ], + "nav_group": [ + 85 + ], + "nav_order": [ + 41 + ], + "plugin_slug": [ + 85 + ], + "profile_tab_label": [ + 85 + ], + "remote_entry_url": [ + 85 + ], + "remote_scope": [ + 85 + ], + "slug": [ + 85 + ], + "title": [ + 85 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "custom_pages_min_fields": { + "created_at": [ + 5243 + ], + "exposed_module": [ + 85 + ], + "icon": [ + 85 + ], + "id": [ + 6672 + ], + "manifest_url": [ + 85 + ], + "nav_group": [ + 85 + ], + "nav_order": [ + 41 + ], + "plugin_slug": [ + 85 + ], + "profile_tab_label": [ + 85 + ], + "remote_entry_url": [ + 85 + ], + "remote_scope": [ + 85 + ], + "slug": [ + 85 + ], + "title": [ + 85 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "custom_pages_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 396 + ], + "__typename": [ + 85 + ] + }, + "custom_pages_on_conflict": { + "constraint": [ + 402 + ], + "update_columns": [ + 423 + ], + "where": [ + 401 + ], + "__typename": [ + 85 + ] + }, + "custom_pages_order_by": { + "created_at": [ + 3648 + ], + "deployments": [ + 3648 + ], + "enabled": [ + 3648 + ], + "exposed_module": [ + 3648 + ], + "icon": [ + 3648 + ], + "id": [ + 3648 + ], + "is_default": [ + 3648 + ], + "manifest_url": [ + 3648 + ], + "nav_group": [ + 3648 + ], + "nav_order": [ + 3648 + ], + "plugin_slug": [ + 3648 + ], + "profile_tab_label": [ + 3648 + ], + "remote_entry_url": [ + 3648 + ], + "remote_scope": [ + 3648 + ], + "required_role": [ + 3648 + ], + "slug": [ + 3648 + ], + "title": [ + 3648 + ], + "updated_at": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "custom_pages_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "custom_pages_prepend_input": { + "deployments": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "custom_pages_select_column": {}, + "custom_pages_set_input": { + "created_at": [ + 5243 + ], + "deployments": [ + 2439 + ], + "enabled": [ + 6 + ], + "exposed_module": [ + 85 + ], + "icon": [ + 85 + ], + "id": [ + 6672 + ], + "is_default": [ + 6 + ], + "manifest_url": [ + 85 + ], + "nav_group": [ + 85 + ], + "nav_order": [ + 41 + ], + "plugin_slug": [ + 85 + ], + "profile_tab_label": [ + 85 + ], + "remote_entry_url": [ + 85 + ], + "remote_scope": [ + 85 + ], + "required_role": [ + 1286 + ], + "slug": [ + 85 + ], + "title": [ + 85 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "custom_pages_stddev_fields": { + "nav_order": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "custom_pages_stddev_pop_fields": { + "nav_order": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "custom_pages_stddev_samp_fields": { + "nav_order": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "custom_pages_stream_cursor_input": { + "initial_value": [ + 421 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "custom_pages_stream_cursor_value_input": { + "created_at": [ + 5243 + ], + "deployments": [ + 2439 + ], + "enabled": [ + 6 + ], + "exposed_module": [ + 85 + ], + "icon": [ + 85 + ], + "id": [ + 6672 + ], + "is_default": [ + 6 + ], + "manifest_url": [ + 85 + ], + "nav_group": [ + 85 + ], + "nav_order": [ + 41 + ], + "plugin_slug": [ + 85 + ], + "profile_tab_label": [ + 85 + ], + "remote_entry_url": [ + 85 + ], + "remote_scope": [ + 85 + ], + "required_role": [ + 1286 + ], + "slug": [ + 85 + ], + "title": [ + 85 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "custom_pages_sum_fields": { + "nav_order": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "custom_pages_update_column": {}, + "custom_pages_updates": { + "_append": [ + 399 + ], + "_delete_at_path": [ + 403 + ], + "_delete_elem": [ + 404 + ], + "_delete_key": [ + 405 + ], + "_inc": [ + 406 + ], + "_prepend": [ + 414 + ], + "_set": [ + 416 + ], + "where": [ + 401 + ], + "__typename": [ + 85 + ] + }, + "custom_pages_var_pop_fields": { + "nav_order": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "custom_pages_var_samp_fields": { + "nav_order": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "custom_pages_variance_fields": { + "nav_order": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "db_backups": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "name": [ + 85 + ], + "size": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "db_backups_aggregate": { + "aggregate": [ + 430 + ], + "nodes": [ + 428 + ], + "__typename": [ + 85 + ] + }, + "db_backups_aggregate_fields": { + "avg": [ + 431 + ], + "count": [ + 41, + { + "columns": [ + 442, + "[db_backups_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 436 + ], + "min": [ + 437 + ], + "stddev": [ + 444 + ], + "stddev_pop": [ + 445 + ], + "stddev_samp": [ + 446 + ], + "sum": [ + 449 + ], + "var_pop": [ + 452 + ], + "var_samp": [ + 453 + ], + "variance": [ + 454 + ], + "__typename": [ + 85 + ] + }, + "db_backups_avg_fields": { + "size": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "db_backups_bool_exp": { + "_and": [ + 432 + ], + "_not": [ + 432 + ], + "_or": [ + 432 + ], + "created_at": [ + 5244 + ], + "id": [ + 6674 + ], + "name": [ + 87 + ], + "size": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "db_backups_constraint": {}, + "db_backups_inc_input": { + "size": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "db_backups_insert_input": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "name": [ + 85 + ], + "size": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "db_backups_max_fields": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "name": [ + 85 + ], + "size": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "db_backups_min_fields": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "name": [ + 85 + ], + "size": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "db_backups_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 428 + ], + "__typename": [ + 85 + ] + }, + "db_backups_on_conflict": { + "constraint": [ + 433 + ], + "update_columns": [ + 450 + ], + "where": [ + 432 + ], + "__typename": [ + 85 + ] + }, + "db_backups_order_by": { + "created_at": [ + 3648 + ], + "id": [ + 3648 + ], + "name": [ + 3648 + ], + "size": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "db_backups_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "db_backups_select_column": {}, + "db_backups_set_input": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "name": [ + 85 + ], + "size": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "db_backups_stddev_fields": { + "size": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "db_backups_stddev_pop_fields": { + "size": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "db_backups_stddev_samp_fields": { + "size": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "db_backups_stream_cursor_input": { + "initial_value": [ + 448 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "db_backups_stream_cursor_value_input": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "name": [ + 85 + ], + "size": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "db_backups_sum_fields": { + "size": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "db_backups_update_column": {}, + "db_backups_updates": { + "_inc": [ + 434 + ], + "_set": [ + 443 + ], + "where": [ + 432 + ], + "__typename": [ + 85 + ] + }, + "db_backups_var_pop_fields": { + "size": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "db_backups_var_samp_fields": { + "size": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "db_backups_variance_fields": { + "size": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "direct_conversations": { + "is_open": [ + 6 + ], + "last_message_at": [ + 5243 + ], + "position": [ + 41 + ], + "room_id": [ + 85 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "direct_conversations_aggregate": { + "aggregate": [ + 457 + ], + "nodes": [ + 455 + ], + "__typename": [ + 85 + ] + }, + "direct_conversations_aggregate_fields": { + "avg": [ + 458 + ], + "count": [ + 41, + { + "columns": [ + 469, + "[direct_conversations_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 463 + ], + "min": [ + 464 + ], + "stddev": [ + 471 + ], + "stddev_pop": [ + 472 + ], + "stddev_samp": [ + 473 + ], + "sum": [ + 476 + ], + "var_pop": [ + 479 + ], + "var_samp": [ + 480 + ], + "variance": [ + 481 + ], + "__typename": [ + 85 + ] + }, + "direct_conversations_avg_fields": { + "position": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "direct_conversations_bool_exp": { + "_and": [ + 459 + ], + "_not": [ + 459 + ], + "_or": [ + 459 + ], + "is_open": [ + 7 + ], + "last_message_at": [ + 5244 + ], + "position": [ + 42 + ], + "room_id": [ + 87 + ], + "steam_id": [ + 314 + ], + "__typename": [ + 85 + ] + }, + "direct_conversations_constraint": {}, + "direct_conversations_inc_input": { + "position": [ + 41 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "direct_conversations_insert_input": { + "is_open": [ + 6 + ], + "last_message_at": [ + 5243 + ], + "position": [ + 41 + ], + "room_id": [ + 85 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "direct_conversations_max_fields": { + "last_message_at": [ + 5243 + ], + "position": [ + 41 + ], + "room_id": [ + 85 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "direct_conversations_min_fields": { + "last_message_at": [ + 5243 + ], + "position": [ + 41 + ], + "room_id": [ + 85 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "direct_conversations_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 455 + ], + "__typename": [ + 85 + ] + }, + "direct_conversations_on_conflict": { + "constraint": [ + 460 + ], + "update_columns": [ + 477 + ], + "where": [ + 459 + ], + "__typename": [ + 85 + ] + }, + "direct_conversations_order_by": { + "is_open": [ + 3648 + ], + "last_message_at": [ + 3648 + ], + "position": [ + 3648 + ], + "room_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "direct_conversations_pk_columns_input": { + "room_id": [ + 85 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "direct_conversations_select_column": {}, + "direct_conversations_set_input": { + "is_open": [ + 6 + ], + "last_message_at": [ + 5243 + ], + "position": [ + 41 + ], + "room_id": [ + 85 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "direct_conversations_stddev_fields": { + "position": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "direct_conversations_stddev_pop_fields": { + "position": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "direct_conversations_stddev_samp_fields": { + "position": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "direct_conversations_stream_cursor_input": { + "initial_value": [ + 475 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "direct_conversations_stream_cursor_value_input": { + "is_open": [ + 6 + ], + "last_message_at": [ + 5243 + ], + "position": [ + 41 + ], + "room_id": [ + 85 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "direct_conversations_sum_fields": { + "position": [ + 41 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "direct_conversations_update_column": {}, + "direct_conversations_updates": { + "_inc": [ + 461 + ], + "_set": [ + 470 + ], + "where": [ + 459 + ], + "__typename": [ + 85 + ] + }, + "direct_conversations_var_pop_fields": { + "position": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "direct_conversations_var_samp_fields": { + "position": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "direct_conversations_variance_fields": { + "position": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "direct_messages": { + "created_at": [ + 5243 + ], + "from_steam_id": [ + 312 + ], + "id": [ + 6672 + ], + "message": [ + 85 + ], + "room_id": [ + 85 + ], + "seq": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "direct_messages_aggregate": { + "aggregate": [ + 484 + ], + "nodes": [ + 482 + ], + "__typename": [ + 85 + ] + }, + "direct_messages_aggregate_fields": { + "avg": [ + 485 + ], + "count": [ + 41, + { + "columns": [ + 496, + "[direct_messages_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 490 + ], + "min": [ + 491 + ], + "stddev": [ + 498 + ], + "stddev_pop": [ + 499 + ], + "stddev_samp": [ + 500 + ], + "sum": [ + 503 + ], + "var_pop": [ + 506 + ], + "var_samp": [ + 507 + ], + "variance": [ + 508 + ], + "__typename": [ + 85 + ] + }, + "direct_messages_avg_fields": { + "from_steam_id": [ + 32 + ], + "seq": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "direct_messages_bool_exp": { + "_and": [ + 486 + ], + "_not": [ + 486 + ], + "_or": [ + 486 + ], + "created_at": [ + 5244 + ], + "from_steam_id": [ + 314 + ], + "id": [ + 6674 + ], + "message": [ + 87 + ], + "room_id": [ + 87 + ], + "seq": [ + 314 + ], + "__typename": [ + 85 + ] + }, + "direct_messages_constraint": {}, + "direct_messages_inc_input": { + "from_steam_id": [ + 312 + ], + "seq": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "direct_messages_insert_input": { + "created_at": [ + 5243 + ], + "from_steam_id": [ + 312 + ], + "id": [ + 6672 + ], + "message": [ + 85 + ], + "room_id": [ + 85 + ], + "seq": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "direct_messages_max_fields": { + "created_at": [ + 5243 + ], + "from_steam_id": [ + 312 + ], + "id": [ + 6672 + ], + "message": [ + 85 + ], + "room_id": [ + 85 + ], + "seq": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "direct_messages_min_fields": { + "created_at": [ + 5243 + ], + "from_steam_id": [ + 312 + ], + "id": [ + 6672 + ], + "message": [ + 85 + ], + "room_id": [ + 85 + ], + "seq": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "direct_messages_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 482 + ], + "__typename": [ + 85 + ] + }, + "direct_messages_on_conflict": { + "constraint": [ + 487 + ], + "update_columns": [ + 504 + ], + "where": [ + 486 + ], + "__typename": [ + 85 + ] + }, + "direct_messages_order_by": { + "created_at": [ + 3648 + ], + "from_steam_id": [ + 3648 + ], + "id": [ + 3648 + ], + "message": [ + 3648 + ], + "room_id": [ + 3648 + ], + "seq": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "direct_messages_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "direct_messages_select_column": {}, + "direct_messages_set_input": { + "created_at": [ + 5243 + ], + "from_steam_id": [ + 312 + ], + "id": [ + 6672 + ], + "message": [ + 85 + ], + "room_id": [ + 85 + ], + "seq": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "direct_messages_stddev_fields": { + "from_steam_id": [ + 32 + ], + "seq": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "direct_messages_stddev_pop_fields": { + "from_steam_id": [ + 32 + ], + "seq": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "direct_messages_stddev_samp_fields": { + "from_steam_id": [ + 32 + ], + "seq": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "direct_messages_stream_cursor_input": { + "initial_value": [ + 502 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "direct_messages_stream_cursor_value_input": { + "created_at": [ + 5243 + ], + "from_steam_id": [ + 312 + ], + "id": [ + 6672 + ], + "message": [ + 85 + ], + "room_id": [ + 85 + ], + "seq": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "direct_messages_sum_fields": { + "from_steam_id": [ + 312 + ], + "seq": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "direct_messages_update_column": {}, + "direct_messages_updates": { + "_inc": [ + 488 + ], + "_set": [ + 497 + ], + "where": [ + 486 + ], + "__typename": [ + 85 + ] + }, + "direct_messages_var_pop_fields": { + "from_steam_id": [ + 32 + ], + "seq": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "direct_messages_var_samp_fields": { + "from_steam_id": [ + 32 + ], + "seq": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "direct_messages_variance_fields": { + "from_steam_id": [ + 32 + ], + "seq": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "draft_game_picks": { + "auto_picked": [ + 6 + ], + "captain": [ + 4606 + ], + "captain_steam_id": [ + 312 + ], + "created_at": [ + 5243 + ], + "draft_game": [ + 599 + ], + "draft_game_id": [ + 6672 + ], + "id": [ + 6672 + ], + "is_organizer": [ + 6 + ], + "lineup": [ + 41 + ], + "picked": [ + 4606 + ], + "picked_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "draft_game_picks_aggregate": { + "aggregate": [ + 515 + ], + "nodes": [ + 509 + ], + "__typename": [ + 85 + ] + }, + "draft_game_picks_aggregate_bool_exp": { + "bool_and": [ + 512 + ], + "bool_or": [ + 513 + ], + "count": [ + 514 + ], + "__typename": [ + 85 + ] + }, + "draft_game_picks_aggregate_bool_exp_bool_and": { + "arguments": [ + 533 + ], + "distinct": [ + 6 + ], + "filter": [ + 520 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "draft_game_picks_aggregate_bool_exp_bool_or": { + "arguments": [ + 534 + ], + "distinct": [ + 6 + ], + "filter": [ + 520 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "draft_game_picks_aggregate_bool_exp_count": { + "arguments": [ + 532 + ], + "distinct": [ + 6 + ], + "filter": [ + 520 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "draft_game_picks_aggregate_fields": { + "avg": [ + 518 + ], + "count": [ + 41, + { + "columns": [ + 532, + "[draft_game_picks_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 524 + ], + "min": [ + 526 + ], + "stddev": [ + 536 + ], + "stddev_pop": [ + 538 + ], + "stddev_samp": [ + 540 + ], + "sum": [ + 544 + ], + "var_pop": [ + 548 + ], + "var_samp": [ + 550 + ], + "variance": [ + 552 + ], + "__typename": [ + 85 + ] + }, + "draft_game_picks_aggregate_order_by": { + "avg": [ + 519 + ], + "count": [ + 3648 + ], + "max": [ + 525 + ], + "min": [ + 527 + ], + "stddev": [ + 537 + ], + "stddev_pop": [ + 539 + ], + "stddev_samp": [ + 541 + ], + "sum": [ + 545 + ], + "var_pop": [ + 549 + ], + "var_samp": [ + 551 + ], + "variance": [ + 553 + ], + "__typename": [ + 85 + ] + }, + "draft_game_picks_arr_rel_insert_input": { + "data": [ + 523 + ], + "on_conflict": [ + 529 + ], + "__typename": [ + 85 + ] + }, + "draft_game_picks_avg_fields": { + "captain_steam_id": [ + 32 + ], + "lineup": [ + 32 + ], + "picked_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "draft_game_picks_avg_order_by": { + "captain_steam_id": [ + 3648 + ], + "lineup": [ + 3648 + ], + "picked_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "draft_game_picks_bool_exp": { + "_and": [ + 520 + ], + "_not": [ + 520 + ], + "_or": [ + 520 + ], + "auto_picked": [ + 7 + ], + "captain": [ + 4610 + ], + "captain_steam_id": [ + 314 + ], + "created_at": [ + 5244 + ], + "draft_game": [ + 610 + ], + "draft_game_id": [ + 6674 + ], + "id": [ + 6674 + ], + "is_organizer": [ + 7 + ], + "lineup": [ + 42 + ], + "picked": [ + 4610 + ], + "picked_steam_id": [ + 314 + ], + "__typename": [ + 85 + ] + }, + "draft_game_picks_constraint": {}, + "draft_game_picks_inc_input": { + "captain_steam_id": [ + 312 + ], + "lineup": [ + 41 + ], + "picked_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "draft_game_picks_insert_input": { + "auto_picked": [ + 6 + ], + "captain": [ + 4617 + ], + "captain_steam_id": [ + 312 + ], + "created_at": [ + 5243 + ], + "draft_game": [ + 619 + ], + "draft_game_id": [ + 6672 + ], + "id": [ + 6672 + ], + "lineup": [ + 41 + ], + "picked": [ + 4617 + ], + "picked_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "draft_game_picks_max_fields": { + "captain_steam_id": [ + 312 + ], + "created_at": [ + 5243 + ], + "draft_game_id": [ + 6672 + ], + "id": [ + 6672 + ], + "lineup": [ + 41 + ], + "picked_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "draft_game_picks_max_order_by": { + "captain_steam_id": [ + 3648 + ], + "created_at": [ + 3648 + ], + "draft_game_id": [ + 3648 + ], + "id": [ + 3648 + ], + "lineup": [ + 3648 + ], + "picked_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "draft_game_picks_min_fields": { + "captain_steam_id": [ + 312 + ], + "created_at": [ + 5243 + ], + "draft_game_id": [ + 6672 + ], + "id": [ + 6672 + ], + "lineup": [ + 41 + ], + "picked_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "draft_game_picks_min_order_by": { + "captain_steam_id": [ + 3648 + ], + "created_at": [ + 3648 + ], + "draft_game_id": [ + 3648 + ], + "id": [ + 3648 + ], + "lineup": [ + 3648 + ], + "picked_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "draft_game_picks_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 509 + ], + "__typename": [ + 85 + ] + }, + "draft_game_picks_on_conflict": { + "constraint": [ + 521 + ], + "update_columns": [ + 546 + ], + "where": [ + 520 + ], + "__typename": [ + 85 + ] + }, + "draft_game_picks_order_by": { + "auto_picked": [ + 3648 + ], + "captain": [ + 4619 + ], + "captain_steam_id": [ + 3648 + ], + "created_at": [ + 3648 + ], + "draft_game": [ + 621 + ], + "draft_game_id": [ + 3648 + ], + "id": [ + 3648 + ], + "is_organizer": [ + 3648 + ], + "lineup": [ + 3648 + ], + "picked": [ + 4619 + ], + "picked_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "draft_game_picks_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "draft_game_picks_select_column": {}, + "draft_game_picks_select_column_draft_game_picks_aggregate_bool_exp_bool_and_arguments_columns": {}, + "draft_game_picks_select_column_draft_game_picks_aggregate_bool_exp_bool_or_arguments_columns": {}, + "draft_game_picks_set_input": { + "auto_picked": [ + 6 + ], + "captain_steam_id": [ + 312 + ], + "created_at": [ + 5243 + ], + "draft_game_id": [ + 6672 + ], + "id": [ + 6672 + ], + "lineup": [ + 41 + ], + "picked_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "draft_game_picks_stddev_fields": { + "captain_steam_id": [ + 32 + ], + "lineup": [ + 32 + ], + "picked_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "draft_game_picks_stddev_order_by": { + "captain_steam_id": [ + 3648 + ], + "lineup": [ + 3648 + ], + "picked_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "draft_game_picks_stddev_pop_fields": { + "captain_steam_id": [ + 32 + ], + "lineup": [ + 32 + ], + "picked_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "draft_game_picks_stddev_pop_order_by": { + "captain_steam_id": [ + 3648 + ], + "lineup": [ + 3648 + ], + "picked_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "draft_game_picks_stddev_samp_fields": { + "captain_steam_id": [ + 32 + ], + "lineup": [ + 32 + ], + "picked_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "draft_game_picks_stddev_samp_order_by": { + "captain_steam_id": [ + 3648 + ], + "lineup": [ + 3648 + ], + "picked_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "draft_game_picks_stream_cursor_input": { + "initial_value": [ + 543 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "draft_game_picks_stream_cursor_value_input": { + "auto_picked": [ + 6 + ], + "captain_steam_id": [ + 312 + ], + "created_at": [ + 5243 + ], + "draft_game_id": [ + 6672 + ], + "id": [ + 6672 + ], + "lineup": [ + 41 + ], + "picked_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "draft_game_picks_sum_fields": { + "captain_steam_id": [ + 312 + ], + "lineup": [ + 41 + ], + "picked_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "draft_game_picks_sum_order_by": { + "captain_steam_id": [ + 3648 + ], + "lineup": [ + 3648 + ], + "picked_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "draft_game_picks_update_column": {}, + "draft_game_picks_updates": { + "_inc": [ + 522 + ], + "_set": [ + 535 + ], + "where": [ + 520 + ], + "__typename": [ + 85 + ] + }, + "draft_game_picks_var_pop_fields": { + "captain_steam_id": [ + 32 + ], + "lineup": [ + 32 + ], + "picked_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "draft_game_picks_var_pop_order_by": { + "captain_steam_id": [ + 3648 + ], + "lineup": [ + 3648 + ], + "picked_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "draft_game_picks_var_samp_fields": { + "captain_steam_id": [ + 32 + ], + "lineup": [ + 32 + ], + "picked_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "draft_game_picks_var_samp_order_by": { + "captain_steam_id": [ + 3648 + ], + "lineup": [ + 3648 + ], + "picked_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "draft_game_picks_variance_fields": { + "captain_steam_id": [ + 32 + ], + "lineup": [ + 32 + ], + "picked_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "draft_game_picks_variance_order_by": { + "captain_steam_id": [ + 3648 + ], + "lineup": [ + 3648 + ], + "picked_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "draft_game_players": { + "draft_game": [ + 599 + ], + "draft_game_id": [ + 6672 + ], + "e_draft_game_player_status": [ + 768 + ], + "elo_snapshot": [ + 41 + ], + "is_captain": [ + 6 + ], + "is_organizer": [ + 6 + ], + "joined_at": [ + 5243 + ], + "lineup": [ + 41 + ], + "pick_order": [ + 41 + ], + "player": [ + 4606 + ], + "status": [ + 773 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "draft_game_players_aggregate": { + "aggregate": [ + 560 + ], + "nodes": [ + 554 + ], + "__typename": [ + 85 + ] + }, + "draft_game_players_aggregate_bool_exp": { + "bool_and": [ + 557 + ], + "bool_or": [ + 558 + ], + "count": [ + 559 + ], + "__typename": [ + 85 + ] + }, + "draft_game_players_aggregate_bool_exp_bool_and": { + "arguments": [ + 578 + ], + "distinct": [ + 6 + ], + "filter": [ + 565 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "draft_game_players_aggregate_bool_exp_bool_or": { + "arguments": [ + 579 + ], + "distinct": [ + 6 + ], + "filter": [ + 565 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "draft_game_players_aggregate_bool_exp_count": { + "arguments": [ + 577 + ], + "distinct": [ + 6 + ], + "filter": [ + 565 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "draft_game_players_aggregate_fields": { + "avg": [ + 563 + ], + "count": [ + 41, + { + "columns": [ + 577, + "[draft_game_players_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 569 + ], + "min": [ + 571 + ], + "stddev": [ + 581 + ], + "stddev_pop": [ + 583 + ], + "stddev_samp": [ + 585 + ], + "sum": [ + 589 + ], + "var_pop": [ + 593 + ], + "var_samp": [ + 595 + ], + "variance": [ + 597 + ], + "__typename": [ + 85 + ] + }, + "draft_game_players_aggregate_order_by": { + "avg": [ + 564 + ], + "count": [ + 3648 + ], + "max": [ + 570 + ], + "min": [ + 572 + ], + "stddev": [ + 582 + ], + "stddev_pop": [ + 584 + ], + "stddev_samp": [ + 586 + ], + "sum": [ + 590 + ], + "var_pop": [ + 594 + ], + "var_samp": [ + 596 + ], + "variance": [ + 598 + ], + "__typename": [ + 85 + ] + }, + "draft_game_players_arr_rel_insert_input": { + "data": [ + 568 + ], + "on_conflict": [ + 574 + ], + "__typename": [ + 85 + ] + }, + "draft_game_players_avg_fields": { + "elo_snapshot": [ + 32 + ], + "lineup": [ + 32 + ], + "pick_order": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "draft_game_players_avg_order_by": { + "elo_snapshot": [ + 3648 + ], + "lineup": [ + 3648 + ], + "pick_order": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "draft_game_players_bool_exp": { + "_and": [ + 565 + ], + "_not": [ + 565 + ], + "_or": [ + 565 + ], + "draft_game": [ + 610 + ], + "draft_game_id": [ + 6674 + ], + "e_draft_game_player_status": [ + 771 + ], + "elo_snapshot": [ + 42 + ], + "is_captain": [ + 7 + ], + "is_organizer": [ + 7 + ], + "joined_at": [ + 5244 + ], + "lineup": [ + 42 + ], + "pick_order": [ + 42 + ], + "player": [ + 4610 + ], + "status": [ + 774 + ], + "steam_id": [ + 314 + ], + "__typename": [ + 85 + ] + }, + "draft_game_players_constraint": {}, + "draft_game_players_inc_input": { + "elo_snapshot": [ + 41 + ], + "lineup": [ + 41 + ], + "pick_order": [ + 41 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "draft_game_players_insert_input": { + "draft_game": [ + 619 + ], + "draft_game_id": [ + 6672 + ], + "e_draft_game_player_status": [ + 779 + ], + "elo_snapshot": [ + 41 + ], + "is_captain": [ + 6 + ], + "joined_at": [ + 5243 + ], + "lineup": [ + 41 + ], + "pick_order": [ + 41 + ], + "player": [ + 4617 + ], + "status": [ + 773 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "draft_game_players_max_fields": { + "draft_game_id": [ + 6672 + ], + "elo_snapshot": [ + 41 + ], + "joined_at": [ + 5243 + ], + "lineup": [ + 41 + ], + "pick_order": [ + 41 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "draft_game_players_max_order_by": { + "draft_game_id": [ + 3648 + ], + "elo_snapshot": [ + 3648 + ], + "joined_at": [ + 3648 + ], + "lineup": [ + 3648 + ], + "pick_order": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "draft_game_players_min_fields": { + "draft_game_id": [ + 6672 + ], + "elo_snapshot": [ + 41 + ], + "joined_at": [ + 5243 + ], + "lineup": [ + 41 + ], + "pick_order": [ + 41 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "draft_game_players_min_order_by": { + "draft_game_id": [ + 3648 + ], + "elo_snapshot": [ + 3648 + ], + "joined_at": [ + 3648 + ], + "lineup": [ + 3648 + ], + "pick_order": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "draft_game_players_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 554 + ], + "__typename": [ + 85 + ] + }, + "draft_game_players_on_conflict": { + "constraint": [ + 566 + ], + "update_columns": [ + 591 + ], + "where": [ + 565 + ], + "__typename": [ + 85 + ] + }, + "draft_game_players_order_by": { + "draft_game": [ + 621 + ], + "draft_game_id": [ + 3648 + ], + "e_draft_game_player_status": [ + 781 + ], + "elo_snapshot": [ + 3648 + ], + "is_captain": [ + 3648 + ], + "is_organizer": [ + 3648 + ], + "joined_at": [ + 3648 + ], + "lineup": [ + 3648 + ], + "pick_order": [ + 3648 + ], + "player": [ + 4619 + ], + "status": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "draft_game_players_pk_columns_input": { + "draft_game_id": [ + 6672 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "draft_game_players_select_column": {}, + "draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_and_arguments_columns": {}, + "draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_or_arguments_columns": {}, + "draft_game_players_set_input": { + "draft_game_id": [ + 6672 + ], + "elo_snapshot": [ + 41 + ], + "is_captain": [ + 6 + ], + "joined_at": [ + 5243 + ], + "lineup": [ + 41 + ], + "pick_order": [ + 41 + ], + "status": [ + 773 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "draft_game_players_stddev_fields": { + "elo_snapshot": [ + 32 + ], + "lineup": [ + 32 + ], + "pick_order": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "draft_game_players_stddev_order_by": { + "elo_snapshot": [ + 3648 + ], + "lineup": [ + 3648 + ], + "pick_order": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "draft_game_players_stddev_pop_fields": { + "elo_snapshot": [ + 32 + ], + "lineup": [ + 32 + ], + "pick_order": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "draft_game_players_stddev_pop_order_by": { + "elo_snapshot": [ + 3648 + ], + "lineup": [ + 3648 + ], + "pick_order": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "draft_game_players_stddev_samp_fields": { + "elo_snapshot": [ + 32 + ], + "lineup": [ + 32 + ], + "pick_order": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "draft_game_players_stddev_samp_order_by": { + "elo_snapshot": [ + 3648 + ], + "lineup": [ + 3648 + ], + "pick_order": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "draft_game_players_stream_cursor_input": { + "initial_value": [ + 588 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "draft_game_players_stream_cursor_value_input": { + "draft_game_id": [ + 6672 + ], + "elo_snapshot": [ + 41 + ], + "is_captain": [ + 6 + ], + "joined_at": [ + 5243 + ], + "lineup": [ + 41 + ], + "pick_order": [ + 41 + ], + "status": [ + 773 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "draft_game_players_sum_fields": { + "elo_snapshot": [ + 41 + ], + "lineup": [ + 41 + ], + "pick_order": [ + 41 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "draft_game_players_sum_order_by": { + "elo_snapshot": [ + 3648 + ], + "lineup": [ + 3648 + ], + "pick_order": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "draft_game_players_update_column": {}, + "draft_game_players_updates": { + "_inc": [ + 567 + ], + "_set": [ + 580 + ], + "where": [ + 565 + ], + "__typename": [ + 85 + ] + }, + "draft_game_players_var_pop_fields": { + "elo_snapshot": [ + 32 + ], + "lineup": [ + 32 + ], + "pick_order": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "draft_game_players_var_pop_order_by": { + "elo_snapshot": [ + 3648 + ], + "lineup": [ + 3648 + ], + "pick_order": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "draft_game_players_var_samp_fields": { + "elo_snapshot": [ + 32 + ], + "lineup": [ + 32 + ], + "pick_order": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "draft_game_players_var_samp_order_by": { + "elo_snapshot": [ + 3648 + ], + "lineup": [ + 3648 + ], + "pick_order": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "draft_game_players_variance_fields": { + "elo_snapshot": [ + 32 + ], + "lineup": [ + 32 + ], + "pick_order": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "draft_game_players_variance_order_by": { + "elo_snapshot": [ + 3648 + ], + "lineup": [ + 3648 + ], + "pick_order": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "draft_games": { + "access": [ + 1061 + ], + "capacity": [ + 41 + ], + "captain_selection": [ + 710 + ], + "created_at": [ + 5243 + ], + "current_pick_lineup": [ + 41 + ], + "draft_order": [ + 731 + ], + "e_draft_game_captain_selection": [ + 705 + ], + "e_draft_game_draft_order": [ + 726 + ], + "e_draft_game_mode": [ + 747 + ], + "e_draft_game_status": [ + 789 + ], + "e_lobby_access": [ + 1056 + ], + "expires_at": [ + 5243 + ], + "host": [ + 4606 + ], + "host_steam_id": [ + 312 + ], + "id": [ + 6672 + ], + "inner_squad": [ + 6 + ], + "invite_code": [ + 6672 + ], + "is_organizer": [ + 6 + ], + "map_pool": [ + 2905 + ], + "map_pool_id": [ + 6672 + ], + "match": [ + 3432 + ], + "match_id": [ + 6672 + ], + "match_options_id": [ + 6672 + ], + "max_elo": [ + 41 + ], + "min_elo": [ + 41 + ], + "mode": [ + 752 + ], + "options": [ + 3290 + ], + "pattern": [ + 2439, + { + "path": [ + 85 + ] + } + ], + "pick_deadline": [ + 5243 + ], + "picks": [ + 509, + { + "distinct_on": [ + 532, + "[draft_game_picks_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 530, + "[draft_game_picks_order_by!]" + ], + "where": [ + 520 + ] + } + ], + "picks_aggregate": [ + 510, + { + "distinct_on": [ + 532, + "[draft_game_picks_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 530, + "[draft_game_picks_order_by!]" + ], + "where": [ + 520 + ] + } + ], + "players": [ + 554, + { + "distinct_on": [ + 577, + "[draft_game_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 575, + "[draft_game_players_order_by!]" + ], + "where": [ + 565 + ] + } + ], + "players_aggregate": [ + 555, + { + "distinct_on": [ + 577, + "[draft_game_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 575, + "[draft_game_players_order_by!]" + ], + "where": [ + 565 + ] + } + ], + "regions": [ + 85 + ], + "require_approval": [ + 6 + ], + "scheduled_at": [ + 5243 + ], + "status": [ + 794 + ], + "team_1": [ + 5194 + ], + "team_1_id": [ + 6672 + ], + "team_2": [ + 5194 + ], + "team_2_id": [ + 6672 + ], + "type": [ + 1225 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "draft_games_aggregate": { + "aggregate": [ + 605 + ], + "nodes": [ + 599 + ], + "__typename": [ + 85 + ] + }, + "draft_games_aggregate_bool_exp": { + "bool_and": [ + 602 + ], + "bool_or": [ + 603 + ], + "count": [ + 604 + ], + "__typename": [ + 85 + ] + }, + "draft_games_aggregate_bool_exp_bool_and": { + "arguments": [ + 624 + ], + "distinct": [ + 6 + ], + "filter": [ + 610 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "draft_games_aggregate_bool_exp_bool_or": { + "arguments": [ + 625 + ], + "distinct": [ + 6 + ], + "filter": [ + 610 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "draft_games_aggregate_bool_exp_count": { + "arguments": [ + 623 + ], + "distinct": [ + 6 + ], + "filter": [ + 610 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "draft_games_aggregate_fields": { + "avg": [ + 608 + ], + "count": [ + 41, + { + "columns": [ + 623, + "[draft_games_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 614 + ], + "min": [ + 616 + ], + "stddev": [ + 627 + ], + "stddev_pop": [ + 629 + ], + "stddev_samp": [ + 631 + ], + "sum": [ + 635 + ], + "var_pop": [ + 639 + ], + "var_samp": [ + 641 + ], + "variance": [ + 643 + ], + "__typename": [ + 85 + ] + }, + "draft_games_aggregate_order_by": { + "avg": [ + 609 + ], + "count": [ + 3648 + ], + "max": [ + 615 + ], + "min": [ + 617 + ], + "stddev": [ + 628 + ], + "stddev_pop": [ + 630 + ], + "stddev_samp": [ + 632 + ], + "sum": [ + 636 + ], + "var_pop": [ + 640 + ], + "var_samp": [ + 642 + ], + "variance": [ + 644 + ], + "__typename": [ + 85 + ] + }, + "draft_games_arr_rel_insert_input": { + "data": [ + 613 + ], + "on_conflict": [ + 620 + ], + "__typename": [ + 85 + ] + }, + "draft_games_avg_fields": { + "capacity": [ + 32 + ], + "current_pick_lineup": [ + 32 + ], + "host_steam_id": [ + 32 + ], + "max_elo": [ + 32 + ], + "min_elo": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "draft_games_avg_order_by": { + "capacity": [ + 3648 + ], + "current_pick_lineup": [ + 3648 + ], + "host_steam_id": [ + 3648 + ], + "max_elo": [ + 3648 + ], + "min_elo": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "draft_games_bool_exp": { + "_and": [ + 610 + ], + "_not": [ + 610 + ], + "_or": [ + 610 + ], + "access": [ + 1062 + ], + "capacity": [ + 42 + ], + "captain_selection": [ + 711 + ], + "created_at": [ + 5244 + ], + "current_pick_lineup": [ + 42 + ], + "draft_order": [ + 732 + ], + "e_draft_game_captain_selection": [ + 708 + ], + "e_draft_game_draft_order": [ + 729 + ], + "e_draft_game_mode": [ + 750 + ], + "e_draft_game_status": [ + 792 + ], + "e_lobby_access": [ + 1059 + ], + "expires_at": [ + 5244 + ], + "host": [ + 4610 + ], + "host_steam_id": [ + 314 + ], + "id": [ + 6674 + ], + "inner_squad": [ + 7 + ], + "invite_code": [ + 6674 + ], + "is_organizer": [ + 7 + ], + "map_pool": [ + 2908 + ], + "map_pool_id": [ + 6674 + ], + "match": [ + 3443 + ], + "match_id": [ + 6674 + ], + "match_options_id": [ + 6674 + ], + "max_elo": [ + 42 + ], + "min_elo": [ + 42 + ], + "mode": [ + 753 + ], + "options": [ + 3301 + ], + "pattern": [ + 2441 + ], + "pick_deadline": [ + 5244 + ], + "picks": [ + 520 + ], + "picks_aggregate": [ + 511 + ], + "players": [ + 565 + ], + "players_aggregate": [ + 556 + ], + "regions": [ + 86 + ], + "require_approval": [ + 7 + ], + "scheduled_at": [ + 5244 + ], + "status": [ + 795 + ], + "team_1": [ + 5205 + ], + "team_1_id": [ + 6674 + ], + "team_2": [ + 5205 + ], + "team_2_id": [ + 6674 + ], + "type": [ + 1226 + ], + "updated_at": [ + 5244 + ], + "__typename": [ + 85 + ] + }, + "draft_games_constraint": {}, + "draft_games_inc_input": { + "capacity": [ + 41 + ], + "current_pick_lineup": [ + 41 + ], + "host_steam_id": [ + 312 + ], + "max_elo": [ + 41 + ], + "min_elo": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "draft_games_insert_input": { + "access": [ + 1061 + ], + "capacity": [ + 41 + ], + "captain_selection": [ + 710 + ], + "created_at": [ + 5243 + ], + "current_pick_lineup": [ + 41 + ], + "draft_order": [ + 731 + ], + "e_draft_game_captain_selection": [ + 716 + ], + "e_draft_game_draft_order": [ + 737 + ], + "e_draft_game_mode": [ + 758 + ], + "e_draft_game_status": [ + 800 + ], + "e_lobby_access": [ + 1067 + ], + "expires_at": [ + 5243 + ], + "host": [ + 4617 + ], + "host_steam_id": [ + 312 + ], + "id": [ + 6672 + ], + "inner_squad": [ + 6 + ], + "invite_code": [ + 6672 + ], + "map_pool": [ + 2914 + ], + "map_pool_id": [ + 6672 + ], + "match": [ + 3452 + ], + "match_id": [ + 6672 + ], + "match_options_id": [ + 6672 + ], + "max_elo": [ + 41 + ], + "min_elo": [ + 41 + ], + "mode": [ + 752 + ], + "options": [ + 3310 + ], + "pick_deadline": [ + 5243 + ], + "picks": [ + 517 + ], + "players": [ + 562 + ], + "regions": [ + 85 + ], + "require_approval": [ + 6 + ], + "scheduled_at": [ + 5243 + ], + "status": [ + 794 + ], + "team_1": [ + 5214 + ], + "team_1_id": [ + 6672 + ], + "team_2": [ + 5214 + ], + "team_2_id": [ + 6672 + ], + "type": [ + 1225 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "draft_games_max_fields": { + "capacity": [ + 41 + ], + "created_at": [ + 5243 + ], + "current_pick_lineup": [ + 41 + ], + "expires_at": [ + 5243 + ], + "host_steam_id": [ + 312 + ], + "id": [ + 6672 + ], + "invite_code": [ + 6672 + ], + "map_pool_id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "match_options_id": [ + 6672 + ], + "max_elo": [ + 41 + ], + "min_elo": [ + 41 + ], + "pick_deadline": [ + 5243 + ], + "regions": [ + 85 + ], + "scheduled_at": [ + 5243 + ], + "team_1_id": [ + 6672 + ], + "team_2_id": [ + 6672 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "draft_games_max_order_by": { + "capacity": [ + 3648 + ], + "created_at": [ + 3648 + ], + "current_pick_lineup": [ + 3648 + ], + "expires_at": [ + 3648 + ], + "host_steam_id": [ + 3648 + ], + "id": [ + 3648 + ], + "invite_code": [ + 3648 + ], + "map_pool_id": [ + 3648 + ], + "match_id": [ + 3648 + ], + "match_options_id": [ + 3648 + ], + "max_elo": [ + 3648 + ], + "min_elo": [ + 3648 + ], + "pick_deadline": [ + 3648 + ], + "regions": [ + 3648 + ], + "scheduled_at": [ + 3648 + ], + "team_1_id": [ + 3648 + ], + "team_2_id": [ + 3648 + ], + "updated_at": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "draft_games_min_fields": { + "capacity": [ + 41 + ], + "created_at": [ + 5243 + ], + "current_pick_lineup": [ + 41 + ], + "expires_at": [ + 5243 + ], + "host_steam_id": [ + 312 + ], + "id": [ + 6672 + ], + "invite_code": [ + 6672 + ], + "map_pool_id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "match_options_id": [ + 6672 + ], + "max_elo": [ + 41 + ], + "min_elo": [ + 41 + ], + "pick_deadline": [ + 5243 + ], + "regions": [ + 85 + ], + "scheduled_at": [ + 5243 + ], + "team_1_id": [ + 6672 + ], + "team_2_id": [ + 6672 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "draft_games_min_order_by": { + "capacity": [ + 3648 + ], + "created_at": [ + 3648 + ], + "current_pick_lineup": [ + 3648 + ], + "expires_at": [ + 3648 + ], + "host_steam_id": [ + 3648 + ], + "id": [ + 3648 + ], + "invite_code": [ + 3648 + ], + "map_pool_id": [ + 3648 + ], + "match_id": [ + 3648 + ], + "match_options_id": [ + 3648 + ], + "max_elo": [ + 3648 + ], + "min_elo": [ + 3648 + ], + "pick_deadline": [ + 3648 + ], + "regions": [ + 3648 + ], + "scheduled_at": [ + 3648 + ], + "team_1_id": [ + 3648 + ], + "team_2_id": [ + 3648 + ], + "updated_at": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "draft_games_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 599 + ], + "__typename": [ + 85 + ] + }, + "draft_games_obj_rel_insert_input": { + "data": [ + 613 + ], + "on_conflict": [ + 620 + ], + "__typename": [ + 85 + ] + }, + "draft_games_on_conflict": { + "constraint": [ + 611 + ], + "update_columns": [ + 637 + ], + "where": [ + 610 + ], + "__typename": [ + 85 + ] + }, + "draft_games_order_by": { + "access": [ + 3648 + ], + "capacity": [ + 3648 + ], + "captain_selection": [ + 3648 + ], + "created_at": [ + 3648 + ], + "current_pick_lineup": [ + 3648 + ], + "draft_order": [ + 3648 + ], + "e_draft_game_captain_selection": [ + 718 + ], + "e_draft_game_draft_order": [ + 739 + ], + "e_draft_game_mode": [ + 760 + ], + "e_draft_game_status": [ + 802 + ], + "e_lobby_access": [ + 1069 + ], + "expires_at": [ + 3648 + ], + "host": [ + 4619 + ], + "host_steam_id": [ + 3648 + ], + "id": [ + 3648 + ], + "inner_squad": [ + 3648 + ], + "invite_code": [ + 3648 + ], + "is_organizer": [ + 3648 + ], + "map_pool": [ + 2916 + ], + "map_pool_id": [ + 3648 + ], + "match": [ + 3454 + ], + "match_id": [ + 3648 + ], + "match_options_id": [ + 3648 + ], + "max_elo": [ + 3648 + ], + "min_elo": [ + 3648 + ], + "mode": [ + 3648 + ], + "options": [ + 3312 + ], + "pattern": [ + 3648 + ], + "pick_deadline": [ + 3648 + ], + "picks_aggregate": [ + 516 + ], + "players_aggregate": [ + 561 + ], + "regions": [ + 3648 + ], + "require_approval": [ + 3648 + ], + "scheduled_at": [ + 3648 + ], + "status": [ + 3648 + ], + "team_1": [ + 5216 + ], + "team_1_id": [ + 3648 + ], + "team_2": [ + 5216 + ], + "team_2_id": [ + 3648 + ], + "type": [ + 3648 + ], + "updated_at": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "draft_games_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "draft_games_select_column": {}, + "draft_games_select_column_draft_games_aggregate_bool_exp_bool_and_arguments_columns": {}, + "draft_games_select_column_draft_games_aggregate_bool_exp_bool_or_arguments_columns": {}, + "draft_games_set_input": { + "access": [ + 1061 + ], + "capacity": [ + 41 + ], + "captain_selection": [ + 710 + ], + "created_at": [ + 5243 + ], + "current_pick_lineup": [ + 41 + ], + "draft_order": [ + 731 + ], + "expires_at": [ + 5243 + ], + "host_steam_id": [ + 312 + ], + "id": [ + 6672 + ], + "inner_squad": [ + 6 + ], + "invite_code": [ + 6672 + ], + "map_pool_id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "match_options_id": [ + 6672 + ], + "max_elo": [ + 41 + ], + "min_elo": [ + 41 + ], + "mode": [ + 752 + ], + "pick_deadline": [ + 5243 + ], + "regions": [ + 85 + ], + "require_approval": [ + 6 + ], + "scheduled_at": [ + 5243 + ], + "status": [ + 794 + ], + "team_1_id": [ + 6672 + ], + "team_2_id": [ + 6672 + ], + "type": [ + 1225 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "draft_games_stddev_fields": { + "capacity": [ + 32 + ], + "current_pick_lineup": [ + 32 + ], + "host_steam_id": [ + 32 + ], + "max_elo": [ + 32 + ], + "min_elo": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "draft_games_stddev_order_by": { + "capacity": [ + 3648 + ], + "current_pick_lineup": [ + 3648 + ], + "host_steam_id": [ + 3648 + ], + "max_elo": [ + 3648 + ], + "min_elo": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "draft_games_stddev_pop_fields": { + "capacity": [ + 32 + ], + "current_pick_lineup": [ + 32 + ], + "host_steam_id": [ + 32 + ], + "max_elo": [ + 32 + ], + "min_elo": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "draft_games_stddev_pop_order_by": { + "capacity": [ + 3648 + ], + "current_pick_lineup": [ + 3648 + ], + "host_steam_id": [ + 3648 + ], + "max_elo": [ + 3648 + ], + "min_elo": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "draft_games_stddev_samp_fields": { + "capacity": [ + 32 + ], + "current_pick_lineup": [ + 32 + ], + "host_steam_id": [ + 32 + ], + "max_elo": [ + 32 + ], + "min_elo": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "draft_games_stddev_samp_order_by": { + "capacity": [ + 3648 + ], + "current_pick_lineup": [ + 3648 + ], + "host_steam_id": [ + 3648 + ], + "max_elo": [ + 3648 + ], + "min_elo": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "draft_games_stream_cursor_input": { + "initial_value": [ + 634 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "draft_games_stream_cursor_value_input": { + "access": [ + 1061 + ], + "capacity": [ + 41 + ], + "captain_selection": [ + 710 + ], + "created_at": [ + 5243 + ], + "current_pick_lineup": [ + 41 + ], + "draft_order": [ + 731 + ], + "expires_at": [ + 5243 + ], + "host_steam_id": [ + 312 + ], + "id": [ + 6672 + ], + "inner_squad": [ + 6 + ], + "invite_code": [ + 6672 + ], + "map_pool_id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "match_options_id": [ + 6672 + ], + "max_elo": [ + 41 + ], + "min_elo": [ + 41 + ], + "mode": [ + 752 + ], + "pick_deadline": [ + 5243 + ], + "regions": [ + 85 + ], + "require_approval": [ + 6 + ], + "scheduled_at": [ + 5243 + ], + "status": [ + 794 + ], + "team_1_id": [ + 6672 + ], + "team_2_id": [ + 6672 + ], + "type": [ + 1225 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "draft_games_sum_fields": { + "capacity": [ + 41 + ], + "current_pick_lineup": [ + 41 + ], + "host_steam_id": [ + 312 + ], + "max_elo": [ + 41 + ], + "min_elo": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "draft_games_sum_order_by": { + "capacity": [ + 3648 + ], + "current_pick_lineup": [ + 3648 + ], + "host_steam_id": [ + 3648 + ], + "max_elo": [ + 3648 + ], + "min_elo": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "draft_games_update_column": {}, + "draft_games_updates": { + "_inc": [ + 612 + ], + "_set": [ + 626 + ], + "where": [ + 610 + ], + "__typename": [ + 85 + ] + }, + "draft_games_var_pop_fields": { + "capacity": [ + 32 + ], + "current_pick_lineup": [ + 32 + ], + "host_steam_id": [ + 32 + ], + "max_elo": [ + 32 + ], + "min_elo": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "draft_games_var_pop_order_by": { + "capacity": [ + 3648 + ], + "current_pick_lineup": [ + 3648 + ], + "host_steam_id": [ + 3648 + ], + "max_elo": [ + 3648 + ], + "min_elo": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "draft_games_var_samp_fields": { + "capacity": [ + 32 + ], + "current_pick_lineup": [ + 32 + ], + "host_steam_id": [ + 32 + ], + "max_elo": [ + 32 + ], + "min_elo": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "draft_games_var_samp_order_by": { + "capacity": [ + 3648 + ], + "current_pick_lineup": [ + 3648 + ], + "host_steam_id": [ + 3648 + ], + "max_elo": [ + 3648 + ], + "min_elo": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "draft_games_variance_fields": { + "capacity": [ + 32 + ], + "current_pick_lineup": [ + 32 + ], + "host_steam_id": [ + 32 + ], + "max_elo": [ + 32 + ], + "min_elo": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "draft_games_variance_order_by": { + "capacity": [ + 3648 + ], + "current_pick_lineup": [ + 3648 + ], + "host_steam_id": [ + 3648 + ], + "max_elo": [ + 3648 + ], + "min_elo": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_award_sources": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_award_sources_aggregate": { + "aggregate": [ + 647 + ], + "nodes": [ + 645 + ], + "__typename": [ + 85 + ] + }, + "e_award_sources_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 659, + "[e_award_sources_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 653 + ], + "min": [ + 654 + ], + "__typename": [ + 85 + ] + }, + "e_award_sources_bool_exp": { + "_and": [ + 648 + ], + "_not": [ + 648 + ], + "_or": [ + 648 + ], + "description": [ + 87 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_award_sources_constraint": {}, + "e_award_sources_enum": {}, + "e_award_sources_enum_comparison_exp": { + "_eq": [ + 650 + ], + "_in": [ + 650 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 650 + ], + "_nin": [ + 650 + ], + "__typename": [ + 85 + ] + }, + "e_award_sources_insert_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_award_sources_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_award_sources_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_award_sources_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 645 + ], + "__typename": [ + 85 + ] + }, + "e_award_sources_on_conflict": { + "constraint": [ + 649 + ], + "update_columns": [ + 663 + ], + "where": [ + 648 + ], + "__typename": [ + 85 + ] + }, + "e_award_sources_order_by": { + "description": [ + 3648 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_award_sources_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_award_sources_select_column": {}, + "e_award_sources_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_award_sources_stream_cursor_input": { + "initial_value": [ + 662 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_award_sources_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_award_sources_update_column": {}, + "e_award_sources_updates": { + "_set": [ + 660 + ], + "where": [ + 648 + ], + "__typename": [ + 85 + ] + }, + "e_award_tiers": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_award_tiers_aggregate": { + "aggregate": [ + 667 + ], + "nodes": [ + 665 + ], + "__typename": [ + 85 + ] + }, + "e_award_tiers_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 679, + "[e_award_tiers_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 673 + ], + "min": [ + 674 + ], + "__typename": [ + 85 + ] + }, + "e_award_tiers_bool_exp": { + "_and": [ + 668 + ], + "_not": [ + 668 + ], + "_or": [ + 668 + ], + "description": [ + 87 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_award_tiers_constraint": {}, + "e_award_tiers_enum": {}, + "e_award_tiers_enum_comparison_exp": { + "_eq": [ + 670 + ], + "_in": [ + 670 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 670 + ], + "_nin": [ + 670 + ], + "__typename": [ + 85 + ] + }, + "e_award_tiers_insert_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_award_tiers_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_award_tiers_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_award_tiers_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 665 + ], + "__typename": [ + 85 + ] + }, + "e_award_tiers_on_conflict": { + "constraint": [ + 669 + ], + "update_columns": [ + 683 + ], + "where": [ + 668 + ], + "__typename": [ + 85 + ] + }, + "e_award_tiers_order_by": { + "description": [ + 3648 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_award_tiers_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_award_tiers_select_column": {}, + "e_award_tiers_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_award_tiers_stream_cursor_input": { + "initial_value": [ + 682 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_award_tiers_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_award_tiers_update_column": {}, + "e_award_tiers_updates": { + "_set": [ + 680 + ], + "where": [ + 668 + ], + "__typename": [ + 85 + ] + }, + "e_check_in_settings": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_check_in_settings_aggregate": { + "aggregate": [ + 687 + ], + "nodes": [ + 685 + ], + "__typename": [ + 85 + ] + }, + "e_check_in_settings_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 699, + "[e_check_in_settings_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 693 + ], + "min": [ + 694 + ], + "__typename": [ + 85 + ] + }, + "e_check_in_settings_bool_exp": { + "_and": [ + 688 + ], + "_not": [ + 688 + ], + "_or": [ + 688 + ], + "description": [ + 87 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_check_in_settings_constraint": {}, + "e_check_in_settings_enum": {}, + "e_check_in_settings_enum_comparison_exp": { + "_eq": [ + 690 + ], + "_in": [ + 690 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 690 + ], + "_nin": [ + 690 + ], + "__typename": [ + 85 + ] + }, + "e_check_in_settings_insert_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_check_in_settings_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_check_in_settings_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_check_in_settings_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 685 + ], + "__typename": [ + 85 + ] + }, + "e_check_in_settings_on_conflict": { + "constraint": [ + 689 + ], + "update_columns": [ + 703 + ], + "where": [ + 688 + ], + "__typename": [ + 85 + ] + }, + "e_check_in_settings_order_by": { + "description": [ + 3648 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_check_in_settings_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_check_in_settings_select_column": {}, + "e_check_in_settings_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_check_in_settings_stream_cursor_input": { + "initial_value": [ + 702 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_check_in_settings_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_check_in_settings_update_column": {}, + "e_check_in_settings_updates": { + "_set": [ + 700 + ], + "where": [ + 688 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_captain_selection": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_captain_selection_aggregate": { + "aggregate": [ + 707 + ], + "nodes": [ + 705 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_captain_selection_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 720, + "[e_draft_game_captain_selection_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 713 + ], + "min": [ + 714 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_captain_selection_bool_exp": { + "_and": [ + 708 + ], + "_not": [ + 708 + ], + "_or": [ + 708 + ], + "description": [ + 87 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_captain_selection_constraint": {}, + "e_draft_game_captain_selection_enum": {}, + "e_draft_game_captain_selection_enum_comparison_exp": { + "_eq": [ + 710 + ], + "_in": [ + 710 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 710 + ], + "_nin": [ + 710 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_captain_selection_insert_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_captain_selection_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_captain_selection_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_captain_selection_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 705 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_captain_selection_obj_rel_insert_input": { + "data": [ + 712 + ], + "on_conflict": [ + 717 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_captain_selection_on_conflict": { + "constraint": [ + 709 + ], + "update_columns": [ + 724 + ], + "where": [ + 708 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_captain_selection_order_by": { + "description": [ + 3648 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_captain_selection_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_captain_selection_select_column": {}, + "e_draft_game_captain_selection_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_captain_selection_stream_cursor_input": { + "initial_value": [ + 723 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_captain_selection_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_captain_selection_update_column": {}, + "e_draft_game_captain_selection_updates": { + "_set": [ + 721 + ], + "where": [ + 708 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_draft_order": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_draft_order_aggregate": { + "aggregate": [ + 728 + ], + "nodes": [ + 726 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_draft_order_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 741, + "[e_draft_game_draft_order_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 734 + ], + "min": [ + 735 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_draft_order_bool_exp": { + "_and": [ + 729 + ], + "_not": [ + 729 + ], + "_or": [ + 729 + ], + "description": [ + 87 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_draft_order_constraint": {}, + "e_draft_game_draft_order_enum": {}, + "e_draft_game_draft_order_enum_comparison_exp": { + "_eq": [ + 731 + ], + "_in": [ + 731 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 731 + ], + "_nin": [ + 731 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_draft_order_insert_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_draft_order_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_draft_order_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_draft_order_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 726 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_draft_order_obj_rel_insert_input": { + "data": [ + 733 + ], + "on_conflict": [ + 738 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_draft_order_on_conflict": { + "constraint": [ + 730 + ], + "update_columns": [ + 745 + ], + "where": [ + 729 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_draft_order_order_by": { + "description": [ + 3648 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_draft_order_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_draft_order_select_column": {}, + "e_draft_game_draft_order_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_draft_order_stream_cursor_input": { + "initial_value": [ + 744 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_draft_order_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_draft_order_update_column": {}, + "e_draft_game_draft_order_updates": { + "_set": [ + 742 + ], + "where": [ + 729 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_mode": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_mode_aggregate": { + "aggregate": [ + 749 + ], + "nodes": [ + 747 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_mode_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 762, + "[e_draft_game_mode_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 755 + ], + "min": [ + 756 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_mode_bool_exp": { + "_and": [ + 750 + ], + "_not": [ + 750 + ], + "_or": [ + 750 + ], + "description": [ + 87 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_mode_constraint": {}, + "e_draft_game_mode_enum": {}, + "e_draft_game_mode_enum_comparison_exp": { + "_eq": [ + 752 + ], + "_in": [ + 752 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 752 + ], + "_nin": [ + 752 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_mode_insert_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_mode_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_mode_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_mode_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 747 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_mode_obj_rel_insert_input": { + "data": [ + 754 + ], + "on_conflict": [ + 759 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_mode_on_conflict": { + "constraint": [ + 751 + ], + "update_columns": [ + 766 + ], + "where": [ + 750 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_mode_order_by": { + "description": [ + 3648 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_mode_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_mode_select_column": {}, + "e_draft_game_mode_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_mode_stream_cursor_input": { + "initial_value": [ + 765 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_mode_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_mode_update_column": {}, + "e_draft_game_mode_updates": { + "_set": [ + 763 + ], + "where": [ + 750 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_player_status": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_player_status_aggregate": { + "aggregate": [ + 770 + ], + "nodes": [ + 768 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_player_status_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 783, + "[e_draft_game_player_status_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 776 + ], + "min": [ + 777 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_player_status_bool_exp": { + "_and": [ + 771 + ], + "_not": [ + 771 + ], + "_or": [ + 771 + ], + "description": [ + 87 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_player_status_constraint": {}, + "e_draft_game_player_status_enum": {}, + "e_draft_game_player_status_enum_comparison_exp": { + "_eq": [ + 773 + ], + "_in": [ + 773 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 773 + ], + "_nin": [ + 773 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_player_status_insert_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_player_status_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_player_status_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_player_status_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 768 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_player_status_obj_rel_insert_input": { + "data": [ + 775 + ], + "on_conflict": [ + 780 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_player_status_on_conflict": { + "constraint": [ + 772 + ], + "update_columns": [ + 787 + ], + "where": [ + 771 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_player_status_order_by": { + "description": [ + 3648 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_player_status_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_player_status_select_column": {}, + "e_draft_game_player_status_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_player_status_stream_cursor_input": { + "initial_value": [ + 786 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_player_status_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_player_status_update_column": {}, + "e_draft_game_player_status_updates": { + "_set": [ + 784 + ], + "where": [ + 771 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_status": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_status_aggregate": { + "aggregate": [ + 791 + ], + "nodes": [ + 789 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_status_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 804, + "[e_draft_game_status_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 797 + ], + "min": [ + 798 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_status_bool_exp": { + "_and": [ + 792 + ], + "_not": [ + 792 + ], + "_or": [ + 792 + ], + "description": [ + 87 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_status_constraint": {}, + "e_draft_game_status_enum": {}, + "e_draft_game_status_enum_comparison_exp": { + "_eq": [ + 794 + ], + "_in": [ + 794 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 794 + ], + "_nin": [ + 794 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_status_insert_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_status_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_status_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_status_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 789 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_status_obj_rel_insert_input": { + "data": [ + 796 + ], + "on_conflict": [ + 801 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_status_on_conflict": { + "constraint": [ + 793 + ], + "update_columns": [ + 808 + ], + "where": [ + 792 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_status_order_by": { + "description": [ + 3648 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_status_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_status_select_column": {}, + "e_draft_game_status_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_status_stream_cursor_input": { + "initial_value": [ + 807 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_status_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_draft_game_status_update_column": {}, + "e_draft_game_status_updates": { + "_set": [ + 805 + ], + "where": [ + 792 + ], + "__typename": [ + 85 + ] + }, + "e_event_media_access": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_event_media_access_aggregate": { + "aggregate": [ + 812 + ], + "nodes": [ + 810 + ], + "__typename": [ + 85 + ] + }, + "e_event_media_access_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 824, + "[e_event_media_access_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 818 + ], + "min": [ + 819 + ], + "__typename": [ + 85 + ] + }, + "e_event_media_access_bool_exp": { + "_and": [ + 813 + ], + "_not": [ + 813 + ], + "_or": [ + 813 + ], + "description": [ + 87 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_event_media_access_constraint": {}, + "e_event_media_access_enum": {}, + "e_event_media_access_enum_comparison_exp": { + "_eq": [ + 815 + ], + "_in": [ + 815 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 815 + ], + "_nin": [ + 815 + ], + "__typename": [ + 85 + ] + }, + "e_event_media_access_insert_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_event_media_access_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_event_media_access_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_event_media_access_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 810 + ], + "__typename": [ + 85 + ] + }, + "e_event_media_access_on_conflict": { + "constraint": [ + 814 + ], + "update_columns": [ + 828 + ], + "where": [ + 813 + ], + "__typename": [ + 85 + ] + }, + "e_event_media_access_order_by": { + "description": [ + 3648 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_event_media_access_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_event_media_access_select_column": {}, + "e_event_media_access_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_event_media_access_stream_cursor_input": { + "initial_value": [ + 827 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_event_media_access_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_event_media_access_update_column": {}, + "e_event_media_access_updates": { + "_set": [ + 825 + ], + "where": [ + 813 + ], + "__typename": [ + 85 + ] + }, + "e_event_visibility": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_event_visibility_aggregate": { + "aggregate": [ + 832 + ], + "nodes": [ + 830 + ], + "__typename": [ + 85 + ] + }, + "e_event_visibility_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 844, + "[e_event_visibility_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 838 + ], + "min": [ + 839 + ], + "__typename": [ + 85 + ] + }, + "e_event_visibility_bool_exp": { + "_and": [ + 833 + ], + "_not": [ + 833 + ], + "_or": [ + 833 + ], + "description": [ + 87 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_event_visibility_constraint": {}, + "e_event_visibility_enum": {}, + "e_event_visibility_enum_comparison_exp": { + "_eq": [ + 835 + ], + "_in": [ + 835 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 835 + ], + "_nin": [ + 835 + ], + "__typename": [ + 85 + ] + }, + "e_event_visibility_insert_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_event_visibility_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_event_visibility_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_event_visibility_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 830 + ], + "__typename": [ + 85 + ] + }, + "e_event_visibility_on_conflict": { + "constraint": [ + 834 + ], + "update_columns": [ + 848 + ], + "where": [ + 833 + ], + "__typename": [ + 85 + ] + }, + "e_event_visibility_order_by": { + "description": [ + 3648 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_event_visibility_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_event_visibility_select_column": {}, + "e_event_visibility_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_event_visibility_stream_cursor_input": { + "initial_value": [ + 847 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_event_visibility_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_event_visibility_update_column": {}, + "e_event_visibility_updates": { + "_set": [ + 845 + ], + "where": [ + 833 + ], + "__typename": [ + 85 + ] + }, + "e_friend_status": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_friend_status_aggregate": { + "aggregate": [ + 852 + ], + "nodes": [ + 850 + ], + "__typename": [ + 85 + ] + }, + "e_friend_status_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 865, + "[e_friend_status_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 858 + ], + "min": [ + 859 + ], + "__typename": [ + 85 + ] + }, + "e_friend_status_bool_exp": { + "_and": [ + 853 + ], + "_not": [ + 853 + ], + "_or": [ + 853 + ], + "description": [ + 87 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_friend_status_constraint": {}, + "e_friend_status_enum": {}, + "e_friend_status_enum_comparison_exp": { + "_eq": [ + 855 + ], + "_in": [ + 855 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 855 + ], + "_nin": [ + 855 + ], + "__typename": [ + 85 + ] + }, + "e_friend_status_insert_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_friend_status_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_friend_status_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_friend_status_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 850 + ], + "__typename": [ + 85 + ] + }, + "e_friend_status_obj_rel_insert_input": { + "data": [ + 857 + ], + "on_conflict": [ + 862 + ], + "__typename": [ + 85 + ] + }, + "e_friend_status_on_conflict": { + "constraint": [ + 854 + ], + "update_columns": [ + 869 + ], + "where": [ + 853 + ], + "__typename": [ + 85 + ] + }, + "e_friend_status_order_by": { + "description": [ + 3648 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_friend_status_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_friend_status_select_column": {}, + "e_friend_status_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_friend_status_stream_cursor_input": { + "initial_value": [ + 868 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_friend_status_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_friend_status_update_column": {}, + "e_friend_status_updates": { + "_set": [ + 866 + ], + "where": [ + 853 + ], + "__typename": [ + 85 + ] + }, + "e_game_cfg_types": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_game_cfg_types_aggregate": { + "aggregate": [ + 873 + ], + "nodes": [ + 871 + ], + "__typename": [ + 85 + ] + }, + "e_game_cfg_types_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 885, + "[e_game_cfg_types_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 879 + ], + "min": [ + 880 + ], + "__typename": [ + 85 + ] + }, + "e_game_cfg_types_bool_exp": { + "_and": [ + 874 + ], + "_not": [ + 874 + ], + "_or": [ + 874 + ], + "description": [ + 87 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_game_cfg_types_constraint": {}, + "e_game_cfg_types_enum": {}, + "e_game_cfg_types_enum_comparison_exp": { + "_eq": [ + 876 + ], + "_in": [ + 876 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 876 + ], + "_nin": [ + 876 + ], + "__typename": [ + 85 + ] + }, + "e_game_cfg_types_insert_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_game_cfg_types_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_game_cfg_types_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_game_cfg_types_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 871 + ], + "__typename": [ + 85 + ] + }, + "e_game_cfg_types_on_conflict": { + "constraint": [ + 875 + ], + "update_columns": [ + 889 + ], + "where": [ + 874 + ], + "__typename": [ + 85 + ] + }, + "e_game_cfg_types_order_by": { + "description": [ + 3648 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_game_cfg_types_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_game_cfg_types_select_column": {}, + "e_game_cfg_types_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_game_cfg_types_stream_cursor_input": { + "initial_value": [ + 888 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_game_cfg_types_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_game_cfg_types_update_column": {}, + "e_game_cfg_types_updates": { + "_set": [ + 886 + ], + "where": [ + 874 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_channels": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_channels_aggregate": { + "aggregate": [ + 893 + ], + "nodes": [ + 891 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_channels_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 905, + "[e_game_plugin_channels_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 899 + ], + "min": [ + 900 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_channels_bool_exp": { + "_and": [ + 894 + ], + "_not": [ + 894 + ], + "_or": [ + 894 + ], + "description": [ + 87 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_channels_constraint": {}, + "e_game_plugin_channels_enum": {}, + "e_game_plugin_channels_enum_comparison_exp": { + "_eq": [ + 896 + ], + "_in": [ + 896 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 896 + ], + "_nin": [ + 896 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_channels_insert_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_channels_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_channels_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_channels_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 891 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_channels_on_conflict": { + "constraint": [ + 895 + ], + "update_columns": [ + 909 + ], + "where": [ + 894 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_channels_order_by": { + "description": [ + 3648 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_channels_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_channels_select_column": {}, + "e_game_plugin_channels_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_channels_stream_cursor_input": { + "initial_value": [ + 908 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_channels_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_channels_update_column": {}, + "e_game_plugin_channels_updates": { + "_set": [ + 906 + ], + "where": [ + 894 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_install_statuses": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_install_statuses_aggregate": { + "aggregate": [ + 913 + ], + "nodes": [ + 911 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_install_statuses_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 925, + "[e_game_plugin_install_statuses_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 919 + ], + "min": [ + 920 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_install_statuses_bool_exp": { + "_and": [ + 914 + ], + "_not": [ + 914 + ], + "_or": [ + 914 + ], + "description": [ + 87 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_install_statuses_constraint": {}, + "e_game_plugin_install_statuses_enum": {}, + "e_game_plugin_install_statuses_enum_comparison_exp": { + "_eq": [ + 916 + ], + "_in": [ + 916 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 916 + ], + "_nin": [ + 916 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_install_statuses_insert_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_install_statuses_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_install_statuses_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_install_statuses_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 911 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_install_statuses_on_conflict": { + "constraint": [ + 915 + ], + "update_columns": [ + 929 + ], + "where": [ + 914 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_install_statuses_order_by": { + "description": [ + 3648 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_install_statuses_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_install_statuses_select_column": {}, + "e_game_plugin_install_statuses_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_install_statuses_stream_cursor_input": { + "initial_value": [ + 928 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_install_statuses_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_install_statuses_update_column": {}, + "e_game_plugin_install_statuses_updates": { + "_set": [ + 926 + ], + "where": [ + 914 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_kinds": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_kinds_aggregate": { + "aggregate": [ + 933 + ], + "nodes": [ + 931 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_kinds_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 945, + "[e_game_plugin_kinds_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 939 + ], + "min": [ + 940 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_kinds_bool_exp": { + "_and": [ + 934 + ], + "_not": [ + 934 + ], + "_or": [ + 934 + ], + "description": [ + 87 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_kinds_constraint": {}, + "e_game_plugin_kinds_enum": {}, + "e_game_plugin_kinds_enum_comparison_exp": { + "_eq": [ + 936 + ], + "_in": [ + 936 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 936 + ], + "_nin": [ + 936 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_kinds_insert_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_kinds_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_kinds_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_kinds_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 931 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_kinds_on_conflict": { + "constraint": [ + 935 + ], + "update_columns": [ + 949 + ], + "where": [ + 934 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_kinds_order_by": { + "description": [ + 3648 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_kinds_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_kinds_select_column": {}, + "e_game_plugin_kinds_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_kinds_stream_cursor_input": { + "initial_value": [ + 948 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_kinds_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_game_plugin_kinds_update_column": {}, + "e_game_plugin_kinds_updates": { + "_set": [ + 946 + ], + "where": [ + 934 + ], + "__typename": [ + 85 + ] + }, + "e_game_server_node_statuses": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_game_server_node_statuses_aggregate": { + "aggregate": [ + 953 + ], + "nodes": [ + 951 + ], + "__typename": [ + 85 + ] + }, + "e_game_server_node_statuses_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 966, + "[e_game_server_node_statuses_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 959 + ], + "min": [ + 960 + ], + "__typename": [ + 85 + ] + }, + "e_game_server_node_statuses_bool_exp": { + "_and": [ + 954 + ], + "_not": [ + 954 + ], + "_or": [ + 954 + ], + "description": [ + 87 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_game_server_node_statuses_constraint": {}, + "e_game_server_node_statuses_enum": {}, + "e_game_server_node_statuses_enum_comparison_exp": { + "_eq": [ + 956 + ], + "_in": [ + 956 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 956 + ], + "_nin": [ + 956 + ], + "__typename": [ + 85 + ] + }, + "e_game_server_node_statuses_insert_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_game_server_node_statuses_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_game_server_node_statuses_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_game_server_node_statuses_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 951 + ], + "__typename": [ + 85 + ] + }, + "e_game_server_node_statuses_obj_rel_insert_input": { + "data": [ + 958 + ], + "on_conflict": [ + 963 + ], + "__typename": [ + 85 + ] + }, + "e_game_server_node_statuses_on_conflict": { + "constraint": [ + 955 + ], + "update_columns": [ + 970 + ], + "where": [ + 954 + ], + "__typename": [ + 85 + ] + }, + "e_game_server_node_statuses_order_by": { + "description": [ + 3648 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_game_server_node_statuses_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_game_server_node_statuses_select_column": {}, + "e_game_server_node_statuses_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_game_server_node_statuses_stream_cursor_input": { + "initial_value": [ + 969 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_game_server_node_statuses_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_game_server_node_statuses_update_column": {}, + "e_game_server_node_statuses_updates": { + "_set": [ + 967 + ], + "where": [ + 954 + ], + "__typename": [ + 85 + ] + }, + "e_league_movement_types": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_league_movement_types_aggregate": { + "aggregate": [ + 974 + ], + "nodes": [ + 972 + ], + "__typename": [ + 85 + ] + }, + "e_league_movement_types_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 987, + "[e_league_movement_types_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 980 + ], + "min": [ + 981 + ], + "__typename": [ + 85 + ] + }, + "e_league_movement_types_bool_exp": { + "_and": [ + 975 + ], + "_not": [ + 975 + ], + "_or": [ + 975 + ], + "description": [ + 87 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_league_movement_types_constraint": {}, + "e_league_movement_types_enum": {}, + "e_league_movement_types_enum_comparison_exp": { + "_eq": [ + 977 + ], + "_in": [ + 977 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 977 + ], + "_nin": [ + 977 + ], + "__typename": [ + 85 + ] + }, + "e_league_movement_types_insert_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_league_movement_types_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_league_movement_types_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_league_movement_types_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 972 + ], + "__typename": [ + 85 + ] + }, + "e_league_movement_types_obj_rel_insert_input": { + "data": [ + 979 + ], + "on_conflict": [ + 984 + ], + "__typename": [ + 85 + ] + }, + "e_league_movement_types_on_conflict": { + "constraint": [ + 976 + ], + "update_columns": [ + 991 + ], + "where": [ + 975 + ], + "__typename": [ + 85 + ] + }, + "e_league_movement_types_order_by": { + "description": [ + 3648 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_league_movement_types_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_league_movement_types_select_column": {}, + "e_league_movement_types_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_league_movement_types_stream_cursor_input": { + "initial_value": [ + 990 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_league_movement_types_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_league_movement_types_update_column": {}, + "e_league_movement_types_updates": { + "_set": [ + 988 + ], + "where": [ + 975 + ], + "__typename": [ + 85 + ] + }, + "e_league_proposal_statuses": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_league_proposal_statuses_aggregate": { + "aggregate": [ + 995 + ], + "nodes": [ + 993 + ], + "__typename": [ + 85 + ] + }, + "e_league_proposal_statuses_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1008, + "[e_league_proposal_statuses_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1001 + ], + "min": [ + 1002 + ], + "__typename": [ + 85 + ] + }, + "e_league_proposal_statuses_bool_exp": { + "_and": [ + 996 + ], + "_not": [ + 996 + ], + "_or": [ + 996 + ], + "description": [ + 87 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_league_proposal_statuses_constraint": {}, + "e_league_proposal_statuses_enum": {}, + "e_league_proposal_statuses_enum_comparison_exp": { + "_eq": [ + 998 + ], + "_in": [ + 998 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 998 + ], + "_nin": [ + 998 + ], + "__typename": [ + 85 + ] + }, + "e_league_proposal_statuses_insert_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_league_proposal_statuses_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_league_proposal_statuses_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_league_proposal_statuses_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 993 + ], + "__typename": [ + 85 + ] + }, + "e_league_proposal_statuses_obj_rel_insert_input": { + "data": [ + 1000 + ], + "on_conflict": [ + 1005 + ], + "__typename": [ + 85 + ] + }, + "e_league_proposal_statuses_on_conflict": { + "constraint": [ + 997 + ], + "update_columns": [ + 1012 + ], + "where": [ + 996 + ], + "__typename": [ + 85 + ] + }, + "e_league_proposal_statuses_order_by": { + "description": [ + 3648 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_league_proposal_statuses_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_league_proposal_statuses_select_column": {}, + "e_league_proposal_statuses_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_league_proposal_statuses_stream_cursor_input": { + "initial_value": [ + 1011 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_league_proposal_statuses_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_league_proposal_statuses_update_column": {}, + "e_league_proposal_statuses_updates": { + "_set": [ + 1009 + ], + "where": [ + 996 + ], + "__typename": [ + 85 + ] + }, + "e_league_registration_statuses": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_league_registration_statuses_aggregate": { + "aggregate": [ + 1016 + ], + "nodes": [ + 1014 + ], + "__typename": [ + 85 + ] + }, + "e_league_registration_statuses_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1029, + "[e_league_registration_statuses_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1022 + ], + "min": [ + 1023 + ], + "__typename": [ + 85 + ] + }, + "e_league_registration_statuses_bool_exp": { + "_and": [ + 1017 + ], + "_not": [ + 1017 + ], + "_or": [ + 1017 + ], + "description": [ + 87 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_league_registration_statuses_constraint": {}, + "e_league_registration_statuses_enum": {}, + "e_league_registration_statuses_enum_comparison_exp": { + "_eq": [ + 1019 + ], + "_in": [ + 1019 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 1019 + ], + "_nin": [ + 1019 + ], + "__typename": [ + 85 + ] + }, + "e_league_registration_statuses_insert_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_league_registration_statuses_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_league_registration_statuses_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_league_registration_statuses_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1014 + ], + "__typename": [ + 85 + ] + }, + "e_league_registration_statuses_obj_rel_insert_input": { + "data": [ + 1021 + ], + "on_conflict": [ + 1026 + ], + "__typename": [ + 85 + ] + }, + "e_league_registration_statuses_on_conflict": { + "constraint": [ + 1018 + ], + "update_columns": [ + 1033 + ], + "where": [ + 1017 + ], + "__typename": [ + 85 + ] + }, + "e_league_registration_statuses_order_by": { + "description": [ + 3648 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_league_registration_statuses_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_league_registration_statuses_select_column": {}, + "e_league_registration_statuses_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_league_registration_statuses_stream_cursor_input": { + "initial_value": [ + 1032 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_league_registration_statuses_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_league_registration_statuses_update_column": {}, + "e_league_registration_statuses_updates": { + "_set": [ + 1030 + ], + "where": [ + 1017 + ], + "__typename": [ + 85 + ] + }, + "e_league_season_statuses": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_league_season_statuses_aggregate": { + "aggregate": [ + 1037 + ], + "nodes": [ + 1035 + ], + "__typename": [ + 85 + ] + }, + "e_league_season_statuses_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1050, + "[e_league_season_statuses_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1043 + ], + "min": [ + 1044 + ], + "__typename": [ + 85 + ] + }, + "e_league_season_statuses_bool_exp": { + "_and": [ + 1038 + ], + "_not": [ + 1038 + ], + "_or": [ + 1038 + ], + "description": [ + 87 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_league_season_statuses_constraint": {}, + "e_league_season_statuses_enum": {}, + "e_league_season_statuses_enum_comparison_exp": { + "_eq": [ + 1040 + ], + "_in": [ + 1040 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 1040 + ], + "_nin": [ + 1040 + ], + "__typename": [ + 85 + ] + }, + "e_league_season_statuses_insert_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_league_season_statuses_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_league_season_statuses_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_league_season_statuses_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1035 + ], + "__typename": [ + 85 + ] + }, + "e_league_season_statuses_obj_rel_insert_input": { + "data": [ + 1042 + ], + "on_conflict": [ + 1047 + ], + "__typename": [ + 85 + ] + }, + "e_league_season_statuses_on_conflict": { + "constraint": [ + 1039 + ], + "update_columns": [ + 1054 + ], + "where": [ + 1038 + ], + "__typename": [ + 85 + ] + }, + "e_league_season_statuses_order_by": { + "description": [ + 3648 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_league_season_statuses_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_league_season_statuses_select_column": {}, + "e_league_season_statuses_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_league_season_statuses_stream_cursor_input": { + "initial_value": [ + 1053 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_league_season_statuses_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_league_season_statuses_update_column": {}, + "e_league_season_statuses_updates": { + "_set": [ + 1051 + ], + "where": [ + 1038 + ], + "__typename": [ + 85 + ] + }, + "e_lobby_access": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_lobby_access_aggregate": { + "aggregate": [ + 1058 + ], + "nodes": [ + 1056 + ], + "__typename": [ + 85 + ] + }, + "e_lobby_access_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1071, + "[e_lobby_access_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1064 + ], + "min": [ + 1065 + ], + "__typename": [ + 85 + ] + }, + "e_lobby_access_bool_exp": { + "_and": [ + 1059 + ], + "_not": [ + 1059 + ], + "_or": [ + 1059 + ], + "description": [ + 87 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_lobby_access_constraint": {}, + "e_lobby_access_enum": {}, + "e_lobby_access_enum_comparison_exp": { + "_eq": [ + 1061 + ], + "_in": [ + 1061 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 1061 + ], + "_nin": [ + 1061 + ], + "__typename": [ + 85 + ] + }, + "e_lobby_access_insert_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_lobby_access_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_lobby_access_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_lobby_access_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1056 + ], + "__typename": [ + 85 + ] + }, + "e_lobby_access_obj_rel_insert_input": { + "data": [ + 1063 + ], + "on_conflict": [ + 1068 + ], + "__typename": [ + 85 + ] + }, + "e_lobby_access_on_conflict": { + "constraint": [ + 1060 + ], + "update_columns": [ + 1075 + ], + "where": [ + 1059 + ], + "__typename": [ + 85 + ] + }, + "e_lobby_access_order_by": { + "description": [ + 3648 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_lobby_access_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_lobby_access_select_column": {}, + "e_lobby_access_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_lobby_access_stream_cursor_input": { + "initial_value": [ + 1074 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_lobby_access_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_lobby_access_update_column": {}, + "e_lobby_access_updates": { + "_set": [ + 1072 + ], + "where": [ + 1059 + ], + "__typename": [ + 85 + ] + }, + "e_lobby_player_status": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_lobby_player_status_aggregate": { + "aggregate": [ + 1079 + ], + "nodes": [ + 1077 + ], + "__typename": [ + 85 + ] + }, + "e_lobby_player_status_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1091, + "[e_lobby_player_status_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1085 + ], + "min": [ + 1086 + ], + "__typename": [ + 85 + ] + }, + "e_lobby_player_status_bool_exp": { + "_and": [ + 1080 + ], + "_not": [ + 1080 + ], + "_or": [ + 1080 + ], + "description": [ + 87 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_lobby_player_status_constraint": {}, + "e_lobby_player_status_enum": {}, + "e_lobby_player_status_enum_comparison_exp": { + "_eq": [ + 1082 + ], + "_in": [ + 1082 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 1082 + ], + "_nin": [ + 1082 + ], + "__typename": [ + 85 + ] + }, + "e_lobby_player_status_insert_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_lobby_player_status_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_lobby_player_status_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_lobby_player_status_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1077 + ], + "__typename": [ + 85 + ] + }, + "e_lobby_player_status_on_conflict": { + "constraint": [ + 1081 + ], + "update_columns": [ + 1095 + ], + "where": [ + 1080 + ], + "__typename": [ + 85 + ] + }, + "e_lobby_player_status_order_by": { + "description": [ + 3648 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_lobby_player_status_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_lobby_player_status_select_column": {}, + "e_lobby_player_status_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_lobby_player_status_stream_cursor_input": { + "initial_value": [ + 1094 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_lobby_player_status_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_lobby_player_status_update_column": {}, + "e_lobby_player_status_updates": { + "_set": [ + 1092 + ], + "where": [ + 1080 + ], + "__typename": [ + 85 + ] + }, + "e_map_pool_types": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_map_pool_types_aggregate": { + "aggregate": [ + 1099 + ], + "nodes": [ + 1097 + ], + "__typename": [ + 85 + ] + }, + "e_map_pool_types_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1112, + "[e_map_pool_types_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1105 + ], + "min": [ + 1106 + ], + "__typename": [ + 85 + ] + }, + "e_map_pool_types_bool_exp": { + "_and": [ + 1100 + ], + "_not": [ + 1100 + ], + "_or": [ + 1100 + ], + "description": [ + 87 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_map_pool_types_constraint": {}, + "e_map_pool_types_enum": {}, + "e_map_pool_types_enum_comparison_exp": { + "_eq": [ + 1102 + ], + "_in": [ + 1102 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 1102 + ], + "_nin": [ + 1102 + ], + "__typename": [ + 85 + ] + }, + "e_map_pool_types_insert_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_map_pool_types_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_map_pool_types_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_map_pool_types_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1097 + ], + "__typename": [ + 85 + ] + }, + "e_map_pool_types_obj_rel_insert_input": { + "data": [ + 1104 + ], + "on_conflict": [ + 1109 + ], + "__typename": [ + 85 + ] + }, + "e_map_pool_types_on_conflict": { + "constraint": [ + 1101 + ], + "update_columns": [ + 1116 + ], + "where": [ + 1100 + ], + "__typename": [ + 85 + ] + }, + "e_map_pool_types_order_by": { + "description": [ + 3648 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_map_pool_types_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_map_pool_types_select_column": {}, + "e_map_pool_types_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_map_pool_types_stream_cursor_input": { + "initial_value": [ + 1115 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_map_pool_types_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_map_pool_types_update_column": {}, + "e_map_pool_types_updates": { + "_set": [ + 1113 + ], + "where": [ + 1100 + ], + "__typename": [ + 85 + ] + }, + "e_match_clip_visibility": { + "description": [ + 85 + ], + "match_clips": [ + 2953, + { + "distinct_on": [ + 2975, + "[match_clips_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2973, + "[match_clips_order_by!]" + ], + "where": [ + 2962 + ] + } + ], + "match_clips_aggregate": [ + 2954, + { + "distinct_on": [ + 2975, + "[match_clips_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2973, + "[match_clips_order_by!]" + ], + "where": [ + 2962 + ] + } + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_match_clip_visibility_aggregate": { + "aggregate": [ + 1120 + ], + "nodes": [ + 1118 + ], + "__typename": [ + 85 + ] + }, + "e_match_clip_visibility_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1132, + "[e_match_clip_visibility_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1126 + ], + "min": [ + 1127 + ], + "__typename": [ + 85 + ] + }, + "e_match_clip_visibility_bool_exp": { + "_and": [ + 1121 + ], + "_not": [ + 1121 + ], + "_or": [ + 1121 + ], + "description": [ + 87 + ], + "match_clips": [ + 2962 + ], + "match_clips_aggregate": [ + 2955 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_match_clip_visibility_constraint": {}, + "e_match_clip_visibility_enum": {}, + "e_match_clip_visibility_enum_comparison_exp": { + "_eq": [ + 1123 + ], + "_in": [ + 1123 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 1123 + ], + "_nin": [ + 1123 + ], + "__typename": [ + 85 + ] + }, + "e_match_clip_visibility_insert_input": { + "description": [ + 85 + ], + "match_clips": [ + 2959 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_match_clip_visibility_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_match_clip_visibility_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_match_clip_visibility_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1118 + ], + "__typename": [ + 85 + ] + }, + "e_match_clip_visibility_on_conflict": { + "constraint": [ + 1122 + ], + "update_columns": [ + 1136 + ], + "where": [ + 1121 + ], + "__typename": [ + 85 + ] + }, + "e_match_clip_visibility_order_by": { + "description": [ + 3648 + ], + "match_clips_aggregate": [ + 2958 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_match_clip_visibility_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_match_clip_visibility_select_column": {}, + "e_match_clip_visibility_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_match_clip_visibility_stream_cursor_input": { + "initial_value": [ + 1135 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_match_clip_visibility_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_match_clip_visibility_update_column": {}, + "e_match_clip_visibility_updates": { + "_set": [ + 1133 + ], + "where": [ + 1121 + ], + "__typename": [ + 85 + ] + }, + "e_match_map_status": { + "description": [ + 85 + ], + "match_maps": [ + 3248, + { + "distinct_on": [ + 3270, + "[match_maps_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3268, + "[match_maps_order_by!]" + ], + "where": [ + 3257 + ] + } + ], + "match_maps_aggregate": [ + 3249, + { + "distinct_on": [ + 3270, + "[match_maps_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3268, + "[match_maps_order_by!]" + ], + "where": [ + 3257 + ] + } + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_match_map_status_aggregate": { + "aggregate": [ + 1140 + ], + "nodes": [ + 1138 + ], + "__typename": [ + 85 + ] + }, + "e_match_map_status_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1153, + "[e_match_map_status_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1146 + ], + "min": [ + 1147 + ], + "__typename": [ + 85 + ] + }, + "e_match_map_status_bool_exp": { + "_and": [ + 1141 + ], + "_not": [ + 1141 + ], + "_or": [ + 1141 + ], + "description": [ + 87 + ], + "match_maps": [ + 3257 + ], + "match_maps_aggregate": [ + 3250 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_match_map_status_constraint": {}, + "e_match_map_status_enum": {}, + "e_match_map_status_enum_comparison_exp": { + "_eq": [ + 1143 + ], + "_in": [ + 1143 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 1143 + ], + "_nin": [ + 1143 + ], + "__typename": [ + 85 + ] + }, + "e_match_map_status_insert_input": { + "description": [ + 85 + ], + "match_maps": [ + 3254 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_match_map_status_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_match_map_status_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_match_map_status_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1138 + ], + "__typename": [ + 85 + ] + }, + "e_match_map_status_obj_rel_insert_input": { + "data": [ + 1145 + ], + "on_conflict": [ + 1150 + ], + "__typename": [ + 85 + ] + }, + "e_match_map_status_on_conflict": { + "constraint": [ + 1142 + ], + "update_columns": [ + 1157 + ], + "where": [ + 1141 + ], + "__typename": [ + 85 + ] + }, + "e_match_map_status_order_by": { + "description": [ + 3648 + ], + "match_maps_aggregate": [ + 3253 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_match_map_status_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_match_map_status_select_column": {}, + "e_match_map_status_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_match_map_status_stream_cursor_input": { + "initial_value": [ + 1156 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_match_map_status_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_match_map_status_update_column": {}, + "e_match_map_status_updates": { + "_set": [ + 1154 + ], + "where": [ + 1141 + ], + "__typename": [ + 85 + ] + }, + "e_match_mode": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_match_mode_aggregate": { + "aggregate": [ + 1161 + ], + "nodes": [ + 1159 + ], + "__typename": [ + 85 + ] + }, + "e_match_mode_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1173, + "[e_match_mode_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1167 + ], + "min": [ + 1168 + ], + "__typename": [ + 85 + ] + }, + "e_match_mode_bool_exp": { + "_and": [ + 1162 + ], + "_not": [ + 1162 + ], + "_or": [ + 1162 + ], + "description": [ + 87 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_match_mode_constraint": {}, + "e_match_mode_enum": {}, + "e_match_mode_enum_comparison_exp": { + "_eq": [ + 1164 + ], + "_in": [ + 1164 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 1164 + ], + "_nin": [ + 1164 + ], + "__typename": [ + 85 + ] + }, + "e_match_mode_insert_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_match_mode_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_match_mode_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_match_mode_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1159 + ], + "__typename": [ + 85 + ] + }, + "e_match_mode_on_conflict": { + "constraint": [ + 1163 + ], + "update_columns": [ + 1177 + ], + "where": [ + 1162 + ], + "__typename": [ + 85 + ] + }, + "e_match_mode_order_by": { + "description": [ + 3648 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_match_mode_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_match_mode_select_column": {}, + "e_match_mode_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_match_mode_stream_cursor_input": { + "initial_value": [ + 1176 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_match_mode_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_match_mode_update_column": {}, + "e_match_mode_updates": { + "_set": [ + 1174 + ], + "where": [ + 1162 + ], + "__typename": [ + 85 + ] + }, + "e_match_party_sources": { + "description": [ + 85 + ], + "match_lineup_players": [ + 3041, + { + "distinct_on": [ + 3064, + "[match_lineup_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3062, + "[match_lineup_players_order_by!]" + ], + "where": [ + 3052 + ] + } + ], + "match_lineup_players_aggregate": [ + 3042, + { + "distinct_on": [ + 3064, + "[match_lineup_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3062, + "[match_lineup_players_order_by!]" + ], + "where": [ + 3052 + ] + } + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_match_party_sources_aggregate": { + "aggregate": [ + 1181 + ], + "nodes": [ + 1179 + ], + "__typename": [ + 85 + ] + }, + "e_match_party_sources_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1193, + "[e_match_party_sources_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1187 + ], + "min": [ + 1188 + ], + "__typename": [ + 85 + ] + }, + "e_match_party_sources_bool_exp": { + "_and": [ + 1182 + ], + "_not": [ + 1182 + ], + "_or": [ + 1182 + ], + "description": [ + 87 + ], + "match_lineup_players": [ + 3052 + ], + "match_lineup_players_aggregate": [ + 3043 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_match_party_sources_constraint": {}, + "e_match_party_sources_enum": {}, + "e_match_party_sources_enum_comparison_exp": { + "_eq": [ + 1184 + ], + "_in": [ + 1184 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 1184 + ], + "_nin": [ + 1184 + ], + "__typename": [ + 85 + ] + }, + "e_match_party_sources_insert_input": { + "description": [ + 85 + ], + "match_lineup_players": [ + 3049 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_match_party_sources_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_match_party_sources_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_match_party_sources_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1179 + ], + "__typename": [ + 85 + ] + }, + "e_match_party_sources_on_conflict": { + "constraint": [ + 1183 + ], + "update_columns": [ + 1197 + ], + "where": [ + 1182 + ], + "__typename": [ + 85 + ] + }, + "e_match_party_sources_order_by": { + "description": [ + 3648 + ], + "match_lineup_players_aggregate": [ + 3048 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_match_party_sources_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_match_party_sources_select_column": {}, + "e_match_party_sources_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_match_party_sources_stream_cursor_input": { + "initial_value": [ + 1196 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_match_party_sources_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_match_party_sources_update_column": {}, + "e_match_party_sources_updates": { + "_set": [ + 1194 + ], + "where": [ + 1182 + ], + "__typename": [ + 85 + ] + }, + "e_match_status": { + "description": [ + 85 + ], + "matches": [ + 3432, + { + "distinct_on": [ + 3456, + "[matches_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3454, + "[matches_order_by!]" + ], + "where": [ + 3443 + ] + } + ], + "matches_aggregate": [ + 3433, + { + "distinct_on": [ + 3456, + "[matches_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3454, + "[matches_order_by!]" + ], + "where": [ + 3443 + ] + } + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_match_status_aggregate": { + "aggregate": [ + 1201 + ], + "nodes": [ + 1199 + ], + "__typename": [ + 85 + ] + }, + "e_match_status_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1214, + "[e_match_status_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1207 + ], + "min": [ + 1208 + ], + "__typename": [ + 85 + ] + }, + "e_match_status_bool_exp": { + "_and": [ + 1202 + ], + "_not": [ + 1202 + ], + "_or": [ + 1202 + ], + "description": [ + 87 + ], + "matches": [ + 3443 + ], + "matches_aggregate": [ + 3434 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_match_status_constraint": {}, + "e_match_status_enum": {}, + "e_match_status_enum_comparison_exp": { + "_eq": [ + 1204 + ], + "_in": [ + 1204 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 1204 + ], + "_nin": [ + 1204 + ], + "__typename": [ + 85 + ] + }, + "e_match_status_insert_input": { + "description": [ + 85 + ], + "matches": [ + 3440 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_match_status_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_match_status_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_match_status_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1199 + ], + "__typename": [ + 85 + ] + }, + "e_match_status_obj_rel_insert_input": { + "data": [ + 1206 + ], + "on_conflict": [ + 1211 + ], + "__typename": [ + 85 + ] + }, + "e_match_status_on_conflict": { + "constraint": [ + 1203 + ], + "update_columns": [ + 1218 + ], + "where": [ + 1202 + ], + "__typename": [ + 85 + ] + }, + "e_match_status_order_by": { + "description": [ + 3648 + ], + "matches_aggregate": [ + 3439 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_match_status_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_match_status_select_column": {}, + "e_match_status_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_match_status_stream_cursor_input": { + "initial_value": [ + 1217 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_match_status_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_match_status_update_column": {}, + "e_match_status_updates": { + "_set": [ + 1215 + ], + "where": [ + 1202 + ], + "__typename": [ + 85 + ] + }, + "e_match_types": { + "description": [ + 85 + ], + "maps": [ + 2924, + { + "distinct_on": [ + 2945, + "[maps_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2943, + "[maps_order_by!]" + ], + "where": [ + 2933 + ] + } + ], + "maps_aggregate": [ + 2925, + { + "distinct_on": [ + 2945, + "[maps_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2943, + "[maps_order_by!]" + ], + "where": [ + 2933 + ] + } + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_match_types_aggregate": { + "aggregate": [ + 1222 + ], + "nodes": [ + 1220 + ], + "__typename": [ + 85 + ] + }, + "e_match_types_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1235, + "[e_match_types_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1228 + ], + "min": [ + 1229 + ], + "__typename": [ + 85 + ] + }, + "e_match_types_bool_exp": { + "_and": [ + 1223 + ], + "_not": [ + 1223 + ], + "_or": [ + 1223 + ], + "description": [ + 87 + ], + "maps": [ + 2933 + ], + "maps_aggregate": [ + 2926 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_match_types_constraint": {}, + "e_match_types_enum": {}, + "e_match_types_enum_comparison_exp": { + "_eq": [ + 1225 + ], + "_in": [ + 1225 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 1225 + ], + "_nin": [ + 1225 + ], + "__typename": [ + 85 + ] + }, + "e_match_types_insert_input": { + "description": [ + 85 + ], + "maps": [ + 2932 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_match_types_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_match_types_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_match_types_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1220 + ], + "__typename": [ + 85 + ] + }, + "e_match_types_obj_rel_insert_input": { + "data": [ + 1227 + ], + "on_conflict": [ + 1232 + ], + "__typename": [ + 85 + ] + }, + "e_match_types_on_conflict": { + "constraint": [ + 1224 + ], + "update_columns": [ + 1239 + ], + "where": [ + 1223 + ], + "__typename": [ + 85 + ] + }, + "e_match_types_order_by": { + "description": [ + 3648 + ], + "maps_aggregate": [ + 2931 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_match_types_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_match_types_select_column": {}, + "e_match_types_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_match_types_stream_cursor_input": { + "initial_value": [ + 1238 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_match_types_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_match_types_update_column": {}, + "e_match_types_updates": { + "_set": [ + 1236 + ], + "where": [ + 1223 + ], + "__typename": [ + 85 + ] + }, + "e_notification_types": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_notification_types_aggregate": { + "aggregate": [ + 1243 + ], + "nodes": [ + 1241 + ], + "__typename": [ + 85 + ] + }, + "e_notification_types_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1255, + "[e_notification_types_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1249 + ], + "min": [ + 1250 + ], + "__typename": [ + 85 + ] + }, + "e_notification_types_bool_exp": { + "_and": [ + 1244 + ], + "_not": [ + 1244 + ], + "_or": [ + 1244 + ], + "description": [ + 87 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_notification_types_constraint": {}, + "e_notification_types_enum": {}, + "e_notification_types_enum_comparison_exp": { + "_eq": [ + 1246 + ], + "_in": [ + 1246 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 1246 + ], + "_nin": [ + 1246 + ], + "__typename": [ + 85 + ] + }, + "e_notification_types_insert_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_notification_types_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_notification_types_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_notification_types_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1241 + ], + "__typename": [ + 85 + ] + }, + "e_notification_types_on_conflict": { + "constraint": [ + 1245 + ], + "update_columns": [ + 1259 + ], + "where": [ + 1244 + ], + "__typename": [ + 85 + ] + }, + "e_notification_types_order_by": { + "description": [ + 3648 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_notification_types_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_notification_types_select_column": {}, + "e_notification_types_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_notification_types_stream_cursor_input": { + "initial_value": [ + 1258 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_notification_types_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_notification_types_update_column": {}, + "e_notification_types_updates": { + "_set": [ + 1256 + ], + "where": [ + 1244 + ], + "__typename": [ + 85 + ] + }, + "e_objective_types": { + "description": [ + 85 + ], + "player_objectives": [ + 4204, + { + "distinct_on": [ + 4225, + "[player_objectives_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4223, + "[player_objectives_order_by!]" + ], + "where": [ + 4213 + ] + } + ], + "player_objectives_aggregate": [ + 4205, + { + "distinct_on": [ + 4225, + "[player_objectives_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4223, + "[player_objectives_order_by!]" + ], + "where": [ + 4213 + ] + } + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_objective_types_aggregate": { + "aggregate": [ + 1263 + ], + "nodes": [ + 1261 + ], + "__typename": [ + 85 + ] + }, + "e_objective_types_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1275, + "[e_objective_types_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1269 + ], + "min": [ + 1270 + ], + "__typename": [ + 85 + ] + }, + "e_objective_types_bool_exp": { + "_and": [ + 1264 + ], + "_not": [ + 1264 + ], + "_or": [ + 1264 + ], + "description": [ + 87 + ], + "player_objectives": [ + 4213 + ], + "player_objectives_aggregate": [ + 4206 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_objective_types_constraint": {}, + "e_objective_types_enum": {}, + "e_objective_types_enum_comparison_exp": { + "_eq": [ + 1266 + ], + "_in": [ + 1266 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 1266 + ], + "_nin": [ + 1266 + ], + "__typename": [ + 85 + ] + }, + "e_objective_types_insert_input": { + "description": [ + 85 + ], + "player_objectives": [ + 4210 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_objective_types_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_objective_types_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_objective_types_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1261 + ], + "__typename": [ + 85 + ] + }, + "e_objective_types_on_conflict": { + "constraint": [ + 1265 + ], + "update_columns": [ + 1279 + ], + "where": [ + 1264 + ], + "__typename": [ + 85 + ] + }, + "e_objective_types_order_by": { + "description": [ + 3648 + ], + "player_objectives_aggregate": [ + 4209 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_objective_types_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_objective_types_select_column": {}, + "e_objective_types_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_objective_types_stream_cursor_input": { + "initial_value": [ + 1278 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_objective_types_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_objective_types_update_column": {}, + "e_objective_types_updates": { + "_set": [ + 1276 + ], + "where": [ + 1264 + ], + "__typename": [ + 85 + ] + }, + "e_player_roles": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_player_roles_aggregate": { + "aggregate": [ + 1283 + ], + "nodes": [ + 1281 + ], + "__typename": [ + 85 + ] + }, + "e_player_roles_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1295, + "[e_player_roles_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1289 + ], + "min": [ + 1290 + ], + "__typename": [ + 85 + ] + }, + "e_player_roles_bool_exp": { + "_and": [ + 1284 + ], + "_not": [ + 1284 + ], + "_or": [ + 1284 + ], + "description": [ + 87 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_player_roles_constraint": {}, + "e_player_roles_enum": {}, + "e_player_roles_enum_comparison_exp": { + "_eq": [ + 1286 + ], + "_in": [ + 1286 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 1286 + ], + "_nin": [ + 1286 + ], + "__typename": [ + 85 + ] + }, + "e_player_roles_insert_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_player_roles_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_player_roles_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_player_roles_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1281 + ], + "__typename": [ + 85 + ] + }, + "e_player_roles_on_conflict": { + "constraint": [ + 1285 + ], + "update_columns": [ + 1299 + ], + "where": [ + 1284 + ], + "__typename": [ + 85 + ] + }, + "e_player_roles_order_by": { + "description": [ + 3648 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_player_roles_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_player_roles_select_column": {}, + "e_player_roles_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_player_roles_stream_cursor_input": { + "initial_value": [ + 1298 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_player_roles_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_player_roles_update_column": {}, + "e_player_roles_updates": { + "_set": [ + 1296 + ], + "where": [ + 1284 + ], + "__typename": [ + 85 + ] + }, + "e_plugin_runtimes": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_plugin_runtimes_aggregate": { + "aggregate": [ + 1303 + ], + "nodes": [ + 1301 + ], + "__typename": [ + 85 + ] + }, + "e_plugin_runtimes_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1315, + "[e_plugin_runtimes_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1309 + ], + "min": [ + 1310 + ], + "__typename": [ + 85 + ] + }, + "e_plugin_runtimes_bool_exp": { + "_and": [ + 1304 + ], + "_not": [ + 1304 + ], + "_or": [ + 1304 + ], + "description": [ + 87 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_plugin_runtimes_constraint": {}, + "e_plugin_runtimes_enum": {}, + "e_plugin_runtimes_enum_comparison_exp": { + "_eq": [ + 1306 + ], + "_in": [ + 1306 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 1306 + ], + "_nin": [ + 1306 + ], + "__typename": [ + 85 + ] + }, + "e_plugin_runtimes_insert_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_plugin_runtimes_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_plugin_runtimes_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_plugin_runtimes_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1301 + ], + "__typename": [ + 85 + ] + }, + "e_plugin_runtimes_on_conflict": { + "constraint": [ + 1305 + ], + "update_columns": [ + 1319 + ], + "where": [ + 1304 + ], + "__typename": [ + 85 + ] + }, + "e_plugin_runtimes_order_by": { + "description": [ + 3648 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_plugin_runtimes_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_plugin_runtimes_select_column": {}, + "e_plugin_runtimes_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_plugin_runtimes_stream_cursor_input": { + "initial_value": [ + 1318 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_plugin_runtimes_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_plugin_runtimes_update_column": {}, + "e_plugin_runtimes_updates": { + "_set": [ + 1316 + ], + "where": [ + 1304 + ], + "__typename": [ + 85 + ] + }, + "e_ready_settings": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_ready_settings_aggregate": { + "aggregate": [ + 1323 + ], + "nodes": [ + 1321 + ], + "__typename": [ + 85 + ] + }, + "e_ready_settings_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1335, + "[e_ready_settings_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1329 + ], + "min": [ + 1330 + ], + "__typename": [ + 85 + ] + }, + "e_ready_settings_bool_exp": { + "_and": [ + 1324 + ], + "_not": [ + 1324 + ], + "_or": [ + 1324 + ], + "description": [ + 87 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_ready_settings_constraint": {}, + "e_ready_settings_enum": {}, + "e_ready_settings_enum_comparison_exp": { + "_eq": [ + 1326 + ], + "_in": [ + 1326 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 1326 + ], + "_nin": [ + 1326 + ], + "__typename": [ + 85 + ] + }, + "e_ready_settings_insert_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_ready_settings_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_ready_settings_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_ready_settings_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1321 + ], + "__typename": [ + 85 + ] + }, + "e_ready_settings_on_conflict": { + "constraint": [ + 1325 + ], + "update_columns": [ + 1339 + ], + "where": [ + 1324 + ], + "__typename": [ + 85 + ] + }, + "e_ready_settings_order_by": { + "description": [ + 3648 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_ready_settings_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_ready_settings_select_column": {}, + "e_ready_settings_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_ready_settings_stream_cursor_input": { + "initial_value": [ + 1338 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_ready_settings_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_ready_settings_update_column": {}, + "e_ready_settings_updates": { + "_set": [ + 1336 + ], + "where": [ + 1324 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_scopes": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_scopes_aggregate": { + "aggregate": [ + 1343 + ], + "nodes": [ + 1341 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_scopes_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1354, + "[e_sanction_scopes_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1347 + ], + "min": [ + 1348 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_scopes_bool_exp": { + "_and": [ + 1344 + ], + "_not": [ + 1344 + ], + "_or": [ + 1344 + ], + "description": [ + 87 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_scopes_constraint": {}, + "e_sanction_scopes_insert_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_scopes_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_scopes_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_scopes_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1341 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_scopes_obj_rel_insert_input": { + "data": [ + 1346 + ], + "on_conflict": [ + 1351 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_scopes_on_conflict": { + "constraint": [ + 1345 + ], + "update_columns": [ + 1358 + ], + "where": [ + 1344 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_scopes_order_by": { + "description": [ + 3648 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_scopes_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_scopes_select_column": {}, + "e_sanction_scopes_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_scopes_stream_cursor_input": { + "initial_value": [ + 1357 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_scopes_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_scopes_update_column": {}, + "e_sanction_scopes_updates": { + "_set": [ + 1355 + ], + "where": [ + 1344 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_sources": { + "default_durations": [ + 85 + ], + "default_enabled": [ + 6 + ], + "default_scope": [ + 85 + ], + "default_threshold": [ + 41 + ], + "default_window_days": [ + 41 + ], + "description": [ + 85 + ], + "e_sanction_scope": [ + 1341 + ], + "value": [ + 85 + ], + "writes_platform_ban": [ + 6 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_sources_aggregate": { + "aggregate": [ + 1362 + ], + "nodes": [ + 1360 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_sources_aggregate_fields": { + "avg": [ + 1363 + ], + "count": [ + 41, + { + "columns": [ + 1374, + "[e_sanction_sources_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1368 + ], + "min": [ + 1369 + ], + "stddev": [ + 1376 + ], + "stddev_pop": [ + 1377 + ], + "stddev_samp": [ + 1378 + ], + "sum": [ + 1381 + ], + "var_pop": [ + 1384 + ], + "var_samp": [ + 1385 + ], + "variance": [ + 1386 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_sources_avg_fields": { + "default_threshold": [ + 32 + ], + "default_window_days": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_sources_bool_exp": { + "_and": [ + 1364 + ], + "_not": [ + 1364 + ], + "_or": [ + 1364 + ], + "default_durations": [ + 87 + ], + "default_enabled": [ + 7 + ], + "default_scope": [ + 87 + ], + "default_threshold": [ + 42 + ], + "default_window_days": [ + 42 + ], + "description": [ + 87 + ], + "e_sanction_scope": [ + 1344 + ], + "value": [ + 87 + ], + "writes_platform_ban": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_sources_constraint": {}, + "e_sanction_sources_inc_input": { + "default_threshold": [ + 41 + ], + "default_window_days": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_sources_insert_input": { + "default_durations": [ + 85 + ], + "default_enabled": [ + 6 + ], + "default_scope": [ + 85 + ], + "default_threshold": [ + 41 + ], + "default_window_days": [ + 41 + ], + "description": [ + 85 + ], + "e_sanction_scope": [ + 1350 + ], + "value": [ + 85 + ], + "writes_platform_ban": [ + 6 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_sources_max_fields": { + "default_durations": [ + 85 + ], + "default_scope": [ + 85 + ], + "default_threshold": [ + 41 + ], + "default_window_days": [ + 41 + ], + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_sources_min_fields": { + "default_durations": [ + 85 + ], + "default_scope": [ + 85 + ], + "default_threshold": [ + 41 + ], + "default_window_days": [ + 41 + ], + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_sources_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1360 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_sources_on_conflict": { + "constraint": [ + 1365 + ], + "update_columns": [ + 1382 + ], + "where": [ + 1364 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_sources_order_by": { + "default_durations": [ + 3648 + ], + "default_enabled": [ + 3648 + ], + "default_scope": [ + 3648 + ], + "default_threshold": [ + 3648 + ], + "default_window_days": [ + 3648 + ], + "description": [ + 3648 + ], + "e_sanction_scope": [ + 1352 + ], + "value": [ + 3648 + ], + "writes_platform_ban": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_sources_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_sources_select_column": {}, + "e_sanction_sources_set_input": { + "default_durations": [ + 85 + ], + "default_enabled": [ + 6 + ], + "default_scope": [ + 85 + ], + "default_threshold": [ + 41 + ], + "default_window_days": [ + 41 + ], + "description": [ + 85 + ], + "value": [ + 85 + ], + "writes_platform_ban": [ + 6 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_sources_stddev_fields": { + "default_threshold": [ + 32 + ], + "default_window_days": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_sources_stddev_pop_fields": { + "default_threshold": [ + 32 + ], + "default_window_days": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_sources_stddev_samp_fields": { + "default_threshold": [ + 32 + ], + "default_window_days": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_sources_stream_cursor_input": { + "initial_value": [ + 1380 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_sources_stream_cursor_value_input": { + "default_durations": [ + 85 + ], + "default_enabled": [ + 6 + ], + "default_scope": [ + 85 + ], + "default_threshold": [ + 41 + ], + "default_window_days": [ + 41 + ], + "description": [ + 85 + ], + "value": [ + 85 + ], + "writes_platform_ban": [ + 6 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_sources_sum_fields": { + "default_threshold": [ + 41 + ], + "default_window_days": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_sources_update_column": {}, + "e_sanction_sources_updates": { + "_inc": [ + 1366 + ], + "_set": [ + 1375 + ], + "where": [ + 1364 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_sources_var_pop_fields": { + "default_threshold": [ + 32 + ], + "default_window_days": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_sources_var_samp_fields": { + "default_threshold": [ + 32 + ], + "default_window_days": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_sources_variance_fields": { + "default_threshold": [ + 32 + ], + "default_window_days": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_types": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_types_aggregate": { + "aggregate": [ + 1389 + ], + "nodes": [ + 1387 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_types_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1402, + "[e_sanction_types_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1395 + ], + "min": [ + 1396 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_types_bool_exp": { + "_and": [ + 1390 + ], + "_not": [ + 1390 + ], + "_or": [ + 1390 + ], + "description": [ + 87 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_types_constraint": {}, + "e_sanction_types_enum": {}, + "e_sanction_types_enum_comparison_exp": { + "_eq": [ + 1392 + ], + "_in": [ + 1392 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 1392 + ], + "_nin": [ + 1392 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_types_insert_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_types_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_types_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_types_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1387 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_types_obj_rel_insert_input": { + "data": [ + 1394 + ], + "on_conflict": [ + 1399 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_types_on_conflict": { + "constraint": [ + 1391 + ], + "update_columns": [ + 1406 + ], + "where": [ + 1390 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_types_order_by": { + "description": [ + 3648 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_types_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_types_select_column": {}, + "e_sanction_types_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_types_stream_cursor_input": { + "initial_value": [ + 1405 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_types_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_sanction_types_update_column": {}, + "e_sanction_types_updates": { + "_set": [ + 1403 + ], + "where": [ + 1390 + ], + "__typename": [ + 85 + ] + }, + "e_scrim_request_statuses": { + "description": [ + 85 + ], + "scrim_requests": [ + 5093, + { + "distinct_on": [ + 5117, + "[team_scrim_requests_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5115, + "[team_scrim_requests_order_by!]" + ], + "where": [ + 5104 + ] + } + ], + "scrim_requests_aggregate": [ + 5094, + { + "distinct_on": [ + 5117, + "[team_scrim_requests_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5115, + "[team_scrim_requests_order_by!]" + ], + "where": [ + 5104 + ] + } + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_scrim_request_statuses_aggregate": { + "aggregate": [ + 1410 + ], + "nodes": [ + 1408 + ], + "__typename": [ + 85 + ] + }, + "e_scrim_request_statuses_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1422, + "[e_scrim_request_statuses_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1416 + ], + "min": [ + 1417 + ], + "__typename": [ + 85 + ] + }, + "e_scrim_request_statuses_bool_exp": { + "_and": [ + 1411 + ], + "_not": [ + 1411 + ], + "_or": [ + 1411 + ], + "description": [ + 87 + ], + "scrim_requests": [ + 5104 + ], + "scrim_requests_aggregate": [ + 5095 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_scrim_request_statuses_constraint": {}, + "e_scrim_request_statuses_enum": {}, + "e_scrim_request_statuses_enum_comparison_exp": { + "_eq": [ + 1413 + ], + "_in": [ + 1413 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 1413 + ], + "_nin": [ + 1413 + ], + "__typename": [ + 85 + ] + }, + "e_scrim_request_statuses_insert_input": { + "description": [ + 85 + ], + "scrim_requests": [ + 5101 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_scrim_request_statuses_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_scrim_request_statuses_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_scrim_request_statuses_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1408 + ], + "__typename": [ + 85 + ] + }, + "e_scrim_request_statuses_on_conflict": { + "constraint": [ + 1412 + ], + "update_columns": [ + 1426 + ], + "where": [ + 1411 + ], + "__typename": [ + 85 + ] + }, + "e_scrim_request_statuses_order_by": { + "description": [ + 3648 + ], + "scrim_requests_aggregate": [ + 5100 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_scrim_request_statuses_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_scrim_request_statuses_select_column": {}, + "e_scrim_request_statuses_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_scrim_request_statuses_stream_cursor_input": { + "initial_value": [ + 1425 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_scrim_request_statuses_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_scrim_request_statuses_update_column": {}, + "e_scrim_request_statuses_updates": { + "_set": [ + 1423 + ], + "where": [ + 1411 + ], + "__typename": [ + 85 + ] + }, + "e_server_types": { + "description": [ + 85 + ], + "servers": [ + 4761, + { + "distinct_on": [ + 4790, + "[servers_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4787, + "[servers_order_by!]" + ], + "where": [ + 4773 + ] + } + ], + "servers_aggregate": [ + 4762, + { + "distinct_on": [ + 4790, + "[servers_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4787, + "[servers_order_by!]" + ], + "where": [ + 4773 + ] + } + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_server_types_aggregate": { + "aggregate": [ + 1430 + ], + "nodes": [ + 1428 + ], + "__typename": [ + 85 + ] + }, + "e_server_types_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1442, + "[e_server_types_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1436 + ], + "min": [ + 1437 + ], + "__typename": [ + 85 + ] + }, + "e_server_types_bool_exp": { + "_and": [ + 1431 + ], + "_not": [ + 1431 + ], + "_or": [ + 1431 + ], + "description": [ + 87 + ], + "servers": [ + 4773 + ], + "servers_aggregate": [ + 4763 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_server_types_constraint": {}, + "e_server_types_enum": {}, + "e_server_types_enum_comparison_exp": { + "_eq": [ + 1433 + ], + "_in": [ + 1433 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 1433 + ], + "_nin": [ + 1433 + ], + "__typename": [ + 85 + ] + }, + "e_server_types_insert_input": { + "description": [ + 85 + ], + "servers": [ + 4770 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_server_types_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_server_types_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_server_types_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1428 + ], + "__typename": [ + 85 + ] + }, + "e_server_types_on_conflict": { + "constraint": [ + 1432 + ], + "update_columns": [ + 1446 + ], + "where": [ + 1431 + ], + "__typename": [ + 85 + ] + }, + "e_server_types_order_by": { + "description": [ + 3648 + ], + "servers_aggregate": [ + 4768 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_server_types_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_server_types_select_column": {}, + "e_server_types_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_server_types_stream_cursor_input": { + "initial_value": [ + 1445 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_server_types_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_server_types_update_column": {}, + "e_server_types_updates": { + "_set": [ + 1443 + ], + "where": [ + 1431 + ], + "__typename": [ + 85 + ] + }, + "e_sides": { + "description": [ + 85 + ], + "match_map_lineup_1": [ + 3248, + { + "distinct_on": [ + 3270, + "[match_maps_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3268, + "[match_maps_order_by!]" + ], + "where": [ + 3257 + ] + } + ], + "match_map_lineup_1_aggregate": [ + 3249, + { + "distinct_on": [ + 3270, + "[match_maps_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3268, + "[match_maps_order_by!]" + ], + "where": [ + 3257 + ] + } + ], + "match_map_lineup_2": [ + 3248, + { + "distinct_on": [ + 3270, + "[match_maps_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3268, + "[match_maps_order_by!]" + ], + "where": [ + 3257 + ] + } + ], + "match_map_lineup_2_aggregate": [ + 3249, + { + "distinct_on": [ + 3270, + "[match_maps_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3268, + "[match_maps_order_by!]" + ], + "where": [ + 3257 + ] + } + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_sides_aggregate": { + "aggregate": [ + 1450 + ], + "nodes": [ + 1448 + ], + "__typename": [ + 85 + ] + }, + "e_sides_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1462, + "[e_sides_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1456 + ], + "min": [ + 1457 + ], + "__typename": [ + 85 + ] + }, + "e_sides_bool_exp": { + "_and": [ + 1451 + ], + "_not": [ + 1451 + ], + "_or": [ + 1451 + ], + "description": [ + 87 + ], + "match_map_lineup_1": [ + 3257 + ], + "match_map_lineup_1_aggregate": [ + 3250 + ], + "match_map_lineup_2": [ + 3257 + ], + "match_map_lineup_2_aggregate": [ + 3250 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_sides_constraint": {}, + "e_sides_enum": {}, + "e_sides_enum_comparison_exp": { + "_eq": [ + 1453 + ], + "_in": [ + 1453 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 1453 + ], + "_nin": [ + 1453 + ], + "__typename": [ + 85 + ] + }, + "e_sides_insert_input": { + "description": [ + 85 + ], + "match_map_lineup_1": [ + 3254 + ], + "match_map_lineup_2": [ + 3254 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_sides_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_sides_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_sides_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1448 + ], + "__typename": [ + 85 + ] + }, + "e_sides_on_conflict": { + "constraint": [ + 1452 + ], + "update_columns": [ + 1466 + ], + "where": [ + 1451 + ], + "__typename": [ + 85 + ] + }, + "e_sides_order_by": { + "description": [ + 3648 + ], + "match_map_lineup_1_aggregate": [ + 3253 + ], + "match_map_lineup_2_aggregate": [ + 3253 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_sides_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_sides_select_column": {}, + "e_sides_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_sides_stream_cursor_input": { + "initial_value": [ + 1465 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_sides_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_sides_update_column": {}, + "e_sides_updates": { + "_set": [ + 1463 + ], + "where": [ + 1451 + ], + "__typename": [ + 85 + ] + }, + "e_system_alert_types": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_system_alert_types_aggregate": { + "aggregate": [ + 1470 + ], + "nodes": [ + 1468 + ], + "__typename": [ + 85 + ] + }, + "e_system_alert_types_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1482, + "[e_system_alert_types_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1476 + ], + "min": [ + 1477 + ], + "__typename": [ + 85 + ] + }, + "e_system_alert_types_bool_exp": { + "_and": [ + 1471 + ], + "_not": [ + 1471 + ], + "_or": [ + 1471 + ], + "description": [ + 87 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_system_alert_types_constraint": {}, + "e_system_alert_types_enum": {}, + "e_system_alert_types_enum_comparison_exp": { + "_eq": [ + 1473 + ], + "_in": [ + 1473 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 1473 + ], + "_nin": [ + 1473 + ], + "__typename": [ + 85 + ] + }, + "e_system_alert_types_insert_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_system_alert_types_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_system_alert_types_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_system_alert_types_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1468 + ], + "__typename": [ + 85 + ] + }, + "e_system_alert_types_on_conflict": { + "constraint": [ + 1472 + ], + "update_columns": [ + 1486 + ], + "where": [ + 1471 + ], + "__typename": [ + 85 + ] + }, + "e_system_alert_types_order_by": { + "description": [ + 3648 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_system_alert_types_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_system_alert_types_select_column": {}, + "e_system_alert_types_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_system_alert_types_stream_cursor_input": { + "initial_value": [ + 1485 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_system_alert_types_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_system_alert_types_update_column": {}, + "e_system_alert_types_updates": { + "_set": [ + 1483 + ], + "where": [ + 1471 + ], + "__typename": [ + 85 + ] + }, + "e_team_roles": { + "description": [ + 85 + ], + "team_rosters": [ + 4952, + { + "distinct_on": [ + 4975, + "[team_roster_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4973, + "[team_roster_order_by!]" + ], + "where": [ + 4963 + ] + } + ], + "team_rosters_aggregate": [ + 4953, + { + "distinct_on": [ + 4975, + "[team_roster_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4973, + "[team_roster_order_by!]" + ], + "where": [ + 4963 + ] + } + ], + "tournament_team_rosters": [ + 5809, + { + "distinct_on": [ + 5830, + "[tournament_team_roster_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5828, + "[tournament_team_roster_order_by!]" + ], + "where": [ + 5818 + ] + } + ], + "tournament_team_rosters_aggregate": [ + 5810, + { + "distinct_on": [ + 5830, + "[tournament_team_roster_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5828, + "[tournament_team_roster_order_by!]" + ], + "where": [ + 5818 + ] + } + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_team_roles_aggregate": { + "aggregate": [ + 1490 + ], + "nodes": [ + 1488 + ], + "__typename": [ + 85 + ] + }, + "e_team_roles_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1503, + "[e_team_roles_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1496 + ], + "min": [ + 1497 + ], + "__typename": [ + 85 + ] + }, + "e_team_roles_bool_exp": { + "_and": [ + 1491 + ], + "_not": [ + 1491 + ], + "_or": [ + 1491 + ], + "description": [ + 87 + ], + "team_rosters": [ + 4963 + ], + "team_rosters_aggregate": [ + 4954 + ], + "tournament_team_rosters": [ + 5818 + ], + "tournament_team_rosters_aggregate": [ + 5811 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_team_roles_constraint": {}, + "e_team_roles_enum": {}, + "e_team_roles_enum_comparison_exp": { + "_eq": [ + 1493 + ], + "_in": [ + 1493 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 1493 + ], + "_nin": [ + 1493 + ], + "__typename": [ + 85 + ] + }, + "e_team_roles_insert_input": { + "description": [ + 85 + ], + "team_rosters": [ + 4960 + ], + "tournament_team_rosters": [ + 5815 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_team_roles_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_team_roles_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_team_roles_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1488 + ], + "__typename": [ + 85 + ] + }, + "e_team_roles_obj_rel_insert_input": { + "data": [ + 1495 + ], + "on_conflict": [ + 1500 + ], + "__typename": [ + 85 + ] + }, + "e_team_roles_on_conflict": { + "constraint": [ + 1492 + ], + "update_columns": [ + 1507 + ], + "where": [ + 1491 + ], + "__typename": [ + 85 + ] + }, + "e_team_roles_order_by": { + "description": [ + 3648 + ], + "team_rosters_aggregate": [ + 4959 + ], + "tournament_team_rosters_aggregate": [ + 5814 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_team_roles_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_team_roles_select_column": {}, + "e_team_roles_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_team_roles_stream_cursor_input": { + "initial_value": [ + 1506 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_team_roles_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_team_roles_update_column": {}, + "e_team_roles_updates": { + "_set": [ + 1504 + ], + "where": [ + 1491 + ], + "__typename": [ + 85 + ] + }, + "e_team_roster_statuses": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_team_roster_statuses_aggregate": { + "aggregate": [ + 1511 + ], + "nodes": [ + 1509 + ], + "__typename": [ + 85 + ] + }, + "e_team_roster_statuses_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1523, + "[e_team_roster_statuses_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1517 + ], + "min": [ + 1518 + ], + "__typename": [ + 85 + ] + }, + "e_team_roster_statuses_bool_exp": { + "_and": [ + 1512 + ], + "_not": [ + 1512 + ], + "_or": [ + 1512 + ], + "description": [ + 87 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_team_roster_statuses_constraint": {}, + "e_team_roster_statuses_enum": {}, + "e_team_roster_statuses_enum_comparison_exp": { + "_eq": [ + 1514 + ], + "_in": [ + 1514 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 1514 + ], + "_nin": [ + 1514 + ], + "__typename": [ + 85 + ] + }, + "e_team_roster_statuses_insert_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_team_roster_statuses_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_team_roster_statuses_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_team_roster_statuses_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1509 + ], + "__typename": [ + 85 + ] + }, + "e_team_roster_statuses_on_conflict": { + "constraint": [ + 1513 + ], + "update_columns": [ + 1527 + ], + "where": [ + 1512 + ], + "__typename": [ + 85 + ] + }, + "e_team_roster_statuses_order_by": { + "description": [ + 3648 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_team_roster_statuses_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_team_roster_statuses_select_column": {}, + "e_team_roster_statuses_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_team_roster_statuses_stream_cursor_input": { + "initial_value": [ + 1526 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_team_roster_statuses_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_team_roster_statuses_update_column": {}, + "e_team_roster_statuses_updates": { + "_set": [ + 1524 + ], + "where": [ + 1512 + ], + "__typename": [ + 85 + ] + }, + "e_timeout_settings": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_timeout_settings_aggregate": { + "aggregate": [ + 1531 + ], + "nodes": [ + 1529 + ], + "__typename": [ + 85 + ] + }, + "e_timeout_settings_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1543, + "[e_timeout_settings_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1537 + ], + "min": [ + 1538 + ], + "__typename": [ + 85 + ] + }, + "e_timeout_settings_bool_exp": { + "_and": [ + 1532 + ], + "_not": [ + 1532 + ], + "_or": [ + 1532 + ], + "description": [ + 87 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_timeout_settings_constraint": {}, + "e_timeout_settings_enum": {}, + "e_timeout_settings_enum_comparison_exp": { + "_eq": [ + 1534 + ], + "_in": [ + 1534 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 1534 + ], + "_nin": [ + 1534 + ], + "__typename": [ + 85 + ] + }, + "e_timeout_settings_insert_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_timeout_settings_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_timeout_settings_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_timeout_settings_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1529 + ], + "__typename": [ + 85 + ] + }, + "e_timeout_settings_on_conflict": { + "constraint": [ + 1533 + ], + "update_columns": [ + 1547 + ], + "where": [ + 1532 + ], + "__typename": [ + 85 + ] + }, + "e_timeout_settings_order_by": { + "description": [ + 3648 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_timeout_settings_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_timeout_settings_select_column": {}, + "e_timeout_settings_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_timeout_settings_stream_cursor_input": { + "initial_value": [ + 1546 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_timeout_settings_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_timeout_settings_update_column": {}, + "e_timeout_settings_updates": { + "_set": [ + 1544 + ], + "where": [ + 1532 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_categories": { + "description": [ + 85 + ], + "tournament_categories": [ + 5333, + { + "distinct_on": [ + 5351, + "[tournament_categories_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5349, + "[tournament_categories_order_by!]" + ], + "where": [ + 5340 + ] + } + ], + "tournament_categories_aggregate": [ + 5334, + { + "distinct_on": [ + 5351, + "[tournament_categories_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5349, + "[tournament_categories_order_by!]" + ], + "where": [ + 5340 + ] + } + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_categories_aggregate": { + "aggregate": [ + 1551 + ], + "nodes": [ + 1549 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_categories_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1564, + "[e_tournament_categories_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1557 + ], + "min": [ + 1558 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_categories_bool_exp": { + "_and": [ + 1552 + ], + "_not": [ + 1552 + ], + "_or": [ + 1552 + ], + "description": [ + 87 + ], + "tournament_categories": [ + 5340 + ], + "tournament_categories_aggregate": [ + 5335 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_categories_constraint": {}, + "e_tournament_categories_enum": {}, + "e_tournament_categories_enum_comparison_exp": { + "_eq": [ + 1554 + ], + "_in": [ + 1554 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 1554 + ], + "_nin": [ + 1554 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_categories_insert_input": { + "description": [ + 85 + ], + "tournament_categories": [ + 5339 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_categories_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_categories_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_categories_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1549 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_categories_obj_rel_insert_input": { + "data": [ + 1556 + ], + "on_conflict": [ + 1561 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_categories_on_conflict": { + "constraint": [ + 1553 + ], + "update_columns": [ + 1568 + ], + "where": [ + 1552 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_categories_order_by": { + "description": [ + 3648 + ], + "tournament_categories_aggregate": [ + 5338 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_categories_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_categories_select_column": {}, + "e_tournament_categories_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_categories_stream_cursor_input": { + "initial_value": [ + 1567 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_categories_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_categories_update_column": {}, + "e_tournament_categories_updates": { + "_set": [ + 1565 + ], + "where": [ + 1552 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_free_agent_statuses": { + "description": [ + 85 + ], + "tournament_free_agents": [ + 5357, + { + "distinct_on": [ + 5378, + "[tournament_free_agents_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5376, + "[tournament_free_agents_order_by!]" + ], + "where": [ + 5366 + ] + } + ], + "tournament_free_agents_aggregate": [ + 5358, + { + "distinct_on": [ + 5378, + "[tournament_free_agents_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5376, + "[tournament_free_agents_order_by!]" + ], + "where": [ + 5366 + ] + } + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_free_agent_statuses_aggregate": { + "aggregate": [ + 1572 + ], + "nodes": [ + 1570 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_free_agent_statuses_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1585, + "[e_tournament_free_agent_statuses_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1578 + ], + "min": [ + 1579 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_free_agent_statuses_bool_exp": { + "_and": [ + 1573 + ], + "_not": [ + 1573 + ], + "_or": [ + 1573 + ], + "description": [ + 87 + ], + "tournament_free_agents": [ + 5366 + ], + "tournament_free_agents_aggregate": [ + 5359 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_free_agent_statuses_constraint": {}, + "e_tournament_free_agent_statuses_enum": {}, + "e_tournament_free_agent_statuses_enum_comparison_exp": { + "_eq": [ + 1575 + ], + "_in": [ + 1575 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 1575 + ], + "_nin": [ + 1575 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_free_agent_statuses_insert_input": { + "description": [ + 85 + ], + "tournament_free_agents": [ + 5363 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_free_agent_statuses_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_free_agent_statuses_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_free_agent_statuses_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1570 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_free_agent_statuses_obj_rel_insert_input": { + "data": [ + 1577 + ], + "on_conflict": [ + 1582 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_free_agent_statuses_on_conflict": { + "constraint": [ + 1574 + ], + "update_columns": [ + 1589 + ], + "where": [ + 1573 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_free_agent_statuses_order_by": { + "description": [ + 3648 + ], + "tournament_free_agents_aggregate": [ + 5362 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_free_agent_statuses_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_free_agent_statuses_select_column": {}, + "e_tournament_free_agent_statuses_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_free_agent_statuses_stream_cursor_input": { + "initial_value": [ + 1588 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_free_agent_statuses_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_free_agent_statuses_update_column": {}, + "e_tournament_free_agent_statuses_updates": { + "_set": [ + 1586 + ], + "where": [ + 1573 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_registration_types": { + "description": [ + 85 + ], + "tournaments": [ + 5896, + { + "distinct_on": [ + 5930, + "[tournaments_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5928, + "[tournaments_order_by!]" + ], + "where": [ + 5917 + ] + } + ], + "tournaments_aggregate": [ + 5897, + { + "distinct_on": [ + 5930, + "[tournaments_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5928, + "[tournaments_order_by!]" + ], + "where": [ + 5917 + ] + } + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_registration_types_aggregate": { + "aggregate": [ + 1593 + ], + "nodes": [ + 1591 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_registration_types_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1605, + "[e_tournament_registration_types_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1599 + ], + "min": [ + 1600 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_registration_types_bool_exp": { + "_and": [ + 1594 + ], + "_not": [ + 1594 + ], + "_or": [ + 1594 + ], + "description": [ + 87 + ], + "tournaments": [ + 5917 + ], + "tournaments_aggregate": [ + 5898 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_registration_types_constraint": {}, + "e_tournament_registration_types_enum": {}, + "e_tournament_registration_types_enum_comparison_exp": { + "_eq": [ + 1596 + ], + "_in": [ + 1596 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 1596 + ], + "_nin": [ + 1596 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_registration_types_insert_input": { + "description": [ + 85 + ], + "tournaments": [ + 5914 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_registration_types_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_registration_types_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_registration_types_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1591 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_registration_types_on_conflict": { + "constraint": [ + 1595 + ], + "update_columns": [ + 1609 + ], + "where": [ + 1594 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_registration_types_order_by": { + "description": [ + 3648 + ], + "tournaments_aggregate": [ + 5913 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_registration_types_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_registration_types_select_column": {}, + "e_tournament_registration_types_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_registration_types_stream_cursor_input": { + "initial_value": [ + 1608 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_registration_types_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_registration_types_update_column": {}, + "e_tournament_registration_types_updates": { + "_set": [ + 1606 + ], + "where": [ + 1594 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_stage_types": { + "description": [ + 85 + ], + "tournament_stages": [ + 5717, + { + "distinct_on": [ + 5746, + "[tournament_stages_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5743, + "[tournament_stages_order_by!]" + ], + "where": [ + 5729 + ] + } + ], + "tournament_stages_aggregate": [ + 5718, + { + "distinct_on": [ + 5746, + "[tournament_stages_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5743, + "[tournament_stages_order_by!]" + ], + "where": [ + 5729 + ] + } + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_stage_types_aggregate": { + "aggregate": [ + 1613 + ], + "nodes": [ + 1611 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_stage_types_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1626, + "[e_tournament_stage_types_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1619 + ], + "min": [ + 1620 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_stage_types_bool_exp": { + "_and": [ + 1614 + ], + "_not": [ + 1614 + ], + "_or": [ + 1614 + ], + "description": [ + 87 + ], + "tournament_stages": [ + 5729 + ], + "tournament_stages_aggregate": [ + 5719 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_stage_types_constraint": {}, + "e_tournament_stage_types_enum": {}, + "e_tournament_stage_types_enum_comparison_exp": { + "_eq": [ + 1616 + ], + "_in": [ + 1616 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 1616 + ], + "_nin": [ + 1616 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_stage_types_insert_input": { + "description": [ + 85 + ], + "tournament_stages": [ + 5726 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_stage_types_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_stage_types_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_stage_types_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1611 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_stage_types_obj_rel_insert_input": { + "data": [ + 1618 + ], + "on_conflict": [ + 1623 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_stage_types_on_conflict": { + "constraint": [ + 1615 + ], + "update_columns": [ + 1630 + ], + "where": [ + 1614 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_stage_types_order_by": { + "description": [ + 3648 + ], + "tournament_stages_aggregate": [ + 5724 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_stage_types_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_stage_types_select_column": {}, + "e_tournament_stage_types_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_stage_types_stream_cursor_input": { + "initial_value": [ + 1629 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_stage_types_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_stage_types_update_column": {}, + "e_tournament_stage_types_updates": { + "_set": [ + 1627 + ], + "where": [ + 1614 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_status": { + "description": [ + 85 + ], + "tournaments": [ + 5896, + { + "distinct_on": [ + 5930, + "[tournaments_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5928, + "[tournaments_order_by!]" + ], + "where": [ + 5917 + ] + } + ], + "tournaments_aggregate": [ + 5897, + { + "distinct_on": [ + 5930, + "[tournaments_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5928, + "[tournaments_order_by!]" + ], + "where": [ + 5917 + ] + } + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_status_aggregate": { + "aggregate": [ + 1634 + ], + "nodes": [ + 1632 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_status_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1647, + "[e_tournament_status_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1640 + ], + "min": [ + 1641 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_status_bool_exp": { + "_and": [ + 1635 + ], + "_not": [ + 1635 + ], + "_or": [ + 1635 + ], + "description": [ + 87 + ], + "tournaments": [ + 5917 + ], + "tournaments_aggregate": [ + 5898 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_status_constraint": {}, + "e_tournament_status_enum": {}, + "e_tournament_status_enum_comparison_exp": { + "_eq": [ + 1637 + ], + "_in": [ + 1637 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 1637 + ], + "_nin": [ + 1637 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_status_insert_input": { + "description": [ + 85 + ], + "tournaments": [ + 5914 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_status_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_status_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_status_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1632 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_status_obj_rel_insert_input": { + "data": [ + 1639 + ], + "on_conflict": [ + 1644 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_status_on_conflict": { + "constraint": [ + 1636 + ], + "update_columns": [ + 1651 + ], + "where": [ + 1635 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_status_order_by": { + "description": [ + 3648 + ], + "tournaments_aggregate": [ + 5913 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_status_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_status_select_column": {}, + "e_tournament_status_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_status_stream_cursor_input": { + "initial_value": [ + 1650 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_status_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_tournament_status_update_column": {}, + "e_tournament_status_updates": { + "_set": [ + 1648 + ], + "where": [ + 1635 + ], + "__typename": [ + 85 + ] + }, + "e_utility_practice_access": { + "description": [ + 85 + ], + "utility_practice_sessions": [ + 6626, + { + "distinct_on": [ + 6650, + "[utility_practice_sessions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6648, + "[utility_practice_sessions_order_by!]" + ], + "where": [ + 6637 + ] + } + ], + "utility_practice_sessions_aggregate": [ + 6627, + { + "distinct_on": [ + 6650, + "[utility_practice_sessions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6648, + "[utility_practice_sessions_order_by!]" + ], + "where": [ + 6637 + ] + } + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_practice_access_aggregate": { + "aggregate": [ + 1655 + ], + "nodes": [ + 1653 + ], + "__typename": [ + 85 + ] + }, + "e_utility_practice_access_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1667, + "[e_utility_practice_access_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1661 + ], + "min": [ + 1662 + ], + "__typename": [ + 85 + ] + }, + "e_utility_practice_access_bool_exp": { + "_and": [ + 1656 + ], + "_not": [ + 1656 + ], + "_or": [ + 1656 + ], + "description": [ + 87 + ], + "utility_practice_sessions": [ + 6637 + ], + "utility_practice_sessions_aggregate": [ + 6628 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_utility_practice_access_constraint": {}, + "e_utility_practice_access_enum": {}, + "e_utility_practice_access_enum_comparison_exp": { + "_eq": [ + 1658 + ], + "_in": [ + 1658 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 1658 + ], + "_nin": [ + 1658 + ], + "__typename": [ + 85 + ] + }, + "e_utility_practice_access_insert_input": { + "description": [ + 85 + ], + "utility_practice_sessions": [ + 6634 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_practice_access_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_practice_access_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_practice_access_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1653 + ], + "__typename": [ + 85 + ] + }, + "e_utility_practice_access_on_conflict": { + "constraint": [ + 1657 + ], + "update_columns": [ + 1671 + ], + "where": [ + 1656 + ], + "__typename": [ + 85 + ] + }, + "e_utility_practice_access_order_by": { + "description": [ + 3648 + ], + "utility_practice_sessions_aggregate": [ + 6633 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_utility_practice_access_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_practice_access_select_column": {}, + "e_utility_practice_access_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_practice_access_stream_cursor_input": { + "initial_value": [ + 1670 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_utility_practice_access_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_practice_access_update_column": {}, + "e_utility_practice_access_updates": { + "_set": [ + 1668 + ], + "where": [ + 1656 + ], + "__typename": [ + 85 + ] + }, + "e_utility_practice_statuses": { + "description": [ + 85 + ], + "utility_practice_sessions": [ + 6626, + { + "distinct_on": [ + 6650, + "[utility_practice_sessions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6648, + "[utility_practice_sessions_order_by!]" + ], + "where": [ + 6637 + ] + } + ], + "utility_practice_sessions_aggregate": [ + 6627, + { + "distinct_on": [ + 6650, + "[utility_practice_sessions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6648, + "[utility_practice_sessions_order_by!]" + ], + "where": [ + 6637 + ] + } + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_practice_statuses_aggregate": { + "aggregate": [ + 1675 + ], + "nodes": [ + 1673 + ], + "__typename": [ + 85 + ] + }, + "e_utility_practice_statuses_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1688, + "[e_utility_practice_statuses_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1681 + ], + "min": [ + 1682 + ], + "__typename": [ + 85 + ] + }, + "e_utility_practice_statuses_bool_exp": { + "_and": [ + 1676 + ], + "_not": [ + 1676 + ], + "_or": [ + 1676 + ], + "description": [ + 87 + ], + "utility_practice_sessions": [ + 6637 + ], + "utility_practice_sessions_aggregate": [ + 6628 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_utility_practice_statuses_constraint": {}, + "e_utility_practice_statuses_enum": {}, + "e_utility_practice_statuses_enum_comparison_exp": { + "_eq": [ + 1678 + ], + "_in": [ + 1678 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 1678 + ], + "_nin": [ + 1678 + ], + "__typename": [ + 85 + ] + }, + "e_utility_practice_statuses_insert_input": { + "description": [ + 85 + ], + "utility_practice_sessions": [ + 6634 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_practice_statuses_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_practice_statuses_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_practice_statuses_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1673 + ], + "__typename": [ + 85 + ] + }, + "e_utility_practice_statuses_obj_rel_insert_input": { + "data": [ + 1680 + ], + "on_conflict": [ + 1685 + ], + "__typename": [ + 85 + ] + }, + "e_utility_practice_statuses_on_conflict": { + "constraint": [ + 1677 + ], + "update_columns": [ + 1692 + ], + "where": [ + 1676 + ], + "__typename": [ + 85 + ] + }, + "e_utility_practice_statuses_order_by": { + "description": [ + 3648 + ], + "utility_practice_sessions_aggregate": [ + 6633 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_utility_practice_statuses_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_practice_statuses_select_column": {}, + "e_utility_practice_statuses_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_practice_statuses_stream_cursor_input": { + "initial_value": [ + 1691 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_utility_practice_statuses_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_practice_statuses_update_column": {}, + "e_utility_practice_statuses_updates": { + "_set": [ + 1689 + ], + "where": [ + 1676 + ], + "__typename": [ + 85 + ] + }, + "e_utility_sources": { + "description": [ + 85 + ], + "utility_lineups": [ + 6420, + { + "distinct_on": [ + 6459, + "[utility_lineups_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6456, + "[utility_lineups_order_by!]" + ], + "where": [ + 6442 + ] + } + ], + "utility_lineups_aggregate": [ + 6421, + { + "distinct_on": [ + 6459, + "[utility_lineups_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6456, + "[utility_lineups_order_by!]" + ], + "where": [ + 6442 + ] + } + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_sources_aggregate": { + "aggregate": [ + 1696 + ], + "nodes": [ + 1694 + ], + "__typename": [ + 85 + ] + }, + "e_utility_sources_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1708, + "[e_utility_sources_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1702 + ], + "min": [ + 1703 + ], + "__typename": [ + 85 + ] + }, + "e_utility_sources_bool_exp": { + "_and": [ + 1697 + ], + "_not": [ + 1697 + ], + "_or": [ + 1697 + ], + "description": [ + 87 + ], + "utility_lineups": [ + 6442 + ], + "utility_lineups_aggregate": [ + 6422 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_utility_sources_constraint": {}, + "e_utility_sources_enum": {}, + "e_utility_sources_enum_comparison_exp": { + "_eq": [ + 1699 + ], + "_in": [ + 1699 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 1699 + ], + "_nin": [ + 1699 + ], + "__typename": [ + 85 + ] + }, + "e_utility_sources_insert_input": { + "description": [ + 85 + ], + "utility_lineups": [ + 6439 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_sources_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_sources_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_sources_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1694 + ], + "__typename": [ + 85 + ] + }, + "e_utility_sources_on_conflict": { + "constraint": [ + 1698 + ], + "update_columns": [ + 1712 + ], + "where": [ + 1697 + ], + "__typename": [ + 85 + ] + }, + "e_utility_sources_order_by": { + "description": [ + 3648 + ], + "utility_lineups_aggregate": [ + 6437 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_utility_sources_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_sources_select_column": {}, + "e_utility_sources_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_sources_stream_cursor_input": { + "initial_value": [ + 1711 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_utility_sources_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_sources_update_column": {}, + "e_utility_sources_updates": { + "_set": [ + 1709 + ], + "where": [ + 1697 + ], + "__typename": [ + 85 + ] + }, + "e_utility_techniques": { + "description": [ + 85 + ], + "utility_lineups": [ + 6420, + { + "distinct_on": [ + 6459, + "[utility_lineups_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6456, + "[utility_lineups_order_by!]" + ], + "where": [ + 6442 + ] + } + ], + "utility_lineups_aggregate": [ + 6421, + { + "distinct_on": [ + 6459, + "[utility_lineups_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6456, + "[utility_lineups_order_by!]" + ], + "where": [ + 6442 + ] + } + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_techniques_aggregate": { + "aggregate": [ + 1716 + ], + "nodes": [ + 1714 + ], + "__typename": [ + 85 + ] + }, + "e_utility_techniques_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1728, + "[e_utility_techniques_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1722 + ], + "min": [ + 1723 + ], + "__typename": [ + 85 + ] + }, + "e_utility_techniques_bool_exp": { + "_and": [ + 1717 + ], + "_not": [ + 1717 + ], + "_or": [ + 1717 + ], + "description": [ + 87 + ], + "utility_lineups": [ + 6442 + ], + "utility_lineups_aggregate": [ + 6422 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_utility_techniques_constraint": {}, + "e_utility_techniques_enum": {}, + "e_utility_techniques_enum_comparison_exp": { + "_eq": [ + 1719 + ], + "_in": [ + 1719 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 1719 + ], + "_nin": [ + 1719 + ], + "__typename": [ + 85 + ] + }, + "e_utility_techniques_insert_input": { + "description": [ + 85 + ], + "utility_lineups": [ + 6439 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_techniques_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_techniques_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_techniques_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1714 + ], + "__typename": [ + 85 + ] + }, + "e_utility_techniques_on_conflict": { + "constraint": [ + 1718 + ], + "update_columns": [ + 1732 + ], + "where": [ + 1717 + ], + "__typename": [ + 85 + ] + }, + "e_utility_techniques_order_by": { + "description": [ + 3648 + ], + "utility_lineups_aggregate": [ + 6437 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_utility_techniques_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_techniques_select_column": {}, + "e_utility_techniques_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_techniques_stream_cursor_input": { + "initial_value": [ + 1731 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_utility_techniques_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_techniques_update_column": {}, + "e_utility_techniques_updates": { + "_set": [ + 1729 + ], + "where": [ + 1717 + ], + "__typename": [ + 85 + ] + }, + "e_utility_throw_strengths": { + "description": [ + 85 + ], + "utility_lineups": [ + 6420, + { + "distinct_on": [ + 6459, + "[utility_lineups_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6456, + "[utility_lineups_order_by!]" + ], + "where": [ + 6442 + ] + } + ], + "utility_lineups_aggregate": [ + 6421, + { + "distinct_on": [ + 6459, + "[utility_lineups_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6456, + "[utility_lineups_order_by!]" + ], + "where": [ + 6442 + ] + } + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_throw_strengths_aggregate": { + "aggregate": [ + 1736 + ], + "nodes": [ + 1734 + ], + "__typename": [ + 85 + ] + }, + "e_utility_throw_strengths_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1748, + "[e_utility_throw_strengths_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1742 + ], + "min": [ + 1743 + ], + "__typename": [ + 85 + ] + }, + "e_utility_throw_strengths_bool_exp": { + "_and": [ + 1737 + ], + "_not": [ + 1737 + ], + "_or": [ + 1737 + ], + "description": [ + 87 + ], + "utility_lineups": [ + 6442 + ], + "utility_lineups_aggregate": [ + 6422 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_utility_throw_strengths_constraint": {}, + "e_utility_throw_strengths_enum": {}, + "e_utility_throw_strengths_enum_comparison_exp": { + "_eq": [ + 1739 + ], + "_in": [ + 1739 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 1739 + ], + "_nin": [ + 1739 + ], + "__typename": [ + 85 + ] + }, + "e_utility_throw_strengths_insert_input": { + "description": [ + 85 + ], + "utility_lineups": [ + 6439 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_throw_strengths_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_throw_strengths_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_throw_strengths_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1734 + ], + "__typename": [ + 85 + ] + }, + "e_utility_throw_strengths_on_conflict": { + "constraint": [ + 1738 + ], + "update_columns": [ + 1752 + ], + "where": [ + 1737 + ], + "__typename": [ + 85 + ] + }, + "e_utility_throw_strengths_order_by": { + "description": [ + 3648 + ], + "utility_lineups_aggregate": [ + 6437 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_utility_throw_strengths_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_throw_strengths_select_column": {}, + "e_utility_throw_strengths_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_throw_strengths_stream_cursor_input": { + "initial_value": [ + 1751 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_utility_throw_strengths_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_throw_strengths_update_column": {}, + "e_utility_throw_strengths_updates": { + "_set": [ + 1749 + ], + "where": [ + 1737 + ], + "__typename": [ + 85 + ] + }, + "e_utility_types": { + "description": [ + 85 + ], + "player_utilities": [ + 4532, + { + "distinct_on": [ + 4553, + "[player_utility_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4551, + "[player_utility_order_by!]" + ], + "where": [ + 4541 + ] + } + ], + "player_utilities_aggregate": [ + 4533, + { + "distinct_on": [ + 4553, + "[player_utility_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4551, + "[player_utility_order_by!]" + ], + "where": [ + 4541 + ] + } + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_types_aggregate": { + "aggregate": [ + 1756 + ], + "nodes": [ + 1754 + ], + "__typename": [ + 85 + ] + }, + "e_utility_types_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1768, + "[e_utility_types_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1762 + ], + "min": [ + 1763 + ], + "__typename": [ + 85 + ] + }, + "e_utility_types_bool_exp": { + "_and": [ + 1757 + ], + "_not": [ + 1757 + ], + "_or": [ + 1757 + ], + "description": [ + 87 + ], + "player_utilities": [ + 4541 + ], + "player_utilities_aggregate": [ + 4534 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_utility_types_constraint": {}, + "e_utility_types_enum": {}, + "e_utility_types_enum_comparison_exp": { + "_eq": [ + 1759 + ], + "_in": [ + 1759 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 1759 + ], + "_nin": [ + 1759 + ], + "__typename": [ + 85 + ] + }, + "e_utility_types_insert_input": { + "description": [ + 85 + ], + "player_utilities": [ + 4538 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_types_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_types_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_types_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1754 + ], + "__typename": [ + 85 + ] + }, + "e_utility_types_on_conflict": { + "constraint": [ + 1758 + ], + "update_columns": [ + 1772 + ], + "where": [ + 1757 + ], + "__typename": [ + 85 + ] + }, + "e_utility_types_order_by": { + "description": [ + 3648 + ], + "player_utilities_aggregate": [ + 4537 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_utility_types_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_types_select_column": {}, + "e_utility_types_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_types_stream_cursor_input": { + "initial_value": [ + 1771 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_utility_types_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_types_update_column": {}, + "e_utility_types_updates": { + "_set": [ + 1769 + ], + "where": [ + 1757 + ], + "__typename": [ + 85 + ] + }, + "e_utility_visibility": { + "description": [ + 85 + ], + "utility_lineups": [ + 6420, + { + "distinct_on": [ + 6459, + "[utility_lineups_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6456, + "[utility_lineups_order_by!]" + ], + "where": [ + 6442 + ] + } + ], + "utility_lineups_aggregate": [ + 6421, + { + "distinct_on": [ + 6459, + "[utility_lineups_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6456, + "[utility_lineups_order_by!]" + ], + "where": [ + 6442 + ] + } + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_visibility_aggregate": { + "aggregate": [ + 1776 + ], + "nodes": [ + 1774 + ], + "__typename": [ + 85 + ] + }, + "e_utility_visibility_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1788, + "[e_utility_visibility_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1782 + ], + "min": [ + 1783 + ], + "__typename": [ + 85 + ] + }, + "e_utility_visibility_bool_exp": { + "_and": [ + 1777 + ], + "_not": [ + 1777 + ], + "_or": [ + 1777 + ], + "description": [ + 87 + ], + "utility_lineups": [ + 6442 + ], + "utility_lineups_aggregate": [ + 6422 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_utility_visibility_constraint": {}, + "e_utility_visibility_enum": {}, + "e_utility_visibility_enum_comparison_exp": { + "_eq": [ + 1779 + ], + "_in": [ + 1779 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 1779 + ], + "_nin": [ + 1779 + ], + "__typename": [ + 85 + ] + }, + "e_utility_visibility_insert_input": { + "description": [ + 85 + ], + "utility_lineups": [ + 6439 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_visibility_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_visibility_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_visibility_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1774 + ], + "__typename": [ + 85 + ] + }, + "e_utility_visibility_on_conflict": { + "constraint": [ + 1778 + ], + "update_columns": [ + 1792 + ], + "where": [ + 1777 + ], + "__typename": [ + 85 + ] + }, + "e_utility_visibility_order_by": { + "description": [ + 3648 + ], + "utility_lineups_aggregate": [ + 6437 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_utility_visibility_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_visibility_select_column": {}, + "e_utility_visibility_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_visibility_stream_cursor_input": { + "initial_value": [ + 1791 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_utility_visibility_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_utility_visibility_update_column": {}, + "e_utility_visibility_updates": { + "_set": [ + 1789 + ], + "where": [ + 1777 + ], + "__typename": [ + 85 + ] + }, + "e_veto_pick_types": { + "description": [ + 85 + ], + "match_veto_picks": [ + 3220, + { + "distinct_on": [ + 3240, + "[match_map_veto_picks_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3238, + "[match_map_veto_picks_order_by!]" + ], + "where": [ + 3229 + ] + } + ], + "match_veto_picks_aggregate": [ + 3221, + { + "distinct_on": [ + 3240, + "[match_map_veto_picks_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3238, + "[match_map_veto_picks_order_by!]" + ], + "where": [ + 3229 + ] + } + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_veto_pick_types_aggregate": { + "aggregate": [ + 1796 + ], + "nodes": [ + 1794 + ], + "__typename": [ + 85 + ] + }, + "e_veto_pick_types_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1808, + "[e_veto_pick_types_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1802 + ], + "min": [ + 1803 + ], + "__typename": [ + 85 + ] + }, + "e_veto_pick_types_bool_exp": { + "_and": [ + 1797 + ], + "_not": [ + 1797 + ], + "_or": [ + 1797 + ], + "description": [ + 87 + ], + "match_veto_picks": [ + 3229 + ], + "match_veto_picks_aggregate": [ + 3222 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_veto_pick_types_constraint": {}, + "e_veto_pick_types_enum": {}, + "e_veto_pick_types_enum_comparison_exp": { + "_eq": [ + 1799 + ], + "_in": [ + 1799 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 1799 + ], + "_nin": [ + 1799 + ], + "__typename": [ + 85 + ] + }, + "e_veto_pick_types_insert_input": { + "description": [ + 85 + ], + "match_veto_picks": [ + 3228 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_veto_pick_types_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_veto_pick_types_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_veto_pick_types_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1794 + ], + "__typename": [ + 85 + ] + }, + "e_veto_pick_types_on_conflict": { + "constraint": [ + 1798 + ], + "update_columns": [ + 1812 + ], + "where": [ + 1797 + ], + "__typename": [ + 85 + ] + }, + "e_veto_pick_types_order_by": { + "description": [ + 3648 + ], + "match_veto_picks_aggregate": [ + 3227 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_veto_pick_types_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_veto_pick_types_select_column": {}, + "e_veto_pick_types_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_veto_pick_types_stream_cursor_input": { + "initial_value": [ + 1811 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_veto_pick_types_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_veto_pick_types_update_column": {}, + "e_veto_pick_types_updates": { + "_set": [ + 1809 + ], + "where": [ + 1797 + ], + "__typename": [ + 85 + ] + }, + "e_winning_reasons": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_winning_reasons_aggregate": { + "aggregate": [ + 1816 + ], + "nodes": [ + 1814 + ], + "__typename": [ + 85 + ] + }, + "e_winning_reasons_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1828, + "[e_winning_reasons_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1822 + ], + "min": [ + 1823 + ], + "__typename": [ + 85 + ] + }, + "e_winning_reasons_bool_exp": { + "_and": [ + 1817 + ], + "_not": [ + 1817 + ], + "_or": [ + 1817 + ], + "description": [ + 87 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "e_winning_reasons_constraint": {}, + "e_winning_reasons_enum": {}, + "e_winning_reasons_enum_comparison_exp": { + "_eq": [ + 1819 + ], + "_in": [ + 1819 + ], + "_is_null": [ + 6 + ], + "_neq": [ + 1819 + ], + "_nin": [ + 1819 + ], + "__typename": [ + 85 + ] + }, + "e_winning_reasons_insert_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_winning_reasons_max_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_winning_reasons_min_fields": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_winning_reasons_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1814 + ], + "__typename": [ + 85 + ] + }, + "e_winning_reasons_on_conflict": { + "constraint": [ + 1818 + ], + "update_columns": [ + 1832 + ], + "where": [ + 1817 + ], + "__typename": [ + 85 + ] + }, + "e_winning_reasons_order_by": { + "description": [ + 3648 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "e_winning_reasons_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_winning_reasons_select_column": {}, + "e_winning_reasons_set_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_winning_reasons_stream_cursor_input": { + "initial_value": [ + 1831 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "e_winning_reasons_stream_cursor_value_input": { + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "e_winning_reasons_update_column": {}, + "e_winning_reasons_updates": { + "_set": [ + 1829 + ], + "where": [ + 1817 + ], + "__typename": [ + 85 + ] + }, + "event_match_links": { + "created_at": [ + 5243 + ], + "event": [ + 2065 + ], + "event_id": [ + 6672 + ], + "match": [ + 3432 + ], + "match_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "event_match_links_aggregate": { + "aggregate": [ + 1836 + ], + "nodes": [ + 1834 + ], + "__typename": [ + 85 + ] + }, + "event_match_links_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 1846, + "[event_match_links_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1840 + ], + "min": [ + 1841 + ], + "__typename": [ + 85 + ] + }, + "event_match_links_bool_exp": { + "_and": [ + 1837 + ], + "_not": [ + 1837 + ], + "_or": [ + 1837 + ], + "created_at": [ + 5244 + ], + "event": [ + 2069 + ], + "event_id": [ + 6674 + ], + "match": [ + 3443 + ], + "match_id": [ + 6674 + ], + "__typename": [ + 85 + ] + }, + "event_match_links_constraint": {}, + "event_match_links_insert_input": { + "created_at": [ + 5243 + ], + "event": [ + 2076 + ], + "event_id": [ + 6672 + ], + "match": [ + 3452 + ], + "match_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "event_match_links_max_fields": { + "created_at": [ + 5243 + ], + "event_id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "event_match_links_min_fields": { + "created_at": [ + 5243 + ], + "event_id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "event_match_links_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1834 + ], + "__typename": [ + 85 + ] + }, + "event_match_links_on_conflict": { + "constraint": [ + 1838 + ], + "update_columns": [ + 1850 + ], + "where": [ + 1837 + ], + "__typename": [ + 85 + ] + }, + "event_match_links_order_by": { + "created_at": [ + 3648 + ], + "event": [ + 2078 + ], + "event_id": [ + 3648 + ], + "match": [ + 3454 + ], + "match_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_match_links_pk_columns_input": { + "event_id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "event_match_links_select_column": {}, + "event_match_links_set_input": { + "created_at": [ + 5243 + ], + "event_id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "event_match_links_stream_cursor_input": { + "initial_value": [ + 1849 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "event_match_links_stream_cursor_value_input": { + "created_at": [ + 5243 + ], + "event_id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "event_match_links_update_column": {}, + "event_match_links_updates": { + "_set": [ + 1847 + ], + "where": [ + 1837 + ], + "__typename": [ + 85 + ] + }, + "event_media": { + "created_at": [ + 5243 + ], + "event": [ + 2065 + ], + "event_id": [ + 6672 + ], + "external_url": [ + 85 + ], + "filename": [ + 85 + ], + "id": [ + 6672 + ], + "mime_type": [ + 85 + ], + "players": [ + 1874, + { + "distinct_on": [ + 1895, + "[event_media_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1893, + "[event_media_players_order_by!]" + ], + "where": [ + 1883 + ] + } + ], + "players_aggregate": [ + 1875, + { + "distinct_on": [ + 1895, + "[event_media_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1893, + "[event_media_players_order_by!]" + ], + "where": [ + 1883 + ] + } + ], + "size": [ + 312 + ], + "thumbnail_filename": [ + 85 + ], + "title": [ + 85 + ], + "uploader": [ + 4606 + ], + "uploader_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "event_media_aggregate": { + "aggregate": [ + 1856 + ], + "nodes": [ + 1852 + ], + "__typename": [ + 85 + ] + }, + "event_media_aggregate_bool_exp": { + "count": [ + 1855 + ], + "__typename": [ + 85 + ] + }, + "event_media_aggregate_bool_exp_count": { + "arguments": [ + 1915 + ], + "distinct": [ + 6 + ], + "filter": [ + 1861 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "event_media_aggregate_fields": { + "avg": [ + 1859 + ], + "count": [ + 41, + { + "columns": [ + 1915, + "[event_media_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1865 + ], + "min": [ + 1867 + ], + "stddev": [ + 1917 + ], + "stddev_pop": [ + 1919 + ], + "stddev_samp": [ + 1921 + ], + "sum": [ + 1925 + ], + "var_pop": [ + 1929 + ], + "var_samp": [ + 1931 + ], + "variance": [ + 1933 + ], + "__typename": [ + 85 + ] + }, + "event_media_aggregate_order_by": { + "avg": [ + 1860 + ], + "count": [ + 3648 + ], + "max": [ + 1866 + ], + "min": [ + 1868 + ], + "stddev": [ + 1918 + ], + "stddev_pop": [ + 1920 + ], + "stddev_samp": [ + 1922 + ], + "sum": [ + 1926 + ], + "var_pop": [ + 1930 + ], + "var_samp": [ + 1932 + ], + "variance": [ + 1934 + ], + "__typename": [ + 85 + ] + }, + "event_media_arr_rel_insert_input": { + "data": [ + 1864 + ], + "on_conflict": [ + 1871 + ], + "__typename": [ + 85 + ] + }, + "event_media_avg_fields": { + "size": [ + 32 + ], + "uploader_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "event_media_avg_order_by": { + "size": [ + 3648 + ], + "uploader_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_media_bool_exp": { + "_and": [ + 1861 + ], + "_not": [ + 1861 + ], + "_or": [ + 1861 + ], + "created_at": [ + 5244 + ], + "event": [ + 2069 + ], + "event_id": [ + 6674 + ], + "external_url": [ + 87 + ], + "filename": [ + 87 + ], + "id": [ + 6674 + ], + "mime_type": [ + 87 + ], + "players": [ + 1883 + ], + "players_aggregate": [ + 1876 + ], + "size": [ + 314 + ], + "thumbnail_filename": [ + 87 + ], + "title": [ + 87 + ], + "uploader": [ + 4610 + ], + "uploader_steam_id": [ + 314 + ], + "__typename": [ + 85 + ] + }, + "event_media_constraint": {}, + "event_media_inc_input": { + "size": [ + 312 + ], + "uploader_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "event_media_insert_input": { + "created_at": [ + 5243 + ], + "event": [ + 2076 + ], + "event_id": [ + 6672 + ], + "external_url": [ + 85 + ], + "filename": [ + 85 + ], + "id": [ + 6672 + ], + "mime_type": [ + 85 + ], + "players": [ + 1880 + ], + "size": [ + 312 + ], + "thumbnail_filename": [ + 85 + ], + "title": [ + 85 + ], + "uploader": [ + 4617 + ], + "uploader_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "event_media_max_fields": { + "created_at": [ + 5243 + ], + "event_id": [ + 6672 + ], + "external_url": [ + 85 + ], + "filename": [ + 85 + ], + "id": [ + 6672 + ], + "mime_type": [ + 85 + ], + "size": [ + 312 + ], + "thumbnail_filename": [ + 85 + ], + "title": [ + 85 + ], + "uploader_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "event_media_max_order_by": { + "created_at": [ + 3648 + ], + "event_id": [ + 3648 + ], + "external_url": [ + 3648 + ], + "filename": [ + 3648 + ], + "id": [ + 3648 + ], + "mime_type": [ + 3648 + ], + "size": [ + 3648 + ], + "thumbnail_filename": [ + 3648 + ], + "title": [ + 3648 + ], + "uploader_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_media_min_fields": { + "created_at": [ + 5243 + ], + "event_id": [ + 6672 + ], + "external_url": [ + 85 + ], + "filename": [ + 85 + ], + "id": [ + 6672 + ], + "mime_type": [ + 85 + ], + "size": [ + 312 + ], + "thumbnail_filename": [ + 85 + ], + "title": [ + 85 + ], + "uploader_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "event_media_min_order_by": { + "created_at": [ + 3648 + ], + "event_id": [ + 3648 + ], + "external_url": [ + 3648 + ], + "filename": [ + 3648 + ], + "id": [ + 3648 + ], + "mime_type": [ + 3648 + ], + "size": [ + 3648 + ], + "thumbnail_filename": [ + 3648 + ], + "title": [ + 3648 + ], + "uploader_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_media_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1852 + ], + "__typename": [ + 85 + ] + }, + "event_media_obj_rel_insert_input": { + "data": [ + 1864 + ], + "on_conflict": [ + 1871 + ], + "__typename": [ + 85 + ] + }, + "event_media_on_conflict": { + "constraint": [ + 1862 + ], + "update_columns": [ + 1927 + ], + "where": [ + 1861 + ], + "__typename": [ + 85 + ] + }, + "event_media_order_by": { + "created_at": [ + 3648 + ], + "event": [ + 2078 + ], + "event_id": [ + 3648 + ], + "external_url": [ + 3648 + ], + "filename": [ + 3648 + ], + "id": [ + 3648 + ], + "mime_type": [ + 3648 + ], + "players_aggregate": [ + 1879 + ], + "size": [ + 3648 + ], + "thumbnail_filename": [ + 3648 + ], + "title": [ + 3648 + ], + "uploader": [ + 4619 + ], + "uploader_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_media_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "event_media_players": { + "created_at": [ + 5243 + ], + "media": [ + 1852 + ], + "media_id": [ + 6672 + ], + "player": [ + 4606 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "event_media_players_aggregate": { + "aggregate": [ + 1878 + ], + "nodes": [ + 1874 + ], + "__typename": [ + 85 + ] + }, + "event_media_players_aggregate_bool_exp": { + "count": [ + 1877 + ], + "__typename": [ + 85 + ] + }, + "event_media_players_aggregate_bool_exp_count": { + "arguments": [ + 1895 + ], + "distinct": [ + 6 + ], + "filter": [ + 1883 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "event_media_players_aggregate_fields": { + "avg": [ + 1881 + ], + "count": [ + 41, + { + "columns": [ + 1895, + "[event_media_players_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1887 + ], + "min": [ + 1889 + ], + "stddev": [ + 1897 + ], + "stddev_pop": [ + 1899 + ], + "stddev_samp": [ + 1901 + ], + "sum": [ + 1905 + ], + "var_pop": [ + 1909 + ], + "var_samp": [ + 1911 + ], + "variance": [ + 1913 + ], + "__typename": [ + 85 + ] + }, + "event_media_players_aggregate_order_by": { + "avg": [ + 1882 + ], + "count": [ + 3648 + ], + "max": [ + 1888 + ], + "min": [ + 1890 + ], + "stddev": [ + 1898 + ], + "stddev_pop": [ + 1900 + ], + "stddev_samp": [ + 1902 + ], + "sum": [ + 1906 + ], + "var_pop": [ + 1910 + ], + "var_samp": [ + 1912 + ], + "variance": [ + 1914 + ], + "__typename": [ + 85 + ] + }, + "event_media_players_arr_rel_insert_input": { + "data": [ + 1886 + ], + "on_conflict": [ + 1892 + ], + "__typename": [ + 85 + ] + }, + "event_media_players_avg_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "event_media_players_avg_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_media_players_bool_exp": { + "_and": [ + 1883 + ], + "_not": [ + 1883 + ], + "_or": [ + 1883 + ], + "created_at": [ + 5244 + ], + "media": [ + 1861 + ], + "media_id": [ + 6674 + ], + "player": [ + 4610 + ], + "steam_id": [ + 314 + ], + "__typename": [ + 85 + ] + }, + "event_media_players_constraint": {}, + "event_media_players_inc_input": { + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "event_media_players_insert_input": { + "created_at": [ + 5243 + ], + "media": [ + 1870 + ], + "media_id": [ + 6672 + ], + "player": [ + 4617 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "event_media_players_max_fields": { + "created_at": [ + 5243 + ], + "media_id": [ + 6672 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "event_media_players_max_order_by": { + "created_at": [ + 3648 + ], + "media_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_media_players_min_fields": { + "created_at": [ + 5243 + ], + "media_id": [ + 6672 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "event_media_players_min_order_by": { + "created_at": [ + 3648 + ], + "media_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_media_players_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1874 + ], + "__typename": [ + 85 + ] + }, + "event_media_players_on_conflict": { + "constraint": [ + 1884 + ], + "update_columns": [ + 1907 + ], + "where": [ + 1883 + ], + "__typename": [ + 85 + ] + }, + "event_media_players_order_by": { + "created_at": [ + 3648 + ], + "media": [ + 1872 + ], + "media_id": [ + 3648 + ], + "player": [ + 4619 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_media_players_pk_columns_input": { + "media_id": [ + 6672 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "event_media_players_select_column": {}, + "event_media_players_set_input": { + "created_at": [ + 5243 + ], + "media_id": [ + 6672 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "event_media_players_stddev_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "event_media_players_stddev_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_media_players_stddev_pop_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "event_media_players_stddev_pop_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_media_players_stddev_samp_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "event_media_players_stddev_samp_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_media_players_stream_cursor_input": { + "initial_value": [ + 1904 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "event_media_players_stream_cursor_value_input": { + "created_at": [ + 5243 + ], + "media_id": [ + 6672 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "event_media_players_sum_fields": { + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "event_media_players_sum_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_media_players_update_column": {}, + "event_media_players_updates": { + "_inc": [ + 1885 + ], + "_set": [ + 1896 + ], + "where": [ + 1883 + ], + "__typename": [ + 85 + ] + }, + "event_media_players_var_pop_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "event_media_players_var_pop_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_media_players_var_samp_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "event_media_players_var_samp_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_media_players_variance_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "event_media_players_variance_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_media_select_column": {}, + "event_media_set_input": { + "created_at": [ + 5243 + ], + "event_id": [ + 6672 + ], + "external_url": [ + 85 + ], + "filename": [ + 85 + ], + "id": [ + 6672 + ], + "mime_type": [ + 85 + ], + "size": [ + 312 + ], + "thumbnail_filename": [ + 85 + ], + "title": [ + 85 + ], + "uploader_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "event_media_stddev_fields": { + "size": [ + 32 + ], + "uploader_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "event_media_stddev_order_by": { + "size": [ + 3648 + ], + "uploader_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_media_stddev_pop_fields": { + "size": [ + 32 + ], + "uploader_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "event_media_stddev_pop_order_by": { + "size": [ + 3648 + ], + "uploader_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_media_stddev_samp_fields": { + "size": [ + 32 + ], + "uploader_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "event_media_stddev_samp_order_by": { + "size": [ + 3648 + ], + "uploader_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_media_stream_cursor_input": { + "initial_value": [ + 1924 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "event_media_stream_cursor_value_input": { + "created_at": [ + 5243 + ], + "event_id": [ + 6672 + ], + "external_url": [ + 85 + ], + "filename": [ + 85 + ], + "id": [ + 6672 + ], + "mime_type": [ + 85 + ], + "size": [ + 312 + ], + "thumbnail_filename": [ + 85 + ], + "title": [ + 85 + ], + "uploader_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "event_media_sum_fields": { + "size": [ + 312 + ], + "uploader_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "event_media_sum_order_by": { + "size": [ + 3648 + ], + "uploader_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_media_update_column": {}, + "event_media_updates": { + "_inc": [ + 1863 + ], + "_set": [ + 1916 + ], + "where": [ + 1861 + ], + "__typename": [ + 85 + ] + }, + "event_media_var_pop_fields": { + "size": [ + 32 + ], + "uploader_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "event_media_var_pop_order_by": { + "size": [ + 3648 + ], + "uploader_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_media_var_samp_fields": { + "size": [ + 32 + ], + "uploader_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "event_media_var_samp_order_by": { + "size": [ + 3648 + ], + "uploader_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_media_variance_fields": { + "size": [ + 32 + ], + "uploader_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "event_media_variance_order_by": { + "size": [ + 3648 + ], + "uploader_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_organizers": { + "created_at": [ + 5243 + ], + "event": [ + 2065 + ], + "event_id": [ + 6672 + ], + "organizer": [ + 4606 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "event_organizers_aggregate": { + "aggregate": [ + 1939 + ], + "nodes": [ + 1935 + ], + "__typename": [ + 85 + ] + }, + "event_organizers_aggregate_bool_exp": { + "count": [ + 1938 + ], + "__typename": [ + 85 + ] + }, + "event_organizers_aggregate_bool_exp_count": { + "arguments": [ + 1956 + ], + "distinct": [ + 6 + ], + "filter": [ + 1944 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "event_organizers_aggregate_fields": { + "avg": [ + 1942 + ], + "count": [ + 41, + { + "columns": [ + 1956, + "[event_organizers_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1948 + ], + "min": [ + 1950 + ], + "stddev": [ + 1958 + ], + "stddev_pop": [ + 1960 + ], + "stddev_samp": [ + 1962 + ], + "sum": [ + 1966 + ], + "var_pop": [ + 1970 + ], + "var_samp": [ + 1972 + ], + "variance": [ + 1974 + ], + "__typename": [ + 85 + ] + }, + "event_organizers_aggregate_order_by": { + "avg": [ + 1943 + ], + "count": [ + 3648 + ], + "max": [ + 1949 + ], + "min": [ + 1951 + ], + "stddev": [ + 1959 + ], + "stddev_pop": [ + 1961 + ], + "stddev_samp": [ + 1963 + ], + "sum": [ + 1967 + ], + "var_pop": [ + 1971 + ], + "var_samp": [ + 1973 + ], + "variance": [ + 1975 + ], + "__typename": [ + 85 + ] + }, + "event_organizers_arr_rel_insert_input": { + "data": [ + 1947 + ], + "on_conflict": [ + 1953 + ], + "__typename": [ + 85 + ] + }, + "event_organizers_avg_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "event_organizers_avg_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_organizers_bool_exp": { + "_and": [ + 1944 + ], + "_not": [ + 1944 + ], + "_or": [ + 1944 + ], + "created_at": [ + 5244 + ], + "event": [ + 2069 + ], + "event_id": [ + 6674 + ], + "organizer": [ + 4610 + ], + "steam_id": [ + 314 + ], + "__typename": [ + 85 + ] + }, + "event_organizers_constraint": {}, + "event_organizers_inc_input": { + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "event_organizers_insert_input": { + "created_at": [ + 5243 + ], + "event": [ + 2076 + ], + "event_id": [ + 6672 + ], + "organizer": [ + 4617 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "event_organizers_max_fields": { + "created_at": [ + 5243 + ], + "event_id": [ + 6672 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "event_organizers_max_order_by": { + "created_at": [ + 3648 + ], + "event_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_organizers_min_fields": { + "created_at": [ + 5243 + ], + "event_id": [ + 6672 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "event_organizers_min_order_by": { + "created_at": [ + 3648 + ], + "event_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_organizers_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1935 + ], + "__typename": [ + 85 + ] + }, + "event_organizers_on_conflict": { + "constraint": [ + 1945 + ], + "update_columns": [ + 1968 + ], + "where": [ + 1944 + ], + "__typename": [ + 85 + ] + }, + "event_organizers_order_by": { + "created_at": [ + 3648 + ], + "event": [ + 2078 + ], + "event_id": [ + 3648 + ], + "organizer": [ + 4619 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_organizers_pk_columns_input": { + "event_id": [ + 6672 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "event_organizers_select_column": {}, + "event_organizers_set_input": { + "created_at": [ + 5243 + ], + "event_id": [ + 6672 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "event_organizers_stddev_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "event_organizers_stddev_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_organizers_stddev_pop_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "event_organizers_stddev_pop_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_organizers_stddev_samp_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "event_organizers_stddev_samp_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_organizers_stream_cursor_input": { + "initial_value": [ + 1965 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "event_organizers_stream_cursor_value_input": { + "created_at": [ + 5243 + ], + "event_id": [ + 6672 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "event_organizers_sum_fields": { + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "event_organizers_sum_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_organizers_update_column": {}, + "event_organizers_updates": { + "_inc": [ + 1946 + ], + "_set": [ + 1957 + ], + "where": [ + 1944 + ], + "__typename": [ + 85 + ] + }, + "event_organizers_var_pop_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "event_organizers_var_pop_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_organizers_var_samp_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "event_organizers_var_samp_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_organizers_variance_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "event_organizers_variance_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_players": { + "created_at": [ + 5243 + ], + "event": [ + 2065 + ], + "event_id": [ + 6672 + ], + "player": [ + 4606 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "event_players_aggregate": { + "aggregate": [ + 1980 + ], + "nodes": [ + 1976 + ], + "__typename": [ + 85 + ] + }, + "event_players_aggregate_bool_exp": { + "count": [ + 1979 + ], + "__typename": [ + 85 + ] + }, + "event_players_aggregate_bool_exp_count": { + "arguments": [ + 1997 + ], + "distinct": [ + 6 + ], + "filter": [ + 1985 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "event_players_aggregate_fields": { + "avg": [ + 1983 + ], + "count": [ + 41, + { + "columns": [ + 1997, + "[event_players_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 1989 + ], + "min": [ + 1991 + ], + "stddev": [ + 1999 + ], + "stddev_pop": [ + 2001 + ], + "stddev_samp": [ + 2003 + ], + "sum": [ + 2007 + ], + "var_pop": [ + 2011 + ], + "var_samp": [ + 2013 + ], + "variance": [ + 2015 + ], + "__typename": [ + 85 + ] + }, + "event_players_aggregate_order_by": { + "avg": [ + 1984 + ], + "count": [ + 3648 + ], + "max": [ + 1990 + ], + "min": [ + 1992 + ], + "stddev": [ + 2000 + ], + "stddev_pop": [ + 2002 + ], + "stddev_samp": [ + 2004 + ], + "sum": [ + 2008 + ], + "var_pop": [ + 2012 + ], + "var_samp": [ + 2014 + ], + "variance": [ + 2016 + ], + "__typename": [ + 85 + ] + }, + "event_players_arr_rel_insert_input": { + "data": [ + 1988 + ], + "on_conflict": [ + 1994 + ], + "__typename": [ + 85 + ] + }, + "event_players_avg_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "event_players_avg_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_players_bool_exp": { + "_and": [ + 1985 + ], + "_not": [ + 1985 + ], + "_or": [ + 1985 + ], + "created_at": [ + 5244 + ], + "event": [ + 2069 + ], + "event_id": [ + 6674 + ], + "player": [ + 4610 + ], + "steam_id": [ + 314 + ], + "__typename": [ + 85 + ] + }, + "event_players_constraint": {}, + "event_players_inc_input": { + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "event_players_insert_input": { + "created_at": [ + 5243 + ], + "event": [ + 2076 + ], + "event_id": [ + 6672 + ], + "player": [ + 4617 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "event_players_max_fields": { + "created_at": [ + 5243 + ], + "event_id": [ + 6672 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "event_players_max_order_by": { + "created_at": [ + 3648 + ], + "event_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_players_min_fields": { + "created_at": [ + 5243 + ], + "event_id": [ + 6672 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "event_players_min_order_by": { + "created_at": [ + 3648 + ], + "event_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_players_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 1976 + ], + "__typename": [ + 85 + ] + }, + "event_players_on_conflict": { + "constraint": [ + 1986 + ], + "update_columns": [ + 2009 + ], + "where": [ + 1985 + ], + "__typename": [ + 85 + ] + }, + "event_players_order_by": { + "created_at": [ + 3648 + ], + "event": [ + 2078 + ], + "event_id": [ + 3648 + ], + "player": [ + 4619 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_players_pk_columns_input": { + "event_id": [ + 6672 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "event_players_select_column": {}, + "event_players_set_input": { + "created_at": [ + 5243 + ], + "event_id": [ + 6672 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "event_players_stddev_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "event_players_stddev_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_players_stddev_pop_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "event_players_stddev_pop_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_players_stddev_samp_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "event_players_stddev_samp_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_players_stream_cursor_input": { + "initial_value": [ + 2006 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "event_players_stream_cursor_value_input": { + "created_at": [ + 5243 + ], + "event_id": [ + 6672 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "event_players_sum_fields": { + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "event_players_sum_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_players_update_column": {}, + "event_players_updates": { + "_inc": [ + 1987 + ], + "_set": [ + 1998 + ], + "where": [ + 1985 + ], + "__typename": [ + 85 + ] + }, + "event_players_var_pop_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "event_players_var_pop_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_players_var_samp_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "event_players_var_samp_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_players_variance_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "event_players_variance_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_teams": { + "created_at": [ + 5243 + ], + "event": [ + 2065 + ], + "event_id": [ + 6672 + ], + "team": [ + 5194 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "event_teams_aggregate": { + "aggregate": [ + 2021 + ], + "nodes": [ + 2017 + ], + "__typename": [ + 85 + ] + }, + "event_teams_aggregate_bool_exp": { + "count": [ + 2020 + ], + "__typename": [ + 85 + ] + }, + "event_teams_aggregate_bool_exp_count": { + "arguments": [ + 2035 + ], + "distinct": [ + 6 + ], + "filter": [ + 2024 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "event_teams_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 2035, + "[event_teams_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 2027 + ], + "min": [ + 2029 + ], + "__typename": [ + 85 + ] + }, + "event_teams_aggregate_order_by": { + "count": [ + 3648 + ], + "max": [ + 2028 + ], + "min": [ + 2030 + ], + "__typename": [ + 85 + ] + }, + "event_teams_arr_rel_insert_input": { + "data": [ + 2026 + ], + "on_conflict": [ + 2032 + ], + "__typename": [ + 85 + ] + }, + "event_teams_bool_exp": { + "_and": [ + 2024 + ], + "_not": [ + 2024 + ], + "_or": [ + 2024 + ], + "created_at": [ + 5244 + ], + "event": [ + 2069 + ], + "event_id": [ + 6674 + ], + "team": [ + 5205 + ], + "team_id": [ + 6674 + ], + "__typename": [ + 85 + ] + }, + "event_teams_constraint": {}, + "event_teams_insert_input": { + "created_at": [ + 5243 + ], + "event": [ + 2076 + ], + "event_id": [ + 6672 + ], + "team": [ + 5214 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "event_teams_max_fields": { + "created_at": [ + 5243 + ], + "event_id": [ + 6672 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "event_teams_max_order_by": { + "created_at": [ + 3648 + ], + "event_id": [ + 3648 + ], + "team_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_teams_min_fields": { + "created_at": [ + 5243 + ], + "event_id": [ + 6672 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "event_teams_min_order_by": { + "created_at": [ + 3648 + ], + "event_id": [ + 3648 + ], + "team_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_teams_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 2017 + ], + "__typename": [ + 85 + ] + }, + "event_teams_on_conflict": { + "constraint": [ + 2025 + ], + "update_columns": [ + 2039 + ], + "where": [ + 2024 + ], + "__typename": [ + 85 + ] + }, + "event_teams_order_by": { + "created_at": [ + 3648 + ], + "event": [ + 2078 + ], + "event_id": [ + 3648 + ], + "team": [ + 5216 + ], + "team_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_teams_pk_columns_input": { + "event_id": [ + 6672 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "event_teams_select_column": {}, + "event_teams_set_input": { + "created_at": [ + 5243 + ], + "event_id": [ + 6672 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "event_teams_stream_cursor_input": { + "initial_value": [ + 2038 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "event_teams_stream_cursor_value_input": { + "created_at": [ + 5243 + ], + "event_id": [ + 6672 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "event_teams_update_column": {}, + "event_teams_updates": { + "_set": [ + 2036 + ], + "where": [ + 2024 + ], + "__typename": [ + 85 + ] + }, + "event_tournaments": { + "created_at": [ + 5243 + ], + "event": [ + 2065 + ], + "event_id": [ + 6672 + ], + "tournament": [ + 5896 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "event_tournaments_aggregate": { + "aggregate": [ + 2045 + ], + "nodes": [ + 2041 + ], + "__typename": [ + 85 + ] + }, + "event_tournaments_aggregate_bool_exp": { + "count": [ + 2044 + ], + "__typename": [ + 85 + ] + }, + "event_tournaments_aggregate_bool_exp_count": { + "arguments": [ + 2059 + ], + "distinct": [ + 6 + ], + "filter": [ + 2048 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "event_tournaments_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 2059, + "[event_tournaments_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 2051 + ], + "min": [ + 2053 + ], + "__typename": [ + 85 + ] + }, + "event_tournaments_aggregate_order_by": { + "count": [ + 3648 + ], + "max": [ + 2052 + ], + "min": [ + 2054 + ], + "__typename": [ + 85 + ] + }, + "event_tournaments_arr_rel_insert_input": { + "data": [ + 2050 + ], + "on_conflict": [ + 2056 + ], + "__typename": [ + 85 + ] + }, + "event_tournaments_bool_exp": { + "_and": [ + 2048 + ], + "_not": [ + 2048 + ], + "_or": [ + 2048 + ], + "created_at": [ + 5244 + ], + "event": [ + 2069 + ], + "event_id": [ + 6674 + ], + "tournament": [ + 5917 + ], + "tournament_id": [ + 6674 + ], + "__typename": [ + 85 + ] + }, + "event_tournaments_constraint": {}, + "event_tournaments_insert_input": { + "created_at": [ + 5243 + ], + "event": [ + 2076 + ], + "event_id": [ + 6672 + ], + "tournament": [ + 5926 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "event_tournaments_max_fields": { + "created_at": [ + 5243 + ], + "event_id": [ + 6672 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "event_tournaments_max_order_by": { + "created_at": [ + 3648 + ], + "event_id": [ + 3648 + ], + "tournament_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_tournaments_min_fields": { + "created_at": [ + 5243 + ], + "event_id": [ + 6672 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "event_tournaments_min_order_by": { + "created_at": [ + 3648 + ], + "event_id": [ + 3648 + ], + "tournament_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_tournaments_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 2041 + ], + "__typename": [ + 85 + ] + }, + "event_tournaments_on_conflict": { + "constraint": [ + 2049 + ], + "update_columns": [ + 2063 + ], + "where": [ + 2048 + ], + "__typename": [ + 85 + ] + }, + "event_tournaments_order_by": { + "created_at": [ + 3648 + ], + "event": [ + 2078 + ], + "event_id": [ + 3648 + ], + "tournament": [ + 5928 + ], + "tournament_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "event_tournaments_pk_columns_input": { + "event_id": [ + 6672 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "event_tournaments_select_column": {}, + "event_tournaments_set_input": { + "created_at": [ + 5243 + ], + "event_id": [ + 6672 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "event_tournaments_stream_cursor_input": { + "initial_value": [ + 2062 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "event_tournaments_stream_cursor_value_input": { + "created_at": [ + 5243 + ], + "event_id": [ + 6672 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "event_tournaments_update_column": {}, + "event_tournaments_updates": { + "_set": [ + 2060 + ], + "where": [ + 2048 + ], + "__typename": [ + 85 + ] + }, + "events": { + "awards": [ + 243, + { + "distinct_on": [ + 264, + "[award_recipients_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 262, + "[award_recipients_order_by!]" + ], + "where": [ + 252 + ] + } + ], + "awards_aggregate": [ + 244, + { + "distinct_on": [ + 264, + "[award_recipients_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 262, + "[award_recipients_order_by!]" + ], + "where": [ + 252 + ] + } + ], + "banner": [ + 1852 + ], + "banner_media_id": [ + 6672 + ], + "can_upload_media": [ + 6 + ], + "can_view": [ + 6 + ], + "created_at": [ + 5243 + ], + "description": [ + 85 + ], + "ends_at": [ + 5243 + ], + "hide_creator_organizer": [ + 6 + ], + "id": [ + 6672 + ], + "is_organizer": [ + 6 + ], + "media": [ + 1852, + { + "distinct_on": [ + 1915, + "[event_media_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1872, + "[event_media_order_by!]" + ], + "where": [ + 1861 + ] + } + ], + "media_access": [ + 815 + ], + "media_aggregate": [ + 1853, + { + "distinct_on": [ + 1915, + "[event_media_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1872, + "[event_media_order_by!]" + ], + "where": [ + 1861 + ] + } + ], + "name": [ + 85 + ], + "organizer": [ + 4606 + ], + "organizer_steam_id": [ + 312 + ], + "organizers": [ + 1935, + { + "distinct_on": [ + 1956, + "[event_organizers_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1954, + "[event_organizers_order_by!]" + ], + "where": [ + 1944 + ] + } + ], + "organizers_aggregate": [ + 1936, + { + "distinct_on": [ + 1956, + "[event_organizers_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1954, + "[event_organizers_order_by!]" + ], + "where": [ + 1944 + ] + } + ], + "player_stats": [ + 6675, + { + "distinct_on": [ + 6701, + "[v_event_player_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6700, + "[v_event_player_stats_order_by!]" + ], + "where": [ + 6694 + ] + } + ], + "player_stats_aggregate": [ + 6676, + { + "distinct_on": [ + 6701, + "[v_event_player_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6700, + "[v_event_player_stats_order_by!]" + ], + "where": [ + 6694 + ] + } + ], + "players": [ + 1976, + { + "distinct_on": [ + 1997, + "[event_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1995, + "[event_players_order_by!]" + ], + "where": [ + 1985 + ] + } + ], + "players_aggregate": [ + 1977, + { + "distinct_on": [ + 1997, + "[event_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1995, + "[event_players_order_by!]" + ], + "where": [ + 1985 + ] + } + ], + "starts_at": [ + 5243 + ], + "teams": [ + 2017, + { + "distinct_on": [ + 2035, + "[event_teams_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2033, + "[event_teams_order_by!]" + ], + "where": [ + 2024 + ] + } + ], + "teams_aggregate": [ + 2018, + { + "distinct_on": [ + 2035, + "[event_teams_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2033, + "[event_teams_order_by!]" + ], + "where": [ + 2024 + ] + } + ], + "tournaments": [ + 2041, + { + "distinct_on": [ + 2059, + "[event_tournaments_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2057, + "[event_tournaments_order_by!]" + ], + "where": [ + 2048 + ] + } + ], + "tournaments_aggregate": [ + 2042, + { + "distinct_on": [ + 2059, + "[event_tournaments_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2057, + "[event_tournaments_order_by!]" + ], + "where": [ + 2048 + ] + } + ], + "visibility": [ + 835 + ], + "__typename": [ + 85 + ] + }, + "events_aggregate": { + "aggregate": [ + 2067 + ], + "nodes": [ + 2065 + ], + "__typename": [ + 85 + ] + }, + "events_aggregate_fields": { + "avg": [ + 2068 + ], + "count": [ + 41, + { + "columns": [ + 2080, + "[events_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 2073 + ], + "min": [ + 2074 + ], + "stddev": [ + 2082 + ], + "stddev_pop": [ + 2083 + ], + "stddev_samp": [ + 2084 + ], + "sum": [ + 2087 + ], + "var_pop": [ + 2090 + ], + "var_samp": [ + 2091 + ], + "variance": [ + 2092 + ], + "__typename": [ + 85 + ] + }, + "events_avg_fields": { + "organizer_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "events_bool_exp": { + "_and": [ + 2069 + ], + "_not": [ + 2069 + ], + "_or": [ + 2069 + ], + "awards": [ + 252 + ], + "awards_aggregate": [ + 245 + ], + "banner": [ + 1861 + ], + "banner_media_id": [ + 6674 + ], + "can_upload_media": [ + 7 + ], + "can_view": [ + 7 + ], + "created_at": [ + 5244 + ], + "description": [ + 87 + ], + "ends_at": [ + 5244 + ], + "hide_creator_organizer": [ + 7 + ], + "id": [ + 6674 + ], + "is_organizer": [ + 7 + ], + "media": [ + 1861 + ], + "media_access": [ + 816 + ], + "media_aggregate": [ + 1854 + ], + "name": [ + 87 + ], + "organizer": [ + 4610 + ], + "organizer_steam_id": [ + 314 + ], + "organizers": [ + 1944 + ], + "organizers_aggregate": [ + 1937 + ], + "player_stats": [ + 6694 + ], + "player_stats_aggregate": [ + 6677 + ], + "players": [ + 1985 + ], + "players_aggregate": [ + 1978 + ], + "starts_at": [ + 5244 + ], + "teams": [ + 2024 + ], + "teams_aggregate": [ + 2019 + ], + "tournaments": [ + 2048 + ], + "tournaments_aggregate": [ + 2043 + ], + "visibility": [ + 836 + ], + "__typename": [ + 85 + ] + }, + "events_constraint": {}, + "events_inc_input": { + "organizer_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "events_insert_input": { + "awards": [ + 249 + ], + "banner": [ + 1870 + ], + "banner_media_id": [ + 6672 + ], + "created_at": [ + 5243 + ], + "description": [ + 85 + ], + "ends_at": [ + 5243 + ], + "hide_creator_organizer": [ + 6 + ], + "id": [ + 6672 + ], + "media": [ + 1858 + ], + "media_access": [ + 815 + ], + "name": [ + 85 + ], + "organizer": [ + 4617 + ], + "organizer_steam_id": [ + 312 + ], + "organizers": [ + 1941 + ], + "player_stats": [ + 6691 + ], + "players": [ + 1982 + ], + "starts_at": [ + 5243 + ], + "teams": [ + 2023 + ], + "tournaments": [ + 2047 + ], + "visibility": [ + 835 + ], + "__typename": [ + 85 + ] + }, + "events_max_fields": { + "banner_media_id": [ + 6672 + ], + "created_at": [ + 5243 + ], + "description": [ + 85 + ], + "ends_at": [ + 5243 + ], + "id": [ + 6672 + ], + "name": [ + 85 + ], + "organizer_steam_id": [ + 312 + ], + "starts_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "events_min_fields": { + "banner_media_id": [ + 6672 + ], + "created_at": [ + 5243 + ], + "description": [ + 85 + ], + "ends_at": [ + 5243 + ], + "id": [ + 6672 + ], + "name": [ + 85 + ], + "organizer_steam_id": [ + 312 + ], + "starts_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "events_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 2065 + ], + "__typename": [ + 85 + ] + }, + "events_obj_rel_insert_input": { + "data": [ + 2072 + ], + "on_conflict": [ + 2077 + ], + "__typename": [ + 85 + ] + }, + "events_on_conflict": { + "constraint": [ + 2070 + ], + "update_columns": [ + 2088 + ], + "where": [ + 2069 + ], + "__typename": [ + 85 + ] + }, + "events_order_by": { + "awards_aggregate": [ + 248 + ], + "banner": [ + 1872 + ], + "banner_media_id": [ + 3648 + ], + "can_upload_media": [ + 3648 + ], + "can_view": [ + 3648 + ], + "created_at": [ + 3648 + ], + "description": [ + 3648 + ], + "ends_at": [ + 3648 + ], + "hide_creator_organizer": [ + 3648 + ], + "id": [ + 3648 + ], + "is_organizer": [ + 3648 + ], + "media_access": [ + 3648 + ], + "media_aggregate": [ + 1857 + ], + "name": [ + 3648 + ], + "organizer": [ + 4619 + ], + "organizer_steam_id": [ + 3648 + ], + "organizers_aggregate": [ + 1940 + ], + "player_stats_aggregate": [ + 6690 + ], + "players_aggregate": [ + 1981 + ], + "starts_at": [ + 3648 + ], + "teams_aggregate": [ + 2022 + ], + "tournaments_aggregate": [ + 2046 + ], + "visibility": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "events_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "events_select_column": {}, + "events_set_input": { + "banner_media_id": [ + 6672 + ], + "created_at": [ + 5243 + ], + "description": [ + 85 + ], + "ends_at": [ + 5243 + ], + "hide_creator_organizer": [ + 6 + ], + "id": [ + 6672 + ], + "media_access": [ + 815 + ], + "name": [ + 85 + ], + "organizer_steam_id": [ + 312 + ], + "starts_at": [ + 5243 + ], + "visibility": [ + 835 + ], + "__typename": [ + 85 + ] + }, + "events_stddev_fields": { + "organizer_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "events_stddev_pop_fields": { + "organizer_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "events_stddev_samp_fields": { + "organizer_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "events_stream_cursor_input": { + "initial_value": [ + 2086 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "events_stream_cursor_value_input": { + "banner_media_id": [ + 6672 + ], + "created_at": [ + 5243 + ], + "description": [ + 85 + ], + "ends_at": [ + 5243 + ], + "hide_creator_organizer": [ + 6 + ], + "id": [ + 6672 + ], + "media_access": [ + 815 + ], + "name": [ + 85 + ], + "organizer_steam_id": [ + 312 + ], + "starts_at": [ + 5243 + ], + "visibility": [ + 835 + ], + "__typename": [ + 85 + ] + }, + "events_sum_fields": { + "organizer_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "events_update_column": {}, + "events_updates": { + "_inc": [ + 2071 + ], + "_set": [ + 2081 + ], + "where": [ + 2069 + ], + "__typename": [ + 85 + ] + }, + "events_var_pop_fields": { + "organizer_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "events_var_samp_fields": { + "organizer_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "events_variance_fields": { + "organizer_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "float8": {}, + "float8_comparison_exp": { + "_eq": [ + 2093 + ], + "_gt": [ + 2093 + ], + "_gte": [ + 2093 + ], + "_in": [ + 2093 + ], + "_is_null": [ + 6 + ], + "_lt": [ + 2093 + ], + "_lte": [ + 2093 + ], + "_neq": [ + 2093 + ], + "_nin": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "friends": { + "e_status": [ + 850 + ], + "other_player_steam_id": [ + 312 + ], + "player_steam_id": [ + 312 + ], + "status": [ + 855 + ], + "__typename": [ + 85 + ] + }, + "friends_aggregate": { + "aggregate": [ + 2097 + ], + "nodes": [ + 2095 + ], + "__typename": [ + 85 + ] + }, + "friends_aggregate_fields": { + "avg": [ + 2098 + ], + "count": [ + 41, + { + "columns": [ + 2109, + "[friends_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 2103 + ], + "min": [ + 2104 + ], + "stddev": [ + 2111 + ], + "stddev_pop": [ + 2112 + ], + "stddev_samp": [ + 2113 + ], + "sum": [ + 2116 + ], + "var_pop": [ + 2119 + ], + "var_samp": [ + 2120 + ], + "variance": [ + 2121 + ], + "__typename": [ + 85 + ] + }, + "friends_avg_fields": { + "other_player_steam_id": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "friends_bool_exp": { + "_and": [ + 2099 + ], + "_not": [ + 2099 + ], + "_or": [ + 2099 + ], + "e_status": [ + 853 + ], + "other_player_steam_id": [ + 314 + ], + "player_steam_id": [ + 314 + ], + "status": [ + 856 + ], + "__typename": [ + 85 + ] + }, + "friends_constraint": {}, + "friends_inc_input": { + "other_player_steam_id": [ + 312 + ], + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "friends_insert_input": { + "e_status": [ + 861 + ], + "other_player_steam_id": [ + 312 + ], + "player_steam_id": [ + 312 + ], + "status": [ + 855 + ], + "__typename": [ + 85 + ] + }, + "friends_max_fields": { + "other_player_steam_id": [ + 312 + ], + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "friends_min_fields": { + "other_player_steam_id": [ + 312 + ], + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "friends_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 2095 + ], + "__typename": [ + 85 + ] + }, + "friends_on_conflict": { + "constraint": [ + 2100 + ], + "update_columns": [ + 2117 + ], + "where": [ + 2099 + ], + "__typename": [ + 85 + ] + }, + "friends_order_by": { + "e_status": [ + 863 + ], + "other_player_steam_id": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "status": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "friends_pk_columns_input": { + "other_player_steam_id": [ + 312 + ], + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "friends_select_column": {}, + "friends_set_input": { + "other_player_steam_id": [ + 312 + ], + "player_steam_id": [ + 312 + ], + "status": [ + 855 + ], + "__typename": [ + 85 + ] + }, + "friends_stddev_fields": { + "other_player_steam_id": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "friends_stddev_pop_fields": { + "other_player_steam_id": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "friends_stddev_samp_fields": { + "other_player_steam_id": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "friends_stream_cursor_input": { + "initial_value": [ + 2115 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "friends_stream_cursor_value_input": { + "other_player_steam_id": [ + 312 + ], + "player_steam_id": [ + 312 + ], + "status": [ + 855 + ], + "__typename": [ + 85 + ] + }, + "friends_sum_fields": { + "other_player_steam_id": [ + 312 + ], + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "friends_update_column": {}, + "friends_updates": { + "_inc": [ + 2101 + ], + "_set": [ + 2110 + ], + "where": [ + 2099 + ], + "__typename": [ + 85 + ] + }, + "friends_var_pop_fields": { + "other_player_steam_id": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "friends_var_samp_fields": { + "other_player_steam_id": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "friends_variance_fields": { + "other_player_steam_id": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "game_mode_plugins": { + "config": [ + 2439, + { + "path": [ + 85 + ] + } + ], + "game_mode": [ + 2172 + ], + "game_mode_id": [ + 6672 + ], + "load_order": [ + 41 + ], + "plugin": [ + 2254 + ], + "plugin_slug": [ + 85 + ], + "required": [ + 6 + ], + "__typename": [ + 85 + ] + }, + "game_mode_plugins_aggregate": { + "aggregate": [ + 2128 + ], + "nodes": [ + 2122 + ], + "__typename": [ + 85 + ] + }, + "game_mode_plugins_aggregate_bool_exp": { + "bool_and": [ + 2125 + ], + "bool_or": [ + 2126 + ], + "count": [ + 2127 + ], + "__typename": [ + 85 + ] + }, + "game_mode_plugins_aggregate_bool_exp_bool_and": { + "arguments": [ + 2151 + ], + "distinct": [ + 6 + ], + "filter": [ + 2134 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "game_mode_plugins_aggregate_bool_exp_bool_or": { + "arguments": [ + 2152 + ], + "distinct": [ + 6 + ], + "filter": [ + 2134 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "game_mode_plugins_aggregate_bool_exp_count": { + "arguments": [ + 2150 + ], + "distinct": [ + 6 + ], + "filter": [ + 2134 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "game_mode_plugins_aggregate_fields": { + "avg": [ + 2132 + ], + "count": [ + 41, + { + "columns": [ + 2150, + "[game_mode_plugins_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 2141 + ], + "min": [ + 2143 + ], + "stddev": [ + 2154 + ], + "stddev_pop": [ + 2156 + ], + "stddev_samp": [ + 2158 + ], + "sum": [ + 2162 + ], + "var_pop": [ + 2166 + ], + "var_samp": [ + 2168 + ], + "variance": [ + 2170 + ], + "__typename": [ + 85 + ] + }, + "game_mode_plugins_aggregate_order_by": { + "avg": [ + 2133 + ], + "count": [ + 3648 + ], + "max": [ + 2142 + ], + "min": [ + 2144 + ], + "stddev": [ + 2155 + ], + "stddev_pop": [ + 2157 + ], + "stddev_samp": [ + 2159 + ], + "sum": [ + 2163 + ], + "var_pop": [ + 2167 + ], + "var_samp": [ + 2169 + ], + "variance": [ + 2171 + ], + "__typename": [ + 85 + ] + }, + "game_mode_plugins_append_input": { + "config": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "game_mode_plugins_arr_rel_insert_input": { + "data": [ + 2140 + ], + "on_conflict": [ + 2146 + ], + "__typename": [ + 85 + ] + }, + "game_mode_plugins_avg_fields": { + "load_order": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "game_mode_plugins_avg_order_by": { + "load_order": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "game_mode_plugins_bool_exp": { + "_and": [ + 2134 + ], + "_not": [ + 2134 + ], + "_or": [ + 2134 + ], + "config": [ + 2441 + ], + "game_mode": [ + 2175 + ], + "game_mode_id": [ + 6674 + ], + "load_order": [ + 42 + ], + "plugin": [ + 2259 + ], + "plugin_slug": [ + 87 + ], + "required": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "game_mode_plugins_constraint": {}, + "game_mode_plugins_delete_at_path_input": { + "config": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "game_mode_plugins_delete_elem_input": { + "config": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "game_mode_plugins_delete_key_input": { + "config": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "game_mode_plugins_inc_input": { + "load_order": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "game_mode_plugins_insert_input": { + "config": [ + 2439 + ], + "game_mode": [ + 2181 + ], + "game_mode_id": [ + 6672 + ], + "load_order": [ + 41 + ], + "plugin": [ + 2268 + ], + "plugin_slug": [ + 85 + ], + "required": [ + 6 + ], + "__typename": [ + 85 + ] + }, + "game_mode_plugins_max_fields": { + "game_mode_id": [ + 6672 + ], + "load_order": [ + 41 + ], + "plugin_slug": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "game_mode_plugins_max_order_by": { + "game_mode_id": [ + 3648 + ], + "load_order": [ + 3648 + ], + "plugin_slug": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "game_mode_plugins_min_fields": { + "game_mode_id": [ + 6672 + ], + "load_order": [ + 41 + ], + "plugin_slug": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "game_mode_plugins_min_order_by": { + "game_mode_id": [ + 3648 + ], + "load_order": [ + 3648 + ], + "plugin_slug": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "game_mode_plugins_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 2122 + ], + "__typename": [ + 85 + ] + }, + "game_mode_plugins_on_conflict": { + "constraint": [ + 2135 + ], + "update_columns": [ + 2164 + ], + "where": [ + 2134 + ], + "__typename": [ + 85 + ] + }, + "game_mode_plugins_order_by": { + "config": [ + 3648 + ], + "game_mode": [ + 2183 + ], + "game_mode_id": [ + 3648 + ], + "load_order": [ + 3648 + ], + "plugin": [ + 2270 + ], + "plugin_slug": [ + 3648 + ], + "required": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "game_mode_plugins_pk_columns_input": { + "game_mode_id": [ + 6672 + ], + "plugin_slug": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "game_mode_plugins_prepend_input": { + "config": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "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": [ + 2439 + ], + "game_mode_id": [ + 6672 + ], + "load_order": [ + 41 + ], + "plugin_slug": [ + 85 + ], + "required": [ + 6 + ], + "__typename": [ + 85 + ] + }, + "game_mode_plugins_stddev_fields": { + "load_order": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "game_mode_plugins_stddev_order_by": { + "load_order": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "game_mode_plugins_stddev_pop_fields": { + "load_order": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "game_mode_plugins_stddev_pop_order_by": { + "load_order": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "game_mode_plugins_stddev_samp_fields": { + "load_order": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "game_mode_plugins_stddev_samp_order_by": { + "load_order": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "game_mode_plugins_stream_cursor_input": { + "initial_value": [ + 2161 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "game_mode_plugins_stream_cursor_value_input": { + "config": [ + 2439 + ], + "game_mode_id": [ + 6672 + ], + "load_order": [ + 41 + ], + "plugin_slug": [ + 85 + ], + "required": [ + 6 + ], + "__typename": [ + 85 + ] + }, + "game_mode_plugins_sum_fields": { + "load_order": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "game_mode_plugins_sum_order_by": { + "load_order": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "game_mode_plugins_update_column": {}, + "game_mode_plugins_updates": { + "_append": [ + 2130 + ], + "_delete_at_path": [ + 2136 + ], + "_delete_elem": [ + 2137 + ], + "_delete_key": [ + 2138 + ], + "_inc": [ + 2139 + ], + "_prepend": [ + 2149 + ], + "_set": [ + 2153 + ], + "where": [ + 2134 + ], + "__typename": [ + 85 + ] + }, + "game_mode_plugins_var_pop_fields": { + "load_order": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "game_mode_plugins_var_pop_order_by": { + "load_order": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "game_mode_plugins_var_samp_fields": { + "load_order": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "game_mode_plugins_var_samp_order_by": { + "load_order": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "game_mode_plugins_variance_fields": { + "load_order": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "game_mode_plugins_variance_order_by": { + "load_order": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "game_modes": { + "archived_at": [ + 5243 + ], + "cfg": [ + 85 + ], + "competitive_safe": [ + 6 + ], + "created_at": [ + 5243 + ], + "description": [ + 85 + ], + "enabled": [ + 6 + ], + "extra_game_params": [ + 85 + ], + "icon": [ + 85 + ], + "id": [ + 6672 + ], + "match_options": [ + 3290, + { + "distinct_on": [ + 3314, + "[match_options_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3312, + "[match_options_order_by!]" + ], + "where": [ + 3301 + ] + } + ], + "match_options_aggregate": [ + 3291, + { + "distinct_on": [ + 3314, + "[match_options_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3312, + "[match_options_order_by!]" + ], + "where": [ + 3301 + ] + } + ], + "name": [ + 85 + ], + "plugins": [ + 2122, + { + "distinct_on": [ + 2150, + "[game_mode_plugins_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2147, + "[game_mode_plugins_order_by!]" + ], + "where": [ + 2134 + ] + } + ], + "plugins_aggregate": [ + 2123, + { + "distinct_on": [ + 2150, + "[game_mode_plugins_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2147, + "[game_mode_plugins_order_by!]" + ], + "where": [ + 2134 + ] + } + ], + "runtime_conflicts": [ + 2439, + { + "path": [ + 85 + ] + } + ], + "slug": [ + 85 + ], + "supported_runtimes": [ + 2439, + { + "path": [ + 85 + ] + } + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "game_modes_aggregate": { + "aggregate": [ + 2174 + ], + "nodes": [ + 2172 + ], + "__typename": [ + 85 + ] + }, + "game_modes_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 2185, + "[game_modes_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 2178 + ], + "min": [ + 2179 + ], + "__typename": [ + 85 + ] + }, + "game_modes_bool_exp": { + "_and": [ + 2175 + ], + "_not": [ + 2175 + ], + "_or": [ + 2175 + ], + "archived_at": [ + 5244 + ], + "cfg": [ + 87 + ], + "competitive_safe": [ + 7 + ], + "created_at": [ + 5244 + ], + "description": [ + 87 + ], + "enabled": [ + 7 + ], + "extra_game_params": [ + 87 + ], + "icon": [ + 87 + ], + "id": [ + 6674 + ], + "match_options": [ + 3301 + ], + "match_options_aggregate": [ + 3292 + ], + "name": [ + 87 + ], + "plugins": [ + 2134 + ], + "plugins_aggregate": [ + 2124 + ], + "runtime_conflicts": [ + 2441 + ], + "slug": [ + 87 + ], + "supported_runtimes": [ + 2441 + ], + "updated_at": [ + 5244 + ], + "__typename": [ + 85 + ] + }, + "game_modes_constraint": {}, + "game_modes_insert_input": { + "archived_at": [ + 5243 + ], + "cfg": [ + 85 + ], + "competitive_safe": [ + 6 + ], + "created_at": [ + 5243 + ], + "description": [ + 85 + ], + "enabled": [ + 6 + ], + "extra_game_params": [ + 85 + ], + "icon": [ + 85 + ], + "id": [ + 6672 + ], + "match_options": [ + 3298 + ], + "name": [ + 85 + ], + "plugins": [ + 2131 + ], + "slug": [ + 85 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "game_modes_max_fields": { + "archived_at": [ + 5243 + ], + "cfg": [ + 85 + ], + "created_at": [ + 5243 + ], + "description": [ + 85 + ], + "extra_game_params": [ + 85 + ], + "icon": [ + 85 + ], + "id": [ + 6672 + ], + "name": [ + 85 + ], + "slug": [ + 85 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "game_modes_min_fields": { + "archived_at": [ + 5243 + ], + "cfg": [ + 85 + ], + "created_at": [ + 5243 + ], + "description": [ + 85 + ], + "extra_game_params": [ + 85 + ], + "icon": [ + 85 + ], + "id": [ + 6672 + ], + "name": [ + 85 + ], + "slug": [ + 85 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "game_modes_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 2172 + ], + "__typename": [ + 85 + ] + }, + "game_modes_obj_rel_insert_input": { + "data": [ + 2177 + ], + "on_conflict": [ + 2182 + ], + "__typename": [ + 85 + ] + }, + "game_modes_on_conflict": { + "constraint": [ + 2176 + ], + "update_columns": [ + 2189 + ], + "where": [ + 2175 + ], + "__typename": [ + 85 + ] + }, + "game_modes_order_by": { + "archived_at": [ + 3648 + ], + "cfg": [ + 3648 + ], + "competitive_safe": [ + 3648 + ], + "created_at": [ + 3648 + ], + "description": [ + 3648 + ], + "enabled": [ + 3648 + ], + "extra_game_params": [ + 3648 + ], + "icon": [ + 3648 + ], + "id": [ + 3648 + ], + "match_options_aggregate": [ + 3297 + ], + "name": [ + 3648 + ], + "plugins_aggregate": [ + 2129 + ], + "runtime_conflicts": [ + 3648 + ], + "slug": [ + 3648 + ], + "supported_runtimes": [ + 3648 + ], + "updated_at": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "game_modes_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "game_modes_select_column": {}, + "game_modes_set_input": { + "archived_at": [ + 5243 + ], + "cfg": [ + 85 + ], + "competitive_safe": [ + 6 + ], + "created_at": [ + 5243 + ], + "description": [ + 85 + ], + "enabled": [ + 6 + ], + "extra_game_params": [ + 85 + ], + "icon": [ + 85 + ], + "id": [ + 6672 + ], + "name": [ + 85 + ], + "slug": [ + 85 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "game_modes_stream_cursor_input": { + "initial_value": [ + 2188 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "game_modes_stream_cursor_value_input": { + "archived_at": [ + 5243 + ], + "cfg": [ + 85 + ], + "competitive_safe": [ + 6 + ], + "created_at": [ + 5243 + ], + "description": [ + 85 + ], + "enabled": [ + 6 + ], + "extra_game_params": [ + 85 + ], + "icon": [ + 85 + ], + "id": [ + 6672 + ], + "name": [ + 85 + ], + "slug": [ + 85 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "game_modes_update_column": {}, + "game_modes_updates": { + "_set": [ + 2186 + ], + "where": [ + 2175 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_installs": { + "cfg": [ + 85 + ], + "channel": [ + 896 + ], + "created_at": [ + 5243 + ], + "disable_server_guidelines": [ + 6 + ], + "enabled": [ + 6 + ], + "load_custom": [ + 6 + ], + "load_ranked": [ + 6 + ], + "load_tournaments": [ + 6 + ], + "plugin": [ + 2254 + ], + "plugin_slug": [ + 85 + ], + "updated_at": [ + 5243 + ], + "version": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_installs_aggregate": { + "aggregate": [ + 2193 + ], + "nodes": [ + 2191 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_installs_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 2203, + "[game_plugin_installs_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 2197 + ], + "min": [ + 2198 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_installs_bool_exp": { + "_and": [ + 2194 + ], + "_not": [ + 2194 + ], + "_or": [ + 2194 + ], + "cfg": [ + 87 + ], + "channel": [ + 897 + ], + "created_at": [ + 5244 + ], + "disable_server_guidelines": [ + 7 + ], + "enabled": [ + 7 + ], + "load_custom": [ + 7 + ], + "load_ranked": [ + 7 + ], + "load_tournaments": [ + 7 + ], + "plugin": [ + 2259 + ], + "plugin_slug": [ + 87 + ], + "updated_at": [ + 5244 + ], + "version": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_installs_constraint": {}, + "game_plugin_installs_insert_input": { + "cfg": [ + 85 + ], + "channel": [ + 896 + ], + "created_at": [ + 5243 + ], + "disable_server_guidelines": [ + 6 + ], + "enabled": [ + 6 + ], + "load_custom": [ + 6 + ], + "load_ranked": [ + 6 + ], + "load_tournaments": [ + 6 + ], + "plugin": [ + 2268 + ], + "plugin_slug": [ + 85 + ], + "updated_at": [ + 5243 + ], + "version": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_installs_max_fields": { + "cfg": [ + 85 + ], + "created_at": [ + 5243 + ], + "plugin_slug": [ + 85 + ], + "updated_at": [ + 5243 + ], + "version": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_installs_min_fields": { + "cfg": [ + 85 + ], + "created_at": [ + 5243 + ], + "plugin_slug": [ + 85 + ], + "updated_at": [ + 5243 + ], + "version": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_installs_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 2191 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_installs_on_conflict": { + "constraint": [ + 2195 + ], + "update_columns": [ + 2207 + ], + "where": [ + 2194 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_installs_order_by": { + "cfg": [ + 3648 + ], + "channel": [ + 3648 + ], + "created_at": [ + 3648 + ], + "disable_server_guidelines": [ + 3648 + ], + "enabled": [ + 3648 + ], + "load_custom": [ + 3648 + ], + "load_ranked": [ + 3648 + ], + "load_tournaments": [ + 3648 + ], + "plugin": [ + 2270 + ], + "plugin_slug": [ + 3648 + ], + "updated_at": [ + 3648 + ], + "version": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_installs_pk_columns_input": { + "plugin_slug": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_installs_select_column": {}, + "game_plugin_installs_set_input": { + "cfg": [ + 85 + ], + "channel": [ + 896 + ], + "created_at": [ + 5243 + ], + "disable_server_guidelines": [ + 6 + ], + "enabled": [ + 6 + ], + "load_custom": [ + 6 + ], + "load_ranked": [ + 6 + ], + "load_tournaments": [ + 6 + ], + "plugin_slug": [ + 85 + ], + "updated_at": [ + 5243 + ], + "version": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_installs_stream_cursor_input": { + "initial_value": [ + 2206 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_installs_stream_cursor_value_input": { + "cfg": [ + 85 + ], + "channel": [ + 896 + ], + "created_at": [ + 5243 + ], + "disable_server_guidelines": [ + 6 + ], + "enabled": [ + 6 + ], + "load_custom": [ + 6 + ], + "load_ranked": [ + 6 + ], + "load_tournaments": [ + 6 + ], + "plugin_slug": [ + 85 + ], + "updated_at": [ + 5243 + ], + "version": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_installs_update_column": {}, + "game_plugin_installs_updates": { + "_set": [ + 2204 + ], + "where": [ + 2194 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_versions": { + "install_path": [ + 85 + ], + "layout": [ + 85 + ], + "plugin": [ + 2254 + ], + "plugin_slug": [ + 85 + ], + "prerelease": [ + 6 + ], + "published_at": [ + 5243 + ], + "runtime": [ + 1306 + ], + "sha256": [ + 85 + ], + "size": [ + 41 + ], + "url": [ + 85 + ], + "version": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_versions_aggregate": { + "aggregate": [ + 2215 + ], + "nodes": [ + 2209 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_versions_aggregate_bool_exp": { + "bool_and": [ + 2212 + ], + "bool_or": [ + 2213 + ], + "count": [ + 2214 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_versions_aggregate_bool_exp_bool_and": { + "arguments": [ + 2233 + ], + "distinct": [ + 6 + ], + "filter": [ + 2220 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_versions_aggregate_bool_exp_bool_or": { + "arguments": [ + 2234 + ], + "distinct": [ + 6 + ], + "filter": [ + 2220 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_versions_aggregate_bool_exp_count": { + "arguments": [ + 2232 + ], + "distinct": [ + 6 + ], + "filter": [ + 2220 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_versions_aggregate_fields": { + "avg": [ + 2218 + ], + "count": [ + 41, + { + "columns": [ + 2232, + "[game_plugin_versions_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 2224 + ], + "min": [ + 2226 + ], + "stddev": [ + 2236 + ], + "stddev_pop": [ + 2238 + ], + "stddev_samp": [ + 2240 + ], + "sum": [ + 2244 + ], + "var_pop": [ + 2248 + ], + "var_samp": [ + 2250 + ], + "variance": [ + 2252 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_versions_aggregate_order_by": { + "avg": [ + 2219 + ], + "count": [ + 3648 + ], + "max": [ + 2225 + ], + "min": [ + 2227 + ], + "stddev": [ + 2237 + ], + "stddev_pop": [ + 2239 + ], + "stddev_samp": [ + 2241 + ], + "sum": [ + 2245 + ], + "var_pop": [ + 2249 + ], + "var_samp": [ + 2251 + ], + "variance": [ + 2253 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_versions_arr_rel_insert_input": { + "data": [ + 2223 + ], + "on_conflict": [ + 2229 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_versions_avg_fields": { + "size": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_versions_avg_order_by": { + "size": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_versions_bool_exp": { + "_and": [ + 2220 + ], + "_not": [ + 2220 + ], + "_or": [ + 2220 + ], + "install_path": [ + 87 + ], + "layout": [ + 87 + ], + "plugin": [ + 2259 + ], + "plugin_slug": [ + 87 + ], + "prerelease": [ + 7 + ], + "published_at": [ + 5244 + ], + "runtime": [ + 1307 + ], + "sha256": [ + 87 + ], + "size": [ + 42 + ], + "url": [ + 87 + ], + "version": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_versions_constraint": {}, + "game_plugin_versions_inc_input": { + "size": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_versions_insert_input": { + "install_path": [ + 85 + ], + "layout": [ + 85 + ], + "plugin": [ + 2268 + ], + "plugin_slug": [ + 85 + ], + "prerelease": [ + 6 + ], + "published_at": [ + 5243 + ], + "runtime": [ + 1306 + ], + "sha256": [ + 85 + ], + "size": [ + 41 + ], + "url": [ + 85 + ], + "version": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_versions_max_fields": { + "install_path": [ + 85 + ], + "layout": [ + 85 + ], + "plugin_slug": [ + 85 + ], + "published_at": [ + 5243 + ], + "sha256": [ + 85 + ], + "size": [ + 41 + ], + "url": [ + 85 + ], + "version": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_versions_max_order_by": { + "install_path": [ + 3648 + ], + "layout": [ + 3648 + ], + "plugin_slug": [ + 3648 + ], + "published_at": [ + 3648 + ], + "sha256": [ + 3648 + ], + "size": [ + 3648 + ], + "url": [ + 3648 + ], + "version": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_versions_min_fields": { + "install_path": [ + 85 + ], + "layout": [ + 85 + ], + "plugin_slug": [ + 85 + ], + "published_at": [ + 5243 + ], + "sha256": [ + 85 + ], + "size": [ + 41 + ], + "url": [ + 85 + ], + "version": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_versions_min_order_by": { + "install_path": [ + 3648 + ], + "layout": [ + 3648 + ], + "plugin_slug": [ + 3648 + ], + "published_at": [ + 3648 + ], + "sha256": [ + 3648 + ], + "size": [ + 3648 + ], + "url": [ + 3648 + ], + "version": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_versions_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 2209 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_versions_on_conflict": { + "constraint": [ + 2221 + ], + "update_columns": [ + 2246 + ], + "where": [ + 2220 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_versions_order_by": { + "install_path": [ + 3648 + ], + "layout": [ + 3648 + ], + "plugin": [ + 2270 + ], + "plugin_slug": [ + 3648 + ], + "prerelease": [ + 3648 + ], + "published_at": [ + 3648 + ], + "runtime": [ + 3648 + ], + "sha256": [ + 3648 + ], + "size": [ + 3648 + ], + "url": [ + 3648 + ], + "version": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_versions_pk_columns_input": { + "plugin_slug": [ + 85 + ], + "runtime": [ + 1306 + ], + "version": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "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": [ + 85 + ], + "layout": [ + 85 + ], + "plugin_slug": [ + 85 + ], + "prerelease": [ + 6 + ], + "published_at": [ + 5243 + ], + "runtime": [ + 1306 + ], + "sha256": [ + 85 + ], + "size": [ + 41 + ], + "url": [ + 85 + ], + "version": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_versions_stddev_fields": { + "size": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_versions_stddev_order_by": { + "size": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_versions_stddev_pop_fields": { + "size": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_versions_stddev_pop_order_by": { + "size": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_versions_stddev_samp_fields": { + "size": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_versions_stddev_samp_order_by": { + "size": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_versions_stream_cursor_input": { + "initial_value": [ + 2243 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_versions_stream_cursor_value_input": { + "install_path": [ + 85 + ], + "layout": [ + 85 + ], + "plugin_slug": [ + 85 + ], + "prerelease": [ + 6 + ], + "published_at": [ + 5243 + ], + "runtime": [ + 1306 + ], + "sha256": [ + 85 + ], + "size": [ + 41 + ], + "url": [ + 85 + ], + "version": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_versions_sum_fields": { + "size": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_versions_sum_order_by": { + "size": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_versions_update_column": {}, + "game_plugin_versions_updates": { + "_inc": [ + 2222 + ], + "_set": [ + 2235 + ], + "where": [ + 2220 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_versions_var_pop_fields": { + "size": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_versions_var_pop_order_by": { + "size": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_versions_var_samp_fields": { + "size": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_versions_var_samp_order_by": { + "size": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_versions_variance_fields": { + "size": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "game_plugin_versions_variance_order_by": { + "size": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "game_plugins": { + "author": [ + 85 + ], + "config_path": [ + 85 + ], + "config_schema": [ + 2439, + { + "path": [ + 85 + ] + } + ], + "cvars": [ + 85 + ], + "description": [ + 85 + ], + "game_modes": [ + 2122, + { + "distinct_on": [ + 2150, + "[game_mode_plugins_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2147, + "[game_mode_plugins_order_by!]" + ], + "where": [ + 2134 + ] + } + ], + "game_modes_aggregate": [ + 2123, + { + "distinct_on": [ + 2150, + "[game_mode_plugins_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2147, + "[game_mode_plugins_order_by!]" + ], + "where": [ + 2134 + ] + } + ], + "homepage": [ + 85 + ], + "hot_swappable": [ + 6 + ], + "install_state": [ + 85 + ], + "installed_node_count": [ + 41 + ], + "kind": [ + 936 + ], + "name": [ + 85 + ], + "node_installs": [ + 2286, + { + "distinct_on": [ + 2306, + "[game_server_node_plugins_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2304, + "[game_server_node_plugins_order_by!]" + ], + "where": [ + 2295 + ] + } + ], + "node_installs_aggregate": [ + 2287, + { + "distinct_on": [ + 2306, + "[game_server_node_plugins_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2304, + "[game_server_node_plugins_order_by!]" + ], + "where": [ + 2295 + ] + } + ], + "pairs_with": [ + 85 + ], + "panel": [ + 2439, + { + "path": [ + 85 + ] + } + ], + "requires_server_guidelines_disabled": [ + 6 + ], + "requires_service": [ + 85 + ], + "slug": [ + 85 + ], + "source": [ + 85 + ], + "synced_at": [ + 5243 + ], + "tags": [ + 85 + ], + "target_node_count": [ + 41 + ], + "verified": [ + 6 + ], + "versions": [ + 2209, + { + "distinct_on": [ + 2232, + "[game_plugin_versions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2230, + "[game_plugin_versions_order_by!]" + ], + "where": [ + 2220 + ] + } + ], + "versions_aggregate": [ + 2210, + { + "distinct_on": [ + 2232, + "[game_plugin_versions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2230, + "[game_plugin_versions_order_by!]" + ], + "where": [ + 2220 + ] + } + ], + "wiring": [ + 2439, + { + "path": [ + 85 + ] + } + ], + "__typename": [ + 85 + ] + }, + "game_plugins_aggregate": { + "aggregate": [ + 2256 + ], + "nodes": [ + 2254 + ], + "__typename": [ + 85 + ] + }, + "game_plugins_aggregate_fields": { + "avg": [ + 2258 + ], + "count": [ + 41, + { + "columns": [ + 2273, + "[game_plugins_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 2265 + ], + "min": [ + 2266 + ], + "stddev": [ + 2275 + ], + "stddev_pop": [ + 2276 + ], + "stddev_samp": [ + 2277 + ], + "sum": [ + 2280 + ], + "var_pop": [ + 2283 + ], + "var_samp": [ + 2284 + ], + "variance": [ + 2285 + ], + "__typename": [ + 85 + ] + }, + "game_plugins_append_input": { + "config_schema": [ + 2439 + ], + "panel": [ + 2439 + ], + "wiring": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "game_plugins_avg_fields": { + "installed_node_count": [ + 41 + ], + "target_node_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "game_plugins_bool_exp": { + "_and": [ + 2259 + ], + "_not": [ + 2259 + ], + "_or": [ + 2259 + ], + "author": [ + 87 + ], + "config_path": [ + 87 + ], + "config_schema": [ + 2441 + ], + "cvars": [ + 86 + ], + "description": [ + 87 + ], + "game_modes": [ + 2134 + ], + "game_modes_aggregate": [ + 2124 + ], + "homepage": [ + 87 + ], + "hot_swappable": [ + 7 + ], + "install_state": [ + 87 + ], + "installed_node_count": [ + 42 + ], + "kind": [ + 937 + ], + "name": [ + 87 + ], + "node_installs": [ + 2295 + ], + "node_installs_aggregate": [ + 2288 + ], + "pairs_with": [ + 86 + ], + "panel": [ + 2441 + ], + "requires_server_guidelines_disabled": [ + 7 + ], + "requires_service": [ + 87 + ], + "slug": [ + 87 + ], + "source": [ + 87 + ], + "synced_at": [ + 5244 + ], + "tags": [ + 86 + ], + "target_node_count": [ + 42 + ], + "verified": [ + 7 + ], + "versions": [ + 2220 + ], + "versions_aggregate": [ + 2211 + ], + "wiring": [ + 2441 + ], + "__typename": [ + 85 + ] + }, + "game_plugins_constraint": {}, + "game_plugins_delete_at_path_input": { + "config_schema": [ + 85 + ], + "panel": [ + 85 + ], + "wiring": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "game_plugins_delete_elem_input": { + "config_schema": [ + 41 + ], + "panel": [ + 41 + ], + "wiring": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "game_plugins_delete_key_input": { + "config_schema": [ + 85 + ], + "panel": [ + 85 + ], + "wiring": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "game_plugins_insert_input": { + "author": [ + 85 + ], + "config_path": [ + 85 + ], + "config_schema": [ + 2439 + ], + "cvars": [ + 85 + ], + "description": [ + 85 + ], + "game_modes": [ + 2131 + ], + "homepage": [ + 85 + ], + "hot_swappable": [ + 6 + ], + "kind": [ + 936 + ], + "name": [ + 85 + ], + "node_installs": [ + 2294 + ], + "pairs_with": [ + 85 + ], + "panel": [ + 2439 + ], + "requires_server_guidelines_disabled": [ + 6 + ], + "requires_service": [ + 85 + ], + "slug": [ + 85 + ], + "source": [ + 85 + ], + "synced_at": [ + 5243 + ], + "tags": [ + 85 + ], + "verified": [ + 6 + ], + "versions": [ + 2217 + ], + "wiring": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "game_plugins_max_fields": { + "author": [ + 85 + ], + "config_path": [ + 85 + ], + "cvars": [ + 85 + ], + "description": [ + 85 + ], + "homepage": [ + 85 + ], + "install_state": [ + 85 + ], + "installed_node_count": [ + 41 + ], + "name": [ + 85 + ], + "pairs_with": [ + 85 + ], + "requires_service": [ + 85 + ], + "slug": [ + 85 + ], + "source": [ + 85 + ], + "synced_at": [ + 5243 + ], + "tags": [ + 85 + ], + "target_node_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "game_plugins_min_fields": { + "author": [ + 85 + ], + "config_path": [ + 85 + ], + "cvars": [ + 85 + ], + "description": [ + 85 + ], + "homepage": [ + 85 + ], + "install_state": [ + 85 + ], + "installed_node_count": [ + 41 + ], + "name": [ + 85 + ], + "pairs_with": [ + 85 + ], + "requires_service": [ + 85 + ], + "slug": [ + 85 + ], + "source": [ + 85 + ], + "synced_at": [ + 5243 + ], + "tags": [ + 85 + ], + "target_node_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "game_plugins_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 2254 + ], + "__typename": [ + 85 + ] + }, + "game_plugins_obj_rel_insert_input": { + "data": [ + 2264 + ], + "on_conflict": [ + 2269 + ], + "__typename": [ + 85 + ] + }, + "game_plugins_on_conflict": { + "constraint": [ + 2260 + ], + "update_columns": [ + 2281 + ], + "where": [ + 2259 + ], + "__typename": [ + 85 + ] + }, + "game_plugins_order_by": { + "author": [ + 3648 + ], + "config_path": [ + 3648 + ], + "config_schema": [ + 3648 + ], + "cvars": [ + 3648 + ], + "description": [ + 3648 + ], + "game_modes_aggregate": [ + 2129 + ], + "homepage": [ + 3648 + ], + "hot_swappable": [ + 3648 + ], + "install_state": [ + 3648 + ], + "installed_node_count": [ + 3648 + ], + "kind": [ + 3648 + ], + "name": [ + 3648 + ], + "node_installs_aggregate": [ + 2293 + ], + "pairs_with": [ + 3648 + ], + "panel": [ + 3648 + ], + "requires_server_guidelines_disabled": [ + 3648 + ], + "requires_service": [ + 3648 + ], + "slug": [ + 3648 + ], + "source": [ + 3648 + ], + "synced_at": [ + 3648 + ], + "tags": [ + 3648 + ], + "target_node_count": [ + 3648 + ], + "verified": [ + 3648 + ], + "versions_aggregate": [ + 2216 + ], + "wiring": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "game_plugins_pk_columns_input": { + "slug": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "game_plugins_prepend_input": { + "config_schema": [ + 2439 + ], + "panel": [ + 2439 + ], + "wiring": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "game_plugins_select_column": {}, + "game_plugins_set_input": { + "author": [ + 85 + ], + "config_path": [ + 85 + ], + "config_schema": [ + 2439 + ], + "cvars": [ + 85 + ], + "description": [ + 85 + ], + "homepage": [ + 85 + ], + "hot_swappable": [ + 6 + ], + "kind": [ + 936 + ], + "name": [ + 85 + ], + "pairs_with": [ + 85 + ], + "panel": [ + 2439 + ], + "requires_server_guidelines_disabled": [ + 6 + ], + "requires_service": [ + 85 + ], + "slug": [ + 85 + ], + "source": [ + 85 + ], + "synced_at": [ + 5243 + ], + "tags": [ + 85 + ], + "verified": [ + 6 + ], + "wiring": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "game_plugins_stddev_fields": { + "installed_node_count": [ + 41 + ], + "target_node_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "game_plugins_stddev_pop_fields": { + "installed_node_count": [ + 41 + ], + "target_node_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "game_plugins_stddev_samp_fields": { + "installed_node_count": [ + 41 + ], + "target_node_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "game_plugins_stream_cursor_input": { + "initial_value": [ + 2279 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "game_plugins_stream_cursor_value_input": { + "author": [ + 85 + ], + "config_path": [ + 85 + ], + "config_schema": [ + 2439 + ], + "cvars": [ + 85 + ], + "description": [ + 85 + ], + "homepage": [ + 85 + ], + "hot_swappable": [ + 6 + ], + "kind": [ + 936 + ], + "name": [ + 85 + ], + "pairs_with": [ + 85 + ], + "panel": [ + 2439 + ], + "requires_server_guidelines_disabled": [ + 6 + ], + "requires_service": [ + 85 + ], + "slug": [ + 85 + ], + "source": [ + 85 + ], + "synced_at": [ + 5243 + ], + "tags": [ + 85 + ], + "verified": [ + 6 + ], + "wiring": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "game_plugins_sum_fields": { + "installed_node_count": [ + 41 + ], + "target_node_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "game_plugins_update_column": {}, + "game_plugins_updates": { + "_append": [ + 2257 + ], + "_delete_at_path": [ + 2261 + ], + "_delete_elem": [ + 2262 + ], + "_delete_key": [ + 2263 + ], + "_prepend": [ + 2272 + ], + "_set": [ + 2274 + ], + "where": [ + 2259 + ], + "__typename": [ + 85 + ] + }, + "game_plugins_var_pop_fields": { + "installed_node_count": [ + 41 + ], + "target_node_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "game_plugins_var_samp_fields": { + "installed_node_count": [ + 41 + ], + "target_node_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "game_plugins_variance_fields": { + "installed_node_count": [ + 41 + ], + "target_node_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "game_server_node_plugins": { + "channel": [ + 896 + ], + "created_at": [ + 5243 + ], + "detected": [ + 6 + ], + "detected_version": [ + 85 + ], + "game_server_node": [ + 2314 + ], + "game_server_node_id": [ + 85 + ], + "id": [ + 6672 + ], + "installed_at": [ + 5243 + ], + "last_error": [ + 85 + ], + "path": [ + 85 + ], + "plugin": [ + 2254 + ], + "plugin_slug": [ + 85 + ], + "previous_version": [ + 85 + ], + "runtime": [ + 1306 + ], + "source": [ + 85 + ], + "status": [ + 916 + ], + "updated_at": [ + 5243 + ], + "version": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "game_server_node_plugins_aggregate": { + "aggregate": [ + 2292 + ], + "nodes": [ + 2286 + ], + "__typename": [ + 85 + ] + }, + "game_server_node_plugins_aggregate_bool_exp": { + "bool_and": [ + 2289 + ], + "bool_or": [ + 2290 + ], + "count": [ + 2291 + ], + "__typename": [ + 85 + ] + }, + "game_server_node_plugins_aggregate_bool_exp_bool_and": { + "arguments": [ + 2307 + ], + "distinct": [ + 6 + ], + "filter": [ + 2295 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "game_server_node_plugins_aggregate_bool_exp_bool_or": { + "arguments": [ + 2308 + ], + "distinct": [ + 6 + ], + "filter": [ + 2295 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "game_server_node_plugins_aggregate_bool_exp_count": { + "arguments": [ + 2306 + ], + "distinct": [ + 6 + ], + "filter": [ + 2295 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "game_server_node_plugins_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 2306, + "[game_server_node_plugins_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 2298 + ], + "min": [ + 2300 + ], + "__typename": [ + 85 + ] + }, + "game_server_node_plugins_aggregate_order_by": { + "count": [ + 3648 + ], + "max": [ + 2299 + ], + "min": [ + 2301 + ], + "__typename": [ + 85 + ] + }, + "game_server_node_plugins_arr_rel_insert_input": { + "data": [ + 2297 + ], + "on_conflict": [ + 2303 + ], + "__typename": [ + 85 + ] + }, + "game_server_node_plugins_bool_exp": { + "_and": [ + 2295 + ], + "_not": [ + 2295 + ], + "_or": [ + 2295 + ], + "channel": [ + 897 + ], + "created_at": [ + 5244 + ], + "detected": [ + 7 + ], + "detected_version": [ + 87 + ], + "game_server_node": [ + 2326 + ], + "game_server_node_id": [ + 87 + ], + "id": [ + 6674 + ], + "installed_at": [ + 5244 + ], + "last_error": [ + 87 + ], + "path": [ + 87 + ], + "plugin": [ + 2259 + ], + "plugin_slug": [ + 87 + ], + "previous_version": [ + 87 + ], + "runtime": [ + 1307 + ], + "source": [ + 87 + ], + "status": [ + 917 + ], + "updated_at": [ + 5244 + ], + "version": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "game_server_node_plugins_constraint": {}, + "game_server_node_plugins_insert_input": { + "channel": [ + 896 + ], + "created_at": [ + 5243 + ], + "detected": [ + 6 + ], + "detected_version": [ + 85 + ], + "game_server_node": [ + 2338 + ], + "game_server_node_id": [ + 85 + ], + "id": [ + 6672 + ], + "installed_at": [ + 5243 + ], + "last_error": [ + 85 + ], + "path": [ + 85 + ], + "plugin": [ + 2268 + ], + "plugin_slug": [ + 85 + ], + "previous_version": [ + 85 + ], + "runtime": [ + 1306 + ], + "source": [ + 85 + ], + "status": [ + 916 + ], + "updated_at": [ + 5243 + ], + "version": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "game_server_node_plugins_max_fields": { + "created_at": [ + 5243 + ], + "detected_version": [ + 85 + ], + "game_server_node_id": [ + 85 + ], + "id": [ + 6672 + ], + "installed_at": [ + 5243 + ], + "last_error": [ + 85 + ], + "path": [ + 85 + ], + "plugin_slug": [ + 85 + ], + "previous_version": [ + 85 + ], + "source": [ + 85 + ], + "updated_at": [ + 5243 + ], + "version": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "game_server_node_plugins_max_order_by": { + "created_at": [ + 3648 + ], + "detected_version": [ + 3648 + ], + "game_server_node_id": [ + 3648 + ], + "id": [ + 3648 + ], + "installed_at": [ + 3648 + ], + "last_error": [ + 3648 + ], + "path": [ + 3648 + ], + "plugin_slug": [ + 3648 + ], + "previous_version": [ + 3648 + ], + "source": [ + 3648 + ], + "updated_at": [ + 3648 + ], + "version": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "game_server_node_plugins_min_fields": { + "created_at": [ + 5243 + ], + "detected_version": [ + 85 + ], + "game_server_node_id": [ + 85 + ], + "id": [ + 6672 + ], + "installed_at": [ + 5243 + ], + "last_error": [ + 85 + ], + "path": [ + 85 + ], + "plugin_slug": [ + 85 + ], + "previous_version": [ + 85 + ], + "source": [ + 85 + ], + "updated_at": [ + 5243 + ], + "version": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "game_server_node_plugins_min_order_by": { + "created_at": [ + 3648 + ], + "detected_version": [ + 3648 + ], + "game_server_node_id": [ + 3648 + ], + "id": [ + 3648 + ], + "installed_at": [ + 3648 + ], + "last_error": [ + 3648 + ], + "path": [ + 3648 + ], + "plugin_slug": [ + 3648 + ], + "previous_version": [ + 3648 + ], + "source": [ + 3648 + ], + "updated_at": [ + 3648 + ], + "version": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "game_server_node_plugins_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 2286 + ], + "__typename": [ + 85 + ] + }, + "game_server_node_plugins_on_conflict": { + "constraint": [ + 2296 + ], + "update_columns": [ + 2312 + ], + "where": [ + 2295 + ], + "__typename": [ + 85 + ] + }, + "game_server_node_plugins_order_by": { + "channel": [ + 3648 + ], + "created_at": [ + 3648 + ], + "detected": [ + 3648 + ], + "detected_version": [ + 3648 + ], + "game_server_node": [ + 2340 + ], + "game_server_node_id": [ + 3648 + ], + "id": [ + 3648 + ], + "installed_at": [ + 3648 + ], + "last_error": [ + 3648 + ], + "path": [ + 3648 + ], + "plugin": [ + 2270 + ], + "plugin_slug": [ + 3648 + ], + "previous_version": [ + 3648 + ], + "runtime": [ + 3648 + ], + "source": [ + 3648 + ], + "status": [ + 3648 + ], + "updated_at": [ + 3648 + ], + "version": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "game_server_node_plugins_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "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": [ + 896 + ], + "created_at": [ + 5243 + ], + "detected": [ + 6 + ], + "detected_version": [ + 85 + ], + "game_server_node_id": [ + 85 + ], + "id": [ + 6672 + ], + "installed_at": [ + 5243 + ], + "last_error": [ + 85 + ], + "path": [ + 85 + ], + "plugin_slug": [ + 85 + ], + "previous_version": [ + 85 + ], + "runtime": [ + 1306 + ], + "source": [ + 85 + ], + "status": [ + 916 + ], + "updated_at": [ + 5243 + ], + "version": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "game_server_node_plugins_stream_cursor_input": { + "initial_value": [ + 2311 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "game_server_node_plugins_stream_cursor_value_input": { + "channel": [ + 896 + ], + "created_at": [ + 5243 + ], + "detected": [ + 6 + ], + "detected_version": [ + 85 + ], + "game_server_node_id": [ + 85 + ], + "id": [ + 6672 + ], + "installed_at": [ + 5243 + ], + "last_error": [ + 85 + ], + "path": [ + 85 + ], + "plugin_slug": [ + 85 + ], + "previous_version": [ + 85 + ], + "runtime": [ + 1306 + ], + "source": [ + 85 + ], + "status": [ + 916 + ], + "updated_at": [ + 5243 + ], + "version": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "game_server_node_plugins_update_column": {}, + "game_server_node_plugins_updates": { + "_set": [ + 2309 + ], + "where": [ + 2295 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes": { + "available_server_count": [ + 41 + ], + "build_id": [ + 41 + ], + "cpu_cores_per_socket": [ + 41 + ], + "cpu_frequency_info": [ + 2439, + { + "path": [ + 85 + ] + } + ], + "cpu_governor_info": [ + 2439, + { + "path": [ + 85 + ] + } + ], + "cpu_sockets": [ + 41 + ], + "cpu_threads_per_core": [ + 41 + ], + "cpu_warnings": [ + 2439, + { + "path": [ + 85 + ] + } + ], + "cs2_launch_options": [ + 2439, + { + "path": [ + 85 + ] + } + ], + "cs2_video_settings": [ + 2439, + { + "path": [ + 85 + ] + } + ], + "csgo_build_id": [ + 41 + ], + "demo_network_limiter": [ + 41 + ], + "disk_available_gb": [ + 41 + ], + "disk_used_percent": [ + 41 + ], + "e_region": [ + 4734 + ], + "e_status": [ + 951 + ], + "enabled": [ + 6 + ], + "enabled_for_match_making": [ + 6 + ], + "end_port_range": [ + 41 + ], + "gpu": [ + 6 + ], + "gpu_demos_enabled": [ + 6 + ], + "gpu_info": [ + 2439, + { + "path": [ + 85 + ] + } + ], + "gpu_rendering_enabled": [ + 6 + ], + "gpu_streaming_enabled": [ + 6 + ], + "id": [ + 85 + ], + "label": [ + 85 + ], + "lan_ip": [ + 2435 + ], + "node_ip": [ + 2435 + ], + "offline_at": [ + 5243 + ], + "pin_build_id": [ + 41 + ], + "pin_plugin_runtime": [ + 85 + ], + "pin_plugin_version": [ + 85 + ], + "pinned_version": [ + 2365 + ], + "plugin_supported": [ + 6 + ], + "plugins": [ + 2286, + { + "distinct_on": [ + 2306, + "[game_server_node_plugins_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2304, + "[game_server_node_plugins_order_by!]" + ], + "where": [ + 2295 + ] + } + ], + "plugins_aggregate": [ + 2287, + { + "distinct_on": [ + 2306, + "[game_server_node_plugins_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2304, + "[game_server_node_plugins_order_by!]" + ], + "where": [ + 2295 + ] + } + ], + "plugins_synced_at": [ + 5243 + ], + "public_ip": [ + 2435 + ], + "region": [ + 85 + ], + "servers": [ + 4761, + { + "distinct_on": [ + 4790, + "[servers_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4787, + "[servers_order_by!]" + ], + "where": [ + 4773 + ] + } + ], + "servers_aggregate": [ + 4762, + { + "distinct_on": [ + 4790, + "[servers_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4787, + "[servers_order_by!]" + ], + "where": [ + 4773 + ] + } + ], + "shader_bake_progress": [ + 3646 + ], + "shader_bake_progress_stage": [ + 85 + ], + "shader_bake_status": [ + 85 + ], + "shader_bake_status_history": [ + 2439, + { + "path": [ + 85 + ] + } + ], + "start_port_range": [ + 41 + ], + "status": [ + 956 + ], + "supports_cpu_pinning": [ + 6 + ], + "supports_low_latency": [ + 6 + ], + "token": [ + 85 + ], + "total_server_count": [ + 41 + ], + "update_status": [ + 85 + ], + "version": [ + 2365 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_aggregate": { + "aggregate": [ + 2320 + ], + "nodes": [ + 2314 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_aggregate_bool_exp": { + "bool_and": [ + 2317 + ], + "bool_or": [ + 2318 + ], + "count": [ + 2319 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_aggregate_bool_exp_bool_and": { + "arguments": [ + 2344 + ], + "distinct": [ + 6 + ], + "filter": [ + 2326 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_aggregate_bool_exp_bool_or": { + "arguments": [ + 2345 + ], + "distinct": [ + 6 + ], + "filter": [ + 2326 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_aggregate_bool_exp_count": { + "arguments": [ + 2343 + ], + "distinct": [ + 6 + ], + "filter": [ + 2326 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_aggregate_fields": { + "avg": [ + 2324 + ], + "count": [ + 41, + { + "columns": [ + 2343, + "[game_server_nodes_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 2333 + ], + "min": [ + 2335 + ], + "stddev": [ + 2347 + ], + "stddev_pop": [ + 2349 + ], + "stddev_samp": [ + 2351 + ], + "sum": [ + 2355 + ], + "var_pop": [ + 2359 + ], + "var_samp": [ + 2361 + ], + "variance": [ + 2363 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_aggregate_order_by": { + "avg": [ + 2325 + ], + "count": [ + 3648 + ], + "max": [ + 2334 + ], + "min": [ + 2336 + ], + "stddev": [ + 2348 + ], + "stddev_pop": [ + 2350 + ], + "stddev_samp": [ + 2352 + ], + "sum": [ + 2356 + ], + "var_pop": [ + 2360 + ], + "var_samp": [ + 2362 + ], + "variance": [ + 2364 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_append_input": { + "cpu_frequency_info": [ + 2439 + ], + "cpu_governor_info": [ + 2439 + ], + "cpu_warnings": [ + 2439 + ], + "cs2_launch_options": [ + 2439 + ], + "cs2_video_settings": [ + 2439 + ], + "gpu_info": [ + 2439 + ], + "shader_bake_status_history": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_arr_rel_insert_input": { + "data": [ + 2332 + ], + "on_conflict": [ + 2339 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_avg_fields": { + "available_server_count": [ + 41 + ], + "build_id": [ + 32 + ], + "cpu_cores_per_socket": [ + 32 + ], + "cpu_sockets": [ + 32 + ], + "cpu_threads_per_core": [ + 32 + ], + "csgo_build_id": [ + 32 + ], + "demo_network_limiter": [ + 32 + ], + "disk_available_gb": [ + 32 + ], + "disk_used_percent": [ + 32 + ], + "end_port_range": [ + 32 + ], + "pin_build_id": [ + 32 + ], + "shader_bake_progress": [ + 32 + ], + "start_port_range": [ + 32 + ], + "total_server_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_avg_order_by": { + "build_id": [ + 3648 + ], + "cpu_cores_per_socket": [ + 3648 + ], + "cpu_sockets": [ + 3648 + ], + "cpu_threads_per_core": [ + 3648 + ], + "csgo_build_id": [ + 3648 + ], + "demo_network_limiter": [ + 3648 + ], + "disk_available_gb": [ + 3648 + ], + "disk_used_percent": [ + 3648 + ], + "end_port_range": [ + 3648 + ], + "pin_build_id": [ + 3648 + ], + "shader_bake_progress": [ + 3648 + ], + "start_port_range": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_bool_exp": { + "_and": [ + 2326 + ], + "_not": [ + 2326 + ], + "_or": [ + 2326 + ], + "available_server_count": [ + 42 + ], + "build_id": [ + 42 + ], + "cpu_cores_per_socket": [ + 42 + ], + "cpu_frequency_info": [ + 2441 + ], + "cpu_governor_info": [ + 2441 + ], + "cpu_sockets": [ + 42 + ], + "cpu_threads_per_core": [ + 42 + ], + "cpu_warnings": [ + 2441 + ], + "cs2_launch_options": [ + 2441 + ], + "cs2_video_settings": [ + 2441 + ], + "csgo_build_id": [ + 42 + ], + "demo_network_limiter": [ + 42 + ], + "disk_available_gb": [ + 42 + ], + "disk_used_percent": [ + 42 + ], + "e_region": [ + 4738 + ], + "e_status": [ + 954 + ], + "enabled": [ + 7 + ], + "enabled_for_match_making": [ + 7 + ], + "end_port_range": [ + 42 + ], + "gpu": [ + 7 + ], + "gpu_demos_enabled": [ + 7 + ], + "gpu_info": [ + 2441 + ], + "gpu_rendering_enabled": [ + 7 + ], + "gpu_streaming_enabled": [ + 7 + ], + "id": [ + 87 + ], + "label": [ + 87 + ], + "lan_ip": [ + 2436 + ], + "node_ip": [ + 2436 + ], + "offline_at": [ + 5244 + ], + "pin_build_id": [ + 42 + ], + "pin_plugin_runtime": [ + 87 + ], + "pin_plugin_version": [ + 87 + ], + "pinned_version": [ + 2370 + ], + "plugin_supported": [ + 7 + ], + "plugins": [ + 2295 + ], + "plugins_aggregate": [ + 2288 + ], + "plugins_synced_at": [ + 5244 + ], + "public_ip": [ + 2436 + ], + "region": [ + 87 + ], + "servers": [ + 4773 + ], + "servers_aggregate": [ + 4763 + ], + "shader_bake_progress": [ + 3647 + ], + "shader_bake_progress_stage": [ + 87 + ], + "shader_bake_status": [ + 87 + ], + "shader_bake_status_history": [ + 2441 + ], + "start_port_range": [ + 42 + ], + "status": [ + 957 + ], + "supports_cpu_pinning": [ + 7 + ], + "supports_low_latency": [ + 7 + ], + "token": [ + 87 + ], + "total_server_count": [ + 42 + ], + "update_status": [ + 87 + ], + "version": [ + 2370 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_constraint": {}, + "game_server_nodes_delete_at_path_input": { + "cpu_frequency_info": [ + 85 + ], + "cpu_governor_info": [ + 85 + ], + "cpu_warnings": [ + 85 + ], + "cs2_launch_options": [ + 85 + ], + "cs2_video_settings": [ + 85 + ], + "gpu_info": [ + 85 + ], + "shader_bake_status_history": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_delete_elem_input": { + "cpu_frequency_info": [ + 41 + ], + "cpu_governor_info": [ + 41 + ], + "cpu_warnings": [ + 41 + ], + "cs2_launch_options": [ + 41 + ], + "cs2_video_settings": [ + 41 + ], + "gpu_info": [ + 41 + ], + "shader_bake_status_history": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_delete_key_input": { + "cpu_frequency_info": [ + 85 + ], + "cpu_governor_info": [ + 85 + ], + "cpu_warnings": [ + 85 + ], + "cs2_launch_options": [ + 85 + ], + "cs2_video_settings": [ + 85 + ], + "gpu_info": [ + 85 + ], + "shader_bake_status_history": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_inc_input": { + "build_id": [ + 41 + ], + "cpu_cores_per_socket": [ + 41 + ], + "cpu_sockets": [ + 41 + ], + "cpu_threads_per_core": [ + 41 + ], + "csgo_build_id": [ + 41 + ], + "demo_network_limiter": [ + 41 + ], + "disk_available_gb": [ + 41 + ], + "disk_used_percent": [ + 41 + ], + "end_port_range": [ + 41 + ], + "pin_build_id": [ + 41 + ], + "shader_bake_progress": [ + 3646 + ], + "start_port_range": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_insert_input": { + "build_id": [ + 41 + ], + "cpu_cores_per_socket": [ + 41 + ], + "cpu_frequency_info": [ + 2439 + ], + "cpu_governor_info": [ + 2439 + ], + "cpu_sockets": [ + 41 + ], + "cpu_threads_per_core": [ + 41 + ], + "cpu_warnings": [ + 2439 + ], + "cs2_launch_options": [ + 2439 + ], + "cs2_video_settings": [ + 2439 + ], + "csgo_build_id": [ + 41 + ], + "demo_network_limiter": [ + 41 + ], + "disk_available_gb": [ + 41 + ], + "disk_used_percent": [ + 41 + ], + "e_region": [ + 4744 + ], + "e_status": [ + 962 + ], + "enabled": [ + 6 + ], + "enabled_for_match_making": [ + 6 + ], + "end_port_range": [ + 41 + ], + "gpu": [ + 6 + ], + "gpu_demos_enabled": [ + 6 + ], + "gpu_info": [ + 2439 + ], + "gpu_rendering_enabled": [ + 6 + ], + "gpu_streaming_enabled": [ + 6 + ], + "id": [ + 85 + ], + "label": [ + 85 + ], + "lan_ip": [ + 2435 + ], + "node_ip": [ + 2435 + ], + "offline_at": [ + 5243 + ], + "pin_build_id": [ + 41 + ], + "pin_plugin_runtime": [ + 85 + ], + "pin_plugin_version": [ + 85 + ], + "pinned_version": [ + 2380 + ], + "plugins": [ + 2294 + ], + "plugins_synced_at": [ + 5243 + ], + "public_ip": [ + 2435 + ], + "region": [ + 85 + ], + "servers": [ + 4770 + ], + "shader_bake_progress": [ + 3646 + ], + "shader_bake_progress_stage": [ + 85 + ], + "shader_bake_status": [ + 85 + ], + "shader_bake_status_history": [ + 2439 + ], + "start_port_range": [ + 41 + ], + "status": [ + 956 + ], + "supports_cpu_pinning": [ + 6 + ], + "supports_low_latency": [ + 6 + ], + "token": [ + 85 + ], + "update_status": [ + 85 + ], + "version": [ + 2380 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_max_fields": { + "available_server_count": [ + 41 + ], + "build_id": [ + 41 + ], + "cpu_cores_per_socket": [ + 41 + ], + "cpu_sockets": [ + 41 + ], + "cpu_threads_per_core": [ + 41 + ], + "csgo_build_id": [ + 41 + ], + "demo_network_limiter": [ + 41 + ], + "disk_available_gb": [ + 41 + ], + "disk_used_percent": [ + 41 + ], + "end_port_range": [ + 41 + ], + "id": [ + 85 + ], + "label": [ + 85 + ], + "offline_at": [ + 5243 + ], + "pin_build_id": [ + 41 + ], + "pin_plugin_runtime": [ + 85 + ], + "pin_plugin_version": [ + 85 + ], + "plugins_synced_at": [ + 5243 + ], + "region": [ + 85 + ], + "shader_bake_progress": [ + 3646 + ], + "shader_bake_progress_stage": [ + 85 + ], + "shader_bake_status": [ + 85 + ], + "start_port_range": [ + 41 + ], + "token": [ + 85 + ], + "total_server_count": [ + 41 + ], + "update_status": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_max_order_by": { + "build_id": [ + 3648 + ], + "cpu_cores_per_socket": [ + 3648 + ], + "cpu_sockets": [ + 3648 + ], + "cpu_threads_per_core": [ + 3648 + ], + "csgo_build_id": [ + 3648 + ], + "demo_network_limiter": [ + 3648 + ], + "disk_available_gb": [ + 3648 + ], + "disk_used_percent": [ + 3648 + ], + "end_port_range": [ + 3648 + ], + "id": [ + 3648 + ], + "label": [ + 3648 + ], + "offline_at": [ + 3648 + ], + "pin_build_id": [ + 3648 + ], + "pin_plugin_runtime": [ + 3648 + ], + "pin_plugin_version": [ + 3648 + ], + "plugins_synced_at": [ + 3648 + ], + "region": [ + 3648 + ], + "shader_bake_progress": [ + 3648 + ], + "shader_bake_progress_stage": [ + 3648 + ], + "shader_bake_status": [ + 3648 + ], + "start_port_range": [ + 3648 + ], + "token": [ + 3648 + ], + "update_status": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_min_fields": { + "available_server_count": [ + 41 + ], + "build_id": [ + 41 + ], + "cpu_cores_per_socket": [ + 41 + ], + "cpu_sockets": [ + 41 + ], + "cpu_threads_per_core": [ + 41 + ], + "csgo_build_id": [ + 41 + ], + "demo_network_limiter": [ + 41 + ], + "disk_available_gb": [ + 41 + ], + "disk_used_percent": [ + 41 + ], + "end_port_range": [ + 41 + ], + "id": [ + 85 + ], + "label": [ + 85 + ], + "offline_at": [ + 5243 + ], + "pin_build_id": [ + 41 + ], + "pin_plugin_runtime": [ + 85 + ], + "pin_plugin_version": [ + 85 + ], + "plugins_synced_at": [ + 5243 + ], + "region": [ + 85 + ], + "shader_bake_progress": [ + 3646 + ], + "shader_bake_progress_stage": [ + 85 + ], + "shader_bake_status": [ + 85 + ], + "start_port_range": [ + 41 + ], + "token": [ + 85 + ], + "total_server_count": [ + 41 + ], + "update_status": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_min_order_by": { + "build_id": [ + 3648 + ], + "cpu_cores_per_socket": [ + 3648 + ], + "cpu_sockets": [ + 3648 + ], + "cpu_threads_per_core": [ + 3648 + ], + "csgo_build_id": [ + 3648 + ], + "demo_network_limiter": [ + 3648 + ], + "disk_available_gb": [ + 3648 + ], + "disk_used_percent": [ + 3648 + ], + "end_port_range": [ + 3648 + ], + "id": [ + 3648 + ], + "label": [ + 3648 + ], + "offline_at": [ + 3648 + ], + "pin_build_id": [ + 3648 + ], + "pin_plugin_runtime": [ + 3648 + ], + "pin_plugin_version": [ + 3648 + ], + "plugins_synced_at": [ + 3648 + ], + "region": [ + 3648 + ], + "shader_bake_progress": [ + 3648 + ], + "shader_bake_progress_stage": [ + 3648 + ], + "shader_bake_status": [ + 3648 + ], + "start_port_range": [ + 3648 + ], + "token": [ + 3648 + ], + "update_status": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 2314 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_obj_rel_insert_input": { + "data": [ + 2332 + ], + "on_conflict": [ + 2339 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_on_conflict": { + "constraint": [ + 2327 + ], + "update_columns": [ + 2357 + ], + "where": [ + 2326 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_order_by": { + "available_server_count": [ + 3648 + ], + "build_id": [ + 3648 + ], + "cpu_cores_per_socket": [ + 3648 + ], + "cpu_frequency_info": [ + 3648 + ], + "cpu_governor_info": [ + 3648 + ], + "cpu_sockets": [ + 3648 + ], + "cpu_threads_per_core": [ + 3648 + ], + "cpu_warnings": [ + 3648 + ], + "cs2_launch_options": [ + 3648 + ], + "cs2_video_settings": [ + 3648 + ], + "csgo_build_id": [ + 3648 + ], + "demo_network_limiter": [ + 3648 + ], + "disk_available_gb": [ + 3648 + ], + "disk_used_percent": [ + 3648 + ], + "e_region": [ + 4746 + ], + "e_status": [ + 964 + ], + "enabled": [ + 3648 + ], + "enabled_for_match_making": [ + 3648 + ], + "end_port_range": [ + 3648 + ], + "gpu": [ + 3648 + ], + "gpu_demos_enabled": [ + 3648 + ], + "gpu_info": [ + 3648 + ], + "gpu_rendering_enabled": [ + 3648 + ], + "gpu_streaming_enabled": [ + 3648 + ], + "id": [ + 3648 + ], + "label": [ + 3648 + ], + "lan_ip": [ + 3648 + ], + "node_ip": [ + 3648 + ], + "offline_at": [ + 3648 + ], + "pin_build_id": [ + 3648 + ], + "pin_plugin_runtime": [ + 3648 + ], + "pin_plugin_version": [ + 3648 + ], + "pinned_version": [ + 2382 + ], + "plugin_supported": [ + 3648 + ], + "plugins_aggregate": [ + 2293 + ], + "plugins_synced_at": [ + 3648 + ], + "public_ip": [ + 3648 + ], + "region": [ + 3648 + ], + "servers_aggregate": [ + 4768 + ], + "shader_bake_progress": [ + 3648 + ], + "shader_bake_progress_stage": [ + 3648 + ], + "shader_bake_status": [ + 3648 + ], + "shader_bake_status_history": [ + 3648 + ], + "start_port_range": [ + 3648 + ], + "status": [ + 3648 + ], + "supports_cpu_pinning": [ + 3648 + ], + "supports_low_latency": [ + 3648 + ], + "token": [ + 3648 + ], + "total_server_count": [ + 3648 + ], + "update_status": [ + 3648 + ], + "version": [ + 2382 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_pk_columns_input": { + "id": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_prepend_input": { + "cpu_frequency_info": [ + 2439 + ], + "cpu_governor_info": [ + 2439 + ], + "cpu_warnings": [ + 2439 + ], + "cs2_launch_options": [ + 2439 + ], + "cs2_video_settings": [ + 2439 + ], + "gpu_info": [ + 2439 + ], + "shader_bake_status_history": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_select_column": {}, + "game_server_nodes_select_column_game_server_nodes_aggregate_bool_exp_bool_and_arguments_columns": {}, + "game_server_nodes_select_column_game_server_nodes_aggregate_bool_exp_bool_or_arguments_columns": {}, + "game_server_nodes_set_input": { + "build_id": [ + 41 + ], + "cpu_cores_per_socket": [ + 41 + ], + "cpu_frequency_info": [ + 2439 + ], + "cpu_governor_info": [ + 2439 + ], + "cpu_sockets": [ + 41 + ], + "cpu_threads_per_core": [ + 41 + ], + "cpu_warnings": [ + 2439 + ], + "cs2_launch_options": [ + 2439 + ], + "cs2_video_settings": [ + 2439 + ], + "csgo_build_id": [ + 41 + ], + "demo_network_limiter": [ + 41 + ], + "disk_available_gb": [ + 41 + ], + "disk_used_percent": [ + 41 + ], + "enabled": [ + 6 + ], + "enabled_for_match_making": [ + 6 + ], + "end_port_range": [ + 41 + ], + "gpu": [ + 6 + ], + "gpu_demos_enabled": [ + 6 + ], + "gpu_info": [ + 2439 + ], + "gpu_rendering_enabled": [ + 6 + ], + "gpu_streaming_enabled": [ + 6 + ], + "id": [ + 85 + ], + "label": [ + 85 + ], + "lan_ip": [ + 2435 + ], + "node_ip": [ + 2435 + ], + "offline_at": [ + 5243 + ], + "pin_build_id": [ + 41 + ], + "pin_plugin_runtime": [ + 85 + ], + "pin_plugin_version": [ + 85 + ], + "plugins_synced_at": [ + 5243 + ], + "public_ip": [ + 2435 + ], + "region": [ + 85 + ], + "shader_bake_progress": [ + 3646 + ], + "shader_bake_progress_stage": [ + 85 + ], + "shader_bake_status": [ + 85 + ], + "shader_bake_status_history": [ + 2439 + ], + "start_port_range": [ + 41 + ], + "status": [ + 956 + ], + "supports_cpu_pinning": [ + 6 + ], + "supports_low_latency": [ + 6 + ], + "token": [ + 85 + ], + "update_status": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_stddev_fields": { + "available_server_count": [ + 41 + ], + "build_id": [ + 32 + ], + "cpu_cores_per_socket": [ + 32 + ], + "cpu_sockets": [ + 32 + ], + "cpu_threads_per_core": [ + 32 + ], + "csgo_build_id": [ + 32 + ], + "demo_network_limiter": [ + 32 + ], + "disk_available_gb": [ + 32 + ], + "disk_used_percent": [ + 32 + ], + "end_port_range": [ + 32 + ], + "pin_build_id": [ + 32 + ], + "shader_bake_progress": [ + 32 + ], + "start_port_range": [ + 32 + ], + "total_server_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_stddev_order_by": { + "build_id": [ + 3648 + ], + "cpu_cores_per_socket": [ + 3648 + ], + "cpu_sockets": [ + 3648 + ], + "cpu_threads_per_core": [ + 3648 + ], + "csgo_build_id": [ + 3648 + ], + "demo_network_limiter": [ + 3648 + ], + "disk_available_gb": [ + 3648 + ], + "disk_used_percent": [ + 3648 + ], + "end_port_range": [ + 3648 + ], + "pin_build_id": [ + 3648 + ], + "shader_bake_progress": [ + 3648 + ], + "start_port_range": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_stddev_pop_fields": { + "available_server_count": [ + 41 + ], + "build_id": [ + 32 + ], + "cpu_cores_per_socket": [ + 32 + ], + "cpu_sockets": [ + 32 + ], + "cpu_threads_per_core": [ + 32 + ], + "csgo_build_id": [ + 32 + ], + "demo_network_limiter": [ + 32 + ], + "disk_available_gb": [ + 32 + ], + "disk_used_percent": [ + 32 + ], + "end_port_range": [ + 32 + ], + "pin_build_id": [ + 32 + ], + "shader_bake_progress": [ + 32 + ], + "start_port_range": [ + 32 + ], + "total_server_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_stddev_pop_order_by": { + "build_id": [ + 3648 + ], + "cpu_cores_per_socket": [ + 3648 + ], + "cpu_sockets": [ + 3648 + ], + "cpu_threads_per_core": [ + 3648 + ], + "csgo_build_id": [ + 3648 + ], + "demo_network_limiter": [ + 3648 + ], + "disk_available_gb": [ + 3648 + ], + "disk_used_percent": [ + 3648 + ], + "end_port_range": [ + 3648 + ], + "pin_build_id": [ + 3648 + ], + "shader_bake_progress": [ + 3648 + ], + "start_port_range": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_stddev_samp_fields": { + "available_server_count": [ + 41 + ], + "build_id": [ + 32 + ], + "cpu_cores_per_socket": [ + 32 + ], + "cpu_sockets": [ + 32 + ], + "cpu_threads_per_core": [ + 32 + ], + "csgo_build_id": [ + 32 + ], + "demo_network_limiter": [ + 32 + ], + "disk_available_gb": [ + 32 + ], + "disk_used_percent": [ + 32 + ], + "end_port_range": [ + 32 + ], + "pin_build_id": [ + 32 + ], + "shader_bake_progress": [ + 32 + ], + "start_port_range": [ + 32 + ], + "total_server_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_stddev_samp_order_by": { + "build_id": [ + 3648 + ], + "cpu_cores_per_socket": [ + 3648 + ], + "cpu_sockets": [ + 3648 + ], + "cpu_threads_per_core": [ + 3648 + ], + "csgo_build_id": [ + 3648 + ], + "demo_network_limiter": [ + 3648 + ], + "disk_available_gb": [ + 3648 + ], + "disk_used_percent": [ + 3648 + ], + "end_port_range": [ + 3648 + ], + "pin_build_id": [ + 3648 + ], + "shader_bake_progress": [ + 3648 + ], + "start_port_range": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_stream_cursor_input": { + "initial_value": [ + 2354 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_stream_cursor_value_input": { + "build_id": [ + 41 + ], + "cpu_cores_per_socket": [ + 41 + ], + "cpu_frequency_info": [ + 2439 + ], + "cpu_governor_info": [ + 2439 + ], + "cpu_sockets": [ + 41 + ], + "cpu_threads_per_core": [ + 41 + ], + "cpu_warnings": [ + 2439 + ], + "cs2_launch_options": [ + 2439 + ], + "cs2_video_settings": [ + 2439 + ], + "csgo_build_id": [ + 41 + ], + "demo_network_limiter": [ + 41 + ], + "disk_available_gb": [ + 41 + ], + "disk_used_percent": [ + 41 + ], + "enabled": [ + 6 + ], + "enabled_for_match_making": [ + 6 + ], + "end_port_range": [ + 41 + ], + "gpu": [ + 6 + ], + "gpu_demos_enabled": [ + 6 + ], + "gpu_info": [ + 2439 + ], + "gpu_rendering_enabled": [ + 6 + ], + "gpu_streaming_enabled": [ + 6 + ], + "id": [ + 85 + ], + "label": [ + 85 + ], + "lan_ip": [ + 2435 + ], + "node_ip": [ + 2435 + ], + "offline_at": [ + 5243 + ], + "pin_build_id": [ + 41 + ], + "pin_plugin_runtime": [ + 85 + ], + "pin_plugin_version": [ + 85 + ], + "plugins_synced_at": [ + 5243 + ], + "public_ip": [ + 2435 + ], + "region": [ + 85 + ], + "shader_bake_progress": [ + 3646 + ], + "shader_bake_progress_stage": [ + 85 + ], + "shader_bake_status": [ + 85 + ], + "shader_bake_status_history": [ + 2439 + ], + "start_port_range": [ + 41 + ], + "status": [ + 956 + ], + "supports_cpu_pinning": [ + 6 + ], + "supports_low_latency": [ + 6 + ], + "token": [ + 85 + ], + "update_status": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_sum_fields": { + "available_server_count": [ + 41 + ], + "build_id": [ + 41 + ], + "cpu_cores_per_socket": [ + 41 + ], + "cpu_sockets": [ + 41 + ], + "cpu_threads_per_core": [ + 41 + ], + "csgo_build_id": [ + 41 + ], + "demo_network_limiter": [ + 41 + ], + "disk_available_gb": [ + 41 + ], + "disk_used_percent": [ + 41 + ], + "end_port_range": [ + 41 + ], + "pin_build_id": [ + 41 + ], + "shader_bake_progress": [ + 3646 + ], + "start_port_range": [ + 41 + ], + "total_server_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_sum_order_by": { + "build_id": [ + 3648 + ], + "cpu_cores_per_socket": [ + 3648 + ], + "cpu_sockets": [ + 3648 + ], + "cpu_threads_per_core": [ + 3648 + ], + "csgo_build_id": [ + 3648 + ], + "demo_network_limiter": [ + 3648 + ], + "disk_available_gb": [ + 3648 + ], + "disk_used_percent": [ + 3648 + ], + "end_port_range": [ + 3648 + ], + "pin_build_id": [ + 3648 + ], + "shader_bake_progress": [ + 3648 + ], + "start_port_range": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_update_column": {}, + "game_server_nodes_updates": { + "_append": [ + 2322 + ], + "_delete_at_path": [ + 2328 + ], + "_delete_elem": [ + 2329 + ], + "_delete_key": [ + 2330 + ], + "_inc": [ + 2331 + ], + "_prepend": [ + 2342 + ], + "_set": [ + 2346 + ], + "where": [ + 2326 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_var_pop_fields": { + "available_server_count": [ + 41 + ], + "build_id": [ + 32 + ], + "cpu_cores_per_socket": [ + 32 + ], + "cpu_sockets": [ + 32 + ], + "cpu_threads_per_core": [ + 32 + ], + "csgo_build_id": [ + 32 + ], + "demo_network_limiter": [ + 32 + ], + "disk_available_gb": [ + 32 + ], + "disk_used_percent": [ + 32 + ], + "end_port_range": [ + 32 + ], + "pin_build_id": [ + 32 + ], + "shader_bake_progress": [ + 32 + ], + "start_port_range": [ + 32 + ], + "total_server_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_var_pop_order_by": { + "build_id": [ + 3648 + ], + "cpu_cores_per_socket": [ + 3648 + ], + "cpu_sockets": [ + 3648 + ], + "cpu_threads_per_core": [ + 3648 + ], + "csgo_build_id": [ + 3648 + ], + "demo_network_limiter": [ + 3648 + ], + "disk_available_gb": [ + 3648 + ], + "disk_used_percent": [ + 3648 + ], + "end_port_range": [ + 3648 + ], + "pin_build_id": [ + 3648 + ], + "shader_bake_progress": [ + 3648 + ], + "start_port_range": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_var_samp_fields": { + "available_server_count": [ + 41 + ], + "build_id": [ + 32 + ], + "cpu_cores_per_socket": [ + 32 + ], + "cpu_sockets": [ + 32 + ], + "cpu_threads_per_core": [ + 32 + ], + "csgo_build_id": [ + 32 + ], + "demo_network_limiter": [ + 32 + ], + "disk_available_gb": [ + 32 + ], + "disk_used_percent": [ + 32 + ], + "end_port_range": [ + 32 + ], + "pin_build_id": [ + 32 + ], + "shader_bake_progress": [ + 32 + ], + "start_port_range": [ + 32 + ], + "total_server_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_var_samp_order_by": { + "build_id": [ + 3648 + ], + "cpu_cores_per_socket": [ + 3648 + ], + "cpu_sockets": [ + 3648 + ], + "cpu_threads_per_core": [ + 3648 + ], + "csgo_build_id": [ + 3648 + ], + "demo_network_limiter": [ + 3648 + ], + "disk_available_gb": [ + 3648 + ], + "disk_used_percent": [ + 3648 + ], + "end_port_range": [ + 3648 + ], + "pin_build_id": [ + 3648 + ], + "shader_bake_progress": [ + 3648 + ], + "start_port_range": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_variance_fields": { + "available_server_count": [ + 41 + ], + "build_id": [ + 32 + ], + "cpu_cores_per_socket": [ + 32 + ], + "cpu_sockets": [ + 32 + ], + "cpu_threads_per_core": [ + 32 + ], + "csgo_build_id": [ + 32 + ], + "demo_network_limiter": [ + 32 + ], + "disk_available_gb": [ + 32 + ], + "disk_used_percent": [ + 32 + ], + "end_port_range": [ + 32 + ], + "pin_build_id": [ + 32 + ], + "shader_bake_progress": [ + 32 + ], + "start_port_range": [ + 32 + ], + "total_server_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "game_server_nodes_variance_order_by": { + "build_id": [ + 3648 + ], + "cpu_cores_per_socket": [ + 3648 + ], + "cpu_sockets": [ + 3648 + ], + "cpu_threads_per_core": [ + 3648 + ], + "csgo_build_id": [ + 3648 + ], + "demo_network_limiter": [ + 3648 + ], + "disk_available_gb": [ + 3648 + ], + "disk_used_percent": [ + 3648 + ], + "end_port_range": [ + 3648 + ], + "pin_build_id": [ + 3648 + ], + "shader_bake_progress": [ + 3648 + ], + "start_port_range": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "game_versions": { + "build_id": [ + 41 + ], + "current": [ + 6 + ], + "cvars": [ + 6 + ], + "description": [ + 85 + ], + "downloads": [ + 2439, + { + "path": [ + 85 + ] + } + ], + "updated_at": [ + 5243 + ], + "version": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "game_versions_aggregate": { + "aggregate": [ + 2367 + ], + "nodes": [ + 2365 + ], + "__typename": [ + 85 + ] + }, + "game_versions_aggregate_fields": { + "avg": [ + 2369 + ], + "count": [ + 41, + { + "columns": [ + 2385, + "[game_versions_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 2377 + ], + "min": [ + 2378 + ], + "stddev": [ + 2387 + ], + "stddev_pop": [ + 2388 + ], + "stddev_samp": [ + 2389 + ], + "sum": [ + 2392 + ], + "var_pop": [ + 2395 + ], + "var_samp": [ + 2396 + ], + "variance": [ + 2397 + ], + "__typename": [ + 85 + ] + }, + "game_versions_append_input": { + "downloads": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "game_versions_avg_fields": { + "build_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "game_versions_bool_exp": { + "_and": [ + 2370 + ], + "_not": [ + 2370 + ], + "_or": [ + 2370 + ], + "build_id": [ + 42 + ], + "current": [ + 7 + ], + "cvars": [ + 7 + ], + "description": [ + 87 + ], + "downloads": [ + 2441 + ], + "updated_at": [ + 5244 + ], + "version": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "game_versions_constraint": {}, + "game_versions_delete_at_path_input": { + "downloads": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "game_versions_delete_elem_input": { + "downloads": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "game_versions_delete_key_input": { + "downloads": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "game_versions_inc_input": { + "build_id": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "game_versions_insert_input": { + "build_id": [ + 41 + ], + "current": [ + 6 + ], + "cvars": [ + 6 + ], + "description": [ + 85 + ], + "downloads": [ + 2439 + ], + "updated_at": [ + 5243 + ], + "version": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "game_versions_max_fields": { + "build_id": [ + 41 + ], + "description": [ + 85 + ], + "updated_at": [ + 5243 + ], + "version": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "game_versions_min_fields": { + "build_id": [ + 41 + ], + "description": [ + 85 + ], + "updated_at": [ + 5243 + ], + "version": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "game_versions_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 2365 + ], + "__typename": [ + 85 + ] + }, + "game_versions_obj_rel_insert_input": { + "data": [ + 2376 + ], + "on_conflict": [ + 2381 + ], + "__typename": [ + 85 + ] + }, + "game_versions_on_conflict": { + "constraint": [ + 2371 + ], + "update_columns": [ + 2393 + ], + "where": [ + 2370 + ], + "__typename": [ + 85 + ] + }, + "game_versions_order_by": { + "build_id": [ + 3648 + ], + "current": [ + 3648 + ], + "cvars": [ + 3648 + ], + "description": [ + 3648 + ], + "downloads": [ + 3648 + ], + "updated_at": [ + 3648 + ], + "version": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "game_versions_pk_columns_input": { + "build_id": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "game_versions_prepend_input": { + "downloads": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "game_versions_select_column": {}, + "game_versions_set_input": { + "build_id": [ + 41 + ], + "current": [ + 6 + ], + "cvars": [ + 6 + ], + "description": [ + 85 + ], + "downloads": [ + 2439 + ], + "updated_at": [ + 5243 + ], + "version": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "game_versions_stddev_fields": { + "build_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "game_versions_stddev_pop_fields": { + "build_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "game_versions_stddev_samp_fields": { + "build_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "game_versions_stream_cursor_input": { + "initial_value": [ + 2391 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "game_versions_stream_cursor_value_input": { + "build_id": [ + 41 + ], + "current": [ + 6 + ], + "cvars": [ + 6 + ], + "description": [ + 85 + ], + "downloads": [ + 2439 + ], + "updated_at": [ + 5243 + ], + "version": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "game_versions_sum_fields": { + "build_id": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "game_versions_update_column": {}, + "game_versions_updates": { + "_append": [ + 2368 + ], + "_delete_at_path": [ + 2372 + ], + "_delete_elem": [ + 2373 + ], + "_delete_key": [ + 2374 + ], + "_inc": [ + 2375 + ], + "_prepend": [ + 2384 + ], + "_set": [ + 2386 + ], + "where": [ + 2370 + ], + "__typename": [ + 85 + ] + }, + "game_versions_var_pop_fields": { + "build_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "game_versions_var_samp_fields": { + "build_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "game_versions_variance_fields": { + "build_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "gamedata_signature_validations": { + "branch": [ + 85 + ], + "build_id": [ + 41 + ], + "game_version": [ + 2365 + ], + "id": [ + 6672 + ], + "results": [ + 2439, + { + "path": [ + 85 + ] + } + ], + "status": [ + 85 + ], + "validated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "gamedata_signature_validations_aggregate": { + "aggregate": [ + 2400 + ], + "nodes": [ + 2398 + ], + "__typename": [ + 85 + ] + }, + "gamedata_signature_validations_aggregate_fields": { + "avg": [ + 2402 + ], + "count": [ + 41, + { + "columns": [ + 2417, + "[gamedata_signature_validations_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 2410 + ], + "min": [ + 2411 + ], + "stddev": [ + 2419 + ], + "stddev_pop": [ + 2420 + ], + "stddev_samp": [ + 2421 + ], + "sum": [ + 2424 + ], + "var_pop": [ + 2427 + ], + "var_samp": [ + 2428 + ], + "variance": [ + 2429 + ], + "__typename": [ + 85 + ] + }, + "gamedata_signature_validations_append_input": { + "results": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "gamedata_signature_validations_avg_fields": { + "build_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "gamedata_signature_validations_bool_exp": { + "_and": [ + 2403 + ], + "_not": [ + 2403 + ], + "_or": [ + 2403 + ], + "branch": [ + 87 + ], + "build_id": [ + 42 + ], + "game_version": [ + 2370 + ], + "id": [ + 6674 + ], + "results": [ + 2441 + ], + "status": [ + 87 + ], + "validated_at": [ + 5244 + ], + "__typename": [ + 85 + ] + }, + "gamedata_signature_validations_constraint": {}, + "gamedata_signature_validations_delete_at_path_input": { + "results": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "gamedata_signature_validations_delete_elem_input": { + "results": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "gamedata_signature_validations_delete_key_input": { + "results": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "gamedata_signature_validations_inc_input": { + "build_id": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "gamedata_signature_validations_insert_input": { + "branch": [ + 85 + ], + "build_id": [ + 41 + ], + "game_version": [ + 2380 + ], + "id": [ + 6672 + ], + "results": [ + 2439 + ], + "status": [ + 85 + ], + "validated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "gamedata_signature_validations_max_fields": { + "branch": [ + 85 + ], + "build_id": [ + 41 + ], + "id": [ + 6672 + ], + "status": [ + 85 + ], + "validated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "gamedata_signature_validations_min_fields": { + "branch": [ + 85 + ], + "build_id": [ + 41 + ], + "id": [ + 6672 + ], + "status": [ + 85 + ], + "validated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "gamedata_signature_validations_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 2398 + ], + "__typename": [ + 85 + ] + }, + "gamedata_signature_validations_on_conflict": { + "constraint": [ + 2404 + ], + "update_columns": [ + 2425 + ], + "where": [ + 2403 + ], + "__typename": [ + 85 + ] + }, + "gamedata_signature_validations_order_by": { + "branch": [ + 3648 + ], + "build_id": [ + 3648 + ], + "game_version": [ + 2382 + ], + "id": [ + 3648 + ], + "results": [ + 3648 + ], + "status": [ + 3648 + ], + "validated_at": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "gamedata_signature_validations_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "gamedata_signature_validations_prepend_input": { + "results": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "gamedata_signature_validations_select_column": {}, + "gamedata_signature_validations_set_input": { + "branch": [ + 85 + ], + "build_id": [ + 41 + ], + "id": [ + 6672 + ], + "results": [ + 2439 + ], + "status": [ + 85 + ], + "validated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "gamedata_signature_validations_stddev_fields": { + "build_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "gamedata_signature_validations_stddev_pop_fields": { + "build_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "gamedata_signature_validations_stddev_samp_fields": { + "build_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "gamedata_signature_validations_stream_cursor_input": { + "initial_value": [ + 2423 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "gamedata_signature_validations_stream_cursor_value_input": { + "branch": [ + 85 + ], + "build_id": [ + 41 + ], + "id": [ + 6672 + ], + "results": [ + 2439 + ], + "status": [ + 85 + ], + "validated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "gamedata_signature_validations_sum_fields": { + "build_id": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "gamedata_signature_validations_update_column": {}, + "gamedata_signature_validations_updates": { + "_append": [ + 2401 + ], + "_delete_at_path": [ + 2405 + ], + "_delete_elem": [ + 2406 + ], + "_delete_key": [ + 2407 + ], + "_inc": [ + 2408 + ], + "_prepend": [ + 2416 + ], + "_set": [ + 2418 + ], + "where": [ + 2403 + ], + "__typename": [ + 85 + ] + }, + "gamedata_signature_validations_var_pop_fields": { + "build_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "gamedata_signature_validations_var_samp_fields": { + "build_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "gamedata_signature_validations_variance_fields": { + "build_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "get_event_leaderboard_args": { + "_category": [ + 85 + ], + "_event_id": [ + 6672 + ], + "_match_type": [ + 85 + ], + "_min_rounds": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "get_leaderboard_args": { + "_category": [ + 85 + ], + "_exclude_tournaments": [ + 6 + ], + "_match_type": [ + 85 + ], + "_role": [ + 85 + ], + "_season_id": [ + 6672 + ], + "_source": [ + 85 + ], + "_window_days": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "get_league_season_leaderboard_args": { + "_category": [ + 85 + ], + "_league_season_id": [ + 6672 + ], + "_role": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "get_player_leaderboard_rank_args": { + "_category": [ + 85 + ], + "_exclude_tournaments": [ + 6 + ], + "_match_type": [ + 85 + ], + "_player_steam_id": [ + 85 + ], + "_season_id": [ + 6672 + ], + "_source": [ + 85 + ], + "_window_days": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "get_tournament_leaderboard_args": { + "_tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "inet": {}, + "inet_comparison_exp": { + "_eq": [ + 2435 + ], + "_gt": [ + 2435 + ], + "_gte": [ + 2435 + ], + "_in": [ + 2435 + ], + "_is_null": [ + 6 + ], + "_lt": [ + 2435 + ], + "_lte": [ + 2435 + ], + "_neq": [ + 2435 + ], + "_nin": [ + 2435 + ], + "__typename": [ + 85 + ] + }, + "json": {}, + "json_comparison_exp": { + "_eq": [ + 2437 + ], + "_gt": [ + 2437 + ], + "_gte": [ + 2437 + ], + "_in": [ + 2437 + ], + "_is_null": [ + 6 + ], + "_lt": [ + 2437 + ], + "_lte": [ + 2437 + ], + "_neq": [ + 2437 + ], + "_nin": [ + 2437 + ], + "__typename": [ + 85 + ] + }, + "jsonb": {}, + "jsonb_cast_exp": { + "String": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "jsonb_comparison_exp": { + "_cast": [ + 2440 + ], + "_contained_in": [ + 2439 + ], + "_contains": [ + 2439 + ], + "_eq": [ + 2439 + ], + "_gt": [ + 2439 + ], + "_gte": [ + 2439 + ], + "_has_key": [ + 85 + ], + "_has_keys_all": [ + 85 + ], + "_has_keys_any": [ + 85 + ], + "_in": [ + 2439 + ], + "_is_null": [ + 6 + ], + "_lt": [ + 2439 + ], + "_lte": [ + 2439 + ], + "_neq": [ + 2439 + ], + "_nin": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "leaderboard_entries": { + "matches_played": [ + 41 + ], + "player_avatar_url": [ + 85 + ], + "player_country": [ + 85 + ], + "player_custom_avatar_url": [ + 85 + ], + "player_name": [ + 85 + ], + "player_steam_id": [ + 85 + ], + "secondary_value": [ + 2093 + ], + "tertiary_value": [ + 2093 + ], + "value": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "leaderboard_entries_aggregate": { + "aggregate": [ + 2444 + ], + "nodes": [ + 2442 + ], + "__typename": [ + 85 + ] + }, + "leaderboard_entries_aggregate_fields": { + "avg": [ + 2445 + ], + "count": [ + 41, + { + "columns": [ + 2453, + "[leaderboard_entries_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 2449 + ], + "min": [ + 2450 + ], + "stddev": [ + 2455 + ], + "stddev_pop": [ + 2456 + ], + "stddev_samp": [ + 2457 + ], + "sum": [ + 2460 + ], + "var_pop": [ + 2462 + ], + "var_samp": [ + 2463 + ], + "variance": [ + 2464 + ], + "__typename": [ + 85 + ] + }, + "leaderboard_entries_avg_fields": { + "matches_played": [ + 32 + ], + "secondary_value": [ + 32 + ], + "tertiary_value": [ + 32 + ], + "value": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "leaderboard_entries_bool_exp": { + "_and": [ + 2446 + ], + "_not": [ + 2446 + ], + "_or": [ + 2446 + ], + "matches_played": [ + 42 + ], + "player_avatar_url": [ + 87 + ], + "player_country": [ + 87 + ], + "player_custom_avatar_url": [ + 87 + ], + "player_name": [ + 87 + ], + "player_steam_id": [ + 87 + ], + "secondary_value": [ + 2094 + ], + "tertiary_value": [ + 2094 + ], + "value": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "leaderboard_entries_inc_input": { + "matches_played": [ + 41 + ], + "secondary_value": [ + 2093 + ], + "tertiary_value": [ + 2093 + ], + "value": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "leaderboard_entries_insert_input": { + "matches_played": [ + 41 + ], + "player_avatar_url": [ + 85 + ], + "player_country": [ + 85 + ], + "player_custom_avatar_url": [ + 85 + ], + "player_name": [ + 85 + ], + "player_steam_id": [ + 85 + ], + "secondary_value": [ + 2093 + ], + "tertiary_value": [ + 2093 + ], + "value": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "leaderboard_entries_max_fields": { + "matches_played": [ + 41 + ], + "player_avatar_url": [ + 85 + ], + "player_country": [ + 85 + ], + "player_custom_avatar_url": [ + 85 + ], + "player_name": [ + 85 + ], + "player_steam_id": [ + 85 + ], + "secondary_value": [ + 2093 + ], + "tertiary_value": [ + 2093 + ], + "value": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "leaderboard_entries_min_fields": { + "matches_played": [ + 41 + ], + "player_avatar_url": [ + 85 + ], + "player_country": [ + 85 + ], + "player_custom_avatar_url": [ + 85 + ], + "player_name": [ + 85 + ], + "player_steam_id": [ + 85 + ], + "secondary_value": [ + 2093 + ], + "tertiary_value": [ + 2093 + ], + "value": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "leaderboard_entries_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 2442 + ], + "__typename": [ + 85 + ] + }, + "leaderboard_entries_order_by": { + "matches_played": [ + 3648 + ], + "player_avatar_url": [ + 3648 + ], + "player_country": [ + 3648 + ], + "player_custom_avatar_url": [ + 3648 + ], + "player_name": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "secondary_value": [ + 3648 + ], + "tertiary_value": [ + 3648 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "leaderboard_entries_select_column": {}, + "leaderboard_entries_set_input": { + "matches_played": [ + 41 + ], + "player_avatar_url": [ + 85 + ], + "player_country": [ + 85 + ], + "player_custom_avatar_url": [ + 85 + ], + "player_name": [ + 85 + ], + "player_steam_id": [ + 85 + ], + "secondary_value": [ + 2093 + ], + "tertiary_value": [ + 2093 + ], + "value": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "leaderboard_entries_stddev_fields": { + "matches_played": [ + 32 + ], + "secondary_value": [ + 32 + ], + "tertiary_value": [ + 32 + ], + "value": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "leaderboard_entries_stddev_pop_fields": { + "matches_played": [ + 32 + ], + "secondary_value": [ + 32 + ], + "tertiary_value": [ + 32 + ], + "value": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "leaderboard_entries_stddev_samp_fields": { + "matches_played": [ + 32 + ], + "secondary_value": [ + 32 + ], + "tertiary_value": [ + 32 + ], + "value": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "leaderboard_entries_stream_cursor_input": { + "initial_value": [ + 2459 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "leaderboard_entries_stream_cursor_value_input": { + "matches_played": [ + 41 + ], + "player_avatar_url": [ + 85 + ], + "player_country": [ + 85 + ], + "player_custom_avatar_url": [ + 85 + ], + "player_name": [ + 85 + ], + "player_steam_id": [ + 85 + ], + "secondary_value": [ + 2093 + ], + "tertiary_value": [ + 2093 + ], + "value": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "leaderboard_entries_sum_fields": { + "matches_played": [ + 41 + ], + "secondary_value": [ + 2093 + ], + "tertiary_value": [ + 2093 + ], + "value": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "leaderboard_entries_updates": { + "_inc": [ + 2447 + ], + "_set": [ + 2454 + ], + "where": [ + 2446 + ], + "__typename": [ + 85 + ] + }, + "leaderboard_entries_var_pop_fields": { + "matches_played": [ + 32 + ], + "secondary_value": [ + 32 + ], + "tertiary_value": [ + 32 + ], + "value": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "leaderboard_entries_var_samp_fields": { + "matches_played": [ + 32 + ], + "secondary_value": [ + 32 + ], + "tertiary_value": [ + 32 + ], + "value": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "leaderboard_entries_variance_fields": { + "matches_played": [ + 32 + ], + "secondary_value": [ + 32 + ], + "tertiary_value": [ + 32 + ], + "value": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_award_forfeit_args": { + "_tournament_bracket_id": [ + 6672 + ], + "_winning_tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "league_divisions": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "name": [ + 85 + ], + "season_divisions": [ + 2617, + { + "distinct_on": [ + 2636, + "[league_season_divisions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2634, + "[league_season_divisions_order_by!]" + ], + "where": [ + 2624 + ] + } + ], + "season_divisions_aggregate": [ + 2618, + { + "distinct_on": [ + 2636, + "[league_season_divisions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2634, + "[league_season_divisions_order_by!]" + ], + "where": [ + 2624 + ] + } + ], + "tier": [ + 4830 + ], + "__typename": [ + 85 + ] + }, + "league_divisions_aggregate": { + "aggregate": [ + 2468 + ], + "nodes": [ + 2466 + ], + "__typename": [ + 85 + ] + }, + "league_divisions_aggregate_fields": { + "avg": [ + 2469 + ], + "count": [ + 41, + { + "columns": [ + 2481, + "[league_divisions_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 2474 + ], + "min": [ + 2475 + ], + "stddev": [ + 2483 + ], + "stddev_pop": [ + 2484 + ], + "stddev_samp": [ + 2485 + ], + "sum": [ + 2488 + ], + "var_pop": [ + 2491 + ], + "var_samp": [ + 2492 + ], + "variance": [ + 2493 + ], + "__typename": [ + 85 + ] + }, + "league_divisions_avg_fields": { + "tier": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_divisions_bool_exp": { + "_and": [ + 2470 + ], + "_not": [ + 2470 + ], + "_or": [ + 2470 + ], + "created_at": [ + 5244 + ], + "id": [ + 6674 + ], + "name": [ + 87 + ], + "season_divisions": [ + 2624 + ], + "season_divisions_aggregate": [ + 2619 + ], + "tier": [ + 4831 + ], + "__typename": [ + 85 + ] + }, + "league_divisions_constraint": {}, + "league_divisions_inc_input": { + "tier": [ + 4830 + ], + "__typename": [ + 85 + ] + }, + "league_divisions_insert_input": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "name": [ + 85 + ], + "season_divisions": [ + 2623 + ], + "tier": [ + 4830 + ], + "__typename": [ + 85 + ] + }, + "league_divisions_max_fields": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "name": [ + 85 + ], + "tier": [ + 4830 + ], + "__typename": [ + 85 + ] + }, + "league_divisions_min_fields": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "name": [ + 85 + ], + "tier": [ + 4830 + ], + "__typename": [ + 85 + ] + }, + "league_divisions_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 2466 + ], + "__typename": [ + 85 + ] + }, + "league_divisions_obj_rel_insert_input": { + "data": [ + 2473 + ], + "on_conflict": [ + 2478 + ], + "__typename": [ + 85 + ] + }, + "league_divisions_on_conflict": { + "constraint": [ + 2471 + ], + "update_columns": [ + 2489 + ], + "where": [ + 2470 + ], + "__typename": [ + 85 + ] + }, + "league_divisions_order_by": { + "created_at": [ + 3648 + ], + "id": [ + 3648 + ], + "name": [ + 3648 + ], + "season_divisions_aggregate": [ + 2622 + ], + "tier": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_divisions_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "league_divisions_select_column": {}, + "league_divisions_set_input": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "name": [ + 85 + ], + "tier": [ + 4830 + ], + "__typename": [ + 85 + ] + }, + "league_divisions_stddev_fields": { + "tier": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_divisions_stddev_pop_fields": { + "tier": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_divisions_stddev_samp_fields": { + "tier": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_divisions_stream_cursor_input": { + "initial_value": [ + 2487 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "league_divisions_stream_cursor_value_input": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "name": [ + 85 + ], + "tier": [ + 4830 + ], + "__typename": [ + 85 + ] + }, + "league_divisions_sum_fields": { + "tier": [ + 4830 + ], + "__typename": [ + 85 + ] + }, + "league_divisions_update_column": {}, + "league_divisions_updates": { + "_inc": [ + 2472 + ], + "_set": [ + 2482 + ], + "where": [ + 2470 + ], + "__typename": [ + 85 + ] + }, + "league_divisions_var_pop_fields": { + "tier": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_divisions_var_samp_fields": { + "tier": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_divisions_variance_fields": { + "tier": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_match_weeks": { + "closes_at": [ + 5243 + ], + "created_at": [ + 5243 + ], + "default_match_at": [ + 5243 + ], + "id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "opens_at": [ + 5243 + ], + "season": [ + 2642 + ], + "week_number": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "league_match_weeks_aggregate": { + "aggregate": [ + 2498 + ], + "nodes": [ + 2494 + ], + "__typename": [ + 85 + ] + }, + "league_match_weeks_aggregate_bool_exp": { + "count": [ + 2497 + ], + "__typename": [ + 85 + ] + }, + "league_match_weeks_aggregate_bool_exp_count": { + "arguments": [ + 2515 + ], + "distinct": [ + 6 + ], + "filter": [ + 2503 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "league_match_weeks_aggregate_fields": { + "avg": [ + 2501 + ], + "count": [ + 41, + { + "columns": [ + 2515, + "[league_match_weeks_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 2507 + ], + "min": [ + 2509 + ], + "stddev": [ + 2517 + ], + "stddev_pop": [ + 2519 + ], + "stddev_samp": [ + 2521 + ], + "sum": [ + 2525 + ], + "var_pop": [ + 2529 + ], + "var_samp": [ + 2531 + ], + "variance": [ + 2533 + ], + "__typename": [ + 85 + ] + }, + "league_match_weeks_aggregate_order_by": { + "avg": [ + 2502 + ], + "count": [ + 3648 + ], + "max": [ + 2508 + ], + "min": [ + 2510 + ], + "stddev": [ + 2518 + ], + "stddev_pop": [ + 2520 + ], + "stddev_samp": [ + 2522 + ], + "sum": [ + 2526 + ], + "var_pop": [ + 2530 + ], + "var_samp": [ + 2532 + ], + "variance": [ + 2534 + ], + "__typename": [ + 85 + ] + }, + "league_match_weeks_arr_rel_insert_input": { + "data": [ + 2506 + ], + "on_conflict": [ + 2512 + ], + "__typename": [ + 85 + ] + }, + "league_match_weeks_avg_fields": { + "week_number": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_match_weeks_avg_order_by": { + "week_number": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_match_weeks_bool_exp": { + "_and": [ + 2503 + ], + "_not": [ + 2503 + ], + "_or": [ + 2503 + ], + "closes_at": [ + 5244 + ], + "created_at": [ + 5244 + ], + "default_match_at": [ + 5244 + ], + "id": [ + 6674 + ], + "league_season_id": [ + 6674 + ], + "opens_at": [ + 5244 + ], + "season": [ + 2647 + ], + "week_number": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "league_match_weeks_constraint": {}, + "league_match_weeks_inc_input": { + "week_number": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "league_match_weeks_insert_input": { + "closes_at": [ + 5243 + ], + "created_at": [ + 5243 + ], + "default_match_at": [ + 5243 + ], + "id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "opens_at": [ + 5243 + ], + "season": [ + 2657 + ], + "week_number": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "league_match_weeks_max_fields": { + "closes_at": [ + 5243 + ], + "created_at": [ + 5243 + ], + "default_match_at": [ + 5243 + ], + "id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "opens_at": [ + 5243 + ], + "week_number": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "league_match_weeks_max_order_by": { + "closes_at": [ + 3648 + ], + "created_at": [ + 3648 + ], + "default_match_at": [ + 3648 + ], + "id": [ + 3648 + ], + "league_season_id": [ + 3648 + ], + "opens_at": [ + 3648 + ], + "week_number": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_match_weeks_min_fields": { + "closes_at": [ + 5243 + ], + "created_at": [ + 5243 + ], + "default_match_at": [ + 5243 + ], + "id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "opens_at": [ + 5243 + ], + "week_number": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "league_match_weeks_min_order_by": { + "closes_at": [ + 3648 + ], + "created_at": [ + 3648 + ], + "default_match_at": [ + 3648 + ], + "id": [ + 3648 + ], + "league_season_id": [ + 3648 + ], + "opens_at": [ + 3648 + ], + "week_number": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_match_weeks_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 2494 + ], + "__typename": [ + 85 + ] + }, + "league_match_weeks_on_conflict": { + "constraint": [ + 2504 + ], + "update_columns": [ + 2527 + ], + "where": [ + 2503 + ], + "__typename": [ + 85 + ] + }, + "league_match_weeks_order_by": { + "closes_at": [ + 3648 + ], + "created_at": [ + 3648 + ], + "default_match_at": [ + 3648 + ], + "id": [ + 3648 + ], + "league_season_id": [ + 3648 + ], + "opens_at": [ + 3648 + ], + "season": [ + 2659 + ], + "week_number": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_match_weeks_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "league_match_weeks_select_column": {}, + "league_match_weeks_set_input": { + "closes_at": [ + 5243 + ], + "created_at": [ + 5243 + ], + "default_match_at": [ + 5243 + ], + "id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "opens_at": [ + 5243 + ], + "week_number": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "league_match_weeks_stddev_fields": { + "week_number": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_match_weeks_stddev_order_by": { + "week_number": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_match_weeks_stddev_pop_fields": { + "week_number": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_match_weeks_stddev_pop_order_by": { + "week_number": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_match_weeks_stddev_samp_fields": { + "week_number": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_match_weeks_stddev_samp_order_by": { + "week_number": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_match_weeks_stream_cursor_input": { + "initial_value": [ + 2524 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "league_match_weeks_stream_cursor_value_input": { + "closes_at": [ + 5243 + ], + "created_at": [ + 5243 + ], + "default_match_at": [ + 5243 + ], + "id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "opens_at": [ + 5243 + ], + "week_number": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "league_match_weeks_sum_fields": { + "week_number": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "league_match_weeks_sum_order_by": { + "week_number": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_match_weeks_update_column": {}, + "league_match_weeks_updates": { + "_inc": [ + 2505 + ], + "_set": [ + 2516 + ], + "where": [ + 2503 + ], + "__typename": [ + 85 + ] + }, + "league_match_weeks_var_pop_fields": { + "week_number": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_match_weeks_var_pop_order_by": { + "week_number": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_match_weeks_var_samp_fields": { + "week_number": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_match_weeks_var_samp_order_by": { + "week_number": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_match_weeks_variance_fields": { + "week_number": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_match_weeks_variance_order_by": { + "week_number": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_relegation_playoffs": { + "created_at": [ + 5243 + ], + "higher_division": [ + 2466 + ], + "higher_division_id": [ + 6672 + ], + "higher_slots": [ + 41 + ], + "id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "lower_division": [ + 2466 + ], + "lower_division_id": [ + 6672 + ], + "resolved_at": [ + 5243 + ], + "season": [ + 2642 + ], + "tournament": [ + 5896 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "league_relegation_playoffs_aggregate": { + "aggregate": [ + 2539 + ], + "nodes": [ + 2535 + ], + "__typename": [ + 85 + ] + }, + "league_relegation_playoffs_aggregate_bool_exp": { + "count": [ + 2538 + ], + "__typename": [ + 85 + ] + }, + "league_relegation_playoffs_aggregate_bool_exp_count": { + "arguments": [ + 2556 + ], + "distinct": [ + 6 + ], + "filter": [ + 2544 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "league_relegation_playoffs_aggregate_fields": { + "avg": [ + 2542 + ], + "count": [ + 41, + { + "columns": [ + 2556, + "[league_relegation_playoffs_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 2548 + ], + "min": [ + 2550 + ], + "stddev": [ + 2558 + ], + "stddev_pop": [ + 2560 + ], + "stddev_samp": [ + 2562 + ], + "sum": [ + 2566 + ], + "var_pop": [ + 2570 + ], + "var_samp": [ + 2572 + ], + "variance": [ + 2574 + ], + "__typename": [ + 85 + ] + }, + "league_relegation_playoffs_aggregate_order_by": { + "avg": [ + 2543 + ], + "count": [ + 3648 + ], + "max": [ + 2549 + ], + "min": [ + 2551 + ], + "stddev": [ + 2559 + ], + "stddev_pop": [ + 2561 + ], + "stddev_samp": [ + 2563 + ], + "sum": [ + 2567 + ], + "var_pop": [ + 2571 + ], + "var_samp": [ + 2573 + ], + "variance": [ + 2575 + ], + "__typename": [ + 85 + ] + }, + "league_relegation_playoffs_arr_rel_insert_input": { + "data": [ + 2547 + ], + "on_conflict": [ + 2553 + ], + "__typename": [ + 85 + ] + }, + "league_relegation_playoffs_avg_fields": { + "higher_slots": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_relegation_playoffs_avg_order_by": { + "higher_slots": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_relegation_playoffs_bool_exp": { + "_and": [ + 2544 + ], + "_not": [ + 2544 + ], + "_or": [ + 2544 + ], + "created_at": [ + 5244 + ], + "higher_division": [ + 2470 + ], + "higher_division_id": [ + 6674 + ], + "higher_slots": [ + 42 + ], + "id": [ + 6674 + ], + "league_season_id": [ + 6674 + ], + "lower_division": [ + 2470 + ], + "lower_division_id": [ + 6674 + ], + "resolved_at": [ + 5244 + ], + "season": [ + 2647 + ], + "tournament": [ + 5917 + ], + "tournament_id": [ + 6674 + ], + "__typename": [ + 85 + ] + }, + "league_relegation_playoffs_constraint": {}, + "league_relegation_playoffs_inc_input": { + "higher_slots": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "league_relegation_playoffs_insert_input": { + "created_at": [ + 5243 + ], + "higher_division": [ + 2477 + ], + "higher_division_id": [ + 6672 + ], + "higher_slots": [ + 41 + ], + "id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "lower_division": [ + 2477 + ], + "lower_division_id": [ + 6672 + ], + "resolved_at": [ + 5243 + ], + "season": [ + 2657 + ], + "tournament": [ + 5926 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "league_relegation_playoffs_max_fields": { + "created_at": [ + 5243 + ], + "higher_division_id": [ + 6672 + ], + "higher_slots": [ + 41 + ], + "id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "lower_division_id": [ + 6672 + ], + "resolved_at": [ + 5243 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "league_relegation_playoffs_max_order_by": { + "created_at": [ + 3648 + ], + "higher_division_id": [ + 3648 + ], + "higher_slots": [ + 3648 + ], + "id": [ + 3648 + ], + "league_season_id": [ + 3648 + ], + "lower_division_id": [ + 3648 + ], + "resolved_at": [ + 3648 + ], + "tournament_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_relegation_playoffs_min_fields": { + "created_at": [ + 5243 + ], + "higher_division_id": [ + 6672 + ], + "higher_slots": [ + 41 + ], + "id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "lower_division_id": [ + 6672 + ], + "resolved_at": [ + 5243 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "league_relegation_playoffs_min_order_by": { + "created_at": [ + 3648 + ], + "higher_division_id": [ + 3648 + ], + "higher_slots": [ + 3648 + ], + "id": [ + 3648 + ], + "league_season_id": [ + 3648 + ], + "lower_division_id": [ + 3648 + ], + "resolved_at": [ + 3648 + ], + "tournament_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_relegation_playoffs_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 2535 + ], + "__typename": [ + 85 + ] + }, + "league_relegation_playoffs_on_conflict": { + "constraint": [ + 2545 + ], + "update_columns": [ + 2568 + ], + "where": [ + 2544 + ], + "__typename": [ + 85 + ] + }, + "league_relegation_playoffs_order_by": { + "created_at": [ + 3648 + ], + "higher_division": [ + 2479 + ], + "higher_division_id": [ + 3648 + ], + "higher_slots": [ + 3648 + ], + "id": [ + 3648 + ], + "league_season_id": [ + 3648 + ], + "lower_division": [ + 2479 + ], + "lower_division_id": [ + 3648 + ], + "resolved_at": [ + 3648 + ], + "season": [ + 2659 + ], + "tournament": [ + 5928 + ], + "tournament_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_relegation_playoffs_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "league_relegation_playoffs_select_column": {}, + "league_relegation_playoffs_set_input": { + "created_at": [ + 5243 + ], + "higher_division_id": [ + 6672 + ], + "higher_slots": [ + 41 + ], + "id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "lower_division_id": [ + 6672 + ], + "resolved_at": [ + 5243 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "league_relegation_playoffs_stddev_fields": { + "higher_slots": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_relegation_playoffs_stddev_order_by": { + "higher_slots": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_relegation_playoffs_stddev_pop_fields": { + "higher_slots": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_relegation_playoffs_stddev_pop_order_by": { + "higher_slots": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_relegation_playoffs_stddev_samp_fields": { + "higher_slots": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_relegation_playoffs_stddev_samp_order_by": { + "higher_slots": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_relegation_playoffs_stream_cursor_input": { + "initial_value": [ + 2565 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "league_relegation_playoffs_stream_cursor_value_input": { + "created_at": [ + 5243 + ], + "higher_division_id": [ + 6672 + ], + "higher_slots": [ + 41 + ], + "id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "lower_division_id": [ + 6672 + ], + "resolved_at": [ + 5243 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "league_relegation_playoffs_sum_fields": { + "higher_slots": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "league_relegation_playoffs_sum_order_by": { + "higher_slots": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_relegation_playoffs_update_column": {}, + "league_relegation_playoffs_updates": { + "_inc": [ + 2546 + ], + "_set": [ + 2557 + ], + "where": [ + 2544 + ], + "__typename": [ + 85 + ] + }, + "league_relegation_playoffs_var_pop_fields": { + "higher_slots": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_relegation_playoffs_var_pop_order_by": { + "higher_slots": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_relegation_playoffs_var_samp_fields": { + "higher_slots": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_relegation_playoffs_var_samp_order_by": { + "higher_slots": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_relegation_playoffs_variance_fields": { + "higher_slots": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_relegation_playoffs_variance_order_by": { + "higher_slots": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_scheduling_proposals": { + "bracket": [ + 5287 + ], + "created_at": [ + 5243 + ], + "e_proposal_status": [ + 993 + ], + "id": [ + 6672 + ], + "message": [ + 85 + ], + "proposed_by": [ + 4606 + ], + "proposed_by_league_team_season_id": [ + 6672 + ], + "proposed_by_steam_id": [ + 312 + ], + "proposed_time": [ + 5243 + ], + "responded_by": [ + 4606 + ], + "responded_by_steam_id": [ + 312 + ], + "status": [ + 998 + ], + "team_season": [ + 2757 + ], + "tournament_bracket_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "league_scheduling_proposals_aggregate": { + "aggregate": [ + 2580 + ], + "nodes": [ + 2576 + ], + "__typename": [ + 85 + ] + }, + "league_scheduling_proposals_aggregate_bool_exp": { + "count": [ + 2579 + ], + "__typename": [ + 85 + ] + }, + "league_scheduling_proposals_aggregate_bool_exp_count": { + "arguments": [ + 2597 + ], + "distinct": [ + 6 + ], + "filter": [ + 2585 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "league_scheduling_proposals_aggregate_fields": { + "avg": [ + 2583 + ], + "count": [ + 41, + { + "columns": [ + 2597, + "[league_scheduling_proposals_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 2589 + ], + "min": [ + 2591 + ], + "stddev": [ + 2599 + ], + "stddev_pop": [ + 2601 + ], + "stddev_samp": [ + 2603 + ], + "sum": [ + 2607 + ], + "var_pop": [ + 2611 + ], + "var_samp": [ + 2613 + ], + "variance": [ + 2615 + ], + "__typename": [ + 85 + ] + }, + "league_scheduling_proposals_aggregate_order_by": { + "avg": [ + 2584 + ], + "count": [ + 3648 + ], + "max": [ + 2590 + ], + "min": [ + 2592 + ], + "stddev": [ + 2600 + ], + "stddev_pop": [ + 2602 + ], + "stddev_samp": [ + 2604 + ], + "sum": [ + 2608 + ], + "var_pop": [ + 2612 + ], + "var_samp": [ + 2614 + ], + "variance": [ + 2616 + ], + "__typename": [ + 85 + ] + }, + "league_scheduling_proposals_arr_rel_insert_input": { + "data": [ + 2588 + ], + "on_conflict": [ + 2594 + ], + "__typename": [ + 85 + ] + }, + "league_scheduling_proposals_avg_fields": { + "proposed_by_steam_id": [ + 32 + ], + "responded_by_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_scheduling_proposals_avg_order_by": { + "proposed_by_steam_id": [ + 3648 + ], + "responded_by_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_scheduling_proposals_bool_exp": { + "_and": [ + 2585 + ], + "_not": [ + 2585 + ], + "_or": [ + 2585 + ], + "bracket": [ + 5298 + ], + "created_at": [ + 5244 + ], + "e_proposal_status": [ + 996 + ], + "id": [ + 6674 + ], + "message": [ + 87 + ], + "proposed_by": [ + 4610 + ], + "proposed_by_league_team_season_id": [ + 6674 + ], + "proposed_by_steam_id": [ + 314 + ], + "proposed_time": [ + 5244 + ], + "responded_by": [ + 4610 + ], + "responded_by_steam_id": [ + 314 + ], + "status": [ + 999 + ], + "team_season": [ + 2766 + ], + "tournament_bracket_id": [ + 6674 + ], + "__typename": [ + 85 + ] + }, + "league_scheduling_proposals_constraint": {}, + "league_scheduling_proposals_inc_input": { + "proposed_by_steam_id": [ + 312 + ], + "responded_by_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "league_scheduling_proposals_insert_input": { + "bracket": [ + 5307 + ], + "created_at": [ + 5243 + ], + "e_proposal_status": [ + 1004 + ], + "id": [ + 6672 + ], + "message": [ + 85 + ], + "proposed_by": [ + 4617 + ], + "proposed_by_league_team_season_id": [ + 6672 + ], + "proposed_by_steam_id": [ + 312 + ], + "proposed_time": [ + 5243 + ], + "responded_by": [ + 4617 + ], + "responded_by_steam_id": [ + 312 + ], + "status": [ + 998 + ], + "team_season": [ + 2775 + ], + "tournament_bracket_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "league_scheduling_proposals_max_fields": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "message": [ + 85 + ], + "proposed_by_league_team_season_id": [ + 6672 + ], + "proposed_by_steam_id": [ + 312 + ], + "proposed_time": [ + 5243 + ], + "responded_by_steam_id": [ + 312 + ], + "tournament_bracket_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "league_scheduling_proposals_max_order_by": { + "created_at": [ + 3648 + ], + "id": [ + 3648 + ], + "message": [ + 3648 + ], + "proposed_by_league_team_season_id": [ + 3648 + ], + "proposed_by_steam_id": [ + 3648 + ], + "proposed_time": [ + 3648 + ], + "responded_by_steam_id": [ + 3648 + ], + "tournament_bracket_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_scheduling_proposals_min_fields": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "message": [ + 85 + ], + "proposed_by_league_team_season_id": [ + 6672 + ], + "proposed_by_steam_id": [ + 312 + ], + "proposed_time": [ + 5243 + ], + "responded_by_steam_id": [ + 312 + ], + "tournament_bracket_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "league_scheduling_proposals_min_order_by": { + "created_at": [ + 3648 + ], + "id": [ + 3648 + ], + "message": [ + 3648 + ], + "proposed_by_league_team_season_id": [ + 3648 + ], + "proposed_by_steam_id": [ + 3648 + ], + "proposed_time": [ + 3648 + ], + "responded_by_steam_id": [ + 3648 + ], + "tournament_bracket_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_scheduling_proposals_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 2576 + ], + "__typename": [ + 85 + ] + }, + "league_scheduling_proposals_on_conflict": { + "constraint": [ + 2586 + ], + "update_columns": [ + 2609 + ], + "where": [ + 2585 + ], + "__typename": [ + 85 + ] + }, + "league_scheduling_proposals_order_by": { + "bracket": [ + 5309 + ], + "created_at": [ + 3648 + ], + "e_proposal_status": [ + 1006 + ], + "id": [ + 3648 + ], + "message": [ + 3648 + ], + "proposed_by": [ + 4619 + ], + "proposed_by_league_team_season_id": [ + 3648 + ], + "proposed_by_steam_id": [ + 3648 + ], + "proposed_time": [ + 3648 + ], + "responded_by": [ + 4619 + ], + "responded_by_steam_id": [ + 3648 + ], + "status": [ + 3648 + ], + "team_season": [ + 2777 + ], + "tournament_bracket_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_scheduling_proposals_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "league_scheduling_proposals_select_column": {}, + "league_scheduling_proposals_set_input": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "message": [ + 85 + ], + "proposed_by_league_team_season_id": [ + 6672 + ], + "proposed_by_steam_id": [ + 312 + ], + "proposed_time": [ + 5243 + ], + "responded_by_steam_id": [ + 312 + ], + "status": [ + 998 + ], + "tournament_bracket_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "league_scheduling_proposals_stddev_fields": { + "proposed_by_steam_id": [ + 32 + ], + "responded_by_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_scheduling_proposals_stddev_order_by": { + "proposed_by_steam_id": [ + 3648 + ], + "responded_by_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_scheduling_proposals_stddev_pop_fields": { + "proposed_by_steam_id": [ + 32 + ], + "responded_by_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_scheduling_proposals_stddev_pop_order_by": { + "proposed_by_steam_id": [ + 3648 + ], + "responded_by_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_scheduling_proposals_stddev_samp_fields": { + "proposed_by_steam_id": [ + 32 + ], + "responded_by_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_scheduling_proposals_stddev_samp_order_by": { + "proposed_by_steam_id": [ + 3648 + ], + "responded_by_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_scheduling_proposals_stream_cursor_input": { + "initial_value": [ + 2606 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "league_scheduling_proposals_stream_cursor_value_input": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "message": [ + 85 + ], + "proposed_by_league_team_season_id": [ + 6672 + ], + "proposed_by_steam_id": [ + 312 + ], + "proposed_time": [ + 5243 + ], + "responded_by_steam_id": [ + 312 + ], + "status": [ + 998 + ], + "tournament_bracket_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "league_scheduling_proposals_sum_fields": { + "proposed_by_steam_id": [ + 312 + ], + "responded_by_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "league_scheduling_proposals_sum_order_by": { + "proposed_by_steam_id": [ + 3648 + ], + "responded_by_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_scheduling_proposals_update_column": {}, + "league_scheduling_proposals_updates": { + "_inc": [ + 2587 + ], + "_set": [ + 2598 + ], + "where": [ + 2585 + ], + "__typename": [ + 85 + ] + }, + "league_scheduling_proposals_var_pop_fields": { + "proposed_by_steam_id": [ + 32 + ], + "responded_by_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_scheduling_proposals_var_pop_order_by": { + "proposed_by_steam_id": [ + 3648 + ], + "responded_by_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_scheduling_proposals_var_samp_fields": { + "proposed_by_steam_id": [ + 32 + ], + "responded_by_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_scheduling_proposals_var_samp_order_by": { + "proposed_by_steam_id": [ + 3648 + ], + "responded_by_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_scheduling_proposals_variance_fields": { + "proposed_by_steam_id": [ + 32 + ], + "responded_by_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_scheduling_proposals_variance_order_by": { + "proposed_by_steam_id": [ + 3648 + ], + "responded_by_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_season_divisions": { + "created_at": [ + 5243 + ], + "division": [ + 2466 + ], + "id": [ + 6672 + ], + "league_division_id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "season": [ + 2642 + ], + "standings": [ + 6744, + { + "distinct_on": [ + 6760, + "[v_league_division_standings_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6759, + "[v_league_division_standings_order_by!]" + ], + "where": [ + 6753 + ] + } + ], + "standings_aggregate": [ + 6745, + { + "distinct_on": [ + 6760, + "[v_league_division_standings_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6759, + "[v_league_division_standings_order_by!]" + ], + "where": [ + 6753 + ] + } + ], + "tournament": [ + 5896 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "league_season_divisions_aggregate": { + "aggregate": [ + 2621 + ], + "nodes": [ + 2617 + ], + "__typename": [ + 85 + ] + }, + "league_season_divisions_aggregate_bool_exp": { + "count": [ + 2620 + ], + "__typename": [ + 85 + ] + }, + "league_season_divisions_aggregate_bool_exp_count": { + "arguments": [ + 2636 + ], + "distinct": [ + 6 + ], + "filter": [ + 2624 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "league_season_divisions_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 2636, + "[league_season_divisions_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 2627 + ], + "min": [ + 2629 + ], + "__typename": [ + 85 + ] + }, + "league_season_divisions_aggregate_order_by": { + "count": [ + 3648 + ], + "max": [ + 2628 + ], + "min": [ + 2630 + ], + "__typename": [ + 85 + ] + }, + "league_season_divisions_arr_rel_insert_input": { + "data": [ + 2626 + ], + "on_conflict": [ + 2633 + ], + "__typename": [ + 85 + ] + }, + "league_season_divisions_bool_exp": { + "_and": [ + 2624 + ], + "_not": [ + 2624 + ], + "_or": [ + 2624 + ], + "created_at": [ + 5244 + ], + "division": [ + 2470 + ], + "id": [ + 6674 + ], + "league_division_id": [ + 6674 + ], + "league_season_id": [ + 6674 + ], + "season": [ + 2647 + ], + "standings": [ + 6753 + ], + "standings_aggregate": [ + 6746 + ], + "tournament": [ + 5917 + ], + "tournament_id": [ + 6674 + ], + "__typename": [ + 85 + ] + }, + "league_season_divisions_constraint": {}, + "league_season_divisions_insert_input": { + "created_at": [ + 5243 + ], + "division": [ + 2477 + ], + "id": [ + 6672 + ], + "league_division_id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "season": [ + 2657 + ], + "standings": [ + 6750 + ], + "tournament": [ + 5926 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "league_season_divisions_max_fields": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "league_division_id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "league_season_divisions_max_order_by": { + "created_at": [ + 3648 + ], + "id": [ + 3648 + ], + "league_division_id": [ + 3648 + ], + "league_season_id": [ + 3648 + ], + "tournament_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_season_divisions_min_fields": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "league_division_id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "league_season_divisions_min_order_by": { + "created_at": [ + 3648 + ], + "id": [ + 3648 + ], + "league_division_id": [ + 3648 + ], + "league_season_id": [ + 3648 + ], + "tournament_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_season_divisions_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 2617 + ], + "__typename": [ + 85 + ] + }, + "league_season_divisions_obj_rel_insert_input": { + "data": [ + 2626 + ], + "on_conflict": [ + 2633 + ], + "__typename": [ + 85 + ] + }, + "league_season_divisions_on_conflict": { + "constraint": [ + 2625 + ], + "update_columns": [ + 2640 + ], + "where": [ + 2624 + ], + "__typename": [ + 85 + ] + }, + "league_season_divisions_order_by": { + "created_at": [ + 3648 + ], + "division": [ + 2479 + ], + "id": [ + 3648 + ], + "league_division_id": [ + 3648 + ], + "league_season_id": [ + 3648 + ], + "season": [ + 2659 + ], + "standings_aggregate": [ + 6749 + ], + "tournament": [ + 5928 + ], + "tournament_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_season_divisions_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "league_season_divisions_select_column": {}, + "league_season_divisions_set_input": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "league_division_id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "league_season_divisions_stream_cursor_input": { + "initial_value": [ + 2639 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "league_season_divisions_stream_cursor_value_input": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "league_division_id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "league_season_divisions_update_column": {}, + "league_season_divisions_updates": { + "_set": [ + 2637 + ], + "where": [ + 2624 + ], + "__typename": [ + 85 + ] + }, + "league_seasons": { + "auto_regular_season_format": [ + 6 + ], + "awards": [ + 243, + { + "distinct_on": [ + 264, + "[award_recipients_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 262, + "[award_recipients_order_by!]" + ], + "where": [ + 252 + ] + } + ], + "awards_aggregate": [ + 244, + { + "distinct_on": [ + 264, + "[award_recipients_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 262, + "[award_recipients_order_by!]" + ], + "where": [ + 252 + ] + } + ], + "can_register": [ + 6 + ], + "created_at": [ + 5243 + ], + "created_by_steam_id": [ + 312 + ], + "default_best_of": [ + 41 + ], + "direct_promote_count": [ + 41 + ], + "direct_relegate_count": [ + 41 + ], + "e_league_season_status": [ + 1035 + ], + "games_per_week": [ + 41 + ], + "id": [ + 6672 + ], + "is_league_admin": [ + 6 + ], + "is_roster_locked": [ + 6 + ], + "match_options_id": [ + 6672 + ], + "match_weeks": [ + 2494, + { + "distinct_on": [ + 2515, + "[league_match_weeks_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2513, + "[league_match_weeks_order_by!]" + ], + "where": [ + 2503 + ] + } + ], + "match_weeks_aggregate": [ + 2495, + { + "distinct_on": [ + 2515, + "[league_match_weeks_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2513, + "[league_match_weeks_order_by!]" + ], + "where": [ + 2503 + ] + } + ], + "match_weeks_count": [ + 41 + ], + "max_roster_size": [ + 41 + ], + "min_roster_size": [ + 41 + ], + "movements": [ + 2675, + { + "distinct_on": [ + 2696, + "[league_team_movements_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2694, + "[league_team_movements_order_by!]" + ], + "where": [ + 2684 + ] + } + ], + "movements_aggregate": [ + 2676, + { + "distinct_on": [ + 2696, + "[league_team_movements_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2694, + "[league_team_movements_order_by!]" + ], + "where": [ + 2684 + ] + } + ], + "my_registration": [ + 2757, + { + "distinct_on": [ + 2779, + "[league_team_seasons_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2777, + "[league_team_seasons_order_by!]" + ], + "where": [ + 2766 + ] + } + ], + "name": [ + 85 + ], + "options": [ + 3290 + ], + "player_stats": [ + 6777, + { + "distinct_on": [ + 6803, + "[v_league_season_player_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6802, + "[v_league_season_player_stats_order_by!]" + ], + "where": [ + 6796 + ] + } + ], + "player_stats_aggregate": [ + 6778, + { + "distinct_on": [ + 6803, + "[v_league_season_player_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6802, + "[v_league_season_player_stats_order_by!]" + ], + "where": [ + 6796 + ] + } + ], + "playoff_best_of": [ + 41 + ], + "playoff_round_best_of": [ + 2439, + { + "path": [ + 85 + ] + } + ], + "playoff_seats": [ + 41 + ], + "playoff_stage_type": [ + 1616 + ], + "playoff_third_place_match": [ + 6 + ], + "promote_count": [ + 41 + ], + "regular_season_stage_type": [ + 1616 + ], + "relegate_count": [ + 41 + ], + "relegation_down_count": [ + 41 + ], + "relegation_playoffs": [ + 2535, + { + "distinct_on": [ + 2556, + "[league_relegation_playoffs_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2554, + "[league_relegation_playoffs_order_by!]" + ], + "where": [ + 2544 + ] + } + ], + "relegation_playoffs_aggregate": [ + 2536, + { + "distinct_on": [ + 2556, + "[league_relegation_playoffs_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2554, + "[league_relegation_playoffs_order_by!]" + ], + "where": [ + 2544 + ] + } + ], + "relegation_up_count": [ + 41 + ], + "roster_lock_at": [ + 5243 + ], + "season_divisions": [ + 2617, + { + "distinct_on": [ + 2636, + "[league_season_divisions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2634, + "[league_season_divisions_order_by!]" + ], + "where": [ + 2624 + ] + } + ], + "season_divisions_aggregate": [ + 2618, + { + "distinct_on": [ + 2636, + "[league_season_divisions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2634, + "[league_season_divisions_order_by!]" + ], + "where": [ + 2624 + ] + } + ], + "season_number": [ + 41 + ], + "signup_closes_at": [ + 5243 + ], + "signup_opens_at": [ + 5243 + ], + "standings": [ + 6744, + { + "distinct_on": [ + 6760, + "[v_league_division_standings_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6759, + "[v_league_division_standings_order_by!]" + ], + "where": [ + 6753 + ] + } + ], + "standings_aggregate": [ + 6745, + { + "distinct_on": [ + 6760, + "[v_league_division_standings_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6759, + "[v_league_division_standings_order_by!]" + ], + "where": [ + 6753 + ] + } + ], + "starts_at": [ + 5243 + ], + "status": [ + 1040 + ], + "team_seasons": [ + 2757, + { + "distinct_on": [ + 2779, + "[league_team_seasons_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2777, + "[league_team_seasons_order_by!]" + ], + "where": [ + 2766 + ] + } + ], + "team_seasons_aggregate": [ + 2758, + { + "distinct_on": [ + 2779, + "[league_team_seasons_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2777, + "[league_team_seasons_order_by!]" + ], + "where": [ + 2766 + ] + } + ], + "week_best_of": [ + 2439, + { + "path": [ + 85 + ] + } + ], + "__typename": [ + 85 + ] + }, + "league_seasons_aggregate": { + "aggregate": [ + 2644 + ], + "nodes": [ + 2642 + ], + "__typename": [ + 85 + ] + }, + "league_seasons_aggregate_fields": { + "avg": [ + 2646 + ], + "count": [ + 41, + { + "columns": [ + 2662, + "[league_seasons_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 2654 + ], + "min": [ + 2655 + ], + "stddev": [ + 2664 + ], + "stddev_pop": [ + 2665 + ], + "stddev_samp": [ + 2666 + ], + "sum": [ + 2669 + ], + "var_pop": [ + 2672 + ], + "var_samp": [ + 2673 + ], + "variance": [ + 2674 + ], + "__typename": [ + 85 + ] + }, + "league_seasons_append_input": { + "playoff_round_best_of": [ + 2439 + ], + "week_best_of": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "league_seasons_avg_fields": { + "created_by_steam_id": [ + 32 + ], + "default_best_of": [ + 32 + ], + "direct_promote_count": [ + 32 + ], + "direct_relegate_count": [ + 32 + ], + "games_per_week": [ + 32 + ], + "match_weeks_count": [ + 32 + ], + "max_roster_size": [ + 32 + ], + "min_roster_size": [ + 32 + ], + "playoff_best_of": [ + 32 + ], + "playoff_seats": [ + 32 + ], + "promote_count": [ + 32 + ], + "relegate_count": [ + 32 + ], + "relegation_down_count": [ + 32 + ], + "relegation_up_count": [ + 32 + ], + "season_number": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_seasons_bool_exp": { + "_and": [ + 2647 + ], + "_not": [ + 2647 + ], + "_or": [ + 2647 + ], + "auto_regular_season_format": [ + 7 + ], + "awards": [ + 252 + ], + "awards_aggregate": [ + 245 + ], + "can_register": [ + 7 + ], + "created_at": [ + 5244 + ], + "created_by_steam_id": [ + 314 + ], + "default_best_of": [ + 42 + ], + "direct_promote_count": [ + 42 + ], + "direct_relegate_count": [ + 42 + ], + "e_league_season_status": [ + 1038 + ], + "games_per_week": [ + 42 + ], + "id": [ + 6674 + ], + "is_league_admin": [ + 7 + ], + "is_roster_locked": [ + 7 + ], + "match_options_id": [ + 6674 + ], + "match_weeks": [ + 2503 + ], + "match_weeks_aggregate": [ + 2496 + ], + "match_weeks_count": [ + 42 + ], + "max_roster_size": [ + 42 + ], + "min_roster_size": [ + 42 + ], + "movements": [ + 2684 + ], + "movements_aggregate": [ + 2677 + ], + "my_registration": [ + 2766 + ], + "name": [ + 87 + ], + "options": [ + 3301 + ], + "player_stats": [ + 6796 + ], + "player_stats_aggregate": [ + 6779 + ], + "playoff_best_of": [ + 42 + ], + "playoff_round_best_of": [ + 2441 + ], + "playoff_seats": [ + 42 + ], + "playoff_stage_type": [ + 1617 + ], + "playoff_third_place_match": [ + 7 + ], + "promote_count": [ + 42 + ], + "regular_season_stage_type": [ + 1617 + ], + "relegate_count": [ + 42 + ], + "relegation_down_count": [ + 42 + ], + "relegation_playoffs": [ + 2544 + ], + "relegation_playoffs_aggregate": [ + 2537 + ], + "relegation_up_count": [ + 42 + ], + "roster_lock_at": [ + 5244 + ], + "season_divisions": [ + 2624 + ], + "season_divisions_aggregate": [ + 2619 + ], + "season_number": [ + 42 + ], + "signup_closes_at": [ + 5244 + ], + "signup_opens_at": [ + 5244 + ], + "standings": [ + 6753 + ], + "standings_aggregate": [ + 6746 + ], + "starts_at": [ + 5244 + ], + "status": [ + 1041 + ], + "team_seasons": [ + 2766 + ], + "team_seasons_aggregate": [ + 2759 + ], + "week_best_of": [ + 2441 + ], + "__typename": [ + 85 + ] + }, + "league_seasons_constraint": {}, + "league_seasons_delete_at_path_input": { + "playoff_round_best_of": [ + 85 + ], + "week_best_of": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "league_seasons_delete_elem_input": { + "playoff_round_best_of": [ + 41 + ], + "week_best_of": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "league_seasons_delete_key_input": { + "playoff_round_best_of": [ + 85 + ], + "week_best_of": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "league_seasons_inc_input": { + "created_by_steam_id": [ + 312 + ], + "default_best_of": [ + 41 + ], + "direct_promote_count": [ + 41 + ], + "direct_relegate_count": [ + 41 + ], + "games_per_week": [ + 41 + ], + "match_weeks_count": [ + 41 + ], + "max_roster_size": [ + 41 + ], + "min_roster_size": [ + 41 + ], + "playoff_best_of": [ + 41 + ], + "playoff_seats": [ + 41 + ], + "promote_count": [ + 41 + ], + "relegate_count": [ + 41 + ], + "relegation_down_count": [ + 41 + ], + "relegation_up_count": [ + 41 + ], + "season_number": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "league_seasons_insert_input": { + "auto_regular_season_format": [ + 6 + ], + "awards": [ + 249 + ], + "created_at": [ + 5243 + ], + "created_by_steam_id": [ + 312 + ], + "default_best_of": [ + 41 + ], + "direct_promote_count": [ + 41 + ], + "direct_relegate_count": [ + 41 + ], + "e_league_season_status": [ + 1046 + ], + "games_per_week": [ + 41 + ], + "id": [ + 6672 + ], + "match_options_id": [ + 6672 + ], + "match_weeks": [ + 2500 + ], + "match_weeks_count": [ + 41 + ], + "max_roster_size": [ + 41 + ], + "min_roster_size": [ + 41 + ], + "movements": [ + 2681 + ], + "name": [ + 85 + ], + "options": [ + 3310 + ], + "player_stats": [ + 6793 + ], + "playoff_best_of": [ + 41 + ], + "playoff_round_best_of": [ + 2439 + ], + "playoff_seats": [ + 41 + ], + "playoff_stage_type": [ + 1616 + ], + "playoff_third_place_match": [ + 6 + ], + "promote_count": [ + 41 + ], + "regular_season_stage_type": [ + 1616 + ], + "relegate_count": [ + 41 + ], + "relegation_down_count": [ + 41 + ], + "relegation_playoffs": [ + 2541 + ], + "relegation_up_count": [ + 41 + ], + "roster_lock_at": [ + 5243 + ], + "season_divisions": [ + 2623 + ], + "season_number": [ + 41 + ], + "signup_closes_at": [ + 5243 + ], + "signup_opens_at": [ + 5243 + ], + "standings": [ + 6750 + ], + "starts_at": [ + 5243 + ], + "status": [ + 1040 + ], + "team_seasons": [ + 2763 + ], + "week_best_of": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "league_seasons_max_fields": { + "created_at": [ + 5243 + ], + "created_by_steam_id": [ + 312 + ], + "default_best_of": [ + 41 + ], + "direct_promote_count": [ + 41 + ], + "direct_relegate_count": [ + 41 + ], + "games_per_week": [ + 41 + ], + "id": [ + 6672 + ], + "match_options_id": [ + 6672 + ], + "match_weeks_count": [ + 41 + ], + "max_roster_size": [ + 41 + ], + "min_roster_size": [ + 41 + ], + "name": [ + 85 + ], + "playoff_best_of": [ + 41 + ], + "playoff_seats": [ + 41 + ], + "promote_count": [ + 41 + ], + "relegate_count": [ + 41 + ], + "relegation_down_count": [ + 41 + ], + "relegation_up_count": [ + 41 + ], + "roster_lock_at": [ + 5243 + ], + "season_number": [ + 41 + ], + "signup_closes_at": [ + 5243 + ], + "signup_opens_at": [ + 5243 + ], + "starts_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "league_seasons_min_fields": { + "created_at": [ + 5243 + ], + "created_by_steam_id": [ + 312 + ], + "default_best_of": [ + 41 + ], + "direct_promote_count": [ + 41 + ], + "direct_relegate_count": [ + 41 + ], + "games_per_week": [ + 41 + ], + "id": [ + 6672 + ], + "match_options_id": [ + 6672 + ], + "match_weeks_count": [ + 41 + ], + "max_roster_size": [ + 41 + ], + "min_roster_size": [ + 41 + ], + "name": [ + 85 + ], + "playoff_best_of": [ + 41 + ], + "playoff_seats": [ + 41 + ], + "promote_count": [ + 41 + ], + "relegate_count": [ + 41 + ], + "relegation_down_count": [ + 41 + ], + "relegation_up_count": [ + 41 + ], + "roster_lock_at": [ + 5243 + ], + "season_number": [ + 41 + ], + "signup_closes_at": [ + 5243 + ], + "signup_opens_at": [ + 5243 + ], + "starts_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "league_seasons_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 2642 + ], + "__typename": [ + 85 + ] + }, + "league_seasons_obj_rel_insert_input": { + "data": [ + 2653 + ], + "on_conflict": [ + 2658 + ], + "__typename": [ + 85 + ] + }, + "league_seasons_on_conflict": { + "constraint": [ + 2648 + ], + "update_columns": [ + 2670 + ], + "where": [ + 2647 + ], + "__typename": [ + 85 + ] + }, + "league_seasons_order_by": { + "auto_regular_season_format": [ + 3648 + ], + "awards_aggregate": [ + 248 + ], + "can_register": [ + 3648 + ], + "created_at": [ + 3648 + ], + "created_by_steam_id": [ + 3648 + ], + "default_best_of": [ + 3648 + ], + "direct_promote_count": [ + 3648 + ], + "direct_relegate_count": [ + 3648 + ], + "e_league_season_status": [ + 1048 + ], + "games_per_week": [ + 3648 + ], + "id": [ + 3648 + ], + "is_league_admin": [ + 3648 + ], + "is_roster_locked": [ + 3648 + ], + "match_options_id": [ + 3648 + ], + "match_weeks_aggregate": [ + 2499 + ], + "match_weeks_count": [ + 3648 + ], + "max_roster_size": [ + 3648 + ], + "min_roster_size": [ + 3648 + ], + "movements_aggregate": [ + 2680 + ], + "my_registration_aggregate": [ + 2762 + ], + "name": [ + 3648 + ], + "options": [ + 3312 + ], + "player_stats_aggregate": [ + 6792 + ], + "playoff_best_of": [ + 3648 + ], + "playoff_round_best_of": [ + 3648 + ], + "playoff_seats": [ + 3648 + ], + "playoff_stage_type": [ + 3648 + ], + "playoff_third_place_match": [ + 3648 + ], + "promote_count": [ + 3648 + ], + "regular_season_stage_type": [ + 3648 + ], + "relegate_count": [ + 3648 + ], + "relegation_down_count": [ + 3648 + ], + "relegation_playoffs_aggregate": [ + 2540 + ], + "relegation_up_count": [ + 3648 + ], + "roster_lock_at": [ + 3648 + ], + "season_divisions_aggregate": [ + 2622 + ], + "season_number": [ + 3648 + ], + "signup_closes_at": [ + 3648 + ], + "signup_opens_at": [ + 3648 + ], + "standings_aggregate": [ + 6749 + ], + "starts_at": [ + 3648 + ], + "status": [ + 3648 + ], + "team_seasons_aggregate": [ + 2762 + ], + "week_best_of": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_seasons_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "league_seasons_prepend_input": { + "playoff_round_best_of": [ + 2439 + ], + "week_best_of": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "league_seasons_select_column": {}, + "league_seasons_set_input": { + "auto_regular_season_format": [ + 6 + ], + "created_at": [ + 5243 + ], + "created_by_steam_id": [ + 312 + ], + "default_best_of": [ + 41 + ], + "direct_promote_count": [ + 41 + ], + "direct_relegate_count": [ + 41 + ], + "games_per_week": [ + 41 + ], + "id": [ + 6672 + ], + "match_options_id": [ + 6672 + ], + "match_weeks_count": [ + 41 + ], + "max_roster_size": [ + 41 + ], + "min_roster_size": [ + 41 + ], + "name": [ + 85 + ], + "playoff_best_of": [ + 41 + ], + "playoff_round_best_of": [ + 2439 + ], + "playoff_seats": [ + 41 + ], + "playoff_stage_type": [ + 1616 + ], + "playoff_third_place_match": [ + 6 + ], + "promote_count": [ + 41 + ], + "regular_season_stage_type": [ + 1616 + ], + "relegate_count": [ + 41 + ], + "relegation_down_count": [ + 41 + ], + "relegation_up_count": [ + 41 + ], + "roster_lock_at": [ + 5243 + ], + "season_number": [ + 41 + ], + "signup_closes_at": [ + 5243 + ], + "signup_opens_at": [ + 5243 + ], + "starts_at": [ + 5243 + ], + "status": [ + 1040 + ], + "week_best_of": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "league_seasons_stddev_fields": { + "created_by_steam_id": [ + 32 + ], + "default_best_of": [ + 32 + ], + "direct_promote_count": [ + 32 + ], + "direct_relegate_count": [ + 32 + ], + "games_per_week": [ + 32 + ], + "match_weeks_count": [ + 32 + ], + "max_roster_size": [ + 32 + ], + "min_roster_size": [ + 32 + ], + "playoff_best_of": [ + 32 + ], + "playoff_seats": [ + 32 + ], + "promote_count": [ + 32 + ], + "relegate_count": [ + 32 + ], + "relegation_down_count": [ + 32 + ], + "relegation_up_count": [ + 32 + ], + "season_number": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_seasons_stddev_pop_fields": { + "created_by_steam_id": [ + 32 + ], + "default_best_of": [ + 32 + ], + "direct_promote_count": [ + 32 + ], + "direct_relegate_count": [ + 32 + ], + "games_per_week": [ + 32 + ], + "match_weeks_count": [ + 32 + ], + "max_roster_size": [ + 32 + ], + "min_roster_size": [ + 32 + ], + "playoff_best_of": [ + 32 + ], + "playoff_seats": [ + 32 + ], + "promote_count": [ + 32 + ], + "relegate_count": [ + 32 + ], + "relegation_down_count": [ + 32 + ], + "relegation_up_count": [ + 32 + ], + "season_number": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_seasons_stddev_samp_fields": { + "created_by_steam_id": [ + 32 + ], + "default_best_of": [ + 32 + ], + "direct_promote_count": [ + 32 + ], + "direct_relegate_count": [ + 32 + ], + "games_per_week": [ + 32 + ], + "match_weeks_count": [ + 32 + ], + "max_roster_size": [ + 32 + ], + "min_roster_size": [ + 32 + ], + "playoff_best_of": [ + 32 + ], + "playoff_seats": [ + 32 + ], + "promote_count": [ + 32 + ], + "relegate_count": [ + 32 + ], + "relegation_down_count": [ + 32 + ], + "relegation_up_count": [ + 32 + ], + "season_number": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_seasons_stream_cursor_input": { + "initial_value": [ + 2668 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "league_seasons_stream_cursor_value_input": { + "auto_regular_season_format": [ + 6 + ], + "created_at": [ + 5243 + ], + "created_by_steam_id": [ + 312 + ], + "default_best_of": [ + 41 + ], + "direct_promote_count": [ + 41 + ], + "direct_relegate_count": [ + 41 + ], + "games_per_week": [ + 41 + ], + "id": [ + 6672 + ], + "match_options_id": [ + 6672 + ], + "match_weeks_count": [ + 41 + ], + "max_roster_size": [ + 41 + ], + "min_roster_size": [ + 41 + ], + "name": [ + 85 + ], + "playoff_best_of": [ + 41 + ], + "playoff_round_best_of": [ + 2439 + ], + "playoff_seats": [ + 41 + ], + "playoff_stage_type": [ + 1616 + ], + "playoff_third_place_match": [ + 6 + ], + "promote_count": [ + 41 + ], + "regular_season_stage_type": [ + 1616 + ], + "relegate_count": [ + 41 + ], + "relegation_down_count": [ + 41 + ], + "relegation_up_count": [ + 41 + ], + "roster_lock_at": [ + 5243 + ], + "season_number": [ + 41 + ], + "signup_closes_at": [ + 5243 + ], + "signup_opens_at": [ + 5243 + ], + "starts_at": [ + 5243 + ], + "status": [ + 1040 + ], + "week_best_of": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "league_seasons_sum_fields": { + "created_by_steam_id": [ + 312 + ], + "default_best_of": [ + 41 + ], + "direct_promote_count": [ + 41 + ], + "direct_relegate_count": [ + 41 + ], + "games_per_week": [ + 41 + ], + "match_weeks_count": [ + 41 + ], + "max_roster_size": [ + 41 + ], + "min_roster_size": [ + 41 + ], + "playoff_best_of": [ + 41 + ], + "playoff_seats": [ + 41 + ], + "promote_count": [ + 41 + ], + "relegate_count": [ + 41 + ], + "relegation_down_count": [ + 41 + ], + "relegation_up_count": [ + 41 + ], + "season_number": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "league_seasons_update_column": {}, + "league_seasons_updates": { + "_append": [ + 2645 + ], + "_delete_at_path": [ + 2649 + ], + "_delete_elem": [ + 2650 + ], + "_delete_key": [ + 2651 + ], + "_inc": [ + 2652 + ], + "_prepend": [ + 2661 + ], + "_set": [ + 2663 + ], + "where": [ + 2647 + ], + "__typename": [ + 85 + ] + }, + "league_seasons_var_pop_fields": { + "created_by_steam_id": [ + 32 + ], + "default_best_of": [ + 32 + ], + "direct_promote_count": [ + 32 + ], + "direct_relegate_count": [ + 32 + ], + "games_per_week": [ + 32 + ], + "match_weeks_count": [ + 32 + ], + "max_roster_size": [ + 32 + ], + "min_roster_size": [ + 32 + ], + "playoff_best_of": [ + 32 + ], + "playoff_seats": [ + 32 + ], + "promote_count": [ + 32 + ], + "relegate_count": [ + 32 + ], + "relegation_down_count": [ + 32 + ], + "relegation_up_count": [ + 32 + ], + "season_number": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_seasons_var_samp_fields": { + "created_by_steam_id": [ + 32 + ], + "default_best_of": [ + 32 + ], + "direct_promote_count": [ + 32 + ], + "direct_relegate_count": [ + 32 + ], + "games_per_week": [ + 32 + ], + "match_weeks_count": [ + 32 + ], + "max_roster_size": [ + 32 + ], + "min_roster_size": [ + 32 + ], + "playoff_best_of": [ + 32 + ], + "playoff_seats": [ + 32 + ], + "promote_count": [ + 32 + ], + "relegate_count": [ + 32 + ], + "relegation_down_count": [ + 32 + ], + "relegation_up_count": [ + 32 + ], + "season_number": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_seasons_variance_fields": { + "created_by_steam_id": [ + 32 + ], + "default_best_of": [ + 32 + ], + "direct_promote_count": [ + 32 + ], + "direct_relegate_count": [ + 32 + ], + "games_per_week": [ + 32 + ], + "match_weeks_count": [ + 32 + ], + "max_roster_size": [ + 32 + ], + "min_roster_size": [ + 32 + ], + "playoff_best_of": [ + 32 + ], + "playoff_seats": [ + 32 + ], + "promote_count": [ + 32 + ], + "relegate_count": [ + 32 + ], + "relegation_down_count": [ + 32 + ], + "relegation_up_count": [ + 32 + ], + "season_number": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_team_movements": { + "approved_at": [ + 5243 + ], + "approved_by": [ + 4606 + ], + "approved_by_steam_id": [ + 312 + ], + "computed_to_division": [ + 2466 + ], + "computed_to_division_id": [ + 6672 + ], + "created_at": [ + 5243 + ], + "e_movement_type": [ + 972 + ], + "final_rank": [ + 41 + ], + "final_to_division": [ + 2466 + ], + "final_to_division_id": [ + 6672 + ], + "from_division": [ + 2466 + ], + "from_division_id": [ + 6672 + ], + "id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "league_team": [ + 2799 + ], + "league_team_id": [ + 6672 + ], + "season": [ + 2642 + ], + "type": [ + 977 + ], + "__typename": [ + 85 + ] + }, + "league_team_movements_aggregate": { + "aggregate": [ + 2679 + ], + "nodes": [ + 2675 + ], + "__typename": [ + 85 + ] + }, + "league_team_movements_aggregate_bool_exp": { + "count": [ + 2678 + ], + "__typename": [ + 85 + ] + }, + "league_team_movements_aggregate_bool_exp_count": { + "arguments": [ + 2696 + ], + "distinct": [ + 6 + ], + "filter": [ + 2684 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "league_team_movements_aggregate_fields": { + "avg": [ + 2682 + ], + "count": [ + 41, + { + "columns": [ + 2696, + "[league_team_movements_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 2688 + ], + "min": [ + 2690 + ], + "stddev": [ + 2698 + ], + "stddev_pop": [ + 2700 + ], + "stddev_samp": [ + 2702 + ], + "sum": [ + 2706 + ], + "var_pop": [ + 2710 + ], + "var_samp": [ + 2712 + ], + "variance": [ + 2714 + ], + "__typename": [ + 85 + ] + }, + "league_team_movements_aggregate_order_by": { + "avg": [ + 2683 + ], + "count": [ + 3648 + ], + "max": [ + 2689 + ], + "min": [ + 2691 + ], + "stddev": [ + 2699 + ], + "stddev_pop": [ + 2701 + ], + "stddev_samp": [ + 2703 + ], + "sum": [ + 2707 + ], + "var_pop": [ + 2711 + ], + "var_samp": [ + 2713 + ], + "variance": [ + 2715 + ], + "__typename": [ + 85 + ] + }, + "league_team_movements_arr_rel_insert_input": { + "data": [ + 2687 + ], + "on_conflict": [ + 2693 + ], + "__typename": [ + 85 + ] + }, + "league_team_movements_avg_fields": { + "approved_by_steam_id": [ + 32 + ], + "final_rank": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_team_movements_avg_order_by": { + "approved_by_steam_id": [ + 3648 + ], + "final_rank": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_team_movements_bool_exp": { + "_and": [ + 2684 + ], + "_not": [ + 2684 + ], + "_or": [ + 2684 + ], + "approved_at": [ + 5244 + ], + "approved_by": [ + 4610 + ], + "approved_by_steam_id": [ + 314 + ], + "computed_to_division": [ + 2470 + ], + "computed_to_division_id": [ + 6674 + ], + "created_at": [ + 5244 + ], + "e_movement_type": [ + 975 + ], + "final_rank": [ + 42 + ], + "final_to_division": [ + 2470 + ], + "final_to_division_id": [ + 6674 + ], + "from_division": [ + 2470 + ], + "from_division_id": [ + 6674 + ], + "id": [ + 6674 + ], + "league_season_id": [ + 6674 + ], + "league_team": [ + 2802 + ], + "league_team_id": [ + 6674 + ], + "season": [ + 2647 + ], + "type": [ + 978 + ], + "__typename": [ + 85 + ] + }, + "league_team_movements_constraint": {}, + "league_team_movements_inc_input": { + "approved_by_steam_id": [ + 312 + ], + "final_rank": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "league_team_movements_insert_input": { + "approved_at": [ + 5243 + ], + "approved_by": [ + 4617 + ], + "approved_by_steam_id": [ + 312 + ], + "computed_to_division": [ + 2477 + ], + "computed_to_division_id": [ + 6672 + ], + "created_at": [ + 5243 + ], + "e_movement_type": [ + 983 + ], + "final_rank": [ + 41 + ], + "final_to_division": [ + 2477 + ], + "final_to_division_id": [ + 6672 + ], + "from_division": [ + 2477 + ], + "from_division_id": [ + 6672 + ], + "id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "league_team": [ + 2808 + ], + "league_team_id": [ + 6672 + ], + "season": [ + 2657 + ], + "type": [ + 977 + ], + "__typename": [ + 85 + ] + }, + "league_team_movements_max_fields": { + "approved_at": [ + 5243 + ], + "approved_by_steam_id": [ + 312 + ], + "computed_to_division_id": [ + 6672 + ], + "created_at": [ + 5243 + ], + "final_rank": [ + 41 + ], + "final_to_division_id": [ + 6672 + ], + "from_division_id": [ + 6672 + ], + "id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "league_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "league_team_movements_max_order_by": { + "approved_at": [ + 3648 + ], + "approved_by_steam_id": [ + 3648 + ], + "computed_to_division_id": [ + 3648 + ], + "created_at": [ + 3648 + ], + "final_rank": [ + 3648 + ], + "final_to_division_id": [ + 3648 + ], + "from_division_id": [ + 3648 + ], + "id": [ + 3648 + ], + "league_season_id": [ + 3648 + ], + "league_team_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_team_movements_min_fields": { + "approved_at": [ + 5243 + ], + "approved_by_steam_id": [ + 312 + ], + "computed_to_division_id": [ + 6672 + ], + "created_at": [ + 5243 + ], + "final_rank": [ + 41 + ], + "final_to_division_id": [ + 6672 + ], + "from_division_id": [ + 6672 + ], + "id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "league_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "league_team_movements_min_order_by": { + "approved_at": [ + 3648 + ], + "approved_by_steam_id": [ + 3648 + ], + "computed_to_division_id": [ + 3648 + ], + "created_at": [ + 3648 + ], + "final_rank": [ + 3648 + ], + "final_to_division_id": [ + 3648 + ], + "from_division_id": [ + 3648 + ], + "id": [ + 3648 + ], + "league_season_id": [ + 3648 + ], + "league_team_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_team_movements_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 2675 + ], + "__typename": [ + 85 + ] + }, + "league_team_movements_on_conflict": { + "constraint": [ + 2685 + ], + "update_columns": [ + 2708 + ], + "where": [ + 2684 + ], + "__typename": [ + 85 + ] + }, + "league_team_movements_order_by": { + "approved_at": [ + 3648 + ], + "approved_by": [ + 4619 + ], + "approved_by_steam_id": [ + 3648 + ], + "computed_to_division": [ + 2479 + ], + "computed_to_division_id": [ + 3648 + ], + "created_at": [ + 3648 + ], + "e_movement_type": [ + 985 + ], + "final_rank": [ + 3648 + ], + "final_to_division": [ + 2479 + ], + "final_to_division_id": [ + 3648 + ], + "from_division": [ + 2479 + ], + "from_division_id": [ + 3648 + ], + "id": [ + 3648 + ], + "league_season_id": [ + 3648 + ], + "league_team": [ + 2810 + ], + "league_team_id": [ + 3648 + ], + "season": [ + 2659 + ], + "type": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_team_movements_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "league_team_movements_select_column": {}, + "league_team_movements_set_input": { + "approved_at": [ + 5243 + ], + "approved_by_steam_id": [ + 312 + ], + "computed_to_division_id": [ + 6672 + ], + "created_at": [ + 5243 + ], + "final_rank": [ + 41 + ], + "final_to_division_id": [ + 6672 + ], + "from_division_id": [ + 6672 + ], + "id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "league_team_id": [ + 6672 + ], + "type": [ + 977 + ], + "__typename": [ + 85 + ] + }, + "league_team_movements_stddev_fields": { + "approved_by_steam_id": [ + 32 + ], + "final_rank": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_team_movements_stddev_order_by": { + "approved_by_steam_id": [ + 3648 + ], + "final_rank": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_team_movements_stddev_pop_fields": { + "approved_by_steam_id": [ + 32 + ], + "final_rank": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_team_movements_stddev_pop_order_by": { + "approved_by_steam_id": [ + 3648 + ], + "final_rank": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_team_movements_stddev_samp_fields": { + "approved_by_steam_id": [ + 32 + ], + "final_rank": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_team_movements_stddev_samp_order_by": { + "approved_by_steam_id": [ + 3648 + ], + "final_rank": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_team_movements_stream_cursor_input": { + "initial_value": [ + 2705 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "league_team_movements_stream_cursor_value_input": { + "approved_at": [ + 5243 + ], + "approved_by_steam_id": [ + 312 + ], + "computed_to_division_id": [ + 6672 + ], + "created_at": [ + 5243 + ], + "final_rank": [ + 41 + ], + "final_to_division_id": [ + 6672 + ], + "from_division_id": [ + 6672 + ], + "id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "league_team_id": [ + 6672 + ], + "type": [ + 977 + ], + "__typename": [ + 85 + ] + }, + "league_team_movements_sum_fields": { + "approved_by_steam_id": [ + 312 + ], + "final_rank": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "league_team_movements_sum_order_by": { + "approved_by_steam_id": [ + 3648 + ], + "final_rank": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_team_movements_update_column": {}, + "league_team_movements_updates": { + "_inc": [ + 2686 + ], + "_set": [ + 2697 + ], + "where": [ + 2684 + ], + "__typename": [ + 85 + ] + }, + "league_team_movements_var_pop_fields": { + "approved_by_steam_id": [ + 32 + ], + "final_rank": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_team_movements_var_pop_order_by": { + "approved_by_steam_id": [ + 3648 + ], + "final_rank": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_team_movements_var_samp_fields": { + "approved_by_steam_id": [ + 32 + ], + "final_rank": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_team_movements_var_samp_order_by": { + "approved_by_steam_id": [ + 3648 + ], + "final_rank": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_team_movements_variance_fields": { + "approved_by_steam_id": [ + 32 + ], + "final_rank": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_team_movements_variance_order_by": { + "approved_by_steam_id": [ + 3648 + ], + "final_rank": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_team_rosters": { + "added_at": [ + 5243 + ], + "league_team_season_id": [ + 6672 + ], + "player": [ + 4606 + ], + "player_steam_id": [ + 312 + ], + "removed_at": [ + 5243 + ], + "removed_reason": [ + 85 + ], + "status": [ + 1514 + ], + "team_season": [ + 2757 + ], + "__typename": [ + 85 + ] + }, + "league_team_rosters_aggregate": { + "aggregate": [ + 2720 + ], + "nodes": [ + 2716 + ], + "__typename": [ + 85 + ] + }, + "league_team_rosters_aggregate_bool_exp": { + "count": [ + 2719 + ], + "__typename": [ + 85 + ] + }, + "league_team_rosters_aggregate_bool_exp_count": { + "arguments": [ + 2737 + ], + "distinct": [ + 6 + ], + "filter": [ + 2725 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "league_team_rosters_aggregate_fields": { + "avg": [ + 2723 + ], + "count": [ + 41, + { + "columns": [ + 2737, + "[league_team_rosters_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 2729 + ], + "min": [ + 2731 + ], + "stddev": [ + 2739 + ], + "stddev_pop": [ + 2741 + ], + "stddev_samp": [ + 2743 + ], + "sum": [ + 2747 + ], + "var_pop": [ + 2751 + ], + "var_samp": [ + 2753 + ], + "variance": [ + 2755 + ], + "__typename": [ + 85 + ] + }, + "league_team_rosters_aggregate_order_by": { + "avg": [ + 2724 + ], + "count": [ + 3648 + ], + "max": [ + 2730 + ], + "min": [ + 2732 + ], + "stddev": [ + 2740 + ], + "stddev_pop": [ + 2742 + ], + "stddev_samp": [ + 2744 + ], + "sum": [ + 2748 + ], + "var_pop": [ + 2752 + ], + "var_samp": [ + 2754 + ], + "variance": [ + 2756 + ], + "__typename": [ + 85 + ] + }, + "league_team_rosters_arr_rel_insert_input": { + "data": [ + 2728 + ], + "on_conflict": [ + 2734 + ], + "__typename": [ + 85 + ] + }, + "league_team_rosters_avg_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_team_rosters_avg_order_by": { + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_team_rosters_bool_exp": { + "_and": [ + 2725 + ], + "_not": [ + 2725 + ], + "_or": [ + 2725 + ], + "added_at": [ + 5244 + ], + "league_team_season_id": [ + 6674 + ], + "player": [ + 4610 + ], + "player_steam_id": [ + 314 + ], + "removed_at": [ + 5244 + ], + "removed_reason": [ + 87 + ], + "status": [ + 1515 + ], + "team_season": [ + 2766 + ], + "__typename": [ + 85 + ] + }, + "league_team_rosters_constraint": {}, + "league_team_rosters_inc_input": { + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "league_team_rosters_insert_input": { + "added_at": [ + 5243 + ], + "league_team_season_id": [ + 6672 + ], + "player": [ + 4617 + ], + "player_steam_id": [ + 312 + ], + "removed_at": [ + 5243 + ], + "removed_reason": [ + 85 + ], + "status": [ + 1514 + ], + "team_season": [ + 2775 + ], + "__typename": [ + 85 + ] + }, + "league_team_rosters_max_fields": { + "added_at": [ + 5243 + ], + "league_team_season_id": [ + 6672 + ], + "player_steam_id": [ + 312 + ], + "removed_at": [ + 5243 + ], + "removed_reason": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "league_team_rosters_max_order_by": { + "added_at": [ + 3648 + ], + "league_team_season_id": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "removed_at": [ + 3648 + ], + "removed_reason": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_team_rosters_min_fields": { + "added_at": [ + 5243 + ], + "league_team_season_id": [ + 6672 + ], + "player_steam_id": [ + 312 + ], + "removed_at": [ + 5243 + ], + "removed_reason": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "league_team_rosters_min_order_by": { + "added_at": [ + 3648 + ], + "league_team_season_id": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "removed_at": [ + 3648 + ], + "removed_reason": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_team_rosters_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 2716 + ], + "__typename": [ + 85 + ] + }, + "league_team_rosters_on_conflict": { + "constraint": [ + 2726 + ], + "update_columns": [ + 2749 + ], + "where": [ + 2725 + ], + "__typename": [ + 85 + ] + }, + "league_team_rosters_order_by": { + "added_at": [ + 3648 + ], + "league_team_season_id": [ + 3648 + ], + "player": [ + 4619 + ], + "player_steam_id": [ + 3648 + ], + "removed_at": [ + 3648 + ], + "removed_reason": [ + 3648 + ], + "status": [ + 3648 + ], + "team_season": [ + 2777 + ], + "__typename": [ + 85 + ] + }, + "league_team_rosters_pk_columns_input": { + "league_team_season_id": [ + 6672 + ], + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "league_team_rosters_select_column": {}, + "league_team_rosters_set_input": { + "added_at": [ + 5243 + ], + "league_team_season_id": [ + 6672 + ], + "player_steam_id": [ + 312 + ], + "removed_at": [ + 5243 + ], + "removed_reason": [ + 85 + ], + "status": [ + 1514 + ], + "__typename": [ + 85 + ] + }, + "league_team_rosters_stddev_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_team_rosters_stddev_order_by": { + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_team_rosters_stddev_pop_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_team_rosters_stddev_pop_order_by": { + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_team_rosters_stddev_samp_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_team_rosters_stddev_samp_order_by": { + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_team_rosters_stream_cursor_input": { + "initial_value": [ + 2746 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "league_team_rosters_stream_cursor_value_input": { + "added_at": [ + 5243 + ], + "league_team_season_id": [ + 6672 + ], + "player_steam_id": [ + 312 + ], + "removed_at": [ + 5243 + ], + "removed_reason": [ + 85 + ], + "status": [ + 1514 + ], + "__typename": [ + 85 + ] + }, + "league_team_rosters_sum_fields": { + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "league_team_rosters_sum_order_by": { + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_team_rosters_update_column": {}, + "league_team_rosters_updates": { + "_inc": [ + 2727 + ], + "_set": [ + 2738 + ], + "where": [ + 2725 + ], + "__typename": [ + 85 + ] + }, + "league_team_rosters_var_pop_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_team_rosters_var_pop_order_by": { + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_team_rosters_var_samp_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_team_rosters_var_samp_order_by": { + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_team_rosters_variance_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_team_rosters_variance_order_by": { + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_team_seasons": { + "assigned_division": [ + 2466 + ], + "assigned_division_id": [ + 6672 + ], + "captain": [ + 4606 + ], + "captain_steam_id": [ + 312 + ], + "created_at": [ + 5243 + ], + "decline_reason": [ + 85 + ], + "e_registration_status": [ + 1014 + ], + "id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "league_team": [ + 2799 + ], + "league_team_id": [ + 6672 + ], + "registered_by": [ + 4606 + ], + "registered_by_steam_id": [ + 312 + ], + "requested_division": [ + 2466 + ], + "requested_division_id": [ + 6672 + ], + "roster": [ + 2716, + { + "distinct_on": [ + 2737, + "[league_team_rosters_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2735, + "[league_team_rosters_order_by!]" + ], + "where": [ + 2725 + ] + } + ], + "roster_aggregate": [ + 2717, + { + "distinct_on": [ + 2737, + "[league_team_rosters_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2735, + "[league_team_rosters_order_by!]" + ], + "where": [ + 2725 + ] + } + ], + "season": [ + 2642 + ], + "seed": [ + 41 + ], + "status": [ + 1019 + ], + "tournament_team": [ + 5850 + ], + "tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "league_team_seasons_aggregate": { + "aggregate": [ + 2761 + ], + "nodes": [ + 2757 + ], + "__typename": [ + 85 + ] + }, + "league_team_seasons_aggregate_bool_exp": { + "count": [ + 2760 + ], + "__typename": [ + 85 + ] + }, + "league_team_seasons_aggregate_bool_exp_count": { + "arguments": [ + 2779 + ], + "distinct": [ + 6 + ], + "filter": [ + 2766 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "league_team_seasons_aggregate_fields": { + "avg": [ + 2764 + ], + "count": [ + 41, + { + "columns": [ + 2779, + "[league_team_seasons_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 2770 + ], + "min": [ + 2772 + ], + "stddev": [ + 2781 + ], + "stddev_pop": [ + 2783 + ], + "stddev_samp": [ + 2785 + ], + "sum": [ + 2789 + ], + "var_pop": [ + 2793 + ], + "var_samp": [ + 2795 + ], + "variance": [ + 2797 + ], + "__typename": [ + 85 + ] + }, + "league_team_seasons_aggregate_order_by": { + "avg": [ + 2765 + ], + "count": [ + 3648 + ], + "max": [ + 2771 + ], + "min": [ + 2773 + ], + "stddev": [ + 2782 + ], + "stddev_pop": [ + 2784 + ], + "stddev_samp": [ + 2786 + ], + "sum": [ + 2790 + ], + "var_pop": [ + 2794 + ], + "var_samp": [ + 2796 + ], + "variance": [ + 2798 + ], + "__typename": [ + 85 + ] + }, + "league_team_seasons_arr_rel_insert_input": { + "data": [ + 2769 + ], + "on_conflict": [ + 2776 + ], + "__typename": [ + 85 + ] + }, + "league_team_seasons_avg_fields": { + "captain_steam_id": [ + 32 + ], + "registered_by_steam_id": [ + 32 + ], + "seed": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_team_seasons_avg_order_by": { + "captain_steam_id": [ + 3648 + ], + "registered_by_steam_id": [ + 3648 + ], + "seed": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_team_seasons_bool_exp": { + "_and": [ + 2766 + ], + "_not": [ + 2766 + ], + "_or": [ + 2766 + ], + "assigned_division": [ + 2470 + ], + "assigned_division_id": [ + 6674 + ], + "captain": [ + 4610 + ], + "captain_steam_id": [ + 314 + ], + "created_at": [ + 5244 + ], + "decline_reason": [ + 87 + ], + "e_registration_status": [ + 1017 + ], + "id": [ + 6674 + ], + "league_season_id": [ + 6674 + ], + "league_team": [ + 2802 + ], + "league_team_id": [ + 6674 + ], + "registered_by": [ + 4610 + ], + "registered_by_steam_id": [ + 314 + ], + "requested_division": [ + 2470 + ], + "requested_division_id": [ + 6674 + ], + "roster": [ + 2725 + ], + "roster_aggregate": [ + 2718 + ], + "season": [ + 2647 + ], + "seed": [ + 42 + ], + "status": [ + 1020 + ], + "tournament_team": [ + 5861 + ], + "tournament_team_id": [ + 6674 + ], + "__typename": [ + 85 + ] + }, + "league_team_seasons_constraint": {}, + "league_team_seasons_inc_input": { + "captain_steam_id": [ + 312 + ], + "registered_by_steam_id": [ + 312 + ], + "seed": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "league_team_seasons_insert_input": { + "assigned_division": [ + 2477 + ], + "assigned_division_id": [ + 6672 + ], + "captain": [ + 4617 + ], + "captain_steam_id": [ + 312 + ], + "created_at": [ + 5243 + ], + "decline_reason": [ + 85 + ], + "e_registration_status": [ + 1025 + ], + "id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "league_team": [ + 2808 + ], + "league_team_id": [ + 6672 + ], + "registered_by": [ + 4617 + ], + "registered_by_steam_id": [ + 312 + ], + "requested_division": [ + 2477 + ], + "requested_division_id": [ + 6672 + ], + "roster": [ + 2722 + ], + "season": [ + 2657 + ], + "seed": [ + 41 + ], + "status": [ + 1019 + ], + "tournament_team": [ + 5870 + ], + "tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "league_team_seasons_max_fields": { + "assigned_division_id": [ + 6672 + ], + "captain_steam_id": [ + 312 + ], + "created_at": [ + 5243 + ], + "decline_reason": [ + 85 + ], + "id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "league_team_id": [ + 6672 + ], + "registered_by_steam_id": [ + 312 + ], + "requested_division_id": [ + 6672 + ], + "seed": [ + 41 + ], + "tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "league_team_seasons_max_order_by": { + "assigned_division_id": [ + 3648 + ], + "captain_steam_id": [ + 3648 + ], + "created_at": [ + 3648 + ], + "decline_reason": [ + 3648 + ], + "id": [ + 3648 + ], + "league_season_id": [ + 3648 + ], + "league_team_id": [ + 3648 + ], + "registered_by_steam_id": [ + 3648 + ], + "requested_division_id": [ + 3648 + ], + "seed": [ + 3648 + ], + "tournament_team_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_team_seasons_min_fields": { + "assigned_division_id": [ + 6672 + ], + "captain_steam_id": [ + 312 + ], + "created_at": [ + 5243 + ], + "decline_reason": [ + 85 + ], + "id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "league_team_id": [ + 6672 + ], + "registered_by_steam_id": [ + 312 + ], + "requested_division_id": [ + 6672 + ], + "seed": [ + 41 + ], + "tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "league_team_seasons_min_order_by": { + "assigned_division_id": [ + 3648 + ], + "captain_steam_id": [ + 3648 + ], + "created_at": [ + 3648 + ], + "decline_reason": [ + 3648 + ], + "id": [ + 3648 + ], + "league_season_id": [ + 3648 + ], + "league_team_id": [ + 3648 + ], + "registered_by_steam_id": [ + 3648 + ], + "requested_division_id": [ + 3648 + ], + "seed": [ + 3648 + ], + "tournament_team_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_team_seasons_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 2757 + ], + "__typename": [ + 85 + ] + }, + "league_team_seasons_obj_rel_insert_input": { + "data": [ + 2769 + ], + "on_conflict": [ + 2776 + ], + "__typename": [ + 85 + ] + }, + "league_team_seasons_on_conflict": { + "constraint": [ + 2767 + ], + "update_columns": [ + 2791 + ], + "where": [ + 2766 + ], + "__typename": [ + 85 + ] + }, + "league_team_seasons_order_by": { + "assigned_division": [ + 2479 + ], + "assigned_division_id": [ + 3648 + ], + "captain": [ + 4619 + ], + "captain_steam_id": [ + 3648 + ], + "created_at": [ + 3648 + ], + "decline_reason": [ + 3648 + ], + "e_registration_status": [ + 1027 + ], + "id": [ + 3648 + ], + "league_season_id": [ + 3648 + ], + "league_team": [ + 2810 + ], + "league_team_id": [ + 3648 + ], + "registered_by": [ + 4619 + ], + "registered_by_steam_id": [ + 3648 + ], + "requested_division": [ + 2479 + ], + "requested_division_id": [ + 3648 + ], + "roster_aggregate": [ + 2721 + ], + "season": [ + 2659 + ], + "seed": [ + 3648 + ], + "status": [ + 3648 + ], + "tournament_team": [ + 5872 + ], + "tournament_team_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_team_seasons_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "league_team_seasons_select_column": {}, + "league_team_seasons_set_input": { + "assigned_division_id": [ + 6672 + ], + "captain_steam_id": [ + 312 + ], + "created_at": [ + 5243 + ], + "decline_reason": [ + 85 + ], + "id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "league_team_id": [ + 6672 + ], + "registered_by_steam_id": [ + 312 + ], + "requested_division_id": [ + 6672 + ], + "seed": [ + 41 + ], + "status": [ + 1019 + ], + "tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "league_team_seasons_stddev_fields": { + "captain_steam_id": [ + 32 + ], + "registered_by_steam_id": [ + 32 + ], + "seed": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_team_seasons_stddev_order_by": { + "captain_steam_id": [ + 3648 + ], + "registered_by_steam_id": [ + 3648 + ], + "seed": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_team_seasons_stddev_pop_fields": { + "captain_steam_id": [ + 32 + ], + "registered_by_steam_id": [ + 32 + ], + "seed": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_team_seasons_stddev_pop_order_by": { + "captain_steam_id": [ + 3648 + ], + "registered_by_steam_id": [ + 3648 + ], + "seed": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_team_seasons_stddev_samp_fields": { + "captain_steam_id": [ + 32 + ], + "registered_by_steam_id": [ + 32 + ], + "seed": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_team_seasons_stddev_samp_order_by": { + "captain_steam_id": [ + 3648 + ], + "registered_by_steam_id": [ + 3648 + ], + "seed": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_team_seasons_stream_cursor_input": { + "initial_value": [ + 2788 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "league_team_seasons_stream_cursor_value_input": { + "assigned_division_id": [ + 6672 + ], + "captain_steam_id": [ + 312 + ], + "created_at": [ + 5243 + ], + "decline_reason": [ + 85 + ], + "id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "league_team_id": [ + 6672 + ], + "registered_by_steam_id": [ + 312 + ], + "requested_division_id": [ + 6672 + ], + "seed": [ + 41 + ], + "status": [ + 1019 + ], + "tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "league_team_seasons_sum_fields": { + "captain_steam_id": [ + 312 + ], + "registered_by_steam_id": [ + 312 + ], + "seed": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "league_team_seasons_sum_order_by": { + "captain_steam_id": [ + 3648 + ], + "registered_by_steam_id": [ + 3648 + ], + "seed": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_team_seasons_update_column": {}, + "league_team_seasons_updates": { + "_inc": [ + 2768 + ], + "_set": [ + 2780 + ], + "where": [ + 2766 + ], + "__typename": [ + 85 + ] + }, + "league_team_seasons_var_pop_fields": { + "captain_steam_id": [ + 32 + ], + "registered_by_steam_id": [ + 32 + ], + "seed": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_team_seasons_var_pop_order_by": { + "captain_steam_id": [ + 3648 + ], + "registered_by_steam_id": [ + 3648 + ], + "seed": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_team_seasons_var_samp_fields": { + "captain_steam_id": [ + 32 + ], + "registered_by_steam_id": [ + 32 + ], + "seed": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_team_seasons_var_samp_order_by": { + "captain_steam_id": [ + 3648 + ], + "registered_by_steam_id": [ + 3648 + ], + "seed": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_team_seasons_variance_fields": { + "captain_steam_id": [ + 32 + ], + "registered_by_steam_id": [ + 32 + ], + "seed": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "league_team_seasons_variance_order_by": { + "captain_steam_id": [ + 3648 + ], + "registered_by_steam_id": [ + 3648 + ], + "seed": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "league_teams": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "movements": [ + 2675, + { + "distinct_on": [ + 2696, + "[league_team_movements_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2694, + "[league_team_movements_order_by!]" + ], + "where": [ + 2684 + ] + } + ], + "movements_aggregate": [ + 2676, + { + "distinct_on": [ + 2696, + "[league_team_movements_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2694, + "[league_team_movements_order_by!]" + ], + "where": [ + 2684 + ] + } + ], + "team": [ + 5194 + ], + "team_id": [ + 6672 + ], + "team_seasons": [ + 2757, + { + "distinct_on": [ + 2779, + "[league_team_seasons_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2777, + "[league_team_seasons_order_by!]" + ], + "where": [ + 2766 + ] + } + ], + "team_seasons_aggregate": [ + 2758, + { + "distinct_on": [ + 2779, + "[league_team_seasons_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2777, + "[league_team_seasons_order_by!]" + ], + "where": [ + 2766 + ] + } + ], + "__typename": [ + 85 + ] + }, + "league_teams_aggregate": { + "aggregate": [ + 2801 + ], + "nodes": [ + 2799 + ], + "__typename": [ + 85 + ] + }, + "league_teams_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 2812, + "[league_teams_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 2805 + ], + "min": [ + 2806 + ], + "__typename": [ + 85 + ] + }, + "league_teams_bool_exp": { + "_and": [ + 2802 + ], + "_not": [ + 2802 + ], + "_or": [ + 2802 + ], + "created_at": [ + 5244 + ], + "id": [ + 6674 + ], + "movements": [ + 2684 + ], + "movements_aggregate": [ + 2677 + ], + "team": [ + 5205 + ], + "team_id": [ + 6674 + ], + "team_seasons": [ + 2766 + ], + "team_seasons_aggregate": [ + 2759 + ], + "__typename": [ + 85 + ] + }, + "league_teams_constraint": {}, + "league_teams_insert_input": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "movements": [ + 2681 + ], + "team": [ + 5214 + ], + "team_id": [ + 6672 + ], + "team_seasons": [ + 2763 + ], + "__typename": [ + 85 + ] + }, + "league_teams_max_fields": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "league_teams_min_fields": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "league_teams_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 2799 + ], + "__typename": [ + 85 + ] + }, + "league_teams_obj_rel_insert_input": { + "data": [ + 2804 + ], + "on_conflict": [ + 2809 + ], + "__typename": [ + 85 + ] + }, + "league_teams_on_conflict": { + "constraint": [ + 2803 + ], + "update_columns": [ + 2816 + ], + "where": [ + 2802 + ], + "__typename": [ + 85 + ] + }, + "league_teams_order_by": { + "created_at": [ + 3648 + ], + "id": [ + 3648 + ], + "movements_aggregate": [ + 2680 + ], + "team": [ + 5216 + ], + "team_id": [ + 3648 + ], + "team_seasons_aggregate": [ + 2762 + ], + "__typename": [ + 85 + ] + }, + "league_teams_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "league_teams_select_column": {}, + "league_teams_set_input": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "league_teams_stream_cursor_input": { + "initial_value": [ + 2815 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "league_teams_stream_cursor_value_input": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "league_teams_update_column": {}, + "league_teams_updates": { + "_set": [ + 2813 + ], + "where": [ + 2802 + ], + "__typename": [ + 85 + ] + }, + "lobbies": { + "access": [ + 1061 + ], + "created_at": [ + 5243 + ], + "e_lobby_access": [ + 1056 + ], + "id": [ + 6672 + ], + "players": [ + 2837, + { + "distinct_on": [ + 2860, + "[lobby_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2858, + "[lobby_players_order_by!]" + ], + "where": [ + 2848 + ] + } + ], + "players_aggregate": [ + 2838, + { + "distinct_on": [ + 2860, + "[lobby_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2858, + "[lobby_players_order_by!]" + ], + "where": [ + 2848 + ] + } + ], + "__typename": [ + 85 + ] + }, + "lobbies_aggregate": { + "aggregate": [ + 2820 + ], + "nodes": [ + 2818 + ], + "__typename": [ + 85 + ] + }, + "lobbies_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 2831, + "[lobbies_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 2824 + ], + "min": [ + 2825 + ], + "__typename": [ + 85 + ] + }, + "lobbies_bool_exp": { + "_and": [ + 2821 + ], + "_not": [ + 2821 + ], + "_or": [ + 2821 + ], + "access": [ + 1062 + ], + "created_at": [ + 5244 + ], + "e_lobby_access": [ + 1059 + ], + "id": [ + 6674 + ], + "players": [ + 2848 + ], + "players_aggregate": [ + 2839 + ], + "__typename": [ + 85 + ] + }, + "lobbies_constraint": {}, + "lobbies_insert_input": { + "access": [ + 1061 + ], + "created_at": [ + 5243 + ], + "e_lobby_access": [ + 1067 + ], + "id": [ + 6672 + ], + "players": [ + 2845 + ], + "__typename": [ + 85 + ] + }, + "lobbies_max_fields": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "lobbies_min_fields": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "lobbies_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 2818 + ], + "__typename": [ + 85 + ] + }, + "lobbies_obj_rel_insert_input": { + "data": [ + 2823 + ], + "on_conflict": [ + 2828 + ], + "__typename": [ + 85 + ] + }, + "lobbies_on_conflict": { + "constraint": [ + 2822 + ], + "update_columns": [ + 2835 + ], + "where": [ + 2821 + ], + "__typename": [ + 85 + ] + }, + "lobbies_order_by": { + "access": [ + 3648 + ], + "created_at": [ + 3648 + ], + "e_lobby_access": [ + 1069 + ], + "id": [ + 3648 + ], + "players_aggregate": [ + 2844 + ], + "__typename": [ + 85 + ] + }, + "lobbies_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "lobbies_select_column": {}, + "lobbies_set_input": { + "access": [ + 1061 + ], + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "lobbies_stream_cursor_input": { + "initial_value": [ + 2834 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "lobbies_stream_cursor_value_input": { + "access": [ + 1061 + ], + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "lobbies_update_column": {}, + "lobbies_updates": { + "_set": [ + 2832 + ], + "where": [ + 2821 + ], + "__typename": [ + 85 + ] + }, + "lobby_players": { + "captain": [ + 6 + ], + "invited_by_steam_id": [ + 312 + ], + "lobby": [ + 2818 + ], + "lobby_id": [ + 6672 + ], + "player": [ + 4606 + ], + "status": [ + 1082 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "lobby_players_aggregate": { + "aggregate": [ + 2843 + ], + "nodes": [ + 2837 + ], + "__typename": [ + 85 + ] + }, + "lobby_players_aggregate_bool_exp": { + "bool_and": [ + 2840 + ], + "bool_or": [ + 2841 + ], + "count": [ + 2842 + ], + "__typename": [ + 85 + ] + }, + "lobby_players_aggregate_bool_exp_bool_and": { + "arguments": [ + 2861 + ], + "distinct": [ + 6 + ], + "filter": [ + 2848 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "lobby_players_aggregate_bool_exp_bool_or": { + "arguments": [ + 2862 + ], + "distinct": [ + 6 + ], + "filter": [ + 2848 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "lobby_players_aggregate_bool_exp_count": { + "arguments": [ + 2860 + ], + "distinct": [ + 6 + ], + "filter": [ + 2848 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "lobby_players_aggregate_fields": { + "avg": [ + 2846 + ], + "count": [ + 41, + { + "columns": [ + 2860, + "[lobby_players_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 2852 + ], + "min": [ + 2854 + ], + "stddev": [ + 2864 + ], + "stddev_pop": [ + 2866 + ], + "stddev_samp": [ + 2868 + ], + "sum": [ + 2872 + ], + "var_pop": [ + 2876 + ], + "var_samp": [ + 2878 + ], + "variance": [ + 2880 + ], + "__typename": [ + 85 + ] + }, + "lobby_players_aggregate_order_by": { + "avg": [ + 2847 + ], + "count": [ + 3648 + ], + "max": [ + 2853 + ], + "min": [ + 2855 + ], + "stddev": [ + 2865 + ], + "stddev_pop": [ + 2867 + ], + "stddev_samp": [ + 2869 + ], + "sum": [ + 2873 + ], + "var_pop": [ + 2877 + ], + "var_samp": [ + 2879 + ], + "variance": [ + 2881 + ], + "__typename": [ + 85 + ] + }, + "lobby_players_arr_rel_insert_input": { + "data": [ + 2851 + ], + "on_conflict": [ + 2857 + ], + "__typename": [ + 85 + ] + }, + "lobby_players_avg_fields": { + "invited_by_steam_id": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "lobby_players_avg_order_by": { + "invited_by_steam_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "lobby_players_bool_exp": { + "_and": [ + 2848 + ], + "_not": [ + 2848 + ], + "_or": [ + 2848 + ], + "captain": [ + 7 + ], + "invited_by_steam_id": [ + 314 + ], + "lobby": [ + 2821 + ], + "lobby_id": [ + 6674 + ], + "player": [ + 4610 + ], + "status": [ + 1083 + ], + "steam_id": [ + 314 + ], + "__typename": [ + 85 + ] + }, + "lobby_players_constraint": {}, + "lobby_players_inc_input": { + "invited_by_steam_id": [ + 312 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "lobby_players_insert_input": { + "captain": [ + 6 + ], + "invited_by_steam_id": [ + 312 + ], + "lobby": [ + 2827 + ], + "lobby_id": [ + 6672 + ], + "player": [ + 4617 + ], + "status": [ + 1082 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "lobby_players_max_fields": { + "invited_by_steam_id": [ + 312 + ], + "lobby_id": [ + 6672 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "lobby_players_max_order_by": { + "invited_by_steam_id": [ + 3648 + ], + "lobby_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "lobby_players_min_fields": { + "invited_by_steam_id": [ + 312 + ], + "lobby_id": [ + 6672 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "lobby_players_min_order_by": { + "invited_by_steam_id": [ + 3648 + ], + "lobby_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "lobby_players_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 2837 + ], + "__typename": [ + 85 + ] + }, + "lobby_players_on_conflict": { + "constraint": [ + 2849 + ], + "update_columns": [ + 2874 + ], + "where": [ + 2848 + ], + "__typename": [ + 85 + ] + }, + "lobby_players_order_by": { + "captain": [ + 3648 + ], + "invited_by_steam_id": [ + 3648 + ], + "lobby": [ + 2829 + ], + "lobby_id": [ + 3648 + ], + "player": [ + 4619 + ], + "status": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "lobby_players_pk_columns_input": { + "lobby_id": [ + 6672 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "lobby_players_select_column": {}, + "lobby_players_select_column_lobby_players_aggregate_bool_exp_bool_and_arguments_columns": {}, + "lobby_players_select_column_lobby_players_aggregate_bool_exp_bool_or_arguments_columns": {}, + "lobby_players_set_input": { + "captain": [ + 6 + ], + "invited_by_steam_id": [ + 312 + ], + "lobby_id": [ + 6672 + ], + "status": [ + 1082 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "lobby_players_stddev_fields": { + "invited_by_steam_id": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "lobby_players_stddev_order_by": { + "invited_by_steam_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "lobby_players_stddev_pop_fields": { + "invited_by_steam_id": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "lobby_players_stddev_pop_order_by": { + "invited_by_steam_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "lobby_players_stddev_samp_fields": { + "invited_by_steam_id": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "lobby_players_stddev_samp_order_by": { + "invited_by_steam_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "lobby_players_stream_cursor_input": { + "initial_value": [ + 2871 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "lobby_players_stream_cursor_value_input": { + "captain": [ + 6 + ], + "invited_by_steam_id": [ + 312 + ], + "lobby_id": [ + 6672 + ], + "status": [ + 1082 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "lobby_players_sum_fields": { + "invited_by_steam_id": [ + 312 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "lobby_players_sum_order_by": { + "invited_by_steam_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "lobby_players_update_column": {}, + "lobby_players_updates": { + "_inc": [ + 2850 + ], + "_set": [ + 2863 + ], + "where": [ + 2848 + ], + "__typename": [ + 85 + ] + }, + "lobby_players_var_pop_fields": { + "invited_by_steam_id": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "lobby_players_var_pop_order_by": { + "invited_by_steam_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "lobby_players_var_samp_fields": { + "invited_by_steam_id": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "lobby_players_var_samp_order_by": { + "invited_by_steam_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "lobby_players_variance_fields": { + "invited_by_steam_id": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "lobby_players_variance_order_by": { + "invited_by_steam_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "map_callouts": { + "boxes": [ + 2439, + { + "path": [ + 85 + ] + } + ], + "map_name": [ + 85 + ], + "name": [ + 85 + ], + "source": [ + 85 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "map_callouts_aggregate": { + "aggregate": [ + 2884 + ], + "nodes": [ + 2882 + ], + "__typename": [ + 85 + ] + }, + "map_callouts_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 2899, + "[map_callouts_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 2892 + ], + "min": [ + 2893 + ], + "__typename": [ + 85 + ] + }, + "map_callouts_append_input": { + "boxes": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "map_callouts_bool_exp": { + "_and": [ + 2886 + ], + "_not": [ + 2886 + ], + "_or": [ + 2886 + ], + "boxes": [ + 2441 + ], + "map_name": [ + 87 + ], + "name": [ + 87 + ], + "source": [ + 87 + ], + "updated_at": [ + 5244 + ], + "__typename": [ + 85 + ] + }, + "map_callouts_constraint": {}, + "map_callouts_delete_at_path_input": { + "boxes": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "map_callouts_delete_elem_input": { + "boxes": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "map_callouts_delete_key_input": { + "boxes": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "map_callouts_insert_input": { + "boxes": [ + 2439 + ], + "map_name": [ + 85 + ], + "name": [ + 85 + ], + "source": [ + 85 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "map_callouts_max_fields": { + "map_name": [ + 85 + ], + "name": [ + 85 + ], + "source": [ + 85 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "map_callouts_min_fields": { + "map_name": [ + 85 + ], + "name": [ + 85 + ], + "source": [ + 85 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "map_callouts_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 2882 + ], + "__typename": [ + 85 + ] + }, + "map_callouts_on_conflict": { + "constraint": [ + 2887 + ], + "update_columns": [ + 2903 + ], + "where": [ + 2886 + ], + "__typename": [ + 85 + ] + }, + "map_callouts_order_by": { + "boxes": [ + 3648 + ], + "map_name": [ + 3648 + ], + "name": [ + 3648 + ], + "source": [ + 3648 + ], + "updated_at": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "map_callouts_pk_columns_input": { + "map_name": [ + 85 + ], + "name": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "map_callouts_prepend_input": { + "boxes": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "map_callouts_select_column": {}, + "map_callouts_set_input": { + "boxes": [ + 2439 + ], + "map_name": [ + 85 + ], + "name": [ + 85 + ], + "source": [ + 85 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "map_callouts_stream_cursor_input": { + "initial_value": [ + 2902 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "map_callouts_stream_cursor_value_input": { + "boxes": [ + 2439 + ], + "map_name": [ + 85 + ], + "name": [ + 85 + ], + "source": [ + 85 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "map_callouts_update_column": {}, + "map_callouts_updates": { + "_append": [ + 2885 + ], + "_delete_at_path": [ + 2888 + ], + "_delete_elem": [ + 2889 + ], + "_delete_key": [ + 2890 + ], + "_prepend": [ + 2898 + ], + "_set": [ + 2900 + ], + "where": [ + 2886 + ], + "__typename": [ + 85 + ] + }, + "map_pools": { + "e_type": [ + 1097 + ], + "enabled": [ + 6 + ], + "id": [ + 6672 + ], + "maps": [ + 7332, + { + "distinct_on": [ + 7349, + "[v_pool_maps_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7348, + "[v_pool_maps_order_by!]" + ], + "where": [ + 7341 + ] + } + ], + "maps_aggregate": [ + 7333, + { + "distinct_on": [ + 7349, + "[v_pool_maps_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7348, + "[v_pool_maps_order_by!]" + ], + "where": [ + 7341 + ] + } + ], + "seed": [ + 6 + ], + "type": [ + 1102 + ], + "__typename": [ + 85 + ] + }, + "map_pools_aggregate": { + "aggregate": [ + 2907 + ], + "nodes": [ + 2905 + ], + "__typename": [ + 85 + ] + }, + "map_pools_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 2918, + "[map_pools_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 2911 + ], + "min": [ + 2912 + ], + "__typename": [ + 85 + ] + }, + "map_pools_bool_exp": { + "_and": [ + 2908 + ], + "_not": [ + 2908 + ], + "_or": [ + 2908 + ], + "e_type": [ + 1100 + ], + "enabled": [ + 7 + ], + "id": [ + 6674 + ], + "maps": [ + 7341 + ], + "maps_aggregate": [ + 7334 + ], + "seed": [ + 7 + ], + "type": [ + 1103 + ], + "__typename": [ + 85 + ] + }, + "map_pools_constraint": {}, + "map_pools_insert_input": { + "e_type": [ + 1108 + ], + "enabled": [ + 6 + ], + "id": [ + 6672 + ], + "maps": [ + 7340 + ], + "seed": [ + 6 + ], + "type": [ + 1102 + ], + "__typename": [ + 85 + ] + }, + "map_pools_max_fields": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "map_pools_min_fields": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "map_pools_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 2905 + ], + "__typename": [ + 85 + ] + }, + "map_pools_obj_rel_insert_input": { + "data": [ + 2910 + ], + "on_conflict": [ + 2915 + ], + "__typename": [ + 85 + ] + }, + "map_pools_on_conflict": { + "constraint": [ + 2909 + ], + "update_columns": [ + 2922 + ], + "where": [ + 2908 + ], + "__typename": [ + 85 + ] + }, + "map_pools_order_by": { + "e_type": [ + 1110 + ], + "enabled": [ + 3648 + ], + "id": [ + 3648 + ], + "maps_aggregate": [ + 7339 + ], + "seed": [ + 3648 + ], + "type": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "map_pools_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "map_pools_select_column": {}, + "map_pools_set_input": { + "enabled": [ + 6 + ], + "id": [ + 6672 + ], + "seed": [ + 6 + ], + "type": [ + 1102 + ], + "__typename": [ + 85 + ] + }, + "map_pools_stream_cursor_input": { + "initial_value": [ + 2921 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "map_pools_stream_cursor_value_input": { + "enabled": [ + 6 + ], + "id": [ + 6672 + ], + "seed": [ + 6 + ], + "type": [ + 1102 + ], + "__typename": [ + 85 + ] + }, + "map_pools_update_column": {}, + "map_pools_updates": { + "_set": [ + 2919 + ], + "where": [ + 2908 + ], + "__typename": [ + 85 + ] + }, + "maps": { + "active_pool": [ + 6 + ], + "deleted_at": [ + 5243 + ], + "e_match_type": [ + 1220 + ], + "enabled": [ + 6 + ], + "id": [ + 6672 + ], + "label": [ + 85 + ], + "match_maps": [ + 3248, + { + "distinct_on": [ + 3270, + "[match_maps_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3268, + "[match_maps_order_by!]" + ], + "where": [ + 3257 + ] + } + ], + "match_maps_aggregate": [ + 3249, + { + "distinct_on": [ + 3270, + "[match_maps_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3268, + "[match_maps_order_by!]" + ], + "where": [ + 3257 + ] + } + ], + "match_veto_picks": [ + 3220, + { + "distinct_on": [ + 3240, + "[match_map_veto_picks_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3238, + "[match_map_veto_picks_order_by!]" + ], + "where": [ + 3229 + ] + } + ], + "match_veto_picks_aggregate": [ + 3221, + { + "distinct_on": [ + 3240, + "[match_map_veto_picks_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3238, + "[match_map_veto_picks_order_by!]" + ], + "where": [ + 3229 + ] + } + ], + "name": [ + 85 + ], + "patch": [ + 85 + ], + "poster": [ + 85 + ], + "type": [ + 1225 + ], + "workshop_map_id": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "maps_aggregate": { + "aggregate": [ + 2930 + ], + "nodes": [ + 2924 + ], + "__typename": [ + 85 + ] + }, + "maps_aggregate_bool_exp": { + "bool_and": [ + 2927 + ], + "bool_or": [ + 2928 + ], + "count": [ + 2929 + ], + "__typename": [ + 85 + ] + }, + "maps_aggregate_bool_exp_bool_and": { + "arguments": [ + 2946 + ], + "distinct": [ + 6 + ], + "filter": [ + 2933 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "maps_aggregate_bool_exp_bool_or": { + "arguments": [ + 2947 + ], + "distinct": [ + 6 + ], + "filter": [ + 2933 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "maps_aggregate_bool_exp_count": { + "arguments": [ + 2945 + ], + "distinct": [ + 6 + ], + "filter": [ + 2933 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "maps_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 2945, + "[maps_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 2936 + ], + "min": [ + 2938 + ], + "__typename": [ + 85 + ] + }, + "maps_aggregate_order_by": { + "count": [ + 3648 + ], + "max": [ + 2937 + ], + "min": [ + 2939 + ], + "__typename": [ + 85 + ] + }, + "maps_arr_rel_insert_input": { + "data": [ + 2935 + ], + "on_conflict": [ + 2942 + ], + "__typename": [ + 85 + ] + }, + "maps_bool_exp": { + "_and": [ + 2933 + ], + "_not": [ + 2933 + ], + "_or": [ + 2933 + ], + "active_pool": [ + 7 + ], + "deleted_at": [ + 5244 + ], + "e_match_type": [ + 1223 + ], + "enabled": [ + 7 + ], + "id": [ + 6674 + ], + "label": [ + 87 + ], + "match_maps": [ + 3257 + ], + "match_maps_aggregate": [ + 3250 + ], + "match_veto_picks": [ + 3229 + ], + "match_veto_picks_aggregate": [ + 3222 + ], + "name": [ + 87 + ], + "patch": [ + 87 + ], + "poster": [ + 87 + ], + "type": [ + 1226 + ], + "workshop_map_id": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "maps_constraint": {}, + "maps_insert_input": { + "active_pool": [ + 6 + ], + "deleted_at": [ + 5243 + ], + "e_match_type": [ + 1231 + ], + "enabled": [ + 6 + ], + "id": [ + 6672 + ], + "label": [ + 85 + ], + "match_maps": [ + 3254 + ], + "match_veto_picks": [ + 3228 + ], + "name": [ + 85 + ], + "patch": [ + 85 + ], + "poster": [ + 85 + ], + "type": [ + 1225 + ], + "workshop_map_id": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "maps_max_fields": { + "deleted_at": [ + 5243 + ], + "id": [ + 6672 + ], + "label": [ + 85 + ], + "name": [ + 85 + ], + "patch": [ + 85 + ], + "poster": [ + 85 + ], + "workshop_map_id": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "maps_max_order_by": { + "deleted_at": [ + 3648 + ], + "id": [ + 3648 + ], + "label": [ + 3648 + ], + "name": [ + 3648 + ], + "patch": [ + 3648 + ], + "poster": [ + 3648 + ], + "workshop_map_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "maps_min_fields": { + "deleted_at": [ + 5243 + ], + "id": [ + 6672 + ], + "label": [ + 85 + ], + "name": [ + 85 + ], + "patch": [ + 85 + ], + "poster": [ + 85 + ], + "workshop_map_id": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "maps_min_order_by": { + "deleted_at": [ + 3648 + ], + "id": [ + 3648 + ], + "label": [ + 3648 + ], + "name": [ + 3648 + ], + "patch": [ + 3648 + ], + "poster": [ + 3648 + ], + "workshop_map_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "maps_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 2924 + ], + "__typename": [ + 85 + ] + }, + "maps_obj_rel_insert_input": { + "data": [ + 2935 + ], + "on_conflict": [ + 2942 + ], + "__typename": [ + 85 + ] + }, + "maps_on_conflict": { + "constraint": [ + 2934 + ], + "update_columns": [ + 2951 + ], + "where": [ + 2933 + ], + "__typename": [ + 85 + ] + }, + "maps_order_by": { + "active_pool": [ + 3648 + ], + "deleted_at": [ + 3648 + ], + "e_match_type": [ + 1233 + ], + "enabled": [ + 3648 + ], + "id": [ + 3648 + ], + "label": [ + 3648 + ], + "match_maps_aggregate": [ + 3253 + ], + "match_veto_picks_aggregate": [ + 3227 + ], + "name": [ + 3648 + ], + "patch": [ + 3648 + ], + "poster": [ + 3648 + ], + "type": [ + 3648 + ], + "workshop_map_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "maps_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "maps_select_column": {}, + "maps_select_column_maps_aggregate_bool_exp_bool_and_arguments_columns": {}, + "maps_select_column_maps_aggregate_bool_exp_bool_or_arguments_columns": {}, + "maps_set_input": { + "active_pool": [ + 6 + ], + "deleted_at": [ + 5243 + ], + "enabled": [ + 6 + ], + "id": [ + 6672 + ], + "label": [ + 85 + ], + "name": [ + 85 + ], + "patch": [ + 85 + ], + "poster": [ + 85 + ], + "type": [ + 1225 + ], + "workshop_map_id": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "maps_stream_cursor_input": { + "initial_value": [ + 2950 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "maps_stream_cursor_value_input": { + "active_pool": [ + 6 + ], + "deleted_at": [ + 5243 + ], + "enabled": [ + 6 + ], + "id": [ + 6672 + ], + "label": [ + 85 + ], + "name": [ + 85 + ], + "patch": [ + 85 + ], + "poster": [ + 85 + ], + "type": [ + 1225 + ], + "workshop_map_id": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "maps_update_column": {}, + "maps_updates": { + "_set": [ + 2948 + ], + "where": [ + 2933 + ], + "__typename": [ + 85 + ] + }, + "match_clips": { + "created_at": [ + 5243 + ], + "download_url": [ + 85 + ], + "duration_ms": [ + 41 + ], + "file": [ + 85 + ], + "id": [ + 6672 + ], + "kills_count": [ + 41 + ], + "match_map": [ + 3248 + ], + "match_map_demo": [ + 3128 + ], + "match_map_demo_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "render_jobs": [ + 344, + { + "distinct_on": [ + 372, + "[clip_render_jobs_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 369, + "[clip_render_jobs_order_by!]" + ], + "where": [ + 356 + ] + } + ], + "render_jobs_aggregate": [ + 345, + { + "distinct_on": [ + 372, + "[clip_render_jobs_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 369, + "[clip_render_jobs_order_by!]" + ], + "where": [ + 356 + ] + } + ], + "round": [ + 41 + ], + "size": [ + 312 + ], + "target": [ + 4606 + ], + "target_steam_id": [ + 312 + ], + "thumbnail_download_url": [ + 85 + ], + "thumbnail_url": [ + 85 + ], + "title": [ + 85 + ], + "user": [ + 4606 + ], + "user_steam_id": [ + 312 + ], + "views_count": [ + 41 + ], + "visibility": [ + 1123 + ], + "__typename": [ + 85 + ] + }, + "match_clips_aggregate": { + "aggregate": [ + 2957 + ], + "nodes": [ + 2953 + ], + "__typename": [ + 85 + ] + }, + "match_clips_aggregate_bool_exp": { + "count": [ + 2956 + ], + "__typename": [ + 85 + ] + }, + "match_clips_aggregate_bool_exp_count": { + "arguments": [ + 2975 + ], + "distinct": [ + 6 + ], + "filter": [ + 2962 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "match_clips_aggregate_fields": { + "avg": [ + 2960 + ], + "count": [ + 41, + { + "columns": [ + 2975, + "[match_clips_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 2966 + ], + "min": [ + 2968 + ], + "stddev": [ + 2977 + ], + "stddev_pop": [ + 2979 + ], + "stddev_samp": [ + 2981 + ], + "sum": [ + 2985 + ], + "var_pop": [ + 2989 + ], + "var_samp": [ + 2991 + ], + "variance": [ + 2993 + ], + "__typename": [ + 85 + ] + }, + "match_clips_aggregate_order_by": { + "avg": [ + 2961 + ], + "count": [ + 3648 + ], + "max": [ + 2967 + ], + "min": [ + 2969 + ], + "stddev": [ + 2978 + ], + "stddev_pop": [ + 2980 + ], + "stddev_samp": [ + 2982 + ], + "sum": [ + 2986 + ], + "var_pop": [ + 2990 + ], + "var_samp": [ + 2992 + ], + "variance": [ + 2994 + ], + "__typename": [ + 85 + ] + }, + "match_clips_arr_rel_insert_input": { + "data": [ + 2965 + ], + "on_conflict": [ + 2972 + ], + "__typename": [ + 85 + ] + }, + "match_clips_avg_fields": { + "duration_ms": [ + 32 + ], + "kills_count": [ + 32 + ], + "round": [ + 32 + ], + "size": [ + 32 + ], + "target_steam_id": [ + 32 + ], + "user_steam_id": [ + 32 + ], + "views_count": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_clips_avg_order_by": { + "duration_ms": [ + 3648 + ], + "kills_count": [ + 3648 + ], + "round": [ + 3648 + ], + "size": [ + 3648 + ], + "target_steam_id": [ + 3648 + ], + "user_steam_id": [ + 3648 + ], + "views_count": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_clips_bool_exp": { + "_and": [ + 2962 + ], + "_not": [ + 2962 + ], + "_or": [ + 2962 + ], + "created_at": [ + 5244 + ], + "download_url": [ + 87 + ], + "duration_ms": [ + 42 + ], + "file": [ + 87 + ], + "id": [ + 6674 + ], + "kills_count": [ + 42 + ], + "match_map": [ + 3257 + ], + "match_map_demo": [ + 3140 + ], + "match_map_demo_id": [ + 6674 + ], + "match_map_id": [ + 6674 + ], + "render_jobs": [ + 356 + ], + "render_jobs_aggregate": [ + 346 + ], + "round": [ + 42 + ], + "size": [ + 314 + ], + "target": [ + 4610 + ], + "target_steam_id": [ + 314 + ], + "thumbnail_download_url": [ + 87 + ], + "thumbnail_url": [ + 87 + ], + "title": [ + 87 + ], + "user": [ + 4610 + ], + "user_steam_id": [ + 314 + ], + "views_count": [ + 42 + ], + "visibility": [ + 1124 + ], + "__typename": [ + 85 + ] + }, + "match_clips_constraint": {}, + "match_clips_inc_input": { + "duration_ms": [ + 41 + ], + "kills_count": [ + 41 + ], + "round": [ + 41 + ], + "size": [ + 312 + ], + "target_steam_id": [ + 312 + ], + "user_steam_id": [ + 312 + ], + "views_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "match_clips_insert_input": { + "created_at": [ + 5243 + ], + "duration_ms": [ + 41 + ], + "file": [ + 85 + ], + "id": [ + 6672 + ], + "kills_count": [ + 41 + ], + "match_map": [ + 3266 + ], + "match_map_demo": [ + 3152 + ], + "match_map_demo_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "render_jobs": [ + 353 + ], + "round": [ + 41 + ], + "size": [ + 312 + ], + "target": [ + 4617 + ], + "target_steam_id": [ + 312 + ], + "thumbnail_url": [ + 85 + ], + "title": [ + 85 + ], + "user": [ + 4617 + ], + "user_steam_id": [ + 312 + ], + "views_count": [ + 41 + ], + "visibility": [ + 1123 + ], + "__typename": [ + 85 + ] + }, + "match_clips_max_fields": { + "created_at": [ + 5243 + ], + "download_url": [ + 85 + ], + "duration_ms": [ + 41 + ], + "file": [ + 85 + ], + "id": [ + 6672 + ], + "kills_count": [ + 41 + ], + "match_map_demo_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "round": [ + 41 + ], + "size": [ + 312 + ], + "target_steam_id": [ + 312 + ], + "thumbnail_download_url": [ + 85 + ], + "thumbnail_url": [ + 85 + ], + "title": [ + 85 + ], + "user_steam_id": [ + 312 + ], + "views_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "match_clips_max_order_by": { + "created_at": [ + 3648 + ], + "duration_ms": [ + 3648 + ], + "file": [ + 3648 + ], + "id": [ + 3648 + ], + "kills_count": [ + 3648 + ], + "match_map_demo_id": [ + 3648 + ], + "match_map_id": [ + 3648 + ], + "round": [ + 3648 + ], + "size": [ + 3648 + ], + "target_steam_id": [ + 3648 + ], + "thumbnail_url": [ + 3648 + ], + "title": [ + 3648 + ], + "user_steam_id": [ + 3648 + ], + "views_count": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_clips_min_fields": { + "created_at": [ + 5243 + ], + "download_url": [ + 85 + ], + "duration_ms": [ + 41 + ], + "file": [ + 85 + ], + "id": [ + 6672 + ], + "kills_count": [ + 41 + ], + "match_map_demo_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "round": [ + 41 + ], + "size": [ + 312 + ], + "target_steam_id": [ + 312 + ], + "thumbnail_download_url": [ + 85 + ], + "thumbnail_url": [ + 85 + ], + "title": [ + 85 + ], + "user_steam_id": [ + 312 + ], + "views_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "match_clips_min_order_by": { + "created_at": [ + 3648 + ], + "duration_ms": [ + 3648 + ], + "file": [ + 3648 + ], + "id": [ + 3648 + ], + "kills_count": [ + 3648 + ], + "match_map_demo_id": [ + 3648 + ], + "match_map_id": [ + 3648 + ], + "round": [ + 3648 + ], + "size": [ + 3648 + ], + "target_steam_id": [ + 3648 + ], + "thumbnail_url": [ + 3648 + ], + "title": [ + 3648 + ], + "user_steam_id": [ + 3648 + ], + "views_count": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_clips_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 2953 + ], + "__typename": [ + 85 + ] + }, + "match_clips_obj_rel_insert_input": { + "data": [ + 2965 + ], + "on_conflict": [ + 2972 + ], + "__typename": [ + 85 + ] + }, + "match_clips_on_conflict": { + "constraint": [ + 2963 + ], + "update_columns": [ + 2987 + ], + "where": [ + 2962 + ], + "__typename": [ + 85 + ] + }, + "match_clips_order_by": { + "created_at": [ + 3648 + ], + "download_url": [ + 3648 + ], + "duration_ms": [ + 3648 + ], + "file": [ + 3648 + ], + "id": [ + 3648 + ], + "kills_count": [ + 3648 + ], + "match_map": [ + 3268 + ], + "match_map_demo": [ + 3154 + ], + "match_map_demo_id": [ + 3648 + ], + "match_map_id": [ + 3648 + ], + "render_jobs_aggregate": [ + 351 + ], + "round": [ + 3648 + ], + "size": [ + 3648 + ], + "target": [ + 4619 + ], + "target_steam_id": [ + 3648 + ], + "thumbnail_download_url": [ + 3648 + ], + "thumbnail_url": [ + 3648 + ], + "title": [ + 3648 + ], + "user": [ + 4619 + ], + "user_steam_id": [ + 3648 + ], + "views_count": [ + 3648 + ], + "visibility": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_clips_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "match_clips_select_column": {}, + "match_clips_set_input": { + "created_at": [ + 5243 + ], + "duration_ms": [ + 41 + ], + "file": [ + 85 + ], + "id": [ + 6672 + ], + "kills_count": [ + 41 + ], + "match_map_demo_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "round": [ + 41 + ], + "size": [ + 312 + ], + "target_steam_id": [ + 312 + ], + "thumbnail_url": [ + 85 + ], + "title": [ + 85 + ], + "user_steam_id": [ + 312 + ], + "views_count": [ + 41 + ], + "visibility": [ + 1123 + ], + "__typename": [ + 85 + ] + }, + "match_clips_stddev_fields": { + "duration_ms": [ + 32 + ], + "kills_count": [ + 32 + ], + "round": [ + 32 + ], + "size": [ + 32 + ], + "target_steam_id": [ + 32 + ], + "user_steam_id": [ + 32 + ], + "views_count": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_clips_stddev_order_by": { + "duration_ms": [ + 3648 + ], + "kills_count": [ + 3648 + ], + "round": [ + 3648 + ], + "size": [ + 3648 + ], + "target_steam_id": [ + 3648 + ], + "user_steam_id": [ + 3648 + ], + "views_count": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_clips_stddev_pop_fields": { + "duration_ms": [ + 32 + ], + "kills_count": [ + 32 + ], + "round": [ + 32 + ], + "size": [ + 32 + ], + "target_steam_id": [ + 32 + ], + "user_steam_id": [ + 32 + ], + "views_count": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_clips_stddev_pop_order_by": { + "duration_ms": [ + 3648 + ], + "kills_count": [ + 3648 + ], + "round": [ + 3648 + ], + "size": [ + 3648 + ], + "target_steam_id": [ + 3648 + ], + "user_steam_id": [ + 3648 + ], + "views_count": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_clips_stddev_samp_fields": { + "duration_ms": [ + 32 + ], + "kills_count": [ + 32 + ], + "round": [ + 32 + ], + "size": [ + 32 + ], + "target_steam_id": [ + 32 + ], + "user_steam_id": [ + 32 + ], + "views_count": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_clips_stddev_samp_order_by": { + "duration_ms": [ + 3648 + ], + "kills_count": [ + 3648 + ], + "round": [ + 3648 + ], + "size": [ + 3648 + ], + "target_steam_id": [ + 3648 + ], + "user_steam_id": [ + 3648 + ], + "views_count": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_clips_stream_cursor_input": { + "initial_value": [ + 2984 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "match_clips_stream_cursor_value_input": { + "created_at": [ + 5243 + ], + "duration_ms": [ + 41 + ], + "file": [ + 85 + ], + "id": [ + 6672 + ], + "kills_count": [ + 41 + ], + "match_map_demo_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "round": [ + 41 + ], + "size": [ + 312 + ], + "target_steam_id": [ + 312 + ], + "thumbnail_url": [ + 85 + ], + "title": [ + 85 + ], + "user_steam_id": [ + 312 + ], + "views_count": [ + 41 + ], + "visibility": [ + 1123 + ], + "__typename": [ + 85 + ] + }, + "match_clips_sum_fields": { + "duration_ms": [ + 41 + ], + "kills_count": [ + 41 + ], + "round": [ + 41 + ], + "size": [ + 312 + ], + "target_steam_id": [ + 312 + ], + "user_steam_id": [ + 312 + ], + "views_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "match_clips_sum_order_by": { + "duration_ms": [ + 3648 + ], + "kills_count": [ + 3648 + ], + "round": [ + 3648 + ], + "size": [ + 3648 + ], + "target_steam_id": [ + 3648 + ], + "user_steam_id": [ + 3648 + ], + "views_count": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_clips_update_column": {}, + "match_clips_updates": { + "_inc": [ + 2964 + ], + "_set": [ + 2976 + ], + "where": [ + 2962 + ], + "__typename": [ + 85 + ] + }, + "match_clips_var_pop_fields": { + "duration_ms": [ + 32 + ], + "kills_count": [ + 32 + ], + "round": [ + 32 + ], + "size": [ + 32 + ], + "target_steam_id": [ + 32 + ], + "user_steam_id": [ + 32 + ], + "views_count": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_clips_var_pop_order_by": { + "duration_ms": [ + 3648 + ], + "kills_count": [ + 3648 + ], + "round": [ + 3648 + ], + "size": [ + 3648 + ], + "target_steam_id": [ + 3648 + ], + "user_steam_id": [ + 3648 + ], + "views_count": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_clips_var_samp_fields": { + "duration_ms": [ + 32 + ], + "kills_count": [ + 32 + ], + "round": [ + 32 + ], + "size": [ + 32 + ], + "target_steam_id": [ + 32 + ], + "user_steam_id": [ + 32 + ], + "views_count": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_clips_var_samp_order_by": { + "duration_ms": [ + 3648 + ], + "kills_count": [ + 3648 + ], + "round": [ + 3648 + ], + "size": [ + 3648 + ], + "target_steam_id": [ + 3648 + ], + "user_steam_id": [ + 3648 + ], + "views_count": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_clips_variance_fields": { + "duration_ms": [ + 32 + ], + "kills_count": [ + 32 + ], + "round": [ + 32 + ], + "size": [ + 32 + ], + "target_steam_id": [ + 32 + ], + "user_steam_id": [ + 32 + ], + "views_count": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_clips_variance_order_by": { + "duration_ms": [ + 3648 + ], + "kills_count": [ + 3648 + ], + "round": [ + 3648 + ], + "size": [ + 3648 + ], + "target_steam_id": [ + 3648 + ], + "user_steam_id": [ + 3648 + ], + "views_count": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_demo_sessions": { + "created_at": [ + 5243 + ], + "error_message": [ + 85 + ], + "game_server_node": [ + 2314 + ], + "game_server_node_id": [ + 85 + ], + "id": [ + 6672 + ], + "k8s_job_name": [ + 85 + ], + "last_activity_at": [ + 5243 + ], + "last_status_at": [ + 5243 + ], + "match": [ + 3432 + ], + "match_id": [ + 6672 + ], + "match_map": [ + 3248 + ], + "match_map_demo": [ + 3128 + ], + "match_map_demo_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "status": [ + 85 + ], + "status_history": [ + 2439, + { + "path": [ + 85 + ] + } + ], + "stream_url": [ + 85 + ], + "watcher": [ + 4606 + ], + "watcher_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "match_demo_sessions_aggregate": { + "aggregate": [ + 2999 + ], + "nodes": [ + 2995 + ], + "__typename": [ + 85 + ] + }, + "match_demo_sessions_aggregate_bool_exp": { + "count": [ + 2998 + ], + "__typename": [ + 85 + ] + }, + "match_demo_sessions_aggregate_bool_exp_count": { + "arguments": [ + 3021 + ], + "distinct": [ + 6 + ], + "filter": [ + 3005 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "match_demo_sessions_aggregate_fields": { + "avg": [ + 3003 + ], + "count": [ + 41, + { + "columns": [ + 3021, + "[match_demo_sessions_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 3012 + ], + "min": [ + 3014 + ], + "stddev": [ + 3023 + ], + "stddev_pop": [ + 3025 + ], + "stddev_samp": [ + 3027 + ], + "sum": [ + 3031 + ], + "var_pop": [ + 3035 + ], + "var_samp": [ + 3037 + ], + "variance": [ + 3039 + ], + "__typename": [ + 85 + ] + }, + "match_demo_sessions_aggregate_order_by": { + "avg": [ + 3004 + ], + "count": [ + 3648 + ], + "max": [ + 3013 + ], + "min": [ + 3015 + ], + "stddev": [ + 3024 + ], + "stddev_pop": [ + 3026 + ], + "stddev_samp": [ + 3028 + ], + "sum": [ + 3032 + ], + "var_pop": [ + 3036 + ], + "var_samp": [ + 3038 + ], + "variance": [ + 3040 + ], + "__typename": [ + 85 + ] + }, + "match_demo_sessions_append_input": { + "status_history": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "match_demo_sessions_arr_rel_insert_input": { + "data": [ + 3011 + ], + "on_conflict": [ + 3017 + ], + "__typename": [ + 85 + ] + }, + "match_demo_sessions_avg_fields": { + "watcher_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_demo_sessions_avg_order_by": { + "watcher_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_demo_sessions_bool_exp": { + "_and": [ + 3005 + ], + "_not": [ + 3005 + ], + "_or": [ + 3005 + ], + "created_at": [ + 5244 + ], + "error_message": [ + 87 + ], + "game_server_node": [ + 2326 + ], + "game_server_node_id": [ + 87 + ], + "id": [ + 6674 + ], + "k8s_job_name": [ + 87 + ], + "last_activity_at": [ + 5244 + ], + "last_status_at": [ + 5244 + ], + "match": [ + 3443 + ], + "match_id": [ + 6674 + ], + "match_map": [ + 3257 + ], + "match_map_demo": [ + 3140 + ], + "match_map_demo_id": [ + 6674 + ], + "match_map_id": [ + 6674 + ], + "status": [ + 87 + ], + "status_history": [ + 2441 + ], + "stream_url": [ + 87 + ], + "watcher": [ + 4610 + ], + "watcher_steam_id": [ + 314 + ], + "__typename": [ + 85 + ] + }, + "match_demo_sessions_constraint": {}, + "match_demo_sessions_delete_at_path_input": { + "status_history": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "match_demo_sessions_delete_elem_input": { + "status_history": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "match_demo_sessions_delete_key_input": { + "status_history": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "match_demo_sessions_inc_input": { + "watcher_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "match_demo_sessions_insert_input": { + "created_at": [ + 5243 + ], + "error_message": [ + 85 + ], + "game_server_node": [ + 2338 + ], + "game_server_node_id": [ + 85 + ], + "id": [ + 6672 + ], + "k8s_job_name": [ + 85 + ], + "last_activity_at": [ + 5243 + ], + "last_status_at": [ + 5243 + ], + "match": [ + 3452 + ], + "match_id": [ + 6672 + ], + "match_map": [ + 3266 + ], + "match_map_demo": [ + 3152 + ], + "match_map_demo_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "status": [ + 85 + ], + "status_history": [ + 2439 + ], + "stream_url": [ + 85 + ], + "watcher": [ + 4617 + ], + "watcher_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "match_demo_sessions_max_fields": { + "created_at": [ + 5243 + ], + "error_message": [ + 85 + ], + "game_server_node_id": [ + 85 + ], + "id": [ + 6672 + ], + "k8s_job_name": [ + 85 + ], + "last_activity_at": [ + 5243 + ], + "last_status_at": [ + 5243 + ], + "match_id": [ + 6672 + ], + "match_map_demo_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "status": [ + 85 + ], + "stream_url": [ + 85 + ], + "watcher_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "match_demo_sessions_max_order_by": { + "created_at": [ + 3648 + ], + "error_message": [ + 3648 + ], + "game_server_node_id": [ + 3648 + ], + "id": [ + 3648 + ], + "k8s_job_name": [ + 3648 + ], + "last_activity_at": [ + 3648 + ], + "last_status_at": [ + 3648 + ], + "match_id": [ + 3648 + ], + "match_map_demo_id": [ + 3648 + ], + "match_map_id": [ + 3648 + ], + "status": [ + 3648 + ], + "stream_url": [ + 3648 + ], + "watcher_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_demo_sessions_min_fields": { + "created_at": [ + 5243 + ], + "error_message": [ + 85 + ], + "game_server_node_id": [ + 85 + ], + "id": [ + 6672 + ], + "k8s_job_name": [ + 85 + ], + "last_activity_at": [ + 5243 + ], + "last_status_at": [ + 5243 + ], + "match_id": [ + 6672 + ], + "match_map_demo_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "status": [ + 85 + ], + "stream_url": [ + 85 + ], + "watcher_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "match_demo_sessions_min_order_by": { + "created_at": [ + 3648 + ], + "error_message": [ + 3648 + ], + "game_server_node_id": [ + 3648 + ], + "id": [ + 3648 + ], + "k8s_job_name": [ + 3648 + ], + "last_activity_at": [ + 3648 + ], + "last_status_at": [ + 3648 + ], + "match_id": [ + 3648 + ], + "match_map_demo_id": [ + 3648 + ], + "match_map_id": [ + 3648 + ], + "status": [ + 3648 + ], + "stream_url": [ + 3648 + ], + "watcher_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_demo_sessions_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 2995 + ], + "__typename": [ + 85 + ] + }, + "match_demo_sessions_on_conflict": { + "constraint": [ + 3006 + ], + "update_columns": [ + 3033 + ], + "where": [ + 3005 + ], + "__typename": [ + 85 + ] + }, + "match_demo_sessions_order_by": { + "created_at": [ + 3648 + ], + "error_message": [ + 3648 + ], + "game_server_node": [ + 2340 + ], + "game_server_node_id": [ + 3648 + ], + "id": [ + 3648 + ], + "k8s_job_name": [ + 3648 + ], + "last_activity_at": [ + 3648 + ], + "last_status_at": [ + 3648 + ], + "match": [ + 3454 + ], + "match_id": [ + 3648 + ], + "match_map": [ + 3268 + ], + "match_map_demo": [ + 3154 + ], + "match_map_demo_id": [ + 3648 + ], + "match_map_id": [ + 3648 + ], + "status": [ + 3648 + ], + "status_history": [ + 3648 + ], + "stream_url": [ + 3648 + ], + "watcher": [ + 4619 + ], + "watcher_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_demo_sessions_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "match_demo_sessions_prepend_input": { + "status_history": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "match_demo_sessions_select_column": {}, + "match_demo_sessions_set_input": { + "created_at": [ + 5243 + ], + "error_message": [ + 85 + ], + "game_server_node_id": [ + 85 + ], + "id": [ + 6672 + ], + "k8s_job_name": [ + 85 + ], + "last_activity_at": [ + 5243 + ], + "last_status_at": [ + 5243 + ], + "match_id": [ + 6672 + ], + "match_map_demo_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "status": [ + 85 + ], + "status_history": [ + 2439 + ], + "stream_url": [ + 85 + ], + "watcher_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "match_demo_sessions_stddev_fields": { + "watcher_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_demo_sessions_stddev_order_by": { + "watcher_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_demo_sessions_stddev_pop_fields": { + "watcher_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_demo_sessions_stddev_pop_order_by": { + "watcher_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_demo_sessions_stddev_samp_fields": { + "watcher_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_demo_sessions_stddev_samp_order_by": { + "watcher_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_demo_sessions_stream_cursor_input": { + "initial_value": [ + 3030 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "match_demo_sessions_stream_cursor_value_input": { + "created_at": [ + 5243 + ], + "error_message": [ + 85 + ], + "game_server_node_id": [ + 85 + ], + "id": [ + 6672 + ], + "k8s_job_name": [ + 85 + ], + "last_activity_at": [ + 5243 + ], + "last_status_at": [ + 5243 + ], + "match_id": [ + 6672 + ], + "match_map_demo_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "status": [ + 85 + ], + "status_history": [ + 2439 + ], + "stream_url": [ + 85 + ], + "watcher_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "match_demo_sessions_sum_fields": { + "watcher_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "match_demo_sessions_sum_order_by": { + "watcher_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_demo_sessions_update_column": {}, + "match_demo_sessions_updates": { + "_append": [ + 3001 + ], + "_delete_at_path": [ + 3007 + ], + "_delete_elem": [ + 3008 + ], + "_delete_key": [ + 3009 + ], + "_inc": [ + 3010 + ], + "_prepend": [ + 3020 + ], + "_set": [ + 3022 + ], + "where": [ + 3005 + ], + "__typename": [ + 85 + ] + }, + "match_demo_sessions_var_pop_fields": { + "watcher_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_demo_sessions_var_pop_order_by": { + "watcher_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_demo_sessions_var_samp_fields": { + "watcher_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_demo_sessions_var_samp_order_by": { + "watcher_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_demo_sessions_variance_fields": { + "watcher_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_demo_sessions_variance_order_by": { + "watcher_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_lineup_players": { + "captain": [ + 6 + ], + "checked_in": [ + 6 + ], + "discord_id": [ + 85 + ], + "id": [ + 6672 + ], + "is_connected": [ + 6 + ], + "lineup": [ + 3086 + ], + "match_lineup_id": [ + 6672 + ], + "party_id": [ + 6672 + ], + "party_source": [ + 1184 + ], + "placeholder_name": [ + 85 + ], + "player": [ + 4606 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "match_lineup_players_aggregate": { + "aggregate": [ + 3047 + ], + "nodes": [ + 3041 + ], + "__typename": [ + 85 + ] + }, + "match_lineup_players_aggregate_bool_exp": { + "bool_and": [ + 3044 + ], + "bool_or": [ + 3045 + ], + "count": [ + 3046 + ], + "__typename": [ + 85 + ] + }, + "match_lineup_players_aggregate_bool_exp_bool_and": { + "arguments": [ + 3065 + ], + "distinct": [ + 6 + ], + "filter": [ + 3052 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "match_lineup_players_aggregate_bool_exp_bool_or": { + "arguments": [ + 3066 + ], + "distinct": [ + 6 + ], + "filter": [ + 3052 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "match_lineup_players_aggregate_bool_exp_count": { + "arguments": [ + 3064 + ], + "distinct": [ + 6 + ], + "filter": [ + 3052 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "match_lineup_players_aggregate_fields": { + "avg": [ + 3050 + ], + "count": [ + 41, + { + "columns": [ + 3064, + "[match_lineup_players_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 3056 + ], + "min": [ + 3058 + ], + "stddev": [ + 3068 + ], + "stddev_pop": [ + 3070 + ], + "stddev_samp": [ + 3072 + ], + "sum": [ + 3076 + ], + "var_pop": [ + 3080 + ], + "var_samp": [ + 3082 + ], + "variance": [ + 3084 + ], + "__typename": [ + 85 + ] + }, + "match_lineup_players_aggregate_order_by": { + "avg": [ + 3051 + ], + "count": [ + 3648 + ], + "max": [ + 3057 + ], + "min": [ + 3059 + ], + "stddev": [ + 3069 + ], + "stddev_pop": [ + 3071 + ], + "stddev_samp": [ + 3073 + ], + "sum": [ + 3077 + ], + "var_pop": [ + 3081 + ], + "var_samp": [ + 3083 + ], + "variance": [ + 3085 + ], + "__typename": [ + 85 + ] + }, + "match_lineup_players_arr_rel_insert_input": { + "data": [ + 3055 + ], + "on_conflict": [ + 3061 + ], + "__typename": [ + 85 + ] + }, + "match_lineup_players_avg_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_lineup_players_avg_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_lineup_players_bool_exp": { + "_and": [ + 3052 + ], + "_not": [ + 3052 + ], + "_or": [ + 3052 + ], + "captain": [ + 7 + ], + "checked_in": [ + 7 + ], + "discord_id": [ + 87 + ], + "id": [ + 6674 + ], + "is_connected": [ + 7 + ], + "lineup": [ + 3095 + ], + "match_lineup_id": [ + 6674 + ], + "party_id": [ + 6674 + ], + "party_source": [ + 1185 + ], + "placeholder_name": [ + 87 + ], + "player": [ + 4610 + ], + "steam_id": [ + 314 + ], + "__typename": [ + 85 + ] + }, + "match_lineup_players_constraint": {}, + "match_lineup_players_inc_input": { + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "match_lineup_players_insert_input": { + "captain": [ + 6 + ], + "checked_in": [ + 6 + ], + "discord_id": [ + 85 + ], + "id": [ + 6672 + ], + "is_connected": [ + 6 + ], + "lineup": [ + 3104 + ], + "match_lineup_id": [ + 6672 + ], + "party_id": [ + 6672 + ], + "party_source": [ + 1184 + ], + "placeholder_name": [ + 85 + ], + "player": [ + 4617 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "match_lineup_players_max_fields": { + "discord_id": [ + 85 + ], + "id": [ + 6672 + ], + "match_lineup_id": [ + 6672 + ], + "party_id": [ + 6672 + ], + "placeholder_name": [ + 85 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "match_lineup_players_max_order_by": { + "discord_id": [ + 3648 + ], + "id": [ + 3648 + ], + "match_lineup_id": [ + 3648 + ], + "party_id": [ + 3648 + ], + "placeholder_name": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_lineup_players_min_fields": { + "discord_id": [ + 85 + ], + "id": [ + 6672 + ], + "match_lineup_id": [ + 6672 + ], + "party_id": [ + 6672 + ], + "placeholder_name": [ + 85 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "match_lineup_players_min_order_by": { + "discord_id": [ + 3648 + ], + "id": [ + 3648 + ], + "match_lineup_id": [ + 3648 + ], + "party_id": [ + 3648 + ], + "placeholder_name": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_lineup_players_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 3041 + ], + "__typename": [ + 85 + ] + }, + "match_lineup_players_on_conflict": { + "constraint": [ + 3053 + ], + "update_columns": [ + 3078 + ], + "where": [ + 3052 + ], + "__typename": [ + 85 + ] + }, + "match_lineup_players_order_by": { + "captain": [ + 3648 + ], + "checked_in": [ + 3648 + ], + "discord_id": [ + 3648 + ], + "id": [ + 3648 + ], + "is_connected": [ + 3648 + ], + "lineup": [ + 3106 + ], + "match_lineup_id": [ + 3648 + ], + "party_id": [ + 3648 + ], + "party_source": [ + 3648 + ], + "placeholder_name": [ + 3648 + ], + "player": [ + 4619 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_lineup_players_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "match_lineup_players_select_column": {}, + "match_lineup_players_select_column_match_lineup_players_aggregate_bool_exp_bool_and_arguments_columns": {}, + "match_lineup_players_select_column_match_lineup_players_aggregate_bool_exp_bool_or_arguments_columns": {}, + "match_lineup_players_set_input": { + "captain": [ + 6 + ], + "checked_in": [ + 6 + ], + "discord_id": [ + 85 + ], + "id": [ + 6672 + ], + "is_connected": [ + 6 + ], + "match_lineup_id": [ + 6672 + ], + "party_id": [ + 6672 + ], + "party_source": [ + 1184 + ], + "placeholder_name": [ + 85 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "match_lineup_players_stddev_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_lineup_players_stddev_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_lineup_players_stddev_pop_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_lineup_players_stddev_pop_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_lineup_players_stddev_samp_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_lineup_players_stddev_samp_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_lineup_players_stream_cursor_input": { + "initial_value": [ + 3075 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "match_lineup_players_stream_cursor_value_input": { + "captain": [ + 6 + ], + "checked_in": [ + 6 + ], + "discord_id": [ + 85 + ], + "id": [ + 6672 + ], + "is_connected": [ + 6 + ], + "match_lineup_id": [ + 6672 + ], + "party_id": [ + 6672 + ], + "party_source": [ + 1184 + ], + "placeholder_name": [ + 85 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "match_lineup_players_sum_fields": { + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "match_lineup_players_sum_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_lineup_players_update_column": {}, + "match_lineup_players_updates": { + "_inc": [ + 3054 + ], + "_set": [ + 3067 + ], + "where": [ + 3052 + ], + "__typename": [ + 85 + ] + }, + "match_lineup_players_var_pop_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_lineup_players_var_pop_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_lineup_players_var_samp_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_lineup_players_var_samp_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_lineup_players_variance_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_lineup_players_variance_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_lineups": { + "can_pick_map_veto": [ + 6 + ], + "can_pick_region_veto": [ + 6 + ], + "can_update_lineup": [ + 6 + ], + "captain": [ + 6828 + ], + "coach": [ + 4606 + ], + "coach_steam_id": [ + 312 + ], + "id": [ + 6672 + ], + "is_on_lineup": [ + 6 + ], + "is_picking_map_veto": [ + 6 + ], + "is_picking_region_veto": [ + 6 + ], + "is_ready": [ + 6 + ], + "lineup_players": [ + 3041, + { + "distinct_on": [ + 3064, + "[match_lineup_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3062, + "[match_lineup_players_order_by!]" + ], + "where": [ + 3052 + ] + } + ], + "lineup_players_aggregate": [ + 3042, + { + "distinct_on": [ + 3064, + "[match_lineup_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3062, + "[match_lineup_players_order_by!]" + ], + "where": [ + 3052 + ] + } + ], + "match": [ + 3432 + ], + "match_id": [ + 6672 + ], + "match_veto_picks": [ + 3220, + { + "distinct_on": [ + 3240, + "[match_map_veto_picks_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3238, + "[match_map_veto_picks_order_by!]" + ], + "where": [ + 3229 + ] + } + ], + "match_veto_picks_aggregate": [ + 3221, + { + "distinct_on": [ + 3240, + "[match_map_veto_picks_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3238, + "[match_map_veto_picks_order_by!]" + ], + "where": [ + 3229 + ] + } + ], + "name": [ + 85 + ], + "team": [ + 5194 + ], + "team_id": [ + 6672 + ], + "team_name": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "match_lineups_aggregate": { + "aggregate": [ + 3090 + ], + "nodes": [ + 3086 + ], + "__typename": [ + 85 + ] + }, + "match_lineups_aggregate_bool_exp": { + "count": [ + 3089 + ], + "__typename": [ + 85 + ] + }, + "match_lineups_aggregate_bool_exp_count": { + "arguments": [ + 3108 + ], + "distinct": [ + 6 + ], + "filter": [ + 3095 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "match_lineups_aggregate_fields": { + "avg": [ + 3093 + ], + "count": [ + 41, + { + "columns": [ + 3108, + "[match_lineups_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 3099 + ], + "min": [ + 3101 + ], + "stddev": [ + 3110 + ], + "stddev_pop": [ + 3112 + ], + "stddev_samp": [ + 3114 + ], + "sum": [ + 3118 + ], + "var_pop": [ + 3122 + ], + "var_samp": [ + 3124 + ], + "variance": [ + 3126 + ], + "__typename": [ + 85 + ] + }, + "match_lineups_aggregate_order_by": { + "avg": [ + 3094 + ], + "count": [ + 3648 + ], + "max": [ + 3100 + ], + "min": [ + 3102 + ], + "stddev": [ + 3111 + ], + "stddev_pop": [ + 3113 + ], + "stddev_samp": [ + 3115 + ], + "sum": [ + 3119 + ], + "var_pop": [ + 3123 + ], + "var_samp": [ + 3125 + ], + "variance": [ + 3127 + ], + "__typename": [ + 85 + ] + }, + "match_lineups_arr_rel_insert_input": { + "data": [ + 3098 + ], + "on_conflict": [ + 3105 + ], + "__typename": [ + 85 + ] + }, + "match_lineups_avg_fields": { + "coach_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_lineups_avg_order_by": { + "coach_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_lineups_bool_exp": { + "_and": [ + 3095 + ], + "_not": [ + 3095 + ], + "_or": [ + 3095 + ], + "can_pick_map_veto": [ + 7 + ], + "can_pick_region_veto": [ + 7 + ], + "can_update_lineup": [ + 7 + ], + "captain": [ + 6832 + ], + "coach": [ + 4610 + ], + "coach_steam_id": [ + 314 + ], + "id": [ + 6674 + ], + "is_on_lineup": [ + 7 + ], + "is_picking_map_veto": [ + 7 + ], + "is_picking_region_veto": [ + 7 + ], + "is_ready": [ + 7 + ], + "lineup_players": [ + 3052 + ], + "lineup_players_aggregate": [ + 3043 + ], + "match": [ + 3443 + ], + "match_id": [ + 6674 + ], + "match_veto_picks": [ + 3229 + ], + "match_veto_picks_aggregate": [ + 3222 + ], + "name": [ + 87 + ], + "team": [ + 5205 + ], + "team_id": [ + 6674 + ], + "team_name": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "match_lineups_constraint": {}, + "match_lineups_inc_input": { + "coach_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "match_lineups_insert_input": { + "captain": [ + 6838 + ], + "coach": [ + 4617 + ], + "coach_steam_id": [ + 312 + ], + "id": [ + 6672 + ], + "lineup_players": [ + 3049 + ], + "match": [ + 3452 + ], + "match_id": [ + 6672 + ], + "match_veto_picks": [ + 3228 + ], + "team": [ + 5214 + ], + "team_id": [ + 6672 + ], + "team_name": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "match_lineups_max_fields": { + "coach_steam_id": [ + 312 + ], + "id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "name": [ + 85 + ], + "team_id": [ + 6672 + ], + "team_name": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "match_lineups_max_order_by": { + "coach_steam_id": [ + 3648 + ], + "id": [ + 3648 + ], + "match_id": [ + 3648 + ], + "team_id": [ + 3648 + ], + "team_name": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_lineups_min_fields": { + "coach_steam_id": [ + 312 + ], + "id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "name": [ + 85 + ], + "team_id": [ + 6672 + ], + "team_name": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "match_lineups_min_order_by": { + "coach_steam_id": [ + 3648 + ], + "id": [ + 3648 + ], + "match_id": [ + 3648 + ], + "team_id": [ + 3648 + ], + "team_name": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_lineups_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 3086 + ], + "__typename": [ + 85 + ] + }, + "match_lineups_obj_rel_insert_input": { + "data": [ + 3098 + ], + "on_conflict": [ + 3105 + ], + "__typename": [ + 85 + ] + }, + "match_lineups_on_conflict": { + "constraint": [ + 3096 + ], + "update_columns": [ + 3120 + ], + "where": [ + 3095 + ], + "__typename": [ + 85 + ] + }, + "match_lineups_order_by": { + "can_pick_map_veto": [ + 3648 + ], + "can_pick_region_veto": [ + 3648 + ], + "can_update_lineup": [ + 3648 + ], + "captain": [ + 6839 + ], + "coach": [ + 4619 + ], + "coach_steam_id": [ + 3648 + ], + "id": [ + 3648 + ], + "is_on_lineup": [ + 3648 + ], + "is_picking_map_veto": [ + 3648 + ], + "is_picking_region_veto": [ + 3648 + ], + "is_ready": [ + 3648 + ], + "lineup_players_aggregate": [ + 3048 + ], + "match": [ + 3454 + ], + "match_id": [ + 3648 + ], + "match_veto_picks_aggregate": [ + 3227 + ], + "name": [ + 3648 + ], + "team": [ + 5216 + ], + "team_id": [ + 3648 + ], + "team_name": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_lineups_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "match_lineups_select_column": {}, + "match_lineups_set_input": { + "coach_steam_id": [ + 312 + ], + "id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "team_id": [ + 6672 + ], + "team_name": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "match_lineups_stddev_fields": { + "coach_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_lineups_stddev_order_by": { + "coach_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_lineups_stddev_pop_fields": { + "coach_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_lineups_stddev_pop_order_by": { + "coach_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_lineups_stddev_samp_fields": { + "coach_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_lineups_stddev_samp_order_by": { + "coach_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_lineups_stream_cursor_input": { + "initial_value": [ + 3117 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "match_lineups_stream_cursor_value_input": { + "coach_steam_id": [ + 312 + ], + "id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "team_id": [ + 6672 + ], + "team_name": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "match_lineups_sum_fields": { + "coach_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "match_lineups_sum_order_by": { + "coach_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_lineups_update_column": {}, + "match_lineups_updates": { + "_inc": [ + 3097 + ], + "_set": [ + 3109 + ], + "where": [ + 3095 + ], + "__typename": [ + 85 + ] + }, + "match_lineups_var_pop_fields": { + "coach_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_lineups_var_pop_order_by": { + "coach_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_lineups_var_samp_fields": { + "coach_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_lineups_var_samp_order_by": { + "coach_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_lineups_variance_fields": { + "coach_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_lineups_variance_order_by": { + "coach_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos": { + "bombs": [ + 2439, + { + "path": [ + 85 + ] + } + ], + "clip_render_jobs": [ + 344, + { + "distinct_on": [ + 372, + "[clip_render_jobs_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 369, + "[clip_render_jobs_order_by!]" + ], + "where": [ + 356 + ] + } + ], + "clip_render_jobs_aggregate": [ + 345, + { + "distinct_on": [ + 372, + "[clip_render_jobs_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 369, + "[clip_render_jobs_order_by!]" + ], + "where": [ + 356 + ] + } + ], + "created_at": [ + 5243 + ], + "cs2_build": [ + 85 + ], + "demo_sessions": [ + 2995, + { + "distinct_on": [ + 3021, + "[match_demo_sessions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3018, + "[match_demo_sessions_order_by!]" + ], + "where": [ + 3005 + ] + } + ], + "demo_sessions_aggregate": [ + 2996, + { + "distinct_on": [ + 3021, + "[match_demo_sessions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3018, + "[match_demo_sessions_order_by!]" + ], + "where": [ + 3005 + ] + } + ], + "download_url": [ + 85 + ], + "duration_seconds": [ + 32 + ], + "file": [ + 85 + ], + "geometry_validated": [ + 6 + ], + "id": [ + 6672 + ], + "kills": [ + 2439, + { + "path": [ + 85 + ] + } + ], + "map_name": [ + 85 + ], + "match": [ + 3432 + ], + "match_clips": [ + 2953, + { + "distinct_on": [ + 2975, + "[match_clips_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2973, + "[match_clips_order_by!]" + ], + "where": [ + 2962 + ] + } + ], + "match_clips_aggregate": [ + 2954, + { + "distinct_on": [ + 2975, + "[match_clips_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2973, + "[match_clips_order_by!]" + ], + "where": [ + 2962 + ] + } + ], + "match_id": [ + 6672 + ], + "match_map": [ + 3248 + ], + "match_map_id": [ + 6672 + ], + "metadata_parsed_at": [ + 5243 + ], + "parser_version": [ + 41 + ], + "playback_file": [ + 85 + ], + "playback_size": [ + 41 + ], + "playback_url": [ + 85 + ], + "playback_version": [ + 41 + ], + "players": [ + 2439, + { + "path": [ + 85 + ] + } + ], + "round_ticks": [ + 2439, + { + "path": [ + 85 + ] + } + ], + "size": [ + 41 + ], + "tick_rate": [ + 32 + ], + "total_ticks": [ + 41 + ], + "workshop_id": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_aggregate": { + "aggregate": [ + 3134 + ], + "nodes": [ + 3128 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_aggregate_bool_exp": { + "bool_and": [ + 3131 + ], + "bool_or": [ + 3132 + ], + "count": [ + 3133 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_aggregate_bool_exp_bool_and": { + "arguments": [ + 3158 + ], + "distinct": [ + 6 + ], + "filter": [ + 3140 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_aggregate_bool_exp_bool_or": { + "arguments": [ + 3159 + ], + "distinct": [ + 6 + ], + "filter": [ + 3140 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_aggregate_bool_exp_count": { + "arguments": [ + 3157 + ], + "distinct": [ + 6 + ], + "filter": [ + 3140 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_aggregate_fields": { + "avg": [ + 3138 + ], + "count": [ + 41, + { + "columns": [ + 3157, + "[match_map_demos_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 3147 + ], + "min": [ + 3149 + ], + "stddev": [ + 3161 + ], + "stddev_pop": [ + 3163 + ], + "stddev_samp": [ + 3165 + ], + "sum": [ + 3169 + ], + "var_pop": [ + 3173 + ], + "var_samp": [ + 3175 + ], + "variance": [ + 3177 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_aggregate_order_by": { + "avg": [ + 3139 + ], + "count": [ + 3648 + ], + "max": [ + 3148 + ], + "min": [ + 3150 + ], + "stddev": [ + 3162 + ], + "stddev_pop": [ + 3164 + ], + "stddev_samp": [ + 3166 + ], + "sum": [ + 3170 + ], + "var_pop": [ + 3174 + ], + "var_samp": [ + 3176 + ], + "variance": [ + 3178 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_append_input": { + "bombs": [ + 2439 + ], + "kills": [ + 2439 + ], + "players": [ + 2439 + ], + "round_ticks": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_arr_rel_insert_input": { + "data": [ + 3146 + ], + "on_conflict": [ + 3153 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_avg_fields": { + "duration_seconds": [ + 32 + ], + "parser_version": [ + 32 + ], + "playback_size": [ + 32 + ], + "playback_version": [ + 32 + ], + "size": [ + 32 + ], + "tick_rate": [ + 32 + ], + "total_ticks": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_avg_order_by": { + "duration_seconds": [ + 3648 + ], + "parser_version": [ + 3648 + ], + "playback_size": [ + 3648 + ], + "playback_version": [ + 3648 + ], + "size": [ + 3648 + ], + "tick_rate": [ + 3648 + ], + "total_ticks": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_bool_exp": { + "_and": [ + 3140 + ], + "_not": [ + 3140 + ], + "_or": [ + 3140 + ], + "bombs": [ + 2441 + ], + "clip_render_jobs": [ + 356 + ], + "clip_render_jobs_aggregate": [ + 346 + ], + "created_at": [ + 5244 + ], + "cs2_build": [ + 87 + ], + "demo_sessions": [ + 3005 + ], + "demo_sessions_aggregate": [ + 2997 + ], + "download_url": [ + 87 + ], + "duration_seconds": [ + 33 + ], + "file": [ + 87 + ], + "geometry_validated": [ + 7 + ], + "id": [ + 6674 + ], + "kills": [ + 2441 + ], + "map_name": [ + 87 + ], + "match": [ + 3443 + ], + "match_clips": [ + 2962 + ], + "match_clips_aggregate": [ + 2955 + ], + "match_id": [ + 6674 + ], + "match_map": [ + 3257 + ], + "match_map_id": [ + 6674 + ], + "metadata_parsed_at": [ + 5244 + ], + "parser_version": [ + 42 + ], + "playback_file": [ + 87 + ], + "playback_size": [ + 42 + ], + "playback_url": [ + 87 + ], + "playback_version": [ + 42 + ], + "players": [ + 2441 + ], + "round_ticks": [ + 2441 + ], + "size": [ + 42 + ], + "tick_rate": [ + 33 + ], + "total_ticks": [ + 42 + ], + "workshop_id": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_constraint": {}, + "match_map_demos_delete_at_path_input": { + "bombs": [ + 85 + ], + "kills": [ + 85 + ], + "players": [ + 85 + ], + "round_ticks": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_delete_elem_input": { + "bombs": [ + 41 + ], + "kills": [ + 41 + ], + "players": [ + 41 + ], + "round_ticks": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_delete_key_input": { + "bombs": [ + 85 + ], + "kills": [ + 85 + ], + "players": [ + 85 + ], + "round_ticks": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_inc_input": { + "parser_version": [ + 41 + ], + "playback_size": [ + 41 + ], + "playback_version": [ + 41 + ], + "size": [ + 41 + ], + "tick_rate": [ + 32 + ], + "total_ticks": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_insert_input": { + "bombs": [ + 2439 + ], + "clip_render_jobs": [ + 353 + ], + "created_at": [ + 5243 + ], + "cs2_build": [ + 85 + ], + "demo_sessions": [ + 3002 + ], + "file": [ + 85 + ], + "geometry_validated": [ + 6 + ], + "id": [ + 6672 + ], + "kills": [ + 2439 + ], + "map_name": [ + 85 + ], + "match": [ + 3452 + ], + "match_clips": [ + 2959 + ], + "match_id": [ + 6672 + ], + "match_map": [ + 3266 + ], + "match_map_id": [ + 6672 + ], + "metadata_parsed_at": [ + 5243 + ], + "parser_version": [ + 41 + ], + "playback_file": [ + 85 + ], + "playback_size": [ + 41 + ], + "playback_version": [ + 41 + ], + "players": [ + 2439 + ], + "round_ticks": [ + 2439 + ], + "size": [ + 41 + ], + "tick_rate": [ + 32 + ], + "total_ticks": [ + 41 + ], + "workshop_id": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_max_fields": { + "created_at": [ + 5243 + ], + "cs2_build": [ + 85 + ], + "download_url": [ + 85 + ], + "duration_seconds": [ + 32 + ], + "file": [ + 85 + ], + "id": [ + 6672 + ], + "map_name": [ + 85 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "metadata_parsed_at": [ + 5243 + ], + "parser_version": [ + 41 + ], + "playback_file": [ + 85 + ], + "playback_size": [ + 41 + ], + "playback_url": [ + 85 + ], + "playback_version": [ + 41 + ], + "size": [ + 41 + ], + "tick_rate": [ + 32 + ], + "total_ticks": [ + 41 + ], + "workshop_id": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_max_order_by": { + "created_at": [ + 3648 + ], + "cs2_build": [ + 3648 + ], + "duration_seconds": [ + 3648 + ], + "file": [ + 3648 + ], + "id": [ + 3648 + ], + "map_name": [ + 3648 + ], + "match_id": [ + 3648 + ], + "match_map_id": [ + 3648 + ], + "metadata_parsed_at": [ + 3648 + ], + "parser_version": [ + 3648 + ], + "playback_file": [ + 3648 + ], + "playback_size": [ + 3648 + ], + "playback_version": [ + 3648 + ], + "size": [ + 3648 + ], + "tick_rate": [ + 3648 + ], + "total_ticks": [ + 3648 + ], + "workshop_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_min_fields": { + "created_at": [ + 5243 + ], + "cs2_build": [ + 85 + ], + "download_url": [ + 85 + ], + "duration_seconds": [ + 32 + ], + "file": [ + 85 + ], + "id": [ + 6672 + ], + "map_name": [ + 85 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "metadata_parsed_at": [ + 5243 + ], + "parser_version": [ + 41 + ], + "playback_file": [ + 85 + ], + "playback_size": [ + 41 + ], + "playback_url": [ + 85 + ], + "playback_version": [ + 41 + ], + "size": [ + 41 + ], + "tick_rate": [ + 32 + ], + "total_ticks": [ + 41 + ], + "workshop_id": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_min_order_by": { + "created_at": [ + 3648 + ], + "cs2_build": [ + 3648 + ], + "duration_seconds": [ + 3648 + ], + "file": [ + 3648 + ], + "id": [ + 3648 + ], + "map_name": [ + 3648 + ], + "match_id": [ + 3648 + ], + "match_map_id": [ + 3648 + ], + "metadata_parsed_at": [ + 3648 + ], + "parser_version": [ + 3648 + ], + "playback_file": [ + 3648 + ], + "playback_size": [ + 3648 + ], + "playback_version": [ + 3648 + ], + "size": [ + 3648 + ], + "tick_rate": [ + 3648 + ], + "total_ticks": [ + 3648 + ], + "workshop_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 3128 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_obj_rel_insert_input": { + "data": [ + 3146 + ], + "on_conflict": [ + 3153 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_on_conflict": { + "constraint": [ + 3141 + ], + "update_columns": [ + 3171 + ], + "where": [ + 3140 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_order_by": { + "bombs": [ + 3648 + ], + "clip_render_jobs_aggregate": [ + 351 + ], + "created_at": [ + 3648 + ], + "cs2_build": [ + 3648 + ], + "demo_sessions_aggregate": [ + 3000 + ], + "download_url": [ + 3648 + ], + "duration_seconds": [ + 3648 + ], + "file": [ + 3648 + ], + "geometry_validated": [ + 3648 + ], + "id": [ + 3648 + ], + "kills": [ + 3648 + ], + "map_name": [ + 3648 + ], + "match": [ + 3454 + ], + "match_clips_aggregate": [ + 2958 + ], + "match_id": [ + 3648 + ], + "match_map": [ + 3268 + ], + "match_map_id": [ + 3648 + ], + "metadata_parsed_at": [ + 3648 + ], + "parser_version": [ + 3648 + ], + "playback_file": [ + 3648 + ], + "playback_size": [ + 3648 + ], + "playback_url": [ + 3648 + ], + "playback_version": [ + 3648 + ], + "players": [ + 3648 + ], + "round_ticks": [ + 3648 + ], + "size": [ + 3648 + ], + "tick_rate": [ + 3648 + ], + "total_ticks": [ + 3648 + ], + "workshop_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_prepend_input": { + "bombs": [ + 2439 + ], + "kills": [ + 2439 + ], + "players": [ + 2439 + ], + "round_ticks": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_select_column": {}, + "match_map_demos_select_column_match_map_demos_aggregate_bool_exp_bool_and_arguments_columns": {}, + "match_map_demos_select_column_match_map_demos_aggregate_bool_exp_bool_or_arguments_columns": {}, + "match_map_demos_set_input": { + "bombs": [ + 2439 + ], + "created_at": [ + 5243 + ], + "cs2_build": [ + 85 + ], + "file": [ + 85 + ], + "geometry_validated": [ + 6 + ], + "id": [ + 6672 + ], + "kills": [ + 2439 + ], + "map_name": [ + 85 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "metadata_parsed_at": [ + 5243 + ], + "parser_version": [ + 41 + ], + "playback_file": [ + 85 + ], + "playback_size": [ + 41 + ], + "playback_version": [ + 41 + ], + "players": [ + 2439 + ], + "round_ticks": [ + 2439 + ], + "size": [ + 41 + ], + "tick_rate": [ + 32 + ], + "total_ticks": [ + 41 + ], + "workshop_id": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_stddev_fields": { + "duration_seconds": [ + 32 + ], + "parser_version": [ + 32 + ], + "playback_size": [ + 32 + ], + "playback_version": [ + 32 + ], + "size": [ + 32 + ], + "tick_rate": [ + 32 + ], + "total_ticks": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_stddev_order_by": { + "duration_seconds": [ + 3648 + ], + "parser_version": [ + 3648 + ], + "playback_size": [ + 3648 + ], + "playback_version": [ + 3648 + ], + "size": [ + 3648 + ], + "tick_rate": [ + 3648 + ], + "total_ticks": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_stddev_pop_fields": { + "duration_seconds": [ + 32 + ], + "parser_version": [ + 32 + ], + "playback_size": [ + 32 + ], + "playback_version": [ + 32 + ], + "size": [ + 32 + ], + "tick_rate": [ + 32 + ], + "total_ticks": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_stddev_pop_order_by": { + "duration_seconds": [ + 3648 + ], + "parser_version": [ + 3648 + ], + "playback_size": [ + 3648 + ], + "playback_version": [ + 3648 + ], + "size": [ + 3648 + ], + "tick_rate": [ + 3648 + ], + "total_ticks": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_stddev_samp_fields": { + "duration_seconds": [ + 32 + ], + "parser_version": [ + 32 + ], + "playback_size": [ + 32 + ], + "playback_version": [ + 32 + ], + "size": [ + 32 + ], + "tick_rate": [ + 32 + ], + "total_ticks": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_stddev_samp_order_by": { + "duration_seconds": [ + 3648 + ], + "parser_version": [ + 3648 + ], + "playback_size": [ + 3648 + ], + "playback_version": [ + 3648 + ], + "size": [ + 3648 + ], + "tick_rate": [ + 3648 + ], + "total_ticks": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_stream_cursor_input": { + "initial_value": [ + 3168 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_stream_cursor_value_input": { + "bombs": [ + 2439 + ], + "created_at": [ + 5243 + ], + "cs2_build": [ + 85 + ], + "duration_seconds": [ + 32 + ], + "file": [ + 85 + ], + "geometry_validated": [ + 6 + ], + "id": [ + 6672 + ], + "kills": [ + 2439 + ], + "map_name": [ + 85 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "metadata_parsed_at": [ + 5243 + ], + "parser_version": [ + 41 + ], + "playback_file": [ + 85 + ], + "playback_size": [ + 41 + ], + "playback_version": [ + 41 + ], + "players": [ + 2439 + ], + "round_ticks": [ + 2439 + ], + "size": [ + 41 + ], + "tick_rate": [ + 32 + ], + "total_ticks": [ + 41 + ], + "workshop_id": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_sum_fields": { + "duration_seconds": [ + 32 + ], + "parser_version": [ + 41 + ], + "playback_size": [ + 41 + ], + "playback_version": [ + 41 + ], + "size": [ + 41 + ], + "tick_rate": [ + 32 + ], + "total_ticks": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_sum_order_by": { + "duration_seconds": [ + 3648 + ], + "parser_version": [ + 3648 + ], + "playback_size": [ + 3648 + ], + "playback_version": [ + 3648 + ], + "size": [ + 3648 + ], + "tick_rate": [ + 3648 + ], + "total_ticks": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_update_column": {}, + "match_map_demos_updates": { + "_append": [ + 3136 + ], + "_delete_at_path": [ + 3142 + ], + "_delete_elem": [ + 3143 + ], + "_delete_key": [ + 3144 + ], + "_inc": [ + 3145 + ], + "_prepend": [ + 3156 + ], + "_set": [ + 3160 + ], + "where": [ + 3140 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_var_pop_fields": { + "duration_seconds": [ + 32 + ], + "parser_version": [ + 32 + ], + "playback_size": [ + 32 + ], + "playback_version": [ + 32 + ], + "size": [ + 32 + ], + "tick_rate": [ + 32 + ], + "total_ticks": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_var_pop_order_by": { + "duration_seconds": [ + 3648 + ], + "parser_version": [ + 3648 + ], + "playback_size": [ + 3648 + ], + "playback_version": [ + 3648 + ], + "size": [ + 3648 + ], + "tick_rate": [ + 3648 + ], + "total_ticks": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_var_samp_fields": { + "duration_seconds": [ + 32 + ], + "parser_version": [ + 32 + ], + "playback_size": [ + 32 + ], + "playback_version": [ + 32 + ], + "size": [ + 32 + ], + "tick_rate": [ + 32 + ], + "total_ticks": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_var_samp_order_by": { + "duration_seconds": [ + 3648 + ], + "parser_version": [ + 3648 + ], + "playback_size": [ + 3648 + ], + "playback_version": [ + 3648 + ], + "size": [ + 3648 + ], + "tick_rate": [ + 3648 + ], + "total_ticks": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_variance_fields": { + "duration_seconds": [ + 32 + ], + "parser_version": [ + 32 + ], + "playback_size": [ + 32 + ], + "playback_version": [ + 32 + ], + "size": [ + 32 + ], + "tick_rate": [ + 32 + ], + "total_ticks": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_map_demos_variance_order_by": { + "duration_seconds": [ + 3648 + ], + "parser_version": [ + 3648 + ], + "playback_size": [ + 3648 + ], + "playback_version": [ + 3648 + ], + "size": [ + 3648 + ], + "tick_rate": [ + 3648 + ], + "total_ticks": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_map_rounds": { + "assists": [ + 3786, + { + "distinct_on": [ + 3809, + "[player_assists_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3807, + "[player_assists_order_by!]" + ], + "where": [ + 3797 + ] + } + ], + "assists_aggregate": [ + 3787, + { + "distinct_on": [ + 3809, + "[player_assists_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3807, + "[player_assists_order_by!]" + ], + "where": [ + 3797 + ] + } + ], + "backup_file": [ + 85 + ], + "created_at": [ + 5243 + ], + "deleted_at": [ + 5243 + ], + "has_backup_file": [ + 6 + ], + "id": [ + 6672 + ], + "kills": [ + 4003, + { + "distinct_on": [ + 4067, + "[player_kills_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4065, + "[player_kills_order_by!]" + ], + "where": [ + 4014 + ] + } + ], + "kills_aggregate": [ + 4004, + { + "distinct_on": [ + 4067, + "[player_kills_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4065, + "[player_kills_order_by!]" + ], + "where": [ + 4014 + ] + } + ], + "lineup_1_money": [ + 41 + ], + "lineup_1_score": [ + 41 + ], + "lineup_1_side": [ + 1453 + ], + "lineup_1_timeouts_available": [ + 41 + ], + "lineup_2_money": [ + 41 + ], + "lineup_2_score": [ + 41 + ], + "lineup_2_side": [ + 1453 + ], + "lineup_2_timeouts_available": [ + 41 + ], + "match_map": [ + 3248 + ], + "match_map_id": [ + 6672 + ], + "round": [ + 41 + ], + "time": [ + 5243 + ], + "winning_reason": [ + 1819 + ], + "winning_side": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "match_map_rounds_aggregate": { + "aggregate": [ + 3183 + ], + "nodes": [ + 3179 + ], + "__typename": [ + 85 + ] + }, + "match_map_rounds_aggregate_bool_exp": { + "count": [ + 3182 + ], + "__typename": [ + 85 + ] + }, + "match_map_rounds_aggregate_bool_exp_count": { + "arguments": [ + 3200 + ], + "distinct": [ + 6 + ], + "filter": [ + 3188 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "match_map_rounds_aggregate_fields": { + "avg": [ + 3186 + ], + "count": [ + 41, + { + "columns": [ + 3200, + "[match_map_rounds_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 3192 + ], + "min": [ + 3194 + ], + "stddev": [ + 3202 + ], + "stddev_pop": [ + 3204 + ], + "stddev_samp": [ + 3206 + ], + "sum": [ + 3210 + ], + "var_pop": [ + 3214 + ], + "var_samp": [ + 3216 + ], + "variance": [ + 3218 + ], + "__typename": [ + 85 + ] + }, + "match_map_rounds_aggregate_order_by": { + "avg": [ + 3187 + ], + "count": [ + 3648 + ], + "max": [ + 3193 + ], + "min": [ + 3195 + ], + "stddev": [ + 3203 + ], + "stddev_pop": [ + 3205 + ], + "stddev_samp": [ + 3207 + ], + "sum": [ + 3211 + ], + "var_pop": [ + 3215 + ], + "var_samp": [ + 3217 + ], + "variance": [ + 3219 + ], + "__typename": [ + 85 + ] + }, + "match_map_rounds_arr_rel_insert_input": { + "data": [ + 3191 + ], + "on_conflict": [ + 3197 + ], + "__typename": [ + 85 + ] + }, + "match_map_rounds_avg_fields": { + "lineup_1_money": [ + 32 + ], + "lineup_1_score": [ + 32 + ], + "lineup_1_timeouts_available": [ + 32 + ], + "lineup_2_money": [ + 32 + ], + "lineup_2_score": [ + 32 + ], + "lineup_2_timeouts_available": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_map_rounds_avg_order_by": { + "lineup_1_money": [ + 3648 + ], + "lineup_1_score": [ + 3648 + ], + "lineup_1_timeouts_available": [ + 3648 + ], + "lineup_2_money": [ + 3648 + ], + "lineup_2_score": [ + 3648 + ], + "lineup_2_timeouts_available": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_map_rounds_bool_exp": { + "_and": [ + 3188 + ], + "_not": [ + 3188 + ], + "_or": [ + 3188 + ], + "assists": [ + 3797 + ], + "assists_aggregate": [ + 3788 + ], + "backup_file": [ + 87 + ], + "created_at": [ + 5244 + ], + "deleted_at": [ + 5244 + ], + "has_backup_file": [ + 7 + ], + "id": [ + 6674 + ], + "kills": [ + 4014 + ], + "kills_aggregate": [ + 4005 + ], + "lineup_1_money": [ + 42 + ], + "lineup_1_score": [ + 42 + ], + "lineup_1_side": [ + 1454 + ], + "lineup_1_timeouts_available": [ + 42 + ], + "lineup_2_money": [ + 42 + ], + "lineup_2_score": [ + 42 + ], + "lineup_2_side": [ + 1454 + ], + "lineup_2_timeouts_available": [ + 42 + ], + "match_map": [ + 3257 + ], + "match_map_id": [ + 6674 + ], + "round": [ + 42 + ], + "time": [ + 5244 + ], + "winning_reason": [ + 1820 + ], + "winning_side": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "match_map_rounds_constraint": {}, + "match_map_rounds_inc_input": { + "lineup_1_money": [ + 41 + ], + "lineup_1_score": [ + 41 + ], + "lineup_1_timeouts_available": [ + 41 + ], + "lineup_2_money": [ + 41 + ], + "lineup_2_score": [ + 41 + ], + "lineup_2_timeouts_available": [ + 41 + ], + "round": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "match_map_rounds_insert_input": { + "assists": [ + 3794 + ], + "backup_file": [ + 85 + ], + "created_at": [ + 5243 + ], + "deleted_at": [ + 5243 + ], + "id": [ + 6672 + ], + "kills": [ + 4011 + ], + "lineup_1_money": [ + 41 + ], + "lineup_1_score": [ + 41 + ], + "lineup_1_side": [ + 1453 + ], + "lineup_1_timeouts_available": [ + 41 + ], + "lineup_2_money": [ + 41 + ], + "lineup_2_score": [ + 41 + ], + "lineup_2_side": [ + 1453 + ], + "lineup_2_timeouts_available": [ + 41 + ], + "match_map": [ + 3266 + ], + "match_map_id": [ + 6672 + ], + "round": [ + 41 + ], + "time": [ + 5243 + ], + "winning_reason": [ + 1819 + ], + "winning_side": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "match_map_rounds_max_fields": { + "backup_file": [ + 85 + ], + "created_at": [ + 5243 + ], + "deleted_at": [ + 5243 + ], + "id": [ + 6672 + ], + "lineup_1_money": [ + 41 + ], + "lineup_1_score": [ + 41 + ], + "lineup_1_timeouts_available": [ + 41 + ], + "lineup_2_money": [ + 41 + ], + "lineup_2_score": [ + 41 + ], + "lineup_2_timeouts_available": [ + 41 + ], + "match_map_id": [ + 6672 + ], + "round": [ + 41 + ], + "time": [ + 5243 + ], + "winning_side": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "match_map_rounds_max_order_by": { + "backup_file": [ + 3648 + ], + "created_at": [ + 3648 + ], + "deleted_at": [ + 3648 + ], + "id": [ + 3648 + ], + "lineup_1_money": [ + 3648 + ], + "lineup_1_score": [ + 3648 + ], + "lineup_1_timeouts_available": [ + 3648 + ], + "lineup_2_money": [ + 3648 + ], + "lineup_2_score": [ + 3648 + ], + "lineup_2_timeouts_available": [ + 3648 + ], + "match_map_id": [ + 3648 + ], + "round": [ + 3648 + ], + "time": [ + 3648 + ], + "winning_side": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_map_rounds_min_fields": { + "backup_file": [ + 85 + ], + "created_at": [ + 5243 + ], + "deleted_at": [ + 5243 + ], + "id": [ + 6672 + ], + "lineup_1_money": [ + 41 + ], + "lineup_1_score": [ + 41 + ], + "lineup_1_timeouts_available": [ + 41 + ], + "lineup_2_money": [ + 41 + ], + "lineup_2_score": [ + 41 + ], + "lineup_2_timeouts_available": [ + 41 + ], + "match_map_id": [ + 6672 + ], + "round": [ + 41 + ], + "time": [ + 5243 + ], + "winning_side": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "match_map_rounds_min_order_by": { + "backup_file": [ + 3648 + ], + "created_at": [ + 3648 + ], + "deleted_at": [ + 3648 + ], + "id": [ + 3648 + ], + "lineup_1_money": [ + 3648 + ], + "lineup_1_score": [ + 3648 + ], + "lineup_1_timeouts_available": [ + 3648 + ], + "lineup_2_money": [ + 3648 + ], + "lineup_2_score": [ + 3648 + ], + "lineup_2_timeouts_available": [ + 3648 + ], + "match_map_id": [ + 3648 + ], + "round": [ + 3648 + ], + "time": [ + 3648 + ], + "winning_side": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_map_rounds_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 3179 + ], + "__typename": [ + 85 + ] + }, + "match_map_rounds_on_conflict": { + "constraint": [ + 3189 + ], + "update_columns": [ + 3212 + ], + "where": [ + 3188 + ], + "__typename": [ + 85 + ] + }, + "match_map_rounds_order_by": { + "assists_aggregate": [ + 3793 + ], + "backup_file": [ + 3648 + ], + "created_at": [ + 3648 + ], + "deleted_at": [ + 3648 + ], + "has_backup_file": [ + 3648 + ], + "id": [ + 3648 + ], + "kills_aggregate": [ + 4010 + ], + "lineup_1_money": [ + 3648 + ], + "lineup_1_score": [ + 3648 + ], + "lineup_1_side": [ + 3648 + ], + "lineup_1_timeouts_available": [ + 3648 + ], + "lineup_2_money": [ + 3648 + ], + "lineup_2_score": [ + 3648 + ], + "lineup_2_side": [ + 3648 + ], + "lineup_2_timeouts_available": [ + 3648 + ], + "match_map": [ + 3268 + ], + "match_map_id": [ + 3648 + ], + "round": [ + 3648 + ], + "time": [ + 3648 + ], + "winning_reason": [ + 3648 + ], + "winning_side": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_map_rounds_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "match_map_rounds_select_column": {}, + "match_map_rounds_set_input": { + "backup_file": [ + 85 + ], + "created_at": [ + 5243 + ], + "deleted_at": [ + 5243 + ], + "id": [ + 6672 + ], + "lineup_1_money": [ + 41 + ], + "lineup_1_score": [ + 41 + ], + "lineup_1_side": [ + 1453 + ], + "lineup_1_timeouts_available": [ + 41 + ], + "lineup_2_money": [ + 41 + ], + "lineup_2_score": [ + 41 + ], + "lineup_2_side": [ + 1453 + ], + "lineup_2_timeouts_available": [ + 41 + ], + "match_map_id": [ + 6672 + ], + "round": [ + 41 + ], + "time": [ + 5243 + ], + "winning_reason": [ + 1819 + ], + "winning_side": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "match_map_rounds_stddev_fields": { + "lineup_1_money": [ + 32 + ], + "lineup_1_score": [ + 32 + ], + "lineup_1_timeouts_available": [ + 32 + ], + "lineup_2_money": [ + 32 + ], + "lineup_2_score": [ + 32 + ], + "lineup_2_timeouts_available": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_map_rounds_stddev_order_by": { + "lineup_1_money": [ + 3648 + ], + "lineup_1_score": [ + 3648 + ], + "lineup_1_timeouts_available": [ + 3648 + ], + "lineup_2_money": [ + 3648 + ], + "lineup_2_score": [ + 3648 + ], + "lineup_2_timeouts_available": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_map_rounds_stddev_pop_fields": { + "lineup_1_money": [ + 32 + ], + "lineup_1_score": [ + 32 + ], + "lineup_1_timeouts_available": [ + 32 + ], + "lineup_2_money": [ + 32 + ], + "lineup_2_score": [ + 32 + ], + "lineup_2_timeouts_available": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_map_rounds_stddev_pop_order_by": { + "lineup_1_money": [ + 3648 + ], + "lineup_1_score": [ + 3648 + ], + "lineup_1_timeouts_available": [ + 3648 + ], + "lineup_2_money": [ + 3648 + ], + "lineup_2_score": [ + 3648 + ], + "lineup_2_timeouts_available": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_map_rounds_stddev_samp_fields": { + "lineup_1_money": [ + 32 + ], + "lineup_1_score": [ + 32 + ], + "lineup_1_timeouts_available": [ + 32 + ], + "lineup_2_money": [ + 32 + ], + "lineup_2_score": [ + 32 + ], + "lineup_2_timeouts_available": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_map_rounds_stddev_samp_order_by": { + "lineup_1_money": [ + 3648 + ], + "lineup_1_score": [ + 3648 + ], + "lineup_1_timeouts_available": [ + 3648 + ], + "lineup_2_money": [ + 3648 + ], + "lineup_2_score": [ + 3648 + ], + "lineup_2_timeouts_available": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_map_rounds_stream_cursor_input": { + "initial_value": [ + 3209 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "match_map_rounds_stream_cursor_value_input": { + "backup_file": [ + 85 + ], + "created_at": [ + 5243 + ], + "deleted_at": [ + 5243 + ], + "id": [ + 6672 + ], + "lineup_1_money": [ + 41 + ], + "lineup_1_score": [ + 41 + ], + "lineup_1_side": [ + 1453 + ], + "lineup_1_timeouts_available": [ + 41 + ], + "lineup_2_money": [ + 41 + ], + "lineup_2_score": [ + 41 + ], + "lineup_2_side": [ + 1453 + ], + "lineup_2_timeouts_available": [ + 41 + ], + "match_map_id": [ + 6672 + ], + "round": [ + 41 + ], + "time": [ + 5243 + ], + "winning_reason": [ + 1819 + ], + "winning_side": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "match_map_rounds_sum_fields": { + "lineup_1_money": [ + 41 + ], + "lineup_1_score": [ + 41 + ], + "lineup_1_timeouts_available": [ + 41 + ], + "lineup_2_money": [ + 41 + ], + "lineup_2_score": [ + 41 + ], + "lineup_2_timeouts_available": [ + 41 + ], + "round": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "match_map_rounds_sum_order_by": { + "lineup_1_money": [ + 3648 + ], + "lineup_1_score": [ + 3648 + ], + "lineup_1_timeouts_available": [ + 3648 + ], + "lineup_2_money": [ + 3648 + ], + "lineup_2_score": [ + 3648 + ], + "lineup_2_timeouts_available": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_map_rounds_update_column": {}, + "match_map_rounds_updates": { + "_inc": [ + 3190 + ], + "_set": [ + 3201 + ], + "where": [ + 3188 + ], + "__typename": [ + 85 + ] + }, + "match_map_rounds_var_pop_fields": { + "lineup_1_money": [ + 32 + ], + "lineup_1_score": [ + 32 + ], + "lineup_1_timeouts_available": [ + 32 + ], + "lineup_2_money": [ + 32 + ], + "lineup_2_score": [ + 32 + ], + "lineup_2_timeouts_available": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_map_rounds_var_pop_order_by": { + "lineup_1_money": [ + 3648 + ], + "lineup_1_score": [ + 3648 + ], + "lineup_1_timeouts_available": [ + 3648 + ], + "lineup_2_money": [ + 3648 + ], + "lineup_2_score": [ + 3648 + ], + "lineup_2_timeouts_available": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_map_rounds_var_samp_fields": { + "lineup_1_money": [ + 32 + ], + "lineup_1_score": [ + 32 + ], + "lineup_1_timeouts_available": [ + 32 + ], + "lineup_2_money": [ + 32 + ], + "lineup_2_score": [ + 32 + ], + "lineup_2_timeouts_available": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_map_rounds_var_samp_order_by": { + "lineup_1_money": [ + 3648 + ], + "lineup_1_score": [ + 3648 + ], + "lineup_1_timeouts_available": [ + 3648 + ], + "lineup_2_money": [ + 3648 + ], + "lineup_2_score": [ + 3648 + ], + "lineup_2_timeouts_available": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_map_rounds_variance_fields": { + "lineup_1_money": [ + 32 + ], + "lineup_1_score": [ + 32 + ], + "lineup_1_timeouts_available": [ + 32 + ], + "lineup_2_money": [ + 32 + ], + "lineup_2_score": [ + 32 + ], + "lineup_2_timeouts_available": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_map_rounds_variance_order_by": { + "lineup_1_money": [ + 3648 + ], + "lineup_1_score": [ + 3648 + ], + "lineup_1_timeouts_available": [ + 3648 + ], + "lineup_2_money": [ + 3648 + ], + "lineup_2_score": [ + 3648 + ], + "lineup_2_timeouts_available": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_map_veto_picks": { + "auto_picked": [ + 6 + ], + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "map": [ + 2924 + ], + "map_id": [ + 6672 + ], + "match": [ + 3432 + ], + "match_id": [ + 6672 + ], + "match_lineup": [ + 3086 + ], + "match_lineup_id": [ + 6672 + ], + "side": [ + 85 + ], + "type": [ + 1799 + ], + "__typename": [ + 85 + ] + }, + "match_map_veto_picks_aggregate": { + "aggregate": [ + 3226 + ], + "nodes": [ + 3220 + ], + "__typename": [ + 85 + ] + }, + "match_map_veto_picks_aggregate_bool_exp": { + "bool_and": [ + 3223 + ], + "bool_or": [ + 3224 + ], + "count": [ + 3225 + ], + "__typename": [ + 85 + ] + }, + "match_map_veto_picks_aggregate_bool_exp_bool_and": { + "arguments": [ + 3241 + ], + "distinct": [ + 6 + ], + "filter": [ + 3229 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "match_map_veto_picks_aggregate_bool_exp_bool_or": { + "arguments": [ + 3242 + ], + "distinct": [ + 6 + ], + "filter": [ + 3229 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "match_map_veto_picks_aggregate_bool_exp_count": { + "arguments": [ + 3240 + ], + "distinct": [ + 6 + ], + "filter": [ + 3229 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "match_map_veto_picks_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 3240, + "[match_map_veto_picks_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 3232 + ], + "min": [ + 3234 + ], + "__typename": [ + 85 + ] + }, + "match_map_veto_picks_aggregate_order_by": { + "count": [ + 3648 + ], + "max": [ + 3233 + ], + "min": [ + 3235 + ], + "__typename": [ + 85 + ] + }, + "match_map_veto_picks_arr_rel_insert_input": { + "data": [ + 3231 + ], + "on_conflict": [ + 3237 + ], + "__typename": [ + 85 + ] + }, + "match_map_veto_picks_bool_exp": { + "_and": [ + 3229 + ], + "_not": [ + 3229 + ], + "_or": [ + 3229 + ], + "auto_picked": [ + 7 + ], + "created_at": [ + 5244 + ], + "id": [ + 6674 + ], + "map": [ + 2933 + ], + "map_id": [ + 6674 + ], + "match": [ + 3443 + ], + "match_id": [ + 6674 + ], + "match_lineup": [ + 3095 + ], + "match_lineup_id": [ + 6674 + ], + "side": [ + 87 + ], + "type": [ + 1800 + ], + "__typename": [ + 85 + ] + }, + "match_map_veto_picks_constraint": {}, + "match_map_veto_picks_insert_input": { + "auto_picked": [ + 6 + ], + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "map": [ + 2941 + ], + "map_id": [ + 6672 + ], + "match": [ + 3452 + ], + "match_id": [ + 6672 + ], + "match_lineup": [ + 3104 + ], + "match_lineup_id": [ + 6672 + ], + "side": [ + 85 + ], + "type": [ + 1799 + ], + "__typename": [ + 85 + ] + }, + "match_map_veto_picks_max_fields": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "map_id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "match_lineup_id": [ + 6672 + ], + "side": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "match_map_veto_picks_max_order_by": { + "created_at": [ + 3648 + ], + "id": [ + 3648 + ], + "map_id": [ + 3648 + ], + "match_id": [ + 3648 + ], + "match_lineup_id": [ + 3648 + ], + "side": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_map_veto_picks_min_fields": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "map_id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "match_lineup_id": [ + 6672 + ], + "side": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "match_map_veto_picks_min_order_by": { + "created_at": [ + 3648 + ], + "id": [ + 3648 + ], + "map_id": [ + 3648 + ], + "match_id": [ + 3648 + ], + "match_lineup_id": [ + 3648 + ], + "side": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_map_veto_picks_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 3220 + ], + "__typename": [ + 85 + ] + }, + "match_map_veto_picks_on_conflict": { + "constraint": [ + 3230 + ], + "update_columns": [ + 3246 + ], + "where": [ + 3229 + ], + "__typename": [ + 85 + ] + }, + "match_map_veto_picks_order_by": { + "auto_picked": [ + 3648 + ], + "created_at": [ + 3648 + ], + "id": [ + 3648 + ], + "map": [ + 2943 + ], + "map_id": [ + 3648 + ], + "match": [ + 3454 + ], + "match_id": [ + 3648 + ], + "match_lineup": [ + 3106 + ], + "match_lineup_id": [ + 3648 + ], + "side": [ + 3648 + ], + "type": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_map_veto_picks_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "match_map_veto_picks_select_column": {}, + "match_map_veto_picks_select_column_match_map_veto_picks_aggregate_bool_exp_bool_and_arguments_columns": {}, + "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": [ + 6 + ], + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "map_id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "match_lineup_id": [ + 6672 + ], + "side": [ + 85 + ], + "type": [ + 1799 + ], + "__typename": [ + 85 + ] + }, + "match_map_veto_picks_stream_cursor_input": { + "initial_value": [ + 3245 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "match_map_veto_picks_stream_cursor_value_input": { + "auto_picked": [ + 6 + ], + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "map_id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "match_lineup_id": [ + 6672 + ], + "side": [ + 85 + ], + "type": [ + 1799 + ], + "__typename": [ + 85 + ] + }, + "match_map_veto_picks_update_column": {}, + "match_map_veto_picks_updates": { + "_set": [ + 3243 + ], + "where": [ + 3229 + ], + "__typename": [ + 85 + ] + }, + "match_maps": { + "clips_count": [ + 41 + ], + "created_at": [ + 5243 + ], + "demo_processing_started_at": [ + 5243 + ], + "demos": [ + 3128, + { + "distinct_on": [ + 3157, + "[match_map_demos_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3154, + "[match_map_demos_order_by!]" + ], + "where": [ + 3140 + ] + } + ], + "demos_aggregate": [ + 3129, + { + "distinct_on": [ + 3157, + "[match_map_demos_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3154, + "[match_map_demos_order_by!]" + ], + "where": [ + 3140 + ] + } + ], + "demos_download_url": [ + 85 + ], + "demos_total_size": [ + 41 + ], + "e_match_map_status": [ + 1138 + ], + "ended_at": [ + 5243 + ], + "flashes": [ + 3958, + { + "distinct_on": [ + 3981, + "[player_flashes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3979, + "[player_flashes_order_by!]" + ], + "where": [ + 3969 + ] + } + ], + "flashes_aggregate": [ + 3959, + { + "distinct_on": [ + 3981, + "[player_flashes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3979, + "[player_flashes_order_by!]" + ], + "where": [ + 3969 + ] + } + ], + "id": [ + 6672 + ], + "is_current_map": [ + 6 + ], + "latest_clip_at": [ + 5243 + ], + "lineup_1_score": [ + 41 + ], + "lineup_1_side": [ + 1453 + ], + "lineup_1_timeouts_available": [ + 41 + ], + "lineup_2_score": [ + 41 + ], + "lineup_2_side": [ + 1453 + ], + "lineup_2_timeouts_available": [ + 41 + ], + "map": [ + 2924 + ], + "map_id": [ + 6672 + ], + "match": [ + 3432 + ], + "match_clips": [ + 2953, + { + "distinct_on": [ + 2975, + "[match_clips_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2973, + "[match_clips_order_by!]" + ], + "where": [ + 2962 + ] + } + ], + "match_clips_aggregate": [ + 2954, + { + "distinct_on": [ + 2975, + "[match_clips_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2973, + "[match_clips_order_by!]" + ], + "where": [ + 2962 + ] + } + ], + "match_id": [ + 6672 + ], + "objectives": [ + 4204, + { + "distinct_on": [ + 4225, + "[player_objectives_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4223, + "[player_objectives_order_by!]" + ], + "where": [ + 4213 + ] + } + ], + "objectives_aggregate": [ + 4205, + { + "distinct_on": [ + 4225, + "[player_objectives_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4223, + "[player_objectives_order_by!]" + ], + "where": [ + 4213 + ] + } + ], + "order": [ + 41 + ], + "player_assists": [ + 3786, + { + "distinct_on": [ + 3809, + "[player_assists_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3807, + "[player_assists_order_by!]" + ], + "where": [ + 3797 + ] + } + ], + "player_assists_aggregate": [ + 3787, + { + "distinct_on": [ + 3809, + "[player_assists_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3807, + "[player_assists_order_by!]" + ], + "where": [ + 3797 + ] + } + ], + "player_damages": [ + 3849, + { + "distinct_on": [ + 3870, + "[player_damages_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3868, + "[player_damages_order_by!]" + ], + "where": [ + 3858 + ] + } + ], + "player_damages_aggregate": [ + 3850, + { + "distinct_on": [ + 3870, + "[player_damages_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3868, + "[player_damages_order_by!]" + ], + "where": [ + 3858 + ] + } + ], + "player_kills": [ + 4003, + { + "distinct_on": [ + 4067, + "[player_kills_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4065, + "[player_kills_order_by!]" + ], + "where": [ + 4014 + ] + } + ], + "player_kills_aggregate": [ + 4004, + { + "distinct_on": [ + 4067, + "[player_kills_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4065, + "[player_kills_order_by!]" + ], + "where": [ + 4014 + ] + } + ], + "player_unused_utilities": [ + 4491, + { + "distinct_on": [ + 4512, + "[player_unused_utility_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4510, + "[player_unused_utility_order_by!]" + ], + "where": [ + 4500 + ] + } + ], + "player_unused_utilities_aggregate": [ + 4492, + { + "distinct_on": [ + 4512, + "[player_unused_utility_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4510, + "[player_unused_utility_order_by!]" + ], + "where": [ + 4500 + ] + } + ], + "public_clips_count": [ + 41 + ], + "public_latest_clip_at": [ + 5243 + ], + "rounds": [ + 3179, + { + "distinct_on": [ + 3200, + "[match_map_rounds_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3198, + "[match_map_rounds_order_by!]" + ], + "where": [ + 3188 + ] + } + ], + "rounds_aggregate": [ + 3180, + { + "distinct_on": [ + 3200, + "[match_map_rounds_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3198, + "[match_map_rounds_order_by!]" + ], + "where": [ + 3188 + ] + } + ], + "started_at": [ + 5243 + ], + "status": [ + 1143 + ], + "utility": [ + 4532, + { + "distinct_on": [ + 4553, + "[player_utility_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4551, + "[player_utility_order_by!]" + ], + "where": [ + 4541 + ] + } + ], + "utility_aggregate": [ + 4533, + { + "distinct_on": [ + 4553, + "[player_utility_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4551, + "[player_utility_order_by!]" + ], + "where": [ + 4541 + ] + } + ], + "vetos": [ + 3220, + { + "distinct_on": [ + 3240, + "[match_map_veto_picks_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3238, + "[match_map_veto_picks_order_by!]" + ], + "where": [ + 3229 + ] + } + ], + "vetos_aggregate": [ + 3221, + { + "distinct_on": [ + 3240, + "[match_map_veto_picks_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3238, + "[match_map_veto_picks_order_by!]" + ], + "where": [ + 3229 + ] + } + ], + "winning_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "match_maps_aggregate": { + "aggregate": [ + 3252 + ], + "nodes": [ + 3248 + ], + "__typename": [ + 85 + ] + }, + "match_maps_aggregate_bool_exp": { + "count": [ + 3251 + ], + "__typename": [ + 85 + ] + }, + "match_maps_aggregate_bool_exp_count": { + "arguments": [ + 3270 + ], + "distinct": [ + 6 + ], + "filter": [ + 3257 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "match_maps_aggregate_fields": { + "avg": [ + 3255 + ], + "count": [ + 41, + { + "columns": [ + 3270, + "[match_maps_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 3261 + ], + "min": [ + 3263 + ], + "stddev": [ + 3272 + ], + "stddev_pop": [ + 3274 + ], + "stddev_samp": [ + 3276 + ], + "sum": [ + 3280 + ], + "var_pop": [ + 3284 + ], + "var_samp": [ + 3286 + ], + "variance": [ + 3288 + ], + "__typename": [ + 85 + ] + }, + "match_maps_aggregate_order_by": { + "avg": [ + 3256 + ], + "count": [ + 3648 + ], + "max": [ + 3262 + ], + "min": [ + 3264 + ], + "stddev": [ + 3273 + ], + "stddev_pop": [ + 3275 + ], + "stddev_samp": [ + 3277 + ], + "sum": [ + 3281 + ], + "var_pop": [ + 3285 + ], + "var_samp": [ + 3287 + ], + "variance": [ + 3289 + ], + "__typename": [ + 85 + ] + }, + "match_maps_arr_rel_insert_input": { + "data": [ + 3260 + ], + "on_conflict": [ + 3267 + ], + "__typename": [ + 85 + ] + }, + "match_maps_avg_fields": { + "clips_count": [ + 32 + ], + "demos_total_size": [ + 41 + ], + "lineup_1_score": [ + 41 + ], + "lineup_1_timeouts_available": [ + 32 + ], + "lineup_2_score": [ + 41 + ], + "lineup_2_timeouts_available": [ + 32 + ], + "order": [ + 32 + ], + "public_clips_count": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_maps_avg_order_by": { + "clips_count": [ + 3648 + ], + "lineup_1_timeouts_available": [ + 3648 + ], + "lineup_2_timeouts_available": [ + 3648 + ], + "order": [ + 3648 + ], + "public_clips_count": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_maps_bool_exp": { + "_and": [ + 3257 + ], + "_not": [ + 3257 + ], + "_or": [ + 3257 + ], + "clips_count": [ + 42 + ], + "created_at": [ + 5244 + ], + "demo_processing_started_at": [ + 5244 + ], + "demos": [ + 3140 + ], + "demos_aggregate": [ + 3130 + ], + "demos_download_url": [ + 87 + ], + "demos_total_size": [ + 42 + ], + "e_match_map_status": [ + 1141 + ], + "ended_at": [ + 5244 + ], + "flashes": [ + 3969 + ], + "flashes_aggregate": [ + 3960 + ], + "id": [ + 6674 + ], + "is_current_map": [ + 7 + ], + "latest_clip_at": [ + 5244 + ], + "lineup_1_score": [ + 42 + ], + "lineup_1_side": [ + 1454 + ], + "lineup_1_timeouts_available": [ + 42 + ], + "lineup_2_score": [ + 42 + ], + "lineup_2_side": [ + 1454 + ], + "lineup_2_timeouts_available": [ + 42 + ], + "map": [ + 2933 + ], + "map_id": [ + 6674 + ], + "match": [ + 3443 + ], + "match_clips": [ + 2962 + ], + "match_clips_aggregate": [ + 2955 + ], + "match_id": [ + 6674 + ], + "objectives": [ + 4213 + ], + "objectives_aggregate": [ + 4206 + ], + "order": [ + 42 + ], + "player_assists": [ + 3797 + ], + "player_assists_aggregate": [ + 3788 + ], + "player_damages": [ + 3858 + ], + "player_damages_aggregate": [ + 3851 + ], + "player_kills": [ + 4014 + ], + "player_kills_aggregate": [ + 4005 + ], + "player_unused_utilities": [ + 4500 + ], + "player_unused_utilities_aggregate": [ + 4493 + ], + "public_clips_count": [ + 42 + ], + "public_latest_clip_at": [ + 5244 + ], + "rounds": [ + 3188 + ], + "rounds_aggregate": [ + 3181 + ], + "started_at": [ + 5244 + ], + "status": [ + 1144 + ], + "utility": [ + 4541 + ], + "utility_aggregate": [ + 4534 + ], + "vetos": [ + 3229 + ], + "vetos_aggregate": [ + 3222 + ], + "winning_lineup_id": [ + 6674 + ], + "__typename": [ + 85 + ] + }, + "match_maps_constraint": {}, + "match_maps_inc_input": { + "clips_count": [ + 41 + ], + "lineup_1_timeouts_available": [ + 41 + ], + "lineup_2_timeouts_available": [ + 41 + ], + "order": [ + 41 + ], + "public_clips_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "match_maps_insert_input": { + "clips_count": [ + 41 + ], + "created_at": [ + 5243 + ], + "demo_processing_started_at": [ + 5243 + ], + "demos": [ + 3137 + ], + "e_match_map_status": [ + 1149 + ], + "ended_at": [ + 5243 + ], + "flashes": [ + 3966 + ], + "id": [ + 6672 + ], + "latest_clip_at": [ + 5243 + ], + "lineup_1_side": [ + 1453 + ], + "lineup_1_timeouts_available": [ + 41 + ], + "lineup_2_side": [ + 1453 + ], + "lineup_2_timeouts_available": [ + 41 + ], + "map": [ + 2941 + ], + "map_id": [ + 6672 + ], + "match": [ + 3452 + ], + "match_clips": [ + 2959 + ], + "match_id": [ + 6672 + ], + "objectives": [ + 4210 + ], + "order": [ + 41 + ], + "player_assists": [ + 3794 + ], + "player_damages": [ + 3855 + ], + "player_kills": [ + 4011 + ], + "player_unused_utilities": [ + 4497 + ], + "public_clips_count": [ + 41 + ], + "public_latest_clip_at": [ + 5243 + ], + "rounds": [ + 3185 + ], + "started_at": [ + 5243 + ], + "status": [ + 1143 + ], + "utility": [ + 4538 + ], + "vetos": [ + 3228 + ], + "winning_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "match_maps_max_fields": { + "clips_count": [ + 41 + ], + "created_at": [ + 5243 + ], + "demo_processing_started_at": [ + 5243 + ], + "demos_download_url": [ + 85 + ], + "demos_total_size": [ + 41 + ], + "ended_at": [ + 5243 + ], + "id": [ + 6672 + ], + "latest_clip_at": [ + 5243 + ], + "lineup_1_score": [ + 41 + ], + "lineup_1_timeouts_available": [ + 41 + ], + "lineup_2_score": [ + 41 + ], + "lineup_2_timeouts_available": [ + 41 + ], + "map_id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "order": [ + 41 + ], + "public_clips_count": [ + 41 + ], + "public_latest_clip_at": [ + 5243 + ], + "started_at": [ + 5243 + ], + "winning_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "match_maps_max_order_by": { + "clips_count": [ + 3648 + ], + "created_at": [ + 3648 + ], + "demo_processing_started_at": [ + 3648 + ], + "ended_at": [ + 3648 + ], + "id": [ + 3648 + ], + "latest_clip_at": [ + 3648 + ], + "lineup_1_timeouts_available": [ + 3648 + ], + "lineup_2_timeouts_available": [ + 3648 + ], + "map_id": [ + 3648 + ], + "match_id": [ + 3648 + ], + "order": [ + 3648 + ], + "public_clips_count": [ + 3648 + ], + "public_latest_clip_at": [ + 3648 + ], + "started_at": [ + 3648 + ], + "winning_lineup_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_maps_min_fields": { + "clips_count": [ + 41 + ], + "created_at": [ + 5243 + ], + "demo_processing_started_at": [ + 5243 + ], + "demos_download_url": [ + 85 + ], + "demos_total_size": [ + 41 + ], + "ended_at": [ + 5243 + ], + "id": [ + 6672 + ], + "latest_clip_at": [ + 5243 + ], + "lineup_1_score": [ + 41 + ], + "lineup_1_timeouts_available": [ + 41 + ], + "lineup_2_score": [ + 41 + ], + "lineup_2_timeouts_available": [ + 41 + ], + "map_id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "order": [ + 41 + ], + "public_clips_count": [ + 41 + ], + "public_latest_clip_at": [ + 5243 + ], + "started_at": [ + 5243 + ], + "winning_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "match_maps_min_order_by": { + "clips_count": [ + 3648 + ], + "created_at": [ + 3648 + ], + "demo_processing_started_at": [ + 3648 + ], + "ended_at": [ + 3648 + ], + "id": [ + 3648 + ], + "latest_clip_at": [ + 3648 + ], + "lineup_1_timeouts_available": [ + 3648 + ], + "lineup_2_timeouts_available": [ + 3648 + ], + "map_id": [ + 3648 + ], + "match_id": [ + 3648 + ], + "order": [ + 3648 + ], + "public_clips_count": [ + 3648 + ], + "public_latest_clip_at": [ + 3648 + ], + "started_at": [ + 3648 + ], + "winning_lineup_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_maps_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 3248 + ], + "__typename": [ + 85 + ] + }, + "match_maps_obj_rel_insert_input": { + "data": [ + 3260 + ], + "on_conflict": [ + 3267 + ], + "__typename": [ + 85 + ] + }, + "match_maps_on_conflict": { + "constraint": [ + 3258 + ], + "update_columns": [ + 3282 + ], + "where": [ + 3257 + ], + "__typename": [ + 85 + ] + }, + "match_maps_order_by": { + "clips_count": [ + 3648 + ], + "created_at": [ + 3648 + ], + "demo_processing_started_at": [ + 3648 + ], + "demos_aggregate": [ + 3135 + ], + "demos_download_url": [ + 3648 + ], + "demos_total_size": [ + 3648 + ], + "e_match_map_status": [ + 1151 + ], + "ended_at": [ + 3648 + ], + "flashes_aggregate": [ + 3965 + ], + "id": [ + 3648 + ], + "is_current_map": [ + 3648 + ], + "latest_clip_at": [ + 3648 + ], + "lineup_1_score": [ + 3648 + ], + "lineup_1_side": [ + 3648 + ], + "lineup_1_timeouts_available": [ + 3648 + ], + "lineup_2_score": [ + 3648 + ], + "lineup_2_side": [ + 3648 + ], + "lineup_2_timeouts_available": [ + 3648 + ], + "map": [ + 2943 + ], + "map_id": [ + 3648 + ], + "match": [ + 3454 + ], + "match_clips_aggregate": [ + 2958 + ], + "match_id": [ + 3648 + ], + "objectives_aggregate": [ + 4209 + ], + "order": [ + 3648 + ], + "player_assists_aggregate": [ + 3793 + ], + "player_damages_aggregate": [ + 3854 + ], + "player_kills_aggregate": [ + 4010 + ], + "player_unused_utilities_aggregate": [ + 4496 + ], + "public_clips_count": [ + 3648 + ], + "public_latest_clip_at": [ + 3648 + ], + "rounds_aggregate": [ + 3184 + ], + "started_at": [ + 3648 + ], + "status": [ + 3648 + ], + "utility_aggregate": [ + 4537 + ], + "vetos_aggregate": [ + 3227 + ], + "winning_lineup_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_maps_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "match_maps_select_column": {}, + "match_maps_set_input": { + "clips_count": [ + 41 + ], + "created_at": [ + 5243 + ], + "demo_processing_started_at": [ + 5243 + ], + "ended_at": [ + 5243 + ], + "id": [ + 6672 + ], + "latest_clip_at": [ + 5243 + ], + "lineup_1_side": [ + 1453 + ], + "lineup_1_timeouts_available": [ + 41 + ], + "lineup_2_side": [ + 1453 + ], + "lineup_2_timeouts_available": [ + 41 + ], + "map_id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "order": [ + 41 + ], + "public_clips_count": [ + 41 + ], + "public_latest_clip_at": [ + 5243 + ], + "started_at": [ + 5243 + ], + "status": [ + 1143 + ], + "winning_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "match_maps_stddev_fields": { + "clips_count": [ + 32 + ], + "demos_total_size": [ + 41 + ], + "lineup_1_score": [ + 41 + ], + "lineup_1_timeouts_available": [ + 32 + ], + "lineup_2_score": [ + 41 + ], + "lineup_2_timeouts_available": [ + 32 + ], + "order": [ + 32 + ], + "public_clips_count": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_maps_stddev_order_by": { + "clips_count": [ + 3648 + ], + "lineup_1_timeouts_available": [ + 3648 + ], + "lineup_2_timeouts_available": [ + 3648 + ], + "order": [ + 3648 + ], + "public_clips_count": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_maps_stddev_pop_fields": { + "clips_count": [ + 32 + ], + "demos_total_size": [ + 41 + ], + "lineup_1_score": [ + 41 + ], + "lineup_1_timeouts_available": [ + 32 + ], + "lineup_2_score": [ + 41 + ], + "lineup_2_timeouts_available": [ + 32 + ], + "order": [ + 32 + ], + "public_clips_count": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_maps_stddev_pop_order_by": { + "clips_count": [ + 3648 + ], + "lineup_1_timeouts_available": [ + 3648 + ], + "lineup_2_timeouts_available": [ + 3648 + ], + "order": [ + 3648 + ], + "public_clips_count": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_maps_stddev_samp_fields": { + "clips_count": [ + 32 + ], + "demos_total_size": [ + 41 + ], + "lineup_1_score": [ + 41 + ], + "lineup_1_timeouts_available": [ + 32 + ], + "lineup_2_score": [ + 41 + ], + "lineup_2_timeouts_available": [ + 32 + ], + "order": [ + 32 + ], + "public_clips_count": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_maps_stddev_samp_order_by": { + "clips_count": [ + 3648 + ], + "lineup_1_timeouts_available": [ + 3648 + ], + "lineup_2_timeouts_available": [ + 3648 + ], + "order": [ + 3648 + ], + "public_clips_count": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_maps_stream_cursor_input": { + "initial_value": [ + 3279 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "match_maps_stream_cursor_value_input": { + "clips_count": [ + 41 + ], + "created_at": [ + 5243 + ], + "demo_processing_started_at": [ + 5243 + ], + "ended_at": [ + 5243 + ], + "id": [ + 6672 + ], + "latest_clip_at": [ + 5243 + ], + "lineup_1_side": [ + 1453 + ], + "lineup_1_timeouts_available": [ + 41 + ], + "lineup_2_side": [ + 1453 + ], + "lineup_2_timeouts_available": [ + 41 + ], + "map_id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "order": [ + 41 + ], + "public_clips_count": [ + 41 + ], + "public_latest_clip_at": [ + 5243 + ], + "started_at": [ + 5243 + ], + "status": [ + 1143 + ], + "winning_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "match_maps_sum_fields": { + "clips_count": [ + 41 + ], + "demos_total_size": [ + 41 + ], + "lineup_1_score": [ + 41 + ], + "lineup_1_timeouts_available": [ + 41 + ], + "lineup_2_score": [ + 41 + ], + "lineup_2_timeouts_available": [ + 41 + ], + "order": [ + 41 + ], + "public_clips_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "match_maps_sum_order_by": { + "clips_count": [ + 3648 + ], + "lineup_1_timeouts_available": [ + 3648 + ], + "lineup_2_timeouts_available": [ + 3648 + ], + "order": [ + 3648 + ], + "public_clips_count": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_maps_update_column": {}, + "match_maps_updates": { + "_inc": [ + 3259 + ], + "_set": [ + 3271 + ], + "where": [ + 3257 + ], + "__typename": [ + 85 + ] + }, + "match_maps_var_pop_fields": { + "clips_count": [ + 32 + ], + "demos_total_size": [ + 41 + ], + "lineup_1_score": [ + 41 + ], + "lineup_1_timeouts_available": [ + 32 + ], + "lineup_2_score": [ + 41 + ], + "lineup_2_timeouts_available": [ + 32 + ], + "order": [ + 32 + ], + "public_clips_count": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_maps_var_pop_order_by": { + "clips_count": [ + 3648 + ], + "lineup_1_timeouts_available": [ + 3648 + ], + "lineup_2_timeouts_available": [ + 3648 + ], + "order": [ + 3648 + ], + "public_clips_count": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_maps_var_samp_fields": { + "clips_count": [ + 32 + ], + "demos_total_size": [ + 41 + ], + "lineup_1_score": [ + 41 + ], + "lineup_1_timeouts_available": [ + 32 + ], + "lineup_2_score": [ + 41 + ], + "lineup_2_timeouts_available": [ + 32 + ], + "order": [ + 32 + ], + "public_clips_count": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_maps_var_samp_order_by": { + "clips_count": [ + 3648 + ], + "lineup_1_timeouts_available": [ + 3648 + ], + "lineup_2_timeouts_available": [ + 3648 + ], + "order": [ + 3648 + ], + "public_clips_count": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_maps_variance_fields": { + "clips_count": [ + 32 + ], + "demos_total_size": [ + 41 + ], + "lineup_1_score": [ + 41 + ], + "lineup_1_timeouts_available": [ + 32 + ], + "lineup_2_score": [ + 41 + ], + "lineup_2_timeouts_available": [ + 32 + ], + "order": [ + 32 + ], + "public_clips_count": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_maps_variance_order_by": { + "clips_count": [ + 3648 + ], + "lineup_1_timeouts_available": [ + 3648 + ], + "lineup_2_timeouts_available": [ + 3648 + ], + "order": [ + 3648 + ], + "public_clips_count": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_options": { + "auto_cancel_duration": [ + 41 + ], + "auto_cancellation": [ + 6 + ], + "best_of": [ + 41 + ], + "camera_allow_teammates": [ + 6 + ], + "camera_required": [ + 6 + ], + "check_in_setting": [ + 690 + ], + "coaches": [ + 6 + ], + "default_models": [ + 6 + ], + "game_mode": [ + 2172 + ], + "game_mode_id": [ + 6672 + ], + "halftime_pausematch": [ + 6 + ], + "has_active_matches": [ + 6 + ], + "id": [ + 6672 + ], + "invite_code": [ + 85 + ], + "knife_round": [ + 6 + ], + "live_match_timeout": [ + 41 + ], + "map_pool": [ + 2905 + ], + "map_pool_id": [ + 6672 + ], + "map_veto": [ + 6 + ], + "match_mode": [ + 1164 + ], + "matches": [ + 3432, + { + "distinct_on": [ + 3456, + "[matches_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3454, + "[matches_order_by!]" + ], + "where": [ + 3443 + ] + } + ], + "matches_aggregate": [ + 3433, + { + "distinct_on": [ + 3456, + "[matches_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3454, + "[matches_order_by!]" + ], + "where": [ + 3443 + ] + } + ], + "mr": [ + 41 + ], + "number_of_substitutes": [ + 41 + ], + "overtime": [ + 6 + ], + "prefer_dedicated_server": [ + 6 + ], + "ready_setting": [ + 1326 + ], + "region_veto": [ + 6 + ], + "regions": [ + 85 + ], + "round_restart_delay": [ + 41 + ], + "tech_timeout_setting": [ + 1534 + ], + "timeout_setting": [ + 1534 + ], + "tournament": [ + 5896 + ], + "tournament_bracket": [ + 5287 + ], + "tournament_stage": [ + 5717 + ], + "tv_delay": [ + 41 + ], + "type": [ + 1225 + ], + "veto_pick_timeout": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "match_options_aggregate": { + "aggregate": [ + 3296 + ], + "nodes": [ + 3290 + ], + "__typename": [ + 85 + ] + }, + "match_options_aggregate_bool_exp": { + "bool_and": [ + 3293 + ], + "bool_or": [ + 3294 + ], + "count": [ + 3295 + ], + "__typename": [ + 85 + ] + }, + "match_options_aggregate_bool_exp_bool_and": { + "arguments": [ + 3315 + ], + "distinct": [ + 6 + ], + "filter": [ + 3301 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "match_options_aggregate_bool_exp_bool_or": { + "arguments": [ + 3316 + ], + "distinct": [ + 6 + ], + "filter": [ + 3301 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "match_options_aggregate_bool_exp_count": { + "arguments": [ + 3314 + ], + "distinct": [ + 6 + ], + "filter": [ + 3301 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "match_options_aggregate_fields": { + "avg": [ + 3299 + ], + "count": [ + 41, + { + "columns": [ + 3314, + "[match_options_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 3305 + ], + "min": [ + 3307 + ], + "stddev": [ + 3318 + ], + "stddev_pop": [ + 3320 + ], + "stddev_samp": [ + 3322 + ], + "sum": [ + 3326 + ], + "var_pop": [ + 3330 + ], + "var_samp": [ + 3332 + ], + "variance": [ + 3334 + ], + "__typename": [ + 85 + ] + }, + "match_options_aggregate_order_by": { + "avg": [ + 3300 + ], + "count": [ + 3648 + ], + "max": [ + 3306 + ], + "min": [ + 3308 + ], + "stddev": [ + 3319 + ], + "stddev_pop": [ + 3321 + ], + "stddev_samp": [ + 3323 + ], + "sum": [ + 3327 + ], + "var_pop": [ + 3331 + ], + "var_samp": [ + 3333 + ], + "variance": [ + 3335 + ], + "__typename": [ + 85 + ] + }, + "match_options_arr_rel_insert_input": { + "data": [ + 3304 + ], + "on_conflict": [ + 3311 + ], + "__typename": [ + 85 + ] + }, + "match_options_avg_fields": { + "auto_cancel_duration": [ + 32 + ], + "best_of": [ + 32 + ], + "live_match_timeout": [ + 32 + ], + "mr": [ + 32 + ], + "number_of_substitutes": [ + 32 + ], + "round_restart_delay": [ + 32 + ], + "tv_delay": [ + 32 + ], + "veto_pick_timeout": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_options_avg_order_by": { + "auto_cancel_duration": [ + 3648 + ], + "best_of": [ + 3648 + ], + "live_match_timeout": [ + 3648 + ], + "mr": [ + 3648 + ], + "number_of_substitutes": [ + 3648 + ], + "round_restart_delay": [ + 3648 + ], + "tv_delay": [ + 3648 + ], + "veto_pick_timeout": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_options_bool_exp": { + "_and": [ + 3301 + ], + "_not": [ + 3301 + ], + "_or": [ + 3301 + ], + "auto_cancel_duration": [ + 42 + ], + "auto_cancellation": [ + 7 + ], + "best_of": [ + 42 + ], + "camera_allow_teammates": [ + 7 + ], + "camera_required": [ + 7 + ], + "check_in_setting": [ + 691 + ], + "coaches": [ + 7 + ], + "default_models": [ + 7 + ], + "game_mode": [ + 2175 + ], + "game_mode_id": [ + 6674 + ], + "halftime_pausematch": [ + 7 + ], + "has_active_matches": [ + 7 + ], + "id": [ + 6674 + ], + "invite_code": [ + 87 + ], + "knife_round": [ + 7 + ], + "live_match_timeout": [ + 42 + ], + "map_pool": [ + 2908 + ], + "map_pool_id": [ + 6674 + ], + "map_veto": [ + 7 + ], + "match_mode": [ + 1165 + ], + "matches": [ + 3443 + ], + "matches_aggregate": [ + 3434 + ], + "mr": [ + 42 + ], + "number_of_substitutes": [ + 42 + ], + "overtime": [ + 7 + ], + "prefer_dedicated_server": [ + 7 + ], + "ready_setting": [ + 1327 + ], + "region_veto": [ + 7 + ], + "regions": [ + 86 + ], + "round_restart_delay": [ + 42 + ], + "tech_timeout_setting": [ + 1535 + ], + "timeout_setting": [ + 1535 + ], + "tournament": [ + 5917 + ], + "tournament_bracket": [ + 5298 + ], + "tournament_stage": [ + 5729 + ], + "tv_delay": [ + 42 + ], + "type": [ + 1226 + ], + "veto_pick_timeout": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "match_options_constraint": {}, + "match_options_inc_input": { + "auto_cancel_duration": [ + 41 + ], + "best_of": [ + 41 + ], + "live_match_timeout": [ + 41 + ], + "mr": [ + 41 + ], + "number_of_substitutes": [ + 41 + ], + "round_restart_delay": [ + 41 + ], + "tv_delay": [ + 41 + ], + "veto_pick_timeout": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "match_options_insert_input": { + "auto_cancel_duration": [ + 41 + ], + "auto_cancellation": [ + 6 + ], + "best_of": [ + 41 + ], + "camera_allow_teammates": [ + 6 + ], + "camera_required": [ + 6 + ], + "check_in_setting": [ + 690 + ], + "coaches": [ + 6 + ], + "default_models": [ + 6 + ], + "game_mode": [ + 2181 + ], + "game_mode_id": [ + 6672 + ], + "halftime_pausematch": [ + 6 + ], + "id": [ + 6672 + ], + "invite_code": [ + 85 + ], + "knife_round": [ + 6 + ], + "live_match_timeout": [ + 41 + ], + "map_pool": [ + 2914 + ], + "map_pool_id": [ + 6672 + ], + "map_veto": [ + 6 + ], + "match_mode": [ + 1164 + ], + "matches": [ + 3440 + ], + "mr": [ + 41 + ], + "number_of_substitutes": [ + 41 + ], + "overtime": [ + 6 + ], + "prefer_dedicated_server": [ + 6 + ], + "ready_setting": [ + 1326 + ], + "region_veto": [ + 6 + ], + "regions": [ + 85 + ], + "round_restart_delay": [ + 41 + ], + "tech_timeout_setting": [ + 1534 + ], + "timeout_setting": [ + 1534 + ], + "tournament": [ + 5926 + ], + "tournament_bracket": [ + 5307 + ], + "tournament_stage": [ + 5741 + ], + "tv_delay": [ + 41 + ], + "type": [ + 1225 + ], + "veto_pick_timeout": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "match_options_max_fields": { + "auto_cancel_duration": [ + 41 + ], + "best_of": [ + 41 + ], + "game_mode_id": [ + 6672 + ], + "id": [ + 6672 + ], + "invite_code": [ + 85 + ], + "live_match_timeout": [ + 41 + ], + "map_pool_id": [ + 6672 + ], + "mr": [ + 41 + ], + "number_of_substitutes": [ + 41 + ], + "regions": [ + 85 + ], + "round_restart_delay": [ + 41 + ], + "tv_delay": [ + 41 + ], + "veto_pick_timeout": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "match_options_max_order_by": { + "auto_cancel_duration": [ + 3648 + ], + "best_of": [ + 3648 + ], + "game_mode_id": [ + 3648 + ], + "id": [ + 3648 + ], + "invite_code": [ + 3648 + ], + "live_match_timeout": [ + 3648 + ], + "map_pool_id": [ + 3648 + ], + "mr": [ + 3648 + ], + "number_of_substitutes": [ + 3648 + ], + "regions": [ + 3648 + ], + "round_restart_delay": [ + 3648 + ], + "tv_delay": [ + 3648 + ], + "veto_pick_timeout": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_options_min_fields": { + "auto_cancel_duration": [ + 41 + ], + "best_of": [ + 41 + ], + "game_mode_id": [ + 6672 + ], + "id": [ + 6672 + ], + "invite_code": [ + 85 + ], + "live_match_timeout": [ + 41 + ], + "map_pool_id": [ + 6672 + ], + "mr": [ + 41 + ], + "number_of_substitutes": [ + 41 + ], + "regions": [ + 85 + ], + "round_restart_delay": [ + 41 + ], + "tv_delay": [ + 41 + ], + "veto_pick_timeout": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "match_options_min_order_by": { + "auto_cancel_duration": [ + 3648 + ], + "best_of": [ + 3648 + ], + "game_mode_id": [ + 3648 + ], + "id": [ + 3648 + ], + "invite_code": [ + 3648 + ], + "live_match_timeout": [ + 3648 + ], + "map_pool_id": [ + 3648 + ], + "mr": [ + 3648 + ], + "number_of_substitutes": [ + 3648 + ], + "regions": [ + 3648 + ], + "round_restart_delay": [ + 3648 + ], + "tv_delay": [ + 3648 + ], + "veto_pick_timeout": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_options_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 3290 + ], + "__typename": [ + 85 + ] + }, + "match_options_obj_rel_insert_input": { + "data": [ + 3304 + ], + "on_conflict": [ + 3311 + ], + "__typename": [ + 85 + ] + }, + "match_options_on_conflict": { + "constraint": [ + 3302 + ], + "update_columns": [ + 3328 + ], + "where": [ + 3301 + ], + "__typename": [ + 85 + ] + }, + "match_options_order_by": { + "auto_cancel_duration": [ + 3648 + ], + "auto_cancellation": [ + 3648 + ], + "best_of": [ + 3648 + ], + "camera_allow_teammates": [ + 3648 + ], + "camera_required": [ + 3648 + ], + "check_in_setting": [ + 3648 + ], + "coaches": [ + 3648 + ], + "default_models": [ + 3648 + ], + "game_mode": [ + 2183 + ], + "game_mode_id": [ + 3648 + ], + "halftime_pausematch": [ + 3648 + ], + "has_active_matches": [ + 3648 + ], + "id": [ + 3648 + ], + "invite_code": [ + 3648 + ], + "knife_round": [ + 3648 + ], + "live_match_timeout": [ + 3648 + ], + "map_pool": [ + 2916 + ], + "map_pool_id": [ + 3648 + ], + "map_veto": [ + 3648 + ], + "match_mode": [ + 3648 + ], + "matches_aggregate": [ + 3439 + ], + "mr": [ + 3648 + ], + "number_of_substitutes": [ + 3648 + ], + "overtime": [ + 3648 + ], + "prefer_dedicated_server": [ + 3648 + ], + "ready_setting": [ + 3648 + ], + "region_veto": [ + 3648 + ], + "regions": [ + 3648 + ], + "round_restart_delay": [ + 3648 + ], + "tech_timeout_setting": [ + 3648 + ], + "timeout_setting": [ + 3648 + ], + "tournament": [ + 5928 + ], + "tournament_bracket": [ + 5309 + ], + "tournament_stage": [ + 5743 + ], + "tv_delay": [ + 3648 + ], + "type": [ + 3648 + ], + "veto_pick_timeout": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_options_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "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": [ + 41 + ], + "auto_cancellation": [ + 6 + ], + "best_of": [ + 41 + ], + "camera_allow_teammates": [ + 6 + ], + "camera_required": [ + 6 + ], + "check_in_setting": [ + 690 + ], + "coaches": [ + 6 + ], + "default_models": [ + 6 + ], + "game_mode_id": [ + 6672 + ], + "halftime_pausematch": [ + 6 + ], + "id": [ + 6672 + ], + "invite_code": [ + 85 + ], + "knife_round": [ + 6 + ], + "live_match_timeout": [ + 41 + ], + "map_pool_id": [ + 6672 + ], + "map_veto": [ + 6 + ], + "match_mode": [ + 1164 + ], + "mr": [ + 41 + ], + "number_of_substitutes": [ + 41 + ], + "overtime": [ + 6 + ], + "prefer_dedicated_server": [ + 6 + ], + "ready_setting": [ + 1326 + ], + "region_veto": [ + 6 + ], + "regions": [ + 85 + ], + "round_restart_delay": [ + 41 + ], + "tech_timeout_setting": [ + 1534 + ], + "timeout_setting": [ + 1534 + ], + "tv_delay": [ + 41 + ], + "type": [ + 1225 + ], + "veto_pick_timeout": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "match_options_stddev_fields": { + "auto_cancel_duration": [ + 32 + ], + "best_of": [ + 32 + ], + "live_match_timeout": [ + 32 + ], + "mr": [ + 32 + ], + "number_of_substitutes": [ + 32 + ], + "round_restart_delay": [ + 32 + ], + "tv_delay": [ + 32 + ], + "veto_pick_timeout": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_options_stddev_order_by": { + "auto_cancel_duration": [ + 3648 + ], + "best_of": [ + 3648 + ], + "live_match_timeout": [ + 3648 + ], + "mr": [ + 3648 + ], + "number_of_substitutes": [ + 3648 + ], + "round_restart_delay": [ + 3648 + ], + "tv_delay": [ + 3648 + ], + "veto_pick_timeout": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_options_stddev_pop_fields": { + "auto_cancel_duration": [ + 32 + ], + "best_of": [ + 32 + ], + "live_match_timeout": [ + 32 + ], + "mr": [ + 32 + ], + "number_of_substitutes": [ + 32 + ], + "round_restart_delay": [ + 32 + ], + "tv_delay": [ + 32 + ], + "veto_pick_timeout": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_options_stddev_pop_order_by": { + "auto_cancel_duration": [ + 3648 + ], + "best_of": [ + 3648 + ], + "live_match_timeout": [ + 3648 + ], + "mr": [ + 3648 + ], + "number_of_substitutes": [ + 3648 + ], + "round_restart_delay": [ + 3648 + ], + "tv_delay": [ + 3648 + ], + "veto_pick_timeout": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_options_stddev_samp_fields": { + "auto_cancel_duration": [ + 32 + ], + "best_of": [ + 32 + ], + "live_match_timeout": [ + 32 + ], + "mr": [ + 32 + ], + "number_of_substitutes": [ + 32 + ], + "round_restart_delay": [ + 32 + ], + "tv_delay": [ + 32 + ], + "veto_pick_timeout": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_options_stddev_samp_order_by": { + "auto_cancel_duration": [ + 3648 + ], + "best_of": [ + 3648 + ], + "live_match_timeout": [ + 3648 + ], + "mr": [ + 3648 + ], + "number_of_substitutes": [ + 3648 + ], + "round_restart_delay": [ + 3648 + ], + "tv_delay": [ + 3648 + ], + "veto_pick_timeout": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_options_stream_cursor_input": { + "initial_value": [ + 3325 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "match_options_stream_cursor_value_input": { + "auto_cancel_duration": [ + 41 + ], + "auto_cancellation": [ + 6 + ], + "best_of": [ + 41 + ], + "camera_allow_teammates": [ + 6 + ], + "camera_required": [ + 6 + ], + "check_in_setting": [ + 690 + ], + "coaches": [ + 6 + ], + "default_models": [ + 6 + ], + "game_mode_id": [ + 6672 + ], + "halftime_pausematch": [ + 6 + ], + "id": [ + 6672 + ], + "invite_code": [ + 85 + ], + "knife_round": [ + 6 + ], + "live_match_timeout": [ + 41 + ], + "map_pool_id": [ + 6672 + ], + "map_veto": [ + 6 + ], + "match_mode": [ + 1164 + ], + "mr": [ + 41 + ], + "number_of_substitutes": [ + 41 + ], + "overtime": [ + 6 + ], + "prefer_dedicated_server": [ + 6 + ], + "ready_setting": [ + 1326 + ], + "region_veto": [ + 6 + ], + "regions": [ + 85 + ], + "round_restart_delay": [ + 41 + ], + "tech_timeout_setting": [ + 1534 + ], + "timeout_setting": [ + 1534 + ], + "tv_delay": [ + 41 + ], + "type": [ + 1225 + ], + "veto_pick_timeout": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "match_options_sum_fields": { + "auto_cancel_duration": [ + 41 + ], + "best_of": [ + 41 + ], + "live_match_timeout": [ + 41 + ], + "mr": [ + 41 + ], + "number_of_substitutes": [ + 41 + ], + "round_restart_delay": [ + 41 + ], + "tv_delay": [ + 41 + ], + "veto_pick_timeout": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "match_options_sum_order_by": { + "auto_cancel_duration": [ + 3648 + ], + "best_of": [ + 3648 + ], + "live_match_timeout": [ + 3648 + ], + "mr": [ + 3648 + ], + "number_of_substitutes": [ + 3648 + ], + "round_restart_delay": [ + 3648 + ], + "tv_delay": [ + 3648 + ], + "veto_pick_timeout": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_options_update_column": {}, + "match_options_updates": { + "_inc": [ + 3303 + ], + "_set": [ + 3317 + ], + "where": [ + 3301 + ], + "__typename": [ + 85 + ] + }, + "match_options_var_pop_fields": { + "auto_cancel_duration": [ + 32 + ], + "best_of": [ + 32 + ], + "live_match_timeout": [ + 32 + ], + "mr": [ + 32 + ], + "number_of_substitutes": [ + 32 + ], + "round_restart_delay": [ + 32 + ], + "tv_delay": [ + 32 + ], + "veto_pick_timeout": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_options_var_pop_order_by": { + "auto_cancel_duration": [ + 3648 + ], + "best_of": [ + 3648 + ], + "live_match_timeout": [ + 3648 + ], + "mr": [ + 3648 + ], + "number_of_substitutes": [ + 3648 + ], + "round_restart_delay": [ + 3648 + ], + "tv_delay": [ + 3648 + ], + "veto_pick_timeout": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_options_var_samp_fields": { + "auto_cancel_duration": [ + 32 + ], + "best_of": [ + 32 + ], + "live_match_timeout": [ + 32 + ], + "mr": [ + 32 + ], + "number_of_substitutes": [ + 32 + ], + "round_restart_delay": [ + 32 + ], + "tv_delay": [ + 32 + ], + "veto_pick_timeout": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_options_var_samp_order_by": { + "auto_cancel_duration": [ + 3648 + ], + "best_of": [ + 3648 + ], + "live_match_timeout": [ + 3648 + ], + "mr": [ + 3648 + ], + "number_of_substitutes": [ + 3648 + ], + "round_restart_delay": [ + 3648 + ], + "tv_delay": [ + 3648 + ], + "veto_pick_timeout": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_options_variance_fields": { + "auto_cancel_duration": [ + 32 + ], + "best_of": [ + 32 + ], + "live_match_timeout": [ + 32 + ], + "mr": [ + 32 + ], + "number_of_substitutes": [ + 32 + ], + "round_restart_delay": [ + 32 + ], + "tv_delay": [ + 32 + ], + "veto_pick_timeout": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_options_variance_order_by": { + "auto_cancel_duration": [ + 3648 + ], + "best_of": [ + 3648 + ], + "live_match_timeout": [ + 3648 + ], + "mr": [ + 3648 + ], + "number_of_substitutes": [ + 3648 + ], + "round_restart_delay": [ + 3648 + ], + "tv_delay": [ + 3648 + ], + "veto_pick_timeout": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_region_veto_picks": { + "auto_picked": [ + 6 + ], + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "match": [ + 3432 + ], + "match_id": [ + 6672 + ], + "match_lineup": [ + 3086 + ], + "match_lineup_id": [ + 6672 + ], + "region": [ + 85 + ], + "type": [ + 1799 + ], + "__typename": [ + 85 + ] + }, + "match_region_veto_picks_aggregate": { + "aggregate": [ + 3342 + ], + "nodes": [ + 3336 + ], + "__typename": [ + 85 + ] + }, + "match_region_veto_picks_aggregate_bool_exp": { + "bool_and": [ + 3339 + ], + "bool_or": [ + 3340 + ], + "count": [ + 3341 + ], + "__typename": [ + 85 + ] + }, + "match_region_veto_picks_aggregate_bool_exp_bool_and": { + "arguments": [ + 3357 + ], + "distinct": [ + 6 + ], + "filter": [ + 3345 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "match_region_veto_picks_aggregate_bool_exp_bool_or": { + "arguments": [ + 3358 + ], + "distinct": [ + 6 + ], + "filter": [ + 3345 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "match_region_veto_picks_aggregate_bool_exp_count": { + "arguments": [ + 3356 + ], + "distinct": [ + 6 + ], + "filter": [ + 3345 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "match_region_veto_picks_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 3356, + "[match_region_veto_picks_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 3348 + ], + "min": [ + 3350 + ], + "__typename": [ + 85 + ] + }, + "match_region_veto_picks_aggregate_order_by": { + "count": [ + 3648 + ], + "max": [ + 3349 + ], + "min": [ + 3351 + ], + "__typename": [ + 85 + ] + }, + "match_region_veto_picks_arr_rel_insert_input": { + "data": [ + 3347 + ], + "on_conflict": [ + 3353 + ], + "__typename": [ + 85 + ] + }, + "match_region_veto_picks_bool_exp": { + "_and": [ + 3345 + ], + "_not": [ + 3345 + ], + "_or": [ + 3345 + ], + "auto_picked": [ + 7 + ], + "created_at": [ + 5244 + ], + "id": [ + 6674 + ], + "match": [ + 3443 + ], + "match_id": [ + 6674 + ], + "match_lineup": [ + 3095 + ], + "match_lineup_id": [ + 6674 + ], + "region": [ + 87 + ], + "type": [ + 1800 + ], + "__typename": [ + 85 + ] + }, + "match_region_veto_picks_constraint": {}, + "match_region_veto_picks_insert_input": { + "auto_picked": [ + 6 + ], + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "match": [ + 3452 + ], + "match_id": [ + 6672 + ], + "match_lineup": [ + 3104 + ], + "match_lineup_id": [ + 6672 + ], + "region": [ + 85 + ], + "type": [ + 1799 + ], + "__typename": [ + 85 + ] + }, + "match_region_veto_picks_max_fields": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "match_lineup_id": [ + 6672 + ], + "region": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "match_region_veto_picks_max_order_by": { + "created_at": [ + 3648 + ], + "id": [ + 3648 + ], + "match_id": [ + 3648 + ], + "match_lineup_id": [ + 3648 + ], + "region": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_region_veto_picks_min_fields": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "match_lineup_id": [ + 6672 + ], + "region": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "match_region_veto_picks_min_order_by": { + "created_at": [ + 3648 + ], + "id": [ + 3648 + ], + "match_id": [ + 3648 + ], + "match_lineup_id": [ + 3648 + ], + "region": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_region_veto_picks_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 3336 + ], + "__typename": [ + 85 + ] + }, + "match_region_veto_picks_on_conflict": { + "constraint": [ + 3346 + ], + "update_columns": [ + 3362 + ], + "where": [ + 3345 + ], + "__typename": [ + 85 + ] + }, + "match_region_veto_picks_order_by": { + "auto_picked": [ + 3648 + ], + "created_at": [ + 3648 + ], + "id": [ + 3648 + ], + "match": [ + 3454 + ], + "match_id": [ + 3648 + ], + "match_lineup": [ + 3106 + ], + "match_lineup_id": [ + 3648 + ], + "region": [ + 3648 + ], + "type": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_region_veto_picks_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "match_region_veto_picks_select_column": {}, + "match_region_veto_picks_select_column_match_region_veto_picks_aggregate_bool_exp_bool_and_arguments_columns": {}, + "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": [ + 6 + ], + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "match_lineup_id": [ + 6672 + ], + "region": [ + 85 + ], + "type": [ + 1799 + ], + "__typename": [ + 85 + ] + }, + "match_region_veto_picks_stream_cursor_input": { + "initial_value": [ + 3361 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "match_region_veto_picks_stream_cursor_value_input": { + "auto_picked": [ + 6 + ], + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "match_lineup_id": [ + 6672 + ], + "region": [ + 85 + ], + "type": [ + 1799 + ], + "__typename": [ + 85 + ] + }, + "match_region_veto_picks_update_column": {}, + "match_region_veto_picks_updates": { + "_set": [ + 3359 + ], + "where": [ + 3345 + ], + "__typename": [ + 85 + ] + }, + "match_streams": { + "autodirector": [ + 6 + ], + "error_message": [ + 85 + ], + "game_server_node": [ + 2314 + ], + "game_server_node_id": [ + 85 + ], + "id": [ + 6672 + ], + "is_game_streamer": [ + 6 + ], + "is_live": [ + 6 + ], + "k8s_service_name": [ + 85 + ], + "last_status_at": [ + 5243 + ], + "link": [ + 85 + ], + "match": [ + 3432 + ], + "match_id": [ + 6672 + ], + "mode": [ + 85 + ], + "priority": [ + 41 + ], + "status": [ + 85 + ], + "status_history": [ + 2439, + { + "path": [ + 85 + ] + } + ], + "stream_url": [ + 85 + ], + "title": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "match_streams_aggregate": { + "aggregate": [ + 3370 + ], + "nodes": [ + 3364 + ], + "__typename": [ + 85 + ] + }, + "match_streams_aggregate_bool_exp": { + "bool_and": [ + 3367 + ], + "bool_or": [ + 3368 + ], + "count": [ + 3369 + ], + "__typename": [ + 85 + ] + }, + "match_streams_aggregate_bool_exp_bool_and": { + "arguments": [ + 3393 + ], + "distinct": [ + 6 + ], + "filter": [ + 3376 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "match_streams_aggregate_bool_exp_bool_or": { + "arguments": [ + 3394 + ], + "distinct": [ + 6 + ], + "filter": [ + 3376 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "match_streams_aggregate_bool_exp_count": { + "arguments": [ + 3392 + ], + "distinct": [ + 6 + ], + "filter": [ + 3376 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "match_streams_aggregate_fields": { + "avg": [ + 3374 + ], + "count": [ + 41, + { + "columns": [ + 3392, + "[match_streams_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 3383 + ], + "min": [ + 3385 + ], + "stddev": [ + 3396 + ], + "stddev_pop": [ + 3398 + ], + "stddev_samp": [ + 3400 + ], + "sum": [ + 3404 + ], + "var_pop": [ + 3408 + ], + "var_samp": [ + 3410 + ], + "variance": [ + 3412 + ], + "__typename": [ + 85 + ] + }, + "match_streams_aggregate_order_by": { + "avg": [ + 3375 + ], + "count": [ + 3648 + ], + "max": [ + 3384 + ], + "min": [ + 3386 + ], + "stddev": [ + 3397 + ], + "stddev_pop": [ + 3399 + ], + "stddev_samp": [ + 3401 + ], + "sum": [ + 3405 + ], + "var_pop": [ + 3409 + ], + "var_samp": [ + 3411 + ], + "variance": [ + 3413 + ], + "__typename": [ + 85 + ] + }, + "match_streams_append_input": { + "status_history": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "match_streams_arr_rel_insert_input": { + "data": [ + 3382 + ], + "on_conflict": [ + 3388 + ], + "__typename": [ + 85 + ] + }, + "match_streams_avg_fields": { + "priority": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_streams_avg_order_by": { + "priority": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_streams_bool_exp": { + "_and": [ + 3376 + ], + "_not": [ + 3376 + ], + "_or": [ + 3376 + ], + "autodirector": [ + 7 + ], + "error_message": [ + 87 + ], + "game_server_node": [ + 2326 + ], + "game_server_node_id": [ + 87 + ], + "id": [ + 6674 + ], + "is_game_streamer": [ + 7 + ], + "is_live": [ + 7 + ], + "k8s_service_name": [ + 87 + ], + "last_status_at": [ + 5244 + ], + "link": [ + 87 + ], + "match": [ + 3443 + ], + "match_id": [ + 6674 + ], + "mode": [ + 87 + ], + "priority": [ + 42 + ], + "status": [ + 87 + ], + "status_history": [ + 2441 + ], + "stream_url": [ + 87 + ], + "title": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "match_streams_constraint": {}, + "match_streams_delete_at_path_input": { + "status_history": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "match_streams_delete_elem_input": { + "status_history": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "match_streams_delete_key_input": { + "status_history": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "match_streams_inc_input": { + "priority": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "match_streams_insert_input": { + "autodirector": [ + 6 + ], + "error_message": [ + 85 + ], + "game_server_node": [ + 2338 + ], + "game_server_node_id": [ + 85 + ], + "id": [ + 6672 + ], + "is_game_streamer": [ + 6 + ], + "is_live": [ + 6 + ], + "k8s_service_name": [ + 85 + ], + "last_status_at": [ + 5243 + ], + "link": [ + 85 + ], + "match": [ + 3452 + ], + "match_id": [ + 6672 + ], + "mode": [ + 85 + ], + "priority": [ + 41 + ], + "status": [ + 85 + ], + "status_history": [ + 2439 + ], + "stream_url": [ + 85 + ], + "title": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "match_streams_max_fields": { + "error_message": [ + 85 + ], + "game_server_node_id": [ + 85 + ], + "id": [ + 6672 + ], + "k8s_service_name": [ + 85 + ], + "last_status_at": [ + 5243 + ], + "link": [ + 85 + ], + "match_id": [ + 6672 + ], + "mode": [ + 85 + ], + "priority": [ + 41 + ], + "status": [ + 85 + ], + "stream_url": [ + 85 + ], + "title": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "match_streams_max_order_by": { + "error_message": [ + 3648 + ], + "game_server_node_id": [ + 3648 + ], + "id": [ + 3648 + ], + "k8s_service_name": [ + 3648 + ], + "last_status_at": [ + 3648 + ], + "link": [ + 3648 + ], + "match_id": [ + 3648 + ], + "mode": [ + 3648 + ], + "priority": [ + 3648 + ], + "status": [ + 3648 + ], + "stream_url": [ + 3648 + ], + "title": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_streams_min_fields": { + "error_message": [ + 85 + ], + "game_server_node_id": [ + 85 + ], + "id": [ + 6672 + ], + "k8s_service_name": [ + 85 + ], + "last_status_at": [ + 5243 + ], + "link": [ + 85 + ], + "match_id": [ + 6672 + ], + "mode": [ + 85 + ], + "priority": [ + 41 + ], + "status": [ + 85 + ], + "stream_url": [ + 85 + ], + "title": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "match_streams_min_order_by": { + "error_message": [ + 3648 + ], + "game_server_node_id": [ + 3648 + ], + "id": [ + 3648 + ], + "k8s_service_name": [ + 3648 + ], + "last_status_at": [ + 3648 + ], + "link": [ + 3648 + ], + "match_id": [ + 3648 + ], + "mode": [ + 3648 + ], + "priority": [ + 3648 + ], + "status": [ + 3648 + ], + "stream_url": [ + 3648 + ], + "title": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_streams_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 3364 + ], + "__typename": [ + 85 + ] + }, + "match_streams_on_conflict": { + "constraint": [ + 3377 + ], + "update_columns": [ + 3406 + ], + "where": [ + 3376 + ], + "__typename": [ + 85 + ] + }, + "match_streams_order_by": { + "autodirector": [ + 3648 + ], + "error_message": [ + 3648 + ], + "game_server_node": [ + 2340 + ], + "game_server_node_id": [ + 3648 + ], + "id": [ + 3648 + ], + "is_game_streamer": [ + 3648 + ], + "is_live": [ + 3648 + ], + "k8s_service_name": [ + 3648 + ], + "last_status_at": [ + 3648 + ], + "link": [ + 3648 + ], + "match": [ + 3454 + ], + "match_id": [ + 3648 + ], + "mode": [ + 3648 + ], + "priority": [ + 3648 + ], + "status": [ + 3648 + ], + "status_history": [ + 3648 + ], + "stream_url": [ + 3648 + ], + "title": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_streams_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "match_streams_prepend_input": { + "status_history": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "match_streams_select_column": {}, + "match_streams_select_column_match_streams_aggregate_bool_exp_bool_and_arguments_columns": {}, + "match_streams_select_column_match_streams_aggregate_bool_exp_bool_or_arguments_columns": {}, + "match_streams_set_input": { + "autodirector": [ + 6 + ], + "error_message": [ + 85 + ], + "game_server_node_id": [ + 85 + ], + "id": [ + 6672 + ], + "is_game_streamer": [ + 6 + ], + "is_live": [ + 6 + ], + "k8s_service_name": [ + 85 + ], + "last_status_at": [ + 5243 + ], + "link": [ + 85 + ], + "match_id": [ + 6672 + ], + "mode": [ + 85 + ], + "priority": [ + 41 + ], + "status": [ + 85 + ], + "status_history": [ + 2439 + ], + "stream_url": [ + 85 + ], + "title": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "match_streams_stddev_fields": { + "priority": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_streams_stddev_order_by": { + "priority": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_streams_stddev_pop_fields": { + "priority": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_streams_stddev_pop_order_by": { + "priority": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_streams_stddev_samp_fields": { + "priority": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_streams_stddev_samp_order_by": { + "priority": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_streams_stream_cursor_input": { + "initial_value": [ + 3403 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "match_streams_stream_cursor_value_input": { + "autodirector": [ + 6 + ], + "error_message": [ + 85 + ], + "game_server_node_id": [ + 85 + ], + "id": [ + 6672 + ], + "is_game_streamer": [ + 6 + ], + "is_live": [ + 6 + ], + "k8s_service_name": [ + 85 + ], + "last_status_at": [ + 5243 + ], + "link": [ + 85 + ], + "match_id": [ + 6672 + ], + "mode": [ + 85 + ], + "priority": [ + 41 + ], + "status": [ + 85 + ], + "status_history": [ + 2439 + ], + "stream_url": [ + 85 + ], + "title": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "match_streams_sum_fields": { + "priority": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "match_streams_sum_order_by": { + "priority": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_streams_update_column": {}, + "match_streams_updates": { + "_append": [ + 3372 + ], + "_delete_at_path": [ + 3378 + ], + "_delete_elem": [ + 3379 + ], + "_delete_key": [ + 3380 + ], + "_inc": [ + 3381 + ], + "_prepend": [ + 3391 + ], + "_set": [ + 3395 + ], + "where": [ + 3376 + ], + "__typename": [ + 85 + ] + }, + "match_streams_var_pop_fields": { + "priority": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_streams_var_pop_order_by": { + "priority": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_streams_var_samp_fields": { + "priority": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_streams_var_samp_order_by": { + "priority": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_streams_variance_fields": { + "priority": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "match_streams_variance_order_by": { + "priority": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_type_cfgs": { + "cfg": [ + 85 + ], + "type": [ + 876 + ], + "__typename": [ + 85 + ] + }, + "match_type_cfgs_aggregate": { + "aggregate": [ + 3416 + ], + "nodes": [ + 3414 + ], + "__typename": [ + 85 + ] + }, + "match_type_cfgs_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 3426, + "[match_type_cfgs_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 3420 + ], + "min": [ + 3421 + ], + "__typename": [ + 85 + ] + }, + "match_type_cfgs_bool_exp": { + "_and": [ + 3417 + ], + "_not": [ + 3417 + ], + "_or": [ + 3417 + ], + "cfg": [ + 87 + ], + "type": [ + 877 + ], + "__typename": [ + 85 + ] + }, + "match_type_cfgs_constraint": {}, + "match_type_cfgs_insert_input": { + "cfg": [ + 85 + ], + "type": [ + 876 + ], + "__typename": [ + 85 + ] + }, + "match_type_cfgs_max_fields": { + "cfg": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "match_type_cfgs_min_fields": { + "cfg": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "match_type_cfgs_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 3414 + ], + "__typename": [ + 85 + ] + }, + "match_type_cfgs_on_conflict": { + "constraint": [ + 3418 + ], + "update_columns": [ + 3430 + ], + "where": [ + 3417 + ], + "__typename": [ + 85 + ] + }, + "match_type_cfgs_order_by": { + "cfg": [ + 3648 + ], + "type": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "match_type_cfgs_pk_columns_input": { + "type": [ + 876 + ], + "__typename": [ + 85 + ] + }, + "match_type_cfgs_select_column": {}, + "match_type_cfgs_set_input": { + "cfg": [ + 85 + ], + "type": [ + 876 + ], + "__typename": [ + 85 + ] + }, + "match_type_cfgs_stream_cursor_input": { + "initial_value": [ + 3429 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "match_type_cfgs_stream_cursor_value_input": { + "cfg": [ + 85 + ], + "type": [ + 876 + ], + "__typename": [ + 85 + ] + }, + "match_type_cfgs_update_column": {}, + "match_type_cfgs_updates": { + "_set": [ + 3427 + ], + "where": [ + 3417 + ], + "__typename": [ + 85 + ] + }, + "matches": { + "can_assign_server": [ + 6 + ], + "can_cancel": [ + 6 + ], + "can_check_in": [ + 6 + ], + "can_reassign_winner": [ + 6 + ], + "can_schedule": [ + 6 + ], + "can_start": [ + 6 + ], + "can_stream_live": [ + 6 + ], + "can_stream_tv": [ + 6 + ], + "cancels_at": [ + 5243 + ], + "clutches": [ + 6852, + { + "distinct_on": [ + 6868, + "[v_match_clutches_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6867, + "[v_match_clutches_order_by!]" + ], + "where": [ + 6861 + ] + } + ], + "clutches_aggregate": [ + 6853, + { + "distinct_on": [ + 6868, + "[v_match_clutches_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6867, + "[v_match_clutches_order_by!]" + ], + "where": [ + 6861 + ] + } + ], + "connection_link": [ + 85 + ], + "connection_string": [ + 85 + ], + "counts_toward_ranking": [ + 6 + ], + "created_at": [ + 5243 + ], + "current_match_map_id": [ + 6672 + ], + "demos": [ + 3128, + { + "distinct_on": [ + 3157, + "[match_map_demos_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3154, + "[match_map_demos_order_by!]" + ], + "where": [ + 3140 + ] + } + ], + "demos_aggregate": [ + 3129, + { + "distinct_on": [ + 3157, + "[match_map_demos_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3154, + "[match_map_demos_order_by!]" + ], + "where": [ + 3140 + ] + } + ], + "draft_games": [ + 599, + { + "distinct_on": [ + 623, + "[draft_games_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 621, + "[draft_games_order_by!]" + ], + "where": [ + 610 + ] + } + ], + "draft_games_aggregate": [ + 600, + { + "distinct_on": [ + 623, + "[draft_games_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 621, + "[draft_games_order_by!]" + ], + "where": [ + 610 + ] + } + ], + "e_match_status": [ + 1199 + ], + "e_region": [ + 4734 + ], + "effective_at": [ + 5243 + ], + "elo_changes": [ + 7049, + { + "distinct_on": [ + 7075, + "[v_player_elo_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7074, + "[v_player_elo_order_by!]" + ], + "where": [ + 7068 + ] + } + ], + "elo_changes_aggregate": [ + 7050, + { + "distinct_on": [ + 7075, + "[v_player_elo_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7074, + "[v_player_elo_order_by!]" + ], + "where": [ + 7068 + ] + } + ], + "ended_at": [ + 5243 + ], + "external_id": [ + 85 + ], + "id": [ + 6672 + ], + "invite_code": [ + 85 + ], + "is_captain": [ + 6 + ], + "is_coach": [ + 6 + ], + "is_friend_in_match_lineup": [ + 6 + ], + "is_in_lineup": [ + 6 + ], + "is_match_server_available": [ + 6 + ], + "is_organizer": [ + 6 + ], + "is_server_online": [ + 6 + ], + "is_tournament_match": [ + 6 + ], + "label": [ + 85 + ], + "lineup_1": [ + 3086 + ], + "lineup_1_id": [ + 6672 + ], + "lineup_2": [ + 3086 + ], + "lineup_2_id": [ + 6672 + ], + "lineup_counts": [ + 2437, + { + "path": [ + 85 + ] + } + ], + "map_veto_picking_lineup_id": [ + 6672 + ], + "map_veto_picks": [ + 3220, + { + "distinct_on": [ + 3240, + "[match_map_veto_picks_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3238, + "[match_map_veto_picks_order_by!]" + ], + "where": [ + 3229 + ] + } + ], + "map_veto_picks_aggregate": [ + 3221, + { + "distinct_on": [ + 3240, + "[match_map_veto_picks_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3238, + "[match_map_veto_picks_order_by!]" + ], + "where": [ + 3229 + ] + } + ], + "map_veto_type": [ + 85 + ], + "match_maps": [ + 3248, + { + "distinct_on": [ + 3270, + "[match_maps_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3268, + "[match_maps_order_by!]" + ], + "where": [ + 3257 + ] + } + ], + "match_maps_aggregate": [ + 3249, + { + "distinct_on": [ + 3270, + "[match_maps_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3268, + "[match_maps_order_by!]" + ], + "where": [ + 3257 + ] + } + ], + "match_options_id": [ + 6672 + ], + "max_players_per_lineup": [ + 41 + ], + "min_players_per_lineup": [ + 41 + ], + "opening_duels": [ + 6980, + { + "distinct_on": [ + 6996, + "[v_match_player_opening_duels_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6995, + "[v_match_player_opening_duels_order_by!]" + ], + "where": [ + 6989 + ] + } + ], + "opening_duels_aggregate": [ + 6981, + { + "distinct_on": [ + 6996, + "[v_match_player_opening_duels_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6995, + "[v_match_player_opening_duels_order_by!]" + ], + "where": [ + 6989 + ] + } + ], + "options": [ + 3290 + ], + "organizer": [ + 4606 + ], + "organizer_steam_id": [ + 312 + ], + "password": [ + 85 + ], + "player_assists": [ + 3786, + { + "distinct_on": [ + 3809, + "[player_assists_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3807, + "[player_assists_order_by!]" + ], + "where": [ + 3797 + ] + } + ], + "player_assists_aggregate": [ + 3787, + { + "distinct_on": [ + 3809, + "[player_assists_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3807, + "[player_assists_order_by!]" + ], + "where": [ + 3797 + ] + } + ], + "player_damages": [ + 3849, + { + "distinct_on": [ + 3870, + "[player_damages_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3868, + "[player_damages_order_by!]" + ], + "where": [ + 3858 + ] + } + ], + "player_damages_aggregate": [ + 3850, + { + "distinct_on": [ + 3870, + "[player_damages_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3868, + "[player_damages_order_by!]" + ], + "where": [ + 3858 + ] + } + ], + "player_flashes": [ + 3958, + { + "distinct_on": [ + 3981, + "[player_flashes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3979, + "[player_flashes_order_by!]" + ], + "where": [ + 3969 + ] + } + ], + "player_flashes_aggregate": [ + 3959, + { + "distinct_on": [ + 3981, + "[player_flashes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3979, + "[player_flashes_order_by!]" + ], + "where": [ + 3969 + ] + } + ], + "player_kills": [ + 4003, + { + "distinct_on": [ + 4067, + "[player_kills_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4065, + "[player_kills_order_by!]" + ], + "where": [ + 4014 + ] + } + ], + "player_kills_aggregate": [ + 4004, + { + "distinct_on": [ + 4067, + "[player_kills_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4065, + "[player_kills_order_by!]" + ], + "where": [ + 4014 + ] + } + ], + "player_objectives": [ + 4204, + { + "distinct_on": [ + 4225, + "[player_objectives_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4223, + "[player_objectives_order_by!]" + ], + "where": [ + 4213 + ] + } + ], + "player_objectives_aggregate": [ + 4205, + { + "distinct_on": [ + 4225, + "[player_objectives_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4223, + "[player_objectives_order_by!]" + ], + "where": [ + 4213 + ] + } + ], + "player_unused_utilities": [ + 4491, + { + "distinct_on": [ + 4512, + "[player_unused_utility_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4510, + "[player_unused_utility_order_by!]" + ], + "where": [ + 4500 + ] + } + ], + "player_unused_utilities_aggregate": [ + 4492, + { + "distinct_on": [ + 4512, + "[player_unused_utility_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4510, + "[player_unused_utility_order_by!]" + ], + "where": [ + 4500 + ] + } + ], + "player_utility": [ + 4532, + { + "distinct_on": [ + 4553, + "[player_utility_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4551, + "[player_utility_order_by!]" + ], + "where": [ + 4541 + ] + } + ], + "player_utility_aggregate": [ + 4533, + { + "distinct_on": [ + 4553, + "[player_utility_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4551, + "[player_utility_order_by!]" + ], + "where": [ + 4541 + ] + } + ], + "region": [ + 85 + ], + "region_veto_picking_lineup_id": [ + 6672 + ], + "region_veto_picks": [ + 3336, + { + "distinct_on": [ + 3356, + "[match_region_veto_picks_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3354, + "[match_region_veto_picks_order_by!]" + ], + "where": [ + 3345 + ] + } + ], + "region_veto_picks_aggregate": [ + 3337, + { + "distinct_on": [ + 3356, + "[match_region_veto_picks_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3354, + "[match_region_veto_picks_order_by!]" + ], + "where": [ + 3345 + ] + } + ], + "requested_organizer": [ + 6 + ], + "scheduled_at": [ + 5243 + ], + "server": [ + 4761 + ], + "server_error": [ + 85 + ], + "server_id": [ + 6672 + ], + "server_plugin_runtime": [ + 85 + ], + "server_region": [ + 85 + ], + "server_type": [ + 85 + ], + "share_code": [ + 85 + ], + "source": [ + 85 + ], + "started_at": [ + 5243 + ], + "status": [ + 1204 + ], + "streams": [ + 3364, + { + "distinct_on": [ + 3392, + "[match_streams_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3389, + "[match_streams_order_by!]" + ], + "where": [ + 3376 + ] + } + ], + "streams_aggregate": [ + 3365, + { + "distinct_on": [ + 3392, + "[match_streams_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3389, + "[match_streams_order_by!]" + ], + "where": [ + 3376 + ] + } + ], + "teams": [ + 5194, + { + "distinct_on": [ + 5218, + "[teams_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5216, + "[teams_order_by!]" + ], + "where": [ + 5205 + ] + } + ], + "tournament_brackets": [ + 5287, + { + "distinct_on": [ + 5311, + "[tournament_brackets_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5309, + "[tournament_brackets_order_by!]" + ], + "where": [ + 5298 + ] + } + ], + "tournament_brackets_aggregate": [ + 5288, + { + "distinct_on": [ + 5311, + "[tournament_brackets_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5309, + "[tournament_brackets_order_by!]" + ], + "where": [ + 5298 + ] + } + ], + "tv_connection_string": [ + 85 + ], + "veto_pick_expires_at": [ + 5243 + ], + "winner": [ + 3086 + ], + "winning_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "matches_aggregate": { + "aggregate": [ + 3438 + ], + "nodes": [ + 3432 + ], + "__typename": [ + 85 + ] + }, + "matches_aggregate_bool_exp": { + "bool_and": [ + 3435 + ], + "bool_or": [ + 3436 + ], + "count": [ + 3437 + ], + "__typename": [ + 85 + ] + }, + "matches_aggregate_bool_exp_bool_and": { + "arguments": [ + 3457 + ], + "distinct": [ + 6 + ], + "filter": [ + 3443 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "matches_aggregate_bool_exp_bool_or": { + "arguments": [ + 3458 + ], + "distinct": [ + 6 + ], + "filter": [ + 3443 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "matches_aggregate_bool_exp_count": { + "arguments": [ + 3456 + ], + "distinct": [ + 6 + ], + "filter": [ + 3443 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "matches_aggregate_fields": { + "avg": [ + 3441 + ], + "count": [ + 41, + { + "columns": [ + 3456, + "[matches_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 3447 + ], + "min": [ + 3449 + ], + "stddev": [ + 3460 + ], + "stddev_pop": [ + 3462 + ], + "stddev_samp": [ + 3464 + ], + "sum": [ + 3468 + ], + "var_pop": [ + 3472 + ], + "var_samp": [ + 3474 + ], + "variance": [ + 3476 + ], + "__typename": [ + 85 + ] + }, + "matches_aggregate_order_by": { + "avg": [ + 3442 + ], + "count": [ + 3648 + ], + "max": [ + 3448 + ], + "min": [ + 3450 + ], + "stddev": [ + 3461 + ], + "stddev_pop": [ + 3463 + ], + "stddev_samp": [ + 3465 + ], + "sum": [ + 3469 + ], + "var_pop": [ + 3473 + ], + "var_samp": [ + 3475 + ], + "variance": [ + 3477 + ], + "__typename": [ + 85 + ] + }, + "matches_arr_rel_insert_input": { + "data": [ + 3446 + ], + "on_conflict": [ + 3453 + ], + "__typename": [ + 85 + ] + }, + "matches_avg_fields": { + "max_players_per_lineup": [ + 41 + ], + "min_players_per_lineup": [ + 41 + ], + "organizer_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "matches_avg_order_by": { + "organizer_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "matches_bool_exp": { + "_and": [ + 3443 + ], + "_not": [ + 3443 + ], + "_or": [ + 3443 + ], + "can_assign_server": [ + 7 + ], + "can_cancel": [ + 7 + ], + "can_check_in": [ + 7 + ], + "can_reassign_winner": [ + 7 + ], + "can_schedule": [ + 7 + ], + "can_start": [ + 7 + ], + "can_stream_live": [ + 7 + ], + "can_stream_tv": [ + 7 + ], + "cancels_at": [ + 5244 + ], + "clutches": [ + 6861 + ], + "clutches_aggregate": [ + 6854 + ], + "connection_link": [ + 87 + ], + "connection_string": [ + 87 + ], + "counts_toward_ranking": [ + 7 + ], + "created_at": [ + 5244 + ], + "current_match_map_id": [ + 6674 + ], + "demos": [ + 3140 + ], + "demos_aggregate": [ + 3130 + ], + "draft_games": [ + 610 + ], + "draft_games_aggregate": [ + 601 + ], + "e_match_status": [ + 1202 + ], + "e_region": [ + 4738 + ], + "effective_at": [ + 5244 + ], + "elo_changes": [ + 7068 + ], + "elo_changes_aggregate": [ + 7051 + ], + "ended_at": [ + 5244 + ], + "external_id": [ + 87 + ], + "id": [ + 6674 + ], + "invite_code": [ + 87 + ], + "is_captain": [ + 7 + ], + "is_coach": [ + 7 + ], + "is_friend_in_match_lineup": [ + 7 + ], + "is_in_lineup": [ + 7 + ], + "is_match_server_available": [ + 7 + ], + "is_organizer": [ + 7 + ], + "is_server_online": [ + 7 + ], + "is_tournament_match": [ + 7 + ], + "label": [ + 87 + ], + "lineup_1": [ + 3095 + ], + "lineup_1_id": [ + 6674 + ], + "lineup_2": [ + 3095 + ], + "lineup_2_id": [ + 6674 + ], + "lineup_counts": [ + 2438 + ], + "map_veto_picking_lineup_id": [ + 6674 + ], + "map_veto_picks": [ + 3229 + ], + "map_veto_picks_aggregate": [ + 3222 + ], + "map_veto_type": [ + 87 + ], + "match_maps": [ + 3257 + ], + "match_maps_aggregate": [ + 3250 + ], + "match_options_id": [ + 6674 + ], + "max_players_per_lineup": [ + 42 + ], + "min_players_per_lineup": [ + 42 + ], + "opening_duels": [ + 6989 + ], + "opening_duels_aggregate": [ + 6982 + ], + "options": [ + 3301 + ], + "organizer": [ + 4610 + ], + "organizer_steam_id": [ + 314 + ], + "password": [ + 87 + ], + "player_assists": [ + 3797 + ], + "player_assists_aggregate": [ + 3788 + ], + "player_damages": [ + 3858 + ], + "player_damages_aggregate": [ + 3851 + ], + "player_flashes": [ + 3969 + ], + "player_flashes_aggregate": [ + 3960 + ], + "player_kills": [ + 4014 + ], + "player_kills_aggregate": [ + 4005 + ], + "player_objectives": [ + 4213 + ], + "player_objectives_aggregate": [ + 4206 + ], + "player_unused_utilities": [ + 4500 + ], + "player_unused_utilities_aggregate": [ + 4493 + ], + "player_utility": [ + 4541 + ], + "player_utility_aggregate": [ + 4534 + ], + "region": [ + 87 + ], + "region_veto_picking_lineup_id": [ + 6674 + ], + "region_veto_picks": [ + 3345 + ], + "region_veto_picks_aggregate": [ + 3338 + ], + "requested_organizer": [ + 7 + ], + "scheduled_at": [ + 5244 + ], + "server": [ + 4773 + ], + "server_error": [ + 87 + ], + "server_id": [ + 6674 + ], + "server_plugin_runtime": [ + 87 + ], + "server_region": [ + 87 + ], + "server_type": [ + 87 + ], + "share_code": [ + 87 + ], + "source": [ + 87 + ], + "started_at": [ + 5244 + ], + "status": [ + 1205 + ], + "streams": [ + 3376 + ], + "streams_aggregate": [ + 3366 + ], + "teams": [ + 5205 + ], + "tournament_brackets": [ + 5298 + ], + "tournament_brackets_aggregate": [ + 5289 + ], + "tv_connection_string": [ + 87 + ], + "veto_pick_expires_at": [ + 5244 + ], + "winner": [ + 3095 + ], + "winning_lineup_id": [ + 6674 + ], + "__typename": [ + 85 + ] + }, + "matches_constraint": {}, + "matches_inc_input": { + "organizer_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "matches_insert_input": { + "cancels_at": [ + 5243 + ], + "clutches": [ + 6858 + ], + "counts_toward_ranking": [ + 6 + ], + "created_at": [ + 5243 + ], + "demos": [ + 3137 + ], + "draft_games": [ + 607 + ], + "e_match_status": [ + 1210 + ], + "e_region": [ + 4744 + ], + "elo_changes": [ + 7065 + ], + "ended_at": [ + 5243 + ], + "external_id": [ + 85 + ], + "id": [ + 6672 + ], + "label": [ + 85 + ], + "lineup_1": [ + 3104 + ], + "lineup_1_id": [ + 6672 + ], + "lineup_2": [ + 3104 + ], + "lineup_2_id": [ + 6672 + ], + "map_veto_picks": [ + 3228 + ], + "match_maps": [ + 3254 + ], + "match_options_id": [ + 6672 + ], + "opening_duels": [ + 6986 + ], + "options": [ + 3310 + ], + "organizer": [ + 4617 + ], + "organizer_steam_id": [ + 312 + ], + "password": [ + 85 + ], + "player_assists": [ + 3794 + ], + "player_damages": [ + 3855 + ], + "player_flashes": [ + 3966 + ], + "player_kills": [ + 4011 + ], + "player_objectives": [ + 4210 + ], + "player_unused_utilities": [ + 4497 + ], + "player_utility": [ + 4538 + ], + "region": [ + 85 + ], + "region_veto_picks": [ + 3344 + ], + "scheduled_at": [ + 5243 + ], + "server": [ + 4785 + ], + "server_error": [ + 85 + ], + "server_id": [ + 6672 + ], + "share_code": [ + 85 + ], + "source": [ + 85 + ], + "started_at": [ + 5243 + ], + "status": [ + 1204 + ], + "streams": [ + 3373 + ], + "tournament_brackets": [ + 5295 + ], + "veto_pick_expires_at": [ + 5243 + ], + "winner": [ + 3104 + ], + "winning_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "matches_max_fields": { + "cancels_at": [ + 5243 + ], + "connection_link": [ + 85 + ], + "connection_string": [ + 85 + ], + "created_at": [ + 5243 + ], + "current_match_map_id": [ + 6672 + ], + "effective_at": [ + 5243 + ], + "ended_at": [ + 5243 + ], + "external_id": [ + 85 + ], + "id": [ + 6672 + ], + "invite_code": [ + 85 + ], + "label": [ + 85 + ], + "lineup_1_id": [ + 6672 + ], + "lineup_2_id": [ + 6672 + ], + "map_veto_picking_lineup_id": [ + 6672 + ], + "map_veto_type": [ + 85 + ], + "match_options_id": [ + 6672 + ], + "max_players_per_lineup": [ + 41 + ], + "min_players_per_lineup": [ + 41 + ], + "organizer_steam_id": [ + 312 + ], + "password": [ + 85 + ], + "region": [ + 85 + ], + "region_veto_picking_lineup_id": [ + 6672 + ], + "scheduled_at": [ + 5243 + ], + "server_error": [ + 85 + ], + "server_id": [ + 6672 + ], + "server_plugin_runtime": [ + 85 + ], + "server_region": [ + 85 + ], + "server_type": [ + 85 + ], + "share_code": [ + 85 + ], + "source": [ + 85 + ], + "started_at": [ + 5243 + ], + "tv_connection_string": [ + 85 + ], + "veto_pick_expires_at": [ + 5243 + ], + "winning_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "matches_max_order_by": { + "cancels_at": [ + 3648 + ], + "created_at": [ + 3648 + ], + "effective_at": [ + 3648 + ], + "ended_at": [ + 3648 + ], + "external_id": [ + 3648 + ], + "id": [ + 3648 + ], + "label": [ + 3648 + ], + "lineup_1_id": [ + 3648 + ], + "lineup_2_id": [ + 3648 + ], + "match_options_id": [ + 3648 + ], + "organizer_steam_id": [ + 3648 + ], + "password": [ + 3648 + ], + "region": [ + 3648 + ], + "scheduled_at": [ + 3648 + ], + "server_error": [ + 3648 + ], + "server_id": [ + 3648 + ], + "share_code": [ + 3648 + ], + "source": [ + 3648 + ], + "started_at": [ + 3648 + ], + "veto_pick_expires_at": [ + 3648 + ], + "winning_lineup_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "matches_min_fields": { + "cancels_at": [ + 5243 + ], + "connection_link": [ + 85 + ], + "connection_string": [ + 85 + ], + "created_at": [ + 5243 + ], + "current_match_map_id": [ + 6672 + ], + "effective_at": [ + 5243 + ], + "ended_at": [ + 5243 + ], + "external_id": [ + 85 + ], + "id": [ + 6672 + ], + "invite_code": [ + 85 + ], + "label": [ + 85 + ], + "lineup_1_id": [ + 6672 + ], + "lineup_2_id": [ + 6672 + ], + "map_veto_picking_lineup_id": [ + 6672 + ], + "map_veto_type": [ + 85 + ], + "match_options_id": [ + 6672 + ], + "max_players_per_lineup": [ + 41 + ], + "min_players_per_lineup": [ + 41 + ], + "organizer_steam_id": [ + 312 + ], + "password": [ + 85 + ], + "region": [ + 85 + ], + "region_veto_picking_lineup_id": [ + 6672 + ], + "scheduled_at": [ + 5243 + ], + "server_error": [ + 85 + ], + "server_id": [ + 6672 + ], + "server_plugin_runtime": [ + 85 + ], + "server_region": [ + 85 + ], + "server_type": [ + 85 + ], + "share_code": [ + 85 + ], + "source": [ + 85 + ], + "started_at": [ + 5243 + ], + "tv_connection_string": [ + 85 + ], + "veto_pick_expires_at": [ + 5243 + ], + "winning_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "matches_min_order_by": { + "cancels_at": [ + 3648 + ], + "created_at": [ + 3648 + ], + "effective_at": [ + 3648 + ], + "ended_at": [ + 3648 + ], + "external_id": [ + 3648 + ], + "id": [ + 3648 + ], + "label": [ + 3648 + ], + "lineup_1_id": [ + 3648 + ], + "lineup_2_id": [ + 3648 + ], + "match_options_id": [ + 3648 + ], + "organizer_steam_id": [ + 3648 + ], + "password": [ + 3648 + ], + "region": [ + 3648 + ], + "scheduled_at": [ + 3648 + ], + "server_error": [ + 3648 + ], + "server_id": [ + 3648 + ], + "share_code": [ + 3648 + ], + "source": [ + 3648 + ], + "started_at": [ + 3648 + ], + "veto_pick_expires_at": [ + 3648 + ], + "winning_lineup_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "matches_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 3432 + ], + "__typename": [ + 85 + ] + }, + "matches_obj_rel_insert_input": { + "data": [ + 3446 + ], + "on_conflict": [ + 3453 + ], + "__typename": [ + 85 + ] + }, + "matches_on_conflict": { + "constraint": [ + 3444 + ], + "update_columns": [ + 3470 + ], + "where": [ + 3443 + ], + "__typename": [ + 85 + ] + }, + "matches_order_by": { + "can_assign_server": [ + 3648 + ], + "can_cancel": [ + 3648 + ], + "can_check_in": [ + 3648 + ], + "can_reassign_winner": [ + 3648 + ], + "can_schedule": [ + 3648 + ], + "can_start": [ + 3648 + ], + "can_stream_live": [ + 3648 + ], + "can_stream_tv": [ + 3648 + ], + "cancels_at": [ + 3648 + ], + "clutches_aggregate": [ + 6857 + ], + "connection_link": [ + 3648 + ], + "connection_string": [ + 3648 + ], + "counts_toward_ranking": [ + 3648 + ], + "created_at": [ + 3648 + ], + "current_match_map_id": [ + 3648 + ], + "demos_aggregate": [ + 3135 + ], + "draft_games_aggregate": [ + 606 + ], + "e_match_status": [ + 1212 + ], + "e_region": [ + 4746 + ], + "effective_at": [ + 3648 + ], + "elo_changes_aggregate": [ + 7064 + ], + "ended_at": [ + 3648 + ], + "external_id": [ + 3648 + ], + "id": [ + 3648 + ], + "invite_code": [ + 3648 + ], + "is_captain": [ + 3648 + ], + "is_coach": [ + 3648 + ], + "is_friend_in_match_lineup": [ + 3648 + ], + "is_in_lineup": [ + 3648 + ], + "is_match_server_available": [ + 3648 + ], + "is_organizer": [ + 3648 + ], + "is_server_online": [ + 3648 + ], + "is_tournament_match": [ + 3648 + ], + "label": [ + 3648 + ], + "lineup_1": [ + 3106 + ], + "lineup_1_id": [ + 3648 + ], + "lineup_2": [ + 3106 + ], + "lineup_2_id": [ + 3648 + ], + "lineup_counts": [ + 3648 + ], + "map_veto_picking_lineup_id": [ + 3648 + ], + "map_veto_picks_aggregate": [ + 3227 + ], + "map_veto_type": [ + 3648 + ], + "match_maps_aggregate": [ + 3253 + ], + "match_options_id": [ + 3648 + ], + "max_players_per_lineup": [ + 3648 + ], + "min_players_per_lineup": [ + 3648 + ], + "opening_duels_aggregate": [ + 6985 + ], + "options": [ + 3312 + ], + "organizer": [ + 4619 + ], + "organizer_steam_id": [ + 3648 + ], + "password": [ + 3648 + ], + "player_assists_aggregate": [ + 3793 + ], + "player_damages_aggregate": [ + 3854 + ], + "player_flashes_aggregate": [ + 3965 + ], + "player_kills_aggregate": [ + 4010 + ], + "player_objectives_aggregate": [ + 4209 + ], + "player_unused_utilities_aggregate": [ + 4496 + ], + "player_utility_aggregate": [ + 4537 + ], + "region": [ + 3648 + ], + "region_veto_picking_lineup_id": [ + 3648 + ], + "region_veto_picks_aggregate": [ + 3343 + ], + "requested_organizer": [ + 3648 + ], + "scheduled_at": [ + 3648 + ], + "server": [ + 4787 + ], + "server_error": [ + 3648 + ], + "server_id": [ + 3648 + ], + "server_plugin_runtime": [ + 3648 + ], + "server_region": [ + 3648 + ], + "server_type": [ + 3648 + ], + "share_code": [ + 3648 + ], + "source": [ + 3648 + ], + "started_at": [ + 3648 + ], + "status": [ + 3648 + ], + "streams_aggregate": [ + 3371 + ], + "teams_aggregate": [ + 5201 + ], + "tournament_brackets_aggregate": [ + 5294 + ], + "tv_connection_string": [ + 3648 + ], + "veto_pick_expires_at": [ + 3648 + ], + "winner": [ + 3106 + ], + "winning_lineup_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "matches_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "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": [ + 5243 + ], + "counts_toward_ranking": [ + 6 + ], + "created_at": [ + 5243 + ], + "ended_at": [ + 5243 + ], + "external_id": [ + 85 + ], + "id": [ + 6672 + ], + "label": [ + 85 + ], + "lineup_1_id": [ + 6672 + ], + "lineup_2_id": [ + 6672 + ], + "match_options_id": [ + 6672 + ], + "organizer_steam_id": [ + 312 + ], + "password": [ + 85 + ], + "region": [ + 85 + ], + "scheduled_at": [ + 5243 + ], + "server_error": [ + 85 + ], + "server_id": [ + 6672 + ], + "share_code": [ + 85 + ], + "source": [ + 85 + ], + "started_at": [ + 5243 + ], + "status": [ + 1204 + ], + "veto_pick_expires_at": [ + 5243 + ], + "winning_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "matches_stddev_fields": { + "max_players_per_lineup": [ + 41 + ], + "min_players_per_lineup": [ + 41 + ], + "organizer_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "matches_stddev_order_by": { + "organizer_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "matches_stddev_pop_fields": { + "max_players_per_lineup": [ + 41 + ], + "min_players_per_lineup": [ + 41 + ], + "organizer_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "matches_stddev_pop_order_by": { + "organizer_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "matches_stddev_samp_fields": { + "max_players_per_lineup": [ + 41 + ], + "min_players_per_lineup": [ + 41 + ], + "organizer_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "matches_stddev_samp_order_by": { + "organizer_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "matches_stream_cursor_input": { + "initial_value": [ + 3467 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "matches_stream_cursor_value_input": { + "cancels_at": [ + 5243 + ], + "counts_toward_ranking": [ + 6 + ], + "created_at": [ + 5243 + ], + "effective_at": [ + 5243 + ], + "ended_at": [ + 5243 + ], + "external_id": [ + 85 + ], + "id": [ + 6672 + ], + "label": [ + 85 + ], + "lineup_1_id": [ + 6672 + ], + "lineup_2_id": [ + 6672 + ], + "match_options_id": [ + 6672 + ], + "organizer_steam_id": [ + 312 + ], + "password": [ + 85 + ], + "region": [ + 85 + ], + "scheduled_at": [ + 5243 + ], + "server_error": [ + 85 + ], + "server_id": [ + 6672 + ], + "share_code": [ + 85 + ], + "source": [ + 85 + ], + "started_at": [ + 5243 + ], + "status": [ + 1204 + ], + "veto_pick_expires_at": [ + 5243 + ], + "winning_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "matches_sum_fields": { + "max_players_per_lineup": [ + 41 + ], + "min_players_per_lineup": [ + 41 + ], + "organizer_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "matches_sum_order_by": { + "organizer_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "matches_update_column": {}, + "matches_updates": { + "_inc": [ + 3445 + ], + "_set": [ + 3459 + ], + "where": [ + 3443 + ], + "__typename": [ + 85 + ] + }, + "matches_var_pop_fields": { + "max_players_per_lineup": [ + 41 + ], + "min_players_per_lineup": [ + 41 + ], + "organizer_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "matches_var_pop_order_by": { + "organizer_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "matches_var_samp_fields": { + "max_players_per_lineup": [ + 41 + ], + "min_players_per_lineup": [ + 41 + ], + "organizer_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "matches_var_samp_order_by": { + "organizer_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "matches_variance_fields": { + "max_players_per_lineup": [ + 41 + ], + "min_players_per_lineup": [ + 41 + ], + "organizer_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "matches_variance_order_by": { + "organizer_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "migration_hashes_hashes": { + "hash": [ + 85 + ], + "name": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "migration_hashes_hashes_aggregate": { + "aggregate": [ + 3480 + ], + "nodes": [ + 3478 + ], + "__typename": [ + 85 + ] + }, + "migration_hashes_hashes_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 3490, + "[migration_hashes_hashes_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 3484 + ], + "min": [ + 3485 + ], + "__typename": [ + 85 + ] + }, + "migration_hashes_hashes_bool_exp": { + "_and": [ + 3481 + ], + "_not": [ + 3481 + ], + "_or": [ + 3481 + ], + "hash": [ + 87 + ], + "name": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "migration_hashes_hashes_constraint": {}, + "migration_hashes_hashes_insert_input": { + "hash": [ + 85 + ], + "name": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "migration_hashes_hashes_max_fields": { + "hash": [ + 85 + ], + "name": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "migration_hashes_hashes_min_fields": { + "hash": [ + 85 + ], + "name": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "migration_hashes_hashes_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 3478 + ], + "__typename": [ + 85 + ] + }, + "migration_hashes_hashes_on_conflict": { + "constraint": [ + 3482 + ], + "update_columns": [ + 3494 + ], + "where": [ + 3481 + ], + "__typename": [ + 85 + ] + }, + "migration_hashes_hashes_order_by": { + "hash": [ + 3648 + ], + "name": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "migration_hashes_hashes_pk_columns_input": { + "name": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "migration_hashes_hashes_select_column": {}, + "migration_hashes_hashes_set_input": { + "hash": [ + 85 + ], + "name": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "migration_hashes_hashes_stream_cursor_input": { + "initial_value": [ + 3493 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "migration_hashes_hashes_stream_cursor_value_input": { + "hash": [ + 85 + ], + "name": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "migration_hashes_hashes_update_column": {}, + "migration_hashes_hashes_updates": { + "_set": [ + 3491 + ], + "where": [ + 3481 + ], + "__typename": [ + 85 + ] + }, + "my_friends": { + "avatar_url": [ + 85 + ], + "country": [ + 85 + ], + "created_at": [ + 5243 + ], + "custom_avatar_url": [ + 85 + ], + "days_since_last_ban": [ + 41 + ], + "discord_id": [ + 85 + ], + "elo": [ + 2439, + { + "path": [ + 85 + ] + } + ], + "faceit_elo": [ + 41 + ], + "faceit_nickname": [ + 85 + ], + "faceit_player_id": [ + 85 + ], + "faceit_skill_level": [ + 41 + ], + "faceit_updated_at": [ + 5243 + ], + "faceit_url": [ + 85 + ], + "friend_steam_id": [ + 312 + ], + "game_ban_count": [ + 41 + ], + "invited_by_steam_id": [ + 312 + ], + "language": [ + 85 + ], + "last_presence_state": [ + 2439, + { + "path": [ + 85 + ] + } + ], + "last_read_news_at": [ + 5243 + ], + "last_sign_in_at": [ + 5243 + ], + "name": [ + 85 + ], + "name_registered": [ + 6 + ], + "notification_timezone": [ + 85 + ], + "player": [ + 4606 + ], + "premier_rank": [ + 41 + ], + "premier_rank_updated_at": [ + 5243 + ], + "presence_updated_at": [ + 5243 + ], + "profile_url": [ + 85 + ], + "quiet_hours_end": [ + 5240 + ], + "quiet_hours_start": [ + 5240 + ], + "role": [ + 85 + ], + "roster_image_url": [ + 85 + ], + "show_match_ready_modal": [ + 6 + ], + "status": [ + 85 + ], + "steam_bans_checked_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "vac_ban_count": [ + 41 + ], + "vac_banned": [ + 6 + ], + "__typename": [ + 85 + ] + }, + "my_friends_aggregate": { + "aggregate": [ + 3502 + ], + "nodes": [ + 3496 + ], + "__typename": [ + 85 + ] + }, + "my_friends_aggregate_bool_exp": { + "bool_and": [ + 3499 + ], + "bool_or": [ + 3500 + ], + "count": [ + 3501 + ], + "__typename": [ + 85 + ] + }, + "my_friends_aggregate_bool_exp_bool_and": { + "arguments": [ + 3522 + ], + "distinct": [ + 6 + ], + "filter": [ + 3508 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "my_friends_aggregate_bool_exp_bool_or": { + "arguments": [ + 3523 + ], + "distinct": [ + 6 + ], + "filter": [ + 3508 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "my_friends_aggregate_bool_exp_count": { + "arguments": [ + 3521 + ], + "distinct": [ + 6 + ], + "filter": [ + 3508 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "my_friends_aggregate_fields": { + "avg": [ + 3506 + ], + "count": [ + 41, + { + "columns": [ + 3521, + "[my_friends_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 3514 + ], + "min": [ + 3516 + ], + "stddev": [ + 3525 + ], + "stddev_pop": [ + 3527 + ], + "stddev_samp": [ + 3529 + ], + "sum": [ + 3533 + ], + "var_pop": [ + 3536 + ], + "var_samp": [ + 3538 + ], + "variance": [ + 3540 + ], + "__typename": [ + 85 + ] + }, + "my_friends_aggregate_order_by": { + "avg": [ + 3507 + ], + "count": [ + 3648 + ], + "max": [ + 3515 + ], + "min": [ + 3517 + ], + "stddev": [ + 3526 + ], + "stddev_pop": [ + 3528 + ], + "stddev_samp": [ + 3530 + ], + "sum": [ + 3534 + ], + "var_pop": [ + 3537 + ], + "var_samp": [ + 3539 + ], + "variance": [ + 3541 + ], + "__typename": [ + 85 + ] + }, + "my_friends_append_input": { + "elo": [ + 2439 + ], + "last_presence_state": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "my_friends_arr_rel_insert_input": { + "data": [ + 3513 + ], + "__typename": [ + 85 + ] + }, + "my_friends_avg_fields": { + "days_since_last_ban": [ + 32 + ], + "faceit_elo": [ + 32 + ], + "faceit_skill_level": [ + 32 + ], + "friend_steam_id": [ + 32 + ], + "game_ban_count": [ + 32 + ], + "invited_by_steam_id": [ + 32 + ], + "premier_rank": [ + 32 + ], + "steam_id": [ + 32 + ], + "vac_ban_count": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "my_friends_avg_order_by": { + "days_since_last_ban": [ + 3648 + ], + "faceit_elo": [ + 3648 + ], + "faceit_skill_level": [ + 3648 + ], + "friend_steam_id": [ + 3648 + ], + "game_ban_count": [ + 3648 + ], + "invited_by_steam_id": [ + 3648 + ], + "premier_rank": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "vac_ban_count": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "my_friends_bool_exp": { + "_and": [ + 3508 + ], + "_not": [ + 3508 + ], + "_or": [ + 3508 + ], + "avatar_url": [ + 87 + ], + "country": [ + 87 + ], + "created_at": [ + 5244 + ], + "custom_avatar_url": [ + 87 + ], + "days_since_last_ban": [ + 42 + ], + "discord_id": [ + 87 + ], + "elo": [ + 2441 + ], + "faceit_elo": [ + 42 + ], + "faceit_nickname": [ + 87 + ], + "faceit_player_id": [ + 87 + ], + "faceit_skill_level": [ + 42 + ], + "faceit_updated_at": [ + 5244 + ], + "faceit_url": [ + 87 + ], + "friend_steam_id": [ + 314 + ], + "game_ban_count": [ + 42 + ], + "invited_by_steam_id": [ + 314 + ], + "language": [ + 87 + ], + "last_presence_state": [ + 2441 + ], + "last_read_news_at": [ + 5244 + ], + "last_sign_in_at": [ + 5244 + ], + "name": [ + 87 + ], + "name_registered": [ + 7 + ], + "notification_timezone": [ + 87 + ], + "player": [ + 4610 + ], + "premier_rank": [ + 42 + ], + "premier_rank_updated_at": [ + 5244 + ], + "presence_updated_at": [ + 5244 + ], + "profile_url": [ + 87 + ], + "quiet_hours_end": [ + 5241 + ], + "quiet_hours_start": [ + 5241 + ], + "role": [ + 87 + ], + "roster_image_url": [ + 87 + ], + "show_match_ready_modal": [ + 7 + ], + "status": [ + 87 + ], + "steam_bans_checked_at": [ + 5244 + ], + "steam_id": [ + 314 + ], + "vac_ban_count": [ + 42 + ], + "vac_banned": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "my_friends_delete_at_path_input": { + "elo": [ + 85 + ], + "last_presence_state": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "my_friends_delete_elem_input": { + "elo": [ + 41 + ], + "last_presence_state": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "my_friends_delete_key_input": { + "elo": [ + 85 + ], + "last_presence_state": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "my_friends_inc_input": { + "days_since_last_ban": [ + 41 + ], + "faceit_elo": [ + 41 + ], + "faceit_skill_level": [ + 41 + ], + "friend_steam_id": [ + 312 + ], + "game_ban_count": [ + 41 + ], + "invited_by_steam_id": [ + 312 + ], + "premier_rank": [ + 41 + ], + "steam_id": [ + 312 + ], + "vac_ban_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "my_friends_insert_input": { + "avatar_url": [ + 85 + ], + "country": [ + 85 + ], + "created_at": [ + 5243 + ], + "custom_avatar_url": [ + 85 + ], + "days_since_last_ban": [ + 41 + ], + "discord_id": [ + 85 + ], + "elo": [ + 2439 + ], + "faceit_elo": [ + 41 + ], + "faceit_nickname": [ + 85 + ], + "faceit_player_id": [ + 85 + ], + "faceit_skill_level": [ + 41 + ], + "faceit_updated_at": [ + 5243 + ], + "faceit_url": [ + 85 + ], + "friend_steam_id": [ + 312 + ], + "game_ban_count": [ + 41 + ], + "invited_by_steam_id": [ + 312 + ], + "language": [ + 85 + ], + "last_presence_state": [ + 2439 + ], + "last_read_news_at": [ + 5243 + ], + "last_sign_in_at": [ + 5243 + ], + "name": [ + 85 + ], + "name_registered": [ + 6 + ], + "notification_timezone": [ + 85 + ], + "player": [ + 4617 + ], + "premier_rank": [ + 41 + ], + "premier_rank_updated_at": [ + 5243 + ], + "presence_updated_at": [ + 5243 + ], + "profile_url": [ + 85 + ], + "quiet_hours_end": [ + 5240 + ], + "quiet_hours_start": [ + 5240 + ], + "role": [ + 85 + ], + "roster_image_url": [ + 85 + ], + "show_match_ready_modal": [ + 6 + ], + "status": [ + 85 + ], + "steam_bans_checked_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "vac_ban_count": [ + 41 + ], + "vac_banned": [ + 6 + ], + "__typename": [ + 85 + ] + }, + "my_friends_max_fields": { + "avatar_url": [ + 85 + ], + "country": [ + 85 + ], + "created_at": [ + 5243 + ], + "custom_avatar_url": [ + 85 + ], + "days_since_last_ban": [ + 41 + ], + "discord_id": [ + 85 + ], + "faceit_elo": [ + 41 + ], + "faceit_nickname": [ + 85 + ], + "faceit_player_id": [ + 85 + ], + "faceit_skill_level": [ + 41 + ], + "faceit_updated_at": [ + 5243 + ], + "faceit_url": [ + 85 + ], + "friend_steam_id": [ + 312 + ], + "game_ban_count": [ + 41 + ], + "invited_by_steam_id": [ + 312 + ], + "language": [ + 85 + ], + "last_read_news_at": [ + 5243 + ], + "last_sign_in_at": [ + 5243 + ], + "name": [ + 85 + ], + "notification_timezone": [ + 85 + ], + "premier_rank": [ + 41 + ], + "premier_rank_updated_at": [ + 5243 + ], + "presence_updated_at": [ + 5243 + ], + "profile_url": [ + 85 + ], + "role": [ + 85 + ], + "roster_image_url": [ + 85 + ], + "status": [ + 85 + ], + "steam_bans_checked_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "vac_ban_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "my_friends_max_order_by": { + "avatar_url": [ + 3648 + ], + "country": [ + 3648 + ], + "created_at": [ + 3648 + ], + "custom_avatar_url": [ + 3648 + ], + "days_since_last_ban": [ + 3648 + ], + "discord_id": [ + 3648 + ], + "faceit_elo": [ + 3648 + ], + "faceit_nickname": [ + 3648 + ], + "faceit_player_id": [ + 3648 + ], + "faceit_skill_level": [ + 3648 + ], + "faceit_updated_at": [ + 3648 + ], + "faceit_url": [ + 3648 + ], + "friend_steam_id": [ + 3648 + ], + "game_ban_count": [ + 3648 + ], + "invited_by_steam_id": [ + 3648 + ], + "language": [ + 3648 + ], + "last_read_news_at": [ + 3648 + ], + "last_sign_in_at": [ + 3648 + ], + "name": [ + 3648 + ], + "notification_timezone": [ + 3648 + ], + "premier_rank": [ + 3648 + ], + "premier_rank_updated_at": [ + 3648 + ], + "presence_updated_at": [ + 3648 + ], + "profile_url": [ + 3648 + ], + "role": [ + 3648 + ], + "roster_image_url": [ + 3648 + ], + "status": [ + 3648 + ], + "steam_bans_checked_at": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "vac_ban_count": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "my_friends_min_fields": { + "avatar_url": [ + 85 + ], + "country": [ + 85 + ], + "created_at": [ + 5243 + ], + "custom_avatar_url": [ + 85 + ], + "days_since_last_ban": [ + 41 + ], + "discord_id": [ + 85 + ], + "faceit_elo": [ + 41 + ], + "faceit_nickname": [ + 85 + ], + "faceit_player_id": [ + 85 + ], + "faceit_skill_level": [ + 41 + ], + "faceit_updated_at": [ + 5243 + ], + "faceit_url": [ + 85 + ], + "friend_steam_id": [ + 312 + ], + "game_ban_count": [ + 41 + ], + "invited_by_steam_id": [ + 312 + ], + "language": [ + 85 + ], + "last_read_news_at": [ + 5243 + ], + "last_sign_in_at": [ + 5243 + ], + "name": [ + 85 + ], + "notification_timezone": [ + 85 + ], + "premier_rank": [ + 41 + ], + "premier_rank_updated_at": [ + 5243 + ], + "presence_updated_at": [ + 5243 + ], + "profile_url": [ + 85 + ], + "role": [ + 85 + ], + "roster_image_url": [ + 85 + ], + "status": [ + 85 + ], + "steam_bans_checked_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "vac_ban_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "my_friends_min_order_by": { + "avatar_url": [ + 3648 + ], + "country": [ + 3648 + ], + "created_at": [ + 3648 + ], + "custom_avatar_url": [ + 3648 + ], + "days_since_last_ban": [ + 3648 + ], + "discord_id": [ + 3648 + ], + "faceit_elo": [ + 3648 + ], + "faceit_nickname": [ + 3648 + ], + "faceit_player_id": [ + 3648 + ], + "faceit_skill_level": [ + 3648 + ], + "faceit_updated_at": [ + 3648 + ], + "faceit_url": [ + 3648 + ], + "friend_steam_id": [ + 3648 + ], + "game_ban_count": [ + 3648 + ], + "invited_by_steam_id": [ + 3648 + ], + "language": [ + 3648 + ], + "last_read_news_at": [ + 3648 + ], + "last_sign_in_at": [ + 3648 + ], + "name": [ + 3648 + ], + "notification_timezone": [ + 3648 + ], + "premier_rank": [ + 3648 + ], + "premier_rank_updated_at": [ + 3648 + ], + "presence_updated_at": [ + 3648 + ], + "profile_url": [ + 3648 + ], + "role": [ + 3648 + ], + "roster_image_url": [ + 3648 + ], + "status": [ + 3648 + ], + "steam_bans_checked_at": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "vac_ban_count": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "my_friends_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 3496 + ], + "__typename": [ + 85 + ] + }, + "my_friends_order_by": { + "avatar_url": [ + 3648 + ], + "country": [ + 3648 + ], + "created_at": [ + 3648 + ], + "custom_avatar_url": [ + 3648 + ], + "days_since_last_ban": [ + 3648 + ], + "discord_id": [ + 3648 + ], + "elo": [ + 3648 + ], + "faceit_elo": [ + 3648 + ], + "faceit_nickname": [ + 3648 + ], + "faceit_player_id": [ + 3648 + ], + "faceit_skill_level": [ + 3648 + ], + "faceit_updated_at": [ + 3648 + ], + "faceit_url": [ + 3648 + ], + "friend_steam_id": [ + 3648 + ], + "game_ban_count": [ + 3648 + ], + "invited_by_steam_id": [ + 3648 + ], + "language": [ + 3648 + ], + "last_presence_state": [ + 3648 + ], + "last_read_news_at": [ + 3648 + ], + "last_sign_in_at": [ + 3648 + ], + "name": [ + 3648 + ], + "name_registered": [ + 3648 + ], + "notification_timezone": [ + 3648 + ], + "player": [ + 4619 + ], + "premier_rank": [ + 3648 + ], + "premier_rank_updated_at": [ + 3648 + ], + "presence_updated_at": [ + 3648 + ], + "profile_url": [ + 3648 + ], + "quiet_hours_end": [ + 3648 + ], + "quiet_hours_start": [ + 3648 + ], + "role": [ + 3648 + ], + "roster_image_url": [ + 3648 + ], + "show_match_ready_modal": [ + 3648 + ], + "status": [ + 3648 + ], + "steam_bans_checked_at": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "vac_ban_count": [ + 3648 + ], + "vac_banned": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "my_friends_prepend_input": { + "elo": [ + 2439 + ], + "last_presence_state": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "my_friends_select_column": {}, + "my_friends_select_column_my_friends_aggregate_bool_exp_bool_and_arguments_columns": {}, + "my_friends_select_column_my_friends_aggregate_bool_exp_bool_or_arguments_columns": {}, + "my_friends_set_input": { + "avatar_url": [ + 85 + ], + "country": [ + 85 + ], + "created_at": [ + 5243 + ], + "custom_avatar_url": [ + 85 + ], + "days_since_last_ban": [ + 41 + ], + "discord_id": [ + 85 + ], + "elo": [ + 2439 + ], + "faceit_elo": [ + 41 + ], + "faceit_nickname": [ + 85 + ], + "faceit_player_id": [ + 85 + ], + "faceit_skill_level": [ + 41 + ], + "faceit_updated_at": [ + 5243 + ], + "faceit_url": [ + 85 + ], + "friend_steam_id": [ + 312 + ], + "game_ban_count": [ + 41 + ], + "invited_by_steam_id": [ + 312 + ], + "language": [ + 85 + ], + "last_presence_state": [ + 2439 + ], + "last_read_news_at": [ + 5243 + ], + "last_sign_in_at": [ + 5243 + ], + "name": [ + 85 + ], + "name_registered": [ + 6 + ], + "notification_timezone": [ + 85 + ], + "premier_rank": [ + 41 + ], + "premier_rank_updated_at": [ + 5243 + ], + "presence_updated_at": [ + 5243 + ], + "profile_url": [ + 85 + ], + "quiet_hours_end": [ + 5240 + ], + "quiet_hours_start": [ + 5240 + ], + "role": [ + 85 + ], + "roster_image_url": [ + 85 + ], + "show_match_ready_modal": [ + 6 + ], + "status": [ + 85 + ], + "steam_bans_checked_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "vac_ban_count": [ + 41 + ], + "vac_banned": [ + 6 + ], + "__typename": [ + 85 + ] + }, + "my_friends_stddev_fields": { + "days_since_last_ban": [ + 32 + ], + "faceit_elo": [ + 32 + ], + "faceit_skill_level": [ + 32 + ], + "friend_steam_id": [ + 32 + ], + "game_ban_count": [ + 32 + ], + "invited_by_steam_id": [ + 32 + ], + "premier_rank": [ + 32 + ], + "steam_id": [ + 32 + ], + "vac_ban_count": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "my_friends_stddev_order_by": { + "days_since_last_ban": [ + 3648 + ], + "faceit_elo": [ + 3648 + ], + "faceit_skill_level": [ + 3648 + ], + "friend_steam_id": [ + 3648 + ], + "game_ban_count": [ + 3648 + ], + "invited_by_steam_id": [ + 3648 + ], + "premier_rank": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "vac_ban_count": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "my_friends_stddev_pop_fields": { + "days_since_last_ban": [ + 32 + ], + "faceit_elo": [ + 32 + ], + "faceit_skill_level": [ + 32 + ], + "friend_steam_id": [ + 32 + ], + "game_ban_count": [ + 32 + ], + "invited_by_steam_id": [ + 32 + ], + "premier_rank": [ + 32 + ], + "steam_id": [ + 32 + ], + "vac_ban_count": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "my_friends_stddev_pop_order_by": { + "days_since_last_ban": [ + 3648 + ], + "faceit_elo": [ + 3648 + ], + "faceit_skill_level": [ + 3648 + ], + "friend_steam_id": [ + 3648 + ], + "game_ban_count": [ + 3648 + ], + "invited_by_steam_id": [ + 3648 + ], + "premier_rank": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "vac_ban_count": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "my_friends_stddev_samp_fields": { + "days_since_last_ban": [ + 32 + ], + "faceit_elo": [ + 32 + ], + "faceit_skill_level": [ + 32 + ], + "friend_steam_id": [ + 32 + ], + "game_ban_count": [ + 32 + ], + "invited_by_steam_id": [ + 32 + ], + "premier_rank": [ + 32 + ], + "steam_id": [ + 32 + ], + "vac_ban_count": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "my_friends_stddev_samp_order_by": { + "days_since_last_ban": [ + 3648 + ], + "faceit_elo": [ + 3648 + ], + "faceit_skill_level": [ + 3648 + ], + "friend_steam_id": [ + 3648 + ], + "game_ban_count": [ + 3648 + ], + "invited_by_steam_id": [ + 3648 + ], + "premier_rank": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "vac_ban_count": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "my_friends_stream_cursor_input": { + "initial_value": [ + 3532 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "my_friends_stream_cursor_value_input": { + "avatar_url": [ + 85 + ], + "country": [ + 85 + ], + "created_at": [ + 5243 + ], + "custom_avatar_url": [ + 85 + ], + "days_since_last_ban": [ + 41 + ], + "discord_id": [ + 85 + ], + "elo": [ + 2439 + ], + "faceit_elo": [ + 41 + ], + "faceit_nickname": [ + 85 + ], + "faceit_player_id": [ + 85 + ], + "faceit_skill_level": [ + 41 + ], + "faceit_updated_at": [ + 5243 + ], + "faceit_url": [ + 85 + ], + "friend_steam_id": [ + 312 + ], + "game_ban_count": [ + 41 + ], + "invited_by_steam_id": [ + 312 + ], + "language": [ + 85 + ], + "last_presence_state": [ + 2439 + ], + "last_read_news_at": [ + 5243 + ], + "last_sign_in_at": [ + 5243 + ], + "name": [ + 85 + ], + "name_registered": [ + 6 + ], + "notification_timezone": [ + 85 + ], + "premier_rank": [ + 41 + ], + "premier_rank_updated_at": [ + 5243 + ], + "presence_updated_at": [ + 5243 + ], + "profile_url": [ + 85 + ], + "quiet_hours_end": [ + 5240 + ], + "quiet_hours_start": [ + 5240 + ], + "role": [ + 85 + ], + "roster_image_url": [ + 85 + ], + "show_match_ready_modal": [ + 6 + ], + "status": [ + 85 + ], + "steam_bans_checked_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "vac_ban_count": [ + 41 + ], + "vac_banned": [ + 6 + ], + "__typename": [ + 85 + ] + }, + "my_friends_sum_fields": { + "days_since_last_ban": [ + 41 + ], + "faceit_elo": [ + 41 + ], + "faceit_skill_level": [ + 41 + ], + "friend_steam_id": [ + 312 + ], + "game_ban_count": [ + 41 + ], + "invited_by_steam_id": [ + 312 + ], + "premier_rank": [ + 41 + ], + "steam_id": [ + 312 + ], + "vac_ban_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "my_friends_sum_order_by": { + "days_since_last_ban": [ + 3648 + ], + "faceit_elo": [ + 3648 + ], + "faceit_skill_level": [ + 3648 + ], + "friend_steam_id": [ + 3648 + ], + "game_ban_count": [ + 3648 + ], + "invited_by_steam_id": [ + 3648 + ], + "premier_rank": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "vac_ban_count": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "my_friends_updates": { + "_append": [ + 3504 + ], + "_delete_at_path": [ + 3509 + ], + "_delete_elem": [ + 3510 + ], + "_delete_key": [ + 3511 + ], + "_inc": [ + 3512 + ], + "_prepend": [ + 3520 + ], + "_set": [ + 3524 + ], + "where": [ + 3508 + ], + "__typename": [ + 85 + ] + }, + "my_friends_var_pop_fields": { + "days_since_last_ban": [ + 32 + ], + "faceit_elo": [ + 32 + ], + "faceit_skill_level": [ + 32 + ], + "friend_steam_id": [ + 32 + ], + "game_ban_count": [ + 32 + ], + "invited_by_steam_id": [ + 32 + ], + "premier_rank": [ + 32 + ], + "steam_id": [ + 32 + ], + "vac_ban_count": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "my_friends_var_pop_order_by": { + "days_since_last_ban": [ + 3648 + ], + "faceit_elo": [ + 3648 + ], + "faceit_skill_level": [ + 3648 + ], + "friend_steam_id": [ + 3648 + ], + "game_ban_count": [ + 3648 + ], + "invited_by_steam_id": [ + 3648 + ], + "premier_rank": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "vac_ban_count": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "my_friends_var_samp_fields": { + "days_since_last_ban": [ + 32 + ], + "faceit_elo": [ + 32 + ], + "faceit_skill_level": [ + 32 + ], + "friend_steam_id": [ + 32 + ], + "game_ban_count": [ + 32 + ], + "invited_by_steam_id": [ + 32 + ], + "premier_rank": [ + 32 + ], + "steam_id": [ + 32 + ], + "vac_ban_count": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "my_friends_var_samp_order_by": { + "days_since_last_ban": [ + 3648 + ], + "faceit_elo": [ + 3648 + ], + "faceit_skill_level": [ + 3648 + ], + "friend_steam_id": [ + 3648 + ], + "game_ban_count": [ + 3648 + ], + "invited_by_steam_id": [ + 3648 + ], + "premier_rank": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "vac_ban_count": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "my_friends_variance_fields": { + "days_since_last_ban": [ + 32 + ], + "faceit_elo": [ + 32 + ], + "faceit_skill_level": [ + 32 + ], + "friend_steam_id": [ + 32 + ], + "game_ban_count": [ + 32 + ], + "invited_by_steam_id": [ + 32 + ], + "premier_rank": [ + 32 + ], + "steam_id": [ + 32 + ], + "vac_ban_count": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "my_friends_variance_order_by": { + "days_since_last_ban": [ + 3648 + ], + "faceit_elo": [ + 3648 + ], + "faceit_skill_level": [ + 3648 + ], + "friend_steam_id": [ + 3648 + ], + "game_ban_count": [ + 3648 + ], + "invited_by_steam_id": [ + 3648 + ], + "premier_rank": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "vac_ban_count": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "news_articles": { + "author": [ + 4606 + ], + "author_steam_id": [ + 312 + ], + "content_markdown": [ + 85 + ], + "cover_image_url": [ + 85 + ], + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "published_at": [ + 5243 + ], + "slug": [ + 85 + ], + "status": [ + 85 + ], + "teaser": [ + 85 + ], + "title": [ + 85 + ], + "updated_at": [ + 5243 + ], + "view_count": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "news_articles_aggregate": { + "aggregate": [ + 3544 + ], + "nodes": [ + 3542 + ], + "__typename": [ + 85 + ] + }, + "news_articles_aggregate_fields": { + "avg": [ + 3545 + ], + "count": [ + 41, + { + "columns": [ + 3556, + "[news_articles_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 3550 + ], + "min": [ + 3551 + ], + "stddev": [ + 3558 + ], + "stddev_pop": [ + 3559 + ], + "stddev_samp": [ + 3560 + ], + "sum": [ + 3563 + ], + "var_pop": [ + 3566 + ], + "var_samp": [ + 3567 + ], + "variance": [ + 3568 + ], + "__typename": [ + 85 + ] + }, + "news_articles_avg_fields": { + "author_steam_id": [ + 32 + ], + "view_count": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "news_articles_bool_exp": { + "_and": [ + 3546 + ], + "_not": [ + 3546 + ], + "_or": [ + 3546 + ], + "author": [ + 4610 + ], + "author_steam_id": [ + 314 + ], + "content_markdown": [ + 87 + ], + "cover_image_url": [ + 87 + ], + "created_at": [ + 5244 + ], + "id": [ + 6674 + ], + "published_at": [ + 5244 + ], + "slug": [ + 87 + ], + "status": [ + 87 + ], + "teaser": [ + 87 + ], + "title": [ + 87 + ], + "updated_at": [ + 5244 + ], + "view_count": [ + 314 + ], + "__typename": [ + 85 + ] + }, + "news_articles_constraint": {}, + "news_articles_inc_input": { + "author_steam_id": [ + 312 + ], + "view_count": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "news_articles_insert_input": { + "author": [ + 4617 + ], + "author_steam_id": [ + 312 + ], + "content_markdown": [ + 85 + ], + "cover_image_url": [ + 85 + ], + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "published_at": [ + 5243 + ], + "slug": [ + 85 + ], + "status": [ + 85 + ], + "teaser": [ + 85 + ], + "title": [ + 85 + ], + "updated_at": [ + 5243 + ], + "view_count": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "news_articles_max_fields": { + "author_steam_id": [ + 312 + ], + "content_markdown": [ + 85 + ], + "cover_image_url": [ + 85 + ], + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "published_at": [ + 5243 + ], + "slug": [ + 85 + ], + "status": [ + 85 + ], + "teaser": [ + 85 + ], + "title": [ + 85 + ], + "updated_at": [ + 5243 + ], + "view_count": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "news_articles_min_fields": { + "author_steam_id": [ + 312 + ], + "content_markdown": [ + 85 + ], + "cover_image_url": [ + 85 + ], + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "published_at": [ + 5243 + ], + "slug": [ + 85 + ], + "status": [ + 85 + ], + "teaser": [ + 85 + ], + "title": [ + 85 + ], + "updated_at": [ + 5243 + ], + "view_count": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "news_articles_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 3542 + ], + "__typename": [ + 85 + ] + }, + "news_articles_on_conflict": { + "constraint": [ + 3547 + ], + "update_columns": [ + 3564 + ], + "where": [ + 3546 + ], + "__typename": [ + 85 + ] + }, + "news_articles_order_by": { + "author": [ + 4619 + ], + "author_steam_id": [ + 3648 + ], + "content_markdown": [ + 3648 + ], + "cover_image_url": [ + 3648 + ], + "created_at": [ + 3648 + ], + "id": [ + 3648 + ], + "published_at": [ + 3648 + ], + "slug": [ + 3648 + ], + "status": [ + 3648 + ], + "teaser": [ + 3648 + ], + "title": [ + 3648 + ], + "updated_at": [ + 3648 + ], + "view_count": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "news_articles_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "news_articles_select_column": {}, + "news_articles_set_input": { + "author_steam_id": [ + 312 + ], + "content_markdown": [ + 85 + ], + "cover_image_url": [ + 85 + ], + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "published_at": [ + 5243 + ], + "slug": [ + 85 + ], + "status": [ + 85 + ], + "teaser": [ + 85 + ], + "title": [ + 85 + ], + "updated_at": [ + 5243 + ], + "view_count": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "news_articles_stddev_fields": { + "author_steam_id": [ + 32 + ], + "view_count": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "news_articles_stddev_pop_fields": { + "author_steam_id": [ + 32 + ], + "view_count": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "news_articles_stddev_samp_fields": { + "author_steam_id": [ + 32 + ], + "view_count": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "news_articles_stream_cursor_input": { + "initial_value": [ + 3562 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "news_articles_stream_cursor_value_input": { + "author_steam_id": [ + 312 + ], + "content_markdown": [ + 85 + ], + "cover_image_url": [ + 85 + ], + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "published_at": [ + 5243 + ], + "slug": [ + 85 + ], + "status": [ + 85 + ], + "teaser": [ + 85 + ], + "title": [ + 85 + ], + "updated_at": [ + 5243 + ], + "view_count": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "news_articles_sum_fields": { + "author_steam_id": [ + 312 + ], + "view_count": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "news_articles_update_column": {}, + "news_articles_updates": { + "_inc": [ + 3548 + ], + "_set": [ + 3557 + ], + "where": [ + 3546 + ], + "__typename": [ + 85 + ] + }, + "news_articles_var_pop_fields": { + "author_steam_id": [ + 32 + ], + "view_count": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "news_articles_var_samp_fields": { + "author_steam_id": [ + 32 + ], + "view_count": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "news_articles_variance_fields": { + "author_steam_id": [ + 32 + ], + "view_count": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "notification_preferences": { + "channel": [ + 85 + ], + "enabled": [ + 6 + ], + "key": [ + 85 + ], + "steam_id": [ + 312 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "notification_preferences_aggregate": { + "aggregate": [ + 3571 + ], + "nodes": [ + 3569 + ], + "__typename": [ + 85 + ] + }, + "notification_preferences_aggregate_fields": { + "avg": [ + 3572 + ], + "count": [ + 41, + { + "columns": [ + 3583, + "[notification_preferences_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 3577 + ], + "min": [ + 3578 + ], + "stddev": [ + 3585 + ], + "stddev_pop": [ + 3586 + ], + "stddev_samp": [ + 3587 + ], + "sum": [ + 3590 + ], + "var_pop": [ + 3593 + ], + "var_samp": [ + 3594 + ], + "variance": [ + 3595 + ], + "__typename": [ + 85 + ] + }, + "notification_preferences_avg_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "notification_preferences_bool_exp": { + "_and": [ + 3573 + ], + "_not": [ + 3573 + ], + "_or": [ + 3573 + ], + "channel": [ + 87 + ], + "enabled": [ + 7 + ], + "key": [ + 87 + ], + "steam_id": [ + 314 + ], + "updated_at": [ + 5244 + ], + "__typename": [ + 85 + ] + }, + "notification_preferences_constraint": {}, + "notification_preferences_inc_input": { + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "notification_preferences_insert_input": { + "channel": [ + 85 + ], + "enabled": [ + 6 + ], + "key": [ + 85 + ], + "steam_id": [ + 312 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "notification_preferences_max_fields": { + "channel": [ + 85 + ], + "key": [ + 85 + ], + "steam_id": [ + 312 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "notification_preferences_min_fields": { + "channel": [ + 85 + ], + "key": [ + 85 + ], + "steam_id": [ + 312 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "notification_preferences_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 3569 + ], + "__typename": [ + 85 + ] + }, + "notification_preferences_on_conflict": { + "constraint": [ + 3574 + ], + "update_columns": [ + 3591 + ], + "where": [ + 3573 + ], + "__typename": [ + 85 + ] + }, + "notification_preferences_order_by": { + "channel": [ + 3648 + ], + "enabled": [ + 3648 + ], + "key": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "updated_at": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "notification_preferences_pk_columns_input": { + "channel": [ + 85 + ], + "key": [ + 85 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "notification_preferences_select_column": {}, + "notification_preferences_set_input": { + "channel": [ + 85 + ], + "enabled": [ + 6 + ], + "key": [ + 85 + ], + "steam_id": [ + 312 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "notification_preferences_stddev_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "notification_preferences_stddev_pop_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "notification_preferences_stddev_samp_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "notification_preferences_stream_cursor_input": { + "initial_value": [ + 3589 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "notification_preferences_stream_cursor_value_input": { + "channel": [ + 85 + ], + "enabled": [ + 6 + ], + "key": [ + 85 + ], + "steam_id": [ + 312 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "notification_preferences_sum_fields": { + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "notification_preferences_update_column": {}, + "notification_preferences_updates": { + "_inc": [ + 3575 + ], + "_set": [ + 3584 + ], + "where": [ + 3573 + ], + "__typename": [ + 85 + ] + }, + "notification_preferences_var_pop_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "notification_preferences_var_samp_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "notification_preferences_variance_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "notifications": { + "actions": [ + 2439, + { + "path": [ + 85 + ] + } + ], + "created_at": [ + 5243 + ], + "data": [ + 2439, + { + "path": [ + 85 + ] + } + ], + "deletable": [ + 6 + ], + "deleted_at": [ + 5243 + ], + "entity_id": [ + 85 + ], + "id": [ + 6672 + ], + "in_app": [ + 6 + ], + "is_read": [ + 6 + ], + "message": [ + 85 + ], + "player": [ + 4606 + ], + "role": [ + 1286 + ], + "steam_id": [ + 312 + ], + "title": [ + 85 + ], + "type": [ + 1246 + ], + "__typename": [ + 85 + ] + }, + "notifications_aggregate": { + "aggregate": [ + 3602 + ], + "nodes": [ + 3596 + ], + "__typename": [ + 85 + ] + }, + "notifications_aggregate_bool_exp": { + "bool_and": [ + 3599 + ], + "bool_or": [ + 3600 + ], + "count": [ + 3601 + ], + "__typename": [ + 85 + ] + }, + "notifications_aggregate_bool_exp_bool_and": { + "arguments": [ + 3625 + ], + "distinct": [ + 6 + ], + "filter": [ + 3608 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "notifications_aggregate_bool_exp_bool_or": { + "arguments": [ + 3626 + ], + "distinct": [ + 6 + ], + "filter": [ + 3608 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "notifications_aggregate_bool_exp_count": { + "arguments": [ + 3624 + ], + "distinct": [ + 6 + ], + "filter": [ + 3608 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "notifications_aggregate_fields": { + "avg": [ + 3606 + ], + "count": [ + 41, + { + "columns": [ + 3624, + "[notifications_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 3615 + ], + "min": [ + 3617 + ], + "stddev": [ + 3628 + ], + "stddev_pop": [ + 3630 + ], + "stddev_samp": [ + 3632 + ], + "sum": [ + 3636 + ], + "var_pop": [ + 3640 + ], + "var_samp": [ + 3642 + ], + "variance": [ + 3644 + ], + "__typename": [ + 85 + ] + }, + "notifications_aggregate_order_by": { + "avg": [ + 3607 + ], + "count": [ + 3648 + ], + "max": [ + 3616 + ], + "min": [ + 3618 + ], + "stddev": [ + 3629 + ], + "stddev_pop": [ + 3631 + ], + "stddev_samp": [ + 3633 + ], + "sum": [ + 3637 + ], + "var_pop": [ + 3641 + ], + "var_samp": [ + 3643 + ], + "variance": [ + 3645 + ], + "__typename": [ + 85 + ] + }, + "notifications_append_input": { + "actions": [ + 2439 + ], + "data": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "notifications_arr_rel_insert_input": { + "data": [ + 3614 + ], + "on_conflict": [ + 3620 + ], + "__typename": [ + 85 + ] + }, + "notifications_avg_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "notifications_avg_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "notifications_bool_exp": { + "_and": [ + 3608 + ], + "_not": [ + 3608 + ], + "_or": [ + 3608 + ], + "actions": [ + 2441 + ], + "created_at": [ + 5244 + ], + "data": [ + 2441 + ], + "deletable": [ + 7 + ], + "deleted_at": [ + 5244 + ], + "entity_id": [ + 87 + ], + "id": [ + 6674 + ], + "in_app": [ + 7 + ], + "is_read": [ + 7 + ], + "message": [ + 87 + ], + "player": [ + 4610 + ], + "role": [ + 1287 + ], + "steam_id": [ + 314 + ], + "title": [ + 87 + ], + "type": [ + 1247 + ], + "__typename": [ + 85 + ] + }, + "notifications_constraint": {}, + "notifications_delete_at_path_input": { + "actions": [ + 85 + ], + "data": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "notifications_delete_elem_input": { + "actions": [ + 41 + ], + "data": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "notifications_delete_key_input": { + "actions": [ + 85 + ], + "data": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "notifications_inc_input": { + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "notifications_insert_input": { + "actions": [ + 2439 + ], + "created_at": [ + 5243 + ], + "data": [ + 2439 + ], + "deletable": [ + 6 + ], + "deleted_at": [ + 5243 + ], + "entity_id": [ + 85 + ], + "id": [ + 6672 + ], + "in_app": [ + 6 + ], + "is_read": [ + 6 + ], + "message": [ + 85 + ], + "player": [ + 4617 + ], + "role": [ + 1286 + ], + "steam_id": [ + 312 + ], + "title": [ + 85 + ], + "type": [ + 1246 + ], + "__typename": [ + 85 + ] + }, + "notifications_max_fields": { + "created_at": [ + 5243 + ], + "deleted_at": [ + 5243 + ], + "entity_id": [ + 85 + ], + "id": [ + 6672 + ], + "message": [ + 85 + ], + "steam_id": [ + 312 + ], + "title": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "notifications_max_order_by": { + "created_at": [ + 3648 + ], + "deleted_at": [ + 3648 + ], + "entity_id": [ + 3648 + ], + "id": [ + 3648 + ], + "message": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "title": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "notifications_min_fields": { + "created_at": [ + 5243 + ], + "deleted_at": [ + 5243 + ], + "entity_id": [ + 85 + ], + "id": [ + 6672 + ], + "message": [ + 85 + ], + "steam_id": [ + 312 + ], + "title": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "notifications_min_order_by": { + "created_at": [ + 3648 + ], + "deleted_at": [ + 3648 + ], + "entity_id": [ + 3648 + ], + "id": [ + 3648 + ], + "message": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "title": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "notifications_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 3596 + ], + "__typename": [ + 85 + ] + }, + "notifications_on_conflict": { + "constraint": [ + 3609 + ], + "update_columns": [ + 3638 + ], + "where": [ + 3608 + ], + "__typename": [ + 85 + ] + }, + "notifications_order_by": { + "actions": [ + 3648 + ], + "created_at": [ + 3648 + ], + "data": [ + 3648 + ], + "deletable": [ + 3648 + ], + "deleted_at": [ + 3648 + ], + "entity_id": [ + 3648 + ], + "id": [ + 3648 + ], + "in_app": [ + 3648 + ], + "is_read": [ + 3648 + ], + "message": [ + 3648 + ], + "player": [ + 4619 + ], + "role": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "title": [ + 3648 + ], + "type": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "notifications_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "notifications_prepend_input": { + "actions": [ + 2439 + ], + "data": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "notifications_select_column": {}, + "notifications_select_column_notifications_aggregate_bool_exp_bool_and_arguments_columns": {}, + "notifications_select_column_notifications_aggregate_bool_exp_bool_or_arguments_columns": {}, + "notifications_set_input": { + "actions": [ + 2439 + ], + "created_at": [ + 5243 + ], + "data": [ + 2439 + ], + "deletable": [ + 6 + ], + "deleted_at": [ + 5243 + ], + "entity_id": [ + 85 + ], + "id": [ + 6672 + ], + "in_app": [ + 6 + ], + "is_read": [ + 6 + ], + "message": [ + 85 + ], + "role": [ + 1286 + ], + "steam_id": [ + 312 + ], + "title": [ + 85 + ], + "type": [ + 1246 + ], + "__typename": [ + 85 + ] + }, + "notifications_stddev_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "notifications_stddev_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "notifications_stddev_pop_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "notifications_stddev_pop_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "notifications_stddev_samp_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "notifications_stddev_samp_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "notifications_stream_cursor_input": { + "initial_value": [ + 3635 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "notifications_stream_cursor_value_input": { + "actions": [ + 2439 + ], + "created_at": [ + 5243 + ], + "data": [ + 2439 + ], + "deletable": [ + 6 + ], + "deleted_at": [ + 5243 + ], + "entity_id": [ + 85 + ], + "id": [ + 6672 + ], + "in_app": [ + 6 + ], + "is_read": [ + 6 + ], + "message": [ + 85 + ], + "role": [ + 1286 + ], + "steam_id": [ + 312 + ], + "title": [ + 85 + ], + "type": [ + 1246 + ], + "__typename": [ + 85 + ] + }, + "notifications_sum_fields": { + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "notifications_sum_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "notifications_update_column": {}, + "notifications_updates": { + "_append": [ + 3604 + ], + "_delete_at_path": [ + 3610 + ], + "_delete_elem": [ + 3611 + ], + "_delete_key": [ + 3612 + ], + "_inc": [ + 3613 + ], + "_prepend": [ + 3623 + ], + "_set": [ + 3627 + ], + "where": [ + 3608 + ], + "__typename": [ + 85 + ] + }, + "notifications_var_pop_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "notifications_var_pop_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "notifications_var_samp_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "notifications_var_samp_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "notifications_variance_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "notifications_variance_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "numeric": {}, + "numeric_comparison_exp": { + "_eq": [ + 3646 + ], + "_gt": [ + 3646 + ], + "_gte": [ + 3646 + ], + "_in": [ + 3646 + ], + "_is_null": [ + 6 + ], + "_lt": [ + 3646 + ], + "_lte": [ + 3646 + ], + "_neq": [ + 3646 + ], + "_nin": [ + 3646 + ], + "__typename": [ + 85 + ] + }, + "order_by": {}, + "pending_match_import_players": { + "created_at": [ + 5243 + ], + "pending_match_import": [ + 3690 + ], + "player": [ + 4606 + ], + "steam_id": [ + 312 + ], + "valve_match_id": [ + 3646 + ], + "__typename": [ + 85 + ] + }, + "pending_match_import_players_aggregate": { + "aggregate": [ + 3653 + ], + "nodes": [ + 3649 + ], + "__typename": [ + 85 + ] + }, + "pending_match_import_players_aggregate_bool_exp": { + "count": [ + 3652 + ], + "__typename": [ + 85 + ] + }, + "pending_match_import_players_aggregate_bool_exp_count": { + "arguments": [ + 3670 + ], + "distinct": [ + 6 + ], + "filter": [ + 3658 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "pending_match_import_players_aggregate_fields": { + "avg": [ + 3656 + ], + "count": [ + 41, + { + "columns": [ + 3670, + "[pending_match_import_players_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 3662 + ], + "min": [ + 3664 + ], + "stddev": [ + 3672 + ], + "stddev_pop": [ + 3674 + ], + "stddev_samp": [ + 3676 + ], + "sum": [ + 3680 + ], + "var_pop": [ + 3684 + ], + "var_samp": [ + 3686 + ], + "variance": [ + 3688 + ], + "__typename": [ + 85 + ] + }, + "pending_match_import_players_aggregate_order_by": { + "avg": [ + 3657 + ], + "count": [ + 3648 + ], + "max": [ + 3663 + ], + "min": [ + 3665 + ], + "stddev": [ + 3673 + ], + "stddev_pop": [ + 3675 + ], + "stddev_samp": [ + 3677 + ], + "sum": [ + 3681 + ], + "var_pop": [ + 3685 + ], + "var_samp": [ + 3687 + ], + "variance": [ + 3689 + ], + "__typename": [ + 85 + ] + }, + "pending_match_import_players_arr_rel_insert_input": { + "data": [ + 3661 + ], + "on_conflict": [ + 3667 + ], + "__typename": [ + 85 + ] + }, + "pending_match_import_players_avg_fields": { + "steam_id": [ + 32 + ], + "valve_match_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "pending_match_import_players_avg_order_by": { + "steam_id": [ + 3648 + ], + "valve_match_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "pending_match_import_players_bool_exp": { + "_and": [ + 3658 + ], + "_not": [ + 3658 + ], + "_or": [ + 3658 + ], + "created_at": [ + 5244 + ], + "pending_match_import": [ + 3694 + ], + "player": [ + 4610 + ], + "steam_id": [ + 314 + ], + "valve_match_id": [ + 3647 + ], + "__typename": [ + 85 + ] + }, + "pending_match_import_players_constraint": {}, + "pending_match_import_players_inc_input": { + "steam_id": [ + 312 + ], + "valve_match_id": [ + 3646 + ], + "__typename": [ + 85 + ] + }, + "pending_match_import_players_insert_input": { + "created_at": [ + 5243 + ], + "pending_match_import": [ + 3701 + ], + "player": [ + 4617 + ], + "steam_id": [ + 312 + ], + "valve_match_id": [ + 3646 + ], + "__typename": [ + 85 + ] + }, + "pending_match_import_players_max_fields": { + "created_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "valve_match_id": [ + 3646 + ], + "__typename": [ + 85 + ] + }, + "pending_match_import_players_max_order_by": { + "created_at": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "valve_match_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "pending_match_import_players_min_fields": { + "created_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "valve_match_id": [ + 3646 + ], + "__typename": [ + 85 + ] + }, + "pending_match_import_players_min_order_by": { + "created_at": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "valve_match_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "pending_match_import_players_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 3649 + ], + "__typename": [ + 85 + ] + }, + "pending_match_import_players_on_conflict": { + "constraint": [ + 3659 + ], + "update_columns": [ + 3682 + ], + "where": [ + 3658 + ], + "__typename": [ + 85 + ] + }, + "pending_match_import_players_order_by": { + "created_at": [ + 3648 + ], + "pending_match_import": [ + 3703 + ], + "player": [ + 4619 + ], + "steam_id": [ + 3648 + ], + "valve_match_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "pending_match_import_players_pk_columns_input": { + "steam_id": [ + 312 + ], + "valve_match_id": [ + 3646 + ], + "__typename": [ + 85 + ] + }, + "pending_match_import_players_select_column": {}, + "pending_match_import_players_set_input": { + "created_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "valve_match_id": [ + 3646 + ], + "__typename": [ + 85 + ] + }, + "pending_match_import_players_stddev_fields": { + "steam_id": [ + 32 + ], + "valve_match_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "pending_match_import_players_stddev_order_by": { + "steam_id": [ + 3648 + ], + "valve_match_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "pending_match_import_players_stddev_pop_fields": { + "steam_id": [ + 32 + ], + "valve_match_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "pending_match_import_players_stddev_pop_order_by": { + "steam_id": [ + 3648 + ], + "valve_match_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "pending_match_import_players_stddev_samp_fields": { + "steam_id": [ + 32 + ], + "valve_match_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "pending_match_import_players_stddev_samp_order_by": { + "steam_id": [ + 3648 + ], + "valve_match_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "pending_match_import_players_stream_cursor_input": { + "initial_value": [ + 3679 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "pending_match_import_players_stream_cursor_value_input": { + "created_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "valve_match_id": [ + 3646 + ], + "__typename": [ + 85 + ] + }, + "pending_match_import_players_sum_fields": { + "steam_id": [ + 312 + ], + "valve_match_id": [ + 3646 + ], + "__typename": [ + 85 + ] + }, + "pending_match_import_players_sum_order_by": { + "steam_id": [ + 3648 + ], + "valve_match_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "pending_match_import_players_update_column": {}, + "pending_match_import_players_updates": { + "_inc": [ + 3660 + ], + "_set": [ + 3671 + ], + "where": [ + 3658 + ], + "__typename": [ + 85 + ] + }, + "pending_match_import_players_var_pop_fields": { + "steam_id": [ + 32 + ], + "valve_match_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "pending_match_import_players_var_pop_order_by": { + "steam_id": [ + 3648 + ], + "valve_match_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "pending_match_import_players_var_samp_fields": { + "steam_id": [ + 32 + ], + "valve_match_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "pending_match_import_players_var_samp_order_by": { + "steam_id": [ + 3648 + ], + "valve_match_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "pending_match_import_players_variance_fields": { + "steam_id": [ + 32 + ], + "valve_match_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "pending_match_import_players_variance_order_by": { + "steam_id": [ + 3648 + ], + "valve_match_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "pending_match_imports": { + "created_at": [ + 5243 + ], + "demo_url": [ + 85 + ], + "error": [ + 85 + ], + "map_name": [ + 85 + ], + "match_start_time": [ + 5243 + ], + "players": [ + 3649, + { + "distinct_on": [ + 3670, + "[pending_match_import_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3668, + "[pending_match_import_players_order_by!]" + ], + "where": [ + 3658 + ] + } + ], + "players_aggregate": [ + 3650, + { + "distinct_on": [ + 3670, + "[pending_match_import_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3668, + "[pending_match_import_players_order_by!]" + ], + "where": [ + 3658 + ] + } + ], + "share_code": [ + 85 + ], + "status": [ + 85 + ], + "updated_at": [ + 5243 + ], + "valve_match_id": [ + 3646 + ], + "__typename": [ + 85 + ] + }, + "pending_match_imports_aggregate": { + "aggregate": [ + 3692 + ], + "nodes": [ + 3690 + ], + "__typename": [ + 85 + ] + }, + "pending_match_imports_aggregate_fields": { + "avg": [ + 3693 + ], + "count": [ + 41, + { + "columns": [ + 3705, + "[pending_match_imports_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 3698 + ], + "min": [ + 3699 + ], + "stddev": [ + 3707 + ], + "stddev_pop": [ + 3708 + ], + "stddev_samp": [ + 3709 + ], + "sum": [ + 3712 + ], + "var_pop": [ + 3715 + ], + "var_samp": [ + 3716 + ], + "variance": [ + 3717 + ], + "__typename": [ + 85 + ] + }, + "pending_match_imports_avg_fields": { + "valve_match_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "pending_match_imports_bool_exp": { + "_and": [ + 3694 + ], + "_not": [ + 3694 + ], + "_or": [ + 3694 + ], + "created_at": [ + 5244 + ], + "demo_url": [ + 87 + ], + "error": [ + 87 + ], + "map_name": [ + 87 + ], + "match_start_time": [ + 5244 + ], + "players": [ + 3658 + ], + "players_aggregate": [ + 3651 + ], + "share_code": [ + 87 + ], + "status": [ + 87 + ], + "updated_at": [ + 5244 + ], + "valve_match_id": [ + 3647 + ], + "__typename": [ + 85 + ] + }, + "pending_match_imports_constraint": {}, + "pending_match_imports_inc_input": { + "valve_match_id": [ + 3646 + ], + "__typename": [ + 85 + ] + }, + "pending_match_imports_insert_input": { + "created_at": [ + 5243 + ], + "demo_url": [ + 85 + ], + "error": [ + 85 + ], + "map_name": [ + 85 + ], + "match_start_time": [ + 5243 + ], + "players": [ + 3655 + ], + "share_code": [ + 85 + ], + "status": [ + 85 + ], + "updated_at": [ + 5243 + ], + "valve_match_id": [ + 3646 + ], + "__typename": [ + 85 + ] + }, + "pending_match_imports_max_fields": { + "created_at": [ + 5243 + ], + "demo_url": [ + 85 + ], + "error": [ + 85 + ], + "map_name": [ + 85 + ], + "match_start_time": [ + 5243 + ], + "share_code": [ + 85 + ], + "status": [ + 85 + ], + "updated_at": [ + 5243 + ], + "valve_match_id": [ + 3646 + ], + "__typename": [ + 85 + ] + }, + "pending_match_imports_min_fields": { + "created_at": [ + 5243 + ], + "demo_url": [ + 85 + ], + "error": [ + 85 + ], + "map_name": [ + 85 + ], + "match_start_time": [ + 5243 + ], + "share_code": [ + 85 + ], + "status": [ + 85 + ], + "updated_at": [ + 5243 + ], + "valve_match_id": [ + 3646 + ], + "__typename": [ + 85 + ] + }, + "pending_match_imports_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 3690 + ], + "__typename": [ + 85 + ] + }, + "pending_match_imports_obj_rel_insert_input": { + "data": [ + 3697 + ], + "on_conflict": [ + 3702 + ], + "__typename": [ + 85 + ] + }, + "pending_match_imports_on_conflict": { + "constraint": [ + 3695 + ], + "update_columns": [ + 3713 + ], + "where": [ + 3694 + ], + "__typename": [ + 85 + ] + }, + "pending_match_imports_order_by": { + "created_at": [ + 3648 + ], + "demo_url": [ + 3648 + ], + "error": [ + 3648 + ], + "map_name": [ + 3648 + ], + "match_start_time": [ + 3648 + ], + "players_aggregate": [ + 3654 + ], + "share_code": [ + 3648 + ], + "status": [ + 3648 + ], + "updated_at": [ + 3648 + ], + "valve_match_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "pending_match_imports_pk_columns_input": { + "valve_match_id": [ + 3646 + ], + "__typename": [ + 85 + ] + }, + "pending_match_imports_select_column": {}, + "pending_match_imports_set_input": { + "created_at": [ + 5243 + ], + "demo_url": [ + 85 + ], + "error": [ + 85 + ], + "map_name": [ + 85 + ], + "match_start_time": [ + 5243 + ], + "share_code": [ + 85 + ], + "status": [ + 85 + ], + "updated_at": [ + 5243 + ], + "valve_match_id": [ + 3646 + ], + "__typename": [ + 85 + ] + }, + "pending_match_imports_stddev_fields": { + "valve_match_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "pending_match_imports_stddev_pop_fields": { + "valve_match_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "pending_match_imports_stddev_samp_fields": { + "valve_match_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "pending_match_imports_stream_cursor_input": { + "initial_value": [ + 3711 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "pending_match_imports_stream_cursor_value_input": { + "created_at": [ + 5243 + ], + "demo_url": [ + 85 + ], + "error": [ + 85 + ], + "map_name": [ + 85 + ], + "match_start_time": [ + 5243 + ], + "share_code": [ + 85 + ], + "status": [ + 85 + ], + "updated_at": [ + 5243 + ], + "valve_match_id": [ + 3646 + ], + "__typename": [ + 85 + ] + }, + "pending_match_imports_sum_fields": { + "valve_match_id": [ + 3646 + ], + "__typename": [ + 85 + ] + }, + "pending_match_imports_update_column": {}, + "pending_match_imports_updates": { + "_inc": [ + 3696 + ], + "_set": [ + 3706 + ], + "where": [ + 3694 + ], + "__typename": [ + 85 + ] + }, + "pending_match_imports_var_pop_fields": { + "valve_match_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "pending_match_imports_var_samp_fields": { + "valve_match_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "pending_match_imports_variance_fields": { + "valve_match_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_aim_stats_demo": { + "attacker": [ + 4606 + ], + "attacker_steam_id": [ + 312 + ], + "counter_strafe_eligible_shots": [ + 41 + ], + "counter_strafed_shots": [ + 41 + ], + "crosshair_angle_count": [ + 41 + ], + "crosshair_angle_sum_deg": [ + 3646 + ], + "first_bullet_hits": [ + 41 + ], + "first_bullet_shots": [ + 41 + ], + "headshot_hits": [ + 41 + ], + "hits": [ + 41 + ], + "hits_at_spotted": [ + 41 + ], + "match": [ + 3432 + ], + "match_id": [ + 6672 + ], + "match_map": [ + 3248 + ], + "match_map_id": [ + 6672 + ], + "non_awp_hits": [ + 41 + ], + "on_target_frames": [ + 41 + ], + "shots_at_spotted": [ + 41 + ], + "spray_hits": [ + 41 + ], + "spray_shots": [ + 41 + ], + "time_to_damage_count": [ + 41 + ], + "time_to_damage_sum_s": [ + 3646 + ], + "total_engagement_frames": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "player_aim_stats_demo_aggregate": { + "aggregate": [ + 3720 + ], + "nodes": [ + 3718 + ], + "__typename": [ + 85 + ] + }, + "player_aim_stats_demo_aggregate_fields": { + "avg": [ + 3721 + ], + "count": [ + 41, + { + "columns": [ + 3732, + "[player_aim_stats_demo_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 3726 + ], + "min": [ + 3727 + ], + "stddev": [ + 3734 + ], + "stddev_pop": [ + 3735 + ], + "stddev_samp": [ + 3736 + ], + "sum": [ + 3739 + ], + "var_pop": [ + 3742 + ], + "var_samp": [ + 3743 + ], + "variance": [ + 3744 + ], + "__typename": [ + 85 + ] + }, + "player_aim_stats_demo_avg_fields": { + "attacker_steam_id": [ + 32 + ], + "counter_strafe_eligible_shots": [ + 32 + ], + "counter_strafed_shots": [ + 32 + ], + "crosshair_angle_count": [ + 32 + ], + "crosshair_angle_sum_deg": [ + 32 + ], + "first_bullet_hits": [ + 32 + ], + "first_bullet_shots": [ + 32 + ], + "headshot_hits": [ + 32 + ], + "hits": [ + 32 + ], + "hits_at_spotted": [ + 32 + ], + "non_awp_hits": [ + 32 + ], + "on_target_frames": [ + 32 + ], + "shots_at_spotted": [ + 32 + ], + "spray_hits": [ + 32 + ], + "spray_shots": [ + 32 + ], + "time_to_damage_count": [ + 32 + ], + "time_to_damage_sum_s": [ + 32 + ], + "total_engagement_frames": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_aim_stats_demo_bool_exp": { + "_and": [ + 3722 + ], + "_not": [ + 3722 + ], + "_or": [ + 3722 + ], + "attacker": [ + 4610 + ], + "attacker_steam_id": [ + 314 + ], + "counter_strafe_eligible_shots": [ + 42 + ], + "counter_strafed_shots": [ + 42 + ], + "crosshair_angle_count": [ + 42 + ], + "crosshair_angle_sum_deg": [ + 3647 + ], + "first_bullet_hits": [ + 42 + ], + "first_bullet_shots": [ + 42 + ], + "headshot_hits": [ + 42 + ], + "hits": [ + 42 + ], + "hits_at_spotted": [ + 42 + ], + "match": [ + 3443 + ], + "match_id": [ + 6674 + ], + "match_map": [ + 3257 + ], + "match_map_id": [ + 6674 + ], + "non_awp_hits": [ + 42 + ], + "on_target_frames": [ + 42 + ], + "shots_at_spotted": [ + 42 + ], + "spray_hits": [ + 42 + ], + "spray_shots": [ + 42 + ], + "time_to_damage_count": [ + 42 + ], + "time_to_damage_sum_s": [ + 3647 + ], + "total_engagement_frames": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "player_aim_stats_demo_constraint": {}, + "player_aim_stats_demo_inc_input": { + "attacker_steam_id": [ + 312 + ], + "counter_strafe_eligible_shots": [ + 41 + ], + "counter_strafed_shots": [ + 41 + ], + "crosshair_angle_count": [ + 41 + ], + "crosshair_angle_sum_deg": [ + 3646 + ], + "first_bullet_hits": [ + 41 + ], + "first_bullet_shots": [ + 41 + ], + "headshot_hits": [ + 41 + ], + "hits": [ + 41 + ], + "hits_at_spotted": [ + 41 + ], + "non_awp_hits": [ + 41 + ], + "on_target_frames": [ + 41 + ], + "shots_at_spotted": [ + 41 + ], + "spray_hits": [ + 41 + ], + "spray_shots": [ + 41 + ], + "time_to_damage_count": [ + 41 + ], + "time_to_damage_sum_s": [ + 3646 + ], + "total_engagement_frames": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "player_aim_stats_demo_insert_input": { + "attacker": [ + 4617 + ], + "attacker_steam_id": [ + 312 + ], + "counter_strafe_eligible_shots": [ + 41 + ], + "counter_strafed_shots": [ + 41 + ], + "crosshair_angle_count": [ + 41 + ], + "crosshair_angle_sum_deg": [ + 3646 + ], + "first_bullet_hits": [ + 41 + ], + "first_bullet_shots": [ + 41 + ], + "headshot_hits": [ + 41 + ], + "hits": [ + 41 + ], + "hits_at_spotted": [ + 41 + ], + "match": [ + 3452 + ], + "match_id": [ + 6672 + ], + "match_map": [ + 3266 + ], + "match_map_id": [ + 6672 + ], + "non_awp_hits": [ + 41 + ], + "on_target_frames": [ + 41 + ], + "shots_at_spotted": [ + 41 + ], + "spray_hits": [ + 41 + ], + "spray_shots": [ + 41 + ], + "time_to_damage_count": [ + 41 + ], + "time_to_damage_sum_s": [ + 3646 + ], + "total_engagement_frames": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "player_aim_stats_demo_max_fields": { + "attacker_steam_id": [ + 312 + ], + "counter_strafe_eligible_shots": [ + 41 + ], + "counter_strafed_shots": [ + 41 + ], + "crosshair_angle_count": [ + 41 + ], + "crosshair_angle_sum_deg": [ + 3646 + ], + "first_bullet_hits": [ + 41 + ], + "first_bullet_shots": [ + 41 + ], + "headshot_hits": [ + 41 + ], + "hits": [ + 41 + ], + "hits_at_spotted": [ + 41 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "non_awp_hits": [ + 41 + ], + "on_target_frames": [ + 41 + ], + "shots_at_spotted": [ + 41 + ], + "spray_hits": [ + 41 + ], + "spray_shots": [ + 41 + ], + "time_to_damage_count": [ + 41 + ], + "time_to_damage_sum_s": [ + 3646 + ], + "total_engagement_frames": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "player_aim_stats_demo_min_fields": { + "attacker_steam_id": [ + 312 + ], + "counter_strafe_eligible_shots": [ + 41 + ], + "counter_strafed_shots": [ + 41 + ], + "crosshair_angle_count": [ + 41 + ], + "crosshair_angle_sum_deg": [ + 3646 + ], + "first_bullet_hits": [ + 41 + ], + "first_bullet_shots": [ + 41 + ], + "headshot_hits": [ + 41 + ], + "hits": [ + 41 + ], + "hits_at_spotted": [ + 41 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "non_awp_hits": [ + 41 + ], + "on_target_frames": [ + 41 + ], + "shots_at_spotted": [ + 41 + ], + "spray_hits": [ + 41 + ], + "spray_shots": [ + 41 + ], + "time_to_damage_count": [ + 41 + ], + "time_to_damage_sum_s": [ + 3646 + ], + "total_engagement_frames": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "player_aim_stats_demo_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 3718 + ], + "__typename": [ + 85 + ] + }, + "player_aim_stats_demo_on_conflict": { + "constraint": [ + 3723 + ], + "update_columns": [ + 3740 + ], + "where": [ + 3722 + ], + "__typename": [ + 85 + ] + }, + "player_aim_stats_demo_order_by": { + "attacker": [ + 4619 + ], + "attacker_steam_id": [ + 3648 + ], + "counter_strafe_eligible_shots": [ + 3648 + ], + "counter_strafed_shots": [ + 3648 + ], + "crosshair_angle_count": [ + 3648 + ], + "crosshair_angle_sum_deg": [ + 3648 + ], + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "headshot_hits": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_at_spotted": [ + 3648 + ], + "match": [ + 3454 + ], + "match_id": [ + 3648 + ], + "match_map": [ + 3268 + ], + "match_map_id": [ + 3648 + ], + "non_awp_hits": [ + 3648 + ], + "on_target_frames": [ + 3648 + ], + "shots_at_spotted": [ + 3648 + ], + "spray_hits": [ + 3648 + ], + "spray_shots": [ + 3648 + ], + "time_to_damage_count": [ + 3648 + ], + "time_to_damage_sum_s": [ + 3648 + ], + "total_engagement_frames": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_aim_stats_demo_pk_columns_input": { + "attacker_steam_id": [ + 312 + ], + "match_map_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "player_aim_stats_demo_select_column": {}, + "player_aim_stats_demo_set_input": { + "attacker_steam_id": [ + 312 + ], + "counter_strafe_eligible_shots": [ + 41 + ], + "counter_strafed_shots": [ + 41 + ], + "crosshair_angle_count": [ + 41 + ], + "crosshair_angle_sum_deg": [ + 3646 + ], + "first_bullet_hits": [ + 41 + ], + "first_bullet_shots": [ + 41 + ], + "headshot_hits": [ + 41 + ], + "hits": [ + 41 + ], + "hits_at_spotted": [ + 41 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "non_awp_hits": [ + 41 + ], + "on_target_frames": [ + 41 + ], + "shots_at_spotted": [ + 41 + ], + "spray_hits": [ + 41 + ], + "spray_shots": [ + 41 + ], + "time_to_damage_count": [ + 41 + ], + "time_to_damage_sum_s": [ + 3646 + ], + "total_engagement_frames": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "player_aim_stats_demo_stddev_fields": { + "attacker_steam_id": [ + 32 + ], + "counter_strafe_eligible_shots": [ + 32 + ], + "counter_strafed_shots": [ + 32 + ], + "crosshair_angle_count": [ + 32 + ], + "crosshair_angle_sum_deg": [ + 32 + ], + "first_bullet_hits": [ + 32 + ], + "first_bullet_shots": [ + 32 + ], + "headshot_hits": [ + 32 + ], + "hits": [ + 32 + ], + "hits_at_spotted": [ + 32 + ], + "non_awp_hits": [ + 32 + ], + "on_target_frames": [ + 32 + ], + "shots_at_spotted": [ + 32 + ], + "spray_hits": [ + 32 + ], + "spray_shots": [ + 32 + ], + "time_to_damage_count": [ + 32 + ], + "time_to_damage_sum_s": [ + 32 + ], + "total_engagement_frames": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_aim_stats_demo_stddev_pop_fields": { + "attacker_steam_id": [ + 32 + ], + "counter_strafe_eligible_shots": [ + 32 + ], + "counter_strafed_shots": [ + 32 + ], + "crosshair_angle_count": [ + 32 + ], + "crosshair_angle_sum_deg": [ + 32 + ], + "first_bullet_hits": [ + 32 + ], + "first_bullet_shots": [ + 32 + ], + "headshot_hits": [ + 32 + ], + "hits": [ + 32 + ], + "hits_at_spotted": [ + 32 + ], + "non_awp_hits": [ + 32 + ], + "on_target_frames": [ + 32 + ], + "shots_at_spotted": [ + 32 + ], + "spray_hits": [ + 32 + ], + "spray_shots": [ + 32 + ], + "time_to_damage_count": [ + 32 + ], + "time_to_damage_sum_s": [ + 32 + ], + "total_engagement_frames": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_aim_stats_demo_stddev_samp_fields": { + "attacker_steam_id": [ + 32 + ], + "counter_strafe_eligible_shots": [ + 32 + ], + "counter_strafed_shots": [ + 32 + ], + "crosshair_angle_count": [ + 32 + ], + "crosshair_angle_sum_deg": [ + 32 + ], + "first_bullet_hits": [ + 32 + ], + "first_bullet_shots": [ + 32 + ], + "headshot_hits": [ + 32 + ], + "hits": [ + 32 + ], + "hits_at_spotted": [ + 32 + ], + "non_awp_hits": [ + 32 + ], + "on_target_frames": [ + 32 + ], + "shots_at_spotted": [ + 32 + ], + "spray_hits": [ + 32 + ], + "spray_shots": [ + 32 + ], + "time_to_damage_count": [ + 32 + ], + "time_to_damage_sum_s": [ + 32 + ], + "total_engagement_frames": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_aim_stats_demo_stream_cursor_input": { + "initial_value": [ + 3738 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "player_aim_stats_demo_stream_cursor_value_input": { + "attacker_steam_id": [ + 312 + ], + "counter_strafe_eligible_shots": [ + 41 + ], + "counter_strafed_shots": [ + 41 + ], + "crosshair_angle_count": [ + 41 + ], + "crosshair_angle_sum_deg": [ + 3646 + ], + "first_bullet_hits": [ + 41 + ], + "first_bullet_shots": [ + 41 + ], + "headshot_hits": [ + 41 + ], + "hits": [ + 41 + ], + "hits_at_spotted": [ + 41 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "non_awp_hits": [ + 41 + ], + "on_target_frames": [ + 41 + ], + "shots_at_spotted": [ + 41 + ], + "spray_hits": [ + 41 + ], + "spray_shots": [ + 41 + ], + "time_to_damage_count": [ + 41 + ], + "time_to_damage_sum_s": [ + 3646 + ], + "total_engagement_frames": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "player_aim_stats_demo_sum_fields": { + "attacker_steam_id": [ + 312 + ], + "counter_strafe_eligible_shots": [ + 41 + ], + "counter_strafed_shots": [ + 41 + ], + "crosshair_angle_count": [ + 41 + ], + "crosshair_angle_sum_deg": [ + 3646 + ], + "first_bullet_hits": [ + 41 + ], + "first_bullet_shots": [ + 41 + ], + "headshot_hits": [ + 41 + ], + "hits": [ + 41 + ], + "hits_at_spotted": [ + 41 + ], + "non_awp_hits": [ + 41 + ], + "on_target_frames": [ + 41 + ], + "shots_at_spotted": [ + 41 + ], + "spray_hits": [ + 41 + ], + "spray_shots": [ + 41 + ], + "time_to_damage_count": [ + 41 + ], + "time_to_damage_sum_s": [ + 3646 + ], + "total_engagement_frames": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "player_aim_stats_demo_update_column": {}, + "player_aim_stats_demo_updates": { + "_inc": [ + 3724 + ], + "_set": [ + 3733 + ], + "where": [ + 3722 + ], + "__typename": [ + 85 + ] + }, + "player_aim_stats_demo_var_pop_fields": { + "attacker_steam_id": [ + 32 + ], + "counter_strafe_eligible_shots": [ + 32 + ], + "counter_strafed_shots": [ + 32 + ], + "crosshair_angle_count": [ + 32 + ], + "crosshair_angle_sum_deg": [ + 32 + ], + "first_bullet_hits": [ + 32 + ], + "first_bullet_shots": [ + 32 + ], + "headshot_hits": [ + 32 + ], + "hits": [ + 32 + ], + "hits_at_spotted": [ + 32 + ], + "non_awp_hits": [ + 32 + ], + "on_target_frames": [ + 32 + ], + "shots_at_spotted": [ + 32 + ], + "spray_hits": [ + 32 + ], + "spray_shots": [ + 32 + ], + "time_to_damage_count": [ + 32 + ], + "time_to_damage_sum_s": [ + 32 + ], + "total_engagement_frames": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_aim_stats_demo_var_samp_fields": { + "attacker_steam_id": [ + 32 + ], + "counter_strafe_eligible_shots": [ + 32 + ], + "counter_strafed_shots": [ + 32 + ], + "crosshair_angle_count": [ + 32 + ], + "crosshair_angle_sum_deg": [ + 32 + ], + "first_bullet_hits": [ + 32 + ], + "first_bullet_shots": [ + 32 + ], + "headshot_hits": [ + 32 + ], + "hits": [ + 32 + ], + "hits_at_spotted": [ + 32 + ], + "non_awp_hits": [ + 32 + ], + "on_target_frames": [ + 32 + ], + "shots_at_spotted": [ + 32 + ], + "spray_hits": [ + 32 + ], + "spray_shots": [ + 32 + ], + "time_to_damage_count": [ + 32 + ], + "time_to_damage_sum_s": [ + 32 + ], + "total_engagement_frames": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_aim_stats_demo_variance_fields": { + "attacker_steam_id": [ + 32 + ], + "counter_strafe_eligible_shots": [ + 32 + ], + "counter_strafed_shots": [ + 32 + ], + "crosshair_angle_count": [ + 32 + ], + "crosshair_angle_sum_deg": [ + 32 + ], + "first_bullet_hits": [ + 32 + ], + "first_bullet_shots": [ + 32 + ], + "headshot_hits": [ + 32 + ], + "hits": [ + 32 + ], + "hits_at_spotted": [ + 32 + ], + "non_awp_hits": [ + 32 + ], + "on_target_frames": [ + 32 + ], + "shots_at_spotted": [ + 32 + ], + "spray_hits": [ + 32 + ], + "spray_shots": [ + 32 + ], + "time_to_damage_count": [ + 32 + ], + "time_to_damage_sum_s": [ + 32 + ], + "total_engagement_frames": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_aim_weapon_stats": { + "first_bullet_hits": [ + 41 + ], + "first_bullet_shots": [ + 41 + ], + "hits": [ + 41 + ], + "hits_spotted": [ + 41 + ], + "match": [ + 3432 + ], + "match_id": [ + 6672 + ], + "match_map": [ + 3248 + ], + "match_map_id": [ + 6672 + ], + "player": [ + 4606 + ], + "shots": [ + 41 + ], + "shots_spotted": [ + 41 + ], + "steam_id": [ + 312 + ], + "weapon_class": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "player_aim_weapon_stats_aggregate": { + "aggregate": [ + 3749 + ], + "nodes": [ + 3745 + ], + "__typename": [ + 85 + ] + }, + "player_aim_weapon_stats_aggregate_bool_exp": { + "count": [ + 3748 + ], + "__typename": [ + 85 + ] + }, + "player_aim_weapon_stats_aggregate_bool_exp_count": { + "arguments": [ + 3766 + ], + "distinct": [ + 6 + ], + "filter": [ + 3754 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "player_aim_weapon_stats_aggregate_fields": { + "avg": [ + 3752 + ], + "count": [ + 41, + { + "columns": [ + 3766, + "[player_aim_weapon_stats_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 3758 + ], + "min": [ + 3760 + ], + "stddev": [ + 3768 + ], + "stddev_pop": [ + 3770 + ], + "stddev_samp": [ + 3772 + ], + "sum": [ + 3776 + ], + "var_pop": [ + 3780 + ], + "var_samp": [ + 3782 + ], + "variance": [ + 3784 + ], + "__typename": [ + 85 + ] + }, + "player_aim_weapon_stats_aggregate_order_by": { + "avg": [ + 3753 + ], + "count": [ + 3648 + ], + "max": [ + 3759 + ], + "min": [ + 3761 + ], + "stddev": [ + 3769 + ], + "stddev_pop": [ + 3771 + ], + "stddev_samp": [ + 3773 + ], + "sum": [ + 3777 + ], + "var_pop": [ + 3781 + ], + "var_samp": [ + 3783 + ], + "variance": [ + 3785 + ], + "__typename": [ + 85 + ] + }, + "player_aim_weapon_stats_arr_rel_insert_input": { + "data": [ + 3757 + ], + "on_conflict": [ + 3763 + ], + "__typename": [ + 85 + ] + }, + "player_aim_weapon_stats_avg_fields": { + "first_bullet_hits": [ + 32 + ], + "first_bullet_shots": [ + 32 + ], + "hits": [ + 32 + ], + "hits_spotted": [ + 32 + ], + "shots": [ + 32 + ], + "shots_spotted": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_aim_weapon_stats_avg_order_by": { + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_spotted": [ + 3648 + ], + "shots": [ + 3648 + ], + "shots_spotted": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_aim_weapon_stats_bool_exp": { + "_and": [ + 3754 + ], + "_not": [ + 3754 + ], + "_or": [ + 3754 + ], + "first_bullet_hits": [ + 42 + ], + "first_bullet_shots": [ + 42 + ], + "hits": [ + 42 + ], + "hits_spotted": [ + 42 + ], + "match": [ + 3443 + ], + "match_id": [ + 6674 + ], + "match_map": [ + 3257 + ], + "match_map_id": [ + 6674 + ], + "player": [ + 4610 + ], + "shots": [ + 42 + ], + "shots_spotted": [ + 42 + ], + "steam_id": [ + 314 + ], + "weapon_class": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "player_aim_weapon_stats_constraint": {}, + "player_aim_weapon_stats_inc_input": { + "first_bullet_hits": [ + 41 + ], + "first_bullet_shots": [ + 41 + ], + "hits": [ + 41 + ], + "hits_spotted": [ + 41 + ], + "shots": [ + 41 + ], + "shots_spotted": [ + 41 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "player_aim_weapon_stats_insert_input": { + "first_bullet_hits": [ + 41 + ], + "first_bullet_shots": [ + 41 + ], + "hits": [ + 41 + ], + "hits_spotted": [ + 41 + ], + "match": [ + 3452 + ], + "match_id": [ + 6672 + ], + "match_map": [ + 3266 + ], + "match_map_id": [ + 6672 + ], + "player": [ + 4617 + ], + "shots": [ + 41 + ], + "shots_spotted": [ + 41 + ], + "steam_id": [ + 312 + ], + "weapon_class": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "player_aim_weapon_stats_max_fields": { + "first_bullet_hits": [ + 41 + ], + "first_bullet_shots": [ + 41 + ], + "hits": [ + 41 + ], + "hits_spotted": [ + 41 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "shots": [ + 41 + ], + "shots_spotted": [ + 41 + ], + "steam_id": [ + 312 + ], + "weapon_class": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "player_aim_weapon_stats_max_order_by": { + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_spotted": [ + 3648 + ], + "match_id": [ + 3648 + ], + "match_map_id": [ + 3648 + ], + "shots": [ + 3648 + ], + "shots_spotted": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "weapon_class": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_aim_weapon_stats_min_fields": { + "first_bullet_hits": [ + 41 + ], + "first_bullet_shots": [ + 41 + ], + "hits": [ + 41 + ], + "hits_spotted": [ + 41 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "shots": [ + 41 + ], + "shots_spotted": [ + 41 + ], + "steam_id": [ + 312 + ], + "weapon_class": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "player_aim_weapon_stats_min_order_by": { + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_spotted": [ + 3648 + ], + "match_id": [ + 3648 + ], + "match_map_id": [ + 3648 + ], + "shots": [ + 3648 + ], + "shots_spotted": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "weapon_class": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_aim_weapon_stats_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 3745 + ], + "__typename": [ + 85 + ] + }, + "player_aim_weapon_stats_on_conflict": { + "constraint": [ + 3755 + ], + "update_columns": [ + 3778 + ], + "where": [ + 3754 + ], + "__typename": [ + 85 + ] + }, + "player_aim_weapon_stats_order_by": { + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_spotted": [ + 3648 + ], + "match": [ + 3454 + ], + "match_id": [ + 3648 + ], + "match_map": [ + 3268 + ], + "match_map_id": [ + 3648 + ], + "player": [ + 4619 + ], + "shots": [ + 3648 + ], + "shots_spotted": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "weapon_class": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_aim_weapon_stats_pk_columns_input": { + "match_map_id": [ + 6672 + ], + "steam_id": [ + 312 + ], + "weapon_class": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "player_aim_weapon_stats_select_column": {}, + "player_aim_weapon_stats_set_input": { + "first_bullet_hits": [ + 41 + ], + "first_bullet_shots": [ + 41 + ], + "hits": [ + 41 + ], + "hits_spotted": [ + 41 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "shots": [ + 41 + ], + "shots_spotted": [ + 41 + ], + "steam_id": [ + 312 + ], + "weapon_class": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "player_aim_weapon_stats_stddev_fields": { + "first_bullet_hits": [ + 32 + ], + "first_bullet_shots": [ + 32 + ], + "hits": [ + 32 + ], + "hits_spotted": [ + 32 + ], + "shots": [ + 32 + ], + "shots_spotted": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_aim_weapon_stats_stddev_order_by": { + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_spotted": [ + 3648 + ], + "shots": [ + 3648 + ], + "shots_spotted": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_aim_weapon_stats_stddev_pop_fields": { + "first_bullet_hits": [ + 32 + ], + "first_bullet_shots": [ + 32 + ], + "hits": [ + 32 + ], + "hits_spotted": [ + 32 + ], + "shots": [ + 32 + ], + "shots_spotted": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_aim_weapon_stats_stddev_pop_order_by": { + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_spotted": [ + 3648 + ], + "shots": [ + 3648 + ], + "shots_spotted": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_aim_weapon_stats_stddev_samp_fields": { + "first_bullet_hits": [ + 32 + ], + "first_bullet_shots": [ + 32 + ], + "hits": [ + 32 + ], + "hits_spotted": [ + 32 + ], + "shots": [ + 32 + ], + "shots_spotted": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_aim_weapon_stats_stddev_samp_order_by": { + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_spotted": [ + 3648 + ], + "shots": [ + 3648 + ], + "shots_spotted": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_aim_weapon_stats_stream_cursor_input": { + "initial_value": [ + 3775 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "player_aim_weapon_stats_stream_cursor_value_input": { + "first_bullet_hits": [ + 41 + ], + "first_bullet_shots": [ + 41 + ], + "hits": [ + 41 + ], + "hits_spotted": [ + 41 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "shots": [ + 41 + ], + "shots_spotted": [ + 41 + ], + "steam_id": [ + 312 + ], + "weapon_class": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "player_aim_weapon_stats_sum_fields": { + "first_bullet_hits": [ + 41 + ], + "first_bullet_shots": [ + 41 + ], + "hits": [ + 41 + ], + "hits_spotted": [ + 41 + ], + "shots": [ + 41 + ], + "shots_spotted": [ + 41 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "player_aim_weapon_stats_sum_order_by": { + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_spotted": [ + 3648 + ], + "shots": [ + 3648 + ], + "shots_spotted": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_aim_weapon_stats_update_column": {}, + "player_aim_weapon_stats_updates": { + "_inc": [ + 3756 + ], + "_set": [ + 3767 + ], + "where": [ + 3754 + ], + "__typename": [ + 85 + ] + }, + "player_aim_weapon_stats_var_pop_fields": { + "first_bullet_hits": [ + 32 + ], + "first_bullet_shots": [ + 32 + ], + "hits": [ + 32 + ], + "hits_spotted": [ + 32 + ], + "shots": [ + 32 + ], + "shots_spotted": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_aim_weapon_stats_var_pop_order_by": { + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_spotted": [ + 3648 + ], + "shots": [ + 3648 + ], + "shots_spotted": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_aim_weapon_stats_var_samp_fields": { + "first_bullet_hits": [ + 32 + ], + "first_bullet_shots": [ + 32 + ], + "hits": [ + 32 + ], + "hits_spotted": [ + 32 + ], + "shots": [ + 32 + ], + "shots_spotted": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_aim_weapon_stats_var_samp_order_by": { + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_spotted": [ + 3648 + ], + "shots": [ + 3648 + ], + "shots_spotted": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_aim_weapon_stats_variance_fields": { + "first_bullet_hits": [ + 32 + ], + "first_bullet_shots": [ + 32 + ], + "hits": [ + 32 + ], + "hits_spotted": [ + 32 + ], + "shots": [ + 32 + ], + "shots_spotted": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_aim_weapon_stats_variance_order_by": { + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_spotted": [ + 3648 + ], + "shots": [ + 3648 + ], + "shots_spotted": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_assists": { + "attacked_player": [ + 4606 + ], + "attacked_steam_id": [ + 312 + ], + "attacked_team": [ + 85 + ], + "attacker_steam_id": [ + 312 + ], + "attacker_team": [ + 85 + ], + "deleted_at": [ + 5243 + ], + "flash": [ + 6 + ], + "is_team_assist": [ + 6 + ], + "match": [ + 3432 + ], + "match_id": [ + 6672 + ], + "match_map": [ + 3248 + ], + "match_map_id": [ + 6672 + ], + "player": [ + 4606 + ], + "round": [ + 41 + ], + "time": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "player_assists_aggregate": { + "aggregate": [ + 3792 + ], + "nodes": [ + 3786 + ], + "__typename": [ + 85 + ] + }, + "player_assists_aggregate_bool_exp": { + "bool_and": [ + 3789 + ], + "bool_or": [ + 3790 + ], + "count": [ + 3791 + ], + "__typename": [ + 85 + ] + }, + "player_assists_aggregate_bool_exp_bool_and": { + "arguments": [ + 3810 + ], + "distinct": [ + 6 + ], + "filter": [ + 3797 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "player_assists_aggregate_bool_exp_bool_or": { + "arguments": [ + 3811 + ], + "distinct": [ + 6 + ], + "filter": [ + 3797 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "player_assists_aggregate_bool_exp_count": { + "arguments": [ + 3809 + ], + "distinct": [ + 6 + ], + "filter": [ + 3797 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "player_assists_aggregate_fields": { + "avg": [ + 3795 + ], + "count": [ + 41, + { + "columns": [ + 3809, + "[player_assists_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 3801 + ], + "min": [ + 3803 + ], + "stddev": [ + 3813 + ], + "stddev_pop": [ + 3815 + ], + "stddev_samp": [ + 3817 + ], + "sum": [ + 3821 + ], + "var_pop": [ + 3825 + ], + "var_samp": [ + 3827 + ], + "variance": [ + 3829 + ], + "__typename": [ + 85 + ] + }, + "player_assists_aggregate_order_by": { + "avg": [ + 3796 + ], + "count": [ + 3648 + ], + "max": [ + 3802 + ], + "min": [ + 3804 + ], + "stddev": [ + 3814 + ], + "stddev_pop": [ + 3816 + ], + "stddev_samp": [ + 3818 + ], + "sum": [ + 3822 + ], + "var_pop": [ + 3826 + ], + "var_samp": [ + 3828 + ], + "variance": [ + 3830 + ], + "__typename": [ + 85 + ] + }, + "player_assists_arr_rel_insert_input": { + "data": [ + 3800 + ], + "on_conflict": [ + 3806 + ], + "__typename": [ + 85 + ] + }, + "player_assists_avg_fields": { + "attacked_steam_id": [ + 32 + ], + "attacker_steam_id": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_assists_avg_order_by": { + "attacked_steam_id": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_assists_bool_exp": { + "_and": [ + 3797 + ], + "_not": [ + 3797 + ], + "_or": [ + 3797 + ], + "attacked_player": [ + 4610 + ], + "attacked_steam_id": [ + 314 + ], + "attacked_team": [ + 87 + ], + "attacker_steam_id": [ + 314 + ], + "attacker_team": [ + 87 + ], + "deleted_at": [ + 5244 + ], + "flash": [ + 7 + ], + "is_team_assist": [ + 7 + ], + "match": [ + 3443 + ], + "match_id": [ + 6674 + ], + "match_map": [ + 3257 + ], + "match_map_id": [ + 6674 + ], + "player": [ + 4610 + ], + "round": [ + 42 + ], + "time": [ + 5244 + ], + "__typename": [ + 85 + ] + }, + "player_assists_constraint": {}, + "player_assists_inc_input": { + "attacked_steam_id": [ + 312 + ], + "attacker_steam_id": [ + 312 + ], + "round": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "player_assists_insert_input": { + "attacked_player": [ + 4617 + ], + "attacked_steam_id": [ + 312 + ], + "attacked_team": [ + 85 + ], + "attacker_steam_id": [ + 312 + ], + "attacker_team": [ + 85 + ], + "deleted_at": [ + 5243 + ], + "flash": [ + 6 + ], + "match": [ + 3452 + ], + "match_id": [ + 6672 + ], + "match_map": [ + 3266 + ], + "match_map_id": [ + 6672 + ], + "player": [ + 4617 + ], + "round": [ + 41 + ], + "time": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "player_assists_max_fields": { + "attacked_steam_id": [ + 312 + ], + "attacked_team": [ + 85 + ], + "attacker_steam_id": [ + 312 + ], + "attacker_team": [ + 85 + ], + "deleted_at": [ + 5243 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "round": [ + 41 + ], + "time": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "player_assists_max_order_by": { + "attacked_steam_id": [ + 3648 + ], + "attacked_team": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "attacker_team": [ + 3648 + ], + "deleted_at": [ + 3648 + ], + "match_id": [ + 3648 + ], + "match_map_id": [ + 3648 + ], + "round": [ + 3648 + ], + "time": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_assists_min_fields": { + "attacked_steam_id": [ + 312 + ], + "attacked_team": [ + 85 + ], + "attacker_steam_id": [ + 312 + ], + "attacker_team": [ + 85 + ], + "deleted_at": [ + 5243 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "round": [ + 41 + ], + "time": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "player_assists_min_order_by": { + "attacked_steam_id": [ + 3648 + ], + "attacked_team": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "attacker_team": [ + 3648 + ], + "deleted_at": [ + 3648 + ], + "match_id": [ + 3648 + ], + "match_map_id": [ + 3648 + ], + "round": [ + 3648 + ], + "time": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_assists_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 3786 + ], + "__typename": [ + 85 + ] + }, + "player_assists_on_conflict": { + "constraint": [ + 3798 + ], + "update_columns": [ + 3823 + ], + "where": [ + 3797 + ], + "__typename": [ + 85 + ] + }, + "player_assists_order_by": { + "attacked_player": [ + 4619 + ], + "attacked_steam_id": [ + 3648 + ], + "attacked_team": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "attacker_team": [ + 3648 + ], + "deleted_at": [ + 3648 + ], + "flash": [ + 3648 + ], + "is_team_assist": [ + 3648 + ], + "match": [ + 3454 + ], + "match_id": [ + 3648 + ], + "match_map": [ + 3268 + ], + "match_map_id": [ + 3648 + ], + "player": [ + 4619 + ], + "round": [ + 3648 + ], + "time": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_assists_pk_columns_input": { + "attacked_steam_id": [ + 312 + ], + "attacker_steam_id": [ + 312 + ], + "match_map_id": [ + 6672 + ], + "time": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "player_assists_select_column": {}, + "player_assists_select_column_player_assists_aggregate_bool_exp_bool_and_arguments_columns": {}, + "player_assists_select_column_player_assists_aggregate_bool_exp_bool_or_arguments_columns": {}, + "player_assists_set_input": { + "attacked_steam_id": [ + 312 + ], + "attacked_team": [ + 85 + ], + "attacker_steam_id": [ + 312 + ], + "attacker_team": [ + 85 + ], + "deleted_at": [ + 5243 + ], + "flash": [ + 6 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "round": [ + 41 + ], + "time": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "player_assists_stddev_fields": { + "attacked_steam_id": [ + 32 + ], + "attacker_steam_id": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_assists_stddev_order_by": { + "attacked_steam_id": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_assists_stddev_pop_fields": { + "attacked_steam_id": [ + 32 + ], + "attacker_steam_id": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_assists_stddev_pop_order_by": { + "attacked_steam_id": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_assists_stddev_samp_fields": { + "attacked_steam_id": [ + 32 + ], + "attacker_steam_id": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_assists_stddev_samp_order_by": { + "attacked_steam_id": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_assists_stream_cursor_input": { + "initial_value": [ + 3820 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "player_assists_stream_cursor_value_input": { + "attacked_steam_id": [ + 312 + ], + "attacked_team": [ + 85 + ], + "attacker_steam_id": [ + 312 + ], + "attacker_team": [ + 85 + ], + "deleted_at": [ + 5243 + ], + "flash": [ + 6 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "round": [ + 41 + ], + "time": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "player_assists_sum_fields": { + "attacked_steam_id": [ + 312 + ], + "attacker_steam_id": [ + 312 + ], + "round": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "player_assists_sum_order_by": { + "attacked_steam_id": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_assists_update_column": {}, + "player_assists_updates": { + "_inc": [ + 3799 + ], + "_set": [ + 3812 + ], + "where": [ + 3797 + ], + "__typename": [ + 85 + ] + }, + "player_assists_var_pop_fields": { + "attacked_steam_id": [ + 32 + ], + "attacker_steam_id": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_assists_var_pop_order_by": { + "attacked_steam_id": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_assists_var_samp_fields": { + "attacked_steam_id": [ + 32 + ], + "attacker_steam_id": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_assists_var_samp_order_by": { + "attacked_steam_id": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_assists_variance_fields": { + "attacked_steam_id": [ + 32 + ], + "attacker_steam_id": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_assists_variance_order_by": { + "attacked_steam_id": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_career_stats_v": { + "accuracy": [ + 3646 + ], + "accuracy_spotted": [ + 3646 + ], + "counter_strafe_pct": [ + 3646 + ], + "crosshair_deg": [ + 3646 + ], + "enemy_blind_pr": [ + 3646 + ], + "flash_assists_pr": [ + 3646 + ], + "hs_pct": [ + 3646 + ], + "kast_pct": [ + 3646 + ], + "maps": [ + 41 + ], + "premier_rank": [ + 41 + ], + "rounds": [ + 41 + ], + "steam_id": [ + 312 + ], + "survival_pct": [ + 3646 + ], + "time_to_damage_s": [ + 3646 + ], + "traded_death_pct": [ + 3646 + ], + "util_efficiency": [ + 3646 + ], + "__typename": [ + 85 + ] + }, + "player_career_stats_v_aggregate": { + "aggregate": [ + 3833 + ], + "nodes": [ + 3831 + ], + "__typename": [ + 85 + ] + }, + "player_career_stats_v_aggregate_fields": { + "avg": [ + 3834 + ], + "count": [ + 41, + { + "columns": [ + 3839, + "[player_career_stats_v_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 3836 + ], + "min": [ + 3837 + ], + "stddev": [ + 3840 + ], + "stddev_pop": [ + 3841 + ], + "stddev_samp": [ + 3842 + ], + "sum": [ + 3845 + ], + "var_pop": [ + 3846 + ], + "var_samp": [ + 3847 + ], + "variance": [ + 3848 + ], + "__typename": [ + 85 + ] + }, + "player_career_stats_v_avg_fields": { + "accuracy": [ + 32 + ], + "accuracy_spotted": [ + 32 + ], + "counter_strafe_pct": [ + 32 + ], + "crosshair_deg": [ + 32 + ], + "enemy_blind_pr": [ + 32 + ], + "flash_assists_pr": [ + 32 + ], + "hs_pct": [ + 32 + ], + "kast_pct": [ + 32 + ], + "maps": [ + 32 + ], + "premier_rank": [ + 32 + ], + "rounds": [ + 32 + ], + "steam_id": [ + 32 + ], + "survival_pct": [ + 32 + ], + "time_to_damage_s": [ + 32 + ], + "traded_death_pct": [ + 32 + ], + "util_efficiency": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_career_stats_v_bool_exp": { + "_and": [ + 3835 + ], + "_not": [ + 3835 + ], + "_or": [ + 3835 + ], + "accuracy": [ + 3647 + ], + "accuracy_spotted": [ + 3647 + ], + "counter_strafe_pct": [ + 3647 + ], + "crosshair_deg": [ + 3647 + ], + "enemy_blind_pr": [ + 3647 + ], + "flash_assists_pr": [ + 3647 + ], + "hs_pct": [ + 3647 + ], + "kast_pct": [ + 3647 + ], + "maps": [ + 42 + ], + "premier_rank": [ + 42 + ], + "rounds": [ + 42 + ], + "steam_id": [ + 314 + ], + "survival_pct": [ + 3647 + ], + "time_to_damage_s": [ + 3647 + ], + "traded_death_pct": [ + 3647 + ], + "util_efficiency": [ + 3647 + ], + "__typename": [ + 85 + ] + }, + "player_career_stats_v_max_fields": { + "accuracy": [ + 3646 + ], + "accuracy_spotted": [ + 3646 + ], + "counter_strafe_pct": [ + 3646 + ], + "crosshair_deg": [ + 3646 + ], + "enemy_blind_pr": [ + 3646 + ], + "flash_assists_pr": [ + 3646 + ], + "hs_pct": [ + 3646 + ], + "kast_pct": [ + 3646 + ], + "maps": [ + 41 + ], + "premier_rank": [ + 41 + ], + "rounds": [ + 41 + ], + "steam_id": [ + 312 + ], + "survival_pct": [ + 3646 + ], + "time_to_damage_s": [ + 3646 + ], + "traded_death_pct": [ + 3646 + ], + "util_efficiency": [ + 3646 + ], + "__typename": [ + 85 + ] + }, + "player_career_stats_v_min_fields": { + "accuracy": [ + 3646 + ], + "accuracy_spotted": [ + 3646 + ], + "counter_strafe_pct": [ + 3646 + ], + "crosshair_deg": [ + 3646 + ], + "enemy_blind_pr": [ + 3646 + ], + "flash_assists_pr": [ + 3646 + ], + "hs_pct": [ + 3646 + ], + "kast_pct": [ + 3646 + ], + "maps": [ + 41 + ], + "premier_rank": [ + 41 + ], + "rounds": [ + 41 + ], + "steam_id": [ + 312 + ], + "survival_pct": [ + 3646 + ], + "time_to_damage_s": [ + 3646 + ], + "traded_death_pct": [ + 3646 + ], + "util_efficiency": [ + 3646 + ], + "__typename": [ + 85 + ] + }, + "player_career_stats_v_order_by": { + "accuracy": [ + 3648 + ], + "accuracy_spotted": [ + 3648 + ], + "counter_strafe_pct": [ + 3648 + ], + "crosshair_deg": [ + 3648 + ], + "enemy_blind_pr": [ + 3648 + ], + "flash_assists_pr": [ + 3648 + ], + "hs_pct": [ + 3648 + ], + "kast_pct": [ + 3648 + ], + "maps": [ + 3648 + ], + "premier_rank": [ + 3648 + ], + "rounds": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "survival_pct": [ + 3648 + ], + "time_to_damage_s": [ + 3648 + ], + "traded_death_pct": [ + 3648 + ], + "util_efficiency": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_career_stats_v_select_column": {}, + "player_career_stats_v_stddev_fields": { + "accuracy": [ + 32 + ], + "accuracy_spotted": [ + 32 + ], + "counter_strafe_pct": [ + 32 + ], + "crosshair_deg": [ + 32 + ], + "enemy_blind_pr": [ + 32 + ], + "flash_assists_pr": [ + 32 + ], + "hs_pct": [ + 32 + ], + "kast_pct": [ + 32 + ], + "maps": [ + 32 + ], + "premier_rank": [ + 32 + ], + "rounds": [ + 32 + ], + "steam_id": [ + 32 + ], + "survival_pct": [ + 32 + ], + "time_to_damage_s": [ + 32 + ], + "traded_death_pct": [ + 32 + ], + "util_efficiency": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_career_stats_v_stddev_pop_fields": { + "accuracy": [ + 32 + ], + "accuracy_spotted": [ + 32 + ], + "counter_strafe_pct": [ + 32 + ], + "crosshair_deg": [ + 32 + ], + "enemy_blind_pr": [ + 32 + ], + "flash_assists_pr": [ + 32 + ], + "hs_pct": [ + 32 + ], + "kast_pct": [ + 32 + ], + "maps": [ + 32 + ], + "premier_rank": [ + 32 + ], + "rounds": [ + 32 + ], + "steam_id": [ + 32 + ], + "survival_pct": [ + 32 + ], + "time_to_damage_s": [ + 32 + ], + "traded_death_pct": [ + 32 + ], + "util_efficiency": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_career_stats_v_stddev_samp_fields": { + "accuracy": [ + 32 + ], + "accuracy_spotted": [ + 32 + ], + "counter_strafe_pct": [ + 32 + ], + "crosshair_deg": [ + 32 + ], + "enemy_blind_pr": [ + 32 + ], + "flash_assists_pr": [ + 32 + ], + "hs_pct": [ + 32 + ], + "kast_pct": [ + 32 + ], + "maps": [ + 32 + ], + "premier_rank": [ + 32 + ], + "rounds": [ + 32 + ], + "steam_id": [ + 32 + ], + "survival_pct": [ + 32 + ], + "time_to_damage_s": [ + 32 + ], + "traded_death_pct": [ + 32 + ], + "util_efficiency": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_career_stats_v_stream_cursor_input": { + "initial_value": [ + 3844 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "player_career_stats_v_stream_cursor_value_input": { + "accuracy": [ + 3646 + ], + "accuracy_spotted": [ + 3646 + ], + "counter_strafe_pct": [ + 3646 + ], + "crosshair_deg": [ + 3646 + ], + "enemy_blind_pr": [ + 3646 + ], + "flash_assists_pr": [ + 3646 + ], + "hs_pct": [ + 3646 + ], + "kast_pct": [ + 3646 + ], + "maps": [ + 41 + ], + "premier_rank": [ + 41 + ], + "rounds": [ + 41 + ], + "steam_id": [ + 312 + ], + "survival_pct": [ + 3646 + ], + "time_to_damage_s": [ + 3646 + ], + "traded_death_pct": [ + 3646 + ], + "util_efficiency": [ + 3646 + ], + "__typename": [ + 85 + ] + }, + "player_career_stats_v_sum_fields": { + "accuracy": [ + 3646 + ], + "accuracy_spotted": [ + 3646 + ], + "counter_strafe_pct": [ + 3646 + ], + "crosshair_deg": [ + 3646 + ], + "enemy_blind_pr": [ + 3646 + ], + "flash_assists_pr": [ + 3646 + ], + "hs_pct": [ + 3646 + ], + "kast_pct": [ + 3646 + ], + "maps": [ + 41 + ], + "premier_rank": [ + 41 + ], + "rounds": [ + 41 + ], + "steam_id": [ + 312 + ], + "survival_pct": [ + 3646 + ], + "time_to_damage_s": [ + 3646 + ], + "traded_death_pct": [ + 3646 + ], + "util_efficiency": [ + 3646 + ], + "__typename": [ + 85 + ] + }, + "player_career_stats_v_var_pop_fields": { + "accuracy": [ + 32 + ], + "accuracy_spotted": [ + 32 + ], + "counter_strafe_pct": [ + 32 + ], + "crosshair_deg": [ + 32 + ], + "enemy_blind_pr": [ + 32 + ], + "flash_assists_pr": [ + 32 + ], + "hs_pct": [ + 32 + ], + "kast_pct": [ + 32 + ], + "maps": [ + 32 + ], + "premier_rank": [ + 32 + ], + "rounds": [ + 32 + ], + "steam_id": [ + 32 + ], + "survival_pct": [ + 32 + ], + "time_to_damage_s": [ + 32 + ], + "traded_death_pct": [ + 32 + ], + "util_efficiency": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_career_stats_v_var_samp_fields": { + "accuracy": [ + 32 + ], + "accuracy_spotted": [ + 32 + ], + "counter_strafe_pct": [ + 32 + ], + "crosshair_deg": [ + 32 + ], + "enemy_blind_pr": [ + 32 + ], + "flash_assists_pr": [ + 32 + ], + "hs_pct": [ + 32 + ], + "kast_pct": [ + 32 + ], + "maps": [ + 32 + ], + "premier_rank": [ + 32 + ], + "rounds": [ + 32 + ], + "steam_id": [ + 32 + ], + "survival_pct": [ + 32 + ], + "time_to_damage_s": [ + 32 + ], + "traded_death_pct": [ + 32 + ], + "util_efficiency": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_career_stats_v_variance_fields": { + "accuracy": [ + 32 + ], + "accuracy_spotted": [ + 32 + ], + "counter_strafe_pct": [ + 32 + ], + "crosshair_deg": [ + 32 + ], + "enemy_blind_pr": [ + 32 + ], + "flash_assists_pr": [ + 32 + ], + "hs_pct": [ + 32 + ], + "kast_pct": [ + 32 + ], + "maps": [ + 32 + ], + "premier_rank": [ + 32 + ], + "rounds": [ + 32 + ], + "steam_id": [ + 32 + ], + "survival_pct": [ + 32 + ], + "time_to_damage_s": [ + 32 + ], + "traded_death_pct": [ + 32 + ], + "util_efficiency": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_damages": { + "armor": [ + 41 + ], + "attacked_location": [ + 85 + ], + "attacked_location_coordinates": [ + 85 + ], + "attacked_player": [ + 4606 + ], + "attacked_steam_id": [ + 312 + ], + "attacked_team": [ + 85 + ], + "attacker_location": [ + 85 + ], + "attacker_location_coordinates": [ + 85 + ], + "attacker_steam_id": [ + 312 + ], + "attacker_team": [ + 85 + ], + "damage": [ + 41 + ], + "damage_armor": [ + 41 + ], + "deleted_at": [ + 5243 + ], + "health": [ + 41 + ], + "hitgroup": [ + 85 + ], + "id": [ + 6672 + ], + "match": [ + 3432 + ], + "match_id": [ + 6672 + ], + "match_map": [ + 3248 + ], + "match_map_id": [ + 6672 + ], + "player": [ + 4606 + ], + "round": [ + 3646 + ], + "team_damage": [ + 6 + ], + "time": [ + 5243 + ], + "with": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "player_damages_aggregate": { + "aggregate": [ + 3853 + ], + "nodes": [ + 3849 + ], + "__typename": [ + 85 + ] + }, + "player_damages_aggregate_bool_exp": { + "count": [ + 3852 + ], + "__typename": [ + 85 + ] + }, + "player_damages_aggregate_bool_exp_count": { + "arguments": [ + 3870 + ], + "distinct": [ + 6 + ], + "filter": [ + 3858 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "player_damages_aggregate_fields": { + "avg": [ + 3856 + ], + "count": [ + 41, + { + "columns": [ + 3870, + "[player_damages_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 3862 + ], + "min": [ + 3864 + ], + "stddev": [ + 3872 + ], + "stddev_pop": [ + 3874 + ], + "stddev_samp": [ + 3876 + ], + "sum": [ + 3880 + ], + "var_pop": [ + 3884 + ], + "var_samp": [ + 3886 + ], + "variance": [ + 3888 + ], + "__typename": [ + 85 + ] + }, + "player_damages_aggregate_order_by": { + "avg": [ + 3857 + ], + "count": [ + 3648 + ], + "max": [ + 3863 + ], + "min": [ + 3865 + ], + "stddev": [ + 3873 + ], + "stddev_pop": [ + 3875 + ], + "stddev_samp": [ + 3877 + ], + "sum": [ + 3881 + ], + "var_pop": [ + 3885 + ], + "var_samp": [ + 3887 + ], + "variance": [ + 3889 + ], + "__typename": [ + 85 + ] + }, + "player_damages_arr_rel_insert_input": { + "data": [ + 3861 + ], + "on_conflict": [ + 3867 + ], + "__typename": [ + 85 + ] + }, + "player_damages_avg_fields": { + "armor": [ + 32 + ], + "attacked_steam_id": [ + 32 + ], + "attacker_steam_id": [ + 32 + ], + "damage": [ + 32 + ], + "damage_armor": [ + 32 + ], + "health": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_damages_avg_order_by": { + "armor": [ + 3648 + ], + "attacked_steam_id": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_armor": [ + 3648 + ], + "health": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_damages_bool_exp": { + "_and": [ + 3858 + ], + "_not": [ + 3858 + ], + "_or": [ + 3858 + ], + "armor": [ + 42 + ], + "attacked_location": [ + 87 + ], + "attacked_location_coordinates": [ + 87 + ], + "attacked_player": [ + 4610 + ], + "attacked_steam_id": [ + 314 + ], + "attacked_team": [ + 87 + ], + "attacker_location": [ + 87 + ], + "attacker_location_coordinates": [ + 87 + ], + "attacker_steam_id": [ + 314 + ], + "attacker_team": [ + 87 + ], + "damage": [ + 42 + ], + "damage_armor": [ + 42 + ], + "deleted_at": [ + 5244 + ], + "health": [ + 42 + ], + "hitgroup": [ + 87 + ], + "id": [ + 6674 + ], + "match": [ + 3443 + ], + "match_id": [ + 6674 + ], + "match_map": [ + 3257 + ], + "match_map_id": [ + 6674 + ], + "player": [ + 4610 + ], + "round": [ + 3647 + ], + "team_damage": [ + 7 + ], + "time": [ + 5244 + ], + "with": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "player_damages_constraint": {}, + "player_damages_inc_input": { + "armor": [ + 41 + ], + "attacked_steam_id": [ + 312 + ], + "attacker_steam_id": [ + 312 + ], + "damage": [ + 41 + ], + "damage_armor": [ + 41 + ], + "health": [ + 41 + ], + "round": [ + 3646 + ], + "__typename": [ + 85 + ] + }, + "player_damages_insert_input": { + "armor": [ + 41 + ], + "attacked_location": [ + 85 + ], + "attacked_location_coordinates": [ + 85 + ], + "attacked_player": [ + 4617 + ], + "attacked_steam_id": [ + 312 + ], + "attacked_team": [ + 85 + ], + "attacker_location": [ + 85 + ], + "attacker_location_coordinates": [ + 85 + ], + "attacker_steam_id": [ + 312 + ], + "attacker_team": [ + 85 + ], + "damage": [ + 41 + ], + "damage_armor": [ + 41 + ], + "deleted_at": [ + 5243 + ], + "health": [ + 41 + ], + "hitgroup": [ + 85 + ], + "id": [ + 6672 + ], + "match": [ + 3452 + ], + "match_id": [ + 6672 + ], + "match_map": [ + 3266 + ], + "match_map_id": [ + 6672 + ], + "player": [ + 4617 + ], + "round": [ + 3646 + ], + "time": [ + 5243 + ], + "with": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "player_damages_max_fields": { + "armor": [ + 41 + ], + "attacked_location": [ + 85 + ], + "attacked_location_coordinates": [ + 85 + ], + "attacked_steam_id": [ + 312 + ], + "attacked_team": [ + 85 + ], + "attacker_location": [ + 85 + ], + "attacker_location_coordinates": [ + 85 + ], + "attacker_steam_id": [ + 312 + ], + "attacker_team": [ + 85 + ], + "damage": [ + 41 + ], + "damage_armor": [ + 41 + ], + "deleted_at": [ + 5243 + ], + "health": [ + 41 + ], + "hitgroup": [ + 85 + ], + "id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "round": [ + 3646 + ], + "time": [ + 5243 + ], + "with": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "player_damages_max_order_by": { + "armor": [ + 3648 + ], + "attacked_location": [ + 3648 + ], + "attacked_location_coordinates": [ + 3648 + ], + "attacked_steam_id": [ + 3648 + ], + "attacked_team": [ + 3648 + ], + "attacker_location": [ + 3648 + ], + "attacker_location_coordinates": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "attacker_team": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_armor": [ + 3648 + ], + "deleted_at": [ + 3648 + ], + "health": [ + 3648 + ], + "hitgroup": [ + 3648 + ], + "id": [ + 3648 + ], + "match_id": [ + 3648 + ], + "match_map_id": [ + 3648 + ], + "round": [ + 3648 + ], + "time": [ + 3648 + ], + "with": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_damages_min_fields": { + "armor": [ + 41 + ], + "attacked_location": [ + 85 + ], + "attacked_location_coordinates": [ + 85 + ], + "attacked_steam_id": [ + 312 + ], + "attacked_team": [ + 85 + ], + "attacker_location": [ + 85 + ], + "attacker_location_coordinates": [ + 85 + ], + "attacker_steam_id": [ + 312 + ], + "attacker_team": [ + 85 + ], + "damage": [ + 41 + ], + "damage_armor": [ + 41 + ], + "deleted_at": [ + 5243 + ], + "health": [ + 41 + ], + "hitgroup": [ + 85 + ], + "id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "round": [ + 3646 + ], + "time": [ + 5243 + ], + "with": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "player_damages_min_order_by": { + "armor": [ + 3648 + ], + "attacked_location": [ + 3648 + ], + "attacked_location_coordinates": [ + 3648 + ], + "attacked_steam_id": [ + 3648 + ], + "attacked_team": [ + 3648 + ], + "attacker_location": [ + 3648 + ], + "attacker_location_coordinates": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "attacker_team": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_armor": [ + 3648 + ], + "deleted_at": [ + 3648 + ], + "health": [ + 3648 + ], + "hitgroup": [ + 3648 + ], + "id": [ + 3648 + ], + "match_id": [ + 3648 + ], + "match_map_id": [ + 3648 + ], + "round": [ + 3648 + ], + "time": [ + 3648 + ], + "with": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_damages_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 3849 + ], + "__typename": [ + 85 + ] + }, + "player_damages_on_conflict": { + "constraint": [ + 3859 + ], + "update_columns": [ + 3882 + ], + "where": [ + 3858 + ], + "__typename": [ + 85 + ] + }, + "player_damages_order_by": { + "armor": [ + 3648 + ], + "attacked_location": [ + 3648 + ], + "attacked_location_coordinates": [ + 3648 + ], + "attacked_player": [ + 4619 + ], + "attacked_steam_id": [ + 3648 + ], + "attacked_team": [ + 3648 + ], + "attacker_location": [ + 3648 + ], + "attacker_location_coordinates": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "attacker_team": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_armor": [ + 3648 + ], + "deleted_at": [ + 3648 + ], + "health": [ + 3648 + ], + "hitgroup": [ + 3648 + ], + "id": [ + 3648 + ], + "match": [ + 3454 + ], + "match_id": [ + 3648 + ], + "match_map": [ + 3268 + ], + "match_map_id": [ + 3648 + ], + "player": [ + 4619 + ], + "round": [ + 3648 + ], + "team_damage": [ + 3648 + ], + "time": [ + 3648 + ], + "with": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_damages_pk_columns_input": { + "id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "time": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "player_damages_select_column": {}, + "player_damages_set_input": { + "armor": [ + 41 + ], + "attacked_location": [ + 85 + ], + "attacked_location_coordinates": [ + 85 + ], + "attacked_steam_id": [ + 312 + ], + "attacked_team": [ + 85 + ], + "attacker_location": [ + 85 + ], + "attacker_location_coordinates": [ + 85 + ], + "attacker_steam_id": [ + 312 + ], + "attacker_team": [ + 85 + ], + "damage": [ + 41 + ], + "damage_armor": [ + 41 + ], + "deleted_at": [ + 5243 + ], + "health": [ + 41 + ], + "hitgroup": [ + 85 + ], + "id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "round": [ + 3646 + ], + "time": [ + 5243 + ], + "with": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "player_damages_stddev_fields": { + "armor": [ + 32 + ], + "attacked_steam_id": [ + 32 + ], + "attacker_steam_id": [ + 32 + ], + "damage": [ + 32 + ], + "damage_armor": [ + 32 + ], + "health": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_damages_stddev_order_by": { + "armor": [ + 3648 + ], + "attacked_steam_id": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_armor": [ + 3648 + ], + "health": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_damages_stddev_pop_fields": { + "armor": [ + 32 + ], + "attacked_steam_id": [ + 32 + ], + "attacker_steam_id": [ + 32 + ], + "damage": [ + 32 + ], + "damage_armor": [ + 32 + ], + "health": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_damages_stddev_pop_order_by": { + "armor": [ + 3648 + ], + "attacked_steam_id": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_armor": [ + 3648 + ], + "health": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_damages_stddev_samp_fields": { + "armor": [ + 32 + ], + "attacked_steam_id": [ + 32 + ], + "attacker_steam_id": [ + 32 + ], + "damage": [ + 32 + ], + "damage_armor": [ + 32 + ], + "health": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_damages_stddev_samp_order_by": { + "armor": [ + 3648 + ], + "attacked_steam_id": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_armor": [ + 3648 + ], + "health": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_damages_stream_cursor_input": { + "initial_value": [ + 3879 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "player_damages_stream_cursor_value_input": { + "armor": [ + 41 + ], + "attacked_location": [ + 85 + ], + "attacked_location_coordinates": [ + 85 + ], + "attacked_steam_id": [ + 312 + ], + "attacked_team": [ + 85 + ], + "attacker_location": [ + 85 + ], + "attacker_location_coordinates": [ + 85 + ], + "attacker_steam_id": [ + 312 + ], + "attacker_team": [ + 85 + ], + "damage": [ + 41 + ], + "damage_armor": [ + 41 + ], + "deleted_at": [ + 5243 + ], + "health": [ + 41 + ], + "hitgroup": [ + 85 + ], + "id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "round": [ + 3646 + ], + "time": [ + 5243 + ], + "with": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "player_damages_sum_fields": { + "armor": [ + 41 + ], + "attacked_steam_id": [ + 312 + ], + "attacker_steam_id": [ + 312 + ], + "damage": [ + 41 + ], + "damage_armor": [ + 41 + ], + "health": [ + 41 + ], + "round": [ + 3646 + ], + "__typename": [ + 85 + ] + }, + "player_damages_sum_order_by": { + "armor": [ + 3648 + ], + "attacked_steam_id": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_armor": [ + 3648 + ], + "health": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_damages_update_column": {}, + "player_damages_updates": { + "_inc": [ + 3860 + ], + "_set": [ + 3871 + ], + "where": [ + 3858 + ], + "__typename": [ + 85 + ] + }, + "player_damages_var_pop_fields": { + "armor": [ + 32 + ], + "attacked_steam_id": [ + 32 + ], + "attacker_steam_id": [ + 32 + ], + "damage": [ + 32 + ], + "damage_armor": [ + 32 + ], + "health": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_damages_var_pop_order_by": { + "armor": [ + 3648 + ], + "attacked_steam_id": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_armor": [ + 3648 + ], + "health": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_damages_var_samp_fields": { + "armor": [ + 32 + ], + "attacked_steam_id": [ + 32 + ], + "attacker_steam_id": [ + 32 + ], + "damage": [ + 32 + ], + "damage_armor": [ + 32 + ], + "health": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_damages_var_samp_order_by": { + "armor": [ + 3648 + ], + "attacked_steam_id": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_armor": [ + 3648 + ], + "health": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_damages_variance_fields": { + "armor": [ + 32 + ], + "attacked_steam_id": [ + 32 + ], + "attacker_steam_id": [ + 32 + ], + "damage": [ + 32 + ], + "damage_armor": [ + 32 + ], + "health": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_damages_variance_order_by": { + "armor": [ + 3648 + ], + "attacked_steam_id": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_armor": [ + 3648 + ], + "health": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_elo": { + "actual_score": [ + 2093 + ], + "assists": [ + 41 + ], + "change": [ + 3646 + ], + "created_at": [ + 5243 + ], + "current": [ + 3646 + ], + "damage": [ + 41 + ], + "damage_percent": [ + 2093 + ], + "deaths": [ + 41 + ], + "expected_score": [ + 2093 + ], + "impact": [ + 3646 + ], + "k_factor": [ + 41 + ], + "kda": [ + 2093 + ], + "kills": [ + 41 + ], + "map_losses": [ + 41 + ], + "map_wins": [ + 41 + ], + "match": [ + 3432 + ], + "match_id": [ + 6672 + ], + "opponent_team_elo_avg": [ + 2093 + ], + "performance_multiplier": [ + 2093 + ], + "player": [ + 4606 + ], + "player_team_elo_avg": [ + 2093 + ], + "rating_for_expected": [ + 2093 + ], + "season": [ + 4706 + ], + "season_id": [ + 6672 + ], + "series_multiplier": [ + 41 + ], + "steam_id": [ + 312 + ], + "team_avg_kda": [ + 2093 + ], + "type": [ + 1225 + ], + "__typename": [ + 85 + ] + }, + "player_elo_aggregate": { + "aggregate": [ + 3892 + ], + "nodes": [ + 3890 + ], + "__typename": [ + 85 + ] + }, + "player_elo_aggregate_fields": { + "avg": [ + 3893 + ], + "count": [ + 41, + { + "columns": [ + 3904, + "[player_elo_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 3898 + ], + "min": [ + 3899 + ], + "stddev": [ + 3906 + ], + "stddev_pop": [ + 3907 + ], + "stddev_samp": [ + 3908 + ], + "sum": [ + 3911 + ], + "var_pop": [ + 3914 + ], + "var_samp": [ + 3915 + ], + "variance": [ + 3916 + ], + "__typename": [ + 85 + ] + }, + "player_elo_avg_fields": { + "actual_score": [ + 32 + ], + "assists": [ + 32 + ], + "change": [ + 32 + ], + "current": [ + 32 + ], + "damage": [ + 32 + ], + "damage_percent": [ + 32 + ], + "deaths": [ + 32 + ], + "expected_score": [ + 32 + ], + "impact": [ + 32 + ], + "k_factor": [ + 32 + ], + "kda": [ + 32 + ], + "kills": [ + 32 + ], + "map_losses": [ + 32 + ], + "map_wins": [ + 32 + ], + "opponent_team_elo_avg": [ + 32 + ], + "performance_multiplier": [ + 32 + ], + "player_team_elo_avg": [ + 32 + ], + "rating_for_expected": [ + 32 + ], + "series_multiplier": [ + 32 + ], + "steam_id": [ + 32 + ], + "team_avg_kda": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_elo_bool_exp": { + "_and": [ + 3894 + ], + "_not": [ + 3894 + ], + "_or": [ + 3894 + ], + "actual_score": [ + 2094 + ], + "assists": [ + 42 + ], + "change": [ + 3647 + ], + "created_at": [ + 5244 + ], + "current": [ + 3647 + ], + "damage": [ + 42 + ], + "damage_percent": [ + 2094 + ], + "deaths": [ + 42 + ], + "expected_score": [ + 2094 + ], + "impact": [ + 3647 + ], + "k_factor": [ + 42 + ], + "kda": [ + 2094 + ], + "kills": [ + 42 + ], + "map_losses": [ + 42 + ], + "map_wins": [ + 42 + ], + "match": [ + 3443 + ], + "match_id": [ + 6674 + ], + "opponent_team_elo_avg": [ + 2094 + ], + "performance_multiplier": [ + 2094 + ], + "player": [ + 4610 + ], + "player_team_elo_avg": [ + 2094 + ], + "rating_for_expected": [ + 2094 + ], + "season": [ + 4710 + ], + "season_id": [ + 6674 + ], + "series_multiplier": [ + 42 + ], + "steam_id": [ + 314 + ], + "team_avg_kda": [ + 2094 + ], + "type": [ + 1226 + ], + "__typename": [ + 85 + ] + }, + "player_elo_constraint": {}, + "player_elo_inc_input": { + "actual_score": [ + 2093 + ], + "assists": [ + 41 + ], + "change": [ + 3646 + ], + "current": [ + 3646 + ], + "damage": [ + 41 + ], + "damage_percent": [ + 2093 + ], + "deaths": [ + 41 + ], + "expected_score": [ + 2093 + ], + "impact": [ + 3646 + ], + "k_factor": [ + 41 + ], + "kda": [ + 2093 + ], + "kills": [ + 41 + ], + "map_losses": [ + 41 + ], + "map_wins": [ + 41 + ], + "opponent_team_elo_avg": [ + 2093 + ], + "performance_multiplier": [ + 2093 + ], + "player_team_elo_avg": [ + 2093 + ], + "rating_for_expected": [ + 2093 + ], + "series_multiplier": [ + 41 + ], + "steam_id": [ + 312 + ], + "team_avg_kda": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "player_elo_insert_input": { + "actual_score": [ + 2093 + ], + "assists": [ + 41 + ], + "change": [ + 3646 + ], + "created_at": [ + 5243 + ], + "current": [ + 3646 + ], + "damage": [ + 41 + ], + "damage_percent": [ + 2093 + ], + "deaths": [ + 41 + ], + "expected_score": [ + 2093 + ], + "impact": [ + 3646 + ], + "k_factor": [ + 41 + ], + "kda": [ + 2093 + ], + "kills": [ + 41 + ], + "map_losses": [ + 41 + ], + "map_wins": [ + 41 + ], + "match": [ + 3452 + ], + "match_id": [ + 6672 + ], + "opponent_team_elo_avg": [ + 2093 + ], + "performance_multiplier": [ + 2093 + ], + "player": [ + 4617 + ], + "player_team_elo_avg": [ + 2093 + ], + "rating_for_expected": [ + 2093 + ], + "season": [ + 4717 + ], + "season_id": [ + 6672 + ], + "series_multiplier": [ + 41 + ], + "steam_id": [ + 312 + ], + "team_avg_kda": [ + 2093 + ], + "type": [ + 1225 + ], + "__typename": [ + 85 + ] + }, + "player_elo_max_fields": { + "actual_score": [ + 2093 + ], + "assists": [ + 41 + ], + "change": [ + 3646 + ], + "created_at": [ + 5243 + ], + "current": [ + 3646 + ], + "damage": [ + 41 + ], + "damage_percent": [ + 2093 + ], + "deaths": [ + 41 + ], + "expected_score": [ + 2093 + ], + "impact": [ + 3646 + ], + "k_factor": [ + 41 + ], + "kda": [ + 2093 + ], + "kills": [ + 41 + ], + "map_losses": [ + 41 + ], + "map_wins": [ + 41 + ], + "match_id": [ + 6672 + ], + "opponent_team_elo_avg": [ + 2093 + ], + "performance_multiplier": [ + 2093 + ], + "player_team_elo_avg": [ + 2093 + ], + "rating_for_expected": [ + 2093 + ], + "season_id": [ + 6672 + ], + "series_multiplier": [ + 41 + ], + "steam_id": [ + 312 + ], + "team_avg_kda": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "player_elo_min_fields": { + "actual_score": [ + 2093 + ], + "assists": [ + 41 + ], + "change": [ + 3646 + ], + "created_at": [ + 5243 + ], + "current": [ + 3646 + ], + "damage": [ + 41 + ], + "damage_percent": [ + 2093 + ], + "deaths": [ + 41 + ], + "expected_score": [ + 2093 + ], + "impact": [ + 3646 + ], + "k_factor": [ + 41 + ], + "kda": [ + 2093 + ], + "kills": [ + 41 + ], + "map_losses": [ + 41 + ], + "map_wins": [ + 41 + ], + "match_id": [ + 6672 + ], + "opponent_team_elo_avg": [ + 2093 + ], + "performance_multiplier": [ + 2093 + ], + "player_team_elo_avg": [ + 2093 + ], + "rating_for_expected": [ + 2093 + ], + "season_id": [ + 6672 + ], + "series_multiplier": [ + 41 + ], + "steam_id": [ + 312 + ], + "team_avg_kda": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "player_elo_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 3890 + ], + "__typename": [ + 85 + ] + }, + "player_elo_on_conflict": { + "constraint": [ + 3895 + ], + "update_columns": [ + 3912 + ], + "where": [ + 3894 + ], + "__typename": [ + 85 + ] + }, + "player_elo_order_by": { + "actual_score": [ + 3648 + ], + "assists": [ + 3648 + ], + "change": [ + 3648 + ], + "created_at": [ + 3648 + ], + "current": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_percent": [ + 3648 + ], + "deaths": [ + 3648 + ], + "expected_score": [ + 3648 + ], + "impact": [ + 3648 + ], + "k_factor": [ + 3648 + ], + "kda": [ + 3648 + ], + "kills": [ + 3648 + ], + "map_losses": [ + 3648 + ], + "map_wins": [ + 3648 + ], + "match": [ + 3454 + ], + "match_id": [ + 3648 + ], + "opponent_team_elo_avg": [ + 3648 + ], + "performance_multiplier": [ + 3648 + ], + "player": [ + 4619 + ], + "player_team_elo_avg": [ + 3648 + ], + "rating_for_expected": [ + 3648 + ], + "season": [ + 4719 + ], + "season_id": [ + 3648 + ], + "series_multiplier": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "team_avg_kda": [ + 3648 + ], + "type": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_elo_pk_columns_input": { + "match_id": [ + 6672 + ], + "steam_id": [ + 312 + ], + "type": [ + 1225 + ], + "__typename": [ + 85 + ] + }, + "player_elo_select_column": {}, + "player_elo_set_input": { + "actual_score": [ + 2093 + ], + "assists": [ + 41 + ], + "change": [ + 3646 + ], + "created_at": [ + 5243 + ], + "current": [ + 3646 + ], + "damage": [ + 41 + ], + "damage_percent": [ + 2093 + ], + "deaths": [ + 41 + ], + "expected_score": [ + 2093 + ], + "impact": [ + 3646 + ], + "k_factor": [ + 41 + ], + "kda": [ + 2093 + ], + "kills": [ + 41 + ], + "map_losses": [ + 41 + ], + "map_wins": [ + 41 + ], + "match_id": [ + 6672 + ], + "opponent_team_elo_avg": [ + 2093 + ], + "performance_multiplier": [ + 2093 + ], + "player_team_elo_avg": [ + 2093 + ], + "rating_for_expected": [ + 2093 + ], + "season_id": [ + 6672 + ], + "series_multiplier": [ + 41 + ], + "steam_id": [ + 312 + ], + "team_avg_kda": [ + 2093 + ], + "type": [ + 1225 + ], + "__typename": [ + 85 + ] + }, + "player_elo_stddev_fields": { + "actual_score": [ + 32 + ], + "assists": [ + 32 + ], + "change": [ + 32 + ], + "current": [ + 32 + ], + "damage": [ + 32 + ], + "damage_percent": [ + 32 + ], + "deaths": [ + 32 + ], + "expected_score": [ + 32 + ], + "impact": [ + 32 + ], + "k_factor": [ + 32 + ], + "kda": [ + 32 + ], + "kills": [ + 32 + ], + "map_losses": [ + 32 + ], + "map_wins": [ + 32 + ], + "opponent_team_elo_avg": [ + 32 + ], + "performance_multiplier": [ + 32 + ], + "player_team_elo_avg": [ + 32 + ], + "rating_for_expected": [ + 32 + ], + "series_multiplier": [ + 32 + ], + "steam_id": [ + 32 + ], + "team_avg_kda": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_elo_stddev_pop_fields": { + "actual_score": [ + 32 + ], + "assists": [ + 32 + ], + "change": [ + 32 + ], + "current": [ + 32 + ], + "damage": [ + 32 + ], + "damage_percent": [ + 32 + ], + "deaths": [ + 32 + ], + "expected_score": [ + 32 + ], + "impact": [ + 32 + ], + "k_factor": [ + 32 + ], + "kda": [ + 32 + ], + "kills": [ + 32 + ], + "map_losses": [ + 32 + ], + "map_wins": [ + 32 + ], + "opponent_team_elo_avg": [ + 32 + ], + "performance_multiplier": [ + 32 + ], + "player_team_elo_avg": [ + 32 + ], + "rating_for_expected": [ + 32 + ], + "series_multiplier": [ + 32 + ], + "steam_id": [ + 32 + ], + "team_avg_kda": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_elo_stddev_samp_fields": { + "actual_score": [ + 32 + ], + "assists": [ + 32 + ], + "change": [ + 32 + ], + "current": [ + 32 + ], + "damage": [ + 32 + ], + "damage_percent": [ + 32 + ], + "deaths": [ + 32 + ], + "expected_score": [ + 32 + ], + "impact": [ + 32 + ], + "k_factor": [ + 32 + ], + "kda": [ + 32 + ], + "kills": [ + 32 + ], + "map_losses": [ + 32 + ], + "map_wins": [ + 32 + ], + "opponent_team_elo_avg": [ + 32 + ], + "performance_multiplier": [ + 32 + ], + "player_team_elo_avg": [ + 32 + ], + "rating_for_expected": [ + 32 + ], + "series_multiplier": [ + 32 + ], + "steam_id": [ + 32 + ], + "team_avg_kda": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_elo_stream_cursor_input": { + "initial_value": [ + 3910 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "player_elo_stream_cursor_value_input": { + "actual_score": [ + 2093 + ], + "assists": [ + 41 + ], + "change": [ + 3646 + ], + "created_at": [ + 5243 + ], + "current": [ + 3646 + ], + "damage": [ + 41 + ], + "damage_percent": [ + 2093 + ], + "deaths": [ + 41 + ], + "expected_score": [ + 2093 + ], + "impact": [ + 3646 + ], + "k_factor": [ + 41 + ], + "kda": [ + 2093 + ], + "kills": [ + 41 + ], + "map_losses": [ + 41 + ], + "map_wins": [ + 41 + ], + "match_id": [ + 6672 + ], + "opponent_team_elo_avg": [ + 2093 + ], + "performance_multiplier": [ + 2093 + ], + "player_team_elo_avg": [ + 2093 + ], + "rating_for_expected": [ + 2093 + ], + "season_id": [ + 6672 + ], + "series_multiplier": [ + 41 + ], + "steam_id": [ + 312 + ], + "team_avg_kda": [ + 2093 + ], + "type": [ + 1225 + ], + "__typename": [ + 85 + ] + }, + "player_elo_sum_fields": { + "actual_score": [ + 2093 + ], + "assists": [ + 41 + ], + "change": [ + 3646 + ], + "current": [ + 3646 + ], + "damage": [ + 41 + ], + "damage_percent": [ + 2093 + ], + "deaths": [ + 41 + ], + "expected_score": [ + 2093 + ], + "impact": [ + 3646 + ], + "k_factor": [ + 41 + ], + "kda": [ + 2093 + ], + "kills": [ + 41 + ], + "map_losses": [ + 41 + ], + "map_wins": [ + 41 + ], + "opponent_team_elo_avg": [ + 2093 + ], + "performance_multiplier": [ + 2093 + ], + "player_team_elo_avg": [ + 2093 + ], + "rating_for_expected": [ + 2093 + ], + "series_multiplier": [ + 41 + ], + "steam_id": [ + 312 + ], + "team_avg_kda": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "player_elo_update_column": {}, + "player_elo_updates": { + "_inc": [ + 3896 + ], + "_set": [ + 3905 + ], + "where": [ + 3894 + ], + "__typename": [ + 85 + ] + }, + "player_elo_var_pop_fields": { + "actual_score": [ + 32 + ], + "assists": [ + 32 + ], + "change": [ + 32 + ], + "current": [ + 32 + ], + "damage": [ + 32 + ], + "damage_percent": [ + 32 + ], + "deaths": [ + 32 + ], + "expected_score": [ + 32 + ], + "impact": [ + 32 + ], + "k_factor": [ + 32 + ], + "kda": [ + 32 + ], + "kills": [ + 32 + ], + "map_losses": [ + 32 + ], + "map_wins": [ + 32 + ], + "opponent_team_elo_avg": [ + 32 + ], + "performance_multiplier": [ + 32 + ], + "player_team_elo_avg": [ + 32 + ], + "rating_for_expected": [ + 32 + ], + "series_multiplier": [ + 32 + ], + "steam_id": [ + 32 + ], + "team_avg_kda": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_elo_var_samp_fields": { + "actual_score": [ + 32 + ], + "assists": [ + 32 + ], + "change": [ + 32 + ], + "current": [ + 32 + ], + "damage": [ + 32 + ], + "damage_percent": [ + 32 + ], + "deaths": [ + 32 + ], + "expected_score": [ + 32 + ], + "impact": [ + 32 + ], + "k_factor": [ + 32 + ], + "kda": [ + 32 + ], + "kills": [ + 32 + ], + "map_losses": [ + 32 + ], + "map_wins": [ + 32 + ], + "opponent_team_elo_avg": [ + 32 + ], + "performance_multiplier": [ + 32 + ], + "player_team_elo_avg": [ + 32 + ], + "rating_for_expected": [ + 32 + ], + "series_multiplier": [ + 32 + ], + "steam_id": [ + 32 + ], + "team_avg_kda": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_elo_variance_fields": { + "actual_score": [ + 32 + ], + "assists": [ + 32 + ], + "change": [ + 32 + ], + "current": [ + 32 + ], + "damage": [ + 32 + ], + "damage_percent": [ + 32 + ], + "deaths": [ + 32 + ], + "expected_score": [ + 32 + ], + "impact": [ + 32 + ], + "k_factor": [ + 32 + ], + "kda": [ + 32 + ], + "kills": [ + 32 + ], + "map_losses": [ + 32 + ], + "map_wins": [ + 32 + ], + "opponent_team_elo_avg": [ + 32 + ], + "performance_multiplier": [ + 32 + ], + "player_team_elo_avg": [ + 32 + ], + "rating_for_expected": [ + 32 + ], + "series_multiplier": [ + 32 + ], + "steam_id": [ + 32 + ], + "team_avg_kda": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_faceit_rank_history": { + "elo": [ + 41 + ], + "id": [ + 6672 + ], + "match": [ + 3432 + ], + "match_id": [ + 6672 + ], + "observed_at": [ + 5243 + ], + "player": [ + 4606 + ], + "previous_rank": [ + 41 + ], + "skill_level": [ + 41 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "player_faceit_rank_history_aggregate": { + "aggregate": [ + 3921 + ], + "nodes": [ + 3917 + ], + "__typename": [ + 85 + ] + }, + "player_faceit_rank_history_aggregate_bool_exp": { + "count": [ + 3920 + ], + "__typename": [ + 85 + ] + }, + "player_faceit_rank_history_aggregate_bool_exp_count": { + "arguments": [ + 3938 + ], + "distinct": [ + 6 + ], + "filter": [ + 3926 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "player_faceit_rank_history_aggregate_fields": { + "avg": [ + 3924 + ], + "count": [ + 41, + { + "columns": [ + 3938, + "[player_faceit_rank_history_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 3930 + ], + "min": [ + 3932 + ], + "stddev": [ + 3940 + ], + "stddev_pop": [ + 3942 + ], + "stddev_samp": [ + 3944 + ], + "sum": [ + 3948 + ], + "var_pop": [ + 3952 + ], + "var_samp": [ + 3954 + ], + "variance": [ + 3956 + ], + "__typename": [ + 85 + ] + }, + "player_faceit_rank_history_aggregate_order_by": { + "avg": [ + 3925 + ], + "count": [ + 3648 + ], + "max": [ + 3931 + ], + "min": [ + 3933 + ], + "stddev": [ + 3941 + ], + "stddev_pop": [ + 3943 + ], + "stddev_samp": [ + 3945 + ], + "sum": [ + 3949 + ], + "var_pop": [ + 3953 + ], + "var_samp": [ + 3955 + ], + "variance": [ + 3957 + ], + "__typename": [ + 85 + ] + }, + "player_faceit_rank_history_arr_rel_insert_input": { + "data": [ + 3929 + ], + "on_conflict": [ + 3935 + ], + "__typename": [ + 85 + ] + }, + "player_faceit_rank_history_avg_fields": { + "elo": [ + 32 + ], + "previous_rank": [ + 32 + ], + "skill_level": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_faceit_rank_history_avg_order_by": { + "elo": [ + 3648 + ], + "previous_rank": [ + 3648 + ], + "skill_level": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_faceit_rank_history_bool_exp": { + "_and": [ + 3926 + ], + "_not": [ + 3926 + ], + "_or": [ + 3926 + ], + "elo": [ + 42 + ], + "id": [ + 6674 + ], + "match": [ + 3443 + ], + "match_id": [ + 6674 + ], + "observed_at": [ + 5244 + ], + "player": [ + 4610 + ], + "previous_rank": [ + 42 + ], + "skill_level": [ + 42 + ], + "steam_id": [ + 314 + ], + "__typename": [ + 85 + ] + }, + "player_faceit_rank_history_constraint": {}, + "player_faceit_rank_history_inc_input": { + "elo": [ + 41 + ], + "previous_rank": [ + 41 + ], + "skill_level": [ + 41 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "player_faceit_rank_history_insert_input": { + "elo": [ + 41 + ], + "id": [ + 6672 + ], + "match": [ + 3452 + ], + "match_id": [ + 6672 + ], + "observed_at": [ + 5243 + ], + "player": [ + 4617 + ], + "previous_rank": [ + 41 + ], + "skill_level": [ + 41 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "player_faceit_rank_history_max_fields": { + "elo": [ + 41 + ], + "id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "observed_at": [ + 5243 + ], + "previous_rank": [ + 41 + ], + "skill_level": [ + 41 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "player_faceit_rank_history_max_order_by": { + "elo": [ + 3648 + ], + "id": [ + 3648 + ], + "match_id": [ + 3648 + ], + "observed_at": [ + 3648 + ], + "previous_rank": [ + 3648 + ], + "skill_level": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_faceit_rank_history_min_fields": { + "elo": [ + 41 + ], + "id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "observed_at": [ + 5243 + ], + "previous_rank": [ + 41 + ], + "skill_level": [ + 41 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "player_faceit_rank_history_min_order_by": { + "elo": [ + 3648 + ], + "id": [ + 3648 + ], + "match_id": [ + 3648 + ], + "observed_at": [ + 3648 + ], + "previous_rank": [ + 3648 + ], + "skill_level": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_faceit_rank_history_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 3917 + ], + "__typename": [ + 85 + ] + }, + "player_faceit_rank_history_on_conflict": { + "constraint": [ + 3927 + ], + "update_columns": [ + 3950 + ], + "where": [ + 3926 + ], + "__typename": [ + 85 + ] + }, + "player_faceit_rank_history_order_by": { + "elo": [ + 3648 + ], + "id": [ + 3648 + ], + "match": [ + 3454 + ], + "match_id": [ + 3648 + ], + "observed_at": [ + 3648 + ], + "player": [ + 4619 + ], + "previous_rank": [ + 3648 + ], + "skill_level": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_faceit_rank_history_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "player_faceit_rank_history_select_column": {}, + "player_faceit_rank_history_set_input": { + "elo": [ + 41 + ], + "id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "observed_at": [ + 5243 + ], + "previous_rank": [ + 41 + ], + "skill_level": [ + 41 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "player_faceit_rank_history_stddev_fields": { + "elo": [ + 32 + ], + "previous_rank": [ + 32 + ], + "skill_level": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_faceit_rank_history_stddev_order_by": { + "elo": [ + 3648 + ], + "previous_rank": [ + 3648 + ], + "skill_level": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_faceit_rank_history_stddev_pop_fields": { + "elo": [ + 32 + ], + "previous_rank": [ + 32 + ], + "skill_level": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_faceit_rank_history_stddev_pop_order_by": { + "elo": [ + 3648 + ], + "previous_rank": [ + 3648 + ], + "skill_level": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_faceit_rank_history_stddev_samp_fields": { + "elo": [ + 32 + ], + "previous_rank": [ + 32 + ], + "skill_level": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_faceit_rank_history_stddev_samp_order_by": { + "elo": [ + 3648 + ], + "previous_rank": [ + 3648 + ], + "skill_level": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_faceit_rank_history_stream_cursor_input": { + "initial_value": [ + 3947 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "player_faceit_rank_history_stream_cursor_value_input": { + "elo": [ + 41 + ], + "id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "observed_at": [ + 5243 + ], + "previous_rank": [ + 41 + ], + "skill_level": [ + 41 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "player_faceit_rank_history_sum_fields": { + "elo": [ + 41 + ], + "previous_rank": [ + 41 + ], + "skill_level": [ + 41 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "player_faceit_rank_history_sum_order_by": { + "elo": [ + 3648 + ], + "previous_rank": [ + 3648 + ], + "skill_level": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_faceit_rank_history_update_column": {}, + "player_faceit_rank_history_updates": { + "_inc": [ + 3928 + ], + "_set": [ + 3939 + ], + "where": [ + 3926 + ], + "__typename": [ + 85 + ] + }, + "player_faceit_rank_history_var_pop_fields": { + "elo": [ + 32 + ], + "previous_rank": [ + 32 + ], + "skill_level": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_faceit_rank_history_var_pop_order_by": { + "elo": [ + 3648 + ], + "previous_rank": [ + 3648 + ], + "skill_level": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_faceit_rank_history_var_samp_fields": { + "elo": [ + 32 + ], + "previous_rank": [ + 32 + ], + "skill_level": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_faceit_rank_history_var_samp_order_by": { + "elo": [ + 3648 + ], + "previous_rank": [ + 3648 + ], + "skill_level": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_faceit_rank_history_variance_fields": { + "elo": [ + 32 + ], + "previous_rank": [ + 32 + ], + "skill_level": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_faceit_rank_history_variance_order_by": { + "elo": [ + 3648 + ], + "previous_rank": [ + 3648 + ], + "skill_level": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_flashes": { + "attacked_steam_id": [ + 312 + ], + "attacker_steam_id": [ + 312 + ], + "blinded": [ + 4606 + ], + "deleted_at": [ + 5243 + ], + "duration": [ + 3646 + ], + "match": [ + 3432 + ], + "match_id": [ + 6672 + ], + "match_map": [ + 3248 + ], + "match_map_id": [ + 6672 + ], + "round": [ + 41 + ], + "team_flash": [ + 6 + ], + "thrown_by": [ + 4606 + ], + "time": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "player_flashes_aggregate": { + "aggregate": [ + 3964 + ], + "nodes": [ + 3958 + ], + "__typename": [ + 85 + ] + }, + "player_flashes_aggregate_bool_exp": { + "bool_and": [ + 3961 + ], + "bool_or": [ + 3962 + ], + "count": [ + 3963 + ], + "__typename": [ + 85 + ] + }, + "player_flashes_aggregate_bool_exp_bool_and": { + "arguments": [ + 3982 + ], + "distinct": [ + 6 + ], + "filter": [ + 3969 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "player_flashes_aggregate_bool_exp_bool_or": { + "arguments": [ + 3983 + ], + "distinct": [ + 6 + ], + "filter": [ + 3969 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "player_flashes_aggregate_bool_exp_count": { + "arguments": [ + 3981 + ], + "distinct": [ + 6 + ], + "filter": [ + 3969 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "player_flashes_aggregate_fields": { + "avg": [ + 3967 + ], + "count": [ + 41, + { + "columns": [ + 3981, + "[player_flashes_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 3973 + ], + "min": [ + 3975 + ], + "stddev": [ + 3985 + ], + "stddev_pop": [ + 3987 + ], + "stddev_samp": [ + 3989 + ], + "sum": [ + 3993 + ], + "var_pop": [ + 3997 + ], + "var_samp": [ + 3999 + ], + "variance": [ + 4001 + ], + "__typename": [ + 85 + ] + }, + "player_flashes_aggregate_order_by": { + "avg": [ + 3968 + ], + "count": [ + 3648 + ], + "max": [ + 3974 + ], + "min": [ + 3976 + ], + "stddev": [ + 3986 + ], + "stddev_pop": [ + 3988 + ], + "stddev_samp": [ + 3990 + ], + "sum": [ + 3994 + ], + "var_pop": [ + 3998 + ], + "var_samp": [ + 4000 + ], + "variance": [ + 4002 + ], + "__typename": [ + 85 + ] + }, + "player_flashes_arr_rel_insert_input": { + "data": [ + 3972 + ], + "on_conflict": [ + 3978 + ], + "__typename": [ + 85 + ] + }, + "player_flashes_avg_fields": { + "attacked_steam_id": [ + 32 + ], + "attacker_steam_id": [ + 32 + ], + "duration": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_flashes_avg_order_by": { + "attacked_steam_id": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "duration": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_flashes_bool_exp": { + "_and": [ + 3969 + ], + "_not": [ + 3969 + ], + "_or": [ + 3969 + ], + "attacked_steam_id": [ + 314 + ], + "attacker_steam_id": [ + 314 + ], + "blinded": [ + 4610 + ], + "deleted_at": [ + 5244 + ], + "duration": [ + 3647 + ], + "match": [ + 3443 + ], + "match_id": [ + 6674 + ], + "match_map": [ + 3257 + ], + "match_map_id": [ + 6674 + ], + "round": [ + 42 + ], + "team_flash": [ + 7 + ], + "thrown_by": [ + 4610 + ], + "time": [ + 5244 + ], + "__typename": [ + 85 + ] + }, + "player_flashes_constraint": {}, + "player_flashes_inc_input": { + "attacked_steam_id": [ + 312 + ], + "attacker_steam_id": [ + 312 + ], + "duration": [ + 3646 + ], + "round": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "player_flashes_insert_input": { + "attacked_steam_id": [ + 312 + ], + "attacker_steam_id": [ + 312 + ], + "blinded": [ + 4617 + ], + "deleted_at": [ + 5243 + ], + "duration": [ + 3646 + ], + "match": [ + 3452 + ], + "match_id": [ + 6672 + ], + "match_map": [ + 3266 + ], + "match_map_id": [ + 6672 + ], + "round": [ + 41 + ], + "team_flash": [ + 6 + ], + "thrown_by": [ + 4617 + ], + "time": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "player_flashes_max_fields": { + "attacked_steam_id": [ + 312 + ], + "attacker_steam_id": [ + 312 + ], + "deleted_at": [ + 5243 + ], + "duration": [ + 3646 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "round": [ + 41 + ], + "time": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "player_flashes_max_order_by": { + "attacked_steam_id": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "deleted_at": [ + 3648 + ], + "duration": [ + 3648 + ], + "match_id": [ + 3648 + ], + "match_map_id": [ + 3648 + ], + "round": [ + 3648 + ], + "time": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_flashes_min_fields": { + "attacked_steam_id": [ + 312 + ], + "attacker_steam_id": [ + 312 + ], + "deleted_at": [ + 5243 + ], + "duration": [ + 3646 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "round": [ + 41 + ], + "time": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "player_flashes_min_order_by": { + "attacked_steam_id": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "deleted_at": [ + 3648 + ], + "duration": [ + 3648 + ], + "match_id": [ + 3648 + ], + "match_map_id": [ + 3648 + ], + "round": [ + 3648 + ], + "time": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_flashes_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 3958 + ], + "__typename": [ + 85 + ] + }, + "player_flashes_on_conflict": { + "constraint": [ + 3970 + ], + "update_columns": [ + 3995 + ], + "where": [ + 3969 + ], + "__typename": [ + 85 + ] + }, + "player_flashes_order_by": { + "attacked_steam_id": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "blinded": [ + 4619 + ], + "deleted_at": [ + 3648 + ], + "duration": [ + 3648 + ], + "match": [ + 3454 + ], + "match_id": [ + 3648 + ], + "match_map": [ + 3268 + ], + "match_map_id": [ + 3648 + ], + "round": [ + 3648 + ], + "team_flash": [ + 3648 + ], + "thrown_by": [ + 4619 + ], + "time": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_flashes_pk_columns_input": { + "attacked_steam_id": [ + 312 + ], + "attacker_steam_id": [ + 312 + ], + "match_map_id": [ + 6672 + ], + "time": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "player_flashes_select_column": {}, + "player_flashes_select_column_player_flashes_aggregate_bool_exp_bool_and_arguments_columns": {}, + "player_flashes_select_column_player_flashes_aggregate_bool_exp_bool_or_arguments_columns": {}, + "player_flashes_set_input": { + "attacked_steam_id": [ + 312 + ], + "attacker_steam_id": [ + 312 + ], + "deleted_at": [ + 5243 + ], + "duration": [ + 3646 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "round": [ + 41 + ], + "team_flash": [ + 6 + ], + "time": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "player_flashes_stddev_fields": { + "attacked_steam_id": [ + 32 + ], + "attacker_steam_id": [ + 32 + ], + "duration": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_flashes_stddev_order_by": { + "attacked_steam_id": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "duration": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_flashes_stddev_pop_fields": { + "attacked_steam_id": [ + 32 + ], + "attacker_steam_id": [ + 32 + ], + "duration": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_flashes_stddev_pop_order_by": { + "attacked_steam_id": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "duration": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_flashes_stddev_samp_fields": { + "attacked_steam_id": [ + 32 + ], + "attacker_steam_id": [ + 32 + ], + "duration": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_flashes_stddev_samp_order_by": { + "attacked_steam_id": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "duration": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_flashes_stream_cursor_input": { + "initial_value": [ + 3992 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "player_flashes_stream_cursor_value_input": { + "attacked_steam_id": [ + 312 + ], + "attacker_steam_id": [ + 312 + ], + "deleted_at": [ + 5243 + ], + "duration": [ + 3646 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "round": [ + 41 + ], + "team_flash": [ + 6 + ], + "time": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "player_flashes_sum_fields": { + "attacked_steam_id": [ + 312 + ], + "attacker_steam_id": [ + 312 + ], + "duration": [ + 3646 + ], + "round": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "player_flashes_sum_order_by": { + "attacked_steam_id": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "duration": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_flashes_update_column": {}, + "player_flashes_updates": { + "_inc": [ + 3971 + ], + "_set": [ + 3984 + ], + "where": [ + 3969 + ], + "__typename": [ + 85 + ] + }, + "player_flashes_var_pop_fields": { + "attacked_steam_id": [ + 32 + ], + "attacker_steam_id": [ + 32 + ], + "duration": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_flashes_var_pop_order_by": { + "attacked_steam_id": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "duration": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_flashes_var_samp_fields": { + "attacked_steam_id": [ + 32 + ], + "attacker_steam_id": [ + 32 + ], + "duration": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_flashes_var_samp_order_by": { + "attacked_steam_id": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "duration": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_flashes_variance_fields": { + "attacked_steam_id": [ + 32 + ], + "attacker_steam_id": [ + 32 + ], + "duration": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_flashes_variance_order_by": { + "attacked_steam_id": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "duration": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_kills": { + "assisted": [ + 6 + ], + "attacked_location": [ + 85 + ], + "attacked_location_coordinates": [ + 85 + ], + "attacked_player": [ + 4606 + ], + "attacked_steam_id": [ + 312 + ], + "attacked_team": [ + 85 + ], + "attacker_location": [ + 85 + ], + "attacker_location_coordinates": [ + 85 + ], + "attacker_steam_id": [ + 312 + ], + "attacker_team": [ + 85 + ], + "blinded": [ + 6 + ], + "deleted_at": [ + 5243 + ], + "headshot": [ + 6 + ], + "hitgroup": [ + 85 + ], + "in_air": [ + 6 + ], + "is_suicide": [ + 6 + ], + "match": [ + 3432 + ], + "match_id": [ + 6672 + ], + "match_map": [ + 3248 + ], + "match_map_id": [ + 6672 + ], + "no_scope": [ + 6 + ], + "player": [ + 4606 + ], + "round": [ + 41 + ], + "team_kill": [ + 6 + ], + "thru_smoke": [ + 6 + ], + "thru_wall": [ + 6 + ], + "time": [ + 5243 + ], + "with": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "player_kills_aggregate": { + "aggregate": [ + 4009 + ], + "nodes": [ + 4003 + ], + "__typename": [ + 85 + ] + }, + "player_kills_aggregate_bool_exp": { + "bool_and": [ + 4006 + ], + "bool_or": [ + 4007 + ], + "count": [ + 4008 + ], + "__typename": [ + 85 + ] + }, + "player_kills_aggregate_bool_exp_bool_and": { + "arguments": [ + 4068 + ], + "distinct": [ + 6 + ], + "filter": [ + 4014 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "player_kills_aggregate_bool_exp_bool_or": { + "arguments": [ + 4069 + ], + "distinct": [ + 6 + ], + "filter": [ + 4014 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "player_kills_aggregate_bool_exp_count": { + "arguments": [ + 4067 + ], + "distinct": [ + 6 + ], + "filter": [ + 4014 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "player_kills_aggregate_fields": { + "avg": [ + 4012 + ], + "count": [ + 41, + { + "columns": [ + 4067, + "[player_kills_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 4059 + ], + "min": [ + 4061 + ], + "stddev": [ + 4071 + ], + "stddev_pop": [ + 4073 + ], + "stddev_samp": [ + 4075 + ], + "sum": [ + 4079 + ], + "var_pop": [ + 4083 + ], + "var_samp": [ + 4085 + ], + "variance": [ + 4087 + ], + "__typename": [ + 85 + ] + }, + "player_kills_aggregate_order_by": { + "avg": [ + 4013 + ], + "count": [ + 3648 + ], + "max": [ + 4060 + ], + "min": [ + 4062 + ], + "stddev": [ + 4072 + ], + "stddev_pop": [ + 4074 + ], + "stddev_samp": [ + 4076 + ], + "sum": [ + 4080 + ], + "var_pop": [ + 4084 + ], + "var_samp": [ + 4086 + ], + "variance": [ + 4088 + ], + "__typename": [ + 85 + ] + }, + "player_kills_arr_rel_insert_input": { + "data": [ + 4058 + ], + "on_conflict": [ + 4064 + ], + "__typename": [ + 85 + ] + }, + "player_kills_avg_fields": { + "attacked_steam_id": [ + 32 + ], + "attacker_steam_id": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_kills_avg_order_by": { + "attacked_steam_id": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_kills_bool_exp": { + "_and": [ + 4014 + ], + "_not": [ + 4014 + ], + "_or": [ + 4014 + ], + "assisted": [ + 7 + ], + "attacked_location": [ + 87 + ], + "attacked_location_coordinates": [ + 87 + ], + "attacked_player": [ + 4610 + ], + "attacked_steam_id": [ + 314 + ], + "attacked_team": [ + 87 + ], + "attacker_location": [ + 87 + ], + "attacker_location_coordinates": [ + 87 + ], + "attacker_steam_id": [ + 314 + ], + "attacker_team": [ + 87 + ], + "blinded": [ + 7 + ], + "deleted_at": [ + 5244 + ], + "headshot": [ + 7 + ], + "hitgroup": [ + 87 + ], + "in_air": [ + 7 + ], + "is_suicide": [ + 7 + ], + "match": [ + 3443 + ], + "match_id": [ + 6674 + ], + "match_map": [ + 3257 + ], + "match_map_id": [ + 6674 + ], + "no_scope": [ + 7 + ], + "player": [ + 4610 + ], + "round": [ + 42 + ], + "team_kill": [ + 7 + ], + "thru_smoke": [ + 7 + ], + "thru_wall": [ + 7 + ], + "time": [ + 5244 + ], + "with": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "player_kills_by_weapon": { + "kill_count": [ + 312 + ], + "player": [ + 4606 + ], + "player_steam_id": [ + 312 + ], + "with": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "player_kills_by_weapon_aggregate": { + "aggregate": [ + 4019 + ], + "nodes": [ + 4015 + ], + "__typename": [ + 85 + ] + }, + "player_kills_by_weapon_aggregate_bool_exp": { + "count": [ + 4018 + ], + "__typename": [ + 85 + ] + }, + "player_kills_by_weapon_aggregate_bool_exp_count": { + "arguments": [ + 4036 + ], + "distinct": [ + 6 + ], + "filter": [ + 4024 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "player_kills_by_weapon_aggregate_fields": { + "avg": [ + 4022 + ], + "count": [ + 41, + { + "columns": [ + 4036, + "[player_kills_by_weapon_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 4028 + ], + "min": [ + 4030 + ], + "stddev": [ + 4038 + ], + "stddev_pop": [ + 4040 + ], + "stddev_samp": [ + 4042 + ], + "sum": [ + 4046 + ], + "var_pop": [ + 4050 + ], + "var_samp": [ + 4052 + ], + "variance": [ + 4054 + ], + "__typename": [ + 85 + ] + }, + "player_kills_by_weapon_aggregate_order_by": { + "avg": [ + 4023 + ], + "count": [ + 3648 + ], + "max": [ + 4029 + ], + "min": [ + 4031 + ], + "stddev": [ + 4039 + ], + "stddev_pop": [ + 4041 + ], + "stddev_samp": [ + 4043 + ], + "sum": [ + 4047 + ], + "var_pop": [ + 4051 + ], + "var_samp": [ + 4053 + ], + "variance": [ + 4055 + ], + "__typename": [ + 85 + ] + }, + "player_kills_by_weapon_arr_rel_insert_input": { + "data": [ + 4027 + ], + "on_conflict": [ + 4033 + ], + "__typename": [ + 85 + ] + }, + "player_kills_by_weapon_avg_fields": { + "kill_count": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_kills_by_weapon_avg_order_by": { + "kill_count": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_kills_by_weapon_bool_exp": { + "_and": [ + 4024 + ], + "_not": [ + 4024 + ], + "_or": [ + 4024 + ], + "kill_count": [ + 314 + ], + "player": [ + 4610 + ], + "player_steam_id": [ + 314 + ], + "with": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "player_kills_by_weapon_constraint": {}, + "player_kills_by_weapon_inc_input": { + "kill_count": [ + 312 + ], + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "player_kills_by_weapon_insert_input": { + "kill_count": [ + 312 + ], + "player": [ + 4617 + ], + "player_steam_id": [ + 312 + ], + "with": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "player_kills_by_weapon_max_fields": { + "kill_count": [ + 312 + ], + "player_steam_id": [ + 312 + ], + "with": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "player_kills_by_weapon_max_order_by": { + "kill_count": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "with": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_kills_by_weapon_min_fields": { + "kill_count": [ + 312 + ], + "player_steam_id": [ + 312 + ], + "with": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "player_kills_by_weapon_min_order_by": { + "kill_count": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "with": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_kills_by_weapon_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 4015 + ], + "__typename": [ + 85 + ] + }, + "player_kills_by_weapon_on_conflict": { + "constraint": [ + 4025 + ], + "update_columns": [ + 4048 + ], + "where": [ + 4024 + ], + "__typename": [ + 85 + ] + }, + "player_kills_by_weapon_order_by": { + "kill_count": [ + 3648 + ], + "player": [ + 4619 + ], + "player_steam_id": [ + 3648 + ], + "with": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_kills_by_weapon_pk_columns_input": { + "player_steam_id": [ + 312 + ], + "with": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "player_kills_by_weapon_select_column": {}, + "player_kills_by_weapon_set_input": { + "kill_count": [ + 312 + ], + "player_steam_id": [ + 312 + ], + "with": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "player_kills_by_weapon_stddev_fields": { + "kill_count": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_kills_by_weapon_stddev_order_by": { + "kill_count": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_kills_by_weapon_stddev_pop_fields": { + "kill_count": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_kills_by_weapon_stddev_pop_order_by": { + "kill_count": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_kills_by_weapon_stddev_samp_fields": { + "kill_count": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_kills_by_weapon_stddev_samp_order_by": { + "kill_count": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_kills_by_weapon_stream_cursor_input": { + "initial_value": [ + 4045 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "player_kills_by_weapon_stream_cursor_value_input": { + "kill_count": [ + 312 + ], + "player_steam_id": [ + 312 + ], + "with": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "player_kills_by_weapon_sum_fields": { + "kill_count": [ + 312 + ], + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "player_kills_by_weapon_sum_order_by": { + "kill_count": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_kills_by_weapon_update_column": {}, + "player_kills_by_weapon_updates": { + "_inc": [ + 4026 + ], + "_set": [ + 4037 + ], + "where": [ + 4024 + ], + "__typename": [ + 85 + ] + }, + "player_kills_by_weapon_var_pop_fields": { + "kill_count": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_kills_by_weapon_var_pop_order_by": { + "kill_count": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_kills_by_weapon_var_samp_fields": { + "kill_count": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_kills_by_weapon_var_samp_order_by": { + "kill_count": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_kills_by_weapon_variance_fields": { + "kill_count": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_kills_by_weapon_variance_order_by": { + "kill_count": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_kills_constraint": {}, + "player_kills_inc_input": { + "attacked_steam_id": [ + 312 + ], + "attacker_steam_id": [ + 312 + ], + "round": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "player_kills_insert_input": { + "assisted": [ + 6 + ], + "attacked_location": [ + 85 + ], + "attacked_location_coordinates": [ + 85 + ], + "attacked_player": [ + 4617 + ], + "attacked_steam_id": [ + 312 + ], + "attacked_team": [ + 85 + ], + "attacker_location": [ + 85 + ], + "attacker_location_coordinates": [ + 85 + ], + "attacker_steam_id": [ + 312 + ], + "attacker_team": [ + 85 + ], + "blinded": [ + 6 + ], + "deleted_at": [ + 5243 + ], + "headshot": [ + 6 + ], + "hitgroup": [ + 85 + ], + "in_air": [ + 6 + ], + "match": [ + 3452 + ], + "match_id": [ + 6672 + ], + "match_map": [ + 3266 + ], + "match_map_id": [ + 6672 + ], + "no_scope": [ + 6 + ], + "player": [ + 4617 + ], + "round": [ + 41 + ], + "thru_smoke": [ + 6 + ], + "thru_wall": [ + 6 + ], + "time": [ + 5243 + ], + "with": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "player_kills_max_fields": { + "attacked_location": [ + 85 + ], + "attacked_location_coordinates": [ + 85 + ], + "attacked_steam_id": [ + 312 + ], + "attacked_team": [ + 85 + ], + "attacker_location": [ + 85 + ], + "attacker_location_coordinates": [ + 85 + ], + "attacker_steam_id": [ + 312 + ], + "attacker_team": [ + 85 + ], + "deleted_at": [ + 5243 + ], + "hitgroup": [ + 85 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "round": [ + 41 + ], + "time": [ + 5243 + ], + "with": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "player_kills_max_order_by": { + "attacked_location": [ + 3648 + ], + "attacked_location_coordinates": [ + 3648 + ], + "attacked_steam_id": [ + 3648 + ], + "attacked_team": [ + 3648 + ], + "attacker_location": [ + 3648 + ], + "attacker_location_coordinates": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "attacker_team": [ + 3648 + ], + "deleted_at": [ + 3648 + ], + "hitgroup": [ + 3648 + ], + "match_id": [ + 3648 + ], + "match_map_id": [ + 3648 + ], + "round": [ + 3648 + ], + "time": [ + 3648 + ], + "with": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_kills_min_fields": { + "attacked_location": [ + 85 + ], + "attacked_location_coordinates": [ + 85 + ], + "attacked_steam_id": [ + 312 + ], + "attacked_team": [ + 85 + ], + "attacker_location": [ + 85 + ], + "attacker_location_coordinates": [ + 85 + ], + "attacker_steam_id": [ + 312 + ], + "attacker_team": [ + 85 + ], + "deleted_at": [ + 5243 + ], + "hitgroup": [ + 85 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "round": [ + 41 + ], + "time": [ + 5243 + ], + "with": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "player_kills_min_order_by": { + "attacked_location": [ + 3648 + ], + "attacked_location_coordinates": [ + 3648 + ], + "attacked_steam_id": [ + 3648 + ], + "attacked_team": [ + 3648 + ], + "attacker_location": [ + 3648 + ], + "attacker_location_coordinates": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "attacker_team": [ + 3648 + ], + "deleted_at": [ + 3648 + ], + "hitgroup": [ + 3648 + ], + "match_id": [ + 3648 + ], + "match_map_id": [ + 3648 + ], + "round": [ + 3648 + ], + "time": [ + 3648 + ], + "with": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_kills_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 4003 + ], + "__typename": [ + 85 + ] + }, + "player_kills_on_conflict": { + "constraint": [ + 4056 + ], + "update_columns": [ + 4081 + ], + "where": [ + 4014 + ], + "__typename": [ + 85 + ] + }, + "player_kills_order_by": { + "assisted": [ + 3648 + ], + "attacked_location": [ + 3648 + ], + "attacked_location_coordinates": [ + 3648 + ], + "attacked_player": [ + 4619 + ], + "attacked_steam_id": [ + 3648 + ], + "attacked_team": [ + 3648 + ], + "attacker_location": [ + 3648 + ], + "attacker_location_coordinates": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "attacker_team": [ + 3648 + ], + "blinded": [ + 3648 + ], + "deleted_at": [ + 3648 + ], + "headshot": [ + 3648 + ], + "hitgroup": [ + 3648 + ], + "in_air": [ + 3648 + ], + "is_suicide": [ + 3648 + ], + "match": [ + 3454 + ], + "match_id": [ + 3648 + ], + "match_map": [ + 3268 + ], + "match_map_id": [ + 3648 + ], + "no_scope": [ + 3648 + ], + "player": [ + 4619 + ], + "round": [ + 3648 + ], + "team_kill": [ + 3648 + ], + "thru_smoke": [ + 3648 + ], + "thru_wall": [ + 3648 + ], + "time": [ + 3648 + ], + "with": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_kills_pk_columns_input": { + "attacked_steam_id": [ + 312 + ], + "attacker_steam_id": [ + 312 + ], + "match_map_id": [ + 6672 + ], + "time": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "player_kills_select_column": {}, + "player_kills_select_column_player_kills_aggregate_bool_exp_bool_and_arguments_columns": {}, + "player_kills_select_column_player_kills_aggregate_bool_exp_bool_or_arguments_columns": {}, + "player_kills_set_input": { + "assisted": [ + 6 + ], + "attacked_location": [ + 85 + ], + "attacked_location_coordinates": [ + 85 + ], + "attacked_steam_id": [ + 312 + ], + "attacked_team": [ + 85 + ], + "attacker_location": [ + 85 + ], + "attacker_location_coordinates": [ + 85 + ], + "attacker_steam_id": [ + 312 + ], + "attacker_team": [ + 85 + ], + "blinded": [ + 6 + ], + "deleted_at": [ + 5243 + ], + "headshot": [ + 6 + ], + "hitgroup": [ + 85 + ], + "in_air": [ + 6 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "no_scope": [ + 6 + ], + "round": [ + 41 + ], + "thru_smoke": [ + 6 + ], + "thru_wall": [ + 6 + ], + "time": [ + 5243 + ], + "with": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "player_kills_stddev_fields": { + "attacked_steam_id": [ + 32 + ], + "attacker_steam_id": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_kills_stddev_order_by": { + "attacked_steam_id": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_kills_stddev_pop_fields": { + "attacked_steam_id": [ + 32 + ], + "attacker_steam_id": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_kills_stddev_pop_order_by": { + "attacked_steam_id": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_kills_stddev_samp_fields": { + "attacked_steam_id": [ + 32 + ], + "attacker_steam_id": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_kills_stddev_samp_order_by": { + "attacked_steam_id": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_kills_stream_cursor_input": { + "initial_value": [ + 4078 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "player_kills_stream_cursor_value_input": { + "assisted": [ + 6 + ], + "attacked_location": [ + 85 + ], + "attacked_location_coordinates": [ + 85 + ], + "attacked_steam_id": [ + 312 + ], + "attacked_team": [ + 85 + ], + "attacker_location": [ + 85 + ], + "attacker_location_coordinates": [ + 85 + ], + "attacker_steam_id": [ + 312 + ], + "attacker_team": [ + 85 + ], + "blinded": [ + 6 + ], + "deleted_at": [ + 5243 + ], + "headshot": [ + 6 + ], + "hitgroup": [ + 85 + ], + "in_air": [ + 6 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "no_scope": [ + 6 + ], + "round": [ + 41 + ], + "thru_smoke": [ + 6 + ], + "thru_wall": [ + 6 + ], + "time": [ + 5243 + ], + "with": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "player_kills_sum_fields": { + "attacked_steam_id": [ + 312 + ], + "attacker_steam_id": [ + 312 + ], + "round": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "player_kills_sum_order_by": { + "attacked_steam_id": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_kills_update_column": {}, + "player_kills_updates": { + "_inc": [ + 4057 + ], + "_set": [ + 4070 + ], + "where": [ + 4014 + ], + "__typename": [ + 85 + ] + }, + "player_kills_var_pop_fields": { + "attacked_steam_id": [ + 32 + ], + "attacker_steam_id": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_kills_var_pop_order_by": { + "attacked_steam_id": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_kills_var_samp_fields": { + "attacked_steam_id": [ + 32 + ], + "attacker_steam_id": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_kills_var_samp_order_by": { + "attacked_steam_id": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_kills_variance_fields": { + "attacked_steam_id": [ + 32 + ], + "attacker_steam_id": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_kills_variance_order_by": { + "attacked_steam_id": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_leaderboard_rank": { + "player_steam_id": [ + 85 + ], + "rank": [ + 41 + ], + "total": [ + 41 + ], + "value": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "player_leaderboard_rank_aggregate": { + "aggregate": [ + 4091 + ], + "nodes": [ + 4089 + ], + "__typename": [ + 85 + ] + }, + "player_leaderboard_rank_aggregate_fields": { + "avg": [ + 4092 + ], + "count": [ + 41, + { + "columns": [ + 4100, + "[player_leaderboard_rank_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 4096 + ], + "min": [ + 4097 + ], + "stddev": [ + 4102 + ], + "stddev_pop": [ + 4103 + ], + "stddev_samp": [ + 4104 + ], + "sum": [ + 4107 + ], + "var_pop": [ + 4109 + ], + "var_samp": [ + 4110 + ], + "variance": [ + 4111 + ], + "__typename": [ + 85 + ] + }, + "player_leaderboard_rank_avg_fields": { + "rank": [ + 32 + ], + "total": [ + 32 + ], + "value": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_leaderboard_rank_bool_exp": { + "_and": [ + 4093 + ], + "_not": [ + 4093 + ], + "_or": [ + 4093 + ], + "player_steam_id": [ + 87 + ], + "rank": [ + 42 + ], + "total": [ + 42 + ], + "value": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "player_leaderboard_rank_inc_input": { + "rank": [ + 41 + ], + "total": [ + 41 + ], + "value": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "player_leaderboard_rank_insert_input": { + "player_steam_id": [ + 85 + ], + "rank": [ + 41 + ], + "total": [ + 41 + ], + "value": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "player_leaderboard_rank_max_fields": { + "player_steam_id": [ + 85 + ], + "rank": [ + 41 + ], + "total": [ + 41 + ], + "value": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "player_leaderboard_rank_min_fields": { + "player_steam_id": [ + 85 + ], + "rank": [ + 41 + ], + "total": [ + 41 + ], + "value": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "player_leaderboard_rank_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 4089 + ], + "__typename": [ + 85 + ] + }, + "player_leaderboard_rank_order_by": { + "player_steam_id": [ + 3648 + ], + "rank": [ + 3648 + ], + "total": [ + 3648 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_leaderboard_rank_select_column": {}, + "player_leaderboard_rank_set_input": { + "player_steam_id": [ + 85 + ], + "rank": [ + 41 + ], + "total": [ + 41 + ], + "value": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "player_leaderboard_rank_stddev_fields": { + "rank": [ + 32 + ], + "total": [ + 32 + ], + "value": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_leaderboard_rank_stddev_pop_fields": { + "rank": [ + 32 + ], + "total": [ + 32 + ], + "value": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_leaderboard_rank_stddev_samp_fields": { + "rank": [ + 32 + ], + "total": [ + 32 + ], + "value": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_leaderboard_rank_stream_cursor_input": { + "initial_value": [ + 4106 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "player_leaderboard_rank_stream_cursor_value_input": { + "player_steam_id": [ + 85 + ], + "rank": [ + 41 + ], + "total": [ + 41 + ], + "value": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "player_leaderboard_rank_sum_fields": { + "rank": [ + 41 + ], + "total": [ + 41 + ], + "value": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "player_leaderboard_rank_updates": { + "_inc": [ + 4094 + ], + "_set": [ + 4101 + ], + "where": [ + 4093 + ], + "__typename": [ + 85 + ] + }, + "player_leaderboard_rank_var_pop_fields": { + "rank": [ + 32 + ], + "total": [ + 32 + ], + "value": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_leaderboard_rank_var_samp_fields": { + "rank": [ + 32 + ], + "total": [ + 32 + ], + "value": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_leaderboard_rank_variance_fields": { + "rank": [ + 32 + ], + "total": [ + 32 + ], + "value": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_match_map_stats": { + "assists": [ + 41 + ], + "assists_ct": [ + 41 + ], + "assists_t": [ + 41 + ], + "counter_strafe_eligible_shots": [ + 41 + ], + "counter_strafed_shots": [ + 41 + ], + "crosshair_angle_count": [ + 41 + ], + "crosshair_angle_sum_deg": [ + 3646 + ], + "damage": [ + 41 + ], + "damage_ct": [ + 41 + ], + "damage_t": [ + 41 + ], + "deaths": [ + 41 + ], + "deaths_ct": [ + 41 + ], + "deaths_t": [ + 41 + ], + "decoy_throws": [ + 41 + ], + "enemies_flashed": [ + 41 + ], + "first_bullet_hits": [ + 41 + ], + "first_bullet_shots": [ + 41 + ], + "five_kill_rounds": [ + 41 + ], + "flash_assists": [ + 41 + ], + "flash_duration_count": [ + 41 + ], + "flash_duration_sum": [ + 3646 + ], + "flashes_thrown": [ + 41 + ], + "four_kill_rounds": [ + 41 + ], + "he_damage": [ + 41 + ], + "he_team_damage": [ + 41 + ], + "he_throws": [ + 41 + ], + "headshot_hits": [ + 41 + ], + "hits": [ + 41 + ], + "hits_at_spotted": [ + 41 + ], + "hs_kills": [ + 41 + ], + "hs_kills_ct": [ + 41 + ], + "hs_kills_t": [ + 41 + ], + "kast_rounds": [ + 41 + ], + "kast_total_rounds": [ + 41 + ], + "kills": [ + 41 + ], + "kills_ct": [ + 41 + ], + "kills_t": [ + 41 + ], + "knife_kills": [ + 41 + ], + "match": [ + 3432 + ], + "match_id": [ + 6672 + ], + "match_map": [ + 3248 + ], + "match_map_id": [ + 6672 + ], + "molotov_damage": [ + 41 + ], + "molotov_throws": [ + 41 + ], + "non_awp_hits": [ + 41 + ], + "on_target_frames": [ + 41 + ], + "player": [ + 4606 + ], + "rounds_ct": [ + 41 + ], + "rounds_played": [ + 41 + ], + "rounds_t": [ + 41 + ], + "shots_at_spotted": [ + 41 + ], + "shots_fired": [ + 41 + ], + "smoke_throws": [ + 41 + ], + "spotted_count": [ + 41 + ], + "spotted_with_damage_count": [ + 41 + ], + "spray_hits": [ + 41 + ], + "spray_shots": [ + 41 + ], + "steam_id": [ + 312 + ], + "team_damage": [ + 41 + ], + "team_flashed": [ + 41 + ], + "three_kill_rounds": [ + 41 + ], + "time_to_damage_count": [ + 41 + ], + "time_to_damage_sum_s": [ + 3646 + ], + "total_engagement_frames": [ + 41 + ], + "trade_kill_attempts": [ + 41 + ], + "trade_kill_opportunities": [ + 41 + ], + "trade_kill_successes": [ + 41 + ], + "traded_death_attempts": [ + 41 + ], + "traded_death_opportunities": [ + 41 + ], + "traded_death_successes": [ + 41 + ], + "two_kill_rounds": [ + 41 + ], + "unused_utility_value": [ + 41 + ], + "updated_at": [ + 5243 + ], + "util_on_death_count": [ + 41 + ], + "util_on_death_sum": [ + 41 + ], + "wasted_magazine_shots": [ + 41 + ], + "zeus_kills": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "player_match_map_stats_aggregate": { + "aggregate": [ + 4116 + ], + "nodes": [ + 4112 + ], + "__typename": [ + 85 + ] + }, + "player_match_map_stats_aggregate_bool_exp": { + "count": [ + 4115 + ], + "__typename": [ + 85 + ] + }, + "player_match_map_stats_aggregate_bool_exp_count": { + "arguments": [ + 4133 + ], + "distinct": [ + 6 + ], + "filter": [ + 4121 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "player_match_map_stats_aggregate_fields": { + "avg": [ + 4119 + ], + "count": [ + 41, + { + "columns": [ + 4133, + "[player_match_map_stats_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 4125 + ], + "min": [ + 4127 + ], + "stddev": [ + 4135 + ], + "stddev_pop": [ + 4137 + ], + "stddev_samp": [ + 4139 + ], + "sum": [ + 4143 + ], + "var_pop": [ + 4147 + ], + "var_samp": [ + 4149 + ], + "variance": [ + 4151 + ], + "__typename": [ + 85 + ] + }, + "player_match_map_stats_aggregate_order_by": { + "avg": [ + 4120 + ], + "count": [ + 3648 + ], + "max": [ + 4126 + ], + "min": [ + 4128 + ], + "stddev": [ + 4136 + ], + "stddev_pop": [ + 4138 + ], + "stddev_samp": [ + 4140 + ], + "sum": [ + 4144 + ], + "var_pop": [ + 4148 + ], + "var_samp": [ + 4150 + ], + "variance": [ + 4152 + ], + "__typename": [ + 85 + ] + }, + "player_match_map_stats_arr_rel_insert_input": { + "data": [ + 4124 + ], + "on_conflict": [ + 4130 + ], + "__typename": [ + 85 + ] + }, + "player_match_map_stats_avg_fields": { + "assists": [ + 32 + ], + "assists_ct": [ + 32 + ], + "assists_t": [ + 32 + ], + "counter_strafe_eligible_shots": [ + 32 + ], + "counter_strafed_shots": [ + 32 + ], + "crosshair_angle_count": [ + 32 + ], + "crosshair_angle_sum_deg": [ + 32 + ], + "damage": [ + 32 + ], + "damage_ct": [ + 32 + ], + "damage_t": [ + 32 + ], + "deaths": [ + 32 + ], + "deaths_ct": [ + 32 + ], + "deaths_t": [ + 32 + ], + "decoy_throws": [ + 32 + ], + "enemies_flashed": [ + 32 + ], + "first_bullet_hits": [ + 32 + ], + "first_bullet_shots": [ + 32 + ], + "five_kill_rounds": [ + 32 + ], + "flash_assists": [ + 32 + ], + "flash_duration_count": [ + 32 + ], + "flash_duration_sum": [ + 32 + ], + "flashes_thrown": [ + 32 + ], + "four_kill_rounds": [ + 32 + ], + "he_damage": [ + 32 + ], + "he_team_damage": [ + 32 + ], + "he_throws": [ + 32 + ], + "headshot_hits": [ + 32 + ], + "hits": [ + 32 + ], + "hits_at_spotted": [ + 32 + ], + "hs_kills": [ + 32 + ], + "hs_kills_ct": [ + 32 + ], + "hs_kills_t": [ + 32 + ], + "kast_rounds": [ + 32 + ], + "kast_total_rounds": [ + 32 + ], + "kills": [ + 32 + ], + "kills_ct": [ + 32 + ], + "kills_t": [ + 32 + ], + "knife_kills": [ + 32 + ], + "molotov_damage": [ + 32 + ], + "molotov_throws": [ + 32 + ], + "non_awp_hits": [ + 32 + ], + "on_target_frames": [ + 32 + ], + "rounds_ct": [ + 32 + ], + "rounds_played": [ + 32 + ], + "rounds_t": [ + 32 + ], + "shots_at_spotted": [ + 32 + ], + "shots_fired": [ + 32 + ], + "smoke_throws": [ + 32 + ], + "spotted_count": [ + 32 + ], + "spotted_with_damage_count": [ + 32 + ], + "spray_hits": [ + 32 + ], + "spray_shots": [ + 32 + ], + "steam_id": [ + 32 + ], + "team_damage": [ + 32 + ], + "team_flashed": [ + 32 + ], + "three_kill_rounds": [ + 32 + ], + "time_to_damage_count": [ + 32 + ], + "time_to_damage_sum_s": [ + 32 + ], + "total_engagement_frames": [ + 32 + ], + "trade_kill_attempts": [ + 32 + ], + "trade_kill_opportunities": [ + 32 + ], + "trade_kill_successes": [ + 32 + ], + "traded_death_attempts": [ + 32 + ], + "traded_death_opportunities": [ + 32 + ], + "traded_death_successes": [ + 32 + ], + "two_kill_rounds": [ + 32 + ], + "unused_utility_value": [ + 32 + ], + "util_on_death_count": [ + 32 + ], + "util_on_death_sum": [ + 32 + ], + "wasted_magazine_shots": [ + 32 + ], + "zeus_kills": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_match_map_stats_avg_order_by": { + "assists": [ + 3648 + ], + "assists_ct": [ + 3648 + ], + "assists_t": [ + 3648 + ], + "counter_strafe_eligible_shots": [ + 3648 + ], + "counter_strafed_shots": [ + 3648 + ], + "crosshair_angle_count": [ + 3648 + ], + "crosshair_angle_sum_deg": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_ct": [ + 3648 + ], + "damage_t": [ + 3648 + ], + "deaths": [ + 3648 + ], + "deaths_ct": [ + 3648 + ], + "deaths_t": [ + 3648 + ], + "decoy_throws": [ + 3648 + ], + "enemies_flashed": [ + 3648 + ], + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "five_kill_rounds": [ + 3648 + ], + "flash_assists": [ + 3648 + ], + "flash_duration_count": [ + 3648 + ], + "flash_duration_sum": [ + 3648 + ], + "flashes_thrown": [ + 3648 + ], + "four_kill_rounds": [ + 3648 + ], + "he_damage": [ + 3648 + ], + "he_team_damage": [ + 3648 + ], + "he_throws": [ + 3648 + ], + "headshot_hits": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_at_spotted": [ + 3648 + ], + "hs_kills": [ + 3648 + ], + "hs_kills_ct": [ + 3648 + ], + "hs_kills_t": [ + 3648 + ], + "kast_rounds": [ + 3648 + ], + "kast_total_rounds": [ + 3648 + ], + "kills": [ + 3648 + ], + "kills_ct": [ + 3648 + ], + "kills_t": [ + 3648 + ], + "knife_kills": [ + 3648 + ], + "molotov_damage": [ + 3648 + ], + "molotov_throws": [ + 3648 + ], + "non_awp_hits": [ + 3648 + ], + "on_target_frames": [ + 3648 + ], + "rounds_ct": [ + 3648 + ], + "rounds_played": [ + 3648 + ], + "rounds_t": [ + 3648 + ], + "shots_at_spotted": [ + 3648 + ], + "shots_fired": [ + 3648 + ], + "smoke_throws": [ + 3648 + ], + "spotted_count": [ + 3648 + ], + "spotted_with_damage_count": [ + 3648 + ], + "spray_hits": [ + 3648 + ], + "spray_shots": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "team_damage": [ + 3648 + ], + "team_flashed": [ + 3648 + ], + "three_kill_rounds": [ + 3648 + ], + "time_to_damage_count": [ + 3648 + ], + "time_to_damage_sum_s": [ + 3648 + ], + "total_engagement_frames": [ + 3648 + ], + "trade_kill_attempts": [ + 3648 + ], + "trade_kill_opportunities": [ + 3648 + ], + "trade_kill_successes": [ + 3648 + ], + "traded_death_attempts": [ + 3648 + ], + "traded_death_opportunities": [ + 3648 + ], + "traded_death_successes": [ + 3648 + ], + "two_kill_rounds": [ + 3648 + ], + "unused_utility_value": [ + 3648 + ], + "util_on_death_count": [ + 3648 + ], + "util_on_death_sum": [ + 3648 + ], + "wasted_magazine_shots": [ + 3648 + ], + "zeus_kills": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_match_map_stats_bool_exp": { + "_and": [ + 4121 + ], + "_not": [ + 4121 + ], + "_or": [ + 4121 + ], + "assists": [ + 42 + ], + "assists_ct": [ + 42 + ], + "assists_t": [ + 42 + ], + "counter_strafe_eligible_shots": [ + 42 + ], + "counter_strafed_shots": [ + 42 + ], + "crosshair_angle_count": [ + 42 + ], + "crosshair_angle_sum_deg": [ + 3647 + ], + "damage": [ + 42 + ], + "damage_ct": [ + 42 + ], + "damage_t": [ + 42 + ], + "deaths": [ + 42 + ], + "deaths_ct": [ + 42 + ], + "deaths_t": [ + 42 + ], + "decoy_throws": [ + 42 + ], + "enemies_flashed": [ + 42 + ], + "first_bullet_hits": [ + 42 + ], + "first_bullet_shots": [ + 42 + ], + "five_kill_rounds": [ + 42 + ], + "flash_assists": [ + 42 + ], + "flash_duration_count": [ + 42 + ], + "flash_duration_sum": [ + 3647 + ], + "flashes_thrown": [ + 42 + ], + "four_kill_rounds": [ + 42 + ], + "he_damage": [ + 42 + ], + "he_team_damage": [ + 42 + ], + "he_throws": [ + 42 + ], + "headshot_hits": [ + 42 + ], + "hits": [ + 42 + ], + "hits_at_spotted": [ + 42 + ], + "hs_kills": [ + 42 + ], + "hs_kills_ct": [ + 42 + ], + "hs_kills_t": [ + 42 + ], + "kast_rounds": [ + 42 + ], + "kast_total_rounds": [ + 42 + ], + "kills": [ + 42 + ], + "kills_ct": [ + 42 + ], + "kills_t": [ + 42 + ], + "knife_kills": [ + 42 + ], + "match": [ + 3443 + ], + "match_id": [ + 6674 + ], + "match_map": [ + 3257 + ], + "match_map_id": [ + 6674 + ], + "molotov_damage": [ + 42 + ], + "molotov_throws": [ + 42 + ], + "non_awp_hits": [ + 42 + ], + "on_target_frames": [ + 42 + ], + "player": [ + 4610 + ], + "rounds_ct": [ + 42 + ], + "rounds_played": [ + 42 + ], + "rounds_t": [ + 42 + ], + "shots_at_spotted": [ + 42 + ], + "shots_fired": [ + 42 + ], + "smoke_throws": [ + 42 + ], + "spotted_count": [ + 42 + ], + "spotted_with_damage_count": [ + 42 + ], + "spray_hits": [ + 42 + ], + "spray_shots": [ + 42 + ], + "steam_id": [ + 314 + ], + "team_damage": [ + 42 + ], + "team_flashed": [ + 42 + ], + "three_kill_rounds": [ + 42 + ], + "time_to_damage_count": [ + 42 + ], + "time_to_damage_sum_s": [ + 3647 + ], + "total_engagement_frames": [ + 42 + ], + "trade_kill_attempts": [ + 42 + ], + "trade_kill_opportunities": [ + 42 + ], + "trade_kill_successes": [ + 42 + ], + "traded_death_attempts": [ + 42 + ], + "traded_death_opportunities": [ + 42 + ], + "traded_death_successes": [ + 42 + ], + "two_kill_rounds": [ + 42 + ], + "unused_utility_value": [ + 42 + ], + "updated_at": [ + 5244 + ], + "util_on_death_count": [ + 42 + ], + "util_on_death_sum": [ + 42 + ], + "wasted_magazine_shots": [ + 42 + ], + "zeus_kills": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "player_match_map_stats_constraint": {}, + "player_match_map_stats_inc_input": { + "assists": [ + 41 + ], + "assists_ct": [ + 41 + ], + "assists_t": [ + 41 + ], + "counter_strafe_eligible_shots": [ + 41 + ], + "counter_strafed_shots": [ + 41 + ], + "crosshair_angle_count": [ + 41 + ], + "crosshair_angle_sum_deg": [ + 3646 + ], + "damage": [ + 41 + ], + "damage_ct": [ + 41 + ], + "damage_t": [ + 41 + ], + "deaths": [ + 41 + ], + "deaths_ct": [ + 41 + ], + "deaths_t": [ + 41 + ], + "decoy_throws": [ + 41 + ], + "enemies_flashed": [ + 41 + ], + "first_bullet_hits": [ + 41 + ], + "first_bullet_shots": [ + 41 + ], + "five_kill_rounds": [ + 41 + ], + "flash_assists": [ + 41 + ], + "flash_duration_count": [ + 41 + ], + "flash_duration_sum": [ + 3646 + ], + "flashes_thrown": [ + 41 + ], + "four_kill_rounds": [ + 41 + ], + "he_damage": [ + 41 + ], + "he_team_damage": [ + 41 + ], + "he_throws": [ + 41 + ], + "headshot_hits": [ + 41 + ], + "hits": [ + 41 + ], + "hits_at_spotted": [ + 41 + ], + "hs_kills": [ + 41 + ], + "hs_kills_ct": [ + 41 + ], + "hs_kills_t": [ + 41 + ], + "kast_rounds": [ + 41 + ], + "kast_total_rounds": [ + 41 + ], + "kills": [ + 41 + ], + "kills_ct": [ + 41 + ], + "kills_t": [ + 41 + ], + "knife_kills": [ + 41 + ], + "molotov_damage": [ + 41 + ], + "molotov_throws": [ + 41 + ], + "non_awp_hits": [ + 41 + ], + "on_target_frames": [ + 41 + ], + "rounds_ct": [ + 41 + ], + "rounds_played": [ + 41 + ], + "rounds_t": [ + 41 + ], + "shots_at_spotted": [ + 41 + ], + "shots_fired": [ + 41 + ], + "smoke_throws": [ + 41 + ], + "spotted_count": [ + 41 + ], + "spotted_with_damage_count": [ + 41 + ], + "spray_hits": [ + 41 + ], + "spray_shots": [ + 41 + ], + "steam_id": [ + 312 + ], + "team_damage": [ + 41 + ], + "team_flashed": [ + 41 + ], + "three_kill_rounds": [ + 41 + ], + "time_to_damage_count": [ + 41 + ], + "time_to_damage_sum_s": [ + 3646 + ], + "total_engagement_frames": [ + 41 + ], + "trade_kill_attempts": [ + 41 + ], + "trade_kill_opportunities": [ + 41 + ], + "trade_kill_successes": [ + 41 + ], + "traded_death_attempts": [ + 41 + ], + "traded_death_opportunities": [ + 41 + ], + "traded_death_successes": [ + 41 + ], + "two_kill_rounds": [ + 41 + ], + "unused_utility_value": [ + 41 + ], + "util_on_death_count": [ + 41 + ], + "util_on_death_sum": [ + 41 + ], + "wasted_magazine_shots": [ + 41 + ], + "zeus_kills": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "player_match_map_stats_insert_input": { + "assists": [ + 41 + ], + "assists_ct": [ + 41 + ], + "assists_t": [ + 41 + ], + "counter_strafe_eligible_shots": [ + 41 + ], + "counter_strafed_shots": [ + 41 + ], + "crosshair_angle_count": [ + 41 + ], + "crosshair_angle_sum_deg": [ + 3646 + ], + "damage": [ + 41 + ], + "damage_ct": [ + 41 + ], + "damage_t": [ + 41 + ], + "deaths": [ + 41 + ], + "deaths_ct": [ + 41 + ], + "deaths_t": [ + 41 + ], + "decoy_throws": [ + 41 + ], + "enemies_flashed": [ + 41 + ], + "first_bullet_hits": [ + 41 + ], + "first_bullet_shots": [ + 41 + ], + "five_kill_rounds": [ + 41 + ], + "flash_assists": [ + 41 + ], + "flash_duration_count": [ + 41 + ], + "flash_duration_sum": [ + 3646 + ], + "flashes_thrown": [ + 41 + ], + "four_kill_rounds": [ + 41 + ], + "he_damage": [ + 41 + ], + "he_team_damage": [ + 41 + ], + "he_throws": [ + 41 + ], + "headshot_hits": [ + 41 + ], + "hits": [ + 41 + ], + "hits_at_spotted": [ + 41 + ], + "hs_kills": [ + 41 + ], + "hs_kills_ct": [ + 41 + ], + "hs_kills_t": [ + 41 + ], + "kast_rounds": [ + 41 + ], + "kast_total_rounds": [ + 41 + ], + "kills": [ + 41 + ], + "kills_ct": [ + 41 + ], + "kills_t": [ + 41 + ], + "knife_kills": [ + 41 + ], + "match": [ + 3452 + ], + "match_id": [ + 6672 + ], + "match_map": [ + 3266 + ], + "match_map_id": [ + 6672 + ], + "molotov_damage": [ + 41 + ], + "molotov_throws": [ + 41 + ], + "non_awp_hits": [ + 41 + ], + "on_target_frames": [ + 41 + ], + "player": [ + 4617 + ], + "rounds_ct": [ + 41 + ], + "rounds_played": [ + 41 + ], + "rounds_t": [ + 41 + ], + "shots_at_spotted": [ + 41 + ], + "shots_fired": [ + 41 + ], + "smoke_throws": [ + 41 + ], + "spotted_count": [ + 41 + ], + "spotted_with_damage_count": [ + 41 + ], + "spray_hits": [ + 41 + ], + "spray_shots": [ + 41 + ], + "steam_id": [ + 312 + ], + "team_damage": [ + 41 + ], + "team_flashed": [ + 41 + ], + "three_kill_rounds": [ + 41 + ], + "time_to_damage_count": [ + 41 + ], + "time_to_damage_sum_s": [ + 3646 + ], + "total_engagement_frames": [ + 41 + ], + "trade_kill_attempts": [ + 41 + ], + "trade_kill_opportunities": [ + 41 + ], + "trade_kill_successes": [ + 41 + ], + "traded_death_attempts": [ + 41 + ], + "traded_death_opportunities": [ + 41 + ], + "traded_death_successes": [ + 41 + ], + "two_kill_rounds": [ + 41 + ], + "unused_utility_value": [ + 41 + ], + "updated_at": [ + 5243 + ], + "util_on_death_count": [ + 41 + ], + "util_on_death_sum": [ + 41 + ], + "wasted_magazine_shots": [ + 41 + ], + "zeus_kills": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "player_match_map_stats_max_fields": { + "assists": [ + 41 + ], + "assists_ct": [ + 41 + ], + "assists_t": [ + 41 + ], + "counter_strafe_eligible_shots": [ + 41 + ], + "counter_strafed_shots": [ + 41 + ], + "crosshair_angle_count": [ + 41 + ], + "crosshair_angle_sum_deg": [ + 3646 + ], + "damage": [ + 41 + ], + "damage_ct": [ + 41 + ], + "damage_t": [ + 41 + ], + "deaths": [ + 41 + ], + "deaths_ct": [ + 41 + ], + "deaths_t": [ + 41 + ], + "decoy_throws": [ + 41 + ], + "enemies_flashed": [ + 41 + ], + "first_bullet_hits": [ + 41 + ], + "first_bullet_shots": [ + 41 + ], + "five_kill_rounds": [ + 41 + ], + "flash_assists": [ + 41 + ], + "flash_duration_count": [ + 41 + ], + "flash_duration_sum": [ + 3646 + ], + "flashes_thrown": [ + 41 + ], + "four_kill_rounds": [ + 41 + ], + "he_damage": [ + 41 + ], + "he_team_damage": [ + 41 + ], + "he_throws": [ + 41 + ], + "headshot_hits": [ + 41 + ], + "hits": [ + 41 + ], + "hits_at_spotted": [ + 41 + ], + "hs_kills": [ + 41 + ], + "hs_kills_ct": [ + 41 + ], + "hs_kills_t": [ + 41 + ], + "kast_rounds": [ + 41 + ], + "kast_total_rounds": [ + 41 + ], + "kills": [ + 41 + ], + "kills_ct": [ + 41 + ], + "kills_t": [ + 41 + ], + "knife_kills": [ + 41 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "molotov_damage": [ + 41 + ], + "molotov_throws": [ + 41 + ], + "non_awp_hits": [ + 41 + ], + "on_target_frames": [ + 41 + ], + "rounds_ct": [ + 41 + ], + "rounds_played": [ + 41 + ], + "rounds_t": [ + 41 + ], + "shots_at_spotted": [ + 41 + ], + "shots_fired": [ + 41 + ], + "smoke_throws": [ + 41 + ], + "spotted_count": [ + 41 + ], + "spotted_with_damage_count": [ + 41 + ], + "spray_hits": [ + 41 + ], + "spray_shots": [ + 41 + ], + "steam_id": [ + 312 + ], + "team_damage": [ + 41 + ], + "team_flashed": [ + 41 + ], + "three_kill_rounds": [ + 41 + ], + "time_to_damage_count": [ + 41 + ], + "time_to_damage_sum_s": [ + 3646 + ], + "total_engagement_frames": [ + 41 + ], + "trade_kill_attempts": [ + 41 + ], + "trade_kill_opportunities": [ + 41 + ], + "trade_kill_successes": [ + 41 + ], + "traded_death_attempts": [ + 41 + ], + "traded_death_opportunities": [ + 41 + ], + "traded_death_successes": [ + 41 + ], + "two_kill_rounds": [ + 41 + ], + "unused_utility_value": [ + 41 + ], + "updated_at": [ + 5243 + ], + "util_on_death_count": [ + 41 + ], + "util_on_death_sum": [ + 41 + ], + "wasted_magazine_shots": [ + 41 + ], + "zeus_kills": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "player_match_map_stats_max_order_by": { + "assists": [ + 3648 + ], + "assists_ct": [ + 3648 + ], + "assists_t": [ + 3648 + ], + "counter_strafe_eligible_shots": [ + 3648 + ], + "counter_strafed_shots": [ + 3648 + ], + "crosshair_angle_count": [ + 3648 + ], + "crosshair_angle_sum_deg": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_ct": [ + 3648 + ], + "damage_t": [ + 3648 + ], + "deaths": [ + 3648 + ], + "deaths_ct": [ + 3648 + ], + "deaths_t": [ + 3648 + ], + "decoy_throws": [ + 3648 + ], + "enemies_flashed": [ + 3648 + ], + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "five_kill_rounds": [ + 3648 + ], + "flash_assists": [ + 3648 + ], + "flash_duration_count": [ + 3648 + ], + "flash_duration_sum": [ + 3648 + ], + "flashes_thrown": [ + 3648 + ], + "four_kill_rounds": [ + 3648 + ], + "he_damage": [ + 3648 + ], + "he_team_damage": [ + 3648 + ], + "he_throws": [ + 3648 + ], + "headshot_hits": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_at_spotted": [ + 3648 + ], + "hs_kills": [ + 3648 + ], + "hs_kills_ct": [ + 3648 + ], + "hs_kills_t": [ + 3648 + ], + "kast_rounds": [ + 3648 + ], + "kast_total_rounds": [ + 3648 + ], + "kills": [ + 3648 + ], + "kills_ct": [ + 3648 + ], + "kills_t": [ + 3648 + ], + "knife_kills": [ + 3648 + ], + "match_id": [ + 3648 + ], + "match_map_id": [ + 3648 + ], + "molotov_damage": [ + 3648 + ], + "molotov_throws": [ + 3648 + ], + "non_awp_hits": [ + 3648 + ], + "on_target_frames": [ + 3648 + ], + "rounds_ct": [ + 3648 + ], + "rounds_played": [ + 3648 + ], + "rounds_t": [ + 3648 + ], + "shots_at_spotted": [ + 3648 + ], + "shots_fired": [ + 3648 + ], + "smoke_throws": [ + 3648 + ], + "spotted_count": [ + 3648 + ], + "spotted_with_damage_count": [ + 3648 + ], + "spray_hits": [ + 3648 + ], + "spray_shots": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "team_damage": [ + 3648 + ], + "team_flashed": [ + 3648 + ], + "three_kill_rounds": [ + 3648 + ], + "time_to_damage_count": [ + 3648 + ], + "time_to_damage_sum_s": [ + 3648 + ], + "total_engagement_frames": [ + 3648 + ], + "trade_kill_attempts": [ + 3648 + ], + "trade_kill_opportunities": [ + 3648 + ], + "trade_kill_successes": [ + 3648 + ], + "traded_death_attempts": [ + 3648 + ], + "traded_death_opportunities": [ + 3648 + ], + "traded_death_successes": [ + 3648 + ], + "two_kill_rounds": [ + 3648 + ], + "unused_utility_value": [ + 3648 + ], + "updated_at": [ + 3648 + ], + "util_on_death_count": [ + 3648 + ], + "util_on_death_sum": [ + 3648 + ], + "wasted_magazine_shots": [ + 3648 + ], + "zeus_kills": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_match_map_stats_min_fields": { + "assists": [ + 41 + ], + "assists_ct": [ + 41 + ], + "assists_t": [ + 41 + ], + "counter_strafe_eligible_shots": [ + 41 + ], + "counter_strafed_shots": [ + 41 + ], + "crosshair_angle_count": [ + 41 + ], + "crosshair_angle_sum_deg": [ + 3646 + ], + "damage": [ + 41 + ], + "damage_ct": [ + 41 + ], + "damage_t": [ + 41 + ], + "deaths": [ + 41 + ], + "deaths_ct": [ + 41 + ], + "deaths_t": [ + 41 + ], + "decoy_throws": [ + 41 + ], + "enemies_flashed": [ + 41 + ], + "first_bullet_hits": [ + 41 + ], + "first_bullet_shots": [ + 41 + ], + "five_kill_rounds": [ + 41 + ], + "flash_assists": [ + 41 + ], + "flash_duration_count": [ + 41 + ], + "flash_duration_sum": [ + 3646 + ], + "flashes_thrown": [ + 41 + ], + "four_kill_rounds": [ + 41 + ], + "he_damage": [ + 41 + ], + "he_team_damage": [ + 41 + ], + "he_throws": [ + 41 + ], + "headshot_hits": [ + 41 + ], + "hits": [ + 41 + ], + "hits_at_spotted": [ + 41 + ], + "hs_kills": [ + 41 + ], + "hs_kills_ct": [ + 41 + ], + "hs_kills_t": [ + 41 + ], + "kast_rounds": [ + 41 + ], + "kast_total_rounds": [ + 41 + ], + "kills": [ + 41 + ], + "kills_ct": [ + 41 + ], + "kills_t": [ + 41 + ], + "knife_kills": [ + 41 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "molotov_damage": [ + 41 + ], + "molotov_throws": [ + 41 + ], + "non_awp_hits": [ + 41 + ], + "on_target_frames": [ + 41 + ], + "rounds_ct": [ + 41 + ], + "rounds_played": [ + 41 + ], + "rounds_t": [ + 41 + ], + "shots_at_spotted": [ + 41 + ], + "shots_fired": [ + 41 + ], + "smoke_throws": [ + 41 + ], + "spotted_count": [ + 41 + ], + "spotted_with_damage_count": [ + 41 + ], + "spray_hits": [ + 41 + ], + "spray_shots": [ + 41 + ], + "steam_id": [ + 312 + ], + "team_damage": [ + 41 + ], + "team_flashed": [ + 41 + ], + "three_kill_rounds": [ + 41 + ], + "time_to_damage_count": [ + 41 + ], + "time_to_damage_sum_s": [ + 3646 + ], + "total_engagement_frames": [ + 41 + ], + "trade_kill_attempts": [ + 41 + ], + "trade_kill_opportunities": [ + 41 + ], + "trade_kill_successes": [ + 41 + ], + "traded_death_attempts": [ + 41 + ], + "traded_death_opportunities": [ + 41 + ], + "traded_death_successes": [ + 41 + ], + "two_kill_rounds": [ + 41 + ], + "unused_utility_value": [ + 41 + ], + "updated_at": [ + 5243 + ], + "util_on_death_count": [ + 41 + ], + "util_on_death_sum": [ + 41 + ], + "wasted_magazine_shots": [ + 41 + ], + "zeus_kills": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "player_match_map_stats_min_order_by": { + "assists": [ + 3648 + ], + "assists_ct": [ + 3648 + ], + "assists_t": [ + 3648 + ], + "counter_strafe_eligible_shots": [ + 3648 + ], + "counter_strafed_shots": [ + 3648 + ], + "crosshair_angle_count": [ + 3648 + ], + "crosshair_angle_sum_deg": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_ct": [ + 3648 + ], + "damage_t": [ + 3648 + ], + "deaths": [ + 3648 + ], + "deaths_ct": [ + 3648 + ], + "deaths_t": [ + 3648 + ], + "decoy_throws": [ + 3648 + ], + "enemies_flashed": [ + 3648 + ], + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "five_kill_rounds": [ + 3648 + ], + "flash_assists": [ + 3648 + ], + "flash_duration_count": [ + 3648 + ], + "flash_duration_sum": [ + 3648 + ], + "flashes_thrown": [ + 3648 + ], + "four_kill_rounds": [ + 3648 + ], + "he_damage": [ + 3648 + ], + "he_team_damage": [ + 3648 + ], + "he_throws": [ + 3648 + ], + "headshot_hits": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_at_spotted": [ + 3648 + ], + "hs_kills": [ + 3648 + ], + "hs_kills_ct": [ + 3648 + ], + "hs_kills_t": [ + 3648 + ], + "kast_rounds": [ + 3648 + ], + "kast_total_rounds": [ + 3648 + ], + "kills": [ + 3648 + ], + "kills_ct": [ + 3648 + ], + "kills_t": [ + 3648 + ], + "knife_kills": [ + 3648 + ], + "match_id": [ + 3648 + ], + "match_map_id": [ + 3648 + ], + "molotov_damage": [ + 3648 + ], + "molotov_throws": [ + 3648 + ], + "non_awp_hits": [ + 3648 + ], + "on_target_frames": [ + 3648 + ], + "rounds_ct": [ + 3648 + ], + "rounds_played": [ + 3648 + ], + "rounds_t": [ + 3648 + ], + "shots_at_spotted": [ + 3648 + ], + "shots_fired": [ + 3648 + ], + "smoke_throws": [ + 3648 + ], + "spotted_count": [ + 3648 + ], + "spotted_with_damage_count": [ + 3648 + ], + "spray_hits": [ + 3648 + ], + "spray_shots": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "team_damage": [ + 3648 + ], + "team_flashed": [ + 3648 + ], + "three_kill_rounds": [ + 3648 + ], + "time_to_damage_count": [ + 3648 + ], + "time_to_damage_sum_s": [ + 3648 + ], + "total_engagement_frames": [ + 3648 + ], + "trade_kill_attempts": [ + 3648 + ], + "trade_kill_opportunities": [ + 3648 + ], + "trade_kill_successes": [ + 3648 + ], + "traded_death_attempts": [ + 3648 + ], + "traded_death_opportunities": [ + 3648 + ], + "traded_death_successes": [ + 3648 + ], + "two_kill_rounds": [ + 3648 + ], + "unused_utility_value": [ + 3648 + ], + "updated_at": [ + 3648 + ], + "util_on_death_count": [ + 3648 + ], + "util_on_death_sum": [ + 3648 + ], + "wasted_magazine_shots": [ + 3648 + ], + "zeus_kills": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_match_map_stats_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 4112 + ], + "__typename": [ + 85 + ] + }, + "player_match_map_stats_on_conflict": { + "constraint": [ + 4122 + ], + "update_columns": [ + 4145 + ], + "where": [ + 4121 + ], + "__typename": [ + 85 + ] + }, + "player_match_map_stats_order_by": { + "assists": [ + 3648 + ], + "assists_ct": [ + 3648 + ], + "assists_t": [ + 3648 + ], + "counter_strafe_eligible_shots": [ + 3648 + ], + "counter_strafed_shots": [ + 3648 + ], + "crosshair_angle_count": [ + 3648 + ], + "crosshair_angle_sum_deg": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_ct": [ + 3648 + ], + "damage_t": [ + 3648 + ], + "deaths": [ + 3648 + ], + "deaths_ct": [ + 3648 + ], + "deaths_t": [ + 3648 + ], + "decoy_throws": [ + 3648 + ], + "enemies_flashed": [ + 3648 + ], + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "five_kill_rounds": [ + 3648 + ], + "flash_assists": [ + 3648 + ], + "flash_duration_count": [ + 3648 + ], + "flash_duration_sum": [ + 3648 + ], + "flashes_thrown": [ + 3648 + ], + "four_kill_rounds": [ + 3648 + ], + "he_damage": [ + 3648 + ], + "he_team_damage": [ + 3648 + ], + "he_throws": [ + 3648 + ], + "headshot_hits": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_at_spotted": [ + 3648 + ], + "hs_kills": [ + 3648 + ], + "hs_kills_ct": [ + 3648 + ], + "hs_kills_t": [ + 3648 + ], + "kast_rounds": [ + 3648 + ], + "kast_total_rounds": [ + 3648 + ], + "kills": [ + 3648 + ], + "kills_ct": [ + 3648 + ], + "kills_t": [ + 3648 + ], + "knife_kills": [ + 3648 + ], + "match": [ + 3454 + ], + "match_id": [ + 3648 + ], + "match_map": [ + 3268 + ], + "match_map_id": [ + 3648 + ], + "molotov_damage": [ + 3648 + ], + "molotov_throws": [ + 3648 + ], + "non_awp_hits": [ + 3648 + ], + "on_target_frames": [ + 3648 + ], + "player": [ + 4619 + ], + "rounds_ct": [ + 3648 + ], + "rounds_played": [ + 3648 + ], + "rounds_t": [ + 3648 + ], + "shots_at_spotted": [ + 3648 + ], + "shots_fired": [ + 3648 + ], + "smoke_throws": [ + 3648 + ], + "spotted_count": [ + 3648 + ], + "spotted_with_damage_count": [ + 3648 + ], + "spray_hits": [ + 3648 + ], + "spray_shots": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "team_damage": [ + 3648 + ], + "team_flashed": [ + 3648 + ], + "three_kill_rounds": [ + 3648 + ], + "time_to_damage_count": [ + 3648 + ], + "time_to_damage_sum_s": [ + 3648 + ], + "total_engagement_frames": [ + 3648 + ], + "trade_kill_attempts": [ + 3648 + ], + "trade_kill_opportunities": [ + 3648 + ], + "trade_kill_successes": [ + 3648 + ], + "traded_death_attempts": [ + 3648 + ], + "traded_death_opportunities": [ + 3648 + ], + "traded_death_successes": [ + 3648 + ], + "two_kill_rounds": [ + 3648 + ], + "unused_utility_value": [ + 3648 + ], + "updated_at": [ + 3648 + ], + "util_on_death_count": [ + 3648 + ], + "util_on_death_sum": [ + 3648 + ], + "wasted_magazine_shots": [ + 3648 + ], + "zeus_kills": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_match_map_stats_pk_columns_input": { + "match_map_id": [ + 6672 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "player_match_map_stats_select_column": {}, + "player_match_map_stats_set_input": { + "assists": [ + 41 + ], + "assists_ct": [ + 41 + ], + "assists_t": [ + 41 + ], + "counter_strafe_eligible_shots": [ + 41 + ], + "counter_strafed_shots": [ + 41 + ], + "crosshair_angle_count": [ + 41 + ], + "crosshair_angle_sum_deg": [ + 3646 + ], + "damage": [ + 41 + ], + "damage_ct": [ + 41 + ], + "damage_t": [ + 41 + ], + "deaths": [ + 41 + ], + "deaths_ct": [ + 41 + ], + "deaths_t": [ + 41 + ], + "decoy_throws": [ + 41 + ], + "enemies_flashed": [ + 41 + ], + "first_bullet_hits": [ + 41 + ], + "first_bullet_shots": [ + 41 + ], + "five_kill_rounds": [ + 41 + ], + "flash_assists": [ + 41 + ], + "flash_duration_count": [ + 41 + ], + "flash_duration_sum": [ + 3646 + ], + "flashes_thrown": [ + 41 + ], + "four_kill_rounds": [ + 41 + ], + "he_damage": [ + 41 + ], + "he_team_damage": [ + 41 + ], + "he_throws": [ + 41 + ], + "headshot_hits": [ + 41 + ], + "hits": [ + 41 + ], + "hits_at_spotted": [ + 41 + ], + "hs_kills": [ + 41 + ], + "hs_kills_ct": [ + 41 + ], + "hs_kills_t": [ + 41 + ], + "kast_rounds": [ + 41 + ], + "kast_total_rounds": [ + 41 + ], + "kills": [ + 41 + ], + "kills_ct": [ + 41 + ], + "kills_t": [ + 41 + ], + "knife_kills": [ + 41 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "molotov_damage": [ + 41 + ], + "molotov_throws": [ + 41 + ], + "non_awp_hits": [ + 41 + ], + "on_target_frames": [ + 41 + ], + "rounds_ct": [ + 41 + ], + "rounds_played": [ + 41 + ], + "rounds_t": [ + 41 + ], + "shots_at_spotted": [ + 41 + ], + "shots_fired": [ + 41 + ], + "smoke_throws": [ + 41 + ], + "spotted_count": [ + 41 + ], + "spotted_with_damage_count": [ + 41 + ], + "spray_hits": [ + 41 + ], + "spray_shots": [ + 41 + ], + "steam_id": [ + 312 + ], + "team_damage": [ + 41 + ], + "team_flashed": [ + 41 + ], + "three_kill_rounds": [ + 41 + ], + "time_to_damage_count": [ + 41 + ], + "time_to_damage_sum_s": [ + 3646 + ], + "total_engagement_frames": [ + 41 + ], + "trade_kill_attempts": [ + 41 + ], + "trade_kill_opportunities": [ + 41 + ], + "trade_kill_successes": [ + 41 + ], + "traded_death_attempts": [ + 41 + ], + "traded_death_opportunities": [ + 41 + ], + "traded_death_successes": [ + 41 + ], + "two_kill_rounds": [ + 41 + ], + "unused_utility_value": [ + 41 + ], + "updated_at": [ + 5243 + ], + "util_on_death_count": [ + 41 + ], + "util_on_death_sum": [ + 41 + ], + "wasted_magazine_shots": [ + 41 + ], + "zeus_kills": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "player_match_map_stats_stddev_fields": { + "assists": [ + 32 + ], + "assists_ct": [ + 32 + ], + "assists_t": [ + 32 + ], + "counter_strafe_eligible_shots": [ + 32 + ], + "counter_strafed_shots": [ + 32 + ], + "crosshair_angle_count": [ + 32 + ], + "crosshair_angle_sum_deg": [ + 32 + ], + "damage": [ + 32 + ], + "damage_ct": [ + 32 + ], + "damage_t": [ + 32 + ], + "deaths": [ + 32 + ], + "deaths_ct": [ + 32 + ], + "deaths_t": [ + 32 + ], + "decoy_throws": [ + 32 + ], + "enemies_flashed": [ + 32 + ], + "first_bullet_hits": [ + 32 + ], + "first_bullet_shots": [ + 32 + ], + "five_kill_rounds": [ + 32 + ], + "flash_assists": [ + 32 + ], + "flash_duration_count": [ + 32 + ], + "flash_duration_sum": [ + 32 + ], + "flashes_thrown": [ + 32 + ], + "four_kill_rounds": [ + 32 + ], + "he_damage": [ + 32 + ], + "he_team_damage": [ + 32 + ], + "he_throws": [ + 32 + ], + "headshot_hits": [ + 32 + ], + "hits": [ + 32 + ], + "hits_at_spotted": [ + 32 + ], + "hs_kills": [ + 32 + ], + "hs_kills_ct": [ + 32 + ], + "hs_kills_t": [ + 32 + ], + "kast_rounds": [ + 32 + ], + "kast_total_rounds": [ + 32 + ], + "kills": [ + 32 + ], + "kills_ct": [ + 32 + ], + "kills_t": [ + 32 + ], + "knife_kills": [ + 32 + ], + "molotov_damage": [ + 32 + ], + "molotov_throws": [ + 32 + ], + "non_awp_hits": [ + 32 + ], + "on_target_frames": [ + 32 + ], + "rounds_ct": [ + 32 + ], + "rounds_played": [ + 32 + ], + "rounds_t": [ + 32 + ], + "shots_at_spotted": [ + 32 + ], + "shots_fired": [ + 32 + ], + "smoke_throws": [ + 32 + ], + "spotted_count": [ + 32 + ], + "spotted_with_damage_count": [ + 32 + ], + "spray_hits": [ + 32 + ], + "spray_shots": [ + 32 + ], + "steam_id": [ + 32 + ], + "team_damage": [ + 32 + ], + "team_flashed": [ + 32 + ], + "three_kill_rounds": [ + 32 + ], + "time_to_damage_count": [ + 32 + ], + "time_to_damage_sum_s": [ + 32 + ], + "total_engagement_frames": [ + 32 + ], + "trade_kill_attempts": [ + 32 + ], + "trade_kill_opportunities": [ + 32 + ], + "trade_kill_successes": [ + 32 + ], + "traded_death_attempts": [ + 32 + ], + "traded_death_opportunities": [ + 32 + ], + "traded_death_successes": [ + 32 + ], + "two_kill_rounds": [ + 32 + ], + "unused_utility_value": [ + 32 + ], + "util_on_death_count": [ + 32 + ], + "util_on_death_sum": [ + 32 + ], + "wasted_magazine_shots": [ + 32 + ], + "zeus_kills": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_match_map_stats_stddev_order_by": { + "assists": [ + 3648 + ], + "assists_ct": [ + 3648 + ], + "assists_t": [ + 3648 + ], + "counter_strafe_eligible_shots": [ + 3648 + ], + "counter_strafed_shots": [ + 3648 + ], + "crosshair_angle_count": [ + 3648 + ], + "crosshair_angle_sum_deg": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_ct": [ + 3648 + ], + "damage_t": [ + 3648 + ], + "deaths": [ + 3648 + ], + "deaths_ct": [ + 3648 + ], + "deaths_t": [ + 3648 + ], + "decoy_throws": [ + 3648 + ], + "enemies_flashed": [ + 3648 + ], + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "five_kill_rounds": [ + 3648 + ], + "flash_assists": [ + 3648 + ], + "flash_duration_count": [ + 3648 + ], + "flash_duration_sum": [ + 3648 + ], + "flashes_thrown": [ + 3648 + ], + "four_kill_rounds": [ + 3648 + ], + "he_damage": [ + 3648 + ], + "he_team_damage": [ + 3648 + ], + "he_throws": [ + 3648 + ], + "headshot_hits": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_at_spotted": [ + 3648 + ], + "hs_kills": [ + 3648 + ], + "hs_kills_ct": [ + 3648 + ], + "hs_kills_t": [ + 3648 + ], + "kast_rounds": [ + 3648 + ], + "kast_total_rounds": [ + 3648 + ], + "kills": [ + 3648 + ], + "kills_ct": [ + 3648 + ], + "kills_t": [ + 3648 + ], + "knife_kills": [ + 3648 + ], + "molotov_damage": [ + 3648 + ], + "molotov_throws": [ + 3648 + ], + "non_awp_hits": [ + 3648 + ], + "on_target_frames": [ + 3648 + ], + "rounds_ct": [ + 3648 + ], + "rounds_played": [ + 3648 + ], + "rounds_t": [ + 3648 + ], + "shots_at_spotted": [ + 3648 + ], + "shots_fired": [ + 3648 + ], + "smoke_throws": [ + 3648 + ], + "spotted_count": [ + 3648 + ], + "spotted_with_damage_count": [ + 3648 + ], + "spray_hits": [ + 3648 + ], + "spray_shots": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "team_damage": [ + 3648 + ], + "team_flashed": [ + 3648 + ], + "three_kill_rounds": [ + 3648 + ], + "time_to_damage_count": [ + 3648 + ], + "time_to_damage_sum_s": [ + 3648 + ], + "total_engagement_frames": [ + 3648 + ], + "trade_kill_attempts": [ + 3648 + ], + "trade_kill_opportunities": [ + 3648 + ], + "trade_kill_successes": [ + 3648 + ], + "traded_death_attempts": [ + 3648 + ], + "traded_death_opportunities": [ + 3648 + ], + "traded_death_successes": [ + 3648 + ], + "two_kill_rounds": [ + 3648 + ], + "unused_utility_value": [ + 3648 + ], + "util_on_death_count": [ + 3648 + ], + "util_on_death_sum": [ + 3648 + ], + "wasted_magazine_shots": [ + 3648 + ], + "zeus_kills": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_match_map_stats_stddev_pop_fields": { + "assists": [ + 32 + ], + "assists_ct": [ + 32 + ], + "assists_t": [ + 32 + ], + "counter_strafe_eligible_shots": [ + 32 + ], + "counter_strafed_shots": [ + 32 + ], + "crosshair_angle_count": [ + 32 + ], + "crosshair_angle_sum_deg": [ + 32 + ], + "damage": [ + 32 + ], + "damage_ct": [ + 32 + ], + "damage_t": [ + 32 + ], + "deaths": [ + 32 + ], + "deaths_ct": [ + 32 + ], + "deaths_t": [ + 32 + ], + "decoy_throws": [ + 32 + ], + "enemies_flashed": [ + 32 + ], + "first_bullet_hits": [ + 32 + ], + "first_bullet_shots": [ + 32 + ], + "five_kill_rounds": [ + 32 + ], + "flash_assists": [ + 32 + ], + "flash_duration_count": [ + 32 + ], + "flash_duration_sum": [ + 32 + ], + "flashes_thrown": [ + 32 + ], + "four_kill_rounds": [ + 32 + ], + "he_damage": [ + 32 + ], + "he_team_damage": [ + 32 + ], + "he_throws": [ + 32 + ], + "headshot_hits": [ + 32 + ], + "hits": [ + 32 + ], + "hits_at_spotted": [ + 32 + ], + "hs_kills": [ + 32 + ], + "hs_kills_ct": [ + 32 + ], + "hs_kills_t": [ + 32 + ], + "kast_rounds": [ + 32 + ], + "kast_total_rounds": [ + 32 + ], + "kills": [ + 32 + ], + "kills_ct": [ + 32 + ], + "kills_t": [ + 32 + ], + "knife_kills": [ + 32 + ], + "molotov_damage": [ + 32 + ], + "molotov_throws": [ + 32 + ], + "non_awp_hits": [ + 32 + ], + "on_target_frames": [ + 32 + ], + "rounds_ct": [ + 32 + ], + "rounds_played": [ + 32 + ], + "rounds_t": [ + 32 + ], + "shots_at_spotted": [ + 32 + ], + "shots_fired": [ + 32 + ], + "smoke_throws": [ + 32 + ], + "spotted_count": [ + 32 + ], + "spotted_with_damage_count": [ + 32 + ], + "spray_hits": [ + 32 + ], + "spray_shots": [ + 32 + ], + "steam_id": [ + 32 + ], + "team_damage": [ + 32 + ], + "team_flashed": [ + 32 + ], + "three_kill_rounds": [ + 32 + ], + "time_to_damage_count": [ + 32 + ], + "time_to_damage_sum_s": [ + 32 + ], + "total_engagement_frames": [ + 32 + ], + "trade_kill_attempts": [ + 32 + ], + "trade_kill_opportunities": [ + 32 + ], + "trade_kill_successes": [ + 32 + ], + "traded_death_attempts": [ + 32 + ], + "traded_death_opportunities": [ + 32 + ], + "traded_death_successes": [ + 32 + ], + "two_kill_rounds": [ + 32 + ], + "unused_utility_value": [ + 32 + ], + "util_on_death_count": [ + 32 + ], + "util_on_death_sum": [ + 32 + ], + "wasted_magazine_shots": [ + 32 + ], + "zeus_kills": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_match_map_stats_stddev_pop_order_by": { + "assists": [ + 3648 + ], + "assists_ct": [ + 3648 + ], + "assists_t": [ + 3648 + ], + "counter_strafe_eligible_shots": [ + 3648 + ], + "counter_strafed_shots": [ + 3648 + ], + "crosshair_angle_count": [ + 3648 + ], + "crosshair_angle_sum_deg": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_ct": [ + 3648 + ], + "damage_t": [ + 3648 + ], + "deaths": [ + 3648 + ], + "deaths_ct": [ + 3648 + ], + "deaths_t": [ + 3648 + ], + "decoy_throws": [ + 3648 + ], + "enemies_flashed": [ + 3648 + ], + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "five_kill_rounds": [ + 3648 + ], + "flash_assists": [ + 3648 + ], + "flash_duration_count": [ + 3648 + ], + "flash_duration_sum": [ + 3648 + ], + "flashes_thrown": [ + 3648 + ], + "four_kill_rounds": [ + 3648 + ], + "he_damage": [ + 3648 + ], + "he_team_damage": [ + 3648 + ], + "he_throws": [ + 3648 + ], + "headshot_hits": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_at_spotted": [ + 3648 + ], + "hs_kills": [ + 3648 + ], + "hs_kills_ct": [ + 3648 + ], + "hs_kills_t": [ + 3648 + ], + "kast_rounds": [ + 3648 + ], + "kast_total_rounds": [ + 3648 + ], + "kills": [ + 3648 + ], + "kills_ct": [ + 3648 + ], + "kills_t": [ + 3648 + ], + "knife_kills": [ + 3648 + ], + "molotov_damage": [ + 3648 + ], + "molotov_throws": [ + 3648 + ], + "non_awp_hits": [ + 3648 + ], + "on_target_frames": [ + 3648 + ], + "rounds_ct": [ + 3648 + ], + "rounds_played": [ + 3648 + ], + "rounds_t": [ + 3648 + ], + "shots_at_spotted": [ + 3648 + ], + "shots_fired": [ + 3648 + ], + "smoke_throws": [ + 3648 + ], + "spotted_count": [ + 3648 + ], + "spotted_with_damage_count": [ + 3648 + ], + "spray_hits": [ + 3648 + ], + "spray_shots": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "team_damage": [ + 3648 + ], + "team_flashed": [ + 3648 + ], + "three_kill_rounds": [ + 3648 + ], + "time_to_damage_count": [ + 3648 + ], + "time_to_damage_sum_s": [ + 3648 + ], + "total_engagement_frames": [ + 3648 + ], + "trade_kill_attempts": [ + 3648 + ], + "trade_kill_opportunities": [ + 3648 + ], + "trade_kill_successes": [ + 3648 + ], + "traded_death_attempts": [ + 3648 + ], + "traded_death_opportunities": [ + 3648 + ], + "traded_death_successes": [ + 3648 + ], + "two_kill_rounds": [ + 3648 + ], + "unused_utility_value": [ + 3648 + ], + "util_on_death_count": [ + 3648 + ], + "util_on_death_sum": [ + 3648 + ], + "wasted_magazine_shots": [ + 3648 + ], + "zeus_kills": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_match_map_stats_stddev_samp_fields": { + "assists": [ + 32 + ], + "assists_ct": [ + 32 + ], + "assists_t": [ + 32 + ], + "counter_strafe_eligible_shots": [ + 32 + ], + "counter_strafed_shots": [ + 32 + ], + "crosshair_angle_count": [ + 32 + ], + "crosshair_angle_sum_deg": [ + 32 + ], + "damage": [ + 32 + ], + "damage_ct": [ + 32 + ], + "damage_t": [ + 32 + ], + "deaths": [ + 32 + ], + "deaths_ct": [ + 32 + ], + "deaths_t": [ + 32 + ], + "decoy_throws": [ + 32 + ], + "enemies_flashed": [ + 32 + ], + "first_bullet_hits": [ + 32 + ], + "first_bullet_shots": [ + 32 + ], + "five_kill_rounds": [ + 32 + ], + "flash_assists": [ + 32 + ], + "flash_duration_count": [ + 32 + ], + "flash_duration_sum": [ + 32 + ], + "flashes_thrown": [ + 32 + ], + "four_kill_rounds": [ + 32 + ], + "he_damage": [ + 32 + ], + "he_team_damage": [ + 32 + ], + "he_throws": [ + 32 + ], + "headshot_hits": [ + 32 + ], + "hits": [ + 32 + ], + "hits_at_spotted": [ + 32 + ], + "hs_kills": [ + 32 + ], + "hs_kills_ct": [ + 32 + ], + "hs_kills_t": [ + 32 + ], + "kast_rounds": [ + 32 + ], + "kast_total_rounds": [ + 32 + ], + "kills": [ + 32 + ], + "kills_ct": [ + 32 + ], + "kills_t": [ + 32 + ], + "knife_kills": [ + 32 + ], + "molotov_damage": [ + 32 + ], + "molotov_throws": [ + 32 + ], + "non_awp_hits": [ + 32 + ], + "on_target_frames": [ + 32 + ], + "rounds_ct": [ + 32 + ], + "rounds_played": [ + 32 + ], + "rounds_t": [ + 32 + ], + "shots_at_spotted": [ + 32 + ], + "shots_fired": [ + 32 + ], + "smoke_throws": [ + 32 + ], + "spotted_count": [ + 32 + ], + "spotted_with_damage_count": [ + 32 + ], + "spray_hits": [ + 32 + ], + "spray_shots": [ + 32 + ], + "steam_id": [ + 32 + ], + "team_damage": [ + 32 + ], + "team_flashed": [ + 32 + ], + "three_kill_rounds": [ + 32 + ], + "time_to_damage_count": [ + 32 + ], + "time_to_damage_sum_s": [ + 32 + ], + "total_engagement_frames": [ + 32 + ], + "trade_kill_attempts": [ + 32 + ], + "trade_kill_opportunities": [ + 32 + ], + "trade_kill_successes": [ + 32 + ], + "traded_death_attempts": [ + 32 + ], + "traded_death_opportunities": [ + 32 + ], + "traded_death_successes": [ + 32 + ], + "two_kill_rounds": [ + 32 + ], + "unused_utility_value": [ + 32 + ], + "util_on_death_count": [ + 32 + ], + "util_on_death_sum": [ + 32 + ], + "wasted_magazine_shots": [ + 32 + ], + "zeus_kills": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_match_map_stats_stddev_samp_order_by": { + "assists": [ + 3648 + ], + "assists_ct": [ + 3648 + ], + "assists_t": [ + 3648 + ], + "counter_strafe_eligible_shots": [ + 3648 + ], + "counter_strafed_shots": [ + 3648 + ], + "crosshair_angle_count": [ + 3648 + ], + "crosshair_angle_sum_deg": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_ct": [ + 3648 + ], + "damage_t": [ + 3648 + ], + "deaths": [ + 3648 + ], + "deaths_ct": [ + 3648 + ], + "deaths_t": [ + 3648 + ], + "decoy_throws": [ + 3648 + ], + "enemies_flashed": [ + 3648 + ], + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "five_kill_rounds": [ + 3648 + ], + "flash_assists": [ + 3648 + ], + "flash_duration_count": [ + 3648 + ], + "flash_duration_sum": [ + 3648 + ], + "flashes_thrown": [ + 3648 + ], + "four_kill_rounds": [ + 3648 + ], + "he_damage": [ + 3648 + ], + "he_team_damage": [ + 3648 + ], + "he_throws": [ + 3648 + ], + "headshot_hits": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_at_spotted": [ + 3648 + ], + "hs_kills": [ + 3648 + ], + "hs_kills_ct": [ + 3648 + ], + "hs_kills_t": [ + 3648 + ], + "kast_rounds": [ + 3648 + ], + "kast_total_rounds": [ + 3648 + ], + "kills": [ + 3648 + ], + "kills_ct": [ + 3648 + ], + "kills_t": [ + 3648 + ], + "knife_kills": [ + 3648 + ], + "molotov_damage": [ + 3648 + ], + "molotov_throws": [ + 3648 + ], + "non_awp_hits": [ + 3648 + ], + "on_target_frames": [ + 3648 + ], + "rounds_ct": [ + 3648 + ], + "rounds_played": [ + 3648 + ], + "rounds_t": [ + 3648 + ], + "shots_at_spotted": [ + 3648 + ], + "shots_fired": [ + 3648 + ], + "smoke_throws": [ + 3648 + ], + "spotted_count": [ + 3648 + ], + "spotted_with_damage_count": [ + 3648 + ], + "spray_hits": [ + 3648 + ], + "spray_shots": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "team_damage": [ + 3648 + ], + "team_flashed": [ + 3648 + ], + "three_kill_rounds": [ + 3648 + ], + "time_to_damage_count": [ + 3648 + ], + "time_to_damage_sum_s": [ + 3648 + ], + "total_engagement_frames": [ + 3648 + ], + "trade_kill_attempts": [ + 3648 + ], + "trade_kill_opportunities": [ + 3648 + ], + "trade_kill_successes": [ + 3648 + ], + "traded_death_attempts": [ + 3648 + ], + "traded_death_opportunities": [ + 3648 + ], + "traded_death_successes": [ + 3648 + ], + "two_kill_rounds": [ + 3648 + ], + "unused_utility_value": [ + 3648 + ], + "util_on_death_count": [ + 3648 + ], + "util_on_death_sum": [ + 3648 + ], + "wasted_magazine_shots": [ + 3648 + ], + "zeus_kills": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_match_map_stats_stream_cursor_input": { + "initial_value": [ + 4142 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "player_match_map_stats_stream_cursor_value_input": { + "assists": [ + 41 + ], + "assists_ct": [ + 41 + ], + "assists_t": [ + 41 + ], + "counter_strafe_eligible_shots": [ + 41 + ], + "counter_strafed_shots": [ + 41 + ], + "crosshair_angle_count": [ + 41 + ], + "crosshair_angle_sum_deg": [ + 3646 + ], + "damage": [ + 41 + ], + "damage_ct": [ + 41 + ], + "damage_t": [ + 41 + ], + "deaths": [ + 41 + ], + "deaths_ct": [ + 41 + ], + "deaths_t": [ + 41 + ], + "decoy_throws": [ + 41 + ], + "enemies_flashed": [ + 41 + ], + "first_bullet_hits": [ + 41 + ], + "first_bullet_shots": [ + 41 + ], + "five_kill_rounds": [ + 41 + ], + "flash_assists": [ + 41 + ], + "flash_duration_count": [ + 41 + ], + "flash_duration_sum": [ + 3646 + ], + "flashes_thrown": [ + 41 + ], + "four_kill_rounds": [ + 41 + ], + "he_damage": [ + 41 + ], + "he_team_damage": [ + 41 + ], + "he_throws": [ + 41 + ], + "headshot_hits": [ + 41 + ], + "hits": [ + 41 + ], + "hits_at_spotted": [ + 41 + ], + "hs_kills": [ + 41 + ], + "hs_kills_ct": [ + 41 + ], + "hs_kills_t": [ + 41 + ], + "kast_rounds": [ + 41 + ], + "kast_total_rounds": [ + 41 + ], + "kills": [ + 41 + ], + "kills_ct": [ + 41 + ], + "kills_t": [ + 41 + ], + "knife_kills": [ + 41 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "molotov_damage": [ + 41 + ], + "molotov_throws": [ + 41 + ], + "non_awp_hits": [ + 41 + ], + "on_target_frames": [ + 41 + ], + "rounds_ct": [ + 41 + ], + "rounds_played": [ + 41 + ], + "rounds_t": [ + 41 + ], + "shots_at_spotted": [ + 41 + ], + "shots_fired": [ + 41 + ], + "smoke_throws": [ + 41 + ], + "spotted_count": [ + 41 + ], + "spotted_with_damage_count": [ + 41 + ], + "spray_hits": [ + 41 + ], + "spray_shots": [ + 41 + ], + "steam_id": [ + 312 + ], + "team_damage": [ + 41 + ], + "team_flashed": [ + 41 + ], + "three_kill_rounds": [ + 41 + ], + "time_to_damage_count": [ + 41 + ], + "time_to_damage_sum_s": [ + 3646 + ], + "total_engagement_frames": [ + 41 + ], + "trade_kill_attempts": [ + 41 + ], + "trade_kill_opportunities": [ + 41 + ], + "trade_kill_successes": [ + 41 + ], + "traded_death_attempts": [ + 41 + ], + "traded_death_opportunities": [ + 41 + ], + "traded_death_successes": [ + 41 + ], + "two_kill_rounds": [ + 41 + ], + "unused_utility_value": [ + 41 + ], + "updated_at": [ + 5243 + ], + "util_on_death_count": [ + 41 + ], + "util_on_death_sum": [ + 41 + ], + "wasted_magazine_shots": [ + 41 + ], + "zeus_kills": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "player_match_map_stats_sum_fields": { + "assists": [ + 41 + ], + "assists_ct": [ + 41 + ], + "assists_t": [ + 41 + ], + "counter_strafe_eligible_shots": [ + 41 + ], + "counter_strafed_shots": [ + 41 + ], + "crosshair_angle_count": [ + 41 + ], + "crosshair_angle_sum_deg": [ + 3646 + ], + "damage": [ + 41 + ], + "damage_ct": [ + 41 + ], + "damage_t": [ + 41 + ], + "deaths": [ + 41 + ], + "deaths_ct": [ + 41 + ], + "deaths_t": [ + 41 + ], + "decoy_throws": [ + 41 + ], + "enemies_flashed": [ + 41 + ], + "first_bullet_hits": [ + 41 + ], + "first_bullet_shots": [ + 41 + ], + "five_kill_rounds": [ + 41 + ], + "flash_assists": [ + 41 + ], + "flash_duration_count": [ + 41 + ], + "flash_duration_sum": [ + 3646 + ], + "flashes_thrown": [ + 41 + ], + "four_kill_rounds": [ + 41 + ], + "he_damage": [ + 41 + ], + "he_team_damage": [ + 41 + ], + "he_throws": [ + 41 + ], + "headshot_hits": [ + 41 + ], + "hits": [ + 41 + ], + "hits_at_spotted": [ + 41 + ], + "hs_kills": [ + 41 + ], + "hs_kills_ct": [ + 41 + ], + "hs_kills_t": [ + 41 + ], + "kast_rounds": [ + 41 + ], + "kast_total_rounds": [ + 41 + ], + "kills": [ + 41 + ], + "kills_ct": [ + 41 + ], + "kills_t": [ + 41 + ], + "knife_kills": [ + 41 + ], + "molotov_damage": [ + 41 + ], + "molotov_throws": [ + 41 + ], + "non_awp_hits": [ + 41 + ], + "on_target_frames": [ + 41 + ], + "rounds_ct": [ + 41 + ], + "rounds_played": [ + 41 + ], + "rounds_t": [ + 41 + ], + "shots_at_spotted": [ + 41 + ], + "shots_fired": [ + 41 + ], + "smoke_throws": [ + 41 + ], + "spotted_count": [ + 41 + ], + "spotted_with_damage_count": [ + 41 + ], + "spray_hits": [ + 41 + ], + "spray_shots": [ + 41 + ], + "steam_id": [ + 312 + ], + "team_damage": [ + 41 + ], + "team_flashed": [ + 41 + ], + "three_kill_rounds": [ + 41 + ], + "time_to_damage_count": [ + 41 + ], + "time_to_damage_sum_s": [ + 3646 + ], + "total_engagement_frames": [ + 41 + ], + "trade_kill_attempts": [ + 41 + ], + "trade_kill_opportunities": [ + 41 + ], + "trade_kill_successes": [ + 41 + ], + "traded_death_attempts": [ + 41 + ], + "traded_death_opportunities": [ + 41 + ], + "traded_death_successes": [ + 41 + ], + "two_kill_rounds": [ + 41 + ], + "unused_utility_value": [ + 41 + ], + "util_on_death_count": [ + 41 + ], + "util_on_death_sum": [ + 41 + ], + "wasted_magazine_shots": [ + 41 + ], + "zeus_kills": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "player_match_map_stats_sum_order_by": { + "assists": [ + 3648 + ], + "assists_ct": [ + 3648 + ], + "assists_t": [ + 3648 + ], + "counter_strafe_eligible_shots": [ + 3648 + ], + "counter_strafed_shots": [ + 3648 + ], + "crosshair_angle_count": [ + 3648 + ], + "crosshair_angle_sum_deg": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_ct": [ + 3648 + ], + "damage_t": [ + 3648 + ], + "deaths": [ + 3648 + ], + "deaths_ct": [ + 3648 + ], + "deaths_t": [ + 3648 + ], + "decoy_throws": [ + 3648 + ], + "enemies_flashed": [ + 3648 + ], + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "five_kill_rounds": [ + 3648 + ], + "flash_assists": [ + 3648 + ], + "flash_duration_count": [ + 3648 + ], + "flash_duration_sum": [ + 3648 + ], + "flashes_thrown": [ + 3648 + ], + "four_kill_rounds": [ + 3648 + ], + "he_damage": [ + 3648 + ], + "he_team_damage": [ + 3648 + ], + "he_throws": [ + 3648 + ], + "headshot_hits": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_at_spotted": [ + 3648 + ], + "hs_kills": [ + 3648 + ], + "hs_kills_ct": [ + 3648 + ], + "hs_kills_t": [ + 3648 + ], + "kast_rounds": [ + 3648 + ], + "kast_total_rounds": [ + 3648 + ], + "kills": [ + 3648 + ], + "kills_ct": [ + 3648 + ], + "kills_t": [ + 3648 + ], + "knife_kills": [ + 3648 + ], + "molotov_damage": [ + 3648 + ], + "molotov_throws": [ + 3648 + ], + "non_awp_hits": [ + 3648 + ], + "on_target_frames": [ + 3648 + ], + "rounds_ct": [ + 3648 + ], + "rounds_played": [ + 3648 + ], + "rounds_t": [ + 3648 + ], + "shots_at_spotted": [ + 3648 + ], + "shots_fired": [ + 3648 + ], + "smoke_throws": [ + 3648 + ], + "spotted_count": [ + 3648 + ], + "spotted_with_damage_count": [ + 3648 + ], + "spray_hits": [ + 3648 + ], + "spray_shots": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "team_damage": [ + 3648 + ], + "team_flashed": [ + 3648 + ], + "three_kill_rounds": [ + 3648 + ], + "time_to_damage_count": [ + 3648 + ], + "time_to_damage_sum_s": [ + 3648 + ], + "total_engagement_frames": [ + 3648 + ], + "trade_kill_attempts": [ + 3648 + ], + "trade_kill_opportunities": [ + 3648 + ], + "trade_kill_successes": [ + 3648 + ], + "traded_death_attempts": [ + 3648 + ], + "traded_death_opportunities": [ + 3648 + ], + "traded_death_successes": [ + 3648 + ], + "two_kill_rounds": [ + 3648 + ], + "unused_utility_value": [ + 3648 + ], + "util_on_death_count": [ + 3648 + ], + "util_on_death_sum": [ + 3648 + ], + "wasted_magazine_shots": [ + 3648 + ], + "zeus_kills": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_match_map_stats_update_column": {}, + "player_match_map_stats_updates": { + "_inc": [ + 4123 + ], + "_set": [ + 4134 + ], + "where": [ + 4121 + ], + "__typename": [ + 85 + ] + }, + "player_match_map_stats_var_pop_fields": { + "assists": [ + 32 + ], + "assists_ct": [ + 32 + ], + "assists_t": [ + 32 + ], + "counter_strafe_eligible_shots": [ + 32 + ], + "counter_strafed_shots": [ + 32 + ], + "crosshair_angle_count": [ + 32 + ], + "crosshair_angle_sum_deg": [ + 32 + ], + "damage": [ + 32 + ], + "damage_ct": [ + 32 + ], + "damage_t": [ + 32 + ], + "deaths": [ + 32 + ], + "deaths_ct": [ + 32 + ], + "deaths_t": [ + 32 + ], + "decoy_throws": [ + 32 + ], + "enemies_flashed": [ + 32 + ], + "first_bullet_hits": [ + 32 + ], + "first_bullet_shots": [ + 32 + ], + "five_kill_rounds": [ + 32 + ], + "flash_assists": [ + 32 + ], + "flash_duration_count": [ + 32 + ], + "flash_duration_sum": [ + 32 + ], + "flashes_thrown": [ + 32 + ], + "four_kill_rounds": [ + 32 + ], + "he_damage": [ + 32 + ], + "he_team_damage": [ + 32 + ], + "he_throws": [ + 32 + ], + "headshot_hits": [ + 32 + ], + "hits": [ + 32 + ], + "hits_at_spotted": [ + 32 + ], + "hs_kills": [ + 32 + ], + "hs_kills_ct": [ + 32 + ], + "hs_kills_t": [ + 32 + ], + "kast_rounds": [ + 32 + ], + "kast_total_rounds": [ + 32 + ], + "kills": [ + 32 + ], + "kills_ct": [ + 32 + ], + "kills_t": [ + 32 + ], + "knife_kills": [ + 32 + ], + "molotov_damage": [ + 32 + ], + "molotov_throws": [ + 32 + ], + "non_awp_hits": [ + 32 + ], + "on_target_frames": [ + 32 + ], + "rounds_ct": [ + 32 + ], + "rounds_played": [ + 32 + ], + "rounds_t": [ + 32 + ], + "shots_at_spotted": [ + 32 + ], + "shots_fired": [ + 32 + ], + "smoke_throws": [ + 32 + ], + "spotted_count": [ + 32 + ], + "spotted_with_damage_count": [ + 32 + ], + "spray_hits": [ + 32 + ], + "spray_shots": [ + 32 + ], + "steam_id": [ + 32 + ], + "team_damage": [ + 32 + ], + "team_flashed": [ + 32 + ], + "three_kill_rounds": [ + 32 + ], + "time_to_damage_count": [ + 32 + ], + "time_to_damage_sum_s": [ + 32 + ], + "total_engagement_frames": [ + 32 + ], + "trade_kill_attempts": [ + 32 + ], + "trade_kill_opportunities": [ + 32 + ], + "trade_kill_successes": [ + 32 + ], + "traded_death_attempts": [ + 32 + ], + "traded_death_opportunities": [ + 32 + ], + "traded_death_successes": [ + 32 + ], + "two_kill_rounds": [ + 32 + ], + "unused_utility_value": [ + 32 + ], + "util_on_death_count": [ + 32 + ], + "util_on_death_sum": [ + 32 + ], + "wasted_magazine_shots": [ + 32 + ], + "zeus_kills": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_match_map_stats_var_pop_order_by": { + "assists": [ + 3648 + ], + "assists_ct": [ + 3648 + ], + "assists_t": [ + 3648 + ], + "counter_strafe_eligible_shots": [ + 3648 + ], + "counter_strafed_shots": [ + 3648 + ], + "crosshair_angle_count": [ + 3648 + ], + "crosshair_angle_sum_deg": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_ct": [ + 3648 + ], + "damage_t": [ + 3648 + ], + "deaths": [ + 3648 + ], + "deaths_ct": [ + 3648 + ], + "deaths_t": [ + 3648 + ], + "decoy_throws": [ + 3648 + ], + "enemies_flashed": [ + 3648 + ], + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "five_kill_rounds": [ + 3648 + ], + "flash_assists": [ + 3648 + ], + "flash_duration_count": [ + 3648 + ], + "flash_duration_sum": [ + 3648 + ], + "flashes_thrown": [ + 3648 + ], + "four_kill_rounds": [ + 3648 + ], + "he_damage": [ + 3648 + ], + "he_team_damage": [ + 3648 + ], + "he_throws": [ + 3648 + ], + "headshot_hits": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_at_spotted": [ + 3648 + ], + "hs_kills": [ + 3648 + ], + "hs_kills_ct": [ + 3648 + ], + "hs_kills_t": [ + 3648 + ], + "kast_rounds": [ + 3648 + ], + "kast_total_rounds": [ + 3648 + ], + "kills": [ + 3648 + ], + "kills_ct": [ + 3648 + ], + "kills_t": [ + 3648 + ], + "knife_kills": [ + 3648 + ], + "molotov_damage": [ + 3648 + ], + "molotov_throws": [ + 3648 + ], + "non_awp_hits": [ + 3648 + ], + "on_target_frames": [ + 3648 + ], + "rounds_ct": [ + 3648 + ], + "rounds_played": [ + 3648 + ], + "rounds_t": [ + 3648 + ], + "shots_at_spotted": [ + 3648 + ], + "shots_fired": [ + 3648 + ], + "smoke_throws": [ + 3648 + ], + "spotted_count": [ + 3648 + ], + "spotted_with_damage_count": [ + 3648 + ], + "spray_hits": [ + 3648 + ], + "spray_shots": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "team_damage": [ + 3648 + ], + "team_flashed": [ + 3648 + ], + "three_kill_rounds": [ + 3648 + ], + "time_to_damage_count": [ + 3648 + ], + "time_to_damage_sum_s": [ + 3648 + ], + "total_engagement_frames": [ + 3648 + ], + "trade_kill_attempts": [ + 3648 + ], + "trade_kill_opportunities": [ + 3648 + ], + "trade_kill_successes": [ + 3648 + ], + "traded_death_attempts": [ + 3648 + ], + "traded_death_opportunities": [ + 3648 + ], + "traded_death_successes": [ + 3648 + ], + "two_kill_rounds": [ + 3648 + ], + "unused_utility_value": [ + 3648 + ], + "util_on_death_count": [ + 3648 + ], + "util_on_death_sum": [ + 3648 + ], + "wasted_magazine_shots": [ + 3648 + ], + "zeus_kills": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_match_map_stats_var_samp_fields": { + "assists": [ + 32 + ], + "assists_ct": [ + 32 + ], + "assists_t": [ + 32 + ], + "counter_strafe_eligible_shots": [ + 32 + ], + "counter_strafed_shots": [ + 32 + ], + "crosshair_angle_count": [ + 32 + ], + "crosshair_angle_sum_deg": [ + 32 + ], + "damage": [ + 32 + ], + "damage_ct": [ + 32 + ], + "damage_t": [ + 32 + ], + "deaths": [ + 32 + ], + "deaths_ct": [ + 32 + ], + "deaths_t": [ + 32 + ], + "decoy_throws": [ + 32 + ], + "enemies_flashed": [ + 32 + ], + "first_bullet_hits": [ + 32 + ], + "first_bullet_shots": [ + 32 + ], + "five_kill_rounds": [ + 32 + ], + "flash_assists": [ + 32 + ], + "flash_duration_count": [ + 32 + ], + "flash_duration_sum": [ + 32 + ], + "flashes_thrown": [ + 32 + ], + "four_kill_rounds": [ + 32 + ], + "he_damage": [ + 32 + ], + "he_team_damage": [ + 32 + ], + "he_throws": [ + 32 + ], + "headshot_hits": [ + 32 + ], + "hits": [ + 32 + ], + "hits_at_spotted": [ + 32 + ], + "hs_kills": [ + 32 + ], + "hs_kills_ct": [ + 32 + ], + "hs_kills_t": [ + 32 + ], + "kast_rounds": [ + 32 + ], + "kast_total_rounds": [ + 32 + ], + "kills": [ + 32 + ], + "kills_ct": [ + 32 + ], + "kills_t": [ + 32 + ], + "knife_kills": [ + 32 + ], + "molotov_damage": [ + 32 + ], + "molotov_throws": [ + 32 + ], + "non_awp_hits": [ + 32 + ], + "on_target_frames": [ + 32 + ], + "rounds_ct": [ + 32 + ], + "rounds_played": [ + 32 + ], + "rounds_t": [ + 32 + ], + "shots_at_spotted": [ + 32 + ], + "shots_fired": [ + 32 + ], + "smoke_throws": [ + 32 + ], + "spotted_count": [ + 32 + ], + "spotted_with_damage_count": [ + 32 + ], + "spray_hits": [ + 32 + ], + "spray_shots": [ + 32 + ], + "steam_id": [ + 32 + ], + "team_damage": [ + 32 + ], + "team_flashed": [ + 32 + ], + "three_kill_rounds": [ + 32 + ], + "time_to_damage_count": [ + 32 + ], + "time_to_damage_sum_s": [ + 32 + ], + "total_engagement_frames": [ + 32 + ], + "trade_kill_attempts": [ + 32 + ], + "trade_kill_opportunities": [ + 32 + ], + "trade_kill_successes": [ + 32 + ], + "traded_death_attempts": [ + 32 + ], + "traded_death_opportunities": [ + 32 + ], + "traded_death_successes": [ + 32 + ], + "two_kill_rounds": [ + 32 + ], + "unused_utility_value": [ + 32 + ], + "util_on_death_count": [ + 32 + ], + "util_on_death_sum": [ + 32 + ], + "wasted_magazine_shots": [ + 32 + ], + "zeus_kills": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_match_map_stats_var_samp_order_by": { + "assists": [ + 3648 + ], + "assists_ct": [ + 3648 + ], + "assists_t": [ + 3648 + ], + "counter_strafe_eligible_shots": [ + 3648 + ], + "counter_strafed_shots": [ + 3648 + ], + "crosshair_angle_count": [ + 3648 + ], + "crosshair_angle_sum_deg": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_ct": [ + 3648 + ], + "damage_t": [ + 3648 + ], + "deaths": [ + 3648 + ], + "deaths_ct": [ + 3648 + ], + "deaths_t": [ + 3648 + ], + "decoy_throws": [ + 3648 + ], + "enemies_flashed": [ + 3648 + ], + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "five_kill_rounds": [ + 3648 + ], + "flash_assists": [ + 3648 + ], + "flash_duration_count": [ + 3648 + ], + "flash_duration_sum": [ + 3648 + ], + "flashes_thrown": [ + 3648 + ], + "four_kill_rounds": [ + 3648 + ], + "he_damage": [ + 3648 + ], + "he_team_damage": [ + 3648 + ], + "he_throws": [ + 3648 + ], + "headshot_hits": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_at_spotted": [ + 3648 + ], + "hs_kills": [ + 3648 + ], + "hs_kills_ct": [ + 3648 + ], + "hs_kills_t": [ + 3648 + ], + "kast_rounds": [ + 3648 + ], + "kast_total_rounds": [ + 3648 + ], + "kills": [ + 3648 + ], + "kills_ct": [ + 3648 + ], + "kills_t": [ + 3648 + ], + "knife_kills": [ + 3648 + ], + "molotov_damage": [ + 3648 + ], + "molotov_throws": [ + 3648 + ], + "non_awp_hits": [ + 3648 + ], + "on_target_frames": [ + 3648 + ], + "rounds_ct": [ + 3648 + ], + "rounds_played": [ + 3648 + ], + "rounds_t": [ + 3648 + ], + "shots_at_spotted": [ + 3648 + ], + "shots_fired": [ + 3648 + ], + "smoke_throws": [ + 3648 + ], + "spotted_count": [ + 3648 + ], + "spotted_with_damage_count": [ + 3648 + ], + "spray_hits": [ + 3648 + ], + "spray_shots": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "team_damage": [ + 3648 + ], + "team_flashed": [ + 3648 + ], + "three_kill_rounds": [ + 3648 + ], + "time_to_damage_count": [ + 3648 + ], + "time_to_damage_sum_s": [ + 3648 + ], + "total_engagement_frames": [ + 3648 + ], + "trade_kill_attempts": [ + 3648 + ], + "trade_kill_opportunities": [ + 3648 + ], + "trade_kill_successes": [ + 3648 + ], + "traded_death_attempts": [ + 3648 + ], + "traded_death_opportunities": [ + 3648 + ], + "traded_death_successes": [ + 3648 + ], + "two_kill_rounds": [ + 3648 + ], + "unused_utility_value": [ + 3648 + ], + "util_on_death_count": [ + 3648 + ], + "util_on_death_sum": [ + 3648 + ], + "wasted_magazine_shots": [ + 3648 + ], + "zeus_kills": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_match_map_stats_variance_fields": { + "assists": [ + 32 + ], + "assists_ct": [ + 32 + ], + "assists_t": [ + 32 + ], + "counter_strafe_eligible_shots": [ + 32 + ], + "counter_strafed_shots": [ + 32 + ], + "crosshair_angle_count": [ + 32 + ], + "crosshair_angle_sum_deg": [ + 32 + ], + "damage": [ + 32 + ], + "damage_ct": [ + 32 + ], + "damage_t": [ + 32 + ], + "deaths": [ + 32 + ], + "deaths_ct": [ + 32 + ], + "deaths_t": [ + 32 + ], + "decoy_throws": [ + 32 + ], + "enemies_flashed": [ + 32 + ], + "first_bullet_hits": [ + 32 + ], + "first_bullet_shots": [ + 32 + ], + "five_kill_rounds": [ + 32 + ], + "flash_assists": [ + 32 + ], + "flash_duration_count": [ + 32 + ], + "flash_duration_sum": [ + 32 + ], + "flashes_thrown": [ + 32 + ], + "four_kill_rounds": [ + 32 + ], + "he_damage": [ + 32 + ], + "he_team_damage": [ + 32 + ], + "he_throws": [ + 32 + ], + "headshot_hits": [ + 32 + ], + "hits": [ + 32 + ], + "hits_at_spotted": [ + 32 + ], + "hs_kills": [ + 32 + ], + "hs_kills_ct": [ + 32 + ], + "hs_kills_t": [ + 32 + ], + "kast_rounds": [ + 32 + ], + "kast_total_rounds": [ + 32 + ], + "kills": [ + 32 + ], + "kills_ct": [ + 32 + ], + "kills_t": [ + 32 + ], + "knife_kills": [ + 32 + ], + "molotov_damage": [ + 32 + ], + "molotov_throws": [ + 32 + ], + "non_awp_hits": [ + 32 + ], + "on_target_frames": [ + 32 + ], + "rounds_ct": [ + 32 + ], + "rounds_played": [ + 32 + ], + "rounds_t": [ + 32 + ], + "shots_at_spotted": [ + 32 + ], + "shots_fired": [ + 32 + ], + "smoke_throws": [ + 32 + ], + "spotted_count": [ + 32 + ], + "spotted_with_damage_count": [ + 32 + ], + "spray_hits": [ + 32 + ], + "spray_shots": [ + 32 + ], + "steam_id": [ + 32 + ], + "team_damage": [ + 32 + ], + "team_flashed": [ + 32 + ], + "three_kill_rounds": [ + 32 + ], + "time_to_damage_count": [ + 32 + ], + "time_to_damage_sum_s": [ + 32 + ], + "total_engagement_frames": [ + 32 + ], + "trade_kill_attempts": [ + 32 + ], + "trade_kill_opportunities": [ + 32 + ], + "trade_kill_successes": [ + 32 + ], + "traded_death_attempts": [ + 32 + ], + "traded_death_opportunities": [ + 32 + ], + "traded_death_successes": [ + 32 + ], + "two_kill_rounds": [ + 32 + ], + "unused_utility_value": [ + 32 + ], + "util_on_death_count": [ + 32 + ], + "util_on_death_sum": [ + 32 + ], + "wasted_magazine_shots": [ + 32 + ], + "zeus_kills": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_match_map_stats_variance_order_by": { + "assists": [ + 3648 + ], + "assists_ct": [ + 3648 + ], + "assists_t": [ + 3648 + ], + "counter_strafe_eligible_shots": [ + 3648 + ], + "counter_strafed_shots": [ + 3648 + ], + "crosshair_angle_count": [ + 3648 + ], + "crosshair_angle_sum_deg": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_ct": [ + 3648 + ], + "damage_t": [ + 3648 + ], + "deaths": [ + 3648 + ], + "deaths_ct": [ + 3648 + ], + "deaths_t": [ + 3648 + ], + "decoy_throws": [ + 3648 + ], + "enemies_flashed": [ + 3648 + ], + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "five_kill_rounds": [ + 3648 + ], + "flash_assists": [ + 3648 + ], + "flash_duration_count": [ + 3648 + ], + "flash_duration_sum": [ + 3648 + ], + "flashes_thrown": [ + 3648 + ], + "four_kill_rounds": [ + 3648 + ], + "he_damage": [ + 3648 + ], + "he_team_damage": [ + 3648 + ], + "he_throws": [ + 3648 + ], + "headshot_hits": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_at_spotted": [ + 3648 + ], + "hs_kills": [ + 3648 + ], + "hs_kills_ct": [ + 3648 + ], + "hs_kills_t": [ + 3648 + ], + "kast_rounds": [ + 3648 + ], + "kast_total_rounds": [ + 3648 + ], + "kills": [ + 3648 + ], + "kills_ct": [ + 3648 + ], + "kills_t": [ + 3648 + ], + "knife_kills": [ + 3648 + ], + "molotov_damage": [ + 3648 + ], + "molotov_throws": [ + 3648 + ], + "non_awp_hits": [ + 3648 + ], + "on_target_frames": [ + 3648 + ], + "rounds_ct": [ + 3648 + ], + "rounds_played": [ + 3648 + ], + "rounds_t": [ + 3648 + ], + "shots_at_spotted": [ + 3648 + ], + "shots_fired": [ + 3648 + ], + "smoke_throws": [ + 3648 + ], + "spotted_count": [ + 3648 + ], + "spotted_with_damage_count": [ + 3648 + ], + "spray_hits": [ + 3648 + ], + "spray_shots": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "team_damage": [ + 3648 + ], + "team_flashed": [ + 3648 + ], + "three_kill_rounds": [ + 3648 + ], + "time_to_damage_count": [ + 3648 + ], + "time_to_damage_sum_s": [ + 3648 + ], + "total_engagement_frames": [ + 3648 + ], + "trade_kill_attempts": [ + 3648 + ], + "trade_kill_opportunities": [ + 3648 + ], + "trade_kill_successes": [ + 3648 + ], + "traded_death_attempts": [ + 3648 + ], + "traded_death_opportunities": [ + 3648 + ], + "traded_death_successes": [ + 3648 + ], + "two_kill_rounds": [ + 3648 + ], + "unused_utility_value": [ + 3648 + ], + "util_on_death_count": [ + 3648 + ], + "util_on_death_sum": [ + 3648 + ], + "wasted_magazine_shots": [ + 3648 + ], + "zeus_kills": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_match_performance_v": { + "accuracy": [ + 3646 + ], + "accuracy_spotted": [ + 3646 + ], + "aim_rating": [ + 2093 + ], + "counter_strafe_pct": [ + 3646 + ], + "enemy_blind_pr": [ + 3646 + ], + "flash_assists_pr": [ + 3646 + ], + "hs_pct": [ + 3646 + ], + "kast_pct": [ + 3646 + ], + "match_id": [ + 6672 + ], + "overall_rating": [ + 2093 + ], + "played_at": [ + 5243 + ], + "positioning_rating": [ + 2093 + ], + "rounds": [ + 41 + ], + "source": [ + 85 + ], + "steam_id": [ + 312 + ], + "survival_pct": [ + 3646 + ], + "traded_death_pct": [ + 3646 + ], + "util_efficiency": [ + 3646 + ], + "utility_rating": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "player_match_performance_v_aggregate": { + "aggregate": [ + 4155 + ], + "nodes": [ + 4153 + ], + "__typename": [ + 85 + ] + }, + "player_match_performance_v_aggregate_fields": { + "avg": [ + 4156 + ], + "count": [ + 41, + { + "columns": [ + 4161, + "[player_match_performance_v_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 4158 + ], + "min": [ + 4159 + ], + "stddev": [ + 4162 + ], + "stddev_pop": [ + 4163 + ], + "stddev_samp": [ + 4164 + ], + "sum": [ + 4167 + ], + "var_pop": [ + 4168 + ], + "var_samp": [ + 4169 + ], + "variance": [ + 4170 + ], + "__typename": [ + 85 + ] + }, + "player_match_performance_v_avg_fields": { + "accuracy": [ + 32 + ], + "accuracy_spotted": [ + 32 + ], + "aim_rating": [ + 32 + ], + "counter_strafe_pct": [ + 32 + ], + "enemy_blind_pr": [ + 32 + ], + "flash_assists_pr": [ + 32 + ], + "hs_pct": [ + 32 + ], + "kast_pct": [ + 32 + ], + "overall_rating": [ + 32 + ], + "positioning_rating": [ + 32 + ], + "rounds": [ + 32 + ], + "steam_id": [ + 32 + ], + "survival_pct": [ + 32 + ], + "traded_death_pct": [ + 32 + ], + "util_efficiency": [ + 32 + ], + "utility_rating": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_match_performance_v_bool_exp": { + "_and": [ + 4157 + ], + "_not": [ + 4157 + ], + "_or": [ + 4157 + ], + "accuracy": [ + 3647 + ], + "accuracy_spotted": [ + 3647 + ], + "aim_rating": [ + 2094 + ], + "counter_strafe_pct": [ + 3647 + ], + "enemy_blind_pr": [ + 3647 + ], + "flash_assists_pr": [ + 3647 + ], + "hs_pct": [ + 3647 + ], + "kast_pct": [ + 3647 + ], + "match_id": [ + 6674 + ], + "overall_rating": [ + 2094 + ], + "played_at": [ + 5244 + ], + "positioning_rating": [ + 2094 + ], + "rounds": [ + 42 + ], + "source": [ + 87 + ], + "steam_id": [ + 314 + ], + "survival_pct": [ + 3647 + ], + "traded_death_pct": [ + 3647 + ], + "util_efficiency": [ + 3647 + ], + "utility_rating": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "player_match_performance_v_max_fields": { + "accuracy": [ + 3646 + ], + "accuracy_spotted": [ + 3646 + ], + "aim_rating": [ + 2093 + ], + "counter_strafe_pct": [ + 3646 + ], + "enemy_blind_pr": [ + 3646 + ], + "flash_assists_pr": [ + 3646 + ], + "hs_pct": [ + 3646 + ], + "kast_pct": [ + 3646 + ], + "match_id": [ + 6672 + ], + "overall_rating": [ + 2093 + ], + "played_at": [ + 5243 + ], + "positioning_rating": [ + 2093 + ], + "rounds": [ + 41 + ], + "source": [ + 85 + ], + "steam_id": [ + 312 + ], + "survival_pct": [ + 3646 + ], + "traded_death_pct": [ + 3646 + ], + "util_efficiency": [ + 3646 + ], + "utility_rating": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "player_match_performance_v_min_fields": { + "accuracy": [ + 3646 + ], + "accuracy_spotted": [ + 3646 + ], + "aim_rating": [ + 2093 + ], + "counter_strafe_pct": [ + 3646 + ], + "enemy_blind_pr": [ + 3646 + ], + "flash_assists_pr": [ + 3646 + ], + "hs_pct": [ + 3646 + ], + "kast_pct": [ + 3646 + ], + "match_id": [ + 6672 + ], + "overall_rating": [ + 2093 + ], + "played_at": [ + 5243 + ], + "positioning_rating": [ + 2093 + ], + "rounds": [ + 41 + ], + "source": [ + 85 + ], + "steam_id": [ + 312 + ], + "survival_pct": [ + 3646 + ], + "traded_death_pct": [ + 3646 + ], + "util_efficiency": [ + 3646 + ], + "utility_rating": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "player_match_performance_v_order_by": { + "accuracy": [ + 3648 + ], + "accuracy_spotted": [ + 3648 + ], + "aim_rating": [ + 3648 + ], + "counter_strafe_pct": [ + 3648 + ], + "enemy_blind_pr": [ + 3648 + ], + "flash_assists_pr": [ + 3648 + ], + "hs_pct": [ + 3648 + ], + "kast_pct": [ + 3648 + ], + "match_id": [ + 3648 + ], + "overall_rating": [ + 3648 + ], + "played_at": [ + 3648 + ], + "positioning_rating": [ + 3648 + ], + "rounds": [ + 3648 + ], + "source": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "survival_pct": [ + 3648 + ], + "traded_death_pct": [ + 3648 + ], + "util_efficiency": [ + 3648 + ], + "utility_rating": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_match_performance_v_select_column": {}, + "player_match_performance_v_stddev_fields": { + "accuracy": [ + 32 + ], + "accuracy_spotted": [ + 32 + ], + "aim_rating": [ + 32 + ], + "counter_strafe_pct": [ + 32 + ], + "enemy_blind_pr": [ + 32 + ], + "flash_assists_pr": [ + 32 + ], + "hs_pct": [ + 32 + ], + "kast_pct": [ + 32 + ], + "overall_rating": [ + 32 + ], + "positioning_rating": [ + 32 + ], + "rounds": [ + 32 + ], + "steam_id": [ + 32 + ], + "survival_pct": [ + 32 + ], + "traded_death_pct": [ + 32 + ], + "util_efficiency": [ + 32 + ], + "utility_rating": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_match_performance_v_stddev_pop_fields": { + "accuracy": [ + 32 + ], + "accuracy_spotted": [ + 32 + ], + "aim_rating": [ + 32 + ], + "counter_strafe_pct": [ + 32 + ], + "enemy_blind_pr": [ + 32 + ], + "flash_assists_pr": [ + 32 + ], + "hs_pct": [ + 32 + ], + "kast_pct": [ + 32 + ], + "overall_rating": [ + 32 + ], + "positioning_rating": [ + 32 + ], + "rounds": [ + 32 + ], + "steam_id": [ + 32 + ], + "survival_pct": [ + 32 + ], + "traded_death_pct": [ + 32 + ], + "util_efficiency": [ + 32 + ], + "utility_rating": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_match_performance_v_stddev_samp_fields": { + "accuracy": [ + 32 + ], + "accuracy_spotted": [ + 32 + ], + "aim_rating": [ + 32 + ], + "counter_strafe_pct": [ + 32 + ], + "enemy_blind_pr": [ + 32 + ], + "flash_assists_pr": [ + 32 + ], + "hs_pct": [ + 32 + ], + "kast_pct": [ + 32 + ], + "overall_rating": [ + 32 + ], + "positioning_rating": [ + 32 + ], + "rounds": [ + 32 + ], + "steam_id": [ + 32 + ], + "survival_pct": [ + 32 + ], + "traded_death_pct": [ + 32 + ], + "util_efficiency": [ + 32 + ], + "utility_rating": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_match_performance_v_stream_cursor_input": { + "initial_value": [ + 4166 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "player_match_performance_v_stream_cursor_value_input": { + "accuracy": [ + 3646 + ], + "accuracy_spotted": [ + 3646 + ], + "aim_rating": [ + 2093 + ], + "counter_strafe_pct": [ + 3646 + ], + "enemy_blind_pr": [ + 3646 + ], + "flash_assists_pr": [ + 3646 + ], + "hs_pct": [ + 3646 + ], + "kast_pct": [ + 3646 + ], + "match_id": [ + 6672 + ], + "overall_rating": [ + 2093 + ], + "played_at": [ + 5243 + ], + "positioning_rating": [ + 2093 + ], + "rounds": [ + 41 + ], + "source": [ + 85 + ], + "steam_id": [ + 312 + ], + "survival_pct": [ + 3646 + ], + "traded_death_pct": [ + 3646 + ], + "util_efficiency": [ + 3646 + ], + "utility_rating": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "player_match_performance_v_sum_fields": { + "accuracy": [ + 3646 + ], + "accuracy_spotted": [ + 3646 + ], + "aim_rating": [ + 2093 + ], + "counter_strafe_pct": [ + 3646 + ], + "enemy_blind_pr": [ + 3646 + ], + "flash_assists_pr": [ + 3646 + ], + "hs_pct": [ + 3646 + ], + "kast_pct": [ + 3646 + ], + "overall_rating": [ + 2093 + ], + "positioning_rating": [ + 2093 + ], + "rounds": [ + 41 + ], + "steam_id": [ + 312 + ], + "survival_pct": [ + 3646 + ], + "traded_death_pct": [ + 3646 + ], + "util_efficiency": [ + 3646 + ], + "utility_rating": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "player_match_performance_v_var_pop_fields": { + "accuracy": [ + 32 + ], + "accuracy_spotted": [ + 32 + ], + "aim_rating": [ + 32 + ], + "counter_strafe_pct": [ + 32 + ], + "enemy_blind_pr": [ + 32 + ], + "flash_assists_pr": [ + 32 + ], + "hs_pct": [ + 32 + ], + "kast_pct": [ + 32 + ], + "overall_rating": [ + 32 + ], + "positioning_rating": [ + 32 + ], + "rounds": [ + 32 + ], + "steam_id": [ + 32 + ], + "survival_pct": [ + 32 + ], + "traded_death_pct": [ + 32 + ], + "util_efficiency": [ + 32 + ], + "utility_rating": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_match_performance_v_var_samp_fields": { + "accuracy": [ + 32 + ], + "accuracy_spotted": [ + 32 + ], + "aim_rating": [ + 32 + ], + "counter_strafe_pct": [ + 32 + ], + "enemy_blind_pr": [ + 32 + ], + "flash_assists_pr": [ + 32 + ], + "hs_pct": [ + 32 + ], + "kast_pct": [ + 32 + ], + "overall_rating": [ + 32 + ], + "positioning_rating": [ + 32 + ], + "rounds": [ + 32 + ], + "steam_id": [ + 32 + ], + "survival_pct": [ + 32 + ], + "traded_death_pct": [ + 32 + ], + "util_efficiency": [ + 32 + ], + "utility_rating": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_match_performance_v_variance_fields": { + "accuracy": [ + 32 + ], + "accuracy_spotted": [ + 32 + ], + "aim_rating": [ + 32 + ], + "counter_strafe_pct": [ + 32 + ], + "enemy_blind_pr": [ + 32 + ], + "flash_assists_pr": [ + 32 + ], + "hs_pct": [ + 32 + ], + "kast_pct": [ + 32 + ], + "overall_rating": [ + 32 + ], + "positioning_rating": [ + 32 + ], + "rounds": [ + 32 + ], + "steam_id": [ + 32 + ], + "survival_pct": [ + 32 + ], + "traded_death_pct": [ + 32 + ], + "util_efficiency": [ + 32 + ], + "utility_rating": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_match_stats_v": { + "assists": [ + 41 + ], + "assists_ct": [ + 41 + ], + "assists_t": [ + 41 + ], + "avg_crosshair_angle_deg": [ + 3646 + ], + "avg_flash_duration": [ + 3646 + ], + "avg_time_to_damage_s": [ + 3646 + ], + "counter_strafe_eligible_shots": [ + 41 + ], + "counter_strafed_shots": [ + 41 + ], + "damage": [ + 41 + ], + "damage_ct": [ + 41 + ], + "damage_t": [ + 41 + ], + "deaths": [ + 41 + ], + "deaths_ct": [ + 41 + ], + "deaths_t": [ + 41 + ], + "decoy_throws": [ + 41 + ], + "enemies_flashed": [ + 41 + ], + "first_bullet_hits": [ + 41 + ], + "first_bullet_shots": [ + 41 + ], + "five_kill_rounds": [ + 41 + ], + "flash_assists": [ + 41 + ], + "flashes_thrown": [ + 41 + ], + "four_kill_rounds": [ + 41 + ], + "he_damage": [ + 41 + ], + "he_team_damage": [ + 41 + ], + "he_throws": [ + 41 + ], + "headshot_hits": [ + 41 + ], + "hits": [ + 41 + ], + "hits_at_spotted": [ + 41 + ], + "hs_kills": [ + 41 + ], + "hs_kills_ct": [ + 41 + ], + "hs_kills_t": [ + 41 + ], + "kills": [ + 41 + ], + "kills_ct": [ + 41 + ], + "kills_t": [ + 41 + ], + "knife_kills": [ + 41 + ], + "match_id": [ + 6672 + ], + "molotov_damage": [ + 41 + ], + "molotov_throws": [ + 41 + ], + "non_awp_hits": [ + 41 + ], + "on_target_frames": [ + 41 + ], + "rounds_ct": [ + 41 + ], + "rounds_played": [ + 41 + ], + "rounds_t": [ + 41 + ], + "shots_at_spotted": [ + 41 + ], + "shots_fired": [ + 41 + ], + "smoke_throws": [ + 41 + ], + "spotted_count": [ + 41 + ], + "spotted_with_damage_count": [ + 41 + ], + "spray_hits": [ + 41 + ], + "spray_shots": [ + 41 + ], + "steam_id": [ + 312 + ], + "team_damage": [ + 41 + ], + "team_flashed": [ + 41 + ], + "three_kill_rounds": [ + 41 + ], + "total_engagement_frames": [ + 41 + ], + "trade_kill_attempts": [ + 41 + ], + "trade_kill_opportunities": [ + 41 + ], + "trade_kill_successes": [ + 41 + ], + "traded_death_attempts": [ + 41 + ], + "traded_death_opportunities": [ + 41 + ], + "traded_death_successes": [ + 41 + ], + "two_kill_rounds": [ + 41 + ], + "unused_utility_value": [ + 41 + ], + "utility_on_death": [ + 3646 + ], + "wasted_magazine_shots": [ + 41 + ], + "zeus_kills": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "player_match_stats_v_aggregate": { + "aggregate": [ + 4175 + ], + "nodes": [ + 4171 + ], + "__typename": [ + 85 + ] + }, + "player_match_stats_v_aggregate_bool_exp": { + "count": [ + 4174 + ], + "__typename": [ + 85 + ] + }, + "player_match_stats_v_aggregate_bool_exp_count": { + "arguments": [ + 4187 + ], + "distinct": [ + 6 + ], + "filter": [ + 4180 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "player_match_stats_v_aggregate_fields": { + "avg": [ + 4178 + ], + "count": [ + 41, + { + "columns": [ + 4187, + "[player_match_stats_v_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 4182 + ], + "min": [ + 4184 + ], + "stddev": [ + 4188 + ], + "stddev_pop": [ + 4190 + ], + "stddev_samp": [ + 4192 + ], + "sum": [ + 4196 + ], + "var_pop": [ + 4198 + ], + "var_samp": [ + 4200 + ], + "variance": [ + 4202 + ], + "__typename": [ + 85 + ] + }, + "player_match_stats_v_aggregate_order_by": { + "avg": [ + 4179 + ], + "count": [ + 3648 + ], + "max": [ + 4183 + ], + "min": [ + 4185 + ], + "stddev": [ + 4189 + ], + "stddev_pop": [ + 4191 + ], + "stddev_samp": [ + 4193 + ], + "sum": [ + 4197 + ], + "var_pop": [ + 4199 + ], + "var_samp": [ + 4201 + ], + "variance": [ + 4203 + ], + "__typename": [ + 85 + ] + }, + "player_match_stats_v_arr_rel_insert_input": { + "data": [ + 4181 + ], + "__typename": [ + 85 + ] + }, + "player_match_stats_v_avg_fields": { + "assists": [ + 32 + ], + "assists_ct": [ + 32 + ], + "assists_t": [ + 32 + ], + "avg_crosshair_angle_deg": [ + 32 + ], + "avg_flash_duration": [ + 32 + ], + "avg_time_to_damage_s": [ + 32 + ], + "counter_strafe_eligible_shots": [ + 32 + ], + "counter_strafed_shots": [ + 32 + ], + "damage": [ + 32 + ], + "damage_ct": [ + 32 + ], + "damage_t": [ + 32 + ], + "deaths": [ + 32 + ], + "deaths_ct": [ + 32 + ], + "deaths_t": [ + 32 + ], + "decoy_throws": [ + 32 + ], + "enemies_flashed": [ + 32 + ], + "first_bullet_hits": [ + 32 + ], + "first_bullet_shots": [ + 32 + ], + "five_kill_rounds": [ + 32 + ], + "flash_assists": [ + 32 + ], + "flashes_thrown": [ + 32 + ], + "four_kill_rounds": [ + 32 + ], + "he_damage": [ + 32 + ], + "he_team_damage": [ + 32 + ], + "he_throws": [ + 32 + ], + "headshot_hits": [ + 32 + ], + "hits": [ + 32 + ], + "hits_at_spotted": [ + 32 + ], + "hs_kills": [ + 32 + ], + "hs_kills_ct": [ + 32 + ], + "hs_kills_t": [ + 32 + ], + "kills": [ + 32 + ], + "kills_ct": [ + 32 + ], + "kills_t": [ + 32 + ], + "knife_kills": [ + 32 + ], + "molotov_damage": [ + 32 + ], + "molotov_throws": [ + 32 + ], + "non_awp_hits": [ + 32 + ], + "on_target_frames": [ + 32 + ], + "rounds_ct": [ + 32 + ], + "rounds_played": [ + 32 + ], + "rounds_t": [ + 32 + ], + "shots_at_spotted": [ + 32 + ], + "shots_fired": [ + 32 + ], + "smoke_throws": [ + 32 + ], + "spotted_count": [ + 32 + ], + "spotted_with_damage_count": [ + 32 + ], + "spray_hits": [ + 32 + ], + "spray_shots": [ + 32 + ], + "steam_id": [ + 32 + ], + "team_damage": [ + 32 + ], + "team_flashed": [ + 32 + ], + "three_kill_rounds": [ + 32 + ], + "total_engagement_frames": [ + 32 + ], + "trade_kill_attempts": [ + 32 + ], + "trade_kill_opportunities": [ + 32 + ], + "trade_kill_successes": [ + 32 + ], + "traded_death_attempts": [ + 32 + ], + "traded_death_opportunities": [ + 32 + ], + "traded_death_successes": [ + 32 + ], + "two_kill_rounds": [ + 32 + ], + "unused_utility_value": [ + 32 + ], + "utility_on_death": [ + 32 + ], + "wasted_magazine_shots": [ + 32 + ], + "zeus_kills": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_match_stats_v_avg_order_by": { + "assists": [ + 3648 + ], + "assists_ct": [ + 3648 + ], + "assists_t": [ + 3648 + ], + "avg_crosshair_angle_deg": [ + 3648 + ], + "avg_flash_duration": [ + 3648 + ], + "avg_time_to_damage_s": [ + 3648 + ], + "counter_strafe_eligible_shots": [ + 3648 + ], + "counter_strafed_shots": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_ct": [ + 3648 + ], + "damage_t": [ + 3648 + ], + "deaths": [ + 3648 + ], + "deaths_ct": [ + 3648 + ], + "deaths_t": [ + 3648 + ], + "decoy_throws": [ + 3648 + ], + "enemies_flashed": [ + 3648 + ], + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "five_kill_rounds": [ + 3648 + ], + "flash_assists": [ + 3648 + ], + "flashes_thrown": [ + 3648 + ], + "four_kill_rounds": [ + 3648 + ], + "he_damage": [ + 3648 + ], + "he_team_damage": [ + 3648 + ], + "he_throws": [ + 3648 + ], + "headshot_hits": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_at_spotted": [ + 3648 + ], + "hs_kills": [ + 3648 + ], + "hs_kills_ct": [ + 3648 + ], + "hs_kills_t": [ + 3648 + ], + "kills": [ + 3648 + ], + "kills_ct": [ + 3648 + ], + "kills_t": [ + 3648 + ], + "knife_kills": [ + 3648 + ], + "molotov_damage": [ + 3648 + ], + "molotov_throws": [ + 3648 + ], + "non_awp_hits": [ + 3648 + ], + "on_target_frames": [ + 3648 + ], + "rounds_ct": [ + 3648 + ], + "rounds_played": [ + 3648 + ], + "rounds_t": [ + 3648 + ], + "shots_at_spotted": [ + 3648 + ], + "shots_fired": [ + 3648 + ], + "smoke_throws": [ + 3648 + ], + "spotted_count": [ + 3648 + ], + "spotted_with_damage_count": [ + 3648 + ], + "spray_hits": [ + 3648 + ], + "spray_shots": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "team_damage": [ + 3648 + ], + "team_flashed": [ + 3648 + ], + "three_kill_rounds": [ + 3648 + ], + "total_engagement_frames": [ + 3648 + ], + "trade_kill_attempts": [ + 3648 + ], + "trade_kill_opportunities": [ + 3648 + ], + "trade_kill_successes": [ + 3648 + ], + "traded_death_attempts": [ + 3648 + ], + "traded_death_opportunities": [ + 3648 + ], + "traded_death_successes": [ + 3648 + ], + "two_kill_rounds": [ + 3648 + ], + "unused_utility_value": [ + 3648 + ], + "utility_on_death": [ + 3648 + ], + "wasted_magazine_shots": [ + 3648 + ], + "zeus_kills": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_match_stats_v_bool_exp": { + "_and": [ + 4180 + ], + "_not": [ + 4180 + ], + "_or": [ + 4180 + ], + "assists": [ + 42 + ], + "assists_ct": [ + 42 + ], + "assists_t": [ + 42 + ], + "avg_crosshair_angle_deg": [ + 3647 + ], + "avg_flash_duration": [ + 3647 + ], + "avg_time_to_damage_s": [ + 3647 + ], + "counter_strafe_eligible_shots": [ + 42 + ], + "counter_strafed_shots": [ + 42 + ], + "damage": [ + 42 + ], + "damage_ct": [ + 42 + ], + "damage_t": [ + 42 + ], + "deaths": [ + 42 + ], + "deaths_ct": [ + 42 + ], + "deaths_t": [ + 42 + ], + "decoy_throws": [ + 42 + ], + "enemies_flashed": [ + 42 + ], + "first_bullet_hits": [ + 42 + ], + "first_bullet_shots": [ + 42 + ], + "five_kill_rounds": [ + 42 + ], + "flash_assists": [ + 42 + ], + "flashes_thrown": [ + 42 + ], + "four_kill_rounds": [ + 42 + ], + "he_damage": [ + 42 + ], + "he_team_damage": [ + 42 + ], + "he_throws": [ + 42 + ], + "headshot_hits": [ + 42 + ], + "hits": [ + 42 + ], + "hits_at_spotted": [ + 42 + ], + "hs_kills": [ + 42 + ], + "hs_kills_ct": [ + 42 + ], + "hs_kills_t": [ + 42 + ], + "kills": [ + 42 + ], + "kills_ct": [ + 42 + ], + "kills_t": [ + 42 + ], + "knife_kills": [ + 42 + ], + "match_id": [ + 6674 + ], + "molotov_damage": [ + 42 + ], + "molotov_throws": [ + 42 + ], + "non_awp_hits": [ + 42 + ], + "on_target_frames": [ + 42 + ], + "rounds_ct": [ + 42 + ], + "rounds_played": [ + 42 + ], + "rounds_t": [ + 42 + ], + "shots_at_spotted": [ + 42 + ], + "shots_fired": [ + 42 + ], + "smoke_throws": [ + 42 + ], + "spotted_count": [ + 42 + ], + "spotted_with_damage_count": [ + 42 + ], + "spray_hits": [ + 42 + ], + "spray_shots": [ + 42 + ], + "steam_id": [ + 314 + ], + "team_damage": [ + 42 + ], + "team_flashed": [ + 42 + ], + "three_kill_rounds": [ + 42 + ], + "total_engagement_frames": [ + 42 + ], + "trade_kill_attempts": [ + 42 + ], + "trade_kill_opportunities": [ + 42 + ], + "trade_kill_successes": [ + 42 + ], + "traded_death_attempts": [ + 42 + ], + "traded_death_opportunities": [ + 42 + ], + "traded_death_successes": [ + 42 + ], + "two_kill_rounds": [ + 42 + ], + "unused_utility_value": [ + 42 + ], + "utility_on_death": [ + 3647 + ], + "wasted_magazine_shots": [ + 42 + ], + "zeus_kills": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "player_match_stats_v_insert_input": { + "assists": [ + 41 + ], + "assists_ct": [ + 41 + ], + "assists_t": [ + 41 + ], + "avg_crosshair_angle_deg": [ + 3646 + ], + "avg_flash_duration": [ + 3646 + ], + "avg_time_to_damage_s": [ + 3646 + ], + "counter_strafe_eligible_shots": [ + 41 + ], + "counter_strafed_shots": [ + 41 + ], + "damage": [ + 41 + ], + "damage_ct": [ + 41 + ], + "damage_t": [ + 41 + ], + "deaths": [ + 41 + ], + "deaths_ct": [ + 41 + ], + "deaths_t": [ + 41 + ], + "decoy_throws": [ + 41 + ], + "enemies_flashed": [ + 41 + ], + "first_bullet_hits": [ + 41 + ], + "first_bullet_shots": [ + 41 + ], + "five_kill_rounds": [ + 41 + ], + "flash_assists": [ + 41 + ], + "flashes_thrown": [ + 41 + ], + "four_kill_rounds": [ + 41 + ], + "he_damage": [ + 41 + ], + "he_team_damage": [ + 41 + ], + "he_throws": [ + 41 + ], + "headshot_hits": [ + 41 + ], + "hits": [ + 41 + ], + "hits_at_spotted": [ + 41 + ], + "hs_kills": [ + 41 + ], + "hs_kills_ct": [ + 41 + ], + "hs_kills_t": [ + 41 + ], + "kills": [ + 41 + ], + "kills_ct": [ + 41 + ], + "kills_t": [ + 41 + ], + "knife_kills": [ + 41 + ], + "match_id": [ + 6672 + ], + "molotov_damage": [ + 41 + ], + "molotov_throws": [ + 41 + ], + "non_awp_hits": [ + 41 + ], + "on_target_frames": [ + 41 + ], + "rounds_ct": [ + 41 + ], + "rounds_played": [ + 41 + ], + "rounds_t": [ + 41 + ], + "shots_at_spotted": [ + 41 + ], + "shots_fired": [ + 41 + ], + "smoke_throws": [ + 41 + ], + "spotted_count": [ + 41 + ], + "spotted_with_damage_count": [ + 41 + ], + "spray_hits": [ + 41 + ], + "spray_shots": [ + 41 + ], + "steam_id": [ + 312 + ], + "team_damage": [ + 41 + ], + "team_flashed": [ + 41 + ], + "three_kill_rounds": [ + 41 + ], + "total_engagement_frames": [ + 41 + ], + "trade_kill_attempts": [ + 41 + ], + "trade_kill_opportunities": [ + 41 + ], + "trade_kill_successes": [ + 41 + ], + "traded_death_attempts": [ + 41 + ], + "traded_death_opportunities": [ + 41 + ], + "traded_death_successes": [ + 41 + ], + "two_kill_rounds": [ + 41 + ], + "unused_utility_value": [ + 41 + ], + "utility_on_death": [ + 3646 + ], + "wasted_magazine_shots": [ + 41 + ], + "zeus_kills": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "player_match_stats_v_max_fields": { + "assists": [ + 41 + ], + "assists_ct": [ + 41 + ], + "assists_t": [ + 41 + ], + "avg_crosshair_angle_deg": [ + 3646 + ], + "avg_flash_duration": [ + 3646 + ], + "avg_time_to_damage_s": [ + 3646 + ], + "counter_strafe_eligible_shots": [ + 41 + ], + "counter_strafed_shots": [ + 41 + ], + "damage": [ + 41 + ], + "damage_ct": [ + 41 + ], + "damage_t": [ + 41 + ], + "deaths": [ + 41 + ], + "deaths_ct": [ + 41 + ], + "deaths_t": [ + 41 + ], + "decoy_throws": [ + 41 + ], + "enemies_flashed": [ + 41 + ], + "first_bullet_hits": [ + 41 + ], + "first_bullet_shots": [ + 41 + ], + "five_kill_rounds": [ + 41 + ], + "flash_assists": [ + 41 + ], + "flashes_thrown": [ + 41 + ], + "four_kill_rounds": [ + 41 + ], + "he_damage": [ + 41 + ], + "he_team_damage": [ + 41 + ], + "he_throws": [ + 41 + ], + "headshot_hits": [ + 41 + ], + "hits": [ + 41 + ], + "hits_at_spotted": [ + 41 + ], + "hs_kills": [ + 41 + ], + "hs_kills_ct": [ + 41 + ], + "hs_kills_t": [ + 41 + ], + "kills": [ + 41 + ], + "kills_ct": [ + 41 + ], + "kills_t": [ + 41 + ], + "knife_kills": [ + 41 + ], + "match_id": [ + 6672 + ], + "molotov_damage": [ + 41 + ], + "molotov_throws": [ + 41 + ], + "non_awp_hits": [ + 41 + ], + "on_target_frames": [ + 41 + ], + "rounds_ct": [ + 41 + ], + "rounds_played": [ + 41 + ], + "rounds_t": [ + 41 + ], + "shots_at_spotted": [ + 41 + ], + "shots_fired": [ + 41 + ], + "smoke_throws": [ + 41 + ], + "spotted_count": [ + 41 + ], + "spotted_with_damage_count": [ + 41 + ], + "spray_hits": [ + 41 + ], + "spray_shots": [ + 41 + ], + "steam_id": [ + 312 + ], + "team_damage": [ + 41 + ], + "team_flashed": [ + 41 + ], + "three_kill_rounds": [ + 41 + ], + "total_engagement_frames": [ + 41 + ], + "trade_kill_attempts": [ + 41 + ], + "trade_kill_opportunities": [ + 41 + ], + "trade_kill_successes": [ + 41 + ], + "traded_death_attempts": [ + 41 + ], + "traded_death_opportunities": [ + 41 + ], + "traded_death_successes": [ + 41 + ], + "two_kill_rounds": [ + 41 + ], + "unused_utility_value": [ + 41 + ], + "utility_on_death": [ + 3646 + ], + "wasted_magazine_shots": [ + 41 + ], + "zeus_kills": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "player_match_stats_v_max_order_by": { + "assists": [ + 3648 + ], + "assists_ct": [ + 3648 + ], + "assists_t": [ + 3648 + ], + "avg_crosshair_angle_deg": [ + 3648 + ], + "avg_flash_duration": [ + 3648 + ], + "avg_time_to_damage_s": [ + 3648 + ], + "counter_strafe_eligible_shots": [ + 3648 + ], + "counter_strafed_shots": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_ct": [ + 3648 + ], + "damage_t": [ + 3648 + ], + "deaths": [ + 3648 + ], + "deaths_ct": [ + 3648 + ], + "deaths_t": [ + 3648 + ], + "decoy_throws": [ + 3648 + ], + "enemies_flashed": [ + 3648 + ], + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "five_kill_rounds": [ + 3648 + ], + "flash_assists": [ + 3648 + ], + "flashes_thrown": [ + 3648 + ], + "four_kill_rounds": [ + 3648 + ], + "he_damage": [ + 3648 + ], + "he_team_damage": [ + 3648 + ], + "he_throws": [ + 3648 + ], + "headshot_hits": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_at_spotted": [ + 3648 + ], + "hs_kills": [ + 3648 + ], + "hs_kills_ct": [ + 3648 + ], + "hs_kills_t": [ + 3648 + ], + "kills": [ + 3648 + ], + "kills_ct": [ + 3648 + ], + "kills_t": [ + 3648 + ], + "knife_kills": [ + 3648 + ], + "match_id": [ + 3648 + ], + "molotov_damage": [ + 3648 + ], + "molotov_throws": [ + 3648 + ], + "non_awp_hits": [ + 3648 + ], + "on_target_frames": [ + 3648 + ], + "rounds_ct": [ + 3648 + ], + "rounds_played": [ + 3648 + ], + "rounds_t": [ + 3648 + ], + "shots_at_spotted": [ + 3648 + ], + "shots_fired": [ + 3648 + ], + "smoke_throws": [ + 3648 + ], + "spotted_count": [ + 3648 + ], + "spotted_with_damage_count": [ + 3648 + ], + "spray_hits": [ + 3648 + ], + "spray_shots": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "team_damage": [ + 3648 + ], + "team_flashed": [ + 3648 + ], + "three_kill_rounds": [ + 3648 + ], + "total_engagement_frames": [ + 3648 + ], + "trade_kill_attempts": [ + 3648 + ], + "trade_kill_opportunities": [ + 3648 + ], + "trade_kill_successes": [ + 3648 + ], + "traded_death_attempts": [ + 3648 + ], + "traded_death_opportunities": [ + 3648 + ], + "traded_death_successes": [ + 3648 + ], + "two_kill_rounds": [ + 3648 + ], + "unused_utility_value": [ + 3648 + ], + "utility_on_death": [ + 3648 + ], + "wasted_magazine_shots": [ + 3648 + ], + "zeus_kills": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_match_stats_v_min_fields": { + "assists": [ + 41 + ], + "assists_ct": [ + 41 + ], + "assists_t": [ + 41 + ], + "avg_crosshair_angle_deg": [ + 3646 + ], + "avg_flash_duration": [ + 3646 + ], + "avg_time_to_damage_s": [ + 3646 + ], + "counter_strafe_eligible_shots": [ + 41 + ], + "counter_strafed_shots": [ + 41 + ], + "damage": [ + 41 + ], + "damage_ct": [ + 41 + ], + "damage_t": [ + 41 + ], + "deaths": [ + 41 + ], + "deaths_ct": [ + 41 + ], + "deaths_t": [ + 41 + ], + "decoy_throws": [ + 41 + ], + "enemies_flashed": [ + 41 + ], + "first_bullet_hits": [ + 41 + ], + "first_bullet_shots": [ + 41 + ], + "five_kill_rounds": [ + 41 + ], + "flash_assists": [ + 41 + ], + "flashes_thrown": [ + 41 + ], + "four_kill_rounds": [ + 41 + ], + "he_damage": [ + 41 + ], + "he_team_damage": [ + 41 + ], + "he_throws": [ + 41 + ], + "headshot_hits": [ + 41 + ], + "hits": [ + 41 + ], + "hits_at_spotted": [ + 41 + ], + "hs_kills": [ + 41 + ], + "hs_kills_ct": [ + 41 + ], + "hs_kills_t": [ + 41 + ], + "kills": [ + 41 + ], + "kills_ct": [ + 41 + ], + "kills_t": [ + 41 + ], + "knife_kills": [ + 41 + ], + "match_id": [ + 6672 + ], + "molotov_damage": [ + 41 + ], + "molotov_throws": [ + 41 + ], + "non_awp_hits": [ + 41 + ], + "on_target_frames": [ + 41 + ], + "rounds_ct": [ + 41 + ], + "rounds_played": [ + 41 + ], + "rounds_t": [ + 41 + ], + "shots_at_spotted": [ + 41 + ], + "shots_fired": [ + 41 + ], + "smoke_throws": [ + 41 + ], + "spotted_count": [ + 41 + ], + "spotted_with_damage_count": [ + 41 + ], + "spray_hits": [ + 41 + ], + "spray_shots": [ + 41 + ], + "steam_id": [ + 312 + ], + "team_damage": [ + 41 + ], + "team_flashed": [ + 41 + ], + "three_kill_rounds": [ + 41 + ], + "total_engagement_frames": [ + 41 + ], + "trade_kill_attempts": [ + 41 + ], + "trade_kill_opportunities": [ + 41 + ], + "trade_kill_successes": [ + 41 + ], + "traded_death_attempts": [ + 41 + ], + "traded_death_opportunities": [ + 41 + ], + "traded_death_successes": [ + 41 + ], + "two_kill_rounds": [ + 41 + ], + "unused_utility_value": [ + 41 + ], + "utility_on_death": [ + 3646 + ], + "wasted_magazine_shots": [ + 41 + ], + "zeus_kills": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "player_match_stats_v_min_order_by": { + "assists": [ + 3648 + ], + "assists_ct": [ + 3648 + ], + "assists_t": [ + 3648 + ], + "avg_crosshair_angle_deg": [ + 3648 + ], + "avg_flash_duration": [ + 3648 + ], + "avg_time_to_damage_s": [ + 3648 + ], + "counter_strafe_eligible_shots": [ + 3648 + ], + "counter_strafed_shots": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_ct": [ + 3648 + ], + "damage_t": [ + 3648 + ], + "deaths": [ + 3648 + ], + "deaths_ct": [ + 3648 + ], + "deaths_t": [ + 3648 + ], + "decoy_throws": [ + 3648 + ], + "enemies_flashed": [ + 3648 + ], + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "five_kill_rounds": [ + 3648 + ], + "flash_assists": [ + 3648 + ], + "flashes_thrown": [ + 3648 + ], + "four_kill_rounds": [ + 3648 + ], + "he_damage": [ + 3648 + ], + "he_team_damage": [ + 3648 + ], + "he_throws": [ + 3648 + ], + "headshot_hits": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_at_spotted": [ + 3648 + ], + "hs_kills": [ + 3648 + ], + "hs_kills_ct": [ + 3648 + ], + "hs_kills_t": [ + 3648 + ], + "kills": [ + 3648 + ], + "kills_ct": [ + 3648 + ], + "kills_t": [ + 3648 + ], + "knife_kills": [ + 3648 + ], + "match_id": [ + 3648 + ], + "molotov_damage": [ + 3648 + ], + "molotov_throws": [ + 3648 + ], + "non_awp_hits": [ + 3648 + ], + "on_target_frames": [ + 3648 + ], + "rounds_ct": [ + 3648 + ], + "rounds_played": [ + 3648 + ], + "rounds_t": [ + 3648 + ], + "shots_at_spotted": [ + 3648 + ], + "shots_fired": [ + 3648 + ], + "smoke_throws": [ + 3648 + ], + "spotted_count": [ + 3648 + ], + "spotted_with_damage_count": [ + 3648 + ], + "spray_hits": [ + 3648 + ], + "spray_shots": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "team_damage": [ + 3648 + ], + "team_flashed": [ + 3648 + ], + "three_kill_rounds": [ + 3648 + ], + "total_engagement_frames": [ + 3648 + ], + "trade_kill_attempts": [ + 3648 + ], + "trade_kill_opportunities": [ + 3648 + ], + "trade_kill_successes": [ + 3648 + ], + "traded_death_attempts": [ + 3648 + ], + "traded_death_opportunities": [ + 3648 + ], + "traded_death_successes": [ + 3648 + ], + "two_kill_rounds": [ + 3648 + ], + "unused_utility_value": [ + 3648 + ], + "utility_on_death": [ + 3648 + ], + "wasted_magazine_shots": [ + 3648 + ], + "zeus_kills": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_match_stats_v_order_by": { + "assists": [ + 3648 + ], + "assists_ct": [ + 3648 + ], + "assists_t": [ + 3648 + ], + "avg_crosshair_angle_deg": [ + 3648 + ], + "avg_flash_duration": [ + 3648 + ], + "avg_time_to_damage_s": [ + 3648 + ], + "counter_strafe_eligible_shots": [ + 3648 + ], + "counter_strafed_shots": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_ct": [ + 3648 + ], + "damage_t": [ + 3648 + ], + "deaths": [ + 3648 + ], + "deaths_ct": [ + 3648 + ], + "deaths_t": [ + 3648 + ], + "decoy_throws": [ + 3648 + ], + "enemies_flashed": [ + 3648 + ], + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "five_kill_rounds": [ + 3648 + ], + "flash_assists": [ + 3648 + ], + "flashes_thrown": [ + 3648 + ], + "four_kill_rounds": [ + 3648 + ], + "he_damage": [ + 3648 + ], + "he_team_damage": [ + 3648 + ], + "he_throws": [ + 3648 + ], + "headshot_hits": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_at_spotted": [ + 3648 + ], + "hs_kills": [ + 3648 + ], + "hs_kills_ct": [ + 3648 + ], + "hs_kills_t": [ + 3648 + ], + "kills": [ + 3648 + ], + "kills_ct": [ + 3648 + ], + "kills_t": [ + 3648 + ], + "knife_kills": [ + 3648 + ], + "match_id": [ + 3648 + ], + "molotov_damage": [ + 3648 + ], + "molotov_throws": [ + 3648 + ], + "non_awp_hits": [ + 3648 + ], + "on_target_frames": [ + 3648 + ], + "rounds_ct": [ + 3648 + ], + "rounds_played": [ + 3648 + ], + "rounds_t": [ + 3648 + ], + "shots_at_spotted": [ + 3648 + ], + "shots_fired": [ + 3648 + ], + "smoke_throws": [ + 3648 + ], + "spotted_count": [ + 3648 + ], + "spotted_with_damage_count": [ + 3648 + ], + "spray_hits": [ + 3648 + ], + "spray_shots": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "team_damage": [ + 3648 + ], + "team_flashed": [ + 3648 + ], + "three_kill_rounds": [ + 3648 + ], + "total_engagement_frames": [ + 3648 + ], + "trade_kill_attempts": [ + 3648 + ], + "trade_kill_opportunities": [ + 3648 + ], + "trade_kill_successes": [ + 3648 + ], + "traded_death_attempts": [ + 3648 + ], + "traded_death_opportunities": [ + 3648 + ], + "traded_death_successes": [ + 3648 + ], + "two_kill_rounds": [ + 3648 + ], + "unused_utility_value": [ + 3648 + ], + "utility_on_death": [ + 3648 + ], + "wasted_magazine_shots": [ + 3648 + ], + "zeus_kills": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_match_stats_v_select_column": {}, + "player_match_stats_v_stddev_fields": { + "assists": [ + 32 + ], + "assists_ct": [ + 32 + ], + "assists_t": [ + 32 + ], + "avg_crosshair_angle_deg": [ + 32 + ], + "avg_flash_duration": [ + 32 + ], + "avg_time_to_damage_s": [ + 32 + ], + "counter_strafe_eligible_shots": [ + 32 + ], + "counter_strafed_shots": [ + 32 + ], + "damage": [ + 32 + ], + "damage_ct": [ + 32 + ], + "damage_t": [ + 32 + ], + "deaths": [ + 32 + ], + "deaths_ct": [ + 32 + ], + "deaths_t": [ + 32 + ], + "decoy_throws": [ + 32 + ], + "enemies_flashed": [ + 32 + ], + "first_bullet_hits": [ + 32 + ], + "first_bullet_shots": [ + 32 + ], + "five_kill_rounds": [ + 32 + ], + "flash_assists": [ + 32 + ], + "flashes_thrown": [ + 32 + ], + "four_kill_rounds": [ + 32 + ], + "he_damage": [ + 32 + ], + "he_team_damage": [ + 32 + ], + "he_throws": [ + 32 + ], + "headshot_hits": [ + 32 + ], + "hits": [ + 32 + ], + "hits_at_spotted": [ + 32 + ], + "hs_kills": [ + 32 + ], + "hs_kills_ct": [ + 32 + ], + "hs_kills_t": [ + 32 + ], + "kills": [ + 32 + ], + "kills_ct": [ + 32 + ], + "kills_t": [ + 32 + ], + "knife_kills": [ + 32 + ], + "molotov_damage": [ + 32 + ], + "molotov_throws": [ + 32 + ], + "non_awp_hits": [ + 32 + ], + "on_target_frames": [ + 32 + ], + "rounds_ct": [ + 32 + ], + "rounds_played": [ + 32 + ], + "rounds_t": [ + 32 + ], + "shots_at_spotted": [ + 32 + ], + "shots_fired": [ + 32 + ], + "smoke_throws": [ + 32 + ], + "spotted_count": [ + 32 + ], + "spotted_with_damage_count": [ + 32 + ], + "spray_hits": [ + 32 + ], + "spray_shots": [ + 32 + ], + "steam_id": [ + 32 + ], + "team_damage": [ + 32 + ], + "team_flashed": [ + 32 + ], + "three_kill_rounds": [ + 32 + ], + "total_engagement_frames": [ + 32 + ], + "trade_kill_attempts": [ + 32 + ], + "trade_kill_opportunities": [ + 32 + ], + "trade_kill_successes": [ + 32 + ], + "traded_death_attempts": [ + 32 + ], + "traded_death_opportunities": [ + 32 + ], + "traded_death_successes": [ + 32 + ], + "two_kill_rounds": [ + 32 + ], + "unused_utility_value": [ + 32 + ], + "utility_on_death": [ + 32 + ], + "wasted_magazine_shots": [ + 32 + ], + "zeus_kills": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_match_stats_v_stddev_order_by": { + "assists": [ + 3648 + ], + "assists_ct": [ + 3648 + ], + "assists_t": [ + 3648 + ], + "avg_crosshair_angle_deg": [ + 3648 + ], + "avg_flash_duration": [ + 3648 + ], + "avg_time_to_damage_s": [ + 3648 + ], + "counter_strafe_eligible_shots": [ + 3648 + ], + "counter_strafed_shots": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_ct": [ + 3648 + ], + "damage_t": [ + 3648 + ], + "deaths": [ + 3648 + ], + "deaths_ct": [ + 3648 + ], + "deaths_t": [ + 3648 + ], + "decoy_throws": [ + 3648 + ], + "enemies_flashed": [ + 3648 + ], + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "five_kill_rounds": [ + 3648 + ], + "flash_assists": [ + 3648 + ], + "flashes_thrown": [ + 3648 + ], + "four_kill_rounds": [ + 3648 + ], + "he_damage": [ + 3648 + ], + "he_team_damage": [ + 3648 + ], + "he_throws": [ + 3648 + ], + "headshot_hits": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_at_spotted": [ + 3648 + ], + "hs_kills": [ + 3648 + ], + "hs_kills_ct": [ + 3648 + ], + "hs_kills_t": [ + 3648 + ], + "kills": [ + 3648 + ], + "kills_ct": [ + 3648 + ], + "kills_t": [ + 3648 + ], + "knife_kills": [ + 3648 + ], + "molotov_damage": [ + 3648 + ], + "molotov_throws": [ + 3648 + ], + "non_awp_hits": [ + 3648 + ], + "on_target_frames": [ + 3648 + ], + "rounds_ct": [ + 3648 + ], + "rounds_played": [ + 3648 + ], + "rounds_t": [ + 3648 + ], + "shots_at_spotted": [ + 3648 + ], + "shots_fired": [ + 3648 + ], + "smoke_throws": [ + 3648 + ], + "spotted_count": [ + 3648 + ], + "spotted_with_damage_count": [ + 3648 + ], + "spray_hits": [ + 3648 + ], + "spray_shots": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "team_damage": [ + 3648 + ], + "team_flashed": [ + 3648 + ], + "three_kill_rounds": [ + 3648 + ], + "total_engagement_frames": [ + 3648 + ], + "trade_kill_attempts": [ + 3648 + ], + "trade_kill_opportunities": [ + 3648 + ], + "trade_kill_successes": [ + 3648 + ], + "traded_death_attempts": [ + 3648 + ], + "traded_death_opportunities": [ + 3648 + ], + "traded_death_successes": [ + 3648 + ], + "two_kill_rounds": [ + 3648 + ], + "unused_utility_value": [ + 3648 + ], + "utility_on_death": [ + 3648 + ], + "wasted_magazine_shots": [ + 3648 + ], + "zeus_kills": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_match_stats_v_stddev_pop_fields": { + "assists": [ + 32 + ], + "assists_ct": [ + 32 + ], + "assists_t": [ + 32 + ], + "avg_crosshair_angle_deg": [ + 32 + ], + "avg_flash_duration": [ + 32 + ], + "avg_time_to_damage_s": [ + 32 + ], + "counter_strafe_eligible_shots": [ + 32 + ], + "counter_strafed_shots": [ + 32 + ], + "damage": [ + 32 + ], + "damage_ct": [ + 32 + ], + "damage_t": [ + 32 + ], + "deaths": [ + 32 + ], + "deaths_ct": [ + 32 + ], + "deaths_t": [ + 32 + ], + "decoy_throws": [ + 32 + ], + "enemies_flashed": [ + 32 + ], + "first_bullet_hits": [ + 32 + ], + "first_bullet_shots": [ + 32 + ], + "five_kill_rounds": [ + 32 + ], + "flash_assists": [ + 32 + ], + "flashes_thrown": [ + 32 + ], + "four_kill_rounds": [ + 32 + ], + "he_damage": [ + 32 + ], + "he_team_damage": [ + 32 + ], + "he_throws": [ + 32 + ], + "headshot_hits": [ + 32 + ], + "hits": [ + 32 + ], + "hits_at_spotted": [ + 32 + ], + "hs_kills": [ + 32 + ], + "hs_kills_ct": [ + 32 + ], + "hs_kills_t": [ + 32 + ], + "kills": [ + 32 + ], + "kills_ct": [ + 32 + ], + "kills_t": [ + 32 + ], + "knife_kills": [ + 32 + ], + "molotov_damage": [ + 32 + ], + "molotov_throws": [ + 32 + ], + "non_awp_hits": [ + 32 + ], + "on_target_frames": [ + 32 + ], + "rounds_ct": [ + 32 + ], + "rounds_played": [ + 32 + ], + "rounds_t": [ + 32 + ], + "shots_at_spotted": [ + 32 + ], + "shots_fired": [ + 32 + ], + "smoke_throws": [ + 32 + ], + "spotted_count": [ + 32 + ], + "spotted_with_damage_count": [ + 32 + ], + "spray_hits": [ + 32 + ], + "spray_shots": [ + 32 + ], + "steam_id": [ + 32 + ], + "team_damage": [ + 32 + ], + "team_flashed": [ + 32 + ], + "three_kill_rounds": [ + 32 + ], + "total_engagement_frames": [ + 32 + ], + "trade_kill_attempts": [ + 32 + ], + "trade_kill_opportunities": [ + 32 + ], + "trade_kill_successes": [ + 32 + ], + "traded_death_attempts": [ + 32 + ], + "traded_death_opportunities": [ + 32 + ], + "traded_death_successes": [ + 32 + ], + "two_kill_rounds": [ + 32 + ], + "unused_utility_value": [ + 32 + ], + "utility_on_death": [ + 32 + ], + "wasted_magazine_shots": [ + 32 + ], + "zeus_kills": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_match_stats_v_stddev_pop_order_by": { + "assists": [ + 3648 + ], + "assists_ct": [ + 3648 + ], + "assists_t": [ + 3648 + ], + "avg_crosshair_angle_deg": [ + 3648 + ], + "avg_flash_duration": [ + 3648 + ], + "avg_time_to_damage_s": [ + 3648 + ], + "counter_strafe_eligible_shots": [ + 3648 + ], + "counter_strafed_shots": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_ct": [ + 3648 + ], + "damage_t": [ + 3648 + ], + "deaths": [ + 3648 + ], + "deaths_ct": [ + 3648 + ], + "deaths_t": [ + 3648 + ], + "decoy_throws": [ + 3648 + ], + "enemies_flashed": [ + 3648 + ], + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "five_kill_rounds": [ + 3648 + ], + "flash_assists": [ + 3648 + ], + "flashes_thrown": [ + 3648 + ], + "four_kill_rounds": [ + 3648 + ], + "he_damage": [ + 3648 + ], + "he_team_damage": [ + 3648 + ], + "he_throws": [ + 3648 + ], + "headshot_hits": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_at_spotted": [ + 3648 + ], + "hs_kills": [ + 3648 + ], + "hs_kills_ct": [ + 3648 + ], + "hs_kills_t": [ + 3648 + ], + "kills": [ + 3648 + ], + "kills_ct": [ + 3648 + ], + "kills_t": [ + 3648 + ], + "knife_kills": [ + 3648 + ], + "molotov_damage": [ + 3648 + ], + "molotov_throws": [ + 3648 + ], + "non_awp_hits": [ + 3648 + ], + "on_target_frames": [ + 3648 + ], + "rounds_ct": [ + 3648 + ], + "rounds_played": [ + 3648 + ], + "rounds_t": [ + 3648 + ], + "shots_at_spotted": [ + 3648 + ], + "shots_fired": [ + 3648 + ], + "smoke_throws": [ + 3648 + ], + "spotted_count": [ + 3648 + ], + "spotted_with_damage_count": [ + 3648 + ], + "spray_hits": [ + 3648 + ], + "spray_shots": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "team_damage": [ + 3648 + ], + "team_flashed": [ + 3648 + ], + "three_kill_rounds": [ + 3648 + ], + "total_engagement_frames": [ + 3648 + ], + "trade_kill_attempts": [ + 3648 + ], + "trade_kill_opportunities": [ + 3648 + ], + "trade_kill_successes": [ + 3648 + ], + "traded_death_attempts": [ + 3648 + ], + "traded_death_opportunities": [ + 3648 + ], + "traded_death_successes": [ + 3648 + ], + "two_kill_rounds": [ + 3648 + ], + "unused_utility_value": [ + 3648 + ], + "utility_on_death": [ + 3648 + ], + "wasted_magazine_shots": [ + 3648 + ], + "zeus_kills": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_match_stats_v_stddev_samp_fields": { + "assists": [ + 32 + ], + "assists_ct": [ + 32 + ], + "assists_t": [ + 32 + ], + "avg_crosshair_angle_deg": [ + 32 + ], + "avg_flash_duration": [ + 32 + ], + "avg_time_to_damage_s": [ + 32 + ], + "counter_strafe_eligible_shots": [ + 32 + ], + "counter_strafed_shots": [ + 32 + ], + "damage": [ + 32 + ], + "damage_ct": [ + 32 + ], + "damage_t": [ + 32 + ], + "deaths": [ + 32 + ], + "deaths_ct": [ + 32 + ], + "deaths_t": [ + 32 + ], + "decoy_throws": [ + 32 + ], + "enemies_flashed": [ + 32 + ], + "first_bullet_hits": [ + 32 + ], + "first_bullet_shots": [ + 32 + ], + "five_kill_rounds": [ + 32 + ], + "flash_assists": [ + 32 + ], + "flashes_thrown": [ + 32 + ], + "four_kill_rounds": [ + 32 + ], + "he_damage": [ + 32 + ], + "he_team_damage": [ + 32 + ], + "he_throws": [ + 32 + ], + "headshot_hits": [ + 32 + ], + "hits": [ + 32 + ], + "hits_at_spotted": [ + 32 + ], + "hs_kills": [ + 32 + ], + "hs_kills_ct": [ + 32 + ], + "hs_kills_t": [ + 32 + ], + "kills": [ + 32 + ], + "kills_ct": [ + 32 + ], + "kills_t": [ + 32 + ], + "knife_kills": [ + 32 + ], + "molotov_damage": [ + 32 + ], + "molotov_throws": [ + 32 + ], + "non_awp_hits": [ + 32 + ], + "on_target_frames": [ + 32 + ], + "rounds_ct": [ + 32 + ], + "rounds_played": [ + 32 + ], + "rounds_t": [ + 32 + ], + "shots_at_spotted": [ + 32 + ], + "shots_fired": [ + 32 + ], + "smoke_throws": [ + 32 + ], + "spotted_count": [ + 32 + ], + "spotted_with_damage_count": [ + 32 + ], + "spray_hits": [ + 32 + ], + "spray_shots": [ + 32 + ], + "steam_id": [ + 32 + ], + "team_damage": [ + 32 + ], + "team_flashed": [ + 32 + ], + "three_kill_rounds": [ + 32 + ], + "total_engagement_frames": [ + 32 + ], + "trade_kill_attempts": [ + 32 + ], + "trade_kill_opportunities": [ + 32 + ], + "trade_kill_successes": [ + 32 + ], + "traded_death_attempts": [ + 32 + ], + "traded_death_opportunities": [ + 32 + ], + "traded_death_successes": [ + 32 + ], + "two_kill_rounds": [ + 32 + ], + "unused_utility_value": [ + 32 + ], + "utility_on_death": [ + 32 + ], + "wasted_magazine_shots": [ + 32 + ], + "zeus_kills": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_match_stats_v_stddev_samp_order_by": { + "assists": [ + 3648 + ], + "assists_ct": [ + 3648 + ], + "assists_t": [ + 3648 + ], + "avg_crosshair_angle_deg": [ + 3648 + ], + "avg_flash_duration": [ + 3648 + ], + "avg_time_to_damage_s": [ + 3648 + ], + "counter_strafe_eligible_shots": [ + 3648 + ], + "counter_strafed_shots": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_ct": [ + 3648 + ], + "damage_t": [ + 3648 + ], + "deaths": [ + 3648 + ], + "deaths_ct": [ + 3648 + ], + "deaths_t": [ + 3648 + ], + "decoy_throws": [ + 3648 + ], + "enemies_flashed": [ + 3648 + ], + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "five_kill_rounds": [ + 3648 + ], + "flash_assists": [ + 3648 + ], + "flashes_thrown": [ + 3648 + ], + "four_kill_rounds": [ + 3648 + ], + "he_damage": [ + 3648 + ], + "he_team_damage": [ + 3648 + ], + "he_throws": [ + 3648 + ], + "headshot_hits": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_at_spotted": [ + 3648 + ], + "hs_kills": [ + 3648 + ], + "hs_kills_ct": [ + 3648 + ], + "hs_kills_t": [ + 3648 + ], + "kills": [ + 3648 + ], + "kills_ct": [ + 3648 + ], + "kills_t": [ + 3648 + ], + "knife_kills": [ + 3648 + ], + "molotov_damage": [ + 3648 + ], + "molotov_throws": [ + 3648 + ], + "non_awp_hits": [ + 3648 + ], + "on_target_frames": [ + 3648 + ], + "rounds_ct": [ + 3648 + ], + "rounds_played": [ + 3648 + ], + "rounds_t": [ + 3648 + ], + "shots_at_spotted": [ + 3648 + ], + "shots_fired": [ + 3648 + ], + "smoke_throws": [ + 3648 + ], + "spotted_count": [ + 3648 + ], + "spotted_with_damage_count": [ + 3648 + ], + "spray_hits": [ + 3648 + ], + "spray_shots": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "team_damage": [ + 3648 + ], + "team_flashed": [ + 3648 + ], + "three_kill_rounds": [ + 3648 + ], + "total_engagement_frames": [ + 3648 + ], + "trade_kill_attempts": [ + 3648 + ], + "trade_kill_opportunities": [ + 3648 + ], + "trade_kill_successes": [ + 3648 + ], + "traded_death_attempts": [ + 3648 + ], + "traded_death_opportunities": [ + 3648 + ], + "traded_death_successes": [ + 3648 + ], + "two_kill_rounds": [ + 3648 + ], + "unused_utility_value": [ + 3648 + ], + "utility_on_death": [ + 3648 + ], + "wasted_magazine_shots": [ + 3648 + ], + "zeus_kills": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_match_stats_v_stream_cursor_input": { + "initial_value": [ + 4195 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "player_match_stats_v_stream_cursor_value_input": { + "assists": [ + 41 + ], + "assists_ct": [ + 41 + ], + "assists_t": [ + 41 + ], + "avg_crosshair_angle_deg": [ + 3646 + ], + "avg_flash_duration": [ + 3646 + ], + "avg_time_to_damage_s": [ + 3646 + ], + "counter_strafe_eligible_shots": [ + 41 + ], + "counter_strafed_shots": [ + 41 + ], + "damage": [ + 41 + ], + "damage_ct": [ + 41 + ], + "damage_t": [ + 41 + ], + "deaths": [ + 41 + ], + "deaths_ct": [ + 41 + ], + "deaths_t": [ + 41 + ], + "decoy_throws": [ + 41 + ], + "enemies_flashed": [ + 41 + ], + "first_bullet_hits": [ + 41 + ], + "first_bullet_shots": [ + 41 + ], + "five_kill_rounds": [ + 41 + ], + "flash_assists": [ + 41 + ], + "flashes_thrown": [ + 41 + ], + "four_kill_rounds": [ + 41 + ], + "he_damage": [ + 41 + ], + "he_team_damage": [ + 41 + ], + "he_throws": [ + 41 + ], + "headshot_hits": [ + 41 + ], + "hits": [ + 41 + ], + "hits_at_spotted": [ + 41 + ], + "hs_kills": [ + 41 + ], + "hs_kills_ct": [ + 41 + ], + "hs_kills_t": [ + 41 + ], + "kills": [ + 41 + ], + "kills_ct": [ + 41 + ], + "kills_t": [ + 41 + ], + "knife_kills": [ + 41 + ], + "match_id": [ + 6672 + ], + "molotov_damage": [ + 41 + ], + "molotov_throws": [ + 41 + ], + "non_awp_hits": [ + 41 + ], + "on_target_frames": [ + 41 + ], + "rounds_ct": [ + 41 + ], + "rounds_played": [ + 41 + ], + "rounds_t": [ + 41 + ], + "shots_at_spotted": [ + 41 + ], + "shots_fired": [ + 41 + ], + "smoke_throws": [ + 41 + ], + "spotted_count": [ + 41 + ], + "spotted_with_damage_count": [ + 41 + ], + "spray_hits": [ + 41 + ], + "spray_shots": [ + 41 + ], + "steam_id": [ + 312 + ], + "team_damage": [ + 41 + ], + "team_flashed": [ + 41 + ], + "three_kill_rounds": [ + 41 + ], + "total_engagement_frames": [ + 41 + ], + "trade_kill_attempts": [ + 41 + ], + "trade_kill_opportunities": [ + 41 + ], + "trade_kill_successes": [ + 41 + ], + "traded_death_attempts": [ + 41 + ], + "traded_death_opportunities": [ + 41 + ], + "traded_death_successes": [ + 41 + ], + "two_kill_rounds": [ + 41 + ], + "unused_utility_value": [ + 41 + ], + "utility_on_death": [ + 3646 + ], + "wasted_magazine_shots": [ + 41 + ], + "zeus_kills": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "player_match_stats_v_sum_fields": { + "assists": [ + 41 + ], + "assists_ct": [ + 41 + ], + "assists_t": [ + 41 + ], + "avg_crosshair_angle_deg": [ + 3646 + ], + "avg_flash_duration": [ + 3646 + ], + "avg_time_to_damage_s": [ + 3646 + ], + "counter_strafe_eligible_shots": [ + 41 + ], + "counter_strafed_shots": [ + 41 + ], + "damage": [ + 41 + ], + "damage_ct": [ + 41 + ], + "damage_t": [ + 41 + ], + "deaths": [ + 41 + ], + "deaths_ct": [ + 41 + ], + "deaths_t": [ + 41 + ], + "decoy_throws": [ + 41 + ], + "enemies_flashed": [ + 41 + ], + "first_bullet_hits": [ + 41 + ], + "first_bullet_shots": [ + 41 + ], + "five_kill_rounds": [ + 41 + ], + "flash_assists": [ + 41 + ], + "flashes_thrown": [ + 41 + ], + "four_kill_rounds": [ + 41 + ], + "he_damage": [ + 41 + ], + "he_team_damage": [ + 41 + ], + "he_throws": [ + 41 + ], + "headshot_hits": [ + 41 + ], + "hits": [ + 41 + ], + "hits_at_spotted": [ + 41 + ], + "hs_kills": [ + 41 + ], + "hs_kills_ct": [ + 41 + ], + "hs_kills_t": [ + 41 + ], + "kills": [ + 41 + ], + "kills_ct": [ + 41 + ], + "kills_t": [ + 41 + ], + "knife_kills": [ + 41 + ], + "molotov_damage": [ + 41 + ], + "molotov_throws": [ + 41 + ], + "non_awp_hits": [ + 41 + ], + "on_target_frames": [ + 41 + ], + "rounds_ct": [ + 41 + ], + "rounds_played": [ + 41 + ], + "rounds_t": [ + 41 + ], + "shots_at_spotted": [ + 41 + ], + "shots_fired": [ + 41 + ], + "smoke_throws": [ + 41 + ], + "spotted_count": [ + 41 + ], + "spotted_with_damage_count": [ + 41 + ], + "spray_hits": [ + 41 + ], + "spray_shots": [ + 41 + ], + "steam_id": [ + 312 + ], + "team_damage": [ + 41 + ], + "team_flashed": [ + 41 + ], + "three_kill_rounds": [ + 41 + ], + "total_engagement_frames": [ + 41 + ], + "trade_kill_attempts": [ + 41 + ], + "trade_kill_opportunities": [ + 41 + ], + "trade_kill_successes": [ + 41 + ], + "traded_death_attempts": [ + 41 + ], + "traded_death_opportunities": [ + 41 + ], + "traded_death_successes": [ + 41 + ], + "two_kill_rounds": [ + 41 + ], + "unused_utility_value": [ + 41 + ], + "utility_on_death": [ + 3646 + ], + "wasted_magazine_shots": [ + 41 + ], + "zeus_kills": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "player_match_stats_v_sum_order_by": { + "assists": [ + 3648 + ], + "assists_ct": [ + 3648 + ], + "assists_t": [ + 3648 + ], + "avg_crosshair_angle_deg": [ + 3648 + ], + "avg_flash_duration": [ + 3648 + ], + "avg_time_to_damage_s": [ + 3648 + ], + "counter_strafe_eligible_shots": [ + 3648 + ], + "counter_strafed_shots": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_ct": [ + 3648 + ], + "damage_t": [ + 3648 + ], + "deaths": [ + 3648 + ], + "deaths_ct": [ + 3648 + ], + "deaths_t": [ + 3648 + ], + "decoy_throws": [ + 3648 + ], + "enemies_flashed": [ + 3648 + ], + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "five_kill_rounds": [ + 3648 + ], + "flash_assists": [ + 3648 + ], + "flashes_thrown": [ + 3648 + ], + "four_kill_rounds": [ + 3648 + ], + "he_damage": [ + 3648 + ], + "he_team_damage": [ + 3648 + ], + "he_throws": [ + 3648 + ], + "headshot_hits": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_at_spotted": [ + 3648 + ], + "hs_kills": [ + 3648 + ], + "hs_kills_ct": [ + 3648 + ], + "hs_kills_t": [ + 3648 + ], + "kills": [ + 3648 + ], + "kills_ct": [ + 3648 + ], + "kills_t": [ + 3648 + ], + "knife_kills": [ + 3648 + ], + "molotov_damage": [ + 3648 + ], + "molotov_throws": [ + 3648 + ], + "non_awp_hits": [ + 3648 + ], + "on_target_frames": [ + 3648 + ], + "rounds_ct": [ + 3648 + ], + "rounds_played": [ + 3648 + ], + "rounds_t": [ + 3648 + ], + "shots_at_spotted": [ + 3648 + ], + "shots_fired": [ + 3648 + ], + "smoke_throws": [ + 3648 + ], + "spotted_count": [ + 3648 + ], + "spotted_with_damage_count": [ + 3648 + ], + "spray_hits": [ + 3648 + ], + "spray_shots": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "team_damage": [ + 3648 + ], + "team_flashed": [ + 3648 + ], + "three_kill_rounds": [ + 3648 + ], + "total_engagement_frames": [ + 3648 + ], + "trade_kill_attempts": [ + 3648 + ], + "trade_kill_opportunities": [ + 3648 + ], + "trade_kill_successes": [ + 3648 + ], + "traded_death_attempts": [ + 3648 + ], + "traded_death_opportunities": [ + 3648 + ], + "traded_death_successes": [ + 3648 + ], + "two_kill_rounds": [ + 3648 + ], + "unused_utility_value": [ + 3648 + ], + "utility_on_death": [ + 3648 + ], + "wasted_magazine_shots": [ + 3648 + ], + "zeus_kills": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_match_stats_v_var_pop_fields": { + "assists": [ + 32 + ], + "assists_ct": [ + 32 + ], + "assists_t": [ + 32 + ], + "avg_crosshair_angle_deg": [ + 32 + ], + "avg_flash_duration": [ + 32 + ], + "avg_time_to_damage_s": [ + 32 + ], + "counter_strafe_eligible_shots": [ + 32 + ], + "counter_strafed_shots": [ + 32 + ], + "damage": [ + 32 + ], + "damage_ct": [ + 32 + ], + "damage_t": [ + 32 + ], + "deaths": [ + 32 + ], + "deaths_ct": [ + 32 + ], + "deaths_t": [ + 32 + ], + "decoy_throws": [ + 32 + ], + "enemies_flashed": [ + 32 + ], + "first_bullet_hits": [ + 32 + ], + "first_bullet_shots": [ + 32 + ], + "five_kill_rounds": [ + 32 + ], + "flash_assists": [ + 32 + ], + "flashes_thrown": [ + 32 + ], + "four_kill_rounds": [ + 32 + ], + "he_damage": [ + 32 + ], + "he_team_damage": [ + 32 + ], + "he_throws": [ + 32 + ], + "headshot_hits": [ + 32 + ], + "hits": [ + 32 + ], + "hits_at_spotted": [ + 32 + ], + "hs_kills": [ + 32 + ], + "hs_kills_ct": [ + 32 + ], + "hs_kills_t": [ + 32 + ], + "kills": [ + 32 + ], + "kills_ct": [ + 32 + ], + "kills_t": [ + 32 + ], + "knife_kills": [ + 32 + ], + "molotov_damage": [ + 32 + ], + "molotov_throws": [ + 32 + ], + "non_awp_hits": [ + 32 + ], + "on_target_frames": [ + 32 + ], + "rounds_ct": [ + 32 + ], + "rounds_played": [ + 32 + ], + "rounds_t": [ + 32 + ], + "shots_at_spotted": [ + 32 + ], + "shots_fired": [ + 32 + ], + "smoke_throws": [ + 32 + ], + "spotted_count": [ + 32 + ], + "spotted_with_damage_count": [ + 32 + ], + "spray_hits": [ + 32 + ], + "spray_shots": [ + 32 + ], + "steam_id": [ + 32 + ], + "team_damage": [ + 32 + ], + "team_flashed": [ + 32 + ], + "three_kill_rounds": [ + 32 + ], + "total_engagement_frames": [ + 32 + ], + "trade_kill_attempts": [ + 32 + ], + "trade_kill_opportunities": [ + 32 + ], + "trade_kill_successes": [ + 32 + ], + "traded_death_attempts": [ + 32 + ], + "traded_death_opportunities": [ + 32 + ], + "traded_death_successes": [ + 32 + ], + "two_kill_rounds": [ + 32 + ], + "unused_utility_value": [ + 32 + ], + "utility_on_death": [ + 32 + ], + "wasted_magazine_shots": [ + 32 + ], + "zeus_kills": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_match_stats_v_var_pop_order_by": { + "assists": [ + 3648 + ], + "assists_ct": [ + 3648 + ], + "assists_t": [ + 3648 + ], + "avg_crosshair_angle_deg": [ + 3648 + ], + "avg_flash_duration": [ + 3648 + ], + "avg_time_to_damage_s": [ + 3648 + ], + "counter_strafe_eligible_shots": [ + 3648 + ], + "counter_strafed_shots": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_ct": [ + 3648 + ], + "damage_t": [ + 3648 + ], + "deaths": [ + 3648 + ], + "deaths_ct": [ + 3648 + ], + "deaths_t": [ + 3648 + ], + "decoy_throws": [ + 3648 + ], + "enemies_flashed": [ + 3648 + ], + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "five_kill_rounds": [ + 3648 + ], + "flash_assists": [ + 3648 + ], + "flashes_thrown": [ + 3648 + ], + "four_kill_rounds": [ + 3648 + ], + "he_damage": [ + 3648 + ], + "he_team_damage": [ + 3648 + ], + "he_throws": [ + 3648 + ], + "headshot_hits": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_at_spotted": [ + 3648 + ], + "hs_kills": [ + 3648 + ], + "hs_kills_ct": [ + 3648 + ], + "hs_kills_t": [ + 3648 + ], + "kills": [ + 3648 + ], + "kills_ct": [ + 3648 + ], + "kills_t": [ + 3648 + ], + "knife_kills": [ + 3648 + ], + "molotov_damage": [ + 3648 + ], + "molotov_throws": [ + 3648 + ], + "non_awp_hits": [ + 3648 + ], + "on_target_frames": [ + 3648 + ], + "rounds_ct": [ + 3648 + ], + "rounds_played": [ + 3648 + ], + "rounds_t": [ + 3648 + ], + "shots_at_spotted": [ + 3648 + ], + "shots_fired": [ + 3648 + ], + "smoke_throws": [ + 3648 + ], + "spotted_count": [ + 3648 + ], + "spotted_with_damage_count": [ + 3648 + ], + "spray_hits": [ + 3648 + ], + "spray_shots": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "team_damage": [ + 3648 + ], + "team_flashed": [ + 3648 + ], + "three_kill_rounds": [ + 3648 + ], + "total_engagement_frames": [ + 3648 + ], + "trade_kill_attempts": [ + 3648 + ], + "trade_kill_opportunities": [ + 3648 + ], + "trade_kill_successes": [ + 3648 + ], + "traded_death_attempts": [ + 3648 + ], + "traded_death_opportunities": [ + 3648 + ], + "traded_death_successes": [ + 3648 + ], + "two_kill_rounds": [ + 3648 + ], + "unused_utility_value": [ + 3648 + ], + "utility_on_death": [ + 3648 + ], + "wasted_magazine_shots": [ + 3648 + ], + "zeus_kills": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_match_stats_v_var_samp_fields": { + "assists": [ + 32 + ], + "assists_ct": [ + 32 + ], + "assists_t": [ + 32 + ], + "avg_crosshair_angle_deg": [ + 32 + ], + "avg_flash_duration": [ + 32 + ], + "avg_time_to_damage_s": [ + 32 + ], + "counter_strafe_eligible_shots": [ + 32 + ], + "counter_strafed_shots": [ + 32 + ], + "damage": [ + 32 + ], + "damage_ct": [ + 32 + ], + "damage_t": [ + 32 + ], + "deaths": [ + 32 + ], + "deaths_ct": [ + 32 + ], + "deaths_t": [ + 32 + ], + "decoy_throws": [ + 32 + ], + "enemies_flashed": [ + 32 + ], + "first_bullet_hits": [ + 32 + ], + "first_bullet_shots": [ + 32 + ], + "five_kill_rounds": [ + 32 + ], + "flash_assists": [ + 32 + ], + "flashes_thrown": [ + 32 + ], + "four_kill_rounds": [ + 32 + ], + "he_damage": [ + 32 + ], + "he_team_damage": [ + 32 + ], + "he_throws": [ + 32 + ], + "headshot_hits": [ + 32 + ], + "hits": [ + 32 + ], + "hits_at_spotted": [ + 32 + ], + "hs_kills": [ + 32 + ], + "hs_kills_ct": [ + 32 + ], + "hs_kills_t": [ + 32 + ], + "kills": [ + 32 + ], + "kills_ct": [ + 32 + ], + "kills_t": [ + 32 + ], + "knife_kills": [ + 32 + ], + "molotov_damage": [ + 32 + ], + "molotov_throws": [ + 32 + ], + "non_awp_hits": [ + 32 + ], + "on_target_frames": [ + 32 + ], + "rounds_ct": [ + 32 + ], + "rounds_played": [ + 32 + ], + "rounds_t": [ + 32 + ], + "shots_at_spotted": [ + 32 + ], + "shots_fired": [ + 32 + ], + "smoke_throws": [ + 32 + ], + "spotted_count": [ + 32 + ], + "spotted_with_damage_count": [ + 32 + ], + "spray_hits": [ + 32 + ], + "spray_shots": [ + 32 + ], + "steam_id": [ + 32 + ], + "team_damage": [ + 32 + ], + "team_flashed": [ + 32 + ], + "three_kill_rounds": [ + 32 + ], + "total_engagement_frames": [ + 32 + ], + "trade_kill_attempts": [ + 32 + ], + "trade_kill_opportunities": [ + 32 + ], + "trade_kill_successes": [ + 32 + ], + "traded_death_attempts": [ + 32 + ], + "traded_death_opportunities": [ + 32 + ], + "traded_death_successes": [ + 32 + ], + "two_kill_rounds": [ + 32 + ], + "unused_utility_value": [ + 32 + ], + "utility_on_death": [ + 32 + ], + "wasted_magazine_shots": [ + 32 + ], + "zeus_kills": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_match_stats_v_var_samp_order_by": { + "assists": [ + 3648 + ], + "assists_ct": [ + 3648 + ], + "assists_t": [ + 3648 + ], + "avg_crosshair_angle_deg": [ + 3648 + ], + "avg_flash_duration": [ + 3648 + ], + "avg_time_to_damage_s": [ + 3648 + ], + "counter_strafe_eligible_shots": [ + 3648 + ], + "counter_strafed_shots": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_ct": [ + 3648 + ], + "damage_t": [ + 3648 + ], + "deaths": [ + 3648 + ], + "deaths_ct": [ + 3648 + ], + "deaths_t": [ + 3648 + ], + "decoy_throws": [ + 3648 + ], + "enemies_flashed": [ + 3648 + ], + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "five_kill_rounds": [ + 3648 + ], + "flash_assists": [ + 3648 + ], + "flashes_thrown": [ + 3648 + ], + "four_kill_rounds": [ + 3648 + ], + "he_damage": [ + 3648 + ], + "he_team_damage": [ + 3648 + ], + "he_throws": [ + 3648 + ], + "headshot_hits": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_at_spotted": [ + 3648 + ], + "hs_kills": [ + 3648 + ], + "hs_kills_ct": [ + 3648 + ], + "hs_kills_t": [ + 3648 + ], + "kills": [ + 3648 + ], + "kills_ct": [ + 3648 + ], + "kills_t": [ + 3648 + ], + "knife_kills": [ + 3648 + ], + "molotov_damage": [ + 3648 + ], + "molotov_throws": [ + 3648 + ], + "non_awp_hits": [ + 3648 + ], + "on_target_frames": [ + 3648 + ], + "rounds_ct": [ + 3648 + ], + "rounds_played": [ + 3648 + ], + "rounds_t": [ + 3648 + ], + "shots_at_spotted": [ + 3648 + ], + "shots_fired": [ + 3648 + ], + "smoke_throws": [ + 3648 + ], + "spotted_count": [ + 3648 + ], + "spotted_with_damage_count": [ + 3648 + ], + "spray_hits": [ + 3648 + ], + "spray_shots": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "team_damage": [ + 3648 + ], + "team_flashed": [ + 3648 + ], + "three_kill_rounds": [ + 3648 + ], + "total_engagement_frames": [ + 3648 + ], + "trade_kill_attempts": [ + 3648 + ], + "trade_kill_opportunities": [ + 3648 + ], + "trade_kill_successes": [ + 3648 + ], + "traded_death_attempts": [ + 3648 + ], + "traded_death_opportunities": [ + 3648 + ], + "traded_death_successes": [ + 3648 + ], + "two_kill_rounds": [ + 3648 + ], + "unused_utility_value": [ + 3648 + ], + "utility_on_death": [ + 3648 + ], + "wasted_magazine_shots": [ + 3648 + ], + "zeus_kills": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_match_stats_v_variance_fields": { + "assists": [ + 32 + ], + "assists_ct": [ + 32 + ], + "assists_t": [ + 32 + ], + "avg_crosshair_angle_deg": [ + 32 + ], + "avg_flash_duration": [ + 32 + ], + "avg_time_to_damage_s": [ + 32 + ], + "counter_strafe_eligible_shots": [ + 32 + ], + "counter_strafed_shots": [ + 32 + ], + "damage": [ + 32 + ], + "damage_ct": [ + 32 + ], + "damage_t": [ + 32 + ], + "deaths": [ + 32 + ], + "deaths_ct": [ + 32 + ], + "deaths_t": [ + 32 + ], + "decoy_throws": [ + 32 + ], + "enemies_flashed": [ + 32 + ], + "first_bullet_hits": [ + 32 + ], + "first_bullet_shots": [ + 32 + ], + "five_kill_rounds": [ + 32 + ], + "flash_assists": [ + 32 + ], + "flashes_thrown": [ + 32 + ], + "four_kill_rounds": [ + 32 + ], + "he_damage": [ + 32 + ], + "he_team_damage": [ + 32 + ], + "he_throws": [ + 32 + ], + "headshot_hits": [ + 32 + ], + "hits": [ + 32 + ], + "hits_at_spotted": [ + 32 + ], + "hs_kills": [ + 32 + ], + "hs_kills_ct": [ + 32 + ], + "hs_kills_t": [ + 32 + ], + "kills": [ + 32 + ], + "kills_ct": [ + 32 + ], + "kills_t": [ + 32 + ], + "knife_kills": [ + 32 + ], + "molotov_damage": [ + 32 + ], + "molotov_throws": [ + 32 + ], + "non_awp_hits": [ + 32 + ], + "on_target_frames": [ + 32 + ], + "rounds_ct": [ + 32 + ], + "rounds_played": [ + 32 + ], + "rounds_t": [ + 32 + ], + "shots_at_spotted": [ + 32 + ], + "shots_fired": [ + 32 + ], + "smoke_throws": [ + 32 + ], + "spotted_count": [ + 32 + ], + "spotted_with_damage_count": [ + 32 + ], + "spray_hits": [ + 32 + ], + "spray_shots": [ + 32 + ], + "steam_id": [ + 32 + ], + "team_damage": [ + 32 + ], + "team_flashed": [ + 32 + ], + "three_kill_rounds": [ + 32 + ], + "total_engagement_frames": [ + 32 + ], + "trade_kill_attempts": [ + 32 + ], + "trade_kill_opportunities": [ + 32 + ], + "trade_kill_successes": [ + 32 + ], + "traded_death_attempts": [ + 32 + ], + "traded_death_opportunities": [ + 32 + ], + "traded_death_successes": [ + 32 + ], + "two_kill_rounds": [ + 32 + ], + "unused_utility_value": [ + 32 + ], + "utility_on_death": [ + 32 + ], + "wasted_magazine_shots": [ + 32 + ], + "zeus_kills": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_match_stats_v_variance_order_by": { + "assists": [ + 3648 + ], + "assists_ct": [ + 3648 + ], + "assists_t": [ + 3648 + ], + "avg_crosshair_angle_deg": [ + 3648 + ], + "avg_flash_duration": [ + 3648 + ], + "avg_time_to_damage_s": [ + 3648 + ], + "counter_strafe_eligible_shots": [ + 3648 + ], + "counter_strafed_shots": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_ct": [ + 3648 + ], + "damage_t": [ + 3648 + ], + "deaths": [ + 3648 + ], + "deaths_ct": [ + 3648 + ], + "deaths_t": [ + 3648 + ], + "decoy_throws": [ + 3648 + ], + "enemies_flashed": [ + 3648 + ], + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "five_kill_rounds": [ + 3648 + ], + "flash_assists": [ + 3648 + ], + "flashes_thrown": [ + 3648 + ], + "four_kill_rounds": [ + 3648 + ], + "he_damage": [ + 3648 + ], + "he_team_damage": [ + 3648 + ], + "he_throws": [ + 3648 + ], + "headshot_hits": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_at_spotted": [ + 3648 + ], + "hs_kills": [ + 3648 + ], + "hs_kills_ct": [ + 3648 + ], + "hs_kills_t": [ + 3648 + ], + "kills": [ + 3648 + ], + "kills_ct": [ + 3648 + ], + "kills_t": [ + 3648 + ], + "knife_kills": [ + 3648 + ], + "molotov_damage": [ + 3648 + ], + "molotov_throws": [ + 3648 + ], + "non_awp_hits": [ + 3648 + ], + "on_target_frames": [ + 3648 + ], + "rounds_ct": [ + 3648 + ], + "rounds_played": [ + 3648 + ], + "rounds_t": [ + 3648 + ], + "shots_at_spotted": [ + 3648 + ], + "shots_fired": [ + 3648 + ], + "smoke_throws": [ + 3648 + ], + "spotted_count": [ + 3648 + ], + "spotted_with_damage_count": [ + 3648 + ], + "spray_hits": [ + 3648 + ], + "spray_shots": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "team_damage": [ + 3648 + ], + "team_flashed": [ + 3648 + ], + "three_kill_rounds": [ + 3648 + ], + "total_engagement_frames": [ + 3648 + ], + "trade_kill_attempts": [ + 3648 + ], + "trade_kill_opportunities": [ + 3648 + ], + "trade_kill_successes": [ + 3648 + ], + "traded_death_attempts": [ + 3648 + ], + "traded_death_opportunities": [ + 3648 + ], + "traded_death_successes": [ + 3648 + ], + "two_kill_rounds": [ + 3648 + ], + "unused_utility_value": [ + 3648 + ], + "utility_on_death": [ + 3648 + ], + "wasted_magazine_shots": [ + 3648 + ], + "zeus_kills": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_objectives": { + "deleted_at": [ + 5243 + ], + "match": [ + 3432 + ], + "match_id": [ + 6672 + ], + "match_map": [ + 3248 + ], + "match_map_id": [ + 6672 + ], + "player": [ + 4606 + ], + "player_steam_id": [ + 312 + ], + "round": [ + 41 + ], + "time": [ + 5243 + ], + "type": [ + 1266 + ], + "__typename": [ + 85 + ] + }, + "player_objectives_aggregate": { + "aggregate": [ + 4208 + ], + "nodes": [ + 4204 + ], + "__typename": [ + 85 + ] + }, + "player_objectives_aggregate_bool_exp": { + "count": [ + 4207 + ], + "__typename": [ + 85 + ] + }, + "player_objectives_aggregate_bool_exp_count": { + "arguments": [ + 4225 + ], + "distinct": [ + 6 + ], + "filter": [ + 4213 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "player_objectives_aggregate_fields": { + "avg": [ + 4211 + ], + "count": [ + 41, + { + "columns": [ + 4225, + "[player_objectives_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 4217 + ], + "min": [ + 4219 + ], + "stddev": [ + 4227 + ], + "stddev_pop": [ + 4229 + ], + "stddev_samp": [ + 4231 + ], + "sum": [ + 4235 + ], + "var_pop": [ + 4239 + ], + "var_samp": [ + 4241 + ], + "variance": [ + 4243 + ], + "__typename": [ + 85 + ] + }, + "player_objectives_aggregate_order_by": { + "avg": [ + 4212 + ], + "count": [ + 3648 + ], + "max": [ + 4218 + ], + "min": [ + 4220 + ], + "stddev": [ + 4228 + ], + "stddev_pop": [ + 4230 + ], + "stddev_samp": [ + 4232 + ], + "sum": [ + 4236 + ], + "var_pop": [ + 4240 + ], + "var_samp": [ + 4242 + ], + "variance": [ + 4244 + ], + "__typename": [ + 85 + ] + }, + "player_objectives_arr_rel_insert_input": { + "data": [ + 4216 + ], + "on_conflict": [ + 4222 + ], + "__typename": [ + 85 + ] + }, + "player_objectives_avg_fields": { + "player_steam_id": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_objectives_avg_order_by": { + "player_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_objectives_bool_exp": { + "_and": [ + 4213 + ], + "_not": [ + 4213 + ], + "_or": [ + 4213 + ], + "deleted_at": [ + 5244 + ], + "match": [ + 3443 + ], + "match_id": [ + 6674 + ], + "match_map": [ + 3257 + ], + "match_map_id": [ + 6674 + ], + "player": [ + 4610 + ], + "player_steam_id": [ + 314 + ], + "round": [ + 42 + ], + "time": [ + 5244 + ], + "type": [ + 1267 + ], + "__typename": [ + 85 + ] + }, + "player_objectives_constraint": {}, + "player_objectives_inc_input": { + "player_steam_id": [ + 312 + ], + "round": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "player_objectives_insert_input": { + "deleted_at": [ + 5243 + ], + "match": [ + 3452 + ], + "match_id": [ + 6672 + ], + "match_map": [ + 3266 + ], + "match_map_id": [ + 6672 + ], + "player": [ + 4617 + ], + "player_steam_id": [ + 312 + ], + "round": [ + 41 + ], + "time": [ + 5243 + ], + "type": [ + 1266 + ], + "__typename": [ + 85 + ] + }, + "player_objectives_max_fields": { + "deleted_at": [ + 5243 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "player_steam_id": [ + 312 + ], + "round": [ + 41 + ], + "time": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "player_objectives_max_order_by": { + "deleted_at": [ + 3648 + ], + "match_id": [ + 3648 + ], + "match_map_id": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "time": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_objectives_min_fields": { + "deleted_at": [ + 5243 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "player_steam_id": [ + 312 + ], + "round": [ + 41 + ], + "time": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "player_objectives_min_order_by": { + "deleted_at": [ + 3648 + ], + "match_id": [ + 3648 + ], + "match_map_id": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "time": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_objectives_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 4204 + ], + "__typename": [ + 85 + ] + }, + "player_objectives_on_conflict": { + "constraint": [ + 4214 + ], + "update_columns": [ + 4237 + ], + "where": [ + 4213 + ], + "__typename": [ + 85 + ] + }, + "player_objectives_order_by": { + "deleted_at": [ + 3648 + ], + "match": [ + 3454 + ], + "match_id": [ + 3648 + ], + "match_map": [ + 3268 + ], + "match_map_id": [ + 3648 + ], + "player": [ + 4619 + ], + "player_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "time": [ + 3648 + ], + "type": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_objectives_pk_columns_input": { + "match_map_id": [ + 6672 + ], + "player_steam_id": [ + 312 + ], + "time": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "player_objectives_select_column": {}, + "player_objectives_set_input": { + "deleted_at": [ + 5243 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "player_steam_id": [ + 312 + ], + "round": [ + 41 + ], + "time": [ + 5243 + ], + "type": [ + 1266 + ], + "__typename": [ + 85 + ] + }, + "player_objectives_stddev_fields": { + "player_steam_id": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_objectives_stddev_order_by": { + "player_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_objectives_stddev_pop_fields": { + "player_steam_id": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_objectives_stddev_pop_order_by": { + "player_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_objectives_stddev_samp_fields": { + "player_steam_id": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_objectives_stddev_samp_order_by": { + "player_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_objectives_stream_cursor_input": { + "initial_value": [ + 4234 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "player_objectives_stream_cursor_value_input": { + "deleted_at": [ + 5243 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "player_steam_id": [ + 312 + ], + "round": [ + 41 + ], + "time": [ + 5243 + ], + "type": [ + 1266 + ], + "__typename": [ + 85 + ] + }, + "player_objectives_sum_fields": { + "player_steam_id": [ + 312 + ], + "round": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "player_objectives_sum_order_by": { + "player_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_objectives_update_column": {}, + "player_objectives_updates": { + "_inc": [ + 4215 + ], + "_set": [ + 4226 + ], + "where": [ + 4213 + ], + "__typename": [ + 85 + ] + }, + "player_objectives_var_pop_fields": { + "player_steam_id": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_objectives_var_pop_order_by": { + "player_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_objectives_var_samp_fields": { + "player_steam_id": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_objectives_var_samp_order_by": { + "player_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_objectives_variance_fields": { + "player_steam_id": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_objectives_variance_order_by": { + "player_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_performance_v": { + "accuracy_score": [ + 2093 + ], + "aim_goal": [ + 2093 + ], + "aim_rating": [ + 2093 + ], + "band": [ + 41 + ], + "band_sample": [ + 312 + ], + "blind_score": [ + 2093 + ], + "counter_strafe_score": [ + 2093 + ], + "crosshair_score": [ + 2093 + ], + "flash_assists_score": [ + 2093 + ], + "hs_score": [ + 2093 + ], + "kast_score": [ + 2093 + ], + "maps": [ + 41 + ], + "positioning_goal": [ + 2093 + ], + "positioning_rating": [ + 2093 + ], + "premier_rank": [ + 41 + ], + "rounds": [ + 41 + ], + "spotted_score": [ + 2093 + ], + "steam_id": [ + 312 + ], + "survival_score": [ + 2093 + ], + "traded_score": [ + 2093 + ], + "ttd_score": [ + 2093 + ], + "util_eff_score": [ + 2093 + ], + "utility_goal": [ + 2093 + ], + "utility_rating": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "player_performance_v_aggregate": { + "aggregate": [ + 4247 + ], + "nodes": [ + 4245 + ], + "__typename": [ + 85 + ] + }, + "player_performance_v_aggregate_fields": { + "avg": [ + 4248 + ], + "count": [ + 41, + { + "columns": [ + 4253, + "[player_performance_v_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 4250 + ], + "min": [ + 4251 + ], + "stddev": [ + 4254 + ], + "stddev_pop": [ + 4255 + ], + "stddev_samp": [ + 4256 + ], + "sum": [ + 4259 + ], + "var_pop": [ + 4260 + ], + "var_samp": [ + 4261 + ], + "variance": [ + 4262 + ], + "__typename": [ + 85 + ] + }, + "player_performance_v_avg_fields": { + "accuracy_score": [ + 32 + ], + "aim_goal": [ + 32 + ], + "aim_rating": [ + 32 + ], + "band": [ + 32 + ], + "band_sample": [ + 32 + ], + "blind_score": [ + 32 + ], + "counter_strafe_score": [ + 32 + ], + "crosshair_score": [ + 32 + ], + "flash_assists_score": [ + 32 + ], + "hs_score": [ + 32 + ], + "kast_score": [ + 32 + ], + "maps": [ + 32 + ], + "positioning_goal": [ + 32 + ], + "positioning_rating": [ + 32 + ], + "premier_rank": [ + 32 + ], + "rounds": [ + 32 + ], + "spotted_score": [ + 32 + ], + "steam_id": [ + 32 + ], + "survival_score": [ + 32 + ], + "traded_score": [ + 32 + ], + "ttd_score": [ + 32 + ], + "util_eff_score": [ + 32 + ], + "utility_goal": [ + 32 + ], + "utility_rating": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_performance_v_bool_exp": { + "_and": [ + 4249 + ], + "_not": [ + 4249 + ], + "_or": [ + 4249 + ], + "accuracy_score": [ + 2094 + ], + "aim_goal": [ + 2094 + ], + "aim_rating": [ + 2094 + ], + "band": [ + 42 + ], + "band_sample": [ + 314 + ], + "blind_score": [ + 2094 + ], + "counter_strafe_score": [ + 2094 + ], + "crosshair_score": [ + 2094 + ], + "flash_assists_score": [ + 2094 + ], + "hs_score": [ + 2094 + ], + "kast_score": [ + 2094 + ], + "maps": [ + 42 + ], + "positioning_goal": [ + 2094 + ], + "positioning_rating": [ + 2094 + ], + "premier_rank": [ + 42 + ], + "rounds": [ + 42 + ], + "spotted_score": [ + 2094 + ], + "steam_id": [ + 314 + ], + "survival_score": [ + 2094 + ], + "traded_score": [ + 2094 + ], + "ttd_score": [ + 2094 + ], + "util_eff_score": [ + 2094 + ], + "utility_goal": [ + 2094 + ], + "utility_rating": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "player_performance_v_max_fields": { + "accuracy_score": [ + 2093 + ], + "aim_goal": [ + 2093 + ], + "aim_rating": [ + 2093 + ], + "band": [ + 41 + ], + "band_sample": [ + 312 + ], + "blind_score": [ + 2093 + ], + "counter_strafe_score": [ + 2093 + ], + "crosshair_score": [ + 2093 + ], + "flash_assists_score": [ + 2093 + ], + "hs_score": [ + 2093 + ], + "kast_score": [ + 2093 + ], + "maps": [ + 41 + ], + "positioning_goal": [ + 2093 + ], + "positioning_rating": [ + 2093 + ], + "premier_rank": [ + 41 + ], + "rounds": [ + 41 + ], + "spotted_score": [ + 2093 + ], + "steam_id": [ + 312 + ], + "survival_score": [ + 2093 + ], + "traded_score": [ + 2093 + ], + "ttd_score": [ + 2093 + ], + "util_eff_score": [ + 2093 + ], + "utility_goal": [ + 2093 + ], + "utility_rating": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "player_performance_v_min_fields": { + "accuracy_score": [ + 2093 + ], + "aim_goal": [ + 2093 + ], + "aim_rating": [ + 2093 + ], + "band": [ + 41 + ], + "band_sample": [ + 312 + ], + "blind_score": [ + 2093 + ], + "counter_strafe_score": [ + 2093 + ], + "crosshair_score": [ + 2093 + ], + "flash_assists_score": [ + 2093 + ], + "hs_score": [ + 2093 + ], + "kast_score": [ + 2093 + ], + "maps": [ + 41 + ], + "positioning_goal": [ + 2093 + ], + "positioning_rating": [ + 2093 + ], + "premier_rank": [ + 41 + ], + "rounds": [ + 41 + ], + "spotted_score": [ + 2093 + ], + "steam_id": [ + 312 + ], + "survival_score": [ + 2093 + ], + "traded_score": [ + 2093 + ], + "ttd_score": [ + 2093 + ], + "util_eff_score": [ + 2093 + ], + "utility_goal": [ + 2093 + ], + "utility_rating": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "player_performance_v_order_by": { + "accuracy_score": [ + 3648 + ], + "aim_goal": [ + 3648 + ], + "aim_rating": [ + 3648 + ], + "band": [ + 3648 + ], + "band_sample": [ + 3648 + ], + "blind_score": [ + 3648 + ], + "counter_strafe_score": [ + 3648 + ], + "crosshair_score": [ + 3648 + ], + "flash_assists_score": [ + 3648 + ], + "hs_score": [ + 3648 + ], + "kast_score": [ + 3648 + ], + "maps": [ + 3648 + ], + "positioning_goal": [ + 3648 + ], + "positioning_rating": [ + 3648 + ], + "premier_rank": [ + 3648 + ], + "rounds": [ + 3648 + ], + "spotted_score": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "survival_score": [ + 3648 + ], + "traded_score": [ + 3648 + ], + "ttd_score": [ + 3648 + ], + "util_eff_score": [ + 3648 + ], + "utility_goal": [ + 3648 + ], + "utility_rating": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_performance_v_select_column": {}, + "player_performance_v_stddev_fields": { + "accuracy_score": [ + 32 + ], + "aim_goal": [ + 32 + ], + "aim_rating": [ + 32 + ], + "band": [ + 32 + ], + "band_sample": [ + 32 + ], + "blind_score": [ + 32 + ], + "counter_strafe_score": [ + 32 + ], + "crosshair_score": [ + 32 + ], + "flash_assists_score": [ + 32 + ], + "hs_score": [ + 32 + ], + "kast_score": [ + 32 + ], + "maps": [ + 32 + ], + "positioning_goal": [ + 32 + ], + "positioning_rating": [ + 32 + ], + "premier_rank": [ + 32 + ], + "rounds": [ + 32 + ], + "spotted_score": [ + 32 + ], + "steam_id": [ + 32 + ], + "survival_score": [ + 32 + ], + "traded_score": [ + 32 + ], + "ttd_score": [ + 32 + ], + "util_eff_score": [ + 32 + ], + "utility_goal": [ + 32 + ], + "utility_rating": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_performance_v_stddev_pop_fields": { + "accuracy_score": [ + 32 + ], + "aim_goal": [ + 32 + ], + "aim_rating": [ + 32 + ], + "band": [ + 32 + ], + "band_sample": [ + 32 + ], + "blind_score": [ + 32 + ], + "counter_strafe_score": [ + 32 + ], + "crosshair_score": [ + 32 + ], + "flash_assists_score": [ + 32 + ], + "hs_score": [ + 32 + ], + "kast_score": [ + 32 + ], + "maps": [ + 32 + ], + "positioning_goal": [ + 32 + ], + "positioning_rating": [ + 32 + ], + "premier_rank": [ + 32 + ], + "rounds": [ + 32 + ], + "spotted_score": [ + 32 + ], + "steam_id": [ + 32 + ], + "survival_score": [ + 32 + ], + "traded_score": [ + 32 + ], + "ttd_score": [ + 32 + ], + "util_eff_score": [ + 32 + ], + "utility_goal": [ + 32 + ], + "utility_rating": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_performance_v_stddev_samp_fields": { + "accuracy_score": [ + 32 + ], + "aim_goal": [ + 32 + ], + "aim_rating": [ + 32 + ], + "band": [ + 32 + ], + "band_sample": [ + 32 + ], + "blind_score": [ + 32 + ], + "counter_strafe_score": [ + 32 + ], + "crosshair_score": [ + 32 + ], + "flash_assists_score": [ + 32 + ], + "hs_score": [ + 32 + ], + "kast_score": [ + 32 + ], + "maps": [ + 32 + ], + "positioning_goal": [ + 32 + ], + "positioning_rating": [ + 32 + ], + "premier_rank": [ + 32 + ], + "rounds": [ + 32 + ], + "spotted_score": [ + 32 + ], + "steam_id": [ + 32 + ], + "survival_score": [ + 32 + ], + "traded_score": [ + 32 + ], + "ttd_score": [ + 32 + ], + "util_eff_score": [ + 32 + ], + "utility_goal": [ + 32 + ], + "utility_rating": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_performance_v_stream_cursor_input": { + "initial_value": [ + 4258 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "player_performance_v_stream_cursor_value_input": { + "accuracy_score": [ + 2093 + ], + "aim_goal": [ + 2093 + ], + "aim_rating": [ + 2093 + ], + "band": [ + 41 + ], + "band_sample": [ + 312 + ], + "blind_score": [ + 2093 + ], + "counter_strafe_score": [ + 2093 + ], + "crosshair_score": [ + 2093 + ], + "flash_assists_score": [ + 2093 + ], + "hs_score": [ + 2093 + ], + "kast_score": [ + 2093 + ], + "maps": [ + 41 + ], + "positioning_goal": [ + 2093 + ], + "positioning_rating": [ + 2093 + ], + "premier_rank": [ + 41 + ], + "rounds": [ + 41 + ], + "spotted_score": [ + 2093 + ], + "steam_id": [ + 312 + ], + "survival_score": [ + 2093 + ], + "traded_score": [ + 2093 + ], + "ttd_score": [ + 2093 + ], + "util_eff_score": [ + 2093 + ], + "utility_goal": [ + 2093 + ], + "utility_rating": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "player_performance_v_sum_fields": { + "accuracy_score": [ + 2093 + ], + "aim_goal": [ + 2093 + ], + "aim_rating": [ + 2093 + ], + "band": [ + 41 + ], + "band_sample": [ + 312 + ], + "blind_score": [ + 2093 + ], + "counter_strafe_score": [ + 2093 + ], + "crosshair_score": [ + 2093 + ], + "flash_assists_score": [ + 2093 + ], + "hs_score": [ + 2093 + ], + "kast_score": [ + 2093 + ], + "maps": [ + 41 + ], + "positioning_goal": [ + 2093 + ], + "positioning_rating": [ + 2093 + ], + "premier_rank": [ + 41 + ], + "rounds": [ + 41 + ], + "spotted_score": [ + 2093 + ], + "steam_id": [ + 312 + ], + "survival_score": [ + 2093 + ], + "traded_score": [ + 2093 + ], + "ttd_score": [ + 2093 + ], + "util_eff_score": [ + 2093 + ], + "utility_goal": [ + 2093 + ], + "utility_rating": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "player_performance_v_var_pop_fields": { + "accuracy_score": [ + 32 + ], + "aim_goal": [ + 32 + ], + "aim_rating": [ + 32 + ], + "band": [ + 32 + ], + "band_sample": [ + 32 + ], + "blind_score": [ + 32 + ], + "counter_strafe_score": [ + 32 + ], + "crosshair_score": [ + 32 + ], + "flash_assists_score": [ + 32 + ], + "hs_score": [ + 32 + ], + "kast_score": [ + 32 + ], + "maps": [ + 32 + ], + "positioning_goal": [ + 32 + ], + "positioning_rating": [ + 32 + ], + "premier_rank": [ + 32 + ], + "rounds": [ + 32 + ], + "spotted_score": [ + 32 + ], + "steam_id": [ + 32 + ], + "survival_score": [ + 32 + ], + "traded_score": [ + 32 + ], + "ttd_score": [ + 32 + ], + "util_eff_score": [ + 32 + ], + "utility_goal": [ + 32 + ], + "utility_rating": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_performance_v_var_samp_fields": { + "accuracy_score": [ + 32 + ], + "aim_goal": [ + 32 + ], + "aim_rating": [ + 32 + ], + "band": [ + 32 + ], + "band_sample": [ + 32 + ], + "blind_score": [ + 32 + ], + "counter_strafe_score": [ + 32 + ], + "crosshair_score": [ + 32 + ], + "flash_assists_score": [ + 32 + ], + "hs_score": [ + 32 + ], + "kast_score": [ + 32 + ], + "maps": [ + 32 + ], + "positioning_goal": [ + 32 + ], + "positioning_rating": [ + 32 + ], + "premier_rank": [ + 32 + ], + "rounds": [ + 32 + ], + "spotted_score": [ + 32 + ], + "steam_id": [ + 32 + ], + "survival_score": [ + 32 + ], + "traded_score": [ + 32 + ], + "ttd_score": [ + 32 + ], + "util_eff_score": [ + 32 + ], + "utility_goal": [ + 32 + ], + "utility_rating": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_performance_v_variance_fields": { + "accuracy_score": [ + 32 + ], + "aim_goal": [ + 32 + ], + "aim_rating": [ + 32 + ], + "band": [ + 32 + ], + "band_sample": [ + 32 + ], + "blind_score": [ + 32 + ], + "counter_strafe_score": [ + 32 + ], + "crosshair_score": [ + 32 + ], + "flash_assists_score": [ + 32 + ], + "hs_score": [ + 32 + ], + "kast_score": [ + 32 + ], + "maps": [ + 32 + ], + "positioning_goal": [ + 32 + ], + "positioning_rating": [ + 32 + ], + "premier_rank": [ + 32 + ], + "rounds": [ + 32 + ], + "spotted_score": [ + 32 + ], + "steam_id": [ + 32 + ], + "survival_score": [ + 32 + ], + "traded_score": [ + 32 + ], + "ttd_score": [ + 32 + ], + "util_eff_score": [ + 32 + ], + "utility_goal": [ + 32 + ], + "utility_rating": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_premier_rank_history": { + "id": [ + 6672 + ], + "map": [ + 2924 + ], + "map_id": [ + 6672 + ], + "match": [ + 3432 + ], + "match_id": [ + 6672 + ], + "observed_at": [ + 5243 + ], + "player": [ + 4606 + ], + "previous_rank": [ + 41 + ], + "rank": [ + 41 + ], + "rank_type": [ + 41 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "player_premier_rank_history_aggregate": { + "aggregate": [ + 4267 + ], + "nodes": [ + 4263 + ], + "__typename": [ + 85 + ] + }, + "player_premier_rank_history_aggregate_bool_exp": { + "count": [ + 4266 + ], + "__typename": [ + 85 + ] + }, + "player_premier_rank_history_aggregate_bool_exp_count": { + "arguments": [ + 4284 + ], + "distinct": [ + 6 + ], + "filter": [ + 4272 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "player_premier_rank_history_aggregate_fields": { + "avg": [ + 4270 + ], + "count": [ + 41, + { + "columns": [ + 4284, + "[player_premier_rank_history_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 4276 + ], + "min": [ + 4278 + ], + "stddev": [ + 4286 + ], + "stddev_pop": [ + 4288 + ], + "stddev_samp": [ + 4290 + ], + "sum": [ + 4294 + ], + "var_pop": [ + 4298 + ], + "var_samp": [ + 4300 + ], + "variance": [ + 4302 + ], + "__typename": [ + 85 + ] + }, + "player_premier_rank_history_aggregate_order_by": { + "avg": [ + 4271 + ], + "count": [ + 3648 + ], + "max": [ + 4277 + ], + "min": [ + 4279 + ], + "stddev": [ + 4287 + ], + "stddev_pop": [ + 4289 + ], + "stddev_samp": [ + 4291 + ], + "sum": [ + 4295 + ], + "var_pop": [ + 4299 + ], + "var_samp": [ + 4301 + ], + "variance": [ + 4303 + ], + "__typename": [ + 85 + ] + }, + "player_premier_rank_history_arr_rel_insert_input": { + "data": [ + 4275 + ], + "on_conflict": [ + 4281 + ], + "__typename": [ + 85 + ] + }, + "player_premier_rank_history_avg_fields": { + "previous_rank": [ + 32 + ], + "rank": [ + 32 + ], + "rank_type": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_premier_rank_history_avg_order_by": { + "previous_rank": [ + 3648 + ], + "rank": [ + 3648 + ], + "rank_type": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_premier_rank_history_bool_exp": { + "_and": [ + 4272 + ], + "_not": [ + 4272 + ], + "_or": [ + 4272 + ], + "id": [ + 6674 + ], + "map": [ + 2933 + ], + "map_id": [ + 6674 + ], + "match": [ + 3443 + ], + "match_id": [ + 6674 + ], + "observed_at": [ + 5244 + ], + "player": [ + 4610 + ], + "previous_rank": [ + 42 + ], + "rank": [ + 42 + ], + "rank_type": [ + 42 + ], + "steam_id": [ + 314 + ], + "__typename": [ + 85 + ] + }, + "player_premier_rank_history_constraint": {}, + "player_premier_rank_history_inc_input": { + "previous_rank": [ + 41 + ], + "rank": [ + 41 + ], + "rank_type": [ + 41 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "player_premier_rank_history_insert_input": { + "id": [ + 6672 + ], + "map": [ + 2941 + ], + "map_id": [ + 6672 + ], + "match": [ + 3452 + ], + "match_id": [ + 6672 + ], + "observed_at": [ + 5243 + ], + "player": [ + 4617 + ], + "previous_rank": [ + 41 + ], + "rank": [ + 41 + ], + "rank_type": [ + 41 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "player_premier_rank_history_max_fields": { + "id": [ + 6672 + ], + "map_id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "observed_at": [ + 5243 + ], + "previous_rank": [ + 41 + ], + "rank": [ + 41 + ], + "rank_type": [ + 41 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "player_premier_rank_history_max_order_by": { + "id": [ + 3648 + ], + "map_id": [ + 3648 + ], + "match_id": [ + 3648 + ], + "observed_at": [ + 3648 + ], + "previous_rank": [ + 3648 + ], + "rank": [ + 3648 + ], + "rank_type": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_premier_rank_history_min_fields": { + "id": [ + 6672 + ], + "map_id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "observed_at": [ + 5243 + ], + "previous_rank": [ + 41 + ], + "rank": [ + 41 + ], + "rank_type": [ + 41 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "player_premier_rank_history_min_order_by": { + "id": [ + 3648 + ], + "map_id": [ + 3648 + ], + "match_id": [ + 3648 + ], + "observed_at": [ + 3648 + ], + "previous_rank": [ + 3648 + ], + "rank": [ + 3648 + ], + "rank_type": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_premier_rank_history_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 4263 + ], + "__typename": [ + 85 + ] + }, + "player_premier_rank_history_on_conflict": { + "constraint": [ + 4273 + ], + "update_columns": [ + 4296 + ], + "where": [ + 4272 + ], + "__typename": [ + 85 + ] + }, + "player_premier_rank_history_order_by": { + "id": [ + 3648 + ], + "map": [ + 2943 + ], + "map_id": [ + 3648 + ], + "match": [ + 3454 + ], + "match_id": [ + 3648 + ], + "observed_at": [ + 3648 + ], + "player": [ + 4619 + ], + "previous_rank": [ + 3648 + ], + "rank": [ + 3648 + ], + "rank_type": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_premier_rank_history_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "player_premier_rank_history_select_column": {}, + "player_premier_rank_history_set_input": { + "id": [ + 6672 + ], + "map_id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "observed_at": [ + 5243 + ], + "previous_rank": [ + 41 + ], + "rank": [ + 41 + ], + "rank_type": [ + 41 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "player_premier_rank_history_stddev_fields": { + "previous_rank": [ + 32 + ], + "rank": [ + 32 + ], + "rank_type": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_premier_rank_history_stddev_order_by": { + "previous_rank": [ + 3648 + ], + "rank": [ + 3648 + ], + "rank_type": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_premier_rank_history_stddev_pop_fields": { + "previous_rank": [ + 32 + ], + "rank": [ + 32 + ], + "rank_type": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_premier_rank_history_stddev_pop_order_by": { + "previous_rank": [ + 3648 + ], + "rank": [ + 3648 + ], + "rank_type": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_premier_rank_history_stddev_samp_fields": { + "previous_rank": [ + 32 + ], + "rank": [ + 32 + ], + "rank_type": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_premier_rank_history_stddev_samp_order_by": { + "previous_rank": [ + 3648 + ], + "rank": [ + 3648 + ], + "rank_type": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_premier_rank_history_stream_cursor_input": { + "initial_value": [ + 4293 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "player_premier_rank_history_stream_cursor_value_input": { + "id": [ + 6672 + ], + "map_id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "observed_at": [ + 5243 + ], + "previous_rank": [ + 41 + ], + "rank": [ + 41 + ], + "rank_type": [ + 41 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "player_premier_rank_history_sum_fields": { + "previous_rank": [ + 41 + ], + "rank": [ + 41 + ], + "rank_type": [ + 41 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "player_premier_rank_history_sum_order_by": { + "previous_rank": [ + 3648 + ], + "rank": [ + 3648 + ], + "rank_type": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_premier_rank_history_update_column": {}, + "player_premier_rank_history_updates": { + "_inc": [ + 4274 + ], + "_set": [ + 4285 + ], + "where": [ + 4272 + ], + "__typename": [ + 85 + ] + }, + "player_premier_rank_history_var_pop_fields": { + "previous_rank": [ + 32 + ], + "rank": [ + 32 + ], + "rank_type": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_premier_rank_history_var_pop_order_by": { + "previous_rank": [ + 3648 + ], + "rank": [ + 3648 + ], + "rank_type": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_premier_rank_history_var_samp_fields": { + "previous_rank": [ + 32 + ], + "rank": [ + 32 + ], + "rank_type": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_premier_rank_history_var_samp_order_by": { + "previous_rank": [ + 3648 + ], + "rank": [ + 3648 + ], + "rank_type": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_premier_rank_history_variance_fields": { + "previous_rank": [ + 32 + ], + "rank": [ + 32 + ], + "rank_type": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_premier_rank_history_variance_order_by": { + "previous_rank": [ + 3648 + ], + "rank": [ + 3648 + ], + "rank_type": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_sanctions": { + "created_at": [ + 5243 + ], + "deleted_at": [ + 5243 + ], + "e_sanction_type": [ + 1387 + ], + "id": [ + 6672 + ], + "player": [ + 4606 + ], + "player_steam_id": [ + 312 + ], + "reason": [ + 85 + ], + "remove_sanction_date": [ + 5243 + ], + "sanctioned_by": [ + 4606 + ], + "sanctioned_by_steam_id": [ + 312 + ], + "type": [ + 1392 + ], + "__typename": [ + 85 + ] + }, + "player_sanctions_aggregate": { + "aggregate": [ + 4308 + ], + "nodes": [ + 4304 + ], + "__typename": [ + 85 + ] + }, + "player_sanctions_aggregate_bool_exp": { + "count": [ + 4307 + ], + "__typename": [ + 85 + ] + }, + "player_sanctions_aggregate_bool_exp_count": { + "arguments": [ + 4325 + ], + "distinct": [ + 6 + ], + "filter": [ + 4313 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "player_sanctions_aggregate_fields": { + "avg": [ + 4311 + ], + "count": [ + 41, + { + "columns": [ + 4325, + "[player_sanctions_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 4317 + ], + "min": [ + 4319 + ], + "stddev": [ + 4327 + ], + "stddev_pop": [ + 4329 + ], + "stddev_samp": [ + 4331 + ], + "sum": [ + 4335 + ], + "var_pop": [ + 4339 + ], + "var_samp": [ + 4341 + ], + "variance": [ + 4343 + ], + "__typename": [ + 85 + ] + }, + "player_sanctions_aggregate_order_by": { + "avg": [ + 4312 + ], + "count": [ + 3648 + ], + "max": [ + 4318 + ], + "min": [ + 4320 + ], + "stddev": [ + 4328 + ], + "stddev_pop": [ + 4330 + ], + "stddev_samp": [ + 4332 + ], + "sum": [ + 4336 + ], + "var_pop": [ + 4340 + ], + "var_samp": [ + 4342 + ], + "variance": [ + 4344 + ], + "__typename": [ + 85 + ] + }, + "player_sanctions_arr_rel_insert_input": { + "data": [ + 4316 + ], + "on_conflict": [ + 4322 + ], + "__typename": [ + 85 + ] + }, + "player_sanctions_avg_fields": { + "player_steam_id": [ + 32 + ], + "sanctioned_by_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_sanctions_avg_order_by": { + "player_steam_id": [ + 3648 + ], + "sanctioned_by_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_sanctions_bool_exp": { + "_and": [ + 4313 + ], + "_not": [ + 4313 + ], + "_or": [ + 4313 + ], + "created_at": [ + 5244 + ], + "deleted_at": [ + 5244 + ], + "e_sanction_type": [ + 1390 + ], + "id": [ + 6674 + ], + "player": [ + 4610 + ], + "player_steam_id": [ + 314 + ], + "reason": [ + 87 + ], + "remove_sanction_date": [ + 5244 + ], + "sanctioned_by": [ + 4610 + ], + "sanctioned_by_steam_id": [ + 314 + ], + "type": [ + 1393 + ], + "__typename": [ + 85 + ] + }, + "player_sanctions_constraint": {}, + "player_sanctions_inc_input": { + "player_steam_id": [ + 312 + ], + "sanctioned_by_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "player_sanctions_insert_input": { + "created_at": [ + 5243 + ], + "deleted_at": [ + 5243 + ], + "e_sanction_type": [ + 1398 + ], + "id": [ + 6672 + ], + "player": [ + 4617 + ], + "player_steam_id": [ + 312 + ], + "reason": [ + 85 + ], + "remove_sanction_date": [ + 5243 + ], + "sanctioned_by": [ + 4617 + ], + "sanctioned_by_steam_id": [ + 312 + ], + "type": [ + 1392 + ], + "__typename": [ + 85 + ] + }, + "player_sanctions_max_fields": { + "created_at": [ + 5243 + ], + "deleted_at": [ + 5243 + ], + "id": [ + 6672 + ], + "player_steam_id": [ + 312 + ], + "reason": [ + 85 + ], + "remove_sanction_date": [ + 5243 + ], + "sanctioned_by_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "player_sanctions_max_order_by": { + "created_at": [ + 3648 + ], + "deleted_at": [ + 3648 + ], + "id": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "reason": [ + 3648 + ], + "remove_sanction_date": [ + 3648 + ], + "sanctioned_by_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_sanctions_min_fields": { + "created_at": [ + 5243 + ], + "deleted_at": [ + 5243 + ], + "id": [ + 6672 + ], + "player_steam_id": [ + 312 + ], + "reason": [ + 85 + ], + "remove_sanction_date": [ + 5243 + ], + "sanctioned_by_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "player_sanctions_min_order_by": { + "created_at": [ + 3648 + ], + "deleted_at": [ + 3648 + ], + "id": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "reason": [ + 3648 + ], + "remove_sanction_date": [ + 3648 + ], + "sanctioned_by_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_sanctions_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 4304 + ], + "__typename": [ + 85 + ] + }, + "player_sanctions_on_conflict": { + "constraint": [ + 4314 + ], + "update_columns": [ + 4337 + ], + "where": [ + 4313 + ], + "__typename": [ + 85 + ] + }, + "player_sanctions_order_by": { + "created_at": [ + 3648 + ], + "deleted_at": [ + 3648 + ], + "e_sanction_type": [ + 1400 + ], + "id": [ + 3648 + ], + "player": [ + 4619 + ], + "player_steam_id": [ + 3648 + ], + "reason": [ + 3648 + ], + "remove_sanction_date": [ + 3648 + ], + "sanctioned_by": [ + 4619 + ], + "sanctioned_by_steam_id": [ + 3648 + ], + "type": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_sanctions_pk_columns_input": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "player_sanctions_select_column": {}, + "player_sanctions_set_input": { + "created_at": [ + 5243 + ], + "deleted_at": [ + 5243 + ], + "id": [ + 6672 + ], + "player_steam_id": [ + 312 + ], + "reason": [ + 85 + ], + "remove_sanction_date": [ + 5243 + ], + "sanctioned_by_steam_id": [ + 312 + ], + "type": [ + 1392 + ], + "__typename": [ + 85 + ] + }, + "player_sanctions_stddev_fields": { + "player_steam_id": [ + 32 + ], + "sanctioned_by_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_sanctions_stddev_order_by": { + "player_steam_id": [ + 3648 + ], + "sanctioned_by_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_sanctions_stddev_pop_fields": { + "player_steam_id": [ + 32 + ], + "sanctioned_by_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_sanctions_stddev_pop_order_by": { + "player_steam_id": [ + 3648 + ], + "sanctioned_by_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_sanctions_stddev_samp_fields": { + "player_steam_id": [ + 32 + ], + "sanctioned_by_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_sanctions_stddev_samp_order_by": { + "player_steam_id": [ + 3648 + ], + "sanctioned_by_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_sanctions_stream_cursor_input": { + "initial_value": [ + 4334 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "player_sanctions_stream_cursor_value_input": { + "created_at": [ + 5243 + ], + "deleted_at": [ + 5243 + ], + "id": [ + 6672 + ], + "player_steam_id": [ + 312 + ], + "reason": [ + 85 + ], + "remove_sanction_date": [ + 5243 + ], + "sanctioned_by_steam_id": [ + 312 + ], + "type": [ + 1392 + ], + "__typename": [ + 85 + ] + }, + "player_sanctions_sum_fields": { + "player_steam_id": [ + 312 + ], + "sanctioned_by_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "player_sanctions_sum_order_by": { + "player_steam_id": [ + 3648 + ], + "sanctioned_by_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_sanctions_update_column": {}, + "player_sanctions_updates": { + "_inc": [ + 4315 + ], + "_set": [ + 4326 + ], + "where": [ + 4313 + ], + "__typename": [ + 85 + ] + }, + "player_sanctions_var_pop_fields": { + "player_steam_id": [ + 32 + ], + "sanctioned_by_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_sanctions_var_pop_order_by": { + "player_steam_id": [ + 3648 + ], + "sanctioned_by_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_sanctions_var_samp_fields": { + "player_steam_id": [ + 32 + ], + "sanctioned_by_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_sanctions_var_samp_order_by": { + "player_steam_id": [ + 3648 + ], + "sanctioned_by_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_sanctions_variance_fields": { + "player_steam_id": [ + 32 + ], + "sanctioned_by_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_sanctions_variance_order_by": { + "player_steam_id": [ + 3648 + ], + "sanctioned_by_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats": { + "assists": [ + 312 + ], + "deaths": [ + 312 + ], + "headshot_percentage": [ + 2093 + ], + "headshots": [ + 312 + ], + "kills": [ + 312 + ], + "player": [ + 4606 + ], + "player_steam_id": [ + 312 + ], + "season": [ + 4706 + ], + "season_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_aggregate": { + "aggregate": [ + 4359 + ], + "nodes": [ + 4345 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_aggregate_bool_exp": { + "avg": [ + 4348 + ], + "corr": [ + 4349 + ], + "count": [ + 4351 + ], + "covar_samp": [ + 4352 + ], + "max": [ + 4354 + ], + "min": [ + 4355 + ], + "stddev_samp": [ + 4356 + ], + "sum": [ + 4357 + ], + "var_samp": [ + 4358 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_aggregate_bool_exp_avg": { + "arguments": [ + 4377 + ], + "distinct": [ + 6 + ], + "filter": [ + 4364 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_aggregate_bool_exp_corr": { + "arguments": [ + 4350 + ], + "distinct": [ + 6 + ], + "filter": [ + 4364 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_aggregate_bool_exp_corr_arguments": { + "X": [ + 4378 + ], + "Y": [ + 4378 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_aggregate_bool_exp_count": { + "arguments": [ + 4376 + ], + "distinct": [ + 6 + ], + "filter": [ + 4364 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_aggregate_bool_exp_covar_samp": { + "arguments": [ + 4353 + ], + "distinct": [ + 6 + ], + "filter": [ + 4364 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_aggregate_bool_exp_covar_samp_arguments": { + "X": [ + 4379 + ], + "Y": [ + 4379 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_aggregate_bool_exp_max": { + "arguments": [ + 4380 + ], + "distinct": [ + 6 + ], + "filter": [ + 4364 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_aggregate_bool_exp_min": { + "arguments": [ + 4381 + ], + "distinct": [ + 6 + ], + "filter": [ + 4364 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_aggregate_bool_exp_stddev_samp": { + "arguments": [ + 4382 + ], + "distinct": [ + 6 + ], + "filter": [ + 4364 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_aggregate_bool_exp_sum": { + "arguments": [ + 4383 + ], + "distinct": [ + 6 + ], + "filter": [ + 4364 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_aggregate_bool_exp_var_samp": { + "arguments": [ + 4384 + ], + "distinct": [ + 6 + ], + "filter": [ + 4364 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_aggregate_fields": { + "avg": [ + 4362 + ], + "count": [ + 41, + { + "columns": [ + 4376, + "[player_season_stats_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 4368 + ], + "min": [ + 4370 + ], + "stddev": [ + 4386 + ], + "stddev_pop": [ + 4388 + ], + "stddev_samp": [ + 4390 + ], + "sum": [ + 4394 + ], + "var_pop": [ + 4398 + ], + "var_samp": [ + 4400 + ], + "variance": [ + 4402 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_aggregate_order_by": { + "avg": [ + 4363 + ], + "count": [ + 3648 + ], + "max": [ + 4369 + ], + "min": [ + 4371 + ], + "stddev": [ + 4387 + ], + "stddev_pop": [ + 4389 + ], + "stddev_samp": [ + 4391 + ], + "sum": [ + 4395 + ], + "var_pop": [ + 4399 + ], + "var_samp": [ + 4401 + ], + "variance": [ + 4403 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_arr_rel_insert_input": { + "data": [ + 4367 + ], + "on_conflict": [ + 4373 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_avg_fields": { + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "headshot_percentage": [ + 32 + ], + "headshots": [ + 32 + ], + "kills": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_avg_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kills": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_bool_exp": { + "_and": [ + 4364 + ], + "_not": [ + 4364 + ], + "_or": [ + 4364 + ], + "assists": [ + 314 + ], + "deaths": [ + 314 + ], + "headshot_percentage": [ + 2094 + ], + "headshots": [ + 314 + ], + "kills": [ + 314 + ], + "player": [ + 4610 + ], + "player_steam_id": [ + 314 + ], + "season": [ + 4710 + ], + "season_id": [ + 6674 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_constraint": {}, + "player_season_stats_inc_input": { + "assists": [ + 312 + ], + "deaths": [ + 312 + ], + "headshot_percentage": [ + 2093 + ], + "headshots": [ + 312 + ], + "kills": [ + 312 + ], + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_insert_input": { + "assists": [ + 312 + ], + "deaths": [ + 312 + ], + "headshot_percentage": [ + 2093 + ], + "headshots": [ + 312 + ], + "kills": [ + 312 + ], + "player": [ + 4617 + ], + "player_steam_id": [ + 312 + ], + "season": [ + 4717 + ], + "season_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_max_fields": { + "assists": [ + 312 + ], + "deaths": [ + 312 + ], + "headshot_percentage": [ + 2093 + ], + "headshots": [ + 312 + ], + "kills": [ + 312 + ], + "player_steam_id": [ + 312 + ], + "season_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_max_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kills": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "season_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_min_fields": { + "assists": [ + 312 + ], + "deaths": [ + 312 + ], + "headshot_percentage": [ + 2093 + ], + "headshots": [ + 312 + ], + "kills": [ + 312 + ], + "player_steam_id": [ + 312 + ], + "season_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_min_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kills": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "season_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 4345 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_on_conflict": { + "constraint": [ + 4365 + ], + "update_columns": [ + 4396 + ], + "where": [ + 4364 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kills": [ + 3648 + ], + "player": [ + 4619 + ], + "player_steam_id": [ + 3648 + ], + "season": [ + 4719 + ], + "season_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_pk_columns_input": { + "player_steam_id": [ + 312 + ], + "season_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_select_column": {}, + "player_season_stats_select_column_player_season_stats_aggregate_bool_exp_avg_arguments_columns": {}, + "player_season_stats_select_column_player_season_stats_aggregate_bool_exp_corr_arguments_columns": {}, + "player_season_stats_select_column_player_season_stats_aggregate_bool_exp_covar_samp_arguments_columns": {}, + "player_season_stats_select_column_player_season_stats_aggregate_bool_exp_max_arguments_columns": {}, + "player_season_stats_select_column_player_season_stats_aggregate_bool_exp_min_arguments_columns": {}, + "player_season_stats_select_column_player_season_stats_aggregate_bool_exp_stddev_samp_arguments_columns": {}, + "player_season_stats_select_column_player_season_stats_aggregate_bool_exp_sum_arguments_columns": {}, + "player_season_stats_select_column_player_season_stats_aggregate_bool_exp_var_samp_arguments_columns": {}, + "player_season_stats_set_input": { + "assists": [ + 312 + ], + "deaths": [ + 312 + ], + "headshot_percentage": [ + 2093 + ], + "headshots": [ + 312 + ], + "kills": [ + 312 + ], + "player_steam_id": [ + 312 + ], + "season_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_stddev_fields": { + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "headshot_percentage": [ + 32 + ], + "headshots": [ + 32 + ], + "kills": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_stddev_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kills": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_stddev_pop_fields": { + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "headshot_percentage": [ + 32 + ], + "headshots": [ + 32 + ], + "kills": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_stddev_pop_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kills": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_stddev_samp_fields": { + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "headshot_percentage": [ + 32 + ], + "headshots": [ + 32 + ], + "kills": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_stddev_samp_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kills": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_stream_cursor_input": { + "initial_value": [ + 4393 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_stream_cursor_value_input": { + "assists": [ + 312 + ], + "deaths": [ + 312 + ], + "headshot_percentage": [ + 2093 + ], + "headshots": [ + 312 + ], + "kills": [ + 312 + ], + "player_steam_id": [ + 312 + ], + "season_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_sum_fields": { + "assists": [ + 312 + ], + "deaths": [ + 312 + ], + "headshot_percentage": [ + 2093 + ], + "headshots": [ + 312 + ], + "kills": [ + 312 + ], + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_sum_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kills": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_update_column": {}, + "player_season_stats_updates": { + "_inc": [ + 4366 + ], + "_set": [ + 4385 + ], + "where": [ + 4364 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_var_pop_fields": { + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "headshot_percentage": [ + 32 + ], + "headshots": [ + 32 + ], + "kills": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_var_pop_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kills": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_var_samp_fields": { + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "headshot_percentage": [ + 32 + ], + "headshots": [ + 32 + ], + "kills": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_var_samp_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kills": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_variance_fields": { + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "headshot_percentage": [ + 32 + ], + "headshots": [ + 32 + ], + "kills": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_season_stats_variance_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kills": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_stats": { + "assists": [ + 312 + ], + "deaths": [ + 312 + ], + "headshot_percentage": [ + 2093 + ], + "headshots": [ + 312 + ], + "kills": [ + 312 + ], + "player": [ + 4606 + ], + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "player_stats_aggregate": { + "aggregate": [ + 4406 + ], + "nodes": [ + 4404 + ], + "__typename": [ + 85 + ] + }, + "player_stats_aggregate_fields": { + "avg": [ + 4407 + ], + "count": [ + 41, + { + "columns": [ + 4419, + "[player_stats_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 4412 + ], + "min": [ + 4413 + ], + "stddev": [ + 4421 + ], + "stddev_pop": [ + 4422 + ], + "stddev_samp": [ + 4423 + ], + "sum": [ + 4426 + ], + "var_pop": [ + 4429 + ], + "var_samp": [ + 4430 + ], + "variance": [ + 4431 + ], + "__typename": [ + 85 + ] + }, + "player_stats_avg_fields": { + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "headshot_percentage": [ + 32 + ], + "headshots": [ + 32 + ], + "kills": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_stats_bool_exp": { + "_and": [ + 4408 + ], + "_not": [ + 4408 + ], + "_or": [ + 4408 + ], + "assists": [ + 314 + ], + "deaths": [ + 314 + ], + "headshot_percentage": [ + 2094 + ], + "headshots": [ + 314 + ], + "kills": [ + 314 + ], + "player": [ + 4610 + ], + "player_steam_id": [ + 314 + ], + "__typename": [ + 85 + ] + }, + "player_stats_constraint": {}, + "player_stats_inc_input": { + "assists": [ + 312 + ], + "deaths": [ + 312 + ], + "headshot_percentage": [ + 2093 + ], + "headshots": [ + 312 + ], + "kills": [ + 312 + ], + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "player_stats_insert_input": { + "assists": [ + 312 + ], + "deaths": [ + 312 + ], + "headshot_percentage": [ + 2093 + ], + "headshots": [ + 312 + ], + "kills": [ + 312 + ], + "player": [ + 4617 + ], + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "player_stats_max_fields": { + "assists": [ + 312 + ], + "deaths": [ + 312 + ], + "headshot_percentage": [ + 2093 + ], + "headshots": [ + 312 + ], + "kills": [ + 312 + ], + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "player_stats_min_fields": { + "assists": [ + 312 + ], + "deaths": [ + 312 + ], + "headshot_percentage": [ + 2093 + ], + "headshots": [ + 312 + ], + "kills": [ + 312 + ], + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "player_stats_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 4404 + ], + "__typename": [ + 85 + ] + }, + "player_stats_obj_rel_insert_input": { + "data": [ + 4411 + ], + "on_conflict": [ + 4416 + ], + "__typename": [ + 85 + ] + }, + "player_stats_on_conflict": { + "constraint": [ + 4409 + ], + "update_columns": [ + 4427 + ], + "where": [ + 4408 + ], + "__typename": [ + 85 + ] + }, + "player_stats_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kills": [ + 3648 + ], + "player": [ + 4619 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_stats_pk_columns_input": { + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "player_stats_select_column": {}, + "player_stats_set_input": { + "assists": [ + 312 + ], + "deaths": [ + 312 + ], + "headshot_percentage": [ + 2093 + ], + "headshots": [ + 312 + ], + "kills": [ + 312 + ], + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "player_stats_stddev_fields": { + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "headshot_percentage": [ + 32 + ], + "headshots": [ + 32 + ], + "kills": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_stats_stddev_pop_fields": { + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "headshot_percentage": [ + 32 + ], + "headshots": [ + 32 + ], + "kills": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_stats_stddev_samp_fields": { + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "headshot_percentage": [ + 32 + ], + "headshots": [ + 32 + ], + "kills": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_stats_stream_cursor_input": { + "initial_value": [ + 4425 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "player_stats_stream_cursor_value_input": { + "assists": [ + 312 + ], + "deaths": [ + 312 + ], + "headshot_percentage": [ + 2093 + ], + "headshots": [ + 312 + ], + "kills": [ + 312 + ], + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "player_stats_sum_fields": { + "assists": [ + 312 + ], + "deaths": [ + 312 + ], + "headshot_percentage": [ + 2093 + ], + "headshots": [ + 312 + ], + "kills": [ + 312 + ], + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "player_stats_update_column": {}, + "player_stats_updates": { + "_inc": [ + 4410 + ], + "_set": [ + 4420 + ], + "where": [ + 4408 + ], + "__typename": [ + 85 + ] + }, + "player_stats_var_pop_fields": { + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "headshot_percentage": [ + 32 + ], + "headshots": [ + 32 + ], + "kills": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_stats_var_samp_fields": { + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "headshot_percentage": [ + 32 + ], + "headshots": [ + 32 + ], + "kills": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_stats_variance_fields": { + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "headshot_percentage": [ + 32 + ], + "headshots": [ + 32 + ], + "kills": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_steam_bot_friend": { + "bot_steam_account_id": [ + 6672 + ], + "bot_steamid64": [ + 312 + ], + "created_at": [ + 5243 + ], + "friended_at": [ + 5243 + ], + "last_presence_state": [ + 2439, + { + "path": [ + 85 + ] + } + ], + "player": [ + 4606 + ], + "status": [ + 85 + ], + "steam_id": [ + 312 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "player_steam_bot_friend_aggregate": { + "aggregate": [ + 4434 + ], + "nodes": [ + 4432 + ], + "__typename": [ + 85 + ] + }, + "player_steam_bot_friend_aggregate_fields": { + "avg": [ + 4436 + ], + "count": [ + 41, + { + "columns": [ + 4451, + "[player_steam_bot_friend_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 4444 + ], + "min": [ + 4445 + ], + "stddev": [ + 4453 + ], + "stddev_pop": [ + 4454 + ], + "stddev_samp": [ + 4455 + ], + "sum": [ + 4458 + ], + "var_pop": [ + 4461 + ], + "var_samp": [ + 4462 + ], + "variance": [ + 4463 + ], + "__typename": [ + 85 + ] + }, + "player_steam_bot_friend_append_input": { + "last_presence_state": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "player_steam_bot_friend_avg_fields": { + "bot_steamid64": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_steam_bot_friend_bool_exp": { + "_and": [ + 4437 + ], + "_not": [ + 4437 + ], + "_or": [ + 4437 + ], + "bot_steam_account_id": [ + 6674 + ], + "bot_steamid64": [ + 314 + ], + "created_at": [ + 5244 + ], + "friended_at": [ + 5244 + ], + "last_presence_state": [ + 2441 + ], + "player": [ + 4610 + ], + "status": [ + 87 + ], + "steam_id": [ + 314 + ], + "updated_at": [ + 5244 + ], + "__typename": [ + 85 + ] + }, + "player_steam_bot_friend_constraint": {}, + "player_steam_bot_friend_delete_at_path_input": { + "last_presence_state": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "player_steam_bot_friend_delete_elem_input": { + "last_presence_state": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "player_steam_bot_friend_delete_key_input": { + "last_presence_state": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "player_steam_bot_friend_inc_input": { + "bot_steamid64": [ + 312 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "player_steam_bot_friend_insert_input": { + "bot_steam_account_id": [ + 6672 + ], + "bot_steamid64": [ + 312 + ], + "created_at": [ + 5243 + ], + "friended_at": [ + 5243 + ], + "last_presence_state": [ + 2439 + ], + "player": [ + 4617 + ], + "status": [ + 85 + ], + "steam_id": [ + 312 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "player_steam_bot_friend_max_fields": { + "bot_steam_account_id": [ + 6672 + ], + "bot_steamid64": [ + 312 + ], + "created_at": [ + 5243 + ], + "friended_at": [ + 5243 + ], + "status": [ + 85 + ], + "steam_id": [ + 312 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "player_steam_bot_friend_min_fields": { + "bot_steam_account_id": [ + 6672 + ], + "bot_steamid64": [ + 312 + ], + "created_at": [ + 5243 + ], + "friended_at": [ + 5243 + ], + "status": [ + 85 + ], + "steam_id": [ + 312 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "player_steam_bot_friend_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 4432 + ], + "__typename": [ + 85 + ] + }, + "player_steam_bot_friend_on_conflict": { + "constraint": [ + 4438 + ], + "update_columns": [ + 4459 + ], + "where": [ + 4437 + ], + "__typename": [ + 85 + ] + }, + "player_steam_bot_friend_order_by": { + "bot_steam_account_id": [ + 3648 + ], + "bot_steamid64": [ + 3648 + ], + "created_at": [ + 3648 + ], + "friended_at": [ + 3648 + ], + "last_presence_state": [ + 3648 + ], + "player": [ + 4619 + ], + "status": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "updated_at": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_steam_bot_friend_pk_columns_input": { + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "player_steam_bot_friend_prepend_input": { + "last_presence_state": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "player_steam_bot_friend_select_column": {}, + "player_steam_bot_friend_set_input": { + "bot_steam_account_id": [ + 6672 + ], + "bot_steamid64": [ + 312 + ], + "created_at": [ + 5243 + ], + "friended_at": [ + 5243 + ], + "last_presence_state": [ + 2439 + ], + "status": [ + 85 + ], + "steam_id": [ + 312 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "player_steam_bot_friend_stddev_fields": { + "bot_steamid64": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_steam_bot_friend_stddev_pop_fields": { + "bot_steamid64": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_steam_bot_friend_stddev_samp_fields": { + "bot_steamid64": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_steam_bot_friend_stream_cursor_input": { + "initial_value": [ + 4457 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "player_steam_bot_friend_stream_cursor_value_input": { + "bot_steam_account_id": [ + 6672 + ], + "bot_steamid64": [ + 312 + ], + "created_at": [ + 5243 + ], + "friended_at": [ + 5243 + ], + "last_presence_state": [ + 2439 + ], + "status": [ + 85 + ], + "steam_id": [ + 312 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "player_steam_bot_friend_sum_fields": { + "bot_steamid64": [ + 312 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "player_steam_bot_friend_update_column": {}, + "player_steam_bot_friend_updates": { + "_append": [ + 4435 + ], + "_delete_at_path": [ + 4439 + ], + "_delete_elem": [ + 4440 + ], + "_delete_key": [ + 4441 + ], + "_inc": [ + 4442 + ], + "_prepend": [ + 4450 + ], + "_set": [ + 4452 + ], + "where": [ + 4437 + ], + "__typename": [ + 85 + ] + }, + "player_steam_bot_friend_var_pop_fields": { + "bot_steamid64": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_steam_bot_friend_var_samp_fields": { + "bot_steamid64": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_steam_bot_friend_variance_fields": { + "bot_steamid64": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_steam_match_auth": { + "auth_code": [ + 85 + ], + "created_at": [ + 5243 + ], + "last_error": [ + 85 + ], + "last_known_share_code": [ + 85 + ], + "last_polled_at": [ + 5243 + ], + "player": [ + 4606 + ], + "steam_id": [ + 312 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "player_steam_match_auth_aggregate": { + "aggregate": [ + 4466 + ], + "nodes": [ + 4464 + ], + "__typename": [ + 85 + ] + }, + "player_steam_match_auth_aggregate_fields": { + "avg": [ + 4467 + ], + "count": [ + 41, + { + "columns": [ + 4478, + "[player_steam_match_auth_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 4472 + ], + "min": [ + 4473 + ], + "stddev": [ + 4480 + ], + "stddev_pop": [ + 4481 + ], + "stddev_samp": [ + 4482 + ], + "sum": [ + 4485 + ], + "var_pop": [ + 4488 + ], + "var_samp": [ + 4489 + ], + "variance": [ + 4490 + ], + "__typename": [ + 85 + ] + }, + "player_steam_match_auth_avg_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_steam_match_auth_bool_exp": { + "_and": [ + 4468 + ], + "_not": [ + 4468 + ], + "_or": [ + 4468 + ], + "auth_code": [ + 87 + ], + "created_at": [ + 5244 + ], + "last_error": [ + 87 + ], + "last_known_share_code": [ + 87 + ], + "last_polled_at": [ + 5244 + ], + "player": [ + 4610 + ], + "steam_id": [ + 314 + ], + "updated_at": [ + 5244 + ], + "__typename": [ + 85 + ] + }, + "player_steam_match_auth_constraint": {}, + "player_steam_match_auth_inc_input": { + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "player_steam_match_auth_insert_input": { + "auth_code": [ + 85 + ], + "created_at": [ + 5243 + ], + "last_error": [ + 85 + ], + "last_known_share_code": [ + 85 + ], + "last_polled_at": [ + 5243 + ], + "player": [ + 4617 + ], + "steam_id": [ + 312 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "player_steam_match_auth_max_fields": { + "auth_code": [ + 85 + ], + "created_at": [ + 5243 + ], + "last_error": [ + 85 + ], + "last_known_share_code": [ + 85 + ], + "last_polled_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "player_steam_match_auth_min_fields": { + "auth_code": [ + 85 + ], + "created_at": [ + 5243 + ], + "last_error": [ + 85 + ], + "last_known_share_code": [ + 85 + ], + "last_polled_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "player_steam_match_auth_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 4464 + ], + "__typename": [ + 85 + ] + }, + "player_steam_match_auth_on_conflict": { + "constraint": [ + 4469 + ], + "update_columns": [ + 4486 + ], + "where": [ + 4468 + ], + "__typename": [ + 85 + ] + }, + "player_steam_match_auth_order_by": { + "auth_code": [ + 3648 + ], + "created_at": [ + 3648 + ], + "last_error": [ + 3648 + ], + "last_known_share_code": [ + 3648 + ], + "last_polled_at": [ + 3648 + ], + "player": [ + 4619 + ], + "steam_id": [ + 3648 + ], + "updated_at": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_steam_match_auth_pk_columns_input": { + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "player_steam_match_auth_select_column": {}, + "player_steam_match_auth_set_input": { + "auth_code": [ + 85 + ], + "created_at": [ + 5243 + ], + "last_error": [ + 85 + ], + "last_known_share_code": [ + 85 + ], + "last_polled_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "player_steam_match_auth_stddev_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_steam_match_auth_stddev_pop_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_steam_match_auth_stddev_samp_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_steam_match_auth_stream_cursor_input": { + "initial_value": [ + 4484 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "player_steam_match_auth_stream_cursor_value_input": { + "auth_code": [ + 85 + ], + "created_at": [ + 5243 + ], + "last_error": [ + 85 + ], + "last_known_share_code": [ + 85 + ], + "last_polled_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "player_steam_match_auth_sum_fields": { + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "player_steam_match_auth_update_column": {}, + "player_steam_match_auth_updates": { + "_inc": [ + 4470 + ], + "_set": [ + 4479 + ], + "where": [ + 4468 + ], + "__typename": [ + 85 + ] + }, + "player_steam_match_auth_var_pop_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_steam_match_auth_var_samp_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_steam_match_auth_variance_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_unused_utility": { + "deleted_at": [ + 5243 + ], + "match": [ + 3432 + ], + "match_id": [ + 6672 + ], + "match_map": [ + 3248 + ], + "match_map_id": [ + 6672 + ], + "player": [ + 4606 + ], + "player_steam_id": [ + 312 + ], + "round": [ + 41 + ], + "unused": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "player_unused_utility_aggregate": { + "aggregate": [ + 4495 + ], + "nodes": [ + 4491 + ], + "__typename": [ + 85 + ] + }, + "player_unused_utility_aggregate_bool_exp": { + "count": [ + 4494 + ], + "__typename": [ + 85 + ] + }, + "player_unused_utility_aggregate_bool_exp_count": { + "arguments": [ + 4512 + ], + "distinct": [ + 6 + ], + "filter": [ + 4500 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "player_unused_utility_aggregate_fields": { + "avg": [ + 4498 + ], + "count": [ + 41, + { + "columns": [ + 4512, + "[player_unused_utility_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 4504 + ], + "min": [ + 4506 + ], + "stddev": [ + 4514 + ], + "stddev_pop": [ + 4516 + ], + "stddev_samp": [ + 4518 + ], + "sum": [ + 4522 + ], + "var_pop": [ + 4526 + ], + "var_samp": [ + 4528 + ], + "variance": [ + 4530 + ], + "__typename": [ + 85 + ] + }, + "player_unused_utility_aggregate_order_by": { + "avg": [ + 4499 + ], + "count": [ + 3648 + ], + "max": [ + 4505 + ], + "min": [ + 4507 + ], + "stddev": [ + 4515 + ], + "stddev_pop": [ + 4517 + ], + "stddev_samp": [ + 4519 + ], + "sum": [ + 4523 + ], + "var_pop": [ + 4527 + ], + "var_samp": [ + 4529 + ], + "variance": [ + 4531 + ], + "__typename": [ + 85 + ] + }, + "player_unused_utility_arr_rel_insert_input": { + "data": [ + 4503 + ], + "on_conflict": [ + 4509 + ], + "__typename": [ + 85 + ] + }, + "player_unused_utility_avg_fields": { + "player_steam_id": [ + 32 + ], + "round": [ + 32 + ], + "unused": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_unused_utility_avg_order_by": { + "player_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "unused": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_unused_utility_bool_exp": { + "_and": [ + 4500 + ], + "_not": [ + 4500 + ], + "_or": [ + 4500 + ], + "deleted_at": [ + 5244 + ], + "match": [ + 3443 + ], + "match_id": [ + 6674 + ], + "match_map": [ + 3257 + ], + "match_map_id": [ + 6674 + ], + "player": [ + 4610 + ], + "player_steam_id": [ + 314 + ], + "round": [ + 42 + ], + "unused": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "player_unused_utility_constraint": {}, + "player_unused_utility_inc_input": { + "player_steam_id": [ + 312 + ], + "round": [ + 41 + ], + "unused": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "player_unused_utility_insert_input": { + "deleted_at": [ + 5243 + ], + "match": [ + 3452 + ], + "match_id": [ + 6672 + ], + "match_map": [ + 3266 + ], + "match_map_id": [ + 6672 + ], + "player": [ + 4617 + ], + "player_steam_id": [ + 312 + ], + "round": [ + 41 + ], + "unused": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "player_unused_utility_max_fields": { + "deleted_at": [ + 5243 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "player_steam_id": [ + 312 + ], + "round": [ + 41 + ], + "unused": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "player_unused_utility_max_order_by": { + "deleted_at": [ + 3648 + ], + "match_id": [ + 3648 + ], + "match_map_id": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "unused": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_unused_utility_min_fields": { + "deleted_at": [ + 5243 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "player_steam_id": [ + 312 + ], + "round": [ + 41 + ], + "unused": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "player_unused_utility_min_order_by": { + "deleted_at": [ + 3648 + ], + "match_id": [ + 3648 + ], + "match_map_id": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "unused": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_unused_utility_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 4491 + ], + "__typename": [ + 85 + ] + }, + "player_unused_utility_on_conflict": { + "constraint": [ + 4501 + ], + "update_columns": [ + 4524 + ], + "where": [ + 4500 + ], + "__typename": [ + 85 + ] + }, + "player_unused_utility_order_by": { + "deleted_at": [ + 3648 + ], + "match": [ + 3454 + ], + "match_id": [ + 3648 + ], + "match_map": [ + 3268 + ], + "match_map_id": [ + 3648 + ], + "player": [ + 4619 + ], + "player_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "unused": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_unused_utility_pk_columns_input": { + "match_map_id": [ + 6672 + ], + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "player_unused_utility_select_column": {}, + "player_unused_utility_set_input": { + "deleted_at": [ + 5243 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "player_steam_id": [ + 312 + ], + "round": [ + 41 + ], + "unused": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "player_unused_utility_stddev_fields": { + "player_steam_id": [ + 32 + ], + "round": [ + 32 + ], + "unused": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_unused_utility_stddev_order_by": { + "player_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "unused": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_unused_utility_stddev_pop_fields": { + "player_steam_id": [ + 32 + ], + "round": [ + 32 + ], + "unused": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_unused_utility_stddev_pop_order_by": { + "player_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "unused": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_unused_utility_stddev_samp_fields": { + "player_steam_id": [ + 32 + ], + "round": [ + 32 + ], + "unused": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_unused_utility_stddev_samp_order_by": { + "player_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "unused": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_unused_utility_stream_cursor_input": { + "initial_value": [ + 4521 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "player_unused_utility_stream_cursor_value_input": { + "deleted_at": [ + 5243 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "player_steam_id": [ + 312 + ], + "round": [ + 41 + ], + "unused": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "player_unused_utility_sum_fields": { + "player_steam_id": [ + 312 + ], + "round": [ + 41 + ], + "unused": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "player_unused_utility_sum_order_by": { + "player_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "unused": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_unused_utility_update_column": {}, + "player_unused_utility_updates": { + "_inc": [ + 4502 + ], + "_set": [ + 4513 + ], + "where": [ + 4500 + ], + "__typename": [ + 85 + ] + }, + "player_unused_utility_var_pop_fields": { + "player_steam_id": [ + 32 + ], + "round": [ + 32 + ], + "unused": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_unused_utility_var_pop_order_by": { + "player_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "unused": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_unused_utility_var_samp_fields": { + "player_steam_id": [ + 32 + ], + "round": [ + 32 + ], + "unused": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_unused_utility_var_samp_order_by": { + "player_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "unused": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_unused_utility_variance_fields": { + "player_steam_id": [ + 32 + ], + "round": [ + 32 + ], + "unused": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_unused_utility_variance_order_by": { + "player_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "unused": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_utility": { + "attacker_location_coordinates": [ + 85 + ], + "attacker_steam_id": [ + 312 + ], + "deleted_at": [ + 5243 + ], + "match": [ + 3432 + ], + "match_id": [ + 6672 + ], + "match_map": [ + 3248 + ], + "match_map_id": [ + 6672 + ], + "player": [ + 4606 + ], + "round": [ + 41 + ], + "time": [ + 5243 + ], + "type": [ + 1759 + ], + "__typename": [ + 85 + ] + }, + "player_utility_aggregate": { + "aggregate": [ + 4536 + ], + "nodes": [ + 4532 + ], + "__typename": [ + 85 + ] + }, + "player_utility_aggregate_bool_exp": { + "count": [ + 4535 + ], + "__typename": [ + 85 + ] + }, + "player_utility_aggregate_bool_exp_count": { + "arguments": [ + 4553 + ], + "distinct": [ + 6 + ], + "filter": [ + 4541 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "player_utility_aggregate_fields": { + "avg": [ + 4539 + ], + "count": [ + 41, + { + "columns": [ + 4553, + "[player_utility_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 4545 + ], + "min": [ + 4547 + ], + "stddev": [ + 4555 + ], + "stddev_pop": [ + 4557 + ], + "stddev_samp": [ + 4559 + ], + "sum": [ + 4563 + ], + "var_pop": [ + 4567 + ], + "var_samp": [ + 4569 + ], + "variance": [ + 4571 + ], + "__typename": [ + 85 + ] + }, + "player_utility_aggregate_order_by": { + "avg": [ + 4540 + ], + "count": [ + 3648 + ], + "max": [ + 4546 + ], + "min": [ + 4548 + ], + "stddev": [ + 4556 + ], + "stddev_pop": [ + 4558 + ], + "stddev_samp": [ + 4560 + ], + "sum": [ + 4564 + ], + "var_pop": [ + 4568 + ], + "var_samp": [ + 4570 + ], + "variance": [ + 4572 + ], + "__typename": [ + 85 + ] + }, + "player_utility_arr_rel_insert_input": { + "data": [ + 4544 + ], + "on_conflict": [ + 4550 + ], + "__typename": [ + 85 + ] + }, + "player_utility_avg_fields": { + "attacker_steam_id": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_utility_avg_order_by": { + "attacker_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_utility_bool_exp": { + "_and": [ + 4541 + ], + "_not": [ + 4541 + ], + "_or": [ + 4541 + ], + "attacker_location_coordinates": [ + 87 + ], + "attacker_steam_id": [ + 314 + ], + "deleted_at": [ + 5244 + ], + "match": [ + 3443 + ], + "match_id": [ + 6674 + ], + "match_map": [ + 3257 + ], + "match_map_id": [ + 6674 + ], + "player": [ + 4610 + ], + "round": [ + 42 + ], + "time": [ + 5244 + ], + "type": [ + 1760 + ], + "__typename": [ + 85 + ] + }, + "player_utility_constraint": {}, + "player_utility_inc_input": { + "attacker_steam_id": [ + 312 + ], + "round": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "player_utility_insert_input": { + "attacker_location_coordinates": [ + 85 + ], + "attacker_steam_id": [ + 312 + ], + "deleted_at": [ + 5243 + ], + "match": [ + 3452 + ], + "match_id": [ + 6672 + ], + "match_map": [ + 3266 + ], + "match_map_id": [ + 6672 + ], + "player": [ + 4617 + ], + "round": [ + 41 + ], + "time": [ + 5243 + ], + "type": [ + 1759 + ], + "__typename": [ + 85 + ] + }, + "player_utility_max_fields": { + "attacker_location_coordinates": [ + 85 + ], + "attacker_steam_id": [ + 312 + ], + "deleted_at": [ + 5243 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "round": [ + 41 + ], + "time": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "player_utility_max_order_by": { + "attacker_location_coordinates": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "deleted_at": [ + 3648 + ], + "match_id": [ + 3648 + ], + "match_map_id": [ + 3648 + ], + "round": [ + 3648 + ], + "time": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_utility_min_fields": { + "attacker_location_coordinates": [ + 85 + ], + "attacker_steam_id": [ + 312 + ], + "deleted_at": [ + 5243 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "round": [ + 41 + ], + "time": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "player_utility_min_order_by": { + "attacker_location_coordinates": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "deleted_at": [ + 3648 + ], + "match_id": [ + 3648 + ], + "match_map_id": [ + 3648 + ], + "round": [ + 3648 + ], + "time": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_utility_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 4532 + ], + "__typename": [ + 85 + ] + }, + "player_utility_on_conflict": { + "constraint": [ + 4542 + ], + "update_columns": [ + 4565 + ], + "where": [ + 4541 + ], + "__typename": [ + 85 + ] + }, + "player_utility_order_by": { + "attacker_location_coordinates": [ + 3648 + ], + "attacker_steam_id": [ + 3648 + ], + "deleted_at": [ + 3648 + ], + "match": [ + 3454 + ], + "match_id": [ + 3648 + ], + "match_map": [ + 3268 + ], + "match_map_id": [ + 3648 + ], + "player": [ + 4619 + ], + "round": [ + 3648 + ], + "time": [ + 3648 + ], + "type": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_utility_pk_columns_input": { + "attacker_steam_id": [ + 312 + ], + "match_map_id": [ + 6672 + ], + "time": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "player_utility_select_column": {}, + "player_utility_set_input": { + "attacker_location_coordinates": [ + 85 + ], + "attacker_steam_id": [ + 312 + ], + "deleted_at": [ + 5243 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "round": [ + 41 + ], + "time": [ + 5243 + ], + "type": [ + 1759 + ], + "__typename": [ + 85 + ] + }, + "player_utility_stddev_fields": { + "attacker_steam_id": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_utility_stddev_order_by": { + "attacker_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_utility_stddev_pop_fields": { + "attacker_steam_id": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_utility_stddev_pop_order_by": { + "attacker_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_utility_stddev_samp_fields": { + "attacker_steam_id": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_utility_stddev_samp_order_by": { + "attacker_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_utility_stream_cursor_input": { + "initial_value": [ + 4562 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "player_utility_stream_cursor_value_input": { + "attacker_location_coordinates": [ + 85 + ], + "attacker_steam_id": [ + 312 + ], + "deleted_at": [ + 5243 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "round": [ + 41 + ], + "time": [ + 5243 + ], + "type": [ + 1759 + ], + "__typename": [ + 85 + ] + }, + "player_utility_sum_fields": { + "attacker_steam_id": [ + 312 + ], + "round": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "player_utility_sum_order_by": { + "attacker_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_utility_update_column": {}, + "player_utility_updates": { + "_inc": [ + 4543 + ], + "_set": [ + 4554 + ], + "where": [ + 4541 + ], + "__typename": [ + 85 + ] + }, + "player_utility_var_pop_fields": { + "attacker_steam_id": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_utility_var_pop_order_by": { + "attacker_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_utility_var_samp_fields": { + "attacker_steam_id": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_utility_var_samp_order_by": { + "attacker_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_utility_variance_fields": { + "attacker_steam_id": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_utility_variance_order_by": { + "attacker_steam_id": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_weapon_stats_v": { + "first_bullet_hits": [ + 41 + ], + "first_bullet_shots": [ + 41 + ], + "hits": [ + 41 + ], + "hits_spotted": [ + 41 + ], + "match_id": [ + 6672 + ], + "shots": [ + 41 + ], + "shots_spotted": [ + 41 + ], + "steam_id": [ + 312 + ], + "weapon_class": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "player_weapon_stats_v_aggregate": { + "aggregate": [ + 4577 + ], + "nodes": [ + 4573 + ], + "__typename": [ + 85 + ] + }, + "player_weapon_stats_v_aggregate_bool_exp": { + "count": [ + 4576 + ], + "__typename": [ + 85 + ] + }, + "player_weapon_stats_v_aggregate_bool_exp_count": { + "arguments": [ + 4589 + ], + "distinct": [ + 6 + ], + "filter": [ + 4582 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "player_weapon_stats_v_aggregate_fields": { + "avg": [ + 4580 + ], + "count": [ + 41, + { + "columns": [ + 4589, + "[player_weapon_stats_v_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 4584 + ], + "min": [ + 4586 + ], + "stddev": [ + 4590 + ], + "stddev_pop": [ + 4592 + ], + "stddev_samp": [ + 4594 + ], + "sum": [ + 4598 + ], + "var_pop": [ + 4600 + ], + "var_samp": [ + 4602 + ], + "variance": [ + 4604 + ], + "__typename": [ + 85 + ] + }, + "player_weapon_stats_v_aggregate_order_by": { + "avg": [ + 4581 + ], + "count": [ + 3648 + ], + "max": [ + 4585 + ], + "min": [ + 4587 + ], + "stddev": [ + 4591 + ], + "stddev_pop": [ + 4593 + ], + "stddev_samp": [ + 4595 + ], + "sum": [ + 4599 + ], + "var_pop": [ + 4601 + ], + "var_samp": [ + 4603 + ], + "variance": [ + 4605 + ], + "__typename": [ + 85 + ] + }, + "player_weapon_stats_v_arr_rel_insert_input": { + "data": [ + 4583 + ], + "__typename": [ + 85 + ] + }, + "player_weapon_stats_v_avg_fields": { + "first_bullet_hits": [ + 32 + ], + "first_bullet_shots": [ + 32 + ], + "hits": [ + 32 + ], + "hits_spotted": [ + 32 + ], + "shots": [ + 32 + ], + "shots_spotted": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_weapon_stats_v_avg_order_by": { + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_spotted": [ + 3648 + ], + "shots": [ + 3648 + ], + "shots_spotted": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_weapon_stats_v_bool_exp": { + "_and": [ + 4582 + ], + "_not": [ + 4582 + ], + "_or": [ + 4582 + ], + "first_bullet_hits": [ + 42 + ], + "first_bullet_shots": [ + 42 + ], + "hits": [ + 42 + ], + "hits_spotted": [ + 42 + ], + "match_id": [ + 6674 + ], + "shots": [ + 42 + ], + "shots_spotted": [ + 42 + ], + "steam_id": [ + 314 + ], + "weapon_class": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "player_weapon_stats_v_insert_input": { + "first_bullet_hits": [ + 41 + ], + "first_bullet_shots": [ + 41 + ], + "hits": [ + 41 + ], + "hits_spotted": [ + 41 + ], + "match_id": [ + 6672 + ], + "shots": [ + 41 + ], + "shots_spotted": [ + 41 + ], + "steam_id": [ + 312 + ], + "weapon_class": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "player_weapon_stats_v_max_fields": { + "first_bullet_hits": [ + 41 + ], + "first_bullet_shots": [ + 41 + ], + "hits": [ + 41 + ], + "hits_spotted": [ + 41 + ], + "match_id": [ + 6672 + ], + "shots": [ + 41 + ], + "shots_spotted": [ + 41 + ], + "steam_id": [ + 312 + ], + "weapon_class": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "player_weapon_stats_v_max_order_by": { + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_spotted": [ + 3648 + ], + "match_id": [ + 3648 + ], + "shots": [ + 3648 + ], + "shots_spotted": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "weapon_class": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_weapon_stats_v_min_fields": { + "first_bullet_hits": [ + 41 + ], + "first_bullet_shots": [ + 41 + ], + "hits": [ + 41 + ], + "hits_spotted": [ + 41 + ], + "match_id": [ + 6672 + ], + "shots": [ + 41 + ], + "shots_spotted": [ + 41 + ], + "steam_id": [ + 312 + ], + "weapon_class": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "player_weapon_stats_v_min_order_by": { + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_spotted": [ + 3648 + ], + "match_id": [ + 3648 + ], + "shots": [ + 3648 + ], + "shots_spotted": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "weapon_class": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_weapon_stats_v_order_by": { + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_spotted": [ + 3648 + ], + "match_id": [ + 3648 + ], + "shots": [ + 3648 + ], + "shots_spotted": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "weapon_class": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_weapon_stats_v_select_column": {}, + "player_weapon_stats_v_stddev_fields": { + "first_bullet_hits": [ + 32 + ], + "first_bullet_shots": [ + 32 + ], + "hits": [ + 32 + ], + "hits_spotted": [ + 32 + ], + "shots": [ + 32 + ], + "shots_spotted": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_weapon_stats_v_stddev_order_by": { + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_spotted": [ + 3648 + ], + "shots": [ + 3648 + ], + "shots_spotted": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_weapon_stats_v_stddev_pop_fields": { + "first_bullet_hits": [ + 32 + ], + "first_bullet_shots": [ + 32 + ], + "hits": [ + 32 + ], + "hits_spotted": [ + 32 + ], + "shots": [ + 32 + ], + "shots_spotted": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_weapon_stats_v_stddev_pop_order_by": { + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_spotted": [ + 3648 + ], + "shots": [ + 3648 + ], + "shots_spotted": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_weapon_stats_v_stddev_samp_fields": { + "first_bullet_hits": [ + 32 + ], + "first_bullet_shots": [ + 32 + ], + "hits": [ + 32 + ], + "hits_spotted": [ + 32 + ], + "shots": [ + 32 + ], + "shots_spotted": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_weapon_stats_v_stddev_samp_order_by": { + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_spotted": [ + 3648 + ], + "shots": [ + 3648 + ], + "shots_spotted": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_weapon_stats_v_stream_cursor_input": { + "initial_value": [ + 4597 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "player_weapon_stats_v_stream_cursor_value_input": { + "first_bullet_hits": [ + 41 + ], + "first_bullet_shots": [ + 41 + ], + "hits": [ + 41 + ], + "hits_spotted": [ + 41 + ], + "match_id": [ + 6672 + ], + "shots": [ + 41 + ], + "shots_spotted": [ + 41 + ], + "steam_id": [ + 312 + ], + "weapon_class": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "player_weapon_stats_v_sum_fields": { + "first_bullet_hits": [ + 41 + ], + "first_bullet_shots": [ + 41 + ], + "hits": [ + 41 + ], + "hits_spotted": [ + 41 + ], + "shots": [ + 41 + ], + "shots_spotted": [ + 41 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "player_weapon_stats_v_sum_order_by": { + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_spotted": [ + 3648 + ], + "shots": [ + 3648 + ], + "shots_spotted": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_weapon_stats_v_var_pop_fields": { + "first_bullet_hits": [ + 32 + ], + "first_bullet_shots": [ + 32 + ], + "hits": [ + 32 + ], + "hits_spotted": [ + 32 + ], + "shots": [ + 32 + ], + "shots_spotted": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_weapon_stats_v_var_pop_order_by": { + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_spotted": [ + 3648 + ], + "shots": [ + 3648 + ], + "shots_spotted": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_weapon_stats_v_var_samp_fields": { + "first_bullet_hits": [ + 32 + ], + "first_bullet_shots": [ + 32 + ], + "hits": [ + 32 + ], + "hits_spotted": [ + 32 + ], + "shots": [ + 32 + ], + "shots_spotted": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_weapon_stats_v_var_samp_order_by": { + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_spotted": [ + 3648 + ], + "shots": [ + 3648 + ], + "shots_spotted": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "player_weapon_stats_v_variance_fields": { + "first_bullet_hits": [ + 32 + ], + "first_bullet_shots": [ + 32 + ], + "hits": [ + 32 + ], + "hits_spotted": [ + 32 + ], + "shots": [ + 32 + ], + "shots_spotted": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "player_weapon_stats_v_variance_order_by": { + "first_bullet_hits": [ + 3648 + ], + "first_bullet_shots": [ + 3648 + ], + "hits": [ + 3648 + ], + "hits_spotted": [ + 3648 + ], + "shots": [ + 3648 + ], + "shots_spotted": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "players": { + "abandoned_matches": [ + 174, + { + "distinct_on": [ + 195, + "[abandoned_matches_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 193, + "[abandoned_matches_order_by!]" + ], + "where": [ + 183 + ] + } + ], + "abandoned_matches_aggregate": [ + 175, + { + "distinct_on": [ + 195, + "[abandoned_matches_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 193, + "[abandoned_matches_order_by!]" + ], + "where": [ + 183 + ] + } + ], + "aim_weapon_stats": [ + 3745, + { + "distinct_on": [ + 3766, + "[player_aim_weapon_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3764, + "[player_aim_weapon_stats_order_by!]" + ], + "where": [ + 3754 + ] + } + ], + "aim_weapon_stats_aggregate": [ + 3746, + { + "distinct_on": [ + 3766, + "[player_aim_weapon_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3764, + "[player_aim_weapon_stats_order_by!]" + ], + "where": [ + 3754 + ] + } + ], + "assists": [ + 3786, + { + "distinct_on": [ + 3809, + "[player_assists_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3807, + "[player_assists_order_by!]" + ], + "where": [ + 3797 + ] + } + ], + "assists_aggregate": [ + 3787, + { + "distinct_on": [ + 3809, + "[player_assists_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3807, + "[player_assists_order_by!]" + ], + "where": [ + 3797 + ] + } + ], + "assited_by_players": [ + 3786, + { + "distinct_on": [ + 3809, + "[player_assists_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3807, + "[player_assists_order_by!]" + ], + "where": [ + 3797 + ] + } + ], + "assited_by_players_aggregate": [ + 3787, + { + "distinct_on": [ + 3809, + "[player_assists_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3807, + "[player_assists_order_by!]" + ], + "where": [ + 3797 + ] + } + ], + "avatar_url": [ + 85 + ], + "awards": [ + 243, + { + "distinct_on": [ + 264, + "[award_recipients_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 262, + "[award_recipients_order_by!]" + ], + "where": [ + 252 + ] + } + ], + "awards_aggregate": [ + 244, + { + "distinct_on": [ + 264, + "[award_recipients_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 262, + "[award_recipients_order_by!]" + ], + "where": [ + 252 + ] + } + ], + "banned_until": [ + 5243 + ], + "coach_lineups": [ + 3086, + { + "distinct_on": [ + 3108, + "[match_lineups_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3106, + "[match_lineups_order_by!]" + ], + "where": [ + 3095 + ] + } + ], + "coach_lineups_aggregate": [ + 3087, + { + "distinct_on": [ + 3108, + "[match_lineups_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3106, + "[match_lineups_order_by!]" + ], + "where": [ + 3095 + ] + } + ], + "country": [ + 85 + ], + "created_at": [ + 5243 + ], + "current_lobby_id": [ + 6672 + ], + "custom_avatar_url": [ + 85 + ], + "damage_dealt": [ + 3849, + { + "distinct_on": [ + 3870, + "[player_damages_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3868, + "[player_damages_order_by!]" + ], + "where": [ + 3858 + ] + } + ], + "damage_dealt_aggregate": [ + 3850, + { + "distinct_on": [ + 3870, + "[player_damages_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3868, + "[player_damages_order_by!]" + ], + "where": [ + 3858 + ] + } + ], + "damage_taken": [ + 3849, + { + "distinct_on": [ + 3870, + "[player_damages_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3868, + "[player_damages_order_by!]" + ], + "where": [ + 3858 + ] + } + ], + "damage_taken_aggregate": [ + 3850, + { + "distinct_on": [ + 3870, + "[player_damages_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3868, + "[player_damages_order_by!]" + ], + "where": [ + 3858 + ] + } + ], + "days_since_last_ban": [ + 41 + ], + "deaths": [ + 4003, + { + "distinct_on": [ + 4067, + "[player_kills_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4065, + "[player_kills_order_by!]" + ], + "where": [ + 4014 + ] + } + ], + "deaths_aggregate": [ + 4004, + { + "distinct_on": [ + 4067, + "[player_kills_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4065, + "[player_kills_order_by!]" + ], + "where": [ + 4014 + ] + } + ], + "discord_id": [ + 85 + ], + "draft_game_players": [ + 554, + { + "distinct_on": [ + 577, + "[draft_game_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 575, + "[draft_game_players_order_by!]" + ], + "where": [ + 565 + ] + } + ], + "draft_game_players_aggregate": [ + 555, + { + "distinct_on": [ + 577, + "[draft_game_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 575, + "[draft_game_players_order_by!]" + ], + "where": [ + 565 + ] + } + ], + "elo": [ + 2439, + { + "path": [ + 85 + ] + } + ], + "elo_history": [ + 7049, + { + "distinct_on": [ + 7075, + "[v_player_elo_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7074, + "[v_player_elo_order_by!]" + ], + "where": [ + 7068 + ] + } + ], + "elo_history_aggregate": [ + 7050, + { + "distinct_on": [ + 7075, + "[v_player_elo_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7074, + "[v_player_elo_order_by!]" + ], + "where": [ + 7068 + ] + } + ], + "faceit_elo": [ + 41 + ], + "faceit_nickname": [ + 85 + ], + "faceit_player_id": [ + 85 + ], + "faceit_rank_history": [ + 3917, + { + "distinct_on": [ + 3938, + "[player_faceit_rank_history_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3936, + "[player_faceit_rank_history_order_by!]" + ], + "where": [ + 3926 + ] + } + ], + "faceit_rank_history_aggregate": [ + 3918, + { + "distinct_on": [ + 3938, + "[player_faceit_rank_history_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3936, + "[player_faceit_rank_history_order_by!]" + ], + "where": [ + 3926 + ] + } + ], + "faceit_skill_level": [ + 41 + ], + "faceit_updated_at": [ + 5243 + ], + "faceit_url": [ + 85 + ], + "flashed_by_players": [ + 3958, + { + "distinct_on": [ + 3981, + "[player_flashes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3979, + "[player_flashes_order_by!]" + ], + "where": [ + 3969 + ] + } + ], + "flashed_by_players_aggregate": [ + 3959, + { + "distinct_on": [ + 3981, + "[player_flashes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3979, + "[player_flashes_order_by!]" + ], + "where": [ + 3969 + ] + } + ], + "flashed_players": [ + 3958, + { + "distinct_on": [ + 3981, + "[player_flashes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3979, + "[player_flashes_order_by!]" + ], + "where": [ + 3969 + ] + } + ], + "flashed_players_aggregate": [ + 3959, + { + "distinct_on": [ + 3981, + "[player_flashes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3979, + "[player_flashes_order_by!]" + ], + "where": [ + 3969 + ] + } + ], + "friends": [ + 3496, + { + "distinct_on": [ + 3521, + "[my_friends_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3519, + "[my_friends_order_by!]" + ], + "where": [ + 3508 + ] + } + ], + "friends_aggregate": [ + 3497, + { + "distinct_on": [ + 3521, + "[my_friends_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3519, + "[my_friends_order_by!]" + ], + "where": [ + 3508 + ] + } + ], + "game_ban_count": [ + 41 + ], + "invited_players": [ + 4911, + { + "distinct_on": [ + 4932, + "[team_invites_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4930, + "[team_invites_order_by!]" + ], + "where": [ + 4920 + ] + } + ], + "invited_players_aggregate": [ + 4912, + { + "distinct_on": [ + 4932, + "[team_invites_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4930, + "[team_invites_order_by!]" + ], + "where": [ + 4920 + ] + } + ], + "is_admin_sanctioned": [ + 6 + ], + "is_banned": [ + 6 + ], + "is_gagged": [ + 6 + ], + "is_in_another_match": [ + 6 + ], + "is_in_draft": [ + 6 + ], + "is_in_lobby": [ + 6 + ], + "is_muted": [ + 6 + ], + "is_registered": [ + 6 + ], + "kills": [ + 4003, + { + "distinct_on": [ + 4067, + "[player_kills_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4065, + "[player_kills_order_by!]" + ], + "where": [ + 4014 + ] + } + ], + "kills_aggregate": [ + 4004, + { + "distinct_on": [ + 4067, + "[player_kills_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4065, + "[player_kills_order_by!]" + ], + "where": [ + 4014 + ] + } + ], + "kills_by_weapons": [ + 4015, + { + "distinct_on": [ + 4036, + "[player_kills_by_weapon_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4034, + "[player_kills_by_weapon_order_by!]" + ], + "where": [ + 4024 + ] + } + ], + "kills_by_weapons_aggregate": [ + 4016, + { + "distinct_on": [ + 4036, + "[player_kills_by_weapon_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4034, + "[player_kills_by_weapon_order_by!]" + ], + "where": [ + 4024 + ] + } + ], + "language": [ + 85 + ], + "last_read_news_at": [ + 5243 + ], + "last_sign_in_at": [ + 5243 + ], + "lobby_players": [ + 2837, + { + "distinct_on": [ + 2860, + "[lobby_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2858, + "[lobby_players_order_by!]" + ], + "where": [ + 2848 + ] + } + ], + "lobby_players_aggregate": [ + 2838, + { + "distinct_on": [ + 2860, + "[lobby_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2858, + "[lobby_players_order_by!]" + ], + "where": [ + 2848 + ] + } + ], + "losses": [ + 41 + ], + "losses_competitive": [ + 41 + ], + "losses_duel": [ + 41 + ], + "losses_wingman": [ + 41 + ], + "match_map_hltv": [ + 7154, + { + "distinct_on": [ + 7172, + "[v_player_match_map_hltv_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7171, + "[v_player_match_map_hltv_order_by!]" + ], + "where": [ + 7163 + ] + } + ], + "match_map_hltv_aggregate": [ + 7155, + { + "distinct_on": [ + 7172, + "[v_player_match_map_hltv_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7171, + "[v_player_match_map_hltv_order_by!]" + ], + "where": [ + 7163 + ] + } + ], + "match_map_stats": [ + 4112, + { + "distinct_on": [ + 4133, + "[player_match_map_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4131, + "[player_match_map_stats_order_by!]" + ], + "where": [ + 4121 + ] + } + ], + "match_map_stats_aggregate": [ + 4113, + { + "distinct_on": [ + 4133, + "[player_match_map_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4131, + "[player_match_map_stats_order_by!]" + ], + "where": [ + 4121 + ] + } + ], + "match_stats": [ + 4171, + { + "distinct_on": [ + 4187, + "[player_match_stats_v_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4186, + "[player_match_stats_v_order_by!]" + ], + "where": [ + 4180 + ] + } + ], + "match_stats_aggregate": [ + 4172, + { + "distinct_on": [ + 4187, + "[player_match_stats_v_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4186, + "[player_match_stats_v_order_by!]" + ], + "where": [ + 4180 + ] + } + ], + "matches": [ + 3432, + { + "distinct_on": [ + 3456, + "[matches_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3454, + "[matches_order_by!]" + ], + "where": [ + 3443 + ] + } + ], + "matchmaking_cooldown": [ + 5243 + ], + "multi_kills": [ + 7245, + { + "distinct_on": [ + 7261, + "[v_player_multi_kills_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7260, + "[v_player_multi_kills_order_by!]" + ], + "where": [ + 7254 + ] + } + ], + "multi_kills_aggregate": [ + 7246, + { + "distinct_on": [ + 7261, + "[v_player_multi_kills_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7260, + "[v_player_multi_kills_order_by!]" + ], + "where": [ + 7254 + ] + } + ], + "name": [ + 85 + ], + "name_registered": [ + 6 + ], + "notification_timezone": [ + 85 + ], + "notifications": [ + 3596, + { + "distinct_on": [ + 3624, + "[notifications_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3621, + "[notifications_order_by!]" + ], + "where": [ + 3608 + ] + } + ], + "notifications_aggregate": [ + 3597, + { + "distinct_on": [ + 3624, + "[notifications_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3621, + "[notifications_order_by!]" + ], + "where": [ + 3608 + ] + } + ], + "objectives": [ + 4204, + { + "distinct_on": [ + 4225, + "[player_objectives_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4223, + "[player_objectives_order_by!]" + ], + "where": [ + 4213 + ] + } + ], + "objectives_aggregate": [ + 4205, + { + "distinct_on": [ + 4225, + "[player_objectives_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4223, + "[player_objectives_order_by!]" + ], + "where": [ + 4213 + ] + } + ], + "owned_teams": [ + 5194, + { + "distinct_on": [ + 5218, + "[teams_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5216, + "[teams_order_by!]" + ], + "where": [ + 5205 + ] + } + ], + "owned_teams_aggregate": [ + 5195, + { + "distinct_on": [ + 5218, + "[teams_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5216, + "[teams_order_by!]" + ], + "where": [ + 5205 + ] + } + ], + "peak_elo": [ + 2439, + { + "path": [ + 85 + ] + } + ], + "pending_match_imports": [ + 3649, + { + "distinct_on": [ + 3670, + "[pending_match_import_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3668, + "[pending_match_import_players_order_by!]" + ], + "where": [ + 3658 + ] + } + ], + "pending_match_imports_aggregate": [ + 3650, + { + "distinct_on": [ + 3670, + "[pending_match_import_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3668, + "[pending_match_import_players_order_by!]" + ], + "where": [ + 3658 + ] + } + ], + "player_lineup": [ + 3041, + { + "distinct_on": [ + 3064, + "[match_lineup_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3062, + "[match_lineup_players_order_by!]" + ], + "where": [ + 3052 + ] + } + ], + "player_lineup_aggregate": [ + 3042, + { + "distinct_on": [ + 3064, + "[match_lineup_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3062, + "[match_lineup_players_order_by!]" + ], + "where": [ + 3052 + ] + } + ], + "player_unused_utilities": [ + 4491, + { + "distinct_on": [ + 4512, + "[player_unused_utility_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4510, + "[player_unused_utility_order_by!]" + ], + "where": [ + 4500 + ] + } + ], + "player_unused_utilities_aggregate": [ + 4492, + { + "distinct_on": [ + 4512, + "[player_unused_utility_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4510, + "[player_unused_utility_order_by!]" + ], + "where": [ + 4500 + ] + } + ], + "premier_rank": [ + 41 + ], + "premier_rank_history": [ + 4263, + { + "distinct_on": [ + 4284, + "[player_premier_rank_history_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4282, + "[player_premier_rank_history_order_by!]" + ], + "where": [ + 4272 + ] + } + ], + "premier_rank_history_aggregate": [ + 4264, + { + "distinct_on": [ + 4284, + "[player_premier_rank_history_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4282, + "[player_premier_rank_history_order_by!]" + ], + "where": [ + 4272 + ] + } + ], + "premier_rank_updated_at": [ + 5243 + ], + "profile_url": [ + 85 + ], + "quiet_hours_end": [ + 5240 + ], + "quiet_hours_start": [ + 5240 + ], + "role": [ + 1286 + ], + "roster_image_url": [ + 85 + ], + "sanctions": [ + 4304, + { + "distinct_on": [ + 4325, + "[player_sanctions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4323, + "[player_sanctions_order_by!]" + ], + "where": [ + 4313 + ] + } + ], + "sanctions_aggregate": [ + 4305, + { + "distinct_on": [ + 4325, + "[player_sanctions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4323, + "[player_sanctions_order_by!]" + ], + "where": [ + 4313 + ] + } + ], + "season_stats": [ + 4345, + { + "distinct_on": [ + 4376, + "[player_season_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4374, + "[player_season_stats_order_by!]" + ], + "where": [ + 4364 + ] + } + ], + "season_stats_aggregate": [ + 4346, + { + "distinct_on": [ + 4376, + "[player_season_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4374, + "[player_season_stats_order_by!]" + ], + "where": [ + 4364 + ] + } + ], + "show_match_ready_modal": [ + 6 + ], + "stats": [ + 4404 + ], + "steam_bans_checked_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "team_invites": [ + 4911, + { + "distinct_on": [ + 4932, + "[team_invites_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4930, + "[team_invites_order_by!]" + ], + "where": [ + 4920 + ] + } + ], + "team_invites_aggregate": [ + 4912, + { + "distinct_on": [ + 4932, + "[team_invites_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4930, + "[team_invites_order_by!]" + ], + "where": [ + 4920 + ] + } + ], + "team_members": [ + 4952, + { + "distinct_on": [ + 4975, + "[team_roster_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4973, + "[team_roster_order_by!]" + ], + "where": [ + 4963 + ] + } + ], + "team_members_aggregate": [ + 4953, + { + "distinct_on": [ + 4975, + "[team_roster_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4973, + "[team_roster_order_by!]" + ], + "where": [ + 4963 + ] + } + ], + "teams": [ + 5194, + { + "distinct_on": [ + 5218, + "[teams_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5216, + "[teams_order_by!]" + ], + "where": [ + 5205 + ] + } + ], + "total_matches": [ + 41 + ], + "tournament_cooldown": [ + 5243 + ], + "tournament_organizers": [ + 5568, + { + "distinct_on": [ + 5589, + "[tournament_organizers_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5587, + "[tournament_organizers_order_by!]" + ], + "where": [ + 5577 + ] + } + ], + "tournament_organizers_aggregate": [ + 5569, + { + "distinct_on": [ + 5589, + "[tournament_organizers_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5587, + "[tournament_organizers_order_by!]" + ], + "where": [ + 5577 + ] + } + ], + "tournament_rosters": [ + 5809, + { + "distinct_on": [ + 5830, + "[tournament_team_roster_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5828, + "[tournament_team_roster_order_by!]" + ], + "where": [ + 5818 + ] + } + ], + "tournament_rosters_aggregate": [ + 5810, + { + "distinct_on": [ + 5830, + "[tournament_team_roster_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5828, + "[tournament_team_roster_order_by!]" + ], + "where": [ + 5818 + ] + } + ], + "tournaments": [ + 5896, + { + "distinct_on": [ + 5930, + "[tournaments_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5928, + "[tournaments_order_by!]" + ], + "where": [ + 5917 + ] + } + ], + "tournaments_aggregate": [ + 5897, + { + "distinct_on": [ + 5930, + "[tournaments_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5928, + "[tournaments_order_by!]" + ], + "where": [ + 5917 + ] + } + ], + "utility_thrown": [ + 4532, + { + "distinct_on": [ + 4553, + "[player_utility_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4551, + "[player_utility_order_by!]" + ], + "where": [ + 4541 + ] + } + ], + "utility_thrown_aggregate": [ + 4533, + { + "distinct_on": [ + 4553, + "[player_utility_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4551, + "[player_utility_order_by!]" + ], + "where": [ + 4541 + ] + } + ], + "vac_ban_count": [ + 41 + ], + "vac_banned": [ + 6 + ], + "weapon_stats": [ + 4573, + { + "distinct_on": [ + 4589, + "[player_weapon_stats_v_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4588, + "[player_weapon_stats_v_order_by!]" + ], + "where": [ + 4582 + ] + } + ], + "weapon_stats_aggregate": [ + 4574, + { + "distinct_on": [ + 4589, + "[player_weapon_stats_v_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4588, + "[player_weapon_stats_v_order_by!]" + ], + "where": [ + 4582 + ] + } + ], + "wins": [ + 41 + ], + "wins_competitive": [ + 41 + ], + "wins_duel": [ + 41 + ], + "wins_wingman": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "players_aggregate": { + "aggregate": [ + 4608 + ], + "nodes": [ + 4606 + ], + "__typename": [ + 85 + ] + }, + "players_aggregate_fields": { + "avg": [ + 4609 + ], + "count": [ + 41, + { + "columns": [ + 4621, + "[players_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 4614 + ], + "min": [ + 4615 + ], + "stddev": [ + 4623 + ], + "stddev_pop": [ + 4624 + ], + "stddev_samp": [ + 4625 + ], + "sum": [ + 4628 + ], + "var_pop": [ + 4631 + ], + "var_samp": [ + 4632 + ], + "variance": [ + 4633 + ], + "__typename": [ + 85 + ] + }, + "players_avg_fields": { + "days_since_last_ban": [ + 32 + ], + "faceit_elo": [ + 32 + ], + "faceit_skill_level": [ + 32 + ], + "game_ban_count": [ + 32 + ], + "losses": [ + 41 + ], + "losses_competitive": [ + 41 + ], + "losses_duel": [ + 41 + ], + "losses_wingman": [ + 41 + ], + "premier_rank": [ + 32 + ], + "steam_id": [ + 32 + ], + "total_matches": [ + 41 + ], + "vac_ban_count": [ + 32 + ], + "wins": [ + 41 + ], + "wins_competitive": [ + 41 + ], + "wins_duel": [ + 41 + ], + "wins_wingman": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "players_bool_exp": { + "_and": [ + 4610 + ], + "_not": [ + 4610 + ], + "_or": [ + 4610 + ], + "abandoned_matches": [ + 183 + ], + "abandoned_matches_aggregate": [ + 176 + ], + "aim_weapon_stats": [ + 3754 + ], + "aim_weapon_stats_aggregate": [ + 3747 + ], + "assists": [ + 3797 + ], + "assists_aggregate": [ + 3788 + ], + "assited_by_players": [ + 3797 + ], + "assited_by_players_aggregate": [ + 3788 + ], + "avatar_url": [ + 87 + ], + "awards": [ + 252 + ], + "awards_aggregate": [ + 245 + ], + "banned_until": [ + 5244 + ], + "coach_lineups": [ + 3095 + ], + "coach_lineups_aggregate": [ + 3088 + ], + "country": [ + 87 + ], + "created_at": [ + 5244 + ], + "current_lobby_id": [ + 6674 + ], + "custom_avatar_url": [ + 87 + ], + "damage_dealt": [ + 3858 + ], + "damage_dealt_aggregate": [ + 3851 + ], + "damage_taken": [ + 3858 + ], + "damage_taken_aggregate": [ + 3851 + ], + "days_since_last_ban": [ + 42 + ], + "deaths": [ + 4014 + ], + "deaths_aggregate": [ + 4005 + ], + "discord_id": [ + 87 + ], + "draft_game_players": [ + 565 + ], + "draft_game_players_aggregate": [ + 556 + ], + "elo": [ + 2441 + ], + "elo_history": [ + 7068 + ], + "elo_history_aggregate": [ + 7051 + ], + "faceit_elo": [ + 42 + ], + "faceit_nickname": [ + 87 + ], + "faceit_player_id": [ + 87 + ], + "faceit_rank_history": [ + 3926 + ], + "faceit_rank_history_aggregate": [ + 3919 + ], + "faceit_skill_level": [ + 42 + ], + "faceit_updated_at": [ + 5244 + ], + "faceit_url": [ + 87 + ], + "flashed_by_players": [ + 3969 + ], + "flashed_by_players_aggregate": [ + 3960 + ], + "flashed_players": [ + 3969 + ], + "flashed_players_aggregate": [ + 3960 + ], + "friends": [ + 3508 + ], + "friends_aggregate": [ + 3498 + ], + "game_ban_count": [ + 42 + ], + "invited_players": [ + 4920 + ], + "invited_players_aggregate": [ + 4913 + ], + "is_admin_sanctioned": [ + 7 + ], + "is_banned": [ + 7 + ], + "is_gagged": [ + 7 + ], + "is_in_another_match": [ + 7 + ], + "is_in_draft": [ + 7 + ], + "is_in_lobby": [ + 7 + ], + "is_muted": [ + 7 + ], + "is_registered": [ + 7 + ], + "kills": [ + 4014 + ], + "kills_aggregate": [ + 4005 + ], + "kills_by_weapons": [ + 4024 + ], + "kills_by_weapons_aggregate": [ + 4017 + ], + "language": [ + 87 + ], + "last_read_news_at": [ + 5244 + ], + "last_sign_in_at": [ + 5244 + ], + "lobby_players": [ + 2848 + ], + "lobby_players_aggregate": [ + 2839 + ], + "losses": [ + 42 + ], + "losses_competitive": [ + 42 + ], + "losses_duel": [ + 42 + ], + "losses_wingman": [ + 42 + ], + "match_map_hltv": [ + 7163 + ], + "match_map_hltv_aggregate": [ + 7156 + ], + "match_map_stats": [ + 4121 + ], + "match_map_stats_aggregate": [ + 4114 + ], + "match_stats": [ + 4180 + ], + "match_stats_aggregate": [ + 4173 + ], + "matches": [ + 3443 + ], + "matchmaking_cooldown": [ + 5244 + ], + "multi_kills": [ + 7254 + ], + "multi_kills_aggregate": [ + 7247 + ], + "name": [ + 87 + ], + "name_registered": [ + 7 + ], + "notification_timezone": [ + 87 + ], + "notifications": [ + 3608 + ], + "notifications_aggregate": [ + 3598 + ], + "objectives": [ + 4213 + ], + "objectives_aggregate": [ + 4206 + ], + "owned_teams": [ + 5205 + ], + "owned_teams_aggregate": [ + 5196 + ], + "peak_elo": [ + 2441 + ], + "pending_match_imports": [ + 3658 + ], + "pending_match_imports_aggregate": [ + 3651 + ], + "player_lineup": [ + 3052 + ], + "player_lineup_aggregate": [ + 3043 + ], + "player_unused_utilities": [ + 4500 + ], + "player_unused_utilities_aggregate": [ + 4493 + ], + "premier_rank": [ + 42 + ], + "premier_rank_history": [ + 4272 + ], + "premier_rank_history_aggregate": [ + 4265 + ], + "premier_rank_updated_at": [ + 5244 + ], + "profile_url": [ + 87 + ], + "quiet_hours_end": [ + 5241 + ], + "quiet_hours_start": [ + 5241 + ], + "role": [ + 1287 + ], + "roster_image_url": [ + 87 + ], + "sanctions": [ + 4313 + ], + "sanctions_aggregate": [ + 4306 + ], + "season_stats": [ + 4364 + ], + "season_stats_aggregate": [ + 4347 + ], + "show_match_ready_modal": [ + 7 + ], + "stats": [ + 4408 + ], + "steam_bans_checked_at": [ + 5244 + ], + "steam_id": [ + 314 + ], + "team_invites": [ + 4920 + ], + "team_invites_aggregate": [ + 4913 + ], + "team_members": [ + 4963 + ], + "team_members_aggregate": [ + 4954 + ], + "teams": [ + 5205 + ], + "total_matches": [ + 42 + ], + "tournament_cooldown": [ + 5244 + ], + "tournament_organizers": [ + 5577 + ], + "tournament_organizers_aggregate": [ + 5570 + ], + "tournament_rosters": [ + 5818 + ], + "tournament_rosters_aggregate": [ + 5811 + ], + "tournaments": [ + 5917 + ], + "tournaments_aggregate": [ + 5898 + ], + "utility_thrown": [ + 4541 + ], + "utility_thrown_aggregate": [ + 4534 + ], + "vac_ban_count": [ + 42 + ], + "vac_banned": [ + 7 + ], + "weapon_stats": [ + 4582 + ], + "weapon_stats_aggregate": [ + 4575 + ], + "wins": [ + 42 + ], + "wins_competitive": [ + 42 + ], + "wins_duel": [ + 42 + ], + "wins_wingman": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "players_constraint": {}, + "players_inc_input": { + "days_since_last_ban": [ + 41 + ], + "faceit_elo": [ + 41 + ], + "faceit_skill_level": [ + 41 + ], + "game_ban_count": [ + 41 + ], + "premier_rank": [ + 41 + ], + "steam_id": [ + 312 + ], + "vac_ban_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "players_insert_input": { + "abandoned_matches": [ + 180 + ], + "aim_weapon_stats": [ + 3751 + ], + "assists": [ + 3794 + ], + "assited_by_players": [ + 3794 + ], + "avatar_url": [ + 85 + ], + "awards": [ + 249 + ], + "coach_lineups": [ + 3092 + ], + "country": [ + 85 + ], + "created_at": [ + 5243 + ], + "custom_avatar_url": [ + 85 + ], + "damage_dealt": [ + 3855 + ], + "damage_taken": [ + 3855 + ], + "days_since_last_ban": [ + 41 + ], + "deaths": [ + 4011 + ], + "discord_id": [ + 85 + ], + "draft_game_players": [ + 562 + ], + "elo_history": [ + 7065 + ], + "faceit_elo": [ + 41 + ], + "faceit_nickname": [ + 85 + ], + "faceit_player_id": [ + 85 + ], + "faceit_rank_history": [ + 3923 + ], + "faceit_skill_level": [ + 41 + ], + "faceit_updated_at": [ + 5243 + ], + "faceit_url": [ + 85 + ], + "flashed_by_players": [ + 3966 + ], + "flashed_players": [ + 3966 + ], + "friends": [ + 3505 + ], + "game_ban_count": [ + 41 + ], + "invited_players": [ + 4917 + ], + "kills": [ + 4011 + ], + "kills_by_weapons": [ + 4021 + ], + "language": [ + 85 + ], + "last_read_news_at": [ + 5243 + ], + "last_sign_in_at": [ + 5243 + ], + "lobby_players": [ + 2845 + ], + "match_map_hltv": [ + 7160 + ], + "match_map_stats": [ + 4118 + ], + "match_stats": [ + 4177 + ], + "multi_kills": [ + 7251 + ], + "name": [ + 85 + ], + "name_registered": [ + 6 + ], + "notification_timezone": [ + 85 + ], + "notifications": [ + 3605 + ], + "objectives": [ + 4210 + ], + "owned_teams": [ + 5202 + ], + "pending_match_imports": [ + 3655 + ], + "player_lineup": [ + 3049 + ], + "player_unused_utilities": [ + 4497 + ], + "premier_rank": [ + 41 + ], + "premier_rank_history": [ + 4269 + ], + "premier_rank_updated_at": [ + 5243 + ], + "profile_url": [ + 85 + ], + "quiet_hours_end": [ + 5240 + ], + "quiet_hours_start": [ + 5240 + ], + "role": [ + 1286 + ], + "roster_image_url": [ + 85 + ], + "sanctions": [ + 4310 + ], + "season_stats": [ + 4361 + ], + "show_match_ready_modal": [ + 6 + ], + "stats": [ + 4415 + ], + "steam_bans_checked_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "team_invites": [ + 4917 + ], + "team_members": [ + 4960 + ], + "tournament_organizers": [ + 5574 + ], + "tournament_rosters": [ + 5815 + ], + "tournaments": [ + 5914 + ], + "utility_thrown": [ + 4538 + ], + "vac_ban_count": [ + 41 + ], + "vac_banned": [ + 6 + ], + "weapon_stats": [ + 4579 + ], + "__typename": [ + 85 + ] + }, + "players_max_fields": { + "avatar_url": [ + 85 + ], + "banned_until": [ + 5243 + ], + "country": [ + 85 + ], + "created_at": [ + 5243 + ], + "current_lobby_id": [ + 6672 + ], + "custom_avatar_url": [ + 85 + ], + "days_since_last_ban": [ + 41 + ], + "discord_id": [ + 85 + ], + "faceit_elo": [ + 41 + ], + "faceit_nickname": [ + 85 + ], + "faceit_player_id": [ + 85 + ], + "faceit_skill_level": [ + 41 + ], + "faceit_updated_at": [ + 5243 + ], + "faceit_url": [ + 85 + ], + "game_ban_count": [ + 41 + ], + "language": [ + 85 + ], + "last_read_news_at": [ + 5243 + ], + "last_sign_in_at": [ + 5243 + ], + "losses": [ + 41 + ], + "losses_competitive": [ + 41 + ], + "losses_duel": [ + 41 + ], + "losses_wingman": [ + 41 + ], + "matchmaking_cooldown": [ + 5243 + ], + "name": [ + 85 + ], + "notification_timezone": [ + 85 + ], + "premier_rank": [ + 41 + ], + "premier_rank_updated_at": [ + 5243 + ], + "profile_url": [ + 85 + ], + "roster_image_url": [ + 85 + ], + "steam_bans_checked_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "total_matches": [ + 41 + ], + "tournament_cooldown": [ + 5243 + ], + "vac_ban_count": [ + 41 + ], + "wins": [ + 41 + ], + "wins_competitive": [ + 41 + ], + "wins_duel": [ + 41 + ], + "wins_wingman": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "players_min_fields": { + "avatar_url": [ + 85 + ], + "banned_until": [ + 5243 + ], + "country": [ + 85 + ], + "created_at": [ + 5243 + ], + "current_lobby_id": [ + 6672 + ], + "custom_avatar_url": [ + 85 + ], + "days_since_last_ban": [ + 41 + ], + "discord_id": [ + 85 + ], + "faceit_elo": [ + 41 + ], + "faceit_nickname": [ + 85 + ], + "faceit_player_id": [ + 85 + ], + "faceit_skill_level": [ + 41 + ], + "faceit_updated_at": [ + 5243 + ], + "faceit_url": [ + 85 + ], + "game_ban_count": [ + 41 + ], + "language": [ + 85 + ], + "last_read_news_at": [ + 5243 + ], + "last_sign_in_at": [ + 5243 + ], + "losses": [ + 41 + ], + "losses_competitive": [ + 41 + ], + "losses_duel": [ + 41 + ], + "losses_wingman": [ + 41 + ], + "matchmaking_cooldown": [ + 5243 + ], + "name": [ + 85 + ], + "notification_timezone": [ + 85 + ], + "premier_rank": [ + 41 + ], + "premier_rank_updated_at": [ + 5243 + ], + "profile_url": [ + 85 + ], + "roster_image_url": [ + 85 + ], + "steam_bans_checked_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "total_matches": [ + 41 + ], + "tournament_cooldown": [ + 5243 + ], + "vac_ban_count": [ + 41 + ], + "wins": [ + 41 + ], + "wins_competitive": [ + 41 + ], + "wins_duel": [ + 41 + ], + "wins_wingman": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "players_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 4606 + ], + "__typename": [ + 85 + ] + }, + "players_obj_rel_insert_input": { + "data": [ + 4613 + ], + "on_conflict": [ + 4618 + ], + "__typename": [ + 85 + ] + }, + "players_on_conflict": { + "constraint": [ + 4611 + ], + "update_columns": [ + 4629 + ], + "where": [ + 4610 + ], + "__typename": [ + 85 + ] + }, + "players_order_by": { + "abandoned_matches_aggregate": [ + 179 + ], + "aim_weapon_stats_aggregate": [ + 3750 + ], + "assists_aggregate": [ + 3793 + ], + "assited_by_players_aggregate": [ + 3793 + ], + "avatar_url": [ + 3648 + ], + "awards_aggregate": [ + 248 + ], + "banned_until": [ + 3648 + ], + "coach_lineups_aggregate": [ + 3091 + ], + "country": [ + 3648 + ], + "created_at": [ + 3648 + ], + "current_lobby_id": [ + 3648 + ], + "custom_avatar_url": [ + 3648 + ], + "damage_dealt_aggregate": [ + 3854 + ], + "damage_taken_aggregate": [ + 3854 + ], + "days_since_last_ban": [ + 3648 + ], + "deaths_aggregate": [ + 4010 + ], + "discord_id": [ + 3648 + ], + "draft_game_players_aggregate": [ + 561 + ], + "elo": [ + 3648 + ], + "elo_history_aggregate": [ + 7064 + ], + "faceit_elo": [ + 3648 + ], + "faceit_nickname": [ + 3648 + ], + "faceit_player_id": [ + 3648 + ], + "faceit_rank_history_aggregate": [ + 3922 + ], + "faceit_skill_level": [ + 3648 + ], + "faceit_updated_at": [ + 3648 + ], + "faceit_url": [ + 3648 + ], + "flashed_by_players_aggregate": [ + 3965 + ], + "flashed_players_aggregate": [ + 3965 + ], + "friends_aggregate": [ + 3503 + ], + "game_ban_count": [ + 3648 + ], + "invited_players_aggregate": [ + 4916 + ], + "is_admin_sanctioned": [ + 3648 + ], + "is_banned": [ + 3648 + ], + "is_gagged": [ + 3648 + ], + "is_in_another_match": [ + 3648 + ], + "is_in_draft": [ + 3648 + ], + "is_in_lobby": [ + 3648 + ], + "is_muted": [ + 3648 + ], + "is_registered": [ + 3648 + ], + "kills_aggregate": [ + 4010 + ], + "kills_by_weapons_aggregate": [ + 4020 + ], + "language": [ + 3648 + ], + "last_read_news_at": [ + 3648 + ], + "last_sign_in_at": [ + 3648 + ], + "lobby_players_aggregate": [ + 2844 + ], + "losses": [ + 3648 + ], + "losses_competitive": [ + 3648 + ], + "losses_duel": [ + 3648 + ], + "losses_wingman": [ + 3648 + ], + "match_map_hltv_aggregate": [ + 7159 + ], + "match_map_stats_aggregate": [ + 4117 + ], + "match_stats_aggregate": [ + 4176 + ], + "matches_aggregate": [ + 3439 + ], + "matchmaking_cooldown": [ + 3648 + ], + "multi_kills_aggregate": [ + 7250 + ], + "name": [ + 3648 + ], + "name_registered": [ + 3648 + ], + "notification_timezone": [ + 3648 + ], + "notifications_aggregate": [ + 3603 + ], + "objectives_aggregate": [ + 4209 + ], + "owned_teams_aggregate": [ + 5201 + ], + "peak_elo": [ + 3648 + ], + "pending_match_imports_aggregate": [ + 3654 + ], + "player_lineup_aggregate": [ + 3048 + ], + "player_unused_utilities_aggregate": [ + 4496 + ], + "premier_rank": [ + 3648 + ], + "premier_rank_history_aggregate": [ + 4268 + ], + "premier_rank_updated_at": [ + 3648 + ], + "profile_url": [ + 3648 + ], + "quiet_hours_end": [ + 3648 + ], + "quiet_hours_start": [ + 3648 + ], + "role": [ + 3648 + ], + "roster_image_url": [ + 3648 + ], + "sanctions_aggregate": [ + 4309 + ], + "season_stats_aggregate": [ + 4360 + ], + "show_match_ready_modal": [ + 3648 + ], + "stats": [ + 4417 + ], + "steam_bans_checked_at": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "team_invites_aggregate": [ + 4916 + ], + "team_members_aggregate": [ + 4959 + ], + "teams_aggregate": [ + 5201 + ], + "total_matches": [ + 3648 + ], + "tournament_cooldown": [ + 3648 + ], + "tournament_organizers_aggregate": [ + 5573 + ], + "tournament_rosters_aggregate": [ + 5814 + ], + "tournaments_aggregate": [ + 5913 + ], + "utility_thrown_aggregate": [ + 4537 + ], + "vac_ban_count": [ + 3648 + ], + "vac_banned": [ + 3648 + ], + "weapon_stats_aggregate": [ + 4578 + ], + "wins": [ + 3648 + ], + "wins_competitive": [ + 3648 + ], + "wins_duel": [ + 3648 + ], + "wins_wingman": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "players_pk_columns_input": { + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "players_select_column": {}, + "players_set_input": { + "avatar_url": [ + 85 + ], + "country": [ + 85 + ], + "created_at": [ + 5243 + ], + "custom_avatar_url": [ + 85 + ], + "days_since_last_ban": [ + 41 + ], + "discord_id": [ + 85 + ], + "faceit_elo": [ + 41 + ], + "faceit_nickname": [ + 85 + ], + "faceit_player_id": [ + 85 + ], + "faceit_skill_level": [ + 41 + ], + "faceit_updated_at": [ + 5243 + ], + "faceit_url": [ + 85 + ], + "game_ban_count": [ + 41 + ], + "language": [ + 85 + ], + "last_read_news_at": [ + 5243 + ], + "last_sign_in_at": [ + 5243 + ], + "name": [ + 85 + ], + "name_registered": [ + 6 + ], + "notification_timezone": [ + 85 + ], + "premier_rank": [ + 41 + ], + "premier_rank_updated_at": [ + 5243 + ], + "profile_url": [ + 85 + ], + "quiet_hours_end": [ + 5240 + ], + "quiet_hours_start": [ + 5240 + ], + "role": [ + 1286 + ], + "roster_image_url": [ + 85 + ], + "show_match_ready_modal": [ + 6 + ], + "steam_bans_checked_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "vac_ban_count": [ + 41 + ], + "vac_banned": [ + 6 + ], + "__typename": [ + 85 + ] + }, + "players_stddev_fields": { + "days_since_last_ban": [ + 32 + ], + "faceit_elo": [ + 32 + ], + "faceit_skill_level": [ + 32 + ], + "game_ban_count": [ + 32 + ], + "losses": [ + 41 + ], + "losses_competitive": [ + 41 + ], + "losses_duel": [ + 41 + ], + "losses_wingman": [ + 41 + ], + "premier_rank": [ + 32 + ], + "steam_id": [ + 32 + ], + "total_matches": [ + 41 + ], + "vac_ban_count": [ + 32 + ], + "wins": [ + 41 + ], + "wins_competitive": [ + 41 + ], + "wins_duel": [ + 41 + ], + "wins_wingman": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "players_stddev_pop_fields": { + "days_since_last_ban": [ + 32 + ], + "faceit_elo": [ + 32 + ], + "faceit_skill_level": [ + 32 + ], + "game_ban_count": [ + 32 + ], + "losses": [ + 41 + ], + "losses_competitive": [ + 41 + ], + "losses_duel": [ + 41 + ], + "losses_wingman": [ + 41 + ], + "premier_rank": [ + 32 + ], + "steam_id": [ + 32 + ], + "total_matches": [ + 41 + ], + "vac_ban_count": [ + 32 + ], + "wins": [ + 41 + ], + "wins_competitive": [ + 41 + ], + "wins_duel": [ + 41 + ], + "wins_wingman": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "players_stddev_samp_fields": { + "days_since_last_ban": [ + 32 + ], + "faceit_elo": [ + 32 + ], + "faceit_skill_level": [ + 32 + ], + "game_ban_count": [ + 32 + ], + "losses": [ + 41 + ], + "losses_competitive": [ + 41 + ], + "losses_duel": [ + 41 + ], + "losses_wingman": [ + 41 + ], + "premier_rank": [ + 32 + ], + "steam_id": [ + 32 + ], + "total_matches": [ + 41 + ], + "vac_ban_count": [ + 32 + ], + "wins": [ + 41 + ], + "wins_competitive": [ + 41 + ], + "wins_duel": [ + 41 + ], + "wins_wingman": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "players_stream_cursor_input": { + "initial_value": [ + 4627 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "players_stream_cursor_value_input": { + "avatar_url": [ + 85 + ], + "country": [ + 85 + ], + "created_at": [ + 5243 + ], + "custom_avatar_url": [ + 85 + ], + "days_since_last_ban": [ + 41 + ], + "discord_id": [ + 85 + ], + "faceit_elo": [ + 41 + ], + "faceit_nickname": [ + 85 + ], + "faceit_player_id": [ + 85 + ], + "faceit_skill_level": [ + 41 + ], + "faceit_updated_at": [ + 5243 + ], + "faceit_url": [ + 85 + ], + "game_ban_count": [ + 41 + ], + "language": [ + 85 + ], + "last_read_news_at": [ + 5243 + ], + "last_sign_in_at": [ + 5243 + ], + "name": [ + 85 + ], + "name_registered": [ + 6 + ], + "notification_timezone": [ + 85 + ], + "premier_rank": [ + 41 + ], + "premier_rank_updated_at": [ + 5243 + ], + "profile_url": [ + 85 + ], + "quiet_hours_end": [ + 5240 + ], + "quiet_hours_start": [ + 5240 + ], + "role": [ + 1286 + ], + "roster_image_url": [ + 85 + ], + "show_match_ready_modal": [ + 6 + ], + "steam_bans_checked_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "vac_ban_count": [ + 41 + ], + "vac_banned": [ + 6 + ], + "__typename": [ + 85 + ] + }, + "players_sum_fields": { + "days_since_last_ban": [ + 41 + ], + "faceit_elo": [ + 41 + ], + "faceit_skill_level": [ + 41 + ], + "game_ban_count": [ + 41 + ], + "losses": [ + 41 + ], + "losses_competitive": [ + 41 + ], + "losses_duel": [ + 41 + ], + "losses_wingman": [ + 41 + ], + "premier_rank": [ + 41 + ], + "steam_id": [ + 312 + ], + "total_matches": [ + 41 + ], + "vac_ban_count": [ + 41 + ], + "wins": [ + 41 + ], + "wins_competitive": [ + 41 + ], + "wins_duel": [ + 41 + ], + "wins_wingman": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "players_update_column": {}, + "players_updates": { + "_inc": [ + 4612 + ], + "_set": [ + 4622 + ], + "where": [ + 4610 + ], + "__typename": [ + 85 + ] + }, + "players_var_pop_fields": { + "days_since_last_ban": [ + 32 + ], + "faceit_elo": [ + 32 + ], + "faceit_skill_level": [ + 32 + ], + "game_ban_count": [ + 32 + ], + "losses": [ + 41 + ], + "losses_competitive": [ + 41 + ], + "losses_duel": [ + 41 + ], + "losses_wingman": [ + 41 + ], + "premier_rank": [ + 32 + ], + "steam_id": [ + 32 + ], + "total_matches": [ + 41 + ], + "vac_ban_count": [ + 32 + ], + "wins": [ + 41 + ], + "wins_competitive": [ + 41 + ], + "wins_duel": [ + 41 + ], + "wins_wingman": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "players_var_samp_fields": { + "days_since_last_ban": [ + 32 + ], + "faceit_elo": [ + 32 + ], + "faceit_skill_level": [ + 32 + ], + "game_ban_count": [ + 32 + ], + "losses": [ + 41 + ], + "losses_competitive": [ + 41 + ], + "losses_duel": [ + 41 + ], + "losses_wingman": [ + 41 + ], + "premier_rank": [ + 32 + ], + "steam_id": [ + 32 + ], + "total_matches": [ + 41 + ], + "vac_ban_count": [ + 32 + ], + "wins": [ + 41 + ], + "wins_competitive": [ + 41 + ], + "wins_duel": [ + 41 + ], + "wins_wingman": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "players_variance_fields": { + "days_since_last_ban": [ + 32 + ], + "faceit_elo": [ + 32 + ], + "faceit_skill_level": [ + 32 + ], + "game_ban_count": [ + 32 + ], + "losses": [ + 41 + ], + "losses_competitive": [ + 41 + ], + "losses_duel": [ + 41 + ], + "losses_wingman": [ + 41 + ], + "premier_rank": [ + 32 + ], + "steam_id": [ + 32 + ], + "total_matches": [ + 41 + ], + "vac_ban_count": [ + 32 + ], + "wins": [ + 41 + ], + "wins_competitive": [ + 41 + ], + "wins_duel": [ + 41 + ], + "wins_wingman": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "plugin_versions": { + "min_game_build_id": [ + 41 + ], + "published_at": [ + 5243 + ], + "runtime": [ + 1306 + ], + "version": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "plugin_versions_aggregate": { + "aggregate": [ + 4636 + ], + "nodes": [ + 4634 + ], + "__typename": [ + 85 + ] + }, + "plugin_versions_aggregate_fields": { + "avg": [ + 4637 + ], + "count": [ + 41, + { + "columns": [ + 4648, + "[plugin_versions_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 4642 + ], + "min": [ + 4643 + ], + "stddev": [ + 4650 + ], + "stddev_pop": [ + 4651 + ], + "stddev_samp": [ + 4652 + ], + "sum": [ + 4655 + ], + "var_pop": [ + 4658 + ], + "var_samp": [ + 4659 + ], + "variance": [ + 4660 + ], + "__typename": [ + 85 + ] + }, + "plugin_versions_avg_fields": { + "min_game_build_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "plugin_versions_bool_exp": { + "_and": [ + 4638 + ], + "_not": [ + 4638 + ], + "_or": [ + 4638 + ], + "min_game_build_id": [ + 42 + ], + "published_at": [ + 5244 + ], + "runtime": [ + 1307 + ], + "version": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "plugin_versions_constraint": {}, + "plugin_versions_inc_input": { + "min_game_build_id": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "plugin_versions_insert_input": { + "min_game_build_id": [ + 41 + ], + "published_at": [ + 5243 + ], + "runtime": [ + 1306 + ], + "version": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "plugin_versions_max_fields": { + "min_game_build_id": [ + 41 + ], + "published_at": [ + 5243 + ], + "version": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "plugin_versions_min_fields": { + "min_game_build_id": [ + 41 + ], + "published_at": [ + 5243 + ], + "version": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "plugin_versions_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 4634 + ], + "__typename": [ + 85 + ] + }, + "plugin_versions_on_conflict": { + "constraint": [ + 4639 + ], + "update_columns": [ + 4656 + ], + "where": [ + 4638 + ], + "__typename": [ + 85 + ] + }, + "plugin_versions_order_by": { + "min_game_build_id": [ + 3648 + ], + "published_at": [ + 3648 + ], + "runtime": [ + 3648 + ], + "version": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "plugin_versions_pk_columns_input": { + "runtime": [ + 1306 + ], + "version": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "plugin_versions_select_column": {}, + "plugin_versions_set_input": { + "min_game_build_id": [ + 41 + ], + "published_at": [ + 5243 + ], + "runtime": [ + 1306 + ], + "version": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "plugin_versions_stddev_fields": { + "min_game_build_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "plugin_versions_stddev_pop_fields": { + "min_game_build_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "plugin_versions_stddev_samp_fields": { + "min_game_build_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "plugin_versions_stream_cursor_input": { + "initial_value": [ + 4654 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "plugin_versions_stream_cursor_value_input": { + "min_game_build_id": [ + 41 + ], + "published_at": [ + 5243 + ], + "runtime": [ + 1306 + ], + "version": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "plugin_versions_sum_fields": { + "min_game_build_id": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "plugin_versions_update_column": {}, + "plugin_versions_updates": { + "_inc": [ + 4640 + ], + "_set": [ + 4649 + ], + "where": [ + 4638 + ], + "__typename": [ + 85 + ] + }, + "plugin_versions_var_pop_fields": { + "min_game_build_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "plugin_versions_var_samp_fields": { + "min_game_build_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "plugin_versions_variance_fields": { + "min_game_build_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "push_subscriptions": { + "auth": [ + 85 + ], + "created_at": [ + 5243 + ], + "endpoint": [ + 85 + ], + "id": [ + 6672 + ], + "last_used_at": [ + 5243 + ], + "p256dh": [ + 85 + ], + "steam_id": [ + 312 + ], + "user_agent": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "push_subscriptions_aggregate": { + "aggregate": [ + 4663 + ], + "nodes": [ + 4661 + ], + "__typename": [ + 85 + ] + }, + "push_subscriptions_aggregate_fields": { + "avg": [ + 4664 + ], + "count": [ + 41, + { + "columns": [ + 4675, + "[push_subscriptions_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 4669 + ], + "min": [ + 4670 + ], + "stddev": [ + 4677 + ], + "stddev_pop": [ + 4678 + ], + "stddev_samp": [ + 4679 + ], + "sum": [ + 4682 + ], + "var_pop": [ + 4685 + ], + "var_samp": [ + 4686 + ], + "variance": [ + 4687 + ], + "__typename": [ + 85 + ] + }, + "push_subscriptions_avg_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "push_subscriptions_bool_exp": { + "_and": [ + 4665 + ], + "_not": [ + 4665 + ], + "_or": [ + 4665 + ], + "auth": [ + 87 + ], + "created_at": [ + 5244 + ], + "endpoint": [ + 87 + ], + "id": [ + 6674 + ], + "last_used_at": [ + 5244 + ], + "p256dh": [ + 87 + ], + "steam_id": [ + 314 + ], + "user_agent": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "push_subscriptions_constraint": {}, + "push_subscriptions_inc_input": { + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "push_subscriptions_insert_input": { + "auth": [ + 85 + ], + "created_at": [ + 5243 + ], + "endpoint": [ + 85 + ], + "id": [ + 6672 + ], + "last_used_at": [ + 5243 + ], + "p256dh": [ + 85 + ], + "steam_id": [ + 312 + ], + "user_agent": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "push_subscriptions_max_fields": { + "auth": [ + 85 + ], + "created_at": [ + 5243 + ], + "endpoint": [ + 85 + ], + "id": [ + 6672 + ], + "last_used_at": [ + 5243 + ], + "p256dh": [ + 85 + ], + "steam_id": [ + 312 + ], + "user_agent": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "push_subscriptions_min_fields": { + "auth": [ + 85 + ], + "created_at": [ + 5243 + ], + "endpoint": [ + 85 + ], + "id": [ + 6672 + ], + "last_used_at": [ + 5243 + ], + "p256dh": [ + 85 + ], + "steam_id": [ + 312 + ], + "user_agent": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "push_subscriptions_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 4661 + ], + "__typename": [ + 85 + ] + }, + "push_subscriptions_on_conflict": { + "constraint": [ + 4666 + ], + "update_columns": [ + 4683 + ], + "where": [ + 4665 + ], + "__typename": [ + 85 + ] + }, + "push_subscriptions_order_by": { + "auth": [ + 3648 + ], + "created_at": [ + 3648 + ], + "endpoint": [ + 3648 + ], + "id": [ + 3648 + ], + "last_used_at": [ + 3648 + ], + "p256dh": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "user_agent": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "push_subscriptions_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "push_subscriptions_select_column": {}, + "push_subscriptions_set_input": { + "auth": [ + 85 + ], + "created_at": [ + 5243 + ], + "endpoint": [ + 85 + ], + "id": [ + 6672 + ], + "last_used_at": [ + 5243 + ], + "p256dh": [ + 85 + ], + "steam_id": [ + 312 + ], + "user_agent": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "push_subscriptions_stddev_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "push_subscriptions_stddev_pop_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "push_subscriptions_stddev_samp_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "push_subscriptions_stream_cursor_input": { + "initial_value": [ + 4681 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "push_subscriptions_stream_cursor_value_input": { + "auth": [ + 85 + ], + "created_at": [ + 5243 + ], + "endpoint": [ + 85 + ], + "id": [ + 6672 + ], + "last_used_at": [ + 5243 + ], + "p256dh": [ + 85 + ], + "steam_id": [ + 312 + ], + "user_agent": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "push_subscriptions_sum_fields": { + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "push_subscriptions_update_column": {}, + "push_subscriptions_updates": { + "_inc": [ + 4667 + ], + "_set": [ + 4676 + ], + "where": [ + 4665 + ], + "__typename": [ + 85 + ] + }, + "push_subscriptions_var_pop_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "push_subscriptions_var_samp_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "push_subscriptions_variance_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "recalculate_tournament_awards_args": { + "_tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "remove_league_team_from_season_args": { + "_league_team_season_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "reorder_league_divisions_args": { + "_division_ids": [ + 173 + ], + "__typename": [ + 85 + ] + }, + "restart_league_season_args": { + "_league_season_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "role_permissions": { + "can_create_events": [ + 6 + ], + "can_create_matches": [ + 6 + ], + "can_create_tournaments": [ + 6 + ], + "role": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "role_permissions_aggregate": { + "aggregate": [ + 4694 + ], + "nodes": [ + 4692 + ], + "__typename": [ + 85 + ] + }, + "role_permissions_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 4701, + "[role_permissions_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 4697 + ], + "min": [ + 4698 + ], + "__typename": [ + 85 + ] + }, + "role_permissions_bool_exp": { + "_and": [ + 4695 + ], + "_not": [ + 4695 + ], + "_or": [ + 4695 + ], + "can_create_events": [ + 7 + ], + "can_create_matches": [ + 7 + ], + "can_create_tournaments": [ + 7 + ], + "role": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "role_permissions_insert_input": { + "can_create_events": [ + 6 + ], + "can_create_matches": [ + 6 + ], + "can_create_tournaments": [ + 6 + ], + "role": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "role_permissions_max_fields": { + "role": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "role_permissions_min_fields": { + "role": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "role_permissions_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 4692 + ], + "__typename": [ + 85 + ] + }, + "role_permissions_order_by": { + "can_create_events": [ + 3648 + ], + "can_create_matches": [ + 3648 + ], + "can_create_tournaments": [ + 3648 + ], + "role": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "role_permissions_select_column": {}, + "role_permissions_set_input": { + "can_create_events": [ + 6 + ], + "can_create_matches": [ + 6 + ], + "can_create_tournaments": [ + 6 + ], + "role": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "role_permissions_stream_cursor_input": { + "initial_value": [ + 4704 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "role_permissions_stream_cursor_value_input": { + "can_create_events": [ + 6 + ], + "can_create_matches": [ + 6 + ], + "can_create_tournaments": [ + 6 + ], + "role": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "role_permissions_updates": { + "_set": [ + 4702 + ], + "where": [ + 4695 + ], + "__typename": [ + 85 + ] + }, + "seasons": { + "awards": [ + 243, + { + "distinct_on": [ + 264, + "[award_recipients_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 262, + "[award_recipients_order_by!]" + ], + "where": [ + 252 + ] + } + ], + "awards_aggregate": [ + 244, + { + "distinct_on": [ + 264, + "[award_recipients_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 262, + "[award_recipients_order_by!]" + ], + "where": [ + 252 + ] + } + ], + "created_at": [ + 5243 + ], + "description": [ + 85 + ], + "ends_at": [ + 5243 + ], + "id": [ + 6672 + ], + "needs_rebuild": [ + 6 + ], + "number": [ + 41 + ], + "player_season_stats": [ + 4345, + { + "distinct_on": [ + 4376, + "[player_season_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4374, + "[player_season_stats_order_by!]" + ], + "where": [ + 4364 + ] + } + ], + "player_season_stats_aggregate": [ + 4346, + { + "distinct_on": [ + 4376, + "[player_season_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4374, + "[player_season_stats_order_by!]" + ], + "where": [ + 4364 + ] + } + ], + "starts_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "seasons_aggregate": { + "aggregate": [ + 4708 + ], + "nodes": [ + 4706 + ], + "__typename": [ + 85 + ] + }, + "seasons_aggregate_fields": { + "avg": [ + 4709 + ], + "count": [ + 41, + { + "columns": [ + 4721, + "[seasons_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 4714 + ], + "min": [ + 4715 + ], + "stddev": [ + 4723 + ], + "stddev_pop": [ + 4724 + ], + "stddev_samp": [ + 4725 + ], + "sum": [ + 4728 + ], + "var_pop": [ + 4731 + ], + "var_samp": [ + 4732 + ], + "variance": [ + 4733 + ], + "__typename": [ + 85 + ] + }, + "seasons_avg_fields": { + "number": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "seasons_bool_exp": { + "_and": [ + 4710 + ], + "_not": [ + 4710 + ], + "_or": [ + 4710 + ], + "awards": [ + 252 + ], + "awards_aggregate": [ + 245 + ], + "created_at": [ + 5244 + ], + "description": [ + 87 + ], + "ends_at": [ + 5244 + ], + "id": [ + 6674 + ], + "needs_rebuild": [ + 7 + ], + "number": [ + 42 + ], + "player_season_stats": [ + 4364 + ], + "player_season_stats_aggregate": [ + 4347 + ], + "starts_at": [ + 5244 + ], + "__typename": [ + 85 + ] + }, + "seasons_constraint": {}, + "seasons_inc_input": { + "number": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "seasons_insert_input": { + "awards": [ + 249 + ], + "created_at": [ + 5243 + ], + "description": [ + 85 + ], + "ends_at": [ + 5243 + ], + "id": [ + 6672 + ], + "needs_rebuild": [ + 6 + ], + "number": [ + 41 + ], + "player_season_stats": [ + 4361 + ], + "starts_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "seasons_max_fields": { + "created_at": [ + 5243 + ], + "description": [ + 85 + ], + "ends_at": [ + 5243 + ], + "id": [ + 6672 + ], + "number": [ + 41 + ], + "starts_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "seasons_min_fields": { + "created_at": [ + 5243 + ], + "description": [ + 85 + ], + "ends_at": [ + 5243 + ], + "id": [ + 6672 + ], + "number": [ + 41 + ], + "starts_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "seasons_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 4706 + ], + "__typename": [ + 85 + ] + }, + "seasons_obj_rel_insert_input": { + "data": [ + 4713 + ], + "on_conflict": [ + 4718 + ], + "__typename": [ + 85 + ] + }, + "seasons_on_conflict": { + "constraint": [ + 4711 + ], + "update_columns": [ + 4729 + ], + "where": [ + 4710 + ], + "__typename": [ + 85 + ] + }, + "seasons_order_by": { + "awards_aggregate": [ + 248 + ], + "created_at": [ + 3648 + ], + "description": [ + 3648 + ], + "ends_at": [ + 3648 + ], + "id": [ + 3648 + ], + "needs_rebuild": [ + 3648 + ], + "number": [ + 3648 + ], + "player_season_stats_aggregate": [ + 4360 + ], + "starts_at": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "seasons_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "seasons_select_column": {}, + "seasons_set_input": { + "created_at": [ + 5243 + ], + "description": [ + 85 + ], + "ends_at": [ + 5243 + ], + "id": [ + 6672 + ], + "needs_rebuild": [ + 6 + ], + "number": [ + 41 + ], + "starts_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "seasons_stddev_fields": { + "number": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "seasons_stddev_pop_fields": { + "number": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "seasons_stddev_samp_fields": { + "number": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "seasons_stream_cursor_input": { + "initial_value": [ + 4727 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "seasons_stream_cursor_value_input": { + "created_at": [ + 5243 + ], + "description": [ + 85 + ], + "ends_at": [ + 5243 + ], + "id": [ + 6672 + ], + "needs_rebuild": [ + 6 + ], + "number": [ + 41 + ], + "starts_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "seasons_sum_fields": { + "number": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "seasons_update_column": {}, + "seasons_updates": { + "_inc": [ + 4712 + ], + "_set": [ + 4722 + ], + "where": [ + 4710 + ], + "__typename": [ + 85 + ] + }, + "seasons_var_pop_fields": { + "number": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "seasons_var_samp_fields": { + "number": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "seasons_variance_fields": { + "number": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "server_regions": { + "available_server_count": [ + 41 + ], + "description": [ + 85 + ], + "game_server_nodes": [ + 2314, + { + "distinct_on": [ + 2343, + "[game_server_nodes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2340, + "[game_server_nodes_order_by!]" + ], + "where": [ + 2326 + ] + } + ], + "game_server_nodes_aggregate": [ + 2315, + { + "distinct_on": [ + 2343, + "[game_server_nodes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2340, + "[game_server_nodes_order_by!]" + ], + "where": [ + 2326 + ] + } + ], + "has_node": [ + 6 + ], + "is_lan": [ + 6 + ], + "status": [ + 85 + ], + "steam_relay": [ + 6 + ], + "total_server_count": [ + 41 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "server_regions_aggregate": { + "aggregate": [ + 4736 + ], + "nodes": [ + 4734 + ], + "__typename": [ + 85 + ] + }, + "server_regions_aggregate_fields": { + "avg": [ + 4737 + ], + "count": [ + 41, + { + "columns": [ + 4748, + "[server_regions_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 4741 + ], + "min": [ + 4742 + ], + "stddev": [ + 4750 + ], + "stddev_pop": [ + 4751 + ], + "stddev_samp": [ + 4752 + ], + "sum": [ + 4755 + ], + "var_pop": [ + 4758 + ], + "var_samp": [ + 4759 + ], + "variance": [ + 4760 + ], + "__typename": [ + 85 + ] + }, + "server_regions_avg_fields": { + "available_server_count": [ + 41 + ], + "total_server_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "server_regions_bool_exp": { + "_and": [ + 4738 + ], + "_not": [ + 4738 + ], + "_or": [ + 4738 + ], + "available_server_count": [ + 42 + ], + "description": [ + 87 + ], + "game_server_nodes": [ + 2326 + ], + "game_server_nodes_aggregate": [ + 2316 + ], + "has_node": [ + 7 + ], + "is_lan": [ + 7 + ], + "status": [ + 87 + ], + "steam_relay": [ + 7 + ], + "total_server_count": [ + 42 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "server_regions_constraint": {}, + "server_regions_insert_input": { + "description": [ + 85 + ], + "game_server_nodes": [ + 2323 + ], + "is_lan": [ + 6 + ], + "steam_relay": [ + 6 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "server_regions_max_fields": { + "available_server_count": [ + 41 + ], + "description": [ + 85 + ], + "status": [ + 85 + ], + "total_server_count": [ + 41 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "server_regions_min_fields": { + "available_server_count": [ + 41 + ], + "description": [ + 85 + ], + "status": [ + 85 + ], + "total_server_count": [ + 41 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "server_regions_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 4734 + ], + "__typename": [ + 85 + ] + }, + "server_regions_obj_rel_insert_input": { + "data": [ + 4740 + ], + "on_conflict": [ + 4745 + ], + "__typename": [ + 85 + ] + }, + "server_regions_on_conflict": { + "constraint": [ + 4739 + ], + "update_columns": [ + 4756 + ], + "where": [ + 4738 + ], + "__typename": [ + 85 + ] + }, + "server_regions_order_by": { + "available_server_count": [ + 3648 + ], + "description": [ + 3648 + ], + "game_server_nodes_aggregate": [ + 2321 + ], + "has_node": [ + 3648 + ], + "is_lan": [ + 3648 + ], + "status": [ + 3648 + ], + "steam_relay": [ + 3648 + ], + "total_server_count": [ + 3648 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "server_regions_pk_columns_input": { + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "server_regions_select_column": {}, + "server_regions_set_input": { + "description": [ + 85 + ], + "is_lan": [ + 6 + ], + "steam_relay": [ + 6 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "server_regions_stddev_fields": { + "available_server_count": [ + 41 + ], + "total_server_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "server_regions_stddev_pop_fields": { + "available_server_count": [ + 41 + ], + "total_server_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "server_regions_stddev_samp_fields": { + "available_server_count": [ + 41 + ], + "total_server_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "server_regions_stream_cursor_input": { + "initial_value": [ + 4754 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "server_regions_stream_cursor_value_input": { + "description": [ + 85 + ], + "is_lan": [ + 6 + ], + "steam_relay": [ + 6 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "server_regions_sum_fields": { + "available_server_count": [ + 41 + ], + "total_server_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "server_regions_update_column": {}, + "server_regions_updates": { + "_set": [ + 4749 + ], + "where": [ + 4738 + ], + "__typename": [ + 85 + ] + }, + "server_regions_var_pop_fields": { + "available_server_count": [ + 41 + ], + "total_server_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "server_regions_var_samp_fields": { + "available_server_count": [ + 41 + ], + "total_server_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "server_regions_variance_fields": { + "available_server_count": [ + 41 + ], + "total_server_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "servers": { + "api_password": [ + 6672 + ], + "boot_status": [ + 85 + ], + "boot_status_detail": [ + 85 + ], + "connect_password": [ + 85 + ], + "connected": [ + 6 + ], + "connection_link": [ + 85 + ], + "connection_string": [ + 85 + ], + "current_match": [ + 3432 + ], + "enabled": [ + 6 + ], + "game": [ + 85 + ], + "game_mode": [ + 2172 + ], + "game_mode_id": [ + 6672 + ], + "game_server_node": [ + 2314 + ], + "game_server_node_id": [ + 85 + ], + "host": [ + 85 + ], + "id": [ + 6672 + ], + "is_dedicated": [ + 6 + ], + "label": [ + 85 + ], + "loaded_plugins": [ + 2439, + { + "path": [ + 85 + ] + } + ], + "matches": [ + 3432, + { + "distinct_on": [ + 3456, + "[matches_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3454, + "[matches_order_by!]" + ], + "where": [ + 3443 + ] + } + ], + "matches_aggregate": [ + 3433, + { + "distinct_on": [ + 3456, + "[matches_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3454, + "[matches_order_by!]" + ], + "where": [ + 3443 + ] + } + ], + "max_players": [ + 41 + ], + "offline_at": [ + 5243 + ], + "plugin_runtime": [ + 1306 + ], + "plugin_version": [ + 85 + ], + "plugins_checked_at": [ + 5243 + ], + "port": [ + 41 + ], + "rcon_password": [ + 315 + ], + "rcon_status": [ + 6 + ], + "region": [ + 85 + ], + "reserved_by_match_id": [ + 6672 + ], + "server_region": [ + 4734 + ], + "steam_relay": [ + 85 + ], + "tv_port": [ + 41 + ], + "type": [ + 1433 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "servers_aggregate": { + "aggregate": [ + 4767 + ], + "nodes": [ + 4761 + ], + "__typename": [ + 85 + ] + }, + "servers_aggregate_bool_exp": { + "bool_and": [ + 4764 + ], + "bool_or": [ + 4765 + ], + "count": [ + 4766 + ], + "__typename": [ + 85 + ] + }, + "servers_aggregate_bool_exp_bool_and": { + "arguments": [ + 4791 + ], + "distinct": [ + 6 + ], + "filter": [ + 4773 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "servers_aggregate_bool_exp_bool_or": { + "arguments": [ + 4792 + ], + "distinct": [ + 6 + ], + "filter": [ + 4773 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "servers_aggregate_bool_exp_count": { + "arguments": [ + 4790 + ], + "distinct": [ + 6 + ], + "filter": [ + 4773 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "servers_aggregate_fields": { + "avg": [ + 4771 + ], + "count": [ + 41, + { + "columns": [ + 4790, + "[servers_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 4780 + ], + "min": [ + 4782 + ], + "stddev": [ + 4794 + ], + "stddev_pop": [ + 4796 + ], + "stddev_samp": [ + 4798 + ], + "sum": [ + 4802 + ], + "var_pop": [ + 4806 + ], + "var_samp": [ + 4808 + ], + "variance": [ + 4810 + ], + "__typename": [ + 85 + ] + }, + "servers_aggregate_order_by": { + "avg": [ + 4772 + ], + "count": [ + 3648 + ], + "max": [ + 4781 + ], + "min": [ + 4783 + ], + "stddev": [ + 4795 + ], + "stddev_pop": [ + 4797 + ], + "stddev_samp": [ + 4799 + ], + "sum": [ + 4803 + ], + "var_pop": [ + 4807 + ], + "var_samp": [ + 4809 + ], + "variance": [ + 4811 + ], + "__typename": [ + 85 + ] + }, + "servers_append_input": { + "loaded_plugins": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "servers_arr_rel_insert_input": { + "data": [ + 4779 + ], + "on_conflict": [ + 4786 + ], + "__typename": [ + 85 + ] + }, + "servers_avg_fields": { + "max_players": [ + 32 + ], + "port": [ + 32 + ], + "tv_port": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "servers_avg_order_by": { + "max_players": [ + 3648 + ], + "port": [ + 3648 + ], + "tv_port": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "servers_bool_exp": { + "_and": [ + 4773 + ], + "_not": [ + 4773 + ], + "_or": [ + 4773 + ], + "api_password": [ + 6674 + ], + "boot_status": [ + 87 + ], + "boot_status_detail": [ + 87 + ], + "connect_password": [ + 87 + ], + "connected": [ + 7 + ], + "connection_link": [ + 87 + ], + "connection_string": [ + 87 + ], + "current_match": [ + 3443 + ], + "enabled": [ + 7 + ], + "game": [ + 87 + ], + "game_mode": [ + 2175 + ], + "game_mode_id": [ + 6674 + ], + "game_server_node": [ + 2326 + ], + "game_server_node_id": [ + 87 + ], + "host": [ + 87 + ], + "id": [ + 6674 + ], + "is_dedicated": [ + 7 + ], + "label": [ + 87 + ], + "loaded_plugins": [ + 2441 + ], + "matches": [ + 3443 + ], + "matches_aggregate": [ + 3434 + ], + "max_players": [ + 42 + ], + "offline_at": [ + 5244 + ], + "plugin_runtime": [ + 1307 + ], + "plugin_version": [ + 87 + ], + "plugins_checked_at": [ + 5244 + ], + "port": [ + 42 + ], + "rcon_password": [ + 316 + ], + "rcon_status": [ + 7 + ], + "region": [ + 87 + ], + "reserved_by_match_id": [ + 6674 + ], + "server_region": [ + 4738 + ], + "steam_relay": [ + 87 + ], + "tv_port": [ + 42 + ], + "type": [ + 1434 + ], + "updated_at": [ + 5244 + ], + "__typename": [ + 85 + ] + }, + "servers_constraint": {}, + "servers_delete_at_path_input": { + "loaded_plugins": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "servers_delete_elem_input": { + "loaded_plugins": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "servers_delete_key_input": { + "loaded_plugins": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "servers_inc_input": { + "max_players": [ + 41 + ], + "port": [ + 41 + ], + "tv_port": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "servers_insert_input": { + "api_password": [ + 6672 + ], + "boot_status": [ + 85 + ], + "boot_status_detail": [ + 85 + ], + "connect_password": [ + 85 + ], + "connected": [ + 6 + ], + "current_match": [ + 3452 + ], + "enabled": [ + 6 + ], + "game": [ + 85 + ], + "game_mode": [ + 2181 + ], + "game_mode_id": [ + 6672 + ], + "game_server_node": [ + 2338 + ], + "game_server_node_id": [ + 85 + ], + "host": [ + 85 + ], + "id": [ + 6672 + ], + "is_dedicated": [ + 6 + ], + "label": [ + 85 + ], + "loaded_plugins": [ + 2439 + ], + "matches": [ + 3440 + ], + "max_players": [ + 41 + ], + "offline_at": [ + 5243 + ], + "plugin_runtime": [ + 1306 + ], + "plugin_version": [ + 85 + ], + "plugins_checked_at": [ + 5243 + ], + "port": [ + 41 + ], + "rcon_password": [ + 315 + ], + "rcon_status": [ + 6 + ], + "region": [ + 85 + ], + "reserved_by_match_id": [ + 6672 + ], + "server_region": [ + 4744 + ], + "steam_relay": [ + 85 + ], + "tv_port": [ + 41 + ], + "type": [ + 1433 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "servers_max_fields": { + "api_password": [ + 6672 + ], + "boot_status": [ + 85 + ], + "boot_status_detail": [ + 85 + ], + "connect_password": [ + 85 + ], + "connection_link": [ + 85 + ], + "connection_string": [ + 85 + ], + "game": [ + 85 + ], + "game_mode_id": [ + 6672 + ], + "game_server_node_id": [ + 85 + ], + "host": [ + 85 + ], + "id": [ + 6672 + ], + "label": [ + 85 + ], + "max_players": [ + 41 + ], + "offline_at": [ + 5243 + ], + "plugin_version": [ + 85 + ], + "plugins_checked_at": [ + 5243 + ], + "port": [ + 41 + ], + "region": [ + 85 + ], + "reserved_by_match_id": [ + 6672 + ], + "steam_relay": [ + 85 + ], + "tv_port": [ + 41 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "servers_max_order_by": { + "api_password": [ + 3648 + ], + "boot_status": [ + 3648 + ], + "boot_status_detail": [ + 3648 + ], + "connect_password": [ + 3648 + ], + "game": [ + 3648 + ], + "game_mode_id": [ + 3648 + ], + "game_server_node_id": [ + 3648 + ], + "host": [ + 3648 + ], + "id": [ + 3648 + ], + "label": [ + 3648 + ], + "max_players": [ + 3648 + ], + "offline_at": [ + 3648 + ], + "plugin_version": [ + 3648 + ], + "plugins_checked_at": [ + 3648 + ], + "port": [ + 3648 + ], + "region": [ + 3648 + ], + "reserved_by_match_id": [ + 3648 + ], + "steam_relay": [ + 3648 + ], + "tv_port": [ + 3648 + ], + "updated_at": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "servers_min_fields": { + "api_password": [ + 6672 + ], + "boot_status": [ + 85 + ], + "boot_status_detail": [ + 85 + ], + "connect_password": [ + 85 + ], + "connection_link": [ + 85 + ], + "connection_string": [ + 85 + ], + "game": [ + 85 + ], + "game_mode_id": [ + 6672 + ], + "game_server_node_id": [ + 85 + ], + "host": [ + 85 + ], + "id": [ + 6672 + ], + "label": [ + 85 + ], + "max_players": [ + 41 + ], + "offline_at": [ + 5243 + ], + "plugin_version": [ + 85 + ], + "plugins_checked_at": [ + 5243 + ], + "port": [ + 41 + ], + "region": [ + 85 + ], + "reserved_by_match_id": [ + 6672 + ], + "steam_relay": [ + 85 + ], + "tv_port": [ + 41 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "servers_min_order_by": { + "api_password": [ + 3648 + ], + "boot_status": [ + 3648 + ], + "boot_status_detail": [ + 3648 + ], + "connect_password": [ + 3648 + ], + "game": [ + 3648 + ], + "game_mode_id": [ + 3648 + ], + "game_server_node_id": [ + 3648 + ], + "host": [ + 3648 + ], + "id": [ + 3648 + ], + "label": [ + 3648 + ], + "max_players": [ + 3648 + ], + "offline_at": [ + 3648 + ], + "plugin_version": [ + 3648 + ], + "plugins_checked_at": [ + 3648 + ], + "port": [ + 3648 + ], + "region": [ + 3648 + ], + "reserved_by_match_id": [ + 3648 + ], + "steam_relay": [ + 3648 + ], + "tv_port": [ + 3648 + ], + "updated_at": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "servers_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 4761 + ], + "__typename": [ + 85 + ] + }, + "servers_obj_rel_insert_input": { + "data": [ + 4779 + ], + "on_conflict": [ + 4786 + ], + "__typename": [ + 85 + ] + }, + "servers_on_conflict": { + "constraint": [ + 4774 + ], + "update_columns": [ + 4804 + ], + "where": [ + 4773 + ], + "__typename": [ + 85 + ] + }, + "servers_order_by": { + "api_password": [ + 3648 + ], + "boot_status": [ + 3648 + ], + "boot_status_detail": [ + 3648 + ], + "connect_password": [ + 3648 + ], + "connected": [ + 3648 + ], + "connection_link": [ + 3648 + ], + "connection_string": [ + 3648 + ], + "current_match": [ + 3454 + ], + "enabled": [ + 3648 + ], + "game": [ + 3648 + ], + "game_mode": [ + 2183 + ], + "game_mode_id": [ + 3648 + ], + "game_server_node": [ + 2340 + ], + "game_server_node_id": [ + 3648 + ], + "host": [ + 3648 + ], + "id": [ + 3648 + ], + "is_dedicated": [ + 3648 + ], + "label": [ + 3648 + ], + "loaded_plugins": [ + 3648 + ], + "matches_aggregate": [ + 3439 + ], + "max_players": [ + 3648 + ], + "offline_at": [ + 3648 + ], + "plugin_runtime": [ + 3648 + ], + "plugin_version": [ + 3648 + ], + "plugins_checked_at": [ + 3648 + ], + "port": [ + 3648 + ], + "rcon_password": [ + 3648 + ], + "rcon_status": [ + 3648 + ], + "region": [ + 3648 + ], + "reserved_by_match_id": [ + 3648 + ], + "server_region": [ + 4746 + ], + "steam_relay": [ + 3648 + ], + "tv_port": [ + 3648 + ], + "type": [ + 3648 + ], + "updated_at": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "servers_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "servers_prepend_input": { + "loaded_plugins": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "servers_select_column": {}, + "servers_select_column_servers_aggregate_bool_exp_bool_and_arguments_columns": {}, + "servers_select_column_servers_aggregate_bool_exp_bool_or_arguments_columns": {}, + "servers_set_input": { + "api_password": [ + 6672 + ], + "boot_status": [ + 85 + ], + "boot_status_detail": [ + 85 + ], + "connect_password": [ + 85 + ], + "connected": [ + 6 + ], + "enabled": [ + 6 + ], + "game": [ + 85 + ], + "game_mode_id": [ + 6672 + ], + "game_server_node_id": [ + 85 + ], + "host": [ + 85 + ], + "id": [ + 6672 + ], + "is_dedicated": [ + 6 + ], + "label": [ + 85 + ], + "loaded_plugins": [ + 2439 + ], + "max_players": [ + 41 + ], + "offline_at": [ + 5243 + ], + "plugin_runtime": [ + 1306 + ], + "plugin_version": [ + 85 + ], + "plugins_checked_at": [ + 5243 + ], + "port": [ + 41 + ], + "rcon_password": [ + 315 + ], + "rcon_status": [ + 6 + ], + "region": [ + 85 + ], + "reserved_by_match_id": [ + 6672 + ], + "steam_relay": [ + 85 + ], + "tv_port": [ + 41 + ], + "type": [ + 1433 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "servers_stddev_fields": { + "max_players": [ + 32 + ], + "port": [ + 32 + ], + "tv_port": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "servers_stddev_order_by": { + "max_players": [ + 3648 + ], + "port": [ + 3648 + ], + "tv_port": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "servers_stddev_pop_fields": { + "max_players": [ + 32 + ], + "port": [ + 32 + ], + "tv_port": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "servers_stddev_pop_order_by": { + "max_players": [ + 3648 + ], + "port": [ + 3648 + ], + "tv_port": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "servers_stddev_samp_fields": { + "max_players": [ + 32 + ], + "port": [ + 32 + ], + "tv_port": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "servers_stddev_samp_order_by": { + "max_players": [ + 3648 + ], + "port": [ + 3648 + ], + "tv_port": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "servers_stream_cursor_input": { + "initial_value": [ + 4801 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "servers_stream_cursor_value_input": { + "api_password": [ + 6672 + ], + "boot_status": [ + 85 + ], + "boot_status_detail": [ + 85 + ], + "connect_password": [ + 85 + ], + "connected": [ + 6 + ], + "enabled": [ + 6 + ], + "game": [ + 85 + ], + "game_mode_id": [ + 6672 + ], + "game_server_node_id": [ + 85 + ], + "host": [ + 85 + ], + "id": [ + 6672 + ], + "is_dedicated": [ + 6 + ], + "label": [ + 85 + ], + "loaded_plugins": [ + 2439 + ], + "max_players": [ + 41 + ], + "offline_at": [ + 5243 + ], + "plugin_runtime": [ + 1306 + ], + "plugin_version": [ + 85 + ], + "plugins_checked_at": [ + 5243 + ], + "port": [ + 41 + ], + "rcon_password": [ + 315 + ], + "rcon_status": [ + 6 + ], + "region": [ + 85 + ], + "reserved_by_match_id": [ + 6672 + ], + "steam_relay": [ + 85 + ], + "tv_port": [ + 41 + ], + "type": [ + 1433 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "servers_sum_fields": { + "max_players": [ + 41 + ], + "port": [ + 41 + ], + "tv_port": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "servers_sum_order_by": { + "max_players": [ + 3648 + ], + "port": [ + 3648 + ], + "tv_port": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "servers_update_column": {}, + "servers_updates": { + "_append": [ + 4769 + ], + "_delete_at_path": [ + 4775 + ], + "_delete_elem": [ + 4776 + ], + "_delete_key": [ + 4777 + ], + "_inc": [ + 4778 + ], + "_prepend": [ + 4789 + ], + "_set": [ + 4793 + ], + "where": [ + 4773 + ], + "__typename": [ + 85 + ] + }, + "servers_var_pop_fields": { + "max_players": [ + 32 + ], + "port": [ + 32 + ], + "tv_port": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "servers_var_pop_order_by": { + "max_players": [ + 3648 + ], + "port": [ + 3648 + ], + "tv_port": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "servers_var_samp_fields": { + "max_players": [ + 32 + ], + "port": [ + 32 + ], + "tv_port": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "servers_var_samp_order_by": { + "max_players": [ + 3648 + ], + "port": [ + 3648 + ], + "tv_port": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "servers_variance_fields": { + "max_players": [ + 32 + ], + "port": [ + 32 + ], + "tv_port": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "servers_variance_order_by": { + "max_players": [ + 3648 + ], + "port": [ + 3648 + ], + "tv_port": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "settings": { + "name": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "settings_aggregate": { + "aggregate": [ + 4814 + ], + "nodes": [ + 4812 + ], + "__typename": [ + 85 + ] + }, + "settings_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 4824, + "[settings_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 4818 + ], + "min": [ + 4819 + ], + "__typename": [ + 85 + ] + }, + "settings_bool_exp": { + "_and": [ + 4815 + ], + "_not": [ + 4815 + ], + "_or": [ + 4815 + ], + "name": [ + 87 + ], + "value": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "settings_constraint": {}, + "settings_insert_input": { + "name": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "settings_max_fields": { + "name": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "settings_min_fields": { + "name": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "settings_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 4812 + ], + "__typename": [ + 85 + ] + }, + "settings_on_conflict": { + "constraint": [ + 4816 + ], + "update_columns": [ + 4828 + ], + "where": [ + 4815 + ], + "__typename": [ + 85 + ] + }, + "settings_order_by": { + "name": [ + 3648 + ], + "value": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "settings_pk_columns_input": { + "name": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "settings_select_column": {}, + "settings_set_input": { + "name": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "settings_stream_cursor_input": { + "initial_value": [ + 4827 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "settings_stream_cursor_value_input": { + "name": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "settings_update_column": {}, + "settings_updates": { + "_set": [ + 4825 + ], + "where": [ + 4815 + ], + "__typename": [ + 85 + ] + }, + "smallint": {}, + "smallint_comparison_exp": { + "_eq": [ + 4830 + ], + "_gt": [ + 4830 + ], + "_gte": [ + 4830 + ], + "_in": [ + 4830 + ], + "_is_null": [ + 6 + ], + "_lt": [ + 4830 + ], + "_lte": [ + 4830 + ], + "_neq": [ + 4830 + ], + "_nin": [ + 4830 + ], + "__typename": [ + 85 + ] + }, + "steam_account_claims": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "k8s_job_name": [ + 85 + ], + "node": [ + 2314 + ], + "node_id": [ + 85 + ], + "purpose": [ + 85 + ], + "steam_account": [ + 4856 + ], + "steam_account_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "steam_account_claims_aggregate": { + "aggregate": [ + 4836 + ], + "nodes": [ + 4832 + ], + "__typename": [ + 85 + ] + }, + "steam_account_claims_aggregate_bool_exp": { + "count": [ + 4835 + ], + "__typename": [ + 85 + ] + }, + "steam_account_claims_aggregate_bool_exp_count": { + "arguments": [ + 4850 + ], + "distinct": [ + 6 + ], + "filter": [ + 4839 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "steam_account_claims_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 4850, + "[steam_account_claims_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 4842 + ], + "min": [ + 4844 + ], + "__typename": [ + 85 + ] + }, + "steam_account_claims_aggregate_order_by": { + "count": [ + 3648 + ], + "max": [ + 4843 + ], + "min": [ + 4845 + ], + "__typename": [ + 85 + ] + }, + "steam_account_claims_arr_rel_insert_input": { + "data": [ + 4841 + ], + "on_conflict": [ + 4847 + ], + "__typename": [ + 85 + ] + }, + "steam_account_claims_bool_exp": { + "_and": [ + 4839 + ], + "_not": [ + 4839 + ], + "_or": [ + 4839 + ], + "created_at": [ + 5244 + ], + "id": [ + 6674 + ], + "k8s_job_name": [ + 87 + ], + "node": [ + 2326 + ], + "node_id": [ + 87 + ], + "purpose": [ + 87 + ], + "steam_account": [ + 4860 + ], + "steam_account_id": [ + 6674 + ], + "__typename": [ + 85 + ] + }, + "steam_account_claims_constraint": {}, + "steam_account_claims_insert_input": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "k8s_job_name": [ + 85 + ], + "node": [ + 2338 + ], + "node_id": [ + 85 + ], + "purpose": [ + 85 + ], + "steam_account": [ + 4867 + ], + "steam_account_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "steam_account_claims_max_fields": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "k8s_job_name": [ + 85 + ], + "node_id": [ + 85 + ], + "purpose": [ + 85 + ], + "steam_account_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "steam_account_claims_max_order_by": { + "created_at": [ + 3648 + ], + "id": [ + 3648 + ], + "k8s_job_name": [ + 3648 + ], + "node_id": [ + 3648 + ], + "purpose": [ + 3648 + ], + "steam_account_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "steam_account_claims_min_fields": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "k8s_job_name": [ + 85 + ], + "node_id": [ + 85 + ], + "purpose": [ + 85 + ], + "steam_account_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "steam_account_claims_min_order_by": { + "created_at": [ + 3648 + ], + "id": [ + 3648 + ], + "k8s_job_name": [ + 3648 + ], + "node_id": [ + 3648 + ], + "purpose": [ + 3648 + ], + "steam_account_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "steam_account_claims_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 4832 + ], + "__typename": [ + 85 + ] + }, + "steam_account_claims_on_conflict": { + "constraint": [ + 4840 + ], + "update_columns": [ + 4854 + ], + "where": [ + 4839 + ], + "__typename": [ + 85 + ] + }, + "steam_account_claims_order_by": { + "created_at": [ + 3648 + ], + "id": [ + 3648 + ], + "k8s_job_name": [ + 3648 + ], + "node": [ + 2340 + ], + "node_id": [ + 3648 + ], + "purpose": [ + 3648 + ], + "steam_account": [ + 4869 + ], + "steam_account_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "steam_account_claims_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "steam_account_claims_select_column": {}, + "steam_account_claims_set_input": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "k8s_job_name": [ + 85 + ], + "node_id": [ + 85 + ], + "purpose": [ + 85 + ], + "steam_account_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "steam_account_claims_stream_cursor_input": { + "initial_value": [ + 4853 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "steam_account_claims_stream_cursor_value_input": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "k8s_job_name": [ + 85 + ], + "node_id": [ + 85 + ], + "purpose": [ + 85 + ], + "steam_account_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "steam_account_claims_update_column": {}, + "steam_account_claims_updates": { + "_set": [ + 4851 + ], + "where": [ + 4839 + ], + "__typename": [ + 85 + ] + }, + "steam_accounts": { + "claims": [ + 4832, + { + "distinct_on": [ + 4850, + "[steam_account_claims_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4848, + "[steam_account_claims_order_by!]" + ], + "where": [ + 4839 + ] + } + ], + "claims_aggregate": [ + 4833, + { + "distinct_on": [ + 4850, + "[steam_account_claims_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4848, + "[steam_account_claims_order_by!]" + ], + "where": [ + 4839 + ] + } + ], + "created_at": [ + 5243 + ], + "friend_capacity": [ + 41 + ], + "id": [ + 6672 + ], + "last_node": [ + 2314 + ], + "last_node_id": [ + 85 + ], + "password": [ + 85 + ], + "role": [ + 85 + ], + "steam_level": [ + 41 + ], + "steamid64": [ + 312 + ], + "updated_at": [ + 5243 + ], + "username": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "steam_accounts_aggregate": { + "aggregate": [ + 4858 + ], + "nodes": [ + 4856 + ], + "__typename": [ + 85 + ] + }, + "steam_accounts_aggregate_fields": { + "avg": [ + 4859 + ], + "count": [ + 41, + { + "columns": [ + 4871, + "[steam_accounts_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 4864 + ], + "min": [ + 4865 + ], + "stddev": [ + 4873 + ], + "stddev_pop": [ + 4874 + ], + "stddev_samp": [ + 4875 + ], + "sum": [ + 4878 + ], + "var_pop": [ + 4881 + ], + "var_samp": [ + 4882 + ], + "variance": [ + 4883 + ], + "__typename": [ + 85 + ] + }, + "steam_accounts_avg_fields": { + "friend_capacity": [ + 32 + ], + "steam_level": [ + 32 + ], + "steamid64": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "steam_accounts_bool_exp": { + "_and": [ + 4860 + ], + "_not": [ + 4860 + ], + "_or": [ + 4860 + ], + "claims": [ + 4839 + ], + "claims_aggregate": [ + 4834 + ], + "created_at": [ + 5244 + ], + "friend_capacity": [ + 42 + ], + "id": [ + 6674 + ], + "last_node": [ + 2326 + ], + "last_node_id": [ + 87 + ], + "password": [ + 87 + ], + "role": [ + 87 + ], + "steam_level": [ + 42 + ], + "steamid64": [ + 314 + ], + "updated_at": [ + 5244 + ], + "username": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "steam_accounts_constraint": {}, + "steam_accounts_inc_input": { + "friend_capacity": [ + 41 + ], + "steam_level": [ + 41 + ], + "steamid64": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "steam_accounts_insert_input": { + "claims": [ + 4838 + ], + "created_at": [ + 5243 + ], + "friend_capacity": [ + 41 + ], + "id": [ + 6672 + ], + "last_node": [ + 2338 + ], + "last_node_id": [ + 85 + ], + "password": [ + 85 + ], + "role": [ + 85 + ], + "steam_level": [ + 41 + ], + "steamid64": [ + 312 + ], + "updated_at": [ + 5243 + ], + "username": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "steam_accounts_max_fields": { + "created_at": [ + 5243 + ], + "friend_capacity": [ + 41 + ], + "id": [ + 6672 + ], + "last_node_id": [ + 85 + ], + "password": [ + 85 + ], + "role": [ + 85 + ], + "steam_level": [ + 41 + ], + "steamid64": [ + 312 + ], + "updated_at": [ + 5243 + ], + "username": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "steam_accounts_min_fields": { + "created_at": [ + 5243 + ], + "friend_capacity": [ + 41 + ], + "id": [ + 6672 + ], + "last_node_id": [ + 85 + ], + "password": [ + 85 + ], + "role": [ + 85 + ], + "steam_level": [ + 41 + ], + "steamid64": [ + 312 + ], + "updated_at": [ + 5243 + ], + "username": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "steam_accounts_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 4856 + ], + "__typename": [ + 85 + ] + }, + "steam_accounts_obj_rel_insert_input": { + "data": [ + 4863 + ], + "on_conflict": [ + 4868 + ], + "__typename": [ + 85 + ] + }, + "steam_accounts_on_conflict": { + "constraint": [ + 4861 + ], + "update_columns": [ + 4879 + ], + "where": [ + 4860 + ], + "__typename": [ + 85 + ] + }, + "steam_accounts_order_by": { + "claims_aggregate": [ + 4837 + ], + "created_at": [ + 3648 + ], + "friend_capacity": [ + 3648 + ], + "id": [ + 3648 + ], + "last_node": [ + 2340 + ], + "last_node_id": [ + 3648 + ], + "password": [ + 3648 + ], + "role": [ + 3648 + ], + "steam_level": [ + 3648 + ], + "steamid64": [ + 3648 + ], + "updated_at": [ + 3648 + ], + "username": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "steam_accounts_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "steam_accounts_select_column": {}, + "steam_accounts_set_input": { + "created_at": [ + 5243 + ], + "friend_capacity": [ + 41 + ], + "id": [ + 6672 + ], + "last_node_id": [ + 85 + ], + "password": [ + 85 + ], + "role": [ + 85 + ], + "steam_level": [ + 41 + ], + "steamid64": [ + 312 + ], + "updated_at": [ + 5243 + ], + "username": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "steam_accounts_stddev_fields": { + "friend_capacity": [ + 32 + ], + "steam_level": [ + 32 + ], + "steamid64": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "steam_accounts_stddev_pop_fields": { + "friend_capacity": [ + 32 + ], + "steam_level": [ + 32 + ], + "steamid64": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "steam_accounts_stddev_samp_fields": { + "friend_capacity": [ + 32 + ], + "steam_level": [ + 32 + ], + "steamid64": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "steam_accounts_stream_cursor_input": { + "initial_value": [ + 4877 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "steam_accounts_stream_cursor_value_input": { + "created_at": [ + 5243 + ], + "friend_capacity": [ + 41 + ], + "id": [ + 6672 + ], + "last_node_id": [ + 85 + ], + "password": [ + 85 + ], + "role": [ + 85 + ], + "steam_level": [ + 41 + ], + "steamid64": [ + 312 + ], + "updated_at": [ + 5243 + ], + "username": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "steam_accounts_sum_fields": { + "friend_capacity": [ + 41 + ], + "steam_level": [ + 41 + ], + "steamid64": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "steam_accounts_update_column": {}, + "steam_accounts_updates": { + "_inc": [ + 4862 + ], + "_set": [ + 4872 + ], + "where": [ + 4860 + ], + "__typename": [ + 85 + ] + }, + "steam_accounts_var_pop_fields": { + "friend_capacity": [ + 32 + ], + "steam_level": [ + 32 + ], + "steamid64": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "steam_accounts_var_samp_fields": { + "friend_capacity": [ + 32 + ], + "steam_level": [ + 32 + ], + "steamid64": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "steam_accounts_variance_fields": { + "friend_capacity": [ + 32 + ], + "steam_level": [ + 32 + ], + "steamid64": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "system_alerts": { + "created_at": [ + 5243 + ], + "created_by": [ + 312 + ], + "dismissible": [ + 6 + ], + "expires_at": [ + 5243 + ], + "id": [ + 6672 + ], + "is_active": [ + 6 + ], + "message": [ + 85 + ], + "title": [ + 85 + ], + "type": [ + 1473 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "system_alerts_aggregate": { + "aggregate": [ + 4886 + ], + "nodes": [ + 4884 + ], + "__typename": [ + 85 + ] + }, + "system_alerts_aggregate_fields": { + "avg": [ + 4887 + ], + "count": [ + 41, + { + "columns": [ + 4898, + "[system_alerts_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 4892 + ], + "min": [ + 4893 + ], + "stddev": [ + 4900 + ], + "stddev_pop": [ + 4901 + ], + "stddev_samp": [ + 4902 + ], + "sum": [ + 4905 + ], + "var_pop": [ + 4908 + ], + "var_samp": [ + 4909 + ], + "variance": [ + 4910 + ], + "__typename": [ + 85 + ] + }, + "system_alerts_avg_fields": { + "created_by": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "system_alerts_bool_exp": { + "_and": [ + 4888 + ], + "_not": [ + 4888 + ], + "_or": [ + 4888 + ], + "created_at": [ + 5244 + ], + "created_by": [ + 314 + ], + "dismissible": [ + 7 + ], + "expires_at": [ + 5244 + ], + "id": [ + 6674 + ], + "is_active": [ + 7 + ], + "message": [ + 87 + ], + "title": [ + 87 + ], + "type": [ + 1474 + ], + "updated_at": [ + 5244 + ], + "__typename": [ + 85 + ] + }, + "system_alerts_constraint": {}, + "system_alerts_inc_input": { + "created_by": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "system_alerts_insert_input": { + "created_at": [ + 5243 + ], + "created_by": [ + 312 + ], + "dismissible": [ + 6 + ], + "expires_at": [ + 5243 + ], + "id": [ + 6672 + ], + "is_active": [ + 6 + ], + "message": [ + 85 + ], + "title": [ + 85 + ], + "type": [ + 1473 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "system_alerts_max_fields": { + "created_at": [ + 5243 + ], + "created_by": [ + 312 + ], + "expires_at": [ + 5243 + ], + "id": [ + 6672 + ], + "message": [ + 85 + ], + "title": [ + 85 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "system_alerts_min_fields": { + "created_at": [ + 5243 + ], + "created_by": [ + 312 + ], + "expires_at": [ + 5243 + ], + "id": [ + 6672 + ], + "message": [ + 85 + ], + "title": [ + 85 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "system_alerts_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 4884 + ], + "__typename": [ + 85 + ] + }, + "system_alerts_on_conflict": { + "constraint": [ + 4889 + ], + "update_columns": [ + 4906 + ], + "where": [ + 4888 + ], + "__typename": [ + 85 + ] + }, + "system_alerts_order_by": { + "created_at": [ + 3648 + ], + "created_by": [ + 3648 + ], + "dismissible": [ + 3648 + ], + "expires_at": [ + 3648 + ], + "id": [ + 3648 + ], + "is_active": [ + 3648 + ], + "message": [ + 3648 + ], + "title": [ + 3648 + ], + "type": [ + 3648 + ], + "updated_at": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "system_alerts_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "system_alerts_select_column": {}, + "system_alerts_set_input": { + "created_at": [ + 5243 + ], + "created_by": [ + 312 + ], + "dismissible": [ + 6 + ], + "expires_at": [ + 5243 + ], + "id": [ + 6672 + ], + "is_active": [ + 6 + ], + "message": [ + 85 + ], + "title": [ + 85 + ], + "type": [ + 1473 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "system_alerts_stddev_fields": { + "created_by": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "system_alerts_stddev_pop_fields": { + "created_by": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "system_alerts_stddev_samp_fields": { + "created_by": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "system_alerts_stream_cursor_input": { + "initial_value": [ + 4904 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "system_alerts_stream_cursor_value_input": { + "created_at": [ + 5243 + ], + "created_by": [ + 312 + ], + "dismissible": [ + 6 + ], + "expires_at": [ + 5243 + ], + "id": [ + 6672 + ], + "is_active": [ + 6 + ], + "message": [ + 85 + ], + "title": [ + 85 + ], + "type": [ + 1473 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "system_alerts_sum_fields": { + "created_by": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "system_alerts_update_column": {}, + "system_alerts_updates": { + "_inc": [ + 4890 + ], + "_set": [ + 4899 + ], + "where": [ + 4888 + ], + "__typename": [ + 85 + ] + }, + "system_alerts_var_pop_fields": { + "created_by": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "system_alerts_var_samp_fields": { + "created_by": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "system_alerts_variance_fields": { + "created_by": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_invites": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "invited_by": [ + 4606 + ], + "invited_by_player_steam_id": [ + 312 + ], + "player": [ + 4606 + ], + "steam_id": [ + 312 + ], + "team": [ + 5194 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "team_invites_aggregate": { + "aggregate": [ + 4915 + ], + "nodes": [ + 4911 + ], + "__typename": [ + 85 + ] + }, + "team_invites_aggregate_bool_exp": { + "count": [ + 4914 + ], + "__typename": [ + 85 + ] + }, + "team_invites_aggregate_bool_exp_count": { + "arguments": [ + 4932 + ], + "distinct": [ + 6 + ], + "filter": [ + 4920 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "team_invites_aggregate_fields": { + "avg": [ + 4918 + ], + "count": [ + 41, + { + "columns": [ + 4932, + "[team_invites_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 4924 + ], + "min": [ + 4926 + ], + "stddev": [ + 4934 + ], + "stddev_pop": [ + 4936 + ], + "stddev_samp": [ + 4938 + ], + "sum": [ + 4942 + ], + "var_pop": [ + 4946 + ], + "var_samp": [ + 4948 + ], + "variance": [ + 4950 + ], + "__typename": [ + 85 + ] + }, + "team_invites_aggregate_order_by": { + "avg": [ + 4919 + ], + "count": [ + 3648 + ], + "max": [ + 4925 + ], + "min": [ + 4927 + ], + "stddev": [ + 4935 + ], + "stddev_pop": [ + 4937 + ], + "stddev_samp": [ + 4939 + ], + "sum": [ + 4943 + ], + "var_pop": [ + 4947 + ], + "var_samp": [ + 4949 + ], + "variance": [ + 4951 + ], + "__typename": [ + 85 + ] + }, + "team_invites_arr_rel_insert_input": { + "data": [ + 4923 + ], + "on_conflict": [ + 4929 + ], + "__typename": [ + 85 + ] + }, + "team_invites_avg_fields": { + "invited_by_player_steam_id": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_invites_avg_order_by": { + "invited_by_player_steam_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_invites_bool_exp": { + "_and": [ + 4920 + ], + "_not": [ + 4920 + ], + "_or": [ + 4920 + ], + "created_at": [ + 5244 + ], + "id": [ + 6674 + ], + "invited_by": [ + 4610 + ], + "invited_by_player_steam_id": [ + 314 + ], + "player": [ + 4610 + ], + "steam_id": [ + 314 + ], + "team": [ + 5205 + ], + "team_id": [ + 6674 + ], + "__typename": [ + 85 + ] + }, + "team_invites_constraint": {}, + "team_invites_inc_input": { + "invited_by_player_steam_id": [ + 312 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "team_invites_insert_input": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "invited_by": [ + 4617 + ], + "invited_by_player_steam_id": [ + 312 + ], + "player": [ + 4617 + ], + "steam_id": [ + 312 + ], + "team": [ + 5214 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "team_invites_max_fields": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "invited_by_player_steam_id": [ + 312 + ], + "steam_id": [ + 312 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "team_invites_max_order_by": { + "created_at": [ + 3648 + ], + "id": [ + 3648 + ], + "invited_by_player_steam_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "team_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_invites_min_fields": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "invited_by_player_steam_id": [ + 312 + ], + "steam_id": [ + 312 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "team_invites_min_order_by": { + "created_at": [ + 3648 + ], + "id": [ + 3648 + ], + "invited_by_player_steam_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "team_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_invites_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 4911 + ], + "__typename": [ + 85 + ] + }, + "team_invites_on_conflict": { + "constraint": [ + 4921 + ], + "update_columns": [ + 4944 + ], + "where": [ + 4920 + ], + "__typename": [ + 85 + ] + }, + "team_invites_order_by": { + "created_at": [ + 3648 + ], + "id": [ + 3648 + ], + "invited_by": [ + 4619 + ], + "invited_by_player_steam_id": [ + 3648 + ], + "player": [ + 4619 + ], + "steam_id": [ + 3648 + ], + "team": [ + 5216 + ], + "team_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_invites_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "team_invites_select_column": {}, + "team_invites_set_input": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "invited_by_player_steam_id": [ + 312 + ], + "steam_id": [ + 312 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "team_invites_stddev_fields": { + "invited_by_player_steam_id": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_invites_stddev_order_by": { + "invited_by_player_steam_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_invites_stddev_pop_fields": { + "invited_by_player_steam_id": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_invites_stddev_pop_order_by": { + "invited_by_player_steam_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_invites_stddev_samp_fields": { + "invited_by_player_steam_id": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_invites_stddev_samp_order_by": { + "invited_by_player_steam_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_invites_stream_cursor_input": { + "initial_value": [ + 4941 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "team_invites_stream_cursor_value_input": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "invited_by_player_steam_id": [ + 312 + ], + "steam_id": [ + 312 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "team_invites_sum_fields": { + "invited_by_player_steam_id": [ + 312 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "team_invites_sum_order_by": { + "invited_by_player_steam_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_invites_update_column": {}, + "team_invites_updates": { + "_inc": [ + 4922 + ], + "_set": [ + 4933 + ], + "where": [ + 4920 + ], + "__typename": [ + 85 + ] + }, + "team_invites_var_pop_fields": { + "invited_by_player_steam_id": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_invites_var_pop_order_by": { + "invited_by_player_steam_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_invites_var_samp_fields": { + "invited_by_player_steam_id": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_invites_var_samp_order_by": { + "invited_by_player_steam_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_invites_variance_fields": { + "invited_by_player_steam_id": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_invites_variance_order_by": { + "invited_by_player_steam_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_roster": { + "coach": [ + 6 + ], + "player": [ + 4606 + ], + "player_steam_id": [ + 312 + ], + "role": [ + 1493 + ], + "roster_image_url": [ + 85 + ], + "status": [ + 1514 + ], + "team": [ + 5194 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "team_roster_aggregate": { + "aggregate": [ + 4958 + ], + "nodes": [ + 4952 + ], + "__typename": [ + 85 + ] + }, + "team_roster_aggregate_bool_exp": { + "bool_and": [ + 4955 + ], + "bool_or": [ + 4956 + ], + "count": [ + 4957 + ], + "__typename": [ + 85 + ] + }, + "team_roster_aggregate_bool_exp_bool_and": { + "arguments": [ + 4976 + ], + "distinct": [ + 6 + ], + "filter": [ + 4963 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "team_roster_aggregate_bool_exp_bool_or": { + "arguments": [ + 4977 + ], + "distinct": [ + 6 + ], + "filter": [ + 4963 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "team_roster_aggregate_bool_exp_count": { + "arguments": [ + 4975 + ], + "distinct": [ + 6 + ], + "filter": [ + 4963 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "team_roster_aggregate_fields": { + "avg": [ + 4961 + ], + "count": [ + 41, + { + "columns": [ + 4975, + "[team_roster_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 4967 + ], + "min": [ + 4969 + ], + "stddev": [ + 4979 + ], + "stddev_pop": [ + 4981 + ], + "stddev_samp": [ + 4983 + ], + "sum": [ + 4987 + ], + "var_pop": [ + 4991 + ], + "var_samp": [ + 4993 + ], + "variance": [ + 4995 + ], + "__typename": [ + 85 + ] + }, + "team_roster_aggregate_order_by": { + "avg": [ + 4962 + ], + "count": [ + 3648 + ], + "max": [ + 4968 + ], + "min": [ + 4970 + ], + "stddev": [ + 4980 + ], + "stddev_pop": [ + 4982 + ], + "stddev_samp": [ + 4984 + ], + "sum": [ + 4988 + ], + "var_pop": [ + 4992 + ], + "var_samp": [ + 4994 + ], + "variance": [ + 4996 + ], + "__typename": [ + 85 + ] + }, + "team_roster_arr_rel_insert_input": { + "data": [ + 4966 + ], + "on_conflict": [ + 4972 + ], + "__typename": [ + 85 + ] + }, + "team_roster_avg_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_roster_avg_order_by": { + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_roster_bool_exp": { + "_and": [ + 4963 + ], + "_not": [ + 4963 + ], + "_or": [ + 4963 + ], + "coach": [ + 7 + ], + "player": [ + 4610 + ], + "player_steam_id": [ + 314 + ], + "role": [ + 1494 + ], + "roster_image_url": [ + 87 + ], + "status": [ + 1515 + ], + "team": [ + 5205 + ], + "team_id": [ + 6674 + ], + "__typename": [ + 85 + ] + }, + "team_roster_constraint": {}, + "team_roster_inc_input": { + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "team_roster_insert_input": { + "coach": [ + 6 + ], + "player": [ + 4617 + ], + "player_steam_id": [ + 312 + ], + "role": [ + 1493 + ], + "roster_image_url": [ + 85 + ], + "status": [ + 1514 + ], + "team": [ + 5214 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "team_roster_max_fields": { + "player_steam_id": [ + 312 + ], + "roster_image_url": [ + 85 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "team_roster_max_order_by": { + "player_steam_id": [ + 3648 + ], + "roster_image_url": [ + 3648 + ], + "team_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_roster_min_fields": { + "player_steam_id": [ + 312 + ], + "roster_image_url": [ + 85 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "team_roster_min_order_by": { + "player_steam_id": [ + 3648 + ], + "roster_image_url": [ + 3648 + ], + "team_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_roster_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 4952 + ], + "__typename": [ + 85 + ] + }, + "team_roster_on_conflict": { + "constraint": [ + 4964 + ], + "update_columns": [ + 4989 + ], + "where": [ + 4963 + ], + "__typename": [ + 85 + ] + }, + "team_roster_order_by": { + "coach": [ + 3648 + ], + "player": [ + 4619 + ], + "player_steam_id": [ + 3648 + ], + "role": [ + 3648 + ], + "roster_image_url": [ + 3648 + ], + "status": [ + 3648 + ], + "team": [ + 5216 + ], + "team_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_roster_pk_columns_input": { + "player_steam_id": [ + 312 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "team_roster_select_column": {}, + "team_roster_select_column_team_roster_aggregate_bool_exp_bool_and_arguments_columns": {}, + "team_roster_select_column_team_roster_aggregate_bool_exp_bool_or_arguments_columns": {}, + "team_roster_set_input": { + "coach": [ + 6 + ], + "player_steam_id": [ + 312 + ], + "role": [ + 1493 + ], + "roster_image_url": [ + 85 + ], + "status": [ + 1514 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "team_roster_stddev_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_roster_stddev_order_by": { + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_roster_stddev_pop_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_roster_stddev_pop_order_by": { + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_roster_stddev_samp_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_roster_stddev_samp_order_by": { + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_roster_stream_cursor_input": { + "initial_value": [ + 4986 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "team_roster_stream_cursor_value_input": { + "coach": [ + 6 + ], + "player_steam_id": [ + 312 + ], + "role": [ + 1493 + ], + "roster_image_url": [ + 85 + ], + "status": [ + 1514 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "team_roster_sum_fields": { + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "team_roster_sum_order_by": { + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_roster_update_column": {}, + "team_roster_updates": { + "_inc": [ + 4965 + ], + "_set": [ + 4978 + ], + "where": [ + 4963 + ], + "__typename": [ + 85 + ] + }, + "team_roster_var_pop_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_roster_var_pop_order_by": { + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_roster_var_samp_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_roster_var_samp_order_by": { + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_roster_variance_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_roster_variance_order_by": { + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_alerts": { + "created_at": [ + 5243 + ], + "elo_max": [ + 41 + ], + "elo_min": [ + 41 + ], + "enabled": [ + 6 + ], + "id": [ + 6672 + ], + "last_notified_at": [ + 5243 + ], + "regions": [ + 85 + ], + "team": [ + 5194 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_alerts_aggregate": { + "aggregate": [ + 4999 + ], + "nodes": [ + 4997 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_alerts_aggregate_fields": { + "avg": [ + 5000 + ], + "count": [ + 41, + { + "columns": [ + 5011, + "[team_scrim_alerts_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 5005 + ], + "min": [ + 5006 + ], + "stddev": [ + 5013 + ], + "stddev_pop": [ + 5014 + ], + "stddev_samp": [ + 5015 + ], + "sum": [ + 5018 + ], + "var_pop": [ + 5021 + ], + "var_samp": [ + 5022 + ], + "variance": [ + 5023 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_alerts_avg_fields": { + "elo_max": [ + 32 + ], + "elo_min": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_alerts_bool_exp": { + "_and": [ + 5001 + ], + "_not": [ + 5001 + ], + "_or": [ + 5001 + ], + "created_at": [ + 5244 + ], + "elo_max": [ + 42 + ], + "elo_min": [ + 42 + ], + "enabled": [ + 7 + ], + "id": [ + 6674 + ], + "last_notified_at": [ + 5244 + ], + "regions": [ + 86 + ], + "team": [ + 5205 + ], + "team_id": [ + 6674 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_alerts_constraint": {}, + "team_scrim_alerts_inc_input": { + "elo_max": [ + 41 + ], + "elo_min": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_alerts_insert_input": { + "created_at": [ + 5243 + ], + "elo_max": [ + 41 + ], + "elo_min": [ + 41 + ], + "enabled": [ + 6 + ], + "id": [ + 6672 + ], + "last_notified_at": [ + 5243 + ], + "regions": [ + 85 + ], + "team": [ + 5214 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_alerts_max_fields": { + "created_at": [ + 5243 + ], + "elo_max": [ + 41 + ], + "elo_min": [ + 41 + ], + "id": [ + 6672 + ], + "last_notified_at": [ + 5243 + ], + "regions": [ + 85 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_alerts_min_fields": { + "created_at": [ + 5243 + ], + "elo_max": [ + 41 + ], + "elo_min": [ + 41 + ], + "id": [ + 6672 + ], + "last_notified_at": [ + 5243 + ], + "regions": [ + 85 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_alerts_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 4997 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_alerts_on_conflict": { + "constraint": [ + 5002 + ], + "update_columns": [ + 5019 + ], + "where": [ + 5001 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_alerts_order_by": { + "created_at": [ + 3648 + ], + "elo_max": [ + 3648 + ], + "elo_min": [ + 3648 + ], + "enabled": [ + 3648 + ], + "id": [ + 3648 + ], + "last_notified_at": [ + 3648 + ], + "regions": [ + 3648 + ], + "team": [ + 5216 + ], + "team_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_alerts_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_alerts_select_column": {}, + "team_scrim_alerts_set_input": { + "created_at": [ + 5243 + ], + "elo_max": [ + 41 + ], + "elo_min": [ + 41 + ], + "enabled": [ + 6 + ], + "id": [ + 6672 + ], + "last_notified_at": [ + 5243 + ], + "regions": [ + 85 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_alerts_stddev_fields": { + "elo_max": [ + 32 + ], + "elo_min": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_alerts_stddev_pop_fields": { + "elo_max": [ + 32 + ], + "elo_min": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_alerts_stddev_samp_fields": { + "elo_max": [ + 32 + ], + "elo_min": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_alerts_stream_cursor_input": { + "initial_value": [ + 5017 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_alerts_stream_cursor_value_input": { + "created_at": [ + 5243 + ], + "elo_max": [ + 41 + ], + "elo_min": [ + 41 + ], + "enabled": [ + 6 + ], + "id": [ + 6672 + ], + "last_notified_at": [ + 5243 + ], + "regions": [ + 85 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_alerts_sum_fields": { + "elo_max": [ + 41 + ], + "elo_min": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_alerts_update_column": {}, + "team_scrim_alerts_updates": { + "_inc": [ + 5003 + ], + "_set": [ + 5012 + ], + "where": [ + 5001 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_alerts_var_pop_fields": { + "elo_max": [ + 32 + ], + "elo_min": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_alerts_var_samp_fields": { + "elo_max": [ + 32 + ], + "elo_min": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_alerts_variance_fields": { + "elo_max": [ + 32 + ], + "elo_min": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_availability": { + "created_at": [ + 5243 + ], + "ends_at": [ + 5243 + ], + "id": [ + 6672 + ], + "recurring_weekly": [ + 6 + ], + "starts_at": [ + 5243 + ], + "team": [ + 5194 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_availability_aggregate": { + "aggregate": [ + 5030 + ], + "nodes": [ + 5024 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_availability_aggregate_bool_exp": { + "bool_and": [ + 5027 + ], + "bool_or": [ + 5028 + ], + "count": [ + 5029 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_availability_aggregate_bool_exp_bool_and": { + "arguments": [ + 5045 + ], + "distinct": [ + 6 + ], + "filter": [ + 5033 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_availability_aggregate_bool_exp_bool_or": { + "arguments": [ + 5046 + ], + "distinct": [ + 6 + ], + "filter": [ + 5033 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_availability_aggregate_bool_exp_count": { + "arguments": [ + 5044 + ], + "distinct": [ + 6 + ], + "filter": [ + 5033 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_availability_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 5044, + "[team_scrim_availability_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 5036 + ], + "min": [ + 5038 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_availability_aggregate_order_by": { + "count": [ + 3648 + ], + "max": [ + 5037 + ], + "min": [ + 5039 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_availability_arr_rel_insert_input": { + "data": [ + 5035 + ], + "on_conflict": [ + 5041 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_availability_bool_exp": { + "_and": [ + 5033 + ], + "_not": [ + 5033 + ], + "_or": [ + 5033 + ], + "created_at": [ + 5244 + ], + "ends_at": [ + 5244 + ], + "id": [ + 6674 + ], + "recurring_weekly": [ + 7 + ], + "starts_at": [ + 5244 + ], + "team": [ + 5205 + ], + "team_id": [ + 6674 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_availability_constraint": {}, + "team_scrim_availability_insert_input": { + "created_at": [ + 5243 + ], + "ends_at": [ + 5243 + ], + "id": [ + 6672 + ], + "recurring_weekly": [ + 6 + ], + "starts_at": [ + 5243 + ], + "team": [ + 5214 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_availability_max_fields": { + "created_at": [ + 5243 + ], + "ends_at": [ + 5243 + ], + "id": [ + 6672 + ], + "starts_at": [ + 5243 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_availability_max_order_by": { + "created_at": [ + 3648 + ], + "ends_at": [ + 3648 + ], + "id": [ + 3648 + ], + "starts_at": [ + 3648 + ], + "team_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_availability_min_fields": { + "created_at": [ + 5243 + ], + "ends_at": [ + 5243 + ], + "id": [ + 6672 + ], + "starts_at": [ + 5243 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_availability_min_order_by": { + "created_at": [ + 3648 + ], + "ends_at": [ + 3648 + ], + "id": [ + 3648 + ], + "starts_at": [ + 3648 + ], + "team_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_availability_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 5024 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_availability_on_conflict": { + "constraint": [ + 5034 + ], + "update_columns": [ + 5050 + ], + "where": [ + 5033 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_availability_order_by": { + "created_at": [ + 3648 + ], + "ends_at": [ + 3648 + ], + "id": [ + 3648 + ], + "recurring_weekly": [ + 3648 + ], + "starts_at": [ + 3648 + ], + "team": [ + 5216 + ], + "team_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_availability_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_availability_select_column": {}, + "team_scrim_availability_select_column_team_scrim_availability_aggregate_bool_exp_bool_and_arguments_columns": {}, + "team_scrim_availability_select_column_team_scrim_availability_aggregate_bool_exp_bool_or_arguments_columns": {}, + "team_scrim_availability_set_input": { + "created_at": [ + 5243 + ], + "ends_at": [ + 5243 + ], + "id": [ + 6672 + ], + "recurring_weekly": [ + 6 + ], + "starts_at": [ + 5243 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_availability_stream_cursor_input": { + "initial_value": [ + 5049 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_availability_stream_cursor_value_input": { + "created_at": [ + 5243 + ], + "ends_at": [ + 5243 + ], + "id": [ + 6672 + ], + "recurring_weekly": [ + 6 + ], + "starts_at": [ + 5243 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_availability_update_column": {}, + "team_scrim_availability_updates": { + "_set": [ + 5047 + ], + "where": [ + 5033 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_request_proposals": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "proposed_by": [ + 4606 + ], + "proposed_by_steam_id": [ + 312 + ], + "proposed_by_team": [ + 5194 + ], + "proposed_by_team_id": [ + 6672 + ], + "proposed_scheduled_at": [ + 5243 + ], + "request": [ + 5093 + ], + "request_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_request_proposals_aggregate": { + "aggregate": [ + 5056 + ], + "nodes": [ + 5052 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_request_proposals_aggregate_bool_exp": { + "count": [ + 5055 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_request_proposals_aggregate_bool_exp_count": { + "arguments": [ + 5073 + ], + "distinct": [ + 6 + ], + "filter": [ + 5061 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_request_proposals_aggregate_fields": { + "avg": [ + 5059 + ], + "count": [ + 41, + { + "columns": [ + 5073, + "[team_scrim_request_proposals_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 5065 + ], + "min": [ + 5067 + ], + "stddev": [ + 5075 + ], + "stddev_pop": [ + 5077 + ], + "stddev_samp": [ + 5079 + ], + "sum": [ + 5083 + ], + "var_pop": [ + 5087 + ], + "var_samp": [ + 5089 + ], + "variance": [ + 5091 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_request_proposals_aggregate_order_by": { + "avg": [ + 5060 + ], + "count": [ + 3648 + ], + "max": [ + 5066 + ], + "min": [ + 5068 + ], + "stddev": [ + 5076 + ], + "stddev_pop": [ + 5078 + ], + "stddev_samp": [ + 5080 + ], + "sum": [ + 5084 + ], + "var_pop": [ + 5088 + ], + "var_samp": [ + 5090 + ], + "variance": [ + 5092 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_request_proposals_arr_rel_insert_input": { + "data": [ + 5064 + ], + "on_conflict": [ + 5070 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_request_proposals_avg_fields": { + "proposed_by_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_request_proposals_avg_order_by": { + "proposed_by_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_request_proposals_bool_exp": { + "_and": [ + 5061 + ], + "_not": [ + 5061 + ], + "_or": [ + 5061 + ], + "created_at": [ + 5244 + ], + "id": [ + 6674 + ], + "proposed_by": [ + 4610 + ], + "proposed_by_steam_id": [ + 314 + ], + "proposed_by_team": [ + 5205 + ], + "proposed_by_team_id": [ + 6674 + ], + "proposed_scheduled_at": [ + 5244 + ], + "request": [ + 5104 + ], + "request_id": [ + 6674 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_request_proposals_constraint": {}, + "team_scrim_request_proposals_inc_input": { + "proposed_by_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_request_proposals_insert_input": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "proposed_by": [ + 4617 + ], + "proposed_by_steam_id": [ + 312 + ], + "proposed_by_team": [ + 5214 + ], + "proposed_by_team_id": [ + 6672 + ], + "proposed_scheduled_at": [ + 5243 + ], + "request": [ + 5113 + ], + "request_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_request_proposals_max_fields": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "proposed_by_steam_id": [ + 312 + ], + "proposed_by_team_id": [ + 6672 + ], + "proposed_scheduled_at": [ + 5243 + ], + "request_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_request_proposals_max_order_by": { + "created_at": [ + 3648 + ], + "id": [ + 3648 + ], + "proposed_by_steam_id": [ + 3648 + ], + "proposed_by_team_id": [ + 3648 + ], + "proposed_scheduled_at": [ + 3648 + ], + "request_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_request_proposals_min_fields": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "proposed_by_steam_id": [ + 312 + ], + "proposed_by_team_id": [ + 6672 + ], + "proposed_scheduled_at": [ + 5243 + ], + "request_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_request_proposals_min_order_by": { + "created_at": [ + 3648 + ], + "id": [ + 3648 + ], + "proposed_by_steam_id": [ + 3648 + ], + "proposed_by_team_id": [ + 3648 + ], + "proposed_scheduled_at": [ + 3648 + ], + "request_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_request_proposals_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 5052 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_request_proposals_on_conflict": { + "constraint": [ + 5062 + ], + "update_columns": [ + 5085 + ], + "where": [ + 5061 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_request_proposals_order_by": { + "created_at": [ + 3648 + ], + "id": [ + 3648 + ], + "proposed_by": [ + 4619 + ], + "proposed_by_steam_id": [ + 3648 + ], + "proposed_by_team": [ + 5216 + ], + "proposed_by_team_id": [ + 3648 + ], + "proposed_scheduled_at": [ + 3648 + ], + "request": [ + 5115 + ], + "request_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_request_proposals_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_request_proposals_select_column": {}, + "team_scrim_request_proposals_set_input": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "proposed_by_steam_id": [ + 312 + ], + "proposed_by_team_id": [ + 6672 + ], + "proposed_scheduled_at": [ + 5243 + ], + "request_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_request_proposals_stddev_fields": { + "proposed_by_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_request_proposals_stddev_order_by": { + "proposed_by_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_request_proposals_stddev_pop_fields": { + "proposed_by_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_request_proposals_stddev_pop_order_by": { + "proposed_by_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_request_proposals_stddev_samp_fields": { + "proposed_by_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_request_proposals_stddev_samp_order_by": { + "proposed_by_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_request_proposals_stream_cursor_input": { + "initial_value": [ + 5082 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_request_proposals_stream_cursor_value_input": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "proposed_by_steam_id": [ + 312 + ], + "proposed_by_team_id": [ + 6672 + ], + "proposed_scheduled_at": [ + 5243 + ], + "request_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_request_proposals_sum_fields": { + "proposed_by_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_request_proposals_sum_order_by": { + "proposed_by_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_request_proposals_update_column": {}, + "team_scrim_request_proposals_updates": { + "_inc": [ + 5063 + ], + "_set": [ + 5074 + ], + "where": [ + 5061 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_request_proposals_var_pop_fields": { + "proposed_by_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_request_proposals_var_pop_order_by": { + "proposed_by_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_request_proposals_var_samp_fields": { + "proposed_by_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_request_proposals_var_samp_order_by": { + "proposed_by_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_request_proposals_variance_fields": { + "proposed_by_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_request_proposals_variance_order_by": { + "proposed_by_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_requests": { + "auto_generated": [ + 6 + ], + "awaiting_team": [ + 5194 + ], + "awaiting_team_id": [ + 6672 + ], + "canceled_by_team_id": [ + 6672 + ], + "canceled_late": [ + 6 + ], + "created_at": [ + 5243 + ], + "expires_at": [ + 5243 + ], + "from_team": [ + 5194 + ], + "from_team_checked_in": [ + 6 + ], + "from_team_id": [ + 6672 + ], + "id": [ + 6672 + ], + "match": [ + 3432 + ], + "match_id": [ + 6672 + ], + "match_options": [ + 3290 + ], + "match_options_id": [ + 6672 + ], + "match_outcome": [ + 85 + ], + "proposals": [ + 5052, + { + "distinct_on": [ + 5073, + "[team_scrim_request_proposals_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5071, + "[team_scrim_request_proposals_order_by!]" + ], + "where": [ + 5061 + ] + } + ], + "proposals_aggregate": [ + 5053, + { + "distinct_on": [ + 5073, + "[team_scrim_request_proposals_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5071, + "[team_scrim_request_proposals_order_by!]" + ], + "where": [ + 5061 + ] + } + ], + "proposed_scheduled_at": [ + 5243 + ], + "region": [ + 85 + ], + "requested_by": [ + 4606 + ], + "requested_by_steam_id": [ + 312 + ], + "responded_at": [ + 5243 + ], + "status": [ + 1413 + ], + "to_team": [ + 5194 + ], + "to_team_checked_in": [ + 6 + ], + "to_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_requests_aggregate": { + "aggregate": [ + 5099 + ], + "nodes": [ + 5093 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_requests_aggregate_bool_exp": { + "bool_and": [ + 5096 + ], + "bool_or": [ + 5097 + ], + "count": [ + 5098 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_requests_aggregate_bool_exp_bool_and": { + "arguments": [ + 5118 + ], + "distinct": [ + 6 + ], + "filter": [ + 5104 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_requests_aggregate_bool_exp_bool_or": { + "arguments": [ + 5119 + ], + "distinct": [ + 6 + ], + "filter": [ + 5104 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_requests_aggregate_bool_exp_count": { + "arguments": [ + 5117 + ], + "distinct": [ + 6 + ], + "filter": [ + 5104 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_requests_aggregate_fields": { + "avg": [ + 5102 + ], + "count": [ + 41, + { + "columns": [ + 5117, + "[team_scrim_requests_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 5108 + ], + "min": [ + 5110 + ], + "stddev": [ + 5121 + ], + "stddev_pop": [ + 5123 + ], + "stddev_samp": [ + 5125 + ], + "sum": [ + 5129 + ], + "var_pop": [ + 5133 + ], + "var_samp": [ + 5135 + ], + "variance": [ + 5137 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_requests_aggregate_order_by": { + "avg": [ + 5103 + ], + "count": [ + 3648 + ], + "max": [ + 5109 + ], + "min": [ + 5111 + ], + "stddev": [ + 5122 + ], + "stddev_pop": [ + 5124 + ], + "stddev_samp": [ + 5126 + ], + "sum": [ + 5130 + ], + "var_pop": [ + 5134 + ], + "var_samp": [ + 5136 + ], + "variance": [ + 5138 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_requests_arr_rel_insert_input": { + "data": [ + 5107 + ], + "on_conflict": [ + 5114 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_requests_avg_fields": { + "requested_by_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_requests_avg_order_by": { + "requested_by_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_requests_bool_exp": { + "_and": [ + 5104 + ], + "_not": [ + 5104 + ], + "_or": [ + 5104 + ], + "auto_generated": [ + 7 + ], + "awaiting_team": [ + 5205 + ], + "awaiting_team_id": [ + 6674 + ], + "canceled_by_team_id": [ + 6674 + ], + "canceled_late": [ + 7 + ], + "created_at": [ + 5244 + ], + "expires_at": [ + 5244 + ], + "from_team": [ + 5205 + ], + "from_team_checked_in": [ + 7 + ], + "from_team_id": [ + 6674 + ], + "id": [ + 6674 + ], + "match": [ + 3443 + ], + "match_id": [ + 6674 + ], + "match_options": [ + 3301 + ], + "match_options_id": [ + 6674 + ], + "match_outcome": [ + 87 + ], + "proposals": [ + 5061 + ], + "proposals_aggregate": [ + 5054 + ], + "proposed_scheduled_at": [ + 5244 + ], + "region": [ + 87 + ], + "requested_by": [ + 4610 + ], + "requested_by_steam_id": [ + 314 + ], + "responded_at": [ + 5244 + ], + "status": [ + 1414 + ], + "to_team": [ + 5205 + ], + "to_team_checked_in": [ + 7 + ], + "to_team_id": [ + 6674 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_requests_constraint": {}, + "team_scrim_requests_inc_input": { + "requested_by_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_requests_insert_input": { + "auto_generated": [ + 6 + ], + "awaiting_team": [ + 5214 + ], + "awaiting_team_id": [ + 6672 + ], + "canceled_by_team_id": [ + 6672 + ], + "canceled_late": [ + 6 + ], + "created_at": [ + 5243 + ], + "expires_at": [ + 5243 + ], + "from_team": [ + 5214 + ], + "from_team_checked_in": [ + 6 + ], + "from_team_id": [ + 6672 + ], + "id": [ + 6672 + ], + "match": [ + 3452 + ], + "match_id": [ + 6672 + ], + "match_options": [ + 3310 + ], + "match_options_id": [ + 6672 + ], + "match_outcome": [ + 85 + ], + "proposals": [ + 5058 + ], + "proposed_scheduled_at": [ + 5243 + ], + "region": [ + 85 + ], + "requested_by": [ + 4617 + ], + "requested_by_steam_id": [ + 312 + ], + "responded_at": [ + 5243 + ], + "status": [ + 1413 + ], + "to_team": [ + 5214 + ], + "to_team_checked_in": [ + 6 + ], + "to_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_requests_max_fields": { + "awaiting_team_id": [ + 6672 + ], + "canceled_by_team_id": [ + 6672 + ], + "created_at": [ + 5243 + ], + "expires_at": [ + 5243 + ], + "from_team_id": [ + 6672 + ], + "id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "match_options_id": [ + 6672 + ], + "match_outcome": [ + 85 + ], + "proposed_scheduled_at": [ + 5243 + ], + "region": [ + 85 + ], + "requested_by_steam_id": [ + 312 + ], + "responded_at": [ + 5243 + ], + "to_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_requests_max_order_by": { + "awaiting_team_id": [ + 3648 + ], + "canceled_by_team_id": [ + 3648 + ], + "created_at": [ + 3648 + ], + "expires_at": [ + 3648 + ], + "from_team_id": [ + 3648 + ], + "id": [ + 3648 + ], + "match_id": [ + 3648 + ], + "match_options_id": [ + 3648 + ], + "match_outcome": [ + 3648 + ], + "proposed_scheduled_at": [ + 3648 + ], + "region": [ + 3648 + ], + "requested_by_steam_id": [ + 3648 + ], + "responded_at": [ + 3648 + ], + "to_team_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_requests_min_fields": { + "awaiting_team_id": [ + 6672 + ], + "canceled_by_team_id": [ + 6672 + ], + "created_at": [ + 5243 + ], + "expires_at": [ + 5243 + ], + "from_team_id": [ + 6672 + ], + "id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "match_options_id": [ + 6672 + ], + "match_outcome": [ + 85 + ], + "proposed_scheduled_at": [ + 5243 + ], + "region": [ + 85 + ], + "requested_by_steam_id": [ + 312 + ], + "responded_at": [ + 5243 + ], + "to_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_requests_min_order_by": { + "awaiting_team_id": [ + 3648 + ], + "canceled_by_team_id": [ + 3648 + ], + "created_at": [ + 3648 + ], + "expires_at": [ + 3648 + ], + "from_team_id": [ + 3648 + ], + "id": [ + 3648 + ], + "match_id": [ + 3648 + ], + "match_options_id": [ + 3648 + ], + "match_outcome": [ + 3648 + ], + "proposed_scheduled_at": [ + 3648 + ], + "region": [ + 3648 + ], + "requested_by_steam_id": [ + 3648 + ], + "responded_at": [ + 3648 + ], + "to_team_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_requests_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 5093 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_requests_obj_rel_insert_input": { + "data": [ + 5107 + ], + "on_conflict": [ + 5114 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_requests_on_conflict": { + "constraint": [ + 5105 + ], + "update_columns": [ + 5131 + ], + "where": [ + 5104 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_requests_order_by": { + "auto_generated": [ + 3648 + ], + "awaiting_team": [ + 5216 + ], + "awaiting_team_id": [ + 3648 + ], + "canceled_by_team_id": [ + 3648 + ], + "canceled_late": [ + 3648 + ], + "created_at": [ + 3648 + ], + "expires_at": [ + 3648 + ], + "from_team": [ + 5216 + ], + "from_team_checked_in": [ + 3648 + ], + "from_team_id": [ + 3648 + ], + "id": [ + 3648 + ], + "match": [ + 3454 + ], + "match_id": [ + 3648 + ], + "match_options": [ + 3312 + ], + "match_options_id": [ + 3648 + ], + "match_outcome": [ + 3648 + ], + "proposals_aggregate": [ + 5057 + ], + "proposed_scheduled_at": [ + 3648 + ], + "region": [ + 3648 + ], + "requested_by": [ + 4619 + ], + "requested_by_steam_id": [ + 3648 + ], + "responded_at": [ + 3648 + ], + "status": [ + 3648 + ], + "to_team": [ + 5216 + ], + "to_team_checked_in": [ + 3648 + ], + "to_team_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_requests_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_requests_select_column": {}, + "team_scrim_requests_select_column_team_scrim_requests_aggregate_bool_exp_bool_and_arguments_columns": {}, + "team_scrim_requests_select_column_team_scrim_requests_aggregate_bool_exp_bool_or_arguments_columns": {}, + "team_scrim_requests_set_input": { + "auto_generated": [ + 6 + ], + "awaiting_team_id": [ + 6672 + ], + "canceled_by_team_id": [ + 6672 + ], + "canceled_late": [ + 6 + ], + "created_at": [ + 5243 + ], + "expires_at": [ + 5243 + ], + "from_team_checked_in": [ + 6 + ], + "from_team_id": [ + 6672 + ], + "id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "match_options_id": [ + 6672 + ], + "match_outcome": [ + 85 + ], + "proposed_scheduled_at": [ + 5243 + ], + "region": [ + 85 + ], + "requested_by_steam_id": [ + 312 + ], + "responded_at": [ + 5243 + ], + "status": [ + 1413 + ], + "to_team_checked_in": [ + 6 + ], + "to_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_requests_stddev_fields": { + "requested_by_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_requests_stddev_order_by": { + "requested_by_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_requests_stddev_pop_fields": { + "requested_by_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_requests_stddev_pop_order_by": { + "requested_by_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_requests_stddev_samp_fields": { + "requested_by_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_requests_stddev_samp_order_by": { + "requested_by_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_requests_stream_cursor_input": { + "initial_value": [ + 5128 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_requests_stream_cursor_value_input": { + "auto_generated": [ + 6 + ], + "awaiting_team_id": [ + 6672 + ], + "canceled_by_team_id": [ + 6672 + ], + "canceled_late": [ + 6 + ], + "created_at": [ + 5243 + ], + "expires_at": [ + 5243 + ], + "from_team_checked_in": [ + 6 + ], + "from_team_id": [ + 6672 + ], + "id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "match_options_id": [ + 6672 + ], + "match_outcome": [ + 85 + ], + "proposed_scheduled_at": [ + 5243 + ], + "region": [ + 85 + ], + "requested_by_steam_id": [ + 312 + ], + "responded_at": [ + 5243 + ], + "status": [ + 1413 + ], + "to_team_checked_in": [ + 6 + ], + "to_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_requests_sum_fields": { + "requested_by_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_requests_sum_order_by": { + "requested_by_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_requests_update_column": {}, + "team_scrim_requests_updates": { + "_inc": [ + 5106 + ], + "_set": [ + 5120 + ], + "where": [ + 5104 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_requests_var_pop_fields": { + "requested_by_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_requests_var_pop_order_by": { + "requested_by_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_requests_var_samp_fields": { + "requested_by_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_requests_var_samp_order_by": { + "requested_by_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_requests_variance_fields": { + "requested_by_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_requests_variance_order_by": { + "requested_by_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_settings": { + "allow_outside_availability": [ + 6 + ], + "created_at": [ + 5243 + ], + "elo_max": [ + 41 + ], + "elo_min": [ + 41 + ], + "enabled": [ + 6 + ], + "id": [ + 6672 + ], + "map_ids": [ + 6672 + ], + "notes": [ + 85 + ], + "regions": [ + 85 + ], + "team": [ + 5194 + ], + "team_id": [ + 6672 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_settings_aggregate": { + "aggregate": [ + 5141 + ], + "nodes": [ + 5139 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_settings_aggregate_fields": { + "avg": [ + 5142 + ], + "count": [ + 41, + { + "columns": [ + 5154, + "[team_scrim_settings_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 5147 + ], + "min": [ + 5148 + ], + "stddev": [ + 5156 + ], + "stddev_pop": [ + 5157 + ], + "stddev_samp": [ + 5158 + ], + "sum": [ + 5161 + ], + "var_pop": [ + 5164 + ], + "var_samp": [ + 5165 + ], + "variance": [ + 5166 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_settings_avg_fields": { + "elo_max": [ + 32 + ], + "elo_min": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_settings_bool_exp": { + "_and": [ + 5143 + ], + "_not": [ + 5143 + ], + "_or": [ + 5143 + ], + "allow_outside_availability": [ + 7 + ], + "created_at": [ + 5244 + ], + "elo_max": [ + 42 + ], + "elo_min": [ + 42 + ], + "enabled": [ + 7 + ], + "id": [ + 6674 + ], + "map_ids": [ + 6673 + ], + "notes": [ + 87 + ], + "regions": [ + 86 + ], + "team": [ + 5205 + ], + "team_id": [ + 6674 + ], + "updated_at": [ + 5244 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_settings_constraint": {}, + "team_scrim_settings_inc_input": { + "elo_max": [ + 41 + ], + "elo_min": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_settings_insert_input": { + "allow_outside_availability": [ + 6 + ], + "created_at": [ + 5243 + ], + "elo_max": [ + 41 + ], + "elo_min": [ + 41 + ], + "enabled": [ + 6 + ], + "id": [ + 6672 + ], + "map_ids": [ + 6672 + ], + "notes": [ + 85 + ], + "regions": [ + 85 + ], + "team": [ + 5214 + ], + "team_id": [ + 6672 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_settings_max_fields": { + "created_at": [ + 5243 + ], + "elo_max": [ + 41 + ], + "elo_min": [ + 41 + ], + "id": [ + 6672 + ], + "map_ids": [ + 6672 + ], + "notes": [ + 85 + ], + "regions": [ + 85 + ], + "team_id": [ + 6672 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_settings_min_fields": { + "created_at": [ + 5243 + ], + "elo_max": [ + 41 + ], + "elo_min": [ + 41 + ], + "id": [ + 6672 + ], + "map_ids": [ + 6672 + ], + "notes": [ + 85 + ], + "regions": [ + 85 + ], + "team_id": [ + 6672 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_settings_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 5139 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_settings_obj_rel_insert_input": { + "data": [ + 5146 + ], + "on_conflict": [ + 5151 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_settings_on_conflict": { + "constraint": [ + 5144 + ], + "update_columns": [ + 5162 + ], + "where": [ + 5143 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_settings_order_by": { + "allow_outside_availability": [ + 3648 + ], + "created_at": [ + 3648 + ], + "elo_max": [ + 3648 + ], + "elo_min": [ + 3648 + ], + "enabled": [ + 3648 + ], + "id": [ + 3648 + ], + "map_ids": [ + 3648 + ], + "notes": [ + 3648 + ], + "regions": [ + 3648 + ], + "team": [ + 5216 + ], + "team_id": [ + 3648 + ], + "updated_at": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_settings_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_settings_select_column": {}, + "team_scrim_settings_set_input": { + "allow_outside_availability": [ + 6 + ], + "created_at": [ + 5243 + ], + "elo_max": [ + 41 + ], + "elo_min": [ + 41 + ], + "enabled": [ + 6 + ], + "id": [ + 6672 + ], + "map_ids": [ + 6672 + ], + "notes": [ + 85 + ], + "regions": [ + 85 + ], + "team_id": [ + 6672 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_settings_stddev_fields": { + "elo_max": [ + 32 + ], + "elo_min": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_settings_stddev_pop_fields": { + "elo_max": [ + 32 + ], + "elo_min": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_settings_stddev_samp_fields": { + "elo_max": [ + 32 + ], + "elo_min": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_settings_stream_cursor_input": { + "initial_value": [ + 5160 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_settings_stream_cursor_value_input": { + "allow_outside_availability": [ + 6 + ], + "created_at": [ + 5243 + ], + "elo_max": [ + 41 + ], + "elo_min": [ + 41 + ], + "enabled": [ + 6 + ], + "id": [ + 6672 + ], + "map_ids": [ + 6672 + ], + "notes": [ + 85 + ], + "regions": [ + 85 + ], + "team_id": [ + 6672 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_settings_sum_fields": { + "elo_max": [ + 41 + ], + "elo_min": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_settings_update_column": {}, + "team_scrim_settings_updates": { + "_inc": [ + 5145 + ], + "_set": [ + 5155 + ], + "where": [ + 5143 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_settings_var_pop_fields": { + "elo_max": [ + 32 + ], + "elo_min": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_settings_var_samp_fields": { + "elo_max": [ + 32 + ], + "elo_min": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_scrim_settings_variance_fields": { + "elo_max": [ + 32 + ], + "elo_min": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_suggestions": { + "created_at": [ + 5243 + ], + "group_hash": [ + 85 + ], + "id": [ + 6672 + ], + "last_notified_at": [ + 5243 + ], + "member_steam_ids": [ + 312 + ], + "status": [ + 85 + ], + "together_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "team_suggestions_aggregate": { + "aggregate": [ + 5169 + ], + "nodes": [ + 5167 + ], + "__typename": [ + 85 + ] + }, + "team_suggestions_aggregate_fields": { + "avg": [ + 5170 + ], + "count": [ + 41, + { + "columns": [ + 5181, + "[team_suggestions_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 5175 + ], + "min": [ + 5176 + ], + "stddev": [ + 5183 + ], + "stddev_pop": [ + 5184 + ], + "stddev_samp": [ + 5185 + ], + "sum": [ + 5188 + ], + "var_pop": [ + 5191 + ], + "var_samp": [ + 5192 + ], + "variance": [ + 5193 + ], + "__typename": [ + 85 + ] + }, + "team_suggestions_avg_fields": { + "together_count": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_suggestions_bool_exp": { + "_and": [ + 5171 + ], + "_not": [ + 5171 + ], + "_or": [ + 5171 + ], + "created_at": [ + 5244 + ], + "group_hash": [ + 87 + ], + "id": [ + 6674 + ], + "last_notified_at": [ + 5244 + ], + "member_steam_ids": [ + 313 + ], + "status": [ + 87 + ], + "together_count": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "team_suggestions_constraint": {}, + "team_suggestions_inc_input": { + "together_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "team_suggestions_insert_input": { + "created_at": [ + 5243 + ], + "group_hash": [ + 85 + ], + "id": [ + 6672 + ], + "last_notified_at": [ + 5243 + ], + "member_steam_ids": [ + 312 + ], + "status": [ + 85 + ], + "together_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "team_suggestions_max_fields": { + "created_at": [ + 5243 + ], + "group_hash": [ + 85 + ], + "id": [ + 6672 + ], + "last_notified_at": [ + 5243 + ], + "member_steam_ids": [ + 312 + ], + "status": [ + 85 + ], + "together_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "team_suggestions_min_fields": { + "created_at": [ + 5243 + ], + "group_hash": [ + 85 + ], + "id": [ + 6672 + ], + "last_notified_at": [ + 5243 + ], + "member_steam_ids": [ + 312 + ], + "status": [ + 85 + ], + "together_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "team_suggestions_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 5167 + ], + "__typename": [ + 85 + ] + }, + "team_suggestions_on_conflict": { + "constraint": [ + 5172 + ], + "update_columns": [ + 5189 + ], + "where": [ + 5171 + ], + "__typename": [ + 85 + ] + }, + "team_suggestions_order_by": { + "created_at": [ + 3648 + ], + "group_hash": [ + 3648 + ], + "id": [ + 3648 + ], + "last_notified_at": [ + 3648 + ], + "member_steam_ids": [ + 3648 + ], + "status": [ + 3648 + ], + "together_count": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "team_suggestions_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "team_suggestions_select_column": {}, + "team_suggestions_set_input": { + "created_at": [ + 5243 + ], + "group_hash": [ + 85 + ], + "id": [ + 6672 + ], + "last_notified_at": [ + 5243 + ], + "member_steam_ids": [ + 312 + ], + "status": [ + 85 + ], + "together_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "team_suggestions_stddev_fields": { + "together_count": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_suggestions_stddev_pop_fields": { + "together_count": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_suggestions_stddev_samp_fields": { + "together_count": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_suggestions_stream_cursor_input": { + "initial_value": [ + 5187 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "team_suggestions_stream_cursor_value_input": { + "created_at": [ + 5243 + ], + "group_hash": [ + 85 + ], + "id": [ + 6672 + ], + "last_notified_at": [ + 5243 + ], + "member_steam_ids": [ + 312 + ], + "status": [ + 85 + ], + "together_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "team_suggestions_sum_fields": { + "together_count": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "team_suggestions_update_column": {}, + "team_suggestions_updates": { + "_inc": [ + 5173 + ], + "_set": [ + 5182 + ], + "where": [ + 5171 + ], + "__typename": [ + 85 + ] + }, + "team_suggestions_var_pop_fields": { + "together_count": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_suggestions_var_samp_fields": { + "together_count": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "team_suggestions_variance_fields": { + "together_count": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "teams": { + "avatar_url": [ + 85 + ], + "awards": [ + 243, + { + "distinct_on": [ + 264, + "[award_recipients_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 262, + "[award_recipients_order_by!]" + ], + "where": [ + 252 + ] + } + ], + "awards_aggregate": [ + 244, + { + "distinct_on": [ + 264, + "[award_recipients_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 262, + "[award_recipients_order_by!]" + ], + "where": [ + 252 + ] + } + ], + "can_change_role": [ + 6 + ], + "can_invite": [ + 6 + ], + "can_manage_scrims": [ + 6 + ], + "can_remove": [ + 6 + ], + "captain": [ + 4606 + ], + "captain_steam_id": [ + 312 + ], + "id": [ + 6672 + ], + "invites": [ + 4911, + { + "distinct_on": [ + 4932, + "[team_invites_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4930, + "[team_invites_order_by!]" + ], + "where": [ + 4920 + ] + } + ], + "invites_aggregate": [ + 4912, + { + "distinct_on": [ + 4932, + "[team_invites_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4930, + "[team_invites_order_by!]" + ], + "where": [ + 4920 + ] + } + ], + "is_organization": [ + 6 + ], + "match_lineups": [ + 3086, + { + "distinct_on": [ + 3108, + "[match_lineups_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3106, + "[match_lineups_order_by!]" + ], + "where": [ + 3095 + ] + } + ], + "match_lineups_aggregate": [ + 3087, + { + "distinct_on": [ + 3108, + "[match_lineups_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3106, + "[match_lineups_order_by!]" + ], + "where": [ + 3095 + ] + } + ], + "matches": [ + 3432, + { + "distinct_on": [ + 3456, + "[matches_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3454, + "[matches_order_by!]" + ], + "where": [ + 3443 + ] + } + ], + "name": [ + 85 + ], + "owner": [ + 4606 + ], + "owner_steam_id": [ + 312 + ], + "ranks": [ + 7374 + ], + "reputation": [ + 7394 + ], + "role": [ + 85 + ], + "roster": [ + 4952, + { + "distinct_on": [ + 4975, + "[team_roster_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4973, + "[team_roster_order_by!]" + ], + "where": [ + 4963 + ] + } + ], + "roster_aggregate": [ + 4953, + { + "distinct_on": [ + 4975, + "[team_roster_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4973, + "[team_roster_order_by!]" + ], + "where": [ + 4963 + ] + } + ], + "scrim_availability": [ + 5024, + { + "distinct_on": [ + 5044, + "[team_scrim_availability_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5042, + "[team_scrim_availability_order_by!]" + ], + "where": [ + 5033 + ] + } + ], + "scrim_availability_aggregate": [ + 5025, + { + "distinct_on": [ + 5044, + "[team_scrim_availability_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5042, + "[team_scrim_availability_order_by!]" + ], + "where": [ + 5033 + ] + } + ], + "scrim_settings": [ + 5139 + ], + "short_name": [ + 85 + ], + "tournament_teams": [ + 5850, + { + "distinct_on": [ + 5874, + "[tournament_teams_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5872, + "[tournament_teams_order_by!]" + ], + "where": [ + 5861 + ] + } + ], + "tournament_teams_aggregate": [ + 5851, + { + "distinct_on": [ + 5874, + "[tournament_teams_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5872, + "[tournament_teams_order_by!]" + ], + "where": [ + 5861 + ] + } + ], + "__typename": [ + 85 + ] + }, + "teams_aggregate": { + "aggregate": [ + 5200 + ], + "nodes": [ + 5194 + ], + "__typename": [ + 85 + ] + }, + "teams_aggregate_bool_exp": { + "bool_and": [ + 5197 + ], + "bool_or": [ + 5198 + ], + "count": [ + 5199 + ], + "__typename": [ + 85 + ] + }, + "teams_aggregate_bool_exp_bool_and": { + "arguments": [ + 5219 + ], + "distinct": [ + 6 + ], + "filter": [ + 5205 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "teams_aggregate_bool_exp_bool_or": { + "arguments": [ + 5220 + ], + "distinct": [ + 6 + ], + "filter": [ + 5205 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "teams_aggregate_bool_exp_count": { + "arguments": [ + 5218 + ], + "distinct": [ + 6 + ], + "filter": [ + 5205 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "teams_aggregate_fields": { + "avg": [ + 5203 + ], + "count": [ + 41, + { + "columns": [ + 5218, + "[teams_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 5209 + ], + "min": [ + 5211 + ], + "stddev": [ + 5222 + ], + "stddev_pop": [ + 5224 + ], + "stddev_samp": [ + 5226 + ], + "sum": [ + 5230 + ], + "var_pop": [ + 5234 + ], + "var_samp": [ + 5236 + ], + "variance": [ + 5238 + ], + "__typename": [ + 85 + ] + }, + "teams_aggregate_order_by": { + "avg": [ + 5204 + ], + "count": [ + 3648 + ], + "max": [ + 5210 + ], + "min": [ + 5212 + ], + "stddev": [ + 5223 + ], + "stddev_pop": [ + 5225 + ], + "stddev_samp": [ + 5227 + ], + "sum": [ + 5231 + ], + "var_pop": [ + 5235 + ], + "var_samp": [ + 5237 + ], + "variance": [ + 5239 + ], + "__typename": [ + 85 + ] + }, + "teams_arr_rel_insert_input": { + "data": [ + 5208 + ], + "on_conflict": [ + 5215 + ], + "__typename": [ + 85 + ] + }, + "teams_avg_fields": { + "captain_steam_id": [ + 32 + ], + "owner_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "teams_avg_order_by": { + "captain_steam_id": [ + 3648 + ], + "owner_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "teams_bool_exp": { + "_and": [ + 5205 + ], + "_not": [ + 5205 + ], + "_or": [ + 5205 + ], + "avatar_url": [ + 87 + ], + "awards": [ + 252 + ], + "awards_aggregate": [ + 245 + ], + "can_change_role": [ + 7 + ], + "can_invite": [ + 7 + ], + "can_manage_scrims": [ + 7 + ], + "can_remove": [ + 7 + ], + "captain": [ + 4610 + ], + "captain_steam_id": [ + 314 + ], + "id": [ + 6674 + ], + "invites": [ + 4920 + ], + "invites_aggregate": [ + 4913 + ], + "is_organization": [ + 7 + ], + "match_lineups": [ + 3095 + ], + "match_lineups_aggregate": [ + 3088 + ], + "matches": [ + 3443 + ], + "name": [ + 87 + ], + "owner": [ + 4610 + ], + "owner_steam_id": [ + 314 + ], + "ranks": [ + 7378 + ], + "reputation": [ + 7398 + ], + "role": [ + 87 + ], + "roster": [ + 4963 + ], + "roster_aggregate": [ + 4954 + ], + "scrim_availability": [ + 5033 + ], + "scrim_availability_aggregate": [ + 5026 + ], + "scrim_settings": [ + 5143 + ], + "short_name": [ + 87 + ], + "tournament_teams": [ + 5861 + ], + "tournament_teams_aggregate": [ + 5852 + ], + "__typename": [ + 85 + ] + }, + "teams_constraint": {}, + "teams_inc_input": { + "captain_steam_id": [ + 312 + ], + "owner_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "teams_insert_input": { + "avatar_url": [ + 85 + ], + "awards": [ + 249 + ], + "captain": [ + 4617 + ], + "captain_steam_id": [ + 312 + ], + "id": [ + 6672 + ], + "invites": [ + 4917 + ], + "is_organization": [ + 6 + ], + "match_lineups": [ + 3092 + ], + "name": [ + 85 + ], + "owner": [ + 4617 + ], + "owner_steam_id": [ + 312 + ], + "ranks": [ + 7382 + ], + "reputation": [ + 7402 + ], + "roster": [ + 4960 + ], + "scrim_availability": [ + 5032 + ], + "scrim_settings": [ + 5150 + ], + "short_name": [ + 85 + ], + "tournament_teams": [ + 5858 + ], + "__typename": [ + 85 + ] + }, + "teams_max_fields": { + "avatar_url": [ + 85 + ], + "captain_steam_id": [ + 312 + ], + "id": [ + 6672 + ], + "name": [ + 85 + ], + "owner_steam_id": [ + 312 + ], + "role": [ + 85 + ], + "short_name": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "teams_max_order_by": { + "avatar_url": [ + 3648 + ], + "captain_steam_id": [ + 3648 + ], + "id": [ + 3648 + ], + "name": [ + 3648 + ], + "owner_steam_id": [ + 3648 + ], + "short_name": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "teams_min_fields": { + "avatar_url": [ + 85 + ], + "captain_steam_id": [ + 312 + ], + "id": [ + 6672 + ], + "name": [ + 85 + ], + "owner_steam_id": [ + 312 + ], + "role": [ + 85 + ], + "short_name": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "teams_min_order_by": { + "avatar_url": [ + 3648 + ], + "captain_steam_id": [ + 3648 + ], + "id": [ + 3648 + ], + "name": [ + 3648 + ], + "owner_steam_id": [ + 3648 + ], + "short_name": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "teams_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 5194 + ], + "__typename": [ + 85 + ] + }, + "teams_obj_rel_insert_input": { + "data": [ + 5208 + ], + "on_conflict": [ + 5215 + ], + "__typename": [ + 85 + ] + }, + "teams_on_conflict": { + "constraint": [ + 5206 + ], + "update_columns": [ + 5232 + ], + "where": [ + 5205 + ], + "__typename": [ + 85 + ] + }, + "teams_order_by": { + "avatar_url": [ + 3648 + ], + "awards_aggregate": [ + 248 + ], + "can_change_role": [ + 3648 + ], + "can_invite": [ + 3648 + ], + "can_manage_scrims": [ + 3648 + ], + "can_remove": [ + 3648 + ], + "captain": [ + 4619 + ], + "captain_steam_id": [ + 3648 + ], + "id": [ + 3648 + ], + "invites_aggregate": [ + 4916 + ], + "is_organization": [ + 3648 + ], + "match_lineups_aggregate": [ + 3091 + ], + "matches_aggregate": [ + 3439 + ], + "name": [ + 3648 + ], + "owner": [ + 4619 + ], + "owner_steam_id": [ + 3648 + ], + "ranks": [ + 7383 + ], + "reputation": [ + 7403 + ], + "role": [ + 3648 + ], + "roster_aggregate": [ + 4959 + ], + "scrim_availability_aggregate": [ + 5031 + ], + "scrim_settings": [ + 5152 + ], + "short_name": [ + 3648 + ], + "tournament_teams_aggregate": [ + 5857 + ], + "__typename": [ + 85 + ] + }, + "teams_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "teams_select_column": {}, + "teams_select_column_teams_aggregate_bool_exp_bool_and_arguments_columns": {}, + "teams_select_column_teams_aggregate_bool_exp_bool_or_arguments_columns": {}, + "teams_set_input": { + "avatar_url": [ + 85 + ], + "captain_steam_id": [ + 312 + ], + "id": [ + 6672 + ], + "is_organization": [ + 6 + ], + "name": [ + 85 + ], + "owner_steam_id": [ + 312 + ], + "short_name": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "teams_stddev_fields": { + "captain_steam_id": [ + 32 + ], + "owner_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "teams_stddev_order_by": { + "captain_steam_id": [ + 3648 + ], + "owner_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "teams_stddev_pop_fields": { + "captain_steam_id": [ + 32 + ], + "owner_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "teams_stddev_pop_order_by": { + "captain_steam_id": [ + 3648 + ], + "owner_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "teams_stddev_samp_fields": { + "captain_steam_id": [ + 32 + ], + "owner_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "teams_stddev_samp_order_by": { + "captain_steam_id": [ + 3648 + ], + "owner_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "teams_stream_cursor_input": { + "initial_value": [ + 5229 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "teams_stream_cursor_value_input": { + "avatar_url": [ + 85 + ], + "captain_steam_id": [ + 312 + ], + "id": [ + 6672 + ], + "is_organization": [ + 6 + ], + "name": [ + 85 + ], + "owner_steam_id": [ + 312 + ], + "short_name": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "teams_sum_fields": { + "captain_steam_id": [ + 312 + ], + "owner_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "teams_sum_order_by": { + "captain_steam_id": [ + 3648 + ], + "owner_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "teams_update_column": {}, + "teams_updates": { + "_inc": [ + 5207 + ], + "_set": [ + 5221 + ], + "where": [ + 5205 + ], + "__typename": [ + 85 + ] + }, + "teams_var_pop_fields": { + "captain_steam_id": [ + 32 + ], + "owner_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "teams_var_pop_order_by": { + "captain_steam_id": [ + 3648 + ], + "owner_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "teams_var_samp_fields": { + "captain_steam_id": [ + 32 + ], + "owner_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "teams_var_samp_order_by": { + "captain_steam_id": [ + 3648 + ], + "owner_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "teams_variance_fields": { + "captain_steam_id": [ + 32 + ], + "owner_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "teams_variance_order_by": { + "captain_steam_id": [ + 3648 + ], + "owner_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "time": {}, + "time_comparison_exp": { + "_eq": [ + 5240 + ], + "_gt": [ + 5240 + ], + "_gte": [ + 5240 + ], + "_in": [ + 5240 + ], + "_is_null": [ + 6 + ], + "_lt": [ + 5240 + ], + "_lte": [ + 5240 + ], + "_neq": [ + 5240 + ], + "_nin": [ + 5240 + ], + "__typename": [ + 85 + ] + }, + "timestamp": {}, + "timestamptz": {}, + "timestamptz_comparison_exp": { + "_eq": [ + 5243 + ], + "_gt": [ + 5243 + ], + "_gte": [ + 5243 + ], + "_in": [ + 5243 + ], + "_is_null": [ + 6 + ], + "_lt": [ + 5243 + ], + "_lte": [ + 5243 + ], + "_neq": [ + 5243 + ], + "_nin": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "tournament_awards": { + "award": [ + 284 + ], + "award_id": [ + 6672 + ], + "created_at": [ + 5243 + ], + "custom_name": [ + 85 + ], + "id": [ + 6672 + ], + "image_url": [ + 85 + ], + "placement": [ + 41 + ], + "silhouette": [ + 41 + ], + "tournament": [ + 5896 + ], + "tournament_id": [ + 6672 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "tournament_awards_aggregate": { + "aggregate": [ + 5249 + ], + "nodes": [ + 5245 + ], + "__typename": [ + 85 + ] + }, + "tournament_awards_aggregate_bool_exp": { + "count": [ + 5248 + ], + "__typename": [ + 85 + ] + }, + "tournament_awards_aggregate_bool_exp_count": { + "arguments": [ + 5267 + ], + "distinct": [ + 6 + ], + "filter": [ + 5254 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "tournament_awards_aggregate_fields": { + "avg": [ + 5252 + ], + "count": [ + 41, + { + "columns": [ + 5267, + "[tournament_awards_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 5258 + ], + "min": [ + 5260 + ], + "stddev": [ + 5269 + ], + "stddev_pop": [ + 5271 + ], + "stddev_samp": [ + 5273 + ], + "sum": [ + 5277 + ], + "var_pop": [ + 5281 + ], + "var_samp": [ + 5283 + ], + "variance": [ + 5285 + ], + "__typename": [ + 85 + ] + }, + "tournament_awards_aggregate_order_by": { + "avg": [ + 5253 + ], + "count": [ + 3648 + ], + "max": [ + 5259 + ], + "min": [ + 5261 + ], + "stddev": [ + 5270 + ], + "stddev_pop": [ + 5272 + ], + "stddev_samp": [ + 5274 + ], + "sum": [ + 5278 + ], + "var_pop": [ + 5282 + ], + "var_samp": [ + 5284 + ], + "variance": [ + 5286 + ], + "__typename": [ + 85 + ] + }, + "tournament_awards_arr_rel_insert_input": { + "data": [ + 5257 + ], + "on_conflict": [ + 5264 + ], + "__typename": [ + 85 + ] + }, + "tournament_awards_avg_fields": { + "placement": [ + 32 + ], + "silhouette": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_awards_avg_order_by": { + "placement": [ + 3648 + ], + "silhouette": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_awards_bool_exp": { + "_and": [ + 5254 + ], + "_not": [ + 5254 + ], + "_or": [ + 5254 + ], + "award": [ + 288 + ], + "award_id": [ + 6674 + ], + "created_at": [ + 5244 + ], + "custom_name": [ + 87 + ], + "id": [ + 6674 + ], + "image_url": [ + 87 + ], + "placement": [ + 42 + ], + "silhouette": [ + 42 + ], + "tournament": [ + 5917 + ], + "tournament_id": [ + 6674 + ], + "updated_at": [ + 5244 + ], + "__typename": [ + 85 + ] + }, + "tournament_awards_constraint": {}, + "tournament_awards_inc_input": { + "placement": [ + 41 + ], + "silhouette": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "tournament_awards_insert_input": { + "award": [ + 295 + ], + "award_id": [ + 6672 + ], + "created_at": [ + 5243 + ], + "custom_name": [ + 85 + ], + "id": [ + 6672 + ], + "image_url": [ + 85 + ], + "placement": [ + 41 + ], + "silhouette": [ + 41 + ], + "tournament": [ + 5926 + ], + "tournament_id": [ + 6672 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "tournament_awards_max_fields": { + "award_id": [ + 6672 + ], + "created_at": [ + 5243 + ], + "custom_name": [ + 85 + ], + "id": [ + 6672 + ], + "image_url": [ + 85 + ], + "placement": [ + 41 + ], + "silhouette": [ + 41 + ], + "tournament_id": [ + 6672 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "tournament_awards_max_order_by": { + "award_id": [ + 3648 + ], + "created_at": [ + 3648 + ], + "custom_name": [ + 3648 + ], + "id": [ + 3648 + ], + "image_url": [ + 3648 + ], + "placement": [ + 3648 + ], + "silhouette": [ + 3648 + ], + "tournament_id": [ + 3648 + ], + "updated_at": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_awards_min_fields": { + "award_id": [ + 6672 + ], + "created_at": [ + 5243 + ], + "custom_name": [ + 85 + ], + "id": [ + 6672 + ], + "image_url": [ + 85 + ], + "placement": [ + 41 + ], + "silhouette": [ + 41 + ], + "tournament_id": [ + 6672 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "tournament_awards_min_order_by": { + "award_id": [ + 3648 + ], + "created_at": [ + 3648 + ], + "custom_name": [ + 3648 + ], + "id": [ + 3648 + ], + "image_url": [ + 3648 + ], + "placement": [ + 3648 + ], + "silhouette": [ + 3648 + ], + "tournament_id": [ + 3648 + ], + "updated_at": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_awards_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 5245 + ], + "__typename": [ + 85 + ] + }, + "tournament_awards_obj_rel_insert_input": { + "data": [ + 5257 + ], + "on_conflict": [ + 5264 + ], + "__typename": [ + 85 + ] + }, + "tournament_awards_on_conflict": { + "constraint": [ + 5255 + ], + "update_columns": [ + 5279 + ], + "where": [ + 5254 + ], + "__typename": [ + 85 + ] + }, + "tournament_awards_order_by": { + "award": [ + 297 + ], + "award_id": [ + 3648 + ], + "created_at": [ + 3648 + ], + "custom_name": [ + 3648 + ], + "id": [ + 3648 + ], + "image_url": [ + 3648 + ], + "placement": [ + 3648 + ], + "silhouette": [ + 3648 + ], + "tournament": [ + 5928 + ], + "tournament_id": [ + 3648 + ], + "updated_at": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_awards_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_awards_select_column": {}, + "tournament_awards_set_input": { + "award_id": [ + 6672 + ], + "created_at": [ + 5243 + ], + "custom_name": [ + 85 + ], + "id": [ + 6672 + ], + "image_url": [ + 85 + ], + "placement": [ + 41 + ], + "silhouette": [ + 41 + ], + "tournament_id": [ + 6672 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "tournament_awards_stddev_fields": { + "placement": [ + 32 + ], + "silhouette": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_awards_stddev_order_by": { + "placement": [ + 3648 + ], + "silhouette": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_awards_stddev_pop_fields": { + "placement": [ + 32 + ], + "silhouette": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_awards_stddev_pop_order_by": { + "placement": [ + 3648 + ], + "silhouette": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_awards_stddev_samp_fields": { + "placement": [ + 32 + ], + "silhouette": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_awards_stddev_samp_order_by": { + "placement": [ + 3648 + ], + "silhouette": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_awards_stream_cursor_input": { + "initial_value": [ + 5276 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "tournament_awards_stream_cursor_value_input": { + "award_id": [ + 6672 + ], + "created_at": [ + 5243 + ], + "custom_name": [ + 85 + ], + "id": [ + 6672 + ], + "image_url": [ + 85 + ], + "placement": [ + 41 + ], + "silhouette": [ + 41 + ], + "tournament_id": [ + 6672 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "tournament_awards_sum_fields": { + "placement": [ + 41 + ], + "silhouette": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "tournament_awards_sum_order_by": { + "placement": [ + 3648 + ], + "silhouette": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_awards_update_column": {}, + "tournament_awards_updates": { + "_inc": [ + 5256 + ], + "_set": [ + 5268 + ], + "where": [ + 5254 + ], + "__typename": [ + 85 + ] + }, + "tournament_awards_var_pop_fields": { + "placement": [ + 32 + ], + "silhouette": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_awards_var_pop_order_by": { + "placement": [ + 3648 + ], + "silhouette": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_awards_var_samp_fields": { + "placement": [ + 32 + ], + "silhouette": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_awards_var_samp_order_by": { + "placement": [ + 3648 + ], + "silhouette": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_awards_variance_fields": { + "placement": [ + 32 + ], + "silhouette": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_awards_variance_order_by": { + "placement": [ + 3648 + ], + "silhouette": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_brackets": { + "bye": [ + 6 + ], + "created_at": [ + 5243 + ], + "feeding_brackets": [ + 5287, + { + "distinct_on": [ + 5311, + "[tournament_brackets_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5309, + "[tournament_brackets_order_by!]" + ], + "where": [ + 5298 + ] + } + ], + "finished": [ + 6 + ], + "group": [ + 3646 + ], + "id": [ + 6672 + ], + "loser_bracket": [ + 5287 + ], + "loser_parent_bracket_id": [ + 6672 + ], + "match": [ + 3432 + ], + "match_id": [ + 6672 + ], + "match_number": [ + 41 + ], + "match_options_id": [ + 6672 + ], + "options": [ + 3290 + ], + "parent_bracket": [ + 5287 + ], + "parent_bracket_id": [ + 6672 + ], + "path": [ + 85 + ], + "round": [ + 41 + ], + "scheduled_at": [ + 5243 + ], + "scheduled_eta": [ + 5243 + ], + "scheduling_proposals": [ + 2576, + { + "distinct_on": [ + 2597, + "[league_scheduling_proposals_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2595, + "[league_scheduling_proposals_order_by!]" + ], + "where": [ + 2585 + ] + } + ], + "scheduling_proposals_aggregate": [ + 2577, + { + "distinct_on": [ + 2597, + "[league_scheduling_proposals_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2595, + "[league_scheduling_proposals_order_by!]" + ], + "where": [ + 2585 + ] + } + ], + "stage": [ + 5717 + ], + "team_1": [ + 5850 + ], + "team_1_seed": [ + 41 + ], + "team_2": [ + 5850 + ], + "team_2_seed": [ + 41 + ], + "tournament_stage_id": [ + 6672 + ], + "tournament_team_id_1": [ + 6672 + ], + "tournament_team_id_2": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_brackets_aggregate": { + "aggregate": [ + 5293 + ], + "nodes": [ + 5287 + ], + "__typename": [ + 85 + ] + }, + "tournament_brackets_aggregate_bool_exp": { + "bool_and": [ + 5290 + ], + "bool_or": [ + 5291 + ], + "count": [ + 5292 + ], + "__typename": [ + 85 + ] + }, + "tournament_brackets_aggregate_bool_exp_bool_and": { + "arguments": [ + 5312 + ], + "distinct": [ + 6 + ], + "filter": [ + 5298 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "tournament_brackets_aggregate_bool_exp_bool_or": { + "arguments": [ + 5313 + ], + "distinct": [ + 6 + ], + "filter": [ + 5298 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "tournament_brackets_aggregate_bool_exp_count": { + "arguments": [ + 5311 + ], + "distinct": [ + 6 + ], + "filter": [ + 5298 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "tournament_brackets_aggregate_fields": { + "avg": [ + 5296 + ], + "count": [ + 41, + { + "columns": [ + 5311, + "[tournament_brackets_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 5302 + ], + "min": [ + 5304 + ], + "stddev": [ + 5315 + ], + "stddev_pop": [ + 5317 + ], + "stddev_samp": [ + 5319 + ], + "sum": [ + 5323 + ], + "var_pop": [ + 5327 + ], + "var_samp": [ + 5329 + ], + "variance": [ + 5331 + ], + "__typename": [ + 85 + ] + }, + "tournament_brackets_aggregate_order_by": { + "avg": [ + 5297 + ], + "count": [ + 3648 + ], + "max": [ + 5303 + ], + "min": [ + 5305 + ], + "stddev": [ + 5316 + ], + "stddev_pop": [ + 5318 + ], + "stddev_samp": [ + 5320 + ], + "sum": [ + 5324 + ], + "var_pop": [ + 5328 + ], + "var_samp": [ + 5330 + ], + "variance": [ + 5332 + ], + "__typename": [ + 85 + ] + }, + "tournament_brackets_arr_rel_insert_input": { + "data": [ + 5301 + ], + "on_conflict": [ + 5308 + ], + "__typename": [ + 85 + ] + }, + "tournament_brackets_avg_fields": { + "group": [ + 32 + ], + "match_number": [ + 32 + ], + "round": [ + 32 + ], + "team_1_seed": [ + 32 + ], + "team_2_seed": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_brackets_avg_order_by": { + "group": [ + 3648 + ], + "match_number": [ + 3648 + ], + "round": [ + 3648 + ], + "team_1_seed": [ + 3648 + ], + "team_2_seed": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_brackets_bool_exp": { + "_and": [ + 5298 + ], + "_not": [ + 5298 + ], + "_or": [ + 5298 + ], + "bye": [ + 7 + ], + "created_at": [ + 5244 + ], + "feeding_brackets": [ + 5298 + ], + "finished": [ + 7 + ], + "group": [ + 3647 + ], + "id": [ + 6674 + ], + "loser_bracket": [ + 5298 + ], + "loser_parent_bracket_id": [ + 6674 + ], + "match": [ + 3443 + ], + "match_id": [ + 6674 + ], + "match_number": [ + 42 + ], + "match_options_id": [ + 6674 + ], + "options": [ + 3301 + ], + "parent_bracket": [ + 5298 + ], + "parent_bracket_id": [ + 6674 + ], + "path": [ + 87 + ], + "round": [ + 42 + ], + "scheduled_at": [ + 5244 + ], + "scheduled_eta": [ + 5244 + ], + "scheduling_proposals": [ + 2585 + ], + "scheduling_proposals_aggregate": [ + 2578 + ], + "stage": [ + 5729 + ], + "team_1": [ + 5861 + ], + "team_1_seed": [ + 42 + ], + "team_2": [ + 5861 + ], + "team_2_seed": [ + 42 + ], + "tournament_stage_id": [ + 6674 + ], + "tournament_team_id_1": [ + 6674 + ], + "tournament_team_id_2": [ + 6674 + ], + "__typename": [ + 85 + ] + }, + "tournament_brackets_constraint": {}, + "tournament_brackets_inc_input": { + "group": [ + 3646 + ], + "match_number": [ + 41 + ], + "round": [ + 41 + ], + "team_1_seed": [ + 41 + ], + "team_2_seed": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "tournament_brackets_insert_input": { + "bye": [ + 6 + ], + "created_at": [ + 5243 + ], + "finished": [ + 6 + ], + "group": [ + 3646 + ], + "id": [ + 6672 + ], + "loser_bracket": [ + 5307 + ], + "loser_parent_bracket_id": [ + 6672 + ], + "match": [ + 3452 + ], + "match_id": [ + 6672 + ], + "match_number": [ + 41 + ], + "match_options_id": [ + 6672 + ], + "options": [ + 3310 + ], + "parent_bracket": [ + 5307 + ], + "parent_bracket_id": [ + 6672 + ], + "path": [ + 85 + ], + "round": [ + 41 + ], + "scheduled_at": [ + 5243 + ], + "scheduled_eta": [ + 5243 + ], + "scheduling_proposals": [ + 2582 + ], + "stage": [ + 5741 + ], + "team_1": [ + 5870 + ], + "team_1_seed": [ + 41 + ], + "team_2": [ + 5870 + ], + "team_2_seed": [ + 41 + ], + "tournament_stage_id": [ + 6672 + ], + "tournament_team_id_1": [ + 6672 + ], + "tournament_team_id_2": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_brackets_max_fields": { + "created_at": [ + 5243 + ], + "group": [ + 3646 + ], + "id": [ + 6672 + ], + "loser_parent_bracket_id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "match_number": [ + 41 + ], + "match_options_id": [ + 6672 + ], + "parent_bracket_id": [ + 6672 + ], + "path": [ + 85 + ], + "round": [ + 41 + ], + "scheduled_at": [ + 5243 + ], + "scheduled_eta": [ + 5243 + ], + "team_1_seed": [ + 41 + ], + "team_2_seed": [ + 41 + ], + "tournament_stage_id": [ + 6672 + ], + "tournament_team_id_1": [ + 6672 + ], + "tournament_team_id_2": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_brackets_max_order_by": { + "created_at": [ + 3648 + ], + "group": [ + 3648 + ], + "id": [ + 3648 + ], + "loser_parent_bracket_id": [ + 3648 + ], + "match_id": [ + 3648 + ], + "match_number": [ + 3648 + ], + "match_options_id": [ + 3648 + ], + "parent_bracket_id": [ + 3648 + ], + "path": [ + 3648 + ], + "round": [ + 3648 + ], + "scheduled_at": [ + 3648 + ], + "scheduled_eta": [ + 3648 + ], + "team_1_seed": [ + 3648 + ], + "team_2_seed": [ + 3648 + ], + "tournament_stage_id": [ + 3648 + ], + "tournament_team_id_1": [ + 3648 + ], + "tournament_team_id_2": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_brackets_min_fields": { + "created_at": [ + 5243 + ], + "group": [ + 3646 + ], + "id": [ + 6672 + ], + "loser_parent_bracket_id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "match_number": [ + 41 + ], + "match_options_id": [ + 6672 + ], + "parent_bracket_id": [ + 6672 + ], + "path": [ + 85 + ], + "round": [ + 41 + ], + "scheduled_at": [ + 5243 + ], + "scheduled_eta": [ + 5243 + ], + "team_1_seed": [ + 41 + ], + "team_2_seed": [ + 41 + ], + "tournament_stage_id": [ + 6672 + ], + "tournament_team_id_1": [ + 6672 + ], + "tournament_team_id_2": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_brackets_min_order_by": { + "created_at": [ + 3648 + ], + "group": [ + 3648 + ], + "id": [ + 3648 + ], + "loser_parent_bracket_id": [ + 3648 + ], + "match_id": [ + 3648 + ], + "match_number": [ + 3648 + ], + "match_options_id": [ + 3648 + ], + "parent_bracket_id": [ + 3648 + ], + "path": [ + 3648 + ], + "round": [ + 3648 + ], + "scheduled_at": [ + 3648 + ], + "scheduled_eta": [ + 3648 + ], + "team_1_seed": [ + 3648 + ], + "team_2_seed": [ + 3648 + ], + "tournament_stage_id": [ + 3648 + ], + "tournament_team_id_1": [ + 3648 + ], + "tournament_team_id_2": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_brackets_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 5287 + ], + "__typename": [ + 85 + ] + }, + "tournament_brackets_obj_rel_insert_input": { + "data": [ + 5301 + ], + "on_conflict": [ + 5308 + ], + "__typename": [ + 85 + ] + }, + "tournament_brackets_on_conflict": { + "constraint": [ + 5299 + ], + "update_columns": [ + 5325 + ], + "where": [ + 5298 + ], + "__typename": [ + 85 + ] + }, + "tournament_brackets_order_by": { + "bye": [ + 3648 + ], + "created_at": [ + 3648 + ], + "feeding_brackets_aggregate": [ + 5294 + ], + "finished": [ + 3648 + ], + "group": [ + 3648 + ], + "id": [ + 3648 + ], + "loser_bracket": [ + 5309 + ], + "loser_parent_bracket_id": [ + 3648 + ], + "match": [ + 3454 + ], + "match_id": [ + 3648 + ], + "match_number": [ + 3648 + ], + "match_options_id": [ + 3648 + ], + "options": [ + 3312 + ], + "parent_bracket": [ + 5309 + ], + "parent_bracket_id": [ + 3648 + ], + "path": [ + 3648 + ], + "round": [ + 3648 + ], + "scheduled_at": [ + 3648 + ], + "scheduled_eta": [ + 3648 + ], + "scheduling_proposals_aggregate": [ + 2581 + ], + "stage": [ + 5743 + ], + "team_1": [ + 5872 + ], + "team_1_seed": [ + 3648 + ], + "team_2": [ + 5872 + ], + "team_2_seed": [ + 3648 + ], + "tournament_stage_id": [ + 3648 + ], + "tournament_team_id_1": [ + 3648 + ], + "tournament_team_id_2": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_brackets_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_brackets_select_column": {}, + "tournament_brackets_select_column_tournament_brackets_aggregate_bool_exp_bool_and_arguments_columns": {}, + "tournament_brackets_select_column_tournament_brackets_aggregate_bool_exp_bool_or_arguments_columns": {}, + "tournament_brackets_set_input": { + "bye": [ + 6 + ], + "created_at": [ + 5243 + ], + "finished": [ + 6 + ], + "group": [ + 3646 + ], + "id": [ + 6672 + ], + "loser_parent_bracket_id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "match_number": [ + 41 + ], + "match_options_id": [ + 6672 + ], + "parent_bracket_id": [ + 6672 + ], + "path": [ + 85 + ], + "round": [ + 41 + ], + "scheduled_at": [ + 5243 + ], + "scheduled_eta": [ + 5243 + ], + "team_1_seed": [ + 41 + ], + "team_2_seed": [ + 41 + ], + "tournament_stage_id": [ + 6672 + ], + "tournament_team_id_1": [ + 6672 + ], + "tournament_team_id_2": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_brackets_stddev_fields": { + "group": [ + 32 + ], + "match_number": [ + 32 + ], + "round": [ + 32 + ], + "team_1_seed": [ + 32 + ], + "team_2_seed": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_brackets_stddev_order_by": { + "group": [ + 3648 + ], + "match_number": [ + 3648 + ], + "round": [ + 3648 + ], + "team_1_seed": [ + 3648 + ], + "team_2_seed": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_brackets_stddev_pop_fields": { + "group": [ + 32 + ], + "match_number": [ + 32 + ], + "round": [ + 32 + ], + "team_1_seed": [ + 32 + ], + "team_2_seed": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_brackets_stddev_pop_order_by": { + "group": [ + 3648 + ], + "match_number": [ + 3648 + ], + "round": [ + 3648 + ], + "team_1_seed": [ + 3648 + ], + "team_2_seed": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_brackets_stddev_samp_fields": { + "group": [ + 32 + ], + "match_number": [ + 32 + ], + "round": [ + 32 + ], + "team_1_seed": [ + 32 + ], + "team_2_seed": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_brackets_stddev_samp_order_by": { + "group": [ + 3648 + ], + "match_number": [ + 3648 + ], + "round": [ + 3648 + ], + "team_1_seed": [ + 3648 + ], + "team_2_seed": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_brackets_stream_cursor_input": { + "initial_value": [ + 5322 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "tournament_brackets_stream_cursor_value_input": { + "bye": [ + 6 + ], + "created_at": [ + 5243 + ], + "finished": [ + 6 + ], + "group": [ + 3646 + ], + "id": [ + 6672 + ], + "loser_parent_bracket_id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "match_number": [ + 41 + ], + "match_options_id": [ + 6672 + ], + "parent_bracket_id": [ + 6672 + ], + "path": [ + 85 + ], + "round": [ + 41 + ], + "scheduled_at": [ + 5243 + ], + "scheduled_eta": [ + 5243 + ], + "team_1_seed": [ + 41 + ], + "team_2_seed": [ + 41 + ], + "tournament_stage_id": [ + 6672 + ], + "tournament_team_id_1": [ + 6672 + ], + "tournament_team_id_2": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_brackets_sum_fields": { + "group": [ + 3646 + ], + "match_number": [ + 41 + ], + "round": [ + 41 + ], + "team_1_seed": [ + 41 + ], + "team_2_seed": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "tournament_brackets_sum_order_by": { + "group": [ + 3648 + ], + "match_number": [ + 3648 + ], + "round": [ + 3648 + ], + "team_1_seed": [ + 3648 + ], + "team_2_seed": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_brackets_update_column": {}, + "tournament_brackets_updates": { + "_inc": [ + 5300 + ], + "_set": [ + 5314 + ], + "where": [ + 5298 + ], + "__typename": [ + 85 + ] + }, + "tournament_brackets_var_pop_fields": { + "group": [ + 32 + ], + "match_number": [ + 32 + ], + "round": [ + 32 + ], + "team_1_seed": [ + 32 + ], + "team_2_seed": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_brackets_var_pop_order_by": { + "group": [ + 3648 + ], + "match_number": [ + 3648 + ], + "round": [ + 3648 + ], + "team_1_seed": [ + 3648 + ], + "team_2_seed": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_brackets_var_samp_fields": { + "group": [ + 32 + ], + "match_number": [ + 32 + ], + "round": [ + 32 + ], + "team_1_seed": [ + 32 + ], + "team_2_seed": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_brackets_var_samp_order_by": { + "group": [ + 3648 + ], + "match_number": [ + 3648 + ], + "round": [ + 3648 + ], + "team_1_seed": [ + 3648 + ], + "team_2_seed": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_brackets_variance_fields": { + "group": [ + 32 + ], + "match_number": [ + 32 + ], + "round": [ + 32 + ], + "team_1_seed": [ + 32 + ], + "team_2_seed": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_brackets_variance_order_by": { + "group": [ + 3648 + ], + "match_number": [ + 3648 + ], + "round": [ + 3648 + ], + "team_1_seed": [ + 3648 + ], + "team_2_seed": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_categories": { + "category": [ + 1554 + ], + "e_tournament_category": [ + 1549 + ], + "tournament": [ + 5896 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_categories_aggregate": { + "aggregate": [ + 5337 + ], + "nodes": [ + 5333 + ], + "__typename": [ + 85 + ] + }, + "tournament_categories_aggregate_bool_exp": { + "count": [ + 5336 + ], + "__typename": [ + 85 + ] + }, + "tournament_categories_aggregate_bool_exp_count": { + "arguments": [ + 5351 + ], + "distinct": [ + 6 + ], + "filter": [ + 5340 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "tournament_categories_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 5351, + "[tournament_categories_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 5343 + ], + "min": [ + 5345 + ], + "__typename": [ + 85 + ] + }, + "tournament_categories_aggregate_order_by": { + "count": [ + 3648 + ], + "max": [ + 5344 + ], + "min": [ + 5346 + ], + "__typename": [ + 85 + ] + }, + "tournament_categories_arr_rel_insert_input": { + "data": [ + 5342 + ], + "on_conflict": [ + 5348 + ], + "__typename": [ + 85 + ] + }, + "tournament_categories_bool_exp": { + "_and": [ + 5340 + ], + "_not": [ + 5340 + ], + "_or": [ + 5340 + ], + "category": [ + 1555 + ], + "e_tournament_category": [ + 1552 + ], + "tournament": [ + 5917 + ], + "tournament_id": [ + 6674 + ], + "__typename": [ + 85 + ] + }, + "tournament_categories_constraint": {}, + "tournament_categories_insert_input": { + "category": [ + 1554 + ], + "e_tournament_category": [ + 1560 + ], + "tournament": [ + 5926 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_categories_max_fields": { + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_categories_max_order_by": { + "tournament_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_categories_min_fields": { + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_categories_min_order_by": { + "tournament_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_categories_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 5333 + ], + "__typename": [ + 85 + ] + }, + "tournament_categories_on_conflict": { + "constraint": [ + 5341 + ], + "update_columns": [ + 5355 + ], + "where": [ + 5340 + ], + "__typename": [ + 85 + ] + }, + "tournament_categories_order_by": { + "category": [ + 3648 + ], + "e_tournament_category": [ + 1562 + ], + "tournament": [ + 5928 + ], + "tournament_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_categories_pk_columns_input": { + "category": [ + 1554 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_categories_select_column": {}, + "tournament_categories_set_input": { + "category": [ + 1554 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_categories_stream_cursor_input": { + "initial_value": [ + 5354 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "tournament_categories_stream_cursor_value_input": { + "category": [ + 1554 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_categories_update_column": {}, + "tournament_categories_updates": { + "_set": [ + 5352 + ], + "where": [ + 5340 + ], + "__typename": [ + 85 + ] + }, + "tournament_free_agents": { + "checked_in_at": [ + 5243 + ], + "created_at": [ + 5243 + ], + "e_tournament_free_agent_status": [ + 1570 + ], + "id": [ + 6672 + ], + "party_id": [ + 6672 + ], + "player": [ + 4606 + ], + "player_steam_id": [ + 312 + ], + "status": [ + 1575 + ], + "tournament": [ + 5896 + ], + "tournament_id": [ + 6672 + ], + "tournament_team": [ + 5850 + ], + "tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_free_agents_aggregate": { + "aggregate": [ + 5361 + ], + "nodes": [ + 5357 + ], + "__typename": [ + 85 + ] + }, + "tournament_free_agents_aggregate_bool_exp": { + "count": [ + 5360 + ], + "__typename": [ + 85 + ] + }, + "tournament_free_agents_aggregate_bool_exp_count": { + "arguments": [ + 5378 + ], + "distinct": [ + 6 + ], + "filter": [ + 5366 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "tournament_free_agents_aggregate_fields": { + "avg": [ + 5364 + ], + "count": [ + 41, + { + "columns": [ + 5378, + "[tournament_free_agents_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 5370 + ], + "min": [ + 5372 + ], + "stddev": [ + 5380 + ], + "stddev_pop": [ + 5382 + ], + "stddev_samp": [ + 5384 + ], + "sum": [ + 5388 + ], + "var_pop": [ + 5392 + ], + "var_samp": [ + 5394 + ], + "variance": [ + 5396 + ], + "__typename": [ + 85 + ] + }, + "tournament_free_agents_aggregate_order_by": { + "avg": [ + 5365 + ], + "count": [ + 3648 + ], + "max": [ + 5371 + ], + "min": [ + 5373 + ], + "stddev": [ + 5381 + ], + "stddev_pop": [ + 5383 + ], + "stddev_samp": [ + 5385 + ], + "sum": [ + 5389 + ], + "var_pop": [ + 5393 + ], + "var_samp": [ + 5395 + ], + "variance": [ + 5397 + ], + "__typename": [ + 85 + ] + }, + "tournament_free_agents_arr_rel_insert_input": { + "data": [ + 5369 + ], + "on_conflict": [ + 5375 + ], + "__typename": [ + 85 + ] + }, + "tournament_free_agents_avg_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_free_agents_avg_order_by": { + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_free_agents_bool_exp": { + "_and": [ + 5366 + ], + "_not": [ + 5366 + ], + "_or": [ + 5366 + ], + "checked_in_at": [ + 5244 + ], + "created_at": [ + 5244 + ], + "e_tournament_free_agent_status": [ + 1573 + ], + "id": [ + 6674 + ], + "party_id": [ + 6674 + ], + "player": [ + 4610 + ], + "player_steam_id": [ + 314 + ], + "status": [ + 1576 + ], + "tournament": [ + 5917 + ], + "tournament_id": [ + 6674 + ], + "tournament_team": [ + 5861 + ], + "tournament_team_id": [ + 6674 + ], + "__typename": [ + 85 + ] + }, + "tournament_free_agents_constraint": {}, + "tournament_free_agents_inc_input": { + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "tournament_free_agents_insert_input": { + "checked_in_at": [ + 5243 + ], + "created_at": [ + 5243 + ], + "e_tournament_free_agent_status": [ + 1581 + ], + "id": [ + 6672 + ], + "party_id": [ + 6672 + ], + "player": [ + 4617 + ], + "player_steam_id": [ + 312 + ], + "status": [ + 1575 + ], + "tournament": [ + 5926 + ], + "tournament_id": [ + 6672 + ], + "tournament_team": [ + 5870 + ], + "tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_free_agents_max_fields": { + "checked_in_at": [ + 5243 + ], + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "party_id": [ + 6672 + ], + "player_steam_id": [ + 312 + ], + "tournament_id": [ + 6672 + ], + "tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_free_agents_max_order_by": { + "checked_in_at": [ + 3648 + ], + "created_at": [ + 3648 + ], + "id": [ + 3648 + ], + "party_id": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "tournament_id": [ + 3648 + ], + "tournament_team_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_free_agents_min_fields": { + "checked_in_at": [ + 5243 + ], + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "party_id": [ + 6672 + ], + "player_steam_id": [ + 312 + ], + "tournament_id": [ + 6672 + ], + "tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_free_agents_min_order_by": { + "checked_in_at": [ + 3648 + ], + "created_at": [ + 3648 + ], + "id": [ + 3648 + ], + "party_id": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "tournament_id": [ + 3648 + ], + "tournament_team_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_free_agents_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 5357 + ], + "__typename": [ + 85 + ] + }, + "tournament_free_agents_on_conflict": { + "constraint": [ + 5367 + ], + "update_columns": [ + 5390 + ], + "where": [ + 5366 + ], + "__typename": [ + 85 + ] + }, + "tournament_free_agents_order_by": { + "checked_in_at": [ + 3648 + ], + "created_at": [ + 3648 + ], + "e_tournament_free_agent_status": [ + 1583 + ], + "id": [ + 3648 + ], + "party_id": [ + 3648 + ], + "player": [ + 4619 + ], + "player_steam_id": [ + 3648 + ], + "status": [ + 3648 + ], + "tournament": [ + 5928 + ], + "tournament_id": [ + 3648 + ], + "tournament_team": [ + 5872 + ], + "tournament_team_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_free_agents_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_free_agents_select_column": {}, + "tournament_free_agents_set_input": { + "checked_in_at": [ + 5243 + ], + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "party_id": [ + 6672 + ], + "player_steam_id": [ + 312 + ], + "status": [ + 1575 + ], + "tournament_id": [ + 6672 + ], + "tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_free_agents_stddev_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_free_agents_stddev_order_by": { + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_free_agents_stddev_pop_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_free_agents_stddev_pop_order_by": { + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_free_agents_stddev_samp_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_free_agents_stddev_samp_order_by": { + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_free_agents_stream_cursor_input": { + "initial_value": [ + 5387 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "tournament_free_agents_stream_cursor_value_input": { + "checked_in_at": [ + 5243 + ], + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "party_id": [ + 6672 + ], + "player_steam_id": [ + 312 + ], + "status": [ + 1575 + ], + "tournament_id": [ + 6672 + ], + "tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_free_agents_sum_fields": { + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "tournament_free_agents_sum_order_by": { + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_free_agents_update_column": {}, + "tournament_free_agents_updates": { + "_inc": [ + 5368 + ], + "_set": [ + 5379 + ], + "where": [ + 5366 + ], + "__typename": [ + 85 + ] + }, + "tournament_free_agents_var_pop_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_free_agents_var_pop_order_by": { + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_free_agents_var_samp_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_free_agents_var_samp_order_by": { + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_free_agents_variance_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_free_agents_variance_order_by": { + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_code_uses": { + "invite_code": [ + 5439 + ], + "invite_code_id": [ + 6672 + ], + "player": [ + 4606 + ], + "player_steam_id": [ + 312 + ], + "team": [ + 5194 + ], + "team_id": [ + 6672 + ], + "used_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_code_uses_aggregate": { + "aggregate": [ + 5402 + ], + "nodes": [ + 5398 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_code_uses_aggregate_bool_exp": { + "count": [ + 5401 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_code_uses_aggregate_bool_exp_count": { + "arguments": [ + 5419 + ], + "distinct": [ + 6 + ], + "filter": [ + 5407 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_code_uses_aggregate_fields": { + "avg": [ + 5405 + ], + "count": [ + 41, + { + "columns": [ + 5419, + "[tournament_invite_code_uses_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 5411 + ], + "min": [ + 5413 + ], + "stddev": [ + 5421 + ], + "stddev_pop": [ + 5423 + ], + "stddev_samp": [ + 5425 + ], + "sum": [ + 5429 + ], + "var_pop": [ + 5433 + ], + "var_samp": [ + 5435 + ], + "variance": [ + 5437 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_code_uses_aggregate_order_by": { + "avg": [ + 5406 + ], + "count": [ + 3648 + ], + "max": [ + 5412 + ], + "min": [ + 5414 + ], + "stddev": [ + 5422 + ], + "stddev_pop": [ + 5424 + ], + "stddev_samp": [ + 5426 + ], + "sum": [ + 5430 + ], + "var_pop": [ + 5434 + ], + "var_samp": [ + 5436 + ], + "variance": [ + 5438 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_code_uses_arr_rel_insert_input": { + "data": [ + 5410 + ], + "on_conflict": [ + 5416 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_code_uses_avg_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_code_uses_avg_order_by": { + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_code_uses_bool_exp": { + "_and": [ + 5407 + ], + "_not": [ + 5407 + ], + "_or": [ + 5407 + ], + "invite_code": [ + 5443 + ], + "invite_code_id": [ + 6674 + ], + "player": [ + 4610 + ], + "player_steam_id": [ + 314 + ], + "team": [ + 5205 + ], + "team_id": [ + 6674 + ], + "used_at": [ + 5244 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_code_uses_constraint": {}, + "tournament_invite_code_uses_inc_input": { + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_code_uses_insert_input": { + "invite_code": [ + 5450 + ], + "invite_code_id": [ + 6672 + ], + "player": [ + 4617 + ], + "player_steam_id": [ + 312 + ], + "team": [ + 5214 + ], + "team_id": [ + 6672 + ], + "used_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_code_uses_max_fields": { + "invite_code_id": [ + 6672 + ], + "player_steam_id": [ + 312 + ], + "team_id": [ + 6672 + ], + "used_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_code_uses_max_order_by": { + "invite_code_id": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "team_id": [ + 3648 + ], + "used_at": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_code_uses_min_fields": { + "invite_code_id": [ + 6672 + ], + "player_steam_id": [ + 312 + ], + "team_id": [ + 6672 + ], + "used_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_code_uses_min_order_by": { + "invite_code_id": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "team_id": [ + 3648 + ], + "used_at": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_code_uses_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 5398 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_code_uses_on_conflict": { + "constraint": [ + 5408 + ], + "update_columns": [ + 5431 + ], + "where": [ + 5407 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_code_uses_order_by": { + "invite_code": [ + 5452 + ], + "invite_code_id": [ + 3648 + ], + "player": [ + 4619 + ], + "player_steam_id": [ + 3648 + ], + "team": [ + 5216 + ], + "team_id": [ + 3648 + ], + "used_at": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_code_uses_pk_columns_input": { + "invite_code_id": [ + 6672 + ], + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_code_uses_select_column": {}, + "tournament_invite_code_uses_set_input": { + "invite_code_id": [ + 6672 + ], + "player_steam_id": [ + 312 + ], + "team_id": [ + 6672 + ], + "used_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_code_uses_stddev_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_code_uses_stddev_order_by": { + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_code_uses_stddev_pop_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_code_uses_stddev_pop_order_by": { + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_code_uses_stddev_samp_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_code_uses_stddev_samp_order_by": { + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_code_uses_stream_cursor_input": { + "initial_value": [ + 5428 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_code_uses_stream_cursor_value_input": { + "invite_code_id": [ + 6672 + ], + "player_steam_id": [ + 312 + ], + "team_id": [ + 6672 + ], + "used_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_code_uses_sum_fields": { + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_code_uses_sum_order_by": { + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_code_uses_update_column": {}, + "tournament_invite_code_uses_updates": { + "_inc": [ + 5409 + ], + "_set": [ + 5420 + ], + "where": [ + 5407 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_code_uses_var_pop_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_code_uses_var_pop_order_by": { + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_code_uses_var_samp_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_code_uses_var_samp_order_by": { + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_code_uses_variance_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_code_uses_variance_order_by": { + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_codes": { + "code": [ + 85 + ], + "created_at": [ + 5243 + ], + "created_by": [ + 4606 + ], + "created_by_player_steam_id": [ + 312 + ], + "expires_at": [ + 5243 + ], + "id": [ + 6672 + ], + "max_uses": [ + 41 + ], + "revoked_at": [ + 5243 + ], + "tournament": [ + 5896 + ], + "tournament_id": [ + 6672 + ], + "used_by": [ + 5398, + { + "distinct_on": [ + 5419, + "[tournament_invite_code_uses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5417, + "[tournament_invite_code_uses_order_by!]" + ], + "where": [ + 5407 + ] + } + ], + "used_by_aggregate": [ + 5399, + { + "distinct_on": [ + 5419, + "[tournament_invite_code_uses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5417, + "[tournament_invite_code_uses_order_by!]" + ], + "where": [ + 5407 + ] + } + ], + "uses": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_codes_aggregate": { + "aggregate": [ + 5441 + ], + "nodes": [ + 5439 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_codes_aggregate_fields": { + "avg": [ + 5442 + ], + "count": [ + 41, + { + "columns": [ + 5454, + "[tournament_invite_codes_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 5447 + ], + "min": [ + 5448 + ], + "stddev": [ + 5456 + ], + "stddev_pop": [ + 5457 + ], + "stddev_samp": [ + 5458 + ], + "sum": [ + 5461 + ], + "var_pop": [ + 5464 + ], + "var_samp": [ + 5465 + ], + "variance": [ + 5466 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_codes_avg_fields": { + "created_by_player_steam_id": [ + 32 + ], + "max_uses": [ + 32 + ], + "uses": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_codes_bool_exp": { + "_and": [ + 5443 + ], + "_not": [ + 5443 + ], + "_or": [ + 5443 + ], + "code": [ + 87 + ], + "created_at": [ + 5244 + ], + "created_by": [ + 4610 + ], + "created_by_player_steam_id": [ + 314 + ], + "expires_at": [ + 5244 + ], + "id": [ + 6674 + ], + "max_uses": [ + 42 + ], + "revoked_at": [ + 5244 + ], + "tournament": [ + 5917 + ], + "tournament_id": [ + 6674 + ], + "used_by": [ + 5407 + ], + "used_by_aggregate": [ + 5400 + ], + "uses": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_codes_constraint": {}, + "tournament_invite_codes_inc_input": { + "created_by_player_steam_id": [ + 312 + ], + "max_uses": [ + 41 + ], + "uses": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_codes_insert_input": { + "code": [ + 85 + ], + "created_at": [ + 5243 + ], + "created_by": [ + 4617 + ], + "created_by_player_steam_id": [ + 312 + ], + "expires_at": [ + 5243 + ], + "id": [ + 6672 + ], + "max_uses": [ + 41 + ], + "revoked_at": [ + 5243 + ], + "tournament": [ + 5926 + ], + "tournament_id": [ + 6672 + ], + "used_by": [ + 5404 + ], + "uses": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_codes_max_fields": { + "code": [ + 85 + ], + "created_at": [ + 5243 + ], + "created_by_player_steam_id": [ + 312 + ], + "expires_at": [ + 5243 + ], + "id": [ + 6672 + ], + "max_uses": [ + 41 + ], + "revoked_at": [ + 5243 + ], + "tournament_id": [ + 6672 + ], + "uses": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_codes_min_fields": { + "code": [ + 85 + ], + "created_at": [ + 5243 + ], + "created_by_player_steam_id": [ + 312 + ], + "expires_at": [ + 5243 + ], + "id": [ + 6672 + ], + "max_uses": [ + 41 + ], + "revoked_at": [ + 5243 + ], + "tournament_id": [ + 6672 + ], + "uses": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_codes_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 5439 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_codes_obj_rel_insert_input": { + "data": [ + 5446 + ], + "on_conflict": [ + 5451 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_codes_on_conflict": { + "constraint": [ + 5444 + ], + "update_columns": [ + 5462 + ], + "where": [ + 5443 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_codes_order_by": { + "code": [ + 3648 + ], + "created_at": [ + 3648 + ], + "created_by": [ + 4619 + ], + "created_by_player_steam_id": [ + 3648 + ], + "expires_at": [ + 3648 + ], + "id": [ + 3648 + ], + "max_uses": [ + 3648 + ], + "revoked_at": [ + 3648 + ], + "tournament": [ + 5928 + ], + "tournament_id": [ + 3648 + ], + "used_by_aggregate": [ + 5403 + ], + "uses": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_codes_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_codes_select_column": {}, + "tournament_invite_codes_set_input": { + "code": [ + 85 + ], + "created_at": [ + 5243 + ], + "created_by_player_steam_id": [ + 312 + ], + "expires_at": [ + 5243 + ], + "id": [ + 6672 + ], + "max_uses": [ + 41 + ], + "revoked_at": [ + 5243 + ], + "tournament_id": [ + 6672 + ], + "uses": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_codes_stddev_fields": { + "created_by_player_steam_id": [ + 32 + ], + "max_uses": [ + 32 + ], + "uses": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_codes_stddev_pop_fields": { + "created_by_player_steam_id": [ + 32 + ], + "max_uses": [ + 32 + ], + "uses": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_codes_stddev_samp_fields": { + "created_by_player_steam_id": [ + 32 + ], + "max_uses": [ + 32 + ], + "uses": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_codes_stream_cursor_input": { + "initial_value": [ + 5460 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_codes_stream_cursor_value_input": { + "code": [ + 85 + ], + "created_at": [ + 5243 + ], + "created_by_player_steam_id": [ + 312 + ], + "expires_at": [ + 5243 + ], + "id": [ + 6672 + ], + "max_uses": [ + 41 + ], + "revoked_at": [ + 5243 + ], + "tournament_id": [ + 6672 + ], + "uses": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_codes_sum_fields": { + "created_by_player_steam_id": [ + 312 + ], + "max_uses": [ + 41 + ], + "uses": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_codes_update_column": {}, + "tournament_invite_codes_updates": { + "_inc": [ + 5445 + ], + "_set": [ + 5455 + ], + "where": [ + 5443 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_codes_var_pop_fields": { + "created_by_player_steam_id": [ + 32 + ], + "max_uses": [ + 32 + ], + "uses": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_codes_var_samp_fields": { + "created_by_player_steam_id": [ + 32 + ], + "max_uses": [ + 32 + ], + "uses": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_invite_codes_variance_fields": { + "created_by_player_steam_id": [ + 32 + ], + "max_uses": [ + 32 + ], + "uses": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_invites": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "invited_by": [ + 4606 + ], + "invited_by_player_steam_id": [ + 312 + ], + "player": [ + 4606 + ], + "steam_id": [ + 312 + ], + "team": [ + 5194 + ], + "team_id": [ + 6672 + ], + "tournament": [ + 5896 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_invites_aggregate": { + "aggregate": [ + 5469 + ], + "nodes": [ + 5467 + ], + "__typename": [ + 85 + ] + }, + "tournament_invites_aggregate_fields": { + "avg": [ + 5470 + ], + "count": [ + 41, + { + "columns": [ + 5481, + "[tournament_invites_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 5475 + ], + "min": [ + 5476 + ], + "stddev": [ + 5483 + ], + "stddev_pop": [ + 5484 + ], + "stddev_samp": [ + 5485 + ], + "sum": [ + 5488 + ], + "var_pop": [ + 5491 + ], + "var_samp": [ + 5492 + ], + "variance": [ + 5493 + ], + "__typename": [ + 85 + ] + }, + "tournament_invites_avg_fields": { + "invited_by_player_steam_id": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_invites_bool_exp": { + "_and": [ + 5471 + ], + "_not": [ + 5471 + ], + "_or": [ + 5471 + ], + "created_at": [ + 5244 + ], + "id": [ + 6674 + ], + "invited_by": [ + 4610 + ], + "invited_by_player_steam_id": [ + 314 + ], + "player": [ + 4610 + ], + "steam_id": [ + 314 + ], + "team": [ + 5205 + ], + "team_id": [ + 6674 + ], + "tournament": [ + 5917 + ], + "tournament_id": [ + 6674 + ], + "__typename": [ + 85 + ] + }, + "tournament_invites_constraint": {}, + "tournament_invites_inc_input": { + "invited_by_player_steam_id": [ + 312 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "tournament_invites_insert_input": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "invited_by": [ + 4617 + ], + "invited_by_player_steam_id": [ + 312 + ], + "player": [ + 4617 + ], + "steam_id": [ + 312 + ], + "team": [ + 5214 + ], + "team_id": [ + 6672 + ], + "tournament": [ + 5926 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_invites_max_fields": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "invited_by_player_steam_id": [ + 312 + ], + "steam_id": [ + 312 + ], + "team_id": [ + 6672 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_invites_min_fields": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "invited_by_player_steam_id": [ + 312 + ], + "steam_id": [ + 312 + ], + "team_id": [ + 6672 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_invites_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 5467 + ], + "__typename": [ + 85 + ] + }, + "tournament_invites_on_conflict": { + "constraint": [ + 5472 + ], + "update_columns": [ + 5489 + ], + "where": [ + 5471 + ], + "__typename": [ + 85 + ] + }, + "tournament_invites_order_by": { + "created_at": [ + 3648 + ], + "id": [ + 3648 + ], + "invited_by": [ + 4619 + ], + "invited_by_player_steam_id": [ + 3648 + ], + "player": [ + 4619 + ], + "steam_id": [ + 3648 + ], + "team": [ + 5216 + ], + "team_id": [ + 3648 + ], + "tournament": [ + 5928 + ], + "tournament_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_invites_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_invites_select_column": {}, + "tournament_invites_set_input": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "invited_by_player_steam_id": [ + 312 + ], + "steam_id": [ + 312 + ], + "team_id": [ + 6672 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_invites_stddev_fields": { + "invited_by_player_steam_id": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_invites_stddev_pop_fields": { + "invited_by_player_steam_id": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_invites_stddev_samp_fields": { + "invited_by_player_steam_id": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_invites_stream_cursor_input": { + "initial_value": [ + 5487 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "tournament_invites_stream_cursor_value_input": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "invited_by_player_steam_id": [ + 312 + ], + "steam_id": [ + 312 + ], + "team_id": [ + 6672 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_invites_sum_fields": { + "invited_by_player_steam_id": [ + 312 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "tournament_invites_update_column": {}, + "tournament_invites_updates": { + "_inc": [ + 5473 + ], + "_set": [ + 5482 + ], + "where": [ + 5471 + ], + "__typename": [ + 85 + ] + }, + "tournament_invites_var_pop_fields": { + "invited_by_player_steam_id": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_invites_var_samp_fields": { + "invited_by_player_steam_id": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_invites_variance_fields": { + "invited_by_player_steam_id": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_leaderboard_entries": { + "adr": [ + 2093 + ], + "assists": [ + 41 + ], + "deaths": [ + 41 + ], + "headshot_percentage": [ + 2093 + ], + "kdr": [ + 2093 + ], + "kills": [ + 41 + ], + "matches_played": [ + 41 + ], + "player_avatar_url": [ + 85 + ], + "player_country": [ + 85 + ], + "player_custom_avatar_url": [ + 85 + ], + "player_name": [ + 85 + ], + "player_steam_id": [ + 85 + ], + "rating": [ + 2093 + ], + "rounds_played": [ + 41 + ], + "team_name": [ + 85 + ], + "tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_leaderboard_entries_aggregate": { + "aggregate": [ + 5496 + ], + "nodes": [ + 5494 + ], + "__typename": [ + 85 + ] + }, + "tournament_leaderboard_entries_aggregate_fields": { + "avg": [ + 5497 + ], + "count": [ + 41, + { + "columns": [ + 5505, + "[tournament_leaderboard_entries_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 5501 + ], + "min": [ + 5502 + ], + "stddev": [ + 5507 + ], + "stddev_pop": [ + 5508 + ], + "stddev_samp": [ + 5509 + ], + "sum": [ + 5512 + ], + "var_pop": [ + 5514 + ], + "var_samp": [ + 5515 + ], + "variance": [ + 5516 + ], + "__typename": [ + 85 + ] + }, + "tournament_leaderboard_entries_avg_fields": { + "adr": [ + 32 + ], + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "headshot_percentage": [ + 32 + ], + "kdr": [ + 32 + ], + "kills": [ + 32 + ], + "matches_played": [ + 32 + ], + "rating": [ + 32 + ], + "rounds_played": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_leaderboard_entries_bool_exp": { + "_and": [ + 5498 + ], + "_not": [ + 5498 + ], + "_or": [ + 5498 + ], + "adr": [ + 2094 + ], + "assists": [ + 42 + ], + "deaths": [ + 42 + ], + "headshot_percentage": [ + 2094 + ], + "kdr": [ + 2094 + ], + "kills": [ + 42 + ], + "matches_played": [ + 42 + ], + "player_avatar_url": [ + 87 + ], + "player_country": [ + 87 + ], + "player_custom_avatar_url": [ + 87 + ], + "player_name": [ + 87 + ], + "player_steam_id": [ + 87 + ], + "rating": [ + 2094 + ], + "rounds_played": [ + 42 + ], + "team_name": [ + 87 + ], + "tournament_team_id": [ + 6674 + ], + "__typename": [ + 85 + ] + }, + "tournament_leaderboard_entries_inc_input": { + "adr": [ + 2093 + ], + "assists": [ + 41 + ], + "deaths": [ + 41 + ], + "headshot_percentage": [ + 2093 + ], + "kdr": [ + 2093 + ], + "kills": [ + 41 + ], + "matches_played": [ + 41 + ], + "rating": [ + 2093 + ], + "rounds_played": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "tournament_leaderboard_entries_insert_input": { + "adr": [ + 2093 + ], + "assists": [ + 41 + ], + "deaths": [ + 41 + ], + "headshot_percentage": [ + 2093 + ], + "kdr": [ + 2093 + ], + "kills": [ + 41 + ], + "matches_played": [ + 41 + ], + "player_avatar_url": [ + 85 + ], + "player_country": [ + 85 + ], + "player_custom_avatar_url": [ + 85 + ], + "player_name": [ + 85 + ], + "player_steam_id": [ + 85 + ], + "rating": [ + 2093 + ], + "rounds_played": [ + 41 + ], + "team_name": [ + 85 + ], + "tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_leaderboard_entries_max_fields": { + "adr": [ + 2093 + ], + "assists": [ + 41 + ], + "deaths": [ + 41 + ], + "headshot_percentage": [ + 2093 + ], + "kdr": [ + 2093 + ], + "kills": [ + 41 + ], + "matches_played": [ + 41 + ], + "player_avatar_url": [ + 85 + ], + "player_country": [ + 85 + ], + "player_custom_avatar_url": [ + 85 + ], + "player_name": [ + 85 + ], + "player_steam_id": [ + 85 + ], + "rating": [ + 2093 + ], + "rounds_played": [ + 41 + ], + "team_name": [ + 85 + ], + "tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_leaderboard_entries_min_fields": { + "adr": [ + 2093 + ], + "assists": [ + 41 + ], + "deaths": [ + 41 + ], + "headshot_percentage": [ + 2093 + ], + "kdr": [ + 2093 + ], + "kills": [ + 41 + ], + "matches_played": [ + 41 + ], + "player_avatar_url": [ + 85 + ], + "player_country": [ + 85 + ], + "player_custom_avatar_url": [ + 85 + ], + "player_name": [ + 85 + ], + "player_steam_id": [ + 85 + ], + "rating": [ + 2093 + ], + "rounds_played": [ + 41 + ], + "team_name": [ + 85 + ], + "tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_leaderboard_entries_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 5494 + ], + "__typename": [ + 85 + ] + }, + "tournament_leaderboard_entries_order_by": { + "adr": [ + 3648 + ], + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "kdr": [ + 3648 + ], + "kills": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "player_avatar_url": [ + 3648 + ], + "player_country": [ + 3648 + ], + "player_custom_avatar_url": [ + 3648 + ], + "player_name": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "rating": [ + 3648 + ], + "rounds_played": [ + 3648 + ], + "team_name": [ + 3648 + ], + "tournament_team_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_leaderboard_entries_select_column": {}, + "tournament_leaderboard_entries_set_input": { + "adr": [ + 2093 + ], + "assists": [ + 41 + ], + "deaths": [ + 41 + ], + "headshot_percentage": [ + 2093 + ], + "kdr": [ + 2093 + ], + "kills": [ + 41 + ], + "matches_played": [ + 41 + ], + "player_avatar_url": [ + 85 + ], + "player_country": [ + 85 + ], + "player_custom_avatar_url": [ + 85 + ], + "player_name": [ + 85 + ], + "player_steam_id": [ + 85 + ], + "rating": [ + 2093 + ], + "rounds_played": [ + 41 + ], + "team_name": [ + 85 + ], + "tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_leaderboard_entries_stddev_fields": { + "adr": [ + 32 + ], + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "headshot_percentage": [ + 32 + ], + "kdr": [ + 32 + ], + "kills": [ + 32 + ], + "matches_played": [ + 32 + ], + "rating": [ + 32 + ], + "rounds_played": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_leaderboard_entries_stddev_pop_fields": { + "adr": [ + 32 + ], + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "headshot_percentage": [ + 32 + ], + "kdr": [ + 32 + ], + "kills": [ + 32 + ], + "matches_played": [ + 32 + ], + "rating": [ + 32 + ], + "rounds_played": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_leaderboard_entries_stddev_samp_fields": { + "adr": [ + 32 + ], + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "headshot_percentage": [ + 32 + ], + "kdr": [ + 32 + ], + "kills": [ + 32 + ], + "matches_played": [ + 32 + ], + "rating": [ + 32 + ], + "rounds_played": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_leaderboard_entries_stream_cursor_input": { + "initial_value": [ + 5511 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "tournament_leaderboard_entries_stream_cursor_value_input": { + "adr": [ + 2093 + ], + "assists": [ + 41 + ], + "deaths": [ + 41 + ], + "headshot_percentage": [ + 2093 + ], + "kdr": [ + 2093 + ], + "kills": [ + 41 + ], + "matches_played": [ + 41 + ], + "player_avatar_url": [ + 85 + ], + "player_country": [ + 85 + ], + "player_custom_avatar_url": [ + 85 + ], + "player_name": [ + 85 + ], + "player_steam_id": [ + 85 + ], + "rating": [ + 2093 + ], + "rounds_played": [ + 41 + ], + "team_name": [ + 85 + ], + "tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_leaderboard_entries_sum_fields": { + "adr": [ + 2093 + ], + "assists": [ + 41 + ], + "deaths": [ + 41 + ], + "headshot_percentage": [ + 2093 + ], + "kdr": [ + 2093 + ], + "kills": [ + 41 + ], + "matches_played": [ + 41 + ], + "rating": [ + 2093 + ], + "rounds_played": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "tournament_leaderboard_entries_updates": { + "_inc": [ + 5499 + ], + "_set": [ + 5506 + ], + "where": [ + 5498 + ], + "__typename": [ + 85 + ] + }, + "tournament_leaderboard_entries_var_pop_fields": { + "adr": [ + 32 + ], + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "headshot_percentage": [ + 32 + ], + "kdr": [ + 32 + ], + "kills": [ + 32 + ], + "matches_played": [ + 32 + ], + "rating": [ + 32 + ], + "rounds_played": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_leaderboard_entries_var_samp_fields": { + "adr": [ + 32 + ], + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "headshot_percentage": [ + 32 + ], + "kdr": [ + 32 + ], + "kills": [ + 32 + ], + "matches_played": [ + 32 + ], + "rating": [ + 32 + ], + "rounds_played": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_leaderboard_entries_variance_fields": { + "adr": [ + 32 + ], + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "headshot_percentage": [ + 32 + ], + "kdr": [ + 32 + ], + "kills": [ + 32 + ], + "matches_played": [ + 32 + ], + "rating": [ + 32 + ], + "rounds_played": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_no_shows": { + "id": [ + 6672 + ], + "occurred_at": [ + 5243 + ], + "player": [ + 4606 + ], + "player_steam_id": [ + 312 + ], + "tournament": [ + 5896 + ], + "tournament_id": [ + 6672 + ], + "tournament_team": [ + 5850 + ], + "tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_no_shows_aggregate": { + "aggregate": [ + 5519 + ], + "nodes": [ + 5517 + ], + "__typename": [ + 85 + ] + }, + "tournament_no_shows_aggregate_fields": { + "avg": [ + 5520 + ], + "count": [ + 41, + { + "columns": [ + 5531, + "[tournament_no_shows_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 5525 + ], + "min": [ + 5526 + ], + "stddev": [ + 5533 + ], + "stddev_pop": [ + 5534 + ], + "stddev_samp": [ + 5535 + ], + "sum": [ + 5538 + ], + "var_pop": [ + 5541 + ], + "var_samp": [ + 5542 + ], + "variance": [ + 5543 + ], + "__typename": [ + 85 + ] + }, + "tournament_no_shows_avg_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_no_shows_bool_exp": { + "_and": [ + 5521 + ], + "_not": [ + 5521 + ], + "_or": [ + 5521 + ], + "id": [ + 6674 + ], + "occurred_at": [ + 5244 + ], + "player": [ + 4610 + ], + "player_steam_id": [ + 314 + ], + "tournament": [ + 5917 + ], + "tournament_id": [ + 6674 + ], + "tournament_team": [ + 5861 + ], + "tournament_team_id": [ + 6674 + ], + "__typename": [ + 85 + ] + }, + "tournament_no_shows_constraint": {}, + "tournament_no_shows_inc_input": { + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "tournament_no_shows_insert_input": { + "id": [ + 6672 + ], + "occurred_at": [ + 5243 + ], + "player": [ + 4617 + ], + "player_steam_id": [ + 312 + ], + "tournament": [ + 5926 + ], + "tournament_id": [ + 6672 + ], + "tournament_team": [ + 5870 + ], + "tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_no_shows_max_fields": { + "id": [ + 6672 + ], + "occurred_at": [ + 5243 + ], + "player_steam_id": [ + 312 + ], + "tournament_id": [ + 6672 + ], + "tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_no_shows_min_fields": { + "id": [ + 6672 + ], + "occurred_at": [ + 5243 + ], + "player_steam_id": [ + 312 + ], + "tournament_id": [ + 6672 + ], + "tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_no_shows_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 5517 + ], + "__typename": [ + 85 + ] + }, + "tournament_no_shows_on_conflict": { + "constraint": [ + 5522 + ], + "update_columns": [ + 5539 + ], + "where": [ + 5521 + ], + "__typename": [ + 85 + ] + }, + "tournament_no_shows_order_by": { + "id": [ + 3648 + ], + "occurred_at": [ + 3648 + ], + "player": [ + 4619 + ], + "player_steam_id": [ + 3648 + ], + "tournament": [ + 5928 + ], + "tournament_id": [ + 3648 + ], + "tournament_team": [ + 5872 + ], + "tournament_team_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_no_shows_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_no_shows_select_column": {}, + "tournament_no_shows_set_input": { + "id": [ + 6672 + ], + "occurred_at": [ + 5243 + ], + "player_steam_id": [ + 312 + ], + "tournament_id": [ + 6672 + ], + "tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_no_shows_stddev_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_no_shows_stddev_pop_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_no_shows_stddev_samp_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_no_shows_stream_cursor_input": { + "initial_value": [ + 5537 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "tournament_no_shows_stream_cursor_value_input": { + "id": [ + 6672 + ], + "occurred_at": [ + 5243 + ], + "player_steam_id": [ + 312 + ], + "tournament_id": [ + 6672 + ], + "tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_no_shows_sum_fields": { + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "tournament_no_shows_update_column": {}, + "tournament_no_shows_updates": { + "_inc": [ + 5523 + ], + "_set": [ + 5532 + ], + "where": [ + 5521 + ], + "__typename": [ + 85 + ] + }, + "tournament_no_shows_var_pop_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_no_shows_var_samp_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_no_shows_variance_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizer_teams": { + "created_at": [ + 5243 + ], + "team": [ + 5194 + ], + "team_id": [ + 6672 + ], + "tournament": [ + 5896 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizer_teams_aggregate": { + "aggregate": [ + 5548 + ], + "nodes": [ + 5544 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizer_teams_aggregate_bool_exp": { + "count": [ + 5547 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizer_teams_aggregate_bool_exp_count": { + "arguments": [ + 5562 + ], + "distinct": [ + 6 + ], + "filter": [ + 5551 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizer_teams_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 5562, + "[tournament_organizer_teams_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 5554 + ], + "min": [ + 5556 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizer_teams_aggregate_order_by": { + "count": [ + 3648 + ], + "max": [ + 5555 + ], + "min": [ + 5557 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizer_teams_arr_rel_insert_input": { + "data": [ + 5553 + ], + "on_conflict": [ + 5559 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizer_teams_bool_exp": { + "_and": [ + 5551 + ], + "_not": [ + 5551 + ], + "_or": [ + 5551 + ], + "created_at": [ + 5244 + ], + "team": [ + 5205 + ], + "team_id": [ + 6674 + ], + "tournament": [ + 5917 + ], + "tournament_id": [ + 6674 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizer_teams_constraint": {}, + "tournament_organizer_teams_insert_input": { + "created_at": [ + 5243 + ], + "team": [ + 5214 + ], + "team_id": [ + 6672 + ], + "tournament": [ + 5926 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizer_teams_max_fields": { + "created_at": [ + 5243 + ], + "team_id": [ + 6672 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizer_teams_max_order_by": { + "created_at": [ + 3648 + ], + "team_id": [ + 3648 + ], + "tournament_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizer_teams_min_fields": { + "created_at": [ + 5243 + ], + "team_id": [ + 6672 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizer_teams_min_order_by": { + "created_at": [ + 3648 + ], + "team_id": [ + 3648 + ], + "tournament_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizer_teams_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 5544 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizer_teams_on_conflict": { + "constraint": [ + 5552 + ], + "update_columns": [ + 5566 + ], + "where": [ + 5551 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizer_teams_order_by": { + "created_at": [ + 3648 + ], + "team": [ + 5216 + ], + "team_id": [ + 3648 + ], + "tournament": [ + 5928 + ], + "tournament_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizer_teams_pk_columns_input": { + "team_id": [ + 6672 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizer_teams_select_column": {}, + "tournament_organizer_teams_set_input": { + "created_at": [ + 5243 + ], + "team_id": [ + 6672 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizer_teams_stream_cursor_input": { + "initial_value": [ + 5565 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizer_teams_stream_cursor_value_input": { + "created_at": [ + 5243 + ], + "team_id": [ + 6672 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizer_teams_update_column": {}, + "tournament_organizer_teams_updates": { + "_set": [ + 5563 + ], + "where": [ + 5551 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizers": { + "organization_team": [ + 5194 + ], + "organization_team_id": [ + 6672 + ], + "organizer": [ + 4606 + ], + "steam_id": [ + 312 + ], + "tournament": [ + 5896 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizers_aggregate": { + "aggregate": [ + 5572 + ], + "nodes": [ + 5568 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizers_aggregate_bool_exp": { + "count": [ + 5571 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizers_aggregate_bool_exp_count": { + "arguments": [ + 5589 + ], + "distinct": [ + 6 + ], + "filter": [ + 5577 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizers_aggregate_fields": { + "avg": [ + 5575 + ], + "count": [ + 41, + { + "columns": [ + 5589, + "[tournament_organizers_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 5581 + ], + "min": [ + 5583 + ], + "stddev": [ + 5591 + ], + "stddev_pop": [ + 5593 + ], + "stddev_samp": [ + 5595 + ], + "sum": [ + 5599 + ], + "var_pop": [ + 5603 + ], + "var_samp": [ + 5605 + ], + "variance": [ + 5607 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizers_aggregate_order_by": { + "avg": [ + 5576 + ], + "count": [ + 3648 + ], + "max": [ + 5582 + ], + "min": [ + 5584 + ], + "stddev": [ + 5592 + ], + "stddev_pop": [ + 5594 + ], + "stddev_samp": [ + 5596 + ], + "sum": [ + 5600 + ], + "var_pop": [ + 5604 + ], + "var_samp": [ + 5606 + ], + "variance": [ + 5608 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizers_arr_rel_insert_input": { + "data": [ + 5580 + ], + "on_conflict": [ + 5586 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizers_avg_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizers_avg_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizers_bool_exp": { + "_and": [ + 5577 + ], + "_not": [ + 5577 + ], + "_or": [ + 5577 + ], + "organization_team": [ + 5205 + ], + "organization_team_id": [ + 6674 + ], + "organizer": [ + 4610 + ], + "steam_id": [ + 314 + ], + "tournament": [ + 5917 + ], + "tournament_id": [ + 6674 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizers_constraint": {}, + "tournament_organizers_inc_input": { + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizers_insert_input": { + "organization_team": [ + 5214 + ], + "organization_team_id": [ + 6672 + ], + "organizer": [ + 4617 + ], + "steam_id": [ + 312 + ], + "tournament": [ + 5926 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizers_max_fields": { + "organization_team_id": [ + 6672 + ], + "steam_id": [ + 312 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizers_max_order_by": { + "organization_team_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "tournament_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizers_min_fields": { + "organization_team_id": [ + 6672 + ], + "steam_id": [ + 312 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizers_min_order_by": { + "organization_team_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "tournament_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizers_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 5568 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizers_on_conflict": { + "constraint": [ + 5578 + ], + "update_columns": [ + 5601 + ], + "where": [ + 5577 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizers_order_by": { + "organization_team": [ + 5216 + ], + "organization_team_id": [ + 3648 + ], + "organizer": [ + 4619 + ], + "steam_id": [ + 3648 + ], + "tournament": [ + 5928 + ], + "tournament_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizers_pk_columns_input": { + "steam_id": [ + 312 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizers_select_column": {}, + "tournament_organizers_set_input": { + "organization_team_id": [ + 6672 + ], + "steam_id": [ + 312 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizers_stddev_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizers_stddev_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizers_stddev_pop_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizers_stddev_pop_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizers_stddev_samp_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizers_stddev_samp_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizers_stream_cursor_input": { + "initial_value": [ + 5598 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizers_stream_cursor_value_input": { + "organization_team_id": [ + 6672 + ], + "steam_id": [ + 312 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizers_sum_fields": { + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizers_sum_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizers_update_column": {}, + "tournament_organizers_updates": { + "_inc": [ + 5579 + ], + "_set": [ + 5590 + ], + "where": [ + 5577 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizers_var_pop_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizers_var_pop_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizers_var_samp_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizers_var_samp_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizers_variance_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_organizers_variance_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_prizes": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "order": [ + 41 + ], + "place": [ + 85 + ], + "prize": [ + 85 + ], + "tournament": [ + 5896 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_prizes_aggregate": { + "aggregate": [ + 5613 + ], + "nodes": [ + 5609 + ], + "__typename": [ + 85 + ] + }, + "tournament_prizes_aggregate_bool_exp": { + "count": [ + 5612 + ], + "__typename": [ + 85 + ] + }, + "tournament_prizes_aggregate_bool_exp_count": { + "arguments": [ + 5630 + ], + "distinct": [ + 6 + ], + "filter": [ + 5618 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "tournament_prizes_aggregate_fields": { + "avg": [ + 5616 + ], + "count": [ + 41, + { + "columns": [ + 5630, + "[tournament_prizes_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 5622 + ], + "min": [ + 5624 + ], + "stddev": [ + 5632 + ], + "stddev_pop": [ + 5634 + ], + "stddev_samp": [ + 5636 + ], + "sum": [ + 5640 + ], + "var_pop": [ + 5644 + ], + "var_samp": [ + 5646 + ], + "variance": [ + 5648 + ], + "__typename": [ + 85 + ] + }, + "tournament_prizes_aggregate_order_by": { + "avg": [ + 5617 + ], + "count": [ + 3648 + ], + "max": [ + 5623 + ], + "min": [ + 5625 + ], + "stddev": [ + 5633 + ], + "stddev_pop": [ + 5635 + ], + "stddev_samp": [ + 5637 + ], + "sum": [ + 5641 + ], + "var_pop": [ + 5645 + ], + "var_samp": [ + 5647 + ], + "variance": [ + 5649 + ], + "__typename": [ + 85 + ] + }, + "tournament_prizes_arr_rel_insert_input": { + "data": [ + 5621 + ], + "on_conflict": [ + 5627 + ], + "__typename": [ + 85 + ] + }, + "tournament_prizes_avg_fields": { + "order": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_prizes_avg_order_by": { + "order": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_prizes_bool_exp": { + "_and": [ + 5618 + ], + "_not": [ + 5618 + ], + "_or": [ + 5618 + ], + "created_at": [ + 5244 + ], + "id": [ + 6674 + ], + "order": [ + 42 + ], + "place": [ + 87 + ], + "prize": [ + 87 + ], + "tournament": [ + 5917 + ], + "tournament_id": [ + 6674 + ], + "__typename": [ + 85 + ] + }, + "tournament_prizes_constraint": {}, + "tournament_prizes_inc_input": { + "order": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "tournament_prizes_insert_input": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "order": [ + 41 + ], + "place": [ + 85 + ], + "prize": [ + 85 + ], + "tournament": [ + 5926 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_prizes_max_fields": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "order": [ + 41 + ], + "place": [ + 85 + ], + "prize": [ + 85 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_prizes_max_order_by": { + "created_at": [ + 3648 + ], + "id": [ + 3648 + ], + "order": [ + 3648 + ], + "place": [ + 3648 + ], + "prize": [ + 3648 + ], + "tournament_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_prizes_min_fields": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "order": [ + 41 + ], + "place": [ + 85 + ], + "prize": [ + 85 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_prizes_min_order_by": { + "created_at": [ + 3648 + ], + "id": [ + 3648 + ], + "order": [ + 3648 + ], + "place": [ + 3648 + ], + "prize": [ + 3648 + ], + "tournament_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_prizes_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 5609 + ], + "__typename": [ + 85 + ] + }, + "tournament_prizes_on_conflict": { + "constraint": [ + 5619 + ], + "update_columns": [ + 5642 + ], + "where": [ + 5618 + ], + "__typename": [ + 85 + ] + }, + "tournament_prizes_order_by": { + "created_at": [ + 3648 + ], + "id": [ + 3648 + ], + "order": [ + 3648 + ], + "place": [ + 3648 + ], + "prize": [ + 3648 + ], + "tournament": [ + 5928 + ], + "tournament_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_prizes_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_prizes_select_column": {}, + "tournament_prizes_set_input": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "order": [ + 41 + ], + "place": [ + 85 + ], + "prize": [ + 85 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_prizes_stddev_fields": { + "order": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_prizes_stddev_order_by": { + "order": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_prizes_stddev_pop_fields": { + "order": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_prizes_stddev_pop_order_by": { + "order": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_prizes_stddev_samp_fields": { + "order": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_prizes_stddev_samp_order_by": { + "order": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_prizes_stream_cursor_input": { + "initial_value": [ + 5639 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "tournament_prizes_stream_cursor_value_input": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "order": [ + 41 + ], + "place": [ + 85 + ], + "prize": [ + 85 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_prizes_sum_fields": { + "order": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "tournament_prizes_sum_order_by": { + "order": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_prizes_update_column": {}, + "tournament_prizes_updates": { + "_inc": [ + 5620 + ], + "_set": [ + 5631 + ], + "where": [ + 5618 + ], + "__typename": [ + 85 + ] + }, + "tournament_prizes_var_pop_fields": { + "order": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_prizes_var_pop_order_by": { + "order": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_prizes_var_samp_fields": { + "order": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_prizes_var_samp_order_by": { + "order": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_prizes_variance_fields": { + "order": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_prizes_variance_order_by": { + "order": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_registration_unlocks": { + "created_at": [ + 5243 + ], + "player": [ + 4606 + ], + "player_steam_id": [ + 312 + ], + "team": [ + 5194 + ], + "team_id": [ + 6672 + ], + "tournament": [ + 5896 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_registration_unlocks_aggregate": { + "aggregate": [ + 5652 + ], + "nodes": [ + 5650 + ], + "__typename": [ + 85 + ] + }, + "tournament_registration_unlocks_aggregate_fields": { + "avg": [ + 5653 + ], + "count": [ + 41, + { + "columns": [ + 5663, + "[tournament_registration_unlocks_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 5658 + ], + "min": [ + 5659 + ], + "stddev": [ + 5665 + ], + "stddev_pop": [ + 5666 + ], + "stddev_samp": [ + 5667 + ], + "sum": [ + 5670 + ], + "var_pop": [ + 5673 + ], + "var_samp": [ + 5674 + ], + "variance": [ + 5675 + ], + "__typename": [ + 85 + ] + }, + "tournament_registration_unlocks_avg_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_registration_unlocks_bool_exp": { + "_and": [ + 5654 + ], + "_not": [ + 5654 + ], + "_or": [ + 5654 + ], + "created_at": [ + 5244 + ], + "player": [ + 4610 + ], + "player_steam_id": [ + 314 + ], + "team": [ + 5205 + ], + "team_id": [ + 6674 + ], + "tournament": [ + 5917 + ], + "tournament_id": [ + 6674 + ], + "__typename": [ + 85 + ] + }, + "tournament_registration_unlocks_constraint": {}, + "tournament_registration_unlocks_inc_input": { + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "tournament_registration_unlocks_insert_input": { + "created_at": [ + 5243 + ], + "player": [ + 4617 + ], + "player_steam_id": [ + 312 + ], + "team": [ + 5214 + ], + "team_id": [ + 6672 + ], + "tournament": [ + 5926 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_registration_unlocks_max_fields": { + "created_at": [ + 5243 + ], + "player_steam_id": [ + 312 + ], + "team_id": [ + 6672 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_registration_unlocks_min_fields": { + "created_at": [ + 5243 + ], + "player_steam_id": [ + 312 + ], + "team_id": [ + 6672 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_registration_unlocks_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 5650 + ], + "__typename": [ + 85 + ] + }, + "tournament_registration_unlocks_on_conflict": { + "constraint": [ + 5655 + ], + "update_columns": [ + 5671 + ], + "where": [ + 5654 + ], + "__typename": [ + 85 + ] + }, + "tournament_registration_unlocks_order_by": { + "created_at": [ + 3648 + ], + "player": [ + 4619 + ], + "player_steam_id": [ + 3648 + ], + "team": [ + 5216 + ], + "team_id": [ + 3648 + ], + "tournament": [ + 5928 + ], + "tournament_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_registration_unlocks_select_column": {}, + "tournament_registration_unlocks_set_input": { + "created_at": [ + 5243 + ], + "player_steam_id": [ + 312 + ], + "team_id": [ + 6672 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_registration_unlocks_stddev_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_registration_unlocks_stddev_pop_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_registration_unlocks_stddev_samp_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_registration_unlocks_stream_cursor_input": { + "initial_value": [ + 5669 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "tournament_registration_unlocks_stream_cursor_value_input": { + "created_at": [ + 5243 + ], + "player_steam_id": [ + 312 + ], + "team_id": [ + 6672 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_registration_unlocks_sum_fields": { + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "tournament_registration_unlocks_update_column": {}, + "tournament_registration_unlocks_updates": { + "_inc": [ + 5656 + ], + "_set": [ + 5664 + ], + "where": [ + 5654 + ], + "__typename": [ + 85 + ] + }, + "tournament_registration_unlocks_var_pop_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_registration_unlocks_var_samp_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_registration_unlocks_variance_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_stage_windows": { + "closes_at": [ + 5243 + ], + "created_at": [ + 5243 + ], + "default_match_at": [ + 5243 + ], + "id": [ + 6672 + ], + "opens_at": [ + 5243 + ], + "round": [ + 41 + ], + "stage": [ + 5717 + ], + "tournament_stage_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_stage_windows_aggregate": { + "aggregate": [ + 5680 + ], + "nodes": [ + 5676 + ], + "__typename": [ + 85 + ] + }, + "tournament_stage_windows_aggregate_bool_exp": { + "count": [ + 5679 + ], + "__typename": [ + 85 + ] + }, + "tournament_stage_windows_aggregate_bool_exp_count": { + "arguments": [ + 5697 + ], + "distinct": [ + 6 + ], + "filter": [ + 5685 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "tournament_stage_windows_aggregate_fields": { + "avg": [ + 5683 + ], + "count": [ + 41, + { + "columns": [ + 5697, + "[tournament_stage_windows_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 5689 + ], + "min": [ + 5691 + ], + "stddev": [ + 5699 + ], + "stddev_pop": [ + 5701 + ], + "stddev_samp": [ + 5703 + ], + "sum": [ + 5707 + ], + "var_pop": [ + 5711 + ], + "var_samp": [ + 5713 + ], + "variance": [ + 5715 + ], + "__typename": [ + 85 + ] + }, + "tournament_stage_windows_aggregate_order_by": { + "avg": [ + 5684 + ], + "count": [ + 3648 + ], + "max": [ + 5690 + ], + "min": [ + 5692 + ], + "stddev": [ + 5700 + ], + "stddev_pop": [ + 5702 + ], + "stddev_samp": [ + 5704 + ], + "sum": [ + 5708 + ], + "var_pop": [ + 5712 + ], + "var_samp": [ + 5714 + ], + "variance": [ + 5716 + ], + "__typename": [ + 85 + ] + }, + "tournament_stage_windows_arr_rel_insert_input": { + "data": [ + 5688 + ], + "on_conflict": [ + 5694 + ], + "__typename": [ + 85 + ] + }, + "tournament_stage_windows_avg_fields": { + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_stage_windows_avg_order_by": { + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_stage_windows_bool_exp": { + "_and": [ + 5685 + ], + "_not": [ + 5685 + ], + "_or": [ + 5685 + ], + "closes_at": [ + 5244 + ], + "created_at": [ + 5244 + ], + "default_match_at": [ + 5244 + ], + "id": [ + 6674 + ], + "opens_at": [ + 5244 + ], + "round": [ + 42 + ], + "stage": [ + 5729 + ], + "tournament_stage_id": [ + 6674 + ], + "__typename": [ + 85 + ] + }, + "tournament_stage_windows_constraint": {}, + "tournament_stage_windows_inc_input": { + "round": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "tournament_stage_windows_insert_input": { + "closes_at": [ + 5243 + ], + "created_at": [ + 5243 + ], + "default_match_at": [ + 5243 + ], + "id": [ + 6672 + ], + "opens_at": [ + 5243 + ], + "round": [ + 41 + ], + "stage": [ + 5741 + ], + "tournament_stage_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_stage_windows_max_fields": { + "closes_at": [ + 5243 + ], + "created_at": [ + 5243 + ], + "default_match_at": [ + 5243 + ], + "id": [ + 6672 + ], + "opens_at": [ + 5243 + ], + "round": [ + 41 + ], + "tournament_stage_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_stage_windows_max_order_by": { + "closes_at": [ + 3648 + ], + "created_at": [ + 3648 + ], + "default_match_at": [ + 3648 + ], + "id": [ + 3648 + ], + "opens_at": [ + 3648 + ], + "round": [ + 3648 + ], + "tournament_stage_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_stage_windows_min_fields": { + "closes_at": [ + 5243 + ], + "created_at": [ + 5243 + ], + "default_match_at": [ + 5243 + ], + "id": [ + 6672 + ], + "opens_at": [ + 5243 + ], + "round": [ + 41 + ], + "tournament_stage_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_stage_windows_min_order_by": { + "closes_at": [ + 3648 + ], + "created_at": [ + 3648 + ], + "default_match_at": [ + 3648 + ], + "id": [ + 3648 + ], + "opens_at": [ + 3648 + ], + "round": [ + 3648 + ], + "tournament_stage_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_stage_windows_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 5676 + ], + "__typename": [ + 85 + ] + }, + "tournament_stage_windows_on_conflict": { + "constraint": [ + 5686 + ], + "update_columns": [ + 5709 + ], + "where": [ + 5685 + ], + "__typename": [ + 85 + ] + }, + "tournament_stage_windows_order_by": { + "closes_at": [ + 3648 + ], + "created_at": [ + 3648 + ], + "default_match_at": [ + 3648 + ], + "id": [ + 3648 + ], + "opens_at": [ + 3648 + ], + "round": [ + 3648 + ], + "stage": [ + 5743 + ], + "tournament_stage_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_stage_windows_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_stage_windows_select_column": {}, + "tournament_stage_windows_set_input": { + "closes_at": [ + 5243 + ], + "created_at": [ + 5243 + ], + "default_match_at": [ + 5243 + ], + "id": [ + 6672 + ], + "opens_at": [ + 5243 + ], + "round": [ + 41 + ], + "tournament_stage_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_stage_windows_stddev_fields": { + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_stage_windows_stddev_order_by": { + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_stage_windows_stddev_pop_fields": { + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_stage_windows_stddev_pop_order_by": { + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_stage_windows_stddev_samp_fields": { + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_stage_windows_stddev_samp_order_by": { + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_stage_windows_stream_cursor_input": { + "initial_value": [ + 5706 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "tournament_stage_windows_stream_cursor_value_input": { + "closes_at": [ + 5243 + ], + "created_at": [ + 5243 + ], + "default_match_at": [ + 5243 + ], + "id": [ + 6672 + ], + "opens_at": [ + 5243 + ], + "round": [ + 41 + ], + "tournament_stage_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_stage_windows_sum_fields": { + "round": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "tournament_stage_windows_sum_order_by": { + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_stage_windows_update_column": {}, + "tournament_stage_windows_updates": { + "_inc": [ + 5687 + ], + "_set": [ + 5698 + ], + "where": [ + 5685 + ], + "__typename": [ + 85 + ] + }, + "tournament_stage_windows_var_pop_fields": { + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_stage_windows_var_pop_order_by": { + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_stage_windows_var_samp_fields": { + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_stage_windows_var_samp_order_by": { + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_stage_windows_variance_fields": { + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_stage_windows_variance_order_by": { + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages": { + "brackets": [ + 5287, + { + "distinct_on": [ + 5311, + "[tournament_brackets_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5309, + "[tournament_brackets_order_by!]" + ], + "where": [ + 5298 + ] + } + ], + "brackets_aggregate": [ + 5288, + { + "distinct_on": [ + 5311, + "[tournament_brackets_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5309, + "[tournament_brackets_order_by!]" + ], + "where": [ + 5298 + ] + } + ], + "decider_best_of": [ + 41 + ], + "default_best_of": [ + 41 + ], + "e_tournament_stage_type": [ + 1611 + ], + "final_map_advantage": [ + 41 + ], + "groups": [ + 41 + ], + "id": [ + 6672 + ], + "match_options_id": [ + 6672 + ], + "max_rounds": [ + 41 + ], + "max_teams": [ + 41 + ], + "min_teams": [ + 41 + ], + "options": [ + 3290 + ], + "order": [ + 41 + ], + "results": [ + 7414, + { + "distinct_on": [ + 7446, + "[v_team_stage_results_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7444, + "[v_team_stage_results_order_by!]" + ], + "where": [ + 7433 + ] + } + ], + "results_aggregate": [ + 7415, + { + "distinct_on": [ + 7446, + "[v_team_stage_results_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7444, + "[v_team_stage_results_order_by!]" + ], + "where": [ + 7433 + ] + } + ], + "settings": [ + 2439, + { + "path": [ + 85 + ] + } + ], + "swiss_no_elimination": [ + 6 + ], + "third_place_match": [ + 6 + ], + "tournament": [ + 5896 + ], + "tournament_id": [ + 6672 + ], + "type": [ + 1616 + ], + "windows": [ + 5676, + { + "distinct_on": [ + 5697, + "[tournament_stage_windows_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5695, + "[tournament_stage_windows_order_by!]" + ], + "where": [ + 5685 + ] + } + ], + "windows_aggregate": [ + 5677, + { + "distinct_on": [ + 5697, + "[tournament_stage_windows_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5695, + "[tournament_stage_windows_order_by!]" + ], + "where": [ + 5685 + ] + } + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_aggregate": { + "aggregate": [ + 5723 + ], + "nodes": [ + 5717 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_aggregate_bool_exp": { + "bool_and": [ + 5720 + ], + "bool_or": [ + 5721 + ], + "count": [ + 5722 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_aggregate_bool_exp_bool_and": { + "arguments": [ + 5747 + ], + "distinct": [ + 6 + ], + "filter": [ + 5729 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_aggregate_bool_exp_bool_or": { + "arguments": [ + 5748 + ], + "distinct": [ + 6 + ], + "filter": [ + 5729 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_aggregate_bool_exp_count": { + "arguments": [ + 5746 + ], + "distinct": [ + 6 + ], + "filter": [ + 5729 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_aggregate_fields": { + "avg": [ + 5727 + ], + "count": [ + 41, + { + "columns": [ + 5746, + "[tournament_stages_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 5736 + ], + "min": [ + 5738 + ], + "stddev": [ + 5750 + ], + "stddev_pop": [ + 5752 + ], + "stddev_samp": [ + 5754 + ], + "sum": [ + 5758 + ], + "var_pop": [ + 5762 + ], + "var_samp": [ + 5764 + ], + "variance": [ + 5766 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_aggregate_order_by": { + "avg": [ + 5728 + ], + "count": [ + 3648 + ], + "max": [ + 5737 + ], + "min": [ + 5739 + ], + "stddev": [ + 5751 + ], + "stddev_pop": [ + 5753 + ], + "stddev_samp": [ + 5755 + ], + "sum": [ + 5759 + ], + "var_pop": [ + 5763 + ], + "var_samp": [ + 5765 + ], + "variance": [ + 5767 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_append_input": { + "settings": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_arr_rel_insert_input": { + "data": [ + 5735 + ], + "on_conflict": [ + 5742 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_avg_fields": { + "decider_best_of": [ + 32 + ], + "default_best_of": [ + 32 + ], + "final_map_advantage": [ + 32 + ], + "groups": [ + 32 + ], + "max_rounds": [ + 32 + ], + "max_teams": [ + 32 + ], + "min_teams": [ + 32 + ], + "order": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_avg_order_by": { + "decider_best_of": [ + 3648 + ], + "default_best_of": [ + 3648 + ], + "final_map_advantage": [ + 3648 + ], + "groups": [ + 3648 + ], + "max_rounds": [ + 3648 + ], + "max_teams": [ + 3648 + ], + "min_teams": [ + 3648 + ], + "order": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_bool_exp": { + "_and": [ + 5729 + ], + "_not": [ + 5729 + ], + "_or": [ + 5729 + ], + "brackets": [ + 5298 + ], + "brackets_aggregate": [ + 5289 + ], + "decider_best_of": [ + 42 + ], + "default_best_of": [ + 42 + ], + "e_tournament_stage_type": [ + 1614 + ], + "final_map_advantage": [ + 42 + ], + "groups": [ + 42 + ], + "id": [ + 6674 + ], + "match_options_id": [ + 6674 + ], + "max_rounds": [ + 42 + ], + "max_teams": [ + 42 + ], + "min_teams": [ + 42 + ], + "options": [ + 3301 + ], + "order": [ + 42 + ], + "results": [ + 7433 + ], + "results_aggregate": [ + 7416 + ], + "settings": [ + 2441 + ], + "swiss_no_elimination": [ + 7 + ], + "third_place_match": [ + 7 + ], + "tournament": [ + 5917 + ], + "tournament_id": [ + 6674 + ], + "type": [ + 1617 + ], + "windows": [ + 5685 + ], + "windows_aggregate": [ + 5678 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_constraint": {}, + "tournament_stages_delete_at_path_input": { + "settings": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_delete_elem_input": { + "settings": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_delete_key_input": { + "settings": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_inc_input": { + "decider_best_of": [ + 41 + ], + "default_best_of": [ + 41 + ], + "final_map_advantage": [ + 41 + ], + "groups": [ + 41 + ], + "max_rounds": [ + 41 + ], + "max_teams": [ + 41 + ], + "min_teams": [ + 41 + ], + "order": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_insert_input": { + "brackets": [ + 5295 + ], + "decider_best_of": [ + 41 + ], + "default_best_of": [ + 41 + ], + "e_tournament_stage_type": [ + 1622 + ], + "final_map_advantage": [ + 41 + ], + "groups": [ + 41 + ], + "id": [ + 6672 + ], + "match_options_id": [ + 6672 + ], + "max_rounds": [ + 41 + ], + "max_teams": [ + 41 + ], + "min_teams": [ + 41 + ], + "options": [ + 3310 + ], + "order": [ + 41 + ], + "results": [ + 7430 + ], + "settings": [ + 2439 + ], + "swiss_no_elimination": [ + 6 + ], + "third_place_match": [ + 6 + ], + "tournament": [ + 5926 + ], + "tournament_id": [ + 6672 + ], + "type": [ + 1616 + ], + "windows": [ + 5682 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_max_fields": { + "decider_best_of": [ + 41 + ], + "default_best_of": [ + 41 + ], + "final_map_advantage": [ + 41 + ], + "groups": [ + 41 + ], + "id": [ + 6672 + ], + "match_options_id": [ + 6672 + ], + "max_rounds": [ + 41 + ], + "max_teams": [ + 41 + ], + "min_teams": [ + 41 + ], + "order": [ + 41 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_max_order_by": { + "decider_best_of": [ + 3648 + ], + "default_best_of": [ + 3648 + ], + "final_map_advantage": [ + 3648 + ], + "groups": [ + 3648 + ], + "id": [ + 3648 + ], + "match_options_id": [ + 3648 + ], + "max_rounds": [ + 3648 + ], + "max_teams": [ + 3648 + ], + "min_teams": [ + 3648 + ], + "order": [ + 3648 + ], + "tournament_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_min_fields": { + "decider_best_of": [ + 41 + ], + "default_best_of": [ + 41 + ], + "final_map_advantage": [ + 41 + ], + "groups": [ + 41 + ], + "id": [ + 6672 + ], + "match_options_id": [ + 6672 + ], + "max_rounds": [ + 41 + ], + "max_teams": [ + 41 + ], + "min_teams": [ + 41 + ], + "order": [ + 41 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_min_order_by": { + "decider_best_of": [ + 3648 + ], + "default_best_of": [ + 3648 + ], + "final_map_advantage": [ + 3648 + ], + "groups": [ + 3648 + ], + "id": [ + 3648 + ], + "match_options_id": [ + 3648 + ], + "max_rounds": [ + 3648 + ], + "max_teams": [ + 3648 + ], + "min_teams": [ + 3648 + ], + "order": [ + 3648 + ], + "tournament_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 5717 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_obj_rel_insert_input": { + "data": [ + 5735 + ], + "on_conflict": [ + 5742 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_on_conflict": { + "constraint": [ + 5730 + ], + "update_columns": [ + 5760 + ], + "where": [ + 5729 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_order_by": { + "brackets_aggregate": [ + 5294 + ], + "decider_best_of": [ + 3648 + ], + "default_best_of": [ + 3648 + ], + "e_tournament_stage_type": [ + 1624 + ], + "final_map_advantage": [ + 3648 + ], + "groups": [ + 3648 + ], + "id": [ + 3648 + ], + "match_options_id": [ + 3648 + ], + "max_rounds": [ + 3648 + ], + "max_teams": [ + 3648 + ], + "min_teams": [ + 3648 + ], + "options": [ + 3312 + ], + "order": [ + 3648 + ], + "results_aggregate": [ + 7429 + ], + "settings": [ + 3648 + ], + "swiss_no_elimination": [ + 3648 + ], + "third_place_match": [ + 3648 + ], + "tournament": [ + 5928 + ], + "tournament_id": [ + 3648 + ], + "type": [ + 3648 + ], + "windows_aggregate": [ + 5681 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_prepend_input": { + "settings": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_select_column": {}, + "tournament_stages_select_column_tournament_stages_aggregate_bool_exp_bool_and_arguments_columns": {}, + "tournament_stages_select_column_tournament_stages_aggregate_bool_exp_bool_or_arguments_columns": {}, + "tournament_stages_set_input": { + "decider_best_of": [ + 41 + ], + "default_best_of": [ + 41 + ], + "final_map_advantage": [ + 41 + ], + "groups": [ + 41 + ], + "id": [ + 6672 + ], + "match_options_id": [ + 6672 + ], + "max_rounds": [ + 41 + ], + "max_teams": [ + 41 + ], + "min_teams": [ + 41 + ], + "order": [ + 41 + ], + "settings": [ + 2439 + ], + "swiss_no_elimination": [ + 6 + ], + "third_place_match": [ + 6 + ], + "tournament_id": [ + 6672 + ], + "type": [ + 1616 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_stddev_fields": { + "decider_best_of": [ + 32 + ], + "default_best_of": [ + 32 + ], + "final_map_advantage": [ + 32 + ], + "groups": [ + 32 + ], + "max_rounds": [ + 32 + ], + "max_teams": [ + 32 + ], + "min_teams": [ + 32 + ], + "order": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_stddev_order_by": { + "decider_best_of": [ + 3648 + ], + "default_best_of": [ + 3648 + ], + "final_map_advantage": [ + 3648 + ], + "groups": [ + 3648 + ], + "max_rounds": [ + 3648 + ], + "max_teams": [ + 3648 + ], + "min_teams": [ + 3648 + ], + "order": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_stddev_pop_fields": { + "decider_best_of": [ + 32 + ], + "default_best_of": [ + 32 + ], + "final_map_advantage": [ + 32 + ], + "groups": [ + 32 + ], + "max_rounds": [ + 32 + ], + "max_teams": [ + 32 + ], + "min_teams": [ + 32 + ], + "order": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_stddev_pop_order_by": { + "decider_best_of": [ + 3648 + ], + "default_best_of": [ + 3648 + ], + "final_map_advantage": [ + 3648 + ], + "groups": [ + 3648 + ], + "max_rounds": [ + 3648 + ], + "max_teams": [ + 3648 + ], + "min_teams": [ + 3648 + ], + "order": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_stddev_samp_fields": { + "decider_best_of": [ + 32 + ], + "default_best_of": [ + 32 + ], + "final_map_advantage": [ + 32 + ], + "groups": [ + 32 + ], + "max_rounds": [ + 32 + ], + "max_teams": [ + 32 + ], + "min_teams": [ + 32 + ], + "order": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_stddev_samp_order_by": { + "decider_best_of": [ + 3648 + ], + "default_best_of": [ + 3648 + ], + "final_map_advantage": [ + 3648 + ], + "groups": [ + 3648 + ], + "max_rounds": [ + 3648 + ], + "max_teams": [ + 3648 + ], + "min_teams": [ + 3648 + ], + "order": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_stream_cursor_input": { + "initial_value": [ + 5757 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_stream_cursor_value_input": { + "decider_best_of": [ + 41 + ], + "default_best_of": [ + 41 + ], + "final_map_advantage": [ + 41 + ], + "groups": [ + 41 + ], + "id": [ + 6672 + ], + "match_options_id": [ + 6672 + ], + "max_rounds": [ + 41 + ], + "max_teams": [ + 41 + ], + "min_teams": [ + 41 + ], + "order": [ + 41 + ], + "settings": [ + 2439 + ], + "swiss_no_elimination": [ + 6 + ], + "third_place_match": [ + 6 + ], + "tournament_id": [ + 6672 + ], + "type": [ + 1616 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_sum_fields": { + "decider_best_of": [ + 41 + ], + "default_best_of": [ + 41 + ], + "final_map_advantage": [ + 41 + ], + "groups": [ + 41 + ], + "max_rounds": [ + 41 + ], + "max_teams": [ + 41 + ], + "min_teams": [ + 41 + ], + "order": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_sum_order_by": { + "decider_best_of": [ + 3648 + ], + "default_best_of": [ + 3648 + ], + "final_map_advantage": [ + 3648 + ], + "groups": [ + 3648 + ], + "max_rounds": [ + 3648 + ], + "max_teams": [ + 3648 + ], + "min_teams": [ + 3648 + ], + "order": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_update_column": {}, + "tournament_stages_updates": { + "_append": [ + 5725 + ], + "_delete_at_path": [ + 5731 + ], + "_delete_elem": [ + 5732 + ], + "_delete_key": [ + 5733 + ], + "_inc": [ + 5734 + ], + "_prepend": [ + 5745 + ], + "_set": [ + 5749 + ], + "where": [ + 5729 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_var_pop_fields": { + "decider_best_of": [ + 32 + ], + "default_best_of": [ + 32 + ], + "final_map_advantage": [ + 32 + ], + "groups": [ + 32 + ], + "max_rounds": [ + 32 + ], + "max_teams": [ + 32 + ], + "min_teams": [ + 32 + ], + "order": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_var_pop_order_by": { + "decider_best_of": [ + 3648 + ], + "default_best_of": [ + 3648 + ], + "final_map_advantage": [ + 3648 + ], + "groups": [ + 3648 + ], + "max_rounds": [ + 3648 + ], + "max_teams": [ + 3648 + ], + "min_teams": [ + 3648 + ], + "order": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_var_samp_fields": { + "decider_best_of": [ + 32 + ], + "default_best_of": [ + 32 + ], + "final_map_advantage": [ + 32 + ], + "groups": [ + 32 + ], + "max_rounds": [ + 32 + ], + "max_teams": [ + 32 + ], + "min_teams": [ + 32 + ], + "order": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_var_samp_order_by": { + "decider_best_of": [ + 3648 + ], + "default_best_of": [ + 3648 + ], + "final_map_advantage": [ + 3648 + ], + "groups": [ + 3648 + ], + "max_rounds": [ + 3648 + ], + "max_teams": [ + 3648 + ], + "min_teams": [ + 3648 + ], + "order": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_variance_fields": { + "decider_best_of": [ + 32 + ], + "default_best_of": [ + 32 + ], + "final_map_advantage": [ + 32 + ], + "groups": [ + 32 + ], + "max_rounds": [ + 32 + ], + "max_teams": [ + 32 + ], + "min_teams": [ + 32 + ], + "order": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_stages_variance_order_by": { + "decider_best_of": [ + 3648 + ], + "default_best_of": [ + 3648 + ], + "final_map_advantage": [ + 3648 + ], + "groups": [ + 3648 + ], + "max_rounds": [ + 3648 + ], + "max_teams": [ + 3648 + ], + "min_teams": [ + 3648 + ], + "order": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_invites": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "invited_by": [ + 4606 + ], + "invited_by_player_steam_id": [ + 312 + ], + "player": [ + 4606 + ], + "steam_id": [ + 312 + ], + "team": [ + 5850 + ], + "tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_invites_aggregate": { + "aggregate": [ + 5772 + ], + "nodes": [ + 5768 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_invites_aggregate_bool_exp": { + "count": [ + 5771 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_invites_aggregate_bool_exp_count": { + "arguments": [ + 5789 + ], + "distinct": [ + 6 + ], + "filter": [ + 5777 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_invites_aggregate_fields": { + "avg": [ + 5775 + ], + "count": [ + 41, + { + "columns": [ + 5789, + "[tournament_team_invites_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 5781 + ], + "min": [ + 5783 + ], + "stddev": [ + 5791 + ], + "stddev_pop": [ + 5793 + ], + "stddev_samp": [ + 5795 + ], + "sum": [ + 5799 + ], + "var_pop": [ + 5803 + ], + "var_samp": [ + 5805 + ], + "variance": [ + 5807 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_invites_aggregate_order_by": { + "avg": [ + 5776 + ], + "count": [ + 3648 + ], + "max": [ + 5782 + ], + "min": [ + 5784 + ], + "stddev": [ + 5792 + ], + "stddev_pop": [ + 5794 + ], + "stddev_samp": [ + 5796 + ], + "sum": [ + 5800 + ], + "var_pop": [ + 5804 + ], + "var_samp": [ + 5806 + ], + "variance": [ + 5808 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_invites_arr_rel_insert_input": { + "data": [ + 5780 + ], + "on_conflict": [ + 5786 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_invites_avg_fields": { + "invited_by_player_steam_id": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_invites_avg_order_by": { + "invited_by_player_steam_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_invites_bool_exp": { + "_and": [ + 5777 + ], + "_not": [ + 5777 + ], + "_or": [ + 5777 + ], + "created_at": [ + 5244 + ], + "id": [ + 6674 + ], + "invited_by": [ + 4610 + ], + "invited_by_player_steam_id": [ + 314 + ], + "player": [ + 4610 + ], + "steam_id": [ + 314 + ], + "team": [ + 5861 + ], + "tournament_team_id": [ + 6674 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_invites_constraint": {}, + "tournament_team_invites_inc_input": { + "invited_by_player_steam_id": [ + 312 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_invites_insert_input": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "invited_by": [ + 4617 + ], + "invited_by_player_steam_id": [ + 312 + ], + "player": [ + 4617 + ], + "steam_id": [ + 312 + ], + "team": [ + 5870 + ], + "tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_invites_max_fields": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "invited_by_player_steam_id": [ + 312 + ], + "steam_id": [ + 312 + ], + "tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_invites_max_order_by": { + "created_at": [ + 3648 + ], + "id": [ + 3648 + ], + "invited_by_player_steam_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "tournament_team_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_invites_min_fields": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "invited_by_player_steam_id": [ + 312 + ], + "steam_id": [ + 312 + ], + "tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_invites_min_order_by": { + "created_at": [ + 3648 + ], + "id": [ + 3648 + ], + "invited_by_player_steam_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "tournament_team_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_invites_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 5768 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_invites_on_conflict": { + "constraint": [ + 5778 + ], + "update_columns": [ + 5801 + ], + "where": [ + 5777 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_invites_order_by": { + "created_at": [ + 3648 + ], + "id": [ + 3648 + ], + "invited_by": [ + 4619 + ], + "invited_by_player_steam_id": [ + 3648 + ], + "player": [ + 4619 + ], + "steam_id": [ + 3648 + ], + "team": [ + 5872 + ], + "tournament_team_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_invites_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_invites_select_column": {}, + "tournament_team_invites_set_input": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "invited_by_player_steam_id": [ + 312 + ], + "steam_id": [ + 312 + ], + "tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_invites_stddev_fields": { + "invited_by_player_steam_id": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_invites_stddev_order_by": { + "invited_by_player_steam_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_invites_stddev_pop_fields": { + "invited_by_player_steam_id": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_invites_stddev_pop_order_by": { + "invited_by_player_steam_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_invites_stddev_samp_fields": { + "invited_by_player_steam_id": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_invites_stddev_samp_order_by": { + "invited_by_player_steam_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_invites_stream_cursor_input": { + "initial_value": [ + 5798 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_invites_stream_cursor_value_input": { + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "invited_by_player_steam_id": [ + 312 + ], + "steam_id": [ + 312 + ], + "tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_invites_sum_fields": { + "invited_by_player_steam_id": [ + 312 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_invites_sum_order_by": { + "invited_by_player_steam_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_invites_update_column": {}, + "tournament_team_invites_updates": { + "_inc": [ + 5779 + ], + "_set": [ + 5790 + ], + "where": [ + 5777 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_invites_var_pop_fields": { + "invited_by_player_steam_id": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_invites_var_pop_order_by": { + "invited_by_player_steam_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_invites_var_samp_fields": { + "invited_by_player_steam_id": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_invites_var_samp_order_by": { + "invited_by_player_steam_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_invites_variance_fields": { + "invited_by_player_steam_id": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_invites_variance_order_by": { + "invited_by_player_steam_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_roster": { + "checked_in_at": [ + 5243 + ], + "e_team_role": [ + 1488 + ], + "player": [ + 4606 + ], + "player_steam_id": [ + 312 + ], + "role": [ + 1493 + ], + "target_eligible": [ + 6 + ], + "tournament": [ + 5896 + ], + "tournament_id": [ + 6672 + ], + "tournament_team": [ + 5850 + ], + "tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_roster_aggregate": { + "aggregate": [ + 5813 + ], + "nodes": [ + 5809 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_roster_aggregate_bool_exp": { + "count": [ + 5812 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_roster_aggregate_bool_exp_count": { + "arguments": [ + 5830 + ], + "distinct": [ + 6 + ], + "filter": [ + 5818 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_roster_aggregate_fields": { + "avg": [ + 5816 + ], + "count": [ + 41, + { + "columns": [ + 5830, + "[tournament_team_roster_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 5822 + ], + "min": [ + 5824 + ], + "stddev": [ + 5832 + ], + "stddev_pop": [ + 5834 + ], + "stddev_samp": [ + 5836 + ], + "sum": [ + 5840 + ], + "var_pop": [ + 5844 + ], + "var_samp": [ + 5846 + ], + "variance": [ + 5848 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_roster_aggregate_order_by": { + "avg": [ + 5817 + ], + "count": [ + 3648 + ], + "max": [ + 5823 + ], + "min": [ + 5825 + ], + "stddev": [ + 5833 + ], + "stddev_pop": [ + 5835 + ], + "stddev_samp": [ + 5837 + ], + "sum": [ + 5841 + ], + "var_pop": [ + 5845 + ], + "var_samp": [ + 5847 + ], + "variance": [ + 5849 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_roster_arr_rel_insert_input": { + "data": [ + 5821 + ], + "on_conflict": [ + 5827 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_roster_avg_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_roster_avg_order_by": { + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_roster_bool_exp": { + "_and": [ + 5818 + ], + "_not": [ + 5818 + ], + "_or": [ + 5818 + ], + "checked_in_at": [ + 5244 + ], + "e_team_role": [ + 1491 + ], + "player": [ + 4610 + ], + "player_steam_id": [ + 314 + ], + "role": [ + 1494 + ], + "target_eligible": [ + 7 + ], + "tournament": [ + 5917 + ], + "tournament_id": [ + 6674 + ], + "tournament_team": [ + 5861 + ], + "tournament_team_id": [ + 6674 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_roster_constraint": {}, + "tournament_team_roster_inc_input": { + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_roster_insert_input": { + "checked_in_at": [ + 5243 + ], + "e_team_role": [ + 1499 + ], + "player": [ + 4617 + ], + "player_steam_id": [ + 312 + ], + "role": [ + 1493 + ], + "tournament": [ + 5926 + ], + "tournament_id": [ + 6672 + ], + "tournament_team": [ + 5870 + ], + "tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_roster_max_fields": { + "checked_in_at": [ + 5243 + ], + "player_steam_id": [ + 312 + ], + "tournament_id": [ + 6672 + ], + "tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_roster_max_order_by": { + "checked_in_at": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "tournament_id": [ + 3648 + ], + "tournament_team_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_roster_min_fields": { + "checked_in_at": [ + 5243 + ], + "player_steam_id": [ + 312 + ], + "tournament_id": [ + 6672 + ], + "tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_roster_min_order_by": { + "checked_in_at": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "tournament_id": [ + 3648 + ], + "tournament_team_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_roster_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 5809 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_roster_on_conflict": { + "constraint": [ + 5819 + ], + "update_columns": [ + 5842 + ], + "where": [ + 5818 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_roster_order_by": { + "checked_in_at": [ + 3648 + ], + "e_team_role": [ + 1501 + ], + "player": [ + 4619 + ], + "player_steam_id": [ + 3648 + ], + "role": [ + 3648 + ], + "target_eligible": [ + 3648 + ], + "tournament": [ + 5928 + ], + "tournament_id": [ + 3648 + ], + "tournament_team": [ + 5872 + ], + "tournament_team_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_roster_pk_columns_input": { + "player_steam_id": [ + 312 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_roster_select_column": {}, + "tournament_team_roster_set_input": { + "checked_in_at": [ + 5243 + ], + "player_steam_id": [ + 312 + ], + "role": [ + 1493 + ], + "tournament_id": [ + 6672 + ], + "tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_roster_stddev_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_roster_stddev_order_by": { + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_roster_stddev_pop_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_roster_stddev_pop_order_by": { + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_roster_stddev_samp_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_roster_stddev_samp_order_by": { + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_roster_stream_cursor_input": { + "initial_value": [ + 5839 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_roster_stream_cursor_value_input": { + "checked_in_at": [ + 5243 + ], + "player_steam_id": [ + 312 + ], + "role": [ + 1493 + ], + "tournament_id": [ + 6672 + ], + "tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_roster_sum_fields": { + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_roster_sum_order_by": { + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_roster_update_column": {}, + "tournament_team_roster_updates": { + "_inc": [ + 5820 + ], + "_set": [ + 5831 + ], + "where": [ + 5818 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_roster_var_pop_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_roster_var_pop_order_by": { + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_roster_var_samp_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_roster_var_samp_order_by": { + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_roster_variance_fields": { + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_team_roster_variance_order_by": { + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_teams": { + "can_manage": [ + 6 + ], + "captain": [ + 4606 + ], + "captain_steam_id": [ + 312 + ], + "checked_in": [ + 6 + ], + "checked_in_at": [ + 5243 + ], + "created_at": [ + 5243 + ], + "creator": [ + 4606 + ], + "eligible_at": [ + 5243 + ], + "free_agents": [ + 5357, + { + "distinct_on": [ + 5378, + "[tournament_free_agents_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5376, + "[tournament_free_agents_order_by!]" + ], + "where": [ + 5366 + ] + } + ], + "free_agents_aggregate": [ + 5358, + { + "distinct_on": [ + 5378, + "[tournament_free_agents_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5376, + "[tournament_free_agents_order_by!]" + ], + "where": [ + 5366 + ] + } + ], + "id": [ + 6672 + ], + "invites": [ + 5768, + { + "distinct_on": [ + 5789, + "[tournament_team_invites_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5787, + "[tournament_team_invites_order_by!]" + ], + "where": [ + 5777 + ] + } + ], + "invites_aggregate": [ + 5769, + { + "distinct_on": [ + 5789, + "[tournament_team_invites_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5787, + "[tournament_team_invites_order_by!]" + ], + "where": [ + 5777 + ] + } + ], + "is_drafted": [ + 6 + ], + "name": [ + 85 + ], + "owner_steam_id": [ + 312 + ], + "results": [ + 7414 + ], + "roster": [ + 5809, + { + "distinct_on": [ + 5830, + "[tournament_team_roster_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5828, + "[tournament_team_roster_order_by!]" + ], + "where": [ + 5818 + ] + } + ], + "roster_aggregate": [ + 5810, + { + "distinct_on": [ + 5830, + "[tournament_team_roster_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5828, + "[tournament_team_roster_order_by!]" + ], + "where": [ + 5818 + ] + } + ], + "seed": [ + 41 + ], + "short_name": [ + 85 + ], + "team": [ + 5194 + ], + "team_id": [ + 6672 + ], + "tournament": [ + 5896 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_teams_aggregate": { + "aggregate": [ + 5856 + ], + "nodes": [ + 5850 + ], + "__typename": [ + 85 + ] + }, + "tournament_teams_aggregate_bool_exp": { + "bool_and": [ + 5853 + ], + "bool_or": [ + 5854 + ], + "count": [ + 5855 + ], + "__typename": [ + 85 + ] + }, + "tournament_teams_aggregate_bool_exp_bool_and": { + "arguments": [ + 5875 + ], + "distinct": [ + 6 + ], + "filter": [ + 5861 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "tournament_teams_aggregate_bool_exp_bool_or": { + "arguments": [ + 5876 + ], + "distinct": [ + 6 + ], + "filter": [ + 5861 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "tournament_teams_aggregate_bool_exp_count": { + "arguments": [ + 5874 + ], + "distinct": [ + 6 + ], + "filter": [ + 5861 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "tournament_teams_aggregate_fields": { + "avg": [ + 5859 + ], + "count": [ + 41, + { + "columns": [ + 5874, + "[tournament_teams_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 5865 + ], + "min": [ + 5867 + ], + "stddev": [ + 5878 + ], + "stddev_pop": [ + 5880 + ], + "stddev_samp": [ + 5882 + ], + "sum": [ + 5886 + ], + "var_pop": [ + 5890 + ], + "var_samp": [ + 5892 + ], + "variance": [ + 5894 + ], + "__typename": [ + 85 + ] + }, + "tournament_teams_aggregate_order_by": { + "avg": [ + 5860 + ], + "count": [ + 3648 + ], + "max": [ + 5866 + ], + "min": [ + 5868 + ], + "stddev": [ + 5879 + ], + "stddev_pop": [ + 5881 + ], + "stddev_samp": [ + 5883 + ], + "sum": [ + 5887 + ], + "var_pop": [ + 5891 + ], + "var_samp": [ + 5893 + ], + "variance": [ + 5895 + ], + "__typename": [ + 85 + ] + }, + "tournament_teams_arr_rel_insert_input": { + "data": [ + 5864 + ], + "on_conflict": [ + 5871 + ], + "__typename": [ + 85 + ] + }, + "tournament_teams_avg_fields": { + "captain_steam_id": [ + 32 + ], + "owner_steam_id": [ + 32 + ], + "seed": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_teams_avg_order_by": { + "captain_steam_id": [ + 3648 + ], + "owner_steam_id": [ + 3648 + ], + "seed": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_teams_bool_exp": { + "_and": [ + 5861 + ], + "_not": [ + 5861 + ], + "_or": [ + 5861 + ], + "can_manage": [ + 7 + ], + "captain": [ + 4610 + ], + "captain_steam_id": [ + 314 + ], + "checked_in": [ + 7 + ], + "checked_in_at": [ + 5244 + ], + "created_at": [ + 5244 + ], + "creator": [ + 4610 + ], + "eligible_at": [ + 5244 + ], + "free_agents": [ + 5366 + ], + "free_agents_aggregate": [ + 5359 + ], + "id": [ + 6674 + ], + "invites": [ + 5777 + ], + "invites_aggregate": [ + 5770 + ], + "is_drafted": [ + 7 + ], + "name": [ + 87 + ], + "owner_steam_id": [ + 314 + ], + "results": [ + 7433 + ], + "roster": [ + 5818 + ], + "roster_aggregate": [ + 5811 + ], + "seed": [ + 42 + ], + "short_name": [ + 87 + ], + "team": [ + 5205 + ], + "team_id": [ + 6674 + ], + "tournament": [ + 5917 + ], + "tournament_id": [ + 6674 + ], + "__typename": [ + 85 + ] + }, + "tournament_teams_constraint": {}, + "tournament_teams_inc_input": { + "captain_steam_id": [ + 312 + ], + "owner_steam_id": [ + 312 + ], + "seed": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "tournament_teams_insert_input": { + "captain": [ + 4617 + ], + "captain_steam_id": [ + 312 + ], + "checked_in_at": [ + 5243 + ], + "created_at": [ + 5243 + ], + "creator": [ + 4617 + ], + "eligible_at": [ + 5243 + ], + "free_agents": [ + 5363 + ], + "id": [ + 6672 + ], + "invites": [ + 5774 + ], + "is_drafted": [ + 6 + ], + "name": [ + 85 + ], + "owner_steam_id": [ + 312 + ], + "results": [ + 7442 + ], + "roster": [ + 5815 + ], + "seed": [ + 41 + ], + "short_name": [ + 85 + ], + "team": [ + 5214 + ], + "team_id": [ + 6672 + ], + "tournament": [ + 5926 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_teams_max_fields": { + "captain_steam_id": [ + 312 + ], + "checked_in_at": [ + 5243 + ], + "created_at": [ + 5243 + ], + "eligible_at": [ + 5243 + ], + "id": [ + 6672 + ], + "name": [ + 85 + ], + "owner_steam_id": [ + 312 + ], + "seed": [ + 41 + ], + "short_name": [ + 85 + ], + "team_id": [ + 6672 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_teams_max_order_by": { + "captain_steam_id": [ + 3648 + ], + "checked_in_at": [ + 3648 + ], + "created_at": [ + 3648 + ], + "eligible_at": [ + 3648 + ], + "id": [ + 3648 + ], + "name": [ + 3648 + ], + "owner_steam_id": [ + 3648 + ], + "seed": [ + 3648 + ], + "short_name": [ + 3648 + ], + "team_id": [ + 3648 + ], + "tournament_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_teams_min_fields": { + "captain_steam_id": [ + 312 + ], + "checked_in_at": [ + 5243 + ], + "created_at": [ + 5243 + ], + "eligible_at": [ + 5243 + ], + "id": [ + 6672 + ], + "name": [ + 85 + ], + "owner_steam_id": [ + 312 + ], + "seed": [ + 41 + ], + "short_name": [ + 85 + ], + "team_id": [ + 6672 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_teams_min_order_by": { + "captain_steam_id": [ + 3648 + ], + "checked_in_at": [ + 3648 + ], + "created_at": [ + 3648 + ], + "eligible_at": [ + 3648 + ], + "id": [ + 3648 + ], + "name": [ + 3648 + ], + "owner_steam_id": [ + 3648 + ], + "seed": [ + 3648 + ], + "short_name": [ + 3648 + ], + "team_id": [ + 3648 + ], + "tournament_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_teams_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 5850 + ], + "__typename": [ + 85 + ] + }, + "tournament_teams_obj_rel_insert_input": { + "data": [ + 5864 + ], + "on_conflict": [ + 5871 + ], + "__typename": [ + 85 + ] + }, + "tournament_teams_on_conflict": { + "constraint": [ + 5862 + ], + "update_columns": [ + 5888 + ], + "where": [ + 5861 + ], + "__typename": [ + 85 + ] + }, + "tournament_teams_order_by": { + "can_manage": [ + 3648 + ], + "captain": [ + 4619 + ], + "captain_steam_id": [ + 3648 + ], + "checked_in": [ + 3648 + ], + "checked_in_at": [ + 3648 + ], + "created_at": [ + 3648 + ], + "creator": [ + 4619 + ], + "eligible_at": [ + 3648 + ], + "free_agents_aggregate": [ + 5362 + ], + "id": [ + 3648 + ], + "invites_aggregate": [ + 5773 + ], + "is_drafted": [ + 3648 + ], + "name": [ + 3648 + ], + "owner_steam_id": [ + 3648 + ], + "results": [ + 7444 + ], + "roster_aggregate": [ + 5814 + ], + "seed": [ + 3648 + ], + "short_name": [ + 3648 + ], + "team": [ + 5216 + ], + "team_id": [ + 3648 + ], + "tournament": [ + 5928 + ], + "tournament_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_teams_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_teams_select_column": {}, + "tournament_teams_select_column_tournament_teams_aggregate_bool_exp_bool_and_arguments_columns": {}, + "tournament_teams_select_column_tournament_teams_aggregate_bool_exp_bool_or_arguments_columns": {}, + "tournament_teams_set_input": { + "captain_steam_id": [ + 312 + ], + "checked_in_at": [ + 5243 + ], + "created_at": [ + 5243 + ], + "eligible_at": [ + 5243 + ], + "id": [ + 6672 + ], + "is_drafted": [ + 6 + ], + "name": [ + 85 + ], + "owner_steam_id": [ + 312 + ], + "seed": [ + 41 + ], + "short_name": [ + 85 + ], + "team_id": [ + 6672 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_teams_stddev_fields": { + "captain_steam_id": [ + 32 + ], + "owner_steam_id": [ + 32 + ], + "seed": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_teams_stddev_order_by": { + "captain_steam_id": [ + 3648 + ], + "owner_steam_id": [ + 3648 + ], + "seed": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_teams_stddev_pop_fields": { + "captain_steam_id": [ + 32 + ], + "owner_steam_id": [ + 32 + ], + "seed": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_teams_stddev_pop_order_by": { + "captain_steam_id": [ + 3648 + ], + "owner_steam_id": [ + 3648 + ], + "seed": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_teams_stddev_samp_fields": { + "captain_steam_id": [ + 32 + ], + "owner_steam_id": [ + 32 + ], + "seed": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_teams_stddev_samp_order_by": { + "captain_steam_id": [ + 3648 + ], + "owner_steam_id": [ + 3648 + ], + "seed": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_teams_stream_cursor_input": { + "initial_value": [ + 5885 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "tournament_teams_stream_cursor_value_input": { + "captain_steam_id": [ + 312 + ], + "checked_in_at": [ + 5243 + ], + "created_at": [ + 5243 + ], + "eligible_at": [ + 5243 + ], + "id": [ + 6672 + ], + "is_drafted": [ + 6 + ], + "name": [ + 85 + ], + "owner_steam_id": [ + 312 + ], + "seed": [ + 41 + ], + "short_name": [ + 85 + ], + "team_id": [ + 6672 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournament_teams_sum_fields": { + "captain_steam_id": [ + 312 + ], + "owner_steam_id": [ + 312 + ], + "seed": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "tournament_teams_sum_order_by": { + "captain_steam_id": [ + 3648 + ], + "owner_steam_id": [ + 3648 + ], + "seed": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_teams_update_column": {}, + "tournament_teams_updates": { + "_inc": [ + 5863 + ], + "_set": [ + 5877 + ], + "where": [ + 5861 + ], + "__typename": [ + 85 + ] + }, + "tournament_teams_var_pop_fields": { + "captain_steam_id": [ + 32 + ], + "owner_steam_id": [ + 32 + ], + "seed": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_teams_var_pop_order_by": { + "captain_steam_id": [ + 3648 + ], + "owner_steam_id": [ + 3648 + ], + "seed": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_teams_var_samp_fields": { + "captain_steam_id": [ + 32 + ], + "owner_steam_id": [ + 32 + ], + "seed": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_teams_var_samp_order_by": { + "captain_steam_id": [ + 3648 + ], + "owner_steam_id": [ + 3648 + ], + "seed": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournament_teams_variance_fields": { + "captain_steam_id": [ + 32 + ], + "owner_steam_id": [ + 32 + ], + "seed": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournament_teams_variance_order_by": { + "captain_steam_id": [ + 3648 + ], + "owner_steam_id": [ + 3648 + ], + "seed": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournaments": { + "admin": [ + 4606 + ], + "auto_start": [ + 6 + ], + "award_configs": [ + 5245, + { + "distinct_on": [ + 5267, + "[tournament_awards_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5265, + "[tournament_awards_order_by!]" + ], + "where": [ + 5254 + ] + } + ], + "award_configs_aggregate": [ + 5246, + { + "distinct_on": [ + 5267, + "[tournament_awards_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5265, + "[tournament_awards_order_by!]" + ], + "where": [ + 5254 + ] + } + ], + "awards": [ + 243, + { + "distinct_on": [ + 264, + "[award_recipients_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 262, + "[award_recipients_order_by!]" + ], + "where": [ + 252 + ] + } + ], + "awards_aggregate": [ + 244, + { + "distinct_on": [ + 264, + "[award_recipients_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 262, + "[award_recipients_order_by!]" + ], + "where": [ + 252 + ] + } + ], + "awards_enabled": [ + 6 + ], + "banner": [ + 85 + ], + "can_cancel": [ + 6 + ], + "can_close_registration": [ + 6 + ], + "can_join": [ + 6 + ], + "can_open_registration": [ + 6 + ], + "can_pause": [ + 6 + ], + "can_resume": [ + 6 + ], + "can_review_check_in": [ + 6 + ], + "can_setup": [ + 6 + ], + "can_start": [ + 6 + ], + "categories": [ + 5333, + { + "distinct_on": [ + 5351, + "[tournament_categories_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5349, + "[tournament_categories_order_by!]" + ], + "where": [ + 5340 + ] + } + ], + "categories_aggregate": [ + 5334, + { + "distinct_on": [ + 5351, + "[tournament_categories_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5349, + "[tournament_categories_order_by!]" + ], + "where": [ + 5340 + ] + } + ], + "check_in_closed_for": [ + 5243 + ], + "check_in_closes_before_minutes": [ + 41 + ], + "check_in_closing_notified_for": [ + 5243 + ], + "check_in_ends_at": [ + 5243 + ], + "check_in_open": [ + 6 + ], + "check_in_opens_before_minutes": [ + 41 + ], + "check_in_required": [ + 6 + ], + "check_in_setting": [ + 690 + ], + "check_in_started": [ + 6 + ], + "created_at": [ + 5243 + ], + "current_stage": [ + 41 + ], + "description": [ + 85 + ], + "discord_guild_id": [ + 85 + ], + "discord_notifications_enabled": [ + 6 + ], + "discord_notify_Canceled": [ + 6 + ], + "discord_notify_Finished": [ + 6 + ], + "discord_notify_Forfeit": [ + 6 + ], + "discord_notify_Live": [ + 6 + ], + "discord_notify_MapPaused": [ + 6 + ], + "discord_notify_PickingPlayers": [ + 6 + ], + "discord_notify_Scheduled": [ + 6 + ], + "discord_notify_Surrendered": [ + 6 + ], + "discord_notify_Tie": [ + 6 + ], + "discord_notify_Veto": [ + 6 + ], + "discord_notify_WaitingForCheckIn": [ + 6 + ], + "discord_notify_WaitingForServer": [ + 6 + ], + "discord_role_id": [ + 85 + ], + "discord_voice_enabled": [ + 6 + ], + "discord_webhook": [ + 85 + ], + "e_tournament_status": [ + 1632 + ], + "free_agents": [ + 5357, + { + "distinct_on": [ + 5378, + "[tournament_free_agents_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5376, + "[tournament_free_agents_order_by!]" + ], + "where": [ + 5366 + ] + } + ], + "free_agents_aggregate": [ + 5358, + { + "distinct_on": [ + 5378, + "[tournament_free_agents_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5376, + "[tournament_free_agents_order_by!]" + ], + "where": [ + 5366 + ] + } + ], + "has_min_teams": [ + 6 + ], + "homepage": [ + 85 + ], + "id": [ + 6672 + ], + "invite_only": [ + 6 + ], + "is_league": [ + 6 + ], + "is_organizer": [ + 6 + ], + "joined_tournament": [ + 6 + ], + "latitude": [ + 2093 + ], + "league_season_division": [ + 2617 + ], + "location": [ + 85 + ], + "logo": [ + 85 + ], + "longitude": [ + 2093 + ], + "match_options_id": [ + 6672 + ], + "max_elo": [ + 41 + ], + "max_players_per_lineup": [ + 41 + ], + "meets_min_role": [ + 6 + ], + "min_elo": [ + 41 + ], + "min_players_per_lineup": [ + 41 + ], + "min_role": [ + 1286 + ], + "missed_check_in_count": [ + 41 + ], + "name": [ + 85 + ], + "options": [ + 3290 + ], + "organizer_steam_id": [ + 312 + ], + "organizer_teams": [ + 5544, + { + "distinct_on": [ + 5562, + "[tournament_organizer_teams_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5560, + "[tournament_organizer_teams_order_by!]" + ], + "where": [ + 5551 + ] + } + ], + "organizer_teams_aggregate": [ + 5545, + { + "distinct_on": [ + 5562, + "[tournament_organizer_teams_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5560, + "[tournament_organizer_teams_order_by!]" + ], + "where": [ + 5551 + ] + } + ], + "organizers": [ + 5568, + { + "distinct_on": [ + 5589, + "[tournament_organizers_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5587, + "[tournament_organizers_order_by!]" + ], + "where": [ + 5577 + ] + } + ], + "organizers_aggregate": [ + 5569, + { + "distinct_on": [ + 5589, + "[tournament_organizers_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5587, + "[tournament_organizers_order_by!]" + ], + "where": [ + 5577 + ] + } + ], + "player_stats": [ + 7525, + { + "distinct_on": [ + 7551, + "[v_tournament_player_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7550, + "[v_tournament_player_stats_order_by!]" + ], + "where": [ + 7544 + ] + } + ], + "player_stats_aggregate": [ + 7526, + { + "distinct_on": [ + 7551, + "[v_tournament_player_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7550, + "[v_tournament_player_stats_order_by!]" + ], + "where": [ + 7544 + ] + } + ], + "prizes": [ + 5609, + { + "distinct_on": [ + 5630, + "[tournament_prizes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5628, + "[tournament_prizes_order_by!]" + ], + "where": [ + 5618 + ] + } + ], + "prizes_aggregate": [ + 5610, + { + "distinct_on": [ + 5630, + "[tournament_prizes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5628, + "[tournament_prizes_order_by!]" + ], + "where": [ + 5618 + ] + } + ], + "regions": [ + 85 + ], + "registration_type": [ + 1596 + ], + "registration_unlocked": [ + 6 + ], + "results": [ + 7474, + { + "distinct_on": [ + 7500, + "[v_team_tournament_results_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7499, + "[v_team_tournament_results_order_by!]" + ], + "where": [ + 7493 + ] + } + ], + "results_aggregate": [ + 7475, + { + "distinct_on": [ + 7500, + "[v_team_tournament_results_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7499, + "[v_team_tournament_results_order_by!]" + ], + "where": [ + 7493 + ] + } + ], + "rosters": [ + 5809, + { + "distinct_on": [ + 5830, + "[tournament_team_roster_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5828, + "[tournament_team_roster_order_by!]" + ], + "where": [ + 5818 + ] + } + ], + "rosters_aggregate": [ + 5810, + { + "distinct_on": [ + 5830, + "[tournament_team_roster_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5828, + "[tournament_team_roster_order_by!]" + ], + "where": [ + 5818 + ] + } + ], + "scheduling_mode": [ + 85 + ], + "stages": [ + 5717, + { + "distinct_on": [ + 5746, + "[tournament_stages_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5743, + "[tournament_stages_order_by!]" + ], + "where": [ + 5729 + ] + } + ], + "stages_aggregate": [ + 5718, + { + "distinct_on": [ + 5746, + "[tournament_stages_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5743, + "[tournament_stages_order_by!]" + ], + "where": [ + 5729 + ] + } + ], + "start": [ + 5243 + ], + "status": [ + 1637 + ], + "substitutes_enabled": [ + 6 + ], + "teams": [ + 5850, + { + "distinct_on": [ + 5874, + "[tournament_teams_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5872, + "[tournament_teams_order_by!]" + ], + "where": [ + 5861 + ] + } + ], + "teams_aggregate": [ + 5851, + { + "distinct_on": [ + 5874, + "[tournament_teams_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5872, + "[tournament_teams_order_by!]" + ], + "where": [ + 5861 + ] + } + ], + "__typename": [ + 85 + ] + }, + "tournaments_aggregate": { + "aggregate": [ + 5912 + ], + "nodes": [ + 5896 + ], + "__typename": [ + 85 + ] + }, + "tournaments_aggregate_bool_exp": { + "avg": [ + 5899 + ], + "bool_and": [ + 5900 + ], + "bool_or": [ + 5901 + ], + "corr": [ + 5902 + ], + "count": [ + 5904 + ], + "covar_samp": [ + 5905 + ], + "max": [ + 5907 + ], + "min": [ + 5908 + ], + "stddev_samp": [ + 5909 + ], + "sum": [ + 5910 + ], + "var_samp": [ + 5911 + ], + "__typename": [ + 85 + ] + }, + "tournaments_aggregate_bool_exp_avg": { + "arguments": [ + 5931 + ], + "distinct": [ + 6 + ], + "filter": [ + 5917 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "tournaments_aggregate_bool_exp_bool_and": { + "arguments": [ + 5932 + ], + "distinct": [ + 6 + ], + "filter": [ + 5917 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "tournaments_aggregate_bool_exp_bool_or": { + "arguments": [ + 5933 + ], + "distinct": [ + 6 + ], + "filter": [ + 5917 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "tournaments_aggregate_bool_exp_corr": { + "arguments": [ + 5903 + ], + "distinct": [ + 6 + ], + "filter": [ + 5917 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "tournaments_aggregate_bool_exp_corr_arguments": { + "X": [ + 5934 + ], + "Y": [ + 5934 + ], + "__typename": [ + 85 + ] + }, + "tournaments_aggregate_bool_exp_count": { + "arguments": [ + 5930 + ], + "distinct": [ + 6 + ], + "filter": [ + 5917 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "tournaments_aggregate_bool_exp_covar_samp": { + "arguments": [ + 5906 + ], + "distinct": [ + 6 + ], + "filter": [ + 5917 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "tournaments_aggregate_bool_exp_covar_samp_arguments": { + "X": [ + 5935 + ], + "Y": [ + 5935 + ], + "__typename": [ + 85 + ] + }, + "tournaments_aggregate_bool_exp_max": { + "arguments": [ + 5936 + ], + "distinct": [ + 6 + ], + "filter": [ + 5917 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "tournaments_aggregate_bool_exp_min": { + "arguments": [ + 5937 + ], + "distinct": [ + 6 + ], + "filter": [ + 5917 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "tournaments_aggregate_bool_exp_stddev_samp": { + "arguments": [ + 5938 + ], + "distinct": [ + 6 + ], + "filter": [ + 5917 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "tournaments_aggregate_bool_exp_sum": { + "arguments": [ + 5939 + ], + "distinct": [ + 6 + ], + "filter": [ + 5917 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "tournaments_aggregate_bool_exp_var_samp": { + "arguments": [ + 5940 + ], + "distinct": [ + 6 + ], + "filter": [ + 5917 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "tournaments_aggregate_fields": { + "avg": [ + 5915 + ], + "count": [ + 41, + { + "columns": [ + 5930, + "[tournaments_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 5921 + ], + "min": [ + 5923 + ], + "stddev": [ + 5942 + ], + "stddev_pop": [ + 5944 + ], + "stddev_samp": [ + 5946 + ], + "sum": [ + 5950 + ], + "var_pop": [ + 5954 + ], + "var_samp": [ + 5956 + ], + "variance": [ + 5958 + ], + "__typename": [ + 85 + ] + }, + "tournaments_aggregate_order_by": { + "avg": [ + 5916 + ], + "count": [ + 3648 + ], + "max": [ + 5922 + ], + "min": [ + 5924 + ], + "stddev": [ + 5943 + ], + "stddev_pop": [ + 5945 + ], + "stddev_samp": [ + 5947 + ], + "sum": [ + 5951 + ], + "var_pop": [ + 5955 + ], + "var_samp": [ + 5957 + ], + "variance": [ + 5959 + ], + "__typename": [ + 85 + ] + }, + "tournaments_arr_rel_insert_input": { + "data": [ + 5920 + ], + "on_conflict": [ + 5927 + ], + "__typename": [ + 85 + ] + }, + "tournaments_avg_fields": { + "check_in_closes_before_minutes": [ + 32 + ], + "check_in_opens_before_minutes": [ + 32 + ], + "current_stage": [ + 41 + ], + "latitude": [ + 32 + ], + "longitude": [ + 32 + ], + "max_elo": [ + 32 + ], + "max_players_per_lineup": [ + 41 + ], + "min_elo": [ + 32 + ], + "min_players_per_lineup": [ + 41 + ], + "missed_check_in_count": [ + 41 + ], + "organizer_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournaments_avg_order_by": { + "check_in_closes_before_minutes": [ + 3648 + ], + "check_in_opens_before_minutes": [ + 3648 + ], + "latitude": [ + 3648 + ], + "longitude": [ + 3648 + ], + "max_elo": [ + 3648 + ], + "min_elo": [ + 3648 + ], + "organizer_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournaments_bool_exp": { + "_and": [ + 5917 + ], + "_not": [ + 5917 + ], + "_or": [ + 5917 + ], + "admin": [ + 4610 + ], + "auto_start": [ + 7 + ], + "award_configs": [ + 5254 + ], + "award_configs_aggregate": [ + 5247 + ], + "awards": [ + 252 + ], + "awards_aggregate": [ + 245 + ], + "awards_enabled": [ + 7 + ], + "banner": [ + 87 + ], + "can_cancel": [ + 7 + ], + "can_close_registration": [ + 7 + ], + "can_join": [ + 7 + ], + "can_open_registration": [ + 7 + ], + "can_pause": [ + 7 + ], + "can_resume": [ + 7 + ], + "can_review_check_in": [ + 7 + ], + "can_setup": [ + 7 + ], + "can_start": [ + 7 + ], + "categories": [ + 5340 + ], + "categories_aggregate": [ + 5335 + ], + "check_in_closed_for": [ + 5244 + ], + "check_in_closes_before_minutes": [ + 42 + ], + "check_in_closing_notified_for": [ + 5244 + ], + "check_in_ends_at": [ + 5244 + ], + "check_in_open": [ + 7 + ], + "check_in_opens_before_minutes": [ + 42 + ], + "check_in_required": [ + 7 + ], + "check_in_setting": [ + 691 + ], + "check_in_started": [ + 7 + ], + "created_at": [ + 5244 + ], + "current_stage": [ + 42 + ], + "description": [ + 87 + ], + "discord_guild_id": [ + 87 + ], + "discord_notifications_enabled": [ + 7 + ], + "discord_notify_Canceled": [ + 7 + ], + "discord_notify_Finished": [ + 7 + ], + "discord_notify_Forfeit": [ + 7 + ], + "discord_notify_Live": [ + 7 + ], + "discord_notify_MapPaused": [ + 7 + ], + "discord_notify_PickingPlayers": [ + 7 + ], + "discord_notify_Scheduled": [ + 7 + ], + "discord_notify_Surrendered": [ + 7 + ], + "discord_notify_Tie": [ + 7 + ], + "discord_notify_Veto": [ + 7 + ], + "discord_notify_WaitingForCheckIn": [ + 7 + ], + "discord_notify_WaitingForServer": [ + 7 + ], + "discord_role_id": [ + 87 + ], + "discord_voice_enabled": [ + 7 + ], + "discord_webhook": [ + 87 + ], + "e_tournament_status": [ + 1635 + ], + "free_agents": [ + 5366 + ], + "free_agents_aggregate": [ + 5359 + ], + "has_min_teams": [ + 7 + ], + "homepage": [ + 87 + ], + "id": [ + 6674 + ], + "invite_only": [ + 7 + ], + "is_league": [ + 7 + ], + "is_organizer": [ + 7 + ], + "joined_tournament": [ + 7 + ], + "latitude": [ + 2094 + ], + "league_season_division": [ + 2624 + ], + "location": [ + 87 + ], + "logo": [ + 87 + ], + "longitude": [ + 2094 + ], + "match_options_id": [ + 6674 + ], + "max_elo": [ + 42 + ], + "max_players_per_lineup": [ + 42 + ], + "meets_min_role": [ + 7 + ], + "min_elo": [ + 42 + ], + "min_players_per_lineup": [ + 42 + ], + "min_role": [ + 1287 + ], + "missed_check_in_count": [ + 42 + ], + "name": [ + 87 + ], + "options": [ + 3301 + ], + "organizer_steam_id": [ + 314 + ], + "organizer_teams": [ + 5551 + ], + "organizer_teams_aggregate": [ + 5546 + ], + "organizers": [ + 5577 + ], + "organizers_aggregate": [ + 5570 + ], + "player_stats": [ + 7544 + ], + "player_stats_aggregate": [ + 7527 + ], + "prizes": [ + 5618 + ], + "prizes_aggregate": [ + 5611 + ], + "regions": [ + 86 + ], + "registration_type": [ + 1597 + ], + "registration_unlocked": [ + 7 + ], + "results": [ + 7493 + ], + "results_aggregate": [ + 7476 + ], + "rosters": [ + 5818 + ], + "rosters_aggregate": [ + 5811 + ], + "scheduling_mode": [ + 87 + ], + "stages": [ + 5729 + ], + "stages_aggregate": [ + 5719 + ], + "start": [ + 5244 + ], + "status": [ + 1638 + ], + "substitutes_enabled": [ + 7 + ], + "teams": [ + 5861 + ], + "teams_aggregate": [ + 5852 + ], + "__typename": [ + 85 + ] + }, + "tournaments_constraint": {}, + "tournaments_inc_input": { + "check_in_closes_before_minutes": [ + 41 + ], + "check_in_opens_before_minutes": [ + 41 + ], + "latitude": [ + 2093 + ], + "longitude": [ + 2093 + ], + "max_elo": [ + 41 + ], + "min_elo": [ + 41 + ], + "organizer_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "tournaments_insert_input": { + "admin": [ + 4617 + ], + "auto_start": [ + 6 + ], + "award_configs": [ + 5251 + ], + "awards": [ + 249 + ], + "awards_enabled": [ + 6 + ], + "banner": [ + 85 + ], + "categories": [ + 5339 + ], + "check_in_closed_for": [ + 5243 + ], + "check_in_closes_before_minutes": [ + 41 + ], + "check_in_closing_notified_for": [ + 5243 + ], + "check_in_ends_at": [ + 5243 + ], + "check_in_opens_before_minutes": [ + 41 + ], + "check_in_required": [ + 6 + ], + "check_in_setting": [ + 690 + ], + "created_at": [ + 5243 + ], + "description": [ + 85 + ], + "discord_guild_id": [ + 85 + ], + "discord_notifications_enabled": [ + 6 + ], + "discord_notify_Canceled": [ + 6 + ], + "discord_notify_Finished": [ + 6 + ], + "discord_notify_Forfeit": [ + 6 + ], + "discord_notify_Live": [ + 6 + ], + "discord_notify_MapPaused": [ + 6 + ], + "discord_notify_PickingPlayers": [ + 6 + ], + "discord_notify_Scheduled": [ + 6 + ], + "discord_notify_Surrendered": [ + 6 + ], + "discord_notify_Tie": [ + 6 + ], + "discord_notify_Veto": [ + 6 + ], + "discord_notify_WaitingForCheckIn": [ + 6 + ], + "discord_notify_WaitingForServer": [ + 6 + ], + "discord_role_id": [ + 85 + ], + "discord_voice_enabled": [ + 6 + ], + "discord_webhook": [ + 85 + ], + "e_tournament_status": [ + 1643 + ], + "free_agents": [ + 5363 + ], + "homepage": [ + 85 + ], + "id": [ + 6672 + ], + "invite_only": [ + 6 + ], + "is_league": [ + 6 + ], + "latitude": [ + 2093 + ], + "league_season_division": [ + 2632 + ], + "location": [ + 85 + ], + "logo": [ + 85 + ], + "longitude": [ + 2093 + ], + "match_options_id": [ + 6672 + ], + "max_elo": [ + 41 + ], + "min_elo": [ + 41 + ], + "min_role": [ + 1286 + ], + "name": [ + 85 + ], + "options": [ + 3310 + ], + "organizer_steam_id": [ + 312 + ], + "organizer_teams": [ + 5550 + ], + "organizers": [ + 5574 + ], + "player_stats": [ + 7541 + ], + "prizes": [ + 5615 + ], + "regions": [ + 85 + ], + "registration_type": [ + 1596 + ], + "results": [ + 7490 + ], + "rosters": [ + 5815 + ], + "scheduling_mode": [ + 85 + ], + "stages": [ + 5726 + ], + "start": [ + 5243 + ], + "status": [ + 1637 + ], + "substitutes_enabled": [ + 6 + ], + "teams": [ + 5858 + ], + "__typename": [ + 85 + ] + }, + "tournaments_max_fields": { + "banner": [ + 85 + ], + "check_in_closed_for": [ + 5243 + ], + "check_in_closes_before_minutes": [ + 41 + ], + "check_in_closing_notified_for": [ + 5243 + ], + "check_in_ends_at": [ + 5243 + ], + "check_in_opens_before_minutes": [ + 41 + ], + "created_at": [ + 5243 + ], + "current_stage": [ + 41 + ], + "description": [ + 85 + ], + "discord_guild_id": [ + 85 + ], + "discord_role_id": [ + 85 + ], + "discord_webhook": [ + 85 + ], + "homepage": [ + 85 + ], + "id": [ + 6672 + ], + "latitude": [ + 2093 + ], + "location": [ + 85 + ], + "logo": [ + 85 + ], + "longitude": [ + 2093 + ], + "match_options_id": [ + 6672 + ], + "max_elo": [ + 41 + ], + "max_players_per_lineup": [ + 41 + ], + "min_elo": [ + 41 + ], + "min_players_per_lineup": [ + 41 + ], + "missed_check_in_count": [ + 41 + ], + "name": [ + 85 + ], + "organizer_steam_id": [ + 312 + ], + "regions": [ + 85 + ], + "scheduling_mode": [ + 85 + ], + "start": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "tournaments_max_order_by": { + "banner": [ + 3648 + ], + "check_in_closed_for": [ + 3648 + ], + "check_in_closes_before_minutes": [ + 3648 + ], + "check_in_closing_notified_for": [ + 3648 + ], + "check_in_ends_at": [ + 3648 + ], + "check_in_opens_before_minutes": [ + 3648 + ], + "created_at": [ + 3648 + ], + "description": [ + 3648 + ], + "discord_guild_id": [ + 3648 + ], + "discord_role_id": [ + 3648 + ], + "discord_webhook": [ + 3648 + ], + "homepage": [ + 3648 + ], + "id": [ + 3648 + ], + "latitude": [ + 3648 + ], + "location": [ + 3648 + ], + "logo": [ + 3648 + ], + "longitude": [ + 3648 + ], + "match_options_id": [ + 3648 + ], + "max_elo": [ + 3648 + ], + "min_elo": [ + 3648 + ], + "name": [ + 3648 + ], + "organizer_steam_id": [ + 3648 + ], + "regions": [ + 3648 + ], + "scheduling_mode": [ + 3648 + ], + "start": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournaments_min_fields": { + "banner": [ + 85 + ], + "check_in_closed_for": [ + 5243 + ], + "check_in_closes_before_minutes": [ + 41 + ], + "check_in_closing_notified_for": [ + 5243 + ], + "check_in_ends_at": [ + 5243 + ], + "check_in_opens_before_minutes": [ + 41 + ], + "created_at": [ + 5243 + ], + "current_stage": [ + 41 + ], + "description": [ + 85 + ], + "discord_guild_id": [ + 85 + ], + "discord_role_id": [ + 85 + ], + "discord_webhook": [ + 85 + ], + "homepage": [ + 85 + ], + "id": [ + 6672 + ], + "latitude": [ + 2093 + ], + "location": [ + 85 + ], + "logo": [ + 85 + ], + "longitude": [ + 2093 + ], + "match_options_id": [ + 6672 + ], + "max_elo": [ + 41 + ], + "max_players_per_lineup": [ + 41 + ], + "min_elo": [ + 41 + ], + "min_players_per_lineup": [ + 41 + ], + "missed_check_in_count": [ + 41 + ], + "name": [ + 85 + ], + "organizer_steam_id": [ + 312 + ], + "regions": [ + 85 + ], + "scheduling_mode": [ + 85 + ], + "start": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "tournaments_min_order_by": { + "banner": [ + 3648 + ], + "check_in_closed_for": [ + 3648 + ], + "check_in_closes_before_minutes": [ + 3648 + ], + "check_in_closing_notified_for": [ + 3648 + ], + "check_in_ends_at": [ + 3648 + ], + "check_in_opens_before_minutes": [ + 3648 + ], + "created_at": [ + 3648 + ], + "description": [ + 3648 + ], + "discord_guild_id": [ + 3648 + ], + "discord_role_id": [ + 3648 + ], + "discord_webhook": [ + 3648 + ], + "homepage": [ + 3648 + ], + "id": [ + 3648 + ], + "latitude": [ + 3648 + ], + "location": [ + 3648 + ], + "logo": [ + 3648 + ], + "longitude": [ + 3648 + ], + "match_options_id": [ + 3648 + ], + "max_elo": [ + 3648 + ], + "min_elo": [ + 3648 + ], + "name": [ + 3648 + ], + "organizer_steam_id": [ + 3648 + ], + "regions": [ + 3648 + ], + "scheduling_mode": [ + 3648 + ], + "start": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournaments_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 5896 + ], + "__typename": [ + 85 + ] + }, + "tournaments_obj_rel_insert_input": { + "data": [ + 5920 + ], + "on_conflict": [ + 5927 + ], + "__typename": [ + 85 + ] + }, + "tournaments_on_conflict": { + "constraint": [ + 5918 + ], + "update_columns": [ + 5952 + ], + "where": [ + 5917 + ], + "__typename": [ + 85 + ] + }, + "tournaments_order_by": { + "admin": [ + 4619 + ], + "auto_start": [ + 3648 + ], + "award_configs_aggregate": [ + 5250 + ], + "awards_aggregate": [ + 248 + ], + "awards_enabled": [ + 3648 + ], + "banner": [ + 3648 + ], + "can_cancel": [ + 3648 + ], + "can_close_registration": [ + 3648 + ], + "can_join": [ + 3648 + ], + "can_open_registration": [ + 3648 + ], + "can_pause": [ + 3648 + ], + "can_resume": [ + 3648 + ], + "can_review_check_in": [ + 3648 + ], + "can_setup": [ + 3648 + ], + "can_start": [ + 3648 + ], + "categories_aggregate": [ + 5338 + ], + "check_in_closed_for": [ + 3648 + ], + "check_in_closes_before_minutes": [ + 3648 + ], + "check_in_closing_notified_for": [ + 3648 + ], + "check_in_ends_at": [ + 3648 + ], + "check_in_open": [ + 3648 + ], + "check_in_opens_before_minutes": [ + 3648 + ], + "check_in_required": [ + 3648 + ], + "check_in_setting": [ + 3648 + ], + "check_in_started": [ + 3648 + ], + "created_at": [ + 3648 + ], + "current_stage": [ + 3648 + ], + "description": [ + 3648 + ], + "discord_guild_id": [ + 3648 + ], + "discord_notifications_enabled": [ + 3648 + ], + "discord_notify_Canceled": [ + 3648 + ], + "discord_notify_Finished": [ + 3648 + ], + "discord_notify_Forfeit": [ + 3648 + ], + "discord_notify_Live": [ + 3648 + ], + "discord_notify_MapPaused": [ + 3648 + ], + "discord_notify_PickingPlayers": [ + 3648 + ], + "discord_notify_Scheduled": [ + 3648 + ], + "discord_notify_Surrendered": [ + 3648 + ], + "discord_notify_Tie": [ + 3648 + ], + "discord_notify_Veto": [ + 3648 + ], + "discord_notify_WaitingForCheckIn": [ + 3648 + ], + "discord_notify_WaitingForServer": [ + 3648 + ], + "discord_role_id": [ + 3648 + ], + "discord_voice_enabled": [ + 3648 + ], + "discord_webhook": [ + 3648 + ], + "e_tournament_status": [ + 1645 + ], + "free_agents_aggregate": [ + 5362 + ], + "has_min_teams": [ + 3648 + ], + "homepage": [ + 3648 + ], + "id": [ + 3648 + ], + "invite_only": [ + 3648 + ], + "is_league": [ + 3648 + ], + "is_organizer": [ + 3648 + ], + "joined_tournament": [ + 3648 + ], + "latitude": [ + 3648 + ], + "league_season_division": [ + 2634 + ], + "location": [ + 3648 + ], + "logo": [ + 3648 + ], + "longitude": [ + 3648 + ], + "match_options_id": [ + 3648 + ], + "max_elo": [ + 3648 + ], + "max_players_per_lineup": [ + 3648 + ], + "meets_min_role": [ + 3648 + ], + "min_elo": [ + 3648 + ], + "min_players_per_lineup": [ + 3648 + ], + "min_role": [ + 3648 + ], + "missed_check_in_count": [ + 3648 + ], + "name": [ + 3648 + ], + "options": [ + 3312 + ], + "organizer_steam_id": [ + 3648 + ], + "organizer_teams_aggregate": [ + 5549 + ], + "organizers_aggregate": [ + 5573 + ], + "player_stats_aggregate": [ + 7540 + ], + "prizes_aggregate": [ + 5614 + ], + "regions": [ + 3648 + ], + "registration_type": [ + 3648 + ], + "registration_unlocked": [ + 3648 + ], + "results_aggregate": [ + 7489 + ], + "rosters_aggregate": [ + 5814 + ], + "scheduling_mode": [ + 3648 + ], + "stages_aggregate": [ + 5724 + ], + "start": [ + 3648 + ], + "status": [ + 3648 + ], + "substitutes_enabled": [ + 3648 + ], + "teams_aggregate": [ + 5857 + ], + "__typename": [ + 85 + ] + }, + "tournaments_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "tournaments_select_column": {}, + "tournaments_select_column_tournaments_aggregate_bool_exp_avg_arguments_columns": {}, + "tournaments_select_column_tournaments_aggregate_bool_exp_bool_and_arguments_columns": {}, + "tournaments_select_column_tournaments_aggregate_bool_exp_bool_or_arguments_columns": {}, + "tournaments_select_column_tournaments_aggregate_bool_exp_corr_arguments_columns": {}, + "tournaments_select_column_tournaments_aggregate_bool_exp_covar_samp_arguments_columns": {}, + "tournaments_select_column_tournaments_aggregate_bool_exp_max_arguments_columns": {}, + "tournaments_select_column_tournaments_aggregate_bool_exp_min_arguments_columns": {}, + "tournaments_select_column_tournaments_aggregate_bool_exp_stddev_samp_arguments_columns": {}, + "tournaments_select_column_tournaments_aggregate_bool_exp_sum_arguments_columns": {}, + "tournaments_select_column_tournaments_aggregate_bool_exp_var_samp_arguments_columns": {}, + "tournaments_set_input": { + "auto_start": [ + 6 + ], + "awards_enabled": [ + 6 + ], + "banner": [ + 85 + ], + "check_in_closed_for": [ + 5243 + ], + "check_in_closes_before_minutes": [ + 41 + ], + "check_in_closing_notified_for": [ + 5243 + ], + "check_in_ends_at": [ + 5243 + ], + "check_in_opens_before_minutes": [ + 41 + ], + "check_in_required": [ + 6 + ], + "check_in_setting": [ + 690 + ], + "created_at": [ + 5243 + ], + "description": [ + 85 + ], + "discord_guild_id": [ + 85 + ], + "discord_notifications_enabled": [ + 6 + ], + "discord_notify_Canceled": [ + 6 + ], + "discord_notify_Finished": [ + 6 + ], + "discord_notify_Forfeit": [ + 6 + ], + "discord_notify_Live": [ + 6 + ], + "discord_notify_MapPaused": [ + 6 + ], + "discord_notify_PickingPlayers": [ + 6 + ], + "discord_notify_Scheduled": [ + 6 + ], + "discord_notify_Surrendered": [ + 6 + ], + "discord_notify_Tie": [ + 6 + ], + "discord_notify_Veto": [ + 6 + ], + "discord_notify_WaitingForCheckIn": [ + 6 + ], + "discord_notify_WaitingForServer": [ + 6 + ], + "discord_role_id": [ + 85 + ], + "discord_voice_enabled": [ + 6 + ], + "discord_webhook": [ + 85 + ], + "homepage": [ + 85 + ], + "id": [ + 6672 + ], + "invite_only": [ + 6 + ], + "is_league": [ + 6 + ], + "latitude": [ + 2093 + ], + "location": [ + 85 + ], + "logo": [ + 85 + ], + "longitude": [ + 2093 + ], + "match_options_id": [ + 6672 + ], + "max_elo": [ + 41 + ], + "min_elo": [ + 41 + ], + "min_role": [ + 1286 + ], + "name": [ + 85 + ], + "organizer_steam_id": [ + 312 + ], + "regions": [ + 85 + ], + "registration_type": [ + 1596 + ], + "scheduling_mode": [ + 85 + ], + "start": [ + 5243 + ], + "status": [ + 1637 + ], + "substitutes_enabled": [ + 6 + ], + "__typename": [ + 85 + ] + }, + "tournaments_stddev_fields": { + "check_in_closes_before_minutes": [ + 32 + ], + "check_in_opens_before_minutes": [ + 32 + ], + "current_stage": [ + 41 + ], + "latitude": [ + 32 + ], + "longitude": [ + 32 + ], + "max_elo": [ + 32 + ], + "max_players_per_lineup": [ + 41 + ], + "min_elo": [ + 32 + ], + "min_players_per_lineup": [ + 41 + ], + "missed_check_in_count": [ + 41 + ], + "organizer_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournaments_stddev_order_by": { + "check_in_closes_before_minutes": [ + 3648 + ], + "check_in_opens_before_minutes": [ + 3648 + ], + "latitude": [ + 3648 + ], + "longitude": [ + 3648 + ], + "max_elo": [ + 3648 + ], + "min_elo": [ + 3648 + ], + "organizer_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournaments_stddev_pop_fields": { + "check_in_closes_before_minutes": [ + 32 + ], + "check_in_opens_before_minutes": [ + 32 + ], + "current_stage": [ + 41 + ], + "latitude": [ + 32 + ], + "longitude": [ + 32 + ], + "max_elo": [ + 32 + ], + "max_players_per_lineup": [ + 41 + ], + "min_elo": [ + 32 + ], + "min_players_per_lineup": [ + 41 + ], + "missed_check_in_count": [ + 41 + ], + "organizer_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournaments_stddev_pop_order_by": { + "check_in_closes_before_minutes": [ + 3648 + ], + "check_in_opens_before_minutes": [ + 3648 + ], + "latitude": [ + 3648 + ], + "longitude": [ + 3648 + ], + "max_elo": [ + 3648 + ], + "min_elo": [ + 3648 + ], + "organizer_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournaments_stddev_samp_fields": { + "check_in_closes_before_minutes": [ + 32 + ], + "check_in_opens_before_minutes": [ + 32 + ], + "current_stage": [ + 41 + ], + "latitude": [ + 32 + ], + "longitude": [ + 32 + ], + "max_elo": [ + 32 + ], + "max_players_per_lineup": [ + 41 + ], + "min_elo": [ + 32 + ], + "min_players_per_lineup": [ + 41 + ], + "missed_check_in_count": [ + 41 + ], + "organizer_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournaments_stddev_samp_order_by": { + "check_in_closes_before_minutes": [ + 3648 + ], + "check_in_opens_before_minutes": [ + 3648 + ], + "latitude": [ + 3648 + ], + "longitude": [ + 3648 + ], + "max_elo": [ + 3648 + ], + "min_elo": [ + 3648 + ], + "organizer_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournaments_stream_cursor_input": { + "initial_value": [ + 5949 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "tournaments_stream_cursor_value_input": { + "auto_start": [ + 6 + ], + "awards_enabled": [ + 6 + ], + "banner": [ + 85 + ], + "check_in_closed_for": [ + 5243 + ], + "check_in_closes_before_minutes": [ + 41 + ], + "check_in_closing_notified_for": [ + 5243 + ], + "check_in_ends_at": [ + 5243 + ], + "check_in_opens_before_minutes": [ + 41 + ], + "check_in_required": [ + 6 + ], + "check_in_setting": [ + 690 + ], + "created_at": [ + 5243 + ], + "description": [ + 85 + ], + "discord_guild_id": [ + 85 + ], + "discord_notifications_enabled": [ + 6 + ], + "discord_notify_Canceled": [ + 6 + ], + "discord_notify_Finished": [ + 6 + ], + "discord_notify_Forfeit": [ + 6 + ], + "discord_notify_Live": [ + 6 + ], + "discord_notify_MapPaused": [ + 6 + ], + "discord_notify_PickingPlayers": [ + 6 + ], + "discord_notify_Scheduled": [ + 6 + ], + "discord_notify_Surrendered": [ + 6 + ], + "discord_notify_Tie": [ + 6 + ], + "discord_notify_Veto": [ + 6 + ], + "discord_notify_WaitingForCheckIn": [ + 6 + ], + "discord_notify_WaitingForServer": [ + 6 + ], + "discord_role_id": [ + 85 + ], + "discord_voice_enabled": [ + 6 + ], + "discord_webhook": [ + 85 + ], + "homepage": [ + 85 + ], + "id": [ + 6672 + ], + "invite_only": [ + 6 + ], + "is_league": [ + 6 + ], + "latitude": [ + 2093 + ], + "location": [ + 85 + ], + "logo": [ + 85 + ], + "longitude": [ + 2093 + ], + "match_options_id": [ + 6672 + ], + "max_elo": [ + 41 + ], + "min_elo": [ + 41 + ], + "min_role": [ + 1286 + ], + "name": [ + 85 + ], + "organizer_steam_id": [ + 312 + ], + "regions": [ + 85 + ], + "registration_type": [ + 1596 + ], + "scheduling_mode": [ + 85 + ], + "start": [ + 5243 + ], + "status": [ + 1637 + ], + "substitutes_enabled": [ + 6 + ], + "__typename": [ + 85 + ] + }, + "tournaments_sum_fields": { + "check_in_closes_before_minutes": [ + 41 + ], + "check_in_opens_before_minutes": [ + 41 + ], + "current_stage": [ + 41 + ], + "latitude": [ + 2093 + ], + "longitude": [ + 2093 + ], + "max_elo": [ + 41 + ], + "max_players_per_lineup": [ + 41 + ], + "min_elo": [ + 41 + ], + "min_players_per_lineup": [ + 41 + ], + "missed_check_in_count": [ + 41 + ], + "organizer_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "tournaments_sum_order_by": { + "check_in_closes_before_minutes": [ + 3648 + ], + "check_in_opens_before_minutes": [ + 3648 + ], + "latitude": [ + 3648 + ], + "longitude": [ + 3648 + ], + "max_elo": [ + 3648 + ], + "min_elo": [ + 3648 + ], + "organizer_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournaments_update_column": {}, + "tournaments_updates": { + "_inc": [ + 5919 + ], + "_set": [ + 5941 + ], + "where": [ + 5917 + ], + "__typename": [ + 85 + ] + }, + "tournaments_var_pop_fields": { + "check_in_closes_before_minutes": [ + 32 + ], + "check_in_opens_before_minutes": [ + 32 + ], + "current_stage": [ + 41 + ], + "latitude": [ + 32 + ], + "longitude": [ + 32 + ], + "max_elo": [ + 32 + ], + "max_players_per_lineup": [ + 41 + ], + "min_elo": [ + 32 + ], + "min_players_per_lineup": [ + 41 + ], + "missed_check_in_count": [ + 41 + ], + "organizer_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournaments_var_pop_order_by": { + "check_in_closes_before_minutes": [ + 3648 + ], + "check_in_opens_before_minutes": [ + 3648 + ], + "latitude": [ + 3648 + ], + "longitude": [ + 3648 + ], + "max_elo": [ + 3648 + ], + "min_elo": [ + 3648 + ], + "organizer_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournaments_var_samp_fields": { + "check_in_closes_before_minutes": [ + 32 + ], + "check_in_opens_before_minutes": [ + 32 + ], + "current_stage": [ + 41 + ], + "latitude": [ + 32 + ], + "longitude": [ + 32 + ], + "max_elo": [ + 32 + ], + "max_players_per_lineup": [ + 41 + ], + "min_elo": [ + 32 + ], + "min_players_per_lineup": [ + 41 + ], + "missed_check_in_count": [ + 41 + ], + "organizer_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournaments_var_samp_order_by": { + "check_in_closes_before_minutes": [ + 3648 + ], + "check_in_opens_before_minutes": [ + 3648 + ], + "latitude": [ + 3648 + ], + "longitude": [ + 3648 + ], + "max_elo": [ + 3648 + ], + "min_elo": [ + 3648 + ], + "organizer_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "tournaments_variance_fields": { + "check_in_closes_before_minutes": [ + 32 + ], + "check_in_opens_before_minutes": [ + 32 + ], + "current_stage": [ + 41 + ], + "latitude": [ + 32 + ], + "longitude": [ + 32 + ], + "max_elo": [ + 32 + ], + "max_players_per_lineup": [ + 41 + ], + "min_elo": [ + 32 + ], + "min_players_per_lineup": [ + 41 + ], + "missed_check_in_count": [ + 41 + ], + "organizer_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "tournaments_variance_order_by": { + "check_in_closes_before_minutes": [ + 3648 + ], + "check_in_opens_before_minutes": [ + 3648 + ], + "latitude": [ + 3648 + ], + "longitude": [ + 3648 + ], + "max_elo": [ + 3648 + ], + "min_elo": [ + 3648 + ], + "organizer_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_collection_items": { + "collection": [ + 6001 + ], + "collection_id": [ + 6672 + ], + "created_at": [ + 5243 + ], + "note": [ + 85 + ], + "position": [ + 41 + ], + "utility_lineup": [ + 6420 + ], + "utility_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_collection_items_aggregate": { + "aggregate": [ + 5964 + ], + "nodes": [ + 5960 + ], + "__typename": [ + 85 + ] + }, + "utility_collection_items_aggregate_bool_exp": { + "count": [ + 5963 + ], + "__typename": [ + 85 + ] + }, + "utility_collection_items_aggregate_bool_exp_count": { + "arguments": [ + 5981 + ], + "distinct": [ + 6 + ], + "filter": [ + 5969 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "utility_collection_items_aggregate_fields": { + "avg": [ + 5967 + ], + "count": [ + 41, + { + "columns": [ + 5981, + "[utility_collection_items_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 5973 + ], + "min": [ + 5975 + ], + "stddev": [ + 5983 + ], + "stddev_pop": [ + 5985 + ], + "stddev_samp": [ + 5987 + ], + "sum": [ + 5991 + ], + "var_pop": [ + 5995 + ], + "var_samp": [ + 5997 + ], + "variance": [ + 5999 + ], + "__typename": [ + 85 + ] + }, + "utility_collection_items_aggregate_order_by": { + "avg": [ + 5968 + ], + "count": [ + 3648 + ], + "max": [ + 5974 + ], + "min": [ + 5976 + ], + "stddev": [ + 5984 + ], + "stddev_pop": [ + 5986 + ], + "stddev_samp": [ + 5988 + ], + "sum": [ + 5992 + ], + "var_pop": [ + 5996 + ], + "var_samp": [ + 5998 + ], + "variance": [ + 6000 + ], + "__typename": [ + 85 + ] + }, + "utility_collection_items_arr_rel_insert_input": { + "data": [ + 5972 + ], + "on_conflict": [ + 5978 + ], + "__typename": [ + 85 + ] + }, + "utility_collection_items_avg_fields": { + "position": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_collection_items_avg_order_by": { + "position": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_collection_items_bool_exp": { + "_and": [ + 5969 + ], + "_not": [ + 5969 + ], + "_or": [ + 5969 + ], + "collection": [ + 6005 + ], + "collection_id": [ + 6674 + ], + "created_at": [ + 5244 + ], + "note": [ + 87 + ], + "position": [ + 42 + ], + "utility_lineup": [ + 6442 + ], + "utility_lineup_id": [ + 6674 + ], + "__typename": [ + 85 + ] + }, + "utility_collection_items_constraint": {}, + "utility_collection_items_inc_input": { + "position": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "utility_collection_items_insert_input": { + "collection": [ + 6012 + ], + "collection_id": [ + 6672 + ], + "created_at": [ + 5243 + ], + "note": [ + 85 + ], + "position": [ + 41 + ], + "utility_lineup": [ + 6454 + ], + "utility_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_collection_items_max_fields": { + "collection_id": [ + 6672 + ], + "created_at": [ + 5243 + ], + "note": [ + 85 + ], + "position": [ + 41 + ], + "utility_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_collection_items_max_order_by": { + "collection_id": [ + 3648 + ], + "created_at": [ + 3648 + ], + "note": [ + 3648 + ], + "position": [ + 3648 + ], + "utility_lineup_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_collection_items_min_fields": { + "collection_id": [ + 6672 + ], + "created_at": [ + 5243 + ], + "note": [ + 85 + ], + "position": [ + 41 + ], + "utility_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_collection_items_min_order_by": { + "collection_id": [ + 3648 + ], + "created_at": [ + 3648 + ], + "note": [ + 3648 + ], + "position": [ + 3648 + ], + "utility_lineup_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_collection_items_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 5960 + ], + "__typename": [ + 85 + ] + }, + "utility_collection_items_on_conflict": { + "constraint": [ + 5970 + ], + "update_columns": [ + 5993 + ], + "where": [ + 5969 + ], + "__typename": [ + 85 + ] + }, + "utility_collection_items_order_by": { + "collection": [ + 6014 + ], + "collection_id": [ + 3648 + ], + "created_at": [ + 3648 + ], + "note": [ + 3648 + ], + "position": [ + 3648 + ], + "utility_lineup": [ + 6456 + ], + "utility_lineup_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_collection_items_pk_columns_input": { + "collection_id": [ + 6672 + ], + "utility_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_collection_items_select_column": {}, + "utility_collection_items_set_input": { + "collection_id": [ + 6672 + ], + "created_at": [ + 5243 + ], + "note": [ + 85 + ], + "position": [ + 41 + ], + "utility_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_collection_items_stddev_fields": { + "position": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_collection_items_stddev_order_by": { + "position": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_collection_items_stddev_pop_fields": { + "position": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_collection_items_stddev_pop_order_by": { + "position": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_collection_items_stddev_samp_fields": { + "position": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_collection_items_stddev_samp_order_by": { + "position": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_collection_items_stream_cursor_input": { + "initial_value": [ + 5990 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "utility_collection_items_stream_cursor_value_input": { + "collection_id": [ + 6672 + ], + "created_at": [ + 5243 + ], + "note": [ + 85 + ], + "position": [ + 41 + ], + "utility_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_collection_items_sum_fields": { + "position": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "utility_collection_items_sum_order_by": { + "position": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_collection_items_update_column": {}, + "utility_collection_items_updates": { + "_inc": [ + 5971 + ], + "_set": [ + 5982 + ], + "where": [ + 5969 + ], + "__typename": [ + 85 + ] + }, + "utility_collection_items_var_pop_fields": { + "position": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_collection_items_var_pop_order_by": { + "position": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_collection_items_var_samp_fields": { + "position": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_collection_items_var_samp_order_by": { + "position": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_collection_items_variance_fields": { + "position": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_collection_items_variance_order_by": { + "position": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_collections": { + "can_edit": [ + 6 + ], + "can_view": [ + 6 + ], + "created_at": [ + 5243 + ], + "description": [ + 85 + ], + "id": [ + 6672 + ], + "items": [ + 5960, + { + "distinct_on": [ + 5981, + "[utility_collection_items_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5979, + "[utility_collection_items_order_by!]" + ], + "where": [ + 5969 + ] + } + ], + "items_aggregate": [ + 5961, + { + "distinct_on": [ + 5981, + "[utility_collection_items_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5979, + "[utility_collection_items_order_by!]" + ], + "where": [ + 5969 + ] + } + ], + "map_name": [ + 85 + ], + "name": [ + 85 + ], + "owner": [ + 4606 + ], + "owner_steam_id": [ + 312 + ], + "team": [ + 5194 + ], + "team_id": [ + 6672 + ], + "updated_at": [ + 5243 + ], + "visibility": [ + 1779 + ], + "__typename": [ + 85 + ] + }, + "utility_collections_aggregate": { + "aggregate": [ + 6003 + ], + "nodes": [ + 6001 + ], + "__typename": [ + 85 + ] + }, + "utility_collections_aggregate_fields": { + "avg": [ + 6004 + ], + "count": [ + 41, + { + "columns": [ + 6016, + "[utility_collections_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 6009 + ], + "min": [ + 6010 + ], + "stddev": [ + 6018 + ], + "stddev_pop": [ + 6019 + ], + "stddev_samp": [ + 6020 + ], + "sum": [ + 6023 + ], + "var_pop": [ + 6026 + ], + "var_samp": [ + 6027 + ], + "variance": [ + 6028 + ], + "__typename": [ + 85 + ] + }, + "utility_collections_avg_fields": { + "owner_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_collections_bool_exp": { + "_and": [ + 6005 + ], + "_not": [ + 6005 + ], + "_or": [ + 6005 + ], + "can_edit": [ + 7 + ], + "can_view": [ + 7 + ], + "created_at": [ + 5244 + ], + "description": [ + 87 + ], + "id": [ + 6674 + ], + "items": [ + 5969 + ], + "items_aggregate": [ + 5962 + ], + "map_name": [ + 87 + ], + "name": [ + 87 + ], + "owner": [ + 4610 + ], + "owner_steam_id": [ + 314 + ], + "team": [ + 5205 + ], + "team_id": [ + 6674 + ], + "updated_at": [ + 5244 + ], + "visibility": [ + 1780 + ], + "__typename": [ + 85 + ] + }, + "utility_collections_constraint": {}, + "utility_collections_inc_input": { + "owner_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "utility_collections_insert_input": { + "created_at": [ + 5243 + ], + "description": [ + 85 + ], + "id": [ + 6672 + ], + "items": [ + 5966 + ], + "map_name": [ + 85 + ], + "name": [ + 85 + ], + "owner": [ + 4617 + ], + "owner_steam_id": [ + 312 + ], + "team": [ + 5214 + ], + "team_id": [ + 6672 + ], + "updated_at": [ + 5243 + ], + "visibility": [ + 1779 + ], + "__typename": [ + 85 + ] + }, + "utility_collections_max_fields": { + "created_at": [ + 5243 + ], + "description": [ + 85 + ], + "id": [ + 6672 + ], + "map_name": [ + 85 + ], + "name": [ + 85 + ], + "owner_steam_id": [ + 312 + ], + "team_id": [ + 6672 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "utility_collections_min_fields": { + "created_at": [ + 5243 + ], + "description": [ + 85 + ], + "id": [ + 6672 + ], + "map_name": [ + 85 + ], + "name": [ + 85 + ], + "owner_steam_id": [ + 312 + ], + "team_id": [ + 6672 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "utility_collections_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 6001 + ], + "__typename": [ + 85 + ] + }, + "utility_collections_obj_rel_insert_input": { + "data": [ + 6008 + ], + "on_conflict": [ + 6013 + ], + "__typename": [ + 85 + ] + }, + "utility_collections_on_conflict": { + "constraint": [ + 6006 + ], + "update_columns": [ + 6024 + ], + "where": [ + 6005 + ], + "__typename": [ + 85 + ] + }, + "utility_collections_order_by": { + "can_edit": [ + 3648 + ], + "can_view": [ + 3648 + ], + "created_at": [ + 3648 + ], + "description": [ + 3648 + ], + "id": [ + 3648 + ], + "items_aggregate": [ + 5965 + ], + "map_name": [ + 3648 + ], + "name": [ + 3648 + ], + "owner": [ + 4619 + ], + "owner_steam_id": [ + 3648 + ], + "team": [ + 5216 + ], + "team_id": [ + 3648 + ], + "updated_at": [ + 3648 + ], + "visibility": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_collections_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_collections_select_column": {}, + "utility_collections_set_input": { + "created_at": [ + 5243 + ], + "description": [ + 85 + ], + "id": [ + 6672 + ], + "map_name": [ + 85 + ], + "name": [ + 85 + ], + "owner_steam_id": [ + 312 + ], + "team_id": [ + 6672 + ], + "updated_at": [ + 5243 + ], + "visibility": [ + 1779 + ], + "__typename": [ + 85 + ] + }, + "utility_collections_stddev_fields": { + "owner_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_collections_stddev_pop_fields": { + "owner_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_collections_stddev_samp_fields": { + "owner_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_collections_stream_cursor_input": { + "initial_value": [ + 6022 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "utility_collections_stream_cursor_value_input": { + "created_at": [ + 5243 + ], + "description": [ + 85 + ], + "id": [ + 6672 + ], + "map_name": [ + 85 + ], + "name": [ + 85 + ], + "owner_steam_id": [ + 312 + ], + "team_id": [ + 6672 + ], + "updated_at": [ + 5243 + ], + "visibility": [ + 1779 + ], + "__typename": [ + 85 + ] + }, + "utility_collections_sum_fields": { + "owner_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "utility_collections_update_column": {}, + "utility_collections_updates": { + "_inc": [ + 6007 + ], + "_set": [ + 6017 + ], + "where": [ + 6005 + ], + "__typename": [ + 85 + ] + }, + "utility_collections_var_pop_fields": { + "owner_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_collections_var_samp_fields": { + "owner_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_collections_variance_fields": { + "owner_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_mines": { + "failed_reason": [ + 85 + ], + "match_map_demo_id": [ + 6672 + ], + "mined_at": [ + 5243 + ], + "throws": [ + 41 + ], + "version": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_mines_aggregate": { + "aggregate": [ + 6031 + ], + "nodes": [ + 6029 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_mines_aggregate_fields": { + "avg": [ + 6032 + ], + "count": [ + 41, + { + "columns": [ + 6043, + "[utility_demo_mines_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 6037 + ], + "min": [ + 6038 + ], + "stddev": [ + 6045 + ], + "stddev_pop": [ + 6046 + ], + "stddev_samp": [ + 6047 + ], + "sum": [ + 6050 + ], + "var_pop": [ + 6053 + ], + "var_samp": [ + 6054 + ], + "variance": [ + 6055 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_mines_avg_fields": { + "throws": [ + 32 + ], + "version": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_mines_bool_exp": { + "_and": [ + 6033 + ], + "_not": [ + 6033 + ], + "_or": [ + 6033 + ], + "failed_reason": [ + 87 + ], + "match_map_demo_id": [ + 6674 + ], + "mined_at": [ + 5244 + ], + "throws": [ + 42 + ], + "version": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_mines_constraint": {}, + "utility_demo_mines_inc_input": { + "throws": [ + 41 + ], + "version": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_mines_insert_input": { + "failed_reason": [ + 85 + ], + "match_map_demo_id": [ + 6672 + ], + "mined_at": [ + 5243 + ], + "throws": [ + 41 + ], + "version": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_mines_max_fields": { + "failed_reason": [ + 85 + ], + "match_map_demo_id": [ + 6672 + ], + "mined_at": [ + 5243 + ], + "throws": [ + 41 + ], + "version": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_mines_min_fields": { + "failed_reason": [ + 85 + ], + "match_map_demo_id": [ + 6672 + ], + "mined_at": [ + 5243 + ], + "throws": [ + 41 + ], + "version": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_mines_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 6029 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_mines_on_conflict": { + "constraint": [ + 6034 + ], + "update_columns": [ + 6051 + ], + "where": [ + 6033 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_mines_order_by": { + "failed_reason": [ + 3648 + ], + "match_map_demo_id": [ + 3648 + ], + "mined_at": [ + 3648 + ], + "throws": [ + 3648 + ], + "version": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_mines_pk_columns_input": { + "match_map_demo_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_mines_select_column": {}, + "utility_demo_mines_set_input": { + "failed_reason": [ + 85 + ], + "match_map_demo_id": [ + 6672 + ], + "mined_at": [ + 5243 + ], + "throws": [ + 41 + ], + "version": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_mines_stddev_fields": { + "throws": [ + 32 + ], + "version": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_mines_stddev_pop_fields": { + "throws": [ + 32 + ], + "version": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_mines_stddev_samp_fields": { + "throws": [ + 32 + ], + "version": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_mines_stream_cursor_input": { + "initial_value": [ + 6049 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_mines_stream_cursor_value_input": { + "failed_reason": [ + 85 + ], + "match_map_demo_id": [ + 6672 + ], + "mined_at": [ + 5243 + ], + "throws": [ + 41 + ], + "version": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_mines_sum_fields": { + "throws": [ + 41 + ], + "version": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_mines_update_column": {}, + "utility_demo_mines_updates": { + "_inc": [ + 6035 + ], + "_set": [ + 6044 + ], + "where": [ + 6033 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_mines_var_pop_fields": { + "throws": [ + 32 + ], + "version": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_mines_var_samp_fields": { + "throws": [ + 32 + ], + "version": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_mines_variance_fields": { + "throws": [ + 32 + ], + "version": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_throws": { + "created_at": [ + 5243 + ], + "flight_time_ms": [ + 41 + ], + "grenade_id": [ + 41 + ], + "land_x": [ + 2093 + ], + "land_y": [ + 2093 + ], + "land_z": [ + 2093 + ], + "lineup_bucket": [ + 85 + ], + "map_name": [ + 85 + ], + "match": [ + 3432 + ], + "match_id": [ + 6672 + ], + "match_map": [ + 3248 + ], + "match_map_demo_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "origin_x": [ + 2093 + ], + "origin_y": [ + 2093 + ], + "origin_z": [ + 2093 + ], + "round": [ + 41 + ], + "side": [ + 1453 + ], + "technique": [ + 1719 + ], + "throw_strength": [ + 1739 + ], + "thrower_steam_id": [ + 312 + ], + "thrown_at": [ + 5243 + ], + "tick": [ + 41 + ], + "utility_type": [ + 1759 + ], + "view_pitch": [ + 2093 + ], + "view_yaw": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_throws_aggregate": { + "aggregate": [ + 6058 + ], + "nodes": [ + 6056 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_throws_aggregate_fields": { + "avg": [ + 6059 + ], + "count": [ + 41, + { + "columns": [ + 6070, + "[utility_demo_throws_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 6064 + ], + "min": [ + 6065 + ], + "stddev": [ + 6072 + ], + "stddev_pop": [ + 6073 + ], + "stddev_samp": [ + 6074 + ], + "sum": [ + 6077 + ], + "var_pop": [ + 6080 + ], + "var_samp": [ + 6081 + ], + "variance": [ + 6082 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_throws_avg_fields": { + "flight_time_ms": [ + 32 + ], + "grenade_id": [ + 32 + ], + "land_x": [ + 32 + ], + "land_y": [ + 32 + ], + "land_z": [ + 32 + ], + "origin_x": [ + 32 + ], + "origin_y": [ + 32 + ], + "origin_z": [ + 32 + ], + "round": [ + 32 + ], + "thrower_steam_id": [ + 32 + ], + "tick": [ + 32 + ], + "view_pitch": [ + 32 + ], + "view_yaw": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_throws_bool_exp": { + "_and": [ + 6060 + ], + "_not": [ + 6060 + ], + "_or": [ + 6060 + ], + "created_at": [ + 5244 + ], + "flight_time_ms": [ + 42 + ], + "grenade_id": [ + 42 + ], + "land_x": [ + 2094 + ], + "land_y": [ + 2094 + ], + "land_z": [ + 2094 + ], + "lineup_bucket": [ + 87 + ], + "map_name": [ + 87 + ], + "match": [ + 3443 + ], + "match_id": [ + 6674 + ], + "match_map": [ + 3257 + ], + "match_map_demo_id": [ + 6674 + ], + "match_map_id": [ + 6674 + ], + "origin_x": [ + 2094 + ], + "origin_y": [ + 2094 + ], + "origin_z": [ + 2094 + ], + "round": [ + 42 + ], + "side": [ + 1454 + ], + "technique": [ + 1720 + ], + "throw_strength": [ + 1740 + ], + "thrower_steam_id": [ + 314 + ], + "thrown_at": [ + 5244 + ], + "tick": [ + 42 + ], + "utility_type": [ + 1760 + ], + "view_pitch": [ + 2094 + ], + "view_yaw": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_throws_constraint": {}, + "utility_demo_throws_inc_input": { + "flight_time_ms": [ + 41 + ], + "grenade_id": [ + 41 + ], + "land_x": [ + 2093 + ], + "land_y": [ + 2093 + ], + "land_z": [ + 2093 + ], + "origin_x": [ + 2093 + ], + "origin_y": [ + 2093 + ], + "origin_z": [ + 2093 + ], + "round": [ + 41 + ], + "thrower_steam_id": [ + 312 + ], + "tick": [ + 41 + ], + "view_pitch": [ + 2093 + ], + "view_yaw": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_throws_insert_input": { + "created_at": [ + 5243 + ], + "flight_time_ms": [ + 41 + ], + "grenade_id": [ + 41 + ], + "land_x": [ + 2093 + ], + "land_y": [ + 2093 + ], + "land_z": [ + 2093 + ], + "map_name": [ + 85 + ], + "match": [ + 3452 + ], + "match_id": [ + 6672 + ], + "match_map": [ + 3266 + ], + "match_map_demo_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "origin_x": [ + 2093 + ], + "origin_y": [ + 2093 + ], + "origin_z": [ + 2093 + ], + "round": [ + 41 + ], + "side": [ + 1453 + ], + "technique": [ + 1719 + ], + "throw_strength": [ + 1739 + ], + "thrower_steam_id": [ + 312 + ], + "thrown_at": [ + 5243 + ], + "tick": [ + 41 + ], + "utility_type": [ + 1759 + ], + "view_pitch": [ + 2093 + ], + "view_yaw": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_throws_max_fields": { + "created_at": [ + 5243 + ], + "flight_time_ms": [ + 41 + ], + "grenade_id": [ + 41 + ], + "land_x": [ + 2093 + ], + "land_y": [ + 2093 + ], + "land_z": [ + 2093 + ], + "lineup_bucket": [ + 85 + ], + "map_name": [ + 85 + ], + "match_id": [ + 6672 + ], + "match_map_demo_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "origin_x": [ + 2093 + ], + "origin_y": [ + 2093 + ], + "origin_z": [ + 2093 + ], + "round": [ + 41 + ], + "thrower_steam_id": [ + 312 + ], + "thrown_at": [ + 5243 + ], + "tick": [ + 41 + ], + "view_pitch": [ + 2093 + ], + "view_yaw": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_throws_min_fields": { + "created_at": [ + 5243 + ], + "flight_time_ms": [ + 41 + ], + "grenade_id": [ + 41 + ], + "land_x": [ + 2093 + ], + "land_y": [ + 2093 + ], + "land_z": [ + 2093 + ], + "lineup_bucket": [ + 85 + ], + "map_name": [ + 85 + ], + "match_id": [ + 6672 + ], + "match_map_demo_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "origin_x": [ + 2093 + ], + "origin_y": [ + 2093 + ], + "origin_z": [ + 2093 + ], + "round": [ + 41 + ], + "thrower_steam_id": [ + 312 + ], + "thrown_at": [ + 5243 + ], + "tick": [ + 41 + ], + "view_pitch": [ + 2093 + ], + "view_yaw": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_throws_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 6056 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_throws_on_conflict": { + "constraint": [ + 6061 + ], + "update_columns": [ + 6078 + ], + "where": [ + 6060 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_throws_order_by": { + "created_at": [ + 3648 + ], + "flight_time_ms": [ + 3648 + ], + "grenade_id": [ + 3648 + ], + "land_x": [ + 3648 + ], + "land_y": [ + 3648 + ], + "land_z": [ + 3648 + ], + "lineup_bucket": [ + 3648 + ], + "map_name": [ + 3648 + ], + "match": [ + 3454 + ], + "match_id": [ + 3648 + ], + "match_map": [ + 3268 + ], + "match_map_demo_id": [ + 3648 + ], + "match_map_id": [ + 3648 + ], + "origin_x": [ + 3648 + ], + "origin_y": [ + 3648 + ], + "origin_z": [ + 3648 + ], + "round": [ + 3648 + ], + "side": [ + 3648 + ], + "technique": [ + 3648 + ], + "throw_strength": [ + 3648 + ], + "thrower_steam_id": [ + 3648 + ], + "thrown_at": [ + 3648 + ], + "tick": [ + 3648 + ], + "utility_type": [ + 3648 + ], + "view_pitch": [ + 3648 + ], + "view_yaw": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_throws_pk_columns_input": { + "grenade_id": [ + 41 + ], + "match_map_demo_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_throws_select_column": {}, + "utility_demo_throws_set_input": { + "created_at": [ + 5243 + ], + "flight_time_ms": [ + 41 + ], + "grenade_id": [ + 41 + ], + "land_x": [ + 2093 + ], + "land_y": [ + 2093 + ], + "land_z": [ + 2093 + ], + "map_name": [ + 85 + ], + "match_id": [ + 6672 + ], + "match_map_demo_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "origin_x": [ + 2093 + ], + "origin_y": [ + 2093 + ], + "origin_z": [ + 2093 + ], + "round": [ + 41 + ], + "side": [ + 1453 + ], + "technique": [ + 1719 + ], + "throw_strength": [ + 1739 + ], + "thrower_steam_id": [ + 312 + ], + "thrown_at": [ + 5243 + ], + "tick": [ + 41 + ], + "utility_type": [ + 1759 + ], + "view_pitch": [ + 2093 + ], + "view_yaw": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_throws_stddev_fields": { + "flight_time_ms": [ + 32 + ], + "grenade_id": [ + 32 + ], + "land_x": [ + 32 + ], + "land_y": [ + 32 + ], + "land_z": [ + 32 + ], + "origin_x": [ + 32 + ], + "origin_y": [ + 32 + ], + "origin_z": [ + 32 + ], + "round": [ + 32 + ], + "thrower_steam_id": [ + 32 + ], + "tick": [ + 32 + ], + "view_pitch": [ + 32 + ], + "view_yaw": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_throws_stddev_pop_fields": { + "flight_time_ms": [ + 32 + ], + "grenade_id": [ + 32 + ], + "land_x": [ + 32 + ], + "land_y": [ + 32 + ], + "land_z": [ + 32 + ], + "origin_x": [ + 32 + ], + "origin_y": [ + 32 + ], + "origin_z": [ + 32 + ], + "round": [ + 32 + ], + "thrower_steam_id": [ + 32 + ], + "tick": [ + 32 + ], + "view_pitch": [ + 32 + ], + "view_yaw": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_throws_stddev_samp_fields": { + "flight_time_ms": [ + 32 + ], + "grenade_id": [ + 32 + ], + "land_x": [ + 32 + ], + "land_y": [ + 32 + ], + "land_z": [ + 32 + ], + "origin_x": [ + 32 + ], + "origin_y": [ + 32 + ], + "origin_z": [ + 32 + ], + "round": [ + 32 + ], + "thrower_steam_id": [ + 32 + ], + "tick": [ + 32 + ], + "view_pitch": [ + 32 + ], + "view_yaw": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_throws_stream_cursor_input": { + "initial_value": [ + 6076 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_throws_stream_cursor_value_input": { + "created_at": [ + 5243 + ], + "flight_time_ms": [ + 41 + ], + "grenade_id": [ + 41 + ], + "land_x": [ + 2093 + ], + "land_y": [ + 2093 + ], + "land_z": [ + 2093 + ], + "lineup_bucket": [ + 85 + ], + "map_name": [ + 85 + ], + "match_id": [ + 6672 + ], + "match_map_demo_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "origin_x": [ + 2093 + ], + "origin_y": [ + 2093 + ], + "origin_z": [ + 2093 + ], + "round": [ + 41 + ], + "side": [ + 1453 + ], + "technique": [ + 1719 + ], + "throw_strength": [ + 1739 + ], + "thrower_steam_id": [ + 312 + ], + "thrown_at": [ + 5243 + ], + "tick": [ + 41 + ], + "utility_type": [ + 1759 + ], + "view_pitch": [ + 2093 + ], + "view_yaw": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_throws_sum_fields": { + "flight_time_ms": [ + 41 + ], + "grenade_id": [ + 41 + ], + "land_x": [ + 2093 + ], + "land_y": [ + 2093 + ], + "land_z": [ + 2093 + ], + "origin_x": [ + 2093 + ], + "origin_y": [ + 2093 + ], + "origin_z": [ + 2093 + ], + "round": [ + 41 + ], + "thrower_steam_id": [ + 312 + ], + "tick": [ + 41 + ], + "view_pitch": [ + 2093 + ], + "view_yaw": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_throws_update_column": {}, + "utility_demo_throws_updates": { + "_inc": [ + 6062 + ], + "_set": [ + 6071 + ], + "where": [ + 6060 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_throws_var_pop_fields": { + "flight_time_ms": [ + 32 + ], + "grenade_id": [ + 32 + ], + "land_x": [ + 32 + ], + "land_y": [ + 32 + ], + "land_z": [ + 32 + ], + "origin_x": [ + 32 + ], + "origin_y": [ + 32 + ], + "origin_z": [ + 32 + ], + "round": [ + 32 + ], + "thrower_steam_id": [ + 32 + ], + "tick": [ + 32 + ], + "view_pitch": [ + 32 + ], + "view_yaw": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_throws_var_samp_fields": { + "flight_time_ms": [ + 32 + ], + "grenade_id": [ + 32 + ], + "land_x": [ + 32 + ], + "land_y": [ + 32 + ], + "land_z": [ + 32 + ], + "origin_x": [ + 32 + ], + "origin_y": [ + 32 + ], + "origin_z": [ + 32 + ], + "round": [ + 32 + ], + "thrower_steam_id": [ + 32 + ], + "tick": [ + 32 + ], + "view_pitch": [ + 32 + ], + "view_yaw": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_demo_throws_variance_fields": { + "flight_time_ms": [ + 32 + ], + "grenade_id": [ + 32 + ], + "land_x": [ + 32 + ], + "land_y": [ + 32 + ], + "land_z": [ + 32 + ], + "origin_x": [ + 32 + ], + "origin_y": [ + 32 + ], + "origin_z": [ + 32 + ], + "round": [ + 32 + ], + "thrower_steam_id": [ + 32 + ], + "tick": [ + 32 + ], + "view_pitch": [ + 32 + ], + "view_yaw": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results": { + "created_at": [ + 5243 + ], + "distance": [ + 2093 + ], + "distance_xy": [ + 2093 + ], + "distance_z": [ + 2093 + ], + "reason": [ + 85 + ], + "scan": [ + 6142 + ], + "severity": [ + 85 + ], + "utility_drift_scan_id": [ + 6672 + ], + "utility_lineup": [ + 6420 + ], + "utility_lineup_id": [ + 6672 + ], + "verdict": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_aggregate": { + "aggregate": [ + 6097 + ], + "nodes": [ + 6083 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_aggregate_bool_exp": { + "avg": [ + 6086 + ], + "corr": [ + 6087 + ], + "count": [ + 6089 + ], + "covar_samp": [ + 6090 + ], + "max": [ + 6092 + ], + "min": [ + 6093 + ], + "stddev_samp": [ + 6094 + ], + "sum": [ + 6095 + ], + "var_samp": [ + 6096 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_aggregate_bool_exp_avg": { + "arguments": [ + 6115 + ], + "distinct": [ + 6 + ], + "filter": [ + 6102 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_aggregate_bool_exp_corr": { + "arguments": [ + 6088 + ], + "distinct": [ + 6 + ], + "filter": [ + 6102 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_aggregate_bool_exp_corr_arguments": { + "X": [ + 6116 + ], + "Y": [ + 6116 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_aggregate_bool_exp_count": { + "arguments": [ + 6114 + ], + "distinct": [ + 6 + ], + "filter": [ + 6102 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_aggregate_bool_exp_covar_samp": { + "arguments": [ + 6091 + ], + "distinct": [ + 6 + ], + "filter": [ + 6102 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_aggregate_bool_exp_covar_samp_arguments": { + "X": [ + 6117 + ], + "Y": [ + 6117 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_aggregate_bool_exp_max": { + "arguments": [ + 6118 + ], + "distinct": [ + 6 + ], + "filter": [ + 6102 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_aggregate_bool_exp_min": { + "arguments": [ + 6119 + ], + "distinct": [ + 6 + ], + "filter": [ + 6102 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_aggregate_bool_exp_stddev_samp": { + "arguments": [ + 6120 + ], + "distinct": [ + 6 + ], + "filter": [ + 6102 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_aggregate_bool_exp_sum": { + "arguments": [ + 6121 + ], + "distinct": [ + 6 + ], + "filter": [ + 6102 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_aggregate_bool_exp_var_samp": { + "arguments": [ + 6122 + ], + "distinct": [ + 6 + ], + "filter": [ + 6102 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_aggregate_fields": { + "avg": [ + 6100 + ], + "count": [ + 41, + { + "columns": [ + 6114, + "[utility_drift_results_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 6106 + ], + "min": [ + 6108 + ], + "stddev": [ + 6124 + ], + "stddev_pop": [ + 6126 + ], + "stddev_samp": [ + 6128 + ], + "sum": [ + 6132 + ], + "var_pop": [ + 6136 + ], + "var_samp": [ + 6138 + ], + "variance": [ + 6140 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_aggregate_order_by": { + "avg": [ + 6101 + ], + "count": [ + 3648 + ], + "max": [ + 6107 + ], + "min": [ + 6109 + ], + "stddev": [ + 6125 + ], + "stddev_pop": [ + 6127 + ], + "stddev_samp": [ + 6129 + ], + "sum": [ + 6133 + ], + "var_pop": [ + 6137 + ], + "var_samp": [ + 6139 + ], + "variance": [ + 6141 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_arr_rel_insert_input": { + "data": [ + 6105 + ], + "on_conflict": [ + 6111 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_avg_fields": { + "distance": [ + 32 + ], + "distance_xy": [ + 32 + ], + "distance_z": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_avg_order_by": { + "distance": [ + 3648 + ], + "distance_xy": [ + 3648 + ], + "distance_z": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_bool_exp": { + "_and": [ + 6102 + ], + "_not": [ + 6102 + ], + "_or": [ + 6102 + ], + "created_at": [ + 5244 + ], + "distance": [ + 2094 + ], + "distance_xy": [ + 2094 + ], + "distance_z": [ + 2094 + ], + "reason": [ + 87 + ], + "scan": [ + 6146 + ], + "severity": [ + 87 + ], + "utility_drift_scan_id": [ + 6674 + ], + "utility_lineup": [ + 6442 + ], + "utility_lineup_id": [ + 6674 + ], + "verdict": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_constraint": {}, + "utility_drift_results_inc_input": { + "distance": [ + 2093 + ], + "distance_xy": [ + 2093 + ], + "distance_z": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_insert_input": { + "created_at": [ + 5243 + ], + "distance": [ + 2093 + ], + "distance_xy": [ + 2093 + ], + "distance_z": [ + 2093 + ], + "reason": [ + 85 + ], + "scan": [ + 6153 + ], + "severity": [ + 85 + ], + "utility_drift_scan_id": [ + 6672 + ], + "utility_lineup": [ + 6454 + ], + "utility_lineup_id": [ + 6672 + ], + "verdict": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_max_fields": { + "created_at": [ + 5243 + ], + "distance": [ + 2093 + ], + "distance_xy": [ + 2093 + ], + "distance_z": [ + 2093 + ], + "reason": [ + 85 + ], + "severity": [ + 85 + ], + "utility_drift_scan_id": [ + 6672 + ], + "utility_lineup_id": [ + 6672 + ], + "verdict": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_max_order_by": { + "created_at": [ + 3648 + ], + "distance": [ + 3648 + ], + "distance_xy": [ + 3648 + ], + "distance_z": [ + 3648 + ], + "reason": [ + 3648 + ], + "severity": [ + 3648 + ], + "utility_drift_scan_id": [ + 3648 + ], + "utility_lineup_id": [ + 3648 + ], + "verdict": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_min_fields": { + "created_at": [ + 5243 + ], + "distance": [ + 2093 + ], + "distance_xy": [ + 2093 + ], + "distance_z": [ + 2093 + ], + "reason": [ + 85 + ], + "severity": [ + 85 + ], + "utility_drift_scan_id": [ + 6672 + ], + "utility_lineup_id": [ + 6672 + ], + "verdict": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_min_order_by": { + "created_at": [ + 3648 + ], + "distance": [ + 3648 + ], + "distance_xy": [ + 3648 + ], + "distance_z": [ + 3648 + ], + "reason": [ + 3648 + ], + "severity": [ + 3648 + ], + "utility_drift_scan_id": [ + 3648 + ], + "utility_lineup_id": [ + 3648 + ], + "verdict": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 6083 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_on_conflict": { + "constraint": [ + 6103 + ], + "update_columns": [ + 6134 + ], + "where": [ + 6102 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_order_by": { + "created_at": [ + 3648 + ], + "distance": [ + 3648 + ], + "distance_xy": [ + 3648 + ], + "distance_z": [ + 3648 + ], + "reason": [ + 3648 + ], + "scan": [ + 6155 + ], + "severity": [ + 3648 + ], + "utility_drift_scan_id": [ + 3648 + ], + "utility_lineup": [ + 6456 + ], + "utility_lineup_id": [ + 3648 + ], + "verdict": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_pk_columns_input": { + "utility_drift_scan_id": [ + 6672 + ], + "utility_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_select_column": {}, + "utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_avg_arguments_columns": {}, + "utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_corr_arguments_columns": {}, + "utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_covar_samp_arguments_columns": {}, + "utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_max_arguments_columns": {}, + "utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_min_arguments_columns": {}, + "utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_stddev_samp_arguments_columns": {}, + "utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_sum_arguments_columns": {}, + "utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_var_samp_arguments_columns": {}, + "utility_drift_results_set_input": { + "created_at": [ + 5243 + ], + "distance": [ + 2093 + ], + "distance_xy": [ + 2093 + ], + "distance_z": [ + 2093 + ], + "reason": [ + 85 + ], + "severity": [ + 85 + ], + "utility_drift_scan_id": [ + 6672 + ], + "utility_lineup_id": [ + 6672 + ], + "verdict": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_stddev_fields": { + "distance": [ + 32 + ], + "distance_xy": [ + 32 + ], + "distance_z": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_stddev_order_by": { + "distance": [ + 3648 + ], + "distance_xy": [ + 3648 + ], + "distance_z": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_stddev_pop_fields": { + "distance": [ + 32 + ], + "distance_xy": [ + 32 + ], + "distance_z": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_stddev_pop_order_by": { + "distance": [ + 3648 + ], + "distance_xy": [ + 3648 + ], + "distance_z": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_stddev_samp_fields": { + "distance": [ + 32 + ], + "distance_xy": [ + 32 + ], + "distance_z": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_stddev_samp_order_by": { + "distance": [ + 3648 + ], + "distance_xy": [ + 3648 + ], + "distance_z": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_stream_cursor_input": { + "initial_value": [ + 6131 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_stream_cursor_value_input": { + "created_at": [ + 5243 + ], + "distance": [ + 2093 + ], + "distance_xy": [ + 2093 + ], + "distance_z": [ + 2093 + ], + "reason": [ + 85 + ], + "severity": [ + 85 + ], + "utility_drift_scan_id": [ + 6672 + ], + "utility_lineup_id": [ + 6672 + ], + "verdict": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_sum_fields": { + "distance": [ + 2093 + ], + "distance_xy": [ + 2093 + ], + "distance_z": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_sum_order_by": { + "distance": [ + 3648 + ], + "distance_xy": [ + 3648 + ], + "distance_z": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_update_column": {}, + "utility_drift_results_updates": { + "_inc": [ + 6104 + ], + "_set": [ + 6123 + ], + "where": [ + 6102 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_var_pop_fields": { + "distance": [ + 32 + ], + "distance_xy": [ + 32 + ], + "distance_z": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_var_pop_order_by": { + "distance": [ + 3648 + ], + "distance_xy": [ + 3648 + ], + "distance_z": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_var_samp_fields": { + "distance": [ + 32 + ], + "distance_xy": [ + 32 + ], + "distance_z": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_var_samp_order_by": { + "distance": [ + 3648 + ], + "distance_xy": [ + 3648 + ], + "distance_z": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_variance_fields": { + "distance": [ + 32 + ], + "distance_xy": [ + 32 + ], + "distance_z": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_results_variance_order_by": { + "distance": [ + 3648 + ], + "distance_xy": [ + 3648 + ], + "distance_z": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_scans": { + "broken": [ + 41 + ], + "created_at": [ + 5243 + ], + "failure_reason": [ + 85 + ], + "finished_at": [ + 5243 + ], + "from_revision": [ + 85 + ], + "id": [ + 6672 + ], + "lineups": [ + 41 + ], + "map_name": [ + 85 + ], + "max_distance": [ + 2093 + ], + "moved": [ + 41 + ], + "requested_by": [ + 4606 + ], + "requested_by_steam_id": [ + 312 + ], + "results": [ + 6083, + { + "distinct_on": [ + 6114, + "[utility_drift_results_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6112, + "[utility_drift_results_order_by!]" + ], + "where": [ + 6102 + ] + } + ], + "results_aggregate": [ + 6084, + { + "distinct_on": [ + 6114, + "[utility_drift_results_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6112, + "[utility_drift_results_order_by!]" + ], + "where": [ + 6102 + ] + } + ], + "scanned": [ + 41 + ], + "started_at": [ + 5243 + ], + "status": [ + 85 + ], + "to_revision": [ + 85 + ], + "unchanged": [ + 41 + ], + "unsimulatable": [ + 41 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_scans_aggregate": { + "aggregate": [ + 6144 + ], + "nodes": [ + 6142 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_scans_aggregate_fields": { + "avg": [ + 6145 + ], + "count": [ + 41, + { + "columns": [ + 6157, + "[utility_drift_scans_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 6150 + ], + "min": [ + 6151 + ], + "stddev": [ + 6159 + ], + "stddev_pop": [ + 6160 + ], + "stddev_samp": [ + 6161 + ], + "sum": [ + 6164 + ], + "var_pop": [ + 6167 + ], + "var_samp": [ + 6168 + ], + "variance": [ + 6169 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_scans_avg_fields": { + "broken": [ + 32 + ], + "lineups": [ + 32 + ], + "max_distance": [ + 32 + ], + "moved": [ + 32 + ], + "requested_by_steam_id": [ + 32 + ], + "scanned": [ + 32 + ], + "unchanged": [ + 32 + ], + "unsimulatable": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_scans_bool_exp": { + "_and": [ + 6146 + ], + "_not": [ + 6146 + ], + "_or": [ + 6146 + ], + "broken": [ + 42 + ], + "created_at": [ + 5244 + ], + "failure_reason": [ + 87 + ], + "finished_at": [ + 5244 + ], + "from_revision": [ + 87 + ], + "id": [ + 6674 + ], + "lineups": [ + 42 + ], + "map_name": [ + 87 + ], + "max_distance": [ + 2094 + ], + "moved": [ + 42 + ], + "requested_by": [ + 4610 + ], + "requested_by_steam_id": [ + 314 + ], + "results": [ + 6102 + ], + "results_aggregate": [ + 6085 + ], + "scanned": [ + 42 + ], + "started_at": [ + 5244 + ], + "status": [ + 87 + ], + "to_revision": [ + 87 + ], + "unchanged": [ + 42 + ], + "unsimulatable": [ + 42 + ], + "updated_at": [ + 5244 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_scans_constraint": {}, + "utility_drift_scans_inc_input": { + "broken": [ + 41 + ], + "lineups": [ + 41 + ], + "max_distance": [ + 2093 + ], + "moved": [ + 41 + ], + "requested_by_steam_id": [ + 312 + ], + "scanned": [ + 41 + ], + "unchanged": [ + 41 + ], + "unsimulatable": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_scans_insert_input": { + "broken": [ + 41 + ], + "created_at": [ + 5243 + ], + "failure_reason": [ + 85 + ], + "finished_at": [ + 5243 + ], + "from_revision": [ + 85 + ], + "id": [ + 6672 + ], + "lineups": [ + 41 + ], + "map_name": [ + 85 + ], + "max_distance": [ + 2093 + ], + "moved": [ + 41 + ], + "requested_by": [ + 4617 + ], + "requested_by_steam_id": [ + 312 + ], + "results": [ + 6099 + ], + "scanned": [ + 41 + ], + "started_at": [ + 5243 + ], + "status": [ + 85 + ], + "to_revision": [ + 85 + ], + "unchanged": [ + 41 + ], + "unsimulatable": [ + 41 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_scans_max_fields": { + "broken": [ + 41 + ], + "created_at": [ + 5243 + ], + "failure_reason": [ + 85 + ], + "finished_at": [ + 5243 + ], + "from_revision": [ + 85 + ], + "id": [ + 6672 + ], + "lineups": [ + 41 + ], + "map_name": [ + 85 + ], + "max_distance": [ + 2093 + ], + "moved": [ + 41 + ], + "requested_by_steam_id": [ + 312 + ], + "scanned": [ + 41 + ], + "started_at": [ + 5243 + ], + "status": [ + 85 + ], + "to_revision": [ + 85 + ], + "unchanged": [ + 41 + ], + "unsimulatable": [ + 41 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_scans_min_fields": { + "broken": [ + 41 + ], + "created_at": [ + 5243 + ], + "failure_reason": [ + 85 + ], + "finished_at": [ + 5243 + ], + "from_revision": [ + 85 + ], + "id": [ + 6672 + ], + "lineups": [ + 41 + ], + "map_name": [ + 85 + ], + "max_distance": [ + 2093 + ], + "moved": [ + 41 + ], + "requested_by_steam_id": [ + 312 + ], + "scanned": [ + 41 + ], + "started_at": [ + 5243 + ], + "status": [ + 85 + ], + "to_revision": [ + 85 + ], + "unchanged": [ + 41 + ], + "unsimulatable": [ + 41 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_scans_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 6142 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_scans_obj_rel_insert_input": { + "data": [ + 6149 + ], + "on_conflict": [ + 6154 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_scans_on_conflict": { + "constraint": [ + 6147 + ], + "update_columns": [ + 6165 + ], + "where": [ + 6146 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_scans_order_by": { + "broken": [ + 3648 + ], + "created_at": [ + 3648 + ], + "failure_reason": [ + 3648 + ], + "finished_at": [ + 3648 + ], + "from_revision": [ + 3648 + ], + "id": [ + 3648 + ], + "lineups": [ + 3648 + ], + "map_name": [ + 3648 + ], + "max_distance": [ + 3648 + ], + "moved": [ + 3648 + ], + "requested_by": [ + 4619 + ], + "requested_by_steam_id": [ + 3648 + ], + "results_aggregate": [ + 6098 + ], + "scanned": [ + 3648 + ], + "started_at": [ + 3648 + ], + "status": [ + 3648 + ], + "to_revision": [ + 3648 + ], + "unchanged": [ + 3648 + ], + "unsimulatable": [ + 3648 + ], + "updated_at": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_scans_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_scans_select_column": {}, + "utility_drift_scans_set_input": { + "broken": [ + 41 + ], + "created_at": [ + 5243 + ], + "failure_reason": [ + 85 + ], + "finished_at": [ + 5243 + ], + "from_revision": [ + 85 + ], + "id": [ + 6672 + ], + "lineups": [ + 41 + ], + "map_name": [ + 85 + ], + "max_distance": [ + 2093 + ], + "moved": [ + 41 + ], + "requested_by_steam_id": [ + 312 + ], + "scanned": [ + 41 + ], + "started_at": [ + 5243 + ], + "status": [ + 85 + ], + "to_revision": [ + 85 + ], + "unchanged": [ + 41 + ], + "unsimulatable": [ + 41 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_scans_stddev_fields": { + "broken": [ + 32 + ], + "lineups": [ + 32 + ], + "max_distance": [ + 32 + ], + "moved": [ + 32 + ], + "requested_by_steam_id": [ + 32 + ], + "scanned": [ + 32 + ], + "unchanged": [ + 32 + ], + "unsimulatable": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_scans_stddev_pop_fields": { + "broken": [ + 32 + ], + "lineups": [ + 32 + ], + "max_distance": [ + 32 + ], + "moved": [ + 32 + ], + "requested_by_steam_id": [ + 32 + ], + "scanned": [ + 32 + ], + "unchanged": [ + 32 + ], + "unsimulatable": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_scans_stddev_samp_fields": { + "broken": [ + 32 + ], + "lineups": [ + 32 + ], + "max_distance": [ + 32 + ], + "moved": [ + 32 + ], + "requested_by_steam_id": [ + 32 + ], + "scanned": [ + 32 + ], + "unchanged": [ + 32 + ], + "unsimulatable": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_scans_stream_cursor_input": { + "initial_value": [ + 6163 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_scans_stream_cursor_value_input": { + "broken": [ + 41 + ], + "created_at": [ + 5243 + ], + "failure_reason": [ + 85 + ], + "finished_at": [ + 5243 + ], + "from_revision": [ + 85 + ], + "id": [ + 6672 + ], + "lineups": [ + 41 + ], + "map_name": [ + 85 + ], + "max_distance": [ + 2093 + ], + "moved": [ + 41 + ], + "requested_by_steam_id": [ + 312 + ], + "scanned": [ + 41 + ], + "started_at": [ + 5243 + ], + "status": [ + 85 + ], + "to_revision": [ + 85 + ], + "unchanged": [ + 41 + ], + "unsimulatable": [ + 41 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_scans_sum_fields": { + "broken": [ + 41 + ], + "lineups": [ + 41 + ], + "max_distance": [ + 2093 + ], + "moved": [ + 41 + ], + "requested_by_steam_id": [ + 312 + ], + "scanned": [ + 41 + ], + "unchanged": [ + 41 + ], + "unsimulatable": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_scans_update_column": {}, + "utility_drift_scans_updates": { + "_inc": [ + 6148 + ], + "_set": [ + 6158 + ], + "where": [ + 6146 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_scans_var_pop_fields": { + "broken": [ + 32 + ], + "lineups": [ + 32 + ], + "max_distance": [ + 32 + ], + "moved": [ + 32 + ], + "requested_by_steam_id": [ + 32 + ], + "scanned": [ + 32 + ], + "unchanged": [ + 32 + ], + "unsimulatable": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_scans_var_samp_fields": { + "broken": [ + 32 + ], + "lineups": [ + 32 + ], + "max_distance": [ + 32 + ], + "moved": [ + 32 + ], + "requested_by_steam_id": [ + 32 + ], + "scanned": [ + 32 + ], + "unchanged": [ + 32 + ], + "unsimulatable": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_drift_scans_variance_fields": { + "broken": [ + 32 + ], + "lineups": [ + 32 + ], + "max_distance": [ + 32 + ], + "moved": [ + 32 + ], + "requested_by_steam_id": [ + 32 + ], + "scanned": [ + 32 + ], + "unchanged": [ + 32 + ], + "unsimulatable": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_favorites": { + "created_at": [ + 5243 + ], + "player": [ + 4606 + ], + "steam_id": [ + 312 + ], + "utility_lineup": [ + 6420 + ], + "utility_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_favorites_aggregate": { + "aggregate": [ + 6174 + ], + "nodes": [ + 6170 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_favorites_aggregate_bool_exp": { + "count": [ + 6173 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_favorites_aggregate_bool_exp_count": { + "arguments": [ + 6191 + ], + "distinct": [ + 6 + ], + "filter": [ + 6179 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_favorites_aggregate_fields": { + "avg": [ + 6177 + ], + "count": [ + 41, + { + "columns": [ + 6191, + "[utility_lineup_favorites_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 6183 + ], + "min": [ + 6185 + ], + "stddev": [ + 6193 + ], + "stddev_pop": [ + 6195 + ], + "stddev_samp": [ + 6197 + ], + "sum": [ + 6201 + ], + "var_pop": [ + 6205 + ], + "var_samp": [ + 6207 + ], + "variance": [ + 6209 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_favorites_aggregate_order_by": { + "avg": [ + 6178 + ], + "count": [ + 3648 + ], + "max": [ + 6184 + ], + "min": [ + 6186 + ], + "stddev": [ + 6194 + ], + "stddev_pop": [ + 6196 + ], + "stddev_samp": [ + 6198 + ], + "sum": [ + 6202 + ], + "var_pop": [ + 6206 + ], + "var_samp": [ + 6208 + ], + "variance": [ + 6210 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_favorites_arr_rel_insert_input": { + "data": [ + 6182 + ], + "on_conflict": [ + 6188 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_favorites_avg_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_favorites_avg_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_favorites_bool_exp": { + "_and": [ + 6179 + ], + "_not": [ + 6179 + ], + "_or": [ + 6179 + ], + "created_at": [ + 5244 + ], + "player": [ + 4610 + ], + "steam_id": [ + 314 + ], + "utility_lineup": [ + 6442 + ], + "utility_lineup_id": [ + 6674 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_favorites_constraint": {}, + "utility_lineup_favorites_inc_input": { + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_favorites_insert_input": { + "created_at": [ + 5243 + ], + "player": [ + 4617 + ], + "steam_id": [ + 312 + ], + "utility_lineup": [ + 6454 + ], + "utility_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_favorites_max_fields": { + "created_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "utility_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_favorites_max_order_by": { + "created_at": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "utility_lineup_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_favorites_min_fields": { + "created_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "utility_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_favorites_min_order_by": { + "created_at": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "utility_lineup_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_favorites_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 6170 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_favorites_on_conflict": { + "constraint": [ + 6180 + ], + "update_columns": [ + 6203 + ], + "where": [ + 6179 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_favorites_order_by": { + "created_at": [ + 3648 + ], + "player": [ + 4619 + ], + "steam_id": [ + 3648 + ], + "utility_lineup": [ + 6456 + ], + "utility_lineup_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_favorites_pk_columns_input": { + "steam_id": [ + 312 + ], + "utility_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_favorites_select_column": {}, + "utility_lineup_favorites_set_input": { + "created_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "utility_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_favorites_stddev_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_favorites_stddev_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_favorites_stddev_pop_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_favorites_stddev_pop_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_favorites_stddev_samp_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_favorites_stddev_samp_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_favorites_stream_cursor_input": { + "initial_value": [ + 6200 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_favorites_stream_cursor_value_input": { + "created_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "utility_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_favorites_sum_fields": { + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_favorites_sum_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_favorites_update_column": {}, + "utility_lineup_favorites_updates": { + "_inc": [ + 6181 + ], + "_set": [ + 6192 + ], + "where": [ + 6179 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_favorites_var_pop_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_favorites_var_pop_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_favorites_var_samp_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_favorites_var_samp_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_favorites_variance_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_favorites_variance_order_by": { + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress": { + "attempts": [ + 41 + ], + "best_streak": [ + 41 + ], + "current_streak": [ + 41 + ], + "last_practiced_at": [ + 5243 + ], + "mastered_at": [ + 5243 + ], + "miss_along_sum": [ + 2093 + ], + "miss_lateral_sum": [ + 2093 + ], + "miss_samples": [ + 41 + ], + "miss_vertical_sum": [ + 2093 + ], + "player": [ + 4606 + ], + "steam_id": [ + 312 + ], + "successes": [ + 41 + ], + "utility_lineup": [ + 6420 + ], + "utility_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_aggregate": { + "aggregate": [ + 6225 + ], + "nodes": [ + 6211 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_aggregate_bool_exp": { + "avg": [ + 6214 + ], + "corr": [ + 6215 + ], + "count": [ + 6217 + ], + "covar_samp": [ + 6218 + ], + "max": [ + 6220 + ], + "min": [ + 6221 + ], + "stddev_samp": [ + 6222 + ], + "sum": [ + 6223 + ], + "var_samp": [ + 6224 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_aggregate_bool_exp_avg": { + "arguments": [ + 6243 + ], + "distinct": [ + 6 + ], + "filter": [ + 6230 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_aggregate_bool_exp_corr": { + "arguments": [ + 6216 + ], + "distinct": [ + 6 + ], + "filter": [ + 6230 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_aggregate_bool_exp_corr_arguments": { + "X": [ + 6244 + ], + "Y": [ + 6244 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_aggregate_bool_exp_count": { + "arguments": [ + 6242 + ], + "distinct": [ + 6 + ], + "filter": [ + 6230 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_aggregate_bool_exp_covar_samp": { + "arguments": [ + 6219 + ], + "distinct": [ + 6 + ], + "filter": [ + 6230 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_aggregate_bool_exp_covar_samp_arguments": { + "X": [ + 6245 + ], + "Y": [ + 6245 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_aggregate_bool_exp_max": { + "arguments": [ + 6246 + ], + "distinct": [ + 6 + ], + "filter": [ + 6230 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_aggregate_bool_exp_min": { + "arguments": [ + 6247 + ], + "distinct": [ + 6 + ], + "filter": [ + 6230 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_aggregate_bool_exp_stddev_samp": { + "arguments": [ + 6248 + ], + "distinct": [ + 6 + ], + "filter": [ + 6230 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_aggregate_bool_exp_sum": { + "arguments": [ + 6249 + ], + "distinct": [ + 6 + ], + "filter": [ + 6230 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_aggregate_bool_exp_var_samp": { + "arguments": [ + 6250 + ], + "distinct": [ + 6 + ], + "filter": [ + 6230 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_aggregate_fields": { + "avg": [ + 6228 + ], + "count": [ + 41, + { + "columns": [ + 6242, + "[utility_lineup_progress_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 6234 + ], + "min": [ + 6236 + ], + "stddev": [ + 6252 + ], + "stddev_pop": [ + 6254 + ], + "stddev_samp": [ + 6256 + ], + "sum": [ + 6260 + ], + "var_pop": [ + 6264 + ], + "var_samp": [ + 6266 + ], + "variance": [ + 6268 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_aggregate_order_by": { + "avg": [ + 6229 + ], + "count": [ + 3648 + ], + "max": [ + 6235 + ], + "min": [ + 6237 + ], + "stddev": [ + 6253 + ], + "stddev_pop": [ + 6255 + ], + "stddev_samp": [ + 6257 + ], + "sum": [ + 6261 + ], + "var_pop": [ + 6265 + ], + "var_samp": [ + 6267 + ], + "variance": [ + 6269 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_arr_rel_insert_input": { + "data": [ + 6233 + ], + "on_conflict": [ + 6239 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_avg_fields": { + "attempts": [ + 32 + ], + "best_streak": [ + 32 + ], + "current_streak": [ + 32 + ], + "miss_along_sum": [ + 32 + ], + "miss_lateral_sum": [ + 32 + ], + "miss_samples": [ + 32 + ], + "miss_vertical_sum": [ + 32 + ], + "steam_id": [ + 32 + ], + "successes": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_avg_order_by": { + "attempts": [ + 3648 + ], + "best_streak": [ + 3648 + ], + "current_streak": [ + 3648 + ], + "miss_along_sum": [ + 3648 + ], + "miss_lateral_sum": [ + 3648 + ], + "miss_samples": [ + 3648 + ], + "miss_vertical_sum": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "successes": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_bool_exp": { + "_and": [ + 6230 + ], + "_not": [ + 6230 + ], + "_or": [ + 6230 + ], + "attempts": [ + 42 + ], + "best_streak": [ + 42 + ], + "current_streak": [ + 42 + ], + "last_practiced_at": [ + 5244 + ], + "mastered_at": [ + 5244 + ], + "miss_along_sum": [ + 2094 + ], + "miss_lateral_sum": [ + 2094 + ], + "miss_samples": [ + 42 + ], + "miss_vertical_sum": [ + 2094 + ], + "player": [ + 4610 + ], + "steam_id": [ + 314 + ], + "successes": [ + 42 + ], + "utility_lineup": [ + 6442 + ], + "utility_lineup_id": [ + 6674 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_constraint": {}, + "utility_lineup_progress_inc_input": { + "attempts": [ + 41 + ], + "best_streak": [ + 41 + ], + "current_streak": [ + 41 + ], + "miss_along_sum": [ + 2093 + ], + "miss_lateral_sum": [ + 2093 + ], + "miss_samples": [ + 41 + ], + "miss_vertical_sum": [ + 2093 + ], + "steam_id": [ + 312 + ], + "successes": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_insert_input": { + "attempts": [ + 41 + ], + "best_streak": [ + 41 + ], + "current_streak": [ + 41 + ], + "last_practiced_at": [ + 5243 + ], + "mastered_at": [ + 5243 + ], + "miss_along_sum": [ + 2093 + ], + "miss_lateral_sum": [ + 2093 + ], + "miss_samples": [ + 41 + ], + "miss_vertical_sum": [ + 2093 + ], + "player": [ + 4617 + ], + "steam_id": [ + 312 + ], + "successes": [ + 41 + ], + "utility_lineup": [ + 6454 + ], + "utility_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_max_fields": { + "attempts": [ + 41 + ], + "best_streak": [ + 41 + ], + "current_streak": [ + 41 + ], + "last_practiced_at": [ + 5243 + ], + "mastered_at": [ + 5243 + ], + "miss_along_sum": [ + 2093 + ], + "miss_lateral_sum": [ + 2093 + ], + "miss_samples": [ + 41 + ], + "miss_vertical_sum": [ + 2093 + ], + "steam_id": [ + 312 + ], + "successes": [ + 41 + ], + "utility_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_max_order_by": { + "attempts": [ + 3648 + ], + "best_streak": [ + 3648 + ], + "current_streak": [ + 3648 + ], + "last_practiced_at": [ + 3648 + ], + "mastered_at": [ + 3648 + ], + "miss_along_sum": [ + 3648 + ], + "miss_lateral_sum": [ + 3648 + ], + "miss_samples": [ + 3648 + ], + "miss_vertical_sum": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "successes": [ + 3648 + ], + "utility_lineup_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_min_fields": { + "attempts": [ + 41 + ], + "best_streak": [ + 41 + ], + "current_streak": [ + 41 + ], + "last_practiced_at": [ + 5243 + ], + "mastered_at": [ + 5243 + ], + "miss_along_sum": [ + 2093 + ], + "miss_lateral_sum": [ + 2093 + ], + "miss_samples": [ + 41 + ], + "miss_vertical_sum": [ + 2093 + ], + "steam_id": [ + 312 + ], + "successes": [ + 41 + ], + "utility_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_min_order_by": { + "attempts": [ + 3648 + ], + "best_streak": [ + 3648 + ], + "current_streak": [ + 3648 + ], + "last_practiced_at": [ + 3648 + ], + "mastered_at": [ + 3648 + ], + "miss_along_sum": [ + 3648 + ], + "miss_lateral_sum": [ + 3648 + ], + "miss_samples": [ + 3648 + ], + "miss_vertical_sum": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "successes": [ + 3648 + ], + "utility_lineup_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 6211 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_on_conflict": { + "constraint": [ + 6231 + ], + "update_columns": [ + 6262 + ], + "where": [ + 6230 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_order_by": { + "attempts": [ + 3648 + ], + "best_streak": [ + 3648 + ], + "current_streak": [ + 3648 + ], + "last_practiced_at": [ + 3648 + ], + "mastered_at": [ + 3648 + ], + "miss_along_sum": [ + 3648 + ], + "miss_lateral_sum": [ + 3648 + ], + "miss_samples": [ + 3648 + ], + "miss_vertical_sum": [ + 3648 + ], + "player": [ + 4619 + ], + "steam_id": [ + 3648 + ], + "successes": [ + 3648 + ], + "utility_lineup": [ + 6456 + ], + "utility_lineup_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_pk_columns_input": { + "steam_id": [ + 312 + ], + "utility_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_select_column": {}, + "utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_avg_arguments_columns": {}, + "utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_corr_arguments_columns": {}, + "utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_covar_samp_arguments_columns": {}, + "utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_max_arguments_columns": {}, + "utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_min_arguments_columns": {}, + "utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_stddev_samp_arguments_columns": {}, + "utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_sum_arguments_columns": {}, + "utility_lineup_progress_select_column_utility_lineup_progress_aggregate_bool_exp_var_samp_arguments_columns": {}, + "utility_lineup_progress_set_input": { + "attempts": [ + 41 + ], + "best_streak": [ + 41 + ], + "current_streak": [ + 41 + ], + "last_practiced_at": [ + 5243 + ], + "mastered_at": [ + 5243 + ], + "miss_along_sum": [ + 2093 + ], + "miss_lateral_sum": [ + 2093 + ], + "miss_samples": [ + 41 + ], + "miss_vertical_sum": [ + 2093 + ], + "steam_id": [ + 312 + ], + "successes": [ + 41 + ], + "utility_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_stddev_fields": { + "attempts": [ + 32 + ], + "best_streak": [ + 32 + ], + "current_streak": [ + 32 + ], + "miss_along_sum": [ + 32 + ], + "miss_lateral_sum": [ + 32 + ], + "miss_samples": [ + 32 + ], + "miss_vertical_sum": [ + 32 + ], + "steam_id": [ + 32 + ], + "successes": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_stddev_order_by": { + "attempts": [ + 3648 + ], + "best_streak": [ + 3648 + ], + "current_streak": [ + 3648 + ], + "miss_along_sum": [ + 3648 + ], + "miss_lateral_sum": [ + 3648 + ], + "miss_samples": [ + 3648 + ], + "miss_vertical_sum": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "successes": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_stddev_pop_fields": { + "attempts": [ + 32 + ], + "best_streak": [ + 32 + ], + "current_streak": [ + 32 + ], + "miss_along_sum": [ + 32 + ], + "miss_lateral_sum": [ + 32 + ], + "miss_samples": [ + 32 + ], + "miss_vertical_sum": [ + 32 + ], + "steam_id": [ + 32 + ], + "successes": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_stddev_pop_order_by": { + "attempts": [ + 3648 + ], + "best_streak": [ + 3648 + ], + "current_streak": [ + 3648 + ], + "miss_along_sum": [ + 3648 + ], + "miss_lateral_sum": [ + 3648 + ], + "miss_samples": [ + 3648 + ], + "miss_vertical_sum": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "successes": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_stddev_samp_fields": { + "attempts": [ + 32 + ], + "best_streak": [ + 32 + ], + "current_streak": [ + 32 + ], + "miss_along_sum": [ + 32 + ], + "miss_lateral_sum": [ + 32 + ], + "miss_samples": [ + 32 + ], + "miss_vertical_sum": [ + 32 + ], + "steam_id": [ + 32 + ], + "successes": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_stddev_samp_order_by": { + "attempts": [ + 3648 + ], + "best_streak": [ + 3648 + ], + "current_streak": [ + 3648 + ], + "miss_along_sum": [ + 3648 + ], + "miss_lateral_sum": [ + 3648 + ], + "miss_samples": [ + 3648 + ], + "miss_vertical_sum": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "successes": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_stream_cursor_input": { + "initial_value": [ + 6259 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_stream_cursor_value_input": { + "attempts": [ + 41 + ], + "best_streak": [ + 41 + ], + "current_streak": [ + 41 + ], + "last_practiced_at": [ + 5243 + ], + "mastered_at": [ + 5243 + ], + "miss_along_sum": [ + 2093 + ], + "miss_lateral_sum": [ + 2093 + ], + "miss_samples": [ + 41 + ], + "miss_vertical_sum": [ + 2093 + ], + "steam_id": [ + 312 + ], + "successes": [ + 41 + ], + "utility_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_sum_fields": { + "attempts": [ + 41 + ], + "best_streak": [ + 41 + ], + "current_streak": [ + 41 + ], + "miss_along_sum": [ + 2093 + ], + "miss_lateral_sum": [ + 2093 + ], + "miss_samples": [ + 41 + ], + "miss_vertical_sum": [ + 2093 + ], + "steam_id": [ + 312 + ], + "successes": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_sum_order_by": { + "attempts": [ + 3648 + ], + "best_streak": [ + 3648 + ], + "current_streak": [ + 3648 + ], + "miss_along_sum": [ + 3648 + ], + "miss_lateral_sum": [ + 3648 + ], + "miss_samples": [ + 3648 + ], + "miss_vertical_sum": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "successes": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_update_column": {}, + "utility_lineup_progress_updates": { + "_inc": [ + 6232 + ], + "_set": [ + 6251 + ], + "where": [ + 6230 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_var_pop_fields": { + "attempts": [ + 32 + ], + "best_streak": [ + 32 + ], + "current_streak": [ + 32 + ], + "miss_along_sum": [ + 32 + ], + "miss_lateral_sum": [ + 32 + ], + "miss_samples": [ + 32 + ], + "miss_vertical_sum": [ + 32 + ], + "steam_id": [ + 32 + ], + "successes": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_var_pop_order_by": { + "attempts": [ + 3648 + ], + "best_streak": [ + 3648 + ], + "current_streak": [ + 3648 + ], + "miss_along_sum": [ + 3648 + ], + "miss_lateral_sum": [ + 3648 + ], + "miss_samples": [ + 3648 + ], + "miss_vertical_sum": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "successes": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_var_samp_fields": { + "attempts": [ + 32 + ], + "best_streak": [ + 32 + ], + "current_streak": [ + 32 + ], + "miss_along_sum": [ + 32 + ], + "miss_lateral_sum": [ + 32 + ], + "miss_samples": [ + 32 + ], + "miss_vertical_sum": [ + 32 + ], + "steam_id": [ + 32 + ], + "successes": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_var_samp_order_by": { + "attempts": [ + 3648 + ], + "best_streak": [ + 3648 + ], + "current_streak": [ + 3648 + ], + "miss_along_sum": [ + 3648 + ], + "miss_lateral_sum": [ + 3648 + ], + "miss_samples": [ + 3648 + ], + "miss_vertical_sum": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "successes": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_variance_fields": { + "attempts": [ + 32 + ], + "best_streak": [ + 32 + ], + "current_streak": [ + 32 + ], + "miss_along_sum": [ + 32 + ], + "miss_lateral_sum": [ + 32 + ], + "miss_samples": [ + 32 + ], + "miss_vertical_sum": [ + 32 + ], + "steam_id": [ + 32 + ], + "successes": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_progress_variance_order_by": { + "attempts": [ + 3648 + ], + "best_streak": [ + 3648 + ], + "current_streak": [ + 3648 + ], + "miss_along_sum": [ + 3648 + ], + "miss_lateral_sum": [ + 3648 + ], + "miss_samples": [ + 3648 + ], + "miss_vertical_sum": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "successes": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders": { + "created_at": [ + 5243 + ], + "duration_ms": [ + 41 + ], + "error_message": [ + 85 + ], + "game_server_node": [ + 2314 + ], + "game_server_node_id": [ + 85 + ], + "id": [ + 6672 + ], + "k8s_job_name": [ + 85 + ], + "last_status_at": [ + 5243 + ], + "lineup": [ + 6420 + ], + "map_name": [ + 85 + ], + "paused": [ + 6 + ], + "practice_session": [ + 6626 + ], + "progress": [ + 3646 + ], + "requested_by": [ + 4606 + ], + "requested_by_steam_id": [ + 312 + ], + "session_token": [ + 85 + ], + "skip_reason": [ + 85 + ], + "sort_index": [ + 41 + ], + "spec": [ + 2439, + { + "path": [ + 85 + ] + } + ], + "status": [ + 85 + ], + "status_history": [ + 2439, + { + "path": [ + 85 + ] + } + ], + "utility_lineup_id": [ + 6672 + ], + "utility_practice_session_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders_aggregate": { + "aggregate": [ + 6276 + ], + "nodes": [ + 6270 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders_aggregate_bool_exp": { + "bool_and": [ + 6273 + ], + "bool_or": [ + 6274 + ], + "count": [ + 6275 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders_aggregate_bool_exp_bool_and": { + "arguments": [ + 6299 + ], + "distinct": [ + 6 + ], + "filter": [ + 6282 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders_aggregate_bool_exp_bool_or": { + "arguments": [ + 6300 + ], + "distinct": [ + 6 + ], + "filter": [ + 6282 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders_aggregate_bool_exp_count": { + "arguments": [ + 6298 + ], + "distinct": [ + 6 + ], + "filter": [ + 6282 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders_aggregate_fields": { + "avg": [ + 6280 + ], + "count": [ + 41, + { + "columns": [ + 6298, + "[utility_lineup_renders_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 6289 + ], + "min": [ + 6291 + ], + "stddev": [ + 6302 + ], + "stddev_pop": [ + 6304 + ], + "stddev_samp": [ + 6306 + ], + "sum": [ + 6310 + ], + "var_pop": [ + 6314 + ], + "var_samp": [ + 6316 + ], + "variance": [ + 6318 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders_aggregate_order_by": { + "avg": [ + 6281 + ], + "count": [ + 3648 + ], + "max": [ + 6290 + ], + "min": [ + 6292 + ], + "stddev": [ + 6303 + ], + "stddev_pop": [ + 6305 + ], + "stddev_samp": [ + 6307 + ], + "sum": [ + 6311 + ], + "var_pop": [ + 6315 + ], + "var_samp": [ + 6317 + ], + "variance": [ + 6319 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders_append_input": { + "spec": [ + 2439 + ], + "status_history": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders_arr_rel_insert_input": { + "data": [ + 6288 + ], + "on_conflict": [ + 6294 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders_avg_fields": { + "duration_ms": [ + 32 + ], + "progress": [ + 32 + ], + "requested_by_steam_id": [ + 32 + ], + "sort_index": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders_avg_order_by": { + "duration_ms": [ + 3648 + ], + "progress": [ + 3648 + ], + "requested_by_steam_id": [ + 3648 + ], + "sort_index": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders_bool_exp": { + "_and": [ + 6282 + ], + "_not": [ + 6282 + ], + "_or": [ + 6282 + ], + "created_at": [ + 5244 + ], + "duration_ms": [ + 42 + ], + "error_message": [ + 87 + ], + "game_server_node": [ + 2326 + ], + "game_server_node_id": [ + 87 + ], + "id": [ + 6674 + ], + "k8s_job_name": [ + 87 + ], + "last_status_at": [ + 5244 + ], + "lineup": [ + 6442 + ], + "map_name": [ + 87 + ], + "paused": [ + 7 + ], + "practice_session": [ + 6637 + ], + "progress": [ + 3647 + ], + "requested_by": [ + 4610 + ], + "requested_by_steam_id": [ + 314 + ], + "session_token": [ + 87 + ], + "skip_reason": [ + 87 + ], + "sort_index": [ + 42 + ], + "spec": [ + 2441 + ], + "status": [ + 87 + ], + "status_history": [ + 2441 + ], + "utility_lineup_id": [ + 6674 + ], + "utility_practice_session_id": [ + 6674 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders_constraint": {}, + "utility_lineup_renders_delete_at_path_input": { + "spec": [ + 85 + ], + "status_history": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders_delete_elem_input": { + "spec": [ + 41 + ], + "status_history": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders_delete_key_input": { + "spec": [ + 85 + ], + "status_history": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders_inc_input": { + "duration_ms": [ + 41 + ], + "progress": [ + 3646 + ], + "requested_by_steam_id": [ + 312 + ], + "sort_index": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders_insert_input": { + "created_at": [ + 5243 + ], + "duration_ms": [ + 41 + ], + "error_message": [ + 85 + ], + "game_server_node": [ + 2338 + ], + "game_server_node_id": [ + 85 + ], + "id": [ + 6672 + ], + "k8s_job_name": [ + 85 + ], + "last_status_at": [ + 5243 + ], + "lineup": [ + 6454 + ], + "map_name": [ + 85 + ], + "paused": [ + 6 + ], + "practice_session": [ + 6646 + ], + "progress": [ + 3646 + ], + "requested_by": [ + 4617 + ], + "requested_by_steam_id": [ + 312 + ], + "session_token": [ + 85 + ], + "skip_reason": [ + 85 + ], + "sort_index": [ + 41 + ], + "spec": [ + 2439 + ], + "status": [ + 85 + ], + "status_history": [ + 2439 + ], + "utility_lineup_id": [ + 6672 + ], + "utility_practice_session_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders_max_fields": { + "created_at": [ + 5243 + ], + "duration_ms": [ + 41 + ], + "error_message": [ + 85 + ], + "game_server_node_id": [ + 85 + ], + "id": [ + 6672 + ], + "k8s_job_name": [ + 85 + ], + "last_status_at": [ + 5243 + ], + "map_name": [ + 85 + ], + "progress": [ + 3646 + ], + "requested_by_steam_id": [ + 312 + ], + "session_token": [ + 85 + ], + "skip_reason": [ + 85 + ], + "sort_index": [ + 41 + ], + "status": [ + 85 + ], + "utility_lineup_id": [ + 6672 + ], + "utility_practice_session_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders_max_order_by": { + "created_at": [ + 3648 + ], + "duration_ms": [ + 3648 + ], + "error_message": [ + 3648 + ], + "game_server_node_id": [ + 3648 + ], + "id": [ + 3648 + ], + "k8s_job_name": [ + 3648 + ], + "last_status_at": [ + 3648 + ], + "map_name": [ + 3648 + ], + "progress": [ + 3648 + ], + "requested_by_steam_id": [ + 3648 + ], + "session_token": [ + 3648 + ], + "skip_reason": [ + 3648 + ], + "sort_index": [ + 3648 + ], + "status": [ + 3648 + ], + "utility_lineup_id": [ + 3648 + ], + "utility_practice_session_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders_min_fields": { + "created_at": [ + 5243 + ], + "duration_ms": [ + 41 + ], + "error_message": [ + 85 + ], + "game_server_node_id": [ + 85 + ], + "id": [ + 6672 + ], + "k8s_job_name": [ + 85 + ], + "last_status_at": [ + 5243 + ], + "map_name": [ + 85 + ], + "progress": [ + 3646 + ], + "requested_by_steam_id": [ + 312 + ], + "session_token": [ + 85 + ], + "skip_reason": [ + 85 + ], + "sort_index": [ + 41 + ], + "status": [ + 85 + ], + "utility_lineup_id": [ + 6672 + ], + "utility_practice_session_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders_min_order_by": { + "created_at": [ + 3648 + ], + "duration_ms": [ + 3648 + ], + "error_message": [ + 3648 + ], + "game_server_node_id": [ + 3648 + ], + "id": [ + 3648 + ], + "k8s_job_name": [ + 3648 + ], + "last_status_at": [ + 3648 + ], + "map_name": [ + 3648 + ], + "progress": [ + 3648 + ], + "requested_by_steam_id": [ + 3648 + ], + "session_token": [ + 3648 + ], + "skip_reason": [ + 3648 + ], + "sort_index": [ + 3648 + ], + "status": [ + 3648 + ], + "utility_lineup_id": [ + 3648 + ], + "utility_practice_session_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 6270 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders_on_conflict": { + "constraint": [ + 6283 + ], + "update_columns": [ + 6312 + ], + "where": [ + 6282 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders_order_by": { + "created_at": [ + 3648 + ], + "duration_ms": [ + 3648 + ], + "error_message": [ + 3648 + ], + "game_server_node": [ + 2340 + ], + "game_server_node_id": [ + 3648 + ], + "id": [ + 3648 + ], + "k8s_job_name": [ + 3648 + ], + "last_status_at": [ + 3648 + ], + "lineup": [ + 6456 + ], + "map_name": [ + 3648 + ], + "paused": [ + 3648 + ], + "practice_session": [ + 6648 + ], + "progress": [ + 3648 + ], + "requested_by": [ + 4619 + ], + "requested_by_steam_id": [ + 3648 + ], + "session_token": [ + 3648 + ], + "skip_reason": [ + 3648 + ], + "sort_index": [ + 3648 + ], + "spec": [ + 3648 + ], + "status": [ + 3648 + ], + "status_history": [ + 3648 + ], + "utility_lineup_id": [ + 3648 + ], + "utility_practice_session_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders_prepend_input": { + "spec": [ + 2439 + ], + "status_history": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders_select_column": {}, + "utility_lineup_renders_select_column_utility_lineup_renders_aggregate_bool_exp_bool_and_arguments_columns": {}, + "utility_lineup_renders_select_column_utility_lineup_renders_aggregate_bool_exp_bool_or_arguments_columns": {}, + "utility_lineup_renders_set_input": { + "created_at": [ + 5243 + ], + "duration_ms": [ + 41 + ], + "error_message": [ + 85 + ], + "game_server_node_id": [ + 85 + ], + "id": [ + 6672 + ], + "k8s_job_name": [ + 85 + ], + "last_status_at": [ + 5243 + ], + "map_name": [ + 85 + ], + "paused": [ + 6 + ], + "progress": [ + 3646 + ], + "requested_by_steam_id": [ + 312 + ], + "session_token": [ + 85 + ], + "skip_reason": [ + 85 + ], + "sort_index": [ + 41 + ], + "spec": [ + 2439 + ], + "status": [ + 85 + ], + "status_history": [ + 2439 + ], + "utility_lineup_id": [ + 6672 + ], + "utility_practice_session_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders_stddev_fields": { + "duration_ms": [ + 32 + ], + "progress": [ + 32 + ], + "requested_by_steam_id": [ + 32 + ], + "sort_index": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders_stddev_order_by": { + "duration_ms": [ + 3648 + ], + "progress": [ + 3648 + ], + "requested_by_steam_id": [ + 3648 + ], + "sort_index": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders_stddev_pop_fields": { + "duration_ms": [ + 32 + ], + "progress": [ + 32 + ], + "requested_by_steam_id": [ + 32 + ], + "sort_index": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders_stddev_pop_order_by": { + "duration_ms": [ + 3648 + ], + "progress": [ + 3648 + ], + "requested_by_steam_id": [ + 3648 + ], + "sort_index": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders_stddev_samp_fields": { + "duration_ms": [ + 32 + ], + "progress": [ + 32 + ], + "requested_by_steam_id": [ + 32 + ], + "sort_index": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders_stddev_samp_order_by": { + "duration_ms": [ + 3648 + ], + "progress": [ + 3648 + ], + "requested_by_steam_id": [ + 3648 + ], + "sort_index": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders_stream_cursor_input": { + "initial_value": [ + 6309 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders_stream_cursor_value_input": { + "created_at": [ + 5243 + ], + "duration_ms": [ + 41 + ], + "error_message": [ + 85 + ], + "game_server_node_id": [ + 85 + ], + "id": [ + 6672 + ], + "k8s_job_name": [ + 85 + ], + "last_status_at": [ + 5243 + ], + "map_name": [ + 85 + ], + "paused": [ + 6 + ], + "progress": [ + 3646 + ], + "requested_by_steam_id": [ + 312 + ], + "session_token": [ + 85 + ], + "skip_reason": [ + 85 + ], + "sort_index": [ + 41 + ], + "spec": [ + 2439 + ], + "status": [ + 85 + ], + "status_history": [ + 2439 + ], + "utility_lineup_id": [ + 6672 + ], + "utility_practice_session_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders_sum_fields": { + "duration_ms": [ + 41 + ], + "progress": [ + 3646 + ], + "requested_by_steam_id": [ + 312 + ], + "sort_index": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders_sum_order_by": { + "duration_ms": [ + 3648 + ], + "progress": [ + 3648 + ], + "requested_by_steam_id": [ + 3648 + ], + "sort_index": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders_update_column": {}, + "utility_lineup_renders_updates": { + "_append": [ + 6278 + ], + "_delete_at_path": [ + 6284 + ], + "_delete_elem": [ + 6285 + ], + "_delete_key": [ + 6286 + ], + "_inc": [ + 6287 + ], + "_prepend": [ + 6297 + ], + "_set": [ + 6301 + ], + "where": [ + 6282 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders_var_pop_fields": { + "duration_ms": [ + 32 + ], + "progress": [ + 32 + ], + "requested_by_steam_id": [ + 32 + ], + "sort_index": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders_var_pop_order_by": { + "duration_ms": [ + 3648 + ], + "progress": [ + 3648 + ], + "requested_by_steam_id": [ + 3648 + ], + "sort_index": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders_var_samp_fields": { + "duration_ms": [ + 32 + ], + "progress": [ + 32 + ], + "requested_by_steam_id": [ + 32 + ], + "sort_index": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders_var_samp_order_by": { + "duration_ms": [ + 3648 + ], + "progress": [ + 3648 + ], + "requested_by_steam_id": [ + 3648 + ], + "sort_index": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders_variance_fields": { + "duration_ms": [ + 32 + ], + "progress": [ + 32 + ], + "requested_by_steam_id": [ + 32 + ], + "sort_index": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_renders_variance_order_by": { + "duration_ms": [ + 3648 + ], + "progress": [ + 3648 + ], + "requested_by_steam_id": [ + 3648 + ], + "sort_index": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs": { + "created_at": [ + 5243 + ], + "drift_distance": [ + 2093 + ], + "expires_at": [ + 5243 + ], + "id": [ + 6672 + ], + "repaired_at": [ + 5243 + ], + "repaired_utility_lineup": [ + 6420 + ], + "repaired_utility_lineup_id": [ + 6672 + ], + "requested_by": [ + 4606 + ], + "requested_by_steam_id": [ + 312 + ], + "status": [ + 85 + ], + "utility_drift_scan": [ + 6142 + ], + "utility_drift_scan_id": [ + 6672 + ], + "utility_lineup": [ + 6420 + ], + "utility_lineup_id": [ + 6672 + ], + "utility_practice_session": [ + 6626 + ], + "utility_practice_session_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_aggregate": { + "aggregate": [ + 6334 + ], + "nodes": [ + 6320 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_aggregate_bool_exp": { + "avg": [ + 6323 + ], + "corr": [ + 6324 + ], + "count": [ + 6326 + ], + "covar_samp": [ + 6327 + ], + "max": [ + 6329 + ], + "min": [ + 6330 + ], + "stddev_samp": [ + 6331 + ], + "sum": [ + 6332 + ], + "var_samp": [ + 6333 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_aggregate_bool_exp_avg": { + "arguments": [ + 6352 + ], + "distinct": [ + 6 + ], + "filter": [ + 6339 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_aggregate_bool_exp_corr": { + "arguments": [ + 6325 + ], + "distinct": [ + 6 + ], + "filter": [ + 6339 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_aggregate_bool_exp_corr_arguments": { + "X": [ + 6353 + ], + "Y": [ + 6353 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_aggregate_bool_exp_count": { + "arguments": [ + 6351 + ], + "distinct": [ + 6 + ], + "filter": [ + 6339 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_aggregate_bool_exp_covar_samp": { + "arguments": [ + 6328 + ], + "distinct": [ + 6 + ], + "filter": [ + 6339 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_aggregate_bool_exp_covar_samp_arguments": { + "X": [ + 6354 + ], + "Y": [ + 6354 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_aggregate_bool_exp_max": { + "arguments": [ + 6355 + ], + "distinct": [ + 6 + ], + "filter": [ + 6339 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_aggregate_bool_exp_min": { + "arguments": [ + 6356 + ], + "distinct": [ + 6 + ], + "filter": [ + 6339 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_aggregate_bool_exp_stddev_samp": { + "arguments": [ + 6357 + ], + "distinct": [ + 6 + ], + "filter": [ + 6339 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_aggregate_bool_exp_sum": { + "arguments": [ + 6358 + ], + "distinct": [ + 6 + ], + "filter": [ + 6339 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_aggregate_bool_exp_var_samp": { + "arguments": [ + 6359 + ], + "distinct": [ + 6 + ], + "filter": [ + 6339 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_aggregate_fields": { + "avg": [ + 6337 + ], + "count": [ + 41, + { + "columns": [ + 6351, + "[utility_lineup_repairs_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 6343 + ], + "min": [ + 6345 + ], + "stddev": [ + 6361 + ], + "stddev_pop": [ + 6363 + ], + "stddev_samp": [ + 6365 + ], + "sum": [ + 6369 + ], + "var_pop": [ + 6373 + ], + "var_samp": [ + 6375 + ], + "variance": [ + 6377 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_aggregate_order_by": { + "avg": [ + 6338 + ], + "count": [ + 3648 + ], + "max": [ + 6344 + ], + "min": [ + 6346 + ], + "stddev": [ + 6362 + ], + "stddev_pop": [ + 6364 + ], + "stddev_samp": [ + 6366 + ], + "sum": [ + 6370 + ], + "var_pop": [ + 6374 + ], + "var_samp": [ + 6376 + ], + "variance": [ + 6378 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_arr_rel_insert_input": { + "data": [ + 6342 + ], + "on_conflict": [ + 6348 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_avg_fields": { + "drift_distance": [ + 32 + ], + "requested_by_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_avg_order_by": { + "drift_distance": [ + 3648 + ], + "requested_by_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_bool_exp": { + "_and": [ + 6339 + ], + "_not": [ + 6339 + ], + "_or": [ + 6339 + ], + "created_at": [ + 5244 + ], + "drift_distance": [ + 2094 + ], + "expires_at": [ + 5244 + ], + "id": [ + 6674 + ], + "repaired_at": [ + 5244 + ], + "repaired_utility_lineup": [ + 6442 + ], + "repaired_utility_lineup_id": [ + 6674 + ], + "requested_by": [ + 4610 + ], + "requested_by_steam_id": [ + 314 + ], + "status": [ + 87 + ], + "utility_drift_scan": [ + 6146 + ], + "utility_drift_scan_id": [ + 6674 + ], + "utility_lineup": [ + 6442 + ], + "utility_lineup_id": [ + 6674 + ], + "utility_practice_session": [ + 6637 + ], + "utility_practice_session_id": [ + 6674 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_constraint": {}, + "utility_lineup_repairs_inc_input": { + "drift_distance": [ + 2093 + ], + "requested_by_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_insert_input": { + "created_at": [ + 5243 + ], + "drift_distance": [ + 2093 + ], + "expires_at": [ + 5243 + ], + "id": [ + 6672 + ], + "repaired_at": [ + 5243 + ], + "repaired_utility_lineup": [ + 6454 + ], + "repaired_utility_lineup_id": [ + 6672 + ], + "requested_by": [ + 4617 + ], + "requested_by_steam_id": [ + 312 + ], + "status": [ + 85 + ], + "utility_drift_scan": [ + 6153 + ], + "utility_drift_scan_id": [ + 6672 + ], + "utility_lineup": [ + 6454 + ], + "utility_lineup_id": [ + 6672 + ], + "utility_practice_session": [ + 6646 + ], + "utility_practice_session_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_max_fields": { + "created_at": [ + 5243 + ], + "drift_distance": [ + 2093 + ], + "expires_at": [ + 5243 + ], + "id": [ + 6672 + ], + "repaired_at": [ + 5243 + ], + "repaired_utility_lineup_id": [ + 6672 + ], + "requested_by_steam_id": [ + 312 + ], + "status": [ + 85 + ], + "utility_drift_scan_id": [ + 6672 + ], + "utility_lineup_id": [ + 6672 + ], + "utility_practice_session_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_max_order_by": { + "created_at": [ + 3648 + ], + "drift_distance": [ + 3648 + ], + "expires_at": [ + 3648 + ], + "id": [ + 3648 + ], + "repaired_at": [ + 3648 + ], + "repaired_utility_lineup_id": [ + 3648 + ], + "requested_by_steam_id": [ + 3648 + ], + "status": [ + 3648 + ], + "utility_drift_scan_id": [ + 3648 + ], + "utility_lineup_id": [ + 3648 + ], + "utility_practice_session_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_min_fields": { + "created_at": [ + 5243 + ], + "drift_distance": [ + 2093 + ], + "expires_at": [ + 5243 + ], + "id": [ + 6672 + ], + "repaired_at": [ + 5243 + ], + "repaired_utility_lineup_id": [ + 6672 + ], + "requested_by_steam_id": [ + 312 + ], + "status": [ + 85 + ], + "utility_drift_scan_id": [ + 6672 + ], + "utility_lineup_id": [ + 6672 + ], + "utility_practice_session_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_min_order_by": { + "created_at": [ + 3648 + ], + "drift_distance": [ + 3648 + ], + "expires_at": [ + 3648 + ], + "id": [ + 3648 + ], + "repaired_at": [ + 3648 + ], + "repaired_utility_lineup_id": [ + 3648 + ], + "requested_by_steam_id": [ + 3648 + ], + "status": [ + 3648 + ], + "utility_drift_scan_id": [ + 3648 + ], + "utility_lineup_id": [ + 3648 + ], + "utility_practice_session_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 6320 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_on_conflict": { + "constraint": [ + 6340 + ], + "update_columns": [ + 6371 + ], + "where": [ + 6339 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_order_by": { + "created_at": [ + 3648 + ], + "drift_distance": [ + 3648 + ], + "expires_at": [ + 3648 + ], + "id": [ + 3648 + ], + "repaired_at": [ + 3648 + ], + "repaired_utility_lineup": [ + 6456 + ], + "repaired_utility_lineup_id": [ + 3648 + ], + "requested_by": [ + 4619 + ], + "requested_by_steam_id": [ + 3648 + ], + "status": [ + 3648 + ], + "utility_drift_scan": [ + 6155 + ], + "utility_drift_scan_id": [ + 3648 + ], + "utility_lineup": [ + 6456 + ], + "utility_lineup_id": [ + 3648 + ], + "utility_practice_session": [ + 6648 + ], + "utility_practice_session_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_select_column": {}, + "utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_avg_arguments_columns": {}, + "utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_corr_arguments_columns": {}, + "utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_covar_samp_arguments_columns": {}, + "utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_max_arguments_columns": {}, + "utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_min_arguments_columns": {}, + "utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_stddev_samp_arguments_columns": {}, + "utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_sum_arguments_columns": {}, + "utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_var_samp_arguments_columns": {}, + "utility_lineup_repairs_set_input": { + "created_at": [ + 5243 + ], + "drift_distance": [ + 2093 + ], + "expires_at": [ + 5243 + ], + "id": [ + 6672 + ], + "repaired_at": [ + 5243 + ], + "repaired_utility_lineup_id": [ + 6672 + ], + "requested_by_steam_id": [ + 312 + ], + "status": [ + 85 + ], + "utility_drift_scan_id": [ + 6672 + ], + "utility_lineup_id": [ + 6672 + ], + "utility_practice_session_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_stddev_fields": { + "drift_distance": [ + 32 + ], + "requested_by_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_stddev_order_by": { + "drift_distance": [ + 3648 + ], + "requested_by_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_stddev_pop_fields": { + "drift_distance": [ + 32 + ], + "requested_by_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_stddev_pop_order_by": { + "drift_distance": [ + 3648 + ], + "requested_by_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_stddev_samp_fields": { + "drift_distance": [ + 32 + ], + "requested_by_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_stddev_samp_order_by": { + "drift_distance": [ + 3648 + ], + "requested_by_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_stream_cursor_input": { + "initial_value": [ + 6368 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_stream_cursor_value_input": { + "created_at": [ + 5243 + ], + "drift_distance": [ + 2093 + ], + "expires_at": [ + 5243 + ], + "id": [ + 6672 + ], + "repaired_at": [ + 5243 + ], + "repaired_utility_lineup_id": [ + 6672 + ], + "requested_by_steam_id": [ + 312 + ], + "status": [ + 85 + ], + "utility_drift_scan_id": [ + 6672 + ], + "utility_lineup_id": [ + 6672 + ], + "utility_practice_session_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_sum_fields": { + "drift_distance": [ + 2093 + ], + "requested_by_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_sum_order_by": { + "drift_distance": [ + 3648 + ], + "requested_by_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_update_column": {}, + "utility_lineup_repairs_updates": { + "_inc": [ + 6341 + ], + "_set": [ + 6360 + ], + "where": [ + 6339 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_var_pop_fields": { + "drift_distance": [ + 32 + ], + "requested_by_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_var_pop_order_by": { + "drift_distance": [ + 3648 + ], + "requested_by_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_var_samp_fields": { + "drift_distance": [ + 32 + ], + "requested_by_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_var_samp_order_by": { + "drift_distance": [ + 3648 + ], + "requested_by_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_variance_fields": { + "drift_distance": [ + 32 + ], + "requested_by_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_repairs_variance_order_by": { + "drift_distance": [ + 3648 + ], + "requested_by_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_votes": { + "created_at": [ + 5243 + ], + "player": [ + 4606 + ], + "steam_id": [ + 312 + ], + "utility_lineup": [ + 6420 + ], + "utility_lineup_id": [ + 6672 + ], + "vote": [ + 4830 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_votes_aggregate": { + "aggregate": [ + 6383 + ], + "nodes": [ + 6379 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_votes_aggregate_bool_exp": { + "count": [ + 6382 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_votes_aggregate_bool_exp_count": { + "arguments": [ + 6400 + ], + "distinct": [ + 6 + ], + "filter": [ + 6388 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_votes_aggregate_fields": { + "avg": [ + 6386 + ], + "count": [ + 41, + { + "columns": [ + 6400, + "[utility_lineup_votes_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 6392 + ], + "min": [ + 6394 + ], + "stddev": [ + 6402 + ], + "stddev_pop": [ + 6404 + ], + "stddev_samp": [ + 6406 + ], + "sum": [ + 6410 + ], + "var_pop": [ + 6414 + ], + "var_samp": [ + 6416 + ], + "variance": [ + 6418 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_votes_aggregate_order_by": { + "avg": [ + 6387 + ], + "count": [ + 3648 + ], + "max": [ + 6393 + ], + "min": [ + 6395 + ], + "stddev": [ + 6403 + ], + "stddev_pop": [ + 6405 + ], + "stddev_samp": [ + 6407 + ], + "sum": [ + 6411 + ], + "var_pop": [ + 6415 + ], + "var_samp": [ + 6417 + ], + "variance": [ + 6419 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_votes_arr_rel_insert_input": { + "data": [ + 6391 + ], + "on_conflict": [ + 6397 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_votes_avg_fields": { + "steam_id": [ + 32 + ], + "vote": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_votes_avg_order_by": { + "steam_id": [ + 3648 + ], + "vote": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_votes_bool_exp": { + "_and": [ + 6388 + ], + "_not": [ + 6388 + ], + "_or": [ + 6388 + ], + "created_at": [ + 5244 + ], + "player": [ + 4610 + ], + "steam_id": [ + 314 + ], + "utility_lineup": [ + 6442 + ], + "utility_lineup_id": [ + 6674 + ], + "vote": [ + 4831 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_votes_constraint": {}, + "utility_lineup_votes_inc_input": { + "steam_id": [ + 312 + ], + "vote": [ + 4830 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_votes_insert_input": { + "created_at": [ + 5243 + ], + "player": [ + 4617 + ], + "steam_id": [ + 312 + ], + "utility_lineup": [ + 6454 + ], + "utility_lineup_id": [ + 6672 + ], + "vote": [ + 4830 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_votes_max_fields": { + "created_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "utility_lineup_id": [ + 6672 + ], + "vote": [ + 4830 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_votes_max_order_by": { + "created_at": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "utility_lineup_id": [ + 3648 + ], + "vote": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_votes_min_fields": { + "created_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "utility_lineup_id": [ + 6672 + ], + "vote": [ + 4830 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_votes_min_order_by": { + "created_at": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "utility_lineup_id": [ + 3648 + ], + "vote": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_votes_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 6379 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_votes_on_conflict": { + "constraint": [ + 6389 + ], + "update_columns": [ + 6412 + ], + "where": [ + 6388 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_votes_order_by": { + "created_at": [ + 3648 + ], + "player": [ + 4619 + ], + "steam_id": [ + 3648 + ], + "utility_lineup": [ + 6456 + ], + "utility_lineup_id": [ + 3648 + ], + "vote": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_votes_pk_columns_input": { + "steam_id": [ + 312 + ], + "utility_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_votes_select_column": {}, + "utility_lineup_votes_set_input": { + "created_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "utility_lineup_id": [ + 6672 + ], + "vote": [ + 4830 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_votes_stddev_fields": { + "steam_id": [ + 32 + ], + "vote": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_votes_stddev_order_by": { + "steam_id": [ + 3648 + ], + "vote": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_votes_stddev_pop_fields": { + "steam_id": [ + 32 + ], + "vote": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_votes_stddev_pop_order_by": { + "steam_id": [ + 3648 + ], + "vote": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_votes_stddev_samp_fields": { + "steam_id": [ + 32 + ], + "vote": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_votes_stddev_samp_order_by": { + "steam_id": [ + 3648 + ], + "vote": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_votes_stream_cursor_input": { + "initial_value": [ + 6409 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_votes_stream_cursor_value_input": { + "created_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "utility_lineup_id": [ + 6672 + ], + "vote": [ + 4830 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_votes_sum_fields": { + "steam_id": [ + 312 + ], + "vote": [ + 4830 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_votes_sum_order_by": { + "steam_id": [ + 3648 + ], + "vote": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_votes_update_column": {}, + "utility_lineup_votes_updates": { + "_inc": [ + 6390 + ], + "_set": [ + 6401 + ], + "where": [ + 6388 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_votes_var_pop_fields": { + "steam_id": [ + 32 + ], + "vote": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_votes_var_pop_order_by": { + "steam_id": [ + 3648 + ], + "vote": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_votes_var_samp_fields": { + "steam_id": [ + 32 + ], + "vote": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_votes_var_samp_order_by": { + "steam_id": [ + 3648 + ], + "vote": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_votes_variance_fields": { + "steam_id": [ + 32 + ], + "vote": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_lineup_votes_variance_order_by": { + "steam_id": [ + 3648 + ], + "vote": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups": { + "aim_tolerance": [ + 2093 + ], + "archived_at": [ + 5243 + ], + "author": [ + 4606 + ], + "author_steam_id": [ + 312 + ], + "can_edit": [ + 6 + ], + "can_view": [ + 6 + ], + "collection_items": [ + 5960, + { + "distinct_on": [ + 5981, + "[utility_collection_items_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5979, + "[utility_collection_items_order_by!]" + ], + "where": [ + 5969 + ] + } + ], + "collection_items_aggregate": [ + 5961, + { + "distinct_on": [ + 5981, + "[utility_collection_items_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5979, + "[utility_collection_items_order_by!]" + ], + "where": [ + 5969 + ] + } + ], + "confidence": [ + 85 + ], + "created_at": [ + 5243 + ], + "description": [ + 85 + ], + "difficulty": [ + 85 + ], + "downvotes": [ + 41 + ], + "external_id": [ + 85 + ], + "eye_z": [ + 2093 + ], + "favorited_by": [ + 6170, + { + "distinct_on": [ + 6191, + "[utility_lineup_favorites_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6189, + "[utility_lineup_favorites_order_by!]" + ], + "where": [ + 6179 + ] + } + ], + "favorited_by_aggregate": [ + 6171, + { + "distinct_on": [ + 6191, + "[utility_lineup_favorites_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6189, + "[utility_lineup_favorites_order_by!]" + ], + "where": [ + 6179 + ] + } + ], + "favorites": [ + 41 + ], + "flight_time_ms": [ + 41 + ], + "forked_from": [ + 6420 + ], + "forked_from_utility_lineup_id": [ + 6672 + ], + "id": [ + 6672 + ], + "initial_pos_x": [ + 2093 + ], + "initial_pos_y": [ + 2093 + ], + "initial_pos_z": [ + 2093 + ], + "initial_vel_x": [ + 2093 + ], + "initial_vel_y": [ + 2093 + ], + "initial_vel_z": [ + 2093 + ], + "is_favorited": [ + 6 + ], + "jump_throw_bind": [ + 6 + ], + "land_x": [ + 2093 + ], + "land_y": [ + 2093 + ], + "land_z": [ + 2093 + ], + "lineup_bucket": [ + 85 + ], + "map_name": [ + 85 + ], + "my_vote": [ + 4830 + ], + "name": [ + 85 + ], + "origin_source": [ + 1699 + ], + "origin_x": [ + 2093 + ], + "origin_y": [ + 2093 + ], + "origin_z": [ + 2093 + ], + "practice_attempts": [ + 41 + ], + "practice_players": [ + 41 + ], + "practice_successes": [ + 41 + ], + "preview_duration_ms": [ + 41 + ], + "preview_file": [ + 85 + ], + "preview_rendered_at": [ + 5243 + ], + "preview_thumbnail": [ + 85 + ], + "preview_thumbnail_url": [ + 85 + ], + "preview_url": [ + 85 + ], + "progress": [ + 6211, + { + "distinct_on": [ + 6242, + "[utility_lineup_progress_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6240, + "[utility_lineup_progress_order_by!]" + ], + "where": [ + 6230 + ] + } + ], + "progress_aggregate": [ + 6212, + { + "distinct_on": [ + 6242, + "[utility_lineup_progress_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6240, + "[utility_lineup_progress_order_by!]" + ], + "where": [ + 6230 + ] + } + ], + "public_requested_at": [ + 5243 + ], + "public_review_note": [ + 85 + ], + "public_reviewed_at": [ + 5243 + ], + "public_reviewed_by": [ + 312 + ], + "renders": [ + 6270, + { + "distinct_on": [ + 6298, + "[utility_lineup_renders_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6295, + "[utility_lineup_renders_order_by!]" + ], + "where": [ + 6282 + ] + } + ], + "renders_aggregate": [ + 6271, + { + "distinct_on": [ + 6298, + "[utility_lineup_renders_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6295, + "[utility_lineup_renders_order_by!]" + ], + "where": [ + 6282 + ] + } + ], + "repairs": [ + 6320, + { + "distinct_on": [ + 6351, + "[utility_lineup_repairs_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6349, + "[utility_lineup_repairs_order_by!]" + ], + "where": [ + 6339 + ] + } + ], + "repairs_aggregate": [ + 6321, + { + "distinct_on": [ + 6351, + "[utility_lineup_repairs_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6349, + "[utility_lineup_repairs_order_by!]" + ], + "where": [ + 6339 + ] + } + ], + "side": [ + 1453 + ], + "source_grenade_id": [ + 41 + ], + "source_match": [ + 3432 + ], + "source_match_id": [ + 6672 + ], + "source_match_map": [ + 3248 + ], + "source_match_map_id": [ + 6672 + ], + "source_url": [ + 85 + ], + "tags": [ + 85 + ], + "team": [ + 5194 + ], + "team_id": [ + 6672 + ], + "technique": [ + 1719 + ], + "throw_strength": [ + 1739 + ], + "trajectory_file": [ + 85 + ], + "trajectory_preview": [ + 2439, + { + "path": [ + 85 + ] + } + ], + "trajectory_size": [ + 41 + ], + "updated_at": [ + 5243 + ], + "upvotes": [ + 41 + ], + "utility_type": [ + 1759 + ], + "verified_at": [ + 5243 + ], + "view_pitch": [ + 2093 + ], + "view_pitch_delta": [ + 2093 + ], + "view_yaw": [ + 2093 + ], + "view_yaw_delta": [ + 2093 + ], + "visibility": [ + 1779 + ], + "votes": [ + 6379, + { + "distinct_on": [ + 6400, + "[utility_lineup_votes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6398, + "[utility_lineup_votes_order_by!]" + ], + "where": [ + 6388 + ] + } + ], + "votes_aggregate": [ + 6380, + { + "distinct_on": [ + 6400, + "[utility_lineup_votes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6398, + "[utility_lineup_votes_order_by!]" + ], + "where": [ + 6388 + ] + } + ], + "workshop_map_id": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_aggregate": { + "aggregate": [ + 6436 + ], + "nodes": [ + 6420 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_aggregate_bool_exp": { + "avg": [ + 6423 + ], + "bool_and": [ + 6424 + ], + "bool_or": [ + 6425 + ], + "corr": [ + 6426 + ], + "count": [ + 6428 + ], + "covar_samp": [ + 6429 + ], + "max": [ + 6431 + ], + "min": [ + 6432 + ], + "stddev_samp": [ + 6433 + ], + "sum": [ + 6434 + ], + "var_samp": [ + 6435 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_aggregate_bool_exp_avg": { + "arguments": [ + 6460 + ], + "distinct": [ + 6 + ], + "filter": [ + 6442 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_aggregate_bool_exp_bool_and": { + "arguments": [ + 6461 + ], + "distinct": [ + 6 + ], + "filter": [ + 6442 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_aggregate_bool_exp_bool_or": { + "arguments": [ + 6462 + ], + "distinct": [ + 6 + ], + "filter": [ + 6442 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_aggregate_bool_exp_corr": { + "arguments": [ + 6427 + ], + "distinct": [ + 6 + ], + "filter": [ + 6442 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_aggregate_bool_exp_corr_arguments": { + "X": [ + 6463 + ], + "Y": [ + 6463 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_aggregate_bool_exp_count": { + "arguments": [ + 6459 + ], + "distinct": [ + 6 + ], + "filter": [ + 6442 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_aggregate_bool_exp_covar_samp": { + "arguments": [ + 6430 + ], + "distinct": [ + 6 + ], + "filter": [ + 6442 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_aggregate_bool_exp_covar_samp_arguments": { + "X": [ + 6464 + ], + "Y": [ + 6464 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_aggregate_bool_exp_max": { + "arguments": [ + 6465 + ], + "distinct": [ + 6 + ], + "filter": [ + 6442 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_aggregate_bool_exp_min": { + "arguments": [ + 6466 + ], + "distinct": [ + 6 + ], + "filter": [ + 6442 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_aggregate_bool_exp_stddev_samp": { + "arguments": [ + 6467 + ], + "distinct": [ + 6 + ], + "filter": [ + 6442 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_aggregate_bool_exp_sum": { + "arguments": [ + 6468 + ], + "distinct": [ + 6 + ], + "filter": [ + 6442 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_aggregate_bool_exp_var_samp": { + "arguments": [ + 6469 + ], + "distinct": [ + 6 + ], + "filter": [ + 6442 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_aggregate_fields": { + "avg": [ + 6440 + ], + "count": [ + 41, + { + "columns": [ + 6459, + "[utility_lineups_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 6449 + ], + "min": [ + 6451 + ], + "stddev": [ + 6471 + ], + "stddev_pop": [ + 6473 + ], + "stddev_samp": [ + 6475 + ], + "sum": [ + 6479 + ], + "var_pop": [ + 6483 + ], + "var_samp": [ + 6485 + ], + "variance": [ + 6487 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_aggregate_order_by": { + "avg": [ + 6441 + ], + "count": [ + 3648 + ], + "max": [ + 6450 + ], + "min": [ + 6452 + ], + "stddev": [ + 6472 + ], + "stddev_pop": [ + 6474 + ], + "stddev_samp": [ + 6476 + ], + "sum": [ + 6480 + ], + "var_pop": [ + 6484 + ], + "var_samp": [ + 6486 + ], + "variance": [ + 6488 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_append_input": { + "trajectory_preview": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_arr_rel_insert_input": { + "data": [ + 6448 + ], + "on_conflict": [ + 6455 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_avg_fields": { + "aim_tolerance": [ + 32 + ], + "author_steam_id": [ + 32 + ], + "downvotes": [ + 32 + ], + "eye_z": [ + 32 + ], + "favorites": [ + 32 + ], + "flight_time_ms": [ + 32 + ], + "initial_pos_x": [ + 32 + ], + "initial_pos_y": [ + 32 + ], + "initial_pos_z": [ + 32 + ], + "initial_vel_x": [ + 32 + ], + "initial_vel_y": [ + 32 + ], + "initial_vel_z": [ + 32 + ], + "land_x": [ + 32 + ], + "land_y": [ + 32 + ], + "land_z": [ + 32 + ], + "my_vote": [ + 4830 + ], + "origin_x": [ + 32 + ], + "origin_y": [ + 32 + ], + "origin_z": [ + 32 + ], + "practice_attempts": [ + 32 + ], + "practice_players": [ + 32 + ], + "practice_successes": [ + 32 + ], + "preview_duration_ms": [ + 32 + ], + "public_reviewed_by": [ + 32 + ], + "source_grenade_id": [ + 32 + ], + "trajectory_size": [ + 32 + ], + "upvotes": [ + 32 + ], + "view_pitch": [ + 32 + ], + "view_pitch_delta": [ + 32 + ], + "view_yaw": [ + 32 + ], + "view_yaw_delta": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_avg_order_by": { + "aim_tolerance": [ + 3648 + ], + "author_steam_id": [ + 3648 + ], + "downvotes": [ + 3648 + ], + "eye_z": [ + 3648 + ], + "favorites": [ + 3648 + ], + "flight_time_ms": [ + 3648 + ], + "initial_pos_x": [ + 3648 + ], + "initial_pos_y": [ + 3648 + ], + "initial_pos_z": [ + 3648 + ], + "initial_vel_x": [ + 3648 + ], + "initial_vel_y": [ + 3648 + ], + "initial_vel_z": [ + 3648 + ], + "land_x": [ + 3648 + ], + "land_y": [ + 3648 + ], + "land_z": [ + 3648 + ], + "origin_x": [ + 3648 + ], + "origin_y": [ + 3648 + ], + "origin_z": [ + 3648 + ], + "practice_attempts": [ + 3648 + ], + "practice_players": [ + 3648 + ], + "practice_successes": [ + 3648 + ], + "preview_duration_ms": [ + 3648 + ], + "public_reviewed_by": [ + 3648 + ], + "source_grenade_id": [ + 3648 + ], + "trajectory_size": [ + 3648 + ], + "upvotes": [ + 3648 + ], + "view_pitch": [ + 3648 + ], + "view_pitch_delta": [ + 3648 + ], + "view_yaw": [ + 3648 + ], + "view_yaw_delta": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_bool_exp": { + "_and": [ + 6442 + ], + "_not": [ + 6442 + ], + "_or": [ + 6442 + ], + "aim_tolerance": [ + 2094 + ], + "archived_at": [ + 5244 + ], + "author": [ + 4610 + ], + "author_steam_id": [ + 314 + ], + "can_edit": [ + 7 + ], + "can_view": [ + 7 + ], + "collection_items": [ + 5969 + ], + "collection_items_aggregate": [ + 5962 + ], + "confidence": [ + 87 + ], + "created_at": [ + 5244 + ], + "description": [ + 87 + ], + "difficulty": [ + 87 + ], + "downvotes": [ + 42 + ], + "external_id": [ + 87 + ], + "eye_z": [ + 2094 + ], + "favorited_by": [ + 6179 + ], + "favorited_by_aggregate": [ + 6172 + ], + "favorites": [ + 42 + ], + "flight_time_ms": [ + 42 + ], + "forked_from": [ + 6442 + ], + "forked_from_utility_lineup_id": [ + 6674 + ], + "id": [ + 6674 + ], + "initial_pos_x": [ + 2094 + ], + "initial_pos_y": [ + 2094 + ], + "initial_pos_z": [ + 2094 + ], + "initial_vel_x": [ + 2094 + ], + "initial_vel_y": [ + 2094 + ], + "initial_vel_z": [ + 2094 + ], + "is_favorited": [ + 7 + ], + "jump_throw_bind": [ + 7 + ], + "land_x": [ + 2094 + ], + "land_y": [ + 2094 + ], + "land_z": [ + 2094 + ], + "lineup_bucket": [ + 87 + ], + "map_name": [ + 87 + ], + "my_vote": [ + 4831 + ], + "name": [ + 87 + ], + "origin_source": [ + 1700 + ], + "origin_x": [ + 2094 + ], + "origin_y": [ + 2094 + ], + "origin_z": [ + 2094 + ], + "practice_attempts": [ + 42 + ], + "practice_players": [ + 42 + ], + "practice_successes": [ + 42 + ], + "preview_duration_ms": [ + 42 + ], + "preview_file": [ + 87 + ], + "preview_rendered_at": [ + 5244 + ], + "preview_thumbnail": [ + 87 + ], + "preview_thumbnail_url": [ + 87 + ], + "preview_url": [ + 87 + ], + "progress": [ + 6230 + ], + "progress_aggregate": [ + 6213 + ], + "public_requested_at": [ + 5244 + ], + "public_review_note": [ + 87 + ], + "public_reviewed_at": [ + 5244 + ], + "public_reviewed_by": [ + 314 + ], + "renders": [ + 6282 + ], + "renders_aggregate": [ + 6272 + ], + "repairs": [ + 6339 + ], + "repairs_aggregate": [ + 6322 + ], + "side": [ + 1454 + ], + "source_grenade_id": [ + 42 + ], + "source_match": [ + 3443 + ], + "source_match_id": [ + 6674 + ], + "source_match_map": [ + 3257 + ], + "source_match_map_id": [ + 6674 + ], + "source_url": [ + 87 + ], + "tags": [ + 86 + ], + "team": [ + 5205 + ], + "team_id": [ + 6674 + ], + "technique": [ + 1720 + ], + "throw_strength": [ + 1740 + ], + "trajectory_file": [ + 87 + ], + "trajectory_preview": [ + 2441 + ], + "trajectory_size": [ + 42 + ], + "updated_at": [ + 5244 + ], + "upvotes": [ + 42 + ], + "utility_type": [ + 1760 + ], + "verified_at": [ + 5244 + ], + "view_pitch": [ + 2094 + ], + "view_pitch_delta": [ + 2094 + ], + "view_yaw": [ + 2094 + ], + "view_yaw_delta": [ + 2094 + ], + "visibility": [ + 1780 + ], + "votes": [ + 6388 + ], + "votes_aggregate": [ + 6381 + ], + "workshop_map_id": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_constraint": {}, + "utility_lineups_delete_at_path_input": { + "trajectory_preview": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_delete_elem_input": { + "trajectory_preview": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_delete_key_input": { + "trajectory_preview": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_inc_input": { + "aim_tolerance": [ + 2093 + ], + "author_steam_id": [ + 312 + ], + "downvotes": [ + 41 + ], + "eye_z": [ + 2093 + ], + "favorites": [ + 41 + ], + "flight_time_ms": [ + 41 + ], + "initial_pos_x": [ + 2093 + ], + "initial_pos_y": [ + 2093 + ], + "initial_pos_z": [ + 2093 + ], + "initial_vel_x": [ + 2093 + ], + "initial_vel_y": [ + 2093 + ], + "initial_vel_z": [ + 2093 + ], + "land_x": [ + 2093 + ], + "land_y": [ + 2093 + ], + "land_z": [ + 2093 + ], + "origin_x": [ + 2093 + ], + "origin_y": [ + 2093 + ], + "origin_z": [ + 2093 + ], + "practice_attempts": [ + 41 + ], + "practice_players": [ + 41 + ], + "practice_successes": [ + 41 + ], + "preview_duration_ms": [ + 41 + ], + "public_reviewed_by": [ + 312 + ], + "source_grenade_id": [ + 41 + ], + "trajectory_size": [ + 41 + ], + "upvotes": [ + 41 + ], + "view_pitch": [ + 2093 + ], + "view_pitch_delta": [ + 2093 + ], + "view_yaw": [ + 2093 + ], + "view_yaw_delta": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_insert_input": { + "aim_tolerance": [ + 2093 + ], + "archived_at": [ + 5243 + ], + "author": [ + 4617 + ], + "author_steam_id": [ + 312 + ], + "collection_items": [ + 5966 + ], + "confidence": [ + 85 + ], + "created_at": [ + 5243 + ], + "description": [ + 85 + ], + "downvotes": [ + 41 + ], + "external_id": [ + 85 + ], + "eye_z": [ + 2093 + ], + "favorited_by": [ + 6176 + ], + "favorites": [ + 41 + ], + "flight_time_ms": [ + 41 + ], + "forked_from": [ + 6454 + ], + "forked_from_utility_lineup_id": [ + 6672 + ], + "id": [ + 6672 + ], + "initial_pos_x": [ + 2093 + ], + "initial_pos_y": [ + 2093 + ], + "initial_pos_z": [ + 2093 + ], + "initial_vel_x": [ + 2093 + ], + "initial_vel_y": [ + 2093 + ], + "initial_vel_z": [ + 2093 + ], + "jump_throw_bind": [ + 6 + ], + "land_x": [ + 2093 + ], + "land_y": [ + 2093 + ], + "land_z": [ + 2093 + ], + "map_name": [ + 85 + ], + "name": [ + 85 + ], + "origin_source": [ + 1699 + ], + "origin_x": [ + 2093 + ], + "origin_y": [ + 2093 + ], + "origin_z": [ + 2093 + ], + "practice_attempts": [ + 41 + ], + "practice_players": [ + 41 + ], + "practice_successes": [ + 41 + ], + "preview_duration_ms": [ + 41 + ], + "preview_file": [ + 85 + ], + "preview_rendered_at": [ + 5243 + ], + "preview_thumbnail": [ + 85 + ], + "progress": [ + 6227 + ], + "public_requested_at": [ + 5243 + ], + "public_review_note": [ + 85 + ], + "public_reviewed_at": [ + 5243 + ], + "public_reviewed_by": [ + 312 + ], + "renders": [ + 6279 + ], + "repairs": [ + 6336 + ], + "side": [ + 1453 + ], + "source_grenade_id": [ + 41 + ], + "source_match": [ + 3452 + ], + "source_match_id": [ + 6672 + ], + "source_match_map": [ + 3266 + ], + "source_match_map_id": [ + 6672 + ], + "source_url": [ + 85 + ], + "tags": [ + 85 + ], + "team": [ + 5214 + ], + "team_id": [ + 6672 + ], + "technique": [ + 1719 + ], + "throw_strength": [ + 1739 + ], + "trajectory_file": [ + 85 + ], + "trajectory_preview": [ + 2439 + ], + "trajectory_size": [ + 41 + ], + "updated_at": [ + 5243 + ], + "upvotes": [ + 41 + ], + "utility_type": [ + 1759 + ], + "verified_at": [ + 5243 + ], + "view_pitch": [ + 2093 + ], + "view_pitch_delta": [ + 2093 + ], + "view_yaw": [ + 2093 + ], + "view_yaw_delta": [ + 2093 + ], + "visibility": [ + 1779 + ], + "votes": [ + 6385 + ], + "workshop_map_id": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_max_fields": { + "aim_tolerance": [ + 2093 + ], + "archived_at": [ + 5243 + ], + "author_steam_id": [ + 312 + ], + "confidence": [ + 85 + ], + "created_at": [ + 5243 + ], + "description": [ + 85 + ], + "difficulty": [ + 85 + ], + "downvotes": [ + 41 + ], + "external_id": [ + 85 + ], + "eye_z": [ + 2093 + ], + "favorites": [ + 41 + ], + "flight_time_ms": [ + 41 + ], + "forked_from_utility_lineup_id": [ + 6672 + ], + "id": [ + 6672 + ], + "initial_pos_x": [ + 2093 + ], + "initial_pos_y": [ + 2093 + ], + "initial_pos_z": [ + 2093 + ], + "initial_vel_x": [ + 2093 + ], + "initial_vel_y": [ + 2093 + ], + "initial_vel_z": [ + 2093 + ], + "land_x": [ + 2093 + ], + "land_y": [ + 2093 + ], + "land_z": [ + 2093 + ], + "lineup_bucket": [ + 85 + ], + "map_name": [ + 85 + ], + "my_vote": [ + 4830 + ], + "name": [ + 85 + ], + "origin_x": [ + 2093 + ], + "origin_y": [ + 2093 + ], + "origin_z": [ + 2093 + ], + "practice_attempts": [ + 41 + ], + "practice_players": [ + 41 + ], + "practice_successes": [ + 41 + ], + "preview_duration_ms": [ + 41 + ], + "preview_file": [ + 85 + ], + "preview_rendered_at": [ + 5243 + ], + "preview_thumbnail": [ + 85 + ], + "preview_thumbnail_url": [ + 85 + ], + "preview_url": [ + 85 + ], + "public_requested_at": [ + 5243 + ], + "public_review_note": [ + 85 + ], + "public_reviewed_at": [ + 5243 + ], + "public_reviewed_by": [ + 312 + ], + "source_grenade_id": [ + 41 + ], + "source_match_id": [ + 6672 + ], + "source_match_map_id": [ + 6672 + ], + "source_url": [ + 85 + ], + "tags": [ + 85 + ], + "team_id": [ + 6672 + ], + "trajectory_file": [ + 85 + ], + "trajectory_size": [ + 41 + ], + "updated_at": [ + 5243 + ], + "upvotes": [ + 41 + ], + "verified_at": [ + 5243 + ], + "view_pitch": [ + 2093 + ], + "view_pitch_delta": [ + 2093 + ], + "view_yaw": [ + 2093 + ], + "view_yaw_delta": [ + 2093 + ], + "workshop_map_id": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_max_order_by": { + "aim_tolerance": [ + 3648 + ], + "archived_at": [ + 3648 + ], + "author_steam_id": [ + 3648 + ], + "confidence": [ + 3648 + ], + "created_at": [ + 3648 + ], + "description": [ + 3648 + ], + "downvotes": [ + 3648 + ], + "external_id": [ + 3648 + ], + "eye_z": [ + 3648 + ], + "favorites": [ + 3648 + ], + "flight_time_ms": [ + 3648 + ], + "forked_from_utility_lineup_id": [ + 3648 + ], + "id": [ + 3648 + ], + "initial_pos_x": [ + 3648 + ], + "initial_pos_y": [ + 3648 + ], + "initial_pos_z": [ + 3648 + ], + "initial_vel_x": [ + 3648 + ], + "initial_vel_y": [ + 3648 + ], + "initial_vel_z": [ + 3648 + ], + "land_x": [ + 3648 + ], + "land_y": [ + 3648 + ], + "land_z": [ + 3648 + ], + "lineup_bucket": [ + 3648 + ], + "map_name": [ + 3648 + ], + "name": [ + 3648 + ], + "origin_x": [ + 3648 + ], + "origin_y": [ + 3648 + ], + "origin_z": [ + 3648 + ], + "practice_attempts": [ + 3648 + ], + "practice_players": [ + 3648 + ], + "practice_successes": [ + 3648 + ], + "preview_duration_ms": [ + 3648 + ], + "preview_file": [ + 3648 + ], + "preview_rendered_at": [ + 3648 + ], + "preview_thumbnail": [ + 3648 + ], + "public_requested_at": [ + 3648 + ], + "public_review_note": [ + 3648 + ], + "public_reviewed_at": [ + 3648 + ], + "public_reviewed_by": [ + 3648 + ], + "source_grenade_id": [ + 3648 + ], + "source_match_id": [ + 3648 + ], + "source_match_map_id": [ + 3648 + ], + "source_url": [ + 3648 + ], + "tags": [ + 3648 + ], + "team_id": [ + 3648 + ], + "trajectory_file": [ + 3648 + ], + "trajectory_size": [ + 3648 + ], + "updated_at": [ + 3648 + ], + "upvotes": [ + 3648 + ], + "verified_at": [ + 3648 + ], + "view_pitch": [ + 3648 + ], + "view_pitch_delta": [ + 3648 + ], + "view_yaw": [ + 3648 + ], + "view_yaw_delta": [ + 3648 + ], + "workshop_map_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_min_fields": { + "aim_tolerance": [ + 2093 + ], + "archived_at": [ + 5243 + ], + "author_steam_id": [ + 312 + ], + "confidence": [ + 85 + ], + "created_at": [ + 5243 + ], + "description": [ + 85 + ], + "difficulty": [ + 85 + ], + "downvotes": [ + 41 + ], + "external_id": [ + 85 + ], + "eye_z": [ + 2093 + ], + "favorites": [ + 41 + ], + "flight_time_ms": [ + 41 + ], + "forked_from_utility_lineup_id": [ + 6672 + ], + "id": [ + 6672 + ], + "initial_pos_x": [ + 2093 + ], + "initial_pos_y": [ + 2093 + ], + "initial_pos_z": [ + 2093 + ], + "initial_vel_x": [ + 2093 + ], + "initial_vel_y": [ + 2093 + ], + "initial_vel_z": [ + 2093 + ], + "land_x": [ + 2093 + ], + "land_y": [ + 2093 + ], + "land_z": [ + 2093 + ], + "lineup_bucket": [ + 85 + ], + "map_name": [ + 85 + ], + "my_vote": [ + 4830 + ], + "name": [ + 85 + ], + "origin_x": [ + 2093 + ], + "origin_y": [ + 2093 + ], + "origin_z": [ + 2093 + ], + "practice_attempts": [ + 41 + ], + "practice_players": [ + 41 + ], + "practice_successes": [ + 41 + ], + "preview_duration_ms": [ + 41 + ], + "preview_file": [ + 85 + ], + "preview_rendered_at": [ + 5243 + ], + "preview_thumbnail": [ + 85 + ], + "preview_thumbnail_url": [ + 85 + ], + "preview_url": [ + 85 + ], + "public_requested_at": [ + 5243 + ], + "public_review_note": [ + 85 + ], + "public_reviewed_at": [ + 5243 + ], + "public_reviewed_by": [ + 312 + ], + "source_grenade_id": [ + 41 + ], + "source_match_id": [ + 6672 + ], + "source_match_map_id": [ + 6672 + ], + "source_url": [ + 85 + ], + "tags": [ + 85 + ], + "team_id": [ + 6672 + ], + "trajectory_file": [ + 85 + ], + "trajectory_size": [ + 41 + ], + "updated_at": [ + 5243 + ], + "upvotes": [ + 41 + ], + "verified_at": [ + 5243 + ], + "view_pitch": [ + 2093 + ], + "view_pitch_delta": [ + 2093 + ], + "view_yaw": [ + 2093 + ], + "view_yaw_delta": [ + 2093 + ], + "workshop_map_id": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_min_order_by": { + "aim_tolerance": [ + 3648 + ], + "archived_at": [ + 3648 + ], + "author_steam_id": [ + 3648 + ], + "confidence": [ + 3648 + ], + "created_at": [ + 3648 + ], + "description": [ + 3648 + ], + "downvotes": [ + 3648 + ], + "external_id": [ + 3648 + ], + "eye_z": [ + 3648 + ], + "favorites": [ + 3648 + ], + "flight_time_ms": [ + 3648 + ], + "forked_from_utility_lineup_id": [ + 3648 + ], + "id": [ + 3648 + ], + "initial_pos_x": [ + 3648 + ], + "initial_pos_y": [ + 3648 + ], + "initial_pos_z": [ + 3648 + ], + "initial_vel_x": [ + 3648 + ], + "initial_vel_y": [ + 3648 + ], + "initial_vel_z": [ + 3648 + ], + "land_x": [ + 3648 + ], + "land_y": [ + 3648 + ], + "land_z": [ + 3648 + ], + "lineup_bucket": [ + 3648 + ], + "map_name": [ + 3648 + ], + "name": [ + 3648 + ], + "origin_x": [ + 3648 + ], + "origin_y": [ + 3648 + ], + "origin_z": [ + 3648 + ], + "practice_attempts": [ + 3648 + ], + "practice_players": [ + 3648 + ], + "practice_successes": [ + 3648 + ], + "preview_duration_ms": [ + 3648 + ], + "preview_file": [ + 3648 + ], + "preview_rendered_at": [ + 3648 + ], + "preview_thumbnail": [ + 3648 + ], + "public_requested_at": [ + 3648 + ], + "public_review_note": [ + 3648 + ], + "public_reviewed_at": [ + 3648 + ], + "public_reviewed_by": [ + 3648 + ], + "source_grenade_id": [ + 3648 + ], + "source_match_id": [ + 3648 + ], + "source_match_map_id": [ + 3648 + ], + "source_url": [ + 3648 + ], + "tags": [ + 3648 + ], + "team_id": [ + 3648 + ], + "trajectory_file": [ + 3648 + ], + "trajectory_size": [ + 3648 + ], + "updated_at": [ + 3648 + ], + "upvotes": [ + 3648 + ], + "verified_at": [ + 3648 + ], + "view_pitch": [ + 3648 + ], + "view_pitch_delta": [ + 3648 + ], + "view_yaw": [ + 3648 + ], + "view_yaw_delta": [ + 3648 + ], + "workshop_map_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 6420 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_obj_rel_insert_input": { + "data": [ + 6448 + ], + "on_conflict": [ + 6455 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_on_conflict": { + "constraint": [ + 6443 + ], + "update_columns": [ + 6481 + ], + "where": [ + 6442 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_order_by": { + "aim_tolerance": [ + 3648 + ], + "archived_at": [ + 3648 + ], + "author": [ + 4619 + ], + "author_steam_id": [ + 3648 + ], + "can_edit": [ + 3648 + ], + "can_view": [ + 3648 + ], + "collection_items_aggregate": [ + 5965 + ], + "confidence": [ + 3648 + ], + "created_at": [ + 3648 + ], + "description": [ + 3648 + ], + "difficulty": [ + 3648 + ], + "downvotes": [ + 3648 + ], + "external_id": [ + 3648 + ], + "eye_z": [ + 3648 + ], + "favorited_by_aggregate": [ + 6175 + ], + "favorites": [ + 3648 + ], + "flight_time_ms": [ + 3648 + ], + "forked_from": [ + 6456 + ], + "forked_from_utility_lineup_id": [ + 3648 + ], + "id": [ + 3648 + ], + "initial_pos_x": [ + 3648 + ], + "initial_pos_y": [ + 3648 + ], + "initial_pos_z": [ + 3648 + ], + "initial_vel_x": [ + 3648 + ], + "initial_vel_y": [ + 3648 + ], + "initial_vel_z": [ + 3648 + ], + "is_favorited": [ + 3648 + ], + "jump_throw_bind": [ + 3648 + ], + "land_x": [ + 3648 + ], + "land_y": [ + 3648 + ], + "land_z": [ + 3648 + ], + "lineup_bucket": [ + 3648 + ], + "map_name": [ + 3648 + ], + "my_vote": [ + 3648 + ], + "name": [ + 3648 + ], + "origin_source": [ + 3648 + ], + "origin_x": [ + 3648 + ], + "origin_y": [ + 3648 + ], + "origin_z": [ + 3648 + ], + "practice_attempts": [ + 3648 + ], + "practice_players": [ + 3648 + ], + "practice_successes": [ + 3648 + ], + "preview_duration_ms": [ + 3648 + ], + "preview_file": [ + 3648 + ], + "preview_rendered_at": [ + 3648 + ], + "preview_thumbnail": [ + 3648 + ], + "preview_thumbnail_url": [ + 3648 + ], + "preview_url": [ + 3648 + ], + "progress_aggregate": [ + 6226 + ], + "public_requested_at": [ + 3648 + ], + "public_review_note": [ + 3648 + ], + "public_reviewed_at": [ + 3648 + ], + "public_reviewed_by": [ + 3648 + ], + "renders_aggregate": [ + 6277 + ], + "repairs_aggregate": [ + 6335 + ], + "side": [ + 3648 + ], + "source_grenade_id": [ + 3648 + ], + "source_match": [ + 3454 + ], + "source_match_id": [ + 3648 + ], + "source_match_map": [ + 3268 + ], + "source_match_map_id": [ + 3648 + ], + "source_url": [ + 3648 + ], + "tags": [ + 3648 + ], + "team": [ + 5216 + ], + "team_id": [ + 3648 + ], + "technique": [ + 3648 + ], + "throw_strength": [ + 3648 + ], + "trajectory_file": [ + 3648 + ], + "trajectory_preview": [ + 3648 + ], + "trajectory_size": [ + 3648 + ], + "updated_at": [ + 3648 + ], + "upvotes": [ + 3648 + ], + "utility_type": [ + 3648 + ], + "verified_at": [ + 3648 + ], + "view_pitch": [ + 3648 + ], + "view_pitch_delta": [ + 3648 + ], + "view_yaw": [ + 3648 + ], + "view_yaw_delta": [ + 3648 + ], + "visibility": [ + 3648 + ], + "votes_aggregate": [ + 6384 + ], + "workshop_map_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_prepend_input": { + "trajectory_preview": [ + 2439 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_select_column": {}, + "utility_lineups_select_column_utility_lineups_aggregate_bool_exp_avg_arguments_columns": {}, + "utility_lineups_select_column_utility_lineups_aggregate_bool_exp_bool_and_arguments_columns": {}, + "utility_lineups_select_column_utility_lineups_aggregate_bool_exp_bool_or_arguments_columns": {}, + "utility_lineups_select_column_utility_lineups_aggregate_bool_exp_corr_arguments_columns": {}, + "utility_lineups_select_column_utility_lineups_aggregate_bool_exp_covar_samp_arguments_columns": {}, + "utility_lineups_select_column_utility_lineups_aggregate_bool_exp_max_arguments_columns": {}, + "utility_lineups_select_column_utility_lineups_aggregate_bool_exp_min_arguments_columns": {}, + "utility_lineups_select_column_utility_lineups_aggregate_bool_exp_stddev_samp_arguments_columns": {}, + "utility_lineups_select_column_utility_lineups_aggregate_bool_exp_sum_arguments_columns": {}, + "utility_lineups_select_column_utility_lineups_aggregate_bool_exp_var_samp_arguments_columns": {}, + "utility_lineups_set_input": { + "aim_tolerance": [ + 2093 + ], + "archived_at": [ + 5243 + ], + "author_steam_id": [ + 312 + ], + "confidence": [ + 85 + ], + "created_at": [ + 5243 + ], + "description": [ + 85 + ], + "downvotes": [ + 41 + ], + "external_id": [ + 85 + ], + "eye_z": [ + 2093 + ], + "favorites": [ + 41 + ], + "flight_time_ms": [ + 41 + ], + "forked_from_utility_lineup_id": [ + 6672 + ], + "id": [ + 6672 + ], + "initial_pos_x": [ + 2093 + ], + "initial_pos_y": [ + 2093 + ], + "initial_pos_z": [ + 2093 + ], + "initial_vel_x": [ + 2093 + ], + "initial_vel_y": [ + 2093 + ], + "initial_vel_z": [ + 2093 + ], + "jump_throw_bind": [ + 6 + ], + "land_x": [ + 2093 + ], + "land_y": [ + 2093 + ], + "land_z": [ + 2093 + ], + "map_name": [ + 85 + ], + "name": [ + 85 + ], + "origin_source": [ + 1699 + ], + "origin_x": [ + 2093 + ], + "origin_y": [ + 2093 + ], + "origin_z": [ + 2093 + ], + "practice_attempts": [ + 41 + ], + "practice_players": [ + 41 + ], + "practice_successes": [ + 41 + ], + "preview_duration_ms": [ + 41 + ], + "preview_file": [ + 85 + ], + "preview_rendered_at": [ + 5243 + ], + "preview_thumbnail": [ + 85 + ], + "public_requested_at": [ + 5243 + ], + "public_review_note": [ + 85 + ], + "public_reviewed_at": [ + 5243 + ], + "public_reviewed_by": [ + 312 + ], + "side": [ + 1453 + ], + "source_grenade_id": [ + 41 + ], + "source_match_id": [ + 6672 + ], + "source_match_map_id": [ + 6672 + ], + "source_url": [ + 85 + ], + "tags": [ + 85 + ], + "team_id": [ + 6672 + ], + "technique": [ + 1719 + ], + "throw_strength": [ + 1739 + ], + "trajectory_file": [ + 85 + ], + "trajectory_preview": [ + 2439 + ], + "trajectory_size": [ + 41 + ], + "updated_at": [ + 5243 + ], + "upvotes": [ + 41 + ], + "utility_type": [ + 1759 + ], + "verified_at": [ + 5243 + ], + "view_pitch": [ + 2093 + ], + "view_pitch_delta": [ + 2093 + ], + "view_yaw": [ + 2093 + ], + "view_yaw_delta": [ + 2093 + ], + "visibility": [ + 1779 + ], + "workshop_map_id": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_stddev_fields": { + "aim_tolerance": [ + 32 + ], + "author_steam_id": [ + 32 + ], + "downvotes": [ + 32 + ], + "eye_z": [ + 32 + ], + "favorites": [ + 32 + ], + "flight_time_ms": [ + 32 + ], + "initial_pos_x": [ + 32 + ], + "initial_pos_y": [ + 32 + ], + "initial_pos_z": [ + 32 + ], + "initial_vel_x": [ + 32 + ], + "initial_vel_y": [ + 32 + ], + "initial_vel_z": [ + 32 + ], + "land_x": [ + 32 + ], + "land_y": [ + 32 + ], + "land_z": [ + 32 + ], + "my_vote": [ + 4830 + ], + "origin_x": [ + 32 + ], + "origin_y": [ + 32 + ], + "origin_z": [ + 32 + ], + "practice_attempts": [ + 32 + ], + "practice_players": [ + 32 + ], + "practice_successes": [ + 32 + ], + "preview_duration_ms": [ + 32 + ], + "public_reviewed_by": [ + 32 + ], + "source_grenade_id": [ + 32 + ], + "trajectory_size": [ + 32 + ], + "upvotes": [ + 32 + ], + "view_pitch": [ + 32 + ], + "view_pitch_delta": [ + 32 + ], + "view_yaw": [ + 32 + ], + "view_yaw_delta": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_stddev_order_by": { + "aim_tolerance": [ + 3648 + ], + "author_steam_id": [ + 3648 + ], + "downvotes": [ + 3648 + ], + "eye_z": [ + 3648 + ], + "favorites": [ + 3648 + ], + "flight_time_ms": [ + 3648 + ], + "initial_pos_x": [ + 3648 + ], + "initial_pos_y": [ + 3648 + ], + "initial_pos_z": [ + 3648 + ], + "initial_vel_x": [ + 3648 + ], + "initial_vel_y": [ + 3648 + ], + "initial_vel_z": [ + 3648 + ], + "land_x": [ + 3648 + ], + "land_y": [ + 3648 + ], + "land_z": [ + 3648 + ], + "origin_x": [ + 3648 + ], + "origin_y": [ + 3648 + ], + "origin_z": [ + 3648 + ], + "practice_attempts": [ + 3648 + ], + "practice_players": [ + 3648 + ], + "practice_successes": [ + 3648 + ], + "preview_duration_ms": [ + 3648 + ], + "public_reviewed_by": [ + 3648 + ], + "source_grenade_id": [ + 3648 + ], + "trajectory_size": [ + 3648 + ], + "upvotes": [ + 3648 + ], + "view_pitch": [ + 3648 + ], + "view_pitch_delta": [ + 3648 + ], + "view_yaw": [ + 3648 + ], + "view_yaw_delta": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_stddev_pop_fields": { + "aim_tolerance": [ + 32 + ], + "author_steam_id": [ + 32 + ], + "downvotes": [ + 32 + ], + "eye_z": [ + 32 + ], + "favorites": [ + 32 + ], + "flight_time_ms": [ + 32 + ], + "initial_pos_x": [ + 32 + ], + "initial_pos_y": [ + 32 + ], + "initial_pos_z": [ + 32 + ], + "initial_vel_x": [ + 32 + ], + "initial_vel_y": [ + 32 + ], + "initial_vel_z": [ + 32 + ], + "land_x": [ + 32 + ], + "land_y": [ + 32 + ], + "land_z": [ + 32 + ], + "my_vote": [ + 4830 + ], + "origin_x": [ + 32 + ], + "origin_y": [ + 32 + ], + "origin_z": [ + 32 + ], + "practice_attempts": [ + 32 + ], + "practice_players": [ + 32 + ], + "practice_successes": [ + 32 + ], + "preview_duration_ms": [ + 32 + ], + "public_reviewed_by": [ + 32 + ], + "source_grenade_id": [ + 32 + ], + "trajectory_size": [ + 32 + ], + "upvotes": [ + 32 + ], + "view_pitch": [ + 32 + ], + "view_pitch_delta": [ + 32 + ], + "view_yaw": [ + 32 + ], + "view_yaw_delta": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_stddev_pop_order_by": { + "aim_tolerance": [ + 3648 + ], + "author_steam_id": [ + 3648 + ], + "downvotes": [ + 3648 + ], + "eye_z": [ + 3648 + ], + "favorites": [ + 3648 + ], + "flight_time_ms": [ + 3648 + ], + "initial_pos_x": [ + 3648 + ], + "initial_pos_y": [ + 3648 + ], + "initial_pos_z": [ + 3648 + ], + "initial_vel_x": [ + 3648 + ], + "initial_vel_y": [ + 3648 + ], + "initial_vel_z": [ + 3648 + ], + "land_x": [ + 3648 + ], + "land_y": [ + 3648 + ], + "land_z": [ + 3648 + ], + "origin_x": [ + 3648 + ], + "origin_y": [ + 3648 + ], + "origin_z": [ + 3648 + ], + "practice_attempts": [ + 3648 + ], + "practice_players": [ + 3648 + ], + "practice_successes": [ + 3648 + ], + "preview_duration_ms": [ + 3648 + ], + "public_reviewed_by": [ + 3648 + ], + "source_grenade_id": [ + 3648 + ], + "trajectory_size": [ + 3648 + ], + "upvotes": [ + 3648 + ], + "view_pitch": [ + 3648 + ], + "view_pitch_delta": [ + 3648 + ], + "view_yaw": [ + 3648 + ], + "view_yaw_delta": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_stddev_samp_fields": { + "aim_tolerance": [ + 32 + ], + "author_steam_id": [ + 32 + ], + "downvotes": [ + 32 + ], + "eye_z": [ + 32 + ], + "favorites": [ + 32 + ], + "flight_time_ms": [ + 32 + ], + "initial_pos_x": [ + 32 + ], + "initial_pos_y": [ + 32 + ], + "initial_pos_z": [ + 32 + ], + "initial_vel_x": [ + 32 + ], + "initial_vel_y": [ + 32 + ], + "initial_vel_z": [ + 32 + ], + "land_x": [ + 32 + ], + "land_y": [ + 32 + ], + "land_z": [ + 32 + ], + "my_vote": [ + 4830 + ], + "origin_x": [ + 32 + ], + "origin_y": [ + 32 + ], + "origin_z": [ + 32 + ], + "practice_attempts": [ + 32 + ], + "practice_players": [ + 32 + ], + "practice_successes": [ + 32 + ], + "preview_duration_ms": [ + 32 + ], + "public_reviewed_by": [ + 32 + ], + "source_grenade_id": [ + 32 + ], + "trajectory_size": [ + 32 + ], + "upvotes": [ + 32 + ], + "view_pitch": [ + 32 + ], + "view_pitch_delta": [ + 32 + ], + "view_yaw": [ + 32 + ], + "view_yaw_delta": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_stddev_samp_order_by": { + "aim_tolerance": [ + 3648 + ], + "author_steam_id": [ + 3648 + ], + "downvotes": [ + 3648 + ], + "eye_z": [ + 3648 + ], + "favorites": [ + 3648 + ], + "flight_time_ms": [ + 3648 + ], + "initial_pos_x": [ + 3648 + ], + "initial_pos_y": [ + 3648 + ], + "initial_pos_z": [ + 3648 + ], + "initial_vel_x": [ + 3648 + ], + "initial_vel_y": [ + 3648 + ], + "initial_vel_z": [ + 3648 + ], + "land_x": [ + 3648 + ], + "land_y": [ + 3648 + ], + "land_z": [ + 3648 + ], + "origin_x": [ + 3648 + ], + "origin_y": [ + 3648 + ], + "origin_z": [ + 3648 + ], + "practice_attempts": [ + 3648 + ], + "practice_players": [ + 3648 + ], + "practice_successes": [ + 3648 + ], + "preview_duration_ms": [ + 3648 + ], + "public_reviewed_by": [ + 3648 + ], + "source_grenade_id": [ + 3648 + ], + "trajectory_size": [ + 3648 + ], + "upvotes": [ + 3648 + ], + "view_pitch": [ + 3648 + ], + "view_pitch_delta": [ + 3648 + ], + "view_yaw": [ + 3648 + ], + "view_yaw_delta": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_stream_cursor_input": { + "initial_value": [ + 6478 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_stream_cursor_value_input": { + "aim_tolerance": [ + 2093 + ], + "archived_at": [ + 5243 + ], + "author_steam_id": [ + 312 + ], + "confidence": [ + 85 + ], + "created_at": [ + 5243 + ], + "description": [ + 85 + ], + "downvotes": [ + 41 + ], + "external_id": [ + 85 + ], + "eye_z": [ + 2093 + ], + "favorites": [ + 41 + ], + "flight_time_ms": [ + 41 + ], + "forked_from_utility_lineup_id": [ + 6672 + ], + "id": [ + 6672 + ], + "initial_pos_x": [ + 2093 + ], + "initial_pos_y": [ + 2093 + ], + "initial_pos_z": [ + 2093 + ], + "initial_vel_x": [ + 2093 + ], + "initial_vel_y": [ + 2093 + ], + "initial_vel_z": [ + 2093 + ], + "jump_throw_bind": [ + 6 + ], + "land_x": [ + 2093 + ], + "land_y": [ + 2093 + ], + "land_z": [ + 2093 + ], + "lineup_bucket": [ + 85 + ], + "map_name": [ + 85 + ], + "name": [ + 85 + ], + "origin_source": [ + 1699 + ], + "origin_x": [ + 2093 + ], + "origin_y": [ + 2093 + ], + "origin_z": [ + 2093 + ], + "practice_attempts": [ + 41 + ], + "practice_players": [ + 41 + ], + "practice_successes": [ + 41 + ], + "preview_duration_ms": [ + 41 + ], + "preview_file": [ + 85 + ], + "preview_rendered_at": [ + 5243 + ], + "preview_thumbnail": [ + 85 + ], + "public_requested_at": [ + 5243 + ], + "public_review_note": [ + 85 + ], + "public_reviewed_at": [ + 5243 + ], + "public_reviewed_by": [ + 312 + ], + "side": [ + 1453 + ], + "source_grenade_id": [ + 41 + ], + "source_match_id": [ + 6672 + ], + "source_match_map_id": [ + 6672 + ], + "source_url": [ + 85 + ], + "tags": [ + 85 + ], + "team_id": [ + 6672 + ], + "technique": [ + 1719 + ], + "throw_strength": [ + 1739 + ], + "trajectory_file": [ + 85 + ], + "trajectory_preview": [ + 2439 + ], + "trajectory_size": [ + 41 + ], + "updated_at": [ + 5243 + ], + "upvotes": [ + 41 + ], + "utility_type": [ + 1759 + ], + "verified_at": [ + 5243 + ], + "view_pitch": [ + 2093 + ], + "view_pitch_delta": [ + 2093 + ], + "view_yaw": [ + 2093 + ], + "view_yaw_delta": [ + 2093 + ], + "visibility": [ + 1779 + ], + "workshop_map_id": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_sum_fields": { + "aim_tolerance": [ + 2093 + ], + "author_steam_id": [ + 312 + ], + "downvotes": [ + 41 + ], + "eye_z": [ + 2093 + ], + "favorites": [ + 41 + ], + "flight_time_ms": [ + 41 + ], + "initial_pos_x": [ + 2093 + ], + "initial_pos_y": [ + 2093 + ], + "initial_pos_z": [ + 2093 + ], + "initial_vel_x": [ + 2093 + ], + "initial_vel_y": [ + 2093 + ], + "initial_vel_z": [ + 2093 + ], + "land_x": [ + 2093 + ], + "land_y": [ + 2093 + ], + "land_z": [ + 2093 + ], + "my_vote": [ + 4830 + ], + "origin_x": [ + 2093 + ], + "origin_y": [ + 2093 + ], + "origin_z": [ + 2093 + ], + "practice_attempts": [ + 41 + ], + "practice_players": [ + 41 + ], + "practice_successes": [ + 41 + ], + "preview_duration_ms": [ + 41 + ], + "public_reviewed_by": [ + 312 + ], + "source_grenade_id": [ + 41 + ], + "trajectory_size": [ + 41 + ], + "upvotes": [ + 41 + ], + "view_pitch": [ + 2093 + ], + "view_pitch_delta": [ + 2093 + ], + "view_yaw": [ + 2093 + ], + "view_yaw_delta": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_sum_order_by": { + "aim_tolerance": [ + 3648 + ], + "author_steam_id": [ + 3648 + ], + "downvotes": [ + 3648 + ], + "eye_z": [ + 3648 + ], + "favorites": [ + 3648 + ], + "flight_time_ms": [ + 3648 + ], + "initial_pos_x": [ + 3648 + ], + "initial_pos_y": [ + 3648 + ], + "initial_pos_z": [ + 3648 + ], + "initial_vel_x": [ + 3648 + ], + "initial_vel_y": [ + 3648 + ], + "initial_vel_z": [ + 3648 + ], + "land_x": [ + 3648 + ], + "land_y": [ + 3648 + ], + "land_z": [ + 3648 + ], + "origin_x": [ + 3648 + ], + "origin_y": [ + 3648 + ], + "origin_z": [ + 3648 + ], + "practice_attempts": [ + 3648 + ], + "practice_players": [ + 3648 + ], + "practice_successes": [ + 3648 + ], + "preview_duration_ms": [ + 3648 + ], + "public_reviewed_by": [ + 3648 + ], + "source_grenade_id": [ + 3648 + ], + "trajectory_size": [ + 3648 + ], + "upvotes": [ + 3648 + ], + "view_pitch": [ + 3648 + ], + "view_pitch_delta": [ + 3648 + ], + "view_yaw": [ + 3648 + ], + "view_yaw_delta": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_update_column": {}, + "utility_lineups_updates": { + "_append": [ + 6438 + ], + "_delete_at_path": [ + 6444 + ], + "_delete_elem": [ + 6445 + ], + "_delete_key": [ + 6446 + ], + "_inc": [ + 6447 + ], + "_prepend": [ + 6458 + ], + "_set": [ + 6470 + ], + "where": [ + 6442 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_var_pop_fields": { + "aim_tolerance": [ + 32 + ], + "author_steam_id": [ + 32 + ], + "downvotes": [ + 32 + ], + "eye_z": [ + 32 + ], + "favorites": [ + 32 + ], + "flight_time_ms": [ + 32 + ], + "initial_pos_x": [ + 32 + ], + "initial_pos_y": [ + 32 + ], + "initial_pos_z": [ + 32 + ], + "initial_vel_x": [ + 32 + ], + "initial_vel_y": [ + 32 + ], + "initial_vel_z": [ + 32 + ], + "land_x": [ + 32 + ], + "land_y": [ + 32 + ], + "land_z": [ + 32 + ], + "my_vote": [ + 4830 + ], + "origin_x": [ + 32 + ], + "origin_y": [ + 32 + ], + "origin_z": [ + 32 + ], + "practice_attempts": [ + 32 + ], + "practice_players": [ + 32 + ], + "practice_successes": [ + 32 + ], + "preview_duration_ms": [ + 32 + ], + "public_reviewed_by": [ + 32 + ], + "source_grenade_id": [ + 32 + ], + "trajectory_size": [ + 32 + ], + "upvotes": [ + 32 + ], + "view_pitch": [ + 32 + ], + "view_pitch_delta": [ + 32 + ], + "view_yaw": [ + 32 + ], + "view_yaw_delta": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_var_pop_order_by": { + "aim_tolerance": [ + 3648 + ], + "author_steam_id": [ + 3648 + ], + "downvotes": [ + 3648 + ], + "eye_z": [ + 3648 + ], + "favorites": [ + 3648 + ], + "flight_time_ms": [ + 3648 + ], + "initial_pos_x": [ + 3648 + ], + "initial_pos_y": [ + 3648 + ], + "initial_pos_z": [ + 3648 + ], + "initial_vel_x": [ + 3648 + ], + "initial_vel_y": [ + 3648 + ], + "initial_vel_z": [ + 3648 + ], + "land_x": [ + 3648 + ], + "land_y": [ + 3648 + ], + "land_z": [ + 3648 + ], + "origin_x": [ + 3648 + ], + "origin_y": [ + 3648 + ], + "origin_z": [ + 3648 + ], + "practice_attempts": [ + 3648 + ], + "practice_players": [ + 3648 + ], + "practice_successes": [ + 3648 + ], + "preview_duration_ms": [ + 3648 + ], + "public_reviewed_by": [ + 3648 + ], + "source_grenade_id": [ + 3648 + ], + "trajectory_size": [ + 3648 + ], + "upvotes": [ + 3648 + ], + "view_pitch": [ + 3648 + ], + "view_pitch_delta": [ + 3648 + ], + "view_yaw": [ + 3648 + ], + "view_yaw_delta": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_var_samp_fields": { + "aim_tolerance": [ + 32 + ], + "author_steam_id": [ + 32 + ], + "downvotes": [ + 32 + ], + "eye_z": [ + 32 + ], + "favorites": [ + 32 + ], + "flight_time_ms": [ + 32 + ], + "initial_pos_x": [ + 32 + ], + "initial_pos_y": [ + 32 + ], + "initial_pos_z": [ + 32 + ], + "initial_vel_x": [ + 32 + ], + "initial_vel_y": [ + 32 + ], + "initial_vel_z": [ + 32 + ], + "land_x": [ + 32 + ], + "land_y": [ + 32 + ], + "land_z": [ + 32 + ], + "my_vote": [ + 4830 + ], + "origin_x": [ + 32 + ], + "origin_y": [ + 32 + ], + "origin_z": [ + 32 + ], + "practice_attempts": [ + 32 + ], + "practice_players": [ + 32 + ], + "practice_successes": [ + 32 + ], + "preview_duration_ms": [ + 32 + ], + "public_reviewed_by": [ + 32 + ], + "source_grenade_id": [ + 32 + ], + "trajectory_size": [ + 32 + ], + "upvotes": [ + 32 + ], + "view_pitch": [ + 32 + ], + "view_pitch_delta": [ + 32 + ], + "view_yaw": [ + 32 + ], + "view_yaw_delta": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_var_samp_order_by": { + "aim_tolerance": [ + 3648 + ], + "author_steam_id": [ + 3648 + ], + "downvotes": [ + 3648 + ], + "eye_z": [ + 3648 + ], + "favorites": [ + 3648 + ], + "flight_time_ms": [ + 3648 + ], + "initial_pos_x": [ + 3648 + ], + "initial_pos_y": [ + 3648 + ], + "initial_pos_z": [ + 3648 + ], + "initial_vel_x": [ + 3648 + ], + "initial_vel_y": [ + 3648 + ], + "initial_vel_z": [ + 3648 + ], + "land_x": [ + 3648 + ], + "land_y": [ + 3648 + ], + "land_z": [ + 3648 + ], + "origin_x": [ + 3648 + ], + "origin_y": [ + 3648 + ], + "origin_z": [ + 3648 + ], + "practice_attempts": [ + 3648 + ], + "practice_players": [ + 3648 + ], + "practice_successes": [ + 3648 + ], + "preview_duration_ms": [ + 3648 + ], + "public_reviewed_by": [ + 3648 + ], + "source_grenade_id": [ + 3648 + ], + "trajectory_size": [ + 3648 + ], + "upvotes": [ + 3648 + ], + "view_pitch": [ + 3648 + ], + "view_pitch_delta": [ + 3648 + ], + "view_yaw": [ + 3648 + ], + "view_yaw_delta": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_variance_fields": { + "aim_tolerance": [ + 32 + ], + "author_steam_id": [ + 32 + ], + "downvotes": [ + 32 + ], + "eye_z": [ + 32 + ], + "favorites": [ + 32 + ], + "flight_time_ms": [ + 32 + ], + "initial_pos_x": [ + 32 + ], + "initial_pos_y": [ + 32 + ], + "initial_pos_z": [ + 32 + ], + "initial_vel_x": [ + 32 + ], + "initial_vel_y": [ + 32 + ], + "initial_vel_z": [ + 32 + ], + "land_x": [ + 32 + ], + "land_y": [ + 32 + ], + "land_z": [ + 32 + ], + "my_vote": [ + 4830 + ], + "origin_x": [ + 32 + ], + "origin_y": [ + 32 + ], + "origin_z": [ + 32 + ], + "practice_attempts": [ + 32 + ], + "practice_players": [ + 32 + ], + "practice_successes": [ + 32 + ], + "preview_duration_ms": [ + 32 + ], + "public_reviewed_by": [ + 32 + ], + "source_grenade_id": [ + 32 + ], + "trajectory_size": [ + 32 + ], + "upvotes": [ + 32 + ], + "view_pitch": [ + 32 + ], + "view_pitch_delta": [ + 32 + ], + "view_yaw": [ + 32 + ], + "view_yaw_delta": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_lineups_variance_order_by": { + "aim_tolerance": [ + 3648 + ], + "author_steam_id": [ + 3648 + ], + "downvotes": [ + 3648 + ], + "eye_z": [ + 3648 + ], + "favorites": [ + 3648 + ], + "flight_time_ms": [ + 3648 + ], + "initial_pos_x": [ + 3648 + ], + "initial_pos_y": [ + 3648 + ], + "initial_pos_z": [ + 3648 + ], + "initial_vel_x": [ + 3648 + ], + "initial_vel_y": [ + 3648 + ], + "initial_vel_z": [ + 3648 + ], + "land_x": [ + 3648 + ], + "land_y": [ + 3648 + ], + "land_z": [ + 3648 + ], + "origin_x": [ + 3648 + ], + "origin_y": [ + 3648 + ], + "origin_z": [ + 3648 + ], + "practice_attempts": [ + 3648 + ], + "practice_players": [ + 3648 + ], + "practice_successes": [ + 3648 + ], + "preview_duration_ms": [ + 3648 + ], + "public_reviewed_by": [ + 3648 + ], + "source_grenade_id": [ + 3648 + ], + "trajectory_size": [ + 3648 + ], + "upvotes": [ + 3648 + ], + "view_pitch": [ + 3648 + ], + "view_pitch_delta": [ + 3648 + ], + "view_yaw": [ + 3648 + ], + "view_yaw_delta": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_meta_lineups": { + "first_seen_at": [ + 5243 + ], + "land_x": [ + 2093 + ], + "land_y": [ + 2093 + ], + "land_z": [ + 2093 + ], + "last_seen_at": [ + 5243 + ], + "lineup_bucket": [ + 85 + ], + "lineups": [ + 41 + ], + "map_name": [ + 85 + ], + "matches": [ + 41 + ], + "origin_x": [ + 2093 + ], + "origin_y": [ + 2093 + ], + "origin_z": [ + 2093 + ], + "refreshed_at": [ + 5243 + ], + "side": [ + 1453 + ], + "technique": [ + 1719 + ], + "throw_strength": [ + 85 + ], + "throwers": [ + 41 + ], + "throws": [ + 41 + ], + "utility_type": [ + 1759 + ], + "view_pitch": [ + 2093 + ], + "view_yaw": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "utility_meta_lineups_aggregate": { + "aggregate": [ + 6491 + ], + "nodes": [ + 6489 + ], + "__typename": [ + 85 + ] + }, + "utility_meta_lineups_aggregate_fields": { + "avg": [ + 6492 + ], + "count": [ + 41, + { + "columns": [ + 6503, + "[utility_meta_lineups_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 6497 + ], + "min": [ + 6498 + ], + "stddev": [ + 6505 + ], + "stddev_pop": [ + 6506 + ], + "stddev_samp": [ + 6507 + ], + "sum": [ + 6510 + ], + "var_pop": [ + 6513 + ], + "var_samp": [ + 6514 + ], + "variance": [ + 6515 + ], + "__typename": [ + 85 + ] + }, + "utility_meta_lineups_avg_fields": { + "land_x": [ + 32 + ], + "land_y": [ + 32 + ], + "land_z": [ + 32 + ], + "lineups": [ + 32 + ], + "matches": [ + 32 + ], + "origin_x": [ + 32 + ], + "origin_y": [ + 32 + ], + "origin_z": [ + 32 + ], + "throwers": [ + 32 + ], + "throws": [ + 32 + ], + "view_pitch": [ + 32 + ], + "view_yaw": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_meta_lineups_bool_exp": { + "_and": [ + 6493 + ], + "_not": [ + 6493 + ], + "_or": [ + 6493 + ], + "first_seen_at": [ + 5244 + ], + "land_x": [ + 2094 + ], + "land_y": [ + 2094 + ], + "land_z": [ + 2094 + ], + "last_seen_at": [ + 5244 + ], + "lineup_bucket": [ + 87 + ], + "lineups": [ + 42 + ], + "map_name": [ + 87 + ], + "matches": [ + 42 + ], + "origin_x": [ + 2094 + ], + "origin_y": [ + 2094 + ], + "origin_z": [ + 2094 + ], + "refreshed_at": [ + 5244 + ], + "side": [ + 1454 + ], + "technique": [ + 1720 + ], + "throw_strength": [ + 87 + ], + "throwers": [ + 42 + ], + "throws": [ + 42 + ], + "utility_type": [ + 1760 + ], + "view_pitch": [ + 2094 + ], + "view_yaw": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "utility_meta_lineups_constraint": {}, + "utility_meta_lineups_inc_input": { + "land_x": [ + 2093 + ], + "land_y": [ + 2093 + ], + "land_z": [ + 2093 + ], + "lineups": [ + 41 + ], + "matches": [ + 41 + ], + "origin_x": [ + 2093 + ], + "origin_y": [ + 2093 + ], + "origin_z": [ + 2093 + ], + "throwers": [ + 41 + ], + "throws": [ + 41 + ], + "view_pitch": [ + 2093 + ], + "view_yaw": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "utility_meta_lineups_insert_input": { + "first_seen_at": [ + 5243 + ], + "land_x": [ + 2093 + ], + "land_y": [ + 2093 + ], + "land_z": [ + 2093 + ], + "last_seen_at": [ + 5243 + ], + "lineup_bucket": [ + 85 + ], + "lineups": [ + 41 + ], + "map_name": [ + 85 + ], + "matches": [ + 41 + ], + "origin_x": [ + 2093 + ], + "origin_y": [ + 2093 + ], + "origin_z": [ + 2093 + ], + "refreshed_at": [ + 5243 + ], + "side": [ + 1453 + ], + "technique": [ + 1719 + ], + "throw_strength": [ + 85 + ], + "throwers": [ + 41 + ], + "throws": [ + 41 + ], + "utility_type": [ + 1759 + ], + "view_pitch": [ + 2093 + ], + "view_yaw": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "utility_meta_lineups_max_fields": { + "first_seen_at": [ + 5243 + ], + "land_x": [ + 2093 + ], + "land_y": [ + 2093 + ], + "land_z": [ + 2093 + ], + "last_seen_at": [ + 5243 + ], + "lineup_bucket": [ + 85 + ], + "lineups": [ + 41 + ], + "map_name": [ + 85 + ], + "matches": [ + 41 + ], + "origin_x": [ + 2093 + ], + "origin_y": [ + 2093 + ], + "origin_z": [ + 2093 + ], + "refreshed_at": [ + 5243 + ], + "throw_strength": [ + 85 + ], + "throwers": [ + 41 + ], + "throws": [ + 41 + ], + "view_pitch": [ + 2093 + ], + "view_yaw": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "utility_meta_lineups_min_fields": { + "first_seen_at": [ + 5243 + ], + "land_x": [ + 2093 + ], + "land_y": [ + 2093 + ], + "land_z": [ + 2093 + ], + "last_seen_at": [ + 5243 + ], + "lineup_bucket": [ + 85 + ], + "lineups": [ + 41 + ], + "map_name": [ + 85 + ], + "matches": [ + 41 + ], + "origin_x": [ + 2093 + ], + "origin_y": [ + 2093 + ], + "origin_z": [ + 2093 + ], + "refreshed_at": [ + 5243 + ], + "throw_strength": [ + 85 + ], + "throwers": [ + 41 + ], + "throws": [ + 41 + ], + "view_pitch": [ + 2093 + ], + "view_yaw": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "utility_meta_lineups_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 6489 + ], + "__typename": [ + 85 + ] + }, + "utility_meta_lineups_on_conflict": { + "constraint": [ + 6494 + ], + "update_columns": [ + 6511 + ], + "where": [ + 6493 + ], + "__typename": [ + 85 + ] + }, + "utility_meta_lineups_order_by": { + "first_seen_at": [ + 3648 + ], + "land_x": [ + 3648 + ], + "land_y": [ + 3648 + ], + "land_z": [ + 3648 + ], + "last_seen_at": [ + 3648 + ], + "lineup_bucket": [ + 3648 + ], + "lineups": [ + 3648 + ], + "map_name": [ + 3648 + ], + "matches": [ + 3648 + ], + "origin_x": [ + 3648 + ], + "origin_y": [ + 3648 + ], + "origin_z": [ + 3648 + ], + "refreshed_at": [ + 3648 + ], + "side": [ + 3648 + ], + "technique": [ + 3648 + ], + "throw_strength": [ + 3648 + ], + "throwers": [ + 3648 + ], + "throws": [ + 3648 + ], + "utility_type": [ + 3648 + ], + "view_pitch": [ + 3648 + ], + "view_yaw": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_meta_lineups_pk_columns_input": { + "lineup_bucket": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "utility_meta_lineups_select_column": {}, + "utility_meta_lineups_set_input": { + "first_seen_at": [ + 5243 + ], + "land_x": [ + 2093 + ], + "land_y": [ + 2093 + ], + "land_z": [ + 2093 + ], + "last_seen_at": [ + 5243 + ], + "lineup_bucket": [ + 85 + ], + "lineups": [ + 41 + ], + "map_name": [ + 85 + ], + "matches": [ + 41 + ], + "origin_x": [ + 2093 + ], + "origin_y": [ + 2093 + ], + "origin_z": [ + 2093 + ], + "refreshed_at": [ + 5243 + ], + "side": [ + 1453 + ], + "technique": [ + 1719 + ], + "throw_strength": [ + 85 + ], + "throwers": [ + 41 + ], + "throws": [ + 41 + ], + "utility_type": [ + 1759 + ], + "view_pitch": [ + 2093 + ], + "view_yaw": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "utility_meta_lineups_stddev_fields": { + "land_x": [ + 32 + ], + "land_y": [ + 32 + ], + "land_z": [ + 32 + ], + "lineups": [ + 32 + ], + "matches": [ + 32 + ], + "origin_x": [ + 32 + ], + "origin_y": [ + 32 + ], + "origin_z": [ + 32 + ], + "throwers": [ + 32 + ], + "throws": [ + 32 + ], + "view_pitch": [ + 32 + ], + "view_yaw": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_meta_lineups_stddev_pop_fields": { + "land_x": [ + 32 + ], + "land_y": [ + 32 + ], + "land_z": [ + 32 + ], + "lineups": [ + 32 + ], + "matches": [ + 32 + ], + "origin_x": [ + 32 + ], + "origin_y": [ + 32 + ], + "origin_z": [ + 32 + ], + "throwers": [ + 32 + ], + "throws": [ + 32 + ], + "view_pitch": [ + 32 + ], + "view_yaw": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_meta_lineups_stddev_samp_fields": { + "land_x": [ + 32 + ], + "land_y": [ + 32 + ], + "land_z": [ + 32 + ], + "lineups": [ + 32 + ], + "matches": [ + 32 + ], + "origin_x": [ + 32 + ], + "origin_y": [ + 32 + ], + "origin_z": [ + 32 + ], + "throwers": [ + 32 + ], + "throws": [ + 32 + ], + "view_pitch": [ + 32 + ], + "view_yaw": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_meta_lineups_stream_cursor_input": { + "initial_value": [ + 6509 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "utility_meta_lineups_stream_cursor_value_input": { + "first_seen_at": [ + 5243 + ], + "land_x": [ + 2093 + ], + "land_y": [ + 2093 + ], + "land_z": [ + 2093 + ], + "last_seen_at": [ + 5243 + ], + "lineup_bucket": [ + 85 + ], + "lineups": [ + 41 + ], + "map_name": [ + 85 + ], + "matches": [ + 41 + ], + "origin_x": [ + 2093 + ], + "origin_y": [ + 2093 + ], + "origin_z": [ + 2093 + ], + "refreshed_at": [ + 5243 + ], + "side": [ + 1453 + ], + "technique": [ + 1719 + ], + "throw_strength": [ + 85 + ], + "throwers": [ + 41 + ], + "throws": [ + 41 + ], + "utility_type": [ + 1759 + ], + "view_pitch": [ + 2093 + ], + "view_yaw": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "utility_meta_lineups_sum_fields": { + "land_x": [ + 2093 + ], + "land_y": [ + 2093 + ], + "land_z": [ + 2093 + ], + "lineups": [ + 41 + ], + "matches": [ + 41 + ], + "origin_x": [ + 2093 + ], + "origin_y": [ + 2093 + ], + "origin_z": [ + 2093 + ], + "throwers": [ + 41 + ], + "throws": [ + 41 + ], + "view_pitch": [ + 2093 + ], + "view_yaw": [ + 2093 + ], + "__typename": [ + 85 + ] + }, + "utility_meta_lineups_update_column": {}, + "utility_meta_lineups_updates": { + "_inc": [ + 6495 + ], + "_set": [ + 6504 + ], + "where": [ + 6493 + ], + "__typename": [ + 85 + ] + }, + "utility_meta_lineups_var_pop_fields": { + "land_x": [ + 32 + ], + "land_y": [ + 32 + ], + "land_z": [ + 32 + ], + "lineups": [ + 32 + ], + "matches": [ + 32 + ], + "origin_x": [ + 32 + ], + "origin_y": [ + 32 + ], + "origin_z": [ + 32 + ], + "throwers": [ + 32 + ], + "throws": [ + 32 + ], + "view_pitch": [ + 32 + ], + "view_yaw": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_meta_lineups_var_samp_fields": { + "land_x": [ + 32 + ], + "land_y": [ + 32 + ], + "land_z": [ + 32 + ], + "lineups": [ + 32 + ], + "matches": [ + 32 + ], + "origin_x": [ + 32 + ], + "origin_y": [ + 32 + ], + "origin_z": [ + 32 + ], + "throwers": [ + 32 + ], + "throws": [ + 32 + ], + "view_pitch": [ + 32 + ], + "view_yaw": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_meta_lineups_variance_fields": { + "land_x": [ + 32 + ], + "land_y": [ + 32 + ], + "land_z": [ + 32 + ], + "lineups": [ + 32 + ], + "matches": [ + 32 + ], + "origin_x": [ + 32 + ], + "origin_y": [ + 32 + ], + "origin_z": [ + 32 + ], + "throwers": [ + 32 + ], + "throws": [ + 32 + ], + "view_pitch": [ + 32 + ], + "view_yaw": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_playbook_steps": { + "assigned_player": [ + 4606 + ], + "assigned_steam_id": [ + 312 + ], + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "note": [ + 85 + ], + "offset_ms": [ + 41 + ], + "playbook": [ + 6557 + ], + "playbook_id": [ + 6672 + ], + "step_order": [ + 41 + ], + "utility_lineup": [ + 6420 + ], + "utility_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_playbook_steps_aggregate": { + "aggregate": [ + 6520 + ], + "nodes": [ + 6516 + ], + "__typename": [ + 85 + ] + }, + "utility_playbook_steps_aggregate_bool_exp": { + "count": [ + 6519 + ], + "__typename": [ + 85 + ] + }, + "utility_playbook_steps_aggregate_bool_exp_count": { + "arguments": [ + 6537 + ], + "distinct": [ + 6 + ], + "filter": [ + 6525 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "utility_playbook_steps_aggregate_fields": { + "avg": [ + 6523 + ], + "count": [ + 41, + { + "columns": [ + 6537, + "[utility_playbook_steps_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 6529 + ], + "min": [ + 6531 + ], + "stddev": [ + 6539 + ], + "stddev_pop": [ + 6541 + ], + "stddev_samp": [ + 6543 + ], + "sum": [ + 6547 + ], + "var_pop": [ + 6551 + ], + "var_samp": [ + 6553 + ], + "variance": [ + 6555 + ], + "__typename": [ + 85 + ] + }, + "utility_playbook_steps_aggregate_order_by": { + "avg": [ + 6524 + ], + "count": [ + 3648 + ], + "max": [ + 6530 + ], + "min": [ + 6532 + ], + "stddev": [ + 6540 + ], + "stddev_pop": [ + 6542 + ], + "stddev_samp": [ + 6544 + ], + "sum": [ + 6548 + ], + "var_pop": [ + 6552 + ], + "var_samp": [ + 6554 + ], + "variance": [ + 6556 + ], + "__typename": [ + 85 + ] + }, + "utility_playbook_steps_arr_rel_insert_input": { + "data": [ + 6528 + ], + "on_conflict": [ + 6534 + ], + "__typename": [ + 85 + ] + }, + "utility_playbook_steps_avg_fields": { + "assigned_steam_id": [ + 32 + ], + "offset_ms": [ + 32 + ], + "step_order": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_playbook_steps_avg_order_by": { + "assigned_steam_id": [ + 3648 + ], + "offset_ms": [ + 3648 + ], + "step_order": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_playbook_steps_bool_exp": { + "_and": [ + 6525 + ], + "_not": [ + 6525 + ], + "_or": [ + 6525 + ], + "assigned_player": [ + 4610 + ], + "assigned_steam_id": [ + 314 + ], + "created_at": [ + 5244 + ], + "id": [ + 6674 + ], + "note": [ + 87 + ], + "offset_ms": [ + 42 + ], + "playbook": [ + 6561 + ], + "playbook_id": [ + 6674 + ], + "step_order": [ + 42 + ], + "utility_lineup": [ + 6442 + ], + "utility_lineup_id": [ + 6674 + ], + "__typename": [ + 85 + ] + }, + "utility_playbook_steps_constraint": {}, + "utility_playbook_steps_inc_input": { + "assigned_steam_id": [ + 312 + ], + "offset_ms": [ + 41 + ], + "step_order": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "utility_playbook_steps_insert_input": { + "assigned_player": [ + 4617 + ], + "assigned_steam_id": [ + 312 + ], + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "note": [ + 85 + ], + "offset_ms": [ + 41 + ], + "playbook": [ + 6568 + ], + "playbook_id": [ + 6672 + ], + "step_order": [ + 41 + ], + "utility_lineup": [ + 6454 + ], + "utility_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_playbook_steps_max_fields": { + "assigned_steam_id": [ + 312 + ], + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "note": [ + 85 + ], + "offset_ms": [ + 41 + ], + "playbook_id": [ + 6672 + ], + "step_order": [ + 41 + ], + "utility_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_playbook_steps_max_order_by": { + "assigned_steam_id": [ + 3648 + ], + "created_at": [ + 3648 + ], + "id": [ + 3648 + ], + "note": [ + 3648 + ], + "offset_ms": [ + 3648 + ], + "playbook_id": [ + 3648 + ], + "step_order": [ + 3648 + ], + "utility_lineup_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_playbook_steps_min_fields": { + "assigned_steam_id": [ + 312 + ], + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "note": [ + 85 + ], + "offset_ms": [ + 41 + ], + "playbook_id": [ + 6672 + ], + "step_order": [ + 41 + ], + "utility_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_playbook_steps_min_order_by": { + "assigned_steam_id": [ + 3648 + ], + "created_at": [ + 3648 + ], + "id": [ + 3648 + ], + "note": [ + 3648 + ], + "offset_ms": [ + 3648 + ], + "playbook_id": [ + 3648 + ], + "step_order": [ + 3648 + ], + "utility_lineup_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_playbook_steps_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 6516 + ], + "__typename": [ + 85 + ] + }, + "utility_playbook_steps_on_conflict": { + "constraint": [ + 6526 + ], + "update_columns": [ + 6549 + ], + "where": [ + 6525 + ], + "__typename": [ + 85 + ] + }, + "utility_playbook_steps_order_by": { + "assigned_player": [ + 4619 + ], + "assigned_steam_id": [ + 3648 + ], + "created_at": [ + 3648 + ], + "id": [ + 3648 + ], + "note": [ + 3648 + ], + "offset_ms": [ + 3648 + ], + "playbook": [ + 6570 + ], + "playbook_id": [ + 3648 + ], + "step_order": [ + 3648 + ], + "utility_lineup": [ + 6456 + ], + "utility_lineup_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_playbook_steps_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_playbook_steps_select_column": {}, + "utility_playbook_steps_set_input": { + "assigned_steam_id": [ + 312 + ], + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "note": [ + 85 + ], + "offset_ms": [ + 41 + ], + "playbook_id": [ + 6672 + ], + "step_order": [ + 41 + ], + "utility_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_playbook_steps_stddev_fields": { + "assigned_steam_id": [ + 32 + ], + "offset_ms": [ + 32 + ], + "step_order": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_playbook_steps_stddev_order_by": { + "assigned_steam_id": [ + 3648 + ], + "offset_ms": [ + 3648 + ], + "step_order": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_playbook_steps_stddev_pop_fields": { + "assigned_steam_id": [ + 32 + ], + "offset_ms": [ + 32 + ], + "step_order": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_playbook_steps_stddev_pop_order_by": { + "assigned_steam_id": [ + 3648 + ], + "offset_ms": [ + 3648 + ], + "step_order": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_playbook_steps_stddev_samp_fields": { + "assigned_steam_id": [ + 32 + ], + "offset_ms": [ + 32 + ], + "step_order": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_playbook_steps_stddev_samp_order_by": { + "assigned_steam_id": [ + 3648 + ], + "offset_ms": [ + 3648 + ], + "step_order": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_playbook_steps_stream_cursor_input": { + "initial_value": [ + 6546 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "utility_playbook_steps_stream_cursor_value_input": { + "assigned_steam_id": [ + 312 + ], + "created_at": [ + 5243 + ], + "id": [ + 6672 + ], + "note": [ + 85 + ], + "offset_ms": [ + 41 + ], + "playbook_id": [ + 6672 + ], + "step_order": [ + 41 + ], + "utility_lineup_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_playbook_steps_sum_fields": { + "assigned_steam_id": [ + 312 + ], + "offset_ms": [ + 41 + ], + "step_order": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "utility_playbook_steps_sum_order_by": { + "assigned_steam_id": [ + 3648 + ], + "offset_ms": [ + 3648 + ], + "step_order": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_playbook_steps_update_column": {}, + "utility_playbook_steps_updates": { + "_inc": [ + 6527 + ], + "_set": [ + 6538 + ], + "where": [ + 6525 + ], + "__typename": [ + 85 + ] + }, + "utility_playbook_steps_var_pop_fields": { + "assigned_steam_id": [ + 32 + ], + "offset_ms": [ + 32 + ], + "step_order": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_playbook_steps_var_pop_order_by": { + "assigned_steam_id": [ + 3648 + ], + "offset_ms": [ + 3648 + ], + "step_order": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_playbook_steps_var_samp_fields": { + "assigned_steam_id": [ + 32 + ], + "offset_ms": [ + 32 + ], + "step_order": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_playbook_steps_var_samp_order_by": { + "assigned_steam_id": [ + 3648 + ], + "offset_ms": [ + 3648 + ], + "step_order": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_playbook_steps_variance_fields": { + "assigned_steam_id": [ + 32 + ], + "offset_ms": [ + 32 + ], + "step_order": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_playbook_steps_variance_order_by": { + "assigned_steam_id": [ + 3648 + ], + "offset_ms": [ + 3648 + ], + "step_order": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_playbooks": { + "can_edit": [ + 6 + ], + "can_view": [ + 6 + ], + "created_at": [ + 5243 + ], + "description": [ + 85 + ], + "id": [ + 6672 + ], + "map_name": [ + 85 + ], + "name": [ + 85 + ], + "owner": [ + 4606 + ], + "owner_steam_id": [ + 312 + ], + "side": [ + 1453 + ], + "steps": [ + 6516, + { + "distinct_on": [ + 6537, + "[utility_playbook_steps_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6535, + "[utility_playbook_steps_order_by!]" + ], + "where": [ + 6525 + ] + } + ], + "steps_aggregate": [ + 6517, + { + "distinct_on": [ + 6537, + "[utility_playbook_steps_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6535, + "[utility_playbook_steps_order_by!]" + ], + "where": [ + 6525 + ] + } + ], + "team": [ + 5194 + ], + "team_id": [ + 6672 + ], + "updated_at": [ + 5243 + ], + "visibility": [ + 1779 + ], + "__typename": [ + 85 + ] + }, + "utility_playbooks_aggregate": { + "aggregate": [ + 6559 + ], + "nodes": [ + 6557 + ], + "__typename": [ + 85 + ] + }, + "utility_playbooks_aggregate_fields": { + "avg": [ + 6560 + ], + "count": [ + 41, + { + "columns": [ + 6572, + "[utility_playbooks_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 6565 + ], + "min": [ + 6566 + ], + "stddev": [ + 6574 + ], + "stddev_pop": [ + 6575 + ], + "stddev_samp": [ + 6576 + ], + "sum": [ + 6579 + ], + "var_pop": [ + 6582 + ], + "var_samp": [ + 6583 + ], + "variance": [ + 6584 + ], + "__typename": [ + 85 + ] + }, + "utility_playbooks_avg_fields": { + "owner_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_playbooks_bool_exp": { + "_and": [ + 6561 + ], + "_not": [ + 6561 + ], + "_or": [ + 6561 + ], + "can_edit": [ + 7 + ], + "can_view": [ + 7 + ], + "created_at": [ + 5244 + ], + "description": [ + 87 + ], + "id": [ + 6674 + ], + "map_name": [ + 87 + ], + "name": [ + 87 + ], + "owner": [ + 4610 + ], + "owner_steam_id": [ + 314 + ], + "side": [ + 1454 + ], + "steps": [ + 6525 + ], + "steps_aggregate": [ + 6518 + ], + "team": [ + 5205 + ], + "team_id": [ + 6674 + ], + "updated_at": [ + 5244 + ], + "visibility": [ + 1780 + ], + "__typename": [ + 85 + ] + }, + "utility_playbooks_constraint": {}, + "utility_playbooks_inc_input": { + "owner_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "utility_playbooks_insert_input": { + "created_at": [ + 5243 + ], + "description": [ + 85 + ], + "id": [ + 6672 + ], + "map_name": [ + 85 + ], + "name": [ + 85 + ], + "owner": [ + 4617 + ], + "owner_steam_id": [ + 312 + ], + "side": [ + 1453 + ], + "steps": [ + 6522 + ], + "team": [ + 5214 + ], + "team_id": [ + 6672 + ], + "updated_at": [ + 5243 + ], + "visibility": [ + 1779 + ], + "__typename": [ + 85 + ] + }, + "utility_playbooks_max_fields": { + "created_at": [ + 5243 + ], + "description": [ + 85 + ], + "id": [ + 6672 + ], + "map_name": [ + 85 + ], + "name": [ + 85 + ], + "owner_steam_id": [ + 312 + ], + "team_id": [ + 6672 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "utility_playbooks_min_fields": { + "created_at": [ + 5243 + ], + "description": [ + 85 + ], + "id": [ + 6672 + ], + "map_name": [ + 85 + ], + "name": [ + 85 + ], + "owner_steam_id": [ + 312 + ], + "team_id": [ + 6672 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "utility_playbooks_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 6557 + ], + "__typename": [ + 85 + ] + }, + "utility_playbooks_obj_rel_insert_input": { + "data": [ + 6564 + ], + "on_conflict": [ + 6569 + ], + "__typename": [ + 85 + ] + }, + "utility_playbooks_on_conflict": { + "constraint": [ + 6562 + ], + "update_columns": [ + 6580 + ], + "where": [ + 6561 + ], + "__typename": [ + 85 + ] + }, + "utility_playbooks_order_by": { + "can_edit": [ + 3648 + ], + "can_view": [ + 3648 + ], + "created_at": [ + 3648 + ], + "description": [ + 3648 + ], + "id": [ + 3648 + ], + "map_name": [ + 3648 + ], + "name": [ + 3648 + ], + "owner": [ + 4619 + ], + "owner_steam_id": [ + 3648 + ], + "side": [ + 3648 + ], + "steps_aggregate": [ + 6521 + ], + "team": [ + 5216 + ], + "team_id": [ + 3648 + ], + "updated_at": [ + 3648 + ], + "visibility": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_playbooks_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_playbooks_select_column": {}, + "utility_playbooks_set_input": { + "created_at": [ + 5243 + ], + "description": [ + 85 + ], + "id": [ + 6672 + ], + "map_name": [ + 85 + ], + "name": [ + 85 + ], + "owner_steam_id": [ + 312 + ], + "side": [ + 1453 + ], + "team_id": [ + 6672 + ], + "updated_at": [ + 5243 + ], + "visibility": [ + 1779 + ], + "__typename": [ + 85 + ] + }, + "utility_playbooks_stddev_fields": { + "owner_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_playbooks_stddev_pop_fields": { + "owner_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_playbooks_stddev_samp_fields": { + "owner_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_playbooks_stream_cursor_input": { + "initial_value": [ + 6578 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "utility_playbooks_stream_cursor_value_input": { + "created_at": [ + 5243 + ], + "description": [ + 85 + ], + "id": [ + 6672 + ], + "map_name": [ + 85 + ], + "name": [ + 85 + ], + "owner_steam_id": [ + 312 + ], + "side": [ + 1453 + ], + "team_id": [ + 6672 + ], + "updated_at": [ + 5243 + ], + "visibility": [ + 1779 + ], + "__typename": [ + 85 + ] + }, + "utility_playbooks_sum_fields": { + "owner_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "utility_playbooks_update_column": {}, + "utility_playbooks_updates": { + "_inc": [ + 6563 + ], + "_set": [ + 6573 + ], + "where": [ + 6561 + ], + "__typename": [ + 85 + ] + }, + "utility_playbooks_var_pop_fields": { + "owner_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_playbooks_var_samp_fields": { + "owner_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_playbooks_variance_fields": { + "owner_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_invites": { + "created_at": [ + 5243 + ], + "invited_by": [ + 4606 + ], + "invited_by_steam_id": [ + 312 + ], + "player": [ + 4606 + ], + "session": [ + 6626 + ], + "steam_id": [ + 312 + ], + "utility_practice_session_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_invites_aggregate": { + "aggregate": [ + 6589 + ], + "nodes": [ + 6585 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_invites_aggregate_bool_exp": { + "count": [ + 6588 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_invites_aggregate_bool_exp_count": { + "arguments": [ + 6606 + ], + "distinct": [ + 6 + ], + "filter": [ + 6594 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_invites_aggregate_fields": { + "avg": [ + 6592 + ], + "count": [ + 41, + { + "columns": [ + 6606, + "[utility_practice_invites_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 6598 + ], + "min": [ + 6600 + ], + "stddev": [ + 6608 + ], + "stddev_pop": [ + 6610 + ], + "stddev_samp": [ + 6612 + ], + "sum": [ + 6616 + ], + "var_pop": [ + 6620 + ], + "var_samp": [ + 6622 + ], + "variance": [ + 6624 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_invites_aggregate_order_by": { + "avg": [ + 6593 + ], + "count": [ + 3648 + ], + "max": [ + 6599 + ], + "min": [ + 6601 + ], + "stddev": [ + 6609 + ], + "stddev_pop": [ + 6611 + ], + "stddev_samp": [ + 6613 + ], + "sum": [ + 6617 + ], + "var_pop": [ + 6621 + ], + "var_samp": [ + 6623 + ], + "variance": [ + 6625 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_invites_arr_rel_insert_input": { + "data": [ + 6597 + ], + "on_conflict": [ + 6603 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_invites_avg_fields": { + "invited_by_steam_id": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_invites_avg_order_by": { + "invited_by_steam_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_invites_bool_exp": { + "_and": [ + 6594 + ], + "_not": [ + 6594 + ], + "_or": [ + 6594 + ], + "created_at": [ + 5244 + ], + "invited_by": [ + 4610 + ], + "invited_by_steam_id": [ + 314 + ], + "player": [ + 4610 + ], + "session": [ + 6637 + ], + "steam_id": [ + 314 + ], + "utility_practice_session_id": [ + 6674 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_invites_constraint": {}, + "utility_practice_invites_inc_input": { + "invited_by_steam_id": [ + 312 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_invites_insert_input": { + "created_at": [ + 5243 + ], + "invited_by": [ + 4617 + ], + "invited_by_steam_id": [ + 312 + ], + "player": [ + 4617 + ], + "session": [ + 6646 + ], + "steam_id": [ + 312 + ], + "utility_practice_session_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_invites_max_fields": { + "created_at": [ + 5243 + ], + "invited_by_steam_id": [ + 312 + ], + "steam_id": [ + 312 + ], + "utility_practice_session_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_invites_max_order_by": { + "created_at": [ + 3648 + ], + "invited_by_steam_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "utility_practice_session_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_invites_min_fields": { + "created_at": [ + 5243 + ], + "invited_by_steam_id": [ + 312 + ], + "steam_id": [ + 312 + ], + "utility_practice_session_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_invites_min_order_by": { + "created_at": [ + 3648 + ], + "invited_by_steam_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "utility_practice_session_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_invites_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 6585 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_invites_on_conflict": { + "constraint": [ + 6595 + ], + "update_columns": [ + 6618 + ], + "where": [ + 6594 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_invites_order_by": { + "created_at": [ + 3648 + ], + "invited_by": [ + 4619 + ], + "invited_by_steam_id": [ + 3648 + ], + "player": [ + 4619 + ], + "session": [ + 6648 + ], + "steam_id": [ + 3648 + ], + "utility_practice_session_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_invites_pk_columns_input": { + "steam_id": [ + 312 + ], + "utility_practice_session_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_invites_select_column": {}, + "utility_practice_invites_set_input": { + "created_at": [ + 5243 + ], + "invited_by_steam_id": [ + 312 + ], + "steam_id": [ + 312 + ], + "utility_practice_session_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_invites_stddev_fields": { + "invited_by_steam_id": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_invites_stddev_order_by": { + "invited_by_steam_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_invites_stddev_pop_fields": { + "invited_by_steam_id": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_invites_stddev_pop_order_by": { + "invited_by_steam_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_invites_stddev_samp_fields": { + "invited_by_steam_id": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_invites_stddev_samp_order_by": { + "invited_by_steam_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_invites_stream_cursor_input": { + "initial_value": [ + 6615 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_invites_stream_cursor_value_input": { + "created_at": [ + 5243 + ], + "invited_by_steam_id": [ + 312 + ], + "steam_id": [ + 312 + ], + "utility_practice_session_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_invites_sum_fields": { + "invited_by_steam_id": [ + 312 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_invites_sum_order_by": { + "invited_by_steam_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_invites_update_column": {}, + "utility_practice_invites_updates": { + "_inc": [ + 6596 + ], + "_set": [ + 6607 + ], + "where": [ + 6594 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_invites_var_pop_fields": { + "invited_by_steam_id": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_invites_var_pop_order_by": { + "invited_by_steam_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_invites_var_samp_fields": { + "invited_by_steam_id": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_invites_var_samp_order_by": { + "invited_by_steam_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_invites_variance_fields": { + "invited_by_steam_id": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_invites_variance_order_by": { + "invited_by_steam_id": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_sessions": { + "access": [ + 1658 + ], + "can_manage": [ + 6 + ], + "can_view": [ + 6 + ], + "collection": [ + 6001 + ], + "collection_id": [ + 6672 + ], + "connection_link": [ + 85 + ], + "connection_string": [ + 85 + ], + "created_at": [ + 5243 + ], + "e_utility_practice_status": [ + 1673 + ], + "empty_since": [ + 5243 + ], + "expires_at": [ + 5243 + ], + "failure_reason": [ + 85 + ], + "first_joined_at": [ + 5243 + ], + "host": [ + 4606 + ], + "host_steam_id": [ + 312 + ], + "id": [ + 6672 + ], + "invite_code": [ + 85 + ], + "invites": [ + 6585, + { + "distinct_on": [ + 6606, + "[utility_practice_invites_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6604, + "[utility_practice_invites_order_by!]" + ], + "where": [ + 6594 + ] + } + ], + "invites_aggregate": [ + 6586, + { + "distinct_on": [ + 6606, + "[utility_practice_invites_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6604, + "[utility_practice_invites_order_by!]" + ], + "where": [ + 6594 + ] + } + ], + "is_member": [ + 6 + ], + "is_open": [ + 6 + ], + "is_render": [ + 6 + ], + "last_occupied_at": [ + 5243 + ], + "map_changing_at": [ + 5243 + ], + "map_name": [ + 85 + ], + "match": [ + 3432 + ], + "match_id": [ + 6672 + ], + "notify_when_ready": [ + 6 + ], + "playbook": [ + 6557 + ], + "playbook_id": [ + 6672 + ], + "region": [ + 85 + ], + "status": [ + 1678 + ], + "team": [ + 5194 + ], + "team_id": [ + 6672 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_sessions_aggregate": { + "aggregate": [ + 6632 + ], + "nodes": [ + 6626 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_sessions_aggregate_bool_exp": { + "bool_and": [ + 6629 + ], + "bool_or": [ + 6630 + ], + "count": [ + 6631 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_sessions_aggregate_bool_exp_bool_and": { + "arguments": [ + 6651 + ], + "distinct": [ + 6 + ], + "filter": [ + 6637 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_sessions_aggregate_bool_exp_bool_or": { + "arguments": [ + 6652 + ], + "distinct": [ + 6 + ], + "filter": [ + 6637 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_sessions_aggregate_bool_exp_count": { + "arguments": [ + 6650 + ], + "distinct": [ + 6 + ], + "filter": [ + 6637 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_sessions_aggregate_fields": { + "avg": [ + 6635 + ], + "count": [ + 41, + { + "columns": [ + 6650, + "[utility_practice_sessions_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 6641 + ], + "min": [ + 6643 + ], + "stddev": [ + 6654 + ], + "stddev_pop": [ + 6656 + ], + "stddev_samp": [ + 6658 + ], + "sum": [ + 6662 + ], + "var_pop": [ + 6666 + ], + "var_samp": [ + 6668 + ], + "variance": [ + 6670 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_sessions_aggregate_order_by": { + "avg": [ + 6636 + ], + "count": [ + 3648 + ], + "max": [ + 6642 + ], + "min": [ + 6644 + ], + "stddev": [ + 6655 + ], + "stddev_pop": [ + 6657 + ], + "stddev_samp": [ + 6659 + ], + "sum": [ + 6663 + ], + "var_pop": [ + 6667 + ], + "var_samp": [ + 6669 + ], + "variance": [ + 6671 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_sessions_arr_rel_insert_input": { + "data": [ + 6640 + ], + "on_conflict": [ + 6647 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_sessions_avg_fields": { + "host_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_sessions_avg_order_by": { + "host_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_sessions_bool_exp": { + "_and": [ + 6637 + ], + "_not": [ + 6637 + ], + "_or": [ + 6637 + ], + "access": [ + 1659 + ], + "can_manage": [ + 7 + ], + "can_view": [ + 7 + ], + "collection": [ + 6005 + ], + "collection_id": [ + 6674 + ], + "connection_link": [ + 87 + ], + "connection_string": [ + 87 + ], + "created_at": [ + 5244 + ], + "e_utility_practice_status": [ + 1676 + ], + "empty_since": [ + 5244 + ], + "expires_at": [ + 5244 + ], + "failure_reason": [ + 87 + ], + "first_joined_at": [ + 5244 + ], + "host": [ + 4610 + ], + "host_steam_id": [ + 314 + ], + "id": [ + 6674 + ], + "invite_code": [ + 87 + ], + "invites": [ + 6594 + ], + "invites_aggregate": [ + 6587 + ], + "is_member": [ + 7 + ], + "is_open": [ + 7 + ], + "is_render": [ + 7 + ], + "last_occupied_at": [ + 5244 + ], + "map_changing_at": [ + 5244 + ], + "map_name": [ + 87 + ], + "match": [ + 3443 + ], + "match_id": [ + 6674 + ], + "notify_when_ready": [ + 7 + ], + "playbook": [ + 6561 + ], + "playbook_id": [ + 6674 + ], + "region": [ + 87 + ], + "status": [ + 1679 + ], + "team": [ + 5205 + ], + "team_id": [ + 6674 + ], + "updated_at": [ + 5244 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_sessions_constraint": {}, + "utility_practice_sessions_inc_input": { + "host_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_sessions_insert_input": { + "access": [ + 1658 + ], + "collection": [ + 6012 + ], + "collection_id": [ + 6672 + ], + "created_at": [ + 5243 + ], + "e_utility_practice_status": [ + 1684 + ], + "empty_since": [ + 5243 + ], + "expires_at": [ + 5243 + ], + "failure_reason": [ + 85 + ], + "first_joined_at": [ + 5243 + ], + "host": [ + 4617 + ], + "host_steam_id": [ + 312 + ], + "id": [ + 6672 + ], + "invite_code": [ + 85 + ], + "invites": [ + 6591 + ], + "is_open": [ + 6 + ], + "is_render": [ + 6 + ], + "last_occupied_at": [ + 5243 + ], + "map_changing_at": [ + 5243 + ], + "map_name": [ + 85 + ], + "match": [ + 3452 + ], + "match_id": [ + 6672 + ], + "notify_when_ready": [ + 6 + ], + "playbook": [ + 6568 + ], + "playbook_id": [ + 6672 + ], + "region": [ + 85 + ], + "status": [ + 1678 + ], + "team": [ + 5214 + ], + "team_id": [ + 6672 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_sessions_max_fields": { + "collection_id": [ + 6672 + ], + "connection_link": [ + 85 + ], + "connection_string": [ + 85 + ], + "created_at": [ + 5243 + ], + "empty_since": [ + 5243 + ], + "expires_at": [ + 5243 + ], + "failure_reason": [ + 85 + ], + "first_joined_at": [ + 5243 + ], + "host_steam_id": [ + 312 + ], + "id": [ + 6672 + ], + "invite_code": [ + 85 + ], + "last_occupied_at": [ + 5243 + ], + "map_changing_at": [ + 5243 + ], + "map_name": [ + 85 + ], + "match_id": [ + 6672 + ], + "playbook_id": [ + 6672 + ], + "region": [ + 85 + ], + "team_id": [ + 6672 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_sessions_max_order_by": { + "collection_id": [ + 3648 + ], + "created_at": [ + 3648 + ], + "empty_since": [ + 3648 + ], + "expires_at": [ + 3648 + ], + "failure_reason": [ + 3648 + ], + "first_joined_at": [ + 3648 + ], + "host_steam_id": [ + 3648 + ], + "id": [ + 3648 + ], + "invite_code": [ + 3648 + ], + "last_occupied_at": [ + 3648 + ], + "map_changing_at": [ + 3648 + ], + "map_name": [ + 3648 + ], + "match_id": [ + 3648 + ], + "playbook_id": [ + 3648 + ], + "region": [ + 3648 + ], + "team_id": [ + 3648 + ], + "updated_at": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_sessions_min_fields": { + "collection_id": [ + 6672 + ], + "connection_link": [ + 85 + ], + "connection_string": [ + 85 + ], + "created_at": [ + 5243 + ], + "empty_since": [ + 5243 + ], + "expires_at": [ + 5243 + ], + "failure_reason": [ + 85 + ], + "first_joined_at": [ + 5243 + ], + "host_steam_id": [ + 312 + ], + "id": [ + 6672 + ], + "invite_code": [ + 85 + ], + "last_occupied_at": [ + 5243 + ], + "map_changing_at": [ + 5243 + ], + "map_name": [ + 85 + ], + "match_id": [ + 6672 + ], + "playbook_id": [ + 6672 + ], + "region": [ + 85 + ], + "team_id": [ + 6672 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_sessions_min_order_by": { + "collection_id": [ + 3648 + ], + "created_at": [ + 3648 + ], + "empty_since": [ + 3648 + ], + "expires_at": [ + 3648 + ], + "failure_reason": [ + 3648 + ], + "first_joined_at": [ + 3648 + ], + "host_steam_id": [ + 3648 + ], + "id": [ + 3648 + ], + "invite_code": [ + 3648 + ], + "last_occupied_at": [ + 3648 + ], + "map_changing_at": [ + 3648 + ], + "map_name": [ + 3648 + ], + "match_id": [ + 3648 + ], + "playbook_id": [ + 3648 + ], + "region": [ + 3648 + ], + "team_id": [ + 3648 + ], + "updated_at": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_sessions_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 6626 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_sessions_obj_rel_insert_input": { + "data": [ + 6640 + ], + "on_conflict": [ + 6647 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_sessions_on_conflict": { + "constraint": [ + 6638 + ], + "update_columns": [ + 6664 + ], + "where": [ + 6637 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_sessions_order_by": { + "access": [ + 3648 + ], + "can_manage": [ + 3648 + ], + "can_view": [ + 3648 + ], + "collection": [ + 6014 + ], + "collection_id": [ + 3648 + ], + "connection_link": [ + 3648 + ], + "connection_string": [ + 3648 + ], + "created_at": [ + 3648 + ], + "e_utility_practice_status": [ + 1686 + ], + "empty_since": [ + 3648 + ], + "expires_at": [ + 3648 + ], + "failure_reason": [ + 3648 + ], + "first_joined_at": [ + 3648 + ], + "host": [ + 4619 + ], + "host_steam_id": [ + 3648 + ], + "id": [ + 3648 + ], + "invite_code": [ + 3648 + ], + "invites_aggregate": [ + 6590 + ], + "is_member": [ + 3648 + ], + "is_open": [ + 3648 + ], + "is_render": [ + 3648 + ], + "last_occupied_at": [ + 3648 + ], + "map_changing_at": [ + 3648 + ], + "map_name": [ + 3648 + ], + "match": [ + 3454 + ], + "match_id": [ + 3648 + ], + "notify_when_ready": [ + 3648 + ], + "playbook": [ + 6570 + ], + "playbook_id": [ + 3648 + ], + "region": [ + 3648 + ], + "status": [ + 3648 + ], + "team": [ + 5216 + ], + "team_id": [ + 3648 + ], + "updated_at": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_sessions_pk_columns_input": { + "id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_sessions_select_column": {}, + "utility_practice_sessions_select_column_utility_practice_sessions_aggregate_bool_exp_bool_and_arguments_columns": {}, + "utility_practice_sessions_select_column_utility_practice_sessions_aggregate_bool_exp_bool_or_arguments_columns": {}, + "utility_practice_sessions_set_input": { + "access": [ + 1658 + ], + "collection_id": [ + 6672 + ], + "created_at": [ + 5243 + ], + "empty_since": [ + 5243 + ], + "expires_at": [ + 5243 + ], + "failure_reason": [ + 85 + ], + "first_joined_at": [ + 5243 + ], + "host_steam_id": [ + 312 + ], + "id": [ + 6672 + ], + "invite_code": [ + 85 + ], + "is_open": [ + 6 + ], + "is_render": [ + 6 + ], + "last_occupied_at": [ + 5243 + ], + "map_changing_at": [ + 5243 + ], + "map_name": [ + 85 + ], + "match_id": [ + 6672 + ], + "notify_when_ready": [ + 6 + ], + "playbook_id": [ + 6672 + ], + "region": [ + 85 + ], + "status": [ + 1678 + ], + "team_id": [ + 6672 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_sessions_stddev_fields": { + "host_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_sessions_stddev_order_by": { + "host_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_sessions_stddev_pop_fields": { + "host_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_sessions_stddev_pop_order_by": { + "host_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_sessions_stddev_samp_fields": { + "host_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_sessions_stddev_samp_order_by": { + "host_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_sessions_stream_cursor_input": { + "initial_value": [ + 6661 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_sessions_stream_cursor_value_input": { + "access": [ + 1658 + ], + "collection_id": [ + 6672 + ], + "created_at": [ + 5243 + ], + "empty_since": [ + 5243 + ], + "expires_at": [ + 5243 + ], + "failure_reason": [ + 85 + ], + "first_joined_at": [ + 5243 + ], + "host_steam_id": [ + 312 + ], + "id": [ + 6672 + ], + "invite_code": [ + 85 + ], + "is_open": [ + 6 + ], + "is_render": [ + 6 + ], + "last_occupied_at": [ + 5243 + ], + "map_changing_at": [ + 5243 + ], + "map_name": [ + 85 + ], + "match_id": [ + 6672 + ], + "notify_when_ready": [ + 6 + ], + "playbook_id": [ + 6672 + ], + "region": [ + 85 + ], + "status": [ + 1678 + ], + "team_id": [ + 6672 + ], + "updated_at": [ + 5243 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_sessions_sum_fields": { + "host_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_sessions_sum_order_by": { + "host_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_sessions_update_column": {}, + "utility_practice_sessions_updates": { + "_inc": [ + 6639 + ], + "_set": [ + 6653 + ], + "where": [ + 6637 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_sessions_var_pop_fields": { + "host_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_sessions_var_pop_order_by": { + "host_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_sessions_var_samp_fields": { + "host_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_sessions_var_samp_order_by": { + "host_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_sessions_variance_fields": { + "host_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "utility_practice_sessions_variance_order_by": { + "host_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "uuid": {}, + "uuid_array_comparison_exp": { + "_contained_in": [ + 6672 + ], + "_contains": [ + 6672 + ], + "_eq": [ + 6672 + ], + "_gt": [ + 6672 + ], + "_gte": [ + 6672 + ], + "_in": [ + 6672 + ], + "_is_null": [ + 6 + ], + "_lt": [ + 6672 + ], + "_lte": [ + 6672 + ], + "_neq": [ + 6672 + ], + "_nin": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "uuid_comparison_exp": { + "_eq": [ + 6672 + ], + "_gt": [ + 6672 + ], + "_gte": [ + 6672 + ], + "_in": [ + 6672 + ], + "_is_null": [ + 6 + ], + "_lt": [ + 6672 + ], + "_lte": [ + 6672 + ], + "_neq": [ + 6672 + ], + "_nin": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "v_event_player_stats": { + "assists": [ + 41 + ], + "deaths": [ + 41 + ], + "event": [ + 2065 + ], + "event_id": [ + 6672 + ], + "headshot_percentage": [ + 2093 + ], + "headshots": [ + 41 + ], + "kdr": [ + 2093 + ], + "kills": [ + 41 + ], + "matches_played": [ + 41 + ], + "player": [ + 4606 + ], + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_event_player_stats_aggregate": { + "aggregate": [ + 6689 + ], + "nodes": [ + 6675 + ], + "__typename": [ + 85 + ] + }, + "v_event_player_stats_aggregate_bool_exp": { + "avg": [ + 6678 + ], + "corr": [ + 6679 + ], + "count": [ + 6681 + ], + "covar_samp": [ + 6682 + ], + "max": [ + 6684 + ], + "min": [ + 6685 + ], + "stddev_samp": [ + 6686 + ], + "sum": [ + 6687 + ], + "var_samp": [ + 6688 + ], + "__typename": [ + 85 + ] + }, + "v_event_player_stats_aggregate_bool_exp_avg": { + "arguments": [ + 6702 + ], + "distinct": [ + 6 + ], + "filter": [ + 6694 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_event_player_stats_aggregate_bool_exp_corr": { + "arguments": [ + 6680 + ], + "distinct": [ + 6 + ], + "filter": [ + 6694 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_event_player_stats_aggregate_bool_exp_corr_arguments": { + "X": [ + 6703 + ], + "Y": [ + 6703 + ], + "__typename": [ + 85 + ] + }, + "v_event_player_stats_aggregate_bool_exp_count": { + "arguments": [ + 6701 + ], + "distinct": [ + 6 + ], + "filter": [ + 6694 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "v_event_player_stats_aggregate_bool_exp_covar_samp": { + "arguments": [ + 6683 + ], + "distinct": [ + 6 + ], + "filter": [ + 6694 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_event_player_stats_aggregate_bool_exp_covar_samp_arguments": { + "X": [ + 6704 + ], + "Y": [ + 6704 + ], + "__typename": [ + 85 + ] + }, + "v_event_player_stats_aggregate_bool_exp_max": { + "arguments": [ + 6705 + ], + "distinct": [ + 6 + ], + "filter": [ + 6694 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_event_player_stats_aggregate_bool_exp_min": { + "arguments": [ + 6706 + ], + "distinct": [ + 6 + ], + "filter": [ + 6694 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_event_player_stats_aggregate_bool_exp_stddev_samp": { + "arguments": [ + 6707 + ], + "distinct": [ + 6 + ], + "filter": [ + 6694 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_event_player_stats_aggregate_bool_exp_sum": { + "arguments": [ + 6708 + ], + "distinct": [ + 6 + ], + "filter": [ + 6694 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_event_player_stats_aggregate_bool_exp_var_samp": { + "arguments": [ + 6709 + ], + "distinct": [ + 6 + ], + "filter": [ + 6694 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_event_player_stats_aggregate_fields": { + "avg": [ + 6692 + ], + "count": [ + 41, + { + "columns": [ + 6701, + "[v_event_player_stats_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 6696 + ], + "min": [ + 6698 + ], + "stddev": [ + 6710 + ], + "stddev_pop": [ + 6712 + ], + "stddev_samp": [ + 6714 + ], + "sum": [ + 6718 + ], + "var_pop": [ + 6720 + ], + "var_samp": [ + 6722 + ], + "variance": [ + 6724 + ], + "__typename": [ + 85 + ] + }, + "v_event_player_stats_aggregate_order_by": { + "avg": [ + 6693 + ], + "count": [ + 3648 + ], + "max": [ + 6697 + ], + "min": [ + 6699 + ], + "stddev": [ + 6711 + ], + "stddev_pop": [ + 6713 + ], + "stddev_samp": [ + 6715 + ], + "sum": [ + 6719 + ], + "var_pop": [ + 6721 + ], + "var_samp": [ + 6723 + ], + "variance": [ + 6725 + ], + "__typename": [ + 85 + ] + }, + "v_event_player_stats_arr_rel_insert_input": { + "data": [ + 6695 + ], + "__typename": [ + 85 + ] + }, + "v_event_player_stats_avg_fields": { + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "headshot_percentage": [ + 32 + ], + "headshots": [ + 32 + ], + "kdr": [ + 32 + ], + "kills": [ + 32 + ], + "matches_played": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_event_player_stats_avg_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kdr": [ + 3648 + ], + "kills": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_event_player_stats_bool_exp": { + "_and": [ + 6694 + ], + "_not": [ + 6694 + ], + "_or": [ + 6694 + ], + "assists": [ + 42 + ], + "deaths": [ + 42 + ], + "event": [ + 2069 + ], + "event_id": [ + 6674 + ], + "headshot_percentage": [ + 2094 + ], + "headshots": [ + 42 + ], + "kdr": [ + 2094 + ], + "kills": [ + 42 + ], + "matches_played": [ + 42 + ], + "player": [ + 4610 + ], + "player_steam_id": [ + 314 + ], + "__typename": [ + 85 + ] + }, + "v_event_player_stats_insert_input": { + "assists": [ + 41 + ], + "deaths": [ + 41 + ], + "event": [ + 2076 + ], + "event_id": [ + 6672 + ], + "headshot_percentage": [ + 2093 + ], + "headshots": [ + 41 + ], + "kdr": [ + 2093 + ], + "kills": [ + 41 + ], + "matches_played": [ + 41 + ], + "player": [ + 4617 + ], + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_event_player_stats_max_fields": { + "assists": [ + 41 + ], + "deaths": [ + 41 + ], + "event_id": [ + 6672 + ], + "headshot_percentage": [ + 2093 + ], + "headshots": [ + 41 + ], + "kdr": [ + 2093 + ], + "kills": [ + 41 + ], + "matches_played": [ + 41 + ], + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_event_player_stats_max_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "event_id": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kdr": [ + 3648 + ], + "kills": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_event_player_stats_min_fields": { + "assists": [ + 41 + ], + "deaths": [ + 41 + ], + "event_id": [ + 6672 + ], + "headshot_percentage": [ + 2093 + ], + "headshots": [ + 41 + ], + "kdr": [ + 2093 + ], + "kills": [ + 41 + ], + "matches_played": [ + 41 + ], + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_event_player_stats_min_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "event_id": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kdr": [ + 3648 + ], + "kills": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_event_player_stats_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "event": [ + 2078 + ], + "event_id": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kdr": [ + 3648 + ], + "kills": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "player": [ + 4619 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_event_player_stats_select_column": {}, + "v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_avg_arguments_columns": {}, + "v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_corr_arguments_columns": {}, + "v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_covar_samp_arguments_columns": {}, + "v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_max_arguments_columns": {}, + "v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_min_arguments_columns": {}, + "v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns": {}, + "v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_sum_arguments_columns": {}, + "v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_var_samp_arguments_columns": {}, + "v_event_player_stats_stddev_fields": { + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "headshot_percentage": [ + 32 + ], + "headshots": [ + 32 + ], + "kdr": [ + 32 + ], + "kills": [ + 32 + ], + "matches_played": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_event_player_stats_stddev_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kdr": [ + 3648 + ], + "kills": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_event_player_stats_stddev_pop_fields": { + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "headshot_percentage": [ + 32 + ], + "headshots": [ + 32 + ], + "kdr": [ + 32 + ], + "kills": [ + 32 + ], + "matches_played": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_event_player_stats_stddev_pop_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kdr": [ + 3648 + ], + "kills": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_event_player_stats_stddev_samp_fields": { + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "headshot_percentage": [ + 32 + ], + "headshots": [ + 32 + ], + "kdr": [ + 32 + ], + "kills": [ + 32 + ], + "matches_played": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_event_player_stats_stddev_samp_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kdr": [ + 3648 + ], + "kills": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_event_player_stats_stream_cursor_input": { + "initial_value": [ + 6717 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "v_event_player_stats_stream_cursor_value_input": { + "assists": [ + 41 + ], + "deaths": [ + 41 + ], + "event_id": [ + 6672 + ], + "headshot_percentage": [ + 2093 + ], + "headshots": [ + 41 + ], + "kdr": [ + 2093 + ], + "kills": [ + 41 + ], + "matches_played": [ + 41 + ], + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_event_player_stats_sum_fields": { + "assists": [ + 41 + ], + "deaths": [ + 41 + ], + "headshot_percentage": [ + 2093 + ], + "headshots": [ + 41 + ], + "kdr": [ + 2093 + ], + "kills": [ + 41 + ], + "matches_played": [ + 41 + ], + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_event_player_stats_sum_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kdr": [ + 3648 + ], + "kills": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_event_player_stats_var_pop_fields": { + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "headshot_percentage": [ + 32 + ], + "headshots": [ + 32 + ], + "kdr": [ + 32 + ], + "kills": [ + 32 + ], + "matches_played": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_event_player_stats_var_pop_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kdr": [ + 3648 + ], + "kills": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_event_player_stats_var_samp_fields": { + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "headshot_percentage": [ + 32 + ], + "headshots": [ + 32 + ], + "kdr": [ + 32 + ], + "kills": [ + 32 + ], + "matches_played": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_event_player_stats_var_samp_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kdr": [ + 3648 + ], + "kills": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_event_player_stats_variance_fields": { + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "headshot_percentage": [ + 32 + ], + "headshots": [ + 32 + ], + "kdr": [ + 32 + ], + "kills": [ + 32 + ], + "matches_played": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_event_player_stats_variance_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kdr": [ + 3648 + ], + "kills": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_gpu_pool_status": { + "demo_free_gpu_nodes": [ + 41 + ], + "demo_in_progress": [ + 6 + ], + "demo_total_gpu_nodes": [ + 41 + ], + "free_gpu_nodes": [ + 41 + ], + "free_gpu_nodes_for_batch": [ + 41 + ], + "highlights_in_progress": [ + 6 + ], + "id": [ + 41 + ], + "live_in_progress": [ + 6 + ], + "registered_gpu_nodes": [ + 41 + ], + "rendering_total_gpu_nodes": [ + 41 + ], + "renders_paused_for_active_match": [ + 6 + ], + "streaming_free_gpu_nodes": [ + 41 + ], + "streaming_total_gpu_nodes": [ + 41 + ], + "total_gpu_nodes": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_gpu_pool_status_aggregate": { + "aggregate": [ + 6728 + ], + "nodes": [ + 6726 + ], + "__typename": [ + 85 + ] + }, + "v_gpu_pool_status_aggregate_fields": { + "avg": [ + 6729 + ], + "count": [ + 41, + { + "columns": [ + 6734, + "[v_gpu_pool_status_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 6731 + ], + "min": [ + 6732 + ], + "stddev": [ + 6735 + ], + "stddev_pop": [ + 6736 + ], + "stddev_samp": [ + 6737 + ], + "sum": [ + 6740 + ], + "var_pop": [ + 6741 + ], + "var_samp": [ + 6742 + ], + "variance": [ + 6743 + ], + "__typename": [ + 85 + ] + }, + "v_gpu_pool_status_avg_fields": { + "demo_free_gpu_nodes": [ + 32 + ], + "demo_total_gpu_nodes": [ + 32 + ], + "free_gpu_nodes": [ + 32 + ], + "free_gpu_nodes_for_batch": [ + 32 + ], + "id": [ + 32 + ], + "registered_gpu_nodes": [ + 32 + ], + "rendering_total_gpu_nodes": [ + 32 + ], + "streaming_free_gpu_nodes": [ + 32 + ], + "streaming_total_gpu_nodes": [ + 32 + ], + "total_gpu_nodes": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_gpu_pool_status_bool_exp": { + "_and": [ + 6730 + ], + "_not": [ + 6730 + ], + "_or": [ + 6730 + ], + "demo_free_gpu_nodes": [ + 42 + ], + "demo_in_progress": [ + 7 + ], + "demo_total_gpu_nodes": [ + 42 + ], + "free_gpu_nodes": [ + 42 + ], + "free_gpu_nodes_for_batch": [ + 42 + ], + "highlights_in_progress": [ + 7 + ], + "id": [ + 42 + ], + "live_in_progress": [ + 7 + ], + "registered_gpu_nodes": [ + 42 + ], + "rendering_total_gpu_nodes": [ + 42 + ], + "renders_paused_for_active_match": [ + 7 + ], + "streaming_free_gpu_nodes": [ + 42 + ], + "streaming_total_gpu_nodes": [ + 42 + ], + "total_gpu_nodes": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "v_gpu_pool_status_max_fields": { + "demo_free_gpu_nodes": [ + 41 + ], + "demo_total_gpu_nodes": [ + 41 + ], + "free_gpu_nodes": [ + 41 + ], + "free_gpu_nodes_for_batch": [ + 41 + ], + "id": [ + 41 + ], + "registered_gpu_nodes": [ + 41 + ], + "rendering_total_gpu_nodes": [ + 41 + ], + "streaming_free_gpu_nodes": [ + 41 + ], + "streaming_total_gpu_nodes": [ + 41 + ], + "total_gpu_nodes": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_gpu_pool_status_min_fields": { + "demo_free_gpu_nodes": [ + 41 + ], + "demo_total_gpu_nodes": [ + 41 + ], + "free_gpu_nodes": [ + 41 + ], + "free_gpu_nodes_for_batch": [ + 41 + ], + "id": [ + 41 + ], + "registered_gpu_nodes": [ + 41 + ], + "rendering_total_gpu_nodes": [ + 41 + ], + "streaming_free_gpu_nodes": [ + 41 + ], + "streaming_total_gpu_nodes": [ + 41 + ], + "total_gpu_nodes": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_gpu_pool_status_order_by": { + "demo_free_gpu_nodes": [ + 3648 + ], + "demo_in_progress": [ + 3648 + ], + "demo_total_gpu_nodes": [ + 3648 + ], + "free_gpu_nodes": [ + 3648 + ], + "free_gpu_nodes_for_batch": [ + 3648 + ], + "highlights_in_progress": [ + 3648 + ], + "id": [ + 3648 + ], + "live_in_progress": [ + 3648 + ], + "registered_gpu_nodes": [ + 3648 + ], + "rendering_total_gpu_nodes": [ + 3648 + ], + "renders_paused_for_active_match": [ + 3648 + ], + "streaming_free_gpu_nodes": [ + 3648 + ], + "streaming_total_gpu_nodes": [ + 3648 + ], + "total_gpu_nodes": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_gpu_pool_status_select_column": {}, + "v_gpu_pool_status_stddev_fields": { + "demo_free_gpu_nodes": [ + 32 + ], + "demo_total_gpu_nodes": [ + 32 + ], + "free_gpu_nodes": [ + 32 + ], + "free_gpu_nodes_for_batch": [ + 32 + ], + "id": [ + 32 + ], + "registered_gpu_nodes": [ + 32 + ], + "rendering_total_gpu_nodes": [ + 32 + ], + "streaming_free_gpu_nodes": [ + 32 + ], + "streaming_total_gpu_nodes": [ + 32 + ], + "total_gpu_nodes": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_gpu_pool_status_stddev_pop_fields": { + "demo_free_gpu_nodes": [ + 32 + ], + "demo_total_gpu_nodes": [ + 32 + ], + "free_gpu_nodes": [ + 32 + ], + "free_gpu_nodes_for_batch": [ + 32 + ], + "id": [ + 32 + ], + "registered_gpu_nodes": [ + 32 + ], + "rendering_total_gpu_nodes": [ + 32 + ], + "streaming_free_gpu_nodes": [ + 32 + ], + "streaming_total_gpu_nodes": [ + 32 + ], + "total_gpu_nodes": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_gpu_pool_status_stddev_samp_fields": { + "demo_free_gpu_nodes": [ + 32 + ], + "demo_total_gpu_nodes": [ + 32 + ], + "free_gpu_nodes": [ + 32 + ], + "free_gpu_nodes_for_batch": [ + 32 + ], + "id": [ + 32 + ], + "registered_gpu_nodes": [ + 32 + ], + "rendering_total_gpu_nodes": [ + 32 + ], + "streaming_free_gpu_nodes": [ + 32 + ], + "streaming_total_gpu_nodes": [ + 32 + ], + "total_gpu_nodes": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_gpu_pool_status_stream_cursor_input": { + "initial_value": [ + 6739 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "v_gpu_pool_status_stream_cursor_value_input": { + "demo_free_gpu_nodes": [ + 41 + ], + "demo_in_progress": [ + 6 + ], + "demo_total_gpu_nodes": [ + 41 + ], + "free_gpu_nodes": [ + 41 + ], + "free_gpu_nodes_for_batch": [ + 41 + ], + "highlights_in_progress": [ + 6 + ], + "id": [ + 41 + ], + "live_in_progress": [ + 6 + ], + "registered_gpu_nodes": [ + 41 + ], + "rendering_total_gpu_nodes": [ + 41 + ], + "renders_paused_for_active_match": [ + 6 + ], + "streaming_free_gpu_nodes": [ + 41 + ], + "streaming_total_gpu_nodes": [ + 41 + ], + "total_gpu_nodes": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_gpu_pool_status_sum_fields": { + "demo_free_gpu_nodes": [ + 41 + ], + "demo_total_gpu_nodes": [ + 41 + ], + "free_gpu_nodes": [ + 41 + ], + "free_gpu_nodes_for_batch": [ + 41 + ], + "id": [ + 41 + ], + "registered_gpu_nodes": [ + 41 + ], + "rendering_total_gpu_nodes": [ + 41 + ], + "streaming_free_gpu_nodes": [ + 41 + ], + "streaming_total_gpu_nodes": [ + 41 + ], + "total_gpu_nodes": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_gpu_pool_status_var_pop_fields": { + "demo_free_gpu_nodes": [ + 32 + ], + "demo_total_gpu_nodes": [ + 32 + ], + "free_gpu_nodes": [ + 32 + ], + "free_gpu_nodes_for_batch": [ + 32 + ], + "id": [ + 32 + ], + "registered_gpu_nodes": [ + 32 + ], + "rendering_total_gpu_nodes": [ + 32 + ], + "streaming_free_gpu_nodes": [ + 32 + ], + "streaming_total_gpu_nodes": [ + 32 + ], + "total_gpu_nodes": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_gpu_pool_status_var_samp_fields": { + "demo_free_gpu_nodes": [ + 32 + ], + "demo_total_gpu_nodes": [ + 32 + ], + "free_gpu_nodes": [ + 32 + ], + "free_gpu_nodes_for_batch": [ + 32 + ], + "id": [ + 32 + ], + "registered_gpu_nodes": [ + 32 + ], + "rendering_total_gpu_nodes": [ + 32 + ], + "streaming_free_gpu_nodes": [ + 32 + ], + "streaming_total_gpu_nodes": [ + 32 + ], + "total_gpu_nodes": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_gpu_pool_status_variance_fields": { + "demo_free_gpu_nodes": [ + 32 + ], + "demo_total_gpu_nodes": [ + 32 + ], + "free_gpu_nodes": [ + 32 + ], + "free_gpu_nodes_for_batch": [ + 32 + ], + "id": [ + 32 + ], + "registered_gpu_nodes": [ + 32 + ], + "rendering_total_gpu_nodes": [ + 32 + ], + "streaming_free_gpu_nodes": [ + 32 + ], + "streaming_total_gpu_nodes": [ + 32 + ], + "total_gpu_nodes": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_league_division_standings": { + "head_to_head_match_wins": [ + 41 + ], + "head_to_head_rounds_won": [ + 41 + ], + "league_division_id": [ + 6672 + ], + "league_season_division_id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "league_team": [ + 2799 + ], + "league_team_id": [ + 6672 + ], + "league_team_season_id": [ + 6672 + ], + "losses": [ + 41 + ], + "maps_lost": [ + 41 + ], + "maps_won": [ + 41 + ], + "matches_played": [ + 41 + ], + "matches_remaining": [ + 41 + ], + "rank": [ + 41 + ], + "round_diff": [ + 41 + ], + "rounds_lost": [ + 41 + ], + "rounds_won": [ + 41 + ], + "season_division": [ + 2617 + ], + "team_season": [ + 2757 + ], + "tournament_team_id": [ + 6672 + ], + "wins": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_league_division_standings_aggregate": { + "aggregate": [ + 6748 + ], + "nodes": [ + 6744 + ], + "__typename": [ + 85 + ] + }, + "v_league_division_standings_aggregate_bool_exp": { + "count": [ + 6747 + ], + "__typename": [ + 85 + ] + }, + "v_league_division_standings_aggregate_bool_exp_count": { + "arguments": [ + 6760 + ], + "distinct": [ + 6 + ], + "filter": [ + 6753 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "v_league_division_standings_aggregate_fields": { + "avg": [ + 6751 + ], + "count": [ + 41, + { + "columns": [ + 6760, + "[v_league_division_standings_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 6755 + ], + "min": [ + 6757 + ], + "stddev": [ + 6761 + ], + "stddev_pop": [ + 6763 + ], + "stddev_samp": [ + 6765 + ], + "sum": [ + 6769 + ], + "var_pop": [ + 6771 + ], + "var_samp": [ + 6773 + ], + "variance": [ + 6775 + ], + "__typename": [ + 85 + ] + }, + "v_league_division_standings_aggregate_order_by": { + "avg": [ + 6752 + ], + "count": [ + 3648 + ], + "max": [ + 6756 + ], + "min": [ + 6758 + ], + "stddev": [ + 6762 + ], + "stddev_pop": [ + 6764 + ], + "stddev_samp": [ + 6766 + ], + "sum": [ + 6770 + ], + "var_pop": [ + 6772 + ], + "var_samp": [ + 6774 + ], + "variance": [ + 6776 + ], + "__typename": [ + 85 + ] + }, + "v_league_division_standings_arr_rel_insert_input": { + "data": [ + 6754 + ], + "__typename": [ + 85 + ] + }, + "v_league_division_standings_avg_fields": { + "head_to_head_match_wins": [ + 32 + ], + "head_to_head_rounds_won": [ + 32 + ], + "losses": [ + 32 + ], + "maps_lost": [ + 32 + ], + "maps_won": [ + 32 + ], + "matches_played": [ + 32 + ], + "matches_remaining": [ + 32 + ], + "rank": [ + 32 + ], + "round_diff": [ + 32 + ], + "rounds_lost": [ + 32 + ], + "rounds_won": [ + 32 + ], + "wins": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_league_division_standings_avg_order_by": { + "head_to_head_match_wins": [ + 3648 + ], + "head_to_head_rounds_won": [ + 3648 + ], + "losses": [ + 3648 + ], + "maps_lost": [ + 3648 + ], + "maps_won": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "matches_remaining": [ + 3648 + ], + "rank": [ + 3648 + ], + "round_diff": [ + 3648 + ], + "rounds_lost": [ + 3648 + ], + "rounds_won": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_league_division_standings_bool_exp": { + "_and": [ + 6753 + ], + "_not": [ + 6753 + ], + "_or": [ + 6753 + ], + "head_to_head_match_wins": [ + 42 + ], + "head_to_head_rounds_won": [ + 42 + ], + "league_division_id": [ + 6674 + ], + "league_season_division_id": [ + 6674 + ], + "league_season_id": [ + 6674 + ], + "league_team": [ + 2802 + ], + "league_team_id": [ + 6674 + ], + "league_team_season_id": [ + 6674 + ], + "losses": [ + 42 + ], + "maps_lost": [ + 42 + ], + "maps_won": [ + 42 + ], + "matches_played": [ + 42 + ], + "matches_remaining": [ + 42 + ], + "rank": [ + 42 + ], + "round_diff": [ + 42 + ], + "rounds_lost": [ + 42 + ], + "rounds_won": [ + 42 + ], + "season_division": [ + 2624 + ], + "team_season": [ + 2766 + ], + "tournament_team_id": [ + 6674 + ], + "wins": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "v_league_division_standings_insert_input": { + "head_to_head_match_wins": [ + 41 + ], + "head_to_head_rounds_won": [ + 41 + ], + "league_division_id": [ + 6672 + ], + "league_season_division_id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "league_team": [ + 2808 + ], + "league_team_id": [ + 6672 + ], + "league_team_season_id": [ + 6672 + ], + "losses": [ + 41 + ], + "maps_lost": [ + 41 + ], + "maps_won": [ + 41 + ], + "matches_played": [ + 41 + ], + "matches_remaining": [ + 41 + ], + "rank": [ + 41 + ], + "round_diff": [ + 41 + ], + "rounds_lost": [ + 41 + ], + "rounds_won": [ + 41 + ], + "season_division": [ + 2632 + ], + "team_season": [ + 2775 + ], + "tournament_team_id": [ + 6672 + ], + "wins": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_league_division_standings_max_fields": { + "head_to_head_match_wins": [ + 41 + ], + "head_to_head_rounds_won": [ + 41 + ], + "league_division_id": [ + 6672 + ], + "league_season_division_id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "league_team_id": [ + 6672 + ], + "league_team_season_id": [ + 6672 + ], + "losses": [ + 41 + ], + "maps_lost": [ + 41 + ], + "maps_won": [ + 41 + ], + "matches_played": [ + 41 + ], + "matches_remaining": [ + 41 + ], + "rank": [ + 41 + ], + "round_diff": [ + 41 + ], + "rounds_lost": [ + 41 + ], + "rounds_won": [ + 41 + ], + "tournament_team_id": [ + 6672 + ], + "wins": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_league_division_standings_max_order_by": { + "head_to_head_match_wins": [ + 3648 + ], + "head_to_head_rounds_won": [ + 3648 + ], + "league_division_id": [ + 3648 + ], + "league_season_division_id": [ + 3648 + ], + "league_season_id": [ + 3648 + ], + "league_team_id": [ + 3648 + ], + "league_team_season_id": [ + 3648 + ], + "losses": [ + 3648 + ], + "maps_lost": [ + 3648 + ], + "maps_won": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "matches_remaining": [ + 3648 + ], + "rank": [ + 3648 + ], + "round_diff": [ + 3648 + ], + "rounds_lost": [ + 3648 + ], + "rounds_won": [ + 3648 + ], + "tournament_team_id": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_league_division_standings_min_fields": { + "head_to_head_match_wins": [ + 41 + ], + "head_to_head_rounds_won": [ + 41 + ], + "league_division_id": [ + 6672 + ], + "league_season_division_id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "league_team_id": [ + 6672 + ], + "league_team_season_id": [ + 6672 + ], + "losses": [ + 41 + ], + "maps_lost": [ + 41 + ], + "maps_won": [ + 41 + ], + "matches_played": [ + 41 + ], + "matches_remaining": [ + 41 + ], + "rank": [ + 41 + ], + "round_diff": [ + 41 + ], + "rounds_lost": [ + 41 + ], + "rounds_won": [ + 41 + ], + "tournament_team_id": [ + 6672 + ], + "wins": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_league_division_standings_min_order_by": { + "head_to_head_match_wins": [ + 3648 + ], + "head_to_head_rounds_won": [ + 3648 + ], + "league_division_id": [ + 3648 + ], + "league_season_division_id": [ + 3648 + ], + "league_season_id": [ + 3648 + ], + "league_team_id": [ + 3648 + ], + "league_team_season_id": [ + 3648 + ], + "losses": [ + 3648 + ], + "maps_lost": [ + 3648 + ], + "maps_won": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "matches_remaining": [ + 3648 + ], + "rank": [ + 3648 + ], + "round_diff": [ + 3648 + ], + "rounds_lost": [ + 3648 + ], + "rounds_won": [ + 3648 + ], + "tournament_team_id": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_league_division_standings_order_by": { + "head_to_head_match_wins": [ + 3648 + ], + "head_to_head_rounds_won": [ + 3648 + ], + "league_division_id": [ + 3648 + ], + "league_season_division_id": [ + 3648 + ], + "league_season_id": [ + 3648 + ], + "league_team": [ + 2810 + ], + "league_team_id": [ + 3648 + ], + "league_team_season_id": [ + 3648 + ], + "losses": [ + 3648 + ], + "maps_lost": [ + 3648 + ], + "maps_won": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "matches_remaining": [ + 3648 + ], + "rank": [ + 3648 + ], + "round_diff": [ + 3648 + ], + "rounds_lost": [ + 3648 + ], + "rounds_won": [ + 3648 + ], + "season_division": [ + 2634 + ], + "team_season": [ + 2777 + ], + "tournament_team_id": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_league_division_standings_select_column": {}, + "v_league_division_standings_stddev_fields": { + "head_to_head_match_wins": [ + 32 + ], + "head_to_head_rounds_won": [ + 32 + ], + "losses": [ + 32 + ], + "maps_lost": [ + 32 + ], + "maps_won": [ + 32 + ], + "matches_played": [ + 32 + ], + "matches_remaining": [ + 32 + ], + "rank": [ + 32 + ], + "round_diff": [ + 32 + ], + "rounds_lost": [ + 32 + ], + "rounds_won": [ + 32 + ], + "wins": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_league_division_standings_stddev_order_by": { + "head_to_head_match_wins": [ + 3648 + ], + "head_to_head_rounds_won": [ + 3648 + ], + "losses": [ + 3648 + ], + "maps_lost": [ + 3648 + ], + "maps_won": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "matches_remaining": [ + 3648 + ], + "rank": [ + 3648 + ], + "round_diff": [ + 3648 + ], + "rounds_lost": [ + 3648 + ], + "rounds_won": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_league_division_standings_stddev_pop_fields": { + "head_to_head_match_wins": [ + 32 + ], + "head_to_head_rounds_won": [ + 32 + ], + "losses": [ + 32 + ], + "maps_lost": [ + 32 + ], + "maps_won": [ + 32 + ], + "matches_played": [ + 32 + ], + "matches_remaining": [ + 32 + ], + "rank": [ + 32 + ], + "round_diff": [ + 32 + ], + "rounds_lost": [ + 32 + ], + "rounds_won": [ + 32 + ], + "wins": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_league_division_standings_stddev_pop_order_by": { + "head_to_head_match_wins": [ + 3648 + ], + "head_to_head_rounds_won": [ + 3648 + ], + "losses": [ + 3648 + ], + "maps_lost": [ + 3648 + ], + "maps_won": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "matches_remaining": [ + 3648 + ], + "rank": [ + 3648 + ], + "round_diff": [ + 3648 + ], + "rounds_lost": [ + 3648 + ], + "rounds_won": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_league_division_standings_stddev_samp_fields": { + "head_to_head_match_wins": [ + 32 + ], + "head_to_head_rounds_won": [ + 32 + ], + "losses": [ + 32 + ], + "maps_lost": [ + 32 + ], + "maps_won": [ + 32 + ], + "matches_played": [ + 32 + ], + "matches_remaining": [ + 32 + ], + "rank": [ + 32 + ], + "round_diff": [ + 32 + ], + "rounds_lost": [ + 32 + ], + "rounds_won": [ + 32 + ], + "wins": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_league_division_standings_stddev_samp_order_by": { + "head_to_head_match_wins": [ + 3648 + ], + "head_to_head_rounds_won": [ + 3648 + ], + "losses": [ + 3648 + ], + "maps_lost": [ + 3648 + ], + "maps_won": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "matches_remaining": [ + 3648 + ], + "rank": [ + 3648 + ], + "round_diff": [ + 3648 + ], + "rounds_lost": [ + 3648 + ], + "rounds_won": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_league_division_standings_stream_cursor_input": { + "initial_value": [ + 6768 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "v_league_division_standings_stream_cursor_value_input": { + "head_to_head_match_wins": [ + 41 + ], + "head_to_head_rounds_won": [ + 41 + ], + "league_division_id": [ + 6672 + ], + "league_season_division_id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "league_team_id": [ + 6672 + ], + "league_team_season_id": [ + 6672 + ], + "losses": [ + 41 + ], + "maps_lost": [ + 41 + ], + "maps_won": [ + 41 + ], + "matches_played": [ + 41 + ], + "matches_remaining": [ + 41 + ], + "rank": [ + 41 + ], + "round_diff": [ + 41 + ], + "rounds_lost": [ + 41 + ], + "rounds_won": [ + 41 + ], + "tournament_team_id": [ + 6672 + ], + "wins": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_league_division_standings_sum_fields": { + "head_to_head_match_wins": [ + 41 + ], + "head_to_head_rounds_won": [ + 41 + ], + "losses": [ + 41 + ], + "maps_lost": [ + 41 + ], + "maps_won": [ + 41 + ], + "matches_played": [ + 41 + ], + "matches_remaining": [ + 41 + ], + "rank": [ + 41 + ], + "round_diff": [ + 41 + ], + "rounds_lost": [ + 41 + ], + "rounds_won": [ + 41 + ], + "wins": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_league_division_standings_sum_order_by": { + "head_to_head_match_wins": [ + 3648 + ], + "head_to_head_rounds_won": [ + 3648 + ], + "losses": [ + 3648 + ], + "maps_lost": [ + 3648 + ], + "maps_won": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "matches_remaining": [ + 3648 + ], + "rank": [ + 3648 + ], + "round_diff": [ + 3648 + ], + "rounds_lost": [ + 3648 + ], + "rounds_won": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_league_division_standings_var_pop_fields": { + "head_to_head_match_wins": [ + 32 + ], + "head_to_head_rounds_won": [ + 32 + ], + "losses": [ + 32 + ], + "maps_lost": [ + 32 + ], + "maps_won": [ + 32 + ], + "matches_played": [ + 32 + ], + "matches_remaining": [ + 32 + ], + "rank": [ + 32 + ], + "round_diff": [ + 32 + ], + "rounds_lost": [ + 32 + ], + "rounds_won": [ + 32 + ], + "wins": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_league_division_standings_var_pop_order_by": { + "head_to_head_match_wins": [ + 3648 + ], + "head_to_head_rounds_won": [ + 3648 + ], + "losses": [ + 3648 + ], + "maps_lost": [ + 3648 + ], + "maps_won": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "matches_remaining": [ + 3648 + ], + "rank": [ + 3648 + ], + "round_diff": [ + 3648 + ], + "rounds_lost": [ + 3648 + ], + "rounds_won": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_league_division_standings_var_samp_fields": { + "head_to_head_match_wins": [ + 32 + ], + "head_to_head_rounds_won": [ + 32 + ], + "losses": [ + 32 + ], + "maps_lost": [ + 32 + ], + "maps_won": [ + 32 + ], + "matches_played": [ + 32 + ], + "matches_remaining": [ + 32 + ], + "rank": [ + 32 + ], + "round_diff": [ + 32 + ], + "rounds_lost": [ + 32 + ], + "rounds_won": [ + 32 + ], + "wins": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_league_division_standings_var_samp_order_by": { + "head_to_head_match_wins": [ + 3648 + ], + "head_to_head_rounds_won": [ + 3648 + ], + "losses": [ + 3648 + ], + "maps_lost": [ + 3648 + ], + "maps_won": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "matches_remaining": [ + 3648 + ], + "rank": [ + 3648 + ], + "round_diff": [ + 3648 + ], + "rounds_lost": [ + 3648 + ], + "rounds_won": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_league_division_standings_variance_fields": { + "head_to_head_match_wins": [ + 32 + ], + "head_to_head_rounds_won": [ + 32 + ], + "losses": [ + 32 + ], + "maps_lost": [ + 32 + ], + "maps_won": [ + 32 + ], + "matches_played": [ + 32 + ], + "matches_remaining": [ + 32 + ], + "rank": [ + 32 + ], + "round_diff": [ + 32 + ], + "rounds_lost": [ + 32 + ], + "rounds_won": [ + 32 + ], + "wins": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_league_division_standings_variance_order_by": { + "head_to_head_match_wins": [ + 3648 + ], + "head_to_head_rounds_won": [ + 3648 + ], + "losses": [ + 3648 + ], + "maps_lost": [ + 3648 + ], + "maps_won": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "matches_remaining": [ + 3648 + ], + "rank": [ + 3648 + ], + "round_diff": [ + 3648 + ], + "rounds_lost": [ + 3648 + ], + "rounds_won": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_league_season_player_stats": { + "assists": [ + 41 + ], + "deaths": [ + 41 + ], + "headshot_percentage": [ + 2093 + ], + "headshots": [ + 41 + ], + "kdr": [ + 2093 + ], + "kills": [ + 41 + ], + "league_division_id": [ + 6672 + ], + "league_season_division_id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "league_team": [ + 2799 + ], + "league_team_id": [ + 6672 + ], + "league_team_season_id": [ + 6672 + ], + "matches_played": [ + 41 + ], + "player": [ + 4606 + ], + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_league_season_player_stats_aggregate": { + "aggregate": [ + 6791 + ], + "nodes": [ + 6777 + ], + "__typename": [ + 85 + ] + }, + "v_league_season_player_stats_aggregate_bool_exp": { + "avg": [ + 6780 + ], + "corr": [ + 6781 + ], + "count": [ + 6783 + ], + "covar_samp": [ + 6784 + ], + "max": [ + 6786 + ], + "min": [ + 6787 + ], + "stddev_samp": [ + 6788 + ], + "sum": [ + 6789 + ], + "var_samp": [ + 6790 + ], + "__typename": [ + 85 + ] + }, + "v_league_season_player_stats_aggregate_bool_exp_avg": { + "arguments": [ + 6804 + ], + "distinct": [ + 6 + ], + "filter": [ + 6796 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_league_season_player_stats_aggregate_bool_exp_corr": { + "arguments": [ + 6782 + ], + "distinct": [ + 6 + ], + "filter": [ + 6796 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_league_season_player_stats_aggregate_bool_exp_corr_arguments": { + "X": [ + 6805 + ], + "Y": [ + 6805 + ], + "__typename": [ + 85 + ] + }, + "v_league_season_player_stats_aggregate_bool_exp_count": { + "arguments": [ + 6803 + ], + "distinct": [ + 6 + ], + "filter": [ + 6796 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "v_league_season_player_stats_aggregate_bool_exp_covar_samp": { + "arguments": [ + 6785 + ], + "distinct": [ + 6 + ], + "filter": [ + 6796 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments": { + "X": [ + 6806 + ], + "Y": [ + 6806 + ], + "__typename": [ + 85 + ] + }, + "v_league_season_player_stats_aggregate_bool_exp_max": { + "arguments": [ + 6807 + ], + "distinct": [ + 6 + ], + "filter": [ + 6796 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_league_season_player_stats_aggregate_bool_exp_min": { + "arguments": [ + 6808 + ], + "distinct": [ + 6 + ], + "filter": [ + 6796 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_league_season_player_stats_aggregate_bool_exp_stddev_samp": { + "arguments": [ + 6809 + ], + "distinct": [ + 6 + ], + "filter": [ + 6796 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_league_season_player_stats_aggregate_bool_exp_sum": { + "arguments": [ + 6810 + ], + "distinct": [ + 6 + ], + "filter": [ + 6796 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_league_season_player_stats_aggregate_bool_exp_var_samp": { + "arguments": [ + 6811 + ], + "distinct": [ + 6 + ], + "filter": [ + 6796 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_league_season_player_stats_aggregate_fields": { + "avg": [ + 6794 + ], + "count": [ + 41, + { + "columns": [ + 6803, + "[v_league_season_player_stats_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 6798 + ], + "min": [ + 6800 + ], + "stddev": [ + 6812 + ], + "stddev_pop": [ + 6814 + ], + "stddev_samp": [ + 6816 + ], + "sum": [ + 6820 + ], + "var_pop": [ + 6822 + ], + "var_samp": [ + 6824 + ], + "variance": [ + 6826 + ], + "__typename": [ + 85 + ] + }, + "v_league_season_player_stats_aggregate_order_by": { + "avg": [ + 6795 + ], + "count": [ + 3648 + ], + "max": [ + 6799 + ], + "min": [ + 6801 + ], + "stddev": [ + 6813 + ], + "stddev_pop": [ + 6815 + ], + "stddev_samp": [ + 6817 + ], + "sum": [ + 6821 + ], + "var_pop": [ + 6823 + ], + "var_samp": [ + 6825 + ], + "variance": [ + 6827 + ], + "__typename": [ + 85 + ] + }, + "v_league_season_player_stats_arr_rel_insert_input": { + "data": [ + 6797 + ], + "__typename": [ + 85 + ] + }, + "v_league_season_player_stats_avg_fields": { + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "headshot_percentage": [ + 32 + ], + "headshots": [ + 32 + ], + "kdr": [ + 32 + ], + "kills": [ + 32 + ], + "matches_played": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_league_season_player_stats_avg_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kdr": [ + 3648 + ], + "kills": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_league_season_player_stats_bool_exp": { + "_and": [ + 6796 + ], + "_not": [ + 6796 + ], + "_or": [ + 6796 + ], + "assists": [ + 42 + ], + "deaths": [ + 42 + ], + "headshot_percentage": [ + 2094 + ], + "headshots": [ + 42 + ], + "kdr": [ + 2094 + ], + "kills": [ + 42 + ], + "league_division_id": [ + 6674 + ], + "league_season_division_id": [ + 6674 + ], + "league_season_id": [ + 6674 + ], + "league_team": [ + 2802 + ], + "league_team_id": [ + 6674 + ], + "league_team_season_id": [ + 6674 + ], + "matches_played": [ + 42 + ], + "player": [ + 4610 + ], + "player_steam_id": [ + 314 + ], + "__typename": [ + 85 + ] + }, + "v_league_season_player_stats_insert_input": { + "assists": [ + 41 + ], + "deaths": [ + 41 + ], + "headshot_percentage": [ + 2093 + ], + "headshots": [ + 41 + ], + "kdr": [ + 2093 + ], + "kills": [ + 41 + ], + "league_division_id": [ + 6672 + ], + "league_season_division_id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "league_team": [ + 2808 + ], + "league_team_id": [ + 6672 + ], + "league_team_season_id": [ + 6672 + ], + "matches_played": [ + 41 + ], + "player": [ + 4617 + ], + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_league_season_player_stats_max_fields": { + "assists": [ + 41 + ], + "deaths": [ + 41 + ], + "headshot_percentage": [ + 2093 + ], + "headshots": [ + 41 + ], + "kdr": [ + 2093 + ], + "kills": [ + 41 + ], + "league_division_id": [ + 6672 + ], + "league_season_division_id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "league_team_id": [ + 6672 + ], + "league_team_season_id": [ + 6672 + ], + "matches_played": [ + 41 + ], + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_league_season_player_stats_max_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kdr": [ + 3648 + ], + "kills": [ + 3648 + ], + "league_division_id": [ + 3648 + ], + "league_season_division_id": [ + 3648 + ], + "league_season_id": [ + 3648 + ], + "league_team_id": [ + 3648 + ], + "league_team_season_id": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_league_season_player_stats_min_fields": { + "assists": [ + 41 + ], + "deaths": [ + 41 + ], + "headshot_percentage": [ + 2093 + ], + "headshots": [ + 41 + ], + "kdr": [ + 2093 + ], + "kills": [ + 41 + ], + "league_division_id": [ + 6672 + ], + "league_season_division_id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "league_team_id": [ + 6672 + ], + "league_team_season_id": [ + 6672 + ], + "matches_played": [ + 41 + ], + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_league_season_player_stats_min_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kdr": [ + 3648 + ], + "kills": [ + 3648 + ], + "league_division_id": [ + 3648 + ], + "league_season_division_id": [ + 3648 + ], + "league_season_id": [ + 3648 + ], + "league_team_id": [ + 3648 + ], + "league_team_season_id": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_league_season_player_stats_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kdr": [ + 3648 + ], + "kills": [ + 3648 + ], + "league_division_id": [ + 3648 + ], + "league_season_division_id": [ + 3648 + ], + "league_season_id": [ + 3648 + ], + "league_team": [ + 2810 + ], + "league_team_id": [ + 3648 + ], + "league_team_season_id": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "player": [ + 4619 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_league_season_player_stats_select_column": {}, + "v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_avg_arguments_columns": {}, + "v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_corr_arguments_columns": {}, + "v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments_columns": {}, + "v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_max_arguments_columns": {}, + "v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_min_arguments_columns": {}, + "v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns": {}, + "v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_sum_arguments_columns": {}, + "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": [ + 32 + ], + "deaths": [ + 32 + ], + "headshot_percentage": [ + 32 + ], + "headshots": [ + 32 + ], + "kdr": [ + 32 + ], + "kills": [ + 32 + ], + "matches_played": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_league_season_player_stats_stddev_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kdr": [ + 3648 + ], + "kills": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_league_season_player_stats_stddev_pop_fields": { + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "headshot_percentage": [ + 32 + ], + "headshots": [ + 32 + ], + "kdr": [ + 32 + ], + "kills": [ + 32 + ], + "matches_played": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_league_season_player_stats_stddev_pop_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kdr": [ + 3648 + ], + "kills": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_league_season_player_stats_stddev_samp_fields": { + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "headshot_percentage": [ + 32 + ], + "headshots": [ + 32 + ], + "kdr": [ + 32 + ], + "kills": [ + 32 + ], + "matches_played": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_league_season_player_stats_stddev_samp_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kdr": [ + 3648 + ], + "kills": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_league_season_player_stats_stream_cursor_input": { + "initial_value": [ + 6819 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "v_league_season_player_stats_stream_cursor_value_input": { + "assists": [ + 41 + ], + "deaths": [ + 41 + ], + "headshot_percentage": [ + 2093 + ], + "headshots": [ + 41 + ], + "kdr": [ + 2093 + ], + "kills": [ + 41 + ], + "league_division_id": [ + 6672 + ], + "league_season_division_id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "league_team_id": [ + 6672 + ], + "league_team_season_id": [ + 6672 + ], + "matches_played": [ + 41 + ], + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_league_season_player_stats_sum_fields": { + "assists": [ + 41 + ], + "deaths": [ + 41 + ], + "headshot_percentage": [ + 2093 + ], + "headshots": [ + 41 + ], + "kdr": [ + 2093 + ], + "kills": [ + 41 + ], + "matches_played": [ + 41 + ], + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_league_season_player_stats_sum_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kdr": [ + 3648 + ], + "kills": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_league_season_player_stats_var_pop_fields": { + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "headshot_percentage": [ + 32 + ], + "headshots": [ + 32 + ], + "kdr": [ + 32 + ], + "kills": [ + 32 + ], + "matches_played": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_league_season_player_stats_var_pop_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kdr": [ + 3648 + ], + "kills": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_league_season_player_stats_var_samp_fields": { + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "headshot_percentage": [ + 32 + ], + "headshots": [ + 32 + ], + "kdr": [ + 32 + ], + "kills": [ + 32 + ], + "matches_played": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_league_season_player_stats_var_samp_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kdr": [ + 3648 + ], + "kills": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_league_season_player_stats_variance_fields": { + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "headshot_percentage": [ + 32 + ], + "headshots": [ + 32 + ], + "kdr": [ + 32 + ], + "kills": [ + 32 + ], + "matches_played": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_league_season_player_stats_variance_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kdr": [ + 3648 + ], + "kills": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_match_captains": { + "captain": [ + 6 + ], + "discord_id": [ + 85 + ], + "id": [ + 6672 + ], + "lineup": [ + 3086 + ], + "match_lineup_id": [ + 6672 + ], + "placeholder_name": [ + 85 + ], + "player": [ + 4606 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_match_captains_aggregate": { + "aggregate": [ + 6830 + ], + "nodes": [ + 6828 + ], + "__typename": [ + 85 + ] + }, + "v_match_captains_aggregate_fields": { + "avg": [ + 6831 + ], + "count": [ + 41, + { + "columns": [ + 6840, + "[v_match_captains_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 6835 + ], + "min": [ + 6836 + ], + "stddev": [ + 6842 + ], + "stddev_pop": [ + 6843 + ], + "stddev_samp": [ + 6844 + ], + "sum": [ + 6847 + ], + "var_pop": [ + 6849 + ], + "var_samp": [ + 6850 + ], + "variance": [ + 6851 + ], + "__typename": [ + 85 + ] + }, + "v_match_captains_avg_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_captains_bool_exp": { + "_and": [ + 6832 + ], + "_not": [ + 6832 + ], + "_or": [ + 6832 + ], + "captain": [ + 7 + ], + "discord_id": [ + 87 + ], + "id": [ + 6674 + ], + "lineup": [ + 3095 + ], + "match_lineup_id": [ + 6674 + ], + "placeholder_name": [ + 87 + ], + "player": [ + 4610 + ], + "steam_id": [ + 314 + ], + "__typename": [ + 85 + ] + }, + "v_match_captains_inc_input": { + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_match_captains_insert_input": { + "captain": [ + 6 + ], + "discord_id": [ + 85 + ], + "id": [ + 6672 + ], + "lineup": [ + 3104 + ], + "match_lineup_id": [ + 6672 + ], + "placeholder_name": [ + 85 + ], + "player": [ + 4617 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_match_captains_max_fields": { + "discord_id": [ + 85 + ], + "id": [ + 6672 + ], + "match_lineup_id": [ + 6672 + ], + "placeholder_name": [ + 85 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_match_captains_min_fields": { + "discord_id": [ + 85 + ], + "id": [ + 6672 + ], + "match_lineup_id": [ + 6672 + ], + "placeholder_name": [ + 85 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_match_captains_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 6828 + ], + "__typename": [ + 85 + ] + }, + "v_match_captains_obj_rel_insert_input": { + "data": [ + 6834 + ], + "__typename": [ + 85 + ] + }, + "v_match_captains_order_by": { + "captain": [ + 3648 + ], + "discord_id": [ + 3648 + ], + "id": [ + 3648 + ], + "lineup": [ + 3106 + ], + "match_lineup_id": [ + 3648 + ], + "placeholder_name": [ + 3648 + ], + "player": [ + 4619 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_match_captains_select_column": {}, + "v_match_captains_set_input": { + "captain": [ + 6 + ], + "discord_id": [ + 85 + ], + "id": [ + 6672 + ], + "match_lineup_id": [ + 6672 + ], + "placeholder_name": [ + 85 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_match_captains_stddev_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_captains_stddev_pop_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_captains_stddev_samp_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_captains_stream_cursor_input": { + "initial_value": [ + 6846 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "v_match_captains_stream_cursor_value_input": { + "captain": [ + 6 + ], + "discord_id": [ + 85 + ], + "id": [ + 6672 + ], + "match_lineup_id": [ + 6672 + ], + "placeholder_name": [ + 85 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_match_captains_sum_fields": { + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_match_captains_updates": { + "_inc": [ + 6833 + ], + "_set": [ + 6841 + ], + "where": [ + 6832 + ], + "__typename": [ + 85 + ] + }, + "v_match_captains_var_pop_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_captains_var_samp_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_captains_variance_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_clutches": { + "against_count": [ + 41 + ], + "clutcher": [ + 4606 + ], + "clutcher_steam_id": [ + 312 + ], + "kills_in_clutch": [ + 41 + ], + "match": [ + 3432 + ], + "match_id": [ + 6672 + ], + "match_lineup": [ + 3086 + ], + "match_lineup_id": [ + 6672 + ], + "match_map": [ + 3248 + ], + "match_map_id": [ + 6672 + ], + "outcome": [ + 85 + ], + "round": [ + 41 + ], + "side": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "v_match_clutches_aggregate": { + "aggregate": [ + 6856 + ], + "nodes": [ + 6852 + ], + "__typename": [ + 85 + ] + }, + "v_match_clutches_aggregate_bool_exp": { + "count": [ + 6855 + ], + "__typename": [ + 85 + ] + }, + "v_match_clutches_aggregate_bool_exp_count": { + "arguments": [ + 6868 + ], + "distinct": [ + 6 + ], + "filter": [ + 6861 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "v_match_clutches_aggregate_fields": { + "avg": [ + 6859 + ], + "count": [ + 41, + { + "columns": [ + 6868, + "[v_match_clutches_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 6863 + ], + "min": [ + 6865 + ], + "stddev": [ + 6869 + ], + "stddev_pop": [ + 6871 + ], + "stddev_samp": [ + 6873 + ], + "sum": [ + 6877 + ], + "var_pop": [ + 6879 + ], + "var_samp": [ + 6881 + ], + "variance": [ + 6883 + ], + "__typename": [ + 85 + ] + }, + "v_match_clutches_aggregate_order_by": { + "avg": [ + 6860 + ], + "count": [ + 3648 + ], + "max": [ + 6864 + ], + "min": [ + 6866 + ], + "stddev": [ + 6870 + ], + "stddev_pop": [ + 6872 + ], + "stddev_samp": [ + 6874 + ], + "sum": [ + 6878 + ], + "var_pop": [ + 6880 + ], + "var_samp": [ + 6882 + ], + "variance": [ + 6884 + ], + "__typename": [ + 85 + ] + }, + "v_match_clutches_arr_rel_insert_input": { + "data": [ + 6862 + ], + "__typename": [ + 85 + ] + }, + "v_match_clutches_avg_fields": { + "against_count": [ + 32 + ], + "clutcher_steam_id": [ + 32 + ], + "kills_in_clutch": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_clutches_avg_order_by": { + "against_count": [ + 3648 + ], + "clutcher_steam_id": [ + 3648 + ], + "kills_in_clutch": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_match_clutches_bool_exp": { + "_and": [ + 6861 + ], + "_not": [ + 6861 + ], + "_or": [ + 6861 + ], + "against_count": [ + 42 + ], + "clutcher": [ + 4610 + ], + "clutcher_steam_id": [ + 314 + ], + "kills_in_clutch": [ + 42 + ], + "match": [ + 3443 + ], + "match_id": [ + 6674 + ], + "match_lineup": [ + 3095 + ], + "match_lineup_id": [ + 6674 + ], + "match_map": [ + 3257 + ], + "match_map_id": [ + 6674 + ], + "outcome": [ + 87 + ], + "round": [ + 42 + ], + "side": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "v_match_clutches_insert_input": { + "against_count": [ + 41 + ], + "clutcher": [ + 4617 + ], + "clutcher_steam_id": [ + 312 + ], + "kills_in_clutch": [ + 41 + ], + "match": [ + 3452 + ], + "match_id": [ + 6672 + ], + "match_lineup": [ + 3104 + ], + "match_lineup_id": [ + 6672 + ], + "match_map": [ + 3266 + ], + "match_map_id": [ + 6672 + ], + "outcome": [ + 85 + ], + "round": [ + 41 + ], + "side": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "v_match_clutches_max_fields": { + "against_count": [ + 41 + ], + "clutcher_steam_id": [ + 312 + ], + "kills_in_clutch": [ + 41 + ], + "match_id": [ + 6672 + ], + "match_lineup_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "outcome": [ + 85 + ], + "round": [ + 41 + ], + "side": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "v_match_clutches_max_order_by": { + "against_count": [ + 3648 + ], + "clutcher_steam_id": [ + 3648 + ], + "kills_in_clutch": [ + 3648 + ], + "match_id": [ + 3648 + ], + "match_lineup_id": [ + 3648 + ], + "match_map_id": [ + 3648 + ], + "outcome": [ + 3648 + ], + "round": [ + 3648 + ], + "side": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_match_clutches_min_fields": { + "against_count": [ + 41 + ], + "clutcher_steam_id": [ + 312 + ], + "kills_in_clutch": [ + 41 + ], + "match_id": [ + 6672 + ], + "match_lineup_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "outcome": [ + 85 + ], + "round": [ + 41 + ], + "side": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "v_match_clutches_min_order_by": { + "against_count": [ + 3648 + ], + "clutcher_steam_id": [ + 3648 + ], + "kills_in_clutch": [ + 3648 + ], + "match_id": [ + 3648 + ], + "match_lineup_id": [ + 3648 + ], + "match_map_id": [ + 3648 + ], + "outcome": [ + 3648 + ], + "round": [ + 3648 + ], + "side": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_match_clutches_order_by": { + "against_count": [ + 3648 + ], + "clutcher": [ + 4619 + ], + "clutcher_steam_id": [ + 3648 + ], + "kills_in_clutch": [ + 3648 + ], + "match": [ + 3454 + ], + "match_id": [ + 3648 + ], + "match_lineup": [ + 3106 + ], + "match_lineup_id": [ + 3648 + ], + "match_map": [ + 3268 + ], + "match_map_id": [ + 3648 + ], + "outcome": [ + 3648 + ], + "round": [ + 3648 + ], + "side": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_match_clutches_select_column": {}, + "v_match_clutches_stddev_fields": { + "against_count": [ + 32 + ], + "clutcher_steam_id": [ + 32 + ], + "kills_in_clutch": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_clutches_stddev_order_by": { + "against_count": [ + 3648 + ], + "clutcher_steam_id": [ + 3648 + ], + "kills_in_clutch": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_match_clutches_stddev_pop_fields": { + "against_count": [ + 32 + ], + "clutcher_steam_id": [ + 32 + ], + "kills_in_clutch": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_clutches_stddev_pop_order_by": { + "against_count": [ + 3648 + ], + "clutcher_steam_id": [ + 3648 + ], + "kills_in_clutch": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_match_clutches_stddev_samp_fields": { + "against_count": [ + 32 + ], + "clutcher_steam_id": [ + 32 + ], + "kills_in_clutch": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_clutches_stddev_samp_order_by": { + "against_count": [ + 3648 + ], + "clutcher_steam_id": [ + 3648 + ], + "kills_in_clutch": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_match_clutches_stream_cursor_input": { + "initial_value": [ + 6876 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "v_match_clutches_stream_cursor_value_input": { + "against_count": [ + 41 + ], + "clutcher_steam_id": [ + 312 + ], + "kills_in_clutch": [ + 41 + ], + "match_id": [ + 6672 + ], + "match_lineup_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "outcome": [ + 85 + ], + "round": [ + 41 + ], + "side": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "v_match_clutches_sum_fields": { + "against_count": [ + 41 + ], + "clutcher_steam_id": [ + 312 + ], + "kills_in_clutch": [ + 41 + ], + "round": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_match_clutches_sum_order_by": { + "against_count": [ + 3648 + ], + "clutcher_steam_id": [ + 3648 + ], + "kills_in_clutch": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_match_clutches_var_pop_fields": { + "against_count": [ + 32 + ], + "clutcher_steam_id": [ + 32 + ], + "kills_in_clutch": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_clutches_var_pop_order_by": { + "against_count": [ + 3648 + ], + "clutcher_steam_id": [ + 3648 + ], + "kills_in_clutch": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_match_clutches_var_samp_fields": { + "against_count": [ + 32 + ], + "clutcher_steam_id": [ + 32 + ], + "kills_in_clutch": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_clutches_var_samp_order_by": { + "against_count": [ + 3648 + ], + "clutcher_steam_id": [ + 3648 + ], + "kills_in_clutch": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_match_clutches_variance_fields": { + "against_count": [ + 32 + ], + "clutcher_steam_id": [ + 32 + ], + "kills_in_clutch": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_clutches_variance_order_by": { + "against_count": [ + 3648 + ], + "clutcher_steam_id": [ + 3648 + ], + "kills_in_clutch": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_match_kill_pairs": { + "killer_side": [ + 85 + ], + "killer_steam_id": [ + 312 + ], + "kills": [ + 41 + ], + "match": [ + 3432 + ], + "match_id": [ + 6672 + ], + "match_map": [ + 3248 + ], + "match_map_id": [ + 6672 + ], + "victim_side": [ + 85 + ], + "victim_steam_id": [ + 312 + ], + "weapon": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "v_match_kill_pairs_aggregate": { + "aggregate": [ + 6887 + ], + "nodes": [ + 6885 + ], + "__typename": [ + 85 + ] + }, + "v_match_kill_pairs_aggregate_fields": { + "avg": [ + 6888 + ], + "count": [ + 41, + { + "columns": [ + 6893, + "[v_match_kill_pairs_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 6890 + ], + "min": [ + 6891 + ], + "stddev": [ + 6894 + ], + "stddev_pop": [ + 6895 + ], + "stddev_samp": [ + 6896 + ], + "sum": [ + 6899 + ], + "var_pop": [ + 6900 + ], + "var_samp": [ + 6901 + ], + "variance": [ + 6902 + ], + "__typename": [ + 85 + ] + }, + "v_match_kill_pairs_avg_fields": { + "killer_steam_id": [ + 32 + ], + "kills": [ + 32 + ], + "victim_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_kill_pairs_bool_exp": { + "_and": [ + 6889 + ], + "_not": [ + 6889 + ], + "_or": [ + 6889 + ], + "killer_side": [ + 87 + ], + "killer_steam_id": [ + 314 + ], + "kills": [ + 42 + ], + "match": [ + 3443 + ], + "match_id": [ + 6674 + ], + "match_map": [ + 3257 + ], + "match_map_id": [ + 6674 + ], + "victim_side": [ + 87 + ], + "victim_steam_id": [ + 314 + ], + "weapon": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "v_match_kill_pairs_max_fields": { + "killer_side": [ + 85 + ], + "killer_steam_id": [ + 312 + ], + "kills": [ + 41 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "victim_side": [ + 85 + ], + "victim_steam_id": [ + 312 + ], + "weapon": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "v_match_kill_pairs_min_fields": { + "killer_side": [ + 85 + ], + "killer_steam_id": [ + 312 + ], + "kills": [ + 41 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "victim_side": [ + 85 + ], + "victim_steam_id": [ + 312 + ], + "weapon": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "v_match_kill_pairs_order_by": { + "killer_side": [ + 3648 + ], + "killer_steam_id": [ + 3648 + ], + "kills": [ + 3648 + ], + "match": [ + 3454 + ], + "match_id": [ + 3648 + ], + "match_map": [ + 3268 + ], + "match_map_id": [ + 3648 + ], + "victim_side": [ + 3648 + ], + "victim_steam_id": [ + 3648 + ], + "weapon": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_match_kill_pairs_select_column": {}, + "v_match_kill_pairs_stddev_fields": { + "killer_steam_id": [ + 32 + ], + "kills": [ + 32 + ], + "victim_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_kill_pairs_stddev_pop_fields": { + "killer_steam_id": [ + 32 + ], + "kills": [ + 32 + ], + "victim_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_kill_pairs_stddev_samp_fields": { + "killer_steam_id": [ + 32 + ], + "kills": [ + 32 + ], + "victim_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_kill_pairs_stream_cursor_input": { + "initial_value": [ + 6898 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "v_match_kill_pairs_stream_cursor_value_input": { + "killer_side": [ + 85 + ], + "killer_steam_id": [ + 312 + ], + "kills": [ + 41 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "victim_side": [ + 85 + ], + "victim_steam_id": [ + 312 + ], + "weapon": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "v_match_kill_pairs_sum_fields": { + "killer_steam_id": [ + 312 + ], + "kills": [ + 41 + ], + "victim_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_match_kill_pairs_var_pop_fields": { + "killer_steam_id": [ + 32 + ], + "kills": [ + 32 + ], + "victim_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_kill_pairs_var_samp_fields": { + "killer_steam_id": [ + 32 + ], + "kills": [ + 32 + ], + "victim_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_kill_pairs_variance_fields": { + "killer_steam_id": [ + 32 + ], + "kills": [ + 32 + ], + "victim_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_lineup_buy_types": { + "match": [ + 3432 + ], + "match_id": [ + 6672 + ], + "match_lineup": [ + 3086 + ], + "match_lineup_id": [ + 6672 + ], + "match_map": [ + 3248 + ], + "match_map_id": [ + 6672 + ], + "matchup": [ + 85 + ], + "rounds": [ + 41 + ], + "side": [ + 85 + ], + "wins": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_match_lineup_buy_types_aggregate": { + "aggregate": [ + 6905 + ], + "nodes": [ + 6903 + ], + "__typename": [ + 85 + ] + }, + "v_match_lineup_buy_types_aggregate_fields": { + "avg": [ + 6906 + ], + "count": [ + 41, + { + "columns": [ + 6911, + "[v_match_lineup_buy_types_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 6908 + ], + "min": [ + 6909 + ], + "stddev": [ + 6912 + ], + "stddev_pop": [ + 6913 + ], + "stddev_samp": [ + 6914 + ], + "sum": [ + 6917 + ], + "var_pop": [ + 6918 + ], + "var_samp": [ + 6919 + ], + "variance": [ + 6920 + ], + "__typename": [ + 85 + ] + }, + "v_match_lineup_buy_types_avg_fields": { + "rounds": [ + 32 + ], + "wins": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_lineup_buy_types_bool_exp": { + "_and": [ + 6907 + ], + "_not": [ + 6907 + ], + "_or": [ + 6907 + ], + "match": [ + 3443 + ], + "match_id": [ + 6674 + ], + "match_lineup": [ + 3095 + ], + "match_lineup_id": [ + 6674 + ], + "match_map": [ + 3257 + ], + "match_map_id": [ + 6674 + ], + "matchup": [ + 87 + ], + "rounds": [ + 42 + ], + "side": [ + 87 + ], + "wins": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "v_match_lineup_buy_types_max_fields": { + "match_id": [ + 6672 + ], + "match_lineup_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "matchup": [ + 85 + ], + "rounds": [ + 41 + ], + "side": [ + 85 + ], + "wins": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_match_lineup_buy_types_min_fields": { + "match_id": [ + 6672 + ], + "match_lineup_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "matchup": [ + 85 + ], + "rounds": [ + 41 + ], + "side": [ + 85 + ], + "wins": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_match_lineup_buy_types_order_by": { + "match": [ + 3454 + ], + "match_id": [ + 3648 + ], + "match_lineup": [ + 3106 + ], + "match_lineup_id": [ + 3648 + ], + "match_map": [ + 3268 + ], + "match_map_id": [ + 3648 + ], + "matchup": [ + 3648 + ], + "rounds": [ + 3648 + ], + "side": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_match_lineup_buy_types_select_column": {}, + "v_match_lineup_buy_types_stddev_fields": { + "rounds": [ + 32 + ], + "wins": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_lineup_buy_types_stddev_pop_fields": { + "rounds": [ + 32 + ], + "wins": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_lineup_buy_types_stddev_samp_fields": { + "rounds": [ + 32 + ], + "wins": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_lineup_buy_types_stream_cursor_input": { + "initial_value": [ + 6916 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "v_match_lineup_buy_types_stream_cursor_value_input": { + "match_id": [ + 6672 + ], + "match_lineup_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "matchup": [ + 85 + ], + "rounds": [ + 41 + ], + "side": [ + 85 + ], + "wins": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_match_lineup_buy_types_sum_fields": { + "rounds": [ + 41 + ], + "wins": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_match_lineup_buy_types_var_pop_fields": { + "rounds": [ + 32 + ], + "wins": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_lineup_buy_types_var_samp_fields": { + "rounds": [ + 32 + ], + "wins": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_lineup_buy_types_variance_fields": { + "rounds": [ + 32 + ], + "wins": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_lineup_map_stats": { + "man_adv_rounds": [ + 41 + ], + "man_adv_wins": [ + 41 + ], + "man_dis_rounds": [ + 41 + ], + "man_dis_wins": [ + 41 + ], + "match": [ + 3432 + ], + "match_id": [ + 6672 + ], + "match_lineup": [ + 3086 + ], + "match_lineup_id": [ + 6672 + ], + "match_map": [ + 3248 + ], + "match_map_id": [ + 6672 + ], + "opening_attempts": [ + 41 + ], + "opening_wins": [ + 41 + ], + "pistol_rounds": [ + 41 + ], + "pistol_wins": [ + 41 + ], + "round_wins": [ + 41 + ], + "rounds": [ + 41 + ], + "side": [ + 85 + ], + "won_buy_eco": [ + 41 + ], + "won_buy_force": [ + 41 + ], + "won_buy_full": [ + 41 + ], + "won_buy_pistol": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_match_lineup_map_stats_aggregate": { + "aggregate": [ + 6923 + ], + "nodes": [ + 6921 + ], + "__typename": [ + 85 + ] + }, + "v_match_lineup_map_stats_aggregate_fields": { + "avg": [ + 6924 + ], + "count": [ + 41, + { + "columns": [ + 6929, + "[v_match_lineup_map_stats_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 6926 + ], + "min": [ + 6927 + ], + "stddev": [ + 6930 + ], + "stddev_pop": [ + 6931 + ], + "stddev_samp": [ + 6932 + ], + "sum": [ + 6935 + ], + "var_pop": [ + 6936 + ], + "var_samp": [ + 6937 + ], + "variance": [ + 6938 + ], + "__typename": [ + 85 + ] + }, + "v_match_lineup_map_stats_avg_fields": { + "man_adv_rounds": [ + 32 + ], + "man_adv_wins": [ + 32 + ], + "man_dis_rounds": [ + 32 + ], + "man_dis_wins": [ + 32 + ], + "opening_attempts": [ + 32 + ], + "opening_wins": [ + 32 + ], + "pistol_rounds": [ + 32 + ], + "pistol_wins": [ + 32 + ], + "round_wins": [ + 32 + ], + "rounds": [ + 32 + ], + "won_buy_eco": [ + 32 + ], + "won_buy_force": [ + 32 + ], + "won_buy_full": [ + 32 + ], + "won_buy_pistol": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_lineup_map_stats_bool_exp": { + "_and": [ + 6925 + ], + "_not": [ + 6925 + ], + "_or": [ + 6925 + ], + "man_adv_rounds": [ + 42 + ], + "man_adv_wins": [ + 42 + ], + "man_dis_rounds": [ + 42 + ], + "man_dis_wins": [ + 42 + ], + "match": [ + 3443 + ], + "match_id": [ + 6674 + ], + "match_lineup": [ + 3095 + ], + "match_lineup_id": [ + 6674 + ], + "match_map": [ + 3257 + ], + "match_map_id": [ + 6674 + ], + "opening_attempts": [ + 42 + ], + "opening_wins": [ + 42 + ], + "pistol_rounds": [ + 42 + ], + "pistol_wins": [ + 42 + ], + "round_wins": [ + 42 + ], + "rounds": [ + 42 + ], + "side": [ + 87 + ], + "won_buy_eco": [ + 42 + ], + "won_buy_force": [ + 42 + ], + "won_buy_full": [ + 42 + ], + "won_buy_pistol": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "v_match_lineup_map_stats_max_fields": { + "man_adv_rounds": [ + 41 + ], + "man_adv_wins": [ + 41 + ], + "man_dis_rounds": [ + 41 + ], + "man_dis_wins": [ + 41 + ], + "match_id": [ + 6672 + ], + "match_lineup_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "opening_attempts": [ + 41 + ], + "opening_wins": [ + 41 + ], + "pistol_rounds": [ + 41 + ], + "pistol_wins": [ + 41 + ], + "round_wins": [ + 41 + ], + "rounds": [ + 41 + ], + "side": [ + 85 + ], + "won_buy_eco": [ + 41 + ], + "won_buy_force": [ + 41 + ], + "won_buy_full": [ + 41 + ], + "won_buy_pistol": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_match_lineup_map_stats_min_fields": { + "man_adv_rounds": [ + 41 + ], + "man_adv_wins": [ + 41 + ], + "man_dis_rounds": [ + 41 + ], + "man_dis_wins": [ + 41 + ], + "match_id": [ + 6672 + ], + "match_lineup_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "opening_attempts": [ + 41 + ], + "opening_wins": [ + 41 + ], + "pistol_rounds": [ + 41 + ], + "pistol_wins": [ + 41 + ], + "round_wins": [ + 41 + ], + "rounds": [ + 41 + ], + "side": [ + 85 + ], + "won_buy_eco": [ + 41 + ], + "won_buy_force": [ + 41 + ], + "won_buy_full": [ + 41 + ], + "won_buy_pistol": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_match_lineup_map_stats_order_by": { + "man_adv_rounds": [ + 3648 + ], + "man_adv_wins": [ + 3648 + ], + "man_dis_rounds": [ + 3648 + ], + "man_dis_wins": [ + 3648 + ], + "match": [ + 3454 + ], + "match_id": [ + 3648 + ], + "match_lineup": [ + 3106 + ], + "match_lineup_id": [ + 3648 + ], + "match_map": [ + 3268 + ], + "match_map_id": [ + 3648 + ], + "opening_attempts": [ + 3648 + ], + "opening_wins": [ + 3648 + ], + "pistol_rounds": [ + 3648 + ], + "pistol_wins": [ + 3648 + ], + "round_wins": [ + 3648 + ], + "rounds": [ + 3648 + ], + "side": [ + 3648 + ], + "won_buy_eco": [ + 3648 + ], + "won_buy_force": [ + 3648 + ], + "won_buy_full": [ + 3648 + ], + "won_buy_pistol": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_match_lineup_map_stats_select_column": {}, + "v_match_lineup_map_stats_stddev_fields": { + "man_adv_rounds": [ + 32 + ], + "man_adv_wins": [ + 32 + ], + "man_dis_rounds": [ + 32 + ], + "man_dis_wins": [ + 32 + ], + "opening_attempts": [ + 32 + ], + "opening_wins": [ + 32 + ], + "pistol_rounds": [ + 32 + ], + "pistol_wins": [ + 32 + ], + "round_wins": [ + 32 + ], + "rounds": [ + 32 + ], + "won_buy_eco": [ + 32 + ], + "won_buy_force": [ + 32 + ], + "won_buy_full": [ + 32 + ], + "won_buy_pistol": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_lineup_map_stats_stddev_pop_fields": { + "man_adv_rounds": [ + 32 + ], + "man_adv_wins": [ + 32 + ], + "man_dis_rounds": [ + 32 + ], + "man_dis_wins": [ + 32 + ], + "opening_attempts": [ + 32 + ], + "opening_wins": [ + 32 + ], + "pistol_rounds": [ + 32 + ], + "pistol_wins": [ + 32 + ], + "round_wins": [ + 32 + ], + "rounds": [ + 32 + ], + "won_buy_eco": [ + 32 + ], + "won_buy_force": [ + 32 + ], + "won_buy_full": [ + 32 + ], + "won_buy_pistol": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_lineup_map_stats_stddev_samp_fields": { + "man_adv_rounds": [ + 32 + ], + "man_adv_wins": [ + 32 + ], + "man_dis_rounds": [ + 32 + ], + "man_dis_wins": [ + 32 + ], + "opening_attempts": [ + 32 + ], + "opening_wins": [ + 32 + ], + "pistol_rounds": [ + 32 + ], + "pistol_wins": [ + 32 + ], + "round_wins": [ + 32 + ], + "rounds": [ + 32 + ], + "won_buy_eco": [ + 32 + ], + "won_buy_force": [ + 32 + ], + "won_buy_full": [ + 32 + ], + "won_buy_pistol": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_lineup_map_stats_stream_cursor_input": { + "initial_value": [ + 6934 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "v_match_lineup_map_stats_stream_cursor_value_input": { + "man_adv_rounds": [ + 41 + ], + "man_adv_wins": [ + 41 + ], + "man_dis_rounds": [ + 41 + ], + "man_dis_wins": [ + 41 + ], + "match_id": [ + 6672 + ], + "match_lineup_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "opening_attempts": [ + 41 + ], + "opening_wins": [ + 41 + ], + "pistol_rounds": [ + 41 + ], + "pistol_wins": [ + 41 + ], + "round_wins": [ + 41 + ], + "rounds": [ + 41 + ], + "side": [ + 85 + ], + "won_buy_eco": [ + 41 + ], + "won_buy_force": [ + 41 + ], + "won_buy_full": [ + 41 + ], + "won_buy_pistol": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_match_lineup_map_stats_sum_fields": { + "man_adv_rounds": [ + 41 + ], + "man_adv_wins": [ + 41 + ], + "man_dis_rounds": [ + 41 + ], + "man_dis_wins": [ + 41 + ], + "opening_attempts": [ + 41 + ], + "opening_wins": [ + 41 + ], + "pistol_rounds": [ + 41 + ], + "pistol_wins": [ + 41 + ], + "round_wins": [ + 41 + ], + "rounds": [ + 41 + ], + "won_buy_eco": [ + 41 + ], + "won_buy_force": [ + 41 + ], + "won_buy_full": [ + 41 + ], + "won_buy_pistol": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_match_lineup_map_stats_var_pop_fields": { + "man_adv_rounds": [ + 32 + ], + "man_adv_wins": [ + 32 + ], + "man_dis_rounds": [ + 32 + ], + "man_dis_wins": [ + 32 + ], + "opening_attempts": [ + 32 + ], + "opening_wins": [ + 32 + ], + "pistol_rounds": [ + 32 + ], + "pistol_wins": [ + 32 + ], + "round_wins": [ + 32 + ], + "rounds": [ + 32 + ], + "won_buy_eco": [ + 32 + ], + "won_buy_force": [ + 32 + ], + "won_buy_full": [ + 32 + ], + "won_buy_pistol": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_lineup_map_stats_var_samp_fields": { + "man_adv_rounds": [ + 32 + ], + "man_adv_wins": [ + 32 + ], + "man_dis_rounds": [ + 32 + ], + "man_dis_wins": [ + 32 + ], + "opening_attempts": [ + 32 + ], + "opening_wins": [ + 32 + ], + "pistol_rounds": [ + 32 + ], + "pistol_wins": [ + 32 + ], + "round_wins": [ + 32 + ], + "rounds": [ + 32 + ], + "won_buy_eco": [ + 32 + ], + "won_buy_force": [ + 32 + ], + "won_buy_full": [ + 32 + ], + "won_buy_pistol": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_lineup_map_stats_variance_fields": { + "man_adv_rounds": [ + 32 + ], + "man_adv_wins": [ + 32 + ], + "man_dis_rounds": [ + 32 + ], + "man_dis_wins": [ + 32 + ], + "opening_attempts": [ + 32 + ], + "opening_wins": [ + 32 + ], + "pistol_rounds": [ + 32 + ], + "pistol_wins": [ + 32 + ], + "round_wins": [ + 32 + ], + "rounds": [ + 32 + ], + "won_buy_eco": [ + 32 + ], + "won_buy_force": [ + 32 + ], + "won_buy_full": [ + 32 + ], + "won_buy_pistol": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_map_backup_rounds": { + "has_backup_file": [ + 6 + ], + "match_map_id": [ + 6672 + ], + "round": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_match_map_backup_rounds_aggregate": { + "aggregate": [ + 6941 + ], + "nodes": [ + 6939 + ], + "__typename": [ + 85 + ] + }, + "v_match_map_backup_rounds_aggregate_fields": { + "avg": [ + 6942 + ], + "count": [ + 41, + { + "columns": [ + 6950, + "[v_match_map_backup_rounds_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 6946 + ], + "min": [ + 6947 + ], + "stddev": [ + 6952 + ], + "stddev_pop": [ + 6953 + ], + "stddev_samp": [ + 6954 + ], + "sum": [ + 6957 + ], + "var_pop": [ + 6959 + ], + "var_samp": [ + 6960 + ], + "variance": [ + 6961 + ], + "__typename": [ + 85 + ] + }, + "v_match_map_backup_rounds_avg_fields": { + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_map_backup_rounds_bool_exp": { + "_and": [ + 6943 + ], + "_not": [ + 6943 + ], + "_or": [ + 6943 + ], + "has_backup_file": [ + 7 + ], + "match_map_id": [ + 6674 + ], + "round": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "v_match_map_backup_rounds_inc_input": { + "round": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_match_map_backup_rounds_insert_input": { + "has_backup_file": [ + 6 + ], + "match_map_id": [ + 6672 + ], + "round": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_match_map_backup_rounds_max_fields": { + "match_map_id": [ + 6672 + ], + "round": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_match_map_backup_rounds_min_fields": { + "match_map_id": [ + 6672 + ], + "round": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_match_map_backup_rounds_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 6939 + ], + "__typename": [ + 85 + ] + }, + "v_match_map_backup_rounds_order_by": { + "has_backup_file": [ + 3648 + ], + "match_map_id": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_match_map_backup_rounds_select_column": {}, + "v_match_map_backup_rounds_set_input": { + "has_backup_file": [ + 6 + ], + "match_map_id": [ + 6672 + ], + "round": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_match_map_backup_rounds_stddev_fields": { + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_map_backup_rounds_stddev_pop_fields": { + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_map_backup_rounds_stddev_samp_fields": { + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_map_backup_rounds_stream_cursor_input": { + "initial_value": [ + 6956 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "v_match_map_backup_rounds_stream_cursor_value_input": { + "has_backup_file": [ + 6 + ], + "match_map_id": [ + 6672 + ], + "round": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_match_map_backup_rounds_sum_fields": { + "round": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_match_map_backup_rounds_updates": { + "_inc": [ + 6944 + ], + "_set": [ + 6951 + ], + "where": [ + 6943 + ], + "__typename": [ + 85 + ] + }, + "v_match_map_backup_rounds_var_pop_fields": { + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_map_backup_rounds_var_samp_fields": { + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_map_backup_rounds_variance_fields": { + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_buy_types": { + "deaths": [ + 41 + ], + "kills": [ + 41 + ], + "match": [ + 3432 + ], + "match_id": [ + 6672 + ], + "match_lineup": [ + 3086 + ], + "match_lineup_id": [ + 6672 + ], + "match_map": [ + 3248 + ], + "match_map_id": [ + 6672 + ], + "matchup": [ + 85 + ], + "player": [ + 4606 + ], + "rounds": [ + 41 + ], + "side": [ + 85 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_buy_types_aggregate": { + "aggregate": [ + 6964 + ], + "nodes": [ + 6962 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_buy_types_aggregate_fields": { + "avg": [ + 6965 + ], + "count": [ + 41, + { + "columns": [ + 6970, + "[v_match_player_buy_types_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 6967 + ], + "min": [ + 6968 + ], + "stddev": [ + 6971 + ], + "stddev_pop": [ + 6972 + ], + "stddev_samp": [ + 6973 + ], + "sum": [ + 6976 + ], + "var_pop": [ + 6977 + ], + "var_samp": [ + 6978 + ], + "variance": [ + 6979 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_buy_types_avg_fields": { + "deaths": [ + 32 + ], + "kills": [ + 32 + ], + "rounds": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_buy_types_bool_exp": { + "_and": [ + 6966 + ], + "_not": [ + 6966 + ], + "_or": [ + 6966 + ], + "deaths": [ + 42 + ], + "kills": [ + 42 + ], + "match": [ + 3443 + ], + "match_id": [ + 6674 + ], + "match_lineup": [ + 3095 + ], + "match_lineup_id": [ + 6674 + ], + "match_map": [ + 3257 + ], + "match_map_id": [ + 6674 + ], + "matchup": [ + 87 + ], + "player": [ + 4610 + ], + "rounds": [ + 42 + ], + "side": [ + 87 + ], + "steam_id": [ + 314 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_buy_types_max_fields": { + "deaths": [ + 41 + ], + "kills": [ + 41 + ], + "match_id": [ + 6672 + ], + "match_lineup_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "matchup": [ + 85 + ], + "rounds": [ + 41 + ], + "side": [ + 85 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_buy_types_min_fields": { + "deaths": [ + 41 + ], + "kills": [ + 41 + ], + "match_id": [ + 6672 + ], + "match_lineup_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "matchup": [ + 85 + ], + "rounds": [ + 41 + ], + "side": [ + 85 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_buy_types_order_by": { + "deaths": [ + 3648 + ], + "kills": [ + 3648 + ], + "match": [ + 3454 + ], + "match_id": [ + 3648 + ], + "match_lineup": [ + 3106 + ], + "match_lineup_id": [ + 3648 + ], + "match_map": [ + 3268 + ], + "match_map_id": [ + 3648 + ], + "matchup": [ + 3648 + ], + "player": [ + 4619 + ], + "rounds": [ + 3648 + ], + "side": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_buy_types_select_column": {}, + "v_match_player_buy_types_stddev_fields": { + "deaths": [ + 32 + ], + "kills": [ + 32 + ], + "rounds": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_buy_types_stddev_pop_fields": { + "deaths": [ + 32 + ], + "kills": [ + 32 + ], + "rounds": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_buy_types_stddev_samp_fields": { + "deaths": [ + 32 + ], + "kills": [ + 32 + ], + "rounds": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_buy_types_stream_cursor_input": { + "initial_value": [ + 6975 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_buy_types_stream_cursor_value_input": { + "deaths": [ + 41 + ], + "kills": [ + 41 + ], + "match_id": [ + 6672 + ], + "match_lineup_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "matchup": [ + 85 + ], + "rounds": [ + 41 + ], + "side": [ + 85 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_buy_types_sum_fields": { + "deaths": [ + 41 + ], + "kills": [ + 41 + ], + "rounds": [ + 41 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_buy_types_var_pop_fields": { + "deaths": [ + 32 + ], + "kills": [ + 32 + ], + "rounds": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_buy_types_var_samp_fields": { + "deaths": [ + 32 + ], + "kills": [ + 32 + ], + "rounds": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_buy_types_variance_fields": { + "deaths": [ + 32 + ], + "kills": [ + 32 + ], + "rounds": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_opening_duels": { + "attempts": [ + 41 + ], + "deaths": [ + 41 + ], + "match": [ + 3432 + ], + "match_id": [ + 6672 + ], + "match_lineup": [ + 3086 + ], + "match_lineup_id": [ + 6672 + ], + "match_map": [ + 3248 + ], + "match_map_id": [ + 6672 + ], + "player": [ + 4606 + ], + "side": [ + 85 + ], + "steam_id": [ + 312 + ], + "traded_deaths": [ + 41 + ], + "wins": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_opening_duels_aggregate": { + "aggregate": [ + 6984 + ], + "nodes": [ + 6980 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_opening_duels_aggregate_bool_exp": { + "count": [ + 6983 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_opening_duels_aggregate_bool_exp_count": { + "arguments": [ + 6996 + ], + "distinct": [ + 6 + ], + "filter": [ + 6989 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_opening_duels_aggregate_fields": { + "avg": [ + 6987 + ], + "count": [ + 41, + { + "columns": [ + 6996, + "[v_match_player_opening_duels_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 6991 + ], + "min": [ + 6993 + ], + "stddev": [ + 6997 + ], + "stddev_pop": [ + 6999 + ], + "stddev_samp": [ + 7001 + ], + "sum": [ + 7005 + ], + "var_pop": [ + 7007 + ], + "var_samp": [ + 7009 + ], + "variance": [ + 7011 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_opening_duels_aggregate_order_by": { + "avg": [ + 6988 + ], + "count": [ + 3648 + ], + "max": [ + 6992 + ], + "min": [ + 6994 + ], + "stddev": [ + 6998 + ], + "stddev_pop": [ + 7000 + ], + "stddev_samp": [ + 7002 + ], + "sum": [ + 7006 + ], + "var_pop": [ + 7008 + ], + "var_samp": [ + 7010 + ], + "variance": [ + 7012 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_opening_duels_arr_rel_insert_input": { + "data": [ + 6990 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_opening_duels_avg_fields": { + "attempts": [ + 32 + ], + "deaths": [ + 32 + ], + "steam_id": [ + 32 + ], + "traded_deaths": [ + 32 + ], + "wins": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_opening_duels_avg_order_by": { + "attempts": [ + 3648 + ], + "deaths": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "traded_deaths": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_opening_duels_bool_exp": { + "_and": [ + 6989 + ], + "_not": [ + 6989 + ], + "_or": [ + 6989 + ], + "attempts": [ + 42 + ], + "deaths": [ + 42 + ], + "match": [ + 3443 + ], + "match_id": [ + 6674 + ], + "match_lineup": [ + 3095 + ], + "match_lineup_id": [ + 6674 + ], + "match_map": [ + 3257 + ], + "match_map_id": [ + 6674 + ], + "player": [ + 4610 + ], + "side": [ + 87 + ], + "steam_id": [ + 314 + ], + "traded_deaths": [ + 42 + ], + "wins": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_opening_duels_insert_input": { + "attempts": [ + 41 + ], + "deaths": [ + 41 + ], + "match": [ + 3452 + ], + "match_id": [ + 6672 + ], + "match_lineup": [ + 3104 + ], + "match_lineup_id": [ + 6672 + ], + "match_map": [ + 3266 + ], + "match_map_id": [ + 6672 + ], + "player": [ + 4617 + ], + "side": [ + 85 + ], + "steam_id": [ + 312 + ], + "traded_deaths": [ + 41 + ], + "wins": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_opening_duels_max_fields": { + "attempts": [ + 41 + ], + "deaths": [ + 41 + ], + "match_id": [ + 6672 + ], + "match_lineup_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "side": [ + 85 + ], + "steam_id": [ + 312 + ], + "traded_deaths": [ + 41 + ], + "wins": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_opening_duels_max_order_by": { + "attempts": [ + 3648 + ], + "deaths": [ + 3648 + ], + "match_id": [ + 3648 + ], + "match_lineup_id": [ + 3648 + ], + "match_map_id": [ + 3648 + ], + "side": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "traded_deaths": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_opening_duels_min_fields": { + "attempts": [ + 41 + ], + "deaths": [ + 41 + ], + "match_id": [ + 6672 + ], + "match_lineup_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "side": [ + 85 + ], + "steam_id": [ + 312 + ], + "traded_deaths": [ + 41 + ], + "wins": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_opening_duels_min_order_by": { + "attempts": [ + 3648 + ], + "deaths": [ + 3648 + ], + "match_id": [ + 3648 + ], + "match_lineup_id": [ + 3648 + ], + "match_map_id": [ + 3648 + ], + "side": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "traded_deaths": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_opening_duels_order_by": { + "attempts": [ + 3648 + ], + "deaths": [ + 3648 + ], + "match": [ + 3454 + ], + "match_id": [ + 3648 + ], + "match_lineup": [ + 3106 + ], + "match_lineup_id": [ + 3648 + ], + "match_map": [ + 3268 + ], + "match_map_id": [ + 3648 + ], + "player": [ + 4619 + ], + "side": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "traded_deaths": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_opening_duels_select_column": {}, + "v_match_player_opening_duels_stddev_fields": { + "attempts": [ + 32 + ], + "deaths": [ + 32 + ], + "steam_id": [ + 32 + ], + "traded_deaths": [ + 32 + ], + "wins": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_opening_duels_stddev_order_by": { + "attempts": [ + 3648 + ], + "deaths": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "traded_deaths": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_opening_duels_stddev_pop_fields": { + "attempts": [ + 32 + ], + "deaths": [ + 32 + ], + "steam_id": [ + 32 + ], + "traded_deaths": [ + 32 + ], + "wins": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_opening_duels_stddev_pop_order_by": { + "attempts": [ + 3648 + ], + "deaths": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "traded_deaths": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_opening_duels_stddev_samp_fields": { + "attempts": [ + 32 + ], + "deaths": [ + 32 + ], + "steam_id": [ + 32 + ], + "traded_deaths": [ + 32 + ], + "wins": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_opening_duels_stddev_samp_order_by": { + "attempts": [ + 3648 + ], + "deaths": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "traded_deaths": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_opening_duels_stream_cursor_input": { + "initial_value": [ + 7004 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_opening_duels_stream_cursor_value_input": { + "attempts": [ + 41 + ], + "deaths": [ + 41 + ], + "match_id": [ + 6672 + ], + "match_lineup_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "side": [ + 85 + ], + "steam_id": [ + 312 + ], + "traded_deaths": [ + 41 + ], + "wins": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_opening_duels_sum_fields": { + "attempts": [ + 41 + ], + "deaths": [ + 41 + ], + "steam_id": [ + 312 + ], + "traded_deaths": [ + 41 + ], + "wins": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_opening_duels_sum_order_by": { + "attempts": [ + 3648 + ], + "deaths": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "traded_deaths": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_opening_duels_var_pop_fields": { + "attempts": [ + 32 + ], + "deaths": [ + 32 + ], + "steam_id": [ + 32 + ], + "traded_deaths": [ + 32 + ], + "wins": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_opening_duels_var_pop_order_by": { + "attempts": [ + 3648 + ], + "deaths": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "traded_deaths": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_opening_duels_var_samp_fields": { + "attempts": [ + 32 + ], + "deaths": [ + 32 + ], + "steam_id": [ + 32 + ], + "traded_deaths": [ + 32 + ], + "wins": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_opening_duels_var_samp_order_by": { + "attempts": [ + 3648 + ], + "deaths": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "traded_deaths": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_opening_duels_variance_fields": { + "attempts": [ + 32 + ], + "deaths": [ + 32 + ], + "steam_id": [ + 32 + ], + "traded_deaths": [ + 32 + ], + "wins": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_match_player_opening_duels_variance_order_by": { + "attempts": [ + 3648 + ], + "deaths": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "traded_deaths": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_arch_nemesis": { + "attacker_id": [ + 312 + ], + "kill_count": [ + 312 + ], + "nemsis": [ + 4606 + ], + "player": [ + 4606 + ], + "victim_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_player_arch_nemesis_aggregate": { + "aggregate": [ + 7015 + ], + "nodes": [ + 7013 + ], + "__typename": [ + 85 + ] + }, + "v_player_arch_nemesis_aggregate_fields": { + "avg": [ + 7016 + ], + "count": [ + 41, + { + "columns": [ + 7021, + "[v_player_arch_nemesis_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 7018 + ], + "min": [ + 7019 + ], + "stddev": [ + 7022 + ], + "stddev_pop": [ + 7023 + ], + "stddev_samp": [ + 7024 + ], + "sum": [ + 7027 + ], + "var_pop": [ + 7028 + ], + "var_samp": [ + 7029 + ], + "variance": [ + 7030 + ], + "__typename": [ + 85 + ] + }, + "v_player_arch_nemesis_avg_fields": { + "attacker_id": [ + 32 + ], + "kill_count": [ + 32 + ], + "victim_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_arch_nemesis_bool_exp": { + "_and": [ + 7017 + ], + "_not": [ + 7017 + ], + "_or": [ + 7017 + ], + "attacker_id": [ + 314 + ], + "kill_count": [ + 314 + ], + "nemsis": [ + 4610 + ], + "player": [ + 4610 + ], + "victim_id": [ + 314 + ], + "__typename": [ + 85 + ] + }, + "v_player_arch_nemesis_max_fields": { + "attacker_id": [ + 312 + ], + "kill_count": [ + 312 + ], + "victim_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_player_arch_nemesis_min_fields": { + "attacker_id": [ + 312 + ], + "kill_count": [ + 312 + ], + "victim_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_player_arch_nemesis_order_by": { + "attacker_id": [ + 3648 + ], + "kill_count": [ + 3648 + ], + "nemsis": [ + 4619 + ], + "player": [ + 4619 + ], + "victim_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_arch_nemesis_select_column": {}, + "v_player_arch_nemesis_stddev_fields": { + "attacker_id": [ + 32 + ], + "kill_count": [ + 32 + ], + "victim_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_arch_nemesis_stddev_pop_fields": { + "attacker_id": [ + 32 + ], + "kill_count": [ + 32 + ], + "victim_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_arch_nemesis_stddev_samp_fields": { + "attacker_id": [ + 32 + ], + "kill_count": [ + 32 + ], + "victim_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_arch_nemesis_stream_cursor_input": { + "initial_value": [ + 7026 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "v_player_arch_nemesis_stream_cursor_value_input": { + "attacker_id": [ + 312 + ], + "kill_count": [ + 312 + ], + "victim_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_player_arch_nemesis_sum_fields": { + "attacker_id": [ + 312 + ], + "kill_count": [ + 312 + ], + "victim_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_player_arch_nemesis_var_pop_fields": { + "attacker_id": [ + 32 + ], + "kill_count": [ + 32 + ], + "victim_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_arch_nemesis_var_samp_fields": { + "attacker_id": [ + 32 + ], + "kill_count": [ + 32 + ], + "victim_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_arch_nemesis_variance_fields": { + "attacker_id": [ + 32 + ], + "kill_count": [ + 32 + ], + "victim_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_damage": { + "avg_damage_per_round": [ + 312 + ], + "player": [ + 4606 + ], + "player_steam_id": [ + 312 + ], + "total_damage": [ + 312 + ], + "total_rounds": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_player_damage_aggregate": { + "aggregate": [ + 7033 + ], + "nodes": [ + 7031 + ], + "__typename": [ + 85 + ] + }, + "v_player_damage_aggregate_fields": { + "avg": [ + 7034 + ], + "count": [ + 41, + { + "columns": [ + 7039, + "[v_player_damage_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 7036 + ], + "min": [ + 7037 + ], + "stddev": [ + 7040 + ], + "stddev_pop": [ + 7041 + ], + "stddev_samp": [ + 7042 + ], + "sum": [ + 7045 + ], + "var_pop": [ + 7046 + ], + "var_samp": [ + 7047 + ], + "variance": [ + 7048 + ], + "__typename": [ + 85 + ] + }, + "v_player_damage_avg_fields": { + "avg_damage_per_round": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "total_damage": [ + 32 + ], + "total_rounds": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_damage_bool_exp": { + "_and": [ + 7035 + ], + "_not": [ + 7035 + ], + "_or": [ + 7035 + ], + "avg_damage_per_round": [ + 314 + ], + "player": [ + 4610 + ], + "player_steam_id": [ + 314 + ], + "total_damage": [ + 314 + ], + "total_rounds": [ + 314 + ], + "__typename": [ + 85 + ] + }, + "v_player_damage_max_fields": { + "avg_damage_per_round": [ + 312 + ], + "player_steam_id": [ + 312 + ], + "total_damage": [ + 312 + ], + "total_rounds": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_player_damage_min_fields": { + "avg_damage_per_round": [ + 312 + ], + "player_steam_id": [ + 312 + ], + "total_damage": [ + 312 + ], + "total_rounds": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_player_damage_order_by": { + "avg_damage_per_round": [ + 3648 + ], + "player": [ + 4619 + ], + "player_steam_id": [ + 3648 + ], + "total_damage": [ + 3648 + ], + "total_rounds": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_damage_select_column": {}, + "v_player_damage_stddev_fields": { + "avg_damage_per_round": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "total_damage": [ + 32 + ], + "total_rounds": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_damage_stddev_pop_fields": { + "avg_damage_per_round": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "total_damage": [ + 32 + ], + "total_rounds": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_damage_stddev_samp_fields": { + "avg_damage_per_round": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "total_damage": [ + 32 + ], + "total_rounds": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_damage_stream_cursor_input": { + "initial_value": [ + 7044 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "v_player_damage_stream_cursor_value_input": { + "avg_damage_per_round": [ + 312 + ], + "player_steam_id": [ + 312 + ], + "total_damage": [ + 312 + ], + "total_rounds": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_player_damage_sum_fields": { + "avg_damage_per_round": [ + 312 + ], + "player_steam_id": [ + 312 + ], + "total_damage": [ + 312 + ], + "total_rounds": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_player_damage_var_pop_fields": { + "avg_damage_per_round": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "total_damage": [ + 32 + ], + "total_rounds": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_damage_var_samp_fields": { + "avg_damage_per_round": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "total_damage": [ + 32 + ], + "total_rounds": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_damage_variance_fields": { + "avg_damage_per_round": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "total_damage": [ + 32 + ], + "total_rounds": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_elo": { + "actual_score": [ + 2093 + ], + "assists": [ + 41 + ], + "current_elo": [ + 41 + ], + "damage": [ + 41 + ], + "damage_percent": [ + 2093 + ], + "deaths": [ + 41 + ], + "elo_change": [ + 41 + ], + "expected_score": [ + 2093 + ], + "impact": [ + 2093 + ], + "k_factor": [ + 41 + ], + "kda": [ + 2093 + ], + "kills": [ + 41 + ], + "map_losses": [ + 41 + ], + "map_wins": [ + 41 + ], + "match": [ + 3432 + ], + "match_created_at": [ + 5243 + ], + "match_id": [ + 6672 + ], + "match_result": [ + 85 + ], + "opponent_team_elo_avg": [ + 2093 + ], + "performance_multiplier": [ + 2093 + ], + "player_name": [ + 85 + ], + "player_steam_id": [ + 312 + ], + "player_team_elo_avg": [ + 2093 + ], + "rating_for_expected": [ + 2093 + ], + "season_id": [ + 6672 + ], + "series_multiplier": [ + 41 + ], + "team_avg_kda": [ + 2093 + ], + "type": [ + 85 + ], + "updated_elo": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_player_elo_aggregate": { + "aggregate": [ + 7063 + ], + "nodes": [ + 7049 + ], + "__typename": [ + 85 + ] + }, + "v_player_elo_aggregate_bool_exp": { + "avg": [ + 7052 + ], + "corr": [ + 7053 + ], + "count": [ + 7055 + ], + "covar_samp": [ + 7056 + ], + "max": [ + 7058 + ], + "min": [ + 7059 + ], + "stddev_samp": [ + 7060 + ], + "sum": [ + 7061 + ], + "var_samp": [ + 7062 + ], + "__typename": [ + 85 + ] + }, + "v_player_elo_aggregate_bool_exp_avg": { + "arguments": [ + 7076 + ], + "distinct": [ + 6 + ], + "filter": [ + 7068 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_player_elo_aggregate_bool_exp_corr": { + "arguments": [ + 7054 + ], + "distinct": [ + 6 + ], + "filter": [ + 7068 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_player_elo_aggregate_bool_exp_corr_arguments": { + "X": [ + 7077 + ], + "Y": [ + 7077 + ], + "__typename": [ + 85 + ] + }, + "v_player_elo_aggregate_bool_exp_count": { + "arguments": [ + 7075 + ], + "distinct": [ + 6 + ], + "filter": [ + 7068 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "v_player_elo_aggregate_bool_exp_covar_samp": { + "arguments": [ + 7057 + ], + "distinct": [ + 6 + ], + "filter": [ + 7068 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_player_elo_aggregate_bool_exp_covar_samp_arguments": { + "X": [ + 7078 + ], + "Y": [ + 7078 + ], + "__typename": [ + 85 + ] + }, + "v_player_elo_aggregate_bool_exp_max": { + "arguments": [ + 7079 + ], + "distinct": [ + 6 + ], + "filter": [ + 7068 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_player_elo_aggregate_bool_exp_min": { + "arguments": [ + 7080 + ], + "distinct": [ + 6 + ], + "filter": [ + 7068 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_player_elo_aggregate_bool_exp_stddev_samp": { + "arguments": [ + 7081 + ], + "distinct": [ + 6 + ], + "filter": [ + 7068 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_player_elo_aggregate_bool_exp_sum": { + "arguments": [ + 7082 + ], + "distinct": [ + 6 + ], + "filter": [ + 7068 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_player_elo_aggregate_bool_exp_var_samp": { + "arguments": [ + 7083 + ], + "distinct": [ + 6 + ], + "filter": [ + 7068 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_player_elo_aggregate_fields": { + "avg": [ + 7066 + ], + "count": [ + 41, + { + "columns": [ + 7075, + "[v_player_elo_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 7070 + ], + "min": [ + 7072 + ], + "stddev": [ + 7084 + ], + "stddev_pop": [ + 7086 + ], + "stddev_samp": [ + 7088 + ], + "sum": [ + 7092 + ], + "var_pop": [ + 7094 + ], + "var_samp": [ + 7096 + ], + "variance": [ + 7098 + ], + "__typename": [ + 85 + ] + }, + "v_player_elo_aggregate_order_by": { + "avg": [ + 7067 + ], + "count": [ + 3648 + ], + "max": [ + 7071 + ], + "min": [ + 7073 + ], + "stddev": [ + 7085 + ], + "stddev_pop": [ + 7087 + ], + "stddev_samp": [ + 7089 + ], + "sum": [ + 7093 + ], + "var_pop": [ + 7095 + ], + "var_samp": [ + 7097 + ], + "variance": [ + 7099 + ], + "__typename": [ + 85 + ] + }, + "v_player_elo_arr_rel_insert_input": { + "data": [ + 7069 + ], + "__typename": [ + 85 + ] + }, + "v_player_elo_avg_fields": { + "actual_score": [ + 32 + ], + "assists": [ + 32 + ], + "current_elo": [ + 32 + ], + "damage": [ + 32 + ], + "damage_percent": [ + 32 + ], + "deaths": [ + 32 + ], + "elo_change": [ + 32 + ], + "expected_score": [ + 32 + ], + "impact": [ + 32 + ], + "k_factor": [ + 32 + ], + "kda": [ + 32 + ], + "kills": [ + 32 + ], + "map_losses": [ + 32 + ], + "map_wins": [ + 32 + ], + "opponent_team_elo_avg": [ + 32 + ], + "performance_multiplier": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "player_team_elo_avg": [ + 32 + ], + "rating_for_expected": [ + 32 + ], + "series_multiplier": [ + 32 + ], + "team_avg_kda": [ + 32 + ], + "updated_elo": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_elo_avg_order_by": { + "actual_score": [ + 3648 + ], + "assists": [ + 3648 + ], + "current_elo": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_percent": [ + 3648 + ], + "deaths": [ + 3648 + ], + "elo_change": [ + 3648 + ], + "expected_score": [ + 3648 + ], + "impact": [ + 3648 + ], + "k_factor": [ + 3648 + ], + "kda": [ + 3648 + ], + "kills": [ + 3648 + ], + "map_losses": [ + 3648 + ], + "map_wins": [ + 3648 + ], + "opponent_team_elo_avg": [ + 3648 + ], + "performance_multiplier": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "player_team_elo_avg": [ + 3648 + ], + "rating_for_expected": [ + 3648 + ], + "series_multiplier": [ + 3648 + ], + "team_avg_kda": [ + 3648 + ], + "updated_elo": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_elo_bool_exp": { + "_and": [ + 7068 + ], + "_not": [ + 7068 + ], + "_or": [ + 7068 + ], + "actual_score": [ + 2094 + ], + "assists": [ + 42 + ], + "current_elo": [ + 42 + ], + "damage": [ + 42 + ], + "damage_percent": [ + 2094 + ], + "deaths": [ + 42 + ], + "elo_change": [ + 42 + ], + "expected_score": [ + 2094 + ], + "impact": [ + 2094 + ], + "k_factor": [ + 42 + ], + "kda": [ + 2094 + ], + "kills": [ + 42 + ], + "map_losses": [ + 42 + ], + "map_wins": [ + 42 + ], + "match": [ + 3443 + ], + "match_created_at": [ + 5244 + ], + "match_id": [ + 6674 + ], + "match_result": [ + 87 + ], + "opponent_team_elo_avg": [ + 2094 + ], + "performance_multiplier": [ + 2094 + ], + "player_name": [ + 87 + ], + "player_steam_id": [ + 314 + ], + "player_team_elo_avg": [ + 2094 + ], + "rating_for_expected": [ + 2094 + ], + "season_id": [ + 6674 + ], + "series_multiplier": [ + 42 + ], + "team_avg_kda": [ + 2094 + ], + "type": [ + 87 + ], + "updated_elo": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "v_player_elo_insert_input": { + "actual_score": [ + 2093 + ], + "assists": [ + 41 + ], + "current_elo": [ + 41 + ], + "damage": [ + 41 + ], + "damage_percent": [ + 2093 + ], + "deaths": [ + 41 + ], + "elo_change": [ + 41 + ], + "expected_score": [ + 2093 + ], + "impact": [ + 2093 + ], + "k_factor": [ + 41 + ], + "kda": [ + 2093 + ], + "kills": [ + 41 + ], + "map_losses": [ + 41 + ], + "map_wins": [ + 41 + ], + "match": [ + 3452 + ], + "match_created_at": [ + 5243 + ], + "match_id": [ + 6672 + ], + "match_result": [ + 85 + ], + "opponent_team_elo_avg": [ + 2093 + ], + "performance_multiplier": [ + 2093 + ], + "player_name": [ + 85 + ], + "player_steam_id": [ + 312 + ], + "player_team_elo_avg": [ + 2093 + ], + "rating_for_expected": [ + 2093 + ], + "season_id": [ + 6672 + ], + "series_multiplier": [ + 41 + ], + "team_avg_kda": [ + 2093 + ], + "type": [ + 85 + ], + "updated_elo": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_player_elo_max_fields": { + "actual_score": [ + 2093 + ], + "assists": [ + 41 + ], + "current_elo": [ + 41 + ], + "damage": [ + 41 + ], + "damage_percent": [ + 2093 + ], + "deaths": [ + 41 + ], + "elo_change": [ + 41 + ], + "expected_score": [ + 2093 + ], + "impact": [ + 2093 + ], + "k_factor": [ + 41 + ], + "kda": [ + 2093 + ], + "kills": [ + 41 + ], + "map_losses": [ + 41 + ], + "map_wins": [ + 41 + ], + "match_created_at": [ + 5243 + ], + "match_id": [ + 6672 + ], + "match_result": [ + 85 + ], + "opponent_team_elo_avg": [ + 2093 + ], + "performance_multiplier": [ + 2093 + ], + "player_name": [ + 85 + ], + "player_steam_id": [ + 312 + ], + "player_team_elo_avg": [ + 2093 + ], + "rating_for_expected": [ + 2093 + ], + "season_id": [ + 6672 + ], + "series_multiplier": [ + 41 + ], + "team_avg_kda": [ + 2093 + ], + "type": [ + 85 + ], + "updated_elo": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_player_elo_max_order_by": { + "actual_score": [ + 3648 + ], + "assists": [ + 3648 + ], + "current_elo": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_percent": [ + 3648 + ], + "deaths": [ + 3648 + ], + "elo_change": [ + 3648 + ], + "expected_score": [ + 3648 + ], + "impact": [ + 3648 + ], + "k_factor": [ + 3648 + ], + "kda": [ + 3648 + ], + "kills": [ + 3648 + ], + "map_losses": [ + 3648 + ], + "map_wins": [ + 3648 + ], + "match_created_at": [ + 3648 + ], + "match_id": [ + 3648 + ], + "match_result": [ + 3648 + ], + "opponent_team_elo_avg": [ + 3648 + ], + "performance_multiplier": [ + 3648 + ], + "player_name": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "player_team_elo_avg": [ + 3648 + ], + "rating_for_expected": [ + 3648 + ], + "season_id": [ + 3648 + ], + "series_multiplier": [ + 3648 + ], + "team_avg_kda": [ + 3648 + ], + "type": [ + 3648 + ], + "updated_elo": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_elo_min_fields": { + "actual_score": [ + 2093 + ], + "assists": [ + 41 + ], + "current_elo": [ + 41 + ], + "damage": [ + 41 + ], + "damage_percent": [ + 2093 + ], + "deaths": [ + 41 + ], + "elo_change": [ + 41 + ], + "expected_score": [ + 2093 + ], + "impact": [ + 2093 + ], + "k_factor": [ + 41 + ], + "kda": [ + 2093 + ], + "kills": [ + 41 + ], + "map_losses": [ + 41 + ], + "map_wins": [ + 41 + ], + "match_created_at": [ + 5243 + ], + "match_id": [ + 6672 + ], + "match_result": [ + 85 + ], + "opponent_team_elo_avg": [ + 2093 + ], + "performance_multiplier": [ + 2093 + ], + "player_name": [ + 85 + ], + "player_steam_id": [ + 312 + ], + "player_team_elo_avg": [ + 2093 + ], + "rating_for_expected": [ + 2093 + ], + "season_id": [ + 6672 + ], + "series_multiplier": [ + 41 + ], + "team_avg_kda": [ + 2093 + ], + "type": [ + 85 + ], + "updated_elo": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_player_elo_min_order_by": { + "actual_score": [ + 3648 + ], + "assists": [ + 3648 + ], + "current_elo": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_percent": [ + 3648 + ], + "deaths": [ + 3648 + ], + "elo_change": [ + 3648 + ], + "expected_score": [ + 3648 + ], + "impact": [ + 3648 + ], + "k_factor": [ + 3648 + ], + "kda": [ + 3648 + ], + "kills": [ + 3648 + ], + "map_losses": [ + 3648 + ], + "map_wins": [ + 3648 + ], + "match_created_at": [ + 3648 + ], + "match_id": [ + 3648 + ], + "match_result": [ + 3648 + ], + "opponent_team_elo_avg": [ + 3648 + ], + "performance_multiplier": [ + 3648 + ], + "player_name": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "player_team_elo_avg": [ + 3648 + ], + "rating_for_expected": [ + 3648 + ], + "season_id": [ + 3648 + ], + "series_multiplier": [ + 3648 + ], + "team_avg_kda": [ + 3648 + ], + "type": [ + 3648 + ], + "updated_elo": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_elo_order_by": { + "actual_score": [ + 3648 + ], + "assists": [ + 3648 + ], + "current_elo": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_percent": [ + 3648 + ], + "deaths": [ + 3648 + ], + "elo_change": [ + 3648 + ], + "expected_score": [ + 3648 + ], + "impact": [ + 3648 + ], + "k_factor": [ + 3648 + ], + "kda": [ + 3648 + ], + "kills": [ + 3648 + ], + "map_losses": [ + 3648 + ], + "map_wins": [ + 3648 + ], + "match": [ + 3454 + ], + "match_created_at": [ + 3648 + ], + "match_id": [ + 3648 + ], + "match_result": [ + 3648 + ], + "opponent_team_elo_avg": [ + 3648 + ], + "performance_multiplier": [ + 3648 + ], + "player_name": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "player_team_elo_avg": [ + 3648 + ], + "rating_for_expected": [ + 3648 + ], + "season_id": [ + 3648 + ], + "series_multiplier": [ + 3648 + ], + "team_avg_kda": [ + 3648 + ], + "type": [ + 3648 + ], + "updated_elo": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_elo_select_column": {}, + "v_player_elo_select_column_v_player_elo_aggregate_bool_exp_avg_arguments_columns": {}, + "v_player_elo_select_column_v_player_elo_aggregate_bool_exp_corr_arguments_columns": {}, + "v_player_elo_select_column_v_player_elo_aggregate_bool_exp_covar_samp_arguments_columns": {}, + "v_player_elo_select_column_v_player_elo_aggregate_bool_exp_max_arguments_columns": {}, + "v_player_elo_select_column_v_player_elo_aggregate_bool_exp_min_arguments_columns": {}, + "v_player_elo_select_column_v_player_elo_aggregate_bool_exp_stddev_samp_arguments_columns": {}, + "v_player_elo_select_column_v_player_elo_aggregate_bool_exp_sum_arguments_columns": {}, + "v_player_elo_select_column_v_player_elo_aggregate_bool_exp_var_samp_arguments_columns": {}, + "v_player_elo_stddev_fields": { + "actual_score": [ + 32 + ], + "assists": [ + 32 + ], + "current_elo": [ + 32 + ], + "damage": [ + 32 + ], + "damage_percent": [ + 32 + ], + "deaths": [ + 32 + ], + "elo_change": [ + 32 + ], + "expected_score": [ + 32 + ], + "impact": [ + 32 + ], + "k_factor": [ + 32 + ], + "kda": [ + 32 + ], + "kills": [ + 32 + ], + "map_losses": [ + 32 + ], + "map_wins": [ + 32 + ], + "opponent_team_elo_avg": [ + 32 + ], + "performance_multiplier": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "player_team_elo_avg": [ + 32 + ], + "rating_for_expected": [ + 32 + ], + "series_multiplier": [ + 32 + ], + "team_avg_kda": [ + 32 + ], + "updated_elo": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_elo_stddev_order_by": { + "actual_score": [ + 3648 + ], + "assists": [ + 3648 + ], + "current_elo": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_percent": [ + 3648 + ], + "deaths": [ + 3648 + ], + "elo_change": [ + 3648 + ], + "expected_score": [ + 3648 + ], + "impact": [ + 3648 + ], + "k_factor": [ + 3648 + ], + "kda": [ + 3648 + ], + "kills": [ + 3648 + ], + "map_losses": [ + 3648 + ], + "map_wins": [ + 3648 + ], + "opponent_team_elo_avg": [ + 3648 + ], + "performance_multiplier": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "player_team_elo_avg": [ + 3648 + ], + "rating_for_expected": [ + 3648 + ], + "series_multiplier": [ + 3648 + ], + "team_avg_kda": [ + 3648 + ], + "updated_elo": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_elo_stddev_pop_fields": { + "actual_score": [ + 32 + ], + "assists": [ + 32 + ], + "current_elo": [ + 32 + ], + "damage": [ + 32 + ], + "damage_percent": [ + 32 + ], + "deaths": [ + 32 + ], + "elo_change": [ + 32 + ], + "expected_score": [ + 32 + ], + "impact": [ + 32 + ], + "k_factor": [ + 32 + ], + "kda": [ + 32 + ], + "kills": [ + 32 + ], + "map_losses": [ + 32 + ], + "map_wins": [ + 32 + ], + "opponent_team_elo_avg": [ + 32 + ], + "performance_multiplier": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "player_team_elo_avg": [ + 32 + ], + "rating_for_expected": [ + 32 + ], + "series_multiplier": [ + 32 + ], + "team_avg_kda": [ + 32 + ], + "updated_elo": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_elo_stddev_pop_order_by": { + "actual_score": [ + 3648 + ], + "assists": [ + 3648 + ], + "current_elo": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_percent": [ + 3648 + ], + "deaths": [ + 3648 + ], + "elo_change": [ + 3648 + ], + "expected_score": [ + 3648 + ], + "impact": [ + 3648 + ], + "k_factor": [ + 3648 + ], + "kda": [ + 3648 + ], + "kills": [ + 3648 + ], + "map_losses": [ + 3648 + ], + "map_wins": [ + 3648 + ], + "opponent_team_elo_avg": [ + 3648 + ], + "performance_multiplier": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "player_team_elo_avg": [ + 3648 + ], + "rating_for_expected": [ + 3648 + ], + "series_multiplier": [ + 3648 + ], + "team_avg_kda": [ + 3648 + ], + "updated_elo": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_elo_stddev_samp_fields": { + "actual_score": [ + 32 + ], + "assists": [ + 32 + ], + "current_elo": [ + 32 + ], + "damage": [ + 32 + ], + "damage_percent": [ + 32 + ], + "deaths": [ + 32 + ], + "elo_change": [ + 32 + ], + "expected_score": [ + 32 + ], + "impact": [ + 32 + ], + "k_factor": [ + 32 + ], + "kda": [ + 32 + ], + "kills": [ + 32 + ], + "map_losses": [ + 32 + ], + "map_wins": [ + 32 + ], + "opponent_team_elo_avg": [ + 32 + ], + "performance_multiplier": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "player_team_elo_avg": [ + 32 + ], + "rating_for_expected": [ + 32 + ], + "series_multiplier": [ + 32 + ], + "team_avg_kda": [ + 32 + ], + "updated_elo": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_elo_stddev_samp_order_by": { + "actual_score": [ + 3648 + ], + "assists": [ + 3648 + ], + "current_elo": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_percent": [ + 3648 + ], + "deaths": [ + 3648 + ], + "elo_change": [ + 3648 + ], + "expected_score": [ + 3648 + ], + "impact": [ + 3648 + ], + "k_factor": [ + 3648 + ], + "kda": [ + 3648 + ], + "kills": [ + 3648 + ], + "map_losses": [ + 3648 + ], + "map_wins": [ + 3648 + ], + "opponent_team_elo_avg": [ + 3648 + ], + "performance_multiplier": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "player_team_elo_avg": [ + 3648 + ], + "rating_for_expected": [ + 3648 + ], + "series_multiplier": [ + 3648 + ], + "team_avg_kda": [ + 3648 + ], + "updated_elo": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_elo_stream_cursor_input": { + "initial_value": [ + 7091 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "v_player_elo_stream_cursor_value_input": { + "actual_score": [ + 2093 + ], + "assists": [ + 41 + ], + "current_elo": [ + 41 + ], + "damage": [ + 41 + ], + "damage_percent": [ + 2093 + ], + "deaths": [ + 41 + ], + "elo_change": [ + 41 + ], + "expected_score": [ + 2093 + ], + "impact": [ + 2093 + ], + "k_factor": [ + 41 + ], + "kda": [ + 2093 + ], + "kills": [ + 41 + ], + "map_losses": [ + 41 + ], + "map_wins": [ + 41 + ], + "match_created_at": [ + 5243 + ], + "match_id": [ + 6672 + ], + "match_result": [ + 85 + ], + "opponent_team_elo_avg": [ + 2093 + ], + "performance_multiplier": [ + 2093 + ], + "player_name": [ + 85 + ], + "player_steam_id": [ + 312 + ], + "player_team_elo_avg": [ + 2093 + ], + "rating_for_expected": [ + 2093 + ], + "season_id": [ + 6672 + ], + "series_multiplier": [ + 41 + ], + "team_avg_kda": [ + 2093 + ], + "type": [ + 85 + ], + "updated_elo": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_player_elo_sum_fields": { + "actual_score": [ + 2093 + ], + "assists": [ + 41 + ], + "current_elo": [ + 41 + ], + "damage": [ + 41 + ], + "damage_percent": [ + 2093 + ], + "deaths": [ + 41 + ], + "elo_change": [ + 41 + ], + "expected_score": [ + 2093 + ], + "impact": [ + 2093 + ], + "k_factor": [ + 41 + ], + "kda": [ + 2093 + ], + "kills": [ + 41 + ], + "map_losses": [ + 41 + ], + "map_wins": [ + 41 + ], + "opponent_team_elo_avg": [ + 2093 + ], + "performance_multiplier": [ + 2093 + ], + "player_steam_id": [ + 312 + ], + "player_team_elo_avg": [ + 2093 + ], + "rating_for_expected": [ + 2093 + ], + "series_multiplier": [ + 41 + ], + "team_avg_kda": [ + 2093 + ], + "updated_elo": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_player_elo_sum_order_by": { + "actual_score": [ + 3648 + ], + "assists": [ + 3648 + ], + "current_elo": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_percent": [ + 3648 + ], + "deaths": [ + 3648 + ], + "elo_change": [ + 3648 + ], + "expected_score": [ + 3648 + ], + "impact": [ + 3648 + ], + "k_factor": [ + 3648 + ], + "kda": [ + 3648 + ], + "kills": [ + 3648 + ], + "map_losses": [ + 3648 + ], + "map_wins": [ + 3648 + ], + "opponent_team_elo_avg": [ + 3648 + ], + "performance_multiplier": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "player_team_elo_avg": [ + 3648 + ], + "rating_for_expected": [ + 3648 + ], + "series_multiplier": [ + 3648 + ], + "team_avg_kda": [ + 3648 + ], + "updated_elo": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_elo_var_pop_fields": { + "actual_score": [ + 32 + ], + "assists": [ + 32 + ], + "current_elo": [ + 32 + ], + "damage": [ + 32 + ], + "damage_percent": [ + 32 + ], + "deaths": [ + 32 + ], + "elo_change": [ + 32 + ], + "expected_score": [ + 32 + ], + "impact": [ + 32 + ], + "k_factor": [ + 32 + ], + "kda": [ + 32 + ], + "kills": [ + 32 + ], + "map_losses": [ + 32 + ], + "map_wins": [ + 32 + ], + "opponent_team_elo_avg": [ + 32 + ], + "performance_multiplier": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "player_team_elo_avg": [ + 32 + ], + "rating_for_expected": [ + 32 + ], + "series_multiplier": [ + 32 + ], + "team_avg_kda": [ + 32 + ], + "updated_elo": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_elo_var_pop_order_by": { + "actual_score": [ + 3648 + ], + "assists": [ + 3648 + ], + "current_elo": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_percent": [ + 3648 + ], + "deaths": [ + 3648 + ], + "elo_change": [ + 3648 + ], + "expected_score": [ + 3648 + ], + "impact": [ + 3648 + ], + "k_factor": [ + 3648 + ], + "kda": [ + 3648 + ], + "kills": [ + 3648 + ], + "map_losses": [ + 3648 + ], + "map_wins": [ + 3648 + ], + "opponent_team_elo_avg": [ + 3648 + ], + "performance_multiplier": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "player_team_elo_avg": [ + 3648 + ], + "rating_for_expected": [ + 3648 + ], + "series_multiplier": [ + 3648 + ], + "team_avg_kda": [ + 3648 + ], + "updated_elo": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_elo_var_samp_fields": { + "actual_score": [ + 32 + ], + "assists": [ + 32 + ], + "current_elo": [ + 32 + ], + "damage": [ + 32 + ], + "damage_percent": [ + 32 + ], + "deaths": [ + 32 + ], + "elo_change": [ + 32 + ], + "expected_score": [ + 32 + ], + "impact": [ + 32 + ], + "k_factor": [ + 32 + ], + "kda": [ + 32 + ], + "kills": [ + 32 + ], + "map_losses": [ + 32 + ], + "map_wins": [ + 32 + ], + "opponent_team_elo_avg": [ + 32 + ], + "performance_multiplier": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "player_team_elo_avg": [ + 32 + ], + "rating_for_expected": [ + 32 + ], + "series_multiplier": [ + 32 + ], + "team_avg_kda": [ + 32 + ], + "updated_elo": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_elo_var_samp_order_by": { + "actual_score": [ + 3648 + ], + "assists": [ + 3648 + ], + "current_elo": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_percent": [ + 3648 + ], + "deaths": [ + 3648 + ], + "elo_change": [ + 3648 + ], + "expected_score": [ + 3648 + ], + "impact": [ + 3648 + ], + "k_factor": [ + 3648 + ], + "kda": [ + 3648 + ], + "kills": [ + 3648 + ], + "map_losses": [ + 3648 + ], + "map_wins": [ + 3648 + ], + "opponent_team_elo_avg": [ + 3648 + ], + "performance_multiplier": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "player_team_elo_avg": [ + 3648 + ], + "rating_for_expected": [ + 3648 + ], + "series_multiplier": [ + 3648 + ], + "team_avg_kda": [ + 3648 + ], + "updated_elo": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_elo_variance_fields": { + "actual_score": [ + 32 + ], + "assists": [ + 32 + ], + "current_elo": [ + 32 + ], + "damage": [ + 32 + ], + "damage_percent": [ + 32 + ], + "deaths": [ + 32 + ], + "elo_change": [ + 32 + ], + "expected_score": [ + 32 + ], + "impact": [ + 32 + ], + "k_factor": [ + 32 + ], + "kda": [ + 32 + ], + "kills": [ + 32 + ], + "map_losses": [ + 32 + ], + "map_wins": [ + 32 + ], + "opponent_team_elo_avg": [ + 32 + ], + "performance_multiplier": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "player_team_elo_avg": [ + 32 + ], + "rating_for_expected": [ + 32 + ], + "series_multiplier": [ + 32 + ], + "team_avg_kda": [ + 32 + ], + "updated_elo": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_elo_variance_order_by": { + "actual_score": [ + 3648 + ], + "assists": [ + 3648 + ], + "current_elo": [ + 3648 + ], + "damage": [ + 3648 + ], + "damage_percent": [ + 3648 + ], + "deaths": [ + 3648 + ], + "elo_change": [ + 3648 + ], + "expected_score": [ + 3648 + ], + "impact": [ + 3648 + ], + "k_factor": [ + 3648 + ], + "kda": [ + 3648 + ], + "kills": [ + 3648 + ], + "map_losses": [ + 3648 + ], + "map_wins": [ + 3648 + ], + "opponent_team_elo_avg": [ + 3648 + ], + "performance_multiplier": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "player_team_elo_avg": [ + 3648 + ], + "rating_for_expected": [ + 3648 + ], + "series_multiplier": [ + 3648 + ], + "team_avg_kda": [ + 3648 + ], + "updated_elo": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_map_losses": { + "map": [ + 2924 + ], + "map_id": [ + 6672 + ], + "match": [ + 3432 + ], + "match_id": [ + 6672 + ], + "started_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_player_map_losses_aggregate": { + "aggregate": [ + 7102 + ], + "nodes": [ + 7100 + ], + "__typename": [ + 85 + ] + }, + "v_player_map_losses_aggregate_fields": { + "avg": [ + 7103 + ], + "count": [ + 41, + { + "columns": [ + 7108, + "[v_player_map_losses_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 7105 + ], + "min": [ + 7106 + ], + "stddev": [ + 7109 + ], + "stddev_pop": [ + 7110 + ], + "stddev_samp": [ + 7111 + ], + "sum": [ + 7114 + ], + "var_pop": [ + 7115 + ], + "var_samp": [ + 7116 + ], + "variance": [ + 7117 + ], + "__typename": [ + 85 + ] + }, + "v_player_map_losses_avg_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_map_losses_bool_exp": { + "_and": [ + 7104 + ], + "_not": [ + 7104 + ], + "_or": [ + 7104 + ], + "map": [ + 2933 + ], + "map_id": [ + 6674 + ], + "match": [ + 3443 + ], + "match_id": [ + 6674 + ], + "started_at": [ + 5244 + ], + "steam_id": [ + 314 + ], + "__typename": [ + 85 + ] + }, + "v_player_map_losses_max_fields": { + "map_id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "started_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_player_map_losses_min_fields": { + "map_id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "started_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_player_map_losses_order_by": { + "map": [ + 2943 + ], + "map_id": [ + 3648 + ], + "match": [ + 3454 + ], + "match_id": [ + 3648 + ], + "started_at": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_map_losses_select_column": {}, + "v_player_map_losses_stddev_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_map_losses_stddev_pop_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_map_losses_stddev_samp_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_map_losses_stream_cursor_input": { + "initial_value": [ + 7113 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "v_player_map_losses_stream_cursor_value_input": { + "map_id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "started_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_player_map_losses_sum_fields": { + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_player_map_losses_var_pop_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_map_losses_var_samp_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_map_losses_variance_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_map_wins": { + "map": [ + 2924 + ], + "map_id": [ + 6672 + ], + "match": [ + 3432 + ], + "match_id": [ + 6672 + ], + "started_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_player_map_wins_aggregate": { + "aggregate": [ + 7120 + ], + "nodes": [ + 7118 + ], + "__typename": [ + 85 + ] + }, + "v_player_map_wins_aggregate_fields": { + "avg": [ + 7121 + ], + "count": [ + 41, + { + "columns": [ + 7126, + "[v_player_map_wins_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 7123 + ], + "min": [ + 7124 + ], + "stddev": [ + 7127 + ], + "stddev_pop": [ + 7128 + ], + "stddev_samp": [ + 7129 + ], + "sum": [ + 7132 + ], + "var_pop": [ + 7133 + ], + "var_samp": [ + 7134 + ], + "variance": [ + 7135 + ], + "__typename": [ + 85 + ] + }, + "v_player_map_wins_avg_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_map_wins_bool_exp": { + "_and": [ + 7122 + ], + "_not": [ + 7122 + ], + "_or": [ + 7122 + ], + "map": [ + 2933 + ], + "map_id": [ + 6674 + ], + "match": [ + 3443 + ], + "match_id": [ + 6674 + ], + "started_at": [ + 5244 + ], + "steam_id": [ + 314 + ], + "__typename": [ + 85 + ] + }, + "v_player_map_wins_max_fields": { + "map_id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "started_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_player_map_wins_min_fields": { + "map_id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "started_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_player_map_wins_order_by": { + "map": [ + 2943 + ], + "map_id": [ + 3648 + ], + "match": [ + 3454 + ], + "match_id": [ + 3648 + ], + "started_at": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_map_wins_select_column": {}, + "v_player_map_wins_stddev_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_map_wins_stddev_pop_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_map_wins_stddev_samp_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_map_wins_stream_cursor_input": { + "initial_value": [ + 7131 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "v_player_map_wins_stream_cursor_value_input": { + "map_id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "started_at": [ + 5243 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_player_map_wins_sum_fields": { + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_player_map_wins_var_pop_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_map_wins_var_samp_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_map_wins_variance_fields": { + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_head_to_head": { + "attacked": [ + 4606 + ], + "attacked_steam_id": [ + 312 + ], + "attacker": [ + 4606 + ], + "attacker_steam_id": [ + 312 + ], + "damage_dealt": [ + 41 + ], + "flash_count": [ + 312 + ], + "headshot_kills": [ + 312 + ], + "hits": [ + 312 + ], + "kills": [ + 312 + ], + "match": [ + 3432 + ], + "match_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_head_to_head_aggregate": { + "aggregate": [ + 7138 + ], + "nodes": [ + 7136 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_head_to_head_aggregate_fields": { + "avg": [ + 7139 + ], + "count": [ + 41, + { + "columns": [ + 7144, + "[v_player_match_head_to_head_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 7141 + ], + "min": [ + 7142 + ], + "stddev": [ + 7145 + ], + "stddev_pop": [ + 7146 + ], + "stddev_samp": [ + 7147 + ], + "sum": [ + 7150 + ], + "var_pop": [ + 7151 + ], + "var_samp": [ + 7152 + ], + "variance": [ + 7153 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_head_to_head_avg_fields": { + "attacked_steam_id": [ + 32 + ], + "attacker_steam_id": [ + 32 + ], + "damage_dealt": [ + 32 + ], + "flash_count": [ + 32 + ], + "headshot_kills": [ + 32 + ], + "hits": [ + 32 + ], + "kills": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_head_to_head_bool_exp": { + "_and": [ + 7140 + ], + "_not": [ + 7140 + ], + "_or": [ + 7140 + ], + "attacked": [ + 4610 + ], + "attacked_steam_id": [ + 314 + ], + "attacker": [ + 4610 + ], + "attacker_steam_id": [ + 314 + ], + "damage_dealt": [ + 42 + ], + "flash_count": [ + 314 + ], + "headshot_kills": [ + 314 + ], + "hits": [ + 314 + ], + "kills": [ + 314 + ], + "match": [ + 3443 + ], + "match_id": [ + 6674 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_head_to_head_max_fields": { + "attacked_steam_id": [ + 312 + ], + "attacker_steam_id": [ + 312 + ], + "damage_dealt": [ + 41 + ], + "flash_count": [ + 312 + ], + "headshot_kills": [ + 312 + ], + "hits": [ + 312 + ], + "kills": [ + 312 + ], + "match_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_head_to_head_min_fields": { + "attacked_steam_id": [ + 312 + ], + "attacker_steam_id": [ + 312 + ], + "damage_dealt": [ + 41 + ], + "flash_count": [ + 312 + ], + "headshot_kills": [ + 312 + ], + "hits": [ + 312 + ], + "kills": [ + 312 + ], + "match_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_head_to_head_order_by": { + "attacked": [ + 4619 + ], + "attacked_steam_id": [ + 3648 + ], + "attacker": [ + 4619 + ], + "attacker_steam_id": [ + 3648 + ], + "damage_dealt": [ + 3648 + ], + "flash_count": [ + 3648 + ], + "headshot_kills": [ + 3648 + ], + "hits": [ + 3648 + ], + "kills": [ + 3648 + ], + "match": [ + 3454 + ], + "match_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_head_to_head_select_column": {}, + "v_player_match_head_to_head_stddev_fields": { + "attacked_steam_id": [ + 32 + ], + "attacker_steam_id": [ + 32 + ], + "damage_dealt": [ + 32 + ], + "flash_count": [ + 32 + ], + "headshot_kills": [ + 32 + ], + "hits": [ + 32 + ], + "kills": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_head_to_head_stddev_pop_fields": { + "attacked_steam_id": [ + 32 + ], + "attacker_steam_id": [ + 32 + ], + "damage_dealt": [ + 32 + ], + "flash_count": [ + 32 + ], + "headshot_kills": [ + 32 + ], + "hits": [ + 32 + ], + "kills": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_head_to_head_stddev_samp_fields": { + "attacked_steam_id": [ + 32 + ], + "attacker_steam_id": [ + 32 + ], + "damage_dealt": [ + 32 + ], + "flash_count": [ + 32 + ], + "headshot_kills": [ + 32 + ], + "hits": [ + 32 + ], + "kills": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_head_to_head_stream_cursor_input": { + "initial_value": [ + 7149 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_head_to_head_stream_cursor_value_input": { + "attacked_steam_id": [ + 312 + ], + "attacker_steam_id": [ + 312 + ], + "damage_dealt": [ + 41 + ], + "flash_count": [ + 312 + ], + "headshot_kills": [ + 312 + ], + "hits": [ + 312 + ], + "kills": [ + 312 + ], + "match_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_head_to_head_sum_fields": { + "attacked_steam_id": [ + 312 + ], + "attacker_steam_id": [ + 312 + ], + "damage_dealt": [ + 41 + ], + "flash_count": [ + 312 + ], + "headshot_kills": [ + 312 + ], + "hits": [ + 312 + ], + "kills": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_head_to_head_var_pop_fields": { + "attacked_steam_id": [ + 32 + ], + "attacker_steam_id": [ + 32 + ], + "damage_dealt": [ + 32 + ], + "flash_count": [ + 32 + ], + "headshot_kills": [ + 32 + ], + "hits": [ + 32 + ], + "kills": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_head_to_head_var_samp_fields": { + "attacked_steam_id": [ + 32 + ], + "attacker_steam_id": [ + 32 + ], + "damage_dealt": [ + 32 + ], + "flash_count": [ + 32 + ], + "headshot_kills": [ + 32 + ], + "hits": [ + 32 + ], + "kills": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_head_to_head_variance_fields": { + "attacked_steam_id": [ + 32 + ], + "attacker_steam_id": [ + 32 + ], + "damage_dealt": [ + 32 + ], + "flash_count": [ + 32 + ], + "headshot_kills": [ + 32 + ], + "hits": [ + 32 + ], + "kills": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_hltv": { + "adr": [ + 3646 + ], + "apr": [ + 3646 + ], + "dpr": [ + 3646 + ], + "hltv_rating": [ + 3646 + ], + "kast_pct": [ + 3646 + ], + "kpr": [ + 3646 + ], + "match": [ + 3432 + ], + "match_id": [ + 6672 + ], + "match_map": [ + 3248 + ], + "match_map_id": [ + 6672 + ], + "player": [ + 4606 + ], + "rounds_played": [ + 41 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_hltv_aggregate": { + "aggregate": [ + 7158 + ], + "nodes": [ + 7154 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_hltv_aggregate_bool_exp": { + "count": [ + 7157 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_hltv_aggregate_bool_exp_count": { + "arguments": [ + 7172 + ], + "distinct": [ + 6 + ], + "filter": [ + 7163 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_hltv_aggregate_fields": { + "avg": [ + 7161 + ], + "count": [ + 41, + { + "columns": [ + 7172, + "[v_player_match_map_hltv_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 7166 + ], + "min": [ + 7168 + ], + "stddev": [ + 7174 + ], + "stddev_pop": [ + 7176 + ], + "stddev_samp": [ + 7178 + ], + "sum": [ + 7182 + ], + "var_pop": [ + 7185 + ], + "var_samp": [ + 7187 + ], + "variance": [ + 7189 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_hltv_aggregate_order_by": { + "avg": [ + 7162 + ], + "count": [ + 3648 + ], + "max": [ + 7167 + ], + "min": [ + 7169 + ], + "stddev": [ + 7175 + ], + "stddev_pop": [ + 7177 + ], + "stddev_samp": [ + 7179 + ], + "sum": [ + 7183 + ], + "var_pop": [ + 7186 + ], + "var_samp": [ + 7188 + ], + "variance": [ + 7190 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_hltv_arr_rel_insert_input": { + "data": [ + 7165 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_hltv_avg_fields": { + "adr": [ + 32 + ], + "apr": [ + 32 + ], + "dpr": [ + 32 + ], + "hltv_rating": [ + 32 + ], + "kast_pct": [ + 32 + ], + "kpr": [ + 32 + ], + "rounds_played": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_hltv_avg_order_by": { + "adr": [ + 3648 + ], + "apr": [ + 3648 + ], + "dpr": [ + 3648 + ], + "hltv_rating": [ + 3648 + ], + "kast_pct": [ + 3648 + ], + "kpr": [ + 3648 + ], + "rounds_played": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_hltv_bool_exp": { + "_and": [ + 7163 + ], + "_not": [ + 7163 + ], + "_or": [ + 7163 + ], + "adr": [ + 3647 + ], + "apr": [ + 3647 + ], + "dpr": [ + 3647 + ], + "hltv_rating": [ + 3647 + ], + "kast_pct": [ + 3647 + ], + "kpr": [ + 3647 + ], + "match": [ + 3443 + ], + "match_id": [ + 6674 + ], + "match_map": [ + 3257 + ], + "match_map_id": [ + 6674 + ], + "player": [ + 4610 + ], + "rounds_played": [ + 42 + ], + "steam_id": [ + 314 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_hltv_inc_input": { + "adr": [ + 3646 + ], + "apr": [ + 3646 + ], + "dpr": [ + 3646 + ], + "hltv_rating": [ + 3646 + ], + "kast_pct": [ + 3646 + ], + "kpr": [ + 3646 + ], + "rounds_played": [ + 41 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_hltv_insert_input": { + "adr": [ + 3646 + ], + "apr": [ + 3646 + ], + "dpr": [ + 3646 + ], + "hltv_rating": [ + 3646 + ], + "kast_pct": [ + 3646 + ], + "kpr": [ + 3646 + ], + "match": [ + 3452 + ], + "match_id": [ + 6672 + ], + "match_map": [ + 3266 + ], + "match_map_id": [ + 6672 + ], + "player": [ + 4617 + ], + "rounds_played": [ + 41 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_hltv_max_fields": { + "adr": [ + 3646 + ], + "apr": [ + 3646 + ], + "dpr": [ + 3646 + ], + "hltv_rating": [ + 3646 + ], + "kast_pct": [ + 3646 + ], + "kpr": [ + 3646 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "rounds_played": [ + 41 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_hltv_max_order_by": { + "adr": [ + 3648 + ], + "apr": [ + 3648 + ], + "dpr": [ + 3648 + ], + "hltv_rating": [ + 3648 + ], + "kast_pct": [ + 3648 + ], + "kpr": [ + 3648 + ], + "match_id": [ + 3648 + ], + "match_map_id": [ + 3648 + ], + "rounds_played": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_hltv_min_fields": { + "adr": [ + 3646 + ], + "apr": [ + 3646 + ], + "dpr": [ + 3646 + ], + "hltv_rating": [ + 3646 + ], + "kast_pct": [ + 3646 + ], + "kpr": [ + 3646 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "rounds_played": [ + 41 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_hltv_min_order_by": { + "adr": [ + 3648 + ], + "apr": [ + 3648 + ], + "dpr": [ + 3648 + ], + "hltv_rating": [ + 3648 + ], + "kast_pct": [ + 3648 + ], + "kpr": [ + 3648 + ], + "match_id": [ + 3648 + ], + "match_map_id": [ + 3648 + ], + "rounds_played": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_hltv_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 7154 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_hltv_order_by": { + "adr": [ + 3648 + ], + "apr": [ + 3648 + ], + "dpr": [ + 3648 + ], + "hltv_rating": [ + 3648 + ], + "kast_pct": [ + 3648 + ], + "kpr": [ + 3648 + ], + "match": [ + 3454 + ], + "match_id": [ + 3648 + ], + "match_map": [ + 3268 + ], + "match_map_id": [ + 3648 + ], + "player": [ + 4619 + ], + "rounds_played": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_hltv_select_column": {}, + "v_player_match_map_hltv_set_input": { + "adr": [ + 3646 + ], + "apr": [ + 3646 + ], + "dpr": [ + 3646 + ], + "hltv_rating": [ + 3646 + ], + "kast_pct": [ + 3646 + ], + "kpr": [ + 3646 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "rounds_played": [ + 41 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_hltv_stddev_fields": { + "adr": [ + 32 + ], + "apr": [ + 32 + ], + "dpr": [ + 32 + ], + "hltv_rating": [ + 32 + ], + "kast_pct": [ + 32 + ], + "kpr": [ + 32 + ], + "rounds_played": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_hltv_stddev_order_by": { + "adr": [ + 3648 + ], + "apr": [ + 3648 + ], + "dpr": [ + 3648 + ], + "hltv_rating": [ + 3648 + ], + "kast_pct": [ + 3648 + ], + "kpr": [ + 3648 + ], + "rounds_played": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_hltv_stddev_pop_fields": { + "adr": [ + 32 + ], + "apr": [ + 32 + ], + "dpr": [ + 32 + ], + "hltv_rating": [ + 32 + ], + "kast_pct": [ + 32 + ], + "kpr": [ + 32 + ], + "rounds_played": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_hltv_stddev_pop_order_by": { + "adr": [ + 3648 + ], + "apr": [ + 3648 + ], + "dpr": [ + 3648 + ], + "hltv_rating": [ + 3648 + ], + "kast_pct": [ + 3648 + ], + "kpr": [ + 3648 + ], + "rounds_played": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_hltv_stddev_samp_fields": { + "adr": [ + 32 + ], + "apr": [ + 32 + ], + "dpr": [ + 32 + ], + "hltv_rating": [ + 32 + ], + "kast_pct": [ + 32 + ], + "kpr": [ + 32 + ], + "rounds_played": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_hltv_stddev_samp_order_by": { + "adr": [ + 3648 + ], + "apr": [ + 3648 + ], + "dpr": [ + 3648 + ], + "hltv_rating": [ + 3648 + ], + "kast_pct": [ + 3648 + ], + "kpr": [ + 3648 + ], + "rounds_played": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_hltv_stream_cursor_input": { + "initial_value": [ + 7181 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_hltv_stream_cursor_value_input": { + "adr": [ + 3646 + ], + "apr": [ + 3646 + ], + "dpr": [ + 3646 + ], + "hltv_rating": [ + 3646 + ], + "kast_pct": [ + 3646 + ], + "kpr": [ + 3646 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "rounds_played": [ + 41 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_hltv_sum_fields": { + "adr": [ + 3646 + ], + "apr": [ + 3646 + ], + "dpr": [ + 3646 + ], + "hltv_rating": [ + 3646 + ], + "kast_pct": [ + 3646 + ], + "kpr": [ + 3646 + ], + "rounds_played": [ + 41 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_hltv_sum_order_by": { + "adr": [ + 3648 + ], + "apr": [ + 3648 + ], + "dpr": [ + 3648 + ], + "hltv_rating": [ + 3648 + ], + "kast_pct": [ + 3648 + ], + "kpr": [ + 3648 + ], + "rounds_played": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_hltv_updates": { + "_inc": [ + 7164 + ], + "_set": [ + 7173 + ], + "where": [ + 7163 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_hltv_var_pop_fields": { + "adr": [ + 32 + ], + "apr": [ + 32 + ], + "dpr": [ + 32 + ], + "hltv_rating": [ + 32 + ], + "kast_pct": [ + 32 + ], + "kpr": [ + 32 + ], + "rounds_played": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_hltv_var_pop_order_by": { + "adr": [ + 3648 + ], + "apr": [ + 3648 + ], + "dpr": [ + 3648 + ], + "hltv_rating": [ + 3648 + ], + "kast_pct": [ + 3648 + ], + "kpr": [ + 3648 + ], + "rounds_played": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_hltv_var_samp_fields": { + "adr": [ + 32 + ], + "apr": [ + 32 + ], + "dpr": [ + 32 + ], + "hltv_rating": [ + 32 + ], + "kast_pct": [ + 32 + ], + "kpr": [ + 32 + ], + "rounds_played": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_hltv_var_samp_order_by": { + "adr": [ + 3648 + ], + "apr": [ + 3648 + ], + "dpr": [ + 3648 + ], + "hltv_rating": [ + 3648 + ], + "kast_pct": [ + 3648 + ], + "kpr": [ + 3648 + ], + "rounds_played": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_hltv_variance_fields": { + "adr": [ + 32 + ], + "apr": [ + 32 + ], + "dpr": [ + 32 + ], + "hltv_rating": [ + 32 + ], + "kast_pct": [ + 32 + ], + "kpr": [ + 32 + ], + "rounds_played": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_hltv_variance_order_by": { + "adr": [ + 3648 + ], + "apr": [ + 3648 + ], + "dpr": [ + 3648 + ], + "hltv_rating": [ + 3648 + ], + "kast_pct": [ + 3648 + ], + "kpr": [ + 3648 + ], + "rounds_played": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_roles": { + "adr": [ + 3646 + ], + "awp_kills": [ + 41 + ], + "awp_share": [ + 3646 + ], + "deaths": [ + 41 + ], + "dpr": [ + 3646 + ], + "entry_rate": [ + 3646 + ], + "flash_assists": [ + 41 + ], + "hltv_rating": [ + 3646 + ], + "kast_pct": [ + 3646 + ], + "kills": [ + 41 + ], + "kpr": [ + 3646 + ], + "lineup_id": [ + 6672 + ], + "match": [ + 3432 + ], + "match_id": [ + 6672 + ], + "match_map": [ + 3248 + ], + "match_map_id": [ + 6672 + ], + "open_deaths": [ + 41 + ], + "open_kills": [ + 41 + ], + "opening_attempts": [ + 41 + ], + "player": [ + 4606 + ], + "role": [ + 85 + ], + "rounds": [ + 41 + ], + "steam_id": [ + 312 + ], + "support_idx": [ + 3646 + ], + "total_kills": [ + 41 + ], + "trade_kill_successes": [ + 41 + ], + "traded_death_successes": [ + 41 + ], + "util_damage": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_roles_aggregate": { + "aggregate": [ + 7193 + ], + "nodes": [ + 7191 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_roles_aggregate_fields": { + "avg": [ + 7194 + ], + "count": [ + 41, + { + "columns": [ + 7199, + "[v_player_match_map_roles_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 7196 + ], + "min": [ + 7197 + ], + "stddev": [ + 7200 + ], + "stddev_pop": [ + 7201 + ], + "stddev_samp": [ + 7202 + ], + "sum": [ + 7205 + ], + "var_pop": [ + 7206 + ], + "var_samp": [ + 7207 + ], + "variance": [ + 7208 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_roles_avg_fields": { + "adr": [ + 32 + ], + "awp_kills": [ + 32 + ], + "awp_share": [ + 32 + ], + "deaths": [ + 32 + ], + "dpr": [ + 32 + ], + "entry_rate": [ + 32 + ], + "flash_assists": [ + 32 + ], + "hltv_rating": [ + 32 + ], + "kast_pct": [ + 32 + ], + "kills": [ + 32 + ], + "kpr": [ + 32 + ], + "open_deaths": [ + 32 + ], + "open_kills": [ + 32 + ], + "opening_attempts": [ + 32 + ], + "rounds": [ + 32 + ], + "steam_id": [ + 32 + ], + "support_idx": [ + 32 + ], + "total_kills": [ + 32 + ], + "trade_kill_successes": [ + 32 + ], + "traded_death_successes": [ + 32 + ], + "util_damage": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_roles_bool_exp": { + "_and": [ + 7195 + ], + "_not": [ + 7195 + ], + "_or": [ + 7195 + ], + "adr": [ + 3647 + ], + "awp_kills": [ + 42 + ], + "awp_share": [ + 3647 + ], + "deaths": [ + 42 + ], + "dpr": [ + 3647 + ], + "entry_rate": [ + 3647 + ], + "flash_assists": [ + 42 + ], + "hltv_rating": [ + 3647 + ], + "kast_pct": [ + 3647 + ], + "kills": [ + 42 + ], + "kpr": [ + 3647 + ], + "lineup_id": [ + 6674 + ], + "match": [ + 3443 + ], + "match_id": [ + 6674 + ], + "match_map": [ + 3257 + ], + "match_map_id": [ + 6674 + ], + "open_deaths": [ + 42 + ], + "open_kills": [ + 42 + ], + "opening_attempts": [ + 42 + ], + "player": [ + 4610 + ], + "role": [ + 87 + ], + "rounds": [ + 42 + ], + "steam_id": [ + 314 + ], + "support_idx": [ + 3647 + ], + "total_kills": [ + 42 + ], + "trade_kill_successes": [ + 42 + ], + "traded_death_successes": [ + 42 + ], + "util_damage": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_roles_max_fields": { + "adr": [ + 3646 + ], + "awp_kills": [ + 41 + ], + "awp_share": [ + 3646 + ], + "deaths": [ + 41 + ], + "dpr": [ + 3646 + ], + "entry_rate": [ + 3646 + ], + "flash_assists": [ + 41 + ], + "hltv_rating": [ + 3646 + ], + "kast_pct": [ + 3646 + ], + "kills": [ + 41 + ], + "kpr": [ + 3646 + ], + "lineup_id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "open_deaths": [ + 41 + ], + "open_kills": [ + 41 + ], + "opening_attempts": [ + 41 + ], + "role": [ + 85 + ], + "rounds": [ + 41 + ], + "steam_id": [ + 312 + ], + "support_idx": [ + 3646 + ], + "total_kills": [ + 41 + ], + "trade_kill_successes": [ + 41 + ], + "traded_death_successes": [ + 41 + ], + "util_damage": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_roles_min_fields": { + "adr": [ + 3646 + ], + "awp_kills": [ + 41 + ], + "awp_share": [ + 3646 + ], + "deaths": [ + 41 + ], + "dpr": [ + 3646 + ], + "entry_rate": [ + 3646 + ], + "flash_assists": [ + 41 + ], + "hltv_rating": [ + 3646 + ], + "kast_pct": [ + 3646 + ], + "kills": [ + 41 + ], + "kpr": [ + 3646 + ], + "lineup_id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "open_deaths": [ + 41 + ], + "open_kills": [ + 41 + ], + "opening_attempts": [ + 41 + ], + "role": [ + 85 + ], + "rounds": [ + 41 + ], + "steam_id": [ + 312 + ], + "support_idx": [ + 3646 + ], + "total_kills": [ + 41 + ], + "trade_kill_successes": [ + 41 + ], + "traded_death_successes": [ + 41 + ], + "util_damage": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_roles_order_by": { + "adr": [ + 3648 + ], + "awp_kills": [ + 3648 + ], + "awp_share": [ + 3648 + ], + "deaths": [ + 3648 + ], + "dpr": [ + 3648 + ], + "entry_rate": [ + 3648 + ], + "flash_assists": [ + 3648 + ], + "hltv_rating": [ + 3648 + ], + "kast_pct": [ + 3648 + ], + "kills": [ + 3648 + ], + "kpr": [ + 3648 + ], + "lineup_id": [ + 3648 + ], + "match": [ + 3454 + ], + "match_id": [ + 3648 + ], + "match_map": [ + 3268 + ], + "match_map_id": [ + 3648 + ], + "open_deaths": [ + 3648 + ], + "open_kills": [ + 3648 + ], + "opening_attempts": [ + 3648 + ], + "player": [ + 4619 + ], + "role": [ + 3648 + ], + "rounds": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "support_idx": [ + 3648 + ], + "total_kills": [ + 3648 + ], + "trade_kill_successes": [ + 3648 + ], + "traded_death_successes": [ + 3648 + ], + "util_damage": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_roles_select_column": {}, + "v_player_match_map_roles_stddev_fields": { + "adr": [ + 32 + ], + "awp_kills": [ + 32 + ], + "awp_share": [ + 32 + ], + "deaths": [ + 32 + ], + "dpr": [ + 32 + ], + "entry_rate": [ + 32 + ], + "flash_assists": [ + 32 + ], + "hltv_rating": [ + 32 + ], + "kast_pct": [ + 32 + ], + "kills": [ + 32 + ], + "kpr": [ + 32 + ], + "open_deaths": [ + 32 + ], + "open_kills": [ + 32 + ], + "opening_attempts": [ + 32 + ], + "rounds": [ + 32 + ], + "steam_id": [ + 32 + ], + "support_idx": [ + 32 + ], + "total_kills": [ + 32 + ], + "trade_kill_successes": [ + 32 + ], + "traded_death_successes": [ + 32 + ], + "util_damage": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_roles_stddev_pop_fields": { + "adr": [ + 32 + ], + "awp_kills": [ + 32 + ], + "awp_share": [ + 32 + ], + "deaths": [ + 32 + ], + "dpr": [ + 32 + ], + "entry_rate": [ + 32 + ], + "flash_assists": [ + 32 + ], + "hltv_rating": [ + 32 + ], + "kast_pct": [ + 32 + ], + "kills": [ + 32 + ], + "kpr": [ + 32 + ], + "open_deaths": [ + 32 + ], + "open_kills": [ + 32 + ], + "opening_attempts": [ + 32 + ], + "rounds": [ + 32 + ], + "steam_id": [ + 32 + ], + "support_idx": [ + 32 + ], + "total_kills": [ + 32 + ], + "trade_kill_successes": [ + 32 + ], + "traded_death_successes": [ + 32 + ], + "util_damage": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_roles_stddev_samp_fields": { + "adr": [ + 32 + ], + "awp_kills": [ + 32 + ], + "awp_share": [ + 32 + ], + "deaths": [ + 32 + ], + "dpr": [ + 32 + ], + "entry_rate": [ + 32 + ], + "flash_assists": [ + 32 + ], + "hltv_rating": [ + 32 + ], + "kast_pct": [ + 32 + ], + "kills": [ + 32 + ], + "kpr": [ + 32 + ], + "open_deaths": [ + 32 + ], + "open_kills": [ + 32 + ], + "opening_attempts": [ + 32 + ], + "rounds": [ + 32 + ], + "steam_id": [ + 32 + ], + "support_idx": [ + 32 + ], + "total_kills": [ + 32 + ], + "trade_kill_successes": [ + 32 + ], + "traded_death_successes": [ + 32 + ], + "util_damage": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_roles_stream_cursor_input": { + "initial_value": [ + 7204 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_roles_stream_cursor_value_input": { + "adr": [ + 3646 + ], + "awp_kills": [ + 41 + ], + "awp_share": [ + 3646 + ], + "deaths": [ + 41 + ], + "dpr": [ + 3646 + ], + "entry_rate": [ + 3646 + ], + "flash_assists": [ + 41 + ], + "hltv_rating": [ + 3646 + ], + "kast_pct": [ + 3646 + ], + "kills": [ + 41 + ], + "kpr": [ + 3646 + ], + "lineup_id": [ + 6672 + ], + "match_id": [ + 6672 + ], + "match_map_id": [ + 6672 + ], + "open_deaths": [ + 41 + ], + "open_kills": [ + 41 + ], + "opening_attempts": [ + 41 + ], + "role": [ + 85 + ], + "rounds": [ + 41 + ], + "steam_id": [ + 312 + ], + "support_idx": [ + 3646 + ], + "total_kills": [ + 41 + ], + "trade_kill_successes": [ + 41 + ], + "traded_death_successes": [ + 41 + ], + "util_damage": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_roles_sum_fields": { + "adr": [ + 3646 + ], + "awp_kills": [ + 41 + ], + "awp_share": [ + 3646 + ], + "deaths": [ + 41 + ], + "dpr": [ + 3646 + ], + "entry_rate": [ + 3646 + ], + "flash_assists": [ + 41 + ], + "hltv_rating": [ + 3646 + ], + "kast_pct": [ + 3646 + ], + "kills": [ + 41 + ], + "kpr": [ + 3646 + ], + "open_deaths": [ + 41 + ], + "open_kills": [ + 41 + ], + "opening_attempts": [ + 41 + ], + "rounds": [ + 41 + ], + "steam_id": [ + 312 + ], + "support_idx": [ + 3646 + ], + "total_kills": [ + 41 + ], + "trade_kill_successes": [ + 41 + ], + "traded_death_successes": [ + 41 + ], + "util_damage": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_roles_var_pop_fields": { + "adr": [ + 32 + ], + "awp_kills": [ + 32 + ], + "awp_share": [ + 32 + ], + "deaths": [ + 32 + ], + "dpr": [ + 32 + ], + "entry_rate": [ + 32 + ], + "flash_assists": [ + 32 + ], + "hltv_rating": [ + 32 + ], + "kast_pct": [ + 32 + ], + "kills": [ + 32 + ], + "kpr": [ + 32 + ], + "open_deaths": [ + 32 + ], + "open_kills": [ + 32 + ], + "opening_attempts": [ + 32 + ], + "rounds": [ + 32 + ], + "steam_id": [ + 32 + ], + "support_idx": [ + 32 + ], + "total_kills": [ + 32 + ], + "trade_kill_successes": [ + 32 + ], + "traded_death_successes": [ + 32 + ], + "util_damage": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_roles_var_samp_fields": { + "adr": [ + 32 + ], + "awp_kills": [ + 32 + ], + "awp_share": [ + 32 + ], + "deaths": [ + 32 + ], + "dpr": [ + 32 + ], + "entry_rate": [ + 32 + ], + "flash_assists": [ + 32 + ], + "hltv_rating": [ + 32 + ], + "kast_pct": [ + 32 + ], + "kills": [ + 32 + ], + "kpr": [ + 32 + ], + "open_deaths": [ + 32 + ], + "open_kills": [ + 32 + ], + "opening_attempts": [ + 32 + ], + "rounds": [ + 32 + ], + "steam_id": [ + 32 + ], + "support_idx": [ + 32 + ], + "total_kills": [ + 32 + ], + "trade_kill_successes": [ + 32 + ], + "traded_death_successes": [ + 32 + ], + "util_damage": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_map_roles_variance_fields": { + "adr": [ + 32 + ], + "awp_kills": [ + 32 + ], + "awp_share": [ + 32 + ], + "deaths": [ + 32 + ], + "dpr": [ + 32 + ], + "entry_rate": [ + 32 + ], + "flash_assists": [ + 32 + ], + "hltv_rating": [ + 32 + ], + "kast_pct": [ + 32 + ], + "kills": [ + 32 + ], + "kpr": [ + 32 + ], + "open_deaths": [ + 32 + ], + "open_kills": [ + 32 + ], + "opening_attempts": [ + 32 + ], + "rounds": [ + 32 + ], + "steam_id": [ + 32 + ], + "support_idx": [ + 32 + ], + "total_kills": [ + 32 + ], + "trade_kill_successes": [ + 32 + ], + "traded_death_successes": [ + 32 + ], + "util_damage": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_performance": { + "assists": [ + 41 + ], + "deaths": [ + 41 + ], + "kills": [ + 41 + ], + "map": [ + 2924 + ], + "map_id": [ + 6672 + ], + "match": [ + 3432 + ], + "match_created_at": [ + 5243 + ], + "match_id": [ + 6672 + ], + "match_result": [ + 85 + ], + "player_steam_id": [ + 312 + ], + "source": [ + 85 + ], + "type": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_performance_aggregate": { + "aggregate": [ + 7211 + ], + "nodes": [ + 7209 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_performance_aggregate_fields": { + "avg": [ + 7212 + ], + "count": [ + 41, + { + "columns": [ + 7217, + "[v_player_match_performance_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 7214 + ], + "min": [ + 7215 + ], + "stddev": [ + 7218 + ], + "stddev_pop": [ + 7219 + ], + "stddev_samp": [ + 7220 + ], + "sum": [ + 7223 + ], + "var_pop": [ + 7224 + ], + "var_samp": [ + 7225 + ], + "variance": [ + 7226 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_performance_avg_fields": { + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "kills": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_performance_bool_exp": { + "_and": [ + 7213 + ], + "_not": [ + 7213 + ], + "_or": [ + 7213 + ], + "assists": [ + 42 + ], + "deaths": [ + 42 + ], + "kills": [ + 42 + ], + "map": [ + 2933 + ], + "map_id": [ + 6674 + ], + "match": [ + 3443 + ], + "match_created_at": [ + 5244 + ], + "match_id": [ + 6674 + ], + "match_result": [ + 87 + ], + "player_steam_id": [ + 314 + ], + "source": [ + 87 + ], + "type": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_performance_max_fields": { + "assists": [ + 41 + ], + "deaths": [ + 41 + ], + "kills": [ + 41 + ], + "map_id": [ + 6672 + ], + "match_created_at": [ + 5243 + ], + "match_id": [ + 6672 + ], + "match_result": [ + 85 + ], + "player_steam_id": [ + 312 + ], + "source": [ + 85 + ], + "type": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_performance_min_fields": { + "assists": [ + 41 + ], + "deaths": [ + 41 + ], + "kills": [ + 41 + ], + "map_id": [ + 6672 + ], + "match_created_at": [ + 5243 + ], + "match_id": [ + 6672 + ], + "match_result": [ + 85 + ], + "player_steam_id": [ + 312 + ], + "source": [ + 85 + ], + "type": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_performance_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "kills": [ + 3648 + ], + "map": [ + 2943 + ], + "map_id": [ + 3648 + ], + "match": [ + 3454 + ], + "match_created_at": [ + 3648 + ], + "match_id": [ + 3648 + ], + "match_result": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "source": [ + 3648 + ], + "type": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_performance_select_column": {}, + "v_player_match_performance_stddev_fields": { + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "kills": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_performance_stddev_pop_fields": { + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "kills": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_performance_stddev_samp_fields": { + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "kills": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_performance_stream_cursor_input": { + "initial_value": [ + 7222 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_performance_stream_cursor_value_input": { + "assists": [ + 41 + ], + "deaths": [ + 41 + ], + "kills": [ + 41 + ], + "map_id": [ + 6672 + ], + "match_created_at": [ + 5243 + ], + "match_id": [ + 6672 + ], + "match_result": [ + 85 + ], + "player_steam_id": [ + 312 + ], + "source": [ + 85 + ], + "type": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_performance_sum_fields": { + "assists": [ + 41 + ], + "deaths": [ + 41 + ], + "kills": [ + 41 + ], + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_performance_var_pop_fields": { + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "kills": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_performance_var_samp_fields": { + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "kills": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_performance_variance_fields": { + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "kills": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_rating": { + "adr": [ + 3646 + ], + "dpr": [ + 3646 + ], + "hltv_rating": [ + 3646 + ], + "kast_pct": [ + 3646 + ], + "kpr": [ + 3646 + ], + "match": [ + 3432 + ], + "match_id": [ + 6672 + ], + "player": [ + 4606 + ], + "rounds_played": [ + 41 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_rating_aggregate": { + "aggregate": [ + 7229 + ], + "nodes": [ + 7227 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_rating_aggregate_fields": { + "avg": [ + 7230 + ], + "count": [ + 41, + { + "columns": [ + 7235, + "[v_player_match_rating_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 7232 + ], + "min": [ + 7233 + ], + "stddev": [ + 7236 + ], + "stddev_pop": [ + 7237 + ], + "stddev_samp": [ + 7238 + ], + "sum": [ + 7241 + ], + "var_pop": [ + 7242 + ], + "var_samp": [ + 7243 + ], + "variance": [ + 7244 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_rating_avg_fields": { + "adr": [ + 32 + ], + "dpr": [ + 32 + ], + "hltv_rating": [ + 32 + ], + "kast_pct": [ + 32 + ], + "kpr": [ + 32 + ], + "rounds_played": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_rating_bool_exp": { + "_and": [ + 7231 + ], + "_not": [ + 7231 + ], + "_or": [ + 7231 + ], + "adr": [ + 3647 + ], + "dpr": [ + 3647 + ], + "hltv_rating": [ + 3647 + ], + "kast_pct": [ + 3647 + ], + "kpr": [ + 3647 + ], + "match": [ + 3443 + ], + "match_id": [ + 6674 + ], + "player": [ + 4610 + ], + "rounds_played": [ + 42 + ], + "steam_id": [ + 314 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_rating_max_fields": { + "adr": [ + 3646 + ], + "dpr": [ + 3646 + ], + "hltv_rating": [ + 3646 + ], + "kast_pct": [ + 3646 + ], + "kpr": [ + 3646 + ], + "match_id": [ + 6672 + ], + "rounds_played": [ + 41 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_rating_min_fields": { + "adr": [ + 3646 + ], + "dpr": [ + 3646 + ], + "hltv_rating": [ + 3646 + ], + "kast_pct": [ + 3646 + ], + "kpr": [ + 3646 + ], + "match_id": [ + 6672 + ], + "rounds_played": [ + 41 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_rating_order_by": { + "adr": [ + 3648 + ], + "dpr": [ + 3648 + ], + "hltv_rating": [ + 3648 + ], + "kast_pct": [ + 3648 + ], + "kpr": [ + 3648 + ], + "match": [ + 3454 + ], + "match_id": [ + 3648 + ], + "player": [ + 4619 + ], + "rounds_played": [ + 3648 + ], + "steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_rating_select_column": {}, + "v_player_match_rating_stddev_fields": { + "adr": [ + 32 + ], + "dpr": [ + 32 + ], + "hltv_rating": [ + 32 + ], + "kast_pct": [ + 32 + ], + "kpr": [ + 32 + ], + "rounds_played": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_rating_stddev_pop_fields": { + "adr": [ + 32 + ], + "dpr": [ + 32 + ], + "hltv_rating": [ + 32 + ], + "kast_pct": [ + 32 + ], + "kpr": [ + 32 + ], + "rounds_played": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_rating_stddev_samp_fields": { + "adr": [ + 32 + ], + "dpr": [ + 32 + ], + "hltv_rating": [ + 32 + ], + "kast_pct": [ + 32 + ], + "kpr": [ + 32 + ], + "rounds_played": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_rating_stream_cursor_input": { + "initial_value": [ + 7240 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_rating_stream_cursor_value_input": { + "adr": [ + 3646 + ], + "dpr": [ + 3646 + ], + "hltv_rating": [ + 3646 + ], + "kast_pct": [ + 3646 + ], + "kpr": [ + 3646 + ], + "match_id": [ + 6672 + ], + "rounds_played": [ + 41 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_rating_sum_fields": { + "adr": [ + 3646 + ], + "dpr": [ + 3646 + ], + "hltv_rating": [ + 3646 + ], + "kast_pct": [ + 3646 + ], + "kpr": [ + 3646 + ], + "rounds_played": [ + 41 + ], + "steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_rating_var_pop_fields": { + "adr": [ + 32 + ], + "dpr": [ + 32 + ], + "hltv_rating": [ + 32 + ], + "kast_pct": [ + 32 + ], + "kpr": [ + 32 + ], + "rounds_played": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_rating_var_samp_fields": { + "adr": [ + 32 + ], + "dpr": [ + 32 + ], + "hltv_rating": [ + 32 + ], + "kast_pct": [ + 32 + ], + "kpr": [ + 32 + ], + "rounds_played": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_match_rating_variance_fields": { + "adr": [ + 32 + ], + "dpr": [ + 32 + ], + "hltv_rating": [ + 32 + ], + "kast_pct": [ + 32 + ], + "kpr": [ + 32 + ], + "rounds_played": [ + 32 + ], + "steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_multi_kills": { + "attacker_steam_id": [ + 312 + ], + "kills": [ + 312 + ], + "match_id": [ + 6672 + ], + "round": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_player_multi_kills_aggregate": { + "aggregate": [ + 7249 + ], + "nodes": [ + 7245 + ], + "__typename": [ + 85 + ] + }, + "v_player_multi_kills_aggregate_bool_exp": { + "count": [ + 7248 + ], + "__typename": [ + 85 + ] + }, + "v_player_multi_kills_aggregate_bool_exp_count": { + "arguments": [ + 7261 + ], + "distinct": [ + 6 + ], + "filter": [ + 7254 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "v_player_multi_kills_aggregate_fields": { + "avg": [ + 7252 + ], + "count": [ + 41, + { + "columns": [ + 7261, + "[v_player_multi_kills_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 7256 + ], + "min": [ + 7258 + ], + "stddev": [ + 7262 + ], + "stddev_pop": [ + 7264 + ], + "stddev_samp": [ + 7266 + ], + "sum": [ + 7270 + ], + "var_pop": [ + 7272 + ], + "var_samp": [ + 7274 + ], + "variance": [ + 7276 + ], + "__typename": [ + 85 + ] + }, + "v_player_multi_kills_aggregate_order_by": { + "avg": [ + 7253 + ], + "count": [ + 3648 + ], + "max": [ + 7257 + ], + "min": [ + 7259 + ], + "stddev": [ + 7263 + ], + "stddev_pop": [ + 7265 + ], + "stddev_samp": [ + 7267 + ], + "sum": [ + 7271 + ], + "var_pop": [ + 7273 + ], + "var_samp": [ + 7275 + ], + "variance": [ + 7277 + ], + "__typename": [ + 85 + ] + }, + "v_player_multi_kills_arr_rel_insert_input": { + "data": [ + 7255 + ], + "__typename": [ + 85 + ] + }, + "v_player_multi_kills_avg_fields": { + "attacker_steam_id": [ + 32 + ], + "kills": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_multi_kills_avg_order_by": { + "attacker_steam_id": [ + 3648 + ], + "kills": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_multi_kills_bool_exp": { + "_and": [ + 7254 + ], + "_not": [ + 7254 + ], + "_or": [ + 7254 + ], + "attacker_steam_id": [ + 314 + ], + "kills": [ + 314 + ], + "match_id": [ + 6674 + ], + "round": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "v_player_multi_kills_insert_input": { + "attacker_steam_id": [ + 312 + ], + "kills": [ + 312 + ], + "match_id": [ + 6672 + ], + "round": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_player_multi_kills_max_fields": { + "attacker_steam_id": [ + 312 + ], + "kills": [ + 312 + ], + "match_id": [ + 6672 + ], + "round": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_player_multi_kills_max_order_by": { + "attacker_steam_id": [ + 3648 + ], + "kills": [ + 3648 + ], + "match_id": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_multi_kills_min_fields": { + "attacker_steam_id": [ + 312 + ], + "kills": [ + 312 + ], + "match_id": [ + 6672 + ], + "round": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_player_multi_kills_min_order_by": { + "attacker_steam_id": [ + 3648 + ], + "kills": [ + 3648 + ], + "match_id": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_multi_kills_order_by": { + "attacker_steam_id": [ + 3648 + ], + "kills": [ + 3648 + ], + "match_id": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_multi_kills_select_column": {}, + "v_player_multi_kills_stddev_fields": { + "attacker_steam_id": [ + 32 + ], + "kills": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_multi_kills_stddev_order_by": { + "attacker_steam_id": [ + 3648 + ], + "kills": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_multi_kills_stddev_pop_fields": { + "attacker_steam_id": [ + 32 + ], + "kills": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_multi_kills_stddev_pop_order_by": { + "attacker_steam_id": [ + 3648 + ], + "kills": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_multi_kills_stddev_samp_fields": { + "attacker_steam_id": [ + 32 + ], + "kills": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_multi_kills_stddev_samp_order_by": { + "attacker_steam_id": [ + 3648 + ], + "kills": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_multi_kills_stream_cursor_input": { + "initial_value": [ + 7269 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "v_player_multi_kills_stream_cursor_value_input": { + "attacker_steam_id": [ + 312 + ], + "kills": [ + 312 + ], + "match_id": [ + 6672 + ], + "round": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_player_multi_kills_sum_fields": { + "attacker_steam_id": [ + 312 + ], + "kills": [ + 312 + ], + "round": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_player_multi_kills_sum_order_by": { + "attacker_steam_id": [ + 3648 + ], + "kills": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_multi_kills_var_pop_fields": { + "attacker_steam_id": [ + 32 + ], + "kills": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_multi_kills_var_pop_order_by": { + "attacker_steam_id": [ + 3648 + ], + "kills": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_multi_kills_var_samp_fields": { + "attacker_steam_id": [ + 32 + ], + "kills": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_multi_kills_var_samp_order_by": { + "attacker_steam_id": [ + 3648 + ], + "kills": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_multi_kills_variance_fields": { + "attacker_steam_id": [ + 32 + ], + "kills": [ + 32 + ], + "round": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_multi_kills_variance_order_by": { + "attacker_steam_id": [ + 3648 + ], + "kills": [ + 3648 + ], + "round": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_queue_partners": { + "first_played_at": [ + 5243 + ], + "last_played_at": [ + 5243 + ], + "matches_together": [ + 41 + ], + "partner": [ + 4606 + ], + "partner_steam_id": [ + 312 + ], + "player": [ + 4606 + ], + "steam_id": [ + 312 + ], + "wins_together": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_player_queue_partners_aggregate": { + "aggregate": [ + 7280 + ], + "nodes": [ + 7278 + ], + "__typename": [ + 85 + ] + }, + "v_player_queue_partners_aggregate_fields": { + "avg": [ + 7281 + ], + "count": [ + 41, + { + "columns": [ + 7286, + "[v_player_queue_partners_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 7283 + ], + "min": [ + 7284 + ], + "stddev": [ + 7287 + ], + "stddev_pop": [ + 7288 + ], + "stddev_samp": [ + 7289 + ], + "sum": [ + 7292 + ], + "var_pop": [ + 7293 + ], + "var_samp": [ + 7294 + ], + "variance": [ + 7295 + ], + "__typename": [ + 85 + ] + }, + "v_player_queue_partners_avg_fields": { + "matches_together": [ + 32 + ], + "partner_steam_id": [ + 32 + ], + "steam_id": [ + 32 + ], + "wins_together": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_queue_partners_bool_exp": { + "_and": [ + 7282 + ], + "_not": [ + 7282 + ], + "_or": [ + 7282 + ], + "first_played_at": [ + 5244 + ], + "last_played_at": [ + 5244 + ], + "matches_together": [ + 42 + ], + "partner": [ + 4610 + ], + "partner_steam_id": [ + 314 + ], + "player": [ + 4610 + ], + "steam_id": [ + 314 + ], + "wins_together": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "v_player_queue_partners_max_fields": { + "first_played_at": [ + 5243 + ], + "last_played_at": [ + 5243 + ], + "matches_together": [ + 41 + ], + "partner_steam_id": [ + 312 + ], + "steam_id": [ + 312 + ], + "wins_together": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_player_queue_partners_min_fields": { + "first_played_at": [ + 5243 + ], + "last_played_at": [ + 5243 + ], + "matches_together": [ + 41 + ], + "partner_steam_id": [ + 312 + ], + "steam_id": [ + 312 + ], + "wins_together": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_player_queue_partners_order_by": { + "first_played_at": [ + 3648 + ], + "last_played_at": [ + 3648 + ], + "matches_together": [ + 3648 + ], + "partner": [ + 4619 + ], + "partner_steam_id": [ + 3648 + ], + "player": [ + 4619 + ], + "steam_id": [ + 3648 + ], + "wins_together": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_queue_partners_select_column": {}, + "v_player_queue_partners_stddev_fields": { + "matches_together": [ + 32 + ], + "partner_steam_id": [ + 32 + ], + "steam_id": [ + 32 + ], + "wins_together": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_queue_partners_stddev_pop_fields": { + "matches_together": [ + 32 + ], + "partner_steam_id": [ + 32 + ], + "steam_id": [ + 32 + ], + "wins_together": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_queue_partners_stddev_samp_fields": { + "matches_together": [ + 32 + ], + "partner_steam_id": [ + 32 + ], + "steam_id": [ + 32 + ], + "wins_together": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_queue_partners_stream_cursor_input": { + "initial_value": [ + 7291 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "v_player_queue_partners_stream_cursor_value_input": { + "first_played_at": [ + 5243 + ], + "last_played_at": [ + 5243 + ], + "matches_together": [ + 41 + ], + "partner_steam_id": [ + 312 + ], + "steam_id": [ + 312 + ], + "wins_together": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_player_queue_partners_sum_fields": { + "matches_together": [ + 41 + ], + "partner_steam_id": [ + 312 + ], + "steam_id": [ + 312 + ], + "wins_together": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_player_queue_partners_var_pop_fields": { + "matches_together": [ + 32 + ], + "partner_steam_id": [ + 32 + ], + "steam_id": [ + 32 + ], + "wins_together": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_queue_partners_var_samp_fields": { + "matches_together": [ + 32 + ], + "partner_steam_id": [ + 32 + ], + "steam_id": [ + 32 + ], + "wins_together": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_queue_partners_variance_fields": { + "matches_together": [ + 32 + ], + "partner_steam_id": [ + 32 + ], + "steam_id": [ + 32 + ], + "wins_together": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_weapon_damage": { + "damage": [ + 312 + ], + "hits": [ + 312 + ], + "player_steam_id": [ + 312 + ], + "source": [ + 85 + ], + "type": [ + 85 + ], + "with": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "v_player_weapon_damage_aggregate": { + "aggregate": [ + 7298 + ], + "nodes": [ + 7296 + ], + "__typename": [ + 85 + ] + }, + "v_player_weapon_damage_aggregate_fields": { + "avg": [ + 7299 + ], + "count": [ + 41, + { + "columns": [ + 7304, + "[v_player_weapon_damage_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 7301 + ], + "min": [ + 7302 + ], + "stddev": [ + 7305 + ], + "stddev_pop": [ + 7306 + ], + "stddev_samp": [ + 7307 + ], + "sum": [ + 7310 + ], + "var_pop": [ + 7311 + ], + "var_samp": [ + 7312 + ], + "variance": [ + 7313 + ], + "__typename": [ + 85 + ] + }, + "v_player_weapon_damage_avg_fields": { + "damage": [ + 32 + ], + "hits": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_weapon_damage_bool_exp": { + "_and": [ + 7300 + ], + "_not": [ + 7300 + ], + "_or": [ + 7300 + ], + "damage": [ + 314 + ], + "hits": [ + 314 + ], + "player_steam_id": [ + 314 + ], + "source": [ + 87 + ], + "type": [ + 87 + ], + "with": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "v_player_weapon_damage_max_fields": { + "damage": [ + 312 + ], + "hits": [ + 312 + ], + "player_steam_id": [ + 312 + ], + "source": [ + 85 + ], + "type": [ + 85 + ], + "with": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "v_player_weapon_damage_min_fields": { + "damage": [ + 312 + ], + "hits": [ + 312 + ], + "player_steam_id": [ + 312 + ], + "source": [ + 85 + ], + "type": [ + 85 + ], + "with": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "v_player_weapon_damage_order_by": { + "damage": [ + 3648 + ], + "hits": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "source": [ + 3648 + ], + "type": [ + 3648 + ], + "with": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_weapon_damage_select_column": {}, + "v_player_weapon_damage_stddev_fields": { + "damage": [ + 32 + ], + "hits": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_weapon_damage_stddev_pop_fields": { + "damage": [ + 32 + ], + "hits": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_weapon_damage_stddev_samp_fields": { + "damage": [ + 32 + ], + "hits": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_weapon_damage_stream_cursor_input": { + "initial_value": [ + 7309 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "v_player_weapon_damage_stream_cursor_value_input": { + "damage": [ + 312 + ], + "hits": [ + 312 + ], + "player_steam_id": [ + 312 + ], + "source": [ + 85 + ], + "type": [ + 85 + ], + "with": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "v_player_weapon_damage_sum_fields": { + "damage": [ + 312 + ], + "hits": [ + 312 + ], + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_player_weapon_damage_var_pop_fields": { + "damage": [ + 32 + ], + "hits": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_weapon_damage_var_samp_fields": { + "damage": [ + 32 + ], + "hits": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_weapon_damage_variance_fields": { + "damage": [ + 32 + ], + "hits": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_weapon_kills": { + "kill_count": [ + 312 + ], + "player_steam_id": [ + 312 + ], + "rounds": [ + 312 + ], + "source": [ + 85 + ], + "type": [ + 85 + ], + "with": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "v_player_weapon_kills_aggregate": { + "aggregate": [ + 7316 + ], + "nodes": [ + 7314 + ], + "__typename": [ + 85 + ] + }, + "v_player_weapon_kills_aggregate_fields": { + "avg": [ + 7317 + ], + "count": [ + 41, + { + "columns": [ + 7322, + "[v_player_weapon_kills_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 7319 + ], + "min": [ + 7320 + ], + "stddev": [ + 7323 + ], + "stddev_pop": [ + 7324 + ], + "stddev_samp": [ + 7325 + ], + "sum": [ + 7328 + ], + "var_pop": [ + 7329 + ], + "var_samp": [ + 7330 + ], + "variance": [ + 7331 + ], + "__typename": [ + 85 + ] + }, + "v_player_weapon_kills_avg_fields": { + "kill_count": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "rounds": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_weapon_kills_bool_exp": { + "_and": [ + 7318 + ], + "_not": [ + 7318 + ], + "_or": [ + 7318 + ], + "kill_count": [ + 314 + ], + "player_steam_id": [ + 314 + ], + "rounds": [ + 314 + ], + "source": [ + 87 + ], + "type": [ + 87 + ], + "with": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "v_player_weapon_kills_max_fields": { + "kill_count": [ + 312 + ], + "player_steam_id": [ + 312 + ], + "rounds": [ + 312 + ], + "source": [ + 85 + ], + "type": [ + 85 + ], + "with": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "v_player_weapon_kills_min_fields": { + "kill_count": [ + 312 + ], + "player_steam_id": [ + 312 + ], + "rounds": [ + 312 + ], + "source": [ + 85 + ], + "type": [ + 85 + ], + "with": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "v_player_weapon_kills_order_by": { + "kill_count": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "rounds": [ + 3648 + ], + "source": [ + 3648 + ], + "type": [ + 3648 + ], + "with": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_player_weapon_kills_select_column": {}, + "v_player_weapon_kills_stddev_fields": { + "kill_count": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "rounds": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_weapon_kills_stddev_pop_fields": { + "kill_count": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "rounds": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_weapon_kills_stddev_samp_fields": { + "kill_count": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "rounds": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_weapon_kills_stream_cursor_input": { + "initial_value": [ + 7327 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "v_player_weapon_kills_stream_cursor_value_input": { + "kill_count": [ + 312 + ], + "player_steam_id": [ + 312 + ], + "rounds": [ + 312 + ], + "source": [ + 85 + ], + "type": [ + 85 + ], + "with": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "v_player_weapon_kills_sum_fields": { + "kill_count": [ + 312 + ], + "player_steam_id": [ + 312 + ], + "rounds": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_player_weapon_kills_var_pop_fields": { + "kill_count": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "rounds": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_weapon_kills_var_samp_fields": { + "kill_count": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "rounds": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_player_weapon_kills_variance_fields": { + "kill_count": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "rounds": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_pool_maps": { + "active_pool": [ + 6 + ], + "id": [ + 6672 + ], + "label": [ + 85 + ], + "map_pool": [ + 2905 + ], + "map_pool_id": [ + 6672 + ], + "name": [ + 85 + ], + "patch": [ + 85 + ], + "poster": [ + 85 + ], + "type": [ + 85 + ], + "workshop_map_id": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "v_pool_maps_aggregate": { + "aggregate": [ + 7338 + ], + "nodes": [ + 7332 + ], + "__typename": [ + 85 + ] + }, + "v_pool_maps_aggregate_bool_exp": { + "bool_and": [ + 7335 + ], + "bool_or": [ + 7336 + ], + "count": [ + 7337 + ], + "__typename": [ + 85 + ] + }, + "v_pool_maps_aggregate_bool_exp_bool_and": { + "arguments": [ + 7350 + ], + "distinct": [ + 6 + ], + "filter": [ + 7341 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "v_pool_maps_aggregate_bool_exp_bool_or": { + "arguments": [ + 7351 + ], + "distinct": [ + 6 + ], + "filter": [ + 7341 + ], + "predicate": [ + 7 + ], + "__typename": [ + 85 + ] + }, + "v_pool_maps_aggregate_bool_exp_count": { + "arguments": [ + 7349 + ], + "distinct": [ + 6 + ], + "filter": [ + 7341 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "v_pool_maps_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 7349, + "[v_pool_maps_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 7343 + ], + "min": [ + 7345 + ], + "__typename": [ + 85 + ] + }, + "v_pool_maps_aggregate_order_by": { + "count": [ + 3648 + ], + "max": [ + 7344 + ], + "min": [ + 7346 + ], + "__typename": [ + 85 + ] + }, + "v_pool_maps_arr_rel_insert_input": { + "data": [ + 7342 + ], + "__typename": [ + 85 + ] + }, + "v_pool_maps_bool_exp": { + "_and": [ + 7341 + ], + "_not": [ + 7341 + ], + "_or": [ + 7341 + ], + "active_pool": [ + 7 + ], + "id": [ + 6674 + ], + "label": [ + 87 + ], + "map_pool": [ + 2908 + ], + "map_pool_id": [ + 6674 + ], + "name": [ + 87 + ], + "patch": [ + 87 + ], + "poster": [ + 87 + ], + "type": [ + 87 + ], + "workshop_map_id": [ + 87 + ], + "__typename": [ + 85 + ] + }, + "v_pool_maps_insert_input": { + "active_pool": [ + 6 + ], + "id": [ + 6672 + ], + "label": [ + 85 + ], + "map_pool": [ + 2914 + ], + "map_pool_id": [ + 6672 + ], + "name": [ + 85 + ], + "patch": [ + 85 + ], + "poster": [ + 85 + ], + "type": [ + 85 + ], + "workshop_map_id": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "v_pool_maps_max_fields": { + "id": [ + 6672 + ], + "label": [ + 85 + ], + "map_pool_id": [ + 6672 + ], + "name": [ + 85 + ], + "patch": [ + 85 + ], + "poster": [ + 85 + ], + "type": [ + 85 + ], + "workshop_map_id": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "v_pool_maps_max_order_by": { + "id": [ + 3648 + ], + "label": [ + 3648 + ], + "map_pool_id": [ + 3648 + ], + "name": [ + 3648 + ], + "patch": [ + 3648 + ], + "poster": [ + 3648 + ], + "type": [ + 3648 + ], + "workshop_map_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_pool_maps_min_fields": { + "id": [ + 6672 + ], + "label": [ + 85 + ], + "map_pool_id": [ + 6672 + ], + "name": [ + 85 + ], + "patch": [ + 85 + ], + "poster": [ + 85 + ], + "type": [ + 85 + ], + "workshop_map_id": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "v_pool_maps_min_order_by": { + "id": [ + 3648 + ], + "label": [ + 3648 + ], + "map_pool_id": [ + 3648 + ], + "name": [ + 3648 + ], + "patch": [ + 3648 + ], + "poster": [ + 3648 + ], + "type": [ + 3648 + ], + "workshop_map_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_pool_maps_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 7332 + ], + "__typename": [ + 85 + ] + }, + "v_pool_maps_order_by": { + "active_pool": [ + 3648 + ], + "id": [ + 3648 + ], + "label": [ + 3648 + ], + "map_pool": [ + 2916 + ], + "map_pool_id": [ + 3648 + ], + "name": [ + 3648 + ], + "patch": [ + 3648 + ], + "poster": [ + 3648 + ], + "type": [ + 3648 + ], + "workshop_map_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_pool_maps_select_column": {}, + "v_pool_maps_select_column_v_pool_maps_aggregate_bool_exp_bool_and_arguments_columns": {}, + "v_pool_maps_select_column_v_pool_maps_aggregate_bool_exp_bool_or_arguments_columns": {}, + "v_pool_maps_set_input": { + "active_pool": [ + 6 + ], + "id": [ + 6672 + ], + "label": [ + 85 + ], + "map_pool_id": [ + 6672 + ], + "name": [ + 85 + ], + "patch": [ + 85 + ], + "poster": [ + 85 + ], + "type": [ + 85 + ], + "workshop_map_id": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "v_pool_maps_stream_cursor_input": { + "initial_value": [ + 7354 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "v_pool_maps_stream_cursor_value_input": { + "active_pool": [ + 6 + ], + "id": [ + 6672 + ], + "label": [ + 85 + ], + "map_pool_id": [ + 6672 + ], + "name": [ + 85 + ], + "patch": [ + 85 + ], + "poster": [ + 85 + ], + "type": [ + 85 + ], + "workshop_map_id": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "v_pool_maps_updates": { + "_set": [ + 7352 + ], + "where": [ + 7341 + ], + "__typename": [ + 85 + ] + }, + "v_steam_account_pool_status": { + "busy_accounts": [ + 41 + ], + "free_accounts": [ + 41 + ], + "id": [ + 41 + ], + "total_accounts": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_steam_account_pool_status_aggregate": { + "aggregate": [ + 7358 + ], + "nodes": [ + 7356 + ], + "__typename": [ + 85 + ] + }, + "v_steam_account_pool_status_aggregate_fields": { + "avg": [ + 7359 + ], + "count": [ + 41, + { + "columns": [ + 7364, + "[v_steam_account_pool_status_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 7361 + ], + "min": [ + 7362 + ], + "stddev": [ + 7365 + ], + "stddev_pop": [ + 7366 + ], + "stddev_samp": [ + 7367 + ], + "sum": [ + 7370 + ], + "var_pop": [ + 7371 + ], + "var_samp": [ + 7372 + ], + "variance": [ + 7373 + ], + "__typename": [ + 85 + ] + }, + "v_steam_account_pool_status_avg_fields": { + "busy_accounts": [ + 32 + ], + "free_accounts": [ + 32 + ], + "id": [ + 32 + ], + "total_accounts": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_steam_account_pool_status_bool_exp": { + "_and": [ + 7360 + ], + "_not": [ + 7360 + ], + "_or": [ + 7360 + ], + "busy_accounts": [ + 42 + ], + "free_accounts": [ + 42 + ], + "id": [ + 42 + ], + "total_accounts": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "v_steam_account_pool_status_max_fields": { + "busy_accounts": [ + 41 + ], + "free_accounts": [ + 41 + ], + "id": [ + 41 + ], + "total_accounts": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_steam_account_pool_status_min_fields": { + "busy_accounts": [ + 41 + ], + "free_accounts": [ + 41 + ], + "id": [ + 41 + ], + "total_accounts": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_steam_account_pool_status_order_by": { + "busy_accounts": [ + 3648 + ], + "free_accounts": [ + 3648 + ], + "id": [ + 3648 + ], + "total_accounts": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_steam_account_pool_status_select_column": {}, + "v_steam_account_pool_status_stddev_fields": { + "busy_accounts": [ + 32 + ], + "free_accounts": [ + 32 + ], + "id": [ + 32 + ], + "total_accounts": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_steam_account_pool_status_stddev_pop_fields": { + "busy_accounts": [ + 32 + ], + "free_accounts": [ + 32 + ], + "id": [ + 32 + ], + "total_accounts": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_steam_account_pool_status_stddev_samp_fields": { + "busy_accounts": [ + 32 + ], + "free_accounts": [ + 32 + ], + "id": [ + 32 + ], + "total_accounts": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_steam_account_pool_status_stream_cursor_input": { + "initial_value": [ + 7369 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "v_steam_account_pool_status_stream_cursor_value_input": { + "busy_accounts": [ + 41 + ], + "free_accounts": [ + 41 + ], + "id": [ + 41 + ], + "total_accounts": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_steam_account_pool_status_sum_fields": { + "busy_accounts": [ + 41 + ], + "free_accounts": [ + 41 + ], + "id": [ + 41 + ], + "total_accounts": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_steam_account_pool_status_var_pop_fields": { + "busy_accounts": [ + 32 + ], + "free_accounts": [ + 32 + ], + "id": [ + 32 + ], + "total_accounts": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_steam_account_pool_status_var_samp_fields": { + "busy_accounts": [ + 32 + ], + "free_accounts": [ + 32 + ], + "id": [ + 32 + ], + "total_accounts": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_steam_account_pool_status_variance_fields": { + "busy_accounts": [ + 32 + ], + "free_accounts": [ + 32 + ], + "id": [ + 32 + ], + "total_accounts": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_team_ranks": { + "avg_duel_elo": [ + 41 + ], + "avg_elo": [ + 41 + ], + "avg_faceit_elo": [ + 41 + ], + "avg_faceit_level": [ + 2093 + ], + "avg_premier": [ + 41 + ], + "avg_wingman_elo": [ + 41 + ], + "max_elo": [ + 41 + ], + "min_elo": [ + 41 + ], + "roster_size": [ + 312 + ], + "team": [ + 5194 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "v_team_ranks_aggregate": { + "aggregate": [ + 7376 + ], + "nodes": [ + 7374 + ], + "__typename": [ + 85 + ] + }, + "v_team_ranks_aggregate_fields": { + "avg": [ + 7377 + ], + "count": [ + 41, + { + "columns": [ + 7384, + "[v_team_ranks_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 7380 + ], + "min": [ + 7381 + ], + "stddev": [ + 7385 + ], + "stddev_pop": [ + 7386 + ], + "stddev_samp": [ + 7387 + ], + "sum": [ + 7390 + ], + "var_pop": [ + 7391 + ], + "var_samp": [ + 7392 + ], + "variance": [ + 7393 + ], + "__typename": [ + 85 + ] + }, + "v_team_ranks_avg_fields": { + "avg_duel_elo": [ + 32 + ], + "avg_elo": [ + 32 + ], + "avg_faceit_elo": [ + 32 + ], + "avg_faceit_level": [ + 32 + ], + "avg_premier": [ + 32 + ], + "avg_wingman_elo": [ + 32 + ], + "max_elo": [ + 32 + ], + "min_elo": [ + 32 + ], + "roster_size": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_team_ranks_bool_exp": { + "_and": [ + 7378 + ], + "_not": [ + 7378 + ], + "_or": [ + 7378 + ], + "avg_duel_elo": [ + 42 + ], + "avg_elo": [ + 42 + ], + "avg_faceit_elo": [ + 42 + ], + "avg_faceit_level": [ + 2094 + ], + "avg_premier": [ + 42 + ], + "avg_wingman_elo": [ + 42 + ], + "max_elo": [ + 42 + ], + "min_elo": [ + 42 + ], + "roster_size": [ + 314 + ], + "team": [ + 5205 + ], + "team_id": [ + 6674 + ], + "__typename": [ + 85 + ] + }, + "v_team_ranks_insert_input": { + "avg_duel_elo": [ + 41 + ], + "avg_elo": [ + 41 + ], + "avg_faceit_elo": [ + 41 + ], + "avg_faceit_level": [ + 2093 + ], + "avg_premier": [ + 41 + ], + "avg_wingman_elo": [ + 41 + ], + "max_elo": [ + 41 + ], + "min_elo": [ + 41 + ], + "roster_size": [ + 312 + ], + "team": [ + 5214 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "v_team_ranks_max_fields": { + "avg_duel_elo": [ + 41 + ], + "avg_elo": [ + 41 + ], + "avg_faceit_elo": [ + 41 + ], + "avg_faceit_level": [ + 2093 + ], + "avg_premier": [ + 41 + ], + "avg_wingman_elo": [ + 41 + ], + "max_elo": [ + 41 + ], + "min_elo": [ + 41 + ], + "roster_size": [ + 312 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "v_team_ranks_min_fields": { + "avg_duel_elo": [ + 41 + ], + "avg_elo": [ + 41 + ], + "avg_faceit_elo": [ + 41 + ], + "avg_faceit_level": [ + 2093 + ], + "avg_premier": [ + 41 + ], + "avg_wingman_elo": [ + 41 + ], + "max_elo": [ + 41 + ], + "min_elo": [ + 41 + ], + "roster_size": [ + 312 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "v_team_ranks_obj_rel_insert_input": { + "data": [ + 7379 + ], + "__typename": [ + 85 + ] + }, + "v_team_ranks_order_by": { + "avg_duel_elo": [ + 3648 + ], + "avg_elo": [ + 3648 + ], + "avg_faceit_elo": [ + 3648 + ], + "avg_faceit_level": [ + 3648 + ], + "avg_premier": [ + 3648 + ], + "avg_wingman_elo": [ + 3648 + ], + "max_elo": [ + 3648 + ], + "min_elo": [ + 3648 + ], + "roster_size": [ + 3648 + ], + "team": [ + 5216 + ], + "team_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_team_ranks_select_column": {}, + "v_team_ranks_stddev_fields": { + "avg_duel_elo": [ + 32 + ], + "avg_elo": [ + 32 + ], + "avg_faceit_elo": [ + 32 + ], + "avg_faceit_level": [ + 32 + ], + "avg_premier": [ + 32 + ], + "avg_wingman_elo": [ + 32 + ], + "max_elo": [ + 32 + ], + "min_elo": [ + 32 + ], + "roster_size": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_team_ranks_stddev_pop_fields": { + "avg_duel_elo": [ + 32 + ], + "avg_elo": [ + 32 + ], + "avg_faceit_elo": [ + 32 + ], + "avg_faceit_level": [ + 32 + ], + "avg_premier": [ + 32 + ], + "avg_wingman_elo": [ + 32 + ], + "max_elo": [ + 32 + ], + "min_elo": [ + 32 + ], + "roster_size": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_team_ranks_stddev_samp_fields": { + "avg_duel_elo": [ + 32 + ], + "avg_elo": [ + 32 + ], + "avg_faceit_elo": [ + 32 + ], + "avg_faceit_level": [ + 32 + ], + "avg_premier": [ + 32 + ], + "avg_wingman_elo": [ + 32 + ], + "max_elo": [ + 32 + ], + "min_elo": [ + 32 + ], + "roster_size": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_team_ranks_stream_cursor_input": { + "initial_value": [ + 7389 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "v_team_ranks_stream_cursor_value_input": { + "avg_duel_elo": [ + 41 + ], + "avg_elo": [ + 41 + ], + "avg_faceit_elo": [ + 41 + ], + "avg_faceit_level": [ + 2093 + ], + "avg_premier": [ + 41 + ], + "avg_wingman_elo": [ + 41 + ], + "max_elo": [ + 41 + ], + "min_elo": [ + 41 + ], + "roster_size": [ + 312 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "v_team_ranks_sum_fields": { + "avg_duel_elo": [ + 41 + ], + "avg_elo": [ + 41 + ], + "avg_faceit_elo": [ + 41 + ], + "avg_faceit_level": [ + 2093 + ], + "avg_premier": [ + 41 + ], + "avg_wingman_elo": [ + 41 + ], + "max_elo": [ + 41 + ], + "min_elo": [ + 41 + ], + "roster_size": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_team_ranks_var_pop_fields": { + "avg_duel_elo": [ + 32 + ], + "avg_elo": [ + 32 + ], + "avg_faceit_elo": [ + 32 + ], + "avg_faceit_level": [ + 32 + ], + "avg_premier": [ + 32 + ], + "avg_wingman_elo": [ + 32 + ], + "max_elo": [ + 32 + ], + "min_elo": [ + 32 + ], + "roster_size": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_team_ranks_var_samp_fields": { + "avg_duel_elo": [ + 32 + ], + "avg_elo": [ + 32 + ], + "avg_faceit_elo": [ + 32 + ], + "avg_faceit_level": [ + 32 + ], + "avg_premier": [ + 32 + ], + "avg_wingman_elo": [ + 32 + ], + "max_elo": [ + 32 + ], + "min_elo": [ + 32 + ], + "roster_size": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_team_ranks_variance_fields": { + "avg_duel_elo": [ + 32 + ], + "avg_elo": [ + 32 + ], + "avg_faceit_elo": [ + 32 + ], + "avg_faceit_level": [ + 32 + ], + "avg_premier": [ + 32 + ], + "avg_wingman_elo": [ + 32 + ], + "max_elo": [ + 32 + ], + "min_elo": [ + 32 + ], + "roster_size": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_team_reputation": { + "late_cancels": [ + 312 + ], + "no_shows": [ + 312 + ], + "reliability_pct": [ + 3646 + ], + "scrims_completed": [ + 312 + ], + "team": [ + 5194 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "v_team_reputation_aggregate": { + "aggregate": [ + 7396 + ], + "nodes": [ + 7394 + ], + "__typename": [ + 85 + ] + }, + "v_team_reputation_aggregate_fields": { + "avg": [ + 7397 + ], + "count": [ + 41, + { + "columns": [ + 7404, + "[v_team_reputation_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 7400 + ], + "min": [ + 7401 + ], + "stddev": [ + 7405 + ], + "stddev_pop": [ + 7406 + ], + "stddev_samp": [ + 7407 + ], + "sum": [ + 7410 + ], + "var_pop": [ + 7411 + ], + "var_samp": [ + 7412 + ], + "variance": [ + 7413 + ], + "__typename": [ + 85 + ] + }, + "v_team_reputation_avg_fields": { + "late_cancels": [ + 32 + ], + "no_shows": [ + 32 + ], + "reliability_pct": [ + 32 + ], + "scrims_completed": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_team_reputation_bool_exp": { + "_and": [ + 7398 + ], + "_not": [ + 7398 + ], + "_or": [ + 7398 + ], + "late_cancels": [ + 314 + ], + "no_shows": [ + 314 + ], + "reliability_pct": [ + 3647 + ], + "scrims_completed": [ + 314 + ], + "team": [ + 5205 + ], + "team_id": [ + 6674 + ], + "__typename": [ + 85 + ] + }, + "v_team_reputation_insert_input": { + "late_cancels": [ + 312 + ], + "no_shows": [ + 312 + ], + "reliability_pct": [ + 3646 + ], + "scrims_completed": [ + 312 + ], + "team": [ + 5214 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "v_team_reputation_max_fields": { + "late_cancels": [ + 312 + ], + "no_shows": [ + 312 + ], + "reliability_pct": [ + 3646 + ], + "scrims_completed": [ + 312 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "v_team_reputation_min_fields": { + "late_cancels": [ + 312 + ], + "no_shows": [ + 312 + ], + "reliability_pct": [ + 3646 + ], + "scrims_completed": [ + 312 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "v_team_reputation_obj_rel_insert_input": { + "data": [ + 7399 + ], + "__typename": [ + 85 + ] + }, + "v_team_reputation_order_by": { + "late_cancels": [ + 3648 + ], + "no_shows": [ + 3648 + ], + "reliability_pct": [ + 3648 + ], + "scrims_completed": [ + 3648 + ], + "team": [ + 5216 + ], + "team_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_team_reputation_select_column": {}, + "v_team_reputation_stddev_fields": { + "late_cancels": [ + 32 + ], + "no_shows": [ + 32 + ], + "reliability_pct": [ + 32 + ], + "scrims_completed": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_team_reputation_stddev_pop_fields": { + "late_cancels": [ + 32 + ], + "no_shows": [ + 32 + ], + "reliability_pct": [ + 32 + ], + "scrims_completed": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_team_reputation_stddev_samp_fields": { + "late_cancels": [ + 32 + ], + "no_shows": [ + 32 + ], + "reliability_pct": [ + 32 + ], + "scrims_completed": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_team_reputation_stream_cursor_input": { + "initial_value": [ + 7409 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "v_team_reputation_stream_cursor_value_input": { + "late_cancels": [ + 312 + ], + "no_shows": [ + 312 + ], + "reliability_pct": [ + 3646 + ], + "scrims_completed": [ + 312 + ], + "team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "v_team_reputation_sum_fields": { + "late_cancels": [ + 312 + ], + "no_shows": [ + 312 + ], + "reliability_pct": [ + 3646 + ], + "scrims_completed": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_team_reputation_var_pop_fields": { + "late_cancels": [ + 32 + ], + "no_shows": [ + 32 + ], + "reliability_pct": [ + 32 + ], + "scrims_completed": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_team_reputation_var_samp_fields": { + "late_cancels": [ + 32 + ], + "no_shows": [ + 32 + ], + "reliability_pct": [ + 32 + ], + "scrims_completed": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_team_reputation_variance_fields": { + "late_cancels": [ + 32 + ], + "no_shows": [ + 32 + ], + "reliability_pct": [ + 32 + ], + "scrims_completed": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results": { + "group_number": [ + 41 + ], + "head_to_head_match_wins": [ + 41 + ], + "head_to_head_rounds_won": [ + 41 + ], + "losses": [ + 41 + ], + "maps_lost": [ + 41 + ], + "maps_won": [ + 41 + ], + "matches_played": [ + 41 + ], + "matches_remaining": [ + 41 + ], + "placement": [ + 41 + ], + "rank": [ + 41 + ], + "rounds_lost": [ + 41 + ], + "rounds_won": [ + 41 + ], + "stage": [ + 5717 + ], + "team": [ + 5850 + ], + "team_kdr": [ + 2093 + ], + "total_deaths": [ + 41 + ], + "total_kills": [ + 41 + ], + "tournament_stage_id": [ + 6672 + ], + "tournament_team_id": [ + 6672 + ], + "wins": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_aggregate": { + "aggregate": [ + 7428 + ], + "nodes": [ + 7414 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_aggregate_bool_exp": { + "avg": [ + 7417 + ], + "corr": [ + 7418 + ], + "count": [ + 7420 + ], + "covar_samp": [ + 7421 + ], + "max": [ + 7423 + ], + "min": [ + 7424 + ], + "stddev_samp": [ + 7425 + ], + "sum": [ + 7426 + ], + "var_samp": [ + 7427 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_aggregate_bool_exp_avg": { + "arguments": [ + 7447 + ], + "distinct": [ + 6 + ], + "filter": [ + 7433 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_aggregate_bool_exp_corr": { + "arguments": [ + 7419 + ], + "distinct": [ + 6 + ], + "filter": [ + 7433 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_aggregate_bool_exp_corr_arguments": { + "X": [ + 7448 + ], + "Y": [ + 7448 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_aggregate_bool_exp_count": { + "arguments": [ + 7446 + ], + "distinct": [ + 6 + ], + "filter": [ + 7433 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_aggregate_bool_exp_covar_samp": { + "arguments": [ + 7422 + ], + "distinct": [ + 6 + ], + "filter": [ + 7433 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_aggregate_bool_exp_covar_samp_arguments": { + "X": [ + 7449 + ], + "Y": [ + 7449 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_aggregate_bool_exp_max": { + "arguments": [ + 7450 + ], + "distinct": [ + 6 + ], + "filter": [ + 7433 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_aggregate_bool_exp_min": { + "arguments": [ + 7451 + ], + "distinct": [ + 6 + ], + "filter": [ + 7433 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_aggregate_bool_exp_stddev_samp": { + "arguments": [ + 7452 + ], + "distinct": [ + 6 + ], + "filter": [ + 7433 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_aggregate_bool_exp_sum": { + "arguments": [ + 7453 + ], + "distinct": [ + 6 + ], + "filter": [ + 7433 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_aggregate_bool_exp_var_samp": { + "arguments": [ + 7454 + ], + "distinct": [ + 6 + ], + "filter": [ + 7433 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_aggregate_fields": { + "avg": [ + 7431 + ], + "count": [ + 41, + { + "columns": [ + 7446, + "[v_team_stage_results_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 7437 + ], + "min": [ + 7439 + ], + "stddev": [ + 7456 + ], + "stddev_pop": [ + 7458 + ], + "stddev_samp": [ + 7460 + ], + "sum": [ + 7464 + ], + "var_pop": [ + 7468 + ], + "var_samp": [ + 7470 + ], + "variance": [ + 7472 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_aggregate_order_by": { + "avg": [ + 7432 + ], + "count": [ + 3648 + ], + "max": [ + 7438 + ], + "min": [ + 7440 + ], + "stddev": [ + 7457 + ], + "stddev_pop": [ + 7459 + ], + "stddev_samp": [ + 7461 + ], + "sum": [ + 7465 + ], + "var_pop": [ + 7469 + ], + "var_samp": [ + 7471 + ], + "variance": [ + 7473 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_arr_rel_insert_input": { + "data": [ + 7436 + ], + "on_conflict": [ + 7443 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_avg_fields": { + "group_number": [ + 32 + ], + "head_to_head_match_wins": [ + 32 + ], + "head_to_head_rounds_won": [ + 32 + ], + "losses": [ + 32 + ], + "maps_lost": [ + 32 + ], + "maps_won": [ + 32 + ], + "matches_played": [ + 32 + ], + "matches_remaining": [ + 32 + ], + "placement": [ + 32 + ], + "rank": [ + 32 + ], + "rounds_lost": [ + 32 + ], + "rounds_won": [ + 32 + ], + "team_kdr": [ + 32 + ], + "total_deaths": [ + 32 + ], + "total_kills": [ + 32 + ], + "wins": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_avg_order_by": { + "group_number": [ + 3648 + ], + "head_to_head_match_wins": [ + 3648 + ], + "head_to_head_rounds_won": [ + 3648 + ], + "losses": [ + 3648 + ], + "maps_lost": [ + 3648 + ], + "maps_won": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "matches_remaining": [ + 3648 + ], + "placement": [ + 3648 + ], + "rank": [ + 3648 + ], + "rounds_lost": [ + 3648 + ], + "rounds_won": [ + 3648 + ], + "team_kdr": [ + 3648 + ], + "total_deaths": [ + 3648 + ], + "total_kills": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_bool_exp": { + "_and": [ + 7433 + ], + "_not": [ + 7433 + ], + "_or": [ + 7433 + ], + "group_number": [ + 42 + ], + "head_to_head_match_wins": [ + 42 + ], + "head_to_head_rounds_won": [ + 42 + ], + "losses": [ + 42 + ], + "maps_lost": [ + 42 + ], + "maps_won": [ + 42 + ], + "matches_played": [ + 42 + ], + "matches_remaining": [ + 42 + ], + "placement": [ + 42 + ], + "rank": [ + 42 + ], + "rounds_lost": [ + 42 + ], + "rounds_won": [ + 42 + ], + "stage": [ + 5729 + ], + "team": [ + 5861 + ], + "team_kdr": [ + 2094 + ], + "total_deaths": [ + 42 + ], + "total_kills": [ + 42 + ], + "tournament_stage_id": [ + 6674 + ], + "tournament_team_id": [ + 6674 + ], + "wins": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_constraint": {}, + "v_team_stage_results_inc_input": { + "group_number": [ + 41 + ], + "head_to_head_match_wins": [ + 41 + ], + "head_to_head_rounds_won": [ + 41 + ], + "losses": [ + 41 + ], + "maps_lost": [ + 41 + ], + "maps_won": [ + 41 + ], + "matches_played": [ + 41 + ], + "matches_remaining": [ + 41 + ], + "placement": [ + 41 + ], + "rank": [ + 41 + ], + "rounds_lost": [ + 41 + ], + "rounds_won": [ + 41 + ], + "team_kdr": [ + 2093 + ], + "total_deaths": [ + 41 + ], + "total_kills": [ + 41 + ], + "wins": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_insert_input": { + "group_number": [ + 41 + ], + "head_to_head_match_wins": [ + 41 + ], + "head_to_head_rounds_won": [ + 41 + ], + "losses": [ + 41 + ], + "maps_lost": [ + 41 + ], + "maps_won": [ + 41 + ], + "matches_played": [ + 41 + ], + "matches_remaining": [ + 41 + ], + "placement": [ + 41 + ], + "rank": [ + 41 + ], + "rounds_lost": [ + 41 + ], + "rounds_won": [ + 41 + ], + "stage": [ + 5741 + ], + "team": [ + 5870 + ], + "team_kdr": [ + 2093 + ], + "total_deaths": [ + 41 + ], + "total_kills": [ + 41 + ], + "tournament_stage_id": [ + 6672 + ], + "tournament_team_id": [ + 6672 + ], + "wins": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_max_fields": { + "group_number": [ + 41 + ], + "head_to_head_match_wins": [ + 41 + ], + "head_to_head_rounds_won": [ + 41 + ], + "losses": [ + 41 + ], + "maps_lost": [ + 41 + ], + "maps_won": [ + 41 + ], + "matches_played": [ + 41 + ], + "matches_remaining": [ + 41 + ], + "placement": [ + 41 + ], + "rank": [ + 41 + ], + "rounds_lost": [ + 41 + ], + "rounds_won": [ + 41 + ], + "team_kdr": [ + 2093 + ], + "total_deaths": [ + 41 + ], + "total_kills": [ + 41 + ], + "tournament_stage_id": [ + 6672 + ], + "tournament_team_id": [ + 6672 + ], + "wins": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_max_order_by": { + "group_number": [ + 3648 + ], + "head_to_head_match_wins": [ + 3648 + ], + "head_to_head_rounds_won": [ + 3648 + ], + "losses": [ + 3648 + ], + "maps_lost": [ + 3648 + ], + "maps_won": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "matches_remaining": [ + 3648 + ], + "placement": [ + 3648 + ], + "rank": [ + 3648 + ], + "rounds_lost": [ + 3648 + ], + "rounds_won": [ + 3648 + ], + "team_kdr": [ + 3648 + ], + "total_deaths": [ + 3648 + ], + "total_kills": [ + 3648 + ], + "tournament_stage_id": [ + 3648 + ], + "tournament_team_id": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_min_fields": { + "group_number": [ + 41 + ], + "head_to_head_match_wins": [ + 41 + ], + "head_to_head_rounds_won": [ + 41 + ], + "losses": [ + 41 + ], + "maps_lost": [ + 41 + ], + "maps_won": [ + 41 + ], + "matches_played": [ + 41 + ], + "matches_remaining": [ + 41 + ], + "placement": [ + 41 + ], + "rank": [ + 41 + ], + "rounds_lost": [ + 41 + ], + "rounds_won": [ + 41 + ], + "team_kdr": [ + 2093 + ], + "total_deaths": [ + 41 + ], + "total_kills": [ + 41 + ], + "tournament_stage_id": [ + 6672 + ], + "tournament_team_id": [ + 6672 + ], + "wins": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_min_order_by": { + "group_number": [ + 3648 + ], + "head_to_head_match_wins": [ + 3648 + ], + "head_to_head_rounds_won": [ + 3648 + ], + "losses": [ + 3648 + ], + "maps_lost": [ + 3648 + ], + "maps_won": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "matches_remaining": [ + 3648 + ], + "placement": [ + 3648 + ], + "rank": [ + 3648 + ], + "rounds_lost": [ + 3648 + ], + "rounds_won": [ + 3648 + ], + "team_kdr": [ + 3648 + ], + "total_deaths": [ + 3648 + ], + "total_kills": [ + 3648 + ], + "tournament_stage_id": [ + 3648 + ], + "tournament_team_id": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 7414 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_obj_rel_insert_input": { + "data": [ + 7436 + ], + "on_conflict": [ + 7443 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_on_conflict": { + "constraint": [ + 7434 + ], + "update_columns": [ + 7466 + ], + "where": [ + 7433 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_order_by": { + "group_number": [ + 3648 + ], + "head_to_head_match_wins": [ + 3648 + ], + "head_to_head_rounds_won": [ + 3648 + ], + "losses": [ + 3648 + ], + "maps_lost": [ + 3648 + ], + "maps_won": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "matches_remaining": [ + 3648 + ], + "placement": [ + 3648 + ], + "rank": [ + 3648 + ], + "rounds_lost": [ + 3648 + ], + "rounds_won": [ + 3648 + ], + "stage": [ + 5743 + ], + "team": [ + 5872 + ], + "team_kdr": [ + 3648 + ], + "total_deaths": [ + 3648 + ], + "total_kills": [ + 3648 + ], + "tournament_stage_id": [ + 3648 + ], + "tournament_team_id": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_pk_columns_input": { + "tournament_stage_id": [ + 6672 + ], + "tournament_team_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_select_column": {}, + "v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_avg_arguments_columns": {}, + "v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_corr_arguments_columns": {}, + "v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_covar_samp_arguments_columns": {}, + "v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_max_arguments_columns": {}, + "v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_min_arguments_columns": {}, + "v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_stddev_samp_arguments_columns": {}, + "v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_sum_arguments_columns": {}, + "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": [ + 41 + ], + "head_to_head_match_wins": [ + 41 + ], + "head_to_head_rounds_won": [ + 41 + ], + "losses": [ + 41 + ], + "maps_lost": [ + 41 + ], + "maps_won": [ + 41 + ], + "matches_played": [ + 41 + ], + "matches_remaining": [ + 41 + ], + "placement": [ + 41 + ], + "rank": [ + 41 + ], + "rounds_lost": [ + 41 + ], + "rounds_won": [ + 41 + ], + "team_kdr": [ + 2093 + ], + "total_deaths": [ + 41 + ], + "total_kills": [ + 41 + ], + "tournament_stage_id": [ + 6672 + ], + "tournament_team_id": [ + 6672 + ], + "wins": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_stddev_fields": { + "group_number": [ + 32 + ], + "head_to_head_match_wins": [ + 32 + ], + "head_to_head_rounds_won": [ + 32 + ], + "losses": [ + 32 + ], + "maps_lost": [ + 32 + ], + "maps_won": [ + 32 + ], + "matches_played": [ + 32 + ], + "matches_remaining": [ + 32 + ], + "placement": [ + 32 + ], + "rank": [ + 32 + ], + "rounds_lost": [ + 32 + ], + "rounds_won": [ + 32 + ], + "team_kdr": [ + 32 + ], + "total_deaths": [ + 32 + ], + "total_kills": [ + 32 + ], + "wins": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_stddev_order_by": { + "group_number": [ + 3648 + ], + "head_to_head_match_wins": [ + 3648 + ], + "head_to_head_rounds_won": [ + 3648 + ], + "losses": [ + 3648 + ], + "maps_lost": [ + 3648 + ], + "maps_won": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "matches_remaining": [ + 3648 + ], + "placement": [ + 3648 + ], + "rank": [ + 3648 + ], + "rounds_lost": [ + 3648 + ], + "rounds_won": [ + 3648 + ], + "team_kdr": [ + 3648 + ], + "total_deaths": [ + 3648 + ], + "total_kills": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_stddev_pop_fields": { + "group_number": [ + 32 + ], + "head_to_head_match_wins": [ + 32 + ], + "head_to_head_rounds_won": [ + 32 + ], + "losses": [ + 32 + ], + "maps_lost": [ + 32 + ], + "maps_won": [ + 32 + ], + "matches_played": [ + 32 + ], + "matches_remaining": [ + 32 + ], + "placement": [ + 32 + ], + "rank": [ + 32 + ], + "rounds_lost": [ + 32 + ], + "rounds_won": [ + 32 + ], + "team_kdr": [ + 32 + ], + "total_deaths": [ + 32 + ], + "total_kills": [ + 32 + ], + "wins": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_stddev_pop_order_by": { + "group_number": [ + 3648 + ], + "head_to_head_match_wins": [ + 3648 + ], + "head_to_head_rounds_won": [ + 3648 + ], + "losses": [ + 3648 + ], + "maps_lost": [ + 3648 + ], + "maps_won": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "matches_remaining": [ + 3648 + ], + "placement": [ + 3648 + ], + "rank": [ + 3648 + ], + "rounds_lost": [ + 3648 + ], + "rounds_won": [ + 3648 + ], + "team_kdr": [ + 3648 + ], + "total_deaths": [ + 3648 + ], + "total_kills": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_stddev_samp_fields": { + "group_number": [ + 32 + ], + "head_to_head_match_wins": [ + 32 + ], + "head_to_head_rounds_won": [ + 32 + ], + "losses": [ + 32 + ], + "maps_lost": [ + 32 + ], + "maps_won": [ + 32 + ], + "matches_played": [ + 32 + ], + "matches_remaining": [ + 32 + ], + "placement": [ + 32 + ], + "rank": [ + 32 + ], + "rounds_lost": [ + 32 + ], + "rounds_won": [ + 32 + ], + "team_kdr": [ + 32 + ], + "total_deaths": [ + 32 + ], + "total_kills": [ + 32 + ], + "wins": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_stddev_samp_order_by": { + "group_number": [ + 3648 + ], + "head_to_head_match_wins": [ + 3648 + ], + "head_to_head_rounds_won": [ + 3648 + ], + "losses": [ + 3648 + ], + "maps_lost": [ + 3648 + ], + "maps_won": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "matches_remaining": [ + 3648 + ], + "placement": [ + 3648 + ], + "rank": [ + 3648 + ], + "rounds_lost": [ + 3648 + ], + "rounds_won": [ + 3648 + ], + "team_kdr": [ + 3648 + ], + "total_deaths": [ + 3648 + ], + "total_kills": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_stream_cursor_input": { + "initial_value": [ + 7463 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_stream_cursor_value_input": { + "group_number": [ + 41 + ], + "head_to_head_match_wins": [ + 41 + ], + "head_to_head_rounds_won": [ + 41 + ], + "losses": [ + 41 + ], + "maps_lost": [ + 41 + ], + "maps_won": [ + 41 + ], + "matches_played": [ + 41 + ], + "matches_remaining": [ + 41 + ], + "placement": [ + 41 + ], + "rank": [ + 41 + ], + "rounds_lost": [ + 41 + ], + "rounds_won": [ + 41 + ], + "team_kdr": [ + 2093 + ], + "total_deaths": [ + 41 + ], + "total_kills": [ + 41 + ], + "tournament_stage_id": [ + 6672 + ], + "tournament_team_id": [ + 6672 + ], + "wins": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_sum_fields": { + "group_number": [ + 41 + ], + "head_to_head_match_wins": [ + 41 + ], + "head_to_head_rounds_won": [ + 41 + ], + "losses": [ + 41 + ], + "maps_lost": [ + 41 + ], + "maps_won": [ + 41 + ], + "matches_played": [ + 41 + ], + "matches_remaining": [ + 41 + ], + "placement": [ + 41 + ], + "rank": [ + 41 + ], + "rounds_lost": [ + 41 + ], + "rounds_won": [ + 41 + ], + "team_kdr": [ + 2093 + ], + "total_deaths": [ + 41 + ], + "total_kills": [ + 41 + ], + "wins": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_sum_order_by": { + "group_number": [ + 3648 + ], + "head_to_head_match_wins": [ + 3648 + ], + "head_to_head_rounds_won": [ + 3648 + ], + "losses": [ + 3648 + ], + "maps_lost": [ + 3648 + ], + "maps_won": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "matches_remaining": [ + 3648 + ], + "placement": [ + 3648 + ], + "rank": [ + 3648 + ], + "rounds_lost": [ + 3648 + ], + "rounds_won": [ + 3648 + ], + "team_kdr": [ + 3648 + ], + "total_deaths": [ + 3648 + ], + "total_kills": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_update_column": {}, + "v_team_stage_results_updates": { + "_inc": [ + 7435 + ], + "_set": [ + 7455 + ], + "where": [ + 7433 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_var_pop_fields": { + "group_number": [ + 32 + ], + "head_to_head_match_wins": [ + 32 + ], + "head_to_head_rounds_won": [ + 32 + ], + "losses": [ + 32 + ], + "maps_lost": [ + 32 + ], + "maps_won": [ + 32 + ], + "matches_played": [ + 32 + ], + "matches_remaining": [ + 32 + ], + "placement": [ + 32 + ], + "rank": [ + 32 + ], + "rounds_lost": [ + 32 + ], + "rounds_won": [ + 32 + ], + "team_kdr": [ + 32 + ], + "total_deaths": [ + 32 + ], + "total_kills": [ + 32 + ], + "wins": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_var_pop_order_by": { + "group_number": [ + 3648 + ], + "head_to_head_match_wins": [ + 3648 + ], + "head_to_head_rounds_won": [ + 3648 + ], + "losses": [ + 3648 + ], + "maps_lost": [ + 3648 + ], + "maps_won": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "matches_remaining": [ + 3648 + ], + "placement": [ + 3648 + ], + "rank": [ + 3648 + ], + "rounds_lost": [ + 3648 + ], + "rounds_won": [ + 3648 + ], + "team_kdr": [ + 3648 + ], + "total_deaths": [ + 3648 + ], + "total_kills": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_var_samp_fields": { + "group_number": [ + 32 + ], + "head_to_head_match_wins": [ + 32 + ], + "head_to_head_rounds_won": [ + 32 + ], + "losses": [ + 32 + ], + "maps_lost": [ + 32 + ], + "maps_won": [ + 32 + ], + "matches_played": [ + 32 + ], + "matches_remaining": [ + 32 + ], + "placement": [ + 32 + ], + "rank": [ + 32 + ], + "rounds_lost": [ + 32 + ], + "rounds_won": [ + 32 + ], + "team_kdr": [ + 32 + ], + "total_deaths": [ + 32 + ], + "total_kills": [ + 32 + ], + "wins": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_var_samp_order_by": { + "group_number": [ + 3648 + ], + "head_to_head_match_wins": [ + 3648 + ], + "head_to_head_rounds_won": [ + 3648 + ], + "losses": [ + 3648 + ], + "maps_lost": [ + 3648 + ], + "maps_won": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "matches_remaining": [ + 3648 + ], + "placement": [ + 3648 + ], + "rank": [ + 3648 + ], + "rounds_lost": [ + 3648 + ], + "rounds_won": [ + 3648 + ], + "team_kdr": [ + 3648 + ], + "total_deaths": [ + 3648 + ], + "total_kills": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_variance_fields": { + "group_number": [ + 32 + ], + "head_to_head_match_wins": [ + 32 + ], + "head_to_head_rounds_won": [ + 32 + ], + "losses": [ + 32 + ], + "maps_lost": [ + 32 + ], + "maps_won": [ + 32 + ], + "matches_played": [ + 32 + ], + "matches_remaining": [ + 32 + ], + "placement": [ + 32 + ], + "rank": [ + 32 + ], + "rounds_lost": [ + 32 + ], + "rounds_won": [ + 32 + ], + "team_kdr": [ + 32 + ], + "total_deaths": [ + 32 + ], + "total_kills": [ + 32 + ], + "wins": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_team_stage_results_variance_order_by": { + "group_number": [ + 3648 + ], + "head_to_head_match_wins": [ + 3648 + ], + "head_to_head_rounds_won": [ + 3648 + ], + "losses": [ + 3648 + ], + "maps_lost": [ + 3648 + ], + "maps_won": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "matches_remaining": [ + 3648 + ], + "placement": [ + 3648 + ], + "rank": [ + 3648 + ], + "rounds_lost": [ + 3648 + ], + "rounds_won": [ + 3648 + ], + "team_kdr": [ + 3648 + ], + "total_deaths": [ + 3648 + ], + "total_kills": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_team_tournament_results": { + "head_to_head_match_wins": [ + 41 + ], + "head_to_head_rounds_won": [ + 41 + ], + "losses": [ + 41 + ], + "maps_lost": [ + 41 + ], + "maps_won": [ + 41 + ], + "matches_played": [ + 41 + ], + "matches_remaining": [ + 41 + ], + "rounds_lost": [ + 41 + ], + "rounds_won": [ + 41 + ], + "team": [ + 5850 + ], + "team_kdr": [ + 2093 + ], + "total_deaths": [ + 41 + ], + "total_kills": [ + 41 + ], + "tournament": [ + 5896 + ], + "tournament_id": [ + 6672 + ], + "tournament_team_id": [ + 6672 + ], + "wins": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_team_tournament_results_aggregate": { + "aggregate": [ + 7488 + ], + "nodes": [ + 7474 + ], + "__typename": [ + 85 + ] + }, + "v_team_tournament_results_aggregate_bool_exp": { + "avg": [ + 7477 + ], + "corr": [ + 7478 + ], + "count": [ + 7480 + ], + "covar_samp": [ + 7481 + ], + "max": [ + 7483 + ], + "min": [ + 7484 + ], + "stddev_samp": [ + 7485 + ], + "sum": [ + 7486 + ], + "var_samp": [ + 7487 + ], + "__typename": [ + 85 + ] + }, + "v_team_tournament_results_aggregate_bool_exp_avg": { + "arguments": [ + 7501 + ], + "distinct": [ + 6 + ], + "filter": [ + 7493 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_team_tournament_results_aggregate_bool_exp_corr": { + "arguments": [ + 7479 + ], + "distinct": [ + 6 + ], + "filter": [ + 7493 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_team_tournament_results_aggregate_bool_exp_corr_arguments": { + "X": [ + 7502 + ], + "Y": [ + 7502 + ], + "__typename": [ + 85 + ] + }, + "v_team_tournament_results_aggregate_bool_exp_count": { + "arguments": [ + 7500 + ], + "distinct": [ + 6 + ], + "filter": [ + 7493 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "v_team_tournament_results_aggregate_bool_exp_covar_samp": { + "arguments": [ + 7482 + ], + "distinct": [ + 6 + ], + "filter": [ + 7493 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments": { + "X": [ + 7503 + ], + "Y": [ + 7503 + ], + "__typename": [ + 85 + ] + }, + "v_team_tournament_results_aggregate_bool_exp_max": { + "arguments": [ + 7504 + ], + "distinct": [ + 6 + ], + "filter": [ + 7493 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_team_tournament_results_aggregate_bool_exp_min": { + "arguments": [ + 7505 + ], + "distinct": [ + 6 + ], + "filter": [ + 7493 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_team_tournament_results_aggregate_bool_exp_stddev_samp": { + "arguments": [ + 7506 + ], + "distinct": [ + 6 + ], + "filter": [ + 7493 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_team_tournament_results_aggregate_bool_exp_sum": { + "arguments": [ + 7507 + ], + "distinct": [ + 6 + ], + "filter": [ + 7493 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_team_tournament_results_aggregate_bool_exp_var_samp": { + "arguments": [ + 7508 + ], + "distinct": [ + 6 + ], + "filter": [ + 7493 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_team_tournament_results_aggregate_fields": { + "avg": [ + 7491 + ], + "count": [ + 41, + { + "columns": [ + 7500, + "[v_team_tournament_results_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 7495 + ], + "min": [ + 7497 + ], + "stddev": [ + 7509 + ], + "stddev_pop": [ + 7511 + ], + "stddev_samp": [ + 7513 + ], + "sum": [ + 7517 + ], + "var_pop": [ + 7519 + ], + "var_samp": [ + 7521 + ], + "variance": [ + 7523 + ], + "__typename": [ + 85 + ] + }, + "v_team_tournament_results_aggregate_order_by": { + "avg": [ + 7492 + ], + "count": [ + 3648 + ], + "max": [ + 7496 + ], + "min": [ + 7498 + ], + "stddev": [ + 7510 + ], + "stddev_pop": [ + 7512 + ], + "stddev_samp": [ + 7514 + ], + "sum": [ + 7518 + ], + "var_pop": [ + 7520 + ], + "var_samp": [ + 7522 + ], + "variance": [ + 7524 + ], + "__typename": [ + 85 + ] + }, + "v_team_tournament_results_arr_rel_insert_input": { + "data": [ + 7494 + ], + "__typename": [ + 85 + ] + }, + "v_team_tournament_results_avg_fields": { + "head_to_head_match_wins": [ + 32 + ], + "head_to_head_rounds_won": [ + 32 + ], + "losses": [ + 32 + ], + "maps_lost": [ + 32 + ], + "maps_won": [ + 32 + ], + "matches_played": [ + 32 + ], + "matches_remaining": [ + 32 + ], + "rounds_lost": [ + 32 + ], + "rounds_won": [ + 32 + ], + "team_kdr": [ + 32 + ], + "total_deaths": [ + 32 + ], + "total_kills": [ + 32 + ], + "wins": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_team_tournament_results_avg_order_by": { + "head_to_head_match_wins": [ + 3648 + ], + "head_to_head_rounds_won": [ + 3648 + ], + "losses": [ + 3648 + ], + "maps_lost": [ + 3648 + ], + "maps_won": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "matches_remaining": [ + 3648 + ], + "rounds_lost": [ + 3648 + ], + "rounds_won": [ + 3648 + ], + "team_kdr": [ + 3648 + ], + "total_deaths": [ + 3648 + ], + "total_kills": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_team_tournament_results_bool_exp": { + "_and": [ + 7493 + ], + "_not": [ + 7493 + ], + "_or": [ + 7493 + ], + "head_to_head_match_wins": [ + 42 + ], + "head_to_head_rounds_won": [ + 42 + ], + "losses": [ + 42 + ], + "maps_lost": [ + 42 + ], + "maps_won": [ + 42 + ], + "matches_played": [ + 42 + ], + "matches_remaining": [ + 42 + ], + "rounds_lost": [ + 42 + ], + "rounds_won": [ + 42 + ], + "team": [ + 5861 + ], + "team_kdr": [ + 2094 + ], + "total_deaths": [ + 42 + ], + "total_kills": [ + 42 + ], + "tournament": [ + 5917 + ], + "tournament_id": [ + 6674 + ], + "tournament_team_id": [ + 6674 + ], + "wins": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "v_team_tournament_results_insert_input": { + "head_to_head_match_wins": [ + 41 + ], + "head_to_head_rounds_won": [ + 41 + ], + "losses": [ + 41 + ], + "maps_lost": [ + 41 + ], + "maps_won": [ + 41 + ], + "matches_played": [ + 41 + ], + "matches_remaining": [ + 41 + ], + "rounds_lost": [ + 41 + ], + "rounds_won": [ + 41 + ], + "team": [ + 5870 + ], + "team_kdr": [ + 2093 + ], + "total_deaths": [ + 41 + ], + "total_kills": [ + 41 + ], + "tournament": [ + 5926 + ], + "tournament_id": [ + 6672 + ], + "tournament_team_id": [ + 6672 + ], + "wins": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_team_tournament_results_max_fields": { + "head_to_head_match_wins": [ + 41 + ], + "head_to_head_rounds_won": [ + 41 + ], + "losses": [ + 41 + ], + "maps_lost": [ + 41 + ], + "maps_won": [ + 41 + ], + "matches_played": [ + 41 + ], + "matches_remaining": [ + 41 + ], + "rounds_lost": [ + 41 + ], + "rounds_won": [ + 41 + ], + "team_kdr": [ + 2093 + ], + "total_deaths": [ + 41 + ], + "total_kills": [ + 41 + ], + "tournament_id": [ + 6672 + ], + "tournament_team_id": [ + 6672 + ], + "wins": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_team_tournament_results_max_order_by": { + "head_to_head_match_wins": [ + 3648 + ], + "head_to_head_rounds_won": [ + 3648 + ], + "losses": [ + 3648 + ], + "maps_lost": [ + 3648 + ], + "maps_won": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "matches_remaining": [ + 3648 + ], + "rounds_lost": [ + 3648 + ], + "rounds_won": [ + 3648 + ], + "team_kdr": [ + 3648 + ], + "total_deaths": [ + 3648 + ], + "total_kills": [ + 3648 + ], + "tournament_id": [ + 3648 + ], + "tournament_team_id": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_team_tournament_results_min_fields": { + "head_to_head_match_wins": [ + 41 + ], + "head_to_head_rounds_won": [ + 41 + ], + "losses": [ + 41 + ], + "maps_lost": [ + 41 + ], + "maps_won": [ + 41 + ], + "matches_played": [ + 41 + ], + "matches_remaining": [ + 41 + ], + "rounds_lost": [ + 41 + ], + "rounds_won": [ + 41 + ], + "team_kdr": [ + 2093 + ], + "total_deaths": [ + 41 + ], + "total_kills": [ + 41 + ], + "tournament_id": [ + 6672 + ], + "tournament_team_id": [ + 6672 + ], + "wins": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_team_tournament_results_min_order_by": { + "head_to_head_match_wins": [ + 3648 + ], + "head_to_head_rounds_won": [ + 3648 + ], + "losses": [ + 3648 + ], + "maps_lost": [ + 3648 + ], + "maps_won": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "matches_remaining": [ + 3648 + ], + "rounds_lost": [ + 3648 + ], + "rounds_won": [ + 3648 + ], + "team_kdr": [ + 3648 + ], + "total_deaths": [ + 3648 + ], + "total_kills": [ + 3648 + ], + "tournament_id": [ + 3648 + ], + "tournament_team_id": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_team_tournament_results_order_by": { + "head_to_head_match_wins": [ + 3648 + ], + "head_to_head_rounds_won": [ + 3648 + ], + "losses": [ + 3648 + ], + "maps_lost": [ + 3648 + ], + "maps_won": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "matches_remaining": [ + 3648 + ], + "rounds_lost": [ + 3648 + ], + "rounds_won": [ + 3648 + ], + "team": [ + 5872 + ], + "team_kdr": [ + 3648 + ], + "total_deaths": [ + 3648 + ], + "total_kills": [ + 3648 + ], + "tournament": [ + 5928 + ], + "tournament_id": [ + 3648 + ], + "tournament_team_id": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_team_tournament_results_select_column": {}, + "v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_avg_arguments_columns": {}, + "v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_corr_arguments_columns": {}, + "v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments_columns": {}, + "v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_max_arguments_columns": {}, + "v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_min_arguments_columns": {}, + "v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_stddev_samp_arguments_columns": {}, + "v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_sum_arguments_columns": {}, + "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": [ + 32 + ], + "head_to_head_rounds_won": [ + 32 + ], + "losses": [ + 32 + ], + "maps_lost": [ + 32 + ], + "maps_won": [ + 32 + ], + "matches_played": [ + 32 + ], + "matches_remaining": [ + 32 + ], + "rounds_lost": [ + 32 + ], + "rounds_won": [ + 32 + ], + "team_kdr": [ + 32 + ], + "total_deaths": [ + 32 + ], + "total_kills": [ + 32 + ], + "wins": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_team_tournament_results_stddev_order_by": { + "head_to_head_match_wins": [ + 3648 + ], + "head_to_head_rounds_won": [ + 3648 + ], + "losses": [ + 3648 + ], + "maps_lost": [ + 3648 + ], + "maps_won": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "matches_remaining": [ + 3648 + ], + "rounds_lost": [ + 3648 + ], + "rounds_won": [ + 3648 + ], + "team_kdr": [ + 3648 + ], + "total_deaths": [ + 3648 + ], + "total_kills": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_team_tournament_results_stddev_pop_fields": { + "head_to_head_match_wins": [ + 32 + ], + "head_to_head_rounds_won": [ + 32 + ], + "losses": [ + 32 + ], + "maps_lost": [ + 32 + ], + "maps_won": [ + 32 + ], + "matches_played": [ + 32 + ], + "matches_remaining": [ + 32 + ], + "rounds_lost": [ + 32 + ], + "rounds_won": [ + 32 + ], + "team_kdr": [ + 32 + ], + "total_deaths": [ + 32 + ], + "total_kills": [ + 32 + ], + "wins": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_team_tournament_results_stddev_pop_order_by": { + "head_to_head_match_wins": [ + 3648 + ], + "head_to_head_rounds_won": [ + 3648 + ], + "losses": [ + 3648 + ], + "maps_lost": [ + 3648 + ], + "maps_won": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "matches_remaining": [ + 3648 + ], + "rounds_lost": [ + 3648 + ], + "rounds_won": [ + 3648 + ], + "team_kdr": [ + 3648 + ], + "total_deaths": [ + 3648 + ], + "total_kills": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_team_tournament_results_stddev_samp_fields": { + "head_to_head_match_wins": [ + 32 + ], + "head_to_head_rounds_won": [ + 32 + ], + "losses": [ + 32 + ], + "maps_lost": [ + 32 + ], + "maps_won": [ + 32 + ], + "matches_played": [ + 32 + ], + "matches_remaining": [ + 32 + ], + "rounds_lost": [ + 32 + ], + "rounds_won": [ + 32 + ], + "team_kdr": [ + 32 + ], + "total_deaths": [ + 32 + ], + "total_kills": [ + 32 + ], + "wins": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_team_tournament_results_stddev_samp_order_by": { + "head_to_head_match_wins": [ + 3648 + ], + "head_to_head_rounds_won": [ + 3648 + ], + "losses": [ + 3648 + ], + "maps_lost": [ + 3648 + ], + "maps_won": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "matches_remaining": [ + 3648 + ], + "rounds_lost": [ + 3648 + ], + "rounds_won": [ + 3648 + ], + "team_kdr": [ + 3648 + ], + "total_deaths": [ + 3648 + ], + "total_kills": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_team_tournament_results_stream_cursor_input": { + "initial_value": [ + 7516 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "v_team_tournament_results_stream_cursor_value_input": { + "head_to_head_match_wins": [ + 41 + ], + "head_to_head_rounds_won": [ + 41 + ], + "losses": [ + 41 + ], + "maps_lost": [ + 41 + ], + "maps_won": [ + 41 + ], + "matches_played": [ + 41 + ], + "matches_remaining": [ + 41 + ], + "rounds_lost": [ + 41 + ], + "rounds_won": [ + 41 + ], + "team_kdr": [ + 2093 + ], + "total_deaths": [ + 41 + ], + "total_kills": [ + 41 + ], + "tournament_id": [ + 6672 + ], + "tournament_team_id": [ + 6672 + ], + "wins": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_team_tournament_results_sum_fields": { + "head_to_head_match_wins": [ + 41 + ], + "head_to_head_rounds_won": [ + 41 + ], + "losses": [ + 41 + ], + "maps_lost": [ + 41 + ], + "maps_won": [ + 41 + ], + "matches_played": [ + 41 + ], + "matches_remaining": [ + 41 + ], + "rounds_lost": [ + 41 + ], + "rounds_won": [ + 41 + ], + "team_kdr": [ + 2093 + ], + "total_deaths": [ + 41 + ], + "total_kills": [ + 41 + ], + "wins": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "v_team_tournament_results_sum_order_by": { + "head_to_head_match_wins": [ + 3648 + ], + "head_to_head_rounds_won": [ + 3648 + ], + "losses": [ + 3648 + ], + "maps_lost": [ + 3648 + ], + "maps_won": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "matches_remaining": [ + 3648 + ], + "rounds_lost": [ + 3648 + ], + "rounds_won": [ + 3648 + ], + "team_kdr": [ + 3648 + ], + "total_deaths": [ + 3648 + ], + "total_kills": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_team_tournament_results_var_pop_fields": { + "head_to_head_match_wins": [ + 32 + ], + "head_to_head_rounds_won": [ + 32 + ], + "losses": [ + 32 + ], + "maps_lost": [ + 32 + ], + "maps_won": [ + 32 + ], + "matches_played": [ + 32 + ], + "matches_remaining": [ + 32 + ], + "rounds_lost": [ + 32 + ], + "rounds_won": [ + 32 + ], + "team_kdr": [ + 32 + ], + "total_deaths": [ + 32 + ], + "total_kills": [ + 32 + ], + "wins": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_team_tournament_results_var_pop_order_by": { + "head_to_head_match_wins": [ + 3648 + ], + "head_to_head_rounds_won": [ + 3648 + ], + "losses": [ + 3648 + ], + "maps_lost": [ + 3648 + ], + "maps_won": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "matches_remaining": [ + 3648 + ], + "rounds_lost": [ + 3648 + ], + "rounds_won": [ + 3648 + ], + "team_kdr": [ + 3648 + ], + "total_deaths": [ + 3648 + ], + "total_kills": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_team_tournament_results_var_samp_fields": { + "head_to_head_match_wins": [ + 32 + ], + "head_to_head_rounds_won": [ + 32 + ], + "losses": [ + 32 + ], + "maps_lost": [ + 32 + ], + "maps_won": [ + 32 + ], + "matches_played": [ + 32 + ], + "matches_remaining": [ + 32 + ], + "rounds_lost": [ + 32 + ], + "rounds_won": [ + 32 + ], + "team_kdr": [ + 32 + ], + "total_deaths": [ + 32 + ], + "total_kills": [ + 32 + ], + "wins": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_team_tournament_results_var_samp_order_by": { + "head_to_head_match_wins": [ + 3648 + ], + "head_to_head_rounds_won": [ + 3648 + ], + "losses": [ + 3648 + ], + "maps_lost": [ + 3648 + ], + "maps_won": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "matches_remaining": [ + 3648 + ], + "rounds_lost": [ + 3648 + ], + "rounds_won": [ + 3648 + ], + "team_kdr": [ + 3648 + ], + "total_deaths": [ + 3648 + ], + "total_kills": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_team_tournament_results_variance_fields": { + "head_to_head_match_wins": [ + 32 + ], + "head_to_head_rounds_won": [ + 32 + ], + "losses": [ + 32 + ], + "maps_lost": [ + 32 + ], + "maps_won": [ + 32 + ], + "matches_played": [ + 32 + ], + "matches_remaining": [ + 32 + ], + "rounds_lost": [ + 32 + ], + "rounds_won": [ + 32 + ], + "team_kdr": [ + 32 + ], + "total_deaths": [ + 32 + ], + "total_kills": [ + 32 + ], + "wins": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_team_tournament_results_variance_order_by": { + "head_to_head_match_wins": [ + 3648 + ], + "head_to_head_rounds_won": [ + 3648 + ], + "losses": [ + 3648 + ], + "maps_lost": [ + 3648 + ], + "maps_won": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "matches_remaining": [ + 3648 + ], + "rounds_lost": [ + 3648 + ], + "rounds_won": [ + 3648 + ], + "team_kdr": [ + 3648 + ], + "total_deaths": [ + 3648 + ], + "total_kills": [ + 3648 + ], + "wins": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_tournament_player_stats": { + "assists": [ + 41 + ], + "deaths": [ + 41 + ], + "headshot_percentage": [ + 2093 + ], + "headshots": [ + 41 + ], + "kdr": [ + 2093 + ], + "kills": [ + 41 + ], + "matches_played": [ + 41 + ], + "player": [ + 4606 + ], + "player_steam_id": [ + 312 + ], + "tournament": [ + 5896 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "v_tournament_player_stats_aggregate": { + "aggregate": [ + 7539 + ], + "nodes": [ + 7525 + ], + "__typename": [ + 85 + ] + }, + "v_tournament_player_stats_aggregate_bool_exp": { + "avg": [ + 7528 + ], + "corr": [ + 7529 + ], + "count": [ + 7531 + ], + "covar_samp": [ + 7532 + ], + "max": [ + 7534 + ], + "min": [ + 7535 + ], + "stddev_samp": [ + 7536 + ], + "sum": [ + 7537 + ], + "var_samp": [ + 7538 + ], + "__typename": [ + 85 + ] + }, + "v_tournament_player_stats_aggregate_bool_exp_avg": { + "arguments": [ + 7552 + ], + "distinct": [ + 6 + ], + "filter": [ + 7544 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_tournament_player_stats_aggregate_bool_exp_corr": { + "arguments": [ + 7530 + ], + "distinct": [ + 6 + ], + "filter": [ + 7544 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_tournament_player_stats_aggregate_bool_exp_corr_arguments": { + "X": [ + 7553 + ], + "Y": [ + 7553 + ], + "__typename": [ + 85 + ] + }, + "v_tournament_player_stats_aggregate_bool_exp_count": { + "arguments": [ + 7551 + ], + "distinct": [ + 6 + ], + "filter": [ + 7544 + ], + "predicate": [ + 42 + ], + "__typename": [ + 85 + ] + }, + "v_tournament_player_stats_aggregate_bool_exp_covar_samp": { + "arguments": [ + 7533 + ], + "distinct": [ + 6 + ], + "filter": [ + 7544 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments": { + "X": [ + 7554 + ], + "Y": [ + 7554 + ], + "__typename": [ + 85 + ] + }, + "v_tournament_player_stats_aggregate_bool_exp_max": { + "arguments": [ + 7555 + ], + "distinct": [ + 6 + ], + "filter": [ + 7544 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_tournament_player_stats_aggregate_bool_exp_min": { + "arguments": [ + 7556 + ], + "distinct": [ + 6 + ], + "filter": [ + 7544 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_tournament_player_stats_aggregate_bool_exp_stddev_samp": { + "arguments": [ + 7557 + ], + "distinct": [ + 6 + ], + "filter": [ + 7544 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_tournament_player_stats_aggregate_bool_exp_sum": { + "arguments": [ + 7558 + ], + "distinct": [ + 6 + ], + "filter": [ + 7544 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_tournament_player_stats_aggregate_bool_exp_var_samp": { + "arguments": [ + 7559 + ], + "distinct": [ + 6 + ], + "filter": [ + 7544 + ], + "predicate": [ + 2094 + ], + "__typename": [ + 85 + ] + }, + "v_tournament_player_stats_aggregate_fields": { + "avg": [ + 7542 + ], + "count": [ + 41, + { + "columns": [ + 7551, + "[v_tournament_player_stats_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 7546 + ], + "min": [ + 7548 + ], + "stddev": [ + 7560 + ], + "stddev_pop": [ + 7562 + ], + "stddev_samp": [ + 7564 + ], + "sum": [ + 7568 + ], + "var_pop": [ + 7570 + ], + "var_samp": [ + 7572 + ], + "variance": [ + 7574 + ], + "__typename": [ + 85 + ] + }, + "v_tournament_player_stats_aggregate_order_by": { + "avg": [ + 7543 + ], + "count": [ + 3648 + ], + "max": [ + 7547 + ], + "min": [ + 7549 + ], + "stddev": [ + 7561 + ], + "stddev_pop": [ + 7563 + ], + "stddev_samp": [ + 7565 + ], + "sum": [ + 7569 + ], + "var_pop": [ + 7571 + ], + "var_samp": [ + 7573 + ], + "variance": [ + 7575 + ], + "__typename": [ + 85 + ] + }, + "v_tournament_player_stats_arr_rel_insert_input": { + "data": [ + 7545 + ], + "__typename": [ + 85 + ] + }, + "v_tournament_player_stats_avg_fields": { + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "headshot_percentage": [ + 32 + ], + "headshots": [ + 32 + ], + "kdr": [ + 32 + ], + "kills": [ + 32 + ], + "matches_played": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_tournament_player_stats_avg_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kdr": [ + 3648 + ], + "kills": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_tournament_player_stats_bool_exp": { + "_and": [ + 7544 + ], + "_not": [ + 7544 + ], + "_or": [ + 7544 + ], + "assists": [ + 42 + ], + "deaths": [ + 42 + ], + "headshot_percentage": [ + 2094 + ], + "headshots": [ + 42 + ], + "kdr": [ + 2094 + ], + "kills": [ + 42 + ], + "matches_played": [ + 42 + ], + "player": [ + 4610 + ], + "player_steam_id": [ + 314 + ], + "tournament": [ + 5917 + ], + "tournament_id": [ + 6674 + ], + "__typename": [ + 85 + ] + }, + "v_tournament_player_stats_insert_input": { + "assists": [ + 41 + ], + "deaths": [ + 41 + ], + "headshot_percentage": [ + 2093 + ], + "headshots": [ + 41 + ], + "kdr": [ + 2093 + ], + "kills": [ + 41 + ], + "matches_played": [ + 41 + ], + "player": [ + 4617 + ], + "player_steam_id": [ + 312 + ], + "tournament": [ + 5926 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "v_tournament_player_stats_max_fields": { + "assists": [ + 41 + ], + "deaths": [ + 41 + ], + "headshot_percentage": [ + 2093 + ], + "headshots": [ + 41 + ], + "kdr": [ + 2093 + ], + "kills": [ + 41 + ], + "matches_played": [ + 41 + ], + "player_steam_id": [ + 312 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "v_tournament_player_stats_max_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kdr": [ + 3648 + ], + "kills": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "tournament_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_tournament_player_stats_min_fields": { + "assists": [ + 41 + ], + "deaths": [ + 41 + ], + "headshot_percentage": [ + 2093 + ], + "headshots": [ + 41 + ], + "kdr": [ + 2093 + ], + "kills": [ + 41 + ], + "matches_played": [ + 41 + ], + "player_steam_id": [ + 312 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "v_tournament_player_stats_min_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kdr": [ + 3648 + ], + "kills": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "tournament_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_tournament_player_stats_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kdr": [ + 3648 + ], + "kills": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "player": [ + 4619 + ], + "player_steam_id": [ + 3648 + ], + "tournament": [ + 5928 + ], + "tournament_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_tournament_player_stats_select_column": {}, + "v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_avg_arguments_columns": {}, + "v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_corr_arguments_columns": {}, + "v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments_columns": {}, + "v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_max_arguments_columns": {}, + "v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_min_arguments_columns": {}, + "v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns": {}, + "v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_sum_arguments_columns": {}, + "v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_var_samp_arguments_columns": {}, + "v_tournament_player_stats_stddev_fields": { + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "headshot_percentage": [ + 32 + ], + "headshots": [ + 32 + ], + "kdr": [ + 32 + ], + "kills": [ + 32 + ], + "matches_played": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_tournament_player_stats_stddev_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kdr": [ + 3648 + ], + "kills": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_tournament_player_stats_stddev_pop_fields": { + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "headshot_percentage": [ + 32 + ], + "headshots": [ + 32 + ], + "kdr": [ + 32 + ], + "kills": [ + 32 + ], + "matches_played": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_tournament_player_stats_stddev_pop_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kdr": [ + 3648 + ], + "kills": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_tournament_player_stats_stddev_samp_fields": { + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "headshot_percentage": [ + 32 + ], + "headshots": [ + 32 + ], + "kdr": [ + 32 + ], + "kills": [ + 32 + ], + "matches_played": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_tournament_player_stats_stddev_samp_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kdr": [ + 3648 + ], + "kills": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_tournament_player_stats_stream_cursor_input": { + "initial_value": [ + 7567 + ], + "ordering": [ + 395 + ], + "__typename": [ + 85 + ] + }, + "v_tournament_player_stats_stream_cursor_value_input": { + "assists": [ + 41 + ], + "deaths": [ + 41 + ], + "headshot_percentage": [ + 2093 + ], + "headshots": [ + 41 + ], + "kdr": [ + 2093 + ], + "kills": [ + 41 + ], + "matches_played": [ + 41 + ], + "player_steam_id": [ + 312 + ], + "tournament_id": [ + 6672 + ], + "__typename": [ + 85 + ] + }, + "v_tournament_player_stats_sum_fields": { + "assists": [ + 41 + ], + "deaths": [ + 41 + ], + "headshot_percentage": [ + 2093 + ], + "headshots": [ + 41 + ], + "kdr": [ + 2093 + ], + "kills": [ + 41 + ], + "matches_played": [ + 41 + ], + "player_steam_id": [ + 312 + ], + "__typename": [ + 85 + ] + }, + "v_tournament_player_stats_sum_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kdr": [ + 3648 + ], + "kills": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_tournament_player_stats_var_pop_fields": { + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "headshot_percentage": [ + 32 + ], + "headshots": [ + 32 + ], + "kdr": [ + 32 + ], + "kills": [ + 32 + ], + "matches_played": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_tournament_player_stats_var_pop_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kdr": [ + 3648 + ], + "kills": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_tournament_player_stats_var_samp_fields": { + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "headshot_percentage": [ + 32 + ], + "headshots": [ + 32 + ], + "kdr": [ + 32 + ], + "kills": [ + 32 + ], + "matches_played": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_tournament_player_stats_var_samp_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kdr": [ + 3648 + ], + "kills": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "v_tournament_player_stats_variance_fields": { + "assists": [ + 32 + ], + "deaths": [ + 32 + ], + "headshot_percentage": [ + 32 + ], + "headshots": [ + 32 + ], + "kdr": [ + 32 + ], + "kills": [ + 32 + ], + "matches_played": [ + 32 + ], + "player_steam_id": [ + 32 + ], + "__typename": [ + 85 + ] + }, + "v_tournament_player_stats_variance_order_by": { + "assists": [ + 3648 + ], + "deaths": [ + 3648 + ], + "headshot_percentage": [ + 3648 + ], + "headshots": [ + 3648 + ], + "kdr": [ + 3648 + ], + "kills": [ + 3648 + ], + "matches_played": [ + 3648 + ], + "player_steam_id": [ + 3648 + ], + "__typename": [ + 85 + ] + }, + "Query": { + "_map_pool": [ + 155, + { + "distinct_on": [ + 167, + "[_map_pool_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 165, + "[_map_pool_order_by!]" + ], + "where": [ + 158 + ] + } + ], + "_map_pool_aggregate": [ + 156, + { + "distinct_on": [ + 167, + "[_map_pool_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 165, + "[_map_pool_order_by!]" + ], + "where": [ + 158 + ] + } + ], + "_map_pool_by_pk": [ + 155, + { + "map_id": [ + 6672, + "uuid!" + ], + "map_pool_id": [ + 6672, + "uuid!" + ] + } + ], + "abandoned_matches": [ + 174, + { + "distinct_on": [ + 195, + "[abandoned_matches_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 193, + "[abandoned_matches_order_by!]" + ], + "where": [ + 183 + ] + } + ], + "abandoned_matches_aggregate": [ + 175, + { + "distinct_on": [ + 195, + "[abandoned_matches_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 193, + "[abandoned_matches_order_by!]" + ], + "where": [ + 183 + ] + } + ], + "abandoned_matches_by_pk": [ + 174, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "analyseUtilityPlaybookCoverage": [ + 128, + { + "pairs": [ + 145, + "[UtilitySightlinePairInput!]!" + ], + "playbook_id": [ + 6672, + "uuid!" + ] + } + ], + "api_keys": [ + 215, + { + "distinct_on": [ + 229, + "[api_keys_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 227, + "[api_keys_order_by!]" + ], + "where": [ + 219 + ] + } + ], + "api_keys_aggregate": [ + 216, + { + "distinct_on": [ + 229, + "[api_keys_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 227, + "[api_keys_order_by!]" + ], + "where": [ + 219 + ] + } + ], + "api_keys_by_pk": [ + 215, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "award_recipients": [ + 243, + { + "distinct_on": [ + 264, + "[award_recipients_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 262, + "[award_recipients_order_by!]" + ], + "where": [ + 252 + ] + } + ], + "award_recipients_aggregate": [ + 244, + { + "distinct_on": [ + 264, + "[award_recipients_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 262, + "[award_recipients_order_by!]" + ], + "where": [ + 252 + ] + } + ], + "award_recipients_by_pk": [ + 243, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "awards": [ + 284, + { + "distinct_on": [ + 299, + "[awards_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 297, + "[awards_order_by!]" + ], + "where": [ + 288 + ] + } + ], + "awards_aggregate": [ + 285, + { + "distinct_on": [ + 299, + "[awards_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 297, + "[awards_order_by!]" + ], + "where": [ + 288 + ] + } + ], + "awards_by_pk": [ + 284, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "chat_read_state": [ + 317, + { + "distinct_on": [ + 331, + "[chat_read_state_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 329, + "[chat_read_state_order_by!]" + ], + "where": [ + 321 + ] + } + ], + "chat_read_state_aggregate": [ + 318, + { + "distinct_on": [ + 331, + "[chat_read_state_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 329, + "[chat_read_state_order_by!]" + ], + "where": [ + 321 + ] + } + ], + "chat_read_state_by_pk": [ + 317, + { + "steam_id": [ + 312, + "bigint!" + ], + "thread": [ + 85, + "String!" + ] + } + ], + "checkUtilityOneWay": [ + 126, + { + "lineup_id": [ + 6672, + "uuid!" + ], + "pairs": [ + 145, + "[UtilitySightlinePairInput!]!" + ] + } + ], + "checkUtilitySightlines": [ + 144, + { + "lineup_id": [ + 6672, + "uuid!" + ], + "pairs": [ + 145, + "[UtilitySightlinePairInput!]!" + ], + "threshold": [ + 32 + ] + } + ], + "clip_render_jobs": [ + 344, + { + "distinct_on": [ + 372, + "[clip_render_jobs_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 369, + "[clip_render_jobs_order_by!]" + ], + "where": [ + 356 + ] + } + ], + "clip_render_jobs_aggregate": [ + 345, + { + "distinct_on": [ + 372, + "[clip_render_jobs_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 369, + "[clip_render_jobs_order_by!]" + ], + "where": [ + 356 + ] + } + ], + "clip_render_jobs_by_pk": [ + 344, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "custom_pages": [ + 396, + { + "distinct_on": [ + 415, + "[custom_pages_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 412, + "[custom_pages_order_by!]" + ], + "where": [ + 401 + ] + } + ], + "custom_pages_aggregate": [ + 397, + { + "distinct_on": [ + 415, + "[custom_pages_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 412, + "[custom_pages_order_by!]" + ], + "where": [ + 401 + ] + } + ], + "custom_pages_by_pk": [ + 396, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "dbStats": [ + 20 + ], + "db_backups": [ + 428, + { + "distinct_on": [ + 442, + "[db_backups_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 440, + "[db_backups_order_by!]" + ], + "where": [ + 432 + ] + } + ], + "db_backups_aggregate": [ + 429, + { + "distinct_on": [ + 442, + "[db_backups_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 440, + "[db_backups_order_by!]" + ], + "where": [ + 432 + ] + } + ], + "db_backups_by_pk": [ + 428, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "direct_conversations": [ + 455, + { + "distinct_on": [ + 469, + "[direct_conversations_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 467, + "[direct_conversations_order_by!]" + ], + "where": [ + 459 + ] + } + ], + "direct_conversations_aggregate": [ + 456, + { + "distinct_on": [ + 469, + "[direct_conversations_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 467, + "[direct_conversations_order_by!]" + ], + "where": [ + 459 + ] + } + ], + "direct_conversations_by_pk": [ + 455, + { + "room_id": [ + 85, + "String!" + ], + "steam_id": [ + 312, + "bigint!" + ] + } + ], + "direct_messages": [ + 482, + { + "distinct_on": [ + 496, + "[direct_messages_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 494, + "[direct_messages_order_by!]" + ], + "where": [ + 486 + ] + } + ], + "direct_messages_aggregate": [ + 483, + { + "distinct_on": [ + 496, + "[direct_messages_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 494, + "[direct_messages_order_by!]" + ], + "where": [ + 486 + ] + } + ], + "direct_messages_by_pk": [ + 482, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "draft_game_picks": [ + 509, + { + "distinct_on": [ + 532, + "[draft_game_picks_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 530, + "[draft_game_picks_order_by!]" + ], + "where": [ + 520 + ] + } + ], + "draft_game_picks_aggregate": [ + 510, + { + "distinct_on": [ + 532, + "[draft_game_picks_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 530, + "[draft_game_picks_order_by!]" + ], + "where": [ + 520 + ] + } + ], + "draft_game_picks_by_pk": [ + 509, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "draft_game_players": [ + 554, + { + "distinct_on": [ + 577, + "[draft_game_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 575, + "[draft_game_players_order_by!]" + ], + "where": [ + 565 + ] + } + ], + "draft_game_players_aggregate": [ + 555, + { + "distinct_on": [ + 577, + "[draft_game_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 575, + "[draft_game_players_order_by!]" + ], + "where": [ + 565 + ] + } + ], + "draft_game_players_by_pk": [ + 554, + { + "draft_game_id": [ + 6672, + "uuid!" + ], + "steam_id": [ + 312, + "bigint!" + ] + } + ], + "draft_games": [ + 599, + { + "distinct_on": [ + 623, + "[draft_games_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 621, + "[draft_games_order_by!]" + ], + "where": [ + 610 + ] + } + ], + "draft_games_aggregate": [ + 600, + { + "distinct_on": [ + 623, + "[draft_games_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 621, + "[draft_games_order_by!]" + ], + "where": [ + 610 + ] + } + ], + "draft_games_by_pk": [ + 599, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "e_award_sources": [ + 645, + { + "distinct_on": [ + 659, + "[e_award_sources_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 657, + "[e_award_sources_order_by!]" + ], + "where": [ + 648 + ] + } + ], + "e_award_sources_aggregate": [ + 646, + { + "distinct_on": [ + 659, + "[e_award_sources_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 657, + "[e_award_sources_order_by!]" + ], + "where": [ + 648 + ] + } + ], + "e_award_sources_by_pk": [ + 645, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_award_tiers": [ + 665, + { + "distinct_on": [ + 679, + "[e_award_tiers_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 677, + "[e_award_tiers_order_by!]" + ], + "where": [ + 668 + ] + } + ], + "e_award_tiers_aggregate": [ + 666, + { + "distinct_on": [ + 679, + "[e_award_tiers_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 677, + "[e_award_tiers_order_by!]" + ], + "where": [ + 668 + ] + } + ], + "e_award_tiers_by_pk": [ + 665, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_check_in_settings": [ + 685, + { + "distinct_on": [ + 699, + "[e_check_in_settings_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 697, + "[e_check_in_settings_order_by!]" + ], + "where": [ + 688 + ] + } + ], + "e_check_in_settings_aggregate": [ + 686, + { + "distinct_on": [ + 699, + "[e_check_in_settings_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 697, + "[e_check_in_settings_order_by!]" + ], + "where": [ + 688 + ] + } + ], + "e_check_in_settings_by_pk": [ + 685, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_draft_game_captain_selection": [ + 705, + { + "distinct_on": [ + 720, + "[e_draft_game_captain_selection_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 718, + "[e_draft_game_captain_selection_order_by!]" + ], + "where": [ + 708 + ] + } + ], + "e_draft_game_captain_selection_aggregate": [ + 706, + { + "distinct_on": [ + 720, + "[e_draft_game_captain_selection_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 718, + "[e_draft_game_captain_selection_order_by!]" + ], + "where": [ + 708 + ] + } + ], + "e_draft_game_captain_selection_by_pk": [ + 705, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_draft_game_draft_order": [ + 726, + { + "distinct_on": [ + 741, + "[e_draft_game_draft_order_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 739, + "[e_draft_game_draft_order_order_by!]" + ], + "where": [ + 729 + ] + } + ], + "e_draft_game_draft_order_aggregate": [ + 727, + { + "distinct_on": [ + 741, + "[e_draft_game_draft_order_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 739, + "[e_draft_game_draft_order_order_by!]" + ], + "where": [ + 729 + ] + } + ], + "e_draft_game_draft_order_by_pk": [ + 726, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_draft_game_mode": [ + 747, + { + "distinct_on": [ + 762, + "[e_draft_game_mode_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 760, + "[e_draft_game_mode_order_by!]" + ], + "where": [ + 750 + ] + } + ], + "e_draft_game_mode_aggregate": [ + 748, + { + "distinct_on": [ + 762, + "[e_draft_game_mode_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 760, + "[e_draft_game_mode_order_by!]" + ], + "where": [ + 750 + ] + } + ], + "e_draft_game_mode_by_pk": [ + 747, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_draft_game_player_status": [ + 768, + { + "distinct_on": [ + 783, + "[e_draft_game_player_status_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 781, + "[e_draft_game_player_status_order_by!]" + ], + "where": [ + 771 + ] + } + ], + "e_draft_game_player_status_aggregate": [ + 769, + { + "distinct_on": [ + 783, + "[e_draft_game_player_status_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 781, + "[e_draft_game_player_status_order_by!]" + ], + "where": [ + 771 + ] + } + ], + "e_draft_game_player_status_by_pk": [ + 768, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_draft_game_status": [ + 789, + { + "distinct_on": [ + 804, + "[e_draft_game_status_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 802, + "[e_draft_game_status_order_by!]" + ], + "where": [ + 792 + ] + } + ], + "e_draft_game_status_aggregate": [ + 790, + { + "distinct_on": [ + 804, + "[e_draft_game_status_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 802, + "[e_draft_game_status_order_by!]" + ], + "where": [ + 792 + ] + } + ], + "e_draft_game_status_by_pk": [ + 789, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_event_media_access": [ + 810, + { + "distinct_on": [ + 824, + "[e_event_media_access_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 822, + "[e_event_media_access_order_by!]" + ], + "where": [ + 813 + ] + } + ], + "e_event_media_access_aggregate": [ + 811, + { + "distinct_on": [ + 824, + "[e_event_media_access_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 822, + "[e_event_media_access_order_by!]" + ], + "where": [ + 813 + ] + } + ], + "e_event_media_access_by_pk": [ + 810, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_event_visibility": [ + 830, + { + "distinct_on": [ + 844, + "[e_event_visibility_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 842, + "[e_event_visibility_order_by!]" + ], + "where": [ + 833 + ] + } + ], + "e_event_visibility_aggregate": [ + 831, + { + "distinct_on": [ + 844, + "[e_event_visibility_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 842, + "[e_event_visibility_order_by!]" + ], + "where": [ + 833 + ] + } + ], + "e_event_visibility_by_pk": [ + 830, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_friend_status": [ + 850, + { + "distinct_on": [ + 865, + "[e_friend_status_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 863, + "[e_friend_status_order_by!]" + ], + "where": [ + 853 + ] + } + ], + "e_friend_status_aggregate": [ + 851, + { + "distinct_on": [ + 865, + "[e_friend_status_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 863, + "[e_friend_status_order_by!]" + ], + "where": [ + 853 + ] + } + ], + "e_friend_status_by_pk": [ + 850, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_game_cfg_types": [ + 871, + { + "distinct_on": [ + 885, + "[e_game_cfg_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 883, + "[e_game_cfg_types_order_by!]" + ], + "where": [ + 874 + ] + } + ], + "e_game_cfg_types_aggregate": [ + 872, + { + "distinct_on": [ + 885, + "[e_game_cfg_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 883, + "[e_game_cfg_types_order_by!]" + ], + "where": [ + 874 + ] + } + ], + "e_game_cfg_types_by_pk": [ + 871, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_game_plugin_channels": [ + 891, + { + "distinct_on": [ + 905, + "[e_game_plugin_channels_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 903, + "[e_game_plugin_channels_order_by!]" + ], + "where": [ + 894 + ] + } + ], + "e_game_plugin_channels_aggregate": [ + 892, + { + "distinct_on": [ + 905, + "[e_game_plugin_channels_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 903, + "[e_game_plugin_channels_order_by!]" + ], + "where": [ + 894 + ] + } + ], + "e_game_plugin_channels_by_pk": [ + 891, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_game_plugin_install_statuses": [ + 911, + { + "distinct_on": [ + 925, + "[e_game_plugin_install_statuses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 923, + "[e_game_plugin_install_statuses_order_by!]" + ], + "where": [ + 914 + ] + } + ], + "e_game_plugin_install_statuses_aggregate": [ + 912, + { + "distinct_on": [ + 925, + "[e_game_plugin_install_statuses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 923, + "[e_game_plugin_install_statuses_order_by!]" + ], + "where": [ + 914 + ] + } + ], + "e_game_plugin_install_statuses_by_pk": [ + 911, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_game_plugin_kinds": [ + 931, + { + "distinct_on": [ + 945, + "[e_game_plugin_kinds_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 943, + "[e_game_plugin_kinds_order_by!]" + ], + "where": [ + 934 + ] + } + ], + "e_game_plugin_kinds_aggregate": [ + 932, + { + "distinct_on": [ + 945, + "[e_game_plugin_kinds_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 943, + "[e_game_plugin_kinds_order_by!]" + ], + "where": [ + 934 + ] + } + ], + "e_game_plugin_kinds_by_pk": [ + 931, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_game_server_node_statuses": [ + 951, + { + "distinct_on": [ + 966, + "[e_game_server_node_statuses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 964, + "[e_game_server_node_statuses_order_by!]" + ], + "where": [ + 954 + ] + } + ], + "e_game_server_node_statuses_aggregate": [ + 952, + { + "distinct_on": [ + 966, + "[e_game_server_node_statuses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 964, + "[e_game_server_node_statuses_order_by!]" + ], + "where": [ + 954 + ] + } + ], + "e_game_server_node_statuses_by_pk": [ + 951, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_league_movement_types": [ + 972, + { + "distinct_on": [ + 987, + "[e_league_movement_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 985, + "[e_league_movement_types_order_by!]" + ], + "where": [ + 975 + ] + } + ], + "e_league_movement_types_aggregate": [ + 973, + { + "distinct_on": [ + 987, + "[e_league_movement_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 985, + "[e_league_movement_types_order_by!]" + ], + "where": [ + 975 + ] + } + ], + "e_league_movement_types_by_pk": [ + 972, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_league_proposal_statuses": [ + 993, + { + "distinct_on": [ + 1008, + "[e_league_proposal_statuses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1006, + "[e_league_proposal_statuses_order_by!]" + ], + "where": [ + 996 + ] + } + ], + "e_league_proposal_statuses_aggregate": [ + 994, + { + "distinct_on": [ + 1008, + "[e_league_proposal_statuses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1006, + "[e_league_proposal_statuses_order_by!]" + ], + "where": [ + 996 + ] + } + ], + "e_league_proposal_statuses_by_pk": [ + 993, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_league_registration_statuses": [ + 1014, + { + "distinct_on": [ + 1029, + "[e_league_registration_statuses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1027, + "[e_league_registration_statuses_order_by!]" + ], + "where": [ + 1017 + ] + } + ], + "e_league_registration_statuses_aggregate": [ + 1015, + { + "distinct_on": [ + 1029, + "[e_league_registration_statuses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1027, + "[e_league_registration_statuses_order_by!]" + ], + "where": [ + 1017 + ] + } + ], + "e_league_registration_statuses_by_pk": [ + 1014, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_league_season_statuses": [ + 1035, + { + "distinct_on": [ + 1050, + "[e_league_season_statuses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1048, + "[e_league_season_statuses_order_by!]" + ], + "where": [ + 1038 + ] + } + ], + "e_league_season_statuses_aggregate": [ + 1036, + { + "distinct_on": [ + 1050, + "[e_league_season_statuses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1048, + "[e_league_season_statuses_order_by!]" + ], + "where": [ + 1038 + ] + } + ], + "e_league_season_statuses_by_pk": [ + 1035, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_lobby_access": [ + 1056, + { + "distinct_on": [ + 1071, + "[e_lobby_access_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1069, + "[e_lobby_access_order_by!]" + ], + "where": [ + 1059 + ] + } + ], + "e_lobby_access_aggregate": [ + 1057, + { + "distinct_on": [ + 1071, + "[e_lobby_access_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1069, + "[e_lobby_access_order_by!]" + ], + "where": [ + 1059 + ] + } + ], + "e_lobby_access_by_pk": [ + 1056, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_lobby_player_status": [ + 1077, + { + "distinct_on": [ + 1091, + "[e_lobby_player_status_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1089, + "[e_lobby_player_status_order_by!]" + ], + "where": [ + 1080 + ] + } + ], + "e_lobby_player_status_aggregate": [ + 1078, + { + "distinct_on": [ + 1091, + "[e_lobby_player_status_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1089, + "[e_lobby_player_status_order_by!]" + ], + "where": [ + 1080 + ] + } + ], + "e_lobby_player_status_by_pk": [ + 1077, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_map_pool_types": [ + 1097, + { + "distinct_on": [ + 1112, + "[e_map_pool_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1110, + "[e_map_pool_types_order_by!]" + ], + "where": [ + 1100 + ] + } + ], + "e_map_pool_types_aggregate": [ + 1098, + { + "distinct_on": [ + 1112, + "[e_map_pool_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1110, + "[e_map_pool_types_order_by!]" + ], + "where": [ + 1100 + ] + } + ], + "e_map_pool_types_by_pk": [ + 1097, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_match_clip_visibility": [ + 1118, + { + "distinct_on": [ + 1132, + "[e_match_clip_visibility_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1130, + "[e_match_clip_visibility_order_by!]" + ], + "where": [ + 1121 + ] + } + ], + "e_match_clip_visibility_aggregate": [ + 1119, + { + "distinct_on": [ + 1132, + "[e_match_clip_visibility_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1130, + "[e_match_clip_visibility_order_by!]" + ], + "where": [ + 1121 + ] + } + ], + "e_match_clip_visibility_by_pk": [ + 1118, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_match_map_status": [ + 1138, + { + "distinct_on": [ + 1153, + "[e_match_map_status_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1151, + "[e_match_map_status_order_by!]" + ], + "where": [ + 1141 + ] + } + ], + "e_match_map_status_aggregate": [ + 1139, + { + "distinct_on": [ + 1153, + "[e_match_map_status_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1151, + "[e_match_map_status_order_by!]" + ], + "where": [ + 1141 + ] + } + ], + "e_match_map_status_by_pk": [ + 1138, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_match_mode": [ + 1159, + { + "distinct_on": [ + 1173, + "[e_match_mode_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1171, + "[e_match_mode_order_by!]" + ], + "where": [ + 1162 + ] + } + ], + "e_match_mode_aggregate": [ + 1160, + { + "distinct_on": [ + 1173, + "[e_match_mode_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1171, + "[e_match_mode_order_by!]" + ], + "where": [ + 1162 + ] + } + ], + "e_match_mode_by_pk": [ + 1159, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_match_party_sources": [ + 1179, + { + "distinct_on": [ + 1193, + "[e_match_party_sources_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1191, + "[e_match_party_sources_order_by!]" + ], + "where": [ + 1182 + ] + } + ], + "e_match_party_sources_aggregate": [ + 1180, + { + "distinct_on": [ + 1193, + "[e_match_party_sources_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1191, + "[e_match_party_sources_order_by!]" + ], + "where": [ + 1182 + ] + } + ], + "e_match_party_sources_by_pk": [ + 1179, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_match_status": [ + 1199, + { + "distinct_on": [ + 1214, + "[e_match_status_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1212, + "[e_match_status_order_by!]" + ], + "where": [ + 1202 + ] + } + ], + "e_match_status_aggregate": [ + 1200, + { + "distinct_on": [ + 1214, + "[e_match_status_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1212, + "[e_match_status_order_by!]" + ], + "where": [ + 1202 + ] + } + ], + "e_match_status_by_pk": [ + 1199, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_match_types": [ + 1220, + { + "distinct_on": [ + 1235, + "[e_match_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1233, + "[e_match_types_order_by!]" + ], + "where": [ + 1223 + ] + } + ], + "e_match_types_aggregate": [ + 1221, + { + "distinct_on": [ + 1235, + "[e_match_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1233, + "[e_match_types_order_by!]" + ], + "where": [ + 1223 + ] + } + ], + "e_match_types_by_pk": [ + 1220, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_notification_types": [ + 1241, + { + "distinct_on": [ + 1255, + "[e_notification_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1253, + "[e_notification_types_order_by!]" + ], + "where": [ + 1244 + ] + } + ], + "e_notification_types_aggregate": [ + 1242, + { + "distinct_on": [ + 1255, + "[e_notification_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1253, + "[e_notification_types_order_by!]" + ], + "where": [ + 1244 + ] + } + ], + "e_notification_types_by_pk": [ + 1241, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_objective_types": [ + 1261, + { + "distinct_on": [ + 1275, + "[e_objective_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1273, + "[e_objective_types_order_by!]" + ], + "where": [ + 1264 + ] + } + ], + "e_objective_types_aggregate": [ + 1262, + { + "distinct_on": [ + 1275, + "[e_objective_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1273, + "[e_objective_types_order_by!]" + ], + "where": [ + 1264 + ] + } + ], + "e_objective_types_by_pk": [ + 1261, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_player_roles": [ + 1281, + { + "distinct_on": [ + 1295, + "[e_player_roles_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1293, + "[e_player_roles_order_by!]" + ], + "where": [ + 1284 + ] + } + ], + "e_player_roles_aggregate": [ + 1282, + { + "distinct_on": [ + 1295, + "[e_player_roles_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1293, + "[e_player_roles_order_by!]" + ], + "where": [ + 1284 + ] + } + ], + "e_player_roles_by_pk": [ + 1281, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_plugin_runtimes": [ + 1301, + { + "distinct_on": [ + 1315, + "[e_plugin_runtimes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1313, + "[e_plugin_runtimes_order_by!]" + ], + "where": [ + 1304 + ] + } + ], + "e_plugin_runtimes_aggregate": [ + 1302, + { + "distinct_on": [ + 1315, + "[e_plugin_runtimes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1313, + "[e_plugin_runtimes_order_by!]" + ], + "where": [ + 1304 + ] + } + ], + "e_plugin_runtimes_by_pk": [ + 1301, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_ready_settings": [ + 1321, + { + "distinct_on": [ + 1335, + "[e_ready_settings_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1333, + "[e_ready_settings_order_by!]" + ], + "where": [ + 1324 + ] + } + ], + "e_ready_settings_aggregate": [ + 1322, + { + "distinct_on": [ + 1335, + "[e_ready_settings_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1333, + "[e_ready_settings_order_by!]" + ], + "where": [ + 1324 + ] + } + ], + "e_ready_settings_by_pk": [ + 1321, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_sanction_scopes": [ + 1341, + { + "distinct_on": [ + 1354, + "[e_sanction_scopes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1352, + "[e_sanction_scopes_order_by!]" + ], + "where": [ + 1344 + ] + } + ], + "e_sanction_scopes_aggregate": [ + 1342, + { + "distinct_on": [ + 1354, + "[e_sanction_scopes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1352, + "[e_sanction_scopes_order_by!]" + ], + "where": [ + 1344 + ] + } + ], + "e_sanction_scopes_by_pk": [ + 1341, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_sanction_sources": [ + 1360, + { + "distinct_on": [ + 1374, + "[e_sanction_sources_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1372, + "[e_sanction_sources_order_by!]" + ], + "where": [ + 1364 + ] + } + ], + "e_sanction_sources_aggregate": [ + 1361, + { + "distinct_on": [ + 1374, + "[e_sanction_sources_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1372, + "[e_sanction_sources_order_by!]" + ], + "where": [ + 1364 + ] + } + ], + "e_sanction_sources_by_pk": [ + 1360, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_sanction_types": [ + 1387, + { + "distinct_on": [ + 1402, + "[e_sanction_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1400, + "[e_sanction_types_order_by!]" + ], + "where": [ + 1390 + ] + } + ], + "e_sanction_types_aggregate": [ + 1388, + { + "distinct_on": [ + 1402, + "[e_sanction_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1400, + "[e_sanction_types_order_by!]" + ], + "where": [ + 1390 + ] + } + ], + "e_sanction_types_by_pk": [ + 1387, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_scrim_request_statuses": [ + 1408, + { + "distinct_on": [ + 1422, + "[e_scrim_request_statuses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1420, + "[e_scrim_request_statuses_order_by!]" + ], + "where": [ + 1411 + ] + } + ], + "e_scrim_request_statuses_aggregate": [ + 1409, + { + "distinct_on": [ + 1422, + "[e_scrim_request_statuses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1420, + "[e_scrim_request_statuses_order_by!]" + ], + "where": [ + 1411 + ] + } + ], + "e_scrim_request_statuses_by_pk": [ + 1408, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_server_types": [ + 1428, + { + "distinct_on": [ + 1442, + "[e_server_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1440, + "[e_server_types_order_by!]" + ], + "where": [ + 1431 + ] + } + ], + "e_server_types_aggregate": [ + 1429, + { + "distinct_on": [ + 1442, + "[e_server_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1440, + "[e_server_types_order_by!]" + ], + "where": [ + 1431 + ] + } + ], + "e_server_types_by_pk": [ + 1428, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_sides": [ + 1448, + { + "distinct_on": [ + 1462, + "[e_sides_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1460, + "[e_sides_order_by!]" + ], + "where": [ + 1451 + ] + } + ], + "e_sides_aggregate": [ + 1449, + { + "distinct_on": [ + 1462, + "[e_sides_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1460, + "[e_sides_order_by!]" + ], + "where": [ + 1451 + ] + } + ], + "e_sides_by_pk": [ + 1448, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_system_alert_types": [ + 1468, + { + "distinct_on": [ + 1482, + "[e_system_alert_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1480, + "[e_system_alert_types_order_by!]" + ], + "where": [ + 1471 + ] + } + ], + "e_system_alert_types_aggregate": [ + 1469, + { + "distinct_on": [ + 1482, + "[e_system_alert_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1480, + "[e_system_alert_types_order_by!]" + ], + "where": [ + 1471 + ] + } + ], + "e_system_alert_types_by_pk": [ + 1468, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_team_roles": [ + 1488, + { + "distinct_on": [ + 1503, + "[e_team_roles_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1501, + "[e_team_roles_order_by!]" + ], + "where": [ + 1491 + ] + } + ], + "e_team_roles_aggregate": [ + 1489, + { + "distinct_on": [ + 1503, + "[e_team_roles_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1501, + "[e_team_roles_order_by!]" + ], + "where": [ + 1491 + ] + } + ], + "e_team_roles_by_pk": [ + 1488, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_team_roster_statuses": [ + 1509, + { + "distinct_on": [ + 1523, + "[e_team_roster_statuses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1521, + "[e_team_roster_statuses_order_by!]" + ], + "where": [ + 1512 + ] + } + ], + "e_team_roster_statuses_aggregate": [ + 1510, + { + "distinct_on": [ + 1523, + "[e_team_roster_statuses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1521, + "[e_team_roster_statuses_order_by!]" + ], + "where": [ + 1512 + ] + } + ], + "e_team_roster_statuses_by_pk": [ + 1509, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_timeout_settings": [ + 1529, + { + "distinct_on": [ + 1543, + "[e_timeout_settings_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1541, + "[e_timeout_settings_order_by!]" + ], + "where": [ + 1532 + ] + } + ], + "e_timeout_settings_aggregate": [ + 1530, + { + "distinct_on": [ + 1543, + "[e_timeout_settings_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1541, + "[e_timeout_settings_order_by!]" + ], + "where": [ + 1532 + ] + } + ], + "e_timeout_settings_by_pk": [ + 1529, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_tournament_categories": [ + 1549, + { + "distinct_on": [ + 1564, + "[e_tournament_categories_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1562, + "[e_tournament_categories_order_by!]" + ], + "where": [ + 1552 + ] + } + ], + "e_tournament_categories_aggregate": [ + 1550, + { + "distinct_on": [ + 1564, + "[e_tournament_categories_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1562, + "[e_tournament_categories_order_by!]" + ], + "where": [ + 1552 + ] + } + ], + "e_tournament_categories_by_pk": [ + 1549, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_tournament_free_agent_statuses": [ + 1570, + { + "distinct_on": [ + 1585, + "[e_tournament_free_agent_statuses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1583, + "[e_tournament_free_agent_statuses_order_by!]" + ], + "where": [ + 1573 + ] + } + ], + "e_tournament_free_agent_statuses_aggregate": [ + 1571, + { + "distinct_on": [ + 1585, + "[e_tournament_free_agent_statuses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1583, + "[e_tournament_free_agent_statuses_order_by!]" + ], + "where": [ + 1573 + ] + } + ], + "e_tournament_free_agent_statuses_by_pk": [ + 1570, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_tournament_registration_types": [ + 1591, + { + "distinct_on": [ + 1605, + "[e_tournament_registration_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1603, + "[e_tournament_registration_types_order_by!]" + ], + "where": [ + 1594 + ] + } + ], + "e_tournament_registration_types_aggregate": [ + 1592, + { + "distinct_on": [ + 1605, + "[e_tournament_registration_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1603, + "[e_tournament_registration_types_order_by!]" + ], + "where": [ + 1594 + ] + } + ], + "e_tournament_registration_types_by_pk": [ + 1591, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_tournament_stage_types": [ + 1611, + { + "distinct_on": [ + 1626, + "[e_tournament_stage_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1624, + "[e_tournament_stage_types_order_by!]" + ], + "where": [ + 1614 + ] + } + ], + "e_tournament_stage_types_aggregate": [ + 1612, + { + "distinct_on": [ + 1626, + "[e_tournament_stage_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1624, + "[e_tournament_stage_types_order_by!]" + ], + "where": [ + 1614 + ] + } + ], + "e_tournament_stage_types_by_pk": [ + 1611, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_tournament_status": [ + 1632, + { + "distinct_on": [ + 1647, + "[e_tournament_status_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1645, + "[e_tournament_status_order_by!]" + ], + "where": [ + 1635 + ] + } + ], + "e_tournament_status_aggregate": [ + 1633, + { + "distinct_on": [ + 1647, + "[e_tournament_status_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1645, + "[e_tournament_status_order_by!]" + ], + "where": [ + 1635 + ] + } + ], + "e_tournament_status_by_pk": [ + 1632, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_utility_practice_access": [ + 1653, + { + "distinct_on": [ + 1667, + "[e_utility_practice_access_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1665, + "[e_utility_practice_access_order_by!]" + ], + "where": [ + 1656 + ] + } + ], + "e_utility_practice_access_aggregate": [ + 1654, + { + "distinct_on": [ + 1667, + "[e_utility_practice_access_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1665, + "[e_utility_practice_access_order_by!]" + ], + "where": [ + 1656 + ] + } + ], + "e_utility_practice_access_by_pk": [ + 1653, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_utility_practice_statuses": [ + 1673, + { + "distinct_on": [ + 1688, + "[e_utility_practice_statuses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1686, + "[e_utility_practice_statuses_order_by!]" + ], + "where": [ + 1676 + ] + } + ], + "e_utility_practice_statuses_aggregate": [ + 1674, + { + "distinct_on": [ + 1688, + "[e_utility_practice_statuses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1686, + "[e_utility_practice_statuses_order_by!]" + ], + "where": [ + 1676 + ] + } + ], + "e_utility_practice_statuses_by_pk": [ + 1673, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_utility_sources": [ + 1694, + { + "distinct_on": [ + 1708, + "[e_utility_sources_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1706, + "[e_utility_sources_order_by!]" + ], + "where": [ + 1697 + ] + } + ], + "e_utility_sources_aggregate": [ + 1695, + { + "distinct_on": [ + 1708, + "[e_utility_sources_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1706, + "[e_utility_sources_order_by!]" + ], + "where": [ + 1697 + ] + } + ], + "e_utility_sources_by_pk": [ + 1694, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_utility_techniques": [ + 1714, + { + "distinct_on": [ + 1728, + "[e_utility_techniques_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1726, + "[e_utility_techniques_order_by!]" + ], + "where": [ + 1717 + ] + } + ], + "e_utility_techniques_aggregate": [ + 1715, + { + "distinct_on": [ + 1728, + "[e_utility_techniques_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1726, + "[e_utility_techniques_order_by!]" + ], + "where": [ + 1717 + ] + } + ], + "e_utility_techniques_by_pk": [ + 1714, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_utility_throw_strengths": [ + 1734, + { + "distinct_on": [ + 1748, + "[e_utility_throw_strengths_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1746, + "[e_utility_throw_strengths_order_by!]" + ], + "where": [ + 1737 + ] + } + ], + "e_utility_throw_strengths_aggregate": [ + 1735, + { + "distinct_on": [ + 1748, + "[e_utility_throw_strengths_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1746, + "[e_utility_throw_strengths_order_by!]" + ], + "where": [ + 1737 + ] + } + ], + "e_utility_throw_strengths_by_pk": [ + 1734, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_utility_types": [ + 1754, + { + "distinct_on": [ + 1768, + "[e_utility_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1766, + "[e_utility_types_order_by!]" + ], + "where": [ + 1757 + ] + } + ], + "e_utility_types_aggregate": [ + 1755, + { + "distinct_on": [ + 1768, + "[e_utility_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1766, + "[e_utility_types_order_by!]" + ], + "where": [ + 1757 + ] + } + ], + "e_utility_types_by_pk": [ + 1754, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_utility_visibility": [ + 1774, + { + "distinct_on": [ + 1788, + "[e_utility_visibility_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1786, + "[e_utility_visibility_order_by!]" + ], + "where": [ + 1777 + ] + } + ], + "e_utility_visibility_aggregate": [ + 1775, + { + "distinct_on": [ + 1788, + "[e_utility_visibility_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1786, + "[e_utility_visibility_order_by!]" + ], + "where": [ + 1777 + ] + } + ], + "e_utility_visibility_by_pk": [ + 1774, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_veto_pick_types": [ + 1794, + { + "distinct_on": [ + 1808, + "[e_veto_pick_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1806, + "[e_veto_pick_types_order_by!]" + ], + "where": [ + 1797 + ] + } + ], + "e_veto_pick_types_aggregate": [ + 1795, + { + "distinct_on": [ + 1808, + "[e_veto_pick_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1806, + "[e_veto_pick_types_order_by!]" + ], + "where": [ + 1797 + ] + } + ], + "e_veto_pick_types_by_pk": [ + 1794, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_winning_reasons": [ + 1814, + { + "distinct_on": [ + 1828, + "[e_winning_reasons_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1826, + "[e_winning_reasons_order_by!]" + ], + "where": [ + 1817 + ] + } + ], + "e_winning_reasons_aggregate": [ + 1815, + { + "distinct_on": [ + 1828, + "[e_winning_reasons_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1826, + "[e_winning_reasons_order_by!]" + ], + "where": [ + 1817 + ] + } + ], + "e_winning_reasons_by_pk": [ + 1814, + { + "value": [ + 85, + "String!" + ] + } + ], + "event_match_links": [ + 1834, + { + "distinct_on": [ + 1846, + "[event_match_links_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1844, + "[event_match_links_order_by!]" + ], + "where": [ + 1837 + ] + } + ], + "event_match_links_aggregate": [ + 1835, + { + "distinct_on": [ + 1846, + "[event_match_links_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1844, + "[event_match_links_order_by!]" + ], + "where": [ + 1837 + ] + } + ], + "event_match_links_by_pk": [ + 1834, + { + "event_id": [ + 6672, + "uuid!" + ], + "match_id": [ + 6672, + "uuid!" + ] + } + ], + "event_media": [ + 1852, + { + "distinct_on": [ + 1915, + "[event_media_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1872, + "[event_media_order_by!]" + ], + "where": [ + 1861 + ] + } + ], + "event_media_aggregate": [ + 1853, + { + "distinct_on": [ + 1915, + "[event_media_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1872, + "[event_media_order_by!]" + ], + "where": [ + 1861 + ] + } + ], + "event_media_by_pk": [ + 1852, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "event_media_players": [ + 1874, + { + "distinct_on": [ + 1895, + "[event_media_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1893, + "[event_media_players_order_by!]" + ], + "where": [ + 1883 + ] + } + ], + "event_media_players_aggregate": [ + 1875, + { + "distinct_on": [ + 1895, + "[event_media_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1893, + "[event_media_players_order_by!]" + ], + "where": [ + 1883 + ] + } + ], + "event_media_players_by_pk": [ + 1874, + { + "media_id": [ + 6672, + "uuid!" + ], + "steam_id": [ + 312, + "bigint!" + ] + } + ], + "event_organizers": [ + 1935, + { + "distinct_on": [ + 1956, + "[event_organizers_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1954, + "[event_organizers_order_by!]" + ], + "where": [ + 1944 + ] + } + ], + "event_organizers_aggregate": [ + 1936, + { + "distinct_on": [ + 1956, + "[event_organizers_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1954, + "[event_organizers_order_by!]" + ], + "where": [ + 1944 + ] + } + ], + "event_organizers_by_pk": [ + 1935, + { + "event_id": [ + 6672, + "uuid!" + ], + "steam_id": [ + 312, + "bigint!" + ] + } + ], + "event_players": [ + 1976, + { + "distinct_on": [ + 1997, + "[event_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1995, + "[event_players_order_by!]" + ], + "where": [ + 1985 + ] + } + ], + "event_players_aggregate": [ + 1977, + { + "distinct_on": [ + 1997, + "[event_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1995, + "[event_players_order_by!]" + ], + "where": [ + 1985 + ] + } + ], + "event_players_by_pk": [ + 1976, + { + "event_id": [ + 6672, + "uuid!" + ], + "steam_id": [ + 312, + "bigint!" + ] + } + ], + "event_teams": [ + 2017, + { + "distinct_on": [ + 2035, + "[event_teams_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2033, + "[event_teams_order_by!]" + ], + "where": [ + 2024 + ] + } + ], + "event_teams_aggregate": [ + 2018, + { + "distinct_on": [ + 2035, + "[event_teams_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2033, + "[event_teams_order_by!]" + ], + "where": [ + 2024 + ] + } + ], + "event_teams_by_pk": [ + 2017, + { + "event_id": [ + 6672, + "uuid!" + ], + "team_id": [ + 6672, + "uuid!" + ] + } + ], + "event_tournaments": [ + 2041, + { + "distinct_on": [ + 2059, + "[event_tournaments_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2057, + "[event_tournaments_order_by!]" + ], + "where": [ + 2048 + ] + } + ], + "event_tournaments_aggregate": [ + 2042, + { + "distinct_on": [ + 2059, + "[event_tournaments_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2057, + "[event_tournaments_order_by!]" + ], + "where": [ + 2048 + ] + } + ], + "event_tournaments_by_pk": [ + 2041, + { + "event_id": [ + 6672, + "uuid!" + ], + "tournament_id": [ + 6672, + "uuid!" + ] + } + ], + "events": [ + 2065, + { + "distinct_on": [ + 2080, + "[events_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2078, + "[events_order_by!]" + ], + "where": [ + 2069 + ] + } + ], + "events_aggregate": [ + 2066, + { + "distinct_on": [ + 2080, + "[events_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2078, + "[events_order_by!]" + ], + "where": [ + 2069 + ] + } + ], + "events_by_pk": [ + 2065, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "findUtilityLineupsBlocking": [ + 115, + { + "from_x": [ + 32, + "Float!" + ], + "from_y": [ + 32, + "Float!" + ], + "from_z": [ + 32, + "Float!" + ], + "limit": [ + 41 + ], + "map_name": [ + 85, + "String!" + ], + "side": [ + 85 + ], + "to_x": [ + 32, + "Float!" + ], + "to_y": [ + 32, + "Float!" + ], + "to_z": [ + 32, + "Float!" + ] + } + ], + "friends": [ + 2095, + { + "distinct_on": [ + 2109, + "[friends_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2107, + "[friends_order_by!]" + ], + "where": [ + 2099 + ] + } + ], + "friends_aggregate": [ + 2096, + { + "distinct_on": [ + 2109, + "[friends_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2107, + "[friends_order_by!]" + ], + "where": [ + 2099 + ] + } + ], + "friends_by_pk": [ + 2095, + { + "other_player_steam_id": [ + 312, + "bigint!" + ], + "player_steam_id": [ + 312, + "bigint!" + ] + } + ], + "game_mode_plugins": [ + 2122, + { + "distinct_on": [ + 2150, + "[game_mode_plugins_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2147, + "[game_mode_plugins_order_by!]" + ], + "where": [ + 2134 + ] + } + ], + "game_mode_plugins_aggregate": [ + 2123, + { + "distinct_on": [ + 2150, + "[game_mode_plugins_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2147, + "[game_mode_plugins_order_by!]" + ], + "where": [ + 2134 + ] + } + ], + "game_mode_plugins_by_pk": [ + 2122, + { + "game_mode_id": [ + 6672, + "uuid!" + ], + "plugin_slug": [ + 85, + "String!" + ] + } + ], + "game_modes": [ + 2172, + { + "distinct_on": [ + 2185, + "[game_modes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2183, + "[game_modes_order_by!]" + ], + "where": [ + 2175 + ] + } + ], + "game_modes_aggregate": [ + 2173, + { + "distinct_on": [ + 2185, + "[game_modes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2183, + "[game_modes_order_by!]" + ], + "where": [ + 2175 + ] + } + ], + "game_modes_by_pk": [ + 2172, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "game_plugin_installs": [ + 2191, + { + "distinct_on": [ + 2203, + "[game_plugin_installs_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2201, + "[game_plugin_installs_order_by!]" + ], + "where": [ + 2194 + ] + } + ], + "game_plugin_installs_aggregate": [ + 2192, + { + "distinct_on": [ + 2203, + "[game_plugin_installs_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2201, + "[game_plugin_installs_order_by!]" + ], + "where": [ + 2194 + ] + } + ], + "game_plugin_installs_by_pk": [ + 2191, + { + "plugin_slug": [ + 85, + "String!" + ] + } + ], + "game_plugin_versions": [ + 2209, + { + "distinct_on": [ + 2232, + "[game_plugin_versions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2230, + "[game_plugin_versions_order_by!]" + ], + "where": [ + 2220 + ] + } + ], + "game_plugin_versions_aggregate": [ + 2210, + { + "distinct_on": [ + 2232, + "[game_plugin_versions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2230, + "[game_plugin_versions_order_by!]" + ], + "where": [ + 2220 + ] + } + ], + "game_plugin_versions_by_pk": [ + 2209, + { + "plugin_slug": [ + 85, + "String!" + ], + "runtime": [ + 1306, + "e_plugin_runtimes_enum!" + ], + "version": [ + 85, + "String!" + ] + } + ], + "game_plugins": [ + 2254, + { + "distinct_on": [ + 2273, + "[game_plugins_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2270, + "[game_plugins_order_by!]" + ], + "where": [ + 2259 + ] + } + ], + "game_plugins_aggregate": [ + 2255, + { + "distinct_on": [ + 2273, + "[game_plugins_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2270, + "[game_plugins_order_by!]" + ], + "where": [ + 2259 + ] + } + ], + "game_plugins_by_pk": [ + 2254, + { + "slug": [ + 85, + "String!" + ] + } + ], + "game_server_node_plugins": [ + 2286, + { + "distinct_on": [ + 2306, + "[game_server_node_plugins_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2304, + "[game_server_node_plugins_order_by!]" + ], + "where": [ + 2295 + ] + } + ], + "game_server_node_plugins_aggregate": [ + 2287, + { + "distinct_on": [ + 2306, + "[game_server_node_plugins_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2304, + "[game_server_node_plugins_order_by!]" + ], + "where": [ + 2295 + ] + } + ], + "game_server_node_plugins_by_pk": [ + 2286, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "game_server_nodes": [ + 2314, + { + "distinct_on": [ + 2343, + "[game_server_nodes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2340, + "[game_server_nodes_order_by!]" + ], + "where": [ + 2326 + ] + } + ], + "game_server_nodes_aggregate": [ + 2315, + { + "distinct_on": [ + 2343, + "[game_server_nodes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2340, + "[game_server_nodes_order_by!]" + ], + "where": [ + 2326 + ] + } + ], + "game_server_nodes_by_pk": [ + 2314, + { + "id": [ + 85, + "String!" + ] + } + ], + "game_versions": [ + 2365, + { + "distinct_on": [ + 2385, + "[game_versions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2382, + "[game_versions_order_by!]" + ], + "where": [ + 2370 + ] + } + ], + "game_versions_aggregate": [ + 2366, + { + "distinct_on": [ + 2385, + "[game_versions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2382, + "[game_versions_order_by!]" + ], + "where": [ + 2370 + ] + } + ], + "game_versions_by_pk": [ + 2365, + { + "build_id": [ + 41, + "Int!" + ] + } + ], + "gamedata_signature_validations": [ + 2398, + { + "distinct_on": [ + 2417, + "[gamedata_signature_validations_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2414, + "[gamedata_signature_validations_order_by!]" + ], + "where": [ + 2403 + ] + } + ], + "gamedata_signature_validations_aggregate": [ + 2399, + { + "distinct_on": [ + 2417, + "[gamedata_signature_validations_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2414, + "[gamedata_signature_validations_order_by!]" + ], + "where": [ + 2403 + ] + } + ], + "gamedata_signature_validations_by_pk": [ + 2398, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "getActiveConnections": [ + 0 + ], + "getActiveQueries": [ + 1 + ], + "getConnectionStats": [ + 14 + ], + "getCurrentLocks": [ + 47 + ], + "getDatabaseStats": [ + 19 + ], + "getDedicatedServerInfo": [ + 21 + ], + "getDedicatedServerPlayers": [ + 75, + { + "serverId": [ + 85, + "String!" + ] + } + ], + "getHighlightPresetAvailability": [ + 37, + { + "match_map_id": [ + 6672, + "uuid!" + ], + "target_steam_id": [ + 85, + "String!" + ] + } + ], + "getIndexIOStats": [ + 39, + { + "schemas": [ + 85, + "[String!]" + ] + } + ], + "getIndexStats": [ + 40, + { + "schemas": [ + 85, + "[String!]" + ] + } + ], + "getNodeStats": [ + 54, + { + "node": [ + 85, + "String!" + ] + } + ], + "getQueryDetail": [ + 62, + { + "queryid": [ + 85, + "String!" + ] + } + ], + "getQueryStats": [ + 63 + ], + "getSchemas": [ + 85 + ], + "getServiceStats": [ + 59 + ], + "getStorageStats": [ + 83, + { + "schemas": [ + 85, + "[String!]" + ] + } + ], + "getTableIOStats": [ + 90, + { + "schemas": [ + 85, + "[String!]" + ] + } + ], + "getTableStats": [ + 92, + { + "schemas": [ + 85, + "[String!]" + ] + } + ], + "getTimescaleStats": [ + 110 + ], + "get_event_leaderboard": [ + 2442, + { + "args": [ + 2430, + "get_event_leaderboard_args!" + ], + "distinct_on": [ + 2453, + "[leaderboard_entries_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2452, + "[leaderboard_entries_order_by!]" + ], + "where": [ + 2446 + ] + } + ], + "get_event_leaderboard_aggregate": [ + 2443, + { + "args": [ + 2430, + "get_event_leaderboard_args!" + ], + "distinct_on": [ + 2453, + "[leaderboard_entries_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2452, + "[leaderboard_entries_order_by!]" + ], + "where": [ + 2446 + ] + } + ], + "get_leaderboard": [ + 2442, + { + "args": [ + 2431, + "get_leaderboard_args!" + ], + "distinct_on": [ + 2453, + "[leaderboard_entries_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2452, + "[leaderboard_entries_order_by!]" + ], + "where": [ + 2446 + ] + } + ], + "get_leaderboard_aggregate": [ + 2443, + { + "args": [ + 2431, + "get_leaderboard_args!" + ], + "distinct_on": [ + 2453, + "[leaderboard_entries_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2452, + "[leaderboard_entries_order_by!]" + ], + "where": [ + 2446 + ] + } + ], + "get_league_season_leaderboard": [ + 2442, + { + "args": [ + 2432, + "get_league_season_leaderboard_args!" + ], + "distinct_on": [ + 2453, + "[leaderboard_entries_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2452, + "[leaderboard_entries_order_by!]" + ], + "where": [ + 2446 + ] + } + ], + "get_league_season_leaderboard_aggregate": [ + 2443, + { + "args": [ + 2432, + "get_league_season_leaderboard_args!" + ], + "distinct_on": [ + 2453, + "[leaderboard_entries_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2452, + "[leaderboard_entries_order_by!]" + ], + "where": [ + 2446 + ] + } + ], + "get_player_leaderboard_rank": [ + 4089, + { + "args": [ + 2433, + "get_player_leaderboard_rank_args!" + ], + "distinct_on": [ + 4100, + "[player_leaderboard_rank_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4099, + "[player_leaderboard_rank_order_by!]" + ], + "where": [ + 4093 + ] + } + ], + "get_player_leaderboard_rank_aggregate": [ + 4090, + { + "args": [ + 2433, + "get_player_leaderboard_rank_args!" + ], + "distinct_on": [ + 4100, + "[player_leaderboard_rank_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4099, + "[player_leaderboard_rank_order_by!]" + ], + "where": [ + 4093 + ] + } + ], + "get_tournament_leaderboard": [ + 5494, + { + "args": [ + 2434, + "get_tournament_leaderboard_args!" + ], + "distinct_on": [ + 5505, + "[tournament_leaderboard_entries_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5504, + "[tournament_leaderboard_entries_order_by!]" + ], + "where": [ + 5498 + ] + } + ], + "get_tournament_leaderboard_aggregate": [ + 5495, + { + "args": [ + 2434, + "get_tournament_leaderboard_args!" + ], + "distinct_on": [ + 5505, + "[tournament_leaderboard_entries_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5504, + "[tournament_leaderboard_entries_order_by!]" + ], + "where": [ + 5498 + ] + } + ], + "leaderboard_entries": [ + 2442, + { + "distinct_on": [ + 2453, + "[leaderboard_entries_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2452, + "[leaderboard_entries_order_by!]" + ], + "where": [ + 2446 + ] + } + ], + "leaderboard_entries_aggregate": [ + 2443, + { + "distinct_on": [ + 2453, + "[leaderboard_entries_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2452, + "[leaderboard_entries_order_by!]" + ], + "where": [ + 2446 + ] + } + ], + "league_divisions": [ + 2466, + { + "distinct_on": [ + 2481, + "[league_divisions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2479, + "[league_divisions_order_by!]" + ], + "where": [ + 2470 + ] + } + ], + "league_divisions_aggregate": [ + 2467, + { + "distinct_on": [ + 2481, + "[league_divisions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2479, + "[league_divisions_order_by!]" + ], + "where": [ + 2470 + ] + } + ], + "league_divisions_by_pk": [ + 2466, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "league_match_weeks": [ + 2494, + { + "distinct_on": [ + 2515, + "[league_match_weeks_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2513, + "[league_match_weeks_order_by!]" + ], + "where": [ + 2503 + ] + } + ], + "league_match_weeks_aggregate": [ + 2495, + { + "distinct_on": [ + 2515, + "[league_match_weeks_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2513, + "[league_match_weeks_order_by!]" + ], + "where": [ + 2503 + ] + } + ], + "league_match_weeks_by_pk": [ + 2494, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "league_relegation_playoffs": [ + 2535, + { + "distinct_on": [ + 2556, + "[league_relegation_playoffs_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2554, + "[league_relegation_playoffs_order_by!]" + ], + "where": [ + 2544 + ] + } + ], + "league_relegation_playoffs_aggregate": [ + 2536, + { + "distinct_on": [ + 2556, + "[league_relegation_playoffs_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2554, + "[league_relegation_playoffs_order_by!]" + ], + "where": [ + 2544 + ] + } + ], + "league_relegation_playoffs_by_pk": [ + 2535, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "league_scheduling_proposals": [ + 2576, + { + "distinct_on": [ + 2597, + "[league_scheduling_proposals_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2595, + "[league_scheduling_proposals_order_by!]" + ], + "where": [ + 2585 + ] + } + ], + "league_scheduling_proposals_aggregate": [ + 2577, + { + "distinct_on": [ + 2597, + "[league_scheduling_proposals_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2595, + "[league_scheduling_proposals_order_by!]" + ], + "where": [ + 2585 + ] + } + ], + "league_scheduling_proposals_by_pk": [ + 2576, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "league_season_divisions": [ + 2617, + { + "distinct_on": [ + 2636, + "[league_season_divisions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2634, + "[league_season_divisions_order_by!]" + ], + "where": [ + 2624 + ] + } + ], + "league_season_divisions_aggregate": [ + 2618, + { + "distinct_on": [ + 2636, + "[league_season_divisions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2634, + "[league_season_divisions_order_by!]" + ], + "where": [ + 2624 + ] + } + ], + "league_season_divisions_by_pk": [ + 2617, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "league_seasons": [ + 2642, + { + "distinct_on": [ + 2662, + "[league_seasons_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2659, + "[league_seasons_order_by!]" + ], + "where": [ + 2647 + ] + } + ], + "league_seasons_aggregate": [ + 2643, + { + "distinct_on": [ + 2662, + "[league_seasons_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2659, + "[league_seasons_order_by!]" + ], + "where": [ + 2647 + ] + } + ], + "league_seasons_by_pk": [ + 2642, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "league_team_movements": [ + 2675, + { + "distinct_on": [ + 2696, + "[league_team_movements_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2694, + "[league_team_movements_order_by!]" + ], + "where": [ + 2684 + ] + } + ], + "league_team_movements_aggregate": [ + 2676, + { + "distinct_on": [ + 2696, + "[league_team_movements_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2694, + "[league_team_movements_order_by!]" + ], + "where": [ + 2684 + ] + } + ], + "league_team_movements_by_pk": [ + 2675, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "league_team_rosters": [ + 2716, + { + "distinct_on": [ + 2737, + "[league_team_rosters_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2735, + "[league_team_rosters_order_by!]" + ], + "where": [ + 2725 + ] + } + ], + "league_team_rosters_aggregate": [ + 2717, + { + "distinct_on": [ + 2737, + "[league_team_rosters_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2735, + "[league_team_rosters_order_by!]" + ], + "where": [ + 2725 + ] + } + ], + "league_team_rosters_by_pk": [ + 2716, + { + "league_team_season_id": [ + 6672, + "uuid!" + ], + "player_steam_id": [ + 312, + "bigint!" + ] + } + ], + "league_team_seasons": [ + 2757, + { + "distinct_on": [ + 2779, + "[league_team_seasons_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2777, + "[league_team_seasons_order_by!]" + ], + "where": [ + 2766 + ] + } + ], + "league_team_seasons_aggregate": [ + 2758, + { + "distinct_on": [ + 2779, + "[league_team_seasons_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2777, + "[league_team_seasons_order_by!]" + ], + "where": [ + 2766 + ] + } + ], + "league_team_seasons_by_pk": [ + 2757, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "league_teams": [ + 2799, + { + "distinct_on": [ + 2812, + "[league_teams_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2810, + "[league_teams_order_by!]" + ], + "where": [ + 2802 + ] + } + ], + "league_teams_aggregate": [ + 2800, + { + "distinct_on": [ + 2812, + "[league_teams_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2810, + "[league_teams_order_by!]" + ], + "where": [ + 2802 + ] + } + ], + "league_teams_by_pk": [ + 2799, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "listServerFiles": [ + 31, + { + "node_id": [ + 85, + "String!" + ], + "path": [ + 85 + ], + "server_id": [ + 85 + ] + } + ], + "lobbies": [ + 2818, + { + "distinct_on": [ + 2831, + "[lobbies_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2829, + "[lobbies_order_by!]" + ], + "where": [ + 2821 + ] + } + ], + "lobbies_aggregate": [ + 2819, + { + "distinct_on": [ + 2831, + "[lobbies_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2829, + "[lobbies_order_by!]" + ], + "where": [ + 2821 + ] + } + ], + "lobbies_by_pk": [ + 2818, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "lobby_players": [ + 2837, + { + "distinct_on": [ + 2860, + "[lobby_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2858, + "[lobby_players_order_by!]" + ], + "where": [ + 2848 + ] + } + ], + "lobby_players_aggregate": [ + 2838, + { + "distinct_on": [ + 2860, + "[lobby_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2858, + "[lobby_players_order_by!]" + ], + "where": [ + 2848 + ] + } + ], + "lobby_players_by_pk": [ + 2837, + { + "lobby_id": [ + 6672, + "uuid!" + ], + "steam_id": [ + 312, + "bigint!" + ] + } + ], + "map_callouts": [ + 2882, + { + "distinct_on": [ + 2899, + "[map_callouts_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2896, + "[map_callouts_order_by!]" + ], + "where": [ + 2886 + ] + } + ], + "map_callouts_aggregate": [ + 2883, + { + "distinct_on": [ + 2899, + "[map_callouts_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2896, + "[map_callouts_order_by!]" + ], + "where": [ + 2886 + ] + } + ], + "map_callouts_by_pk": [ + 2882, + { + "map_name": [ + 85, + "String!" + ], + "name": [ + 85, + "String!" + ] + } + ], + "map_pools": [ + 2905, + { + "distinct_on": [ + 2918, + "[map_pools_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2916, + "[map_pools_order_by!]" + ], + "where": [ + 2908 + ] + } + ], + "map_pools_aggregate": [ + 2906, + { + "distinct_on": [ + 2918, + "[map_pools_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2916, + "[map_pools_order_by!]" + ], + "where": [ + 2908 + ] + } + ], + "map_pools_by_pk": [ + 2905, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "maps": [ + 2924, + { + "distinct_on": [ + 2945, + "[maps_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2943, + "[maps_order_by!]" + ], + "where": [ + 2933 + ] + } + ], + "maps_aggregate": [ + 2925, + { + "distinct_on": [ + 2945, + "[maps_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2943, + "[maps_order_by!]" + ], + "where": [ + 2933 + ] + } + ], + "maps_by_pk": [ + 2924, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "match_clips": [ + 2953, + { + "distinct_on": [ + 2975, + "[match_clips_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2973, + "[match_clips_order_by!]" + ], + "where": [ + 2962 + ] + } + ], + "match_clips_aggregate": [ + 2954, + { + "distinct_on": [ + 2975, + "[match_clips_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2973, + "[match_clips_order_by!]" + ], + "where": [ + 2962 + ] + } + ], + "match_clips_by_pk": [ + 2953, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "match_demo_sessions": [ + 2995, + { + "distinct_on": [ + 3021, + "[match_demo_sessions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3018, + "[match_demo_sessions_order_by!]" + ], + "where": [ + 3005 + ] + } + ], + "match_demo_sessions_aggregate": [ + 2996, + { + "distinct_on": [ + 3021, + "[match_demo_sessions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3018, + "[match_demo_sessions_order_by!]" + ], + "where": [ + 3005 + ] + } + ], + "match_demo_sessions_by_pk": [ + 2995, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "match_lineup_players": [ + 3041, + { + "distinct_on": [ + 3064, + "[match_lineup_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3062, + "[match_lineup_players_order_by!]" + ], + "where": [ + 3052 + ] + } + ], + "match_lineup_players_aggregate": [ + 3042, + { + "distinct_on": [ + 3064, + "[match_lineup_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3062, + "[match_lineup_players_order_by!]" + ], + "where": [ + 3052 + ] + } + ], + "match_lineup_players_by_pk": [ + 3041, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "match_lineups": [ + 3086, + { + "distinct_on": [ + 3108, + "[match_lineups_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3106, + "[match_lineups_order_by!]" + ], + "where": [ + 3095 + ] + } + ], + "match_lineups_aggregate": [ + 3087, + { + "distinct_on": [ + 3108, + "[match_lineups_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3106, + "[match_lineups_order_by!]" + ], + "where": [ + 3095 + ] + } + ], + "match_lineups_by_pk": [ + 3086, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "match_map_demos": [ + 3128, + { + "distinct_on": [ + 3157, + "[match_map_demos_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3154, + "[match_map_demos_order_by!]" + ], + "where": [ + 3140 + ] + } + ], + "match_map_demos_aggregate": [ + 3129, + { + "distinct_on": [ + 3157, + "[match_map_demos_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3154, + "[match_map_demos_order_by!]" + ], + "where": [ + 3140 + ] + } + ], + "match_map_demos_by_pk": [ + 3128, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "match_map_rounds": [ + 3179, + { + "distinct_on": [ + 3200, + "[match_map_rounds_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3198, + "[match_map_rounds_order_by!]" + ], + "where": [ + 3188 + ] + } + ], + "match_map_rounds_aggregate": [ + 3180, + { + "distinct_on": [ + 3200, + "[match_map_rounds_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3198, + "[match_map_rounds_order_by!]" + ], + "where": [ + 3188 + ] + } + ], + "match_map_rounds_by_pk": [ + 3179, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "match_map_veto_picks": [ + 3220, + { + "distinct_on": [ + 3240, + "[match_map_veto_picks_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3238, + "[match_map_veto_picks_order_by!]" + ], + "where": [ + 3229 + ] + } + ], + "match_map_veto_picks_aggregate": [ + 3221, + { + "distinct_on": [ + 3240, + "[match_map_veto_picks_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3238, + "[match_map_veto_picks_order_by!]" + ], + "where": [ + 3229 + ] + } + ], + "match_map_veto_picks_by_pk": [ + 3220, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "match_maps": [ + 3248, + { + "distinct_on": [ + 3270, + "[match_maps_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3268, + "[match_maps_order_by!]" + ], + "where": [ + 3257 + ] + } + ], + "match_maps_aggregate": [ + 3249, + { + "distinct_on": [ + 3270, + "[match_maps_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3268, + "[match_maps_order_by!]" + ], + "where": [ + 3257 + ] + } + ], + "match_maps_by_pk": [ + 3248, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "match_options": [ + 3290, + { + "distinct_on": [ + 3314, + "[match_options_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3312, + "[match_options_order_by!]" + ], + "where": [ + 3301 + ] + } + ], + "match_options_aggregate": [ + 3291, + { + "distinct_on": [ + 3314, + "[match_options_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3312, + "[match_options_order_by!]" + ], + "where": [ + 3301 + ] + } + ], + "match_options_by_pk": [ + 3290, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "match_region_veto_picks": [ + 3336, + { + "distinct_on": [ + 3356, + "[match_region_veto_picks_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3354, + "[match_region_veto_picks_order_by!]" + ], + "where": [ + 3345 + ] + } + ], + "match_region_veto_picks_aggregate": [ + 3337, + { + "distinct_on": [ + 3356, + "[match_region_veto_picks_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3354, + "[match_region_veto_picks_order_by!]" + ], + "where": [ + 3345 + ] + } + ], + "match_region_veto_picks_by_pk": [ + 3336, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "match_streams": [ + 3364, + { + "distinct_on": [ + 3392, + "[match_streams_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3389, + "[match_streams_order_by!]" + ], + "where": [ + 3376 + ] + } + ], + "match_streams_aggregate": [ + 3365, + { + "distinct_on": [ + 3392, + "[match_streams_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3389, + "[match_streams_order_by!]" + ], + "where": [ + 3376 + ] + } + ], + "match_streams_by_pk": [ + 3364, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "match_type_cfgs": [ + 3414, + { + "distinct_on": [ + 3426, + "[match_type_cfgs_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3424, + "[match_type_cfgs_order_by!]" + ], + "where": [ + 3417 + ] + } + ], + "match_type_cfgs_aggregate": [ + 3415, + { + "distinct_on": [ + 3426, + "[match_type_cfgs_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3424, + "[match_type_cfgs_order_by!]" + ], + "where": [ + 3417 + ] + } + ], + "match_type_cfgs_by_pk": [ + 3414, + { + "type": [ + 876, + "e_game_cfg_types_enum!" + ] + } + ], + "matches": [ + 3432, + { + "distinct_on": [ + 3456, + "[matches_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3454, + "[matches_order_by!]" + ], + "where": [ + 3443 + ] + } + ], + "matches_aggregate": [ + 3433, + { + "distinct_on": [ + 3456, + "[matches_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3454, + "[matches_order_by!]" + ], + "where": [ + 3443 + ] + } + ], + "matches_by_pk": [ + 3432, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "me": [ + 49 + ], + "migration_hashes_hashes": [ + 3478, + { + "distinct_on": [ + 3490, + "[migration_hashes_hashes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3488, + "[migration_hashes_hashes_order_by!]" + ], + "where": [ + 3481 + ] + } + ], + "migration_hashes_hashes_aggregate": [ + 3479, + { + "distinct_on": [ + 3490, + "[migration_hashes_hashes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3488, + "[migration_hashes_hashes_order_by!]" + ], + "where": [ + 3481 + ] + } + ], + "migration_hashes_hashes_by_pk": [ + 3478, + { + "name": [ + 85, + "String!" + ] + } + ], + "my_friends": [ + 3496, + { + "distinct_on": [ + 3521, + "[my_friends_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3519, + "[my_friends_order_by!]" + ], + "where": [ + 3508 + ] + } + ], + "my_friends_aggregate": [ + 3497, + { + "distinct_on": [ + 3521, + "[my_friends_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3519, + "[my_friends_order_by!]" + ], + "where": [ + 3508 + ] + } + ], + "newsPostAdmin": [ + 52, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "newsPostsAdmin": [ + 52 + ], + "news_articles": [ + 3542, + { + "distinct_on": [ + 3556, + "[news_articles_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3554, + "[news_articles_order_by!]" + ], + "where": [ + 3546 + ] + } + ], + "news_articles_aggregate": [ + 3543, + { + "distinct_on": [ + 3556, + "[news_articles_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3554, + "[news_articles_order_by!]" + ], + "where": [ + 3546 + ] + } + ], + "news_articles_by_pk": [ + 3542, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "notification_preferences": [ + 3569, + { + "distinct_on": [ + 3583, + "[notification_preferences_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3581, + "[notification_preferences_order_by!]" + ], + "where": [ + 3573 + ] + } + ], + "notification_preferences_aggregate": [ + 3570, + { + "distinct_on": [ + 3583, + "[notification_preferences_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3581, + "[notification_preferences_order_by!]" + ], + "where": [ + 3573 + ] + } + ], + "notification_preferences_by_pk": [ + 3569, + { + "channel": [ + 85, + "String!" + ], + "key": [ + 85, + "String!" + ], + "steam_id": [ + 312, + "bigint!" + ] + } + ], + "notifications": [ + 3596, + { + "distinct_on": [ + 3624, + "[notifications_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3621, + "[notifications_order_by!]" + ], + "where": [ + 3608 + ] + } + ], + "notifications_aggregate": [ + 3597, + { + "distinct_on": [ + 3624, + "[notifications_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3621, + "[notifications_order_by!]" + ], + "where": [ + 3608 + ] + } + ], + "notifications_by_pk": [ + 3596, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "pending_match_import_players": [ + 3649, + { + "distinct_on": [ + 3670, + "[pending_match_import_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3668, + "[pending_match_import_players_order_by!]" + ], + "where": [ + 3658 + ] + } + ], + "pending_match_import_players_aggregate": [ + 3650, + { + "distinct_on": [ + 3670, + "[pending_match_import_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3668, + "[pending_match_import_players_order_by!]" + ], + "where": [ + 3658 + ] + } + ], + "pending_match_import_players_by_pk": [ + 3649, + { + "steam_id": [ + 312, + "bigint!" + ], + "valve_match_id": [ + 3646, + "numeric!" + ] + } + ], + "pending_match_imports": [ + 3690, + { + "distinct_on": [ + 3705, + "[pending_match_imports_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3703, + "[pending_match_imports_order_by!]" + ], + "where": [ + 3694 + ] + } + ], + "pending_match_imports_aggregate": [ + 3691, + { + "distinct_on": [ + 3705, + "[pending_match_imports_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3703, + "[pending_match_imports_order_by!]" + ], + "where": [ + 3694 + ] + } + ], + "pending_match_imports_by_pk": [ + 3690, + { + "valve_match_id": [ + 3646, + "numeric!" + ] + } + ], + "player_aim_stats_demo": [ + 3718, + { + "distinct_on": [ + 3732, + "[player_aim_stats_demo_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3730, + "[player_aim_stats_demo_order_by!]" + ], + "where": [ + 3722 + ] + } + ], + "player_aim_stats_demo_aggregate": [ + 3719, + { + "distinct_on": [ + 3732, + "[player_aim_stats_demo_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3730, + "[player_aim_stats_demo_order_by!]" + ], + "where": [ + 3722 + ] + } + ], + "player_aim_stats_demo_by_pk": [ + 3718, + { + "attacker_steam_id": [ + 312, + "bigint!" + ], + "match_map_id": [ + 6672, + "uuid!" + ] + } + ], + "player_aim_weapon_stats": [ + 3745, + { + "distinct_on": [ + 3766, + "[player_aim_weapon_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3764, + "[player_aim_weapon_stats_order_by!]" + ], + "where": [ + 3754 + ] + } + ], + "player_aim_weapon_stats_aggregate": [ + 3746, + { + "distinct_on": [ + 3766, + "[player_aim_weapon_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3764, + "[player_aim_weapon_stats_order_by!]" + ], + "where": [ + 3754 + ] + } + ], + "player_aim_weapon_stats_by_pk": [ + 3745, + { + "match_map_id": [ + 6672, + "uuid!" + ], + "steam_id": [ + 312, + "bigint!" + ], + "weapon_class": [ + 85, + "String!" + ] + } + ], + "player_assists": [ + 3786, + { + "distinct_on": [ + 3809, + "[player_assists_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3807, + "[player_assists_order_by!]" + ], + "where": [ + 3797 + ] + } + ], + "player_assists_aggregate": [ + 3787, + { + "distinct_on": [ + 3809, + "[player_assists_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3807, + "[player_assists_order_by!]" + ], + "where": [ + 3797 + ] + } + ], + "player_assists_by_pk": [ + 3786, + { + "attacked_steam_id": [ + 312, + "bigint!" + ], + "attacker_steam_id": [ + 312, + "bigint!" + ], + "match_map_id": [ + 6672, + "uuid!" + ], + "time": [ + 5243, + "timestamptz!" + ] + } + ], + "player_career_stats_v": [ + 3831, + { + "distinct_on": [ + 3839, + "[player_career_stats_v_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3838, + "[player_career_stats_v_order_by!]" + ], + "where": [ + 3835 + ] + } + ], + "player_career_stats_v_aggregate": [ + 3832, + { + "distinct_on": [ + 3839, + "[player_career_stats_v_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3838, + "[player_career_stats_v_order_by!]" + ], + "where": [ + 3835 + ] + } + ], + "player_damages": [ + 3849, + { + "distinct_on": [ + 3870, + "[player_damages_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3868, + "[player_damages_order_by!]" + ], + "where": [ + 3858 + ] + } + ], + "player_damages_aggregate": [ + 3850, + { + "distinct_on": [ + 3870, + "[player_damages_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3868, + "[player_damages_order_by!]" + ], + "where": [ + 3858 + ] + } + ], + "player_damages_by_pk": [ + 3849, + { + "id": [ + 6672, + "uuid!" + ], + "match_map_id": [ + 6672, + "uuid!" + ], + "time": [ + 5243, + "timestamptz!" + ] + } + ], + "player_elo": [ + 3890, + { + "distinct_on": [ + 3904, + "[player_elo_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3902, + "[player_elo_order_by!]" + ], + "where": [ + 3894 + ] + } + ], + "player_elo_aggregate": [ + 3891, + { + "distinct_on": [ + 3904, + "[player_elo_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3902, + "[player_elo_order_by!]" + ], + "where": [ + 3894 + ] + } + ], + "player_elo_by_pk": [ + 3890, + { + "match_id": [ + 6672, + "uuid!" + ], + "steam_id": [ + 312, + "bigint!" + ], + "type": [ + 1225, + "e_match_types_enum!" + ] + } + ], + "player_faceit_rank_history": [ + 3917, + { + "distinct_on": [ + 3938, + "[player_faceit_rank_history_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3936, + "[player_faceit_rank_history_order_by!]" + ], + "where": [ + 3926 + ] + } + ], + "player_faceit_rank_history_aggregate": [ + 3918, + { + "distinct_on": [ + 3938, + "[player_faceit_rank_history_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3936, + "[player_faceit_rank_history_order_by!]" + ], + "where": [ + 3926 + ] + } + ], + "player_faceit_rank_history_by_pk": [ + 3917, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "player_flashes": [ + 3958, + { + "distinct_on": [ + 3981, + "[player_flashes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3979, + "[player_flashes_order_by!]" + ], + "where": [ + 3969 + ] + } + ], + "player_flashes_aggregate": [ + 3959, + { + "distinct_on": [ + 3981, + "[player_flashes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3979, + "[player_flashes_order_by!]" + ], + "where": [ + 3969 + ] + } + ], + "player_flashes_by_pk": [ + 3958, + { + "attacked_steam_id": [ + 312, + "bigint!" + ], + "attacker_steam_id": [ + 312, + "bigint!" + ], + "match_map_id": [ + 6672, + "uuid!" + ], + "time": [ + 5243, + "timestamptz!" + ] + } + ], + "player_kills": [ + 4003, + { + "distinct_on": [ + 4067, + "[player_kills_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4065, + "[player_kills_order_by!]" + ], + "where": [ + 4014 + ] + } + ], + "player_kills_aggregate": [ + 4004, + { + "distinct_on": [ + 4067, + "[player_kills_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4065, + "[player_kills_order_by!]" + ], + "where": [ + 4014 + ] + } + ], + "player_kills_by_pk": [ + 4003, + { + "attacked_steam_id": [ + 312, + "bigint!" + ], + "attacker_steam_id": [ + 312, + "bigint!" + ], + "match_map_id": [ + 6672, + "uuid!" + ], + "time": [ + 5243, + "timestamptz!" + ] + } + ], + "player_kills_by_weapon": [ + 4015, + { + "distinct_on": [ + 4036, + "[player_kills_by_weapon_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4034, + "[player_kills_by_weapon_order_by!]" + ], + "where": [ + 4024 + ] + } + ], + "player_kills_by_weapon_aggregate": [ + 4016, + { + "distinct_on": [ + 4036, + "[player_kills_by_weapon_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4034, + "[player_kills_by_weapon_order_by!]" + ], + "where": [ + 4024 + ] + } + ], + "player_kills_by_weapon_by_pk": [ + 4015, + { + "player_steam_id": [ + 312, + "bigint!" + ], + "with": [ + 85, + "String!" + ] + } + ], + "player_leaderboard_rank": [ + 4089, + { + "distinct_on": [ + 4100, + "[player_leaderboard_rank_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4099, + "[player_leaderboard_rank_order_by!]" + ], + "where": [ + 4093 + ] + } + ], + "player_leaderboard_rank_aggregate": [ + 4090, + { + "distinct_on": [ + 4100, + "[player_leaderboard_rank_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4099, + "[player_leaderboard_rank_order_by!]" + ], + "where": [ + 4093 + ] + } + ], + "player_match_map_stats": [ + 4112, + { + "distinct_on": [ + 4133, + "[player_match_map_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4131, + "[player_match_map_stats_order_by!]" + ], + "where": [ + 4121 + ] + } + ], + "player_match_map_stats_aggregate": [ + 4113, + { + "distinct_on": [ + 4133, + "[player_match_map_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4131, + "[player_match_map_stats_order_by!]" + ], + "where": [ + 4121 + ] + } + ], + "player_match_map_stats_by_pk": [ + 4112, + { + "match_map_id": [ + 6672, + "uuid!" + ], + "steam_id": [ + 312, + "bigint!" + ] + } + ], + "player_match_performance_v": [ + 4153, + { + "distinct_on": [ + 4161, + "[player_match_performance_v_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4160, + "[player_match_performance_v_order_by!]" + ], + "where": [ + 4157 + ] + } + ], + "player_match_performance_v_aggregate": [ + 4154, + { + "distinct_on": [ + 4161, + "[player_match_performance_v_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4160, + "[player_match_performance_v_order_by!]" + ], + "where": [ + 4157 + ] + } + ], + "player_match_stats_v": [ + 4171, + { + "distinct_on": [ + 4187, + "[player_match_stats_v_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4186, + "[player_match_stats_v_order_by!]" + ], + "where": [ + 4180 + ] + } + ], + "player_match_stats_v_aggregate": [ + 4172, + { + "distinct_on": [ + 4187, + "[player_match_stats_v_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4186, + "[player_match_stats_v_order_by!]" + ], + "where": [ + 4180 + ] + } + ], + "player_objectives": [ + 4204, + { + "distinct_on": [ + 4225, + "[player_objectives_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4223, + "[player_objectives_order_by!]" + ], + "where": [ + 4213 + ] + } + ], + "player_objectives_aggregate": [ + 4205, + { + "distinct_on": [ + 4225, + "[player_objectives_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4223, + "[player_objectives_order_by!]" + ], + "where": [ + 4213 + ] + } + ], + "player_objectives_by_pk": [ + 4204, + { + "match_map_id": [ + 6672, + "uuid!" + ], + "player_steam_id": [ + 312, + "bigint!" + ], + "time": [ + 5243, + "timestamptz!" + ] + } + ], + "player_performance_v": [ + 4245, + { + "distinct_on": [ + 4253, + "[player_performance_v_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4252, + "[player_performance_v_order_by!]" + ], + "where": [ + 4249 + ] + } + ], + "player_performance_v_aggregate": [ + 4246, + { + "distinct_on": [ + 4253, + "[player_performance_v_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4252, + "[player_performance_v_order_by!]" + ], + "where": [ + 4249 + ] + } + ], + "player_premier_rank_history": [ + 4263, + { + "distinct_on": [ + 4284, + "[player_premier_rank_history_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4282, + "[player_premier_rank_history_order_by!]" + ], + "where": [ + 4272 + ] + } + ], + "player_premier_rank_history_aggregate": [ + 4264, + { + "distinct_on": [ + 4284, + "[player_premier_rank_history_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4282, + "[player_premier_rank_history_order_by!]" + ], + "where": [ + 4272 + ] + } + ], + "player_premier_rank_history_by_pk": [ + 4263, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "player_sanctions": [ + 4304, + { + "distinct_on": [ + 4325, + "[player_sanctions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4323, + "[player_sanctions_order_by!]" + ], + "where": [ + 4313 + ] + } + ], + "player_sanctions_aggregate": [ + 4305, + { + "distinct_on": [ + 4325, + "[player_sanctions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4323, + "[player_sanctions_order_by!]" + ], + "where": [ + 4313 + ] + } + ], + "player_sanctions_by_pk": [ + 4304, + { + "created_at": [ + 5243, + "timestamptz!" + ], + "id": [ + 6672, + "uuid!" + ] + } + ], + "player_season_stats": [ + 4345, + { + "distinct_on": [ + 4376, + "[player_season_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4374, + "[player_season_stats_order_by!]" + ], + "where": [ + 4364 + ] + } + ], + "player_season_stats_aggregate": [ + 4346, + { + "distinct_on": [ + 4376, + "[player_season_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4374, + "[player_season_stats_order_by!]" + ], + "where": [ + 4364 + ] + } + ], + "player_season_stats_by_pk": [ + 4345, + { + "player_steam_id": [ + 312, + "bigint!" + ], + "season_id": [ + 6672, + "uuid!" + ] + } + ], + "player_stats": [ + 4404, + { + "distinct_on": [ + 4419, + "[player_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4417, + "[player_stats_order_by!]" + ], + "where": [ + 4408 + ] + } + ], + "player_stats_aggregate": [ + 4405, + { + "distinct_on": [ + 4419, + "[player_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4417, + "[player_stats_order_by!]" + ], + "where": [ + 4408 + ] + } + ], + "player_stats_by_pk": [ + 4404, + { + "player_steam_id": [ + 312, + "bigint!" + ] + } + ], + "player_steam_bot_friend": [ + 4432, + { + "distinct_on": [ + 4451, + "[player_steam_bot_friend_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4448, + "[player_steam_bot_friend_order_by!]" + ], + "where": [ + 4437 + ] + } + ], + "player_steam_bot_friend_aggregate": [ + 4433, + { + "distinct_on": [ + 4451, + "[player_steam_bot_friend_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4448, + "[player_steam_bot_friend_order_by!]" + ], + "where": [ + 4437 + ] + } + ], + "player_steam_bot_friend_by_pk": [ + 4432, + { + "steam_id": [ + 312, + "bigint!" + ] + } + ], + "player_steam_match_auth": [ + 4464, + { + "distinct_on": [ + 4478, + "[player_steam_match_auth_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4476, + "[player_steam_match_auth_order_by!]" + ], + "where": [ + 4468 + ] + } + ], + "player_steam_match_auth_aggregate": [ + 4465, + { + "distinct_on": [ + 4478, + "[player_steam_match_auth_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4476, + "[player_steam_match_auth_order_by!]" + ], + "where": [ + 4468 + ] + } + ], + "player_steam_match_auth_by_pk": [ + 4464, + { + "steam_id": [ + 312, + "bigint!" + ] + } + ], + "player_unused_utility": [ + 4491, + { + "distinct_on": [ + 4512, + "[player_unused_utility_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4510, + "[player_unused_utility_order_by!]" + ], + "where": [ + 4500 + ] + } + ], + "player_unused_utility_aggregate": [ + 4492, + { + "distinct_on": [ + 4512, + "[player_unused_utility_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4510, + "[player_unused_utility_order_by!]" + ], + "where": [ + 4500 + ] + } + ], + "player_unused_utility_by_pk": [ + 4491, + { + "match_map_id": [ + 6672, + "uuid!" + ], + "player_steam_id": [ + 312, + "bigint!" + ] + } + ], + "player_utility": [ + 4532, + { + "distinct_on": [ + 4553, + "[player_utility_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4551, + "[player_utility_order_by!]" + ], + "where": [ + 4541 + ] + } + ], + "player_utility_aggregate": [ + 4533, + { + "distinct_on": [ + 4553, + "[player_utility_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4551, + "[player_utility_order_by!]" + ], + "where": [ + 4541 + ] + } + ], + "player_utility_by_pk": [ + 4532, + { + "attacker_steam_id": [ + 312, + "bigint!" + ], + "match_map_id": [ + 6672, + "uuid!" + ], + "time": [ + 5243, + "timestamptz!" + ] + } + ], + "player_weapon_stats_v": [ + 4573, + { + "distinct_on": [ + 4589, + "[player_weapon_stats_v_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4588, + "[player_weapon_stats_v_order_by!]" + ], + "where": [ + 4582 + ] + } + ], + "player_weapon_stats_v_aggregate": [ + 4574, + { + "distinct_on": [ + 4589, + "[player_weapon_stats_v_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4588, + "[player_weapon_stats_v_order_by!]" + ], + "where": [ + 4582 + ] + } + ], + "players": [ + 4606, + { + "distinct_on": [ + 4621, + "[players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4619, + "[players_order_by!]" + ], + "where": [ + 4610 + ] + } + ], + "players_aggregate": [ + 4607, + { + "distinct_on": [ + 4621, + "[players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4619, + "[players_order_by!]" + ], + "where": [ + 4610 + ] + } + ], + "players_by_pk": [ + 4606, + { + "steam_id": [ + 312, + "bigint!" + ] + } + ], + "plugin_versions": [ + 4634, + { + "distinct_on": [ + 4648, + "[plugin_versions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4646, + "[plugin_versions_order_by!]" + ], + "where": [ + 4638 + ] + } + ], + "plugin_versions_aggregate": [ + 4635, + { + "distinct_on": [ + 4648, + "[plugin_versions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4646, + "[plugin_versions_order_by!]" + ], + "where": [ + 4638 + ] + } + ], + "plugin_versions_by_pk": [ + 4634, + { + "runtime": [ + 1306, + "e_plugin_runtimes_enum!" + ], + "version": [ + 85, + "String!" + ] + } + ], + "push_subscriptions": [ + 4661, + { + "distinct_on": [ + 4675, + "[push_subscriptions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4673, + "[push_subscriptions_order_by!]" + ], + "where": [ + 4665 + ] + } + ], + "push_subscriptions_aggregate": [ + 4662, + { + "distinct_on": [ + 4675, + "[push_subscriptions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4673, + "[push_subscriptions_order_by!]" + ], + "where": [ + 4665 + ] + } + ], + "push_subscriptions_by_pk": [ + 4661, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "readServerFile": [ + 29, + { + "file_path": [ + 85, + "String!" + ], + "node_id": [ + 85, + "String!" + ], + "server_id": [ + 85 + ] + } + ], + "role_permissions": [ + 4692, + { + "distinct_on": [ + 4701, + "[role_permissions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4700, + "[role_permissions_order_by!]" + ], + "where": [ + 4695 + ] + } + ], + "role_permissions_aggregate": [ + 4693, + { + "distinct_on": [ + 4701, + "[role_permissions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4700, + "[role_permissions_order_by!]" + ], + "where": [ + 4695 + ] + } + ], + "seasons": [ + 4706, + { + "distinct_on": [ + 4721, + "[seasons_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4719, + "[seasons_order_by!]" + ], + "where": [ + 4710 + ] + } + ], + "seasons_aggregate": [ + 4707, + { + "distinct_on": [ + 4721, + "[seasons_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4719, + "[seasons_order_by!]" + ], + "where": [ + 4710 + ] + } + ], + "seasons_by_pk": [ + 4706, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "server_regions": [ + 4734, + { + "distinct_on": [ + 4748, + "[server_regions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4746, + "[server_regions_order_by!]" + ], + "where": [ + 4738 + ] + } + ], + "server_regions_aggregate": [ + 4735, + { + "distinct_on": [ + 4748, + "[server_regions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4746, + "[server_regions_order_by!]" + ], + "where": [ + 4738 + ] + } + ], + "server_regions_by_pk": [ + 4734, + { + "value": [ + 85, + "String!" + ] + } + ], + "servers": [ + 4761, + { + "distinct_on": [ + 4790, + "[servers_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4787, + "[servers_order_by!]" + ], + "where": [ + 4773 + ] + } + ], + "servers_aggregate": [ + 4762, + { + "distinct_on": [ + 4790, + "[servers_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4787, + "[servers_order_by!]" + ], + "where": [ + 4773 + ] + } + ], + "servers_by_pk": [ + 4761, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "settings": [ + 4812, + { + "distinct_on": [ + 4824, + "[settings_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4822, + "[settings_order_by!]" + ], + "where": [ + 4815 + ] + } + ], + "settings_aggregate": [ + 4813, + { + "distinct_on": [ + 4824, + "[settings_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4822, + "[settings_order_by!]" + ], + "where": [ + 4815 + ] + } + ], + "settings_by_pk": [ + 4812, + { + "name": [ + 85, + "String!" + ] + } + ], + "steamPresenceAdminStatus": [ + 79 + ], + "steam_account_claims": [ + 4832, + { + "distinct_on": [ + 4850, + "[steam_account_claims_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4848, + "[steam_account_claims_order_by!]" + ], + "where": [ + 4839 + ] + } + ], + "steam_account_claims_aggregate": [ + 4833, + { + "distinct_on": [ + 4850, + "[steam_account_claims_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4848, + "[steam_account_claims_order_by!]" + ], + "where": [ + 4839 + ] + } + ], + "steam_account_claims_by_pk": [ + 4832, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "steam_accounts": [ + 4856, + { + "distinct_on": [ + 4871, + "[steam_accounts_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4869, + "[steam_accounts_order_by!]" + ], + "where": [ + 4860 + ] + } + ], + "steam_accounts_aggregate": [ + 4857, + { + "distinct_on": [ + 4871, + "[steam_accounts_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4869, + "[steam_accounts_order_by!]" + ], + "where": [ + 4860 + ] + } + ], + "steam_accounts_by_pk": [ + 4856, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "system_alerts": [ + 4884, + { + "distinct_on": [ + 4898, + "[system_alerts_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4896, + "[system_alerts_order_by!]" + ], + "where": [ + 4888 + ] + } + ], + "system_alerts_aggregate": [ + 4885, + { + "distinct_on": [ + 4898, + "[system_alerts_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4896, + "[system_alerts_order_by!]" + ], + "where": [ + 4888 + ] + } + ], + "system_alerts_by_pk": [ + 4884, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "teamCalendarUrl": [ + 93, + { + "team_id": [ + 6672, + "uuid!" + ] + } + ], + "team_invites": [ + 4911, + { + "distinct_on": [ + 4932, + "[team_invites_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4930, + "[team_invites_order_by!]" + ], + "where": [ + 4920 + ] + } + ], + "team_invites_aggregate": [ + 4912, + { + "distinct_on": [ + 4932, + "[team_invites_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4930, + "[team_invites_order_by!]" + ], + "where": [ + 4920 + ] + } + ], + "team_invites_by_pk": [ + 4911, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "team_roster": [ + 4952, + { + "distinct_on": [ + 4975, + "[team_roster_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4973, + "[team_roster_order_by!]" + ], + "where": [ + 4963 + ] + } + ], + "team_roster_aggregate": [ + 4953, + { + "distinct_on": [ + 4975, + "[team_roster_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4973, + "[team_roster_order_by!]" + ], + "where": [ + 4963 + ] + } + ], + "team_roster_by_pk": [ + 4952, + { + "player_steam_id": [ + 312, + "bigint!" + ], + "team_id": [ + 6672, + "uuid!" + ] + } + ], + "team_scrim_alerts": [ + 4997, + { + "distinct_on": [ + 5011, + "[team_scrim_alerts_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5009, + "[team_scrim_alerts_order_by!]" + ], + "where": [ + 5001 + ] + } + ], + "team_scrim_alerts_aggregate": [ + 4998, + { + "distinct_on": [ + 5011, + "[team_scrim_alerts_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5009, + "[team_scrim_alerts_order_by!]" + ], + "where": [ + 5001 + ] + } + ], + "team_scrim_alerts_by_pk": [ + 4997, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "team_scrim_availability": [ + 5024, + { + "distinct_on": [ + 5044, + "[team_scrim_availability_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5042, + "[team_scrim_availability_order_by!]" + ], + "where": [ + 5033 + ] + } + ], + "team_scrim_availability_aggregate": [ + 5025, + { + "distinct_on": [ + 5044, + "[team_scrim_availability_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5042, + "[team_scrim_availability_order_by!]" + ], + "where": [ + 5033 + ] + } + ], + "team_scrim_availability_by_pk": [ + 5024, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "team_scrim_request_proposals": [ + 5052, + { + "distinct_on": [ + 5073, + "[team_scrim_request_proposals_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5071, + "[team_scrim_request_proposals_order_by!]" + ], + "where": [ + 5061 + ] + } + ], + "team_scrim_request_proposals_aggregate": [ + 5053, + { + "distinct_on": [ + 5073, + "[team_scrim_request_proposals_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5071, + "[team_scrim_request_proposals_order_by!]" + ], + "where": [ + 5061 + ] + } + ], + "team_scrim_request_proposals_by_pk": [ + 5052, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "team_scrim_requests": [ + 5093, + { + "distinct_on": [ + 5117, + "[team_scrim_requests_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5115, + "[team_scrim_requests_order_by!]" + ], + "where": [ + 5104 + ] + } + ], + "team_scrim_requests_aggregate": [ + 5094, + { + "distinct_on": [ + 5117, + "[team_scrim_requests_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5115, + "[team_scrim_requests_order_by!]" + ], + "where": [ + 5104 + ] + } + ], + "team_scrim_requests_by_pk": [ + 5093, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "team_scrim_settings": [ + 5139, + { + "distinct_on": [ + 5154, + "[team_scrim_settings_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5152, + "[team_scrim_settings_order_by!]" + ], + "where": [ + 5143 + ] + } + ], + "team_scrim_settings_aggregate": [ + 5140, + { + "distinct_on": [ + 5154, + "[team_scrim_settings_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5152, + "[team_scrim_settings_order_by!]" + ], + "where": [ + 5143 + ] + } + ], + "team_scrim_settings_by_pk": [ + 5139, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "team_suggestions": [ + 5167, + { + "distinct_on": [ + 5181, + "[team_suggestions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5179, + "[team_suggestions_order_by!]" + ], + "where": [ + 5171 + ] + } + ], + "team_suggestions_aggregate": [ + 5168, + { + "distinct_on": [ + 5181, + "[team_suggestions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5179, + "[team_suggestions_order_by!]" + ], + "where": [ + 5171 + ] + } + ], + "team_suggestions_by_pk": [ + 5167, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "teams": [ + 5194, + { + "distinct_on": [ + 5218, + "[teams_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5216, + "[teams_order_by!]" + ], + "where": [ + 5205 + ] + } + ], + "teams_aggregate": [ + 5195, + { + "distinct_on": [ + 5218, + "[teams_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5216, + "[teams_order_by!]" + ], + "where": [ + 5205 + ] + } + ], + "teams_by_pk": [ + 5194, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "telemetryStats": [ + 103, + { + "includeSelf": [ + 6 + ] + } + ], + "tournament_awards": [ + 5245, + { + "distinct_on": [ + 5267, + "[tournament_awards_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5265, + "[tournament_awards_order_by!]" + ], + "where": [ + 5254 + ] + } + ], + "tournament_awards_aggregate": [ + 5246, + { + "distinct_on": [ + 5267, + "[tournament_awards_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5265, + "[tournament_awards_order_by!]" + ], + "where": [ + 5254 + ] + } + ], + "tournament_awards_by_pk": [ + 5245, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "tournament_brackets": [ + 5287, + { + "distinct_on": [ + 5311, + "[tournament_brackets_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5309, + "[tournament_brackets_order_by!]" + ], + "where": [ + 5298 + ] + } + ], + "tournament_brackets_aggregate": [ + 5288, + { + "distinct_on": [ + 5311, + "[tournament_brackets_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5309, + "[tournament_brackets_order_by!]" + ], + "where": [ + 5298 + ] + } + ], + "tournament_brackets_by_pk": [ + 5287, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "tournament_categories": [ + 5333, + { + "distinct_on": [ + 5351, + "[tournament_categories_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5349, + "[tournament_categories_order_by!]" + ], + "where": [ + 5340 + ] + } + ], + "tournament_categories_aggregate": [ + 5334, + { + "distinct_on": [ + 5351, + "[tournament_categories_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5349, + "[tournament_categories_order_by!]" + ], + "where": [ + 5340 + ] + } + ], + "tournament_categories_by_pk": [ + 5333, + { + "category": [ + 1554, + "e_tournament_categories_enum!" + ], + "tournament_id": [ + 6672, + "uuid!" + ] + } + ], + "tournament_free_agents": [ + 5357, + { + "distinct_on": [ + 5378, + "[tournament_free_agents_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5376, + "[tournament_free_agents_order_by!]" + ], + "where": [ + 5366 + ] + } + ], + "tournament_free_agents_aggregate": [ + 5358, + { + "distinct_on": [ + 5378, + "[tournament_free_agents_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5376, + "[tournament_free_agents_order_by!]" + ], + "where": [ + 5366 + ] + } + ], + "tournament_free_agents_by_pk": [ + 5357, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "tournament_invite_code_uses": [ + 5398, + { + "distinct_on": [ + 5419, + "[tournament_invite_code_uses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5417, + "[tournament_invite_code_uses_order_by!]" + ], + "where": [ + 5407 + ] + } + ], + "tournament_invite_code_uses_aggregate": [ + 5399, + { + "distinct_on": [ + 5419, + "[tournament_invite_code_uses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5417, + "[tournament_invite_code_uses_order_by!]" + ], + "where": [ + 5407 + ] + } + ], + "tournament_invite_code_uses_by_pk": [ + 5398, + { + "invite_code_id": [ + 6672, + "uuid!" + ], + "player_steam_id": [ + 312, + "bigint!" + ] + } + ], + "tournament_invite_codes": [ + 5439, + { + "distinct_on": [ + 5454, + "[tournament_invite_codes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5452, + "[tournament_invite_codes_order_by!]" + ], + "where": [ + 5443 + ] + } + ], + "tournament_invite_codes_aggregate": [ + 5440, + { + "distinct_on": [ + 5454, + "[tournament_invite_codes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5452, + "[tournament_invite_codes_order_by!]" + ], + "where": [ + 5443 + ] + } + ], + "tournament_invite_codes_by_pk": [ + 5439, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "tournament_invites": [ + 5467, + { + "distinct_on": [ + 5481, + "[tournament_invites_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5479, + "[tournament_invites_order_by!]" + ], + "where": [ + 5471 + ] + } + ], + "tournament_invites_aggregate": [ + 5468, + { + "distinct_on": [ + 5481, + "[tournament_invites_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5479, + "[tournament_invites_order_by!]" + ], + "where": [ + 5471 + ] + } + ], + "tournament_invites_by_pk": [ + 5467, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "tournament_leaderboard_entries": [ + 5494, + { + "distinct_on": [ + 5505, + "[tournament_leaderboard_entries_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5504, + "[tournament_leaderboard_entries_order_by!]" + ], + "where": [ + 5498 + ] + } + ], + "tournament_leaderboard_entries_aggregate": [ + 5495, + { + "distinct_on": [ + 5505, + "[tournament_leaderboard_entries_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5504, + "[tournament_leaderboard_entries_order_by!]" + ], + "where": [ + 5498 + ] + } + ], + "tournament_no_shows": [ + 5517, + { + "distinct_on": [ + 5531, + "[tournament_no_shows_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5529, + "[tournament_no_shows_order_by!]" + ], + "where": [ + 5521 + ] + } + ], + "tournament_no_shows_aggregate": [ + 5518, + { + "distinct_on": [ + 5531, + "[tournament_no_shows_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5529, + "[tournament_no_shows_order_by!]" + ], + "where": [ + 5521 + ] + } + ], + "tournament_no_shows_by_pk": [ + 5517, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "tournament_organizer_teams": [ + 5544, + { + "distinct_on": [ + 5562, + "[tournament_organizer_teams_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5560, + "[tournament_organizer_teams_order_by!]" + ], + "where": [ + 5551 + ] + } + ], + "tournament_organizer_teams_aggregate": [ + 5545, + { + "distinct_on": [ + 5562, + "[tournament_organizer_teams_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5560, + "[tournament_organizer_teams_order_by!]" + ], + "where": [ + 5551 + ] + } + ], + "tournament_organizer_teams_by_pk": [ + 5544, + { + "team_id": [ + 6672, + "uuid!" + ], + "tournament_id": [ + 6672, + "uuid!" + ] + } + ], + "tournament_organizers": [ + 5568, + { + "distinct_on": [ + 5589, + "[tournament_organizers_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5587, + "[tournament_organizers_order_by!]" + ], + "where": [ + 5577 + ] + } + ], + "tournament_organizers_aggregate": [ + 5569, + { + "distinct_on": [ + 5589, + "[tournament_organizers_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5587, + "[tournament_organizers_order_by!]" + ], + "where": [ + 5577 + ] + } + ], + "tournament_organizers_by_pk": [ + 5568, + { + "steam_id": [ + 312, + "bigint!" + ], + "tournament_id": [ + 6672, + "uuid!" + ] + } + ], + "tournament_prizes": [ + 5609, + { + "distinct_on": [ + 5630, + "[tournament_prizes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5628, + "[tournament_prizes_order_by!]" + ], + "where": [ + 5618 + ] + } + ], + "tournament_prizes_aggregate": [ + 5610, + { + "distinct_on": [ + 5630, + "[tournament_prizes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5628, + "[tournament_prizes_order_by!]" + ], + "where": [ + 5618 + ] + } + ], + "tournament_prizes_by_pk": [ + 5609, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "tournament_registration_unlocks": [ + 5650, + { + "distinct_on": [ + 5663, + "[tournament_registration_unlocks_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5662, + "[tournament_registration_unlocks_order_by!]" + ], + "where": [ + 5654 + ] + } + ], + "tournament_registration_unlocks_aggregate": [ + 5651, + { + "distinct_on": [ + 5663, + "[tournament_registration_unlocks_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5662, + "[tournament_registration_unlocks_order_by!]" + ], + "where": [ + 5654 + ] + } + ], + "tournament_stage_windows": [ + 5676, + { + "distinct_on": [ + 5697, + "[tournament_stage_windows_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5695, + "[tournament_stage_windows_order_by!]" + ], + "where": [ + 5685 + ] + } + ], + "tournament_stage_windows_aggregate": [ + 5677, + { + "distinct_on": [ + 5697, + "[tournament_stage_windows_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5695, + "[tournament_stage_windows_order_by!]" + ], + "where": [ + 5685 + ] + } + ], + "tournament_stage_windows_by_pk": [ + 5676, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "tournament_stages": [ + 5717, + { + "distinct_on": [ + 5746, + "[tournament_stages_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5743, + "[tournament_stages_order_by!]" + ], + "where": [ + 5729 + ] + } + ], + "tournament_stages_aggregate": [ + 5718, + { + "distinct_on": [ + 5746, + "[tournament_stages_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5743, + "[tournament_stages_order_by!]" + ], + "where": [ + 5729 + ] + } + ], + "tournament_stages_by_pk": [ + 5717, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "tournament_team_invites": [ + 5768, + { + "distinct_on": [ + 5789, + "[tournament_team_invites_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5787, + "[tournament_team_invites_order_by!]" + ], + "where": [ + 5777 + ] + } + ], + "tournament_team_invites_aggregate": [ + 5769, + { + "distinct_on": [ + 5789, + "[tournament_team_invites_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5787, + "[tournament_team_invites_order_by!]" + ], + "where": [ + 5777 + ] + } + ], + "tournament_team_invites_by_pk": [ + 5768, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "tournament_team_roster": [ + 5809, + { + "distinct_on": [ + 5830, + "[tournament_team_roster_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5828, + "[tournament_team_roster_order_by!]" + ], + "where": [ + 5818 + ] + } + ], + "tournament_team_roster_aggregate": [ + 5810, + { + "distinct_on": [ + 5830, + "[tournament_team_roster_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5828, + "[tournament_team_roster_order_by!]" + ], + "where": [ + 5818 + ] + } + ], + "tournament_team_roster_by_pk": [ + 5809, + { + "player_steam_id": [ + 312, + "bigint!" + ], + "tournament_id": [ + 6672, + "uuid!" + ] + } + ], + "tournament_teams": [ + 5850, + { + "distinct_on": [ + 5874, + "[tournament_teams_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5872, + "[tournament_teams_order_by!]" + ], + "where": [ + 5861 + ] + } + ], + "tournament_teams_aggregate": [ + 5851, + { + "distinct_on": [ + 5874, + "[tournament_teams_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5872, + "[tournament_teams_order_by!]" + ], + "where": [ + 5861 + ] + } + ], + "tournament_teams_by_pk": [ + 5850, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "tournaments": [ + 5896, + { + "distinct_on": [ + 5930, + "[tournaments_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5928, + "[tournaments_order_by!]" + ], + "where": [ + 5917 + ] + } + ], + "tournaments_aggregate": [ + 5897, + { + "distinct_on": [ + 5930, + "[tournaments_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5928, + "[tournaments_order_by!]" + ], + "where": [ + 5917 + ] + } + ], + "tournaments_by_pk": [ + 5896, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "utilityLineupMissPattern": [ + 125, + { + "utility_lineup_id": [ + 6672, + "uuid!" + ] + } + ], + "utilityMatchUtilityReport": [ + 150, + { + "match_id": [ + 6672, + "uuid!" + ], + "steam_id": [ + 85 + ] + } + ], + "utilityPracticePlan": [ + 134, + { + "limit": [ + 41 + ], + "map_name": [ + 85, + "String!" + ], + "order": [ + 85 + ], + "side": [ + 85 + ] + } + ], + "utilityPracticeServers": [ + 136 + ], + "utilityPracticeWhereAmI": [ + 138 + ], + "utilitySolverCalibration": [ + 117, + { + "session_id": [ + 6672, + "uuid!" + ] + } + ], + "utilityTeamUtilityReport": [ + 149, + { + "limit": [ + 41 + ], + "map_name": [ + 85 + ], + "team_id": [ + 6672, + "uuid!" + ] + } + ], + "utility_collection_items": [ + 5960, + { + "distinct_on": [ + 5981, + "[utility_collection_items_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5979, + "[utility_collection_items_order_by!]" + ], + "where": [ + 5969 + ] + } + ], + "utility_collection_items_aggregate": [ + 5961, + { + "distinct_on": [ + 5981, + "[utility_collection_items_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5979, + "[utility_collection_items_order_by!]" + ], + "where": [ + 5969 + ] + } + ], + "utility_collection_items_by_pk": [ + 5960, + { + "collection_id": [ + 6672, + "uuid!" + ], + "utility_lineup_id": [ + 6672, + "uuid!" + ] + } + ], + "utility_collections": [ + 6001, + { + "distinct_on": [ + 6016, + "[utility_collections_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6014, + "[utility_collections_order_by!]" + ], + "where": [ + 6005 + ] + } + ], + "utility_collections_aggregate": [ + 6002, + { + "distinct_on": [ + 6016, + "[utility_collections_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6014, + "[utility_collections_order_by!]" + ], + "where": [ + 6005 + ] + } + ], + "utility_collections_by_pk": [ + 6001, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "utility_demo_mines": [ + 6029, + { + "distinct_on": [ + 6043, + "[utility_demo_mines_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6041, + "[utility_demo_mines_order_by!]" + ], + "where": [ + 6033 + ] + } + ], + "utility_demo_mines_aggregate": [ + 6030, + { + "distinct_on": [ + 6043, + "[utility_demo_mines_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6041, + "[utility_demo_mines_order_by!]" + ], + "where": [ + 6033 + ] + } + ], + "utility_demo_mines_by_pk": [ + 6029, + { + "match_map_demo_id": [ + 6672, + "uuid!" + ] + } + ], + "utility_demo_throws": [ + 6056, + { + "distinct_on": [ + 6070, + "[utility_demo_throws_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6068, + "[utility_demo_throws_order_by!]" + ], + "where": [ + 6060 + ] + } + ], + "utility_demo_throws_aggregate": [ + 6057, + { + "distinct_on": [ + 6070, + "[utility_demo_throws_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6068, + "[utility_demo_throws_order_by!]" + ], + "where": [ + 6060 + ] + } + ], + "utility_demo_throws_by_pk": [ + 6056, + { + "grenade_id": [ + 41, + "Int!" + ], + "match_map_demo_id": [ + 6672, + "uuid!" + ] + } + ], + "utility_drift_results": [ + 6083, + { + "distinct_on": [ + 6114, + "[utility_drift_results_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6112, + "[utility_drift_results_order_by!]" + ], + "where": [ + 6102 + ] + } + ], + "utility_drift_results_aggregate": [ + 6084, + { + "distinct_on": [ + 6114, + "[utility_drift_results_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6112, + "[utility_drift_results_order_by!]" + ], + "where": [ + 6102 + ] + } + ], + "utility_drift_results_by_pk": [ + 6083, + { + "utility_drift_scan_id": [ + 6672, + "uuid!" + ], + "utility_lineup_id": [ + 6672, + "uuid!" + ] + } + ], + "utility_drift_scans": [ + 6142, + { + "distinct_on": [ + 6157, + "[utility_drift_scans_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6155, + "[utility_drift_scans_order_by!]" + ], + "where": [ + 6146 + ] + } + ], + "utility_drift_scans_aggregate": [ + 6143, + { + "distinct_on": [ + 6157, + "[utility_drift_scans_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6155, + "[utility_drift_scans_order_by!]" + ], + "where": [ + 6146 + ] + } + ], + "utility_drift_scans_by_pk": [ + 6142, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "utility_lineup_favorites": [ + 6170, + { + "distinct_on": [ + 6191, + "[utility_lineup_favorites_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6189, + "[utility_lineup_favorites_order_by!]" + ], + "where": [ + 6179 + ] + } + ], + "utility_lineup_favorites_aggregate": [ + 6171, + { + "distinct_on": [ + 6191, + "[utility_lineup_favorites_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6189, + "[utility_lineup_favorites_order_by!]" + ], + "where": [ + 6179 + ] + } + ], + "utility_lineup_favorites_by_pk": [ + 6170, + { + "steam_id": [ + 312, + "bigint!" + ], + "utility_lineup_id": [ + 6672, + "uuid!" + ] + } + ], + "utility_lineup_progress": [ + 6211, + { + "distinct_on": [ + 6242, + "[utility_lineup_progress_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6240, + "[utility_lineup_progress_order_by!]" + ], + "where": [ + 6230 + ] + } + ], + "utility_lineup_progress_aggregate": [ + 6212, + { + "distinct_on": [ + 6242, + "[utility_lineup_progress_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6240, + "[utility_lineup_progress_order_by!]" + ], + "where": [ + 6230 + ] + } + ], + "utility_lineup_progress_by_pk": [ + 6211, + { + "steam_id": [ + 312, + "bigint!" + ], + "utility_lineup_id": [ + 6672, + "uuid!" + ] + } + ], + "utility_lineup_renders": [ + 6270, + { + "distinct_on": [ + 6298, + "[utility_lineup_renders_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6295, + "[utility_lineup_renders_order_by!]" + ], + "where": [ + 6282 + ] + } + ], + "utility_lineup_renders_aggregate": [ + 6271, + { + "distinct_on": [ + 6298, + "[utility_lineup_renders_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6295, + "[utility_lineup_renders_order_by!]" + ], + "where": [ + 6282 + ] + } + ], + "utility_lineup_renders_by_pk": [ + 6270, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "utility_lineup_repairs": [ + 6320, + { + "distinct_on": [ + 6351, + "[utility_lineup_repairs_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6349, + "[utility_lineup_repairs_order_by!]" + ], + "where": [ + 6339 + ] + } + ], + "utility_lineup_repairs_aggregate": [ + 6321, + { + "distinct_on": [ + 6351, + "[utility_lineup_repairs_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6349, + "[utility_lineup_repairs_order_by!]" + ], + "where": [ + 6339 + ] + } + ], + "utility_lineup_repairs_by_pk": [ + 6320, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "utility_lineup_votes": [ + 6379, + { + "distinct_on": [ + 6400, + "[utility_lineup_votes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6398, + "[utility_lineup_votes_order_by!]" + ], + "where": [ + 6388 + ] + } + ], + "utility_lineup_votes_aggregate": [ + 6380, + { + "distinct_on": [ + 6400, + "[utility_lineup_votes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6398, + "[utility_lineup_votes_order_by!]" + ], + "where": [ + 6388 + ] + } + ], + "utility_lineup_votes_by_pk": [ + 6379, + { + "steam_id": [ + 312, + "bigint!" + ], + "utility_lineup_id": [ + 6672, + "uuid!" + ] + } + ], + "utility_lineups": [ + 6420, + { + "distinct_on": [ + 6459, + "[utility_lineups_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6456, + "[utility_lineups_order_by!]" + ], + "where": [ + 6442 + ] + } + ], + "utility_lineups_aggregate": [ + 6421, + { + "distinct_on": [ + 6459, + "[utility_lineups_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6456, + "[utility_lineups_order_by!]" + ], + "where": [ + 6442 + ] + } + ], + "utility_lineups_by_pk": [ + 6420, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "utility_meta_lineups": [ + 6489, + { + "distinct_on": [ + 6503, + "[utility_meta_lineups_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6501, + "[utility_meta_lineups_order_by!]" + ], + "where": [ + 6493 + ] + } + ], + "utility_meta_lineups_aggregate": [ + 6490, + { + "distinct_on": [ + 6503, + "[utility_meta_lineups_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6501, + "[utility_meta_lineups_order_by!]" + ], + "where": [ + 6493 + ] + } + ], + "utility_meta_lineups_by_pk": [ + 6489, + { + "lineup_bucket": [ + 85, + "String!" + ] + } + ], + "utility_playbook_steps": [ + 6516, + { + "distinct_on": [ + 6537, + "[utility_playbook_steps_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6535, + "[utility_playbook_steps_order_by!]" + ], + "where": [ + 6525 + ] + } + ], + "utility_playbook_steps_aggregate": [ + 6517, + { + "distinct_on": [ + 6537, + "[utility_playbook_steps_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6535, + "[utility_playbook_steps_order_by!]" + ], + "where": [ + 6525 + ] + } + ], + "utility_playbook_steps_by_pk": [ + 6516, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "utility_playbooks": [ + 6557, + { + "distinct_on": [ + 6572, + "[utility_playbooks_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6570, + "[utility_playbooks_order_by!]" + ], + "where": [ + 6561 + ] + } + ], + "utility_playbooks_aggregate": [ + 6558, + { + "distinct_on": [ + 6572, + "[utility_playbooks_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6570, + "[utility_playbooks_order_by!]" + ], + "where": [ + 6561 + ] + } + ], + "utility_playbooks_by_pk": [ + 6557, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "utility_practice_invites": [ + 6585, + { + "distinct_on": [ + 6606, + "[utility_practice_invites_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6604, + "[utility_practice_invites_order_by!]" + ], + "where": [ + 6594 + ] + } + ], + "utility_practice_invites_aggregate": [ + 6586, + { + "distinct_on": [ + 6606, + "[utility_practice_invites_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6604, + "[utility_practice_invites_order_by!]" + ], + "where": [ + 6594 + ] + } + ], + "utility_practice_invites_by_pk": [ + 6585, + { + "steam_id": [ + 312, + "bigint!" + ], + "utility_practice_session_id": [ + 6672, + "uuid!" + ] + } + ], + "utility_practice_sessions": [ + 6626, + { + "distinct_on": [ + 6650, + "[utility_practice_sessions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6648, + "[utility_practice_sessions_order_by!]" + ], + "where": [ + 6637 + ] + } + ], + "utility_practice_sessions_aggregate": [ + 6627, + { + "distinct_on": [ + 6650, + "[utility_practice_sessions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6648, + "[utility_practice_sessions_order_by!]" + ], + "where": [ + 6637 + ] + } + ], + "utility_practice_sessions_by_pk": [ + 6626, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "v_event_player_stats": [ + 6675, + { + "distinct_on": [ + 6701, + "[v_event_player_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6700, + "[v_event_player_stats_order_by!]" + ], + "where": [ + 6694 + ] + } + ], + "v_event_player_stats_aggregate": [ + 6676, + { + "distinct_on": [ + 6701, + "[v_event_player_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6700, + "[v_event_player_stats_order_by!]" + ], + "where": [ + 6694 + ] + } + ], + "v_gpu_pool_status": [ + 6726, + { + "distinct_on": [ + 6734, + "[v_gpu_pool_status_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6733, + "[v_gpu_pool_status_order_by!]" + ], + "where": [ + 6730 + ] + } + ], + "v_gpu_pool_status_aggregate": [ + 6727, + { + "distinct_on": [ + 6734, + "[v_gpu_pool_status_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6733, + "[v_gpu_pool_status_order_by!]" + ], + "where": [ + 6730 + ] + } + ], + "v_league_division_standings": [ + 6744, + { + "distinct_on": [ + 6760, + "[v_league_division_standings_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6759, + "[v_league_division_standings_order_by!]" + ], + "where": [ + 6753 + ] + } + ], + "v_league_division_standings_aggregate": [ + 6745, + { + "distinct_on": [ + 6760, + "[v_league_division_standings_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6759, + "[v_league_division_standings_order_by!]" + ], + "where": [ + 6753 + ] + } + ], + "v_league_season_player_stats": [ + 6777, + { + "distinct_on": [ + 6803, + "[v_league_season_player_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6802, + "[v_league_season_player_stats_order_by!]" + ], + "where": [ + 6796 + ] + } + ], + "v_league_season_player_stats_aggregate": [ + 6778, + { + "distinct_on": [ + 6803, + "[v_league_season_player_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6802, + "[v_league_season_player_stats_order_by!]" + ], + "where": [ + 6796 + ] + } + ], + "v_match_captains": [ + 6828, + { + "distinct_on": [ + 6840, + "[v_match_captains_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6839, + "[v_match_captains_order_by!]" + ], + "where": [ + 6832 + ] + } + ], + "v_match_captains_aggregate": [ + 6829, + { + "distinct_on": [ + 6840, + "[v_match_captains_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6839, + "[v_match_captains_order_by!]" + ], + "where": [ + 6832 + ] + } + ], + "v_match_clutches": [ + 6852, + { + "distinct_on": [ + 6868, + "[v_match_clutches_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6867, + "[v_match_clutches_order_by!]" + ], + "where": [ + 6861 + ] + } + ], + "v_match_clutches_aggregate": [ + 6853, + { + "distinct_on": [ + 6868, + "[v_match_clutches_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6867, + "[v_match_clutches_order_by!]" + ], + "where": [ + 6861 + ] + } + ], + "v_match_kill_pairs": [ + 6885, + { + "distinct_on": [ + 6893, + "[v_match_kill_pairs_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6892, + "[v_match_kill_pairs_order_by!]" + ], + "where": [ + 6889 + ] + } + ], + "v_match_kill_pairs_aggregate": [ + 6886, + { + "distinct_on": [ + 6893, + "[v_match_kill_pairs_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6892, + "[v_match_kill_pairs_order_by!]" + ], + "where": [ + 6889 + ] + } + ], + "v_match_lineup_buy_types": [ + 6903, + { + "distinct_on": [ + 6911, + "[v_match_lineup_buy_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6910, + "[v_match_lineup_buy_types_order_by!]" + ], + "where": [ + 6907 + ] + } + ], + "v_match_lineup_buy_types_aggregate": [ + 6904, + { + "distinct_on": [ + 6911, + "[v_match_lineup_buy_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6910, + "[v_match_lineup_buy_types_order_by!]" + ], + "where": [ + 6907 + ] + } + ], + "v_match_lineup_map_stats": [ + 6921, + { + "distinct_on": [ + 6929, + "[v_match_lineup_map_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6928, + "[v_match_lineup_map_stats_order_by!]" + ], + "where": [ + 6925 + ] + } + ], + "v_match_lineup_map_stats_aggregate": [ + 6922, + { + "distinct_on": [ + 6929, + "[v_match_lineup_map_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6928, + "[v_match_lineup_map_stats_order_by!]" + ], + "where": [ + 6925 + ] + } + ], + "v_match_map_backup_rounds": [ + 6939, + { + "distinct_on": [ + 6950, + "[v_match_map_backup_rounds_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6949, + "[v_match_map_backup_rounds_order_by!]" + ], + "where": [ + 6943 + ] + } + ], + "v_match_map_backup_rounds_aggregate": [ + 6940, + { + "distinct_on": [ + 6950, + "[v_match_map_backup_rounds_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6949, + "[v_match_map_backup_rounds_order_by!]" + ], + "where": [ + 6943 + ] + } + ], + "v_match_player_buy_types": [ + 6962, + { + "distinct_on": [ + 6970, + "[v_match_player_buy_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6969, + "[v_match_player_buy_types_order_by!]" + ], + "where": [ + 6966 + ] + } + ], + "v_match_player_buy_types_aggregate": [ + 6963, + { + "distinct_on": [ + 6970, + "[v_match_player_buy_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6969, + "[v_match_player_buy_types_order_by!]" + ], + "where": [ + 6966 + ] + } + ], + "v_match_player_opening_duels": [ + 6980, + { + "distinct_on": [ + 6996, + "[v_match_player_opening_duels_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6995, + "[v_match_player_opening_duels_order_by!]" + ], + "where": [ + 6989 + ] + } + ], + "v_match_player_opening_duels_aggregate": [ + 6981, + { + "distinct_on": [ + 6996, + "[v_match_player_opening_duels_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6995, + "[v_match_player_opening_duels_order_by!]" + ], + "where": [ + 6989 + ] + } + ], + "v_player_arch_nemesis": [ + 7013, + { + "distinct_on": [ + 7021, + "[v_player_arch_nemesis_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7020, + "[v_player_arch_nemesis_order_by!]" + ], + "where": [ + 7017 + ] + } + ], + "v_player_arch_nemesis_aggregate": [ + 7014, + { + "distinct_on": [ + 7021, + "[v_player_arch_nemesis_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7020, + "[v_player_arch_nemesis_order_by!]" + ], + "where": [ + 7017 + ] + } + ], + "v_player_damage": [ + 7031, + { + "distinct_on": [ + 7039, + "[v_player_damage_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7038, + "[v_player_damage_order_by!]" + ], + "where": [ + 7035 + ] + } + ], + "v_player_damage_aggregate": [ + 7032, + { + "distinct_on": [ + 7039, + "[v_player_damage_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7038, + "[v_player_damage_order_by!]" + ], + "where": [ + 7035 + ] + } + ], + "v_player_elo": [ + 7049, + { + "distinct_on": [ + 7075, + "[v_player_elo_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7074, + "[v_player_elo_order_by!]" + ], + "where": [ + 7068 + ] + } + ], + "v_player_elo_aggregate": [ + 7050, + { + "distinct_on": [ + 7075, + "[v_player_elo_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7074, + "[v_player_elo_order_by!]" + ], + "where": [ + 7068 + ] + } + ], + "v_player_map_losses": [ + 7100, + { + "distinct_on": [ + 7108, + "[v_player_map_losses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7107, + "[v_player_map_losses_order_by!]" + ], + "where": [ + 7104 + ] + } + ], + "v_player_map_losses_aggregate": [ + 7101, + { + "distinct_on": [ + 7108, + "[v_player_map_losses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7107, + "[v_player_map_losses_order_by!]" + ], + "where": [ + 7104 + ] + } + ], + "v_player_map_wins": [ + 7118, + { + "distinct_on": [ + 7126, + "[v_player_map_wins_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7125, + "[v_player_map_wins_order_by!]" + ], + "where": [ + 7122 + ] + } + ], + "v_player_map_wins_aggregate": [ + 7119, + { + "distinct_on": [ + 7126, + "[v_player_map_wins_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7125, + "[v_player_map_wins_order_by!]" + ], + "where": [ + 7122 + ] + } + ], + "v_player_match_head_to_head": [ + 7136, + { + "distinct_on": [ + 7144, + "[v_player_match_head_to_head_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7143, + "[v_player_match_head_to_head_order_by!]" + ], + "where": [ + 7140 + ] + } + ], + "v_player_match_head_to_head_aggregate": [ + 7137, + { + "distinct_on": [ + 7144, + "[v_player_match_head_to_head_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7143, + "[v_player_match_head_to_head_order_by!]" + ], + "where": [ + 7140 + ] + } + ], + "v_player_match_map_hltv": [ + 7154, + { + "distinct_on": [ + 7172, + "[v_player_match_map_hltv_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7171, + "[v_player_match_map_hltv_order_by!]" + ], + "where": [ + 7163 + ] + } + ], + "v_player_match_map_hltv_aggregate": [ + 7155, + { + "distinct_on": [ + 7172, + "[v_player_match_map_hltv_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7171, + "[v_player_match_map_hltv_order_by!]" + ], + "where": [ + 7163 + ] + } + ], + "v_player_match_map_roles": [ + 7191, + { + "distinct_on": [ + 7199, + "[v_player_match_map_roles_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7198, + "[v_player_match_map_roles_order_by!]" + ], + "where": [ + 7195 + ] + } + ], + "v_player_match_map_roles_aggregate": [ + 7192, + { + "distinct_on": [ + 7199, + "[v_player_match_map_roles_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7198, + "[v_player_match_map_roles_order_by!]" + ], + "where": [ + 7195 + ] + } + ], + "v_player_match_performance": [ + 7209, + { + "distinct_on": [ + 7217, + "[v_player_match_performance_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7216, + "[v_player_match_performance_order_by!]" + ], + "where": [ + 7213 + ] + } + ], + "v_player_match_performance_aggregate": [ + 7210, + { + "distinct_on": [ + 7217, + "[v_player_match_performance_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7216, + "[v_player_match_performance_order_by!]" + ], + "where": [ + 7213 + ] + } + ], + "v_player_match_rating": [ + 7227, + { + "distinct_on": [ + 7235, + "[v_player_match_rating_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7234, + "[v_player_match_rating_order_by!]" + ], + "where": [ + 7231 + ] + } + ], + "v_player_match_rating_aggregate": [ + 7228, + { + "distinct_on": [ + 7235, + "[v_player_match_rating_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7234, + "[v_player_match_rating_order_by!]" + ], + "where": [ + 7231 + ] + } + ], + "v_player_multi_kills": [ + 7245, + { + "distinct_on": [ + 7261, + "[v_player_multi_kills_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7260, + "[v_player_multi_kills_order_by!]" + ], + "where": [ + 7254 + ] + } + ], + "v_player_multi_kills_aggregate": [ + 7246, + { + "distinct_on": [ + 7261, + "[v_player_multi_kills_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7260, + "[v_player_multi_kills_order_by!]" + ], + "where": [ + 7254 + ] + } + ], + "v_player_queue_partners": [ + 7278, + { + "distinct_on": [ + 7286, + "[v_player_queue_partners_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7285, + "[v_player_queue_partners_order_by!]" + ], + "where": [ + 7282 + ] + } + ], + "v_player_queue_partners_aggregate": [ + 7279, + { + "distinct_on": [ + 7286, + "[v_player_queue_partners_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7285, + "[v_player_queue_partners_order_by!]" + ], + "where": [ + 7282 + ] + } + ], + "v_player_weapon_damage": [ + 7296, + { + "distinct_on": [ + 7304, + "[v_player_weapon_damage_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7303, + "[v_player_weapon_damage_order_by!]" + ], + "where": [ + 7300 + ] + } + ], + "v_player_weapon_damage_aggregate": [ + 7297, + { + "distinct_on": [ + 7304, + "[v_player_weapon_damage_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7303, + "[v_player_weapon_damage_order_by!]" + ], + "where": [ + 7300 + ] + } + ], + "v_player_weapon_kills": [ + 7314, + { + "distinct_on": [ + 7322, + "[v_player_weapon_kills_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7321, + "[v_player_weapon_kills_order_by!]" + ], + "where": [ + 7318 + ] + } + ], + "v_player_weapon_kills_aggregate": [ + 7315, + { + "distinct_on": [ + 7322, + "[v_player_weapon_kills_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7321, + "[v_player_weapon_kills_order_by!]" + ], + "where": [ + 7318 + ] + } + ], + "v_pool_maps": [ + 7332, + { + "distinct_on": [ + 7349, + "[v_pool_maps_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7348, + "[v_pool_maps_order_by!]" + ], + "where": [ + 7341 + ] + } + ], + "v_pool_maps_aggregate": [ + 7333, + { + "distinct_on": [ + 7349, + "[v_pool_maps_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7348, + "[v_pool_maps_order_by!]" + ], + "where": [ + 7341 + ] + } + ], + "v_steam_account_pool_status": [ + 7356, + { + "distinct_on": [ + 7364, + "[v_steam_account_pool_status_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7363, + "[v_steam_account_pool_status_order_by!]" + ], + "where": [ + 7360 + ] + } + ], + "v_steam_account_pool_status_aggregate": [ + 7357, + { + "distinct_on": [ + 7364, + "[v_steam_account_pool_status_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7363, + "[v_steam_account_pool_status_order_by!]" + ], + "where": [ + 7360 + ] + } + ], + "v_team_ranks": [ + 7374, + { + "distinct_on": [ + 7384, + "[v_team_ranks_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7383, + "[v_team_ranks_order_by!]" + ], + "where": [ + 7378 + ] + } + ], + "v_team_ranks_aggregate": [ + 7375, + { + "distinct_on": [ + 7384, + "[v_team_ranks_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7383, + "[v_team_ranks_order_by!]" + ], + "where": [ + 7378 + ] + } + ], + "v_team_reputation": [ + 7394, + { + "distinct_on": [ + 7404, + "[v_team_reputation_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7403, + "[v_team_reputation_order_by!]" + ], + "where": [ + 7398 + ] + } + ], + "v_team_reputation_aggregate": [ + 7395, + { + "distinct_on": [ + 7404, + "[v_team_reputation_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7403, + "[v_team_reputation_order_by!]" + ], + "where": [ + 7398 + ] + } + ], + "v_team_stage_results": [ + 7414, + { + "distinct_on": [ + 7446, + "[v_team_stage_results_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7444, + "[v_team_stage_results_order_by!]" + ], + "where": [ + 7433 + ] + } + ], + "v_team_stage_results_aggregate": [ + 7415, + { + "distinct_on": [ + 7446, + "[v_team_stage_results_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7444, + "[v_team_stage_results_order_by!]" + ], + "where": [ + 7433 + ] + } + ], + "v_team_stage_results_by_pk": [ + 7414, + { + "tournament_stage_id": [ + 6672, + "uuid!" + ], + "tournament_team_id": [ + 6672, + "uuid!" + ] + } + ], + "v_team_tournament_results": [ + 7474, + { + "distinct_on": [ + 7500, + "[v_team_tournament_results_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7499, + "[v_team_tournament_results_order_by!]" + ], + "where": [ + 7493 + ] + } + ], + "v_team_tournament_results_aggregate": [ + 7475, + { + "distinct_on": [ + 7500, + "[v_team_tournament_results_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7499, + "[v_team_tournament_results_order_by!]" + ], + "where": [ + 7493 + ] + } + ], + "v_tournament_player_stats": [ + 7525, + { + "distinct_on": [ + 7551, + "[v_tournament_player_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7550, + "[v_tournament_player_stats_order_by!]" + ], + "where": [ + 7544 + ] + } + ], + "v_tournament_player_stats_aggregate": [ + 7526, + { + "distinct_on": [ + 7551, + "[v_tournament_player_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7550, + "[v_tournament_player_stats_order_by!]" + ], + "where": [ + 7544 + ] + } + ], + "webPushStatus": [ + 154 + ], + "__typename": [ + 85 + ] + }, + "Mutation": { + "PreviewTournamentMatchReset": [ + 61, + { + "match_id": [ + 6672, + "uuid!" + ] + } + ], + "ResetTournamentMatch": [ + 88, + { + "match_id": [ + 6672, + "uuid!" + ], + "reset_status": [ + 85 + ], + "scheduled_at": [ + 5243 + ], + "winning_lineup_id": [ + 6672 + ] + } + ], + "acceptInvite": [ + 88, + { + "invite_id": [ + 6672, + "uuid!" + ], + "type": [ + 85, + "String!" + ] + } + ], + "addCustomGamePlugin": [ + 2, + { + "description": [ + 85 + ], + "installPath": [ + 85 + ], + "layout": [ + 85 + ], + "name": [ + 85 + ], + "runtime": [ + 85, + "String!" + ], + "slug": [ + 85 + ], + "url": [ + 85, + "String!" + ], + "version": [ + 85 + ] + } + ], + "addDraftPlayer": [ + 88, + { + "draftGameId": [ + 6672, + "uuid!" + ], + "lineup": [ + 41 + ], + "steamId": [ + 85, + "String!" + ] + } + ], + "addSteamPresenceBotAccount": [ + 88, + { + "bot_secret": [ + 85, + "String!" + ], + "friend_capacity": [ + 41 + ], + "username": [ + 85, + "String!" + ] + } + ], + "approveNameChange": [ + 88, + { + "name": [ + 85, + "String!" + ], + "steam_id": [ + 312, + "bigint!" + ] + } + ], + "approve_league_season_movements": [ + 2675, + { + "args": [ + 242, + "approve_league_season_movements_args!" + ], + "distinct_on": [ + 2696, + "[league_team_movements_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2694, + "[league_team_movements_order_by!]" + ], + "where": [ + 2684 + ] + } + ], + "assignSteamPresenceBot": [ + 81 + ], + "attachDemo": [ + 152 + ], + "backfillSeasonElo": [ + 64, + { + "season_id": [ + 85, + "String!" + ] + } + ], + "backfillSeasonEloStatus": [ + 74 + ], + "backfillUtilityLaunchSeeds": [ + 122, + { + "limit": [ + 41 + ] + } + ], + "bakeShaders": [ + 88, + { + "game_server_node_id": [ + 6672, + "uuid!" + ] + } + ], + "callForOrganizer": [ + 88, + { + "match_id": [ + 85, + "String!" + ] + } + ], + "cancelBackfillSeasonElo": [ + 88 + ], + "cancelBakeShaders": [ + 88, + { + "game_server_node_id": [ + 6672, + "uuid!" + ] + } + ], + "cancelClipRender": [ + 88, + { + "job_id": [ + 6672, + "uuid!" + ] + } + ], + "cancelClipRenderBatch": [ + 88, + { + "match_map_id": [ + 6672, + "uuid!" + ] + } + ], + "cancelMatch": [ + 88, + { + "match_id": [ + 6672, + "uuid!" + ] + } + ], + "cancelRecomputePlayerElo": [ + 88 + ], + "cancelRefreshAllPlayers": [ + 88 + ], + "cancelReparseAllDemos": [ + 88 + ], + "cancelScrimRequest": [ + 88, + { + "request_id": [ + 6672, + "uuid!" + ] + } + ], + "cancelUtilityLineupRender": [ + 88, + { + "render_id": [ + 6672, + "uuid!" + ] + } + ], + "changeUtilityPracticeMap": [ + 132, + { + "lineup_id": [ + 6672 + ], + "lineup_ids": [ + 6672, + "[uuid!]" + ], + "map_name": [ + 85, + "String!" + ], + "scratch": [ + 143 + ], + "session_id": [ + 6672, + "uuid!" + ] + } + ], + "checkIntoMatch": [ + 88, + { + "match_id": [ + 6672, + "uuid!" + ] + } + ], + "checkIntoTournament": [ + 88, + { + "tournament_id": [ + 6672, + "uuid!" + ], + "tournament_team_id": [ + 6672 + ] + } + ], + "clearClipRenderBatch": [ + 88, + { + "match_map_id": [ + 6672, + "uuid!" + ] + } + ], + "clearFinishedClipRenders": [ + 88 + ], + "clearFinishedUtilityLineupRenders": [ + 141 + ], + "clearPendingMatchImport": [ + 57, + { + "valve_match_id": [ + 85, + "String!" + ] + } + ], + "clone_league_season": [ + 2642, + { + "args": [ + 394, + "clone_league_season_args!" + ], + "distinct_on": [ + 2662, + "[league_seasons_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2659, + "[league_seasons_order_by!]" + ], + "where": [ + 2647 + ] + } + ], + "continueTournamentCheckIn": [ + 88, + { + "tournament_id": [ + 6672, + "uuid!" + ] + } + ], + "counterScrimRequest": [ + 88, + { + "proposed_scheduled_at": [ + 5243, + "timestamptz!" + ], + "request_id": [ + 6672, + "uuid!" + ] + } + ], + "createApiKey": [ + 3, + { + "label": [ + 85, + "String!" + ] + } + ], + "createClipFromPreset": [ + 16, + { + "fps": [ + 41 + ], + "match_map_id": [ + 6672, + "uuid!" + ], + "preset": [ + 85, + "String!" + ], + "resolution": [ + 85 + ], + "target_name": [ + 85 + ], + "target_steam_id": [ + 85, + "String!" + ], + "title": [ + 85 + ] + } + ], + "createClipRender": [ + 16, + { + "spec": [ + 12, + "ClipSpecInput!" + ] + } + ], + "createClips": [ + 88, + { + "match_id": [ + 6672, + "uuid!" + ] + } + ], + "createDraftGame": [ + 17, + { + "settings": [ + 2439, + "jsonb!" + ] + } + ], + "createScheduledMatch": [ + 18, + { + "lineup_1": [ + 73, + "ScheduledLineupInput!" + ], + "lineup_2": [ + 73, + "ScheduledLineupInput!" + ], + "options": [ + 2439, + "jsonb!" + ], + "scheduled_at": [ + 85, + "String!" + ] + } + ], + "createServerDirectory": [ + 88, + { + "dir_path": [ + 85, + "String!" + ], + "node_id": [ + 85, + "String!" + ], + "server_id": [ + 85 + ] + } + ], + "createTournamentInviteCode": [ + 113, + { + "expires_in_minutes": [ + 41 + ], + "max_uses": [ + 41 + ], + "tournament_id": [ + 6672, + "uuid!" + ] + } + ], + "deleteAward": [ + 88, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "deleteClip": [ + 88, + { + "clip_id": [ + 6672, + "uuid!" + ] + } + ], + "deleteMatch": [ + 88, + { + "match_id": [ + 85, + "String!" + ] + } + ], + "deleteNewsPost": [ + 88, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "deleteOrphanedDemos": [ + 22, + { + "keys": [ + 85, + "[String!]" + ] + } + ], + "deleteServerItem": [ + 88, + { + "node_id": [ + 85, + "String!" + ], + "path": [ + 85, + "String!" + ], + "server_id": [ + 85 + ] + } + ], + "deleteTournament": [ + 88, + { + "tournament_id": [ + 6672, + "uuid!" + ] + } + ], + "deleteUtilityLineupRender": [ + 88, + { + "render_id": [ + 6672, + "uuid!" + ] + } + ], + "deleteUtilityPlaybook": [ + 88, + { + "playbook_id": [ + 6672, + "uuid!" + ] + } + ], + "delete__map_pool": [ + 163, + { + "where": [ + 158, + "_map_pool_bool_exp!" + ] + } + ], + "delete__map_pool_by_pk": [ + 155, + { + "map_id": [ + 6672, + "uuid!" + ], + "map_pool_id": [ + 6672, + "uuid!" + ] + } + ], + "delete_abandoned_matches": [ + 191, + { + "where": [ + 183, + "abandoned_matches_bool_exp!" + ] + } + ], + "delete_abandoned_matches_by_pk": [ + 174, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_api_keys": [ + 225, + { + "where": [ + 219, + "api_keys_bool_exp!" + ] + } + ], + "delete_api_keys_by_pk": [ + 215, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_award_recipients": [ + 260, + { + "where": [ + 252, + "award_recipients_bool_exp!" + ] + } + ], + "delete_award_recipients_by_pk": [ + 243, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_awards": [ + 294, + { + "where": [ + 288, + "awards_bool_exp!" + ] + } + ], + "delete_awards_by_pk": [ + 284, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_chat_read_state": [ + 327, + { + "where": [ + 321, + "chat_read_state_bool_exp!" + ] + } + ], + "delete_chat_read_state_by_pk": [ + 317, + { + "steam_id": [ + 312, + "bigint!" + ], + "thread": [ + 85, + "String!" + ] + } + ], + "delete_clip_render_jobs": [ + 367, + { + "where": [ + 356, + "clip_render_jobs_bool_exp!" + ] + } + ], + "delete_clip_render_jobs_by_pk": [ + 344, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_custom_pages": [ + 410, + { + "where": [ + 401, + "custom_pages_bool_exp!" + ] + } + ], + "delete_custom_pages_by_pk": [ + 396, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_db_backups": [ + 438, + { + "where": [ + 432, + "db_backups_bool_exp!" + ] + } + ], + "delete_db_backups_by_pk": [ + 428, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_direct_conversations": [ + 465, + { + "where": [ + 459, + "direct_conversations_bool_exp!" + ] + } + ], + "delete_direct_conversations_by_pk": [ + 455, + { + "room_id": [ + 85, + "String!" + ], + "steam_id": [ + 312, + "bigint!" + ] + } + ], + "delete_direct_messages": [ + 492, + { + "where": [ + 486, + "direct_messages_bool_exp!" + ] + } + ], + "delete_direct_messages_by_pk": [ + 482, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_draft_game_picks": [ + 528, + { + "where": [ + 520, + "draft_game_picks_bool_exp!" + ] + } + ], + "delete_draft_game_picks_by_pk": [ + 509, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_draft_game_players": [ + 573, + { + "where": [ + 565, + "draft_game_players_bool_exp!" + ] + } + ], + "delete_draft_game_players_by_pk": [ + 554, + { + "draft_game_id": [ + 6672, + "uuid!" + ], + "steam_id": [ + 312, + "bigint!" + ] + } + ], + "delete_draft_games": [ + 618, + { + "where": [ + 610, + "draft_games_bool_exp!" + ] + } + ], + "delete_draft_games_by_pk": [ + 599, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_e_award_sources": [ + 655, + { + "where": [ + 648, + "e_award_sources_bool_exp!" + ] + } + ], + "delete_e_award_sources_by_pk": [ + 645, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_award_tiers": [ + 675, + { + "where": [ + 668, + "e_award_tiers_bool_exp!" + ] + } + ], + "delete_e_award_tiers_by_pk": [ + 665, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_check_in_settings": [ + 695, + { + "where": [ + 688, + "e_check_in_settings_bool_exp!" + ] + } + ], + "delete_e_check_in_settings_by_pk": [ + 685, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_draft_game_captain_selection": [ + 715, + { + "where": [ + 708, + "e_draft_game_captain_selection_bool_exp!" + ] + } + ], + "delete_e_draft_game_captain_selection_by_pk": [ + 705, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_draft_game_draft_order": [ + 736, + { + "where": [ + 729, + "e_draft_game_draft_order_bool_exp!" + ] + } + ], + "delete_e_draft_game_draft_order_by_pk": [ + 726, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_draft_game_mode": [ + 757, + { + "where": [ + 750, + "e_draft_game_mode_bool_exp!" + ] + } + ], + "delete_e_draft_game_mode_by_pk": [ + 747, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_draft_game_player_status": [ + 778, + { + "where": [ + 771, + "e_draft_game_player_status_bool_exp!" + ] + } + ], + "delete_e_draft_game_player_status_by_pk": [ + 768, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_draft_game_status": [ + 799, + { + "where": [ + 792, + "e_draft_game_status_bool_exp!" + ] + } + ], + "delete_e_draft_game_status_by_pk": [ + 789, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_event_media_access": [ + 820, + { + "where": [ + 813, + "e_event_media_access_bool_exp!" + ] + } + ], + "delete_e_event_media_access_by_pk": [ + 810, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_event_visibility": [ + 840, + { + "where": [ + 833, + "e_event_visibility_bool_exp!" + ] + } + ], + "delete_e_event_visibility_by_pk": [ + 830, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_friend_status": [ + 860, + { + "where": [ + 853, + "e_friend_status_bool_exp!" + ] + } + ], + "delete_e_friend_status_by_pk": [ + 850, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_game_cfg_types": [ + 881, + { + "where": [ + 874, + "e_game_cfg_types_bool_exp!" + ] + } + ], + "delete_e_game_cfg_types_by_pk": [ + 871, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_game_plugin_channels": [ + 901, + { + "where": [ + 894, + "e_game_plugin_channels_bool_exp!" + ] + } + ], + "delete_e_game_plugin_channels_by_pk": [ + 891, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_game_plugin_install_statuses": [ + 921, + { + "where": [ + 914, + "e_game_plugin_install_statuses_bool_exp!" + ] + } + ], + "delete_e_game_plugin_install_statuses_by_pk": [ + 911, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_game_plugin_kinds": [ + 941, + { + "where": [ + 934, + "e_game_plugin_kinds_bool_exp!" + ] + } + ], + "delete_e_game_plugin_kinds_by_pk": [ + 931, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_game_server_node_statuses": [ + 961, + { + "where": [ + 954, + "e_game_server_node_statuses_bool_exp!" + ] + } + ], + "delete_e_game_server_node_statuses_by_pk": [ + 951, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_league_movement_types": [ + 982, + { + "where": [ + 975, + "e_league_movement_types_bool_exp!" + ] + } + ], + "delete_e_league_movement_types_by_pk": [ + 972, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_league_proposal_statuses": [ + 1003, + { + "where": [ + 996, + "e_league_proposal_statuses_bool_exp!" + ] + } + ], + "delete_e_league_proposal_statuses_by_pk": [ + 993, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_league_registration_statuses": [ + 1024, + { + "where": [ + 1017, + "e_league_registration_statuses_bool_exp!" + ] + } + ], + "delete_e_league_registration_statuses_by_pk": [ + 1014, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_league_season_statuses": [ + 1045, + { + "where": [ + 1038, + "e_league_season_statuses_bool_exp!" + ] + } + ], + "delete_e_league_season_statuses_by_pk": [ + 1035, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_lobby_access": [ + 1066, + { + "where": [ + 1059, + "e_lobby_access_bool_exp!" + ] + } + ], + "delete_e_lobby_access_by_pk": [ + 1056, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_lobby_player_status": [ + 1087, + { + "where": [ + 1080, + "e_lobby_player_status_bool_exp!" + ] + } + ], + "delete_e_lobby_player_status_by_pk": [ + 1077, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_map_pool_types": [ + 1107, + { + "where": [ + 1100, + "e_map_pool_types_bool_exp!" + ] + } + ], + "delete_e_map_pool_types_by_pk": [ + 1097, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_match_clip_visibility": [ + 1128, + { + "where": [ + 1121, + "e_match_clip_visibility_bool_exp!" + ] + } + ], + "delete_e_match_clip_visibility_by_pk": [ + 1118, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_match_map_status": [ + 1148, + { + "where": [ + 1141, + "e_match_map_status_bool_exp!" + ] + } + ], + "delete_e_match_map_status_by_pk": [ + 1138, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_match_mode": [ + 1169, + { + "where": [ + 1162, + "e_match_mode_bool_exp!" + ] + } + ], + "delete_e_match_mode_by_pk": [ + 1159, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_match_party_sources": [ + 1189, + { + "where": [ + 1182, + "e_match_party_sources_bool_exp!" + ] + } + ], + "delete_e_match_party_sources_by_pk": [ + 1179, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_match_status": [ + 1209, + { + "where": [ + 1202, + "e_match_status_bool_exp!" + ] + } + ], + "delete_e_match_status_by_pk": [ + 1199, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_match_types": [ + 1230, + { + "where": [ + 1223, + "e_match_types_bool_exp!" + ] + } + ], + "delete_e_match_types_by_pk": [ + 1220, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_notification_types": [ + 1251, + { + "where": [ + 1244, + "e_notification_types_bool_exp!" + ] + } + ], + "delete_e_notification_types_by_pk": [ + 1241, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_objective_types": [ + 1271, + { + "where": [ + 1264, + "e_objective_types_bool_exp!" + ] + } + ], + "delete_e_objective_types_by_pk": [ + 1261, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_player_roles": [ + 1291, + { + "where": [ + 1284, + "e_player_roles_bool_exp!" + ] + } + ], + "delete_e_player_roles_by_pk": [ + 1281, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_plugin_runtimes": [ + 1311, + { + "where": [ + 1304, + "e_plugin_runtimes_bool_exp!" + ] + } + ], + "delete_e_plugin_runtimes_by_pk": [ + 1301, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_ready_settings": [ + 1331, + { + "where": [ + 1324, + "e_ready_settings_bool_exp!" + ] + } + ], + "delete_e_ready_settings_by_pk": [ + 1321, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_sanction_scopes": [ + 1349, + { + "where": [ + 1344, + "e_sanction_scopes_bool_exp!" + ] + } + ], + "delete_e_sanction_scopes_by_pk": [ + 1341, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_sanction_sources": [ + 1370, + { + "where": [ + 1364, + "e_sanction_sources_bool_exp!" + ] + } + ], + "delete_e_sanction_sources_by_pk": [ + 1360, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_sanction_types": [ + 1397, + { + "where": [ + 1390, + "e_sanction_types_bool_exp!" + ] + } + ], + "delete_e_sanction_types_by_pk": [ + 1387, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_scrim_request_statuses": [ + 1418, + { + "where": [ + 1411, + "e_scrim_request_statuses_bool_exp!" + ] + } + ], + "delete_e_scrim_request_statuses_by_pk": [ + 1408, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_server_types": [ + 1438, + { + "where": [ + 1431, + "e_server_types_bool_exp!" + ] + } + ], + "delete_e_server_types_by_pk": [ + 1428, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_sides": [ + 1458, + { + "where": [ + 1451, + "e_sides_bool_exp!" + ] + } + ], + "delete_e_sides_by_pk": [ + 1448, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_system_alert_types": [ + 1478, + { + "where": [ + 1471, + "e_system_alert_types_bool_exp!" + ] + } + ], + "delete_e_system_alert_types_by_pk": [ + 1468, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_team_roles": [ + 1498, + { + "where": [ + 1491, + "e_team_roles_bool_exp!" + ] + } + ], + "delete_e_team_roles_by_pk": [ + 1488, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_team_roster_statuses": [ + 1519, + { + "where": [ + 1512, + "e_team_roster_statuses_bool_exp!" + ] + } + ], + "delete_e_team_roster_statuses_by_pk": [ + 1509, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_timeout_settings": [ + 1539, + { + "where": [ + 1532, + "e_timeout_settings_bool_exp!" + ] + } + ], + "delete_e_timeout_settings_by_pk": [ + 1529, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_tournament_categories": [ + 1559, + { + "where": [ + 1552, + "e_tournament_categories_bool_exp!" + ] + } + ], + "delete_e_tournament_categories_by_pk": [ + 1549, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_tournament_free_agent_statuses": [ + 1580, + { + "where": [ + 1573, + "e_tournament_free_agent_statuses_bool_exp!" + ] + } + ], + "delete_e_tournament_free_agent_statuses_by_pk": [ + 1570, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_tournament_registration_types": [ + 1601, + { + "where": [ + 1594, + "e_tournament_registration_types_bool_exp!" + ] + } + ], + "delete_e_tournament_registration_types_by_pk": [ + 1591, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_tournament_stage_types": [ + 1621, + { + "where": [ + 1614, + "e_tournament_stage_types_bool_exp!" + ] + } + ], + "delete_e_tournament_stage_types_by_pk": [ + 1611, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_tournament_status": [ + 1642, + { + "where": [ + 1635, + "e_tournament_status_bool_exp!" + ] + } + ], + "delete_e_tournament_status_by_pk": [ + 1632, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_utility_practice_access": [ + 1663, + { + "where": [ + 1656, + "e_utility_practice_access_bool_exp!" + ] + } + ], + "delete_e_utility_practice_access_by_pk": [ + 1653, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_utility_practice_statuses": [ + 1683, + { + "where": [ + 1676, + "e_utility_practice_statuses_bool_exp!" + ] + } + ], + "delete_e_utility_practice_statuses_by_pk": [ + 1673, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_utility_sources": [ + 1704, + { + "where": [ + 1697, + "e_utility_sources_bool_exp!" + ] + } + ], + "delete_e_utility_sources_by_pk": [ + 1694, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_utility_techniques": [ + 1724, + { + "where": [ + 1717, + "e_utility_techniques_bool_exp!" + ] + } + ], + "delete_e_utility_techniques_by_pk": [ + 1714, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_utility_throw_strengths": [ + 1744, + { + "where": [ + 1737, + "e_utility_throw_strengths_bool_exp!" + ] + } + ], + "delete_e_utility_throw_strengths_by_pk": [ + 1734, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_utility_types": [ + 1764, + { + "where": [ + 1757, + "e_utility_types_bool_exp!" + ] + } + ], + "delete_e_utility_types_by_pk": [ + 1754, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_utility_visibility": [ + 1784, + { + "where": [ + 1777, + "e_utility_visibility_bool_exp!" + ] + } + ], + "delete_e_utility_visibility_by_pk": [ + 1774, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_veto_pick_types": [ + 1804, + { + "where": [ + 1797, + "e_veto_pick_types_bool_exp!" + ] + } + ], + "delete_e_veto_pick_types_by_pk": [ + 1794, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_e_winning_reasons": [ + 1824, + { + "where": [ + 1817, + "e_winning_reasons_bool_exp!" + ] + } + ], + "delete_e_winning_reasons_by_pk": [ + 1814, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_event_match_links": [ + 1842, + { + "where": [ + 1837, + "event_match_links_bool_exp!" + ] + } + ], + "delete_event_match_links_by_pk": [ + 1834, + { + "event_id": [ + 6672, + "uuid!" + ], + "match_id": [ + 6672, + "uuid!" + ] + } + ], + "delete_event_media": [ + 1869, + { + "where": [ + 1861, + "event_media_bool_exp!" + ] + } + ], + "delete_event_media_by_pk": [ + 1852, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_event_media_players": [ + 1891, + { + "where": [ + 1883, + "event_media_players_bool_exp!" + ] + } + ], + "delete_event_media_players_by_pk": [ + 1874, + { + "media_id": [ + 6672, + "uuid!" + ], + "steam_id": [ + 312, + "bigint!" + ] + } + ], + "delete_event_organizers": [ + 1952, + { + "where": [ + 1944, + "event_organizers_bool_exp!" + ] + } + ], + "delete_event_organizers_by_pk": [ + 1935, + { + "event_id": [ + 6672, + "uuid!" + ], + "steam_id": [ + 312, + "bigint!" + ] + } + ], + "delete_event_players": [ + 1993, + { + "where": [ + 1985, + "event_players_bool_exp!" + ] + } + ], + "delete_event_players_by_pk": [ + 1976, + { + "event_id": [ + 6672, + "uuid!" + ], + "steam_id": [ + 312, + "bigint!" + ] + } + ], + "delete_event_teams": [ + 2031, + { + "where": [ + 2024, + "event_teams_bool_exp!" + ] + } + ], + "delete_event_teams_by_pk": [ + 2017, + { + "event_id": [ + 6672, + "uuid!" + ], + "team_id": [ + 6672, + "uuid!" + ] + } + ], + "delete_event_tournaments": [ + 2055, + { + "where": [ + 2048, + "event_tournaments_bool_exp!" + ] + } + ], + "delete_event_tournaments_by_pk": [ + 2041, + { + "event_id": [ + 6672, + "uuid!" + ], + "tournament_id": [ + 6672, + "uuid!" + ] + } + ], + "delete_events": [ + 2075, + { + "where": [ + 2069, + "events_bool_exp!" + ] + } + ], + "delete_events_by_pk": [ + 2065, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_friends": [ + 2105, + { + "where": [ + 2099, + "friends_bool_exp!" + ] + } + ], + "delete_friends_by_pk": [ + 2095, + { + "other_player_steam_id": [ + 312, + "bigint!" + ], + "player_steam_id": [ + 312, + "bigint!" + ] + } + ], + "delete_game_mode_plugins": [ + 2145, + { + "where": [ + 2134, + "game_mode_plugins_bool_exp!" + ] + } + ], + "delete_game_mode_plugins_by_pk": [ + 2122, + { + "game_mode_id": [ + 6672, + "uuid!" + ], + "plugin_slug": [ + 85, + "String!" + ] + } + ], + "delete_game_modes": [ + 2180, + { + "where": [ + 2175, + "game_modes_bool_exp!" + ] + } + ], + "delete_game_modes_by_pk": [ + 2172, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_game_plugin_installs": [ + 2199, + { + "where": [ + 2194, + "game_plugin_installs_bool_exp!" + ] + } + ], + "delete_game_plugin_installs_by_pk": [ + 2191, + { + "plugin_slug": [ + 85, + "String!" + ] + } + ], + "delete_game_plugin_versions": [ + 2228, + { + "where": [ + 2220, + "game_plugin_versions_bool_exp!" + ] + } + ], + "delete_game_plugin_versions_by_pk": [ + 2209, + { + "plugin_slug": [ + 85, + "String!" + ], + "runtime": [ + 1306, + "e_plugin_runtimes_enum!" + ], + "version": [ + 85, + "String!" + ] + } + ], + "delete_game_plugins": [ + 2267, + { + "where": [ + 2259, + "game_plugins_bool_exp!" + ] + } + ], + "delete_game_plugins_by_pk": [ + 2254, + { + "slug": [ + 85, + "String!" + ] + } + ], + "delete_game_server_node_plugins": [ + 2302, + { + "where": [ + 2295, + "game_server_node_plugins_bool_exp!" + ] + } + ], + "delete_game_server_node_plugins_by_pk": [ + 2286, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_game_server_nodes": [ + 2337, + { + "where": [ + 2326, + "game_server_nodes_bool_exp!" + ] + } + ], + "delete_game_server_nodes_by_pk": [ + 2314, + { + "id": [ + 85, + "String!" + ] + } + ], + "delete_game_versions": [ + 2379, + { + "where": [ + 2370, + "game_versions_bool_exp!" + ] + } + ], + "delete_game_versions_by_pk": [ + 2365, + { + "build_id": [ + 41, + "Int!" + ] + } + ], + "delete_gamedata_signature_validations": [ + 2412, + { + "where": [ + 2403, + "gamedata_signature_validations_bool_exp!" + ] + } + ], + "delete_gamedata_signature_validations_by_pk": [ + 2398, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_leaderboard_entries": [ + 2451, + { + "where": [ + 2446, + "leaderboard_entries_bool_exp!" + ] + } + ], + "delete_league_divisions": [ + 2476, + { + "where": [ + 2470, + "league_divisions_bool_exp!" + ] + } + ], + "delete_league_divisions_by_pk": [ + 2466, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_league_match_weeks": [ + 2511, + { + "where": [ + 2503, + "league_match_weeks_bool_exp!" + ] + } + ], + "delete_league_match_weeks_by_pk": [ + 2494, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_league_relegation_playoffs": [ + 2552, + { + "where": [ + 2544, + "league_relegation_playoffs_bool_exp!" + ] + } + ], + "delete_league_relegation_playoffs_by_pk": [ + 2535, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_league_scheduling_proposals": [ + 2593, + { + "where": [ + 2585, + "league_scheduling_proposals_bool_exp!" + ] + } + ], + "delete_league_scheduling_proposals_by_pk": [ + 2576, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_league_season_divisions": [ + 2631, + { + "where": [ + 2624, + "league_season_divisions_bool_exp!" + ] + } + ], + "delete_league_season_divisions_by_pk": [ + 2617, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_league_seasons": [ + 2656, + { + "where": [ + 2647, + "league_seasons_bool_exp!" + ] + } + ], + "delete_league_seasons_by_pk": [ + 2642, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_league_team_movements": [ + 2692, + { + "where": [ + 2684, + "league_team_movements_bool_exp!" + ] + } + ], + "delete_league_team_movements_by_pk": [ + 2675, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_league_team_rosters": [ + 2733, + { + "where": [ + 2725, + "league_team_rosters_bool_exp!" + ] + } + ], + "delete_league_team_rosters_by_pk": [ + 2716, + { + "league_team_season_id": [ + 6672, + "uuid!" + ], + "player_steam_id": [ + 312, + "bigint!" + ] + } + ], + "delete_league_team_seasons": [ + 2774, + { + "where": [ + 2766, + "league_team_seasons_bool_exp!" + ] + } + ], + "delete_league_team_seasons_by_pk": [ + 2757, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_league_teams": [ + 2807, + { + "where": [ + 2802, + "league_teams_bool_exp!" + ] + } + ], + "delete_league_teams_by_pk": [ + 2799, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_lobbies": [ + 2826, + { + "where": [ + 2821, + "lobbies_bool_exp!" + ] + } + ], + "delete_lobbies_by_pk": [ + 2818, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_lobby_players": [ + 2856, + { + "where": [ + 2848, + "lobby_players_bool_exp!" + ] + } + ], + "delete_lobby_players_by_pk": [ + 2837, + { + "lobby_id": [ + 6672, + "uuid!" + ], + "steam_id": [ + 312, + "bigint!" + ] + } + ], + "delete_map_callouts": [ + 2894, + { + "where": [ + 2886, + "map_callouts_bool_exp!" + ] + } + ], + "delete_map_callouts_by_pk": [ + 2882, + { + "map_name": [ + 85, + "String!" + ], + "name": [ + 85, + "String!" + ] + } + ], + "delete_map_pools": [ + 2913, + { + "where": [ + 2908, + "map_pools_bool_exp!" + ] + } + ], + "delete_map_pools_by_pk": [ + 2905, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_maps": [ + 2940, + { + "where": [ + 2933, + "maps_bool_exp!" + ] + } + ], + "delete_maps_by_pk": [ + 2924, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_match_clips": [ + 2970, + { + "where": [ + 2962, + "match_clips_bool_exp!" + ] + } + ], + "delete_match_clips_by_pk": [ + 2953, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_match_demo_sessions": [ + 3016, + { + "where": [ + 3005, + "match_demo_sessions_bool_exp!" + ] + } + ], + "delete_match_demo_sessions_by_pk": [ + 2995, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_match_lineup_players": [ + 3060, + { + "where": [ + 3052, + "match_lineup_players_bool_exp!" + ] + } + ], + "delete_match_lineup_players_by_pk": [ + 3041, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_match_lineups": [ + 3103, + { + "where": [ + 3095, + "match_lineups_bool_exp!" + ] + } + ], + "delete_match_lineups_by_pk": [ + 3086, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_match_map_demos": [ + 3151, + { + "where": [ + 3140, + "match_map_demos_bool_exp!" + ] + } + ], + "delete_match_map_demos_by_pk": [ + 3128, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_match_map_rounds": [ + 3196, + { + "where": [ + 3188, + "match_map_rounds_bool_exp!" + ] + } + ], + "delete_match_map_rounds_by_pk": [ + 3179, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_match_map_veto_picks": [ + 3236, + { + "where": [ + 3229, + "match_map_veto_picks_bool_exp!" + ] + } + ], + "delete_match_map_veto_picks_by_pk": [ + 3220, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_match_maps": [ + 3265, + { + "where": [ + 3257, + "match_maps_bool_exp!" + ] + } + ], + "delete_match_maps_by_pk": [ + 3248, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_match_options": [ + 3309, + { + "where": [ + 3301, + "match_options_bool_exp!" + ] + } + ], + "delete_match_options_by_pk": [ + 3290, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_match_region_veto_picks": [ + 3352, + { + "where": [ + 3345, + "match_region_veto_picks_bool_exp!" + ] + } + ], + "delete_match_region_veto_picks_by_pk": [ + 3336, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_match_streams": [ + 3387, + { + "where": [ + 3376, + "match_streams_bool_exp!" + ] + } + ], + "delete_match_streams_by_pk": [ + 3364, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_match_type_cfgs": [ + 3422, + { + "where": [ + 3417, + "match_type_cfgs_bool_exp!" + ] + } + ], + "delete_match_type_cfgs_by_pk": [ + 3414, + { + "type": [ + 876, + "e_game_cfg_types_enum!" + ] + } + ], + "delete_matches": [ + 3451, + { + "where": [ + 3443, + "matches_bool_exp!" + ] + } + ], + "delete_matches_by_pk": [ + 3432, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_migration_hashes_hashes": [ + 3486, + { + "where": [ + 3481, + "migration_hashes_hashes_bool_exp!" + ] + } + ], + "delete_migration_hashes_hashes_by_pk": [ + 3478, + { + "name": [ + 85, + "String!" + ] + } + ], + "delete_my_friends": [ + 3518, + { + "where": [ + 3508, + "my_friends_bool_exp!" + ] + } + ], + "delete_news_articles": [ + 3552, + { + "where": [ + 3546, + "news_articles_bool_exp!" + ] + } + ], + "delete_news_articles_by_pk": [ + 3542, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_notification_preferences": [ + 3579, + { + "where": [ + 3573, + "notification_preferences_bool_exp!" + ] + } + ], + "delete_notification_preferences_by_pk": [ + 3569, + { + "channel": [ + 85, + "String!" + ], + "key": [ + 85, + "String!" + ], + "steam_id": [ + 312, + "bigint!" + ] + } + ], + "delete_notifications": [ + 3619, + { + "where": [ + 3608, + "notifications_bool_exp!" + ] + } + ], + "delete_notifications_by_pk": [ + 3596, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_pending_match_import_players": [ + 3666, + { + "where": [ + 3658, + "pending_match_import_players_bool_exp!" + ] + } + ], + "delete_pending_match_import_players_by_pk": [ + 3649, + { + "steam_id": [ + 312, + "bigint!" + ], + "valve_match_id": [ + 3646, + "numeric!" + ] + } + ], + "delete_pending_match_imports": [ + 3700, + { + "where": [ + 3694, + "pending_match_imports_bool_exp!" + ] + } + ], + "delete_pending_match_imports_by_pk": [ + 3690, + { + "valve_match_id": [ + 3646, + "numeric!" + ] + } + ], + "delete_player_aim_stats_demo": [ + 3728, + { + "where": [ + 3722, + "player_aim_stats_demo_bool_exp!" + ] + } + ], + "delete_player_aim_stats_demo_by_pk": [ + 3718, + { + "attacker_steam_id": [ + 312, + "bigint!" + ], + "match_map_id": [ + 6672, + "uuid!" + ] + } + ], + "delete_player_aim_weapon_stats": [ + 3762, + { + "where": [ + 3754, + "player_aim_weapon_stats_bool_exp!" + ] + } + ], + "delete_player_aim_weapon_stats_by_pk": [ + 3745, + { + "match_map_id": [ + 6672, + "uuid!" + ], + "steam_id": [ + 312, + "bigint!" + ], + "weapon_class": [ + 85, + "String!" + ] + } + ], + "delete_player_assists": [ + 3805, + { + "where": [ + 3797, + "player_assists_bool_exp!" + ] + } + ], + "delete_player_assists_by_pk": [ + 3786, + { + "attacked_steam_id": [ + 312, + "bigint!" + ], + "attacker_steam_id": [ + 312, + "bigint!" + ], + "match_map_id": [ + 6672, + "uuid!" + ], + "time": [ + 5243, + "timestamptz!" + ] + } + ], + "delete_player_damages": [ + 3866, + { + "where": [ + 3858, + "player_damages_bool_exp!" + ] + } + ], + "delete_player_damages_by_pk": [ + 3849, + { + "id": [ + 6672, + "uuid!" + ], + "match_map_id": [ + 6672, + "uuid!" + ], + "time": [ + 5243, + "timestamptz!" + ] + } + ], + "delete_player_elo": [ + 3900, + { + "where": [ + 3894, + "player_elo_bool_exp!" + ] + } + ], + "delete_player_elo_by_pk": [ + 3890, + { + "match_id": [ + 6672, + "uuid!" + ], + "steam_id": [ + 312, + "bigint!" + ], + "type": [ + 1225, + "e_match_types_enum!" + ] + } + ], + "delete_player_faceit_rank_history": [ + 3934, + { + "where": [ + 3926, + "player_faceit_rank_history_bool_exp!" + ] + } + ], + "delete_player_faceit_rank_history_by_pk": [ + 3917, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_player_flashes": [ + 3977, + { + "where": [ + 3969, + "player_flashes_bool_exp!" + ] + } + ], + "delete_player_flashes_by_pk": [ + 3958, + { + "attacked_steam_id": [ + 312, + "bigint!" + ], + "attacker_steam_id": [ + 312, + "bigint!" + ], + "match_map_id": [ + 6672, + "uuid!" + ], + "time": [ + 5243, + "timestamptz!" + ] + } + ], + "delete_player_kills": [ + 4063, + { + "where": [ + 4014, + "player_kills_bool_exp!" + ] + } + ], + "delete_player_kills_by_pk": [ + 4003, + { + "attacked_steam_id": [ + 312, + "bigint!" + ], + "attacker_steam_id": [ + 312, + "bigint!" + ], + "match_map_id": [ + 6672, + "uuid!" + ], + "time": [ + 5243, + "timestamptz!" + ] + } + ], + "delete_player_kills_by_weapon": [ + 4032, + { + "where": [ + 4024, + "player_kills_by_weapon_bool_exp!" + ] + } + ], + "delete_player_kills_by_weapon_by_pk": [ + 4015, + { + "player_steam_id": [ + 312, + "bigint!" + ], + "with": [ + 85, + "String!" + ] + } + ], + "delete_player_leaderboard_rank": [ + 4098, + { + "where": [ + 4093, + "player_leaderboard_rank_bool_exp!" + ] + } + ], + "delete_player_match_map_stats": [ + 4129, + { + "where": [ + 4121, + "player_match_map_stats_bool_exp!" + ] + } + ], + "delete_player_match_map_stats_by_pk": [ + 4112, + { + "match_map_id": [ + 6672, + "uuid!" + ], + "steam_id": [ + 312, + "bigint!" + ] + } + ], + "delete_player_objectives": [ + 4221, + { + "where": [ + 4213, + "player_objectives_bool_exp!" + ] + } + ], + "delete_player_objectives_by_pk": [ + 4204, + { + "match_map_id": [ + 6672, + "uuid!" + ], + "player_steam_id": [ + 312, + "bigint!" + ], + "time": [ + 5243, + "timestamptz!" + ] + } + ], + "delete_player_premier_rank_history": [ + 4280, + { + "where": [ + 4272, + "player_premier_rank_history_bool_exp!" + ] + } + ], + "delete_player_premier_rank_history_by_pk": [ + 4263, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_player_sanctions": [ + 4321, + { + "where": [ + 4313, + "player_sanctions_bool_exp!" + ] + } + ], + "delete_player_sanctions_by_pk": [ + 4304, + { + "created_at": [ + 5243, + "timestamptz!" + ], + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_player_season_stats": [ + 4372, + { + "where": [ + 4364, + "player_season_stats_bool_exp!" + ] + } + ], + "delete_player_season_stats_by_pk": [ + 4345, + { + "player_steam_id": [ + 312, + "bigint!" + ], + "season_id": [ + 6672, + "uuid!" + ] + } + ], + "delete_player_stats": [ + 4414, + { + "where": [ + 4408, + "player_stats_bool_exp!" + ] + } + ], + "delete_player_stats_by_pk": [ + 4404, + { + "player_steam_id": [ + 312, + "bigint!" + ] + } + ], + "delete_player_steam_bot_friend": [ + 4446, + { + "where": [ + 4437, + "player_steam_bot_friend_bool_exp!" + ] + } + ], + "delete_player_steam_bot_friend_by_pk": [ + 4432, + { + "steam_id": [ + 312, + "bigint!" + ] + } + ], + "delete_player_steam_match_auth": [ + 4474, + { + "where": [ + 4468, + "player_steam_match_auth_bool_exp!" + ] + } + ], + "delete_player_steam_match_auth_by_pk": [ + 4464, + { + "steam_id": [ + 312, + "bigint!" + ] + } + ], + "delete_player_unused_utility": [ + 4508, + { + "where": [ + 4500, + "player_unused_utility_bool_exp!" + ] + } + ], + "delete_player_unused_utility_by_pk": [ + 4491, + { + "match_map_id": [ + 6672, + "uuid!" + ], + "player_steam_id": [ + 312, + "bigint!" + ] + } + ], + "delete_player_utility": [ + 4549, + { + "where": [ + 4541, + "player_utility_bool_exp!" + ] + } + ], + "delete_player_utility_by_pk": [ + 4532, + { + "attacker_steam_id": [ + 312, + "bigint!" + ], + "match_map_id": [ + 6672, + "uuid!" + ], + "time": [ + 5243, + "timestamptz!" + ] + } + ], + "delete_players": [ + 4616, + { + "where": [ + 4610, + "players_bool_exp!" + ] + } + ], + "delete_players_by_pk": [ + 4606, + { + "steam_id": [ + 312, + "bigint!" + ] + } + ], + "delete_plugin_versions": [ + 4644, + { + "where": [ + 4638, + "plugin_versions_bool_exp!" + ] + } + ], + "delete_plugin_versions_by_pk": [ + 4634, + { + "runtime": [ + 1306, + "e_plugin_runtimes_enum!" + ], + "version": [ + 85, + "String!" + ] + } + ], + "delete_push_subscriptions": [ + 4671, + { + "where": [ + 4665, + "push_subscriptions_bool_exp!" + ] + } + ], + "delete_push_subscriptions_by_pk": [ + 4661, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_role_permissions": [ + 4699, + { + "where": [ + 4695, + "role_permissions_bool_exp!" + ] + } + ], + "delete_seasons": [ + 4716, + { + "where": [ + 4710, + "seasons_bool_exp!" + ] + } + ], + "delete_seasons_by_pk": [ + 4706, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_server_regions": [ + 4743, + { + "where": [ + 4738, + "server_regions_bool_exp!" + ] + } + ], + "delete_server_regions_by_pk": [ + 4734, + { + "value": [ + 85, + "String!" + ] + } + ], + "delete_servers": [ + 4784, + { + "where": [ + 4773, + "servers_bool_exp!" + ] + } + ], + "delete_servers_by_pk": [ + 4761, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_settings": [ + 4820, + { + "where": [ + 4815, + "settings_bool_exp!" + ] + } + ], + "delete_settings_by_pk": [ + 4812, + { + "name": [ + 85, + "String!" + ] + } + ], + "delete_steam_account_claims": [ + 4846, + { + "where": [ + 4839, + "steam_account_claims_bool_exp!" + ] + } + ], + "delete_steam_account_claims_by_pk": [ + 4832, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_steam_accounts": [ + 4866, + { + "where": [ + 4860, + "steam_accounts_bool_exp!" + ] + } + ], + "delete_steam_accounts_by_pk": [ + 4856, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_system_alerts": [ + 4894, + { + "where": [ + 4888, + "system_alerts_bool_exp!" + ] + } + ], + "delete_system_alerts_by_pk": [ + 4884, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_team_invites": [ + 4928, + { + "where": [ + 4920, + "team_invites_bool_exp!" + ] + } + ], + "delete_team_invites_by_pk": [ + 4911, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_team_roster": [ + 4971, + { + "where": [ + 4963, + "team_roster_bool_exp!" + ] + } + ], + "delete_team_roster_by_pk": [ + 4952, + { + "player_steam_id": [ + 312, + "bigint!" + ], + "team_id": [ + 6672, + "uuid!" + ] + } + ], + "delete_team_scrim_alerts": [ + 5007, + { + "where": [ + 5001, + "team_scrim_alerts_bool_exp!" + ] + } + ], + "delete_team_scrim_alerts_by_pk": [ + 4997, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_team_scrim_availability": [ + 5040, + { + "where": [ + 5033, + "team_scrim_availability_bool_exp!" + ] + } + ], + "delete_team_scrim_availability_by_pk": [ + 5024, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_team_scrim_request_proposals": [ + 5069, + { + "where": [ + 5061, + "team_scrim_request_proposals_bool_exp!" + ] + } + ], + "delete_team_scrim_request_proposals_by_pk": [ + 5052, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_team_scrim_requests": [ + 5112, + { + "where": [ + 5104, + "team_scrim_requests_bool_exp!" + ] + } + ], + "delete_team_scrim_requests_by_pk": [ + 5093, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_team_scrim_settings": [ + 5149, + { + "where": [ + 5143, + "team_scrim_settings_bool_exp!" + ] + } + ], + "delete_team_scrim_settings_by_pk": [ + 5139, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_team_suggestions": [ + 5177, + { + "where": [ + 5171, + "team_suggestions_bool_exp!" + ] + } + ], + "delete_team_suggestions_by_pk": [ + 5167, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_teams": [ + 5213, + { + "where": [ + 5205, + "teams_bool_exp!" + ] + } + ], + "delete_teams_by_pk": [ + 5194, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_tournament_awards": [ + 5262, + { + "where": [ + 5254, + "tournament_awards_bool_exp!" + ] + } + ], + "delete_tournament_awards_by_pk": [ + 5245, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_tournament_brackets": [ + 5306, + { + "where": [ + 5298, + "tournament_brackets_bool_exp!" + ] + } + ], + "delete_tournament_brackets_by_pk": [ + 5287, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_tournament_categories": [ + 5347, + { + "where": [ + 5340, + "tournament_categories_bool_exp!" + ] + } + ], + "delete_tournament_categories_by_pk": [ + 5333, + { + "category": [ + 1554, + "e_tournament_categories_enum!" + ], + "tournament_id": [ + 6672, + "uuid!" + ] + } + ], + "delete_tournament_free_agents": [ + 5374, + { + "where": [ + 5366, + "tournament_free_agents_bool_exp!" + ] + } + ], + "delete_tournament_free_agents_by_pk": [ + 5357, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_tournament_invite_code_uses": [ + 5415, + { + "where": [ + 5407, + "tournament_invite_code_uses_bool_exp!" + ] + } + ], + "delete_tournament_invite_code_uses_by_pk": [ + 5398, + { + "invite_code_id": [ + 6672, + "uuid!" + ], + "player_steam_id": [ + 312, + "bigint!" + ] + } + ], + "delete_tournament_invite_codes": [ + 5449, + { + "where": [ + 5443, + "tournament_invite_codes_bool_exp!" + ] + } + ], + "delete_tournament_invite_codes_by_pk": [ + 5439, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_tournament_invites": [ + 5477, + { + "where": [ + 5471, + "tournament_invites_bool_exp!" + ] + } + ], + "delete_tournament_invites_by_pk": [ + 5467, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_tournament_leaderboard_entries": [ + 5503, + { + "where": [ + 5498, + "tournament_leaderboard_entries_bool_exp!" + ] + } + ], + "delete_tournament_no_shows": [ + 5527, + { + "where": [ + 5521, + "tournament_no_shows_bool_exp!" + ] + } + ], + "delete_tournament_no_shows_by_pk": [ + 5517, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_tournament_organizer_teams": [ + 5558, + { + "where": [ + 5551, + "tournament_organizer_teams_bool_exp!" + ] + } + ], + "delete_tournament_organizer_teams_by_pk": [ + 5544, + { + "team_id": [ + 6672, + "uuid!" + ], + "tournament_id": [ + 6672, + "uuid!" + ] + } + ], + "delete_tournament_organizers": [ + 5585, + { + "where": [ + 5577, + "tournament_organizers_bool_exp!" + ] + } + ], + "delete_tournament_organizers_by_pk": [ + 5568, + { + "steam_id": [ + 312, + "bigint!" + ], + "tournament_id": [ + 6672, + "uuid!" + ] + } + ], + "delete_tournament_prizes": [ + 5626, + { + "where": [ + 5618, + "tournament_prizes_bool_exp!" + ] + } + ], + "delete_tournament_prizes_by_pk": [ + 5609, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_tournament_registration_unlocks": [ + 5660, + { + "where": [ + 5654, + "tournament_registration_unlocks_bool_exp!" + ] + } + ], + "delete_tournament_stage_windows": [ + 5693, + { + "where": [ + 5685, + "tournament_stage_windows_bool_exp!" + ] + } + ], + "delete_tournament_stage_windows_by_pk": [ + 5676, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_tournament_stages": [ + 5740, + { + "where": [ + 5729, + "tournament_stages_bool_exp!" + ] + } + ], + "delete_tournament_stages_by_pk": [ + 5717, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_tournament_team_invites": [ + 5785, + { + "where": [ + 5777, + "tournament_team_invites_bool_exp!" + ] + } + ], + "delete_tournament_team_invites_by_pk": [ + 5768, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_tournament_team_roster": [ + 5826, + { + "where": [ + 5818, + "tournament_team_roster_bool_exp!" + ] + } + ], + "delete_tournament_team_roster_by_pk": [ + 5809, + { + "player_steam_id": [ + 312, + "bigint!" + ], + "tournament_id": [ + 6672, + "uuid!" + ] + } + ], + "delete_tournament_teams": [ + 5869, + { + "where": [ + 5861, + "tournament_teams_bool_exp!" + ] + } + ], + "delete_tournament_teams_by_pk": [ + 5850, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_tournaments": [ + 5925, + { + "where": [ + 5917, + "tournaments_bool_exp!" + ] + } + ], + "delete_tournaments_by_pk": [ + 5896, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_utility_collection_items": [ + 5977, + { + "where": [ + 5969, + "utility_collection_items_bool_exp!" + ] + } + ], + "delete_utility_collection_items_by_pk": [ + 5960, + { + "collection_id": [ + 6672, + "uuid!" + ], + "utility_lineup_id": [ + 6672, + "uuid!" + ] + } + ], + "delete_utility_collections": [ + 6011, + { + "where": [ + 6005, + "utility_collections_bool_exp!" + ] + } + ], + "delete_utility_collections_by_pk": [ + 6001, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_utility_demo_mines": [ + 6039, + { + "where": [ + 6033, + "utility_demo_mines_bool_exp!" + ] + } + ], + "delete_utility_demo_mines_by_pk": [ + 6029, + { + "match_map_demo_id": [ + 6672, + "uuid!" + ] + } + ], + "delete_utility_demo_throws": [ + 6066, + { + "where": [ + 6060, + "utility_demo_throws_bool_exp!" + ] + } + ], + "delete_utility_demo_throws_by_pk": [ + 6056, + { + "grenade_id": [ + 41, + "Int!" + ], + "match_map_demo_id": [ + 6672, + "uuid!" + ] + } + ], + "delete_utility_drift_results": [ + 6110, + { + "where": [ + 6102, + "utility_drift_results_bool_exp!" + ] + } + ], + "delete_utility_drift_results_by_pk": [ + 6083, + { + "utility_drift_scan_id": [ + 6672, + "uuid!" + ], + "utility_lineup_id": [ + 6672, + "uuid!" + ] + } + ], + "delete_utility_drift_scans": [ + 6152, + { + "where": [ + 6146, + "utility_drift_scans_bool_exp!" + ] + } + ], + "delete_utility_drift_scans_by_pk": [ + 6142, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_utility_lineup_favorites": [ + 6187, + { + "where": [ + 6179, + "utility_lineup_favorites_bool_exp!" + ] + } + ], + "delete_utility_lineup_favorites_by_pk": [ + 6170, + { + "steam_id": [ + 312, + "bigint!" + ], + "utility_lineup_id": [ + 6672, + "uuid!" + ] + } + ], + "delete_utility_lineup_progress": [ + 6238, + { + "where": [ + 6230, + "utility_lineup_progress_bool_exp!" + ] + } + ], + "delete_utility_lineup_progress_by_pk": [ + 6211, + { + "steam_id": [ + 312, + "bigint!" + ], + "utility_lineup_id": [ + 6672, + "uuid!" + ] + } + ], + "delete_utility_lineup_renders": [ + 6293, + { + "where": [ + 6282, + "utility_lineup_renders_bool_exp!" + ] + } + ], + "delete_utility_lineup_renders_by_pk": [ + 6270, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_utility_lineup_repairs": [ + 6347, + { + "where": [ + 6339, + "utility_lineup_repairs_bool_exp!" + ] + } + ], + "delete_utility_lineup_repairs_by_pk": [ + 6320, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_utility_lineup_votes": [ + 6396, + { + "where": [ + 6388, + "utility_lineup_votes_bool_exp!" + ] + } + ], + "delete_utility_lineup_votes_by_pk": [ + 6379, + { + "steam_id": [ + 312, + "bigint!" + ], + "utility_lineup_id": [ + 6672, + "uuid!" + ] + } + ], + "delete_utility_lineups": [ + 6453, + { + "where": [ + 6442, + "utility_lineups_bool_exp!" + ] + } + ], + "delete_utility_lineups_by_pk": [ + 6420, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_utility_meta_lineups": [ + 6499, + { + "where": [ + 6493, + "utility_meta_lineups_bool_exp!" + ] + } + ], + "delete_utility_meta_lineups_by_pk": [ + 6489, + { + "lineup_bucket": [ + 85, + "String!" + ] + } + ], + "delete_utility_playbook_steps": [ + 6533, + { + "where": [ + 6525, + "utility_playbook_steps_bool_exp!" + ] + } + ], + "delete_utility_playbook_steps_by_pk": [ + 6516, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_utility_playbooks": [ + 6567, + { + "where": [ + 6561, + "utility_playbooks_bool_exp!" + ] + } + ], + "delete_utility_playbooks_by_pk": [ + 6557, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_utility_practice_invites": [ + 6602, + { + "where": [ + 6594, + "utility_practice_invites_bool_exp!" + ] + } + ], + "delete_utility_practice_invites_by_pk": [ + 6585, + { + "steam_id": [ + 312, + "bigint!" + ], + "utility_practice_session_id": [ + 6672, + "uuid!" + ] + } + ], + "delete_utility_practice_sessions": [ + 6645, + { + "where": [ + 6637, + "utility_practice_sessions_bool_exp!" + ] + } + ], + "delete_utility_practice_sessions_by_pk": [ + 6626, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "delete_v_match_captains": [ + 6837, + { + "where": [ + 6832, + "v_match_captains_bool_exp!" + ] + } + ], + "delete_v_match_map_backup_rounds": [ + 6948, + { + "where": [ + 6943, + "v_match_map_backup_rounds_bool_exp!" + ] + } + ], + "delete_v_player_match_map_hltv": [ + 7170, + { + "where": [ + 7163, + "v_player_match_map_hltv_bool_exp!" + ] + } + ], + "delete_v_pool_maps": [ + 7347, + { + "where": [ + 7341, + "v_pool_maps_bool_exp!" + ] + } + ], + "delete_v_team_stage_results": [ + 7441, + { + "where": [ + 7433, + "v_team_stage_results_bool_exp!" + ] + } + ], + "delete_v_team_stage_results_by_pk": [ + 7414, + { + "tournament_stage_id": [ + 6672, + "uuid!" + ], + "tournament_team_id": [ + 6672, + "uuid!" + ] + } + ], + "denyInvite": [ + 88, + { + "invite_id": [ + 6672, + "uuid!" + ], + "type": [ + 85, + "String!" + ] + } + ], + "denyNameChange": [ + 88, + { + "name": [ + 85, + "String!" + ], + "steam_id": [ + 312, + "bigint!" + ] + } + ], + "draftTournamentTeams": [ + 112, + { + "tournament_id": [ + 6672, + "uuid!" + ] + } + ], + "extendTournamentCheckIn": [ + 88, + { + "minutes": [ + 41, + "Int!" + ], + "tournament_id": [ + 6672, + "uuid!" + ] + } + ], + "forfeitMatch": [ + 88, + { + "match_id": [ + 6672, + "uuid!" + ], + "winning_lineup_id": [ + 6672, + "uuid!" + ] + } + ], + "forkUtilityLineup": [ + 123, + { + "collection_id": [ + 6672 + ], + "name": [ + 85 + ], + "utility_lineup_id": [ + 6672, + "uuid!" + ] + } + ], + "getLiveStreamSpecState": [ + 46, + { + "match_id": [ + 6672, + "uuid!" + ] + } + ], + "getPluginReadme": [ + 58, + { + "runtime": [ + 85 + ], + "slug": [ + 85, + "String!" + ] + } + ], + "getTestUploadLink": [ + 34 + ], + "grantAward": [ + 5, + { + "award_id": [ + 6672, + "uuid!" + ], + "event_id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "note": [ + 85 + ], + "player_steam_id": [ + 85 + ], + "season_id": [ + 6672 + ], + "team_id": [ + 6672 + ], + "tournament_id": [ + 6672 + ] + } + ], + "importUtilityLineups": [ + 121, + { + "dry_run": [ + 6 + ], + "payload": [ + 2439, + "jsonb!" + ] + } + ], + "insert__map_pool": [ + 163, + { + "objects": [ + 160, + "[_map_pool_insert_input!]!" + ], + "on_conflict": [ + 164 + ] + } + ], + "insert__map_pool_one": [ + 155, + { + "object": [ + 160, + "_map_pool_insert_input!" + ], + "on_conflict": [ + 164 + ] + } + ], + "insert_abandoned_matches": [ + 191, + { + "objects": [ + 186, + "[abandoned_matches_insert_input!]!" + ], + "on_conflict": [ + 192 + ] + } + ], + "insert_abandoned_matches_one": [ + 174, + { + "object": [ + 186, + "abandoned_matches_insert_input!" + ], + "on_conflict": [ + 192 + ] + } + ], + "insert_api_keys": [ + 225, + { + "objects": [ + 222, + "[api_keys_insert_input!]!" + ], + "on_conflict": [ + 226 + ] + } + ], + "insert_api_keys_one": [ + 215, + { + "object": [ + 222, + "api_keys_insert_input!" + ], + "on_conflict": [ + 226 + ] + } + ], + "insert_award_recipients": [ + 260, + { + "objects": [ + 255, + "[award_recipients_insert_input!]!" + ], + "on_conflict": [ + 261 + ] + } + ], + "insert_award_recipients_one": [ + 243, + { + "object": [ + 255, + "award_recipients_insert_input!" + ], + "on_conflict": [ + 261 + ] + } + ], + "insert_awards": [ + 294, + { + "objects": [ + 291, + "[awards_insert_input!]!" + ], + "on_conflict": [ + 296 + ] + } + ], + "insert_awards_one": [ + 284, + { + "object": [ + 291, + "awards_insert_input!" + ], + "on_conflict": [ + 296 + ] + } + ], + "insert_chat_read_state": [ + 327, + { + "objects": [ + 324, + "[chat_read_state_insert_input!]!" + ], + "on_conflict": [ + 328 + ] + } + ], + "insert_chat_read_state_one": [ + 317, + { + "object": [ + 324, + "chat_read_state_insert_input!" + ], + "on_conflict": [ + 328 + ] + } + ], + "insert_clip_render_jobs": [ + 367, + { + "objects": [ + 362, + "[clip_render_jobs_insert_input!]!" + ], + "on_conflict": [ + 368 + ] + } + ], + "insert_clip_render_jobs_one": [ + 344, + { + "object": [ + 362, + "clip_render_jobs_insert_input!" + ], + "on_conflict": [ + 368 + ] + } + ], + "insert_custom_pages": [ + 410, + { + "objects": [ + 407, + "[custom_pages_insert_input!]!" + ], + "on_conflict": [ + 411 + ] + } + ], + "insert_custom_pages_one": [ + 396, + { + "object": [ + 407, + "custom_pages_insert_input!" + ], + "on_conflict": [ + 411 + ] + } + ], + "insert_db_backups": [ + 438, + { + "objects": [ + 435, + "[db_backups_insert_input!]!" + ], + "on_conflict": [ + 439 + ] + } + ], + "insert_db_backups_one": [ + 428, + { + "object": [ + 435, + "db_backups_insert_input!" + ], + "on_conflict": [ + 439 + ] + } + ], + "insert_direct_conversations": [ + 465, + { + "objects": [ + 462, + "[direct_conversations_insert_input!]!" + ], + "on_conflict": [ + 466 + ] + } + ], + "insert_direct_conversations_one": [ + 455, + { + "object": [ + 462, + "direct_conversations_insert_input!" + ], + "on_conflict": [ + 466 + ] + } + ], + "insert_direct_messages": [ + 492, + { + "objects": [ + 489, + "[direct_messages_insert_input!]!" + ], + "on_conflict": [ + 493 + ] + } + ], + "insert_direct_messages_one": [ + 482, + { + "object": [ + 489, + "direct_messages_insert_input!" + ], + "on_conflict": [ + 493 + ] + } + ], + "insert_draft_game_picks": [ + 528, + { + "objects": [ + 523, + "[draft_game_picks_insert_input!]!" + ], + "on_conflict": [ + 529 + ] + } + ], + "insert_draft_game_picks_one": [ + 509, + { + "object": [ + 523, + "draft_game_picks_insert_input!" + ], + "on_conflict": [ + 529 + ] + } + ], + "insert_draft_game_players": [ + 573, + { + "objects": [ + 568, + "[draft_game_players_insert_input!]!" + ], + "on_conflict": [ + 574 + ] + } + ], + "insert_draft_game_players_one": [ + 554, + { + "object": [ + 568, + "draft_game_players_insert_input!" + ], + "on_conflict": [ + 574 + ] + } + ], + "insert_draft_games": [ + 618, + { + "objects": [ + 613, + "[draft_games_insert_input!]!" + ], + "on_conflict": [ + 620 + ] + } + ], + "insert_draft_games_one": [ + 599, + { + "object": [ + 613, + "draft_games_insert_input!" + ], + "on_conflict": [ + 620 + ] + } + ], + "insert_e_award_sources": [ + 655, + { + "objects": [ + 652, + "[e_award_sources_insert_input!]!" + ], + "on_conflict": [ + 656 + ] + } + ], + "insert_e_award_sources_one": [ + 645, + { + "object": [ + 652, + "e_award_sources_insert_input!" + ], + "on_conflict": [ + 656 + ] + } + ], + "insert_e_award_tiers": [ + 675, + { + "objects": [ + 672, + "[e_award_tiers_insert_input!]!" + ], + "on_conflict": [ + 676 + ] + } + ], + "insert_e_award_tiers_one": [ + 665, + { + "object": [ + 672, + "e_award_tiers_insert_input!" + ], + "on_conflict": [ + 676 + ] + } + ], + "insert_e_check_in_settings": [ + 695, + { + "objects": [ + 692, + "[e_check_in_settings_insert_input!]!" + ], + "on_conflict": [ + 696 + ] + } + ], + "insert_e_check_in_settings_one": [ + 685, + { + "object": [ + 692, + "e_check_in_settings_insert_input!" + ], + "on_conflict": [ + 696 + ] + } + ], + "insert_e_draft_game_captain_selection": [ + 715, + { + "objects": [ + 712, + "[e_draft_game_captain_selection_insert_input!]!" + ], + "on_conflict": [ + 717 + ] + } + ], + "insert_e_draft_game_captain_selection_one": [ + 705, + { + "object": [ + 712, + "e_draft_game_captain_selection_insert_input!" + ], + "on_conflict": [ + 717 + ] + } + ], + "insert_e_draft_game_draft_order": [ + 736, + { + "objects": [ + 733, + "[e_draft_game_draft_order_insert_input!]!" + ], + "on_conflict": [ + 738 + ] + } + ], + "insert_e_draft_game_draft_order_one": [ + 726, + { + "object": [ + 733, + "e_draft_game_draft_order_insert_input!" + ], + "on_conflict": [ + 738 + ] + } + ], + "insert_e_draft_game_mode": [ + 757, + { + "objects": [ + 754, + "[e_draft_game_mode_insert_input!]!" + ], + "on_conflict": [ + 759 + ] + } + ], + "insert_e_draft_game_mode_one": [ + 747, + { + "object": [ + 754, + "e_draft_game_mode_insert_input!" + ], + "on_conflict": [ + 759 + ] + } + ], + "insert_e_draft_game_player_status": [ + 778, + { + "objects": [ + 775, + "[e_draft_game_player_status_insert_input!]!" + ], + "on_conflict": [ + 780 + ] + } + ], + "insert_e_draft_game_player_status_one": [ + 768, + { + "object": [ + 775, + "e_draft_game_player_status_insert_input!" + ], + "on_conflict": [ + 780 + ] + } + ], + "insert_e_draft_game_status": [ + 799, + { + "objects": [ + 796, + "[e_draft_game_status_insert_input!]!" + ], + "on_conflict": [ + 801 + ] + } + ], + "insert_e_draft_game_status_one": [ + 789, + { + "object": [ + 796, + "e_draft_game_status_insert_input!" + ], + "on_conflict": [ + 801 + ] + } + ], + "insert_e_event_media_access": [ + 820, + { + "objects": [ + 817, + "[e_event_media_access_insert_input!]!" + ], + "on_conflict": [ + 821 + ] + } + ], + "insert_e_event_media_access_one": [ + 810, + { + "object": [ + 817, + "e_event_media_access_insert_input!" + ], + "on_conflict": [ + 821 + ] + } + ], + "insert_e_event_visibility": [ + 840, + { + "objects": [ + 837, + "[e_event_visibility_insert_input!]!" + ], + "on_conflict": [ + 841 + ] + } + ], + "insert_e_event_visibility_one": [ + 830, + { + "object": [ + 837, + "e_event_visibility_insert_input!" + ], + "on_conflict": [ + 841 + ] + } + ], + "insert_e_friend_status": [ + 860, + { + "objects": [ + 857, + "[e_friend_status_insert_input!]!" + ], + "on_conflict": [ + 862 + ] + } + ], + "insert_e_friend_status_one": [ + 850, + { + "object": [ + 857, + "e_friend_status_insert_input!" + ], + "on_conflict": [ + 862 + ] + } + ], + "insert_e_game_cfg_types": [ + 881, + { + "objects": [ + 878, + "[e_game_cfg_types_insert_input!]!" + ], + "on_conflict": [ + 882 + ] + } + ], + "insert_e_game_cfg_types_one": [ + 871, + { + "object": [ + 878, + "e_game_cfg_types_insert_input!" + ], + "on_conflict": [ + 882 + ] + } + ], + "insert_e_game_plugin_channels": [ + 901, + { + "objects": [ + 898, + "[e_game_plugin_channels_insert_input!]!" + ], + "on_conflict": [ + 902 + ] + } + ], + "insert_e_game_plugin_channels_one": [ + 891, + { + "object": [ + 898, + "e_game_plugin_channels_insert_input!" + ], + "on_conflict": [ + 902 + ] + } + ], + "insert_e_game_plugin_install_statuses": [ + 921, + { + "objects": [ + 918, + "[e_game_plugin_install_statuses_insert_input!]!" + ], + "on_conflict": [ + 922 + ] + } + ], + "insert_e_game_plugin_install_statuses_one": [ + 911, + { + "object": [ + 918, + "e_game_plugin_install_statuses_insert_input!" + ], + "on_conflict": [ + 922 + ] + } + ], + "insert_e_game_plugin_kinds": [ + 941, + { + "objects": [ + 938, + "[e_game_plugin_kinds_insert_input!]!" + ], + "on_conflict": [ + 942 + ] + } + ], + "insert_e_game_plugin_kinds_one": [ + 931, + { + "object": [ + 938, + "e_game_plugin_kinds_insert_input!" + ], + "on_conflict": [ + 942 + ] + } + ], + "insert_e_game_server_node_statuses": [ + 961, + { + "objects": [ + 958, + "[e_game_server_node_statuses_insert_input!]!" + ], + "on_conflict": [ + 963 + ] + } + ], + "insert_e_game_server_node_statuses_one": [ + 951, + { + "object": [ + 958, + "e_game_server_node_statuses_insert_input!" + ], + "on_conflict": [ + 963 + ] + } + ], + "insert_e_league_movement_types": [ + 982, + { + "objects": [ + 979, + "[e_league_movement_types_insert_input!]!" + ], + "on_conflict": [ + 984 + ] + } + ], + "insert_e_league_movement_types_one": [ + 972, + { + "object": [ + 979, + "e_league_movement_types_insert_input!" + ], + "on_conflict": [ + 984 + ] + } + ], + "insert_e_league_proposal_statuses": [ + 1003, + { + "objects": [ + 1000, + "[e_league_proposal_statuses_insert_input!]!" + ], + "on_conflict": [ + 1005 + ] + } + ], + "insert_e_league_proposal_statuses_one": [ + 993, + { + "object": [ + 1000, + "e_league_proposal_statuses_insert_input!" + ], + "on_conflict": [ + 1005 + ] + } + ], + "insert_e_league_registration_statuses": [ + 1024, + { + "objects": [ + 1021, + "[e_league_registration_statuses_insert_input!]!" + ], + "on_conflict": [ + 1026 + ] + } + ], + "insert_e_league_registration_statuses_one": [ + 1014, + { + "object": [ + 1021, + "e_league_registration_statuses_insert_input!" + ], + "on_conflict": [ + 1026 + ] + } + ], + "insert_e_league_season_statuses": [ + 1045, + { + "objects": [ + 1042, + "[e_league_season_statuses_insert_input!]!" + ], + "on_conflict": [ + 1047 + ] + } + ], + "insert_e_league_season_statuses_one": [ + 1035, + { + "object": [ + 1042, + "e_league_season_statuses_insert_input!" + ], + "on_conflict": [ + 1047 + ] + } + ], + "insert_e_lobby_access": [ + 1066, + { + "objects": [ + 1063, + "[e_lobby_access_insert_input!]!" + ], + "on_conflict": [ + 1068 + ] + } + ], + "insert_e_lobby_access_one": [ + 1056, + { + "object": [ + 1063, + "e_lobby_access_insert_input!" + ], + "on_conflict": [ + 1068 + ] + } + ], + "insert_e_lobby_player_status": [ + 1087, + { + "objects": [ + 1084, + "[e_lobby_player_status_insert_input!]!" + ], + "on_conflict": [ + 1088 + ] + } + ], + "insert_e_lobby_player_status_one": [ + 1077, + { + "object": [ + 1084, + "e_lobby_player_status_insert_input!" + ], + "on_conflict": [ + 1088 + ] + } + ], + "insert_e_map_pool_types": [ + 1107, + { + "objects": [ + 1104, + "[e_map_pool_types_insert_input!]!" + ], + "on_conflict": [ + 1109 + ] + } + ], + "insert_e_map_pool_types_one": [ + 1097, + { + "object": [ + 1104, + "e_map_pool_types_insert_input!" + ], + "on_conflict": [ + 1109 + ] + } + ], + "insert_e_match_clip_visibility": [ + 1128, + { + "objects": [ + 1125, + "[e_match_clip_visibility_insert_input!]!" + ], + "on_conflict": [ + 1129 + ] + } + ], + "insert_e_match_clip_visibility_one": [ + 1118, + { + "object": [ + 1125, + "e_match_clip_visibility_insert_input!" + ], + "on_conflict": [ + 1129 + ] + } + ], + "insert_e_match_map_status": [ + 1148, + { + "objects": [ + 1145, + "[e_match_map_status_insert_input!]!" + ], + "on_conflict": [ + 1150 + ] + } + ], + "insert_e_match_map_status_one": [ + 1138, + { + "object": [ + 1145, + "e_match_map_status_insert_input!" + ], + "on_conflict": [ + 1150 + ] + } + ], + "insert_e_match_mode": [ + 1169, + { + "objects": [ + 1166, + "[e_match_mode_insert_input!]!" + ], + "on_conflict": [ + 1170 + ] + } + ], + "insert_e_match_mode_one": [ + 1159, + { + "object": [ + 1166, + "e_match_mode_insert_input!" + ], + "on_conflict": [ + 1170 + ] + } + ], + "insert_e_match_party_sources": [ + 1189, + { + "objects": [ + 1186, + "[e_match_party_sources_insert_input!]!" + ], + "on_conflict": [ + 1190 + ] + } + ], + "insert_e_match_party_sources_one": [ + 1179, + { + "object": [ + 1186, + "e_match_party_sources_insert_input!" + ], + "on_conflict": [ + 1190 + ] + } + ], + "insert_e_match_status": [ + 1209, + { + "objects": [ + 1206, + "[e_match_status_insert_input!]!" + ], + "on_conflict": [ + 1211 + ] + } + ], + "insert_e_match_status_one": [ + 1199, + { + "object": [ + 1206, + "e_match_status_insert_input!" + ], + "on_conflict": [ + 1211 + ] + } + ], + "insert_e_match_types": [ + 1230, + { + "objects": [ + 1227, + "[e_match_types_insert_input!]!" + ], + "on_conflict": [ + 1232 + ] + } + ], + "insert_e_match_types_one": [ + 1220, + { + "object": [ + 1227, + "e_match_types_insert_input!" + ], + "on_conflict": [ + 1232 + ] + } + ], + "insert_e_notification_types": [ + 1251, + { + "objects": [ + 1248, + "[e_notification_types_insert_input!]!" + ], + "on_conflict": [ + 1252 + ] + } + ], + "insert_e_notification_types_one": [ + 1241, + { + "object": [ + 1248, + "e_notification_types_insert_input!" + ], + "on_conflict": [ + 1252 + ] + } + ], + "insert_e_objective_types": [ + 1271, + { + "objects": [ + 1268, + "[e_objective_types_insert_input!]!" + ], + "on_conflict": [ + 1272 + ] + } + ], + "insert_e_objective_types_one": [ + 1261, + { + "object": [ + 1268, + "e_objective_types_insert_input!" + ], + "on_conflict": [ + 1272 + ] + } + ], + "insert_e_player_roles": [ + 1291, + { + "objects": [ + 1288, + "[e_player_roles_insert_input!]!" + ], + "on_conflict": [ + 1292 + ] + } + ], + "insert_e_player_roles_one": [ + 1281, + { + "object": [ + 1288, + "e_player_roles_insert_input!" + ], + "on_conflict": [ + 1292 + ] + } + ], + "insert_e_plugin_runtimes": [ + 1311, + { + "objects": [ + 1308, + "[e_plugin_runtimes_insert_input!]!" + ], + "on_conflict": [ + 1312 + ] + } + ], + "insert_e_plugin_runtimes_one": [ + 1301, + { + "object": [ + 1308, + "e_plugin_runtimes_insert_input!" + ], + "on_conflict": [ + 1312 + ] + } + ], + "insert_e_ready_settings": [ + 1331, + { + "objects": [ + 1328, + "[e_ready_settings_insert_input!]!" + ], + "on_conflict": [ + 1332 + ] + } + ], + "insert_e_ready_settings_one": [ + 1321, + { + "object": [ + 1328, + "e_ready_settings_insert_input!" + ], + "on_conflict": [ + 1332 + ] + } + ], + "insert_e_sanction_scopes": [ + 1349, + { + "objects": [ + 1346, + "[e_sanction_scopes_insert_input!]!" + ], + "on_conflict": [ + 1351 + ] + } + ], + "insert_e_sanction_scopes_one": [ + 1341, + { + "object": [ + 1346, + "e_sanction_scopes_insert_input!" + ], + "on_conflict": [ + 1351 + ] + } + ], + "insert_e_sanction_sources": [ + 1370, + { + "objects": [ + 1367, + "[e_sanction_sources_insert_input!]!" + ], + "on_conflict": [ + 1371 + ] + } + ], + "insert_e_sanction_sources_one": [ + 1360, + { + "object": [ + 1367, + "e_sanction_sources_insert_input!" + ], + "on_conflict": [ + 1371 + ] + } + ], + "insert_e_sanction_types": [ + 1397, + { + "objects": [ + 1394, + "[e_sanction_types_insert_input!]!" + ], + "on_conflict": [ + 1399 + ] + } + ], + "insert_e_sanction_types_one": [ + 1387, + { + "object": [ + 1394, + "e_sanction_types_insert_input!" + ], + "on_conflict": [ + 1399 + ] + } + ], + "insert_e_scrim_request_statuses": [ + 1418, + { + "objects": [ + 1415, + "[e_scrim_request_statuses_insert_input!]!" + ], + "on_conflict": [ + 1419 + ] + } + ], + "insert_e_scrim_request_statuses_one": [ + 1408, + { + "object": [ + 1415, + "e_scrim_request_statuses_insert_input!" + ], + "on_conflict": [ + 1419 + ] + } + ], + "insert_e_server_types": [ + 1438, + { + "objects": [ + 1435, + "[e_server_types_insert_input!]!" + ], + "on_conflict": [ + 1439 + ] + } + ], + "insert_e_server_types_one": [ + 1428, + { + "object": [ + 1435, + "e_server_types_insert_input!" + ], + "on_conflict": [ + 1439 + ] + } + ], + "insert_e_sides": [ + 1458, + { + "objects": [ + 1455, + "[e_sides_insert_input!]!" + ], + "on_conflict": [ + 1459 + ] + } + ], + "insert_e_sides_one": [ + 1448, + { + "object": [ + 1455, + "e_sides_insert_input!" + ], + "on_conflict": [ + 1459 + ] + } + ], + "insert_e_system_alert_types": [ + 1478, + { + "objects": [ + 1475, + "[e_system_alert_types_insert_input!]!" + ], + "on_conflict": [ + 1479 + ] + } + ], + "insert_e_system_alert_types_one": [ + 1468, + { + "object": [ + 1475, + "e_system_alert_types_insert_input!" + ], + "on_conflict": [ + 1479 + ] + } + ], + "insert_e_team_roles": [ + 1498, + { + "objects": [ + 1495, + "[e_team_roles_insert_input!]!" + ], + "on_conflict": [ + 1500 + ] + } + ], + "insert_e_team_roles_one": [ + 1488, + { + "object": [ + 1495, + "e_team_roles_insert_input!" + ], + "on_conflict": [ + 1500 + ] + } + ], + "insert_e_team_roster_statuses": [ + 1519, + { + "objects": [ + 1516, + "[e_team_roster_statuses_insert_input!]!" + ], + "on_conflict": [ + 1520 + ] + } + ], + "insert_e_team_roster_statuses_one": [ + 1509, + { + "object": [ + 1516, + "e_team_roster_statuses_insert_input!" + ], + "on_conflict": [ + 1520 + ] + } + ], + "insert_e_timeout_settings": [ + 1539, + { + "objects": [ + 1536, + "[e_timeout_settings_insert_input!]!" + ], + "on_conflict": [ + 1540 + ] + } + ], + "insert_e_timeout_settings_one": [ + 1529, + { + "object": [ + 1536, + "e_timeout_settings_insert_input!" + ], + "on_conflict": [ + 1540 + ] + } + ], + "insert_e_tournament_categories": [ + 1559, + { + "objects": [ + 1556, + "[e_tournament_categories_insert_input!]!" + ], + "on_conflict": [ + 1561 + ] + } + ], + "insert_e_tournament_categories_one": [ + 1549, + { + "object": [ + 1556, + "e_tournament_categories_insert_input!" + ], + "on_conflict": [ + 1561 + ] + } + ], + "insert_e_tournament_free_agent_statuses": [ + 1580, + { + "objects": [ + 1577, + "[e_tournament_free_agent_statuses_insert_input!]!" + ], + "on_conflict": [ + 1582 + ] + } + ], + "insert_e_tournament_free_agent_statuses_one": [ + 1570, + { + "object": [ + 1577, + "e_tournament_free_agent_statuses_insert_input!" + ], + "on_conflict": [ + 1582 + ] + } + ], + "insert_e_tournament_registration_types": [ + 1601, + { + "objects": [ + 1598, + "[e_tournament_registration_types_insert_input!]!" + ], + "on_conflict": [ + 1602 + ] + } + ], + "insert_e_tournament_registration_types_one": [ + 1591, + { + "object": [ + 1598, + "e_tournament_registration_types_insert_input!" + ], + "on_conflict": [ + 1602 + ] + } + ], + "insert_e_tournament_stage_types": [ + 1621, + { + "objects": [ + 1618, + "[e_tournament_stage_types_insert_input!]!" + ], + "on_conflict": [ + 1623 + ] + } + ], + "insert_e_tournament_stage_types_one": [ + 1611, + { + "object": [ + 1618, + "e_tournament_stage_types_insert_input!" + ], + "on_conflict": [ + 1623 + ] + } + ], + "insert_e_tournament_status": [ + 1642, + { + "objects": [ + 1639, + "[e_tournament_status_insert_input!]!" + ], + "on_conflict": [ + 1644 + ] + } + ], + "insert_e_tournament_status_one": [ + 1632, + { + "object": [ + 1639, + "e_tournament_status_insert_input!" + ], + "on_conflict": [ + 1644 + ] + } + ], + "insert_e_utility_practice_access": [ + 1663, + { + "objects": [ + 1660, + "[e_utility_practice_access_insert_input!]!" + ], + "on_conflict": [ + 1664 + ] + } + ], + "insert_e_utility_practice_access_one": [ + 1653, + { + "object": [ + 1660, + "e_utility_practice_access_insert_input!" + ], + "on_conflict": [ + 1664 + ] + } + ], + "insert_e_utility_practice_statuses": [ + 1683, + { + "objects": [ + 1680, + "[e_utility_practice_statuses_insert_input!]!" + ], + "on_conflict": [ + 1685 + ] + } + ], + "insert_e_utility_practice_statuses_one": [ + 1673, + { + "object": [ + 1680, + "e_utility_practice_statuses_insert_input!" + ], + "on_conflict": [ + 1685 + ] + } + ], + "insert_e_utility_sources": [ + 1704, + { + "objects": [ + 1701, + "[e_utility_sources_insert_input!]!" + ], + "on_conflict": [ + 1705 + ] + } + ], + "insert_e_utility_sources_one": [ + 1694, + { + "object": [ + 1701, + "e_utility_sources_insert_input!" + ], + "on_conflict": [ + 1705 + ] + } + ], + "insert_e_utility_techniques": [ + 1724, + { + "objects": [ + 1721, + "[e_utility_techniques_insert_input!]!" + ], + "on_conflict": [ + 1725 + ] + } + ], + "insert_e_utility_techniques_one": [ + 1714, + { + "object": [ + 1721, + "e_utility_techniques_insert_input!" + ], + "on_conflict": [ + 1725 + ] + } + ], + "insert_e_utility_throw_strengths": [ + 1744, + { + "objects": [ + 1741, + "[e_utility_throw_strengths_insert_input!]!" + ], + "on_conflict": [ + 1745 + ] + } + ], + "insert_e_utility_throw_strengths_one": [ + 1734, + { + "object": [ + 1741, + "e_utility_throw_strengths_insert_input!" + ], + "on_conflict": [ + 1745 + ] + } + ], + "insert_e_utility_types": [ + 1764, + { + "objects": [ + 1761, + "[e_utility_types_insert_input!]!" + ], + "on_conflict": [ + 1765 + ] + } + ], + "insert_e_utility_types_one": [ + 1754, + { + "object": [ + 1761, + "e_utility_types_insert_input!" + ], + "on_conflict": [ + 1765 + ] + } + ], + "insert_e_utility_visibility": [ + 1784, + { + "objects": [ + 1781, + "[e_utility_visibility_insert_input!]!" + ], + "on_conflict": [ + 1785 + ] + } + ], + "insert_e_utility_visibility_one": [ + 1774, + { + "object": [ + 1781, + "e_utility_visibility_insert_input!" + ], + "on_conflict": [ + 1785 + ] + } + ], + "insert_e_veto_pick_types": [ + 1804, + { + "objects": [ + 1801, + "[e_veto_pick_types_insert_input!]!" + ], + "on_conflict": [ + 1805 + ] + } + ], + "insert_e_veto_pick_types_one": [ + 1794, + { + "object": [ + 1801, + "e_veto_pick_types_insert_input!" + ], + "on_conflict": [ + 1805 + ] + } + ], + "insert_e_winning_reasons": [ + 1824, + { + "objects": [ + 1821, + "[e_winning_reasons_insert_input!]!" + ], + "on_conflict": [ + 1825 + ] + } + ], + "insert_e_winning_reasons_one": [ + 1814, + { + "object": [ + 1821, + "e_winning_reasons_insert_input!" + ], + "on_conflict": [ + 1825 + ] + } + ], + "insert_event_match_links": [ + 1842, + { + "objects": [ + 1839, + "[event_match_links_insert_input!]!" + ], + "on_conflict": [ + 1843 + ] + } + ], + "insert_event_match_links_one": [ + 1834, + { + "object": [ + 1839, + "event_match_links_insert_input!" + ], + "on_conflict": [ + 1843 + ] + } + ], + "insert_event_media": [ + 1869, + { + "objects": [ + 1864, + "[event_media_insert_input!]!" + ], + "on_conflict": [ + 1871 + ] + } + ], + "insert_event_media_one": [ + 1852, + { + "object": [ + 1864, + "event_media_insert_input!" + ], + "on_conflict": [ + 1871 + ] + } + ], + "insert_event_media_players": [ + 1891, + { + "objects": [ + 1886, + "[event_media_players_insert_input!]!" + ], + "on_conflict": [ + 1892 + ] + } + ], + "insert_event_media_players_one": [ + 1874, + { + "object": [ + 1886, + "event_media_players_insert_input!" + ], + "on_conflict": [ + 1892 + ] + } + ], + "insert_event_organizers": [ + 1952, + { + "objects": [ + 1947, + "[event_organizers_insert_input!]!" + ], + "on_conflict": [ + 1953 + ] + } + ], + "insert_event_organizers_one": [ + 1935, + { + "object": [ + 1947, + "event_organizers_insert_input!" + ], + "on_conflict": [ + 1953 + ] + } + ], + "insert_event_players": [ + 1993, + { + "objects": [ + 1988, + "[event_players_insert_input!]!" + ], + "on_conflict": [ + 1994 + ] + } + ], + "insert_event_players_one": [ + 1976, + { + "object": [ + 1988, + "event_players_insert_input!" + ], + "on_conflict": [ + 1994 + ] + } + ], + "insert_event_teams": [ + 2031, + { + "objects": [ + 2026, + "[event_teams_insert_input!]!" + ], + "on_conflict": [ + 2032 + ] + } + ], + "insert_event_teams_one": [ + 2017, + { + "object": [ + 2026, + "event_teams_insert_input!" + ], + "on_conflict": [ + 2032 + ] + } + ], + "insert_event_tournaments": [ + 2055, + { + "objects": [ + 2050, + "[event_tournaments_insert_input!]!" + ], + "on_conflict": [ + 2056 + ] + } + ], + "insert_event_tournaments_one": [ + 2041, + { + "object": [ + 2050, + "event_tournaments_insert_input!" + ], + "on_conflict": [ + 2056 + ] + } + ], + "insert_events": [ + 2075, + { + "objects": [ + 2072, + "[events_insert_input!]!" + ], + "on_conflict": [ + 2077 + ] + } + ], + "insert_events_one": [ + 2065, + { + "object": [ + 2072, + "events_insert_input!" + ], + "on_conflict": [ + 2077 + ] + } + ], + "insert_friends": [ + 2105, + { + "objects": [ + 2102, + "[friends_insert_input!]!" + ], + "on_conflict": [ + 2106 + ] + } + ], + "insert_friends_one": [ + 2095, + { + "object": [ + 2102, + "friends_insert_input!" + ], + "on_conflict": [ + 2106 + ] + } + ], + "insert_game_mode_plugins": [ + 2145, + { + "objects": [ + 2140, + "[game_mode_plugins_insert_input!]!" + ], + "on_conflict": [ + 2146 + ] + } + ], + "insert_game_mode_plugins_one": [ + 2122, + { + "object": [ + 2140, + "game_mode_plugins_insert_input!" + ], + "on_conflict": [ + 2146 + ] + } + ], + "insert_game_modes": [ + 2180, + { + "objects": [ + 2177, + "[game_modes_insert_input!]!" + ], + "on_conflict": [ + 2182 + ] + } + ], + "insert_game_modes_one": [ + 2172, + { + "object": [ + 2177, + "game_modes_insert_input!" + ], + "on_conflict": [ + 2182 + ] + } + ], + "insert_game_plugin_installs": [ + 2199, + { + "objects": [ + 2196, + "[game_plugin_installs_insert_input!]!" + ], + "on_conflict": [ + 2200 + ] + } + ], + "insert_game_plugin_installs_one": [ + 2191, + { + "object": [ + 2196, + "game_plugin_installs_insert_input!" + ], + "on_conflict": [ + 2200 + ] + } + ], + "insert_game_plugin_versions": [ + 2228, + { + "objects": [ + 2223, + "[game_plugin_versions_insert_input!]!" + ], + "on_conflict": [ + 2229 + ] + } + ], + "insert_game_plugin_versions_one": [ + 2209, + { + "object": [ + 2223, + "game_plugin_versions_insert_input!" + ], + "on_conflict": [ + 2229 + ] + } + ], + "insert_game_plugins": [ + 2267, + { + "objects": [ + 2264, + "[game_plugins_insert_input!]!" + ], + "on_conflict": [ + 2269 + ] + } + ], + "insert_game_plugins_one": [ + 2254, + { + "object": [ + 2264, + "game_plugins_insert_input!" + ], + "on_conflict": [ + 2269 + ] + } + ], + "insert_game_server_node_plugins": [ + 2302, + { + "objects": [ + 2297, + "[game_server_node_plugins_insert_input!]!" + ], + "on_conflict": [ + 2303 + ] + } + ], + "insert_game_server_node_plugins_one": [ + 2286, + { + "object": [ + 2297, + "game_server_node_plugins_insert_input!" + ], + "on_conflict": [ + 2303 + ] + } + ], + "insert_game_server_nodes": [ + 2337, + { + "objects": [ + 2332, + "[game_server_nodes_insert_input!]!" + ], + "on_conflict": [ + 2339 + ] + } + ], + "insert_game_server_nodes_one": [ + 2314, + { + "object": [ + 2332, + "game_server_nodes_insert_input!" + ], + "on_conflict": [ + 2339 + ] + } + ], + "insert_game_versions": [ + 2379, + { + "objects": [ + 2376, + "[game_versions_insert_input!]!" + ], + "on_conflict": [ + 2381 + ] + } + ], + "insert_game_versions_one": [ + 2365, + { + "object": [ + 2376, + "game_versions_insert_input!" + ], + "on_conflict": [ + 2381 + ] + } + ], + "insert_gamedata_signature_validations": [ + 2412, + { + "objects": [ + 2409, + "[gamedata_signature_validations_insert_input!]!" + ], + "on_conflict": [ + 2413 + ] + } + ], + "insert_gamedata_signature_validations_one": [ + 2398, + { + "object": [ + 2409, + "gamedata_signature_validations_insert_input!" + ], + "on_conflict": [ + 2413 + ] + } + ], + "insert_leaderboard_entries": [ + 2451, + { + "objects": [ + 2448, + "[leaderboard_entries_insert_input!]!" + ] + } + ], + "insert_leaderboard_entries_one": [ + 2442, + { + "object": [ + 2448, + "leaderboard_entries_insert_input!" + ] + } + ], + "insert_league_divisions": [ + 2476, + { + "objects": [ + 2473, + "[league_divisions_insert_input!]!" + ], + "on_conflict": [ + 2478 + ] + } + ], + "insert_league_divisions_one": [ + 2466, + { + "object": [ + 2473, + "league_divisions_insert_input!" + ], + "on_conflict": [ + 2478 + ] + } + ], + "insert_league_match_weeks": [ + 2511, + { + "objects": [ + 2506, + "[league_match_weeks_insert_input!]!" + ], + "on_conflict": [ + 2512 + ] + } + ], + "insert_league_match_weeks_one": [ + 2494, + { + "object": [ + 2506, + "league_match_weeks_insert_input!" + ], + "on_conflict": [ + 2512 + ] + } + ], + "insert_league_relegation_playoffs": [ + 2552, + { + "objects": [ + 2547, + "[league_relegation_playoffs_insert_input!]!" + ], + "on_conflict": [ + 2553 + ] + } + ], + "insert_league_relegation_playoffs_one": [ + 2535, + { + "object": [ + 2547, + "league_relegation_playoffs_insert_input!" + ], + "on_conflict": [ + 2553 + ] + } + ], + "insert_league_scheduling_proposals": [ + 2593, + { + "objects": [ + 2588, + "[league_scheduling_proposals_insert_input!]!" + ], + "on_conflict": [ + 2594 + ] + } + ], + "insert_league_scheduling_proposals_one": [ + 2576, + { + "object": [ + 2588, + "league_scheduling_proposals_insert_input!" + ], + "on_conflict": [ + 2594 + ] + } + ], + "insert_league_season_divisions": [ + 2631, + { + "objects": [ + 2626, + "[league_season_divisions_insert_input!]!" + ], + "on_conflict": [ + 2633 + ] + } + ], + "insert_league_season_divisions_one": [ + 2617, + { + "object": [ + 2626, + "league_season_divisions_insert_input!" + ], + "on_conflict": [ + 2633 + ] + } + ], + "insert_league_seasons": [ + 2656, + { + "objects": [ + 2653, + "[league_seasons_insert_input!]!" + ], + "on_conflict": [ + 2658 + ] + } + ], + "insert_league_seasons_one": [ + 2642, + { + "object": [ + 2653, + "league_seasons_insert_input!" + ], + "on_conflict": [ + 2658 + ] + } + ], + "insert_league_team_movements": [ + 2692, + { + "objects": [ + 2687, + "[league_team_movements_insert_input!]!" + ], + "on_conflict": [ + 2693 + ] + } + ], + "insert_league_team_movements_one": [ + 2675, + { + "object": [ + 2687, + "league_team_movements_insert_input!" + ], + "on_conflict": [ + 2693 + ] + } + ], + "insert_league_team_rosters": [ + 2733, + { + "objects": [ + 2728, + "[league_team_rosters_insert_input!]!" + ], + "on_conflict": [ + 2734 + ] + } + ], + "insert_league_team_rosters_one": [ + 2716, + { + "object": [ + 2728, + "league_team_rosters_insert_input!" + ], + "on_conflict": [ + 2734 + ] + } + ], + "insert_league_team_seasons": [ + 2774, + { + "objects": [ + 2769, + "[league_team_seasons_insert_input!]!" + ], + "on_conflict": [ + 2776 + ] + } + ], + "insert_league_team_seasons_one": [ + 2757, + { + "object": [ + 2769, + "league_team_seasons_insert_input!" + ], + "on_conflict": [ + 2776 + ] + } + ], + "insert_league_teams": [ + 2807, + { + "objects": [ + 2804, + "[league_teams_insert_input!]!" + ], + "on_conflict": [ + 2809 + ] + } + ], + "insert_league_teams_one": [ + 2799, + { + "object": [ + 2804, + "league_teams_insert_input!" + ], + "on_conflict": [ + 2809 + ] + } + ], + "insert_lobbies": [ + 2826, + { + "objects": [ + 2823, + "[lobbies_insert_input!]!" + ], + "on_conflict": [ + 2828 + ] + } + ], + "insert_lobbies_one": [ + 2818, + { + "object": [ + 2823, + "lobbies_insert_input!" + ], + "on_conflict": [ + 2828 + ] + } + ], + "insert_lobby_players": [ + 2856, + { + "objects": [ + 2851, + "[lobby_players_insert_input!]!" + ], + "on_conflict": [ + 2857 + ] + } + ], + "insert_lobby_players_one": [ + 2837, + { + "object": [ + 2851, + "lobby_players_insert_input!" + ], + "on_conflict": [ + 2857 + ] + } + ], + "insert_map_callouts": [ + 2894, + { + "objects": [ + 2891, + "[map_callouts_insert_input!]!" + ], + "on_conflict": [ + 2895 + ] + } + ], + "insert_map_callouts_one": [ + 2882, + { + "object": [ + 2891, + "map_callouts_insert_input!" + ], + "on_conflict": [ + 2895 + ] + } + ], + "insert_map_pools": [ + 2913, + { + "objects": [ + 2910, + "[map_pools_insert_input!]!" + ], + "on_conflict": [ + 2915 + ] + } + ], + "insert_map_pools_one": [ + 2905, + { + "object": [ + 2910, + "map_pools_insert_input!" + ], + "on_conflict": [ + 2915 + ] + } + ], + "insert_maps": [ + 2940, + { + "objects": [ + 2935, + "[maps_insert_input!]!" + ], + "on_conflict": [ + 2942 + ] + } + ], + "insert_maps_one": [ + 2924, + { + "object": [ + 2935, + "maps_insert_input!" + ], + "on_conflict": [ + 2942 + ] + } + ], + "insert_match_clips": [ + 2970, + { + "objects": [ + 2965, + "[match_clips_insert_input!]!" + ], + "on_conflict": [ + 2972 + ] + } + ], + "insert_match_clips_one": [ + 2953, + { + "object": [ + 2965, + "match_clips_insert_input!" + ], + "on_conflict": [ + 2972 + ] + } + ], + "insert_match_demo_sessions": [ + 3016, + { + "objects": [ + 3011, + "[match_demo_sessions_insert_input!]!" + ], + "on_conflict": [ + 3017 + ] + } + ], + "insert_match_demo_sessions_one": [ + 2995, + { + "object": [ + 3011, + "match_demo_sessions_insert_input!" + ], + "on_conflict": [ + 3017 + ] + } + ], + "insert_match_lineup_players": [ + 3060, + { + "objects": [ + 3055, + "[match_lineup_players_insert_input!]!" + ], + "on_conflict": [ + 3061 + ] + } + ], + "insert_match_lineup_players_one": [ + 3041, + { + "object": [ + 3055, + "match_lineup_players_insert_input!" + ], + "on_conflict": [ + 3061 + ] + } + ], + "insert_match_lineups": [ + 3103, + { + "objects": [ + 3098, + "[match_lineups_insert_input!]!" + ], + "on_conflict": [ + 3105 + ] + } + ], + "insert_match_lineups_one": [ + 3086, + { + "object": [ + 3098, + "match_lineups_insert_input!" + ], + "on_conflict": [ + 3105 + ] + } + ], + "insert_match_map_demos": [ + 3151, + { + "objects": [ + 3146, + "[match_map_demos_insert_input!]!" + ], + "on_conflict": [ + 3153 + ] + } + ], + "insert_match_map_demos_one": [ + 3128, + { + "object": [ + 3146, + "match_map_demos_insert_input!" + ], + "on_conflict": [ + 3153 + ] + } + ], + "insert_match_map_rounds": [ + 3196, + { + "objects": [ + 3191, + "[match_map_rounds_insert_input!]!" + ], + "on_conflict": [ + 3197 + ] + } + ], + "insert_match_map_rounds_one": [ + 3179, + { + "object": [ + 3191, + "match_map_rounds_insert_input!" + ], + "on_conflict": [ + 3197 + ] + } + ], + "insert_match_map_veto_picks": [ + 3236, + { + "objects": [ + 3231, + "[match_map_veto_picks_insert_input!]!" + ], + "on_conflict": [ + 3237 + ] + } + ], + "insert_match_map_veto_picks_one": [ + 3220, + { + "object": [ + 3231, + "match_map_veto_picks_insert_input!" + ], + "on_conflict": [ + 3237 + ] + } + ], + "insert_match_maps": [ + 3265, + { + "objects": [ + 3260, + "[match_maps_insert_input!]!" + ], + "on_conflict": [ + 3267 + ] + } + ], + "insert_match_maps_one": [ + 3248, + { + "object": [ + 3260, + "match_maps_insert_input!" + ], + "on_conflict": [ + 3267 + ] + } + ], + "insert_match_options": [ + 3309, + { + "objects": [ + 3304, + "[match_options_insert_input!]!" + ], + "on_conflict": [ + 3311 + ] + } + ], + "insert_match_options_one": [ + 3290, + { + "object": [ + 3304, + "match_options_insert_input!" + ], + "on_conflict": [ + 3311 + ] + } + ], + "insert_match_region_veto_picks": [ + 3352, + { + "objects": [ + 3347, + "[match_region_veto_picks_insert_input!]!" + ], + "on_conflict": [ + 3353 + ] + } + ], + "insert_match_region_veto_picks_one": [ + 3336, + { + "object": [ + 3347, + "match_region_veto_picks_insert_input!" + ], + "on_conflict": [ + 3353 + ] + } + ], + "insert_match_streams": [ + 3387, + { + "objects": [ + 3382, + "[match_streams_insert_input!]!" + ], + "on_conflict": [ + 3388 + ] + } + ], + "insert_match_streams_one": [ + 3364, + { + "object": [ + 3382, + "match_streams_insert_input!" + ], + "on_conflict": [ + 3388 + ] + } + ], + "insert_match_type_cfgs": [ + 3422, + { + "objects": [ + 3419, + "[match_type_cfgs_insert_input!]!" + ], + "on_conflict": [ + 3423 + ] + } + ], + "insert_match_type_cfgs_one": [ + 3414, + { + "object": [ + 3419, + "match_type_cfgs_insert_input!" + ], + "on_conflict": [ + 3423 + ] + } + ], + "insert_matches": [ + 3451, + { + "objects": [ + 3446, + "[matches_insert_input!]!" + ], + "on_conflict": [ + 3453 + ] + } + ], + "insert_matches_one": [ + 3432, + { + "object": [ + 3446, + "matches_insert_input!" + ], + "on_conflict": [ + 3453 + ] + } + ], + "insert_migration_hashes_hashes": [ + 3486, + { + "objects": [ + 3483, + "[migration_hashes_hashes_insert_input!]!" + ], + "on_conflict": [ + 3487 + ] + } + ], + "insert_migration_hashes_hashes_one": [ + 3478, + { + "object": [ + 3483, + "migration_hashes_hashes_insert_input!" + ], + "on_conflict": [ + 3487 + ] + } + ], + "insert_my_friends": [ + 3518, + { + "objects": [ + 3513, + "[my_friends_insert_input!]!" + ] + } + ], + "insert_my_friends_one": [ + 3496, + { + "object": [ + 3513, + "my_friends_insert_input!" + ] + } + ], + "insert_news_articles": [ + 3552, + { + "objects": [ + 3549, + "[news_articles_insert_input!]!" + ], + "on_conflict": [ + 3553 + ] + } + ], + "insert_news_articles_one": [ + 3542, + { + "object": [ + 3549, + "news_articles_insert_input!" + ], + "on_conflict": [ + 3553 + ] + } + ], + "insert_notification_preferences": [ + 3579, + { + "objects": [ + 3576, + "[notification_preferences_insert_input!]!" + ], + "on_conflict": [ + 3580 + ] + } + ], + "insert_notification_preferences_one": [ + 3569, + { + "object": [ + 3576, + "notification_preferences_insert_input!" + ], + "on_conflict": [ + 3580 + ] + } + ], + "insert_notifications": [ + 3619, + { + "objects": [ + 3614, + "[notifications_insert_input!]!" + ], + "on_conflict": [ + 3620 + ] + } + ], + "insert_notifications_one": [ + 3596, + { + "object": [ + 3614, + "notifications_insert_input!" + ], + "on_conflict": [ + 3620 + ] + } + ], + "insert_pending_match_import_players": [ + 3666, + { + "objects": [ + 3661, + "[pending_match_import_players_insert_input!]!" + ], + "on_conflict": [ + 3667 + ] + } + ], + "insert_pending_match_import_players_one": [ + 3649, + { + "object": [ + 3661, + "pending_match_import_players_insert_input!" + ], + "on_conflict": [ + 3667 + ] + } + ], + "insert_pending_match_imports": [ + 3700, + { + "objects": [ + 3697, + "[pending_match_imports_insert_input!]!" + ], + "on_conflict": [ + 3702 + ] + } + ], + "insert_pending_match_imports_one": [ + 3690, + { + "object": [ + 3697, + "pending_match_imports_insert_input!" + ], + "on_conflict": [ + 3702 + ] + } + ], + "insert_player_aim_stats_demo": [ + 3728, + { + "objects": [ + 3725, + "[player_aim_stats_demo_insert_input!]!" + ], + "on_conflict": [ + 3729 + ] + } + ], + "insert_player_aim_stats_demo_one": [ + 3718, + { + "object": [ + 3725, + "player_aim_stats_demo_insert_input!" + ], + "on_conflict": [ + 3729 + ] + } + ], + "insert_player_aim_weapon_stats": [ + 3762, + { + "objects": [ + 3757, + "[player_aim_weapon_stats_insert_input!]!" + ], + "on_conflict": [ + 3763 + ] + } + ], + "insert_player_aim_weapon_stats_one": [ + 3745, + { + "object": [ + 3757, + "player_aim_weapon_stats_insert_input!" + ], + "on_conflict": [ + 3763 + ] + } + ], + "insert_player_assists": [ + 3805, + { + "objects": [ + 3800, + "[player_assists_insert_input!]!" + ], + "on_conflict": [ + 3806 + ] + } + ], + "insert_player_assists_one": [ + 3786, + { + "object": [ + 3800, + "player_assists_insert_input!" + ], + "on_conflict": [ + 3806 + ] + } + ], + "insert_player_damages": [ + 3866, + { + "objects": [ + 3861, + "[player_damages_insert_input!]!" + ], + "on_conflict": [ + 3867 + ] + } + ], + "insert_player_damages_one": [ + 3849, + { + "object": [ + 3861, + "player_damages_insert_input!" + ], + "on_conflict": [ + 3867 + ] + } + ], + "insert_player_elo": [ + 3900, + { + "objects": [ + 3897, + "[player_elo_insert_input!]!" + ], + "on_conflict": [ + 3901 + ] + } + ], + "insert_player_elo_one": [ + 3890, + { + "object": [ + 3897, + "player_elo_insert_input!" + ], + "on_conflict": [ + 3901 + ] + } + ], + "insert_player_faceit_rank_history": [ + 3934, + { + "objects": [ + 3929, + "[player_faceit_rank_history_insert_input!]!" + ], + "on_conflict": [ + 3935 + ] + } + ], + "insert_player_faceit_rank_history_one": [ + 3917, + { + "object": [ + 3929, + "player_faceit_rank_history_insert_input!" + ], + "on_conflict": [ + 3935 + ] + } + ], + "insert_player_flashes": [ + 3977, + { + "objects": [ + 3972, + "[player_flashes_insert_input!]!" + ], + "on_conflict": [ + 3978 + ] + } + ], + "insert_player_flashes_one": [ + 3958, + { + "object": [ + 3972, + "player_flashes_insert_input!" + ], + "on_conflict": [ + 3978 + ] + } + ], + "insert_player_kills": [ + 4063, + { + "objects": [ + 4058, + "[player_kills_insert_input!]!" + ], + "on_conflict": [ + 4064 + ] + } + ], + "insert_player_kills_by_weapon": [ + 4032, + { + "objects": [ + 4027, + "[player_kills_by_weapon_insert_input!]!" + ], + "on_conflict": [ + 4033 + ] + } + ], + "insert_player_kills_by_weapon_one": [ + 4015, + { + "object": [ + 4027, + "player_kills_by_weapon_insert_input!" + ], + "on_conflict": [ + 4033 + ] + } + ], + "insert_player_kills_one": [ + 4003, + { + "object": [ + 4058, + "player_kills_insert_input!" + ], + "on_conflict": [ + 4064 + ] + } + ], + "insert_player_leaderboard_rank": [ + 4098, + { + "objects": [ + 4095, + "[player_leaderboard_rank_insert_input!]!" + ] + } + ], + "insert_player_leaderboard_rank_one": [ + 4089, + { + "object": [ + 4095, + "player_leaderboard_rank_insert_input!" + ] + } + ], + "insert_player_match_map_stats": [ + 4129, + { + "objects": [ + 4124, + "[player_match_map_stats_insert_input!]!" + ], + "on_conflict": [ + 4130 + ] + } + ], + "insert_player_match_map_stats_one": [ + 4112, + { + "object": [ + 4124, + "player_match_map_stats_insert_input!" + ], + "on_conflict": [ + 4130 + ] + } + ], + "insert_player_objectives": [ + 4221, + { + "objects": [ + 4216, + "[player_objectives_insert_input!]!" + ], + "on_conflict": [ + 4222 + ] + } + ], + "insert_player_objectives_one": [ + 4204, + { + "object": [ + 4216, + "player_objectives_insert_input!" + ], + "on_conflict": [ + 4222 + ] + } + ], + "insert_player_premier_rank_history": [ + 4280, + { + "objects": [ + 4275, + "[player_premier_rank_history_insert_input!]!" + ], + "on_conflict": [ + 4281 + ] + } + ], + "insert_player_premier_rank_history_one": [ + 4263, + { + "object": [ + 4275, + "player_premier_rank_history_insert_input!" + ], + "on_conflict": [ + 4281 + ] + } + ], + "insert_player_sanctions": [ + 4321, + { + "objects": [ + 4316, + "[player_sanctions_insert_input!]!" + ], + "on_conflict": [ + 4322 + ] + } + ], + "insert_player_sanctions_one": [ + 4304, + { + "object": [ + 4316, + "player_sanctions_insert_input!" + ], + "on_conflict": [ + 4322 + ] + } + ], + "insert_player_season_stats": [ + 4372, + { + "objects": [ + 4367, + "[player_season_stats_insert_input!]!" + ], + "on_conflict": [ + 4373 + ] + } + ], + "insert_player_season_stats_one": [ + 4345, + { + "object": [ + 4367, + "player_season_stats_insert_input!" + ], + "on_conflict": [ + 4373 + ] + } + ], + "insert_player_stats": [ + 4414, + { + "objects": [ + 4411, + "[player_stats_insert_input!]!" + ], + "on_conflict": [ + 4416 + ] + } + ], + "insert_player_stats_one": [ + 4404, + { + "object": [ + 4411, + "player_stats_insert_input!" + ], + "on_conflict": [ + 4416 + ] + } + ], + "insert_player_steam_bot_friend": [ + 4446, + { + "objects": [ + 4443, + "[player_steam_bot_friend_insert_input!]!" + ], + "on_conflict": [ + 4447 + ] + } + ], + "insert_player_steam_bot_friend_one": [ + 4432, + { + "object": [ + 4443, + "player_steam_bot_friend_insert_input!" + ], + "on_conflict": [ + 4447 + ] + } + ], + "insert_player_steam_match_auth": [ + 4474, + { + "objects": [ + 4471, + "[player_steam_match_auth_insert_input!]!" + ], + "on_conflict": [ + 4475 + ] + } + ], + "insert_player_steam_match_auth_one": [ + 4464, + { + "object": [ + 4471, + "player_steam_match_auth_insert_input!" + ], + "on_conflict": [ + 4475 + ] + } + ], + "insert_player_unused_utility": [ + 4508, + { + "objects": [ + 4503, + "[player_unused_utility_insert_input!]!" + ], + "on_conflict": [ + 4509 + ] + } + ], + "insert_player_unused_utility_one": [ + 4491, + { + "object": [ + 4503, + "player_unused_utility_insert_input!" + ], + "on_conflict": [ + 4509 + ] + } + ], + "insert_player_utility": [ + 4549, + { + "objects": [ + 4544, + "[player_utility_insert_input!]!" + ], + "on_conflict": [ + 4550 + ] + } + ], + "insert_player_utility_one": [ + 4532, + { + "object": [ + 4544, + "player_utility_insert_input!" + ], + "on_conflict": [ + 4550 + ] + } + ], + "insert_players": [ + 4616, + { + "objects": [ + 4613, + "[players_insert_input!]!" + ], + "on_conflict": [ + 4618 + ] + } + ], + "insert_players_one": [ + 4606, + { + "object": [ + 4613, + "players_insert_input!" + ], + "on_conflict": [ + 4618 + ] + } + ], + "insert_plugin_versions": [ + 4644, + { + "objects": [ + 4641, + "[plugin_versions_insert_input!]!" + ], + "on_conflict": [ + 4645 + ] + } + ], + "insert_plugin_versions_one": [ + 4634, + { + "object": [ + 4641, + "plugin_versions_insert_input!" + ], + "on_conflict": [ + 4645 + ] + } + ], + "insert_push_subscriptions": [ + 4671, + { + "objects": [ + 4668, + "[push_subscriptions_insert_input!]!" + ], + "on_conflict": [ + 4672 + ] + } + ], + "insert_push_subscriptions_one": [ + 4661, + { + "object": [ + 4668, + "push_subscriptions_insert_input!" + ], + "on_conflict": [ + 4672 + ] + } + ], + "insert_role_permissions": [ + 4699, + { + "objects": [ + 4696, + "[role_permissions_insert_input!]!" + ] + } + ], + "insert_role_permissions_one": [ + 4692, + { + "object": [ + 4696, + "role_permissions_insert_input!" + ] + } + ], + "insert_seasons": [ + 4716, + { + "objects": [ + 4713, + "[seasons_insert_input!]!" + ], + "on_conflict": [ + 4718 + ] + } + ], + "insert_seasons_one": [ + 4706, + { + "object": [ + 4713, + "seasons_insert_input!" + ], + "on_conflict": [ + 4718 + ] + } + ], + "insert_server_regions": [ + 4743, + { + "objects": [ + 4740, + "[server_regions_insert_input!]!" + ], + "on_conflict": [ + 4745 + ] + } + ], + "insert_server_regions_one": [ + 4734, + { + "object": [ + 4740, + "server_regions_insert_input!" + ], + "on_conflict": [ + 4745 + ] + } + ], + "insert_servers": [ + 4784, + { + "objects": [ + 4779, + "[servers_insert_input!]!" + ], + "on_conflict": [ + 4786 + ] + } + ], + "insert_servers_one": [ + 4761, + { + "object": [ + 4779, + "servers_insert_input!" + ], + "on_conflict": [ + 4786 + ] + } + ], + "insert_settings": [ + 4820, + { + "objects": [ + 4817, + "[settings_insert_input!]!" + ], + "on_conflict": [ + 4821 + ] + } + ], + "insert_settings_one": [ + 4812, + { + "object": [ + 4817, + "settings_insert_input!" + ], + "on_conflict": [ + 4821 + ] + } + ], + "insert_steam_account_claims": [ + 4846, + { + "objects": [ + 4841, + "[steam_account_claims_insert_input!]!" + ], + "on_conflict": [ + 4847 + ] + } + ], + "insert_steam_account_claims_one": [ + 4832, + { + "object": [ + 4841, + "steam_account_claims_insert_input!" + ], + "on_conflict": [ + 4847 + ] + } + ], + "insert_steam_accounts": [ + 4866, + { + "objects": [ + 4863, + "[steam_accounts_insert_input!]!" + ], + "on_conflict": [ + 4868 + ] + } + ], + "insert_steam_accounts_one": [ + 4856, + { + "object": [ + 4863, + "steam_accounts_insert_input!" + ], + "on_conflict": [ + 4868 + ] + } + ], + "insert_system_alerts": [ + 4894, + { + "objects": [ + 4891, + "[system_alerts_insert_input!]!" + ], + "on_conflict": [ + 4895 + ] + } + ], + "insert_system_alerts_one": [ + 4884, + { + "object": [ + 4891, + "system_alerts_insert_input!" + ], + "on_conflict": [ + 4895 + ] + } + ], + "insert_team_invites": [ + 4928, + { + "objects": [ + 4923, + "[team_invites_insert_input!]!" + ], + "on_conflict": [ + 4929 + ] + } + ], + "insert_team_invites_one": [ + 4911, + { + "object": [ + 4923, + "team_invites_insert_input!" + ], + "on_conflict": [ + 4929 + ] + } + ], + "insert_team_roster": [ + 4971, + { + "objects": [ + 4966, + "[team_roster_insert_input!]!" + ], + "on_conflict": [ + 4972 + ] + } + ], + "insert_team_roster_one": [ + 4952, + { + "object": [ + 4966, + "team_roster_insert_input!" + ], + "on_conflict": [ + 4972 + ] + } + ], + "insert_team_scrim_alerts": [ + 5007, + { + "objects": [ + 5004, + "[team_scrim_alerts_insert_input!]!" + ], + "on_conflict": [ + 5008 + ] + } + ], + "insert_team_scrim_alerts_one": [ + 4997, + { + "object": [ + 5004, + "team_scrim_alerts_insert_input!" + ], + "on_conflict": [ + 5008 + ] + } + ], + "insert_team_scrim_availability": [ + 5040, + { + "objects": [ + 5035, + "[team_scrim_availability_insert_input!]!" + ], + "on_conflict": [ + 5041 + ] + } + ], + "insert_team_scrim_availability_one": [ + 5024, + { + "object": [ + 5035, + "team_scrim_availability_insert_input!" + ], + "on_conflict": [ + 5041 + ] + } + ], + "insert_team_scrim_request_proposals": [ + 5069, + { + "objects": [ + 5064, + "[team_scrim_request_proposals_insert_input!]!" + ], + "on_conflict": [ + 5070 + ] + } + ], + "insert_team_scrim_request_proposals_one": [ + 5052, + { + "object": [ + 5064, + "team_scrim_request_proposals_insert_input!" + ], + "on_conflict": [ + 5070 + ] + } + ], + "insert_team_scrim_requests": [ + 5112, + { + "objects": [ + 5107, + "[team_scrim_requests_insert_input!]!" + ], + "on_conflict": [ + 5114 + ] + } + ], + "insert_team_scrim_requests_one": [ + 5093, + { + "object": [ + 5107, + "team_scrim_requests_insert_input!" + ], + "on_conflict": [ + 5114 + ] + } + ], + "insert_team_scrim_settings": [ + 5149, + { + "objects": [ + 5146, + "[team_scrim_settings_insert_input!]!" + ], + "on_conflict": [ + 5151 + ] + } + ], + "insert_team_scrim_settings_one": [ + 5139, + { + "object": [ + 5146, + "team_scrim_settings_insert_input!" + ], + "on_conflict": [ + 5151 + ] + } + ], + "insert_team_suggestions": [ + 5177, + { + "objects": [ + 5174, + "[team_suggestions_insert_input!]!" + ], + "on_conflict": [ + 5178 + ] + } + ], + "insert_team_suggestions_one": [ + 5167, + { + "object": [ + 5174, + "team_suggestions_insert_input!" + ], + "on_conflict": [ + 5178 + ] + } + ], + "insert_teams": [ + 5213, + { + "objects": [ + 5208, + "[teams_insert_input!]!" + ], + "on_conflict": [ + 5215 + ] + } + ], + "insert_teams_one": [ + 5194, + { + "object": [ + 5208, + "teams_insert_input!" + ], + "on_conflict": [ + 5215 + ] + } + ], + "insert_tournament_awards": [ + 5262, + { + "objects": [ + 5257, + "[tournament_awards_insert_input!]!" + ], + "on_conflict": [ + 5264 + ] + } + ], + "insert_tournament_awards_one": [ + 5245, + { + "object": [ + 5257, + "tournament_awards_insert_input!" + ], + "on_conflict": [ + 5264 + ] + } + ], + "insert_tournament_brackets": [ + 5306, + { + "objects": [ + 5301, + "[tournament_brackets_insert_input!]!" + ], + "on_conflict": [ + 5308 + ] + } + ], + "insert_tournament_brackets_one": [ + 5287, + { + "object": [ + 5301, + "tournament_brackets_insert_input!" + ], + "on_conflict": [ + 5308 + ] + } + ], + "insert_tournament_categories": [ + 5347, + { + "objects": [ + 5342, + "[tournament_categories_insert_input!]!" + ], + "on_conflict": [ + 5348 + ] + } + ], + "insert_tournament_categories_one": [ + 5333, + { + "object": [ + 5342, + "tournament_categories_insert_input!" + ], + "on_conflict": [ + 5348 + ] + } + ], + "insert_tournament_free_agents": [ + 5374, + { + "objects": [ + 5369, + "[tournament_free_agents_insert_input!]!" + ], + "on_conflict": [ + 5375 + ] + } + ], + "insert_tournament_free_agents_one": [ + 5357, + { + "object": [ + 5369, + "tournament_free_agents_insert_input!" + ], + "on_conflict": [ + 5375 + ] + } + ], + "insert_tournament_invite_code_uses": [ + 5415, + { + "objects": [ + 5410, + "[tournament_invite_code_uses_insert_input!]!" + ], + "on_conflict": [ + 5416 + ] + } + ], + "insert_tournament_invite_code_uses_one": [ + 5398, + { + "object": [ + 5410, + "tournament_invite_code_uses_insert_input!" + ], + "on_conflict": [ + 5416 + ] + } + ], + "insert_tournament_invite_codes": [ + 5449, + { + "objects": [ + 5446, + "[tournament_invite_codes_insert_input!]!" + ], + "on_conflict": [ + 5451 + ] + } + ], + "insert_tournament_invite_codes_one": [ + 5439, + { + "object": [ + 5446, + "tournament_invite_codes_insert_input!" + ], + "on_conflict": [ + 5451 + ] + } + ], + "insert_tournament_invites": [ + 5477, + { + "objects": [ + 5474, + "[tournament_invites_insert_input!]!" + ], + "on_conflict": [ + 5478 + ] + } + ], + "insert_tournament_invites_one": [ + 5467, + { + "object": [ + 5474, + "tournament_invites_insert_input!" + ], + "on_conflict": [ + 5478 + ] + } + ], + "insert_tournament_leaderboard_entries": [ + 5503, + { + "objects": [ + 5500, + "[tournament_leaderboard_entries_insert_input!]!" + ] + } + ], + "insert_tournament_leaderboard_entries_one": [ + 5494, + { + "object": [ + 5500, + "tournament_leaderboard_entries_insert_input!" + ] + } + ], + "insert_tournament_no_shows": [ + 5527, + { + "objects": [ + 5524, + "[tournament_no_shows_insert_input!]!" + ], + "on_conflict": [ + 5528 + ] + } + ], + "insert_tournament_no_shows_one": [ + 5517, + { + "object": [ + 5524, + "tournament_no_shows_insert_input!" + ], + "on_conflict": [ + 5528 + ] + } + ], + "insert_tournament_organizer_teams": [ + 5558, + { + "objects": [ + 5553, + "[tournament_organizer_teams_insert_input!]!" + ], + "on_conflict": [ + 5559 + ] + } + ], + "insert_tournament_organizer_teams_one": [ + 5544, + { + "object": [ + 5553, + "tournament_organizer_teams_insert_input!" + ], + "on_conflict": [ + 5559 + ] + } + ], + "insert_tournament_organizers": [ + 5585, + { + "objects": [ + 5580, + "[tournament_organizers_insert_input!]!" + ], + "on_conflict": [ + 5586 + ] + } + ], + "insert_tournament_organizers_one": [ + 5568, + { + "object": [ + 5580, + "tournament_organizers_insert_input!" + ], + "on_conflict": [ + 5586 + ] + } + ], + "insert_tournament_prizes": [ + 5626, + { + "objects": [ + 5621, + "[tournament_prizes_insert_input!]!" + ], + "on_conflict": [ + 5627 + ] + } + ], + "insert_tournament_prizes_one": [ + 5609, + { + "object": [ + 5621, + "tournament_prizes_insert_input!" + ], + "on_conflict": [ + 5627 + ] + } + ], + "insert_tournament_registration_unlocks": [ + 5660, + { + "objects": [ + 5657, + "[tournament_registration_unlocks_insert_input!]!" + ], + "on_conflict": [ + 5661 + ] + } + ], + "insert_tournament_registration_unlocks_one": [ + 5650, + { + "object": [ + 5657, + "tournament_registration_unlocks_insert_input!" + ], + "on_conflict": [ + 5661 + ] + } + ], + "insert_tournament_stage_windows": [ + 5693, + { + "objects": [ + 5688, + "[tournament_stage_windows_insert_input!]!" + ], + "on_conflict": [ + 5694 + ] + } + ], + "insert_tournament_stage_windows_one": [ + 5676, + { + "object": [ + 5688, + "tournament_stage_windows_insert_input!" + ], + "on_conflict": [ + 5694 + ] + } + ], + "insert_tournament_stages": [ + 5740, + { + "objects": [ + 5735, + "[tournament_stages_insert_input!]!" + ], + "on_conflict": [ + 5742 + ] + } + ], + "insert_tournament_stages_one": [ + 5717, + { + "object": [ + 5735, + "tournament_stages_insert_input!" + ], + "on_conflict": [ + 5742 + ] + } + ], + "insert_tournament_team_invites": [ + 5785, + { + "objects": [ + 5780, + "[tournament_team_invites_insert_input!]!" + ], + "on_conflict": [ + 5786 + ] + } + ], + "insert_tournament_team_invites_one": [ + 5768, + { + "object": [ + 5780, + "tournament_team_invites_insert_input!" + ], + "on_conflict": [ + 5786 + ] + } + ], + "insert_tournament_team_roster": [ + 5826, + { + "objects": [ + 5821, + "[tournament_team_roster_insert_input!]!" + ], + "on_conflict": [ + 5827 + ] + } + ], + "insert_tournament_team_roster_one": [ + 5809, + { + "object": [ + 5821, + "tournament_team_roster_insert_input!" + ], + "on_conflict": [ + 5827 + ] + } + ], + "insert_tournament_teams": [ + 5869, + { + "objects": [ + 5864, + "[tournament_teams_insert_input!]!" + ], + "on_conflict": [ + 5871 + ] + } + ], + "insert_tournament_teams_one": [ + 5850, + { + "object": [ + 5864, + "tournament_teams_insert_input!" + ], + "on_conflict": [ + 5871 + ] + } + ], + "insert_tournaments": [ + 5925, + { + "objects": [ + 5920, + "[tournaments_insert_input!]!" + ], + "on_conflict": [ + 5927 + ] + } + ], + "insert_tournaments_one": [ + 5896, + { + "object": [ + 5920, + "tournaments_insert_input!" + ], + "on_conflict": [ + 5927 + ] + } + ], + "insert_utility_collection_items": [ + 5977, + { + "objects": [ + 5972, + "[utility_collection_items_insert_input!]!" + ], + "on_conflict": [ + 5978 + ] + } + ], + "insert_utility_collection_items_one": [ + 5960, + { + "object": [ + 5972, + "utility_collection_items_insert_input!" + ], + "on_conflict": [ + 5978 + ] + } + ], + "insert_utility_collections": [ + 6011, + { + "objects": [ + 6008, + "[utility_collections_insert_input!]!" + ], + "on_conflict": [ + 6013 + ] + } + ], + "insert_utility_collections_one": [ + 6001, + { + "object": [ + 6008, + "utility_collections_insert_input!" + ], + "on_conflict": [ + 6013 + ] + } + ], + "insert_utility_demo_mines": [ + 6039, + { + "objects": [ + 6036, + "[utility_demo_mines_insert_input!]!" + ], + "on_conflict": [ + 6040 + ] + } + ], + "insert_utility_demo_mines_one": [ + 6029, + { + "object": [ + 6036, + "utility_demo_mines_insert_input!" + ], + "on_conflict": [ + 6040 + ] + } + ], + "insert_utility_demo_throws": [ + 6066, + { + "objects": [ + 6063, + "[utility_demo_throws_insert_input!]!" + ], + "on_conflict": [ + 6067 + ] + } + ], + "insert_utility_demo_throws_one": [ + 6056, + { + "object": [ + 6063, + "utility_demo_throws_insert_input!" + ], + "on_conflict": [ + 6067 + ] + } + ], + "insert_utility_drift_results": [ + 6110, + { + "objects": [ + 6105, + "[utility_drift_results_insert_input!]!" + ], + "on_conflict": [ + 6111 + ] + } + ], + "insert_utility_drift_results_one": [ + 6083, + { + "object": [ + 6105, + "utility_drift_results_insert_input!" + ], + "on_conflict": [ + 6111 + ] + } + ], + "insert_utility_drift_scans": [ + 6152, + { + "objects": [ + 6149, + "[utility_drift_scans_insert_input!]!" + ], + "on_conflict": [ + 6154 + ] + } + ], + "insert_utility_drift_scans_one": [ + 6142, + { + "object": [ + 6149, + "utility_drift_scans_insert_input!" + ], + "on_conflict": [ + 6154 + ] + } + ], + "insert_utility_lineup_favorites": [ + 6187, + { + "objects": [ + 6182, + "[utility_lineup_favorites_insert_input!]!" + ], + "on_conflict": [ + 6188 + ] + } + ], + "insert_utility_lineup_favorites_one": [ + 6170, + { + "object": [ + 6182, + "utility_lineup_favorites_insert_input!" + ], + "on_conflict": [ + 6188 + ] + } + ], + "insert_utility_lineup_progress": [ + 6238, + { + "objects": [ + 6233, + "[utility_lineup_progress_insert_input!]!" + ], + "on_conflict": [ + 6239 + ] + } + ], + "insert_utility_lineup_progress_one": [ + 6211, + { + "object": [ + 6233, + "utility_lineup_progress_insert_input!" + ], + "on_conflict": [ + 6239 + ] + } + ], + "insert_utility_lineup_renders": [ + 6293, + { + "objects": [ + 6288, + "[utility_lineup_renders_insert_input!]!" + ], + "on_conflict": [ + 6294 + ] + } + ], + "insert_utility_lineup_renders_one": [ + 6270, + { + "object": [ + 6288, + "utility_lineup_renders_insert_input!" + ], + "on_conflict": [ + 6294 + ] + } + ], + "insert_utility_lineup_repairs": [ + 6347, + { + "objects": [ + 6342, + "[utility_lineup_repairs_insert_input!]!" + ], + "on_conflict": [ + 6348 + ] + } + ], + "insert_utility_lineup_repairs_one": [ + 6320, + { + "object": [ + 6342, + "utility_lineup_repairs_insert_input!" + ], + "on_conflict": [ + 6348 + ] + } + ], + "insert_utility_lineup_votes": [ + 6396, + { + "objects": [ + 6391, + "[utility_lineup_votes_insert_input!]!" + ], + "on_conflict": [ + 6397 + ] + } + ], + "insert_utility_lineup_votes_one": [ + 6379, + { + "object": [ + 6391, + "utility_lineup_votes_insert_input!" + ], + "on_conflict": [ + 6397 + ] + } + ], + "insert_utility_lineups": [ + 6453, + { + "objects": [ + 6448, + "[utility_lineups_insert_input!]!" + ], + "on_conflict": [ + 6455 + ] + } + ], + "insert_utility_lineups_one": [ + 6420, + { + "object": [ + 6448, + "utility_lineups_insert_input!" + ], + "on_conflict": [ + 6455 + ] + } + ], + "insert_utility_meta_lineups": [ + 6499, + { + "objects": [ + 6496, + "[utility_meta_lineups_insert_input!]!" + ], + "on_conflict": [ + 6500 + ] + } + ], + "insert_utility_meta_lineups_one": [ + 6489, + { + "object": [ + 6496, + "utility_meta_lineups_insert_input!" + ], + "on_conflict": [ + 6500 + ] + } + ], + "insert_utility_playbook_steps": [ + 6533, + { + "objects": [ + 6528, + "[utility_playbook_steps_insert_input!]!" + ], + "on_conflict": [ + 6534 + ] + } + ], + "insert_utility_playbook_steps_one": [ + 6516, + { + "object": [ + 6528, + "utility_playbook_steps_insert_input!" + ], + "on_conflict": [ + 6534 + ] + } + ], + "insert_utility_playbooks": [ + 6567, + { + "objects": [ + 6564, + "[utility_playbooks_insert_input!]!" + ], + "on_conflict": [ + 6569 + ] + } + ], + "insert_utility_playbooks_one": [ + 6557, + { + "object": [ + 6564, + "utility_playbooks_insert_input!" + ], + "on_conflict": [ + 6569 + ] + } + ], + "insert_utility_practice_invites": [ + 6602, + { + "objects": [ + 6597, + "[utility_practice_invites_insert_input!]!" + ], + "on_conflict": [ + 6603 + ] + } + ], + "insert_utility_practice_invites_one": [ + 6585, + { + "object": [ + 6597, + "utility_practice_invites_insert_input!" + ], + "on_conflict": [ + 6603 + ] + } + ], + "insert_utility_practice_sessions": [ + 6645, + { + "objects": [ + 6640, + "[utility_practice_sessions_insert_input!]!" + ], + "on_conflict": [ + 6647 + ] + } + ], + "insert_utility_practice_sessions_one": [ + 6626, + { + "object": [ + 6640, + "utility_practice_sessions_insert_input!" + ], + "on_conflict": [ + 6647 + ] + } + ], + "insert_v_match_captains": [ + 6837, + { + "objects": [ + 6834, + "[v_match_captains_insert_input!]!" + ] + } + ], + "insert_v_match_captains_one": [ + 6828, + { + "object": [ + 6834, + "v_match_captains_insert_input!" + ] + } + ], + "insert_v_match_map_backup_rounds": [ + 6948, + { + "objects": [ + 6945, + "[v_match_map_backup_rounds_insert_input!]!" + ] + } + ], + "insert_v_match_map_backup_rounds_one": [ + 6939, + { + "object": [ + 6945, + "v_match_map_backup_rounds_insert_input!" + ] + } + ], + "insert_v_player_match_map_hltv": [ + 7170, + { + "objects": [ + 7165, + "[v_player_match_map_hltv_insert_input!]!" + ] + } + ], + "insert_v_player_match_map_hltv_one": [ + 7154, + { + "object": [ + 7165, + "v_player_match_map_hltv_insert_input!" + ] + } + ], + "insert_v_pool_maps": [ + 7347, + { + "objects": [ + 7342, + "[v_pool_maps_insert_input!]!" + ] + } + ], + "insert_v_pool_maps_one": [ + 7332, + { + "object": [ + 7342, + "v_pool_maps_insert_input!" + ] + } + ], + "insert_v_team_stage_results": [ + 7441, + { + "objects": [ + 7436, + "[v_team_stage_results_insert_input!]!" + ], + "on_conflict": [ + 7443 + ] + } + ], + "insert_v_team_stage_results_one": [ + 7414, + { + "object": [ + 7436, + "v_team_stage_results_insert_input!" + ], + "on_conflict": [ + 7443 + ] + } + ], + "installGamePlugin": [ + 88, + { + "slug": [ + 85, + "String!" + ], + "version": [ + 85 + ] + } + ], + "inviteToUtilityPractice": [ + 88, + { + "session_id": [ + 6672, + "uuid!" + ], + "steam_ids": [ + 85, + "[String!]!" + ] + } + ], + "joinDraftGame": [ + 88, + { + "draftGameId": [ + 6672, + "uuid!" + ], + "inviteCode": [ + 85 + ] + } + ], + "joinDraftGameAsParty": [ + 88, + { + "draftGameId": [ + 6672, + "uuid!" + ], + "inviteCode": [ + 85 + ] + } + ], + "joinTournamentAsFreeAgent": [ + 88, + { + "tournament_id": [ + 6672, + "uuid!" + ], + "with_party": [ + 6 + ] + } + ], + "joinUtilityPractice": [ + 137, + { + "invite_code": [ + 85 + ], + "session_id": [ + 6672 + ] + } + ], + "kickServerPlayer": [ + 43, + { + "reason": [ + 85 + ], + "serverId": [ + 85, + "String!" + ], + "steam_id": [ + 85, + "String!" + ] + } + ], + "league_award_forfeit": [ + 3432, + { + "args": [ + 2465, + "league_award_forfeit_args!" + ], + "distinct_on": [ + 3456, + "[matches_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3454, + "[matches_order_by!]" + ], + "where": [ + 3443 + ] + } + ], + "leaveLineup": [ + 88, + { + "match_id": [ + 85, + "String!" + ] + } + ], + "leaveTournamentAsFreeAgent": [ + 88, + { + "tournament_id": [ + 6672, + "uuid!" + ] + } + ], + "leaveUtilityPractice": [ + 88, + { + "session_id": [ + 6672, + "uuid!" + ] + } + ], + "linkSteamMatchHistory": [ + 77, + { + "auth_code": [ + 85, + "String!" + ], + "share_code": [ + 85, + "String!" + ] + } + ], + "loadFixtures": [ + 88 + ], + "loadUtilityPlaybookIntoSession": [ + 88, + { + "playbook_id": [ + 6672 + ], + "session_id": [ + 6672, + "uuid!" + ] + } + ], + "logout": [ + 88 + ], + "moveServerItem": [ + 88, + { + "dest_path": [ + 85, + "String!" + ], + "node_id": [ + 85, + "String!" + ], + "server_id": [ + 85 + ], + "source_path": [ + 85, + "String!" + ] + } + ], + "orphanedDemosScanResult": [ + 56 + ], + "pauseClipRenderBatch": [ + 88, + { + "match_map_id": [ + 6672, + "uuid!" + ] + } + ], + "pollSteamMatchHistory": [ + 78 + ], + "previewDraftGame": [ + 25, + { + "draftGameId": [ + 6672, + "uuid!" + ], + "inviteCode": [ + 85 + ] + } + ], + "previewGameMode": [ + 60, + { + "gameModeId": [ + 6672, + "uuid!" + ] + } + ], + "purgeUtilityLineupSource": [ + 139, + { + "dry_run": [ + 6 + ], + "origin_source": [ + 85, + "String!" + ] + } + ], + "queueClipFromPreset": [ + 16, + { + "fps": [ + 41 + ], + "match_map_id": [ + 6672, + "uuid!" + ], + "preset": [ + 85, + "String!" + ], + "resolution": [ + 85 + ], + "target_name": [ + 85 + ], + "target_steam_id": [ + 85, + "String!" + ], + "title": [ + 85 + ] + } + ], + "randomizeTeams": [ + 88, + { + "match_id": [ + 6672, + "uuid!" + ] + } + ], + "readmitTournamentTeam": [ + 88, + { + "tournament_id": [ + 6672, + "uuid!" + ], + "tournament_team_id": [ + 6672, + "uuid!" + ] + } + ], + "rebootMatchServer": [ + 88, + { + "match_id": [ + 6672, + "uuid!" + ] + } + ], + "recalculate_tournament_awards": [ + 243, + { + "args": [ + 4688, + "recalculate_tournament_awards_args!" + ], + "distinct_on": [ + 264, + "[award_recipients_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 262, + "[award_recipients_order_by!]" + ], + "where": [ + 252 + ] + } + ], + "recomputePlayerElo": [ + 64 + ], + "recomputePlayerEloStatus": [ + 65 + ], + "reconcileNodePlugins": [ + 66, + { + "nodeId": [ + 85, + "String!" + ] + } + ], + "reconnectLive": [ + 88, + { + "match_id": [ + 6672, + "uuid!" + ] + } + ], + "redeemTournamentInviteCode": [ + 88, + { + "code": [ + 85, + "String!" + ], + "tournament_id": [ + 6672, + "uuid!" + ] + } + ], + "refreshAllPlayers": [ + 67 + ], + "refreshAllPlayersStatus": [ + 68 + ], + "refreshFaceitRank": [ + 88, + { + "steam_id": [ + 85, + "String!" + ] + } + ], + "refreshLiveHud": [ + 88, + { + "match_id": [ + 6672, + "uuid!" + ] + } + ], + "registerName": [ + 88, + { + "name": [ + 85, + "String!" + ] + } + ], + "remineUtilityMeta": [ + 140 + ], + "removeFixtures": [ + 88 + ], + "removeSteamPresenceBotAccount": [ + 88, + { + "account_id": [ + 85, + "String!" + ] + } + ], + "remove_league_team_from_season": [ + 2757, + { + "args": [ + 4689, + "remove_league_team_from_season_args!" + ], + "distinct_on": [ + 2779, + "[league_team_seasons_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2777, + "[league_team_seasons_order_by!]" + ], + "where": [ + 2766 + ] + } + ], + "renameServerItem": [ + 88, + { + "new_path": [ + 85, + "String!" + ], + "node_id": [ + 85, + "String!" + ], + "old_path": [ + 85, + "String!" + ], + "server_id": [ + 85 + ] + } + ], + "renderUtilityLineupPreview": [ + 142, + { + "utility_lineup_id": [ + 6672, + "uuid!" + ] + } + ], + "reorder_league_divisions": [ + 2466, + { + "args": [ + 4690, + "reorder_league_divisions_args!" + ], + "distinct_on": [ + 2481, + "[league_divisions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2479, + "[league_divisions_order_by!]" + ], + "where": [ + 2470 + ] + } + ], + "repairUtilityLineup": [ + 147, + { + "session_id": [ + 6672, + "uuid!" + ], + "utility_lineup_id": [ + 6672, + "uuid!" + ] + } + ], + "reparseAllDemos": [ + 69 + ], + "reparseAllDemosStatus": [ + 70 + ], + "reparseDemo": [ + 88, + { + "match_map_id": [ + 6672, + "uuid!" + ] + } + ], + "reparseMatchDemos": [ + 88, + { + "match_id": [ + 6672, + "uuid!" + ] + } + ], + "requestNameChange": [ + 88, + { + "name": [ + 85, + "String!" + ], + "steam_id": [ + 312, + "bigint!" + ] + } + ], + "requeueClipRender": [ + 88, + { + "job_id": [ + 6672, + "uuid!" + ] + } + ], + "respondDraftInvite": [ + 88, + { + "accept": [ + 6, + "Boolean!" + ], + "draftGameId": [ + 6672, + "uuid!" + ] + } + ], + "respondToScrimRequest": [ + 88, + { + "accept": [ + 6, + "Boolean!" + ], + "request_id": [ + 6672, + "uuid!" + ] + } + ], + "restartService": [ + 88, + { + "service": [ + 85, + "String!" + ] + } + ], + "restart_league_season": [ + 2642, + { + "args": [ + 4691, + "restart_league_season_args!" + ], + "distinct_on": [ + 2662, + "[league_seasons_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2659, + "[league_seasons_order_by!]" + ], + "where": [ + 2647 + ] + } + ], + "resumeClipRenderBatch": [ + 88, + { + "match_map_id": [ + 6672, + "uuid!" + ] + } + ], + "retryClipRenderBatch": [ + 88, + { + "match_map_id": [ + 6672, + "uuid!" + ], + "only_failed": [ + 6 + ] + } + ], + "retryPendingMatchImport": [ + 57, + { + "valve_match_id": [ + 85, + "String!" + ] + } + ], + "revokeAward": [ + 88, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "revokeTournamentInviteCode": [ + 88, + { + "invite_code_id": [ + 6672, + "uuid!" + ] + } + ], + "sanctionServerPlayer": [ + 71, + { + "duration": [ + 32 + ], + "reason": [ + 85 + ], + "serverId": [ + 85 + ], + "steam_id": [ + 85, + "String!" + ], + "type": [ + 85, + "String!" + ] + } + ], + "saveAward": [ + 4, + { + "allow_multiple": [ + 6 + ], + "description": [ + 85 + ], + "event_id": [ + 6672 + ], + "id": [ + 6672 + ], + "league_season_id": [ + 6672 + ], + "name": [ + 85, + "String!" + ], + "season_id": [ + 6672 + ], + "silhouette": [ + 41 + ], + "tier": [ + 85, + "String!" + ], + "tournament_id": [ + 6672 + ] + } + ], + "saveNewsPost": [ + 52, + { + "content_markdown": [ + 85, + "String!" + ], + "cover_image_url": [ + 85 + ], + "id": [ + 6672 + ], + "teaser": [ + 85 + ], + "title": [ + 85, + "String!" + ] + } + ], + "saveUtilityLineupFromDemo": [ + 123, + { + "collection_id": [ + 6672 + ], + "description": [ + 85 + ], + "grenade_id": [ + 41, + "Int!" + ], + "match_id": [ + 6672, + "uuid!" + ], + "match_map_id": [ + 6672, + "uuid!" + ], + "name": [ + 85, + "String!" + ], + "tags": [ + 85, + "[String!]" + ], + "team_id": [ + 6672 + ], + "visibility": [ + 85 + ] + } + ], + "saveUtilityLineupFromPractice": [ + 123, + { + "collection_id": [ + 6672 + ], + "description": [ + 85 + ], + "name": [ + 85, + "String!" + ], + "session_id": [ + 6672, + "uuid!" + ], + "tags": [ + 85, + "[String!]" + ], + "team_id": [ + 6672 + ], + "utility_lineup_id": [ + 6672, + "uuid!" + ], + "visibility": [ + 85 + ] + } + ], + "saveUtilityPlaybook": [ + 130, + { + "description": [ + 85 + ], + "map_name": [ + 85, + "String!" + ], + "name": [ + 85, + "String!" + ], + "playbook_id": [ + 6672 + ], + "side": [ + 85, + "String!" + ], + "steps": [ + 131, + "[UtilityPlaybookStepInput!]" + ], + "team_id": [ + 6672 + ], + "visibility": [ + 85 + ] + } + ], + "scanOrphanedDemos": [ + 72 + ], + "scanSteamBans": [ + 88 + ], + "scheduleMatch": [ + 88, + { + "match_id": [ + 6672, + "uuid!" + ], + "time": [ + 5243 + ] + } + ], + "sendScrimRequest": [ + 88, + { + "best_of": [ + 41 + ], + "from_team_id": [ + 6672, + "uuid!" + ], + "proposed_scheduled_at": [ + 5243, + "timestamptz!" + ], + "region": [ + 85 + ], + "to_team_id": [ + 6672, + "uuid!" + ] + } + ], + "sendUtilityDrillToServer": [ + 119, + { + "lineup_ids": [ + 85, + "[String!]!" + ] + } + ], + "sendUtilityLineupToServer": [ + 124, + { + "lineup_id": [ + 6672, + "uuid!" + ] + } + ], + "sendUtilityScratchToServer": [ + 124, + { + "lineup": [ + 143, + "UtilityScratchLineupInput!" + ] + } + ], + "setGameNodeSchedulingState": [ + 88, + { + "enabled": [ + 6, + "Boolean!" + ], + "game_server_node_id": [ + 85, + "String!" + ] + } + ], + "setGamePluginAutoUpdate": [ + 88, + { + "enabled": [ + 6, + "Boolean!" + ], + "slug": [ + 85, + "String!" + ] + } + ], + "setHudMode": [ + 88, + { + "match_id": [ + 6672, + "uuid!" + ], + "mode": [ + 85, + "String!" + ] + } + ], + "setMapWinner": [ + 88, + { + "match_id": [ + 6672, + "uuid!" + ], + "match_map_id": [ + 6672, + "uuid!" + ], + "winning_lineup_id": [ + 6672, + "uuid!" + ] + } + ], + "setMatchWinner": [ + 88, + { + "match_id": [ + 6672, + "uuid!" + ], + "winning_lineup_id": [ + 6672, + "uuid!" + ] + } + ], + "setNewsPostStatus": [ + 52, + { + "id": [ + 6672, + "uuid!" + ], + "status": [ + 85, + "String!" + ] + } + ], + "setTournamentAward": [ + 111, + { + "award_id": [ + 6672 + ], + "custom_name": [ + 85 + ], + "placement": [ + 41, + "Int!" + ], + "silhouette": [ + 41 + ], + "tournament_id": [ + 6672, + "uuid!" + ] + } + ], + "setUtilityPracticeAccess": [ + 88, + { + "access": [ + 85, + "String!" + ], + "session_id": [ + 6672, + "uuid!" + ] + } + ], + "setupGameServer": [ + 76 + ], + "skipShaders": [ + 88, + { + "match_id": [ + 6672, + "uuid!" + ] + } + ], + "solveUtilityLineup": [ + 147, + { + "from_x": [ + 32 + ], + "from_y": [ + 32 + ], + "from_z": [ + 32 + ], + "name": [ + 85 + ], + "session_id": [ + 6672, + "uuid!" + ], + "target_x": [ + 32, + "Float!" + ], + "target_y": [ + 32, + "Float!" + ], + "target_z": [ + 32, + "Float!" + ], + "tolerance": [ + 32 + ], + "utility_type": [ + 85 + ] + } + ], + "specAutodirector": [ + 88, + { + "enabled": [ + 6, + "Boolean!" + ], + "match_id": [ + 6672, + "uuid!" + ] + } + ], + "specClick": [ + 88, + { + "button": [ + 85, + "String!" + ], + "match_id": [ + 6672, + "uuid!" + ] + } + ], + "specHud": [ + 88, + { + "match_id": [ + 6672, + "uuid!" + ], + "visible": [ + 6, + "Boolean!" + ] + } + ], + "specHudSides": [ + 88, + { + "match_id": [ + 6672, + "uuid!" + ] + } + ], + "specJump": [ + 88, + { + "match_id": [ + 6672, + "uuid!" + ] + } + ], + "specPlayer": [ + 88, + { + "accountid": [ + 41, + "Int!" + ], + "match_id": [ + 6672, + "uuid!" + ] + } + ], + "specScoreboard": [ + 88, + { + "match_id": [ + 6672, + "uuid!" + ], + "show": [ + 6, + "Boolean!" + ] + } + ], + "specSlot": [ + 88, + { + "match_id": [ + 6672, + "uuid!" + ], + "slot": [ + 41, + "Int!" + ] + } + ], + "specXray": [ + 88, + { + "enabled": [ + 6, + "Boolean!" + ], + "match_id": [ + 6672, + "uuid!" + ] + } + ], + "startLive": [ + 88, + { + "match_id": [ + 6672, + "uuid!" + ], + "mode": [ + 85, + "String!" + ] + } + ], + "startMatch": [ + 88, + { + "match_id": [ + 6672, + "uuid!" + ], + "server_id": [ + 6672 + ] + } + ], + "startUtilityDriftScan": [ + 118, + { + "from_revision": [ + 85 + ], + "map_name": [ + 85, + "String!" + ], + "to_revision": [ + 85 + ] + } + ], + "startUtilityPractice": [ + 137, + { + "access": [ + 85 + ], + "collection_id": [ + 6672 + ], + "is_open": [ + 6 + ], + "map_name": [ + 85, + "String!" + ], + "region": [ + 85 + ], + "server_id": [ + 6672 + ], + "team_id": [ + 6672 + ] + } + ], + "stopGpuSession": [ + 88, + { + "game_server_node_id": [ + 6672, + "uuid!" + ] + } + ], + "stopLive": [ + 88, + { + "match_id": [ + 6672, + "uuid!" + ] + } + ], + "stopUtilityPractice": [ + 88, + { + "session_id": [ + 6672, + "uuid!" + ] + } + ], + "stopWatchDemo": [ + 88, + { + "match_map_id": [ + 6672, + "uuid!" + ] + } + ], + "submitSteamPresenceSteamGuard": [ + 88, + { + "account_id": [ + 85, + "String!" + ], + "code": [ + 85, + "String!" + ] + } + ], + "swapLineups": [ + 88, + { + "match_id": [ + 6672, + "uuid!" + ] + } + ], + "switchLineup": [ + 88, + { + "match_id": [ + 85, + "String!" + ] + } + ], + "switchLiveMatch": [ + 88, + { + "from_match_id": [ + 6672, + "uuid!" + ], + "mode": [ + 85, + "String!" + ], + "to_match_id": [ + 6672, + "uuid!" + ] + } + ], + "syncMapCallouts": [ + 48 + ], + "syncPluginRegistry": [ + 89 + ], + "syncSteamFriends": [ + 88 + ], + "testFaceitIntegration": [ + 27 + ], + "testUpload": [ + 108 + ], + "uninstallGamePlugin": [ + 88, + { + "force": [ + 6 + ], + "slug": [ + 85, + "String!" + ] + } + ], + "unlinkDiscord": [ + 88 + ], + "unlinkSteamMatchHistory": [ + 88 + ], + "unsanctionServerPlayer": [ + 71, + { + "serverId": [ + 85 + ], + "steam_id": [ + 85, + "String!" + ], + "type": [ + 85, + "String!" + ] + } + ], + "updateClip": [ + 88, + { + "clip_id": [ + 6672, + "uuid!" + ], + "target_steam_id": [ + 85 + ], + "title": [ + 85 + ], + "visibility": [ + 85 + ] + } + ], + "updateCs": [ + 88, + { + "game": [ + 85 + ], + "game_server_node_id": [ + 6672 + ] + } + ], + "updateDraftGame": [ + 88, + { + "draftGameId": [ + 6672, + "uuid!" + ], + "settings": [ + 2439, + "jsonb!" + ] + } + ], + "updateServices": [ + 88 + ], + "update__map_pool": [ + 163, + { + "_set": [ + 168 + ], + "where": [ + 158, + "_map_pool_bool_exp!" + ] + } + ], + "update__map_pool_by_pk": [ + 155, + { + "_set": [ + 168 + ], + "pk_columns": [ + 166, + "_map_pool_pk_columns_input!" + ] + } + ], + "update__map_pool_many": [ + 163, + { + "updates": [ + 172, + "[_map_pool_updates!]!" + ] + } + ], + "update_abandoned_matches": [ + 191, + { + "_inc": [ + 185 + ], + "_set": [ + 196 + ], + "where": [ + 183, + "abandoned_matches_bool_exp!" + ] + } + ], + "update_abandoned_matches_by_pk": [ + 174, + { + "_inc": [ + 185 + ], + "_set": [ + 196 + ], + "pk_columns": [ + 194, + "abandoned_matches_pk_columns_input!" + ] + } + ], + "update_abandoned_matches_many": [ + 191, + { + "updates": [ + 208, + "[abandoned_matches_updates!]!" + ] + } + ], + "update_api_keys": [ + 225, + { + "_inc": [ + 221 + ], + "_set": [ + 230 + ], + "where": [ + 219, + "api_keys_bool_exp!" + ] + } + ], + "update_api_keys_by_pk": [ + 215, + { + "_inc": [ + 221 + ], + "_set": [ + 230 + ], + "pk_columns": [ + 228, + "api_keys_pk_columns_input!" + ] + } + ], + "update_api_keys_many": [ + 225, + { + "updates": [ + 238, + "[api_keys_updates!]!" + ] + } + ], + "update_award_recipients": [ + 260, + { + "_inc": [ + 254 + ], + "_set": [ + 265 + ], + "where": [ + 252, + "award_recipients_bool_exp!" + ] + } + ], + "update_award_recipients_by_pk": [ + 243, + { + "_inc": [ + 254 + ], + "_set": [ + 265 + ], + "pk_columns": [ + 263, + "award_recipients_pk_columns_input!" + ] + } + ], + "update_award_recipients_many": [ + 260, + { + "updates": [ + 277, + "[award_recipients_updates!]!" + ] + } + ], + "update_awards": [ + 294, + { + "_inc": [ + 290 + ], + "_set": [ + 300 + ], + "where": [ + 288, + "awards_bool_exp!" + ] + } + ], + "update_awards_by_pk": [ + 284, + { + "_inc": [ + 290 + ], + "_set": [ + 300 + ], + "pk_columns": [ + 298, + "awards_pk_columns_input!" + ] + } + ], + "update_awards_many": [ + 294, + { + "updates": [ + 308, + "[awards_updates!]!" + ] + } + ], + "update_chat_read_state": [ + 327, + { + "_inc": [ + 323 + ], + "_set": [ + 332 + ], + "where": [ + 321, + "chat_read_state_bool_exp!" + ] + } + ], + "update_chat_read_state_by_pk": [ + 317, + { + "_inc": [ + 323 + ], + "_set": [ + 332 + ], + "pk_columns": [ + 330, + "chat_read_state_pk_columns_input!" + ] + } + ], + "update_chat_read_state_many": [ + 327, + { + "updates": [ + 340, + "[chat_read_state_updates!]!" + ] + } + ], + "update_clip_render_jobs": [ + 367, + { + "_append": [ + 352 + ], + "_delete_at_path": [ + 358 + ], + "_delete_elem": [ + 359 + ], + "_delete_key": [ + 360 + ], + "_inc": [ + 361 + ], + "_prepend": [ + 371 + ], + "_set": [ + 375 + ], + "where": [ + 356, + "clip_render_jobs_bool_exp!" + ] + } + ], + "update_clip_render_jobs_by_pk": [ + 344, + { + "_append": [ + 352 + ], + "_delete_at_path": [ + 358 + ], + "_delete_elem": [ + 359 + ], + "_delete_key": [ + 360 + ], + "_inc": [ + 361 + ], + "_prepend": [ + 371 + ], + "_set": [ + 375 + ], + "pk_columns": [ + 370, + "clip_render_jobs_pk_columns_input!" + ] + } + ], + "update_clip_render_jobs_many": [ + 367, + { + "updates": [ + 387, + "[clip_render_jobs_updates!]!" + ] + } + ], + "update_custom_pages": [ + 410, + { + "_append": [ + 399 + ], + "_delete_at_path": [ + 403 + ], + "_delete_elem": [ + 404 + ], + "_delete_key": [ + 405 + ], + "_inc": [ + 406 + ], + "_prepend": [ + 414 + ], + "_set": [ + 416 + ], + "where": [ + 401, + "custom_pages_bool_exp!" + ] + } + ], + "update_custom_pages_by_pk": [ + 396, + { + "_append": [ + 399 + ], + "_delete_at_path": [ + 403 + ], + "_delete_elem": [ + 404 + ], + "_delete_key": [ + 405 + ], + "_inc": [ + 406 + ], + "_prepend": [ + 414 + ], + "_set": [ + 416 + ], + "pk_columns": [ + 413, + "custom_pages_pk_columns_input!" + ] + } + ], + "update_custom_pages_many": [ + 410, + { + "updates": [ + 424, + "[custom_pages_updates!]!" + ] + } + ], + "update_db_backups": [ + 438, + { + "_inc": [ + 434 + ], + "_set": [ + 443 + ], + "where": [ + 432, + "db_backups_bool_exp!" + ] + } + ], + "update_db_backups_by_pk": [ + 428, + { + "_inc": [ + 434 + ], + "_set": [ + 443 + ], + "pk_columns": [ + 441, + "db_backups_pk_columns_input!" + ] + } + ], + "update_db_backups_many": [ + 438, + { + "updates": [ + 451, + "[db_backups_updates!]!" + ] + } + ], + "update_direct_conversations": [ + 465, + { + "_inc": [ + 461 + ], + "_set": [ + 470 + ], + "where": [ + 459, + "direct_conversations_bool_exp!" + ] + } + ], + "update_direct_conversations_by_pk": [ + 455, + { + "_inc": [ + 461 + ], + "_set": [ + 470 + ], + "pk_columns": [ + 468, + "direct_conversations_pk_columns_input!" + ] + } + ], + "update_direct_conversations_many": [ + 465, + { + "updates": [ + 478, + "[direct_conversations_updates!]!" + ] + } + ], + "update_direct_messages": [ + 492, + { + "_inc": [ + 488 + ], + "_set": [ + 497 + ], + "where": [ + 486, + "direct_messages_bool_exp!" + ] + } + ], + "update_direct_messages_by_pk": [ + 482, + { + "_inc": [ + 488 + ], + "_set": [ + 497 + ], + "pk_columns": [ + 495, + "direct_messages_pk_columns_input!" + ] + } + ], + "update_direct_messages_many": [ + 492, + { + "updates": [ + 505, + "[direct_messages_updates!]!" + ] + } + ], + "update_draft_game_picks": [ + 528, + { + "_inc": [ + 522 + ], + "_set": [ + 535 + ], + "where": [ + 520, + "draft_game_picks_bool_exp!" + ] + } + ], + "update_draft_game_picks_by_pk": [ + 509, + { + "_inc": [ + 522 + ], + "_set": [ + 535 + ], + "pk_columns": [ + 531, + "draft_game_picks_pk_columns_input!" + ] + } + ], + "update_draft_game_picks_many": [ + 528, + { + "updates": [ + 547, + "[draft_game_picks_updates!]!" + ] + } + ], + "update_draft_game_players": [ + 573, + { + "_inc": [ + 567 + ], + "_set": [ + 580 + ], + "where": [ + 565, + "draft_game_players_bool_exp!" + ] + } + ], + "update_draft_game_players_by_pk": [ + 554, + { + "_inc": [ + 567 + ], + "_set": [ + 580 + ], + "pk_columns": [ + 576, + "draft_game_players_pk_columns_input!" + ] + } + ], + "update_draft_game_players_many": [ + 573, + { + "updates": [ + 592, + "[draft_game_players_updates!]!" + ] + } + ], + "update_draft_games": [ + 618, + { + "_inc": [ + 612 + ], + "_set": [ + 626 + ], + "where": [ + 610, + "draft_games_bool_exp!" + ] + } + ], + "update_draft_games_by_pk": [ + 599, + { + "_inc": [ + 612 + ], + "_set": [ + 626 + ], + "pk_columns": [ + 622, + "draft_games_pk_columns_input!" + ] + } + ], + "update_draft_games_many": [ + 618, + { + "updates": [ + 638, + "[draft_games_updates!]!" + ] + } + ], + "update_e_award_sources": [ + 655, + { + "_set": [ + 660 + ], + "where": [ + 648, + "e_award_sources_bool_exp!" + ] + } + ], + "update_e_award_sources_by_pk": [ + 645, + { + "_set": [ + 660 + ], + "pk_columns": [ + 658, + "e_award_sources_pk_columns_input!" + ] + } + ], + "update_e_award_sources_many": [ + 655, + { + "updates": [ + 664, + "[e_award_sources_updates!]!" + ] + } + ], + "update_e_award_tiers": [ + 675, + { + "_set": [ + 680 + ], + "where": [ + 668, + "e_award_tiers_bool_exp!" + ] + } + ], + "update_e_award_tiers_by_pk": [ + 665, + { + "_set": [ + 680 + ], + "pk_columns": [ + 678, + "e_award_tiers_pk_columns_input!" + ] + } + ], + "update_e_award_tiers_many": [ + 675, + { + "updates": [ + 684, + "[e_award_tiers_updates!]!" + ] + } + ], + "update_e_check_in_settings": [ + 695, + { + "_set": [ + 700 + ], + "where": [ + 688, + "e_check_in_settings_bool_exp!" + ] + } + ], + "update_e_check_in_settings_by_pk": [ + 685, + { + "_set": [ + 700 + ], + "pk_columns": [ + 698, + "e_check_in_settings_pk_columns_input!" + ] + } + ], + "update_e_check_in_settings_many": [ + 695, + { + "updates": [ + 704, + "[e_check_in_settings_updates!]!" + ] + } + ], + "update_e_draft_game_captain_selection": [ + 715, + { + "_set": [ + 721 + ], + "where": [ + 708, + "e_draft_game_captain_selection_bool_exp!" + ] + } + ], + "update_e_draft_game_captain_selection_by_pk": [ + 705, + { + "_set": [ + 721 + ], + "pk_columns": [ + 719, + "e_draft_game_captain_selection_pk_columns_input!" + ] + } + ], + "update_e_draft_game_captain_selection_many": [ + 715, + { + "updates": [ + 725, + "[e_draft_game_captain_selection_updates!]!" + ] + } + ], + "update_e_draft_game_draft_order": [ + 736, + { + "_set": [ + 742 + ], + "where": [ + 729, + "e_draft_game_draft_order_bool_exp!" + ] + } + ], + "update_e_draft_game_draft_order_by_pk": [ + 726, + { + "_set": [ + 742 + ], + "pk_columns": [ + 740, + "e_draft_game_draft_order_pk_columns_input!" + ] + } + ], + "update_e_draft_game_draft_order_many": [ + 736, + { + "updates": [ + 746, + "[e_draft_game_draft_order_updates!]!" + ] + } + ], + "update_e_draft_game_mode": [ + 757, + { + "_set": [ + 763 + ], + "where": [ + 750, + "e_draft_game_mode_bool_exp!" + ] + } + ], + "update_e_draft_game_mode_by_pk": [ + 747, + { + "_set": [ + 763 + ], + "pk_columns": [ + 761, + "e_draft_game_mode_pk_columns_input!" + ] + } + ], + "update_e_draft_game_mode_many": [ + 757, + { + "updates": [ + 767, + "[e_draft_game_mode_updates!]!" + ] + } + ], + "update_e_draft_game_player_status": [ + 778, + { + "_set": [ + 784 + ], + "where": [ + 771, + "e_draft_game_player_status_bool_exp!" + ] + } + ], + "update_e_draft_game_player_status_by_pk": [ + 768, + { + "_set": [ + 784 + ], + "pk_columns": [ + 782, + "e_draft_game_player_status_pk_columns_input!" + ] + } + ], + "update_e_draft_game_player_status_many": [ + 778, + { + "updates": [ + 788, + "[e_draft_game_player_status_updates!]!" + ] + } + ], + "update_e_draft_game_status": [ + 799, + { + "_set": [ + 805 + ], + "where": [ + 792, + "e_draft_game_status_bool_exp!" + ] + } + ], + "update_e_draft_game_status_by_pk": [ + 789, + { + "_set": [ + 805 + ], + "pk_columns": [ + 803, + "e_draft_game_status_pk_columns_input!" + ] + } + ], + "update_e_draft_game_status_many": [ + 799, + { + "updates": [ + 809, + "[e_draft_game_status_updates!]!" + ] + } + ], + "update_e_event_media_access": [ + 820, + { + "_set": [ + 825 + ], + "where": [ + 813, + "e_event_media_access_bool_exp!" + ] + } + ], + "update_e_event_media_access_by_pk": [ + 810, + { + "_set": [ + 825 + ], + "pk_columns": [ + 823, + "e_event_media_access_pk_columns_input!" + ] + } + ], + "update_e_event_media_access_many": [ + 820, + { + "updates": [ + 829, + "[e_event_media_access_updates!]!" + ] + } + ], + "update_e_event_visibility": [ + 840, + { + "_set": [ + 845 + ], + "where": [ + 833, + "e_event_visibility_bool_exp!" + ] + } + ], + "update_e_event_visibility_by_pk": [ + 830, + { + "_set": [ + 845 + ], + "pk_columns": [ + 843, + "e_event_visibility_pk_columns_input!" + ] + } + ], + "update_e_event_visibility_many": [ + 840, + { + "updates": [ + 849, + "[e_event_visibility_updates!]!" + ] + } + ], + "update_e_friend_status": [ + 860, + { + "_set": [ + 866 + ], + "where": [ + 853, + "e_friend_status_bool_exp!" + ] + } + ], + "update_e_friend_status_by_pk": [ + 850, + { + "_set": [ + 866 + ], + "pk_columns": [ + 864, + "e_friend_status_pk_columns_input!" + ] + } + ], + "update_e_friend_status_many": [ + 860, + { + "updates": [ + 870, + "[e_friend_status_updates!]!" + ] + } + ], + "update_e_game_cfg_types": [ + 881, + { + "_set": [ + 886 + ], + "where": [ + 874, + "e_game_cfg_types_bool_exp!" + ] + } + ], + "update_e_game_cfg_types_by_pk": [ + 871, + { + "_set": [ + 886 + ], + "pk_columns": [ + 884, + "e_game_cfg_types_pk_columns_input!" + ] + } + ], + "update_e_game_cfg_types_many": [ + 881, + { + "updates": [ + 890, + "[e_game_cfg_types_updates!]!" + ] + } + ], + "update_e_game_plugin_channels": [ + 901, + { + "_set": [ + 906 + ], + "where": [ + 894, + "e_game_plugin_channels_bool_exp!" + ] + } + ], + "update_e_game_plugin_channels_by_pk": [ + 891, + { + "_set": [ + 906 + ], + "pk_columns": [ + 904, + "e_game_plugin_channels_pk_columns_input!" + ] + } + ], + "update_e_game_plugin_channels_many": [ + 901, + { + "updates": [ + 910, + "[e_game_plugin_channels_updates!]!" + ] + } + ], + "update_e_game_plugin_install_statuses": [ + 921, + { + "_set": [ + 926 + ], + "where": [ + 914, + "e_game_plugin_install_statuses_bool_exp!" + ] + } + ], + "update_e_game_plugin_install_statuses_by_pk": [ + 911, + { + "_set": [ + 926 + ], + "pk_columns": [ + 924, + "e_game_plugin_install_statuses_pk_columns_input!" + ] + } + ], + "update_e_game_plugin_install_statuses_many": [ + 921, + { + "updates": [ + 930, + "[e_game_plugin_install_statuses_updates!]!" + ] + } + ], + "update_e_game_plugin_kinds": [ + 941, + { + "_set": [ + 946 + ], + "where": [ + 934, + "e_game_plugin_kinds_bool_exp!" + ] + } + ], + "update_e_game_plugin_kinds_by_pk": [ + 931, + { + "_set": [ + 946 + ], + "pk_columns": [ + 944, + "e_game_plugin_kinds_pk_columns_input!" + ] + } + ], + "update_e_game_plugin_kinds_many": [ + 941, + { + "updates": [ + 950, + "[e_game_plugin_kinds_updates!]!" + ] + } + ], + "update_e_game_server_node_statuses": [ + 961, + { + "_set": [ + 967 + ], + "where": [ + 954, + "e_game_server_node_statuses_bool_exp!" + ] + } + ], + "update_e_game_server_node_statuses_by_pk": [ + 951, + { + "_set": [ + 967 + ], + "pk_columns": [ + 965, + "e_game_server_node_statuses_pk_columns_input!" + ] + } + ], + "update_e_game_server_node_statuses_many": [ + 961, + { + "updates": [ + 971, + "[e_game_server_node_statuses_updates!]!" + ] + } + ], + "update_e_league_movement_types": [ + 982, + { + "_set": [ + 988 + ], + "where": [ + 975, + "e_league_movement_types_bool_exp!" + ] + } + ], + "update_e_league_movement_types_by_pk": [ + 972, + { + "_set": [ + 988 + ], + "pk_columns": [ + 986, + "e_league_movement_types_pk_columns_input!" + ] + } + ], + "update_e_league_movement_types_many": [ + 982, + { + "updates": [ + 992, + "[e_league_movement_types_updates!]!" + ] + } + ], + "update_e_league_proposal_statuses": [ + 1003, + { + "_set": [ + 1009 + ], + "where": [ + 996, + "e_league_proposal_statuses_bool_exp!" + ] + } + ], + "update_e_league_proposal_statuses_by_pk": [ + 993, + { + "_set": [ + 1009 + ], + "pk_columns": [ + 1007, + "e_league_proposal_statuses_pk_columns_input!" + ] + } + ], + "update_e_league_proposal_statuses_many": [ + 1003, + { + "updates": [ + 1013, + "[e_league_proposal_statuses_updates!]!" + ] + } + ], + "update_e_league_registration_statuses": [ + 1024, + { + "_set": [ + 1030 + ], + "where": [ + 1017, + "e_league_registration_statuses_bool_exp!" + ] + } + ], + "update_e_league_registration_statuses_by_pk": [ + 1014, + { + "_set": [ + 1030 + ], + "pk_columns": [ + 1028, + "e_league_registration_statuses_pk_columns_input!" + ] + } + ], + "update_e_league_registration_statuses_many": [ + 1024, + { + "updates": [ + 1034, + "[e_league_registration_statuses_updates!]!" + ] + } + ], + "update_e_league_season_statuses": [ + 1045, + { + "_set": [ + 1051 + ], + "where": [ + 1038, + "e_league_season_statuses_bool_exp!" + ] + } + ], + "update_e_league_season_statuses_by_pk": [ + 1035, + { + "_set": [ + 1051 + ], + "pk_columns": [ + 1049, + "e_league_season_statuses_pk_columns_input!" + ] + } + ], + "update_e_league_season_statuses_many": [ + 1045, + { + "updates": [ + 1055, + "[e_league_season_statuses_updates!]!" + ] + } + ], + "update_e_lobby_access": [ + 1066, + { + "_set": [ + 1072 + ], + "where": [ + 1059, + "e_lobby_access_bool_exp!" + ] + } + ], + "update_e_lobby_access_by_pk": [ + 1056, + { + "_set": [ + 1072 + ], + "pk_columns": [ + 1070, + "e_lobby_access_pk_columns_input!" + ] + } + ], + "update_e_lobby_access_many": [ + 1066, + { + "updates": [ + 1076, + "[e_lobby_access_updates!]!" + ] + } + ], + "update_e_lobby_player_status": [ + 1087, + { + "_set": [ + 1092 + ], + "where": [ + 1080, + "e_lobby_player_status_bool_exp!" + ] + } + ], + "update_e_lobby_player_status_by_pk": [ + 1077, + { + "_set": [ + 1092 + ], + "pk_columns": [ + 1090, + "e_lobby_player_status_pk_columns_input!" + ] + } + ], + "update_e_lobby_player_status_many": [ + 1087, + { + "updates": [ + 1096, + "[e_lobby_player_status_updates!]!" + ] + } + ], + "update_e_map_pool_types": [ + 1107, + { + "_set": [ + 1113 + ], + "where": [ + 1100, + "e_map_pool_types_bool_exp!" + ] + } + ], + "update_e_map_pool_types_by_pk": [ + 1097, + { + "_set": [ + 1113 + ], + "pk_columns": [ + 1111, + "e_map_pool_types_pk_columns_input!" + ] + } + ], + "update_e_map_pool_types_many": [ + 1107, + { + "updates": [ + 1117, + "[e_map_pool_types_updates!]!" + ] + } + ], + "update_e_match_clip_visibility": [ + 1128, + { + "_set": [ + 1133 + ], + "where": [ + 1121, + "e_match_clip_visibility_bool_exp!" + ] + } + ], + "update_e_match_clip_visibility_by_pk": [ + 1118, + { + "_set": [ + 1133 + ], + "pk_columns": [ + 1131, + "e_match_clip_visibility_pk_columns_input!" + ] + } + ], + "update_e_match_clip_visibility_many": [ + 1128, + { + "updates": [ + 1137, + "[e_match_clip_visibility_updates!]!" + ] + } + ], + "update_e_match_map_status": [ + 1148, + { + "_set": [ + 1154 + ], + "where": [ + 1141, + "e_match_map_status_bool_exp!" + ] + } + ], + "update_e_match_map_status_by_pk": [ + 1138, + { + "_set": [ + 1154 + ], + "pk_columns": [ + 1152, + "e_match_map_status_pk_columns_input!" + ] + } + ], + "update_e_match_map_status_many": [ + 1148, + { + "updates": [ + 1158, + "[e_match_map_status_updates!]!" + ] + } + ], + "update_e_match_mode": [ + 1169, + { + "_set": [ + 1174 + ], + "where": [ + 1162, + "e_match_mode_bool_exp!" + ] + } + ], + "update_e_match_mode_by_pk": [ + 1159, + { + "_set": [ + 1174 + ], + "pk_columns": [ + 1172, + "e_match_mode_pk_columns_input!" + ] + } + ], + "update_e_match_mode_many": [ + 1169, + { + "updates": [ + 1178, + "[e_match_mode_updates!]!" + ] + } + ], + "update_e_match_party_sources": [ + 1189, + { + "_set": [ + 1194 + ], + "where": [ + 1182, + "e_match_party_sources_bool_exp!" + ] + } + ], + "update_e_match_party_sources_by_pk": [ + 1179, + { + "_set": [ + 1194 + ], + "pk_columns": [ + 1192, + "e_match_party_sources_pk_columns_input!" + ] + } + ], + "update_e_match_party_sources_many": [ + 1189, + { + "updates": [ + 1198, + "[e_match_party_sources_updates!]!" + ] + } + ], + "update_e_match_status": [ + 1209, + { + "_set": [ + 1215 + ], + "where": [ + 1202, + "e_match_status_bool_exp!" + ] + } + ], + "update_e_match_status_by_pk": [ + 1199, + { + "_set": [ + 1215 + ], + "pk_columns": [ + 1213, + "e_match_status_pk_columns_input!" + ] + } + ], + "update_e_match_status_many": [ + 1209, + { + "updates": [ + 1219, + "[e_match_status_updates!]!" + ] + } + ], + "update_e_match_types": [ + 1230, + { + "_set": [ + 1236 + ], + "where": [ + 1223, + "e_match_types_bool_exp!" + ] + } + ], + "update_e_match_types_by_pk": [ + 1220, + { + "_set": [ + 1236 + ], + "pk_columns": [ + 1234, + "e_match_types_pk_columns_input!" + ] + } + ], + "update_e_match_types_many": [ + 1230, + { + "updates": [ + 1240, + "[e_match_types_updates!]!" + ] + } + ], + "update_e_notification_types": [ + 1251, + { + "_set": [ + 1256 + ], + "where": [ + 1244, + "e_notification_types_bool_exp!" + ] + } + ], + "update_e_notification_types_by_pk": [ + 1241, + { + "_set": [ + 1256 + ], + "pk_columns": [ + 1254, + "e_notification_types_pk_columns_input!" + ] + } + ], + "update_e_notification_types_many": [ + 1251, + { + "updates": [ + 1260, + "[e_notification_types_updates!]!" + ] + } + ], + "update_e_objective_types": [ + 1271, + { + "_set": [ + 1276 + ], + "where": [ + 1264, + "e_objective_types_bool_exp!" + ] + } + ], + "update_e_objective_types_by_pk": [ + 1261, + { + "_set": [ + 1276 + ], + "pk_columns": [ + 1274, + "e_objective_types_pk_columns_input!" + ] + } + ], + "update_e_objective_types_many": [ + 1271, + { + "updates": [ + 1280, + "[e_objective_types_updates!]!" + ] + } + ], + "update_e_player_roles": [ + 1291, + { + "_set": [ + 1296 + ], + "where": [ + 1284, + "e_player_roles_bool_exp!" + ] + } + ], + "update_e_player_roles_by_pk": [ + 1281, + { + "_set": [ + 1296 + ], + "pk_columns": [ + 1294, + "e_player_roles_pk_columns_input!" + ] + } + ], + "update_e_player_roles_many": [ + 1291, + { + "updates": [ + 1300, + "[e_player_roles_updates!]!" + ] + } + ], + "update_e_plugin_runtimes": [ + 1311, + { + "_set": [ + 1316 + ], + "where": [ + 1304, + "e_plugin_runtimes_bool_exp!" + ] + } + ], + "update_e_plugin_runtimes_by_pk": [ + 1301, + { + "_set": [ + 1316 + ], + "pk_columns": [ + 1314, + "e_plugin_runtimes_pk_columns_input!" + ] + } + ], + "update_e_plugin_runtimes_many": [ + 1311, + { + "updates": [ + 1320, + "[e_plugin_runtimes_updates!]!" + ] + } + ], + "update_e_ready_settings": [ + 1331, + { + "_set": [ + 1336 + ], + "where": [ + 1324, + "e_ready_settings_bool_exp!" + ] + } + ], + "update_e_ready_settings_by_pk": [ + 1321, + { + "_set": [ + 1336 + ], + "pk_columns": [ + 1334, + "e_ready_settings_pk_columns_input!" + ] + } + ], + "update_e_ready_settings_many": [ + 1331, + { + "updates": [ + 1340, + "[e_ready_settings_updates!]!" + ] + } + ], + "update_e_sanction_scopes": [ + 1349, + { + "_set": [ + 1355 + ], + "where": [ + 1344, + "e_sanction_scopes_bool_exp!" + ] + } + ], + "update_e_sanction_scopes_by_pk": [ + 1341, + { + "_set": [ + 1355 + ], + "pk_columns": [ + 1353, + "e_sanction_scopes_pk_columns_input!" + ] + } + ], + "update_e_sanction_scopes_many": [ + 1349, + { + "updates": [ + 1359, + "[e_sanction_scopes_updates!]!" + ] + } + ], + "update_e_sanction_sources": [ + 1370, + { + "_inc": [ + 1366 + ], + "_set": [ + 1375 + ], + "where": [ + 1364, + "e_sanction_sources_bool_exp!" + ] + } + ], + "update_e_sanction_sources_by_pk": [ + 1360, + { + "_inc": [ + 1366 + ], + "_set": [ + 1375 + ], + "pk_columns": [ + 1373, + "e_sanction_sources_pk_columns_input!" + ] + } + ], + "update_e_sanction_sources_many": [ + 1370, + { + "updates": [ + 1383, + "[e_sanction_sources_updates!]!" + ] + } + ], + "update_e_sanction_types": [ + 1397, + { + "_set": [ + 1403 + ], + "where": [ + 1390, + "e_sanction_types_bool_exp!" + ] + } + ], + "update_e_sanction_types_by_pk": [ + 1387, + { + "_set": [ + 1403 + ], + "pk_columns": [ + 1401, + "e_sanction_types_pk_columns_input!" + ] + } + ], + "update_e_sanction_types_many": [ + 1397, + { + "updates": [ + 1407, + "[e_sanction_types_updates!]!" + ] + } + ], + "update_e_scrim_request_statuses": [ + 1418, + { + "_set": [ + 1423 + ], + "where": [ + 1411, + "e_scrim_request_statuses_bool_exp!" + ] + } + ], + "update_e_scrim_request_statuses_by_pk": [ + 1408, + { + "_set": [ + 1423 + ], + "pk_columns": [ + 1421, + "e_scrim_request_statuses_pk_columns_input!" + ] + } + ], + "update_e_scrim_request_statuses_many": [ + 1418, + { + "updates": [ + 1427, + "[e_scrim_request_statuses_updates!]!" + ] + } + ], + "update_e_server_types": [ + 1438, + { + "_set": [ + 1443 + ], + "where": [ + 1431, + "e_server_types_bool_exp!" + ] + } + ], + "update_e_server_types_by_pk": [ + 1428, + { + "_set": [ + 1443 + ], + "pk_columns": [ + 1441, + "e_server_types_pk_columns_input!" + ] + } + ], + "update_e_server_types_many": [ + 1438, + { + "updates": [ + 1447, + "[e_server_types_updates!]!" + ] + } + ], + "update_e_sides": [ + 1458, + { + "_set": [ + 1463 + ], + "where": [ + 1451, + "e_sides_bool_exp!" + ] + } + ], + "update_e_sides_by_pk": [ + 1448, + { + "_set": [ + 1463 + ], + "pk_columns": [ + 1461, + "e_sides_pk_columns_input!" + ] + } + ], + "update_e_sides_many": [ + 1458, + { + "updates": [ + 1467, + "[e_sides_updates!]!" + ] + } + ], + "update_e_system_alert_types": [ + 1478, + { + "_set": [ + 1483 + ], + "where": [ + 1471, + "e_system_alert_types_bool_exp!" + ] + } + ], + "update_e_system_alert_types_by_pk": [ + 1468, + { + "_set": [ + 1483 + ], + "pk_columns": [ + 1481, + "e_system_alert_types_pk_columns_input!" + ] + } + ], + "update_e_system_alert_types_many": [ + 1478, + { + "updates": [ + 1487, + "[e_system_alert_types_updates!]!" + ] + } + ], + "update_e_team_roles": [ + 1498, + { + "_set": [ + 1504 + ], + "where": [ + 1491, + "e_team_roles_bool_exp!" + ] + } + ], + "update_e_team_roles_by_pk": [ + 1488, + { + "_set": [ + 1504 + ], + "pk_columns": [ + 1502, + "e_team_roles_pk_columns_input!" + ] + } + ], + "update_e_team_roles_many": [ + 1498, + { + "updates": [ + 1508, + "[e_team_roles_updates!]!" + ] + } + ], + "update_e_team_roster_statuses": [ + 1519, + { + "_set": [ + 1524 + ], + "where": [ + 1512, + "e_team_roster_statuses_bool_exp!" + ] + } + ], + "update_e_team_roster_statuses_by_pk": [ + 1509, + { + "_set": [ + 1524 + ], + "pk_columns": [ + 1522, + "e_team_roster_statuses_pk_columns_input!" + ] + } + ], + "update_e_team_roster_statuses_many": [ + 1519, + { + "updates": [ + 1528, + "[e_team_roster_statuses_updates!]!" + ] + } + ], + "update_e_timeout_settings": [ + 1539, + { + "_set": [ + 1544 + ], + "where": [ + 1532, + "e_timeout_settings_bool_exp!" + ] + } + ], + "update_e_timeout_settings_by_pk": [ + 1529, + { + "_set": [ + 1544 + ], + "pk_columns": [ + 1542, + "e_timeout_settings_pk_columns_input!" + ] + } + ], + "update_e_timeout_settings_many": [ + 1539, + { + "updates": [ + 1548, + "[e_timeout_settings_updates!]!" + ] + } + ], + "update_e_tournament_categories": [ + 1559, + { + "_set": [ + 1565 + ], + "where": [ + 1552, + "e_tournament_categories_bool_exp!" + ] + } + ], + "update_e_tournament_categories_by_pk": [ + 1549, + { + "_set": [ + 1565 + ], + "pk_columns": [ + 1563, + "e_tournament_categories_pk_columns_input!" + ] + } + ], + "update_e_tournament_categories_many": [ + 1559, + { + "updates": [ + 1569, + "[e_tournament_categories_updates!]!" + ] + } + ], + "update_e_tournament_free_agent_statuses": [ + 1580, + { + "_set": [ + 1586 + ], + "where": [ + 1573, + "e_tournament_free_agent_statuses_bool_exp!" + ] + } + ], + "update_e_tournament_free_agent_statuses_by_pk": [ + 1570, + { + "_set": [ + 1586 + ], + "pk_columns": [ + 1584, + "e_tournament_free_agent_statuses_pk_columns_input!" + ] + } + ], + "update_e_tournament_free_agent_statuses_many": [ + 1580, + { + "updates": [ + 1590, + "[e_tournament_free_agent_statuses_updates!]!" + ] + } + ], + "update_e_tournament_registration_types": [ + 1601, + { + "_set": [ + 1606 + ], + "where": [ + 1594, + "e_tournament_registration_types_bool_exp!" + ] + } + ], + "update_e_tournament_registration_types_by_pk": [ + 1591, + { + "_set": [ + 1606 + ], + "pk_columns": [ + 1604, + "e_tournament_registration_types_pk_columns_input!" + ] + } + ], + "update_e_tournament_registration_types_many": [ + 1601, + { + "updates": [ + 1610, + "[e_tournament_registration_types_updates!]!" + ] + } + ], + "update_e_tournament_stage_types": [ + 1621, + { + "_set": [ + 1627 + ], + "where": [ + 1614, + "e_tournament_stage_types_bool_exp!" + ] + } + ], + "update_e_tournament_stage_types_by_pk": [ + 1611, + { + "_set": [ + 1627 + ], + "pk_columns": [ + 1625, + "e_tournament_stage_types_pk_columns_input!" + ] + } + ], + "update_e_tournament_stage_types_many": [ + 1621, + { + "updates": [ + 1631, + "[e_tournament_stage_types_updates!]!" + ] + } + ], + "update_e_tournament_status": [ + 1642, + { + "_set": [ + 1648 + ], + "where": [ + 1635, + "e_tournament_status_bool_exp!" + ] + } + ], + "update_e_tournament_status_by_pk": [ + 1632, + { + "_set": [ + 1648 + ], + "pk_columns": [ + 1646, + "e_tournament_status_pk_columns_input!" + ] + } + ], + "update_e_tournament_status_many": [ + 1642, + { + "updates": [ + 1652, + "[e_tournament_status_updates!]!" + ] + } + ], + "update_e_utility_practice_access": [ + 1663, + { + "_set": [ + 1668 + ], + "where": [ + 1656, + "e_utility_practice_access_bool_exp!" + ] + } + ], + "update_e_utility_practice_access_by_pk": [ + 1653, + { + "_set": [ + 1668 + ], + "pk_columns": [ + 1666, + "e_utility_practice_access_pk_columns_input!" + ] + } + ], + "update_e_utility_practice_access_many": [ + 1663, + { + "updates": [ + 1672, + "[e_utility_practice_access_updates!]!" + ] + } + ], + "update_e_utility_practice_statuses": [ + 1683, + { + "_set": [ + 1689 + ], + "where": [ + 1676, + "e_utility_practice_statuses_bool_exp!" + ] + } + ], + "update_e_utility_practice_statuses_by_pk": [ + 1673, + { + "_set": [ + 1689 + ], + "pk_columns": [ + 1687, + "e_utility_practice_statuses_pk_columns_input!" + ] + } + ], + "update_e_utility_practice_statuses_many": [ + 1683, + { + "updates": [ + 1693, + "[e_utility_practice_statuses_updates!]!" + ] + } + ], + "update_e_utility_sources": [ + 1704, + { + "_set": [ + 1709 + ], + "where": [ + 1697, + "e_utility_sources_bool_exp!" + ] + } + ], + "update_e_utility_sources_by_pk": [ + 1694, + { + "_set": [ + 1709 + ], + "pk_columns": [ + 1707, + "e_utility_sources_pk_columns_input!" + ] + } + ], + "update_e_utility_sources_many": [ + 1704, + { + "updates": [ + 1713, + "[e_utility_sources_updates!]!" + ] + } + ], + "update_e_utility_techniques": [ + 1724, + { + "_set": [ + 1729 + ], + "where": [ + 1717, + "e_utility_techniques_bool_exp!" + ] + } + ], + "update_e_utility_techniques_by_pk": [ + 1714, + { + "_set": [ + 1729 + ], + "pk_columns": [ + 1727, + "e_utility_techniques_pk_columns_input!" + ] + } + ], + "update_e_utility_techniques_many": [ + 1724, + { + "updates": [ + 1733, + "[e_utility_techniques_updates!]!" + ] + } + ], + "update_e_utility_throw_strengths": [ + 1744, + { + "_set": [ + 1749 + ], + "where": [ + 1737, + "e_utility_throw_strengths_bool_exp!" + ] + } + ], + "update_e_utility_throw_strengths_by_pk": [ + 1734, + { + "_set": [ + 1749 + ], + "pk_columns": [ + 1747, + "e_utility_throw_strengths_pk_columns_input!" + ] + } + ], + "update_e_utility_throw_strengths_many": [ + 1744, + { + "updates": [ + 1753, + "[e_utility_throw_strengths_updates!]!" + ] + } + ], + "update_e_utility_types": [ + 1764, + { + "_set": [ + 1769 + ], + "where": [ + 1757, + "e_utility_types_bool_exp!" + ] + } + ], + "update_e_utility_types_by_pk": [ + 1754, + { + "_set": [ + 1769 + ], + "pk_columns": [ + 1767, + "e_utility_types_pk_columns_input!" + ] + } + ], + "update_e_utility_types_many": [ + 1764, + { + "updates": [ + 1773, + "[e_utility_types_updates!]!" + ] + } + ], + "update_e_utility_visibility": [ + 1784, + { + "_set": [ + 1789 + ], + "where": [ + 1777, + "e_utility_visibility_bool_exp!" + ] + } + ], + "update_e_utility_visibility_by_pk": [ + 1774, + { + "_set": [ + 1789 + ], + "pk_columns": [ + 1787, + "e_utility_visibility_pk_columns_input!" + ] + } + ], + "update_e_utility_visibility_many": [ + 1784, + { + "updates": [ + 1793, + "[e_utility_visibility_updates!]!" + ] + } + ], + "update_e_veto_pick_types": [ + 1804, + { + "_set": [ + 1809 + ], + "where": [ + 1797, + "e_veto_pick_types_bool_exp!" + ] + } + ], + "update_e_veto_pick_types_by_pk": [ + 1794, + { + "_set": [ + 1809 + ], + "pk_columns": [ + 1807, + "e_veto_pick_types_pk_columns_input!" + ] + } + ], + "update_e_veto_pick_types_many": [ + 1804, + { + "updates": [ + 1813, + "[e_veto_pick_types_updates!]!" + ] + } + ], + "update_e_winning_reasons": [ + 1824, + { + "_set": [ + 1829 + ], + "where": [ + 1817, + "e_winning_reasons_bool_exp!" + ] + } + ], + "update_e_winning_reasons_by_pk": [ + 1814, + { + "_set": [ + 1829 + ], + "pk_columns": [ + 1827, + "e_winning_reasons_pk_columns_input!" + ] + } + ], + "update_e_winning_reasons_many": [ + 1824, + { + "updates": [ + 1833, + "[e_winning_reasons_updates!]!" + ] + } + ], + "update_event_match_links": [ + 1842, + { + "_set": [ + 1847 + ], + "where": [ + 1837, + "event_match_links_bool_exp!" + ] + } + ], + "update_event_match_links_by_pk": [ + 1834, + { + "_set": [ + 1847 + ], + "pk_columns": [ + 1845, + "event_match_links_pk_columns_input!" + ] + } + ], + "update_event_match_links_many": [ + 1842, + { + "updates": [ + 1851, + "[event_match_links_updates!]!" + ] + } + ], + "update_event_media": [ + 1869, + { + "_inc": [ + 1863 + ], + "_set": [ + 1916 + ], + "where": [ + 1861, + "event_media_bool_exp!" + ] + } + ], + "update_event_media_by_pk": [ + 1852, + { + "_inc": [ + 1863 + ], + "_set": [ + 1916 + ], + "pk_columns": [ + 1873, + "event_media_pk_columns_input!" + ] + } + ], + "update_event_media_many": [ + 1869, + { + "updates": [ + 1928, + "[event_media_updates!]!" + ] + } + ], + "update_event_media_players": [ + 1891, + { + "_inc": [ + 1885 + ], + "_set": [ + 1896 + ], + "where": [ + 1883, + "event_media_players_bool_exp!" + ] + } + ], + "update_event_media_players_by_pk": [ + 1874, + { + "_inc": [ + 1885 + ], + "_set": [ + 1896 + ], + "pk_columns": [ + 1894, + "event_media_players_pk_columns_input!" + ] + } + ], + "update_event_media_players_many": [ + 1891, + { + "updates": [ + 1908, + "[event_media_players_updates!]!" + ] + } + ], + "update_event_organizers": [ + 1952, + { + "_inc": [ + 1946 + ], + "_set": [ + 1957 + ], + "where": [ + 1944, + "event_organizers_bool_exp!" + ] + } + ], + "update_event_organizers_by_pk": [ + 1935, + { + "_inc": [ + 1946 + ], + "_set": [ + 1957 + ], + "pk_columns": [ + 1955, + "event_organizers_pk_columns_input!" + ] + } + ], + "update_event_organizers_many": [ + 1952, + { + "updates": [ + 1969, + "[event_organizers_updates!]!" + ] + } + ], + "update_event_players": [ + 1993, + { + "_inc": [ + 1987 + ], + "_set": [ + 1998 + ], + "where": [ + 1985, + "event_players_bool_exp!" + ] + } + ], + "update_event_players_by_pk": [ + 1976, + { + "_inc": [ + 1987 + ], + "_set": [ + 1998 + ], + "pk_columns": [ + 1996, + "event_players_pk_columns_input!" + ] + } + ], + "update_event_players_many": [ + 1993, + { + "updates": [ + 2010, + "[event_players_updates!]!" + ] + } + ], + "update_event_teams": [ + 2031, + { + "_set": [ + 2036 + ], + "where": [ + 2024, + "event_teams_bool_exp!" + ] + } + ], + "update_event_teams_by_pk": [ + 2017, + { + "_set": [ + 2036 + ], + "pk_columns": [ + 2034, + "event_teams_pk_columns_input!" + ] + } + ], + "update_event_teams_many": [ + 2031, + { + "updates": [ + 2040, + "[event_teams_updates!]!" + ] + } + ], + "update_event_tournaments": [ + 2055, + { + "_set": [ + 2060 + ], + "where": [ + 2048, + "event_tournaments_bool_exp!" + ] + } + ], + "update_event_tournaments_by_pk": [ + 2041, + { + "_set": [ + 2060 + ], + "pk_columns": [ + 2058, + "event_tournaments_pk_columns_input!" + ] + } + ], + "update_event_tournaments_many": [ + 2055, + { + "updates": [ + 2064, + "[event_tournaments_updates!]!" + ] + } + ], + "update_events": [ + 2075, + { + "_inc": [ + 2071 + ], + "_set": [ + 2081 + ], + "where": [ + 2069, + "events_bool_exp!" + ] + } + ], + "update_events_by_pk": [ + 2065, + { + "_inc": [ + 2071 + ], + "_set": [ + 2081 + ], + "pk_columns": [ + 2079, + "events_pk_columns_input!" + ] + } + ], + "update_events_many": [ + 2075, + { + "updates": [ + 2089, + "[events_updates!]!" + ] + } + ], + "update_friends": [ + 2105, + { + "_inc": [ + 2101 + ], + "_set": [ + 2110 + ], + "where": [ + 2099, + "friends_bool_exp!" + ] + } + ], + "update_friends_by_pk": [ + 2095, + { + "_inc": [ + 2101 + ], + "_set": [ + 2110 + ], + "pk_columns": [ + 2108, + "friends_pk_columns_input!" + ] + } + ], + "update_friends_many": [ + 2105, + { + "updates": [ + 2118, + "[friends_updates!]!" + ] + } + ], + "update_game_mode_plugins": [ + 2145, + { + "_append": [ + 2130 + ], + "_delete_at_path": [ + 2136 + ], + "_delete_elem": [ + 2137 + ], + "_delete_key": [ + 2138 + ], + "_inc": [ + 2139 + ], + "_prepend": [ + 2149 + ], + "_set": [ + 2153 + ], + "where": [ + 2134, + "game_mode_plugins_bool_exp!" + ] + } + ], + "update_game_mode_plugins_by_pk": [ + 2122, + { + "_append": [ + 2130 + ], + "_delete_at_path": [ + 2136 + ], + "_delete_elem": [ + 2137 + ], + "_delete_key": [ + 2138 + ], + "_inc": [ + 2139 + ], + "_prepend": [ + 2149 + ], + "_set": [ + 2153 + ], + "pk_columns": [ + 2148, + "game_mode_plugins_pk_columns_input!" + ] + } + ], + "update_game_mode_plugins_many": [ + 2145, + { + "updates": [ + 2165, + "[game_mode_plugins_updates!]!" + ] + } + ], + "update_game_modes": [ + 2180, + { + "_set": [ + 2186 + ], + "where": [ + 2175, + "game_modes_bool_exp!" + ] + } + ], + "update_game_modes_by_pk": [ + 2172, + { + "_set": [ + 2186 + ], + "pk_columns": [ + 2184, + "game_modes_pk_columns_input!" + ] + } + ], + "update_game_modes_many": [ + 2180, + { + "updates": [ + 2190, + "[game_modes_updates!]!" + ] + } + ], + "update_game_plugin_installs": [ + 2199, + { + "_set": [ + 2204 + ], + "where": [ + 2194, + "game_plugin_installs_bool_exp!" + ] + } + ], + "update_game_plugin_installs_by_pk": [ + 2191, + { + "_set": [ + 2204 + ], + "pk_columns": [ + 2202, + "game_plugin_installs_pk_columns_input!" + ] + } + ], + "update_game_plugin_installs_many": [ + 2199, + { + "updates": [ + 2208, + "[game_plugin_installs_updates!]!" + ] + } + ], + "update_game_plugin_versions": [ + 2228, + { + "_inc": [ + 2222 + ], + "_set": [ + 2235 + ], + "where": [ + 2220, + "game_plugin_versions_bool_exp!" + ] + } + ], + "update_game_plugin_versions_by_pk": [ + 2209, + { + "_inc": [ + 2222 + ], + "_set": [ + 2235 + ], + "pk_columns": [ + 2231, + "game_plugin_versions_pk_columns_input!" + ] + } + ], + "update_game_plugin_versions_many": [ + 2228, + { + "updates": [ + 2247, + "[game_plugin_versions_updates!]!" + ] + } + ], + "update_game_plugins": [ + 2267, + { + "_append": [ + 2257 + ], + "_delete_at_path": [ + 2261 + ], + "_delete_elem": [ + 2262 + ], + "_delete_key": [ + 2263 + ], + "_prepend": [ + 2272 + ], + "_set": [ + 2274 + ], + "where": [ + 2259, + "game_plugins_bool_exp!" + ] + } + ], + "update_game_plugins_by_pk": [ + 2254, + { + "_append": [ + 2257 + ], + "_delete_at_path": [ + 2261 + ], + "_delete_elem": [ + 2262 + ], + "_delete_key": [ + 2263 + ], + "_prepend": [ + 2272 + ], + "_set": [ + 2274 + ], + "pk_columns": [ + 2271, + "game_plugins_pk_columns_input!" + ] + } + ], + "update_game_plugins_many": [ + 2267, + { + "updates": [ + 2282, + "[game_plugins_updates!]!" + ] + } + ], + "update_game_server_node_plugins": [ + 2302, + { + "_set": [ + 2309 + ], + "where": [ + 2295, + "game_server_node_plugins_bool_exp!" + ] + } + ], + "update_game_server_node_plugins_by_pk": [ + 2286, + { + "_set": [ + 2309 + ], + "pk_columns": [ + 2305, + "game_server_node_plugins_pk_columns_input!" + ] + } + ], + "update_game_server_node_plugins_many": [ + 2302, + { + "updates": [ + 2313, + "[game_server_node_plugins_updates!]!" + ] + } + ], + "update_game_server_nodes": [ + 2337, + { + "_append": [ + 2322 + ], + "_delete_at_path": [ + 2328 + ], + "_delete_elem": [ + 2329 + ], + "_delete_key": [ + 2330 + ], + "_inc": [ + 2331 + ], + "_prepend": [ + 2342 + ], + "_set": [ + 2346 + ], + "where": [ + 2326, + "game_server_nodes_bool_exp!" + ] + } + ], + "update_game_server_nodes_by_pk": [ + 2314, + { + "_append": [ + 2322 + ], + "_delete_at_path": [ + 2328 + ], + "_delete_elem": [ + 2329 + ], + "_delete_key": [ + 2330 + ], + "_inc": [ + 2331 + ], + "_prepend": [ + 2342 + ], + "_set": [ + 2346 + ], + "pk_columns": [ + 2341, + "game_server_nodes_pk_columns_input!" + ] + } + ], + "update_game_server_nodes_many": [ + 2337, + { + "updates": [ + 2358, + "[game_server_nodes_updates!]!" + ] + } + ], + "update_game_versions": [ + 2379, + { + "_append": [ + 2368 + ], + "_delete_at_path": [ + 2372 + ], + "_delete_elem": [ + 2373 + ], + "_delete_key": [ + 2374 + ], + "_inc": [ + 2375 + ], + "_prepend": [ + 2384 + ], + "_set": [ + 2386 + ], + "where": [ + 2370, + "game_versions_bool_exp!" + ] + } + ], + "update_game_versions_by_pk": [ + 2365, + { + "_append": [ + 2368 + ], + "_delete_at_path": [ + 2372 + ], + "_delete_elem": [ + 2373 + ], + "_delete_key": [ + 2374 + ], + "_inc": [ + 2375 + ], + "_prepend": [ + 2384 + ], + "_set": [ + 2386 + ], + "pk_columns": [ + 2383, + "game_versions_pk_columns_input!" + ] + } + ], + "update_game_versions_many": [ + 2379, + { + "updates": [ + 2394, + "[game_versions_updates!]!" + ] + } + ], + "update_gamedata_signature_validations": [ + 2412, + { + "_append": [ + 2401 + ], + "_delete_at_path": [ + 2405 + ], + "_delete_elem": [ + 2406 + ], + "_delete_key": [ + 2407 + ], + "_inc": [ + 2408 + ], + "_prepend": [ + 2416 + ], + "_set": [ + 2418 + ], + "where": [ + 2403, + "gamedata_signature_validations_bool_exp!" + ] + } + ], + "update_gamedata_signature_validations_by_pk": [ + 2398, + { + "_append": [ + 2401 + ], + "_delete_at_path": [ + 2405 + ], + "_delete_elem": [ + 2406 + ], + "_delete_key": [ + 2407 + ], + "_inc": [ + 2408 + ], + "_prepend": [ + 2416 + ], + "_set": [ + 2418 + ], + "pk_columns": [ + 2415, + "gamedata_signature_validations_pk_columns_input!" + ] + } + ], + "update_gamedata_signature_validations_many": [ + 2412, + { + "updates": [ + 2426, + "[gamedata_signature_validations_updates!]!" + ] + } + ], + "update_leaderboard_entries": [ + 2451, + { + "_inc": [ + 2447 + ], + "_set": [ + 2454 + ], + "where": [ + 2446, + "leaderboard_entries_bool_exp!" + ] + } + ], + "update_leaderboard_entries_many": [ + 2451, + { + "updates": [ + 2461, + "[leaderboard_entries_updates!]!" + ] + } + ], + "update_league_divisions": [ + 2476, + { + "_inc": [ + 2472 + ], + "_set": [ + 2482 + ], + "where": [ + 2470, + "league_divisions_bool_exp!" + ] + } + ], + "update_league_divisions_by_pk": [ + 2466, + { + "_inc": [ + 2472 + ], + "_set": [ + 2482 + ], + "pk_columns": [ + 2480, + "league_divisions_pk_columns_input!" + ] + } + ], + "update_league_divisions_many": [ + 2476, + { + "updates": [ + 2490, + "[league_divisions_updates!]!" + ] + } + ], + "update_league_match_weeks": [ + 2511, + { + "_inc": [ + 2505 + ], + "_set": [ + 2516 + ], + "where": [ + 2503, + "league_match_weeks_bool_exp!" + ] + } + ], + "update_league_match_weeks_by_pk": [ + 2494, + { + "_inc": [ + 2505 + ], + "_set": [ + 2516 + ], + "pk_columns": [ + 2514, + "league_match_weeks_pk_columns_input!" + ] + } + ], + "update_league_match_weeks_many": [ + 2511, + { + "updates": [ + 2528, + "[league_match_weeks_updates!]!" + ] + } + ], + "update_league_relegation_playoffs": [ + 2552, + { + "_inc": [ + 2546 + ], + "_set": [ + 2557 + ], + "where": [ + 2544, + "league_relegation_playoffs_bool_exp!" + ] + } + ], + "update_league_relegation_playoffs_by_pk": [ + 2535, + { + "_inc": [ + 2546 + ], + "_set": [ + 2557 + ], + "pk_columns": [ + 2555, + "league_relegation_playoffs_pk_columns_input!" + ] + } + ], + "update_league_relegation_playoffs_many": [ + 2552, + { + "updates": [ + 2569, + "[league_relegation_playoffs_updates!]!" + ] + } + ], + "update_league_scheduling_proposals": [ + 2593, + { + "_inc": [ + 2587 + ], + "_set": [ + 2598 + ], + "where": [ + 2585, + "league_scheduling_proposals_bool_exp!" + ] + } + ], + "update_league_scheduling_proposals_by_pk": [ + 2576, + { + "_inc": [ + 2587 + ], + "_set": [ + 2598 + ], + "pk_columns": [ + 2596, + "league_scheduling_proposals_pk_columns_input!" + ] + } + ], + "update_league_scheduling_proposals_many": [ + 2593, + { + "updates": [ + 2610, + "[league_scheduling_proposals_updates!]!" + ] + } + ], + "update_league_season_divisions": [ + 2631, + { + "_set": [ + 2637 + ], + "where": [ + 2624, + "league_season_divisions_bool_exp!" + ] + } + ], + "update_league_season_divisions_by_pk": [ + 2617, + { + "_set": [ + 2637 + ], + "pk_columns": [ + 2635, + "league_season_divisions_pk_columns_input!" + ] + } + ], + "update_league_season_divisions_many": [ + 2631, + { + "updates": [ + 2641, + "[league_season_divisions_updates!]!" + ] + } + ], + "update_league_seasons": [ + 2656, + { + "_append": [ + 2645 + ], + "_delete_at_path": [ + 2649 + ], + "_delete_elem": [ + 2650 + ], + "_delete_key": [ + 2651 + ], + "_inc": [ + 2652 + ], + "_prepend": [ + 2661 + ], + "_set": [ + 2663 + ], + "where": [ + 2647, + "league_seasons_bool_exp!" + ] + } + ], + "update_league_seasons_by_pk": [ + 2642, + { + "_append": [ + 2645 + ], + "_delete_at_path": [ + 2649 + ], + "_delete_elem": [ + 2650 + ], + "_delete_key": [ + 2651 + ], + "_inc": [ + 2652 + ], + "_prepend": [ + 2661 + ], + "_set": [ + 2663 + ], + "pk_columns": [ + 2660, + "league_seasons_pk_columns_input!" + ] + } + ], + "update_league_seasons_many": [ + 2656, + { + "updates": [ + 2671, + "[league_seasons_updates!]!" + ] + } + ], + "update_league_team_movements": [ + 2692, + { + "_inc": [ + 2686 + ], + "_set": [ + 2697 + ], + "where": [ + 2684, + "league_team_movements_bool_exp!" + ] + } + ], + "update_league_team_movements_by_pk": [ + 2675, + { + "_inc": [ + 2686 + ], + "_set": [ + 2697 + ], + "pk_columns": [ + 2695, + "league_team_movements_pk_columns_input!" + ] + } + ], + "update_league_team_movements_many": [ + 2692, + { + "updates": [ + 2709, + "[league_team_movements_updates!]!" + ] + } + ], + "update_league_team_rosters": [ + 2733, + { + "_inc": [ + 2727 + ], + "_set": [ + 2738 + ], + "where": [ + 2725, + "league_team_rosters_bool_exp!" + ] + } + ], + "update_league_team_rosters_by_pk": [ + 2716, + { + "_inc": [ + 2727 + ], + "_set": [ + 2738 + ], + "pk_columns": [ + 2736, + "league_team_rosters_pk_columns_input!" + ] + } + ], + "update_league_team_rosters_many": [ + 2733, + { + "updates": [ + 2750, + "[league_team_rosters_updates!]!" + ] + } + ], + "update_league_team_seasons": [ + 2774, + { + "_inc": [ + 2768 + ], + "_set": [ + 2780 + ], + "where": [ + 2766, + "league_team_seasons_bool_exp!" + ] + } + ], + "update_league_team_seasons_by_pk": [ + 2757, + { + "_inc": [ + 2768 + ], + "_set": [ + 2780 + ], + "pk_columns": [ + 2778, + "league_team_seasons_pk_columns_input!" + ] + } + ], + "update_league_team_seasons_many": [ + 2774, + { + "updates": [ + 2792, + "[league_team_seasons_updates!]!" + ] + } + ], + "update_league_teams": [ + 2807, + { + "_set": [ + 2813 + ], + "where": [ + 2802, + "league_teams_bool_exp!" + ] + } + ], + "update_league_teams_by_pk": [ + 2799, + { + "_set": [ + 2813 + ], + "pk_columns": [ + 2811, + "league_teams_pk_columns_input!" + ] + } + ], + "update_league_teams_many": [ + 2807, + { + "updates": [ + 2817, + "[league_teams_updates!]!" + ] + } + ], + "update_lobbies": [ + 2826, + { + "_set": [ + 2832 + ], + "where": [ + 2821, + "lobbies_bool_exp!" + ] + } + ], + "update_lobbies_by_pk": [ + 2818, + { + "_set": [ + 2832 + ], + "pk_columns": [ + 2830, + "lobbies_pk_columns_input!" + ] + } + ], + "update_lobbies_many": [ + 2826, + { + "updates": [ + 2836, + "[lobbies_updates!]!" + ] + } + ], + "update_lobby_players": [ + 2856, + { + "_inc": [ + 2850 + ], + "_set": [ + 2863 + ], + "where": [ + 2848, + "lobby_players_bool_exp!" + ] + } + ], + "update_lobby_players_by_pk": [ + 2837, + { + "_inc": [ + 2850 + ], + "_set": [ + 2863 + ], + "pk_columns": [ + 2859, + "lobby_players_pk_columns_input!" + ] + } + ], + "update_lobby_players_many": [ + 2856, + { + "updates": [ + 2875, + "[lobby_players_updates!]!" + ] + } + ], + "update_map_callouts": [ + 2894, + { + "_append": [ + 2885 + ], + "_delete_at_path": [ + 2888 + ], + "_delete_elem": [ + 2889 + ], + "_delete_key": [ + 2890 + ], + "_prepend": [ + 2898 + ], + "_set": [ + 2900 + ], + "where": [ + 2886, + "map_callouts_bool_exp!" + ] + } + ], + "update_map_callouts_by_pk": [ + 2882, + { + "_append": [ + 2885 + ], + "_delete_at_path": [ + 2888 + ], + "_delete_elem": [ + 2889 + ], + "_delete_key": [ + 2890 + ], + "_prepend": [ + 2898 + ], + "_set": [ + 2900 + ], + "pk_columns": [ + 2897, + "map_callouts_pk_columns_input!" + ] + } + ], + "update_map_callouts_many": [ + 2894, + { + "updates": [ + 2904, + "[map_callouts_updates!]!" + ] + } + ], + "update_map_pools": [ + 2913, + { + "_set": [ + 2919 + ], + "where": [ + 2908, + "map_pools_bool_exp!" + ] + } + ], + "update_map_pools_by_pk": [ + 2905, + { + "_set": [ + 2919 + ], + "pk_columns": [ + 2917, + "map_pools_pk_columns_input!" + ] + } + ], + "update_map_pools_many": [ + 2913, + { + "updates": [ + 2923, + "[map_pools_updates!]!" + ] + } + ], + "update_maps": [ + 2940, + { + "_set": [ + 2948 + ], + "where": [ + 2933, + "maps_bool_exp!" + ] + } + ], + "update_maps_by_pk": [ + 2924, + { + "_set": [ + 2948 + ], + "pk_columns": [ + 2944, + "maps_pk_columns_input!" + ] + } + ], + "update_maps_many": [ + 2940, + { + "updates": [ + 2952, + "[maps_updates!]!" + ] + } + ], + "update_match_clips": [ + 2970, + { + "_inc": [ + 2964 + ], + "_set": [ + 2976 + ], + "where": [ + 2962, + "match_clips_bool_exp!" + ] + } + ], + "update_match_clips_by_pk": [ + 2953, + { + "_inc": [ + 2964 + ], + "_set": [ + 2976 + ], + "pk_columns": [ + 2974, + "match_clips_pk_columns_input!" + ] + } + ], + "update_match_clips_many": [ + 2970, + { + "updates": [ + 2988, + "[match_clips_updates!]!" + ] + } + ], + "update_match_demo_sessions": [ + 3016, + { + "_append": [ + 3001 + ], + "_delete_at_path": [ + 3007 + ], + "_delete_elem": [ + 3008 + ], + "_delete_key": [ + 3009 + ], + "_inc": [ + 3010 + ], + "_prepend": [ + 3020 + ], + "_set": [ + 3022 + ], + "where": [ + 3005, + "match_demo_sessions_bool_exp!" + ] + } + ], + "update_match_demo_sessions_by_pk": [ + 2995, + { + "_append": [ + 3001 + ], + "_delete_at_path": [ + 3007 + ], + "_delete_elem": [ + 3008 + ], + "_delete_key": [ + 3009 + ], + "_inc": [ + 3010 + ], + "_prepend": [ + 3020 + ], + "_set": [ + 3022 + ], + "pk_columns": [ + 3019, + "match_demo_sessions_pk_columns_input!" + ] + } + ], + "update_match_demo_sessions_many": [ + 3016, + { + "updates": [ + 3034, + "[match_demo_sessions_updates!]!" + ] + } + ], + "update_match_lineup_players": [ + 3060, + { + "_inc": [ + 3054 + ], + "_set": [ + 3067 + ], + "where": [ + 3052, + "match_lineup_players_bool_exp!" + ] + } + ], + "update_match_lineup_players_by_pk": [ + 3041, + { + "_inc": [ + 3054 + ], + "_set": [ + 3067 + ], + "pk_columns": [ + 3063, + "match_lineup_players_pk_columns_input!" + ] + } + ], + "update_match_lineup_players_many": [ + 3060, + { + "updates": [ + 3079, + "[match_lineup_players_updates!]!" + ] + } + ], + "update_match_lineups": [ + 3103, + { + "_inc": [ + 3097 + ], + "_set": [ + 3109 + ], + "where": [ + 3095, + "match_lineups_bool_exp!" + ] + } + ], + "update_match_lineups_by_pk": [ + 3086, + { + "_inc": [ + 3097 + ], + "_set": [ + 3109 + ], + "pk_columns": [ + 3107, + "match_lineups_pk_columns_input!" + ] + } + ], + "update_match_lineups_many": [ + 3103, + { + "updates": [ + 3121, + "[match_lineups_updates!]!" + ] + } + ], + "update_match_map_demos": [ + 3151, + { + "_append": [ + 3136 + ], + "_delete_at_path": [ + 3142 + ], + "_delete_elem": [ + 3143 + ], + "_delete_key": [ + 3144 + ], + "_inc": [ + 3145 + ], + "_prepend": [ + 3156 + ], + "_set": [ + 3160 + ], + "where": [ + 3140, + "match_map_demos_bool_exp!" + ] + } + ], + "update_match_map_demos_by_pk": [ + 3128, + { + "_append": [ + 3136 + ], + "_delete_at_path": [ + 3142 + ], + "_delete_elem": [ + 3143 + ], + "_delete_key": [ + 3144 + ], + "_inc": [ + 3145 + ], + "_prepend": [ + 3156 + ], + "_set": [ + 3160 + ], + "pk_columns": [ + 3155, + "match_map_demos_pk_columns_input!" + ] + } + ], + "update_match_map_demos_many": [ + 3151, + { + "updates": [ + 3172, + "[match_map_demos_updates!]!" + ] + } + ], + "update_match_map_rounds": [ + 3196, + { + "_inc": [ + 3190 + ], + "_set": [ + 3201 + ], + "where": [ + 3188, + "match_map_rounds_bool_exp!" + ] + } + ], + "update_match_map_rounds_by_pk": [ + 3179, + { + "_inc": [ + 3190 + ], + "_set": [ + 3201 + ], + "pk_columns": [ + 3199, + "match_map_rounds_pk_columns_input!" + ] + } + ], + "update_match_map_rounds_many": [ + 3196, + { + "updates": [ + 3213, + "[match_map_rounds_updates!]!" + ] + } + ], + "update_match_map_veto_picks": [ + 3236, + { + "_set": [ + 3243 + ], + "where": [ + 3229, + "match_map_veto_picks_bool_exp!" + ] + } + ], + "update_match_map_veto_picks_by_pk": [ + 3220, + { + "_set": [ + 3243 + ], + "pk_columns": [ + 3239, + "match_map_veto_picks_pk_columns_input!" + ] + } + ], + "update_match_map_veto_picks_many": [ + 3236, + { + "updates": [ + 3247, + "[match_map_veto_picks_updates!]!" + ] + } + ], + "update_match_maps": [ + 3265, + { + "_inc": [ + 3259 + ], + "_set": [ + 3271 + ], + "where": [ + 3257, + "match_maps_bool_exp!" + ] + } + ], + "update_match_maps_by_pk": [ + 3248, + { + "_inc": [ + 3259 + ], + "_set": [ + 3271 + ], + "pk_columns": [ + 3269, + "match_maps_pk_columns_input!" + ] + } + ], + "update_match_maps_many": [ + 3265, + { + "updates": [ + 3283, + "[match_maps_updates!]!" + ] + } + ], + "update_match_options": [ + 3309, + { + "_inc": [ + 3303 + ], + "_set": [ + 3317 + ], + "where": [ + 3301, + "match_options_bool_exp!" + ] + } + ], + "update_match_options_by_pk": [ + 3290, + { + "_inc": [ + 3303 + ], + "_set": [ + 3317 + ], + "pk_columns": [ + 3313, + "match_options_pk_columns_input!" + ] + } + ], + "update_match_options_many": [ + 3309, + { + "updates": [ + 3329, + "[match_options_updates!]!" + ] + } + ], + "update_match_region_veto_picks": [ + 3352, + { + "_set": [ + 3359 + ], + "where": [ + 3345, + "match_region_veto_picks_bool_exp!" + ] + } + ], + "update_match_region_veto_picks_by_pk": [ + 3336, + { + "_set": [ + 3359 + ], + "pk_columns": [ + 3355, + "match_region_veto_picks_pk_columns_input!" + ] + } + ], + "update_match_region_veto_picks_many": [ + 3352, + { + "updates": [ + 3363, + "[match_region_veto_picks_updates!]!" + ] + } + ], + "update_match_streams": [ + 3387, + { + "_append": [ + 3372 + ], + "_delete_at_path": [ + 3378 + ], + "_delete_elem": [ + 3379 + ], + "_delete_key": [ + 3380 + ], + "_inc": [ + 3381 + ], + "_prepend": [ + 3391 + ], + "_set": [ + 3395 + ], + "where": [ + 3376, + "match_streams_bool_exp!" + ] + } + ], + "update_match_streams_by_pk": [ + 3364, + { + "_append": [ + 3372 + ], + "_delete_at_path": [ + 3378 + ], + "_delete_elem": [ + 3379 + ], + "_delete_key": [ + 3380 + ], + "_inc": [ + 3381 + ], + "_prepend": [ + 3391 + ], + "_set": [ + 3395 + ], + "pk_columns": [ + 3390, + "match_streams_pk_columns_input!" + ] + } + ], + "update_match_streams_many": [ + 3387, + { + "updates": [ + 3407, + "[match_streams_updates!]!" + ] + } + ], + "update_match_type_cfgs": [ + 3422, + { + "_set": [ + 3427 + ], + "where": [ + 3417, + "match_type_cfgs_bool_exp!" + ] + } + ], + "update_match_type_cfgs_by_pk": [ + 3414, + { + "_set": [ + 3427 + ], + "pk_columns": [ + 3425, + "match_type_cfgs_pk_columns_input!" + ] + } + ], + "update_match_type_cfgs_many": [ + 3422, + { + "updates": [ + 3431, + "[match_type_cfgs_updates!]!" + ] + } + ], + "update_matches": [ + 3451, + { + "_inc": [ + 3445 + ], + "_set": [ + 3459 + ], + "where": [ + 3443, + "matches_bool_exp!" + ] + } + ], + "update_matches_by_pk": [ + 3432, + { + "_inc": [ + 3445 + ], + "_set": [ + 3459 + ], + "pk_columns": [ + 3455, + "matches_pk_columns_input!" + ] + } + ], + "update_matches_many": [ + 3451, + { + "updates": [ + 3471, + "[matches_updates!]!" + ] + } + ], + "update_migration_hashes_hashes": [ + 3486, + { + "_set": [ + 3491 + ], + "where": [ + 3481, + "migration_hashes_hashes_bool_exp!" + ] + } + ], + "update_migration_hashes_hashes_by_pk": [ + 3478, + { + "_set": [ + 3491 + ], + "pk_columns": [ + 3489, + "migration_hashes_hashes_pk_columns_input!" + ] + } + ], + "update_migration_hashes_hashes_many": [ + 3486, + { + "updates": [ + 3495, + "[migration_hashes_hashes_updates!]!" + ] + } + ], + "update_my_friends": [ + 3518, + { + "_append": [ + 3504 + ], + "_delete_at_path": [ + 3509 + ], + "_delete_elem": [ + 3510 + ], + "_delete_key": [ + 3511 + ], + "_inc": [ + 3512 + ], + "_prepend": [ + 3520 + ], + "_set": [ + 3524 + ], + "where": [ + 3508, + "my_friends_bool_exp!" + ] + } + ], + "update_my_friends_many": [ + 3518, + { + "updates": [ + 3535, + "[my_friends_updates!]!" + ] + } + ], + "update_news_articles": [ + 3552, + { + "_inc": [ + 3548 + ], + "_set": [ + 3557 + ], + "where": [ + 3546, + "news_articles_bool_exp!" + ] + } + ], + "update_news_articles_by_pk": [ + 3542, + { + "_inc": [ + 3548 + ], + "_set": [ + 3557 + ], + "pk_columns": [ + 3555, + "news_articles_pk_columns_input!" + ] + } + ], + "update_news_articles_many": [ + 3552, + { + "updates": [ + 3565, + "[news_articles_updates!]!" + ] + } + ], + "update_notification_preferences": [ + 3579, + { + "_inc": [ + 3575 + ], + "_set": [ + 3584 + ], + "where": [ + 3573, + "notification_preferences_bool_exp!" + ] + } + ], + "update_notification_preferences_by_pk": [ + 3569, + { + "_inc": [ + 3575 + ], + "_set": [ + 3584 + ], + "pk_columns": [ + 3582, + "notification_preferences_pk_columns_input!" + ] + } + ], + "update_notification_preferences_many": [ + 3579, + { + "updates": [ + 3592, + "[notification_preferences_updates!]!" + ] + } + ], + "update_notifications": [ + 3619, + { + "_append": [ + 3604 + ], + "_delete_at_path": [ + 3610 + ], + "_delete_elem": [ + 3611 + ], + "_delete_key": [ + 3612 + ], + "_inc": [ + 3613 + ], + "_prepend": [ + 3623 + ], + "_set": [ + 3627 + ], + "where": [ + 3608, + "notifications_bool_exp!" + ] + } + ], + "update_notifications_by_pk": [ + 3596, + { + "_append": [ + 3604 + ], + "_delete_at_path": [ + 3610 + ], + "_delete_elem": [ + 3611 + ], + "_delete_key": [ + 3612 + ], + "_inc": [ + 3613 + ], + "_prepend": [ + 3623 + ], + "_set": [ + 3627 + ], + "pk_columns": [ + 3622, + "notifications_pk_columns_input!" + ] + } + ], + "update_notifications_many": [ + 3619, + { + "updates": [ + 3639, + "[notifications_updates!]!" + ] + } + ], + "update_pending_match_import_players": [ + 3666, + { + "_inc": [ + 3660 + ], + "_set": [ + 3671 + ], + "where": [ + 3658, + "pending_match_import_players_bool_exp!" + ] + } + ], + "update_pending_match_import_players_by_pk": [ + 3649, + { + "_inc": [ + 3660 + ], + "_set": [ + 3671 + ], + "pk_columns": [ + 3669, + "pending_match_import_players_pk_columns_input!" + ] + } + ], + "update_pending_match_import_players_many": [ + 3666, + { + "updates": [ + 3683, + "[pending_match_import_players_updates!]!" + ] + } + ], + "update_pending_match_imports": [ + 3700, + { + "_inc": [ + 3696 + ], + "_set": [ + 3706 + ], + "where": [ + 3694, + "pending_match_imports_bool_exp!" + ] + } + ], + "update_pending_match_imports_by_pk": [ + 3690, + { + "_inc": [ + 3696 + ], + "_set": [ + 3706 + ], + "pk_columns": [ + 3704, + "pending_match_imports_pk_columns_input!" + ] + } + ], + "update_pending_match_imports_many": [ + 3700, + { + "updates": [ + 3714, + "[pending_match_imports_updates!]!" + ] + } + ], + "update_player_aim_stats_demo": [ + 3728, + { + "_inc": [ + 3724 + ], + "_set": [ + 3733 + ], + "where": [ + 3722, + "player_aim_stats_demo_bool_exp!" + ] + } + ], + "update_player_aim_stats_demo_by_pk": [ + 3718, + { + "_inc": [ + 3724 + ], + "_set": [ + 3733 + ], + "pk_columns": [ + 3731, + "player_aim_stats_demo_pk_columns_input!" + ] + } + ], + "update_player_aim_stats_demo_many": [ + 3728, + { + "updates": [ + 3741, + "[player_aim_stats_demo_updates!]!" + ] + } + ], + "update_player_aim_weapon_stats": [ + 3762, + { + "_inc": [ + 3756 + ], + "_set": [ + 3767 + ], + "where": [ + 3754, + "player_aim_weapon_stats_bool_exp!" + ] + } + ], + "update_player_aim_weapon_stats_by_pk": [ + 3745, + { + "_inc": [ + 3756 + ], + "_set": [ + 3767 + ], + "pk_columns": [ + 3765, + "player_aim_weapon_stats_pk_columns_input!" + ] + } + ], + "update_player_aim_weapon_stats_many": [ + 3762, + { + "updates": [ + 3779, + "[player_aim_weapon_stats_updates!]!" + ] + } + ], + "update_player_assists": [ + 3805, + { + "_inc": [ + 3799 + ], + "_set": [ + 3812 + ], + "where": [ + 3797, + "player_assists_bool_exp!" + ] + } + ], + "update_player_assists_by_pk": [ + 3786, + { + "_inc": [ + 3799 + ], + "_set": [ + 3812 + ], + "pk_columns": [ + 3808, + "player_assists_pk_columns_input!" + ] + } + ], + "update_player_assists_many": [ + 3805, + { + "updates": [ + 3824, + "[player_assists_updates!]!" + ] + } + ], + "update_player_damages": [ + 3866, + { + "_inc": [ + 3860 + ], + "_set": [ + 3871 + ], + "where": [ + 3858, + "player_damages_bool_exp!" + ] + } + ], + "update_player_damages_by_pk": [ + 3849, + { + "_inc": [ + 3860 + ], + "_set": [ + 3871 + ], + "pk_columns": [ + 3869, + "player_damages_pk_columns_input!" + ] + } + ], + "update_player_damages_many": [ + 3866, + { + "updates": [ + 3883, + "[player_damages_updates!]!" + ] + } + ], + "update_player_elo": [ + 3900, + { + "_inc": [ + 3896 + ], + "_set": [ + 3905 + ], + "where": [ + 3894, + "player_elo_bool_exp!" + ] + } + ], + "update_player_elo_by_pk": [ + 3890, + { + "_inc": [ + 3896 + ], + "_set": [ + 3905 + ], + "pk_columns": [ + 3903, + "player_elo_pk_columns_input!" + ] + } + ], + "update_player_elo_many": [ + 3900, + { + "updates": [ + 3913, + "[player_elo_updates!]!" + ] + } + ], + "update_player_faceit_rank_history": [ + 3934, + { + "_inc": [ + 3928 + ], + "_set": [ + 3939 + ], + "where": [ + 3926, + "player_faceit_rank_history_bool_exp!" + ] + } + ], + "update_player_faceit_rank_history_by_pk": [ + 3917, + { + "_inc": [ + 3928 + ], + "_set": [ + 3939 + ], + "pk_columns": [ + 3937, + "player_faceit_rank_history_pk_columns_input!" + ] + } + ], + "update_player_faceit_rank_history_many": [ + 3934, + { + "updates": [ + 3951, + "[player_faceit_rank_history_updates!]!" + ] + } + ], + "update_player_flashes": [ + 3977, + { + "_inc": [ + 3971 + ], + "_set": [ + 3984 + ], + "where": [ + 3969, + "player_flashes_bool_exp!" + ] + } + ], + "update_player_flashes_by_pk": [ + 3958, + { + "_inc": [ + 3971 + ], + "_set": [ + 3984 + ], + "pk_columns": [ + 3980, + "player_flashes_pk_columns_input!" + ] + } + ], + "update_player_flashes_many": [ + 3977, + { + "updates": [ + 3996, + "[player_flashes_updates!]!" + ] + } + ], + "update_player_kills": [ + 4063, + { + "_inc": [ + 4057 + ], + "_set": [ + 4070 + ], + "where": [ + 4014, + "player_kills_bool_exp!" + ] + } + ], + "update_player_kills_by_pk": [ + 4003, + { + "_inc": [ + 4057 + ], + "_set": [ + 4070 + ], + "pk_columns": [ + 4066, + "player_kills_pk_columns_input!" + ] + } + ], + "update_player_kills_by_weapon": [ + 4032, + { + "_inc": [ + 4026 + ], + "_set": [ + 4037 + ], + "where": [ + 4024, + "player_kills_by_weapon_bool_exp!" + ] + } + ], + "update_player_kills_by_weapon_by_pk": [ + 4015, + { + "_inc": [ + 4026 + ], + "_set": [ + 4037 + ], + "pk_columns": [ + 4035, + "player_kills_by_weapon_pk_columns_input!" + ] + } + ], + "update_player_kills_by_weapon_many": [ + 4032, + { + "updates": [ + 4049, + "[player_kills_by_weapon_updates!]!" + ] + } + ], + "update_player_kills_many": [ + 4063, + { + "updates": [ + 4082, + "[player_kills_updates!]!" + ] + } + ], + "update_player_leaderboard_rank": [ + 4098, + { + "_inc": [ + 4094 + ], + "_set": [ + 4101 + ], + "where": [ + 4093, + "player_leaderboard_rank_bool_exp!" + ] + } + ], + "update_player_leaderboard_rank_many": [ + 4098, + { + "updates": [ + 4108, + "[player_leaderboard_rank_updates!]!" + ] + } + ], + "update_player_match_map_stats": [ + 4129, + { + "_inc": [ + 4123 + ], + "_set": [ + 4134 + ], + "where": [ + 4121, + "player_match_map_stats_bool_exp!" + ] + } + ], + "update_player_match_map_stats_by_pk": [ + 4112, + { + "_inc": [ + 4123 + ], + "_set": [ + 4134 + ], + "pk_columns": [ + 4132, + "player_match_map_stats_pk_columns_input!" + ] + } + ], + "update_player_match_map_stats_many": [ + 4129, + { + "updates": [ + 4146, + "[player_match_map_stats_updates!]!" + ] + } + ], + "update_player_objectives": [ + 4221, + { + "_inc": [ + 4215 + ], + "_set": [ + 4226 + ], + "where": [ + 4213, + "player_objectives_bool_exp!" + ] + } + ], + "update_player_objectives_by_pk": [ + 4204, + { + "_inc": [ + 4215 + ], + "_set": [ + 4226 + ], + "pk_columns": [ + 4224, + "player_objectives_pk_columns_input!" + ] + } + ], + "update_player_objectives_many": [ + 4221, + { + "updates": [ + 4238, + "[player_objectives_updates!]!" + ] + } + ], + "update_player_premier_rank_history": [ + 4280, + { + "_inc": [ + 4274 + ], + "_set": [ + 4285 + ], + "where": [ + 4272, + "player_premier_rank_history_bool_exp!" + ] + } + ], + "update_player_premier_rank_history_by_pk": [ + 4263, + { + "_inc": [ + 4274 + ], + "_set": [ + 4285 + ], + "pk_columns": [ + 4283, + "player_premier_rank_history_pk_columns_input!" + ] + } + ], + "update_player_premier_rank_history_many": [ + 4280, + { + "updates": [ + 4297, + "[player_premier_rank_history_updates!]!" + ] + } + ], + "update_player_sanctions": [ + 4321, + { + "_inc": [ + 4315 + ], + "_set": [ + 4326 + ], + "where": [ + 4313, + "player_sanctions_bool_exp!" + ] + } + ], + "update_player_sanctions_by_pk": [ + 4304, + { + "_inc": [ + 4315 + ], + "_set": [ + 4326 + ], + "pk_columns": [ + 4324, + "player_sanctions_pk_columns_input!" + ] + } + ], + "update_player_sanctions_many": [ + 4321, + { + "updates": [ + 4338, + "[player_sanctions_updates!]!" + ] + } + ], + "update_player_season_stats": [ + 4372, + { + "_inc": [ + 4366 + ], + "_set": [ + 4385 + ], + "where": [ + 4364, + "player_season_stats_bool_exp!" + ] + } + ], + "update_player_season_stats_by_pk": [ + 4345, + { + "_inc": [ + 4366 + ], + "_set": [ + 4385 + ], + "pk_columns": [ + 4375, + "player_season_stats_pk_columns_input!" + ] + } + ], + "update_player_season_stats_many": [ + 4372, + { + "updates": [ + 4397, + "[player_season_stats_updates!]!" + ] + } + ], + "update_player_stats": [ + 4414, + { + "_inc": [ + 4410 + ], + "_set": [ + 4420 + ], + "where": [ + 4408, + "player_stats_bool_exp!" + ] + } + ], + "update_player_stats_by_pk": [ + 4404, + { + "_inc": [ + 4410 + ], + "_set": [ + 4420 + ], + "pk_columns": [ + 4418, + "player_stats_pk_columns_input!" + ] + } + ], + "update_player_stats_many": [ + 4414, + { + "updates": [ + 4428, + "[player_stats_updates!]!" + ] + } + ], + "update_player_steam_bot_friend": [ + 4446, + { + "_append": [ + 4435 + ], + "_delete_at_path": [ + 4439 + ], + "_delete_elem": [ + 4440 + ], + "_delete_key": [ + 4441 + ], + "_inc": [ + 4442 + ], + "_prepend": [ + 4450 + ], + "_set": [ + 4452 + ], + "where": [ + 4437, + "player_steam_bot_friend_bool_exp!" + ] + } + ], + "update_player_steam_bot_friend_by_pk": [ + 4432, + { + "_append": [ + 4435 + ], + "_delete_at_path": [ + 4439 + ], + "_delete_elem": [ + 4440 + ], + "_delete_key": [ + 4441 + ], + "_inc": [ + 4442 + ], + "_prepend": [ + 4450 + ], + "_set": [ + 4452 + ], + "pk_columns": [ + 4449, + "player_steam_bot_friend_pk_columns_input!" + ] + } + ], + "update_player_steam_bot_friend_many": [ + 4446, + { + "updates": [ + 4460, + "[player_steam_bot_friend_updates!]!" + ] + } + ], + "update_player_steam_match_auth": [ + 4474, + { + "_inc": [ + 4470 + ], + "_set": [ + 4479 + ], + "where": [ + 4468, + "player_steam_match_auth_bool_exp!" + ] + } + ], + "update_player_steam_match_auth_by_pk": [ + 4464, + { + "_inc": [ + 4470 + ], + "_set": [ + 4479 + ], + "pk_columns": [ + 4477, + "player_steam_match_auth_pk_columns_input!" + ] + } + ], + "update_player_steam_match_auth_many": [ + 4474, + { + "updates": [ + 4487, + "[player_steam_match_auth_updates!]!" + ] + } + ], + "update_player_unused_utility": [ + 4508, + { + "_inc": [ + 4502 + ], + "_set": [ + 4513 + ], + "where": [ + 4500, + "player_unused_utility_bool_exp!" + ] + } + ], + "update_player_unused_utility_by_pk": [ + 4491, + { + "_inc": [ + 4502 + ], + "_set": [ + 4513 + ], + "pk_columns": [ + 4511, + "player_unused_utility_pk_columns_input!" + ] + } + ], + "update_player_unused_utility_many": [ + 4508, + { + "updates": [ + 4525, + "[player_unused_utility_updates!]!" + ] + } + ], + "update_player_utility": [ + 4549, + { + "_inc": [ + 4543 + ], + "_set": [ + 4554 + ], + "where": [ + 4541, + "player_utility_bool_exp!" + ] + } + ], + "update_player_utility_by_pk": [ + 4532, + { + "_inc": [ + 4543 + ], + "_set": [ + 4554 + ], + "pk_columns": [ + 4552, + "player_utility_pk_columns_input!" + ] + } + ], + "update_player_utility_many": [ + 4549, + { + "updates": [ + 4566, + "[player_utility_updates!]!" + ] + } + ], + "update_players": [ + 4616, + { + "_inc": [ + 4612 + ], + "_set": [ + 4622 + ], + "where": [ + 4610, + "players_bool_exp!" + ] + } + ], + "update_players_by_pk": [ + 4606, + { + "_inc": [ + 4612 + ], + "_set": [ + 4622 + ], + "pk_columns": [ + 4620, + "players_pk_columns_input!" + ] + } + ], + "update_players_many": [ + 4616, + { + "updates": [ + 4630, + "[players_updates!]!" + ] + } + ], + "update_plugin_versions": [ + 4644, + { + "_inc": [ + 4640 + ], + "_set": [ + 4649 + ], + "where": [ + 4638, + "plugin_versions_bool_exp!" + ] + } + ], + "update_plugin_versions_by_pk": [ + 4634, + { + "_inc": [ + 4640 + ], + "_set": [ + 4649 + ], + "pk_columns": [ + 4647, + "plugin_versions_pk_columns_input!" + ] + } + ], + "update_plugin_versions_many": [ + 4644, + { + "updates": [ + 4657, + "[plugin_versions_updates!]!" + ] + } + ], + "update_push_subscriptions": [ + 4671, + { + "_inc": [ + 4667 + ], + "_set": [ + 4676 + ], + "where": [ + 4665, + "push_subscriptions_bool_exp!" + ] + } + ], + "update_push_subscriptions_by_pk": [ + 4661, + { + "_inc": [ + 4667 + ], + "_set": [ + 4676 + ], + "pk_columns": [ + 4674, + "push_subscriptions_pk_columns_input!" + ] + } + ], + "update_push_subscriptions_many": [ + 4671, + { + "updates": [ + 4684, + "[push_subscriptions_updates!]!" + ] + } + ], + "update_role_permissions": [ + 4699, + { + "_set": [ + 4702 + ], + "where": [ + 4695, + "role_permissions_bool_exp!" + ] + } + ], + "update_role_permissions_many": [ + 4699, + { + "updates": [ + 4705, + "[role_permissions_updates!]!" + ] + } + ], + "update_seasons": [ + 4716, + { + "_inc": [ + 4712 + ], + "_set": [ + 4722 + ], + "where": [ + 4710, + "seasons_bool_exp!" + ] + } + ], + "update_seasons_by_pk": [ + 4706, + { + "_inc": [ + 4712 + ], + "_set": [ + 4722 + ], + "pk_columns": [ + 4720, + "seasons_pk_columns_input!" + ] + } + ], + "update_seasons_many": [ + 4716, + { + "updates": [ + 4730, + "[seasons_updates!]!" + ] + } + ], + "update_server_regions": [ + 4743, + { + "_set": [ + 4749 + ], + "where": [ + 4738, + "server_regions_bool_exp!" + ] + } + ], + "update_server_regions_by_pk": [ + 4734, + { + "_set": [ + 4749 + ], + "pk_columns": [ + 4747, + "server_regions_pk_columns_input!" + ] + } + ], + "update_server_regions_many": [ + 4743, + { + "updates": [ + 4757, + "[server_regions_updates!]!" + ] + } + ], + "update_servers": [ + 4784, + { + "_append": [ + 4769 + ], + "_delete_at_path": [ + 4775 + ], + "_delete_elem": [ + 4776 + ], + "_delete_key": [ + 4777 + ], + "_inc": [ + 4778 + ], + "_prepend": [ + 4789 + ], + "_set": [ + 4793 + ], + "where": [ + 4773, + "servers_bool_exp!" + ] + } + ], + "update_servers_by_pk": [ + 4761, + { + "_append": [ + 4769 + ], + "_delete_at_path": [ + 4775 + ], + "_delete_elem": [ + 4776 + ], + "_delete_key": [ + 4777 + ], + "_inc": [ + 4778 + ], + "_prepend": [ + 4789 + ], + "_set": [ + 4793 + ], + "pk_columns": [ + 4788, + "servers_pk_columns_input!" + ] + } + ], + "update_servers_many": [ + 4784, + { + "updates": [ + 4805, + "[servers_updates!]!" + ] + } + ], + "update_settings": [ + 4820, + { + "_set": [ + 4825 + ], + "where": [ + 4815, + "settings_bool_exp!" + ] + } + ], + "update_settings_by_pk": [ + 4812, + { + "_set": [ + 4825 + ], + "pk_columns": [ + 4823, + "settings_pk_columns_input!" + ] + } + ], + "update_settings_many": [ + 4820, + { + "updates": [ + 4829, + "[settings_updates!]!" + ] + } + ], + "update_steam_account_claims": [ + 4846, + { + "_set": [ + 4851 + ], + "where": [ + 4839, + "steam_account_claims_bool_exp!" + ] + } + ], + "update_steam_account_claims_by_pk": [ + 4832, + { + "_set": [ + 4851 + ], + "pk_columns": [ + 4849, + "steam_account_claims_pk_columns_input!" + ] + } + ], + "update_steam_account_claims_many": [ + 4846, + { + "updates": [ + 4855, + "[steam_account_claims_updates!]!" + ] + } + ], + "update_steam_accounts": [ + 4866, + { + "_inc": [ + 4862 + ], + "_set": [ + 4872 + ], + "where": [ + 4860, + "steam_accounts_bool_exp!" + ] + } + ], + "update_steam_accounts_by_pk": [ + 4856, + { + "_inc": [ + 4862 + ], + "_set": [ + 4872 + ], + "pk_columns": [ + 4870, + "steam_accounts_pk_columns_input!" + ] + } + ], + "update_steam_accounts_many": [ + 4866, + { + "updates": [ + 4880, + "[steam_accounts_updates!]!" + ] + } + ], + "update_system_alerts": [ + 4894, + { + "_inc": [ + 4890 + ], + "_set": [ + 4899 + ], + "where": [ + 4888, + "system_alerts_bool_exp!" + ] + } + ], + "update_system_alerts_by_pk": [ + 4884, + { + "_inc": [ + 4890 + ], + "_set": [ + 4899 + ], + "pk_columns": [ + 4897, + "system_alerts_pk_columns_input!" + ] + } + ], + "update_system_alerts_many": [ + 4894, + { + "updates": [ + 4907, + "[system_alerts_updates!]!" + ] + } + ], + "update_team_invites": [ + 4928, + { + "_inc": [ + 4922 + ], + "_set": [ + 4933 + ], + "where": [ + 4920, + "team_invites_bool_exp!" + ] + } + ], + "update_team_invites_by_pk": [ + 4911, + { + "_inc": [ + 4922 + ], + "_set": [ + 4933 + ], + "pk_columns": [ + 4931, + "team_invites_pk_columns_input!" + ] + } + ], + "update_team_invites_many": [ + 4928, + { + "updates": [ + 4945, + "[team_invites_updates!]!" + ] + } + ], + "update_team_roster": [ + 4971, + { + "_inc": [ + 4965 + ], + "_set": [ + 4978 + ], + "where": [ + 4963, + "team_roster_bool_exp!" + ] + } + ], + "update_team_roster_by_pk": [ + 4952, + { + "_inc": [ + 4965 + ], + "_set": [ + 4978 + ], + "pk_columns": [ + 4974, + "team_roster_pk_columns_input!" + ] + } + ], + "update_team_roster_many": [ + 4971, + { + "updates": [ + 4990, + "[team_roster_updates!]!" + ] + } + ], + "update_team_scrim_alerts": [ + 5007, + { + "_inc": [ + 5003 + ], + "_set": [ + 5012 + ], + "where": [ + 5001, + "team_scrim_alerts_bool_exp!" + ] + } + ], + "update_team_scrim_alerts_by_pk": [ + 4997, + { + "_inc": [ + 5003 + ], + "_set": [ + 5012 + ], + "pk_columns": [ + 5010, + "team_scrim_alerts_pk_columns_input!" + ] + } + ], + "update_team_scrim_alerts_many": [ + 5007, + { + "updates": [ + 5020, + "[team_scrim_alerts_updates!]!" + ] + } + ], + "update_team_scrim_availability": [ + 5040, + { + "_set": [ + 5047 + ], + "where": [ + 5033, + "team_scrim_availability_bool_exp!" + ] + } + ], + "update_team_scrim_availability_by_pk": [ + 5024, + { + "_set": [ + 5047 + ], + "pk_columns": [ + 5043, + "team_scrim_availability_pk_columns_input!" + ] + } + ], + "update_team_scrim_availability_many": [ + 5040, + { + "updates": [ + 5051, + "[team_scrim_availability_updates!]!" + ] + } + ], + "update_team_scrim_request_proposals": [ + 5069, + { + "_inc": [ + 5063 + ], + "_set": [ + 5074 + ], + "where": [ + 5061, + "team_scrim_request_proposals_bool_exp!" + ] + } + ], + "update_team_scrim_request_proposals_by_pk": [ + 5052, + { + "_inc": [ + 5063 + ], + "_set": [ + 5074 + ], + "pk_columns": [ + 5072, + "team_scrim_request_proposals_pk_columns_input!" + ] + } + ], + "update_team_scrim_request_proposals_many": [ + 5069, + { + "updates": [ + 5086, + "[team_scrim_request_proposals_updates!]!" + ] + } + ], + "update_team_scrim_requests": [ + 5112, + { + "_inc": [ + 5106 + ], + "_set": [ + 5120 + ], + "where": [ + 5104, + "team_scrim_requests_bool_exp!" + ] + } + ], + "update_team_scrim_requests_by_pk": [ + 5093, + { + "_inc": [ + 5106 + ], + "_set": [ + 5120 + ], + "pk_columns": [ + 5116, + "team_scrim_requests_pk_columns_input!" + ] + } + ], + "update_team_scrim_requests_many": [ + 5112, + { + "updates": [ + 5132, + "[team_scrim_requests_updates!]!" + ] + } + ], + "update_team_scrim_settings": [ + 5149, + { + "_inc": [ + 5145 + ], + "_set": [ + 5155 + ], + "where": [ + 5143, + "team_scrim_settings_bool_exp!" + ] + } + ], + "update_team_scrim_settings_by_pk": [ + 5139, + { + "_inc": [ + 5145 + ], + "_set": [ + 5155 + ], + "pk_columns": [ + 5153, + "team_scrim_settings_pk_columns_input!" + ] + } + ], + "update_team_scrim_settings_many": [ + 5149, + { + "updates": [ + 5163, + "[team_scrim_settings_updates!]!" + ] + } + ], + "update_team_suggestions": [ + 5177, + { + "_inc": [ + 5173 + ], + "_set": [ + 5182 + ], + "where": [ + 5171, + "team_suggestions_bool_exp!" + ] + } + ], + "update_team_suggestions_by_pk": [ + 5167, + { + "_inc": [ + 5173 + ], + "_set": [ + 5182 + ], + "pk_columns": [ + 5180, + "team_suggestions_pk_columns_input!" + ] + } + ], + "update_team_suggestions_many": [ + 5177, + { + "updates": [ + 5190, + "[team_suggestions_updates!]!" + ] + } + ], + "update_teams": [ + 5213, + { + "_inc": [ + 5207 + ], + "_set": [ + 5221 + ], + "where": [ + 5205, + "teams_bool_exp!" + ] + } + ], + "update_teams_by_pk": [ + 5194, + { + "_inc": [ + 5207 + ], + "_set": [ + 5221 + ], + "pk_columns": [ + 5217, + "teams_pk_columns_input!" + ] + } + ], + "update_teams_many": [ + 5213, + { + "updates": [ + 5233, + "[teams_updates!]!" + ] + } + ], + "update_tournament_awards": [ + 5262, + { + "_inc": [ + 5256 + ], + "_set": [ + 5268 + ], + "where": [ + 5254, + "tournament_awards_bool_exp!" + ] + } + ], + "update_tournament_awards_by_pk": [ + 5245, + { + "_inc": [ + 5256 + ], + "_set": [ + 5268 + ], + "pk_columns": [ + 5266, + "tournament_awards_pk_columns_input!" + ] + } + ], + "update_tournament_awards_many": [ + 5262, + { + "updates": [ + 5280, + "[tournament_awards_updates!]!" + ] + } + ], + "update_tournament_brackets": [ + 5306, + { + "_inc": [ + 5300 + ], + "_set": [ + 5314 + ], + "where": [ + 5298, + "tournament_brackets_bool_exp!" + ] + } + ], + "update_tournament_brackets_by_pk": [ + 5287, + { + "_inc": [ + 5300 + ], + "_set": [ + 5314 + ], + "pk_columns": [ + 5310, + "tournament_brackets_pk_columns_input!" + ] + } + ], + "update_tournament_brackets_many": [ + 5306, + { + "updates": [ + 5326, + "[tournament_brackets_updates!]!" + ] + } + ], + "update_tournament_categories": [ + 5347, + { + "_set": [ + 5352 + ], + "where": [ + 5340, + "tournament_categories_bool_exp!" + ] + } + ], + "update_tournament_categories_by_pk": [ + 5333, + { + "_set": [ + 5352 + ], + "pk_columns": [ + 5350, + "tournament_categories_pk_columns_input!" + ] + } + ], + "update_tournament_categories_many": [ + 5347, + { + "updates": [ + 5356, + "[tournament_categories_updates!]!" + ] + } + ], + "update_tournament_free_agents": [ + 5374, + { + "_inc": [ + 5368 + ], + "_set": [ + 5379 + ], + "where": [ + 5366, + "tournament_free_agents_bool_exp!" + ] + } + ], + "update_tournament_free_agents_by_pk": [ + 5357, + { + "_inc": [ + 5368 + ], + "_set": [ + 5379 + ], + "pk_columns": [ + 5377, + "tournament_free_agents_pk_columns_input!" + ] + } + ], + "update_tournament_free_agents_many": [ + 5374, + { + "updates": [ + 5391, + "[tournament_free_agents_updates!]!" + ] + } + ], + "update_tournament_invite_code_uses": [ + 5415, + { + "_inc": [ + 5409 + ], + "_set": [ + 5420 + ], + "where": [ + 5407, + "tournament_invite_code_uses_bool_exp!" + ] + } + ], + "update_tournament_invite_code_uses_by_pk": [ + 5398, + { + "_inc": [ + 5409 + ], + "_set": [ + 5420 + ], + "pk_columns": [ + 5418, + "tournament_invite_code_uses_pk_columns_input!" + ] + } + ], + "update_tournament_invite_code_uses_many": [ + 5415, + { + "updates": [ + 5432, + "[tournament_invite_code_uses_updates!]!" + ] + } + ], + "update_tournament_invite_codes": [ + 5449, + { + "_inc": [ + 5445 + ], + "_set": [ + 5455 + ], + "where": [ + 5443, + "tournament_invite_codes_bool_exp!" + ] + } + ], + "update_tournament_invite_codes_by_pk": [ + 5439, + { + "_inc": [ + 5445 + ], + "_set": [ + 5455 + ], + "pk_columns": [ + 5453, + "tournament_invite_codes_pk_columns_input!" + ] + } + ], + "update_tournament_invite_codes_many": [ + 5449, + { + "updates": [ + 5463, + "[tournament_invite_codes_updates!]!" + ] + } + ], + "update_tournament_invites": [ + 5477, + { + "_inc": [ + 5473 + ], + "_set": [ + 5482 + ], + "where": [ + 5471, + "tournament_invites_bool_exp!" + ] + } + ], + "update_tournament_invites_by_pk": [ + 5467, + { + "_inc": [ + 5473 + ], + "_set": [ + 5482 + ], + "pk_columns": [ + 5480, + "tournament_invites_pk_columns_input!" + ] + } + ], + "update_tournament_invites_many": [ + 5477, + { + "updates": [ + 5490, + "[tournament_invites_updates!]!" + ] + } + ], + "update_tournament_leaderboard_entries": [ + 5503, + { + "_inc": [ + 5499 + ], + "_set": [ + 5506 + ], + "where": [ + 5498, + "tournament_leaderboard_entries_bool_exp!" + ] + } + ], + "update_tournament_leaderboard_entries_many": [ + 5503, + { + "updates": [ + 5513, + "[tournament_leaderboard_entries_updates!]!" + ] + } + ], + "update_tournament_no_shows": [ + 5527, + { + "_inc": [ + 5523 + ], + "_set": [ + 5532 + ], + "where": [ + 5521, + "tournament_no_shows_bool_exp!" + ] + } + ], + "update_tournament_no_shows_by_pk": [ + 5517, + { + "_inc": [ + 5523 + ], + "_set": [ + 5532 + ], + "pk_columns": [ + 5530, + "tournament_no_shows_pk_columns_input!" + ] + } + ], + "update_tournament_no_shows_many": [ + 5527, + { + "updates": [ + 5540, + "[tournament_no_shows_updates!]!" + ] + } + ], + "update_tournament_organizer_teams": [ + 5558, + { + "_set": [ + 5563 + ], + "where": [ + 5551, + "tournament_organizer_teams_bool_exp!" + ] + } + ], + "update_tournament_organizer_teams_by_pk": [ + 5544, + { + "_set": [ + 5563 + ], + "pk_columns": [ + 5561, + "tournament_organizer_teams_pk_columns_input!" + ] + } + ], + "update_tournament_organizer_teams_many": [ + 5558, + { + "updates": [ + 5567, + "[tournament_organizer_teams_updates!]!" + ] + } + ], + "update_tournament_organizers": [ + 5585, + { + "_inc": [ + 5579 + ], + "_set": [ + 5590 + ], + "where": [ + 5577, + "tournament_organizers_bool_exp!" + ] + } + ], + "update_tournament_organizers_by_pk": [ + 5568, + { + "_inc": [ + 5579 + ], + "_set": [ + 5590 + ], + "pk_columns": [ + 5588, + "tournament_organizers_pk_columns_input!" + ] + } + ], + "update_tournament_organizers_many": [ + 5585, + { + "updates": [ + 5602, + "[tournament_organizers_updates!]!" + ] + } + ], + "update_tournament_prizes": [ + 5626, + { + "_inc": [ + 5620 + ], + "_set": [ + 5631 + ], + "where": [ + 5618, + "tournament_prizes_bool_exp!" + ] + } + ], + "update_tournament_prizes_by_pk": [ + 5609, + { + "_inc": [ + 5620 + ], + "_set": [ + 5631 + ], + "pk_columns": [ + 5629, + "tournament_prizes_pk_columns_input!" + ] + } + ], + "update_tournament_prizes_many": [ + 5626, + { + "updates": [ + 5643, + "[tournament_prizes_updates!]!" + ] + } + ], + "update_tournament_registration_unlocks": [ + 5660, + { + "_inc": [ + 5656 + ], + "_set": [ + 5664 + ], + "where": [ + 5654, + "tournament_registration_unlocks_bool_exp!" + ] + } + ], + "update_tournament_registration_unlocks_many": [ + 5660, + { + "updates": [ + 5672, + "[tournament_registration_unlocks_updates!]!" + ] + } + ], + "update_tournament_stage_windows": [ + 5693, + { + "_inc": [ + 5687 + ], + "_set": [ + 5698 + ], + "where": [ + 5685, + "tournament_stage_windows_bool_exp!" + ] + } + ], + "update_tournament_stage_windows_by_pk": [ + 5676, + { + "_inc": [ + 5687 + ], + "_set": [ + 5698 + ], + "pk_columns": [ + 5696, + "tournament_stage_windows_pk_columns_input!" + ] + } + ], + "update_tournament_stage_windows_many": [ + 5693, + { + "updates": [ + 5710, + "[tournament_stage_windows_updates!]!" + ] + } + ], + "update_tournament_stages": [ + 5740, + { + "_append": [ + 5725 + ], + "_delete_at_path": [ + 5731 + ], + "_delete_elem": [ + 5732 + ], + "_delete_key": [ + 5733 + ], + "_inc": [ + 5734 + ], + "_prepend": [ + 5745 + ], + "_set": [ + 5749 + ], + "where": [ + 5729, + "tournament_stages_bool_exp!" + ] + } + ], + "update_tournament_stages_by_pk": [ + 5717, + { + "_append": [ + 5725 + ], + "_delete_at_path": [ + 5731 + ], + "_delete_elem": [ + 5732 + ], + "_delete_key": [ + 5733 + ], + "_inc": [ + 5734 + ], + "_prepend": [ + 5745 + ], + "_set": [ + 5749 + ], + "pk_columns": [ + 5744, + "tournament_stages_pk_columns_input!" + ] + } + ], + "update_tournament_stages_many": [ + 5740, + { + "updates": [ + 5761, + "[tournament_stages_updates!]!" + ] + } + ], + "update_tournament_team_invites": [ + 5785, + { + "_inc": [ + 5779 + ], + "_set": [ + 5790 + ], + "where": [ + 5777, + "tournament_team_invites_bool_exp!" + ] + } + ], + "update_tournament_team_invites_by_pk": [ + 5768, + { + "_inc": [ + 5779 + ], + "_set": [ + 5790 + ], + "pk_columns": [ + 5788, + "tournament_team_invites_pk_columns_input!" + ] + } + ], + "update_tournament_team_invites_many": [ + 5785, + { + "updates": [ + 5802, + "[tournament_team_invites_updates!]!" + ] + } + ], + "update_tournament_team_roster": [ + 5826, + { + "_inc": [ + 5820 + ], + "_set": [ + 5831 + ], + "where": [ + 5818, + "tournament_team_roster_bool_exp!" + ] + } + ], + "update_tournament_team_roster_by_pk": [ + 5809, + { + "_inc": [ + 5820 + ], + "_set": [ + 5831 + ], + "pk_columns": [ + 5829, + "tournament_team_roster_pk_columns_input!" + ] + } + ], + "update_tournament_team_roster_many": [ + 5826, + { + "updates": [ + 5843, + "[tournament_team_roster_updates!]!" + ] + } + ], + "update_tournament_teams": [ + 5869, + { + "_inc": [ + 5863 + ], + "_set": [ + 5877 + ], + "where": [ + 5861, + "tournament_teams_bool_exp!" + ] + } + ], + "update_tournament_teams_by_pk": [ + 5850, + { + "_inc": [ + 5863 + ], + "_set": [ + 5877 + ], + "pk_columns": [ + 5873, + "tournament_teams_pk_columns_input!" + ] + } + ], + "update_tournament_teams_many": [ + 5869, + { + "updates": [ + 5889, + "[tournament_teams_updates!]!" + ] + } + ], + "update_tournaments": [ + 5925, + { + "_inc": [ + 5919 + ], + "_set": [ + 5941 + ], + "where": [ + 5917, + "tournaments_bool_exp!" + ] + } + ], + "update_tournaments_by_pk": [ + 5896, + { + "_inc": [ + 5919 + ], + "_set": [ + 5941 + ], + "pk_columns": [ + 5929, + "tournaments_pk_columns_input!" + ] + } + ], + "update_tournaments_many": [ + 5925, + { + "updates": [ + 5953, + "[tournaments_updates!]!" + ] + } + ], + "update_utility_collection_items": [ + 5977, + { + "_inc": [ + 5971 + ], + "_set": [ + 5982 + ], + "where": [ + 5969, + "utility_collection_items_bool_exp!" + ] + } + ], + "update_utility_collection_items_by_pk": [ + 5960, + { + "_inc": [ + 5971 + ], + "_set": [ + 5982 + ], + "pk_columns": [ + 5980, + "utility_collection_items_pk_columns_input!" + ] + } + ], + "update_utility_collection_items_many": [ + 5977, + { + "updates": [ + 5994, + "[utility_collection_items_updates!]!" + ] + } + ], + "update_utility_collections": [ + 6011, + { + "_inc": [ + 6007 + ], + "_set": [ + 6017 + ], + "where": [ + 6005, + "utility_collections_bool_exp!" + ] + } + ], + "update_utility_collections_by_pk": [ + 6001, + { + "_inc": [ + 6007 + ], + "_set": [ + 6017 + ], + "pk_columns": [ + 6015, + "utility_collections_pk_columns_input!" + ] + } + ], + "update_utility_collections_many": [ + 6011, + { + "updates": [ + 6025, + "[utility_collections_updates!]!" + ] + } + ], + "update_utility_demo_mines": [ + 6039, + { + "_inc": [ + 6035 + ], + "_set": [ + 6044 + ], + "where": [ + 6033, + "utility_demo_mines_bool_exp!" + ] + } + ], + "update_utility_demo_mines_by_pk": [ + 6029, + { + "_inc": [ + 6035 + ], + "_set": [ + 6044 + ], + "pk_columns": [ + 6042, + "utility_demo_mines_pk_columns_input!" + ] + } + ], + "update_utility_demo_mines_many": [ + 6039, + { + "updates": [ + 6052, + "[utility_demo_mines_updates!]!" + ] + } + ], + "update_utility_demo_throws": [ + 6066, + { + "_inc": [ + 6062 + ], + "_set": [ + 6071 + ], + "where": [ + 6060, + "utility_demo_throws_bool_exp!" + ] + } + ], + "update_utility_demo_throws_by_pk": [ + 6056, + { + "_inc": [ + 6062 + ], + "_set": [ + 6071 + ], + "pk_columns": [ + 6069, + "utility_demo_throws_pk_columns_input!" + ] + } + ], + "update_utility_demo_throws_many": [ + 6066, + { + "updates": [ + 6079, + "[utility_demo_throws_updates!]!" + ] + } + ], + "update_utility_drift_results": [ + 6110, + { + "_inc": [ + 6104 + ], + "_set": [ + 6123 + ], + "where": [ + 6102, + "utility_drift_results_bool_exp!" + ] + } + ], + "update_utility_drift_results_by_pk": [ + 6083, + { + "_inc": [ + 6104 + ], + "_set": [ + 6123 + ], + "pk_columns": [ + 6113, + "utility_drift_results_pk_columns_input!" + ] + } + ], + "update_utility_drift_results_many": [ + 6110, + { + "updates": [ + 6135, + "[utility_drift_results_updates!]!" + ] + } + ], + "update_utility_drift_scans": [ + 6152, + { + "_inc": [ + 6148 + ], + "_set": [ + 6158 + ], + "where": [ + 6146, + "utility_drift_scans_bool_exp!" + ] + } + ], + "update_utility_drift_scans_by_pk": [ + 6142, + { + "_inc": [ + 6148 + ], + "_set": [ + 6158 + ], + "pk_columns": [ + 6156, + "utility_drift_scans_pk_columns_input!" + ] + } + ], + "update_utility_drift_scans_many": [ + 6152, + { + "updates": [ + 6166, + "[utility_drift_scans_updates!]!" + ] + } + ], + "update_utility_lineup_favorites": [ + 6187, + { + "_inc": [ + 6181 + ], + "_set": [ + 6192 + ], + "where": [ + 6179, + "utility_lineup_favorites_bool_exp!" + ] + } + ], + "update_utility_lineup_favorites_by_pk": [ + 6170, + { + "_inc": [ + 6181 + ], + "_set": [ + 6192 + ], + "pk_columns": [ + 6190, + "utility_lineup_favorites_pk_columns_input!" + ] + } + ], + "update_utility_lineup_favorites_many": [ + 6187, + { + "updates": [ + 6204, + "[utility_lineup_favorites_updates!]!" + ] + } + ], + "update_utility_lineup_progress": [ + 6238, + { + "_inc": [ + 6232 + ], + "_set": [ + 6251 + ], + "where": [ + 6230, + "utility_lineup_progress_bool_exp!" + ] + } + ], + "update_utility_lineup_progress_by_pk": [ + 6211, + { + "_inc": [ + 6232 + ], + "_set": [ + 6251 + ], + "pk_columns": [ + 6241, + "utility_lineup_progress_pk_columns_input!" + ] + } + ], + "update_utility_lineup_progress_many": [ + 6238, + { + "updates": [ + 6263, + "[utility_lineup_progress_updates!]!" + ] + } + ], + "update_utility_lineup_renders": [ + 6293, + { + "_append": [ + 6278 + ], + "_delete_at_path": [ + 6284 + ], + "_delete_elem": [ + 6285 + ], + "_delete_key": [ + 6286 + ], + "_inc": [ + 6287 + ], + "_prepend": [ + 6297 + ], + "_set": [ + 6301 + ], + "where": [ + 6282, + "utility_lineup_renders_bool_exp!" + ] + } + ], + "update_utility_lineup_renders_by_pk": [ + 6270, + { + "_append": [ + 6278 + ], + "_delete_at_path": [ + 6284 + ], + "_delete_elem": [ + 6285 + ], + "_delete_key": [ + 6286 + ], + "_inc": [ + 6287 + ], + "_prepend": [ + 6297 + ], + "_set": [ + 6301 + ], + "pk_columns": [ + 6296, + "utility_lineup_renders_pk_columns_input!" + ] + } + ], + "update_utility_lineup_renders_many": [ + 6293, + { + "updates": [ + 6313, + "[utility_lineup_renders_updates!]!" + ] + } + ], + "update_utility_lineup_repairs": [ + 6347, + { + "_inc": [ + 6341 + ], + "_set": [ + 6360 + ], + "where": [ + 6339, + "utility_lineup_repairs_bool_exp!" + ] + } + ], + "update_utility_lineup_repairs_by_pk": [ + 6320, + { + "_inc": [ + 6341 + ], + "_set": [ + 6360 + ], + "pk_columns": [ + 6350, + "utility_lineup_repairs_pk_columns_input!" + ] + } + ], + "update_utility_lineup_repairs_many": [ + 6347, + { + "updates": [ + 6372, + "[utility_lineup_repairs_updates!]!" + ] + } + ], + "update_utility_lineup_votes": [ + 6396, + { + "_inc": [ + 6390 + ], + "_set": [ + 6401 + ], + "where": [ + 6388, + "utility_lineup_votes_bool_exp!" + ] + } + ], + "update_utility_lineup_votes_by_pk": [ + 6379, + { + "_inc": [ + 6390 + ], + "_set": [ + 6401 + ], + "pk_columns": [ + 6399, + "utility_lineup_votes_pk_columns_input!" + ] + } + ], + "update_utility_lineup_votes_many": [ + 6396, + { + "updates": [ + 6413, + "[utility_lineup_votes_updates!]!" + ] + } + ], + "update_utility_lineups": [ + 6453, + { + "_append": [ + 6438 + ], + "_delete_at_path": [ + 6444 + ], + "_delete_elem": [ + 6445 + ], + "_delete_key": [ + 6446 + ], + "_inc": [ + 6447 + ], + "_prepend": [ + 6458 + ], + "_set": [ + 6470 + ], + "where": [ + 6442, + "utility_lineups_bool_exp!" + ] + } + ], + "update_utility_lineups_by_pk": [ + 6420, + { + "_append": [ + 6438 + ], + "_delete_at_path": [ + 6444 + ], + "_delete_elem": [ + 6445 + ], + "_delete_key": [ + 6446 + ], + "_inc": [ + 6447 + ], + "_prepend": [ + 6458 + ], + "_set": [ + 6470 + ], + "pk_columns": [ + 6457, + "utility_lineups_pk_columns_input!" + ] + } + ], + "update_utility_lineups_many": [ + 6453, + { + "updates": [ + 6482, + "[utility_lineups_updates!]!" + ] + } + ], + "update_utility_meta_lineups": [ + 6499, + { + "_inc": [ + 6495 + ], + "_set": [ + 6504 + ], + "where": [ + 6493, + "utility_meta_lineups_bool_exp!" + ] + } + ], + "update_utility_meta_lineups_by_pk": [ + 6489, + { + "_inc": [ + 6495 + ], + "_set": [ + 6504 + ], + "pk_columns": [ + 6502, + "utility_meta_lineups_pk_columns_input!" + ] + } + ], + "update_utility_meta_lineups_many": [ + 6499, + { + "updates": [ + 6512, + "[utility_meta_lineups_updates!]!" + ] + } + ], + "update_utility_playbook_steps": [ + 6533, + { + "_inc": [ + 6527 + ], + "_set": [ + 6538 + ], + "where": [ + 6525, + "utility_playbook_steps_bool_exp!" + ] + } + ], + "update_utility_playbook_steps_by_pk": [ + 6516, + { + "_inc": [ + 6527 + ], + "_set": [ + 6538 + ], + "pk_columns": [ + 6536, + "utility_playbook_steps_pk_columns_input!" + ] + } + ], + "update_utility_playbook_steps_many": [ + 6533, + { + "updates": [ + 6550, + "[utility_playbook_steps_updates!]!" + ] + } + ], + "update_utility_playbooks": [ + 6567, + { + "_inc": [ + 6563 + ], + "_set": [ + 6573 + ], + "where": [ + 6561, + "utility_playbooks_bool_exp!" + ] + } + ], + "update_utility_playbooks_by_pk": [ + 6557, + { + "_inc": [ + 6563 + ], + "_set": [ + 6573 + ], + "pk_columns": [ + 6571, + "utility_playbooks_pk_columns_input!" + ] + } + ], + "update_utility_playbooks_many": [ + 6567, + { + "updates": [ + 6581, + "[utility_playbooks_updates!]!" + ] + } + ], + "update_utility_practice_invites": [ + 6602, + { + "_inc": [ + 6596 + ], + "_set": [ + 6607 + ], + "where": [ + 6594, + "utility_practice_invites_bool_exp!" + ] + } + ], + "update_utility_practice_invites_by_pk": [ + 6585, + { + "_inc": [ + 6596 + ], + "_set": [ + 6607 + ], + "pk_columns": [ + 6605, + "utility_practice_invites_pk_columns_input!" + ] + } + ], + "update_utility_practice_invites_many": [ + 6602, + { + "updates": [ + 6619, + "[utility_practice_invites_updates!]!" + ] + } + ], + "update_utility_practice_sessions": [ + 6645, + { + "_inc": [ + 6639 + ], + "_set": [ + 6653 + ], + "where": [ + 6637, + "utility_practice_sessions_bool_exp!" + ] + } + ], + "update_utility_practice_sessions_by_pk": [ + 6626, + { + "_inc": [ + 6639 + ], + "_set": [ + 6653 + ], + "pk_columns": [ + 6649, + "utility_practice_sessions_pk_columns_input!" + ] + } + ], + "update_utility_practice_sessions_many": [ + 6645, + { + "updates": [ + 6665, + "[utility_practice_sessions_updates!]!" + ] + } + ], + "update_v_match_captains": [ + 6837, + { + "_inc": [ + 6833 + ], + "_set": [ + 6841 + ], + "where": [ + 6832, + "v_match_captains_bool_exp!" + ] + } + ], + "update_v_match_captains_many": [ + 6837, + { + "updates": [ + 6848, + "[v_match_captains_updates!]!" + ] + } + ], + "update_v_match_map_backup_rounds": [ + 6948, + { + "_inc": [ + 6944 + ], + "_set": [ + 6951 + ], + "where": [ + 6943, + "v_match_map_backup_rounds_bool_exp!" + ] + } + ], + "update_v_match_map_backup_rounds_many": [ + 6948, + { + "updates": [ + 6958, + "[v_match_map_backup_rounds_updates!]!" + ] + } + ], + "update_v_player_match_map_hltv": [ + 7170, + { + "_inc": [ + 7164 + ], + "_set": [ + 7173 + ], + "where": [ + 7163, + "v_player_match_map_hltv_bool_exp!" + ] + } + ], + "update_v_player_match_map_hltv_many": [ + 7170, + { + "updates": [ + 7184, + "[v_player_match_map_hltv_updates!]!" + ] + } + ], + "update_v_pool_maps": [ + 7347, + { + "_set": [ + 7352 + ], + "where": [ + 7341, + "v_pool_maps_bool_exp!" + ] + } + ], + "update_v_pool_maps_many": [ + 7347, + { + "updates": [ + 7355, + "[v_pool_maps_updates!]!" + ] + } + ], + "update_v_team_stage_results": [ + 7441, + { + "_inc": [ + 7435 + ], + "_set": [ + 7455 + ], + "where": [ + 7433, + "v_team_stage_results_bool_exp!" + ] + } + ], + "update_v_team_stage_results_by_pk": [ + 7414, + { + "_inc": [ + 7435 + ], + "_set": [ + 7455 + ], + "pk_columns": [ + 7445, + "v_team_stage_results_pk_columns_input!" + ] + } + ], + "update_v_team_stage_results_many": [ + 7441, + { + "updates": [ + 7467, + "[v_team_stage_results_updates!]!" + ] + } + ], + "validateGamedata": [ + 88, + { + "game_server_node_id": [ + 6672, + "uuid!" + ] + } + ], + "watchDemo": [ + 152, + { + "match_map_demo_id": [ + 6672 + ], + "match_map_id": [ + 6672, + "uuid!" + ] + } + ], + "writeServerFile": [ + 88, + { + "content": [ + 85, + "String!" + ], + "file_path": [ + 85, + "String!" + ], + "node_id": [ + 85, + "String!" + ], + "server_id": [ + 85 + ] + } + ], + "__typename": [ + 85 + ] + }, + "Subscription": { + "_map_pool": [ + 155, + { + "distinct_on": [ + 167, + "[_map_pool_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 165, + "[_map_pool_order_by!]" + ], + "where": [ + 158 + ] + } + ], + "_map_pool_aggregate": [ + 156, + { + "distinct_on": [ + 167, + "[_map_pool_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 165, + "[_map_pool_order_by!]" + ], + "where": [ + 158 + ] + } + ], + "_map_pool_by_pk": [ + 155, + { + "map_id": [ + 6672, + "uuid!" + ], + "map_pool_id": [ + 6672, + "uuid!" + ] + } + ], + "_map_pool_stream": [ + 155, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 169, + "[_map_pool_stream_cursor_input]!" + ], + "where": [ + 158 + ] + } + ], + "abandoned_matches": [ + 174, + { + "distinct_on": [ + 195, + "[abandoned_matches_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 193, + "[abandoned_matches_order_by!]" + ], + "where": [ + 183 + ] + } + ], + "abandoned_matches_aggregate": [ + 175, + { + "distinct_on": [ + 195, + "[abandoned_matches_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 193, + "[abandoned_matches_order_by!]" + ], + "where": [ + 183 + ] + } + ], + "abandoned_matches_by_pk": [ + 174, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "abandoned_matches_stream": [ + 174, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 203, + "[abandoned_matches_stream_cursor_input]!" + ], + "where": [ + 183 + ] + } + ], + "api_keys": [ + 215, + { + "distinct_on": [ + 229, + "[api_keys_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 227, + "[api_keys_order_by!]" + ], + "where": [ + 219 + ] + } + ], + "api_keys_aggregate": [ + 216, + { + "distinct_on": [ + 229, + "[api_keys_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 227, + "[api_keys_order_by!]" + ], + "where": [ + 219 + ] + } + ], + "api_keys_by_pk": [ + 215, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "api_keys_stream": [ + 215, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 234, + "[api_keys_stream_cursor_input]!" + ], + "where": [ + 219 + ] + } + ], + "award_recipients": [ + 243, + { + "distinct_on": [ + 264, + "[award_recipients_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 262, + "[award_recipients_order_by!]" + ], + "where": [ + 252 + ] + } + ], + "award_recipients_aggregate": [ + 244, + { + "distinct_on": [ + 264, + "[award_recipients_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 262, + "[award_recipients_order_by!]" + ], + "where": [ + 252 + ] + } + ], + "award_recipients_by_pk": [ + 243, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "award_recipients_stream": [ + 243, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 272, + "[award_recipients_stream_cursor_input]!" + ], + "where": [ + 252 + ] + } + ], + "awards": [ + 284, + { + "distinct_on": [ + 299, + "[awards_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 297, + "[awards_order_by!]" + ], + "where": [ + 288 + ] + } + ], + "awards_aggregate": [ + 285, + { + "distinct_on": [ + 299, + "[awards_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 297, + "[awards_order_by!]" + ], + "where": [ + 288 + ] + } + ], + "awards_by_pk": [ + 284, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "awards_stream": [ + 284, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 304, + "[awards_stream_cursor_input]!" + ], + "where": [ + 288 + ] + } + ], + "chat_read_state": [ + 317, + { + "distinct_on": [ + 331, + "[chat_read_state_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 329, + "[chat_read_state_order_by!]" + ], + "where": [ + 321 + ] + } + ], + "chat_read_state_aggregate": [ + 318, + { + "distinct_on": [ + 331, + "[chat_read_state_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 329, + "[chat_read_state_order_by!]" + ], + "where": [ + 321 + ] + } + ], + "chat_read_state_by_pk": [ + 317, + { + "steam_id": [ + 312, + "bigint!" + ], + "thread": [ + 85, + "String!" + ] + } + ], + "chat_read_state_stream": [ + 317, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 336, + "[chat_read_state_stream_cursor_input]!" + ], + "where": [ + 321 + ] + } + ], + "clip_render_jobs": [ + 344, + { + "distinct_on": [ + 372, + "[clip_render_jobs_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 369, + "[clip_render_jobs_order_by!]" + ], + "where": [ + 356 + ] + } + ], + "clip_render_jobs_aggregate": [ + 345, + { + "distinct_on": [ + 372, + "[clip_render_jobs_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 369, + "[clip_render_jobs_order_by!]" + ], + "where": [ + 356 + ] + } + ], + "clip_render_jobs_by_pk": [ + 344, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "clip_render_jobs_stream": [ + 344, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 382, + "[clip_render_jobs_stream_cursor_input]!" + ], + "where": [ + 356 + ] + } + ], + "custom_pages": [ + 396, + { + "distinct_on": [ + 415, + "[custom_pages_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 412, + "[custom_pages_order_by!]" + ], + "where": [ + 401 + ] + } + ], + "custom_pages_aggregate": [ + 397, + { + "distinct_on": [ + 415, + "[custom_pages_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 412, + "[custom_pages_order_by!]" + ], + "where": [ + 401 + ] + } + ], + "custom_pages_by_pk": [ + 396, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "custom_pages_stream": [ + 396, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 420, + "[custom_pages_stream_cursor_input]!" + ], + "where": [ + 401 + ] + } + ], + "db_backups": [ + 428, + { + "distinct_on": [ + 442, + "[db_backups_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 440, + "[db_backups_order_by!]" + ], + "where": [ + 432 + ] + } + ], + "db_backups_aggregate": [ + 429, + { + "distinct_on": [ + 442, + "[db_backups_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 440, + "[db_backups_order_by!]" + ], + "where": [ + 432 + ] + } + ], + "db_backups_by_pk": [ + 428, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "db_backups_stream": [ + 428, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 447, + "[db_backups_stream_cursor_input]!" + ], + "where": [ + 432 + ] + } + ], + "direct_conversations": [ + 455, + { + "distinct_on": [ + 469, + "[direct_conversations_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 467, + "[direct_conversations_order_by!]" + ], + "where": [ + 459 + ] + } + ], + "direct_conversations_aggregate": [ + 456, + { + "distinct_on": [ + 469, + "[direct_conversations_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 467, + "[direct_conversations_order_by!]" + ], + "where": [ + 459 + ] + } + ], + "direct_conversations_by_pk": [ + 455, + { + "room_id": [ + 85, + "String!" + ], + "steam_id": [ + 312, + "bigint!" + ] + } + ], + "direct_conversations_stream": [ + 455, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 474, + "[direct_conversations_stream_cursor_input]!" + ], + "where": [ + 459 + ] + } + ], + "direct_messages": [ + 482, + { + "distinct_on": [ + 496, + "[direct_messages_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 494, + "[direct_messages_order_by!]" + ], + "where": [ + 486 + ] + } + ], + "direct_messages_aggregate": [ + 483, + { + "distinct_on": [ + 496, + "[direct_messages_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 494, + "[direct_messages_order_by!]" + ], + "where": [ + 486 + ] + } + ], + "direct_messages_by_pk": [ + 482, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "direct_messages_stream": [ + 482, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 501, + "[direct_messages_stream_cursor_input]!" + ], + "where": [ + 486 + ] + } + ], + "draft_game_picks": [ + 509, + { + "distinct_on": [ + 532, + "[draft_game_picks_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 530, + "[draft_game_picks_order_by!]" + ], + "where": [ + 520 + ] + } + ], + "draft_game_picks_aggregate": [ + 510, + { + "distinct_on": [ + 532, + "[draft_game_picks_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 530, + "[draft_game_picks_order_by!]" + ], + "where": [ + 520 + ] + } + ], + "draft_game_picks_by_pk": [ + 509, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "draft_game_picks_stream": [ + 509, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 542, + "[draft_game_picks_stream_cursor_input]!" + ], + "where": [ + 520 + ] + } + ], + "draft_game_players": [ + 554, + { + "distinct_on": [ + 577, + "[draft_game_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 575, + "[draft_game_players_order_by!]" + ], + "where": [ + 565 + ] + } + ], + "draft_game_players_aggregate": [ + 555, + { + "distinct_on": [ + 577, + "[draft_game_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 575, + "[draft_game_players_order_by!]" + ], + "where": [ + 565 + ] + } + ], + "draft_game_players_by_pk": [ + 554, + { + "draft_game_id": [ + 6672, + "uuid!" + ], + "steam_id": [ + 312, + "bigint!" + ] + } + ], + "draft_game_players_stream": [ + 554, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 587, + "[draft_game_players_stream_cursor_input]!" + ], + "where": [ + 565 + ] + } + ], + "draft_games": [ + 599, + { + "distinct_on": [ + 623, + "[draft_games_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 621, + "[draft_games_order_by!]" + ], + "where": [ + 610 + ] + } + ], + "draft_games_aggregate": [ + 600, + { + "distinct_on": [ + 623, + "[draft_games_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 621, + "[draft_games_order_by!]" + ], + "where": [ + 610 + ] + } + ], + "draft_games_by_pk": [ + 599, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "draft_games_stream": [ + 599, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 633, + "[draft_games_stream_cursor_input]!" + ], + "where": [ + 610 + ] + } + ], + "e_award_sources": [ + 645, + { + "distinct_on": [ + 659, + "[e_award_sources_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 657, + "[e_award_sources_order_by!]" + ], + "where": [ + 648 + ] + } + ], + "e_award_sources_aggregate": [ + 646, + { + "distinct_on": [ + 659, + "[e_award_sources_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 657, + "[e_award_sources_order_by!]" + ], + "where": [ + 648 + ] + } + ], + "e_award_sources_by_pk": [ + 645, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_award_sources_stream": [ + 645, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 661, + "[e_award_sources_stream_cursor_input]!" + ], + "where": [ + 648 + ] + } + ], + "e_award_tiers": [ + 665, + { + "distinct_on": [ + 679, + "[e_award_tiers_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 677, + "[e_award_tiers_order_by!]" + ], + "where": [ + 668 + ] + } + ], + "e_award_tiers_aggregate": [ + 666, + { + "distinct_on": [ + 679, + "[e_award_tiers_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 677, + "[e_award_tiers_order_by!]" + ], + "where": [ + 668 + ] + } + ], + "e_award_tiers_by_pk": [ + 665, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_award_tiers_stream": [ + 665, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 681, + "[e_award_tiers_stream_cursor_input]!" + ], + "where": [ + 668 + ] + } + ], + "e_check_in_settings": [ + 685, + { + "distinct_on": [ + 699, + "[e_check_in_settings_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 697, + "[e_check_in_settings_order_by!]" + ], + "where": [ + 688 + ] + } + ], + "e_check_in_settings_aggregate": [ + 686, + { + "distinct_on": [ + 699, + "[e_check_in_settings_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 697, + "[e_check_in_settings_order_by!]" + ], + "where": [ + 688 + ] + } + ], + "e_check_in_settings_by_pk": [ + 685, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_check_in_settings_stream": [ + 685, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 701, + "[e_check_in_settings_stream_cursor_input]!" + ], + "where": [ + 688 + ] + } + ], + "e_draft_game_captain_selection": [ + 705, + { + "distinct_on": [ + 720, + "[e_draft_game_captain_selection_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 718, + "[e_draft_game_captain_selection_order_by!]" + ], + "where": [ + 708 + ] + } + ], + "e_draft_game_captain_selection_aggregate": [ + 706, + { + "distinct_on": [ + 720, + "[e_draft_game_captain_selection_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 718, + "[e_draft_game_captain_selection_order_by!]" + ], + "where": [ + 708 + ] + } + ], + "e_draft_game_captain_selection_by_pk": [ + 705, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_draft_game_captain_selection_stream": [ + 705, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 722, + "[e_draft_game_captain_selection_stream_cursor_input]!" + ], + "where": [ + 708 + ] + } + ], + "e_draft_game_draft_order": [ + 726, + { + "distinct_on": [ + 741, + "[e_draft_game_draft_order_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 739, + "[e_draft_game_draft_order_order_by!]" + ], + "where": [ + 729 + ] + } + ], + "e_draft_game_draft_order_aggregate": [ + 727, + { + "distinct_on": [ + 741, + "[e_draft_game_draft_order_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 739, + "[e_draft_game_draft_order_order_by!]" + ], + "where": [ + 729 + ] + } + ], + "e_draft_game_draft_order_by_pk": [ + 726, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_draft_game_draft_order_stream": [ + 726, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 743, + "[e_draft_game_draft_order_stream_cursor_input]!" + ], + "where": [ + 729 + ] + } + ], + "e_draft_game_mode": [ + 747, + { + "distinct_on": [ + 762, + "[e_draft_game_mode_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 760, + "[e_draft_game_mode_order_by!]" + ], + "where": [ + 750 + ] + } + ], + "e_draft_game_mode_aggregate": [ + 748, + { + "distinct_on": [ + 762, + "[e_draft_game_mode_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 760, + "[e_draft_game_mode_order_by!]" + ], + "where": [ + 750 + ] + } + ], + "e_draft_game_mode_by_pk": [ + 747, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_draft_game_mode_stream": [ + 747, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 764, + "[e_draft_game_mode_stream_cursor_input]!" + ], + "where": [ + 750 + ] + } + ], + "e_draft_game_player_status": [ + 768, + { + "distinct_on": [ + 783, + "[e_draft_game_player_status_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 781, + "[e_draft_game_player_status_order_by!]" + ], + "where": [ + 771 + ] + } + ], + "e_draft_game_player_status_aggregate": [ + 769, + { + "distinct_on": [ + 783, + "[e_draft_game_player_status_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 781, + "[e_draft_game_player_status_order_by!]" + ], + "where": [ + 771 + ] + } + ], + "e_draft_game_player_status_by_pk": [ + 768, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_draft_game_player_status_stream": [ + 768, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 785, + "[e_draft_game_player_status_stream_cursor_input]!" + ], + "where": [ + 771 + ] + } + ], + "e_draft_game_status": [ + 789, + { + "distinct_on": [ + 804, + "[e_draft_game_status_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 802, + "[e_draft_game_status_order_by!]" + ], + "where": [ + 792 + ] + } + ], + "e_draft_game_status_aggregate": [ + 790, + { + "distinct_on": [ + 804, + "[e_draft_game_status_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 802, + "[e_draft_game_status_order_by!]" + ], + "where": [ + 792 + ] + } + ], + "e_draft_game_status_by_pk": [ + 789, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_draft_game_status_stream": [ + 789, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 806, + "[e_draft_game_status_stream_cursor_input]!" + ], + "where": [ + 792 + ] + } + ], + "e_event_media_access": [ + 810, + { + "distinct_on": [ + 824, + "[e_event_media_access_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 822, + "[e_event_media_access_order_by!]" + ], + "where": [ + 813 + ] + } + ], + "e_event_media_access_aggregate": [ + 811, + { + "distinct_on": [ + 824, + "[e_event_media_access_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 822, + "[e_event_media_access_order_by!]" + ], + "where": [ + 813 + ] + } + ], + "e_event_media_access_by_pk": [ + 810, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_event_media_access_stream": [ + 810, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 826, + "[e_event_media_access_stream_cursor_input]!" + ], + "where": [ + 813 + ] + } + ], + "e_event_visibility": [ + 830, + { + "distinct_on": [ + 844, + "[e_event_visibility_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 842, + "[e_event_visibility_order_by!]" + ], + "where": [ + 833 + ] + } + ], + "e_event_visibility_aggregate": [ + 831, + { + "distinct_on": [ + 844, + "[e_event_visibility_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 842, + "[e_event_visibility_order_by!]" + ], + "where": [ + 833 + ] + } + ], + "e_event_visibility_by_pk": [ + 830, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_event_visibility_stream": [ + 830, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 846, + "[e_event_visibility_stream_cursor_input]!" + ], + "where": [ + 833 + ] + } + ], + "e_friend_status": [ + 850, + { + "distinct_on": [ + 865, + "[e_friend_status_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 863, + "[e_friend_status_order_by!]" + ], + "where": [ + 853 + ] + } + ], + "e_friend_status_aggregate": [ + 851, + { + "distinct_on": [ + 865, + "[e_friend_status_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 863, + "[e_friend_status_order_by!]" + ], + "where": [ + 853 + ] + } + ], + "e_friend_status_by_pk": [ + 850, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_friend_status_stream": [ + 850, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 867, + "[e_friend_status_stream_cursor_input]!" + ], + "where": [ + 853 + ] + } + ], + "e_game_cfg_types": [ + 871, + { + "distinct_on": [ + 885, + "[e_game_cfg_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 883, + "[e_game_cfg_types_order_by!]" + ], + "where": [ + 874 + ] + } + ], + "e_game_cfg_types_aggregate": [ + 872, + { + "distinct_on": [ + 885, + "[e_game_cfg_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 883, + "[e_game_cfg_types_order_by!]" + ], + "where": [ + 874 + ] + } + ], + "e_game_cfg_types_by_pk": [ + 871, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_game_cfg_types_stream": [ + 871, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 887, + "[e_game_cfg_types_stream_cursor_input]!" + ], + "where": [ + 874 + ] + } + ], + "e_game_plugin_channels": [ + 891, + { + "distinct_on": [ + 905, + "[e_game_plugin_channels_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 903, + "[e_game_plugin_channels_order_by!]" + ], + "where": [ + 894 + ] + } + ], + "e_game_plugin_channels_aggregate": [ + 892, + { + "distinct_on": [ + 905, + "[e_game_plugin_channels_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 903, + "[e_game_plugin_channels_order_by!]" + ], + "where": [ + 894 + ] + } + ], + "e_game_plugin_channels_by_pk": [ + 891, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_game_plugin_channels_stream": [ + 891, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 907, + "[e_game_plugin_channels_stream_cursor_input]!" + ], + "where": [ + 894 + ] + } + ], + "e_game_plugin_install_statuses": [ + 911, + { + "distinct_on": [ + 925, + "[e_game_plugin_install_statuses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 923, + "[e_game_plugin_install_statuses_order_by!]" + ], + "where": [ + 914 + ] + } + ], + "e_game_plugin_install_statuses_aggregate": [ + 912, + { + "distinct_on": [ + 925, + "[e_game_plugin_install_statuses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 923, + "[e_game_plugin_install_statuses_order_by!]" + ], + "where": [ + 914 + ] + } + ], + "e_game_plugin_install_statuses_by_pk": [ + 911, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_game_plugin_install_statuses_stream": [ + 911, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 927, + "[e_game_plugin_install_statuses_stream_cursor_input]!" + ], + "where": [ + 914 + ] + } + ], + "e_game_plugin_kinds": [ + 931, + { + "distinct_on": [ + 945, + "[e_game_plugin_kinds_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 943, + "[e_game_plugin_kinds_order_by!]" + ], + "where": [ + 934 + ] + } + ], + "e_game_plugin_kinds_aggregate": [ + 932, + { + "distinct_on": [ + 945, + "[e_game_plugin_kinds_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 943, + "[e_game_plugin_kinds_order_by!]" + ], + "where": [ + 934 + ] + } + ], + "e_game_plugin_kinds_by_pk": [ + 931, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_game_plugin_kinds_stream": [ + 931, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 947, + "[e_game_plugin_kinds_stream_cursor_input]!" + ], + "where": [ + 934 + ] + } + ], + "e_game_server_node_statuses": [ + 951, + { + "distinct_on": [ + 966, + "[e_game_server_node_statuses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 964, + "[e_game_server_node_statuses_order_by!]" + ], + "where": [ + 954 + ] + } + ], + "e_game_server_node_statuses_aggregate": [ + 952, + { + "distinct_on": [ + 966, + "[e_game_server_node_statuses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 964, + "[e_game_server_node_statuses_order_by!]" + ], + "where": [ + 954 + ] + } + ], + "e_game_server_node_statuses_by_pk": [ + 951, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_game_server_node_statuses_stream": [ + 951, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 968, + "[e_game_server_node_statuses_stream_cursor_input]!" + ], + "where": [ + 954 + ] + } + ], + "e_league_movement_types": [ + 972, + { + "distinct_on": [ + 987, + "[e_league_movement_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 985, + "[e_league_movement_types_order_by!]" + ], + "where": [ + 975 + ] + } + ], + "e_league_movement_types_aggregate": [ + 973, + { + "distinct_on": [ + 987, + "[e_league_movement_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 985, + "[e_league_movement_types_order_by!]" + ], + "where": [ + 975 + ] + } + ], + "e_league_movement_types_by_pk": [ + 972, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_league_movement_types_stream": [ + 972, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 989, + "[e_league_movement_types_stream_cursor_input]!" + ], + "where": [ + 975 + ] + } + ], + "e_league_proposal_statuses": [ + 993, + { + "distinct_on": [ + 1008, + "[e_league_proposal_statuses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1006, + "[e_league_proposal_statuses_order_by!]" + ], + "where": [ + 996 + ] + } + ], + "e_league_proposal_statuses_aggregate": [ + 994, + { + "distinct_on": [ + 1008, + "[e_league_proposal_statuses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1006, + "[e_league_proposal_statuses_order_by!]" + ], + "where": [ + 996 + ] + } + ], + "e_league_proposal_statuses_by_pk": [ + 993, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_league_proposal_statuses_stream": [ + 993, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1010, + "[e_league_proposal_statuses_stream_cursor_input]!" + ], + "where": [ + 996 + ] + } + ], + "e_league_registration_statuses": [ + 1014, + { + "distinct_on": [ + 1029, + "[e_league_registration_statuses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1027, + "[e_league_registration_statuses_order_by!]" + ], + "where": [ + 1017 + ] + } + ], + "e_league_registration_statuses_aggregate": [ + 1015, + { + "distinct_on": [ + 1029, + "[e_league_registration_statuses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1027, + "[e_league_registration_statuses_order_by!]" + ], + "where": [ + 1017 + ] + } + ], + "e_league_registration_statuses_by_pk": [ + 1014, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_league_registration_statuses_stream": [ + 1014, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1031, + "[e_league_registration_statuses_stream_cursor_input]!" + ], + "where": [ + 1017 + ] + } + ], + "e_league_season_statuses": [ + 1035, + { + "distinct_on": [ + 1050, + "[e_league_season_statuses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1048, + "[e_league_season_statuses_order_by!]" + ], + "where": [ + 1038 + ] + } + ], + "e_league_season_statuses_aggregate": [ + 1036, + { + "distinct_on": [ + 1050, + "[e_league_season_statuses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1048, + "[e_league_season_statuses_order_by!]" + ], + "where": [ + 1038 + ] + } + ], + "e_league_season_statuses_by_pk": [ + 1035, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_league_season_statuses_stream": [ + 1035, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1052, + "[e_league_season_statuses_stream_cursor_input]!" + ], + "where": [ + 1038 + ] + } + ], + "e_lobby_access": [ + 1056, + { + "distinct_on": [ + 1071, + "[e_lobby_access_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1069, + "[e_lobby_access_order_by!]" + ], + "where": [ + 1059 + ] + } + ], + "e_lobby_access_aggregate": [ + 1057, + { + "distinct_on": [ + 1071, + "[e_lobby_access_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1069, + "[e_lobby_access_order_by!]" + ], + "where": [ + 1059 + ] + } + ], + "e_lobby_access_by_pk": [ + 1056, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_lobby_access_stream": [ + 1056, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1073, + "[e_lobby_access_stream_cursor_input]!" + ], + "where": [ + 1059 + ] + } + ], + "e_lobby_player_status": [ + 1077, + { + "distinct_on": [ + 1091, + "[e_lobby_player_status_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1089, + "[e_lobby_player_status_order_by!]" + ], + "where": [ + 1080 + ] + } + ], + "e_lobby_player_status_aggregate": [ + 1078, + { + "distinct_on": [ + 1091, + "[e_lobby_player_status_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1089, + "[e_lobby_player_status_order_by!]" + ], + "where": [ + 1080 + ] + } + ], + "e_lobby_player_status_by_pk": [ + 1077, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_lobby_player_status_stream": [ + 1077, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1093, + "[e_lobby_player_status_stream_cursor_input]!" + ], + "where": [ + 1080 + ] + } + ], + "e_map_pool_types": [ + 1097, + { + "distinct_on": [ + 1112, + "[e_map_pool_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1110, + "[e_map_pool_types_order_by!]" + ], + "where": [ + 1100 + ] + } + ], + "e_map_pool_types_aggregate": [ + 1098, + { + "distinct_on": [ + 1112, + "[e_map_pool_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1110, + "[e_map_pool_types_order_by!]" + ], + "where": [ + 1100 + ] + } + ], + "e_map_pool_types_by_pk": [ + 1097, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_map_pool_types_stream": [ + 1097, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1114, + "[e_map_pool_types_stream_cursor_input]!" + ], + "where": [ + 1100 + ] + } + ], + "e_match_clip_visibility": [ + 1118, + { + "distinct_on": [ + 1132, + "[e_match_clip_visibility_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1130, + "[e_match_clip_visibility_order_by!]" + ], + "where": [ + 1121 + ] + } + ], + "e_match_clip_visibility_aggregate": [ + 1119, + { + "distinct_on": [ + 1132, + "[e_match_clip_visibility_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1130, + "[e_match_clip_visibility_order_by!]" + ], + "where": [ + 1121 + ] + } + ], + "e_match_clip_visibility_by_pk": [ + 1118, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_match_clip_visibility_stream": [ + 1118, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1134, + "[e_match_clip_visibility_stream_cursor_input]!" + ], + "where": [ + 1121 + ] + } + ], + "e_match_map_status": [ + 1138, + { + "distinct_on": [ + 1153, + "[e_match_map_status_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1151, + "[e_match_map_status_order_by!]" + ], + "where": [ + 1141 + ] + } + ], + "e_match_map_status_aggregate": [ + 1139, + { + "distinct_on": [ + 1153, + "[e_match_map_status_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1151, + "[e_match_map_status_order_by!]" + ], + "where": [ + 1141 + ] + } + ], + "e_match_map_status_by_pk": [ + 1138, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_match_map_status_stream": [ + 1138, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1155, + "[e_match_map_status_stream_cursor_input]!" + ], + "where": [ + 1141 + ] + } + ], + "e_match_mode": [ + 1159, + { + "distinct_on": [ + 1173, + "[e_match_mode_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1171, + "[e_match_mode_order_by!]" + ], + "where": [ + 1162 + ] + } + ], + "e_match_mode_aggregate": [ + 1160, + { + "distinct_on": [ + 1173, + "[e_match_mode_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1171, + "[e_match_mode_order_by!]" + ], + "where": [ + 1162 + ] + } + ], + "e_match_mode_by_pk": [ + 1159, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_match_mode_stream": [ + 1159, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1175, + "[e_match_mode_stream_cursor_input]!" + ], + "where": [ + 1162 + ] + } + ], + "e_match_party_sources": [ + 1179, + { + "distinct_on": [ + 1193, + "[e_match_party_sources_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1191, + "[e_match_party_sources_order_by!]" + ], + "where": [ + 1182 + ] + } + ], + "e_match_party_sources_aggregate": [ + 1180, + { + "distinct_on": [ + 1193, + "[e_match_party_sources_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1191, + "[e_match_party_sources_order_by!]" + ], + "where": [ + 1182 + ] + } + ], + "e_match_party_sources_by_pk": [ + 1179, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_match_party_sources_stream": [ + 1179, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1195, + "[e_match_party_sources_stream_cursor_input]!" + ], + "where": [ + 1182 + ] + } + ], + "e_match_status": [ + 1199, + { + "distinct_on": [ + 1214, + "[e_match_status_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1212, + "[e_match_status_order_by!]" + ], + "where": [ + 1202 + ] + } + ], + "e_match_status_aggregate": [ + 1200, + { + "distinct_on": [ + 1214, + "[e_match_status_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1212, + "[e_match_status_order_by!]" + ], + "where": [ + 1202 + ] + } + ], + "e_match_status_by_pk": [ + 1199, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_match_status_stream": [ + 1199, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1216, + "[e_match_status_stream_cursor_input]!" + ], + "where": [ + 1202 + ] + } + ], + "e_match_types": [ + 1220, + { + "distinct_on": [ + 1235, + "[e_match_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1233, + "[e_match_types_order_by!]" + ], + "where": [ + 1223 + ] + } + ], + "e_match_types_aggregate": [ + 1221, + { + "distinct_on": [ + 1235, + "[e_match_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1233, + "[e_match_types_order_by!]" + ], + "where": [ + 1223 + ] + } + ], + "e_match_types_by_pk": [ + 1220, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_match_types_stream": [ + 1220, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1237, + "[e_match_types_stream_cursor_input]!" + ], + "where": [ + 1223 + ] + } + ], + "e_notification_types": [ + 1241, + { + "distinct_on": [ + 1255, + "[e_notification_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1253, + "[e_notification_types_order_by!]" + ], + "where": [ + 1244 + ] + } + ], + "e_notification_types_aggregate": [ + 1242, + { + "distinct_on": [ + 1255, + "[e_notification_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1253, + "[e_notification_types_order_by!]" + ], + "where": [ + 1244 + ] + } + ], + "e_notification_types_by_pk": [ + 1241, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_notification_types_stream": [ + 1241, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1257, + "[e_notification_types_stream_cursor_input]!" + ], + "where": [ + 1244 + ] + } + ], + "e_objective_types": [ + 1261, + { + "distinct_on": [ + 1275, + "[e_objective_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1273, + "[e_objective_types_order_by!]" + ], + "where": [ + 1264 + ] + } + ], + "e_objective_types_aggregate": [ + 1262, + { + "distinct_on": [ + 1275, + "[e_objective_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1273, + "[e_objective_types_order_by!]" + ], + "where": [ + 1264 + ] + } + ], + "e_objective_types_by_pk": [ + 1261, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_objective_types_stream": [ + 1261, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1277, + "[e_objective_types_stream_cursor_input]!" + ], + "where": [ + 1264 + ] + } + ], + "e_player_roles": [ + 1281, + { + "distinct_on": [ + 1295, + "[e_player_roles_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1293, + "[e_player_roles_order_by!]" + ], + "where": [ + 1284 + ] + } + ], + "e_player_roles_aggregate": [ + 1282, + { + "distinct_on": [ + 1295, + "[e_player_roles_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1293, + "[e_player_roles_order_by!]" + ], + "where": [ + 1284 + ] + } + ], + "e_player_roles_by_pk": [ + 1281, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_player_roles_stream": [ + 1281, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1297, + "[e_player_roles_stream_cursor_input]!" + ], + "where": [ + 1284 + ] + } + ], + "e_plugin_runtimes": [ + 1301, + { + "distinct_on": [ + 1315, + "[e_plugin_runtimes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1313, + "[e_plugin_runtimes_order_by!]" + ], + "where": [ + 1304 + ] + } + ], + "e_plugin_runtimes_aggregate": [ + 1302, + { + "distinct_on": [ + 1315, + "[e_plugin_runtimes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1313, + "[e_plugin_runtimes_order_by!]" + ], + "where": [ + 1304 + ] + } + ], + "e_plugin_runtimes_by_pk": [ + 1301, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_plugin_runtimes_stream": [ + 1301, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1317, + "[e_plugin_runtimes_stream_cursor_input]!" + ], + "where": [ + 1304 + ] + } + ], + "e_ready_settings": [ + 1321, + { + "distinct_on": [ + 1335, + "[e_ready_settings_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1333, + "[e_ready_settings_order_by!]" + ], + "where": [ + 1324 + ] + } + ], + "e_ready_settings_aggregate": [ + 1322, + { + "distinct_on": [ + 1335, + "[e_ready_settings_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1333, + "[e_ready_settings_order_by!]" + ], + "where": [ + 1324 + ] + } + ], + "e_ready_settings_by_pk": [ + 1321, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_ready_settings_stream": [ + 1321, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1337, + "[e_ready_settings_stream_cursor_input]!" + ], + "where": [ + 1324 + ] + } + ], + "e_sanction_scopes": [ + 1341, + { + "distinct_on": [ + 1354, + "[e_sanction_scopes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1352, + "[e_sanction_scopes_order_by!]" + ], + "where": [ + 1344 + ] + } + ], + "e_sanction_scopes_aggregate": [ + 1342, + { + "distinct_on": [ + 1354, + "[e_sanction_scopes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1352, + "[e_sanction_scopes_order_by!]" + ], + "where": [ + 1344 + ] + } + ], + "e_sanction_scopes_by_pk": [ + 1341, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_sanction_scopes_stream": [ + 1341, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1356, + "[e_sanction_scopes_stream_cursor_input]!" + ], + "where": [ + 1344 + ] + } + ], + "e_sanction_sources": [ + 1360, + { + "distinct_on": [ + 1374, + "[e_sanction_sources_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1372, + "[e_sanction_sources_order_by!]" + ], + "where": [ + 1364 + ] + } + ], + "e_sanction_sources_aggregate": [ + 1361, + { + "distinct_on": [ + 1374, + "[e_sanction_sources_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1372, + "[e_sanction_sources_order_by!]" + ], + "where": [ + 1364 + ] + } + ], + "e_sanction_sources_by_pk": [ + 1360, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_sanction_sources_stream": [ + 1360, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1379, + "[e_sanction_sources_stream_cursor_input]!" + ], + "where": [ + 1364 + ] + } + ], + "e_sanction_types": [ + 1387, + { + "distinct_on": [ + 1402, + "[e_sanction_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1400, + "[e_sanction_types_order_by!]" + ], + "where": [ + 1390 + ] + } + ], + "e_sanction_types_aggregate": [ + 1388, + { + "distinct_on": [ + 1402, + "[e_sanction_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1400, + "[e_sanction_types_order_by!]" + ], + "where": [ + 1390 + ] + } + ], + "e_sanction_types_by_pk": [ + 1387, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_sanction_types_stream": [ + 1387, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1404, + "[e_sanction_types_stream_cursor_input]!" + ], + "where": [ + 1390 + ] + } + ], + "e_scrim_request_statuses": [ + 1408, + { + "distinct_on": [ + 1422, + "[e_scrim_request_statuses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1420, + "[e_scrim_request_statuses_order_by!]" + ], + "where": [ + 1411 + ] + } + ], + "e_scrim_request_statuses_aggregate": [ + 1409, + { + "distinct_on": [ + 1422, + "[e_scrim_request_statuses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1420, + "[e_scrim_request_statuses_order_by!]" + ], + "where": [ + 1411 + ] + } + ], + "e_scrim_request_statuses_by_pk": [ + 1408, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_scrim_request_statuses_stream": [ + 1408, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1424, + "[e_scrim_request_statuses_stream_cursor_input]!" + ], + "where": [ + 1411 + ] + } + ], + "e_server_types": [ + 1428, + { + "distinct_on": [ + 1442, + "[e_server_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1440, + "[e_server_types_order_by!]" + ], + "where": [ + 1431 + ] + } + ], + "e_server_types_aggregate": [ + 1429, + { + "distinct_on": [ + 1442, + "[e_server_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1440, + "[e_server_types_order_by!]" + ], + "where": [ + 1431 + ] + } + ], + "e_server_types_by_pk": [ + 1428, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_server_types_stream": [ + 1428, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1444, + "[e_server_types_stream_cursor_input]!" + ], + "where": [ + 1431 + ] + } + ], + "e_sides": [ + 1448, + { + "distinct_on": [ + 1462, + "[e_sides_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1460, + "[e_sides_order_by!]" + ], + "where": [ + 1451 + ] + } + ], + "e_sides_aggregate": [ + 1449, + { + "distinct_on": [ + 1462, + "[e_sides_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1460, + "[e_sides_order_by!]" + ], + "where": [ + 1451 + ] + } + ], + "e_sides_by_pk": [ + 1448, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_sides_stream": [ + 1448, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1464, + "[e_sides_stream_cursor_input]!" + ], + "where": [ + 1451 + ] + } + ], + "e_system_alert_types": [ + 1468, + { + "distinct_on": [ + 1482, + "[e_system_alert_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1480, + "[e_system_alert_types_order_by!]" + ], + "where": [ + 1471 + ] + } + ], + "e_system_alert_types_aggregate": [ + 1469, + { + "distinct_on": [ + 1482, + "[e_system_alert_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1480, + "[e_system_alert_types_order_by!]" + ], + "where": [ + 1471 + ] + } + ], + "e_system_alert_types_by_pk": [ + 1468, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_system_alert_types_stream": [ + 1468, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1484, + "[e_system_alert_types_stream_cursor_input]!" + ], + "where": [ + 1471 + ] + } + ], + "e_team_roles": [ + 1488, + { + "distinct_on": [ + 1503, + "[e_team_roles_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1501, + "[e_team_roles_order_by!]" + ], + "where": [ + 1491 + ] + } + ], + "e_team_roles_aggregate": [ + 1489, + { + "distinct_on": [ + 1503, + "[e_team_roles_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1501, + "[e_team_roles_order_by!]" + ], + "where": [ + 1491 + ] + } + ], + "e_team_roles_by_pk": [ + 1488, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_team_roles_stream": [ + 1488, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1505, + "[e_team_roles_stream_cursor_input]!" + ], + "where": [ + 1491 + ] + } + ], + "e_team_roster_statuses": [ + 1509, + { + "distinct_on": [ + 1523, + "[e_team_roster_statuses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1521, + "[e_team_roster_statuses_order_by!]" + ], + "where": [ + 1512 + ] + } + ], + "e_team_roster_statuses_aggregate": [ + 1510, + { + "distinct_on": [ + 1523, + "[e_team_roster_statuses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1521, + "[e_team_roster_statuses_order_by!]" + ], + "where": [ + 1512 + ] + } + ], + "e_team_roster_statuses_by_pk": [ + 1509, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_team_roster_statuses_stream": [ + 1509, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1525, + "[e_team_roster_statuses_stream_cursor_input]!" + ], + "where": [ + 1512 + ] + } + ], + "e_timeout_settings": [ + 1529, + { + "distinct_on": [ + 1543, + "[e_timeout_settings_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1541, + "[e_timeout_settings_order_by!]" + ], + "where": [ + 1532 + ] + } + ], + "e_timeout_settings_aggregate": [ + 1530, + { + "distinct_on": [ + 1543, + "[e_timeout_settings_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1541, + "[e_timeout_settings_order_by!]" + ], + "where": [ + 1532 + ] + } + ], + "e_timeout_settings_by_pk": [ + 1529, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_timeout_settings_stream": [ + 1529, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1545, + "[e_timeout_settings_stream_cursor_input]!" + ], + "where": [ + 1532 + ] + } + ], + "e_tournament_categories": [ + 1549, + { + "distinct_on": [ + 1564, + "[e_tournament_categories_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1562, + "[e_tournament_categories_order_by!]" + ], + "where": [ + 1552 + ] + } + ], + "e_tournament_categories_aggregate": [ + 1550, + { + "distinct_on": [ + 1564, + "[e_tournament_categories_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1562, + "[e_tournament_categories_order_by!]" + ], + "where": [ + 1552 + ] + } + ], + "e_tournament_categories_by_pk": [ + 1549, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_tournament_categories_stream": [ + 1549, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1566, + "[e_tournament_categories_stream_cursor_input]!" + ], + "where": [ + 1552 + ] + } + ], + "e_tournament_free_agent_statuses": [ + 1570, + { + "distinct_on": [ + 1585, + "[e_tournament_free_agent_statuses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1583, + "[e_tournament_free_agent_statuses_order_by!]" + ], + "where": [ + 1573 + ] + } + ], + "e_tournament_free_agent_statuses_aggregate": [ + 1571, + { + "distinct_on": [ + 1585, + "[e_tournament_free_agent_statuses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1583, + "[e_tournament_free_agent_statuses_order_by!]" + ], + "where": [ + 1573 + ] + } + ], + "e_tournament_free_agent_statuses_by_pk": [ + 1570, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_tournament_free_agent_statuses_stream": [ + 1570, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1587, + "[e_tournament_free_agent_statuses_stream_cursor_input]!" + ], + "where": [ + 1573 + ] + } + ], + "e_tournament_registration_types": [ + 1591, + { + "distinct_on": [ + 1605, + "[e_tournament_registration_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1603, + "[e_tournament_registration_types_order_by!]" + ], + "where": [ + 1594 + ] + } + ], + "e_tournament_registration_types_aggregate": [ + 1592, + { + "distinct_on": [ + 1605, + "[e_tournament_registration_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1603, + "[e_tournament_registration_types_order_by!]" + ], + "where": [ + 1594 + ] + } + ], + "e_tournament_registration_types_by_pk": [ + 1591, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_tournament_registration_types_stream": [ + 1591, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1607, + "[e_tournament_registration_types_stream_cursor_input]!" + ], + "where": [ + 1594 + ] + } + ], + "e_tournament_stage_types": [ + 1611, + { + "distinct_on": [ + 1626, + "[e_tournament_stage_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1624, + "[e_tournament_stage_types_order_by!]" + ], + "where": [ + 1614 + ] + } + ], + "e_tournament_stage_types_aggregate": [ + 1612, + { + "distinct_on": [ + 1626, + "[e_tournament_stage_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1624, + "[e_tournament_stage_types_order_by!]" + ], + "where": [ + 1614 + ] + } + ], + "e_tournament_stage_types_by_pk": [ + 1611, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_tournament_stage_types_stream": [ + 1611, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1628, + "[e_tournament_stage_types_stream_cursor_input]!" + ], + "where": [ + 1614 + ] + } + ], + "e_tournament_status": [ + 1632, + { + "distinct_on": [ + 1647, + "[e_tournament_status_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1645, + "[e_tournament_status_order_by!]" + ], + "where": [ + 1635 + ] + } + ], + "e_tournament_status_aggregate": [ + 1633, + { + "distinct_on": [ + 1647, + "[e_tournament_status_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1645, + "[e_tournament_status_order_by!]" + ], + "where": [ + 1635 + ] + } + ], + "e_tournament_status_by_pk": [ + 1632, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_tournament_status_stream": [ + 1632, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1649, + "[e_tournament_status_stream_cursor_input]!" + ], + "where": [ + 1635 + ] + } + ], + "e_utility_practice_access": [ + 1653, + { + "distinct_on": [ + 1667, + "[e_utility_practice_access_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1665, + "[e_utility_practice_access_order_by!]" + ], + "where": [ + 1656 + ] + } + ], + "e_utility_practice_access_aggregate": [ + 1654, + { + "distinct_on": [ + 1667, + "[e_utility_practice_access_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1665, + "[e_utility_practice_access_order_by!]" + ], + "where": [ + 1656 + ] + } + ], + "e_utility_practice_access_by_pk": [ + 1653, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_utility_practice_access_stream": [ + 1653, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1669, + "[e_utility_practice_access_stream_cursor_input]!" + ], + "where": [ + 1656 + ] + } + ], + "e_utility_practice_statuses": [ + 1673, + { + "distinct_on": [ + 1688, + "[e_utility_practice_statuses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1686, + "[e_utility_practice_statuses_order_by!]" + ], + "where": [ + 1676 + ] + } + ], + "e_utility_practice_statuses_aggregate": [ + 1674, + { + "distinct_on": [ + 1688, + "[e_utility_practice_statuses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1686, + "[e_utility_practice_statuses_order_by!]" + ], + "where": [ + 1676 + ] + } + ], + "e_utility_practice_statuses_by_pk": [ + 1673, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_utility_practice_statuses_stream": [ + 1673, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1690, + "[e_utility_practice_statuses_stream_cursor_input]!" + ], + "where": [ + 1676 + ] + } + ], + "e_utility_sources": [ + 1694, + { + "distinct_on": [ + 1708, + "[e_utility_sources_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1706, + "[e_utility_sources_order_by!]" + ], + "where": [ + 1697 + ] + } + ], + "e_utility_sources_aggregate": [ + 1695, + { + "distinct_on": [ + 1708, + "[e_utility_sources_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1706, + "[e_utility_sources_order_by!]" + ], + "where": [ + 1697 + ] + } + ], + "e_utility_sources_by_pk": [ + 1694, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_utility_sources_stream": [ + 1694, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1710, + "[e_utility_sources_stream_cursor_input]!" + ], + "where": [ + 1697 + ] + } + ], + "e_utility_techniques": [ + 1714, + { + "distinct_on": [ + 1728, + "[e_utility_techniques_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1726, + "[e_utility_techniques_order_by!]" + ], + "where": [ + 1717 + ] + } + ], + "e_utility_techniques_aggregate": [ + 1715, + { + "distinct_on": [ + 1728, + "[e_utility_techniques_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1726, + "[e_utility_techniques_order_by!]" + ], + "where": [ + 1717 + ] + } + ], + "e_utility_techniques_by_pk": [ + 1714, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_utility_techniques_stream": [ + 1714, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1730, + "[e_utility_techniques_stream_cursor_input]!" + ], + "where": [ + 1717 + ] + } + ], + "e_utility_throw_strengths": [ + 1734, + { + "distinct_on": [ + 1748, + "[e_utility_throw_strengths_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1746, + "[e_utility_throw_strengths_order_by!]" + ], + "where": [ + 1737 + ] + } + ], + "e_utility_throw_strengths_aggregate": [ + 1735, + { + "distinct_on": [ + 1748, + "[e_utility_throw_strengths_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1746, + "[e_utility_throw_strengths_order_by!]" + ], + "where": [ + 1737 + ] + } + ], + "e_utility_throw_strengths_by_pk": [ + 1734, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_utility_throw_strengths_stream": [ + 1734, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1750, + "[e_utility_throw_strengths_stream_cursor_input]!" + ], + "where": [ + 1737 + ] + } + ], + "e_utility_types": [ + 1754, + { + "distinct_on": [ + 1768, + "[e_utility_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1766, + "[e_utility_types_order_by!]" + ], + "where": [ + 1757 + ] + } + ], + "e_utility_types_aggregate": [ + 1755, + { + "distinct_on": [ + 1768, + "[e_utility_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1766, + "[e_utility_types_order_by!]" + ], + "where": [ + 1757 + ] + } + ], + "e_utility_types_by_pk": [ + 1754, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_utility_types_stream": [ + 1754, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1770, + "[e_utility_types_stream_cursor_input]!" + ], + "where": [ + 1757 + ] + } + ], + "e_utility_visibility": [ + 1774, + { + "distinct_on": [ + 1788, + "[e_utility_visibility_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1786, + "[e_utility_visibility_order_by!]" + ], + "where": [ + 1777 + ] + } + ], + "e_utility_visibility_aggregate": [ + 1775, + { + "distinct_on": [ + 1788, + "[e_utility_visibility_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1786, + "[e_utility_visibility_order_by!]" + ], + "where": [ + 1777 + ] + } + ], + "e_utility_visibility_by_pk": [ + 1774, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_utility_visibility_stream": [ + 1774, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1790, + "[e_utility_visibility_stream_cursor_input]!" + ], + "where": [ + 1777 + ] + } + ], + "e_veto_pick_types": [ + 1794, + { + "distinct_on": [ + 1808, + "[e_veto_pick_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1806, + "[e_veto_pick_types_order_by!]" + ], + "where": [ + 1797 + ] + } + ], + "e_veto_pick_types_aggregate": [ + 1795, + { + "distinct_on": [ + 1808, + "[e_veto_pick_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1806, + "[e_veto_pick_types_order_by!]" + ], + "where": [ + 1797 + ] + } + ], + "e_veto_pick_types_by_pk": [ + 1794, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_veto_pick_types_stream": [ + 1794, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1810, + "[e_veto_pick_types_stream_cursor_input]!" + ], + "where": [ + 1797 + ] + } + ], + "e_winning_reasons": [ + 1814, + { + "distinct_on": [ + 1828, + "[e_winning_reasons_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1826, + "[e_winning_reasons_order_by!]" + ], + "where": [ + 1817 + ] + } + ], + "e_winning_reasons_aggregate": [ + 1815, + { + "distinct_on": [ + 1828, + "[e_winning_reasons_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1826, + "[e_winning_reasons_order_by!]" + ], + "where": [ + 1817 + ] + } + ], + "e_winning_reasons_by_pk": [ + 1814, + { + "value": [ + 85, + "String!" + ] + } + ], + "e_winning_reasons_stream": [ + 1814, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1830, + "[e_winning_reasons_stream_cursor_input]!" + ], + "where": [ + 1817 + ] + } + ], + "event_match_links": [ + 1834, + { + "distinct_on": [ + 1846, + "[event_match_links_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1844, + "[event_match_links_order_by!]" + ], + "where": [ + 1837 + ] + } + ], + "event_match_links_aggregate": [ + 1835, + { + "distinct_on": [ + 1846, + "[event_match_links_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1844, + "[event_match_links_order_by!]" + ], + "where": [ + 1837 + ] + } + ], + "event_match_links_by_pk": [ + 1834, + { + "event_id": [ + 6672, + "uuid!" + ], + "match_id": [ + 6672, + "uuid!" + ] + } + ], + "event_match_links_stream": [ + 1834, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1848, + "[event_match_links_stream_cursor_input]!" + ], + "where": [ + 1837 + ] + } + ], + "event_media": [ + 1852, + { + "distinct_on": [ + 1915, + "[event_media_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1872, + "[event_media_order_by!]" + ], + "where": [ + 1861 + ] + } + ], + "event_media_aggregate": [ + 1853, + { + "distinct_on": [ + 1915, + "[event_media_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1872, + "[event_media_order_by!]" + ], + "where": [ + 1861 + ] + } + ], + "event_media_by_pk": [ + 1852, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "event_media_players": [ + 1874, + { + "distinct_on": [ + 1895, + "[event_media_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1893, + "[event_media_players_order_by!]" + ], + "where": [ + 1883 + ] + } + ], + "event_media_players_aggregate": [ + 1875, + { + "distinct_on": [ + 1895, + "[event_media_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1893, + "[event_media_players_order_by!]" + ], + "where": [ + 1883 + ] + } + ], + "event_media_players_by_pk": [ + 1874, + { + "media_id": [ + 6672, + "uuid!" + ], + "steam_id": [ + 312, + "bigint!" + ] + } + ], + "event_media_players_stream": [ + 1874, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1903, + "[event_media_players_stream_cursor_input]!" + ], + "where": [ + 1883 + ] + } + ], + "event_media_stream": [ + 1852, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1923, + "[event_media_stream_cursor_input]!" + ], + "where": [ + 1861 + ] + } + ], + "event_organizers": [ + 1935, + { + "distinct_on": [ + 1956, + "[event_organizers_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1954, + "[event_organizers_order_by!]" + ], + "where": [ + 1944 + ] + } + ], + "event_organizers_aggregate": [ + 1936, + { + "distinct_on": [ + 1956, + "[event_organizers_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1954, + "[event_organizers_order_by!]" + ], + "where": [ + 1944 + ] + } + ], + "event_organizers_by_pk": [ + 1935, + { + "event_id": [ + 6672, + "uuid!" + ], + "steam_id": [ + 312, + "bigint!" + ] + } + ], + "event_organizers_stream": [ + 1935, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 1964, + "[event_organizers_stream_cursor_input]!" + ], + "where": [ + 1944 + ] + } + ], + "event_players": [ + 1976, + { + "distinct_on": [ + 1997, + "[event_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1995, + "[event_players_order_by!]" + ], + "where": [ + 1985 + ] + } + ], + "event_players_aggregate": [ + 1977, + { + "distinct_on": [ + 1997, + "[event_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 1995, + "[event_players_order_by!]" + ], + "where": [ + 1985 + ] + } + ], + "event_players_by_pk": [ + 1976, + { + "event_id": [ + 6672, + "uuid!" + ], + "steam_id": [ + 312, + "bigint!" + ] + } + ], + "event_players_stream": [ + 1976, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 2005, + "[event_players_stream_cursor_input]!" + ], + "where": [ + 1985 + ] + } + ], + "event_teams": [ + 2017, + { + "distinct_on": [ + 2035, + "[event_teams_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2033, + "[event_teams_order_by!]" + ], + "where": [ + 2024 + ] + } + ], + "event_teams_aggregate": [ + 2018, + { + "distinct_on": [ + 2035, + "[event_teams_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2033, + "[event_teams_order_by!]" + ], + "where": [ + 2024 + ] + } + ], + "event_teams_by_pk": [ + 2017, + { + "event_id": [ + 6672, + "uuid!" + ], + "team_id": [ + 6672, + "uuid!" + ] + } + ], + "event_teams_stream": [ + 2017, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 2037, + "[event_teams_stream_cursor_input]!" + ], + "where": [ + 2024 + ] + } + ], + "event_tournaments": [ + 2041, + { + "distinct_on": [ + 2059, + "[event_tournaments_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2057, + "[event_tournaments_order_by!]" + ], + "where": [ + 2048 + ] + } + ], + "event_tournaments_aggregate": [ + 2042, + { + "distinct_on": [ + 2059, + "[event_tournaments_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2057, + "[event_tournaments_order_by!]" + ], + "where": [ + 2048 + ] + } + ], + "event_tournaments_by_pk": [ + 2041, + { + "event_id": [ + 6672, + "uuid!" + ], + "tournament_id": [ + 6672, + "uuid!" + ] + } + ], + "event_tournaments_stream": [ + 2041, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 2061, + "[event_tournaments_stream_cursor_input]!" + ], + "where": [ + 2048 + ] + } + ], + "events": [ + 2065, + { + "distinct_on": [ + 2080, + "[events_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2078, + "[events_order_by!]" + ], + "where": [ + 2069 + ] + } + ], + "events_aggregate": [ + 2066, + { + "distinct_on": [ + 2080, + "[events_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2078, + "[events_order_by!]" + ], + "where": [ + 2069 + ] + } + ], + "events_by_pk": [ + 2065, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "events_stream": [ + 2065, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 2085, + "[events_stream_cursor_input]!" + ], + "where": [ + 2069 + ] + } + ], + "friends": [ + 2095, + { + "distinct_on": [ + 2109, + "[friends_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2107, + "[friends_order_by!]" + ], + "where": [ + 2099 + ] + } + ], + "friends_aggregate": [ + 2096, + { + "distinct_on": [ + 2109, + "[friends_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2107, + "[friends_order_by!]" + ], + "where": [ + 2099 + ] + } + ], + "friends_by_pk": [ + 2095, + { + "other_player_steam_id": [ + 312, + "bigint!" + ], + "player_steam_id": [ + 312, + "bigint!" + ] + } + ], + "friends_stream": [ + 2095, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 2114, + "[friends_stream_cursor_input]!" + ], + "where": [ + 2099 + ] + } + ], + "game_mode_plugins": [ + 2122, + { + "distinct_on": [ + 2150, + "[game_mode_plugins_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2147, + "[game_mode_plugins_order_by!]" + ], + "where": [ + 2134 + ] + } + ], + "game_mode_plugins_aggregate": [ + 2123, + { + "distinct_on": [ + 2150, + "[game_mode_plugins_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2147, + "[game_mode_plugins_order_by!]" + ], + "where": [ + 2134 + ] + } + ], + "game_mode_plugins_by_pk": [ + 2122, + { + "game_mode_id": [ + 6672, + "uuid!" + ], + "plugin_slug": [ + 85, + "String!" + ] + } + ], + "game_mode_plugins_stream": [ + 2122, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 2160, + "[game_mode_plugins_stream_cursor_input]!" + ], + "where": [ + 2134 + ] + } + ], + "game_modes": [ + 2172, + { + "distinct_on": [ + 2185, + "[game_modes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2183, + "[game_modes_order_by!]" + ], + "where": [ + 2175 + ] + } + ], + "game_modes_aggregate": [ + 2173, + { + "distinct_on": [ + 2185, + "[game_modes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2183, + "[game_modes_order_by!]" + ], + "where": [ + 2175 + ] + } + ], + "game_modes_by_pk": [ + 2172, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "game_modes_stream": [ + 2172, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 2187, + "[game_modes_stream_cursor_input]!" + ], + "where": [ + 2175 + ] + } + ], + "game_plugin_installs": [ + 2191, + { + "distinct_on": [ + 2203, + "[game_plugin_installs_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2201, + "[game_plugin_installs_order_by!]" + ], + "where": [ + 2194 + ] + } + ], + "game_plugin_installs_aggregate": [ + 2192, + { + "distinct_on": [ + 2203, + "[game_plugin_installs_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2201, + "[game_plugin_installs_order_by!]" + ], + "where": [ + 2194 + ] + } + ], + "game_plugin_installs_by_pk": [ + 2191, + { + "plugin_slug": [ + 85, + "String!" + ] + } + ], + "game_plugin_installs_stream": [ + 2191, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 2205, + "[game_plugin_installs_stream_cursor_input]!" + ], + "where": [ + 2194 + ] + } + ], + "game_plugin_versions": [ + 2209, + { + "distinct_on": [ + 2232, + "[game_plugin_versions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2230, + "[game_plugin_versions_order_by!]" + ], + "where": [ + 2220 + ] + } + ], + "game_plugin_versions_aggregate": [ + 2210, + { + "distinct_on": [ + 2232, + "[game_plugin_versions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2230, + "[game_plugin_versions_order_by!]" + ], + "where": [ + 2220 + ] + } + ], + "game_plugin_versions_by_pk": [ + 2209, + { + "plugin_slug": [ + 85, + "String!" + ], + "runtime": [ + 1306, + "e_plugin_runtimes_enum!" + ], + "version": [ + 85, + "String!" + ] + } + ], + "game_plugin_versions_stream": [ + 2209, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 2242, + "[game_plugin_versions_stream_cursor_input]!" + ], + "where": [ + 2220 + ] + } + ], + "game_plugins": [ + 2254, + { + "distinct_on": [ + 2273, + "[game_plugins_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2270, + "[game_plugins_order_by!]" + ], + "where": [ + 2259 + ] + } + ], + "game_plugins_aggregate": [ + 2255, + { + "distinct_on": [ + 2273, + "[game_plugins_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2270, + "[game_plugins_order_by!]" + ], + "where": [ + 2259 + ] + } + ], + "game_plugins_by_pk": [ + 2254, + { + "slug": [ + 85, + "String!" + ] + } + ], + "game_plugins_stream": [ + 2254, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 2278, + "[game_plugins_stream_cursor_input]!" + ], + "where": [ + 2259 + ] + } + ], + "game_server_node_plugins": [ + 2286, + { + "distinct_on": [ + 2306, + "[game_server_node_plugins_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2304, + "[game_server_node_plugins_order_by!]" + ], + "where": [ + 2295 + ] + } + ], + "game_server_node_plugins_aggregate": [ + 2287, + { + "distinct_on": [ + 2306, + "[game_server_node_plugins_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2304, + "[game_server_node_plugins_order_by!]" + ], + "where": [ + 2295 + ] + } + ], + "game_server_node_plugins_by_pk": [ + 2286, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "game_server_node_plugins_stream": [ + 2286, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 2310, + "[game_server_node_plugins_stream_cursor_input]!" + ], + "where": [ + 2295 + ] + } + ], + "game_server_nodes": [ + 2314, + { + "distinct_on": [ + 2343, + "[game_server_nodes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2340, + "[game_server_nodes_order_by!]" + ], + "where": [ + 2326 + ] + } + ], + "game_server_nodes_aggregate": [ + 2315, + { + "distinct_on": [ + 2343, + "[game_server_nodes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2340, + "[game_server_nodes_order_by!]" + ], + "where": [ + 2326 + ] + } + ], + "game_server_nodes_by_pk": [ + 2314, + { + "id": [ + 85, + "String!" + ] + } + ], + "game_server_nodes_stream": [ + 2314, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 2353, + "[game_server_nodes_stream_cursor_input]!" + ], + "where": [ + 2326 + ] + } + ], + "game_versions": [ + 2365, + { + "distinct_on": [ + 2385, + "[game_versions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2382, + "[game_versions_order_by!]" + ], + "where": [ + 2370 + ] + } + ], + "game_versions_aggregate": [ + 2366, + { + "distinct_on": [ + 2385, + "[game_versions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2382, + "[game_versions_order_by!]" + ], + "where": [ + 2370 + ] + } + ], + "game_versions_by_pk": [ + 2365, + { + "build_id": [ + 41, + "Int!" + ] + } + ], + "game_versions_stream": [ + 2365, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 2390, + "[game_versions_stream_cursor_input]!" + ], + "where": [ + 2370 + ] + } + ], + "gamedata_signature_validations": [ + 2398, + { + "distinct_on": [ + 2417, + "[gamedata_signature_validations_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2414, + "[gamedata_signature_validations_order_by!]" + ], + "where": [ + 2403 + ] + } + ], + "gamedata_signature_validations_aggregate": [ + 2399, + { + "distinct_on": [ + 2417, + "[gamedata_signature_validations_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2414, + "[gamedata_signature_validations_order_by!]" + ], + "where": [ + 2403 + ] + } + ], + "gamedata_signature_validations_by_pk": [ + 2398, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "gamedata_signature_validations_stream": [ + 2398, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 2422, + "[gamedata_signature_validations_stream_cursor_input]!" + ], + "where": [ + 2403 + ] + } + ], + "get_event_leaderboard": [ + 2442, + { + "args": [ + 2430, + "get_event_leaderboard_args!" + ], + "distinct_on": [ + 2453, + "[leaderboard_entries_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2452, + "[leaderboard_entries_order_by!]" + ], + "where": [ + 2446 + ] + } + ], + "get_event_leaderboard_aggregate": [ + 2443, + { + "args": [ + 2430, + "get_event_leaderboard_args!" + ], + "distinct_on": [ + 2453, + "[leaderboard_entries_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2452, + "[leaderboard_entries_order_by!]" + ], + "where": [ + 2446 + ] + } + ], + "get_leaderboard": [ + 2442, + { + "args": [ + 2431, + "get_leaderboard_args!" + ], + "distinct_on": [ + 2453, + "[leaderboard_entries_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2452, + "[leaderboard_entries_order_by!]" + ], + "where": [ + 2446 + ] + } + ], + "get_leaderboard_aggregate": [ + 2443, + { + "args": [ + 2431, + "get_leaderboard_args!" + ], + "distinct_on": [ + 2453, + "[leaderboard_entries_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2452, + "[leaderboard_entries_order_by!]" + ], + "where": [ + 2446 + ] + } + ], + "get_league_season_leaderboard": [ + 2442, + { + "args": [ + 2432, + "get_league_season_leaderboard_args!" + ], + "distinct_on": [ + 2453, + "[leaderboard_entries_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2452, + "[leaderboard_entries_order_by!]" + ], + "where": [ + 2446 + ] + } + ], + "get_league_season_leaderboard_aggregate": [ + 2443, + { + "args": [ + 2432, + "get_league_season_leaderboard_args!" + ], + "distinct_on": [ + 2453, + "[leaderboard_entries_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2452, + "[leaderboard_entries_order_by!]" + ], + "where": [ + 2446 + ] + } + ], + "get_player_leaderboard_rank": [ + 4089, + { + "args": [ + 2433, + "get_player_leaderboard_rank_args!" + ], + "distinct_on": [ + 4100, + "[player_leaderboard_rank_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4099, + "[player_leaderboard_rank_order_by!]" + ], + "where": [ + 4093 + ] + } + ], + "get_player_leaderboard_rank_aggregate": [ + 4090, + { + "args": [ + 2433, + "get_player_leaderboard_rank_args!" + ], + "distinct_on": [ + 4100, + "[player_leaderboard_rank_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4099, + "[player_leaderboard_rank_order_by!]" + ], + "where": [ + 4093 + ] + } + ], + "get_tournament_leaderboard": [ + 5494, + { + "args": [ + 2434, + "get_tournament_leaderboard_args!" + ], + "distinct_on": [ + 5505, + "[tournament_leaderboard_entries_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5504, + "[tournament_leaderboard_entries_order_by!]" + ], + "where": [ + 5498 + ] + } + ], + "get_tournament_leaderboard_aggregate": [ + 5495, + { + "args": [ + 2434, + "get_tournament_leaderboard_args!" + ], + "distinct_on": [ + 5505, + "[tournament_leaderboard_entries_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5504, + "[tournament_leaderboard_entries_order_by!]" + ], + "where": [ + 5498 + ] + } + ], + "leaderboard_entries": [ + 2442, + { + "distinct_on": [ + 2453, + "[leaderboard_entries_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2452, + "[leaderboard_entries_order_by!]" + ], + "where": [ + 2446 + ] + } + ], + "leaderboard_entries_aggregate": [ + 2443, + { + "distinct_on": [ + 2453, + "[leaderboard_entries_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2452, + "[leaderboard_entries_order_by!]" + ], + "where": [ + 2446 + ] + } + ], + "leaderboard_entries_stream": [ + 2442, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 2458, + "[leaderboard_entries_stream_cursor_input]!" + ], + "where": [ + 2446 + ] + } + ], + "league_divisions": [ + 2466, + { + "distinct_on": [ + 2481, + "[league_divisions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2479, + "[league_divisions_order_by!]" + ], + "where": [ + 2470 + ] + } + ], + "league_divisions_aggregate": [ + 2467, + { + "distinct_on": [ + 2481, + "[league_divisions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2479, + "[league_divisions_order_by!]" + ], + "where": [ + 2470 + ] + } + ], + "league_divisions_by_pk": [ + 2466, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "league_divisions_stream": [ + 2466, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 2486, + "[league_divisions_stream_cursor_input]!" + ], + "where": [ + 2470 + ] + } + ], + "league_match_weeks": [ + 2494, + { + "distinct_on": [ + 2515, + "[league_match_weeks_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2513, + "[league_match_weeks_order_by!]" + ], + "where": [ + 2503 + ] + } + ], + "league_match_weeks_aggregate": [ + 2495, + { + "distinct_on": [ + 2515, + "[league_match_weeks_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2513, + "[league_match_weeks_order_by!]" + ], + "where": [ + 2503 + ] + } + ], + "league_match_weeks_by_pk": [ + 2494, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "league_match_weeks_stream": [ + 2494, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 2523, + "[league_match_weeks_stream_cursor_input]!" + ], + "where": [ + 2503 + ] + } + ], + "league_relegation_playoffs": [ + 2535, + { + "distinct_on": [ + 2556, + "[league_relegation_playoffs_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2554, + "[league_relegation_playoffs_order_by!]" + ], + "where": [ + 2544 + ] + } + ], + "league_relegation_playoffs_aggregate": [ + 2536, + { + "distinct_on": [ + 2556, + "[league_relegation_playoffs_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2554, + "[league_relegation_playoffs_order_by!]" + ], + "where": [ + 2544 + ] + } + ], + "league_relegation_playoffs_by_pk": [ + 2535, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "league_relegation_playoffs_stream": [ + 2535, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 2564, + "[league_relegation_playoffs_stream_cursor_input]!" + ], + "where": [ + 2544 + ] + } + ], + "league_scheduling_proposals": [ + 2576, + { + "distinct_on": [ + 2597, + "[league_scheduling_proposals_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2595, + "[league_scheduling_proposals_order_by!]" + ], + "where": [ + 2585 + ] + } + ], + "league_scheduling_proposals_aggregate": [ + 2577, + { + "distinct_on": [ + 2597, + "[league_scheduling_proposals_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2595, + "[league_scheduling_proposals_order_by!]" + ], + "where": [ + 2585 + ] + } + ], + "league_scheduling_proposals_by_pk": [ + 2576, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "league_scheduling_proposals_stream": [ + 2576, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 2605, + "[league_scheduling_proposals_stream_cursor_input]!" + ], + "where": [ + 2585 + ] + } + ], + "league_season_divisions": [ + 2617, + { + "distinct_on": [ + 2636, + "[league_season_divisions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2634, + "[league_season_divisions_order_by!]" + ], + "where": [ + 2624 + ] + } + ], + "league_season_divisions_aggregate": [ + 2618, + { + "distinct_on": [ + 2636, + "[league_season_divisions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2634, + "[league_season_divisions_order_by!]" + ], + "where": [ + 2624 + ] + } + ], + "league_season_divisions_by_pk": [ + 2617, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "league_season_divisions_stream": [ + 2617, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 2638, + "[league_season_divisions_stream_cursor_input]!" + ], + "where": [ + 2624 + ] + } + ], + "league_seasons": [ + 2642, + { + "distinct_on": [ + 2662, + "[league_seasons_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2659, + "[league_seasons_order_by!]" + ], + "where": [ + 2647 + ] + } + ], + "league_seasons_aggregate": [ + 2643, + { + "distinct_on": [ + 2662, + "[league_seasons_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2659, + "[league_seasons_order_by!]" + ], + "where": [ + 2647 + ] + } + ], + "league_seasons_by_pk": [ + 2642, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "league_seasons_stream": [ + 2642, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 2667, + "[league_seasons_stream_cursor_input]!" + ], + "where": [ + 2647 + ] + } + ], + "league_team_movements": [ + 2675, + { + "distinct_on": [ + 2696, + "[league_team_movements_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2694, + "[league_team_movements_order_by!]" + ], + "where": [ + 2684 + ] + } + ], + "league_team_movements_aggregate": [ + 2676, + { + "distinct_on": [ + 2696, + "[league_team_movements_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2694, + "[league_team_movements_order_by!]" + ], + "where": [ + 2684 + ] + } + ], + "league_team_movements_by_pk": [ + 2675, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "league_team_movements_stream": [ + 2675, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 2704, + "[league_team_movements_stream_cursor_input]!" + ], + "where": [ + 2684 + ] + } + ], + "league_team_rosters": [ + 2716, + { + "distinct_on": [ + 2737, + "[league_team_rosters_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2735, + "[league_team_rosters_order_by!]" + ], + "where": [ + 2725 + ] + } + ], + "league_team_rosters_aggregate": [ + 2717, + { + "distinct_on": [ + 2737, + "[league_team_rosters_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2735, + "[league_team_rosters_order_by!]" + ], + "where": [ + 2725 + ] + } + ], + "league_team_rosters_by_pk": [ + 2716, + { + "league_team_season_id": [ + 6672, + "uuid!" + ], + "player_steam_id": [ + 312, + "bigint!" + ] + } + ], + "league_team_rosters_stream": [ + 2716, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 2745, + "[league_team_rosters_stream_cursor_input]!" + ], + "where": [ + 2725 + ] + } + ], + "league_team_seasons": [ + 2757, + { + "distinct_on": [ + 2779, + "[league_team_seasons_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2777, + "[league_team_seasons_order_by!]" + ], + "where": [ + 2766 + ] + } + ], + "league_team_seasons_aggregate": [ + 2758, + { + "distinct_on": [ + 2779, + "[league_team_seasons_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2777, + "[league_team_seasons_order_by!]" + ], + "where": [ + 2766 + ] + } + ], + "league_team_seasons_by_pk": [ + 2757, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "league_team_seasons_stream": [ + 2757, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 2787, + "[league_team_seasons_stream_cursor_input]!" + ], + "where": [ + 2766 + ] + } + ], + "league_teams": [ + 2799, + { + "distinct_on": [ + 2812, + "[league_teams_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2810, + "[league_teams_order_by!]" + ], + "where": [ + 2802 + ] + } + ], + "league_teams_aggregate": [ + 2800, + { + "distinct_on": [ + 2812, + "[league_teams_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2810, + "[league_teams_order_by!]" + ], + "where": [ + 2802 + ] + } + ], + "league_teams_by_pk": [ + 2799, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "league_teams_stream": [ + 2799, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 2814, + "[league_teams_stream_cursor_input]!" + ], + "where": [ + 2802 + ] + } + ], + "lobbies": [ + 2818, + { + "distinct_on": [ + 2831, + "[lobbies_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2829, + "[lobbies_order_by!]" + ], + "where": [ + 2821 + ] + } + ], + "lobbies_aggregate": [ + 2819, + { + "distinct_on": [ + 2831, + "[lobbies_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2829, + "[lobbies_order_by!]" + ], + "where": [ + 2821 + ] + } + ], + "lobbies_by_pk": [ + 2818, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "lobbies_stream": [ + 2818, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 2833, + "[lobbies_stream_cursor_input]!" + ], + "where": [ + 2821 + ] + } + ], + "lobby_players": [ + 2837, + { + "distinct_on": [ + 2860, + "[lobby_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2858, + "[lobby_players_order_by!]" + ], + "where": [ + 2848 + ] + } + ], + "lobby_players_aggregate": [ + 2838, + { + "distinct_on": [ + 2860, + "[lobby_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2858, + "[lobby_players_order_by!]" + ], + "where": [ + 2848 + ] + } + ], + "lobby_players_by_pk": [ + 2837, + { + "lobby_id": [ + 6672, + "uuid!" + ], + "steam_id": [ + 312, + "bigint!" + ] + } + ], + "lobby_players_stream": [ + 2837, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 2870, + "[lobby_players_stream_cursor_input]!" + ], + "where": [ + 2848 + ] + } + ], + "map_callouts": [ + 2882, + { + "distinct_on": [ + 2899, + "[map_callouts_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2896, + "[map_callouts_order_by!]" + ], + "where": [ + 2886 + ] + } + ], + "map_callouts_aggregate": [ + 2883, + { + "distinct_on": [ + 2899, + "[map_callouts_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2896, + "[map_callouts_order_by!]" + ], + "where": [ + 2886 + ] + } + ], + "map_callouts_by_pk": [ + 2882, + { + "map_name": [ + 85, + "String!" + ], + "name": [ + 85, + "String!" + ] + } + ], + "map_callouts_stream": [ + 2882, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 2901, + "[map_callouts_stream_cursor_input]!" + ], + "where": [ + 2886 + ] + } + ], + "map_pools": [ + 2905, + { + "distinct_on": [ + 2918, + "[map_pools_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2916, + "[map_pools_order_by!]" + ], + "where": [ + 2908 + ] + } + ], + "map_pools_aggregate": [ + 2906, + { + "distinct_on": [ + 2918, + "[map_pools_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2916, + "[map_pools_order_by!]" + ], + "where": [ + 2908 + ] + } + ], + "map_pools_by_pk": [ + 2905, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "map_pools_stream": [ + 2905, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 2920, + "[map_pools_stream_cursor_input]!" + ], + "where": [ + 2908 + ] + } + ], + "maps": [ + 2924, + { + "distinct_on": [ + 2945, + "[maps_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2943, + "[maps_order_by!]" + ], + "where": [ + 2933 + ] + } + ], + "maps_aggregate": [ + 2925, + { + "distinct_on": [ + 2945, + "[maps_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2943, + "[maps_order_by!]" + ], + "where": [ + 2933 + ] + } + ], + "maps_by_pk": [ + 2924, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "maps_stream": [ + 2924, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 2949, + "[maps_stream_cursor_input]!" + ], + "where": [ + 2933 + ] + } + ], + "match_clips": [ + 2953, + { + "distinct_on": [ + 2975, + "[match_clips_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2973, + "[match_clips_order_by!]" + ], + "where": [ + 2962 + ] + } + ], + "match_clips_aggregate": [ + 2954, + { + "distinct_on": [ + 2975, + "[match_clips_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2973, + "[match_clips_order_by!]" + ], + "where": [ + 2962 + ] + } + ], + "match_clips_by_pk": [ + 2953, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "match_clips_stream": [ + 2953, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 2983, + "[match_clips_stream_cursor_input]!" + ], + "where": [ + 2962 + ] + } + ], + "match_demo_sessions": [ + 2995, + { + "distinct_on": [ + 3021, + "[match_demo_sessions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3018, + "[match_demo_sessions_order_by!]" + ], + "where": [ + 3005 + ] + } + ], + "match_demo_sessions_aggregate": [ + 2996, + { + "distinct_on": [ + 3021, + "[match_demo_sessions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3018, + "[match_demo_sessions_order_by!]" + ], + "where": [ + 3005 + ] + } + ], + "match_demo_sessions_by_pk": [ + 2995, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "match_demo_sessions_stream": [ + 2995, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 3029, + "[match_demo_sessions_stream_cursor_input]!" + ], + "where": [ + 3005 + ] + } + ], + "match_lineup_players": [ + 3041, + { + "distinct_on": [ + 3064, + "[match_lineup_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3062, + "[match_lineup_players_order_by!]" + ], + "where": [ + 3052 + ] + } + ], + "match_lineup_players_aggregate": [ + 3042, + { + "distinct_on": [ + 3064, + "[match_lineup_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3062, + "[match_lineup_players_order_by!]" + ], + "where": [ + 3052 + ] + } + ], + "match_lineup_players_by_pk": [ + 3041, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "match_lineup_players_stream": [ + 3041, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 3074, + "[match_lineup_players_stream_cursor_input]!" + ], + "where": [ + 3052 + ] + } + ], + "match_lineups": [ + 3086, + { + "distinct_on": [ + 3108, + "[match_lineups_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3106, + "[match_lineups_order_by!]" + ], + "where": [ + 3095 + ] + } + ], + "match_lineups_aggregate": [ + 3087, + { + "distinct_on": [ + 3108, + "[match_lineups_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3106, + "[match_lineups_order_by!]" + ], + "where": [ + 3095 + ] + } + ], + "match_lineups_by_pk": [ + 3086, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "match_lineups_stream": [ + 3086, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 3116, + "[match_lineups_stream_cursor_input]!" + ], + "where": [ + 3095 + ] + } + ], + "match_map_demos": [ + 3128, + { + "distinct_on": [ + 3157, + "[match_map_demos_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3154, + "[match_map_demos_order_by!]" + ], + "where": [ + 3140 + ] + } + ], + "match_map_demos_aggregate": [ + 3129, + { + "distinct_on": [ + 3157, + "[match_map_demos_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3154, + "[match_map_demos_order_by!]" + ], + "where": [ + 3140 + ] + } + ], + "match_map_demos_by_pk": [ + 3128, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "match_map_demos_stream": [ + 3128, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 3167, + "[match_map_demos_stream_cursor_input]!" + ], + "where": [ + 3140 + ] + } + ], + "match_map_rounds": [ + 3179, + { + "distinct_on": [ + 3200, + "[match_map_rounds_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3198, + "[match_map_rounds_order_by!]" + ], + "where": [ + 3188 + ] + } + ], + "match_map_rounds_aggregate": [ + 3180, + { + "distinct_on": [ + 3200, + "[match_map_rounds_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3198, + "[match_map_rounds_order_by!]" + ], + "where": [ + 3188 + ] + } + ], + "match_map_rounds_by_pk": [ + 3179, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "match_map_rounds_stream": [ + 3179, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 3208, + "[match_map_rounds_stream_cursor_input]!" + ], + "where": [ + 3188 + ] + } + ], + "match_map_veto_picks": [ + 3220, + { + "distinct_on": [ + 3240, + "[match_map_veto_picks_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3238, + "[match_map_veto_picks_order_by!]" + ], + "where": [ + 3229 + ] + } + ], + "match_map_veto_picks_aggregate": [ + 3221, + { + "distinct_on": [ + 3240, + "[match_map_veto_picks_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3238, + "[match_map_veto_picks_order_by!]" + ], + "where": [ + 3229 + ] + } + ], + "match_map_veto_picks_by_pk": [ + 3220, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "match_map_veto_picks_stream": [ + 3220, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 3244, + "[match_map_veto_picks_stream_cursor_input]!" + ], + "where": [ + 3229 + ] + } + ], + "match_maps": [ + 3248, + { + "distinct_on": [ + 3270, + "[match_maps_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3268, + "[match_maps_order_by!]" + ], + "where": [ + 3257 + ] + } + ], + "match_maps_aggregate": [ + 3249, + { + "distinct_on": [ + 3270, + "[match_maps_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3268, + "[match_maps_order_by!]" + ], + "where": [ + 3257 + ] + } + ], + "match_maps_by_pk": [ + 3248, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "match_maps_stream": [ + 3248, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 3278, + "[match_maps_stream_cursor_input]!" + ], + "where": [ + 3257 + ] + } + ], + "match_options": [ + 3290, + { + "distinct_on": [ + 3314, + "[match_options_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3312, + "[match_options_order_by!]" + ], + "where": [ + 3301 + ] + } + ], + "match_options_aggregate": [ + 3291, + { + "distinct_on": [ + 3314, + "[match_options_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3312, + "[match_options_order_by!]" + ], + "where": [ + 3301 + ] + } + ], + "match_options_by_pk": [ + 3290, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "match_options_stream": [ + 3290, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 3324, + "[match_options_stream_cursor_input]!" + ], + "where": [ + 3301 + ] + } + ], + "match_region_veto_picks": [ + 3336, + { + "distinct_on": [ + 3356, + "[match_region_veto_picks_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3354, + "[match_region_veto_picks_order_by!]" + ], + "where": [ + 3345 + ] + } + ], + "match_region_veto_picks_aggregate": [ + 3337, + { + "distinct_on": [ + 3356, + "[match_region_veto_picks_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3354, + "[match_region_veto_picks_order_by!]" + ], + "where": [ + 3345 + ] + } + ], + "match_region_veto_picks_by_pk": [ + 3336, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "match_region_veto_picks_stream": [ + 3336, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 3360, + "[match_region_veto_picks_stream_cursor_input]!" + ], + "where": [ + 3345 + ] + } + ], + "match_streams": [ + 3364, + { + "distinct_on": [ + 3392, + "[match_streams_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3389, + "[match_streams_order_by!]" + ], + "where": [ + 3376 + ] + } + ], + "match_streams_aggregate": [ + 3365, + { + "distinct_on": [ + 3392, + "[match_streams_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3389, + "[match_streams_order_by!]" + ], + "where": [ + 3376 + ] + } + ], + "match_streams_by_pk": [ + 3364, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "match_streams_stream": [ + 3364, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 3402, + "[match_streams_stream_cursor_input]!" + ], + "where": [ + 3376 + ] + } + ], + "match_type_cfgs": [ + 3414, + { + "distinct_on": [ + 3426, + "[match_type_cfgs_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3424, + "[match_type_cfgs_order_by!]" + ], + "where": [ + 3417 + ] + } + ], + "match_type_cfgs_aggregate": [ + 3415, + { + "distinct_on": [ + 3426, + "[match_type_cfgs_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3424, + "[match_type_cfgs_order_by!]" + ], + "where": [ + 3417 + ] + } + ], + "match_type_cfgs_by_pk": [ + 3414, + { + "type": [ + 876, + "e_game_cfg_types_enum!" + ] + } + ], + "match_type_cfgs_stream": [ + 3414, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 3428, + "[match_type_cfgs_stream_cursor_input]!" + ], + "where": [ + 3417 + ] + } + ], + "matches": [ + 3432, + { + "distinct_on": [ + 3456, + "[matches_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3454, + "[matches_order_by!]" + ], + "where": [ + 3443 + ] + } + ], + "matches_aggregate": [ + 3433, + { + "distinct_on": [ + 3456, + "[matches_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3454, + "[matches_order_by!]" + ], + "where": [ + 3443 + ] + } + ], + "matches_by_pk": [ + 3432, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "matches_stream": [ + 3432, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 3466, + "[matches_stream_cursor_input]!" + ], + "where": [ + 3443 + ] + } + ], + "migration_hashes_hashes": [ + 3478, + { + "distinct_on": [ + 3490, + "[migration_hashes_hashes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3488, + "[migration_hashes_hashes_order_by!]" + ], + "where": [ + 3481 + ] + } + ], + "migration_hashes_hashes_aggregate": [ + 3479, + { + "distinct_on": [ + 3490, + "[migration_hashes_hashes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3488, + "[migration_hashes_hashes_order_by!]" + ], + "where": [ + 3481 + ] + } + ], + "migration_hashes_hashes_by_pk": [ + 3478, + { + "name": [ + 85, + "String!" + ] + } + ], + "migration_hashes_hashes_stream": [ + 3478, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 3492, + "[migration_hashes_hashes_stream_cursor_input]!" + ], + "where": [ + 3481 + ] + } + ], + "my_friends": [ + 3496, + { + "distinct_on": [ + 3521, + "[my_friends_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3519, + "[my_friends_order_by!]" + ], + "where": [ + 3508 + ] + } + ], + "my_friends_aggregate": [ + 3497, + { + "distinct_on": [ + 3521, + "[my_friends_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3519, + "[my_friends_order_by!]" + ], + "where": [ + 3508 + ] + } + ], + "my_friends_stream": [ + 3496, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 3531, + "[my_friends_stream_cursor_input]!" + ], + "where": [ + 3508 + ] + } + ], + "news_articles": [ + 3542, + { + "distinct_on": [ + 3556, + "[news_articles_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3554, + "[news_articles_order_by!]" + ], + "where": [ + 3546 + ] + } + ], + "news_articles_aggregate": [ + 3543, + { + "distinct_on": [ + 3556, + "[news_articles_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3554, + "[news_articles_order_by!]" + ], + "where": [ + 3546 + ] + } + ], + "news_articles_by_pk": [ + 3542, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "news_articles_stream": [ + 3542, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 3561, + "[news_articles_stream_cursor_input]!" + ], + "where": [ + 3546 + ] + } + ], + "notification_preferences": [ + 3569, + { + "distinct_on": [ + 3583, + "[notification_preferences_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3581, + "[notification_preferences_order_by!]" + ], + "where": [ + 3573 + ] + } + ], + "notification_preferences_aggregate": [ + 3570, + { + "distinct_on": [ + 3583, + "[notification_preferences_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3581, + "[notification_preferences_order_by!]" + ], + "where": [ + 3573 + ] + } + ], + "notification_preferences_by_pk": [ + 3569, + { + "channel": [ + 85, + "String!" + ], + "key": [ + 85, + "String!" + ], + "steam_id": [ + 312, + "bigint!" + ] + } + ], + "notification_preferences_stream": [ + 3569, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 3588, + "[notification_preferences_stream_cursor_input]!" + ], + "where": [ + 3573 + ] + } + ], + "notifications": [ + 3596, + { + "distinct_on": [ + 3624, + "[notifications_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3621, + "[notifications_order_by!]" + ], + "where": [ + 3608 + ] + } + ], + "notifications_aggregate": [ + 3597, + { + "distinct_on": [ + 3624, + "[notifications_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3621, + "[notifications_order_by!]" + ], + "where": [ + 3608 + ] + } + ], + "notifications_by_pk": [ + 3596, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "notifications_stream": [ + 3596, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 3634, + "[notifications_stream_cursor_input]!" + ], + "where": [ + 3608 + ] + } + ], + "pending_match_import_players": [ + 3649, + { + "distinct_on": [ + 3670, + "[pending_match_import_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3668, + "[pending_match_import_players_order_by!]" + ], + "where": [ + 3658 + ] + } + ], + "pending_match_import_players_aggregate": [ + 3650, + { + "distinct_on": [ + 3670, + "[pending_match_import_players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3668, + "[pending_match_import_players_order_by!]" + ], + "where": [ + 3658 + ] + } + ], + "pending_match_import_players_by_pk": [ + 3649, + { + "steam_id": [ + 312, + "bigint!" + ], + "valve_match_id": [ + 3646, + "numeric!" + ] + } + ], + "pending_match_import_players_stream": [ + 3649, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 3678, + "[pending_match_import_players_stream_cursor_input]!" + ], + "where": [ + 3658 + ] + } + ], + "pending_match_imports": [ + 3690, + { + "distinct_on": [ + 3705, + "[pending_match_imports_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3703, + "[pending_match_imports_order_by!]" + ], + "where": [ + 3694 + ] + } + ], + "pending_match_imports_aggregate": [ + 3691, + { + "distinct_on": [ + 3705, + "[pending_match_imports_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3703, + "[pending_match_imports_order_by!]" + ], + "where": [ + 3694 + ] + } + ], + "pending_match_imports_by_pk": [ + 3690, + { + "valve_match_id": [ + 3646, + "numeric!" + ] + } + ], + "pending_match_imports_stream": [ + 3690, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 3710, + "[pending_match_imports_stream_cursor_input]!" + ], + "where": [ + 3694 + ] + } + ], + "player_aim_stats_demo": [ + 3718, + { + "distinct_on": [ + 3732, + "[player_aim_stats_demo_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3730, + "[player_aim_stats_demo_order_by!]" + ], + "where": [ + 3722 + ] + } + ], + "player_aim_stats_demo_aggregate": [ + 3719, + { + "distinct_on": [ + 3732, + "[player_aim_stats_demo_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3730, + "[player_aim_stats_demo_order_by!]" + ], + "where": [ + 3722 + ] + } + ], + "player_aim_stats_demo_by_pk": [ + 3718, + { + "attacker_steam_id": [ + 312, + "bigint!" + ], + "match_map_id": [ + 6672, + "uuid!" + ] + } + ], + "player_aim_stats_demo_stream": [ + 3718, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 3737, + "[player_aim_stats_demo_stream_cursor_input]!" + ], + "where": [ + 3722 + ] + } + ], + "player_aim_weapon_stats": [ + 3745, + { + "distinct_on": [ + 3766, + "[player_aim_weapon_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3764, + "[player_aim_weapon_stats_order_by!]" + ], + "where": [ + 3754 + ] + } + ], + "player_aim_weapon_stats_aggregate": [ + 3746, + { + "distinct_on": [ + 3766, + "[player_aim_weapon_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3764, + "[player_aim_weapon_stats_order_by!]" + ], + "where": [ + 3754 + ] + } + ], + "player_aim_weapon_stats_by_pk": [ + 3745, + { + "match_map_id": [ + 6672, + "uuid!" + ], + "steam_id": [ + 312, + "bigint!" + ], + "weapon_class": [ + 85, + "String!" + ] + } + ], + "player_aim_weapon_stats_stream": [ + 3745, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 3774, + "[player_aim_weapon_stats_stream_cursor_input]!" + ], + "where": [ + 3754 + ] + } + ], + "player_assists": [ + 3786, + { + "distinct_on": [ + 3809, + "[player_assists_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3807, + "[player_assists_order_by!]" + ], + "where": [ + 3797 + ] + } + ], + "player_assists_aggregate": [ + 3787, + { + "distinct_on": [ + 3809, + "[player_assists_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3807, + "[player_assists_order_by!]" + ], + "where": [ + 3797 + ] + } + ], + "player_assists_by_pk": [ + 3786, + { + "attacked_steam_id": [ + 312, + "bigint!" + ], + "attacker_steam_id": [ + 312, + "bigint!" + ], + "match_map_id": [ + 6672, + "uuid!" + ], + "time": [ + 5243, + "timestamptz!" + ] + } + ], + "player_assists_stream": [ + 3786, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 3819, + "[player_assists_stream_cursor_input]!" + ], + "where": [ + 3797 + ] + } + ], + "player_career_stats_v": [ + 3831, + { + "distinct_on": [ + 3839, + "[player_career_stats_v_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3838, + "[player_career_stats_v_order_by!]" + ], + "where": [ + 3835 + ] + } + ], + "player_career_stats_v_aggregate": [ + 3832, + { + "distinct_on": [ + 3839, + "[player_career_stats_v_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3838, + "[player_career_stats_v_order_by!]" + ], + "where": [ + 3835 + ] + } + ], + "player_career_stats_v_stream": [ + 3831, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 3843, + "[player_career_stats_v_stream_cursor_input]!" + ], + "where": [ + 3835 + ] + } + ], + "player_damages": [ + 3849, + { + "distinct_on": [ + 3870, + "[player_damages_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3868, + "[player_damages_order_by!]" + ], + "where": [ + 3858 + ] + } + ], + "player_damages_aggregate": [ + 3850, + { + "distinct_on": [ + 3870, + "[player_damages_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3868, + "[player_damages_order_by!]" + ], + "where": [ + 3858 + ] + } + ], + "player_damages_by_pk": [ + 3849, + { + "id": [ + 6672, + "uuid!" + ], + "match_map_id": [ + 6672, + "uuid!" + ], + "time": [ + 5243, + "timestamptz!" + ] + } + ], + "player_damages_stream": [ + 3849, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 3878, + "[player_damages_stream_cursor_input]!" + ], + "where": [ + 3858 + ] + } + ], + "player_elo": [ + 3890, + { + "distinct_on": [ + 3904, + "[player_elo_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3902, + "[player_elo_order_by!]" + ], + "where": [ + 3894 + ] + } + ], + "player_elo_aggregate": [ + 3891, + { + "distinct_on": [ + 3904, + "[player_elo_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3902, + "[player_elo_order_by!]" + ], + "where": [ + 3894 + ] + } + ], + "player_elo_by_pk": [ + 3890, + { + "match_id": [ + 6672, + "uuid!" + ], + "steam_id": [ + 312, + "bigint!" + ], + "type": [ + 1225, + "e_match_types_enum!" + ] + } + ], + "player_elo_stream": [ + 3890, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 3909, + "[player_elo_stream_cursor_input]!" + ], + "where": [ + 3894 + ] + } + ], + "player_faceit_rank_history": [ + 3917, + { + "distinct_on": [ + 3938, + "[player_faceit_rank_history_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3936, + "[player_faceit_rank_history_order_by!]" + ], + "where": [ + 3926 + ] + } + ], + "player_faceit_rank_history_aggregate": [ + 3918, + { + "distinct_on": [ + 3938, + "[player_faceit_rank_history_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3936, + "[player_faceit_rank_history_order_by!]" + ], + "where": [ + 3926 + ] + } + ], + "player_faceit_rank_history_by_pk": [ + 3917, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "player_faceit_rank_history_stream": [ + 3917, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 3946, + "[player_faceit_rank_history_stream_cursor_input]!" + ], + "where": [ + 3926 + ] + } + ], + "player_flashes": [ + 3958, + { + "distinct_on": [ + 3981, + "[player_flashes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3979, + "[player_flashes_order_by!]" + ], + "where": [ + 3969 + ] + } + ], + "player_flashes_aggregate": [ + 3959, + { + "distinct_on": [ + 3981, + "[player_flashes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 3979, + "[player_flashes_order_by!]" + ], + "where": [ + 3969 + ] + } + ], + "player_flashes_by_pk": [ + 3958, + { + "attacked_steam_id": [ + 312, + "bigint!" + ], + "attacker_steam_id": [ + 312, + "bigint!" + ], + "match_map_id": [ + 6672, + "uuid!" + ], + "time": [ + 5243, + "timestamptz!" + ] + } + ], + "player_flashes_stream": [ + 3958, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 3991, + "[player_flashes_stream_cursor_input]!" + ], + "where": [ + 3969 + ] + } + ], + "player_kills": [ + 4003, + { + "distinct_on": [ + 4067, + "[player_kills_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4065, + "[player_kills_order_by!]" + ], + "where": [ + 4014 + ] + } + ], + "player_kills_aggregate": [ + 4004, + { + "distinct_on": [ + 4067, + "[player_kills_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4065, + "[player_kills_order_by!]" + ], + "where": [ + 4014 + ] + } + ], + "player_kills_by_pk": [ + 4003, + { + "attacked_steam_id": [ + 312, + "bigint!" + ], + "attacker_steam_id": [ + 312, + "bigint!" + ], + "match_map_id": [ + 6672, + "uuid!" + ], + "time": [ + 5243, + "timestamptz!" + ] + } + ], + "player_kills_by_weapon": [ + 4015, + { + "distinct_on": [ + 4036, + "[player_kills_by_weapon_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4034, + "[player_kills_by_weapon_order_by!]" + ], + "where": [ + 4024 + ] + } + ], + "player_kills_by_weapon_aggregate": [ + 4016, + { + "distinct_on": [ + 4036, + "[player_kills_by_weapon_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4034, + "[player_kills_by_weapon_order_by!]" + ], + "where": [ + 4024 + ] + } + ], + "player_kills_by_weapon_by_pk": [ + 4015, + { + "player_steam_id": [ + 312, + "bigint!" + ], + "with": [ + 85, + "String!" + ] + } + ], + "player_kills_by_weapon_stream": [ + 4015, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 4044, + "[player_kills_by_weapon_stream_cursor_input]!" + ], + "where": [ + 4024 + ] + } + ], + "player_kills_stream": [ + 4003, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 4077, + "[player_kills_stream_cursor_input]!" + ], + "where": [ + 4014 + ] + } + ], + "player_leaderboard_rank": [ + 4089, + { + "distinct_on": [ + 4100, + "[player_leaderboard_rank_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4099, + "[player_leaderboard_rank_order_by!]" + ], + "where": [ + 4093 + ] + } + ], + "player_leaderboard_rank_aggregate": [ + 4090, + { + "distinct_on": [ + 4100, + "[player_leaderboard_rank_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4099, + "[player_leaderboard_rank_order_by!]" + ], + "where": [ + 4093 + ] + } + ], + "player_leaderboard_rank_stream": [ + 4089, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 4105, + "[player_leaderboard_rank_stream_cursor_input]!" + ], + "where": [ + 4093 + ] + } + ], + "player_match_map_stats": [ + 4112, + { + "distinct_on": [ + 4133, + "[player_match_map_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4131, + "[player_match_map_stats_order_by!]" + ], + "where": [ + 4121 + ] + } + ], + "player_match_map_stats_aggregate": [ + 4113, + { + "distinct_on": [ + 4133, + "[player_match_map_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4131, + "[player_match_map_stats_order_by!]" + ], + "where": [ + 4121 + ] + } + ], + "player_match_map_stats_by_pk": [ + 4112, + { + "match_map_id": [ + 6672, + "uuid!" + ], + "steam_id": [ + 312, + "bigint!" + ] + } + ], + "player_match_map_stats_stream": [ + 4112, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 4141, + "[player_match_map_stats_stream_cursor_input]!" + ], + "where": [ + 4121 + ] + } + ], + "player_match_performance_v": [ + 4153, + { + "distinct_on": [ + 4161, + "[player_match_performance_v_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4160, + "[player_match_performance_v_order_by!]" + ], + "where": [ + 4157 + ] + } + ], + "player_match_performance_v_aggregate": [ + 4154, + { + "distinct_on": [ + 4161, + "[player_match_performance_v_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4160, + "[player_match_performance_v_order_by!]" + ], + "where": [ + 4157 + ] + } + ], + "player_match_performance_v_stream": [ + 4153, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 4165, + "[player_match_performance_v_stream_cursor_input]!" + ], + "where": [ + 4157 + ] + } + ], + "player_match_stats_v": [ + 4171, + { + "distinct_on": [ + 4187, + "[player_match_stats_v_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4186, + "[player_match_stats_v_order_by!]" + ], + "where": [ + 4180 + ] + } + ], + "player_match_stats_v_aggregate": [ + 4172, + { + "distinct_on": [ + 4187, + "[player_match_stats_v_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4186, + "[player_match_stats_v_order_by!]" + ], + "where": [ + 4180 + ] + } + ], + "player_match_stats_v_stream": [ + 4171, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 4194, + "[player_match_stats_v_stream_cursor_input]!" + ], + "where": [ + 4180 + ] + } + ], + "player_objectives": [ + 4204, + { + "distinct_on": [ + 4225, + "[player_objectives_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4223, + "[player_objectives_order_by!]" + ], + "where": [ + 4213 + ] + } + ], + "player_objectives_aggregate": [ + 4205, + { + "distinct_on": [ + 4225, + "[player_objectives_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4223, + "[player_objectives_order_by!]" + ], + "where": [ + 4213 + ] + } + ], + "player_objectives_by_pk": [ + 4204, + { + "match_map_id": [ + 6672, + "uuid!" + ], + "player_steam_id": [ + 312, + "bigint!" + ], + "time": [ + 5243, + "timestamptz!" + ] + } + ], + "player_objectives_stream": [ + 4204, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 4233, + "[player_objectives_stream_cursor_input]!" + ], + "where": [ + 4213 + ] + } + ], + "player_performance_v": [ + 4245, + { + "distinct_on": [ + 4253, + "[player_performance_v_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4252, + "[player_performance_v_order_by!]" + ], + "where": [ + 4249 + ] + } + ], + "player_performance_v_aggregate": [ + 4246, + { + "distinct_on": [ + 4253, + "[player_performance_v_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4252, + "[player_performance_v_order_by!]" + ], + "where": [ + 4249 + ] + } + ], + "player_performance_v_stream": [ + 4245, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 4257, + "[player_performance_v_stream_cursor_input]!" + ], + "where": [ + 4249 + ] + } + ], + "player_premier_rank_history": [ + 4263, + { + "distinct_on": [ + 4284, + "[player_premier_rank_history_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4282, + "[player_premier_rank_history_order_by!]" + ], + "where": [ + 4272 + ] + } + ], + "player_premier_rank_history_aggregate": [ + 4264, + { + "distinct_on": [ + 4284, + "[player_premier_rank_history_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4282, + "[player_premier_rank_history_order_by!]" + ], + "where": [ + 4272 + ] + } + ], + "player_premier_rank_history_by_pk": [ + 4263, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "player_premier_rank_history_stream": [ + 4263, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 4292, + "[player_premier_rank_history_stream_cursor_input]!" + ], + "where": [ + 4272 + ] + } + ], + "player_sanctions": [ + 4304, + { + "distinct_on": [ + 4325, + "[player_sanctions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4323, + "[player_sanctions_order_by!]" + ], + "where": [ + 4313 + ] + } + ], + "player_sanctions_aggregate": [ + 4305, + { + "distinct_on": [ + 4325, + "[player_sanctions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4323, + "[player_sanctions_order_by!]" + ], + "where": [ + 4313 + ] + } + ], + "player_sanctions_by_pk": [ + 4304, + { + "created_at": [ + 5243, + "timestamptz!" + ], + "id": [ + 6672, + "uuid!" + ] + } + ], + "player_sanctions_stream": [ + 4304, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 4333, + "[player_sanctions_stream_cursor_input]!" + ], + "where": [ + 4313 + ] + } + ], + "player_season_stats": [ + 4345, + { + "distinct_on": [ + 4376, + "[player_season_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4374, + "[player_season_stats_order_by!]" + ], + "where": [ + 4364 + ] + } + ], + "player_season_stats_aggregate": [ + 4346, + { + "distinct_on": [ + 4376, + "[player_season_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4374, + "[player_season_stats_order_by!]" + ], + "where": [ + 4364 + ] + } + ], + "player_season_stats_by_pk": [ + 4345, + { + "player_steam_id": [ + 312, + "bigint!" + ], + "season_id": [ + 6672, + "uuid!" + ] + } + ], + "player_season_stats_stream": [ + 4345, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 4392, + "[player_season_stats_stream_cursor_input]!" + ], + "where": [ + 4364 + ] + } + ], + "player_stats": [ + 4404, + { + "distinct_on": [ + 4419, + "[player_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4417, + "[player_stats_order_by!]" + ], + "where": [ + 4408 + ] + } + ], + "player_stats_aggregate": [ + 4405, + { + "distinct_on": [ + 4419, + "[player_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4417, + "[player_stats_order_by!]" + ], + "where": [ + 4408 + ] + } + ], + "player_stats_by_pk": [ + 4404, + { + "player_steam_id": [ + 312, + "bigint!" + ] + } + ], + "player_stats_stream": [ + 4404, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 4424, + "[player_stats_stream_cursor_input]!" + ], + "where": [ + 4408 + ] + } + ], + "player_steam_bot_friend": [ + 4432, + { + "distinct_on": [ + 4451, + "[player_steam_bot_friend_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4448, + "[player_steam_bot_friend_order_by!]" + ], + "where": [ + 4437 + ] + } + ], + "player_steam_bot_friend_aggregate": [ + 4433, + { + "distinct_on": [ + 4451, + "[player_steam_bot_friend_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4448, + "[player_steam_bot_friend_order_by!]" + ], + "where": [ + 4437 + ] + } + ], + "player_steam_bot_friend_by_pk": [ + 4432, + { + "steam_id": [ + 312, + "bigint!" + ] + } + ], + "player_steam_bot_friend_stream": [ + 4432, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 4456, + "[player_steam_bot_friend_stream_cursor_input]!" + ], + "where": [ + 4437 + ] + } + ], + "player_steam_match_auth": [ + 4464, + { + "distinct_on": [ + 4478, + "[player_steam_match_auth_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4476, + "[player_steam_match_auth_order_by!]" + ], + "where": [ + 4468 + ] + } + ], + "player_steam_match_auth_aggregate": [ + 4465, + { + "distinct_on": [ + 4478, + "[player_steam_match_auth_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4476, + "[player_steam_match_auth_order_by!]" + ], + "where": [ + 4468 + ] + } + ], + "player_steam_match_auth_by_pk": [ + 4464, + { + "steam_id": [ + 312, + "bigint!" + ] + } + ], + "player_steam_match_auth_stream": [ + 4464, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 4483, + "[player_steam_match_auth_stream_cursor_input]!" + ], + "where": [ + 4468 + ] + } + ], + "player_unused_utility": [ + 4491, + { + "distinct_on": [ + 4512, + "[player_unused_utility_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4510, + "[player_unused_utility_order_by!]" + ], + "where": [ + 4500 + ] + } + ], + "player_unused_utility_aggregate": [ + 4492, + { + "distinct_on": [ + 4512, + "[player_unused_utility_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4510, + "[player_unused_utility_order_by!]" + ], + "where": [ + 4500 + ] + } + ], + "player_unused_utility_by_pk": [ + 4491, + { + "match_map_id": [ + 6672, + "uuid!" + ], + "player_steam_id": [ + 312, + "bigint!" + ] + } + ], + "player_unused_utility_stream": [ + 4491, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 4520, + "[player_unused_utility_stream_cursor_input]!" + ], + "where": [ + 4500 + ] + } + ], + "player_utility": [ + 4532, + { + "distinct_on": [ + 4553, + "[player_utility_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4551, + "[player_utility_order_by!]" + ], + "where": [ + 4541 + ] + } + ], + "player_utility_aggregate": [ + 4533, + { + "distinct_on": [ + 4553, + "[player_utility_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4551, + "[player_utility_order_by!]" + ], + "where": [ + 4541 + ] + } + ], + "player_utility_by_pk": [ + 4532, + { + "attacker_steam_id": [ + 312, + "bigint!" + ], + "match_map_id": [ + 6672, + "uuid!" + ], + "time": [ + 5243, + "timestamptz!" + ] + } + ], + "player_utility_stream": [ + 4532, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 4561, + "[player_utility_stream_cursor_input]!" + ], + "where": [ + 4541 + ] + } + ], + "player_weapon_stats_v": [ + 4573, + { + "distinct_on": [ + 4589, + "[player_weapon_stats_v_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4588, + "[player_weapon_stats_v_order_by!]" + ], + "where": [ + 4582 + ] + } + ], + "player_weapon_stats_v_aggregate": [ + 4574, + { + "distinct_on": [ + 4589, + "[player_weapon_stats_v_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4588, + "[player_weapon_stats_v_order_by!]" + ], + "where": [ + 4582 + ] + } + ], + "player_weapon_stats_v_stream": [ + 4573, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 4596, + "[player_weapon_stats_v_stream_cursor_input]!" + ], + "where": [ + 4582 + ] + } + ], + "players": [ + 4606, + { + "distinct_on": [ + 4621, + "[players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4619, + "[players_order_by!]" + ], + "where": [ + 4610 + ] + } + ], + "players_aggregate": [ + 4607, + { + "distinct_on": [ + 4621, + "[players_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4619, + "[players_order_by!]" + ], + "where": [ + 4610 + ] + } + ], + "players_by_pk": [ + 4606, + { + "steam_id": [ + 312, + "bigint!" + ] + } + ], + "players_stream": [ + 4606, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 4626, + "[players_stream_cursor_input]!" + ], + "where": [ + 4610 + ] + } + ], + "plugin_versions": [ + 4634, + { + "distinct_on": [ + 4648, + "[plugin_versions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4646, + "[plugin_versions_order_by!]" + ], + "where": [ + 4638 + ] + } + ], + "plugin_versions_aggregate": [ + 4635, + { + "distinct_on": [ + 4648, + "[plugin_versions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4646, + "[plugin_versions_order_by!]" + ], + "where": [ + 4638 + ] + } + ], + "plugin_versions_by_pk": [ + 4634, + { + "runtime": [ + 1306, + "e_plugin_runtimes_enum!" + ], + "version": [ + 85, + "String!" + ] + } + ], + "plugin_versions_stream": [ + 4634, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 4653, + "[plugin_versions_stream_cursor_input]!" + ], + "where": [ + 4638 + ] + } + ], + "push_subscriptions": [ + 4661, + { + "distinct_on": [ + 4675, + "[push_subscriptions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4673, + "[push_subscriptions_order_by!]" + ], + "where": [ + 4665 + ] + } + ], + "push_subscriptions_aggregate": [ + 4662, + { + "distinct_on": [ + 4675, + "[push_subscriptions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4673, + "[push_subscriptions_order_by!]" + ], + "where": [ + 4665 + ] + } + ], + "push_subscriptions_by_pk": [ + 4661, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "push_subscriptions_stream": [ + 4661, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 4680, + "[push_subscriptions_stream_cursor_input]!" + ], + "where": [ + 4665 + ] + } + ], + "role_permissions": [ + 4692, + { + "distinct_on": [ + 4701, + "[role_permissions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4700, + "[role_permissions_order_by!]" + ], + "where": [ + 4695 + ] + } + ], + "role_permissions_aggregate": [ + 4693, + { + "distinct_on": [ + 4701, + "[role_permissions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4700, + "[role_permissions_order_by!]" + ], + "where": [ + 4695 + ] + } + ], + "role_permissions_stream": [ + 4692, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 4703, + "[role_permissions_stream_cursor_input]!" + ], + "where": [ + 4695 + ] + } + ], + "seasons": [ + 4706, + { + "distinct_on": [ + 4721, + "[seasons_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4719, + "[seasons_order_by!]" + ], + "where": [ + 4710 + ] + } + ], + "seasons_aggregate": [ + 4707, + { + "distinct_on": [ + 4721, + "[seasons_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4719, + "[seasons_order_by!]" + ], + "where": [ + 4710 + ] + } + ], + "seasons_by_pk": [ + 4706, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "seasons_stream": [ + 4706, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 4726, + "[seasons_stream_cursor_input]!" + ], + "where": [ + 4710 + ] + } + ], + "server_regions": [ + 4734, + { + "distinct_on": [ + 4748, + "[server_regions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4746, + "[server_regions_order_by!]" + ], + "where": [ + 4738 + ] + } + ], + "server_regions_aggregate": [ + 4735, + { + "distinct_on": [ + 4748, + "[server_regions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4746, + "[server_regions_order_by!]" + ], + "where": [ + 4738 + ] + } + ], + "server_regions_by_pk": [ + 4734, + { + "value": [ + 85, + "String!" + ] + } + ], + "server_regions_stream": [ + 4734, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 4753, + "[server_regions_stream_cursor_input]!" + ], + "where": [ + 4738 + ] + } + ], + "servers": [ + 4761, + { + "distinct_on": [ + 4790, + "[servers_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4787, + "[servers_order_by!]" + ], + "where": [ + 4773 + ] + } + ], + "servers_aggregate": [ + 4762, + { + "distinct_on": [ + 4790, + "[servers_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4787, + "[servers_order_by!]" + ], + "where": [ + 4773 + ] + } + ], + "servers_by_pk": [ + 4761, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "servers_stream": [ + 4761, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 4800, + "[servers_stream_cursor_input]!" + ], + "where": [ + 4773 + ] + } + ], + "settings": [ + 4812, + { + "distinct_on": [ + 4824, + "[settings_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4822, + "[settings_order_by!]" + ], + "where": [ + 4815 + ] + } + ], + "settings_aggregate": [ + 4813, + { + "distinct_on": [ + 4824, + "[settings_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4822, + "[settings_order_by!]" + ], + "where": [ + 4815 + ] + } + ], + "settings_by_pk": [ + 4812, + { + "name": [ + 85, + "String!" + ] + } + ], + "settings_stream": [ + 4812, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 4826, + "[settings_stream_cursor_input]!" + ], + "where": [ + 4815 + ] + } + ], + "steam_account_claims": [ + 4832, + { + "distinct_on": [ + 4850, + "[steam_account_claims_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4848, + "[steam_account_claims_order_by!]" + ], + "where": [ + 4839 + ] + } + ], + "steam_account_claims_aggregate": [ + 4833, + { + "distinct_on": [ + 4850, + "[steam_account_claims_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4848, + "[steam_account_claims_order_by!]" + ], + "where": [ + 4839 + ] + } + ], + "steam_account_claims_by_pk": [ + 4832, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "steam_account_claims_stream": [ + 4832, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 4852, + "[steam_account_claims_stream_cursor_input]!" + ], + "where": [ + 4839 + ] + } + ], + "steam_accounts": [ + 4856, + { + "distinct_on": [ + 4871, + "[steam_accounts_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4869, + "[steam_accounts_order_by!]" + ], + "where": [ + 4860 + ] + } + ], + "steam_accounts_aggregate": [ + 4857, + { + "distinct_on": [ + 4871, + "[steam_accounts_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4869, + "[steam_accounts_order_by!]" + ], + "where": [ + 4860 + ] + } + ], + "steam_accounts_by_pk": [ + 4856, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "steam_accounts_stream": [ + 4856, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 4876, + "[steam_accounts_stream_cursor_input]!" + ], + "where": [ + 4860 + ] + } + ], + "system_alerts": [ + 4884, + { + "distinct_on": [ + 4898, + "[system_alerts_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4896, + "[system_alerts_order_by!]" + ], + "where": [ + 4888 + ] + } + ], + "system_alerts_aggregate": [ + 4885, + { + "distinct_on": [ + 4898, + "[system_alerts_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4896, + "[system_alerts_order_by!]" + ], + "where": [ + 4888 + ] + } + ], + "system_alerts_by_pk": [ + 4884, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "system_alerts_stream": [ + 4884, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 4903, + "[system_alerts_stream_cursor_input]!" + ], + "where": [ + 4888 + ] + } + ], + "team_invites": [ + 4911, + { + "distinct_on": [ + 4932, + "[team_invites_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4930, + "[team_invites_order_by!]" + ], + "where": [ + 4920 + ] + } + ], + "team_invites_aggregate": [ + 4912, + { + "distinct_on": [ + 4932, + "[team_invites_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4930, + "[team_invites_order_by!]" + ], + "where": [ + 4920 + ] + } + ], + "team_invites_by_pk": [ + 4911, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "team_invites_stream": [ + 4911, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 4940, + "[team_invites_stream_cursor_input]!" + ], + "where": [ + 4920 + ] + } + ], + "team_roster": [ + 4952, + { + "distinct_on": [ + 4975, + "[team_roster_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4973, + "[team_roster_order_by!]" + ], + "where": [ + 4963 + ] + } + ], + "team_roster_aggregate": [ + 4953, + { + "distinct_on": [ + 4975, + "[team_roster_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 4973, + "[team_roster_order_by!]" + ], + "where": [ + 4963 + ] + } + ], + "team_roster_by_pk": [ + 4952, + { + "player_steam_id": [ + 312, + "bigint!" + ], + "team_id": [ + 6672, + "uuid!" + ] + } + ], + "team_roster_stream": [ + 4952, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 4985, + "[team_roster_stream_cursor_input]!" + ], + "where": [ + 4963 + ] + } + ], + "team_scrim_alerts": [ + 4997, + { + "distinct_on": [ + 5011, + "[team_scrim_alerts_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5009, + "[team_scrim_alerts_order_by!]" + ], + "where": [ + 5001 + ] + } + ], + "team_scrim_alerts_aggregate": [ + 4998, + { + "distinct_on": [ + 5011, + "[team_scrim_alerts_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5009, + "[team_scrim_alerts_order_by!]" + ], + "where": [ + 5001 + ] + } + ], + "team_scrim_alerts_by_pk": [ + 4997, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "team_scrim_alerts_stream": [ + 4997, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 5016, + "[team_scrim_alerts_stream_cursor_input]!" + ], + "where": [ + 5001 + ] + } + ], + "team_scrim_availability": [ + 5024, + { + "distinct_on": [ + 5044, + "[team_scrim_availability_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5042, + "[team_scrim_availability_order_by!]" + ], + "where": [ + 5033 + ] + } + ], + "team_scrim_availability_aggregate": [ + 5025, + { + "distinct_on": [ + 5044, + "[team_scrim_availability_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5042, + "[team_scrim_availability_order_by!]" + ], + "where": [ + 5033 + ] + } + ], + "team_scrim_availability_by_pk": [ + 5024, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "team_scrim_availability_stream": [ + 5024, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 5048, + "[team_scrim_availability_stream_cursor_input]!" + ], + "where": [ + 5033 + ] + } + ], + "team_scrim_request_proposals": [ + 5052, + { + "distinct_on": [ + 5073, + "[team_scrim_request_proposals_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5071, + "[team_scrim_request_proposals_order_by!]" + ], + "where": [ + 5061 + ] + } + ], + "team_scrim_request_proposals_aggregate": [ + 5053, + { + "distinct_on": [ + 5073, + "[team_scrim_request_proposals_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5071, + "[team_scrim_request_proposals_order_by!]" + ], + "where": [ + 5061 + ] + } + ], + "team_scrim_request_proposals_by_pk": [ + 5052, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "team_scrim_request_proposals_stream": [ + 5052, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 5081, + "[team_scrim_request_proposals_stream_cursor_input]!" + ], + "where": [ + 5061 + ] + } + ], + "team_scrim_requests": [ + 5093, + { + "distinct_on": [ + 5117, + "[team_scrim_requests_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5115, + "[team_scrim_requests_order_by!]" + ], + "where": [ + 5104 + ] + } + ], + "team_scrim_requests_aggregate": [ + 5094, + { + "distinct_on": [ + 5117, + "[team_scrim_requests_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5115, + "[team_scrim_requests_order_by!]" + ], + "where": [ + 5104 + ] + } + ], + "team_scrim_requests_by_pk": [ + 5093, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "team_scrim_requests_stream": [ + 5093, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 5127, + "[team_scrim_requests_stream_cursor_input]!" + ], + "where": [ + 5104 + ] + } + ], + "team_scrim_settings": [ + 5139, + { + "distinct_on": [ + 5154, + "[team_scrim_settings_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5152, + "[team_scrim_settings_order_by!]" + ], + "where": [ + 5143 + ] + } + ], + "team_scrim_settings_aggregate": [ + 5140, + { + "distinct_on": [ + 5154, + "[team_scrim_settings_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5152, + "[team_scrim_settings_order_by!]" + ], + "where": [ + 5143 + ] + } + ], + "team_scrim_settings_by_pk": [ + 5139, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "team_scrim_settings_stream": [ + 5139, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 5159, + "[team_scrim_settings_stream_cursor_input]!" + ], + "where": [ + 5143 + ] + } + ], + "team_suggestions": [ + 5167, + { + "distinct_on": [ + 5181, + "[team_suggestions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5179, + "[team_suggestions_order_by!]" + ], + "where": [ + 5171 + ] + } + ], + "team_suggestions_aggregate": [ + 5168, + { + "distinct_on": [ + 5181, + "[team_suggestions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5179, + "[team_suggestions_order_by!]" + ], + "where": [ + 5171 + ] + } + ], + "team_suggestions_by_pk": [ + 5167, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "team_suggestions_stream": [ + 5167, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 5186, + "[team_suggestions_stream_cursor_input]!" + ], + "where": [ + 5171 + ] + } + ], + "teams": [ + 5194, + { + "distinct_on": [ + 5218, + "[teams_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5216, + "[teams_order_by!]" + ], + "where": [ + 5205 + ] + } + ], + "teams_aggregate": [ + 5195, + { + "distinct_on": [ + 5218, + "[teams_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5216, + "[teams_order_by!]" + ], + "where": [ + 5205 + ] + } + ], + "teams_by_pk": [ + 5194, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "teams_stream": [ + 5194, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 5228, + "[teams_stream_cursor_input]!" + ], + "where": [ + 5205 + ] + } + ], + "tournament_awards": [ + 5245, + { + "distinct_on": [ + 5267, + "[tournament_awards_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5265, + "[tournament_awards_order_by!]" + ], + "where": [ + 5254 + ] + } + ], + "tournament_awards_aggregate": [ + 5246, + { + "distinct_on": [ + 5267, + "[tournament_awards_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5265, + "[tournament_awards_order_by!]" + ], + "where": [ + 5254 + ] + } + ], + "tournament_awards_by_pk": [ + 5245, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "tournament_awards_stream": [ + 5245, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 5275, + "[tournament_awards_stream_cursor_input]!" + ], + "where": [ + 5254 + ] + } + ], + "tournament_brackets": [ + 5287, + { + "distinct_on": [ + 5311, + "[tournament_brackets_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5309, + "[tournament_brackets_order_by!]" + ], + "where": [ + 5298 + ] + } + ], + "tournament_brackets_aggregate": [ + 5288, + { + "distinct_on": [ + 5311, + "[tournament_brackets_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5309, + "[tournament_brackets_order_by!]" + ], + "where": [ + 5298 + ] + } + ], + "tournament_brackets_by_pk": [ + 5287, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "tournament_brackets_stream": [ + 5287, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 5321, + "[tournament_brackets_stream_cursor_input]!" + ], + "where": [ + 5298 + ] + } + ], + "tournament_categories": [ + 5333, + { + "distinct_on": [ + 5351, + "[tournament_categories_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5349, + "[tournament_categories_order_by!]" + ], + "where": [ + 5340 + ] + } + ], + "tournament_categories_aggregate": [ + 5334, + { + "distinct_on": [ + 5351, + "[tournament_categories_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5349, + "[tournament_categories_order_by!]" + ], + "where": [ + 5340 + ] + } + ], + "tournament_categories_by_pk": [ + 5333, + { + "category": [ + 1554, + "e_tournament_categories_enum!" + ], + "tournament_id": [ + 6672, + "uuid!" + ] + } + ], + "tournament_categories_stream": [ + 5333, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 5353, + "[tournament_categories_stream_cursor_input]!" + ], + "where": [ + 5340 + ] + } + ], + "tournament_free_agents": [ + 5357, + { + "distinct_on": [ + 5378, + "[tournament_free_agents_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5376, + "[tournament_free_agents_order_by!]" + ], + "where": [ + 5366 + ] + } + ], + "tournament_free_agents_aggregate": [ + 5358, + { + "distinct_on": [ + 5378, + "[tournament_free_agents_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5376, + "[tournament_free_agents_order_by!]" + ], + "where": [ + 5366 + ] + } + ], + "tournament_free_agents_by_pk": [ + 5357, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "tournament_free_agents_stream": [ + 5357, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 5386, + "[tournament_free_agents_stream_cursor_input]!" + ], + "where": [ + 5366 + ] + } + ], + "tournament_invite_code_uses": [ + 5398, + { + "distinct_on": [ + 5419, + "[tournament_invite_code_uses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5417, + "[tournament_invite_code_uses_order_by!]" + ], + "where": [ + 5407 + ] + } + ], + "tournament_invite_code_uses_aggregate": [ + 5399, + { + "distinct_on": [ + 5419, + "[tournament_invite_code_uses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5417, + "[tournament_invite_code_uses_order_by!]" + ], + "where": [ + 5407 + ] + } + ], + "tournament_invite_code_uses_by_pk": [ + 5398, + { + "invite_code_id": [ + 6672, + "uuid!" + ], + "player_steam_id": [ + 312, + "bigint!" + ] + } + ], + "tournament_invite_code_uses_stream": [ + 5398, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 5427, + "[tournament_invite_code_uses_stream_cursor_input]!" + ], + "where": [ + 5407 + ] + } + ], + "tournament_invite_codes": [ + 5439, + { + "distinct_on": [ + 5454, + "[tournament_invite_codes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5452, + "[tournament_invite_codes_order_by!]" + ], + "where": [ + 5443 + ] + } + ], + "tournament_invite_codes_aggregate": [ + 5440, + { + "distinct_on": [ + 5454, + "[tournament_invite_codes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5452, + "[tournament_invite_codes_order_by!]" + ], + "where": [ + 5443 + ] + } + ], + "tournament_invite_codes_by_pk": [ + 5439, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "tournament_invite_codes_stream": [ + 5439, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 5459, + "[tournament_invite_codes_stream_cursor_input]!" + ], + "where": [ + 5443 + ] + } + ], + "tournament_invites": [ + 5467, + { + "distinct_on": [ + 5481, + "[tournament_invites_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5479, + "[tournament_invites_order_by!]" + ], + "where": [ + 5471 + ] + } + ], + "tournament_invites_aggregate": [ + 5468, + { + "distinct_on": [ + 5481, + "[tournament_invites_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5479, + "[tournament_invites_order_by!]" + ], + "where": [ + 5471 + ] + } + ], + "tournament_invites_by_pk": [ + 5467, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "tournament_invites_stream": [ + 5467, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 5486, + "[tournament_invites_stream_cursor_input]!" + ], + "where": [ + 5471 + ] + } + ], + "tournament_leaderboard_entries": [ + 5494, + { + "distinct_on": [ + 5505, + "[tournament_leaderboard_entries_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5504, + "[tournament_leaderboard_entries_order_by!]" + ], + "where": [ + 5498 + ] + } + ], + "tournament_leaderboard_entries_aggregate": [ + 5495, + { + "distinct_on": [ + 5505, + "[tournament_leaderboard_entries_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5504, + "[tournament_leaderboard_entries_order_by!]" + ], + "where": [ + 5498 + ] + } + ], + "tournament_leaderboard_entries_stream": [ + 5494, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 5510, + "[tournament_leaderboard_entries_stream_cursor_input]!" + ], + "where": [ + 5498 + ] + } + ], + "tournament_no_shows": [ + 5517, + { + "distinct_on": [ + 5531, + "[tournament_no_shows_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5529, + "[tournament_no_shows_order_by!]" + ], + "where": [ + 5521 + ] + } + ], + "tournament_no_shows_aggregate": [ + 5518, + { + "distinct_on": [ + 5531, + "[tournament_no_shows_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5529, + "[tournament_no_shows_order_by!]" + ], + "where": [ + 5521 + ] + } + ], + "tournament_no_shows_by_pk": [ + 5517, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "tournament_no_shows_stream": [ + 5517, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 5536, + "[tournament_no_shows_stream_cursor_input]!" + ], + "where": [ + 5521 + ] + } + ], + "tournament_organizer_teams": [ + 5544, + { + "distinct_on": [ + 5562, + "[tournament_organizer_teams_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5560, + "[tournament_organizer_teams_order_by!]" + ], + "where": [ + 5551 + ] + } + ], + "tournament_organizer_teams_aggregate": [ + 5545, + { + "distinct_on": [ + 5562, + "[tournament_organizer_teams_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5560, + "[tournament_organizer_teams_order_by!]" + ], + "where": [ + 5551 + ] + } + ], + "tournament_organizer_teams_by_pk": [ + 5544, + { + "team_id": [ + 6672, + "uuid!" + ], + "tournament_id": [ + 6672, + "uuid!" + ] + } + ], + "tournament_organizer_teams_stream": [ + 5544, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 5564, + "[tournament_organizer_teams_stream_cursor_input]!" + ], + "where": [ + 5551 + ] + } + ], + "tournament_organizers": [ + 5568, + { + "distinct_on": [ + 5589, + "[tournament_organizers_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5587, + "[tournament_organizers_order_by!]" + ], + "where": [ + 5577 + ] + } + ], + "tournament_organizers_aggregate": [ + 5569, + { + "distinct_on": [ + 5589, + "[tournament_organizers_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5587, + "[tournament_organizers_order_by!]" + ], + "where": [ + 5577 + ] + } + ], + "tournament_organizers_by_pk": [ + 5568, + { + "steam_id": [ + 312, + "bigint!" + ], + "tournament_id": [ + 6672, + "uuid!" + ] + } + ], + "tournament_organizers_stream": [ + 5568, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 5597, + "[tournament_organizers_stream_cursor_input]!" + ], + "where": [ + 5577 + ] + } + ], + "tournament_prizes": [ + 5609, + { + "distinct_on": [ + 5630, + "[tournament_prizes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5628, + "[tournament_prizes_order_by!]" + ], + "where": [ + 5618 + ] + } + ], + "tournament_prizes_aggregate": [ + 5610, + { + "distinct_on": [ + 5630, + "[tournament_prizes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5628, + "[tournament_prizes_order_by!]" + ], + "where": [ + 5618 + ] + } + ], + "tournament_prizes_by_pk": [ + 5609, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "tournament_prizes_stream": [ + 5609, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 5638, + "[tournament_prizes_stream_cursor_input]!" + ], + "where": [ + 5618 + ] + } + ], + "tournament_registration_unlocks": [ + 5650, + { + "distinct_on": [ + 5663, + "[tournament_registration_unlocks_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5662, + "[tournament_registration_unlocks_order_by!]" + ], + "where": [ + 5654 + ] + } + ], + "tournament_registration_unlocks_aggregate": [ + 5651, + { + "distinct_on": [ + 5663, + "[tournament_registration_unlocks_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5662, + "[tournament_registration_unlocks_order_by!]" + ], + "where": [ + 5654 + ] + } + ], + "tournament_registration_unlocks_stream": [ + 5650, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 5668, + "[tournament_registration_unlocks_stream_cursor_input]!" + ], + "where": [ + 5654 + ] + } + ], + "tournament_stage_windows": [ + 5676, + { + "distinct_on": [ + 5697, + "[tournament_stage_windows_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5695, + "[tournament_stage_windows_order_by!]" + ], + "where": [ + 5685 + ] + } + ], + "tournament_stage_windows_aggregate": [ + 5677, + { + "distinct_on": [ + 5697, + "[tournament_stage_windows_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5695, + "[tournament_stage_windows_order_by!]" + ], + "where": [ + 5685 + ] + } + ], + "tournament_stage_windows_by_pk": [ + 5676, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "tournament_stage_windows_stream": [ + 5676, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 5705, + "[tournament_stage_windows_stream_cursor_input]!" + ], + "where": [ + 5685 + ] + } + ], + "tournament_stages": [ + 5717, + { + "distinct_on": [ + 5746, + "[tournament_stages_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5743, + "[tournament_stages_order_by!]" + ], + "where": [ + 5729 + ] + } + ], + "tournament_stages_aggregate": [ + 5718, + { + "distinct_on": [ + 5746, + "[tournament_stages_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5743, + "[tournament_stages_order_by!]" + ], + "where": [ + 5729 + ] + } + ], + "tournament_stages_by_pk": [ + 5717, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "tournament_stages_stream": [ + 5717, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 5756, + "[tournament_stages_stream_cursor_input]!" + ], + "where": [ + 5729 + ] + } + ], + "tournament_team_invites": [ + 5768, + { + "distinct_on": [ + 5789, + "[tournament_team_invites_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5787, + "[tournament_team_invites_order_by!]" + ], + "where": [ + 5777 + ] + } + ], + "tournament_team_invites_aggregate": [ + 5769, + { + "distinct_on": [ + 5789, + "[tournament_team_invites_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5787, + "[tournament_team_invites_order_by!]" + ], + "where": [ + 5777 + ] + } + ], + "tournament_team_invites_by_pk": [ + 5768, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "tournament_team_invites_stream": [ + 5768, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 5797, + "[tournament_team_invites_stream_cursor_input]!" + ], + "where": [ + 5777 + ] + } + ], + "tournament_team_roster": [ + 5809, + { + "distinct_on": [ + 5830, + "[tournament_team_roster_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5828, + "[tournament_team_roster_order_by!]" + ], + "where": [ + 5818 + ] + } + ], + "tournament_team_roster_aggregate": [ + 5810, + { + "distinct_on": [ + 5830, + "[tournament_team_roster_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5828, + "[tournament_team_roster_order_by!]" + ], + "where": [ + 5818 + ] + } + ], + "tournament_team_roster_by_pk": [ + 5809, + { + "player_steam_id": [ + 312, + "bigint!" + ], + "tournament_id": [ + 6672, + "uuid!" + ] + } + ], + "tournament_team_roster_stream": [ + 5809, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 5838, + "[tournament_team_roster_stream_cursor_input]!" + ], + "where": [ + 5818 + ] + } + ], + "tournament_teams": [ + 5850, + { + "distinct_on": [ + 5874, + "[tournament_teams_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5872, + "[tournament_teams_order_by!]" + ], + "where": [ + 5861 + ] + } + ], + "tournament_teams_aggregate": [ + 5851, + { + "distinct_on": [ + 5874, + "[tournament_teams_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5872, + "[tournament_teams_order_by!]" + ], + "where": [ + 5861 + ] + } + ], + "tournament_teams_by_pk": [ + 5850, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "tournament_teams_stream": [ + 5850, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 5884, + "[tournament_teams_stream_cursor_input]!" + ], + "where": [ + 5861 + ] + } + ], + "tournaments": [ + 5896, + { + "distinct_on": [ + 5930, + "[tournaments_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5928, + "[tournaments_order_by!]" + ], + "where": [ + 5917 + ] + } + ], + "tournaments_aggregate": [ + 5897, + { + "distinct_on": [ + 5930, + "[tournaments_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5928, + "[tournaments_order_by!]" + ], + "where": [ + 5917 + ] + } + ], + "tournaments_by_pk": [ + 5896, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "tournaments_stream": [ + 5896, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 5948, + "[tournaments_stream_cursor_input]!" + ], + "where": [ + 5917 + ] + } + ], + "utility_collection_items": [ + 5960, + { + "distinct_on": [ + 5981, + "[utility_collection_items_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5979, + "[utility_collection_items_order_by!]" + ], + "where": [ + 5969 + ] + } + ], + "utility_collection_items_aggregate": [ + 5961, + { + "distinct_on": [ + 5981, + "[utility_collection_items_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 5979, + "[utility_collection_items_order_by!]" + ], + "where": [ + 5969 + ] + } + ], + "utility_collection_items_by_pk": [ + 5960, + { + "collection_id": [ + 6672, + "uuid!" + ], + "utility_lineup_id": [ + 6672, + "uuid!" + ] + } + ], + "utility_collection_items_stream": [ + 5960, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 5989, + "[utility_collection_items_stream_cursor_input]!" + ], + "where": [ + 5969 + ] + } + ], + "utility_collections": [ + 6001, + { + "distinct_on": [ + 6016, + "[utility_collections_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6014, + "[utility_collections_order_by!]" + ], + "where": [ + 6005 + ] + } + ], + "utility_collections_aggregate": [ + 6002, + { + "distinct_on": [ + 6016, + "[utility_collections_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6014, + "[utility_collections_order_by!]" + ], + "where": [ + 6005 + ] + } + ], + "utility_collections_by_pk": [ + 6001, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "utility_collections_stream": [ + 6001, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 6021, + "[utility_collections_stream_cursor_input]!" + ], + "where": [ + 6005 + ] + } + ], + "utility_demo_mines": [ + 6029, + { + "distinct_on": [ + 6043, + "[utility_demo_mines_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6041, + "[utility_demo_mines_order_by!]" + ], + "where": [ + 6033 + ] + } + ], + "utility_demo_mines_aggregate": [ + 6030, + { + "distinct_on": [ + 6043, + "[utility_demo_mines_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6041, + "[utility_demo_mines_order_by!]" + ], + "where": [ + 6033 + ] + } + ], + "utility_demo_mines_by_pk": [ + 6029, + { + "match_map_demo_id": [ + 6672, + "uuid!" + ] + } + ], + "utility_demo_mines_stream": [ + 6029, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 6048, + "[utility_demo_mines_stream_cursor_input]!" + ], + "where": [ + 6033 + ] + } + ], + "utility_demo_throws": [ + 6056, + { + "distinct_on": [ + 6070, + "[utility_demo_throws_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6068, + "[utility_demo_throws_order_by!]" + ], + "where": [ + 6060 + ] + } + ], + "utility_demo_throws_aggregate": [ + 6057, + { + "distinct_on": [ + 6070, + "[utility_demo_throws_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6068, + "[utility_demo_throws_order_by!]" + ], + "where": [ + 6060 + ] + } + ], + "utility_demo_throws_by_pk": [ + 6056, + { + "grenade_id": [ + 41, + "Int!" + ], + "match_map_demo_id": [ + 6672, + "uuid!" + ] + } + ], + "utility_demo_throws_stream": [ + 6056, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 6075, + "[utility_demo_throws_stream_cursor_input]!" + ], + "where": [ + 6060 + ] + } + ], + "utility_drift_results": [ + 6083, + { + "distinct_on": [ + 6114, + "[utility_drift_results_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6112, + "[utility_drift_results_order_by!]" + ], + "where": [ + 6102 + ] + } + ], + "utility_drift_results_aggregate": [ + 6084, + { + "distinct_on": [ + 6114, + "[utility_drift_results_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6112, + "[utility_drift_results_order_by!]" + ], + "where": [ + 6102 + ] + } + ], + "utility_drift_results_by_pk": [ + 6083, + { + "utility_drift_scan_id": [ + 6672, + "uuid!" + ], + "utility_lineup_id": [ + 6672, + "uuid!" + ] + } + ], + "utility_drift_results_stream": [ + 6083, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 6130, + "[utility_drift_results_stream_cursor_input]!" + ], + "where": [ + 6102 + ] + } + ], + "utility_drift_scans": [ + 6142, + { + "distinct_on": [ + 6157, + "[utility_drift_scans_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6155, + "[utility_drift_scans_order_by!]" + ], + "where": [ + 6146 + ] + } + ], + "utility_drift_scans_aggregate": [ + 6143, + { + "distinct_on": [ + 6157, + "[utility_drift_scans_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6155, + "[utility_drift_scans_order_by!]" + ], + "where": [ + 6146 + ] + } + ], + "utility_drift_scans_by_pk": [ + 6142, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "utility_drift_scans_stream": [ + 6142, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 6162, + "[utility_drift_scans_stream_cursor_input]!" + ], + "where": [ + 6146 + ] + } + ], + "utility_lineup_favorites": [ + 6170, + { + "distinct_on": [ + 6191, + "[utility_lineup_favorites_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6189, + "[utility_lineup_favorites_order_by!]" + ], + "where": [ + 6179 + ] + } + ], + "utility_lineup_favorites_aggregate": [ + 6171, + { + "distinct_on": [ + 6191, + "[utility_lineup_favorites_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6189, + "[utility_lineup_favorites_order_by!]" + ], + "where": [ + 6179 + ] + } + ], + "utility_lineup_favorites_by_pk": [ + 6170, + { + "steam_id": [ + 312, + "bigint!" + ], + "utility_lineup_id": [ + 6672, + "uuid!" + ] + } + ], + "utility_lineup_favorites_stream": [ + 6170, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 6199, + "[utility_lineup_favorites_stream_cursor_input]!" + ], + "where": [ + 6179 + ] + } + ], + "utility_lineup_progress": [ + 6211, + { + "distinct_on": [ + 6242, + "[utility_lineup_progress_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6240, + "[utility_lineup_progress_order_by!]" + ], + "where": [ + 6230 + ] + } + ], + "utility_lineup_progress_aggregate": [ + 6212, + { + "distinct_on": [ + 6242, + "[utility_lineup_progress_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6240, + "[utility_lineup_progress_order_by!]" + ], + "where": [ + 6230 + ] + } + ], + "utility_lineup_progress_by_pk": [ + 6211, + { + "steam_id": [ + 312, + "bigint!" + ], + "utility_lineup_id": [ + 6672, + "uuid!" + ] + } + ], + "utility_lineup_progress_stream": [ + 6211, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 6258, + "[utility_lineup_progress_stream_cursor_input]!" + ], + "where": [ + 6230 + ] + } + ], + "utility_lineup_renders": [ + 6270, + { + "distinct_on": [ + 6298, + "[utility_lineup_renders_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6295, + "[utility_lineup_renders_order_by!]" + ], + "where": [ + 6282 + ] + } + ], + "utility_lineup_renders_aggregate": [ + 6271, + { + "distinct_on": [ + 6298, + "[utility_lineup_renders_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6295, + "[utility_lineup_renders_order_by!]" + ], + "where": [ + 6282 + ] + } + ], + "utility_lineup_renders_by_pk": [ + 6270, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "utility_lineup_renders_stream": [ + 6270, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 6308, + "[utility_lineup_renders_stream_cursor_input]!" + ], + "where": [ + 6282 + ] + } + ], + "utility_lineup_repairs": [ + 6320, + { + "distinct_on": [ + 6351, + "[utility_lineup_repairs_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6349, + "[utility_lineup_repairs_order_by!]" + ], + "where": [ + 6339 + ] + } + ], + "utility_lineup_repairs_aggregate": [ + 6321, + { + "distinct_on": [ + 6351, + "[utility_lineup_repairs_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6349, + "[utility_lineup_repairs_order_by!]" + ], + "where": [ + 6339 + ] + } + ], + "utility_lineup_repairs_by_pk": [ + 6320, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "utility_lineup_repairs_stream": [ + 6320, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 6367, + "[utility_lineup_repairs_stream_cursor_input]!" + ], + "where": [ + 6339 + ] + } + ], + "utility_lineup_votes": [ + 6379, + { + "distinct_on": [ + 6400, + "[utility_lineup_votes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6398, + "[utility_lineup_votes_order_by!]" + ], + "where": [ + 6388 + ] + } + ], + "utility_lineup_votes_aggregate": [ + 6380, + { + "distinct_on": [ + 6400, + "[utility_lineup_votes_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6398, + "[utility_lineup_votes_order_by!]" + ], + "where": [ + 6388 + ] + } + ], + "utility_lineup_votes_by_pk": [ + 6379, + { + "steam_id": [ + 312, + "bigint!" + ], + "utility_lineup_id": [ + 6672, + "uuid!" + ] + } + ], + "utility_lineup_votes_stream": [ + 6379, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 6408, + "[utility_lineup_votes_stream_cursor_input]!" + ], + "where": [ + 6388 + ] + } + ], + "utility_lineups": [ + 6420, + { + "distinct_on": [ + 6459, + "[utility_lineups_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6456, + "[utility_lineups_order_by!]" + ], + "where": [ + 6442 + ] + } + ], + "utility_lineups_aggregate": [ + 6421, + { + "distinct_on": [ + 6459, + "[utility_lineups_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6456, + "[utility_lineups_order_by!]" + ], + "where": [ + 6442 + ] + } + ], + "utility_lineups_by_pk": [ + 6420, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "utility_lineups_stream": [ + 6420, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 6477, + "[utility_lineups_stream_cursor_input]!" + ], + "where": [ + 6442 + ] + } + ], + "utility_meta_lineups": [ + 6489, + { + "distinct_on": [ + 6503, + "[utility_meta_lineups_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6501, + "[utility_meta_lineups_order_by!]" + ], + "where": [ + 6493 + ] + } + ], + "utility_meta_lineups_aggregate": [ + 6490, + { + "distinct_on": [ + 6503, + "[utility_meta_lineups_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6501, + "[utility_meta_lineups_order_by!]" + ], + "where": [ + 6493 + ] + } + ], + "utility_meta_lineups_by_pk": [ + 6489, + { + "lineup_bucket": [ + 85, + "String!" + ] + } + ], + "utility_meta_lineups_stream": [ + 6489, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 6508, + "[utility_meta_lineups_stream_cursor_input]!" + ], + "where": [ + 6493 + ] + } + ], + "utility_playbook_steps": [ + 6516, + { + "distinct_on": [ + 6537, + "[utility_playbook_steps_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6535, + "[utility_playbook_steps_order_by!]" + ], + "where": [ + 6525 + ] + } + ], + "utility_playbook_steps_aggregate": [ + 6517, + { + "distinct_on": [ + 6537, + "[utility_playbook_steps_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6535, + "[utility_playbook_steps_order_by!]" + ], + "where": [ + 6525 + ] + } + ], + "utility_playbook_steps_by_pk": [ + 6516, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "utility_playbook_steps_stream": [ + 6516, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 6545, + "[utility_playbook_steps_stream_cursor_input]!" + ], + "where": [ + 6525 + ] + } + ], + "utility_playbooks": [ + 6557, + { + "distinct_on": [ + 6572, + "[utility_playbooks_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6570, + "[utility_playbooks_order_by!]" + ], + "where": [ + 6561 + ] + } + ], + "utility_playbooks_aggregate": [ + 6558, + { + "distinct_on": [ + 6572, + "[utility_playbooks_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6570, + "[utility_playbooks_order_by!]" + ], + "where": [ + 6561 + ] + } + ], + "utility_playbooks_by_pk": [ + 6557, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "utility_playbooks_stream": [ + 6557, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 6577, + "[utility_playbooks_stream_cursor_input]!" + ], + "where": [ + 6561 + ] + } + ], + "utility_practice_invites": [ + 6585, + { + "distinct_on": [ + 6606, + "[utility_practice_invites_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6604, + "[utility_practice_invites_order_by!]" + ], + "where": [ + 6594 + ] + } + ], + "utility_practice_invites_aggregate": [ + 6586, + { + "distinct_on": [ + 6606, + "[utility_practice_invites_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6604, + "[utility_practice_invites_order_by!]" + ], + "where": [ + 6594 + ] + } + ], + "utility_practice_invites_by_pk": [ + 6585, + { + "steam_id": [ + 312, + "bigint!" + ], + "utility_practice_session_id": [ + 6672, + "uuid!" + ] + } + ], + "utility_practice_invites_stream": [ + 6585, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 6614, + "[utility_practice_invites_stream_cursor_input]!" + ], + "where": [ + 6594 + ] + } + ], + "utility_practice_sessions": [ + 6626, + { + "distinct_on": [ + 6650, + "[utility_practice_sessions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6648, + "[utility_practice_sessions_order_by!]" + ], + "where": [ + 6637 + ] + } + ], + "utility_practice_sessions_aggregate": [ + 6627, + { + "distinct_on": [ + 6650, + "[utility_practice_sessions_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6648, + "[utility_practice_sessions_order_by!]" + ], + "where": [ + 6637 + ] + } + ], + "utility_practice_sessions_by_pk": [ + 6626, + { + "id": [ + 6672, + "uuid!" + ] + } + ], + "utility_practice_sessions_stream": [ + 6626, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 6660, + "[utility_practice_sessions_stream_cursor_input]!" + ], + "where": [ + 6637 + ] + } + ], + "v_event_player_stats": [ + 6675, + { + "distinct_on": [ + 6701, + "[v_event_player_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6700, + "[v_event_player_stats_order_by!]" + ], + "where": [ + 6694 + ] + } + ], + "v_event_player_stats_aggregate": [ + 6676, + { + "distinct_on": [ + 6701, + "[v_event_player_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6700, + "[v_event_player_stats_order_by!]" + ], + "where": [ + 6694 + ] + } + ], + "v_event_player_stats_stream": [ + 6675, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 6716, + "[v_event_player_stats_stream_cursor_input]!" + ], + "where": [ + 6694 + ] + } + ], + "v_gpu_pool_status": [ + 6726, + { + "distinct_on": [ + 6734, + "[v_gpu_pool_status_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6733, + "[v_gpu_pool_status_order_by!]" + ], + "where": [ + 6730 + ] + } + ], + "v_gpu_pool_status_aggregate": [ + 6727, + { + "distinct_on": [ + 6734, + "[v_gpu_pool_status_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6733, + "[v_gpu_pool_status_order_by!]" + ], + "where": [ + 6730 + ] + } + ], + "v_gpu_pool_status_stream": [ + 6726, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 6738, + "[v_gpu_pool_status_stream_cursor_input]!" + ], + "where": [ + 6730 + ] + } + ], + "v_league_division_standings": [ + 6744, + { + "distinct_on": [ + 6760, + "[v_league_division_standings_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6759, + "[v_league_division_standings_order_by!]" + ], + "where": [ + 6753 + ] + } + ], + "v_league_division_standings_aggregate": [ + 6745, + { + "distinct_on": [ + 6760, + "[v_league_division_standings_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6759, + "[v_league_division_standings_order_by!]" + ], + "where": [ + 6753 + ] + } + ], + "v_league_division_standings_stream": [ + 6744, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 6767, + "[v_league_division_standings_stream_cursor_input]!" + ], + "where": [ + 6753 + ] + } + ], + "v_league_season_player_stats": [ + 6777, + { + "distinct_on": [ + 6803, + "[v_league_season_player_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6802, + "[v_league_season_player_stats_order_by!]" + ], + "where": [ + 6796 + ] + } + ], + "v_league_season_player_stats_aggregate": [ + 6778, + { + "distinct_on": [ + 6803, + "[v_league_season_player_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6802, + "[v_league_season_player_stats_order_by!]" + ], + "where": [ + 6796 + ] + } + ], + "v_league_season_player_stats_stream": [ + 6777, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 6818, + "[v_league_season_player_stats_stream_cursor_input]!" + ], + "where": [ + 6796 + ] + } + ], + "v_match_captains": [ + 6828, + { + "distinct_on": [ + 6840, + "[v_match_captains_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6839, + "[v_match_captains_order_by!]" + ], + "where": [ + 6832 + ] + } + ], + "v_match_captains_aggregate": [ + 6829, + { + "distinct_on": [ + 6840, + "[v_match_captains_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6839, + "[v_match_captains_order_by!]" + ], + "where": [ + 6832 + ] + } + ], + "v_match_captains_stream": [ + 6828, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 6845, + "[v_match_captains_stream_cursor_input]!" + ], + "where": [ + 6832 + ] + } + ], + "v_match_clutches": [ + 6852, + { + "distinct_on": [ + 6868, + "[v_match_clutches_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6867, + "[v_match_clutches_order_by!]" + ], + "where": [ + 6861 + ] + } + ], + "v_match_clutches_aggregate": [ + 6853, + { + "distinct_on": [ + 6868, + "[v_match_clutches_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6867, + "[v_match_clutches_order_by!]" + ], + "where": [ + 6861 + ] + } + ], + "v_match_clutches_stream": [ + 6852, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 6875, + "[v_match_clutches_stream_cursor_input]!" + ], + "where": [ + 6861 + ] + } + ], + "v_match_kill_pairs": [ + 6885, + { + "distinct_on": [ + 6893, + "[v_match_kill_pairs_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6892, + "[v_match_kill_pairs_order_by!]" + ], + "where": [ + 6889 + ] + } + ], + "v_match_kill_pairs_aggregate": [ + 6886, + { + "distinct_on": [ + 6893, + "[v_match_kill_pairs_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6892, + "[v_match_kill_pairs_order_by!]" + ], + "where": [ + 6889 + ] + } + ], + "v_match_kill_pairs_stream": [ + 6885, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 6897, + "[v_match_kill_pairs_stream_cursor_input]!" + ], + "where": [ + 6889 + ] + } + ], + "v_match_lineup_buy_types": [ + 6903, + { + "distinct_on": [ + 6911, + "[v_match_lineup_buy_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6910, + "[v_match_lineup_buy_types_order_by!]" + ], + "where": [ + 6907 + ] + } + ], + "v_match_lineup_buy_types_aggregate": [ + 6904, + { + "distinct_on": [ + 6911, + "[v_match_lineup_buy_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6910, + "[v_match_lineup_buy_types_order_by!]" + ], + "where": [ + 6907 + ] + } + ], + "v_match_lineup_buy_types_stream": [ + 6903, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 6915, + "[v_match_lineup_buy_types_stream_cursor_input]!" + ], + "where": [ + 6907 + ] + } + ], + "v_match_lineup_map_stats": [ + 6921, + { + "distinct_on": [ + 6929, + "[v_match_lineup_map_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6928, + "[v_match_lineup_map_stats_order_by!]" + ], + "where": [ + 6925 + ] + } + ], + "v_match_lineup_map_stats_aggregate": [ + 6922, + { + "distinct_on": [ + 6929, + "[v_match_lineup_map_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6928, + "[v_match_lineup_map_stats_order_by!]" + ], + "where": [ + 6925 + ] + } + ], + "v_match_lineup_map_stats_stream": [ + 6921, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 6933, + "[v_match_lineup_map_stats_stream_cursor_input]!" + ], + "where": [ + 6925 + ] + } + ], + "v_match_map_backup_rounds": [ + 6939, + { + "distinct_on": [ + 6950, + "[v_match_map_backup_rounds_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6949, + "[v_match_map_backup_rounds_order_by!]" + ], + "where": [ + 6943 + ] + } + ], + "v_match_map_backup_rounds_aggregate": [ + 6940, + { + "distinct_on": [ + 6950, + "[v_match_map_backup_rounds_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6949, + "[v_match_map_backup_rounds_order_by!]" + ], + "where": [ + 6943 + ] + } + ], + "v_match_map_backup_rounds_stream": [ + 6939, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 6955, + "[v_match_map_backup_rounds_stream_cursor_input]!" + ], + "where": [ + 6943 + ] + } + ], + "v_match_player_buy_types": [ + 6962, + { + "distinct_on": [ + 6970, + "[v_match_player_buy_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6969, + "[v_match_player_buy_types_order_by!]" + ], + "where": [ + 6966 + ] + } + ], + "v_match_player_buy_types_aggregate": [ + 6963, + { + "distinct_on": [ + 6970, + "[v_match_player_buy_types_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6969, + "[v_match_player_buy_types_order_by!]" + ], + "where": [ + 6966 + ] + } + ], + "v_match_player_buy_types_stream": [ + 6962, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 6974, + "[v_match_player_buy_types_stream_cursor_input]!" + ], + "where": [ + 6966 + ] + } + ], + "v_match_player_opening_duels": [ + 6980, + { + "distinct_on": [ + 6996, + "[v_match_player_opening_duels_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6995, + "[v_match_player_opening_duels_order_by!]" + ], + "where": [ + 6989 + ] + } + ], + "v_match_player_opening_duels_aggregate": [ + 6981, + { + "distinct_on": [ + 6996, + "[v_match_player_opening_duels_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 6995, + "[v_match_player_opening_duels_order_by!]" + ], + "where": [ + 6989 + ] + } + ], + "v_match_player_opening_duels_stream": [ + 6980, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 7003, + "[v_match_player_opening_duels_stream_cursor_input]!" + ], + "where": [ + 6989 + ] + } + ], + "v_player_arch_nemesis": [ + 7013, + { + "distinct_on": [ + 7021, + "[v_player_arch_nemesis_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7020, + "[v_player_arch_nemesis_order_by!]" + ], + "where": [ + 7017 + ] + } + ], + "v_player_arch_nemesis_aggregate": [ + 7014, + { + "distinct_on": [ + 7021, + "[v_player_arch_nemesis_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7020, + "[v_player_arch_nemesis_order_by!]" + ], + "where": [ + 7017 + ] + } + ], + "v_player_arch_nemesis_stream": [ + 7013, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 7025, + "[v_player_arch_nemesis_stream_cursor_input]!" + ], + "where": [ + 7017 + ] + } + ], + "v_player_damage": [ + 7031, + { + "distinct_on": [ + 7039, + "[v_player_damage_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7038, + "[v_player_damage_order_by!]" + ], + "where": [ + 7035 + ] + } + ], + "v_player_damage_aggregate": [ + 7032, + { + "distinct_on": [ + 7039, + "[v_player_damage_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7038, + "[v_player_damage_order_by!]" + ], + "where": [ + 7035 + ] + } + ], + "v_player_damage_stream": [ + 7031, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 7043, + "[v_player_damage_stream_cursor_input]!" + ], + "where": [ + 7035 + ] + } + ], + "v_player_elo": [ + 7049, + { + "distinct_on": [ + 7075, + "[v_player_elo_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7074, + "[v_player_elo_order_by!]" + ], + "where": [ + 7068 + ] + } + ], + "v_player_elo_aggregate": [ + 7050, + { + "distinct_on": [ + 7075, + "[v_player_elo_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7074, + "[v_player_elo_order_by!]" + ], + "where": [ + 7068 + ] + } + ], + "v_player_elo_stream": [ + 7049, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 7090, + "[v_player_elo_stream_cursor_input]!" + ], + "where": [ + 7068 + ] + } + ], + "v_player_map_losses": [ + 7100, + { + "distinct_on": [ + 7108, + "[v_player_map_losses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7107, + "[v_player_map_losses_order_by!]" + ], + "where": [ + 7104 + ] + } + ], + "v_player_map_losses_aggregate": [ + 7101, + { + "distinct_on": [ + 7108, + "[v_player_map_losses_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7107, + "[v_player_map_losses_order_by!]" + ], + "where": [ + 7104 + ] + } + ], + "v_player_map_losses_stream": [ + 7100, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 7112, + "[v_player_map_losses_stream_cursor_input]!" + ], + "where": [ + 7104 + ] + } + ], + "v_player_map_wins": [ + 7118, + { + "distinct_on": [ + 7126, + "[v_player_map_wins_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7125, + "[v_player_map_wins_order_by!]" + ], + "where": [ + 7122 + ] + } + ], + "v_player_map_wins_aggregate": [ + 7119, + { + "distinct_on": [ + 7126, + "[v_player_map_wins_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7125, + "[v_player_map_wins_order_by!]" + ], + "where": [ + 7122 + ] + } + ], + "v_player_map_wins_stream": [ + 7118, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 7130, + "[v_player_map_wins_stream_cursor_input]!" + ], + "where": [ + 7122 + ] + } + ], + "v_player_match_head_to_head": [ + 7136, + { + "distinct_on": [ + 7144, + "[v_player_match_head_to_head_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7143, + "[v_player_match_head_to_head_order_by!]" + ], + "where": [ + 7140 + ] + } + ], + "v_player_match_head_to_head_aggregate": [ + 7137, + { + "distinct_on": [ + 7144, + "[v_player_match_head_to_head_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7143, + "[v_player_match_head_to_head_order_by!]" + ], + "where": [ + 7140 + ] + } + ], + "v_player_match_head_to_head_stream": [ + 7136, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 7148, + "[v_player_match_head_to_head_stream_cursor_input]!" + ], + "where": [ + 7140 + ] + } + ], + "v_player_match_map_hltv": [ + 7154, + { + "distinct_on": [ + 7172, + "[v_player_match_map_hltv_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7171, + "[v_player_match_map_hltv_order_by!]" + ], + "where": [ + 7163 + ] + } + ], + "v_player_match_map_hltv_aggregate": [ + 7155, + { + "distinct_on": [ + 7172, + "[v_player_match_map_hltv_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7171, + "[v_player_match_map_hltv_order_by!]" + ], + "where": [ + 7163 + ] + } + ], + "v_player_match_map_hltv_stream": [ + 7154, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 7180, + "[v_player_match_map_hltv_stream_cursor_input]!" + ], + "where": [ + 7163 + ] + } + ], + "v_player_match_map_roles": [ + 7191, + { + "distinct_on": [ + 7199, + "[v_player_match_map_roles_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7198, + "[v_player_match_map_roles_order_by!]" + ], + "where": [ + 7195 + ] + } + ], + "v_player_match_map_roles_aggregate": [ + 7192, + { + "distinct_on": [ + 7199, + "[v_player_match_map_roles_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7198, + "[v_player_match_map_roles_order_by!]" + ], + "where": [ + 7195 + ] + } + ], + "v_player_match_map_roles_stream": [ + 7191, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 7203, + "[v_player_match_map_roles_stream_cursor_input]!" + ], + "where": [ + 7195 + ] + } + ], + "v_player_match_performance": [ + 7209, + { + "distinct_on": [ + 7217, + "[v_player_match_performance_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7216, + "[v_player_match_performance_order_by!]" + ], + "where": [ + 7213 + ] + } + ], + "v_player_match_performance_aggregate": [ + 7210, + { + "distinct_on": [ + 7217, + "[v_player_match_performance_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7216, + "[v_player_match_performance_order_by!]" + ], + "where": [ + 7213 + ] + } + ], + "v_player_match_performance_stream": [ + 7209, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 7221, + "[v_player_match_performance_stream_cursor_input]!" + ], + "where": [ + 7213 + ] + } + ], + "v_player_match_rating": [ + 7227, + { + "distinct_on": [ + 7235, + "[v_player_match_rating_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7234, + "[v_player_match_rating_order_by!]" + ], + "where": [ + 7231 + ] + } + ], + "v_player_match_rating_aggregate": [ + 7228, + { + "distinct_on": [ + 7235, + "[v_player_match_rating_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7234, + "[v_player_match_rating_order_by!]" + ], + "where": [ + 7231 + ] + } + ], + "v_player_match_rating_stream": [ + 7227, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 7239, + "[v_player_match_rating_stream_cursor_input]!" + ], + "where": [ + 7231 + ] + } + ], + "v_player_multi_kills": [ + 7245, + { + "distinct_on": [ + 7261, + "[v_player_multi_kills_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7260, + "[v_player_multi_kills_order_by!]" + ], + "where": [ + 7254 + ] + } + ], + "v_player_multi_kills_aggregate": [ + 7246, + { + "distinct_on": [ + 7261, + "[v_player_multi_kills_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7260, + "[v_player_multi_kills_order_by!]" + ], + "where": [ + 7254 + ] + } + ], + "v_player_multi_kills_stream": [ + 7245, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 7268, + "[v_player_multi_kills_stream_cursor_input]!" + ], + "where": [ + 7254 + ] + } + ], + "v_player_queue_partners": [ + 7278, + { + "distinct_on": [ + 7286, + "[v_player_queue_partners_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7285, + "[v_player_queue_partners_order_by!]" + ], + "where": [ + 7282 + ] + } + ], + "v_player_queue_partners_aggregate": [ + 7279, + { + "distinct_on": [ + 7286, + "[v_player_queue_partners_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7285, + "[v_player_queue_partners_order_by!]" + ], + "where": [ + 7282 + ] + } + ], + "v_player_queue_partners_stream": [ + 7278, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 7290, + "[v_player_queue_partners_stream_cursor_input]!" + ], + "where": [ + 7282 + ] + } + ], + "v_player_weapon_damage": [ + 7296, + { + "distinct_on": [ + 7304, + "[v_player_weapon_damage_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7303, + "[v_player_weapon_damage_order_by!]" + ], + "where": [ + 7300 + ] + } + ], + "v_player_weapon_damage_aggregate": [ + 7297, + { + "distinct_on": [ + 7304, + "[v_player_weapon_damage_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7303, + "[v_player_weapon_damage_order_by!]" + ], + "where": [ + 7300 + ] + } + ], + "v_player_weapon_damage_stream": [ + 7296, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 7308, + "[v_player_weapon_damage_stream_cursor_input]!" + ], + "where": [ + 7300 + ] + } + ], + "v_player_weapon_kills": [ + 7314, + { + "distinct_on": [ + 7322, + "[v_player_weapon_kills_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7321, + "[v_player_weapon_kills_order_by!]" + ], + "where": [ + 7318 + ] + } + ], + "v_player_weapon_kills_aggregate": [ + 7315, + { + "distinct_on": [ + 7322, + "[v_player_weapon_kills_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7321, + "[v_player_weapon_kills_order_by!]" + ], + "where": [ + 7318 + ] + } + ], + "v_player_weapon_kills_stream": [ + 7314, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 7326, + "[v_player_weapon_kills_stream_cursor_input]!" + ], + "where": [ + 7318 + ] + } + ], + "v_pool_maps": [ + 7332, + { + "distinct_on": [ + 7349, + "[v_pool_maps_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7348, + "[v_pool_maps_order_by!]" + ], + "where": [ + 7341 + ] + } + ], + "v_pool_maps_aggregate": [ + 7333, + { + "distinct_on": [ + 7349, + "[v_pool_maps_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7348, + "[v_pool_maps_order_by!]" + ], + "where": [ + 7341 + ] + } + ], + "v_pool_maps_stream": [ + 7332, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 7353, + "[v_pool_maps_stream_cursor_input]!" + ], + "where": [ + 7341 + ] + } + ], + "v_steam_account_pool_status": [ + 7356, + { + "distinct_on": [ + 7364, + "[v_steam_account_pool_status_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7363, + "[v_steam_account_pool_status_order_by!]" + ], + "where": [ + 7360 + ] + } + ], + "v_steam_account_pool_status_aggregate": [ + 7357, + { + "distinct_on": [ + 7364, + "[v_steam_account_pool_status_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7363, + "[v_steam_account_pool_status_order_by!]" + ], + "where": [ + 7360 + ] + } + ], + "v_steam_account_pool_status_stream": [ + 7356, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 7368, + "[v_steam_account_pool_status_stream_cursor_input]!" + ], + "where": [ + 7360 + ] + } + ], + "v_team_ranks": [ + 7374, + { + "distinct_on": [ + 7384, + "[v_team_ranks_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7383, + "[v_team_ranks_order_by!]" + ], + "where": [ + 7378 + ] + } + ], + "v_team_ranks_aggregate": [ + 7375, + { + "distinct_on": [ + 7384, + "[v_team_ranks_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7383, + "[v_team_ranks_order_by!]" + ], + "where": [ + 7378 + ] + } + ], + "v_team_ranks_stream": [ + 7374, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 7388, + "[v_team_ranks_stream_cursor_input]!" + ], + "where": [ + 7378 + ] + } + ], + "v_team_reputation": [ + 7394, + { + "distinct_on": [ + 7404, + "[v_team_reputation_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7403, + "[v_team_reputation_order_by!]" + ], + "where": [ + 7398 + ] + } + ], + "v_team_reputation_aggregate": [ + 7395, + { + "distinct_on": [ + 7404, + "[v_team_reputation_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7403, + "[v_team_reputation_order_by!]" + ], + "where": [ + 7398 + ] + } + ], + "v_team_reputation_stream": [ + 7394, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 7408, + "[v_team_reputation_stream_cursor_input]!" + ], + "where": [ + 7398 + ] + } + ], + "v_team_stage_results": [ + 7414, + { + "distinct_on": [ + 7446, + "[v_team_stage_results_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7444, + "[v_team_stage_results_order_by!]" + ], + "where": [ + 7433 + ] + } + ], + "v_team_stage_results_aggregate": [ + 7415, + { + "distinct_on": [ + 7446, + "[v_team_stage_results_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7444, + "[v_team_stage_results_order_by!]" + ], + "where": [ + 7433 + ] + } + ], + "v_team_stage_results_by_pk": [ + 7414, + { + "tournament_stage_id": [ + 6672, + "uuid!" + ], + "tournament_team_id": [ + 6672, + "uuid!" + ] + } + ], + "v_team_stage_results_stream": [ + 7414, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 7462, + "[v_team_stage_results_stream_cursor_input]!" + ], + "where": [ + 7433 + ] + } + ], + "v_team_tournament_results": [ + 7474, + { + "distinct_on": [ + 7500, + "[v_team_tournament_results_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7499, + "[v_team_tournament_results_order_by!]" + ], + "where": [ + 7493 + ] + } + ], + "v_team_tournament_results_aggregate": [ + 7475, + { + "distinct_on": [ + 7500, + "[v_team_tournament_results_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7499, + "[v_team_tournament_results_order_by!]" + ], + "where": [ + 7493 + ] + } + ], + "v_team_tournament_results_stream": [ + 7474, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 7515, + "[v_team_tournament_results_stream_cursor_input]!" + ], + "where": [ + 7493 + ] + } + ], + "v_tournament_player_stats": [ + 7525, + { + "distinct_on": [ + 7551, + "[v_tournament_player_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7550, + "[v_tournament_player_stats_order_by!]" + ], + "where": [ + 7544 + ] + } + ], + "v_tournament_player_stats_aggregate": [ + 7526, + { + "distinct_on": [ + 7551, + "[v_tournament_player_stats_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 7550, + "[v_tournament_player_stats_order_by!]" + ], + "where": [ + 7544 + ] + } + ], + "v_tournament_player_stats_stream": [ + 7525, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 7566, + "[v_tournament_player_stats_stream_cursor_input]!" + ], + "where": [ + 7544 + ] + } + ], + "__typename": [ + 85 + ] + } + } +} \ No newline at end of file